From 5e40d34fc36c1015d46ca4b6a243a568ec572af6 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Mon, 6 May 2024 00:41:00 -0400 Subject: [PATCH 1/3] build: update bindings and manifests --- .editorconfig | 39 + .eslintrc.js | 20 - .gitattributes | 27 +- .gitignore | 58 +- .npmignore | 6 - Cargo.toml | 28 +- LICENSE | 2 +- Makefile | 9 + README.md | 4 +- appveyor.yml | 22 - binding.gyp | 13 +- bindings/c/tree-sitter-tsx.h | 16 + bindings/c/tree-sitter-tsx.pc.in | 11 + bindings/c/tree-sitter-typescript.h | 16 + bindings/c/tree-sitter-typescript.pc.in | 11 + bindings/go/binding_test.go | 22 + bindings/go/go.mod | 5 + bindings/go/tsx.go | 14 + bindings/go/typescript.go | 14 + bindings/node/binding.cc | 64 +- bindings/node/index.d.ts | 29 + bindings/node/index.js | 20 +- bindings/node/tsx.js | 2 +- bindings/node/typescript.js | 2 +- .../python/tree_sitter_typescript/__init__.py | 3 + .../tree_sitter_typescript/__init__.pyi | 3 + .../python/tree_sitter_typescript/binding.c | 34 + .../python/tree_sitter_typescript/py.typed | 0 bindings/rust/README.md | 46 - bindings/rust/build.rs | 11 +- bindings/rust/lib.rs | 54 +- .../swift/TreeSitterTypeScript/typescript.h | 4 +- common/common.mak | 107 ++ package-lock.json | 1494 +++++++++++++++++ package.json | 103 +- pyproject.toml | 33 + setup.py | 61 + {common => test}/corpus/declarations.txt | 0 {common => test}/corpus/expressions.txt | 48 + {common => test}/corpus/functions.txt | 0 {common => test}/corpus/types.txt | 0 tsx/Makefile | 3 + tsx/corpus/common | 1 - tsx/corpus/expressions.txt | 25 - tsx/src/scanner.c | 2 - typescript/Makefile | 3 + typescript/corpus/common | 1 - typescript/corpus/expressions.txt | 20 - typescript/src/scanner.c | 2 - typescript/test.ts | 1 - 50 files changed, 2206 insertions(+), 307 deletions(-) create mode 100644 .editorconfig delete mode 100644 .eslintrc.js delete mode 100644 .npmignore create mode 100644 Makefile delete mode 100644 appveyor.yml create mode 100644 bindings/c/tree-sitter-tsx.h create mode 100644 bindings/c/tree-sitter-tsx.pc.in create mode 100644 bindings/c/tree-sitter-typescript.h create mode 100644 bindings/c/tree-sitter-typescript.pc.in create mode 100644 bindings/go/binding_test.go create mode 100644 bindings/go/go.mod create mode 100644 bindings/go/tsx.go create mode 100644 bindings/go/typescript.go create mode 100644 bindings/node/index.d.ts create mode 100644 bindings/python/tree_sitter_typescript/__init__.py create mode 100644 bindings/python/tree_sitter_typescript/__init__.pyi create mode 100644 bindings/python/tree_sitter_typescript/binding.c create mode 100644 bindings/python/tree_sitter_typescript/py.typed delete mode 100644 bindings/rust/README.md create mode 100644 common/common.mak create mode 100644 package-lock.json create mode 100644 pyproject.toml create mode 100644 setup.py rename {common => test}/corpus/declarations.txt (100%) rename {common => test}/corpus/expressions.txt (87%) rename {common => test}/corpus/functions.txt (100%) rename {common => test}/corpus/types.txt (100%) create mode 100644 tsx/Makefile delete mode 120000 tsx/corpus/common delete mode 100644 tsx/corpus/expressions.txt create mode 100644 typescript/Makefile delete mode 120000 typescript/corpus/common delete mode 100644 typescript/corpus/expressions.txt delete mode 100644 typescript/test.ts diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..d3a8b5b6 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,39 @@ +root = true + +[*] +charset = utf-8 +end_of_line = lf +insert_final_newline = true +trim_trailing_whitespace = true + +[*.{json,toml,yml,gyp}] +indent_style = space +indent_size = 2 + +[*.js] +indent_style = space +indent_size = 2 + +[*.rs] +indent_style = space +indent_size = 4 + +[*.{c,cc,h}] +indent_style = space +indent_size = 4 + +[*.{py,pyi}] +indent_style = space +indent_size = 4 + +[*.swift] +indent_style = space +indent_size = 4 + +[*.go] +indent_style = tab +indent_size = 8 + +[Makefile] +indent_style = tab +indent_size = 8 diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index b2e707a9..00000000 --- a/.eslintrc.js +++ /dev/null @@ -1,20 +0,0 @@ -module.exports = { - 'env': { - 'commonjs': true, - 'es2021': true, - }, - 'extends': 'google', - 'overrides': [ - ], - 'parserOptions': { - 'ecmaVersion': 'latest', - 'sourceType': 'module', - }, - 'rules': { - 'indent': ['error', 2, {'SwitchCase': 1}], - 'max-len': [ - 'error', - {'code': 120, 'ignoreComments': true, 'ignoreUrls': true, 'ignoreStrings': true}, - ], - }, -}; diff --git a/.gitattributes b/.gitattributes index 469cb1d9..ffb52abe 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,20 +1,11 @@ -typescript/src/** linguist-vendored -tsx/src/** linguist-vendored +* text eol=lf -/examples/* linguist-vendored +src/*.json linguist-generated +src/parser.c linguist-generated +src/tree_sitter/* linguist-generated -typescript/src/grammar.json linguist-generated -typescript/src/node-types.json linguist-generated -typescript/src/parser.c linguist-generated - -tsx/src/grammar.json linguist-generated -tsx/src/node-types.json linguist-generated -tsx/src/parser.c linguist-generated - -typescript/src/grammar.json -diff -typescript/src/node-types.json -diff -typescript/src/parser.c -diff - -tsx/src/grammar.json -diff -tsx/src/node-types.json -diff -tsx/src/parser.c -diff +bindings/** linguist-generated +binding.gyp linguist-generated +setup.py linguist-generated +Makefile linguist-generated +Package.swift linguist-generated diff --git a/.gitignore b/.gitignore index 1dc211f8..27fc43f7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,24 +1,38 @@ +# Rust artifacts Cargo.lock -node_modules -.node-version -target -build -/.build -*.log -Cargo.lock -package-lock.json -/test.ts -examples/desktop -examples/redux -examples/vscode -log.html -yarn.lock +target/ + +# Node artifacts +build/ +prebuilds/ +node_modules/ +*.tgz + +# Swift artifacts +.build/ + +# Go artifacts +go.sum +_obj/ + +# Python artifacts +.venv/ +dist/ +*.egg-info +*.whl + +# C artifacts +*.a +*.so +*.so.* +*.dylib +*.dll +*.pc + +# Example dirs +/examples/*/ -# These files would be generated by 'tree-sitter generate' with the default -# settings. We don't want them because there's already a copy at the root. -/tsx/Cargo.toml -/tsx/binding.gyp -/tsx/bindings -/typescript/Cargo.toml -/typescript/binding.gyp -/typescript/bindings +# Grammar volatiles +*.wasm +*.obj +*.o diff --git a/.npmignore b/.npmignore deleted file mode 100644 index 3ff28413..00000000 --- a/.npmignore +++ /dev/null @@ -1,6 +0,0 @@ -/test -/examples -/build -/script -/target -appveyor.yml diff --git a/Cargo.toml b/Cargo.toml index 27d40332..b041e8b6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,11 +1,13 @@ [package] name = "tree-sitter-typescript" -description = "Typescript grammar for tree-sitter" +description = "TypeScript and TSX grammars for tree-sitter" version = "0.20.6" -authors = ["Max Brunsfeld "] +authors = [ + "Max Brunsfeld ", + "Amaan Qureshi ", +] license = "MIT" -readme = "bindings/rust/README.md" -keywords = ["incremental", "parsing", "typescript", "tsx"] +keywords = ["incremental", "parsing", "tree-sitter", "typescript", "tsx"] categories = ["parsing", "text-editors"] repository = "https://github.com/tree-sitter/tree-sitter-typescript" edition = "2021" @@ -13,20 +15,20 @@ autoexamples = false build = "bindings/rust/build.rs" include = [ - "common", - "bindings/rust", - "typescript/grammar.js", - "typescript/src", - "tsx/grammar.js", - "tsx/src", - "queries", + "common", + "bindings/rust", + "typescript/grammar.js", + "typescript/src", + "tsx/grammar.js", + "tsx/src", + "queries", ] [lib] path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = "~0.20.10" +tree-sitter = ">=0.21.0" [build-dependencies] -cc = "~1.0.90" +cc = "1.0.96" diff --git a/LICENSE b/LICENSE index 131d9c01..aa9f858d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2017 GitHub +Copyright (c) 2017 Max Brunsfeld Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Makefile b/Makefile new file mode 100644 index 00000000..2e1589c4 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +all install uninstall clean: + $(MAKE) -C typescript $@ + $(MAKE) -C tsx $@ + +test: + $(TS) test + $(TS) parse examples/* --quiet --time + +.PHONY: all install uninstall clean test update diff --git a/README.md b/README.md index c6dedc02..4dcf2fe0 100644 --- a/README.md +++ b/README.md @@ -5,6 +5,7 @@ [![matrix][matrix]](https://matrix.to/#/#tree-sitter-chat:matrix.org) [![crates][crates]](https://crates.io/crates/tree-sitter-typescript) [![npm][npm]](https://www.npmjs.com/package/tree-sitter-typescript) +[![pypi][pypi]](https://pypi.org/project/tree-sitter-typescript) TypeScript and TSX grammars for [tree-sitter][]. @@ -15,7 +16,7 @@ require("tree-sitter-typescript").typescript; // TypeScript grammar require("tree-sitter-typescript").tsx; // TSX grammar ``` -For Javascript files with [flow] type annotations you can use the the `tsx` parser. +For Javascript files with [flow] type annotations you can use the `tsx` parser. [tree-sitter]: https://github.com/tree-sitter/tree-sitter [flow]: https://flow.org/en/ @@ -29,3 +30,4 @@ References [matrix]: https://img.shields.io/matrix/tree-sitter-chat%3Amatrix.org?logo=matrix&label=matrix [npm]: https://img.shields.io/npm/v/tree-sitter-typescript?logo=npm [crates]: https://img.shields.io/crates/v/tree-sitter-typescript?logo=rust +[pypi]: https://img.shields.io/pypi/v/tree-sitter-typescript?logo=pypi&logoColor=ffd242 diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index b21947bc..00000000 --- a/appveyor.yml +++ /dev/null @@ -1,22 +0,0 @@ -image: Visual Studio 2015 - -environment: - nodejs_version: "8" - -platform: - - x64 - -install: - - ps: Install-Product node $env:nodejs_version - - node --version - - npm --version - - npm install - -test_script: - - npm run test-windows - -build: off - -branches: - only: - - master diff --git a/binding.gyp b/binding.gyp index 3b4daf46..129c8c6e 100644 --- a/binding.gyp +++ b/binding.gyp @@ -2,20 +2,23 @@ "targets": [ { "target_name": "tree_sitter_typescript_binding", + "dependencies": [ + " -#include "nan.h" - -using namespace v8; - -extern "C" TSLanguage * tree_sitter_typescript(); -extern "C" TSLanguage * tree_sitter_tsx(); - -namespace { - -NAN_METHOD(New) {} - -void Init(Local exports, Local module) { - Local ts_tpl = Nan::New(New); - ts_tpl->SetClassName(Nan::New("Language").ToLocalChecked()); - ts_tpl->InstanceTemplate()->SetInternalFieldCount(1); - Local ts_constructor = Nan::GetFunction(ts_tpl).ToLocalChecked(); - Local ts_instance = ts_constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); - Nan::SetInternalFieldPointer(ts_instance, 0, tree_sitter_typescript()); - Nan::Set(ts_instance, Nan::New("name").ToLocalChecked(), Nan::New("typescript").ToLocalChecked()); - - Local tsx_tpl = Nan::New(New); - tsx_tpl->SetClassName(Nan::New("Language").ToLocalChecked()); - tsx_tpl->InstanceTemplate()->SetInternalFieldCount(1); - Local tsx_constructor = Nan::GetFunction(tsx_tpl).ToLocalChecked(); - Local tsx_instance = tsx_constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); - Nan::SetInternalFieldPointer(tsx_instance, 0, tree_sitter_tsx()); - Nan::Set(tsx_instance, Nan::New("name").ToLocalChecked(), Nan::New("tsx").ToLocalChecked()); - - Nan::Set(exports, Nan::New("typescript").ToLocalChecked(), ts_instance); - Nan::Set(exports, Nan::New("tsx").ToLocalChecked(), tsx_instance); +#include + +typedef struct TSLanguage TSLanguage; + +extern "C" TSLanguage *tree_sitter_typescript(); +extern "C" TSLanguage *tree_sitter_tsx(); + +// "tree-sitter", "language" hashed with BLAKE2 +const napi_type_tag LANGUAGE_TYPE_TAG = { + 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 +}; + +Napi::Object Init(Napi::Env env, Napi::Object exports) { + auto typescript = Napi::Object::New(env); + typescript["name"] = Napi::String::New(env, "typescript"); + auto typescript_language = Napi::External::New(env, tree_sitter_typescript()); + typescript_language.TypeTag(&LANGUAGE_TYPE_TAG); + typescript["language"] = typescript_language; + + auto tsx = Napi::Object::New(env); + tsx["name"] = Napi::String::New(env, "tsx"); + auto tsx_language = Napi::External::New(env, tree_sitter_tsx()); + tsx_language.TypeTag(&LANGUAGE_TYPE_TAG); + tsx["language"] = tsx_language; + + exports["typescript"] = typescript; + exports["tsx"] = tsx; + return exports; } -NODE_MODULE(tree_sitter_typescript_binding, Init) - -} // namespace +NODE_API_MODULE(tree_sitter_typescript_binding, Init) diff --git a/bindings/node/index.d.ts b/bindings/node/index.d.ts new file mode 100644 index 00000000..735122f7 --- /dev/null +++ b/bindings/node/index.d.ts @@ -0,0 +1,29 @@ +type BaseNode = { + type: string; + named: boolean; +}; + +type ChildNode = { + multiple: boolean; + required: boolean; + types: BaseNode[]; +}; + +type NodeInfo = + | (BaseNode & { + subtypes: BaseNode[]; + }) + | (BaseNode & { + fields: { [name: string]: ChildNode }; + children: ChildNode[]; + }); + +type Language = { + name: string; + language: unknown; + nodeTypeInfo: NodeInfo[]; +}; + +declare const typescript: Language; +declare const tsx: Language; +export = {typescript, tsx} diff --git a/bindings/node/index.js b/bindings/node/index.js index b929899d..45f72986 100644 --- a/bindings/node/index.js +++ b/bindings/node/index.js @@ -1,20 +1,8 @@ -try { - module.exports = require("../../build/Release/tree_sitter_typescript_binding"); -} catch (error1) { - if (error1.code !== 'MODULE_NOT_FOUND') { - throw error1; - } - try { - module.exports = require("../../build/Debug/tree_sitter_typescript_binding"); - } catch (error2) { - if (error2.code !== 'MODULE_NOT_FOUND') { - throw error2; - } - throw error1 - } -} +const root = require("path").join(__dirname, "..", ".."); + +module.exports = require("node-gyp-build")(root); try { module.exports.typescript.nodeTypeInfo = require("../../typescript/src/node-types.json"); module.exports.tsx.nodeTypeInfo = require("../../tsx/src/node-types.json"); -} catch (_) {} +} catch (_) { } diff --git a/bindings/node/tsx.js b/bindings/node/tsx.js index a970e763..cbac2645 100644 --- a/bindings/node/tsx.js +++ b/bindings/node/tsx.js @@ -1 +1 @@ -module.exports = require('./index').tsx; +module.exports = require('.').tsx; diff --git a/bindings/node/typescript.js b/bindings/node/typescript.js index 49141147..3449d5b2 100644 --- a/bindings/node/typescript.js +++ b/bindings/node/typescript.js @@ -1 +1 @@ -module.exports = require('./index').typescript; +module.exports = require('.').typescript; diff --git a/bindings/python/tree_sitter_typescript/__init__.py b/bindings/python/tree_sitter_typescript/__init__.py new file mode 100644 index 00000000..3f0894f3 --- /dev/null +++ b/bindings/python/tree_sitter_typescript/__init__.py @@ -0,0 +1,3 @@ +"TypeScript and TSX grammars for tree-sitter" + +from ._binding import language_typescript, language_tsx diff --git a/bindings/python/tree_sitter_typescript/__init__.pyi b/bindings/python/tree_sitter_typescript/__init__.pyi new file mode 100644 index 00000000..045881d1 --- /dev/null +++ b/bindings/python/tree_sitter_typescript/__init__.pyi @@ -0,0 +1,3 @@ +def language_typescript() -> int: ... + +def language_tsx() -> int: ... diff --git a/bindings/python/tree_sitter_typescript/binding.c b/bindings/python/tree_sitter_typescript/binding.c new file mode 100644 index 00000000..84339edb --- /dev/null +++ b/bindings/python/tree_sitter_typescript/binding.c @@ -0,0 +1,34 @@ +#include + +typedef struct TSLanguage TSLanguage; + +TSLanguage *tree_sitter_typescript(void); +TSLanguage *tree_sitter_tsx(void); + +static PyObject* _binding_language_typescript(PyObject *self, PyObject *args) { + return PyLong_FromVoidPtr(tree_sitter_typescript()); +} + +static PyObject* _binding_language_tsx(PyObject *self, PyObject *args) { + return PyLong_FromVoidPtr(tree_sitter_tsx()); +} + +static PyMethodDef methods[] = { + {"language_typescript", _binding_language_typescript, METH_NOARGS, + "Get the tree-sitter language for TypeScript."}, + {"language_tsx", _binding_language_tsx, METH_NOARGS, + "Get the tree-sitter language for TSX."}, + {NULL, NULL, 0, NULL} +}; + +static struct PyModuleDef module = { + .m_base = PyModuleDef_HEAD_INIT, + .m_name = "_binding", + .m_doc = NULL, + .m_size = -1, + .m_methods = methods +}; + +PyMODINIT_FUNC PyInit__binding(void) { + return PyModule_Create(&module); +} diff --git a/bindings/python/tree_sitter_typescript/py.typed b/bindings/python/tree_sitter_typescript/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/bindings/rust/README.md b/bindings/rust/README.md deleted file mode 100644 index 8b8c9c44..00000000 --- a/bindings/rust/README.md +++ /dev/null @@ -1,46 +0,0 @@ -# tree-sitter-typescript - -This crate provides a TypeScript grammar for the [tree-sitter][] parsing -library. To use this crate, add it to the `[dependencies]` section of your -`Cargo.toml` file. (Note that you will probably also need to depend on the -[`tree-sitter`][tree-sitter crate] crate to use the parsed result in any useful -way.) - -```toml -[dependencies] -tree-sitter = "0.20.10" -tree-sitter-typescript = "0.20.6" -``` - -Typically, you will use the [language][language func] function to add this -grammar to a tree-sitter [Parser][], and then use the parser to parse some code. - -The below example demonstrates a simple program that parses a TypeScript -function and prints the result to your terminal. - -```rust -use tree_sitter::Parser; - -fn main() { - let code = r#" - function double(x) { - return x * 2; - } -"#; - let mut parser = Parser::new(); - parser - .set_language(tree_sitter_typescript::language()) - .expect("Error loading TypeScript grammar"); - let parsed = parser.parse(code, None); - println!("{:#?}", parsed); -} -``` - -If you have any questions, please reach out to us in the [tree-sitter -discussions] page. - -[language func]: https://docs.rs/tree-sitter-typescript/*/tree_sitter_typescript/fn.language.html -[Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html -[tree-sitter]: https://tree-sitter.github.io/ -[tree-sitter crate]: https://crates.io/crates/tree-sitter -[tree-sitter discussions]: https://github.com/tree-sitter/tree-sitter/discussions diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs index b7cda925..04526127 100644 --- a/bindings/rust/build.rs +++ b/bindings/rust/build.rs @@ -2,12 +2,13 @@ fn main() { let root_dir = std::path::Path::new("."); let typescript_dir = root_dir.join("typescript").join("src"); let tsx_dir = root_dir.join("tsx").join("src"); + let common_dir = root_dir.join("common"); let mut config = cc::Build::new(); config.include(&typescript_dir); config - .flag_if_supported("-Wno-unused-parameter") - .flag_if_supported("-Wno-unused-but-set-variable"); + .flag_if_supported("-std=c11") + .flag_if_supported("-Wno-unused-parameter"); for path in &[ typescript_dir.join("parser.c"), @@ -15,14 +16,14 @@ fn main() { tsx_dir.join("parser.c"), tsx_dir.join("scanner.c"), ] { - config.file(&path); + config.file(path); println!("cargo:rerun-if-changed={}", path.to_str().unwrap()); } println!( "cargo:rerun-if-changed={}", - root_dir.join("common").join("scanner.h").to_str().unwrap() + common_dir.join("scanner.h").to_str().unwrap() ); - config.compile("parser-scanner"); + config.compile("tree-sitter-typescript"); } diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs index c61eeba3..8cb95719 100644 --- a/bindings/rust/lib.rs +++ b/bindings/rust/lib.rs @@ -1,27 +1,26 @@ -//! This crate provides Typescript and TSX grammars for the [tree-sitter][] parsing library. +//! This crate provides TypeScript and TSX language support for the [tree-sitter][] parsing library. //! -//! Typically, you will use the [language_typescript][language func] function to add this grammar to a +//! Typically, you will use the [language][language func] function to add this language to a //! tree-sitter [Parser][], and then use the parser to parse some code: //! //! ``` //! use tree_sitter::Parser; //! //! let code = r#" -//! function double(x: number): number { -//! return x * 2; -//! } +//! function double(x: number): number { +//! return x * 2; +//! } //! "#; //! let mut parser = Parser::new(); //! parser -//! .set_language(tree_sitter_typescript::language_typescript()) -//! .expect("Error loading typescript grammar"); -//! let parsed = parser.parse(code, None).unwrap(); -//! let root = parsed.root_node(); -//! assert!(!root.has_error()); +//! .set_language(&tree_sitter_typescript::language_typescript()) +//! .expect("Error loading TypeScript grammar"); +//! let tree = parser.parse(code, None).unwrap(); +//! assert!(!tree.root_node().has_error()); //! ``` //! //! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -//! [language func]: fn.language_typescript.html +//! [language func]: fn.language.html //! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html //! [tree-sitter]: https://tree-sitter.github.io/ @@ -32,31 +31,42 @@ extern "C" { fn tree_sitter_tsx() -> Language; } -/// Returns the tree-sitter [Language][] for this Typescript. +/// Get the tree-sitter [Language][] for TypeScript. /// /// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html pub fn language_typescript() -> Language { unsafe { tree_sitter_typescript() } } -/// Returns the tree-sitter [Language][] for TSX. +/// Get the tree-sitter [Language][] for TSX. /// /// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html pub fn language_tsx() -> Language { unsafe { tree_sitter_tsx() } } -/// The syntax highlighting query for this language. -pub const HIGHLIGHT_QUERY: &str = include_str!("../../queries/highlights.scm"); - -/// The local-variable syntax highlighting query for this language. -pub const LOCALS_QUERY: &str = include_str!("../../queries/locals.scm"); - -/// The symbol tagging query for this language. -pub const TAGGING_QUERY: &str = include_str!("../../queries/tags.scm"); - /// The content of the [`node-types.json`][] file for this grammar. /// /// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types pub const TYPESCRIPT_NODE_TYPES: &str = include_str!("../../typescript/src/node-types.json"); pub const TSX_NODE_TYPES: &str = include_str!("../../tsx/src/node-types.json"); + +/// The syntax highlighting query for TypeScript. +pub const HIGHLIGHTS_QUERY: &str = include_str!("../../queries/highlights.scm"); + +/// The local-variable syntax highlighting query for TypeScript. +pub const LOCALS_QUERY: &str = include_str!("../../queries/locals.scm"); + +/// The symbol tagging query for TypeScript. +pub const TAGS_QUERY: &str = include_str!("../../queries/tags.scm"); + +#[cfg(test)] +mod tests { + #[test] + fn test_can_load_grammar() { + let mut parser = tree_sitter::Parser::new(); + parser + .set_language(&super::language_typescript()) + .expect("Error loading TypeScript grammar"); + } +} diff --git a/bindings/swift/TreeSitterTypeScript/typescript.h b/bindings/swift/TreeSitterTypeScript/typescript.h index 5778d776..3293525e 100644 --- a/bindings/swift/TreeSitterTypeScript/typescript.h +++ b/bindings/swift/TreeSitterTypeScript/typescript.h @@ -7,8 +7,8 @@ typedef struct TSLanguage TSLanguage; extern "C" { #endif -extern TSLanguage *tree_sitter_typescript(); -extern TSLanguage *tree_sitter_tsx(); +const TSLanguage *tree_sitter_typescript(); +const TSLanguage *tree_sitter_tsx(); #ifdef __cplusplus } diff --git a/common/common.mak b/common/common.mak new file mode 100644 index 00000000..c77b5ac7 --- /dev/null +++ b/common/common.mak @@ -0,0 +1,107 @@ +VERSION := 0.20.6 + +# repository +SRC_DIR := src + +PARSER_REPO_URL := $(shell git -C $(SRC_DIR) remote get-url origin 2>/dev/null) + +ifeq ($(PARSER_URL),) + PARSER_URL := $(subst .git,,$(PARSER_REPO_URL)) +ifeq ($(shell echo $(PARSER_URL) | grep '^[a-z][-+.0-9a-z]*://'),) + PARSER_URL := $(subst :,/,$(PARSER_URL)) + PARSER_URL := $(subst git@,https://,$(PARSER_URL)) +endif +endif + +TS ?= tree-sitter + +# ABI versioning +SONAME_MAJOR := $(word 1,$(subst ., ,$(VERSION))) +SONAME_MINOR := $(word 2,$(subst ., ,$(VERSION))) + +# install directory layout +PREFIX ?= /usr/local +INCLUDEDIR ?= $(PREFIX)/include +LIBDIR ?= $(PREFIX)/lib +PCLIBDIR ?= $(LIBDIR)/pkgconfig + +# source/object files +PARSER := $(SRC_DIR)/parser.c +EXTRAS := $(filter-out $(PARSER),$(wildcard $(SRC_DIR)/*.c)) +OBJS := $(patsubst %.c,%.o,$(PARSER) $(EXTRAS)) + +# flags +ARFLAGS ?= rcs +override CFLAGS += -I$(SRC_DIR) -std=c11 -fPIC + +# OS-specific bits +ifeq ($(OS),Windows_NT) + $(error "Windows is not supported") +else ifeq ($(shell uname),Darwin) + SOEXT = dylib + SOEXTVER_MAJOR = $(SONAME_MAJOR).dylib + SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).dylib + LINKSHARED := $(LINKSHARED)-dynamiclib -Wl, + ifneq ($(ADDITIONAL_LIBS),) + LINKSHARED := $(LINKSHARED)$(ADDITIONAL_LIBS), + endif + LINKSHARED := $(LINKSHARED)-install_name,$(LIBDIR)/lib$(LANGUAGE_NAME).$(SONAME_MAJOR).dylib,-rpath,@executable_path/../Frameworks +else + SOEXT = so + SOEXTVER_MAJOR = so.$(SONAME_MAJOR) + SOEXTVER = so.$(SONAME_MAJOR).$(SONAME_MINOR) + LINKSHARED := $(LINKSHARED)-shared -Wl, + ifneq ($(ADDITIONAL_LIBS),) + LINKSHARED := $(LINKSHARED)$(ADDITIONAL_LIBS) + endif + LINKSHARED := $(LINKSHARED)-soname,lib$(LANGUAGE_NAME).so.$(SONAME_MAJOR) +endif +ifneq ($(filter $(shell uname),FreeBSD NetBSD DragonFly),) + PCLIBDIR := $(PREFIX)/libdata/pkgconfig +endif + +all: lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) $(LANGUAGE_NAME).pc + +lib$(LANGUAGE_NAME).a: $(OBJS) + $(AR) $(ARFLAGS) $@ $^ + +lib$(LANGUAGE_NAME).$(SOEXT): $(OBJS) + $(CC) $(LDFLAGS) $(LINKSHARED) $^ $(LDLIBS) -o $@ +ifneq ($(STRIP),) + $(STRIP) $@ +endif + +$(LANGUAGE_NAME).pc: ../bindings/c/$(LANGUAGE_NAME).pc.in + sed -e 's|@URL@|$(PARSER_URL)|' \ + -e 's|@VERSION@|$(VERSION)|' \ + -e 's|@LIBDIR@|$(LIBDIR)|' \ + -e 's|@INCLUDEDIR@|$(INCLUDEDIR)|' \ + -e 's|@REQUIRES@|$(REQUIRES)|' \ + -e 's|@ADDITIONAL_LIBS@|$(ADDITIONAL_LIBS)|' \ + -e 's|=$(PREFIX)|=$${prefix}|' \ + -e 's|@PREFIX@|$(PREFIX)|' $< > $@ + +$(PARSER): grammar.js + $(TS) generate --no-bindings + +install: all + install -d '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter '$(DESTDIR)$(PCLIBDIR)' '$(DESTDIR)$(LIBDIR)' + install -m644 ../bindings/c/$(LANGUAGE_NAME).h '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h + install -m644 $(LANGUAGE_NAME).pc '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc + install -m755 lib$(LANGUAGE_NAME).a '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a + install -m755 lib$(LANGUAGE_NAME).$(SOEXT) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) + ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) + ln -sf lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) + +uninstall: + $(RM) '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).a \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER) \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXTVER_MAJOR) \ + '$(DESTDIR)$(LIBDIR)'/lib$(LANGUAGE_NAME).$(SOEXT) \ + '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter/$(LANGUAGE_NAME).h \ + '$(DESTDIR)$(PCLIBDIR)'/$(LANGUAGE_NAME).pc + +clean: + $(RM) $(OBJS) $(LANGUAGE_NAME).pc lib$(LANGUAGE_NAME).a lib$(LANGUAGE_NAME).$(SOEXT) + +.PHONY: all install uninstall clean diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 00000000..34831df1 --- /dev/null +++ b/package-lock.json @@ -0,0 +1,1494 @@ +{ + "name": "tree-sitter-typescript", + "version": "0.20.6", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "tree-sitter-typescript", + "version": "0.20.6", + "hasInstallScript": true, + "license": "MIT", + "dependencies": { + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.1" + }, + "devDependencies": { + "eslint": ">=8.57.0", + "eslint-config-google": "^0.14.0", + "prebuildify": "^6.0.1", + "tree-sitter-cli": "^0.22.6", + "tree-sitter-javascript": "^0.21.2" + }, + "peerDependencies": { + "tree-sitter": "^0.21.0" + }, + "peerDependenciesMeta": { + "tree_sitter": { + "optional": true + } + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.10.0.tgz", + "integrity": "sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", + "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/js": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.0.tgz", + "integrity": "sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.14", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", + "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^2.0.2", + "debug": "^4.3.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", + "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", + "dev": true + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "dev": true, + "dependencies": { + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dev": true, + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", + "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.0", + "@humanwhocodes/config-array": "^0.11.14", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-google": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/eslint-config-google/-/eslint-config-google-0.14.0.tgz", + "integrity": "sha512-WsbX4WbjuMvTdeVL6+J3rK1RGhCTqjsFjX7UMSMgZiyxxaNLkoJENbrGExzERFeoTpGw3F3FypTiWAP9ZXzkEw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + }, + "peerDependencies": { + "eslint": ">=5.16.0" + } + }, + "node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.17.1", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.17.1.tgz", + "integrity": "sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", + "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", + "dev": true, + "dependencies": { + "flatted": "^3.2.9", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.1.tgz", + "integrity": "sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==", + "dev": true + }, + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", + "dev": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/node-abi": { + "version": "3.45.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.45.0.tgz", + "integrity": "sha512-iwXuFrMAcFVi/ZoZiqq8BzAdsLw9kxDfTC0HMyjXfSL/6CSDAGD5UmR7azrAgWV1zKYq7dUUMj4owusBWKLsiQ==", + "dev": true, + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-addon-api": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.0.0.tgz", + "integrity": "sha512-ipO7rsHEBqa9STO5C5T10fj732ml+5kLN1cAG8/jdHd56ldQeGj3Q7+scUS+VHK/qy1zLEwC4wMK5+yM0btPvw==", + "engines": { + "node": "^18 || ^20 || >= 21" + } + }, + "node_modules/node-gyp-build": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.1.tgz", + "integrity": "sha512-OSs33Z9yWr148JZcbZd5WiAXhh/n9z8TxQcdMhIOlpN9AhWpLfvVFO73+m77bBABQMaY9XSvIa+qk0jlI7Gcaw==", + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" + } + }, + "node_modules/npm-run-path": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-3.1.0.tgz", + "integrity": "sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/optionator": { + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", + "dev": true, + "dependencies": { + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/prebuildify": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/prebuildify/-/prebuildify-6.0.1.tgz", + "integrity": "sha512-8Y2oOOateom/s8dNBsGIcnm6AxPmLH4/nanQzL5lQMU+sC0CMhzARZHizwr36pUPLdvBnOkCNQzxg4djuFSgIw==", + "dev": true, + "dependencies": { + "minimist": "^1.2.5", + "mkdirp-classic": "^0.5.3", + "node-abi": "^3.3.0", + "npm-run-path": "^3.1.0", + "pump": "^3.0.0", + "tar-fs": "^2.1.0" + }, + "bin": { + "prebuildify": "bin.js" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", + "dev": true, + "dependencies": { + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" + } + }, + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", + "dev": true, + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/tree-sitter": { + "version": "0.21.1", + "resolved": "https://registry.npmjs.org/tree-sitter/-/tree-sitter-0.21.1.tgz", + "integrity": "sha512-7dxoA6kYvtgWw80265MyqJlkRl4yawIjO7S5MigytjELkX43fV2WsAXzsNfO7sBpPPCF5Gp0+XzHk0DwLCq3xQ==", + "hasInstallScript": true, + "peer": true, + "dependencies": { + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.0" + } + }, + "node_modules/tree-sitter-cli": { + "version": "0.22.6", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.22.6.tgz", + "integrity": "sha512-s7mYOJXi8sIFkt/nLJSqlYZP96VmKTc3BAwIX0rrrlRxWjWuCwixFqwzxWZBQz4R8Hx01iP7z3cT3ih58BUmZQ==", + "dev": true, + "hasInstallScript": true, + "bin": { + "tree-sitter": "cli.js" + } + }, + "node_modules/tree-sitter-javascript": { + "version": "0.21.2", + "resolved": "https://registry.npmjs.org/tree-sitter-javascript/-/tree-sitter-javascript-0.21.2.tgz", + "integrity": "sha512-048eZTByvBaYo9cKM1dixlRqJjFug0ukt8+H07+JGxrlqCzzR8BpOieYHWHRwqvnt3TTzLLWWuT5kn5UwJ55wg==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.1" + }, + "peerDependencies": { + "tree-sitter": "^0.21.1" + }, + "peerDependenciesMeta": { + "tree_sitter": { + "optional": true + } + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/package.json b/package.json index 88d4736c..c021e170 100644 --- a/package.json +++ b/package.json @@ -1,40 +1,63 @@ { "name": "tree-sitter-typescript", "version": "0.20.6", - "description": "TypeScript grammar for tree-sitter", - "main": "./bindings/node", + "description": "TypeScript and TSX grammars for tree-sitter", + "repository": "github:tree-sitter/tree-sitter-typescript", + "license": "MIT", + "author": "Max Brunsfeld ", + "maintainers": [ + "Amaan Qureshi " + ], + "main": "bindings/node", + "types": "bindings/node", "keywords": [ - "parser", + "incremental", + "parsing", "tree-sitter", "typescript", "tsx" ], - "repository": { - "type": "git", - "url": "https://github.com/tree-sitter/tree-sitter-typescript.git" - }, - "author": "Max Brunsfeld", - "license": "MIT", + "files": [ + "binding.gyp", + "prebuilds/**", + "bindings/node/*", + "queries/*", + "typescript/grammar.js", + "tsx/grammar.js", + "typescript/package.json", + "tsx/package.json", + "typescript/src/**", + "tsx/src/**", + "common/**" + ], "dependencies": { - "nan": "^2.19.0", - "tree-sitter": "^0.20.6" + "node-addon-api": "^8.0.0", + "node-gyp-build": "^4.8.1" + }, + "peerDependencies": { + "tree-sitter": "^0.21.0" + }, + "peerDependenciesMeta": { + "tree_sitter": { + "optional": true + } }, "devDependencies": { "eslint": ">=8.57.0", "eslint-config-google": "^0.14.0", - "tree-sitter-cli": "^0.21.0", - "tree-sitter-javascript": "^0.20.4" + "tree-sitter-cli": "^0.22.6", + "tree-sitter-javascript": "^0.21.2", + "prebuildify": "^6.0.1" }, "scripts": { + "install": "node-gyp-build", + "prebuildify": "prebuildify --napi --strip", "build": "npm run build-typescript && npm run build-tsx", "build-typescript": "cd typescript && npx tree-sitter generate --no-bindings", "build-tsx": "cd tsx && npx tree-sitter generate --no-bindings", "lint": "eslint common/define-grammar.js", - "test-load": "node -e \"console.log(require('./typescript').name, require('./tsx').name)\"", - "test": "npm run test-typescript && npm run test-tsx && npm run test-load && script/parse-examples", - "test-typescript": "cd typescript && npx tree-sitter test", - "test-tsx": "cd tsx && npx tree-sitter test", - "test-windows": "pushd typescript && npx tree-sitter test && popd && pushd tsx && npx tree-sitter test" + "parse": "tree-sitter parse", + "test": "tree-sitter test" }, "tree-sitter": [ { @@ -96,5 +119,47 @@ "injections": "node_modules/tree-sitter-javascript/queries/injections.scm", "content-regex": "@flow" } - ] + ], + "eslintConfig": { + "env": { + "commonjs": true, + "es2021": true + }, + "extends": "google", + "parserOptions": { + "ecmaVersion": "latest", + "sourceType": "module" + }, + "rules": { + "arrow-parens": "off", + "camel-case": "off", + "indent": [ + "error", + 2, + { + "SwitchCase": 1 + } + ], + "max-len": [ + "error", + { + "code": 160, + "ignoreComments": true, + "ignoreUrls": true, + "ignoreStrings": true + } + ], + "spaced-comment": [ + "warn", + "always", + { + "line": { + "markers": [ + "/" + ] + } + } + ] + } + } } diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..9694bf0a --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,33 @@ +[build-system] +requires = ["setuptools>=42", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "tree-sitter-typescript" +description = "TypeScript and TSX grammars for tree-sitter" +version = "0.20.6" +keywords = ["incremental", "parsing", "tree-sitter", "typescript", "tsx"] +classifiers = [ + "Intended Audience :: Developers", + "License :: OSI Approved :: MIT License", + "Topic :: Software Development :: Compilers", + "Topic :: Text Processing :: Linguistic", + "Typing :: Typed", +] +authors = [ + { name = "Max Brunsfeld", email = "maxbrunsfeld@gmail.com" }, + { name = "Amaan Qureshi", email = "amaanq12@gmail.com" }, +] +requires-python = ">=3.8" +license.text = "MIT" +readme = "README.md" + +[project.urls] +Homepage = "https://github.com/tree-sitter/tree-sitter-typescript" + +[project.optional-dependencies] +core = ["tree-sitter~=0.21"] + +[tool.cibuildwheel] +build = "cp38-*" +build-frontend = "build" diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..5284fef9 --- /dev/null +++ b/setup.py @@ -0,0 +1,61 @@ +from os.path import isdir, join +from platform import system + +from setuptools import Extension, find_packages, setup +from setuptools.command.build import build +from wheel.bdist_wheel import bdist_wheel + + +class Build(build): + def run(self): + if isdir("queries"): + dest = join(self.build_lib, "tree_sitter_typescript", "queries") + self.copy_tree("queries", dest) + super().run() + + +class BdistWheel(bdist_wheel): + def get_tag(self): + python, abi, platform = super().get_tag() + if python.startswith("cp"): + python, abi = "cp38", "abi3" + return python, abi, platform + + +setup( + packages=find_packages("bindings/python"), + package_dir={"": "bindings/python"}, + package_data={ + "tree_sitter_typescript": ["*.pyi", "py.typed"], + "tree_sitter_typescript.queries": ["*.scm"], + }, + ext_package="tree_sitter_typescript", + ext_modules=[ + Extension( + name="_binding", + sources=[ + "bindings/python/tree_sitter_typescript/binding.c", + "typescript/src/parser.c", + "typescript/src/scanner.c", + "tsx/src/parser.c", + "tsx/src/scanner.c", + ], + extra_compile_args=[ + "-std=c11", + "-Wno-unused-parameter", + "-Wno-unused-value", + ] if system() != "Windows" else [], + define_macros=[ + ("Py_LIMITED_API", "0x03080000"), + ("PY_SSIZE_T_CLEAN", None) + ], + include_dirs=["typescript/src"], + py_limited_api=True, + ) + ], + cmdclass={ + "build": Build, + "bdist_wheel": BdistWheel + }, + zip_safe=False +) diff --git a/common/corpus/declarations.txt b/test/corpus/declarations.txt similarity index 100% rename from common/corpus/declarations.txt rename to test/corpus/declarations.txt diff --git a/common/corpus/expressions.txt b/test/corpus/expressions.txt similarity index 87% rename from common/corpus/expressions.txt rename to test/corpus/expressions.txt index b0443dff..c1d15934 100644 --- a/common/corpus/expressions.txt +++ b/test/corpus/expressions.txt @@ -357,3 +357,51 @@ const ErrorMap = Map; (type_arguments (predefined_type) (type_identifier)))))) + +========================== +Type assertions +:language(typescript) +========================== + +b; +>e.f; + +--- + +(program + (expression_statement (type_assertion + (type_arguments (type_identifier)) + (identifier))) + (expression_statement (type_assertion + (type_arguments (generic_type + (type_identifier) + (type_arguments (type_identifier)))) + (member_expression + (identifier) + (property_identifier))))) + +========================================================== +Type arguments in JSX +:language(tsx) +========================================================== + +>hi; + />; +<>fragment; + +--- + +(program + (expression_statement + (jsx_element + (jsx_opening_element (identifier) (type_arguments (type_identifier))) + (jsx_text) + (jsx_closing_element (identifier)))) + (expression_statement + (jsx_self_closing_element + (identifier) (type_arguments (type_identifier)))) + (expression_statement + (jsx_element + (jsx_opening_element) + (jsx_text) + (jsx_closing_element)))) diff --git a/common/corpus/functions.txt b/test/corpus/functions.txt similarity index 100% rename from common/corpus/functions.txt rename to test/corpus/functions.txt diff --git a/common/corpus/types.txt b/test/corpus/types.txt similarity index 100% rename from common/corpus/types.txt rename to test/corpus/types.txt diff --git a/tsx/Makefile b/tsx/Makefile new file mode 100644 index 00000000..f411bfe2 --- /dev/null +++ b/tsx/Makefile @@ -0,0 +1,3 @@ +LANGUAGE_NAME := tree-sitter-tsx + +include ../common/common.mak diff --git a/tsx/corpus/common b/tsx/corpus/common deleted file mode 120000 index 3889fcd7..00000000 --- a/tsx/corpus/common +++ /dev/null @@ -1 +0,0 @@ -../../common/corpus \ No newline at end of file diff --git a/tsx/corpus/expressions.txt b/tsx/corpus/expressions.txt deleted file mode 100644 index db87b514..00000000 --- a/tsx/corpus/expressions.txt +++ /dev/null @@ -1,25 +0,0 @@ -========================================================== -Type arguments in JSX -========================================================== - ->hi; - />; -<>fragment; - ---- - -(program - (expression_statement - (jsx_element - (jsx_opening_element (identifier) (type_arguments (type_identifier))) - (jsx_text) - (jsx_closing_element (identifier)))) - (expression_statement - (jsx_self_closing_element - (identifier) (type_arguments (type_identifier)))) - (expression_statement - (jsx_element - (jsx_opening_element) - (jsx_text) - (jsx_closing_element))) -) diff --git a/tsx/src/scanner.c b/tsx/src/scanner.c index b3f8e81f..ac3f57ce 100644 --- a/tsx/src/scanner.c +++ b/tsx/src/scanner.c @@ -4,8 +4,6 @@ void *tree_sitter_tsx_external_scanner_create() { return NULL; } void tree_sitter_tsx_external_scanner_destroy(void *payload) {} -void tree_sitter_tsx_external_scanner_reset(void *payload) {} - unsigned tree_sitter_tsx_external_scanner_serialize(void *payload, char *buffer) { return 0; } void tree_sitter_tsx_external_scanner_deserialize(void *payload, const char *buffer, unsigned length) {} diff --git a/typescript/Makefile b/typescript/Makefile new file mode 100644 index 00000000..801b297e --- /dev/null +++ b/typescript/Makefile @@ -0,0 +1,3 @@ +LANGUAGE_NAME := tree-sitter-typescript + +include ../common/common.mak diff --git a/typescript/corpus/common b/typescript/corpus/common deleted file mode 120000 index 3889fcd7..00000000 --- a/typescript/corpus/common +++ /dev/null @@ -1 +0,0 @@ -../../common/corpus \ No newline at end of file diff --git a/typescript/corpus/expressions.txt b/typescript/corpus/expressions.txt deleted file mode 100644 index e9fc66cd..00000000 --- a/typescript/corpus/expressions.txt +++ /dev/null @@ -1,20 +0,0 @@ -========================== -Type assertions -========================== - -b; ->e.f; - ---- - -(program - (expression_statement (type_assertion - (type_arguments (type_identifier)) - (identifier))) - (expression_statement (type_assertion - (type_arguments (generic_type - (type_identifier) - (type_arguments (type_identifier)))) - (member_expression - (identifier) - (property_identifier))))) diff --git a/typescript/src/scanner.c b/typescript/src/scanner.c index 1bdb5f14..ebdb193e 100644 --- a/typescript/src/scanner.c +++ b/typescript/src/scanner.c @@ -4,8 +4,6 @@ void *tree_sitter_typescript_external_scanner_create() { return NULL; } void tree_sitter_typescript_external_scanner_destroy(void *payload) {} -void tree_sitter_typescript_external_scanner_reset(void *payload) {} - unsigned tree_sitter_typescript_external_scanner_serialize(void *payload, char *buffer) { return 0; } void tree_sitter_typescript_external_scanner_deserialize(void *payload, const char *buffer, unsigned length) {} diff --git a/typescript/test.ts b/typescript/test.ts deleted file mode 100644 index 48f4012d..00000000 --- a/typescript/test.ts +++ /dev/null @@ -1 +0,0 @@ -type a = readonly b[][]; From 7c5bfc84a4f835fe50e5b0e8912f4032de0e8bd5 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Mon, 6 May 2024 00:45:10 -0400 Subject: [PATCH 2/3] ci: update workflows --- .github/pull_request_template.md | 7 --- .github/workflows/ci.yml | 63 +++++++++++++------ .github/workflows/fuzz.yml | 29 +++++++++ .github/workflows/lint.yml | 19 ++++-- .github/workflows/publish.yml | 23 +++++++ .github/workflows/release.yml | 103 ------------------------------- script/check-generated-files | 19 ------ script/known-failures.txt | 1 - script/parse-examples | 55 ----------------- 9 files changed, 109 insertions(+), 210 deletions(-) delete mode 100644 .github/pull_request_template.md create mode 100644 .github/workflows/fuzz.yml create mode 100644 .github/workflows/publish.yml delete mode 100644 .github/workflows/release.yml delete mode 100755 script/check-generated-files delete mode 100644 script/known-failures.txt delete mode 100755 script/parse-examples diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md deleted file mode 100644 index d6ee77b2..00000000 --- a/.github/pull_request_template.md +++ /dev/null @@ -1,7 +0,0 @@ -# Checklist - -- [ ] All tests pass in CI. -- [ ] There are sufficient tests for the new fix/feature. -- [ ] Grammar rules have not been renamed unless absolutely necessary. -- [ ] The conflicts section hasn't grown too much. -- [ ] The parser size hasn't grown too much (check the value of STATE_COUNT in src/parser.c). diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 08448036..a2f1238c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,30 +1,55 @@ name: CI + on: - workflow_dispatch: - pull_request: push: + branches: [master] + paths: + - "scripts.js" + - "common/*" + - "*/grammar.js" + - "*/src/**" + - "bindings/**" + - "binding.gyp" + pull_request: + paths: + - "scripts.js" + - "common/*" + - "*/grammar.js" + - "*/src/**" + - "bindings/**" + - "binding.gyp" + +concurrency: + group: ${{github.workflow}}-${{github.ref}} + cancel-in-progress: true jobs: test: - runs-on: ${{ matrix.os }} + name: Test parsers + runs-on: ${{matrix.os}} strategy: - fail-fast: true + fail-fast: false matrix: - os: [macos-latest, ubuntu-latest] + os: [ubuntu-latest, windows-latest, macos-14] steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - name: Checkout repository + uses: actions/checkout@v4 + - name: Set up tree-sitter + uses: tree-sitter/setup-action/cli@v1 + - name: Set up examples + run: |- + git clone https://github.com/desktop/desktop examples/desktop --single-branch --depth=1 --filter=blob:none + git clone https://github.com/reduxjs/redux examples/redux --single-branch --depth=1 --filter=blob:none + git clone https://github.com/microsoft/vscode examples/vscode --single-branch --depth=1 --filter=blob:none + - name: Run tests + uses: tree-sitter/parser-test-action@v2 with: - node-version: 18 - - run: npm install - - run: npm test - - test_windows: - runs-on: windows-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + test-rust: ${{runner.os == 'Linux'}} + - name: Parse examples + id: test + uses: tree-sitter/parse-action@v4 with: - node-version: 18 - - run: npm install - - run: npm run test-windows + files: | + examples/**/*.ts + examples/**/*.tsx + !examples/redux/src/types/store.ts diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml new file mode 100644 index 00000000..fdb88d57 --- /dev/null +++ b/.github/workflows/fuzz.yml @@ -0,0 +1,29 @@ +name: Fuzz Parser + +on: + push: + branches: [master] + paths: + - typescript/src/scanner.c + - tsx/src/scanner.c + - common/scanner.h + pull_request: + paths: + - typescript/src/scanner.c + - tsx/src/scanner.c + - common/scanner.h + +jobs: + fuzz: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + language: [typescript, tsx] + steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Fuzz ${{matrix.language}} parser + uses: tree-sitter/fuzz-action@v4 + with: + directory: ${{matrix.language}} diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 103e92ae..11562607 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -2,18 +2,25 @@ name: Lint on: push: - branches: - - master + branches: [master] + paths: + - common/define-grammar.js pull_request: - branches: - - "**" + paths: + - common/define-grammar.js jobs: lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - name: Checkout repository + uses: actions/checkout@v4 + - name: Set up Node.js + uses: actions/setup-node@v4 + with: + cache: npm + node-version: ${{vars.NODE_VERSION}} - name: Install modules - run: npm install + run: npm ci --legacy-peer-deps - name: Run ESLint run: npm run lint diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 00000000..ac31648d --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,23 @@ +name: Publish package + +on: + push: + tags: ["*"] + +concurrency: + group: ${{github.workflow}}-${{github.ref}} + cancel-in-progress: true + +jobs: + npm: + uses: tree-sitter/workflows/.github/workflows/package-npm.yml@main + secrets: + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} + crates: + uses: tree-sitter/workflows/.github/workflows/package-crates.yml@main + secrets: + CARGO_REGISTRY_TOKEN: ${{secrets.CARGO_REGISTRY_TOKEN}} + pypi: + uses: tree-sitter/workflows/.github/workflows/package-pypi.yml@main + secrets: + PYPI_API_TOKEN: ${{secrets.PYPI_API_TOKEN}} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 870eb84b..00000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,103 +0,0 @@ -name: Release - -on: - workflow_run: - workflows: ["CI"] - branches: - - master - types: - - completed - -jobs: - release: - runs-on: ubuntu-latest - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - - name: Get previous commit SHA - id: get_previous_commit - run: | - LATEST_TAG=$(git describe --tags --abbrev=0) - if [[ -z "$LATEST_TAG" ]]; then - echo "No tag found. Failing..." - exit 1 - fi - echo "latest_tag=${LATEST_TAG#v}" >> "$GITHUB_ENV" # Remove 'v' prefix from the tag - - - name: Check if version changed and is greater than the previous - id: version_check - run: | - # Compare the current version with the version from the previous commit - PREVIOUS_NPM_VERSION=${{ env.latest_tag }} - CURRENT_NPM_VERSION=$(jq -r '.version' package.json) - CURRENT_CARGO_VERSION=$(awk -F '"' '/^version/ {print $2}' Cargo.toml) - if [[ "$CURRENT_NPM_VERSION" != "$CURRENT_CARGO_VERSION" ]]; then # Cargo.toml and package.json versions must match - echo "Mismatch: NPM version ($CURRENT_NPM_VERSION) and Cargo.toml version ($CURRENT_CARGO_VERSION)" - echo "version_changed=false" >> "$GITHUB_ENV" - else - if [[ "$PREVIOUS_NPM_VERSION" == "$CURRENT_NPM_VERSION" ]]; then - echo "version_changed=" >> "$GITHUB_ENV" - else - IFS='.' read -ra PREVIOUS_VERSION_PARTS <<< "$PREVIOUS_NPM_VERSION" - IFS='.' read -ra CURRENT_VERSION_PARTS <<< "$CURRENT_NPM_VERSION" - VERSION_CHANGED=false - for i in "${!PREVIOUS_VERSION_PARTS[@]}"; do - if [[ ${CURRENT_VERSION_PARTS[i]} -gt ${PREVIOUS_VERSION_PARTS[i]} ]]; then - VERSION_CHANGED=true - break - elif [[ ${CURRENT_VERSION_PARTS[i]} -lt ${PREVIOUS_VERSION_PARTS[i]} ]]; then - break - fi - done - - echo "version_changed=$VERSION_CHANGED" >> "$GITHUB_ENV" - echo "current_version=${CURRENT_NPM_VERSION}" >> "$GITHUB_ENV" - fi - fi - - - name: Display result - run: | - echo "Version bump detected: ${{ env.version_changed }}" - - - name: Fail if version is lower - if: env.version_changed == 'false' - run: exit 1 - - - name: Setup Node - if: env.version_changed == 'true' - uses: actions/setup-node@v4 - with: - node-version: 18 - registry-url: "https://registry.npmjs.org" - - name: Publish to NPM - if: env.version_changed == 'true' - env: - NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} - run: npm publish - - - name: Setup Rust - if: env.version_changed == 'true' - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - - name: Publish to Crates.io - if: env.version_changed == 'true' - uses: katyo/publish-crates@v2 - with: - registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} - - - name: Tag versions - if: env.version_changed == 'true' - run: | - git checkout master - git config user.name github-actions[bot] - git config user.email github-actions[bot]@users.noreply.github.com - git tag -d "v${{ env.current_version }}" || true - git push origin --delete "v${{ env.current_version }}" || true - git tag -a "v${{ env.current_version }}" -m "Version ${{ env.current_version }}" - git push origin "v${{ env.current_version }}" diff --git a/script/check-generated-files b/script/check-generated-files deleted file mode 100755 index c1f216dd..00000000 --- a/script/check-generated-files +++ /dev/null @@ -1,19 +0,0 @@ -#!/usr/bin/env bash - -set -eu - -## Update index to make sure the subsequent diff-index command only reports -## a change if the file content actually changed. Not updating the index can -## give incorrect results when this script is run right after a build. - -git update-index -q --really-refresh - -if ! git diff-index --exit-code --name-status HEAD -- {tsx,typescript}/src/; then - echo "The following files are not up to date in the repository:" 1>&2 - git diff-index --name-status HEAD 1>&2 - echo "Run a build and commit the generated files to resolve this issue." 1>&2 - git diff-index -p HEAD - exit 1 -fi - -exit 0 diff --git a/script/known-failures.txt b/script/known-failures.txt deleted file mode 100644 index 63c51c8d..00000000 --- a/script/known-failures.txt +++ /dev/null @@ -1 +0,0 @@ -examples/redux/src/types/store.ts diff --git a/script/parse-examples b/script/parse-examples deleted file mode 100755 index 68df2397..00000000 --- a/script/parse-examples +++ /dev/null @@ -1,55 +0,0 @@ -#!/bin/bash - -set -e - -cd "$(dirname "$0")/.." -root="$PWD" - -clone_repo() { - local owner=$1 - local name=$2 - local sha=$3 - local path="$root/examples/$name" - - if [ -d "$path" ]; then - pushd "$path" >/dev/null - if [ "$(git rev-parse HEAD 2>/dev/null)" == "$sha" ]; then - popd >/dev/null - return - else - popd >/dev/null - rm -rf "$path" - echo "Updating $owner/$name to $sha" - fi - else - echo "Cloning $owner/$name" - fi - - mkdir -p "$path" - pushd "$path" >/dev/null - git init - git remote add origin "https://github.com/$owner/$name" - git pull --ff-only --depth 1 origin "$sha" - popd >/dev/null -} - -clone_repo desktop desktop 7c5111425cab9de911f82dd7e42f92d8f7927bb1 -clone_repo reduxjs redux 936e134b827a2f8022d51f6a42942e935ee2a935 -clone_repo microsoft vscode 4acf2d9fd883d247b903cc9c33221e18e39bffd8 - -known_failures="$(cat script/known-failures.txt)" - -# shellcheck disable=SC2046 -tree-sitter parse -q \ - 'examples/**/*.ts' \ - 'examples/**/*.tsx' \ - $(for failure in $known_failures; do echo "!${failure}"; done) - -example_count=$(find examples -name '*.ts*' -or -name '*.tx' | wc -l) -failure_count=$(wc -w <<<"$known_failures") -success_count=$((example_count - failure_count)) -success_percent=$(bc -l <<<"100*${success_count}/${example_count}") - -printf \ - "Successfully parsed %d of %d example files (%.1f%%)\n" \ - "$success_count" "$example_count" "$success_percent" From f9ef6bd55faa1b4b130da95be778827f217aeff9 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Mon, 6 May 2024 00:51:45 -0400 Subject: [PATCH 3/3] chore: generate --- tsx/src/grammar.json | 27 +- tsx/src/parser.c | 490776 ++++++++++++------------ tsx/src/tree_sitter/alloc.h | 54 + tsx/src/tree_sitter/array.h | 290 + tsx/src/tree_sitter/parser.h | 51 +- typescript/src/grammar.json | 27 +- typescript/src/parser.c | 495048 ++++++++++++------------- typescript/src/tree_sitter/alloc.h | 54 + typescript/src/tree_sitter/array.h | 290 + typescript/src/tree_sitter/parser.h | 51 +- 10 files changed, 480963 insertions(+), 505705 deletions(-) create mode 100644 tsx/src/tree_sitter/alloc.h create mode 100644 tsx/src/tree_sitter/array.h create mode 100644 typescript/src/tree_sitter/alloc.h create mode 100644 typescript/src/tree_sitter/array.h diff --git a/tsx/src/grammar.json b/tsx/src/grammar.json index f271d335..b9b66bde 100644 --- a/tsx/src/grammar.json +++ b/tsx/src/grammar.json @@ -1,4 +1,14 @@ { + "0": "j", + "1": "a", + "2": "v", + "3": "a", + "4": "s", + "5": "c", + "6": "r", + "7": "i", + "8": "p", + "9": "t", "name": "tsx", "word": "identifier", "rules": { @@ -6790,6 +6800,18 @@ "type": "STRING", "value": "static" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "body", @@ -11098,6 +11120,10 @@ "binary_expression", "_initializer" ], + [ + "class_static_block", + "_property_name" + ], [ "call_expression", "instantiation_expression", @@ -11869,7 +11895,6 @@ } ], "inline": [ - "statement", "_expressions", "_semicolon", "_identifier", diff --git a/tsx/src/parser.c b/tsx/src/parser.c index 354f137c..1bf0f14e 100644 --- a/tsx/src/parser.c +++ b/tsx/src/parser.c @@ -13,9 +13,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 7663 -#define LARGE_STATE_COUNT 2000 -#define SYMBOL_COUNT 399 +#define STATE_COUNT 7480 +#define LARGE_STATE_COUNT 1852 +#define SYMBOL_COUNT 400 #define ALIAS_COUNT 7 #define TOKEN_COUNT 173 #define EXTERNAL_TOKEN_COUNT 9 @@ -211,224 +211,225 @@ enum ts_symbol_identifiers { sym_named_imports = 185, sym_import_specifier = 186, sym_import_attribute = 187, - sym_expression_statement = 188, - sym_variable_declaration = 189, - sym_lexical_declaration = 190, - sym_variable_declarator = 191, - sym_statement_block = 192, - sym_else_clause = 193, - sym_if_statement = 194, - sym_switch_statement = 195, - sym_for_statement = 196, - sym_for_in_statement = 197, - sym__for_header = 198, - sym_while_statement = 199, - sym_do_statement = 200, - sym_try_statement = 201, - sym_with_statement = 202, - sym_break_statement = 203, - sym_continue_statement = 204, - sym_debugger_statement = 205, - sym_return_statement = 206, - sym_throw_statement = 207, - sym_empty_statement = 208, - sym_labeled_statement = 209, - sym_switch_body = 210, - sym_switch_case = 211, - sym_switch_default = 212, - sym_catch_clause = 213, - sym_finally_clause = 214, - sym_parenthesized_expression = 215, - sym_expression = 216, - sym_primary_expression = 217, - sym_yield_expression = 218, - sym_object = 219, - sym_object_pattern = 220, - sym_assignment_pattern = 221, - sym_object_assignment_pattern = 222, - sym_array = 223, - sym_array_pattern = 224, - sym_glimmer_template = 225, - sym_glimmer_opening_tag = 226, - sym_glimmer_closing_tag = 227, - sym_jsx_element = 228, - sym_jsx_text = 229, - sym_jsx_expression = 230, - sym_jsx_opening_element = 231, - sym_nested_identifier = 232, - sym_jsx_namespace_name = 233, - sym_jsx_closing_element = 234, - sym_jsx_self_closing_element = 235, - sym_jsx_attribute = 236, - sym__jsx_string = 237, - sym_class = 238, - sym_class_declaration = 239, - sym_class_heritage = 240, - sym_function_expression = 241, - sym_function_declaration = 242, - sym_generator_function = 243, - sym_generator_function_declaration = 244, - sym_arrow_function = 245, - sym__call_signature = 246, - sym__formal_parameter = 247, - sym_optional_chain = 248, - sym_call_expression = 249, - sym_new_expression = 250, - sym_await_expression = 251, - sym_member_expression = 252, - sym_subscript_expression = 253, - sym_assignment_expression = 254, - sym__augmented_assignment_lhs = 255, - sym_augmented_assignment_expression = 256, - sym__initializer = 257, - sym__destructuring_pattern = 258, - sym_spread_element = 259, - sym_ternary_expression = 260, - sym_binary_expression = 261, - sym_unary_expression = 262, - sym_update_expression = 263, - sym_sequence_expression = 264, - sym_string = 265, - sym_comment = 266, - sym_template_string = 267, - sym_template_substitution = 268, - sym_regex = 269, - sym_meta_property = 270, - sym_arguments = 271, - sym_decorator = 272, - sym_decorator_member_expression = 273, - sym_decorator_call_expression = 274, - sym_class_body = 275, - sym_formal_parameters = 276, - sym_class_static_block = 277, - sym_pattern = 278, - sym_rest_pattern = 279, - sym_method_definition = 280, - sym_pair = 281, - sym_pair_pattern = 282, - sym__property_name = 283, - sym_computed_property_name = 284, - sym_public_field_definition = 285, - sym__import_identifier = 286, - sym_non_null_expression = 287, - sym_method_signature = 288, - sym_abstract_method_signature = 289, - sym_function_signature = 290, - sym_as_expression = 291, - sym_satisfies_expression = 292, - sym_instantiation_expression = 293, - sym_import_require_clause = 294, - sym_extends_clause = 295, - sym__extends_clause_single = 296, - sym_implements_clause = 297, - sym_ambient_declaration = 298, - sym_abstract_class_declaration = 299, - sym_module = 300, - sym_internal_module = 301, - sym__module = 302, - sym_import_alias = 303, - sym_nested_type_identifier = 304, - sym_interface_declaration = 305, - sym_extends_type_clause = 306, - sym_enum_declaration = 307, - sym_enum_body = 308, - sym_enum_assignment = 309, - sym_type_alias_declaration = 310, - sym_accessibility_modifier = 311, - sym_override_modifier = 312, - sym_required_parameter = 313, - sym_optional_parameter = 314, - sym__parameter_name = 315, - sym_omitting_type_annotation = 316, - sym_adding_type_annotation = 317, - sym_opting_type_annotation = 318, - sym_type_annotation = 319, - sym__type_query_member_expression_in_type_annotation = 320, - sym__type_query_call_expression_in_type_annotation = 321, - sym_asserts = 322, - sym_asserts_annotation = 323, - sym__type = 324, - sym_tuple_parameter = 325, - sym_optional_tuple_parameter = 326, - sym_optional_type = 327, - sym_rest_type = 328, - sym__tuple_type_member = 329, - sym_constructor_type = 330, - sym__primary_type = 331, - sym_template_type = 332, - sym_template_literal_type = 333, - sym_infer_type = 334, - sym_conditional_type = 335, - sym_generic_type = 336, - sym_type_predicate = 337, - sym_type_predicate_annotation = 338, - sym__type_query_member_expression = 339, - sym__type_query_subscript_expression = 340, - sym__type_query_call_expression = 341, - sym__type_query_instantiation_expression = 342, - sym_type_query = 343, - sym_index_type_query = 344, - sym_lookup_type = 345, - sym_mapped_type_clause = 346, - sym_literal_type = 347, - sym__number = 348, - sym_existential_type = 349, - sym_flow_maybe_type = 350, - sym_parenthesized_type = 351, - sym_predefined_type = 352, - sym_type_arguments = 353, - sym_object_type = 354, - sym_call_signature = 355, - sym_property_signature = 356, - sym_type_parameters = 357, - sym_type_parameter = 358, - sym_default_type = 359, - sym_constraint = 360, - sym_construct_signature = 361, - sym_index_signature = 362, - sym_array_type = 363, - sym_tuple_type = 364, - sym_readonly_type = 365, - sym_union_type = 366, - sym_intersection_type = 367, - sym_function_type = 368, - aux_sym_program_repeat1 = 369, - aux_sym_export_statement_repeat1 = 370, - aux_sym_export_clause_repeat1 = 371, - aux_sym_named_imports_repeat1 = 372, - aux_sym_variable_declaration_repeat1 = 373, - aux_sym_switch_body_repeat1 = 374, - aux_sym_object_repeat1 = 375, - aux_sym_object_pattern_repeat1 = 376, - aux_sym_array_repeat1 = 377, - aux_sym_array_pattern_repeat1 = 378, - aux_sym_glimmer_template_repeat1 = 379, - aux_sym_jsx_element_repeat1 = 380, - aux_sym__jsx_string_repeat1 = 381, - aux_sym__jsx_string_repeat2 = 382, - aux_sym_sequence_expression_repeat1 = 383, - aux_sym_string_repeat1 = 384, - aux_sym_string_repeat2 = 385, - aux_sym_template_string_repeat1 = 386, - aux_sym_class_body_repeat1 = 387, - aux_sym_formal_parameters_repeat1 = 388, - aux_sym__jsx_start_opening_element_repeat1 = 389, - aux_sym_extends_clause_repeat1 = 390, - aux_sym_implements_clause_repeat1 = 391, - aux_sym_extends_type_clause_repeat1 = 392, - aux_sym_enum_body_repeat1 = 393, - aux_sym_template_literal_type_repeat1 = 394, - aux_sym_type_arguments_repeat1 = 395, - aux_sym_object_type_repeat1 = 396, - aux_sym_type_parameters_repeat1 = 397, - aux_sym_tuple_type_repeat1 = 398, - alias_sym_interface_body = 399, - alias_sym_property_identifier = 400, - alias_sym_shorthand_property_identifier = 401, - alias_sym_shorthand_property_identifier_pattern = 402, - alias_sym_statement_identifier = 403, - alias_sym_this_type = 404, - alias_sym_type_identifier = 405, + sym_statement = 188, + sym_expression_statement = 189, + sym_variable_declaration = 190, + sym_lexical_declaration = 191, + sym_variable_declarator = 192, + sym_statement_block = 193, + sym_else_clause = 194, + sym_if_statement = 195, + sym_switch_statement = 196, + sym_for_statement = 197, + sym_for_in_statement = 198, + sym__for_header = 199, + sym_while_statement = 200, + sym_do_statement = 201, + sym_try_statement = 202, + sym_with_statement = 203, + sym_break_statement = 204, + sym_continue_statement = 205, + sym_debugger_statement = 206, + sym_return_statement = 207, + sym_throw_statement = 208, + sym_empty_statement = 209, + sym_labeled_statement = 210, + sym_switch_body = 211, + sym_switch_case = 212, + sym_switch_default = 213, + sym_catch_clause = 214, + sym_finally_clause = 215, + sym_parenthesized_expression = 216, + sym_expression = 217, + sym_primary_expression = 218, + sym_yield_expression = 219, + sym_object = 220, + sym_object_pattern = 221, + sym_assignment_pattern = 222, + sym_object_assignment_pattern = 223, + sym_array = 224, + sym_array_pattern = 225, + sym_glimmer_template = 226, + sym_glimmer_opening_tag = 227, + sym_glimmer_closing_tag = 228, + sym_jsx_element = 229, + sym_jsx_text = 230, + sym_jsx_expression = 231, + sym_jsx_opening_element = 232, + sym_nested_identifier = 233, + sym_jsx_namespace_name = 234, + sym_jsx_closing_element = 235, + sym_jsx_self_closing_element = 236, + sym_jsx_attribute = 237, + sym__jsx_string = 238, + sym_class = 239, + sym_class_declaration = 240, + sym_class_heritage = 241, + sym_function_expression = 242, + sym_function_declaration = 243, + sym_generator_function = 244, + sym_generator_function_declaration = 245, + sym_arrow_function = 246, + sym__call_signature = 247, + sym__formal_parameter = 248, + sym_optional_chain = 249, + sym_call_expression = 250, + sym_new_expression = 251, + sym_await_expression = 252, + sym_member_expression = 253, + sym_subscript_expression = 254, + sym_assignment_expression = 255, + sym__augmented_assignment_lhs = 256, + sym_augmented_assignment_expression = 257, + sym__initializer = 258, + sym__destructuring_pattern = 259, + sym_spread_element = 260, + sym_ternary_expression = 261, + sym_binary_expression = 262, + sym_unary_expression = 263, + sym_update_expression = 264, + sym_sequence_expression = 265, + sym_string = 266, + sym_comment = 267, + sym_template_string = 268, + sym_template_substitution = 269, + sym_regex = 270, + sym_meta_property = 271, + sym_arguments = 272, + sym_decorator = 273, + sym_decorator_member_expression = 274, + sym_decorator_call_expression = 275, + sym_class_body = 276, + sym_formal_parameters = 277, + sym_class_static_block = 278, + sym_pattern = 279, + sym_rest_pattern = 280, + sym_method_definition = 281, + sym_pair = 282, + sym_pair_pattern = 283, + sym__property_name = 284, + sym_computed_property_name = 285, + sym_public_field_definition = 286, + sym__import_identifier = 287, + sym_non_null_expression = 288, + sym_method_signature = 289, + sym_abstract_method_signature = 290, + sym_function_signature = 291, + sym_as_expression = 292, + sym_satisfies_expression = 293, + sym_instantiation_expression = 294, + sym_import_require_clause = 295, + sym_extends_clause = 296, + sym__extends_clause_single = 297, + sym_implements_clause = 298, + sym_ambient_declaration = 299, + sym_abstract_class_declaration = 300, + sym_module = 301, + sym_internal_module = 302, + sym__module = 303, + sym_import_alias = 304, + sym_nested_type_identifier = 305, + sym_interface_declaration = 306, + sym_extends_type_clause = 307, + sym_enum_declaration = 308, + sym_enum_body = 309, + sym_enum_assignment = 310, + sym_type_alias_declaration = 311, + sym_accessibility_modifier = 312, + sym_override_modifier = 313, + sym_required_parameter = 314, + sym_optional_parameter = 315, + sym__parameter_name = 316, + sym_omitting_type_annotation = 317, + sym_adding_type_annotation = 318, + sym_opting_type_annotation = 319, + sym_type_annotation = 320, + sym__type_query_member_expression_in_type_annotation = 321, + sym__type_query_call_expression_in_type_annotation = 322, + sym_asserts = 323, + sym_asserts_annotation = 324, + sym__type = 325, + sym_tuple_parameter = 326, + sym_optional_tuple_parameter = 327, + sym_optional_type = 328, + sym_rest_type = 329, + sym__tuple_type_member = 330, + sym_constructor_type = 331, + sym__primary_type = 332, + sym_template_type = 333, + sym_template_literal_type = 334, + sym_infer_type = 335, + sym_conditional_type = 336, + sym_generic_type = 337, + sym_type_predicate = 338, + sym_type_predicate_annotation = 339, + sym__type_query_member_expression = 340, + sym__type_query_subscript_expression = 341, + sym__type_query_call_expression = 342, + sym__type_query_instantiation_expression = 343, + sym_type_query = 344, + sym_index_type_query = 345, + sym_lookup_type = 346, + sym_mapped_type_clause = 347, + sym_literal_type = 348, + sym__number = 349, + sym_existential_type = 350, + sym_flow_maybe_type = 351, + sym_parenthesized_type = 352, + sym_predefined_type = 353, + sym_type_arguments = 354, + sym_object_type = 355, + sym_call_signature = 356, + sym_property_signature = 357, + sym_type_parameters = 358, + sym_type_parameter = 359, + sym_default_type = 360, + sym_constraint = 361, + sym_construct_signature = 362, + sym_index_signature = 363, + sym_array_type = 364, + sym_tuple_type = 365, + sym_readonly_type = 366, + sym_union_type = 367, + sym_intersection_type = 368, + sym_function_type = 369, + aux_sym_program_repeat1 = 370, + aux_sym_export_statement_repeat1 = 371, + aux_sym_export_clause_repeat1 = 372, + aux_sym_named_imports_repeat1 = 373, + aux_sym_variable_declaration_repeat1 = 374, + aux_sym_switch_body_repeat1 = 375, + aux_sym_object_repeat1 = 376, + aux_sym_object_pattern_repeat1 = 377, + aux_sym_array_repeat1 = 378, + aux_sym_array_pattern_repeat1 = 379, + aux_sym_glimmer_template_repeat1 = 380, + aux_sym_jsx_element_repeat1 = 381, + aux_sym__jsx_string_repeat1 = 382, + aux_sym__jsx_string_repeat2 = 383, + aux_sym_sequence_expression_repeat1 = 384, + aux_sym_string_repeat1 = 385, + aux_sym_string_repeat2 = 386, + aux_sym_template_string_repeat1 = 387, + aux_sym_class_body_repeat1 = 388, + aux_sym_formal_parameters_repeat1 = 389, + aux_sym__jsx_start_opening_element_repeat1 = 390, + aux_sym_extends_clause_repeat1 = 391, + aux_sym_implements_clause_repeat1 = 392, + aux_sym_extends_type_clause_repeat1 = 393, + aux_sym_enum_body_repeat1 = 394, + aux_sym_template_literal_type_repeat1 = 395, + aux_sym_type_arguments_repeat1 = 396, + aux_sym_object_type_repeat1 = 397, + aux_sym_type_parameters_repeat1 = 398, + aux_sym_tuple_type_repeat1 = 399, + alias_sym_interface_body = 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, + alias_sym_type_identifier = 406, }; static const char * const ts_symbol_names[] = { @@ -620,6 +621,7 @@ static const char * const ts_symbol_names[] = { [sym_named_imports] = "named_imports", [sym_import_specifier] = "import_specifier", [sym_import_attribute] = "import_attribute", + [sym_statement] = "statement", [sym_expression_statement] = "expression_statement", [sym_variable_declaration] = "variable_declaration", [sym_lexical_declaration] = "lexical_declaration", @@ -1029,6 +1031,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_named_imports] = sym_named_imports, [sym_import_specifier] = sym_import_specifier, [sym_import_attribute] = sym_import_attribute, + [sym_statement] = sym_statement, [sym_expression_statement] = sym_expression_statement, [sym_variable_declaration] = sym_variable_declaration, [sym_lexical_declaration] = sym_lexical_declaration, @@ -2003,6 +2006,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_statement] = { + .visible = false, + .named = true, + .supertype = true, + }, [sym_expression_statement] = { .visible = true, .named = true, @@ -4662,197 +4670,197 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [14] = 14, [15] = 15, [16] = 16, - [17] = 13, + [17] = 14, [18] = 18, - [19] = 19, + [19] = 18, [20] = 20, [21] = 18, - [22] = 20, - [23] = 20, + [22] = 22, + [23] = 22, [24] = 18, [25] = 18, - [26] = 20, - [27] = 18, + [26] = 22, + [27] = 22, [28] = 18, - [29] = 20, - [30] = 18, - [31] = 20, - [32] = 20, + [29] = 18, + [30] = 22, + [31] = 22, + [32] = 22, [33] = 18, - [34] = 20, - [35] = 20, - [36] = 20, - [37] = 37, - [38] = 20, - [39] = 18, - [40] = 20, + [34] = 22, + [35] = 22, + [36] = 18, + [37] = 18, + [38] = 22, + [39] = 22, + [40] = 18, [41] = 18, [42] = 18, - [43] = 20, + [43] = 18, [44] = 18, - [45] = 18, - [46] = 20, - [47] = 18, - [48] = 20, - [49] = 20, - [50] = 18, - [51] = 18, - [52] = 20, + [45] = 22, + [46] = 22, + [47] = 22, + [48] = 18, + [49] = 18, + [50] = 22, + [51] = 22, + [52] = 18, [53] = 18, - [54] = 18, - [55] = 20, - [56] = 20, - [57] = 20, - [58] = 18, + [54] = 22, + [55] = 18, + [56] = 18, + [57] = 22, + [58] = 22, [59] = 18, [60] = 18, - [61] = 20, - [62] = 20, - [63] = 18, - [64] = 20, - [65] = 20, + [61] = 22, + [62] = 22, + [63] = 22, + [64] = 22, + [65] = 22, [66] = 18, - [67] = 18, - [68] = 20, + [67] = 22, + [68] = 18, [69] = 18, - [70] = 20, - [71] = 18, + [70] = 70, + [71] = 22, [72] = 72, [73] = 73, [74] = 74, [75] = 75, - [76] = 74, + [76] = 73, [77] = 77, [78] = 78, - [79] = 79, - [80] = 74, - [81] = 77, + [79] = 78, + [80] = 80, + [81] = 81, [82] = 82, - [83] = 73, - [84] = 77, - [85] = 85, - [86] = 73, - [87] = 82, - [88] = 78, - [89] = 89, - [90] = 89, - [91] = 89, - [92] = 82, - [93] = 93, - [94] = 85, - [95] = 82, - [96] = 89, - [97] = 74, - [98] = 85, - [99] = 77, - [100] = 79, - [101] = 78, - [102] = 82, - [103] = 74, - [104] = 85, - [105] = 77, - [106] = 93, - [107] = 75, - [108] = 79, - [109] = 78, + [83] = 82, + [84] = 81, + [85] = 82, + [86] = 78, + [87] = 80, + [88] = 74, + [89] = 82, + [90] = 81, + [91] = 91, + [92] = 75, + [93] = 82, + [94] = 94, + [95] = 73, + [96] = 77, + [97] = 75, + [98] = 91, + [99] = 80, + [100] = 73, + [101] = 77, + [102] = 91, + [103] = 94, + [104] = 94, + [105] = 81, + [106] = 74, + [107] = 78, + [108] = 80, + [109] = 77, [110] = 73, - [111] = 75, - [112] = 73, - [113] = 79, - [114] = 75, - [115] = 93, - [116] = 85, - [117] = 79, - [118] = 93, - [119] = 93, - [120] = 75, - [121] = 78, - [122] = 89, + [111] = 81, + [112] = 78, + [113] = 77, + [114] = 94, + [115] = 80, + [116] = 74, + [117] = 91, + [118] = 94, + [119] = 75, + [120] = 74, + [121] = 91, + [122] = 75, [123] = 123, - [124] = 123, - [125] = 123, - [126] = 123, - [127] = 127, + [124] = 124, + [125] = 124, + [126] = 124, + [127] = 123, [128] = 123, - [129] = 123, - [130] = 123, - [131] = 127, - [132] = 127, - [133] = 123, - [134] = 123, - [135] = 123, + [129] = 124, + [130] = 124, + [131] = 124, + [132] = 124, + [133] = 124, + [134] = 124, + [135] = 124, [136] = 136, - [137] = 136, + [137] = 137, [138] = 138, [139] = 139, [140] = 140, [141] = 141, [142] = 142, - [143] = 143, + [143] = 139, [144] = 144, [145] = 145, - [146] = 144, + [146] = 145, [147] = 147, - [148] = 148, + [148] = 147, [149] = 149, - [150] = 150, - [151] = 148, - [152] = 149, - [153] = 149, - [154] = 148, - [155] = 155, + [150] = 147, + [151] = 151, + [152] = 152, + [153] = 151, + [154] = 154, + [155] = 149, [156] = 156, - [157] = 155, - [158] = 156, - [159] = 148, - [160] = 148, - [161] = 155, - [162] = 150, - [163] = 155, + [157] = 151, + [158] = 154, + [159] = 152, + [160] = 151, + [161] = 156, + [162] = 151, + [163] = 151, [164] = 156, - [165] = 155, - [166] = 156, - [167] = 147, + [165] = 154, + [166] = 154, + [167] = 152, [168] = 156, - [169] = 150, - [170] = 170, - [171] = 148, - [172] = 145, + [169] = 156, + [170] = 154, + [171] = 171, + [172] = 144, [173] = 173, [174] = 174, - [175] = 148, - [176] = 148, - [177] = 147, - [178] = 148, - [179] = 179, - [180] = 148, - [181] = 150, - [182] = 150, + [175] = 151, + [176] = 149, + [177] = 152, + [178] = 151, + [179] = 151, + [180] = 145, + [181] = 151, + [182] = 152, [183] = 183, - [184] = 144, - [185] = 148, - [186] = 148, - [187] = 150, - [188] = 150, - [189] = 148, - [190] = 170, - [191] = 148, - [192] = 148, - [193] = 148, - [194] = 150, - [195] = 173, + [184] = 151, + [185] = 185, + [186] = 151, + [187] = 152, + [188] = 171, + [189] = 151, + [190] = 151, + [191] = 151, + [192] = 152, + [193] = 174, + [194] = 151, + [195] = 152, [196] = 196, - [197] = 150, + [197] = 196, [198] = 198, [199] = 196, - [200] = 196, + [200] = 151, [201] = 196, - [202] = 148, + [202] = 196, [203] = 196, [204] = 196, [205] = 196, [206] = 196, - [207] = 196, + [207] = 152, [208] = 208, [209] = 208, [210] = 208, @@ -4875,66 +4883,66 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [227] = 220, [228] = 220, [229] = 229, - [230] = 230, - [231] = 229, - [232] = 230, - [233] = 230, - [234] = 230, - [235] = 229, - [236] = 230, - [237] = 229, + [230] = 229, + [231] = 231, + [232] = 229, + [233] = 231, + [234] = 231, + [235] = 231, + [236] = 229, + [237] = 231, [238] = 229, - [239] = 229, - [240] = 230, + [239] = 231, + [240] = 229, [241] = 241, [242] = 241, [243] = 241, [244] = 244, [245] = 245, - [246] = 241, - [247] = 241, - [248] = 248, - [249] = 248, - [250] = 245, - [251] = 245, + [246] = 244, + [247] = 247, + [248] = 241, + [249] = 244, + [250] = 247, + [251] = 241, [252] = 241, [253] = 253, [254] = 254, - [255] = 254, - [256] = 256, - [257] = 256, - [258] = 253, - [259] = 241, - [260] = 254, - [261] = 256, - [262] = 244, - [263] = 253, - [264] = 241, + [255] = 241, + [256] = 253, + [257] = 253, + [258] = 258, + [259] = 254, + [260] = 245, + [261] = 258, + [262] = 254, + [263] = 241, + [264] = 258, [265] = 265, [266] = 266, - [267] = 266, - [268] = 266, - [269] = 266, + [267] = 265, + [268] = 265, + [269] = 265, [270] = 270, - [271] = 266, - [272] = 266, - [273] = 266, - [274] = 274, + [271] = 265, + [272] = 265, + [273] = 273, + [274] = 265, [275] = 241, [276] = 276, [277] = 277, - [278] = 270, + [278] = 266, [279] = 276, [280] = 276, [281] = 276, [282] = 276, - [283] = 270, + [283] = 283, [284] = 284, [285] = 285, - [286] = 285, - [287] = 287, - [288] = 288, - [289] = 284, + [286] = 286, + [287] = 283, + [288] = 266, + [289] = 286, [290] = 290, [291] = 291, [292] = 292, @@ -4942,170 +4950,170 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [294] = 294, [295] = 295, [296] = 296, - [297] = 297, - [298] = 270, - [299] = 299, - [300] = 292, - [301] = 301, - [302] = 302, - [303] = 294, - [304] = 304, + [297] = 293, + [298] = 291, + [299] = 294, + [300] = 295, + [301] = 266, + [302] = 295, + [303] = 303, + [304] = 266, [305] = 305, - [306] = 294, - [307] = 307, - [308] = 308, - [309] = 304, + [306] = 295, + [307] = 291, + [308] = 293, + [309] = 292, [310] = 310, [311] = 311, [312] = 312, - [313] = 313, - [314] = 270, + [313] = 266, + [314] = 314, [315] = 315, [316] = 316, - [317] = 317, - [318] = 270, - [319] = 304, - [320] = 304, - [321] = 290, - [322] = 322, - [323] = 270, - [324] = 270, + [317] = 295, + [318] = 266, + [319] = 319, + [320] = 320, + [321] = 321, + [322] = 294, + [323] = 295, + [324] = 324, [325] = 325, - [326] = 326, + [326] = 266, [327] = 327, - [328] = 270, - [329] = 292, - [330] = 304, + [328] = 328, + [329] = 329, + [330] = 330, [331] = 331, - [332] = 270, + [332] = 332, [333] = 333, - [334] = 304, - [335] = 304, - [336] = 336, - [337] = 290, + [334] = 266, + [335] = 335, + [336] = 266, + [337] = 337, [338] = 338, [339] = 339, [340] = 340, - [341] = 291, + [341] = 295, [342] = 342, - [343] = 291, - [344] = 331, - [345] = 315, - [346] = 346, - [347] = 299, - [348] = 346, - [349] = 295, - [350] = 308, - [351] = 299, - [352] = 311, - [353] = 336, - [354] = 354, - [355] = 310, - [356] = 354, - [357] = 346, - [358] = 338, - [359] = 310, - [360] = 333, - [361] = 361, - [362] = 340, - [363] = 302, - [364] = 322, - [365] = 305, - [366] = 307, - [367] = 296, - [368] = 346, - [369] = 316, - [370] = 317, - [371] = 313, - [372] = 301, - [373] = 346, - [374] = 354, - [375] = 297, - [376] = 354, - [377] = 305, - [378] = 346, - [379] = 313, - [380] = 346, - [381] = 325, - [382] = 326, - [383] = 346, - [384] = 307, - [385] = 346, - [386] = 316, - [387] = 297, - [388] = 346, + [343] = 292, + [344] = 337, + [345] = 345, + [346] = 331, + [347] = 333, + [348] = 335, + [349] = 349, + [350] = 339, + [351] = 303, + [352] = 327, + [353] = 311, + [354] = 312, + [355] = 345, + [356] = 303, + [357] = 324, + [358] = 342, + [359] = 359, + [360] = 312, + [361] = 310, + [362] = 305, + [363] = 314, + [364] = 338, + [365] = 345, + [366] = 324, + [367] = 367, + [368] = 332, + [369] = 359, + [370] = 345, + [371] = 292, + [372] = 293, + [373] = 291, + [374] = 339, + [375] = 296, + [376] = 311, + [377] = 345, + [378] = 294, + [379] = 345, + [380] = 345, + [381] = 310, + [382] = 332, + [383] = 337, + [384] = 319, + [385] = 321, + [386] = 340, + [387] = 330, + [388] = 345, [389] = 342, - [390] = 317, - [391] = 391, - [392] = 346, - [393] = 393, - [394] = 354, - [395] = 302, - [396] = 396, - [397] = 338, - [398] = 296, - [399] = 322, - [400] = 308, - [401] = 396, - [402] = 294, - [403] = 340, - [404] = 311, - [405] = 336, - [406] = 290, - [407] = 291, - [408] = 292, - [409] = 331, - [410] = 342, - [411] = 333, - [412] = 326, - [413] = 346, - [414] = 346, - [415] = 315, - [416] = 295, - [417] = 417, - [418] = 325, - [419] = 327, - [420] = 327, - [421] = 301, - [422] = 346, - [423] = 302, - [424] = 424, - [425] = 424, - [426] = 296, - [427] = 310, - [428] = 322, - [429] = 336, - [430] = 305, - [431] = 431, - [432] = 327, + [390] = 345, + [391] = 327, + [392] = 359, + [393] = 328, + [394] = 305, + [395] = 338, + [396] = 359, + [397] = 315, + [398] = 321, + [399] = 399, + [400] = 345, + [401] = 340, + [402] = 345, + [403] = 345, + [404] = 359, + [405] = 331, + [406] = 296, + [407] = 407, + [408] = 319, + [409] = 320, + [410] = 335, + [411] = 407, + [412] = 333, + [413] = 315, + [414] = 345, + [415] = 329, + [416] = 314, + [417] = 328, + [418] = 418, + [419] = 330, + [420] = 329, + [421] = 345, + [422] = 320, + [423] = 423, + [424] = 339, + [425] = 329, + [426] = 426, + [427] = 427, + [428] = 337, + [429] = 315, + [430] = 342, + [431] = 305, + [432] = 423, [433] = 433, - [434] = 295, - [435] = 299, - [436] = 307, - [437] = 315, - [438] = 297, - [439] = 439, - [440] = 440, - [441] = 441, - [442] = 326, - [443] = 331, - [444] = 313, - [445] = 445, - [446] = 340, - [447] = 445, - [448] = 342, - [449] = 311, - [450] = 317, - [451] = 424, - [452] = 308, - [453] = 333, - [454] = 316, - [455] = 424, - [456] = 325, - [457] = 439, - [458] = 301, - [459] = 338, - [460] = 424, + [434] = 314, + [435] = 328, + [436] = 436, + [437] = 330, + [438] = 312, + [439] = 335, + [440] = 333, + [441] = 324, + [442] = 331, + [443] = 427, + [444] = 320, + [445] = 423, + [446] = 426, + [447] = 423, + [448] = 303, + [449] = 340, + [450] = 338, + [451] = 296, + [452] = 321, + [453] = 319, + [454] = 327, + [455] = 455, + [456] = 310, + [457] = 457, + [458] = 311, + [459] = 423, + [460] = 332, [461] = 461, [462] = 462, [463] = 462, @@ -5113,345 +5121,345 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [465] = 462, [466] = 462, [467] = 467, - [468] = 467, + [468] = 468, [469] = 469, [470] = 470, [471] = 471, - [472] = 472, - [473] = 473, + [472] = 467, + [473] = 470, [474] = 474, - [475] = 469, + [475] = 470, [476] = 476, - [477] = 477, + [477] = 470, [478] = 478, [479] = 479, - [480] = 467, - [481] = 473, - [482] = 472, - [483] = 476, - [484] = 474, - [485] = 485, - [486] = 486, - [487] = 479, - [488] = 485, - [489] = 485, - [490] = 470, - [491] = 472, - [492] = 473, - [493] = 474, - [494] = 467, - [495] = 485, - [496] = 473, - [497] = 470, - [498] = 470, - [499] = 499, - [500] = 472, - [501] = 473, - [502] = 479, - [503] = 474, - [504] = 476, - [505] = 472, - [506] = 476, + [480] = 471, + [481] = 468, + [482] = 474, + [483] = 468, + [484] = 484, + [485] = 469, + [486] = 469, + [487] = 474, + [488] = 468, + [489] = 489, + [490] = 479, + [491] = 476, + [492] = 492, + [493] = 467, + [494] = 468, + [495] = 495, + [496] = 470, + [497] = 497, + [498] = 469, + [499] = 470, + [500] = 471, + [501] = 470, + [502] = 502, + [503] = 471, + [504] = 474, + [505] = 470, + [506] = 474, [507] = 479, - [508] = 470, - [509] = 479, - [510] = 473, - [511] = 472, - [512] = 476, - [513] = 513, - [514] = 473, + [508] = 476, + [509] = 509, + [510] = 467, + [511] = 476, + [512] = 479, + [513] = 467, + [514] = 476, [515] = 479, - [516] = 470, - [517] = 479, + [516] = 479, + [517] = 471, [518] = 476, - [519] = 472, - [520] = 467, - [521] = 476, - [522] = 473, - [523] = 485, - [524] = 485, + [519] = 467, + [520] = 474, + [521] = 468, + [522] = 467, + [523] = 469, + [524] = 524, [525] = 525, - [526] = 526, - [527] = 476, - [528] = 528, - [529] = 467, - [530] = 485, - [531] = 473, - [532] = 470, - [533] = 470, - [534] = 472, - [535] = 525, - [536] = 474, - [537] = 485, - [538] = 485, - [539] = 472, - [540] = 479, - [541] = 541, - [542] = 542, - [543] = 543, - [544] = 476, - [545] = 479, - [546] = 467, - [547] = 470, - [548] = 548, - [549] = 549, + [526] = 476, + [527] = 479, + [528] = 468, + [529] = 469, + [530] = 469, + [531] = 469, + [532] = 478, + [533] = 469, + [534] = 468, + [535] = 484, + [536] = 536, + [537] = 537, + [538] = 470, + [539] = 539, + [540] = 540, + [541] = 479, + [542] = 467, + [543] = 476, + [544] = 544, + [545] = 476, + [546] = 479, + [547] = 467, + [548] = 468, + [549] = 474, [550] = 550, [551] = 551, [552] = 552, - [553] = 553, + [553] = 551, [554] = 554, [555] = 555, - [556] = 556, - [557] = 557, + [556] = 552, + [557] = 550, [558] = 558, - [559] = 550, + [559] = 559, [560] = 560, [561] = 561, - [562] = 561, - [563] = 552, - [564] = 556, + [562] = 562, + [563] = 563, + [564] = 564, [565] = 565, - [566] = 565, - [567] = 557, + [566] = 559, + [567] = 558, [568] = 568, - [569] = 569, - [570] = 570, - [571] = 556, + [569] = 561, + [570] = 555, + [571] = 571, [572] = 572, [573] = 573, - [574] = 551, + [574] = 574, [575] = 575, [576] = 576, - [577] = 556, - [578] = 570, - [579] = 572, + [577] = 577, + [578] = 578, + [579] = 579, [580] = 580, - [581] = 573, - [582] = 575, - [583] = 560, - [584] = 576, - [585] = 550, - [586] = 580, - [587] = 557, - [588] = 561, - [589] = 552, - [590] = 590, + [581] = 581, + [582] = 563, + [583] = 579, + [584] = 577, + [585] = 585, + [586] = 577, + [587] = 573, + [588] = 579, + [589] = 578, + [590] = 563, [591] = 591, - [592] = 553, - [593] = 593, + [592] = 575, + [593] = 572, [594] = 560, - [595] = 551, + [595] = 581, [596] = 596, - [597] = 561, - [598] = 598, - [599] = 599, - [600] = 600, - [601] = 557, - [602] = 602, - [603] = 557, - [604] = 590, - [605] = 557, - [606] = 552, - [607] = 553, - [608] = 591, - [609] = 555, - [610] = 555, - [611] = 552, - [612] = 556, - [613] = 613, - [614] = 614, - [615] = 557, - [616] = 596, - [617] = 560, - [618] = 618, - [619] = 619, - [620] = 555, - [621] = 621, - [622] = 568, - [623] = 623, - [624] = 602, - [625] = 569, - [626] = 593, - [627] = 600, - [628] = 599, - [629] = 596, - [630] = 550, - [631] = 598, - [632] = 569, - [633] = 568, - [634] = 596, - [635] = 593, - [636] = 591, - [637] = 598, - [638] = 599, - [639] = 565, - [640] = 600, - [641] = 602, - [642] = 570, - [643] = 590, - [644] = 580, - [645] = 576, - [646] = 575, - [647] = 572, - [648] = 573, - [649] = 572, - [650] = 570, - [651] = 573, + [597] = 597, + [598] = 561, + [599] = 580, + [600] = 558, + [601] = 559, + [602] = 578, + [603] = 575, + [604] = 585, + [605] = 605, + [606] = 606, + [607] = 607, + [608] = 560, + [609] = 568, + [610] = 577, + [611] = 611, + [612] = 612, + [613] = 560, + [614] = 605, + [615] = 606, + [616] = 563, + [617] = 581, + [618] = 563, + [619] = 597, + [620] = 561, + [621] = 580, + [622] = 555, + [623] = 568, + [624] = 564, + [625] = 585, + [626] = 564, + [627] = 573, + [628] = 605, + [629] = 551, + [630] = 551, + [631] = 579, + [632] = 579, + [633] = 585, + [634] = 606, + [635] = 552, + [636] = 563, + [637] = 606, + [638] = 596, + [639] = 605, + [640] = 564, + [641] = 563, + [642] = 551, + [643] = 579, + [644] = 564, + [645] = 555, + [646] = 559, + [647] = 551, + [648] = 558, + [649] = 562, + [650] = 572, + [651] = 578, [652] = 565, - [653] = 602, + [653] = 563, [654] = 575, - [655] = 621, - [656] = 576, - [657] = 580, - [658] = 590, - [659] = 561, - [660] = 600, - [661] = 553, - [662] = 569, - [663] = 568, - [664] = 591, - [665] = 555, - [666] = 666, - [667] = 557, - [668] = 557, - [669] = 599, - [670] = 565, - [671] = 556, - [672] = 568, - [673] = 598, - [674] = 569, - [675] = 552, - [676] = 596, - [677] = 555, - [678] = 666, - [679] = 679, - [680] = 593, - [681] = 593, - [682] = 591, - [683] = 602, - [684] = 600, - [685] = 557, - [686] = 599, - [687] = 570, - [688] = 590, - [689] = 580, - [690] = 576, - [691] = 575, - [692] = 573, - [693] = 572, + [655] = 575, + [656] = 578, + [657] = 551, + [658] = 581, + [659] = 562, + [660] = 607, + [661] = 573, + [662] = 564, + [663] = 572, + [664] = 579, + [665] = 550, + [666] = 606, + [667] = 560, + [668] = 573, + [669] = 577, + [670] = 606, + [671] = 671, + [672] = 605, + [673] = 579, + [674] = 596, + [675] = 605, + [676] = 581, + [677] = 580, + [678] = 568, + [679] = 552, + [680] = 550, + [681] = 561, + [682] = 580, + [683] = 568, + [684] = 552, + [685] = 550, + [686] = 574, + [687] = 597, + [688] = 585, + [689] = 562, + [690] = 690, + [691] = 565, + [692] = 560, + [693] = 563, [694] = 573, - [695] = 572, - [696] = 570, - [697] = 575, - [698] = 576, - [699] = 580, - [700] = 590, - [701] = 591, - [702] = 565, - [703] = 551, - [704] = 593, - [705] = 568, - [706] = 568, - [707] = 598, - [708] = 708, - [709] = 598, - [710] = 550, - [711] = 557, - [712] = 596, - [713] = 593, - [714] = 591, - [715] = 596, - [716] = 590, - [717] = 580, - [718] = 576, - [719] = 575, - [720] = 573, - [721] = 618, - [722] = 572, - [723] = 570, - [724] = 598, - [725] = 565, - [726] = 599, - [727] = 600, - [728] = 569, - [729] = 591, - [730] = 599, - [731] = 552, - [732] = 600, - [733] = 602, - [734] = 555, - [735] = 552, + [695] = 564, + [696] = 574, + [697] = 558, + [698] = 585, + [699] = 565, + [700] = 559, + [701] = 573, + [702] = 551, + [703] = 562, + [704] = 550, + [705] = 562, + [706] = 563, + [707] = 555, + [708] = 561, + [709] = 574, + [710] = 562, + [711] = 550, + [712] = 612, + [713] = 552, + [714] = 568, + [715] = 580, + [716] = 560, + [717] = 581, + [718] = 564, + [719] = 572, + [720] = 577, + [721] = 578, + [722] = 575, + [723] = 572, + [724] = 597, + [725] = 555, + [726] = 558, + [727] = 559, + [728] = 559, + [729] = 565, + [730] = 558, + [731] = 561, + [732] = 561, + [733] = 572, + [734] = 579, + [735] = 735, [736] = 555, - [737] = 557, - [738] = 738, - [739] = 739, - [740] = 556, - [741] = 552, - [742] = 561, - [743] = 553, - [744] = 561, - [745] = 553, - [746] = 550, - [747] = 560, - [748] = 602, + [737] = 560, + [738] = 575, + [739] = 597, + [740] = 563, + [741] = 585, + [742] = 574, + [743] = 555, + [744] = 606, + [745] = 605, + [746] = 746, + [747] = 606, + [748] = 605, [749] = 560, - [750] = 561, - [751] = 618, - [752] = 553, - [753] = 600, - [754] = 569, - [755] = 560, - [756] = 553, - [757] = 568, - [758] = 599, - [759] = 598, - [760] = 708, - [761] = 596, - [762] = 550, - [763] = 593, - [764] = 618, - [765] = 555, - [766] = 602, - [767] = 557, - [768] = 600, - [769] = 565, - [770] = 560, - [771] = 550, - [772] = 569, - [773] = 599, - [774] = 598, - [775] = 596, - [776] = 590, - [777] = 580, - [778] = 593, - [779] = 576, - [780] = 591, - [781] = 550, - [782] = 590, - [783] = 580, - [784] = 576, - [785] = 575, - [786] = 573, - [787] = 575, - [788] = 573, - [789] = 556, - [790] = 790, - [791] = 572, - [792] = 570, - [793] = 565, - [794] = 618, - [795] = 602, - [796] = 569, - [797] = 560, - [798] = 568, - [799] = 570, - [800] = 800, - [801] = 801, - [802] = 561, - [803] = 572, - [804] = 553, - [805] = 557, - [806] = 556, + [750] = 559, + [751] = 574, + [752] = 574, + [753] = 555, + [754] = 578, + [755] = 559, + [756] = 558, + [757] = 572, + [758] = 575, + [759] = 578, + [760] = 565, + [761] = 577, + [762] = 581, + [763] = 580, + [764] = 568, + [765] = 552, + [766] = 574, + [767] = 558, + [768] = 572, + [769] = 573, + [770] = 550, + [771] = 562, + [772] = 577, + [773] = 562, + [774] = 564, + [775] = 551, + [776] = 561, + [777] = 575, + [778] = 550, + [779] = 565, + [780] = 552, + [781] = 585, + [782] = 782, + [783] = 783, + [784] = 596, + [785] = 568, + [786] = 565, + [787] = 578, + [788] = 581, + [789] = 580, + [790] = 563, + [791] = 574, + [792] = 565, + [793] = 793, + [794] = 563, + [795] = 568, + [796] = 571, + [797] = 573, + [798] = 552, + [799] = 580, + [800] = 581, + [801] = 577, + [802] = 563, + [803] = 606, + [804] = 605, + [805] = 805, + [806] = 585, [807] = 807, [808] = 807, [809] = 807, @@ -5471,154 +5479,154 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [823] = 821, [824] = 824, [825] = 825, - [826] = 824, - [827] = 825, - [828] = 824, - [829] = 825, + [826] = 825, + [827] = 824, + [828] = 825, + [829] = 824, [830] = 830, [831] = 830, [832] = 830, [833] = 830, [834] = 830, [835] = 835, - [836] = 835, + [836] = 836, [837] = 837, [838] = 837, - [839] = 839, - [840] = 835, + [839] = 837, + [840] = 836, [841] = 837, [842] = 837, - [843] = 839, - [844] = 837, - [845] = 837, - [846] = 839, + [843] = 835, + [844] = 836, + [845] = 835, + [846] = 837, [847] = 847, [848] = 848, [849] = 848, [850] = 850, [851] = 850, [852] = 852, - [853] = 853, - [854] = 850, - [855] = 852, - [856] = 847, + [853] = 850, + [854] = 854, + [855] = 850, + [856] = 852, [857] = 852, - [858] = 850, - [859] = 852, - [860] = 850, - [861] = 852, + [858] = 852, + [859] = 847, + [860] = 852, + [861] = 850, [862] = 850, [863] = 850, [864] = 864, [865] = 850, - [866] = 866, - [867] = 850, - [868] = 850, - [869] = 866, - [870] = 870, - [871] = 871, - [872] = 866, - [873] = 866, - [874] = 866, - [875] = 866, - [876] = 876, - [877] = 850, - [878] = 850, - [879] = 848, + [866] = 848, + [867] = 867, + [868] = 868, + [869] = 850, + [870] = 850, + [871] = 868, + [872] = 850, + [873] = 868, + [874] = 868, + [875] = 850, + [876] = 868, + [877] = 877, + [878] = 878, + [879] = 868, [880] = 850, - [881] = 850, - [882] = 850, - [883] = 327, - [884] = 876, - [885] = 853, - [886] = 301, - [887] = 850, - [888] = 847, - [889] = 876, + [881] = 867, + [882] = 847, + [883] = 867, + [884] = 850, + [885] = 850, + [886] = 305, + [887] = 338, + [888] = 850, + [889] = 854, [890] = 890, - [891] = 890, - [892] = 301, - [893] = 890, - [894] = 327, - [895] = 850, - [896] = 876, + [891] = 293, + [892] = 890, + [893] = 305, + [894] = 867, + [895] = 890, + [896] = 896, [897] = 890, [898] = 890, - [899] = 327, - [900] = 890, - [901] = 890, - [902] = 890, - [903] = 301, - [904] = 327, - [905] = 905, - [906] = 890, - [907] = 301, - [908] = 292, - [909] = 291, - [910] = 299, - [911] = 302, - [912] = 912, - [913] = 913, + [899] = 890, + [900] = 850, + [901] = 338, + [902] = 305, + [903] = 338, + [904] = 331, + [905] = 338, + [906] = 342, + [907] = 305, + [908] = 890, + [909] = 292, + [910] = 890, + [911] = 890, + [912] = 291, + [913] = 338, [914] = 914, - [915] = 290, - [916] = 916, + [915] = 305, + [916] = 342, [917] = 917, - [918] = 918, - [919] = 301, - [920] = 299, + [918] = 331, + [919] = 919, + [920] = 920, [921] = 921, [922] = 922, - [923] = 923, - [924] = 301, - [925] = 291, - [926] = 301, - [927] = 927, - [928] = 913, - [929] = 299, - [930] = 301, - [931] = 302, - [932] = 327, - [933] = 933, - [934] = 327, - [935] = 322, - [936] = 296, - [937] = 302, - [938] = 905, + [923] = 305, + [924] = 924, + [925] = 338, + [926] = 926, + [927] = 338, + [928] = 292, + [929] = 929, + [930] = 293, + [931] = 305, + [932] = 338, + [933] = 310, + [934] = 896, + [935] = 342, + [936] = 342, + [937] = 937, + [938] = 331, [939] = 939, [940] = 940, - [941] = 941, - [942] = 302, - [943] = 299, - [944] = 301, - [945] = 945, - [946] = 946, - [947] = 327, - [948] = 948, + [941] = 342, + [942] = 917, + [943] = 331, + [944] = 305, + [945] = 314, + [946] = 305, + [947] = 293, + [948] = 292, [949] = 949, - [950] = 302, - [951] = 905, - [952] = 310, - [953] = 299, - [954] = 327, - [955] = 327, - [956] = 340, - [957] = 291, - [958] = 292, - [959] = 959, - [960] = 292, - [961] = 921, - [962] = 962, - [963] = 301, - [964] = 923, + [950] = 950, + [951] = 951, + [952] = 952, + [953] = 953, + [954] = 896, + [955] = 955, + [956] = 333, + [957] = 335, + [958] = 338, + [959] = 331, + [960] = 960, + [961] = 953, + [962] = 293, + [963] = 963, + [964] = 964, [965] = 965, - [966] = 918, - [967] = 327, + [966] = 966, + [967] = 967, [968] = 968, [969] = 969, [970] = 970, - [971] = 290, - [972] = 972, - [973] = 918, + [971] = 971, + [972] = 950, + [973] = 973, [974] = 974, [975] = 975, [976] = 976, @@ -5629,9 +5637,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [981] = 981, [982] = 982, [983] = 983, - [984] = 984, + [984] = 305, [985] = 985, - [986] = 923, + [986] = 986, [987] = 987, [988] = 988, [989] = 989, @@ -5639,1362 +5647,1362 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [991] = 991, [992] = 992, [993] = 993, - [994] = 340, - [995] = 995, + [994] = 994, + [995] = 939, [996] = 996, - [997] = 997, - [998] = 998, - [999] = 322, - [1000] = 1000, + [997] = 914, + [998] = 929, + [999] = 999, + [1000] = 924, [1001] = 1001, - [1002] = 1002, - [1003] = 296, - [1004] = 310, + [1002] = 338, + [1003] = 1003, + [1004] = 950, [1005] = 1005, [1006] = 1006, - [1007] = 1007, + [1007] = 953, [1008] = 1008, [1009] = 1009, [1010] = 1010, [1011] = 1011, [1012] = 1012, - [1013] = 1013, + [1013] = 937, [1014] = 1014, [1015] = 1015, - [1016] = 1016, + [1016] = 917, [1017] = 1017, - [1018] = 326, - [1019] = 1019, - [1020] = 1020, - [1021] = 1021, + [1018] = 1018, + [1019] = 314, + [1020] = 949, + [1021] = 335, [1022] = 1022, - [1023] = 1023, - [1024] = 1024, + [1023] = 952, + [1024] = 333, [1025] = 1025, [1026] = 1026, [1027] = 1027, - [1028] = 1028, + [1028] = 310, [1029] = 1029, [1030] = 1030, [1031] = 1031, - [1032] = 290, - [1033] = 941, - [1034] = 912, - [1035] = 1035, + [1032] = 1032, + [1033] = 1033, + [1034] = 955, + [1035] = 331, [1036] = 1036, [1037] = 1037, - [1038] = 921, + [1038] = 1038, [1039] = 1039, [1040] = 1040, - [1041] = 1041, + [1041] = 291, [1042] = 1042, - [1043] = 1043, - [1044] = 1044, - [1045] = 946, + [1043] = 917, + [1044] = 919, + [1045] = 940, [1046] = 1046, [1047] = 1047, [1048] = 1048, - [1049] = 1049, - [1050] = 948, + [1049] = 292, + [1050] = 1050, [1051] = 1051, [1052] = 1052, - [1053] = 322, + [1053] = 1053, [1054] = 1054, [1055] = 1055, - [1056] = 1056, - [1057] = 296, - [1058] = 325, - [1059] = 939, + [1056] = 939, + [1057] = 305, + [1058] = 929, + [1059] = 1059, [1060] = 1060, - [1061] = 1061, - [1062] = 1062, - [1063] = 1063, + [1061] = 331, + [1062] = 305, + [1063] = 342, [1064] = 1064, - [1065] = 1065, + [1065] = 331, [1066] = 1066, - [1067] = 1067, - [1068] = 302, + [1067] = 342, + [1068] = 291, [1069] = 1069, - [1070] = 1070, - [1071] = 1071, - [1072] = 1072, + [1070] = 926, + [1071] = 338, + [1072] = 960, [1073] = 1073, - [1074] = 1074, - [1075] = 1075, + [1074] = 331, + [1075] = 305, [1076] = 1076, - [1077] = 327, - [1078] = 301, + [1077] = 342, + [1078] = 342, [1079] = 1079, [1080] = 1080, [1081] = 1081, - [1082] = 340, - [1083] = 310, - [1084] = 295, + [1082] = 1082, + [1083] = 1083, + [1084] = 937, [1085] = 1085, [1086] = 1086, - [1087] = 327, + [1087] = 1087, [1088] = 1088, - [1089] = 333, - [1090] = 1090, - [1091] = 1091, - [1092] = 1092, + [1089] = 1089, + [1090] = 920, + [1091] = 338, + [1092] = 305, [1093] = 1093, [1094] = 1094, - [1095] = 299, - [1096] = 302, - [1097] = 1097, - [1098] = 301, - [1099] = 340, - [1100] = 310, - [1101] = 299, - [1102] = 1102, - [1103] = 1103, - [1104] = 302, - [1105] = 1105, - [1106] = 1106, - [1107] = 1107, - [1108] = 301, - [1109] = 927, + [1095] = 921, + [1096] = 1096, + [1097] = 338, + [1098] = 1098, + [1099] = 1099, + [1100] = 1100, + [1101] = 331, + [1102] = 321, + [1103] = 949, + [1104] = 342, + [1105] = 310, + [1106] = 314, + [1107] = 926, + [1108] = 1108, + [1109] = 1109, [1110] = 1110, - [1111] = 1111, + [1111] = 951, [1112] = 1112, - [1113] = 1113, + [1113] = 914, [1114] = 1114, - [1115] = 940, - [1116] = 299, - [1117] = 327, + [1115] = 1115, + [1116] = 924, + [1117] = 1117, [1118] = 1118, - [1119] = 301, - [1120] = 959, - [1121] = 299, - [1122] = 302, - [1123] = 299, - [1124] = 302, - [1125] = 913, - [1126] = 327, - [1127] = 927, - [1128] = 941, - [1129] = 912, - [1130] = 959, - [1131] = 933, - [1132] = 917, - [1133] = 922, - [1134] = 916, - [1135] = 946, + [1119] = 1119, + [1120] = 952, + [1121] = 338, + [1122] = 1122, + [1123] = 1123, + [1124] = 920, + [1125] = 921, + [1126] = 1126, + [1127] = 331, + [1128] = 342, + [1129] = 1129, + [1130] = 1130, + [1131] = 922, + [1132] = 922, + [1133] = 339, + [1134] = 1134, + [1135] = 1135, [1136] = 1136, [1137] = 1137, [1138] = 1138, [1139] = 1139, [1140] = 1140, - [1141] = 948, - [1142] = 1142, - [1143] = 1143, + [1141] = 1141, + [1142] = 940, + [1143] = 919, [1144] = 1144, - [1145] = 1145, - [1146] = 914, - [1147] = 1147, - [1148] = 917, - [1149] = 916, - [1150] = 949, - [1151] = 939, - [1152] = 914, - [1153] = 1153, + [1145] = 896, + [1146] = 333, + [1147] = 324, + [1148] = 1148, + [1149] = 310, + [1150] = 1150, + [1151] = 1151, + [1152] = 960, + [1153] = 335, [1154] = 1154, - [1155] = 1155, - [1156] = 1156, - [1157] = 945, - [1158] = 1158, - [1159] = 933, - [1160] = 1160, - [1161] = 905, - [1162] = 1162, - [1163] = 1163, - [1164] = 1164, - [1165] = 1165, - [1166] = 1166, - [1167] = 1167, - [1168] = 913, - [1169] = 1169, - [1170] = 1170, - [1171] = 1171, - [1172] = 1172, - [1173] = 1173, - [1174] = 1174, - [1175] = 1175, - [1176] = 1176, - [1177] = 1177, - [1178] = 1178, - [1179] = 1179, - [1180] = 1180, - [1181] = 1181, - [1182] = 940, - [1183] = 302, - [1184] = 1184, - [1185] = 1185, - [1186] = 922, - [1187] = 1187, - [1188] = 1188, - [1189] = 299, - [1190] = 949, - [1191] = 292, - [1192] = 1192, - [1193] = 1193, - [1194] = 291, - [1195] = 945, - [1196] = 1114, - [1197] = 1075, - [1198] = 1035, - [1199] = 1036, - [1200] = 1037, - [1201] = 1039, - [1202] = 933, - [1203] = 945, - [1204] = 1041, - [1205] = 1042, - [1206] = 1043, - [1207] = 939, - [1208] = 1044, - [1209] = 949, - [1210] = 1046, - [1211] = 941, - [1212] = 1047, - [1213] = 1048, - [1214] = 1214, - [1215] = 290, - [1216] = 327, - [1217] = 1051, - [1218] = 1106, - [1219] = 1008, - [1220] = 1105, - [1221] = 1103, - [1222] = 1031, - [1223] = 918, - [1224] = 1102, - [1225] = 1027, - [1226] = 1030, - [1227] = 1022, - [1228] = 1029, - [1229] = 1026, - [1230] = 1020, - [1231] = 1019, - [1232] = 1094, - [1233] = 1024, - [1234] = 1023, - [1235] = 1021, - [1236] = 1017, - [1237] = 1093, - [1238] = 1092, - [1239] = 1016, - [1240] = 912, - [1241] = 1091, - [1242] = 1015, - [1243] = 1014, - [1244] = 1013, - [1245] = 1012, - [1246] = 1011, - [1247] = 1010, - [1248] = 982, - [1249] = 1006, - [1250] = 1002, - [1251] = 1090, - [1252] = 1060, - [1253] = 965, - [1254] = 969, - [1255] = 970, - [1256] = 1001, - [1257] = 962, - [1258] = 989, - [1259] = 974, - [1260] = 998, - [1261] = 1064, - [1262] = 1065, - [1263] = 981, - [1264] = 997, - [1265] = 1066, - [1266] = 1067, - [1267] = 990, - [1268] = 1000, - [1269] = 1069, - [1270] = 1070, - [1271] = 996, - [1272] = 1071, - [1273] = 1072, - [1274] = 1073, - [1275] = 995, - [1276] = 993, - [1277] = 991, - [1278] = 1025, - [1279] = 988, - [1280] = 987, - [1281] = 1079, - [1282] = 985, - [1283] = 1080, - [1284] = 1081, - [1285] = 984, - [1286] = 983, - [1287] = 1040, - [1288] = 959, - [1289] = 921, - [1290] = 1049, - [1291] = 1052, - [1292] = 1054, - [1293] = 1055, - [1294] = 1056, - [1295] = 1061, - [1296] = 1062, - [1297] = 1063, - [1298] = 980, - [1299] = 1074, - [1300] = 1076, - [1301] = 979, - [1302] = 978, - [1303] = 1085, - [1304] = 1086, - [1305] = 1088, - [1306] = 977, - [1307] = 976, - [1308] = 301, - [1309] = 975, - [1310] = 923, - [1311] = 1097, - [1312] = 1107, - [1313] = 299, - [1314] = 962, - [1315] = 989, - [1316] = 1110, - [1317] = 1111, - [1318] = 1112, - [1319] = 302, - [1320] = 972, - [1321] = 968, - [1322] = 1113, - [1323] = 1114, - [1324] = 1081, - [1325] = 1080, - [1326] = 1079, - [1327] = 1073, - [1328] = 1005, - [1329] = 1005, - [1330] = 1007, - [1331] = 1009, - [1332] = 1072, - [1333] = 992, - [1334] = 1028, - [1335] = 325, - [1336] = 1071, - [1337] = 326, - [1338] = 1070, - [1339] = 1090, - [1340] = 295, - [1341] = 1091, - [1342] = 333, - [1343] = 1069, - [1344] = 1007, - [1345] = 1009, - [1346] = 992, - [1347] = 1067, - [1348] = 1066, - [1349] = 927, - [1350] = 1028, - [1351] = 940, - [1352] = 299, - [1353] = 302, - [1354] = 1065, - [1355] = 1064, - [1356] = 1092, - [1357] = 1093, - [1358] = 1094, - [1359] = 322, - [1360] = 296, - [1361] = 1136, - [1362] = 1137, - [1363] = 1138, - [1364] = 1139, - [1365] = 1140, - [1366] = 972, - [1367] = 968, - [1368] = 1060, - [1369] = 1144, - [1370] = 1147, - [1371] = 1153, - [1372] = 1154, - [1373] = 1155, - [1374] = 1156, - [1375] = 1158, - [1376] = 1160, - [1377] = 1162, - [1378] = 1163, - [1379] = 1102, - [1380] = 1103, - [1381] = 1164, - [1382] = 1105, - [1383] = 1165, - [1384] = 325, - [1385] = 1106, - [1386] = 1166, - [1387] = 326, - [1388] = 1167, - [1389] = 301, - [1390] = 1118, - [1391] = 1169, - [1392] = 1170, - [1393] = 1171, - [1394] = 1172, - [1395] = 1173, - [1396] = 1174, - [1397] = 1142, - [1398] = 1143, - [1399] = 1145, - [1400] = 340, - [1401] = 1178, - [1402] = 310, - [1403] = 1181, - [1404] = 295, - [1405] = 1192, - [1406] = 1193, - [1407] = 1051, - [1408] = 1048, - [1409] = 1047, - [1410] = 1175, - [1411] = 299, - [1412] = 1176, - [1413] = 1177, - [1414] = 333, - [1415] = 1179, - [1416] = 1180, - [1417] = 302, - [1418] = 1184, - [1419] = 1185, - [1420] = 1187, - [1421] = 1188, - [1422] = 1046, - [1423] = 1044, - [1424] = 1043, - [1425] = 1042, - [1426] = 1041, - [1427] = 340, - [1428] = 1039, - [1429] = 1037, - [1430] = 1036, - [1431] = 310, - [1432] = 299, - [1433] = 310, - [1434] = 1035, - [1435] = 1193, - [1436] = 1192, - [1437] = 302, - [1438] = 1031, - [1439] = 1181, - [1440] = 1178, - [1441] = 1174, - [1442] = 1173, - [1443] = 1172, - [1444] = 1171, - [1445] = 1188, - [1446] = 1170, - [1447] = 1169, - [1448] = 1187, - [1449] = 1185, - [1450] = 1184, - [1451] = 1030, - [1452] = 1180, - [1453] = 1179, - [1454] = 1167, - [1455] = 1166, - [1456] = 1165, - [1457] = 1164, - [1458] = 1163, - [1459] = 1162, - [1460] = 1160, - [1461] = 1158, - [1462] = 1156, - [1463] = 1155, - [1464] = 1154, - [1465] = 1177, - [1466] = 1176, - [1467] = 1153, - [1468] = 1175, - [1469] = 1147, - [1470] = 1144, - [1471] = 922, - [1472] = 1140, - [1473] = 1029, - [1474] = 1139, - [1475] = 1026, - [1476] = 1138, - [1477] = 1137, - [1478] = 1136, - [1479] = 1024, - [1480] = 1023, - [1481] = 1021, - [1482] = 1017, - [1483] = 1016, - [1484] = 1015, - [1485] = 1014, - [1486] = 1013, - [1487] = 1012, - [1488] = 1011, - [1489] = 1010, - [1490] = 1008, - [1491] = 1006, - [1492] = 1002, - [1493] = 1145, - [1494] = 1143, - [1495] = 1142, - [1496] = 1001, - [1497] = 998, - [1498] = 340, - [1499] = 997, - [1500] = 996, - [1501] = 995, - [1502] = 1113, - [1503] = 1112, - [1504] = 1111, - [1505] = 1110, - [1506] = 993, - [1507] = 1107, - [1508] = 1097, - [1509] = 991, - [1510] = 988, - [1511] = 987, - [1512] = 1088, - [1513] = 1086, - [1514] = 1085, - [1515] = 1076, - [1516] = 985, - [1517] = 1075, - [1518] = 1074, - [1519] = 1063, - [1520] = 1062, - [1521] = 1061, - [1522] = 1056, - [1523] = 1055, - [1524] = 1054, - [1525] = 1052, - [1526] = 1049, - [1527] = 984, - [1528] = 983, - [1529] = 1118, - [1530] = 980, - [1531] = 1040, - [1532] = 327, - [1533] = 1025, - [1534] = 1000, - [1535] = 979, - [1536] = 990, - [1537] = 981, - [1538] = 978, - [1539] = 974, - [1540] = 914, - [1541] = 977, - [1542] = 948, - [1543] = 946, - [1544] = 916, - [1545] = 970, - [1546] = 917, - [1547] = 976, - [1548] = 969, - [1549] = 965, - [1550] = 982, - [1551] = 975, - [1552] = 1027, - [1553] = 1022, - [1554] = 1020, - [1555] = 1019, - [1556] = 998, - [1557] = 1028, - [1558] = 980, - [1559] = 979, - [1560] = 978, - [1561] = 977, - [1562] = 976, - [1563] = 975, - [1564] = 1145, - [1565] = 1143, - [1566] = 1079, - [1567] = 1080, - [1568] = 1081, - [1569] = 1031, - [1570] = 1106, - [1571] = 325, - [1572] = 1214, - [1573] = 1105, - [1574] = 1103, - [1575] = 1102, - [1576] = 1027, - [1577] = 1022, - [1578] = 1020, - [1579] = 1019, - [1580] = 326, - [1581] = 1093, - [1582] = 1142, - [1583] = 1092, - [1584] = 1062, - [1585] = 982, - [1586] = 1090, - [1587] = 1005, - [1588] = 1094, - [1589] = 1007, - [1590] = 1009, - [1591] = 992, - [1592] = 310, - [1593] = 1036, - [1594] = 1037, - [1595] = 1039, - [1596] = 965, - [1597] = 969, - [1598] = 970, - [1599] = 1188, - [1600] = 1187, - [1601] = 299, - [1602] = 962, - [1603] = 989, - [1604] = 974, - [1605] = 1002, - [1606] = 1185, - [1607] = 981, - [1608] = 1006, - [1609] = 1008, - [1610] = 1118, - [1611] = 1184, - [1612] = 1030, - [1613] = 990, - [1614] = 1000, - [1615] = 1010, - [1616] = 1011, - [1617] = 1180, - [1618] = 1179, - [1619] = 1025, - [1620] = 1040, - [1621] = 1049, - [1622] = 1052, - [1623] = 1177, - [1624] = 1176, - [1625] = 1041, - [1626] = 1042, - [1627] = 1043, - [1628] = 983, - [1629] = 984, - [1630] = 985, - [1631] = 1054, - [1632] = 987, - [1633] = 340, - [1634] = 333, - [1635] = 1175, - [1636] = 988, - [1637] = 1035, - [1638] = 991, - [1639] = 1044, - [1640] = 993, - [1641] = 995, - [1642] = 1055, - [1643] = 1046, - [1644] = 996, - [1645] = 1047, - [1646] = 1048, - [1647] = 1056, - [1648] = 1061, - [1649] = 997, - [1650] = 1073, - [1651] = 1072, - [1652] = 1071, - [1653] = 1070, - [1654] = 1069, - [1655] = 1091, - [1656] = 1063, - [1657] = 1074, - [1658] = 1067, - [1659] = 1012, - [1660] = 1075, - [1661] = 1076, - [1662] = 1085, - [1663] = 1013, - [1664] = 1086, - [1665] = 1014, - [1666] = 1015, - [1667] = 1088, - [1668] = 1016, - [1669] = 1097, - [1670] = 1017, - [1671] = 1065, - [1672] = 1064, - [1673] = 1021, - [1674] = 1023, - [1675] = 1024, - [1676] = 1051, - [1677] = 1166, - [1678] = 1193, - [1679] = 1192, - [1680] = 1181, - [1681] = 1178, - [1682] = 1174, - [1683] = 1173, - [1684] = 1172, - [1685] = 295, - [1686] = 1171, - [1687] = 1170, - [1688] = 1169, - [1689] = 1167, - [1690] = 1114, - [1691] = 302, - [1692] = 1066, - [1693] = 1136, - [1694] = 1165, - [1695] = 1113, - [1696] = 1137, - [1697] = 1138, - [1698] = 1164, - [1699] = 1163, - [1700] = 1162, - [1701] = 1029, - [1702] = 1112, - [1703] = 1160, - [1704] = 1111, - [1705] = 1110, - [1706] = 1026, - [1707] = 1139, - [1708] = 1158, - [1709] = 1001, - [1710] = 1107, - [1711] = 1140, - [1712] = 972, - [1713] = 968, - [1714] = 1156, - [1715] = 1155, - [1716] = 1060, - [1717] = 1144, - [1718] = 1147, - [1719] = 1154, - [1720] = 1153, - [1721] = 1721, - [1722] = 1721, - [1723] = 1721, - [1724] = 1721, - [1725] = 1721, - [1726] = 923, - [1727] = 1727, + [1155] = 319, + [1156] = 951, + [1157] = 955, + [1158] = 314, + [1159] = 1006, + [1160] = 963, + [1161] = 291, + [1162] = 1151, + [1163] = 1150, + [1164] = 1148, + [1165] = 990, + [1166] = 955, + [1167] = 989, + [1168] = 951, + [1169] = 1059, + [1170] = 988, + [1171] = 926, + [1172] = 987, + [1173] = 960, + [1174] = 1048, + [1175] = 1046, + [1176] = 1039, + [1177] = 929, + [1178] = 1066, + [1179] = 1141, + [1180] = 1064, + [1181] = 1066, + [1182] = 331, + [1183] = 339, + [1184] = 981, + [1185] = 914, + [1186] = 939, + [1187] = 986, + [1188] = 1033, + [1189] = 987, + [1190] = 1076, + [1191] = 988, + [1192] = 982, + [1193] = 1079, + [1194] = 989, + [1195] = 342, + [1196] = 981, + [1197] = 1088, + [1198] = 990, + [1199] = 324, + [1200] = 963, + [1201] = 1140, + [1202] = 967, + [1203] = 1139, + [1204] = 919, + [1205] = 940, + [1206] = 310, + [1207] = 980, + [1208] = 314, + [1209] = 1060, + [1210] = 314, + [1211] = 992, + [1212] = 979, + [1213] = 1032, + [1214] = 1053, + [1215] = 1047, + [1216] = 338, + [1217] = 1138, + [1218] = 321, + [1219] = 310, + [1220] = 319, + [1221] = 1117, + [1222] = 1134, + [1223] = 310, + [1224] = 974, + [1225] = 1042, + [1226] = 1136, + [1227] = 1051, + [1228] = 978, + [1229] = 971, + [1230] = 975, + [1231] = 342, + [1232] = 968, + [1233] = 1135, + [1234] = 983, + [1235] = 993, + [1236] = 996, + [1237] = 980, + [1238] = 966, + [1239] = 331, + [1240] = 964, + [1241] = 999, + [1242] = 985, + [1243] = 331, + [1244] = 1060, + [1245] = 1245, + [1246] = 1050, + [1247] = 979, + [1248] = 1052, + [1249] = 1001, + [1250] = 1005, + [1251] = 1054, + [1252] = 342, + [1253] = 991, + [1254] = 1064, + [1255] = 992, + [1256] = 1038, + [1257] = 1059, + [1258] = 1055, + [1259] = 1115, + [1260] = 1006, + [1261] = 1069, + [1262] = 1037, + [1263] = 1036, + [1264] = 1031, + [1265] = 1085, + [1266] = 977, + [1267] = 1003, + [1268] = 1080, + [1269] = 1040, + [1270] = 1032, + [1271] = 976, + [1272] = 1003, + [1273] = 1053, + [1274] = 1089, + [1275] = 1081, + [1276] = 305, + [1277] = 993, + [1278] = 1110, + [1279] = 1081, + [1280] = 1080, + [1281] = 970, + [1282] = 1112, + [1283] = 339, + [1284] = 1123, + [1285] = 978, + [1286] = 969, + [1287] = 1126, + [1288] = 1129, + [1289] = 971, + [1290] = 968, + [1291] = 1130, + [1292] = 1137, + [1293] = 1108, + [1294] = 1030, + [1295] = 324, + [1296] = 1144, + [1297] = 1154, + [1298] = 1029, + [1299] = 1027, + [1300] = 1025, + [1301] = 973, + [1302] = 1008, + [1303] = 1082, + [1304] = 966, + [1305] = 1114, + [1306] = 1026, + [1307] = 996, + [1308] = 924, + [1309] = 964, + [1310] = 1076, + [1311] = 985, + [1312] = 1109, + [1313] = 1099, + [1314] = 1050, + [1315] = 1052, + [1316] = 1096, + [1317] = 983, + [1318] = 1093, + [1319] = 338, + [1320] = 1087, + [1321] = 1073, + [1322] = 1054, + [1323] = 1151, + [1324] = 1150, + [1325] = 1148, + [1326] = 975, + [1327] = 1100, + [1328] = 1088, + [1329] = 1082, + [1330] = 937, + [1331] = 1083, + [1332] = 1086, + [1333] = 1030, + [1334] = 1029, + [1335] = 1141, + [1336] = 1140, + [1337] = 1139, + [1338] = 994, + [1339] = 314, + [1340] = 986, + [1341] = 1138, + [1342] = 1026, + [1343] = 1118, + [1344] = 977, + [1345] = 976, + [1346] = 1136, + [1347] = 1098, + [1348] = 1094, + [1349] = 1117, + [1350] = 1135, + [1351] = 321, + [1352] = 999, + [1353] = 1001, + [1354] = 1005, + [1355] = 333, + [1356] = 974, + [1357] = 319, + [1358] = 1038, + [1359] = 994, + [1360] = 1037, + [1361] = 950, + [1362] = 1055, + [1363] = 335, + [1364] = 1115, + [1365] = 1069, + [1366] = 1134, + [1367] = 342, + [1368] = 1085, + [1369] = 1008, + [1370] = 1119, + [1371] = 1122, + [1372] = 1036, + [1373] = 991, + [1374] = 920, + [1375] = 1083, + [1376] = 921, + [1377] = 1086, + [1378] = 305, + [1379] = 1051, + [1380] = 949, + [1381] = 1042, + [1382] = 1009, + [1383] = 1010, + [1384] = 1009, + [1385] = 1011, + [1386] = 952, + [1387] = 922, + [1388] = 1089, + [1389] = 1122, + [1390] = 1119, + [1391] = 1118, + [1392] = 1012, + [1393] = 965, + [1394] = 1010, + [1395] = 1011, + [1396] = 1014, + [1397] = 1012, + [1398] = 1110, + [1399] = 1094, + [1400] = 1015, + [1401] = 1017, + [1402] = 982, + [1403] = 1022, + [1404] = 953, + [1405] = 1047, + [1406] = 1098, + [1407] = 1031, + [1408] = 1079, + [1409] = 970, + [1410] = 1123, + [1411] = 1073, + [1412] = 1126, + [1413] = 1129, + [1414] = 967, + [1415] = 1130, + [1416] = 1137, + [1417] = 1144, + [1418] = 1154, + [1419] = 1018, + [1420] = 1087, + [1421] = 331, + [1422] = 1048, + [1423] = 969, + [1424] = 1018, + [1425] = 973, + [1426] = 1046, + [1427] = 1093, + [1428] = 1096, + [1429] = 1099, + [1430] = 1017, + [1431] = 1015, + [1432] = 1040, + [1433] = 1014, + [1434] = 1108, + [1435] = 1109, + [1436] = 1039, + [1437] = 1112, + [1438] = 1114, + [1439] = 1022, + [1440] = 1025, + [1441] = 1033, + [1442] = 1027, + [1443] = 965, + [1444] = 1100, + [1445] = 1055, + [1446] = 974, + [1447] = 1052, + [1448] = 1054, + [1449] = 1050, + [1450] = 319, + [1451] = 1060, + [1452] = 1059, + [1453] = 964, + [1454] = 1064, + [1455] = 1073, + [1456] = 996, + [1457] = 1087, + [1458] = 966, + [1459] = 1066, + [1460] = 982, + [1461] = 969, + [1462] = 994, + [1463] = 968, + [1464] = 1008, + [1465] = 971, + [1466] = 978, + [1467] = 986, + [1468] = 999, + [1469] = 1076, + [1470] = 1112, + [1471] = 1048, + [1472] = 1046, + [1473] = 1022, + [1474] = 324, + [1475] = 1001, + [1476] = 1005, + [1477] = 977, + [1478] = 1039, + [1479] = 1079, + [1480] = 1018, + [1481] = 1017, + [1482] = 1033, + [1483] = 976, + [1484] = 963, + [1485] = 1015, + [1486] = 1014, + [1487] = 993, + [1488] = 989, + [1489] = 967, + [1490] = 1088, + [1491] = 1032, + [1492] = 992, + [1493] = 1115, + [1494] = 1093, + [1495] = 1069, + [1496] = 1114, + [1497] = 1053, + [1498] = 1025, + [1499] = 991, + [1500] = 1085, + [1501] = 1027, + [1502] = 1154, + [1503] = 1096, + [1504] = 1099, + [1505] = 1144, + [1506] = 1037, + [1507] = 1137, + [1508] = 1151, + [1509] = 1130, + [1510] = 1150, + [1511] = 1129, + [1512] = 1089, + [1513] = 988, + [1514] = 1086, + [1515] = 1047, + [1516] = 1108, + [1517] = 1083, + [1518] = 1148, + [1519] = 1126, + [1520] = 321, + [1521] = 1141, + [1522] = 973, + [1523] = 1123, + [1524] = 1082, + [1525] = 970, + [1526] = 1134, + [1527] = 990, + [1528] = 981, + [1529] = 1122, + [1530] = 1119, + [1531] = 1140, + [1532] = 1012, + [1533] = 1042, + [1534] = 1139, + [1535] = 1011, + [1536] = 1051, + [1537] = 1138, + [1538] = 331, + [1539] = 1136, + [1540] = 1010, + [1541] = 975, + [1542] = 1036, + [1543] = 983, + [1544] = 985, + [1545] = 987, + [1546] = 1109, + [1547] = 1118, + [1548] = 1117, + [1549] = 310, + [1550] = 1009, + [1551] = 1135, + [1552] = 1110, + [1553] = 1038, + [1554] = 965, + [1555] = 342, + [1556] = 1245, + [1557] = 1094, + [1558] = 1100, + [1559] = 1081, + [1560] = 1006, + [1561] = 1098, + [1562] = 1080, + [1563] = 339, + [1564] = 314, + [1565] = 1026, + [1566] = 1031, + [1567] = 980, + [1568] = 979, + [1569] = 1029, + [1570] = 1040, + [1571] = 1003, + [1572] = 1030, + [1573] = 1573, + [1574] = 1573, + [1575] = 1573, + [1576] = 1573, + [1577] = 1573, + [1578] = 1578, + [1579] = 1579, + [1580] = 1580, + [1581] = 1581, + [1582] = 1582, + [1583] = 1579, + [1584] = 1584, + [1585] = 1585, + [1586] = 1586, + [1587] = 1578, + [1588] = 924, + [1589] = 1579, + [1590] = 1579, + [1591] = 1591, + [1592] = 1592, + [1593] = 1593, + [1594] = 1578, + [1595] = 1595, + [1596] = 1578, + [1597] = 950, + [1598] = 1578, + [1599] = 1579, + [1600] = 1600, + [1601] = 1601, + [1602] = 1601, + [1603] = 1603, + [1604] = 1601, + [1605] = 1605, + [1606] = 1606, + [1607] = 1606, + [1608] = 1608, + [1609] = 1605, + [1610] = 1610, + [1611] = 1608, + [1612] = 1605, + [1613] = 1613, + [1614] = 1613, + [1615] = 1606, + [1616] = 1608, + [1617] = 1613, + [1618] = 1605, + [1619] = 1619, + [1620] = 1605, + [1621] = 1613, + [1622] = 1610, + [1623] = 1613, + [1624] = 1606, + [1625] = 1608, + [1626] = 1610, + [1627] = 1608, + [1628] = 1610, + [1629] = 1619, + [1630] = 1605, + [1631] = 1606, + [1632] = 1613, + [1633] = 1613, + [1634] = 1619, + [1635] = 1610, + [1636] = 1619, + [1637] = 1608, + [1638] = 1610, + [1639] = 1619, + [1640] = 1605, + [1641] = 1606, + [1642] = 1619, + [1643] = 1610, + [1644] = 1608, + [1645] = 1619, + [1646] = 1606, + [1647] = 1647, + [1648] = 1648, + [1649] = 1649, + [1650] = 1649, + [1651] = 1649, + [1652] = 1649, + [1653] = 1648, + [1654] = 1649, + [1655] = 1649, + [1656] = 1649, + [1657] = 1657, + [1658] = 1657, + [1659] = 1659, + [1660] = 1657, + [1661] = 1659, + [1662] = 1659, + [1663] = 1659, + [1664] = 1657, + [1665] = 1659, + [1666] = 1657, + [1667] = 1667, + [1668] = 1667, + [1669] = 1667, + [1670] = 1667, + [1671] = 1667, + [1672] = 1667, + [1673] = 1667, + [1674] = 1667, + [1675] = 1667, + [1676] = 1667, + [1677] = 1667, + [1678] = 1667, + [1679] = 1679, + [1680] = 1680, + [1681] = 1679, + [1682] = 1680, + [1683] = 1679, + [1684] = 1684, + [1685] = 1685, + [1686] = 1679, + [1687] = 1684, + [1688] = 1685, + [1689] = 1680, + [1690] = 1690, + [1691] = 1679, + [1692] = 1685, + [1693] = 1684, + [1694] = 1694, + [1695] = 1695, + [1696] = 1696, + [1697] = 1697, + [1698] = 1698, + [1699] = 1699, + [1700] = 1700, + [1701] = 1701, + [1702] = 1702, + [1703] = 1703, + [1704] = 1704, + [1705] = 1703, + [1706] = 1706, + [1707] = 1707, + [1708] = 1699, + [1709] = 1706, + [1710] = 1696, + [1711] = 1711, + [1712] = 1707, + [1713] = 1696, + [1714] = 1695, + [1715] = 1715, + [1716] = 1696, + [1717] = 1697, + [1718] = 1718, + [1719] = 1702, + [1720] = 1720, + [1721] = 1697, + [1722] = 1722, + [1723] = 1707, + [1724] = 1694, + [1725] = 1718, + [1726] = 1698, + [1727] = 1711, [1728] = 1728, [1729] = 1729, - [1730] = 1730, + [1730] = 1706, [1731] = 1731, [1732] = 1732, - [1733] = 1733, - [1734] = 1734, - [1735] = 1727, + [1733] = 1706, + [1734] = 1701, + [1735] = 1707, [1736] = 1736, - [1737] = 1737, - [1738] = 1738, + [1737] = 1700, + [1738] = 1698, [1739] = 1739, - [1740] = 1740, - [1741] = 1727, - [1742] = 1727, - [1743] = 1727, - [1744] = 1734, - [1745] = 918, - [1746] = 1734, - [1747] = 1734, - [1748] = 1734, - [1749] = 1749, - [1750] = 1749, - [1751] = 1749, + [1740] = 1729, + [1741] = 1699, + [1742] = 1742, + [1743] = 1704, + [1744] = 1701, + [1745] = 1722, + [1746] = 1731, + [1747] = 1736, + [1748] = 1729, + [1749] = 1729, + [1750] = 1728, + [1751] = 1729, [1752] = 1752, - [1753] = 1753, - [1754] = 1753, + [1753] = 1722, + [1754] = 1718, [1755] = 1755, - [1756] = 1756, - [1757] = 1757, - [1758] = 1758, - [1759] = 1759, - [1760] = 1756, - [1761] = 1753, - [1762] = 1756, - [1763] = 1755, - [1764] = 1758, - [1765] = 1755, - [1766] = 1759, - [1767] = 1757, - [1768] = 1759, - [1769] = 1755, - [1770] = 1753, - [1771] = 1756, - [1772] = 1755, - [1773] = 1753, - [1774] = 1758, - [1775] = 1758, - [1776] = 1759, - [1777] = 1758, - [1778] = 1753, - [1779] = 1757, - [1780] = 1757, - [1781] = 1756, - [1782] = 1756, - [1783] = 1757, - [1784] = 1757, - [1785] = 1756, - [1786] = 1757, - [1787] = 1759, - [1788] = 1759, - [1789] = 1758, - [1790] = 1755, - [1791] = 1758, - [1792] = 1755, - [1793] = 1753, - [1794] = 1759, - [1795] = 1795, - [1796] = 1795, - [1797] = 1797, - [1798] = 1795, - [1799] = 1795, - [1800] = 1800, - [1801] = 1795, - [1802] = 1795, - [1803] = 1795, - [1804] = 1797, + [1756] = 1720, + [1757] = 1736, + [1758] = 1703, + [1759] = 1698, + [1760] = 1732, + [1761] = 1694, + [1762] = 1703, + [1763] = 1763, + [1764] = 1764, + [1765] = 1765, + [1766] = 1694, + [1767] = 1718, + [1768] = 1698, + [1769] = 1728, + [1770] = 1731, + [1771] = 1771, + [1772] = 1711, + [1773] = 1728, + [1774] = 1722, + [1775] = 1736, + [1776] = 1731, + [1777] = 1703, + [1778] = 1720, + [1779] = 1700, + [1780] = 1728, + [1781] = 1736, + [1782] = 1699, + [1783] = 1699, + [1784] = 1707, + [1785] = 1703, + [1786] = 1700, + [1787] = 1711, + [1788] = 1695, + [1789] = 1789, + [1790] = 1695, + [1791] = 1720, + [1792] = 1700, + [1793] = 1731, + [1794] = 1722, + [1795] = 1702, + [1796] = 1718, + [1797] = 1701, + [1798] = 1701, + [1799] = 1697, + [1800] = 1696, + [1801] = 1720, + [1802] = 1802, + [1803] = 1803, + [1804] = 1702, [1805] = 1805, - [1806] = 1806, - [1807] = 1806, - [1808] = 1805, - [1809] = 1806, - [1810] = 1806, - [1811] = 1806, - [1812] = 1805, - [1813] = 1805, - [1814] = 1805, - [1815] = 1815, - [1816] = 1815, - [1817] = 1815, - [1818] = 1815, - [1819] = 1815, - [1820] = 1815, - [1821] = 1815, - [1822] = 1815, - [1823] = 1815, - [1824] = 1815, - [1825] = 1815, - [1826] = 1815, + [1806] = 1702, + [1807] = 1706, + [1808] = 1808, + [1809] = 1809, + [1810] = 1697, + [1811] = 1711, + [1812] = 1695, + [1813] = 1694, + [1814] = 1814, + [1815] = 1702, + [1816] = 1701, + [1817] = 1817, + [1818] = 1817, + [1819] = 1819, + [1820] = 1820, + [1821] = 1821, + [1822] = 1820, + [1823] = 1821, + [1824] = 1824, + [1825] = 1825, + [1826] = 1824, [1827] = 1827, - [1828] = 1828, - [1829] = 1829, - [1830] = 1830, - [1831] = 1830, - [1832] = 1828, - [1833] = 1833, - [1834] = 1829, + [1828] = 1824, + [1829] = 1827, + [1830] = 1825, + [1831] = 1827, + [1832] = 1825, + [1833] = 1824, + [1834] = 1820, [1835] = 1827, - [1836] = 1828, - [1837] = 1830, + [1836] = 1820, + [1837] = 1825, [1838] = 1827, - [1839] = 1829, - [1840] = 1830, - [1841] = 1830, - [1842] = 1842, + [1839] = 1824, + [1840] = 1820, + [1841] = 1819, + [1842] = 1820, [1843] = 1843, [1844] = 1844, - [1845] = 1845, + [1845] = 1825, [1846] = 1846, - [1847] = 1847, - [1848] = 1847, - [1849] = 1849, + [1847] = 1820, + [1848] = 1846, + [1849] = 1820, [1850] = 1850, - [1851] = 1849, + [1851] = 1846, [1852] = 1852, - [1853] = 1843, + [1853] = 1853, [1854] = 1854, - [1855] = 1855, + [1855] = 1852, [1856] = 1856, [1857] = 1857, - [1858] = 1844, - [1859] = 1854, - [1860] = 1852, + [1858] = 1858, + [1859] = 1820, + [1860] = 1817, [1861] = 1861, - [1862] = 1862, - [1863] = 1863, - [1864] = 1849, - [1865] = 1865, - [1866] = 1866, - [1867] = 1867, + [1862] = 1861, + [1863] = 1852, + [1864] = 1864, + [1865] = 1861, + [1866] = 1864, + [1867] = 1861, [1868] = 1868, - [1869] = 1869, - [1870] = 1855, - [1871] = 1871, - [1872] = 1872, - [1873] = 1857, + [1869] = 1820, + [1870] = 1852, + [1871] = 1820, + [1872] = 1820, + [1873] = 1856, [1874] = 1874, - [1875] = 1863, + [1875] = 1820, [1876] = 1876, - [1877] = 1854, + [1877] = 1877, [1878] = 1852, - [1879] = 1865, - [1880] = 1847, - [1881] = 1844, - [1882] = 1882, - [1883] = 1863, - [1884] = 1876, - [1885] = 1885, - [1886] = 1886, - [1887] = 1887, - [1888] = 1888, - [1889] = 1866, - [1890] = 1886, - [1891] = 1844, - [1892] = 1885, - [1893] = 1847, - [1894] = 1849, - [1895] = 1876, - [1896] = 1863, - [1897] = 1876, - [1898] = 1876, - [1899] = 1866, - [1900] = 1852, - [1901] = 1854, - [1902] = 1847, - [1903] = 1867, - [1904] = 1885, - [1905] = 1886, - [1906] = 1849, - [1907] = 1857, - [1908] = 1908, + [1879] = 1879, + [1880] = 1820, + [1881] = 1856, + [1882] = 1861, + [1883] = 1883, + [1884] = 1868, + [1885] = 1852, + [1886] = 1861, + [1887] = 1820, + [1888] = 1820, + [1889] = 1868, + [1890] = 1890, + [1891] = 1843, + [1892] = 1820, + [1893] = 1864, + [1894] = 1894, + [1895] = 1864, + [1896] = 1820, + [1897] = 1819, + [1898] = 1820, + [1899] = 950, + [1900] = 1900, + [1901] = 1901, + [1902] = 1864, + [1903] = 1820, + [1904] = 924, + [1905] = 1864, + [1906] = 1906, + [1907] = 1907, + [1908] = 1864, [1909] = 1909, - [1910] = 1855, - [1911] = 1868, - [1912] = 1863, - [1913] = 1913, - [1914] = 1908, - [1915] = 1844, - [1916] = 1909, - [1917] = 1868, - [1918] = 1885, - [1919] = 1888, - [1920] = 1871, - [1921] = 1865, - [1922] = 1850, - [1923] = 1865, - [1924] = 1857, - [1925] = 1855, - [1926] = 1868, - [1927] = 1913, - [1928] = 1913, - [1929] = 1866, - [1930] = 1886, - [1931] = 1867, + [1910] = 1910, + [1911] = 1911, + [1912] = 1890, + [1913] = 1909, + [1914] = 1914, + [1915] = 1915, + [1916] = 1916, + [1917] = 1909, + [1918] = 1909, + [1919] = 1919, + [1920] = 1820, + [1921] = 1890, + [1922] = 1915, + [1923] = 1909, + [1924] = 1901, + [1925] = 1919, + [1926] = 1901, + [1927] = 1909, + [1928] = 1864, + [1929] = 1864, + [1930] = 1930, + [1931] = 1931, [1932] = 1909, - [1933] = 1913, - [1934] = 1934, - [1935] = 1908, + [1933] = 1933, + [1934] = 1909, + [1935] = 1935, [1936] = 1909, - [1937] = 1867, - [1938] = 1868, - [1939] = 1888, - [1940] = 1871, - [1941] = 1855, - [1942] = 1942, - [1943] = 1857, - [1944] = 1913, - [1945] = 1886, + [1937] = 1864, + [1938] = 1938, + [1939] = 1939, + [1940] = 1940, + [1941] = 1941, + [1942] = 1914, + [1943] = 1901, + [1944] = 1944, + [1945] = 1941, [1946] = 1946, - [1947] = 1854, - [1948] = 1908, - [1949] = 1909, - [1950] = 1888, - [1951] = 1871, - [1952] = 1952, - [1953] = 1908, - [1954] = 1909, - [1955] = 1888, - [1956] = 1871, - [1957] = 1852, - [1958] = 1958, - [1959] = 1908, - [1960] = 1867, - [1961] = 1888, - [1962] = 1885, - [1963] = 1866, - [1964] = 1865, - [1965] = 1965, - [1966] = 1965, - [1967] = 1967, - [1968] = 1968, - [1969] = 1968, - [1970] = 1970, - [1971] = 1970, - [1972] = 1972, - [1973] = 1973, - [1974] = 1974, - [1975] = 1970, - [1976] = 1973, - [1977] = 1974, - [1978] = 1973, - [1979] = 1973, - [1980] = 1972, - [1981] = 1974, - [1982] = 1967, - [1983] = 1972, - [1984] = 1972, - [1985] = 1974, - [1986] = 1973, - [1987] = 1970, - [1988] = 1974, - [1989] = 1972, - [1990] = 1970, - [1991] = 1970, - [1992] = 1992, - [1993] = 1993, - [1994] = 1970, - [1995] = 1995, - [1996] = 1995, - [1997] = 1970, - [1998] = 1998, - [1999] = 1995, - [2000] = 2000, - [2001] = 2001, - [2002] = 1970, - [2003] = 2003, - [2004] = 2004, - [2005] = 2005, - [2006] = 2006, + [1947] = 1947, + [1948] = 1941, + [1949] = 1931, + [1950] = 1901, + [1951] = 1941, + [1952] = 1931, + [1953] = 1864, + [1954] = 1947, + [1955] = 1108, + [1956] = 1082, + [1957] = 1901, + [1958] = 1864, + [1959] = 1940, + [1960] = 1914, + [1961] = 1944, + [1962] = 1939, + [1963] = 1941, + [1964] = 1964, + [1965] = 1901, + [1966] = 1966, + [1967] = 1901, + [1968] = 1964, + [1969] = 1933, + [1970] = 1930, + [1971] = 969, + [1972] = 1931, + [1973] = 1939, + [1974] = 1947, + [1975] = 1975, + [1976] = 1947, + [1977] = 1939, + [1978] = 1978, + [1979] = 1979, + [1980] = 973, + [1981] = 1864, + [1982] = 1874, + [1983] = 1042, + [1984] = 1979, + [1985] = 1964, + [1986] = 1914, + [1987] = 1979, + [1988] = 1051, + [1989] = 1939, + [1990] = 1964, + [1991] = 1991, + [1992] = 1979, + [1993] = 1933, + [1994] = 1947, + [1995] = 1857, + [1996] = 1900, + [1997] = 950, + [1998] = 1916, + [1999] = 924, + [2000] = 1930, + [2001] = 1930, + [2002] = 1975, + [2003] = 1879, + [2004] = 1933, + [2005] = 1939, + [2006] = 1964, [2007] = 2007, - [2008] = 1970, - [2009] = 2009, - [2010] = 2005, - [2011] = 2011, - [2012] = 1970, - [2013] = 1970, - [2014] = 2000, + [2008] = 1876, + [2009] = 1979, + [2010] = 1901, + [2011] = 1853, + [2012] = 2012, + [2013] = 1900, + [2014] = 2014, [2015] = 2015, - [2016] = 2005, - [2017] = 2011, - [2018] = 2011, - [2019] = 2019, - [2020] = 2011, - [2021] = 2005, - [2022] = 2022, - [2023] = 2015, - [2024] = 1970, - [2025] = 2015, - [2026] = 1965, + [2016] = 1854, + [2017] = 1877, + [2018] = 1947, + [2019] = 1931, + [2020] = 2020, + [2021] = 1931, + [2022] = 1864, + [2023] = 1947, + [2024] = 1931, + [2025] = 2025, + [2026] = 1900, [2027] = 2027, - [2028] = 1970, - [2029] = 2000, - [2030] = 2001, - [2031] = 2011, - [2032] = 2005, - [2033] = 1970, - [2034] = 1970, - [2035] = 2035, - [2036] = 2005, - [2037] = 2011, - [2038] = 1992, - [2039] = 923, - [2040] = 2040, - [2041] = 1970, - [2042] = 2042, - [2043] = 2001, - [2044] = 1970, - [2045] = 918, - [2046] = 1967, - [2047] = 1970, + [2028] = 2028, + [2029] = 1931, + [2030] = 2028, + [2031] = 1938, + [2032] = 1910, + [2033] = 2033, + [2034] = 1901, + [2035] = 2028, + [2036] = 1939, + [2037] = 2028, + [2038] = 1900, + [2039] = 1947, + [2040] = 1939, + [2041] = 2028, + [2042] = 2028, + [2043] = 1931, + [2044] = 1919, + [2045] = 1900, + [2046] = 1939, + [2047] = 1939, [2048] = 2048, - [2049] = 1970, - [2050] = 2001, - [2051] = 2001, - [2052] = 2052, - [2053] = 2053, - [2054] = 2054, - [2055] = 2055, - [2056] = 2056, - [2057] = 2053, - [2058] = 2040, - [2059] = 1970, - [2060] = 2001, - [2061] = 2061, - [2062] = 2042, - [2063] = 2053, - [2064] = 2055, - [2065] = 2053, + [2049] = 2048, + [2050] = 2048, + [2051] = 1930, + [2052] = 2048, + [2053] = 2048, + [2054] = 2048, + [2055] = 1931, + [2056] = 1947, + [2057] = 2048, + [2058] = 1947, + [2059] = 1939, + [2060] = 1915, + [2061] = 1939, + [2062] = 1933, + [2063] = 2063, + [2064] = 1947, + [2065] = 1947, [2066] = 2066, - [2067] = 2001, - [2068] = 2068, - [2069] = 2069, - [2070] = 2040, - [2071] = 2053, - [2072] = 2072, - [2073] = 2073, - [2074] = 2053, - [2075] = 2075, - [2076] = 2053, - [2077] = 2042, - [2078] = 2078, - [2079] = 2001, - [2080] = 2001, - [2081] = 2053, - [2082] = 2053, - [2083] = 2061, - [2084] = 2084, + [2067] = 2067, + [2068] = 2048, + [2069] = 2048, + [2070] = 2070, + [2071] = 1947, + [2072] = 1900, + [2073] = 1916, + [2074] = 1939, + [2075] = 1939, + [2076] = 1940, + [2077] = 1939, + [2078] = 1947, + [2079] = 1939, + [2080] = 1991, + [2081] = 1947, + [2082] = 2020, + [2083] = 1947, + [2084] = 1900, [2085] = 2085, - [2086] = 2001, - [2087] = 2069, - [2088] = 2072, + [2086] = 2086, + [2087] = 1900, + [2088] = 2086, [2089] = 2089, [2090] = 2090, - [2091] = 2085, - [2092] = 2040, - [2093] = 2040, - [2094] = 2094, - [2095] = 2085, - [2096] = 2040, - [2097] = 2069, - [2098] = 2001, - [2099] = 2089, - [2100] = 1092, - [2101] = 2101, - [2102] = 2102, - [2103] = 2094, - [2104] = 2085, - [2105] = 2102, - [2106] = 2072, - [2107] = 2085, - [2108] = 1106, - [2109] = 2109, - [2110] = 2001, - [2111] = 2101, - [2112] = 2084, - [2113] = 2113, - [2114] = 2114, - [2115] = 2094, - [2116] = 2116, - [2117] = 2117, - [2118] = 2094, - [2119] = 2040, - [2120] = 2116, - [2121] = 2117, - [2122] = 923, - [2123] = 2123, - [2124] = 2124, - [2125] = 2116, - [2126] = 2094, - [2127] = 2117, - [2128] = 2040, - [2129] = 2102, - [2130] = 918, - [2131] = 2131, - [2132] = 2078, - [2133] = 2004, - [2134] = 2131, - [2135] = 2003, - [2136] = 2069, - [2137] = 2102, - [2138] = 2006, - [2139] = 2069, - [2140] = 2078, - [2141] = 2141, - [2142] = 2094, - [2143] = 2116, - [2144] = 2022, - [2145] = 989, - [2146] = 2069, - [2147] = 962, - [2148] = 2001, - [2149] = 972, - [2150] = 968, - [2151] = 2048, - [2152] = 2152, - [2153] = 2102, - [2154] = 2066, - [2155] = 2035, - [2156] = 2116, - [2157] = 2117, - [2158] = 2048, - [2159] = 2040, - [2160] = 2102, + [2091] = 1939, + [2092] = 2089, + [2093] = 1947, + [2094] = 2085, + [2095] = 2095, + [2096] = 2085, + [2097] = 2095, + [2098] = 2089, + [2099] = 2085, + [2100] = 2086, + [2101] = 2086, + [2102] = 2085, + [2103] = 2095, + [2104] = 2090, + [2105] = 2090, + [2106] = 2090, + [2107] = 2089, + [2108] = 2089, + [2109] = 2085, + [2110] = 2086, + [2111] = 1938, + [2112] = 1900, + [2113] = 2090, + [2114] = 2089, + [2115] = 2086, + [2116] = 2086, + [2117] = 2095, + [2118] = 2085, + [2119] = 2090, + [2120] = 2095, + [2121] = 2089, + [2122] = 2086, + [2123] = 2095, + [2124] = 2086, + [2125] = 2090, + [2126] = 2025, + [2127] = 2095, + [2128] = 2085, + [2129] = 2089, + [2130] = 2090, + [2131] = 2095, + [2132] = 2089, + [2133] = 2090, + [2134] = 2085, + [2135] = 2095, + [2136] = 2136, + [2137] = 2136, + [2138] = 2136, + [2139] = 2136, + [2140] = 2136, + [2141] = 2136, + [2142] = 2136, + [2143] = 2136, + [2144] = 2136, + [2145] = 2145, + [2146] = 2146, + [2147] = 2145, + [2148] = 2145, + [2149] = 2145, + [2150] = 2145, + [2151] = 2145, + [2152] = 2145, + [2153] = 2145, + [2154] = 2145, + [2155] = 2155, + [2156] = 2155, + [2157] = 2155, + [2158] = 2155, + [2159] = 2155, + [2160] = 2160, [2161] = 2161, - [2162] = 2007, - [2163] = 2078, - [2164] = 2084, - [2165] = 2072, - [2166] = 2166, - [2167] = 2001, - [2168] = 2019, - [2169] = 2117, - [2170] = 2084, - [2171] = 2056, - [2172] = 2172, - [2173] = 2094, - [2174] = 2102, - [2175] = 2048, - [2176] = 2172, - [2177] = 2048, - [2178] = 2172, - [2179] = 2179, - [2180] = 2172, - [2181] = 2181, - [2182] = 2102, - [2183] = 2069, - [2184] = 2184, - [2185] = 2109, - [2186] = 2172, - [2187] = 2040, - [2188] = 2172, - [2189] = 2069, - [2190] = 2069, - [2191] = 2094, - [2192] = 2192, - [2193] = 2192, - [2194] = 2069, - [2195] = 2078, - [2196] = 2048, - [2197] = 2197, - [2198] = 2198, - [2199] = 2199, - [2200] = 2084, - [2201] = 2094, - [2202] = 2102, - [2203] = 2102, - [2204] = 2102, - [2205] = 2094, - [2206] = 2094, - [2207] = 2094, - [2208] = 2192, - [2209] = 2055, - [2210] = 2102, - [2211] = 2211, - [2212] = 2192, - [2213] = 2192, - [2214] = 2061, - [2215] = 2192, - [2216] = 2192, - [2217] = 2192, - [2218] = 2192, - [2219] = 2102, - [2220] = 2094, - [2221] = 2048, - [2222] = 2102, - [2223] = 2124, - [2224] = 2094, - [2225] = 2094, - [2226] = 2102, - [2227] = 2123, - [2228] = 2101, - [2229] = 2048, - [2230] = 2066, - [2231] = 2094, - [2232] = 2102, + [2162] = 2162, + [2163] = 2163, + [2164] = 2161, + [2165] = 2163, + [2166] = 2162, + [2167] = 2161, + [2168] = 2163, + [2169] = 2161, + [2170] = 2161, + [2171] = 2162, + [2172] = 2161, + [2173] = 2161, + [2174] = 2163, + [2175] = 2162, + [2176] = 2163, + [2177] = 2163, + [2178] = 2161, + [2179] = 2161, + [2180] = 2163, + [2181] = 2161, + [2182] = 2162, + [2183] = 2163, + [2184] = 2163, + [2185] = 2163, + [2186] = 2161, + [2187] = 2161, + [2188] = 2163, + [2189] = 2161, + [2190] = 2162, + [2191] = 2163, + [2192] = 2163, + [2193] = 2163, + [2194] = 2162, + [2195] = 2161, + [2196] = 2163, + [2197] = 2161, + [2198] = 2161, + [2199] = 2163, + [2200] = 2200, + [2201] = 324, + [2202] = 2202, + [2203] = 339, + [2204] = 2204, + [2205] = 2205, + [2206] = 2206, + [2207] = 2207, + [2208] = 2208, + [2209] = 2209, + [2210] = 2210, + [2211] = 2012, + [2212] = 2212, + [2213] = 339, + [2214] = 2214, + [2215] = 2215, + [2216] = 292, + [2217] = 293, + [2218] = 2218, + [2219] = 324, + [2220] = 2220, + [2221] = 291, + [2222] = 2222, + [2223] = 2007, + [2224] = 2015, + [2225] = 2225, + [2226] = 294, + [2227] = 2227, + [2228] = 2228, + [2229] = 2229, + [2230] = 2230, + [2231] = 2231, + [2232] = 2232, [2233] = 2233, - [2234] = 2234, + [2234] = 2230, [2235] = 2235, - [2236] = 2234, + [2236] = 2236, [2237] = 2237, - [2238] = 2184, - [2239] = 2048, - [2240] = 2233, - [2241] = 2235, - [2242] = 2234, - [2243] = 2243, - [2244] = 2237, - [2245] = 2235, - [2246] = 2234, - [2247] = 2235, - [2248] = 2048, - [2249] = 2237, - [2250] = 2235, - [2251] = 2233, - [2252] = 2233, - [2253] = 2237, - [2254] = 2237, - [2255] = 2237, - [2256] = 2243, - [2257] = 2234, - [2258] = 2233, - [2259] = 2102, - [2260] = 2243, - [2261] = 2234, - [2262] = 2233, - [2263] = 2243, - [2264] = 2243, - [2265] = 2235, - [2266] = 2234, - [2267] = 2233, - [2268] = 2237, - [2269] = 2243, - [2270] = 2109, - [2271] = 2235, - [2272] = 2243, - [2273] = 2234, - [2274] = 2233, - [2275] = 2237, - [2276] = 2235, - [2277] = 2094, - [2278] = 2237, - [2279] = 2235, - [2280] = 2233, - [2281] = 2243, - [2282] = 2234, - [2283] = 2243, + [2238] = 2238, + [2239] = 2230, + [2240] = 2240, + [2241] = 2241, + [2242] = 2230, + [2243] = 1031, + [2244] = 2244, + [2245] = 333, + [2246] = 2246, + [2247] = 335, + [2248] = 2248, + [2249] = 2249, + [2250] = 2250, + [2251] = 2251, + [2252] = 2252, + [2253] = 2253, + [2254] = 2254, + [2255] = 2255, + [2256] = 2256, + [2257] = 2257, + [2258] = 2258, + [2259] = 2259, + [2260] = 2260, + [2261] = 2261, + [2262] = 2262, + [2263] = 2263, + [2264] = 2264, + [2265] = 2265, + [2266] = 2266, + [2267] = 2267, + [2268] = 2268, + [2269] = 2269, + [2270] = 2270, + [2271] = 2271, + [2272] = 2272, + [2273] = 2273, + [2274] = 1040, + [2275] = 2230, + [2276] = 2276, + [2277] = 2277, + [2278] = 2278, + [2279] = 2279, + [2280] = 2280, + [2281] = 2281, + [2282] = 2282, + [2283] = 2283, [2284] = 2284, - [2285] = 2284, - [2286] = 2284, - [2287] = 2284, - [2288] = 2284, - [2289] = 2284, - [2290] = 2284, - [2291] = 2284, - [2292] = 2284, - [2293] = 2293, - [2294] = 2293, - [2295] = 2293, - [2296] = 2293, - [2297] = 2293, - [2298] = 2293, - [2299] = 2293, - [2300] = 2293, - [2301] = 2293, + [2285] = 2285, + [2286] = 2286, + [2287] = 2287, + [2288] = 2288, + [2289] = 2289, + [2290] = 2290, + [2291] = 2291, + [2292] = 2292, + [2293] = 338, + [2294] = 2294, + [2295] = 2295, + [2296] = 2296, + [2297] = 2297, + [2298] = 2298, + [2299] = 2299, + [2300] = 1036, + [2301] = 2301, [2302] = 2302, [2303] = 2303, - [2304] = 2303, - [2305] = 2303, - [2306] = 2303, - [2307] = 2303, + [2304] = 2304, + [2305] = 2305, + [2306] = 2306, + [2307] = 2307, [2308] = 2308, [2309] = 2309, [2310] = 2310, - [2311] = 2308, - [2312] = 2310, - [2313] = 2309, - [2314] = 2309, - [2315] = 2309, - [2316] = 2308, - [2317] = 2310, - [2318] = 2310, - [2319] = 2308, - [2320] = 2310, - [2321] = 2308, - [2322] = 2308, - [2323] = 2308, - [2324] = 2310, - [2325] = 2310, - [2326] = 2309, - [2327] = 2309, - [2328] = 2308, - [2329] = 2310, - [2330] = 2308, - [2331] = 2308, - [2332] = 2310, - [2333] = 2310, - [2334] = 2309, - [2335] = 2308, - [2336] = 2310, - [2337] = 2308, - [2338] = 2310, - [2339] = 2308, - [2340] = 2310, - [2341] = 2308, + [2311] = 2311, + [2312] = 2299, + [2313] = 1037, + [2314] = 1038, + [2315] = 2315, + [2316] = 2316, + [2317] = 2317, + [2318] = 2318, + [2319] = 2319, + [2320] = 2230, + [2321] = 2321, + [2322] = 2322, + [2323] = 2230, + [2324] = 2324, + [2325] = 2325, + [2326] = 2326, + [2327] = 2327, + [2328] = 2328, + [2329] = 2329, + [2330] = 2330, + [2331] = 2331, + [2332] = 2332, + [2333] = 2333, + [2334] = 2334, + [2335] = 2335, + [2336] = 2336, + [2337] = 2337, + [2338] = 2338, + [2339] = 2339, + [2340] = 2340, + [2341] = 2341, [2342] = 2342, - [2343] = 2310, - [2344] = 2310, - [2345] = 2308, - [2346] = 2308, - [2347] = 2310, - [2348] = 295, - [2349] = 333, + [2343] = 2343, + [2344] = 2344, + [2345] = 291, + [2346] = 293, + [2347] = 2347, + [2348] = 2348, + [2349] = 2349, [2350] = 2350, [2351] = 2351, [2352] = 2352, @@ -7006,1178 +7014,1178 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2358] = 2358, [2359] = 2359, [2360] = 2360, - [2361] = 291, - [2362] = 2113, - [2363] = 2161, - [2364] = 295, - [2365] = 290, - [2366] = 2366, - [2367] = 333, - [2368] = 2368, - [2369] = 292, + [2361] = 2361, + [2362] = 2362, + [2363] = 2363, + [2364] = 2364, + [2365] = 2365, + [2366] = 292, + [2367] = 2367, + [2368] = 2230, + [2369] = 2369, [2370] = 2370, - [2371] = 2371, + [2371] = 2230, [2372] = 2372, - [2373] = 2141, - [2374] = 294, + [2373] = 2373, + [2374] = 2374, [2375] = 2375, - [2376] = 2376, - [2377] = 2377, + [2376] = 2299, + [2377] = 2299, [2378] = 2378, [2379] = 2379, [2380] = 2380, - [2381] = 2381, + [2381] = 2299, [2382] = 2382, [2383] = 2383, [2384] = 2384, [2385] = 2385, [2386] = 2386, - [2387] = 2387, + [2387] = 305, [2388] = 2388, [2389] = 2389, [2390] = 2390, [2391] = 2391, - [2392] = 2392, + [2392] = 2311, [2393] = 2393, - [2394] = 2394, + [2394] = 314, [2395] = 2395, [2396] = 2396, [2397] = 2397, - [2398] = 2398, + [2398] = 2358, [2399] = 2399, - [2400] = 2400, - [2401] = 2401, + [2400] = 2317, + [2401] = 2205, [2402] = 2402, [2403] = 2403, [2404] = 2404, [2405] = 2405, - [2406] = 2406, - [2407] = 2407, - [2408] = 2399, - [2409] = 2409, - [2410] = 2410, - [2411] = 2411, - [2412] = 2399, + [2406] = 2395, + [2407] = 2352, + [2408] = 2316, + [2409] = 2395, + [2410] = 2238, + [2411] = 2393, + [2412] = 2412, [2413] = 2413, [2414] = 2414, - [2415] = 2415, + [2415] = 2355, [2416] = 2416, - [2417] = 2399, - [2418] = 2399, - [2419] = 2419, + [2417] = 2402, + [2418] = 2418, + [2419] = 314, [2420] = 2420, [2421] = 2421, - [2422] = 2422, - [2423] = 2423, + [2422] = 2350, + [2423] = 2231, [2424] = 2424, [2425] = 2425, [2426] = 2426, [2427] = 2427, - [2428] = 2428, - [2429] = 2429, + [2428] = 2402, + [2429] = 2412, [2430] = 2430, - [2431] = 2431, + [2431] = 2343, [2432] = 2432, - [2433] = 2433, - [2434] = 2434, + [2433] = 2248, + [2434] = 2393, [2435] = 2435, [2436] = 2436, - [2437] = 327, + [2437] = 2272, [2438] = 2438, - [2439] = 2439, - [2440] = 2440, + [2439] = 2315, + [2440] = 335, [2441] = 2441, [2442] = 2442, - [2443] = 2443, + [2443] = 333, [2444] = 2444, [2445] = 2445, [2446] = 2446, - [2447] = 2381, - [2448] = 2448, + [2447] = 2319, + [2448] = 2416, [2449] = 2449, [2450] = 2450, [2451] = 2451, [2452] = 2452, - [2453] = 1005, + [2453] = 2453, [2454] = 2454, [2455] = 2455, - [2456] = 2456, + [2456] = 2307, [2457] = 2457, [2458] = 2458, - [2459] = 2459, - [2460] = 2460, - [2461] = 2461, + [2459] = 319, + [2460] = 319, + [2461] = 2367, [2462] = 2462, - [2463] = 2463, - [2464] = 2464, + [2463] = 2322, + [2464] = 2357, [2465] = 2465, - [2466] = 2466, - [2467] = 1007, + [2466] = 2412, + [2467] = 2402, [2468] = 2468, [2469] = 2469, - [2470] = 2470, - [2471] = 2471, + [2470] = 2206, + [2471] = 2319, [2472] = 2472, [2473] = 2473, - [2474] = 2474, + [2474] = 2465, [2475] = 2475, - [2476] = 2476, - [2477] = 2381, - [2478] = 2478, - [2479] = 2479, + [2476] = 2207, + [2477] = 2477, + [2478] = 2416, + [2479] = 2416, [2480] = 2480, [2481] = 2481, - [2482] = 1009, - [2483] = 2483, + [2482] = 2356, + [2483] = 2311, [2484] = 2484, - [2485] = 2399, - [2486] = 992, - [2487] = 1028, - [2488] = 2488, - [2489] = 2489, + [2485] = 2358, + [2486] = 2356, + [2487] = 2209, + [2488] = 2204, + [2489] = 310, [2490] = 2490, - [2491] = 2491, - [2492] = 2381, + [2491] = 2307, + [2492] = 2352, [2493] = 2493, - [2494] = 2494, - [2495] = 296, + [2494] = 2350, + [2495] = 2495, [2496] = 2496, - [2497] = 322, - [2498] = 2498, - [2499] = 2499, - [2500] = 301, + [2497] = 2497, + [2498] = 2343, + [2499] = 2241, + [2500] = 338, [2501] = 2501, [2502] = 2502, - [2503] = 2503, - [2504] = 2504, - [2505] = 2505, - [2506] = 2506, - [2507] = 2507, + [2503] = 2249, + [2504] = 2246, + [2505] = 2416, + [2506] = 2355, + [2507] = 2395, [2508] = 2508, - [2509] = 2509, - [2510] = 2399, - [2511] = 2511, + [2509] = 2367, + [2510] = 2393, + [2511] = 2309, [2512] = 2512, [2513] = 2513, - [2514] = 2514, + [2514] = 342, [2515] = 2515, - [2516] = 2516, + [2516] = 2233, [2517] = 2517, - [2518] = 290, - [2519] = 291, - [2520] = 292, + [2518] = 2232, + [2519] = 2232, + [2520] = 2322, [2521] = 2521, [2522] = 2522, [2523] = 2523, - [2524] = 2524, - [2525] = 2525, + [2524] = 2233, + [2525] = 310, [2526] = 2526, - [2527] = 2527, - [2528] = 2528, - [2529] = 2381, - [2530] = 2530, + [2527] = 2375, + [2528] = 2328, + [2529] = 2529, + [2530] = 2330, [2531] = 2531, - [2532] = 2532, - [2533] = 2399, - [2534] = 2534, - [2535] = 2399, - [2536] = 2536, - [2537] = 2537, - [2538] = 2538, - [2539] = 2539, - [2540] = 326, + [2532] = 331, + [2533] = 2357, + [2534] = 2246, + [2535] = 321, + [2536] = 2241, + [2537] = 2309, + [2538] = 2248, + [2539] = 2249, + [2540] = 321, [2541] = 2541, - [2542] = 2542, - [2543] = 2355, - [2544] = 2544, + [2542] = 2341, + [2543] = 342, + [2544] = 305, [2545] = 2545, - [2546] = 2496, - [2547] = 2454, - [2548] = 325, - [2549] = 2549, - [2550] = 2536, - [2551] = 2502, - [2552] = 2552, - [2553] = 2553, - [2554] = 2385, - [2555] = 325, - [2556] = 2440, - [2557] = 2438, - [2558] = 2376, - [2559] = 2559, + [2546] = 2416, + [2547] = 2547, + [2548] = 2548, + [2549] = 331, + [2550] = 2550, + [2551] = 2393, + [2552] = 2490, + [2553] = 2484, + [2554] = 2554, + [2555] = 2315, + [2556] = 2316, + [2557] = 2238, + [2558] = 2558, + [2559] = 2317, [2560] = 2560, - [2561] = 2457, - [2562] = 326, - [2563] = 299, - [2564] = 2564, - [2565] = 2464, + [2561] = 2561, + [2562] = 2341, + [2563] = 2272, + [2564] = 2330, + [2565] = 2565, [2566] = 2566, - [2567] = 2382, + [2567] = 2395, [2568] = 2568, - [2569] = 2569, + [2569] = 2231, [2570] = 2570, - [2571] = 327, + [2571] = 2328, [2572] = 2572, - [2573] = 2464, - [2574] = 301, - [2575] = 2416, - [2576] = 2456, - [2577] = 2545, - [2578] = 2578, - [2579] = 2461, + [2573] = 2412, + [2574] = 2375, + [2575] = 2402, + [2576] = 2412, + [2577] = 2577, + [2578] = 2379, + [2579] = 2579, [2580] = 2580, - [2581] = 2513, - [2582] = 2457, - [2583] = 2560, - [2584] = 2584, - [2585] = 2559, - [2586] = 2586, - [2587] = 2376, - [2588] = 2393, + [2581] = 2581, + [2582] = 2484, + [2583] = 2465, + [2584] = 2309, + [2585] = 2585, + [2586] = 2241, + [2587] = 2587, + [2588] = 2588, [2589] = 2589, - [2590] = 2389, - [2591] = 2591, + [2590] = 2222, + [2591] = 2581, [2592] = 2592, - [2593] = 2386, - [2594] = 2354, - [2595] = 2488, - [2596] = 2517, - [2597] = 2534, - [2598] = 2441, - [2599] = 2390, - [2600] = 2388, - [2601] = 2387, - [2602] = 2385, - [2603] = 2603, - [2604] = 2604, - [2605] = 2605, - [2606] = 2606, - [2607] = 2382, - [2608] = 2496, - [2609] = 2502, - [2610] = 2456, - [2611] = 2387, - [2612] = 2461, - [2613] = 2613, - [2614] = 2614, - [2615] = 302, - [2616] = 2616, - [2617] = 2617, - [2618] = 2618, - [2619] = 2619, - [2620] = 2388, - [2621] = 2390, - [2622] = 2536, - [2623] = 2549, + [2593] = 2210, + [2594] = 2212, + [2595] = 2595, + [2596] = 2596, + [2597] = 2597, + [2598] = 2225, + [2599] = 2311, + [2600] = 2561, + [2601] = 2601, + [2602] = 2007, + [2603] = 2355, + [2604] = 2589, + [2605] = 2383, + [2606] = 2561, + [2607] = 2589, + [2608] = 2358, + [2609] = 2356, + [2610] = 2589, + [2611] = 2352, + [2612] = 2350, + [2613] = 2343, + [2614] = 2248, + [2615] = 2238, + [2616] = 2231, + [2617] = 2272, + [2618] = 2310, + [2619] = 2379, + [2620] = 2215, + [2621] = 2621, + [2622] = 2581, + [2623] = 2577, [2624] = 2624, - [2625] = 2625, - [2626] = 2626, - [2627] = 2627, + [2625] = 2595, + [2626] = 2601, + [2627] = 2220, [2628] = 2628, - [2629] = 2629, + [2629] = 2601, [2630] = 2630, - [2631] = 302, + [2631] = 2631, [2632] = 2632, - [2633] = 2633, - [2634] = 2634, + [2633] = 2595, + [2634] = 2581, [2635] = 2635, - [2636] = 2636, - [2637] = 2454, - [2638] = 2638, - [2639] = 2639, - [2640] = 2356, - [2641] = 299, - [2642] = 2357, - [2643] = 2352, - [2644] = 2441, - [2645] = 310, - [2646] = 2646, - [2647] = 2534, - [2648] = 2471, - [2649] = 2472, - [2650] = 2473, - [2651] = 2517, - [2652] = 2480, - [2653] = 2411, - [2654] = 2440, - [2655] = 2438, - [2656] = 2513, - [2657] = 2657, - [2658] = 2658, - [2659] = 2659, - [2660] = 2660, - [2661] = 2545, - [2662] = 2662, - [2663] = 2559, - [2664] = 2560, - [2665] = 2665, - [2666] = 2666, - [2667] = 2667, - [2668] = 2545, - [2669] = 2669, - [2670] = 2670, - [2671] = 2416, - [2672] = 340, - [2673] = 2673, - [2674] = 2674, - [2675] = 2675, - [2676] = 2559, - [2677] = 2560, - [2678] = 310, - [2679] = 2545, + [2636] = 2490, + [2637] = 2637, + [2638] = 2589, + [2639] = 2015, + [2640] = 2640, + [2641] = 2641, + [2642] = 2012, + [2643] = 2595, + [2644] = 2367, + [2645] = 2322, + [2646] = 2595, + [2647] = 2357, + [2648] = 2648, + [2649] = 2333, + [2650] = 2632, + [2651] = 2651, + [2652] = 2341, + [2653] = 2653, + [2654] = 2581, + [2655] = 2655, + [2656] = 2595, + [2657] = 2630, + [2658] = 2330, + [2659] = 2383, + [2660] = 2218, + [2661] = 2601, + [2662] = 2214, + [2663] = 2379, + [2664] = 2383, + [2665] = 2648, + [2666] = 2328, + [2667] = 2246, + [2668] = 2375, + [2669] = 2249, + [2670] = 2641, + [2671] = 2233, + [2672] = 2307, + [2673] = 2319, + [2674] = 2317, + [2675] = 2232, + [2676] = 2316, + [2677] = 2315, + [2678] = 2678, + [2679] = 2601, [2680] = 2680, - [2681] = 2549, - [2682] = 2682, - [2683] = 2683, - [2684] = 2684, - [2685] = 2685, - [2686] = 2686, - [2687] = 2687, - [2688] = 2688, - [2689] = 2689, - [2690] = 2690, - [2691] = 2559, - [2692] = 2560, - [2693] = 340, - [2694] = 2694, - [2695] = 2545, - [2696] = 2393, - [2697] = 2541, - [2698] = 2471, + [2681] = 2595, + [2682] = 2572, + [2683] = 2260, + [2684] = 2288, + [2685] = 2290, + [2686] = 2291, + [2687] = 2294, + [2688] = 2297, + [2689] = 2298, + [2690] = 2301, + [2691] = 2302, + [2692] = 1038, + [2693] = 2305, + [2694] = 2308, + [2695] = 2695, + [2696] = 2490, + [2697] = 2572, + [2698] = 2585, [2699] = 2699, - [2700] = 2389, - [2701] = 2472, - [2702] = 2386, - [2703] = 2473, - [2704] = 2539, - [2705] = 2705, - [2706] = 2706, - [2707] = 2707, - [2708] = 2708, - [2709] = 2536, - [2710] = 2710, - [2711] = 2480, - [2712] = 2411, - [2713] = 2549, - [2714] = 322, - [2715] = 296, + [2700] = 2570, + [2701] = 2413, + [2702] = 2332, + [2703] = 2329, + [2704] = 2704, + [2705] = 2304, + [2706] = 2292, + [2707] = 2289, + [2708] = 2383, + [2709] = 2286, + [2710] = 2378, + [2711] = 2413, + [2712] = 2285, + [2713] = 2570, + [2714] = 2307, + [2715] = 2284, [2716] = 2716, - [2717] = 2717, - [2718] = 2718, - [2719] = 2719, - [2720] = 2542, - [2721] = 2488, - [2722] = 2549, - [2723] = 2723, - [2724] = 2536, - [2725] = 2725, - [2726] = 2726, + [2717] = 2369, + [2718] = 2365, + [2719] = 2370, + [2720] = 2363, + [2721] = 2359, + [2722] = 2351, + [2723] = 2348, + [2724] = 2724, + [2725] = 2347, + [2726] = 2374, [2727] = 2727, - [2728] = 2728, - [2729] = 2491, - [2730] = 2544, - [2731] = 2438, - [2732] = 2732, - [2733] = 2440, - [2734] = 2734, - [2735] = 2735, - [2736] = 2113, - [2737] = 2493, - [2738] = 2416, - [2739] = 2372, - [2740] = 2393, - [2741] = 2464, - [2742] = 2491, - [2743] = 2457, - [2744] = 2744, - [2745] = 2389, - [2746] = 2376, - [2747] = 2386, - [2748] = 2493, - [2749] = 2454, - [2750] = 2488, - [2751] = 2517, - [2752] = 2534, - [2753] = 2727, - [2754] = 2441, + [2728] = 2283, + [2729] = 2342, + [2730] = 2340, + [2731] = 2335, + [2732] = 2334, + [2733] = 1037, + [2734] = 2282, + [2735] = 2331, + [2736] = 2326, + [2737] = 2325, + [2738] = 2324, + [2739] = 294, + [2740] = 2740, + [2741] = 2740, + [2742] = 2236, + [2743] = 2280, + [2744] = 2585, + [2745] = 2745, + [2746] = 2570, + [2747] = 2278, + [2748] = 2370, + [2749] = 2277, + [2750] = 2273, + [2751] = 2695, + [2752] = 2386, + [2753] = 2338, + [2754] = 2339, [2755] = 2755, - [2756] = 2390, - [2757] = 2388, - [2758] = 2387, - [2759] = 2385, - [2760] = 2760, - [2761] = 2382, - [2762] = 2755, - [2763] = 2496, - [2764] = 2502, - [2765] = 2368, - [2766] = 2456, + [2756] = 2385, + [2757] = 2757, + [2758] = 2241, + [2759] = 2309, + [2760] = 2355, + [2761] = 2367, + [2762] = 2322, + [2763] = 2384, + [2764] = 2764, + [2765] = 2357, + [2766] = 2341, [2767] = 2767, - [2768] = 2461, - [2769] = 2727, - [2770] = 2371, - [2771] = 2370, - [2772] = 2755, - [2773] = 2773, - [2774] = 2774, - [2775] = 2775, - [2776] = 2760, - [2777] = 2777, - [2778] = 2778, - [2779] = 2755, - [2780] = 2471, - [2781] = 2472, - [2782] = 2473, - [2783] = 2480, - [2784] = 2411, - [2785] = 2727, - [2786] = 2786, - [2787] = 2787, - [2788] = 2744, - [2789] = 2744, - [2790] = 2725, - [2791] = 2791, - [2792] = 2509, - [2793] = 2760, - [2794] = 2794, - [2795] = 2755, - [2796] = 2744, - [2797] = 2727, - [2798] = 2767, - [2799] = 2360, - [2800] = 2800, - [2801] = 2359, - [2802] = 2358, - [2803] = 2161, - [2804] = 2491, - [2805] = 2493, - [2806] = 2366, - [2807] = 2544, - [2808] = 2808, - [2809] = 2809, - [2810] = 2513, - [2811] = 2760, - [2812] = 2514, - [2813] = 2813, - [2814] = 2541, - [2815] = 2774, - [2816] = 2787, - [2817] = 2539, - [2818] = 2808, - [2819] = 2819, - [2820] = 2141, - [2821] = 2755, - [2822] = 2542, - [2823] = 2760, - [2824] = 2824, - [2825] = 2744, - [2826] = 2755, - [2827] = 2827, - [2828] = 2828, - [2829] = 2829, - [2830] = 1009, - [2831] = 2475, - [2832] = 2393, - [2833] = 2474, - [2834] = 992, - [2835] = 1028, - [2836] = 2521, - [2837] = 2506, - [2838] = 2489, - [2839] = 2522, - [2840] = 2523, - [2841] = 2534, - [2842] = 2481, - [2843] = 2458, - [2844] = 2515, - [2845] = 2455, - [2846] = 2448, - [2847] = 2392, - [2848] = 2445, - [2849] = 2400, - [2850] = 2403, - [2851] = 2404, - [2852] = 2406, - [2853] = 2504, - [2854] = 2391, - [2855] = 2413, - [2856] = 2419, - [2857] = 2420, - [2858] = 2421, - [2859] = 2422, - [2860] = 2423, - [2861] = 2377, - [2862] = 2424, - [2863] = 2425, - [2864] = 2426, - [2865] = 2427, - [2866] = 2512, - [2867] = 2428, - [2868] = 2446, - [2869] = 2517, - [2870] = 2378, - [2871] = 2871, - [2872] = 2416, - [2873] = 2379, - [2874] = 2390, - [2875] = 2380, - [2876] = 2383, - [2877] = 2877, - [2878] = 2877, - [2879] = 2441, - [2880] = 2514, - [2881] = 2524, - [2882] = 2525, - [2883] = 2883, - [2884] = 2526, - [2885] = 2527, - [2886] = 2871, - [2887] = 2528, - [2888] = 2674, - [2889] = 2438, - [2890] = 2890, - [2891] = 2384, - [2892] = 2892, - [2893] = 2877, - [2894] = 2388, - [2895] = 2511, - [2896] = 2387, - [2897] = 2385, - [2898] = 1007, - [2899] = 2429, - [2900] = 2430, - [2901] = 2431, - [2902] = 2432, - [2903] = 2433, - [2904] = 2434, - [2905] = 2435, - [2906] = 2436, - [2907] = 2542, - [2908] = 2462, - [2909] = 2439, - [2910] = 2375, - [2911] = 2442, - [2912] = 2443, - [2913] = 2877, - [2914] = 2444, - [2915] = 2449, - [2916] = 2450, - [2917] = 2451, - [2918] = 2454, - [2919] = 2376, - [2920] = 2464, - [2921] = 2457, - [2922] = 2922, + [2768] = 2330, + [2769] = 2268, + [2770] = 2328, + [2771] = 2375, + [2772] = 2267, + [2773] = 2319, + [2774] = 2266, + [2775] = 1040, + [2776] = 2317, + [2777] = 2265, + [2778] = 2316, + [2779] = 2757, + [2780] = 2780, + [2781] = 2264, + [2782] = 2695, + [2783] = 2379, + [2784] = 2241, + [2785] = 2309, + [2786] = 2355, + [2787] = 2364, + [2788] = 2362, + [2789] = 2367, + [2790] = 2322, + [2791] = 2357, + [2792] = 2792, + [2793] = 2248, + [2794] = 2361, + [2795] = 2341, + [2796] = 2262, + [2797] = 2330, + [2798] = 2328, + [2799] = 2287, + [2800] = 2375, + [2801] = 2307, + [2802] = 2319, + [2803] = 2317, + [2804] = 2316, + [2805] = 2805, + [2806] = 2315, + [2807] = 1036, + [2808] = 2310, + [2809] = 2315, + [2810] = 2232, + [2811] = 2232, + [2812] = 2233, + [2813] = 2327, + [2814] = 2246, + [2815] = 2233, + [2816] = 2246, + [2817] = 2249, + [2818] = 2258, + [2819] = 2257, + [2820] = 2256, + [2821] = 2343, + [2822] = 2350, + [2823] = 2352, + [2824] = 2740, + [2825] = 2249, + [2826] = 2356, + [2827] = 2358, + [2828] = 2740, + [2829] = 2255, + [2830] = 2704, + [2831] = 2343, + [2832] = 2251, + [2833] = 2350, + [2834] = 2352, + [2835] = 2740, + [2836] = 2695, + [2837] = 2311, + [2838] = 2413, + [2839] = 2356, + [2840] = 2303, + [2841] = 2271, + [2842] = 2704, + [2843] = 2704, + [2844] = 2296, + [2845] = 2295, + [2846] = 2281, + [2847] = 2279, + [2848] = 2276, + [2849] = 2270, + [2850] = 2378, + [2851] = 2269, + [2852] = 2240, + [2853] = 2237, + [2854] = 2227, + [2855] = 2349, + [2856] = 2263, + [2857] = 2261, + [2858] = 2254, + [2859] = 2253, + [2860] = 2358, + [2861] = 2311, + [2862] = 2680, + [2863] = 2863, + [2864] = 2353, + [2865] = 2252, + [2866] = 2250, + [2867] = 2306, + [2868] = 2372, + [2869] = 2382, + [2870] = 2354, + [2871] = 2360, + [2872] = 2344, + [2873] = 2337, + [2874] = 2272, + [2875] = 2383, + [2876] = 2231, + [2877] = 2572, + [2878] = 2238, + [2879] = 2379, + [2880] = 2336, + [2881] = 2235, + [2882] = 2740, + [2883] = 2248, + [2884] = 2310, + [2885] = 2244, + [2886] = 2259, + [2887] = 294, + [2888] = 2229, + [2889] = 2889, + [2890] = 2318, + [2891] = 2680, + [2892] = 2321, + [2893] = 2863, + [2894] = 2894, + [2895] = 2695, + [2896] = 2896, + [2897] = 2373, + [2898] = 2228, + [2899] = 2380, + [2900] = 2272, + [2901] = 2901, + [2902] = 2695, + [2903] = 2903, + [2904] = 2704, + [2905] = 2704, + [2906] = 2231, + [2907] = 2907, + [2908] = 2383, + [2909] = 2484, + [2910] = 2910, + [2911] = 2911, + [2912] = 2238, + [2913] = 2704, + [2914] = 1031, + [2915] = 2379, + [2916] = 2465, + [2917] = 2917, + [2918] = 2413, + [2919] = 2919, + [2920] = 2920, + [2921] = 2921, + [2922] = 327, [2923] = 2923, - [2924] = 2924, - [2925] = 2925, + [2924] = 2640, + [2925] = 2495, [2926] = 2926, [2927] = 2927, - [2928] = 2394, - [2929] = 2674, - [2930] = 2513, - [2931] = 2395, - [2932] = 2491, - [2933] = 2411, - [2934] = 2397, - [2935] = 2935, - [2936] = 2382, - [2937] = 2480, - [2938] = 2508, - [2939] = 2507, - [2940] = 2493, - [2941] = 2473, - [2942] = 2396, - [2943] = 2505, - [2944] = 2398, - [2945] = 2503, - [2946] = 2472, - [2947] = 2471, - [2948] = 2401, - [2949] = 2402, - [2950] = 2501, - [2951] = 2499, - [2952] = 2498, - [2953] = 2405, - [2954] = 2777, - [2955] = 2461, + [2928] = 328, + [2929] = 296, + [2930] = 2358, + [2931] = 2370, + [2932] = 2566, + [2933] = 2565, + [2934] = 2356, + [2935] = 2919, + [2936] = 337, + [2937] = 340, + [2938] = 2938, + [2939] = 2939, + [2940] = 2547, + [2941] = 2352, + [2942] = 2942, + [2943] = 2350, + [2944] = 2475, + [2945] = 2343, + [2946] = 2919, + [2947] = 2926, + [2948] = 2370, + [2949] = 2949, + [2950] = 2950, + [2951] = 2919, + [2952] = 2952, + [2953] = 2953, + [2954] = 2954, + [2955] = 2955, [2956] = 2956, - [2957] = 2407, - [2958] = 2958, - [2959] = 2490, - [2960] = 2456, - [2961] = 2502, - [2962] = 2491, - [2963] = 2409, + [2957] = 2432, + [2958] = 2311, + [2959] = 2959, + [2960] = 2493, + [2961] = 2961, + [2962] = 2962, + [2963] = 2963, [2964] = 2964, - [2965] = 2496, - [2966] = 2410, - [2967] = 2382, - [2968] = 2968, - [2969] = 2935, - [2970] = 2385, - [2971] = 2414, - [2972] = 2387, - [2973] = 2530, - [2974] = 2531, - [2975] = 2388, - [2976] = 2532, - [2977] = 2390, - [2978] = 2493, - [2979] = 2493, - [2980] = 2415, - [2981] = 2472, - [2982] = 2440, - [2983] = 2441, - [2984] = 2534, - [2985] = 2411, - [2986] = 2389, - [2987] = 2517, - [2988] = 2956, - [2989] = 2491, - [2990] = 2469, - [2991] = 2488, - [2992] = 2386, - [2993] = 294, - [2994] = 2389, + [2965] = 2965, + [2966] = 2462, + [2967] = 2473, + [2968] = 2457, + [2969] = 2453, + [2970] = 2523, + [2971] = 2952, + [2972] = 2445, + [2973] = 303, + [2974] = 2926, + [2975] = 2444, + [2976] = 2976, + [2977] = 2442, + [2978] = 2441, + [2979] = 2640, + [2980] = 2980, + [2981] = 2413, + [2982] = 2568, + [2983] = 2438, + [2984] = 2378, + [2985] = 2435, + [2986] = 2426, + [2987] = 2425, + [2988] = 2988, + [2989] = 2424, + [2990] = 2990, + [2991] = 332, + [2992] = 2950, + [2993] = 2911, + [2994] = 330, [2995] = 2995, - [2996] = 2386, - [2997] = 2496, - [2998] = 2935, - [2999] = 2999, - [3000] = 2935, - [3001] = 3001, - [3002] = 1005, - [3003] = 2502, - [3004] = 3004, - [3005] = 2393, - [3006] = 2456, - [3007] = 294, - [3008] = 3008, - [3009] = 3009, - [3010] = 3010, - [3011] = 2480, - [3012] = 2416, - [3013] = 2438, - [3014] = 2461, - [3015] = 2440, - [3016] = 2673, - [3017] = 2516, - [3018] = 2452, - [3019] = 2956, - [3020] = 2775, - [3021] = 2619, - [3022] = 2673, - [3023] = 2459, - [3024] = 2935, - [3025] = 2494, - [3026] = 2460, + [2996] = 329, + [2997] = 2997, + [2998] = 2404, + [2999] = 320, + [3000] = 312, + [3001] = 311, + [3002] = 3002, + [3003] = 2272, + [3004] = 2231, + [3005] = 2585, + [3006] = 2238, + [3007] = 2403, + [3008] = 2397, + [3009] = 2248, + [3010] = 2919, + [3011] = 2926, + [3012] = 2640, + [3013] = 3013, + [3014] = 3014, + [3015] = 2396, + [3016] = 2391, + [3017] = 2446, + [3018] = 2920, + [3019] = 3019, + [3020] = 2911, + [3021] = 330, + [3022] = 2420, + [3023] = 332, + [3024] = 2421, + [3025] = 2512, + [3026] = 3002, [3027] = 3027, - [3028] = 2877, - [3029] = 2463, - [3030] = 2956, - [3031] = 2516, - [3032] = 2935, - [3033] = 2877, - [3034] = 2465, - [3035] = 2466, - [3036] = 2468, - [3037] = 2470, - [3038] = 2471, - [3039] = 2514, - [3040] = 2958, - [3041] = 2956, - [3042] = 2777, - [3043] = 3043, - [3044] = 2541, - [3045] = 2619, - [3046] = 2476, - [3047] = 2513, - [3048] = 2484, - [3049] = 2619, - [3050] = 2494, - [3051] = 2673, - [3052] = 2483, - [3053] = 2473, - [3054] = 2877, - [3055] = 2488, - [3056] = 2956, - [3057] = 2479, - [3058] = 2478, - [3059] = 2775, - [3060] = 2464, - [3061] = 2539, - [3062] = 2457, - [3063] = 2376, - [3064] = 2454, - [3065] = 2674, - [3066] = 2568, - [3067] = 2416, - [3068] = 3068, - [3069] = 2628, - [3070] = 3070, - [3071] = 2627, - [3072] = 3072, - [3073] = 2626, - [3074] = 2699, - [3075] = 2625, - [3076] = 2624, - [3077] = 3077, - [3078] = 3078, - [3079] = 3079, - [3080] = 2680, - [3081] = 2553, - [3082] = 3068, - [3083] = 342, - [3084] = 3070, - [3085] = 2705, - [3086] = 2657, - [3087] = 3087, - [3088] = 3088, - [3089] = 3089, - [3090] = 2706, - [3091] = 331, - [3092] = 3092, - [3093] = 3093, - [3094] = 2552, - [3095] = 317, - [3096] = 316, - [3097] = 2491, - [3098] = 2513, - [3099] = 307, - [3100] = 2708, - [3101] = 2493, - [3102] = 338, - [3103] = 2674, - [3104] = 336, - [3105] = 315, - [3106] = 3106, - [3107] = 3078, - [3108] = 305, - [3109] = 2800, - [3110] = 2618, - [3111] = 297, - [3112] = 2617, - [3113] = 2723, - [3114] = 3078, - [3115] = 2707, - [3116] = 3068, + [3028] = 2427, + [3029] = 2952, + [3030] = 3030, + [3031] = 2399, + [3032] = 2249, + [3033] = 2246, + [3034] = 2233, + [3035] = 2430, + [3036] = 2414, + [3037] = 2232, + [3038] = 2561, + [3039] = 2513, + [3040] = 315, + [3041] = 2585, + [3042] = 2450, + [3043] = 2451, + [3044] = 2452, + [3045] = 2454, + [3046] = 2926, + [3047] = 311, + [3048] = 2919, + [3049] = 3049, + [3050] = 2572, + [3051] = 2383, + [3052] = 2315, + [3053] = 2496, + [3054] = 312, + [3055] = 2316, + [3056] = 2317, + [3057] = 2529, + [3058] = 2526, + [3059] = 2522, + [3060] = 2521, + [3061] = 3014, + [3062] = 2515, + [3063] = 337, + [3064] = 3064, + [3065] = 2405, + [3066] = 2319, + [3067] = 2497, + [3068] = 2952, + [3069] = 2501, + [3070] = 2307, + [3071] = 2375, + [3072] = 2449, + [3073] = 2502, + [3074] = 3074, + [3075] = 2508, + [3076] = 2490, + [3077] = 2953, + [3078] = 2952, + [3079] = 2328, + [3080] = 2330, + [3081] = 3081, + [3082] = 3082, + [3083] = 2341, + [3084] = 2952, + [3085] = 2541, + [3086] = 3086, + [3087] = 2545, + [3088] = 2585, + [3089] = 2680, + [3090] = 2248, + [3091] = 2357, + [3092] = 2322, + [3093] = 2241, + [3094] = 2436, + [3095] = 2367, + [3096] = 3096, + [3097] = 2418, + [3098] = 3098, + [3099] = 2309, + [3100] = 2238, + [3101] = 2355, + [3102] = 2388, + [3103] = 2481, + [3104] = 2367, + [3105] = 2480, + [3106] = 2322, + [3107] = 2357, + [3108] = 2341, + [3109] = 2330, + [3110] = 2328, + [3111] = 327, + [3112] = 2389, + [3113] = 2375, + [3114] = 2307, + [3115] = 2319, + [3116] = 2231, [3117] = 3117, - [3118] = 3078, - [3119] = 2710, - [3120] = 3120, - [3121] = 2716, - [3122] = 2717, - [3123] = 3123, - [3124] = 2616, + [3118] = 2458, + [3119] = 2952, + [3120] = 2317, + [3121] = 3086, + [3122] = 2316, + [3123] = 2272, + [3124] = 2311, [3125] = 3125, - [3126] = 3126, + [3126] = 2358, [3127] = 3127, - [3128] = 2718, - [3129] = 3129, - [3130] = 2516, - [3131] = 3131, - [3132] = 2614, - [3133] = 3078, - [3134] = 3070, - [3135] = 311, - [3136] = 2613, - [3137] = 3087, + [3128] = 2356, + [3129] = 2315, + [3130] = 2952, + [3131] = 2232, + [3132] = 2352, + [3133] = 2233, + [3134] = 2246, + [3135] = 2926, + [3136] = 3136, + [3137] = 2952, [3138] = 3138, - [3139] = 2537, - [3140] = 2694, + [3139] = 303, + [3140] = 2560, [3141] = 3141, [3142] = 3142, - [3143] = 2491, - [3144] = 3144, - [3145] = 2493, - [3146] = 2454, - [3147] = 2376, - [3148] = 3093, - [3149] = 2777, - [3150] = 2457, - [3151] = 3078, - [3152] = 3152, - [3153] = 308, - [3154] = 2683, - [3155] = 2454, - [3156] = 2376, - [3157] = 2457, - [3158] = 3158, - [3159] = 2584, - [3160] = 2464, - [3161] = 3161, - [3162] = 3162, - [3163] = 2690, - [3164] = 2580, - [3165] = 3165, - [3166] = 2646, - [3167] = 2464, - [3168] = 3078, - [3169] = 2689, - [3170] = 2578, - [3171] = 2513, + [3143] = 2558, + [3144] = 2355, + [3145] = 3145, + [3146] = 3146, + [3147] = 3147, + [3148] = 2554, + [3149] = 328, + [3150] = 3150, + [3151] = 2350, + [3152] = 2550, + [3153] = 3027, + [3154] = 3014, + [3155] = 3027, + [3156] = 3156, + [3157] = 3027, + [3158] = 3014, + [3159] = 2249, + [3160] = 2548, + [3161] = 3117, + [3162] = 315, + [3163] = 2343, + [3164] = 3027, + [3165] = 3014, + [3166] = 2379, + [3167] = 2531, + [3168] = 2517, + [3169] = 2383, + [3170] = 296, + [3171] = 340, [3172] = 3172, - [3173] = 2688, - [3174] = 3174, - [3175] = 2411, - [3176] = 3176, - [3177] = 3177, - [3178] = 2687, - [3179] = 2544, - [3180] = 3180, - [3181] = 2686, - [3182] = 2480, - [3183] = 308, - [3184] = 2800, - [3185] = 3185, - [3186] = 2619, - [3187] = 2473, - [3188] = 313, - [3189] = 3177, - [3190] = 3190, - [3191] = 3191, - [3192] = 2775, - [3193] = 2472, - [3194] = 2964, - [3195] = 3195, - [3196] = 2494, + [3173] = 2241, + [3174] = 2309, + [3175] = 2465, + [3176] = 2484, + [3177] = 2919, + [3178] = 2926, + [3179] = 3179, + [3180] = 2572, + [3181] = 329, + [3182] = 320, + [3183] = 2379, + [3184] = 3184, + [3185] = 2997, + [3186] = 2383, + [3187] = 2352, + [3188] = 3188, + [3189] = 2238, + [3190] = 2585, + [3191] = 2322, + [3192] = 2413, + [3193] = 2379, + [3194] = 3194, + [3195] = 2570, + [3196] = 3196, [3197] = 3197, - [3198] = 3180, - [3199] = 315, - [3200] = 2685, - [3201] = 3201, + [3198] = 3198, + [3199] = 3199, + [3200] = 3200, + [3201] = 3200, [3202] = 3202, - [3203] = 3177, - [3204] = 3180, - [3205] = 3177, - [3206] = 3180, - [3207] = 2658, - [3208] = 2542, - [3209] = 2659, - [3210] = 2619, - [3211] = 2800, - [3212] = 2411, - [3213] = 2480, - [3214] = 3214, - [3215] = 2964, - [3216] = 311, - [3217] = 2473, - [3218] = 2472, - [3219] = 2471, - [3220] = 2386, - [3221] = 297, - [3222] = 2634, - [3223] = 3070, - [3224] = 3224, - [3225] = 2440, - [3226] = 2438, - [3227] = 2539, - [3228] = 2541, - [3229] = 3070, - [3230] = 3068, - [3231] = 3231, - [3232] = 2471, - [3233] = 2719, - [3234] = 3089, - [3235] = 2461, - [3236] = 2456, - [3237] = 2502, - [3238] = 2496, - [3239] = 3127, - [3240] = 2684, - [3241] = 2639, - [3242] = 2516, - [3243] = 3243, - [3244] = 3088, - [3245] = 2416, - [3246] = 2660, - [3247] = 2665, - [3248] = 2662, + [3203] = 2367, + [3204] = 3204, + [3205] = 2355, + [3206] = 2465, + [3207] = 2231, + [3208] = 3208, + [3209] = 2272, + [3210] = 2309, + [3211] = 3198, + [3212] = 2248, + [3213] = 2241, + [3214] = 2357, + [3215] = 2341, + [3216] = 2624, + [3217] = 2585, + [3218] = 3218, + [3219] = 2370, + [3220] = 3220, + [3221] = 2911, + [3222] = 3200, + [3223] = 3223, + [3224] = 2328, + [3225] = 3225, + [3226] = 2378, + [3227] = 3227, + [3228] = 2311, + [3229] = 2375, + [3230] = 3230, + [3231] = 2330, + [3232] = 3232, + [3233] = 3233, + [3234] = 3200, + [3235] = 2307, + [3236] = 3200, + [3237] = 2585, + [3238] = 3196, + [3239] = 2319, + [3240] = 3197, + [3241] = 2317, + [3242] = 2358, + [3243] = 2356, + [3244] = 3244, + [3245] = 2572, + [3246] = 2350, + [3247] = 3200, + [3248] = 2343, [3249] = 3249, - [3250] = 336, - [3251] = 305, - [3252] = 307, - [3253] = 2382, - [3254] = 2632, - [3255] = 313, - [3256] = 338, - [3257] = 3078, - [3258] = 2638, - [3259] = 2682, - [3260] = 3260, - [3261] = 3261, - [3262] = 3262, - [3263] = 2606, - [3264] = 3190, - [3265] = 2605, - [3266] = 2604, - [3267] = 2666, - [3268] = 2603, - [3269] = 2393, + [3250] = 3250, + [3251] = 3251, + [3252] = 3233, + [3253] = 3253, + [3254] = 2249, + [3255] = 3253, + [3256] = 2246, + [3257] = 3257, + [3258] = 2233, + [3259] = 2232, + [3260] = 2315, + [3261] = 2310, + [3262] = 2570, + [3263] = 3200, + [3264] = 2316, + [3265] = 3265, + [3266] = 3266, + [3267] = 3267, + [3268] = 3268, + [3269] = 3269, [3270] = 3270, - [3271] = 2389, - [3272] = 2386, - [3273] = 2488, - [3274] = 2385, - [3275] = 3177, + [3271] = 2490, + [3272] = 2370, + [3273] = 2465, + [3274] = 3274, + [3275] = 2484, [3276] = 3276, [3277] = 3277, [3278] = 3278, - [3279] = 3078, + [3279] = 3279, [3280] = 3280, - [3281] = 2775, - [3282] = 2440, - [3283] = 2572, - [3284] = 316, - [3285] = 2438, - [3286] = 317, - [3287] = 2387, - [3288] = 2388, - [3289] = 3180, - [3290] = 2390, - [3291] = 3092, - [3292] = 3068, - [3293] = 2630, - [3294] = 3070, - [3295] = 3068, - [3296] = 2667, - [3297] = 2441, - [3298] = 3298, - [3299] = 3070, - [3300] = 2636, - [3301] = 2669, - [3302] = 2517, - [3303] = 2534, - [3304] = 2635, - [3305] = 2441, - [3306] = 2670, - [3307] = 2534, - [3308] = 2517, - [3309] = 2570, - [3310] = 342, - [3311] = 2569, - [3312] = 2629, - [3313] = 2566, - [3314] = 2564, - [3315] = 2393, - [3316] = 2488, + [3281] = 3281, + [3282] = 3282, + [3283] = 3283, + [3284] = 3284, + [3285] = 2370, + [3286] = 2640, + [3287] = 2570, + [3288] = 3288, + [3289] = 3289, + [3290] = 2572, + [3291] = 3291, + [3292] = 2648, + [3293] = 3293, + [3294] = 3294, + [3295] = 3295, + [3296] = 3296, + [3297] = 3297, + [3298] = 2585, + [3299] = 3299, + [3300] = 3300, + [3301] = 2310, + [3302] = 3302, + [3303] = 2413, + [3304] = 3304, + [3305] = 2570, + [3306] = 3306, + [3307] = 3014, + [3308] = 2954, + [3309] = 3027, + [3310] = 3014, + [3311] = 3027, + [3312] = 3014, + [3313] = 3014, + [3314] = 2220, + [3315] = 3315, + [3316] = 3027, [3317] = 3317, - [3318] = 2461, - [3319] = 2633, - [3320] = 2390, - [3321] = 2388, - [3322] = 2387, - [3323] = 2385, - [3324] = 2456, - [3325] = 3325, - [3326] = 2382, - [3327] = 2674, - [3328] = 3068, - [3329] = 2502, - [3330] = 331, - [3331] = 2496, - [3332] = 2775, - [3333] = 2389, - [3334] = 2494, - [3335] = 2411, - [3336] = 2513, + [3318] = 3318, + [3319] = 3027, + [3320] = 3320, + [3321] = 3321, + [3322] = 3322, + [3323] = 2370, + [3324] = 3324, + [3325] = 3014, + [3326] = 2490, + [3327] = 3027, + [3328] = 3328, + [3329] = 3329, + [3330] = 3014, + [3331] = 2465, + [3332] = 3332, + [3333] = 2484, + [3334] = 3027, + [3335] = 3335, + [3336] = 3014, [3337] = 3337, - [3338] = 3338, - [3339] = 3339, + [3338] = 3266, + [3339] = 2370, [3340] = 3340, [3341] = 3341, - [3342] = 3342, + [3342] = 2911, [3343] = 3343, - [3344] = 2819, - [3345] = 2514, - [3346] = 3340, - [3347] = 2775, + [3344] = 3344, + [3345] = 3345, + [3346] = 3346, + [3347] = 3027, [3348] = 3348, [3349] = 3349, - [3350] = 3350, - [3351] = 3338, - [3352] = 3352, + [3350] = 3349, + [3351] = 3349, + [3352] = 3349, [3353] = 3353, - [3354] = 3354, - [3355] = 2674, - [3356] = 3340, - [3357] = 3340, - [3358] = 2516, + [3354] = 3349, + [3355] = 3349, + [3356] = 3349, + [3357] = 3349, + [3358] = 3349, [3359] = 3359, - [3360] = 2964, - [3361] = 3340, - [3362] = 2440, - [3363] = 2438, - [3364] = 3359, - [3365] = 2416, - [3366] = 2393, - [3367] = 2389, - [3368] = 3339, - [3369] = 3340, - [3370] = 2386, + [3360] = 3360, + [3361] = 3361, + [3362] = 3362, + [3363] = 3363, + [3364] = 3364, + [3365] = 3365, + [3366] = 3366, + [3367] = 3367, + [3368] = 3368, + [3369] = 3369, + [3370] = 3370, [3371] = 3371, [3372] = 3372, - [3373] = 2464, + [3373] = 3373, [3374] = 3374, - [3375] = 2480, - [3376] = 2775, - [3377] = 2457, - [3378] = 2673, - [3379] = 2539, - [3380] = 2376, - [3381] = 2488, - [3382] = 2473, - [3383] = 2472, - [3384] = 2454, - [3385] = 2775, - [3386] = 2517, - [3387] = 2471, + [3375] = 3375, + [3376] = 331, + [3377] = 3377, + [3378] = 3378, + [3379] = 342, + [3380] = 3380, + [3381] = 3381, + [3382] = 3382, + [3383] = 3383, + [3384] = 3384, + [3385] = 3385, + [3386] = 3386, + [3387] = 3387, [3388] = 3388, - [3389] = 2534, - [3390] = 2441, + [3389] = 3389, + [3390] = 3390, [3391] = 3391, - [3392] = 3392, - [3393] = 2390, - [3394] = 2388, - [3395] = 3372, - [3396] = 2387, + [3392] = 3268, + [3393] = 305, + [3394] = 3394, + [3395] = 3269, + [3396] = 3396, [3397] = 3397, - [3398] = 2619, - [3399] = 3340, + [3398] = 3398, + [3399] = 3399, [3400] = 3400, - [3401] = 2461, + [3401] = 338, [3402] = 3402, - [3403] = 2491, - [3404] = 2493, - [3405] = 2456, - [3406] = 2385, + [3403] = 305, + [3404] = 3404, + [3405] = 3405, + [3406] = 3406, [3407] = 3407, - [3408] = 2382, - [3409] = 3337, - [3410] = 2673, - [3411] = 3411, - [3412] = 2502, - [3413] = 2496, + [3408] = 3408, + [3409] = 3409, + [3410] = 3410, + [3411] = 338, + [3412] = 3412, + [3413] = 3413, [3414] = 3414, - [3415] = 2725, + [3415] = 3415, [3416] = 3416, [3417] = 3417, [3418] = 3418, - [3419] = 2542, + [3419] = 3419, [3420] = 3420, [3421] = 3421, - [3422] = 3422, - [3423] = 3423, - [3424] = 3424, + [3422] = 3064, + [3423] = 342, + [3424] = 331, [3425] = 3425, - [3426] = 3426, - [3427] = 2541, - [3428] = 3428, - [3429] = 2514, + [3426] = 2990, + [3427] = 3427, + [3428] = 3125, + [3429] = 3429, [3430] = 3430, - [3431] = 2673, - [3432] = 3432, + [3431] = 3431, + [3432] = 3156, [3433] = 3433, - [3434] = 3434, + [3434] = 3196, [3435] = 3435, [3436] = 3436, - [3437] = 2800, - [3438] = 3438, - [3439] = 2673, + [3437] = 3435, + [3438] = 3249, + [3439] = 3197, [3440] = 3440, - [3441] = 3441, - [3442] = 2619, - [3443] = 2516, - [3444] = 3444, - [3445] = 3445, + [3441] = 3204, + [3442] = 3257, + [3443] = 3220, + [3444] = 1907, + [3445] = 3249, [3446] = 3446, - [3447] = 2539, - [3448] = 2775, - [3449] = 2516, - [3450] = 3450, - [3451] = 3451, - [3452] = 3452, - [3453] = 2674, - [3454] = 3454, - [3455] = 3455, - [3456] = 3456, - [3457] = 3180, - [3458] = 3177, - [3459] = 3459, - [3460] = 3180, - [3461] = 3177, - [3462] = 3438, - [3463] = 3177, + [3447] = 3447, + [3448] = 3198, + [3449] = 3225, + [3450] = 3198, + [3451] = 3196, + [3452] = 3233, + [3453] = 3225, + [3454] = 3230, + [3455] = 3244, + [3456] = 3197, + [3457] = 3232, + [3458] = 3447, + [3459] = 3251, + [3460] = 3220, + [3461] = 3257, + [3462] = 3233, + [3463] = 3463, [3464] = 3464, [3465] = 3465, [3466] = 3466, [3467] = 3467, - [3468] = 3117, - [3469] = 3469, - [3470] = 3470, - [3471] = 2541, - [3472] = 2964, - [3473] = 2539, - [3474] = 3180, + [3468] = 3468, + [3469] = 3465, + [3470] = 3464, + [3471] = 3471, + [3472] = 3472, + [3473] = 3473, + [3474] = 3464, [3475] = 3475, - [3476] = 3180, + [3476] = 3475, [3477] = 3477, - [3478] = 3180, - [3479] = 2516, + [3478] = 3472, + [3479] = 3465, [3480] = 3480, - [3481] = 3481, - [3482] = 3482, - [3483] = 2372, - [3484] = 2542, - [3485] = 3177, - [3486] = 3177, - [3487] = 3180, - [3488] = 3488, - [3489] = 3489, - [3490] = 3490, - [3491] = 3177, - [3492] = 2516, - [3493] = 3493, - [3494] = 3177, - [3495] = 3180, - [3496] = 3496, + [3481] = 3467, + [3482] = 3471, + [3483] = 3466, + [3484] = 3472, + [3485] = 3465, + [3486] = 3472, + [3487] = 3466, + [3488] = 3464, + [3489] = 1946, + [3490] = 3475, + [3491] = 3475, + [3492] = 3471, + [3493] = 3467, + [3494] = 3494, + [3495] = 3467, + [3496] = 1935, [3497] = 3497, - [3498] = 3497, - [3499] = 3497, - [3500] = 3497, - [3501] = 3497, - [3502] = 3497, - [3503] = 3497, - [3504] = 3497, - [3505] = 3505, - [3506] = 3497, - [3507] = 3507, + [3498] = 3466, + [3499] = 3475, + [3500] = 3471, + [3501] = 3471, + [3502] = 3467, + [3503] = 3464, + [3504] = 3472, + [3505] = 3464, + [3506] = 3472, + [3507] = 3467, [3508] = 3508, - [3509] = 3509, - [3510] = 3510, - [3511] = 3511, - [3512] = 3512, - [3513] = 302, - [3514] = 299, + [3509] = 3471, + [3510] = 3475, + [3511] = 3465, + [3512] = 3465, + [3513] = 3466, + [3514] = 3466, [3515] = 3515, [3516] = 3516, [3517] = 3517, - [3518] = 301, - [3519] = 327, + [3518] = 3518, + [3519] = 3519, [3520] = 3520, [3521] = 3521, [3522] = 3522, [3523] = 3523, - [3524] = 301, + [3524] = 3524, [3525] = 3525, - [3526] = 327, + [3526] = 3526, [3527] = 3527, [3528] = 3528, [3529] = 3529, [3530] = 3530, [3531] = 3531, - [3532] = 3532, + [3532] = 3265, [3533] = 3533, [3534] = 3534, [3535] = 3535, @@ -8187,955 +8195,955 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3539] = 3539, [3540] = 3540, [3541] = 3541, - [3542] = 3542, - [3543] = 3543, + [3542] = 3536, + [3543] = 2012, [3544] = 3544, - [3545] = 3545, + [3545] = 2007, [3546] = 3546, [3547] = 3547, [3548] = 3548, - [3549] = 3423, - [3550] = 3430, - [3551] = 3551, + [3549] = 3549, + [3550] = 3550, + [3551] = 2015, [3552] = 3552, - [3553] = 3553, + [3553] = 3549, [3554] = 3554, - [3555] = 3555, + [3555] = 3539, [3556] = 3556, - [3557] = 3557, + [3557] = 2014, [3558] = 3558, - [3559] = 3559, + [3559] = 3538, [3560] = 3560, [3561] = 3561, [3562] = 3562, [3563] = 3563, [3564] = 3564, - [3565] = 302, + [3565] = 3552, [3566] = 3566, [3567] = 3567, [3568] = 3568, - [3569] = 3197, + [3569] = 3535, [3570] = 3570, - [3571] = 299, + [3571] = 3571, [3572] = 3572, - [3573] = 3072, + [3573] = 3573, [3574] = 3574, [3575] = 3575, [3576] = 3576, - [3577] = 3317, - [3578] = 3578, - [3579] = 3579, - [3580] = 3298, + [3577] = 3577, + [3578] = 3548, + [3579] = 3550, + [3580] = 3580, [3581] = 3581, [3582] = 3582, - [3583] = 3400, - [3584] = 3350, + [3583] = 3583, + [3584] = 3584, [3585] = 3585, [3586] = 3586, - [3587] = 3339, - [3588] = 3337, - [3589] = 3352, - [3590] = 3372, - [3591] = 3338, - [3592] = 3338, - [3593] = 3352, - [3594] = 3407, - [3595] = 3595, - [3596] = 3341, - [3597] = 3341, - [3598] = 2054, - [3599] = 3411, - [3600] = 3372, - [3601] = 3411, - [3602] = 3337, - [3603] = 3603, - [3604] = 3354, - [3605] = 3595, - [3606] = 3402, - [3607] = 3585, - [3608] = 3339, - [3609] = 3371, - [3610] = 3354, - [3611] = 3611, - [3612] = 3612, - [3613] = 3613, - [3614] = 3614, - [3615] = 3615, - [3616] = 3612, - [3617] = 3617, - [3618] = 3618, - [3619] = 3611, - [3620] = 3620, - [3621] = 3615, - [3622] = 3622, - [3623] = 3615, - [3624] = 3620, - [3625] = 3615, - [3626] = 3626, - [3627] = 3627, - [3628] = 3620, - [3629] = 3612, - [3630] = 3626, - [3631] = 3612, - [3632] = 3614, - [3633] = 3626, - [3634] = 3615, - [3635] = 3635, - [3636] = 3614, - [3637] = 3611, - [3638] = 2090, - [3639] = 3620, - [3640] = 3615, - [3641] = 3612, - [3642] = 3626, - [3643] = 3618, - [3644] = 3620, - [3645] = 3626, - [3646] = 3618, - [3647] = 3626, - [3648] = 3618, - [3649] = 3618, - [3650] = 3614, - [3651] = 3651, - [3652] = 3612, - [3653] = 3653, - [3654] = 3614, - [3655] = 3611, - [3656] = 2075, - [3657] = 3620, - [3658] = 3618, - [3659] = 3611, - [3660] = 3614, - [3661] = 3611, - [3662] = 3662, - [3663] = 3663, - [3664] = 3353, - [3665] = 3665, - [3666] = 3666, - [3667] = 3667, - [3668] = 3668, - [3669] = 3669, - [3670] = 3670, - [3671] = 3671, - [3672] = 3672, - [3673] = 3673, - [3674] = 3674, - [3675] = 3675, - [3676] = 3676, - [3677] = 3677, - [3678] = 3678, - [3679] = 3679, - [3680] = 3680, - [3681] = 3681, - [3682] = 3682, - [3683] = 3683, - [3684] = 3684, - [3685] = 3685, - [3686] = 3686, - [3687] = 3687, - [3688] = 3688, - [3689] = 3689, - [3690] = 3690, + [3587] = 3572, + [3588] = 3584, + [3589] = 3556, + [3590] = 3590, + [3591] = 3591, + [3592] = 3560, + [3593] = 3593, + [3594] = 1966, + [3595] = 1978, + [3596] = 3596, + [3597] = 2012, + [3598] = 2204, + [3599] = 2209, + [3600] = 2207, + [3601] = 2015, + [3602] = 2007, + [3603] = 339, + [3604] = 324, + [3605] = 2264, + [3606] = 2349, + [3607] = 2262, + [3608] = 2206, + [3609] = 2265, + [3610] = 2284, + [3611] = 2266, + [3612] = 2267, + [3613] = 2268, + [3614] = 2285, + [3615] = 2286, + [3616] = 2287, + [3617] = 2327, + [3618] = 2288, + [3619] = 2258, + [3620] = 2257, + [3621] = 2290, + [3622] = 2291, + [3623] = 2294, + [3624] = 2297, + [3625] = 2298, + [3626] = 2260, + [3627] = 2301, + [3628] = 2302, + [3629] = 2344, + [3630] = 2305, + [3631] = 2308, + [3632] = 2360, + [3633] = 2354, + [3634] = 2372, + [3635] = 2306, + [3636] = 2240, + [3637] = 2353, + [3638] = 2237, + [3639] = 2227, + [3640] = 3640, + [3641] = 3640, + [3642] = 3642, + [3643] = 3640, + [3644] = 2210, + [3645] = 3640, + [3646] = 3640, + [3647] = 3642, + [3648] = 2207, + [3649] = 2326, + [3650] = 2364, + [3651] = 2362, + [3652] = 2292, + [3653] = 2304, + [3654] = 2361, + [3655] = 2329, + [3656] = 2250, + [3657] = 2332, + [3658] = 1038, + [3659] = 2334, + [3660] = 324, + [3661] = 2289, + [3662] = 2222, + [3663] = 2347, + [3664] = 2348, + [3665] = 2209, + [3666] = 2324, + [3667] = 1036, + [3668] = 2384, + [3669] = 1037, + [3670] = 2385, + [3671] = 2386, + [3672] = 2204, + [3673] = 1031, + [3674] = 339, + [3675] = 1040, + [3676] = 2214, + [3677] = 2215, + [3678] = 2225, + [3679] = 2212, + [3680] = 2218, + [3681] = 2228, + [3682] = 2308, + [3683] = 2254, + [3684] = 2277, + [3685] = 2273, + [3686] = 2207, + [3687] = 2209, + [3688] = 2282, + [3689] = 2283, + [3690] = 2303, [3691] = 3691, - [3692] = 3692, - [3693] = 3690, - [3694] = 3684, - [3695] = 3688, + [3692] = 2296, + [3693] = 2295, + [3694] = 3694, + [3695] = 3691, [3696] = 3696, - [3697] = 3697, - [3698] = 3692, - [3699] = 3697, - [3700] = 3700, - [3701] = 3701, + [3697] = 3694, + [3698] = 3698, + [3699] = 2281, + [3700] = 3694, + [3701] = 2279, [3702] = 3702, - [3703] = 3703, - [3704] = 3685, - [3705] = 3705, - [3706] = 3706, - [3707] = 3707, - [3708] = 3708, - [3709] = 3709, - [3710] = 3710, - [3711] = 3711, - [3712] = 2152, - [3713] = 3713, - [3714] = 3714, - [3715] = 3715, - [3716] = 3686, - [3717] = 3717, - [3718] = 3718, - [3719] = 3719, - [3720] = 3720, - [3721] = 3721, - [3722] = 3706, - [3723] = 3714, - [3724] = 2141, - [3725] = 3725, - [3726] = 3687, - [3727] = 3727, - [3728] = 2166, - [3729] = 3729, - [3730] = 3730, - [3731] = 3731, - [3732] = 2114, - [3733] = 3708, - [3734] = 3734, - [3735] = 3696, - [3736] = 2161, - [3737] = 2113, - [3738] = 3738, - [3739] = 3739, - [3740] = 3740, - [3741] = 3741, - [3742] = 3742, - [3743] = 3743, - [3744] = 2356, - [3745] = 2357, - [3746] = 2141, - [3747] = 2352, - [3748] = 2161, - [3749] = 2113, - [3750] = 333, - [3751] = 295, - [3752] = 2402, - [3753] = 2410, - [3754] = 2426, - [3755] = 2425, - [3756] = 2445, - [3757] = 2448, - [3758] = 2395, - [3759] = 2424, - [3760] = 2423, - [3761] = 2428, - [3762] = 2422, - [3763] = 2421, - [3764] = 2512, - [3765] = 2420, - [3766] = 2419, - [3767] = 2377, - [3768] = 2427, - [3769] = 2394, - [3770] = 2396, - [3771] = 2398, - [3772] = 2401, - [3773] = 2504, - [3774] = 2405, - [3775] = 2481, - [3776] = 2446, - [3777] = 2378, - [3778] = 2506, - [3779] = 2407, - [3780] = 2404, - [3781] = 2413, - [3782] = 2391, - [3783] = 2379, - [3784] = 2355, - [3785] = 2409, - [3786] = 2406, - [3787] = 3787, - [3788] = 3787, - [3789] = 3787, - [3790] = 3790, - [3791] = 3787, - [3792] = 3790, - [3793] = 3787, - [3794] = 2359, - [3795] = 1005, - [3796] = 333, - [3797] = 2521, - [3798] = 2522, - [3799] = 1009, - [3800] = 2523, - [3801] = 2530, - [3802] = 2531, - [3803] = 2532, - [3804] = 2451, - [3805] = 2528, - [3806] = 2526, - [3807] = 2434, - [3808] = 1007, - [3809] = 2352, - [3810] = 2524, - [3811] = 2356, - [3812] = 295, - [3813] = 2484, - [3814] = 2449, - [3815] = 2435, - [3816] = 2525, - [3817] = 2357, - [3818] = 2443, - [3819] = 1028, - [3820] = 2527, - [3821] = 2360, - [3822] = 992, - [3823] = 2368, - [3824] = 2370, - [3825] = 2358, - [3826] = 2371, - [3827] = 2366, - [3828] = 2428, - [3829] = 2352, - [3830] = 2400, - [3831] = 2355, - [3832] = 3832, - [3833] = 2436, - [3834] = 2474, + [3703] = 3696, + [3704] = 3698, + [3705] = 2261, + [3706] = 3691, + [3707] = 2204, + [3708] = 2280, + [3709] = 3702, + [3710] = 2269, + [3711] = 3702, + [3712] = 3702, + [3713] = 2325, + [3714] = 3702, + [3715] = 3698, + [3716] = 3696, + [3717] = 2253, + [3718] = 2331, + [3719] = 2278, + [3720] = 2335, + [3721] = 3702, + [3722] = 2252, + [3723] = 3696, + [3724] = 3698, + [3725] = 2340, + [3726] = 2342, + [3727] = 2337, + [3728] = 2374, + [3729] = 2263, + [3730] = 2351, + [3731] = 2359, + [3732] = 2363, + [3733] = 3694, + [3734] = 2365, + [3735] = 2369, + [3736] = 2306, + [3737] = 2305, + [3738] = 2302, + [3739] = 2301, + [3740] = 2298, + [3741] = 2297, + [3742] = 2294, + [3743] = 2291, + [3744] = 2290, + [3745] = 2288, + [3746] = 2287, + [3747] = 2286, + [3748] = 2285, + [3749] = 2284, + [3750] = 2244, + [3751] = 3691, + [3752] = 2344, + [3753] = 2259, + [3754] = 2360, + [3755] = 2354, + [3756] = 2372, + [3757] = 2206, + [3758] = 2318, + [3759] = 2321, + [3760] = 3691, + [3761] = 3694, + [3762] = 3698, + [3763] = 2373, + [3764] = 2229, + [3765] = 2380, + [3766] = 3696, + [3767] = 2256, + [3768] = 2255, + [3769] = 2251, + [3770] = 3702, + [3771] = 3702, + [3772] = 2268, + [3773] = 2267, + [3774] = 2266, + [3775] = 2265, + [3776] = 2264, + [3777] = 2262, + [3778] = 2260, + [3779] = 2327, + [3780] = 2258, + [3781] = 2257, + [3782] = 3702, + [3783] = 2336, + [3784] = 2271, + [3785] = 2270, + [3786] = 2276, + [3787] = 2240, + [3788] = 2237, + [3789] = 2227, + [3790] = 2349, + [3791] = 2353, + [3792] = 3792, + [3793] = 3793, + [3794] = 3794, + [3795] = 3795, + [3796] = 3796, + [3797] = 3797, + [3798] = 3798, + [3799] = 3799, + [3800] = 3793, + [3801] = 3801, + [3802] = 3802, + [3803] = 3803, + [3804] = 3793, + [3805] = 3802, + [3806] = 3806, + [3807] = 3807, + [3808] = 3802, + [3809] = 3809, + [3810] = 3810, + [3811] = 3793, + [3812] = 3812, + [3813] = 3813, + [3814] = 3814, + [3815] = 3815, + [3816] = 3801, + [3817] = 3801, + [3818] = 3818, + [3819] = 3819, + [3820] = 3820, + [3821] = 2210, + [3822] = 3802, + [3823] = 3823, + [3824] = 3801, + [3825] = 3825, + [3826] = 3826, + [3827] = 3802, + [3828] = 3828, + [3829] = 3801, + [3830] = 3830, + [3831] = 3831, + [3832] = 3793, + [3833] = 3833, + [3834] = 2258, [3835] = 3835, - [3836] = 2475, - [3837] = 2392, - [3838] = 2455, - [3839] = 2444, - [3840] = 3840, - [3841] = 3841, - [3842] = 3832, - [3843] = 2458, - [3844] = 3835, - [3845] = 3845, - [3846] = 2427, - [3847] = 2426, - [3848] = 2425, - [3849] = 2424, - [3850] = 2423, - [3851] = 2422, - [3852] = 2421, - [3853] = 2420, - [3854] = 2419, - [3855] = 2413, - [3856] = 2391, - [3857] = 2406, - [3858] = 2404, - [3859] = 3841, - [3860] = 3835, - [3861] = 3840, - [3862] = 2429, - [3863] = 3840, - [3864] = 3840, - [3865] = 3832, - [3866] = 2439, - [3867] = 3845, - [3868] = 3841, - [3869] = 3845, - [3870] = 2508, - [3871] = 2415, - [3872] = 2403, - [3873] = 2507, - [3874] = 2375, - [3875] = 2505, - [3876] = 2380, - [3877] = 2450, - [3878] = 3835, - [3879] = 2383, - [3880] = 2503, - [3881] = 2384, - [3882] = 2479, - [3883] = 3832, - [3884] = 2432, - [3885] = 2357, - [3886] = 2356, - [3887] = 2515, - [3888] = 2506, - [3889] = 2481, - [3890] = 2448, - [3891] = 2445, - [3892] = 2504, - [3893] = 2377, - [3894] = 2512, - [3895] = 2446, - [3896] = 2378, - [3897] = 2379, - [3898] = 2452, - [3899] = 2459, - [3900] = 2460, - [3901] = 2463, - [3902] = 2465, - [3903] = 2394, - [3904] = 2395, - [3905] = 2396, - [3906] = 2398, - [3907] = 2401, - [3908] = 2402, - [3909] = 2405, - [3910] = 2407, - [3911] = 2409, - [3912] = 2410, - [3913] = 2466, - [3914] = 2468, - [3915] = 2430, - [3916] = 2470, - [3917] = 2433, - [3918] = 3835, - [3919] = 2431, - [3920] = 2476, - [3921] = 2478, - [3922] = 3845, - [3923] = 3841, - [3924] = 2501, - [3925] = 2414, - [3926] = 2483, - [3927] = 3840, - [3928] = 3835, - [3929] = 2462, - [3930] = 2499, - [3931] = 3832, - [3932] = 3845, - [3933] = 2442, - [3934] = 2498, - [3935] = 3835, - [3936] = 3835, - [3937] = 3841, - [3938] = 3835, - [3939] = 3939, + [3836] = 2329, + [3837] = 3837, + [3838] = 3838, + [3839] = 3839, + [3840] = 2332, + [3841] = 2386, + [3842] = 3842, + [3843] = 2385, + [3844] = 3844, + [3845] = 2384, + [3846] = 2015, + [3847] = 2304, + [3848] = 2289, + [3849] = 3835, + [3850] = 3850, + [3851] = 2268, + [3852] = 2267, + [3853] = 2012, + [3854] = 2266, + [3855] = 2265, + [3856] = 2292, + [3857] = 3833, + [3858] = 2264, + [3859] = 2206, + [3860] = 2262, + [3861] = 3861, + [3862] = 2260, + [3863] = 3863, + [3864] = 2327, + [3865] = 3833, + [3866] = 2348, + [3867] = 2257, + [3868] = 2347, + [3869] = 2284, + [3870] = 2344, + [3871] = 2285, + [3872] = 3872, + [3873] = 2286, + [3874] = 2334, + [3875] = 2287, + [3876] = 2288, + [3877] = 2326, + [3878] = 3850, + [3879] = 2324, + [3880] = 2360, + [3881] = 2354, + [3882] = 2222, + [3883] = 3835, + [3884] = 3835, + [3885] = 2372, + [3886] = 2306, + [3887] = 2290, + [3888] = 2353, + [3889] = 2349, + [3890] = 2227, + [3891] = 2291, + [3892] = 3892, + [3893] = 3820, + [3894] = 2294, + [3895] = 2364, + [3896] = 2362, + [3897] = 2237, + [3898] = 2361, + [3899] = 2007, + [3900] = 3833, + [3901] = 2297, + [3902] = 2308, + [3903] = 2305, + [3904] = 2250, + [3905] = 2240, + [3906] = 2302, + [3907] = 2301, + [3908] = 2298, + [3909] = 3909, + [3910] = 3910, + [3911] = 3911, + [3912] = 3912, + [3913] = 3913, + [3914] = 3914, + [3915] = 3915, + [3916] = 3916, + [3917] = 3917, + [3918] = 3918, + [3919] = 3919, + [3920] = 3920, + [3921] = 3921, + [3922] = 3922, + [3923] = 3923, + [3924] = 3924, + [3925] = 2212, + [3926] = 3921, + [3927] = 3927, + [3928] = 3928, + [3929] = 3921, + [3930] = 3915, + [3931] = 3931, + [3932] = 3932, + [3933] = 3933, + [3934] = 3934, + [3935] = 3935, + [3936] = 3912, + [3937] = 3937, + [3938] = 2218, + [3939] = 3915, [3940] = 3940, - [3941] = 3940, - [3942] = 3942, - [3943] = 3943, - [3944] = 3942, + [3941] = 3941, + [3942] = 2210, + [3943] = 3912, + [3944] = 3944, [3945] = 3945, - [3946] = 3942, - [3947] = 3947, + [3946] = 2215, + [3947] = 3915, [3948] = 3948, [3949] = 3949, - [3950] = 3940, - [3951] = 3951, + [3950] = 3950, + [3951] = 2225, [3952] = 3952, [3953] = 3953, - [3954] = 3954, + [3954] = 3912, [3955] = 3955, - [3956] = 3952, - [3957] = 3952, + [3956] = 3956, + [3957] = 2214, [3958] = 3958, [3959] = 3959, - [3960] = 3942, - [3961] = 3961, - [3962] = 3940, + [3960] = 3960, + [3961] = 3921, + [3962] = 3912, [3963] = 3963, [3964] = 3964, - [3965] = 3965, + [3965] = 3921, [3966] = 3966, - [3967] = 3967, - [3968] = 3942, - [3969] = 3952, - [3970] = 3970, - [3971] = 2359, - [3972] = 3972, - [3973] = 3952, - [3974] = 3974, + [3967] = 2279, + [3968] = 2251, + [3969] = 2256, + [3970] = 2337, + [3971] = 2255, + [3972] = 2283, + [3973] = 2273, + [3974] = 2336, [3975] = 3975, - [3976] = 3976, - [3977] = 3977, - [3978] = 3940, + [3976] = 2277, + [3977] = 1031, + [3978] = 2278, [3979] = 3979, - [3980] = 2420, - [3981] = 2434, - [3982] = 2522, - [3983] = 2521, - [3984] = 2506, - [3985] = 2481, - [3986] = 2448, - [3987] = 3987, - [3988] = 2504, - [3989] = 2377, - [3990] = 2512, - [3991] = 2446, - [3992] = 2378, - [3993] = 2379, - [3994] = 2394, - [3995] = 2395, - [3996] = 2396, - [3997] = 2398, - [3998] = 3998, - [3999] = 2401, - [4000] = 2402, - [4001] = 2141, - [4002] = 2527, - [4003] = 2405, - [4004] = 2407, - [4005] = 2409, - [4006] = 2410, - [4007] = 2445, - [4008] = 4008, - [4009] = 2526, - [4010] = 4008, - [4011] = 2525, - [4012] = 4012, - [4013] = 2524, - [4014] = 3970, - [4015] = 4015, - [4016] = 2113, - [4017] = 4017, - [4018] = 2360, - [4019] = 2523, - [4020] = 4012, - [4021] = 2435, - [4022] = 2443, - [4023] = 2449, - [4024] = 2451, - [4025] = 2406, - [4026] = 4026, - [4027] = 2532, - [4028] = 2531, - [4029] = 2419, - [4030] = 4012, - [4031] = 4031, - [4032] = 2530, - [4033] = 2413, + [3980] = 3980, + [3981] = 2250, + [3982] = 2280, + [3983] = 2012, + [3984] = 1038, + [3985] = 2229, + [3986] = 2282, + [3987] = 2222, + [3988] = 2369, + [3989] = 2244, + [3990] = 2365, + [3991] = 2259, + [3992] = 2318, + [3993] = 2321, + [3994] = 2270, + [3995] = 2271, + [3996] = 2373, + [3997] = 2228, + [3998] = 1040, + [3999] = 2380, + [4000] = 2363, + [4001] = 2334, + [4002] = 2348, + [4003] = 4003, + [4004] = 2347, + [4005] = 2359, + [4006] = 2252, + [4007] = 2326, + [4008] = 2007, + [4009] = 2324, + [4010] = 2351, + [4011] = 1037, + [4012] = 2253, + [4013] = 2254, + [4014] = 2261, + [4015] = 2263, + [4016] = 2269, + [4017] = 1036, + [4018] = 2374, + [4019] = 2281, + [4020] = 2295, + [4021] = 2296, + [4022] = 2276, + [4023] = 2303, + [4024] = 2342, + [4025] = 2325, + [4026] = 2331, + [4027] = 2015, + [4028] = 2335, + [4029] = 2340, + [4030] = 4030, + [4031] = 3820, + [4032] = 4032, + [4033] = 2218, [4034] = 4034, - [4035] = 2428, - [4036] = 2427, - [4037] = 4008, - [4038] = 2426, - [4039] = 2425, - [4040] = 2424, - [4041] = 2391, - [4042] = 4042, - [4043] = 2355, - [4044] = 2423, - [4045] = 2484, - [4046] = 2422, - [4047] = 2161, - [4048] = 4008, + [4035] = 4035, + [4036] = 4036, + [4037] = 4037, + [4038] = 4032, + [4039] = 4039, + [4040] = 4040, + [4041] = 4041, + [4042] = 4037, + [4043] = 4043, + [4044] = 2225, + [4045] = 4037, + [4046] = 4034, + [4047] = 4047, + [4048] = 4048, [4049] = 4049, - [4050] = 4050, - [4051] = 2528, - [4052] = 2421, - [4053] = 4053, - [4054] = 4049, - [4055] = 4012, - [4056] = 2404, - [4057] = 4057, + [4050] = 2212, + [4051] = 4051, + [4052] = 4032, + [4053] = 2214, + [4054] = 4034, + [4055] = 4055, + [4056] = 4032, + [4057] = 4037, [4058] = 4058, - [4059] = 4059, - [4060] = 4058, - [4061] = 4061, - [4062] = 4062, - [4063] = 4063, + [4059] = 4049, + [4060] = 4032, + [4061] = 4036, + [4062] = 4032, + [4063] = 4034, [4064] = 4064, - [4065] = 4065, - [4066] = 4066, - [4067] = 4067, + [4065] = 4034, + [4066] = 4034, + [4067] = 2215, [4068] = 4068, - [4069] = 4069, + [4069] = 2280, [4070] = 4070, - [4071] = 4058, - [4072] = 4058, + [4071] = 4071, + [4072] = 4072, [4073] = 4073, - [4074] = 4073, + [4074] = 3921, [4075] = 4075, [4076] = 4076, [4077] = 4077, - [4078] = 4078, - [4079] = 2368, + [4078] = 2276, + [4079] = 4079, [4080] = 4080, [4081] = 4081, [4082] = 4082, - [4083] = 4067, + [4083] = 4083, [4084] = 4084, [4085] = 4085, - [4086] = 2366, - [4087] = 4087, + [4086] = 4086, + [4087] = 4083, [4088] = 4088, - [4089] = 2371, - [4090] = 2370, - [4091] = 4073, + [4089] = 4084, + [4090] = 4090, + [4091] = 324, [4092] = 4092, - [4093] = 4093, + [4093] = 2303, [4094] = 4094, - [4095] = 4095, - [4096] = 2358, - [4097] = 4097, - [4098] = 4098, - [4099] = 4058, - [4100] = 4100, - [4101] = 2359, - [4102] = 4102, - [4103] = 4103, - [4104] = 4104, - [4105] = 4105, - [4106] = 4067, - [4107] = 4067, + [4095] = 2369, + [4096] = 4096, + [4097] = 2365, + [4098] = 4096, + [4099] = 2363, + [4100] = 2229, + [4101] = 4101, + [4102] = 4088, + [4103] = 2359, + [4104] = 4073, + [4105] = 2351, + [4106] = 4086, + [4107] = 4088, [4108] = 4108, [4109] = 4109, - [4110] = 4067, - [4111] = 4073, - [4112] = 4112, - [4113] = 4113, - [4114] = 2430, - [4115] = 2400, - [4116] = 2466, + [4110] = 339, + [4111] = 4111, + [4112] = 2374, + [4113] = 2342, + [4114] = 4114, + [4115] = 2361, + [4116] = 4073, [4117] = 4117, - [4118] = 1007, - [4119] = 2392, - [4120] = 2508, - [4121] = 2455, - [4122] = 2515, - [4123] = 2458, - [4124] = 2468, - [4125] = 2470, - [4126] = 2507, - [4127] = 2403, - [4128] = 2474, - [4129] = 2383, - [4130] = 2384, - [4131] = 2161, - [4132] = 2465, - [4133] = 2476, - [4134] = 2414, - [4135] = 2478, - [4136] = 2415, - [4137] = 2479, - [4138] = 2475, - [4139] = 2460, - [4140] = 2483, - [4141] = 2459, - [4142] = 2505, - [4143] = 2452, - [4144] = 1005, - [4145] = 2380, - [4146] = 2443, - [4147] = 2503, - [4148] = 2449, - [4149] = 2451, - [4150] = 2501, - [4151] = 4151, - [4152] = 2499, - [4153] = 2498, - [4154] = 2462, - [4155] = 2463, - [4156] = 1009, - [4157] = 2484, + [4118] = 2340, + [4119] = 4119, + [4120] = 4096, + [4121] = 4121, + [4122] = 4122, + [4123] = 4123, + [4124] = 2335, + [4125] = 4125, + [4126] = 4126, + [4127] = 4127, + [4128] = 1038, + [4129] = 2331, + [4130] = 4096, + [4131] = 4131, + [4132] = 4088, + [4133] = 2325, + [4134] = 4134, + [4135] = 1037, + [4136] = 4073, + [4137] = 4137, + [4138] = 1036, + [4139] = 4086, + [4140] = 4035, + [4141] = 4086, + [4142] = 4127, + [4143] = 4143, + [4144] = 4144, + [4145] = 4108, + [4146] = 4146, + [4147] = 4147, + [4148] = 4111, + [4149] = 4149, + [4150] = 4039, + [4151] = 4114, + [4152] = 4070, + [4153] = 4153, + [4154] = 4119, + [4155] = 4121, + [4156] = 4144, + [4157] = 2270, [4158] = 4158, - [4159] = 992, - [4160] = 2113, - [4161] = 1028, - [4162] = 2141, - [4163] = 2429, - [4164] = 2434, - [4165] = 2431, + [4159] = 4159, + [4160] = 4160, + [4161] = 4161, + [4162] = 2271, + [4163] = 4127, + [4164] = 4164, + [4165] = 4108, [4166] = 4166, - [4167] = 2435, - [4168] = 2432, - [4169] = 2433, - [4170] = 2360, - [4171] = 2450, - [4172] = 2444, - [4173] = 2436, - [4174] = 2442, - [4175] = 2375, - [4176] = 2439, - [4177] = 3970, + [4167] = 4096, + [4168] = 4168, + [4169] = 4088, + [4170] = 4170, + [4171] = 4171, + [4172] = 4172, + [4173] = 4084, + [4174] = 4083, + [4175] = 4073, + [4176] = 4176, + [4177] = 4086, [4178] = 4178, - [4179] = 4179, - [4180] = 2358, - [4181] = 4181, - [4182] = 4182, - [4183] = 4183, - [4184] = 4182, - [4185] = 4185, - [4186] = 4186, - [4187] = 4183, - [4188] = 4188, + [4179] = 4127, + [4180] = 2362, + [4181] = 4108, + [4182] = 4166, + [4183] = 4168, + [4184] = 4171, + [4185] = 4172, + [4186] = 4176, + [4187] = 1031, + [4188] = 4178, [4189] = 4189, - [4190] = 4182, + [4190] = 4190, [4191] = 4191, - [4192] = 2371, - [4193] = 4193, + [4192] = 1040, + [4193] = 4146, [4194] = 4194, - [4195] = 4195, + [4195] = 4111, [4196] = 4196, - [4197] = 2370, - [4198] = 2368, - [4199] = 4178, - [4200] = 4200, - [4201] = 4178, - [4202] = 4182, - [4203] = 4186, - [4204] = 4183, - [4205] = 4182, - [4206] = 4182, - [4207] = 4183, - [4208] = 4183, - [4209] = 4209, + [4197] = 4197, + [4198] = 4198, + [4199] = 2283, + [4200] = 2282, + [4201] = 4201, + [4202] = 4202, + [4203] = 4203, + [4204] = 4153, + [4205] = 2278, + [4206] = 4114, + [4207] = 4207, + [4208] = 2277, + [4209] = 2273, [4210] = 4210, - [4211] = 2366, - [4212] = 4188, - [4213] = 4183, - [4214] = 4178, + [4211] = 4108, + [4212] = 4123, + [4213] = 3921, + [4214] = 4166, [4215] = 4215, [4216] = 4216, - [4217] = 4217, - [4218] = 2462, - [4219] = 2384, - [4220] = 2383, + [4217] = 3921, + [4218] = 4218, + [4219] = 4219, + [4220] = 4220, [4221] = 4221, - [4222] = 1009, - [4223] = 4223, - [4224] = 2380, + [4222] = 4168, + [4223] = 4114, + [4224] = 4224, [4225] = 4225, [4226] = 4226, - [4227] = 4227, - [4228] = 4225, - [4229] = 4058, - [4230] = 4230, - [4231] = 4231, - [4232] = 4232, + [4227] = 4171, + [4228] = 2296, + [4229] = 2295, + [4230] = 3921, + [4231] = 2281, + [4232] = 2279, [4233] = 4233, - [4234] = 4234, - [4235] = 4232, - [4236] = 4226, - [4237] = 1007, - [4238] = 4058, - [4239] = 2458, - [4240] = 2515, - [4241] = 2455, - [4242] = 2392, - [4243] = 2414, - [4244] = 2400, - [4245] = 2403, - [4246] = 2415, - [4247] = 4247, - [4248] = 4248, - [4249] = 4216, - [4250] = 4250, - [4251] = 4194, - [4252] = 4252, - [4253] = 992, - [4254] = 4254, - [4255] = 4255, - [4256] = 4193, - [4257] = 4257, - [4258] = 4258, - [4259] = 4259, - [4260] = 4260, - [4261] = 4261, - [4262] = 295, - [4263] = 4263, - [4264] = 4264, - [4265] = 4225, - [4266] = 4200, - [4267] = 4267, - [4268] = 4268, - [4269] = 4269, - [4270] = 4226, - [4271] = 4267, - [4272] = 2429, - [4273] = 2430, - [4274] = 2431, - [4275] = 4258, - [4276] = 2521, - [4277] = 2522, - [4278] = 2432, - [4279] = 2433, - [4280] = 2523, - [4281] = 4258, + [4234] = 4111, + [4235] = 2384, + [4236] = 4236, + [4237] = 2269, + [4238] = 4096, + [4239] = 4051, + [4240] = 2263, + [4241] = 2261, + [4242] = 4088, + [4243] = 2385, + [4244] = 2254, + [4245] = 4084, + [4246] = 4083, + [4247] = 2253, + [4248] = 4073, + [4249] = 2252, + [4250] = 4086, + [4251] = 4127, + [4252] = 2386, + [4253] = 2380, + [4254] = 4108, + [4255] = 4055, + [4256] = 2332, + [4257] = 4166, + [4258] = 4168, + [4259] = 4171, + [4260] = 4172, + [4261] = 4176, + [4262] = 4178, + [4263] = 2329, + [4264] = 3921, + [4265] = 4203, + [4266] = 2256, + [4267] = 2255, + [4268] = 4111, + [4269] = 3921, + [4270] = 4203, + [4271] = 2251, + [4272] = 4114, + [4273] = 4203, + [4274] = 2304, + [4275] = 2292, + [4276] = 4114, + [4277] = 2228, + [4278] = 2289, + [4279] = 2373, + [4280] = 2364, + [4281] = 4172, [4282] = 4282, [4283] = 4283, - [4284] = 4225, + [4284] = 2321, [4285] = 4285, - [4286] = 4286, - [4287] = 2436, - [4288] = 2439, - [4289] = 2375, - [4290] = 2442, - [4291] = 4291, - [4292] = 2444, - [4293] = 2450, - [4294] = 4294, - [4295] = 4285, + [4286] = 2318, + [4287] = 4111, + [4288] = 4288, + [4289] = 4289, + [4290] = 4207, + [4291] = 3921, + [4292] = 4101, + [4293] = 2336, + [4294] = 2337, + [4295] = 4295, [4296] = 4296, - [4297] = 4297, - [4298] = 4298, - [4299] = 333, - [4300] = 4267, + [4297] = 2244, + [4298] = 2259, + [4299] = 4178, + [4300] = 4176, [4301] = 4301, [4302] = 4302, [4303] = 4303, - [4304] = 4226, + [4304] = 4304, [4305] = 4305, [4306] = 4306, [4307] = 4307, - [4308] = 4231, - [4309] = 4309, - [4310] = 4267, - [4311] = 4247, + [4308] = 4308, + [4309] = 4035, + [4310] = 4039, + [4311] = 4311, [4312] = 4312, [4313] = 4313, - [4314] = 4232, - [4315] = 4248, - [4316] = 4216, - [4317] = 4225, - [4318] = 4258, - [4319] = 4254, - [4320] = 4303, - [4321] = 4255, + [4314] = 4302, + [4315] = 4302, + [4316] = 4316, + [4317] = 4302, + [4318] = 4318, + [4319] = 4319, + [4320] = 4320, + [4321] = 4311, [4322] = 4322, - [4323] = 4291, - [4324] = 4257, + [4323] = 4302, + [4324] = 4320, [4325] = 4325, - [4326] = 4303, - [4327] = 4303, - [4328] = 4264, - [4329] = 4303, - [4330] = 4248, - [4331] = 2459, - [4332] = 2460, - [4333] = 2463, - [4334] = 2465, - [4335] = 4335, - [4336] = 4336, - [4337] = 4337, - [4338] = 4338, - [4339] = 2468, - [4340] = 2524, - [4341] = 4257, - [4342] = 4264, - [4343] = 2470, - [4344] = 2476, - [4345] = 4058, - [4346] = 2478, - [4347] = 4312, + [4326] = 4311, + [4327] = 4311, + [4328] = 4311, + [4329] = 292, + [4330] = 293, + [4331] = 4331, + [4332] = 4332, + [4333] = 4333, + [4334] = 4311, + [4335] = 4311, + [4336] = 4311, + [4337] = 4332, + [4338] = 4331, + [4339] = 4302, + [4340] = 4340, + [4341] = 4341, + [4342] = 4342, + [4343] = 4343, + [4344] = 4344, + [4345] = 4345, + [4346] = 4346, + [4347] = 4347, [4348] = 4348, - [4349] = 2479, - [4350] = 2483, + [4349] = 4349, + [4350] = 4350, [4351] = 4351, - [4352] = 4247, + [4352] = 4352, [4353] = 4353, - [4354] = 4285, - [4355] = 4226, - [4356] = 2525, - [4357] = 4247, - [4358] = 4231, - [4359] = 2526, - [4360] = 4231, - [4361] = 2527, - [4362] = 4312, - [4363] = 2528, - [4364] = 4216, - [4365] = 4058, + [4354] = 4354, + [4355] = 4355, + [4356] = 4356, + [4357] = 4357, + [4358] = 4358, + [4359] = 4359, + [4360] = 4360, + [4361] = 4361, + [4362] = 4362, + [4363] = 4363, + [4364] = 4364, + [4365] = 4365, [4366] = 4366, - [4367] = 4254, - [4368] = 4226, - [4369] = 4259, - [4370] = 4225, + [4367] = 305, + [4368] = 4368, + [4369] = 4369, + [4370] = 4370, [4371] = 4371, [4372] = 4372, - [4373] = 4264, - [4374] = 4257, + [4373] = 4373, + [4374] = 4374, [4375] = 4375, [4376] = 4376, - [4377] = 1005, + [4377] = 4377, [4378] = 4378, - [4379] = 4375, - [4380] = 4223, - [4381] = 4309, - [4382] = 2466, - [4383] = 4383, - [4384] = 2452, - [4385] = 4385, - [4386] = 4255, + [4379] = 4379, + [4380] = 4380, + [4381] = 4381, + [4382] = 4381, + [4383] = 4380, + [4384] = 4384, + [4385] = 4372, + [4386] = 4386, [4387] = 4387, - [4388] = 4388, - [4389] = 4389, - [4390] = 4058, - [4391] = 4258, - [4392] = 4231, + [4388] = 4370, + [4389] = 4288, + [4390] = 4347, + [4391] = 4391, + [4392] = 4344, [4393] = 4393, - [4394] = 4394, - [4395] = 1028, - [4396] = 4396, - [4397] = 4231, - [4398] = 4398, - [4399] = 4258, - [4400] = 4179, + [4394] = 4341, + [4395] = 4395, + [4396] = 4351, + [4397] = 4215, + [4398] = 305, + [4399] = 4363, + [4400] = 4400, [4401] = 4401, [4402] = 4402, - [4403] = 4232, - [4404] = 4247, + [4403] = 4403, + [4404] = 4404, [4405] = 4405, - [4406] = 4267, - [4407] = 4247, - [4408] = 4408, - [4409] = 4409, + [4406] = 4406, + [4407] = 4407, + [4408] = 4197, + [4409] = 4381, [4410] = 4410, - [4411] = 4411, - [4412] = 4248, - [4413] = 4058, - [4414] = 4058, - [4415] = 4415, - [4416] = 4254, - [4417] = 4255, - [4418] = 4418, - [4419] = 4291, - [4420] = 4303, - [4421] = 4421, - [4422] = 4411, - [4423] = 4294, - [4424] = 2498, - [4425] = 2499, - [4426] = 4312, - [4427] = 2501, + [4411] = 4380, + [4412] = 4372, + [4413] = 4370, + [4414] = 4414, + [4415] = 4347, + [4416] = 4416, + [4417] = 4417, + [4418] = 4344, + [4419] = 335, + [4420] = 4341, + [4421] = 4351, + [4422] = 4363, + [4423] = 4423, + [4424] = 331, + [4425] = 4425, + [4426] = 342, + [4427] = 4427, [4428] = 4428, - [4429] = 2503, - [4430] = 4312, - [4431] = 2505, - [4432] = 4291, - [4433] = 4376, - [4434] = 4388, + [4429] = 4429, + [4430] = 4430, + [4431] = 338, + [4432] = 4432, + [4433] = 4433, + [4434] = 4363, [4435] = 4435, [4436] = 4436, - [4437] = 2507, - [4438] = 2508, - [4439] = 4394, - [4440] = 2532, - [4441] = 4285, - [4442] = 2531, - [4443] = 2530, - [4444] = 4267, - [4445] = 2474, - [4446] = 2475, + [4437] = 333, + [4438] = 4134, + [4439] = 4439, + [4440] = 4440, + [4441] = 4131, + [4442] = 4381, + [4443] = 4443, + [4444] = 4444, + [4445] = 4380, + [4446] = 4446, [4447] = 4447, - [4448] = 4194, - [4449] = 4193, + [4448] = 4372, + [4449] = 4449, [4450] = 4450, - [4451] = 4451, - [4452] = 4452, + [4451] = 4370, + [4452] = 4347, [4453] = 4453, - [4454] = 4454, + [4454] = 4079, [4455] = 4455, - [4456] = 4451, + [4456] = 4344, [4457] = 4457, - [4458] = 4458, - [4459] = 4457, + [4458] = 4341, + [4459] = 4351, [4460] = 4460, - [4461] = 4461, - [4462] = 4461, - [4463] = 4451, - [4464] = 4458, + [4461] = 4363, + [4462] = 4462, + [4463] = 4463, + [4464] = 4381, [4465] = 4465, - [4466] = 4461, - [4467] = 291, + [4466] = 4380, + [4467] = 4372, [4468] = 4468, - [4469] = 4451, - [4470] = 4470, - [4471] = 4471, - [4472] = 4472, + [4469] = 4347, + [4470] = 4344, + [4471] = 4341, + [4472] = 4351, [4473] = 4473, - [4474] = 4460, - [4475] = 4461, - [4476] = 4451, - [4477] = 4477, - [4478] = 4478, + [4474] = 4474, + [4475] = 4363, + [4476] = 4344, + [4477] = 4352, + [4478] = 3979, [4479] = 4479, - [4480] = 4451, - [4481] = 4461, - [4482] = 4482, - [4483] = 292, - [4484] = 4461, - [4485] = 4461, - [4486] = 4461, + [4480] = 4480, + [4481] = 4351, + [4482] = 4341, + [4483] = 4483, + [4484] = 4484, + [4485] = 4485, + [4486] = 4486, [4487] = 4487, [4488] = 4488, [4489] = 4489, - [4490] = 4490, + [4490] = 4485, [4491] = 4491, [4492] = 4492, [4493] = 4493, @@ -9145,53 +9153,53 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4497] = 4497, [4498] = 4498, [4499] = 4499, - [4500] = 4500, - [4501] = 327, - [4502] = 4338, - [4503] = 4503, + [4500] = 291, + [4501] = 4501, + [4502] = 4502, + [4503] = 4346, [4504] = 4504, - [4505] = 4505, - [4506] = 4506, - [4507] = 4507, - [4508] = 4508, + [4505] = 4347, + [4506] = 4348, + [4507] = 4322, + [4508] = 4489, [4509] = 4509, - [4510] = 4510, - [4511] = 4261, - [4512] = 4512, - [4513] = 4513, - [4514] = 4492, + [4510] = 310, + [4511] = 4511, + [4512] = 333, + [4513] = 335, + [4514] = 4514, [4515] = 4515, - [4516] = 4515, + [4516] = 4516, [4517] = 4517, - [4518] = 4518, + [4518] = 4485, [4519] = 4519, - [4520] = 4520, - [4521] = 4521, + [4520] = 4370, + [4521] = 4372, [4522] = 4522, [4523] = 4523, [4524] = 4524, [4525] = 4525, [4526] = 4526, [4527] = 4527, - [4528] = 4528, + [4528] = 4489, [4529] = 4529, [4530] = 4530, - [4531] = 4531, + [4531] = 314, [4532] = 4532, - [4533] = 4533, + [4533] = 4485, [4534] = 4534, [4535] = 4535, - [4536] = 4536, - [4537] = 4537, - [4538] = 4538, - [4539] = 310, - [4540] = 4540, + [4536] = 4501, + [4537] = 4489, + [4538] = 4489, + [4539] = 4064, + [4540] = 4489, [4541] = 4541, [4542] = 4542, [4543] = 4543, [4544] = 4544, - [4545] = 4545, - [4546] = 4523, + [4545] = 4485, + [4546] = 4546, [4547] = 4547, [4548] = 4548, [4549] = 4549, @@ -9200,1239 +9208,1239 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [4552] = 4552, [4553] = 4553, [4554] = 4554, - [4555] = 4531, - [4556] = 4508, + [4555] = 4555, + [4556] = 4556, [4557] = 4557, - [4558] = 340, + [4558] = 4558, [4559] = 4559, [4560] = 4560, [4561] = 4561, - [4562] = 4513, - [4563] = 4398, - [4564] = 4515, - [4565] = 4515, - [4566] = 4566, - [4567] = 4553, + [4562] = 4379, + [4563] = 4563, + [4564] = 4380, + [4565] = 4381, + [4566] = 1907, + [4567] = 4567, [4568] = 4568, - [4569] = 4552, - [4570] = 4570, + [4569] = 4559, + [4570] = 4395, [4571] = 4571, [4572] = 4572, - [4573] = 4573, + [4573] = 4554, [4574] = 4574, [4575] = 4575, [4576] = 4576, - [4577] = 4531, - [4578] = 4523, - [4579] = 4579, + [4577] = 4577, + [4578] = 4578, + [4579] = 4492, [4580] = 4580, - [4581] = 4581, - [4582] = 4582, + [4581] = 338, + [4582] = 3980, [4583] = 4583, - [4584] = 4584, - [4585] = 4585, - [4586] = 4586, - [4587] = 4552, - [4588] = 4522, - [4589] = 4519, - [4590] = 4590, - [4591] = 4591, - [4592] = 4113, + [4584] = 4485, + [4585] = 4549, + [4586] = 4559, + [4587] = 4549, + [4588] = 4588, + [4589] = 4559, + [4590] = 4549, + [4591] = 4549, + [4592] = 4592, [4593] = 4593, [4594] = 4594, - [4595] = 4595, + [4595] = 4070, [4596] = 4596, - [4597] = 4499, - [4598] = 4541, - [4599] = 4411, - [4600] = 296, - [4601] = 4601, - [4602] = 4497, + [4597] = 4597, + [4598] = 4598, + [4599] = 4153, + [4600] = 4119, + [4601] = 4121, + [4602] = 4602, [4603] = 4603, [4604] = 4604, - [4605] = 4492, - [4606] = 4606, - [4607] = 4519, - [4608] = 4608, - [4609] = 4609, - [4610] = 4294, + [4605] = 4605, + [4606] = 4144, + [4607] = 4146, + [4608] = 4559, + [4609] = 4549, + [4610] = 4610, [4611] = 4611, - [4612] = 4515, + [4612] = 4559, [4613] = 4613, - [4614] = 4375, - [4615] = 4522, - [4616] = 4531, - [4617] = 4530, - [4618] = 4499, - [4619] = 4619, - [4620] = 4550, - [4621] = 4376, + [4614] = 4557, + [4615] = 4615, + [4616] = 4616, + [4617] = 4615, + [4618] = 4618, + [4619] = 4613, + [4620] = 4615, + [4621] = 4621, [4622] = 4622, - [4623] = 4623, - [4624] = 4553, - [4625] = 4513, - [4626] = 4492, + [4623] = 4615, + [4624] = 867, + [4625] = 4615, + [4626] = 4626, [4627] = 4627, [4628] = 4628, - [4629] = 4531, - [4630] = 4388, + [4629] = 4629, + [4630] = 4630, [4631] = 4631, [4632] = 4632, - [4633] = 4513, - [4634] = 4634, - [4635] = 4553, - [4636] = 4394, - [4637] = 4637, - [4638] = 4507, - [4639] = 4593, - [4640] = 2054, - [4641] = 4552, - [4642] = 322, - [4643] = 296, - [4644] = 4230, - [4645] = 4250, - [4646] = 4522, - [4647] = 4507, - [4648] = 4648, - [4649] = 4649, - [4650] = 4650, - [4651] = 4507, - [4652] = 4652, + [4633] = 4633, + [4634] = 342, + [4635] = 4635, + [4636] = 4613, + [4637] = 4626, + [4638] = 4567, + [4639] = 4627, + [4640] = 2388, + [4641] = 4641, + [4642] = 4642, + [4643] = 4516, + [4644] = 4644, + [4645] = 2481, + [4646] = 4561, + [4647] = 4647, + [4648] = 4515, + [4649] = 4647, + [4650] = 4644, + [4651] = 4651, + [4652] = 4514, [4653] = 4653, - [4654] = 4492, - [4655] = 4655, - [4656] = 4492, - [4657] = 4541, - [4658] = 4499, + [4654] = 4509, + [4655] = 4635, + [4656] = 4626, + [4657] = 4529, + [4658] = 4530, [4659] = 4659, - [4660] = 4660, - [4661] = 4497, + [4660] = 4627, + [4661] = 2421, [4662] = 4662, - [4663] = 4663, - [4664] = 4664, - [4665] = 4513, - [4666] = 4499, - [4667] = 4283, - [4668] = 4668, - [4669] = 4669, - [4670] = 4670, - [4671] = 301, - [4672] = 4507, + [4663] = 4616, + [4664] = 2420, + [4665] = 4332, + [4666] = 4331, + [4667] = 4532, + [4668] = 2424, + [4669] = 4534, + [4670] = 4621, + [4671] = 4622, + [4672] = 4635, [4673] = 4673, - [4674] = 4674, + [4674] = 4626, [4675] = 4675, - [4676] = 4676, - [4677] = 4677, - [4678] = 4678, - [4679] = 4679, - [4680] = 4680, - [4681] = 322, - [4682] = 4523, - [4683] = 4541, + [4676] = 4627, + [4677] = 2425, + [4678] = 4629, + [4679] = 4630, + [4680] = 4632, + [4681] = 4633, + [4682] = 4560, + [4683] = 4055, [4684] = 4684, - [4685] = 4685, - [4686] = 4497, - [4687] = 4687, - [4688] = 4541, - [4689] = 4689, + [4685] = 4644, + [4686] = 4686, + [4687] = 2435, + [4688] = 4613, + [4689] = 2438, [4690] = 4690, - [4691] = 4523, - [4692] = 290, - [4693] = 4693, - [4694] = 4477, + [4691] = 331, + [4692] = 4692, + [4693] = 4647, + [4694] = 4694, [4695] = 4695, - [4696] = 4696, - [4697] = 4697, - [4698] = 4698, - [4699] = 4522, - [4700] = 4700, - [4701] = 4701, - [4702] = 4181, - [4703] = 4703, - [4704] = 4519, + [4696] = 4662, + [4697] = 4644, + [4698] = 2441, + [4699] = 4647, + [4700] = 4613, + [4701] = 4651, + [4702] = 4702, + [4703] = 4616, + [4704] = 4704, [4705] = 4705, - [4706] = 4706, - [4707] = 4509, - [4708] = 4708, - [4709] = 299, - [4710] = 4710, - [4711] = 301, - [4712] = 4712, - [4713] = 4713, - [4714] = 4714, + [4706] = 4488, + [4707] = 4621, + [4708] = 4622, + [4709] = 4633, + [4710] = 4580, + [4711] = 4711, + [4712] = 4633, + [4713] = 4632, + [4714] = 4322, [4715] = 4715, - [4716] = 4716, - [4717] = 4560, - [4718] = 4718, - [4719] = 4552, - [4720] = 4523, - [4721] = 327, - [4722] = 4513, - [4723] = 4723, - [4724] = 4724, - [4725] = 4725, - [4726] = 4519, - [4727] = 4522, - [4728] = 4728, - [4729] = 4515, - [4730] = 4730, - [4731] = 4507, - [4732] = 4732, - [4733] = 4553, + [4716] = 4629, + [4717] = 2550, + [4718] = 4630, + [4719] = 4632, + [4720] = 4720, + [4721] = 2554, + [4722] = 4632, + [4723] = 2405, + [4724] = 4633, + [4725] = 4613, + [4726] = 4726, + [4727] = 4644, + [4728] = 2399, + [4729] = 4487, + [4730] = 4647, + [4731] = 4715, + [4732] = 4627, + [4733] = 4486, [4734] = 4734, - [4735] = 4735, - [4736] = 4552, - [4737] = 4553, - [4738] = 4738, - [4739] = 4739, - [4740] = 4151, - [4741] = 4541, - [4742] = 4742, - [4743] = 4743, - [4744] = 4497, - [4745] = 4745, - [4746] = 4497, - [4747] = 4747, - [4748] = 4748, - [4749] = 4749, - [4750] = 4750, + [4735] = 4630, + [4736] = 4736, + [4737] = 4629, + [4738] = 4621, + [4739] = 4622, + [4740] = 4630, + [4741] = 4741, + [4742] = 4632, + [4743] = 4633, + [4744] = 4744, + [4745] = 4613, + [4746] = 4635, + [4747] = 4626, + [4748] = 4553, + [4749] = 4690, + [4750] = 4622, [4751] = 4751, - [4752] = 4531, - [4753] = 302, - [4754] = 4649, - [4755] = 4755, - [4756] = 4499, - [4757] = 4685, + [4752] = 4621, + [4753] = 2496, + [4754] = 4621, + [4755] = 2426, + [4756] = 4622, + [4757] = 4630, [4758] = 4758, - [4759] = 4759, - [4760] = 4760, - [4761] = 4761, + [4759] = 4550, + [4760] = 4632, + [4761] = 4568, [4762] = 4762, - [4763] = 4603, - [4764] = 2090, - [4765] = 4765, + [4763] = 4763, + [4764] = 4633, + [4765] = 4613, [4766] = 4766, - [4767] = 4166, - [4768] = 2075, - [4769] = 4581, - [4770] = 4770, - [4771] = 4771, - [4772] = 4772, - [4773] = 4601, + [4767] = 4627, + [4768] = 4051, + [4769] = 4630, + [4770] = 4632, + [4771] = 1935, + [4772] = 4633, + [4773] = 4613, [4774] = 4774, - [4775] = 4770, - [4776] = 4571, - [4777] = 4777, - [4778] = 4778, + [4775] = 4630, + [4776] = 4616, + [4777] = 4632, + [4778] = 4633, [4779] = 4779, - [4780] = 4780, + [4780] = 4615, [4781] = 4781, - [4782] = 4761, - [4783] = 4771, + [4782] = 4766, + [4783] = 1946, [4784] = 4784, [4785] = 4785, [4786] = 4786, [4787] = 4787, - [4788] = 4528, - [4789] = 4568, - [4790] = 4200, + [4788] = 4741, + [4789] = 4789, + [4790] = 4790, [4791] = 4791, - [4792] = 4792, + [4792] = 4588, [4793] = 4793, [4794] = 4794, - [4795] = 4772, - [4796] = 4770, - [4797] = 4772, - [4798] = 4798, - [4799] = 4799, - [4800] = 4781, + [4795] = 4684, + [4796] = 4796, + [4797] = 4630, + [4798] = 4455, + [4799] = 4736, + [4800] = 4635, [4801] = 4801, [4802] = 4802, [4803] = 4803, - [4804] = 4804, - [4805] = 4805, + [4804] = 4543, + [4805] = 4544, [4806] = 4806, - [4807] = 4807, - [4808] = 4808, - [4809] = 4179, - [4810] = 4810, - [4811] = 4766, - [4812] = 4812, + [4807] = 3966, + [4808] = 4801, + [4809] = 2545, + [4810] = 4692, + [4811] = 4647, + [4812] = 4644, [4813] = 4813, - [4814] = 4812, - [4815] = 4815, - [4816] = 4664, + [4814] = 4629, + [4815] = 4546, + [4816] = 4816, [4817] = 4817, - [4818] = 876, - [4819] = 4819, - [4820] = 4820, - [4821] = 4821, - [4822] = 4822, - [4823] = 2578, - [4824] = 4619, - [4825] = 4779, - [4826] = 4826, - [4827] = 4821, - [4828] = 4820, - [4829] = 4829, - [4830] = 4830, + [4818] = 4659, + [4819] = 4548, + [4820] = 4758, + [4821] = 4675, + [4822] = 4653, + [4823] = 4803, + [4824] = 4817, + [4825] = 4825, + [4826] = 4816, + [4827] = 4827, + [4828] = 4828, + [4829] = 4622, + [4830] = 4621, [4831] = 4831, [4832] = 4832, - [4833] = 4826, - [4834] = 2580, - [4835] = 4835, - [4836] = 4815, - [4837] = 4807, - [4838] = 4822, - [4839] = 4832, - [4840] = 4799, - [4841] = 4785, - [4842] = 4798, + [4833] = 4684, + [4834] = 4834, + [4835] = 4626, + [4836] = 4836, + [4837] = 4837, + [4838] = 4684, + [4839] = 4558, + [4840] = 4616, + [4841] = 4684, + [4842] = 4802, [4843] = 4843, [4844] = 4844, - [4845] = 4817, - [4846] = 4779, - [4847] = 4772, - [4848] = 4770, + [4845] = 4845, + [4846] = 4846, + [4847] = 1009, + [4848] = 4848, [4849] = 4849, [4850] = 4850, [4851] = 4851, - [4852] = 4477, - [4853] = 299, + [4852] = 4852, + [4853] = 4853, [4854] = 4854, [4855] = 4855, - [4856] = 4831, - [4857] = 4781, + [4856] = 4856, + [4857] = 4857, [4858] = 4858, - [4859] = 4821, - [4860] = 4820, - [4861] = 4583, + [4859] = 4859, + [4860] = 4860, + [4861] = 4861, [4862] = 4862, - [4863] = 4771, - [4864] = 4792, - [4865] = 4791, - [4866] = 4559, + [4863] = 4863, + [4864] = 4864, + [4865] = 4865, + [4866] = 4866, [4867] = 4867, - [4868] = 4815, - [4869] = 4679, + [4868] = 4868, + [4869] = 4869, [4870] = 4870, - [4871] = 4791, - [4872] = 4810, - [4873] = 2629, - [4874] = 2628, + [4871] = 4871, + [4872] = 2348, + [4873] = 4873, + [4874] = 4874, [4875] = 4875, - [4876] = 2666, - [4877] = 4792, - [4878] = 2667, - [4879] = 4542, - [4880] = 4538, - [4881] = 2627, - [4882] = 2718, - [4883] = 2626, - [4884] = 4714, - [4885] = 4506, - [4886] = 4799, - [4887] = 4798, - [4888] = 4696, - [4889] = 4810, + [4876] = 4876, + [4877] = 4877, + [4878] = 1094, + [4879] = 4879, + [4880] = 1008, + [4881] = 4881, + [4882] = 2347, + [4883] = 4883, + [4884] = 4884, + [4885] = 4885, + [4886] = 4886, + [4887] = 4887, + [4888] = 4888, + [4889] = 4889, [4890] = 4890, - [4891] = 4807, + [4891] = 4891, [4892] = 4892, - [4893] = 4792, - [4894] = 4807, - [4895] = 4758, - [4896] = 4810, - [4897] = 4815, + [4893] = 1010, + [4894] = 4894, + [4895] = 1011, + [4896] = 4896, + [4897] = 4897, [4898] = 4898, - [4899] = 4457, - [4900] = 4900, - [4901] = 4742, - [4902] = 4820, - [4903] = 4821, - [4904] = 4791, - [4905] = 4807, + [4899] = 4899, + [4900] = 2545, + [4901] = 4901, + [4902] = 4902, + [4903] = 4903, + [4904] = 1012, + [4905] = 4905, [4906] = 4906, - [4907] = 4548, - [4908] = 2684, - [4909] = 4781, - [4910] = 2685, - [4911] = 2625, - [4912] = 2624, - [4913] = 4779, - [4914] = 4862, - [4915] = 4792, - [4916] = 4791, - [4917] = 4843, - [4918] = 302, - [4919] = 4815, + [4907] = 4907, + [4908] = 4908, + [4909] = 4871, + [4910] = 4910, + [4911] = 4911, + [4912] = 4912, + [4913] = 4856, + [4914] = 4861, + [4915] = 4915, + [4916] = 1017, + [4917] = 4917, + [4918] = 4844, + [4919] = 4864, [4920] = 4920, - [4921] = 4706, - [4922] = 4799, - [4923] = 4712, - [4924] = 4798, - [4925] = 4774, - [4926] = 4890, - [4927] = 4821, - [4928] = 4820, - [4929] = 4781, - [4930] = 4781, - [4931] = 4931, - [4932] = 4791, - [4933] = 4807, - [4934] = 4772, - [4935] = 4792, - [4936] = 4807, - [4937] = 4798, - [4938] = 4458, - [4939] = 4770, - [4940] = 2706, - [4941] = 4534, - [4942] = 2616, - [4943] = 4739, - [4944] = 4792, - [4945] = 2617, - [4946] = 4898, + [4921] = 4865, + [4922] = 4869, + [4923] = 4923, + [4924] = 4844, + [4925] = 4925, + [4926] = 4926, + [4927] = 4927, + [4928] = 4869, + [4929] = 4929, + [4930] = 4873, + [4931] = 4875, + [4932] = 4932, + [4933] = 4885, + [4934] = 4876, + [4935] = 953, + [4936] = 4936, + [4937] = 4937, + [4938] = 4876, + [4939] = 4939, + [4940] = 4940, + [4941] = 4941, + [4942] = 4942, + [4943] = 4943, + [4944] = 4944, + [4945] = 1086, + [4946] = 4946, [4947] = 4947, - [4948] = 4920, - [4949] = 4791, - [4950] = 4931, - [4951] = 4690, - [4952] = 4815, - [4953] = 4771, - [4954] = 4781, - [4955] = 4799, - [4956] = 4956, - [4957] = 4802, - [4958] = 4820, - [4959] = 4791, - [4960] = 4821, - [4961] = 4792, - [4962] = 4802, - [4963] = 4802, - [4964] = 4802, - [4965] = 4807, + [4948] = 4948, + [4949] = 4949, + [4950] = 4891, + [4951] = 4951, + [4952] = 1014, + [4953] = 4953, + [4954] = 4954, + [4955] = 4875, + [4956] = 1005, + [4957] = 4957, + [4958] = 4958, + [4959] = 4959, + [4960] = 4960, + [4961] = 4961, + [4962] = 4873, + [4963] = 1001, + [4964] = 999, + [4965] = 4965, [4966] = 4966, - [4967] = 4670, - [4968] = 4781, + [4967] = 2441, + [4968] = 1015, [4969] = 4969, - [4970] = 4810, - [4971] = 4799, - [4972] = 4972, - [4973] = 4791, - [4974] = 4820, - [4975] = 4821, - [4976] = 4770, - [4977] = 4802, - [4978] = 4772, - [4979] = 4979, - [4980] = 4792, - [4981] = 4807, + [4970] = 2438, + [4971] = 4971, + [4972] = 2426, + [4973] = 4973, + [4974] = 2425, + [4975] = 4975, + [4976] = 4976, + [4977] = 4977, + [4978] = 2424, + [4979] = 4865, + [4980] = 4864, + [4981] = 4960, [4982] = 4982, - [4983] = 4786, - [4984] = 4549, - [4985] = 4771, + [4983] = 996, + [4984] = 4984, + [4985] = 4985, [4986] = 4986, - [4987] = 4987, - [4988] = 4988, - [4989] = 4781, - [4990] = 4779, - [4991] = 972, + [4987] = 4563, + [4988] = 4982, + [4989] = 4989, + [4990] = 993, + [4991] = 4991, [4992] = 4992, - [4993] = 4993, + [4993] = 992, [4994] = 4994, - [4995] = 4995, - [4996] = 4996, + [4995] = 991, + [4996] = 321, [4997] = 4997, - [4998] = 1060, + [4998] = 4998, [4999] = 4999, [5000] = 5000, [5001] = 5001, [5002] = 5002, [5003] = 5003, - [5004] = 5004, + [5004] = 2361, [5005] = 5005, - [5006] = 5006, - [5007] = 325, + [5006] = 4844, + [5007] = 5007, [5008] = 5008, [5009] = 5009, - [5010] = 326, + [5010] = 5010, [5011] = 5011, - [5012] = 5012, + [5012] = 2362, [5013] = 5013, - [5014] = 5014, - [5015] = 4995, - [5016] = 5016, - [5017] = 5017, + [5014] = 4869, + [5015] = 5015, + [5016] = 4856, + [5017] = 4865, [5018] = 5018, [5019] = 5019, [5020] = 5020, [5021] = 5021, - [5022] = 5022, + [5022] = 4861, [5023] = 5023, - [5024] = 5024, + [5024] = 319, [5025] = 5025, - [5026] = 5026, - [5027] = 5027, - [5028] = 5028, - [5029] = 5029, + [5026] = 2364, + [5027] = 5000, + [5028] = 4998, + [5029] = 4864, [5030] = 5030, [5031] = 5031, - [5032] = 5032, - [5033] = 4804, - [5034] = 5034, + [5032] = 4985, + [5033] = 4864, + [5034] = 4865, [5035] = 5035, [5036] = 5036, [5037] = 5037, - [5038] = 5038, - [5039] = 5039, + [5038] = 1083, + [5039] = 4751, [5040] = 5040, - [5041] = 5041, + [5041] = 4869, [5042] = 5042, [5043] = 5043, [5044] = 5044, - [5045] = 5045, + [5045] = 4861, [5046] = 5046, - [5047] = 5006, + [5047] = 4856, [5048] = 5048, - [5049] = 5049, + [5049] = 1018, [5050] = 5050, - [5051] = 5051, + [5051] = 1022, [5052] = 5052, [5053] = 5053, [5054] = 5054, [5055] = 5055, - [5056] = 1066, - [5057] = 5057, - [5058] = 5058, + [5056] = 5056, + [5057] = 4844, + [5058] = 2550, [5059] = 5059, - [5060] = 5060, + [5060] = 5003, [5061] = 5061, - [5062] = 5062, - [5063] = 5063, - [5064] = 4992, - [5065] = 1067, + [5062] = 4850, + [5063] = 4876, + [5064] = 2420, + [5065] = 5065, [5066] = 5066, - [5067] = 5067, - [5068] = 5068, - [5069] = 922, - [5070] = 5070, - [5071] = 5071, - [5072] = 1069, - [5073] = 5073, - [5074] = 5074, + [5067] = 2421, + [5068] = 4873, + [5069] = 4875, + [5070] = 990, + [5071] = 4527, + [5072] = 4526, + [5073] = 293, + [5074] = 292, [5075] = 5075, - [5076] = 5076, + [5076] = 1096, [5077] = 5077, - [5078] = 1070, - [5079] = 1071, + [5078] = 5078, + [5079] = 2435, [5080] = 5080, [5081] = 5081, - [5082] = 1072, - [5083] = 1073, - [5084] = 1048, - [5085] = 5085, - [5086] = 1047, - [5087] = 5087, - [5088] = 1046, + [5082] = 5082, + [5083] = 2554, + [5084] = 989, + [5085] = 4873, + [5086] = 988, + [5087] = 987, + [5088] = 955, [5089] = 5089, [5090] = 5090, [5091] = 5091, - [5092] = 5092, - [5093] = 5093, - [5094] = 5094, + [5092] = 951, + [5093] = 4876, + [5094] = 4873, [5095] = 5095, [5096] = 5096, [5097] = 5097, - [5098] = 2629, - [5099] = 2628, + [5098] = 960, + [5099] = 5065, [5100] = 5100, [5101] = 5101, - [5102] = 5102, + [5102] = 4991, [5103] = 5103, [5104] = 5104, - [5105] = 5105, - [5106] = 296, - [5107] = 5107, - [5108] = 322, - [5109] = 5102, + [5105] = 982, + [5106] = 4844, + [5107] = 4869, + [5108] = 5020, + [5109] = 981, [5110] = 5110, - [5111] = 5111, + [5111] = 5035, [5112] = 5112, - [5113] = 2627, - [5114] = 2626, + [5113] = 5113, + [5114] = 4865, [5115] = 5115, [5116] = 5116, [5117] = 5117, [5118] = 5118, - [5119] = 5119, - [5120] = 5068, + [5119] = 4864, + [5120] = 5120, [5121] = 5121, [5122] = 5122, - [5123] = 4631, - [5124] = 5124, - [5125] = 2625, - [5126] = 5006, - [5127] = 5127, + [5123] = 4861, + [5124] = 4856, + [5125] = 5125, + [5126] = 5126, + [5127] = 2496, [5128] = 5128, [5129] = 5129, - [5130] = 2624, - [5131] = 1044, - [5132] = 1043, - [5133] = 1042, - [5134] = 5107, - [5135] = 1041, - [5136] = 5105, + [5130] = 5130, + [5131] = 4875, + [5132] = 1081, + [5133] = 5133, + [5134] = 1080, + [5135] = 5135, + [5136] = 5136, [5137] = 5137, [5138] = 5138, - [5139] = 5139, + [5139] = 5007, [5140] = 5140, - [5141] = 5141, + [5141] = 4954, [5142] = 5142, - [5143] = 5143, - [5144] = 5144, + [5143] = 335, + [5144] = 333, [5145] = 5145, - [5146] = 5146, - [5147] = 2532, + [5146] = 1042, + [5147] = 5147, [5148] = 5148, [5149] = 5149, - [5150] = 2531, + [5150] = 5150, [5151] = 5151, - [5152] = 2530, + [5152] = 5152, [5153] = 5153, - [5154] = 5154, + [5154] = 5037, [5155] = 5155, [5156] = 5156, - [5157] = 5157, - [5158] = 5158, - [5159] = 5159, - [5160] = 5104, - [5161] = 5100, + [5157] = 4954, + [5158] = 4828, + [5159] = 1073, + [5160] = 1093, + [5161] = 4861, [5162] = 5162, [5163] = 5163, - [5164] = 5105, - [5165] = 5042, - [5166] = 5107, + [5164] = 5164, + [5165] = 5165, + [5166] = 5166, [5167] = 5167, - [5168] = 5153, - [5169] = 5169, - [5170] = 5170, - [5171] = 5171, - [5172] = 5167, - [5173] = 5173, - [5174] = 5085, - [5175] = 5153, - [5176] = 5176, - [5177] = 5102, + [5168] = 5168, + [5169] = 970, + [5170] = 1099, + [5171] = 1100, + [5172] = 5172, + [5173] = 4886, + [5174] = 5174, + [5175] = 1109, + [5176] = 4871, + [5177] = 5177, [5178] = 5178, - [5179] = 5068, - [5180] = 4997, - [5181] = 5032, + [5179] = 5179, + [5180] = 5180, + [5181] = 4885, [5182] = 5182, [5183] = 5183, - [5184] = 5091, + [5184] = 4711, [5185] = 5185, [5186] = 5186, - [5187] = 5187, - [5188] = 2617, - [5189] = 2616, - [5190] = 5100, + [5187] = 4705, + [5188] = 5188, + [5189] = 5189, + [5190] = 5190, [5191] = 5191, - [5192] = 1105, + [5192] = 5192, [5193] = 5193, - [5194] = 5194, - [5195] = 5091, - [5196] = 5196, - [5197] = 5197, - [5198] = 4992, + [5194] = 4704, + [5195] = 4891, + [5196] = 4871, + [5197] = 4856, + [5198] = 5043, [5199] = 5199, - [5200] = 4995, - [5201] = 4997, - [5202] = 921, - [5203] = 1039, - [5204] = 1103, - [5205] = 5205, - [5206] = 1102, - [5207] = 5207, - [5208] = 5208, - [5209] = 946, + [5200] = 939, + [5201] = 4991, + [5202] = 5046, + [5203] = 4885, + [5204] = 4999, + [5205] = 973, + [5206] = 969, + [5207] = 4954, + [5208] = 5015, + [5209] = 5209, [5210] = 5210, [5211] = 5211, - [5212] = 5001, + [5212] = 949, [5213] = 5213, [5214] = 5214, - [5215] = 948, + [5215] = 952, [5216] = 5216, - [5217] = 5217, - [5218] = 1037, - [5219] = 5219, - [5220] = 939, - [5221] = 5221, - [5222] = 4995, + [5217] = 5013, + [5218] = 5218, + [5219] = 4891, + [5220] = 5220, + [5221] = 926, + [5222] = 5222, [5223] = 5223, - [5224] = 5224, - [5225] = 5087, - [5226] = 5226, - [5227] = 5227, - [5228] = 1036, + [5224] = 5011, + [5225] = 5225, + [5226] = 4960, + [5227] = 4982, + [5228] = 5228, [5229] = 5229, - [5230] = 1035, + [5230] = 5230, [5231] = 5231, - [5232] = 5232, - [5233] = 5233, - [5234] = 5090, - [5235] = 5091, + [5232] = 4991, + [5233] = 5065, + [5234] = 5234, + [5235] = 5235, [5236] = 5236, - [5237] = 5032, + [5237] = 5237, [5238] = 5238, [5239] = 5239, [5240] = 5240, - [5241] = 5241, - [5242] = 2434, - [5243] = 2435, - [5244] = 5244, - [5245] = 5245, - [5246] = 5100, - [5247] = 5247, - [5248] = 1094, - [5249] = 5102, - [5250] = 1093, + [5241] = 1026, + [5242] = 5242, + [5243] = 5243, + [5244] = 5046, + [5245] = 4958, + [5246] = 971, + [5247] = 5043, + [5248] = 968, + [5249] = 966, + [5250] = 2481, [5251] = 5251, - [5252] = 5252, - [5253] = 5253, - [5254] = 5167, - [5255] = 933, - [5256] = 1064, + [5252] = 5037, + [5253] = 2388, + [5254] = 5035, + [5255] = 5255, + [5256] = 5020, [5257] = 5257, - [5258] = 5085, - [5259] = 5090, - [5260] = 949, - [5261] = 5261, - [5262] = 1031, - [5263] = 4997, - [5264] = 5264, + [5258] = 5258, + [5259] = 4982, + [5260] = 964, + [5261] = 4960, + [5262] = 1060, + [5263] = 1050, + [5264] = 1052, [5265] = 5265, - [5266] = 5266, - [5267] = 5087, - [5268] = 5268, - [5269] = 5105, - [5270] = 5159, - [5271] = 5271, - [5272] = 5107, - [5273] = 5122, - [5274] = 5121, - [5275] = 4995, + [5266] = 4960, + [5267] = 5035, + [5268] = 4982, + [5269] = 914, + [5270] = 5270, + [5271] = 4891, + [5272] = 1054, + [5273] = 5273, + [5274] = 4885, + [5275] = 4774, [5276] = 5276, - [5277] = 5277, - [5278] = 5096, - [5279] = 5279, - [5280] = 5090, - [5281] = 2706, + [5277] = 2289, + [5278] = 1114, + [5279] = 5037, + [5280] = 2292, + [5281] = 1025, [5282] = 5282, - [5283] = 1030, + [5283] = 5283, [5284] = 5284, - [5285] = 5285, - [5286] = 5042, - [5287] = 5104, + [5285] = 1029, + [5286] = 5286, + [5287] = 5287, [5288] = 5288, - [5289] = 5289, - [5290] = 5068, - [5291] = 5087, - [5292] = 5006, - [5293] = 5044, - [5294] = 5294, - [5295] = 5295, - [5296] = 5296, - [5297] = 5096, - [5298] = 5298, - [5299] = 5299, - [5300] = 5300, - [5301] = 5032, + [5289] = 2384, + [5290] = 5290, + [5291] = 5291, + [5292] = 2304, + [5293] = 5020, + [5294] = 2329, + [5295] = 2332, + [5296] = 1030, + [5297] = 5297, + [5298] = 2385, + [5299] = 4876, + [5300] = 2386, + [5301] = 5035, [5302] = 5302, [5303] = 5303, - [5304] = 5304, + [5304] = 1055, [5305] = 5305, - [5306] = 1091, - [5307] = 5307, - [5308] = 5308, - [5309] = 5309, - [5310] = 1090, - [5311] = 2666, + [5306] = 5043, + [5307] = 2405, + [5308] = 2399, + [5309] = 1144, + [5310] = 5310, + [5311] = 5311, [5312] = 5312, - [5313] = 5299, - [5314] = 5314, - [5315] = 2667, - [5316] = 5153, - [5317] = 5317, - [5318] = 5318, + [5313] = 5037, + [5314] = 5046, + [5315] = 1115, + [5316] = 5316, + [5317] = 978, + [5318] = 1098, [5319] = 5319, - [5320] = 5320, - [5321] = 5309, + [5320] = 5065, + [5321] = 5321, [5322] = 5322, [5323] = 5323, - [5324] = 5011, - [5325] = 5304, - [5326] = 4992, - [5327] = 5213, + [5324] = 1085, + [5325] = 5325, + [5326] = 922, + [5327] = 5172, [5328] = 5328, - [5329] = 5329, - [5330] = 5330, + [5329] = 5182, + [5330] = 1137, [5331] = 5331, [5332] = 5332, [5333] = 5333, - [5334] = 5167, - [5335] = 5335, - [5336] = 5336, - [5337] = 5337, - [5338] = 5011, - [5339] = 5307, + [5334] = 5046, + [5335] = 921, + [5336] = 5043, + [5337] = 920, + [5338] = 1089, + [5339] = 5043, [5340] = 5340, - [5341] = 5213, + [5341] = 5341, [5342] = 5342, - [5343] = 5343, - [5344] = 5344, - [5345] = 5345, - [5346] = 5346, - [5347] = 5104, + [5343] = 5046, + [5344] = 5037, + [5345] = 5035, + [5346] = 5020, + [5347] = 1130, [5348] = 5348, - [5349] = 5336, + [5349] = 5349, [5350] = 5350, - [5351] = 5351, - [5352] = 945, - [5353] = 1023, - [5354] = 5354, - [5355] = 5178, - [5356] = 5097, - [5357] = 5357, - [5358] = 1021, - [5359] = 5359, + [5351] = 1129, + [5352] = 5352, + [5353] = 4982, + [5354] = 5291, + [5355] = 5355, + [5356] = 5356, + [5357] = 4960, + [5358] = 1051, + [5359] = 1126, [5360] = 5360, - [5361] = 968, - [5362] = 1065, - [5363] = 5096, - [5364] = 5364, + [5361] = 5361, + [5362] = 5362, + [5363] = 5363, + [5364] = 1123, [5365] = 5365, [5366] = 5366, [5367] = 5367, [5368] = 5368, - [5369] = 2718, - [5370] = 5370, - [5371] = 5371, - [5372] = 5372, + [5369] = 4891, + [5370] = 4885, + [5371] = 4871, + [5372] = 4887, [5373] = 5373, [5374] = 5374, - [5375] = 5213, + [5375] = 5375, [5376] = 5376, [5377] = 5377, [5378] = 5378, - [5379] = 5044, - [5380] = 5380, - [5381] = 5381, - [5382] = 1017, - [5383] = 5044, + [5379] = 5340, + [5380] = 4875, + [5381] = 5209, + [5382] = 4991, + [5383] = 5065, [5384] = 5384, - [5385] = 4972, - [5386] = 5006, - [5387] = 4992, + [5385] = 5050, + [5386] = 5386, + [5387] = 4502, [5388] = 5388, - [5389] = 2580, - [5390] = 5390, + [5389] = 5389, + [5390] = 5148, [5391] = 5391, [5392] = 5392, [5393] = 5393, - [5394] = 2578, + [5394] = 5394, [5395] = 5395, - [5396] = 1016, + [5396] = 5396, [5397] = 5397, - [5398] = 1015, - [5399] = 1014, - [5400] = 4551, - [5401] = 4570, - [5402] = 5068, - [5403] = 5213, + [5398] = 4991, + [5399] = 5399, + [5400] = 5400, + [5401] = 5401, + [5402] = 5162, + [5403] = 5403, [5404] = 5404, - [5405] = 4992, - [5406] = 5406, + [5405] = 5405, + [5406] = 5065, [5407] = 5407, [5408] = 5408, - [5409] = 1013, - [5410] = 1012, + [5409] = 5409, + [5410] = 2014, [5411] = 5411, [5412] = 5412, [5413] = 5413, - [5414] = 5213, + [5414] = 5414, [5415] = 5415, - [5416] = 2528, + [5416] = 5416, [5417] = 5417, [5418] = 5418, [5419] = 5419, - [5420] = 5420, + [5420] = 5408, [5421] = 5421, [5422] = 5422, - [5423] = 2527, + [5423] = 5423, [5424] = 5424, [5425] = 5425, [5426] = 5426, [5427] = 5427, - [5428] = 5319, + [5428] = 5426, [5429] = 5429, - [5430] = 5430, - [5431] = 989, - [5432] = 962, + [5430] = 5411, + [5431] = 5431, + [5432] = 5409, [5433] = 5433, [5434] = 5434, - [5435] = 5087, - [5436] = 5436, - [5437] = 5090, + [5435] = 5435, + [5436] = 5413, + [5437] = 5412, [5438] = 5438, - [5439] = 5439, - [5440] = 5096, + [5439] = 5414, + [5440] = 919, [5441] = 5441, - [5442] = 5442, - [5443] = 5443, - [5444] = 5104, - [5445] = 5167, - [5446] = 5153, - [5447] = 5032, - [5448] = 5091, - [5449] = 5107, - [5450] = 4997, - [5451] = 5105, - [5452] = 5376, - [5453] = 5042, - [5454] = 2526, - [5455] = 5100, + [5442] = 5415, + [5443] = 5416, + [5444] = 5444, + [5445] = 5445, + [5446] = 5446, + [5447] = 5447, + [5448] = 5412, + [5449] = 5449, + [5450] = 5418, + [5451] = 5412, + [5452] = 5425, + [5453] = 5426, + [5454] = 5408, + [5455] = 5419, [5456] = 5456, - [5457] = 5457, - [5458] = 5458, - [5459] = 2525, - [5460] = 2524, - [5461] = 5461, - [5462] = 5102, - [5463] = 5042, - [5464] = 5085, - [5465] = 5465, - [5466] = 5466, - [5467] = 5467, - [5468] = 4655, + [5457] = 5411, + [5458] = 5415, + [5459] = 5416, + [5460] = 5418, + [5461] = 5425, + [5462] = 5446, + [5463] = 5445, + [5464] = 5429, + [5465] = 5434, + [5466] = 5435, + [5467] = 5444, + [5468] = 5438, [5469] = 5469, - [5470] = 291, - [5471] = 5471, - [5472] = 5191, - [5473] = 292, - [5474] = 4995, - [5475] = 4997, - [5476] = 5085, - [5477] = 5477, - [5478] = 5105, - [5479] = 5042, - [5480] = 5480, - [5481] = 5107, - [5482] = 5482, - [5483] = 2685, - [5484] = 5102, - [5485] = 5485, - [5486] = 5486, - [5487] = 5487, - [5488] = 5091, - [5489] = 2684, - [5490] = 975, - [5491] = 977, - [5492] = 5492, - [5493] = 978, - [5494] = 979, - [5495] = 980, - [5496] = 5100, - [5497] = 5032, - [5498] = 5153, - [5499] = 5499, - [5500] = 5500, - [5501] = 5395, - [5502] = 5068, - [5503] = 5167, - [5504] = 5504, - [5505] = 4858, - [5506] = 4855, - [5507] = 959, - [5508] = 983, - [5509] = 984, - [5510] = 5233, - [5511] = 2521, - [5512] = 5240, - [5513] = 5513, - [5514] = 2522, - [5515] = 5006, - [5516] = 5044, - [5517] = 2523, - [5518] = 988, - [5519] = 991, - [5520] = 993, - [5521] = 995, - [5522] = 5090, - [5523] = 996, - [5524] = 997, - [5525] = 998, - [5526] = 5087, - [5527] = 1011, - [5528] = 1010, - [5529] = 5529, - [5530] = 1006, - [5531] = 5415, - [5532] = 1024, - [5533] = 4854, - [5534] = 5366, - [5535] = 5535, - [5536] = 914, - [5537] = 5413, - [5538] = 4801, - [5539] = 5539, - [5540] = 5540, - [5541] = 5104, - [5542] = 5096, - [5543] = 1081, - [5544] = 1080, - [5545] = 5011, + [5470] = 5470, + [5471] = 5446, + [5472] = 5445, + [5473] = 5473, + [5474] = 5417, + [5475] = 5408, + [5476] = 5419, + [5477] = 5444, + [5478] = 5415, + [5479] = 5479, + [5480] = 5438, + [5481] = 5416, + [5482] = 5418, + [5483] = 5425, + [5484] = 5434, + [5485] = 5435, + [5486] = 5438, + [5487] = 5438, + [5488] = 5488, + [5489] = 5489, + [5490] = 5408, + [5491] = 5419, + [5492] = 5418, + [5493] = 5425, + [5494] = 5408, + [5495] = 5419, + [5496] = 5496, + [5497] = 5497, + [5498] = 5418, + [5499] = 5425, + [5500] = 5417, + [5501] = 5501, + [5502] = 5435, + [5503] = 5434, + [5504] = 5433, + [5505] = 5409, + [5506] = 5431, + [5507] = 5408, + [5508] = 5508, + [5509] = 5419, + [5510] = 5418, + [5511] = 5425, + [5512] = 5435, + [5513] = 5434, + [5514] = 950, + [5515] = 5433, + [5516] = 5409, + [5517] = 5431, + [5518] = 5408, + [5519] = 5419, + [5520] = 5429, + [5521] = 5418, + [5522] = 5425, + [5523] = 5408, + [5524] = 5524, + [5525] = 5525, + [5526] = 5414, + [5527] = 5418, + [5528] = 5528, + [5529] = 5429, + [5530] = 5530, + [5531] = 5425, + [5532] = 5532, + [5533] = 5425, + [5534] = 5534, + [5535] = 5418, + [5536] = 5417, + [5537] = 5408, + [5538] = 5419, + [5539] = 5418, + [5540] = 5416, + [5541] = 5415, + [5542] = 5414, + [5543] = 5425, + [5544] = 5479, + [5545] = 5413, [5546] = 5546, - [5547] = 1079, - [5548] = 5548, - [5549] = 5549, - [5550] = 916, + [5547] = 5411, + [5548] = 5456, + [5549] = 5411, + [5550] = 5429, [5551] = 5551, - [5552] = 5359, - [5553] = 917, - [5554] = 1002, + [5552] = 1978, + [5553] = 5553, + [5554] = 5554, [5555] = 5555, - [5556] = 5556, - [5557] = 5557, - [5558] = 5558, - [5559] = 5559, - [5560] = 5560, + [5556] = 5446, + [5557] = 5470, + [5558] = 5445, + [5559] = 5425, + [5560] = 5418, [5561] = 5561, - [5562] = 5562, + [5562] = 896, [5563] = 5563, [5564] = 5564, - [5565] = 5565, - [5566] = 5566, - [5567] = 5567, - [5568] = 5556, - [5569] = 5569, - [5570] = 5570, - [5571] = 5571, - [5572] = 5572, + [5565] = 5419, + [5566] = 5449, + [5567] = 5408, + [5568] = 5419, + [5569] = 5413, + [5570] = 5419, + [5571] = 5415, + [5572] = 5416, [5573] = 5573, - [5574] = 5574, - [5575] = 5574, - [5576] = 290, + [5574] = 5426, + [5575] = 5416, + [5576] = 5415, [5577] = 5577, - [5578] = 5578, - [5579] = 5579, - [5580] = 5580, - [5581] = 5573, - [5582] = 905, - [5583] = 5572, + [5578] = 5414, + [5579] = 5413, + [5580] = 5426, + [5581] = 5581, + [5582] = 5582, + [5583] = 5408, [5584] = 5584, [5585] = 5585, - [5586] = 5557, - [5587] = 5569, + [5586] = 5418, + [5587] = 5425, [5588] = 5588, - [5589] = 5569, - [5590] = 5567, - [5591] = 5591, - [5592] = 5592, - [5593] = 5593, - [5594] = 5594, + [5589] = 5589, + [5590] = 5412, + [5591] = 4631, + [5592] = 5417, + [5593] = 5411, + [5594] = 5554, [5595] = 5595, - [5596] = 5596, + [5596] = 5488, [5597] = 5597, - [5598] = 4803, - [5599] = 5599, - [5600] = 5585, - [5601] = 5601, - [5602] = 5602, - [5603] = 2166, - [5604] = 5604, - [5605] = 5571, - [5606] = 5606, - [5607] = 5607, + [5598] = 5598, + [5599] = 5508, + [5600] = 5554, + [5601] = 5419, + [5602] = 5446, + [5603] = 5445, + [5604] = 5408, + [5605] = 5444, + [5606] = 5584, + [5607] = 5444, [5608] = 5608, - [5609] = 5594, - [5610] = 5602, - [5611] = 5601, - [5612] = 5608, - [5613] = 5613, + [5609] = 4686, + [5610] = 5438, + [5611] = 5611, + [5612] = 1966, + [5613] = 924, [5614] = 5614, - [5615] = 5584, - [5616] = 5566, - [5617] = 5565, - [5618] = 5580, - [5619] = 5579, - [5620] = 5578, - [5621] = 5621, - [5622] = 5564, - [5623] = 5563, - [5624] = 5562, + [5615] = 5489, + [5616] = 291, + [5617] = 5617, + [5618] = 5584, + [5619] = 5429, + [5620] = 5554, + [5621] = 5584, + [5622] = 5622, + [5623] = 5623, + [5624] = 5438, [5625] = 5625, - [5626] = 5594, - [5627] = 5577, - [5628] = 5569, - [5629] = 5556, - [5630] = 5585, - [5631] = 5559, - [5632] = 5632, - [5633] = 5561, - [5634] = 5634, - [5635] = 5601, - [5636] = 5595, - [5637] = 5637, - [5638] = 5561, - [5639] = 5639, - [5640] = 5562, - [5641] = 5563, - [5642] = 5564, - [5643] = 5565, - [5644] = 5557, - [5645] = 5566, - [5646] = 5567, - [5647] = 5559, - [5648] = 5567, - [5649] = 5556, - [5650] = 5569, - [5651] = 5560, + [5626] = 5626, + [5627] = 5627, + [5628] = 5431, + [5629] = 5419, + [5630] = 5433, + [5631] = 5435, + [5632] = 5434, + [5633] = 5434, + [5634] = 5435, + [5635] = 5635, + [5636] = 5433, + [5637] = 5584, + [5638] = 5554, + [5639] = 5409, + [5640] = 5431, + [5641] = 5641, + [5642] = 5642, + [5643] = 5643, + [5644] = 5644, + [5645] = 5645, + [5646] = 5646, + [5647] = 5647, + [5648] = 5648, + [5649] = 5649, + [5650] = 5650, + [5651] = 5651, [5652] = 5652, - [5653] = 5602, - [5654] = 4760, - [5655] = 5572, - [5656] = 5574, - [5657] = 5573, - [5658] = 5577, - [5659] = 5578, - [5660] = 5579, - [5661] = 5580, + [5653] = 5653, + [5654] = 5654, + [5655] = 5655, + [5656] = 5656, + [5657] = 5657, + [5658] = 5658, + [5659] = 5659, + [5660] = 5660, + [5661] = 5661, [5662] = 5662, - [5663] = 5584, - [5664] = 5584, - [5665] = 5585, - [5666] = 5571, - [5667] = 5557, + [5663] = 5663, + [5664] = 5664, + [5665] = 5665, + [5666] = 5666, + [5667] = 5667, [5668] = 5668, - [5669] = 5571, - [5670] = 5561, + [5669] = 5669, + [5670] = 5670, [5671] = 5671, - [5672] = 5601, - [5673] = 5602, + [5672] = 5672, + [5673] = 5673, [5674] = 5674, - [5675] = 5594, + [5675] = 5675, [5676] = 5676, [5677] = 5677, - [5678] = 5566, - [5679] = 5602, - [5680] = 5601, + [5678] = 5660, + [5679] = 5679, + [5680] = 5680, [5681] = 5681, - [5682] = 5584, - [5683] = 5565, + [5682] = 5682, + [5683] = 5683, [5684] = 5684, - [5685] = 5594, - [5686] = 5578, - [5687] = 5577, - [5688] = 5559, - [5689] = 2114, - [5690] = 5573, - [5691] = 5569, - [5692] = 5574, - [5693] = 5556, - [5694] = 5555, + [5685] = 5685, + [5686] = 5686, + [5687] = 5687, + [5688] = 5688, + [5689] = 5689, + [5690] = 5690, + [5691] = 5691, + [5692] = 5692, + [5693] = 5677, + [5694] = 5660, [5695] = 5695, - [5696] = 5696, - [5697] = 5570, + [5696] = 5641, + [5697] = 5697, [5698] = 5698, - [5699] = 5572, - [5700] = 2152, - [5701] = 5561, - [5702] = 5668, + [5699] = 5699, + [5700] = 5700, + [5701] = 5701, + [5702] = 5702, [5703] = 5703, - [5704] = 5565, - [5705] = 5566, + [5704] = 5704, + [5705] = 5705, [5706] = 5706, - [5707] = 5602, - [5708] = 5601, - [5709] = 923, + [5707] = 5707, + [5708] = 5708, + [5709] = 5709, [5710] = 5710, - [5711] = 5567, - [5712] = 5572, - [5713] = 918, - [5714] = 5559, - [5715] = 940, - [5716] = 5597, - [5717] = 5556, - [5718] = 5569, - [5719] = 5601, + [5711] = 5711, + [5712] = 5712, + [5713] = 5713, + [5714] = 4554, + [5715] = 5677, + [5716] = 5660, + [5717] = 5717, + [5718] = 5718, + [5719] = 5719, [5720] = 5720, - [5721] = 5602, - [5722] = 5556, + [5721] = 5721, + [5722] = 5722, [5723] = 5723, - [5724] = 5567, - [5725] = 5577, - [5726] = 5569, - [5727] = 5601, - [5728] = 5602, - [5729] = 5556, - [5730] = 5584, - [5731] = 5573, - [5732] = 5574, + [5724] = 5724, + [5725] = 5725, + [5726] = 5642, + [5727] = 5727, + [5728] = 5728, + [5729] = 5729, + [5730] = 5730, + [5731] = 5731, + [5732] = 5732, [5733] = 5733, - [5734] = 5601, + [5734] = 5734, [5735] = 5735, - [5736] = 5602, - [5737] = 5737, - [5738] = 5556, + [5736] = 5736, + [5737] = 5660, + [5738] = 5738, [5739] = 5739, - [5740] = 5578, - [5741] = 5569, - [5742] = 5564, - [5743] = 5579, - [5744] = 5580, + [5740] = 5740, + [5741] = 5741, + [5742] = 5742, + [5743] = 5743, + [5744] = 5744, [5745] = 5745, - [5746] = 5602, - [5747] = 5585, - [5748] = 5557, + [5746] = 5746, + [5747] = 5747, + [5748] = 5677, [5749] = 5749, [5750] = 5750, - [5751] = 5601, - [5752] = 5580, - [5753] = 5579, - [5754] = 5578, - [5755] = 5577, - [5756] = 5602, - [5757] = 5601, - [5758] = 5578, - [5759] = 5577, - [5760] = 5569, - [5761] = 5556, - [5762] = 5565, - [5763] = 5566, - [5764] = 5567, - [5765] = 5569, - [5766] = 5563, + [5751] = 5751, + [5752] = 5752, + [5753] = 5753, + [5754] = 5754, + [5755] = 5755, + [5756] = 5756, + [5757] = 5757, + [5758] = 5758, + [5759] = 5759, + [5760] = 5760, + [5761] = 5761, + [5762] = 4561, + [5763] = 5763, + [5764] = 5764, + [5765] = 5765, + [5766] = 5766, [5767] = 5767, - [5768] = 5566, - [5769] = 5569, - [5770] = 5556, - [5771] = 5556, + [5768] = 5768, + [5769] = 5769, + [5770] = 5770, + [5771] = 5771, [5772] = 5772, - [5773] = 5562, + [5773] = 5773, [5774] = 5774, - [5775] = 5602, + [5775] = 5775, [5776] = 5776, - [5777] = 5562, - [5778] = 5563, - [5779] = 5564, - [5780] = 5601, - [5781] = 5569, - [5782] = 5556, - [5783] = 5565, - [5784] = 5561, - [5785] = 5602, - [5786] = 5601, - [5787] = 5571, + [5777] = 5777, + [5778] = 5778, + [5779] = 5779, + [5780] = 5780, + [5781] = 5781, + [5782] = 5782, + [5783] = 5783, + [5784] = 5784, + [5785] = 5785, + [5786] = 5786, + [5787] = 5787, [5788] = 5788, [5789] = 5789, [5790] = 5790, @@ -10455,45 +10463,45 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5807] = 5807, [5808] = 5808, [5809] = 5809, - [5810] = 5810, - [5811] = 5794, + [5810] = 5677, + [5811] = 5660, [5812] = 5812, [5813] = 5813, [5814] = 5814, [5815] = 5815, - [5816] = 5816, + [5816] = 5763, [5817] = 5817, [5818] = 5818, [5819] = 5819, [5820] = 5820, [5821] = 5821, - [5822] = 5822, - [5823] = 5810, + [5822] = 917, + [5823] = 5823, [5824] = 5824, - [5825] = 5794, + [5825] = 5825, [5826] = 5826, [5827] = 5827, [5828] = 5828, [5829] = 5829, [5830] = 5830, [5831] = 5831, - [5832] = 4560, + [5832] = 5832, [5833] = 5833, - [5834] = 5810, - [5835] = 5794, - [5836] = 5836, + [5834] = 5834, + [5835] = 5835, + [5836] = 5651, [5837] = 5837, [5838] = 5838, - [5839] = 5839, - [5840] = 5840, - [5841] = 5841, - [5842] = 5842, + [5839] = 2361, + [5840] = 5652, + [5841] = 5654, + [5842] = 2362, [5843] = 5843, [5844] = 5844, - [5845] = 5845, + [5845] = 2364, [5846] = 5846, - [5847] = 5847, - [5848] = 5848, + [5847] = 5792, + [5848] = 5740, [5849] = 5849, [5850] = 5850, [5851] = 5851, @@ -10502,211 +10510,211 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5854] = 5854, [5855] = 5855, [5856] = 5856, - [5857] = 5789, - [5858] = 5858, - [5859] = 5859, - [5860] = 5789, + [5857] = 5857, + [5858] = 2289, + [5859] = 5642, + [5860] = 5860, [5861] = 5861, - [5862] = 5862, + [5862] = 5724, [5863] = 5863, - [5864] = 5864, - [5865] = 941, - [5866] = 5866, - [5867] = 5867, - [5868] = 5868, + [5864] = 937, + [5865] = 5865, + [5866] = 2292, + [5867] = 2304, + [5868] = 5670, [5869] = 5869, - [5870] = 5870, - [5871] = 5871, - [5872] = 5821, - [5873] = 5819, + [5870] = 2329, + [5871] = 2332, + [5872] = 5872, + [5873] = 2386, [5874] = 5874, - [5875] = 5875, - [5876] = 5876, + [5875] = 2385, + [5876] = 2384, [5877] = 5877, [5878] = 5878, [5879] = 5879, [5880] = 5880, [5881] = 5881, [5882] = 5882, - [5883] = 912, + [5883] = 5883, [5884] = 5884, - [5885] = 5804, + [5885] = 5885, [5886] = 5886, [5887] = 5887, [5888] = 5888, [5889] = 5889, - [5890] = 5890, + [5890] = 5666, [5891] = 5891, - [5892] = 959, - [5893] = 5893, - [5894] = 921, + [5892] = 5892, + [5893] = 5692, + [5894] = 5894, [5895] = 5895, [5896] = 5896, [5897] = 5897, - [5898] = 5898, - [5899] = 5846, + [5898] = 5642, + [5899] = 5724, [5900] = 5900, - [5901] = 5901, + [5901] = 4944, [5902] = 5902, [5903] = 5903, - [5904] = 5850, + [5904] = 5904, [5905] = 5905, [5906] = 5906, [5907] = 5907, - [5908] = 5794, + [5908] = 5908, [5909] = 5909, [5910] = 5910, - [5911] = 5851, - [5912] = 917, - [5913] = 5913, + [5911] = 5911, + [5912] = 5912, + [5913] = 5874, [5914] = 5914, [5915] = 5915, [5916] = 5916, - [5917] = 5810, - [5918] = 5918, - [5919] = 5919, - [5920] = 916, + [5917] = 5917, + [5918] = 5654, + [5919] = 5652, + [5920] = 5920, [5921] = 5921, - [5922] = 5922, - [5923] = 5794, + [5922] = 5884, + [5923] = 5923, [5924] = 5924, - [5925] = 946, - [5926] = 948, + [5925] = 5884, + [5926] = 5926, [5927] = 5927, [5928] = 5928, - [5929] = 914, + [5929] = 5651, [5930] = 5930, - [5931] = 5931, + [5931] = 5724, [5932] = 5932, - [5933] = 5852, - [5934] = 5934, - [5935] = 5842, - [5936] = 5936, + [5933] = 5933, + [5934] = 929, + [5935] = 5648, + [5936] = 914, [5937] = 5937, - [5938] = 5938, - [5939] = 5841, + [5938] = 939, + [5939] = 5939, [5940] = 5940, - [5941] = 5030, + [5941] = 5941, [5942] = 5942, [5943] = 5943, [5944] = 5944, [5945] = 5945, [5946] = 5946, - [5947] = 5947, + [5947] = 5824, [5948] = 5948, - [5949] = 5869, + [5949] = 5949, [5950] = 5950, [5951] = 5951, - [5952] = 5952, - [5953] = 5953, + [5952] = 4567, + [5953] = 5643, [5954] = 5954, [5955] = 5955, - [5956] = 5868, + [5956] = 5663, [5957] = 5957, [5958] = 5958, - [5959] = 5959, - [5960] = 5960, - [5961] = 5944, + [5959] = 5648, + [5960] = 5667, + [5961] = 5668, [5962] = 5962, [5963] = 5963, [5964] = 5964, - [5965] = 949, - [5966] = 939, - [5967] = 945, - [5968] = 933, - [5969] = 5953, - [5970] = 5951, - [5971] = 5971, + [5965] = 5965, + [5966] = 5966, + [5967] = 5967, + [5968] = 5968, + [5969] = 953, + [5970] = 5970, + [5971] = 5680, [5972] = 5972, [5973] = 5973, - [5974] = 5810, + [5974] = 5974, [5975] = 5975, - [5976] = 5869, + [5976] = 5976, [5977] = 5977, [5978] = 5978, - [5979] = 5868, - [5980] = 5077, + [5979] = 5979, + [5980] = 5980, [5981] = 5981, [5982] = 5982, [5983] = 5983, [5984] = 5984, - [5985] = 927, - [5986] = 5962, - [5987] = 5987, + [5985] = 5874, + [5986] = 5695, + [5987] = 5641, [5988] = 5988, - [5989] = 5942, - [5990] = 5971, - [5991] = 4664, + [5989] = 5989, + [5990] = 5990, + [5991] = 5991, [5992] = 5992, [5993] = 5993, [5994] = 5994, [5995] = 5995, - [5996] = 5869, + [5996] = 5706, [5997] = 5997, - [5998] = 5868, + [5998] = 5998, [5999] = 5999, - [6000] = 6000, + [6000] = 5710, [6001] = 6001, - [6002] = 5830, + [6002] = 6002, [6003] = 6003, [6004] = 6004, [6005] = 6005, - [6006] = 5940, + [6006] = 5884, [6007] = 6007, [6008] = 6008, [6009] = 6009, - [6010] = 6010, - [6011] = 5938, - [6012] = 6012, - [6013] = 6013, + [6010] = 5720, + [6011] = 6011, + [6012] = 5722, + [6013] = 5723, [6014] = 6014, - [6015] = 6015, + [6015] = 5727, [6016] = 6016, - [6017] = 6017, + [6017] = 5730, [6018] = 6018, - [6019] = 5804, + [6019] = 5732, [6020] = 6020, - [6021] = 5936, - [6022] = 6022, - [6023] = 5819, - [6024] = 5821, + [6021] = 6021, + [6022] = 5642, + [6023] = 6023, + [6024] = 5724, [6025] = 6025, [6026] = 6026, [6027] = 6027, [6028] = 6028, [6029] = 6029, - [6030] = 6030, - [6031] = 922, + [6030] = 920, + [6031] = 6031, [6032] = 6032, - [6033] = 5962, + [6033] = 921, [6034] = 6034, - [6035] = 6035, - [6036] = 5124, + [6035] = 949, + [6036] = 6036, [6037] = 6037, [6038] = 6038, - [6039] = 5971, - [6040] = 6040, - [6041] = 6041, + [6039] = 6039, + [6040] = 952, + [6041] = 922, [6042] = 6042, [6043] = 6043, - [6044] = 5869, + [6044] = 5761, [6045] = 6045, - [6046] = 5868, + [6046] = 6046, [6047] = 6047, [6048] = 6048, [6049] = 6049, - [6050] = 6050, - [6051] = 6051, + [6050] = 5663, + [6051] = 5768, [6052] = 6052, - [6053] = 6053, + [6053] = 5770, [6054] = 6054, [6055] = 6055, [6056] = 6056, [6057] = 6057, - [6058] = 6058, + [6058] = 5667, [6059] = 6059, - [6060] = 6060, - [6061] = 6061, + [6060] = 5668, + [6061] = 5669, [6062] = 6062, [6063] = 6063, [6064] = 6064, @@ -10716,185 +10724,185 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6068] = 6068, [6069] = 6069, [6070] = 6070, - [6071] = 6071, + [6071] = 5680, [6072] = 6072, [6073] = 6073, - [6074] = 6074, + [6074] = 5130, [6075] = 6075, [6076] = 6076, - [6077] = 5962, + [6077] = 6077, [6078] = 6078, [6079] = 6079, [6080] = 6080, - [6081] = 5953, + [6081] = 6081, [6082] = 6082, [6083] = 6083, - [6084] = 5951, + [6084] = 6084, [6085] = 6085, [6086] = 6086, [6087] = 6087, - [6088] = 913, + [6088] = 6088, [6089] = 6089, [6090] = 6090, - [6091] = 5944, + [6091] = 6091, [6092] = 6092, [6093] = 6093, - [6094] = 4548, + [6094] = 6094, [6095] = 6095, [6096] = 6096, [6097] = 6097, [6098] = 6098, [6099] = 6099, - [6100] = 6100, - [6101] = 6101, + [6100] = 5770, + [6101] = 5768, [6102] = 6102, [6103] = 6103, [6104] = 6104, - [6105] = 6105, + [6105] = 5651, [6106] = 6106, - [6107] = 2466, + [6107] = 6107, [6108] = 6108, - [6109] = 5962, - [6110] = 2452, - [6111] = 6111, + [6109] = 5652, + [6110] = 5654, + [6111] = 5651, [6112] = 6112, [6113] = 6113, [6114] = 6114, [6115] = 6115, [6116] = 6116, [6117] = 6117, - [6118] = 5824, - [6119] = 6119, - [6120] = 6120, - [6121] = 6121, + [6118] = 5695, + [6119] = 5874, + [6120] = 5652, + [6121] = 5654, [6122] = 6122, [6123] = 6123, [6124] = 6124, - [6125] = 5971, + [6125] = 6125, [6126] = 6126, - [6127] = 5913, - [6128] = 6128, + [6127] = 6127, + [6128] = 5692, [6129] = 6129, [6130] = 6130, [6131] = 6131, [6132] = 6132, - [6133] = 6133, + [6133] = 5755, [6134] = 6134, [6135] = 6135, - [6136] = 5915, + [6136] = 6136, [6137] = 6137, - [6138] = 5913, - [6139] = 5846, - [6140] = 5915, - [6141] = 5910, + [6138] = 6138, + [6139] = 6139, + [6140] = 4580, + [6141] = 6141, [6142] = 6142, - [6143] = 5850, - [6144] = 5851, - [6145] = 6145, - [6146] = 6146, - [6147] = 6147, - [6148] = 5906, - [6149] = 5905, - [6150] = 5903, - [6151] = 6151, + [6143] = 5739, + [6144] = 5884, + [6145] = 5740, + [6146] = 5792, + [6147] = 5743, + [6148] = 6148, + [6149] = 6149, + [6150] = 6150, + [6151] = 5763, [6152] = 6152, - [6153] = 5910, - [6154] = 5863, - [6155] = 6155, - [6156] = 6156, - [6157] = 6157, - [6158] = 6158, - [6159] = 5906, - [6160] = 6026, - [6161] = 6161, - [6162] = 6162, - [6163] = 6163, + [6153] = 5773, + [6154] = 5783, + [6155] = 5774, + [6156] = 5776, + [6157] = 5396, + [6158] = 5777, + [6159] = 2303, + [6160] = 5706, + [6161] = 5761, + [6162] = 5642, + [6163] = 5724, [6164] = 6164, - [6165] = 5814, - [6166] = 5893, - [6167] = 5905, - [6168] = 5903, - [6169] = 5878, - [6170] = 5879, - [6171] = 6171, + [6165] = 5710, + [6166] = 6166, + [6167] = 2276, + [6168] = 6168, + [6169] = 6169, + [6170] = 6170, + [6171] = 5794, [6172] = 6172, - [6173] = 6173, + [6173] = 5759, [6174] = 6174, - [6175] = 5889, + [6175] = 5757, [6176] = 6176, [6177] = 6177, - [6178] = 6178, - [6179] = 5889, + [6178] = 5804, + [6179] = 6179, [6180] = 6180, [6181] = 6181, - [6182] = 5869, - [6183] = 5893, - [6184] = 5868, + [6182] = 6182, + [6183] = 6183, + [6184] = 5720, [6185] = 6185, [6186] = 6186, - [6187] = 5879, - [6188] = 6188, - [6189] = 5878, + [6187] = 6187, + [6188] = 5722, + [6189] = 5723, [6190] = 6190, [6191] = 6191, - [6192] = 6192, - [6193] = 5903, - [6194] = 6194, - [6195] = 5905, - [6196] = 5906, - [6197] = 6197, - [6198] = 5910, - [6199] = 6199, - [6200] = 5913, - [6201] = 6201, - [6202] = 5915, + [6192] = 5869, + [6193] = 5727, + [6194] = 5648, + [6195] = 5885, + [6196] = 5770, + [6197] = 5730, + [6198] = 5732, + [6199] = 5666, + [6200] = 6200, + [6201] = 5753, + [6202] = 6202, [6203] = 6203, - [6204] = 6204, - [6205] = 6205, - [6206] = 6206, - [6207] = 6207, - [6208] = 6208, - [6209] = 6209, + [6204] = 5643, + [6205] = 5648, + [6206] = 5970, + [6207] = 5768, + [6208] = 5972, + [6209] = 5663, [6210] = 6210, [6211] = 6211, [6212] = 6212, - [6213] = 6213, - [6214] = 6214, + [6213] = 5667, + [6214] = 5668, [6215] = 6215, [6216] = 6216, - [6217] = 5863, - [6218] = 6218, - [6219] = 5851, + [6217] = 6217, + [6218] = 5761, + [6219] = 960, [6220] = 6220, [6221] = 6221, - [6222] = 6222, - [6223] = 6223, - [6224] = 5893, + [6222] = 926, + [6223] = 951, + [6224] = 940, [6225] = 6225, - [6226] = 5815, - [6227] = 5944, + [6226] = 6226, + [6227] = 5732, [6228] = 6228, - [6229] = 6229, - [6230] = 6230, + [6229] = 5730, + [6230] = 5727, [6231] = 6231, - [6232] = 6232, - [6233] = 6233, - [6234] = 5951, - [6235] = 6235, - [6236] = 5953, - [6237] = 6237, + [6232] = 6045, + [6233] = 5723, + [6234] = 6234, + [6235] = 5695, + [6236] = 5641, + [6237] = 955, [6238] = 6238, - [6239] = 6239, - [6240] = 6240, - [6241] = 5889, - [6242] = 6242, + [6239] = 5668, + [6240] = 5667, + [6241] = 6241, + [6242] = 5663, [6243] = 6243, - [6244] = 6244, - [6245] = 6245, - [6246] = 6246, - [6247] = 5852, + [6244] = 5667, + [6245] = 5706, + [6246] = 5668, + [6247] = 5669, [6248] = 6248, - [6249] = 6249, + [6249] = 5710, [6250] = 6250, [6251] = 6251, [6252] = 6252, @@ -10902,92 +10910,92 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6254] = 6254, [6255] = 6255, [6256] = 6256, - [6257] = 6257, + [6257] = 5720, [6258] = 6258, - [6259] = 6259, - [6260] = 6085, - [6261] = 5850, - [6262] = 5846, - [6263] = 6263, - [6264] = 6264, + [6259] = 5722, + [6260] = 5723, + [6261] = 5670, + [6262] = 5727, + [6263] = 5770, + [6264] = 5730, [6265] = 6265, - [6266] = 6266, - [6267] = 6267, + [6266] = 5732, + [6267] = 5768, [6268] = 6268, [6269] = 6269, [6270] = 6270, [6271] = 6271, [6272] = 6272, - [6273] = 6273, - [6274] = 6274, + [6273] = 5732, + [6274] = 5730, [6275] = 6275, - [6276] = 6276, - [6277] = 6277, - [6278] = 6278, - [6279] = 5866, - [6280] = 6280, + [6276] = 5680, + [6277] = 5727, + [6278] = 5723, + [6279] = 6279, + [6280] = 5722, [6281] = 6281, - [6282] = 6282, + [6282] = 5720, [6283] = 6283, [6284] = 6284, - [6285] = 6285, - [6286] = 6286, - [6287] = 6287, - [6288] = 5804, - [6289] = 6289, + [6285] = 5641, + [6286] = 5695, + [6287] = 5753, + [6288] = 6288, + [6289] = 5755, [6290] = 6290, - [6291] = 2532, - [6292] = 5819, - [6293] = 5821, - [6294] = 2531, - [6295] = 6295, + [6291] = 5757, + [6292] = 4588, + [6293] = 5759, + [6294] = 6294, + [6295] = 5761, [6296] = 6296, - [6297] = 2530, + [6297] = 6297, [6298] = 6298, - [6299] = 6299, - [6300] = 2528, - [6301] = 6301, - [6302] = 2527, + [6299] = 5668, + [6300] = 5667, + [6301] = 5663, + [6302] = 5768, [6303] = 6303, - [6304] = 6304, - [6305] = 2526, - [6306] = 6284, - [6307] = 2525, - [6308] = 6287, - [6309] = 2524, - [6310] = 2523, - [6311] = 5824, - [6312] = 2522, - [6313] = 5824, - [6314] = 2521, - [6315] = 5822, + [6304] = 5770, + [6305] = 5695, + [6306] = 6306, + [6307] = 6307, + [6308] = 5641, + [6309] = 5706, + [6310] = 5874, + [6311] = 5710, + [6312] = 6312, + [6313] = 6313, + [6314] = 6314, + [6315] = 5732, [6316] = 6316, [6317] = 6317, [6318] = 6318, [6319] = 6319, [6320] = 6320, [6321] = 6321, - [6322] = 6322, - [6323] = 6323, - [6324] = 6324, - [6325] = 5915, - [6326] = 5815, - [6327] = 5913, + [6322] = 5720, + [6323] = 5722, + [6324] = 5723, + [6325] = 6325, + [6326] = 5730, + [6327] = 6327, [6328] = 6328, - [6329] = 6221, - [6330] = 5910, - [6331] = 6171, - [6332] = 5906, - [6333] = 5814, + [6329] = 6329, + [6330] = 6330, + [6331] = 6331, + [6332] = 5727, + [6333] = 6333, [6334] = 6334, - [6335] = 6335, + [6335] = 968, [6336] = 6336, [6337] = 6337, [6338] = 6338, - [6339] = 6339, + [6339] = 321, [6340] = 6340, - [6341] = 5851, - [6342] = 5850, + [6341] = 6341, + [6342] = 6342, [6343] = 6343, [6344] = 6344, [6345] = 6345, @@ -10998,1551 +11006,1154 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6350] = 6350, [6351] = 6351, [6352] = 6352, - [6353] = 6353, - [6354] = 6093, - [6355] = 6355, + [6353] = 1108, + [6354] = 6354, + [6355] = 965, [6356] = 6356, [6357] = 6357, [6358] = 6358, [6359] = 6359, - [6360] = 6360, - [6361] = 6361, + [6360] = 1100, + [6361] = 992, [6362] = 6362, [6363] = 6363, [6364] = 6364, [6365] = 6365, - [6366] = 5971, + [6366] = 991, [6367] = 6367, - [6368] = 6368, + [6368] = 6351, [6369] = 6369, [6370] = 6370, [6371] = 6371, - [6372] = 4670, + [6372] = 6372, [6373] = 6373, [6374] = 6374, - [6375] = 5953, - [6376] = 6376, - [6377] = 5824, - [6378] = 5951, - [6379] = 6379, + [6375] = 6375, + [6376] = 996, + [6377] = 6377, + [6378] = 6378, + [6379] = 1098, [6380] = 6380, [6381] = 6381, [6382] = 6382, - [6383] = 6383, - [6384] = 6384, - [6385] = 6385, + [6383] = 6375, + [6384] = 6373, + [6385] = 1094, [6386] = 6386, [6387] = 6387, - [6388] = 6388, - [6389] = 5879, - [6390] = 6390, - [6391] = 5915, - [6392] = 5846, - [6393] = 5913, + [6388] = 6334, + [6389] = 6352, + [6390] = 6356, + [6391] = 6391, + [6392] = 6336, + [6393] = 6393, [6394] = 6394, - [6395] = 5910, - [6396] = 5850, - [6397] = 5851, - [6398] = 5906, - [6399] = 5905, + [6395] = 1008, + [6396] = 6396, + [6397] = 6397, + [6398] = 6398, + [6399] = 6399, [6400] = 6400, [6401] = 6401, - [6402] = 6020, - [6403] = 5822, - [6404] = 6018, - [6405] = 6017, - [6406] = 6016, + [6402] = 6402, + [6403] = 6403, + [6404] = 6404, + [6405] = 6405, + [6406] = 6406, [6407] = 6407, - [6408] = 5903, - [6409] = 5878, - [6410] = 6410, + [6408] = 6408, + [6409] = 6409, + [6410] = 6406, [6411] = 6411, - [6412] = 6412, - [6413] = 5879, - [6414] = 5878, + [6412] = 6409, + [6413] = 6411, + [6414] = 6406, [6415] = 6415, [6416] = 6416, [6417] = 6417, - [6418] = 5878, - [6419] = 5879, - [6420] = 5851, - [6421] = 6421, - [6422] = 4714, - [6423] = 5850, - [6424] = 6424, - [6425] = 5830, - [6426] = 6426, - [6427] = 5846, - [6428] = 5889, + [6418] = 6411, + [6419] = 6380, + [6420] = 6409, + [6421] = 6351, + [6422] = 6377, + [6423] = 6423, + [6424] = 6362, + [6425] = 6357, + [6426] = 976, + [6427] = 6374, + [6428] = 6397, [6429] = 6429, [6430] = 6430, [6431] = 6431, - [6432] = 5893, + [6432] = 6432, [6433] = 6433, [6434] = 6434, - [6435] = 6435, - [6436] = 6436, - [6437] = 6437, - [6438] = 6438, - [6439] = 5945, - [6440] = 5903, - [6441] = 5841, - [6442] = 5905, - [6443] = 5906, - [6444] = 6444, - [6445] = 5910, - [6446] = 5842, - [6447] = 5913, - [6448] = 5931, - [6449] = 5915, - [6450] = 6450, - [6451] = 6451, - [6452] = 6452, - [6453] = 6453, - [6454] = 6454, - [6455] = 6455, - [6456] = 5863, - [6457] = 6457, - [6458] = 6458, + [6435] = 6394, + [6436] = 6434, + [6437] = 6386, + [6438] = 6393, + [6439] = 6423, + [6440] = 6382, + [6441] = 6433, + [6442] = 6434, + [6443] = 6443, + [6444] = 6433, + [6445] = 6432, + [6446] = 6446, + [6447] = 6423, + [6448] = 6432, + [6449] = 6356, + [6450] = 6334, + [6451] = 6402, + [6452] = 6401, + [6453] = 988, + [6454] = 999, + [6455] = 977, + [6456] = 6456, + [6457] = 1001, + [6458] = 6372, [6459] = 6459, - [6460] = 6460, - [6461] = 6461, - [6462] = 6462, - [6463] = 6463, - [6464] = 6464, - [6465] = 6465, + [6460] = 6387, + [6461] = 6378, + [6462] = 990, + [6463] = 6371, + [6464] = 6369, + [6465] = 989, [6466] = 6466, - [6467] = 5804, - [6468] = 5819, - [6469] = 5821, - [6470] = 5936, - [6471] = 6471, - [6472] = 5938, - [6473] = 5953, - [6474] = 5940, + [6467] = 1005, + [6468] = 6357, + [6469] = 6362, + [6470] = 6345, + [6471] = 1141, + [6472] = 6472, + [6473] = 6380, + [6474] = 6474, [6475] = 6475, - [6476] = 5942, - [6477] = 6082, - [6478] = 5944, + [6476] = 6351, + [6477] = 6477, + [6478] = 6478, [6479] = 6479, - [6480] = 5951, - [6481] = 6481, - [6482] = 6482, - [6483] = 6483, - [6484] = 2699, + [6480] = 6354, + [6481] = 319, + [6482] = 6362, + [6483] = 986, + [6484] = 6429, [6485] = 6485, - [6486] = 6486, - [6487] = 6487, + [6486] = 994, + [6487] = 987, [6488] = 6488, - [6489] = 6489, - [6490] = 3531, - [6491] = 6491, + [6489] = 6356, + [6490] = 6357, + [6491] = 1086, [6492] = 6492, [6493] = 6493, - [6494] = 6494, - [6495] = 6482, - [6496] = 6496, - [6497] = 3548, - [6498] = 6498, - [6499] = 6499, - [6500] = 6481, + [6494] = 6492, + [6495] = 6485, + [6496] = 6488, + [6497] = 6380, + [6498] = 1006, + [6499] = 6429, + [6500] = 6349, [6501] = 6501, - [6502] = 3539, - [6503] = 6503, - [6504] = 6504, - [6505] = 6505, - [6506] = 6506, - [6507] = 6507, - [6508] = 6508, - [6509] = 6509, - [6510] = 6510, - [6511] = 6511, - [6512] = 6512, - [6513] = 6513, - [6514] = 6504, - [6515] = 6515, - [6516] = 6516, - [6517] = 6505, + [6502] = 6475, + [6503] = 3371, + [6504] = 6382, + [6505] = 6393, + [6506] = 6394, + [6507] = 6346, + [6508] = 1134, + [6509] = 6466, + [6510] = 6417, + [6511] = 1117, + [6512] = 6409, + [6513] = 6411, + [6514] = 3359, + [6515] = 6406, + [6516] = 6456, + [6517] = 6415, [6518] = 6518, - [6519] = 6519, + [6519] = 6408, [6520] = 6520, - [6521] = 6521, - [6522] = 6522, + [6521] = 6432, + [6522] = 6433, [6523] = 6523, [6524] = 6524, - [6525] = 6507, - [6526] = 6516, - [6527] = 6522, - [6528] = 4858, - [6529] = 6529, - [6530] = 6530, - [6531] = 6485, - [6532] = 6532, - [6533] = 4855, - [6534] = 4854, - [6535] = 6535, - [6536] = 6536, - [6537] = 6529, - [6538] = 6538, - [6539] = 6539, - [6540] = 6540, - [6541] = 6509, - [6542] = 6532, - [6543] = 6543, - [6544] = 6544, - [6545] = 6545, - [6546] = 6546, - [6547] = 6547, - [6548] = 6548, - [6549] = 6549, - [6550] = 6550, - [6551] = 6505, - [6552] = 6552, + [6525] = 6525, + [6526] = 6526, + [6527] = 1083, + [6528] = 6434, + [6529] = 1082, + [6530] = 6356, + [6531] = 6531, + [6532] = 6334, + [6533] = 6533, + [6534] = 6423, + [6535] = 6407, + [6536] = 1088, + [6537] = 6537, + [6538] = 6434, + [6539] = 982, + [6540] = 6433, + [6541] = 6402, + [6542] = 6401, + [6543] = 6417, + [6544] = 6526, + [6545] = 6336, + [6546] = 6430, + [6547] = 1079, + [6548] = 6432, + [6549] = 1151, + [6550] = 6423, + [6551] = 1081, + [6552] = 2513, [6553] = 6553, [6554] = 6554, - [6555] = 6508, - [6556] = 6556, - [6557] = 6510, + [6555] = 2517, + [6556] = 6429, + [6557] = 1003, [6558] = 6558, [6559] = 6559, - [6560] = 6518, - [6561] = 6561, - [6562] = 6562, - [6563] = 6563, - [6564] = 6564, + [6560] = 6338, + [6561] = 6334, + [6562] = 6417, + [6563] = 6526, + [6564] = 6415, [6565] = 6565, - [6566] = 6521, - [6567] = 6523, - [6568] = 6507, - [6569] = 6548, - [6570] = 6570, + [6566] = 6352, + [6567] = 6408, + [6568] = 6363, + [6569] = 6365, + [6570] = 1076, [6571] = 6571, - [6572] = 6532, - [6573] = 6573, - [6574] = 2660, - [6575] = 6565, - [6576] = 2659, - [6577] = 6577, - [6578] = 3511, - [6579] = 6579, - [6580] = 6580, - [6581] = 6515, + [6572] = 1150, + [6573] = 1148, + [6574] = 6574, + [6575] = 6415, + [6576] = 993, + [6577] = 6407, + [6578] = 6578, + [6579] = 6336, + [6580] = 6554, + [6581] = 6338, [6582] = 6582, - [6583] = 6583, - [6584] = 6505, - [6585] = 6585, - [6586] = 6586, - [6587] = 6587, - [6588] = 6588, + [6583] = 6352, + [6584] = 964, + [6585] = 6346, + [6586] = 6402, + [6587] = 6401, + [6588] = 981, [6589] = 6589, [6590] = 6590, - [6591] = 6591, - [6592] = 6591, - [6593] = 6511, - [6594] = 6594, - [6595] = 6550, - [6596] = 6590, - [6597] = 6507, - [6598] = 6598, - [6599] = 6583, - [6600] = 6554, + [6591] = 6349, + [6592] = 6387, + [6593] = 6593, + [6594] = 6373, + [6595] = 6378, + [6596] = 6375, + [6597] = 6363, + [6598] = 6365, + [6599] = 6369, + [6600] = 6600, [6601] = 6601, - [6602] = 6585, + [6602] = 6602, [6603] = 6603, - [6604] = 6498, - [6605] = 6605, - [6606] = 6486, - [6607] = 6562, - [6608] = 6561, - [6609] = 6550, - [6610] = 6594, - [6611] = 6594, - [6612] = 6511, - [6613] = 6613, - [6614] = 6614, - [6615] = 6615, - [6616] = 6603, - [6617] = 3510, - [6618] = 3532, + [6604] = 6604, + [6605] = 6377, + [6606] = 1140, + [6607] = 1139, + [6608] = 6387, + [6609] = 6373, + [6610] = 6357, + [6611] = 6378, + [6612] = 6604, + [6613] = 6371, + [6614] = 6375, + [6615] = 973, + [6616] = 6408, + [6617] = 6617, + [6618] = 6618, [6619] = 6619, - [6620] = 3554, - [6621] = 6586, - [6622] = 6552, - [6623] = 6623, - [6624] = 3561, - [6625] = 6546, - [6626] = 6626, - [6627] = 6544, - [6628] = 6543, - [6629] = 976, - [6630] = 6530, - [6631] = 6529, - [6632] = 6632, - [6633] = 6548, - [6634] = 6487, - [6635] = 6488, - [6636] = 6547, - [6637] = 6565, - [6638] = 6564, - [6639] = 6556, - [6640] = 3547, - [6641] = 6545, - [6642] = 6538, - [6643] = 6492, - [6644] = 6493, - [6645] = 6511, - [6646] = 6494, - [6647] = 6482, - [6648] = 6532, - [6649] = 6649, - [6650] = 6650, - [6651] = 6509, - [6652] = 6538, - [6653] = 6504, - [6654] = 6654, - [6655] = 6655, + [6620] = 6374, + [6621] = 6621, + [6622] = 1138, + [6623] = 6372, + [6624] = 6407, + [6625] = 6625, + [6626] = 1136, + [6627] = 6377, + [6628] = 6628, + [6629] = 6629, + [6630] = 6374, + [6631] = 6369, + [6632] = 1135, + [6633] = 980, + [6634] = 6367, + [6635] = 969, + [6636] = 6636, + [6637] = 6362, + [6638] = 6372, + [6639] = 6364, + [6640] = 979, + [6641] = 6641, + [6642] = 6642, + [6643] = 6643, + [6644] = 985, + [6645] = 6601, + [6646] = 6646, + [6647] = 978, + [6648] = 6342, + [6649] = 6343, + [6650] = 983, + [6651] = 975, + [6652] = 971, + [6653] = 6345, + [6654] = 6344, + [6655] = 6372, [6656] = 6656, - [6657] = 6508, + [6657] = 6643, [6658] = 6658, [6659] = 6659, - [6660] = 6510, - [6661] = 975, - [6662] = 997, - [6663] = 6523, - [6664] = 6521, - [6665] = 6665, - [6666] = 977, - [6667] = 978, + [6660] = 6660, + [6661] = 6661, + [6662] = 2475, + [6663] = 6374, + [6664] = 6533, + [6665] = 6619, + [6666] = 6666, + [6667] = 6617, [6668] = 6668, - [6669] = 6669, - [6670] = 6670, - [6671] = 6518, - [6672] = 979, - [6673] = 980, - [6674] = 6510, - [6675] = 6518, - [6676] = 6529, - [6677] = 6508, - [6678] = 6678, - [6679] = 310, - [6680] = 6680, - [6681] = 6521, - [6682] = 6523, - [6683] = 6530, - [6684] = 3536, - [6685] = 6594, - [6686] = 6550, - [6687] = 6687, - [6688] = 6516, - [6689] = 6522, - [6690] = 3537, - [6691] = 6486, - [6692] = 6603, + [6669] = 966, + [6670] = 6351, + [6671] = 6671, + [6672] = 6672, + [6673] = 6641, + [6674] = 6367, + [6675] = 3369, + [6676] = 6558, + [6677] = 3407, + [6678] = 4751, + [6679] = 6679, + [6680] = 3413, + [6681] = 3410, + [6682] = 3368, + [6683] = 6600, + [6684] = 1115, + [6685] = 1066, + [6686] = 6590, + [6687] = 6356, + [6688] = 6380, + [6689] = 6604, + [6690] = 6690, + [6691] = 1051, + [6692] = 1042, [6693] = 6601, - [6694] = 340, - [6695] = 6554, - [6696] = 6507, - [6697] = 6590, + [6694] = 6377, + [6695] = 6600, + [6696] = 6696, + [6697] = 3373, [6698] = 6698, - [6699] = 6583, - [6700] = 6700, - [6701] = 6498, - [6702] = 6538, - [6703] = 6509, - [6704] = 6591, - [6705] = 6532, - [6706] = 6586, - [6707] = 6556, - [6708] = 6585, - [6709] = 6556, - [6710] = 1118, - [6711] = 6564, - [6712] = 6529, - [6713] = 6485, - [6714] = 3512, - [6715] = 6715, - [6716] = 6716, - [6717] = 983, - [6718] = 6564, - [6719] = 6565, - [6720] = 6504, - [6721] = 984, + [6699] = 6590, + [6700] = 974, + [6701] = 3388, + [6702] = 6342, + [6703] = 6582, + [6704] = 6704, + [6705] = 6582, + [6706] = 6706, + [6707] = 6578, + [6708] = 1047, + [6709] = 6578, + [6710] = 6604, + [6711] = 967, + [6712] = 6712, + [6713] = 6713, + [6714] = 3402, + [6715] = 6601, + [6716] = 3399, + [6717] = 6717, + [6718] = 6600, + [6719] = 6719, + [6720] = 6590, + [6721] = 6721, [6722] = 6722, - [6723] = 6723, - [6724] = 985, - [6725] = 987, - [6726] = 6548, - [6727] = 6516, - [6728] = 6522, - [6729] = 988, - [6730] = 6485, - [6731] = 6731, - [6732] = 6573, - [6733] = 6519, - [6734] = 6562, - [6735] = 6605, - [6736] = 6496, - [6737] = 6737, - [6738] = 991, - [6739] = 993, - [6740] = 995, + [6723] = 6337, + [6724] = 3398, + [6725] = 6351, + [6726] = 6726, + [6727] = 6727, + [6728] = 6728, + [6729] = 6582, + [6730] = 6578, + [6731] = 1110, + [6732] = 6493, + [6733] = 1060, + [6734] = 1050, + [6735] = 1052, + [6736] = 1054, + [6737] = 6354, + [6738] = 6348, + [6739] = 6350, + [6740] = 6740, [6741] = 6741, - [6742] = 996, - [6743] = 6561, - [6744] = 1011, - [6745] = 6745, - [6746] = 998, - [6747] = 6747, - [6748] = 3551, + [6742] = 6359, + [6743] = 6741, + [6744] = 963, + [6745] = 1033, + [6746] = 6375, + [6747] = 6373, + [6748] = 3362, [6749] = 6749, - [6750] = 6515, - [6751] = 6585, - [6752] = 6752, - [6753] = 6753, + [6750] = 6345, + [6751] = 6751, + [6752] = 6354, + [6753] = 6533, [6754] = 6754, - [6755] = 6755, - [6756] = 3562, - [6757] = 6585, - [6758] = 6758, - [6759] = 6505, - [6760] = 6760, - [6761] = 6761, - [6762] = 6762, - [6763] = 6763, - [6764] = 6731, - [6765] = 1001, - [6766] = 3546, - [6767] = 6767, - [6768] = 6768, - [6769] = 1142, - [6770] = 6496, - [6771] = 1143, - [6772] = 1145, - [6773] = 1002, - [6774] = 6774, - [6775] = 6482, - [6776] = 6776, - [6777] = 6494, - [6778] = 6493, - [6779] = 6558, + [6755] = 6354, + [6756] = 6660, + [6757] = 6757, + [6758] = 6345, + [6759] = 6759, + [6760] = 6382, + [6761] = 6344, + [6762] = 6565, + [6763] = 3394, + [6764] = 6359, + [6765] = 1039, + [6766] = 1046, + [6767] = 6751, + [6768] = 3397, + [6769] = 6493, + [6770] = 6401, + [6771] = 6350, + [6772] = 6712, + [6773] = 6354, + [6774] = 6348, + [6775] = 6775, + [6776] = 6712, + [6777] = 6578, + [6778] = 6778, + [6779] = 6582, [6780] = 6780, - [6781] = 6492, - [6782] = 6782, - [6783] = 6552, - [6784] = 6546, - [6785] = 6785, - [6786] = 6698, - [6787] = 6488, - [6788] = 6487, - [6789] = 6544, - [6790] = 6543, - [6791] = 6507, - [6792] = 6539, - [6793] = 6483, - [6794] = 3553, + [6781] = 6660, + [6782] = 6393, + [6783] = 6394, + [6784] = 6359, + [6785] = 6337, + [6786] = 6350, + [6787] = 6787, + [6788] = 6590, + [6789] = 6348, + [6790] = 6790, + [6791] = 6791, + [6792] = 6396, + [6793] = 6741, + [6794] = 6337, [6795] = 6795, - [6796] = 3555, + [6796] = 1064, [6797] = 6797, - [6798] = 6797, - [6799] = 6512, - [6800] = 6800, - [6801] = 6513, - [6802] = 6562, - [6803] = 6563, - [6804] = 6804, - [6805] = 3528, - [6806] = 1006, - [6807] = 6513, - [6808] = 6539, - [6809] = 6545, - [6810] = 6481, - [6811] = 6543, - [6812] = 6544, - [6813] = 6535, - [6814] = 6546, - [6815] = 6815, - [6816] = 6816, - [6817] = 6511, - [6818] = 6594, - [6819] = 6552, - [6820] = 6550, - [6821] = 6494, - [6822] = 6558, - [6823] = 6553, - [6824] = 6824, - [6825] = 6825, - [6826] = 6493, - [6827] = 6577, - [6828] = 6579, - [6829] = 6582, - [6830] = 6590, - [6831] = 6481, - [6832] = 6501, - [6833] = 6561, - [6834] = 6591, - [6835] = 6835, - [6836] = 6562, - [6837] = 6512, - [6838] = 1008, - [6839] = 6492, - [6840] = 1010, - [6841] = 6586, - [6842] = 1012, - [6843] = 1013, - [6844] = 325, - [6845] = 6797, - [6846] = 1015, - [6847] = 6737, - [6848] = 6483, - [6849] = 6849, - [6850] = 6585, - [6851] = 1016, - [6852] = 6545, - [6853] = 6549, - [6854] = 1017, - [6855] = 1021, - [6856] = 6561, - [6857] = 6586, - [6858] = 6591, + [6798] = 6398, + [6799] = 3361, + [6800] = 6403, + [6801] = 1059, + [6802] = 6802, + [6803] = 6717, + [6804] = 6728, + [6805] = 6805, + [6806] = 1032, + [6807] = 6679, + [6808] = 6558, + [6809] = 6600, + [6810] = 6726, + [6811] = 6811, + [6812] = 4711, + [6813] = 6601, + [6814] = 6754, + [6815] = 6604, + [6816] = 6719, + [6817] = 1048, + [6818] = 6409, + [6819] = 6741, + [6820] = 6820, + [6821] = 6558, + [6822] = 6533, + [6823] = 1053, + [6824] = 6344, + [6825] = 6411, + [6826] = 6406, + [6827] = 6345, + [6828] = 6344, + [6829] = 6367, + [6830] = 6672, + [6831] = 6416, + [6832] = 1130, + [6833] = 4704, + [6834] = 4705, + [6835] = 6371, + [6836] = 1030, + [6837] = 6402, + [6838] = 1029, + [6839] = 310, + [6840] = 6343, + [6841] = 1073, + [6842] = 6397, + [6843] = 1087, + [6844] = 1093, + [6845] = 1026, + [6846] = 6386, + [6847] = 6372, + [6848] = 1096, + [6849] = 1080, + [6850] = 6374, + [6851] = 6719, + [6852] = 6852, + [6853] = 6377, + [6854] = 6443, + [6855] = 1099, + [6856] = 6740, + [6857] = 6712, + [6858] = 6858, [6859] = 6859, - [6860] = 6590, - [6861] = 1023, - [6862] = 1024, - [6863] = 6863, - [6864] = 6487, - [6865] = 6488, - [6866] = 6800, - [6867] = 6550, - [6868] = 6594, - [6869] = 6747, - [6870] = 1026, - [6871] = 6737, - [6872] = 6511, - [6873] = 1029, - [6874] = 6492, - [6875] = 6523, - [6876] = 6521, - [6877] = 6493, - [6878] = 6760, - [6879] = 1175, - [6880] = 1176, - [6881] = 6505, - [6882] = 6782, - [6883] = 1177, - [6884] = 6547, - [6885] = 6562, - [6886] = 6561, - [6887] = 6747, - [6888] = 6494, - [6889] = 6760, - [6890] = 3534, - [6891] = 6782, - [6892] = 1179, - [6893] = 6558, - [6894] = 1180, - [6895] = 1105, - [6896] = 1030, - [6897] = 6482, - [6898] = 1184, - [6899] = 1185, - [6900] = 1187, - [6901] = 6547, - [6902] = 6700, - [6903] = 1188, + [6860] = 1055, + [6861] = 3391, + [6862] = 6862, + [6863] = 6660, + [6864] = 6367, + [6865] = 6369, + [6866] = 6371, + [6867] = 6378, + [6868] = 6387, + [6869] = 6387, + [6870] = 6401, + [6871] = 1069, + [6872] = 1109, + [6873] = 6402, + [6874] = 6874, + [6875] = 6741, + [6876] = 6359, + [6877] = 314, + [6878] = 6378, + [6879] = 6407, + [6880] = 1085, + [6881] = 6408, + [6882] = 6415, + [6883] = 6417, + [6884] = 6726, + [6885] = 6885, + [6886] = 6886, + [6887] = 6429, + [6888] = 6432, + [6889] = 1089, + [6890] = 1122, + [6891] = 6342, + [6892] = 6343, + [6893] = 6433, + [6894] = 1119, + [6895] = 6434, + [6896] = 6375, + [6897] = 6373, + [6898] = 6719, + [6899] = 6899, + [6900] = 6423, + [6901] = 6350, + [6902] = 1118, + [6903] = 3408, [6904] = 6904, - [6905] = 6546, - [6906] = 6544, - [6907] = 1106, - [6908] = 6496, - [6909] = 6758, - [6910] = 6543, - [6911] = 6911, - [6912] = 6912, - [6913] = 1103, - [6914] = 6558, - [6915] = 1102, - [6916] = 6565, - [6917] = 6518, - [6918] = 3507, - [6919] = 6919, - [6920] = 6564, - [6921] = 1031, - [6922] = 6556, - [6923] = 6670, - [6924] = 6924, - [6925] = 6780, - [6926] = 6549, - [6927] = 1035, - [6928] = 6552, - [6929] = 6904, - [6930] = 6549, - [6931] = 6931, - [6932] = 6932, - [6933] = 6933, - [6934] = 6546, - [6935] = 6532, + [6905] = 6533, + [6906] = 3406, + [6907] = 6907, + [6908] = 6404, + [6909] = 6518, + [6910] = 6348, + [6911] = 6365, + [6912] = 6371, + [6913] = 6363, + [6914] = 970, + [6915] = 6369, + [6916] = 1123, + [6917] = 6357, + [6918] = 6558, + [6919] = 1009, + [6920] = 3404, + [6921] = 6520, + [6922] = 6719, + [6923] = 6923, + [6924] = 6362, + [6925] = 6523, + [6926] = 6926, + [6927] = 6533, + [6928] = 6726, + [6929] = 3387, + [6930] = 6337, + [6931] = 6365, + [6932] = 6741, + [6933] = 6554, + [6934] = 6352, + [6935] = 6935, [6936] = 6936, - [6937] = 6544, - [6938] = 6938, - [6939] = 6780, - [6940] = 6543, - [6941] = 1027, - [6942] = 4972, - [6943] = 1022, - [6944] = 1020, - [6945] = 6912, - [6946] = 6932, - [6947] = 1019, - [6948] = 6948, - [6949] = 6509, - [6950] = 6538, - [6951] = 6951, - [6952] = 6952, + [6937] = 6660, + [6938] = 6380, + [6939] = 6602, + [6940] = 6382, + [6941] = 6393, + [6942] = 6712, + [6943] = 6524, + [6944] = 6338, + [6945] = 6363, + [6946] = 6726, + [6947] = 6394, + [6948] = 6343, + [6949] = 6342, + [6950] = 1112, + [6951] = 6554, + [6952] = 6336, [6953] = 6953, - [6954] = 1036, - [6955] = 6919, - [6956] = 1094, - [6957] = 6938, - [6958] = 3560, - [6959] = 1037, - [6960] = 1093, - [6961] = 6948, - [6962] = 6758, - [6963] = 1092, - [6964] = 6951, - [6965] = 6952, - [6966] = 6953, - [6967] = 6523, - [6968] = 6539, - [6969] = 6969, - [6970] = 6970, - [6971] = 6521, + [6954] = 1114, + [6955] = 1010, + [6956] = 1126, + [6957] = 1011, + [6958] = 1129, + [6959] = 6336, + [6960] = 6409, + [6961] = 6411, + [6962] = 6406, + [6963] = 6963, + [6964] = 6338, + [6965] = 1012, + [6966] = 3386, + [6967] = 6397, + [6968] = 1137, + [6969] = 6386, + [6970] = 1014, + [6971] = 6621, [6972] = 6972, - [6973] = 1039, - [6974] = 1000, - [6975] = 6539, - [6976] = 6700, - [6977] = 6977, - [6978] = 6978, + [6973] = 6554, + [6974] = 6628, + [6975] = 6574, + [6976] = 6642, + [6977] = 1144, + [6978] = 1015, [6979] = 6979, - [6980] = 6488, - [6981] = 6859, - [6982] = 6513, - [6983] = 1091, - [6984] = 6512, - [6985] = 6985, - [6986] = 982, - [6987] = 1090, - [6988] = 1014, - [6989] = 6989, - [6990] = 6518, - [6991] = 965, - [6992] = 969, - [6993] = 6797, - [6994] = 6483, - [6995] = 3533, + [6980] = 1017, + [6981] = 1018, + [6982] = 1022, + [6983] = 6983, + [6984] = 1154, + [6985] = 1027, + [6986] = 6352, + [6987] = 6862, + [6988] = 6988, + [6989] = 1025, + [6990] = 6990, + [6991] = 6991, + [6992] = 6992, + [6993] = 6993, + [6994] = 6994, + [6995] = 6995, [6996] = 6996, - [6997] = 970, - [6998] = 6668, - [6999] = 6510, - [7000] = 6665, - [7001] = 6510, + [6997] = 6997, + [6998] = 6998, + [6999] = 6999, + [7000] = 7000, + [7001] = 7001, [7002] = 7002, - [7003] = 6487, - [7004] = 6508, - [7005] = 962, - [7006] = 6859, - [7007] = 989, + [7003] = 7003, + [7004] = 7004, + [7005] = 7005, + [7006] = 7000, + [7007] = 7007, [7008] = 7008, - [7009] = 6919, - [7010] = 974, - [7011] = 6508, - [7012] = 6737, - [7013] = 6487, - [7014] = 6488, - [7015] = 1171, - [7016] = 981, + [7009] = 6993, + [7010] = 6999, + [7011] = 7011, + [7012] = 7001, + [7013] = 7013, + [7014] = 6997, + [7015] = 6990, + [7016] = 7016, [7017] = 7017, [7018] = 7018, - [7019] = 6552, - [7020] = 990, - [7021] = 6493, - [7022] = 6494, - [7023] = 1041, - [7024] = 326, - [7025] = 7025, - [7026] = 1042, - [7027] = 1043, - [7028] = 6501, - [7029] = 1025, - [7030] = 1044, - [7031] = 6515, - [7032] = 1046, - [7033] = 7033, - [7034] = 1048, - [7035] = 1040, + [7019] = 7019, + [7020] = 6991, + [7021] = 7021, + [7022] = 7022, + [7023] = 7023, + [7024] = 7024, + [7025] = 7011, + [7026] = 7026, + [7027] = 7027, + [7028] = 7028, + [7029] = 7029, + [7030] = 7030, + [7031] = 7031, + [7032] = 7031, + [7033] = 7030, + [7034] = 7029, + [7035] = 7035, [7036] = 7036, - [7037] = 1049, - [7038] = 1051, - [7039] = 1193, - [7040] = 1052, - [7041] = 6482, - [7042] = 1192, - [7043] = 6795, - [7044] = 6768, - [7045] = 1054, - [7046] = 6767, - [7047] = 1055, - [7048] = 6486, - [7049] = 6762, - [7050] = 6603, - [7051] = 1056, - [7052] = 1061, - [7053] = 1062, - [7054] = 6601, - [7055] = 1063, - [7056] = 6554, - [7057] = 1074, - [7058] = 6496, - [7059] = 1075, - [7060] = 6919, - [7061] = 1076, - [7062] = 6583, - [7063] = 6498, - [7064] = 1085, - [7065] = 1181, - [7066] = 1178, - [7067] = 6513, - [7068] = 6780, - [7069] = 1086, - [7070] = 1174, - [7071] = 1088, - [7072] = 1173, - [7073] = 6549, - [7074] = 6481, - [7075] = 6501, - [7076] = 1172, - [7077] = 1097, - [7078] = 6758, - [7079] = 6498, - [7080] = 6583, - [7081] = 6700, - [7082] = 1107, - [7083] = 7083, + [7037] = 7028, + [7038] = 7023, + [7039] = 7027, + [7040] = 7040, + [7041] = 7041, + [7042] = 7042, + [7043] = 7043, + [7044] = 7017, + [7045] = 7016, + [7046] = 7011, + [7047] = 7047, + [7048] = 7048, + [7049] = 7049, + [7050] = 7022, + [7051] = 7051, + [7052] = 7052, + [7053] = 7053, + [7054] = 7054, + [7055] = 7055, + [7056] = 7056, + [7057] = 7057, + [7058] = 7058, + [7059] = 7059, + [7060] = 7004, + [7061] = 7061, + [7062] = 7062, + [7063] = 7018, + [7064] = 7064, + [7065] = 7065, + [7066] = 7066, + [7067] = 7067, + [7068] = 6996, + [7069] = 6995, + [7070] = 7070, + [7071] = 6994, + [7072] = 7072, + [7073] = 7073, + [7074] = 6992, + [7075] = 7075, + [7076] = 7035, + [7077] = 6998, + [7078] = 7078, + [7079] = 7079, + [7080] = 7080, + [7081] = 6990, + [7082] = 7016, + [7083] = 7017, [7084] = 7084, - [7085] = 7085, - [7086] = 6565, - [7087] = 1170, - [7088] = 6737, - [7089] = 1110, - [7090] = 1111, - [7091] = 6859, - [7092] = 6529, - [7093] = 1169, - [7094] = 1167, - [7095] = 1112, - [7096] = 1166, - [7097] = 6859, - [7098] = 6619, - [7099] = 1113, - [7100] = 1165, - [7101] = 1164, - [7102] = 1114, - [7103] = 6737, + [7085] = 7004, + [7086] = 7086, + [7087] = 7018, + [7088] = 7022, + [7089] = 7023, + [7090] = 7090, + [7091] = 7075, + [7092] = 7092, + [7093] = 7047, + [7094] = 7036, + [7095] = 7029, + [7096] = 7030, + [7097] = 7097, + [7098] = 7031, + [7099] = 6996, + [7100] = 6995, + [7101] = 6994, + [7102] = 7067, + [7103] = 7028, [7104] = 7104, - [7105] = 6700, - [7106] = 6504, - [7107] = 1163, + [7105] = 7027, + [7106] = 6992, + [7107] = 7107, [7108] = 7108, - [7109] = 6499, - [7110] = 6492, - [7111] = 6758, - [7112] = 6489, - [7113] = 1081, - [7114] = 1162, - [7115] = 6549, - [7116] = 1080, - [7117] = 1079, - [7118] = 1160, - [7119] = 7119, - [7120] = 6780, - [7121] = 6515, - [7122] = 1073, - [7123] = 1072, - [7124] = 1158, - [7125] = 6919, - [7126] = 1071, - [7127] = 6501, - [7128] = 1070, - [7129] = 1069, - [7130] = 6601, - [7131] = 1067, - [7132] = 1156, - [7133] = 1066, - [7134] = 6483, - [7135] = 1065, - [7136] = 6504, - [7137] = 1155, - [7138] = 1064, - [7139] = 1154, - [7140] = 7140, - [7141] = 6613, - [7142] = 1136, - [7143] = 7143, - [7144] = 1137, - [7145] = 6512, - [7146] = 1153, - [7147] = 1147, - [7148] = 6548, - [7149] = 6516, - [7150] = 6522, - [7151] = 1144, - [7152] = 1047, - [7153] = 1060, - [7154] = 6485, - [7155] = 968, - [7156] = 6536, - [7157] = 7157, - [7158] = 6486, - [7159] = 6752, - [7160] = 6603, - [7161] = 6761, - [7162] = 6601, - [7163] = 6554, - [7164] = 6797, - [7165] = 7165, - [7166] = 1138, - [7167] = 1139, - [7168] = 7108, - [7169] = 7169, - [7170] = 1140, - [7171] = 6978, - [7172] = 972, + [7109] = 7109, + [7110] = 7110, + [7111] = 7111, + [7112] = 7011, + [7113] = 7113, + [7114] = 7114, + [7115] = 7115, + [7116] = 7022, + [7117] = 7117, + [7118] = 7117, + [7119] = 7115, + [7120] = 7120, + [7121] = 7121, + [7122] = 7122, + [7123] = 7113, + [7124] = 7124, + [7125] = 7111, + [7126] = 7126, + [7127] = 7127, + [7128] = 7018, + [7129] = 7018, + [7130] = 7130, + [7131] = 7073, + [7132] = 7110, + [7133] = 7109, + [7134] = 7107, + [7135] = 7135, + [7136] = 7075, + [7137] = 7040, + [7138] = 7042, + [7139] = 7072, + [7140] = 7036, + [7141] = 7047, + [7142] = 7142, + [7143] = 7016, + [7144] = 7017, + [7145] = 6992, + [7146] = 7075, + [7147] = 7073, + [7148] = 7023, + [7149] = 7149, + [7150] = 7027, + [7151] = 7029, + [7152] = 6992, + [7153] = 7031, + [7154] = 7073, + [7155] = 7086, + [7156] = 7080, + [7157] = 7028, + [7158] = 7079, + [7159] = 7027, + [7160] = 7075, + [7161] = 7011, + [7162] = 7086, + [7163] = 6992, + [7164] = 7022, + [7165] = 7022, + [7166] = 7073, + [7167] = 7167, + [7168] = 7168, + [7169] = 7078, + [7170] = 7011, + [7171] = 7121, + [7172] = 6995, [7173] = 7173, - [7174] = 7174, - [7175] = 7175, - [7176] = 7176, - [7177] = 7177, + [7174] = 7066, + [7175] = 7027, + [7176] = 7028, + [7177] = 7065, [7178] = 7178, - [7179] = 7179, - [7180] = 7180, - [7181] = 7181, - [7182] = 7182, - [7183] = 7183, - [7184] = 7184, + [7179] = 7117, + [7180] = 7028, + [7181] = 7064, + [7182] = 7121, + [7183] = 7115, + [7184] = 7113, [7185] = 7185, [7186] = 7186, - [7187] = 7187, - [7188] = 7188, + [7187] = 7075, + [7188] = 7111, [7189] = 7189, - [7190] = 7190, - [7191] = 7191, - [7192] = 7177, - [7193] = 7193, + [7190] = 7110, + [7191] = 6992, + [7192] = 7053, + [7193] = 7073, [7194] = 7194, - [7195] = 7195, + [7195] = 7031, [7196] = 7196, - [7197] = 7178, + [7197] = 7109, [7198] = 7198, - [7199] = 7199, - [7200] = 7200, + [7199] = 7107, + [7200] = 6994, [7201] = 7201, - [7202] = 7202, - [7203] = 7203, - [7204] = 7179, - [7205] = 7175, - [7206] = 7206, - [7207] = 7207, - [7208] = 7208, - [7209] = 7209, - [7210] = 7210, - [7211] = 7211, - [7212] = 7212, - [7213] = 7176, - [7214] = 7176, - [7215] = 7211, - [7216] = 7212, - [7217] = 7180, - [7218] = 7206, - [7219] = 7219, - [7220] = 7208, - [7221] = 7221, - [7222] = 7207, - [7223] = 7223, - [7224] = 7200, - [7225] = 7181, - [7226] = 7199, - [7227] = 7198, - [7228] = 7183, - [7229] = 7203, - [7230] = 7230, - [7231] = 7231, - [7232] = 7232, - [7233] = 7201, - [7234] = 7234, - [7235] = 7235, - [7236] = 7236, - [7237] = 7212, - [7238] = 7184, - [7239] = 7239, - [7240] = 7240, - [7241] = 7241, - [7242] = 7186, - [7243] = 7188, - [7244] = 7244, - [7245] = 7189, - [7246] = 7194, - [7247] = 7187, - [7248] = 7177, - [7249] = 7249, - [7250] = 7190, - [7251] = 7178, - [7252] = 7221, - [7253] = 7179, - [7254] = 7178, - [7255] = 7196, - [7256] = 7177, - [7257] = 4813, - [7258] = 7179, - [7259] = 7209, - [7260] = 7175, - [7261] = 7193, - [7262] = 7187, - [7263] = 7263, - [7264] = 7198, - [7265] = 7199, - [7266] = 7200, - [7267] = 7267, - [7268] = 7268, - [7269] = 7187, - [7270] = 7263, - [7271] = 7271, - [7272] = 7206, - [7273] = 7271, - [7274] = 7274, - [7275] = 7219, - [7276] = 7276, - [7277] = 7211, - [7278] = 7212, - [7279] = 7176, - [7280] = 7280, - [7281] = 7211, - [7282] = 7282, - [7283] = 7203, - [7284] = 7274, - [7285] = 7223, - [7286] = 7208, - [7287] = 7287, - [7288] = 7207, - [7289] = 7289, - [7290] = 7280, - [7291] = 7230, - [7292] = 7232, - [7293] = 7234, - [7294] = 7294, - [7295] = 7203, - [7296] = 7296, - [7297] = 7194, - [7298] = 7298, - [7299] = 7201, - [7300] = 7300, - [7301] = 7268, - [7302] = 7235, + [7202] = 6995, + [7203] = 6994, + [7204] = 7030, + [7205] = 6995, + [7206] = 6996, + [7207] = 6996, + [7208] = 7061, + [7209] = 7029, + [7210] = 7117, + [7211] = 7058, + [7212] = 7072, + [7213] = 7115, + [7214] = 7113, + [7215] = 7004, + [7216] = 7216, + [7217] = 7198, + [7218] = 6994, + [7219] = 7111, + [7220] = 7173, + [7221] = 7019, + [7222] = 7168, + [7223] = 7142, + [7224] = 7110, + [7225] = 7109, + [7226] = 7107, + [7227] = 7042, + [7228] = 7072, + [7229] = 7036, + [7230] = 6996, + [7231] = 7008, + [7232] = 7047, + [7233] = 7049, + [7234] = 7108, + [7235] = 7075, + [7236] = 7031, + [7237] = 7023, + [7238] = 7238, + [7239] = 7017, + [7240] = 924, + [7241] = 7216, + [7242] = 7016, + [7243] = 6990, + [7244] = 7004, + [7245] = 7245, + [7246] = 7021, + [7247] = 7036, + [7248] = 7086, + [7249] = 7084, + [7250] = 7080, + [7251] = 7079, + [7252] = 7252, + [7253] = 7084, + [7254] = 7004, + [7255] = 7073, + [7256] = 7245, + [7257] = 7047, + [7258] = 7078, + [7259] = 7035, + [7260] = 6996, + [7261] = 6995, + [7262] = 7067, + [7263] = 6994, + [7264] = 7066, + [7265] = 7265, + [7266] = 7065, + [7267] = 7024, + [7268] = 7064, + [7269] = 7061, + [7270] = 7058, + [7271] = 7080, + [7272] = 7026, + [7273] = 7004, + [7274] = 7084, + [7275] = 7238, + [7276] = 7040, + [7277] = 7042, + [7278] = 7079, + [7279] = 7042, + [7280] = 7040, + [7281] = 7040, + [7282] = 7121, + [7283] = 7030, + [7284] = 6994, + [7285] = 7040, + [7286] = 7042, + [7287] = 7042, + [7288] = 7121, + [7289] = 6995, + [7290] = 7053, + [7291] = 7049, + [7292] = 7040, + [7293] = 6997, + [7294] = 7029, + [7295] = 7040, + [7296] = 7042, + [7297] = 7000, + [7298] = 6997, + [7299] = 6996, + [7300] = 6993, + [7301] = 7078, + [7302] = 7302, [7303] = 7303, - [7304] = 7236, - [7305] = 7201, - [7306] = 7239, - [7307] = 7240, - [7308] = 7308, - [7309] = 7241, - [7310] = 7310, - [7311] = 7203, - [7312] = 7194, - [7313] = 7182, - [7314] = 7202, - [7315] = 7315, - [7316] = 7316, - [7317] = 7268, - [7318] = 7310, - [7319] = 7207, - [7320] = 7208, - [7321] = 7321, - [7322] = 7322, - [7323] = 7323, - [7324] = 7231, - [7325] = 7325, - [7326] = 7199, - [7327] = 7200, - [7328] = 7189, - [7329] = 7316, - [7330] = 7211, - [7331] = 7206, + [7304] = 7048, + [7305] = 6997, + [7306] = 7040, + [7307] = 7307, + [7308] = 7035, + [7309] = 7042, + [7310] = 6999, + [7311] = 7041, + [7312] = 7121, + [7313] = 7001, + [7314] = 950, + [7315] = 7067, + [7316] = 7053, + [7317] = 7317, + [7318] = 7075, + [7319] = 6992, + [7320] = 7066, + [7321] = 6994, + [7322] = 6995, + [7323] = 6996, + [7324] = 7065, + [7325] = 7049, + [7326] = 7064, + [7327] = 7041, + [7328] = 6997, + [7329] = 7040, + [7330] = 7042, + [7331] = 7004, [7332] = 7332, - [7333] = 7296, - [7334] = 7212, - [7335] = 7298, - [7336] = 7211, - [7337] = 7176, - [7338] = 7338, - [7339] = 7339, - [7340] = 7208, - [7341] = 7212, - [7342] = 7207, - [7343] = 7271, - [7344] = 7203, - [7345] = 7345, - [7346] = 7346, - [7347] = 7201, - [7348] = 7348, - [7349] = 7231, - [7350] = 7350, - [7351] = 7350, - [7352] = 7348, - [7353] = 7206, - [7354] = 7346, - [7355] = 7339, - [7356] = 7338, - [7357] = 7200, - [7358] = 7199, - [7359] = 7198, - [7360] = 7208, - [7361] = 7361, - [7362] = 7268, - [7363] = 7363, - [7364] = 7325, - [7365] = 7280, - [7366] = 7366, - [7367] = 7280, - [7368] = 7338, - [7369] = 7339, - [7370] = 7193, - [7371] = 7298, - [7372] = 7372, - [7373] = 7296, - [7374] = 7175, - [7375] = 7346, - [7376] = 7209, - [7377] = 7377, - [7378] = 7378, - [7379] = 7231, - [7380] = 7271, - [7381] = 7298, - [7382] = 7296, + [7333] = 7000, + [7334] = 7023, + [7335] = 6993, + [7336] = 7336, + [7337] = 7121, + [7338] = 6999, + [7339] = 7194, + [7340] = 7001, + [7341] = 7048, + [7342] = 7061, + [7343] = 7054, + [7344] = 6997, + [7345] = 7019, + [7346] = 7189, + [7347] = 7194, + [7348] = 7040, + [7349] = 7042, + [7350] = 6991, + [7351] = 7351, + [7352] = 7004, + [7353] = 7026, + [7354] = 7021, + [7355] = 7216, + [7356] = 7198, + [7357] = 7056, + [7358] = 7024, + [7359] = 7073, + [7360] = 7173, + [7361] = 7059, + [7362] = 7168, + [7363] = 7142, + [7364] = 7008, + [7365] = 7084, + [7366] = 7108, + [7367] = 7024, + [7368] = 7238, + [7369] = 7021, + [7370] = 6992, + [7371] = 6991, + [7372] = 7019, + [7373] = 7026, + [7374] = 7072, + [7375] = 7375, + [7376] = 7017, + [7377] = 7016, + [7378] = 7073, + [7379] = 7189, + [7380] = 7380, + [7381] = 7189, + [7382] = 7194, [7383] = 7383, - [7384] = 7348, - [7385] = 7298, - [7386] = 7177, - [7387] = 7296, - [7388] = 7178, - [7389] = 7179, - [7390] = 7350, - [7391] = 7241, - [7392] = 7240, - [7393] = 7393, - [7394] = 7239, - [7395] = 7236, - [7396] = 7235, - [7397] = 7234, - [7398] = 7187, - [7399] = 7276, - [7400] = 7308, - [7401] = 7298, - [7402] = 7296, - [7403] = 7322, - [7404] = 7232, - [7405] = 7323, - [7406] = 7332, - [7407] = 7407, - [7408] = 7230, - [7409] = 7223, - [7410] = 7274, - [7411] = 7219, - [7412] = 7196, - [7413] = 7413, - [7414] = 7195, - [7415] = 7415, - [7416] = 7221, - [7417] = 7189, - [7418] = 7193, - [7419] = 7207, - [7420] = 7188, - [7421] = 7345, - [7422] = 7186, - [7423] = 7423, - [7424] = 7184, - [7425] = 7183, - [7426] = 7300, - [7427] = 7298, - [7428] = 7296, - [7429] = 7181, - [7430] = 7180, - [7431] = 7431, - [7432] = 7194, - [7433] = 7244, - [7434] = 7316, - [7435] = 7315, - [7436] = 7202, - [7437] = 7182, - [7438] = 7209, - [7439] = 7300, - [7440] = 7298, - [7441] = 7441, - [7442] = 7338, - [7443] = 7443, - [7444] = 7339, - [7445] = 7296, - [7446] = 7175, - [7447] = 7346, - [7448] = 7348, - [7449] = 7350, - [7450] = 7209, - [7451] = 7244, - [7452] = 7180, - [7453] = 7181, - [7454] = 7183, - [7455] = 7455, - [7456] = 7456, - [7457] = 7315, - [7458] = 7184, - [7459] = 7186, - [7460] = 7188, - [7461] = 7300, - [7462] = 7383, - [7463] = 7244, - [7464] = 7189, - [7465] = 7465, - [7466] = 7466, - [7467] = 7190, - [7468] = 7221, - [7469] = 7206, - [7470] = 7470, - [7471] = 7298, - [7472] = 7296, - [7473] = 7473, - [7474] = 7177, - [7475] = 7431, - [7476] = 7377, - [7477] = 7477, - [7478] = 7478, - [7479] = 7178, - [7480] = 7179, - [7481] = 7187, - [7482] = 7263, - [7483] = 7300, - [7484] = 7209, - [7485] = 7298, - [7486] = 7175, - [7487] = 7296, - [7488] = 7488, - [7489] = 7244, - [7490] = 7296, - [7491] = 7196, - [7492] = 7298, - [7493] = 7263, - [7494] = 7494, - [7495] = 7495, - [7496] = 7200, - [7497] = 7199, - [7498] = 7498, - [7499] = 7372, - [7500] = 7325, - [7501] = 7193, - [7502] = 7175, - [7503] = 7187, - [7504] = 7177, - [7505] = 7178, - [7506] = 7179, - [7507] = 7300, - [7508] = 7508, - [7509] = 7193, - [7510] = 7175, - [7511] = 7209, - [7512] = 7182, - [7513] = 7202, - [7514] = 7187, - [7515] = 7315, - [7516] = 7193, - [7517] = 7517, - [7518] = 7193, - [7519] = 7210, - [7520] = 7179, - [7521] = 7178, - [7522] = 7177, - [7523] = 7523, - [7524] = 7431, - [7525] = 7198, - [7526] = 7339, - [7527] = 7346, - [7528] = 7528, - [7529] = 7372, - [7530] = 7377, - [7531] = 7531, - [7532] = 7532, - [7533] = 7316, - [7534] = 7315, - [7535] = 7441, - [7536] = 7202, - [7537] = 7239, - [7538] = 918, - [7539] = 7276, - [7540] = 7308, - [7541] = 7182, - [7542] = 7542, - [7543] = 7322, - [7544] = 7244, - [7545] = 7323, - [7546] = 7332, - [7547] = 7195, - [7548] = 7241, - [7549] = 7173, - [7550] = 7240, - [7551] = 7345, - [7552] = 7350, - [7553] = 7236, - [7554] = 7348, - [7555] = 7316, - [7556] = 7346, - [7557] = 7300, - [7558] = 7339, - [7559] = 7235, - [7560] = 7244, - [7561] = 7209, - [7562] = 7298, - [7563] = 7234, - [7564] = 7372, - [7565] = 7377, - [7566] = 7296, - [7567] = 7232, - [7568] = 7300, - [7569] = 7338, - [7570] = 7268, - [7571] = 7230, - [7572] = 7223, - [7573] = 7276, - [7574] = 7308, - [7575] = 7366, - [7576] = 7300, - [7577] = 7322, - [7578] = 7173, - [7579] = 7323, - [7580] = 7332, - [7581] = 7195, - [7582] = 7274, - [7583] = 7173, - [7584] = 7244, - [7585] = 7345, - [7586] = 7325, - [7587] = 7190, - [7588] = 7201, - [7589] = 7280, - [7590] = 7180, - [7591] = 7298, - [7592] = 7372, - [7593] = 7377, - [7594] = 7181, - [7595] = 7183, - [7596] = 7296, - [7597] = 7184, - [7598] = 7186, - [7599] = 7188, - [7600] = 7244, - [7601] = 7276, - [7602] = 7308, - [7603] = 7190, - [7604] = 7221, - [7605] = 7322, - [7606] = 7196, - [7607] = 7323, - [7608] = 7332, - [7609] = 7195, - [7610] = 7219, - [7611] = 7173, - [7612] = 7219, - [7613] = 7345, - [7614] = 7274, - [7615] = 7263, - [7616] = 7187, - [7617] = 7372, - [7618] = 7377, - [7619] = 7223, - [7620] = 923, - [7621] = 7179, - [7622] = 7230, - [7623] = 7178, - [7624] = 7276, - [7625] = 7308, - [7626] = 7177, - [7627] = 7322, - [7628] = 7232, - [7629] = 7323, - [7630] = 7332, - [7631] = 7234, - [7632] = 7173, - [7633] = 7345, - [7634] = 7235, - [7635] = 7236, - [7636] = 7239, - [7637] = 7473, - [7638] = 7466, - [7639] = 7240, - [7640] = 7241, - [7641] = 7441, - [7642] = 7193, - [7643] = 7175, - [7644] = 7473, - [7645] = 7466, - [7646] = 7209, - [7647] = 7441, - [7648] = 7271, - [7649] = 7473, - [7650] = 7466, - [7651] = 7651, - [7652] = 7441, - [7653] = 7653, - [7654] = 7473, - [7655] = 7466, - [7656] = 7231, - [7657] = 7441, - [7658] = 7658, - [7659] = 7473, - [7660] = 7466, - [7661] = 7661, - [7662] = 7662, + [7384] = 7041, + [7385] = 7002, + [7386] = 7386, + [7387] = 7048, + [7388] = 7058, + [7389] = 7048, + [7390] = 7216, + [7391] = 7198, + [7392] = 7075, + [7393] = 6998, + [7394] = 7173, + [7395] = 7024, + [7396] = 7168, + [7397] = 7142, + [7398] = 7008, + [7399] = 7121, + [7400] = 7108, + [7401] = 7021, + [7402] = 7238, + [7403] = 7041, + [7404] = 7303, + [7405] = 6990, + [7406] = 7049, + [7407] = 6998, + [7408] = 7053, + [7409] = 7189, + [7410] = 7194, + [7411] = 4794, + [7412] = 6997, + [7413] = 7040, + [7414] = 7042, + [7415] = 7019, + [7416] = 6991, + [7417] = 7042, + [7418] = 7216, + [7419] = 7198, + [7420] = 7040, + [7421] = 7021, + [7422] = 7173, + [7423] = 7024, + [7424] = 7168, + [7425] = 7142, + [7426] = 7008, + [7427] = 7026, + [7428] = 7108, + [7429] = 7121, + [7430] = 7238, + [7431] = 7058, + [7432] = 7061, + [7433] = 7064, + [7434] = 7189, + [7435] = 7194, + [7436] = 7065, + [7437] = 7054, + [7438] = 7066, + [7439] = 7067, + [7440] = 7035, + [7441] = 7216, + [7442] = 7198, + [7443] = 6997, + [7444] = 7173, + [7445] = 7078, + [7446] = 7168, + [7447] = 7142, + [7448] = 7001, + [7449] = 7108, + [7450] = 7238, + [7451] = 6999, + [7452] = 7079, + [7453] = 7453, + [7454] = 7336, + [7455] = 7332, + [7456] = 6993, + [7457] = 7080, + [7458] = 7056, + [7459] = 7086, + [7460] = 7117, + [7461] = 7336, + [7462] = 7332, + [7463] = 7115, + [7464] = 7056, + [7465] = 7000, + [7466] = 7336, + [7467] = 7332, + [7468] = 7113, + [7469] = 7056, + [7470] = 7111, + [7471] = 7336, + [7472] = 7332, + [7473] = 7110, + [7474] = 7056, + [7475] = 7109, + [7476] = 7336, + [7477] = 7332, + [7478] = 7107, + [7479] = 7479, }; -static inline bool anon_sym_BANG_character_set_1(int32_t c) { - return (c < 8192 - ? (c < 160 - ? (c < ' ' - ? (c >= '\t' && c <= '\r') - : c <= ' ') - : (c <= 160 || c == 5760)) - : (c <= 8203 || (c < 12288 - ? (c < 8287 - ? c == 8239 - : c <= 8288) - : (c <= 12288 || c == 65279)))); -} - -static inline bool sym__glimmer_template_content_character_set_1(int32_t c) { - return (c < 8232 - ? (c < 160 - ? (c < ' ' - ? (c >= '\t' && c <= '\r') - : c <= ' ') - : (c <= 160 || (c < 8192 - ? c == 5760 - : c <= 8203))) - : (c <= 8233 || (c < 12288 - ? (c < 8287 - ? c == 8239 - : c <= 8288) - : (c <= 12288 || c == 65279)))); -} - -static inline bool sym__glimmer_template_content_character_set_2(int32_t c) { - return (c < 8192 - ? (c < ' ' - ? (c < 11 - ? c == '\t' - : 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 aux_sym_jsx_text_token1_character_set_1(int32_t c) { - return (c < 8232 - ? (c < 5760 - ? (c < 160 - ? (c >= '\t' && c <= '\r') - : c <= 160) - : (c <= 5760 || (c >= 8192 && c <= 8203))) - : (c <= 8233 || (c < 12288 - ? (c < 8287 - ? c == 8239 - : c <= 8288) - : (c <= 12288 || c == 65279)))); -} - -static inline bool aux_sym_jsx_text_token1_character_set_2(int32_t c) { - return (c < 8232 - ? (c < 160 - ? (c < 11 - ? c == '\t' - : c <= '\r') - : (c <= 160 || (c < 8192 - ? c == 5760 - : c <= 8203))) - : (c <= 8233 || (c < 12288 - ? (c < 8287 - ? c == 8239 - : c <= 8288) - : (c <= 12288 || c == 65279)))); -} - -static inline bool sym_unescaped_double_string_fragment_character_set_1(int32_t c) { - return (c < 8232 - ? (c < 160 - ? (c < ' ' - ? (c >= '\t' && c <= '\f') - : c <= ' ') - : (c <= 160 || (c < 8192 - ? c == 5760 - : c <= 8203))) - : (c <= 8233 || (c < 12288 - ? (c < 8287 - ? c == 8239 - : c <= 8288) - : (c <= 12288 || c == 65279)))); -} - -static inline bool sym_unescaped_double_string_fragment_character_set_2(int32_t c) { - return (c < 8192 - ? (c < ' ' - ? (c < 11 - ? c == '\t' - : c <= '\f') - : (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_identifier_character_set_1(int32_t c) { - return (c < 160 - ? (c < ':' - ? (c < 0 - ? c == 0 - : (c <= '#' || (c >= '%' && c <= '/'))) - : (c <= '@' || (c < '`' - ? (c >= '[' && c <= '^') - : (c <= '`' || (c >= '{' && c <= '~'))))) - : (c <= 160 || (c < 8287 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} - -static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < 8192 - ? (c < 160 - ? (c < 0 - ? c == 0 - : c <= '~') - : (c <= 160 || c == 5760)) - : (c <= 8203 || (c < 12288 - ? (c < 8287 - ? c == 8239 - : c <= 8288) - : (c <= 12288 || c == 65279)))); -} - -static inline bool sym_identifier_character_set_3(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_4(int32_t c) { - return (c < 160 - ? (c < ':' - ? (c < 0 - ? c == 0 - : (c <= '#' || (c >= '%' && c <= '/'))) - : (c <= '@' || (c < '{' - ? (c >= '[' && c <= '`') - : c <= '~'))) - : (c <= 160 || (c < 8287 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} +static TSCharacterRange extras_character_set_1[] = { + {'\t', '\r'}, {' ', ' '}, {0xa0, 0xa0}, {0x1680, 0x1680}, {0x2000, 0x200b}, {0x2028, 0x2029}, {0x202f, 0x202f}, {0x205f, 0x2060}, + {0x3000, 0x3000}, {0xfeff, 0xfeff}, +}; -static inline bool sym_identifier_character_set_5(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 TSCharacterRange extras_character_set_2[] = { + {'\t', '\r'}, {' ', ' '}, {0xa0, 0xa0}, {0x1680, 0x1680}, {0x2000, 0x200b}, {0x202f, 0x202f}, {0x205f, 0x2060}, {0x3000, 0x3000}, + {0xfeff, 0xfeff}, +}; -static inline bool sym_identifier_character_set_6(int32_t c) { - return (c < 160 - ? (c < ':' - ? (c < 0 - ? c == 0 - : (c <= '#' || (c >= '%' && c <= '/'))) - : (c <= '@' || (c < '`' - ? (c >= '[' && c <= '^') - : (c <= '`' || (c >= '|' && c <= '~'))))) - : (c <= 160 || (c < 8287 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} +static TSCharacterRange sym_identifier_character_set_1[] = { + {'$', '$'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0x7f, 0x9f}, {0xa1, 0x167f}, {0x1681, 0x1fff}, + {0x200c, 0x202e}, {0x2030, 0x205e}, {0x2061, 0x2fff}, {0x3001, 0xfefe}, {0xff00, 0x10ffff}, +}; -static inline bool sym_private_property_identifier_character_set_1(int32_t c) { - return (c < 160 - ? (c < '[' - ? (c < 0 - ? c == 0 - : (c <= '#' || (c >= '%' && c <= '@'))) - : (c <= '^' || (c < '{' - ? c == '`' - : c <= '~'))) - : (c <= 160 || (c < 8287 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} +static TSCharacterRange sym_identifier_character_set_2[] = { + {'$', '$'}, {'0', '9'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0x7f, 0x9f}, {0xa1, 0x167f}, + {0x1681, 0x1fff}, {0x200c, 0x202e}, {0x2030, 0x205e}, {0x2061, 0x2fff}, {0x3001, 0xfefe}, {0xff00, 0x10ffff}, +}; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); @@ -12550,88 +12161,89 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(414); - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(1032); - if (lookahead == '%') ADVANCE(579); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == ')') ADVANCE(458); - if (lookahead == '*') ADVANCE(419); - if (lookahead == '+') ADVANCE(571); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(575); - if (lookahead == '.') ADVANCE(502); - if (lookahead == '/') ADVANCE(628); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(584); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '>') ADVANCE(498); - if (lookahead == '?') ADVANCE(1052); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(345); - if (lookahead == ']') ADVANCE(481); - if (lookahead == '^') ADVANCE(561); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(810); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(779); - if (lookahead == 'd') ADVANCE(836); - if (lookahead == 'e') ADVANCE(894); - if (lookahead == 'f') ADVANCE(880); - if (lookahead == 'g') ADVANCE(900); - if (lookahead == 'i') ADVANCE(909); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(780); - if (lookahead == 'o') ADVANCE(815); - if (lookahead == 'r') ADVANCE(839); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(789); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == '{') ADVANCE(437); - if (lookahead == '|') ADVANCE(564); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(677); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(403) - if (lookahead != 0 && - lookahead > 31) ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '#', 34, + '$', 1032, + '%', 579, + '&', 558, + '\'', 507, + '(', 457, + ')', 458, + '*', 419, + '+', 571, + ',', 438, + '-', 575, + '.', 502, + '/', 628, + '0', 660, + ':', 473, + ';', 472, + '<', 584, + '=', 427, + '>', 498, + '?', 1052, + '@', 1046, + '[', 480, + '\\', 345, + ']', 481, + '^', 561, + '`', 626, + 'a', 810, + 'b', 951, + 'c', 779, + 'd', 836, + 'e', 894, + 'f', 880, + 'g', 900, + 'i', 909, + 'l', 837, + 'm', 945, + 'n', 780, + 'o', 815, + 'r', 839, + 's', 785, + 't', 789, + 'u', 930, + 'v', 792, + 'w', 878, + '{', 437, + '|', 564, + '}', 439, + '~', 601, + 0x2028, 677, + 0x2029, 677, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(403); + if (lookahead > '@') ADVANCE(1042); END_STATE(); case 1: - if (lookahead == '\n') SKIP(65) + if (lookahead == '\n') SKIP(65); if (lookahead == ' ') ADVANCE(1); if (lookahead == '&') ADVANCE(60); if (lookahead == '/') ADVANCE(488); if (lookahead == '<') ADVANCE(583); if (lookahead == '{') ADVANCE(436); - if (aux_sym_jsx_text_token1_character_set_1(lookahead)) ADVANCE(490); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(490); if (lookahead != 0 && lookahead != '>' && lookahead != '}') ADVANCE(489); END_STATE(); case 2: - if (lookahead == '\n') SKIP(2) + if (lookahead == '\n') SKIP(2); if (lookahead == '/') ADVANCE(483); if (lookahead == '<') ADVANCE(485); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(484); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(484); if (lookahead != 0) ADVANCE(482); END_STATE(); case 3: - if (lookahead == '\n') SKIP(90) + if (lookahead == '\n') SKIP(90); if (lookahead == '/') ADVANCE(69); if (lookahead == '[') ADVANCE(140); if (lookahead == '\\') ADVANCE(402); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(629); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(629); if (lookahead != 0) ADVANCE(630); END_STATE(); case 4: @@ -12645,2122 +12257,2164 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '}') ADVANCE(489); END_STATE(); case 5: - if (lookahead == ' ') ADVANCE(5); - if (lookahead == '*') ADVANCE(491); - if (lookahead == '\n' || - lookahead == '&' || - lookahead == '<' || - lookahead == '>' || - lookahead == '{' || - lookahead == '}') ADVANCE(72); + ADVANCE_MAP( + ' ', 5, + '*', 491, + '\n', 72, + '&', 72, + '<', 72, + '>', 72, + '{', 72, + '}', 72, + ); if (lookahead != 0) ADVANCE(492); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '%') ADVANCE(579); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == ')') ADVANCE(458); - if (lookahead == '*') ADVANCE(419); - if (lookahead == '+') ADVANCE(570); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(574); - if (lookahead == '.') ADVANCE(502); - if (lookahead == '/') ADVANCE(577); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(586); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '>') ADVANCE(498); - if (lookahead == '?') ADVANCE(1052); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == ']') ADVANCE(481); - if (lookahead == '^') ADVANCE(561); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(923); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(898); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(920); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(563); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(750); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(6) - if (lookahead != 0 && - lookahead > 31) ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '#', 139, + '%', 579, + '&', 558, + '\'', 507, + '(', 457, + ')', 458, + '*', 419, + '+', 570, + ',', 438, + '-', 574, + '.', 502, + '/', 577, + '0', 660, + ':', 473, + ';', 472, + '<', 586, + '=', 427, + '>', 498, + '?', 1052, + '@', 1046, + '[', 480, + '\\', 352, + ']', 481, + '^', 561, + '`', 626, + 'a', 923, + 'b', 951, + 'c', 898, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 920, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + 'v', 946, + '{', 436, + '|', 563, + '}', 439, + '~', 601, + 0x2028, 750, + 0x2029, 750, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(6); + if (lookahead > '#') ADVANCE(1042); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '%') ADVANCE(579); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == ')') ADVANCE(458); - if (lookahead == '*') ADVANCE(419); - if (lookahead == '+') ADVANCE(570); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(574); - if (lookahead == '.') ADVANCE(502); - if (lookahead == '/') ADVANCE(577); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ':') ADVANCE(473); - if (lookahead == '<') ADVANCE(586); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '>') ADVANCE(498); - if (lookahead == '?') ADVANCE(1052); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '^') ADVANCE(561); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(810); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(897); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(920); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(780); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == '{') ADVANCE(437); - if (lookahead == '|') ADVANCE(563); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(747); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(7) - if (lookahead != 0 && - lookahead > 31 && - lookahead != ';' && - lookahead != ']' && - lookahead != '}') ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '#', 139, + '%', 579, + '&', 558, + '\'', 507, + '(', 457, + ')', 458, + '*', 419, + '+', 570, + ',', 438, + '-', 574, + '.', 502, + '/', 577, + '0', 660, + ':', 473, + '<', 586, + '=', 427, + '>', 498, + '?', 1052, + '@', 1046, + '[', 480, + '\\', 352, + '^', 561, + '`', 626, + 'a', 810, + 'b', 951, + 'c', 897, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 920, + 'l', 837, + 'm', 945, + 'n', 780, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + 'u', 930, + 'v', 946, + '{', 437, + '|', 563, + '~', 601, + 0x2028, 747, + 0x2029, 747, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(7); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '%') ADVANCE(579); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(419); - if (lookahead == '+') ADVANCE(570); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(574); - if (lookahead == '.') ADVANCE(503); - if (lookahead == '/') ADVANCE(577); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(585); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '>') ADVANCE(498); - if (lookahead == '?') ADVANCE(1052); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '^') ADVANCE(561); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(924); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(934); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == '|') ADVANCE(563); - if (lookahead == '}') ADVANCE(439); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(755); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(8) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || '@' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '#', 139, + '%', 579, + '&', 558, + '\'', 507, + '(', 457, + '*', 419, + '+', 570, + ',', 438, + '-', 574, + '.', 503, + '/', 577, + '0', 660, + ':', 473, + ';', 472, + '<', 585, + '=', 427, + '>', 498, + '?', 1052, + '[', 480, + '\\', 352, + '^', 561, + '`', 626, + 'a', 924, + 'b', 951, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 934, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + '|', 563, + '}', 439, + 0x2028, 755, + 0x2029, 755, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(8); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '%') ADVANCE(579); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(419); - if (lookahead == '+') ADVANCE(570); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(574); - if (lookahead == '.') ADVANCE(503); - if (lookahead == '/') ADVANCE(577); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(585); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '>') ADVANCE(498); - if (lookahead == '?') ADVANCE(1052); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '^') ADVANCE(561); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(924); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'i') ADVANCE(934); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == '|') ADVANCE(563); - if (lookahead == '}') ADVANCE(439); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(756); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(9) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || '@' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '#', 139, + '%', 579, + '&', 558, + '\'', 507, + '(', 457, + '*', 419, + '+', 570, + ',', 438, + '-', 574, + '.', 503, + '/', 577, + '0', 660, + ':', 473, + ';', 472, + '<', 585, + '=', 427, + '>', 498, + '?', 1052, + '[', 480, + '\\', 352, + '^', 561, + '`', 626, + 'a', 924, + 'b', 951, + 'd', 856, + 'e', 1025, + 'i', 934, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + '|', 563, + '}', 439, + 0x2028, 756, + 0x2029, 756, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(9); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '%') ADVANCE(579); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(419); - if (lookahead == '+') ADVANCE(570); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(574); - if (lookahead == '.') ADVANCE(503); - if (lookahead == '/') ADVANCE(577); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(586); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '>') ADVANCE(498); - if (lookahead == '?') ADVANCE(78); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '^') ADVANCE(561); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(923); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(898); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(920); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(815); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(563); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(749); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(10) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ':' < lookahead) && - lookahead != ']' && - lookahead != '}') ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '#', 139, + '%', 579, + '&', 558, + '\'', 507, + '(', 457, + '*', 419, + '+', 570, + ',', 438, + '-', 574, + '.', 503, + '/', 577, + '0', 660, + ';', 472, + '<', 586, + '=', 427, + '>', 498, + '?', 78, + '@', 1046, + '[', 480, + '\\', 352, + '^', 561, + '`', 626, + 'a', 923, + 'b', 951, + 'c', 898, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 920, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 815, + 'r', 862, + 's', 785, + 't', 1030, + 'v', 946, + '{', 436, + '|', 563, + '~', 601, + 0x2028, 749, + 0x2029, 749, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(10); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 11: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '%') ADVANCE(579); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(419); - if (lookahead == '+') ADVANCE(570); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(574); - if (lookahead == '.') ADVANCE(503); - if (lookahead == '/') ADVANCE(577); - if (lookahead == '0') ADVANCE(660); - if (lookahead == '<') ADVANCE(586); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '>') ADVANCE(498); - if (lookahead == '?') ADVANCE(78); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '^') ADVANCE(561); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(923); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(898); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(910); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(563); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(751); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(11) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ';' < lookahead) && - lookahead != ']' && - lookahead != '}') ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '#', 139, + '%', 579, + '&', 558, + '\'', 507, + '(', 457, + '*', 419, + '+', 570, + ',', 438, + '-', 574, + '.', 503, + '/', 577, + '0', 660, + '<', 586, + '=', 427, + '>', 498, + '?', 78, + '@', 1046, + '[', 480, + '\\', 352, + '^', 561, + '`', 626, + 'a', 923, + 'b', 951, + 'c', 898, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 910, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + 'v', 946, + '{', 436, + '|', 563, + '~', 601, + 0x2028, 751, + 0x2029, 751, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(11); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '%') ADVANCE(578); - if (lookahead == '&') ADVANCE(559); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == ')') ADVANCE(458); - if (lookahead == '*') ADVANCE(420); - if (lookahead == '+') ADVANCE(569); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(503); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(588); - if (lookahead == '=') ADVANCE(134); - if (lookahead == '>') ADVANCE(499); - if (lookahead == '?') ADVANCE(79); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == ']') ADVANCE(481); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(923); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(898); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(920); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(565); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(750); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(12) - if (lookahead != 0 && - lookahead > 31) ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '#', 139, + '%', 578, + '&', 559, + '\'', 507, + '(', 457, + ')', 458, + '*', 420, + '+', 569, + ',', 438, + '-', 573, + '.', 503, + '/', 576, + '0', 660, + ':', 473, + ';', 472, + '<', 588, + '=', 134, + '>', 499, + '?', 79, + '@', 1046, + '[', 480, + '\\', 352, + ']', 481, + '^', 560, + '`', 626, + 'a', 923, + 'b', 951, + 'c', 898, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 920, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + 'v', 946, + '{', 436, + '|', 565, + '}', 439, + '~', 601, + 0x2028, 750, + 0x2029, 750, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(12); + if (lookahead > '#') ADVANCE(1042); END_STATE(); case 13: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '%') ADVANCE(578); - if (lookahead == '&') ADVANCE(559); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(420); - if (lookahead == '+') ADVANCE(569); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(503); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(588); - if (lookahead == '=') ADVANCE(134); - if (lookahead == '>') ADVANCE(499); - if (lookahead == '?') ADVANCE(79); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(923); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(898); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(920); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(815); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(565); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(749); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(13) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ':' < lookahead) && - lookahead != ']' && - lookahead != '}') ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '#', 139, + '%', 578, + '&', 559, + '\'', 507, + '(', 457, + '*', 420, + '+', 569, + ',', 438, + '-', 573, + '.', 503, + '/', 576, + '0', 660, + ';', 472, + '<', 588, + '=', 134, + '>', 499, + '?', 79, + '@', 1046, + '[', 480, + '\\', 352, + '^', 560, + '`', 626, + 'a', 923, + 'b', 951, + 'c', 898, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 920, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 815, + 'r', 862, + 's', 785, + 't', 1030, + 'v', 946, + '{', 436, + '|', 565, + '~', 601, + 0x2028, 749, + 0x2029, 749, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(13); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 14: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '%') ADVANCE(578); - if (lookahead == '&') ADVANCE(559); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(420); - if (lookahead == '+') ADVANCE(569); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(503); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(588); - if (lookahead == '=') ADVANCE(426); - if (lookahead == '>') ADVANCE(499); - if (lookahead == '?') ADVANCE(79); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(810); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(806); - if (lookahead == 'd') ADVANCE(836); - if (lookahead == 'e') ADVANCE(928); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(919); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(565); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(744); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(14) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '#', 139, + '%', 578, + '&', 559, + '\'', 507, + '(', 457, + '*', 420, + '+', 569, + ',', 438, + '-', 573, + '.', 503, + '/', 576, + '0', 660, + ';', 472, + '<', 588, + '=', 426, + '>', 499, + '?', 79, + '@', 1046, + '[', 480, + '\\', 352, + '^', 560, + '`', 626, + 'a', 810, + 'b', 951, + 'c', 806, + 'd', 836, + 'e', 928, + 'f', 1015, + 'i', 919, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + 'v', 792, + 'w', 878, + '{', 436, + '|', 565, + '}', 439, + '~', 601, + 0x2028, 744, + 0x2029, 744, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(14); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead)) ADVANCE(1042); END_STATE(); case 15: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '%') ADVANCE(578); - if (lookahead == '&') ADVANCE(559); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(420); - if (lookahead == '+') ADVANCE(569); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(503); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(588); - if (lookahead == '=') ADVANCE(426); - if (lookahead == '>') ADVANCE(499); - if (lookahead == '?') ADVANCE(79); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(810); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(806); - if (lookahead == 'd') ADVANCE(836); - if (lookahead == 'e') ADVANCE(895); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(919); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(565); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(745); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(15) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '#', 139, + '%', 578, + '&', 559, + '\'', 507, + '(', 457, + '*', 420, + '+', 569, + ',', 438, + '-', 573, + '.', 503, + '/', 576, + '0', 660, + ';', 472, + '<', 588, + '=', 426, + '>', 499, + '?', 79, + '@', 1046, + '[', 480, + '\\', 352, + '^', 560, + '`', 626, + 'a', 810, + 'b', 951, + 'c', 806, + 'd', 836, + 'e', 895, + 'f', 1015, + 'i', 919, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + 'v', 792, + 'w', 878, + '{', 436, + '|', 565, + '}', 439, + '~', 601, + 0x2028, 745, + 0x2029, 745, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(15); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead)) ADVANCE(1042); END_STATE(); case 16: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '%') ADVANCE(578); - if (lookahead == '&') ADVANCE(559); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(420); - if (lookahead == '+') ADVANCE(569); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(503); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == '<') ADVANCE(588); - if (lookahead == '=') ADVANCE(134); - if (lookahead == '>') ADVANCE(499); - if (lookahead == '?') ADVANCE(79); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(923); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(898); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(910); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(565); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(751); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(16) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ';' < lookahead) && - lookahead != ']' && - lookahead != '}') ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '#', 139, + '%', 578, + '&', 559, + '\'', 507, + '(', 457, + '*', 420, + '+', 569, + ',', 438, + '-', 573, + '.', 503, + '/', 576, + '0', 660, + '<', 588, + '=', 134, + '>', 499, + '?', 79, + '@', 1046, + '[', 480, + '\\', 352, + '^', 560, + '`', 626, + 'a', 923, + 'b', 951, + 'c', 898, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 910, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + 'v', 946, + '{', 436, + '|', 565, + '~', 601, + 0x2028, 751, + 0x2029, 751, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(16); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 17: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '%') ADVANCE(579); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == ')') ADVANCE(458); - if (lookahead == '*') ADVANCE(419); - if (lookahead == '+') ADVANCE(570); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(574); - if (lookahead == '.') ADVANCE(503); - if (lookahead == '/') ADVANCE(577); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(585); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '>') ADVANCE(498); - if (lookahead == '?') ADVANCE(1052); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == ']') ADVANCE(481); - if (lookahead == '^') ADVANCE(561); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(811); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(950); - if (lookahead == 'i') ADVANCE(934); - if (lookahead == 'n') ADVANCE(838); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == '{') ADVANCE(437); - if (lookahead == '|') ADVANCE(563); - if (lookahead == '}') ADVANCE(439); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(753); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(17) - if (lookahead != 0 && - lookahead > '#' && - lookahead != '@' && - lookahead != '~') ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '%', 579, + '&', 558, + '\'', 507, + '(', 457, + ')', 458, + '*', 419, + '+', 570, + ',', 438, + '-', 574, + '.', 503, + '/', 577, + '0', 660, + ':', 473, + ';', 472, + '<', 585, + '=', 427, + '>', 498, + '?', 1052, + '[', 480, + '\\', 352, + ']', 481, + '^', 561, + '`', 626, + 'a', 811, + 'b', 951, + 'c', 950, + 'i', 934, + 'n', 838, + 'o', 816, + 'r', 862, + 's', 785, + 'u', 930, + 'v', 946, + '{', 437, + '|', 563, + '}', 439, + 0x2028, 753, + 0x2029, 753, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(17); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 18: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '%') ADVANCE(579); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == ')') ADVANCE(458); - if (lookahead == '*') ADVANCE(419); - if (lookahead == '+') ADVANCE(570); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(574); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(577); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(585); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '>') ADVANCE(498); - if (lookahead == '?') ADVANCE(1052); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == ']') ADVANCE(481); - if (lookahead == '^') ADVANCE(561); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(985); - if (lookahead == 'i') ADVANCE(934); - if (lookahead == 's') ADVANCE(786); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(563); - if (lookahead == '}') ADVANCE(439); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(800); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(18) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '0' || '@' < lookahead) && - lookahead != '~') ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '%', 579, + '&', 558, + '\'', 507, + '(', 457, + ')', 458, + '*', 419, + '+', 570, + ',', 438, + '-', 574, + '.', 501, + '/', 577, + ':', 473, + ';', 472, + '<', 585, + '=', 427, + '>', 498, + '?', 1052, + '[', 480, + '\\', 352, + ']', 481, + '^', 561, + '`', 626, + 'a', 985, + 'i', 934, + 's', 786, + '{', 436, + '|', 563, + '}', 439, + 0x2028, 800, + 0x2029, 800, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(18); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 19: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '%') ADVANCE(579); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(419); - if (lookahead == '+') ADVANCE(570); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(574); - if (lookahead == '.') ADVANCE(503); - if (lookahead == '/') ADVANCE(577); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(585); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '>') ADVANCE(498); - if (lookahead == '?') ADVANCE(1052); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '^') ADVANCE(561); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(811); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(950); - if (lookahead == 'i') ADVANCE(934); - if (lookahead == 'n') ADVANCE(838); - if (lookahead == 'o') ADVANCE(815); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == '{') ADVANCE(437); - if (lookahead == '|') ADVANCE(563); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(752); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(19) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < ')' || '@' < lookahead) && - lookahead != ']' && - lookahead != '}' && - lookahead != '~') ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '%', 579, + '&', 558, + '\'', 507, + '(', 457, + '*', 419, + '+', 570, + ',', 438, + '-', 574, + '.', 503, + '/', 577, + '0', 660, + ';', 472, + '<', 585, + '=', 427, + '>', 498, + '?', 1052, + '[', 480, + '\\', 352, + '^', 561, + '`', 626, + 'a', 811, + 'b', 951, + 'c', 950, + 'i', 934, + 'n', 838, + 'o', 815, + 'r', 862, + 's', 785, + 'u', 930, + 'v', 946, + '{', 437, + '|', 563, + 0x2028, 752, + 0x2029, 752, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(19); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 20: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '%') ADVANCE(579); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(419); - if (lookahead == '+') ADVANCE(570); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(574); - if (lookahead == '.') ADVANCE(503); - if (lookahead == '/') ADVANCE(577); - if (lookahead == '0') ADVANCE(660); - if (lookahead == '<') ADVANCE(585); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '>') ADVANCE(498); - if (lookahead == '?') ADVANCE(1052); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '^') ADVANCE(561); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(811); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(950); - if (lookahead == 'i') ADVANCE(915); - if (lookahead == 'n') ADVANCE(838); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == '{') ADVANCE(437); - if (lookahead == '|') ADVANCE(563); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(754); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(20) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < ')' || '@' < lookahead) && - lookahead != ']' && - lookahead != '}' && - lookahead != '~') ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '%', 579, + '&', 558, + '\'', 507, + '(', 457, + '*', 419, + '+', 570, + ',', 438, + '-', 574, + '.', 503, + '/', 577, + '0', 660, + '<', 585, + '=', 427, + '>', 498, + '?', 1052, + '[', 480, + '\\', 352, + '^', 561, + '`', 626, + 'a', 811, + 'b', 951, + 'c', 950, + 'i', 915, + 'n', 838, + 'o', 816, + 'r', 862, + 's', 785, + 'u', 930, + 'v', 946, + '{', 437, + '|', 563, + 0x2028, 754, + 0x2029, 754, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(20); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 21: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '%') ADVANCE(579); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(419); - if (lookahead == '+') ADVANCE(570); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(574); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(577); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(585); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '>') ADVANCE(498); - if (lookahead == '?') ADVANCE(78); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '^') ADVANCE(561); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(985); - if (lookahead == 'i') ADVANCE(934); - if (lookahead == 'o') ADVANCE(869); - if (lookahead == 's') ADVANCE(786); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(563); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(799); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(21) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < ')' || '@' < lookahead) && - lookahead != ']' && - lookahead != '}' && - lookahead != '~') ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '%', 579, + '&', 558, + '\'', 507, + '(', 457, + '*', 419, + '+', 570, + ',', 438, + '-', 574, + '.', 501, + '/', 577, + ';', 472, + '<', 585, + '=', 427, + '>', 498, + '?', 78, + '[', 480, + '\\', 352, + '^', 561, + '`', 626, + 'a', 985, + 'i', 934, + 'o', 869, + 's', 786, + '{', 436, + '|', 563, + 0x2028, 799, + 0x2029, 799, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(21); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 22: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '%') ADVANCE(579); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(419); - if (lookahead == '+') ADVANCE(570); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(574); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(577); - if (lookahead == '<') ADVANCE(585); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '>') ADVANCE(498); - if (lookahead == '?') ADVANCE(78); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '^') ADVANCE(561); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(985); - if (lookahead == 'i') ADVANCE(915); - if (lookahead == 's') ADVANCE(786); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(563); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(801); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(22) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < ')' || '@' < lookahead) && - lookahead != ']' && - lookahead != '}' && - lookahead != '~') ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '%', 579, + '&', 558, + '\'', 507, + '(', 457, + '*', 419, + '+', 570, + ',', 438, + '-', 574, + '.', 501, + '/', 577, + '<', 585, + '=', 427, + '>', 498, + '?', 78, + '[', 480, + '\\', 352, + '^', 561, + '`', 626, + 'a', 985, + 'i', 915, + 's', 786, + '{', 436, + '|', 563, + 0x2028, 801, + 0x2029, 801, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(22); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 23: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '%') ADVANCE(579); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '(') ADVANCE(457); - if (lookahead == ')') ADVANCE(458); - if (lookahead == '*') ADVANCE(419); - if (lookahead == '+') ADVANCE(570); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(574); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(577); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(585); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '>') ADVANCE(498); - if (lookahead == '?') ADVANCE(1052); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == ']') ADVANCE(481); - if (lookahead == '^') ADVANCE(561); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(924); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(934); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == '|') ADVANCE(563); - if (lookahead == '}') ADVANCE(439); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(783); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(23) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '\'' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '%', 579, + '&', 558, + '(', 457, + ')', 458, + '*', 419, + '+', 570, + ',', 438, + '-', 574, + '.', 501, + '/', 577, + ':', 473, + ';', 472, + '<', 585, + '=', 427, + '>', 498, + '?', 1052, + '[', 480, + '\\', 352, + ']', 481, + '^', 561, + '`', 626, + 'a', 924, + 'b', 951, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 934, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + '|', 563, + '}', 439, + 0x2028, 783, + 0x2029, 783, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(23); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 24: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '%') ADVANCE(579); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '(') ADVANCE(457); - if (lookahead == ')') ADVANCE(458); - if (lookahead == '*') ADVANCE(419); - if (lookahead == '+') ADVANCE(570); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(574); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(577); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(585); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '>') ADVANCE(498); - if (lookahead == '?') ADVANCE(1052); - if (lookahead == '[') ADVANCE(480); - if (lookahead == ']') ADVANCE(481); - if (lookahead == '^') ADVANCE(561); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(317); - if (lookahead == 'e') ADVANCE(358); - if (lookahead == 'f') ADVANCE(306); - if (lookahead == 'i') ADVANCE(262); - if (lookahead == 'o') ADVANCE(213); - if (lookahead == 's') ADVANCE(147); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(564); - if (lookahead == '}') ADVANCE(439); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(24) + ADVANCE_MAP( + '!', 454, + '%', 579, + '&', 558, + '(', 457, + ')', 458, + '*', 419, + '+', 570, + ',', 438, + '-', 574, + '.', 501, + '/', 577, + ':', 473, + ';', 472, + '<', 585, + '=', 427, + '>', 498, + '?', 1052, + '[', 480, + ']', 481, + '^', 561, + '`', 626, + 'a', 317, + 'e', 358, + 'f', 306, + 'i', 262, + 'o', 213, + 's', 147, + '{', 436, + '|', 564, + '}', 439, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(24); END_STATE(); case 25: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '%') ADVANCE(579); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(419); - if (lookahead == '+') ADVANCE(570); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(574); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(577); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(585); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '>') ADVANCE(498); - if (lookahead == '?') ADVANCE(78); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '^') ADVANCE(561); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(924); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(934); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(815); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == '|') ADVANCE(563); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(782); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(25) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '\'' || '@' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '%', 579, + '&', 558, + '(', 457, + '*', 419, + '+', 570, + ',', 438, + '-', 574, + '.', 501, + '/', 577, + ';', 472, + '<', 585, + '=', 427, + '>', 498, + '?', 78, + '[', 480, + '\\', 352, + '^', 561, + '`', 626, + 'a', 924, + 'b', 951, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 934, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 815, + 'r', 862, + 's', 785, + 't', 1030, + '|', 563, + 0x2028, 782, + 0x2029, 782, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(25); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 26: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '%') ADVANCE(579); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(419); - if (lookahead == '+') ADVANCE(570); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(574); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(577); - if (lookahead == '<') ADVANCE(585); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '>') ADVANCE(498); - if (lookahead == '?') ADVANCE(78); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '^') ADVANCE(561); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(924); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(915); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(563); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(784); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(26) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '\'' || '@' < lookahead) && - lookahead != ']' && - lookahead != '}' && - lookahead != '~') ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '%', 579, + '&', 558, + '(', 457, + '*', 419, + '+', 570, + ',', 438, + '-', 574, + '.', 501, + '/', 577, + '<', 585, + '=', 427, + '>', 498, + '?', 78, + '[', 480, + '\\', 352, + '^', 561, + '`', 626, + 'a', 924, + 'b', 951, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 915, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + '{', 436, + '|', 563, + 0x2028, 784, + 0x2029, 784, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(26); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 27: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '%') ADVANCE(578); - if (lookahead == '&') ADVANCE(559); - if (lookahead == '(') ADVANCE(457); - if (lookahead == ')') ADVANCE(458); - if (lookahead == '*') ADVANCE(420); - if (lookahead == '+') ADVANCE(569); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(576); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(587); - if (lookahead == '=') ADVANCE(134); - if (lookahead == '>') ADVANCE(499); - if (lookahead == '?') ADVANCE(79); - if (lookahead == '[') ADVANCE(480); - if (lookahead == ']') ADVANCE(481); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(651); - if (lookahead == 'i') ADVANCE(646); - if (lookahead == 's') ADVANCE(631); - if (lookahead == '{') ADVANCE(437); - if (lookahead == '|') ADVANCE(565); - if (lookahead == '}') ADVANCE(439); + ADVANCE_MAP( + '!', 454, + '%', 578, + '&', 559, + '(', 457, + ')', 458, + '*', 420, + '+', 569, + ',', 438, + '-', 573, + '.', 501, + '/', 576, + ':', 473, + ';', 472, + '<', 587, + '=', 134, + '>', 499, + '?', 79, + '[', 480, + ']', 481, + '^', 560, + '`', 626, + 'a', 651, + 'i', 646, + 's', 631, + '{', 437, + '|', 565, + '}', 439, + ); if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(658); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(28) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(28); END_STATE(); case 28: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '%') ADVANCE(578); - if (lookahead == '&') ADVANCE(559); - if (lookahead == '(') ADVANCE(457); - if (lookahead == ')') ADVANCE(458); - if (lookahead == '*') ADVANCE(420); - if (lookahead == '+') ADVANCE(569); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(576); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(587); - if (lookahead == '=') ADVANCE(134); - if (lookahead == '>') ADVANCE(499); - if (lookahead == '?') ADVANCE(79); - if (lookahead == '[') ADVANCE(480); - if (lookahead == ']') ADVANCE(481); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(317); - if (lookahead == 'i') ADVANCE(269); - if (lookahead == 's') ADVANCE(147); - if (lookahead == '{') ADVANCE(437); - if (lookahead == '|') ADVANCE(565); - if (lookahead == '}') ADVANCE(439); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(28) + ADVANCE_MAP( + '!', 454, + '%', 578, + '&', 559, + '(', 457, + ')', 458, + '*', 420, + '+', 569, + ',', 438, + '-', 573, + '.', 501, + '/', 576, + ':', 473, + ';', 472, + '<', 587, + '=', 134, + '>', 499, + '?', 79, + '[', 480, + ']', 481, + '^', 560, + '`', 626, + 'a', 317, + 'i', 269, + 's', 147, + '{', 437, + '|', 565, + '}', 439, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(28); END_STATE(); case 29: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '%') ADVANCE(578); - if (lookahead == '&') ADVANCE(559); - if (lookahead == '(') ADVANCE(457); - if (lookahead == ')') ADVANCE(458); - if (lookahead == '*') ADVANCE(420); - if (lookahead == '+') ADVANCE(569); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(576); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(587); - if (lookahead == '=') ADVANCE(426); - if (lookahead == '>') ADVANCE(499); - if (lookahead == '?') ADVANCE(1053); - if (lookahead == '[') ADVANCE(480); - if (lookahead == ']') ADVANCE(481); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(317); - if (lookahead == 'e') ADVANCE(238); - if (lookahead == 'i') ADVANCE(263); - if (lookahead == 'o') ADVANCE(213); - if (lookahead == 's') ADVANCE(147); - if (lookahead == 'w') ADVANCE(220); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(566); - if (lookahead == '}') ADVANCE(439); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(29) + ADVANCE_MAP( + '!', 454, + '%', 578, + '&', 559, + '(', 457, + ')', 458, + '*', 420, + '+', 569, + ',', 438, + '-', 573, + '.', 501, + '/', 576, + ':', 473, + ';', 472, + '<', 587, + '=', 426, + '>', 499, + '?', 1053, + '[', 480, + ']', 481, + '^', 560, + '`', 626, + 'a', 317, + 'e', 238, + 'i', 263, + 'o', 213, + 's', 147, + 'w', 220, + '{', 436, + '|', 566, + '}', 439, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(29); END_STATE(); case 30: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '%') ADVANCE(578); - if (lookahead == '&') ADVANCE(559); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(420); - if (lookahead == '+') ADVANCE(569); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(576); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(587); - if (lookahead == '=') ADVANCE(134); - if (lookahead == '>') ADVANCE(499); - if (lookahead == '?') ADVANCE(79); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(651); - if (lookahead == 'i') ADVANCE(646); - if (lookahead == 'o') ADVANCE(639); - if (lookahead == 's') ADVANCE(631); - if (lookahead == '|') ADVANCE(565); + ADVANCE_MAP( + '!', 454, + '%', 578, + '&', 559, + '(', 457, + '*', 420, + '+', 569, + ',', 438, + '-', 573, + '.', 501, + '/', 576, + ';', 472, + '<', 587, + '=', 134, + '>', 499, + '?', 79, + '[', 480, + '^', 560, + '`', 626, + 'a', 651, + 'i', 646, + 'o', 639, + 's', 631, + '|', 565, + ); if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(658); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(31) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(31); END_STATE(); case 31: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '%') ADVANCE(578); - if (lookahead == '&') ADVANCE(559); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(420); - if (lookahead == '+') ADVANCE(569); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(576); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(587); - if (lookahead == '=') ADVANCE(134); - if (lookahead == '>') ADVANCE(499); - if (lookahead == '?') ADVANCE(79); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(317); - if (lookahead == 'i') ADVANCE(269); - if (lookahead == 'o') ADVANCE(213); - if (lookahead == 's') ADVANCE(147); - if (lookahead == '|') ADVANCE(565); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(31) + ADVANCE_MAP( + '!', 454, + '%', 578, + '&', 559, + '(', 457, + '*', 420, + '+', 569, + ',', 438, + '-', 573, + '.', 501, + '/', 576, + ';', 472, + '<', 587, + '=', 134, + '>', 499, + '?', 79, + '[', 480, + '^', 560, + '`', 626, + 'a', 317, + 'i', 269, + 'o', 213, + 's', 147, + '|', 565, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(31); END_STATE(); case 32: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '%') ADVANCE(578); - if (lookahead == '&') ADVANCE(559); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(420); - if (lookahead == '+') ADVANCE(569); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '<') ADVANCE(587); - if (lookahead == '=') ADVANCE(134); - if (lookahead == '>') ADVANCE(499); - if (lookahead == '?') ADVANCE(79); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(651); - if (lookahead == 'i') ADVANCE(644); - if (lookahead == 's') ADVANCE(631); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(565); + ADVANCE_MAP( + '!', 454, + '%', 578, + '&', 559, + '(', 457, + '*', 420, + '+', 569, + ',', 438, + '-', 573, + '.', 501, + '/', 576, + '<', 587, + '=', 134, + '>', 499, + '?', 79, + '[', 480, + '^', 560, + '`', 626, + 'a', 651, + 'i', 644, + 's', 631, + '{', 436, + '|', 565, + ); if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(658); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(33) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(33); END_STATE(); case 33: - if (lookahead == '!') ADVANCE(454); - if (lookahead == '%') ADVANCE(578); - if (lookahead == '&') ADVANCE(559); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(420); - if (lookahead == '+') ADVANCE(569); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '<') ADVANCE(587); - if (lookahead == '=') ADVANCE(134); - if (lookahead == '>') ADVANCE(499); - if (lookahead == '?') ADVANCE(79); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(317); - if (lookahead == 'i') ADVANCE(262); - if (lookahead == 's') ADVANCE(147); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(565); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(33) + ADVANCE_MAP( + '!', 454, + '%', 578, + '&', 559, + '(', 457, + '*', 420, + '+', 569, + ',', 438, + '-', 573, + '.', 501, + '/', 576, + '<', 587, + '=', 134, + '>', 499, + '?', 79, + '[', 480, + '^', 560, + '`', 626, + 'a', 317, + 'i', 262, + 's', 147, + '{', 436, + '|', 565, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(33); END_STATE(); case 34: if (lookahead == '!') ADVANCE(415); if (lookahead == '\\') ADVANCE(351); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1043); + if (set_contains(sym_identifier_character_set_1, 13, lookahead)) ADVANCE(1043); END_STATE(); case 35: - if (lookahead == '!') ADVANCE(453); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '&') ADVANCE(557); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == ')') ADVANCE(458); - if (lookahead == '*') ADVANCE(418); - if (lookahead == '+') ADVANCE(569); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(76); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == '<') ADVANCE(589); - if (lookahead == '?') ADVANCE(1050); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == ']') ADVANCE(481); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(897); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(922); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(780); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == '{') ADVANCE(437); - if (lookahead == '|') ADVANCE(562); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(769); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(35) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '>' < lookahead) && - lookahead != '^' && - lookahead != '}') ADVANCE(1041); + ADVANCE_MAP( + '!', 453, + '"', 506, + '#', 139, + '&', 557, + '\'', 507, + '(', 457, + ')', 458, + '*', 418, + '+', 569, + ',', 438, + '-', 573, + '.', 76, + '/', 576, + '0', 660, + '<', 589, + '?', 1050, + '@', 1046, + '[', 480, + '\\', 352, + ']', 481, + '`', 626, + 'a', 812, + 'b', 951, + 'c', 897, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 922, + 'l', 837, + 'm', 945, + 'n', 780, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'u', 930, + 'v', 946, + '{', 437, + '|', 562, + '~', 601, + 0x2028, 769, + 0x2029, 769, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(35); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 36: - if (lookahead == '!') ADVANCE(453); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '&') ADVANCE(557); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == ')') ADVANCE(458); - if (lookahead == '+') ADVANCE(569); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(378); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(589); - if (lookahead == '>') ADVANCE(497); - if (lookahead == '?') ADVANCE(1050); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == ']') ADVANCE(481); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(925); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(898); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1024); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(922); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(567); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(776); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(36) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '=' < lookahead) && - lookahead != '^') ADVANCE(1041); + ADVANCE_MAP( + '!', 453, + '"', 506, + '#', 139, + '&', 557, + '\'', 507, + '(', 457, + ')', 458, + '+', 569, + ',', 438, + '-', 573, + '.', 378, + '/', 576, + '0', 660, + ';', 472, + '<', 589, + '>', 497, + '?', 1050, + '@', 1046, + '[', 480, + '\\', 352, + ']', 481, + '`', 626, + 'a', 925, + 'b', 951, + 'c', 898, + 'd', 856, + 'e', 1024, + 'f', 1015, + 'i', 922, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 946, + '{', 436, + '|', 567, + '}', 439, + '~', 601, + 0x2028, 776, + 0x2029, 776, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(36); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead)) ADVANCE(1042); END_STATE(); case 37: - if (lookahead == '!') ADVANCE(453); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == ')') ADVANCE(458); - if (lookahead == '+') ADVANCE(569); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(502); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(589); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == ']') ADVANCE(481); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(925); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(898); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(922); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(775); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(37) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != '^' && - lookahead != '|') ADVANCE(1041); + ADVANCE_MAP( + '!', 453, + '"', 506, + '#', 139, + '\'', 507, + '(', 457, + ')', 458, + '+', 569, + ',', 438, + '-', 573, + '.', 502, + '/', 576, + '0', 660, + ';', 472, + '<', 589, + '@', 1046, + '[', 480, + '\\', 352, + ']', 481, + '`', 626, + 'a', 925, + 'b', 951, + 'c', 898, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 922, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 946, + '{', 436, + '}', 439, + '~', 601, + 0x2028, 775, + 0x2029, 775, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(37); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 38: - if (lookahead == '!') ADVANCE(453); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(418); - if (lookahead == '+') ADVANCE(568); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(572); - if (lookahead == '.') ADVANCE(502); - if (lookahead == '/') ADVANCE(69); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(582); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '?') ADVANCE(1050); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(813); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(371); - if (lookahead == '}') ADVANCE(439); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(777); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(38) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '>' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`' && - lookahead != '~') ADVANCE(1041); + ADVANCE_MAP( + '!', 453, + '"', 506, + '#', 139, + '\'', 507, + '(', 457, + '*', 418, + '+', 568, + ',', 438, + '-', 572, + '.', 502, + '/', 69, + '0', 660, + ':', 473, + ';', 472, + '<', 582, + '=', 425, + '?', 1050, + '@', 1046, + '[', 480, + '\\', 352, + 'a', 813, + 'b', 951, + 'd', 856, + 'e', 1025, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + '{', 436, + '|', 371, + '}', 439, + 0x2028, 777, + 0x2029, 777, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(38); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 39: - if (lookahead == '!') ADVANCE(453); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(418); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '.') ADVANCE(76); - if (lookahead == '/') ADVANCE(69); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(582); - if (lookahead == '=') ADVANCE(428); - if (lookahead == '?') ADVANCE(1050); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(926); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(371); - if (lookahead == '}') ADVANCE(439); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(778); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(39) - if (lookahead != 0 && - lookahead > 31 && + ADVANCE_MAP( + '!', 453, + '"', 506, + '#', 139, + '\'', 507, + '(', 457, + '*', 418, + ',', 438, + '.', 76, + '/', 69, + '0', 660, + ':', 473, + ';', 472, + '<', 582, + '=', 428, + '?', 1050, + '[', 480, + '\\', 352, + 'a', 926, + 'b', 951, + 'd', 856, + 'e', 1025, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + '{', 436, + '|', 371, + '}', 439, + 0x2028, 778, + 0x2029, 778, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(39); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`' && - lookahead != '~') ADVANCE(1041); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 40: - if (lookahead == '!') ADVANCE(453); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '+') ADVANCE(569); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(503); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(589); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(806); - if (lookahead == 'd') ADVANCE(836); - if (lookahead == 'e') ADVANCE(928); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(763); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(40) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(1041); + ADVANCE_MAP( + '!', 453, + '"', 506, + '#', 139, + '\'', 507, + '(', 457, + '+', 569, + '-', 573, + '.', 503, + '/', 576, + '0', 660, + ';', 472, + '<', 589, + '@', 1046, + '[', 480, + '\\', 352, + '`', 626, + 'a', 812, + 'b', 951, + 'c', 806, + 'd', 836, + 'e', 928, + 'f', 1015, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + '{', 436, + '}', 439, + '~', 601, + 0x2028, 763, + 0x2029, 763, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(40); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 41: - if (lookahead == '!') ADVANCE(453); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '+') ADVANCE(569); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(503); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(589); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(806); - if (lookahead == 'd') ADVANCE(836); - if (lookahead == 'e') ADVANCE(895); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(765); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(41) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(1041); + ADVANCE_MAP( + '!', 453, + '"', 506, + '#', 139, + '\'', 507, + '(', 457, + '+', 569, + '-', 573, + '.', 503, + '/', 576, + '0', 660, + ';', 472, + '<', 589, + '@', 1046, + '[', 480, + '\\', 352, + '`', 626, + 'a', 812, + 'b', 951, + 'c', 806, + 'd', 836, + 'e', 895, + 'f', 1015, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + '{', 436, + '}', 439, + '~', 601, + 0x2028, 765, + 0x2029, 765, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(41); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 42: - if (lookahead == '!') ADVANCE(453); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '+') ADVANCE(569); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(378); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(589); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(779); - if (lookahead == 'd') ADVANCE(836); - if (lookahead == 'e') ADVANCE(928); - if (lookahead == 'f') ADVANCE(881); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(760); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(42) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(1041); + ADVANCE_MAP( + '!', 453, + '"', 506, + '#', 139, + '\'', 507, + '(', 457, + '+', 569, + '-', 573, + '.', 378, + '/', 576, + '0', 660, + ';', 472, + '<', 589, + '@', 1046, + '[', 480, + '\\', 352, + '`', 626, + 'a', 812, + 'b', 951, + 'c', 779, + 'd', 836, + 'e', 928, + 'f', 881, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + '{', 436, + '}', 439, + '~', 601, + 0x2028, 760, + 0x2029, 760, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(42); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 43: - if (lookahead == '!') ADVANCE(453); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '+') ADVANCE(569); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(378); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(589); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(779); - if (lookahead == 'd') ADVANCE(836); - if (lookahead == 'e') ADVANCE(895); - if (lookahead == 'f') ADVANCE(881); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(761); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(43) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(1041); + ADVANCE_MAP( + '!', 453, + '"', 506, + '#', 139, + '\'', 507, + '(', 457, + '+', 569, + '-', 573, + '.', 378, + '/', 576, + '0', 660, + ';', 472, + '<', 589, + '@', 1046, + '[', 480, + '\\', 352, + '`', 626, + 'a', 812, + 'b', 951, + 'c', 779, + 'd', 836, + 'e', 895, + 'f', 881, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + '{', 436, + '}', 439, + '~', 601, + 0x2028, 761, + 0x2029, 761, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(43); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 44: - if (lookahead == '!') ADVANCE(453); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '+') ADVANCE(569); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(378); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(589); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(806); - if (lookahead == 'd') ADVANCE(836); - if (lookahead == 'e') ADVANCE(928); - if (lookahead == 'f') ADVANCE(881); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(762); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(44) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(1041); + ADVANCE_MAP( + '!', 453, + '"', 506, + '#', 139, + '\'', 507, + '(', 457, + '+', 569, + '-', 573, + '.', 378, + '/', 576, + '0', 660, + ';', 472, + '<', 589, + '@', 1046, + '[', 480, + '\\', 352, + '`', 626, + 'a', 812, + 'b', 951, + 'c', 806, + 'd', 836, + 'e', 928, + 'f', 881, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + '{', 436, + '}', 439, + '~', 601, + 0x2028, 762, + 0x2029, 762, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(44); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 45: - if (lookahead == '!') ADVANCE(453); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '+') ADVANCE(569); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(378); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(589); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(806); - if (lookahead == 'd') ADVANCE(836); - if (lookahead == 'e') ADVANCE(895); - if (lookahead == 'f') ADVANCE(881); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(764); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(45) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(1041); + ADVANCE_MAP( + '!', 453, + '"', 506, + '#', 139, + '\'', 507, + '(', 457, + '+', 569, + '-', 573, + '.', 378, + '/', 576, + '0', 660, + ';', 472, + '<', 589, + '@', 1046, + '[', 480, + '\\', 352, + '`', 626, + 'a', 812, + 'b', 951, + 'c', 806, + 'd', 836, + 'e', 895, + 'f', 881, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + '{', 436, + '}', 439, + '~', 601, + 0x2028, 764, + 0x2029, 764, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(45); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 46: - if (lookahead == '!') ADVANCE(453); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '+') ADVANCE(569); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(378); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(589); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(925); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(897); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(922); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(774); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(46) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|' && - lookahead != '}') ADVANCE(1041); + ADVANCE_MAP( + '!', 453, + '"', 506, + '#', 139, + '\'', 507, + '(', 457, + '+', 569, + '-', 573, + '.', 378, + '/', 576, + '0', 660, + ';', 472, + '<', 589, + '@', 1046, + '[', 480, + '\\', 352, + '`', 626, + 'a', 925, + 'b', 951, + 'c', 897, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 922, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + '{', 436, + '~', 601, + 0x2028, 774, + 0x2029, 774, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(46); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 47: - if (lookahead == '!') ADVANCE(453); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '+') ADVANCE(569); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(378); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == '<') ADVANCE(589); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(897); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(928); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(768); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(47) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|' && - lookahead != '}') ADVANCE(1041); + ADVANCE_MAP( + '!', 453, + '"', 506, + '#', 139, + '\'', 507, + '(', 457, + '+', 569, + '-', 573, + '.', 378, + '/', 576, + '0', 660, + '<', 589, + '@', 1046, + '[', 480, + '\\', 352, + '`', 626, + 'a', 812, + 'b', 951, + 'c', 897, + 'd', 856, + 'e', 928, + 'f', 1015, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + '{', 436, + '~', 601, + 0x2028, 768, + 0x2029, 768, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(47); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 48: - if (lookahead == '!') ADVANCE(453); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '&') ADVANCE(557); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == ')') ADVANCE(458); - if (lookahead == '*') ADVANCE(418); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(69); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(582); - if (lookahead == '=') ADVANCE(428); - if (lookahead == '>') ADVANCE(497); - if (lookahead == '?') ADVANCE(1050); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == ']') ADVANCE(481); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(164); - if (lookahead == 'c') ADVANCE(241); - if (lookahead == 'd') ADVANCE(185); - if (lookahead == 'e') ADVANCE(237); - if (lookahead == 'f') ADVANCE(347); - if (lookahead == 'i') ADVANCE(257); - if (lookahead == 'l') ADVANCE(197); - if (lookahead == 'm') ADVANCE(282); - if (lookahead == 'n') ADVANCE(143); - if (lookahead == 't') ADVANCE(362); - if (lookahead == 'v') ADVANCE(150); - if (lookahead == 'w') ADVANCE(221); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(567); - if (lookahead == '}') ADVANCE(439); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(48) + ADVANCE_MAP( + '!', 453, + '"', 506, + '&', 557, + '\'', 507, + '(', 457, + ')', 458, + '*', 418, + ',', 438, + '.', 501, + '/', 69, + ':', 473, + ';', 472, + '<', 582, + '=', 428, + '>', 497, + '?', 1050, + '@', 1046, + '[', 480, + ']', 481, + '`', 626, + 'a', 164, + 'c', 241, + 'd', 185, + 'e', 237, + 'f', 347, + 'i', 257, + 'l', 197, + 'm', 282, + 'n', 143, + 't', 362, + 'v', 150, + 'w', 221, + '{', 436, + '|', 567, + '}', 439, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(48); END_STATE(); case 49: - if (lookahead == '!') ADVANCE(453); - if (lookahead == '&') ADVANCE(557); - if (lookahead == '(') ADVANCE(457); - if (lookahead == ')') ADVANCE(458); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(69); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(582); - if (lookahead == '=') ADVANCE(428); - if (lookahead == '>') ADVANCE(497); - if (lookahead == '?') ADVANCE(1051); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == ']') ADVANCE(481); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(165); - if (lookahead == 'c') ADVANCE(240); - if (lookahead == 'e') ADVANCE(357); - if (lookahead == 'i') ADVANCE(270); - if (lookahead == 'o') ADVANCE(213); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(567); - if (lookahead == '}') ADVANCE(439); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(49) + ADVANCE_MAP( + '!', 453, + '&', 557, + '(', 457, + ')', 458, + ',', 438, + '.', 501, + '/', 69, + ':', 473, + ';', 472, + '<', 582, + '=', 428, + '>', 497, + '?', 1051, + '@', 1046, + '[', 480, + ']', 481, + '`', 626, + 'a', 165, + 'c', 240, + 'e', 357, + 'i', 270, + 'o', 213, + '{', 436, + '|', 567, + '}', 439, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(49); END_STATE(); case 50: - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(418); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(69); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(582); - if (lookahead == '?') ADVANCE(77); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(626); - if (lookahead == '{') ADVANCE(436); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(1035); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(50) - if (lookahead != 0 && - lookahead > '!' && + ADVANCE_MAP( + '"', 506, + '#', 139, + '\'', 507, + '(', 457, + '*', 418, + '.', 501, + '/', 69, + ';', 472, + '<', 582, + '?', 77, + '[', 480, + '\\', 352, + '`', 626, + '{', 436, + 0x2028, 1036, + 0x2029, 1036, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(50); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(1041); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 51: - if (lookahead == '"') ADVANCE(506); - if (lookahead == '&') ADVANCE(557); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(418); - if (lookahead == '+') ADVANCE(568); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(572); - if (lookahead == '.') ADVANCE(76); - if (lookahead == '/') ADVANCE(69); - if (lookahead == '0') ADVANCE(660); - if (lookahead == '<') ADVANCE(582); - if (lookahead == '?') ADVANCE(1050); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == ']') ADVANCE(481); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(814); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(950); - if (lookahead == 'n') ADVANCE(838); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == '{') ADVANCE(437); - if (lookahead == '|') ADVANCE(562); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(758); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(51) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '"', 506, + '&', 557, + '\'', 507, + '(', 457, + '*', 418, + '+', 568, + ',', 438, + '-', 572, + '.', 76, + '/', 69, + '0', 660, + '<', 582, + '?', 1050, + '[', 480, + '\\', 352, + ']', 481, + '`', 626, + 'a', 814, + 'b', 951, + 'c', 950, + 'n', 838, + 'o', 816, + 'r', 862, + 's', 994, + 'u', 930, + 'v', 946, + '{', 437, + '|', 562, + 0x2028, 758, + 0x2029, 758, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(51); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - lookahead != '^' && - lookahead != '}' && - lookahead != '~') ADVANCE(1041); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 52: - if (lookahead == '"') ADVANCE(506); - if (lookahead == '&') ADVANCE(557); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(418); - if (lookahead == '+') ADVANCE(568); - if (lookahead == '-') ADVANCE(572); - if (lookahead == '.') ADVANCE(378); - if (lookahead == '/') ADVANCE(69); - if (lookahead == '0') ADVANCE(660); - if (lookahead == '<') ADVANCE(582); - if (lookahead == '>') ADVANCE(497); - if (lookahead == '?') ADVANCE(1050); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(814); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(950); - if (lookahead == 'i') ADVANCE(922); - if (lookahead == 'n') ADVANCE(838); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == '{') ADVANCE(437); - if (lookahead == '|') ADVANCE(562); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(757); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(52) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '"', 506, + '&', 557, + '\'', 507, + '(', 457, + '*', 418, + '+', 568, + '-', 572, + '.', 378, + '/', 69, + '0', 660, + '<', 582, + '>', 497, + '?', 1050, + '[', 480, + '\\', 352, + '`', 626, + 'a', 814, + 'b', 951, + 'c', 950, + 'i', 922, + 'n', 838, + 'o', 816, + 'r', 862, + 's', 994, + 'u', 930, + 'v', 946, + '{', 437, + '|', 562, + 0x2028, 757, + 0x2029, 757, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(52); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '}' && - lookahead != '~') ADVANCE(1041); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 53: - if (lookahead == '"') ADVANCE(506); - if (lookahead == '&') ADVANCE(557); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(418); - if (lookahead == '+') ADVANCE(568); - if (lookahead == '-') ADVANCE(572); - if (lookahead == '.') ADVANCE(378); - if (lookahead == '/') ADVANCE(69); - if (lookahead == '0') ADVANCE(660); - if (lookahead == '<') ADVANCE(582); - if (lookahead == '?') ADVANCE(1050); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(681); - if (lookahead == 'b') ADVANCE(721); - if (lookahead == 'c') ADVANCE(719); - if (lookahead == 'n') ADVANCE(690); - if (lookahead == 'o') ADVANCE(682); - if (lookahead == 'r') ADVANCE(691); - if (lookahead == 's') ADVANCE(731); - if (lookahead == 'u') ADVANCE(708); - if (lookahead == 'v') ADVANCE(716); - if (lookahead == '{') ADVANCE(437); - if (lookahead == '|') ADVANCE(562); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(759); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(53) + ADVANCE_MAP( + '"', 506, + '&', 557, + '\'', 507, + '(', 457, + '*', 418, + '+', 568, + '-', 572, + '.', 378, + '/', 69, + '0', 660, + '<', 582, + '?', 1050, + '[', 480, + '\\', 352, + '`', 626, + 'a', 681, + 'b', 721, + 'c', 719, + 'n', 690, + 'o', 682, + 'r', 691, + 's', 731, + 'u', 708, + 'v', 716, + '{', 437, + '|', 562, + 0x2028, 759, + 0x2029, 759, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(53); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (lookahead != 0 && - lookahead > '~') ADVANCE(1041); + if (lookahead > '~') ADVANCE(1042); END_STATE(); case 54: if (lookahead == '"') ADVANCE(506); - if (lookahead == '&') ADVANCE(61); + if (lookahead == '&') ADVANCE(62); if (lookahead == '/') ADVANCE(510); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(509); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(509); if (lookahead != 0) ADVANCE(511); END_STATE(); case 55: - if (lookahead == '"') ADVANCE(506); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(418); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(69); - if (lookahead == '<') ADVANCE(582); - if (lookahead == '?') ADVANCE(77); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '}') ADVANCE(439); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(1006); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(55) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '"', 506, + '\'', 507, + '(', 457, + '*', 418, + ',', 438, + '.', 501, + '/', 69, + '<', 582, + '?', 77, + '\\', 352, + '`', 626, + 't', 1030, + '{', 436, + '}', 439, + 0x2028, 1006, + 0x2029, 1006, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(55); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '|' || '~' < lookahead)) ADVANCE(1041); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 56: - if (lookahead == '"') ADVANCE(506); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '*') ADVANCE(418); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '/') ADVANCE(69); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'f') ADVANCE(973); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == '{') ADVANCE(436); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(873); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(56) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '"', 506, + '\'', 507, + '*', 418, + ',', 438, + '/', 69, + '\\', 352, + 'f', 973, + 't', 1030, + '{', 436, + 0x2028, 873, + 0x2029, 873, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(56); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(1041); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 57: - if (lookahead == '"') ADVANCE(506); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '/') ADVANCE(69); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(985); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == '}') ADVANCE(439); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(802); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(57) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '"', 506, + '\'', 507, + ',', 438, + '/', 69, + '\\', 352, + 'a', 985, + 't', 1030, + '}', 439, + 0x2028, 802, + 0x2029, 802, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(57); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); + lookahead != 'a' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 58: if (lookahead == '"') ADVANCE(506); if (lookahead == '/') ADVANCE(69); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(58) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(58); END_STATE(); case 59: if (lookahead == '"') ADVANCE(506); if (lookahead == '/') ADVANCE(607); if (lookahead == '\\') ADVANCE(354); if (lookahead == '\n' || - lookahead == '\r') SKIP(58) - if (sym_unescaped_double_string_fragment_character_set_1(lookahead)) ADVANCE(610); + lookahead == '\r') SKIP(58); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(610); if (lookahead != 0) ADVANCE(611); END_STATE(); case 60: @@ -14772,63 +14426,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '#') ADVANCE(374); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(133); - if (lookahead != 0) ADVANCE(511); + if (lookahead != 0) ADVANCE(517); END_STATE(); case 62: if (lookahead == '#') ADVANCE(374); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(133); - if (lookahead != 0) ADVANCE(517); + if (lookahead != 0) ADVANCE(511); END_STATE(); case 63: - if (lookahead == '&') ADVANCE(557); - if (lookahead == '(') ADVANCE(457); - if (lookahead == ')') ADVANCE(458); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(69); - if (lookahead == ':') ADVANCE(473); - if (lookahead == '<') ADVANCE(582); - if (lookahead == '=') ADVANCE(428); - if (lookahead == '>') ADVANCE(497); - if (lookahead == '?') ADVANCE(1050); - if (lookahead == '[') ADVANCE(480); - if (lookahead == ']') ADVANCE(481); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(317); - if (lookahead == 'e') ADVANCE(238); - if (lookahead == 'f') ADVANCE(306); - if (lookahead == 'i') ADVANCE(271); - if (lookahead == 'o') ADVANCE(213); - if (lookahead == 'w') ADVANCE(220); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(562); - if (lookahead == '}') ADVANCE(439); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(63) + ADVANCE_MAP( + '&', 557, + '(', 457, + ')', 458, + ',', 438, + '.', 501, + '/', 69, + ':', 473, + '<', 582, + '=', 428, + '>', 497, + '?', 1050, + '[', 480, + ']', 481, + '`', 626, + 'a', 317, + 'e', 238, + 'f', 306, + 'i', 271, + 'o', 213, + 'w', 220, + '{', 436, + '|', 562, + '}', 439, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(63); END_STATE(); case 64: - if (lookahead == '&') ADVANCE(557); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(70); - if (lookahead == ':') ADVANCE(473); - if (lookahead == '<') ADVANCE(582); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(497); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'e') ADVANCE(740); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(562); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(850); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(64) + ADVANCE_MAP( + '&', 557, + ',', 438, + '.', 501, + '/', 70, + ':', 473, + '<', 582, + '=', 425, + '>', 497, + '[', 480, + '\\', 352, + 'e', 740, + '{', 436, + '|', 562, + 0x2028, 850, + 0x2029, 850, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(64); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (lookahead != 0 && - lookahead > '~') ADVANCE(1041); + if (lookahead > '~') ADVANCE(1042); END_STATE(); case 65: if (lookahead == '&') ADVANCE(60); @@ -14836,31 +14493,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(583); if (lookahead == '{') ADVANCE(436); if (lookahead == '\n' || - lookahead == ' ') SKIP(65) - if (aux_sym_jsx_text_token1_character_set_1(lookahead)) ADVANCE(490); + lookahead == ' ') SKIP(65); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(490); if (lookahead != 0 && lookahead != '>' && lookahead != '}') ADVANCE(489); END_STATE(); case 66: - if (lookahead == '&') ADVANCE(62); + if (lookahead == '&') ADVANCE(61); if (lookahead == '\'') ADVANCE(507); if (lookahead == '/') ADVANCE(516); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(515); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(515); if (lookahead != 0) ADVANCE(517); END_STATE(); case 67: if (lookahead == '\'') ADVANCE(507); if (lookahead == '/') ADVANCE(69); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(67) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(67); END_STATE(); case 68: if (lookahead == '\'') ADVANCE(507); if (lookahead == '/') ADVANCE(612); if (lookahead == '\\') ADVANCE(354); if (lookahead == '\n' || - lookahead == '\r') SKIP(67) - if (sym_unescaped_double_string_fragment_character_set_1(lookahead)) ADVANCE(615); + lookahead == '\r') SKIP(67); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(615); if (lookahead != 0) ADVANCE(616); END_STATE(); case 69: @@ -14882,35 +14539,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(72); END_STATE(); case 73: - if (lookahead == '*') ADVANCE(512); + if (lookahead == '*') ADVANCE(518); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); - if (lookahead != 0) ADVANCE(513); + if (lookahead != 0) ADVANCE(519); END_STATE(); case 74: - if (lookahead == '*') ADVANCE(518); + if (lookahead == '*') ADVANCE(512); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(72); - if (lookahead != 0) ADVANCE(519); + if (lookahead != 0) ADVANCE(513); END_STATE(); case 75: - if (lookahead == '+') ADVANCE(137); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(138); - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(69); - if (lookahead == ':') ADVANCE(473); - if (lookahead == '<') ADVANCE(582); - if (lookahead == '?') ADVANCE(94); - if (lookahead == 'e') ADVANCE(358); - if (lookahead == '{') ADVANCE(437); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(75) + ADVANCE_MAP( + '+', 137, + ',', 438, + '-', 138, + '.', 501, + '/', 69, + ':', 473, + '<', 582, + '?', 94, + 'e', 358, + '{', 437, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(75); END_STATE(); case 76: if (lookahead == '.') ADVANCE(80); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); END_STATE(); case 77: if (lookahead == '.') ADVANCE(527); @@ -14927,27 +14586,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '.') ADVANCE(546); END_STATE(); case 81: - if (lookahead == '.') ADVANCE(501); - if (lookahead == '/') ADVANCE(70); - if (lookahead == ':') ADVANCE(473); - if (lookahead == '<') ADVANCE(582); - if (lookahead == '=') ADVANCE(425); - if (lookahead == '>') ADVANCE(497); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '{') ADVANCE(436); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(1034); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(81) + ADVANCE_MAP( + '.', 501, + '/', 70, + ':', 473, + '<', 582, + '=', 425, + '>', 497, + '\\', 352, + '{', 436, + 0x2028, 1035, + 0x2029, 1035, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(81); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (lookahead != 0 && - lookahead > '~') ADVANCE(1041); + if (lookahead > '~') ADVANCE(1042); END_STATE(); case 82: if (lookahead == '/') ADVANCE(628); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(90) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(90); END_STATE(); case 83: if (lookahead == '/') ADVANCE(69); @@ -14956,30 +14616,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(1026); if (lookahead == 'i') ADVANCE(916); if (lookahead == '{') ADVANCE(436); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(852); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(83) - if (lookahead != 0 && - lookahead > '#' && + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(852); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(83); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(1041); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 84: if (lookahead == '/') ADVANCE(69); if (lookahead == '>') ADVANCE(497); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'c') ADVANCE(950); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(826); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(84) - if (lookahead != 0 && - lookahead > '#' && + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(826); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(84); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 85: if (lookahead == '/') ADVANCE(69); @@ -14987,107 +14645,104 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(929); if (lookahead == '{') ADVANCE(436); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(865); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(85) - if (lookahead != 0 && - lookahead > '#' && + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(865); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(85); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && + (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(1041); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 86: - if (lookahead == '/') ADVANCE(69); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(926); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(790); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(86) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '/', 69, + '\\', 352, + 'a', 926, + 'b', 951, + 'd', 856, + 'e', 1025, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 0x2028, 790, + 0x2029, 790, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(86); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 87: - if (lookahead == '/') ADVANCE(69); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(927); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'n') ADVANCE(851); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(804); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(87) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '/', 69, + '\\', 352, + 'a', 927, + 'b', 951, + 'n', 851, + 'o', 816, + 's', 994, + 'u', 930, + 'v', 946, + 0x2028, 804, + 0x2029, 804, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(87); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 88: if (lookahead == '/') ADVANCE(69); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'i') ADVANCE(922); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(883); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(88) - if (lookahead != 0 && - lookahead > '#' && + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(883); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(88); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 89: if (lookahead == '/') ADVANCE(69); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'r') ADVANCE(867); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(980); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(89) - if (lookahead != 0 && - lookahead > '#' && + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(980); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(89); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(1041); + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 90: if (lookahead == '/') ADVANCE(69); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(90) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(90); END_STATE(); case 91: if (lookahead == '/') ADVANCE(70); if (lookahead == '>') ADVANCE(497); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'c') ADVANCE(719); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(822); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(91) + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(822); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(91); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (lookahead != 0 && - lookahead > '~') ADVANCE(1041); + if (lookahead > '~') ADVANCE(1042); END_STATE(); case 92: if (lookahead == ':') ADVANCE(1097); @@ -15309,7 +14964,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 139: if (lookahead == '\\') ADVANCE(351); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1043); + if (set_contains(sym_identifier_character_set_1, 13, lookahead)) ADVANCE(1043); END_STATE(); case 140: if (lookahead == '\\') ADVANCE(401); @@ -16058,7 +15713,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(388); END_STATE(); case 368: - if (lookahead == '}') ADVANCE(1041); + if (lookahead == '}') ADVANCE(1042); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(368); @@ -16087,7 +15742,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 373: if (lookahead == '+' || lookahead == '-') ADVANCE(380); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); END_STATE(); case 374: if (lookahead == 'X' || @@ -16096,27 +15751,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 375: if (lookahead == '0' || - lookahead == '1') ADVANCE(670); + lookahead == '1') ADVANCE(671); END_STATE(); case 376: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(671); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(672); END_STATE(); case 377: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(663); END_STATE(); case 378: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); END_STATE(); case 379: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(670); END_STATE(); case 380: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); END_STATE(); case 381: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1041); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1042); END_STATE(); case 382: if (('0' <= lookahead && lookahead <= '9') || @@ -16131,7 +15786,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 384: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(672); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(673); END_STATE(); case 385: if (('0' <= lookahead && lookahead <= '9') || @@ -16207,13 +15862,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '#' && (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(511); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(517); END_STATE(); case 400: if (lookahead != 0 && lookahead != '#' && (lookahead < 'A' || 'Z' < lookahead) && - (lookahead < 'a' || 'z' < lookahead)) ADVANCE(517); + (lookahead < 'a' || 'z' < lookahead)) ADVANCE(511); END_STATE(); case 401: if (lookahead != 0 && @@ -16225,567 +15880,574 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 403: if (eof) ADVANCE(414); - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '$') ADVANCE(1032); - if (lookahead == '%') ADVANCE(579); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == ')') ADVANCE(458); - if (lookahead == '*') ADVANCE(419); - if (lookahead == '+') ADVANCE(571); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(575); - if (lookahead == '.') ADVANCE(502); - if (lookahead == '/') ADVANCE(577); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(584); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '>') ADVANCE(498); - if (lookahead == '?') ADVANCE(1052); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == ']') ADVANCE(481); - if (lookahead == '^') ADVANCE(561); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(810); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(779); - if (lookahead == 'd') ADVANCE(836); - if (lookahead == 'e') ADVANCE(894); - if (lookahead == 'f') ADVANCE(880); - if (lookahead == 'g') ADVANCE(900); - if (lookahead == 'i') ADVANCE(909); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(780); - if (lookahead == 'o') ADVANCE(815); - if (lookahead == 'r') ADVANCE(839); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(789); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == '{') ADVANCE(437); - if (lookahead == '|') ADVANCE(564); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(677); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(403) - if (lookahead != 0 && - lookahead > 31) ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '#', 34, + '$', 1032, + '%', 579, + '&', 558, + '\'', 507, + '(', 457, + ')', 458, + '*', 419, + '+', 571, + ',', 438, + '-', 575, + '.', 502, + '/', 577, + '0', 660, + ':', 473, + ';', 472, + '<', 584, + '=', 427, + '>', 498, + '?', 1052, + '@', 1046, + '[', 480, + '\\', 352, + ']', 481, + '^', 561, + '`', 626, + 'a', 810, + 'b', 951, + 'c', 779, + 'd', 836, + 'e', 894, + 'f', 880, + 'g', 900, + 'i', 909, + 'l', 837, + 'm', 945, + 'n', 780, + 'o', 815, + 'r', 839, + 's', 785, + 't', 789, + 'u', 930, + 'v', 792, + 'w', 878, + '{', 437, + '|', 564, + '}', 439, + '~', 601, + 0x2028, 677, + 0x2029, 677, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(403); + if (lookahead > '@') ADVANCE(1042); END_STATE(); case 404: if (eof) ADVANCE(414); - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '%') ADVANCE(578); - if (lookahead == '&') ADVANCE(559); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(420); - if (lookahead == '+') ADVANCE(569); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(503); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(588); - if (lookahead == '=') ADVANCE(426); - if (lookahead == '>') ADVANCE(499); - if (lookahead == '?') ADVANCE(79); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(810); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(897); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(928); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(919); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(565); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(746); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(404) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '#', 139, + '%', 578, + '&', 559, + '\'', 507, + '(', 457, + '*', 420, + '+', 569, + ',', 438, + '-', 573, + '.', 503, + '/', 576, + '0', 660, + ';', 472, + '<', 588, + '=', 426, + '>', 499, + '?', 79, + '@', 1046, + '[', 480, + '\\', 352, + '^', 560, + '`', 626, + 'a', 810, + 'b', 951, + 'c', 897, + 'd', 856, + 'e', 928, + 'f', 1015, + 'i', 919, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + 'v', 792, + 'w', 878, + '{', 436, + '|', 565, + '}', 439, + '~', 601, + 0x2028, 746, + 0x2029, 746, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(404); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead)) ADVANCE(1042); END_STATE(); case 405: if (eof) ADVANCE(414); - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '%') ADVANCE(578); - if (lookahead == '&') ADVANCE(559); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(420); - if (lookahead == '+') ADVANCE(569); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(503); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(588); - if (lookahead == '=') ADVANCE(426); - if (lookahead == '>') ADVANCE(499); - if (lookahead == '?') ADVANCE(79); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '^') ADVANCE(560); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(810); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(897); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(895); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(919); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(565); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(748); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(405) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(1041); + ADVANCE_MAP( + '!', 454, + '"', 506, + '#', 139, + '%', 578, + '&', 559, + '\'', 507, + '(', 457, + '*', 420, + '+', 569, + ',', 438, + '-', 573, + '.', 503, + '/', 576, + '0', 660, + ';', 472, + '<', 588, + '=', 426, + '>', 499, + '?', 79, + '@', 1046, + '[', 480, + '\\', 352, + '^', 560, + '`', 626, + 'a', 810, + 'b', 951, + 'c', 897, + 'd', 856, + 'e', 895, + 'f', 1015, + 'i', 919, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + 'v', 792, + 'w', 878, + '{', 436, + '|', 565, + '}', 439, + '~', 601, + 0x2028, 748, + 0x2029, 748, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(405); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead)) ADVANCE(1042); END_STATE(); case 406: if (eof) ADVANCE(414); - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '$') ADVANCE(363); - if (lookahead == '%') ADVANCE(579); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == ')') ADVANCE(458); - if (lookahead == '*') ADVANCE(419); - if (lookahead == '+') ADVANCE(570); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(574); - if (lookahead == '.') ADVANCE(503); - if (lookahead == '/') ADVANCE(577); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(585); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '>') ADVANCE(498); - if (lookahead == '?') ADVANCE(1052); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(354); - if (lookahead == ']') ADVANCE(481); - if (lookahead == '^') ADVANCE(561); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(163); - if (lookahead == 'b') ADVANCE(286); - if (lookahead == 'c') ADVANCE(142); - if (lookahead == 'd') ADVANCE(185); - if (lookahead == 'e') ADVANCE(236); - if (lookahead == 'f') ADVANCE(223); - if (lookahead == 'g') ADVANCE(243); - if (lookahead == 'i') ADVANCE(256); - if (lookahead == 'l') ADVANCE(197); - if (lookahead == 'm') ADVANCE(282); - if (lookahead == 'n') ADVANCE(144); - if (lookahead == 'o') ADVANCE(166); - if (lookahead == 'r') ADVANCE(186); - if (lookahead == 's') ADVANCE(148); - if (lookahead == 't') ADVANCE(146); - if (lookahead == 'u') ADVANCE(265); - if (lookahead == 'v') ADVANCE(151); - if (lookahead == 'w') ADVANCE(221); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(564); - if (lookahead == '}') ADVANCE(439); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(407) + ADVANCE_MAP( + '!', 454, + '"', 506, + '$', 363, + '%', 579, + '&', 558, + '\'', 507, + '(', 457, + ')', 458, + '*', 419, + '+', 570, + ',', 438, + '-', 574, + '.', 503, + '/', 577, + '0', 660, + ':', 473, + ';', 472, + '<', 585, + '=', 427, + '>', 498, + '?', 1052, + '@', 1046, + '[', 480, + '\\', 354, + ']', 481, + '^', 561, + '`', 626, + 'a', 163, + 'b', 286, + 'c', 142, + 'd', 185, + 'e', 236, + 'f', 223, + 'g', 243, + 'i', 256, + 'l', 197, + 'm', 282, + 'n', 144, + 'o', 166, + 'r', 186, + 's', 148, + 't', 146, + 'u', 265, + 'v', 151, + 'w', 221, + '{', 436, + '|', 564, + '}', 439, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(407); END_STATE(); case 407: if (eof) ADVANCE(414); - if (lookahead == '!') ADVANCE(454); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '$') ADVANCE(363); - if (lookahead == '%') ADVANCE(579); - if (lookahead == '&') ADVANCE(558); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == ')') ADVANCE(458); - if (lookahead == '*') ADVANCE(419); - if (lookahead == '+') ADVANCE(570); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(574); - if (lookahead == '.') ADVANCE(503); - if (lookahead == '/') ADVANCE(577); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ':') ADVANCE(473); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(585); - if (lookahead == '=') ADVANCE(427); - if (lookahead == '>') ADVANCE(498); - if (lookahead == '?') ADVANCE(1052); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == ']') ADVANCE(481); - if (lookahead == '^') ADVANCE(561); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(163); - if (lookahead == 'b') ADVANCE(286); - if (lookahead == 'c') ADVANCE(142); - if (lookahead == 'd') ADVANCE(185); - if (lookahead == 'e') ADVANCE(236); - if (lookahead == 'f') ADVANCE(223); - if (lookahead == 'g') ADVANCE(243); - if (lookahead == 'i') ADVANCE(256); - if (lookahead == 'l') ADVANCE(197); - if (lookahead == 'm') ADVANCE(282); - if (lookahead == 'n') ADVANCE(144); - if (lookahead == 'o') ADVANCE(166); - if (lookahead == 'r') ADVANCE(186); - if (lookahead == 's') ADVANCE(148); - if (lookahead == 't') ADVANCE(146); - if (lookahead == 'u') ADVANCE(265); - if (lookahead == 'v') ADVANCE(151); - if (lookahead == 'w') ADVANCE(221); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '|') ADVANCE(564); - if (lookahead == '}') ADVANCE(439); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(407) + ADVANCE_MAP( + '!', 454, + '"', 506, + '$', 363, + '%', 579, + '&', 558, + '\'', 507, + '(', 457, + ')', 458, + '*', 419, + '+', 570, + ',', 438, + '-', 574, + '.', 503, + '/', 577, + '0', 660, + ':', 473, + ';', 472, + '<', 585, + '=', 427, + '>', 498, + '?', 1052, + '@', 1046, + '[', 480, + ']', 481, + '^', 561, + '`', 626, + 'a', 163, + 'b', 286, + 'c', 142, + 'd', 185, + 'e', 236, + 'f', 223, + 'g', 243, + 'i', 256, + 'l', 197, + 'm', 282, + 'n', 144, + 'o', 166, + 'r', 186, + 's', 148, + 't', 146, + 'u', 265, + 'v', 151, + 'w', 221, + '{', 436, + '|', 564, + '}', 439, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(407); END_STATE(); case 408: if (eof) ADVANCE(414); - if (lookahead == '!') ADVANCE(453); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(34); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '*') ADVANCE(418); - if (lookahead == '+') ADVANCE(569); - if (lookahead == ',') ADVANCE(438); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(502); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(589); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(897); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(928); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(767); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(408) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(1041); + ADVANCE_MAP( + '!', 453, + '"', 506, + '#', 34, + '\'', 507, + '(', 457, + '*', 418, + '+', 569, + ',', 438, + '-', 573, + '.', 502, + '/', 576, + '0', 660, + ';', 472, + '<', 589, + '@', 1046, + '[', 480, + '\\', 352, + '`', 626, + 'a', 812, + 'b', 951, + 'c', 897, + 'd', 856, + 'e', 928, + 'f', 1015, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + '{', 436, + '}', 439, + '~', 601, + 0x2028, 767, + 0x2029, 767, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(408); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 409: if (eof) ADVANCE(414); - if (lookahead == '!') ADVANCE(453); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '+') ADVANCE(569); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(503); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(589); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(897); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(895); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(409) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(1041); + ADVANCE_MAP( + '!', 453, + '"', 506, + '#', 139, + '\'', 507, + '(', 457, + '+', 569, + '-', 573, + '.', 503, + '/', 576, + '0', 660, + ';', 472, + '<', 589, + '@', 1046, + '[', 480, + '\\', 352, + '`', 626, + 'a', 812, + 'b', 951, + 'c', 897, + 'd', 856, + 'e', 895, + 'f', 1015, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + '{', 436, + '}', 439, + '~', 601, + 0x2028, 771, + 0x2029, 771, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(409); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 410: if (eof) ADVANCE(414); - if (lookahead == '!') ADVANCE(453); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '+') ADVANCE(569); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(378); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(589); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(897); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(928); - if (lookahead == 'f') ADVANCE(881); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(766); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(410) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(1041); + ADVANCE_MAP( + '!', 453, + '"', 506, + '#', 139, + '\'', 507, + '(', 457, + '+', 569, + '-', 573, + '.', 378, + '/', 576, + '0', 660, + ';', 472, + '<', 589, + '@', 1046, + '[', 480, + '\\', 352, + '`', 626, + 'a', 812, + 'b', 951, + 'c', 897, + 'd', 856, + 'e', 928, + 'f', 881, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + '{', 436, + '}', 439, + '~', 601, + 0x2028, 766, + 0x2029, 766, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(410); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 411: if (eof) ADVANCE(414); - if (lookahead == '!') ADVANCE(453); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '+') ADVANCE(569); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(378); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(589); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(897); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(895); - if (lookahead == 'f') ADVANCE(881); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(770); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(411) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(1041); + ADVANCE_MAP( + '!', 453, + '"', 506, + '#', 139, + '\'', 507, + '(', 457, + '+', 569, + '-', 573, + '.', 378, + '/', 576, + '0', 660, + ';', 472, + '<', 589, + '@', 1046, + '[', 480, + '\\', 352, + '`', 626, + 'a', 812, + 'b', 951, + 'c', 897, + 'd', 856, + 'e', 895, + 'f', 881, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + '{', 436, + '}', 439, + '~', 601, + 0x2028, 770, + 0x2029, 770, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(411); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 412: if (eof) ADVANCE(414); - if (lookahead == '!') ADVANCE(453); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '+') ADVANCE(569); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(378); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(589); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(805); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(928); - if (lookahead == 'f') ADVANCE(881); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(772); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(412) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(1041); + ADVANCE_MAP( + '!', 453, + '"', 506, + '#', 139, + '\'', 507, + '(', 457, + '+', 569, + '-', 573, + '.', 378, + '/', 576, + '0', 660, + ';', 472, + '<', 589, + '@', 1046, + '[', 480, + '\\', 352, + '`', 626, + 'a', 812, + 'b', 951, + 'c', 805, + 'd', 856, + 'e', 928, + 'f', 881, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + '{', 436, + '}', 439, + '~', 601, + 0x2028, 772, + 0x2029, 772, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(412); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 413: if (eof) ADVANCE(414); - if (lookahead == '!') ADVANCE(453); - if (lookahead == '"') ADVANCE(506); - if (lookahead == '#') ADVANCE(139); - if (lookahead == '\'') ADVANCE(507); - if (lookahead == '(') ADVANCE(457); - if (lookahead == '+') ADVANCE(569); - if (lookahead == '-') ADVANCE(573); - if (lookahead == '.') ADVANCE(378); - if (lookahead == '/') ADVANCE(576); - if (lookahead == '0') ADVANCE(660); - if (lookahead == ';') ADVANCE(472); - if (lookahead == '<') ADVANCE(589); - if (lookahead == '@') ADVANCE(1046); - if (lookahead == '[') ADVANCE(480); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '`') ADVANCE(626); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(805); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(895); - if (lookahead == 'f') ADVANCE(881); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == '{') ADVANCE(436); - if (lookahead == '}') ADVANCE(439); - if (lookahead == '~') ADVANCE(601); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(773); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(413) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(1041); + ADVANCE_MAP( + '!', 453, + '"', 506, + '#', 139, + '\'', 507, + '(', 457, + '+', 569, + '-', 573, + '.', 378, + '/', 576, + '0', 660, + ';', 472, + '<', 589, + '@', 1046, + '[', 480, + '\\', 352, + '`', 626, + 'a', 812, + 'b', 951, + 'c', 805, + 'd', 856, + 'e', 895, + 'f', 881, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + '{', 436, + '}', 439, + '~', 601, + 0x2028, 773, + 0x2029, 773, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(413); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(1042); END_STATE(); case 414: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -16801,7 +16463,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 417: ACCEPT_TOKEN(anon_sym_export); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 418: ACCEPT_TOKEN(anon_sym_STAR); @@ -16821,7 +16483,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 422: ACCEPT_TOKEN(anon_sym_default); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 423: ACCEPT_TOKEN(anon_sym_type); @@ -16829,7 +16491,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 424: ACCEPT_TOKEN(anon_sym_type); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 425: ACCEPT_TOKEN(anon_sym_EQ); @@ -16854,12 +16516,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_as); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'y') ADVANCE(937); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 431: ACCEPT_TOKEN(anon_sym_as); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 432: ACCEPT_TOKEN(anon_sym_as); @@ -16875,7 +16537,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 435: ACCEPT_TOKEN(anon_sym_namespace); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 436: ACCEPT_TOKEN(anon_sym_LBRACE); @@ -16896,7 +16558,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 441: ACCEPT_TOKEN(anon_sym_import); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 442: ACCEPT_TOKEN(anon_sym_from); @@ -16904,7 +16566,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 443: ACCEPT_TOKEN(anon_sym_from); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 444: ACCEPT_TOKEN(anon_sym_with); @@ -16912,7 +16574,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 445: ACCEPT_TOKEN(anon_sym_with); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 446: ACCEPT_TOKEN(anon_sym_var); @@ -16920,7 +16582,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 447: ACCEPT_TOKEN(anon_sym_var); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 448: ACCEPT_TOKEN(anon_sym_let); @@ -16928,7 +16590,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 449: ACCEPT_TOKEN(anon_sym_let); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 450: ACCEPT_TOKEN(anon_sym_const); @@ -16942,12 +16604,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 452: ACCEPT_TOKEN(anon_sym_const); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 453: ACCEPT_TOKEN(anon_sym_BANG); @@ -16962,7 +16624,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 456: ACCEPT_TOKEN(anon_sym_else); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 457: ACCEPT_TOKEN(anon_sym_LPAREN); @@ -16976,7 +16638,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 460: ACCEPT_TOKEN(anon_sym_await); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 461: ACCEPT_TOKEN(anon_sym_in); @@ -16986,13 +16648,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(352); if (lookahead == 's') ADVANCE(1011); if (lookahead == 't') ADVANCE(855); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 463: ACCEPT_TOKEN(anon_sym_in); if (lookahead == '\\') ADVANCE(352); if (lookahead == 's') ADVANCE(1011); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 464: ACCEPT_TOKEN(anon_sym_in); @@ -17014,7 +16676,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 468: ACCEPT_TOKEN(anon_sym_of); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 469: ACCEPT_TOKEN(anon_sym_of); @@ -17026,7 +16688,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 471: ACCEPT_TOKEN(anon_sym_while); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 472: ACCEPT_TOKEN(anon_sym_SEMI); @@ -17040,7 +16702,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 475: ACCEPT_TOKEN(anon_sym_case); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 476: ACCEPT_TOKEN(anon_sym_catch); @@ -17048,7 +16710,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 477: ACCEPT_TOKEN(anon_sym_catch); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 478: ACCEPT_TOKEN(anon_sym_finally); @@ -17056,7 +16718,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 479: ACCEPT_TOKEN(anon_sym_finally); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 480: ACCEPT_TOKEN(anon_sym_LBRACK); @@ -17076,9 +16738,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__glimmer_template_content); if (lookahead == '/') ADVANCE(483); if (lookahead == '<') ADVANCE(485); - if (sym__glimmer_template_content_character_set_2(lookahead)) ADVANCE(484); + if ((set_contains(extras_character_set_1, 10, lookahead)) && + lookahead != '\n') ADVANCE(484); if (lookahead != 0 && - lookahead != '\n') ADVANCE(482); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(482); END_STATE(); case 485: ACCEPT_TOKEN(sym__glimmer_template_content); @@ -17118,9 +16781,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_jsx_text_token1); if (lookahead == ' ') ADVANCE(1); if (lookahead == '/') ADVANCE(488); - if (aux_sym_jsx_text_token1_character_set_2(lookahead)) ADVANCE(490); + if ((set_contains(extras_character_set_1, 10, lookahead)) && + lookahead != '\n') ADVANCE(490); if (lookahead != 0 && - lookahead != '\n' && + (lookahead < '\t' || '\r' < lookahead) && lookahead != '&' && lookahead != '<' && lookahead != '>' && @@ -17129,27 +16793,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 491: ACCEPT_TOKEN(aux_sym_jsx_text_token1); - if (lookahead == ' ') ADVANCE(5); - if (lookahead == '*') ADVANCE(491); - if (lookahead == '/') ADVANCE(489); - if (lookahead == '\n' || - lookahead == '&' || - lookahead == '<' || - lookahead == '>' || - lookahead == '{' || - lookahead == '}') ADVANCE(72); + ADVANCE_MAP( + ' ', 5, + '*', 491, + '/', 489, + '\n', 72, + '&', 72, + '<', 72, + '>', 72, + '{', 72, + '}', 72, + ); if (lookahead != 0) ADVANCE(492); END_STATE(); case 492: ACCEPT_TOKEN(aux_sym_jsx_text_token1); - if (lookahead == ' ') ADVANCE(5); - if (lookahead == '*') ADVANCE(491); - if (lookahead == '\n' || - lookahead == '&' || - lookahead == '<' || - lookahead == '>' || - lookahead == '{' || - lookahead == '}') ADVANCE(72); + ADVANCE_MAP( + ' ', 5, + '*', 491, + '\n', 72, + '&', 72, + '<', 72, + '>', 72, + '{', 72, + '}', 72, + ); if (lookahead != 0) ADVANCE(492); END_STATE(); case 493: @@ -17210,11 +16878,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 502: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(80); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); END_STATE(); case 503: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); END_STATE(); case 504: ACCEPT_TOKEN(anon_sym_LT_SLASH); @@ -17231,21 +16899,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 508: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); if (lookahead == '\n') ADVANCE(511); - if (lookahead == '&') ADVANCE(623); + if (lookahead == '&') ADVANCE(624); if (lookahead != 0 && lookahead != '"') ADVANCE(508); END_STATE(); case 509: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(61); + if (lookahead == '&') ADVANCE(62); if (lookahead == '/') ADVANCE(510); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(509); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(509); if (lookahead != 0 && lookahead != '"') ADVANCE(511); END_STATE(); case 510: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(399); + if (lookahead == '&') ADVANCE(400); if (lookahead == '*') ADVANCE(513); if (lookahead == '/') ADVANCE(508); if (lookahead != 0 && @@ -17253,13 +16921,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 511: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(399); + if (lookahead == '&') ADVANCE(400); if (lookahead != 0 && lookahead != '"') ADVANCE(511); END_STATE(); case 512: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(73); + if (lookahead == '&') ADVANCE(74); if (lookahead == '*') ADVANCE(512); if (lookahead == '/') ADVANCE(511); if (lookahead != 0 && @@ -17267,7 +16935,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 513: ACCEPT_TOKEN(sym_unescaped_double_jsx_string_fragment); - if (lookahead == '&') ADVANCE(73); + if (lookahead == '&') ADVANCE(74); if (lookahead == '*') ADVANCE(512); if (lookahead != 0 && lookahead != '"') ADVANCE(513); @@ -17275,45 +16943,51 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 514: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); if (lookahead == '\n') ADVANCE(517); - if (lookahead == '&') ADVANCE(624); + if (lookahead == '&') ADVANCE(623); if (lookahead != 0 && + lookahead != '&' && lookahead != '\'') ADVANCE(514); END_STATE(); case 515: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(62); + if (lookahead == '&') ADVANCE(61); if (lookahead == '/') ADVANCE(516); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(515); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(515); if (lookahead != 0 && + lookahead != '&' && lookahead != '\'') ADVANCE(517); END_STATE(); case 516: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(400); + if (lookahead == '&') ADVANCE(399); if (lookahead == '*') ADVANCE(519); if (lookahead == '/') ADVANCE(514); if (lookahead != 0 && + lookahead != '&' && lookahead != '\'') ADVANCE(517); END_STATE(); case 517: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(400); + if (lookahead == '&') ADVANCE(399); if (lookahead != 0 && + lookahead != '&' && lookahead != '\'') ADVANCE(517); END_STATE(); case 518: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(74); + if (lookahead == '&') ADVANCE(73); if (lookahead == '*') ADVANCE(518); if (lookahead == '/') ADVANCE(517); if (lookahead != 0 && + lookahead != '&' && lookahead != '\'') ADVANCE(519); END_STATE(); case 519: ACCEPT_TOKEN(sym_unescaped_single_jsx_string_fragment); - if (lookahead == '&') ADVANCE(74); + if (lookahead == '&') ADVANCE(73); if (lookahead == '*') ADVANCE(518); if (lookahead != 0 && + lookahead != '&' && lookahead != '\'') ADVANCE(519); END_STATE(); case 520: @@ -17322,7 +16996,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 521: ACCEPT_TOKEN(anon_sym_class); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 522: ACCEPT_TOKEN(anon_sym_async); @@ -17330,7 +17004,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 523: ACCEPT_TOKEN(anon_sym_async); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 524: ACCEPT_TOKEN(anon_sym_function); @@ -17338,7 +17012,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 525: ACCEPT_TOKEN(anon_sym_function); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 526: ACCEPT_TOKEN(anon_sym_EQ_GT); @@ -17358,12 +17032,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 530: ACCEPT_TOKEN(anon_sym_new); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 531: ACCEPT_TOKEN(anon_sym_PLUS_EQ); @@ -17630,7 +17304,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 599: ACCEPT_TOKEN(anon_sym_instanceof); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 600: ACCEPT_TOKEN(anon_sym_instanceof); @@ -17651,12 +17325,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 604: ACCEPT_TOKEN(anon_sym_void); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 605: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); @@ -17696,9 +17370,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 610: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead == '/') ADVANCE(607); - if (sym_unescaped_double_string_fragment_character_set_2(lookahead)) ADVANCE(610); + if ((set_contains(extras_character_set_1, 10, lookahead)) && + lookahead != '\n' && + lookahead != '\r') ADVANCE(610); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead) && + (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && lookahead != '\\') ADVANCE(611); END_STATE(); @@ -17742,9 +17418,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 615: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead == '/') ADVANCE(612); - if (sym_unescaped_double_string_fragment_character_set_2(lookahead)) ADVANCE(615); + if ((set_contains(extras_character_set_1, 10, lookahead)) && + lookahead != '\n' && + lookahead != '\r') ADVANCE(615); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead) && + (lookahead < '\t' || '\r' < lookahead) && lookahead != '\'' && lookahead != '\\') ADVANCE(616); END_STATE(); @@ -17762,13 +17440,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 618: ACCEPT_TOKEN(sym_escape_sequence); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 619: ACCEPT_TOKEN(sym_escape_sequence); if (lookahead == '\n' || - lookahead == 8232 || - lookahead == 8233) ADVANCE(617); + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(617); END_STATE(); case 620: ACCEPT_TOKEN(sym_escape_sequence); @@ -17783,19 +17461,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 623: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '\n') ADVANCE(511); + if (lookahead == '\n') ADVANCE(517); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(625); - if (lookahead != 0) ADVANCE(508); + if (lookahead != 0) ADVANCE(514); END_STATE(); case 624: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '\n') ADVANCE(517); + if (lookahead == '\n') ADVANCE(511); if (lookahead == '#' || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(625); - if (lookahead != 0) ADVANCE(514); + if (lookahead != 0) ADVANCE(508); END_STATE(); case 625: ACCEPT_TOKEN(aux_sym_comment_token1); @@ -17813,11 +17491,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 629: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '\n') SKIP(90) + if (lookahead == '\n') SKIP(90); if (lookahead == '/') ADVANCE(69); if (lookahead == '[') ADVANCE(140); if (lookahead == '\\') ADVANCE(402); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(629); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(629); if (lookahead != 0) ADVANCE(630); END_STATE(); case 630: @@ -17973,177 +17651,183 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 660: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(676); - if (lookahead == '0') ADVANCE(673); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(375); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(373); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(376); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(384); - if (lookahead == '_') ADVANCE(379); - if (lookahead == 'n') ADVANCE(659); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + ADVANCE_MAP( + '.', 676, + '0', 670, + '_', 379, + 'n', 659, + 'B', 375, + 'b', 375, + 'E', 373, + 'e', 373, + 'O', 376, + 'o', 376, + 'X', 384, + 'x', 384, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); END_STATE(); case 661: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(676); - if (lookahead == '0') ADVANCE(667); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(1033); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1042); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(1036); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(1040); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '_') ADVANCE(1038); - if (lookahead == 'n') ADVANCE(669); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_identifier_character_set_3(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '.', 676, + '0', 664, + '\\', 352, + '_', 1039, + 'n', 669, + 'B', 1034, + 'b', 1034, + 'E', 1033, + 'e', 1033, + 'O', 1037, + 'o', 1037, + 'X', 1041, + 'x', 1041, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 662: ACCEPT_TOKEN(sym_number); if (lookahead == '.') ADVANCE(676); + if (lookahead == '\\') ADVANCE(352); + if (lookahead == '_') ADVANCE(1038); + if (lookahead == 'n') ADVANCE(669); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(373); - if (lookahead == '_') ADVANCE(377); - if (lookahead == 'n') ADVANCE(659); + lookahead == 'e') ADVANCE(1033); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 663: ACCEPT_TOKEN(sym_number); if (lookahead == '.') ADVANCE(676); + if (lookahead == '_') ADVANCE(377); + if (lookahead == 'n') ADVANCE(659); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1042); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == '_') ADVANCE(1037); - if (lookahead == 'n') ADVANCE(669); + lookahead == 'e') ADVANCE(373); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_identifier_character_set_3(lookahead)) ADVANCE(1041); END_STATE(); case 664: ACCEPT_TOKEN(sym_number); if (lookahead == '\\') ADVANCE(352); - if (lookahead == '_') ADVANCE(1033); + if (lookahead == '_') ADVANCE(1039); if (lookahead == 'n') ADVANCE(669); - if (lookahead == '0' || - lookahead == '1') ADVANCE(664); - if (!sym_identifier_character_set_4(lookahead)) ADVANCE(1041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(664); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 665: ACCEPT_TOKEN(sym_number); if (lookahead == '\\') ADVANCE(352); - if (lookahead == '_') ADVANCE(1036); + if (lookahead == '_') ADVANCE(1034); if (lookahead == 'n') ADVANCE(669); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(665); - if (!sym_identifier_character_set_4(lookahead)) ADVANCE(1041); + if (lookahead == '0' || + lookahead == '1') ADVANCE(665); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 666: ACCEPT_TOKEN(sym_number); if (lookahead == '\\') ADVANCE(352); - if (lookahead == '_') ADVANCE(1040); + if (lookahead == '_') ADVANCE(1037); if (lookahead == 'n') ADVANCE(669); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(666); - if (!sym_identifier_character_set_3(lookahead)) ADVANCE(1041); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(666); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 667: ACCEPT_TOKEN(sym_number); if (lookahead == '\\') ADVANCE(352); - if (lookahead == '_') ADVANCE(1038); + if (lookahead == '_') ADVANCE(1041); if (lookahead == 'n') ADVANCE(669); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(667); - if (!sym_identifier_character_set_3(lookahead)) ADVANCE(1041); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(667); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 668: ACCEPT_TOKEN(sym_number); if (lookahead == '\\') ADVANCE(352); - if (lookahead == '_') ADVANCE(1039); + if (lookahead == '_') ADVANCE(1040); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(668); - if (!sym_identifier_character_set_3(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 669: ACCEPT_TOKEN(sym_number); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 670: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(375); + if (lookahead == '_') ADVANCE(379); if (lookahead == 'n') ADVANCE(659); - if (lookahead == '0' || - lookahead == '1') ADVANCE(670); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(670); END_STATE(); case 671: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(376); + if (lookahead == '_') ADVANCE(375); if (lookahead == 'n') ADVANCE(659); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(671); + if (lookahead == '0' || + lookahead == '1') ADVANCE(671); END_STATE(); case 672: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(384); + if (lookahead == '_') ADVANCE(376); if (lookahead == 'n') ADVANCE(659); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(672); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(672); END_STATE(); case 673: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(379); + if (lookahead == '_') ADVANCE(384); if (lookahead == 'n') ADVANCE(659); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(673); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(673); END_STATE(); case 674: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(380); + if (lookahead == '_') ADVANCE(378); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(373); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); END_STATE(); case 675: ACCEPT_TOKEN(sym_number); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(373); - if (lookahead == '_') ADVANCE(378); + if (lookahead == '_') ADVANCE(380); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); END_STATE(); case 676: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || lookahead == 'e') ADVANCE(373); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(675); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(674); END_STATE(); case 677: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '$') ADVANCE(1032); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(810); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(779); - if (lookahead == 'd') ADVANCE(836); - if (lookahead == 'e') ADVANCE(894); - if (lookahead == 'f') ADVANCE(880); - if (lookahead == 'g') ADVANCE(900); - if (lookahead == 'i') ADVANCE(909); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(780); - if (lookahead == 'o') ADVANCE(815); - if (lookahead == 'r') ADVANCE(839); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(789); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(677); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_identifier_character_set_5(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '$', 1032, + '0', 661, + '\\', 352, + 'a', 810, + 'b', 951, + 'c', 779, + 'd', 836, + 'e', 894, + 'f', 880, + 'g', 900, + 'i', 909, + 'l', 837, + 'm', 945, + 'n', 780, + 'o', 815, + 'r', 839, + 's', 785, + 't', 789, + 'u', 930, + 'v', 792, + 'w', 878, + 0x2028, 677, + 0x2029, 677, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 678: ACCEPT_TOKEN(sym_identifier); @@ -18155,7 +17839,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 679: ACCEPT_TOKEN(sym_identifier); @@ -18167,7 +17851,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 680: ACCEPT_TOKEN(sym_identifier); @@ -18179,7 +17863,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 681: ACCEPT_TOKEN(sym_identifier); @@ -18192,7 +17876,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 682: ACCEPT_TOKEN(sym_identifier); @@ -18204,7 +17888,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 683: ACCEPT_TOKEN(sym_identifier); @@ -18216,7 +17900,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 684: ACCEPT_TOKEN(sym_identifier); @@ -18228,7 +17912,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 685: ACCEPT_TOKEN(sym_identifier); @@ -18240,7 +17924,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 686: ACCEPT_TOKEN(sym_identifier); @@ -18252,7 +17936,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 687: ACCEPT_TOKEN(sym_identifier); @@ -18264,7 +17948,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 688: ACCEPT_TOKEN(sym_identifier); @@ -18276,7 +17960,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 689: ACCEPT_TOKEN(sym_identifier); @@ -18288,7 +17972,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 690: ACCEPT_TOKEN(sym_identifier); @@ -18301,7 +17985,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 691: ACCEPT_TOKEN(sym_identifier); @@ -18313,7 +17997,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 692: ACCEPT_TOKEN(sym_identifier); @@ -18325,7 +18009,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 693: ACCEPT_TOKEN(sym_identifier); @@ -18337,7 +18021,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 694: ACCEPT_TOKEN(sym_identifier); @@ -18349,7 +18033,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 695: ACCEPT_TOKEN(sym_identifier); @@ -18361,7 +18045,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 696: ACCEPT_TOKEN(sym_identifier); @@ -18373,7 +18057,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 697: ACCEPT_TOKEN(sym_identifier); @@ -18385,7 +18069,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 698: ACCEPT_TOKEN(sym_identifier); @@ -18397,7 +18081,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 699: ACCEPT_TOKEN(sym_identifier); @@ -18410,7 +18094,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 700: ACCEPT_TOKEN(sym_identifier); @@ -18422,7 +18106,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 701: ACCEPT_TOKEN(sym_identifier); @@ -18434,7 +18118,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 702: ACCEPT_TOKEN(sym_identifier); @@ -18446,7 +18130,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 703: ACCEPT_TOKEN(sym_identifier); @@ -18458,7 +18142,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 704: ACCEPT_TOKEN(sym_identifier); @@ -18470,7 +18154,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 705: ACCEPT_TOKEN(sym_identifier); @@ -18482,7 +18166,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 706: ACCEPT_TOKEN(sym_identifier); @@ -18494,7 +18178,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 707: ACCEPT_TOKEN(sym_identifier); @@ -18506,7 +18190,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 708: ACCEPT_TOKEN(sym_identifier); @@ -18518,7 +18202,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 709: ACCEPT_TOKEN(sym_identifier); @@ -18530,7 +18214,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 710: ACCEPT_TOKEN(sym_identifier); @@ -18542,7 +18226,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 711: ACCEPT_TOKEN(sym_identifier); @@ -18554,7 +18238,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 712: ACCEPT_TOKEN(sym_identifier); @@ -18566,7 +18250,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 713: ACCEPT_TOKEN(sym_identifier); @@ -18578,7 +18262,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 714: ACCEPT_TOKEN(sym_identifier); @@ -18590,7 +18274,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 715: ACCEPT_TOKEN(sym_identifier); @@ -18602,7 +18286,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 716: ACCEPT_TOKEN(sym_identifier); @@ -18614,7 +18298,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 717: ACCEPT_TOKEN(sym_identifier); @@ -18626,7 +18310,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 718: ACCEPT_TOKEN(sym_identifier); @@ -18638,7 +18322,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 719: ACCEPT_TOKEN(sym_identifier); @@ -18650,7 +18334,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 720: ACCEPT_TOKEN(sym_identifier); @@ -18662,7 +18346,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 721: ACCEPT_TOKEN(sym_identifier); @@ -18674,7 +18358,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 722: ACCEPT_TOKEN(sym_identifier); @@ -18686,7 +18370,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 723: ACCEPT_TOKEN(sym_identifier); @@ -18698,7 +18382,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 724: ACCEPT_TOKEN(sym_identifier); @@ -18710,7 +18394,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 725: ACCEPT_TOKEN(sym_identifier); @@ -18722,7 +18406,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 726: ACCEPT_TOKEN(sym_identifier); @@ -18734,7 +18418,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 727: ACCEPT_TOKEN(sym_identifier); @@ -18746,7 +18430,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 728: ACCEPT_TOKEN(sym_identifier); @@ -18758,7 +18442,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 729: ACCEPT_TOKEN(sym_identifier); @@ -18770,7 +18454,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 730: ACCEPT_TOKEN(sym_identifier); @@ -18782,7 +18466,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 731: ACCEPT_TOKEN(sym_identifier); @@ -18795,7 +18479,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 732: ACCEPT_TOKEN(sym_identifier); @@ -18807,7 +18491,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 733: ACCEPT_TOKEN(sym_identifier); @@ -18819,7 +18503,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 734: ACCEPT_TOKEN(sym_identifier); @@ -18831,7 +18515,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 735: ACCEPT_TOKEN(sym_identifier); @@ -18843,7 +18527,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 736: ACCEPT_TOKEN(sym_identifier); @@ -18855,7 +18539,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 737: ACCEPT_TOKEN(sym_identifier); @@ -18867,7 +18551,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 738: ACCEPT_TOKEN(sym_identifier); @@ -18880,7 +18564,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 739: ACCEPT_TOKEN(sym_identifier); @@ -18892,7 +18576,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 740: ACCEPT_TOKEN(sym_identifier); @@ -18904,7 +18588,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 741: ACCEPT_TOKEN(sym_identifier); @@ -18916,7 +18600,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 742: ACCEPT_TOKEN(sym_identifier); @@ -18928,7 +18612,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 743: ACCEPT_TOKEN(sym_identifier); @@ -18939,824 +18623,894 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 744: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(810); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(806); - if (lookahead == 'd') ADVANCE(836); - if (lookahead == 'e') ADVANCE(928); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(919); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(744); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 810, + 'b', 951, + 'c', 806, + 'd', 836, + 'e', 928, + 'f', 1015, + 'i', 919, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + 'v', 792, + 'w', 878, + 0x2028, 744, + 0x2029, 744, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 745: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(810); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(806); - if (lookahead == 'd') ADVANCE(836); - if (lookahead == 'e') ADVANCE(895); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(919); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(745); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 810, + 'b', 951, + 'c', 806, + 'd', 836, + 'e', 895, + 'f', 1015, + 'i', 919, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + 'v', 792, + 'w', 878, + 0x2028, 745, + 0x2029, 745, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 746: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(810); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(897); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(928); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(919); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(746); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 810, + 'b', 951, + 'c', 897, + 'd', 856, + 'e', 928, + 'f', 1015, + 'i', 919, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + 'v', 792, + 'w', 878, + 0x2028, 746, + 0x2029, 746, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 747: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(810); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(897); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(920); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(780); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(747); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 810, + 'b', 951, + 'c', 897, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 920, + 'l', 837, + 'm', 945, + 'n', 780, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + 'u', 930, + 'v', 946, + 0x2028, 747, + 0x2029, 747, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 748: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(810); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(897); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(895); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(919); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(748); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 810, + 'b', 951, + 'c', 897, + 'd', 856, + 'e', 895, + 'f', 1015, + 'i', 919, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + 'v', 792, + 'w', 878, + 0x2028, 748, + 0x2029, 748, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 749: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(923); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(898); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(920); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(815); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(749); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 923, + 'b', 951, + 'c', 898, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 920, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 815, + 'r', 862, + 's', 785, + 't', 1030, + 'v', 946, + 0x2028, 749, + 0x2029, 749, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 750: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(923); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(898); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(920); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(750); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 923, + 'b', 951, + 'c', 898, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 920, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + 'v', 946, + 0x2028, 750, + 0x2029, 750, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 751: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(923); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(898); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(910); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(751); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 923, + 'b', 951, + 'c', 898, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 910, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + 'v', 946, + 0x2028, 751, + 0x2029, 751, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 752: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(811); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(950); - if (lookahead == 'i') ADVANCE(934); - if (lookahead == 'n') ADVANCE(838); - if (lookahead == 'o') ADVANCE(815); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(752); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 811, + 'b', 951, + 'c', 950, + 'i', 934, + 'n', 838, + 'o', 815, + 'r', 862, + 's', 785, + 'u', 930, + 'v', 946, + 0x2028, 752, + 0x2029, 752, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 753: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(811); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(950); - if (lookahead == 'i') ADVANCE(934); - if (lookahead == 'n') ADVANCE(838); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(753); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 811, + 'b', 951, + 'c', 950, + 'i', 934, + 'n', 838, + 'o', 816, + 'r', 862, + 's', 785, + 'u', 930, + 'v', 946, + 0x2028, 753, + 0x2029, 753, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 754: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(811); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(950); - if (lookahead == 'i') ADVANCE(915); - if (lookahead == 'n') ADVANCE(838); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(754); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 811, + 'b', 951, + 'c', 950, + 'i', 915, + 'n', 838, + 'o', 816, + 'r', 862, + 's', 785, + 'u', 930, + 'v', 946, + 0x2028, 754, + 0x2029, 754, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 755: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(924); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(934); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(755); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 924, + 'b', 951, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 934, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + 0x2028, 755, + 0x2029, 755, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 756: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(924); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'i') ADVANCE(934); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(756); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 924, + 'b', 951, + 'd', 856, + 'e', 1025, + 'i', 934, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + 0x2028, 756, + 0x2029, 756, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 757: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(814); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(950); - if (lookahead == 'i') ADVANCE(922); - if (lookahead == 'n') ADVANCE(838); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(757); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 814, + 'b', 951, + 'c', 950, + 'i', 922, + 'n', 838, + 'o', 816, + 'r', 862, + 's', 994, + 'u', 930, + 'v', 946, + 0x2028, 757, + 0x2029, 757, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 758: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(814); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(950); - if (lookahead == 'n') ADVANCE(838); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(758); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 814, + 'b', 951, + 'c', 950, + 'n', 838, + 'o', 816, + 'r', 862, + 's', 994, + 'u', 930, + 'v', 946, + 0x2028, 758, + 0x2029, 758, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 759: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(681); - if (lookahead == 'b') ADVANCE(721); - if (lookahead == 'c') ADVANCE(719); - if (lookahead == 'n') ADVANCE(690); - if (lookahead == 'o') ADVANCE(682); - if (lookahead == 'r') ADVANCE(691); - if (lookahead == 's') ADVANCE(731); - if (lookahead == 'u') ADVANCE(708); - if (lookahead == 'v') ADVANCE(716); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(759); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 681, + 'b', 721, + 'c', 719, + 'n', 690, + 'o', 682, + 'r', 691, + 's', 731, + 'u', 708, + 'v', 716, + 0x2028, 759, + 0x2029, 759, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('d' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 760: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(779); - if (lookahead == 'd') ADVANCE(836); - if (lookahead == 'e') ADVANCE(928); - if (lookahead == 'f') ADVANCE(881); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(760); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 812, + 'b', 951, + 'c', 779, + 'd', 836, + 'e', 928, + 'f', 881, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + 0x2028, 760, + 0x2029, 760, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 761: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(779); - if (lookahead == 'd') ADVANCE(836); - if (lookahead == 'e') ADVANCE(895); - if (lookahead == 'f') ADVANCE(881); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(761); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 812, + 'b', 951, + 'c', 779, + 'd', 836, + 'e', 895, + 'f', 881, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + 0x2028, 761, + 0x2029, 761, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 762: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(806); - if (lookahead == 'd') ADVANCE(836); - if (lookahead == 'e') ADVANCE(928); - if (lookahead == 'f') ADVANCE(881); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(762); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 812, + 'b', 951, + 'c', 806, + 'd', 836, + 'e', 928, + 'f', 881, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + 0x2028, 762, + 0x2029, 762, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 763: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(806); - if (lookahead == 'd') ADVANCE(836); - if (lookahead == 'e') ADVANCE(928); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(763); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 812, + 'b', 951, + 'c', 806, + 'd', 836, + 'e', 928, + 'f', 1015, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + 0x2028, 763, + 0x2029, 763, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 764: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(806); - if (lookahead == 'd') ADVANCE(836); - if (lookahead == 'e') ADVANCE(895); - if (lookahead == 'f') ADVANCE(881); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(764); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 812, + 'b', 951, + 'c', 806, + 'd', 836, + 'e', 895, + 'f', 881, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + 0x2028, 764, + 0x2029, 764, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 765: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(806); - if (lookahead == 'd') ADVANCE(836); - if (lookahead == 'e') ADVANCE(895); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(765); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 812, + 'b', 951, + 'c', 806, + 'd', 836, + 'e', 895, + 'f', 1015, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + 0x2028, 765, + 0x2029, 765, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 766: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(897); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(928); - if (lookahead == 'f') ADVANCE(881); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(766); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 812, + 'b', 951, + 'c', 897, + 'd', 856, + 'e', 928, + 'f', 881, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + 0x2028, 766, + 0x2029, 766, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 767: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(897); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(928); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(767); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 812, + 'b', 951, + 'c', 897, + 'd', 856, + 'e', 928, + 'f', 1015, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + 0x2028, 767, + 0x2029, 767, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 768: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(897); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(928); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(768); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 812, + 'b', 951, + 'c', 897, + 'd', 856, + 'e', 928, + 'f', 1015, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 0x2028, 768, + 0x2029, 768, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 769: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(897); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(922); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(780); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(769); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 812, + 'b', 951, + 'c', 897, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 922, + 'l', 837, + 'm', 945, + 'n', 780, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'u', 930, + 'v', 946, + 0x2028, 769, + 0x2029, 769, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 770: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(897); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(895); - if (lookahead == 'f') ADVANCE(881); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(770); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 812, + 'b', 951, + 'c', 897, + 'd', 856, + 'e', 895, + 'f', 881, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + 0x2028, 770, + 0x2029, 770, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 771: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(897); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(895); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(771); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 812, + 'b', 951, + 'c', 897, + 'd', 856, + 'e', 895, + 'f', 1015, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + 0x2028, 771, + 0x2029, 771, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 772: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(805); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(928); - if (lookahead == 'f') ADVANCE(881); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(772); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 812, + 'b', 951, + 'c', 805, + 'd', 856, + 'e', 928, + 'f', 881, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + 0x2028, 772, + 0x2029, 772, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 773: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(812); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(805); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(895); - if (lookahead == 'f') ADVANCE(881); - if (lookahead == 'i') ADVANCE(921); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 'w') ADVANCE(878); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(773); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 812, + 'b', 951, + 'c', 805, + 'd', 856, + 'e', 895, + 'f', 881, + 'i', 921, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 'w', 878, + 0x2028, 773, + 0x2029, 773, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 774: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(925); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(897); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(922); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(792); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(774); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 925, + 'b', 951, + 'c', 897, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 922, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 792, + 0x2028, 774, + 0x2029, 774, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 775: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(925); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(898); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(922); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(775); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 925, + 'b', 951, + 'c', 898, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 922, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 946, + 0x2028, 775, + 0x2029, 775, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 776: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(925); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'c') ADVANCE(898); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1024); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(922); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(776); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 925, + 'b', 951, + 'c', 898, + 'd', 856, + 'e', 1024, + 'f', 1015, + 'i', 922, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 'v', 946, + 0x2028, 776, + 0x2029, 776, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 777: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(813); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(777); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 813, + 'b', 951, + 'd', 856, + 'e', 1025, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 0x2028, 777, + 0x2029, 777, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 778: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(661); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(926); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(778); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '0', 661, + '\\', 352, + 'a', 926, + 'b', 951, + 'd', 856, + 'e', 1025, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 0x2028, 778, + 0x2029, 778, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 779: ACCEPT_TOKEN(sym_identifier); @@ -19764,7 +19518,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(988); if (lookahead == 'l') ADVANCE(791); if (lookahead == 'o') ADVANCE(944); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 780: ACCEPT_TOKEN(sym_identifier); @@ -19772,7 +19526,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(917); if (lookahead == 'e') ADVANCE(1020); if (lookahead == 'u') ADVANCE(913); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 781: ACCEPT_TOKEN(sym_identifier); @@ -19780,70 +19534,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(917); if (lookahead == 'e') ADVANCE(1022); if (lookahead == 'u') ADVANCE(913); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 782: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(924); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(934); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(815); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(782); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '\\', 352, + 'a', 924, + 'b', 951, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 934, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 815, + 'r', 862, + 's', 785, + 't', 1030, + 0x2028, 782, + 0x2029, 782, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 783: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(924); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(934); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(783); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '\\', 352, + 'a', 924, + 'b', 951, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 934, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + 0x2028, 783, + 0x2029, 783, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 784: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(924); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'f') ADVANCE(1015); - if (lookahead == 'i') ADVANCE(915); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(785); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(784); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '\\', 352, + 'a', 924, + 'b', 951, + 'd', 856, + 'e', 1025, + 'f', 1015, + 'i', 915, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 785, + 't', 1030, + 0x2028, 784, + 0x2029, 784, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 785: ACCEPT_TOKEN(sym_identifier); @@ -19851,101 +19611,103 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(1008); if (lookahead == 't') ADVANCE(974); if (lookahead == 'y') ADVANCE(914); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 786: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'a') ADVANCE(1008); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 787: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'a') ADVANCE(834); if (lookahead == 'q') ADVANCE(1017); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 788: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'a') ADVANCE(834); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 789: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'a') ADVANCE(968); if (lookahead == 'y') ADVANCE(962); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 790: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(926); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'd') ADVANCE(856); - if (lookahead == 'e') ADVANCE(1025); - if (lookahead == 'l') ADVANCE(837); - if (lookahead == 'm') ADVANCE(945); - if (lookahead == 'n') ADVANCE(781); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 'r') ADVANCE(862); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 't') ADVANCE(1030); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(790); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '\\', 352, + 'a', 926, + 'b', 951, + 'd', 856, + 'e', 1025, + 'l', 837, + 'm', 945, + 'n', 781, + 'o', 816, + 'r', 862, + 's', 994, + 't', 1030, + 0x2028, 790, + 0x2029, 790, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 791: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'a') ADVANCE(990); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 792: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'a') ADVANCE(969); if (lookahead == 'o') ADVANCE(882); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 793: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'a') ADVANCE(885); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 794: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'a') ADVANCE(902); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 795: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'a') ADVANCE(1016); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 796: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'a') ADVANCE(892); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 797: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'a') ADVANCE(978); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 798: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'a') ADVANCE(940); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 799: ACCEPT_TOKEN(sym_identifier); @@ -19954,10 +19716,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(934); if (lookahead == 'o') ADVANCE(869); if (lookahead == 's') ADVANCE(786); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(799); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(799); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 800: ACCEPT_TOKEN(sym_identifier); @@ -19965,10 +19727,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(985); if (lookahead == 'i') ADVANCE(934); if (lookahead == 's') ADVANCE(786); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(800); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(800); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 801: ACCEPT_TOKEN(sym_identifier); @@ -19976,41 +19738,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(985); if (lookahead == 'i') ADVANCE(915); if (lookahead == 's') ADVANCE(786); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(801); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(801); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 802: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'a') ADVANCE(985); if (lookahead == 't') ADVANCE(1030); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(802); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(802); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 803: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'a') ADVANCE(931); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 804: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(352); - if (lookahead == 'a') ADVANCE(927); - if (lookahead == 'b') ADVANCE(951); - if (lookahead == 'n') ADVANCE(851); - if (lookahead == 'o') ADVANCE(816); - if (lookahead == 's') ADVANCE(994); - if (lookahead == 'u') ADVANCE(930); - if (lookahead == 'v') ADVANCE(946); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(804); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + ADVANCE_MAP( + '\\', 352, + 'a', 927, + 'b', 951, + 'n', 851, + 'o', 816, + 's', 994, + 'u', 930, + 'v', 946, + 0x2028, 804, + 0x2029, 804, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 805: ACCEPT_TOKEN(sym_identifier); @@ -20018,7 +19782,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(995); if (lookahead == 'l') ADVANCE(791); if (lookahead == 'o') ADVANCE(944); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 806: ACCEPT_TOKEN(sym_identifier); @@ -20026,25 +19790,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(989); if (lookahead == 'l') ADVANCE(791); if (lookahead == 'o') ADVANCE(944); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 807: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'a') ADVANCE(827); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 808: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'a') ADVANCE(829); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 809: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'a') ADVANCE(830); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 810: ACCEPT_TOKEN(sym_identifier); @@ -20053,7 +19817,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(1027); if (lookahead == 's') ADVANCE(430); if (lookahead == 'w') ADVANCE(793); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 811: ACCEPT_TOKEN(sym_identifier); @@ -20061,7 +19825,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'b') ADVANCE(991); if (lookahead == 'n') ADVANCE(1027); if (lookahead == 's') ADVANCE(431); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 812: ACCEPT_TOKEN(sym_identifier); @@ -20070,7 +19834,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(1027); if (lookahead == 's') ADVANCE(1031); if (lookahead == 'w') ADVANCE(793); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 813: ACCEPT_TOKEN(sym_identifier); @@ -20078,438 +19842,438 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'b') ADVANCE(991); if (lookahead == 'n') ADVANCE(1027); if (lookahead == 's') ADVANCE(1031); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 814: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'b') ADVANCE(991); if (lookahead == 'n') ADVANCE(1027); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 815: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'b') ADVANCE(891); if (lookahead == 'f') ADVANCE(468); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 816: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'b') ADVANCE(891); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 817: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'b') ADVANCE(796); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 818: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'b') ADVANCE(955); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 819: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'b') ADVANCE(860); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 820: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'c') ADVANCE(523); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 821: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'c') ADVANCE(877); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 822: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'c') ADVANCE(719); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(822); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(822); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 823: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'c') ADVANCE(901); if (lookahead == 'f') ADVANCE(795); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 824: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'c') ADVANCE(901); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 825: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'c') ADVANCE(1002); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 826: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'c') ADVANCE(950); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(826); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(826); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 827: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'c') ADVANCE(1005); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 828: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'c') ADVANCE(861); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 829: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'c') ADVANCE(848); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 830: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'c') ADVANCE(849); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 831: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'c') ADVANCE(1012); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 832: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'd') ADVANCE(604); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 833: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'd') ADVANCE(1019); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 834: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'd') ADVANCE(956); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 835: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'd') ADVANCE(982); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 836: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(823); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 837: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(996); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 838: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(1020); if (lookahead == 'u') ADVANCE(913); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 839: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(787); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 840: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(475); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 841: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(456); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 842: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(424); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 843: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(471); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 844: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(1057); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 845: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(1103); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 846: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(1055); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 847: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(1083); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 848: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(1093); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 849: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(435); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 850: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(740); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(850); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(850); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); if (lookahead == '$' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 851: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(1021); if (lookahead == 'u') ADVANCE(913); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 852: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(1026); if (lookahead == 'i') ADVANCE(916); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(852); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(852); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 853: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(825); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 854: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(987); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 855: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(970); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 856: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(824); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 857: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(939); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 858: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(971); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 859: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(983); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 860: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(972); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 861: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(952); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 862: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(788); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 863: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(1003); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 864: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(943); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 865: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(929); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(865); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(865); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 866: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(918); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 867: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(966); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 868: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'e') ADVANCE(803); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 869: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'f') ADVANCE(468); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 870: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'f') ADVANCE(599); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 871: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'f') ADVANCE(887); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 872: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'f') ADVANCE(808); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 873: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'f') ADVANCE(973); if (lookahead == 't') ADVANCE(1030); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(873); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(873); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 874: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'g') ADVANCE(1069); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 875: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'g') ADVANCE(863); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 876: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'h') ADVANCE(445); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 877: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'h') ADVANCE(477); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 878: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'h') ADVANCE(888); if (lookahead == 'i') ADVANCE(997); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 879: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'i') ADVANCE(967); if (lookahead == 'k') ADVANCE(941); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 880: ACCEPT_TOKEN(sym_identifier); @@ -20517,89 +20281,89 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(938); if (lookahead == 'r') ADVANCE(953); if (lookahead == 'u') ADVANCE(935); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 881: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'i') ADVANCE(938); if (lookahead == 'u') ADVANCE(935); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 882: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'i') ADVANCE(832); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 883: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'i') ADVANCE(922); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(883); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(883); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 884: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'i') ADVANCE(986); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 885: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'i') ADVANCE(998); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 886: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'i') ADVANCE(936); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 887: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'i') ADVANCE(859); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 888: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'i') ADVANCE(907); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 889: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'i') ADVANCE(957); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 890: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'i') ADVANCE(979); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 891: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'j') ADVANCE(853); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 892: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'l') ADVANCE(1091); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 893: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'l') ADVANCE(1072); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 894: ACCEPT_TOKEN(sym_identifier); @@ -20607,7 +20371,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(992); if (lookahead == 'n') ADVANCE(1014); if (lookahead == 'x') ADVANCE(960); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 895: ACCEPT_TOKEN(sym_identifier); @@ -20615,87 +20379,87 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(992); if (lookahead == 'n') ADVANCE(1014); if (lookahead == 'x') ADVANCE(961); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 896: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'l') ADVANCE(1028); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 897: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'l') ADVANCE(791); if (lookahead == 'o') ADVANCE(944); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 898: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'l') ADVANCE(791); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 899: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'l') ADVANCE(1029); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 900: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'l') ADVANCE(947); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 901: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'l') ADVANCE(797); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 902: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'l') ADVANCE(896); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 903: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'l') ADVANCE(868); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 904: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'l') ADVANCE(1004); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 905: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'l') ADVANCE(866); if (lookahead == 'o') ADVANCE(977); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 906: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'l') ADVANCE(866); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 907: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'l') ADVANCE(843); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 908: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'l') ADVANCE(844); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 909: ACCEPT_TOKEN(sym_identifier); @@ -20703,90 +20467,90 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'm') ADVANCE(959); if (lookahead == 'n') ADVANCE(462); if (lookahead == 's') ADVANCE(1100); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 910: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'm') ADVANCE(959); if (lookahead == 'n') ADVANCE(463); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 911: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'm') ADVANCE(1095); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 912: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'm') ADVANCE(443); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 913: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'm') ADVANCE(819); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 914: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'm') ADVANCE(818); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 915: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'm') ADVANCE(964); if (lookahead == 'n') ADVANCE(463); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 916: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'm') ADVANCE(964); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 917: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'm') ADVANCE(854); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 918: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'm') ADVANCE(864); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 919: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'm') ADVANCE(963); if (lookahead == 'n') ADVANCE(462); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 920: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'm') ADVANCE(963); if (lookahead == 'n') ADVANCE(463); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 921: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'm') ADVANCE(963); if (lookahead == 'n') ADVANCE(1010); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 922: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'm') ADVANCE(963); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 923: ACCEPT_TOKEN(sym_identifier); @@ -20794,14 +20558,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(1027); if (lookahead == 's') ADVANCE(430); if (lookahead == 'w') ADVANCE(793); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 924: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'n') ADVANCE(1027); if (lookahead == 's') ADVANCE(430); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 925: ACCEPT_TOKEN(sym_identifier); @@ -20809,738 +20573,738 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(1027); if (lookahead == 's') ADVANCE(1031); if (lookahead == 'w') ADVANCE(793); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 926: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'n') ADVANCE(1027); if (lookahead == 's') ADVANCE(1031); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 927: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'n') ADVANCE(1027); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 928: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'n') ADVANCE(1014); if (lookahead == 'x') ADVANCE(961); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 929: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'n') ADVANCE(1014); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 930: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'n') ADVANCE(879); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 931: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'n') ADVANCE(1066); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 932: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'n') ADVANCE(1106); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 933: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'n') ADVANCE(525); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 934: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'n') ADVANCE(463); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 935: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'n') ADVANCE(831); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 936: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'n') ADVANCE(874); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 937: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'n') ADVANCE(820); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 938: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'n') ADVANCE(794); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 939: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'n') ADVANCE(835); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 940: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'n') ADVANCE(828); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 941: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'n') ADVANCE(948); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 942: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'n') ADVANCE(899); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 943: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'n') ADVANCE(1013); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 944: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'n') ADVANCE(993); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 945: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'o') ADVANCE(833); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 946: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'o') ADVANCE(882); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 947: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'o') ADVANCE(817); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 948: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'o') ADVANCE(1023); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 949: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'o') ADVANCE(903); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 950: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'o') ADVANCE(944); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 951: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'o') ADVANCE(949); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 952: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'o') ADVANCE(870); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 953: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'o') ADVANCE(912); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 954: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'o') ADVANCE(976); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 955: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'o') ADVANCE(893); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 956: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'o') ADVANCE(942); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 957: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'o') ADVANCE(933); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 958: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'o') ADVANCE(977); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 959: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'p') ADVANCE(905); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 960: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'p') ADVANCE(954); if (lookahead == 't') ADVANCE(857); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 961: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'p') ADVANCE(954); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 962: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'p') ADVANCE(842); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 963: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'p') ADVANCE(958); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 964: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'p') ADVANCE(906); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 965: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'p') ADVANCE(809); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 966: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'q') ADVANCE(1017); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 967: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'q') ADVANCE(1018); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 968: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'r') ADVANCE(875); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 969: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'r') ADVANCE(447); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 970: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'r') ADVANCE(872); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 971: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'r') ADVANCE(1109); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 972: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'r') ADVANCE(1063); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 973: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'r') ADVANCE(953); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 974: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'r') ADVANCE(886); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 975: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'r') ADVANCE(807); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 976: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'r') ADVANCE(1000); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 977: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'r') ADVANCE(1001); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 978: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'r') ADVANCE(846); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 979: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'r') ADVANCE(847); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 980: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'r') ADVANCE(867); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(980); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(980); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 981: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 's') ADVANCE(521); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 982: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 's') ADVANCE(1086); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 983: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 's') ADVANCE(1080); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 984: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 's') ADVANCE(1088); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 985: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 's') ADVANCE(431); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 986: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 's') ADVANCE(871); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 987: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 's') ADVANCE(965); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 988: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 's') ADVANCE(840); if (lookahead == 't') ADVANCE(821); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 989: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 's') ADVANCE(840); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 990: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 's') ADVANCE(981); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 991: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 's') ADVANCE(1007); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 992: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 's') ADVANCE(841); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 993: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 's') ADVANCE(999); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 994: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 't') ADVANCE(974); if (lookahead == 'y') ADVANCE(914); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 995: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 't') ADVANCE(821); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 996: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 't') ADVANCE(449); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 997: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 't') ADVANCE(876); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 998: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 't') ADVANCE(460); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 999: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 't') ADVANCE(452); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1000: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 't') ADVANCE(417); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1001: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 't') ADVANCE(441); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1002: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 't') ADVANCE(1075); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1003: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 't') ADVANCE(1045); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1004: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 't') ADVANCE(422); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1005: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 't') ADVANCE(1078); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1006: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 't') ADVANCE(1030); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(1006); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(1006); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1007: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 't') ADVANCE(975); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1008: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 't') ADVANCE(884); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1009: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 't') ADVANCE(857); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1010: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 't') ADVANCE(855); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1011: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 't') ADVANCE(798); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1012: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 't') ADVANCE(889); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1013: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 't') ADVANCE(984); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1014: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'u') ADVANCE(911); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1015: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'u') ADVANCE(935); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1016: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'u') ADVANCE(904); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1017: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'u') ADVANCE(890); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1018: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'u') ADVANCE(845); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1019: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'u') ADVANCE(908); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1020: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'v') ADVANCE(858); if (lookahead == 'w') ADVANCE(530); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1021: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'v') ADVANCE(858); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1022: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'w') ADVANCE(530); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1023: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'w') ADVANCE(932); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1024: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'x') ADVANCE(960); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1025: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'x') ADVANCE(961); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1026: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'x') ADVANCE(1009); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1027: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'y') ADVANCE(1060); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1028: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'y') ADVANCE(479); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1029: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'y') ADVANCE(1049); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1030: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'y') ADVANCE(962); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1031: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == 'y') ADVANCE(937); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1032: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); if (lookahead == '{') ADVANCE(627); - if (!sym_identifier_character_set_6(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1033: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); - if (lookahead == '0' || - lookahead == '1') ADVANCE(664); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (lookahead == '+' || + lookahead == '-') ADVANCE(380); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1034: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(1034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if (lookahead == '$' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (lookahead == '0' || + lookahead == '1') ADVANCE(665); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1035: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(1035); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1041); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(1035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + if (lookahead == '$' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1036: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(665); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(1036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1042); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1037: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(663); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(666); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1038: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(667); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(662); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1039: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(668); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(664); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1040: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(666); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(668); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1041: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(667); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1042: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+' || - lookahead == '-') ADVANCE(380); if (lookahead == '\\') ADVANCE(352); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(668); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1043: ACCEPT_TOKEN(sym_private_property_identifier); if (lookahead == '\\') ADVANCE(351); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1043); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1043); END_STATE(); case 1044: ACCEPT_TOKEN(anon_sym_target); @@ -21548,7 +21312,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1045: ACCEPT_TOKEN(anon_sym_target); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1046: ACCEPT_TOKEN(anon_sym_AT); @@ -21565,12 +21329,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1049: ACCEPT_TOKEN(anon_sym_readonly); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1050: ACCEPT_TOKEN(anon_sym_QMARK); @@ -21595,7 +21359,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1055: ACCEPT_TOKEN(anon_sym_declare); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1056: ACCEPT_TOKEN(anon_sym_module); @@ -21603,7 +21367,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1057: ACCEPT_TOKEN(anon_sym_module); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1058: ACCEPT_TOKEN(anon_sym_any); @@ -21617,12 +21381,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1060: ACCEPT_TOKEN(anon_sym_any); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1061: ACCEPT_TOKEN(anon_sym_number); @@ -21636,12 +21400,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1063: ACCEPT_TOKEN(anon_sym_number); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1064: ACCEPT_TOKEN(anon_sym_boolean); @@ -21655,12 +21419,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1066: ACCEPT_TOKEN(anon_sym_boolean); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1067: ACCEPT_TOKEN(anon_sym_string); @@ -21674,12 +21438,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1069: ACCEPT_TOKEN(anon_sym_string); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1070: ACCEPT_TOKEN(anon_sym_symbol); @@ -21693,12 +21457,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1072: ACCEPT_TOKEN(anon_sym_symbol); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1073: ACCEPT_TOKEN(anon_sym_object); @@ -21712,12 +21476,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1075: ACCEPT_TOKEN(anon_sym_object); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1076: ACCEPT_TOKEN(anon_sym_abstract); @@ -21731,12 +21495,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1078: ACCEPT_TOKEN(anon_sym_abstract); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1079: ACCEPT_TOKEN(anon_sym_satisfies); @@ -21744,7 +21508,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1080: ACCEPT_TOKEN(anon_sym_satisfies); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1081: ACCEPT_TOKEN(anon_sym_satisfies); @@ -21756,7 +21520,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1083: ACCEPT_TOKEN(anon_sym_require); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1084: ACCEPT_TOKEN(anon_sym_extends); @@ -21770,12 +21534,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1086: ACCEPT_TOKEN(anon_sym_extends); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1087: ACCEPT_TOKEN(anon_sym_implements); @@ -21783,7 +21547,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1088: ACCEPT_TOKEN(anon_sym_implements); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1089: ACCEPT_TOKEN(anon_sym_implements); @@ -21795,7 +21559,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1091: ACCEPT_TOKEN(anon_sym_global); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1092: ACCEPT_TOKEN(anon_sym_interface); @@ -21803,7 +21567,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1093: ACCEPT_TOKEN(anon_sym_interface); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1094: ACCEPT_TOKEN(anon_sym_enum); @@ -21811,7 +21575,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1095: ACCEPT_TOKEN(anon_sym_enum); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1096: ACCEPT_TOKEN(anon_sym_DASH_QMARK_COLON); @@ -21828,7 +21592,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 1100: ACCEPT_TOKEN(anon_sym_is); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1101: ACCEPT_TOKEN(anon_sym_unique); @@ -21842,12 +21606,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1103: ACCEPT_TOKEN(anon_sym_unique); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1104: ACCEPT_TOKEN(anon_sym_unknown); @@ -21861,12 +21625,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1106: ACCEPT_TOKEN(anon_sym_unknown); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1107: ACCEPT_TOKEN(anon_sym_never); @@ -21880,12 +21644,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(743); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1109: ACCEPT_TOKEN(anon_sym_never); if (lookahead == '\\') ADVANCE(352); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(1041); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(1042); END_STATE(); case 1110: ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); @@ -21903,34 +21667,25 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { 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 == 'n') ADVANCE(9); - if (lookahead == 'o') ADVANCE(10); - if (lookahead == 'p') ADVANCE(11); - if (lookahead == 'r') ADVANCE(12); - if (lookahead == 's') ADVANCE(13); - if (lookahead == 't') ADVANCE(14); - if (lookahead == 'u') ADVANCE(15); - if (lookahead == 'y') ADVANCE(16); - if (('\t' <= lookahead && 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) + ADVANCE_MAP( + 'a', 1, + 'b', 2, + 'c', 3, + 'd', 4, + 'f', 5, + 'g', 6, + 'i', 7, + 'k', 8, + 'n', 9, + 'o', 10, + 'p', 11, + 'r', 12, + 's', 13, + 't', 14, + 'u', 15, + 'y', 16, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(0); END_STATE(); case 1: if (lookahead == 's') ADVANCE(17); @@ -22501,16 +22256,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [120] = {.lex_state = 408, .external_lex_state = 2}, [121] = {.lex_state = 408, .external_lex_state = 2}, [122] = {.lex_state = 408, .external_lex_state = 2}, - [123] = {.lex_state = 35, .external_lex_state = 2}, + [123] = {.lex_state = 6, .external_lex_state = 4}, [124] = {.lex_state = 35, .external_lex_state = 2}, [125] = {.lex_state = 35, .external_lex_state = 2}, [126] = {.lex_state = 35, .external_lex_state = 2}, [127] = {.lex_state = 6, .external_lex_state = 4}, - [128] = {.lex_state = 35, .external_lex_state = 2}, + [128] = {.lex_state = 6, .external_lex_state = 4}, [129] = {.lex_state = 35, .external_lex_state = 2}, [130] = {.lex_state = 35, .external_lex_state = 2}, - [131] = {.lex_state = 6, .external_lex_state = 4}, - [132] = {.lex_state = 6, .external_lex_state = 4}, + [131] = {.lex_state = 35, .external_lex_state = 2}, + [132] = {.lex_state = 35, .external_lex_state = 2}, [133] = {.lex_state = 35, .external_lex_state = 2}, [134] = {.lex_state = 35, .external_lex_state = 2}, [135] = {.lex_state = 35, .external_lex_state = 2}, @@ -22525,54 +22280,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [144] = {.lex_state = 6, .external_lex_state = 3}, [145] = {.lex_state = 6, .external_lex_state = 3}, [146] = {.lex_state = 6, .external_lex_state = 3}, - [147] = {.lex_state = 6, .external_lex_state = 3}, - [148] = {.lex_state = 6, .external_lex_state = 3}, - [149] = {.lex_state = 35, .external_lex_state = 2}, - [150] = {.lex_state = 6, .external_lex_state = 3}, + [147] = {.lex_state = 35, .external_lex_state = 2}, + [148] = {.lex_state = 35, .external_lex_state = 2}, + [149] = {.lex_state = 6, .external_lex_state = 3}, + [150] = {.lex_state = 35, .external_lex_state = 2}, [151] = {.lex_state = 6, .external_lex_state = 3}, - [152] = {.lex_state = 35, .external_lex_state = 2}, - [153] = {.lex_state = 35, .external_lex_state = 2}, - [154] = {.lex_state = 6, .external_lex_state = 4}, - [155] = {.lex_state = 35, .external_lex_state = 2}, + [152] = {.lex_state = 6, .external_lex_state = 3}, + [153] = {.lex_state = 6, .external_lex_state = 3}, + [154] = {.lex_state = 35, .external_lex_state = 2}, + [155] = {.lex_state = 6, .external_lex_state = 3}, [156] = {.lex_state = 6, .external_lex_state = 4}, - [157] = {.lex_state = 35, .external_lex_state = 2}, - [158] = {.lex_state = 6, .external_lex_state = 4}, + [157] = {.lex_state = 10, .external_lex_state = 4}, + [158] = {.lex_state = 35, .external_lex_state = 2}, [159] = {.lex_state = 6, .external_lex_state = 4}, [160] = {.lex_state = 10, .external_lex_state = 4}, - [161] = {.lex_state = 35, .external_lex_state = 2}, + [161] = {.lex_state = 6, .external_lex_state = 4}, [162] = {.lex_state = 6, .external_lex_state = 4}, - [163] = {.lex_state = 35, .external_lex_state = 2}, + [163] = {.lex_state = 6, .external_lex_state = 4}, [164] = {.lex_state = 6, .external_lex_state = 4}, [165] = {.lex_state = 35, .external_lex_state = 2}, - [166] = {.lex_state = 6, .external_lex_state = 4}, - [167] = {.lex_state = 6, .external_lex_state = 3}, + [166] = {.lex_state = 35, .external_lex_state = 2}, + [167] = {.lex_state = 10, .external_lex_state = 4}, [168] = {.lex_state = 6, .external_lex_state = 4}, - [169] = {.lex_state = 10, .external_lex_state = 4}, - [170] = {.lex_state = 10, .external_lex_state = 4}, + [169] = {.lex_state = 6, .external_lex_state = 4}, + [170] = {.lex_state = 35, .external_lex_state = 2}, [171] = {.lex_state = 10, .external_lex_state = 4}, [172] = {.lex_state = 6, .external_lex_state = 3}, [173] = {.lex_state = 6, .external_lex_state = 3}, [174] = {.lex_state = 6, .external_lex_state = 3}, [175] = {.lex_state = 6, .external_lex_state = 4}, - [176] = {.lex_state = 6, .external_lex_state = 4}, + [176] = {.lex_state = 6, .external_lex_state = 3}, [177] = {.lex_state = 6, .external_lex_state = 3}, - [178] = {.lex_state = 6, .external_lex_state = 3}, + [178] = {.lex_state = 11, .external_lex_state = 3}, [179] = {.lex_state = 6, .external_lex_state = 3}, [180] = {.lex_state = 6, .external_lex_state = 3}, - [181] = {.lex_state = 11, .external_lex_state = 3}, - [182] = {.lex_state = 6, .external_lex_state = 3}, + [181] = {.lex_state = 6, .external_lex_state = 4}, + [182] = {.lex_state = 11, .external_lex_state = 3}, [183] = {.lex_state = 6, .external_lex_state = 3}, - [184] = {.lex_state = 6, .external_lex_state = 3}, - [185] = {.lex_state = 11, .external_lex_state = 3}, - [186] = {.lex_state = 11, .external_lex_state = 3}, + [184] = {.lex_state = 11, .external_lex_state = 3}, + [185] = {.lex_state = 6, .external_lex_state = 3}, + [186] = {.lex_state = 6, .external_lex_state = 3}, [187] = {.lex_state = 6, .external_lex_state = 4}, [188] = {.lex_state = 10, .external_lex_state = 3}, - [189] = {.lex_state = 10, .external_lex_state = 3}, + [189] = {.lex_state = 6, .external_lex_state = 3}, [190] = {.lex_state = 10, .external_lex_state = 3}, [191] = {.lex_state = 6, .external_lex_state = 3}, [192] = {.lex_state = 10, .external_lex_state = 3}, [193] = {.lex_state = 6, .external_lex_state = 3}, - [194] = {.lex_state = 6, .external_lex_state = 3}, + [194] = {.lex_state = 10, .external_lex_state = 3}, [195] = {.lex_state = 6, .external_lex_state = 3}, [196] = {.lex_state = 6, .external_lex_state = 3}, [197] = {.lex_state = 6, .external_lex_state = 3}, @@ -22599,13 +22354,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [218] = {.lex_state = 35, .external_lex_state = 2}, [219] = {.lex_state = 35, .external_lex_state = 2}, [220] = {.lex_state = 12, .external_lex_state = 3}, - [221] = {.lex_state = 13, .external_lex_state = 4}, - [222] = {.lex_state = 12, .external_lex_state = 4}, + [221] = {.lex_state = 12, .external_lex_state = 4}, + [222] = {.lex_state = 13, .external_lex_state = 4}, [223] = {.lex_state = 16, .external_lex_state = 3}, - [224] = {.lex_state = 12, .external_lex_state = 4}, - [225] = {.lex_state = 12, .external_lex_state = 3}, - [226] = {.lex_state = 12, .external_lex_state = 3}, - [227] = {.lex_state = 13, .external_lex_state = 3}, + [224] = {.lex_state = 12, .external_lex_state = 3}, + [225] = {.lex_state = 12, .external_lex_state = 4}, + [226] = {.lex_state = 13, .external_lex_state = 3}, + [227] = {.lex_state = 12, .external_lex_state = 3}, [228] = {.lex_state = 12, .external_lex_state = 3}, [229] = {.lex_state = 47, .external_lex_state = 2}, [230] = {.lex_state = 47, .external_lex_state = 2}, @@ -22620,35 +22375,35 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [239] = {.lex_state = 47, .external_lex_state = 2}, [240] = {.lex_state = 47, .external_lex_state = 2}, [241] = {.lex_state = 17, .external_lex_state = 3}, - [242] = {.lex_state = 19, .external_lex_state = 4}, - [243] = {.lex_state = 17, .external_lex_state = 4}, + [242] = {.lex_state = 17, .external_lex_state = 4}, + [243] = {.lex_state = 19, .external_lex_state = 4}, [244] = {.lex_state = 17, .external_lex_state = 3}, [245] = {.lex_state = 17, .external_lex_state = 3}, - [246] = {.lex_state = 20, .external_lex_state = 3}, - [247] = {.lex_state = 17, .external_lex_state = 3}, - [248] = {.lex_state = 37, .external_lex_state = 2}, - [249] = {.lex_state = 37, .external_lex_state = 2}, - [250] = {.lex_state = 17, .external_lex_state = 3}, - [251] = {.lex_state = 17, .external_lex_state = 3}, + [246] = {.lex_state = 17, .external_lex_state = 3}, + [247] = {.lex_state = 37, .external_lex_state = 2}, + [248] = {.lex_state = 17, .external_lex_state = 3}, + [249] = {.lex_state = 17, .external_lex_state = 3}, + [250] = {.lex_state = 37, .external_lex_state = 2}, + [251] = {.lex_state = 20, .external_lex_state = 3}, [252] = {.lex_state = 17, .external_lex_state = 4}, [253] = {.lex_state = 37, .external_lex_state = 2}, [254] = {.lex_state = 37, .external_lex_state = 2}, - [255] = {.lex_state = 37, .external_lex_state = 2}, + [255] = {.lex_state = 19, .external_lex_state = 3}, [256] = {.lex_state = 37, .external_lex_state = 2}, [257] = {.lex_state = 37, .external_lex_state = 2}, [258] = {.lex_state = 37, .external_lex_state = 2}, - [259] = {.lex_state = 17, .external_lex_state = 3}, - [260] = {.lex_state = 37, .external_lex_state = 2}, + [259] = {.lex_state = 37, .external_lex_state = 2}, + [260] = {.lex_state = 17, .external_lex_state = 3}, [261] = {.lex_state = 37, .external_lex_state = 2}, - [262] = {.lex_state = 17, .external_lex_state = 3}, - [263] = {.lex_state = 37, .external_lex_state = 2}, - [264] = {.lex_state = 19, .external_lex_state = 3}, + [262] = {.lex_state = 37, .external_lex_state = 2}, + [263] = {.lex_state = 17, .external_lex_state = 3}, + [264] = {.lex_state = 37, .external_lex_state = 2}, [265] = {.lex_state = 37, .external_lex_state = 2}, - [266] = {.lex_state = 37, .external_lex_state = 2}, + [266] = {.lex_state = 36, .external_lex_state = 2}, [267] = {.lex_state = 37, .external_lex_state = 2}, [268] = {.lex_state = 37, .external_lex_state = 2}, [269] = {.lex_state = 37, .external_lex_state = 2}, - [270] = {.lex_state = 36, .external_lex_state = 2}, + [270] = {.lex_state = 37, .external_lex_state = 2}, [271] = {.lex_state = 37, .external_lex_state = 2}, [272] = {.lex_state = 37, .external_lex_state = 2}, [273] = {.lex_state = 37, .external_lex_state = 2}, @@ -22661,184 +22416,184 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [280] = {.lex_state = 46, .external_lex_state = 2}, [281] = {.lex_state = 46, .external_lex_state = 2}, [282] = {.lex_state = 46, .external_lex_state = 2}, - [283] = {.lex_state = 36, .external_lex_state = 2}, + [283] = {.lex_state = 37, .external_lex_state = 2}, [284] = {.lex_state = 37, .external_lex_state = 2}, [285] = {.lex_state = 37, .external_lex_state = 2}, [286] = {.lex_state = 37, .external_lex_state = 2}, [287] = {.lex_state = 37, .external_lex_state = 2}, - [288] = {.lex_state = 37, .external_lex_state = 2}, + [288] = {.lex_state = 36, .external_lex_state = 2}, [289] = {.lex_state = 37, .external_lex_state = 2}, - [290] = {.lex_state = 15, .external_lex_state = 4}, + [290] = {.lex_state = 37, .external_lex_state = 2}, [291] = {.lex_state = 15, .external_lex_state = 4}, [292] = {.lex_state = 15, .external_lex_state = 4}, - [293] = {.lex_state = 37, .external_lex_state = 2}, + [293] = {.lex_state = 15, .external_lex_state = 4}, [294] = {.lex_state = 15, .external_lex_state = 4}, - [295] = {.lex_state = 15, .external_lex_state = 4}, + [295] = {.lex_state = 37, .external_lex_state = 2}, [296] = {.lex_state = 15, .external_lex_state = 4}, - [297] = {.lex_state = 15, .external_lex_state = 4}, - [298] = {.lex_state = 36, .external_lex_state = 2}, - [299] = {.lex_state = 15, .external_lex_state = 4}, - [300] = {.lex_state = 14, .external_lex_state = 4}, - [301] = {.lex_state = 15, .external_lex_state = 4}, - [302] = {.lex_state = 15, .external_lex_state = 4}, - [303] = {.lex_state = 14, .external_lex_state = 4}, - [304] = {.lex_state = 37, .external_lex_state = 2}, + [297] = {.lex_state = 405, .external_lex_state = 4}, + [298] = {.lex_state = 405, .external_lex_state = 4}, + [299] = {.lex_state = 405, .external_lex_state = 4}, + [300] = {.lex_state = 37, .external_lex_state = 2}, + [301] = {.lex_state = 36, .external_lex_state = 2}, + [302] = {.lex_state = 37, .external_lex_state = 2}, + [303] = {.lex_state = 15, .external_lex_state = 4}, + [304] = {.lex_state = 36, .external_lex_state = 2}, [305] = {.lex_state = 15, .external_lex_state = 4}, - [306] = {.lex_state = 405, .external_lex_state = 4}, - [307] = {.lex_state = 15, .external_lex_state = 4}, - [308] = {.lex_state = 15, .external_lex_state = 4}, - [309] = {.lex_state = 37, .external_lex_state = 2}, + [306] = {.lex_state = 37, .external_lex_state = 2}, + [307] = {.lex_state = 14, .external_lex_state = 4}, + [308] = {.lex_state = 14, .external_lex_state = 4}, + [309] = {.lex_state = 14, .external_lex_state = 4}, [310] = {.lex_state = 15, .external_lex_state = 4}, [311] = {.lex_state = 15, .external_lex_state = 4}, - [312] = {.lex_state = 37, .external_lex_state = 2}, - [313] = {.lex_state = 15, .external_lex_state = 4}, - [314] = {.lex_state = 36, .external_lex_state = 2}, + [312] = {.lex_state = 15, .external_lex_state = 4}, + [313] = {.lex_state = 36, .external_lex_state = 2}, + [314] = {.lex_state = 15, .external_lex_state = 4}, [315] = {.lex_state = 15, .external_lex_state = 4}, - [316] = {.lex_state = 15, .external_lex_state = 4}, - [317] = {.lex_state = 15, .external_lex_state = 4}, + [316] = {.lex_state = 37, .external_lex_state = 2}, + [317] = {.lex_state = 37, .external_lex_state = 2}, [318] = {.lex_state = 36, .external_lex_state = 2}, - [319] = {.lex_state = 37, .external_lex_state = 2}, - [320] = {.lex_state = 37, .external_lex_state = 2}, - [321] = {.lex_state = 405, .external_lex_state = 4}, - [322] = {.lex_state = 15, .external_lex_state = 4}, - [323] = {.lex_state = 36, .external_lex_state = 2}, - [324] = {.lex_state = 36, .external_lex_state = 2}, - [325] = {.lex_state = 15, .external_lex_state = 4}, - [326] = {.lex_state = 15, .external_lex_state = 4}, + [319] = {.lex_state = 15, .external_lex_state = 4}, + [320] = {.lex_state = 15, .external_lex_state = 4}, + [321] = {.lex_state = 15, .external_lex_state = 4}, + [322] = {.lex_state = 14, .external_lex_state = 4}, + [323] = {.lex_state = 37, .external_lex_state = 2}, + [324] = {.lex_state = 15, .external_lex_state = 4}, + [325] = {.lex_state = 37, .external_lex_state = 2}, + [326] = {.lex_state = 36, .external_lex_state = 2}, [327] = {.lex_state = 15, .external_lex_state = 4}, - [328] = {.lex_state = 36, .external_lex_state = 2}, - [329] = {.lex_state = 405, .external_lex_state = 4}, - [330] = {.lex_state = 37, .external_lex_state = 2}, + [328] = {.lex_state = 15, .external_lex_state = 4}, + [329] = {.lex_state = 15, .external_lex_state = 4}, + [330] = {.lex_state = 15, .external_lex_state = 4}, [331] = {.lex_state = 15, .external_lex_state = 4}, - [332] = {.lex_state = 36, .external_lex_state = 2}, + [332] = {.lex_state = 15, .external_lex_state = 4}, [333] = {.lex_state = 15, .external_lex_state = 4}, - [334] = {.lex_state = 37, .external_lex_state = 2}, - [335] = {.lex_state = 37, .external_lex_state = 2}, - [336] = {.lex_state = 15, .external_lex_state = 4}, - [337] = {.lex_state = 14, .external_lex_state = 4}, + [334] = {.lex_state = 36, .external_lex_state = 2}, + [335] = {.lex_state = 15, .external_lex_state = 4}, + [336] = {.lex_state = 36, .external_lex_state = 2}, + [337] = {.lex_state = 15, .external_lex_state = 4}, [338] = {.lex_state = 15, .external_lex_state = 4}, - [339] = {.lex_state = 37, .external_lex_state = 2}, + [339] = {.lex_state = 15, .external_lex_state = 4}, [340] = {.lex_state = 15, .external_lex_state = 4}, - [341] = {.lex_state = 14, .external_lex_state = 4}, + [341] = {.lex_state = 37, .external_lex_state = 2}, [342] = {.lex_state = 15, .external_lex_state = 4}, [343] = {.lex_state = 405, .external_lex_state = 4}, - [344] = {.lex_state = 405, .external_lex_state = 4}, - [345] = {.lex_state = 14, .external_lex_state = 4}, - [346] = {.lex_state = 37, .external_lex_state = 2}, - [347] = {.lex_state = 405, .external_lex_state = 4}, - [348] = {.lex_state = 37, .external_lex_state = 2}, - [349] = {.lex_state = 405, .external_lex_state = 4}, - [350] = {.lex_state = 405, .external_lex_state = 4}, - [351] = {.lex_state = 14, .external_lex_state = 4}, + [344] = {.lex_state = 14, .external_lex_state = 4}, + [345] = {.lex_state = 37, .external_lex_state = 2}, + [346] = {.lex_state = 14, .external_lex_state = 4}, + [347] = {.lex_state = 14, .external_lex_state = 4}, + [348] = {.lex_state = 14, .external_lex_state = 4}, + [349] = {.lex_state = 37, .external_lex_state = 2}, + [350] = {.lex_state = 14, .external_lex_state = 4}, + [351] = {.lex_state = 405, .external_lex_state = 4}, [352] = {.lex_state = 405, .external_lex_state = 4}, - [353] = {.lex_state = 405, .external_lex_state = 4}, - [354] = {.lex_state = 37, .external_lex_state = 2}, - [355] = {.lex_state = 405, .external_lex_state = 4}, - [356] = {.lex_state = 37, .external_lex_state = 2}, - [357] = {.lex_state = 37, .external_lex_state = 2}, + [353] = {.lex_state = 14, .external_lex_state = 4}, + [354] = {.lex_state = 14, .external_lex_state = 4}, + [355] = {.lex_state = 37, .external_lex_state = 2}, + [356] = {.lex_state = 14, .external_lex_state = 4}, + [357] = {.lex_state = 405, .external_lex_state = 4}, [358] = {.lex_state = 405, .external_lex_state = 4}, - [359] = {.lex_state = 14, .external_lex_state = 4}, + [359] = {.lex_state = 37, .external_lex_state = 2}, [360] = {.lex_state = 405, .external_lex_state = 4}, - [361] = {.lex_state = 37, .external_lex_state = 2}, - [362] = {.lex_state = 14, .external_lex_state = 4}, + [361] = {.lex_state = 14, .external_lex_state = 4}, + [362] = {.lex_state = 405, .external_lex_state = 4}, [363] = {.lex_state = 14, .external_lex_state = 4}, [364] = {.lex_state = 405, .external_lex_state = 4}, - [365] = {.lex_state = 405, .external_lex_state = 4}, - [366] = {.lex_state = 405, .external_lex_state = 4}, - [367] = {.lex_state = 405, .external_lex_state = 4}, - [368] = {.lex_state = 37, .external_lex_state = 2}, - [369] = {.lex_state = 405, .external_lex_state = 4}, - [370] = {.lex_state = 405, .external_lex_state = 4}, - [371] = {.lex_state = 405, .external_lex_state = 4}, - [372] = {.lex_state = 405, .external_lex_state = 4}, - [373] = {.lex_state = 37, .external_lex_state = 2}, - [374] = {.lex_state = 37, .external_lex_state = 2}, + [365] = {.lex_state = 37, .external_lex_state = 2}, + [366] = {.lex_state = 14, .external_lex_state = 4}, + [367] = {.lex_state = 37, .external_lex_state = 2}, + [368] = {.lex_state = 14, .external_lex_state = 4}, + [369] = {.lex_state = 37, .external_lex_state = 2}, + [370] = {.lex_state = 37, .external_lex_state = 2}, + [371] = {.lex_state = 404, .external_lex_state = 4}, + [372] = {.lex_state = 404, .external_lex_state = 4}, + [373] = {.lex_state = 404, .external_lex_state = 4}, + [374] = {.lex_state = 405, .external_lex_state = 4}, [375] = {.lex_state = 14, .external_lex_state = 4}, - [376] = {.lex_state = 37, .external_lex_state = 2}, - [377] = {.lex_state = 14, .external_lex_state = 4}, - [378] = {.lex_state = 37, .external_lex_state = 2}, - [379] = {.lex_state = 14, .external_lex_state = 4}, + [376] = {.lex_state = 405, .external_lex_state = 4}, + [377] = {.lex_state = 37, .external_lex_state = 2}, + [378] = {.lex_state = 404, .external_lex_state = 4}, + [379] = {.lex_state = 37, .external_lex_state = 2}, [380] = {.lex_state = 37, .external_lex_state = 2}, - [381] = {.lex_state = 14, .external_lex_state = 4}, - [382] = {.lex_state = 14, .external_lex_state = 4}, - [383] = {.lex_state = 37, .external_lex_state = 2}, - [384] = {.lex_state = 14, .external_lex_state = 4}, - [385] = {.lex_state = 37, .external_lex_state = 2}, + [381] = {.lex_state = 405, .external_lex_state = 4}, + [382] = {.lex_state = 405, .external_lex_state = 4}, + [383] = {.lex_state = 405, .external_lex_state = 4}, + [384] = {.lex_state = 405, .external_lex_state = 4}, + [385] = {.lex_state = 405, .external_lex_state = 4}, [386] = {.lex_state = 14, .external_lex_state = 4}, - [387] = {.lex_state = 405, .external_lex_state = 4}, + [387] = {.lex_state = 14, .external_lex_state = 4}, [388] = {.lex_state = 37, .external_lex_state = 2}, - [389] = {.lex_state = 405, .external_lex_state = 4}, - [390] = {.lex_state = 14, .external_lex_state = 4}, - [391] = {.lex_state = 37, .external_lex_state = 2}, + [389] = {.lex_state = 14, .external_lex_state = 4}, + [390] = {.lex_state = 37, .external_lex_state = 2}, + [391] = {.lex_state = 14, .external_lex_state = 4}, [392] = {.lex_state = 37, .external_lex_state = 2}, - [393] = {.lex_state = 37, .external_lex_state = 2}, - [394] = {.lex_state = 37, .external_lex_state = 2}, - [395] = {.lex_state = 405, .external_lex_state = 4}, + [393] = {.lex_state = 405, .external_lex_state = 4}, + [394] = {.lex_state = 14, .external_lex_state = 4}, + [395] = {.lex_state = 14, .external_lex_state = 4}, [396] = {.lex_state = 37, .external_lex_state = 2}, - [397] = {.lex_state = 14, .external_lex_state = 4}, + [397] = {.lex_state = 405, .external_lex_state = 4}, [398] = {.lex_state = 14, .external_lex_state = 4}, - [399] = {.lex_state = 14, .external_lex_state = 4}, - [400] = {.lex_state = 14, .external_lex_state = 4}, - [401] = {.lex_state = 37, .external_lex_state = 2}, - [402] = {.lex_state = 404, .external_lex_state = 4}, - [403] = {.lex_state = 405, .external_lex_state = 4}, - [404] = {.lex_state = 14, .external_lex_state = 4}, - [405] = {.lex_state = 14, .external_lex_state = 4}, - [406] = {.lex_state = 404, .external_lex_state = 4}, - [407] = {.lex_state = 404, .external_lex_state = 4}, - [408] = {.lex_state = 404, .external_lex_state = 4}, - [409] = {.lex_state = 14, .external_lex_state = 4}, - [410] = {.lex_state = 14, .external_lex_state = 4}, - [411] = {.lex_state = 14, .external_lex_state = 4}, + [399] = {.lex_state = 37, .external_lex_state = 2}, + [400] = {.lex_state = 37, .external_lex_state = 2}, + [401] = {.lex_state = 405, .external_lex_state = 4}, + [402] = {.lex_state = 37, .external_lex_state = 2}, + [403] = {.lex_state = 37, .external_lex_state = 2}, + [404] = {.lex_state = 37, .external_lex_state = 2}, + [405] = {.lex_state = 405, .external_lex_state = 4}, + [406] = {.lex_state = 405, .external_lex_state = 4}, + [407] = {.lex_state = 37, .external_lex_state = 2}, + [408] = {.lex_state = 14, .external_lex_state = 4}, + [409] = {.lex_state = 405, .external_lex_state = 4}, + [410] = {.lex_state = 405, .external_lex_state = 4}, + [411] = {.lex_state = 37, .external_lex_state = 2}, [412] = {.lex_state = 405, .external_lex_state = 4}, - [413] = {.lex_state = 37, .external_lex_state = 2}, + [413] = {.lex_state = 14, .external_lex_state = 4}, [414] = {.lex_state = 37, .external_lex_state = 2}, [415] = {.lex_state = 405, .external_lex_state = 4}, - [416] = {.lex_state = 14, .external_lex_state = 4}, - [417] = {.lex_state = 37, .external_lex_state = 2}, - [418] = {.lex_state = 405, .external_lex_state = 4}, - [419] = {.lex_state = 14, .external_lex_state = 4}, - [420] = {.lex_state = 405, .external_lex_state = 4}, - [421] = {.lex_state = 14, .external_lex_state = 4}, - [422] = {.lex_state = 37, .external_lex_state = 2}, - [423] = {.lex_state = 404, .external_lex_state = 4}, - [424] = {.lex_state = 37, .external_lex_state = 5}, - [425] = {.lex_state = 37, .external_lex_state = 5}, - [426] = {.lex_state = 404, .external_lex_state = 4}, - [427] = {.lex_state = 404, .external_lex_state = 4}, + [416] = {.lex_state = 405, .external_lex_state = 4}, + [417] = {.lex_state = 14, .external_lex_state = 4}, + [418] = {.lex_state = 37, .external_lex_state = 2}, + [419] = {.lex_state = 405, .external_lex_state = 4}, + [420] = {.lex_state = 14, .external_lex_state = 4}, + [421] = {.lex_state = 37, .external_lex_state = 2}, + [422] = {.lex_state = 14, .external_lex_state = 4}, + [423] = {.lex_state = 37, .external_lex_state = 5}, + [424] = {.lex_state = 404, .external_lex_state = 4}, + [425] = {.lex_state = 404, .external_lex_state = 4}, + [426] = {.lex_state = 6, .external_lex_state = 3}, + [427] = {.lex_state = 6, .external_lex_state = 3}, [428] = {.lex_state = 404, .external_lex_state = 4}, [429] = {.lex_state = 404, .external_lex_state = 4}, [430] = {.lex_state = 404, .external_lex_state = 4}, - [431] = {.lex_state = 37, .external_lex_state = 2}, - [432] = {.lex_state = 404, .external_lex_state = 4}, + [431] = {.lex_state = 404, .external_lex_state = 4}, + [432] = {.lex_state = 37, .external_lex_state = 5}, [433] = {.lex_state = 37, .external_lex_state = 2}, [434] = {.lex_state = 404, .external_lex_state = 4}, [435] = {.lex_state = 404, .external_lex_state = 4}, - [436] = {.lex_state = 404, .external_lex_state = 4}, + [436] = {.lex_state = 37, .external_lex_state = 2}, [437] = {.lex_state = 404, .external_lex_state = 4}, [438] = {.lex_state = 404, .external_lex_state = 4}, - [439] = {.lex_state = 6, .external_lex_state = 3}, - [440] = {.lex_state = 37, .external_lex_state = 2}, - [441] = {.lex_state = 37, .external_lex_state = 2}, + [439] = {.lex_state = 404, .external_lex_state = 4}, + [440] = {.lex_state = 404, .external_lex_state = 4}, + [441] = {.lex_state = 404, .external_lex_state = 4}, [442] = {.lex_state = 404, .external_lex_state = 4}, - [443] = {.lex_state = 404, .external_lex_state = 4}, + [443] = {.lex_state = 6, .external_lex_state = 3}, [444] = {.lex_state = 404, .external_lex_state = 4}, - [445] = {.lex_state = 6, .external_lex_state = 3}, - [446] = {.lex_state = 404, .external_lex_state = 4}, - [447] = {.lex_state = 6, .external_lex_state = 3}, + [445] = {.lex_state = 37, .external_lex_state = 5}, + [446] = {.lex_state = 6, .external_lex_state = 3}, + [447] = {.lex_state = 37, .external_lex_state = 5}, [448] = {.lex_state = 404, .external_lex_state = 4}, [449] = {.lex_state = 404, .external_lex_state = 4}, [450] = {.lex_state = 404, .external_lex_state = 4}, - [451] = {.lex_state = 37, .external_lex_state = 5}, + [451] = {.lex_state = 404, .external_lex_state = 4}, [452] = {.lex_state = 404, .external_lex_state = 4}, [453] = {.lex_state = 404, .external_lex_state = 4}, [454] = {.lex_state = 404, .external_lex_state = 4}, - [455] = {.lex_state = 37, .external_lex_state = 5}, + [455] = {.lex_state = 37, .external_lex_state = 2}, [456] = {.lex_state = 404, .external_lex_state = 4}, - [457] = {.lex_state = 6, .external_lex_state = 3}, + [457] = {.lex_state = 37, .external_lex_state = 2}, [458] = {.lex_state = 404, .external_lex_state = 4}, - [459] = {.lex_state = 404, .external_lex_state = 4}, - [460] = {.lex_state = 37, .external_lex_state = 5}, + [459] = {.lex_state = 37, .external_lex_state = 5}, + [460] = {.lex_state = 404, .external_lex_state = 4}, [461] = {.lex_state = 46, .external_lex_state = 2}, [462] = {.lex_state = 37, .external_lex_state = 2}, [463] = {.lex_state = 37, .external_lex_state = 2}, @@ -23217,141 +22972,141 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [836] = {.lex_state = 9, .external_lex_state = 4}, [837] = {.lex_state = 406, .external_lex_state = 4}, [838] = {.lex_state = 406, .external_lex_state = 4}, - [839] = {.lex_state = 9, .external_lex_state = 4}, + [839] = {.lex_state = 406, .external_lex_state = 4}, [840] = {.lex_state = 9, .external_lex_state = 4}, [841] = {.lex_state = 406, .external_lex_state = 4}, [842] = {.lex_state = 406, .external_lex_state = 4}, [843] = {.lex_state = 9, .external_lex_state = 4}, - [844] = {.lex_state = 406, .external_lex_state = 4}, - [845] = {.lex_state = 406, .external_lex_state = 4}, - [846] = {.lex_state = 9, .external_lex_state = 4}, + [844] = {.lex_state = 9, .external_lex_state = 4}, + [845] = {.lex_state = 9, .external_lex_state = 4}, + [846] = {.lex_state = 406, .external_lex_state = 4}, [847] = {.lex_state = 23, .external_lex_state = 3}, [848] = {.lex_state = 23, .external_lex_state = 3}, [849] = {.lex_state = 23, .external_lex_state = 3}, [850] = {.lex_state = 23, .external_lex_state = 3}, [851] = {.lex_state = 23, .external_lex_state = 3}, [852] = {.lex_state = 23, .external_lex_state = 4}, - [853] = {.lex_state = 25, .external_lex_state = 4}, + [853] = {.lex_state = 23, .external_lex_state = 4}, [854] = {.lex_state = 25, .external_lex_state = 4}, - [855] = {.lex_state = 23, .external_lex_state = 4}, - [856] = {.lex_state = 23, .external_lex_state = 3}, + [855] = {.lex_state = 25, .external_lex_state = 4}, + [856] = {.lex_state = 23, .external_lex_state = 4}, [857] = {.lex_state = 23, .external_lex_state = 4}, - [858] = {.lex_state = 25, .external_lex_state = 4}, - [859] = {.lex_state = 23, .external_lex_state = 4}, + [858] = {.lex_state = 23, .external_lex_state = 4}, + [859] = {.lex_state = 23, .external_lex_state = 3}, [860] = {.lex_state = 23, .external_lex_state = 4}, - [861] = {.lex_state = 23, .external_lex_state = 4}, + [861] = {.lex_state = 25, .external_lex_state = 4}, [862] = {.lex_state = 23, .external_lex_state = 4}, [863] = {.lex_state = 26, .external_lex_state = 3}, [864] = {.lex_state = 23, .external_lex_state = 3}, [865] = {.lex_state = 26, .external_lex_state = 3}, - [866] = {.lex_state = 23, .external_lex_state = 4}, - [867] = {.lex_state = 23, .external_lex_state = 4}, - [868] = {.lex_state = 23, .external_lex_state = 3}, + [866] = {.lex_state = 23, .external_lex_state = 3}, + [867] = {.lex_state = 43, .external_lex_state = 2}, + [868] = {.lex_state = 23, .external_lex_state = 4}, [869] = {.lex_state = 23, .external_lex_state = 4}, - [870] = {.lex_state = 23, .external_lex_state = 3}, - [871] = {.lex_state = 23, .external_lex_state = 3}, - [872] = {.lex_state = 23, .external_lex_state = 4}, + [870] = {.lex_state = 23, .external_lex_state = 4}, + [871] = {.lex_state = 23, .external_lex_state = 4}, + [872] = {.lex_state = 23, .external_lex_state = 3}, [873] = {.lex_state = 23, .external_lex_state = 4}, [874] = {.lex_state = 23, .external_lex_state = 4}, - [875] = {.lex_state = 23, .external_lex_state = 4}, - [876] = {.lex_state = 43, .external_lex_state = 2}, - [877] = {.lex_state = 23, .external_lex_state = 4}, + [875] = {.lex_state = 23, .external_lex_state = 3}, + [876] = {.lex_state = 23, .external_lex_state = 4}, + [877] = {.lex_state = 23, .external_lex_state = 3}, [878] = {.lex_state = 23, .external_lex_state = 3}, - [879] = {.lex_state = 23, .external_lex_state = 3}, - [880] = {.lex_state = 25, .external_lex_state = 3}, - [881] = {.lex_state = 23, .external_lex_state = 3}, - [882] = {.lex_state = 25, .external_lex_state = 3}, - [883] = {.lex_state = 43, .external_lex_state = 5}, - [884] = {.lex_state = 413, .external_lex_state = 2}, + [879] = {.lex_state = 23, .external_lex_state = 4}, + [880] = {.lex_state = 23, .external_lex_state = 3}, + [881] = {.lex_state = 42, .external_lex_state = 2}, + [882] = {.lex_state = 23, .external_lex_state = 3}, + [883] = {.lex_state = 413, .external_lex_state = 2}, + [884] = {.lex_state = 25, .external_lex_state = 3}, [885] = {.lex_state = 25, .external_lex_state = 3}, [886] = {.lex_state = 43, .external_lex_state = 5}, - [887] = {.lex_state = 23, .external_lex_state = 3}, + [887] = {.lex_state = 43, .external_lex_state = 5}, [888] = {.lex_state = 23, .external_lex_state = 3}, - [889] = {.lex_state = 42, .external_lex_state = 2}, + [889] = {.lex_state = 25, .external_lex_state = 3}, [890] = {.lex_state = 23, .external_lex_state = 3}, - [891] = {.lex_state = 23, .external_lex_state = 3}, - [892] = {.lex_state = 42, .external_lex_state = 5}, - [893] = {.lex_state = 23, .external_lex_state = 3}, - [894] = {.lex_state = 413, .external_lex_state = 5}, + [891] = {.lex_state = 41, .external_lex_state = 2}, + [892] = {.lex_state = 23, .external_lex_state = 3}, + [893] = {.lex_state = 42, .external_lex_state = 5}, + [894] = {.lex_state = 412, .external_lex_state = 2}, [895] = {.lex_state = 23, .external_lex_state = 3}, - [896] = {.lex_state = 412, .external_lex_state = 2}, + [896] = {.lex_state = 45, .external_lex_state = 2}, [897] = {.lex_state = 23, .external_lex_state = 3}, [898] = {.lex_state = 23, .external_lex_state = 3}, - [899] = {.lex_state = 45, .external_lex_state = 5}, + [899] = {.lex_state = 23, .external_lex_state = 3}, [900] = {.lex_state = 23, .external_lex_state = 3}, - [901] = {.lex_state = 23, .external_lex_state = 3}, - [902] = {.lex_state = 23, .external_lex_state = 3}, - [903] = {.lex_state = 413, .external_lex_state = 5}, - [904] = {.lex_state = 42, .external_lex_state = 5}, - [905] = {.lex_state = 45, .external_lex_state = 2}, - [906] = {.lex_state = 23, .external_lex_state = 3}, + [901] = {.lex_state = 413, .external_lex_state = 5}, + [902] = {.lex_state = 413, .external_lex_state = 5}, + [903] = {.lex_state = 45, .external_lex_state = 5}, + [904] = {.lex_state = 43, .external_lex_state = 2}, + [905] = {.lex_state = 42, .external_lex_state = 5}, + [906] = {.lex_state = 43, .external_lex_state = 2}, [907] = {.lex_state = 45, .external_lex_state = 5}, - [908] = {.lex_state = 41, .external_lex_state = 2}, + [908] = {.lex_state = 23, .external_lex_state = 3}, [909] = {.lex_state = 41, .external_lex_state = 2}, - [910] = {.lex_state = 43, .external_lex_state = 2}, - [911] = {.lex_state = 43, .external_lex_state = 2}, - [912] = {.lex_state = 45, .external_lex_state = 2}, - [913] = {.lex_state = 41, .external_lex_state = 2}, + [910] = {.lex_state = 23, .external_lex_state = 3}, + [911] = {.lex_state = 23, .external_lex_state = 3}, + [912] = {.lex_state = 41, .external_lex_state = 2}, + [913] = {.lex_state = 41, .external_lex_state = 5}, [914] = {.lex_state = 41, .external_lex_state = 5}, - [915] = {.lex_state = 41, .external_lex_state = 2}, - [916] = {.lex_state = 41, .external_lex_state = 5}, - [917] = {.lex_state = 41, .external_lex_state = 5}, - [918] = {.lex_state = 41, .external_lex_state = 5}, + [915] = {.lex_state = 44, .external_lex_state = 5}, + [916] = {.lex_state = 42, .external_lex_state = 2}, + [917] = {.lex_state = 41, .external_lex_state = 2}, + [918] = {.lex_state = 42, .external_lex_state = 2}, [919] = {.lex_state = 41, .external_lex_state = 5}, - [920] = {.lex_state = 45, .external_lex_state = 2}, + [920] = {.lex_state = 41, .external_lex_state = 5}, [921] = {.lex_state = 41, .external_lex_state = 5}, [922] = {.lex_state = 41, .external_lex_state = 5}, - [923] = {.lex_state = 41, .external_lex_state = 5}, + [923] = {.lex_state = 412, .external_lex_state = 5}, [924] = {.lex_state = 41, .external_lex_state = 5}, - [925] = {.lex_state = 40, .external_lex_state = 2}, - [926] = {.lex_state = 44, .external_lex_state = 5}, - [927] = {.lex_state = 45, .external_lex_state = 2}, - [928] = {.lex_state = 41, .external_lex_state = 2}, - [929] = {.lex_state = 41, .external_lex_state = 5}, - [930] = {.lex_state = 411, .external_lex_state = 5}, + [925] = {.lex_state = 44, .external_lex_state = 5}, + [926] = {.lex_state = 41, .external_lex_state = 5}, + [927] = {.lex_state = 412, .external_lex_state = 5}, + [928] = {.lex_state = 409, .external_lex_state = 2}, + [929] = {.lex_state = 45, .external_lex_state = 2}, + [930] = {.lex_state = 409, .external_lex_state = 2}, [931] = {.lex_state = 41, .external_lex_state = 5}, - [932] = {.lex_state = 411, .external_lex_state = 5}, + [932] = {.lex_state = 41, .external_lex_state = 5}, [933] = {.lex_state = 41, .external_lex_state = 5}, - [934] = {.lex_state = 412, .external_lex_state = 5}, - [935] = {.lex_state = 41, .external_lex_state = 2}, - [936] = {.lex_state = 41, .external_lex_state = 2}, + [934] = {.lex_state = 44, .external_lex_state = 2}, + [935] = {.lex_state = 45, .external_lex_state = 2}, + [936] = {.lex_state = 413, .external_lex_state = 2}, [937] = {.lex_state = 45, .external_lex_state = 2}, - [938] = {.lex_state = 411, .external_lex_state = 2}, + [938] = {.lex_state = 45, .external_lex_state = 2}, [939] = {.lex_state = 41, .external_lex_state = 5}, - [940] = {.lex_state = 41, .external_lex_state = 5}, - [941] = {.lex_state = 45, .external_lex_state = 2}, - [942] = {.lex_state = 42, .external_lex_state = 2}, - [943] = {.lex_state = 42, .external_lex_state = 2}, - [944] = {.lex_state = 412, .external_lex_state = 5}, + [940] = {.lex_state = 45, .external_lex_state = 2}, + [941] = {.lex_state = 41, .external_lex_state = 5}, + [942] = {.lex_state = 41, .external_lex_state = 2}, + [943] = {.lex_state = 41, .external_lex_state = 5}, + [944] = {.lex_state = 411, .external_lex_state = 5}, [945] = {.lex_state = 41, .external_lex_state = 5}, [946] = {.lex_state = 41, .external_lex_state = 5}, - [947] = {.lex_state = 44, .external_lex_state = 5}, - [948] = {.lex_state = 41, .external_lex_state = 5}, + [947] = {.lex_state = 40, .external_lex_state = 2}, + [948] = {.lex_state = 40, .external_lex_state = 2}, [949] = {.lex_state = 41, .external_lex_state = 5}, - [950] = {.lex_state = 413, .external_lex_state = 2}, - [951] = {.lex_state = 44, .external_lex_state = 2}, + [950] = {.lex_state = 41, .external_lex_state = 5}, + [951] = {.lex_state = 41, .external_lex_state = 5}, [952] = {.lex_state = 41, .external_lex_state = 5}, - [953] = {.lex_state = 413, .external_lex_state = 2}, - [954] = {.lex_state = 41, .external_lex_state = 5}, + [953] = {.lex_state = 41, .external_lex_state = 5}, + [954] = {.lex_state = 411, .external_lex_state = 2}, [955] = {.lex_state = 41, .external_lex_state = 5}, - [956] = {.lex_state = 41, .external_lex_state = 5}, - [957] = {.lex_state = 409, .external_lex_state = 2}, - [958] = {.lex_state = 409, .external_lex_state = 2}, - [959] = {.lex_state = 41, .external_lex_state = 5}, - [960] = {.lex_state = 40, .external_lex_state = 2}, - [961] = {.lex_state = 409, .external_lex_state = 5}, - [962] = {.lex_state = 41, .external_lex_state = 2}, - [963] = {.lex_state = 410, .external_lex_state = 5}, - [964] = {.lex_state = 40, .external_lex_state = 5}, + [956] = {.lex_state = 41, .external_lex_state = 2}, + [957] = {.lex_state = 41, .external_lex_state = 2}, + [958] = {.lex_state = 411, .external_lex_state = 5}, + [959] = {.lex_state = 413, .external_lex_state = 2}, + [960] = {.lex_state = 41, .external_lex_state = 5}, + [961] = {.lex_state = 40, .external_lex_state = 5}, + [962] = {.lex_state = 408, .external_lex_state = 2}, + [963] = {.lex_state = 41, .external_lex_state = 2}, + [964] = {.lex_state = 41, .external_lex_state = 2}, [965] = {.lex_state = 41, .external_lex_state = 2}, - [966] = {.lex_state = 409, .external_lex_state = 5}, - [967] = {.lex_state = 410, .external_lex_state = 5}, + [966] = {.lex_state = 41, .external_lex_state = 2}, + [967] = {.lex_state = 41, .external_lex_state = 2}, [968] = {.lex_state = 41, .external_lex_state = 2}, [969] = {.lex_state = 41, .external_lex_state = 2}, [970] = {.lex_state = 41, .external_lex_state = 2}, - [971] = {.lex_state = 409, .external_lex_state = 2}, - [972] = {.lex_state = 41, .external_lex_state = 2}, - [973] = {.lex_state = 40, .external_lex_state = 5}, + [971] = {.lex_state = 41, .external_lex_state = 2}, + [972] = {.lex_state = 409, .external_lex_state = 5}, + [973] = {.lex_state = 41, .external_lex_state = 2}, [974] = {.lex_state = 41, .external_lex_state = 2}, [975] = {.lex_state = 41, .external_lex_state = 2}, [976] = {.lex_state = 41, .external_lex_state = 2}, @@ -23362,9 +23117,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [981] = {.lex_state = 41, .external_lex_state = 2}, [982] = {.lex_state = 41, .external_lex_state = 2}, [983] = {.lex_state = 41, .external_lex_state = 2}, - [984] = {.lex_state = 41, .external_lex_state = 2}, + [984] = {.lex_state = 410, .external_lex_state = 5}, [985] = {.lex_state = 41, .external_lex_state = 2}, - [986] = {.lex_state = 409, .external_lex_state = 5}, + [986] = {.lex_state = 41, .external_lex_state = 2}, [987] = {.lex_state = 41, .external_lex_state = 2}, [988] = {.lex_state = 41, .external_lex_state = 2}, [989] = {.lex_state = 41, .external_lex_state = 2}, @@ -23372,568 +23127,568 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [991] = {.lex_state = 41, .external_lex_state = 2}, [992] = {.lex_state = 41, .external_lex_state = 2}, [993] = {.lex_state = 41, .external_lex_state = 2}, - [994] = {.lex_state = 409, .external_lex_state = 5}, - [995] = {.lex_state = 41, .external_lex_state = 2}, + [994] = {.lex_state = 41, .external_lex_state = 2}, + [995] = {.lex_state = 409, .external_lex_state = 5}, [996] = {.lex_state = 41, .external_lex_state = 2}, - [997] = {.lex_state = 41, .external_lex_state = 2}, - [998] = {.lex_state = 41, .external_lex_state = 2}, - [999] = {.lex_state = 409, .external_lex_state = 2}, - [1000] = {.lex_state = 41, .external_lex_state = 2}, + [997] = {.lex_state = 409, .external_lex_state = 5}, + [998] = {.lex_state = 411, .external_lex_state = 2}, + [999] = {.lex_state = 41, .external_lex_state = 2}, + [1000] = {.lex_state = 40, .external_lex_state = 5}, [1001] = {.lex_state = 41, .external_lex_state = 2}, - [1002] = {.lex_state = 41, .external_lex_state = 2}, - [1003] = {.lex_state = 409, .external_lex_state = 2}, - [1004] = {.lex_state = 409, .external_lex_state = 5}, + [1002] = {.lex_state = 410, .external_lex_state = 5}, + [1003] = {.lex_state = 41, .external_lex_state = 2}, + [1004] = {.lex_state = 40, .external_lex_state = 5}, [1005] = {.lex_state = 41, .external_lex_state = 2}, [1006] = {.lex_state = 41, .external_lex_state = 2}, - [1007] = {.lex_state = 41, .external_lex_state = 2}, + [1007] = {.lex_state = 409, .external_lex_state = 5}, [1008] = {.lex_state = 41, .external_lex_state = 2}, [1009] = {.lex_state = 41, .external_lex_state = 2}, [1010] = {.lex_state = 41, .external_lex_state = 2}, [1011] = {.lex_state = 41, .external_lex_state = 2}, [1012] = {.lex_state = 41, .external_lex_state = 2}, - [1013] = {.lex_state = 41, .external_lex_state = 2}, + [1013] = {.lex_state = 411, .external_lex_state = 2}, [1014] = {.lex_state = 41, .external_lex_state = 2}, [1015] = {.lex_state = 41, .external_lex_state = 2}, - [1016] = {.lex_state = 41, .external_lex_state = 2}, + [1016] = {.lex_state = 409, .external_lex_state = 2}, [1017] = {.lex_state = 41, .external_lex_state = 2}, [1018] = {.lex_state = 41, .external_lex_state = 2}, - [1019] = {.lex_state = 41, .external_lex_state = 2}, - [1020] = {.lex_state = 41, .external_lex_state = 2}, - [1021] = {.lex_state = 41, .external_lex_state = 2}, + [1019] = {.lex_state = 409, .external_lex_state = 5}, + [1020] = {.lex_state = 40, .external_lex_state = 5}, + [1021] = {.lex_state = 409, .external_lex_state = 2}, [1022] = {.lex_state = 41, .external_lex_state = 2}, - [1023] = {.lex_state = 41, .external_lex_state = 2}, - [1024] = {.lex_state = 41, .external_lex_state = 2}, + [1023] = {.lex_state = 40, .external_lex_state = 5}, + [1024] = {.lex_state = 409, .external_lex_state = 2}, [1025] = {.lex_state = 41, .external_lex_state = 2}, [1026] = {.lex_state = 41, .external_lex_state = 2}, [1027] = {.lex_state = 41, .external_lex_state = 2}, - [1028] = {.lex_state = 41, .external_lex_state = 2}, + [1028] = {.lex_state = 409, .external_lex_state = 5}, [1029] = {.lex_state = 41, .external_lex_state = 2}, [1030] = {.lex_state = 41, .external_lex_state = 2}, [1031] = {.lex_state = 41, .external_lex_state = 2}, - [1032] = {.lex_state = 40, .external_lex_state = 2}, - [1033] = {.lex_state = 44, .external_lex_state = 2}, - [1034] = {.lex_state = 44, .external_lex_state = 2}, - [1035] = {.lex_state = 41, .external_lex_state = 2}, + [1032] = {.lex_state = 41, .external_lex_state = 2}, + [1033] = {.lex_state = 41, .external_lex_state = 2}, + [1034] = {.lex_state = 409, .external_lex_state = 5}, + [1035] = {.lex_state = 412, .external_lex_state = 2}, [1036] = {.lex_state = 41, .external_lex_state = 2}, [1037] = {.lex_state = 41, .external_lex_state = 2}, - [1038] = {.lex_state = 40, .external_lex_state = 5}, + [1038] = {.lex_state = 41, .external_lex_state = 2}, [1039] = {.lex_state = 41, .external_lex_state = 2}, [1040] = {.lex_state = 41, .external_lex_state = 2}, - [1041] = {.lex_state = 41, .external_lex_state = 2}, + [1041] = {.lex_state = 40, .external_lex_state = 2}, [1042] = {.lex_state = 41, .external_lex_state = 2}, - [1043] = {.lex_state = 41, .external_lex_state = 2}, - [1044] = {.lex_state = 41, .external_lex_state = 2}, - [1045] = {.lex_state = 40, .external_lex_state = 5}, + [1043] = {.lex_state = 409, .external_lex_state = 2}, + [1044] = {.lex_state = 409, .external_lex_state = 5}, + [1045] = {.lex_state = 411, .external_lex_state = 2}, [1046] = {.lex_state = 41, .external_lex_state = 2}, [1047] = {.lex_state = 41, .external_lex_state = 2}, [1048] = {.lex_state = 41, .external_lex_state = 2}, - [1049] = {.lex_state = 41, .external_lex_state = 2}, - [1050] = {.lex_state = 40, .external_lex_state = 5}, + [1049] = {.lex_state = 408, .external_lex_state = 2}, + [1050] = {.lex_state = 41, .external_lex_state = 2}, [1051] = {.lex_state = 41, .external_lex_state = 2}, [1052] = {.lex_state = 41, .external_lex_state = 2}, - [1053] = {.lex_state = 40, .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 = 40, .external_lex_state = 2}, - [1058] = {.lex_state = 41, .external_lex_state = 2}, - [1059] = {.lex_state = 40, .external_lex_state = 5}, + [1056] = {.lex_state = 40, .external_lex_state = 5}, + [1057] = {.lex_state = 409, .external_lex_state = 5}, + [1058] = {.lex_state = 44, .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}, + [1061] = {.lex_state = 40, .external_lex_state = 5}, + [1062] = {.lex_state = 40, .external_lex_state = 5}, + [1063] = {.lex_state = 40, .external_lex_state = 5}, [1064] = {.lex_state = 41, .external_lex_state = 2}, - [1065] = {.lex_state = 41, .external_lex_state = 2}, + [1065] = {.lex_state = 44, .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}, + [1067] = {.lex_state = 44, .external_lex_state = 2}, + [1068] = {.lex_state = 409, .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}, + [1070] = {.lex_state = 409, .external_lex_state = 5}, + [1071] = {.lex_state = 40, .external_lex_state = 5}, + [1072] = {.lex_state = 409, .external_lex_state = 5}, [1073] = {.lex_state = 41, .external_lex_state = 2}, [1074] = {.lex_state = 41, .external_lex_state = 2}, - [1075] = {.lex_state = 41, .external_lex_state = 2}, + [1075] = {.lex_state = 409, .external_lex_state = 5}, [1076] = {.lex_state = 41, .external_lex_state = 2}, - [1077] = {.lex_state = 40, .external_lex_state = 5}, - [1078] = {.lex_state = 409, .external_lex_state = 5}, + [1077] = {.lex_state = 412, .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 = 40, .external_lex_state = 5}, - [1083] = {.lex_state = 40, .external_lex_state = 5}, - [1084] = {.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 = 44, .external_lex_state = 2}, [1085] = {.lex_state = 41, .external_lex_state = 2}, [1086] = {.lex_state = 41, .external_lex_state = 2}, - [1087] = {.lex_state = 409, .external_lex_state = 5}, + [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}, + [1090] = {.lex_state = 409, .external_lex_state = 5}, + [1091] = {.lex_state = 409, .external_lex_state = 5}, + [1092] = {.lex_state = 40, .external_lex_state = 5}, [1093] = {.lex_state = 41, .external_lex_state = 2}, [1094] = {.lex_state = 41, .external_lex_state = 2}, - [1095] = {.lex_state = 411, .external_lex_state = 2}, - [1096] = {.lex_state = 411, .external_lex_state = 2}, - [1097] = {.lex_state = 41, .external_lex_state = 2}, - [1098] = {.lex_state = 409, .external_lex_state = 5}, + [1095] = {.lex_state = 409, .external_lex_state = 5}, + [1096] = {.lex_state = 41, .external_lex_state = 2}, + [1097] = {.lex_state = 40, .external_lex_state = 5}, + [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 = 409, .external_lex_state = 5}, [1102] = {.lex_state = 41, .external_lex_state = 2}, - [1103] = {.lex_state = 41, .external_lex_state = 2}, + [1103] = {.lex_state = 409, .external_lex_state = 5}, [1104] = {.lex_state = 409, .external_lex_state = 5}, [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 = 40, .external_lex_state = 5}, - [1109] = {.lex_state = 44, .external_lex_state = 2}, + [1107] = {.lex_state = 40, .external_lex_state = 5}, + [1108] = {.lex_state = 41, .external_lex_state = 2}, + [1109] = {.lex_state = 41, .external_lex_state = 2}, [1110] = {.lex_state = 41, .external_lex_state = 2}, - [1111] = {.lex_state = 41, .external_lex_state = 2}, + [1111] = {.lex_state = 409, .external_lex_state = 5}, [1112] = {.lex_state = 41, .external_lex_state = 2}, - [1113] = {.lex_state = 41, .external_lex_state = 2}, + [1113] = {.lex_state = 40, .external_lex_state = 5}, [1114] = {.lex_state = 41, .external_lex_state = 2}, - [1115] = {.lex_state = 40, .external_lex_state = 5}, - [1116] = {.lex_state = 41, .external_lex_state = 2}, - [1117] = {.lex_state = 40, .external_lex_state = 5}, + [1115] = {.lex_state = 41, .external_lex_state = 2}, + [1116] = {.lex_state = 409, .external_lex_state = 5}, + [1117] = {.lex_state = 41, .external_lex_state = 2}, [1118] = {.lex_state = 41, .external_lex_state = 2}, - [1119] = {.lex_state = 40, .external_lex_state = 5}, - [1120] = {.lex_state = 40, .external_lex_state = 5}, - [1121] = {.lex_state = 44, .external_lex_state = 2}, - [1122] = {.lex_state = 44, .external_lex_state = 2}, - [1123] = {.lex_state = 40, .external_lex_state = 5}, + [1119] = {.lex_state = 41, .external_lex_state = 2}, + [1120] = {.lex_state = 409, .external_lex_state = 5}, + [1121] = {.lex_state = 409, .external_lex_state = 5}, + [1122] = {.lex_state = 41, .external_lex_state = 2}, + [1123] = {.lex_state = 41, .external_lex_state = 2}, [1124] = {.lex_state = 40, .external_lex_state = 5}, - [1125] = {.lex_state = 409, .external_lex_state = 2}, - [1126] = {.lex_state = 409, .external_lex_state = 5}, + [1125] = {.lex_state = 40, .external_lex_state = 5}, + [1126] = {.lex_state = 41, .external_lex_state = 2}, [1127] = {.lex_state = 411, .external_lex_state = 2}, [1128] = {.lex_state = 411, .external_lex_state = 2}, - [1129] = {.lex_state = 411, .external_lex_state = 2}, - [1130] = {.lex_state = 409, .external_lex_state = 5}, - [1131] = {.lex_state = 40, .external_lex_state = 5}, - [1132] = {.lex_state = 409, .external_lex_state = 5}, - [1133] = {.lex_state = 40, .external_lex_state = 5}, - [1134] = {.lex_state = 409, .external_lex_state = 5}, - [1135] = {.lex_state = 409, .external_lex_state = 5}, + [1129] = {.lex_state = 41, .external_lex_state = 2}, + [1130] = {.lex_state = 41, .external_lex_state = 2}, + [1131] = {.lex_state = 409, .external_lex_state = 5}, + [1132] = {.lex_state = 40, .external_lex_state = 5}, + [1133] = {.lex_state = 41, .external_lex_state = 2}, + [1134] = {.lex_state = 41, .external_lex_state = 2}, + [1135] = {.lex_state = 41, .external_lex_state = 2}, [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 = 41, .external_lex_state = 2}, - [1141] = {.lex_state = 409, .external_lex_state = 5}, - [1142] = {.lex_state = 41, .external_lex_state = 2}, - [1143] = {.lex_state = 41, .external_lex_state = 2}, + [1141] = {.lex_state = 41, .external_lex_state = 2}, + [1142] = {.lex_state = 44, .external_lex_state = 2}, + [1143] = {.lex_state = 40, .external_lex_state = 5}, [1144] = {.lex_state = 41, .external_lex_state = 2}, - [1145] = {.lex_state = 41, .external_lex_state = 2}, - [1146] = {.lex_state = 409, .external_lex_state = 5}, + [1145] = {.lex_state = 410, .external_lex_state = 2}, + [1146] = {.lex_state = 40, .external_lex_state = 2}, [1147] = {.lex_state = 41, .external_lex_state = 2}, - [1148] = {.lex_state = 40, .external_lex_state = 5}, + [1148] = {.lex_state = 41, .external_lex_state = 2}, [1149] = {.lex_state = 40, .external_lex_state = 5}, - [1150] = {.lex_state = 409, .external_lex_state = 5}, - [1151] = {.lex_state = 409, .external_lex_state = 5}, + [1150] = {.lex_state = 41, .external_lex_state = 2}, + [1151] = {.lex_state = 41, .external_lex_state = 2}, [1152] = {.lex_state = 40, .external_lex_state = 5}, - [1153] = {.lex_state = 41, .external_lex_state = 2}, + [1153] = {.lex_state = 40, .external_lex_state = 2}, [1154] = {.lex_state = 41, .external_lex_state = 2}, [1155] = {.lex_state = 41, .external_lex_state = 2}, - [1156] = {.lex_state = 41, .external_lex_state = 2}, - [1157] = {.lex_state = 409, .external_lex_state = 5}, - [1158] = {.lex_state = 41, .external_lex_state = 2}, - [1159] = {.lex_state = 409, .external_lex_state = 5}, - [1160] = {.lex_state = 41, .external_lex_state = 2}, - [1161] = {.lex_state = 410, .external_lex_state = 2}, - [1162] = {.lex_state = 41, .external_lex_state = 2}, - [1163] = {.lex_state = 41, .external_lex_state = 2}, - [1164] = {.lex_state = 41, .external_lex_state = 2}, - [1165] = {.lex_state = 41, .external_lex_state = 2}, - [1166] = {.lex_state = 41, .external_lex_state = 2}, - [1167] = {.lex_state = 41, .external_lex_state = 2}, - [1168] = {.lex_state = 409, .external_lex_state = 2}, - [1169] = {.lex_state = 41, .external_lex_state = 2}, - [1170] = {.lex_state = 41, .external_lex_state = 2}, - [1171] = {.lex_state = 41, .external_lex_state = 2}, - [1172] = {.lex_state = 41, .external_lex_state = 2}, - [1173] = {.lex_state = 41, .external_lex_state = 2}, - [1174] = {.lex_state = 41, .external_lex_state = 2}, - [1175] = {.lex_state = 41, .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 = 41, .external_lex_state = 2}, - [1181] = {.lex_state = 41, .external_lex_state = 2}, - [1182] = {.lex_state = 409, .external_lex_state = 5}, - [1183] = {.lex_state = 412, .external_lex_state = 2}, - [1184] = {.lex_state = 41, .external_lex_state = 2}, - [1185] = {.lex_state = 41, .external_lex_state = 2}, - [1186] = {.lex_state = 409, .external_lex_state = 5}, - [1187] = {.lex_state = 41, .external_lex_state = 2}, - [1188] = {.lex_state = 41, .external_lex_state = 2}, - [1189] = {.lex_state = 412, .external_lex_state = 2}, - [1190] = {.lex_state = 40, .external_lex_state = 5}, - [1191] = {.lex_state = 408, .external_lex_state = 2}, - [1192] = {.lex_state = 41, .external_lex_state = 2}, - [1193] = {.lex_state = 41, .external_lex_state = 2}, - [1194] = {.lex_state = 408, .external_lex_state = 2}, - [1195] = {.lex_state = 40, .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 = 409, .external_lex_state = 2}, + [1160] = {.lex_state = 40, .external_lex_state = 2}, + [1161] = {.lex_state = 408, .external_lex_state = 2}, + [1162] = {.lex_state = 409, .external_lex_state = 2}, + [1163] = {.lex_state = 409, .external_lex_state = 2}, + [1164] = {.lex_state = 409, .external_lex_state = 2}, + [1165] = {.lex_state = 40, .external_lex_state = 2}, + [1166] = {.lex_state = 408, .external_lex_state = 5}, + [1167] = {.lex_state = 40, .external_lex_state = 2}, + [1168] = {.lex_state = 408, .external_lex_state = 5}, + [1169] = {.lex_state = 40, .external_lex_state = 2}, + [1170] = {.lex_state = 40, .external_lex_state = 2}, + [1171] = {.lex_state = 408, .external_lex_state = 5}, + [1172] = {.lex_state = 40, .external_lex_state = 2}, + [1173] = {.lex_state = 408, .external_lex_state = 5}, + [1174] = {.lex_state = 409, .external_lex_state = 2}, + [1175] = {.lex_state = 409, .external_lex_state = 2}, + [1176] = {.lex_state = 409, .external_lex_state = 2}, + [1177] = {.lex_state = 410, .external_lex_state = 2}, + [1178] = {.lex_state = 409, .external_lex_state = 2}, + [1179] = {.lex_state = 409, .external_lex_state = 2}, + [1180] = {.lex_state = 40, .external_lex_state = 2}, + [1181] = {.lex_state = 40, .external_lex_state = 2}, + [1182] = {.lex_state = 408, .external_lex_state = 5}, + [1183] = {.lex_state = 40, .external_lex_state = 2}, + [1184] = {.lex_state = 409, .external_lex_state = 2}, + [1185] = {.lex_state = 408, .external_lex_state = 5}, + [1186] = {.lex_state = 408, .external_lex_state = 5}, + [1187] = {.lex_state = 40, .external_lex_state = 2}, + [1188] = {.lex_state = 409, .external_lex_state = 2}, + [1189] = {.lex_state = 409, .external_lex_state = 2}, + [1190] = {.lex_state = 40, .external_lex_state = 2}, + [1191] = {.lex_state = 409, .external_lex_state = 2}, + [1192] = {.lex_state = 40, .external_lex_state = 2}, + [1193] = {.lex_state = 40, .external_lex_state = 2}, + [1194] = {.lex_state = 409, .external_lex_state = 2}, + [1195] = {.lex_state = 408, .external_lex_state = 5}, [1196] = {.lex_state = 40, .external_lex_state = 2}, - [1197] = {.lex_state = 409, .external_lex_state = 2}, - [1198] = {.lex_state = 40, .external_lex_state = 2}, + [1197] = {.lex_state = 40, .external_lex_state = 2}, + [1198] = {.lex_state = 409, .external_lex_state = 2}, [1199] = {.lex_state = 40, .external_lex_state = 2}, - [1200] = {.lex_state = 40, .external_lex_state = 2}, - [1201] = {.lex_state = 40, .external_lex_state = 2}, - [1202] = {.lex_state = 408, .external_lex_state = 5}, - [1203] = {.lex_state = 408, .external_lex_state = 5}, - [1204] = {.lex_state = 40, .external_lex_state = 2}, - [1205] = {.lex_state = 40, .external_lex_state = 2}, - [1206] = {.lex_state = 40, .external_lex_state = 2}, - [1207] = {.lex_state = 408, .external_lex_state = 5}, + [1200] = {.lex_state = 409, .external_lex_state = 2}, + [1201] = {.lex_state = 409, .external_lex_state = 2}, + [1202] = {.lex_state = 409, .external_lex_state = 2}, + [1203] = {.lex_state = 409, .external_lex_state = 2}, + [1204] = {.lex_state = 408, .external_lex_state = 5}, + [1205] = {.lex_state = 410, .external_lex_state = 2}, + [1206] = {.lex_state = 409, .external_lex_state = 2}, + [1207] = {.lex_state = 40, .external_lex_state = 2}, [1208] = {.lex_state = 40, .external_lex_state = 2}, - [1209] = {.lex_state = 408, .external_lex_state = 5}, - [1210] = {.lex_state = 40, .external_lex_state = 2}, - [1211] = {.lex_state = 410, .external_lex_state = 2}, + [1209] = {.lex_state = 409, .external_lex_state = 2}, + [1210] = {.lex_state = 409, .external_lex_state = 2}, + [1211] = {.lex_state = 40, .external_lex_state = 2}, [1212] = {.lex_state = 40, .external_lex_state = 2}, [1213] = {.lex_state = 40, .external_lex_state = 2}, [1214] = {.lex_state = 40, .external_lex_state = 2}, - [1215] = {.lex_state = 408, .external_lex_state = 2}, + [1215] = {.lex_state = 409, .external_lex_state = 2}, [1216] = {.lex_state = 408, .external_lex_state = 5}, - [1217] = {.lex_state = 40, .external_lex_state = 2}, - [1218] = {.lex_state = 409, .external_lex_state = 2}, + [1217] = {.lex_state = 409, .external_lex_state = 2}, + [1218] = {.lex_state = 40, .external_lex_state = 2}, [1219] = {.lex_state = 40, .external_lex_state = 2}, - [1220] = {.lex_state = 409, .external_lex_state = 2}, - [1221] = {.lex_state = 409, .external_lex_state = 2}, + [1220] = {.lex_state = 40, .external_lex_state = 2}, + [1221] = {.lex_state = 40, .external_lex_state = 2}, [1222] = {.lex_state = 40, .external_lex_state = 2}, [1223] = {.lex_state = 408, .external_lex_state = 5}, [1224] = {.lex_state = 409, .external_lex_state = 2}, [1225] = {.lex_state = 409, .external_lex_state = 2}, - [1226] = {.lex_state = 40, .external_lex_state = 2}, + [1226] = {.lex_state = 409, .external_lex_state = 2}, [1227] = {.lex_state = 409, .external_lex_state = 2}, [1228] = {.lex_state = 40, .external_lex_state = 2}, [1229] = {.lex_state = 40, .external_lex_state = 2}, [1230] = {.lex_state = 409, .external_lex_state = 2}, - [1231] = {.lex_state = 409, .external_lex_state = 2}, - [1232] = {.lex_state = 409, .external_lex_state = 2}, - [1233] = {.lex_state = 40, .external_lex_state = 2}, - [1234] = {.lex_state = 40, .external_lex_state = 2}, + [1231] = {.lex_state = 40, .external_lex_state = 2}, + [1232] = {.lex_state = 40, .external_lex_state = 2}, + [1233] = {.lex_state = 409, .external_lex_state = 2}, + [1234] = {.lex_state = 409, .external_lex_state = 2}, [1235] = {.lex_state = 40, .external_lex_state = 2}, [1236] = {.lex_state = 40, .external_lex_state = 2}, [1237] = {.lex_state = 409, .external_lex_state = 2}, - [1238] = {.lex_state = 409, .external_lex_state = 2}, - [1239] = {.lex_state = 40, .external_lex_state = 2}, - [1240] = {.lex_state = 410, .external_lex_state = 2}, - [1241] = {.lex_state = 409, .external_lex_state = 2}, - [1242] = {.lex_state = 40, .external_lex_state = 2}, + [1238] = {.lex_state = 40, .external_lex_state = 2}, + [1239] = {.lex_state = 410, .external_lex_state = 2}, + [1240] = {.lex_state = 40, .external_lex_state = 2}, + [1241] = {.lex_state = 40, .external_lex_state = 2}, + [1242] = {.lex_state = 409, .external_lex_state = 2}, [1243] = {.lex_state = 40, .external_lex_state = 2}, [1244] = {.lex_state = 40, .external_lex_state = 2}, [1245] = {.lex_state = 40, .external_lex_state = 2}, [1246] = {.lex_state = 40, .external_lex_state = 2}, - [1247] = {.lex_state = 40, .external_lex_state = 2}, - [1248] = {.lex_state = 409, .external_lex_state = 2}, + [1247] = {.lex_state = 409, .external_lex_state = 2}, + [1248] = {.lex_state = 40, .external_lex_state = 2}, [1249] = {.lex_state = 40, .external_lex_state = 2}, [1250] = {.lex_state = 40, .external_lex_state = 2}, - [1251] = {.lex_state = 409, .external_lex_state = 2}, - [1252] = {.lex_state = 40, .external_lex_state = 2}, + [1251] = {.lex_state = 40, .external_lex_state = 2}, + [1252] = {.lex_state = 410, .external_lex_state = 2}, [1253] = {.lex_state = 409, .external_lex_state = 2}, [1254] = {.lex_state = 409, .external_lex_state = 2}, [1255] = {.lex_state = 409, .external_lex_state = 2}, [1256] = {.lex_state = 40, .external_lex_state = 2}, [1257] = {.lex_state = 409, .external_lex_state = 2}, - [1258] = {.lex_state = 409, .external_lex_state = 2}, - [1259] = {.lex_state = 409, .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 = 40, .external_lex_state = 2}, - [1263] = {.lex_state = 409, .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 = 40, .external_lex_state = 2}, - [1267] = {.lex_state = 409, .external_lex_state = 2}, + [1267] = {.lex_state = 40, .external_lex_state = 2}, [1268] = {.lex_state = 409, .external_lex_state = 2}, [1269] = {.lex_state = 40, .external_lex_state = 2}, - [1270] = {.lex_state = 40, .external_lex_state = 2}, + [1270] = {.lex_state = 409, .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}, + [1272] = {.lex_state = 409, .external_lex_state = 2}, + [1273] = {.lex_state = 409, .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 = 409, .external_lex_state = 2}, + [1275] = {.lex_state = 409, .external_lex_state = 2}, + [1276] = {.lex_state = 408, .external_lex_state = 5}, + [1277] = {.lex_state = 409, .external_lex_state = 2}, + [1278] = {.lex_state = 40, .external_lex_state = 2}, [1279] = {.lex_state = 40, .external_lex_state = 2}, [1280] = {.lex_state = 40, .external_lex_state = 2}, [1281] = {.lex_state = 40, .external_lex_state = 2}, [1282] = {.lex_state = 40, .external_lex_state = 2}, - [1283] = {.lex_state = 40, .external_lex_state = 2}, + [1283] = {.lex_state = 409, .external_lex_state = 2}, [1284] = {.lex_state = 40, .external_lex_state = 2}, - [1285] = {.lex_state = 40, .external_lex_state = 2}, - [1286] = {.lex_state = 40, .external_lex_state = 2}, - [1287] = {.lex_state = 409, .external_lex_state = 2}, - [1288] = {.lex_state = 408, .external_lex_state = 5}, - [1289] = {.lex_state = 408, .external_lex_state = 5}, + [1285] = {.lex_state = 409, .external_lex_state = 2}, + [1286] = {.lex_state = 409, .external_lex_state = 2}, + [1287] = {.lex_state = 40, .external_lex_state = 2}, + [1288] = {.lex_state = 40, .external_lex_state = 2}, + [1289] = {.lex_state = 409, .external_lex_state = 2}, [1290] = {.lex_state = 409, .external_lex_state = 2}, - [1291] = {.lex_state = 409, .external_lex_state = 2}, - [1292] = {.lex_state = 409, .external_lex_state = 2}, - [1293] = {.lex_state = 409, .external_lex_state = 2}, + [1291] = {.lex_state = 40, .external_lex_state = 2}, + [1292] = {.lex_state = 40, .external_lex_state = 2}, + [1293] = {.lex_state = 40, .external_lex_state = 2}, [1294] = {.lex_state = 409, .external_lex_state = 2}, [1295] = {.lex_state = 409, .external_lex_state = 2}, - [1296] = {.lex_state = 409, .external_lex_state = 2}, - [1297] = {.lex_state = 409, .external_lex_state = 2}, - [1298] = {.lex_state = 40, .external_lex_state = 2}, - [1299] = {.lex_state = 409, .external_lex_state = 2}, - [1300] = {.lex_state = 409, .external_lex_state = 2}, - [1301] = {.lex_state = 40, .external_lex_state = 2}, - [1302] = {.lex_state = 40, .external_lex_state = 2}, - [1303] = {.lex_state = 409, .external_lex_state = 2}, + [1296] = {.lex_state = 40, .external_lex_state = 2}, + [1297] = {.lex_state = 40, .external_lex_state = 2}, + [1298] = {.lex_state = 409, .external_lex_state = 2}, + [1299] = {.lex_state = 40, .external_lex_state = 2}, + [1300] = {.lex_state = 40, .external_lex_state = 2}, + [1301] = {.lex_state = 409, .external_lex_state = 2}, + [1302] = {.lex_state = 409, .external_lex_state = 2}, + [1303] = {.lex_state = 40, .external_lex_state = 2}, [1304] = {.lex_state = 409, .external_lex_state = 2}, - [1305] = {.lex_state = 409, .external_lex_state = 2}, - [1306] = {.lex_state = 40, .external_lex_state = 2}, - [1307] = {.lex_state = 40, .external_lex_state = 2}, + [1305] = {.lex_state = 40, .external_lex_state = 2}, + [1306] = {.lex_state = 409, .external_lex_state = 2}, + [1307] = {.lex_state = 409, .external_lex_state = 2}, [1308] = {.lex_state = 408, .external_lex_state = 5}, - [1309] = {.lex_state = 40, .external_lex_state = 2}, - [1310] = {.lex_state = 408, .external_lex_state = 5}, - [1311] = {.lex_state = 409, .external_lex_state = 2}, - [1312] = {.lex_state = 409, .external_lex_state = 2}, - [1313] = {.lex_state = 409, .external_lex_state = 2}, - [1314] = {.lex_state = 40, .external_lex_state = 2}, - [1315] = {.lex_state = 40, .external_lex_state = 2}, - [1316] = {.lex_state = 409, .external_lex_state = 2}, - [1317] = {.lex_state = 409, .external_lex_state = 2}, - [1318] = {.lex_state = 409, .external_lex_state = 2}, - [1319] = {.lex_state = 409, .external_lex_state = 2}, + [1309] = {.lex_state = 409, .external_lex_state = 2}, + [1310] = {.lex_state = 409, .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 = 409, .external_lex_state = 2}, + [1315] = {.lex_state = 409, .external_lex_state = 2}, + [1316] = {.lex_state = 40, .external_lex_state = 2}, + [1317] = {.lex_state = 40, .external_lex_state = 2}, + [1318] = {.lex_state = 40, .external_lex_state = 2}, + [1319] = {.lex_state = 408, .external_lex_state = 5}, [1320] = {.lex_state = 40, .external_lex_state = 2}, [1321] = {.lex_state = 40, .external_lex_state = 2}, [1322] = {.lex_state = 409, .external_lex_state = 2}, - [1323] = {.lex_state = 409, .external_lex_state = 2}, - [1324] = {.lex_state = 409, .external_lex_state = 2}, - [1325] = {.lex_state = 409, .external_lex_state = 2}, - [1326] = {.lex_state = 409, .external_lex_state = 2}, - [1327] = {.lex_state = 409, .external_lex_state = 2}, + [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 = 40, .external_lex_state = 2}, [1328] = {.lex_state = 409, .external_lex_state = 2}, - [1329] = {.lex_state = 40, .external_lex_state = 2}, - [1330] = {.lex_state = 409, .external_lex_state = 2}, + [1329] = {.lex_state = 409, .external_lex_state = 2}, + [1330] = {.lex_state = 410, .external_lex_state = 2}, [1331] = {.lex_state = 409, .external_lex_state = 2}, [1332] = {.lex_state = 409, .external_lex_state = 2}, - [1333] = {.lex_state = 409, .external_lex_state = 2}, - [1334] = {.lex_state = 409, .external_lex_state = 2}, - [1335] = {.lex_state = 409, .external_lex_state = 2}, - [1336] = {.lex_state = 409, .external_lex_state = 2}, - [1337] = {.lex_state = 409, .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 = 409, .external_lex_state = 2}, - [1339] = {.lex_state = 40, .external_lex_state = 2}, + [1339] = {.lex_state = 408, .external_lex_state = 5}, [1340] = {.lex_state = 409, .external_lex_state = 2}, [1341] = {.lex_state = 40, .external_lex_state = 2}, - [1342] = {.lex_state = 409, .external_lex_state = 2}, - [1343] = {.lex_state = 409, .external_lex_state = 2}, - [1344] = {.lex_state = 40, .external_lex_state = 2}, - [1345] = {.lex_state = 40, .external_lex_state = 2}, + [1342] = {.lex_state = 40, .external_lex_state = 2}, + [1343] = {.lex_state = 40, .external_lex_state = 2}, + [1344] = {.lex_state = 409, .external_lex_state = 2}, + [1345] = {.lex_state = 409, .external_lex_state = 2}, [1346] = {.lex_state = 40, .external_lex_state = 2}, - [1347] = {.lex_state = 409, .external_lex_state = 2}, - [1348] = {.lex_state = 409, .external_lex_state = 2}, - [1349] = {.lex_state = 410, .external_lex_state = 2}, + [1347] = {.lex_state = 40, .external_lex_state = 2}, + [1348] = {.lex_state = 40, .external_lex_state = 2}, + [1349] = {.lex_state = 409, .external_lex_state = 2}, [1350] = {.lex_state = 40, .external_lex_state = 2}, - [1351] = {.lex_state = 408, .external_lex_state = 5}, - [1352] = {.lex_state = 410, .external_lex_state = 2}, - [1353] = {.lex_state = 410, .external_lex_state = 2}, + [1351] = {.lex_state = 409, .external_lex_state = 2}, + [1352] = {.lex_state = 409, .external_lex_state = 2}, + [1353] = {.lex_state = 409, .external_lex_state = 2}, [1354] = {.lex_state = 409, .external_lex_state = 2}, - [1355] = {.lex_state = 409, .external_lex_state = 2}, + [1355] = {.lex_state = 408, .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 = 408, .external_lex_state = 2}, - [1360] = {.lex_state = 408, .external_lex_state = 2}, - [1361] = {.lex_state = 409, .external_lex_state = 2}, + [1357] = {.lex_state = 409, .external_lex_state = 2}, + [1358] = {.lex_state = 409, .external_lex_state = 2}, + [1359] = {.lex_state = 40, .external_lex_state = 2}, + [1360] = {.lex_state = 409, .external_lex_state = 2}, + [1361] = {.lex_state = 408, .external_lex_state = 5}, [1362] = {.lex_state = 409, .external_lex_state = 2}, - [1363] = {.lex_state = 409, .external_lex_state = 2}, + [1363] = {.lex_state = 408, .external_lex_state = 2}, [1364] = {.lex_state = 409, .external_lex_state = 2}, [1365] = {.lex_state = 409, .external_lex_state = 2}, [1366] = {.lex_state = 409, .external_lex_state = 2}, [1367] = {.lex_state = 409, .external_lex_state = 2}, [1368] = {.lex_state = 409, .external_lex_state = 2}, - [1369] = {.lex_state = 409, .external_lex_state = 2}, - [1370] = {.lex_state = 409, .external_lex_state = 2}, - [1371] = {.lex_state = 409, .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 = 409, .external_lex_state = 2}, - [1373] = {.lex_state = 409, .external_lex_state = 2}, - [1374] = {.lex_state = 409, .external_lex_state = 2}, - [1375] = {.lex_state = 409, .external_lex_state = 2}, - [1376] = {.lex_state = 409, .external_lex_state = 2}, - [1377] = {.lex_state = 409, .external_lex_state = 2}, - [1378] = {.lex_state = 409, .external_lex_state = 2}, + [1373] = {.lex_state = 40, .external_lex_state = 2}, + [1374] = {.lex_state = 408, .external_lex_state = 5}, + [1375] = {.lex_state = 40, .external_lex_state = 2}, + [1376] = {.lex_state = 408, .external_lex_state = 5}, + [1377] = {.lex_state = 40, .external_lex_state = 2}, + [1378] = {.lex_state = 408, .external_lex_state = 5}, [1379] = {.lex_state = 40, .external_lex_state = 2}, - [1380] = {.lex_state = 40, .external_lex_state = 2}, - [1381] = {.lex_state = 409, .external_lex_state = 2}, - [1382] = {.lex_state = 40, .external_lex_state = 2}, + [1380] = {.lex_state = 408, .external_lex_state = 5}, + [1381] = {.lex_state = 40, .external_lex_state = 2}, + [1382] = {.lex_state = 409, .external_lex_state = 2}, [1383] = {.lex_state = 409, .external_lex_state = 2}, [1384] = {.lex_state = 40, .external_lex_state = 2}, - [1385] = {.lex_state = 40, .external_lex_state = 2}, - [1386] = {.lex_state = 409, .external_lex_state = 2}, - [1387] = {.lex_state = 40, .external_lex_state = 2}, + [1385] = {.lex_state = 409, .external_lex_state = 2}, + [1386] = {.lex_state = 408, .external_lex_state = 5}, + [1387] = {.lex_state = 408, .external_lex_state = 5}, [1388] = {.lex_state = 409, .external_lex_state = 2}, - [1389] = {.lex_state = 408, .external_lex_state = 5}, - [1390] = {.lex_state = 40, .external_lex_state = 2}, + [1389] = {.lex_state = 409, .external_lex_state = 2}, + [1390] = {.lex_state = 409, .external_lex_state = 2}, [1391] = {.lex_state = 409, .external_lex_state = 2}, [1392] = {.lex_state = 409, .external_lex_state = 2}, - [1393] = {.lex_state = 409, .external_lex_state = 2}, - [1394] = {.lex_state = 409, .external_lex_state = 2}, - [1395] = {.lex_state = 409, .external_lex_state = 2}, + [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 = 409, .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}, + [1398] = {.lex_state = 409, .external_lex_state = 2}, + [1399] = {.lex_state = 409, .external_lex_state = 2}, [1400] = {.lex_state = 409, .external_lex_state = 2}, [1401] = {.lex_state = 409, .external_lex_state = 2}, [1402] = {.lex_state = 409, .external_lex_state = 2}, - [1403] = {.lex_state = 409, .external_lex_state = 2}, - [1404] = {.lex_state = 40, .external_lex_state = 2}, - [1405] = {.lex_state = 409, .external_lex_state = 2}, + [1403] = {.lex_state = 40, .external_lex_state = 2}, + [1404] = {.lex_state = 408, .external_lex_state = 5}, + [1405] = {.lex_state = 40, .external_lex_state = 2}, [1406] = {.lex_state = 409, .external_lex_state = 2}, [1407] = {.lex_state = 409, .external_lex_state = 2}, [1408] = {.lex_state = 409, .external_lex_state = 2}, [1409] = {.lex_state = 409, .external_lex_state = 2}, - [1410] = {.lex_state = 40, .external_lex_state = 2}, - [1411] = {.lex_state = 408, .external_lex_state = 5}, - [1412] = {.lex_state = 40, .external_lex_state = 2}, - [1413] = {.lex_state = 40, .external_lex_state = 2}, + [1410] = {.lex_state = 409, .external_lex_state = 2}, + [1411] = {.lex_state = 409, .external_lex_state = 2}, + [1412] = {.lex_state = 409, .external_lex_state = 2}, + [1413] = {.lex_state = 409, .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 = 408, .external_lex_state = 5}, - [1418] = {.lex_state = 40, .external_lex_state = 2}, + [1415] = {.lex_state = 409, .external_lex_state = 2}, + [1416] = {.lex_state = 409, .external_lex_state = 2}, + [1417] = {.lex_state = 409, .external_lex_state = 2}, + [1418] = {.lex_state = 409, .external_lex_state = 2}, [1419] = {.lex_state = 40, .external_lex_state = 2}, - [1420] = {.lex_state = 40, .external_lex_state = 2}, - [1421] = {.lex_state = 40, .external_lex_state = 2}, - [1422] = {.lex_state = 409, .external_lex_state = 2}, - [1423] = {.lex_state = 409, .external_lex_state = 2}, + [1420] = {.lex_state = 409, .external_lex_state = 2}, + [1421] = {.lex_state = 409, .external_lex_state = 2}, + [1422] = {.lex_state = 40, .external_lex_state = 2}, + [1423] = {.lex_state = 40, .external_lex_state = 2}, [1424] = {.lex_state = 409, .external_lex_state = 2}, - [1425] = {.lex_state = 409, .external_lex_state = 2}, - [1426] = {.lex_state = 409, .external_lex_state = 2}, - [1427] = {.lex_state = 40, .external_lex_state = 2}, + [1425] = {.lex_state = 40, .external_lex_state = 2}, + [1426] = {.lex_state = 40, .external_lex_state = 2}, + [1427] = {.lex_state = 409, .external_lex_state = 2}, [1428] = {.lex_state = 409, .external_lex_state = 2}, [1429] = {.lex_state = 409, .external_lex_state = 2}, - [1430] = {.lex_state = 409, .external_lex_state = 2}, + [1430] = {.lex_state = 40, .external_lex_state = 2}, [1431] = {.lex_state = 40, .external_lex_state = 2}, - [1432] = {.lex_state = 40, .external_lex_state = 2}, - [1433] = {.lex_state = 408, .external_lex_state = 5}, + [1432] = {.lex_state = 409, .external_lex_state = 2}, + [1433] = {.lex_state = 40, .external_lex_state = 2}, [1434] = {.lex_state = 409, .external_lex_state = 2}, - [1435] = {.lex_state = 40, .external_lex_state = 2}, + [1435] = {.lex_state = 409, .external_lex_state = 2}, [1436] = {.lex_state = 40, .external_lex_state = 2}, - [1437] = {.lex_state = 40, .external_lex_state = 2}, + [1437] = {.lex_state = 409, .external_lex_state = 2}, [1438] = {.lex_state = 409, .external_lex_state = 2}, - [1439] = {.lex_state = 40, .external_lex_state = 2}, - [1440] = {.lex_state = 40, .external_lex_state = 2}, + [1439] = {.lex_state = 409, .external_lex_state = 2}, + [1440] = {.lex_state = 409, .external_lex_state = 2}, [1441] = {.lex_state = 40, .external_lex_state = 2}, - [1442] = {.lex_state = 40, .external_lex_state = 2}, - [1443] = {.lex_state = 40, .external_lex_state = 2}, - [1444] = {.lex_state = 40, .external_lex_state = 2}, - [1445] = {.lex_state = 409, .external_lex_state = 2}, - [1446] = {.lex_state = 40, .external_lex_state = 2}, - [1447] = {.lex_state = 40, .external_lex_state = 2}, - [1448] = {.lex_state = 409, .external_lex_state = 2}, - [1449] = {.lex_state = 409, .external_lex_state = 2}, - [1450] = {.lex_state = 409, .external_lex_state = 2}, - [1451] = {.lex_state = 409, .external_lex_state = 2}, - [1452] = {.lex_state = 409, .external_lex_state = 2}, - [1453] = {.lex_state = 409, .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 = 40, .external_lex_state = 2}, - [1458] = {.lex_state = 40, .external_lex_state = 2}, - [1459] = {.lex_state = 40, .external_lex_state = 2}, - [1460] = {.lex_state = 40, .external_lex_state = 2}, - [1461] = {.lex_state = 40, .external_lex_state = 2}, - [1462] = {.lex_state = 40, .external_lex_state = 2}, - [1463] = {.lex_state = 40, .external_lex_state = 2}, - [1464] = {.lex_state = 40, .external_lex_state = 2}, - [1465] = {.lex_state = 409, .external_lex_state = 2}, - [1466] = {.lex_state = 409, .external_lex_state = 2}, - [1467] = {.lex_state = 40, .external_lex_state = 2}, - [1468] = {.lex_state = 409, .external_lex_state = 2}, - [1469] = {.lex_state = 40, .external_lex_state = 2}, - [1470] = {.lex_state = 40, .external_lex_state = 2}, - [1471] = {.lex_state = 408, .external_lex_state = 5}, - [1472] = {.lex_state = 40, .external_lex_state = 2}, - [1473] = {.lex_state = 409, .external_lex_state = 2}, - [1474] = {.lex_state = 40, .external_lex_state = 2}, - [1475] = {.lex_state = 409, .external_lex_state = 2}, - [1476] = {.lex_state = 40, .external_lex_state = 2}, - [1477] = {.lex_state = 40, .external_lex_state = 2}, - [1478] = {.lex_state = 40, .external_lex_state = 2}, - [1479] = {.lex_state = 409, .external_lex_state = 2}, - [1480] = {.lex_state = 409, .external_lex_state = 2}, - [1481] = {.lex_state = 409, .external_lex_state = 2}, - [1482] = {.lex_state = 409, .external_lex_state = 2}, - [1483] = {.lex_state = 409, .external_lex_state = 2}, - [1484] = {.lex_state = 409, .external_lex_state = 2}, - [1485] = {.lex_state = 409, .external_lex_state = 2}, - [1486] = {.lex_state = 409, .external_lex_state = 2}, - [1487] = {.lex_state = 409, .external_lex_state = 2}, - [1488] = {.lex_state = 409, .external_lex_state = 2}, - [1489] = {.lex_state = 409, .external_lex_state = 2}, - [1490] = {.lex_state = 409, .external_lex_state = 2}, - [1491] = {.lex_state = 409, .external_lex_state = 2}, - [1492] = {.lex_state = 409, .external_lex_state = 2}, - [1493] = {.lex_state = 409, .external_lex_state = 2}, - [1494] = {.lex_state = 409, .external_lex_state = 2}, - [1495] = {.lex_state = 409, .external_lex_state = 2}, - [1496] = {.lex_state = 409, .external_lex_state = 2}, - [1497] = {.lex_state = 409, .external_lex_state = 2}, - [1498] = {.lex_state = 408, .external_lex_state = 5}, - [1499] = {.lex_state = 409, .external_lex_state = 2}, - [1500] = {.lex_state = 409, .external_lex_state = 2}, - [1501] = {.lex_state = 409, .external_lex_state = 2}, - [1502] = {.lex_state = 40, .external_lex_state = 2}, - [1503] = {.lex_state = 40, .external_lex_state = 2}, - [1504] = {.lex_state = 40, .external_lex_state = 2}, - [1505] = {.lex_state = 40, .external_lex_state = 2}, - [1506] = {.lex_state = 409, .external_lex_state = 2}, - [1507] = {.lex_state = 40, .external_lex_state = 2}, - [1508] = {.lex_state = 40, .external_lex_state = 2}, - [1509] = {.lex_state = 409, .external_lex_state = 2}, - [1510] = {.lex_state = 409, .external_lex_state = 2}, - [1511] = {.lex_state = 409, .external_lex_state = 2}, - [1512] = {.lex_state = 40, .external_lex_state = 2}, - [1513] = {.lex_state = 40, .external_lex_state = 2}, - [1514] = {.lex_state = 40, .external_lex_state = 2}, - [1515] = {.lex_state = 40, .external_lex_state = 2}, - [1516] = {.lex_state = 409, .external_lex_state = 2}, - [1517] = {.lex_state = 40, .external_lex_state = 2}, - [1518] = {.lex_state = 40, .external_lex_state = 2}, - [1519] = {.lex_state = 40, .external_lex_state = 2}, - [1520] = {.lex_state = 40, .external_lex_state = 2}, - [1521] = {.lex_state = 40, .external_lex_state = 2}, - [1522] = {.lex_state = 40, .external_lex_state = 2}, - [1523] = {.lex_state = 40, .external_lex_state = 2}, - [1524] = {.lex_state = 40, .external_lex_state = 2}, - [1525] = {.lex_state = 40, .external_lex_state = 2}, - [1526] = {.lex_state = 40, .external_lex_state = 2}, - [1527] = {.lex_state = 409, .external_lex_state = 2}, - [1528] = {.lex_state = 409, .external_lex_state = 2}, - [1529] = {.lex_state = 409, .external_lex_state = 2}, - [1530] = {.lex_state = 409, .external_lex_state = 2}, - [1531] = {.lex_state = 40, .external_lex_state = 2}, - [1532] = {.lex_state = 408, .external_lex_state = 5}, - [1533] = {.lex_state = 40, .external_lex_state = 2}, - [1534] = {.lex_state = 40, .external_lex_state = 2}, - [1535] = {.lex_state = 409, .external_lex_state = 2}, - [1536] = {.lex_state = 40, .external_lex_state = 2}, - [1537] = {.lex_state = 40, .external_lex_state = 2}, - [1538] = {.lex_state = 409, .external_lex_state = 2}, - [1539] = {.lex_state = 40, .external_lex_state = 2}, - [1540] = {.lex_state = 408, .external_lex_state = 5}, - [1541] = {.lex_state = 409, .external_lex_state = 2}, - [1542] = {.lex_state = 408, .external_lex_state = 5}, - [1543] = {.lex_state = 408, .external_lex_state = 5}, - [1544] = {.lex_state = 408, .external_lex_state = 5}, - [1545] = {.lex_state = 40, .external_lex_state = 2}, - [1546] = {.lex_state = 408, .external_lex_state = 5}, - [1547] = {.lex_state = 409, .external_lex_state = 2}, - [1548] = {.lex_state = 40, .external_lex_state = 2}, - [1549] = {.lex_state = 40, .external_lex_state = 2}, - [1550] = {.lex_state = 40, .external_lex_state = 2}, - [1551] = {.lex_state = 409, .external_lex_state = 2}, - [1552] = {.lex_state = 40, .external_lex_state = 2}, - [1553] = {.lex_state = 40, .external_lex_state = 2}, - [1554] = {.lex_state = 40, .external_lex_state = 2}, - [1555] = {.lex_state = 40, .external_lex_state = 2}, + [1442] = {.lex_state = 409, .external_lex_state = 2}, + [1443] = {.lex_state = 409, .external_lex_state = 2}, + [1444] = {.lex_state = 409, .external_lex_state = 2}, + [1445] = {.lex_state = 408, .external_lex_state = 2}, + [1446] = {.lex_state = 408, .external_lex_state = 2}, + [1447] = {.lex_state = 408, .external_lex_state = 2}, + [1448] = {.lex_state = 408, .external_lex_state = 2}, + [1449] = {.lex_state = 408, .external_lex_state = 2}, + [1450] = {.lex_state = 408, .external_lex_state = 2}, + [1451] = {.lex_state = 408, .external_lex_state = 2}, + [1452] = {.lex_state = 408, .external_lex_state = 2}, + [1453] = {.lex_state = 408, .external_lex_state = 2}, + [1454] = {.lex_state = 408, .external_lex_state = 2}, + [1455] = {.lex_state = 408, .external_lex_state = 2}, + [1456] = {.lex_state = 408, .external_lex_state = 2}, + [1457] = {.lex_state = 408, .external_lex_state = 2}, + [1458] = {.lex_state = 408, .external_lex_state = 2}, + [1459] = {.lex_state = 408, .external_lex_state = 2}, + [1460] = {.lex_state = 408, .external_lex_state = 2}, + [1461] = {.lex_state = 408, .external_lex_state = 2}, + [1462] = {.lex_state = 408, .external_lex_state = 2}, + [1463] = {.lex_state = 408, .external_lex_state = 2}, + [1464] = {.lex_state = 408, .external_lex_state = 2}, + [1465] = {.lex_state = 408, .external_lex_state = 2}, + [1466] = {.lex_state = 408, .external_lex_state = 2}, + [1467] = {.lex_state = 408, .external_lex_state = 2}, + [1468] = {.lex_state = 408, .external_lex_state = 2}, + [1469] = {.lex_state = 408, .external_lex_state = 2}, + [1470] = {.lex_state = 408, .external_lex_state = 2}, + [1471] = {.lex_state = 408, .external_lex_state = 2}, + [1472] = {.lex_state = 408, .external_lex_state = 2}, + [1473] = {.lex_state = 408, .external_lex_state = 2}, + [1474] = {.lex_state = 408, .external_lex_state = 2}, + [1475] = {.lex_state = 408, .external_lex_state = 2}, + [1476] = {.lex_state = 408, .external_lex_state = 2}, + [1477] = {.lex_state = 408, .external_lex_state = 2}, + [1478] = {.lex_state = 408, .external_lex_state = 2}, + [1479] = {.lex_state = 408, .external_lex_state = 2}, + [1480] = {.lex_state = 408, .external_lex_state = 2}, + [1481] = {.lex_state = 408, .external_lex_state = 2}, + [1482] = {.lex_state = 408, .external_lex_state = 2}, + [1483] = {.lex_state = 408, .external_lex_state = 2}, + [1484] = {.lex_state = 408, .external_lex_state = 2}, + [1485] = {.lex_state = 408, .external_lex_state = 2}, + [1486] = {.lex_state = 408, .external_lex_state = 2}, + [1487] = {.lex_state = 408, .external_lex_state = 2}, + [1488] = {.lex_state = 408, .external_lex_state = 2}, + [1489] = {.lex_state = 408, .external_lex_state = 2}, + [1490] = {.lex_state = 408, .external_lex_state = 2}, + [1491] = {.lex_state = 408, .external_lex_state = 2}, + [1492] = {.lex_state = 408, .external_lex_state = 2}, + [1493] = {.lex_state = 408, .external_lex_state = 2}, + [1494] = {.lex_state = 408, .external_lex_state = 2}, + [1495] = {.lex_state = 408, .external_lex_state = 2}, + [1496] = {.lex_state = 408, .external_lex_state = 2}, + [1497] = {.lex_state = 408, .external_lex_state = 2}, + [1498] = {.lex_state = 408, .external_lex_state = 2}, + [1499] = {.lex_state = 408, .external_lex_state = 2}, + [1500] = {.lex_state = 408, .external_lex_state = 2}, + [1501] = {.lex_state = 408, .external_lex_state = 2}, + [1502] = {.lex_state = 408, .external_lex_state = 2}, + [1503] = {.lex_state = 408, .external_lex_state = 2}, + [1504] = {.lex_state = 408, .external_lex_state = 2}, + [1505] = {.lex_state = 408, .external_lex_state = 2}, + [1506] = {.lex_state = 408, .external_lex_state = 2}, + [1507] = {.lex_state = 408, .external_lex_state = 2}, + [1508] = {.lex_state = 408, .external_lex_state = 2}, + [1509] = {.lex_state = 408, .external_lex_state = 2}, + [1510] = {.lex_state = 408, .external_lex_state = 2}, + [1511] = {.lex_state = 408, .external_lex_state = 2}, + [1512] = {.lex_state = 408, .external_lex_state = 2}, + [1513] = {.lex_state = 408, .external_lex_state = 2}, + [1514] = {.lex_state = 408, .external_lex_state = 2}, + [1515] = {.lex_state = 408, .external_lex_state = 2}, + [1516] = {.lex_state = 408, .external_lex_state = 2}, + [1517] = {.lex_state = 408, .external_lex_state = 2}, + [1518] = {.lex_state = 408, .external_lex_state = 2}, + [1519] = {.lex_state = 408, .external_lex_state = 2}, + [1520] = {.lex_state = 408, .external_lex_state = 2}, + [1521] = {.lex_state = 408, .external_lex_state = 2}, + [1522] = {.lex_state = 408, .external_lex_state = 2}, + [1523] = {.lex_state = 408, .external_lex_state = 2}, + [1524] = {.lex_state = 408, .external_lex_state = 2}, + [1525] = {.lex_state = 408, .external_lex_state = 2}, + [1526] = {.lex_state = 408, .external_lex_state = 2}, + [1527] = {.lex_state = 408, .external_lex_state = 2}, + [1528] = {.lex_state = 408, .external_lex_state = 2}, + [1529] = {.lex_state = 408, .external_lex_state = 2}, + [1530] = {.lex_state = 408, .external_lex_state = 2}, + [1531] = {.lex_state = 408, .external_lex_state = 2}, + [1532] = {.lex_state = 408, .external_lex_state = 2}, + [1533] = {.lex_state = 408, .external_lex_state = 2}, + [1534] = {.lex_state = 408, .external_lex_state = 2}, + [1535] = {.lex_state = 408, .external_lex_state = 2}, + [1536] = {.lex_state = 408, .external_lex_state = 2}, + [1537] = {.lex_state = 408, .external_lex_state = 2}, + [1538] = {.lex_state = 408, .external_lex_state = 2}, + [1539] = {.lex_state = 408, .external_lex_state = 2}, + [1540] = {.lex_state = 408, .external_lex_state = 2}, + [1541] = {.lex_state = 408, .external_lex_state = 2}, + [1542] = {.lex_state = 408, .external_lex_state = 2}, + [1543] = {.lex_state = 408, .external_lex_state = 2}, + [1544] = {.lex_state = 408, .external_lex_state = 2}, + [1545] = {.lex_state = 408, .external_lex_state = 2}, + [1546] = {.lex_state = 408, .external_lex_state = 2}, + [1547] = {.lex_state = 408, .external_lex_state = 2}, + [1548] = {.lex_state = 408, .external_lex_state = 2}, + [1549] = {.lex_state = 408, .external_lex_state = 2}, + [1550] = {.lex_state = 408, .external_lex_state = 2}, + [1551] = {.lex_state = 408, .external_lex_state = 2}, + [1552] = {.lex_state = 408, .external_lex_state = 2}, + [1553] = {.lex_state = 408, .external_lex_state = 2}, + [1554] = {.lex_state = 408, .external_lex_state = 2}, + [1555] = {.lex_state = 408, .external_lex_state = 2}, [1556] = {.lex_state = 408, .external_lex_state = 2}, [1557] = {.lex_state = 408, .external_lex_state = 2}, [1558] = {.lex_state = 408, .external_lex_state = 2}, @@ -23951,238 +23706,238 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1570] = {.lex_state = 408, .external_lex_state = 2}, [1571] = {.lex_state = 408, .external_lex_state = 2}, [1572] = {.lex_state = 408, .external_lex_state = 2}, - [1573] = {.lex_state = 408, .external_lex_state = 2}, - [1574] = {.lex_state = 408, .external_lex_state = 2}, - [1575] = {.lex_state = 408, .external_lex_state = 2}, - [1576] = {.lex_state = 408, .external_lex_state = 2}, - [1577] = {.lex_state = 408, .external_lex_state = 2}, - [1578] = {.lex_state = 408, .external_lex_state = 2}, - [1579] = {.lex_state = 408, .external_lex_state = 2}, + [1573] = {.lex_state = 51, .external_lex_state = 2}, + [1574] = {.lex_state = 51, .external_lex_state = 2}, + [1575] = {.lex_state = 51, .external_lex_state = 2}, + [1576] = {.lex_state = 51, .external_lex_state = 2}, + [1577] = {.lex_state = 51, .external_lex_state = 2}, + [1578] = {.lex_state = 51, .external_lex_state = 2}, + [1579] = {.lex_state = 51, .external_lex_state = 2}, [1580] = {.lex_state = 408, .external_lex_state = 2}, [1581] = {.lex_state = 408, .external_lex_state = 2}, [1582] = {.lex_state = 408, .external_lex_state = 2}, - [1583] = {.lex_state = 408, .external_lex_state = 2}, + [1583] = {.lex_state = 51, .external_lex_state = 2}, [1584] = {.lex_state = 408, .external_lex_state = 2}, [1585] = {.lex_state = 408, .external_lex_state = 2}, [1586] = {.lex_state = 408, .external_lex_state = 2}, - [1587] = {.lex_state = 408, .external_lex_state = 2}, + [1587] = {.lex_state = 51, .external_lex_state = 2}, [1588] = {.lex_state = 408, .external_lex_state = 2}, - [1589] = {.lex_state = 408, .external_lex_state = 2}, - [1590] = {.lex_state = 408, .external_lex_state = 2}, + [1589] = {.lex_state = 51, .external_lex_state = 2}, + [1590] = {.lex_state = 51, .external_lex_state = 2}, [1591] = {.lex_state = 408, .external_lex_state = 2}, [1592] = {.lex_state = 408, .external_lex_state = 2}, [1593] = {.lex_state = 408, .external_lex_state = 2}, - [1594] = {.lex_state = 408, .external_lex_state = 2}, + [1594] = {.lex_state = 51, .external_lex_state = 2}, [1595] = {.lex_state = 408, .external_lex_state = 2}, - [1596] = {.lex_state = 408, .external_lex_state = 2}, + [1596] = {.lex_state = 51, .external_lex_state = 2}, [1597] = {.lex_state = 408, .external_lex_state = 2}, - [1598] = {.lex_state = 408, .external_lex_state = 2}, - [1599] = {.lex_state = 408, .external_lex_state = 2}, + [1598] = {.lex_state = 51, .external_lex_state = 2}, + [1599] = {.lex_state = 51, .external_lex_state = 2}, [1600] = {.lex_state = 408, .external_lex_state = 2}, - [1601] = {.lex_state = 408, .external_lex_state = 2}, - [1602] = {.lex_state = 408, .external_lex_state = 2}, - [1603] = {.lex_state = 408, .external_lex_state = 2}, - [1604] = {.lex_state = 408, .external_lex_state = 2}, - [1605] = {.lex_state = 408, .external_lex_state = 2}, - [1606] = {.lex_state = 408, .external_lex_state = 2}, - [1607] = {.lex_state = 408, .external_lex_state = 2}, - [1608] = {.lex_state = 408, .external_lex_state = 2}, - [1609] = {.lex_state = 408, .external_lex_state = 2}, - [1610] = {.lex_state = 408, .external_lex_state = 2}, - [1611] = {.lex_state = 408, .external_lex_state = 2}, - [1612] = {.lex_state = 408, .external_lex_state = 2}, - [1613] = {.lex_state = 408, .external_lex_state = 2}, - [1614] = {.lex_state = 408, .external_lex_state = 2}, - [1615] = {.lex_state = 408, .external_lex_state = 2}, - [1616] = {.lex_state = 408, .external_lex_state = 2}, - [1617] = {.lex_state = 408, .external_lex_state = 2}, - [1618] = {.lex_state = 408, .external_lex_state = 2}, - [1619] = {.lex_state = 408, .external_lex_state = 2}, - [1620] = {.lex_state = 408, .external_lex_state = 2}, - [1621] = {.lex_state = 408, .external_lex_state = 2}, - [1622] = {.lex_state = 408, .external_lex_state = 2}, - [1623] = {.lex_state = 408, .external_lex_state = 2}, - [1624] = {.lex_state = 408, .external_lex_state = 2}, - [1625] = {.lex_state = 408, .external_lex_state = 2}, - [1626] = {.lex_state = 408, .external_lex_state = 2}, - [1627] = {.lex_state = 408, .external_lex_state = 2}, - [1628] = {.lex_state = 408, .external_lex_state = 2}, - [1629] = {.lex_state = 408, .external_lex_state = 2}, - [1630] = {.lex_state = 408, .external_lex_state = 2}, - [1631] = {.lex_state = 408, .external_lex_state = 2}, - [1632] = {.lex_state = 408, .external_lex_state = 2}, - [1633] = {.lex_state = 408, .external_lex_state = 2}, - [1634] = {.lex_state = 408, .external_lex_state = 2}, - [1635] = {.lex_state = 408, .external_lex_state = 2}, - [1636] = {.lex_state = 408, .external_lex_state = 2}, - [1637] = {.lex_state = 408, .external_lex_state = 2}, - [1638] = {.lex_state = 408, .external_lex_state = 2}, - [1639] = {.lex_state = 408, .external_lex_state = 2}, - [1640] = {.lex_state = 408, .external_lex_state = 2}, - [1641] = {.lex_state = 408, .external_lex_state = 2}, - [1642] = {.lex_state = 408, .external_lex_state = 2}, - [1643] = {.lex_state = 408, .external_lex_state = 2}, - [1644] = {.lex_state = 408, .external_lex_state = 2}, - [1645] = {.lex_state = 408, .external_lex_state = 2}, - [1646] = {.lex_state = 408, .external_lex_state = 2}, - [1647] = {.lex_state = 408, .external_lex_state = 2}, - [1648] = {.lex_state = 408, .external_lex_state = 2}, - [1649] = {.lex_state = 408, .external_lex_state = 2}, - [1650] = {.lex_state = 408, .external_lex_state = 2}, - [1651] = {.lex_state = 408, .external_lex_state = 2}, - [1652] = {.lex_state = 408, .external_lex_state = 2}, - [1653] = {.lex_state = 408, .external_lex_state = 2}, - [1654] = {.lex_state = 408, .external_lex_state = 2}, - [1655] = {.lex_state = 408, .external_lex_state = 2}, - [1656] = {.lex_state = 408, .external_lex_state = 2}, - [1657] = {.lex_state = 408, .external_lex_state = 2}, - [1658] = {.lex_state = 408, .external_lex_state = 2}, - [1659] = {.lex_state = 408, .external_lex_state = 2}, - [1660] = {.lex_state = 408, .external_lex_state = 2}, - [1661] = {.lex_state = 408, .external_lex_state = 2}, - [1662] = {.lex_state = 408, .external_lex_state = 2}, - [1663] = {.lex_state = 408, .external_lex_state = 2}, - [1664] = {.lex_state = 408, .external_lex_state = 2}, - [1665] = {.lex_state = 408, .external_lex_state = 2}, - [1666] = {.lex_state = 408, .external_lex_state = 2}, - [1667] = {.lex_state = 408, .external_lex_state = 2}, - [1668] = {.lex_state = 408, .external_lex_state = 2}, - [1669] = {.lex_state = 408, .external_lex_state = 2}, - [1670] = {.lex_state = 408, .external_lex_state = 2}, - [1671] = {.lex_state = 408, .external_lex_state = 2}, - [1672] = {.lex_state = 408, .external_lex_state = 2}, - [1673] = {.lex_state = 408, .external_lex_state = 2}, - [1674] = {.lex_state = 408, .external_lex_state = 2}, - [1675] = {.lex_state = 408, .external_lex_state = 2}, - [1676] = {.lex_state = 408, .external_lex_state = 2}, - [1677] = {.lex_state = 408, .external_lex_state = 2}, - [1678] = {.lex_state = 408, .external_lex_state = 2}, - [1679] = {.lex_state = 408, .external_lex_state = 2}, - [1680] = {.lex_state = 408, .external_lex_state = 2}, - [1681] = {.lex_state = 408, .external_lex_state = 2}, - [1682] = {.lex_state = 408, .external_lex_state = 2}, - [1683] = {.lex_state = 408, .external_lex_state = 2}, - [1684] = {.lex_state = 408, .external_lex_state = 2}, - [1685] = {.lex_state = 408, .external_lex_state = 2}, - [1686] = {.lex_state = 408, .external_lex_state = 2}, - [1687] = {.lex_state = 408, .external_lex_state = 2}, - [1688] = {.lex_state = 408, .external_lex_state = 2}, - [1689] = {.lex_state = 408, .external_lex_state = 2}, - [1690] = {.lex_state = 408, .external_lex_state = 2}, - [1691] = {.lex_state = 408, .external_lex_state = 2}, - [1692] = {.lex_state = 408, .external_lex_state = 2}, - [1693] = {.lex_state = 408, .external_lex_state = 2}, - [1694] = {.lex_state = 408, .external_lex_state = 2}, - [1695] = {.lex_state = 408, .external_lex_state = 2}, - [1696] = {.lex_state = 408, .external_lex_state = 2}, - [1697] = {.lex_state = 408, .external_lex_state = 2}, - [1698] = {.lex_state = 408, .external_lex_state = 2}, - [1699] = {.lex_state = 408, .external_lex_state = 2}, - [1700] = {.lex_state = 408, .external_lex_state = 2}, - [1701] = {.lex_state = 408, .external_lex_state = 2}, - [1702] = {.lex_state = 408, .external_lex_state = 2}, - [1703] = {.lex_state = 408, .external_lex_state = 2}, - [1704] = {.lex_state = 408, .external_lex_state = 2}, - [1705] = {.lex_state = 408, .external_lex_state = 2}, - [1706] = {.lex_state = 408, .external_lex_state = 2}, - [1707] = {.lex_state = 408, .external_lex_state = 2}, - [1708] = {.lex_state = 408, .external_lex_state = 2}, - [1709] = {.lex_state = 408, .external_lex_state = 2}, - [1710] = {.lex_state = 408, .external_lex_state = 2}, - [1711] = {.lex_state = 408, .external_lex_state = 2}, - [1712] = {.lex_state = 408, .external_lex_state = 2}, - [1713] = {.lex_state = 408, .external_lex_state = 2}, - [1714] = {.lex_state = 408, .external_lex_state = 2}, - [1715] = {.lex_state = 408, .external_lex_state = 2}, - [1716] = {.lex_state = 408, .external_lex_state = 2}, - [1717] = {.lex_state = 408, .external_lex_state = 2}, - [1718] = {.lex_state = 408, .external_lex_state = 2}, - [1719] = {.lex_state = 408, .external_lex_state = 2}, - [1720] = {.lex_state = 408, .external_lex_state = 2}, + [1601] = {.lex_state = 52, .external_lex_state = 2}, + [1602] = {.lex_state = 52, .external_lex_state = 2}, + [1603] = {.lex_state = 51, .external_lex_state = 2}, + [1604] = {.lex_state = 52, .external_lex_state = 2}, + [1605] = {.lex_state = 52, .external_lex_state = 2}, + [1606] = {.lex_state = 52, .external_lex_state = 2}, + [1607] = {.lex_state = 52, .external_lex_state = 2}, + [1608] = {.lex_state = 52, .external_lex_state = 2}, + [1609] = {.lex_state = 52, .external_lex_state = 2}, + [1610] = {.lex_state = 52, .external_lex_state = 2}, + [1611] = {.lex_state = 52, .external_lex_state = 2}, + [1612] = {.lex_state = 52, .external_lex_state = 2}, + [1613] = {.lex_state = 52, .external_lex_state = 2}, + [1614] = {.lex_state = 52, .external_lex_state = 2}, + [1615] = {.lex_state = 52, .external_lex_state = 2}, + [1616] = {.lex_state = 52, .external_lex_state = 2}, + [1617] = {.lex_state = 52, .external_lex_state = 2}, + [1618] = {.lex_state = 52, .external_lex_state = 2}, + [1619] = {.lex_state = 52, .external_lex_state = 2}, + [1620] = {.lex_state = 52, .external_lex_state = 2}, + [1621] = {.lex_state = 52, .external_lex_state = 2}, + [1622] = {.lex_state = 52, .external_lex_state = 2}, + [1623] = {.lex_state = 52, .external_lex_state = 2}, + [1624] = {.lex_state = 52, .external_lex_state = 2}, + [1625] = {.lex_state = 52, .external_lex_state = 2}, + [1626] = {.lex_state = 52, .external_lex_state = 2}, + [1627] = {.lex_state = 52, .external_lex_state = 2}, + [1628] = {.lex_state = 52, .external_lex_state = 2}, + [1629] = {.lex_state = 52, .external_lex_state = 2}, + [1630] = {.lex_state = 52, .external_lex_state = 2}, + [1631] = {.lex_state = 52, .external_lex_state = 2}, + [1632] = {.lex_state = 52, .external_lex_state = 2}, + [1633] = {.lex_state = 52, .external_lex_state = 2}, + [1634] = {.lex_state = 52, .external_lex_state = 2}, + [1635] = {.lex_state = 52, .external_lex_state = 2}, + [1636] = {.lex_state = 52, .external_lex_state = 2}, + [1637] = {.lex_state = 52, .external_lex_state = 2}, + [1638] = {.lex_state = 52, .external_lex_state = 2}, + [1639] = {.lex_state = 52, .external_lex_state = 2}, + [1640] = {.lex_state = 52, .external_lex_state = 2}, + [1641] = {.lex_state = 52, .external_lex_state = 2}, + [1642] = {.lex_state = 52, .external_lex_state = 2}, + [1643] = {.lex_state = 52, .external_lex_state = 2}, + [1644] = {.lex_state = 52, .external_lex_state = 2}, + [1645] = {.lex_state = 52, .external_lex_state = 2}, + [1646] = {.lex_state = 52, .external_lex_state = 2}, + [1647] = {.lex_state = 52, .external_lex_state = 2}, + [1648] = {.lex_state = 52, .external_lex_state = 2}, + [1649] = {.lex_state = 52, .external_lex_state = 2}, + [1650] = {.lex_state = 52, .external_lex_state = 2}, + [1651] = {.lex_state = 52, .external_lex_state = 2}, + [1652] = {.lex_state = 52, .external_lex_state = 2}, + [1653] = {.lex_state = 52, .external_lex_state = 2}, + [1654] = {.lex_state = 52, .external_lex_state = 2}, + [1655] = {.lex_state = 52, .external_lex_state = 2}, + [1656] = {.lex_state = 52, .external_lex_state = 2}, + [1657] = {.lex_state = 51, .external_lex_state = 2}, + [1658] = {.lex_state = 51, .external_lex_state = 2}, + [1659] = {.lex_state = 51, .external_lex_state = 2}, + [1660] = {.lex_state = 51, .external_lex_state = 2}, + [1661] = {.lex_state = 51, .external_lex_state = 2}, + [1662] = {.lex_state = 51, .external_lex_state = 2}, + [1663] = {.lex_state = 51, .external_lex_state = 2}, + [1664] = {.lex_state = 51, .external_lex_state = 2}, + [1665] = {.lex_state = 51, .external_lex_state = 2}, + [1666] = {.lex_state = 51, .external_lex_state = 2}, + [1667] = {.lex_state = 38, .external_lex_state = 2}, + [1668] = {.lex_state = 38, .external_lex_state = 2}, + [1669] = {.lex_state = 38, .external_lex_state = 2}, + [1670] = {.lex_state = 38, .external_lex_state = 2}, + [1671] = {.lex_state = 38, .external_lex_state = 2}, + [1672] = {.lex_state = 38, .external_lex_state = 2}, + [1673] = {.lex_state = 38, .external_lex_state = 2}, + [1674] = {.lex_state = 38, .external_lex_state = 2}, + [1675] = {.lex_state = 38, .external_lex_state = 2}, + [1676] = {.lex_state = 38, .external_lex_state = 2}, + [1677] = {.lex_state = 38, .external_lex_state = 2}, + [1678] = {.lex_state = 38, .external_lex_state = 2}, + [1679] = {.lex_state = 51, .external_lex_state = 2}, + [1680] = {.lex_state = 18, .external_lex_state = 4}, + [1681] = {.lex_state = 51, .external_lex_state = 2}, + [1682] = {.lex_state = 18, .external_lex_state = 4}, + [1683] = {.lex_state = 51, .external_lex_state = 2}, + [1684] = {.lex_state = 18, .external_lex_state = 4}, + [1685] = {.lex_state = 18, .external_lex_state = 4}, + [1686] = {.lex_state = 51, .external_lex_state = 2}, + [1687] = {.lex_state = 18, .external_lex_state = 4}, + [1688] = {.lex_state = 18, .external_lex_state = 4}, + [1689] = {.lex_state = 18, .external_lex_state = 4}, + [1690] = {.lex_state = 53, .external_lex_state = 2}, + [1691] = {.lex_state = 51, .external_lex_state = 2}, + [1692] = {.lex_state = 18, .external_lex_state = 4}, + [1693] = {.lex_state = 18, .external_lex_state = 4}, + [1694] = {.lex_state = 51, .external_lex_state = 2}, + [1695] = {.lex_state = 51, .external_lex_state = 2}, + [1696] = {.lex_state = 51, .external_lex_state = 2}, + [1697] = {.lex_state = 51, .external_lex_state = 2}, + [1698] = {.lex_state = 51, .external_lex_state = 2}, + [1699] = {.lex_state = 51, .external_lex_state = 2}, + [1700] = {.lex_state = 51, .external_lex_state = 2}, + [1701] = {.lex_state = 51, .external_lex_state = 2}, + [1702] = {.lex_state = 51, .external_lex_state = 2}, + [1703] = {.lex_state = 51, .external_lex_state = 2}, + [1704] = {.lex_state = 51, .external_lex_state = 2}, + [1705] = {.lex_state = 51, .external_lex_state = 2}, + [1706] = {.lex_state = 51, .external_lex_state = 2}, + [1707] = {.lex_state = 51, .external_lex_state = 2}, + [1708] = {.lex_state = 51, .external_lex_state = 2}, + [1709] = {.lex_state = 51, .external_lex_state = 2}, + [1710] = {.lex_state = 51, .external_lex_state = 2}, + [1711] = {.lex_state = 51, .external_lex_state = 2}, + [1712] = {.lex_state = 51, .external_lex_state = 2}, + [1713] = {.lex_state = 51, .external_lex_state = 2}, + [1714] = {.lex_state = 51, .external_lex_state = 2}, + [1715] = {.lex_state = 51, .external_lex_state = 2}, + [1716] = {.lex_state = 51, .external_lex_state = 2}, + [1717] = {.lex_state = 51, .external_lex_state = 2}, + [1718] = {.lex_state = 51, .external_lex_state = 2}, + [1719] = {.lex_state = 51, .external_lex_state = 2}, + [1720] = {.lex_state = 51, .external_lex_state = 2}, [1721] = {.lex_state = 51, .external_lex_state = 2}, [1722] = {.lex_state = 51, .external_lex_state = 2}, [1723] = {.lex_state = 51, .external_lex_state = 2}, [1724] = {.lex_state = 51, .external_lex_state = 2}, [1725] = {.lex_state = 51, .external_lex_state = 2}, - [1726] = {.lex_state = 408, .external_lex_state = 2}, + [1726] = {.lex_state = 51, .external_lex_state = 2}, [1727] = {.lex_state = 51, .external_lex_state = 2}, - [1728] = {.lex_state = 408, .external_lex_state = 2}, - [1729] = {.lex_state = 408, .external_lex_state = 2}, - [1730] = {.lex_state = 408, .external_lex_state = 2}, - [1731] = {.lex_state = 408, .external_lex_state = 2}, - [1732] = {.lex_state = 408, .external_lex_state = 2}, - [1733] = {.lex_state = 408, .external_lex_state = 2}, + [1728] = {.lex_state = 51, .external_lex_state = 2}, + [1729] = {.lex_state = 51, .external_lex_state = 2}, + [1730] = {.lex_state = 51, .external_lex_state = 2}, + [1731] = {.lex_state = 51, .external_lex_state = 2}, + [1732] = {.lex_state = 51, .external_lex_state = 2}, + [1733] = {.lex_state = 51, .external_lex_state = 2}, [1734] = {.lex_state = 51, .external_lex_state = 2}, [1735] = {.lex_state = 51, .external_lex_state = 2}, - [1736] = {.lex_state = 408, .external_lex_state = 2}, - [1737] = {.lex_state = 408, .external_lex_state = 2}, - [1738] = {.lex_state = 408, .external_lex_state = 2}, - [1739] = {.lex_state = 408, .external_lex_state = 2}, - [1740] = {.lex_state = 408, .external_lex_state = 2}, + [1736] = {.lex_state = 51, .external_lex_state = 2}, + [1737] = {.lex_state = 51, .external_lex_state = 2}, + [1738] = {.lex_state = 51, .external_lex_state = 2}, + [1739] = {.lex_state = 51, .external_lex_state = 2}, + [1740] = {.lex_state = 51, .external_lex_state = 2}, [1741] = {.lex_state = 51, .external_lex_state = 2}, [1742] = {.lex_state = 51, .external_lex_state = 2}, [1743] = {.lex_state = 51, .external_lex_state = 2}, [1744] = {.lex_state = 51, .external_lex_state = 2}, - [1745] = {.lex_state = 408, .external_lex_state = 2}, + [1745] = {.lex_state = 51, .external_lex_state = 2}, [1746] = {.lex_state = 51, .external_lex_state = 2}, [1747] = {.lex_state = 51, .external_lex_state = 2}, [1748] = {.lex_state = 51, .external_lex_state = 2}, - [1749] = {.lex_state = 52, .external_lex_state = 2}, - [1750] = {.lex_state = 52, .external_lex_state = 2}, - [1751] = {.lex_state = 52, .external_lex_state = 2}, + [1749] = {.lex_state = 51, .external_lex_state = 2}, + [1750] = {.lex_state = 51, .external_lex_state = 2}, + [1751] = {.lex_state = 51, .external_lex_state = 2}, [1752] = {.lex_state = 51, .external_lex_state = 2}, - [1753] = {.lex_state = 52, .external_lex_state = 2}, - [1754] = {.lex_state = 52, .external_lex_state = 2}, - [1755] = {.lex_state = 52, .external_lex_state = 2}, - [1756] = {.lex_state = 52, .external_lex_state = 2}, - [1757] = {.lex_state = 52, .external_lex_state = 2}, - [1758] = {.lex_state = 52, .external_lex_state = 2}, - [1759] = {.lex_state = 52, .external_lex_state = 2}, - [1760] = {.lex_state = 52, .external_lex_state = 2}, - [1761] = {.lex_state = 52, .external_lex_state = 2}, - [1762] = {.lex_state = 52, .external_lex_state = 2}, - [1763] = {.lex_state = 52, .external_lex_state = 2}, - [1764] = {.lex_state = 52, .external_lex_state = 2}, - [1765] = {.lex_state = 52, .external_lex_state = 2}, - [1766] = {.lex_state = 52, .external_lex_state = 2}, - [1767] = {.lex_state = 52, .external_lex_state = 2}, - [1768] = {.lex_state = 52, .external_lex_state = 2}, - [1769] = {.lex_state = 52, .external_lex_state = 2}, - [1770] = {.lex_state = 52, .external_lex_state = 2}, - [1771] = {.lex_state = 52, .external_lex_state = 2}, - [1772] = {.lex_state = 52, .external_lex_state = 2}, - [1773] = {.lex_state = 52, .external_lex_state = 2}, - [1774] = {.lex_state = 52, .external_lex_state = 2}, - [1775] = {.lex_state = 52, .external_lex_state = 2}, - [1776] = {.lex_state = 52, .external_lex_state = 2}, - [1777] = {.lex_state = 52, .external_lex_state = 2}, - [1778] = {.lex_state = 52, .external_lex_state = 2}, - [1779] = {.lex_state = 52, .external_lex_state = 2}, - [1780] = {.lex_state = 52, .external_lex_state = 2}, - [1781] = {.lex_state = 52, .external_lex_state = 2}, - [1782] = {.lex_state = 52, .external_lex_state = 2}, - [1783] = {.lex_state = 52, .external_lex_state = 2}, - [1784] = {.lex_state = 52, .external_lex_state = 2}, - [1785] = {.lex_state = 52, .external_lex_state = 2}, - [1786] = {.lex_state = 52, .external_lex_state = 2}, - [1787] = {.lex_state = 52, .external_lex_state = 2}, - [1788] = {.lex_state = 52, .external_lex_state = 2}, - [1789] = {.lex_state = 52, .external_lex_state = 2}, - [1790] = {.lex_state = 52, .external_lex_state = 2}, - [1791] = {.lex_state = 52, .external_lex_state = 2}, - [1792] = {.lex_state = 52, .external_lex_state = 2}, - [1793] = {.lex_state = 52, .external_lex_state = 2}, - [1794] = {.lex_state = 52, .external_lex_state = 2}, - [1795] = {.lex_state = 52, .external_lex_state = 2}, - [1796] = {.lex_state = 52, .external_lex_state = 2}, - [1797] = {.lex_state = 52, .external_lex_state = 2}, - [1798] = {.lex_state = 52, .external_lex_state = 2}, - [1799] = {.lex_state = 52, .external_lex_state = 2}, - [1800] = {.lex_state = 52, .external_lex_state = 2}, - [1801] = {.lex_state = 52, .external_lex_state = 2}, - [1802] = {.lex_state = 52, .external_lex_state = 2}, - [1803] = {.lex_state = 52, .external_lex_state = 2}, - [1804] = {.lex_state = 52, .external_lex_state = 2}, + [1753] = {.lex_state = 51, .external_lex_state = 2}, + [1754] = {.lex_state = 51, .external_lex_state = 2}, + [1755] = {.lex_state = 51, .external_lex_state = 2}, + [1756] = {.lex_state = 51, .external_lex_state = 2}, + [1757] = {.lex_state = 51, .external_lex_state = 2}, + [1758] = {.lex_state = 51, .external_lex_state = 2}, + [1759] = {.lex_state = 51, .external_lex_state = 2}, + [1760] = {.lex_state = 51, .external_lex_state = 2}, + [1761] = {.lex_state = 51, .external_lex_state = 2}, + [1762] = {.lex_state = 51, .external_lex_state = 2}, + [1763] = {.lex_state = 51, .external_lex_state = 2}, + [1764] = {.lex_state = 51, .external_lex_state = 2}, + [1765] = {.lex_state = 51, .external_lex_state = 2}, + [1766] = {.lex_state = 51, .external_lex_state = 2}, + [1767] = {.lex_state = 51, .external_lex_state = 2}, + [1768] = {.lex_state = 51, .external_lex_state = 2}, + [1769] = {.lex_state = 51, .external_lex_state = 2}, + [1770] = {.lex_state = 51, .external_lex_state = 2}, + [1771] = {.lex_state = 51, .external_lex_state = 2}, + [1772] = {.lex_state = 51, .external_lex_state = 2}, + [1773] = {.lex_state = 51, .external_lex_state = 2}, + [1774] = {.lex_state = 51, .external_lex_state = 2}, + [1775] = {.lex_state = 51, .external_lex_state = 2}, + [1776] = {.lex_state = 51, .external_lex_state = 2}, + [1777] = {.lex_state = 51, .external_lex_state = 2}, + [1778] = {.lex_state = 51, .external_lex_state = 2}, + [1779] = {.lex_state = 51, .external_lex_state = 2}, + [1780] = {.lex_state = 51, .external_lex_state = 2}, + [1781] = {.lex_state = 51, .external_lex_state = 2}, + [1782] = {.lex_state = 51, .external_lex_state = 2}, + [1783] = {.lex_state = 51, .external_lex_state = 2}, + [1784] = {.lex_state = 51, .external_lex_state = 2}, + [1785] = {.lex_state = 51, .external_lex_state = 2}, + [1786] = {.lex_state = 51, .external_lex_state = 2}, + [1787] = {.lex_state = 51, .external_lex_state = 2}, + [1788] = {.lex_state = 51, .external_lex_state = 2}, + [1789] = {.lex_state = 51, .external_lex_state = 2}, + [1790] = {.lex_state = 51, .external_lex_state = 2}, + [1791] = {.lex_state = 51, .external_lex_state = 2}, + [1792] = {.lex_state = 51, .external_lex_state = 2}, + [1793] = {.lex_state = 51, .external_lex_state = 2}, + [1794] = {.lex_state = 51, .external_lex_state = 2}, + [1795] = {.lex_state = 51, .external_lex_state = 2}, + [1796] = {.lex_state = 51, .external_lex_state = 2}, + [1797] = {.lex_state = 51, .external_lex_state = 2}, + [1798] = {.lex_state = 51, .external_lex_state = 2}, + [1799] = {.lex_state = 51, .external_lex_state = 2}, + [1800] = {.lex_state = 51, .external_lex_state = 2}, + [1801] = {.lex_state = 51, .external_lex_state = 2}, + [1802] = {.lex_state = 51, .external_lex_state = 2}, + [1803] = {.lex_state = 51, .external_lex_state = 2}, + [1804] = {.lex_state = 51, .external_lex_state = 2}, [1805] = {.lex_state = 51, .external_lex_state = 2}, [1806] = {.lex_state = 51, .external_lex_state = 2}, [1807] = {.lex_state = 51, .external_lex_state = 2}, @@ -24193,545 +23948,545 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1812] = {.lex_state = 51, .external_lex_state = 2}, [1813] = {.lex_state = 51, .external_lex_state = 2}, [1814] = {.lex_state = 51, .external_lex_state = 2}, - [1815] = {.lex_state = 38, .external_lex_state = 2}, - [1816] = {.lex_state = 38, .external_lex_state = 2}, - [1817] = {.lex_state = 38, .external_lex_state = 2}, - [1818] = {.lex_state = 38, .external_lex_state = 2}, - [1819] = {.lex_state = 38, .external_lex_state = 2}, - [1820] = {.lex_state = 38, .external_lex_state = 2}, + [1815] = {.lex_state = 51, .external_lex_state = 2}, + [1816] = {.lex_state = 51, .external_lex_state = 2}, + [1817] = {.lex_state = 18, .external_lex_state = 3}, + [1818] = {.lex_state = 18, .external_lex_state = 3}, + [1819] = {.lex_state = 18, .external_lex_state = 3}, + [1820] = {.lex_state = 18, .external_lex_state = 3}, [1821] = {.lex_state = 38, .external_lex_state = 2}, - [1822] = {.lex_state = 38, .external_lex_state = 2}, + [1822] = {.lex_state = 18, .external_lex_state = 3}, [1823] = {.lex_state = 38, .external_lex_state = 2}, - [1824] = {.lex_state = 38, .external_lex_state = 2}, - [1825] = {.lex_state = 38, .external_lex_state = 2}, - [1826] = {.lex_state = 38, .external_lex_state = 2}, + [1824] = {.lex_state = 18, .external_lex_state = 4}, + [1825] = {.lex_state = 18, .external_lex_state = 4}, + [1826] = {.lex_state = 18, .external_lex_state = 4}, [1827] = {.lex_state = 18, .external_lex_state = 4}, [1828] = {.lex_state = 18, .external_lex_state = 4}, [1829] = {.lex_state = 18, .external_lex_state = 4}, - [1830] = {.lex_state = 51, .external_lex_state = 2}, - [1831] = {.lex_state = 51, .external_lex_state = 2}, + [1830] = {.lex_state = 18, .external_lex_state = 4}, + [1831] = {.lex_state = 18, .external_lex_state = 4}, [1832] = {.lex_state = 18, .external_lex_state = 4}, - [1833] = {.lex_state = 53, .external_lex_state = 2}, - [1834] = {.lex_state = 18, .external_lex_state = 4}, + [1833] = {.lex_state = 18, .external_lex_state = 4}, + [1834] = {.lex_state = 21, .external_lex_state = 4}, [1835] = {.lex_state = 18, .external_lex_state = 4}, [1836] = {.lex_state = 18, .external_lex_state = 4}, - [1837] = {.lex_state = 51, .external_lex_state = 2}, + [1837] = {.lex_state = 18, .external_lex_state = 4}, [1838] = {.lex_state = 18, .external_lex_state = 4}, [1839] = {.lex_state = 18, .external_lex_state = 4}, - [1840] = {.lex_state = 51, .external_lex_state = 2}, - [1841] = {.lex_state = 51, .external_lex_state = 2}, - [1842] = {.lex_state = 51, .external_lex_state = 2}, - [1843] = {.lex_state = 51, .external_lex_state = 2}, - [1844] = {.lex_state = 51, .external_lex_state = 2}, - [1845] = {.lex_state = 51, .external_lex_state = 2}, - [1846] = {.lex_state = 51, .external_lex_state = 2}, - [1847] = {.lex_state = 51, .external_lex_state = 2}, - [1848] = {.lex_state = 51, .external_lex_state = 2}, - [1849] = {.lex_state = 51, .external_lex_state = 2}, - [1850] = {.lex_state = 51, .external_lex_state = 2}, - [1851] = {.lex_state = 51, .external_lex_state = 2}, - [1852] = {.lex_state = 51, .external_lex_state = 2}, - [1853] = {.lex_state = 51, .external_lex_state = 2}, - [1854] = {.lex_state = 51, .external_lex_state = 2}, - [1855] = {.lex_state = 51, .external_lex_state = 2}, - [1856] = {.lex_state = 51, .external_lex_state = 2}, - [1857] = {.lex_state = 51, .external_lex_state = 2}, - [1858] = {.lex_state = 51, .external_lex_state = 2}, - [1859] = {.lex_state = 51, .external_lex_state = 2}, - [1860] = {.lex_state = 51, .external_lex_state = 2}, - [1861] = {.lex_state = 51, .external_lex_state = 2}, - [1862] = {.lex_state = 51, .external_lex_state = 2}, - [1863] = {.lex_state = 51, .external_lex_state = 2}, - [1864] = {.lex_state = 51, .external_lex_state = 2}, - [1865] = {.lex_state = 51, .external_lex_state = 2}, - [1866] = {.lex_state = 51, .external_lex_state = 2}, - [1867] = {.lex_state = 51, .external_lex_state = 2}, - [1868] = {.lex_state = 51, .external_lex_state = 2}, - [1869] = {.lex_state = 51, .external_lex_state = 2}, - [1870] = {.lex_state = 51, .external_lex_state = 2}, - [1871] = {.lex_state = 51, .external_lex_state = 2}, - [1872] = {.lex_state = 51, .external_lex_state = 2}, - [1873] = {.lex_state = 51, .external_lex_state = 2}, - [1874] = {.lex_state = 51, .external_lex_state = 2}, - [1875] = {.lex_state = 51, .external_lex_state = 2}, - [1876] = {.lex_state = 51, .external_lex_state = 2}, - [1877] = {.lex_state = 51, .external_lex_state = 2}, - [1878] = {.lex_state = 51, .external_lex_state = 2}, - [1879] = {.lex_state = 51, .external_lex_state = 2}, - [1880] = {.lex_state = 51, .external_lex_state = 2}, - [1881] = {.lex_state = 51, .external_lex_state = 2}, - [1882] = {.lex_state = 51, .external_lex_state = 2}, - [1883] = {.lex_state = 51, .external_lex_state = 2}, - [1884] = {.lex_state = 51, .external_lex_state = 2}, - [1885] = {.lex_state = 51, .external_lex_state = 2}, - [1886] = {.lex_state = 51, .external_lex_state = 2}, - [1887] = {.lex_state = 51, .external_lex_state = 2}, - [1888] = {.lex_state = 51, .external_lex_state = 2}, - [1889] = {.lex_state = 51, .external_lex_state = 2}, - [1890] = {.lex_state = 51, .external_lex_state = 2}, - [1891] = {.lex_state = 51, .external_lex_state = 2}, - [1892] = {.lex_state = 51, .external_lex_state = 2}, - [1893] = {.lex_state = 51, .external_lex_state = 2}, - [1894] = {.lex_state = 51, .external_lex_state = 2}, - [1895] = {.lex_state = 51, .external_lex_state = 2}, - [1896] = {.lex_state = 51, .external_lex_state = 2}, - [1897] = {.lex_state = 51, .external_lex_state = 2}, - [1898] = {.lex_state = 51, .external_lex_state = 2}, - [1899] = {.lex_state = 51, .external_lex_state = 2}, - [1900] = {.lex_state = 51, .external_lex_state = 2}, - [1901] = {.lex_state = 51, .external_lex_state = 2}, - [1902] = {.lex_state = 51, .external_lex_state = 2}, - [1903] = {.lex_state = 51, .external_lex_state = 2}, - [1904] = {.lex_state = 51, .external_lex_state = 2}, - [1905] = {.lex_state = 51, .external_lex_state = 2}, - [1906] = {.lex_state = 51, .external_lex_state = 2}, - [1907] = {.lex_state = 51, .external_lex_state = 2}, - [1908] = {.lex_state = 51, .external_lex_state = 2}, - [1909] = {.lex_state = 51, .external_lex_state = 2}, - [1910] = {.lex_state = 51, .external_lex_state = 2}, - [1911] = {.lex_state = 51, .external_lex_state = 2}, - [1912] = {.lex_state = 51, .external_lex_state = 2}, - [1913] = {.lex_state = 51, .external_lex_state = 2}, - [1914] = {.lex_state = 51, .external_lex_state = 2}, - [1915] = {.lex_state = 51, .external_lex_state = 2}, - [1916] = {.lex_state = 51, .external_lex_state = 2}, - [1917] = {.lex_state = 51, .external_lex_state = 2}, - [1918] = {.lex_state = 51, .external_lex_state = 2}, - [1919] = {.lex_state = 51, .external_lex_state = 2}, - [1920] = {.lex_state = 51, .external_lex_state = 2}, - [1921] = {.lex_state = 51, .external_lex_state = 2}, - [1922] = {.lex_state = 51, .external_lex_state = 2}, - [1923] = {.lex_state = 51, .external_lex_state = 2}, - [1924] = {.lex_state = 51, .external_lex_state = 2}, - [1925] = {.lex_state = 51, .external_lex_state = 2}, - [1926] = {.lex_state = 51, .external_lex_state = 2}, - [1927] = {.lex_state = 51, .external_lex_state = 2}, - [1928] = {.lex_state = 51, .external_lex_state = 2}, - [1929] = {.lex_state = 51, .external_lex_state = 2}, - [1930] = {.lex_state = 51, .external_lex_state = 2}, - [1931] = {.lex_state = 51, .external_lex_state = 2}, - [1932] = {.lex_state = 51, .external_lex_state = 2}, - [1933] = {.lex_state = 51, .external_lex_state = 2}, - [1934] = {.lex_state = 51, .external_lex_state = 2}, - [1935] = {.lex_state = 51, .external_lex_state = 2}, - [1936] = {.lex_state = 51, .external_lex_state = 2}, - [1937] = {.lex_state = 51, .external_lex_state = 2}, - [1938] = {.lex_state = 51, .external_lex_state = 2}, - [1939] = {.lex_state = 51, .external_lex_state = 2}, - [1940] = {.lex_state = 51, .external_lex_state = 2}, - [1941] = {.lex_state = 51, .external_lex_state = 2}, - [1942] = {.lex_state = 51, .external_lex_state = 2}, - [1943] = {.lex_state = 51, .external_lex_state = 2}, - [1944] = {.lex_state = 51, .external_lex_state = 2}, - [1945] = {.lex_state = 51, .external_lex_state = 2}, - [1946] = {.lex_state = 51, .external_lex_state = 2}, - [1947] = {.lex_state = 51, .external_lex_state = 2}, - [1948] = {.lex_state = 51, .external_lex_state = 2}, - [1949] = {.lex_state = 51, .external_lex_state = 2}, - [1950] = {.lex_state = 51, .external_lex_state = 2}, - [1951] = {.lex_state = 51, .external_lex_state = 2}, - [1952] = {.lex_state = 51, .external_lex_state = 2}, - [1953] = {.lex_state = 51, .external_lex_state = 2}, - [1954] = {.lex_state = 51, .external_lex_state = 2}, - [1955] = {.lex_state = 51, .external_lex_state = 2}, - [1956] = {.lex_state = 51, .external_lex_state = 2}, - [1957] = {.lex_state = 51, .external_lex_state = 2}, - [1958] = {.lex_state = 51, .external_lex_state = 2}, - [1959] = {.lex_state = 51, .external_lex_state = 2}, - [1960] = {.lex_state = 51, .external_lex_state = 2}, - [1961] = {.lex_state = 51, .external_lex_state = 2}, - [1962] = {.lex_state = 51, .external_lex_state = 2}, - [1963] = {.lex_state = 51, .external_lex_state = 2}, - [1964] = {.lex_state = 51, .external_lex_state = 2}, - [1965] = {.lex_state = 18, .external_lex_state = 3}, - [1966] = {.lex_state = 18, .external_lex_state = 3}, - [1967] = {.lex_state = 18, .external_lex_state = 3}, - [1968] = {.lex_state = 38, .external_lex_state = 2}, - [1969] = {.lex_state = 38, .external_lex_state = 2}, - [1970] = {.lex_state = 18, .external_lex_state = 3}, - [1971] = {.lex_state = 18, .external_lex_state = 3}, - [1972] = {.lex_state = 18, .external_lex_state = 4}, - [1973] = {.lex_state = 18, .external_lex_state = 4}, - [1974] = {.lex_state = 18, .external_lex_state = 4}, - [1975] = {.lex_state = 18, .external_lex_state = 4}, - [1976] = {.lex_state = 18, .external_lex_state = 4}, - [1977] = {.lex_state = 18, .external_lex_state = 4}, - [1978] = {.lex_state = 18, .external_lex_state = 4}, - [1979] = {.lex_state = 18, .external_lex_state = 4}, - [1980] = {.lex_state = 18, .external_lex_state = 4}, - [1981] = {.lex_state = 18, .external_lex_state = 4}, - [1982] = {.lex_state = 18, .external_lex_state = 3}, - [1983] = {.lex_state = 18, .external_lex_state = 4}, - [1984] = {.lex_state = 18, .external_lex_state = 4}, - [1985] = {.lex_state = 18, .external_lex_state = 4}, - [1986] = {.lex_state = 18, .external_lex_state = 4}, - [1987] = {.lex_state = 21, .external_lex_state = 4}, - [1988] = {.lex_state = 18, .external_lex_state = 4}, - [1989] = {.lex_state = 18, .external_lex_state = 4}, - [1990] = {.lex_state = 21, .external_lex_state = 4}, - [1991] = {.lex_state = 18, .external_lex_state = 4}, - [1992] = {.lex_state = 21, .external_lex_state = 4}, - [1993] = {.lex_state = 21, .external_lex_state = 4}, - [1994] = {.lex_state = 22, .external_lex_state = 3}, - [1995] = {.lex_state = 18, .external_lex_state = 4}, - [1996] = {.lex_state = 18, .external_lex_state = 4}, - [1997] = {.lex_state = 22, .external_lex_state = 3}, - [1998] = {.lex_state = 18, .external_lex_state = 3}, - [1999] = {.lex_state = 18, .external_lex_state = 4}, + [1840] = {.lex_state = 21, .external_lex_state = 4}, + [1841] = {.lex_state = 18, .external_lex_state = 3}, + [1842] = {.lex_state = 18, .external_lex_state = 4}, + [1843] = {.lex_state = 21, .external_lex_state = 4}, + [1844] = {.lex_state = 21, .external_lex_state = 4}, + [1845] = {.lex_state = 18, .external_lex_state = 4}, + [1846] = {.lex_state = 18, .external_lex_state = 4}, + [1847] = {.lex_state = 22, .external_lex_state = 3}, + [1848] = {.lex_state = 18, .external_lex_state = 4}, + [1849] = {.lex_state = 22, .external_lex_state = 3}, + [1850] = {.lex_state = 18, .external_lex_state = 3}, + [1851] = {.lex_state = 18, .external_lex_state = 4}, + [1852] = {.lex_state = 18, .external_lex_state = 4}, + [1853] = {.lex_state = 24, .external_lex_state = 3}, + [1854] = {.lex_state = 24, .external_lex_state = 3}, + [1855] = {.lex_state = 18, .external_lex_state = 4}, + [1856] = {.lex_state = 24, .external_lex_state = 4}, + [1857] = {.lex_state = 24, .external_lex_state = 3}, + [1858] = {.lex_state = 18, .external_lex_state = 3}, + [1859] = {.lex_state = 18, .external_lex_state = 4}, + [1860] = {.lex_state = 18, .external_lex_state = 3}, + [1861] = {.lex_state = 18, .external_lex_state = 4}, + [1862] = {.lex_state = 18, .external_lex_state = 4}, + [1863] = {.lex_state = 18, .external_lex_state = 4}, + [1864] = {.lex_state = 24, .external_lex_state = 3}, + [1865] = {.lex_state = 18, .external_lex_state = 4}, + [1866] = {.lex_state = 24, .external_lex_state = 4}, + [1867] = {.lex_state = 18, .external_lex_state = 4}, + [1868] = {.lex_state = 24, .external_lex_state = 4}, + [1869] = {.lex_state = 18, .external_lex_state = 4}, + [1870] = {.lex_state = 18, .external_lex_state = 4}, + [1871] = {.lex_state = 18, .external_lex_state = 4}, + [1872] = {.lex_state = 18, .external_lex_state = 3}, + [1873] = {.lex_state = 24, .external_lex_state = 4}, + [1874] = {.lex_state = 24, .external_lex_state = 3}, + [1875] = {.lex_state = 18, .external_lex_state = 4}, + [1876] = {.lex_state = 24, .external_lex_state = 3}, + [1877] = {.lex_state = 24, .external_lex_state = 3}, + [1878] = {.lex_state = 18, .external_lex_state = 4}, + [1879] = {.lex_state = 24, .external_lex_state = 3}, + [1880] = {.lex_state = 18, .external_lex_state = 4}, + [1881] = {.lex_state = 24, .external_lex_state = 4}, + [1882] = {.lex_state = 18, .external_lex_state = 4}, + [1883] = {.lex_state = 18, .external_lex_state = 3}, + [1884] = {.lex_state = 24, .external_lex_state = 4}, + [1885] = {.lex_state = 18, .external_lex_state = 4}, + [1886] = {.lex_state = 18, .external_lex_state = 4}, + [1887] = {.lex_state = 18, .external_lex_state = 3}, + [1888] = {.lex_state = 18, .external_lex_state = 4}, + [1889] = {.lex_state = 24, .external_lex_state = 4}, + [1890] = {.lex_state = 24, .external_lex_state = 4}, + [1891] = {.lex_state = 21, .external_lex_state = 3}, + [1892] = {.lex_state = 18, .external_lex_state = 3}, + [1893] = {.lex_state = 24, .external_lex_state = 4}, + [1894] = {.lex_state = 24, .external_lex_state = 3}, + [1895] = {.lex_state = 24, .external_lex_state = 3}, + [1896] = {.lex_state = 18, .external_lex_state = 3}, + [1897] = {.lex_state = 18, .external_lex_state = 3}, + [1898] = {.lex_state = 21, .external_lex_state = 3}, + [1899] = {.lex_state = 24, .external_lex_state = 3}, + [1900] = {.lex_state = 24, .external_lex_state = 3}, + [1901] = {.lex_state = 24, .external_lex_state = 3}, + [1902] = {.lex_state = 24, .external_lex_state = 4}, + [1903] = {.lex_state = 21, .external_lex_state = 3}, + [1904] = {.lex_state = 24, .external_lex_state = 3}, + [1905] = {.lex_state = 24, .external_lex_state = 3}, + [1906] = {.lex_state = 37, .external_lex_state = 2}, + [1907] = {.lex_state = 37, .external_lex_state = 2}, + [1908] = {.lex_state = 24, .external_lex_state = 3}, + [1909] = {.lex_state = 18, .external_lex_state = 3}, + [1910] = {.lex_state = 24, .external_lex_state = 3}, + [1911] = {.lex_state = 21, .external_lex_state = 3}, + [1912] = {.lex_state = 24, .external_lex_state = 3}, + [1913] = {.lex_state = 18, .external_lex_state = 3}, + [1914] = {.lex_state = 24, .external_lex_state = 4}, + [1915] = {.lex_state = 24, .external_lex_state = 3}, + [1916] = {.lex_state = 24, .external_lex_state = 3}, + [1917] = {.lex_state = 18, .external_lex_state = 3}, + [1918] = {.lex_state = 18, .external_lex_state = 3}, + [1919] = {.lex_state = 24, .external_lex_state = 3}, + [1920] = {.lex_state = 18, .external_lex_state = 3}, + [1921] = {.lex_state = 24, .external_lex_state = 3}, + [1922] = {.lex_state = 24, .external_lex_state = 3}, + [1923] = {.lex_state = 18, .external_lex_state = 3}, + [1924] = {.lex_state = 24, .external_lex_state = 4}, + [1925] = {.lex_state = 24, .external_lex_state = 3}, + [1926] = {.lex_state = 24, .external_lex_state = 4}, + [1927] = {.lex_state = 18, .external_lex_state = 3}, + [1928] = {.lex_state = 24, .external_lex_state = 4}, + [1929] = {.lex_state = 24, .external_lex_state = 3}, + [1930] = {.lex_state = 24, .external_lex_state = 3}, + [1931] = {.lex_state = 24, .external_lex_state = 3}, + [1932] = {.lex_state = 18, .external_lex_state = 3}, + [1933] = {.lex_state = 24, .external_lex_state = 3}, + [1934] = {.lex_state = 18, .external_lex_state = 3}, + [1935] = {.lex_state = 37, .external_lex_state = 2}, + [1936] = {.lex_state = 18, .external_lex_state = 3}, + [1937] = {.lex_state = 24, .external_lex_state = 3}, + [1938] = {.lex_state = 24, .external_lex_state = 3}, + [1939] = {.lex_state = 24, .external_lex_state = 3}, + [1940] = {.lex_state = 24, .external_lex_state = 3}, + [1941] = {.lex_state = 18, .external_lex_state = 4}, + [1942] = {.lex_state = 24, .external_lex_state = 3}, + [1943] = {.lex_state = 24, .external_lex_state = 4}, + [1944] = {.lex_state = 24, .external_lex_state = 3}, + [1945] = {.lex_state = 18, .external_lex_state = 4}, + [1946] = {.lex_state = 37, .external_lex_state = 2}, + [1947] = {.lex_state = 24, .external_lex_state = 3}, + [1948] = {.lex_state = 18, .external_lex_state = 4}, + [1949] = {.lex_state = 24, .external_lex_state = 4}, + [1950] = {.lex_state = 24, .external_lex_state = 3}, + [1951] = {.lex_state = 18, .external_lex_state = 4}, + [1952] = {.lex_state = 24, .external_lex_state = 4}, + [1953] = {.lex_state = 24, .external_lex_state = 3}, + [1954] = {.lex_state = 24, .external_lex_state = 3}, + [1955] = {.lex_state = 37, .external_lex_state = 2}, + [1956] = {.lex_state = 37, .external_lex_state = 2}, + [1957] = {.lex_state = 24, .external_lex_state = 3}, + [1958] = {.lex_state = 24, .external_lex_state = 3}, + [1959] = {.lex_state = 24, .external_lex_state = 3}, + [1960] = {.lex_state = 24, .external_lex_state = 3}, + [1961] = {.lex_state = 24, .external_lex_state = 3}, + [1962] = {.lex_state = 24, .external_lex_state = 3}, + [1963] = {.lex_state = 18, .external_lex_state = 4}, + [1964] = {.lex_state = 24, .external_lex_state = 4}, + [1965] = {.lex_state = 24, .external_lex_state = 3}, + [1966] = {.lex_state = 37, .external_lex_state = 2}, + [1967] = {.lex_state = 24, .external_lex_state = 3}, + [1968] = {.lex_state = 24, .external_lex_state = 4}, + [1969] = {.lex_state = 24, .external_lex_state = 3}, + [1970] = {.lex_state = 24, .external_lex_state = 3}, + [1971] = {.lex_state = 37, .external_lex_state = 2}, + [1972] = {.lex_state = 24, .external_lex_state = 3}, + [1973] = {.lex_state = 24, .external_lex_state = 4}, + [1974] = {.lex_state = 24, .external_lex_state = 4}, + [1975] = {.lex_state = 24, .external_lex_state = 3}, + [1976] = {.lex_state = 24, .external_lex_state = 4}, + [1977] = {.lex_state = 24, .external_lex_state = 4}, + [1978] = {.lex_state = 37, .external_lex_state = 2}, + [1979] = {.lex_state = 24, .external_lex_state = 4}, + [1980] = {.lex_state = 37, .external_lex_state = 2}, + [1981] = {.lex_state = 24, .external_lex_state = 3}, + [1982] = {.lex_state = 24, .external_lex_state = 4}, + [1983] = {.lex_state = 37, .external_lex_state = 2}, + [1984] = {.lex_state = 24, .external_lex_state = 4}, + [1985] = {.lex_state = 24, .external_lex_state = 4}, + [1986] = {.lex_state = 24, .external_lex_state = 3}, + [1987] = {.lex_state = 24, .external_lex_state = 4}, + [1988] = {.lex_state = 37, .external_lex_state = 2}, + [1989] = {.lex_state = 24, .external_lex_state = 4}, + [1990] = {.lex_state = 24, .external_lex_state = 4}, + [1991] = {.lex_state = 24, .external_lex_state = 4}, + [1992] = {.lex_state = 24, .external_lex_state = 4}, + [1993] = {.lex_state = 24, .external_lex_state = 4}, + [1994] = {.lex_state = 24, .external_lex_state = 4}, + [1995] = {.lex_state = 24, .external_lex_state = 4}, + [1996] = {.lex_state = 24, .external_lex_state = 4}, + [1997] = {.lex_state = 24, .external_lex_state = 4}, + [1998] = {.lex_state = 24, .external_lex_state = 3}, + [1999] = {.lex_state = 24, .external_lex_state = 4}, [2000] = {.lex_state = 24, .external_lex_state = 4}, - [2001] = {.lex_state = 24, .external_lex_state = 3}, - [2002] = {.lex_state = 18, .external_lex_state = 3}, - [2003] = {.lex_state = 24, .external_lex_state = 3}, - [2004] = {.lex_state = 24, .external_lex_state = 3}, - [2005] = {.lex_state = 18, .external_lex_state = 4}, - [2006] = {.lex_state = 24, .external_lex_state = 3}, - [2007] = {.lex_state = 24, .external_lex_state = 3}, - [2008] = {.lex_state = 18, .external_lex_state = 4}, - [2009] = {.lex_state = 18, .external_lex_state = 3}, - [2010] = {.lex_state = 18, .external_lex_state = 4}, - [2011] = {.lex_state = 18, .external_lex_state = 4}, - [2012] = {.lex_state = 18, .external_lex_state = 3}, - [2013] = {.lex_state = 18, .external_lex_state = 4}, - [2014] = {.lex_state = 24, .external_lex_state = 4}, - [2015] = {.lex_state = 24, .external_lex_state = 4}, - [2016] = {.lex_state = 18, .external_lex_state = 4}, - [2017] = {.lex_state = 18, .external_lex_state = 4}, - [2018] = {.lex_state = 18, .external_lex_state = 4}, - [2019] = {.lex_state = 24, .external_lex_state = 3}, - [2020] = {.lex_state = 18, .external_lex_state = 4}, - [2021] = {.lex_state = 18, .external_lex_state = 4}, + [2001] = {.lex_state = 24, .external_lex_state = 4}, + [2002] = {.lex_state = 24, .external_lex_state = 3}, + [2003] = {.lex_state = 24, .external_lex_state = 4}, + [2004] = {.lex_state = 24, .external_lex_state = 4}, + [2005] = {.lex_state = 24, .external_lex_state = 4}, + [2006] = {.lex_state = 24, .external_lex_state = 4}, + [2007] = {.lex_state = 37, .external_lex_state = 2}, + [2008] = {.lex_state = 24, .external_lex_state = 4}, + [2009] = {.lex_state = 24, .external_lex_state = 4}, + [2010] = {.lex_state = 24, .external_lex_state = 3}, + [2011] = {.lex_state = 24, .external_lex_state = 4}, + [2012] = {.lex_state = 37, .external_lex_state = 2}, + [2013] = {.lex_state = 24, .external_lex_state = 3}, + [2014] = {.lex_state = 37, .external_lex_state = 2}, + [2015] = {.lex_state = 37, .external_lex_state = 2}, + [2016] = {.lex_state = 24, .external_lex_state = 4}, + [2017] = {.lex_state = 24, .external_lex_state = 4}, + [2018] = {.lex_state = 24, .external_lex_state = 4}, + [2019] = {.lex_state = 24, .external_lex_state = 4}, + [2020] = {.lex_state = 24, .external_lex_state = 4}, + [2021] = {.lex_state = 24, .external_lex_state = 3}, [2022] = {.lex_state = 24, .external_lex_state = 3}, - [2023] = {.lex_state = 24, .external_lex_state = 4}, - [2024] = {.lex_state = 18, .external_lex_state = 4}, + [2023] = {.lex_state = 24, .external_lex_state = 3}, + [2024] = {.lex_state = 24, .external_lex_state = 3}, [2025] = {.lex_state = 24, .external_lex_state = 4}, - [2026] = {.lex_state = 18, .external_lex_state = 3}, - [2027] = {.lex_state = 18, .external_lex_state = 3}, + [2026] = {.lex_state = 24, .external_lex_state = 4}, + [2027] = {.lex_state = 24, .external_lex_state = 3}, [2028] = {.lex_state = 18, .external_lex_state = 4}, - [2029] = {.lex_state = 24, .external_lex_state = 4}, - [2030] = {.lex_state = 24, .external_lex_state = 4}, - [2031] = {.lex_state = 18, .external_lex_state = 4}, - [2032] = {.lex_state = 18, .external_lex_state = 4}, - [2033] = {.lex_state = 18, .external_lex_state = 4}, - [2034] = {.lex_state = 18, .external_lex_state = 4}, - [2035] = {.lex_state = 24, .external_lex_state = 3}, - [2036] = {.lex_state = 18, .external_lex_state = 4}, + [2029] = {.lex_state = 24, .external_lex_state = 3}, + [2030] = {.lex_state = 18, .external_lex_state = 4}, + [2031] = {.lex_state = 24, .external_lex_state = 3}, + [2032] = {.lex_state = 24, .external_lex_state = 3}, + [2033] = {.lex_state = 24, .external_lex_state = 3}, + [2034] = {.lex_state = 24, .external_lex_state = 3}, + [2035] = {.lex_state = 18, .external_lex_state = 4}, + [2036] = {.lex_state = 24, .external_lex_state = 3}, [2037] = {.lex_state = 18, .external_lex_state = 4}, - [2038] = {.lex_state = 21, .external_lex_state = 3}, + [2038] = {.lex_state = 24, .external_lex_state = 4}, [2039] = {.lex_state = 24, .external_lex_state = 3}, [2040] = {.lex_state = 24, .external_lex_state = 3}, - [2041] = {.lex_state = 21, .external_lex_state = 3}, - [2042] = {.lex_state = 24, .external_lex_state = 4}, - [2043] = {.lex_state = 24, .external_lex_state = 4}, - [2044] = {.lex_state = 18, .external_lex_state = 3}, + [2041] = {.lex_state = 18, .external_lex_state = 4}, + [2042] = {.lex_state = 18, .external_lex_state = 4}, + [2043] = {.lex_state = 24, .external_lex_state = 3}, + [2044] = {.lex_state = 24, .external_lex_state = 3}, [2045] = {.lex_state = 24, .external_lex_state = 3}, - [2046] = {.lex_state = 18, .external_lex_state = 3}, - [2047] = {.lex_state = 21, .external_lex_state = 3}, - [2048] = {.lex_state = 24, .external_lex_state = 3}, - [2049] = {.lex_state = 18, .external_lex_state = 3}, - [2050] = {.lex_state = 24, .external_lex_state = 4}, - [2051] = {.lex_state = 24, .external_lex_state = 3}, - [2052] = {.lex_state = 24, .external_lex_state = 3}, - [2053] = {.lex_state = 18, .external_lex_state = 3}, - [2054] = {.lex_state = 37, .external_lex_state = 2}, + [2046] = {.lex_state = 24, .external_lex_state = 3}, + [2047] = {.lex_state = 24, .external_lex_state = 4}, + [2048] = {.lex_state = 38, .external_lex_state = 2}, + [2049] = {.lex_state = 38, .external_lex_state = 2}, + [2050] = {.lex_state = 38, .external_lex_state = 2}, + [2051] = {.lex_state = 24, .external_lex_state = 4}, + [2052] = {.lex_state = 38, .external_lex_state = 2}, + [2053] = {.lex_state = 38, .external_lex_state = 2}, + [2054] = {.lex_state = 38, .external_lex_state = 2}, [2055] = {.lex_state = 24, .external_lex_state = 3}, - [2056] = {.lex_state = 24, .external_lex_state = 3}, - [2057] = {.lex_state = 18, .external_lex_state = 3}, - [2058] = {.lex_state = 24, .external_lex_state = 4}, - [2059] = {.lex_state = 18, .external_lex_state = 3}, + [2056] = {.lex_state = 24, .external_lex_state = 4}, + [2057] = {.lex_state = 38, .external_lex_state = 2}, + [2058] = {.lex_state = 24, .external_lex_state = 3}, + [2059] = {.lex_state = 24, .external_lex_state = 4}, [2060] = {.lex_state = 24, .external_lex_state = 3}, [2061] = {.lex_state = 24, .external_lex_state = 3}, - [2062] = {.lex_state = 24, .external_lex_state = 3}, - [2063] = {.lex_state = 18, .external_lex_state = 3}, + [2062] = {.lex_state = 24, .external_lex_state = 4}, + [2063] = {.lex_state = 24, .external_lex_state = 3}, [2064] = {.lex_state = 24, .external_lex_state = 3}, - [2065] = {.lex_state = 18, .external_lex_state = 3}, + [2065] = {.lex_state = 24, .external_lex_state = 4}, [2066] = {.lex_state = 24, .external_lex_state = 3}, [2067] = {.lex_state = 24, .external_lex_state = 3}, - [2068] = {.lex_state = 21, .external_lex_state = 3}, - [2069] = {.lex_state = 24, .external_lex_state = 3}, - [2070] = {.lex_state = 24, .external_lex_state = 4}, - [2071] = {.lex_state = 18, .external_lex_state = 3}, - [2072] = {.lex_state = 24, .external_lex_state = 4}, - [2073] = {.lex_state = 37, .external_lex_state = 2}, - [2074] = {.lex_state = 18, .external_lex_state = 3}, - [2075] = {.lex_state = 37, .external_lex_state = 2}, - [2076] = {.lex_state = 18, .external_lex_state = 3}, + [2068] = {.lex_state = 38, .external_lex_state = 2}, + [2069] = {.lex_state = 38, .external_lex_state = 2}, + [2070] = {.lex_state = 24, .external_lex_state = 3}, + [2071] = {.lex_state = 24, .external_lex_state = 3}, + [2072] = {.lex_state = 24, .external_lex_state = 3}, + [2073] = {.lex_state = 24, .external_lex_state = 3}, + [2074] = {.lex_state = 24, .external_lex_state = 3}, + [2075] = {.lex_state = 24, .external_lex_state = 3}, + [2076] = {.lex_state = 24, .external_lex_state = 3}, [2077] = {.lex_state = 24, .external_lex_state = 3}, [2078] = {.lex_state = 24, .external_lex_state = 3}, - [2079] = {.lex_state = 24, .external_lex_state = 4}, + [2079] = {.lex_state = 24, .external_lex_state = 3}, [2080] = {.lex_state = 24, .external_lex_state = 3}, - [2081] = {.lex_state = 18, .external_lex_state = 3}, - [2082] = {.lex_state = 18, .external_lex_state = 3}, + [2081] = {.lex_state = 24, .external_lex_state = 3}, + [2082] = {.lex_state = 24, .external_lex_state = 3}, [2083] = {.lex_state = 24, .external_lex_state = 3}, - [2084] = {.lex_state = 24, .external_lex_state = 3}, - [2085] = {.lex_state = 18, .external_lex_state = 4}, + [2084] = {.lex_state = 24, .external_lex_state = 4}, + [2085] = {.lex_state = 24, .external_lex_state = 3}, [2086] = {.lex_state = 24, .external_lex_state = 3}, - [2087] = {.lex_state = 24, .external_lex_state = 4}, + [2087] = {.lex_state = 24, .external_lex_state = 3}, [2088] = {.lex_state = 24, .external_lex_state = 3}, - [2089] = {.lex_state = 24, .external_lex_state = 3}, - [2090] = {.lex_state = 37, .external_lex_state = 2}, - [2091] = {.lex_state = 18, .external_lex_state = 4}, - [2092] = {.lex_state = 24, .external_lex_state = 3}, - [2093] = {.lex_state = 24, .external_lex_state = 4}, + [2089] = {.lex_state = 38, .external_lex_state = 2}, + [2090] = {.lex_state = 38, .external_lex_state = 2}, + [2091] = {.lex_state = 24, .external_lex_state = 3}, + [2092] = {.lex_state = 38, .external_lex_state = 2}, + [2093] = {.lex_state = 24, .external_lex_state = 3}, [2094] = {.lex_state = 24, .external_lex_state = 3}, - [2095] = {.lex_state = 18, .external_lex_state = 4}, + [2095] = {.lex_state = 38, .external_lex_state = 2}, [2096] = {.lex_state = 24, .external_lex_state = 3}, - [2097] = {.lex_state = 24, .external_lex_state = 4}, - [2098] = {.lex_state = 24, .external_lex_state = 3}, + [2097] = {.lex_state = 38, .external_lex_state = 2}, + [2098] = {.lex_state = 38, .external_lex_state = 2}, [2099] = {.lex_state = 24, .external_lex_state = 3}, - [2100] = {.lex_state = 37, .external_lex_state = 2}, + [2100] = {.lex_state = 24, .external_lex_state = 3}, [2101] = {.lex_state = 24, .external_lex_state = 3}, [2102] = {.lex_state = 24, .external_lex_state = 3}, - [2103] = {.lex_state = 24, .external_lex_state = 3}, - [2104] = {.lex_state = 18, .external_lex_state = 4}, - [2105] = {.lex_state = 24, .external_lex_state = 3}, - [2106] = {.lex_state = 24, .external_lex_state = 3}, - [2107] = {.lex_state = 18, .external_lex_state = 4}, - [2108] = {.lex_state = 37, .external_lex_state = 2}, + [2103] = {.lex_state = 38, .external_lex_state = 2}, + [2104] = {.lex_state = 38, .external_lex_state = 2}, + [2105] = {.lex_state = 38, .external_lex_state = 2}, + [2106] = {.lex_state = 38, .external_lex_state = 2}, + [2107] = {.lex_state = 38, .external_lex_state = 2}, + [2108] = {.lex_state = 38, .external_lex_state = 2}, [2109] = {.lex_state = 24, .external_lex_state = 3}, [2110] = {.lex_state = 24, .external_lex_state = 3}, [2111] = {.lex_state = 24, .external_lex_state = 3}, - [2112] = {.lex_state = 24, .external_lex_state = 4}, - [2113] = {.lex_state = 37, .external_lex_state = 2}, - [2114] = {.lex_state = 37, .external_lex_state = 2}, - [2115] = {.lex_state = 24, .external_lex_state = 4}, - [2116] = {.lex_state = 24, .external_lex_state = 4}, - [2117] = {.lex_state = 24, .external_lex_state = 4}, - [2118] = {.lex_state = 24, .external_lex_state = 4}, - [2119] = {.lex_state = 24, .external_lex_state = 3}, - [2120] = {.lex_state = 24, .external_lex_state = 4}, - [2121] = {.lex_state = 24, .external_lex_state = 4}, - [2122] = {.lex_state = 24, .external_lex_state = 4}, - [2123] = {.lex_state = 24, .external_lex_state = 4}, - [2124] = {.lex_state = 24, .external_lex_state = 4}, - [2125] = {.lex_state = 24, .external_lex_state = 4}, - [2126] = {.lex_state = 24, .external_lex_state = 4}, - [2127] = {.lex_state = 24, .external_lex_state = 4}, + [2112] = {.lex_state = 24, .external_lex_state = 3}, + [2113] = {.lex_state = 38, .external_lex_state = 2}, + [2114] = {.lex_state = 38, .external_lex_state = 2}, + [2115] = {.lex_state = 24, .external_lex_state = 3}, + [2116] = {.lex_state = 24, .external_lex_state = 3}, + [2117] = {.lex_state = 38, .external_lex_state = 2}, + [2118] = {.lex_state = 24, .external_lex_state = 3}, + [2119] = {.lex_state = 38, .external_lex_state = 2}, + [2120] = {.lex_state = 38, .external_lex_state = 2}, + [2121] = {.lex_state = 38, .external_lex_state = 2}, + [2122] = {.lex_state = 24, .external_lex_state = 3}, + [2123] = {.lex_state = 38, .external_lex_state = 2}, + [2124] = {.lex_state = 24, .external_lex_state = 3}, + [2125] = {.lex_state = 38, .external_lex_state = 2}, + [2126] = {.lex_state = 24, .external_lex_state = 3}, + [2127] = {.lex_state = 38, .external_lex_state = 2}, [2128] = {.lex_state = 24, .external_lex_state = 3}, - [2129] = {.lex_state = 24, .external_lex_state = 4}, - [2130] = {.lex_state = 24, .external_lex_state = 4}, - [2131] = {.lex_state = 24, .external_lex_state = 3}, - [2132] = {.lex_state = 24, .external_lex_state = 4}, - [2133] = {.lex_state = 24, .external_lex_state = 4}, + [2129] = {.lex_state = 38, .external_lex_state = 2}, + [2130] = {.lex_state = 38, .external_lex_state = 2}, + [2131] = {.lex_state = 38, .external_lex_state = 2}, + [2132] = {.lex_state = 38, .external_lex_state = 2}, + [2133] = {.lex_state = 38, .external_lex_state = 2}, [2134] = {.lex_state = 24, .external_lex_state = 3}, - [2135] = {.lex_state = 24, .external_lex_state = 4}, + [2135] = {.lex_state = 38, .external_lex_state = 2}, [2136] = {.lex_state = 24, .external_lex_state = 3}, - [2137] = {.lex_state = 24, .external_lex_state = 4}, - [2138] = {.lex_state = 24, .external_lex_state = 4}, + [2137] = {.lex_state = 24, .external_lex_state = 3}, + [2138] = {.lex_state = 24, .external_lex_state = 3}, [2139] = {.lex_state = 24, .external_lex_state = 3}, - [2140] = {.lex_state = 24, .external_lex_state = 4}, - [2141] = {.lex_state = 37, .external_lex_state = 2}, - [2142] = {.lex_state = 24, .external_lex_state = 4}, - [2143] = {.lex_state = 24, .external_lex_state = 4}, - [2144] = {.lex_state = 24, .external_lex_state = 4}, - [2145] = {.lex_state = 37, .external_lex_state = 2}, - [2146] = {.lex_state = 24, .external_lex_state = 4}, - [2147] = {.lex_state = 37, .external_lex_state = 2}, - [2148] = {.lex_state = 24, .external_lex_state = 3}, - [2149] = {.lex_state = 37, .external_lex_state = 2}, - [2150] = {.lex_state = 37, .external_lex_state = 2}, - [2151] = {.lex_state = 24, .external_lex_state = 3}, - [2152] = {.lex_state = 37, .external_lex_state = 2}, - [2153] = {.lex_state = 24, .external_lex_state = 4}, - [2154] = {.lex_state = 24, .external_lex_state = 3}, - [2155] = {.lex_state = 24, .external_lex_state = 4}, - [2156] = {.lex_state = 24, .external_lex_state = 4}, - [2157] = {.lex_state = 24, .external_lex_state = 4}, - [2158] = {.lex_state = 24, .external_lex_state = 4}, - [2159] = {.lex_state = 24, .external_lex_state = 3}, - [2160] = {.lex_state = 24, .external_lex_state = 4}, - [2161] = {.lex_state = 37, .external_lex_state = 2}, - [2162] = {.lex_state = 24, .external_lex_state = 4}, - [2163] = {.lex_state = 24, .external_lex_state = 3}, - [2164] = {.lex_state = 24, .external_lex_state = 3}, - [2165] = {.lex_state = 24, .external_lex_state = 3}, - [2166] = {.lex_state = 37, .external_lex_state = 2}, - [2167] = {.lex_state = 24, .external_lex_state = 3}, - [2168] = {.lex_state = 24, .external_lex_state = 4}, - [2169] = {.lex_state = 24, .external_lex_state = 4}, - [2170] = {.lex_state = 24, .external_lex_state = 4}, - [2171] = {.lex_state = 24, .external_lex_state = 3}, - [2172] = {.lex_state = 18, .external_lex_state = 4}, - [2173] = {.lex_state = 24, .external_lex_state = 3}, - [2174] = {.lex_state = 24, .external_lex_state = 3}, - [2175] = {.lex_state = 24, .external_lex_state = 4}, - [2176] = {.lex_state = 18, .external_lex_state = 4}, - [2177] = {.lex_state = 24, .external_lex_state = 4}, - [2178] = {.lex_state = 18, .external_lex_state = 4}, - [2179] = {.lex_state = 24, .external_lex_state = 3}, - [2180] = {.lex_state = 18, .external_lex_state = 4}, - [2181] = {.lex_state = 24, .external_lex_state = 3}, - [2182] = {.lex_state = 24, .external_lex_state = 3}, - [2183] = {.lex_state = 24, .external_lex_state = 3}, - [2184] = {.lex_state = 24, .external_lex_state = 4}, - [2185] = {.lex_state = 24, .external_lex_state = 3}, - [2186] = {.lex_state = 18, .external_lex_state = 4}, - [2187] = {.lex_state = 24, .external_lex_state = 3}, - [2188] = {.lex_state = 18, .external_lex_state = 4}, - [2189] = {.lex_state = 24, .external_lex_state = 3}, - [2190] = {.lex_state = 24, .external_lex_state = 3}, - [2191] = {.lex_state = 24, .external_lex_state = 3}, + [2140] = {.lex_state = 24, .external_lex_state = 3}, + [2141] = {.lex_state = 24, .external_lex_state = 3}, + [2142] = {.lex_state = 24, .external_lex_state = 3}, + [2143] = {.lex_state = 24, .external_lex_state = 3}, + [2144] = {.lex_state = 24, .external_lex_state = 3}, + [2145] = {.lex_state = 38, .external_lex_state = 2}, + [2146] = {.lex_state = 38, .external_lex_state = 2}, + [2147] = {.lex_state = 38, .external_lex_state = 2}, + [2148] = {.lex_state = 38, .external_lex_state = 2}, + [2149] = {.lex_state = 38, .external_lex_state = 2}, + [2150] = {.lex_state = 38, .external_lex_state = 2}, + [2151] = {.lex_state = 38, .external_lex_state = 2}, + [2152] = {.lex_state = 38, .external_lex_state = 2}, + [2153] = {.lex_state = 38, .external_lex_state = 2}, + [2154] = {.lex_state = 38, .external_lex_state = 2}, + [2155] = {.lex_state = 48, .external_lex_state = 5}, + [2156] = {.lex_state = 48, .external_lex_state = 5}, + [2157] = {.lex_state = 48, .external_lex_state = 5}, + [2158] = {.lex_state = 48, .external_lex_state = 5}, + [2159] = {.lex_state = 48, .external_lex_state = 5}, + [2160] = {.lex_state = 38, .external_lex_state = 2}, + [2161] = {.lex_state = 38, .external_lex_state = 2}, + [2162] = {.lex_state = 39, .external_lex_state = 2}, + [2163] = {.lex_state = 38, .external_lex_state = 2}, + [2164] = {.lex_state = 38, .external_lex_state = 2}, + [2165] = {.lex_state = 38, .external_lex_state = 2}, + [2166] = {.lex_state = 39, .external_lex_state = 2}, + [2167] = {.lex_state = 38, .external_lex_state = 2}, + [2168] = {.lex_state = 38, .external_lex_state = 2}, + [2169] = {.lex_state = 38, .external_lex_state = 2}, + [2170] = {.lex_state = 38, .external_lex_state = 2}, + [2171] = {.lex_state = 39, .external_lex_state = 2}, + [2172] = {.lex_state = 38, .external_lex_state = 2}, + [2173] = {.lex_state = 38, .external_lex_state = 2}, + [2174] = {.lex_state = 38, .external_lex_state = 2}, + [2175] = {.lex_state = 39, .external_lex_state = 2}, + [2176] = {.lex_state = 38, .external_lex_state = 2}, + [2177] = {.lex_state = 38, .external_lex_state = 2}, + [2178] = {.lex_state = 38, .external_lex_state = 2}, + [2179] = {.lex_state = 38, .external_lex_state = 2}, + [2180] = {.lex_state = 38, .external_lex_state = 2}, + [2181] = {.lex_state = 38, .external_lex_state = 2}, + [2182] = {.lex_state = 39, .external_lex_state = 2}, + [2183] = {.lex_state = 38, .external_lex_state = 2}, + [2184] = {.lex_state = 38, .external_lex_state = 2}, + [2185] = {.lex_state = 38, .external_lex_state = 2}, + [2186] = {.lex_state = 38, .external_lex_state = 2}, + [2187] = {.lex_state = 38, .external_lex_state = 2}, + [2188] = {.lex_state = 38, .external_lex_state = 2}, + [2189] = {.lex_state = 38, .external_lex_state = 2}, + [2190] = {.lex_state = 39, .external_lex_state = 2}, + [2191] = {.lex_state = 38, .external_lex_state = 2}, [2192] = {.lex_state = 38, .external_lex_state = 2}, [2193] = {.lex_state = 38, .external_lex_state = 2}, - [2194] = {.lex_state = 24, .external_lex_state = 3}, - [2195] = {.lex_state = 24, .external_lex_state = 4}, - [2196] = {.lex_state = 24, .external_lex_state = 3}, - [2197] = {.lex_state = 24, .external_lex_state = 3}, - [2198] = {.lex_state = 24, .external_lex_state = 3}, - [2199] = {.lex_state = 24, .external_lex_state = 3}, - [2200] = {.lex_state = 24, .external_lex_state = 4}, - [2201] = {.lex_state = 24, .external_lex_state = 3}, - [2202] = {.lex_state = 24, .external_lex_state = 3}, - [2203] = {.lex_state = 24, .external_lex_state = 3}, - [2204] = {.lex_state = 24, .external_lex_state = 4}, - [2205] = {.lex_state = 24, .external_lex_state = 4}, - [2206] = {.lex_state = 24, .external_lex_state = 4}, - [2207] = {.lex_state = 24, .external_lex_state = 3}, - [2208] = {.lex_state = 38, .external_lex_state = 2}, - [2209] = {.lex_state = 24, .external_lex_state = 3}, - [2210] = {.lex_state = 24, .external_lex_state = 4}, - [2211] = {.lex_state = 24, .external_lex_state = 3}, - [2212] = {.lex_state = 38, .external_lex_state = 2}, - [2213] = {.lex_state = 38, .external_lex_state = 2}, - [2214] = {.lex_state = 24, .external_lex_state = 3}, - [2215] = {.lex_state = 38, .external_lex_state = 2}, - [2216] = {.lex_state = 38, .external_lex_state = 2}, - [2217] = {.lex_state = 38, .external_lex_state = 2}, - [2218] = {.lex_state = 38, .external_lex_state = 2}, - [2219] = {.lex_state = 24, .external_lex_state = 3}, - [2220] = {.lex_state = 24, .external_lex_state = 3}, - [2221] = {.lex_state = 24, .external_lex_state = 4}, - [2222] = {.lex_state = 24, .external_lex_state = 3}, - [2223] = {.lex_state = 24, .external_lex_state = 3}, - [2224] = {.lex_state = 24, .external_lex_state = 3}, - [2225] = {.lex_state = 24, .external_lex_state = 3}, - [2226] = {.lex_state = 24, .external_lex_state = 3}, - [2227] = {.lex_state = 24, .external_lex_state = 3}, - [2228] = {.lex_state = 24, .external_lex_state = 3}, - [2229] = {.lex_state = 24, .external_lex_state = 3}, - [2230] = {.lex_state = 24, .external_lex_state = 3}, - [2231] = {.lex_state = 24, .external_lex_state = 3}, - [2232] = {.lex_state = 24, .external_lex_state = 3}, - [2233] = {.lex_state = 38, .external_lex_state = 2}, - [2234] = {.lex_state = 38, .external_lex_state = 2}, - [2235] = {.lex_state = 24, .external_lex_state = 3}, - [2236] = {.lex_state = 38, .external_lex_state = 2}, - [2237] = {.lex_state = 24, .external_lex_state = 3}, - [2238] = {.lex_state = 24, .external_lex_state = 3}, - [2239] = {.lex_state = 24, .external_lex_state = 3}, - [2240] = {.lex_state = 38, .external_lex_state = 2}, - [2241] = {.lex_state = 24, .external_lex_state = 3}, - [2242] = {.lex_state = 38, .external_lex_state = 2}, - [2243] = {.lex_state = 38, .external_lex_state = 2}, - [2244] = {.lex_state = 24, .external_lex_state = 3}, - [2245] = {.lex_state = 24, .external_lex_state = 3}, - [2246] = {.lex_state = 38, .external_lex_state = 2}, - [2247] = {.lex_state = 24, .external_lex_state = 3}, - [2248] = {.lex_state = 24, .external_lex_state = 3}, - [2249] = {.lex_state = 24, .external_lex_state = 3}, - [2250] = {.lex_state = 24, .external_lex_state = 3}, - [2251] = {.lex_state = 38, .external_lex_state = 2}, - [2252] = {.lex_state = 38, .external_lex_state = 2}, - [2253] = {.lex_state = 24, .external_lex_state = 3}, - [2254] = {.lex_state = 24, .external_lex_state = 3}, - [2255] = {.lex_state = 24, .external_lex_state = 3}, - [2256] = {.lex_state = 38, .external_lex_state = 2}, - [2257] = {.lex_state = 38, .external_lex_state = 2}, - [2258] = {.lex_state = 38, .external_lex_state = 2}, - [2259] = {.lex_state = 24, .external_lex_state = 3}, - [2260] = {.lex_state = 38, .external_lex_state = 2}, - [2261] = {.lex_state = 38, .external_lex_state = 2}, - [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 = 24, .external_lex_state = 3}, - [2266] = {.lex_state = 38, .external_lex_state = 2}, - [2267] = {.lex_state = 38, .external_lex_state = 2}, - [2268] = {.lex_state = 24, .external_lex_state = 3}, - [2269] = {.lex_state = 38, .external_lex_state = 2}, - [2270] = {.lex_state = 24, .external_lex_state = 3}, - [2271] = {.lex_state = 24, .external_lex_state = 3}, - [2272] = {.lex_state = 38, .external_lex_state = 2}, - [2273] = {.lex_state = 38, .external_lex_state = 2}, - [2274] = {.lex_state = 38, .external_lex_state = 2}, - [2275] = {.lex_state = 24, .external_lex_state = 3}, - [2276] = {.lex_state = 24, .external_lex_state = 3}, - [2277] = {.lex_state = 24, .external_lex_state = 3}, - [2278] = {.lex_state = 24, .external_lex_state = 3}, - [2279] = {.lex_state = 24, .external_lex_state = 3}, - [2280] = {.lex_state = 38, .external_lex_state = 2}, - [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 = 24, .external_lex_state = 3}, - [2285] = {.lex_state = 24, .external_lex_state = 3}, - [2286] = {.lex_state = 24, .external_lex_state = 3}, - [2287] = {.lex_state = 24, .external_lex_state = 3}, - [2288] = {.lex_state = 24, .external_lex_state = 3}, - [2289] = {.lex_state = 24, .external_lex_state = 3}, - [2290] = {.lex_state = 24, .external_lex_state = 3}, - [2291] = {.lex_state = 24, .external_lex_state = 3}, - [2292] = {.lex_state = 24, .external_lex_state = 3}, - [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 = 38, .external_lex_state = 2}, - [2298] = {.lex_state = 38, .external_lex_state = 2}, - [2299] = {.lex_state = 38, .external_lex_state = 2}, - [2300] = {.lex_state = 38, .external_lex_state = 2}, - [2301] = {.lex_state = 38, .external_lex_state = 2}, - [2302] = {.lex_state = 38, .external_lex_state = 2}, - [2303] = {.lex_state = 48, .external_lex_state = 5}, - [2304] = {.lex_state = 48, .external_lex_state = 5}, - [2305] = {.lex_state = 48, .external_lex_state = 5}, - [2306] = {.lex_state = 48, .external_lex_state = 5}, - [2307] = {.lex_state = 48, .external_lex_state = 5}, - [2308] = {.lex_state = 38, .external_lex_state = 2}, - [2309] = {.lex_state = 39, .external_lex_state = 2}, - [2310] = {.lex_state = 38, .external_lex_state = 2}, - [2311] = {.lex_state = 38, .external_lex_state = 2}, - [2312] = {.lex_state = 38, .external_lex_state = 2}, - [2313] = {.lex_state = 39, .external_lex_state = 2}, - [2314] = {.lex_state = 39, .external_lex_state = 2}, - [2315] = {.lex_state = 39, .external_lex_state = 2}, - [2316] = {.lex_state = 38, .external_lex_state = 2}, - [2317] = {.lex_state = 38, .external_lex_state = 2}, - [2318] = {.lex_state = 38, .external_lex_state = 2}, - [2319] = {.lex_state = 38, .external_lex_state = 2}, - [2320] = {.lex_state = 38, .external_lex_state = 2}, - [2321] = {.lex_state = 38, .external_lex_state = 2}, - [2322] = {.lex_state = 38, .external_lex_state = 2}, - [2323] = {.lex_state = 38, .external_lex_state = 2}, - [2324] = {.lex_state = 38, .external_lex_state = 2}, - [2325] = {.lex_state = 38, .external_lex_state = 2}, - [2326] = {.lex_state = 39, .external_lex_state = 2}, - [2327] = {.lex_state = 39, .external_lex_state = 2}, - [2328] = {.lex_state = 38, .external_lex_state = 2}, - [2329] = {.lex_state = 38, .external_lex_state = 2}, - [2330] = {.lex_state = 38, .external_lex_state = 2}, - [2331] = {.lex_state = 38, .external_lex_state = 2}, - [2332] = {.lex_state = 38, .external_lex_state = 2}, - [2333] = {.lex_state = 38, .external_lex_state = 2}, - [2334] = {.lex_state = 39, .external_lex_state = 2}, - [2335] = {.lex_state = 38, .external_lex_state = 2}, - [2336] = {.lex_state = 38, .external_lex_state = 2}, - [2337] = {.lex_state = 38, .external_lex_state = 2}, - [2338] = {.lex_state = 38, .external_lex_state = 2}, - [2339] = {.lex_state = 38, .external_lex_state = 2}, - [2340] = {.lex_state = 38, .external_lex_state = 2}, - [2341] = {.lex_state = 38, .external_lex_state = 2}, - [2342] = {.lex_state = 38, .external_lex_state = 2}, - [2343] = {.lex_state = 38, .external_lex_state = 2}, - [2344] = {.lex_state = 38, .external_lex_state = 2}, - [2345] = {.lex_state = 38, .external_lex_state = 2}, - [2346] = {.lex_state = 38, .external_lex_state = 2}, - [2347] = {.lex_state = 38, .external_lex_state = 2}, - [2348] = {.lex_state = 29, .external_lex_state = 4}, - [2349] = {.lex_state = 29, .external_lex_state = 4}, - [2350] = {.lex_state = 48, .external_lex_state = 5}, - [2351] = {.lex_state = 48, .external_lex_state = 5}, + [2194] = {.lex_state = 39, .external_lex_state = 2}, + [2195] = {.lex_state = 38, .external_lex_state = 2}, + [2196] = {.lex_state = 38, .external_lex_state = 2}, + [2197] = {.lex_state = 38, .external_lex_state = 2}, + [2198] = {.lex_state = 38, .external_lex_state = 2}, + [2199] = {.lex_state = 38, .external_lex_state = 2}, + [2200] = {.lex_state = 48, .external_lex_state = 5}, + [2201] = {.lex_state = 29, .external_lex_state = 4}, + [2202] = {.lex_state = 48, .external_lex_state = 5}, + [2203] = {.lex_state = 29, .external_lex_state = 4}, + [2204] = {.lex_state = 29, .external_lex_state = 3}, + [2205] = {.lex_state = 29, .external_lex_state = 3}, + [2206] = {.lex_state = 29, .external_lex_state = 3}, + [2207] = {.lex_state = 29, .external_lex_state = 3}, + [2208] = {.lex_state = 39, .external_lex_state = 2}, + [2209] = {.lex_state = 29, .external_lex_state = 3}, + [2210] = {.lex_state = 29, .external_lex_state = 3}, + [2211] = {.lex_state = 29, .external_lex_state = 3}, + [2212] = {.lex_state = 29, .external_lex_state = 3}, + [2213] = {.lex_state = 29, .external_lex_state = 3}, + [2214] = {.lex_state = 29, .external_lex_state = 3}, + [2215] = {.lex_state = 29, .external_lex_state = 3}, + [2216] = {.lex_state = 29, .external_lex_state = 4}, + [2217] = {.lex_state = 29, .external_lex_state = 4}, + [2218] = {.lex_state = 29, .external_lex_state = 3}, + [2219] = {.lex_state = 29, .external_lex_state = 3}, + [2220] = {.lex_state = 29, .external_lex_state = 3}, + [2221] = {.lex_state = 29, .external_lex_state = 4}, + [2222] = {.lex_state = 29, .external_lex_state = 3}, + [2223] = {.lex_state = 29, .external_lex_state = 3}, + [2224] = {.lex_state = 29, .external_lex_state = 3}, + [2225] = {.lex_state = 29, .external_lex_state = 3}, + [2226] = {.lex_state = 29, .external_lex_state = 4}, + [2227] = {.lex_state = 29, .external_lex_state = 3}, + [2228] = {.lex_state = 29, .external_lex_state = 3}, + [2229] = {.lex_state = 29, .external_lex_state = 3}, + [2230] = {.lex_state = 29, .external_lex_state = 3}, + [2231] = {.lex_state = 29, .external_lex_state = 3}, + [2232] = {.lex_state = 29, .external_lex_state = 3}, + [2233] = {.lex_state = 29, .external_lex_state = 3}, + [2234] = {.lex_state = 29, .external_lex_state = 3}, + [2235] = {.lex_state = 29, .external_lex_state = 3}, + [2236] = {.lex_state = 29, .external_lex_state = 3}, + [2237] = {.lex_state = 29, .external_lex_state = 3}, + [2238] = {.lex_state = 29, .external_lex_state = 3}, + [2239] = {.lex_state = 29, .external_lex_state = 3}, + [2240] = {.lex_state = 29, .external_lex_state = 3}, + [2241] = {.lex_state = 29, .external_lex_state = 3}, + [2242] = {.lex_state = 29, .external_lex_state = 3}, + [2243] = {.lex_state = 29, .external_lex_state = 3}, + [2244] = {.lex_state = 29, .external_lex_state = 3}, + [2245] = {.lex_state = 29, .external_lex_state = 4}, + [2246] = {.lex_state = 29, .external_lex_state = 3}, + [2247] = {.lex_state = 29, .external_lex_state = 4}, + [2248] = {.lex_state = 29, .external_lex_state = 3}, + [2249] = {.lex_state = 29, .external_lex_state = 3}, + [2250] = {.lex_state = 29, .external_lex_state = 3}, + [2251] = {.lex_state = 29, .external_lex_state = 3}, + [2252] = {.lex_state = 29, .external_lex_state = 3}, + [2253] = {.lex_state = 29, .external_lex_state = 3}, + [2254] = {.lex_state = 29, .external_lex_state = 3}, + [2255] = {.lex_state = 29, .external_lex_state = 3}, + [2256] = {.lex_state = 29, .external_lex_state = 3}, + [2257] = {.lex_state = 29, .external_lex_state = 3}, + [2258] = {.lex_state = 29, .external_lex_state = 3}, + [2259] = {.lex_state = 29, .external_lex_state = 3}, + [2260] = {.lex_state = 29, .external_lex_state = 3}, + [2261] = {.lex_state = 29, .external_lex_state = 3}, + [2262] = {.lex_state = 29, .external_lex_state = 3}, + [2263] = {.lex_state = 29, .external_lex_state = 3}, + [2264] = {.lex_state = 29, .external_lex_state = 3}, + [2265] = {.lex_state = 29, .external_lex_state = 3}, + [2266] = {.lex_state = 29, .external_lex_state = 3}, + [2267] = {.lex_state = 29, .external_lex_state = 3}, + [2268] = {.lex_state = 29, .external_lex_state = 3}, + [2269] = {.lex_state = 29, .external_lex_state = 3}, + [2270] = {.lex_state = 29, .external_lex_state = 3}, + [2271] = {.lex_state = 29, .external_lex_state = 3}, + [2272] = {.lex_state = 29, .external_lex_state = 3}, + [2273] = {.lex_state = 29, .external_lex_state = 3}, + [2274] = {.lex_state = 29, .external_lex_state = 3}, + [2275] = {.lex_state = 29, .external_lex_state = 3}, + [2276] = {.lex_state = 29, .external_lex_state = 3}, + [2277] = {.lex_state = 29, .external_lex_state = 3}, + [2278] = {.lex_state = 29, .external_lex_state = 3}, + [2279] = {.lex_state = 29, .external_lex_state = 3}, + [2280] = {.lex_state = 29, .external_lex_state = 3}, + [2281] = {.lex_state = 29, .external_lex_state = 3}, + [2282] = {.lex_state = 29, .external_lex_state = 3}, + [2283] = {.lex_state = 29, .external_lex_state = 3}, + [2284] = {.lex_state = 29, .external_lex_state = 3}, + [2285] = {.lex_state = 29, .external_lex_state = 3}, + [2286] = {.lex_state = 29, .external_lex_state = 3}, + [2287] = {.lex_state = 29, .external_lex_state = 3}, + [2288] = {.lex_state = 29, .external_lex_state = 3}, + [2289] = {.lex_state = 29, .external_lex_state = 3}, + [2290] = {.lex_state = 29, .external_lex_state = 3}, + [2291] = {.lex_state = 29, .external_lex_state = 3}, + [2292] = {.lex_state = 29, .external_lex_state = 3}, + [2293] = {.lex_state = 29, .external_lex_state = 4}, + [2294] = {.lex_state = 29, .external_lex_state = 3}, + [2295] = {.lex_state = 29, .external_lex_state = 3}, + [2296] = {.lex_state = 29, .external_lex_state = 3}, + [2297] = {.lex_state = 29, .external_lex_state = 3}, + [2298] = {.lex_state = 29, .external_lex_state = 3}, + [2299] = {.lex_state = 39, .external_lex_state = 5}, + [2300] = {.lex_state = 29, .external_lex_state = 3}, + [2301] = {.lex_state = 29, .external_lex_state = 3}, + [2302] = {.lex_state = 29, .external_lex_state = 3}, + [2303] = {.lex_state = 29, .external_lex_state = 3}, + [2304] = {.lex_state = 29, .external_lex_state = 3}, + [2305] = {.lex_state = 29, .external_lex_state = 3}, + [2306] = {.lex_state = 29, .external_lex_state = 3}, + [2307] = {.lex_state = 29, .external_lex_state = 3}, + [2308] = {.lex_state = 29, .external_lex_state = 3}, + [2309] = {.lex_state = 29, .external_lex_state = 3}, + [2310] = {.lex_state = 29, .external_lex_state = 3}, + [2311] = {.lex_state = 29, .external_lex_state = 3}, + [2312] = {.lex_state = 39, .external_lex_state = 5}, + [2313] = {.lex_state = 29, .external_lex_state = 3}, + [2314] = {.lex_state = 29, .external_lex_state = 3}, + [2315] = {.lex_state = 29, .external_lex_state = 3}, + [2316] = {.lex_state = 29, .external_lex_state = 3}, + [2317] = {.lex_state = 29, .external_lex_state = 3}, + [2318] = {.lex_state = 29, .external_lex_state = 3}, + [2319] = {.lex_state = 29, .external_lex_state = 3}, + [2320] = {.lex_state = 29, .external_lex_state = 3}, + [2321] = {.lex_state = 29, .external_lex_state = 3}, + [2322] = {.lex_state = 29, .external_lex_state = 3}, + [2323] = {.lex_state = 29, .external_lex_state = 3}, + [2324] = {.lex_state = 29, .external_lex_state = 3}, + [2325] = {.lex_state = 29, .external_lex_state = 3}, + [2326] = {.lex_state = 29, .external_lex_state = 3}, + [2327] = {.lex_state = 29, .external_lex_state = 3}, + [2328] = {.lex_state = 29, .external_lex_state = 3}, + [2329] = {.lex_state = 29, .external_lex_state = 3}, + [2330] = {.lex_state = 29, .external_lex_state = 3}, + [2331] = {.lex_state = 29, .external_lex_state = 3}, + [2332] = {.lex_state = 29, .external_lex_state = 3}, + [2333] = {.lex_state = 29, .external_lex_state = 3}, + [2334] = {.lex_state = 29, .external_lex_state = 3}, + [2335] = {.lex_state = 29, .external_lex_state = 3}, + [2336] = {.lex_state = 29, .external_lex_state = 3}, + [2337] = {.lex_state = 29, .external_lex_state = 3}, + [2338] = {.lex_state = 29, .external_lex_state = 3}, + [2339] = {.lex_state = 29, .external_lex_state = 3}, + [2340] = {.lex_state = 29, .external_lex_state = 3}, + [2341] = {.lex_state = 29, .external_lex_state = 3}, + [2342] = {.lex_state = 29, .external_lex_state = 3}, + [2343] = {.lex_state = 29, .external_lex_state = 3}, + [2344] = {.lex_state = 29, .external_lex_state = 3}, + [2345] = {.lex_state = 29, .external_lex_state = 3}, + [2346] = {.lex_state = 29, .external_lex_state = 3}, + [2347] = {.lex_state = 29, .external_lex_state = 3}, + [2348] = {.lex_state = 29, .external_lex_state = 3}, + [2349] = {.lex_state = 29, .external_lex_state = 3}, + [2350] = {.lex_state = 29, .external_lex_state = 3}, + [2351] = {.lex_state = 29, .external_lex_state = 3}, [2352] = {.lex_state = 29, .external_lex_state = 3}, - [2353] = {.lex_state = 39, .external_lex_state = 2}, + [2353] = {.lex_state = 29, .external_lex_state = 3}, [2354] = {.lex_state = 29, .external_lex_state = 3}, [2355] = {.lex_state = 29, .external_lex_state = 3}, [2356] = {.lex_state = 29, .external_lex_state = 3}, @@ -24739,23 +24494,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2358] = {.lex_state = 29, .external_lex_state = 3}, [2359] = {.lex_state = 29, .external_lex_state = 3}, [2360] = {.lex_state = 29, .external_lex_state = 3}, - [2361] = {.lex_state = 29, .external_lex_state = 4}, + [2361] = {.lex_state = 29, .external_lex_state = 3}, [2362] = {.lex_state = 29, .external_lex_state = 3}, [2363] = {.lex_state = 29, .external_lex_state = 3}, [2364] = {.lex_state = 29, .external_lex_state = 3}, - [2365] = {.lex_state = 29, .external_lex_state = 4}, + [2365] = {.lex_state = 29, .external_lex_state = 3}, [2366] = {.lex_state = 29, .external_lex_state = 3}, [2367] = {.lex_state = 29, .external_lex_state = 3}, [2368] = {.lex_state = 29, .external_lex_state = 3}, - [2369] = {.lex_state = 29, .external_lex_state = 4}, + [2369] = {.lex_state = 29, .external_lex_state = 3}, [2370] = {.lex_state = 29, .external_lex_state = 3}, [2371] = {.lex_state = 29, .external_lex_state = 3}, [2372] = {.lex_state = 29, .external_lex_state = 3}, [2373] = {.lex_state = 29, .external_lex_state = 3}, - [2374] = {.lex_state = 29, .external_lex_state = 4}, + [2374] = {.lex_state = 29, .external_lex_state = 3}, [2375] = {.lex_state = 29, .external_lex_state = 3}, - [2376] = {.lex_state = 29, .external_lex_state = 3}, - [2377] = {.lex_state = 29, .external_lex_state = 3}, + [2376] = {.lex_state = 39, .external_lex_state = 5}, + [2377] = {.lex_state = 39, .external_lex_state = 5}, [2378] = {.lex_state = 29, .external_lex_state = 3}, [2379] = {.lex_state = 29, .external_lex_state = 3}, [2380] = {.lex_state = 29, .external_lex_state = 3}, @@ -24765,59 +24520,59 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2384] = {.lex_state = 29, .external_lex_state = 3}, [2385] = {.lex_state = 29, .external_lex_state = 3}, [2386] = {.lex_state = 29, .external_lex_state = 3}, - [2387] = {.lex_state = 29, .external_lex_state = 3}, + [2387] = {.lex_state = 29, .external_lex_state = 4}, [2388] = {.lex_state = 29, .external_lex_state = 3}, [2389] = {.lex_state = 29, .external_lex_state = 3}, - [2390] = {.lex_state = 29, .external_lex_state = 3}, + [2390] = {.lex_state = 39, .external_lex_state = 5}, [2391] = {.lex_state = 29, .external_lex_state = 3}, - [2392] = {.lex_state = 29, .external_lex_state = 3}, - [2393] = {.lex_state = 29, .external_lex_state = 3}, - [2394] = {.lex_state = 29, .external_lex_state = 3}, - [2395] = {.lex_state = 29, .external_lex_state = 3}, + [2392] = {.lex_state = 29, .external_lex_state = 4}, + [2393] = {.lex_state = 39, .external_lex_state = 5}, + [2394] = {.lex_state = 29, .external_lex_state = 4}, + [2395] = {.lex_state = 39, .external_lex_state = 5}, [2396] = {.lex_state = 29, .external_lex_state = 3}, [2397] = {.lex_state = 29, .external_lex_state = 3}, - [2398] = {.lex_state = 29, .external_lex_state = 3}, + [2398] = {.lex_state = 29, .external_lex_state = 4}, [2399] = {.lex_state = 29, .external_lex_state = 3}, - [2400] = {.lex_state = 29, .external_lex_state = 3}, - [2401] = {.lex_state = 29, .external_lex_state = 3}, - [2402] = {.lex_state = 29, .external_lex_state = 3}, + [2400] = {.lex_state = 29, .external_lex_state = 4}, + [2401] = {.lex_state = 29, .external_lex_state = 4}, + [2402] = {.lex_state = 29, .external_lex_state = 4}, [2403] = {.lex_state = 29, .external_lex_state = 3}, [2404] = {.lex_state = 29, .external_lex_state = 3}, [2405] = {.lex_state = 29, .external_lex_state = 3}, - [2406] = {.lex_state = 29, .external_lex_state = 3}, - [2407] = {.lex_state = 29, .external_lex_state = 3}, - [2408] = {.lex_state = 29, .external_lex_state = 3}, - [2409] = {.lex_state = 29, .external_lex_state = 3}, - [2410] = {.lex_state = 29, .external_lex_state = 3}, - [2411] = {.lex_state = 29, .external_lex_state = 3}, - [2412] = {.lex_state = 29, .external_lex_state = 3}, + [2406] = {.lex_state = 39, .external_lex_state = 5}, + [2407] = {.lex_state = 29, .external_lex_state = 4}, + [2408] = {.lex_state = 29, .external_lex_state = 4}, + [2409] = {.lex_state = 39, .external_lex_state = 5}, + [2410] = {.lex_state = 29, .external_lex_state = 4}, + [2411] = {.lex_state = 39, .external_lex_state = 5}, + [2412] = {.lex_state = 29, .external_lex_state = 4}, [2413] = {.lex_state = 29, .external_lex_state = 3}, [2414] = {.lex_state = 29, .external_lex_state = 3}, - [2415] = {.lex_state = 29, .external_lex_state = 3}, - [2416] = {.lex_state = 29, .external_lex_state = 3}, - [2417] = {.lex_state = 29, .external_lex_state = 3}, + [2415] = {.lex_state = 29, .external_lex_state = 4}, + [2416] = {.lex_state = 29, .external_lex_state = 4}, + [2417] = {.lex_state = 29, .external_lex_state = 4}, [2418] = {.lex_state = 29, .external_lex_state = 3}, [2419] = {.lex_state = 29, .external_lex_state = 3}, [2420] = {.lex_state = 29, .external_lex_state = 3}, [2421] = {.lex_state = 29, .external_lex_state = 3}, - [2422] = {.lex_state = 29, .external_lex_state = 3}, - [2423] = {.lex_state = 29, .external_lex_state = 3}, + [2422] = {.lex_state = 29, .external_lex_state = 4}, + [2423] = {.lex_state = 29, .external_lex_state = 4}, [2424] = {.lex_state = 29, .external_lex_state = 3}, [2425] = {.lex_state = 29, .external_lex_state = 3}, [2426] = {.lex_state = 29, .external_lex_state = 3}, [2427] = {.lex_state = 29, .external_lex_state = 3}, - [2428] = {.lex_state = 29, .external_lex_state = 3}, - [2429] = {.lex_state = 29, .external_lex_state = 3}, + [2428] = {.lex_state = 29, .external_lex_state = 4}, + [2429] = {.lex_state = 29, .external_lex_state = 4}, [2430] = {.lex_state = 29, .external_lex_state = 3}, - [2431] = {.lex_state = 29, .external_lex_state = 3}, + [2431] = {.lex_state = 29, .external_lex_state = 4}, [2432] = {.lex_state = 29, .external_lex_state = 3}, - [2433] = {.lex_state = 29, .external_lex_state = 3}, - [2434] = {.lex_state = 29, .external_lex_state = 3}, + [2433] = {.lex_state = 29, .external_lex_state = 4}, + [2434] = {.lex_state = 39, .external_lex_state = 5}, [2435] = {.lex_state = 29, .external_lex_state = 3}, [2436] = {.lex_state = 29, .external_lex_state = 3}, [2437] = {.lex_state = 29, .external_lex_state = 4}, [2438] = {.lex_state = 29, .external_lex_state = 3}, - [2439] = {.lex_state = 29, .external_lex_state = 3}, + [2439] = {.lex_state = 29, .external_lex_state = 4}, [2440] = {.lex_state = 29, .external_lex_state = 3}, [2441] = {.lex_state = 29, .external_lex_state = 3}, [2442] = {.lex_state = 29, .external_lex_state = 3}, @@ -24825,129 +24580,129 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2444] = {.lex_state = 29, .external_lex_state = 3}, [2445] = {.lex_state = 29, .external_lex_state = 3}, [2446] = {.lex_state = 29, .external_lex_state = 3}, - [2447] = {.lex_state = 39, .external_lex_state = 5}, - [2448] = {.lex_state = 29, .external_lex_state = 3}, + [2447] = {.lex_state = 29, .external_lex_state = 4}, + [2448] = {.lex_state = 29, .external_lex_state = 4}, [2449] = {.lex_state = 29, .external_lex_state = 3}, [2450] = {.lex_state = 29, .external_lex_state = 3}, [2451] = {.lex_state = 29, .external_lex_state = 3}, [2452] = {.lex_state = 29, .external_lex_state = 3}, [2453] = {.lex_state = 29, .external_lex_state = 3}, [2454] = {.lex_state = 29, .external_lex_state = 3}, - [2455] = {.lex_state = 29, .external_lex_state = 3}, - [2456] = {.lex_state = 29, .external_lex_state = 3}, + [2455] = {.lex_state = 29, .external_lex_state = 4}, + [2456] = {.lex_state = 29, .external_lex_state = 4}, [2457] = {.lex_state = 29, .external_lex_state = 3}, [2458] = {.lex_state = 29, .external_lex_state = 3}, - [2459] = {.lex_state = 29, .external_lex_state = 3}, + [2459] = {.lex_state = 29, .external_lex_state = 4}, [2460] = {.lex_state = 29, .external_lex_state = 3}, - [2461] = {.lex_state = 29, .external_lex_state = 3}, + [2461] = {.lex_state = 29, .external_lex_state = 4}, [2462] = {.lex_state = 29, .external_lex_state = 3}, - [2463] = {.lex_state = 29, .external_lex_state = 3}, - [2464] = {.lex_state = 29, .external_lex_state = 3}, + [2463] = {.lex_state = 29, .external_lex_state = 4}, + [2464] = {.lex_state = 29, .external_lex_state = 4}, [2465] = {.lex_state = 29, .external_lex_state = 3}, - [2466] = {.lex_state = 29, .external_lex_state = 3}, - [2467] = {.lex_state = 29, .external_lex_state = 3}, - [2468] = {.lex_state = 29, .external_lex_state = 3}, - [2469] = {.lex_state = 29, .external_lex_state = 3}, - [2470] = {.lex_state = 29, .external_lex_state = 3}, - [2471] = {.lex_state = 29, .external_lex_state = 3}, - [2472] = {.lex_state = 29, .external_lex_state = 3}, + [2466] = {.lex_state = 29, .external_lex_state = 4}, + [2467] = {.lex_state = 29, .external_lex_state = 4}, + [2468] = {.lex_state = 29, .external_lex_state = 4}, + [2469] = {.lex_state = 29, .external_lex_state = 4}, + [2470] = {.lex_state = 29, .external_lex_state = 4}, + [2471] = {.lex_state = 29, .external_lex_state = 4}, + [2472] = {.lex_state = 29, .external_lex_state = 4}, [2473] = {.lex_state = 29, .external_lex_state = 3}, [2474] = {.lex_state = 29, .external_lex_state = 3}, [2475] = {.lex_state = 29, .external_lex_state = 3}, - [2476] = {.lex_state = 29, .external_lex_state = 3}, - [2477] = {.lex_state = 39, .external_lex_state = 5}, - [2478] = {.lex_state = 29, .external_lex_state = 3}, - [2479] = {.lex_state = 29, .external_lex_state = 3}, + [2476] = {.lex_state = 29, .external_lex_state = 4}, + [2477] = {.lex_state = 29, .external_lex_state = 4}, + [2478] = {.lex_state = 29, .external_lex_state = 4}, + [2479] = {.lex_state = 29, .external_lex_state = 4}, [2480] = {.lex_state = 29, .external_lex_state = 3}, [2481] = {.lex_state = 29, .external_lex_state = 3}, - [2482] = {.lex_state = 29, .external_lex_state = 3}, - [2483] = {.lex_state = 29, .external_lex_state = 3}, + [2482] = {.lex_state = 29, .external_lex_state = 4}, + [2483] = {.lex_state = 29, .external_lex_state = 4}, [2484] = {.lex_state = 29, .external_lex_state = 3}, - [2485] = {.lex_state = 29, .external_lex_state = 3}, - [2486] = {.lex_state = 29, .external_lex_state = 3}, - [2487] = {.lex_state = 29, .external_lex_state = 3}, - [2488] = {.lex_state = 29, .external_lex_state = 3}, + [2485] = {.lex_state = 29, .external_lex_state = 4}, + [2486] = {.lex_state = 29, .external_lex_state = 4}, + [2487] = {.lex_state = 29, .external_lex_state = 4}, + [2488] = {.lex_state = 29, .external_lex_state = 4}, [2489] = {.lex_state = 29, .external_lex_state = 3}, [2490] = {.lex_state = 29, .external_lex_state = 3}, - [2491] = {.lex_state = 29, .external_lex_state = 3}, - [2492] = {.lex_state = 39, .external_lex_state = 5}, + [2491] = {.lex_state = 29, .external_lex_state = 4}, + [2492] = {.lex_state = 29, .external_lex_state = 4}, [2493] = {.lex_state = 29, .external_lex_state = 3}, - [2494] = {.lex_state = 29, .external_lex_state = 3}, - [2495] = {.lex_state = 29, .external_lex_state = 4}, + [2494] = {.lex_state = 29, .external_lex_state = 4}, + [2495] = {.lex_state = 29, .external_lex_state = 3}, [2496] = {.lex_state = 29, .external_lex_state = 3}, - [2497] = {.lex_state = 29, .external_lex_state = 4}, - [2498] = {.lex_state = 29, .external_lex_state = 3}, - [2499] = {.lex_state = 29, .external_lex_state = 3}, + [2497] = {.lex_state = 29, .external_lex_state = 3}, + [2498] = {.lex_state = 29, .external_lex_state = 4}, + [2499] = {.lex_state = 29, .external_lex_state = 4}, [2500] = {.lex_state = 29, .external_lex_state = 4}, [2501] = {.lex_state = 29, .external_lex_state = 3}, [2502] = {.lex_state = 29, .external_lex_state = 3}, - [2503] = {.lex_state = 29, .external_lex_state = 3}, - [2504] = {.lex_state = 29, .external_lex_state = 3}, - [2505] = {.lex_state = 29, .external_lex_state = 3}, - [2506] = {.lex_state = 29, .external_lex_state = 3}, - [2507] = {.lex_state = 29, .external_lex_state = 3}, + [2503] = {.lex_state = 29, .external_lex_state = 4}, + [2504] = {.lex_state = 29, .external_lex_state = 4}, + [2505] = {.lex_state = 29, .external_lex_state = 4}, + [2506] = {.lex_state = 29, .external_lex_state = 4}, + [2507] = {.lex_state = 39, .external_lex_state = 5}, [2508] = {.lex_state = 29, .external_lex_state = 3}, - [2509] = {.lex_state = 29, .external_lex_state = 3}, - [2510] = {.lex_state = 29, .external_lex_state = 3}, - [2511] = {.lex_state = 29, .external_lex_state = 3}, + [2509] = {.lex_state = 29, .external_lex_state = 4}, + [2510] = {.lex_state = 39, .external_lex_state = 5}, + [2511] = {.lex_state = 29, .external_lex_state = 4}, [2512] = {.lex_state = 29, .external_lex_state = 3}, [2513] = {.lex_state = 29, .external_lex_state = 3}, [2514] = {.lex_state = 29, .external_lex_state = 3}, [2515] = {.lex_state = 29, .external_lex_state = 3}, - [2516] = {.lex_state = 29, .external_lex_state = 3}, + [2516] = {.lex_state = 29, .external_lex_state = 4}, [2517] = {.lex_state = 29, .external_lex_state = 3}, - [2518] = {.lex_state = 29, .external_lex_state = 3}, - [2519] = {.lex_state = 29, .external_lex_state = 3}, - [2520] = {.lex_state = 29, .external_lex_state = 3}, + [2518] = {.lex_state = 29, .external_lex_state = 4}, + [2519] = {.lex_state = 29, .external_lex_state = 4}, + [2520] = {.lex_state = 29, .external_lex_state = 4}, [2521] = {.lex_state = 29, .external_lex_state = 3}, [2522] = {.lex_state = 29, .external_lex_state = 3}, [2523] = {.lex_state = 29, .external_lex_state = 3}, - [2524] = {.lex_state = 29, .external_lex_state = 3}, - [2525] = {.lex_state = 29, .external_lex_state = 3}, + [2524] = {.lex_state = 29, .external_lex_state = 4}, + [2525] = {.lex_state = 29, .external_lex_state = 4}, [2526] = {.lex_state = 29, .external_lex_state = 3}, - [2527] = {.lex_state = 29, .external_lex_state = 3}, - [2528] = {.lex_state = 29, .external_lex_state = 3}, - [2529] = {.lex_state = 39, .external_lex_state = 5}, - [2530] = {.lex_state = 29, .external_lex_state = 3}, + [2527] = {.lex_state = 29, .external_lex_state = 4}, + [2528] = {.lex_state = 29, .external_lex_state = 4}, + [2529] = {.lex_state = 29, .external_lex_state = 3}, + [2530] = {.lex_state = 29, .external_lex_state = 4}, [2531] = {.lex_state = 29, .external_lex_state = 3}, [2532] = {.lex_state = 29, .external_lex_state = 3}, - [2533] = {.lex_state = 29, .external_lex_state = 3}, - [2534] = {.lex_state = 29, .external_lex_state = 3}, - [2535] = {.lex_state = 29, .external_lex_state = 3}, - [2536] = {.lex_state = 39, .external_lex_state = 5}, - [2537] = {.lex_state = 29, .external_lex_state = 3}, + [2533] = {.lex_state = 29, .external_lex_state = 4}, + [2534] = {.lex_state = 29, .external_lex_state = 4}, + [2535] = {.lex_state = 29, .external_lex_state = 4}, + [2536] = {.lex_state = 29, .external_lex_state = 4}, + [2537] = {.lex_state = 29, .external_lex_state = 4}, [2538] = {.lex_state = 29, .external_lex_state = 4}, - [2539] = {.lex_state = 29, .external_lex_state = 3}, - [2540] = {.lex_state = 29, .external_lex_state = 4}, + [2539] = {.lex_state = 29, .external_lex_state = 4}, + [2540] = {.lex_state = 29, .external_lex_state = 3}, [2541] = {.lex_state = 29, .external_lex_state = 3}, - [2542] = {.lex_state = 29, .external_lex_state = 3}, + [2542] = {.lex_state = 29, .external_lex_state = 4}, [2543] = {.lex_state = 29, .external_lex_state = 4}, [2544] = {.lex_state = 29, .external_lex_state = 4}, - [2545] = {.lex_state = 29, .external_lex_state = 4}, + [2545] = {.lex_state = 29, .external_lex_state = 3}, [2546] = {.lex_state = 29, .external_lex_state = 4}, - [2547] = {.lex_state = 29, .external_lex_state = 4}, - [2548] = {.lex_state = 29, .external_lex_state = 4}, - [2549] = {.lex_state = 39, .external_lex_state = 5}, - [2550] = {.lex_state = 39, .external_lex_state = 5}, - [2551] = {.lex_state = 29, .external_lex_state = 4}, + [2547] = {.lex_state = 29, .external_lex_state = 3}, + [2548] = {.lex_state = 29, .external_lex_state = 3}, + [2549] = {.lex_state = 29, .external_lex_state = 4}, + [2550] = {.lex_state = 29, .external_lex_state = 3}, + [2551] = {.lex_state = 39, .external_lex_state = 5}, [2552] = {.lex_state = 29, .external_lex_state = 3}, [2553] = {.lex_state = 29, .external_lex_state = 3}, - [2554] = {.lex_state = 29, .external_lex_state = 4}, - [2555] = {.lex_state = 29, .external_lex_state = 3}, + [2554] = {.lex_state = 29, .external_lex_state = 3}, + [2555] = {.lex_state = 29, .external_lex_state = 4}, [2556] = {.lex_state = 29, .external_lex_state = 4}, [2557] = {.lex_state = 29, .external_lex_state = 4}, - [2558] = {.lex_state = 29, .external_lex_state = 4}, + [2558] = {.lex_state = 29, .external_lex_state = 3}, [2559] = {.lex_state = 29, .external_lex_state = 4}, - [2560] = {.lex_state = 29, .external_lex_state = 4}, + [2560] = {.lex_state = 29, .external_lex_state = 3}, [2561] = {.lex_state = 29, .external_lex_state = 4}, - [2562] = {.lex_state = 29, .external_lex_state = 3}, + [2562] = {.lex_state = 29, .external_lex_state = 4}, [2563] = {.lex_state = 29, .external_lex_state = 4}, - [2564] = {.lex_state = 29, .external_lex_state = 3}, - [2565] = {.lex_state = 29, .external_lex_state = 4}, + [2564] = {.lex_state = 29, .external_lex_state = 4}, + [2565] = {.lex_state = 29, .external_lex_state = 3}, [2566] = {.lex_state = 29, .external_lex_state = 3}, - [2567] = {.lex_state = 29, .external_lex_state = 4}, + [2567] = {.lex_state = 39, .external_lex_state = 5}, [2568] = {.lex_state = 29, .external_lex_state = 3}, - [2569] = {.lex_state = 29, .external_lex_state = 3}, + [2569] = {.lex_state = 29, .external_lex_state = 4}, [2570] = {.lex_state = 29, .external_lex_state = 3}, [2571] = {.lex_state = 29, .external_lex_state = 4}, [2572] = {.lex_state = 29, .external_lex_state = 3}, @@ -24955,273 +24710,273 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2574] = {.lex_state = 29, .external_lex_state = 4}, [2575] = {.lex_state = 29, .external_lex_state = 4}, [2576] = {.lex_state = 29, .external_lex_state = 4}, - [2577] = {.lex_state = 29, .external_lex_state = 4}, - [2578] = {.lex_state = 29, .external_lex_state = 3}, - [2579] = {.lex_state = 29, .external_lex_state = 4}, - [2580] = {.lex_state = 29, .external_lex_state = 3}, + [2577] = {.lex_state = 29, .external_lex_state = 3}, + [2578] = {.lex_state = 29, .external_lex_state = 4}, + [2579] = {.lex_state = 29, .external_lex_state = 3}, + [2580] = {.lex_state = 38, .external_lex_state = 5}, [2581] = {.lex_state = 29, .external_lex_state = 4}, - [2582] = {.lex_state = 29, .external_lex_state = 4}, - [2583] = {.lex_state = 29, .external_lex_state = 4}, + [2582] = {.lex_state = 29, .external_lex_state = 3}, + [2583] = {.lex_state = 29, .external_lex_state = 3}, [2584] = {.lex_state = 29, .external_lex_state = 3}, - [2585] = {.lex_state = 29, .external_lex_state = 4}, - [2586] = {.lex_state = 29, .external_lex_state = 4}, - [2587] = {.lex_state = 29, .external_lex_state = 4}, - [2588] = {.lex_state = 29, .external_lex_state = 4}, - [2589] = {.lex_state = 29, .external_lex_state = 4}, + [2585] = {.lex_state = 29, .external_lex_state = 3}, + [2586] = {.lex_state = 29, .external_lex_state = 3}, + [2587] = {.lex_state = 29, .external_lex_state = 3}, + [2588] = {.lex_state = 29, .external_lex_state = 3}, + [2589] = {.lex_state = 39, .external_lex_state = 5}, [2590] = {.lex_state = 29, .external_lex_state = 4}, [2591] = {.lex_state = 29, .external_lex_state = 4}, - [2592] = {.lex_state = 29, .external_lex_state = 4}, + [2592] = {.lex_state = 29, .external_lex_state = 3}, [2593] = {.lex_state = 29, .external_lex_state = 4}, [2594] = {.lex_state = 29, .external_lex_state = 4}, - [2595] = {.lex_state = 29, .external_lex_state = 4}, - [2596] = {.lex_state = 29, .external_lex_state = 4}, - [2597] = {.lex_state = 29, .external_lex_state = 4}, + [2595] = {.lex_state = 29, .external_lex_state = 3}, + [2596] = {.lex_state = 38, .external_lex_state = 5}, + [2597] = {.lex_state = 29, .external_lex_state = 3}, [2598] = {.lex_state = 29, .external_lex_state = 4}, - [2599] = {.lex_state = 29, .external_lex_state = 4}, + [2599] = {.lex_state = 29, .external_lex_state = 3}, [2600] = {.lex_state = 29, .external_lex_state = 4}, - [2601] = {.lex_state = 29, .external_lex_state = 4}, + [2601] = {.lex_state = 29, .external_lex_state = 3}, [2602] = {.lex_state = 29, .external_lex_state = 4}, [2603] = {.lex_state = 29, .external_lex_state = 3}, - [2604] = {.lex_state = 29, .external_lex_state = 3}, - [2605] = {.lex_state = 29, .external_lex_state = 3}, + [2604] = {.lex_state = 39, .external_lex_state = 5}, + [2605] = {.lex_state = 29, .external_lex_state = 4}, [2606] = {.lex_state = 29, .external_lex_state = 3}, - [2607] = {.lex_state = 29, .external_lex_state = 4}, - [2608] = {.lex_state = 29, .external_lex_state = 4}, - [2609] = {.lex_state = 29, .external_lex_state = 4}, - [2610] = {.lex_state = 29, .external_lex_state = 4}, - [2611] = {.lex_state = 29, .external_lex_state = 4}, - [2612] = {.lex_state = 29, .external_lex_state = 4}, + [2607] = {.lex_state = 39, .external_lex_state = 5}, + [2608] = {.lex_state = 29, .external_lex_state = 3}, + [2609] = {.lex_state = 29, .external_lex_state = 3}, + [2610] = {.lex_state = 39, .external_lex_state = 5}, + [2611] = {.lex_state = 29, .external_lex_state = 3}, + [2612] = {.lex_state = 29, .external_lex_state = 3}, [2613] = {.lex_state = 29, .external_lex_state = 3}, [2614] = {.lex_state = 29, .external_lex_state = 3}, - [2615] = {.lex_state = 29, .external_lex_state = 4}, + [2615] = {.lex_state = 29, .external_lex_state = 3}, [2616] = {.lex_state = 29, .external_lex_state = 3}, [2617] = {.lex_state = 29, .external_lex_state = 3}, [2618] = {.lex_state = 29, .external_lex_state = 3}, - [2619] = {.lex_state = 29, .external_lex_state = 3}, + [2619] = {.lex_state = 29, .external_lex_state = 4}, [2620] = {.lex_state = 29, .external_lex_state = 4}, - [2621] = {.lex_state = 29, .external_lex_state = 4}, - [2622] = {.lex_state = 39, .external_lex_state = 5}, - [2623] = {.lex_state = 39, .external_lex_state = 5}, + [2621] = {.lex_state = 29, .external_lex_state = 3}, + [2622] = {.lex_state = 29, .external_lex_state = 4}, + [2623] = {.lex_state = 29, .external_lex_state = 3}, [2624] = {.lex_state = 29, .external_lex_state = 3}, [2625] = {.lex_state = 29, .external_lex_state = 3}, [2626] = {.lex_state = 29, .external_lex_state = 3}, - [2627] = {.lex_state = 29, .external_lex_state = 3}, + [2627] = {.lex_state = 29, .external_lex_state = 4}, [2628] = {.lex_state = 29, .external_lex_state = 3}, [2629] = {.lex_state = 29, .external_lex_state = 3}, [2630] = {.lex_state = 29, .external_lex_state = 3}, [2631] = {.lex_state = 29, .external_lex_state = 3}, [2632] = {.lex_state = 29, .external_lex_state = 3}, [2633] = {.lex_state = 29, .external_lex_state = 3}, - [2634] = {.lex_state = 29, .external_lex_state = 3}, - [2635] = {.lex_state = 29, .external_lex_state = 3}, + [2634] = {.lex_state = 29, .external_lex_state = 4}, + [2635] = {.lex_state = 39, .external_lex_state = 5}, [2636] = {.lex_state = 29, .external_lex_state = 3}, - [2637] = {.lex_state = 29, .external_lex_state = 4}, - [2638] = {.lex_state = 29, .external_lex_state = 3}, - [2639] = {.lex_state = 29, .external_lex_state = 3}, - [2640] = {.lex_state = 29, .external_lex_state = 4}, + [2637] = {.lex_state = 29, .external_lex_state = 3}, + [2638] = {.lex_state = 39, .external_lex_state = 5}, + [2639] = {.lex_state = 29, .external_lex_state = 4}, + [2640] = {.lex_state = 29, .external_lex_state = 3}, [2641] = {.lex_state = 29, .external_lex_state = 3}, [2642] = {.lex_state = 29, .external_lex_state = 4}, - [2643] = {.lex_state = 29, .external_lex_state = 4}, - [2644] = {.lex_state = 29, .external_lex_state = 4}, + [2643] = {.lex_state = 29, .external_lex_state = 3}, + [2644] = {.lex_state = 29, .external_lex_state = 3}, [2645] = {.lex_state = 29, .external_lex_state = 3}, [2646] = {.lex_state = 29, .external_lex_state = 3}, - [2647] = {.lex_state = 29, .external_lex_state = 4}, - [2648] = {.lex_state = 29, .external_lex_state = 4}, + [2647] = {.lex_state = 29, .external_lex_state = 3}, + [2648] = {.lex_state = 29, .external_lex_state = 3}, [2649] = {.lex_state = 29, .external_lex_state = 4}, - [2650] = {.lex_state = 29, .external_lex_state = 4}, - [2651] = {.lex_state = 29, .external_lex_state = 4}, - [2652] = {.lex_state = 29, .external_lex_state = 4}, - [2653] = {.lex_state = 29, .external_lex_state = 4}, + [2650] = {.lex_state = 29, .external_lex_state = 3}, + [2651] = {.lex_state = 29, .external_lex_state = 3}, + [2652] = {.lex_state = 29, .external_lex_state = 3}, + [2653] = {.lex_state = 29, .external_lex_state = 3}, [2654] = {.lex_state = 29, .external_lex_state = 4}, - [2655] = {.lex_state = 29, .external_lex_state = 4}, - [2656] = {.lex_state = 29, .external_lex_state = 4}, + [2655] = {.lex_state = 29, .external_lex_state = 3}, + [2656] = {.lex_state = 29, .external_lex_state = 3}, [2657] = {.lex_state = 29, .external_lex_state = 3}, [2658] = {.lex_state = 29, .external_lex_state = 3}, - [2659] = {.lex_state = 29, .external_lex_state = 3}, - [2660] = {.lex_state = 29, .external_lex_state = 3}, - [2661] = {.lex_state = 29, .external_lex_state = 4}, - [2662] = {.lex_state = 29, .external_lex_state = 3}, - [2663] = {.lex_state = 29, .external_lex_state = 4}, - [2664] = {.lex_state = 29, .external_lex_state = 4}, + [2659] = {.lex_state = 29, .external_lex_state = 4}, + [2660] = {.lex_state = 29, .external_lex_state = 4}, + [2661] = {.lex_state = 29, .external_lex_state = 3}, + [2662] = {.lex_state = 29, .external_lex_state = 4}, + [2663] = {.lex_state = 29, .external_lex_state = 3}, + [2664] = {.lex_state = 29, .external_lex_state = 3}, [2665] = {.lex_state = 29, .external_lex_state = 3}, [2666] = {.lex_state = 29, .external_lex_state = 3}, [2667] = {.lex_state = 29, .external_lex_state = 3}, - [2668] = {.lex_state = 29, .external_lex_state = 4}, + [2668] = {.lex_state = 29, .external_lex_state = 3}, [2669] = {.lex_state = 29, .external_lex_state = 3}, [2670] = {.lex_state = 29, .external_lex_state = 3}, - [2671] = {.lex_state = 29, .external_lex_state = 4}, - [2672] = {.lex_state = 29, .external_lex_state = 4}, + [2671] = {.lex_state = 29, .external_lex_state = 3}, + [2672] = {.lex_state = 29, .external_lex_state = 3}, [2673] = {.lex_state = 29, .external_lex_state = 3}, [2674] = {.lex_state = 29, .external_lex_state = 3}, - [2675] = {.lex_state = 39, .external_lex_state = 5}, - [2676] = {.lex_state = 29, .external_lex_state = 4}, - [2677] = {.lex_state = 29, .external_lex_state = 4}, - [2678] = {.lex_state = 29, .external_lex_state = 4}, - [2679] = {.lex_state = 29, .external_lex_state = 4}, - [2680] = {.lex_state = 29, .external_lex_state = 3}, - [2681] = {.lex_state = 39, .external_lex_state = 5}, - [2682] = {.lex_state = 29, .external_lex_state = 3}, - [2683] = {.lex_state = 29, .external_lex_state = 3}, - [2684] = {.lex_state = 29, .external_lex_state = 3}, - [2685] = {.lex_state = 29, .external_lex_state = 3}, - [2686] = {.lex_state = 29, .external_lex_state = 3}, - [2687] = {.lex_state = 29, .external_lex_state = 3}, - [2688] = {.lex_state = 29, .external_lex_state = 3}, - [2689] = {.lex_state = 29, .external_lex_state = 3}, - [2690] = {.lex_state = 29, .external_lex_state = 3}, + [2675] = {.lex_state = 29, .external_lex_state = 3}, + [2676] = {.lex_state = 29, .external_lex_state = 3}, + [2677] = {.lex_state = 29, .external_lex_state = 3}, + [2678] = {.lex_state = 29, .external_lex_state = 3}, + [2679] = {.lex_state = 29, .external_lex_state = 3}, + [2680] = {.lex_state = 29, .external_lex_state = 4}, + [2681] = {.lex_state = 29, .external_lex_state = 3}, + [2682] = {.lex_state = 29, .external_lex_state = 4}, + [2683] = {.lex_state = 29, .external_lex_state = 4}, + [2684] = {.lex_state = 29, .external_lex_state = 4}, + [2685] = {.lex_state = 29, .external_lex_state = 4}, + [2686] = {.lex_state = 29, .external_lex_state = 4}, + [2687] = {.lex_state = 29, .external_lex_state = 4}, + [2688] = {.lex_state = 29, .external_lex_state = 4}, + [2689] = {.lex_state = 29, .external_lex_state = 4}, + [2690] = {.lex_state = 29, .external_lex_state = 4}, [2691] = {.lex_state = 29, .external_lex_state = 4}, [2692] = {.lex_state = 29, .external_lex_state = 4}, - [2693] = {.lex_state = 29, .external_lex_state = 3}, - [2694] = {.lex_state = 29, .external_lex_state = 3}, + [2693] = {.lex_state = 29, .external_lex_state = 4}, + [2694] = {.lex_state = 29, .external_lex_state = 4}, [2695] = {.lex_state = 29, .external_lex_state = 4}, [2696] = {.lex_state = 29, .external_lex_state = 4}, - [2697] = {.lex_state = 29, .external_lex_state = 3}, + [2697] = {.lex_state = 29, .external_lex_state = 4}, [2698] = {.lex_state = 29, .external_lex_state = 4}, [2699] = {.lex_state = 29, .external_lex_state = 3}, - [2700] = {.lex_state = 29, .external_lex_state = 4}, + [2700] = {.lex_state = 29, .external_lex_state = 3}, [2701] = {.lex_state = 29, .external_lex_state = 4}, [2702] = {.lex_state = 29, .external_lex_state = 4}, [2703] = {.lex_state = 29, .external_lex_state = 4}, - [2704] = {.lex_state = 29, .external_lex_state = 3}, - [2705] = {.lex_state = 29, .external_lex_state = 3}, - [2706] = {.lex_state = 29, .external_lex_state = 3}, - [2707] = {.lex_state = 29, .external_lex_state = 3}, + [2704] = {.lex_state = 39, .external_lex_state = 2}, + [2705] = {.lex_state = 29, .external_lex_state = 4}, + [2706] = {.lex_state = 29, .external_lex_state = 4}, + [2707] = {.lex_state = 29, .external_lex_state = 4}, [2708] = {.lex_state = 29, .external_lex_state = 3}, - [2709] = {.lex_state = 39, .external_lex_state = 5}, - [2710] = {.lex_state = 29, .external_lex_state = 3}, - [2711] = {.lex_state = 29, .external_lex_state = 4}, + [2709] = {.lex_state = 29, .external_lex_state = 4}, + [2710] = {.lex_state = 29, .external_lex_state = 4}, + [2711] = {.lex_state = 29, .external_lex_state = 3}, [2712] = {.lex_state = 29, .external_lex_state = 4}, - [2713] = {.lex_state = 39, .external_lex_state = 5}, + [2713] = {.lex_state = 29, .external_lex_state = 4}, [2714] = {.lex_state = 29, .external_lex_state = 3}, - [2715] = {.lex_state = 29, .external_lex_state = 3}, - [2716] = {.lex_state = 29, .external_lex_state = 3}, - [2717] = {.lex_state = 29, .external_lex_state = 3}, - [2718] = {.lex_state = 29, .external_lex_state = 3}, + [2715] = {.lex_state = 29, .external_lex_state = 4}, + [2716] = {.lex_state = 39, .external_lex_state = 5}, + [2717] = {.lex_state = 29, .external_lex_state = 4}, + [2718] = {.lex_state = 29, .external_lex_state = 4}, [2719] = {.lex_state = 29, .external_lex_state = 3}, - [2720] = {.lex_state = 29, .external_lex_state = 3}, + [2720] = {.lex_state = 29, .external_lex_state = 4}, [2721] = {.lex_state = 29, .external_lex_state = 4}, - [2722] = {.lex_state = 39, .external_lex_state = 5}, - [2723] = {.lex_state = 29, .external_lex_state = 3}, - [2724] = {.lex_state = 39, .external_lex_state = 5}, - [2725] = {.lex_state = 29, .external_lex_state = 3}, - [2726] = {.lex_state = 29, .external_lex_state = 3}, - [2727] = {.lex_state = 29, .external_lex_state = 4}, - [2728] = {.lex_state = 29, .external_lex_state = 3}, - [2729] = {.lex_state = 29, .external_lex_state = 3}, - [2730] = {.lex_state = 29, .external_lex_state = 3}, - [2731] = {.lex_state = 29, .external_lex_state = 3}, - [2732] = {.lex_state = 29, .external_lex_state = 3}, - [2733] = {.lex_state = 29, .external_lex_state = 3}, - [2734] = {.lex_state = 29, .external_lex_state = 3}, - [2735] = {.lex_state = 29, .external_lex_state = 3}, + [2722] = {.lex_state = 29, .external_lex_state = 4}, + [2723] = {.lex_state = 29, .external_lex_state = 4}, + [2724] = {.lex_state = 38, .external_lex_state = 5}, + [2725] = {.lex_state = 29, .external_lex_state = 4}, + [2726] = {.lex_state = 29, .external_lex_state = 4}, + [2727] = {.lex_state = 38, .external_lex_state = 5}, + [2728] = {.lex_state = 29, .external_lex_state = 4}, + [2729] = {.lex_state = 29, .external_lex_state = 4}, + [2730] = {.lex_state = 29, .external_lex_state = 4}, + [2731] = {.lex_state = 29, .external_lex_state = 4}, + [2732] = {.lex_state = 29, .external_lex_state = 4}, + [2733] = {.lex_state = 29, .external_lex_state = 4}, + [2734] = {.lex_state = 29, .external_lex_state = 4}, + [2735] = {.lex_state = 29, .external_lex_state = 4}, [2736] = {.lex_state = 29, .external_lex_state = 4}, - [2737] = {.lex_state = 29, .external_lex_state = 3}, - [2738] = {.lex_state = 29, .external_lex_state = 3}, + [2737] = {.lex_state = 29, .external_lex_state = 4}, + [2738] = {.lex_state = 29, .external_lex_state = 4}, [2739] = {.lex_state = 29, .external_lex_state = 4}, - [2740] = {.lex_state = 29, .external_lex_state = 3}, - [2741] = {.lex_state = 29, .external_lex_state = 3}, + [2740] = {.lex_state = 29, .external_lex_state = 4}, + [2741] = {.lex_state = 29, .external_lex_state = 4}, [2742] = {.lex_state = 29, .external_lex_state = 4}, - [2743] = {.lex_state = 29, .external_lex_state = 3}, - [2744] = {.lex_state = 39, .external_lex_state = 5}, - [2745] = {.lex_state = 29, .external_lex_state = 3}, - [2746] = {.lex_state = 29, .external_lex_state = 3}, - [2747] = {.lex_state = 29, .external_lex_state = 3}, + [2743] = {.lex_state = 29, .external_lex_state = 4}, + [2744] = {.lex_state = 29, .external_lex_state = 4}, + [2745] = {.lex_state = 39, .external_lex_state = 5}, + [2746] = {.lex_state = 29, .external_lex_state = 4}, + [2747] = {.lex_state = 29, .external_lex_state = 4}, [2748] = {.lex_state = 29, .external_lex_state = 4}, - [2749] = {.lex_state = 29, .external_lex_state = 3}, - [2750] = {.lex_state = 29, .external_lex_state = 3}, - [2751] = {.lex_state = 29, .external_lex_state = 3}, - [2752] = {.lex_state = 29, .external_lex_state = 3}, + [2749] = {.lex_state = 29, .external_lex_state = 4}, + [2750] = {.lex_state = 29, .external_lex_state = 4}, + [2751] = {.lex_state = 29, .external_lex_state = 4}, + [2752] = {.lex_state = 29, .external_lex_state = 4}, [2753] = {.lex_state = 29, .external_lex_state = 4}, - [2754] = {.lex_state = 29, .external_lex_state = 3}, + [2754] = {.lex_state = 29, .external_lex_state = 4}, [2755] = {.lex_state = 29, .external_lex_state = 3}, - [2756] = {.lex_state = 29, .external_lex_state = 3}, - [2757] = {.lex_state = 29, .external_lex_state = 3}, + [2756] = {.lex_state = 29, .external_lex_state = 4}, + [2757] = {.lex_state = 39, .external_lex_state = 2}, [2758] = {.lex_state = 29, .external_lex_state = 3}, [2759] = {.lex_state = 29, .external_lex_state = 3}, [2760] = {.lex_state = 29, .external_lex_state = 3}, [2761] = {.lex_state = 29, .external_lex_state = 3}, [2762] = {.lex_state = 29, .external_lex_state = 3}, - [2763] = {.lex_state = 29, .external_lex_state = 3}, + [2763] = {.lex_state = 29, .external_lex_state = 4}, [2764] = {.lex_state = 29, .external_lex_state = 3}, - [2765] = {.lex_state = 29, .external_lex_state = 4}, + [2765] = {.lex_state = 29, .external_lex_state = 3}, [2766] = {.lex_state = 29, .external_lex_state = 3}, [2767] = {.lex_state = 29, .external_lex_state = 3}, [2768] = {.lex_state = 29, .external_lex_state = 3}, [2769] = {.lex_state = 29, .external_lex_state = 4}, - [2770] = {.lex_state = 29, .external_lex_state = 4}, - [2771] = {.lex_state = 29, .external_lex_state = 4}, - [2772] = {.lex_state = 29, .external_lex_state = 3}, + [2770] = {.lex_state = 29, .external_lex_state = 3}, + [2771] = {.lex_state = 29, .external_lex_state = 3}, + [2772] = {.lex_state = 29, .external_lex_state = 4}, [2773] = {.lex_state = 29, .external_lex_state = 3}, - [2774] = {.lex_state = 29, .external_lex_state = 3}, - [2775] = {.lex_state = 29, .external_lex_state = 3}, + [2774] = {.lex_state = 29, .external_lex_state = 4}, + [2775] = {.lex_state = 29, .external_lex_state = 4}, [2776] = {.lex_state = 29, .external_lex_state = 3}, [2777] = {.lex_state = 29, .external_lex_state = 4}, - [2778] = {.lex_state = 38, .external_lex_state = 5}, - [2779] = {.lex_state = 29, .external_lex_state = 3}, - [2780] = {.lex_state = 29, .external_lex_state = 3}, - [2781] = {.lex_state = 29, .external_lex_state = 3}, - [2782] = {.lex_state = 29, .external_lex_state = 3}, + [2778] = {.lex_state = 29, .external_lex_state = 3}, + [2779] = {.lex_state = 39, .external_lex_state = 2}, + [2780] = {.lex_state = 39, .external_lex_state = 5}, + [2781] = {.lex_state = 29, .external_lex_state = 4}, + [2782] = {.lex_state = 29, .external_lex_state = 4}, [2783] = {.lex_state = 29, .external_lex_state = 3}, - [2784] = {.lex_state = 29, .external_lex_state = 3}, + [2784] = {.lex_state = 29, .external_lex_state = 4}, [2785] = {.lex_state = 29, .external_lex_state = 4}, - [2786] = {.lex_state = 38, .external_lex_state = 5}, - [2787] = {.lex_state = 29, .external_lex_state = 3}, - [2788] = {.lex_state = 39, .external_lex_state = 5}, - [2789] = {.lex_state = 39, .external_lex_state = 5}, - [2790] = {.lex_state = 29, .external_lex_state = 3}, - [2791] = {.lex_state = 29, .external_lex_state = 3}, - [2792] = {.lex_state = 29, .external_lex_state = 4}, - [2793] = {.lex_state = 29, .external_lex_state = 3}, - [2794] = {.lex_state = 29, .external_lex_state = 3}, - [2795] = {.lex_state = 29, .external_lex_state = 3}, - [2796] = {.lex_state = 39, .external_lex_state = 5}, + [2786] = {.lex_state = 29, .external_lex_state = 4}, + [2787] = {.lex_state = 29, .external_lex_state = 4}, + [2788] = {.lex_state = 29, .external_lex_state = 4}, + [2789] = {.lex_state = 29, .external_lex_state = 4}, + [2790] = {.lex_state = 29, .external_lex_state = 4}, + [2791] = {.lex_state = 29, .external_lex_state = 4}, + [2792] = {.lex_state = 39, .external_lex_state = 5}, + [2793] = {.lex_state = 29, .external_lex_state = 4}, + [2794] = {.lex_state = 29, .external_lex_state = 4}, + [2795] = {.lex_state = 29, .external_lex_state = 4}, + [2796] = {.lex_state = 29, .external_lex_state = 4}, [2797] = {.lex_state = 29, .external_lex_state = 4}, - [2798] = {.lex_state = 29, .external_lex_state = 3}, + [2798] = {.lex_state = 29, .external_lex_state = 4}, [2799] = {.lex_state = 29, .external_lex_state = 4}, - [2800] = {.lex_state = 29, .external_lex_state = 3}, + [2800] = {.lex_state = 29, .external_lex_state = 4}, [2801] = {.lex_state = 29, .external_lex_state = 4}, [2802] = {.lex_state = 29, .external_lex_state = 4}, [2803] = {.lex_state = 29, .external_lex_state = 4}, [2804] = {.lex_state = 29, .external_lex_state = 4}, - [2805] = {.lex_state = 29, .external_lex_state = 4}, + [2805] = {.lex_state = 39, .external_lex_state = 5}, [2806] = {.lex_state = 29, .external_lex_state = 4}, [2807] = {.lex_state = 29, .external_lex_state = 4}, - [2808] = {.lex_state = 29, .external_lex_state = 3}, + [2808] = {.lex_state = 29, .external_lex_state = 4}, [2809] = {.lex_state = 29, .external_lex_state = 3}, - [2810] = {.lex_state = 29, .external_lex_state = 3}, + [2810] = {.lex_state = 29, .external_lex_state = 4}, [2811] = {.lex_state = 29, .external_lex_state = 3}, - [2812] = {.lex_state = 29, .external_lex_state = 3}, - [2813] = {.lex_state = 39, .external_lex_state = 5}, - [2814] = {.lex_state = 29, .external_lex_state = 3}, + [2812] = {.lex_state = 29, .external_lex_state = 4}, + [2813] = {.lex_state = 29, .external_lex_state = 4}, + [2814] = {.lex_state = 29, .external_lex_state = 4}, [2815] = {.lex_state = 29, .external_lex_state = 3}, [2816] = {.lex_state = 29, .external_lex_state = 3}, - [2817] = {.lex_state = 29, .external_lex_state = 3}, - [2818] = {.lex_state = 29, .external_lex_state = 3}, - [2819] = {.lex_state = 29, .external_lex_state = 3}, + [2817] = {.lex_state = 29, .external_lex_state = 4}, + [2818] = {.lex_state = 29, .external_lex_state = 4}, + [2819] = {.lex_state = 29, .external_lex_state = 4}, [2820] = {.lex_state = 29, .external_lex_state = 4}, - [2821] = {.lex_state = 29, .external_lex_state = 3}, - [2822] = {.lex_state = 29, .external_lex_state = 3}, - [2823] = {.lex_state = 29, .external_lex_state = 3}, - [2824] = {.lex_state = 29, .external_lex_state = 3}, - [2825] = {.lex_state = 39, .external_lex_state = 5}, - [2826] = {.lex_state = 29, .external_lex_state = 3}, - [2827] = {.lex_state = 29, .external_lex_state = 3}, - [2828] = {.lex_state = 29, .external_lex_state = 3}, - [2829] = {.lex_state = 29, .external_lex_state = 3}, - [2830] = {.lex_state = 29, .external_lex_state = 4}, - [2831] = {.lex_state = 29, .external_lex_state = 4}, + [2821] = {.lex_state = 29, .external_lex_state = 4}, + [2822] = {.lex_state = 29, .external_lex_state = 4}, + [2823] = {.lex_state = 29, .external_lex_state = 4}, + [2824] = {.lex_state = 29, .external_lex_state = 4}, + [2825] = {.lex_state = 29, .external_lex_state = 3}, + [2826] = {.lex_state = 29, .external_lex_state = 4}, + [2827] = {.lex_state = 29, .external_lex_state = 4}, + [2828] = {.lex_state = 29, .external_lex_state = 4}, + [2829] = {.lex_state = 29, .external_lex_state = 4}, + [2830] = {.lex_state = 39, .external_lex_state = 2}, + [2831] = {.lex_state = 29, .external_lex_state = 3}, [2832] = {.lex_state = 29, .external_lex_state = 4}, - [2833] = {.lex_state = 29, .external_lex_state = 4}, - [2834] = {.lex_state = 29, .external_lex_state = 4}, + [2833] = {.lex_state = 29, .external_lex_state = 3}, + [2834] = {.lex_state = 29, .external_lex_state = 3}, [2835] = {.lex_state = 29, .external_lex_state = 4}, [2836] = {.lex_state = 29, .external_lex_state = 4}, [2837] = {.lex_state = 29, .external_lex_state = 4}, [2838] = {.lex_state = 29, .external_lex_state = 4}, - [2839] = {.lex_state = 29, .external_lex_state = 4}, + [2839] = {.lex_state = 29, .external_lex_state = 3}, [2840] = {.lex_state = 29, .external_lex_state = 4}, [2841] = {.lex_state = 29, .external_lex_state = 4}, - [2842] = {.lex_state = 29, .external_lex_state = 4}, - [2843] = {.lex_state = 29, .external_lex_state = 4}, + [2842] = {.lex_state = 39, .external_lex_state = 2}, + [2843] = {.lex_state = 39, .external_lex_state = 2}, [2844] = {.lex_state = 29, .external_lex_state = 4}, [2845] = {.lex_state = 29, .external_lex_state = 4}, [2846] = {.lex_state = 29, .external_lex_state = 4}, @@ -25238,10 +24993,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2857] = {.lex_state = 29, .external_lex_state = 4}, [2858] = {.lex_state = 29, .external_lex_state = 4}, [2859] = {.lex_state = 29, .external_lex_state = 4}, - [2860] = {.lex_state = 29, .external_lex_state = 4}, - [2861] = {.lex_state = 29, .external_lex_state = 4}, - [2862] = {.lex_state = 29, .external_lex_state = 4}, - [2863] = {.lex_state = 29, .external_lex_state = 4}, + [2860] = {.lex_state = 29, .external_lex_state = 3}, + [2861] = {.lex_state = 29, .external_lex_state = 3}, + [2862] = {.lex_state = 29, .external_lex_state = 3}, + [2863] = {.lex_state = 29, .external_lex_state = 3}, [2864] = {.lex_state = 29, .external_lex_state = 4}, [2865] = {.lex_state = 29, .external_lex_state = 4}, [2866] = {.lex_state = 29, .external_lex_state = 4}, @@ -25249,708 +25004,708 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2868] = {.lex_state = 29, .external_lex_state = 4}, [2869] = {.lex_state = 29, .external_lex_state = 4}, [2870] = {.lex_state = 29, .external_lex_state = 4}, - [2871] = {.lex_state = 39, .external_lex_state = 2}, + [2871] = {.lex_state = 29, .external_lex_state = 4}, [2872] = {.lex_state = 29, .external_lex_state = 4}, [2873] = {.lex_state = 29, .external_lex_state = 4}, - [2874] = {.lex_state = 29, .external_lex_state = 4}, - [2875] = {.lex_state = 29, .external_lex_state = 4}, - [2876] = {.lex_state = 29, .external_lex_state = 4}, - [2877] = {.lex_state = 39, .external_lex_state = 2}, - [2878] = {.lex_state = 39, .external_lex_state = 2}, - [2879] = {.lex_state = 29, .external_lex_state = 4}, + [2874] = {.lex_state = 29, .external_lex_state = 3}, + [2875] = {.lex_state = 29, .external_lex_state = 3}, + [2876] = {.lex_state = 29, .external_lex_state = 3}, + [2877] = {.lex_state = 29, .external_lex_state = 3}, + [2878] = {.lex_state = 29, .external_lex_state = 3}, + [2879] = {.lex_state = 29, .external_lex_state = 3}, [2880] = {.lex_state = 29, .external_lex_state = 4}, [2881] = {.lex_state = 29, .external_lex_state = 4}, [2882] = {.lex_state = 29, .external_lex_state = 4}, - [2883] = {.lex_state = 39, .external_lex_state = 5}, + [2883] = {.lex_state = 29, .external_lex_state = 3}, [2884] = {.lex_state = 29, .external_lex_state = 4}, [2885] = {.lex_state = 29, .external_lex_state = 4}, - [2886] = {.lex_state = 39, .external_lex_state = 2}, + [2886] = {.lex_state = 29, .external_lex_state = 4}, [2887] = {.lex_state = 29, .external_lex_state = 4}, [2888] = {.lex_state = 29, .external_lex_state = 4}, - [2889] = {.lex_state = 29, .external_lex_state = 4}, - [2890] = {.lex_state = 39, .external_lex_state = 5}, - [2891] = {.lex_state = 29, .external_lex_state = 4}, - [2892] = {.lex_state = 39, .external_lex_state = 5}, - [2893] = {.lex_state = 39, .external_lex_state = 2}, - [2894] = {.lex_state = 29, .external_lex_state = 4}, + [2889] = {.lex_state = 38, .external_lex_state = 5}, + [2890] = {.lex_state = 29, .external_lex_state = 4}, + [2891] = {.lex_state = 29, .external_lex_state = 3}, + [2892] = {.lex_state = 29, .external_lex_state = 4}, + [2893] = {.lex_state = 29, .external_lex_state = 3}, + [2894] = {.lex_state = 39, .external_lex_state = 5}, [2895] = {.lex_state = 29, .external_lex_state = 4}, - [2896] = {.lex_state = 29, .external_lex_state = 4}, + [2896] = {.lex_state = 38, .external_lex_state = 5}, [2897] = {.lex_state = 29, .external_lex_state = 4}, [2898] = {.lex_state = 29, .external_lex_state = 4}, [2899] = {.lex_state = 29, .external_lex_state = 4}, [2900] = {.lex_state = 29, .external_lex_state = 4}, - [2901] = {.lex_state = 29, .external_lex_state = 4}, + [2901] = {.lex_state = 38, .external_lex_state = 5}, [2902] = {.lex_state = 29, .external_lex_state = 4}, - [2903] = {.lex_state = 29, .external_lex_state = 4}, - [2904] = {.lex_state = 29, .external_lex_state = 4}, - [2905] = {.lex_state = 29, .external_lex_state = 4}, + [2903] = {.lex_state = 39, .external_lex_state = 5}, + [2904] = {.lex_state = 39, .external_lex_state = 2}, + [2905] = {.lex_state = 39, .external_lex_state = 2}, [2906] = {.lex_state = 29, .external_lex_state = 4}, - [2907] = {.lex_state = 29, .external_lex_state = 4}, - [2908] = {.lex_state = 29, .external_lex_state = 4}, + [2907] = {.lex_state = 39, .external_lex_state = 5}, + [2908] = {.lex_state = 29, .external_lex_state = 3}, [2909] = {.lex_state = 29, .external_lex_state = 4}, [2910] = {.lex_state = 29, .external_lex_state = 4}, - [2911] = {.lex_state = 29, .external_lex_state = 4}, + [2911] = {.lex_state = 27, .external_lex_state = 3}, [2912] = {.lex_state = 29, .external_lex_state = 4}, [2913] = {.lex_state = 39, .external_lex_state = 2}, [2914] = {.lex_state = 29, .external_lex_state = 4}, - [2915] = {.lex_state = 29, .external_lex_state = 4}, + [2915] = {.lex_state = 29, .external_lex_state = 3}, [2916] = {.lex_state = 29, .external_lex_state = 4}, - [2917] = {.lex_state = 29, .external_lex_state = 4}, + [2917] = {.lex_state = 38, .external_lex_state = 5}, [2918] = {.lex_state = 29, .external_lex_state = 3}, - [2919] = {.lex_state = 29, .external_lex_state = 3}, - [2920] = {.lex_state = 29, .external_lex_state = 3}, + [2919] = {.lex_state = 39, .external_lex_state = 2}, + [2920] = {.lex_state = 39, .external_lex_state = 5}, [2921] = {.lex_state = 29, .external_lex_state = 3}, - [2922] = {.lex_state = 29, .external_lex_state = 3}, - [2923] = {.lex_state = 29, .external_lex_state = 3}, - [2924] = {.lex_state = 39, .external_lex_state = 5}, - [2925] = {.lex_state = 38, .external_lex_state = 5}, - [2926] = {.lex_state = 38, .external_lex_state = 5}, - [2927] = {.lex_state = 29, .external_lex_state = 3}, + [2922] = {.lex_state = 29, .external_lex_state = 4}, + [2923] = {.lex_state = 39, .external_lex_state = 5}, + [2924] = {.lex_state = 29, .external_lex_state = 4}, + [2925] = {.lex_state = 29, .external_lex_state = 4}, + [2926] = {.lex_state = 39, .external_lex_state = 2}, + [2927] = {.lex_state = 39, .external_lex_state = 5}, [2928] = {.lex_state = 29, .external_lex_state = 4}, - [2929] = {.lex_state = 29, .external_lex_state = 3}, + [2929] = {.lex_state = 29, .external_lex_state = 4}, [2930] = {.lex_state = 29, .external_lex_state = 3}, [2931] = {.lex_state = 29, .external_lex_state = 4}, - [2932] = {.lex_state = 29, .external_lex_state = 3}, - [2933] = {.lex_state = 29, .external_lex_state = 3}, - [2934] = {.lex_state = 29, .external_lex_state = 4}, - [2935] = {.lex_state = 29, .external_lex_state = 4}, + [2932] = {.lex_state = 29, .external_lex_state = 4}, + [2933] = {.lex_state = 29, .external_lex_state = 4}, + [2934] = {.lex_state = 29, .external_lex_state = 3}, + [2935] = {.lex_state = 39, .external_lex_state = 2}, [2936] = {.lex_state = 29, .external_lex_state = 4}, - [2937] = {.lex_state = 29, .external_lex_state = 3}, - [2938] = {.lex_state = 29, .external_lex_state = 4}, - [2939] = {.lex_state = 29, .external_lex_state = 4}, - [2940] = {.lex_state = 29, .external_lex_state = 3}, + [2937] = {.lex_state = 29, .external_lex_state = 4}, + [2938] = {.lex_state = 39, .external_lex_state = 5}, + [2939] = {.lex_state = 39, .external_lex_state = 5}, + [2940] = {.lex_state = 29, .external_lex_state = 4}, [2941] = {.lex_state = 29, .external_lex_state = 3}, - [2942] = {.lex_state = 29, .external_lex_state = 4}, - [2943] = {.lex_state = 29, .external_lex_state = 4}, + [2942] = {.lex_state = 39, .external_lex_state = 2}, + [2943] = {.lex_state = 29, .external_lex_state = 3}, [2944] = {.lex_state = 29, .external_lex_state = 4}, - [2945] = {.lex_state = 29, .external_lex_state = 4}, - [2946] = {.lex_state = 29, .external_lex_state = 3}, - [2947] = {.lex_state = 29, .external_lex_state = 3}, + [2945] = {.lex_state = 29, .external_lex_state = 3}, + [2946] = {.lex_state = 39, .external_lex_state = 2}, + [2947] = {.lex_state = 39, .external_lex_state = 2}, [2948] = {.lex_state = 29, .external_lex_state = 4}, - [2949] = {.lex_state = 29, .external_lex_state = 4}, - [2950] = {.lex_state = 29, .external_lex_state = 4}, - [2951] = {.lex_state = 29, .external_lex_state = 4}, - [2952] = {.lex_state = 29, .external_lex_state = 4}, - [2953] = {.lex_state = 29, .external_lex_state = 4}, - [2954] = {.lex_state = 29, .external_lex_state = 3}, + [2949] = {.lex_state = 39, .external_lex_state = 5}, + [2950] = {.lex_state = 39, .external_lex_state = 5}, + [2951] = {.lex_state = 39, .external_lex_state = 2}, + [2952] = {.lex_state = 29, .external_lex_state = 3}, + [2953] = {.lex_state = 29, .external_lex_state = 3}, + [2954] = {.lex_state = 29, .external_lex_state = 4}, [2955] = {.lex_state = 29, .external_lex_state = 3}, - [2956] = {.lex_state = 29, .external_lex_state = 4}, + [2956] = {.lex_state = 29, .external_lex_state = 3}, [2957] = {.lex_state = 29, .external_lex_state = 4}, [2958] = {.lex_state = 29, .external_lex_state = 3}, - [2959] = {.lex_state = 29, .external_lex_state = 4}, - [2960] = {.lex_state = 29, .external_lex_state = 3}, + [2959] = {.lex_state = 39, .external_lex_state = 5}, + [2960] = {.lex_state = 29, .external_lex_state = 4}, [2961] = {.lex_state = 29, .external_lex_state = 3}, - [2962] = {.lex_state = 29, .external_lex_state = 3}, - [2963] = {.lex_state = 29, .external_lex_state = 4}, - [2964] = {.lex_state = 27, .external_lex_state = 3}, - [2965] = {.lex_state = 29, .external_lex_state = 3}, + [2962] = {.lex_state = 39, .external_lex_state = 5}, + [2963] = {.lex_state = 29, .external_lex_state = 3}, + [2964] = {.lex_state = 29, .external_lex_state = 3}, + [2965] = {.lex_state = 39, .external_lex_state = 5}, [2966] = {.lex_state = 29, .external_lex_state = 4}, - [2967] = {.lex_state = 29, .external_lex_state = 3}, - [2968] = {.lex_state = 39, .external_lex_state = 5}, + [2967] = {.lex_state = 29, .external_lex_state = 4}, + [2968] = {.lex_state = 29, .external_lex_state = 4}, [2969] = {.lex_state = 29, .external_lex_state = 4}, [2970] = {.lex_state = 29, .external_lex_state = 3}, - [2971] = {.lex_state = 29, .external_lex_state = 4}, - [2972] = {.lex_state = 29, .external_lex_state = 3}, + [2971] = {.lex_state = 29, .external_lex_state = 3}, + [2972] = {.lex_state = 29, .external_lex_state = 4}, [2973] = {.lex_state = 29, .external_lex_state = 4}, - [2974] = {.lex_state = 29, .external_lex_state = 4}, - [2975] = {.lex_state = 29, .external_lex_state = 3}, - [2976] = {.lex_state = 29, .external_lex_state = 4}, - [2977] = {.lex_state = 29, .external_lex_state = 3}, - [2978] = {.lex_state = 29, .external_lex_state = 3}, + [2974] = {.lex_state = 39, .external_lex_state = 2}, + [2975] = {.lex_state = 29, .external_lex_state = 4}, + [2976] = {.lex_state = 39, .external_lex_state = 5}, + [2977] = {.lex_state = 29, .external_lex_state = 4}, + [2978] = {.lex_state = 29, .external_lex_state = 4}, [2979] = {.lex_state = 29, .external_lex_state = 3}, - [2980] = {.lex_state = 29, .external_lex_state = 4}, - [2981] = {.lex_state = 29, .external_lex_state = 4}, + [2980] = {.lex_state = 29, .external_lex_state = 3}, + [2981] = {.lex_state = 29, .external_lex_state = 3}, [2982] = {.lex_state = 29, .external_lex_state = 4}, - [2983] = {.lex_state = 29, .external_lex_state = 3}, + [2983] = {.lex_state = 29, .external_lex_state = 4}, [2984] = {.lex_state = 29, .external_lex_state = 3}, [2985] = {.lex_state = 29, .external_lex_state = 4}, [2986] = {.lex_state = 29, .external_lex_state = 4}, - [2987] = {.lex_state = 29, .external_lex_state = 3}, - [2988] = {.lex_state = 29, .external_lex_state = 4}, - [2989] = {.lex_state = 29, .external_lex_state = 3}, - [2990] = {.lex_state = 29, .external_lex_state = 4}, - [2991] = {.lex_state = 29, .external_lex_state = 3}, - [2992] = {.lex_state = 29, .external_lex_state = 3}, - [2993] = {.lex_state = 29, .external_lex_state = 4}, - [2994] = {.lex_state = 29, .external_lex_state = 3}, - [2995] = {.lex_state = 38, .external_lex_state = 5}, + [2987] = {.lex_state = 29, .external_lex_state = 4}, + [2988] = {.lex_state = 39, .external_lex_state = 5}, + [2989] = {.lex_state = 29, .external_lex_state = 4}, + [2990] = {.lex_state = 39, .external_lex_state = 5}, + [2991] = {.lex_state = 29, .external_lex_state = 4}, + [2992] = {.lex_state = 39, .external_lex_state = 5}, + [2993] = {.lex_state = 30, .external_lex_state = 4}, + [2994] = {.lex_state = 29, .external_lex_state = 4}, + [2995] = {.lex_state = 39, .external_lex_state = 2}, [2996] = {.lex_state = 29, .external_lex_state = 4}, - [2997] = {.lex_state = 29, .external_lex_state = 4}, + [2997] = {.lex_state = 39, .external_lex_state = 5}, [2998] = {.lex_state = 29, .external_lex_state = 4}, - [2999] = {.lex_state = 38, .external_lex_state = 5}, + [2999] = {.lex_state = 29, .external_lex_state = 4}, [3000] = {.lex_state = 29, .external_lex_state = 4}, - [3001] = {.lex_state = 39, .external_lex_state = 5}, - [3002] = {.lex_state = 29, .external_lex_state = 4}, - [3003] = {.lex_state = 29, .external_lex_state = 4}, - [3004] = {.lex_state = 29, .external_lex_state = 4}, - [3005] = {.lex_state = 29, .external_lex_state = 3}, - [3006] = {.lex_state = 29, .external_lex_state = 4}, + [3001] = {.lex_state = 29, .external_lex_state = 4}, + [3002] = {.lex_state = 39, .external_lex_state = 5}, + [3003] = {.lex_state = 29, .external_lex_state = 3}, + [3004] = {.lex_state = 29, .external_lex_state = 3}, + [3005] = {.lex_state = 29, .external_lex_state = 4}, + [3006] = {.lex_state = 29, .external_lex_state = 3}, [3007] = {.lex_state = 29, .external_lex_state = 4}, - [3008] = {.lex_state = 38, .external_lex_state = 5}, - [3009] = {.lex_state = 38, .external_lex_state = 5}, - [3010] = {.lex_state = 39, .external_lex_state = 5}, - [3011] = {.lex_state = 29, .external_lex_state = 4}, - [3012] = {.lex_state = 29, .external_lex_state = 3}, - [3013] = {.lex_state = 29, .external_lex_state = 3}, - [3014] = {.lex_state = 29, .external_lex_state = 4}, - [3015] = {.lex_state = 29, .external_lex_state = 3}, + [3008] = {.lex_state = 29, .external_lex_state = 4}, + [3009] = {.lex_state = 29, .external_lex_state = 3}, + [3010] = {.lex_state = 39, .external_lex_state = 2}, + [3011] = {.lex_state = 39, .external_lex_state = 2}, + [3012] = {.lex_state = 29, .external_lex_state = 4}, + [3013] = {.lex_state = 39, .external_lex_state = 5}, + [3014] = {.lex_state = 39, .external_lex_state = 5}, + [3015] = {.lex_state = 29, .external_lex_state = 4}, [3016] = {.lex_state = 29, .external_lex_state = 4}, [3017] = {.lex_state = 29, .external_lex_state = 4}, - [3018] = {.lex_state = 29, .external_lex_state = 4}, - [3019] = {.lex_state = 29, .external_lex_state = 4}, - [3020] = {.lex_state = 29, .external_lex_state = 4}, + [3018] = {.lex_state = 39, .external_lex_state = 5}, + [3019] = {.lex_state = 39, .external_lex_state = 5}, + [3020] = {.lex_state = 27, .external_lex_state = 4}, [3021] = {.lex_state = 29, .external_lex_state = 4}, - [3022] = {.lex_state = 29, .external_lex_state = 3}, + [3022] = {.lex_state = 29, .external_lex_state = 4}, [3023] = {.lex_state = 29, .external_lex_state = 4}, [3024] = {.lex_state = 29, .external_lex_state = 4}, [3025] = {.lex_state = 29, .external_lex_state = 4}, - [3026] = {.lex_state = 29, .external_lex_state = 4}, + [3026] = {.lex_state = 39, .external_lex_state = 5}, [3027] = {.lex_state = 39, .external_lex_state = 5}, - [3028] = {.lex_state = 39, .external_lex_state = 2}, - [3029] = {.lex_state = 29, .external_lex_state = 4}, + [3028] = {.lex_state = 29, .external_lex_state = 4}, + [3029] = {.lex_state = 29, .external_lex_state = 3}, [3030] = {.lex_state = 29, .external_lex_state = 4}, - [3031] = {.lex_state = 29, .external_lex_state = 3}, - [3032] = {.lex_state = 29, .external_lex_state = 4}, - [3033] = {.lex_state = 39, .external_lex_state = 2}, - [3034] = {.lex_state = 29, .external_lex_state = 4}, + [3031] = {.lex_state = 29, .external_lex_state = 4}, + [3032] = {.lex_state = 29, .external_lex_state = 3}, + [3033] = {.lex_state = 29, .external_lex_state = 3}, + [3034] = {.lex_state = 29, .external_lex_state = 3}, [3035] = {.lex_state = 29, .external_lex_state = 4}, [3036] = {.lex_state = 29, .external_lex_state = 4}, - [3037] = {.lex_state = 29, .external_lex_state = 4}, - [3038] = {.lex_state = 29, .external_lex_state = 4}, + [3037] = {.lex_state = 29, .external_lex_state = 3}, + [3038] = {.lex_state = 29, .external_lex_state = 3}, [3039] = {.lex_state = 29, .external_lex_state = 4}, - [3040] = {.lex_state = 29, .external_lex_state = 3}, - [3041] = {.lex_state = 29, .external_lex_state = 4}, - [3042] = {.lex_state = 29, .external_lex_state = 3}, - [3043] = {.lex_state = 29, .external_lex_state = 3}, + [3040] = {.lex_state = 29, .external_lex_state = 4}, + [3041] = {.lex_state = 29, .external_lex_state = 3}, + [3042] = {.lex_state = 29, .external_lex_state = 4}, + [3043] = {.lex_state = 29, .external_lex_state = 4}, [3044] = {.lex_state = 29, .external_lex_state = 4}, [3045] = {.lex_state = 29, .external_lex_state = 4}, - [3046] = {.lex_state = 29, .external_lex_state = 4}, + [3046] = {.lex_state = 39, .external_lex_state = 2}, [3047] = {.lex_state = 29, .external_lex_state = 4}, - [3048] = {.lex_state = 29, .external_lex_state = 4}, + [3048] = {.lex_state = 39, .external_lex_state = 2}, [3049] = {.lex_state = 29, .external_lex_state = 3}, - [3050] = {.lex_state = 29, .external_lex_state = 4}, + [3050] = {.lex_state = 29, .external_lex_state = 3}, [3051] = {.lex_state = 29, .external_lex_state = 4}, - [3052] = {.lex_state = 29, .external_lex_state = 4}, + [3052] = {.lex_state = 29, .external_lex_state = 3}, [3053] = {.lex_state = 29, .external_lex_state = 4}, - [3054] = {.lex_state = 39, .external_lex_state = 2}, - [3055] = {.lex_state = 29, .external_lex_state = 4}, - [3056] = {.lex_state = 29, .external_lex_state = 4}, + [3054] = {.lex_state = 29, .external_lex_state = 4}, + [3055] = {.lex_state = 29, .external_lex_state = 3}, + [3056] = {.lex_state = 29, .external_lex_state = 3}, [3057] = {.lex_state = 29, .external_lex_state = 4}, [3058] = {.lex_state = 29, .external_lex_state = 4}, [3059] = {.lex_state = 29, .external_lex_state = 4}, [3060] = {.lex_state = 29, .external_lex_state = 4}, - [3061] = {.lex_state = 29, .external_lex_state = 4}, + [3061] = {.lex_state = 39, .external_lex_state = 5}, [3062] = {.lex_state = 29, .external_lex_state = 4}, [3063] = {.lex_state = 29, .external_lex_state = 4}, - [3064] = {.lex_state = 29, .external_lex_state = 4}, + [3064] = {.lex_state = 39, .external_lex_state = 5}, [3065] = {.lex_state = 29, .external_lex_state = 4}, - [3066] = {.lex_state = 29, .external_lex_state = 4}, - [3067] = {.lex_state = 29, .external_lex_state = 3}, - [3068] = {.lex_state = 39, .external_lex_state = 2}, + [3066] = {.lex_state = 29, .external_lex_state = 3}, + [3067] = {.lex_state = 29, .external_lex_state = 4}, + [3068] = {.lex_state = 29, .external_lex_state = 3}, [3069] = {.lex_state = 29, .external_lex_state = 4}, - [3070] = {.lex_state = 39, .external_lex_state = 2}, - [3071] = {.lex_state = 29, .external_lex_state = 4}, - [3072] = {.lex_state = 39, .external_lex_state = 5}, + [3070] = {.lex_state = 29, .external_lex_state = 3}, + [3071] = {.lex_state = 29, .external_lex_state = 3}, + [3072] = {.lex_state = 29, .external_lex_state = 4}, [3073] = {.lex_state = 29, .external_lex_state = 4}, - [3074] = {.lex_state = 29, .external_lex_state = 4}, + [3074] = {.lex_state = 39, .external_lex_state = 5}, [3075] = {.lex_state = 29, .external_lex_state = 4}, [3076] = {.lex_state = 29, .external_lex_state = 4}, - [3077] = {.lex_state = 39, .external_lex_state = 2}, + [3077] = {.lex_state = 29, .external_lex_state = 3}, [3078] = {.lex_state = 29, .external_lex_state = 3}, - [3079] = {.lex_state = 39, .external_lex_state = 5}, - [3080] = {.lex_state = 29, .external_lex_state = 4}, - [3081] = {.lex_state = 29, .external_lex_state = 4}, - [3082] = {.lex_state = 39, .external_lex_state = 2}, - [3083] = {.lex_state = 29, .external_lex_state = 4}, - [3084] = {.lex_state = 39, .external_lex_state = 2}, + [3079] = {.lex_state = 29, .external_lex_state = 3}, + [3080] = {.lex_state = 29, .external_lex_state = 3}, + [3081] = {.lex_state = 39, .external_lex_state = 5}, + [3082] = {.lex_state = 39, .external_lex_state = 5}, + [3083] = {.lex_state = 29, .external_lex_state = 3}, + [3084] = {.lex_state = 29, .external_lex_state = 3}, [3085] = {.lex_state = 29, .external_lex_state = 4}, [3086] = {.lex_state = 29, .external_lex_state = 3}, - [3087] = {.lex_state = 39, .external_lex_state = 5}, - [3088] = {.lex_state = 39, .external_lex_state = 5}, + [3087] = {.lex_state = 29, .external_lex_state = 4}, + [3088] = {.lex_state = 29, .external_lex_state = 3}, [3089] = {.lex_state = 29, .external_lex_state = 3}, - [3090] = {.lex_state = 29, .external_lex_state = 4}, - [3091] = {.lex_state = 29, .external_lex_state = 4}, - [3092] = {.lex_state = 39, .external_lex_state = 5}, - [3093] = {.lex_state = 39, .external_lex_state = 5}, + [3090] = {.lex_state = 29, .external_lex_state = 3}, + [3091] = {.lex_state = 29, .external_lex_state = 3}, + [3092] = {.lex_state = 29, .external_lex_state = 3}, + [3093] = {.lex_state = 29, .external_lex_state = 3}, [3094] = {.lex_state = 29, .external_lex_state = 4}, - [3095] = {.lex_state = 29, .external_lex_state = 4}, - [3096] = {.lex_state = 29, .external_lex_state = 4}, + [3095] = {.lex_state = 29, .external_lex_state = 3}, + [3096] = {.lex_state = 39, .external_lex_state = 5}, [3097] = {.lex_state = 29, .external_lex_state = 4}, - [3098] = {.lex_state = 29, .external_lex_state = 3}, - [3099] = {.lex_state = 29, .external_lex_state = 4}, - [3100] = {.lex_state = 29, .external_lex_state = 4}, - [3101] = {.lex_state = 29, .external_lex_state = 4}, + [3098] = {.lex_state = 39, .external_lex_state = 5}, + [3099] = {.lex_state = 29, .external_lex_state = 3}, + [3100] = {.lex_state = 29, .external_lex_state = 3}, + [3101] = {.lex_state = 29, .external_lex_state = 3}, [3102] = {.lex_state = 29, .external_lex_state = 4}, - [3103] = {.lex_state = 29, .external_lex_state = 3}, - [3104] = {.lex_state = 29, .external_lex_state = 4}, + [3103] = {.lex_state = 29, .external_lex_state = 4}, + [3104] = {.lex_state = 29, .external_lex_state = 3}, [3105] = {.lex_state = 29, .external_lex_state = 4}, - [3106] = {.lex_state = 39, .external_lex_state = 5}, + [3106] = {.lex_state = 29, .external_lex_state = 3}, [3107] = {.lex_state = 29, .external_lex_state = 3}, - [3108] = {.lex_state = 29, .external_lex_state = 4}, - [3109] = {.lex_state = 29, .external_lex_state = 4}, - [3110] = {.lex_state = 29, .external_lex_state = 4}, + [3108] = {.lex_state = 29, .external_lex_state = 3}, + [3109] = {.lex_state = 29, .external_lex_state = 3}, + [3110] = {.lex_state = 29, .external_lex_state = 3}, [3111] = {.lex_state = 29, .external_lex_state = 4}, [3112] = {.lex_state = 29, .external_lex_state = 4}, - [3113] = {.lex_state = 29, .external_lex_state = 4}, + [3113] = {.lex_state = 29, .external_lex_state = 3}, [3114] = {.lex_state = 29, .external_lex_state = 3}, - [3115] = {.lex_state = 29, .external_lex_state = 4}, - [3116] = {.lex_state = 39, .external_lex_state = 2}, - [3117] = {.lex_state = 29, .external_lex_state = 4}, - [3118] = {.lex_state = 29, .external_lex_state = 3}, - [3119] = {.lex_state = 29, .external_lex_state = 4}, + [3115] = {.lex_state = 29, .external_lex_state = 3}, + [3116] = {.lex_state = 29, .external_lex_state = 3}, + [3117] = {.lex_state = 29, .external_lex_state = 3}, + [3118] = {.lex_state = 29, .external_lex_state = 4}, + [3119] = {.lex_state = 29, .external_lex_state = 3}, [3120] = {.lex_state = 29, .external_lex_state = 3}, - [3121] = {.lex_state = 29, .external_lex_state = 4}, - [3122] = {.lex_state = 29, .external_lex_state = 4}, + [3121] = {.lex_state = 29, .external_lex_state = 3}, + [3122] = {.lex_state = 29, .external_lex_state = 3}, [3123] = {.lex_state = 29, .external_lex_state = 3}, - [3124] = {.lex_state = 29, .external_lex_state = 4}, + [3124] = {.lex_state = 29, .external_lex_state = 3}, [3125] = {.lex_state = 39, .external_lex_state = 5}, - [3126] = {.lex_state = 39, .external_lex_state = 5}, - [3127] = {.lex_state = 29, .external_lex_state = 3}, - [3128] = {.lex_state = 29, .external_lex_state = 4}, + [3126] = {.lex_state = 29, .external_lex_state = 3}, + [3127] = {.lex_state = 39, .external_lex_state = 5}, + [3128] = {.lex_state = 29, .external_lex_state = 3}, [3129] = {.lex_state = 29, .external_lex_state = 3}, - [3130] = {.lex_state = 29, .external_lex_state = 4}, - [3131] = {.lex_state = 39, .external_lex_state = 5}, - [3132] = {.lex_state = 29, .external_lex_state = 4}, + [3130] = {.lex_state = 29, .external_lex_state = 3}, + [3131] = {.lex_state = 29, .external_lex_state = 3}, + [3132] = {.lex_state = 29, .external_lex_state = 3}, [3133] = {.lex_state = 29, .external_lex_state = 3}, - [3134] = {.lex_state = 39, .external_lex_state = 2}, - [3135] = {.lex_state = 29, .external_lex_state = 4}, - [3136] = {.lex_state = 29, .external_lex_state = 4}, - [3137] = {.lex_state = 39, .external_lex_state = 5}, - [3138] = {.lex_state = 39, .external_lex_state = 5}, + [3134] = {.lex_state = 29, .external_lex_state = 3}, + [3135] = {.lex_state = 39, .external_lex_state = 2}, + [3136] = {.lex_state = 39, .external_lex_state = 5}, + [3137] = {.lex_state = 29, .external_lex_state = 3}, + [3138] = {.lex_state = 29, .external_lex_state = 3}, [3139] = {.lex_state = 29, .external_lex_state = 4}, [3140] = {.lex_state = 29, .external_lex_state = 4}, [3141] = {.lex_state = 39, .external_lex_state = 5}, [3142] = {.lex_state = 39, .external_lex_state = 5}, - [3143] = {.lex_state = 29, .external_lex_state = 3}, - [3144] = {.lex_state = 39, .external_lex_state = 5}, + [3143] = {.lex_state = 29, .external_lex_state = 4}, + [3144] = {.lex_state = 29, .external_lex_state = 3}, [3145] = {.lex_state = 29, .external_lex_state = 3}, [3146] = {.lex_state = 29, .external_lex_state = 3}, [3147] = {.lex_state = 29, .external_lex_state = 3}, - [3148] = {.lex_state = 39, .external_lex_state = 5}, - [3149] = {.lex_state = 29, .external_lex_state = 3}, - [3150] = {.lex_state = 29, .external_lex_state = 3}, + [3148] = {.lex_state = 29, .external_lex_state = 4}, + [3149] = {.lex_state = 29, .external_lex_state = 4}, + [3150] = {.lex_state = 39, .external_lex_state = 5}, [3151] = {.lex_state = 29, .external_lex_state = 3}, - [3152] = {.lex_state = 39, .external_lex_state = 5}, - [3153] = {.lex_state = 29, .external_lex_state = 4}, - [3154] = {.lex_state = 29, .external_lex_state = 4}, - [3155] = {.lex_state = 29, .external_lex_state = 3}, - [3156] = {.lex_state = 29, .external_lex_state = 3}, - [3157] = {.lex_state = 29, .external_lex_state = 3}, - [3158] = {.lex_state = 29, .external_lex_state = 3}, - [3159] = {.lex_state = 29, .external_lex_state = 4}, - [3160] = {.lex_state = 29, .external_lex_state = 3}, - [3161] = {.lex_state = 39, .external_lex_state = 5}, - [3162] = {.lex_state = 39, .external_lex_state = 5}, - [3163] = {.lex_state = 29, .external_lex_state = 4}, - [3164] = {.lex_state = 29, .external_lex_state = 4}, + [3152] = {.lex_state = 29, .external_lex_state = 4}, + [3153] = {.lex_state = 39, .external_lex_state = 5}, + [3154] = {.lex_state = 39, .external_lex_state = 5}, + [3155] = {.lex_state = 39, .external_lex_state = 5}, + [3156] = {.lex_state = 39, .external_lex_state = 5}, + [3157] = {.lex_state = 39, .external_lex_state = 5}, + [3158] = {.lex_state = 39, .external_lex_state = 5}, + [3159] = {.lex_state = 29, .external_lex_state = 3}, + [3160] = {.lex_state = 29, .external_lex_state = 4}, + [3161] = {.lex_state = 29, .external_lex_state = 3}, + [3162] = {.lex_state = 29, .external_lex_state = 4}, + [3163] = {.lex_state = 29, .external_lex_state = 3}, + [3164] = {.lex_state = 39, .external_lex_state = 5}, [3165] = {.lex_state = 39, .external_lex_state = 5}, - [3166] = {.lex_state = 29, .external_lex_state = 4}, - [3167] = {.lex_state = 29, .external_lex_state = 3}, - [3168] = {.lex_state = 29, .external_lex_state = 3}, - [3169] = {.lex_state = 29, .external_lex_state = 4}, + [3166] = {.lex_state = 29, .external_lex_state = 3}, + [3167] = {.lex_state = 29, .external_lex_state = 4}, + [3168] = {.lex_state = 29, .external_lex_state = 4}, + [3169] = {.lex_state = 29, .external_lex_state = 3}, [3170] = {.lex_state = 29, .external_lex_state = 4}, - [3171] = {.lex_state = 29, .external_lex_state = 3}, - [3172] = {.lex_state = 29, .external_lex_state = 3}, - [3173] = {.lex_state = 29, .external_lex_state = 4}, + [3171] = {.lex_state = 29, .external_lex_state = 4}, + [3172] = {.lex_state = 29, .external_lex_state = 4}, + [3173] = {.lex_state = 29, .external_lex_state = 3}, [3174] = {.lex_state = 29, .external_lex_state = 3}, - [3175] = {.lex_state = 29, .external_lex_state = 3}, - [3176] = {.lex_state = 29, .external_lex_state = 3}, - [3177] = {.lex_state = 39, .external_lex_state = 5}, - [3178] = {.lex_state = 29, .external_lex_state = 4}, - [3179] = {.lex_state = 29, .external_lex_state = 3}, - [3180] = {.lex_state = 39, .external_lex_state = 5}, + [3175] = {.lex_state = 29, .external_lex_state = 4}, + [3176] = {.lex_state = 29, .external_lex_state = 4}, + [3177] = {.lex_state = 39, .external_lex_state = 2}, + [3178] = {.lex_state = 39, .external_lex_state = 2}, + [3179] = {.lex_state = 39, .external_lex_state = 5}, + [3180] = {.lex_state = 29, .external_lex_state = 3}, [3181] = {.lex_state = 29, .external_lex_state = 4}, - [3182] = {.lex_state = 29, .external_lex_state = 3}, + [3182] = {.lex_state = 29, .external_lex_state = 4}, [3183] = {.lex_state = 29, .external_lex_state = 4}, - [3184] = {.lex_state = 29, .external_lex_state = 4}, - [3185] = {.lex_state = 29, .external_lex_state = 3}, + [3184] = {.lex_state = 39, .external_lex_state = 5}, + [3185] = {.lex_state = 39, .external_lex_state = 5}, [3186] = {.lex_state = 29, .external_lex_state = 3}, [3187] = {.lex_state = 29, .external_lex_state = 3}, - [3188] = {.lex_state = 29, .external_lex_state = 4}, - [3189] = {.lex_state = 39, .external_lex_state = 5}, + [3188] = {.lex_state = 39, .external_lex_state = 5}, + [3189] = {.lex_state = 29, .external_lex_state = 3}, [3190] = {.lex_state = 29, .external_lex_state = 3}, - [3191] = {.lex_state = 39, .external_lex_state = 5}, + [3191] = {.lex_state = 29, .external_lex_state = 3}, [3192] = {.lex_state = 29, .external_lex_state = 4}, [3193] = {.lex_state = 29, .external_lex_state = 3}, - [3194] = {.lex_state = 27, .external_lex_state = 4}, - [3195] = {.lex_state = 39, .external_lex_state = 5}, - [3196] = {.lex_state = 29, .external_lex_state = 3}, + [3194] = {.lex_state = 39, .external_lex_state = 5}, + [3195] = {.lex_state = 29, .external_lex_state = 4}, + [3196] = {.lex_state = 39, .external_lex_state = 5}, [3197] = {.lex_state = 39, .external_lex_state = 5}, [3198] = {.lex_state = 39, .external_lex_state = 5}, - [3199] = {.lex_state = 29, .external_lex_state = 4}, - [3200] = {.lex_state = 29, .external_lex_state = 4}, - [3201] = {.lex_state = 39, .external_lex_state = 5}, - [3202] = {.lex_state = 39, .external_lex_state = 2}, - [3203] = {.lex_state = 39, .external_lex_state = 5}, + [3199] = {.lex_state = 39, .external_lex_state = 5}, + [3200] = {.lex_state = 39, .external_lex_state = 2}, + [3201] = {.lex_state = 39, .external_lex_state = 2}, + [3202] = {.lex_state = 39, .external_lex_state = 5}, + [3203] = {.lex_state = 29, .external_lex_state = 3}, [3204] = {.lex_state = 39, .external_lex_state = 5}, - [3205] = {.lex_state = 39, .external_lex_state = 5}, - [3206] = {.lex_state = 39, .external_lex_state = 5}, - [3207] = {.lex_state = 29, .external_lex_state = 4}, - [3208] = {.lex_state = 29, .external_lex_state = 4}, - [3209] = {.lex_state = 29, .external_lex_state = 4}, + [3205] = {.lex_state = 29, .external_lex_state = 3}, + [3206] = {.lex_state = 29, .external_lex_state = 3}, + [3207] = {.lex_state = 29, .external_lex_state = 3}, + [3208] = {.lex_state = 39, .external_lex_state = 2}, + [3209] = {.lex_state = 29, .external_lex_state = 3}, [3210] = {.lex_state = 29, .external_lex_state = 3}, - [3211] = {.lex_state = 29, .external_lex_state = 3}, + [3211] = {.lex_state = 39, .external_lex_state = 5}, [3212] = {.lex_state = 29, .external_lex_state = 3}, [3213] = {.lex_state = 29, .external_lex_state = 3}, - [3214] = {.lex_state = 29, .external_lex_state = 4}, - [3215] = {.lex_state = 30, .external_lex_state = 4}, - [3216] = {.lex_state = 29, .external_lex_state = 4}, + [3214] = {.lex_state = 29, .external_lex_state = 3}, + [3215] = {.lex_state = 29, .external_lex_state = 3}, + [3216] = {.lex_state = 29, .external_lex_state = 3}, [3217] = {.lex_state = 29, .external_lex_state = 3}, - [3218] = {.lex_state = 29, .external_lex_state = 3}, + [3218] = {.lex_state = 39, .external_lex_state = 2}, [3219] = {.lex_state = 29, .external_lex_state = 3}, - [3220] = {.lex_state = 29, .external_lex_state = 3}, - [3221] = {.lex_state = 29, .external_lex_state = 4}, - [3222] = {.lex_state = 29, .external_lex_state = 4}, - [3223] = {.lex_state = 39, .external_lex_state = 2}, - [3224] = {.lex_state = 39, .external_lex_state = 5}, - [3225] = {.lex_state = 29, .external_lex_state = 3}, + [3220] = {.lex_state = 39, .external_lex_state = 5}, + [3221] = {.lex_state = 32, .external_lex_state = 3}, + [3222] = {.lex_state = 39, .external_lex_state = 2}, + [3223] = {.lex_state = 39, .external_lex_state = 5}, + [3224] = {.lex_state = 29, .external_lex_state = 3}, + [3225] = {.lex_state = 39, .external_lex_state = 5}, [3226] = {.lex_state = 29, .external_lex_state = 3}, - [3227] = {.lex_state = 29, .external_lex_state = 4}, - [3228] = {.lex_state = 29, .external_lex_state = 4}, - [3229] = {.lex_state = 39, .external_lex_state = 2}, - [3230] = {.lex_state = 39, .external_lex_state = 2}, - [3231] = {.lex_state = 39, .external_lex_state = 5}, - [3232] = {.lex_state = 29, .external_lex_state = 3}, - [3233] = {.lex_state = 29, .external_lex_state = 4}, - [3234] = {.lex_state = 29, .external_lex_state = 3}, + [3227] = {.lex_state = 39, .external_lex_state = 5}, + [3228] = {.lex_state = 29, .external_lex_state = 3}, + [3229] = {.lex_state = 29, .external_lex_state = 3}, + [3230] = {.lex_state = 39, .external_lex_state = 5}, + [3231] = {.lex_state = 29, .external_lex_state = 3}, + [3232] = {.lex_state = 39, .external_lex_state = 5}, + [3233] = {.lex_state = 39, .external_lex_state = 5}, + [3234] = {.lex_state = 39, .external_lex_state = 2}, [3235] = {.lex_state = 29, .external_lex_state = 3}, - [3236] = {.lex_state = 29, .external_lex_state = 3}, + [3236] = {.lex_state = 39, .external_lex_state = 2}, [3237] = {.lex_state = 29, .external_lex_state = 3}, - [3238] = {.lex_state = 29, .external_lex_state = 3}, + [3238] = {.lex_state = 39, .external_lex_state = 5}, [3239] = {.lex_state = 29, .external_lex_state = 3}, - [3240] = {.lex_state = 29, .external_lex_state = 4}, - [3241] = {.lex_state = 29, .external_lex_state = 4}, - [3242] = {.lex_state = 29, .external_lex_state = 4}, - [3243] = {.lex_state = 39, .external_lex_state = 5}, + [3240] = {.lex_state = 39, .external_lex_state = 5}, + [3241] = {.lex_state = 29, .external_lex_state = 3}, + [3242] = {.lex_state = 29, .external_lex_state = 3}, + [3243] = {.lex_state = 29, .external_lex_state = 3}, [3244] = {.lex_state = 39, .external_lex_state = 5}, - [3245] = {.lex_state = 29, .external_lex_state = 3}, - [3246] = {.lex_state = 29, .external_lex_state = 4}, - [3247] = {.lex_state = 29, .external_lex_state = 4}, - [3248] = {.lex_state = 29, .external_lex_state = 4}, - [3249] = {.lex_state = 29, .external_lex_state = 3}, - [3250] = {.lex_state = 29, .external_lex_state = 4}, - [3251] = {.lex_state = 29, .external_lex_state = 4}, - [3252] = {.lex_state = 29, .external_lex_state = 4}, + [3245] = {.lex_state = 29, .external_lex_state = 4}, + [3246] = {.lex_state = 29, .external_lex_state = 3}, + [3247] = {.lex_state = 39, .external_lex_state = 2}, + [3248] = {.lex_state = 29, .external_lex_state = 3}, + [3249] = {.lex_state = 39, .external_lex_state = 5}, + [3250] = {.lex_state = 39, .external_lex_state = 2}, + [3251] = {.lex_state = 39, .external_lex_state = 5}, + [3252] = {.lex_state = 39, .external_lex_state = 5}, [3253] = {.lex_state = 29, .external_lex_state = 3}, - [3254] = {.lex_state = 29, .external_lex_state = 4}, - [3255] = {.lex_state = 29, .external_lex_state = 4}, - [3256] = {.lex_state = 29, .external_lex_state = 4}, - [3257] = {.lex_state = 29, .external_lex_state = 3}, - [3258] = {.lex_state = 29, .external_lex_state = 4}, - [3259] = {.lex_state = 29, .external_lex_state = 4}, + [3254] = {.lex_state = 29, .external_lex_state = 3}, + [3255] = {.lex_state = 29, .external_lex_state = 3}, + [3256] = {.lex_state = 29, .external_lex_state = 3}, + [3257] = {.lex_state = 39, .external_lex_state = 5}, + [3258] = {.lex_state = 29, .external_lex_state = 3}, + [3259] = {.lex_state = 29, .external_lex_state = 3}, [3260] = {.lex_state = 29, .external_lex_state = 3}, - [3261] = {.lex_state = 39, .external_lex_state = 5}, + [3261] = {.lex_state = 29, .external_lex_state = 4}, [3262] = {.lex_state = 29, .external_lex_state = 3}, - [3263] = {.lex_state = 29, .external_lex_state = 4}, + [3263] = {.lex_state = 39, .external_lex_state = 2}, [3264] = {.lex_state = 29, .external_lex_state = 3}, - [3265] = {.lex_state = 29, .external_lex_state = 4}, - [3266] = {.lex_state = 29, .external_lex_state = 4}, - [3267] = {.lex_state = 29, .external_lex_state = 4}, - [3268] = {.lex_state = 29, .external_lex_state = 4}, - [3269] = {.lex_state = 29, .external_lex_state = 3}, - [3270] = {.lex_state = 39, .external_lex_state = 5}, + [3265] = {.lex_state = 39, .external_lex_state = 5}, + [3266] = {.lex_state = 38, .external_lex_state = 5}, + [3267] = {.lex_state = 39, .external_lex_state = 2}, + [3268] = {.lex_state = 39, .external_lex_state = 5}, + [3269] = {.lex_state = 39, .external_lex_state = 5}, + [3270] = {.lex_state = 29, .external_lex_state = 3}, [3271] = {.lex_state = 29, .external_lex_state = 3}, [3272] = {.lex_state = 29, .external_lex_state = 3}, [3273] = {.lex_state = 29, .external_lex_state = 3}, - [3274] = {.lex_state = 29, .external_lex_state = 3}, - [3275] = {.lex_state = 39, .external_lex_state = 5}, + [3274] = {.lex_state = 39, .external_lex_state = 2}, + [3275] = {.lex_state = 29, .external_lex_state = 3}, [3276] = {.lex_state = 39, .external_lex_state = 5}, - [3277] = {.lex_state = 29, .external_lex_state = 4}, - [3278] = {.lex_state = 39, .external_lex_state = 5}, - [3279] = {.lex_state = 29, .external_lex_state = 3}, - [3280] = {.lex_state = 39, .external_lex_state = 5}, + [3277] = {.lex_state = 29, .external_lex_state = 3}, + [3278] = {.lex_state = 38, .external_lex_state = 5}, + [3279] = {.lex_state = 38, .external_lex_state = 2}, + [3280] = {.lex_state = 29, .external_lex_state = 3}, [3281] = {.lex_state = 29, .external_lex_state = 3}, [3282] = {.lex_state = 29, .external_lex_state = 3}, - [3283] = {.lex_state = 29, .external_lex_state = 4}, - [3284] = {.lex_state = 29, .external_lex_state = 4}, - [3285] = {.lex_state = 29, .external_lex_state = 3}, + [3283] = {.lex_state = 29, .external_lex_state = 3}, + [3284] = {.lex_state = 39, .external_lex_state = 5}, + [3285] = {.lex_state = 29, .external_lex_state = 4}, [3286] = {.lex_state = 29, .external_lex_state = 4}, [3287] = {.lex_state = 29, .external_lex_state = 3}, [3288] = {.lex_state = 29, .external_lex_state = 3}, [3289] = {.lex_state = 39, .external_lex_state = 5}, [3290] = {.lex_state = 29, .external_lex_state = 3}, - [3291] = {.lex_state = 39, .external_lex_state = 5}, - [3292] = {.lex_state = 39, .external_lex_state = 2}, - [3293] = {.lex_state = 29, .external_lex_state = 4}, - [3294] = {.lex_state = 39, .external_lex_state = 2}, + [3291] = {.lex_state = 38, .external_lex_state = 5}, + [3292] = {.lex_state = 29, .external_lex_state = 3}, + [3293] = {.lex_state = 39, .external_lex_state = 2}, + [3294] = {.lex_state = 38, .external_lex_state = 5}, [3295] = {.lex_state = 39, .external_lex_state = 2}, - [3296] = {.lex_state = 29, .external_lex_state = 4}, - [3297] = {.lex_state = 29, .external_lex_state = 3}, - [3298] = {.lex_state = 39, .external_lex_state = 5}, + [3296] = {.lex_state = 39, .external_lex_state = 5}, + [3297] = {.lex_state = 38, .external_lex_state = 5}, + [3298] = {.lex_state = 29, .external_lex_state = 3}, [3299] = {.lex_state = 39, .external_lex_state = 2}, - [3300] = {.lex_state = 29, .external_lex_state = 4}, - [3301] = {.lex_state = 29, .external_lex_state = 4}, - [3302] = {.lex_state = 29, .external_lex_state = 3}, + [3300] = {.lex_state = 29, .external_lex_state = 3}, + [3301] = {.lex_state = 29, .external_lex_state = 3}, + [3302] = {.lex_state = 39, .external_lex_state = 5}, [3303] = {.lex_state = 29, .external_lex_state = 3}, - [3304] = {.lex_state = 29, .external_lex_state = 4}, + [3304] = {.lex_state = 38, .external_lex_state = 5}, [3305] = {.lex_state = 29, .external_lex_state = 3}, - [3306] = {.lex_state = 29, .external_lex_state = 4}, - [3307] = {.lex_state = 29, .external_lex_state = 3}, + [3306] = {.lex_state = 39, .external_lex_state = 5}, + [3307] = {.lex_state = 39, .external_lex_state = 2}, [3308] = {.lex_state = 29, .external_lex_state = 3}, - [3309] = {.lex_state = 29, .external_lex_state = 4}, - [3310] = {.lex_state = 29, .external_lex_state = 4}, - [3311] = {.lex_state = 29, .external_lex_state = 4}, - [3312] = {.lex_state = 29, .external_lex_state = 4}, - [3313] = {.lex_state = 29, .external_lex_state = 4}, - [3314] = {.lex_state = 29, .external_lex_state = 4}, - [3315] = {.lex_state = 29, .external_lex_state = 3}, - [3316] = {.lex_state = 29, .external_lex_state = 3}, + [3309] = {.lex_state = 39, .external_lex_state = 2}, + [3310] = {.lex_state = 39, .external_lex_state = 2}, + [3311] = {.lex_state = 39, .external_lex_state = 2}, + [3312] = {.lex_state = 39, .external_lex_state = 2}, + [3313] = {.lex_state = 39, .external_lex_state = 2}, + [3314] = {.lex_state = 29, .external_lex_state = 3}, + [3315] = {.lex_state = 39, .external_lex_state = 5}, + [3316] = {.lex_state = 39, .external_lex_state = 2}, [3317] = {.lex_state = 39, .external_lex_state = 5}, - [3318] = {.lex_state = 29, .external_lex_state = 3}, - [3319] = {.lex_state = 29, .external_lex_state = 4}, - [3320] = {.lex_state = 29, .external_lex_state = 3}, - [3321] = {.lex_state = 29, .external_lex_state = 3}, - [3322] = {.lex_state = 29, .external_lex_state = 3}, + [3318] = {.lex_state = 39, .external_lex_state = 5}, + [3319] = {.lex_state = 39, .external_lex_state = 2}, + [3320] = {.lex_state = 39, .external_lex_state = 2}, + [3321] = {.lex_state = 39, .external_lex_state = 5}, + [3322] = {.lex_state = 39, .external_lex_state = 2}, [3323] = {.lex_state = 29, .external_lex_state = 3}, - [3324] = {.lex_state = 29, .external_lex_state = 3}, - [3325] = {.lex_state = 29, .external_lex_state = 3}, + [3324] = {.lex_state = 39, .external_lex_state = 2}, + [3325] = {.lex_state = 39, .external_lex_state = 2}, [3326] = {.lex_state = 29, .external_lex_state = 3}, - [3327] = {.lex_state = 29, .external_lex_state = 3}, - [3328] = {.lex_state = 39, .external_lex_state = 2}, - [3329] = {.lex_state = 29, .external_lex_state = 3}, - [3330] = {.lex_state = 29, .external_lex_state = 4}, + [3327] = {.lex_state = 39, .external_lex_state = 2}, + [3328] = {.lex_state = 39, .external_lex_state = 5}, + [3329] = {.lex_state = 39, .external_lex_state = 5}, + [3330] = {.lex_state = 39, .external_lex_state = 2}, [3331] = {.lex_state = 29, .external_lex_state = 3}, - [3332] = {.lex_state = 29, .external_lex_state = 3}, + [3332] = {.lex_state = 39, .external_lex_state = 5}, [3333] = {.lex_state = 29, .external_lex_state = 3}, - [3334] = {.lex_state = 29, .external_lex_state = 3}, - [3335] = {.lex_state = 29, .external_lex_state = 3}, - [3336] = {.lex_state = 29, .external_lex_state = 3}, + [3334] = {.lex_state = 39, .external_lex_state = 2}, + [3335] = {.lex_state = 39, .external_lex_state = 2}, + [3336] = {.lex_state = 39, .external_lex_state = 2}, [3337] = {.lex_state = 39, .external_lex_state = 5}, [3338] = {.lex_state = 39, .external_lex_state = 5}, - [3339] = {.lex_state = 39, .external_lex_state = 5}, - [3340] = {.lex_state = 39, .external_lex_state = 2}, + [3339] = {.lex_state = 29, .external_lex_state = 3}, + [3340] = {.lex_state = 39, .external_lex_state = 5}, [3341] = {.lex_state = 39, .external_lex_state = 5}, - [3342] = {.lex_state = 39, .external_lex_state = 2}, + [3342] = {.lex_state = 30, .external_lex_state = 3}, [3343] = {.lex_state = 39, .external_lex_state = 5}, - [3344] = {.lex_state = 29, .external_lex_state = 3}, - [3345] = {.lex_state = 29, .external_lex_state = 4}, - [3346] = {.lex_state = 39, .external_lex_state = 2}, - [3347] = {.lex_state = 29, .external_lex_state = 3}, + [3344] = {.lex_state = 39, .external_lex_state = 5}, + [3345] = {.lex_state = 39, .external_lex_state = 5}, + [3346] = {.lex_state = 39, .external_lex_state = 5}, + [3347] = {.lex_state = 39, .external_lex_state = 2}, [3348] = {.lex_state = 39, .external_lex_state = 5}, - [3349] = {.lex_state = 39, .external_lex_state = 2}, - [3350] = {.lex_state = 39, .external_lex_state = 5}, - [3351] = {.lex_state = 39, .external_lex_state = 5}, - [3352] = {.lex_state = 39, .external_lex_state = 5}, - [3353] = {.lex_state = 39, .external_lex_state = 5}, - [3354] = {.lex_state = 39, .external_lex_state = 5}, - [3355] = {.lex_state = 29, .external_lex_state = 4}, - [3356] = {.lex_state = 39, .external_lex_state = 2}, - [3357] = {.lex_state = 39, .external_lex_state = 2}, + [3349] = {.lex_state = 29, .external_lex_state = 3}, + [3350] = {.lex_state = 29, .external_lex_state = 3}, + [3351] = {.lex_state = 29, .external_lex_state = 3}, + [3352] = {.lex_state = 29, .external_lex_state = 3}, + [3353] = {.lex_state = 39, .external_lex_state = 2}, + [3354] = {.lex_state = 29, .external_lex_state = 3}, + [3355] = {.lex_state = 29, .external_lex_state = 3}, + [3356] = {.lex_state = 29, .external_lex_state = 3}, + [3357] = {.lex_state = 29, .external_lex_state = 3}, [3358] = {.lex_state = 29, .external_lex_state = 3}, - [3359] = {.lex_state = 29, .external_lex_state = 3}, - [3360] = {.lex_state = 32, .external_lex_state = 3}, - [3361] = {.lex_state = 39, .external_lex_state = 2}, - [3362] = {.lex_state = 29, .external_lex_state = 3}, - [3363] = {.lex_state = 29, .external_lex_state = 3}, - [3364] = {.lex_state = 29, .external_lex_state = 3}, - [3365] = {.lex_state = 29, .external_lex_state = 3}, - [3366] = {.lex_state = 29, .external_lex_state = 3}, - [3367] = {.lex_state = 29, .external_lex_state = 3}, - [3368] = {.lex_state = 39, .external_lex_state = 5}, - [3369] = {.lex_state = 39, .external_lex_state = 2}, - [3370] = {.lex_state = 29, .external_lex_state = 3}, - [3371] = {.lex_state = 39, .external_lex_state = 5}, - [3372] = {.lex_state = 39, .external_lex_state = 5}, - [3373] = {.lex_state = 29, .external_lex_state = 3}, - [3374] = {.lex_state = 39, .external_lex_state = 2}, - [3375] = {.lex_state = 29, .external_lex_state = 3}, - [3376] = {.lex_state = 29, .external_lex_state = 3}, - [3377] = {.lex_state = 29, .external_lex_state = 3}, - [3378] = {.lex_state = 29, .external_lex_state = 4}, - [3379] = {.lex_state = 29, .external_lex_state = 3}, - [3380] = {.lex_state = 29, .external_lex_state = 3}, - [3381] = {.lex_state = 29, .external_lex_state = 3}, - [3382] = {.lex_state = 29, .external_lex_state = 3}, - [3383] = {.lex_state = 29, .external_lex_state = 3}, - [3384] = {.lex_state = 29, .external_lex_state = 3}, - [3385] = {.lex_state = 29, .external_lex_state = 3}, - [3386] = {.lex_state = 29, .external_lex_state = 3}, - [3387] = {.lex_state = 29, .external_lex_state = 3}, - [3388] = {.lex_state = 39, .external_lex_state = 5}, - [3389] = {.lex_state = 29, .external_lex_state = 3}, - [3390] = {.lex_state = 29, .external_lex_state = 3}, - [3391] = {.lex_state = 39, .external_lex_state = 5}, - [3392] = {.lex_state = 39, .external_lex_state = 5}, - [3393] = {.lex_state = 29, .external_lex_state = 3}, - [3394] = {.lex_state = 29, .external_lex_state = 3}, - [3395] = {.lex_state = 39, .external_lex_state = 5}, - [3396] = {.lex_state = 29, .external_lex_state = 3}, - [3397] = {.lex_state = 39, .external_lex_state = 5}, - [3398] = {.lex_state = 29, .external_lex_state = 4}, - [3399] = {.lex_state = 39, .external_lex_state = 2}, - [3400] = {.lex_state = 39, .external_lex_state = 5}, - [3401] = {.lex_state = 29, .external_lex_state = 3}, - [3402] = {.lex_state = 39, .external_lex_state = 5}, - [3403] = {.lex_state = 29, .external_lex_state = 3}, - [3404] = {.lex_state = 29, .external_lex_state = 3}, - [3405] = {.lex_state = 29, .external_lex_state = 3}, - [3406] = {.lex_state = 29, .external_lex_state = 3}, - [3407] = {.lex_state = 39, .external_lex_state = 5}, - [3408] = {.lex_state = 29, .external_lex_state = 3}, - [3409] = {.lex_state = 39, .external_lex_state = 5}, - [3410] = {.lex_state = 29, .external_lex_state = 3}, - [3411] = {.lex_state = 39, .external_lex_state = 5}, - [3412] = {.lex_state = 29, .external_lex_state = 3}, - [3413] = {.lex_state = 29, .external_lex_state = 3}, - [3414] = {.lex_state = 29, .external_lex_state = 3}, - [3415] = {.lex_state = 29, .external_lex_state = 3}, - [3416] = {.lex_state = 29, .external_lex_state = 3}, + [3359] = {.lex_state = 38, .external_lex_state = 5}, + [3360] = {.lex_state = 38, .external_lex_state = 5}, + [3361] = {.lex_state = 38, .external_lex_state = 5}, + [3362] = {.lex_state = 38, .external_lex_state = 5}, + [3363] = {.lex_state = 38, .external_lex_state = 5}, + [3364] = {.lex_state = 38, .external_lex_state = 5}, + [3365] = {.lex_state = 38, .external_lex_state = 5}, + [3366] = {.lex_state = 38, .external_lex_state = 5}, + [3367] = {.lex_state = 38, .external_lex_state = 5}, + [3368] = {.lex_state = 38, .external_lex_state = 5}, + [3369] = {.lex_state = 38, .external_lex_state = 5}, + [3370] = {.lex_state = 38, .external_lex_state = 5}, + [3371] = {.lex_state = 38, .external_lex_state = 5}, + [3372] = {.lex_state = 39, .external_lex_state = 2}, + [3373] = {.lex_state = 38, .external_lex_state = 5}, + [3374] = {.lex_state = 38, .external_lex_state = 5}, + [3375] = {.lex_state = 38, .external_lex_state = 5}, + [3376] = {.lex_state = 38, .external_lex_state = 5}, + [3377] = {.lex_state = 38, .external_lex_state = 5}, + [3378] = {.lex_state = 38, .external_lex_state = 5}, + [3379] = {.lex_state = 38, .external_lex_state = 5}, + [3380] = {.lex_state = 39, .external_lex_state = 2}, + [3381] = {.lex_state = 38, .external_lex_state = 5}, + [3382] = {.lex_state = 38, .external_lex_state = 5}, + [3383] = {.lex_state = 38, .external_lex_state = 5}, + [3384] = {.lex_state = 38, .external_lex_state = 5}, + [3385] = {.lex_state = 38, .external_lex_state = 5}, + [3386] = {.lex_state = 38, .external_lex_state = 5}, + [3387] = {.lex_state = 38, .external_lex_state = 5}, + [3388] = {.lex_state = 38, .external_lex_state = 5}, + [3389] = {.lex_state = 39, .external_lex_state = 2}, + [3390] = {.lex_state = 38, .external_lex_state = 5}, + [3391] = {.lex_state = 38, .external_lex_state = 5}, + [3392] = {.lex_state = 39, .external_lex_state = 2}, + [3393] = {.lex_state = 38, .external_lex_state = 5}, + [3394] = {.lex_state = 38, .external_lex_state = 5}, + [3395] = {.lex_state = 39, .external_lex_state = 2}, + [3396] = {.lex_state = 38, .external_lex_state = 5}, + [3397] = {.lex_state = 38, .external_lex_state = 5}, + [3398] = {.lex_state = 38, .external_lex_state = 5}, + [3399] = {.lex_state = 38, .external_lex_state = 5}, + [3400] = {.lex_state = 38, .external_lex_state = 5}, + [3401] = {.lex_state = 38, .external_lex_state = 5}, + [3402] = {.lex_state = 38, .external_lex_state = 5}, + [3403] = {.lex_state = 38, .external_lex_state = 5}, + [3404] = {.lex_state = 38, .external_lex_state = 5}, + [3405] = {.lex_state = 38, .external_lex_state = 5}, + [3406] = {.lex_state = 38, .external_lex_state = 5}, + [3407] = {.lex_state = 38, .external_lex_state = 5}, + [3408] = {.lex_state = 38, .external_lex_state = 5}, + [3409] = {.lex_state = 38, .external_lex_state = 5}, + [3410] = {.lex_state = 38, .external_lex_state = 5}, + [3411] = {.lex_state = 38, .external_lex_state = 5}, + [3412] = {.lex_state = 38, .external_lex_state = 5}, + [3413] = {.lex_state = 38, .external_lex_state = 5}, + [3414] = {.lex_state = 38, .external_lex_state = 5}, + [3415] = {.lex_state = 38, .external_lex_state = 5}, + [3416] = {.lex_state = 39, .external_lex_state = 2}, [3417] = {.lex_state = 39, .external_lex_state = 2}, - [3418] = {.lex_state = 39, .external_lex_state = 5}, - [3419] = {.lex_state = 29, .external_lex_state = 3}, - [3420] = {.lex_state = 29, .external_lex_state = 3}, - [3421] = {.lex_state = 38, .external_lex_state = 5}, - [3422] = {.lex_state = 29, .external_lex_state = 3}, - [3423] = {.lex_state = 39, .external_lex_state = 5}, - [3424] = {.lex_state = 38, .external_lex_state = 5}, - [3425] = {.lex_state = 39, .external_lex_state = 5}, - [3426] = {.lex_state = 29, .external_lex_state = 3}, - [3427] = {.lex_state = 29, .external_lex_state = 3}, - [3428] = {.lex_state = 29, .external_lex_state = 3}, - [3429] = {.lex_state = 29, .external_lex_state = 3}, - [3430] = {.lex_state = 39, .external_lex_state = 5}, - [3431] = {.lex_state = 29, .external_lex_state = 3}, - [3432] = {.lex_state = 38, .external_lex_state = 5}, - [3433] = {.lex_state = 39, .external_lex_state = 5}, + [3418] = {.lex_state = 38, .external_lex_state = 2}, + [3419] = {.lex_state = 38, .external_lex_state = 2}, + [3420] = {.lex_state = 38, .external_lex_state = 2}, + [3421] = {.lex_state = 39, .external_lex_state = 2}, + [3422] = {.lex_state = 39, .external_lex_state = 2}, + [3423] = {.lex_state = 38, .external_lex_state = 2}, + [3424] = {.lex_state = 38, .external_lex_state = 2}, + [3425] = {.lex_state = 38, .external_lex_state = 2}, + [3426] = {.lex_state = 39, .external_lex_state = 2}, + [3427] = {.lex_state = 39, .external_lex_state = 2}, + [3428] = {.lex_state = 39, .external_lex_state = 2}, + [3429] = {.lex_state = 38, .external_lex_state = 2}, + [3430] = {.lex_state = 39, .external_lex_state = 2}, + [3431] = {.lex_state = 38, .external_lex_state = 2}, + [3432] = {.lex_state = 39, .external_lex_state = 2}, + [3433] = {.lex_state = 39, .external_lex_state = 2}, [3434] = {.lex_state = 39, .external_lex_state = 2}, [3435] = {.lex_state = 39, .external_lex_state = 2}, [3436] = {.lex_state = 38, .external_lex_state = 2}, - [3437] = {.lex_state = 29, .external_lex_state = 4}, - [3438] = {.lex_state = 38, .external_lex_state = 5}, - [3439] = {.lex_state = 29, .external_lex_state = 3}, - [3440] = {.lex_state = 38, .external_lex_state = 5}, - [3441] = {.lex_state = 39, .external_lex_state = 5}, - [3442] = {.lex_state = 29, .external_lex_state = 3}, - [3443] = {.lex_state = 29, .external_lex_state = 4}, - [3444] = {.lex_state = 39, .external_lex_state = 2}, + [3437] = {.lex_state = 39, .external_lex_state = 2}, + [3438] = {.lex_state = 39, .external_lex_state = 2}, + [3439] = {.lex_state = 39, .external_lex_state = 2}, + [3440] = {.lex_state = 39, .external_lex_state = 2}, + [3441] = {.lex_state = 39, .external_lex_state = 2}, + [3442] = {.lex_state = 39, .external_lex_state = 2}, + [3443] = {.lex_state = 39, .external_lex_state = 2}, + [3444] = {.lex_state = 38, .external_lex_state = 2}, [3445] = {.lex_state = 39, .external_lex_state = 2}, - [3446] = {.lex_state = 38, .external_lex_state = 5}, - [3447] = {.lex_state = 29, .external_lex_state = 3}, - [3448] = {.lex_state = 29, .external_lex_state = 3}, - [3449] = {.lex_state = 29, .external_lex_state = 3}, - [3450] = {.lex_state = 39, .external_lex_state = 5}, - [3451] = {.lex_state = 29, .external_lex_state = 3}, - [3452] = {.lex_state = 29, .external_lex_state = 3}, - [3453] = {.lex_state = 29, .external_lex_state = 3}, - [3454] = {.lex_state = 39, .external_lex_state = 5}, - [3455] = {.lex_state = 39, .external_lex_state = 5}, + [3446] = {.lex_state = 39, .external_lex_state = 2}, + [3447] = {.lex_state = 39, .external_lex_state = 2}, + [3448] = {.lex_state = 39, .external_lex_state = 2}, + [3449] = {.lex_state = 39, .external_lex_state = 2}, + [3450] = {.lex_state = 39, .external_lex_state = 2}, + [3451] = {.lex_state = 39, .external_lex_state = 2}, + [3452] = {.lex_state = 39, .external_lex_state = 2}, + [3453] = {.lex_state = 39, .external_lex_state = 2}, + [3454] = {.lex_state = 39, .external_lex_state = 2}, + [3455] = {.lex_state = 39, .external_lex_state = 2}, [3456] = {.lex_state = 39, .external_lex_state = 2}, [3457] = {.lex_state = 39, .external_lex_state = 2}, [3458] = {.lex_state = 39, .external_lex_state = 2}, - [3459] = {.lex_state = 39, .external_lex_state = 5}, + [3459] = {.lex_state = 39, .external_lex_state = 2}, [3460] = {.lex_state = 39, .external_lex_state = 2}, [3461] = {.lex_state = 39, .external_lex_state = 2}, - [3462] = {.lex_state = 39, .external_lex_state = 5}, - [3463] = {.lex_state = 39, .external_lex_state = 2}, - [3464] = {.lex_state = 39, .external_lex_state = 5}, - [3465] = {.lex_state = 39, .external_lex_state = 5}, - [3466] = {.lex_state = 39, .external_lex_state = 5}, + [3462] = {.lex_state = 39, .external_lex_state = 2}, + [3463] = {.lex_state = 38, .external_lex_state = 2}, + [3464] = {.lex_state = 39, .external_lex_state = 2}, + [3465] = {.lex_state = 39, .external_lex_state = 2}, + [3466] = {.lex_state = 39, .external_lex_state = 2}, [3467] = {.lex_state = 39, .external_lex_state = 2}, - [3468] = {.lex_state = 29, .external_lex_state = 3}, - [3469] = {.lex_state = 39, .external_lex_state = 5}, - [3470] = {.lex_state = 39, .external_lex_state = 5}, - [3471] = {.lex_state = 29, .external_lex_state = 3}, - [3472] = {.lex_state = 30, .external_lex_state = 3}, - [3473] = {.lex_state = 29, .external_lex_state = 3}, + [3468] = {.lex_state = 39, .external_lex_state = 2}, + [3469] = {.lex_state = 39, .external_lex_state = 2}, + [3470] = {.lex_state = 39, .external_lex_state = 2}, + [3471] = {.lex_state = 39, .external_lex_state = 2}, + [3472] = {.lex_state = 406, .external_lex_state = 2}, + [3473] = {.lex_state = 39, .external_lex_state = 2}, [3474] = {.lex_state = 39, .external_lex_state = 2}, - [3475] = {.lex_state = 39, .external_lex_state = 2}, - [3476] = {.lex_state = 39, .external_lex_state = 2}, - [3477] = {.lex_state = 39, .external_lex_state = 5}, - [3478] = {.lex_state = 39, .external_lex_state = 2}, - [3479] = {.lex_state = 29, .external_lex_state = 3}, - [3480] = {.lex_state = 39, .external_lex_state = 5}, - [3481] = {.lex_state = 39, .external_lex_state = 5}, - [3482] = {.lex_state = 39, .external_lex_state = 5}, - [3483] = {.lex_state = 29, .external_lex_state = 3}, - [3484] = {.lex_state = 29, .external_lex_state = 3}, + [3475] = {.lex_state = 406, .external_lex_state = 2}, + [3476] = {.lex_state = 406, .external_lex_state = 2}, + [3477] = {.lex_state = 39, .external_lex_state = 2}, + [3478] = {.lex_state = 406, .external_lex_state = 2}, + [3479] = {.lex_state = 39, .external_lex_state = 2}, + [3480] = {.lex_state = 38, .external_lex_state = 2}, + [3481] = {.lex_state = 39, .external_lex_state = 2}, + [3482] = {.lex_state = 39, .external_lex_state = 2}, + [3483] = {.lex_state = 39, .external_lex_state = 2}, + [3484] = {.lex_state = 406, .external_lex_state = 2}, [3485] = {.lex_state = 39, .external_lex_state = 2}, - [3486] = {.lex_state = 39, .external_lex_state = 2}, + [3486] = {.lex_state = 406, .external_lex_state = 2}, [3487] = {.lex_state = 39, .external_lex_state = 2}, - [3488] = {.lex_state = 39, .external_lex_state = 5}, - [3489] = {.lex_state = 39, .external_lex_state = 5}, - [3490] = {.lex_state = 39, .external_lex_state = 5}, - [3491] = {.lex_state = 39, .external_lex_state = 2}, - [3492] = {.lex_state = 29, .external_lex_state = 3}, - [3493] = {.lex_state = 39, .external_lex_state = 5}, - [3494] = {.lex_state = 39, .external_lex_state = 2}, + [3488] = {.lex_state = 39, .external_lex_state = 2}, + [3489] = {.lex_state = 38, .external_lex_state = 2}, + [3490] = {.lex_state = 406, .external_lex_state = 2}, + [3491] = {.lex_state = 406, .external_lex_state = 2}, + [3492] = {.lex_state = 39, .external_lex_state = 2}, + [3493] = {.lex_state = 39, .external_lex_state = 2}, + [3494] = {.lex_state = 38, .external_lex_state = 2}, [3495] = {.lex_state = 39, .external_lex_state = 2}, - [3496] = {.lex_state = 39, .external_lex_state = 2}, - [3497] = {.lex_state = 29, .external_lex_state = 3}, - [3498] = {.lex_state = 29, .external_lex_state = 3}, - [3499] = {.lex_state = 29, .external_lex_state = 3}, - [3500] = {.lex_state = 29, .external_lex_state = 3}, - [3501] = {.lex_state = 29, .external_lex_state = 3}, - [3502] = {.lex_state = 29, .external_lex_state = 3}, - [3503] = {.lex_state = 29, .external_lex_state = 3}, - [3504] = {.lex_state = 29, .external_lex_state = 3}, + [3496] = {.lex_state = 38, .external_lex_state = 2}, + [3497] = {.lex_state = 39, .external_lex_state = 2}, + [3498] = {.lex_state = 39, .external_lex_state = 2}, + [3499] = {.lex_state = 406, .external_lex_state = 2}, + [3500] = {.lex_state = 39, .external_lex_state = 2}, + [3501] = {.lex_state = 39, .external_lex_state = 2}, + [3502] = {.lex_state = 39, .external_lex_state = 2}, + [3503] = {.lex_state = 39, .external_lex_state = 2}, + [3504] = {.lex_state = 406, .external_lex_state = 2}, [3505] = {.lex_state = 39, .external_lex_state = 2}, - [3506] = {.lex_state = 29, .external_lex_state = 3}, - [3507] = {.lex_state = 38, .external_lex_state = 5}, - [3508] = {.lex_state = 38, .external_lex_state = 5}, - [3509] = {.lex_state = 38, .external_lex_state = 5}, - [3510] = {.lex_state = 38, .external_lex_state = 5}, - [3511] = {.lex_state = 38, .external_lex_state = 5}, - [3512] = {.lex_state = 38, .external_lex_state = 5}, - [3513] = {.lex_state = 38, .external_lex_state = 5}, - [3514] = {.lex_state = 38, .external_lex_state = 5}, - [3515] = {.lex_state = 38, .external_lex_state = 5}, - [3516] = {.lex_state = 38, .external_lex_state = 5}, - [3517] = {.lex_state = 38, .external_lex_state = 5}, - [3518] = {.lex_state = 38, .external_lex_state = 5}, - [3519] = {.lex_state = 38, .external_lex_state = 5}, - [3520] = {.lex_state = 38, .external_lex_state = 5}, - [3521] = {.lex_state = 38, .external_lex_state = 5}, - [3522] = {.lex_state = 38, .external_lex_state = 5}, - [3523] = {.lex_state = 38, .external_lex_state = 5}, - [3524] = {.lex_state = 38, .external_lex_state = 5}, - [3525] = {.lex_state = 38, .external_lex_state = 5}, - [3526] = {.lex_state = 38, .external_lex_state = 5}, - [3527] = {.lex_state = 38, .external_lex_state = 5}, - [3528] = {.lex_state = 38, .external_lex_state = 5}, - [3529] = {.lex_state = 38, .external_lex_state = 5}, - [3530] = {.lex_state = 38, .external_lex_state = 5}, - [3531] = {.lex_state = 38, .external_lex_state = 5}, - [3532] = {.lex_state = 38, .external_lex_state = 5}, - [3533] = {.lex_state = 38, .external_lex_state = 5}, - [3534] = {.lex_state = 38, .external_lex_state = 5}, - [3535] = {.lex_state = 38, .external_lex_state = 5}, - [3536] = {.lex_state = 38, .external_lex_state = 5}, - [3537] = {.lex_state = 38, .external_lex_state = 5}, - [3538] = {.lex_state = 38, .external_lex_state = 5}, - [3539] = {.lex_state = 38, .external_lex_state = 5}, + [3506] = {.lex_state = 406, .external_lex_state = 2}, + [3507] = {.lex_state = 39, .external_lex_state = 2}, + [3508] = {.lex_state = 39, .external_lex_state = 2}, + [3509] = {.lex_state = 39, .external_lex_state = 2}, + [3510] = {.lex_state = 406, .external_lex_state = 2}, + [3511] = {.lex_state = 39, .external_lex_state = 2}, + [3512] = {.lex_state = 39, .external_lex_state = 2}, + [3513] = {.lex_state = 39, .external_lex_state = 2}, + [3514] = {.lex_state = 39, .external_lex_state = 2}, + [3515] = {.lex_state = 39, .external_lex_state = 2}, + [3516] = {.lex_state = 39, .external_lex_state = 2}, + [3517] = {.lex_state = 39, .external_lex_state = 2}, + [3518] = {.lex_state = 39, .external_lex_state = 2}, + [3519] = {.lex_state = 39, .external_lex_state = 2}, + [3520] = {.lex_state = 39, .external_lex_state = 2}, + [3521] = {.lex_state = 39, .external_lex_state = 2}, + [3522] = {.lex_state = 39, .external_lex_state = 2}, + [3523] = {.lex_state = 39, .external_lex_state = 2}, + [3524] = {.lex_state = 39, .external_lex_state = 2}, + [3525] = {.lex_state = 39, .external_lex_state = 2}, + [3526] = {.lex_state = 39, .external_lex_state = 2}, + [3527] = {.lex_state = 39, .external_lex_state = 2}, + [3528] = {.lex_state = 39, .external_lex_state = 2}, + [3529] = {.lex_state = 39, .external_lex_state = 2}, + [3530] = {.lex_state = 39, .external_lex_state = 2}, + [3531] = {.lex_state = 39, .external_lex_state = 2}, + [3532] = {.lex_state = 39, .external_lex_state = 2}, + [3533] = {.lex_state = 39, .external_lex_state = 2}, + [3534] = {.lex_state = 39, .external_lex_state = 2}, + [3535] = {.lex_state = 39, .external_lex_state = 2}, + [3536] = {.lex_state = 39, .external_lex_state = 2}, + [3537] = {.lex_state = 39, .external_lex_state = 2}, + [3538] = {.lex_state = 39, .external_lex_state = 2}, + [3539] = {.lex_state = 39, .external_lex_state = 2}, [3540] = {.lex_state = 39, .external_lex_state = 2}, - [3541] = {.lex_state = 38, .external_lex_state = 5}, - [3542] = {.lex_state = 38, .external_lex_state = 5}, - [3543] = {.lex_state = 38, .external_lex_state = 5}, - [3544] = {.lex_state = 38, .external_lex_state = 5}, - [3545] = {.lex_state = 38, .external_lex_state = 5}, - [3546] = {.lex_state = 38, .external_lex_state = 5}, - [3547] = {.lex_state = 38, .external_lex_state = 5}, - [3548] = {.lex_state = 38, .external_lex_state = 5}, + [3541] = {.lex_state = 39, .external_lex_state = 2}, + [3542] = {.lex_state = 39, .external_lex_state = 2}, + [3543] = {.lex_state = 38, .external_lex_state = 2}, + [3544] = {.lex_state = 39, .external_lex_state = 2}, + [3545] = {.lex_state = 38, .external_lex_state = 2}, + [3546] = {.lex_state = 39, .external_lex_state = 2}, + [3547] = {.lex_state = 39, .external_lex_state = 2}, + [3548] = {.lex_state = 39, .external_lex_state = 2}, [3549] = {.lex_state = 39, .external_lex_state = 2}, [3550] = {.lex_state = 39, .external_lex_state = 2}, - [3551] = {.lex_state = 38, .external_lex_state = 5}, - [3552] = {.lex_state = 38, .external_lex_state = 5}, - [3553] = {.lex_state = 38, .external_lex_state = 5}, - [3554] = {.lex_state = 38, .external_lex_state = 5}, - [3555] = {.lex_state = 38, .external_lex_state = 5}, - [3556] = {.lex_state = 38, .external_lex_state = 5}, - [3557] = {.lex_state = 38, .external_lex_state = 5}, + [3551] = {.lex_state = 38, .external_lex_state = 2}, + [3552] = {.lex_state = 39, .external_lex_state = 2}, + [3553] = {.lex_state = 39, .external_lex_state = 2}, + [3554] = {.lex_state = 39, .external_lex_state = 2}, + [3555] = {.lex_state = 39, .external_lex_state = 2}, + [3556] = {.lex_state = 39, .external_lex_state = 2}, + [3557] = {.lex_state = 38, .external_lex_state = 2}, [3558] = {.lex_state = 39, .external_lex_state = 2}, - [3559] = {.lex_state = 38, .external_lex_state = 5}, - [3560] = {.lex_state = 38, .external_lex_state = 5}, - [3561] = {.lex_state = 38, .external_lex_state = 5}, - [3562] = {.lex_state = 38, .external_lex_state = 5}, + [3559] = {.lex_state = 39, .external_lex_state = 2}, + [3560] = {.lex_state = 39, .external_lex_state = 2}, + [3561] = {.lex_state = 39, .external_lex_state = 2}, + [3562] = {.lex_state = 39, .external_lex_state = 2}, [3563] = {.lex_state = 39, .external_lex_state = 2}, [3564] = {.lex_state = 39, .external_lex_state = 2}, - [3565] = {.lex_state = 38, .external_lex_state = 2}, - [3566] = {.lex_state = 38, .external_lex_state = 2}, - [3567] = {.lex_state = 38, .external_lex_state = 2}, - [3568] = {.lex_state = 38, .external_lex_state = 2}, + [3565] = {.lex_state = 39, .external_lex_state = 2}, + [3566] = {.lex_state = 39, .external_lex_state = 2}, + [3567] = {.lex_state = 39, .external_lex_state = 2}, + [3568] = {.lex_state = 39, .external_lex_state = 2}, [3569] = {.lex_state = 39, .external_lex_state = 2}, - [3570] = {.lex_state = 38, .external_lex_state = 2}, - [3571] = {.lex_state = 38, .external_lex_state = 2}, - [3572] = {.lex_state = 38, .external_lex_state = 2}, + [3570] = {.lex_state = 39, .external_lex_state = 2}, + [3571] = {.lex_state = 39, .external_lex_state = 2}, + [3572] = {.lex_state = 39, .external_lex_state = 2}, [3573] = {.lex_state = 39, .external_lex_state = 2}, [3574] = {.lex_state = 39, .external_lex_state = 2}, [3575] = {.lex_state = 39, .external_lex_state = 2}, @@ -25960,7 +25715,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3579] = {.lex_state = 39, .external_lex_state = 2}, [3580] = {.lex_state = 39, .external_lex_state = 2}, [3581] = {.lex_state = 39, .external_lex_state = 2}, - [3582] = {.lex_state = 38, .external_lex_state = 2}, + [3582] = {.lex_state = 39, .external_lex_state = 2}, [3583] = {.lex_state = 39, .external_lex_state = 2}, [3584] = {.lex_state = 39, .external_lex_state = 2}, [3585] = {.lex_state = 39, .external_lex_state = 2}, @@ -25972,2219 +25727,2219 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3591] = {.lex_state = 39, .external_lex_state = 2}, [3592] = {.lex_state = 39, .external_lex_state = 2}, [3593] = {.lex_state = 39, .external_lex_state = 2}, - [3594] = {.lex_state = 39, .external_lex_state = 2}, - [3595] = {.lex_state = 39, .external_lex_state = 2}, - [3596] = {.lex_state = 39, .external_lex_state = 2}, - [3597] = {.lex_state = 39, .external_lex_state = 2}, - [3598] = {.lex_state = 38, .external_lex_state = 2}, - [3599] = {.lex_state = 39, .external_lex_state = 2}, - [3600] = {.lex_state = 39, .external_lex_state = 2}, - [3601] = {.lex_state = 39, .external_lex_state = 2}, - [3602] = {.lex_state = 39, .external_lex_state = 2}, - [3603] = {.lex_state = 38, .external_lex_state = 2}, - [3604] = {.lex_state = 39, .external_lex_state = 2}, - [3605] = {.lex_state = 39, .external_lex_state = 2}, - [3606] = {.lex_state = 39, .external_lex_state = 2}, - [3607] = {.lex_state = 39, .external_lex_state = 2}, - [3608] = {.lex_state = 39, .external_lex_state = 2}, - [3609] = {.lex_state = 39, .external_lex_state = 2}, - [3610] = {.lex_state = 39, .external_lex_state = 2}, - [3611] = {.lex_state = 39, .external_lex_state = 2}, - [3612] = {.lex_state = 39, .external_lex_state = 2}, - [3613] = {.lex_state = 39, .external_lex_state = 2}, - [3614] = {.lex_state = 39, .external_lex_state = 2}, - [3615] = {.lex_state = 39, .external_lex_state = 2}, - [3616] = {.lex_state = 39, .external_lex_state = 2}, - [3617] = {.lex_state = 38, .external_lex_state = 2}, - [3618] = {.lex_state = 406, .external_lex_state = 2}, - [3619] = {.lex_state = 39, .external_lex_state = 2}, - [3620] = {.lex_state = 39, .external_lex_state = 2}, - [3621] = {.lex_state = 39, .external_lex_state = 2}, - [3622] = {.lex_state = 38, .external_lex_state = 2}, - [3623] = {.lex_state = 39, .external_lex_state = 2}, - [3624] = {.lex_state = 39, .external_lex_state = 2}, - [3625] = {.lex_state = 39, .external_lex_state = 2}, - [3626] = {.lex_state = 406, .external_lex_state = 2}, - [3627] = {.lex_state = 39, .external_lex_state = 2}, - [3628] = {.lex_state = 39, .external_lex_state = 2}, - [3629] = {.lex_state = 39, .external_lex_state = 2}, - [3630] = {.lex_state = 406, .external_lex_state = 2}, - [3631] = {.lex_state = 39, .external_lex_state = 2}, - [3632] = {.lex_state = 39, .external_lex_state = 2}, - [3633] = {.lex_state = 406, .external_lex_state = 2}, - [3634] = {.lex_state = 39, .external_lex_state = 2}, - [3635] = {.lex_state = 39, .external_lex_state = 2}, - [3636] = {.lex_state = 39, .external_lex_state = 2}, - [3637] = {.lex_state = 39, .external_lex_state = 2}, - [3638] = {.lex_state = 38, .external_lex_state = 2}, - [3639] = {.lex_state = 39, .external_lex_state = 2}, - [3640] = {.lex_state = 39, .external_lex_state = 2}, - [3641] = {.lex_state = 39, .external_lex_state = 2}, - [3642] = {.lex_state = 406, .external_lex_state = 2}, - [3643] = {.lex_state = 406, .external_lex_state = 2}, - [3644] = {.lex_state = 39, .external_lex_state = 2}, - [3645] = {.lex_state = 406, .external_lex_state = 2}, - [3646] = {.lex_state = 406, .external_lex_state = 2}, - [3647] = {.lex_state = 406, .external_lex_state = 2}, - [3648] = {.lex_state = 406, .external_lex_state = 2}, - [3649] = {.lex_state = 406, .external_lex_state = 2}, - [3650] = {.lex_state = 39, .external_lex_state = 2}, - [3651] = {.lex_state = 39, .external_lex_state = 2}, - [3652] = {.lex_state = 39, .external_lex_state = 2}, - [3653] = {.lex_state = 39, .external_lex_state = 2}, - [3654] = {.lex_state = 39, .external_lex_state = 2}, - [3655] = {.lex_state = 39, .external_lex_state = 2}, - [3656] = {.lex_state = 38, .external_lex_state = 2}, - [3657] = {.lex_state = 39, .external_lex_state = 2}, - [3658] = {.lex_state = 406, .external_lex_state = 2}, - [3659] = {.lex_state = 39, .external_lex_state = 2}, - [3660] = {.lex_state = 39, .external_lex_state = 2}, - [3661] = {.lex_state = 39, .external_lex_state = 2}, - [3662] = {.lex_state = 39, .external_lex_state = 2}, - [3663] = {.lex_state = 39, .external_lex_state = 2}, - [3664] = {.lex_state = 39, .external_lex_state = 2}, - [3665] = {.lex_state = 39, .external_lex_state = 2}, - [3666] = {.lex_state = 39, .external_lex_state = 2}, - [3667] = {.lex_state = 39, .external_lex_state = 2}, - [3668] = {.lex_state = 39, .external_lex_state = 2}, - [3669] = {.lex_state = 39, .external_lex_state = 2}, - [3670] = {.lex_state = 39, .external_lex_state = 2}, - [3671] = {.lex_state = 39, .external_lex_state = 2}, - [3672] = {.lex_state = 39, .external_lex_state = 2}, - [3673] = {.lex_state = 39, .external_lex_state = 2}, - [3674] = {.lex_state = 39, .external_lex_state = 2}, - [3675] = {.lex_state = 39, .external_lex_state = 2}, - [3676] = {.lex_state = 39, .external_lex_state = 2}, - [3677] = {.lex_state = 39, .external_lex_state = 2}, - [3678] = {.lex_state = 39, .external_lex_state = 2}, - [3679] = {.lex_state = 39, .external_lex_state = 2}, - [3680] = {.lex_state = 39, .external_lex_state = 2}, - [3681] = {.lex_state = 39, .external_lex_state = 2}, - [3682] = {.lex_state = 39, .external_lex_state = 2}, - [3683] = {.lex_state = 39, .external_lex_state = 2}, - [3684] = {.lex_state = 39, .external_lex_state = 2}, - [3685] = {.lex_state = 39, .external_lex_state = 2}, - [3686] = {.lex_state = 39, .external_lex_state = 2}, - [3687] = {.lex_state = 39, .external_lex_state = 2}, - [3688] = {.lex_state = 39, .external_lex_state = 2}, - [3689] = {.lex_state = 39, .external_lex_state = 2}, - [3690] = {.lex_state = 39, .external_lex_state = 2}, - [3691] = {.lex_state = 39, .external_lex_state = 2}, - [3692] = {.lex_state = 39, .external_lex_state = 2}, - [3693] = {.lex_state = 39, .external_lex_state = 2}, - [3694] = {.lex_state = 39, .external_lex_state = 2}, - [3695] = {.lex_state = 39, .external_lex_state = 2}, - [3696] = {.lex_state = 39, .external_lex_state = 2}, - [3697] = {.lex_state = 39, .external_lex_state = 2}, - [3698] = {.lex_state = 39, .external_lex_state = 2}, - [3699] = {.lex_state = 39, .external_lex_state = 2}, - [3700] = {.lex_state = 39, .external_lex_state = 2}, - [3701] = {.lex_state = 39, .external_lex_state = 2}, - [3702] = {.lex_state = 39, .external_lex_state = 2}, - [3703] = {.lex_state = 39, .external_lex_state = 2}, - [3704] = {.lex_state = 39, .external_lex_state = 2}, - [3705] = {.lex_state = 39, .external_lex_state = 2}, - [3706] = {.lex_state = 39, .external_lex_state = 2}, - [3707] = {.lex_state = 39, .external_lex_state = 2}, - [3708] = {.lex_state = 39, .external_lex_state = 2}, - [3709] = {.lex_state = 39, .external_lex_state = 2}, - [3710] = {.lex_state = 39, .external_lex_state = 2}, - [3711] = {.lex_state = 39, .external_lex_state = 2}, - [3712] = {.lex_state = 38, .external_lex_state = 2}, - [3713] = {.lex_state = 39, .external_lex_state = 2}, - [3714] = {.lex_state = 39, .external_lex_state = 2}, - [3715] = {.lex_state = 39, .external_lex_state = 2}, - [3716] = {.lex_state = 39, .external_lex_state = 2}, - [3717] = {.lex_state = 39, .external_lex_state = 2}, - [3718] = {.lex_state = 39, .external_lex_state = 2}, - [3719] = {.lex_state = 39, .external_lex_state = 2}, - [3720] = {.lex_state = 39, .external_lex_state = 2}, - [3721] = {.lex_state = 39, .external_lex_state = 2}, - [3722] = {.lex_state = 39, .external_lex_state = 2}, - [3723] = {.lex_state = 39, .external_lex_state = 2}, - [3724] = {.lex_state = 38, .external_lex_state = 2}, - [3725] = {.lex_state = 39, .external_lex_state = 2}, - [3726] = {.lex_state = 39, .external_lex_state = 2}, - [3727] = {.lex_state = 39, .external_lex_state = 2}, - [3728] = {.lex_state = 38, .external_lex_state = 2}, - [3729] = {.lex_state = 39, .external_lex_state = 2}, - [3730] = {.lex_state = 39, .external_lex_state = 2}, - [3731] = {.lex_state = 39, .external_lex_state = 2}, - [3732] = {.lex_state = 38, .external_lex_state = 2}, - [3733] = {.lex_state = 39, .external_lex_state = 2}, - [3734] = {.lex_state = 39, .external_lex_state = 2}, - [3735] = {.lex_state = 39, .external_lex_state = 2}, - [3736] = {.lex_state = 38, .external_lex_state = 2}, - [3737] = {.lex_state = 38, .external_lex_state = 2}, - [3738] = {.lex_state = 39, .external_lex_state = 2}, - [3739] = {.lex_state = 39, .external_lex_state = 2}, - [3740] = {.lex_state = 39, .external_lex_state = 2}, - [3741] = {.lex_state = 39, .external_lex_state = 2}, - [3742] = {.lex_state = 39, .external_lex_state = 2}, - [3743] = {.lex_state = 86, .external_lex_state = 2}, - [3744] = {.lex_state = 49, .external_lex_state = 2}, - [3745] = {.lex_state = 49, .external_lex_state = 2}, - [3746] = {.lex_state = 49, .external_lex_state = 2}, - [3747] = {.lex_state = 49, .external_lex_state = 2}, - [3748] = {.lex_state = 49, .external_lex_state = 2}, - [3749] = {.lex_state = 49, .external_lex_state = 2}, + [3594] = {.lex_state = 38, .external_lex_state = 2}, + [3595] = {.lex_state = 38, .external_lex_state = 2}, + [3596] = {.lex_state = 86, .external_lex_state = 2}, + [3597] = {.lex_state = 49, .external_lex_state = 2}, + [3598] = {.lex_state = 49, .external_lex_state = 2}, + [3599] = {.lex_state = 49, .external_lex_state = 2}, + [3600] = {.lex_state = 49, .external_lex_state = 2}, + [3601] = {.lex_state = 49, .external_lex_state = 2}, + [3602] = {.lex_state = 49, .external_lex_state = 2}, + [3603] = {.lex_state = 63, .external_lex_state = 2}, + [3604] = {.lex_state = 63, .external_lex_state = 2}, + [3605] = {.lex_state = 49, .external_lex_state = 2}, + [3606] = {.lex_state = 49, .external_lex_state = 2}, + [3607] = {.lex_state = 49, .external_lex_state = 2}, + [3608] = {.lex_state = 63, .external_lex_state = 2}, + [3609] = {.lex_state = 49, .external_lex_state = 2}, + [3610] = {.lex_state = 49, .external_lex_state = 2}, + [3611] = {.lex_state = 49, .external_lex_state = 2}, + [3612] = {.lex_state = 49, .external_lex_state = 2}, + [3613] = {.lex_state = 49, .external_lex_state = 2}, + [3614] = {.lex_state = 49, .external_lex_state = 2}, + [3615] = {.lex_state = 49, .external_lex_state = 2}, + [3616] = {.lex_state = 49, .external_lex_state = 2}, + [3617] = {.lex_state = 49, .external_lex_state = 2}, + [3618] = {.lex_state = 49, .external_lex_state = 2}, + [3619] = {.lex_state = 49, .external_lex_state = 2}, + [3620] = {.lex_state = 49, .external_lex_state = 2}, + [3621] = {.lex_state = 49, .external_lex_state = 2}, + [3622] = {.lex_state = 49, .external_lex_state = 2}, + [3623] = {.lex_state = 49, .external_lex_state = 2}, + [3624] = {.lex_state = 49, .external_lex_state = 2}, + [3625] = {.lex_state = 49, .external_lex_state = 2}, + [3626] = {.lex_state = 49, .external_lex_state = 2}, + [3627] = {.lex_state = 49, .external_lex_state = 2}, + [3628] = {.lex_state = 49, .external_lex_state = 2}, + [3629] = {.lex_state = 49, .external_lex_state = 2}, + [3630] = {.lex_state = 49, .external_lex_state = 2}, + [3631] = {.lex_state = 49, .external_lex_state = 2}, + [3632] = {.lex_state = 49, .external_lex_state = 2}, + [3633] = {.lex_state = 49, .external_lex_state = 2}, + [3634] = {.lex_state = 49, .external_lex_state = 2}, + [3635] = {.lex_state = 49, .external_lex_state = 2}, + [3636] = {.lex_state = 49, .external_lex_state = 2}, + [3637] = {.lex_state = 49, .external_lex_state = 2}, + [3638] = {.lex_state = 49, .external_lex_state = 2}, + [3639] = {.lex_state = 49, .external_lex_state = 2}, + [3640] = {.lex_state = 55, .external_lex_state = 2}, + [3641] = {.lex_state = 55, .external_lex_state = 2}, + [3642] = {.lex_state = 64, .external_lex_state = 2}, + [3643] = {.lex_state = 55, .external_lex_state = 2}, + [3644] = {.lex_state = 63, .external_lex_state = 2}, + [3645] = {.lex_state = 55, .external_lex_state = 2}, + [3646] = {.lex_state = 55, .external_lex_state = 2}, + [3647] = {.lex_state = 64, .external_lex_state = 2}, + [3648] = {.lex_state = 49, .external_lex_state = 5}, + [3649] = {.lex_state = 49, .external_lex_state = 2}, + [3650] = {.lex_state = 63, .external_lex_state = 2}, + [3651] = {.lex_state = 63, .external_lex_state = 2}, + [3652] = {.lex_state = 63, .external_lex_state = 2}, + [3653] = {.lex_state = 63, .external_lex_state = 2}, + [3654] = {.lex_state = 63, .external_lex_state = 2}, + [3655] = {.lex_state = 63, .external_lex_state = 2}, + [3656] = {.lex_state = 49, .external_lex_state = 2}, + [3657] = {.lex_state = 63, .external_lex_state = 2}, + [3658] = {.lex_state = 63, .external_lex_state = 2}, + [3659] = {.lex_state = 49, .external_lex_state = 2}, + [3660] = {.lex_state = 48, .external_lex_state = 5}, + [3661] = {.lex_state = 63, .external_lex_state = 2}, + [3662] = {.lex_state = 63, .external_lex_state = 2}, + [3663] = {.lex_state = 63, .external_lex_state = 2}, + [3664] = {.lex_state = 63, .external_lex_state = 2}, + [3665] = {.lex_state = 49, .external_lex_state = 5}, + [3666] = {.lex_state = 49, .external_lex_state = 2}, + [3667] = {.lex_state = 63, .external_lex_state = 2}, + [3668] = {.lex_state = 63, .external_lex_state = 2}, + [3669] = {.lex_state = 63, .external_lex_state = 2}, + [3670] = {.lex_state = 63, .external_lex_state = 2}, + [3671] = {.lex_state = 63, .external_lex_state = 2}, + [3672] = {.lex_state = 49, .external_lex_state = 5}, + [3673] = {.lex_state = 63, .external_lex_state = 2}, + [3674] = {.lex_state = 48, .external_lex_state = 5}, + [3675] = {.lex_state = 63, .external_lex_state = 2}, + [3676] = {.lex_state = 63, .external_lex_state = 2}, + [3677] = {.lex_state = 63, .external_lex_state = 2}, + [3678] = {.lex_state = 63, .external_lex_state = 2}, + [3679] = {.lex_state = 63, .external_lex_state = 2}, + [3680] = {.lex_state = 63, .external_lex_state = 2}, + [3681] = {.lex_state = 63, .external_lex_state = 2}, + [3682] = {.lex_state = 49, .external_lex_state = 5}, + [3683] = {.lex_state = 63, .external_lex_state = 2}, + [3684] = {.lex_state = 63, .external_lex_state = 2}, + [3685] = {.lex_state = 63, .external_lex_state = 2}, + [3686] = {.lex_state = 49, .external_lex_state = 6}, + [3687] = {.lex_state = 49, .external_lex_state = 6}, + [3688] = {.lex_state = 63, .external_lex_state = 2}, + [3689] = {.lex_state = 63, .external_lex_state = 2}, + [3690] = {.lex_state = 63, .external_lex_state = 2}, + [3691] = {.lex_state = 406, .external_lex_state = 2}, + [3692] = {.lex_state = 63, .external_lex_state = 2}, + [3693] = {.lex_state = 63, .external_lex_state = 2}, + [3694] = {.lex_state = 406, .external_lex_state = 2}, + [3695] = {.lex_state = 406, .external_lex_state = 2}, + [3696] = {.lex_state = 406, .external_lex_state = 2}, + [3697] = {.lex_state = 406, .external_lex_state = 2}, + [3698] = {.lex_state = 406, .external_lex_state = 2}, + [3699] = {.lex_state = 63, .external_lex_state = 2}, + [3700] = {.lex_state = 406, .external_lex_state = 2}, + [3701] = {.lex_state = 63, .external_lex_state = 2}, + [3702] = {.lex_state = 406, .external_lex_state = 2}, + [3703] = {.lex_state = 406, .external_lex_state = 2}, + [3704] = {.lex_state = 406, .external_lex_state = 2}, + [3705] = {.lex_state = 63, .external_lex_state = 2}, + [3706] = {.lex_state = 406, .external_lex_state = 2}, + [3707] = {.lex_state = 49, .external_lex_state = 6}, + [3708] = {.lex_state = 63, .external_lex_state = 2}, + [3709] = {.lex_state = 406, .external_lex_state = 2}, + [3710] = {.lex_state = 63, .external_lex_state = 2}, + [3711] = {.lex_state = 406, .external_lex_state = 2}, + [3712] = {.lex_state = 406, .external_lex_state = 2}, + [3713] = {.lex_state = 63, .external_lex_state = 2}, + [3714] = {.lex_state = 406, .external_lex_state = 2}, + [3715] = {.lex_state = 406, .external_lex_state = 2}, + [3716] = {.lex_state = 406, .external_lex_state = 2}, + [3717] = {.lex_state = 63, .external_lex_state = 2}, + [3718] = {.lex_state = 63, .external_lex_state = 2}, + [3719] = {.lex_state = 63, .external_lex_state = 2}, + [3720] = {.lex_state = 63, .external_lex_state = 2}, + [3721] = {.lex_state = 406, .external_lex_state = 2}, + [3722] = {.lex_state = 63, .external_lex_state = 2}, + [3723] = {.lex_state = 406, .external_lex_state = 2}, + [3724] = {.lex_state = 406, .external_lex_state = 2}, + [3725] = {.lex_state = 63, .external_lex_state = 2}, + [3726] = {.lex_state = 63, .external_lex_state = 2}, + [3727] = {.lex_state = 63, .external_lex_state = 2}, + [3728] = {.lex_state = 63, .external_lex_state = 2}, + [3729] = {.lex_state = 63, .external_lex_state = 2}, + [3730] = {.lex_state = 63, .external_lex_state = 2}, + [3731] = {.lex_state = 63, .external_lex_state = 2}, + [3732] = {.lex_state = 63, .external_lex_state = 2}, + [3733] = {.lex_state = 406, .external_lex_state = 2}, + [3734] = {.lex_state = 63, .external_lex_state = 2}, + [3735] = {.lex_state = 63, .external_lex_state = 2}, + [3736] = {.lex_state = 49, .external_lex_state = 5}, + [3737] = {.lex_state = 49, .external_lex_state = 5}, + [3738] = {.lex_state = 49, .external_lex_state = 5}, + [3739] = {.lex_state = 49, .external_lex_state = 5}, + [3740] = {.lex_state = 49, .external_lex_state = 5}, + [3741] = {.lex_state = 49, .external_lex_state = 5}, + [3742] = {.lex_state = 49, .external_lex_state = 5}, + [3743] = {.lex_state = 49, .external_lex_state = 5}, + [3744] = {.lex_state = 49, .external_lex_state = 5}, + [3745] = {.lex_state = 49, .external_lex_state = 5}, + [3746] = {.lex_state = 49, .external_lex_state = 5}, + [3747] = {.lex_state = 49, .external_lex_state = 5}, + [3748] = {.lex_state = 49, .external_lex_state = 5}, + [3749] = {.lex_state = 49, .external_lex_state = 5}, [3750] = {.lex_state = 63, .external_lex_state = 2}, - [3751] = {.lex_state = 63, .external_lex_state = 2}, - [3752] = {.lex_state = 49, .external_lex_state = 2}, - [3753] = {.lex_state = 49, .external_lex_state = 2}, - [3754] = {.lex_state = 49, .external_lex_state = 2}, - [3755] = {.lex_state = 49, .external_lex_state = 2}, - [3756] = {.lex_state = 49, .external_lex_state = 2}, - [3757] = {.lex_state = 49, .external_lex_state = 2}, - [3758] = {.lex_state = 49, .external_lex_state = 2}, - [3759] = {.lex_state = 49, .external_lex_state = 2}, - [3760] = {.lex_state = 49, .external_lex_state = 2}, - [3761] = {.lex_state = 49, .external_lex_state = 2}, - [3762] = {.lex_state = 49, .external_lex_state = 2}, - [3763] = {.lex_state = 49, .external_lex_state = 2}, - [3764] = {.lex_state = 49, .external_lex_state = 2}, - [3765] = {.lex_state = 49, .external_lex_state = 2}, - [3766] = {.lex_state = 49, .external_lex_state = 2}, - [3767] = {.lex_state = 49, .external_lex_state = 2}, - [3768] = {.lex_state = 49, .external_lex_state = 2}, - [3769] = {.lex_state = 49, .external_lex_state = 2}, - [3770] = {.lex_state = 49, .external_lex_state = 2}, - [3771] = {.lex_state = 49, .external_lex_state = 2}, - [3772] = {.lex_state = 49, .external_lex_state = 2}, - [3773] = {.lex_state = 49, .external_lex_state = 2}, - [3774] = {.lex_state = 49, .external_lex_state = 2}, - [3775] = {.lex_state = 49, .external_lex_state = 2}, - [3776] = {.lex_state = 49, .external_lex_state = 2}, - [3777] = {.lex_state = 49, .external_lex_state = 2}, - [3778] = {.lex_state = 49, .external_lex_state = 2}, - [3779] = {.lex_state = 49, .external_lex_state = 2}, - [3780] = {.lex_state = 49, .external_lex_state = 2}, - [3781] = {.lex_state = 49, .external_lex_state = 2}, - [3782] = {.lex_state = 49, .external_lex_state = 2}, - [3783] = {.lex_state = 49, .external_lex_state = 2}, + [3751] = {.lex_state = 406, .external_lex_state = 2}, + [3752] = {.lex_state = 49, .external_lex_state = 5}, + [3753] = {.lex_state = 63, .external_lex_state = 2}, + [3754] = {.lex_state = 49, .external_lex_state = 5}, + [3755] = {.lex_state = 49, .external_lex_state = 5}, + [3756] = {.lex_state = 49, .external_lex_state = 5}, + [3757] = {.lex_state = 48, .external_lex_state = 5}, + [3758] = {.lex_state = 63, .external_lex_state = 2}, + [3759] = {.lex_state = 63, .external_lex_state = 2}, + [3760] = {.lex_state = 406, .external_lex_state = 2}, + [3761] = {.lex_state = 406, .external_lex_state = 2}, + [3762] = {.lex_state = 406, .external_lex_state = 2}, + [3763] = {.lex_state = 63, .external_lex_state = 2}, + [3764] = {.lex_state = 63, .external_lex_state = 2}, + [3765] = {.lex_state = 63, .external_lex_state = 2}, + [3766] = {.lex_state = 406, .external_lex_state = 2}, + [3767] = {.lex_state = 63, .external_lex_state = 2}, + [3768] = {.lex_state = 63, .external_lex_state = 2}, + [3769] = {.lex_state = 63, .external_lex_state = 2}, + [3770] = {.lex_state = 406, .external_lex_state = 2}, + [3771] = {.lex_state = 406, .external_lex_state = 2}, + [3772] = {.lex_state = 49, .external_lex_state = 5}, + [3773] = {.lex_state = 49, .external_lex_state = 5}, + [3774] = {.lex_state = 49, .external_lex_state = 5}, + [3775] = {.lex_state = 49, .external_lex_state = 5}, + [3776] = {.lex_state = 49, .external_lex_state = 5}, + [3777] = {.lex_state = 49, .external_lex_state = 5}, + [3778] = {.lex_state = 49, .external_lex_state = 5}, + [3779] = {.lex_state = 49, .external_lex_state = 5}, + [3780] = {.lex_state = 49, .external_lex_state = 5}, + [3781] = {.lex_state = 49, .external_lex_state = 5}, + [3782] = {.lex_state = 406, .external_lex_state = 2}, + [3783] = {.lex_state = 63, .external_lex_state = 2}, [3784] = {.lex_state = 63, .external_lex_state = 2}, - [3785] = {.lex_state = 49, .external_lex_state = 2}, - [3786] = {.lex_state = 49, .external_lex_state = 2}, - [3787] = {.lex_state = 55, .external_lex_state = 2}, - [3788] = {.lex_state = 55, .external_lex_state = 2}, - [3789] = {.lex_state = 55, .external_lex_state = 2}, - [3790] = {.lex_state = 64, .external_lex_state = 2}, - [3791] = {.lex_state = 55, .external_lex_state = 2}, - [3792] = {.lex_state = 64, .external_lex_state = 2}, - [3793] = {.lex_state = 55, .external_lex_state = 2}, - [3794] = {.lex_state = 63, .external_lex_state = 2}, - [3795] = {.lex_state = 63, .external_lex_state = 2}, + [3785] = {.lex_state = 63, .external_lex_state = 2}, + [3786] = {.lex_state = 63, .external_lex_state = 2}, + [3787] = {.lex_state = 49, .external_lex_state = 5}, + [3788] = {.lex_state = 49, .external_lex_state = 5}, + [3789] = {.lex_state = 49, .external_lex_state = 5}, + [3790] = {.lex_state = 49, .external_lex_state = 5}, + [3791] = {.lex_state = 49, .external_lex_state = 5}, + [3792] = {.lex_state = 48, .external_lex_state = 5}, + [3793] = {.lex_state = 56, .external_lex_state = 2}, + [3794] = {.lex_state = 48, .external_lex_state = 5}, + [3795] = {.lex_state = 48, .external_lex_state = 5}, [3796] = {.lex_state = 48, .external_lex_state = 5}, - [3797] = {.lex_state = 63, .external_lex_state = 2}, - [3798] = {.lex_state = 63, .external_lex_state = 2}, - [3799] = {.lex_state = 63, .external_lex_state = 2}, - [3800] = {.lex_state = 63, .external_lex_state = 2}, - [3801] = {.lex_state = 63, .external_lex_state = 2}, - [3802] = {.lex_state = 63, .external_lex_state = 2}, - [3803] = {.lex_state = 63, .external_lex_state = 2}, - [3804] = {.lex_state = 49, .external_lex_state = 2}, - [3805] = {.lex_state = 63, .external_lex_state = 2}, - [3806] = {.lex_state = 63, .external_lex_state = 2}, - [3807] = {.lex_state = 63, .external_lex_state = 2}, - [3808] = {.lex_state = 63, .external_lex_state = 2}, - [3809] = {.lex_state = 49, .external_lex_state = 5}, - [3810] = {.lex_state = 63, .external_lex_state = 2}, - [3811] = {.lex_state = 49, .external_lex_state = 5}, + [3797] = {.lex_state = 48, .external_lex_state = 5}, + [3798] = {.lex_state = 48, .external_lex_state = 5}, + [3799] = {.lex_state = 48, .external_lex_state = 5}, + [3800] = {.lex_state = 56, .external_lex_state = 2}, + [3801] = {.lex_state = 87, .external_lex_state = 2}, + [3802] = {.lex_state = 48, .external_lex_state = 5}, + [3803] = {.lex_state = 48, .external_lex_state = 5}, + [3804] = {.lex_state = 56, .external_lex_state = 2}, + [3805] = {.lex_state = 48, .external_lex_state = 5}, + [3806] = {.lex_state = 48, .external_lex_state = 5}, + [3807] = {.lex_state = 48, .external_lex_state = 5}, + [3808] = {.lex_state = 48, .external_lex_state = 5}, + [3809] = {.lex_state = 48, .external_lex_state = 5}, + [3810] = {.lex_state = 48, .external_lex_state = 5}, + [3811] = {.lex_state = 56, .external_lex_state = 2}, [3812] = {.lex_state = 48, .external_lex_state = 5}, - [3813] = {.lex_state = 49, .external_lex_state = 2}, - [3814] = {.lex_state = 49, .external_lex_state = 2}, - [3815] = {.lex_state = 63, .external_lex_state = 2}, - [3816] = {.lex_state = 63, .external_lex_state = 2}, - [3817] = {.lex_state = 49, .external_lex_state = 5}, - [3818] = {.lex_state = 49, .external_lex_state = 2}, - [3819] = {.lex_state = 63, .external_lex_state = 2}, - [3820] = {.lex_state = 63, .external_lex_state = 2}, - [3821] = {.lex_state = 63, .external_lex_state = 2}, - [3822] = {.lex_state = 63, .external_lex_state = 2}, - [3823] = {.lex_state = 63, .external_lex_state = 2}, - [3824] = {.lex_state = 63, .external_lex_state = 2}, - [3825] = {.lex_state = 63, .external_lex_state = 2}, - [3826] = {.lex_state = 63, .external_lex_state = 2}, - [3827] = {.lex_state = 63, .external_lex_state = 2}, - [3828] = {.lex_state = 49, .external_lex_state = 5}, - [3829] = {.lex_state = 49, .external_lex_state = 6}, - [3830] = {.lex_state = 63, .external_lex_state = 2}, + [3813] = {.lex_state = 48, .external_lex_state = 5}, + [3814] = {.lex_state = 48, .external_lex_state = 5}, + [3815] = {.lex_state = 48, .external_lex_state = 5}, + [3816] = {.lex_state = 87, .external_lex_state = 2}, + [3817] = {.lex_state = 87, .external_lex_state = 2}, + [3818] = {.lex_state = 48, .external_lex_state = 5}, + [3819] = {.lex_state = 48, .external_lex_state = 5}, + [3820] = {.lex_state = 48, .external_lex_state = 2}, + [3821] = {.lex_state = 48, .external_lex_state = 5}, + [3822] = {.lex_state = 48, .external_lex_state = 5}, + [3823] = {.lex_state = 48, .external_lex_state = 5}, + [3824] = {.lex_state = 87, .external_lex_state = 2}, + [3825] = {.lex_state = 48, .external_lex_state = 5}, + [3826] = {.lex_state = 48, .external_lex_state = 5}, + [3827] = {.lex_state = 48, .external_lex_state = 5}, + [3828] = {.lex_state = 48, .external_lex_state = 5}, + [3829] = {.lex_state = 87, .external_lex_state = 2}, + [3830] = {.lex_state = 64, .external_lex_state = 2}, [3831] = {.lex_state = 48, .external_lex_state = 5}, - [3832] = {.lex_state = 406, .external_lex_state = 2}, - [3833] = {.lex_state = 63, .external_lex_state = 2}, - [3834] = {.lex_state = 63, .external_lex_state = 2}, - [3835] = {.lex_state = 406, .external_lex_state = 2}, - [3836] = {.lex_state = 63, .external_lex_state = 2}, - [3837] = {.lex_state = 63, .external_lex_state = 2}, - [3838] = {.lex_state = 63, .external_lex_state = 2}, - [3839] = {.lex_state = 63, .external_lex_state = 2}, - [3840] = {.lex_state = 406, .external_lex_state = 2}, - [3841] = {.lex_state = 406, .external_lex_state = 2}, - [3842] = {.lex_state = 406, .external_lex_state = 2}, - [3843] = {.lex_state = 63, .external_lex_state = 2}, - [3844] = {.lex_state = 406, .external_lex_state = 2}, - [3845] = {.lex_state = 406, .external_lex_state = 2}, + [3832] = {.lex_state = 56, .external_lex_state = 2}, + [3833] = {.lex_state = 65, .external_lex_state = 2}, + [3834] = {.lex_state = 49, .external_lex_state = 6}, + [3835] = {.lex_state = 65, .external_lex_state = 2}, + [3836] = {.lex_state = 48, .external_lex_state = 5}, + [3837] = {.lex_state = 48, .external_lex_state = 5}, + [3838] = {.lex_state = 48, .external_lex_state = 5}, + [3839] = {.lex_state = 48, .external_lex_state = 5}, + [3840] = {.lex_state = 48, .external_lex_state = 5}, + [3841] = {.lex_state = 48, .external_lex_state = 5}, + [3842] = {.lex_state = 48, .external_lex_state = 5}, + [3843] = {.lex_state = 48, .external_lex_state = 5}, + [3844] = {.lex_state = 48, .external_lex_state = 5}, + [3845] = {.lex_state = 48, .external_lex_state = 5}, [3846] = {.lex_state = 49, .external_lex_state = 5}, - [3847] = {.lex_state = 49, .external_lex_state = 5}, - [3848] = {.lex_state = 49, .external_lex_state = 5}, - [3849] = {.lex_state = 49, .external_lex_state = 5}, - [3850] = {.lex_state = 49, .external_lex_state = 5}, - [3851] = {.lex_state = 49, .external_lex_state = 5}, - [3852] = {.lex_state = 49, .external_lex_state = 5}, + [3847] = {.lex_state = 48, .external_lex_state = 5}, + [3848] = {.lex_state = 48, .external_lex_state = 5}, + [3849] = {.lex_state = 65, .external_lex_state = 2}, + [3850] = {.lex_state = 81, .external_lex_state = 2}, + [3851] = {.lex_state = 49, .external_lex_state = 6}, + [3852] = {.lex_state = 49, .external_lex_state = 6}, [3853] = {.lex_state = 49, .external_lex_state = 5}, - [3854] = {.lex_state = 49, .external_lex_state = 5}, - [3855] = {.lex_state = 49, .external_lex_state = 5}, - [3856] = {.lex_state = 49, .external_lex_state = 5}, - [3857] = {.lex_state = 49, .external_lex_state = 5}, - [3858] = {.lex_state = 49, .external_lex_state = 5}, - [3859] = {.lex_state = 406, .external_lex_state = 2}, - [3860] = {.lex_state = 406, .external_lex_state = 2}, - [3861] = {.lex_state = 406, .external_lex_state = 2}, - [3862] = {.lex_state = 63, .external_lex_state = 2}, - [3863] = {.lex_state = 406, .external_lex_state = 2}, - [3864] = {.lex_state = 406, .external_lex_state = 2}, - [3865] = {.lex_state = 406, .external_lex_state = 2}, - [3866] = {.lex_state = 63, .external_lex_state = 2}, - [3867] = {.lex_state = 406, .external_lex_state = 2}, - [3868] = {.lex_state = 406, .external_lex_state = 2}, - [3869] = {.lex_state = 406, .external_lex_state = 2}, - [3870] = {.lex_state = 63, .external_lex_state = 2}, - [3871] = {.lex_state = 63, .external_lex_state = 2}, - [3872] = {.lex_state = 63, .external_lex_state = 2}, - [3873] = {.lex_state = 63, .external_lex_state = 2}, - [3874] = {.lex_state = 63, .external_lex_state = 2}, - [3875] = {.lex_state = 63, .external_lex_state = 2}, - [3876] = {.lex_state = 63, .external_lex_state = 2}, - [3877] = {.lex_state = 63, .external_lex_state = 2}, - [3878] = {.lex_state = 406, .external_lex_state = 2}, - [3879] = {.lex_state = 63, .external_lex_state = 2}, - [3880] = {.lex_state = 63, .external_lex_state = 2}, - [3881] = {.lex_state = 63, .external_lex_state = 2}, - [3882] = {.lex_state = 63, .external_lex_state = 2}, - [3883] = {.lex_state = 406, .external_lex_state = 2}, - [3884] = {.lex_state = 63, .external_lex_state = 2}, + [3854] = {.lex_state = 49, .external_lex_state = 6}, + [3855] = {.lex_state = 49, .external_lex_state = 6}, + [3856] = {.lex_state = 48, .external_lex_state = 5}, + [3857] = {.lex_state = 65, .external_lex_state = 2}, + [3858] = {.lex_state = 49, .external_lex_state = 6}, + [3859] = {.lex_state = 48, .external_lex_state = 6}, + [3860] = {.lex_state = 49, .external_lex_state = 6}, + [3861] = {.lex_state = 48, .external_lex_state = 5}, + [3862] = {.lex_state = 49, .external_lex_state = 6}, + [3863] = {.lex_state = 48, .external_lex_state = 5}, + [3864] = {.lex_state = 49, .external_lex_state = 6}, + [3865] = {.lex_state = 65, .external_lex_state = 2}, + [3866] = {.lex_state = 48, .external_lex_state = 5}, + [3867] = {.lex_state = 49, .external_lex_state = 6}, + [3868] = {.lex_state = 48, .external_lex_state = 5}, + [3869] = {.lex_state = 49, .external_lex_state = 6}, + [3870] = {.lex_state = 49, .external_lex_state = 6}, + [3871] = {.lex_state = 49, .external_lex_state = 6}, + [3872] = {.lex_state = 48, .external_lex_state = 5}, + [3873] = {.lex_state = 49, .external_lex_state = 6}, + [3874] = {.lex_state = 49, .external_lex_state = 5}, + [3875] = {.lex_state = 49, .external_lex_state = 6}, + [3876] = {.lex_state = 49, .external_lex_state = 6}, + [3877] = {.lex_state = 49, .external_lex_state = 5}, + [3878] = {.lex_state = 81, .external_lex_state = 2}, + [3879] = {.lex_state = 49, .external_lex_state = 5}, + [3880] = {.lex_state = 49, .external_lex_state = 6}, + [3881] = {.lex_state = 49, .external_lex_state = 6}, + [3882] = {.lex_state = 48, .external_lex_state = 5}, + [3883] = {.lex_state = 65, .external_lex_state = 2}, + [3884] = {.lex_state = 65, .external_lex_state = 2}, [3885] = {.lex_state = 49, .external_lex_state = 6}, [3886] = {.lex_state = 49, .external_lex_state = 6}, - [3887] = {.lex_state = 63, .external_lex_state = 2}, - [3888] = {.lex_state = 49, .external_lex_state = 5}, - [3889] = {.lex_state = 49, .external_lex_state = 5}, - [3890] = {.lex_state = 49, .external_lex_state = 5}, - [3891] = {.lex_state = 49, .external_lex_state = 5}, - [3892] = {.lex_state = 49, .external_lex_state = 5}, - [3893] = {.lex_state = 49, .external_lex_state = 5}, - [3894] = {.lex_state = 49, .external_lex_state = 5}, - [3895] = {.lex_state = 49, .external_lex_state = 5}, - [3896] = {.lex_state = 49, .external_lex_state = 5}, - [3897] = {.lex_state = 49, .external_lex_state = 5}, - [3898] = {.lex_state = 63, .external_lex_state = 2}, - [3899] = {.lex_state = 63, .external_lex_state = 2}, - [3900] = {.lex_state = 63, .external_lex_state = 2}, - [3901] = {.lex_state = 63, .external_lex_state = 2}, - [3902] = {.lex_state = 63, .external_lex_state = 2}, - [3903] = {.lex_state = 49, .external_lex_state = 5}, + [3887] = {.lex_state = 49, .external_lex_state = 6}, + [3888] = {.lex_state = 49, .external_lex_state = 6}, + [3889] = {.lex_state = 49, .external_lex_state = 6}, + [3890] = {.lex_state = 49, .external_lex_state = 6}, + [3891] = {.lex_state = 49, .external_lex_state = 6}, + [3892] = {.lex_state = 48, .external_lex_state = 5}, + [3893] = {.lex_state = 48, .external_lex_state = 5}, + [3894] = {.lex_state = 49, .external_lex_state = 6}, + [3895] = {.lex_state = 48, .external_lex_state = 5}, + [3896] = {.lex_state = 48, .external_lex_state = 5}, + [3897] = {.lex_state = 49, .external_lex_state = 6}, + [3898] = {.lex_state = 48, .external_lex_state = 5}, + [3899] = {.lex_state = 49, .external_lex_state = 5}, + [3900] = {.lex_state = 65, .external_lex_state = 2}, + [3901] = {.lex_state = 49, .external_lex_state = 6}, + [3902] = {.lex_state = 49, .external_lex_state = 6}, + [3903] = {.lex_state = 49, .external_lex_state = 6}, [3904] = {.lex_state = 49, .external_lex_state = 5}, - [3905] = {.lex_state = 49, .external_lex_state = 5}, - [3906] = {.lex_state = 49, .external_lex_state = 5}, - [3907] = {.lex_state = 49, .external_lex_state = 5}, - [3908] = {.lex_state = 49, .external_lex_state = 5}, - [3909] = {.lex_state = 49, .external_lex_state = 5}, - [3910] = {.lex_state = 49, .external_lex_state = 5}, - [3911] = {.lex_state = 49, .external_lex_state = 5}, - [3912] = {.lex_state = 49, .external_lex_state = 5}, - [3913] = {.lex_state = 63, .external_lex_state = 2}, - [3914] = {.lex_state = 63, .external_lex_state = 2}, - [3915] = {.lex_state = 63, .external_lex_state = 2}, - [3916] = {.lex_state = 63, .external_lex_state = 2}, - [3917] = {.lex_state = 63, .external_lex_state = 2}, - [3918] = {.lex_state = 406, .external_lex_state = 2}, - [3919] = {.lex_state = 63, .external_lex_state = 2}, - [3920] = {.lex_state = 63, .external_lex_state = 2}, - [3921] = {.lex_state = 63, .external_lex_state = 2}, - [3922] = {.lex_state = 406, .external_lex_state = 2}, - [3923] = {.lex_state = 406, .external_lex_state = 2}, - [3924] = {.lex_state = 63, .external_lex_state = 2}, - [3925] = {.lex_state = 63, .external_lex_state = 2}, - [3926] = {.lex_state = 63, .external_lex_state = 2}, - [3927] = {.lex_state = 406, .external_lex_state = 2}, - [3928] = {.lex_state = 406, .external_lex_state = 2}, - [3929] = {.lex_state = 63, .external_lex_state = 2}, - [3930] = {.lex_state = 63, .external_lex_state = 2}, - [3931] = {.lex_state = 406, .external_lex_state = 2}, - [3932] = {.lex_state = 406, .external_lex_state = 2}, - [3933] = {.lex_state = 63, .external_lex_state = 2}, - [3934] = {.lex_state = 63, .external_lex_state = 2}, - [3935] = {.lex_state = 406, .external_lex_state = 2}, - [3936] = {.lex_state = 406, .external_lex_state = 2}, - [3937] = {.lex_state = 406, .external_lex_state = 2}, - [3938] = {.lex_state = 406, .external_lex_state = 2}, - [3939] = {.lex_state = 48, .external_lex_state = 5}, - [3940] = {.lex_state = 56, .external_lex_state = 2}, - [3941] = {.lex_state = 56, .external_lex_state = 2}, - [3942] = {.lex_state = 87, .external_lex_state = 2}, - [3943] = {.lex_state = 48, .external_lex_state = 5}, - [3944] = {.lex_state = 87, .external_lex_state = 2}, + [3905] = {.lex_state = 49, .external_lex_state = 6}, + [3906] = {.lex_state = 49, .external_lex_state = 6}, + [3907] = {.lex_state = 49, .external_lex_state = 6}, + [3908] = {.lex_state = 49, .external_lex_state = 6}, + [3909] = {.lex_state = 48, .external_lex_state = 5}, + [3910] = {.lex_state = 48, .external_lex_state = 5}, + [3911] = {.lex_state = 48, .external_lex_state = 5}, + [3912] = {.lex_state = 55, .external_lex_state = 2}, + [3913] = {.lex_state = 48, .external_lex_state = 5}, + [3914] = {.lex_state = 48, .external_lex_state = 5}, + [3915] = {.lex_state = 81, .external_lex_state = 2}, + [3916] = {.lex_state = 48, .external_lex_state = 5}, + [3917] = {.lex_state = 48, .external_lex_state = 5}, + [3918] = {.lex_state = 48, .external_lex_state = 5}, + [3919] = {.lex_state = 48, .external_lex_state = 5}, + [3920] = {.lex_state = 48, .external_lex_state = 5}, + [3921] = {.lex_state = 48, .external_lex_state = 5}, + [3922] = {.lex_state = 48, .external_lex_state = 5}, + [3923] = {.lex_state = 48, .external_lex_state = 5}, + [3924] = {.lex_state = 65, .external_lex_state = 2}, + [3925] = {.lex_state = 48, .external_lex_state = 5}, + [3926] = {.lex_state = 48, .external_lex_state = 5}, + [3927] = {.lex_state = 48, .external_lex_state = 5}, + [3928] = {.lex_state = 48, .external_lex_state = 5}, + [3929] = {.lex_state = 48, .external_lex_state = 5}, + [3930] = {.lex_state = 81, .external_lex_state = 2}, + [3931] = {.lex_state = 48, .external_lex_state = 5}, + [3932] = {.lex_state = 48, .external_lex_state = 5}, + [3933] = {.lex_state = 48, .external_lex_state = 5}, + [3934] = {.lex_state = 48, .external_lex_state = 5}, + [3935] = {.lex_state = 48, .external_lex_state = 5}, + [3936] = {.lex_state = 55, .external_lex_state = 2}, + [3937] = {.lex_state = 48, .external_lex_state = 5}, + [3938] = {.lex_state = 48, .external_lex_state = 5}, + [3939] = {.lex_state = 81, .external_lex_state = 2}, + [3940] = {.lex_state = 48, .external_lex_state = 5}, + [3941] = {.lex_state = 48, .external_lex_state = 5}, + [3942] = {.lex_state = 48, .external_lex_state = 6}, + [3943] = {.lex_state = 55, .external_lex_state = 2}, + [3944] = {.lex_state = 48, .external_lex_state = 5}, [3945] = {.lex_state = 48, .external_lex_state = 5}, - [3946] = {.lex_state = 87, .external_lex_state = 2}, - [3947] = {.lex_state = 48, .external_lex_state = 5}, + [3946] = {.lex_state = 48, .external_lex_state = 5}, + [3947] = {.lex_state = 81, .external_lex_state = 2}, [3948] = {.lex_state = 48, .external_lex_state = 5}, [3949] = {.lex_state = 48, .external_lex_state = 5}, - [3950] = {.lex_state = 56, .external_lex_state = 2}, + [3950] = {.lex_state = 48, .external_lex_state = 5}, [3951] = {.lex_state = 48, .external_lex_state = 5}, [3952] = {.lex_state = 48, .external_lex_state = 5}, [3953] = {.lex_state = 48, .external_lex_state = 5}, - [3954] = {.lex_state = 48, .external_lex_state = 5}, + [3954] = {.lex_state = 55, .external_lex_state = 2}, [3955] = {.lex_state = 48, .external_lex_state = 5}, [3956] = {.lex_state = 48, .external_lex_state = 5}, [3957] = {.lex_state = 48, .external_lex_state = 5}, [3958] = {.lex_state = 48, .external_lex_state = 5}, [3959] = {.lex_state = 48, .external_lex_state = 5}, - [3960] = {.lex_state = 87, .external_lex_state = 2}, + [3960] = {.lex_state = 48, .external_lex_state = 5}, [3961] = {.lex_state = 48, .external_lex_state = 5}, - [3962] = {.lex_state = 56, .external_lex_state = 2}, - [3963] = {.lex_state = 48, .external_lex_state = 5}, + [3962] = {.lex_state = 55, .external_lex_state = 2}, + [3963] = {.lex_state = 48, .external_lex_state = 2}, [3964] = {.lex_state = 48, .external_lex_state = 5}, [3965] = {.lex_state = 48, .external_lex_state = 5}, [3966] = {.lex_state = 48, .external_lex_state = 5}, [3967] = {.lex_state = 48, .external_lex_state = 5}, - [3968] = {.lex_state = 87, .external_lex_state = 2}, + [3968] = {.lex_state = 48, .external_lex_state = 5}, [3969] = {.lex_state = 48, .external_lex_state = 5}, - [3970] = {.lex_state = 48, .external_lex_state = 2}, + [3970] = {.lex_state = 48, .external_lex_state = 5}, [3971] = {.lex_state = 48, .external_lex_state = 5}, [3972] = {.lex_state = 48, .external_lex_state = 5}, [3973] = {.lex_state = 48, .external_lex_state = 5}, - [3974] = {.lex_state = 64, .external_lex_state = 2}, + [3974] = {.lex_state = 48, .external_lex_state = 5}, [3975] = {.lex_state = 48, .external_lex_state = 5}, [3976] = {.lex_state = 48, .external_lex_state = 5}, [3977] = {.lex_state = 48, .external_lex_state = 5}, - [3978] = {.lex_state = 56, .external_lex_state = 2}, + [3978] = {.lex_state = 48, .external_lex_state = 5}, [3979] = {.lex_state = 48, .external_lex_state = 5}, - [3980] = {.lex_state = 49, .external_lex_state = 6}, - [3981] = {.lex_state = 48, .external_lex_state = 5}, + [3980] = {.lex_state = 48, .external_lex_state = 5}, + [3981] = {.lex_state = 49, .external_lex_state = 6}, [3982] = {.lex_state = 48, .external_lex_state = 5}, - [3983] = {.lex_state = 48, .external_lex_state = 5}, - [3984] = {.lex_state = 49, .external_lex_state = 6}, - [3985] = {.lex_state = 49, .external_lex_state = 6}, - [3986] = {.lex_state = 49, .external_lex_state = 6}, - [3987] = {.lex_state = 48, .external_lex_state = 5}, - [3988] = {.lex_state = 49, .external_lex_state = 6}, - [3989] = {.lex_state = 49, .external_lex_state = 6}, - [3990] = {.lex_state = 49, .external_lex_state = 6}, - [3991] = {.lex_state = 49, .external_lex_state = 6}, - [3992] = {.lex_state = 49, .external_lex_state = 6}, - [3993] = {.lex_state = 49, .external_lex_state = 6}, - [3994] = {.lex_state = 49, .external_lex_state = 6}, - [3995] = {.lex_state = 49, .external_lex_state = 6}, - [3996] = {.lex_state = 49, .external_lex_state = 6}, - [3997] = {.lex_state = 49, .external_lex_state = 6}, + [3983] = {.lex_state = 49, .external_lex_state = 6}, + [3984] = {.lex_state = 48, .external_lex_state = 5}, + [3985] = {.lex_state = 48, .external_lex_state = 5}, + [3986] = {.lex_state = 48, .external_lex_state = 5}, + [3987] = {.lex_state = 48, .external_lex_state = 6}, + [3988] = {.lex_state = 48, .external_lex_state = 5}, + [3989] = {.lex_state = 48, .external_lex_state = 5}, + [3990] = {.lex_state = 48, .external_lex_state = 5}, + [3991] = {.lex_state = 48, .external_lex_state = 5}, + [3992] = {.lex_state = 48, .external_lex_state = 5}, + [3993] = {.lex_state = 48, .external_lex_state = 5}, + [3994] = {.lex_state = 48, .external_lex_state = 5}, + [3995] = {.lex_state = 48, .external_lex_state = 5}, + [3996] = {.lex_state = 48, .external_lex_state = 5}, + [3997] = {.lex_state = 48, .external_lex_state = 5}, [3998] = {.lex_state = 48, .external_lex_state = 5}, - [3999] = {.lex_state = 49, .external_lex_state = 6}, - [4000] = {.lex_state = 49, .external_lex_state = 6}, - [4001] = {.lex_state = 49, .external_lex_state = 5}, - [4002] = {.lex_state = 48, .external_lex_state = 5}, - [4003] = {.lex_state = 49, .external_lex_state = 6}, - [4004] = {.lex_state = 49, .external_lex_state = 6}, - [4005] = {.lex_state = 49, .external_lex_state = 6}, - [4006] = {.lex_state = 49, .external_lex_state = 6}, + [3999] = {.lex_state = 48, .external_lex_state = 5}, + [4000] = {.lex_state = 48, .external_lex_state = 5}, + [4001] = {.lex_state = 49, .external_lex_state = 6}, + [4002] = {.lex_state = 48, .external_lex_state = 6}, + [4003] = {.lex_state = 55, .external_lex_state = 2}, + [4004] = {.lex_state = 48, .external_lex_state = 6}, + [4005] = {.lex_state = 48, .external_lex_state = 5}, + [4006] = {.lex_state = 48, .external_lex_state = 5}, [4007] = {.lex_state = 49, .external_lex_state = 6}, - [4008] = {.lex_state = 65, .external_lex_state = 2}, - [4009] = {.lex_state = 48, .external_lex_state = 5}, - [4010] = {.lex_state = 65, .external_lex_state = 2}, + [4008] = {.lex_state = 49, .external_lex_state = 6}, + [4009] = {.lex_state = 49, .external_lex_state = 6}, + [4010] = {.lex_state = 48, .external_lex_state = 5}, [4011] = {.lex_state = 48, .external_lex_state = 5}, - [4012] = {.lex_state = 65, .external_lex_state = 2}, + [4012] = {.lex_state = 48, .external_lex_state = 5}, [4013] = {.lex_state = 48, .external_lex_state = 5}, [4014] = {.lex_state = 48, .external_lex_state = 5}, [4015] = {.lex_state = 48, .external_lex_state = 5}, - [4016] = {.lex_state = 49, .external_lex_state = 5}, + [4016] = {.lex_state = 48, .external_lex_state = 5}, [4017] = {.lex_state = 48, .external_lex_state = 5}, [4018] = {.lex_state = 48, .external_lex_state = 5}, [4019] = {.lex_state = 48, .external_lex_state = 5}, - [4020] = {.lex_state = 65, .external_lex_state = 2}, + [4020] = {.lex_state = 48, .external_lex_state = 5}, [4021] = {.lex_state = 48, .external_lex_state = 5}, - [4022] = {.lex_state = 49, .external_lex_state = 5}, - [4023] = {.lex_state = 49, .external_lex_state = 5}, - [4024] = {.lex_state = 49, .external_lex_state = 5}, - [4025] = {.lex_state = 49, .external_lex_state = 6}, + [4022] = {.lex_state = 48, .external_lex_state = 5}, + [4023] = {.lex_state = 48, .external_lex_state = 5}, + [4024] = {.lex_state = 48, .external_lex_state = 5}, + [4025] = {.lex_state = 48, .external_lex_state = 5}, [4026] = {.lex_state = 48, .external_lex_state = 5}, - [4027] = {.lex_state = 48, .external_lex_state = 5}, + [4027] = {.lex_state = 49, .external_lex_state = 6}, [4028] = {.lex_state = 48, .external_lex_state = 5}, - [4029] = {.lex_state = 49, .external_lex_state = 6}, - [4030] = {.lex_state = 65, .external_lex_state = 2}, - [4031] = {.lex_state = 48, .external_lex_state = 5}, - [4032] = {.lex_state = 48, .external_lex_state = 5}, - [4033] = {.lex_state = 49, .external_lex_state = 6}, - [4034] = {.lex_state = 48, .external_lex_state = 5}, - [4035] = {.lex_state = 49, .external_lex_state = 6}, - [4036] = {.lex_state = 49, .external_lex_state = 6}, - [4037] = {.lex_state = 65, .external_lex_state = 2}, - [4038] = {.lex_state = 49, .external_lex_state = 6}, - [4039] = {.lex_state = 49, .external_lex_state = 6}, - [4040] = {.lex_state = 49, .external_lex_state = 6}, - [4041] = {.lex_state = 49, .external_lex_state = 6}, - [4042] = {.lex_state = 48, .external_lex_state = 5}, - [4043] = {.lex_state = 48, .external_lex_state = 6}, - [4044] = {.lex_state = 49, .external_lex_state = 6}, - [4045] = {.lex_state = 49, .external_lex_state = 5}, - [4046] = {.lex_state = 49, .external_lex_state = 6}, - [4047] = {.lex_state = 49, .external_lex_state = 5}, - [4048] = {.lex_state = 65, .external_lex_state = 2}, - [4049] = {.lex_state = 81, .external_lex_state = 2}, - [4050] = {.lex_state = 48, .external_lex_state = 5}, - [4051] = {.lex_state = 48, .external_lex_state = 5}, - [4052] = {.lex_state = 49, .external_lex_state = 6}, - [4053] = {.lex_state = 48, .external_lex_state = 5}, - [4054] = {.lex_state = 81, .external_lex_state = 2}, - [4055] = {.lex_state = 65, .external_lex_state = 2}, - [4056] = {.lex_state = 49, .external_lex_state = 6}, - [4057] = {.lex_state = 48, .external_lex_state = 2}, - [4058] = {.lex_state = 48, .external_lex_state = 5}, - [4059] = {.lex_state = 48, .external_lex_state = 5}, - [4060] = {.lex_state = 48, .external_lex_state = 5}, - [4061] = {.lex_state = 48, .external_lex_state = 5}, - [4062] = {.lex_state = 48, .external_lex_state = 5}, - [4063] = {.lex_state = 48, .external_lex_state = 5}, + [4029] = {.lex_state = 48, .external_lex_state = 5}, + [4030] = {.lex_state = 55, .external_lex_state = 2}, + [4031] = {.lex_state = 48, .external_lex_state = 2}, + [4032] = {.lex_state = 83, .external_lex_state = 2}, + [4033] = {.lex_state = 48, .external_lex_state = 6}, + [4034] = {.lex_state = 83, .external_lex_state = 2}, + [4035] = {.lex_state = 48, .external_lex_state = 5}, + [4036] = {.lex_state = 83, .external_lex_state = 2}, + [4037] = {.lex_state = 81, .external_lex_state = 2}, + [4038] = {.lex_state = 83, .external_lex_state = 2}, + [4039] = {.lex_state = 406, .external_lex_state = 5}, + [4040] = {.lex_state = 83, .external_lex_state = 2}, + [4041] = {.lex_state = 55, .external_lex_state = 2}, + [4042] = {.lex_state = 81, .external_lex_state = 2}, + [4043] = {.lex_state = 49, .external_lex_state = 5}, + [4044] = {.lex_state = 48, .external_lex_state = 6}, + [4045] = {.lex_state = 81, .external_lex_state = 2}, + [4046] = {.lex_state = 83, .external_lex_state = 2}, + [4047] = {.lex_state = 55, .external_lex_state = 2}, + [4048] = {.lex_state = 49, .external_lex_state = 5}, + [4049] = {.lex_state = 83, .external_lex_state = 2}, + [4050] = {.lex_state = 48, .external_lex_state = 6}, + [4051] = {.lex_state = 406, .external_lex_state = 5}, + [4052] = {.lex_state = 83, .external_lex_state = 2}, + [4053] = {.lex_state = 48, .external_lex_state = 6}, + [4054] = {.lex_state = 83, .external_lex_state = 2}, + [4055] = {.lex_state = 406, .external_lex_state = 5}, + [4056] = {.lex_state = 83, .external_lex_state = 2}, + [4057] = {.lex_state = 81, .external_lex_state = 2}, + [4058] = {.lex_state = 57, .external_lex_state = 2}, + [4059] = {.lex_state = 83, .external_lex_state = 2}, + [4060] = {.lex_state = 83, .external_lex_state = 2}, + [4061] = {.lex_state = 83, .external_lex_state = 2}, + [4062] = {.lex_state = 83, .external_lex_state = 2}, + [4063] = {.lex_state = 83, .external_lex_state = 2}, [4064] = {.lex_state = 48, .external_lex_state = 5}, - [4065] = {.lex_state = 65, .external_lex_state = 2}, - [4066] = {.lex_state = 48, .external_lex_state = 5}, - [4067] = {.lex_state = 55, .external_lex_state = 2}, + [4065] = {.lex_state = 83, .external_lex_state = 2}, + [4066] = {.lex_state = 83, .external_lex_state = 2}, + [4067] = {.lex_state = 48, .external_lex_state = 6}, [4068] = {.lex_state = 48, .external_lex_state = 5}, - [4069] = {.lex_state = 48, .external_lex_state = 5}, - [4070] = {.lex_state = 48, .external_lex_state = 5}, - [4071] = {.lex_state = 48, .external_lex_state = 5}, - [4072] = {.lex_state = 48, .external_lex_state = 5}, - [4073] = {.lex_state = 81, .external_lex_state = 2}, - [4074] = {.lex_state = 81, .external_lex_state = 2}, - [4075] = {.lex_state = 48, .external_lex_state = 5}, + [4069] = {.lex_state = 48, .external_lex_state = 6}, + [4070] = {.lex_state = 406, .external_lex_state = 5}, + [4071] = {.lex_state = 49, .external_lex_state = 5}, + [4072] = {.lex_state = 49, .external_lex_state = 5}, + [4073] = {.lex_state = 48, .external_lex_state = 2}, + [4074] = {.lex_state = 48, .external_lex_state = 2}, + [4075] = {.lex_state = 48, .external_lex_state = 2}, [4076] = {.lex_state = 48, .external_lex_state = 5}, [4077] = {.lex_state = 48, .external_lex_state = 5}, - [4078] = {.lex_state = 48, .external_lex_state = 5}, - [4079] = {.lex_state = 48, .external_lex_state = 5}, - [4080] = {.lex_state = 48, .external_lex_state = 5}, - [4081] = {.lex_state = 48, .external_lex_state = 5}, - [4082] = {.lex_state = 48, .external_lex_state = 5}, - [4083] = {.lex_state = 55, .external_lex_state = 2}, - [4084] = {.lex_state = 48, .external_lex_state = 5}, + [4078] = {.lex_state = 48, .external_lex_state = 6}, + [4079] = {.lex_state = 63, .external_lex_state = 2}, + [4080] = {.lex_state = 48, .external_lex_state = 2}, + [4081] = {.lex_state = 48, .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 = 48, .external_lex_state = 5}, - [4086] = {.lex_state = 48, .external_lex_state = 5}, - [4087] = {.lex_state = 48, .external_lex_state = 5}, - [4088] = {.lex_state = 48, .external_lex_state = 5}, - [4089] = {.lex_state = 48, .external_lex_state = 5}, - [4090] = {.lex_state = 48, .external_lex_state = 5}, - [4091] = {.lex_state = 81, .external_lex_state = 2}, + [4086] = {.lex_state = 48, .external_lex_state = 2}, + [4087] = {.lex_state = 81, .external_lex_state = 2}, + [4088] = {.lex_state = 49, .external_lex_state = 2}, + [4089] = {.lex_state = 81, .external_lex_state = 2}, + [4090] = {.lex_state = 55, .external_lex_state = 2}, + [4091] = {.lex_state = 48, .external_lex_state = 6}, [4092] = {.lex_state = 48, .external_lex_state = 5}, - [4093] = {.lex_state = 48, .external_lex_state = 5}, + [4093] = {.lex_state = 48, .external_lex_state = 6}, [4094] = {.lex_state = 48, .external_lex_state = 5}, - [4095] = {.lex_state = 48, .external_lex_state = 5}, - [4096] = {.lex_state = 48, .external_lex_state = 5}, - [4097] = {.lex_state = 48, .external_lex_state = 5}, - [4098] = {.lex_state = 48, .external_lex_state = 5}, - [4099] = {.lex_state = 48, .external_lex_state = 5}, - [4100] = {.lex_state = 48, .external_lex_state = 5}, - [4101] = {.lex_state = 48, .external_lex_state = 6}, - [4102] = {.lex_state = 48, .external_lex_state = 5}, - [4103] = {.lex_state = 48, .external_lex_state = 5}, - [4104] = {.lex_state = 48, .external_lex_state = 5}, - [4105] = {.lex_state = 48, .external_lex_state = 5}, - [4106] = {.lex_state = 55, .external_lex_state = 2}, - [4107] = {.lex_state = 55, .external_lex_state = 2}, - [4108] = {.lex_state = 48, .external_lex_state = 5}, + [4095] = {.lex_state = 48, .external_lex_state = 6}, + [4096] = {.lex_state = 48, .external_lex_state = 2}, + [4097] = {.lex_state = 48, .external_lex_state = 6}, + [4098] = {.lex_state = 48, .external_lex_state = 2}, + [4099] = {.lex_state = 48, .external_lex_state = 6}, + [4100] = {.lex_state = 48, .external_lex_state = 6}, + [4101] = {.lex_state = 48, .external_lex_state = 2}, + [4102] = {.lex_state = 49, .external_lex_state = 2}, + [4103] = {.lex_state = 48, .external_lex_state = 6}, + [4104] = {.lex_state = 48, .external_lex_state = 2}, + [4105] = {.lex_state = 48, .external_lex_state = 6}, + [4106] = {.lex_state = 48, .external_lex_state = 2}, + [4107] = {.lex_state = 49, .external_lex_state = 2}, + [4108] = {.lex_state = 48, .external_lex_state = 2}, [4109] = {.lex_state = 48, .external_lex_state = 5}, - [4110] = {.lex_state = 55, .external_lex_state = 2}, - [4111] = {.lex_state = 81, .external_lex_state = 2}, - [4112] = {.lex_state = 48, .external_lex_state = 5}, - [4113] = {.lex_state = 48, .external_lex_state = 5}, - [4114] = {.lex_state = 48, .external_lex_state = 5}, - [4115] = {.lex_state = 48, .external_lex_state = 5}, - [4116] = {.lex_state = 48, .external_lex_state = 5}, - [4117] = {.lex_state = 55, .external_lex_state = 2}, - [4118] = {.lex_state = 48, .external_lex_state = 5}, - [4119] = {.lex_state = 48, .external_lex_state = 5}, - [4120] = {.lex_state = 48, .external_lex_state = 5}, - [4121] = {.lex_state = 48, .external_lex_state = 5}, + [4110] = {.lex_state = 48, .external_lex_state = 6}, + [4111] = {.lex_state = 48, .external_lex_state = 2}, + [4112] = {.lex_state = 48, .external_lex_state = 6}, + [4113] = {.lex_state = 48, .external_lex_state = 6}, + [4114] = {.lex_state = 48, .external_lex_state = 2}, + [4115] = {.lex_state = 48, .external_lex_state = 6}, + [4116] = {.lex_state = 48, .external_lex_state = 2}, + [4117] = {.lex_state = 48, .external_lex_state = 5}, + [4118] = {.lex_state = 48, .external_lex_state = 6}, + [4119] = {.lex_state = 406, .external_lex_state = 5}, + [4120] = {.lex_state = 48, .external_lex_state = 2}, + [4121] = {.lex_state = 406, .external_lex_state = 5}, [4122] = {.lex_state = 48, .external_lex_state = 5}, - [4123] = {.lex_state = 48, .external_lex_state = 5}, - [4124] = {.lex_state = 48, .external_lex_state = 5}, + [4123] = {.lex_state = 48, .external_lex_state = 2}, + [4124] = {.lex_state = 48, .external_lex_state = 6}, [4125] = {.lex_state = 48, .external_lex_state = 5}, [4126] = {.lex_state = 48, .external_lex_state = 5}, - [4127] = {.lex_state = 48, .external_lex_state = 5}, - [4128] = {.lex_state = 48, .external_lex_state = 5}, - [4129] = {.lex_state = 48, .external_lex_state = 5}, - [4130] = {.lex_state = 48, .external_lex_state = 5}, - [4131] = {.lex_state = 49, .external_lex_state = 6}, - [4132] = {.lex_state = 48, .external_lex_state = 5}, - [4133] = {.lex_state = 48, .external_lex_state = 5}, - [4134] = {.lex_state = 48, .external_lex_state = 5}, - [4135] = {.lex_state = 48, .external_lex_state = 5}, - [4136] = {.lex_state = 48, .external_lex_state = 5}, - [4137] = {.lex_state = 48, .external_lex_state = 5}, - [4138] = {.lex_state = 48, .external_lex_state = 5}, - [4139] = {.lex_state = 48, .external_lex_state = 5}, - [4140] = {.lex_state = 48, .external_lex_state = 5}, - [4141] = {.lex_state = 48, .external_lex_state = 5}, - [4142] = {.lex_state = 48, .external_lex_state = 5}, + [4127] = {.lex_state = 49, .external_lex_state = 2}, + [4128] = {.lex_state = 48, .external_lex_state = 6}, + [4129] = {.lex_state = 48, .external_lex_state = 6}, + [4130] = {.lex_state = 48, .external_lex_state = 2}, + [4131] = {.lex_state = 63, .external_lex_state = 2}, + [4132] = {.lex_state = 49, .external_lex_state = 2}, + [4133] = {.lex_state = 48, .external_lex_state = 6}, + [4134] = {.lex_state = 63, .external_lex_state = 2}, + [4135] = {.lex_state = 48, .external_lex_state = 6}, + [4136] = {.lex_state = 48, .external_lex_state = 2}, + [4137] = {.lex_state = 55, .external_lex_state = 2}, + [4138] = {.lex_state = 48, .external_lex_state = 6}, + [4139] = {.lex_state = 48, .external_lex_state = 2}, + [4140] = {.lex_state = 48, .external_lex_state = 2}, + [4141] = {.lex_state = 48, .external_lex_state = 2}, + [4142] = {.lex_state = 49, .external_lex_state = 2}, [4143] = {.lex_state = 48, .external_lex_state = 5}, - [4144] = {.lex_state = 48, .external_lex_state = 5}, - [4145] = {.lex_state = 48, .external_lex_state = 5}, - [4146] = {.lex_state = 49, .external_lex_state = 6}, + [4144] = {.lex_state = 406, .external_lex_state = 5}, + [4145] = {.lex_state = 48, .external_lex_state = 2}, + [4146] = {.lex_state = 406, .external_lex_state = 5}, [4147] = {.lex_state = 48, .external_lex_state = 5}, - [4148] = {.lex_state = 49, .external_lex_state = 6}, - [4149] = {.lex_state = 49, .external_lex_state = 6}, - [4150] = {.lex_state = 48, .external_lex_state = 5}, - [4151] = {.lex_state = 48, .external_lex_state = 5}, - [4152] = {.lex_state = 48, .external_lex_state = 5}, - [4153] = {.lex_state = 48, .external_lex_state = 5}, - [4154] = {.lex_state = 48, .external_lex_state = 5}, - [4155] = {.lex_state = 48, .external_lex_state = 5}, - [4156] = {.lex_state = 48, .external_lex_state = 5}, - [4157] = {.lex_state = 49, .external_lex_state = 6}, + [4148] = {.lex_state = 48, .external_lex_state = 2}, + [4149] = {.lex_state = 48, .external_lex_state = 5}, + [4150] = {.lex_state = 406, .external_lex_state = 2}, + [4151] = {.lex_state = 48, .external_lex_state = 2}, + [4152] = {.lex_state = 48, .external_lex_state = 2}, + [4153] = {.lex_state = 48, .external_lex_state = 2}, + [4154] = {.lex_state = 48, .external_lex_state = 2}, + [4155] = {.lex_state = 48, .external_lex_state = 2}, + [4156] = {.lex_state = 48, .external_lex_state = 2}, + [4157] = {.lex_state = 48, .external_lex_state = 6}, [4158] = {.lex_state = 48, .external_lex_state = 5}, [4159] = {.lex_state = 48, .external_lex_state = 5}, - [4160] = {.lex_state = 49, .external_lex_state = 6}, + [4160] = {.lex_state = 48, .external_lex_state = 5}, [4161] = {.lex_state = 48, .external_lex_state = 5}, - [4162] = {.lex_state = 49, .external_lex_state = 6}, - [4163] = {.lex_state = 48, .external_lex_state = 5}, - [4164] = {.lex_state = 48, .external_lex_state = 6}, - [4165] = {.lex_state = 48, .external_lex_state = 5}, - [4166] = {.lex_state = 48, .external_lex_state = 5}, - [4167] = {.lex_state = 48, .external_lex_state = 6}, - [4168] = {.lex_state = 48, .external_lex_state = 5}, - [4169] = {.lex_state = 48, .external_lex_state = 5}, - [4170] = {.lex_state = 48, .external_lex_state = 6}, - [4171] = {.lex_state = 48, .external_lex_state = 5}, - [4172] = {.lex_state = 48, .external_lex_state = 5}, - [4173] = {.lex_state = 48, .external_lex_state = 5}, - [4174] = {.lex_state = 48, .external_lex_state = 5}, - [4175] = {.lex_state = 48, .external_lex_state = 5}, - [4176] = {.lex_state = 48, .external_lex_state = 5}, + [4162] = {.lex_state = 48, .external_lex_state = 6}, + [4163] = {.lex_state = 49, .external_lex_state = 2}, + [4164] = {.lex_state = 48, .external_lex_state = 5}, + [4165] = {.lex_state = 48, .external_lex_state = 2}, + [4166] = {.lex_state = 81, .external_lex_state = 2}, + [4167] = {.lex_state = 48, .external_lex_state = 2}, + [4168] = {.lex_state = 81, .external_lex_state = 2}, + [4169] = {.lex_state = 49, .external_lex_state = 2}, + [4170] = {.lex_state = 48, .external_lex_state = 5}, + [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 = 48, .external_lex_state = 2}, + [4176] = {.lex_state = 81, .external_lex_state = 2}, [4177] = {.lex_state = 48, .external_lex_state = 2}, [4178] = {.lex_state = 81, .external_lex_state = 2}, - [4179] = {.lex_state = 406, .external_lex_state = 5}, + [4179] = {.lex_state = 49, .external_lex_state = 2}, [4180] = {.lex_state = 48, .external_lex_state = 6}, - [4181] = {.lex_state = 48, .external_lex_state = 5}, - [4182] = {.lex_state = 83, .external_lex_state = 2}, - [4183] = {.lex_state = 83, .external_lex_state = 2}, - [4184] = {.lex_state = 83, .external_lex_state = 2}, - [4185] = {.lex_state = 49, .external_lex_state = 5}, - [4186] = {.lex_state = 83, .external_lex_state = 2}, - [4187] = {.lex_state = 83, .external_lex_state = 2}, - [4188] = {.lex_state = 83, .external_lex_state = 2}, - [4189] = {.lex_state = 49, .external_lex_state = 5}, - [4190] = {.lex_state = 83, .external_lex_state = 2}, - [4191] = {.lex_state = 55, .external_lex_state = 2}, + [4181] = {.lex_state = 48, .external_lex_state = 2}, + [4182] = {.lex_state = 81, .external_lex_state = 2}, + [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 = 48, .external_lex_state = 6}, + [4188] = {.lex_state = 81, .external_lex_state = 2}, + [4189] = {.lex_state = 48, .external_lex_state = 5}, + [4190] = {.lex_state = 48, .external_lex_state = 5}, + [4191] = {.lex_state = 48, .external_lex_state = 5}, [4192] = {.lex_state = 48, .external_lex_state = 6}, - [4193] = {.lex_state = 406, .external_lex_state = 5}, + [4193] = {.lex_state = 48, .external_lex_state = 2}, [4194] = {.lex_state = 48, .external_lex_state = 5}, - [4195] = {.lex_state = 83, .external_lex_state = 2}, + [4195] = {.lex_state = 48, .external_lex_state = 2}, [4196] = {.lex_state = 55, .external_lex_state = 2}, - [4197] = {.lex_state = 48, .external_lex_state = 6}, - [4198] = {.lex_state = 48, .external_lex_state = 6}, - [4199] = {.lex_state = 81, .external_lex_state = 2}, - [4200] = {.lex_state = 406, .external_lex_state = 5}, - [4201] = {.lex_state = 81, .external_lex_state = 2}, - [4202] = {.lex_state = 83, .external_lex_state = 2}, - [4203] = {.lex_state = 83, .external_lex_state = 2}, - [4204] = {.lex_state = 83, .external_lex_state = 2}, - [4205] = {.lex_state = 83, .external_lex_state = 2}, - [4206] = {.lex_state = 83, .external_lex_state = 2}, - [4207] = {.lex_state = 83, .external_lex_state = 2}, - [4208] = {.lex_state = 83, .external_lex_state = 2}, - [4209] = {.lex_state = 57, .external_lex_state = 2}, - [4210] = {.lex_state = 55, .external_lex_state = 2}, - [4211] = {.lex_state = 48, .external_lex_state = 6}, - [4212] = {.lex_state = 83, .external_lex_state = 2}, - [4213] = {.lex_state = 83, .external_lex_state = 2}, + [4197] = {.lex_state = 63, .external_lex_state = 2}, + [4198] = {.lex_state = 48, .external_lex_state = 5}, + [4199] = {.lex_state = 48, .external_lex_state = 6}, + [4200] = {.lex_state = 48, .external_lex_state = 6}, + [4201] = {.lex_state = 48, .external_lex_state = 5}, + [4202] = {.lex_state = 48, .external_lex_state = 5}, + [4203] = {.lex_state = 81, .external_lex_state = 2}, + [4204] = {.lex_state = 406, .external_lex_state = 5}, + [4205] = {.lex_state = 48, .external_lex_state = 6}, + [4206] = {.lex_state = 48, .external_lex_state = 2}, + [4207] = {.lex_state = 49, .external_lex_state = 2}, + [4208] = {.lex_state = 48, .external_lex_state = 6}, + [4209] = {.lex_state = 48, .external_lex_state = 6}, + [4210] = {.lex_state = 48, .external_lex_state = 5}, + [4211] = {.lex_state = 48, .external_lex_state = 2}, + [4212] = {.lex_state = 48, .external_lex_state = 2}, + [4213] = {.lex_state = 48, .external_lex_state = 2}, [4214] = {.lex_state = 81, .external_lex_state = 2}, - [4215] = {.lex_state = 48, .external_lex_state = 5}, - [4216] = {.lex_state = 81, .external_lex_state = 2}, - [4217] = {.lex_state = 48, .external_lex_state = 5}, - [4218] = {.lex_state = 48, .external_lex_state = 6}, - [4219] = {.lex_state = 48, .external_lex_state = 6}, - [4220] = {.lex_state = 48, .external_lex_state = 6}, + [4215] = {.lex_state = 63, .external_lex_state = 2}, + [4216] = {.lex_state = 48, .external_lex_state = 5}, + [4217] = {.lex_state = 48, .external_lex_state = 2}, + [4218] = {.lex_state = 48, .external_lex_state = 5}, + [4219] = {.lex_state = 48, .external_lex_state = 5}, + [4220] = {.lex_state = 48, .external_lex_state = 5}, [4221] = {.lex_state = 48, .external_lex_state = 5}, - [4222] = {.lex_state = 48, .external_lex_state = 6}, + [4222] = {.lex_state = 81, .external_lex_state = 2}, [4223] = {.lex_state = 48, .external_lex_state = 2}, - [4224] = {.lex_state = 48, .external_lex_state = 6}, - [4225] = {.lex_state = 48, .external_lex_state = 2}, - [4226] = {.lex_state = 48, .external_lex_state = 2}, - [4227] = {.lex_state = 48, .external_lex_state = 5}, - [4228] = {.lex_state = 48, .external_lex_state = 2}, - [4229] = {.lex_state = 48, .external_lex_state = 2}, - [4230] = {.lex_state = 63, .external_lex_state = 2}, - [4231] = {.lex_state = 48, .external_lex_state = 2}, - [4232] = {.lex_state = 81, .external_lex_state = 2}, + [4224] = {.lex_state = 48, .external_lex_state = 5}, + [4225] = {.lex_state = 48, .external_lex_state = 5}, + [4226] = {.lex_state = 48, .external_lex_state = 5}, + [4227] = {.lex_state = 81, .external_lex_state = 2}, + [4228] = {.lex_state = 48, .external_lex_state = 6}, + [4229] = {.lex_state = 48, .external_lex_state = 6}, + [4230] = {.lex_state = 48, .external_lex_state = 2}, + [4231] = {.lex_state = 48, .external_lex_state = 6}, + [4232] = {.lex_state = 48, .external_lex_state = 6}, [4233] = {.lex_state = 48, .external_lex_state = 5}, - [4234] = {.lex_state = 55, .external_lex_state = 2}, - [4235] = {.lex_state = 81, .external_lex_state = 2}, - [4236] = {.lex_state = 48, .external_lex_state = 2}, + [4234] = {.lex_state = 48, .external_lex_state = 2}, + [4235] = {.lex_state = 48, .external_lex_state = 6}, + [4236] = {.lex_state = 48, .external_lex_state = 5}, [4237] = {.lex_state = 48, .external_lex_state = 6}, [4238] = {.lex_state = 48, .external_lex_state = 2}, - [4239] = {.lex_state = 48, .external_lex_state = 6}, + [4239] = {.lex_state = 406, .external_lex_state = 6}, [4240] = {.lex_state = 48, .external_lex_state = 6}, [4241] = {.lex_state = 48, .external_lex_state = 6}, - [4242] = {.lex_state = 48, .external_lex_state = 6}, + [4242] = {.lex_state = 49, .external_lex_state = 2}, [4243] = {.lex_state = 48, .external_lex_state = 6}, [4244] = {.lex_state = 48, .external_lex_state = 6}, - [4245] = {.lex_state = 48, .external_lex_state = 6}, - [4246] = {.lex_state = 48, .external_lex_state = 6}, - [4247] = {.lex_state = 48, .external_lex_state = 2}, - [4248] = {.lex_state = 81, .external_lex_state = 2}, - [4249] = {.lex_state = 81, .external_lex_state = 2}, - [4250] = {.lex_state = 63, .external_lex_state = 2}, - [4251] = {.lex_state = 48, .external_lex_state = 2}, - [4252] = {.lex_state = 48, .external_lex_state = 5}, + [4245] = {.lex_state = 81, .external_lex_state = 2}, + [4246] = {.lex_state = 81, .external_lex_state = 2}, + [4247] = {.lex_state = 48, .external_lex_state = 6}, + [4248] = {.lex_state = 48, .external_lex_state = 2}, + [4249] = {.lex_state = 48, .external_lex_state = 6}, + [4250] = {.lex_state = 48, .external_lex_state = 2}, + [4251] = {.lex_state = 49, .external_lex_state = 2}, + [4252] = {.lex_state = 48, .external_lex_state = 6}, [4253] = {.lex_state = 48, .external_lex_state = 6}, - [4254] = {.lex_state = 81, .external_lex_state = 2}, - [4255] = {.lex_state = 81, .external_lex_state = 2}, - [4256] = {.lex_state = 406, .external_lex_state = 2}, + [4254] = {.lex_state = 48, .external_lex_state = 2}, + [4255] = {.lex_state = 406, .external_lex_state = 6}, + [4256] = {.lex_state = 48, .external_lex_state = 6}, [4257] = {.lex_state = 81, .external_lex_state = 2}, - [4258] = {.lex_state = 49, .external_lex_state = 2}, - [4259] = {.lex_state = 49, .external_lex_state = 2}, - [4260] = {.lex_state = 48, .external_lex_state = 5}, - [4261] = {.lex_state = 63, .external_lex_state = 2}, - [4262] = {.lex_state = 48, .external_lex_state = 6}, - [4263] = {.lex_state = 48, .external_lex_state = 5}, - [4264] = {.lex_state = 81, .external_lex_state = 2}, - [4265] = {.lex_state = 48, .external_lex_state = 2}, - [4266] = {.lex_state = 406, .external_lex_state = 6}, - [4267] = {.lex_state = 48, .external_lex_state = 2}, - [4268] = {.lex_state = 81, .external_lex_state = 2}, - [4269] = {.lex_state = 48, .external_lex_state = 5}, - [4270] = {.lex_state = 48, .external_lex_state = 2}, - [4271] = {.lex_state = 48, .external_lex_state = 2}, - [4272] = {.lex_state = 48, .external_lex_state = 6}, - [4273] = {.lex_state = 48, .external_lex_state = 6}, + [4258] = {.lex_state = 81, .external_lex_state = 2}, + [4259] = {.lex_state = 81, .external_lex_state = 2}, + [4260] = {.lex_state = 81, .external_lex_state = 2}, + [4261] = {.lex_state = 81, .external_lex_state = 2}, + [4262] = {.lex_state = 81, .external_lex_state = 2}, + [4263] = {.lex_state = 48, .external_lex_state = 6}, + [4264] = {.lex_state = 48, .external_lex_state = 2}, + [4265] = {.lex_state = 81, .external_lex_state = 2}, + [4266] = {.lex_state = 48, .external_lex_state = 6}, + [4267] = {.lex_state = 48, .external_lex_state = 6}, + [4268] = {.lex_state = 48, .external_lex_state = 2}, + [4269] = {.lex_state = 48, .external_lex_state = 2}, + [4270] = {.lex_state = 81, .external_lex_state = 2}, + [4271] = {.lex_state = 48, .external_lex_state = 6}, + [4272] = {.lex_state = 48, .external_lex_state = 2}, + [4273] = {.lex_state = 81, .external_lex_state = 2}, [4274] = {.lex_state = 48, .external_lex_state = 6}, - [4275] = {.lex_state = 49, .external_lex_state = 2}, - [4276] = {.lex_state = 48, .external_lex_state = 6}, + [4275] = {.lex_state = 48, .external_lex_state = 6}, + [4276] = {.lex_state = 48, .external_lex_state = 2}, [4277] = {.lex_state = 48, .external_lex_state = 6}, [4278] = {.lex_state = 48, .external_lex_state = 6}, [4279] = {.lex_state = 48, .external_lex_state = 6}, [4280] = {.lex_state = 48, .external_lex_state = 6}, - [4281] = {.lex_state = 49, .external_lex_state = 2}, + [4281] = {.lex_state = 81, .external_lex_state = 2}, [4282] = {.lex_state = 48, .external_lex_state = 5}, - [4283] = {.lex_state = 63, .external_lex_state = 2}, - [4284] = {.lex_state = 48, .external_lex_state = 2}, - [4285] = {.lex_state = 81, .external_lex_state = 2}, - [4286] = {.lex_state = 48, .external_lex_state = 5}, - [4287] = {.lex_state = 48, .external_lex_state = 6}, - [4288] = {.lex_state = 48, .external_lex_state = 6}, - [4289] = {.lex_state = 48, .external_lex_state = 6}, - [4290] = {.lex_state = 48, .external_lex_state = 6}, - [4291] = {.lex_state = 81, .external_lex_state = 2}, - [4292] = {.lex_state = 48, .external_lex_state = 6}, + [4283] = {.lex_state = 48, .external_lex_state = 5}, + [4284] = {.lex_state = 48, .external_lex_state = 6}, + [4285] = {.lex_state = 48, .external_lex_state = 5}, + [4286] = {.lex_state = 48, .external_lex_state = 6}, + [4287] = {.lex_state = 48, .external_lex_state = 2}, + [4288] = {.lex_state = 63, .external_lex_state = 2}, + [4289] = {.lex_state = 48, .external_lex_state = 5}, + [4290] = {.lex_state = 49, .external_lex_state = 2}, + [4291] = {.lex_state = 48, .external_lex_state = 2}, + [4292] = {.lex_state = 48, .external_lex_state = 2}, [4293] = {.lex_state = 48, .external_lex_state = 6}, - [4294] = {.lex_state = 48, .external_lex_state = 2}, - [4295] = {.lex_state = 81, .external_lex_state = 2}, + [4294] = {.lex_state = 48, .external_lex_state = 6}, + [4295] = {.lex_state = 48, .external_lex_state = 5}, [4296] = {.lex_state = 48, .external_lex_state = 5}, - [4297] = {.lex_state = 55, .external_lex_state = 2}, - [4298] = {.lex_state = 48, .external_lex_state = 5}, - [4299] = {.lex_state = 48, .external_lex_state = 6}, - [4300] = {.lex_state = 48, .external_lex_state = 2}, - [4301] = {.lex_state = 48, .external_lex_state = 2}, - [4302] = {.lex_state = 48, .external_lex_state = 5}, - [4303] = {.lex_state = 48, .external_lex_state = 2}, - [4304] = {.lex_state = 48, .external_lex_state = 2}, - [4305] = {.lex_state = 48, .external_lex_state = 2}, - [4306] = {.lex_state = 55, .external_lex_state = 2}, - [4307] = {.lex_state = 48, .external_lex_state = 2}, - [4308] = {.lex_state = 48, .external_lex_state = 2}, - [4309] = {.lex_state = 48, .external_lex_state = 2}, - [4310] = {.lex_state = 48, .external_lex_state = 2}, - [4311] = {.lex_state = 48, .external_lex_state = 2}, - [4312] = {.lex_state = 49, .external_lex_state = 2}, - [4313] = {.lex_state = 48, .external_lex_state = 5}, - [4314] = {.lex_state = 81, .external_lex_state = 2}, - [4315] = {.lex_state = 81, .external_lex_state = 2}, - [4316] = {.lex_state = 81, .external_lex_state = 2}, - [4317] = {.lex_state = 48, .external_lex_state = 2}, - [4318] = {.lex_state = 49, .external_lex_state = 2}, - [4319] = {.lex_state = 81, .external_lex_state = 2}, - [4320] = {.lex_state = 48, .external_lex_state = 2}, - [4321] = {.lex_state = 81, .external_lex_state = 2}, - [4322] = {.lex_state = 48, .external_lex_state = 5}, - [4323] = {.lex_state = 81, .external_lex_state = 2}, - [4324] = {.lex_state = 81, .external_lex_state = 2}, - [4325] = {.lex_state = 48, .external_lex_state = 5}, - [4326] = {.lex_state = 48, .external_lex_state = 2}, - [4327] = {.lex_state = 48, .external_lex_state = 2}, - [4328] = {.lex_state = 81, .external_lex_state = 2}, - [4329] = {.lex_state = 48, .external_lex_state = 2}, - [4330] = {.lex_state = 81, .external_lex_state = 2}, - [4331] = {.lex_state = 48, .external_lex_state = 6}, - [4332] = {.lex_state = 48, .external_lex_state = 6}, - [4333] = {.lex_state = 48, .external_lex_state = 6}, - [4334] = {.lex_state = 48, .external_lex_state = 6}, - [4335] = {.lex_state = 48, .external_lex_state = 5}, - [4336] = {.lex_state = 48, .external_lex_state = 5}, - [4337] = {.lex_state = 49, .external_lex_state = 5}, - [4338] = {.lex_state = 63, .external_lex_state = 2}, - [4339] = {.lex_state = 48, .external_lex_state = 6}, - [4340] = {.lex_state = 48, .external_lex_state = 6}, - [4341] = {.lex_state = 81, .external_lex_state = 2}, - [4342] = {.lex_state = 81, .external_lex_state = 2}, - [4343] = {.lex_state = 48, .external_lex_state = 6}, - [4344] = {.lex_state = 48, .external_lex_state = 6}, - [4345] = {.lex_state = 48, .external_lex_state = 2}, - [4346] = {.lex_state = 48, .external_lex_state = 6}, - [4347] = {.lex_state = 49, .external_lex_state = 2}, - [4348] = {.lex_state = 48, .external_lex_state = 5}, - [4349] = {.lex_state = 48, .external_lex_state = 6}, - [4350] = {.lex_state = 48, .external_lex_state = 6}, - [4351] = {.lex_state = 48, .external_lex_state = 5}, - [4352] = {.lex_state = 48, .external_lex_state = 2}, - [4353] = {.lex_state = 48, .external_lex_state = 5}, - [4354] = {.lex_state = 81, .external_lex_state = 2}, - [4355] = {.lex_state = 48, .external_lex_state = 2}, - [4356] = {.lex_state = 48, .external_lex_state = 6}, - [4357] = {.lex_state = 48, .external_lex_state = 2}, - [4358] = {.lex_state = 48, .external_lex_state = 2}, - [4359] = {.lex_state = 48, .external_lex_state = 6}, - [4360] = {.lex_state = 48, .external_lex_state = 2}, - [4361] = {.lex_state = 48, .external_lex_state = 6}, - [4362] = {.lex_state = 49, .external_lex_state = 2}, - [4363] = {.lex_state = 48, .external_lex_state = 6}, - [4364] = {.lex_state = 81, .external_lex_state = 2}, - [4365] = {.lex_state = 48, .external_lex_state = 2}, - [4366] = {.lex_state = 48, .external_lex_state = 5}, - [4367] = {.lex_state = 81, .external_lex_state = 2}, - [4368] = {.lex_state = 48, .external_lex_state = 2}, - [4369] = {.lex_state = 49, .external_lex_state = 2}, - [4370] = {.lex_state = 48, .external_lex_state = 2}, - [4371] = {.lex_state = 48, .external_lex_state = 5}, - [4372] = {.lex_state = 48, .external_lex_state = 5}, - [4373] = {.lex_state = 81, .external_lex_state = 2}, - [4374] = {.lex_state = 81, .external_lex_state = 2}, - [4375] = {.lex_state = 48, .external_lex_state = 2}, - [4376] = {.lex_state = 48, .external_lex_state = 2}, - [4377] = {.lex_state = 48, .external_lex_state = 6}, - [4378] = {.lex_state = 48, .external_lex_state = 5}, - [4379] = {.lex_state = 406, .external_lex_state = 5}, - [4380] = {.lex_state = 48, .external_lex_state = 2}, - [4381] = {.lex_state = 48, .external_lex_state = 2}, - [4382] = {.lex_state = 48, .external_lex_state = 6}, - [4383] = {.lex_state = 48, .external_lex_state = 5}, - [4384] = {.lex_state = 48, .external_lex_state = 6}, - [4385] = {.lex_state = 48, .external_lex_state = 5}, - [4386] = {.lex_state = 81, .external_lex_state = 2}, - [4387] = {.lex_state = 49, .external_lex_state = 5}, - [4388] = {.lex_state = 48, .external_lex_state = 2}, - [4389] = {.lex_state = 48, .external_lex_state = 5}, - [4390] = {.lex_state = 48, .external_lex_state = 2}, - [4391] = {.lex_state = 49, .external_lex_state = 2}, - [4392] = {.lex_state = 48, .external_lex_state = 2}, - [4393] = {.lex_state = 48, .external_lex_state = 5}, - [4394] = {.lex_state = 48, .external_lex_state = 2}, - [4395] = {.lex_state = 48, .external_lex_state = 6}, - [4396] = {.lex_state = 48, .external_lex_state = 5}, - [4397] = {.lex_state = 48, .external_lex_state = 2}, - [4398] = {.lex_state = 63, .external_lex_state = 2}, - [4399] = {.lex_state = 49, .external_lex_state = 2}, - [4400] = {.lex_state = 406, .external_lex_state = 6}, - [4401] = {.lex_state = 48, .external_lex_state = 5}, - [4402] = {.lex_state = 48, .external_lex_state = 5}, - [4403] = {.lex_state = 81, .external_lex_state = 2}, - [4404] = {.lex_state = 48, .external_lex_state = 2}, - [4405] = {.lex_state = 48, .external_lex_state = 5}, - [4406] = {.lex_state = 48, .external_lex_state = 2}, - [4407] = {.lex_state = 48, .external_lex_state = 2}, - [4408] = {.lex_state = 48, .external_lex_state = 5}, - [4409] = {.lex_state = 48, .external_lex_state = 5}, - [4410] = {.lex_state = 48, .external_lex_state = 5}, - [4411] = {.lex_state = 48, .external_lex_state = 2}, - [4412] = {.lex_state = 81, .external_lex_state = 2}, - [4413] = {.lex_state = 48, .external_lex_state = 2}, - [4414] = {.lex_state = 48, .external_lex_state = 2}, - [4415] = {.lex_state = 48, .external_lex_state = 5}, - [4416] = {.lex_state = 81, .external_lex_state = 2}, - [4417] = {.lex_state = 81, .external_lex_state = 2}, - [4418] = {.lex_state = 48, .external_lex_state = 5}, + [4297] = {.lex_state = 48, .external_lex_state = 6}, + [4298] = {.lex_state = 48, .external_lex_state = 6}, + [4299] = {.lex_state = 81, .external_lex_state = 2}, + [4300] = {.lex_state = 81, .external_lex_state = 2}, + [4301] = {.lex_state = 75, .external_lex_state = 2}, + [4302] = {.lex_state = 85, .external_lex_state = 2}, + [4303] = {.lex_state = 48, .external_lex_state = 5}, + [4304] = {.lex_state = 48, .external_lex_state = 5}, + [4305] = {.lex_state = 48, .external_lex_state = 5}, + [4306] = {.lex_state = 75, .external_lex_state = 2}, + [4307] = {.lex_state = 75, .external_lex_state = 2}, + [4308] = {.lex_state = 48, .external_lex_state = 5}, + [4309] = {.lex_state = 48, .external_lex_state = 6}, + [4310] = {.lex_state = 406, .external_lex_state = 6}, + [4311] = {.lex_state = 406, .external_lex_state = 7}, + [4312] = {.lex_state = 75, .external_lex_state = 2}, + [4313] = {.lex_state = 75, .external_lex_state = 2}, + [4314] = {.lex_state = 85, .external_lex_state = 2}, + [4315] = {.lex_state = 85, .external_lex_state = 2}, + [4316] = {.lex_state = 75, .external_lex_state = 2}, + [4317] = {.lex_state = 85, .external_lex_state = 2}, + [4318] = {.lex_state = 75, .external_lex_state = 2}, + [4319] = {.lex_state = 75, .external_lex_state = 2}, + [4320] = {.lex_state = 91, .external_lex_state = 2}, + [4321] = {.lex_state = 406, .external_lex_state = 7}, + [4322] = {.lex_state = 406, .external_lex_state = 5}, + [4323] = {.lex_state = 85, .external_lex_state = 2}, + [4324] = {.lex_state = 91, .external_lex_state = 2}, + [4325] = {.lex_state = 55, .external_lex_state = 2}, + [4326] = {.lex_state = 406, .external_lex_state = 7}, + [4327] = {.lex_state = 406, .external_lex_state = 7}, + [4328] = {.lex_state = 406, .external_lex_state = 7}, + [4329] = {.lex_state = 406, .external_lex_state = 5}, + [4330] = {.lex_state = 406, .external_lex_state = 5}, + [4331] = {.lex_state = 406, .external_lex_state = 5}, + [4332] = {.lex_state = 406, .external_lex_state = 5}, + [4333] = {.lex_state = 75, .external_lex_state = 2}, + [4334] = {.lex_state = 406, .external_lex_state = 7}, + [4335] = {.lex_state = 406, .external_lex_state = 7}, + [4336] = {.lex_state = 406, .external_lex_state = 7}, + [4337] = {.lex_state = 48, .external_lex_state = 2}, + [4338] = {.lex_state = 48, .external_lex_state = 2}, + [4339] = {.lex_state = 85, .external_lex_state = 2}, + [4340] = {.lex_state = 406, .external_lex_state = 5}, + [4341] = {.lex_state = 406, .external_lex_state = 2}, + [4342] = {.lex_state = 406, .external_lex_state = 5}, + [4343] = {.lex_state = 406, .external_lex_state = 5}, + [4344] = {.lex_state = 406, .external_lex_state = 2}, + [4345] = {.lex_state = 406, .external_lex_state = 5}, + [4346] = {.lex_state = 406, .external_lex_state = 2}, + [4347] = {.lex_state = 406, .external_lex_state = 2}, + [4348] = {.lex_state = 406, .external_lex_state = 2}, + [4349] = {.lex_state = 406, .external_lex_state = 5}, + [4350] = {.lex_state = 406, .external_lex_state = 5}, + [4351] = {.lex_state = 406, .external_lex_state = 2}, + [4352] = {.lex_state = 406, .external_lex_state = 2}, + [4353] = {.lex_state = 406, .external_lex_state = 5}, + [4354] = {.lex_state = 406, .external_lex_state = 5}, + [4355] = {.lex_state = 406, .external_lex_state = 5}, + [4356] = {.lex_state = 406, .external_lex_state = 5}, + [4357] = {.lex_state = 406, .external_lex_state = 5}, + [4358] = {.lex_state = 406, .external_lex_state = 5}, + [4359] = {.lex_state = 406, .external_lex_state = 5}, + [4360] = {.lex_state = 406, .external_lex_state = 5}, + [4361] = {.lex_state = 406, .external_lex_state = 5}, + [4362] = {.lex_state = 406, .external_lex_state = 5}, + [4363] = {.lex_state = 406, .external_lex_state = 2}, + [4364] = {.lex_state = 406, .external_lex_state = 5}, + [4365] = {.lex_state = 406, .external_lex_state = 5}, + [4366] = {.lex_state = 406, .external_lex_state = 5}, + [4367] = {.lex_state = 406, .external_lex_state = 5}, + [4368] = {.lex_state = 406, .external_lex_state = 5}, + [4369] = {.lex_state = 406, .external_lex_state = 5}, + [4370] = {.lex_state = 88, .external_lex_state = 2}, + [4371] = {.lex_state = 406, .external_lex_state = 5}, + [4372] = {.lex_state = 406, .external_lex_state = 2}, + [4373] = {.lex_state = 406, .external_lex_state = 5}, + [4374] = {.lex_state = 406, .external_lex_state = 5}, + [4375] = {.lex_state = 406, .external_lex_state = 5}, + [4376] = {.lex_state = 406, .external_lex_state = 5}, + [4377] = {.lex_state = 406, .external_lex_state = 5}, + [4378] = {.lex_state = 406, .external_lex_state = 5}, + [4379] = {.lex_state = 50, .external_lex_state = 2}, + [4380] = {.lex_state = 75, .external_lex_state = 2}, + [4381] = {.lex_state = 50, .external_lex_state = 2}, + [4382] = {.lex_state = 50, .external_lex_state = 2}, + [4383] = {.lex_state = 75, .external_lex_state = 2}, + [4384] = {.lex_state = 406, .external_lex_state = 5}, + [4385] = {.lex_state = 406, .external_lex_state = 2}, + [4386] = {.lex_state = 406, .external_lex_state = 5}, + [4387] = {.lex_state = 406, .external_lex_state = 5}, + [4388] = {.lex_state = 88, .external_lex_state = 2}, + [4389] = {.lex_state = 49, .external_lex_state = 5}, + [4390] = {.lex_state = 406, .external_lex_state = 2}, + [4391] = {.lex_state = 406, .external_lex_state = 5}, + [4392] = {.lex_state = 406, .external_lex_state = 2}, + [4393] = {.lex_state = 406, .external_lex_state = 5}, + [4394] = {.lex_state = 406, .external_lex_state = 2}, + [4395] = {.lex_state = 406, .external_lex_state = 2}, + [4396] = {.lex_state = 406, .external_lex_state = 2}, + [4397] = {.lex_state = 49, .external_lex_state = 5}, + [4398] = {.lex_state = 406, .external_lex_state = 5}, + [4399] = {.lex_state = 406, .external_lex_state = 2}, + [4400] = {.lex_state = 406, .external_lex_state = 5}, + [4401] = {.lex_state = 406, .external_lex_state = 5}, + [4402] = {.lex_state = 406, .external_lex_state = 5}, + [4403] = {.lex_state = 48, .external_lex_state = 2}, + [4404] = {.lex_state = 406, .external_lex_state = 5}, + [4405] = {.lex_state = 406, .external_lex_state = 5}, + [4406] = {.lex_state = 406, .external_lex_state = 5}, + [4407] = {.lex_state = 406, .external_lex_state = 5}, + [4408] = {.lex_state = 49, .external_lex_state = 5}, + [4409] = {.lex_state = 50, .external_lex_state = 2}, + [4410] = {.lex_state = 406, .external_lex_state = 5}, + [4411] = {.lex_state = 75, .external_lex_state = 2}, + [4412] = {.lex_state = 406, .external_lex_state = 2}, + [4413] = {.lex_state = 88, .external_lex_state = 2}, + [4414] = {.lex_state = 406, .external_lex_state = 5}, + [4415] = {.lex_state = 406, .external_lex_state = 2}, + [4416] = {.lex_state = 406, .external_lex_state = 5}, + [4417] = {.lex_state = 406, .external_lex_state = 5}, + [4418] = {.lex_state = 406, .external_lex_state = 2}, [4419] = {.lex_state = 81, .external_lex_state = 2}, - [4420] = {.lex_state = 48, .external_lex_state = 2}, - [4421] = {.lex_state = 48, .external_lex_state = 5}, - [4422] = {.lex_state = 406, .external_lex_state = 5}, + [4420] = {.lex_state = 406, .external_lex_state = 2}, + [4421] = {.lex_state = 406, .external_lex_state = 2}, + [4422] = {.lex_state = 406, .external_lex_state = 2}, [4423] = {.lex_state = 406, .external_lex_state = 5}, - [4424] = {.lex_state = 48, .external_lex_state = 6}, - [4425] = {.lex_state = 48, .external_lex_state = 6}, - [4426] = {.lex_state = 49, .external_lex_state = 2}, - [4427] = {.lex_state = 48, .external_lex_state = 6}, - [4428] = {.lex_state = 48, .external_lex_state = 5}, - [4429] = {.lex_state = 48, .external_lex_state = 6}, - [4430] = {.lex_state = 49, .external_lex_state = 2}, - [4431] = {.lex_state = 48, .external_lex_state = 6}, - [4432] = {.lex_state = 81, .external_lex_state = 2}, + [4424] = {.lex_state = 406, .external_lex_state = 5}, + [4425] = {.lex_state = 406, .external_lex_state = 5}, + [4426] = {.lex_state = 406, .external_lex_state = 5}, + [4427] = {.lex_state = 406, .external_lex_state = 5}, + [4428] = {.lex_state = 406, .external_lex_state = 5}, + [4429] = {.lex_state = 406, .external_lex_state = 5}, + [4430] = {.lex_state = 406, .external_lex_state = 5}, + [4431] = {.lex_state = 406, .external_lex_state = 5}, + [4432] = {.lex_state = 406, .external_lex_state = 5}, [4433] = {.lex_state = 406, .external_lex_state = 5}, - [4434] = {.lex_state = 406, .external_lex_state = 5}, - [4435] = {.lex_state = 48, .external_lex_state = 5}, - [4436] = {.lex_state = 48, .external_lex_state = 5}, - [4437] = {.lex_state = 48, .external_lex_state = 6}, - [4438] = {.lex_state = 48, .external_lex_state = 6}, + [4434] = {.lex_state = 406, .external_lex_state = 2}, + [4435] = {.lex_state = 406, .external_lex_state = 5}, + [4436] = {.lex_state = 406, .external_lex_state = 5}, + [4437] = {.lex_state = 81, .external_lex_state = 2}, + [4438] = {.lex_state = 49, .external_lex_state = 5}, [4439] = {.lex_state = 406, .external_lex_state = 5}, - [4440] = {.lex_state = 48, .external_lex_state = 6}, - [4441] = {.lex_state = 81, .external_lex_state = 2}, - [4442] = {.lex_state = 48, .external_lex_state = 6}, - [4443] = {.lex_state = 48, .external_lex_state = 6}, - [4444] = {.lex_state = 48, .external_lex_state = 2}, - [4445] = {.lex_state = 48, .external_lex_state = 6}, - [4446] = {.lex_state = 48, .external_lex_state = 6}, - [4447] = {.lex_state = 48, .external_lex_state = 5}, - [4448] = {.lex_state = 48, .external_lex_state = 6}, - [4449] = {.lex_state = 406, .external_lex_state = 6}, - [4450] = {.lex_state = 48, .external_lex_state = 5}, - [4451] = {.lex_state = 85, .external_lex_state = 2}, - [4452] = {.lex_state = 75, .external_lex_state = 2}, - [4453] = {.lex_state = 75, .external_lex_state = 2}, - [4454] = {.lex_state = 75, .external_lex_state = 2}, - [4455] = {.lex_state = 75, .external_lex_state = 2}, - [4456] = {.lex_state = 85, .external_lex_state = 2}, - [4457] = {.lex_state = 48, .external_lex_state = 2}, - [4458] = {.lex_state = 48, .external_lex_state = 2}, - [4459] = {.lex_state = 406, .external_lex_state = 5}, - [4460] = {.lex_state = 91, .external_lex_state = 2}, - [4461] = {.lex_state = 406, .external_lex_state = 7}, - [4462] = {.lex_state = 406, .external_lex_state = 7}, - [4463] = {.lex_state = 85, .external_lex_state = 2}, - [4464] = {.lex_state = 406, .external_lex_state = 5}, - [4465] = {.lex_state = 75, .external_lex_state = 2}, - [4466] = {.lex_state = 406, .external_lex_state = 7}, - [4467] = {.lex_state = 406, .external_lex_state = 5}, - [4468] = {.lex_state = 48, .external_lex_state = 5}, - [4469] = {.lex_state = 85, .external_lex_state = 2}, - [4470] = {.lex_state = 55, .external_lex_state = 2}, - [4471] = {.lex_state = 75, .external_lex_state = 2}, - [4472] = {.lex_state = 48, .external_lex_state = 5}, - [4473] = {.lex_state = 75, .external_lex_state = 2}, - [4474] = {.lex_state = 91, .external_lex_state = 2}, - [4475] = {.lex_state = 406, .external_lex_state = 7}, - [4476] = {.lex_state = 85, .external_lex_state = 2}, - [4477] = {.lex_state = 406, .external_lex_state = 5}, - [4478] = {.lex_state = 75, .external_lex_state = 2}, - [4479] = {.lex_state = 75, .external_lex_state = 2}, - [4480] = {.lex_state = 85, .external_lex_state = 2}, - [4481] = {.lex_state = 406, .external_lex_state = 7}, - [4482] = {.lex_state = 48, .external_lex_state = 5}, + [4440] = {.lex_state = 406, .external_lex_state = 5}, + [4441] = {.lex_state = 49, .external_lex_state = 5}, + [4442] = {.lex_state = 50, .external_lex_state = 2}, + [4443] = {.lex_state = 406, .external_lex_state = 5}, + [4444] = {.lex_state = 406, .external_lex_state = 5}, + [4445] = {.lex_state = 75, .external_lex_state = 2}, + [4446] = {.lex_state = 406, .external_lex_state = 5}, + [4447] = {.lex_state = 406, .external_lex_state = 5}, + [4448] = {.lex_state = 406, .external_lex_state = 2}, + [4449] = {.lex_state = 406, .external_lex_state = 5}, + [4450] = {.lex_state = 406, .external_lex_state = 5}, + [4451] = {.lex_state = 88, .external_lex_state = 2}, + [4452] = {.lex_state = 406, .external_lex_state = 2}, + [4453] = {.lex_state = 406, .external_lex_state = 5}, + [4454] = {.lex_state = 49, .external_lex_state = 5}, + [4455] = {.lex_state = 406, .external_lex_state = 5}, + [4456] = {.lex_state = 406, .external_lex_state = 2}, + [4457] = {.lex_state = 406, .external_lex_state = 5}, + [4458] = {.lex_state = 406, .external_lex_state = 2}, + [4459] = {.lex_state = 406, .external_lex_state = 2}, + [4460] = {.lex_state = 406, .external_lex_state = 5}, + [4461] = {.lex_state = 406, .external_lex_state = 2}, + [4462] = {.lex_state = 406, .external_lex_state = 5}, + [4463] = {.lex_state = 406, .external_lex_state = 5}, + [4464] = {.lex_state = 50, .external_lex_state = 2}, + [4465] = {.lex_state = 406, .external_lex_state = 5}, + [4466] = {.lex_state = 75, .external_lex_state = 2}, + [4467] = {.lex_state = 406, .external_lex_state = 2}, + [4468] = {.lex_state = 406, .external_lex_state = 2}, + [4469] = {.lex_state = 406, .external_lex_state = 2}, + [4470] = {.lex_state = 406, .external_lex_state = 2}, + [4471] = {.lex_state = 406, .external_lex_state = 2}, + [4472] = {.lex_state = 406, .external_lex_state = 2}, + [4473] = {.lex_state = 406, .external_lex_state = 5}, + [4474] = {.lex_state = 406, .external_lex_state = 5}, + [4475] = {.lex_state = 406, .external_lex_state = 2}, + [4476] = {.lex_state = 406, .external_lex_state = 2}, + [4477] = {.lex_state = 406, .external_lex_state = 2}, + [4478] = {.lex_state = 48, .external_lex_state = 2}, + [4479] = {.lex_state = 406, .external_lex_state = 5}, + [4480] = {.lex_state = 406, .external_lex_state = 5}, + [4481] = {.lex_state = 406, .external_lex_state = 2}, + [4482] = {.lex_state = 406, .external_lex_state = 2}, [4483] = {.lex_state = 406, .external_lex_state = 5}, - [4484] = {.lex_state = 406, .external_lex_state = 7}, - [4485] = {.lex_state = 406, .external_lex_state = 7}, - [4486] = {.lex_state = 406, .external_lex_state = 7}, + [4484] = {.lex_state = 75, .external_lex_state = 2}, + [4485] = {.lex_state = 50, .external_lex_state = 2}, + [4486] = {.lex_state = 406, .external_lex_state = 5}, [4487] = {.lex_state = 406, .external_lex_state = 5}, [4488] = {.lex_state = 406, .external_lex_state = 5}, - [4489] = {.lex_state = 406, .external_lex_state = 5}, - [4490] = {.lex_state = 406, .external_lex_state = 5}, + [4489] = {.lex_state = 50, .external_lex_state = 2}, + [4490] = {.lex_state = 50, .external_lex_state = 2}, [4491] = {.lex_state = 406, .external_lex_state = 5}, - [4492] = {.lex_state = 406, .external_lex_state = 2}, + [4492] = {.lex_state = 50, .external_lex_state = 2}, [4493] = {.lex_state = 406, .external_lex_state = 5}, [4494] = {.lex_state = 406, .external_lex_state = 5}, [4495] = {.lex_state = 406, .external_lex_state = 5}, [4496] = {.lex_state = 406, .external_lex_state = 5}, - [4497] = {.lex_state = 406, .external_lex_state = 2}, + [4497] = {.lex_state = 406, .external_lex_state = 5}, [4498] = {.lex_state = 406, .external_lex_state = 5}, [4499] = {.lex_state = 406, .external_lex_state = 2}, [4500] = {.lex_state = 406, .external_lex_state = 5}, - [4501] = {.lex_state = 406, .external_lex_state = 5}, + [4501] = {.lex_state = 50, .external_lex_state = 2}, [4502] = {.lex_state = 49, .external_lex_state = 5}, - [4503] = {.lex_state = 406, .external_lex_state = 5}, - [4504] = {.lex_state = 406, .external_lex_state = 5}, - [4505] = {.lex_state = 406, .external_lex_state = 5}, - [4506] = {.lex_state = 406, .external_lex_state = 5}, - [4507] = {.lex_state = 50, .external_lex_state = 2}, + [4503] = {.lex_state = 406, .external_lex_state = 2}, + [4504] = {.lex_state = 48, .external_lex_state = 2}, + [4505] = {.lex_state = 406, .external_lex_state = 2}, + [4506] = {.lex_state = 406, .external_lex_state = 2}, + [4507] = {.lex_state = 406, .external_lex_state = 2}, [4508] = {.lex_state = 50, .external_lex_state = 2}, - [4509] = {.lex_state = 406, .external_lex_state = 2}, + [4509] = {.lex_state = 406, .external_lex_state = 5}, [4510] = {.lex_state = 406, .external_lex_state = 5}, - [4511] = {.lex_state = 49, .external_lex_state = 5}, + [4511] = {.lex_state = 406, .external_lex_state = 5}, [4512] = {.lex_state = 406, .external_lex_state = 5}, - [4513] = {.lex_state = 50, .external_lex_state = 2}, - [4514] = {.lex_state = 406, .external_lex_state = 2}, - [4515] = {.lex_state = 406, .external_lex_state = 2}, - [4516] = {.lex_state = 406, .external_lex_state = 2}, - [4517] = {.lex_state = 406, .external_lex_state = 5}, - [4518] = {.lex_state = 406, .external_lex_state = 5}, - [4519] = {.lex_state = 88, .external_lex_state = 2}, - [4520] = {.lex_state = 406, .external_lex_state = 5}, - [4521] = {.lex_state = 406, .external_lex_state = 5}, - [4522] = {.lex_state = 406, .external_lex_state = 2}, + [4513] = {.lex_state = 406, .external_lex_state = 5}, + [4514] = {.lex_state = 406, .external_lex_state = 5}, + [4515] = {.lex_state = 406, .external_lex_state = 5}, + [4516] = {.lex_state = 406, .external_lex_state = 5}, + [4517] = {.lex_state = 81, .external_lex_state = 2}, + [4518] = {.lex_state = 50, .external_lex_state = 2}, + [4519] = {.lex_state = 48, .external_lex_state = 2}, + [4520] = {.lex_state = 88, .external_lex_state = 2}, + [4521] = {.lex_state = 406, .external_lex_state = 2}, + [4522] = {.lex_state = 48, .external_lex_state = 2}, [4523] = {.lex_state = 50, .external_lex_state = 2}, - [4524] = {.lex_state = 406, .external_lex_state = 5}, - [4525] = {.lex_state = 406, .external_lex_state = 5}, - [4526] = {.lex_state = 406, .external_lex_state = 5}, - [4527] = {.lex_state = 406, .external_lex_state = 5}, - [4528] = {.lex_state = 406, .external_lex_state = 5}, + [4524] = {.lex_state = 50, .external_lex_state = 2}, + [4525] = {.lex_state = 50, .external_lex_state = 2}, + [4526] = {.lex_state = 49, .external_lex_state = 5}, + [4527] = {.lex_state = 49, .external_lex_state = 5}, + [4528] = {.lex_state = 50, .external_lex_state = 2}, [4529] = {.lex_state = 406, .external_lex_state = 5}, - [4530] = {.lex_state = 406, .external_lex_state = 2}, - [4531] = {.lex_state = 406, .external_lex_state = 2}, + [4530] = {.lex_state = 406, .external_lex_state = 5}, + [4531] = {.lex_state = 406, .external_lex_state = 5}, [4532] = {.lex_state = 406, .external_lex_state = 5}, - [4533] = {.lex_state = 406, .external_lex_state = 5}, + [4533] = {.lex_state = 50, .external_lex_state = 2}, [4534] = {.lex_state = 406, .external_lex_state = 5}, - [4535] = {.lex_state = 406, .external_lex_state = 5}, - [4536] = {.lex_state = 406, .external_lex_state = 5}, - [4537] = {.lex_state = 406, .external_lex_state = 5}, - [4538] = {.lex_state = 406, .external_lex_state = 5}, - [4539] = {.lex_state = 406, .external_lex_state = 5}, - [4540] = {.lex_state = 48, .external_lex_state = 2}, - [4541] = {.lex_state = 50, .external_lex_state = 2}, + [4535] = {.lex_state = 55, .external_lex_state = 2}, + [4536] = {.lex_state = 50, .external_lex_state = 2}, + [4537] = {.lex_state = 50, .external_lex_state = 2}, + [4538] = {.lex_state = 50, .external_lex_state = 2}, + [4539] = {.lex_state = 48, .external_lex_state = 2}, + [4540] = {.lex_state = 50, .external_lex_state = 2}, + [4541] = {.lex_state = 406, .external_lex_state = 5}, [4542] = {.lex_state = 406, .external_lex_state = 5}, [4543] = {.lex_state = 406, .external_lex_state = 5}, [4544] = {.lex_state = 406, .external_lex_state = 5}, - [4545] = {.lex_state = 406, .external_lex_state = 5}, - [4546] = {.lex_state = 50, .external_lex_state = 2}, + [4545] = {.lex_state = 50, .external_lex_state = 2}, + [4546] = {.lex_state = 406, .external_lex_state = 5}, [4547] = {.lex_state = 406, .external_lex_state = 5}, [4548] = {.lex_state = 406, .external_lex_state = 5}, - [4549] = {.lex_state = 406, .external_lex_state = 5}, - [4550] = {.lex_state = 406, .external_lex_state = 2}, - [4551] = {.lex_state = 49, .external_lex_state = 5}, - [4552] = {.lex_state = 50, .external_lex_state = 2}, - [4553] = {.lex_state = 75, .external_lex_state = 2}, - [4554] = {.lex_state = 406, .external_lex_state = 5}, - [4555] = {.lex_state = 406, .external_lex_state = 2}, - [4556] = {.lex_state = 50, .external_lex_state = 2}, + [4549] = {.lex_state = 50, .external_lex_state = 2}, + [4550] = {.lex_state = 406, .external_lex_state = 5}, + [4551] = {.lex_state = 406, .external_lex_state = 5}, + [4552] = {.lex_state = 406, .external_lex_state = 5}, + [4553] = {.lex_state = 406, .external_lex_state = 5}, + [4554] = {.lex_state = 48, .external_lex_state = 2}, + [4555] = {.lex_state = 406, .external_lex_state = 5}, + [4556] = {.lex_state = 406, .external_lex_state = 5}, [4557] = {.lex_state = 406, .external_lex_state = 5}, [4558] = {.lex_state = 406, .external_lex_state = 5}, - [4559] = {.lex_state = 406, .external_lex_state = 5}, - [4560] = {.lex_state = 48, .external_lex_state = 2}, + [4559] = {.lex_state = 50, .external_lex_state = 2}, + [4560] = {.lex_state = 406, .external_lex_state = 5}, [4561] = {.lex_state = 406, .external_lex_state = 5}, [4562] = {.lex_state = 50, .external_lex_state = 2}, - [4563] = {.lex_state = 49, .external_lex_state = 5}, - [4564] = {.lex_state = 406, .external_lex_state = 2}, - [4565] = {.lex_state = 406, .external_lex_state = 2}, - [4566] = {.lex_state = 406, .external_lex_state = 5}, - [4567] = {.lex_state = 75, .external_lex_state = 2}, + [4563] = {.lex_state = 48, .external_lex_state = 2}, + [4564] = {.lex_state = 75, .external_lex_state = 2}, + [4565] = {.lex_state = 50, .external_lex_state = 2}, + [4566] = {.lex_state = 406, .external_lex_state = 2}, + [4567] = {.lex_state = 406, .external_lex_state = 5}, [4568] = {.lex_state = 406, .external_lex_state = 5}, [4569] = {.lex_state = 50, .external_lex_state = 2}, - [4570] = {.lex_state = 49, .external_lex_state = 5}, - [4571] = {.lex_state = 406, .external_lex_state = 5}, - [4572] = {.lex_state = 406, .external_lex_state = 5}, - [4573] = {.lex_state = 406, .external_lex_state = 5}, + [4570] = {.lex_state = 406, .external_lex_state = 2}, + [4571] = {.lex_state = 48, .external_lex_state = 2}, + [4572] = {.lex_state = 48, .external_lex_state = 2}, + [4573] = {.lex_state = 48, .external_lex_state = 2}, [4574] = {.lex_state = 406, .external_lex_state = 5}, [4575] = {.lex_state = 406, .external_lex_state = 5}, [4576] = {.lex_state = 406, .external_lex_state = 5}, - [4577] = {.lex_state = 406, .external_lex_state = 2}, - [4578] = {.lex_state = 50, .external_lex_state = 2}, - [4579] = {.lex_state = 406, .external_lex_state = 5}, + [4577] = {.lex_state = 406, .external_lex_state = 5}, + [4578] = {.lex_state = 406, .external_lex_state = 5}, + [4579] = {.lex_state = 50, .external_lex_state = 2}, [4580] = {.lex_state = 406, .external_lex_state = 5}, [4581] = {.lex_state = 406, .external_lex_state = 5}, - [4582] = {.lex_state = 406, .external_lex_state = 5}, - [4583] = {.lex_state = 406, .external_lex_state = 5}, - [4584] = {.lex_state = 406, .external_lex_state = 5}, - [4585] = {.lex_state = 406, .external_lex_state = 2}, - [4586] = {.lex_state = 406, .external_lex_state = 5}, + [4582] = {.lex_state = 48, .external_lex_state = 2}, + [4583] = {.lex_state = 48, .external_lex_state = 2}, + [4584] = {.lex_state = 50, .external_lex_state = 2}, + [4585] = {.lex_state = 50, .external_lex_state = 2}, + [4586] = {.lex_state = 50, .external_lex_state = 2}, [4587] = {.lex_state = 50, .external_lex_state = 2}, - [4588] = {.lex_state = 406, .external_lex_state = 2}, - [4589] = {.lex_state = 88, .external_lex_state = 2}, - [4590] = {.lex_state = 406, .external_lex_state = 5}, - [4591] = {.lex_state = 406, .external_lex_state = 5}, - [4592] = {.lex_state = 48, .external_lex_state = 2}, - [4593] = {.lex_state = 406, .external_lex_state = 2}, + [4588] = {.lex_state = 406, .external_lex_state = 5}, + [4589] = {.lex_state = 50, .external_lex_state = 2}, + [4590] = {.lex_state = 50, .external_lex_state = 2}, + [4591] = {.lex_state = 50, .external_lex_state = 2}, + [4592] = {.lex_state = 406, .external_lex_state = 5}, + [4593] = {.lex_state = 406, .external_lex_state = 5}, [4594] = {.lex_state = 406, .external_lex_state = 5}, - [4595] = {.lex_state = 406, .external_lex_state = 5}, + [4595] = {.lex_state = 406, .external_lex_state = 6}, [4596] = {.lex_state = 406, .external_lex_state = 5}, - [4597] = {.lex_state = 406, .external_lex_state = 2}, - [4598] = {.lex_state = 50, .external_lex_state = 2}, + [4597] = {.lex_state = 406, .external_lex_state = 5}, + [4598] = {.lex_state = 406, .external_lex_state = 5}, [4599] = {.lex_state = 406, .external_lex_state = 6}, - [4600] = {.lex_state = 406, .external_lex_state = 5}, - [4601] = {.lex_state = 406, .external_lex_state = 5}, - [4602] = {.lex_state = 406, .external_lex_state = 2}, + [4600] = {.lex_state = 406, .external_lex_state = 6}, + [4601] = {.lex_state = 406, .external_lex_state = 6}, + [4602] = {.lex_state = 406, .external_lex_state = 5}, [4603] = {.lex_state = 406, .external_lex_state = 5}, [4604] = {.lex_state = 406, .external_lex_state = 5}, - [4605] = {.lex_state = 406, .external_lex_state = 2}, - [4606] = {.lex_state = 406, .external_lex_state = 5}, - [4607] = {.lex_state = 88, .external_lex_state = 2}, - [4608] = {.lex_state = 406, .external_lex_state = 5}, - [4609] = {.lex_state = 406, .external_lex_state = 5}, - [4610] = {.lex_state = 406, .external_lex_state = 6}, + [4605] = {.lex_state = 406, .external_lex_state = 5}, + [4606] = {.lex_state = 406, .external_lex_state = 6}, + [4607] = {.lex_state = 406, .external_lex_state = 6}, + [4608] = {.lex_state = 50, .external_lex_state = 2}, + [4609] = {.lex_state = 50, .external_lex_state = 2}, + [4610] = {.lex_state = 406, .external_lex_state = 5}, [4611] = {.lex_state = 406, .external_lex_state = 5}, - [4612] = {.lex_state = 406, .external_lex_state = 2}, + [4612] = {.lex_state = 50, .external_lex_state = 2}, [4613] = {.lex_state = 406, .external_lex_state = 5}, [4614] = {.lex_state = 406, .external_lex_state = 6}, - [4615] = {.lex_state = 406, .external_lex_state = 2}, + [4615] = {.lex_state = 50, .external_lex_state = 2}, [4616] = {.lex_state = 406, .external_lex_state = 2}, - [4617] = {.lex_state = 406, .external_lex_state = 2}, - [4618] = {.lex_state = 406, .external_lex_state = 2}, + [4617] = {.lex_state = 50, .external_lex_state = 2}, + [4618] = {.lex_state = 48, .external_lex_state = 2}, [4619] = {.lex_state = 406, .external_lex_state = 5}, - [4620] = {.lex_state = 406, .external_lex_state = 2}, - [4621] = {.lex_state = 406, .external_lex_state = 6}, - [4622] = {.lex_state = 406, .external_lex_state = 5}, - [4623] = {.lex_state = 406, .external_lex_state = 5}, - [4624] = {.lex_state = 75, .external_lex_state = 2}, + [4620] = {.lex_state = 50, .external_lex_state = 2}, + [4621] = {.lex_state = 48, .external_lex_state = 2}, + [4622] = {.lex_state = 48, .external_lex_state = 2}, + [4623] = {.lex_state = 50, .external_lex_state = 2}, + [4624] = {.lex_state = 406, .external_lex_state = 2}, [4625] = {.lex_state = 50, .external_lex_state = 2}, - [4626] = {.lex_state = 406, .external_lex_state = 2}, - [4627] = {.lex_state = 406, .external_lex_state = 5}, + [4626] = {.lex_state = 50, .external_lex_state = 2}, + [4627] = {.lex_state = 50, .external_lex_state = 2}, [4628] = {.lex_state = 406, .external_lex_state = 5}, [4629] = {.lex_state = 406, .external_lex_state = 2}, - [4630] = {.lex_state = 406, .external_lex_state = 6}, - [4631] = {.lex_state = 48, .external_lex_state = 2}, + [4630] = {.lex_state = 406, .external_lex_state = 5}, + [4631] = {.lex_state = 406, .external_lex_state = 2}, [4632] = {.lex_state = 406, .external_lex_state = 5}, - [4633] = {.lex_state = 50, .external_lex_state = 2}, - [4634] = {.lex_state = 406, .external_lex_state = 5}, - [4635] = {.lex_state = 75, .external_lex_state = 2}, - [4636] = {.lex_state = 406, .external_lex_state = 6}, + [4633] = {.lex_state = 406, .external_lex_state = 5}, + [4634] = {.lex_state = 406, .external_lex_state = 2}, + [4635] = {.lex_state = 50, .external_lex_state = 2}, + [4636] = {.lex_state = 406, .external_lex_state = 5}, [4637] = {.lex_state = 50, .external_lex_state = 2}, - [4638] = {.lex_state = 50, .external_lex_state = 2}, - [4639] = {.lex_state = 406, .external_lex_state = 2}, - [4640] = {.lex_state = 406, .external_lex_state = 2}, - [4641] = {.lex_state = 50, .external_lex_state = 2}, - [4642] = {.lex_state = 81, .external_lex_state = 2}, - [4643] = {.lex_state = 81, .external_lex_state = 2}, - [4644] = {.lex_state = 49, .external_lex_state = 5}, - [4645] = {.lex_state = 49, .external_lex_state = 5}, - [4646] = {.lex_state = 406, .external_lex_state = 2}, + [4638] = {.lex_state = 406, .external_lex_state = 6}, + [4639] = {.lex_state = 50, .external_lex_state = 2}, + [4640] = {.lex_state = 65, .external_lex_state = 2}, + [4641] = {.lex_state = 48, .external_lex_state = 2}, + [4642] = {.lex_state = 75, .external_lex_state = 2}, + [4643] = {.lex_state = 406, .external_lex_state = 6}, + [4644] = {.lex_state = 50, .external_lex_state = 2}, + [4645] = {.lex_state = 65, .external_lex_state = 2}, + [4646] = {.lex_state = 406, .external_lex_state = 6}, [4647] = {.lex_state = 50, .external_lex_state = 2}, - [4648] = {.lex_state = 406, .external_lex_state = 5}, + [4648] = {.lex_state = 406, .external_lex_state = 6}, [4649] = {.lex_state = 50, .external_lex_state = 2}, - [4650] = {.lex_state = 406, .external_lex_state = 5}, - [4651] = {.lex_state = 50, .external_lex_state = 2}, - [4652] = {.lex_state = 406, .external_lex_state = 5}, - [4653] = {.lex_state = 406, .external_lex_state = 2}, - [4654] = {.lex_state = 406, .external_lex_state = 2}, - [4655] = {.lex_state = 49, .external_lex_state = 5}, - [4656] = {.lex_state = 406, .external_lex_state = 2}, - [4657] = {.lex_state = 50, .external_lex_state = 2}, - [4658] = {.lex_state = 406, .external_lex_state = 2}, - [4659] = {.lex_state = 406, .external_lex_state = 5}, - [4660] = {.lex_state = 406, .external_lex_state = 5}, - [4661] = {.lex_state = 406, .external_lex_state = 2}, + [4650] = {.lex_state = 50, .external_lex_state = 2}, + [4651] = {.lex_state = 48, .external_lex_state = 2}, + [4652] = {.lex_state = 406, .external_lex_state = 6}, + [4653] = {.lex_state = 48, .external_lex_state = 2}, + [4654] = {.lex_state = 406, .external_lex_state = 6}, + [4655] = {.lex_state = 50, .external_lex_state = 2}, + [4656] = {.lex_state = 50, .external_lex_state = 2}, + [4657] = {.lex_state = 406, .external_lex_state = 6}, + [4658] = {.lex_state = 406, .external_lex_state = 6}, + [4659] = {.lex_state = 406, .external_lex_state = 7}, + [4660] = {.lex_state = 50, .external_lex_state = 2}, + [4661] = {.lex_state = 65, .external_lex_state = 2}, [4662] = {.lex_state = 48, .external_lex_state = 2}, - [4663] = {.lex_state = 406, .external_lex_state = 5}, - [4664] = {.lex_state = 406, .external_lex_state = 5}, - [4665] = {.lex_state = 50, .external_lex_state = 2}, - [4666] = {.lex_state = 406, .external_lex_state = 2}, - [4667] = {.lex_state = 49, .external_lex_state = 5}, - [4668] = {.lex_state = 406, .external_lex_state = 5}, - [4669] = {.lex_state = 48, .external_lex_state = 2}, - [4670] = {.lex_state = 406, .external_lex_state = 5}, - [4671] = {.lex_state = 406, .external_lex_state = 5}, + [4663] = {.lex_state = 406, .external_lex_state = 2}, + [4664] = {.lex_state = 65, .external_lex_state = 2}, + [4665] = {.lex_state = 406, .external_lex_state = 6}, + [4666] = {.lex_state = 406, .external_lex_state = 6}, + [4667] = {.lex_state = 406, .external_lex_state = 6}, + [4668] = {.lex_state = 65, .external_lex_state = 2}, + [4669] = {.lex_state = 406, .external_lex_state = 6}, + [4670] = {.lex_state = 48, .external_lex_state = 2}, + [4671] = {.lex_state = 48, .external_lex_state = 2}, [4672] = {.lex_state = 50, .external_lex_state = 2}, [4673] = {.lex_state = 48, .external_lex_state = 2}, - [4674] = {.lex_state = 406, .external_lex_state = 5}, - [4675] = {.lex_state = 406, .external_lex_state = 5}, - [4676] = {.lex_state = 406, .external_lex_state = 5}, - [4677] = {.lex_state = 55, .external_lex_state = 2}, - [4678] = {.lex_state = 48, .external_lex_state = 2}, + [4674] = {.lex_state = 50, .external_lex_state = 2}, + [4675] = {.lex_state = 48, .external_lex_state = 2}, + [4676] = {.lex_state = 50, .external_lex_state = 2}, + [4677] = {.lex_state = 65, .external_lex_state = 2}, + [4678] = {.lex_state = 406, .external_lex_state = 2}, [4679] = {.lex_state = 406, .external_lex_state = 5}, - [4680] = {.lex_state = 81, .external_lex_state = 2}, + [4680] = {.lex_state = 406, .external_lex_state = 5}, [4681] = {.lex_state = 406, .external_lex_state = 5}, - [4682] = {.lex_state = 50, .external_lex_state = 2}, - [4683] = {.lex_state = 50, .external_lex_state = 2}, - [4684] = {.lex_state = 406, .external_lex_state = 5}, + [4682] = {.lex_state = 406, .external_lex_state = 6}, + [4683] = {.lex_state = 406, .external_lex_state = 2}, + [4684] = {.lex_state = 406, .external_lex_state = 2}, [4685] = {.lex_state = 50, .external_lex_state = 2}, [4686] = {.lex_state = 406, .external_lex_state = 2}, - [4687] = {.lex_state = 406, .external_lex_state = 5}, - [4688] = {.lex_state = 50, .external_lex_state = 2}, - [4689] = {.lex_state = 406, .external_lex_state = 5}, - [4690] = {.lex_state = 406, .external_lex_state = 5}, - [4691] = {.lex_state = 50, .external_lex_state = 2}, - [4692] = {.lex_state = 406, .external_lex_state = 5}, - [4693] = {.lex_state = 48, .external_lex_state = 2}, - [4694] = {.lex_state = 406, .external_lex_state = 2}, - [4695] = {.lex_state = 406, .external_lex_state = 5}, - [4696] = {.lex_state = 406, .external_lex_state = 5}, - [4697] = {.lex_state = 406, .external_lex_state = 5}, - [4698] = {.lex_state = 48, .external_lex_state = 2}, - [4699] = {.lex_state = 406, .external_lex_state = 2}, - [4700] = {.lex_state = 50, .external_lex_state = 2}, - [4701] = {.lex_state = 406, .external_lex_state = 5}, + [4687] = {.lex_state = 65, .external_lex_state = 2}, + [4688] = {.lex_state = 406, .external_lex_state = 5}, + [4689] = {.lex_state = 65, .external_lex_state = 2}, + [4690] = {.lex_state = 48, .external_lex_state = 2}, + [4691] = {.lex_state = 406, .external_lex_state = 2}, + [4692] = {.lex_state = 48, .external_lex_state = 2}, + [4693] = {.lex_state = 50, .external_lex_state = 2}, + [4694] = {.lex_state = 65, .external_lex_state = 2}, + [4695] = {.lex_state = 65, .external_lex_state = 2}, + [4696] = {.lex_state = 48, .external_lex_state = 2}, + [4697] = {.lex_state = 50, .external_lex_state = 2}, + [4698] = {.lex_state = 65, .external_lex_state = 2}, + [4699] = {.lex_state = 50, .external_lex_state = 2}, + [4700] = {.lex_state = 406, .external_lex_state = 5}, + [4701] = {.lex_state = 48, .external_lex_state = 2}, [4702] = {.lex_state = 48, .external_lex_state = 2}, - [4703] = {.lex_state = 406, .external_lex_state = 5}, - [4704] = {.lex_state = 88, .external_lex_state = 2}, + [4703] = {.lex_state = 406, .external_lex_state = 2}, + [4704] = {.lex_state = 406, .external_lex_state = 5}, [4705] = {.lex_state = 406, .external_lex_state = 5}, - [4706] = {.lex_state = 406, .external_lex_state = 5}, - [4707] = {.lex_state = 406, .external_lex_state = 2}, - [4708] = {.lex_state = 406, .external_lex_state = 5}, + [4706] = {.lex_state = 406, .external_lex_state = 6}, + [4707] = {.lex_state = 48, .external_lex_state = 2}, + [4708] = {.lex_state = 48, .external_lex_state = 2}, [4709] = {.lex_state = 406, .external_lex_state = 5}, - [4710] = {.lex_state = 406, .external_lex_state = 5}, + [4710] = {.lex_state = 406, .external_lex_state = 6}, [4711] = {.lex_state = 406, .external_lex_state = 5}, [4712] = {.lex_state = 406, .external_lex_state = 5}, [4713] = {.lex_state = 406, .external_lex_state = 5}, - [4714] = {.lex_state = 406, .external_lex_state = 5}, - [4715] = {.lex_state = 406, .external_lex_state = 5}, - [4716] = {.lex_state = 406, .external_lex_state = 5}, - [4717] = {.lex_state = 48, .external_lex_state = 2}, + [4714] = {.lex_state = 406, .external_lex_state = 6}, + [4715] = {.lex_state = 48, .external_lex_state = 2}, + [4716] = {.lex_state = 406, .external_lex_state = 2}, + [4717] = {.lex_state = 65, .external_lex_state = 2}, [4718] = {.lex_state = 406, .external_lex_state = 5}, - [4719] = {.lex_state = 50, .external_lex_state = 2}, - [4720] = {.lex_state = 50, .external_lex_state = 2}, - [4721] = {.lex_state = 406, .external_lex_state = 5}, - [4722] = {.lex_state = 50, .external_lex_state = 2}, - [4723] = {.lex_state = 406, .external_lex_state = 5}, + [4719] = {.lex_state = 406, .external_lex_state = 5}, + [4720] = {.lex_state = 48, .external_lex_state = 2}, + [4721] = {.lex_state = 65, .external_lex_state = 2}, + [4722] = {.lex_state = 406, .external_lex_state = 5}, + [4723] = {.lex_state = 65, .external_lex_state = 2}, [4724] = {.lex_state = 406, .external_lex_state = 5}, [4725] = {.lex_state = 406, .external_lex_state = 5}, - [4726] = {.lex_state = 88, .external_lex_state = 2}, - [4727] = {.lex_state = 406, .external_lex_state = 2}, - [4728] = {.lex_state = 50, .external_lex_state = 2}, - [4729] = {.lex_state = 406, .external_lex_state = 2}, - [4730] = {.lex_state = 406, .external_lex_state = 5}, - [4731] = {.lex_state = 50, .external_lex_state = 2}, - [4732] = {.lex_state = 406, .external_lex_state = 5}, - [4733] = {.lex_state = 75, .external_lex_state = 2}, - [4734] = {.lex_state = 406, .external_lex_state = 5}, + [4726] = {.lex_state = 48, .external_lex_state = 2}, + [4727] = {.lex_state = 50, .external_lex_state = 2}, + [4728] = {.lex_state = 65, .external_lex_state = 2}, + [4729] = {.lex_state = 406, .external_lex_state = 6}, + [4730] = {.lex_state = 50, .external_lex_state = 2}, + [4731] = {.lex_state = 48, .external_lex_state = 2}, + [4732] = {.lex_state = 50, .external_lex_state = 2}, + [4733] = {.lex_state = 406, .external_lex_state = 6}, + [4734] = {.lex_state = 65, .external_lex_state = 2}, [4735] = {.lex_state = 406, .external_lex_state = 5}, - [4736] = {.lex_state = 50, .external_lex_state = 2}, - [4737] = {.lex_state = 75, .external_lex_state = 2}, - [4738] = {.lex_state = 406, .external_lex_state = 5}, - [4739] = {.lex_state = 406, .external_lex_state = 5}, - [4740] = {.lex_state = 48, .external_lex_state = 2}, - [4741] = {.lex_state = 50, .external_lex_state = 2}, + [4736] = {.lex_state = 48, .external_lex_state = 2}, + [4737] = {.lex_state = 406, .external_lex_state = 2}, + [4738] = {.lex_state = 48, .external_lex_state = 2}, + [4739] = {.lex_state = 48, .external_lex_state = 2}, + [4740] = {.lex_state = 406, .external_lex_state = 5}, + [4741] = {.lex_state = 406, .external_lex_state = 7}, [4742] = {.lex_state = 406, .external_lex_state = 5}, [4743] = {.lex_state = 406, .external_lex_state = 5}, [4744] = {.lex_state = 406, .external_lex_state = 2}, [4745] = {.lex_state = 406, .external_lex_state = 5}, - [4746] = {.lex_state = 406, .external_lex_state = 2}, - [4747] = {.lex_state = 406, .external_lex_state = 5}, - [4748] = {.lex_state = 406, .external_lex_state = 5}, - [4749] = {.lex_state = 406, .external_lex_state = 5}, - [4750] = {.lex_state = 406, .external_lex_state = 5}, - [4751] = {.lex_state = 75, .external_lex_state = 2}, - [4752] = {.lex_state = 406, .external_lex_state = 2}, - [4753] = {.lex_state = 406, .external_lex_state = 5}, - [4754] = {.lex_state = 50, .external_lex_state = 2}, - [4755] = {.lex_state = 406, .external_lex_state = 5}, - [4756] = {.lex_state = 406, .external_lex_state = 2}, - [4757] = {.lex_state = 50, .external_lex_state = 2}, - [4758] = {.lex_state = 406, .external_lex_state = 5}, - [4759] = {.lex_state = 406, .external_lex_state = 5}, - [4760] = {.lex_state = 406, .external_lex_state = 2}, - [4761] = {.lex_state = 48, .external_lex_state = 2}, - [4762] = {.lex_state = 75, .external_lex_state = 2}, - [4763] = {.lex_state = 406, .external_lex_state = 6}, - [4764] = {.lex_state = 406, .external_lex_state = 2}, - [4765] = {.lex_state = 48, .external_lex_state = 2}, - [4766] = {.lex_state = 48, .external_lex_state = 2}, - [4767] = {.lex_state = 48, .external_lex_state = 2}, + [4746] = {.lex_state = 50, .external_lex_state = 2}, + [4747] = {.lex_state = 50, .external_lex_state = 2}, + [4748] = {.lex_state = 406, .external_lex_state = 6}, + [4749] = {.lex_state = 48, .external_lex_state = 2}, + [4750] = {.lex_state = 48, .external_lex_state = 2}, + [4751] = {.lex_state = 406, .external_lex_state = 5}, + [4752] = {.lex_state = 48, .external_lex_state = 2}, + [4753] = {.lex_state = 65, .external_lex_state = 2}, + [4754] = {.lex_state = 48, .external_lex_state = 2}, + [4755] = {.lex_state = 65, .external_lex_state = 2}, + [4756] = {.lex_state = 48, .external_lex_state = 2}, + [4757] = {.lex_state = 406, .external_lex_state = 5}, + [4758] = {.lex_state = 48, .external_lex_state = 2}, + [4759] = {.lex_state = 406, .external_lex_state = 6}, + [4760] = {.lex_state = 406, .external_lex_state = 5}, + [4761] = {.lex_state = 406, .external_lex_state = 6}, + [4762] = {.lex_state = 65, .external_lex_state = 2}, + [4763] = {.lex_state = 65, .external_lex_state = 2}, + [4764] = {.lex_state = 406, .external_lex_state = 5}, + [4765] = {.lex_state = 406, .external_lex_state = 5}, + [4766] = {.lex_state = 81, .external_lex_state = 2}, + [4767] = {.lex_state = 50, .external_lex_state = 2}, [4768] = {.lex_state = 406, .external_lex_state = 2}, - [4769] = {.lex_state = 406, .external_lex_state = 6}, - [4770] = {.lex_state = 50, .external_lex_state = 2}, + [4769] = {.lex_state = 406, .external_lex_state = 5}, + [4770] = {.lex_state = 406, .external_lex_state = 5}, [4771] = {.lex_state = 406, .external_lex_state = 2}, - [4772] = {.lex_state = 50, .external_lex_state = 2}, - [4773] = {.lex_state = 406, .external_lex_state = 6}, - [4774] = {.lex_state = 48, .external_lex_state = 2}, - [4775] = {.lex_state = 50, .external_lex_state = 2}, - [4776] = {.lex_state = 406, .external_lex_state = 6}, - [4777] = {.lex_state = 48, .external_lex_state = 2}, - [4778] = {.lex_state = 65, .external_lex_state = 2}, - [4779] = {.lex_state = 406, .external_lex_state = 2}, - [4780] = {.lex_state = 65, .external_lex_state = 2}, - [4781] = {.lex_state = 406, .external_lex_state = 5}, - [4782] = {.lex_state = 48, .external_lex_state = 2}, + [4772] = {.lex_state = 406, .external_lex_state = 5}, + [4773] = {.lex_state = 406, .external_lex_state = 5}, + [4774] = {.lex_state = 65, .external_lex_state = 2}, + [4775] = {.lex_state = 406, .external_lex_state = 5}, + [4776] = {.lex_state = 406, .external_lex_state = 2}, + [4777] = {.lex_state = 406, .external_lex_state = 5}, + [4778] = {.lex_state = 406, .external_lex_state = 5}, + [4779] = {.lex_state = 48, .external_lex_state = 2}, + [4780] = {.lex_state = 50, .external_lex_state = 2}, + [4781] = {.lex_state = 75, .external_lex_state = 2}, + [4782] = {.lex_state = 81, .external_lex_state = 2}, [4783] = {.lex_state = 406, .external_lex_state = 2}, - [4784] = {.lex_state = 65, .external_lex_state = 2}, - [4785] = {.lex_state = 406, .external_lex_state = 7}, - [4786] = {.lex_state = 50, .external_lex_state = 2}, + [4784] = {.lex_state = 48, .external_lex_state = 2}, + [4785] = {.lex_state = 65, .external_lex_state = 2}, + [4786] = {.lex_state = 65, .external_lex_state = 2}, [4787] = {.lex_state = 65, .external_lex_state = 2}, - [4788] = {.lex_state = 406, .external_lex_state = 6}, - [4789] = {.lex_state = 406, .external_lex_state = 6}, - [4790] = {.lex_state = 406, .external_lex_state = 2}, - [4791] = {.lex_state = 406, .external_lex_state = 5}, - [4792] = {.lex_state = 406, .external_lex_state = 5}, + [4788] = {.lex_state = 406, .external_lex_state = 7}, + [4789] = {.lex_state = 65, .external_lex_state = 2}, + [4790] = {.lex_state = 65, .external_lex_state = 2}, + [4791] = {.lex_state = 48, .external_lex_state = 2}, + [4792] = {.lex_state = 406, .external_lex_state = 6}, [4793] = {.lex_state = 65, .external_lex_state = 2}, - [4794] = {.lex_state = 48, .external_lex_state = 2}, - [4795] = {.lex_state = 50, .external_lex_state = 2}, - [4796] = {.lex_state = 50, .external_lex_state = 2}, - [4797] = {.lex_state = 50, .external_lex_state = 2}, - [4798] = {.lex_state = 50, .external_lex_state = 2}, - [4799] = {.lex_state = 50, .external_lex_state = 2}, - [4800] = {.lex_state = 406, .external_lex_state = 5}, - [4801] = {.lex_state = 65, .external_lex_state = 2}, + [4794] = {.lex_state = 81, .external_lex_state = 2}, + [4795] = {.lex_state = 406, .external_lex_state = 2}, + [4796] = {.lex_state = 48, .external_lex_state = 2}, + [4797] = {.lex_state = 406, .external_lex_state = 5}, + [4798] = {.lex_state = 406, .external_lex_state = 6}, + [4799] = {.lex_state = 48, .external_lex_state = 2}, + [4800] = {.lex_state = 50, .external_lex_state = 2}, + [4801] = {.lex_state = 48, .external_lex_state = 2}, [4802] = {.lex_state = 50, .external_lex_state = 2}, - [4803] = {.lex_state = 406, .external_lex_state = 2}, - [4804] = {.lex_state = 65, .external_lex_state = 2}, - [4805] = {.lex_state = 48, .external_lex_state = 2}, - [4806] = {.lex_state = 48, .external_lex_state = 2}, - [4807] = {.lex_state = 406, .external_lex_state = 5}, - [4808] = {.lex_state = 65, .external_lex_state = 2}, - [4809] = {.lex_state = 406, .external_lex_state = 2}, - [4810] = {.lex_state = 406, .external_lex_state = 2}, - [4811] = {.lex_state = 48, .external_lex_state = 2}, + [4803] = {.lex_state = 48, .external_lex_state = 2}, + [4804] = {.lex_state = 406, .external_lex_state = 6}, + [4805] = {.lex_state = 406, .external_lex_state = 6}, + [4806] = {.lex_state = 50, .external_lex_state = 2}, + [4807] = {.lex_state = 48, .external_lex_state = 2}, + [4808] = {.lex_state = 48, .external_lex_state = 2}, + [4809] = {.lex_state = 65, .external_lex_state = 2}, + [4810] = {.lex_state = 48, .external_lex_state = 2}, + [4811] = {.lex_state = 50, .external_lex_state = 2}, [4812] = {.lex_state = 50, .external_lex_state = 2}, - [4813] = {.lex_state = 81, .external_lex_state = 2}, - [4814] = {.lex_state = 50, .external_lex_state = 2}, - [4815] = {.lex_state = 50, .external_lex_state = 2}, - [4816] = {.lex_state = 406, .external_lex_state = 6}, - [4817] = {.lex_state = 48, .external_lex_state = 2}, - [4818] = {.lex_state = 406, .external_lex_state = 2}, - [4819] = {.lex_state = 406, .external_lex_state = 2}, + [4813] = {.lex_state = 50, .external_lex_state = 2}, + [4814] = {.lex_state = 406, .external_lex_state = 2}, + [4815] = {.lex_state = 406, .external_lex_state = 6}, + [4816] = {.lex_state = 48, .external_lex_state = 2}, + [4817] = {.lex_state = 50, .external_lex_state = 2}, + [4818] = {.lex_state = 406, .external_lex_state = 7}, + [4819] = {.lex_state = 406, .external_lex_state = 6}, [4820] = {.lex_state = 48, .external_lex_state = 2}, [4821] = {.lex_state = 48, .external_lex_state = 2}, [4822] = {.lex_state = 48, .external_lex_state = 2}, - [4823] = {.lex_state = 65, .external_lex_state = 2}, - [4824] = {.lex_state = 406, .external_lex_state = 6}, - [4825] = {.lex_state = 406, .external_lex_state = 2}, + [4823] = {.lex_state = 48, .external_lex_state = 2}, + [4824] = {.lex_state = 50, .external_lex_state = 2}, + [4825] = {.lex_state = 48, .external_lex_state = 2}, [4826] = {.lex_state = 48, .external_lex_state = 2}, - [4827] = {.lex_state = 48, .external_lex_state = 2}, - [4828] = {.lex_state = 48, .external_lex_state = 2}, - [4829] = {.lex_state = 406, .external_lex_state = 5}, + [4827] = {.lex_state = 406, .external_lex_state = 7}, + [4828] = {.lex_state = 65, .external_lex_state = 2}, + [4829] = {.lex_state = 48, .external_lex_state = 2}, [4830] = {.lex_state = 48, .external_lex_state = 2}, - [4831] = {.lex_state = 406, .external_lex_state = 7}, + [4831] = {.lex_state = 65, .external_lex_state = 2}, [4832] = {.lex_state = 81, .external_lex_state = 2}, - [4833] = {.lex_state = 48, .external_lex_state = 2}, + [4833] = {.lex_state = 406, .external_lex_state = 2}, [4834] = {.lex_state = 65, .external_lex_state = 2}, - [4835] = {.lex_state = 48, .external_lex_state = 2}, - [4836] = {.lex_state = 50, .external_lex_state = 2}, - [4837] = {.lex_state = 406, .external_lex_state = 5}, - [4838] = {.lex_state = 48, .external_lex_state = 2}, - [4839] = {.lex_state = 81, .external_lex_state = 2}, - [4840] = {.lex_state = 50, .external_lex_state = 2}, - [4841] = {.lex_state = 406, .external_lex_state = 7}, + [4835] = {.lex_state = 50, .external_lex_state = 2}, + [4836] = {.lex_state = 48, .external_lex_state = 2}, + [4837] = {.lex_state = 406, .external_lex_state = 2}, + [4838] = {.lex_state = 406, .external_lex_state = 2}, + [4839] = {.lex_state = 406, .external_lex_state = 6}, + [4840] = {.lex_state = 406, .external_lex_state = 2}, + [4841] = {.lex_state = 406, .external_lex_state = 2}, [4842] = {.lex_state = 50, .external_lex_state = 2}, [4843] = {.lex_state = 48, .external_lex_state = 2}, [4844] = {.lex_state = 48, .external_lex_state = 2}, - [4845] = {.lex_state = 48, .external_lex_state = 2}, - [4846] = {.lex_state = 406, .external_lex_state = 2}, - [4847] = {.lex_state = 50, .external_lex_state = 2}, - [4848] = {.lex_state = 50, .external_lex_state = 2}, - [4849] = {.lex_state = 65, .external_lex_state = 2}, - [4850] = {.lex_state = 406, .external_lex_state = 2}, - [4851] = {.lex_state = 65, .external_lex_state = 2}, - [4852] = {.lex_state = 406, .external_lex_state = 6}, - [4853] = {.lex_state = 406, .external_lex_state = 2}, - [4854] = {.lex_state = 406, .external_lex_state = 5}, + [4845] = {.lex_state = 406, .external_lex_state = 5}, + [4846] = {.lex_state = 406, .external_lex_state = 5}, + [4847] = {.lex_state = 406, .external_lex_state = 5}, + [4848] = {.lex_state = 48, .external_lex_state = 2}, + [4849] = {.lex_state = 406, .external_lex_state = 5}, + [4850] = {.lex_state = 48, .external_lex_state = 2}, + [4851] = {.lex_state = 406, .external_lex_state = 5}, + [4852] = {.lex_state = 406, .external_lex_state = 5}, + [4853] = {.lex_state = 406, .external_lex_state = 5}, + [4854] = {.lex_state = 48, .external_lex_state = 2}, [4855] = {.lex_state = 406, .external_lex_state = 5}, - [4856] = {.lex_state = 406, .external_lex_state = 7}, + [4856] = {.lex_state = 48, .external_lex_state = 2}, [4857] = {.lex_state = 406, .external_lex_state = 5}, [4858] = {.lex_state = 406, .external_lex_state = 5}, - [4859] = {.lex_state = 48, .external_lex_state = 2}, - [4860] = {.lex_state = 48, .external_lex_state = 2}, - [4861] = {.lex_state = 406, .external_lex_state = 6}, - [4862] = {.lex_state = 48, .external_lex_state = 2}, - [4863] = {.lex_state = 406, .external_lex_state = 2}, - [4864] = {.lex_state = 406, .external_lex_state = 5}, - [4865] = {.lex_state = 406, .external_lex_state = 5}, - [4866] = {.lex_state = 406, .external_lex_state = 6}, - [4867] = {.lex_state = 65, .external_lex_state = 2}, - [4868] = {.lex_state = 50, .external_lex_state = 2}, - [4869] = {.lex_state = 406, .external_lex_state = 6}, - [4870] = {.lex_state = 48, .external_lex_state = 2}, - [4871] = {.lex_state = 406, .external_lex_state = 5}, - [4872] = {.lex_state = 406, .external_lex_state = 2}, - [4873] = {.lex_state = 65, .external_lex_state = 2}, - [4874] = {.lex_state = 65, .external_lex_state = 2}, - [4875] = {.lex_state = 48, .external_lex_state = 2}, - [4876] = {.lex_state = 65, .external_lex_state = 2}, + [4859] = {.lex_state = 406, .external_lex_state = 5}, + [4860] = {.lex_state = 406, .external_lex_state = 5}, + [4861] = {.lex_state = 48, .external_lex_state = 2}, + [4862] = {.lex_state = 406, .external_lex_state = 5}, + [4863] = {.lex_state = 406, .external_lex_state = 5}, + [4864] = {.lex_state = 48, .external_lex_state = 2}, + [4865] = {.lex_state = 48, .external_lex_state = 2}, + [4866] = {.lex_state = 406, .external_lex_state = 5}, + [4867] = {.lex_state = 406, .external_lex_state = 5}, + [4868] = {.lex_state = 406, .external_lex_state = 5}, + [4869] = {.lex_state = 48, .external_lex_state = 2}, + [4870] = {.lex_state = 406, .external_lex_state = 5}, + [4871] = {.lex_state = 406, .external_lex_state = 8}, + [4872] = {.lex_state = 75, .external_lex_state = 2}, + [4873] = {.lex_state = 48, .external_lex_state = 2}, + [4874] = {.lex_state = 406, .external_lex_state = 5}, + [4875] = {.lex_state = 406, .external_lex_state = 2}, + [4876] = {.lex_state = 48, .external_lex_state = 2}, [4877] = {.lex_state = 406, .external_lex_state = 5}, - [4878] = {.lex_state = 65, .external_lex_state = 2}, - [4879] = {.lex_state = 406, .external_lex_state = 6}, - [4880] = {.lex_state = 406, .external_lex_state = 6}, - [4881] = {.lex_state = 65, .external_lex_state = 2}, - [4882] = {.lex_state = 65, .external_lex_state = 2}, - [4883] = {.lex_state = 65, .external_lex_state = 2}, - [4884] = {.lex_state = 406, .external_lex_state = 6}, + [4878] = {.lex_state = 406, .external_lex_state = 5}, + [4879] = {.lex_state = 406, .external_lex_state = 5}, + [4880] = {.lex_state = 406, .external_lex_state = 5}, + [4881] = {.lex_state = 406, .external_lex_state = 5}, + [4882] = {.lex_state = 75, .external_lex_state = 2}, + [4883] = {.lex_state = 406, .external_lex_state = 5}, + [4884] = {.lex_state = 406, .external_lex_state = 5}, [4885] = {.lex_state = 406, .external_lex_state = 6}, - [4886] = {.lex_state = 50, .external_lex_state = 2}, - [4887] = {.lex_state = 50, .external_lex_state = 2}, - [4888] = {.lex_state = 406, .external_lex_state = 6}, - [4889] = {.lex_state = 406, .external_lex_state = 2}, - [4890] = {.lex_state = 48, .external_lex_state = 2}, - [4891] = {.lex_state = 406, .external_lex_state = 5}, - [4892] = {.lex_state = 48, .external_lex_state = 2}, + [4886] = {.lex_state = 406, .external_lex_state = 2}, + [4887] = {.lex_state = 48, .external_lex_state = 2}, + [4888] = {.lex_state = 406, .external_lex_state = 5}, + [4889] = {.lex_state = 406, .external_lex_state = 5}, + [4890] = {.lex_state = 406, .external_lex_state = 5}, + [4891] = {.lex_state = 75, .external_lex_state = 2}, + [4892] = {.lex_state = 406, .external_lex_state = 5}, [4893] = {.lex_state = 406, .external_lex_state = 5}, [4894] = {.lex_state = 406, .external_lex_state = 5}, - [4895] = {.lex_state = 406, .external_lex_state = 6}, - [4896] = {.lex_state = 406, .external_lex_state = 2}, - [4897] = {.lex_state = 50, .external_lex_state = 2}, - [4898] = {.lex_state = 48, .external_lex_state = 2}, - [4899] = {.lex_state = 406, .external_lex_state = 6}, - [4900] = {.lex_state = 50, .external_lex_state = 2}, - [4901] = {.lex_state = 406, .external_lex_state = 6}, - [4902] = {.lex_state = 48, .external_lex_state = 2}, - [4903] = {.lex_state = 48, .external_lex_state = 2}, + [4895] = {.lex_state = 406, .external_lex_state = 5}, + [4896] = {.lex_state = 48, .external_lex_state = 2}, + [4897] = {.lex_state = 406, .external_lex_state = 5}, + [4898] = {.lex_state = 406, .external_lex_state = 5}, + [4899] = {.lex_state = 48, .external_lex_state = 2}, + [4900] = {.lex_state = 81, .external_lex_state = 2}, + [4901] = {.lex_state = 406, .external_lex_state = 5}, + [4902] = {.lex_state = 406, .external_lex_state = 5}, + [4903] = {.lex_state = 406, .external_lex_state = 5}, [4904] = {.lex_state = 406, .external_lex_state = 5}, [4905] = {.lex_state = 406, .external_lex_state = 5}, - [4906] = {.lex_state = 50, .external_lex_state = 2}, - [4907] = {.lex_state = 406, .external_lex_state = 6}, - [4908] = {.lex_state = 65, .external_lex_state = 2}, - [4909] = {.lex_state = 406, .external_lex_state = 5}, - [4910] = {.lex_state = 65, .external_lex_state = 2}, - [4911] = {.lex_state = 65, .external_lex_state = 2}, - [4912] = {.lex_state = 65, .external_lex_state = 2}, - [4913] = {.lex_state = 406, .external_lex_state = 2}, + [4906] = {.lex_state = 406, .external_lex_state = 5}, + [4907] = {.lex_state = 48, .external_lex_state = 2}, + [4908] = {.lex_state = 406, .external_lex_state = 5}, + [4909] = {.lex_state = 406, .external_lex_state = 8}, + [4910] = {.lex_state = 406, .external_lex_state = 5}, + [4911] = {.lex_state = 406, .external_lex_state = 5}, + [4912] = {.lex_state = 406, .external_lex_state = 5}, + [4913] = {.lex_state = 48, .external_lex_state = 2}, [4914] = {.lex_state = 48, .external_lex_state = 2}, [4915] = {.lex_state = 406, .external_lex_state = 5}, [4916] = {.lex_state = 406, .external_lex_state = 5}, - [4917] = {.lex_state = 48, .external_lex_state = 2}, - [4918] = {.lex_state = 406, .external_lex_state = 2}, - [4919] = {.lex_state = 50, .external_lex_state = 2}, - [4920] = {.lex_state = 48, .external_lex_state = 2}, - [4921] = {.lex_state = 406, .external_lex_state = 6}, - [4922] = {.lex_state = 50, .external_lex_state = 2}, - [4923] = {.lex_state = 406, .external_lex_state = 6}, - [4924] = {.lex_state = 50, .external_lex_state = 2}, - [4925] = {.lex_state = 48, .external_lex_state = 2}, - [4926] = {.lex_state = 48, .external_lex_state = 2}, - [4927] = {.lex_state = 48, .external_lex_state = 2}, + [4917] = {.lex_state = 406, .external_lex_state = 5}, + [4918] = {.lex_state = 48, .external_lex_state = 2}, + [4919] = {.lex_state = 48, .external_lex_state = 2}, + [4920] = {.lex_state = 406, .external_lex_state = 5}, + [4921] = {.lex_state = 48, .external_lex_state = 2}, + [4922] = {.lex_state = 48, .external_lex_state = 2}, + [4923] = {.lex_state = 406, .external_lex_state = 5}, + [4924] = {.lex_state = 48, .external_lex_state = 2}, + [4925] = {.lex_state = 406, .external_lex_state = 5}, + [4926] = {.lex_state = 406, .external_lex_state = 5}, + [4927] = {.lex_state = 406, .external_lex_state = 5}, [4928] = {.lex_state = 48, .external_lex_state = 2}, [4929] = {.lex_state = 406, .external_lex_state = 5}, - [4930] = {.lex_state = 406, .external_lex_state = 5}, - [4931] = {.lex_state = 48, .external_lex_state = 2}, + [4930] = {.lex_state = 48, .external_lex_state = 2}, + [4931] = {.lex_state = 406, .external_lex_state = 2}, [4932] = {.lex_state = 406, .external_lex_state = 5}, - [4933] = {.lex_state = 406, .external_lex_state = 5}, - [4934] = {.lex_state = 50, .external_lex_state = 2}, + [4933] = {.lex_state = 406, .external_lex_state = 6}, + [4934] = {.lex_state = 48, .external_lex_state = 2}, [4935] = {.lex_state = 406, .external_lex_state = 5}, [4936] = {.lex_state = 406, .external_lex_state = 5}, - [4937] = {.lex_state = 50, .external_lex_state = 2}, - [4938] = {.lex_state = 406, .external_lex_state = 6}, - [4939] = {.lex_state = 50, .external_lex_state = 2}, - [4940] = {.lex_state = 65, .external_lex_state = 2}, - [4941] = {.lex_state = 406, .external_lex_state = 6}, - [4942] = {.lex_state = 65, .external_lex_state = 2}, - [4943] = {.lex_state = 406, .external_lex_state = 6}, - [4944] = {.lex_state = 406, .external_lex_state = 5}, - [4945] = {.lex_state = 65, .external_lex_state = 2}, - [4946] = {.lex_state = 48, .external_lex_state = 2}, - [4947] = {.lex_state = 75, .external_lex_state = 2}, - [4948] = {.lex_state = 48, .external_lex_state = 2}, + [4937] = {.lex_state = 81, .external_lex_state = 2}, + [4938] = {.lex_state = 48, .external_lex_state = 2}, + [4939] = {.lex_state = 406, .external_lex_state = 5}, + [4940] = {.lex_state = 406, .external_lex_state = 5}, + [4941] = {.lex_state = 48, .external_lex_state = 2}, + [4942] = {.lex_state = 406, .external_lex_state = 5}, + [4943] = {.lex_state = 406, .external_lex_state = 5}, + [4944] = {.lex_state = 406, .external_lex_state = 2}, + [4945] = {.lex_state = 406, .external_lex_state = 5}, + [4946] = {.lex_state = 406, .external_lex_state = 5}, + [4947] = {.lex_state = 406, .external_lex_state = 5}, + [4948] = {.lex_state = 406, .external_lex_state = 5}, [4949] = {.lex_state = 406, .external_lex_state = 5}, - [4950] = {.lex_state = 48, .external_lex_state = 2}, - [4951] = {.lex_state = 406, .external_lex_state = 6}, - [4952] = {.lex_state = 50, .external_lex_state = 2}, - [4953] = {.lex_state = 406, .external_lex_state = 2}, - [4954] = {.lex_state = 406, .external_lex_state = 5}, - [4955] = {.lex_state = 50, .external_lex_state = 2}, - [4956] = {.lex_state = 48, .external_lex_state = 2}, - [4957] = {.lex_state = 50, .external_lex_state = 2}, - [4958] = {.lex_state = 48, .external_lex_state = 2}, + [4950] = {.lex_state = 75, .external_lex_state = 2}, + [4951] = {.lex_state = 406, .external_lex_state = 5}, + [4952] = {.lex_state = 406, .external_lex_state = 5}, + [4953] = {.lex_state = 406, .external_lex_state = 5}, + [4954] = {.lex_state = 81, .external_lex_state = 2}, + [4955] = {.lex_state = 406, .external_lex_state = 2}, + [4956] = {.lex_state = 406, .external_lex_state = 5}, + [4957] = {.lex_state = 406, .external_lex_state = 5}, + [4958] = {.lex_state = 406, .external_lex_state = 2}, [4959] = {.lex_state = 406, .external_lex_state = 5}, - [4960] = {.lex_state = 48, .external_lex_state = 2}, + [4960] = {.lex_state = 406, .external_lex_state = 6}, [4961] = {.lex_state = 406, .external_lex_state = 5}, - [4962] = {.lex_state = 50, .external_lex_state = 2}, - [4963] = {.lex_state = 50, .external_lex_state = 2}, - [4964] = {.lex_state = 50, .external_lex_state = 2}, + [4962] = {.lex_state = 48, .external_lex_state = 2}, + [4963] = {.lex_state = 406, .external_lex_state = 5}, + [4964] = {.lex_state = 406, .external_lex_state = 5}, [4965] = {.lex_state = 406, .external_lex_state = 5}, - [4966] = {.lex_state = 406, .external_lex_state = 7}, - [4967] = {.lex_state = 406, .external_lex_state = 6}, + [4966] = {.lex_state = 406, .external_lex_state = 5}, + [4967] = {.lex_state = 81, .external_lex_state = 2}, [4968] = {.lex_state = 406, .external_lex_state = 5}, - [4969] = {.lex_state = 48, .external_lex_state = 2}, - [4970] = {.lex_state = 406, .external_lex_state = 2}, - [4971] = {.lex_state = 50, .external_lex_state = 2}, - [4972] = {.lex_state = 406, .external_lex_state = 5}, + [4969] = {.lex_state = 406, .external_lex_state = 5}, + [4970] = {.lex_state = 81, .external_lex_state = 2}, + [4971] = {.lex_state = 406, .external_lex_state = 5}, + [4972] = {.lex_state = 81, .external_lex_state = 2}, [4973] = {.lex_state = 406, .external_lex_state = 5}, - [4974] = {.lex_state = 48, .external_lex_state = 2}, - [4975] = {.lex_state = 48, .external_lex_state = 2}, + [4974] = {.lex_state = 81, .external_lex_state = 2}, + [4975] = {.lex_state = 406, .external_lex_state = 5}, [4976] = {.lex_state = 50, .external_lex_state = 2}, - [4977] = {.lex_state = 50, .external_lex_state = 2}, - [4978] = {.lex_state = 50, .external_lex_state = 2}, - [4979] = {.lex_state = 65, .external_lex_state = 2}, - [4980] = {.lex_state = 406, .external_lex_state = 5}, - [4981] = {.lex_state = 406, .external_lex_state = 5}, - [4982] = {.lex_state = 81, .external_lex_state = 2}, - [4983] = {.lex_state = 50, .external_lex_state = 2}, - [4984] = {.lex_state = 406, .external_lex_state = 6}, - [4985] = {.lex_state = 406, .external_lex_state = 2}, - [4986] = {.lex_state = 65, .external_lex_state = 2}, - [4987] = {.lex_state = 65, .external_lex_state = 2}, - [4988] = {.lex_state = 65, .external_lex_state = 2}, + [4977] = {.lex_state = 406, .external_lex_state = 5}, + [4978] = {.lex_state = 81, .external_lex_state = 2}, + [4979] = {.lex_state = 48, .external_lex_state = 2}, + [4980] = {.lex_state = 48, .external_lex_state = 2}, + [4981] = {.lex_state = 406, .external_lex_state = 6}, + [4982] = {.lex_state = 48, .external_lex_state = 5}, + [4983] = {.lex_state = 406, .external_lex_state = 5}, + [4984] = {.lex_state = 406, .external_lex_state = 5}, + [4985] = {.lex_state = 48, .external_lex_state = 2}, + [4986] = {.lex_state = 406, .external_lex_state = 5}, + [4987] = {.lex_state = 406, .external_lex_state = 2}, + [4988] = {.lex_state = 48, .external_lex_state = 5}, [4989] = {.lex_state = 406, .external_lex_state = 5}, - [4990] = {.lex_state = 406, .external_lex_state = 2}, - [4991] = {.lex_state = 406, .external_lex_state = 5}, - [4992] = {.lex_state = 48, .external_lex_state = 5}, + [4990] = {.lex_state = 406, .external_lex_state = 5}, + [4991] = {.lex_state = 406, .external_lex_state = 2}, + [4992] = {.lex_state = 406, .external_lex_state = 5}, [4993] = {.lex_state = 406, .external_lex_state = 5}, [4994] = {.lex_state = 406, .external_lex_state = 5}, - [4995] = {.lex_state = 406, .external_lex_state = 2}, + [4995] = {.lex_state = 406, .external_lex_state = 5}, [4996] = {.lex_state = 406, .external_lex_state = 5}, - [4997] = {.lex_state = 48, .external_lex_state = 2}, - [4998] = {.lex_state = 406, .external_lex_state = 5}, - [4999] = {.lex_state = 406, .external_lex_state = 5}, - [5000] = {.lex_state = 406, .external_lex_state = 5}, - [5001] = {.lex_state = 48, .external_lex_state = 2}, + [4997] = {.lex_state = 406, .external_lex_state = 5}, + [4998] = {.lex_state = 48, .external_lex_state = 2}, + [4999] = {.lex_state = 48, .external_lex_state = 2}, + [5000] = {.lex_state = 48, .external_lex_state = 2}, + [5001] = {.lex_state = 406, .external_lex_state = 5}, [5002] = {.lex_state = 406, .external_lex_state = 5}, - [5003] = {.lex_state = 406, .external_lex_state = 5}, - [5004] = {.lex_state = 406, .external_lex_state = 5}, + [5003] = {.lex_state = 48, .external_lex_state = 2}, + [5004] = {.lex_state = 81, .external_lex_state = 2}, [5005] = {.lex_state = 406, .external_lex_state = 5}, - [5006] = {.lex_state = 406, .external_lex_state = 6}, - [5007] = {.lex_state = 406, .external_lex_state = 5}, + [5006] = {.lex_state = 48, .external_lex_state = 2}, + [5007] = {.lex_state = 48, .external_lex_state = 2}, [5008] = {.lex_state = 406, .external_lex_state = 5}, - [5009] = {.lex_state = 406, .external_lex_state = 5}, + [5009] = {.lex_state = 48, .external_lex_state = 2}, [5010] = {.lex_state = 406, .external_lex_state = 5}, - [5011] = {.lex_state = 81, .external_lex_state = 2}, - [5012] = {.lex_state = 406, .external_lex_state = 5}, - [5013] = {.lex_state = 406, .external_lex_state = 5}, - [5014] = {.lex_state = 406, .external_lex_state = 5}, - [5015] = {.lex_state = 406, .external_lex_state = 2}, - [5016] = {.lex_state = 406, .external_lex_state = 5}, + [5011] = {.lex_state = 48, .external_lex_state = 2}, + [5012] = {.lex_state = 81, .external_lex_state = 2}, + [5013] = {.lex_state = 48, .external_lex_state = 2}, + [5014] = {.lex_state = 48, .external_lex_state = 2}, + [5015] = {.lex_state = 48, .external_lex_state = 2}, + [5016] = {.lex_state = 48, .external_lex_state = 2}, [5017] = {.lex_state = 48, .external_lex_state = 2}, [5018] = {.lex_state = 406, .external_lex_state = 5}, [5019] = {.lex_state = 406, .external_lex_state = 5}, - [5020] = {.lex_state = 406, .external_lex_state = 5}, + [5020] = {.lex_state = 406, .external_lex_state = 8}, [5021] = {.lex_state = 406, .external_lex_state = 5}, - [5022] = {.lex_state = 406, .external_lex_state = 5}, + [5022] = {.lex_state = 48, .external_lex_state = 2}, [5023] = {.lex_state = 406, .external_lex_state = 5}, [5024] = {.lex_state = 406, .external_lex_state = 5}, [5025] = {.lex_state = 406, .external_lex_state = 5}, - [5026] = {.lex_state = 406, .external_lex_state = 5}, - [5027] = {.lex_state = 406, .external_lex_state = 5}, - [5028] = {.lex_state = 406, .external_lex_state = 5}, - [5029] = {.lex_state = 406, .external_lex_state = 5}, - [5030] = {.lex_state = 406, .external_lex_state = 2}, + [5026] = {.lex_state = 81, .external_lex_state = 2}, + [5027] = {.lex_state = 48, .external_lex_state = 2}, + [5028] = {.lex_state = 48, .external_lex_state = 2}, + [5029] = {.lex_state = 48, .external_lex_state = 2}, + [5030] = {.lex_state = 406, .external_lex_state = 5}, [5031] = {.lex_state = 406, .external_lex_state = 5}, [5032] = {.lex_state = 48, .external_lex_state = 2}, - [5033] = {.lex_state = 81, .external_lex_state = 2}, - [5034] = {.lex_state = 406, .external_lex_state = 5}, - [5035] = {.lex_state = 406, .external_lex_state = 5}, + [5033] = {.lex_state = 48, .external_lex_state = 2}, + [5034] = {.lex_state = 48, .external_lex_state = 2}, + [5035] = {.lex_state = 406, .external_lex_state = 6}, [5036] = {.lex_state = 406, .external_lex_state = 5}, - [5037] = {.lex_state = 406, .external_lex_state = 5}, + [5037] = {.lex_state = 406, .external_lex_state = 2}, [5038] = {.lex_state = 406, .external_lex_state = 5}, - [5039] = {.lex_state = 48, .external_lex_state = 2}, + [5039] = {.lex_state = 406, .external_lex_state = 6}, [5040] = {.lex_state = 406, .external_lex_state = 5}, [5041] = {.lex_state = 48, .external_lex_state = 2}, - [5042] = {.lex_state = 48, .external_lex_state = 2}, - [5043] = {.lex_state = 406, .external_lex_state = 5}, - [5044] = {.lex_state = 406, .external_lex_state = 8}, + [5042] = {.lex_state = 406, .external_lex_state = 5}, + [5043] = {.lex_state = 406, .external_lex_state = 6}, + [5044] = {.lex_state = 406, .external_lex_state = 5}, [5045] = {.lex_state = 48, .external_lex_state = 2}, - [5046] = {.lex_state = 406, .external_lex_state = 5}, - [5047] = {.lex_state = 406, .external_lex_state = 6}, - [5048] = {.lex_state = 81, .external_lex_state = 2}, - [5049] = {.lex_state = 81, .external_lex_state = 2}, - [5050] = {.lex_state = 406, .external_lex_state = 5}, + [5046] = {.lex_state = 48, .external_lex_state = 5}, + [5047] = {.lex_state = 48, .external_lex_state = 2}, + [5048] = {.lex_state = 406, .external_lex_state = 5}, + [5049] = {.lex_state = 406, .external_lex_state = 5}, + [5050] = {.lex_state = 48, .external_lex_state = 2}, [5051] = {.lex_state = 406, .external_lex_state = 5}, [5052] = {.lex_state = 406, .external_lex_state = 5}, [5053] = {.lex_state = 406, .external_lex_state = 5}, [5054] = {.lex_state = 406, .external_lex_state = 5}, - [5055] = {.lex_state = 48, .external_lex_state = 2}, + [5055] = {.lex_state = 406, .external_lex_state = 5}, [5056] = {.lex_state = 406, .external_lex_state = 5}, - [5057] = {.lex_state = 81, .external_lex_state = 2}, - [5058] = {.lex_state = 406, .external_lex_state = 5}, + [5057] = {.lex_state = 48, .external_lex_state = 2}, + [5058] = {.lex_state = 81, .external_lex_state = 2}, [5059] = {.lex_state = 406, .external_lex_state = 5}, - [5060] = {.lex_state = 406, .external_lex_state = 5}, + [5060] = {.lex_state = 48, .external_lex_state = 2}, [5061] = {.lex_state = 48, .external_lex_state = 2}, - [5062] = {.lex_state = 406, .external_lex_state = 5}, - [5063] = {.lex_state = 406, .external_lex_state = 5}, - [5064] = {.lex_state = 48, .external_lex_state = 5}, - [5065] = {.lex_state = 406, .external_lex_state = 5}, + [5062] = {.lex_state = 48, .external_lex_state = 2}, + [5063] = {.lex_state = 48, .external_lex_state = 2}, + [5064] = {.lex_state = 81, .external_lex_state = 2}, + [5065] = {.lex_state = 48, .external_lex_state = 5}, [5066] = {.lex_state = 406, .external_lex_state = 5}, - [5067] = {.lex_state = 406, .external_lex_state = 5}, - [5068] = {.lex_state = 75, .external_lex_state = 2}, - [5069] = {.lex_state = 406, .external_lex_state = 5}, + [5067] = {.lex_state = 81, .external_lex_state = 2}, + [5068] = {.lex_state = 48, .external_lex_state = 2}, + [5069] = {.lex_state = 406, .external_lex_state = 2}, [5070] = {.lex_state = 406, .external_lex_state = 5}, - [5071] = {.lex_state = 406, .external_lex_state = 5}, - [5072] = {.lex_state = 406, .external_lex_state = 5}, - [5073] = {.lex_state = 406, .external_lex_state = 5}, - [5074] = {.lex_state = 406, .external_lex_state = 5}, - [5075] = {.lex_state = 406, .external_lex_state = 5}, + [5071] = {.lex_state = 49, .external_lex_state = 2}, + [5072] = {.lex_state = 49, .external_lex_state = 2}, + [5073] = {.lex_state = 406, .external_lex_state = 2}, + [5074] = {.lex_state = 406, .external_lex_state = 2}, + [5075] = {.lex_state = 81, .external_lex_state = 2}, [5076] = {.lex_state = 406, .external_lex_state = 5}, - [5077] = {.lex_state = 406, .external_lex_state = 2}, + [5077] = {.lex_state = 406, .external_lex_state = 5}, [5078] = {.lex_state = 406, .external_lex_state = 5}, - [5079] = {.lex_state = 406, .external_lex_state = 5}, - [5080] = {.lex_state = 406, .external_lex_state = 5}, - [5081] = {.lex_state = 406, .external_lex_state = 8}, - [5082] = {.lex_state = 406, .external_lex_state = 5}, - [5083] = {.lex_state = 406, .external_lex_state = 5}, + [5079] = {.lex_state = 81, .external_lex_state = 2}, + [5080] = {.lex_state = 48, .external_lex_state = 2}, + [5081] = {.lex_state = 48, .external_lex_state = 2}, + [5082] = {.lex_state = 48, .external_lex_state = 2}, + [5083] = {.lex_state = 81, .external_lex_state = 2}, [5084] = {.lex_state = 406, .external_lex_state = 5}, - [5085] = {.lex_state = 406, .external_lex_state = 8}, + [5085] = {.lex_state = 48, .external_lex_state = 2}, [5086] = {.lex_state = 406, .external_lex_state = 5}, - [5087] = {.lex_state = 48, .external_lex_state = 5}, + [5087] = {.lex_state = 406, .external_lex_state = 5}, [5088] = {.lex_state = 406, .external_lex_state = 5}, [5089] = {.lex_state = 406, .external_lex_state = 5}, - [5090] = {.lex_state = 406, .external_lex_state = 6}, - [5091] = {.lex_state = 48, .external_lex_state = 2}, - [5092] = {.lex_state = 48, .external_lex_state = 2}, - [5093] = {.lex_state = 406, .external_lex_state = 5}, - [5094] = {.lex_state = 406, .external_lex_state = 5}, + [5090] = {.lex_state = 406, .external_lex_state = 5}, + [5091] = {.lex_state = 406, .external_lex_state = 5}, + [5092] = {.lex_state = 406, .external_lex_state = 5}, + [5093] = {.lex_state = 48, .external_lex_state = 2}, + [5094] = {.lex_state = 48, .external_lex_state = 2}, [5095] = {.lex_state = 406, .external_lex_state = 5}, - [5096] = {.lex_state = 48, .external_lex_state = 2}, - [5097] = {.lex_state = 406, .external_lex_state = 2}, - [5098] = {.lex_state = 81, .external_lex_state = 2}, - [5099] = {.lex_state = 81, .external_lex_state = 2}, - [5100] = {.lex_state = 406, .external_lex_state = 2}, - [5101] = {.lex_state = 406, .external_lex_state = 5}, - [5102] = {.lex_state = 406, .external_lex_state = 6}, + [5096] = {.lex_state = 81, .external_lex_state = 2}, + [5097] = {.lex_state = 48, .external_lex_state = 2}, + [5098] = {.lex_state = 406, .external_lex_state = 5}, + [5099] = {.lex_state = 48, .external_lex_state = 5}, + [5100] = {.lex_state = 406, .external_lex_state = 5}, + [5101] = {.lex_state = 75, .external_lex_state = 2}, + [5102] = {.lex_state = 406, .external_lex_state = 2}, [5103] = {.lex_state = 406, .external_lex_state = 5}, - [5104] = {.lex_state = 48, .external_lex_state = 2}, - [5105] = {.lex_state = 48, .external_lex_state = 5}, + [5104] = {.lex_state = 406, .external_lex_state = 5}, + [5105] = {.lex_state = 406, .external_lex_state = 5}, [5106] = {.lex_state = 48, .external_lex_state = 2}, - [5107] = {.lex_state = 406, .external_lex_state = 6}, - [5108] = {.lex_state = 48, .external_lex_state = 2}, - [5109] = {.lex_state = 406, .external_lex_state = 6}, - [5110] = {.lex_state = 48, .external_lex_state = 2}, - [5111] = {.lex_state = 406, .external_lex_state = 5}, + [5107] = {.lex_state = 48, .external_lex_state = 2}, + [5108] = {.lex_state = 406, .external_lex_state = 8}, + [5109] = {.lex_state = 406, .external_lex_state = 5}, + [5110] = {.lex_state = 406, .external_lex_state = 5}, + [5111] = {.lex_state = 406, .external_lex_state = 6}, [5112] = {.lex_state = 406, .external_lex_state = 5}, - [5113] = {.lex_state = 81, .external_lex_state = 2}, - [5114] = {.lex_state = 81, .external_lex_state = 2}, + [5113] = {.lex_state = 406, .external_lex_state = 5}, + [5114] = {.lex_state = 48, .external_lex_state = 2}, [5115] = {.lex_state = 406, .external_lex_state = 5}, [5116] = {.lex_state = 406, .external_lex_state = 5}, [5117] = {.lex_state = 406, .external_lex_state = 5}, [5118] = {.lex_state = 406, .external_lex_state = 5}, - [5119] = {.lex_state = 406, .external_lex_state = 5}, - [5120] = {.lex_state = 75, .external_lex_state = 2}, - [5121] = {.lex_state = 48, .external_lex_state = 2}, + [5119] = {.lex_state = 48, .external_lex_state = 2}, + [5120] = {.lex_state = 406, .external_lex_state = 5}, + [5121] = {.lex_state = 406, .external_lex_state = 5}, [5122] = {.lex_state = 48, .external_lex_state = 2}, - [5123] = {.lex_state = 406, .external_lex_state = 2}, - [5124] = {.lex_state = 406, .external_lex_state = 2}, - [5125] = {.lex_state = 81, .external_lex_state = 2}, - [5126] = {.lex_state = 406, .external_lex_state = 6}, - [5127] = {.lex_state = 406, .external_lex_state = 5}, - [5128] = {.lex_state = 406, .external_lex_state = 5}, + [5123] = {.lex_state = 48, .external_lex_state = 2}, + [5124] = {.lex_state = 48, .external_lex_state = 2}, + [5125] = {.lex_state = 406, .external_lex_state = 5}, + [5126] = {.lex_state = 406, .external_lex_state = 5}, + [5127] = {.lex_state = 81, .external_lex_state = 2}, + [5128] = {.lex_state = 50, .external_lex_state = 2}, [5129] = {.lex_state = 406, .external_lex_state = 5}, - [5130] = {.lex_state = 81, .external_lex_state = 2}, - [5131] = {.lex_state = 406, .external_lex_state = 5}, + [5130] = {.lex_state = 406, .external_lex_state = 2}, + [5131] = {.lex_state = 406, .external_lex_state = 2}, [5132] = {.lex_state = 406, .external_lex_state = 5}, [5133] = {.lex_state = 406, .external_lex_state = 5}, - [5134] = {.lex_state = 406, .external_lex_state = 6}, + [5134] = {.lex_state = 406, .external_lex_state = 5}, [5135] = {.lex_state = 406, .external_lex_state = 5}, - [5136] = {.lex_state = 48, .external_lex_state = 5}, - [5137] = {.lex_state = 406, .external_lex_state = 5}, - [5138] = {.lex_state = 48, .external_lex_state = 2}, - [5139] = {.lex_state = 406, .external_lex_state = 5}, + [5136] = {.lex_state = 406, .external_lex_state = 5}, + [5137] = {.lex_state = 48, .external_lex_state = 2}, + [5138] = {.lex_state = 406, .external_lex_state = 5}, + [5139] = {.lex_state = 48, .external_lex_state = 2}, [5140] = {.lex_state = 406, .external_lex_state = 5}, - [5141] = {.lex_state = 406, .external_lex_state = 5}, - [5142] = {.lex_state = 406, .external_lex_state = 5}, - [5143] = {.lex_state = 406, .external_lex_state = 5}, - [5144] = {.lex_state = 406, .external_lex_state = 5}, + [5141] = {.lex_state = 81, .external_lex_state = 2}, + [5142] = {.lex_state = 48, .external_lex_state = 2}, + [5143] = {.lex_state = 48, .external_lex_state = 2}, + [5144] = {.lex_state = 48, .external_lex_state = 2}, [5145] = {.lex_state = 406, .external_lex_state = 5}, [5146] = {.lex_state = 406, .external_lex_state = 5}, - [5147] = {.lex_state = 81, .external_lex_state = 2}, - [5148] = {.lex_state = 406, .external_lex_state = 5}, + [5147] = {.lex_state = 406, .external_lex_state = 5}, + [5148] = {.lex_state = 48, .external_lex_state = 2}, [5149] = {.lex_state = 406, .external_lex_state = 5}, - [5150] = {.lex_state = 81, .external_lex_state = 2}, - [5151] = {.lex_state = 406, .external_lex_state = 5}, - [5152] = {.lex_state = 81, .external_lex_state = 2}, - [5153] = {.lex_state = 48, .external_lex_state = 2}, - [5154] = {.lex_state = 48, .external_lex_state = 2}, + [5150] = {.lex_state = 406, .external_lex_state = 5}, + [5151] = {.lex_state = 49, .external_lex_state = 2}, + [5152] = {.lex_state = 406, .external_lex_state = 5}, + [5153] = {.lex_state = 406, .external_lex_state = 5}, + [5154] = {.lex_state = 406, .external_lex_state = 2}, [5155] = {.lex_state = 406, .external_lex_state = 5}, - [5156] = {.lex_state = 406, .external_lex_state = 5}, - [5157] = {.lex_state = 48, .external_lex_state = 2}, - [5158] = {.lex_state = 406, .external_lex_state = 5}, - [5159] = {.lex_state = 48, .external_lex_state = 2}, - [5160] = {.lex_state = 48, .external_lex_state = 2}, - [5161] = {.lex_state = 406, .external_lex_state = 2}, - [5162] = {.lex_state = 406, .external_lex_state = 5}, + [5156] = {.lex_state = 48, .external_lex_state = 2}, + [5157] = {.lex_state = 81, .external_lex_state = 2}, + [5158] = {.lex_state = 81, .external_lex_state = 2}, + [5159] = {.lex_state = 406, .external_lex_state = 5}, + [5160] = {.lex_state = 406, .external_lex_state = 5}, + [5161] = {.lex_state = 48, .external_lex_state = 2}, + [5162] = {.lex_state = 48, .external_lex_state = 2}, [5163] = {.lex_state = 406, .external_lex_state = 5}, - [5164] = {.lex_state = 48, .external_lex_state = 5}, - [5165] = {.lex_state = 48, .external_lex_state = 2}, - [5166] = {.lex_state = 406, .external_lex_state = 6}, - [5167] = {.lex_state = 48, .external_lex_state = 2}, - [5168] = {.lex_state = 48, .external_lex_state = 2}, + [5164] = {.lex_state = 406, .external_lex_state = 5}, + [5165] = {.lex_state = 406, .external_lex_state = 5}, + [5166] = {.lex_state = 406, .external_lex_state = 5}, + [5167] = {.lex_state = 406, .external_lex_state = 2}, + [5168] = {.lex_state = 406, .external_lex_state = 5}, [5169] = {.lex_state = 406, .external_lex_state = 5}, [5170] = {.lex_state = 406, .external_lex_state = 5}, [5171] = {.lex_state = 406, .external_lex_state = 5}, - [5172] = {.lex_state = 48, .external_lex_state = 2}, - [5173] = {.lex_state = 50, .external_lex_state = 2}, - [5174] = {.lex_state = 406, .external_lex_state = 8}, - [5175] = {.lex_state = 48, .external_lex_state = 2}, - [5176] = {.lex_state = 406, .external_lex_state = 5}, - [5177] = {.lex_state = 406, .external_lex_state = 6}, - [5178] = {.lex_state = 48, .external_lex_state = 2}, - [5179] = {.lex_state = 75, .external_lex_state = 2}, - [5180] = {.lex_state = 48, .external_lex_state = 2}, - [5181] = {.lex_state = 48, .external_lex_state = 2}, - [5182] = {.lex_state = 50, .external_lex_state = 2}, + [5172] = {.lex_state = 406, .external_lex_state = 2}, + [5173] = {.lex_state = 406, .external_lex_state = 2}, + [5174] = {.lex_state = 406, .external_lex_state = 5}, + [5175] = {.lex_state = 406, .external_lex_state = 5}, + [5176] = {.lex_state = 406, .external_lex_state = 8}, + [5177] = {.lex_state = 406, .external_lex_state = 5}, + [5178] = {.lex_state = 406, .external_lex_state = 5}, + [5179] = {.lex_state = 406, .external_lex_state = 5}, + [5180] = {.lex_state = 406, .external_lex_state = 5}, + [5181] = {.lex_state = 406, .external_lex_state = 6}, + [5182] = {.lex_state = 406, .external_lex_state = 2}, [5183] = {.lex_state = 406, .external_lex_state = 5}, - [5184] = {.lex_state = 48, .external_lex_state = 2}, + [5184] = {.lex_state = 406, .external_lex_state = 6}, [5185] = {.lex_state = 406, .external_lex_state = 5}, - [5186] = {.lex_state = 81, .external_lex_state = 2}, - [5187] = {.lex_state = 406, .external_lex_state = 5}, - [5188] = {.lex_state = 81, .external_lex_state = 2}, - [5189] = {.lex_state = 81, .external_lex_state = 2}, - [5190] = {.lex_state = 406, .external_lex_state = 2}, - [5191] = {.lex_state = 48, .external_lex_state = 2}, - [5192] = {.lex_state = 406, .external_lex_state = 5}, + [5186] = {.lex_state = 406, .external_lex_state = 5}, + [5187] = {.lex_state = 406, .external_lex_state = 6}, + [5188] = {.lex_state = 406, .external_lex_state = 5}, + [5189] = {.lex_state = 406, .external_lex_state = 5}, + [5190] = {.lex_state = 406, .external_lex_state = 5}, + [5191] = {.lex_state = 50, .external_lex_state = 2}, + [5192] = {.lex_state = 50, .external_lex_state = 2}, [5193] = {.lex_state = 406, .external_lex_state = 5}, - [5194] = {.lex_state = 406, .external_lex_state = 5}, - [5195] = {.lex_state = 48, .external_lex_state = 2}, - [5196] = {.lex_state = 406, .external_lex_state = 5}, + [5194] = {.lex_state = 406, .external_lex_state = 6}, + [5195] = {.lex_state = 75, .external_lex_state = 2}, + [5196] = {.lex_state = 406, .external_lex_state = 8}, [5197] = {.lex_state = 48, .external_lex_state = 2}, - [5198] = {.lex_state = 48, .external_lex_state = 5}, - [5199] = {.lex_state = 49, .external_lex_state = 2}, - [5200] = {.lex_state = 406, .external_lex_state = 2}, - [5201] = {.lex_state = 48, .external_lex_state = 2}, - [5202] = {.lex_state = 406, .external_lex_state = 5}, - [5203] = {.lex_state = 406, .external_lex_state = 5}, - [5204] = {.lex_state = 406, .external_lex_state = 5}, + [5198] = {.lex_state = 406, .external_lex_state = 6}, + [5199] = {.lex_state = 48, .external_lex_state = 2}, + [5200] = {.lex_state = 406, .external_lex_state = 5}, + [5201] = {.lex_state = 406, .external_lex_state = 2}, + [5202] = {.lex_state = 48, .external_lex_state = 5}, + [5203] = {.lex_state = 406, .external_lex_state = 6}, + [5204] = {.lex_state = 48, .external_lex_state = 2}, [5205] = {.lex_state = 406, .external_lex_state = 5}, [5206] = {.lex_state = 406, .external_lex_state = 5}, - [5207] = {.lex_state = 406, .external_lex_state = 5}, + [5207] = {.lex_state = 81, .external_lex_state = 2}, [5208] = {.lex_state = 48, .external_lex_state = 2}, - [5209] = {.lex_state = 406, .external_lex_state = 5}, + [5209] = {.lex_state = 48, .external_lex_state = 2}, [5210] = {.lex_state = 406, .external_lex_state = 5}, [5211] = {.lex_state = 406, .external_lex_state = 5}, - [5212] = {.lex_state = 48, .external_lex_state = 2}, - [5213] = {.lex_state = 406, .external_lex_state = 2}, + [5212] = {.lex_state = 406, .external_lex_state = 5}, + [5213] = {.lex_state = 406, .external_lex_state = 5}, [5214] = {.lex_state = 406, .external_lex_state = 5}, [5215] = {.lex_state = 406, .external_lex_state = 5}, [5216] = {.lex_state = 406, .external_lex_state = 5}, - [5217] = {.lex_state = 406, .external_lex_state = 5}, + [5217] = {.lex_state = 48, .external_lex_state = 2}, [5218] = {.lex_state = 406, .external_lex_state = 5}, - [5219] = {.lex_state = 406, .external_lex_state = 5}, + [5219] = {.lex_state = 75, .external_lex_state = 2}, [5220] = {.lex_state = 406, .external_lex_state = 5}, - [5221] = {.lex_state = 48, .external_lex_state = 2}, - [5222] = {.lex_state = 406, .external_lex_state = 2}, + [5221] = {.lex_state = 406, .external_lex_state = 5}, + [5222] = {.lex_state = 406, .external_lex_state = 5}, [5223] = {.lex_state = 406, .external_lex_state = 5}, - [5224] = {.lex_state = 406, .external_lex_state = 5}, - [5225] = {.lex_state = 48, .external_lex_state = 5}, - [5226] = {.lex_state = 406, .external_lex_state = 5}, - [5227] = {.lex_state = 48, .external_lex_state = 2}, + [5224] = {.lex_state = 48, .external_lex_state = 2}, + [5225] = {.lex_state = 406, .external_lex_state = 5}, + [5226] = {.lex_state = 406, .external_lex_state = 6}, + [5227] = {.lex_state = 48, .external_lex_state = 5}, [5228] = {.lex_state = 406, .external_lex_state = 5}, [5229] = {.lex_state = 406, .external_lex_state = 5}, [5230] = {.lex_state = 406, .external_lex_state = 5}, - [5231] = {.lex_state = 406, .external_lex_state = 2}, - [5232] = {.lex_state = 406, .external_lex_state = 5}, - [5233] = {.lex_state = 406, .external_lex_state = 2}, - [5234] = {.lex_state = 406, .external_lex_state = 6}, - [5235] = {.lex_state = 48, .external_lex_state = 2}, + [5231] = {.lex_state = 406, .external_lex_state = 5}, + [5232] = {.lex_state = 406, .external_lex_state = 2}, + [5233] = {.lex_state = 48, .external_lex_state = 5}, + [5234] = {.lex_state = 406, .external_lex_state = 5}, + [5235] = {.lex_state = 406, .external_lex_state = 5}, [5236] = {.lex_state = 406, .external_lex_state = 5}, - [5237] = {.lex_state = 48, .external_lex_state = 2}, + [5237] = {.lex_state = 406, .external_lex_state = 5}, [5238] = {.lex_state = 406, .external_lex_state = 5}, - [5239] = {.lex_state = 406, .external_lex_state = 5}, - [5240] = {.lex_state = 406, .external_lex_state = 2}, + [5239] = {.lex_state = 49, .external_lex_state = 5}, + [5240] = {.lex_state = 406, .external_lex_state = 5}, [5241] = {.lex_state = 406, .external_lex_state = 5}, - [5242] = {.lex_state = 75, .external_lex_state = 2}, - [5243] = {.lex_state = 75, .external_lex_state = 2}, - [5244] = {.lex_state = 50, .external_lex_state = 2}, - [5245] = {.lex_state = 48, .external_lex_state = 2}, - [5246] = {.lex_state = 406, .external_lex_state = 2}, - [5247] = {.lex_state = 406, .external_lex_state = 5}, + [5242] = {.lex_state = 406, .external_lex_state = 5}, + [5243] = {.lex_state = 406, .external_lex_state = 5}, + [5244] = {.lex_state = 48, .external_lex_state = 5}, + [5245] = {.lex_state = 406, .external_lex_state = 2}, + [5246] = {.lex_state = 406, .external_lex_state = 5}, + [5247] = {.lex_state = 406, .external_lex_state = 6}, [5248] = {.lex_state = 406, .external_lex_state = 5}, - [5249] = {.lex_state = 406, .external_lex_state = 6}, - [5250] = {.lex_state = 406, .external_lex_state = 5}, + [5249] = {.lex_state = 406, .external_lex_state = 5}, + [5250] = {.lex_state = 81, .external_lex_state = 2}, [5251] = {.lex_state = 406, .external_lex_state = 5}, - [5252] = {.lex_state = 406, .external_lex_state = 5}, - [5253] = {.lex_state = 406, .external_lex_state = 5}, - [5254] = {.lex_state = 48, .external_lex_state = 2}, + [5252] = {.lex_state = 406, .external_lex_state = 2}, + [5253] = {.lex_state = 81, .external_lex_state = 2}, + [5254] = {.lex_state = 406, .external_lex_state = 6}, [5255] = {.lex_state = 406, .external_lex_state = 5}, - [5256] = {.lex_state = 406, .external_lex_state = 5}, + [5256] = {.lex_state = 406, .external_lex_state = 8}, [5257] = {.lex_state = 406, .external_lex_state = 5}, - [5258] = {.lex_state = 406, .external_lex_state = 8}, - [5259] = {.lex_state = 406, .external_lex_state = 6}, + [5258] = {.lex_state = 406, .external_lex_state = 5}, + [5259] = {.lex_state = 48, .external_lex_state = 5}, [5260] = {.lex_state = 406, .external_lex_state = 5}, - [5261] = {.lex_state = 48, .external_lex_state = 2}, + [5261] = {.lex_state = 406, .external_lex_state = 6}, [5262] = {.lex_state = 406, .external_lex_state = 5}, - [5263] = {.lex_state = 48, .external_lex_state = 2}, + [5263] = {.lex_state = 406, .external_lex_state = 5}, [5264] = {.lex_state = 406, .external_lex_state = 5}, - [5265] = {.lex_state = 406, .external_lex_state = 5}, - [5266] = {.lex_state = 50, .external_lex_state = 2}, - [5267] = {.lex_state = 48, .external_lex_state = 5}, - [5268] = {.lex_state = 406, .external_lex_state = 5}, - [5269] = {.lex_state = 48, .external_lex_state = 5}, - [5270] = {.lex_state = 48, .external_lex_state = 2}, - [5271] = {.lex_state = 406, .external_lex_state = 5}, - [5272] = {.lex_state = 406, .external_lex_state = 6}, - [5273] = {.lex_state = 48, .external_lex_state = 2}, - [5274] = {.lex_state = 48, .external_lex_state = 2}, - [5275] = {.lex_state = 406, .external_lex_state = 2}, + [5265] = {.lex_state = 48, .external_lex_state = 2}, + [5266] = {.lex_state = 406, .external_lex_state = 6}, + [5267] = {.lex_state = 406, .external_lex_state = 6}, + [5268] = {.lex_state = 48, .external_lex_state = 5}, + [5269] = {.lex_state = 406, .external_lex_state = 5}, + [5270] = {.lex_state = 406, .external_lex_state = 5}, + [5271] = {.lex_state = 75, .external_lex_state = 2}, + [5272] = {.lex_state = 406, .external_lex_state = 5}, + [5273] = {.lex_state = 406, .external_lex_state = 5}, + [5274] = {.lex_state = 406, .external_lex_state = 6}, + [5275] = {.lex_state = 81, .external_lex_state = 2}, [5276] = {.lex_state = 406, .external_lex_state = 5}, - [5277] = {.lex_state = 406, .external_lex_state = 5}, - [5278] = {.lex_state = 48, .external_lex_state = 2}, - [5279] = {.lex_state = 48, .external_lex_state = 2}, - [5280] = {.lex_state = 406, .external_lex_state = 6}, - [5281] = {.lex_state = 81, .external_lex_state = 2}, + [5277] = {.lex_state = 81, .external_lex_state = 2}, + [5278] = {.lex_state = 406, .external_lex_state = 5}, + [5279] = {.lex_state = 406, .external_lex_state = 2}, + [5280] = {.lex_state = 81, .external_lex_state = 2}, + [5281] = {.lex_state = 406, .external_lex_state = 5}, [5282] = {.lex_state = 406, .external_lex_state = 5}, - [5283] = {.lex_state = 406, .external_lex_state = 5}, + [5283] = {.lex_state = 48, .external_lex_state = 2}, [5284] = {.lex_state = 406, .external_lex_state = 5}, [5285] = {.lex_state = 406, .external_lex_state = 5}, [5286] = {.lex_state = 48, .external_lex_state = 2}, - [5287] = {.lex_state = 48, .external_lex_state = 2}, + [5287] = {.lex_state = 406, .external_lex_state = 5}, [5288] = {.lex_state = 406, .external_lex_state = 5}, - [5289] = {.lex_state = 406, .external_lex_state = 5}, - [5290] = {.lex_state = 75, .external_lex_state = 2}, - [5291] = {.lex_state = 48, .external_lex_state = 5}, - [5292] = {.lex_state = 406, .external_lex_state = 6}, + [5289] = {.lex_state = 81, .external_lex_state = 2}, + [5290] = {.lex_state = 48, .external_lex_state = 2}, + [5291] = {.lex_state = 48, .external_lex_state = 2}, + [5292] = {.lex_state = 81, .external_lex_state = 2}, [5293] = {.lex_state = 406, .external_lex_state = 8}, - [5294] = {.lex_state = 406, .external_lex_state = 5}, - [5295] = {.lex_state = 406, .external_lex_state = 5}, + [5294] = {.lex_state = 81, .external_lex_state = 2}, + [5295] = {.lex_state = 81, .external_lex_state = 2}, [5296] = {.lex_state = 406, .external_lex_state = 5}, - [5297] = {.lex_state = 48, .external_lex_state = 2}, - [5298] = {.lex_state = 406, .external_lex_state = 5}, + [5297] = {.lex_state = 406, .external_lex_state = 5}, + [5298] = {.lex_state = 81, .external_lex_state = 2}, [5299] = {.lex_state = 48, .external_lex_state = 2}, - [5300] = {.lex_state = 406, .external_lex_state = 5}, - [5301] = {.lex_state = 48, .external_lex_state = 2}, + [5300] = {.lex_state = 81, .external_lex_state = 2}, + [5301] = {.lex_state = 406, .external_lex_state = 6}, [5302] = {.lex_state = 406, .external_lex_state = 5}, [5303] = {.lex_state = 406, .external_lex_state = 5}, - [5304] = {.lex_state = 48, .external_lex_state = 2}, + [5304] = {.lex_state = 406, .external_lex_state = 5}, [5305] = {.lex_state = 406, .external_lex_state = 5}, - [5306] = {.lex_state = 406, .external_lex_state = 5}, - [5307] = {.lex_state = 48, .external_lex_state = 2}, - [5308] = {.lex_state = 406, .external_lex_state = 5}, - [5309] = {.lex_state = 48, .external_lex_state = 2}, + [5306] = {.lex_state = 406, .external_lex_state = 6}, + [5307] = {.lex_state = 81, .external_lex_state = 2}, + [5308] = {.lex_state = 81, .external_lex_state = 2}, + [5309] = {.lex_state = 406, .external_lex_state = 5}, [5310] = {.lex_state = 406, .external_lex_state = 5}, - [5311] = {.lex_state = 81, .external_lex_state = 2}, + [5311] = {.lex_state = 49, .external_lex_state = 5}, [5312] = {.lex_state = 406, .external_lex_state = 5}, - [5313] = {.lex_state = 48, .external_lex_state = 2}, - [5314] = {.lex_state = 406, .external_lex_state = 5}, - [5315] = {.lex_state = 81, .external_lex_state = 2}, - [5316] = {.lex_state = 48, .external_lex_state = 2}, + [5313] = {.lex_state = 406, .external_lex_state = 2}, + [5314] = {.lex_state = 48, .external_lex_state = 5}, + [5315] = {.lex_state = 406, .external_lex_state = 5}, + [5316] = {.lex_state = 406, .external_lex_state = 5}, [5317] = {.lex_state = 406, .external_lex_state = 5}, [5318] = {.lex_state = 406, .external_lex_state = 5}, - [5319] = {.lex_state = 406, .external_lex_state = 2}, - [5320] = {.lex_state = 406, .external_lex_state = 5}, - [5321] = {.lex_state = 48, .external_lex_state = 2}, + [5319] = {.lex_state = 406, .external_lex_state = 5}, + [5320] = {.lex_state = 48, .external_lex_state = 5}, + [5321] = {.lex_state = 406, .external_lex_state = 5}, [5322] = {.lex_state = 406, .external_lex_state = 5}, [5323] = {.lex_state = 406, .external_lex_state = 5}, - [5324] = {.lex_state = 81, .external_lex_state = 2}, - [5325] = {.lex_state = 48, .external_lex_state = 2}, - [5326] = {.lex_state = 48, .external_lex_state = 5}, + [5324] = {.lex_state = 406, .external_lex_state = 5}, + [5325] = {.lex_state = 406, .external_lex_state = 5}, + [5326] = {.lex_state = 406, .external_lex_state = 5}, [5327] = {.lex_state = 406, .external_lex_state = 2}, [5328] = {.lex_state = 406, .external_lex_state = 5}, - [5329] = {.lex_state = 406, .external_lex_state = 5}, + [5329] = {.lex_state = 406, .external_lex_state = 2}, [5330] = {.lex_state = 406, .external_lex_state = 5}, [5331] = {.lex_state = 406, .external_lex_state = 5}, [5332] = {.lex_state = 406, .external_lex_state = 5}, [5333] = {.lex_state = 406, .external_lex_state = 5}, - [5334] = {.lex_state = 48, .external_lex_state = 2}, - [5335] = {.lex_state = 48, .external_lex_state = 2}, - [5336] = {.lex_state = 48, .external_lex_state = 2}, + [5334] = {.lex_state = 48, .external_lex_state = 5}, + [5335] = {.lex_state = 406, .external_lex_state = 5}, + [5336] = {.lex_state = 406, .external_lex_state = 6}, [5337] = {.lex_state = 406, .external_lex_state = 5}, - [5338] = {.lex_state = 81, .external_lex_state = 2}, - [5339] = {.lex_state = 48, .external_lex_state = 2}, - [5340] = {.lex_state = 406, .external_lex_state = 5}, - [5341] = {.lex_state = 406, .external_lex_state = 2}, + [5338] = {.lex_state = 406, .external_lex_state = 5}, + [5339] = {.lex_state = 406, .external_lex_state = 6}, + [5340] = {.lex_state = 406, .external_lex_state = 2}, + [5341] = {.lex_state = 406, .external_lex_state = 5}, [5342] = {.lex_state = 406, .external_lex_state = 5}, - [5343] = {.lex_state = 406, .external_lex_state = 5}, - [5344] = {.lex_state = 48, .external_lex_state = 2}, - [5345] = {.lex_state = 406, .external_lex_state = 5}, - [5346] = {.lex_state = 63, .external_lex_state = 2}, - [5347] = {.lex_state = 48, .external_lex_state = 2}, + [5343] = {.lex_state = 48, .external_lex_state = 5}, + [5344] = {.lex_state = 406, .external_lex_state = 2}, + [5345] = {.lex_state = 406, .external_lex_state = 6}, + [5346] = {.lex_state = 406, .external_lex_state = 8}, + [5347] = {.lex_state = 406, .external_lex_state = 5}, [5348] = {.lex_state = 406, .external_lex_state = 5}, [5349] = {.lex_state = 48, .external_lex_state = 2}, [5350] = {.lex_state = 406, .external_lex_state = 5}, - [5351] = {.lex_state = 48, .external_lex_state = 2}, + [5351] = {.lex_state = 406, .external_lex_state = 5}, [5352] = {.lex_state = 406, .external_lex_state = 5}, - [5353] = {.lex_state = 406, .external_lex_state = 5}, - [5354] = {.lex_state = 406, .external_lex_state = 5}, - [5355] = {.lex_state = 48, .external_lex_state = 2}, - [5356] = {.lex_state = 406, .external_lex_state = 2}, - [5357] = {.lex_state = 406, .external_lex_state = 5}, + [5353] = {.lex_state = 48, .external_lex_state = 5}, + [5354] = {.lex_state = 48, .external_lex_state = 2}, + [5355] = {.lex_state = 406, .external_lex_state = 5}, + [5356] = {.lex_state = 406, .external_lex_state = 5}, + [5357] = {.lex_state = 406, .external_lex_state = 6}, [5358] = {.lex_state = 406, .external_lex_state = 5}, - [5359] = {.lex_state = 48, .external_lex_state = 2}, + [5359] = {.lex_state = 406, .external_lex_state = 5}, [5360] = {.lex_state = 406, .external_lex_state = 5}, [5361] = {.lex_state = 406, .external_lex_state = 5}, [5362] = {.lex_state = 406, .external_lex_state = 5}, - [5363] = {.lex_state = 48, .external_lex_state = 2}, + [5363] = {.lex_state = 406, .external_lex_state = 5}, [5364] = {.lex_state = 406, .external_lex_state = 5}, [5365] = {.lex_state = 406, .external_lex_state = 5}, - [5366] = {.lex_state = 48, .external_lex_state = 2}, - [5367] = {.lex_state = 48, .external_lex_state = 2}, + [5366] = {.lex_state = 406, .external_lex_state = 5}, + [5367] = {.lex_state = 406, .external_lex_state = 5}, [5368] = {.lex_state = 406, .external_lex_state = 5}, - [5369] = {.lex_state = 81, .external_lex_state = 2}, - [5370] = {.lex_state = 406, .external_lex_state = 5}, - [5371] = {.lex_state = 406, .external_lex_state = 5}, - [5372] = {.lex_state = 49, .external_lex_state = 5}, - [5373] = {.lex_state = 49, .external_lex_state = 5}, + [5369] = {.lex_state = 75, .external_lex_state = 2}, + [5370] = {.lex_state = 406, .external_lex_state = 6}, + [5371] = {.lex_state = 406, .external_lex_state = 8}, + [5372] = {.lex_state = 48, .external_lex_state = 2}, + [5373] = {.lex_state = 406, .external_lex_state = 5}, [5374] = {.lex_state = 406, .external_lex_state = 5}, - [5375] = {.lex_state = 406, .external_lex_state = 2}, - [5376] = {.lex_state = 48, .external_lex_state = 2}, - [5377] = {.lex_state = 406, .external_lex_state = 5}, + [5375] = {.lex_state = 406, .external_lex_state = 5}, + [5376] = {.lex_state = 406, .external_lex_state = 5}, + [5377] = {.lex_state = 48, .external_lex_state = 2}, [5378] = {.lex_state = 406, .external_lex_state = 5}, - [5379] = {.lex_state = 406, .external_lex_state = 8}, - [5380] = {.lex_state = 75, .external_lex_state = 2}, - [5381] = {.lex_state = 406, .external_lex_state = 5}, - [5382] = {.lex_state = 406, .external_lex_state = 5}, - [5383] = {.lex_state = 406, .external_lex_state = 8}, + [5379] = {.lex_state = 406, .external_lex_state = 2}, + [5380] = {.lex_state = 406, .external_lex_state = 2}, + [5381] = {.lex_state = 48, .external_lex_state = 2}, + [5382] = {.lex_state = 406, .external_lex_state = 2}, + [5383] = {.lex_state = 48, .external_lex_state = 5}, [5384] = {.lex_state = 406, .external_lex_state = 5}, - [5385] = {.lex_state = 406, .external_lex_state = 6}, - [5386] = {.lex_state = 406, .external_lex_state = 6}, - [5387] = {.lex_state = 48, .external_lex_state = 5}, - [5388] = {.lex_state = 406, .external_lex_state = 5}, - [5389] = {.lex_state = 81, .external_lex_state = 2}, - [5390] = {.lex_state = 406, .external_lex_state = 5}, - [5391] = {.lex_state = 406, .external_lex_state = 5}, + [5385] = {.lex_state = 48, .external_lex_state = 2}, + [5386] = {.lex_state = 48, .external_lex_state = 2}, + [5387] = {.lex_state = 49, .external_lex_state = 2}, + [5388] = {.lex_state = 48, .external_lex_state = 2}, + [5389] = {.lex_state = 48, .external_lex_state = 2}, + [5390] = {.lex_state = 48, .external_lex_state = 2}, + [5391] = {.lex_state = 49, .external_lex_state = 2}, [5392] = {.lex_state = 406, .external_lex_state = 5}, - [5393] = {.lex_state = 48, .external_lex_state = 2}, - [5394] = {.lex_state = 81, .external_lex_state = 2}, + [5393] = {.lex_state = 406, .external_lex_state = 5}, + [5394] = {.lex_state = 406, .external_lex_state = 8}, [5395] = {.lex_state = 48, .external_lex_state = 2}, - [5396] = {.lex_state = 406, .external_lex_state = 5}, - [5397] = {.lex_state = 406, .external_lex_state = 5}, - [5398] = {.lex_state = 406, .external_lex_state = 5}, + [5396] = {.lex_state = 406, .external_lex_state = 2}, + [5397] = {.lex_state = 48, .external_lex_state = 2}, + [5398] = {.lex_state = 406, .external_lex_state = 2}, [5399] = {.lex_state = 406, .external_lex_state = 5}, - [5400] = {.lex_state = 49, .external_lex_state = 2}, - [5401] = {.lex_state = 49, .external_lex_state = 2}, - [5402] = {.lex_state = 75, .external_lex_state = 2}, - [5403] = {.lex_state = 406, .external_lex_state = 2}, + [5400] = {.lex_state = 406, .external_lex_state = 5}, + [5401] = {.lex_state = 63, .external_lex_state = 2}, + [5402] = {.lex_state = 48, .external_lex_state = 2}, + [5403] = {.lex_state = 81, .external_lex_state = 2}, [5404] = {.lex_state = 406, .external_lex_state = 5}, - [5405] = {.lex_state = 48, .external_lex_state = 5}, - [5406] = {.lex_state = 81, .external_lex_state = 2}, - [5407] = {.lex_state = 48, .external_lex_state = 2}, - [5408] = {.lex_state = 48, .external_lex_state = 2}, + [5405] = {.lex_state = 81, .external_lex_state = 2}, + [5406] = {.lex_state = 48, .external_lex_state = 5}, + [5407] = {.lex_state = 406, .external_lex_state = 5}, + [5408] = {.lex_state = 59, .external_lex_state = 9}, [5409] = {.lex_state = 406, .external_lex_state = 5}, - [5410] = {.lex_state = 406, .external_lex_state = 5}, - [5411] = {.lex_state = 48, .external_lex_state = 2}, - [5412] = {.lex_state = 406, .external_lex_state = 5}, - [5413] = {.lex_state = 48, .external_lex_state = 2}, - [5414] = {.lex_state = 406, .external_lex_state = 2}, - [5415] = {.lex_state = 406, .external_lex_state = 2}, - [5416] = {.lex_state = 81, .external_lex_state = 2}, - [5417] = {.lex_state = 406, .external_lex_state = 5}, - [5418] = {.lex_state = 406, .external_lex_state = 5}, - [5419] = {.lex_state = 406, .external_lex_state = 5}, - [5420] = {.lex_state = 406, .external_lex_state = 5}, - [5421] = {.lex_state = 406, .external_lex_state = 5}, - [5422] = {.lex_state = 406, .external_lex_state = 5}, - [5423] = {.lex_state = 81, .external_lex_state = 2}, - [5424] = {.lex_state = 406, .external_lex_state = 5}, - [5425] = {.lex_state = 406, .external_lex_state = 5}, - [5426] = {.lex_state = 406, .external_lex_state = 5}, - [5427] = {.lex_state = 406, .external_lex_state = 5}, - [5428] = {.lex_state = 406, .external_lex_state = 2}, + [5410] = {.lex_state = 406, .external_lex_state = 2}, + [5411] = {.lex_state = 406, .external_lex_state = 5}, + [5412] = {.lex_state = 48, .external_lex_state = 2}, + [5413] = {.lex_state = 406, .external_lex_state = 5}, + [5414] = {.lex_state = 406, .external_lex_state = 5}, + [5415] = {.lex_state = 406, .external_lex_state = 5}, + [5416] = {.lex_state = 406, .external_lex_state = 5}, + [5417] = {.lex_state = 48, .external_lex_state = 2}, + [5418] = {.lex_state = 59, .external_lex_state = 9}, + [5419] = {.lex_state = 68, .external_lex_state = 9}, + [5420] = {.lex_state = 59, .external_lex_state = 9}, + [5421] = {.lex_state = 50, .external_lex_state = 2}, + [5422] = {.lex_state = 27, .external_lex_state = 2}, + [5423] = {.lex_state = 27, .external_lex_state = 2}, + [5424] = {.lex_state = 27, .external_lex_state = 2}, + [5425] = {.lex_state = 68, .external_lex_state = 9}, + [5426] = {.lex_state = 48, .external_lex_state = 2}, + [5427] = {.lex_state = 48, .external_lex_state = 2}, + [5428] = {.lex_state = 48, .external_lex_state = 2}, [5429] = {.lex_state = 406, .external_lex_state = 5}, [5430] = {.lex_state = 406, .external_lex_state = 5}, [5431] = {.lex_state = 406, .external_lex_state = 5}, [5432] = {.lex_state = 406, .external_lex_state = 5}, [5433] = {.lex_state = 406, .external_lex_state = 5}, [5434] = {.lex_state = 406, .external_lex_state = 5}, - [5435] = {.lex_state = 48, .external_lex_state = 5}, + [5435] = {.lex_state = 406, .external_lex_state = 5}, [5436] = {.lex_state = 406, .external_lex_state = 5}, - [5437] = {.lex_state = 406, .external_lex_state = 6}, - [5438] = {.lex_state = 406, .external_lex_state = 5}, + [5437] = {.lex_state = 48, .external_lex_state = 2}, + [5438] = {.lex_state = 48, .external_lex_state = 2}, [5439] = {.lex_state = 406, .external_lex_state = 5}, - [5440] = {.lex_state = 48, .external_lex_state = 2}, - [5441] = {.lex_state = 406, .external_lex_state = 5}, + [5440] = {.lex_state = 406, .external_lex_state = 5}, + [5441] = {.lex_state = 48, .external_lex_state = 2}, [5442] = {.lex_state = 406, .external_lex_state = 5}, [5443] = {.lex_state = 406, .external_lex_state = 5}, - [5444] = {.lex_state = 48, .external_lex_state = 2}, + [5444] = {.lex_state = 406, .external_lex_state = 5}, [5445] = {.lex_state = 48, .external_lex_state = 2}, [5446] = {.lex_state = 48, .external_lex_state = 2}, - [5447] = {.lex_state = 48, .external_lex_state = 2}, + [5447] = {.lex_state = 406, .external_lex_state = 2}, [5448] = {.lex_state = 48, .external_lex_state = 2}, - [5449] = {.lex_state = 406, .external_lex_state = 6}, - [5450] = {.lex_state = 48, .external_lex_state = 2}, - [5451] = {.lex_state = 48, .external_lex_state = 5}, - [5452] = {.lex_state = 48, .external_lex_state = 2}, + [5449] = {.lex_state = 406, .external_lex_state = 2}, + [5450] = {.lex_state = 59, .external_lex_state = 9}, + [5451] = {.lex_state = 48, .external_lex_state = 2}, + [5452] = {.lex_state = 68, .external_lex_state = 9}, [5453] = {.lex_state = 48, .external_lex_state = 2}, - [5454] = {.lex_state = 81, .external_lex_state = 2}, - [5455] = {.lex_state = 406, .external_lex_state = 2}, - [5456] = {.lex_state = 49, .external_lex_state = 2}, + [5454] = {.lex_state = 59, .external_lex_state = 9}, + [5455] = {.lex_state = 68, .external_lex_state = 9}, + [5456] = {.lex_state = 84, .external_lex_state = 2}, [5457] = {.lex_state = 406, .external_lex_state = 5}, [5458] = {.lex_state = 406, .external_lex_state = 5}, - [5459] = {.lex_state = 81, .external_lex_state = 2}, - [5460] = {.lex_state = 81, .external_lex_state = 2}, - [5461] = {.lex_state = 48, .external_lex_state = 2}, - [5462] = {.lex_state = 406, .external_lex_state = 6}, + [5459] = {.lex_state = 406, .external_lex_state = 5}, + [5460] = {.lex_state = 59, .external_lex_state = 9}, + [5461] = {.lex_state = 68, .external_lex_state = 9}, + [5462] = {.lex_state = 48, .external_lex_state = 2}, [5463] = {.lex_state = 48, .external_lex_state = 2}, - [5464] = {.lex_state = 406, .external_lex_state = 8}, + [5464] = {.lex_state = 406, .external_lex_state = 5}, [5465] = {.lex_state = 406, .external_lex_state = 5}, [5466] = {.lex_state = 406, .external_lex_state = 5}, [5467] = {.lex_state = 406, .external_lex_state = 5}, - [5468] = {.lex_state = 49, .external_lex_state = 2}, - [5469] = {.lex_state = 406, .external_lex_state = 5}, + [5468] = {.lex_state = 48, .external_lex_state = 2}, + [5469] = {.lex_state = 406, .external_lex_state = 7}, [5470] = {.lex_state = 406, .external_lex_state = 2}, - [5471] = {.lex_state = 406, .external_lex_state = 5}, + [5471] = {.lex_state = 48, .external_lex_state = 2}, [5472] = {.lex_state = 48, .external_lex_state = 2}, - [5473] = {.lex_state = 406, .external_lex_state = 2}, - [5474] = {.lex_state = 406, .external_lex_state = 2}, - [5475] = {.lex_state = 48, .external_lex_state = 2}, - [5476] = {.lex_state = 406, .external_lex_state = 8}, + [5473] = {.lex_state = 49, .external_lex_state = 2}, + [5474] = {.lex_state = 48, .external_lex_state = 2}, + [5475] = {.lex_state = 59, .external_lex_state = 9}, + [5476] = {.lex_state = 68, .external_lex_state = 9}, [5477] = {.lex_state = 406, .external_lex_state = 5}, - [5478] = {.lex_state = 48, .external_lex_state = 5}, - [5479] = {.lex_state = 48, .external_lex_state = 2}, - [5480] = {.lex_state = 406, .external_lex_state = 5}, - [5481] = {.lex_state = 406, .external_lex_state = 6}, - [5482] = {.lex_state = 406, .external_lex_state = 5}, - [5483] = {.lex_state = 81, .external_lex_state = 2}, - [5484] = {.lex_state = 406, .external_lex_state = 6}, + [5478] = {.lex_state = 406, .external_lex_state = 5}, + [5479] = {.lex_state = 406, .external_lex_state = 2}, + [5480] = {.lex_state = 48, .external_lex_state = 2}, + [5481] = {.lex_state = 406, .external_lex_state = 5}, + [5482] = {.lex_state = 59, .external_lex_state = 9}, + [5483] = {.lex_state = 68, .external_lex_state = 9}, + [5484] = {.lex_state = 406, .external_lex_state = 5}, [5485] = {.lex_state = 406, .external_lex_state = 5}, - [5486] = {.lex_state = 406, .external_lex_state = 5}, - [5487] = {.lex_state = 406, .external_lex_state = 5}, - [5488] = {.lex_state = 48, .external_lex_state = 2}, - [5489] = {.lex_state = 81, .external_lex_state = 2}, - [5490] = {.lex_state = 406, .external_lex_state = 5}, - [5491] = {.lex_state = 406, .external_lex_state = 5}, - [5492] = {.lex_state = 406, .external_lex_state = 5}, - [5493] = {.lex_state = 406, .external_lex_state = 5}, - [5494] = {.lex_state = 406, .external_lex_state = 5}, - [5495] = {.lex_state = 406, .external_lex_state = 5}, - [5496] = {.lex_state = 406, .external_lex_state = 2}, + [5486] = {.lex_state = 48, .external_lex_state = 2}, + [5487] = {.lex_state = 48, .external_lex_state = 2}, + [5488] = {.lex_state = 2, .external_lex_state = 2}, + [5489] = {.lex_state = 84, .external_lex_state = 2}, + [5490] = {.lex_state = 59, .external_lex_state = 9}, + [5491] = {.lex_state = 68, .external_lex_state = 9}, + [5492] = {.lex_state = 59, .external_lex_state = 9}, + [5493] = {.lex_state = 68, .external_lex_state = 9}, + [5494] = {.lex_state = 59, .external_lex_state = 9}, + [5495] = {.lex_state = 68, .external_lex_state = 9}, + [5496] = {.lex_state = 48, .external_lex_state = 2}, [5497] = {.lex_state = 48, .external_lex_state = 2}, - [5498] = {.lex_state = 48, .external_lex_state = 2}, - [5499] = {.lex_state = 406, .external_lex_state = 5}, - [5500] = {.lex_state = 406, .external_lex_state = 5}, - [5501] = {.lex_state = 48, .external_lex_state = 2}, - [5502] = {.lex_state = 75, .external_lex_state = 2}, - [5503] = {.lex_state = 48, .external_lex_state = 2}, + [5498] = {.lex_state = 59, .external_lex_state = 9}, + [5499] = {.lex_state = 68, .external_lex_state = 9}, + [5500] = {.lex_state = 48, .external_lex_state = 2}, + [5501] = {.lex_state = 406, .external_lex_state = 7}, + [5502] = {.lex_state = 406, .external_lex_state = 5}, + [5503] = {.lex_state = 406, .external_lex_state = 5}, [5504] = {.lex_state = 406, .external_lex_state = 5}, - [5505] = {.lex_state = 406, .external_lex_state = 6}, - [5506] = {.lex_state = 406, .external_lex_state = 6}, - [5507] = {.lex_state = 406, .external_lex_state = 5}, - [5508] = {.lex_state = 406, .external_lex_state = 5}, - [5509] = {.lex_state = 406, .external_lex_state = 5}, - [5510] = {.lex_state = 406, .external_lex_state = 2}, - [5511] = {.lex_state = 81, .external_lex_state = 2}, - [5512] = {.lex_state = 406, .external_lex_state = 2}, + [5505] = {.lex_state = 406, .external_lex_state = 5}, + [5506] = {.lex_state = 406, .external_lex_state = 5}, + [5507] = {.lex_state = 59, .external_lex_state = 9}, + [5508] = {.lex_state = 2, .external_lex_state = 2}, + [5509] = {.lex_state = 68, .external_lex_state = 9}, + [5510] = {.lex_state = 59, .external_lex_state = 9}, + [5511] = {.lex_state = 68, .external_lex_state = 9}, + [5512] = {.lex_state = 406, .external_lex_state = 5}, [5513] = {.lex_state = 406, .external_lex_state = 5}, - [5514] = {.lex_state = 81, .external_lex_state = 2}, - [5515] = {.lex_state = 406, .external_lex_state = 6}, - [5516] = {.lex_state = 406, .external_lex_state = 8}, - [5517] = {.lex_state = 81, .external_lex_state = 2}, - [5518] = {.lex_state = 406, .external_lex_state = 5}, - [5519] = {.lex_state = 406, .external_lex_state = 5}, + [5514] = {.lex_state = 406, .external_lex_state = 5}, + [5515] = {.lex_state = 406, .external_lex_state = 5}, + [5516] = {.lex_state = 406, .external_lex_state = 5}, + [5517] = {.lex_state = 406, .external_lex_state = 5}, + [5518] = {.lex_state = 59, .external_lex_state = 9}, + [5519] = {.lex_state = 68, .external_lex_state = 9}, [5520] = {.lex_state = 406, .external_lex_state = 5}, - [5521] = {.lex_state = 406, .external_lex_state = 5}, - [5522] = {.lex_state = 406, .external_lex_state = 6}, - [5523] = {.lex_state = 406, .external_lex_state = 5}, - [5524] = {.lex_state = 406, .external_lex_state = 5}, - [5525] = {.lex_state = 406, .external_lex_state = 5}, - [5526] = {.lex_state = 48, .external_lex_state = 5}, - [5527] = {.lex_state = 406, .external_lex_state = 5}, - [5528] = {.lex_state = 406, .external_lex_state = 5}, - [5529] = {.lex_state = 48, .external_lex_state = 2}, - [5530] = {.lex_state = 406, .external_lex_state = 5}, - [5531] = {.lex_state = 406, .external_lex_state = 2}, - [5532] = {.lex_state = 406, .external_lex_state = 5}, - [5533] = {.lex_state = 406, .external_lex_state = 6}, - [5534] = {.lex_state = 48, .external_lex_state = 2}, - [5535] = {.lex_state = 406, .external_lex_state = 5}, - [5536] = {.lex_state = 406, .external_lex_state = 5}, - [5537] = {.lex_state = 48, .external_lex_state = 2}, - [5538] = {.lex_state = 81, .external_lex_state = 2}, - [5539] = {.lex_state = 406, .external_lex_state = 5}, + [5521] = {.lex_state = 59, .external_lex_state = 9}, + [5522] = {.lex_state = 68, .external_lex_state = 9}, + [5523] = {.lex_state = 59, .external_lex_state = 9}, + [5524] = {.lex_state = 66, .external_lex_state = 2}, + [5525] = {.lex_state = 54, .external_lex_state = 2}, + [5526] = {.lex_state = 406, .external_lex_state = 5}, + [5527] = {.lex_state = 59, .external_lex_state = 9}, + [5528] = {.lex_state = 48, .external_lex_state = 2}, + [5529] = {.lex_state = 406, .external_lex_state = 5}, + [5530] = {.lex_state = 48, .external_lex_state = 2}, + [5531] = {.lex_state = 68, .external_lex_state = 9}, + [5532] = {.lex_state = 27, .external_lex_state = 2}, + [5533] = {.lex_state = 68, .external_lex_state = 9}, + [5534] = {.lex_state = 27, .external_lex_state = 2}, + [5535] = {.lex_state = 59, .external_lex_state = 9}, + [5536] = {.lex_state = 48, .external_lex_state = 2}, + [5537] = {.lex_state = 59, .external_lex_state = 9}, + [5538] = {.lex_state = 68, .external_lex_state = 9}, + [5539] = {.lex_state = 59, .external_lex_state = 9}, [5540] = {.lex_state = 406, .external_lex_state = 5}, - [5541] = {.lex_state = 48, .external_lex_state = 2}, - [5542] = {.lex_state = 48, .external_lex_state = 2}, - [5543] = {.lex_state = 406, .external_lex_state = 5}, - [5544] = {.lex_state = 406, .external_lex_state = 5}, - [5545] = {.lex_state = 81, .external_lex_state = 2}, - [5546] = {.lex_state = 406, .external_lex_state = 5}, + [5541] = {.lex_state = 406, .external_lex_state = 5}, + [5542] = {.lex_state = 406, .external_lex_state = 5}, + [5543] = {.lex_state = 68, .external_lex_state = 9}, + [5544] = {.lex_state = 406, .external_lex_state = 2}, + [5545] = {.lex_state = 406, .external_lex_state = 5}, + [5546] = {.lex_state = 406, .external_lex_state = 7}, [5547] = {.lex_state = 406, .external_lex_state = 5}, - [5548] = {.lex_state = 406, .external_lex_state = 5}, + [5548] = {.lex_state = 84, .external_lex_state = 2}, [5549] = {.lex_state = 406, .external_lex_state = 5}, [5550] = {.lex_state = 406, .external_lex_state = 5}, - [5551] = {.lex_state = 406, .external_lex_state = 5}, - [5552] = {.lex_state = 48, .external_lex_state = 2}, - [5553] = {.lex_state = 406, .external_lex_state = 5}, - [5554] = {.lex_state = 406, .external_lex_state = 5}, + [5551] = {.lex_state = 24, .external_lex_state = 2}, + [5552] = {.lex_state = 406, .external_lex_state = 2}, + [5553] = {.lex_state = 48, .external_lex_state = 2}, + [5554] = {.lex_state = 48, .external_lex_state = 2}, [5555] = {.lex_state = 406, .external_lex_state = 2}, - [5556] = {.lex_state = 68, .external_lex_state = 9}, - [5557] = {.lex_state = 48, .external_lex_state = 2}, - [5558] = {.lex_state = 406, .external_lex_state = 6}, - [5559] = {.lex_state = 48, .external_lex_state = 2}, - [5560] = {.lex_state = 406, .external_lex_state = 2}, - [5561] = {.lex_state = 406, .external_lex_state = 5}, - [5562] = {.lex_state = 406, .external_lex_state = 5}, - [5563] = {.lex_state = 406, .external_lex_state = 5}, - [5564] = {.lex_state = 406, .external_lex_state = 5}, - [5565] = {.lex_state = 406, .external_lex_state = 5}, - [5566] = {.lex_state = 406, .external_lex_state = 5}, - [5567] = {.lex_state = 48, .external_lex_state = 2}, + [5556] = {.lex_state = 48, .external_lex_state = 2}, + [5557] = {.lex_state = 406, .external_lex_state = 2}, + [5558] = {.lex_state = 48, .external_lex_state = 2}, + [5559] = {.lex_state = 68, .external_lex_state = 9}, + [5560] = {.lex_state = 59, .external_lex_state = 9}, + [5561] = {.lex_state = 66, .external_lex_state = 2}, + [5562] = {.lex_state = 406, .external_lex_state = 2}, + [5563] = {.lex_state = 406, .external_lex_state = 2}, + [5564] = {.lex_state = 54, .external_lex_state = 2}, + [5565] = {.lex_state = 68, .external_lex_state = 9}, + [5566] = {.lex_state = 406, .external_lex_state = 2}, + [5567] = {.lex_state = 59, .external_lex_state = 9}, [5568] = {.lex_state = 68, .external_lex_state = 9}, - [5569] = {.lex_state = 59, .external_lex_state = 9}, - [5570] = {.lex_state = 84, .external_lex_state = 2}, - [5571] = {.lex_state = 48, .external_lex_state = 2}, + [5569] = {.lex_state = 406, .external_lex_state = 5}, + [5570] = {.lex_state = 68, .external_lex_state = 9}, + [5571] = {.lex_state = 406, .external_lex_state = 5}, [5572] = {.lex_state = 406, .external_lex_state = 5}, - [5573] = {.lex_state = 48, .external_lex_state = 2}, + [5573] = {.lex_state = 406, .external_lex_state = 2}, [5574] = {.lex_state = 48, .external_lex_state = 2}, - [5575] = {.lex_state = 48, .external_lex_state = 2}, - [5576] = {.lex_state = 406, .external_lex_state = 2}, - [5577] = {.lex_state = 406, .external_lex_state = 5}, + [5575] = {.lex_state = 406, .external_lex_state = 5}, + [5576] = {.lex_state = 406, .external_lex_state = 5}, + [5577] = {.lex_state = 54, .external_lex_state = 2}, [5578] = {.lex_state = 406, .external_lex_state = 5}, [5579] = {.lex_state = 406, .external_lex_state = 5}, - [5580] = {.lex_state = 406, .external_lex_state = 5}, - [5581] = {.lex_state = 48, .external_lex_state = 2}, + [5580] = {.lex_state = 48, .external_lex_state = 2}, + [5581] = {.lex_state = 66, .external_lex_state = 2}, [5582] = {.lex_state = 406, .external_lex_state = 2}, - [5583] = {.lex_state = 406, .external_lex_state = 5}, - [5584] = {.lex_state = 406, .external_lex_state = 5}, + [5583] = {.lex_state = 59, .external_lex_state = 9}, + [5584] = {.lex_state = 48, .external_lex_state = 2}, [5585] = {.lex_state = 48, .external_lex_state = 2}, - [5586] = {.lex_state = 48, .external_lex_state = 2}, - [5587] = {.lex_state = 59, .external_lex_state = 9}, - [5588] = {.lex_state = 406, .external_lex_state = 7}, - [5589] = {.lex_state = 59, .external_lex_state = 9}, + [5586] = {.lex_state = 59, .external_lex_state = 9}, + [5587] = {.lex_state = 68, .external_lex_state = 9}, + [5588] = {.lex_state = 48, .external_lex_state = 2}, + [5589] = {.lex_state = 48, .external_lex_state = 2}, [5590] = {.lex_state = 48, .external_lex_state = 2}, - [5591] = {.lex_state = 406, .external_lex_state = 2}, - [5592] = {.lex_state = 54, .external_lex_state = 2}, - [5593] = {.lex_state = 48, .external_lex_state = 2}, + [5591] = {.lex_state = 406, .external_lex_state = 5}, + [5592] = {.lex_state = 48, .external_lex_state = 2}, + [5593] = {.lex_state = 406, .external_lex_state = 5}, [5594] = {.lex_state = 48, .external_lex_state = 2}, - [5595] = {.lex_state = 406, .external_lex_state = 2}, - [5596] = {.lex_state = 68, .external_lex_state = 9}, - [5597] = {.lex_state = 84, .external_lex_state = 2}, + [5595] = {.lex_state = 48, .external_lex_state = 2}, + [5596] = {.lex_state = 2, .external_lex_state = 2}, + [5597] = {.lex_state = 48, .external_lex_state = 2}, [5598] = {.lex_state = 406, .external_lex_state = 5}, - [5599] = {.lex_state = 406, .external_lex_state = 2}, + [5599] = {.lex_state = 2, .external_lex_state = 2}, [5600] = {.lex_state = 48, .external_lex_state = 2}, [5601] = {.lex_state = 68, .external_lex_state = 9}, - [5602] = {.lex_state = 59, .external_lex_state = 9}, - [5603] = {.lex_state = 406, .external_lex_state = 2}, - [5604] = {.lex_state = 66, .external_lex_state = 2}, - [5605] = {.lex_state = 48, .external_lex_state = 2}, - [5606] = {.lex_state = 59, .external_lex_state = 9}, - [5607] = {.lex_state = 406, .external_lex_state = 2}, - [5608] = {.lex_state = 2, .external_lex_state = 2}, - [5609] = {.lex_state = 48, .external_lex_state = 2}, - [5610] = {.lex_state = 59, .external_lex_state = 9}, - [5611] = {.lex_state = 68, .external_lex_state = 9}, - [5612] = {.lex_state = 2, .external_lex_state = 2}, - [5613] = {.lex_state = 48, .external_lex_state = 2}, - [5614] = {.lex_state = 48, .external_lex_state = 2}, - [5615] = {.lex_state = 406, .external_lex_state = 5}, - [5616] = {.lex_state = 406, .external_lex_state = 5}, - [5617] = {.lex_state = 406, .external_lex_state = 5}, - [5618] = {.lex_state = 406, .external_lex_state = 5}, + [5602] = {.lex_state = 48, .external_lex_state = 2}, + [5603] = {.lex_state = 48, .external_lex_state = 2}, + [5604] = {.lex_state = 59, .external_lex_state = 9}, + [5605] = {.lex_state = 406, .external_lex_state = 5}, + [5606] = {.lex_state = 48, .external_lex_state = 2}, + [5607] = {.lex_state = 406, .external_lex_state = 5}, + [5608] = {.lex_state = 406, .external_lex_state = 2}, + [5609] = {.lex_state = 406, .external_lex_state = 5}, + [5610] = {.lex_state = 48, .external_lex_state = 2}, + [5611] = {.lex_state = 50, .external_lex_state = 2}, + [5612] = {.lex_state = 406, .external_lex_state = 2}, + [5613] = {.lex_state = 406, .external_lex_state = 5}, + [5614] = {.lex_state = 68, .external_lex_state = 9}, + [5615] = {.lex_state = 84, .external_lex_state = 2}, + [5616] = {.lex_state = 406, .external_lex_state = 2}, + [5617] = {.lex_state = 48, .external_lex_state = 2}, + [5618] = {.lex_state = 48, .external_lex_state = 2}, [5619] = {.lex_state = 406, .external_lex_state = 5}, - [5620] = {.lex_state = 406, .external_lex_state = 5}, - [5621] = {.lex_state = 27, .external_lex_state = 2}, - [5622] = {.lex_state = 406, .external_lex_state = 5}, - [5623] = {.lex_state = 406, .external_lex_state = 5}, - [5624] = {.lex_state = 406, .external_lex_state = 5}, - [5625] = {.lex_state = 406, .external_lex_state = 2}, - [5626] = {.lex_state = 48, .external_lex_state = 2}, - [5627] = {.lex_state = 406, .external_lex_state = 5}, - [5628] = {.lex_state = 59, .external_lex_state = 9}, + [5620] = {.lex_state = 48, .external_lex_state = 2}, + [5621] = {.lex_state = 48, .external_lex_state = 2}, + [5622] = {.lex_state = 406, .external_lex_state = 2}, + [5623] = {.lex_state = 406, .external_lex_state = 6}, + [5624] = {.lex_state = 48, .external_lex_state = 2}, + [5625] = {.lex_state = 59, .external_lex_state = 9}, + [5626] = {.lex_state = 406, .external_lex_state = 2}, + [5627] = {.lex_state = 406, .external_lex_state = 2}, + [5628] = {.lex_state = 406, .external_lex_state = 5}, [5629] = {.lex_state = 68, .external_lex_state = 9}, - [5630] = {.lex_state = 48, .external_lex_state = 2}, - [5631] = {.lex_state = 48, .external_lex_state = 2}, - [5632] = {.lex_state = 48, .external_lex_state = 2}, + [5630] = {.lex_state = 406, .external_lex_state = 5}, + [5631] = {.lex_state = 406, .external_lex_state = 5}, + [5632] = {.lex_state = 406, .external_lex_state = 5}, [5633] = {.lex_state = 406, .external_lex_state = 5}, - [5634] = {.lex_state = 48, .external_lex_state = 2}, - [5635] = {.lex_state = 68, .external_lex_state = 9}, - [5636] = {.lex_state = 406, .external_lex_state = 2}, - [5637] = {.lex_state = 406, .external_lex_state = 2}, - [5638] = {.lex_state = 406, .external_lex_state = 5}, - [5639] = {.lex_state = 48, .external_lex_state = 2}, + [5634] = {.lex_state = 406, .external_lex_state = 5}, + [5635] = {.lex_state = 48, .external_lex_state = 2}, + [5636] = {.lex_state = 406, .external_lex_state = 5}, + [5637] = {.lex_state = 48, .external_lex_state = 2}, + [5638] = {.lex_state = 48, .external_lex_state = 2}, + [5639] = {.lex_state = 406, .external_lex_state = 5}, [5640] = {.lex_state = 406, .external_lex_state = 5}, [5641] = {.lex_state = 406, .external_lex_state = 5}, - [5642] = {.lex_state = 406, .external_lex_state = 5}, - [5643] = {.lex_state = 406, .external_lex_state = 5}, - [5644] = {.lex_state = 48, .external_lex_state = 2}, + [5642] = {.lex_state = 50, .external_lex_state = 2}, + [5643] = {.lex_state = 406, .external_lex_state = 2}, + [5644] = {.lex_state = 406, .external_lex_state = 5}, [5645] = {.lex_state = 406, .external_lex_state = 5}, - [5646] = {.lex_state = 48, .external_lex_state = 2}, - [5647] = {.lex_state = 48, .external_lex_state = 2}, - [5648] = {.lex_state = 48, .external_lex_state = 2}, - [5649] = {.lex_state = 68, .external_lex_state = 9}, - [5650] = {.lex_state = 59, .external_lex_state = 9}, + [5646] = {.lex_state = 406, .external_lex_state = 5}, + [5647] = {.lex_state = 406, .external_lex_state = 5}, + [5648] = {.lex_state = 406, .external_lex_state = 2}, + [5649] = {.lex_state = 406, .external_lex_state = 5}, + [5650] = {.lex_state = 406, .external_lex_state = 5}, [5651] = {.lex_state = 406, .external_lex_state = 2}, - [5652] = {.lex_state = 49, .external_lex_state = 2}, - [5653] = {.lex_state = 59, .external_lex_state = 9}, - [5654] = {.lex_state = 406, .external_lex_state = 5}, + [5652] = {.lex_state = 50, .external_lex_state = 5}, + [5653] = {.lex_state = 406, .external_lex_state = 5}, + [5654] = {.lex_state = 50, .external_lex_state = 5}, [5655] = {.lex_state = 406, .external_lex_state = 5}, - [5656] = {.lex_state = 48, .external_lex_state = 2}, - [5657] = {.lex_state = 48, .external_lex_state = 2}, + [5656] = {.lex_state = 406, .external_lex_state = 5}, + [5657] = {.lex_state = 406, .external_lex_state = 5}, [5658] = {.lex_state = 406, .external_lex_state = 5}, [5659] = {.lex_state = 406, .external_lex_state = 5}, - [5660] = {.lex_state = 406, .external_lex_state = 5}, + [5660] = {.lex_state = 48, .external_lex_state = 2}, [5661] = {.lex_state = 406, .external_lex_state = 5}, - [5662] = {.lex_state = 406, .external_lex_state = 7}, - [5663] = {.lex_state = 406, .external_lex_state = 5}, + [5662] = {.lex_state = 406, .external_lex_state = 5}, + [5663] = {.lex_state = 27, .external_lex_state = 2}, [5664] = {.lex_state = 406, .external_lex_state = 5}, - [5665] = {.lex_state = 48, .external_lex_state = 2}, - [5666] = {.lex_state = 48, .external_lex_state = 2}, - [5667] = {.lex_state = 48, .external_lex_state = 2}, - [5668] = {.lex_state = 2, .external_lex_state = 2}, - [5669] = {.lex_state = 48, .external_lex_state = 2}, - [5670] = {.lex_state = 406, .external_lex_state = 5}, - [5671] = {.lex_state = 48, .external_lex_state = 2}, - [5672] = {.lex_state = 68, .external_lex_state = 9}, - [5673] = {.lex_state = 59, .external_lex_state = 9}, - [5674] = {.lex_state = 48, .external_lex_state = 2}, - [5675] = {.lex_state = 48, .external_lex_state = 2}, - [5676] = {.lex_state = 66, .external_lex_state = 2}, - [5677] = {.lex_state = 54, .external_lex_state = 2}, - [5678] = {.lex_state = 406, .external_lex_state = 5}, - [5679] = {.lex_state = 59, .external_lex_state = 9}, - [5680] = {.lex_state = 68, .external_lex_state = 9}, - [5681] = {.lex_state = 24, .external_lex_state = 2}, + [5665] = {.lex_state = 406, .external_lex_state = 5}, + [5666] = {.lex_state = 406, .external_lex_state = 2}, + [5667] = {.lex_state = 406, .external_lex_state = 2}, + [5668] = {.lex_state = 406, .external_lex_state = 2}, + [5669] = {.lex_state = 406, .external_lex_state = 2}, + [5670] = {.lex_state = 406, .external_lex_state = 2}, + [5671] = {.lex_state = 406, .external_lex_state = 5}, + [5672] = {.lex_state = 406, .external_lex_state = 5}, + [5673] = {.lex_state = 406, .external_lex_state = 5}, + [5674] = {.lex_state = 406, .external_lex_state = 5}, + [5675] = {.lex_state = 406, .external_lex_state = 5}, + [5676] = {.lex_state = 406, .external_lex_state = 5}, + [5677] = {.lex_state = 406, .external_lex_state = 2}, + [5678] = {.lex_state = 48, .external_lex_state = 2}, + [5679] = {.lex_state = 406, .external_lex_state = 5}, + [5680] = {.lex_state = 48, .external_lex_state = 2}, + [5681] = {.lex_state = 406, .external_lex_state = 5}, [5682] = {.lex_state = 406, .external_lex_state = 5}, [5683] = {.lex_state = 406, .external_lex_state = 5}, - [5684] = {.lex_state = 50, .external_lex_state = 2}, - [5685] = {.lex_state = 48, .external_lex_state = 2}, + [5684] = {.lex_state = 406, .external_lex_state = 5}, + [5685] = {.lex_state = 406, .external_lex_state = 5}, [5686] = {.lex_state = 406, .external_lex_state = 5}, [5687] = {.lex_state = 406, .external_lex_state = 5}, - [5688] = {.lex_state = 48, .external_lex_state = 2}, - [5689] = {.lex_state = 406, .external_lex_state = 2}, - [5690] = {.lex_state = 48, .external_lex_state = 2}, - [5691] = {.lex_state = 59, .external_lex_state = 9}, - [5692] = {.lex_state = 48, .external_lex_state = 2}, - [5693] = {.lex_state = 68, .external_lex_state = 9}, - [5694] = {.lex_state = 406, .external_lex_state = 2}, - [5695] = {.lex_state = 27, .external_lex_state = 2}, - [5696] = {.lex_state = 406, .external_lex_state = 7}, - [5697] = {.lex_state = 84, .external_lex_state = 2}, - [5698] = {.lex_state = 406, .external_lex_state = 2}, + [5688] = {.lex_state = 406, .external_lex_state = 5}, + [5689] = {.lex_state = 406, .external_lex_state = 5}, + [5690] = {.lex_state = 406, .external_lex_state = 5}, + [5691] = {.lex_state = 406, .external_lex_state = 5}, + [5692] = {.lex_state = 50, .external_lex_state = 2}, + [5693] = {.lex_state = 406, .external_lex_state = 2}, + [5694] = {.lex_state = 48, .external_lex_state = 2}, + [5695] = {.lex_state = 406, .external_lex_state = 5}, + [5696] = {.lex_state = 406, .external_lex_state = 5}, + [5697] = {.lex_state = 406, .external_lex_state = 5}, + [5698] = {.lex_state = 406, .external_lex_state = 5}, [5699] = {.lex_state = 406, .external_lex_state = 5}, - [5700] = {.lex_state = 406, .external_lex_state = 2}, + [5700] = {.lex_state = 406, .external_lex_state = 5}, [5701] = {.lex_state = 406, .external_lex_state = 5}, - [5702] = {.lex_state = 2, .external_lex_state = 2}, - [5703] = {.lex_state = 48, .external_lex_state = 2}, + [5702] = {.lex_state = 406, .external_lex_state = 5}, + [5703] = {.lex_state = 406, .external_lex_state = 5}, [5704] = {.lex_state = 406, .external_lex_state = 5}, [5705] = {.lex_state = 406, .external_lex_state = 5}, - [5706] = {.lex_state = 48, .external_lex_state = 2}, - [5707] = {.lex_state = 59, .external_lex_state = 9}, - [5708] = {.lex_state = 68, .external_lex_state = 9}, + [5706] = {.lex_state = 406, .external_lex_state = 2}, + [5707] = {.lex_state = 406, .external_lex_state = 5}, + [5708] = {.lex_state = 406, .external_lex_state = 5}, [5709] = {.lex_state = 406, .external_lex_state = 5}, [5710] = {.lex_state = 48, .external_lex_state = 2}, - [5711] = {.lex_state = 48, .external_lex_state = 2}, + [5711] = {.lex_state = 406, .external_lex_state = 5}, [5712] = {.lex_state = 406, .external_lex_state = 5}, [5713] = {.lex_state = 406, .external_lex_state = 5}, - [5714] = {.lex_state = 48, .external_lex_state = 2}, - [5715] = {.lex_state = 406, .external_lex_state = 5}, - [5716] = {.lex_state = 84, .external_lex_state = 2}, - [5717] = {.lex_state = 68, .external_lex_state = 9}, - [5718] = {.lex_state = 59, .external_lex_state = 9}, - [5719] = {.lex_state = 68, .external_lex_state = 9}, - [5720] = {.lex_state = 48, .external_lex_state = 2}, - [5721] = {.lex_state = 59, .external_lex_state = 9}, - [5722] = {.lex_state = 68, .external_lex_state = 9}, - [5723] = {.lex_state = 406, .external_lex_state = 5}, - [5724] = {.lex_state = 48, .external_lex_state = 2}, + [5714] = {.lex_state = 406, .external_lex_state = 2}, + [5715] = {.lex_state = 406, .external_lex_state = 2}, + [5716] = {.lex_state = 48, .external_lex_state = 2}, + [5717] = {.lex_state = 406, .external_lex_state = 5}, + [5718] = {.lex_state = 406, .external_lex_state = 5}, + [5719] = {.lex_state = 406, .external_lex_state = 5}, + [5720] = {.lex_state = 27, .external_lex_state = 2}, + [5721] = {.lex_state = 406, .external_lex_state = 5}, + [5722] = {.lex_state = 406, .external_lex_state = 2}, + [5723] = {.lex_state = 406, .external_lex_state = 2}, + [5724] = {.lex_state = 24, .external_lex_state = 2}, [5725] = {.lex_state = 406, .external_lex_state = 5}, - [5726] = {.lex_state = 59, .external_lex_state = 9}, - [5727] = {.lex_state = 68, .external_lex_state = 9}, - [5728] = {.lex_state = 59, .external_lex_state = 9}, - [5729] = {.lex_state = 68, .external_lex_state = 9}, - [5730] = {.lex_state = 406, .external_lex_state = 5}, - [5731] = {.lex_state = 48, .external_lex_state = 2}, + [5726] = {.lex_state = 50, .external_lex_state = 2}, + [5727] = {.lex_state = 48, .external_lex_state = 2}, + [5728] = {.lex_state = 406, .external_lex_state = 5}, + [5729] = {.lex_state = 406, .external_lex_state = 5}, + [5730] = {.lex_state = 48, .external_lex_state = 2}, + [5731] = {.lex_state = 406, .external_lex_state = 5}, [5732] = {.lex_state = 48, .external_lex_state = 2}, - [5733] = {.lex_state = 406, .external_lex_state = 2}, - [5734] = {.lex_state = 68, .external_lex_state = 9}, - [5735] = {.lex_state = 48, .external_lex_state = 2}, - [5736] = {.lex_state = 59, .external_lex_state = 9}, + [5733] = {.lex_state = 406, .external_lex_state = 5}, + [5734] = {.lex_state = 406, .external_lex_state = 5}, + [5735] = {.lex_state = 406, .external_lex_state = 5}, + [5736] = {.lex_state = 406, .external_lex_state = 5}, [5737] = {.lex_state = 48, .external_lex_state = 2}, - [5738] = {.lex_state = 68, .external_lex_state = 9}, + [5738] = {.lex_state = 406, .external_lex_state = 5}, [5739] = {.lex_state = 406, .external_lex_state = 2}, - [5740] = {.lex_state = 406, .external_lex_state = 5}, - [5741] = {.lex_state = 59, .external_lex_state = 9}, + [5740] = {.lex_state = 406, .external_lex_state = 2}, + [5741] = {.lex_state = 406, .external_lex_state = 5}, [5742] = {.lex_state = 406, .external_lex_state = 5}, - [5743] = {.lex_state = 406, .external_lex_state = 5}, + [5743] = {.lex_state = 406, .external_lex_state = 2}, [5744] = {.lex_state = 406, .external_lex_state = 5}, - [5745] = {.lex_state = 406, .external_lex_state = 2}, - [5746] = {.lex_state = 59, .external_lex_state = 9}, - [5747] = {.lex_state = 48, .external_lex_state = 2}, - [5748] = {.lex_state = 48, .external_lex_state = 2}, - [5749] = {.lex_state = 54, .external_lex_state = 2}, - [5750] = {.lex_state = 66, .external_lex_state = 2}, - [5751] = {.lex_state = 68, .external_lex_state = 9}, + [5745] = {.lex_state = 406, .external_lex_state = 5}, + [5746] = {.lex_state = 406, .external_lex_state = 5}, + [5747] = {.lex_state = 406, .external_lex_state = 5}, + [5748] = {.lex_state = 406, .external_lex_state = 2}, + [5749] = {.lex_state = 406, .external_lex_state = 5}, + [5750] = {.lex_state = 406, .external_lex_state = 5}, + [5751] = {.lex_state = 406, .external_lex_state = 5}, [5752] = {.lex_state = 406, .external_lex_state = 5}, - [5753] = {.lex_state = 406, .external_lex_state = 5}, + [5753] = {.lex_state = 50, .external_lex_state = 2}, [5754] = {.lex_state = 406, .external_lex_state = 5}, - [5755] = {.lex_state = 406, .external_lex_state = 5}, - [5756] = {.lex_state = 59, .external_lex_state = 9}, - [5757] = {.lex_state = 68, .external_lex_state = 9}, + [5755] = {.lex_state = 50, .external_lex_state = 2}, + [5756] = {.lex_state = 406, .external_lex_state = 5}, + [5757] = {.lex_state = 50, .external_lex_state = 2}, [5758] = {.lex_state = 406, .external_lex_state = 5}, - [5759] = {.lex_state = 406, .external_lex_state = 5}, - [5760] = {.lex_state = 59, .external_lex_state = 9}, - [5761] = {.lex_state = 68, .external_lex_state = 9}, - [5762] = {.lex_state = 406, .external_lex_state = 5}, - [5763] = {.lex_state = 406, .external_lex_state = 5}, - [5764] = {.lex_state = 48, .external_lex_state = 2}, - [5765] = {.lex_state = 59, .external_lex_state = 9}, + [5759] = {.lex_state = 50, .external_lex_state = 2}, + [5760] = {.lex_state = 406, .external_lex_state = 5}, + [5761] = {.lex_state = 406, .external_lex_state = 2}, + [5762] = {.lex_state = 406, .external_lex_state = 2}, + [5763] = {.lex_state = 406, .external_lex_state = 2}, + [5764] = {.lex_state = 406, .external_lex_state = 5}, + [5765] = {.lex_state = 406, .external_lex_state = 5}, [5766] = {.lex_state = 406, .external_lex_state = 5}, - [5767] = {.lex_state = 50, .external_lex_state = 2}, - [5768] = {.lex_state = 406, .external_lex_state = 5}, - [5769] = {.lex_state = 59, .external_lex_state = 9}, - [5770] = {.lex_state = 68, .external_lex_state = 9}, - [5771] = {.lex_state = 68, .external_lex_state = 9}, - [5772] = {.lex_state = 27, .external_lex_state = 2}, - [5773] = {.lex_state = 406, .external_lex_state = 5}, - [5774] = {.lex_state = 27, .external_lex_state = 2}, - [5775] = {.lex_state = 59, .external_lex_state = 9}, - [5776] = {.lex_state = 27, .external_lex_state = 2}, - [5777] = {.lex_state = 406, .external_lex_state = 5}, - [5778] = {.lex_state = 406, .external_lex_state = 5}, + [5767] = {.lex_state = 406, .external_lex_state = 5}, + [5768] = {.lex_state = 406, .external_lex_state = 2}, + [5769] = {.lex_state = 406, .external_lex_state = 5}, + [5770] = {.lex_state = 406, .external_lex_state = 2}, + [5771] = {.lex_state = 406, .external_lex_state = 5}, + [5772] = {.lex_state = 406, .external_lex_state = 5}, + [5773] = {.lex_state = 406, .external_lex_state = 2}, + [5774] = {.lex_state = 406, .external_lex_state = 2}, + [5775] = {.lex_state = 406, .external_lex_state = 5}, + [5776] = {.lex_state = 406, .external_lex_state = 2}, + [5777] = {.lex_state = 406, .external_lex_state = 2}, + [5778] = {.lex_state = 59, .external_lex_state = 9}, [5779] = {.lex_state = 406, .external_lex_state = 5}, - [5780] = {.lex_state = 68, .external_lex_state = 9}, - [5781] = {.lex_state = 59, .external_lex_state = 9}, - [5782] = {.lex_state = 68, .external_lex_state = 9}, - [5783] = {.lex_state = 406, .external_lex_state = 5}, + [5780] = {.lex_state = 406, .external_lex_state = 5}, + [5781] = {.lex_state = 68, .external_lex_state = 9}, + [5782] = {.lex_state = 406, .external_lex_state = 5}, + [5783] = {.lex_state = 84, .external_lex_state = 2}, [5784] = {.lex_state = 406, .external_lex_state = 5}, - [5785] = {.lex_state = 59, .external_lex_state = 9}, - [5786] = {.lex_state = 68, .external_lex_state = 9}, - [5787] = {.lex_state = 48, .external_lex_state = 2}, - [5788] = {.lex_state = 55, .external_lex_state = 2}, - [5789] = {.lex_state = 50, .external_lex_state = 2}, + [5785] = {.lex_state = 406, .external_lex_state = 2}, + [5786] = {.lex_state = 406, .external_lex_state = 5}, + [5787] = {.lex_state = 406, .external_lex_state = 5}, + [5788] = {.lex_state = 406, .external_lex_state = 5}, + [5789] = {.lex_state = 406, .external_lex_state = 5}, [5790] = {.lex_state = 406, .external_lex_state = 5}, [5791] = {.lex_state = 406, .external_lex_state = 5}, - [5792] = {.lex_state = 406, .external_lex_state = 5}, - [5793] = {.lex_state = 406, .external_lex_state = 2}, + [5792] = {.lex_state = 406, .external_lex_state = 2}, + [5793] = {.lex_state = 406, .external_lex_state = 5}, [5794] = {.lex_state = 48, .external_lex_state = 2}, - [5795] = {.lex_state = 27, .external_lex_state = 2}, + [5795] = {.lex_state = 406, .external_lex_state = 5}, [5796] = {.lex_state = 406, .external_lex_state = 5}, [5797] = {.lex_state = 406, .external_lex_state = 5}, [5798] = {.lex_state = 406, .external_lex_state = 5}, [5799] = {.lex_state = 406, .external_lex_state = 5}, [5800] = {.lex_state = 406, .external_lex_state = 5}, - [5801] = {.lex_state = 66, .external_lex_state = 2}, - [5802] = {.lex_state = 54, .external_lex_state = 2}, - [5803] = {.lex_state = 406, .external_lex_state = 8}, - [5804] = {.lex_state = 406, .external_lex_state = 2}, + [5801] = {.lex_state = 406, .external_lex_state = 5}, + [5802] = {.lex_state = 50, .external_lex_state = 2}, + [5803] = {.lex_state = 406, .external_lex_state = 5}, + [5804] = {.lex_state = 50, .external_lex_state = 2}, [5805] = {.lex_state = 406, .external_lex_state = 5}, - [5806] = {.lex_state = 406, .external_lex_state = 2}, + [5806] = {.lex_state = 406, .external_lex_state = 5}, [5807] = {.lex_state = 406, .external_lex_state = 5}, [5808] = {.lex_state = 406, .external_lex_state = 5}, [5809] = {.lex_state = 406, .external_lex_state = 5}, @@ -28192,254 +27947,254 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5811] = {.lex_state = 48, .external_lex_state = 2}, [5812] = {.lex_state = 406, .external_lex_state = 5}, [5813] = {.lex_state = 406, .external_lex_state = 5}, - [5814] = {.lex_state = 406, .external_lex_state = 2}, - [5815] = {.lex_state = 406, .external_lex_state = 2}, - [5816] = {.lex_state = 406, .external_lex_state = 5}, + [5814] = {.lex_state = 406, .external_lex_state = 5}, + [5815] = {.lex_state = 406, .external_lex_state = 5}, + [5816] = {.lex_state = 406, .external_lex_state = 2}, [5817] = {.lex_state = 406, .external_lex_state = 5}, - [5818] = {.lex_state = 406, .external_lex_state = 5}, - [5819] = {.lex_state = 50, .external_lex_state = 5}, + [5818] = {.lex_state = 406, .external_lex_state = 2}, + [5819] = {.lex_state = 406, .external_lex_state = 2}, [5820] = {.lex_state = 406, .external_lex_state = 5}, - [5821] = {.lex_state = 50, .external_lex_state = 5}, + [5821] = {.lex_state = 406, .external_lex_state = 5}, [5822] = {.lex_state = 406, .external_lex_state = 2}, - [5823] = {.lex_state = 406, .external_lex_state = 2}, - [5824] = {.lex_state = 406, .external_lex_state = 2}, - [5825] = {.lex_state = 48, .external_lex_state = 2}, + [5823] = {.lex_state = 406, .external_lex_state = 5}, + [5824] = {.lex_state = 49, .external_lex_state = 2}, + [5825] = {.lex_state = 406, .external_lex_state = 5}, [5826] = {.lex_state = 406, .external_lex_state = 5}, [5827] = {.lex_state = 406, .external_lex_state = 5}, [5828] = {.lex_state = 406, .external_lex_state = 5}, - [5829] = {.lex_state = 406, .external_lex_state = 5}, - [5830] = {.lex_state = 406, .external_lex_state = 2}, + [5829] = {.lex_state = 406, .external_lex_state = 2}, + [5830] = {.lex_state = 406, .external_lex_state = 5}, [5831] = {.lex_state = 406, .external_lex_state = 5}, - [5832] = {.lex_state = 406, .external_lex_state = 2}, + [5832] = {.lex_state = 24, .external_lex_state = 2}, [5833] = {.lex_state = 406, .external_lex_state = 5}, - [5834] = {.lex_state = 406, .external_lex_state = 2}, - [5835] = {.lex_state = 48, .external_lex_state = 2}, - [5836] = {.lex_state = 406, .external_lex_state = 5}, + [5834] = {.lex_state = 406, .external_lex_state = 5}, + [5835] = {.lex_state = 406, .external_lex_state = 8}, + [5836] = {.lex_state = 406, .external_lex_state = 2}, [5837] = {.lex_state = 406, .external_lex_state = 5}, [5838] = {.lex_state = 406, .external_lex_state = 5}, - [5839] = {.lex_state = 406, .external_lex_state = 5}, - [5840] = {.lex_state = 406, .external_lex_state = 5}, - [5841] = {.lex_state = 406, .external_lex_state = 2}, - [5842] = {.lex_state = 406, .external_lex_state = 2}, + [5839] = {.lex_state = 27, .external_lex_state = 2}, + [5840] = {.lex_state = 50, .external_lex_state = 5}, + [5841] = {.lex_state = 50, .external_lex_state = 5}, + [5842] = {.lex_state = 27, .external_lex_state = 2}, [5843] = {.lex_state = 406, .external_lex_state = 5}, [5844] = {.lex_state = 406, .external_lex_state = 5}, - [5845] = {.lex_state = 406, .external_lex_state = 5}, - [5846] = {.lex_state = 27, .external_lex_state = 2}, - [5847] = {.lex_state = 406, .external_lex_state = 5}, - [5848] = {.lex_state = 406, .external_lex_state = 5}, + [5845] = {.lex_state = 27, .external_lex_state = 2}, + [5846] = {.lex_state = 54, .external_lex_state = 2}, + [5847] = {.lex_state = 406, .external_lex_state = 2}, + [5848] = {.lex_state = 406, .external_lex_state = 2}, [5849] = {.lex_state = 406, .external_lex_state = 5}, - [5850] = {.lex_state = 406, .external_lex_state = 2}, - [5851] = {.lex_state = 406, .external_lex_state = 2}, - [5852] = {.lex_state = 406, .external_lex_state = 2}, + [5850] = {.lex_state = 406, .external_lex_state = 5}, + [5851] = {.lex_state = 406, .external_lex_state = 5}, + [5852] = {.lex_state = 406, .external_lex_state = 5}, [5853] = {.lex_state = 406, .external_lex_state = 5}, - [5854] = {.lex_state = 406, .external_lex_state = 5}, + [5854] = {.lex_state = 66, .external_lex_state = 2}, [5855] = {.lex_state = 406, .external_lex_state = 5}, [5856] = {.lex_state = 406, .external_lex_state = 5}, - [5857] = {.lex_state = 50, .external_lex_state = 2}, - [5858] = {.lex_state = 406, .external_lex_state = 5}, - [5859] = {.lex_state = 406, .external_lex_state = 5}, - [5860] = {.lex_state = 50, .external_lex_state = 2}, + [5857] = {.lex_state = 27, .external_lex_state = 2}, + [5858] = {.lex_state = 27, .external_lex_state = 2}, + [5859] = {.lex_state = 50, .external_lex_state = 2}, + [5860] = {.lex_state = 406, .external_lex_state = 5}, [5861] = {.lex_state = 406, .external_lex_state = 5}, - [5862] = {.lex_state = 406, .external_lex_state = 5}, - [5863] = {.lex_state = 48, .external_lex_state = 2}, - [5864] = {.lex_state = 406, .external_lex_state = 5}, - [5865] = {.lex_state = 406, .external_lex_state = 2}, - [5866] = {.lex_state = 48, .external_lex_state = 2}, - [5867] = {.lex_state = 406, .external_lex_state = 5}, - [5868] = {.lex_state = 24, .external_lex_state = 2}, - [5869] = {.lex_state = 50, .external_lex_state = 2}, - [5870] = {.lex_state = 406, .external_lex_state = 5}, - [5871] = {.lex_state = 406, .external_lex_state = 5}, - [5872] = {.lex_state = 50, .external_lex_state = 5}, - [5873] = {.lex_state = 50, .external_lex_state = 5}, - [5874] = {.lex_state = 406, .external_lex_state = 5}, - [5875] = {.lex_state = 406, .external_lex_state = 5}, - [5876] = {.lex_state = 406, .external_lex_state = 5}, + [5862] = {.lex_state = 24, .external_lex_state = 2}, + [5863] = {.lex_state = 406, .external_lex_state = 2}, + [5864] = {.lex_state = 406, .external_lex_state = 2}, + [5865] = {.lex_state = 406, .external_lex_state = 5}, + [5866] = {.lex_state = 27, .external_lex_state = 2}, + [5867] = {.lex_state = 27, .external_lex_state = 2}, + [5868] = {.lex_state = 406, .external_lex_state = 2}, + [5869] = {.lex_state = 406, .external_lex_state = 2}, + [5870] = {.lex_state = 27, .external_lex_state = 2}, + [5871] = {.lex_state = 27, .external_lex_state = 2}, + [5872] = {.lex_state = 406, .external_lex_state = 5}, + [5873] = {.lex_state = 27, .external_lex_state = 2}, + [5874] = {.lex_state = 406, .external_lex_state = 2}, + [5875] = {.lex_state = 27, .external_lex_state = 2}, + [5876] = {.lex_state = 27, .external_lex_state = 2}, [5877] = {.lex_state = 406, .external_lex_state = 5}, [5878] = {.lex_state = 406, .external_lex_state = 5}, [5879] = {.lex_state = 406, .external_lex_state = 5}, [5880] = {.lex_state = 406, .external_lex_state = 5}, [5881] = {.lex_state = 406, .external_lex_state = 5}, [5882] = {.lex_state = 406, .external_lex_state = 5}, - [5883] = {.lex_state = 406, .external_lex_state = 2}, - [5884] = {.lex_state = 406, .external_lex_state = 5}, + [5883] = {.lex_state = 406, .external_lex_state = 5}, + [5884] = {.lex_state = 89, .external_lex_state = 2}, [5885] = {.lex_state = 406, .external_lex_state = 2}, [5886] = {.lex_state = 406, .external_lex_state = 5}, [5887] = {.lex_state = 406, .external_lex_state = 5}, [5888] = {.lex_state = 406, .external_lex_state = 5}, - [5889] = {.lex_state = 406, .external_lex_state = 2}, - [5890] = {.lex_state = 406, .external_lex_state = 5}, + [5889] = {.lex_state = 406, .external_lex_state = 5}, + [5890] = {.lex_state = 406, .external_lex_state = 2}, [5891] = {.lex_state = 406, .external_lex_state = 5}, [5892] = {.lex_state = 406, .external_lex_state = 5}, - [5893] = {.lex_state = 48, .external_lex_state = 2}, + [5893] = {.lex_state = 50, .external_lex_state = 2}, [5894] = {.lex_state = 406, .external_lex_state = 5}, - [5895] = {.lex_state = 406, .external_lex_state = 5}, + [5895] = {.lex_state = 406, .external_lex_state = 2}, [5896] = {.lex_state = 406, .external_lex_state = 5}, - [5897] = {.lex_state = 406, .external_lex_state = 5}, - [5898] = {.lex_state = 406, .external_lex_state = 5}, - [5899] = {.lex_state = 27, .external_lex_state = 2}, + [5897] = {.lex_state = 406, .external_lex_state = 2}, + [5898] = {.lex_state = 50, .external_lex_state = 2}, + [5899] = {.lex_state = 24, .external_lex_state = 2}, [5900] = {.lex_state = 406, .external_lex_state = 5}, - [5901] = {.lex_state = 406, .external_lex_state = 5}, + [5901] = {.lex_state = 75, .external_lex_state = 2}, [5902] = {.lex_state = 406, .external_lex_state = 5}, - [5903] = {.lex_state = 27, .external_lex_state = 2}, - [5904] = {.lex_state = 406, .external_lex_state = 2}, - [5905] = {.lex_state = 406, .external_lex_state = 2}, + [5903] = {.lex_state = 406, .external_lex_state = 5}, + [5904] = {.lex_state = 406, .external_lex_state = 5}, + [5905] = {.lex_state = 406, .external_lex_state = 5}, [5906] = {.lex_state = 406, .external_lex_state = 2}, - [5907] = {.lex_state = 406, .external_lex_state = 5}, - [5908] = {.lex_state = 48, .external_lex_state = 2}, + [5907] = {.lex_state = 406, .external_lex_state = 2}, + [5908] = {.lex_state = 406, .external_lex_state = 5}, [5909] = {.lex_state = 406, .external_lex_state = 5}, - [5910] = {.lex_state = 48, .external_lex_state = 2}, - [5911] = {.lex_state = 406, .external_lex_state = 2}, + [5910] = {.lex_state = 406, .external_lex_state = 5}, + [5911] = {.lex_state = 406, .external_lex_state = 5}, [5912] = {.lex_state = 406, .external_lex_state = 5}, - [5913] = {.lex_state = 48, .external_lex_state = 2}, + [5913] = {.lex_state = 406, .external_lex_state = 2}, [5914] = {.lex_state = 406, .external_lex_state = 5}, - [5915] = {.lex_state = 48, .external_lex_state = 2}, + [5915] = {.lex_state = 406, .external_lex_state = 5}, [5916] = {.lex_state = 406, .external_lex_state = 5}, - [5917] = {.lex_state = 406, .external_lex_state = 2}, - [5918] = {.lex_state = 406, .external_lex_state = 5}, - [5919] = {.lex_state = 406, .external_lex_state = 5}, + [5917] = {.lex_state = 406, .external_lex_state = 5}, + [5918] = {.lex_state = 50, .external_lex_state = 5}, + [5919] = {.lex_state = 50, .external_lex_state = 5}, [5920] = {.lex_state = 406, .external_lex_state = 5}, - [5921] = {.lex_state = 406, .external_lex_state = 5}, - [5922] = {.lex_state = 406, .external_lex_state = 5}, - [5923] = {.lex_state = 48, .external_lex_state = 2}, + [5921] = {.lex_state = 24, .external_lex_state = 2}, + [5922] = {.lex_state = 89, .external_lex_state = 2}, + [5923] = {.lex_state = 406, .external_lex_state = 2}, [5924] = {.lex_state = 406, .external_lex_state = 5}, - [5925] = {.lex_state = 406, .external_lex_state = 5}, + [5925] = {.lex_state = 89, .external_lex_state = 2}, [5926] = {.lex_state = 406, .external_lex_state = 5}, [5927] = {.lex_state = 406, .external_lex_state = 5}, [5928] = {.lex_state = 406, .external_lex_state = 5}, - [5929] = {.lex_state = 406, .external_lex_state = 5}, + [5929] = {.lex_state = 406, .external_lex_state = 2}, [5930] = {.lex_state = 406, .external_lex_state = 5}, - [5931] = {.lex_state = 406, .external_lex_state = 2}, + [5931] = {.lex_state = 24, .external_lex_state = 2}, [5932] = {.lex_state = 406, .external_lex_state = 5}, - [5933] = {.lex_state = 406, .external_lex_state = 2}, - [5934] = {.lex_state = 406, .external_lex_state = 5}, + [5933] = {.lex_state = 406, .external_lex_state = 5}, + [5934] = {.lex_state = 406, .external_lex_state = 2}, [5935] = {.lex_state = 406, .external_lex_state = 2}, - [5936] = {.lex_state = 50, .external_lex_state = 2}, + [5936] = {.lex_state = 406, .external_lex_state = 5}, [5937] = {.lex_state = 406, .external_lex_state = 5}, - [5938] = {.lex_state = 50, .external_lex_state = 2}, - [5939] = {.lex_state = 406, .external_lex_state = 2}, - [5940] = {.lex_state = 50, .external_lex_state = 2}, - [5941] = {.lex_state = 75, .external_lex_state = 2}, - [5942] = {.lex_state = 50, .external_lex_state = 2}, + [5938] = {.lex_state = 406, .external_lex_state = 5}, + [5939] = {.lex_state = 406, .external_lex_state = 5}, + [5940] = {.lex_state = 406, .external_lex_state = 5}, + [5941] = {.lex_state = 406, .external_lex_state = 5}, + [5942] = {.lex_state = 406, .external_lex_state = 5}, [5943] = {.lex_state = 406, .external_lex_state = 5}, - [5944] = {.lex_state = 406, .external_lex_state = 2}, - [5945] = {.lex_state = 406, .external_lex_state = 2}, - [5946] = {.lex_state = 48, .external_lex_state = 2}, - [5947] = {.lex_state = 406, .external_lex_state = 5}, + [5944] = {.lex_state = 406, .external_lex_state = 5}, + [5945] = {.lex_state = 406, .external_lex_state = 5}, + [5946] = {.lex_state = 406, .external_lex_state = 5}, + [5947] = {.lex_state = 49, .external_lex_state = 2}, [5948] = {.lex_state = 406, .external_lex_state = 5}, - [5949] = {.lex_state = 50, .external_lex_state = 2}, + [5949] = {.lex_state = 406, .external_lex_state = 5}, [5950] = {.lex_state = 406, .external_lex_state = 5}, - [5951] = {.lex_state = 406, .external_lex_state = 2}, - [5952] = {.lex_state = 406, .external_lex_state = 5}, + [5951] = {.lex_state = 406, .external_lex_state = 5}, + [5952] = {.lex_state = 406, .external_lex_state = 2}, [5953] = {.lex_state = 406, .external_lex_state = 2}, [5954] = {.lex_state = 406, .external_lex_state = 5}, [5955] = {.lex_state = 406, .external_lex_state = 5}, - [5956] = {.lex_state = 24, .external_lex_state = 2}, - [5957] = {.lex_state = 48, .external_lex_state = 2}, + [5956] = {.lex_state = 27, .external_lex_state = 2}, + [5957] = {.lex_state = 406, .external_lex_state = 5}, [5958] = {.lex_state = 406, .external_lex_state = 5}, - [5959] = {.lex_state = 406, .external_lex_state = 5}, - [5960] = {.lex_state = 406, .external_lex_state = 5}, + [5959] = {.lex_state = 406, .external_lex_state = 2}, + [5960] = {.lex_state = 406, .external_lex_state = 2}, [5961] = {.lex_state = 406, .external_lex_state = 2}, - [5962] = {.lex_state = 406, .external_lex_state = 2}, + [5962] = {.lex_state = 406, .external_lex_state = 5}, [5963] = {.lex_state = 406, .external_lex_state = 5}, [5964] = {.lex_state = 406, .external_lex_state = 5}, [5965] = {.lex_state = 406, .external_lex_state = 5}, - [5966] = {.lex_state = 406, .external_lex_state = 5}, + [5966] = {.lex_state = 406, .external_lex_state = 2}, [5967] = {.lex_state = 406, .external_lex_state = 5}, - [5968] = {.lex_state = 406, .external_lex_state = 5}, - [5969] = {.lex_state = 406, .external_lex_state = 2}, + [5968] = {.lex_state = 406, .external_lex_state = 2}, + [5969] = {.lex_state = 406, .external_lex_state = 5}, [5970] = {.lex_state = 406, .external_lex_state = 2}, - [5971] = {.lex_state = 89, .external_lex_state = 2}, - [5972] = {.lex_state = 84, .external_lex_state = 2}, + [5971] = {.lex_state = 48, .external_lex_state = 2}, + [5972] = {.lex_state = 406, .external_lex_state = 2}, [5973] = {.lex_state = 406, .external_lex_state = 5}, [5974] = {.lex_state = 406, .external_lex_state = 2}, - [5975] = {.lex_state = 406, .external_lex_state = 2}, - [5976] = {.lex_state = 50, .external_lex_state = 2}, + [5975] = {.lex_state = 406, .external_lex_state = 5}, + [5976] = {.lex_state = 406, .external_lex_state = 5}, [5977] = {.lex_state = 406, .external_lex_state = 5}, [5978] = {.lex_state = 406, .external_lex_state = 5}, - [5979] = {.lex_state = 24, .external_lex_state = 2}, - [5980] = {.lex_state = 75, .external_lex_state = 2}, + [5979] = {.lex_state = 406, .external_lex_state = 5}, + [5980] = {.lex_state = 406, .external_lex_state = 5}, [5981] = {.lex_state = 406, .external_lex_state = 5}, [5982] = {.lex_state = 406, .external_lex_state = 5}, [5983] = {.lex_state = 406, .external_lex_state = 5}, [5984] = {.lex_state = 406, .external_lex_state = 5}, [5985] = {.lex_state = 406, .external_lex_state = 2}, - [5986] = {.lex_state = 406, .external_lex_state = 2}, + [5986] = {.lex_state = 406, .external_lex_state = 5}, [5987] = {.lex_state = 406, .external_lex_state = 5}, [5988] = {.lex_state = 406, .external_lex_state = 5}, - [5989] = {.lex_state = 50, .external_lex_state = 2}, - [5990] = {.lex_state = 89, .external_lex_state = 2}, - [5991] = {.lex_state = 406, .external_lex_state = 2}, + [5989] = {.lex_state = 406, .external_lex_state = 5}, + [5990] = {.lex_state = 406, .external_lex_state = 5}, + [5991] = {.lex_state = 406, .external_lex_state = 5}, [5992] = {.lex_state = 406, .external_lex_state = 5}, [5993] = {.lex_state = 406, .external_lex_state = 5}, [5994] = {.lex_state = 406, .external_lex_state = 5}, [5995] = {.lex_state = 406, .external_lex_state = 5}, - [5996] = {.lex_state = 50, .external_lex_state = 2}, + [5996] = {.lex_state = 406, .external_lex_state = 2}, [5997] = {.lex_state = 406, .external_lex_state = 5}, - [5998] = {.lex_state = 24, .external_lex_state = 2}, + [5998] = {.lex_state = 406, .external_lex_state = 5}, [5999] = {.lex_state = 406, .external_lex_state = 5}, - [6000] = {.lex_state = 406, .external_lex_state = 5}, + [6000] = {.lex_state = 48, .external_lex_state = 2}, [6001] = {.lex_state = 406, .external_lex_state = 5}, - [6002] = {.lex_state = 406, .external_lex_state = 2}, + [6002] = {.lex_state = 406, .external_lex_state = 5}, [6003] = {.lex_state = 406, .external_lex_state = 5}, [6004] = {.lex_state = 406, .external_lex_state = 5}, [6005] = {.lex_state = 406, .external_lex_state = 5}, - [6006] = {.lex_state = 50, .external_lex_state = 2}, + [6006] = {.lex_state = 89, .external_lex_state = 2}, [6007] = {.lex_state = 406, .external_lex_state = 5}, [6008] = {.lex_state = 406, .external_lex_state = 5}, [6009] = {.lex_state = 406, .external_lex_state = 5}, - [6010] = {.lex_state = 406, .external_lex_state = 5}, - [6011] = {.lex_state = 50, .external_lex_state = 2}, - [6012] = {.lex_state = 406, .external_lex_state = 5}, - [6013] = {.lex_state = 406, .external_lex_state = 5}, + [6010] = {.lex_state = 27, .external_lex_state = 2}, + [6011] = {.lex_state = 406, .external_lex_state = 5}, + [6012] = {.lex_state = 406, .external_lex_state = 2}, + [6013] = {.lex_state = 406, .external_lex_state = 2}, [6014] = {.lex_state = 406, .external_lex_state = 5}, - [6015] = {.lex_state = 406, .external_lex_state = 5}, - [6016] = {.lex_state = 406, .external_lex_state = 2}, - [6017] = {.lex_state = 406, .external_lex_state = 2}, - [6018] = {.lex_state = 406, .external_lex_state = 2}, - [6019] = {.lex_state = 406, .external_lex_state = 2}, - [6020] = {.lex_state = 406, .external_lex_state = 2}, - [6021] = {.lex_state = 50, .external_lex_state = 2}, - [6022] = {.lex_state = 59, .external_lex_state = 9}, - [6023] = {.lex_state = 50, .external_lex_state = 5}, - [6024] = {.lex_state = 50, .external_lex_state = 5}, - [6025] = {.lex_state = 68, .external_lex_state = 9}, - [6026] = {.lex_state = 84, .external_lex_state = 2}, + [6015] = {.lex_state = 48, .external_lex_state = 2}, + [6016] = {.lex_state = 406, .external_lex_state = 5}, + [6017] = {.lex_state = 48, .external_lex_state = 2}, + [6018] = {.lex_state = 406, .external_lex_state = 5}, + [6019] = {.lex_state = 48, .external_lex_state = 2}, + [6020] = {.lex_state = 406, .external_lex_state = 5}, + [6021] = {.lex_state = 406, .external_lex_state = 5}, + [6022] = {.lex_state = 50, .external_lex_state = 2}, + [6023] = {.lex_state = 406, .external_lex_state = 5}, + [6024] = {.lex_state = 24, .external_lex_state = 2}, + [6025] = {.lex_state = 406, .external_lex_state = 5}, + [6026] = {.lex_state = 406, .external_lex_state = 5}, [6027] = {.lex_state = 406, .external_lex_state = 5}, [6028] = {.lex_state = 406, .external_lex_state = 5}, - [6029] = {.lex_state = 406, .external_lex_state = 2}, + [6029] = {.lex_state = 406, .external_lex_state = 5}, [6030] = {.lex_state = 406, .external_lex_state = 5}, [6031] = {.lex_state = 406, .external_lex_state = 5}, [6032] = {.lex_state = 406, .external_lex_state = 5}, - [6033] = {.lex_state = 406, .external_lex_state = 2}, + [6033] = {.lex_state = 406, .external_lex_state = 5}, [6034] = {.lex_state = 406, .external_lex_state = 5}, [6035] = {.lex_state = 406, .external_lex_state = 5}, - [6036] = {.lex_state = 75, .external_lex_state = 2}, + [6036] = {.lex_state = 406, .external_lex_state = 5}, [6037] = {.lex_state = 406, .external_lex_state = 5}, [6038] = {.lex_state = 406, .external_lex_state = 5}, - [6039] = {.lex_state = 89, .external_lex_state = 2}, - [6040] = {.lex_state = 406, .external_lex_state = 2}, + [6039] = {.lex_state = 406, .external_lex_state = 5}, + [6040] = {.lex_state = 406, .external_lex_state = 5}, [6041] = {.lex_state = 406, .external_lex_state = 5}, [6042] = {.lex_state = 406, .external_lex_state = 5}, [6043] = {.lex_state = 406, .external_lex_state = 5}, - [6044] = {.lex_state = 50, .external_lex_state = 2}, - [6045] = {.lex_state = 406, .external_lex_state = 5}, - [6046] = {.lex_state = 24, .external_lex_state = 2}, + [6044] = {.lex_state = 406, .external_lex_state = 2}, + [6045] = {.lex_state = 48, .external_lex_state = 2}, + [6046] = {.lex_state = 406, .external_lex_state = 5}, [6047] = {.lex_state = 406, .external_lex_state = 5}, [6048] = {.lex_state = 406, .external_lex_state = 5}, [6049] = {.lex_state = 406, .external_lex_state = 5}, - [6050] = {.lex_state = 406, .external_lex_state = 5}, - [6051] = {.lex_state = 406, .external_lex_state = 5}, + [6050] = {.lex_state = 27, .external_lex_state = 2}, + [6051] = {.lex_state = 406, .external_lex_state = 2}, [6052] = {.lex_state = 406, .external_lex_state = 5}, - [6053] = {.lex_state = 406, .external_lex_state = 5}, + [6053] = {.lex_state = 406, .external_lex_state = 2}, [6054] = {.lex_state = 406, .external_lex_state = 5}, [6055] = {.lex_state = 406, .external_lex_state = 5}, [6056] = {.lex_state = 406, .external_lex_state = 5}, [6057] = {.lex_state = 406, .external_lex_state = 5}, - [6058] = {.lex_state = 406, .external_lex_state = 5}, + [6058] = {.lex_state = 406, .external_lex_state = 2}, [6059] = {.lex_state = 406, .external_lex_state = 5}, - [6060] = {.lex_state = 406, .external_lex_state = 5}, - [6061] = {.lex_state = 406, .external_lex_state = 5}, + [6060] = {.lex_state = 406, .external_lex_state = 2}, + [6061] = {.lex_state = 406, .external_lex_state = 2}, [6062] = {.lex_state = 406, .external_lex_state = 5}, [6063] = {.lex_state = 406, .external_lex_state = 5}, [6064] = {.lex_state = 406, .external_lex_state = 5}, @@ -28447,427 +28202,427 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6066] = {.lex_state = 406, .external_lex_state = 5}, [6067] = {.lex_state = 406, .external_lex_state = 5}, [6068] = {.lex_state = 406, .external_lex_state = 5}, - [6069] = {.lex_state = 406, .external_lex_state = 5}, + [6069] = {.lex_state = 2, .external_lex_state = 2}, [6070] = {.lex_state = 406, .external_lex_state = 5}, - [6071] = {.lex_state = 406, .external_lex_state = 5}, + [6071] = {.lex_state = 48, .external_lex_state = 2}, [6072] = {.lex_state = 406, .external_lex_state = 5}, [6073] = {.lex_state = 406, .external_lex_state = 5}, - [6074] = {.lex_state = 406, .external_lex_state = 5}, + [6074] = {.lex_state = 75, .external_lex_state = 2}, [6075] = {.lex_state = 406, .external_lex_state = 5}, [6076] = {.lex_state = 406, .external_lex_state = 5}, - [6077] = {.lex_state = 406, .external_lex_state = 2}, + [6077] = {.lex_state = 406, .external_lex_state = 5}, [6078] = {.lex_state = 406, .external_lex_state = 5}, - [6079] = {.lex_state = 406, .external_lex_state = 5}, + [6079] = {.lex_state = 48, .external_lex_state = 2}, [6080] = {.lex_state = 406, .external_lex_state = 5}, - [6081] = {.lex_state = 406, .external_lex_state = 2}, - [6082] = {.lex_state = 49, .external_lex_state = 2}, + [6081] = {.lex_state = 24, .external_lex_state = 2}, + [6082] = {.lex_state = 406, .external_lex_state = 5}, [6083] = {.lex_state = 406, .external_lex_state = 5}, [6084] = {.lex_state = 406, .external_lex_state = 2}, - [6085] = {.lex_state = 48, .external_lex_state = 2}, + [6085] = {.lex_state = 406, .external_lex_state = 5}, [6086] = {.lex_state = 406, .external_lex_state = 5}, [6087] = {.lex_state = 406, .external_lex_state = 5}, - [6088] = {.lex_state = 406, .external_lex_state = 2}, - [6089] = {.lex_state = 50, .external_lex_state = 2}, + [6088] = {.lex_state = 406, .external_lex_state = 5}, + [6089] = {.lex_state = 406, .external_lex_state = 5}, [6090] = {.lex_state = 406, .external_lex_state = 5}, - [6091] = {.lex_state = 406, .external_lex_state = 2}, + [6091] = {.lex_state = 406, .external_lex_state = 5}, [6092] = {.lex_state = 406, .external_lex_state = 5}, - [6093] = {.lex_state = 50, .external_lex_state = 2}, - [6094] = {.lex_state = 406, .external_lex_state = 2}, + [6093] = {.lex_state = 406, .external_lex_state = 5}, + [6094] = {.lex_state = 406, .external_lex_state = 5}, [6095] = {.lex_state = 406, .external_lex_state = 5}, - [6096] = {.lex_state = 406, .external_lex_state = 5}, + [6096] = {.lex_state = 48, .external_lex_state = 2}, [6097] = {.lex_state = 406, .external_lex_state = 5}, - [6098] = {.lex_state = 406, .external_lex_state = 5}, - [6099] = {.lex_state = 406, .external_lex_state = 2}, - [6100] = {.lex_state = 406, .external_lex_state = 5}, + [6098] = {.lex_state = 406, .external_lex_state = 2}, + [6099] = {.lex_state = 406, .external_lex_state = 5}, + [6100] = {.lex_state = 406, .external_lex_state = 2}, [6101] = {.lex_state = 406, .external_lex_state = 2}, - [6102] = {.lex_state = 55, .external_lex_state = 2}, + [6102] = {.lex_state = 406, .external_lex_state = 5}, [6103] = {.lex_state = 406, .external_lex_state = 5}, [6104] = {.lex_state = 406, .external_lex_state = 5}, - [6105] = {.lex_state = 406, .external_lex_state = 5}, + [6105] = {.lex_state = 406, .external_lex_state = 2}, [6106] = {.lex_state = 406, .external_lex_state = 5}, - [6107] = {.lex_state = 27, .external_lex_state = 2}, + [6107] = {.lex_state = 406, .external_lex_state = 5}, [6108] = {.lex_state = 406, .external_lex_state = 5}, - [6109] = {.lex_state = 406, .external_lex_state = 2}, - [6110] = {.lex_state = 27, .external_lex_state = 2}, - [6111] = {.lex_state = 406, .external_lex_state = 5}, - [6112] = {.lex_state = 406, .external_lex_state = 5}, - [6113] = {.lex_state = 406, .external_lex_state = 5}, - [6114] = {.lex_state = 406, .external_lex_state = 2}, - [6115] = {.lex_state = 406, .external_lex_state = 5}, - [6116] = {.lex_state = 406, .external_lex_state = 5}, - [6117] = {.lex_state = 406, .external_lex_state = 5}, - [6118] = {.lex_state = 406, .external_lex_state = 2}, + [6109] = {.lex_state = 50, .external_lex_state = 5}, + [6110] = {.lex_state = 50, .external_lex_state = 5}, + [6111] = {.lex_state = 406, .external_lex_state = 2}, + [6112] = {.lex_state = 24, .external_lex_state = 2}, + [6113] = {.lex_state = 55, .external_lex_state = 2}, + [6114] = {.lex_state = 406, .external_lex_state = 5}, + [6115] = {.lex_state = 55, .external_lex_state = 2}, + [6116] = {.lex_state = 406, .external_lex_state = 2}, + [6117] = {.lex_state = 84, .external_lex_state = 2}, + [6118] = {.lex_state = 406, .external_lex_state = 5}, [6119] = {.lex_state = 406, .external_lex_state = 2}, - [6120] = {.lex_state = 406, .external_lex_state = 5}, - [6121] = {.lex_state = 406, .external_lex_state = 5}, + [6120] = {.lex_state = 50, .external_lex_state = 5}, + [6121] = {.lex_state = 50, .external_lex_state = 5}, [6122] = {.lex_state = 406, .external_lex_state = 5}, [6123] = {.lex_state = 406, .external_lex_state = 5}, [6124] = {.lex_state = 406, .external_lex_state = 5}, - [6125] = {.lex_state = 89, .external_lex_state = 2}, + [6125] = {.lex_state = 406, .external_lex_state = 5}, [6126] = {.lex_state = 406, .external_lex_state = 5}, - [6127] = {.lex_state = 48, .external_lex_state = 2}, - [6128] = {.lex_state = 406, .external_lex_state = 5}, + [6127] = {.lex_state = 406, .external_lex_state = 5}, + [6128] = {.lex_state = 50, .external_lex_state = 2}, [6129] = {.lex_state = 406, .external_lex_state = 5}, [6130] = {.lex_state = 406, .external_lex_state = 5}, [6131] = {.lex_state = 406, .external_lex_state = 5}, [6132] = {.lex_state = 406, .external_lex_state = 5}, - [6133] = {.lex_state = 406, .external_lex_state = 5}, + [6133] = {.lex_state = 50, .external_lex_state = 2}, [6134] = {.lex_state = 406, .external_lex_state = 5}, [6135] = {.lex_state = 406, .external_lex_state = 5}, - [6136] = {.lex_state = 48, .external_lex_state = 2}, - [6137] = {.lex_state = 406, .external_lex_state = 5}, - [6138] = {.lex_state = 48, .external_lex_state = 2}, - [6139] = {.lex_state = 27, .external_lex_state = 2}, - [6140] = {.lex_state = 48, .external_lex_state = 2}, - [6141] = {.lex_state = 48, .external_lex_state = 2}, - [6142] = {.lex_state = 406, .external_lex_state = 5}, + [6136] = {.lex_state = 406, .external_lex_state = 5}, + [6137] = {.lex_state = 406, .external_lex_state = 2}, + [6138] = {.lex_state = 406, .external_lex_state = 5}, + [6139] = {.lex_state = 406, .external_lex_state = 5}, + [6140] = {.lex_state = 406, .external_lex_state = 2}, + [6141] = {.lex_state = 406, .external_lex_state = 2}, + [6142] = {.lex_state = 406, .external_lex_state = 2}, [6143] = {.lex_state = 406, .external_lex_state = 2}, - [6144] = {.lex_state = 406, .external_lex_state = 2}, - [6145] = {.lex_state = 406, .external_lex_state = 5}, - [6146] = {.lex_state = 406, .external_lex_state = 5}, + [6144] = {.lex_state = 89, .external_lex_state = 2}, + [6145] = {.lex_state = 406, .external_lex_state = 2}, + [6146] = {.lex_state = 406, .external_lex_state = 2}, [6147] = {.lex_state = 406, .external_lex_state = 2}, - [6148] = {.lex_state = 406, .external_lex_state = 2}, - [6149] = {.lex_state = 406, .external_lex_state = 2}, - [6150] = {.lex_state = 27, .external_lex_state = 2}, + [6148] = {.lex_state = 406, .external_lex_state = 5}, + [6149] = {.lex_state = 406, .external_lex_state = 5}, + [6150] = {.lex_state = 406, .external_lex_state = 5}, [6151] = {.lex_state = 406, .external_lex_state = 2}, - [6152] = {.lex_state = 24, .external_lex_state = 2}, - [6153] = {.lex_state = 48, .external_lex_state = 2}, - [6154] = {.lex_state = 48, .external_lex_state = 2}, - [6155] = {.lex_state = 406, .external_lex_state = 5}, - [6156] = {.lex_state = 406, .external_lex_state = 5}, - [6157] = {.lex_state = 406, .external_lex_state = 5}, - [6158] = {.lex_state = 406, .external_lex_state = 5}, - [6159] = {.lex_state = 406, .external_lex_state = 2}, - [6160] = {.lex_state = 84, .external_lex_state = 2}, - [6161] = {.lex_state = 406, .external_lex_state = 5}, - [6162] = {.lex_state = 406, .external_lex_state = 5}, - [6163] = {.lex_state = 406, .external_lex_state = 5}, - [6164] = {.lex_state = 406, .external_lex_state = 5}, - [6165] = {.lex_state = 406, .external_lex_state = 2}, - [6166] = {.lex_state = 48, .external_lex_state = 2}, - [6167] = {.lex_state = 406, .external_lex_state = 2}, - [6168] = {.lex_state = 27, .external_lex_state = 2}, + [6152] = {.lex_state = 406, .external_lex_state = 5}, + [6153] = {.lex_state = 406, .external_lex_state = 2}, + [6154] = {.lex_state = 84, .external_lex_state = 2}, + [6155] = {.lex_state = 406, .external_lex_state = 2}, + [6156] = {.lex_state = 406, .external_lex_state = 2}, + [6157] = {.lex_state = 75, .external_lex_state = 2}, + [6158] = {.lex_state = 406, .external_lex_state = 2}, + [6159] = {.lex_state = 27, .external_lex_state = 2}, + [6160] = {.lex_state = 406, .external_lex_state = 2}, + [6161] = {.lex_state = 406, .external_lex_state = 2}, + [6162] = {.lex_state = 50, .external_lex_state = 2}, + [6163] = {.lex_state = 24, .external_lex_state = 2}, + [6164] = {.lex_state = 406, .external_lex_state = 8}, + [6165] = {.lex_state = 48, .external_lex_state = 2}, + [6166] = {.lex_state = 406, .external_lex_state = 2}, + [6167] = {.lex_state = 27, .external_lex_state = 2}, + [6168] = {.lex_state = 406, .external_lex_state = 5}, [6169] = {.lex_state = 406, .external_lex_state = 5}, [6170] = {.lex_state = 406, .external_lex_state = 5}, - [6171] = {.lex_state = 406, .external_lex_state = 2}, - [6172] = {.lex_state = 48, .external_lex_state = 2}, - [6173] = {.lex_state = 406, .external_lex_state = 5}, + [6171] = {.lex_state = 48, .external_lex_state = 2}, + [6172] = {.lex_state = 406, .external_lex_state = 5}, + [6173] = {.lex_state = 50, .external_lex_state = 2}, [6174] = {.lex_state = 406, .external_lex_state = 5}, - [6175] = {.lex_state = 406, .external_lex_state = 2}, + [6175] = {.lex_state = 50, .external_lex_state = 2}, [6176] = {.lex_state = 406, .external_lex_state = 5}, - [6177] = {.lex_state = 406, .external_lex_state = 5}, - [6178] = {.lex_state = 406, .external_lex_state = 5}, - [6179] = {.lex_state = 406, .external_lex_state = 2}, + [6177] = {.lex_state = 48, .external_lex_state = 2}, + [6178] = {.lex_state = 50, .external_lex_state = 2}, + [6179] = {.lex_state = 406, .external_lex_state = 5}, [6180] = {.lex_state = 406, .external_lex_state = 5}, [6181] = {.lex_state = 406, .external_lex_state = 5}, - [6182] = {.lex_state = 50, .external_lex_state = 2}, - [6183] = {.lex_state = 48, .external_lex_state = 2}, - [6184] = {.lex_state = 24, .external_lex_state = 2}, + [6182] = {.lex_state = 406, .external_lex_state = 5}, + [6183] = {.lex_state = 406, .external_lex_state = 5}, + [6184] = {.lex_state = 27, .external_lex_state = 2}, [6185] = {.lex_state = 406, .external_lex_state = 5}, [6186] = {.lex_state = 406, .external_lex_state = 5}, [6187] = {.lex_state = 406, .external_lex_state = 5}, - [6188] = {.lex_state = 406, .external_lex_state = 5}, - [6189] = {.lex_state = 406, .external_lex_state = 5}, + [6188] = {.lex_state = 406, .external_lex_state = 2}, + [6189] = {.lex_state = 406, .external_lex_state = 2}, [6190] = {.lex_state = 406, .external_lex_state = 5}, [6191] = {.lex_state = 406, .external_lex_state = 5}, - [6192] = {.lex_state = 406, .external_lex_state = 5}, - [6193] = {.lex_state = 27, .external_lex_state = 2}, - [6194] = {.lex_state = 406, .external_lex_state = 5}, + [6192] = {.lex_state = 406, .external_lex_state = 2}, + [6193] = {.lex_state = 48, .external_lex_state = 2}, + [6194] = {.lex_state = 406, .external_lex_state = 2}, [6195] = {.lex_state = 406, .external_lex_state = 2}, [6196] = {.lex_state = 406, .external_lex_state = 2}, - [6197] = {.lex_state = 406, .external_lex_state = 5}, + [6197] = {.lex_state = 48, .external_lex_state = 2}, [6198] = {.lex_state = 48, .external_lex_state = 2}, - [6199] = {.lex_state = 406, .external_lex_state = 5}, - [6200] = {.lex_state = 48, .external_lex_state = 2}, - [6201] = {.lex_state = 406, .external_lex_state = 5}, - [6202] = {.lex_state = 48, .external_lex_state = 2}, + [6199] = {.lex_state = 406, .external_lex_state = 2}, + [6200] = {.lex_state = 406, .external_lex_state = 5}, + [6201] = {.lex_state = 50, .external_lex_state = 2}, + [6202] = {.lex_state = 406, .external_lex_state = 5}, [6203] = {.lex_state = 406, .external_lex_state = 5}, - [6204] = {.lex_state = 406, .external_lex_state = 5}, - [6205] = {.lex_state = 406, .external_lex_state = 5}, - [6206] = {.lex_state = 406, .external_lex_state = 5}, - [6207] = {.lex_state = 406, .external_lex_state = 5}, - [6208] = {.lex_state = 406, .external_lex_state = 5}, - [6209] = {.lex_state = 406, .external_lex_state = 5}, + [6204] = {.lex_state = 406, .external_lex_state = 2}, + [6205] = {.lex_state = 406, .external_lex_state = 2}, + [6206] = {.lex_state = 406, .external_lex_state = 2}, + [6207] = {.lex_state = 406, .external_lex_state = 2}, + [6208] = {.lex_state = 406, .external_lex_state = 2}, + [6209] = {.lex_state = 27, .external_lex_state = 2}, [6210] = {.lex_state = 406, .external_lex_state = 5}, [6211] = {.lex_state = 406, .external_lex_state = 5}, [6212] = {.lex_state = 406, .external_lex_state = 5}, - [6213] = {.lex_state = 406, .external_lex_state = 5}, - [6214] = {.lex_state = 406, .external_lex_state = 5}, + [6213] = {.lex_state = 406, .external_lex_state = 2}, + [6214] = {.lex_state = 406, .external_lex_state = 2}, [6215] = {.lex_state = 406, .external_lex_state = 5}, [6216] = {.lex_state = 406, .external_lex_state = 5}, - [6217] = {.lex_state = 48, .external_lex_state = 2}, - [6218] = {.lex_state = 406, .external_lex_state = 5}, - [6219] = {.lex_state = 406, .external_lex_state = 2}, + [6217] = {.lex_state = 406, .external_lex_state = 5}, + [6218] = {.lex_state = 406, .external_lex_state = 2}, + [6219] = {.lex_state = 406, .external_lex_state = 5}, [6220] = {.lex_state = 406, .external_lex_state = 5}, [6221] = {.lex_state = 406, .external_lex_state = 2}, [6222] = {.lex_state = 406, .external_lex_state = 5}, [6223] = {.lex_state = 406, .external_lex_state = 5}, - [6224] = {.lex_state = 48, .external_lex_state = 2}, + [6224] = {.lex_state = 406, .external_lex_state = 2}, [6225] = {.lex_state = 406, .external_lex_state = 5}, - [6226] = {.lex_state = 406, .external_lex_state = 2}, - [6227] = {.lex_state = 406, .external_lex_state = 2}, + [6226] = {.lex_state = 406, .external_lex_state = 5}, + [6227] = {.lex_state = 48, .external_lex_state = 2}, [6228] = {.lex_state = 406, .external_lex_state = 5}, - [6229] = {.lex_state = 406, .external_lex_state = 5}, - [6230] = {.lex_state = 406, .external_lex_state = 5}, + [6229] = {.lex_state = 48, .external_lex_state = 2}, + [6230] = {.lex_state = 48, .external_lex_state = 2}, [6231] = {.lex_state = 406, .external_lex_state = 5}, - [6232] = {.lex_state = 406, .external_lex_state = 5}, - [6233] = {.lex_state = 406, .external_lex_state = 5}, - [6234] = {.lex_state = 406, .external_lex_state = 2}, + [6232] = {.lex_state = 48, .external_lex_state = 2}, + [6233] = {.lex_state = 406, .external_lex_state = 2}, + [6234] = {.lex_state = 406, .external_lex_state = 5}, [6235] = {.lex_state = 406, .external_lex_state = 5}, - [6236] = {.lex_state = 406, .external_lex_state = 2}, + [6236] = {.lex_state = 406, .external_lex_state = 5}, [6237] = {.lex_state = 406, .external_lex_state = 5}, [6238] = {.lex_state = 406, .external_lex_state = 5}, - [6239] = {.lex_state = 406, .external_lex_state = 8}, + [6239] = {.lex_state = 406, .external_lex_state = 2}, [6240] = {.lex_state = 406, .external_lex_state = 2}, - [6241] = {.lex_state = 406, .external_lex_state = 2}, - [6242] = {.lex_state = 406, .external_lex_state = 5}, - [6243] = {.lex_state = 406, .external_lex_state = 2}, - [6244] = {.lex_state = 406, .external_lex_state = 5}, - [6245] = {.lex_state = 406, .external_lex_state = 5}, - [6246] = {.lex_state = 406, .external_lex_state = 5}, + [6241] = {.lex_state = 406, .external_lex_state = 5}, + [6242] = {.lex_state = 27, .external_lex_state = 2}, + [6243] = {.lex_state = 406, .external_lex_state = 5}, + [6244] = {.lex_state = 406, .external_lex_state = 2}, + [6245] = {.lex_state = 406, .external_lex_state = 2}, + [6246] = {.lex_state = 406, .external_lex_state = 2}, [6247] = {.lex_state = 406, .external_lex_state = 2}, - [6248] = {.lex_state = 406, .external_lex_state = 5}, - [6249] = {.lex_state = 406, .external_lex_state = 5}, + [6248] = {.lex_state = 55, .external_lex_state = 2}, + [6249] = {.lex_state = 48, .external_lex_state = 2}, [6250] = {.lex_state = 406, .external_lex_state = 5}, [6251] = {.lex_state = 406, .external_lex_state = 5}, [6252] = {.lex_state = 406, .external_lex_state = 5}, - [6253] = {.lex_state = 406, .external_lex_state = 5}, - [6254] = {.lex_state = 406, .external_lex_state = 5}, - [6255] = {.lex_state = 406, .external_lex_state = 5}, + [6253] = {.lex_state = 55, .external_lex_state = 2}, + [6254] = {.lex_state = 406, .external_lex_state = 2}, + [6255] = {.lex_state = 406, .external_lex_state = 2}, [6256] = {.lex_state = 406, .external_lex_state = 5}, - [6257] = {.lex_state = 406, .external_lex_state = 5}, + [6257] = {.lex_state = 27, .external_lex_state = 2}, [6258] = {.lex_state = 406, .external_lex_state = 5}, - [6259] = {.lex_state = 406, .external_lex_state = 5}, - [6260] = {.lex_state = 48, .external_lex_state = 2}, + [6259] = {.lex_state = 406, .external_lex_state = 2}, + [6260] = {.lex_state = 406, .external_lex_state = 2}, [6261] = {.lex_state = 406, .external_lex_state = 2}, - [6262] = {.lex_state = 27, .external_lex_state = 2}, - [6263] = {.lex_state = 406, .external_lex_state = 5}, - [6264] = {.lex_state = 406, .external_lex_state = 5}, + [6262] = {.lex_state = 48, .external_lex_state = 2}, + [6263] = {.lex_state = 406, .external_lex_state = 2}, + [6264] = {.lex_state = 48, .external_lex_state = 2}, [6265] = {.lex_state = 406, .external_lex_state = 5}, - [6266] = {.lex_state = 406, .external_lex_state = 5}, - [6267] = {.lex_state = 406, .external_lex_state = 5}, + [6266] = {.lex_state = 48, .external_lex_state = 2}, + [6267] = {.lex_state = 406, .external_lex_state = 2}, [6268] = {.lex_state = 406, .external_lex_state = 5}, [6269] = {.lex_state = 406, .external_lex_state = 5}, [6270] = {.lex_state = 406, .external_lex_state = 5}, [6271] = {.lex_state = 406, .external_lex_state = 5}, [6272] = {.lex_state = 406, .external_lex_state = 5}, - [6273] = {.lex_state = 406, .external_lex_state = 5}, - [6274] = {.lex_state = 406, .external_lex_state = 5}, + [6273] = {.lex_state = 48, .external_lex_state = 2}, + [6274] = {.lex_state = 48, .external_lex_state = 2}, [6275] = {.lex_state = 406, .external_lex_state = 5}, - [6276] = {.lex_state = 406, .external_lex_state = 5}, - [6277] = {.lex_state = 406, .external_lex_state = 5}, - [6278] = {.lex_state = 406, .external_lex_state = 5}, - [6279] = {.lex_state = 48, .external_lex_state = 2}, - [6280] = {.lex_state = 406, .external_lex_state = 5}, + [6276] = {.lex_state = 48, .external_lex_state = 2}, + [6277] = {.lex_state = 48, .external_lex_state = 2}, + [6278] = {.lex_state = 406, .external_lex_state = 2}, + [6279] = {.lex_state = 406, .external_lex_state = 5}, + [6280] = {.lex_state = 406, .external_lex_state = 2}, [6281] = {.lex_state = 406, .external_lex_state = 2}, - [6282] = {.lex_state = 406, .external_lex_state = 5}, + [6282] = {.lex_state = 27, .external_lex_state = 2}, [6283] = {.lex_state = 406, .external_lex_state = 5}, - [6284] = {.lex_state = 406, .external_lex_state = 2}, + [6284] = {.lex_state = 406, .external_lex_state = 5}, [6285] = {.lex_state = 406, .external_lex_state = 5}, [6286] = {.lex_state = 406, .external_lex_state = 5}, - [6287] = {.lex_state = 406, .external_lex_state = 2}, - [6288] = {.lex_state = 406, .external_lex_state = 2}, - [6289] = {.lex_state = 406, .external_lex_state = 5}, + [6287] = {.lex_state = 50, .external_lex_state = 2}, + [6288] = {.lex_state = 406, .external_lex_state = 5}, + [6289] = {.lex_state = 50, .external_lex_state = 2}, [6290] = {.lex_state = 406, .external_lex_state = 5}, - [6291] = {.lex_state = 27, .external_lex_state = 2}, - [6292] = {.lex_state = 50, .external_lex_state = 5}, - [6293] = {.lex_state = 50, .external_lex_state = 5}, - [6294] = {.lex_state = 27, .external_lex_state = 2}, + [6291] = {.lex_state = 50, .external_lex_state = 2}, + [6292] = {.lex_state = 406, .external_lex_state = 2}, + [6293] = {.lex_state = 50, .external_lex_state = 2}, + [6294] = {.lex_state = 406, .external_lex_state = 5}, [6295] = {.lex_state = 406, .external_lex_state = 2}, - [6296] = {.lex_state = 406, .external_lex_state = 2}, - [6297] = {.lex_state = 27, .external_lex_state = 2}, + [6296] = {.lex_state = 406, .external_lex_state = 5}, + [6297] = {.lex_state = 406, .external_lex_state = 5}, [6298] = {.lex_state = 406, .external_lex_state = 5}, - [6299] = {.lex_state = 406, .external_lex_state = 5}, - [6300] = {.lex_state = 27, .external_lex_state = 2}, - [6301] = {.lex_state = 406, .external_lex_state = 5}, - [6302] = {.lex_state = 27, .external_lex_state = 2}, + [6299] = {.lex_state = 406, .external_lex_state = 2}, + [6300] = {.lex_state = 406, .external_lex_state = 2}, + [6301] = {.lex_state = 27, .external_lex_state = 2}, + [6302] = {.lex_state = 406, .external_lex_state = 2}, [6303] = {.lex_state = 406, .external_lex_state = 5}, - [6304] = {.lex_state = 406, .external_lex_state = 5}, - [6305] = {.lex_state = 27, .external_lex_state = 2}, - [6306] = {.lex_state = 406, .external_lex_state = 2}, - [6307] = {.lex_state = 27, .external_lex_state = 2}, - [6308] = {.lex_state = 406, .external_lex_state = 2}, - [6309] = {.lex_state = 27, .external_lex_state = 2}, - [6310] = {.lex_state = 27, .external_lex_state = 2}, - [6311] = {.lex_state = 406, .external_lex_state = 2}, - [6312] = {.lex_state = 27, .external_lex_state = 2}, - [6313] = {.lex_state = 406, .external_lex_state = 2}, - [6314] = {.lex_state = 27, .external_lex_state = 2}, - [6315] = {.lex_state = 406, .external_lex_state = 2}, + [6304] = {.lex_state = 406, .external_lex_state = 2}, + [6305] = {.lex_state = 406, .external_lex_state = 5}, + [6306] = {.lex_state = 406, .external_lex_state = 5}, + [6307] = {.lex_state = 406, .external_lex_state = 5}, + [6308] = {.lex_state = 406, .external_lex_state = 5}, + [6309] = {.lex_state = 406, .external_lex_state = 2}, + [6310] = {.lex_state = 406, .external_lex_state = 2}, + [6311] = {.lex_state = 48, .external_lex_state = 2}, + [6312] = {.lex_state = 406, .external_lex_state = 5}, + [6313] = {.lex_state = 406, .external_lex_state = 5}, + [6314] = {.lex_state = 406, .external_lex_state = 5}, + [6315] = {.lex_state = 48, .external_lex_state = 2}, [6316] = {.lex_state = 406, .external_lex_state = 5}, - [6317] = {.lex_state = 406, .external_lex_state = 2}, + [6317] = {.lex_state = 406, .external_lex_state = 5}, [6318] = {.lex_state = 406, .external_lex_state = 5}, [6319] = {.lex_state = 406, .external_lex_state = 5}, [6320] = {.lex_state = 406, .external_lex_state = 5}, - [6321] = {.lex_state = 406, .external_lex_state = 2}, - [6322] = {.lex_state = 406, .external_lex_state = 5}, - [6323] = {.lex_state = 406, .external_lex_state = 5}, - [6324] = {.lex_state = 406, .external_lex_state = 5}, - [6325] = {.lex_state = 48, .external_lex_state = 2}, - [6326] = {.lex_state = 406, .external_lex_state = 2}, - [6327] = {.lex_state = 48, .external_lex_state = 2}, + [6321] = {.lex_state = 406, .external_lex_state = 5}, + [6322] = {.lex_state = 27, .external_lex_state = 2}, + [6323] = {.lex_state = 406, .external_lex_state = 2}, + [6324] = {.lex_state = 406, .external_lex_state = 2}, + [6325] = {.lex_state = 406, .external_lex_state = 5}, + [6326] = {.lex_state = 48, .external_lex_state = 2}, + [6327] = {.lex_state = 406, .external_lex_state = 5}, [6328] = {.lex_state = 406, .external_lex_state = 5}, - [6329] = {.lex_state = 406, .external_lex_state = 2}, - [6330] = {.lex_state = 48, .external_lex_state = 2}, - [6331] = {.lex_state = 406, .external_lex_state = 2}, - [6332] = {.lex_state = 406, .external_lex_state = 2}, - [6333] = {.lex_state = 406, .external_lex_state = 2}, - [6334] = {.lex_state = 406, .external_lex_state = 5}, - [6335] = {.lex_state = 406, .external_lex_state = 5}, - [6336] = {.lex_state = 406, .external_lex_state = 5}, - [6337] = {.lex_state = 406, .external_lex_state = 5}, - [6338] = {.lex_state = 406, .external_lex_state = 5}, - [6339] = {.lex_state = 406, .external_lex_state = 5}, - [6340] = {.lex_state = 406, .external_lex_state = 5}, + [6329] = {.lex_state = 406, .external_lex_state = 5}, + [6330] = {.lex_state = 406, .external_lex_state = 5}, + [6331] = {.lex_state = 406, .external_lex_state = 5}, + [6332] = {.lex_state = 48, .external_lex_state = 2}, + [6333] = {.lex_state = 406, .external_lex_state = 5}, + [6334] = {.lex_state = 50, .external_lex_state = 2}, + [6335] = {.lex_state = 406, .external_lex_state = 2}, + [6336] = {.lex_state = 406, .external_lex_state = 2}, + [6337] = {.lex_state = 406, .external_lex_state = 2}, + [6338] = {.lex_state = 406, .external_lex_state = 2}, + [6339] = {.lex_state = 406, .external_lex_state = 2}, + [6340] = {.lex_state = 406, .external_lex_state = 2}, [6341] = {.lex_state = 406, .external_lex_state = 2}, [6342] = {.lex_state = 406, .external_lex_state = 2}, - [6343] = {.lex_state = 406, .external_lex_state = 5}, - [6344] = {.lex_state = 406, .external_lex_state = 5}, - [6345] = {.lex_state = 406, .external_lex_state = 5}, - [6346] = {.lex_state = 406, .external_lex_state = 5}, - [6347] = {.lex_state = 406, .external_lex_state = 5}, - [6348] = {.lex_state = 406, .external_lex_state = 5}, - [6349] = {.lex_state = 406, .external_lex_state = 5}, - [6350] = {.lex_state = 406, .external_lex_state = 5}, - [6351] = {.lex_state = 406, .external_lex_state = 5}, - [6352] = {.lex_state = 24, .external_lex_state = 2}, - [6353] = {.lex_state = 406, .external_lex_state = 5}, - [6354] = {.lex_state = 50, .external_lex_state = 2}, - [6355] = {.lex_state = 406, .external_lex_state = 5}, - [6356] = {.lex_state = 406, .external_lex_state = 5}, - [6357] = {.lex_state = 406, .external_lex_state = 5}, - [6358] = {.lex_state = 406, .external_lex_state = 5}, + [6343] = {.lex_state = 406, .external_lex_state = 2}, + [6344] = {.lex_state = 406, .external_lex_state = 2}, + [6345] = {.lex_state = 406, .external_lex_state = 2}, + [6346] = {.lex_state = 50, .external_lex_state = 2}, + [6347] = {.lex_state = 406, .external_lex_state = 2}, + [6348] = {.lex_state = 406, .external_lex_state = 2}, + [6349] = {.lex_state = 50, .external_lex_state = 2}, + [6350] = {.lex_state = 406, .external_lex_state = 2}, + [6351] = {.lex_state = 50, .external_lex_state = 2}, + [6352] = {.lex_state = 406, .external_lex_state = 2}, + [6353] = {.lex_state = 406, .external_lex_state = 2}, + [6354] = {.lex_state = 406, .external_lex_state = 5}, + [6355] = {.lex_state = 406, .external_lex_state = 2}, + [6356] = {.lex_state = 50, .external_lex_state = 2}, + [6357] = {.lex_state = 406, .external_lex_state = 2}, + [6358] = {.lex_state = 406, .external_lex_state = 2}, [6359] = {.lex_state = 406, .external_lex_state = 5}, - [6360] = {.lex_state = 406, .external_lex_state = 5}, - [6361] = {.lex_state = 406, .external_lex_state = 5}, - [6362] = {.lex_state = 406, .external_lex_state = 5}, + [6360] = {.lex_state = 406, .external_lex_state = 2}, + [6361] = {.lex_state = 406, .external_lex_state = 2}, + [6362] = {.lex_state = 406, .external_lex_state = 2}, [6363] = {.lex_state = 406, .external_lex_state = 5}, [6364] = {.lex_state = 406, .external_lex_state = 2}, [6365] = {.lex_state = 406, .external_lex_state = 5}, - [6366] = {.lex_state = 89, .external_lex_state = 2}, - [6367] = {.lex_state = 406, .external_lex_state = 5}, - [6368] = {.lex_state = 406, .external_lex_state = 5}, - [6369] = {.lex_state = 406, .external_lex_state = 5}, - [6370] = {.lex_state = 406, .external_lex_state = 2}, - [6371] = {.lex_state = 406, .external_lex_state = 5}, + [6366] = {.lex_state = 406, .external_lex_state = 2}, + [6367] = {.lex_state = 406, .external_lex_state = 2}, + [6368] = {.lex_state = 50, .external_lex_state = 2}, + [6369] = {.lex_state = 406, .external_lex_state = 2}, + [6370] = {.lex_state = 2, .external_lex_state = 2}, + [6371] = {.lex_state = 406, .external_lex_state = 2}, [6372] = {.lex_state = 406, .external_lex_state = 2}, [6373] = {.lex_state = 406, .external_lex_state = 5}, - [6374] = {.lex_state = 406, .external_lex_state = 5}, - [6375] = {.lex_state = 406, .external_lex_state = 2}, - [6376] = {.lex_state = 406, .external_lex_state = 5}, - [6377] = {.lex_state = 406, .external_lex_state = 2}, + [6374] = {.lex_state = 406, .external_lex_state = 2}, + [6375] = {.lex_state = 406, .external_lex_state = 5}, + [6376] = {.lex_state = 406, .external_lex_state = 2}, + [6377] = {.lex_state = 406, .external_lex_state = 5}, [6378] = {.lex_state = 406, .external_lex_state = 2}, - [6379] = {.lex_state = 406, .external_lex_state = 5}, - [6380] = {.lex_state = 406, .external_lex_state = 5}, - [6381] = {.lex_state = 406, .external_lex_state = 5}, + [6379] = {.lex_state = 406, .external_lex_state = 2}, + [6380] = {.lex_state = 406, .external_lex_state = 2}, + [6381] = {.lex_state = 406, .external_lex_state = 2}, [6382] = {.lex_state = 406, .external_lex_state = 5}, [6383] = {.lex_state = 406, .external_lex_state = 5}, [6384] = {.lex_state = 406, .external_lex_state = 5}, - [6385] = {.lex_state = 406, .external_lex_state = 5}, - [6386] = {.lex_state = 406, .external_lex_state = 5}, - [6387] = {.lex_state = 406, .external_lex_state = 5}, - [6388] = {.lex_state = 406, .external_lex_state = 5}, - [6389] = {.lex_state = 406, .external_lex_state = 5}, - [6390] = {.lex_state = 406, .external_lex_state = 5}, - [6391] = {.lex_state = 48, .external_lex_state = 2}, - [6392] = {.lex_state = 27, .external_lex_state = 2}, - [6393] = {.lex_state = 48, .external_lex_state = 2}, + [6385] = {.lex_state = 406, .external_lex_state = 2}, + [6386] = {.lex_state = 48, .external_lex_state = 2}, + [6387] = {.lex_state = 406, .external_lex_state = 2}, + [6388] = {.lex_state = 50, .external_lex_state = 2}, + [6389] = {.lex_state = 406, .external_lex_state = 2}, + [6390] = {.lex_state = 50, .external_lex_state = 2}, + [6391] = {.lex_state = 406, .external_lex_state = 2}, + [6392] = {.lex_state = 406, .external_lex_state = 2}, + [6393] = {.lex_state = 406, .external_lex_state = 5}, [6394] = {.lex_state = 406, .external_lex_state = 5}, - [6395] = {.lex_state = 48, .external_lex_state = 2}, + [6395] = {.lex_state = 406, .external_lex_state = 2}, [6396] = {.lex_state = 406, .external_lex_state = 2}, - [6397] = {.lex_state = 406, .external_lex_state = 2}, + [6397] = {.lex_state = 48, .external_lex_state = 2}, [6398] = {.lex_state = 406, .external_lex_state = 2}, [6399] = {.lex_state = 406, .external_lex_state = 2}, - [6400] = {.lex_state = 406, .external_lex_state = 5}, - [6401] = {.lex_state = 406, .external_lex_state = 5}, + [6400] = {.lex_state = 406, .external_lex_state = 2}, + [6401] = {.lex_state = 406, .external_lex_state = 2}, [6402] = {.lex_state = 406, .external_lex_state = 2}, [6403] = {.lex_state = 406, .external_lex_state = 2}, [6404] = {.lex_state = 406, .external_lex_state = 2}, [6405] = {.lex_state = 406, .external_lex_state = 2}, - [6406] = {.lex_state = 406, .external_lex_state = 2}, - [6407] = {.lex_state = 406, .external_lex_state = 5}, - [6408] = {.lex_state = 27, .external_lex_state = 2}, - [6409] = {.lex_state = 406, .external_lex_state = 5}, - [6410] = {.lex_state = 406, .external_lex_state = 2}, - [6411] = {.lex_state = 55, .external_lex_state = 2}, - [6412] = {.lex_state = 406, .external_lex_state = 5}, + [6406] = {.lex_state = 406, .external_lex_state = 5}, + [6407] = {.lex_state = 50, .external_lex_state = 2}, + [6408] = {.lex_state = 50, .external_lex_state = 2}, + [6409] = {.lex_state = 406, .external_lex_state = 2}, + [6410] = {.lex_state = 406, .external_lex_state = 5}, + [6411] = {.lex_state = 406, .external_lex_state = 5}, + [6412] = {.lex_state = 406, .external_lex_state = 2}, [6413] = {.lex_state = 406, .external_lex_state = 5}, [6414] = {.lex_state = 406, .external_lex_state = 5}, - [6415] = {.lex_state = 55, .external_lex_state = 2}, - [6416] = {.lex_state = 24, .external_lex_state = 2}, - [6417] = {.lex_state = 406, .external_lex_state = 5}, + [6415] = {.lex_state = 50, .external_lex_state = 2}, + [6416] = {.lex_state = 406, .external_lex_state = 2}, + [6417] = {.lex_state = 50, .external_lex_state = 2}, [6418] = {.lex_state = 406, .external_lex_state = 5}, - [6419] = {.lex_state = 406, .external_lex_state = 5}, + [6419] = {.lex_state = 406, .external_lex_state = 2}, [6420] = {.lex_state = 406, .external_lex_state = 2}, - [6421] = {.lex_state = 406, .external_lex_state = 5}, - [6422] = {.lex_state = 406, .external_lex_state = 2}, + [6421] = {.lex_state = 50, .external_lex_state = 2}, + [6422] = {.lex_state = 406, .external_lex_state = 5}, [6423] = {.lex_state = 406, .external_lex_state = 2}, - [6424] = {.lex_state = 406, .external_lex_state = 5}, + [6424] = {.lex_state = 406, .external_lex_state = 2}, [6425] = {.lex_state = 406, .external_lex_state = 2}, - [6426] = {.lex_state = 406, .external_lex_state = 5}, - [6427] = {.lex_state = 27, .external_lex_state = 2}, - [6428] = {.lex_state = 406, .external_lex_state = 2}, - [6429] = {.lex_state = 406, .external_lex_state = 2}, - [6430] = {.lex_state = 406, .external_lex_state = 5}, - [6431] = {.lex_state = 406, .external_lex_state = 5}, - [6432] = {.lex_state = 48, .external_lex_state = 2}, - [6433] = {.lex_state = 406, .external_lex_state = 5}, - [6434] = {.lex_state = 406, .external_lex_state = 5}, + [6426] = {.lex_state = 406, .external_lex_state = 2}, + [6427] = {.lex_state = 406, .external_lex_state = 2}, + [6428] = {.lex_state = 48, .external_lex_state = 2}, + [6429] = {.lex_state = 406, .external_lex_state = 5}, + [6430] = {.lex_state = 406, .external_lex_state = 2}, + [6431] = {.lex_state = 49, .external_lex_state = 2}, + [6432] = {.lex_state = 406, .external_lex_state = 2}, + [6433] = {.lex_state = 406, .external_lex_state = 2}, + [6434] = {.lex_state = 406, .external_lex_state = 2}, [6435] = {.lex_state = 406, .external_lex_state = 5}, - [6436] = {.lex_state = 406, .external_lex_state = 5}, - [6437] = {.lex_state = 406, .external_lex_state = 5}, + [6436] = {.lex_state = 406, .external_lex_state = 2}, + [6437] = {.lex_state = 48, .external_lex_state = 2}, [6438] = {.lex_state = 406, .external_lex_state = 5}, [6439] = {.lex_state = 406, .external_lex_state = 2}, - [6440] = {.lex_state = 27, .external_lex_state = 2}, + [6440] = {.lex_state = 406, .external_lex_state = 5}, [6441] = {.lex_state = 406, .external_lex_state = 2}, [6442] = {.lex_state = 406, .external_lex_state = 2}, [6443] = {.lex_state = 406, .external_lex_state = 2}, - [6444] = {.lex_state = 406, .external_lex_state = 5}, - [6445] = {.lex_state = 48, .external_lex_state = 2}, + [6444] = {.lex_state = 406, .external_lex_state = 2}, + [6445] = {.lex_state = 406, .external_lex_state = 2}, [6446] = {.lex_state = 406, .external_lex_state = 2}, - [6447] = {.lex_state = 48, .external_lex_state = 2}, + [6447] = {.lex_state = 406, .external_lex_state = 2}, [6448] = {.lex_state = 406, .external_lex_state = 2}, - [6449] = {.lex_state = 48, .external_lex_state = 2}, - [6450] = {.lex_state = 2, .external_lex_state = 2}, - [6451] = {.lex_state = 406, .external_lex_state = 5}, - [6452] = {.lex_state = 406, .external_lex_state = 5}, - [6453] = {.lex_state = 406, .external_lex_state = 5}, - [6454] = {.lex_state = 406, .external_lex_state = 5}, + [6449] = {.lex_state = 50, .external_lex_state = 2}, + [6450] = {.lex_state = 50, .external_lex_state = 2}, + [6451] = {.lex_state = 406, .external_lex_state = 2}, + [6452] = {.lex_state = 406, .external_lex_state = 2}, + [6453] = {.lex_state = 406, .external_lex_state = 2}, + [6454] = {.lex_state = 406, .external_lex_state = 2}, [6455] = {.lex_state = 406, .external_lex_state = 2}, - [6456] = {.lex_state = 48, .external_lex_state = 2}, - [6457] = {.lex_state = 406, .external_lex_state = 5}, - [6458] = {.lex_state = 24, .external_lex_state = 2}, - [6459] = {.lex_state = 406, .external_lex_state = 2}, - [6460] = {.lex_state = 406, .external_lex_state = 5}, - [6461] = {.lex_state = 406, .external_lex_state = 5}, - [6462] = {.lex_state = 406, .external_lex_state = 5}, - [6463] = {.lex_state = 406, .external_lex_state = 5}, - [6464] = {.lex_state = 406, .external_lex_state = 5}, - [6465] = {.lex_state = 406, .external_lex_state = 5}, - [6466] = {.lex_state = 406, .external_lex_state = 5}, + [6456] = {.lex_state = 406, .external_lex_state = 2}, + [6457] = {.lex_state = 406, .external_lex_state = 2}, + [6458] = {.lex_state = 406, .external_lex_state = 2}, + [6459] = {.lex_state = 406, .external_lex_state = 5}, + [6460] = {.lex_state = 406, .external_lex_state = 2}, + [6461] = {.lex_state = 406, .external_lex_state = 2}, + [6462] = {.lex_state = 406, .external_lex_state = 2}, + [6463] = {.lex_state = 406, .external_lex_state = 2}, + [6464] = {.lex_state = 406, .external_lex_state = 2}, + [6465] = {.lex_state = 406, .external_lex_state = 2}, + [6466] = {.lex_state = 406, .external_lex_state = 2}, [6467] = {.lex_state = 406, .external_lex_state = 2}, - [6468] = {.lex_state = 50, .external_lex_state = 5}, - [6469] = {.lex_state = 50, .external_lex_state = 5}, - [6470] = {.lex_state = 50, .external_lex_state = 2}, - [6471] = {.lex_state = 406, .external_lex_state = 5}, - [6472] = {.lex_state = 50, .external_lex_state = 2}, + [6468] = {.lex_state = 406, .external_lex_state = 2}, + [6469] = {.lex_state = 406, .external_lex_state = 2}, + [6470] = {.lex_state = 406, .external_lex_state = 2}, + [6471] = {.lex_state = 406, .external_lex_state = 2}, + [6472] = {.lex_state = 406, .external_lex_state = 2}, [6473] = {.lex_state = 406, .external_lex_state = 2}, - [6474] = {.lex_state = 50, .external_lex_state = 2}, - [6475] = {.lex_state = 406, .external_lex_state = 5}, + [6474] = {.lex_state = 406, .external_lex_state = 2}, + [6475] = {.lex_state = 406, .external_lex_state = 2}, [6476] = {.lex_state = 50, .external_lex_state = 2}, - [6477] = {.lex_state = 49, .external_lex_state = 2}, + [6477] = {.lex_state = 406, .external_lex_state = 2}, [6478] = {.lex_state = 406, .external_lex_state = 2}, - [6479] = {.lex_state = 406, .external_lex_state = 5}, - [6480] = {.lex_state = 406, .external_lex_state = 2}, + [6479] = {.lex_state = 406, .external_lex_state = 2}, + [6480] = {.lex_state = 406, .external_lex_state = 5}, [6481] = {.lex_state = 406, .external_lex_state = 2}, [6482] = {.lex_state = 406, .external_lex_state = 2}, - [6483] = {.lex_state = 50, .external_lex_state = 2}, + [6483] = {.lex_state = 406, .external_lex_state = 2}, [6484] = {.lex_state = 406, .external_lex_state = 5}, [6485] = {.lex_state = 406, .external_lex_state = 2}, - [6486] = {.lex_state = 406, .external_lex_state = 5}, + [6486] = {.lex_state = 406, .external_lex_state = 2}, [6487] = {.lex_state = 406, .external_lex_state = 2}, [6488] = {.lex_state = 406, .external_lex_state = 2}, - [6489] = {.lex_state = 406, .external_lex_state = 2}, + [6489] = {.lex_state = 50, .external_lex_state = 2}, [6490] = {.lex_state = 406, .external_lex_state = 2}, [6491] = {.lex_state = 406, .external_lex_state = 2}, [6492] = {.lex_state = 406, .external_lex_state = 2}, @@ -28877,141 +28632,141 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6496] = {.lex_state = 406, .external_lex_state = 2}, [6497] = {.lex_state = 406, .external_lex_state = 2}, [6498] = {.lex_state = 406, .external_lex_state = 2}, - [6499] = {.lex_state = 406, .external_lex_state = 2}, - [6500] = {.lex_state = 406, .external_lex_state = 2}, + [6499] = {.lex_state = 406, .external_lex_state = 5}, + [6500] = {.lex_state = 50, .external_lex_state = 2}, [6501] = {.lex_state = 406, .external_lex_state = 2}, [6502] = {.lex_state = 406, .external_lex_state = 2}, [6503] = {.lex_state = 406, .external_lex_state = 2}, - [6504] = {.lex_state = 406, .external_lex_state = 2}, - [6505] = {.lex_state = 50, .external_lex_state = 2}, - [6506] = {.lex_state = 406, .external_lex_state = 2}, + [6504] = {.lex_state = 406, .external_lex_state = 5}, + [6505] = {.lex_state = 406, .external_lex_state = 5}, + [6506] = {.lex_state = 406, .external_lex_state = 5}, [6507] = {.lex_state = 50, .external_lex_state = 2}, [6508] = {.lex_state = 406, .external_lex_state = 2}, - [6509] = {.lex_state = 406, .external_lex_state = 5}, - [6510] = {.lex_state = 406, .external_lex_state = 2}, - [6511] = {.lex_state = 406, .external_lex_state = 5}, - [6512] = {.lex_state = 50, .external_lex_state = 2}, - [6513] = {.lex_state = 50, .external_lex_state = 2}, + [6509] = {.lex_state = 406, .external_lex_state = 2}, + [6510] = {.lex_state = 50, .external_lex_state = 2}, + [6511] = {.lex_state = 406, .external_lex_state = 2}, + [6512] = {.lex_state = 406, .external_lex_state = 2}, + [6513] = {.lex_state = 406, .external_lex_state = 5}, [6514] = {.lex_state = 406, .external_lex_state = 2}, - [6515] = {.lex_state = 406, .external_lex_state = 2}, + [6515] = {.lex_state = 406, .external_lex_state = 5}, [6516] = {.lex_state = 406, .external_lex_state = 2}, [6517] = {.lex_state = 50, .external_lex_state = 2}, - [6518] = {.lex_state = 406, .external_lex_state = 5}, - [6519] = {.lex_state = 406, .external_lex_state = 2}, + [6518] = {.lex_state = 81, .external_lex_state = 2}, + [6519] = {.lex_state = 50, .external_lex_state = 2}, [6520] = {.lex_state = 406, .external_lex_state = 2}, - [6521] = {.lex_state = 406, .external_lex_state = 5}, + [6521] = {.lex_state = 406, .external_lex_state = 2}, [6522] = {.lex_state = 406, .external_lex_state = 2}, - [6523] = {.lex_state = 406, .external_lex_state = 5}, + [6523] = {.lex_state = 406, .external_lex_state = 2}, [6524] = {.lex_state = 406, .external_lex_state = 2}, - [6525] = {.lex_state = 50, .external_lex_state = 2}, - [6526] = {.lex_state = 406, .external_lex_state = 2}, + [6525] = {.lex_state = 406, .external_lex_state = 2}, + [6526] = {.lex_state = 50, .external_lex_state = 2}, [6527] = {.lex_state = 406, .external_lex_state = 2}, [6528] = {.lex_state = 406, .external_lex_state = 2}, - [6529] = {.lex_state = 406, .external_lex_state = 5}, - [6530] = {.lex_state = 406, .external_lex_state = 2}, + [6529] = {.lex_state = 406, .external_lex_state = 2}, + [6530] = {.lex_state = 50, .external_lex_state = 2}, [6531] = {.lex_state = 406, .external_lex_state = 2}, - [6532] = {.lex_state = 406, .external_lex_state = 2}, + [6532] = {.lex_state = 50, .external_lex_state = 2}, [6533] = {.lex_state = 406, .external_lex_state = 2}, [6534] = {.lex_state = 406, .external_lex_state = 2}, - [6535] = {.lex_state = 406, .external_lex_state = 2}, + [6535] = {.lex_state = 50, .external_lex_state = 2}, [6536] = {.lex_state = 406, .external_lex_state = 2}, - [6537] = {.lex_state = 406, .external_lex_state = 5}, - [6538] = {.lex_state = 406, .external_lex_state = 5}, - [6539] = {.lex_state = 406, .external_lex_state = 5}, + [6537] = {.lex_state = 406, .external_lex_state = 2}, + [6538] = {.lex_state = 406, .external_lex_state = 2}, + [6539] = {.lex_state = 406, .external_lex_state = 2}, [6540] = {.lex_state = 406, .external_lex_state = 2}, - [6541] = {.lex_state = 406, .external_lex_state = 5}, + [6541] = {.lex_state = 406, .external_lex_state = 2}, [6542] = {.lex_state = 406, .external_lex_state = 2}, - [6543] = {.lex_state = 406, .external_lex_state = 2}, - [6544] = {.lex_state = 406, .external_lex_state = 2}, - [6545] = {.lex_state = 48, .external_lex_state = 2}, + [6543] = {.lex_state = 50, .external_lex_state = 2}, + [6544] = {.lex_state = 50, .external_lex_state = 2}, + [6545] = {.lex_state = 406, .external_lex_state = 2}, [6546] = {.lex_state = 406, .external_lex_state = 2}, - [6547] = {.lex_state = 48, .external_lex_state = 2}, - [6548] = {.lex_state = 406, .external_lex_state = 5}, - [6549] = {.lex_state = 50, .external_lex_state = 2}, + [6547] = {.lex_state = 406, .external_lex_state = 2}, + [6548] = {.lex_state = 406, .external_lex_state = 2}, + [6549] = {.lex_state = 406, .external_lex_state = 2}, [6550] = {.lex_state = 406, .external_lex_state = 2}, - [6551] = {.lex_state = 50, .external_lex_state = 2}, - [6552] = {.lex_state = 406, .external_lex_state = 2}, + [6551] = {.lex_state = 406, .external_lex_state = 2}, + [6552] = {.lex_state = 406, .external_lex_state = 5}, [6553] = {.lex_state = 406, .external_lex_state = 2}, - [6554] = {.lex_state = 406, .external_lex_state = 5}, - [6555] = {.lex_state = 406, .external_lex_state = 2}, - [6556] = {.lex_state = 406, .external_lex_state = 2}, + [6554] = {.lex_state = 406, .external_lex_state = 2}, + [6555] = {.lex_state = 406, .external_lex_state = 5}, + [6556] = {.lex_state = 406, .external_lex_state = 5}, [6557] = {.lex_state = 406, .external_lex_state = 2}, - [6558] = {.lex_state = 50, .external_lex_state = 2}, + [6558] = {.lex_state = 406, .external_lex_state = 2}, [6559] = {.lex_state = 406, .external_lex_state = 2}, - [6560] = {.lex_state = 406, .external_lex_state = 5}, - [6561] = {.lex_state = 406, .external_lex_state = 2}, - [6562] = {.lex_state = 406, .external_lex_state = 2}, - [6563] = {.lex_state = 406, .external_lex_state = 2}, - [6564] = {.lex_state = 406, .external_lex_state = 2}, + [6560] = {.lex_state = 406, .external_lex_state = 2}, + [6561] = {.lex_state = 50, .external_lex_state = 2}, + [6562] = {.lex_state = 50, .external_lex_state = 2}, + [6563] = {.lex_state = 50, .external_lex_state = 2}, + [6564] = {.lex_state = 50, .external_lex_state = 2}, [6565] = {.lex_state = 406, .external_lex_state = 2}, - [6566] = {.lex_state = 406, .external_lex_state = 5}, - [6567] = {.lex_state = 406, .external_lex_state = 5}, - [6568] = {.lex_state = 50, .external_lex_state = 2}, + [6566] = {.lex_state = 406, .external_lex_state = 2}, + [6567] = {.lex_state = 50, .external_lex_state = 2}, + [6568] = {.lex_state = 406, .external_lex_state = 5}, [6569] = {.lex_state = 406, .external_lex_state = 5}, [6570] = {.lex_state = 406, .external_lex_state = 2}, [6571] = {.lex_state = 406, .external_lex_state = 2}, [6572] = {.lex_state = 406, .external_lex_state = 2}, [6573] = {.lex_state = 406, .external_lex_state = 2}, - [6574] = {.lex_state = 406, .external_lex_state = 5}, - [6575] = {.lex_state = 406, .external_lex_state = 2}, - [6576] = {.lex_state = 406, .external_lex_state = 5}, - [6577] = {.lex_state = 406, .external_lex_state = 2}, + [6574] = {.lex_state = 406, .external_lex_state = 2}, + [6575] = {.lex_state = 50, .external_lex_state = 2}, + [6576] = {.lex_state = 406, .external_lex_state = 2}, + [6577] = {.lex_state = 50, .external_lex_state = 2}, [6578] = {.lex_state = 406, .external_lex_state = 2}, [6579] = {.lex_state = 406, .external_lex_state = 2}, - [6580] = {.lex_state = 2, .external_lex_state = 2}, + [6580] = {.lex_state = 406, .external_lex_state = 2}, [6581] = {.lex_state = 406, .external_lex_state = 2}, [6582] = {.lex_state = 406, .external_lex_state = 2}, [6583] = {.lex_state = 406, .external_lex_state = 2}, - [6584] = {.lex_state = 50, .external_lex_state = 2}, - [6585] = {.lex_state = 406, .external_lex_state = 2}, - [6586] = {.lex_state = 406, .external_lex_state = 5}, + [6584] = {.lex_state = 406, .external_lex_state = 2}, + [6585] = {.lex_state = 50, .external_lex_state = 2}, + [6586] = {.lex_state = 406, .external_lex_state = 2}, [6587] = {.lex_state = 406, .external_lex_state = 2}, [6588] = {.lex_state = 406, .external_lex_state = 2}, [6589] = {.lex_state = 406, .external_lex_state = 2}, [6590] = {.lex_state = 406, .external_lex_state = 5}, - [6591] = {.lex_state = 406, .external_lex_state = 5}, - [6592] = {.lex_state = 406, .external_lex_state = 5}, - [6593] = {.lex_state = 406, .external_lex_state = 5}, + [6591] = {.lex_state = 50, .external_lex_state = 2}, + [6592] = {.lex_state = 406, .external_lex_state = 2}, + [6593] = {.lex_state = 406, .external_lex_state = 2}, [6594] = {.lex_state = 406, .external_lex_state = 5}, [6595] = {.lex_state = 406, .external_lex_state = 2}, [6596] = {.lex_state = 406, .external_lex_state = 5}, - [6597] = {.lex_state = 50, .external_lex_state = 2}, - [6598] = {.lex_state = 406, .external_lex_state = 2}, + [6597] = {.lex_state = 406, .external_lex_state = 5}, + [6598] = {.lex_state = 406, .external_lex_state = 5}, [6599] = {.lex_state = 406, .external_lex_state = 2}, [6600] = {.lex_state = 406, .external_lex_state = 5}, [6601] = {.lex_state = 406, .external_lex_state = 5}, [6602] = {.lex_state = 406, .external_lex_state = 2}, - [6603] = {.lex_state = 406, .external_lex_state = 5}, - [6604] = {.lex_state = 406, .external_lex_state = 2}, - [6605] = {.lex_state = 81, .external_lex_state = 2}, - [6606] = {.lex_state = 406, .external_lex_state = 5}, + [6603] = {.lex_state = 406, .external_lex_state = 2}, + [6604] = {.lex_state = 406, .external_lex_state = 5}, + [6605] = {.lex_state = 406, .external_lex_state = 5}, + [6606] = {.lex_state = 406, .external_lex_state = 2}, [6607] = {.lex_state = 406, .external_lex_state = 2}, [6608] = {.lex_state = 406, .external_lex_state = 2}, - [6609] = {.lex_state = 406, .external_lex_state = 2}, - [6610] = {.lex_state = 406, .external_lex_state = 5}, - [6611] = {.lex_state = 406, .external_lex_state = 5}, + [6609] = {.lex_state = 406, .external_lex_state = 5}, + [6610] = {.lex_state = 406, .external_lex_state = 2}, + [6611] = {.lex_state = 406, .external_lex_state = 2}, [6612] = {.lex_state = 406, .external_lex_state = 5}, [6613] = {.lex_state = 406, .external_lex_state = 2}, - [6614] = {.lex_state = 406, .external_lex_state = 2}, + [6614] = {.lex_state = 406, .external_lex_state = 5}, [6615] = {.lex_state = 406, .external_lex_state = 2}, - [6616] = {.lex_state = 406, .external_lex_state = 5}, - [6617] = {.lex_state = 406, .external_lex_state = 2}, - [6618] = {.lex_state = 406, .external_lex_state = 2}, - [6619] = {.lex_state = 406, .external_lex_state = 2}, + [6616] = {.lex_state = 50, .external_lex_state = 2}, + [6617] = {.lex_state = 50, .external_lex_state = 2}, + [6618] = {.lex_state = 48, .external_lex_state = 2}, + [6619] = {.lex_state = 50, .external_lex_state = 2}, [6620] = {.lex_state = 406, .external_lex_state = 2}, - [6621] = {.lex_state = 406, .external_lex_state = 5}, + [6621] = {.lex_state = 406, .external_lex_state = 2}, [6622] = {.lex_state = 406, .external_lex_state = 2}, - [6623] = {.lex_state = 406, .external_lex_state = 5}, - [6624] = {.lex_state = 406, .external_lex_state = 2}, - [6625] = {.lex_state = 406, .external_lex_state = 2}, - [6626] = {.lex_state = 48, .external_lex_state = 2}, - [6627] = {.lex_state = 406, .external_lex_state = 2}, + [6623] = {.lex_state = 406, .external_lex_state = 2}, + [6624] = {.lex_state = 50, .external_lex_state = 2}, + [6625] = {.lex_state = 48, .external_lex_state = 2}, + [6626] = {.lex_state = 406, .external_lex_state = 2}, + [6627] = {.lex_state = 406, .external_lex_state = 5}, [6628] = {.lex_state = 406, .external_lex_state = 2}, [6629] = {.lex_state = 406, .external_lex_state = 2}, [6630] = {.lex_state = 406, .external_lex_state = 2}, - [6631] = {.lex_state = 406, .external_lex_state = 5}, + [6631] = {.lex_state = 406, .external_lex_state = 2}, [6632] = {.lex_state = 406, .external_lex_state = 2}, - [6633] = {.lex_state = 406, .external_lex_state = 5}, + [6633] = {.lex_state = 406, .external_lex_state = 2}, [6634] = {.lex_state = 406, .external_lex_state = 2}, [6635] = {.lex_state = 406, .external_lex_state = 2}, [6636] = {.lex_state = 48, .external_lex_state = 2}, @@ -29019,8 +28774,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6638] = {.lex_state = 406, .external_lex_state = 2}, [6639] = {.lex_state = 406, .external_lex_state = 2}, [6640] = {.lex_state = 406, .external_lex_state = 2}, - [6641] = {.lex_state = 48, .external_lex_state = 2}, - [6642] = {.lex_state = 406, .external_lex_state = 5}, + [6641] = {.lex_state = 406, .external_lex_state = 2}, + [6642] = {.lex_state = 406, .external_lex_state = 2}, [6643] = {.lex_state = 406, .external_lex_state = 2}, [6644] = {.lex_state = 406, .external_lex_state = 2}, [6645] = {.lex_state = 406, .external_lex_state = 5}, @@ -29029,8 +28784,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6648] = {.lex_state = 406, .external_lex_state = 2}, [6649] = {.lex_state = 406, .external_lex_state = 2}, [6650] = {.lex_state = 406, .external_lex_state = 2}, - [6651] = {.lex_state = 406, .external_lex_state = 5}, - [6652] = {.lex_state = 406, .external_lex_state = 5}, + [6651] = {.lex_state = 406, .external_lex_state = 2}, + [6652] = {.lex_state = 406, .external_lex_state = 2}, [6653] = {.lex_state = 406, .external_lex_state = 2}, [6654] = {.lex_state = 406, .external_lex_state = 2}, [6655] = {.lex_state = 406, .external_lex_state = 2}, @@ -29040,71 +28795,71 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6659] = {.lex_state = 406, .external_lex_state = 2}, [6660] = {.lex_state = 406, .external_lex_state = 2}, [6661] = {.lex_state = 406, .external_lex_state = 2}, - [6662] = {.lex_state = 406, .external_lex_state = 2}, - [6663] = {.lex_state = 406, .external_lex_state = 5}, - [6664] = {.lex_state = 406, .external_lex_state = 5}, + [6662] = {.lex_state = 406, .external_lex_state = 5}, + [6663] = {.lex_state = 406, .external_lex_state = 2}, + [6664] = {.lex_state = 406, .external_lex_state = 2}, [6665] = {.lex_state = 50, .external_lex_state = 2}, [6666] = {.lex_state = 406, .external_lex_state = 2}, - [6667] = {.lex_state = 406, .external_lex_state = 2}, - [6668] = {.lex_state = 50, .external_lex_state = 2}, + [6667] = {.lex_state = 50, .external_lex_state = 2}, + [6668] = {.lex_state = 406, .external_lex_state = 2}, [6669] = {.lex_state = 406, .external_lex_state = 2}, - [6670] = {.lex_state = 406, .external_lex_state = 2}, - [6671] = {.lex_state = 406, .external_lex_state = 5}, + [6670] = {.lex_state = 50, .external_lex_state = 2}, + [6671] = {.lex_state = 2, .external_lex_state = 2}, [6672] = {.lex_state = 406, .external_lex_state = 2}, [6673] = {.lex_state = 406, .external_lex_state = 2}, [6674] = {.lex_state = 406, .external_lex_state = 2}, - [6675] = {.lex_state = 406, .external_lex_state = 5}, - [6676] = {.lex_state = 406, .external_lex_state = 5}, + [6675] = {.lex_state = 406, .external_lex_state = 2}, + [6676] = {.lex_state = 406, .external_lex_state = 2}, [6677] = {.lex_state = 406, .external_lex_state = 2}, [6678] = {.lex_state = 406, .external_lex_state = 2}, [6679] = {.lex_state = 406, .external_lex_state = 2}, - [6680] = {.lex_state = 49, .external_lex_state = 2}, - [6681] = {.lex_state = 406, .external_lex_state = 5}, - [6682] = {.lex_state = 406, .external_lex_state = 5}, - [6683] = {.lex_state = 406, .external_lex_state = 2}, + [6680] = {.lex_state = 406, .external_lex_state = 2}, + [6681] = {.lex_state = 406, .external_lex_state = 2}, + [6682] = {.lex_state = 406, .external_lex_state = 2}, + [6683] = {.lex_state = 406, .external_lex_state = 5}, [6684] = {.lex_state = 406, .external_lex_state = 2}, - [6685] = {.lex_state = 406, .external_lex_state = 5}, - [6686] = {.lex_state = 406, .external_lex_state = 2}, - [6687] = {.lex_state = 406, .external_lex_state = 2}, + [6685] = {.lex_state = 406, .external_lex_state = 2}, + [6686] = {.lex_state = 406, .external_lex_state = 5}, + [6687] = {.lex_state = 50, .external_lex_state = 2}, [6688] = {.lex_state = 406, .external_lex_state = 2}, - [6689] = {.lex_state = 406, .external_lex_state = 2}, + [6689] = {.lex_state = 406, .external_lex_state = 5}, [6690] = {.lex_state = 406, .external_lex_state = 2}, - [6691] = {.lex_state = 406, .external_lex_state = 5}, - [6692] = {.lex_state = 406, .external_lex_state = 5}, + [6691] = {.lex_state = 406, .external_lex_state = 2}, + [6692] = {.lex_state = 406, .external_lex_state = 2}, [6693] = {.lex_state = 406, .external_lex_state = 5}, - [6694] = {.lex_state = 406, .external_lex_state = 2}, + [6694] = {.lex_state = 406, .external_lex_state = 5}, [6695] = {.lex_state = 406, .external_lex_state = 5}, - [6696] = {.lex_state = 50, .external_lex_state = 2}, - [6697] = {.lex_state = 406, .external_lex_state = 5}, + [6696] = {.lex_state = 406, .external_lex_state = 2}, + [6697] = {.lex_state = 406, .external_lex_state = 2}, [6698] = {.lex_state = 406, .external_lex_state = 2}, - [6699] = {.lex_state = 406, .external_lex_state = 2}, + [6699] = {.lex_state = 406, .external_lex_state = 5}, [6700] = {.lex_state = 406, .external_lex_state = 2}, [6701] = {.lex_state = 406, .external_lex_state = 2}, - [6702] = {.lex_state = 406, .external_lex_state = 5}, - [6703] = {.lex_state = 406, .external_lex_state = 5}, - [6704] = {.lex_state = 406, .external_lex_state = 5}, + [6702] = {.lex_state = 406, .external_lex_state = 2}, + [6703] = {.lex_state = 406, .external_lex_state = 2}, + [6704] = {.lex_state = 406, .external_lex_state = 2}, [6705] = {.lex_state = 406, .external_lex_state = 2}, - [6706] = {.lex_state = 406, .external_lex_state = 5}, + [6706] = {.lex_state = 406, .external_lex_state = 2}, [6707] = {.lex_state = 406, .external_lex_state = 2}, [6708] = {.lex_state = 406, .external_lex_state = 2}, [6709] = {.lex_state = 406, .external_lex_state = 2}, - [6710] = {.lex_state = 406, .external_lex_state = 2}, + [6710] = {.lex_state = 406, .external_lex_state = 5}, [6711] = {.lex_state = 406, .external_lex_state = 2}, - [6712] = {.lex_state = 406, .external_lex_state = 5}, + [6712] = {.lex_state = 406, .external_lex_state = 2}, [6713] = {.lex_state = 406, .external_lex_state = 2}, [6714] = {.lex_state = 406, .external_lex_state = 2}, - [6715] = {.lex_state = 49, .external_lex_state = 2}, + [6715] = {.lex_state = 406, .external_lex_state = 5}, [6716] = {.lex_state = 406, .external_lex_state = 2}, [6717] = {.lex_state = 406, .external_lex_state = 2}, - [6718] = {.lex_state = 406, .external_lex_state = 2}, + [6718] = {.lex_state = 406, .external_lex_state = 5}, [6719] = {.lex_state = 406, .external_lex_state = 2}, - [6720] = {.lex_state = 406, .external_lex_state = 2}, + [6720] = {.lex_state = 406, .external_lex_state = 5}, [6721] = {.lex_state = 406, .external_lex_state = 2}, [6722] = {.lex_state = 406, .external_lex_state = 2}, [6723] = {.lex_state = 406, .external_lex_state = 2}, [6724] = {.lex_state = 406, .external_lex_state = 2}, - [6725] = {.lex_state = 406, .external_lex_state = 2}, - [6726] = {.lex_state = 406, .external_lex_state = 5}, + [6725] = {.lex_state = 50, .external_lex_state = 2}, + [6726] = {.lex_state = 406, .external_lex_state = 2}, [6727] = {.lex_state = 406, .external_lex_state = 2}, [6728] = {.lex_state = 406, .external_lex_state = 2}, [6729] = {.lex_state = 406, .external_lex_state = 2}, @@ -29113,36 +28868,36 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6732] = {.lex_state = 406, .external_lex_state = 2}, [6733] = {.lex_state = 406, .external_lex_state = 2}, [6734] = {.lex_state = 406, .external_lex_state = 2}, - [6735] = {.lex_state = 81, .external_lex_state = 2}, + [6735] = {.lex_state = 406, .external_lex_state = 2}, [6736] = {.lex_state = 406, .external_lex_state = 2}, - [6737] = {.lex_state = 406, .external_lex_state = 2}, + [6737] = {.lex_state = 406, .external_lex_state = 5}, [6738] = {.lex_state = 406, .external_lex_state = 2}, [6739] = {.lex_state = 406, .external_lex_state = 2}, [6740] = {.lex_state = 406, .external_lex_state = 2}, - [6741] = {.lex_state = 406, .external_lex_state = 2}, - [6742] = {.lex_state = 406, .external_lex_state = 2}, - [6743] = {.lex_state = 406, .external_lex_state = 2}, + [6741] = {.lex_state = 50, .external_lex_state = 2}, + [6742] = {.lex_state = 406, .external_lex_state = 5}, + [6743] = {.lex_state = 50, .external_lex_state = 2}, [6744] = {.lex_state = 406, .external_lex_state = 2}, - [6745] = {.lex_state = 406, .external_lex_state = 5}, - [6746] = {.lex_state = 406, .external_lex_state = 2}, - [6747] = {.lex_state = 50, .external_lex_state = 2}, + [6745] = {.lex_state = 406, .external_lex_state = 2}, + [6746] = {.lex_state = 406, .external_lex_state = 5}, + [6747] = {.lex_state = 406, .external_lex_state = 5}, [6748] = {.lex_state = 406, .external_lex_state = 2}, - [6749] = {.lex_state = 406, .external_lex_state = 2}, + [6749] = {.lex_state = 48, .external_lex_state = 2}, [6750] = {.lex_state = 406, .external_lex_state = 2}, [6751] = {.lex_state = 406, .external_lex_state = 2}, - [6752] = {.lex_state = 406, .external_lex_state = 2}, + [6752] = {.lex_state = 406, .external_lex_state = 5}, [6753] = {.lex_state = 406, .external_lex_state = 2}, [6754] = {.lex_state = 406, .external_lex_state = 2}, - [6755] = {.lex_state = 406, .external_lex_state = 2}, + [6755] = {.lex_state = 406, .external_lex_state = 5}, [6756] = {.lex_state = 406, .external_lex_state = 2}, [6757] = {.lex_state = 406, .external_lex_state = 2}, [6758] = {.lex_state = 406, .external_lex_state = 2}, - [6759] = {.lex_state = 50, .external_lex_state = 2}, - [6760] = {.lex_state = 50, .external_lex_state = 2}, + [6759] = {.lex_state = 406, .external_lex_state = 5}, + [6760] = {.lex_state = 406, .external_lex_state = 5}, [6761] = {.lex_state = 406, .external_lex_state = 2}, [6762] = {.lex_state = 406, .external_lex_state = 2}, [6763] = {.lex_state = 406, .external_lex_state = 2}, - [6764] = {.lex_state = 406, .external_lex_state = 2}, + [6764] = {.lex_state = 406, .external_lex_state = 5}, [6765] = {.lex_state = 406, .external_lex_state = 2}, [6766] = {.lex_state = 406, .external_lex_state = 2}, [6767] = {.lex_state = 406, .external_lex_state = 2}, @@ -29151,94 +28906,94 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6770] = {.lex_state = 406, .external_lex_state = 2}, [6771] = {.lex_state = 406, .external_lex_state = 2}, [6772] = {.lex_state = 406, .external_lex_state = 2}, - [6773] = {.lex_state = 406, .external_lex_state = 2}, + [6773] = {.lex_state = 406, .external_lex_state = 5}, [6774] = {.lex_state = 406, .external_lex_state = 2}, [6775] = {.lex_state = 406, .external_lex_state = 2}, [6776] = {.lex_state = 406, .external_lex_state = 2}, [6777] = {.lex_state = 406, .external_lex_state = 2}, [6778] = {.lex_state = 406, .external_lex_state = 2}, - [6779] = {.lex_state = 50, .external_lex_state = 2}, + [6779] = {.lex_state = 406, .external_lex_state = 2}, [6780] = {.lex_state = 406, .external_lex_state = 2}, [6781] = {.lex_state = 406, .external_lex_state = 2}, - [6782] = {.lex_state = 50, .external_lex_state = 2}, - [6783] = {.lex_state = 406, .external_lex_state = 2}, - [6784] = {.lex_state = 406, .external_lex_state = 2}, + [6782] = {.lex_state = 406, .external_lex_state = 5}, + [6783] = {.lex_state = 406, .external_lex_state = 5}, + [6784] = {.lex_state = 406, .external_lex_state = 5}, [6785] = {.lex_state = 406, .external_lex_state = 2}, [6786] = {.lex_state = 406, .external_lex_state = 2}, - [6787] = {.lex_state = 406, .external_lex_state = 2}, - [6788] = {.lex_state = 406, .external_lex_state = 2}, + [6787] = {.lex_state = 49, .external_lex_state = 2}, + [6788] = {.lex_state = 406, .external_lex_state = 5}, [6789] = {.lex_state = 406, .external_lex_state = 2}, [6790] = {.lex_state = 406, .external_lex_state = 2}, - [6791] = {.lex_state = 50, .external_lex_state = 2}, - [6792] = {.lex_state = 406, .external_lex_state = 5}, + [6791] = {.lex_state = 406, .external_lex_state = 2}, + [6792] = {.lex_state = 406, .external_lex_state = 2}, [6793] = {.lex_state = 50, .external_lex_state = 2}, [6794] = {.lex_state = 406, .external_lex_state = 2}, [6795] = {.lex_state = 406, .external_lex_state = 2}, [6796] = {.lex_state = 406, .external_lex_state = 2}, - [6797] = {.lex_state = 50, .external_lex_state = 2}, - [6798] = {.lex_state = 50, .external_lex_state = 2}, - [6799] = {.lex_state = 50, .external_lex_state = 2}, + [6797] = {.lex_state = 406, .external_lex_state = 2}, + [6798] = {.lex_state = 406, .external_lex_state = 2}, + [6799] = {.lex_state = 406, .external_lex_state = 2}, [6800] = {.lex_state = 406, .external_lex_state = 2}, - [6801] = {.lex_state = 50, .external_lex_state = 2}, + [6801] = {.lex_state = 406, .external_lex_state = 2}, [6802] = {.lex_state = 406, .external_lex_state = 2}, [6803] = {.lex_state = 406, .external_lex_state = 2}, [6804] = {.lex_state = 406, .external_lex_state = 2}, [6805] = {.lex_state = 406, .external_lex_state = 2}, [6806] = {.lex_state = 406, .external_lex_state = 2}, - [6807] = {.lex_state = 50, .external_lex_state = 2}, - [6808] = {.lex_state = 406, .external_lex_state = 5}, - [6809] = {.lex_state = 48, .external_lex_state = 2}, + [6807] = {.lex_state = 406, .external_lex_state = 2}, + [6808] = {.lex_state = 406, .external_lex_state = 2}, + [6809] = {.lex_state = 406, .external_lex_state = 5}, [6810] = {.lex_state = 406, .external_lex_state = 2}, [6811] = {.lex_state = 406, .external_lex_state = 2}, [6812] = {.lex_state = 406, .external_lex_state = 2}, - [6813] = {.lex_state = 406, .external_lex_state = 2}, + [6813] = {.lex_state = 406, .external_lex_state = 5}, [6814] = {.lex_state = 406, .external_lex_state = 2}, - [6815] = {.lex_state = 406, .external_lex_state = 2}, - [6816] = {.lex_state = 48, .external_lex_state = 2}, - [6817] = {.lex_state = 406, .external_lex_state = 5}, - [6818] = {.lex_state = 406, .external_lex_state = 5}, - [6819] = {.lex_state = 406, .external_lex_state = 2}, + [6815] = {.lex_state = 406, .external_lex_state = 5}, + [6816] = {.lex_state = 406, .external_lex_state = 2}, + [6817] = {.lex_state = 406, .external_lex_state = 2}, + [6818] = {.lex_state = 406, .external_lex_state = 2}, + [6819] = {.lex_state = 50, .external_lex_state = 2}, [6820] = {.lex_state = 406, .external_lex_state = 2}, [6821] = {.lex_state = 406, .external_lex_state = 2}, - [6822] = {.lex_state = 50, .external_lex_state = 2}, + [6822] = {.lex_state = 406, .external_lex_state = 2}, [6823] = {.lex_state = 406, .external_lex_state = 2}, [6824] = {.lex_state = 406, .external_lex_state = 2}, - [6825] = {.lex_state = 406, .external_lex_state = 2}, - [6826] = {.lex_state = 406, .external_lex_state = 2}, + [6825] = {.lex_state = 406, .external_lex_state = 5}, + [6826] = {.lex_state = 406, .external_lex_state = 5}, [6827] = {.lex_state = 406, .external_lex_state = 2}, [6828] = {.lex_state = 406, .external_lex_state = 2}, [6829] = {.lex_state = 406, .external_lex_state = 2}, - [6830] = {.lex_state = 406, .external_lex_state = 5}, + [6830] = {.lex_state = 406, .external_lex_state = 2}, [6831] = {.lex_state = 406, .external_lex_state = 2}, [6832] = {.lex_state = 406, .external_lex_state = 2}, [6833] = {.lex_state = 406, .external_lex_state = 2}, - [6834] = {.lex_state = 406, .external_lex_state = 5}, - [6835] = {.lex_state = 48, .external_lex_state = 2}, + [6834] = {.lex_state = 406, .external_lex_state = 2}, + [6835] = {.lex_state = 406, .external_lex_state = 2}, [6836] = {.lex_state = 406, .external_lex_state = 2}, - [6837] = {.lex_state = 50, .external_lex_state = 2}, + [6837] = {.lex_state = 406, .external_lex_state = 2}, [6838] = {.lex_state = 406, .external_lex_state = 2}, [6839] = {.lex_state = 406, .external_lex_state = 2}, [6840] = {.lex_state = 406, .external_lex_state = 2}, - [6841] = {.lex_state = 406, .external_lex_state = 5}, - [6842] = {.lex_state = 406, .external_lex_state = 2}, + [6841] = {.lex_state = 406, .external_lex_state = 2}, + [6842] = {.lex_state = 48, .external_lex_state = 2}, [6843] = {.lex_state = 406, .external_lex_state = 2}, [6844] = {.lex_state = 406, .external_lex_state = 2}, - [6845] = {.lex_state = 50, .external_lex_state = 2}, - [6846] = {.lex_state = 406, .external_lex_state = 2}, + [6845] = {.lex_state = 406, .external_lex_state = 2}, + [6846] = {.lex_state = 48, .external_lex_state = 2}, [6847] = {.lex_state = 406, .external_lex_state = 2}, - [6848] = {.lex_state = 50, .external_lex_state = 2}, - [6849] = {.lex_state = 48, .external_lex_state = 2}, + [6848] = {.lex_state = 406, .external_lex_state = 2}, + [6849] = {.lex_state = 406, .external_lex_state = 2}, [6850] = {.lex_state = 406, .external_lex_state = 2}, [6851] = {.lex_state = 406, .external_lex_state = 2}, - [6852] = {.lex_state = 48, .external_lex_state = 2}, - [6853] = {.lex_state = 50, .external_lex_state = 2}, + [6852] = {.lex_state = 406, .external_lex_state = 2}, + [6853] = {.lex_state = 406, .external_lex_state = 5}, [6854] = {.lex_state = 406, .external_lex_state = 2}, [6855] = {.lex_state = 406, .external_lex_state = 2}, [6856] = {.lex_state = 406, .external_lex_state = 2}, - [6857] = {.lex_state = 406, .external_lex_state = 5}, - [6858] = {.lex_state = 406, .external_lex_state = 5}, + [6857] = {.lex_state = 406, .external_lex_state = 2}, + [6858] = {.lex_state = 49, .external_lex_state = 2}, [6859] = {.lex_state = 406, .external_lex_state = 2}, - [6860] = {.lex_state = 406, .external_lex_state = 5}, + [6860] = {.lex_state = 406, .external_lex_state = 2}, [6861] = {.lex_state = 406, .external_lex_state = 2}, [6862] = {.lex_state = 406, .external_lex_state = 2}, [6863] = {.lex_state = 406, .external_lex_state = 2}, @@ -29246,40 +29001,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6865] = {.lex_state = 406, .external_lex_state = 2}, [6866] = {.lex_state = 406, .external_lex_state = 2}, [6867] = {.lex_state = 406, .external_lex_state = 2}, - [6868] = {.lex_state = 406, .external_lex_state = 5}, - [6869] = {.lex_state = 50, .external_lex_state = 2}, + [6868] = {.lex_state = 406, .external_lex_state = 2}, + [6869] = {.lex_state = 406, .external_lex_state = 2}, [6870] = {.lex_state = 406, .external_lex_state = 2}, [6871] = {.lex_state = 406, .external_lex_state = 2}, - [6872] = {.lex_state = 406, .external_lex_state = 5}, + [6872] = {.lex_state = 406, .external_lex_state = 2}, [6873] = {.lex_state = 406, .external_lex_state = 2}, - [6874] = {.lex_state = 406, .external_lex_state = 2}, - [6875] = {.lex_state = 406, .external_lex_state = 5}, + [6874] = {.lex_state = 406, .external_lex_state = 5}, + [6875] = {.lex_state = 50, .external_lex_state = 2}, [6876] = {.lex_state = 406, .external_lex_state = 5}, [6877] = {.lex_state = 406, .external_lex_state = 2}, - [6878] = {.lex_state = 50, .external_lex_state = 2}, - [6879] = {.lex_state = 406, .external_lex_state = 2}, + [6878] = {.lex_state = 406, .external_lex_state = 2}, + [6879] = {.lex_state = 50, .external_lex_state = 2}, [6880] = {.lex_state = 406, .external_lex_state = 2}, [6881] = {.lex_state = 50, .external_lex_state = 2}, [6882] = {.lex_state = 50, .external_lex_state = 2}, - [6883] = {.lex_state = 406, .external_lex_state = 2}, - [6884] = {.lex_state = 48, .external_lex_state = 2}, + [6883] = {.lex_state = 50, .external_lex_state = 2}, + [6884] = {.lex_state = 406, .external_lex_state = 2}, [6885] = {.lex_state = 406, .external_lex_state = 2}, - [6886] = {.lex_state = 406, .external_lex_state = 2}, - [6887] = {.lex_state = 50, .external_lex_state = 2}, + [6886] = {.lex_state = 48, .external_lex_state = 2}, + [6887] = {.lex_state = 406, .external_lex_state = 5}, [6888] = {.lex_state = 406, .external_lex_state = 2}, - [6889] = {.lex_state = 50, .external_lex_state = 2}, + [6889] = {.lex_state = 406, .external_lex_state = 2}, [6890] = {.lex_state = 406, .external_lex_state = 2}, - [6891] = {.lex_state = 50, .external_lex_state = 2}, + [6891] = {.lex_state = 406, .external_lex_state = 2}, [6892] = {.lex_state = 406, .external_lex_state = 2}, - [6893] = {.lex_state = 50, .external_lex_state = 2}, + [6893] = {.lex_state = 406, .external_lex_state = 2}, [6894] = {.lex_state = 406, .external_lex_state = 2}, [6895] = {.lex_state = 406, .external_lex_state = 2}, - [6896] = {.lex_state = 406, .external_lex_state = 2}, - [6897] = {.lex_state = 406, .external_lex_state = 2}, + [6896] = {.lex_state = 406, .external_lex_state = 5}, + [6897] = {.lex_state = 406, .external_lex_state = 5}, [6898] = {.lex_state = 406, .external_lex_state = 2}, [6899] = {.lex_state = 406, .external_lex_state = 2}, [6900] = {.lex_state = 406, .external_lex_state = 2}, - [6901] = {.lex_state = 48, .external_lex_state = 2}, + [6901] = {.lex_state = 406, .external_lex_state = 2}, [6902] = {.lex_state = 406, .external_lex_state = 2}, [6903] = {.lex_state = 406, .external_lex_state = 2}, [6904] = {.lex_state = 406, .external_lex_state = 2}, @@ -29287,15 +29042,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6906] = {.lex_state = 406, .external_lex_state = 2}, [6907] = {.lex_state = 406, .external_lex_state = 2}, [6908] = {.lex_state = 406, .external_lex_state = 2}, - [6909] = {.lex_state = 406, .external_lex_state = 2}, + [6909] = {.lex_state = 81, .external_lex_state = 2}, [6910] = {.lex_state = 406, .external_lex_state = 2}, - [6911] = {.lex_state = 406, .external_lex_state = 2}, + [6911] = {.lex_state = 406, .external_lex_state = 5}, [6912] = {.lex_state = 406, .external_lex_state = 2}, - [6913] = {.lex_state = 406, .external_lex_state = 2}, - [6914] = {.lex_state = 50, .external_lex_state = 2}, + [6913] = {.lex_state = 406, .external_lex_state = 5}, + [6914] = {.lex_state = 406, .external_lex_state = 2}, [6915] = {.lex_state = 406, .external_lex_state = 2}, [6916] = {.lex_state = 406, .external_lex_state = 2}, - [6917] = {.lex_state = 406, .external_lex_state = 5}, + [6917] = {.lex_state = 406, .external_lex_state = 2}, [6918] = {.lex_state = 406, .external_lex_state = 2}, [6919] = {.lex_state = 406, .external_lex_state = 2}, [6920] = {.lex_state = 406, .external_lex_state = 2}, @@ -29304,13 +29059,13 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6923] = {.lex_state = 406, .external_lex_state = 2}, [6924] = {.lex_state = 406, .external_lex_state = 2}, [6925] = {.lex_state = 406, .external_lex_state = 2}, - [6926] = {.lex_state = 50, .external_lex_state = 2}, + [6926] = {.lex_state = 406, .external_lex_state = 2}, [6927] = {.lex_state = 406, .external_lex_state = 2}, [6928] = {.lex_state = 406, .external_lex_state = 2}, [6929] = {.lex_state = 406, .external_lex_state = 2}, - [6930] = {.lex_state = 50, .external_lex_state = 2}, - [6931] = {.lex_state = 406, .external_lex_state = 2}, - [6932] = {.lex_state = 406, .external_lex_state = 2}, + [6930] = {.lex_state = 406, .external_lex_state = 2}, + [6931] = {.lex_state = 406, .external_lex_state = 5}, + [6932] = {.lex_state = 50, .external_lex_state = 2}, [6933] = {.lex_state = 406, .external_lex_state = 2}, [6934] = {.lex_state = 406, .external_lex_state = 2}, [6935] = {.lex_state = 406, .external_lex_state = 2}, @@ -29318,17 +29073,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6937] = {.lex_state = 406, .external_lex_state = 2}, [6938] = {.lex_state = 406, .external_lex_state = 2}, [6939] = {.lex_state = 406, .external_lex_state = 2}, - [6940] = {.lex_state = 406, .external_lex_state = 2}, - [6941] = {.lex_state = 406, .external_lex_state = 2}, + [6940] = {.lex_state = 406, .external_lex_state = 5}, + [6941] = {.lex_state = 406, .external_lex_state = 5}, [6942] = {.lex_state = 406, .external_lex_state = 2}, [6943] = {.lex_state = 406, .external_lex_state = 2}, [6944] = {.lex_state = 406, .external_lex_state = 2}, - [6945] = {.lex_state = 406, .external_lex_state = 2}, + [6945] = {.lex_state = 406, .external_lex_state = 5}, [6946] = {.lex_state = 406, .external_lex_state = 2}, - [6947] = {.lex_state = 406, .external_lex_state = 2}, + [6947] = {.lex_state = 406, .external_lex_state = 5}, [6948] = {.lex_state = 406, .external_lex_state = 2}, - [6949] = {.lex_state = 406, .external_lex_state = 5}, - [6950] = {.lex_state = 406, .external_lex_state = 5}, + [6949] = {.lex_state = 406, .external_lex_state = 2}, + [6950] = {.lex_state = 406, .external_lex_state = 2}, [6951] = {.lex_state = 406, .external_lex_state = 2}, [6952] = {.lex_state = 406, .external_lex_state = 2}, [6953] = {.lex_state = 406, .external_lex_state = 2}, @@ -29339,46 +29094,46 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6958] = {.lex_state = 406, .external_lex_state = 2}, [6959] = {.lex_state = 406, .external_lex_state = 2}, [6960] = {.lex_state = 406, .external_lex_state = 2}, - [6961] = {.lex_state = 406, .external_lex_state = 2}, - [6962] = {.lex_state = 406, .external_lex_state = 2}, + [6961] = {.lex_state = 406, .external_lex_state = 5}, + [6962] = {.lex_state = 406, .external_lex_state = 5}, [6963] = {.lex_state = 406, .external_lex_state = 2}, [6964] = {.lex_state = 406, .external_lex_state = 2}, [6965] = {.lex_state = 406, .external_lex_state = 2}, [6966] = {.lex_state = 406, .external_lex_state = 2}, - [6967] = {.lex_state = 406, .external_lex_state = 5}, - [6968] = {.lex_state = 406, .external_lex_state = 5}, - [6969] = {.lex_state = 406, .external_lex_state = 2}, + [6967] = {.lex_state = 48, .external_lex_state = 2}, + [6968] = {.lex_state = 406, .external_lex_state = 2}, + [6969] = {.lex_state = 48, .external_lex_state = 2}, [6970] = {.lex_state = 406, .external_lex_state = 2}, - [6971] = {.lex_state = 406, .external_lex_state = 5}, + [6971] = {.lex_state = 406, .external_lex_state = 2}, [6972] = {.lex_state = 406, .external_lex_state = 2}, [6973] = {.lex_state = 406, .external_lex_state = 2}, [6974] = {.lex_state = 406, .external_lex_state = 2}, - [6975] = {.lex_state = 406, .external_lex_state = 5}, + [6975] = {.lex_state = 406, .external_lex_state = 2}, [6976] = {.lex_state = 406, .external_lex_state = 2}, - [6977] = {.lex_state = 406, .external_lex_state = 5}, + [6977] = {.lex_state = 406, .external_lex_state = 2}, [6978] = {.lex_state = 406, .external_lex_state = 2}, [6979] = {.lex_state = 406, .external_lex_state = 2}, [6980] = {.lex_state = 406, .external_lex_state = 2}, [6981] = {.lex_state = 406, .external_lex_state = 2}, - [6982] = {.lex_state = 50, .external_lex_state = 2}, + [6982] = {.lex_state = 406, .external_lex_state = 2}, [6983] = {.lex_state = 406, .external_lex_state = 2}, - [6984] = {.lex_state = 50, .external_lex_state = 2}, - [6985] = {.lex_state = 2, .external_lex_state = 2}, + [6984] = {.lex_state = 406, .external_lex_state = 2}, + [6985] = {.lex_state = 406, .external_lex_state = 2}, [6986] = {.lex_state = 406, .external_lex_state = 2}, [6987] = {.lex_state = 406, .external_lex_state = 2}, [6988] = {.lex_state = 406, .external_lex_state = 2}, - [6989] = {.lex_state = 49, .external_lex_state = 2}, - [6990] = {.lex_state = 406, .external_lex_state = 5}, + [6989] = {.lex_state = 406, .external_lex_state = 2}, + [6990] = {.lex_state = 3, .external_lex_state = 10}, [6991] = {.lex_state = 406, .external_lex_state = 2}, [6992] = {.lex_state = 406, .external_lex_state = 2}, [6993] = {.lex_state = 50, .external_lex_state = 2}, - [6994] = {.lex_state = 50, .external_lex_state = 2}, + [6994] = {.lex_state = 406, .external_lex_state = 2}, [6995] = {.lex_state = 406, .external_lex_state = 2}, [6996] = {.lex_state = 406, .external_lex_state = 2}, [6997] = {.lex_state = 406, .external_lex_state = 2}, - [6998] = {.lex_state = 50, .external_lex_state = 2}, + [6998] = {.lex_state = 48, .external_lex_state = 2}, [6999] = {.lex_state = 406, .external_lex_state = 2}, - [7000] = {.lex_state = 50, .external_lex_state = 2}, + [7000] = {.lex_state = 406, .external_lex_state = 2}, [7001] = {.lex_state = 406, .external_lex_state = 2}, [7002] = {.lex_state = 406, .external_lex_state = 2}, [7003] = {.lex_state = 406, .external_lex_state = 2}, @@ -29387,54 +29142,54 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7006] = {.lex_state = 406, .external_lex_state = 2}, [7007] = {.lex_state = 406, .external_lex_state = 2}, [7008] = {.lex_state = 406, .external_lex_state = 2}, - [7009] = {.lex_state = 406, .external_lex_state = 2}, + [7009] = {.lex_state = 50, .external_lex_state = 2}, [7010] = {.lex_state = 406, .external_lex_state = 2}, [7011] = {.lex_state = 406, .external_lex_state = 2}, [7012] = {.lex_state = 406, .external_lex_state = 2}, [7013] = {.lex_state = 406, .external_lex_state = 2}, [7014] = {.lex_state = 406, .external_lex_state = 2}, - [7015] = {.lex_state = 406, .external_lex_state = 2}, - [7016] = {.lex_state = 406, .external_lex_state = 2}, - [7017] = {.lex_state = 406, .external_lex_state = 2}, + [7015] = {.lex_state = 3, .external_lex_state = 10}, + [7016] = {.lex_state = 50, .external_lex_state = 2}, + [7017] = {.lex_state = 50, .external_lex_state = 2}, [7018] = {.lex_state = 406, .external_lex_state = 2}, [7019] = {.lex_state = 406, .external_lex_state = 2}, [7020] = {.lex_state = 406, .external_lex_state = 2}, - [7021] = {.lex_state = 406, .external_lex_state = 2}, - [7022] = {.lex_state = 406, .external_lex_state = 2}, - [7023] = {.lex_state = 406, .external_lex_state = 2}, - [7024] = {.lex_state = 406, .external_lex_state = 2}, + [7021] = {.lex_state = 50, .external_lex_state = 2}, + [7022] = {.lex_state = 50, .external_lex_state = 2}, + [7023] = {.lex_state = 50, .external_lex_state = 2}, + [7024] = {.lex_state = 50, .external_lex_state = 2}, [7025] = {.lex_state = 406, .external_lex_state = 2}, [7026] = {.lex_state = 406, .external_lex_state = 2}, - [7027] = {.lex_state = 406, .external_lex_state = 2}, - [7028] = {.lex_state = 406, .external_lex_state = 2}, - [7029] = {.lex_state = 406, .external_lex_state = 2}, + [7027] = {.lex_state = 50, .external_lex_state = 2}, + [7028] = {.lex_state = 50, .external_lex_state = 2}, + [7029] = {.lex_state = 50, .external_lex_state = 2}, [7030] = {.lex_state = 406, .external_lex_state = 2}, - [7031] = {.lex_state = 406, .external_lex_state = 2}, - [7032] = {.lex_state = 406, .external_lex_state = 2}, - [7033] = {.lex_state = 48, .external_lex_state = 2}, - [7034] = {.lex_state = 406, .external_lex_state = 2}, + [7031] = {.lex_state = 50, .external_lex_state = 2}, + [7032] = {.lex_state = 50, .external_lex_state = 2}, + [7033] = {.lex_state = 406, .external_lex_state = 2}, + [7034] = {.lex_state = 50, .external_lex_state = 2}, [7035] = {.lex_state = 406, .external_lex_state = 2}, [7036] = {.lex_state = 406, .external_lex_state = 2}, - [7037] = {.lex_state = 406, .external_lex_state = 2}, - [7038] = {.lex_state = 406, .external_lex_state = 2}, - [7039] = {.lex_state = 406, .external_lex_state = 2}, - [7040] = {.lex_state = 406, .external_lex_state = 2}, + [7037] = {.lex_state = 50, .external_lex_state = 2}, + [7038] = {.lex_state = 50, .external_lex_state = 2}, + [7039] = {.lex_state = 50, .external_lex_state = 2}, + [7040] = {.lex_state = 50, .external_lex_state = 2}, [7041] = {.lex_state = 406, .external_lex_state = 2}, - [7042] = {.lex_state = 406, .external_lex_state = 2}, - [7043] = {.lex_state = 406, .external_lex_state = 2}, - [7044] = {.lex_state = 406, .external_lex_state = 2}, - [7045] = {.lex_state = 406, .external_lex_state = 2}, + [7042] = {.lex_state = 50, .external_lex_state = 2}, + [7043] = {.lex_state = 24, .external_lex_state = 2}, + [7044] = {.lex_state = 50, .external_lex_state = 2}, + [7045] = {.lex_state = 50, .external_lex_state = 2}, [7046] = {.lex_state = 406, .external_lex_state = 2}, [7047] = {.lex_state = 406, .external_lex_state = 2}, - [7048] = {.lex_state = 406, .external_lex_state = 5}, + [7048] = {.lex_state = 406, .external_lex_state = 2}, [7049] = {.lex_state = 406, .external_lex_state = 2}, - [7050] = {.lex_state = 406, .external_lex_state = 5}, + [7050] = {.lex_state = 50, .external_lex_state = 2}, [7051] = {.lex_state = 406, .external_lex_state = 2}, [7052] = {.lex_state = 406, .external_lex_state = 2}, [7053] = {.lex_state = 406, .external_lex_state = 2}, - [7054] = {.lex_state = 406, .external_lex_state = 5}, + [7054] = {.lex_state = 50, .external_lex_state = 2}, [7055] = {.lex_state = 406, .external_lex_state = 2}, - [7056] = {.lex_state = 406, .external_lex_state = 5}, + [7056] = {.lex_state = 50, .external_lex_state = 2}, [7057] = {.lex_state = 406, .external_lex_state = 2}, [7058] = {.lex_state = 406, .external_lex_state = 2}, [7059] = {.lex_state = 406, .external_lex_state = 2}, @@ -29445,56 +29200,56 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7064] = {.lex_state = 406, .external_lex_state = 2}, [7065] = {.lex_state = 406, .external_lex_state = 2}, [7066] = {.lex_state = 406, .external_lex_state = 2}, - [7067] = {.lex_state = 50, .external_lex_state = 2}, + [7067] = {.lex_state = 406, .external_lex_state = 2}, [7068] = {.lex_state = 406, .external_lex_state = 2}, [7069] = {.lex_state = 406, .external_lex_state = 2}, - [7070] = {.lex_state = 406, .external_lex_state = 2}, + [7070] = {.lex_state = 50, .external_lex_state = 2}, [7071] = {.lex_state = 406, .external_lex_state = 2}, [7072] = {.lex_state = 406, .external_lex_state = 2}, - [7073] = {.lex_state = 50, .external_lex_state = 2}, + [7073] = {.lex_state = 406, .external_lex_state = 2}, [7074] = {.lex_state = 406, .external_lex_state = 2}, - [7075] = {.lex_state = 406, .external_lex_state = 2}, + [7075] = {.lex_state = 49, .external_lex_state = 2}, [7076] = {.lex_state = 406, .external_lex_state = 2}, - [7077] = {.lex_state = 406, .external_lex_state = 2}, + [7077] = {.lex_state = 48, .external_lex_state = 2}, [7078] = {.lex_state = 406, .external_lex_state = 2}, [7079] = {.lex_state = 406, .external_lex_state = 2}, [7080] = {.lex_state = 406, .external_lex_state = 2}, - [7081] = {.lex_state = 406, .external_lex_state = 2}, - [7082] = {.lex_state = 406, .external_lex_state = 2}, - [7083] = {.lex_state = 406, .external_lex_state = 2}, - [7084] = {.lex_state = 406, .external_lex_state = 2}, + [7081] = {.lex_state = 3, .external_lex_state = 10}, + [7082] = {.lex_state = 50, .external_lex_state = 2}, + [7083] = {.lex_state = 50, .external_lex_state = 2}, + [7084] = {.lex_state = 82, .external_lex_state = 2}, [7085] = {.lex_state = 406, .external_lex_state = 2}, [7086] = {.lex_state = 406, .external_lex_state = 2}, [7087] = {.lex_state = 406, .external_lex_state = 2}, - [7088] = {.lex_state = 406, .external_lex_state = 2}, - [7089] = {.lex_state = 406, .external_lex_state = 2}, + [7088] = {.lex_state = 50, .external_lex_state = 2}, + [7089] = {.lex_state = 50, .external_lex_state = 2}, [7090] = {.lex_state = 406, .external_lex_state = 2}, - [7091] = {.lex_state = 406, .external_lex_state = 2}, - [7092] = {.lex_state = 406, .external_lex_state = 5}, + [7091] = {.lex_state = 49, .external_lex_state = 2}, + [7092] = {.lex_state = 406, .external_lex_state = 2}, [7093] = {.lex_state = 406, .external_lex_state = 2}, [7094] = {.lex_state = 406, .external_lex_state = 2}, - [7095] = {.lex_state = 406, .external_lex_state = 2}, + [7095] = {.lex_state = 50, .external_lex_state = 2}, [7096] = {.lex_state = 406, .external_lex_state = 2}, [7097] = {.lex_state = 406, .external_lex_state = 2}, - [7098] = {.lex_state = 406, .external_lex_state = 2}, + [7098] = {.lex_state = 50, .external_lex_state = 2}, [7099] = {.lex_state = 406, .external_lex_state = 2}, [7100] = {.lex_state = 406, .external_lex_state = 2}, [7101] = {.lex_state = 406, .external_lex_state = 2}, [7102] = {.lex_state = 406, .external_lex_state = 2}, - [7103] = {.lex_state = 406, .external_lex_state = 2}, + [7103] = {.lex_state = 50, .external_lex_state = 2}, [7104] = {.lex_state = 406, .external_lex_state = 2}, - [7105] = {.lex_state = 406, .external_lex_state = 2}, + [7105] = {.lex_state = 50, .external_lex_state = 2}, [7106] = {.lex_state = 406, .external_lex_state = 2}, [7107] = {.lex_state = 406, .external_lex_state = 2}, - [7108] = {.lex_state = 406, .external_lex_state = 2}, + [7108] = {.lex_state = 50, .external_lex_state = 2}, [7109] = {.lex_state = 406, .external_lex_state = 2}, [7110] = {.lex_state = 406, .external_lex_state = 2}, [7111] = {.lex_state = 406, .external_lex_state = 2}, [7112] = {.lex_state = 406, .external_lex_state = 2}, [7113] = {.lex_state = 406, .external_lex_state = 2}, [7114] = {.lex_state = 406, .external_lex_state = 2}, - [7115] = {.lex_state = 50, .external_lex_state = 2}, - [7116] = {.lex_state = 406, .external_lex_state = 2}, + [7115] = {.lex_state = 406, .external_lex_state = 2}, + [7116] = {.lex_state = 50, .external_lex_state = 2}, [7117] = {.lex_state = 406, .external_lex_state = 2}, [7118] = {.lex_state = 406, .external_lex_state = 2}, [7119] = {.lex_state = 406, .external_lex_state = 2}, @@ -29504,543 +29259,360 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7123] = {.lex_state = 406, .external_lex_state = 2}, [7124] = {.lex_state = 406, .external_lex_state = 2}, [7125] = {.lex_state = 406, .external_lex_state = 2}, - [7126] = {.lex_state = 406, .external_lex_state = 2}, + [7126] = {.lex_state = 24, .external_lex_state = 2}, [7127] = {.lex_state = 406, .external_lex_state = 2}, [7128] = {.lex_state = 406, .external_lex_state = 2}, [7129] = {.lex_state = 406, .external_lex_state = 2}, - [7130] = {.lex_state = 406, .external_lex_state = 5}, + [7130] = {.lex_state = 406, .external_lex_state = 2}, [7131] = {.lex_state = 406, .external_lex_state = 2}, [7132] = {.lex_state = 406, .external_lex_state = 2}, [7133] = {.lex_state = 406, .external_lex_state = 2}, - [7134] = {.lex_state = 50, .external_lex_state = 2}, + [7134] = {.lex_state = 406, .external_lex_state = 2}, [7135] = {.lex_state = 406, .external_lex_state = 2}, - [7136] = {.lex_state = 406, .external_lex_state = 2}, - [7137] = {.lex_state = 406, .external_lex_state = 2}, - [7138] = {.lex_state = 406, .external_lex_state = 2}, + [7136] = {.lex_state = 49, .external_lex_state = 2}, + [7137] = {.lex_state = 50, .external_lex_state = 2}, + [7138] = {.lex_state = 50, .external_lex_state = 2}, [7139] = {.lex_state = 406, .external_lex_state = 2}, [7140] = {.lex_state = 406, .external_lex_state = 2}, [7141] = {.lex_state = 406, .external_lex_state = 2}, [7142] = {.lex_state = 406, .external_lex_state = 2}, - [7143] = {.lex_state = 406, .external_lex_state = 2}, - [7144] = {.lex_state = 406, .external_lex_state = 2}, - [7145] = {.lex_state = 50, .external_lex_state = 2}, - [7146] = {.lex_state = 406, .external_lex_state = 2}, + [7143] = {.lex_state = 50, .external_lex_state = 2}, + [7144] = {.lex_state = 50, .external_lex_state = 2}, + [7145] = {.lex_state = 406, .external_lex_state = 2}, + [7146] = {.lex_state = 49, .external_lex_state = 2}, [7147] = {.lex_state = 406, .external_lex_state = 2}, - [7148] = {.lex_state = 406, .external_lex_state = 5}, + [7148] = {.lex_state = 50, .external_lex_state = 2}, [7149] = {.lex_state = 406, .external_lex_state = 2}, - [7150] = {.lex_state = 406, .external_lex_state = 2}, - [7151] = {.lex_state = 406, .external_lex_state = 2}, + [7150] = {.lex_state = 50, .external_lex_state = 2}, + [7151] = {.lex_state = 50, .external_lex_state = 2}, [7152] = {.lex_state = 406, .external_lex_state = 2}, - [7153] = {.lex_state = 406, .external_lex_state = 2}, + [7153] = {.lex_state = 50, .external_lex_state = 2}, [7154] = {.lex_state = 406, .external_lex_state = 2}, [7155] = {.lex_state = 406, .external_lex_state = 2}, [7156] = {.lex_state = 406, .external_lex_state = 2}, - [7157] = {.lex_state = 406, .external_lex_state = 2}, - [7158] = {.lex_state = 406, .external_lex_state = 5}, - [7159] = {.lex_state = 406, .external_lex_state = 2}, - [7160] = {.lex_state = 406, .external_lex_state = 5}, + [7157] = {.lex_state = 50, .external_lex_state = 2}, + [7158] = {.lex_state = 406, .external_lex_state = 2}, + [7159] = {.lex_state = 50, .external_lex_state = 2}, + [7160] = {.lex_state = 49, .external_lex_state = 2}, [7161] = {.lex_state = 406, .external_lex_state = 2}, - [7162] = {.lex_state = 406, .external_lex_state = 5}, - [7163] = {.lex_state = 406, .external_lex_state = 5}, + [7162] = {.lex_state = 406, .external_lex_state = 2}, + [7163] = {.lex_state = 406, .external_lex_state = 2}, [7164] = {.lex_state = 50, .external_lex_state = 2}, - [7165] = {.lex_state = 406, .external_lex_state = 2}, + [7165] = {.lex_state = 50, .external_lex_state = 2}, [7166] = {.lex_state = 406, .external_lex_state = 2}, [7167] = {.lex_state = 406, .external_lex_state = 2}, - [7168] = {.lex_state = 406, .external_lex_state = 2}, + [7168] = {.lex_state = 50, .external_lex_state = 2}, [7169] = {.lex_state = 406, .external_lex_state = 2}, [7170] = {.lex_state = 406, .external_lex_state = 2}, [7171] = {.lex_state = 406, .external_lex_state = 2}, [7172] = {.lex_state = 406, .external_lex_state = 2}, - [7173] = {.lex_state = 50, .external_lex_state = 2}, + [7173] = {.lex_state = 406, .external_lex_state = 2}, [7174] = {.lex_state = 406, .external_lex_state = 2}, - [7175] = {.lex_state = 406, .external_lex_state = 2}, - [7176] = {.lex_state = 406, .external_lex_state = 2}, + [7175] = {.lex_state = 50, .external_lex_state = 2}, + [7176] = {.lex_state = 50, .external_lex_state = 2}, [7177] = {.lex_state = 406, .external_lex_state = 2}, [7178] = {.lex_state = 406, .external_lex_state = 2}, [7179] = {.lex_state = 406, .external_lex_state = 2}, - [7180] = {.lex_state = 406, .external_lex_state = 2}, + [7180] = {.lex_state = 50, .external_lex_state = 2}, [7181] = {.lex_state = 406, .external_lex_state = 2}, [7182] = {.lex_state = 406, .external_lex_state = 2}, [7183] = {.lex_state = 406, .external_lex_state = 2}, [7184] = {.lex_state = 406, .external_lex_state = 2}, [7185] = {.lex_state = 406, .external_lex_state = 2}, [7186] = {.lex_state = 406, .external_lex_state = 2}, - [7187] = {.lex_state = 406, .external_lex_state = 2}, + [7187] = {.lex_state = 49, .external_lex_state = 2}, [7188] = {.lex_state = 406, .external_lex_state = 2}, [7189] = {.lex_state = 406, .external_lex_state = 2}, [7190] = {.lex_state = 406, .external_lex_state = 2}, [7191] = {.lex_state = 406, .external_lex_state = 2}, [7192] = {.lex_state = 406, .external_lex_state = 2}, - [7193] = {.lex_state = 49, .external_lex_state = 2}, + [7193] = {.lex_state = 406, .external_lex_state = 2}, [7194] = {.lex_state = 406, .external_lex_state = 2}, - [7195] = {.lex_state = 406, .external_lex_state = 2}, + [7195] = {.lex_state = 50, .external_lex_state = 2}, [7196] = {.lex_state = 406, .external_lex_state = 2}, [7197] = {.lex_state = 406, .external_lex_state = 2}, - [7198] = {.lex_state = 3, .external_lex_state = 10}, - [7199] = {.lex_state = 50, .external_lex_state = 2}, - [7200] = {.lex_state = 50, .external_lex_state = 2}, - [7201] = {.lex_state = 50, .external_lex_state = 2}, - [7202] = {.lex_state = 50, .external_lex_state = 2}, + [7198] = {.lex_state = 406, .external_lex_state = 2}, + [7199] = {.lex_state = 406, .external_lex_state = 2}, + [7200] = {.lex_state = 406, .external_lex_state = 2}, + [7201] = {.lex_state = 406, .external_lex_state = 2}, + [7202] = {.lex_state = 406, .external_lex_state = 2}, [7203] = {.lex_state = 406, .external_lex_state = 2}, [7204] = {.lex_state = 406, .external_lex_state = 2}, [7205] = {.lex_state = 406, .external_lex_state = 2}, - [7206] = {.lex_state = 50, .external_lex_state = 2}, - [7207] = {.lex_state = 50, .external_lex_state = 2}, - [7208] = {.lex_state = 50, .external_lex_state = 2}, - [7209] = {.lex_state = 406, .external_lex_state = 2}, + [7206] = {.lex_state = 406, .external_lex_state = 2}, + [7207] = {.lex_state = 406, .external_lex_state = 2}, + [7208] = {.lex_state = 406, .external_lex_state = 2}, + [7209] = {.lex_state = 50, .external_lex_state = 2}, [7210] = {.lex_state = 406, .external_lex_state = 2}, - [7211] = {.lex_state = 50, .external_lex_state = 2}, - [7212] = {.lex_state = 50, .external_lex_state = 2}, + [7211] = {.lex_state = 406, .external_lex_state = 2}, + [7212] = {.lex_state = 406, .external_lex_state = 2}, [7213] = {.lex_state = 406, .external_lex_state = 2}, [7214] = {.lex_state = 406, .external_lex_state = 2}, - [7215] = {.lex_state = 50, .external_lex_state = 2}, + [7215] = {.lex_state = 406, .external_lex_state = 2}, [7216] = {.lex_state = 50, .external_lex_state = 2}, [7217] = {.lex_state = 406, .external_lex_state = 2}, - [7218] = {.lex_state = 50, .external_lex_state = 2}, + [7218] = {.lex_state = 406, .external_lex_state = 2}, [7219] = {.lex_state = 406, .external_lex_state = 2}, - [7220] = {.lex_state = 50, .external_lex_state = 2}, + [7220] = {.lex_state = 406, .external_lex_state = 2}, [7221] = {.lex_state = 406, .external_lex_state = 2}, [7222] = {.lex_state = 50, .external_lex_state = 2}, [7223] = {.lex_state = 406, .external_lex_state = 2}, - [7224] = {.lex_state = 50, .external_lex_state = 2}, + [7224] = {.lex_state = 406, .external_lex_state = 2}, [7225] = {.lex_state = 406, .external_lex_state = 2}, - [7226] = {.lex_state = 50, .external_lex_state = 2}, - [7227] = {.lex_state = 3, .external_lex_state = 10}, + [7226] = {.lex_state = 406, .external_lex_state = 2}, + [7227] = {.lex_state = 50, .external_lex_state = 2}, [7228] = {.lex_state = 406, .external_lex_state = 2}, [7229] = {.lex_state = 406, .external_lex_state = 2}, [7230] = {.lex_state = 406, .external_lex_state = 2}, [7231] = {.lex_state = 406, .external_lex_state = 2}, [7232] = {.lex_state = 406, .external_lex_state = 2}, - [7233] = {.lex_state = 50, .external_lex_state = 2}, - [7234] = {.lex_state = 406, .external_lex_state = 2}, - [7235] = {.lex_state = 406, .external_lex_state = 2}, - [7236] = {.lex_state = 406, .external_lex_state = 2}, + [7233] = {.lex_state = 406, .external_lex_state = 2}, + [7234] = {.lex_state = 50, .external_lex_state = 2}, + [7235] = {.lex_state = 49, .external_lex_state = 2}, + [7236] = {.lex_state = 50, .external_lex_state = 2}, [7237] = {.lex_state = 50, .external_lex_state = 2}, [7238] = {.lex_state = 406, .external_lex_state = 2}, - [7239] = {.lex_state = 406, .external_lex_state = 2}, + [7239] = {.lex_state = 50, .external_lex_state = 2}, [7240] = {.lex_state = 406, .external_lex_state = 2}, - [7241] = {.lex_state = 406, .external_lex_state = 2}, - [7242] = {.lex_state = 406, .external_lex_state = 2}, - [7243] = {.lex_state = 406, .external_lex_state = 2}, + [7241] = {.lex_state = 50, .external_lex_state = 2}, + [7242] = {.lex_state = 50, .external_lex_state = 2}, + [7243] = {.lex_state = 3, .external_lex_state = 10}, [7244] = {.lex_state = 406, .external_lex_state = 2}, [7245] = {.lex_state = 406, .external_lex_state = 2}, - [7246] = {.lex_state = 406, .external_lex_state = 2}, + [7246] = {.lex_state = 50, .external_lex_state = 2}, [7247] = {.lex_state = 406, .external_lex_state = 2}, [7248] = {.lex_state = 406, .external_lex_state = 2}, - [7249] = {.lex_state = 406, .external_lex_state = 2}, + [7249] = {.lex_state = 82, .external_lex_state = 2}, [7250] = {.lex_state = 406, .external_lex_state = 2}, [7251] = {.lex_state = 406, .external_lex_state = 2}, - [7252] = {.lex_state = 406, .external_lex_state = 2}, - [7253] = {.lex_state = 406, .external_lex_state = 2}, + [7252] = {.lex_state = 50, .external_lex_state = 2}, + [7253] = {.lex_state = 82, .external_lex_state = 2}, [7254] = {.lex_state = 406, .external_lex_state = 2}, [7255] = {.lex_state = 406, .external_lex_state = 2}, [7256] = {.lex_state = 406, .external_lex_state = 2}, - [7257] = {.lex_state = 48, .external_lex_state = 2}, + [7257] = {.lex_state = 406, .external_lex_state = 2}, [7258] = {.lex_state = 406, .external_lex_state = 2}, [7259] = {.lex_state = 406, .external_lex_state = 2}, [7260] = {.lex_state = 406, .external_lex_state = 2}, - [7261] = {.lex_state = 49, .external_lex_state = 2}, + [7261] = {.lex_state = 406, .external_lex_state = 2}, [7262] = {.lex_state = 406, .external_lex_state = 2}, - [7263] = {.lex_state = 82, .external_lex_state = 2}, - [7264] = {.lex_state = 3, .external_lex_state = 10}, - [7265] = {.lex_state = 50, .external_lex_state = 2}, - [7266] = {.lex_state = 50, .external_lex_state = 2}, + [7263] = {.lex_state = 406, .external_lex_state = 2}, + [7264] = {.lex_state = 406, .external_lex_state = 2}, + [7265] = {.lex_state = 406, .external_lex_state = 2}, + [7266] = {.lex_state = 406, .external_lex_state = 2}, [7267] = {.lex_state = 50, .external_lex_state = 2}, [7268] = {.lex_state = 406, .external_lex_state = 2}, [7269] = {.lex_state = 406, .external_lex_state = 2}, - [7270] = {.lex_state = 82, .external_lex_state = 2}, + [7270] = {.lex_state = 406, .external_lex_state = 2}, [7271] = {.lex_state = 406, .external_lex_state = 2}, - [7272] = {.lex_state = 50, .external_lex_state = 2}, + [7272] = {.lex_state = 406, .external_lex_state = 2}, [7273] = {.lex_state = 406, .external_lex_state = 2}, - [7274] = {.lex_state = 406, .external_lex_state = 2}, + [7274] = {.lex_state = 82, .external_lex_state = 2}, [7275] = {.lex_state = 406, .external_lex_state = 2}, [7276] = {.lex_state = 50, .external_lex_state = 2}, [7277] = {.lex_state = 50, .external_lex_state = 2}, - [7278] = {.lex_state = 50, .external_lex_state = 2}, - [7279] = {.lex_state = 406, .external_lex_state = 2}, - [7280] = {.lex_state = 406, .external_lex_state = 2}, + [7278] = {.lex_state = 406, .external_lex_state = 2}, + [7279] = {.lex_state = 50, .external_lex_state = 2}, + [7280] = {.lex_state = 50, .external_lex_state = 2}, [7281] = {.lex_state = 50, .external_lex_state = 2}, [7282] = {.lex_state = 406, .external_lex_state = 2}, [7283] = {.lex_state = 406, .external_lex_state = 2}, [7284] = {.lex_state = 406, .external_lex_state = 2}, - [7285] = {.lex_state = 406, .external_lex_state = 2}, + [7285] = {.lex_state = 50, .external_lex_state = 2}, [7286] = {.lex_state = 50, .external_lex_state = 2}, - [7287] = {.lex_state = 406, .external_lex_state = 2}, - [7288] = {.lex_state = 50, .external_lex_state = 2}, + [7287] = {.lex_state = 50, .external_lex_state = 2}, + [7288] = {.lex_state = 406, .external_lex_state = 2}, [7289] = {.lex_state = 406, .external_lex_state = 2}, [7290] = {.lex_state = 406, .external_lex_state = 2}, [7291] = {.lex_state = 406, .external_lex_state = 2}, - [7292] = {.lex_state = 406, .external_lex_state = 2}, + [7292] = {.lex_state = 50, .external_lex_state = 2}, [7293] = {.lex_state = 406, .external_lex_state = 2}, - [7294] = {.lex_state = 406, .external_lex_state = 2}, - [7295] = {.lex_state = 406, .external_lex_state = 2}, + [7294] = {.lex_state = 50, .external_lex_state = 2}, + [7295] = {.lex_state = 50, .external_lex_state = 2}, [7296] = {.lex_state = 50, .external_lex_state = 2}, [7297] = {.lex_state = 406, .external_lex_state = 2}, - [7298] = {.lex_state = 50, .external_lex_state = 2}, - [7299] = {.lex_state = 50, .external_lex_state = 2}, - [7300] = {.lex_state = 406, .external_lex_state = 2}, + [7298] = {.lex_state = 406, .external_lex_state = 2}, + [7299] = {.lex_state = 406, .external_lex_state = 2}, + [7300] = {.lex_state = 50, .external_lex_state = 2}, [7301] = {.lex_state = 406, .external_lex_state = 2}, [7302] = {.lex_state = 406, .external_lex_state = 2}, - [7303] = {.lex_state = 24, .external_lex_state = 2}, + [7303] = {.lex_state = 406, .external_lex_state = 2}, [7304] = {.lex_state = 406, .external_lex_state = 2}, - [7305] = {.lex_state = 50, .external_lex_state = 2}, - [7306] = {.lex_state = 406, .external_lex_state = 2}, - [7307] = {.lex_state = 406, .external_lex_state = 2}, + [7305] = {.lex_state = 406, .external_lex_state = 2}, + [7306] = {.lex_state = 50, .external_lex_state = 2}, + [7307] = {.lex_state = 24, .external_lex_state = 2}, [7308] = {.lex_state = 406, .external_lex_state = 2}, - [7309] = {.lex_state = 406, .external_lex_state = 2}, + [7309] = {.lex_state = 50, .external_lex_state = 2}, [7310] = {.lex_state = 406, .external_lex_state = 2}, [7311] = {.lex_state = 406, .external_lex_state = 2}, [7312] = {.lex_state = 406, .external_lex_state = 2}, [7313] = {.lex_state = 406, .external_lex_state = 2}, - [7314] = {.lex_state = 50, .external_lex_state = 2}, + [7314] = {.lex_state = 406, .external_lex_state = 2}, [7315] = {.lex_state = 406, .external_lex_state = 2}, [7316] = {.lex_state = 406, .external_lex_state = 2}, [7317] = {.lex_state = 406, .external_lex_state = 2}, - [7318] = {.lex_state = 406, .external_lex_state = 2}, - [7319] = {.lex_state = 50, .external_lex_state = 2}, - [7320] = {.lex_state = 50, .external_lex_state = 2}, + [7318] = {.lex_state = 49, .external_lex_state = 2}, + [7319] = {.lex_state = 406, .external_lex_state = 2}, + [7320] = {.lex_state = 406, .external_lex_state = 2}, [7321] = {.lex_state = 406, .external_lex_state = 2}, [7322] = {.lex_state = 406, .external_lex_state = 2}, - [7323] = {.lex_state = 50, .external_lex_state = 2}, + [7323] = {.lex_state = 406, .external_lex_state = 2}, [7324] = {.lex_state = 406, .external_lex_state = 2}, - [7325] = {.lex_state = 48, .external_lex_state = 2}, - [7326] = {.lex_state = 50, .external_lex_state = 2}, - [7327] = {.lex_state = 50, .external_lex_state = 2}, + [7325] = {.lex_state = 406, .external_lex_state = 2}, + [7326] = {.lex_state = 406, .external_lex_state = 2}, + [7327] = {.lex_state = 406, .external_lex_state = 2}, [7328] = {.lex_state = 406, .external_lex_state = 2}, - [7329] = {.lex_state = 406, .external_lex_state = 2}, + [7329] = {.lex_state = 50, .external_lex_state = 2}, [7330] = {.lex_state = 50, .external_lex_state = 2}, - [7331] = {.lex_state = 50, .external_lex_state = 2}, + [7331] = {.lex_state = 406, .external_lex_state = 2}, [7332] = {.lex_state = 406, .external_lex_state = 2}, - [7333] = {.lex_state = 50, .external_lex_state = 2}, + [7333] = {.lex_state = 406, .external_lex_state = 2}, [7334] = {.lex_state = 50, .external_lex_state = 2}, [7335] = {.lex_state = 50, .external_lex_state = 2}, [7336] = {.lex_state = 50, .external_lex_state = 2}, [7337] = {.lex_state = 406, .external_lex_state = 2}, [7338] = {.lex_state = 406, .external_lex_state = 2}, - [7339] = {.lex_state = 50, .external_lex_state = 2}, - [7340] = {.lex_state = 50, .external_lex_state = 2}, - [7341] = {.lex_state = 50, .external_lex_state = 2}, - [7342] = {.lex_state = 50, .external_lex_state = 2}, - [7343] = {.lex_state = 406, .external_lex_state = 2}, + [7339] = {.lex_state = 406, .external_lex_state = 2}, + [7340] = {.lex_state = 406, .external_lex_state = 2}, + [7341] = {.lex_state = 406, .external_lex_state = 2}, + [7342] = {.lex_state = 406, .external_lex_state = 2}, + [7343] = {.lex_state = 50, .external_lex_state = 2}, [7344] = {.lex_state = 406, .external_lex_state = 2}, [7345] = {.lex_state = 406, .external_lex_state = 2}, - [7346] = {.lex_state = 50, .external_lex_state = 2}, - [7347] = {.lex_state = 50, .external_lex_state = 2}, - [7348] = {.lex_state = 406, .external_lex_state = 2}, - [7349] = {.lex_state = 406, .external_lex_state = 2}, + [7346] = {.lex_state = 406, .external_lex_state = 2}, + [7347] = {.lex_state = 406, .external_lex_state = 2}, + [7348] = {.lex_state = 50, .external_lex_state = 2}, + [7349] = {.lex_state = 50, .external_lex_state = 2}, [7350] = {.lex_state = 406, .external_lex_state = 2}, [7351] = {.lex_state = 406, .external_lex_state = 2}, [7352] = {.lex_state = 406, .external_lex_state = 2}, - [7353] = {.lex_state = 50, .external_lex_state = 2}, + [7353] = {.lex_state = 406, .external_lex_state = 2}, [7354] = {.lex_state = 50, .external_lex_state = 2}, [7355] = {.lex_state = 50, .external_lex_state = 2}, [7356] = {.lex_state = 406, .external_lex_state = 2}, [7357] = {.lex_state = 50, .external_lex_state = 2}, [7358] = {.lex_state = 50, .external_lex_state = 2}, - [7359] = {.lex_state = 3, .external_lex_state = 10}, - [7360] = {.lex_state = 50, .external_lex_state = 2}, + [7359] = {.lex_state = 406, .external_lex_state = 2}, + [7360] = {.lex_state = 406, .external_lex_state = 2}, [7361] = {.lex_state = 406, .external_lex_state = 2}, - [7362] = {.lex_state = 406, .external_lex_state = 2}, + [7362] = {.lex_state = 50, .external_lex_state = 2}, [7363] = {.lex_state = 406, .external_lex_state = 2}, - [7364] = {.lex_state = 48, .external_lex_state = 2}, - [7365] = {.lex_state = 406, .external_lex_state = 2}, - [7366] = {.lex_state = 406, .external_lex_state = 2}, - [7367] = {.lex_state = 406, .external_lex_state = 2}, + [7364] = {.lex_state = 406, .external_lex_state = 2}, + [7365] = {.lex_state = 82, .external_lex_state = 2}, + [7366] = {.lex_state = 50, .external_lex_state = 2}, + [7367] = {.lex_state = 50, .external_lex_state = 2}, [7368] = {.lex_state = 406, .external_lex_state = 2}, [7369] = {.lex_state = 50, .external_lex_state = 2}, - [7370] = {.lex_state = 49, .external_lex_state = 2}, - [7371] = {.lex_state = 50, .external_lex_state = 2}, + [7370] = {.lex_state = 406, .external_lex_state = 2}, + [7371] = {.lex_state = 406, .external_lex_state = 2}, [7372] = {.lex_state = 406, .external_lex_state = 2}, - [7373] = {.lex_state = 50, .external_lex_state = 2}, + [7373] = {.lex_state = 406, .external_lex_state = 2}, [7374] = {.lex_state = 406, .external_lex_state = 2}, - [7375] = {.lex_state = 50, .external_lex_state = 2}, - [7376] = {.lex_state = 406, .external_lex_state = 2}, - [7377] = {.lex_state = 406, .external_lex_state = 2}, + [7375] = {.lex_state = 406, .external_lex_state = 2}, + [7376] = {.lex_state = 50, .external_lex_state = 2}, + [7377] = {.lex_state = 50, .external_lex_state = 2}, [7378] = {.lex_state = 406, .external_lex_state = 2}, [7379] = {.lex_state = 406, .external_lex_state = 2}, [7380] = {.lex_state = 406, .external_lex_state = 2}, - [7381] = {.lex_state = 50, .external_lex_state = 2}, - [7382] = {.lex_state = 50, .external_lex_state = 2}, + [7381] = {.lex_state = 406, .external_lex_state = 2}, + [7382] = {.lex_state = 406, .external_lex_state = 2}, [7383] = {.lex_state = 406, .external_lex_state = 2}, [7384] = {.lex_state = 406, .external_lex_state = 2}, - [7385] = {.lex_state = 50, .external_lex_state = 2}, + [7385] = {.lex_state = 406, .external_lex_state = 2}, [7386] = {.lex_state = 406, .external_lex_state = 2}, - [7387] = {.lex_state = 50, .external_lex_state = 2}, + [7387] = {.lex_state = 406, .external_lex_state = 2}, [7388] = {.lex_state = 406, .external_lex_state = 2}, [7389] = {.lex_state = 406, .external_lex_state = 2}, - [7390] = {.lex_state = 406, .external_lex_state = 2}, + [7390] = {.lex_state = 50, .external_lex_state = 2}, [7391] = {.lex_state = 406, .external_lex_state = 2}, - [7392] = {.lex_state = 406, .external_lex_state = 2}, - [7393] = {.lex_state = 406, .external_lex_state = 2}, + [7392] = {.lex_state = 49, .external_lex_state = 2}, + [7393] = {.lex_state = 48, .external_lex_state = 2}, [7394] = {.lex_state = 406, .external_lex_state = 2}, - [7395] = {.lex_state = 406, .external_lex_state = 2}, - [7396] = {.lex_state = 406, .external_lex_state = 2}, + [7395] = {.lex_state = 50, .external_lex_state = 2}, + [7396] = {.lex_state = 50, .external_lex_state = 2}, [7397] = {.lex_state = 406, .external_lex_state = 2}, [7398] = {.lex_state = 406, .external_lex_state = 2}, - [7399] = {.lex_state = 50, .external_lex_state = 2}, - [7400] = {.lex_state = 406, .external_lex_state = 2}, + [7399] = {.lex_state = 406, .external_lex_state = 2}, + [7400] = {.lex_state = 50, .external_lex_state = 2}, [7401] = {.lex_state = 50, .external_lex_state = 2}, - [7402] = {.lex_state = 50, .external_lex_state = 2}, + [7402] = {.lex_state = 406, .external_lex_state = 2}, [7403] = {.lex_state = 406, .external_lex_state = 2}, [7404] = {.lex_state = 406, .external_lex_state = 2}, - [7405] = {.lex_state = 50, .external_lex_state = 2}, + [7405] = {.lex_state = 3, .external_lex_state = 10}, [7406] = {.lex_state = 406, .external_lex_state = 2}, - [7407] = {.lex_state = 406, .external_lex_state = 2}, + [7407] = {.lex_state = 48, .external_lex_state = 2}, [7408] = {.lex_state = 406, .external_lex_state = 2}, [7409] = {.lex_state = 406, .external_lex_state = 2}, [7410] = {.lex_state = 406, .external_lex_state = 2}, - [7411] = {.lex_state = 406, .external_lex_state = 2}, + [7411] = {.lex_state = 48, .external_lex_state = 2}, [7412] = {.lex_state = 406, .external_lex_state = 2}, - [7413] = {.lex_state = 406, .external_lex_state = 2}, - [7414] = {.lex_state = 406, .external_lex_state = 2}, + [7413] = {.lex_state = 50, .external_lex_state = 2}, + [7414] = {.lex_state = 50, .external_lex_state = 2}, [7415] = {.lex_state = 406, .external_lex_state = 2}, [7416] = {.lex_state = 406, .external_lex_state = 2}, - [7417] = {.lex_state = 406, .external_lex_state = 2}, - [7418] = {.lex_state = 49, .external_lex_state = 2}, - [7419] = {.lex_state = 50, .external_lex_state = 2}, - [7420] = {.lex_state = 406, .external_lex_state = 2}, - [7421] = {.lex_state = 406, .external_lex_state = 2}, + [7417] = {.lex_state = 50, .external_lex_state = 2}, + [7418] = {.lex_state = 50, .external_lex_state = 2}, + [7419] = {.lex_state = 406, .external_lex_state = 2}, + [7420] = {.lex_state = 50, .external_lex_state = 2}, + [7421] = {.lex_state = 50, .external_lex_state = 2}, [7422] = {.lex_state = 406, .external_lex_state = 2}, - [7423] = {.lex_state = 406, .external_lex_state = 2}, - [7424] = {.lex_state = 406, .external_lex_state = 2}, + [7423] = {.lex_state = 50, .external_lex_state = 2}, + [7424] = {.lex_state = 50, .external_lex_state = 2}, [7425] = {.lex_state = 406, .external_lex_state = 2}, [7426] = {.lex_state = 406, .external_lex_state = 2}, - [7427] = {.lex_state = 50, .external_lex_state = 2}, + [7427] = {.lex_state = 406, .external_lex_state = 2}, [7428] = {.lex_state = 50, .external_lex_state = 2}, [7429] = {.lex_state = 406, .external_lex_state = 2}, [7430] = {.lex_state = 406, .external_lex_state = 2}, - [7431] = {.lex_state = 50, .external_lex_state = 2}, + [7431] = {.lex_state = 406, .external_lex_state = 2}, [7432] = {.lex_state = 406, .external_lex_state = 2}, [7433] = {.lex_state = 406, .external_lex_state = 2}, [7434] = {.lex_state = 406, .external_lex_state = 2}, [7435] = {.lex_state = 406, .external_lex_state = 2}, - [7436] = {.lex_state = 50, .external_lex_state = 2}, - [7437] = {.lex_state = 406, .external_lex_state = 2}, + [7436] = {.lex_state = 406, .external_lex_state = 2}, + [7437] = {.lex_state = 50, .external_lex_state = 2}, [7438] = {.lex_state = 406, .external_lex_state = 2}, [7439] = {.lex_state = 406, .external_lex_state = 2}, - [7440] = {.lex_state = 50, .external_lex_state = 2}, + [7440] = {.lex_state = 406, .external_lex_state = 2}, [7441] = {.lex_state = 50, .external_lex_state = 2}, [7442] = {.lex_state = 406, .external_lex_state = 2}, [7443] = {.lex_state = 406, .external_lex_state = 2}, - [7444] = {.lex_state = 50, .external_lex_state = 2}, - [7445] = {.lex_state = 50, .external_lex_state = 2}, - [7446] = {.lex_state = 406, .external_lex_state = 2}, - [7447] = {.lex_state = 50, .external_lex_state = 2}, + [7444] = {.lex_state = 406, .external_lex_state = 2}, + [7445] = {.lex_state = 406, .external_lex_state = 2}, + [7446] = {.lex_state = 50, .external_lex_state = 2}, + [7447] = {.lex_state = 406, .external_lex_state = 2}, [7448] = {.lex_state = 406, .external_lex_state = 2}, - [7449] = {.lex_state = 406, .external_lex_state = 2}, + [7449] = {.lex_state = 50, .external_lex_state = 2}, [7450] = {.lex_state = 406, .external_lex_state = 2}, [7451] = {.lex_state = 406, .external_lex_state = 2}, [7452] = {.lex_state = 406, .external_lex_state = 2}, [7453] = {.lex_state = 406, .external_lex_state = 2}, - [7454] = {.lex_state = 406, .external_lex_state = 2}, - [7455] = {.lex_state = 50, .external_lex_state = 2}, - [7456] = {.lex_state = 406, .external_lex_state = 2}, + [7454] = {.lex_state = 50, .external_lex_state = 2}, + [7455] = {.lex_state = 406, .external_lex_state = 2}, + [7456] = {.lex_state = 50, .external_lex_state = 2}, [7457] = {.lex_state = 406, .external_lex_state = 2}, - [7458] = {.lex_state = 406, .external_lex_state = 2}, + [7458] = {.lex_state = 50, .external_lex_state = 2}, [7459] = {.lex_state = 406, .external_lex_state = 2}, [7460] = {.lex_state = 406, .external_lex_state = 2}, - [7461] = {.lex_state = 406, .external_lex_state = 2}, + [7461] = {.lex_state = 50, .external_lex_state = 2}, [7462] = {.lex_state = 406, .external_lex_state = 2}, [7463] = {.lex_state = 406, .external_lex_state = 2}, - [7464] = {.lex_state = 406, .external_lex_state = 2}, + [7464] = {.lex_state = 50, .external_lex_state = 2}, [7465] = {.lex_state = 406, .external_lex_state = 2}, - [7466] = {.lex_state = 406, .external_lex_state = 2}, + [7466] = {.lex_state = 50, .external_lex_state = 2}, [7467] = {.lex_state = 406, .external_lex_state = 2}, [7468] = {.lex_state = 406, .external_lex_state = 2}, [7469] = {.lex_state = 50, .external_lex_state = 2}, [7470] = {.lex_state = 406, .external_lex_state = 2}, [7471] = {.lex_state = 50, .external_lex_state = 2}, - [7472] = {.lex_state = 50, .external_lex_state = 2}, - [7473] = {.lex_state = 50, .external_lex_state = 2}, - [7474] = {.lex_state = 406, .external_lex_state = 2}, - [7475] = {.lex_state = 50, .external_lex_state = 2}, - [7476] = {.lex_state = 406, .external_lex_state = 2}, + [7472] = {.lex_state = 406, .external_lex_state = 2}, + [7473] = {.lex_state = 406, .external_lex_state = 2}, + [7474] = {.lex_state = 50, .external_lex_state = 2}, + [7475] = {.lex_state = 406, .external_lex_state = 2}, + [7476] = {.lex_state = 50, .external_lex_state = 2}, [7477] = {.lex_state = 406, .external_lex_state = 2}, [7478] = {.lex_state = 406, .external_lex_state = 2}, - [7479] = {.lex_state = 406, .external_lex_state = 2}, - [7480] = {.lex_state = 406, .external_lex_state = 2}, - [7481] = {.lex_state = 406, .external_lex_state = 2}, - [7482] = {.lex_state = 82, .external_lex_state = 2}, - [7483] = {.lex_state = 406, .external_lex_state = 2}, - [7484] = {.lex_state = 406, .external_lex_state = 2}, - [7485] = {.lex_state = 50, .external_lex_state = 2}, - [7486] = {.lex_state = 406, .external_lex_state = 2}, - [7487] = {.lex_state = 50, .external_lex_state = 2}, - [7488] = {.lex_state = 24, .external_lex_state = 2}, - [7489] = {.lex_state = 406, .external_lex_state = 2}, - [7490] = {.lex_state = 50, .external_lex_state = 2}, - [7491] = {.lex_state = 406, .external_lex_state = 2}, - [7492] = {.lex_state = 50, .external_lex_state = 2}, - [7493] = {.lex_state = 82, .external_lex_state = 2}, - [7494] = {.lex_state = 406, .external_lex_state = 2}, - [7495] = {.lex_state = 406, .external_lex_state = 2}, - [7496] = {.lex_state = 50, .external_lex_state = 2}, - [7497] = {.lex_state = 50, .external_lex_state = 2}, - [7498] = {.lex_state = 406, .external_lex_state = 2}, - [7499] = {.lex_state = 406, .external_lex_state = 2}, - [7500] = {.lex_state = 48, .external_lex_state = 2}, - [7501] = {.lex_state = 49, .external_lex_state = 2}, - [7502] = {.lex_state = 406, .external_lex_state = 2}, - [7503] = {.lex_state = 406, .external_lex_state = 2}, - [7504] = {.lex_state = 406, .external_lex_state = 2}, - [7505] = {.lex_state = 406, .external_lex_state = 2}, - [7506] = {.lex_state = 406, .external_lex_state = 2}, - [7507] = {.lex_state = 406, .external_lex_state = 2}, - [7508] = {.lex_state = 406, .external_lex_state = 2}, - [7509] = {.lex_state = 49, .external_lex_state = 2}, - [7510] = {.lex_state = 406, .external_lex_state = 2}, - [7511] = {.lex_state = 406, .external_lex_state = 2}, - [7512] = {.lex_state = 406, .external_lex_state = 2}, - [7513] = {.lex_state = 50, .external_lex_state = 2}, - [7514] = {.lex_state = 406, .external_lex_state = 2}, - [7515] = {.lex_state = 406, .external_lex_state = 2}, - [7516] = {.lex_state = 49, .external_lex_state = 2}, - [7517] = {.lex_state = 406, .external_lex_state = 2}, - [7518] = {.lex_state = 49, .external_lex_state = 2}, - [7519] = {.lex_state = 406, .external_lex_state = 2}, - [7520] = {.lex_state = 406, .external_lex_state = 2}, - [7521] = {.lex_state = 406, .external_lex_state = 2}, - [7522] = {.lex_state = 406, .external_lex_state = 2}, - [7523] = {.lex_state = 406, .external_lex_state = 2}, - [7524] = {.lex_state = 50, .external_lex_state = 2}, - [7525] = {.lex_state = 3, .external_lex_state = 10}, - [7526] = {.lex_state = 50, .external_lex_state = 2}, - [7527] = {.lex_state = 50, .external_lex_state = 2}, - [7528] = {.lex_state = 406, .external_lex_state = 2}, - [7529] = {.lex_state = 406, .external_lex_state = 2}, - [7530] = {.lex_state = 406, .external_lex_state = 2}, - [7531] = {.lex_state = 24, .external_lex_state = 2}, - [7532] = {.lex_state = 406, .external_lex_state = 2}, - [7533] = {.lex_state = 406, .external_lex_state = 2}, - [7534] = {.lex_state = 406, .external_lex_state = 2}, - [7535] = {.lex_state = 50, .external_lex_state = 2}, - [7536] = {.lex_state = 50, .external_lex_state = 2}, - [7537] = {.lex_state = 406, .external_lex_state = 2}, - [7538] = {.lex_state = 406, .external_lex_state = 2}, - [7539] = {.lex_state = 50, .external_lex_state = 2}, - [7540] = {.lex_state = 406, .external_lex_state = 2}, - [7541] = {.lex_state = 406, .external_lex_state = 2}, - [7542] = {.lex_state = 406, .external_lex_state = 2}, - [7543] = {.lex_state = 406, .external_lex_state = 2}, - [7544] = {.lex_state = 406, .external_lex_state = 2}, - [7545] = {.lex_state = 50, .external_lex_state = 2}, - [7546] = {.lex_state = 406, .external_lex_state = 2}, - [7547] = {.lex_state = 406, .external_lex_state = 2}, - [7548] = {.lex_state = 406, .external_lex_state = 2}, - [7549] = {.lex_state = 50, .external_lex_state = 2}, - [7550] = {.lex_state = 406, .external_lex_state = 2}, - [7551] = {.lex_state = 406, .external_lex_state = 2}, - [7552] = {.lex_state = 406, .external_lex_state = 2}, - [7553] = {.lex_state = 406, .external_lex_state = 2}, - [7554] = {.lex_state = 406, .external_lex_state = 2}, - [7555] = {.lex_state = 406, .external_lex_state = 2}, - [7556] = {.lex_state = 50, .external_lex_state = 2}, - [7557] = {.lex_state = 406, .external_lex_state = 2}, - [7558] = {.lex_state = 50, .external_lex_state = 2}, - [7559] = {.lex_state = 406, .external_lex_state = 2}, - [7560] = {.lex_state = 406, .external_lex_state = 2}, - [7561] = {.lex_state = 406, .external_lex_state = 2}, - [7562] = {.lex_state = 50, .external_lex_state = 2}, - [7563] = {.lex_state = 406, .external_lex_state = 2}, - [7564] = {.lex_state = 406, .external_lex_state = 2}, - [7565] = {.lex_state = 406, .external_lex_state = 2}, - [7566] = {.lex_state = 50, .external_lex_state = 2}, - [7567] = {.lex_state = 406, .external_lex_state = 2}, - [7568] = {.lex_state = 406, .external_lex_state = 2}, - [7569] = {.lex_state = 406, .external_lex_state = 2}, - [7570] = {.lex_state = 406, .external_lex_state = 2}, - [7571] = {.lex_state = 406, .external_lex_state = 2}, - [7572] = {.lex_state = 406, .external_lex_state = 2}, - [7573] = {.lex_state = 50, .external_lex_state = 2}, - [7574] = {.lex_state = 406, .external_lex_state = 2}, - [7575] = {.lex_state = 406, .external_lex_state = 2}, - [7576] = {.lex_state = 406, .external_lex_state = 2}, - [7577] = {.lex_state = 406, .external_lex_state = 2}, - [7578] = {.lex_state = 50, .external_lex_state = 2}, - [7579] = {.lex_state = 50, .external_lex_state = 2}, - [7580] = {.lex_state = 406, .external_lex_state = 2}, - [7581] = {.lex_state = 406, .external_lex_state = 2}, - [7582] = {.lex_state = 406, .external_lex_state = 2}, - [7583] = {.lex_state = 50, .external_lex_state = 2}, - [7584] = {.lex_state = 406, .external_lex_state = 2}, - [7585] = {.lex_state = 406, .external_lex_state = 2}, - [7586] = {.lex_state = 48, .external_lex_state = 2}, - [7587] = {.lex_state = 406, .external_lex_state = 2}, - [7588] = {.lex_state = 50, .external_lex_state = 2}, - [7589] = {.lex_state = 406, .external_lex_state = 2}, - [7590] = {.lex_state = 406, .external_lex_state = 2}, - [7591] = {.lex_state = 50, .external_lex_state = 2}, - [7592] = {.lex_state = 406, .external_lex_state = 2}, - [7593] = {.lex_state = 406, .external_lex_state = 2}, - [7594] = {.lex_state = 406, .external_lex_state = 2}, - [7595] = {.lex_state = 406, .external_lex_state = 2}, - [7596] = {.lex_state = 50, .external_lex_state = 2}, - [7597] = {.lex_state = 406, .external_lex_state = 2}, - [7598] = {.lex_state = 406, .external_lex_state = 2}, - [7599] = {.lex_state = 406, .external_lex_state = 2}, - [7600] = {.lex_state = 406, .external_lex_state = 2}, - [7601] = {.lex_state = 50, .external_lex_state = 2}, - [7602] = {.lex_state = 406, .external_lex_state = 2}, - [7603] = {.lex_state = 406, .external_lex_state = 2}, - [7604] = {.lex_state = 406, .external_lex_state = 2}, - [7605] = {.lex_state = 406, .external_lex_state = 2}, - [7606] = {.lex_state = 406, .external_lex_state = 2}, - [7607] = {.lex_state = 50, .external_lex_state = 2}, - [7608] = {.lex_state = 406, .external_lex_state = 2}, - [7609] = {.lex_state = 406, .external_lex_state = 2}, - [7610] = {.lex_state = 406, .external_lex_state = 2}, - [7611] = {.lex_state = 50, .external_lex_state = 2}, - [7612] = {.lex_state = 406, .external_lex_state = 2}, - [7613] = {.lex_state = 406, .external_lex_state = 2}, - [7614] = {.lex_state = 406, .external_lex_state = 2}, - [7615] = {.lex_state = 82, .external_lex_state = 2}, - [7616] = {.lex_state = 406, .external_lex_state = 2}, - [7617] = {.lex_state = 406, .external_lex_state = 2}, - [7618] = {.lex_state = 406, .external_lex_state = 2}, - [7619] = {.lex_state = 406, .external_lex_state = 2}, - [7620] = {.lex_state = 406, .external_lex_state = 2}, - [7621] = {.lex_state = 406, .external_lex_state = 2}, - [7622] = {.lex_state = 406, .external_lex_state = 2}, - [7623] = {.lex_state = 406, .external_lex_state = 2}, - [7624] = {.lex_state = 50, .external_lex_state = 2}, - [7625] = {.lex_state = 406, .external_lex_state = 2}, - [7626] = {.lex_state = 406, .external_lex_state = 2}, - [7627] = {.lex_state = 406, .external_lex_state = 2}, - [7628] = {.lex_state = 406, .external_lex_state = 2}, - [7629] = {.lex_state = 50, .external_lex_state = 2}, - [7630] = {.lex_state = 406, .external_lex_state = 2}, - [7631] = {.lex_state = 406, .external_lex_state = 2}, - [7632] = {.lex_state = 50, .external_lex_state = 2}, - [7633] = {.lex_state = 406, .external_lex_state = 2}, - [7634] = {.lex_state = 406, .external_lex_state = 2}, - [7635] = {.lex_state = 406, .external_lex_state = 2}, - [7636] = {.lex_state = 406, .external_lex_state = 2}, - [7637] = {.lex_state = 50, .external_lex_state = 2}, - [7638] = {.lex_state = 406, .external_lex_state = 2}, - [7639] = {.lex_state = 406, .external_lex_state = 2}, - [7640] = {.lex_state = 406, .external_lex_state = 2}, - [7641] = {.lex_state = 50, .external_lex_state = 2}, - [7642] = {.lex_state = 49, .external_lex_state = 2}, - [7643] = {.lex_state = 406, .external_lex_state = 2}, - [7644] = {.lex_state = 50, .external_lex_state = 2}, - [7645] = {.lex_state = 406, .external_lex_state = 2}, - [7646] = {.lex_state = 406, .external_lex_state = 2}, - [7647] = {.lex_state = 50, .external_lex_state = 2}, - [7648] = {.lex_state = 406, .external_lex_state = 2}, - [7649] = {.lex_state = 50, .external_lex_state = 2}, - [7650] = {.lex_state = 406, .external_lex_state = 2}, - [7651] = {.lex_state = 406, .external_lex_state = 2}, - [7652] = {.lex_state = 50, .external_lex_state = 2}, - [7653] = {.lex_state = 406, .external_lex_state = 2}, - [7654] = {.lex_state = 50, .external_lex_state = 2}, - [7655] = {.lex_state = 406, .external_lex_state = 2}, - [7656] = {.lex_state = 406, .external_lex_state = 2}, - [7657] = {.lex_state = 50, .external_lex_state = 2}, - [7658] = {.lex_state = 406, .external_lex_state = 2}, - [7659] = {.lex_state = 50, .external_lex_state = 2}, - [7660] = {.lex_state = 406, .external_lex_state = 2}, - [7661] = {.lex_state = 406, .external_lex_state = 2}, - [7662] = {(TSStateId)(-1)}, + [7479] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -30207,88 +29779,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(7495), - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_program] = STATE(7375), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(1), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(72), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(4684), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -30369,79 +29942,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [2] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3103), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(3180), [sym_comment] = STATE(2), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_pattern] = STATE(5245), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3902), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_pattern] = STATE(4896), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3701), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), @@ -30558,79 +30131,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3103), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(3180), [sym_comment] = STATE(3), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_pattern] = STATE(5245), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3902), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_pattern] = STATE(4896), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3701), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), @@ -30747,99 +30320,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(5931), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7363), - [sym_spread_element] = STATE(5935), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3277), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(5739), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7317), + [sym_spread_element] = STATE(5740), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(3030), [sym_comment] = STATE(4), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_rest_pattern] = STATE(5931), - [sym_method_definition] = STATE(5935), - [sym_pair] = STATE(5935), - [sym_pair_pattern] = STATE(5931), - [sym__property_name] = STATE(4662), - [sym_computed_property_name] = STATE(4740), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_accessibility_modifier] = STATE(3651), - [sym_override_modifier] = STATE(3663), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(65), - [aux_sym_export_statement_repeat1] = STATE(4771), - [aux_sym_object_repeat1] = STATE(5939), - [aux_sym_object_pattern_repeat1] = STATE(5945), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_rest_pattern] = STATE(5739), + [sym_method_definition] = STATE(5740), + [sym_pair] = STATE(5740), + [sym_pair_pattern] = STATE(5739), + [sym__property_name] = STATE(4583), + [sym_computed_property_name] = STATE(4582), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_accessibility_modifier] = STATE(3468), + [sym_override_modifier] = STATE(3530), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(55), + [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_object_repeat1] = STATE(5792), + [aux_sym_object_pattern_repeat1] = STATE(5743), [sym_identifier] = ACTIONS(221), [anon_sym_export] = ACTIONS(223), [anon_sym_STAR] = ACTIONS(225), @@ -30922,112 +30496,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(5931), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7363), - [sym_spread_element] = STATE(6446), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3277), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(5739), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7317), + [sym_spread_element] = STATE(5740), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(3030), [sym_comment] = STATE(5), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_rest_pattern] = STATE(5931), - [sym_method_definition] = STATE(6446), - [sym_pair] = STATE(6446), - [sym_pair_pattern] = STATE(5931), - [sym__property_name] = STATE(4662), - [sym_computed_property_name] = STATE(4740), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_accessibility_modifier] = STATE(3651), - [sym_override_modifier] = STATE(3663), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(68), - [aux_sym_export_statement_repeat1] = STATE(4771), - [aux_sym_object_repeat1] = STATE(6441), - [aux_sym_object_pattern_repeat1] = STATE(5945), - [sym_identifier] = ACTIONS(265), - [anon_sym_export] = ACTIONS(267), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_rest_pattern] = STATE(5739), + [sym_method_definition] = STATE(5740), + [sym_pair] = STATE(5740), + [sym_pair_pattern] = STATE(5739), + [sym__property_name] = STATE(4583), + [sym_computed_property_name] = STATE(4582), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_accessibility_modifier] = STATE(3468), + [sym_override_modifier] = STATE(3530), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(40), + [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_object_repeat1] = STATE(5792), + [aux_sym_object_pattern_repeat1] = STATE(5743), + [sym_identifier] = ACTIONS(221), + [anon_sym_export] = ACTIONS(223), [anon_sym_STAR] = ACTIONS(225), - [anon_sym_type] = ACTIONS(269), - [anon_sym_namespace] = ACTIONS(271), + [anon_sym_type] = ACTIONS(227), + [anon_sym_namespace] = ACTIONS(229), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(265), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(275), + [anon_sym_let] = ACTIONS(235), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -31050,9 +30625,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(277), + [anon_sym_async] = ACTIONS(239), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(279), + [anon_sym_new] = ACTIONS(241), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(21), @@ -31075,121 +30650,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(281), - [anon_sym_readonly] = ACTIONS(283), - [anon_sym_get] = ACTIONS(285), - [anon_sym_set] = ACTIONS(285), - [anon_sym_declare] = ACTIONS(287), - [anon_sym_public] = ACTIONS(289), - [anon_sym_private] = ACTIONS(289), - [anon_sym_protected] = ACTIONS(289), - [anon_sym_override] = ACTIONS(291), - [anon_sym_module] = ACTIONS(293), - [anon_sym_any] = ACTIONS(295), - [anon_sym_number] = ACTIONS(295), - [anon_sym_boolean] = ACTIONS(295), - [anon_sym_string] = ACTIONS(295), - [anon_sym_symbol] = ACTIONS(295), - [anon_sym_object] = ACTIONS(295), + [anon_sym_static] = ACTIONS(249), + [anon_sym_readonly] = ACTIONS(251), + [anon_sym_get] = ACTIONS(253), + [anon_sym_set] = ACTIONS(253), + [anon_sym_declare] = ACTIONS(255), + [anon_sym_public] = ACTIONS(257), + [anon_sym_private] = ACTIONS(257), + [anon_sym_protected] = ACTIONS(257), + [anon_sym_override] = ACTIONS(259), + [anon_sym_module] = ACTIONS(261), + [anon_sym_any] = ACTIONS(263), + [anon_sym_number] = ACTIONS(263), + [anon_sym_boolean] = ACTIONS(263), + [anon_sym_string] = ACTIONS(263), + [anon_sym_symbol] = ACTIONS(263), + [anon_sym_object] = ACTIONS(263), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(5931), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7363), - [sym_spread_element] = STATE(5935), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3277), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(5739), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7317), + [sym_spread_element] = STATE(5740), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(3030), [sym_comment] = STATE(6), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_rest_pattern] = STATE(5931), - [sym_method_definition] = STATE(5935), - [sym_pair] = STATE(5935), - [sym_pair_pattern] = STATE(5931), - [sym__property_name] = STATE(4662), - [sym_computed_property_name] = STATE(4740), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_accessibility_modifier] = STATE(3651), - [sym_override_modifier] = STATE(3663), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(43), - [aux_sym_export_statement_repeat1] = STATE(4771), - [aux_sym_object_repeat1] = STATE(5939), - [aux_sym_object_pattern_repeat1] = STATE(5945), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_rest_pattern] = STATE(5739), + [sym_method_definition] = STATE(5740), + [sym_pair] = STATE(5740), + [sym_pair_pattern] = STATE(5739), + [sym__property_name] = STATE(4583), + [sym_computed_property_name] = STATE(4582), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_accessibility_modifier] = STATE(3468), + [sym_override_modifier] = STATE(3530), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(33), + [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_object_repeat1] = STATE(5792), + [aux_sym_object_pattern_repeat1] = STATE(5743), [sym_identifier] = ACTIONS(221), [anon_sym_export] = ACTIONS(223), [anon_sym_STAR] = ACTIONS(225), @@ -31197,7 +30773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(229), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_RBRACE] = ACTIONS(267), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -31272,99 +30848,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(5931), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7363), - [sym_spread_element] = STATE(5935), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3277), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(5739), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7317), + [sym_spread_element] = STATE(5740), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(3030), [sym_comment] = STATE(7), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_rest_pattern] = STATE(5931), - [sym_method_definition] = STATE(5935), - [sym_pair] = STATE(5935), - [sym_pair_pattern] = STATE(5931), - [sym__property_name] = STATE(4662), - [sym_computed_property_name] = STATE(4740), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_accessibility_modifier] = STATE(3651), - [sym_override_modifier] = STATE(3663), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(64), - [aux_sym_export_statement_repeat1] = STATE(4771), - [aux_sym_object_repeat1] = STATE(5939), - [aux_sym_object_pattern_repeat1] = STATE(5945), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_rest_pattern] = STATE(5739), + [sym_method_definition] = STATE(5740), + [sym_pair] = STATE(5740), + [sym_pair_pattern] = STATE(5739), + [sym__property_name] = STATE(4583), + [sym_computed_property_name] = STATE(4582), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_accessibility_modifier] = STATE(3468), + [sym_override_modifier] = STATE(3530), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_object_repeat1] = STATE(5792), + [aux_sym_object_pattern_repeat1] = STATE(5743), [sym_identifier] = ACTIONS(221), [anon_sym_export] = ACTIONS(223), [anon_sym_STAR] = ACTIONS(225), @@ -31372,7 +30949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(229), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(299), + [anon_sym_RBRACE] = ACTIONS(269), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -31447,99 +31024,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(5931), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7363), - [sym_spread_element] = STATE(5935), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3277), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(5739), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7317), + [sym_spread_element] = STATE(5740), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(3030), [sym_comment] = STATE(8), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_rest_pattern] = STATE(5931), - [sym_method_definition] = STATE(5935), - [sym_pair] = STATE(5935), - [sym_pair_pattern] = STATE(5931), - [sym__property_name] = STATE(4662), - [sym_computed_property_name] = STATE(4740), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_accessibility_modifier] = STATE(3651), - [sym_override_modifier] = STATE(3663), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(4771), - [aux_sym_object_repeat1] = STATE(5939), - [aux_sym_object_pattern_repeat1] = STATE(5945), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_rest_pattern] = STATE(5739), + [sym_method_definition] = STATE(5740), + [sym_pair] = STATE(5740), + [sym_pair_pattern] = STATE(5739), + [sym__property_name] = STATE(4583), + [sym_computed_property_name] = STATE(4582), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_accessibility_modifier] = STATE(3468), + [sym_override_modifier] = STATE(3530), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(36), + [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_object_repeat1] = STATE(5792), + [aux_sym_object_pattern_repeat1] = STATE(5743), [sym_identifier] = ACTIONS(221), [anon_sym_export] = ACTIONS(223), [anon_sym_STAR] = ACTIONS(225), @@ -31547,7 +31125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(229), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(301), + [anon_sym_RBRACE] = ACTIONS(271), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -31622,99 +31200,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(5931), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7363), - [sym_spread_element] = STATE(5935), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3277), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(5739), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7317), + [sym_spread_element] = STATE(5740), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(3030), [sym_comment] = STATE(9), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_rest_pattern] = STATE(5931), - [sym_method_definition] = STATE(5935), - [sym_pair] = STATE(5935), - [sym_pair_pattern] = STATE(5931), - [sym__property_name] = STATE(4662), - [sym_computed_property_name] = STATE(4740), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_accessibility_modifier] = STATE(3651), - [sym_override_modifier] = STATE(3663), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(38), - [aux_sym_export_statement_repeat1] = STATE(4771), - [aux_sym_object_repeat1] = STATE(5939), - [aux_sym_object_pattern_repeat1] = STATE(5945), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_rest_pattern] = STATE(5739), + [sym_method_definition] = STATE(5740), + [sym_pair] = STATE(5740), + [sym_pair_pattern] = STATE(5739), + [sym__property_name] = STATE(4583), + [sym_computed_property_name] = STATE(4582), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_accessibility_modifier] = STATE(3468), + [sym_override_modifier] = STATE(3530), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(66), + [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_object_repeat1] = STATE(5792), + [aux_sym_object_pattern_repeat1] = STATE(5743), [sym_identifier] = ACTIONS(221), [anon_sym_export] = ACTIONS(223), [anon_sym_STAR] = ACTIONS(225), @@ -31722,7 +31301,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(229), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(303), + [anon_sym_RBRACE] = ACTIONS(273), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -31797,112 +31376,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(5931), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7363), - [sym_spread_element] = STATE(6446), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3277), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(5739), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7317), + [sym_spread_element] = STATE(6145), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(3030), [sym_comment] = STATE(10), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_rest_pattern] = STATE(5931), - [sym_method_definition] = STATE(6446), - [sym_pair] = STATE(6446), - [sym_pair_pattern] = STATE(5931), - [sym__property_name] = STATE(4662), - [sym_computed_property_name] = STATE(4740), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_accessibility_modifier] = STATE(3651), - [sym_override_modifier] = STATE(3663), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(68), - [aux_sym_export_statement_repeat1] = STATE(4771), - [aux_sym_object_repeat1] = STATE(6441), - [aux_sym_object_pattern_repeat1] = STATE(5945), - [sym_identifier] = ACTIONS(305), - [anon_sym_export] = ACTIONS(307), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_rest_pattern] = STATE(5739), + [sym_method_definition] = STATE(6145), + [sym_pair] = STATE(6145), + [sym_pair_pattern] = STATE(5739), + [sym__property_name] = STATE(4583), + [sym_computed_property_name] = STATE(4582), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_accessibility_modifier] = STATE(3468), + [sym_override_modifier] = STATE(3530), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(42), + [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_object_repeat1] = STATE(6146), + [aux_sym_object_pattern_repeat1] = STATE(5743), + [sym_identifier] = ACTIONS(275), + [anon_sym_export] = ACTIONS(277), [anon_sym_STAR] = ACTIONS(225), - [anon_sym_type] = ACTIONS(309), - [anon_sym_namespace] = ACTIONS(311), + [anon_sym_type] = ACTIONS(279), + [anon_sym_namespace] = ACTIONS(281), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(273), + [anon_sym_RBRACE] = ACTIONS(283), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(313), + [anon_sym_let] = ACTIONS(285), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -31925,9 +31505,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(315), + [anon_sym_async] = ACTIONS(287), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(317), + [anon_sym_new] = ACTIONS(289), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(21), @@ -31950,134 +31530,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(319), - [anon_sym_readonly] = ACTIONS(321), - [anon_sym_get] = ACTIONS(323), - [anon_sym_set] = ACTIONS(323), - [anon_sym_declare] = ACTIONS(325), - [anon_sym_public] = ACTIONS(327), - [anon_sym_private] = ACTIONS(327), - [anon_sym_protected] = ACTIONS(327), - [anon_sym_override] = ACTIONS(329), - [anon_sym_module] = ACTIONS(331), - [anon_sym_any] = ACTIONS(333), - [anon_sym_number] = ACTIONS(333), - [anon_sym_boolean] = ACTIONS(333), - [anon_sym_string] = ACTIONS(333), - [anon_sym_symbol] = ACTIONS(333), - [anon_sym_object] = ACTIONS(333), + [anon_sym_static] = ACTIONS(291), + [anon_sym_readonly] = ACTIONS(293), + [anon_sym_get] = ACTIONS(295), + [anon_sym_set] = ACTIONS(295), + [anon_sym_declare] = ACTIONS(297), + [anon_sym_public] = ACTIONS(299), + [anon_sym_private] = ACTIONS(299), + [anon_sym_protected] = ACTIONS(299), + [anon_sym_override] = ACTIONS(301), + [anon_sym_module] = ACTIONS(303), + [anon_sym_any] = ACTIONS(305), + [anon_sym_number] = ACTIONS(305), + [anon_sym_boolean] = ACTIONS(305), + [anon_sym_string] = ACTIONS(305), + [anon_sym_symbol] = ACTIONS(305), + [anon_sym_object] = ACTIONS(305), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [11] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(5931), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7363), - [sym_spread_element] = STATE(5935), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3277), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(5739), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7317), + [sym_spread_element] = STATE(6145), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(3030), [sym_comment] = STATE(11), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_rest_pattern] = STATE(5931), - [sym_method_definition] = STATE(5935), - [sym_pair] = STATE(5935), - [sym_pair_pattern] = STATE(5931), - [sym__property_name] = STATE(4662), - [sym_computed_property_name] = STATE(4740), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_accessibility_modifier] = STATE(3651), - [sym_override_modifier] = STATE(3663), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(31), - [aux_sym_export_statement_repeat1] = STATE(4771), - [aux_sym_object_repeat1] = STATE(5939), - [aux_sym_object_pattern_repeat1] = STATE(5945), - [sym_identifier] = ACTIONS(221), - [anon_sym_export] = ACTIONS(223), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_rest_pattern] = STATE(5739), + [sym_method_definition] = STATE(6145), + [sym_pair] = STATE(6145), + [sym_pair_pattern] = STATE(5739), + [sym__property_name] = STATE(4583), + [sym_computed_property_name] = STATE(4582), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_accessibility_modifier] = STATE(3468), + [sym_override_modifier] = STATE(3530), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(42), + [aux_sym_export_statement_repeat1] = STATE(4684), + [aux_sym_object_repeat1] = STATE(6146), + [aux_sym_object_pattern_repeat1] = STATE(5743), + [sym_identifier] = ACTIONS(307), + [anon_sym_export] = ACTIONS(309), [anon_sym_STAR] = ACTIONS(225), - [anon_sym_type] = ACTIONS(227), - [anon_sym_namespace] = ACTIONS(229), + [anon_sym_type] = ACTIONS(311), + [anon_sym_namespace] = ACTIONS(313), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(231), - [anon_sym_RBRACE] = ACTIONS(335), + [anon_sym_RBRACE] = ACTIONS(283), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(235), + [anon_sym_let] = ACTIONS(315), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -32100,9 +31681,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(239), + [anon_sym_async] = ACTIONS(317), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(241), + [anon_sym_new] = ACTIONS(319), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), [anon_sym_PLUS] = ACTIONS(21), @@ -32125,109 +31706,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(249), - [anon_sym_readonly] = ACTIONS(251), - [anon_sym_get] = ACTIONS(253), - [anon_sym_set] = ACTIONS(253), - [anon_sym_declare] = ACTIONS(255), - [anon_sym_public] = ACTIONS(257), - [anon_sym_private] = ACTIONS(257), - [anon_sym_protected] = ACTIONS(257), - [anon_sym_override] = ACTIONS(259), - [anon_sym_module] = ACTIONS(261), - [anon_sym_any] = ACTIONS(263), - [anon_sym_number] = ACTIONS(263), - [anon_sym_boolean] = ACTIONS(263), - [anon_sym_string] = ACTIONS(263), - [anon_sym_symbol] = ACTIONS(263), - [anon_sym_object] = ACTIONS(263), + [anon_sym_static] = ACTIONS(321), + [anon_sym_readonly] = ACTIONS(323), + [anon_sym_get] = ACTIONS(325), + [anon_sym_set] = ACTIONS(325), + [anon_sym_declare] = ACTIONS(327), + [anon_sym_public] = ACTIONS(329), + [anon_sym_private] = ACTIONS(329), + [anon_sym_protected] = ACTIONS(329), + [anon_sym_override] = ACTIONS(331), + [anon_sym_module] = ACTIONS(333), + [anon_sym_any] = ACTIONS(335), + [anon_sym_number] = ACTIONS(335), + [anon_sym_boolean] = ACTIONS(335), + [anon_sym_string] = ACTIONS(335), + [anon_sym_symbol] = ACTIONS(335), + [anon_sym_object] = ACTIONS(335), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(1214), - [sym_declaration] = STATE(1214), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1214), - [sym_expression_statement] = STATE(1214), - [sym_variable_declaration] = STATE(1382), - [sym_lexical_declaration] = STATE(1382), - [sym_statement_block] = STATE(1214), - [sym_if_statement] = STATE(1214), - [sym_switch_statement] = STATE(1214), - [sym_for_statement] = STATE(1214), - [sym_for_in_statement] = STATE(1214), - [sym_while_statement] = STATE(1214), - [sym_do_statement] = STATE(1214), - [sym_try_statement] = STATE(1214), - [sym_with_statement] = STATE(1214), - [sym_break_statement] = STATE(1214), - [sym_continue_statement] = STATE(1214), - [sym_debugger_statement] = STATE(1214), - [sym_return_statement] = STATE(1214), - [sym_throw_statement] = STATE(1214), - [sym_empty_statement] = STATE(1214), - [sym_labeled_statement] = STATE(1214), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2668), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1382), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1382), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1382), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6712), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1393), + [sym_declaration] = STATE(1393), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1393), + [sym_statement] = STATE(1245), + [sym_expression_statement] = STATE(1393), + [sym_variable_declaration] = STATE(1327), + [sym_lexical_declaration] = STATE(1327), + [sym_statement_block] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_switch_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_for_in_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_do_statement] = STATE(1393), + [sym_try_statement] = STATE(1393), + [sym_with_statement] = STATE(1393), + [sym_break_statement] = STATE(1393), + [sym_continue_statement] = STATE(1393), + [sym_debugger_statement] = STATE(1393), + [sym_return_statement] = STATE(1393), + [sym_throw_statement] = STATE(1393), + [sym_empty_statement] = STATE(1393), + [sym_labeled_statement] = STATE(1393), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1327), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1327), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1327), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6752), + [sym_string] = STATE(2940), [sym_comment] = STATE(12), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1382), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1382), - [sym_abstract_class_declaration] = STATE(1382), - [sym_module] = STATE(1382), - [sym_internal_module] = STATE(345), - [sym_import_alias] = STATE(1382), - [sym_interface_declaration] = STATE(1382), - [sym_enum_declaration] = STATE(1382), - [sym_type_alias_declaration] = STATE(1382), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(4953), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1327), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1327), + [sym_abstract_class_declaration] = STATE(1327), + [sym_module] = STATE(1327), + [sym_internal_module] = STATE(413), + [sym_import_alias] = STATE(1327), + [sym_interface_declaration] = STATE(1327), + [sym_enum_declaration] = STATE(1327), + [sym_type_alias_declaration] = STATE(1327), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(4841), [sym_identifier] = ACTIONS(337), [anon_sym_export] = ACTIONS(339), [anon_sym_default] = ACTIONS(341), @@ -32309,256 +31891,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [13] = { - [sym_export_statement] = STATE(1214), - [sym_declaration] = STATE(1214), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1214), - [sym_expression_statement] = STATE(1214), - [sym_variable_declaration] = STATE(1382), - [sym_lexical_declaration] = STATE(1382), - [sym_statement_block] = STATE(1214), - [sym_if_statement] = STATE(1214), - [sym_switch_statement] = STATE(1214), - [sym_for_statement] = STATE(1214), - [sym_for_in_statement] = STATE(1214), - [sym_while_statement] = STATE(1214), - [sym_do_statement] = STATE(1214), - [sym_try_statement] = STATE(1214), - [sym_with_statement] = STATE(1214), - [sym_break_statement] = STATE(1214), - [sym_continue_statement] = STATE(1214), - [sym_debugger_statement] = STATE(1214), - [sym_return_statement] = STATE(1214), - [sym_throw_statement] = STATE(1214), - [sym_empty_statement] = STATE(1214), - [sym_labeled_statement] = STATE(1214), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2668), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1382), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1382), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1382), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6712), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1393), + [sym_declaration] = STATE(1393), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1393), + [sym_statement] = STATE(1245), + [sym_expression_statement] = STATE(1393), + [sym_variable_declaration] = STATE(1327), + [sym_lexical_declaration] = STATE(1327), + [sym_statement_block] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_switch_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_for_in_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_do_statement] = STATE(1393), + [sym_try_statement] = STATE(1393), + [sym_with_statement] = STATE(1393), + [sym_break_statement] = STATE(1393), + [sym_continue_statement] = STATE(1393), + [sym_debugger_statement] = STATE(1393), + [sym_return_statement] = STATE(1393), + [sym_throw_statement] = STATE(1393), + [sym_empty_statement] = STATE(1393), + [sym_labeled_statement] = STATE(1393), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1327), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1327), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1327), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6752), + [sym_string] = STATE(2940), [sym_comment] = STATE(13), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1382), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1382), - [sym_abstract_class_declaration] = STATE(1382), - [sym_module] = STATE(1382), - [sym_internal_module] = STATE(345), - [sym_import_alias] = STATE(1382), - [sym_interface_declaration] = STATE(1382), - [sym_enum_declaration] = STATE(1382), - [sym_type_alias_declaration] = STATE(1382), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(4953), - [sym_identifier] = ACTIONS(403), - [anon_sym_export] = ACTIONS(406), - [anon_sym_default] = ACTIONS(409), - [anon_sym_type] = ACTIONS(411), - [anon_sym_namespace] = ACTIONS(414), - [anon_sym_LBRACE] = ACTIONS(417), - [anon_sym_RBRACE] = ACTIONS(409), - [anon_sym_typeof] = ACTIONS(420), - [anon_sym_import] = ACTIONS(423), - [anon_sym_with] = ACTIONS(426), - [anon_sym_var] = ACTIONS(429), - [anon_sym_let] = ACTIONS(432), - [anon_sym_const] = ACTIONS(435), - [anon_sym_BANG] = ACTIONS(420), - [anon_sym_if] = ACTIONS(438), - [anon_sym_switch] = ACTIONS(441), - [anon_sym_for] = ACTIONS(444), - [anon_sym_LPAREN] = ACTIONS(447), - [anon_sym_await] = ACTIONS(450), - [anon_sym_while] = ACTIONS(453), - [anon_sym_do] = ACTIONS(456), - [anon_sym_try] = ACTIONS(459), - [anon_sym_break] = ACTIONS(462), - [anon_sym_continue] = ACTIONS(465), - [anon_sym_debugger] = ACTIONS(468), - [anon_sym_return] = ACTIONS(471), - [anon_sym_throw] = ACTIONS(474), - [anon_sym_SEMI] = ACTIONS(477), - [anon_sym_case] = ACTIONS(409), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_LTtemplate_GT] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_SQUOTE] = ACTIONS(492), - [anon_sym_class] = ACTIONS(495), - [anon_sym_async] = ACTIONS(498), - [anon_sym_function] = ACTIONS(501), - [anon_sym_new] = ACTIONS(504), - [anon_sym_using] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_SLASH] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(516), - [anon_sym_DASH_DASH] = ACTIONS(516), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(519), - [sym_number] = ACTIONS(522), - [sym_private_property_identifier] = ACTIONS(525), - [sym_this] = ACTIONS(522), - [sym_super] = ACTIONS(522), - [sym_true] = ACTIONS(522), - [sym_false] = ACTIONS(522), - [sym_null] = ACTIONS(522), - [sym_undefined] = ACTIONS(528), - [anon_sym_AT] = ACTIONS(531), - [anon_sym_static] = ACTIONS(534), - [anon_sym_readonly] = ACTIONS(534), - [anon_sym_get] = ACTIONS(534), - [anon_sym_set] = ACTIONS(534), - [anon_sym_declare] = ACTIONS(537), - [anon_sym_public] = ACTIONS(534), - [anon_sym_private] = ACTIONS(534), - [anon_sym_protected] = ACTIONS(534), - [anon_sym_override] = ACTIONS(534), - [anon_sym_module] = ACTIONS(540), - [anon_sym_any] = ACTIONS(534), - [anon_sym_number] = ACTIONS(534), - [anon_sym_boolean] = ACTIONS(534), - [anon_sym_string] = ACTIONS(534), - [anon_sym_symbol] = ACTIONS(534), - [anon_sym_object] = ACTIONS(534), - [anon_sym_abstract] = ACTIONS(543), - [anon_sym_interface] = ACTIONS(546), - [anon_sym_enum] = ACTIONS(549), - [sym_html_comment] = ACTIONS(5), - }, - [14] = { - [sym_export_statement] = STATE(1214), - [sym_declaration] = STATE(1214), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1214), - [sym_expression_statement] = STATE(1214), - [sym_variable_declaration] = STATE(1382), - [sym_lexical_declaration] = STATE(1382), - [sym_statement_block] = STATE(1214), - [sym_if_statement] = STATE(1214), - [sym_switch_statement] = STATE(1214), - [sym_for_statement] = STATE(1214), - [sym_for_in_statement] = STATE(1214), - [sym_while_statement] = STATE(1214), - [sym_do_statement] = STATE(1214), - [sym_try_statement] = STATE(1214), - [sym_with_statement] = STATE(1214), - [sym_break_statement] = STATE(1214), - [sym_continue_statement] = STATE(1214), - [sym_debugger_statement] = STATE(1214), - [sym_return_statement] = STATE(1214), - [sym_throw_statement] = STATE(1214), - [sym_empty_statement] = STATE(1214), - [sym_labeled_statement] = STATE(1214), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2668), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1382), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1382), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1382), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6712), - [sym_string] = STATE(3113), - [sym_comment] = STATE(14), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1382), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1382), - [sym_abstract_class_declaration] = STATE(1382), - [sym_module] = STATE(1382), - [sym_internal_module] = STATE(345), - [sym_import_alias] = STATE(1382), - [sym_interface_declaration] = STATE(1382), - [sym_enum_declaration] = STATE(1382), - [sym_type_alias_declaration] = STATE(1382), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(4953), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1327), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1327), + [sym_abstract_class_declaration] = STATE(1327), + [sym_module] = STATE(1327), + [sym_internal_module] = STATE(413), + [sym_import_alias] = STATE(1327), + [sym_interface_declaration] = STATE(1327), + [sym_enum_declaration] = STATE(1327), + [sym_type_alias_declaration] = STATE(1327), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(4841), [sym_identifier] = ACTIONS(337), [anon_sym_export] = ACTIONS(339), - [anon_sym_default] = ACTIONS(552), + [anon_sym_default] = ACTIONS(403), [anon_sym_type] = ACTIONS(343), [anon_sym_namespace] = ACTIONS(345), [anon_sym_LBRACE] = ACTIONS(347), - [anon_sym_RBRACE] = ACTIONS(552), + [anon_sym_RBRACE] = ACTIONS(403), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(349), [anon_sym_with] = ACTIONS(351), @@ -32580,7 +32001,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(377), [anon_sym_throw] = ACTIONS(379), [anon_sym_SEMI] = ACTIONS(381), - [anon_sym_case] = ACTIONS(552), + [anon_sym_case] = ACTIONS(403), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), @@ -32632,88 +32053,252 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(401), [sym_html_comment] = ACTIONS(5), }, + [14] = { + [sym_export_statement] = STATE(1393), + [sym_declaration] = STATE(1393), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1393), + [sym_statement] = STATE(1245), + [sym_expression_statement] = STATE(1393), + [sym_variable_declaration] = STATE(1327), + [sym_lexical_declaration] = STATE(1327), + [sym_statement_block] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_switch_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_for_in_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_do_statement] = STATE(1393), + [sym_try_statement] = STATE(1393), + [sym_with_statement] = STATE(1393), + [sym_break_statement] = STATE(1393), + [sym_continue_statement] = STATE(1393), + [sym_debugger_statement] = STATE(1393), + [sym_return_statement] = STATE(1393), + [sym_throw_statement] = STATE(1393), + [sym_empty_statement] = STATE(1393), + [sym_labeled_statement] = STATE(1393), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1327), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1327), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1327), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6752), + [sym_string] = STATE(2940), + [sym_comment] = STATE(14), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1327), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1327), + [sym_abstract_class_declaration] = STATE(1327), + [sym_module] = STATE(1327), + [sym_internal_module] = STATE(413), + [sym_import_alias] = STATE(1327), + [sym_interface_declaration] = STATE(1327), + [sym_enum_declaration] = STATE(1327), + [sym_type_alias_declaration] = STATE(1327), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(4841), + [sym_identifier] = ACTIONS(405), + [anon_sym_export] = ACTIONS(408), + [anon_sym_default] = ACTIONS(411), + [anon_sym_type] = ACTIONS(413), + [anon_sym_namespace] = ACTIONS(416), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_typeof] = ACTIONS(422), + [anon_sym_import] = ACTIONS(425), + [anon_sym_with] = ACTIONS(428), + [anon_sym_var] = ACTIONS(431), + [anon_sym_let] = ACTIONS(434), + [anon_sym_const] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(422), + [anon_sym_if] = ACTIONS(440), + [anon_sym_switch] = ACTIONS(443), + [anon_sym_for] = ACTIONS(446), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_await] = ACTIONS(452), + [anon_sym_while] = ACTIONS(455), + [anon_sym_do] = ACTIONS(458), + [anon_sym_try] = ACTIONS(461), + [anon_sym_break] = ACTIONS(464), + [anon_sym_continue] = ACTIONS(467), + [anon_sym_debugger] = ACTIONS(470), + [anon_sym_return] = ACTIONS(473), + [anon_sym_throw] = ACTIONS(476), + [anon_sym_SEMI] = ACTIONS(479), + [anon_sym_case] = ACTIONS(411), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(485), + [anon_sym_LTtemplate_GT] = ACTIONS(488), + [anon_sym_DQUOTE] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(494), + [anon_sym_class] = ACTIONS(497), + [anon_sym_async] = ACTIONS(500), + [anon_sym_function] = ACTIONS(503), + [anon_sym_new] = ACTIONS(506), + [anon_sym_using] = ACTIONS(509), + [anon_sym_PLUS] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(422), + [anon_sym_SLASH] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_void] = ACTIONS(422), + [anon_sym_delete] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(518), + [anon_sym_DASH_DASH] = ACTIONS(518), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(521), + [sym_number] = ACTIONS(524), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(524), + [sym_super] = ACTIONS(524), + [sym_true] = ACTIONS(524), + [sym_false] = ACTIONS(524), + [sym_null] = ACTIONS(524), + [sym_undefined] = ACTIONS(530), + [anon_sym_AT] = ACTIONS(533), + [anon_sym_static] = ACTIONS(536), + [anon_sym_readonly] = ACTIONS(536), + [anon_sym_get] = ACTIONS(536), + [anon_sym_set] = ACTIONS(536), + [anon_sym_declare] = ACTIONS(539), + [anon_sym_public] = ACTIONS(536), + [anon_sym_private] = ACTIONS(536), + [anon_sym_protected] = ACTIONS(536), + [anon_sym_override] = ACTIONS(536), + [anon_sym_module] = ACTIONS(542), + [anon_sym_any] = ACTIONS(536), + [anon_sym_number] = ACTIONS(536), + [anon_sym_boolean] = ACTIONS(536), + [anon_sym_string] = ACTIONS(536), + [anon_sym_symbol] = ACTIONS(536), + [anon_sym_object] = ACTIONS(536), + [anon_sym_abstract] = ACTIONS(545), + [anon_sym_interface] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(551), + [sym_html_comment] = ACTIONS(5), + }, [15] = { - [sym_export_statement] = STATE(1214), - [sym_declaration] = STATE(1214), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1214), - [sym_expression_statement] = STATE(1214), - [sym_variable_declaration] = STATE(1382), - [sym_lexical_declaration] = STATE(1382), - [sym_statement_block] = STATE(1214), - [sym_if_statement] = STATE(1214), - [sym_switch_statement] = STATE(1214), - [sym_for_statement] = STATE(1214), - [sym_for_in_statement] = STATE(1214), - [sym_while_statement] = STATE(1214), - [sym_do_statement] = STATE(1214), - [sym_try_statement] = STATE(1214), - [sym_with_statement] = STATE(1214), - [sym_break_statement] = STATE(1214), - [sym_continue_statement] = STATE(1214), - [sym_debugger_statement] = STATE(1214), - [sym_return_statement] = STATE(1214), - [sym_throw_statement] = STATE(1214), - [sym_empty_statement] = STATE(1214), - [sym_labeled_statement] = STATE(1214), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2668), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1382), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1382), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1382), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6712), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1393), + [sym_declaration] = STATE(1393), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1393), + [sym_statement] = STATE(1245), + [sym_expression_statement] = STATE(1393), + [sym_variable_declaration] = STATE(1327), + [sym_lexical_declaration] = STATE(1327), + [sym_statement_block] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_switch_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_for_in_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_do_statement] = STATE(1393), + [sym_try_statement] = STATE(1393), + [sym_with_statement] = STATE(1393), + [sym_break_statement] = STATE(1393), + [sym_continue_statement] = STATE(1393), + [sym_debugger_statement] = STATE(1393), + [sym_return_statement] = STATE(1393), + [sym_throw_statement] = STATE(1393), + [sym_empty_statement] = STATE(1393), + [sym_labeled_statement] = STATE(1393), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1327), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1327), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1327), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6752), + [sym_string] = STATE(2940), [sym_comment] = STATE(15), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1382), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1382), - [sym_abstract_class_declaration] = STATE(1382), - [sym_module] = STATE(1382), - [sym_internal_module] = STATE(345), - [sym_import_alias] = STATE(1382), - [sym_interface_declaration] = STATE(1382), - [sym_enum_declaration] = STATE(1382), - [sym_type_alias_declaration] = STATE(1382), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(4953), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1327), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1327), + [sym_abstract_class_declaration] = STATE(1327), + [sym_module] = STATE(1327), + [sym_internal_module] = STATE(413), + [sym_import_alias] = STATE(1327), + [sym_interface_declaration] = STATE(1327), + [sym_enum_declaration] = STATE(1327), + [sym_type_alias_declaration] = STATE(1327), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(4841), [sym_identifier] = ACTIONS(337), [anon_sym_export] = ACTIONS(339), [anon_sym_default] = ACTIONS(554), @@ -32795,87 +32380,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [16] = { - [sym_export_statement] = STATE(1214), - [sym_declaration] = STATE(1214), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1214), - [sym_expression_statement] = STATE(1214), - [sym_variable_declaration] = STATE(1382), - [sym_lexical_declaration] = STATE(1382), - [sym_statement_block] = STATE(1214), - [sym_if_statement] = STATE(1214), - [sym_switch_statement] = STATE(1214), - [sym_for_statement] = STATE(1214), - [sym_for_in_statement] = STATE(1214), - [sym_while_statement] = STATE(1214), - [sym_do_statement] = STATE(1214), - [sym_try_statement] = STATE(1214), - [sym_with_statement] = STATE(1214), - [sym_break_statement] = STATE(1214), - [sym_continue_statement] = STATE(1214), - [sym_debugger_statement] = STATE(1214), - [sym_return_statement] = STATE(1214), - [sym_throw_statement] = STATE(1214), - [sym_empty_statement] = STATE(1214), - [sym_labeled_statement] = STATE(1214), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2668), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1382), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1382), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1382), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6712), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1393), + [sym_declaration] = STATE(1393), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1393), + [sym_statement] = STATE(1245), + [sym_expression_statement] = STATE(1393), + [sym_variable_declaration] = STATE(1327), + [sym_lexical_declaration] = STATE(1327), + [sym_statement_block] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_switch_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_for_in_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_do_statement] = STATE(1393), + [sym_try_statement] = STATE(1393), + [sym_with_statement] = STATE(1393), + [sym_break_statement] = STATE(1393), + [sym_continue_statement] = STATE(1393), + [sym_debugger_statement] = STATE(1393), + [sym_return_statement] = STATE(1393), + [sym_throw_statement] = STATE(1393), + [sym_empty_statement] = STATE(1393), + [sym_labeled_statement] = STATE(1393), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1327), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1327), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1327), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6752), + [sym_string] = STATE(2940), [sym_comment] = STATE(16), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1382), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1382), - [sym_abstract_class_declaration] = STATE(1382), - [sym_module] = STATE(1382), - [sym_internal_module] = STATE(345), - [sym_import_alias] = STATE(1382), - [sym_interface_declaration] = STATE(1382), - [sym_enum_declaration] = STATE(1382), - [sym_type_alias_declaration] = STATE(1382), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(4953), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1327), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1327), + [sym_abstract_class_declaration] = STATE(1327), + [sym_module] = STATE(1327), + [sym_internal_module] = STATE(413), + [sym_import_alias] = STATE(1327), + [sym_interface_declaration] = STATE(1327), + [sym_enum_declaration] = STATE(1327), + [sym_type_alias_declaration] = STATE(1327), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(14), + [aux_sym_export_statement_repeat1] = STATE(4841), [sym_identifier] = ACTIONS(337), [anon_sym_export] = ACTIONS(339), [anon_sym_default] = ACTIONS(556), @@ -32957,106 +32543,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [17] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(17), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [aux_sym_export_statement_repeat1] = STATE(4684), [ts_builtin_sym_end] = ACTIONS(558), [sym_identifier] = ACTIONS(560), [anon_sym_export] = ACTIONS(563), [anon_sym_type] = ACTIONS(566), [anon_sym_namespace] = ACTIONS(569), [anon_sym_LBRACE] = ACTIONS(572), - [anon_sym_RBRACE] = ACTIONS(409), - [anon_sym_typeof] = ACTIONS(420), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_typeof] = ACTIONS(422), [anon_sym_import] = ACTIONS(575), [anon_sym_with] = ACTIONS(578), [anon_sym_var] = ACTIONS(581), [anon_sym_let] = ACTIONS(584), [anon_sym_const] = ACTIONS(587), - [anon_sym_BANG] = ACTIONS(420), + [anon_sym_BANG] = ACTIONS(422), [anon_sym_if] = ACTIONS(590), [anon_sym_switch] = ACTIONS(593), [anon_sym_for] = ACTIONS(596), - [anon_sym_LPAREN] = ACTIONS(447), - [anon_sym_await] = ACTIONS(450), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_await] = ACTIONS(452), [anon_sym_while] = ACTIONS(599), [anon_sym_do] = ACTIONS(602), [anon_sym_try] = ACTIONS(605), @@ -33066,36 +32653,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(617), [anon_sym_throw] = ACTIONS(620), [anon_sym_SEMI] = ACTIONS(623), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_LBRACK] = ACTIONS(483), - [anon_sym_LTtemplate_GT] = ACTIONS(486), - [anon_sym_DQUOTE] = ACTIONS(489), - [anon_sym_SQUOTE] = ACTIONS(492), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(485), + [anon_sym_LTtemplate_GT] = ACTIONS(488), + [anon_sym_DQUOTE] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(494), [anon_sym_class] = ACTIONS(626), [anon_sym_async] = ACTIONS(629), [anon_sym_function] = ACTIONS(632), [anon_sym_new] = ACTIONS(635), - [anon_sym_using] = ACTIONS(507), - [anon_sym_PLUS] = ACTIONS(420), - [anon_sym_DASH] = ACTIONS(420), - [anon_sym_SLASH] = ACTIONS(510), - [anon_sym_LT] = ACTIONS(513), - [anon_sym_TILDE] = ACTIONS(420), - [anon_sym_void] = ACTIONS(420), - [anon_sym_delete] = ACTIONS(420), - [anon_sym_PLUS_PLUS] = ACTIONS(516), - [anon_sym_DASH_DASH] = ACTIONS(516), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(519), - [sym_number] = ACTIONS(522), - [sym_private_property_identifier] = ACTIONS(525), - [sym_this] = ACTIONS(522), - [sym_super] = ACTIONS(522), - [sym_true] = ACTIONS(522), - [sym_false] = ACTIONS(522), - [sym_null] = ACTIONS(522), - [sym_undefined] = ACTIONS(528), - [anon_sym_AT] = ACTIONS(531), + [anon_sym_using] = ACTIONS(509), + [anon_sym_PLUS] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(422), + [anon_sym_SLASH] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_void] = ACTIONS(422), + [anon_sym_delete] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(518), + [anon_sym_DASH_DASH] = ACTIONS(518), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(521), + [sym_number] = ACTIONS(524), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(524), + [sym_super] = ACTIONS(524), + [sym_true] = ACTIONS(524), + [sym_false] = ACTIONS(524), + [sym_null] = ACTIONS(524), + [sym_undefined] = ACTIONS(530), + [anon_sym_AT] = ACTIONS(533), [anon_sym_static] = ACTIONS(638), [anon_sym_readonly] = ACTIONS(638), [anon_sym_get] = ACTIONS(638), @@ -33118,87 +32705,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(18), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(36), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -33278,93 +32866,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [19] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(19), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), - [ts_builtin_sym_end] = ACTIONS(658), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(658), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -33438,93 +33027,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [20] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(20), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [aux_sym_export_statement_repeat1] = STATE(4684), + [ts_builtin_sym_end] = ACTIONS(660), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(660), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -33598,87 +33188,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [21] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(21), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(65), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -33758,87 +33349,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [22] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(22), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -33918,87 +33510,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [23] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(23), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(52), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -34078,87 +33671,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [24] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(24), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -34238,87 +33832,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [25] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(25), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(29), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -34398,87 +33993,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [26] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(26), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -34558,87 +34154,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [27] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(27), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(43), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(28), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -34718,87 +34315,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [28] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(28), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(31), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -34878,87 +34476,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [29] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(29), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -35038,87 +34637,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [30] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(30), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(32), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(55), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -35198,87 +34798,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [31] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(31), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -35358,87 +34959,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [32] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(32), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -35518,87 +35120,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [33] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(33), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(34), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -35678,87 +35281,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [34] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(34), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(37), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -35838,87 +35442,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [35] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(35), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(60), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -35998,87 +35603,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [36] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(36), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -36158,93 +35764,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [37] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(37), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(4771), - [ts_builtin_sym_end] = ACTIONS(694), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(694), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36318,87 +35925,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [38] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(38), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(41), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -36478,87 +36086,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [39] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(39), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(40), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(49), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -36638,87 +36247,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [40] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(40), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -36798,87 +36408,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [41] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(41), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(57), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -36958,87 +36569,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [42] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(42), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(64), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -37118,87 +36730,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [43] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(43), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -37278,87 +36891,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [44] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(44), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(61), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -37438,87 +37052,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [45] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(45), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(44), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -37598,87 +37213,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [46] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(46), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -37758,87 +37374,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [47] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(47), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(49), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(48), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -37918,87 +37535,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [48] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(48), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -38078,87 +37696,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [49] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(49), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -38238,87 +37857,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [50] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(50), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(42), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -38398,87 +38018,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [51] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(51), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(48), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(59), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -38558,87 +38179,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [52] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(52), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -38718,87 +38340,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [53] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(53), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(46), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -38878,87 +38501,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [54] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(54), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(52), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(53), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -39038,87 +38662,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [55] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(55), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -39198,87 +38823,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [56] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(56), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -39358,87 +38984,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [57] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(57), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(68), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -39518,87 +39145,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [58] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(58), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(68), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(66), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -39678,87 +39306,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [59] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(59), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(55), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -39838,87 +39467,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [60] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(60), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(38), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -39998,87 +39628,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [61] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(61), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(33), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -40158,87 +39789,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [62] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(62), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(36), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -40318,87 +39950,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [63] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(63), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), [aux_sym_program_repeat1] = STATE(56), - [aux_sym_export_statement_repeat1] = STATE(4771), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -40478,87 +40111,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [64] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(64), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(25), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -40638,87 +40272,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [65] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(65), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(43), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -40798,87 +40433,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [66] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(66), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -40958,87 +40594,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [67] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(67), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(62), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(40), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -41118,87 +40755,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [68] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(68), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -41278,87 +40916,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [69] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(69), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(35), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -41438,93 +41077,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [70] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(70), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), + [aux_sym_export_statement_repeat1] = STATE(4684), + [ts_builtin_sym_end] = ACTIONS(760), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(760), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -41598,87 +41238,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [71] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(71), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(70), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(69), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -41758,88 +41399,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [72] = { - [sym_export_statement] = STATE(1572), - [sym_declaration] = STATE(1572), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1572), - [sym_expression_statement] = STATE(1572), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1572), - [sym_if_statement] = STATE(1572), - [sym_switch_statement] = STATE(1572), - [sym_for_statement] = STATE(1572), - [sym_for_in_statement] = STATE(1572), - [sym_while_statement] = STATE(1572), - [sym_do_statement] = STATE(1572), - [sym_try_statement] = STATE(1572), - [sym_with_statement] = STATE(1572), - [sym_break_statement] = STATE(1572), - [sym_continue_statement] = STATE(1572), - [sym_debugger_statement] = STATE(1572), - [sym_return_statement] = STATE(1572), - [sym_throw_statement] = STATE(1572), - [sym_empty_statement] = STATE(1572), - [sym_labeled_statement] = STATE(1572), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1556), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(72), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4771), - [ts_builtin_sym_end] = ACTIONS(694), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_program_repeat1] = STATE(70), + [aux_sym_export_statement_repeat1] = STATE(4684), + [ts_builtin_sym_end] = ACTIONS(660), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -41918,86 +41560,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [73] = { - [sym_export_statement] = STATE(1598), - [sym_declaration] = STATE(1598), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1598), - [sym_expression_statement] = STATE(1598), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1598), - [sym_if_statement] = STATE(1598), - [sym_switch_statement] = STATE(1598), - [sym_for_statement] = STATE(1598), - [sym_for_in_statement] = STATE(1598), - [sym_while_statement] = STATE(1598), - [sym_do_statement] = STATE(1598), - [sym_try_statement] = STATE(1598), - [sym_with_statement] = STATE(1598), - [sym_break_statement] = STATE(1598), - [sym_continue_statement] = STATE(1598), - [sym_debugger_statement] = STATE(1598), - [sym_return_statement] = STATE(1598), - [sym_throw_statement] = STATE(1598), - [sym_empty_statement] = STATE(1598), - [sym_labeled_statement] = STATE(1598), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1537), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(73), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -42076,244 +41719,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [74] = { - [sym_export_statement] = STATE(1397), - [sym_declaration] = STATE(1397), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1397), - [sym_expression_statement] = STATE(1397), - [sym_variable_declaration] = STATE(1382), - [sym_lexical_declaration] = STATE(1382), - [sym_statement_block] = STATE(1397), - [sym_if_statement] = STATE(1397), - [sym_switch_statement] = STATE(1397), - [sym_for_statement] = STATE(1397), - [sym_for_in_statement] = STATE(1397), - [sym_while_statement] = STATE(1397), - [sym_do_statement] = STATE(1397), - [sym_try_statement] = STATE(1397), - [sym_with_statement] = STATE(1397), - [sym_break_statement] = STATE(1397), - [sym_continue_statement] = STATE(1397), - [sym_debugger_statement] = STATE(1397), - [sym_return_statement] = STATE(1397), - [sym_throw_statement] = STATE(1397), - [sym_empty_statement] = STATE(1397), - [sym_labeled_statement] = STATE(1397), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2668), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1382), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1382), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1382), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6712), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1443), + [sym_declaration] = STATE(1443), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1443), + [sym_statement] = STATE(1437), + [sym_expression_statement] = STATE(1443), + [sym_variable_declaration] = STATE(1444), + [sym_lexical_declaration] = STATE(1444), + [sym_statement_block] = STATE(1443), + [sym_if_statement] = STATE(1443), + [sym_switch_statement] = STATE(1443), + [sym_for_statement] = STATE(1443), + [sym_for_in_statement] = STATE(1443), + [sym_while_statement] = STATE(1443), + [sym_do_statement] = STATE(1443), + [sym_try_statement] = STATE(1443), + [sym_with_statement] = STATE(1443), + [sym_break_statement] = STATE(1443), + [sym_continue_statement] = STATE(1443), + [sym_debugger_statement] = STATE(1443), + [sym_return_statement] = STATE(1443), + [sym_throw_statement] = STATE(1443), + [sym_empty_statement] = STATE(1443), + [sym_labeled_statement] = STATE(1443), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1444), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1444), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1444), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6773), + [sym_string] = STATE(2940), [sym_comment] = STATE(74), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1382), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1382), - [sym_abstract_class_declaration] = STATE(1382), - [sym_module] = STATE(1382), - [sym_internal_module] = STATE(345), - [sym_import_alias] = STATE(1382), - [sym_interface_declaration] = STATE(1382), - [sym_enum_declaration] = STATE(1382), - [sym_type_alias_declaration] = STATE(1382), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4953), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_type] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(347), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(349), - [anon_sym_with] = ACTIONS(351), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_const] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(359), - [anon_sym_switch] = ACTIONS(361), - [anon_sym_for] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(365), - [anon_sym_do] = ACTIONS(367), - [anon_sym_try] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_debugger] = ACTIONS(375), - [anon_sym_return] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(385), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(389), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(391), - [anon_sym_readonly] = ACTIONS(391), - [anon_sym_get] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_declare] = ACTIONS(393), - [anon_sym_public] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_override] = ACTIONS(391), - [anon_sym_module] = ACTIONS(395), - [anon_sym_any] = ACTIONS(391), - [anon_sym_number] = ACTIONS(391), - [anon_sym_boolean] = ACTIONS(391), - [anon_sym_string] = ACTIONS(391), - [anon_sym_symbol] = ACTIONS(391), - [anon_sym_object] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), - [sym_html_comment] = ACTIONS(5), - }, - [75] = { - [sym_export_statement] = STATE(1153), - [sym_declaration] = STATE(1154), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1155), - [sym_expression_statement] = STATE(1156), - [sym_variable_declaration] = STATE(1105), - [sym_lexical_declaration] = STATE(1105), - [sym_statement_block] = STATE(1158), - [sym_if_statement] = STATE(1160), - [sym_switch_statement] = STATE(1162), - [sym_for_statement] = STATE(1163), - [sym_for_in_statement] = STATE(1164), - [sym_while_statement] = STATE(1165), - [sym_do_statement] = STATE(1166), - [sym_try_statement] = STATE(1167), - [sym_with_statement] = STATE(1169), - [sym_break_statement] = STATE(1170), - [sym_continue_statement] = STATE(1171), - [sym_debugger_statement] = STATE(1172), - [sym_return_statement] = STATE(1173), - [sym_throw_statement] = STATE(1174), - [sym_empty_statement] = STATE(1178), - [sym_labeled_statement] = STATE(1181), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2661), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1105), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1105), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1105), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6537), - [sym_string] = STATE(3113), - [sym_comment] = STATE(75), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1105), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1105), - [sym_abstract_class_declaration] = STATE(1105), - [sym_module] = STATE(1105), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1105), - [sym_interface_declaration] = STATE(1105), - [sym_enum_declaration] = STATE(1105), - [sym_type_alias_declaration] = STATE(1105), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4985), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1444), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1444), + [sym_abstract_class_declaration] = STATE(1444), + [sym_module] = STATE(1444), + [sym_internal_module] = STATE(397), + [sym_import_alias] = STATE(1444), + [sym_interface_declaration] = STATE(1444), + [sym_enum_declaration] = STATE(1444), + [sym_type_alias_declaration] = STATE(1444), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4833), [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(766), [anon_sym_type] = ACTIONS(768), @@ -42391,122 +41877,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, + [75] = { + [sym_export_statement] = STATE(965), + [sym_declaration] = STATE(965), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(965), + [sym_statement] = STATE(967), + [sym_expression_statement] = STATE(965), + [sym_variable_declaration] = STATE(1100), + [sym_lexical_declaration] = STATE(1100), + [sym_statement_block] = STATE(965), + [sym_if_statement] = STATE(965), + [sym_switch_statement] = STATE(965), + [sym_for_statement] = STATE(965), + [sym_for_in_statement] = STATE(965), + [sym_while_statement] = STATE(965), + [sym_do_statement] = STATE(965), + [sym_try_statement] = STATE(965), + [sym_with_statement] = STATE(965), + [sym_break_statement] = STATE(965), + [sym_continue_statement] = STATE(965), + [sym_debugger_statement] = STATE(965), + [sym_return_statement] = STATE(965), + [sym_throw_statement] = STATE(965), + [sym_empty_statement] = STATE(965), + [sym_labeled_statement] = STATE(965), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1100), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1100), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1100), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6354), + [sym_string] = STATE(2940), + [sym_comment] = STATE(75), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1100), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1100), + [sym_abstract_class_declaration] = STATE(1100), + [sym_module] = STATE(1100), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1100), + [sym_interface_declaration] = STATE(1100), + [sym_enum_declaration] = STATE(1100), + [sym_type_alias_declaration] = STATE(1100), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4838), + [sym_identifier] = ACTIONS(828), + [anon_sym_export] = ACTIONS(830), + [anon_sym_type] = ACTIONS(832), + [anon_sym_namespace] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(836), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(838), + [anon_sym_with] = ACTIONS(840), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(844), + [anon_sym_const] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_for] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(856), + [anon_sym_try] = ACTIONS(858), + [anon_sym_break] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_debugger] = ACTIONS(864), + [anon_sym_return] = ACTIONS(866), + [anon_sym_throw] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(872), + [anon_sym_async] = ACTIONS(874), + [anon_sym_function] = ACTIONS(876), + [anon_sym_new] = ACTIONS(878), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(880), + [anon_sym_readonly] = ACTIONS(880), + [anon_sym_get] = ACTIONS(880), + [anon_sym_set] = ACTIONS(880), + [anon_sym_declare] = ACTIONS(882), + [anon_sym_public] = ACTIONS(880), + [anon_sym_private] = ACTIONS(880), + [anon_sym_protected] = ACTIONS(880), + [anon_sym_override] = ACTIONS(880), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(880), + [anon_sym_number] = ACTIONS(880), + [anon_sym_boolean] = ACTIONS(880), + [anon_sym_string] = ACTIONS(880), + [anon_sym_symbol] = ACTIONS(880), + [anon_sym_object] = ACTIONS(880), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, [76] = { - [sym_export_statement] = STATE(1582), - [sym_declaration] = STATE(1582), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1582), - [sym_expression_statement] = STATE(1582), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1582), - [sym_if_statement] = STATE(1582), - [sym_switch_statement] = STATE(1582), - [sym_for_statement] = STATE(1582), - [sym_for_in_statement] = STATE(1582), - [sym_while_statement] = STATE(1582), - [sym_do_statement] = STATE(1582), - [sym_try_statement] = STATE(1582), - [sym_with_statement] = STATE(1582), - [sym_break_statement] = STATE(1582), - [sym_continue_statement] = STATE(1582), - [sym_debugger_statement] = STATE(1582), - [sym_return_statement] = STATE(1582), - [sym_throw_statement] = STATE(1582), - [sym_empty_statement] = STATE(1582), - [sym_labeled_statement] = STATE(1582), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1393), + [sym_declaration] = STATE(1393), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1393), + [sym_statement] = STATE(1341), + [sym_expression_statement] = STATE(1393), + [sym_variable_declaration] = STATE(1327), + [sym_lexical_declaration] = STATE(1327), + [sym_statement_block] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_switch_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_for_in_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_do_statement] = STATE(1393), + [sym_try_statement] = STATE(1393), + [sym_with_statement] = STATE(1393), + [sym_break_statement] = STATE(1393), + [sym_continue_statement] = STATE(1393), + [sym_debugger_statement] = STATE(1393), + [sym_return_statement] = STATE(1393), + [sym_throw_statement] = STATE(1393), + [sym_empty_statement] = STATE(1393), + [sym_labeled_statement] = STATE(1393), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1327), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1327), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1327), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6752), + [sym_string] = STATE(2940), [sym_comment] = STATE(76), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4771), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1327), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1327), + [sym_abstract_class_declaration] = STATE(1327), + [sym_module] = STATE(1327), + [sym_internal_module] = STATE(413), + [sym_import_alias] = STATE(1327), + [sym_interface_declaration] = STATE(1327), + [sym_enum_declaration] = STATE(1327), + [sym_type_alias_declaration] = STATE(1327), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4841), + [sym_identifier] = ACTIONS(337), + [anon_sym_export] = ACTIONS(339), + [anon_sym_type] = ACTIONS(343), + [anon_sym_namespace] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), + [anon_sym_import] = ACTIONS(349), + [anon_sym_with] = ACTIONS(351), + [anon_sym_var] = ACTIONS(353), + [anon_sym_let] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_for] = ACTIONS(363), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_while] = ACTIONS(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(381), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(383), + [anon_sym_async] = ACTIONS(385), + [anon_sym_function] = ACTIONS(387), + [anon_sym_new] = ACTIONS(389), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -42528,143 +42174,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(391), + [anon_sym_readonly] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(393), + [anon_sym_public] = ACTIONS(391), + [anon_sym_private] = ACTIONS(391), + [anon_sym_protected] = ACTIONS(391), + [anon_sym_override] = ACTIONS(391), + [anon_sym_module] = ACTIONS(395), + [anon_sym_any] = ACTIONS(391), + [anon_sym_number] = ACTIONS(391), + [anon_sym_boolean] = ACTIONS(391), + [anon_sym_string] = ACTIONS(391), + [anon_sym_symbol] = ACTIONS(391), + [anon_sym_object] = ACTIONS(391), + [anon_sym_abstract] = ACTIONS(397), + [anon_sym_interface] = ACTIONS(399), + [anon_sym_enum] = ACTIONS(401), [sym_html_comment] = ACTIONS(5), }, [77] = { - [sym_export_statement] = STATE(1177), - [sym_declaration] = STATE(1177), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1177), - [sym_expression_statement] = STATE(1177), - [sym_variable_declaration] = STATE(1105), - [sym_lexical_declaration] = STATE(1105), - [sym_statement_block] = STATE(1177), - [sym_if_statement] = STATE(1177), - [sym_switch_statement] = STATE(1177), - [sym_for_statement] = STATE(1177), - [sym_for_in_statement] = STATE(1177), - [sym_while_statement] = STATE(1177), - [sym_do_statement] = STATE(1177), - [sym_try_statement] = STATE(1177), - [sym_with_statement] = STATE(1177), - [sym_break_statement] = STATE(1177), - [sym_continue_statement] = STATE(1177), - [sym_debugger_statement] = STATE(1177), - [sym_return_statement] = STATE(1177), - [sym_throw_statement] = STATE(1177), - [sym_empty_statement] = STATE(1177), - [sym_labeled_statement] = STATE(1177), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2661), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1105), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1105), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1105), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6537), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(6355), + [sym_declaration] = STATE(6355), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(6355), + [sym_statement] = STATE(6902), + [sym_expression_statement] = STATE(6355), + [sym_variable_declaration] = STATE(6360), + [sym_lexical_declaration] = STATE(6360), + [sym_statement_block] = STATE(6355), + [sym_if_statement] = STATE(6355), + [sym_switch_statement] = STATE(6355), + [sym_for_statement] = STATE(6355), + [sym_for_in_statement] = STATE(6355), + [sym_while_statement] = STATE(6355), + [sym_do_statement] = STATE(6355), + [sym_try_statement] = STATE(6355), + [sym_with_statement] = STATE(6355), + [sym_break_statement] = STATE(6355), + [sym_continue_statement] = STATE(6355), + [sym_debugger_statement] = STATE(6355), + [sym_return_statement] = STATE(6355), + [sym_throw_statement] = STATE(6355), + [sym_empty_statement] = STATE(6355), + [sym_labeled_statement] = STATE(6355), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(6360), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(6360), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(6360), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6737), + [sym_string] = STATE(2940), [sym_comment] = STATE(77), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1105), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1105), - [sym_abstract_class_declaration] = STATE(1105), - [sym_module] = STATE(1105), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1105), - [sym_interface_declaration] = STATE(1105), - [sym_enum_declaration] = STATE(1105), - [sym_type_alias_declaration] = STATE(1105), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4985), - [sym_identifier] = ACTIONS(764), - [anon_sym_export] = ACTIONS(766), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(6360), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(6360), + [sym_abstract_class_declaration] = STATE(6360), + [sym_module] = STATE(6360), + [sym_internal_module] = STATE(3162), + [sym_import_alias] = STATE(6360), + [sym_interface_declaration] = STATE(6360), + [sym_enum_declaration] = STATE(6360), + [sym_type_alias_declaration] = STATE(6360), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4795), + [sym_identifier] = ACTIONS(892), + [anon_sym_export] = ACTIONS(894), + [anon_sym_type] = ACTIONS(896), + [anon_sym_namespace] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(774), - [anon_sym_with] = ACTIONS(776), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(780), - [anon_sym_const] = ACTIONS(782), + [anon_sym_import] = ACTIONS(902), + [anon_sym_with] = ACTIONS(904), + [anon_sym_var] = ACTIONS(906), + [anon_sym_let] = ACTIONS(908), + [anon_sym_const] = ACTIONS(910), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), + [anon_sym_if] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_for] = ACTIONS(916), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(790), - [anon_sym_do] = ACTIONS(792), - [anon_sym_try] = ACTIONS(794), - [anon_sym_break] = ACTIONS(796), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_debugger] = ACTIONS(800), - [anon_sym_return] = ACTIONS(802), - [anon_sym_throw] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_while] = ACTIONS(918), + [anon_sym_do] = ACTIONS(920), + [anon_sym_try] = ACTIONS(922), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_debugger] = ACTIONS(928), + [anon_sym_return] = ACTIONS(930), + [anon_sym_throw] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(934), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(810), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(936), + [anon_sym_async] = ACTIONS(938), + [anon_sym_function] = ACTIONS(940), + [anon_sym_new] = ACTIONS(942), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -42686,143 +42333,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(816), - [anon_sym_readonly] = ACTIONS(816), - [anon_sym_get] = ACTIONS(816), - [anon_sym_set] = ACTIONS(816), - [anon_sym_declare] = ACTIONS(818), - [anon_sym_public] = ACTIONS(816), - [anon_sym_private] = ACTIONS(816), - [anon_sym_protected] = ACTIONS(816), - [anon_sym_override] = ACTIONS(816), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(816), - [anon_sym_number] = ACTIONS(816), - [anon_sym_boolean] = ACTIONS(816), - [anon_sym_string] = ACTIONS(816), - [anon_sym_symbol] = ACTIONS(816), - [anon_sym_object] = ACTIONS(816), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(946), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + [anon_sym_object] = ACTIONS(944), + [anon_sym_abstract] = ACTIONS(950), + [anon_sym_interface] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, [78] = { - [sym_export_statement] = STATE(1168), - [sym_declaration] = STATE(1168), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1168), - [sym_expression_statement] = STATE(1168), - [sym_variable_declaration] = STATE(1220), - [sym_lexical_declaration] = STATE(1220), - [sym_statement_block] = STATE(1168), - [sym_if_statement] = STATE(1168), - [sym_switch_statement] = STATE(1168), - [sym_for_statement] = STATE(1168), - [sym_for_in_statement] = STATE(1168), - [sym_while_statement] = STATE(1168), - [sym_do_statement] = STATE(1168), - [sym_try_statement] = STATE(1168), - [sym_with_statement] = STATE(1168), - [sym_break_statement] = STATE(1168), - [sym_continue_statement] = STATE(1168), - [sym_debugger_statement] = STATE(1168), - [sym_return_statement] = STATE(1168), - [sym_throw_statement] = STATE(1168), - [sym_empty_statement] = STATE(1168), - [sym_labeled_statement] = STATE(1168), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2695), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1220), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1220), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1220), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6631), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1515), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(78), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1220), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1220), - [sym_abstract_class_declaration] = STATE(1220), - [sym_module] = STATE(1220), - [sym_internal_module] = STATE(415), - [sym_import_alias] = STATE(1220), - [sym_interface_declaration] = STATE(1220), - [sym_enum_declaration] = STATE(1220), - [sym_type_alias_declaration] = STATE(1220), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4863), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -42844,108 +42492,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [79] = { - [sym_export_statement] = STATE(1312), - [sym_declaration] = STATE(1312), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1312), - [sym_expression_statement] = STATE(1312), - [sym_variable_declaration] = STATE(1220), - [sym_lexical_declaration] = STATE(1220), - [sym_statement_block] = STATE(1312), - [sym_if_statement] = STATE(1312), - [sym_switch_statement] = STATE(1312), - [sym_for_statement] = STATE(1312), - [sym_for_in_statement] = STATE(1312), - [sym_while_statement] = STATE(1312), - [sym_do_statement] = STATE(1312), - [sym_try_statement] = STATE(1312), - [sym_with_statement] = STATE(1312), - [sym_break_statement] = STATE(1312), - [sym_continue_statement] = STATE(1312), - [sym_debugger_statement] = STATE(1312), - [sym_return_statement] = STATE(1312), - [sym_throw_statement] = STATE(1312), - [sym_empty_statement] = STATE(1312), - [sym_labeled_statement] = STATE(1312), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2695), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1220), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1220), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1220), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6631), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(965), + [sym_declaration] = STATE(965), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(965), + [sym_statement] = STATE(1047), + [sym_expression_statement] = STATE(965), + [sym_variable_declaration] = STATE(1100), + [sym_lexical_declaration] = STATE(1100), + [sym_statement_block] = STATE(965), + [sym_if_statement] = STATE(965), + [sym_switch_statement] = STATE(965), + [sym_for_statement] = STATE(965), + [sym_for_in_statement] = STATE(965), + [sym_while_statement] = STATE(965), + [sym_do_statement] = STATE(965), + [sym_try_statement] = STATE(965), + [sym_with_statement] = STATE(965), + [sym_break_statement] = STATE(965), + [sym_continue_statement] = STATE(965), + [sym_debugger_statement] = STATE(965), + [sym_return_statement] = STATE(965), + [sym_throw_statement] = STATE(965), + [sym_empty_statement] = STATE(965), + [sym_labeled_statement] = STATE(965), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1100), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1100), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1100), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6354), + [sym_string] = STATE(2940), [sym_comment] = STATE(79), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1220), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1220), - [sym_abstract_class_declaration] = STATE(1220), - [sym_module] = STATE(1220), - [sym_internal_module] = STATE(415), - [sym_import_alias] = STATE(1220), - [sym_interface_declaration] = STATE(1220), - [sym_enum_declaration] = STATE(1220), - [sym_type_alias_declaration] = STATE(1220), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4863), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1100), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1100), + [sym_abstract_class_declaration] = STATE(1100), + [sym_module] = STATE(1100), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1100), + [sym_interface_declaration] = STATE(1100), + [sym_enum_declaration] = STATE(1100), + [sym_type_alias_declaration] = STATE(1100), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4838), [sym_identifier] = ACTIONS(828), [anon_sym_export] = ACTIONS(830), [anon_sym_type] = ACTIONS(832), @@ -43024,86 +42673,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [80] = { - [sym_export_statement] = STATE(1142), - [sym_declaration] = STATE(1142), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1142), - [sym_expression_statement] = STATE(1142), - [sym_variable_declaration] = STATE(1105), - [sym_lexical_declaration] = STATE(1105), - [sym_statement_block] = STATE(1142), - [sym_if_statement] = STATE(1142), - [sym_switch_statement] = STATE(1142), - [sym_for_statement] = STATE(1142), - [sym_for_in_statement] = STATE(1142), - [sym_while_statement] = STATE(1142), - [sym_do_statement] = STATE(1142), - [sym_try_statement] = STATE(1142), - [sym_with_statement] = STATE(1142), - [sym_break_statement] = STATE(1142), - [sym_continue_statement] = STATE(1142), - [sym_debugger_statement] = STATE(1142), - [sym_return_statement] = STATE(1142), - [sym_throw_statement] = STATE(1142), - [sym_empty_statement] = STATE(1142), - [sym_labeled_statement] = STATE(1142), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2661), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1105), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1105), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1105), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6537), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1443), + [sym_declaration] = STATE(1443), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1443), + [sym_statement] = STATE(1043), + [sym_expression_statement] = STATE(1443), + [sym_variable_declaration] = STATE(1444), + [sym_lexical_declaration] = STATE(1444), + [sym_statement_block] = STATE(1443), + [sym_if_statement] = STATE(1443), + [sym_switch_statement] = STATE(1443), + [sym_for_statement] = STATE(1443), + [sym_for_in_statement] = STATE(1443), + [sym_while_statement] = STATE(1443), + [sym_do_statement] = STATE(1443), + [sym_try_statement] = STATE(1443), + [sym_with_statement] = STATE(1443), + [sym_break_statement] = STATE(1443), + [sym_continue_statement] = STATE(1443), + [sym_debugger_statement] = STATE(1443), + [sym_return_statement] = STATE(1443), + [sym_throw_statement] = STATE(1443), + [sym_empty_statement] = STATE(1443), + [sym_labeled_statement] = STATE(1443), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1444), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1444), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1444), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6773), + [sym_string] = STATE(2940), [sym_comment] = STATE(80), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1105), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1105), - [sym_abstract_class_declaration] = STATE(1105), - [sym_module] = STATE(1105), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1105), - [sym_interface_declaration] = STATE(1105), - [sym_enum_declaration] = STATE(1105), - [sym_type_alias_declaration] = STATE(1105), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4985), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1444), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1444), + [sym_abstract_class_declaration] = STATE(1444), + [sym_module] = STATE(1444), + [sym_internal_module] = STATE(397), + [sym_import_alias] = STATE(1444), + [sym_interface_declaration] = STATE(1444), + [sym_enum_declaration] = STATE(1444), + [sym_type_alias_declaration] = STATE(1444), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4833), [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(766), [anon_sym_type] = ACTIONS(768), @@ -43182,86 +42832,246 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [81] = { - [sym_export_statement] = STATE(1413), - [sym_declaration] = STATE(1413), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1413), - [sym_expression_statement] = STATE(1413), - [sym_variable_declaration] = STATE(1382), - [sym_lexical_declaration] = STATE(1382), - [sym_statement_block] = STATE(1413), - [sym_if_statement] = STATE(1413), - [sym_switch_statement] = STATE(1413), - [sym_for_statement] = STATE(1413), - [sym_for_in_statement] = STATE(1413), - [sym_while_statement] = STATE(1413), - [sym_do_statement] = STATE(1413), - [sym_try_statement] = STATE(1413), - [sym_with_statement] = STATE(1413), - [sym_break_statement] = STATE(1413), - [sym_continue_statement] = STATE(1413), - [sym_debugger_statement] = STATE(1413), - [sym_return_statement] = STATE(1413), - [sym_throw_statement] = STATE(1413), - [sym_empty_statement] = STATE(1413), - [sym_labeled_statement] = STATE(1413), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2668), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1382), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1382), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1382), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6712), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(965), + [sym_declaration] = STATE(965), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(965), + [sym_statement] = STATE(975), + [sym_expression_statement] = STATE(965), + [sym_variable_declaration] = STATE(1100), + [sym_lexical_declaration] = STATE(1100), + [sym_statement_block] = STATE(965), + [sym_if_statement] = STATE(965), + [sym_switch_statement] = STATE(965), + [sym_for_statement] = STATE(965), + [sym_for_in_statement] = STATE(965), + [sym_while_statement] = STATE(965), + [sym_do_statement] = STATE(965), + [sym_try_statement] = STATE(965), + [sym_with_statement] = STATE(965), + [sym_break_statement] = STATE(965), + [sym_continue_statement] = STATE(965), + [sym_debugger_statement] = STATE(965), + [sym_return_statement] = STATE(965), + [sym_throw_statement] = STATE(965), + [sym_empty_statement] = STATE(965), + [sym_labeled_statement] = STATE(965), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1100), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1100), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1100), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6354), + [sym_string] = STATE(2940), [sym_comment] = STATE(81), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1382), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1382), - [sym_abstract_class_declaration] = STATE(1382), - [sym_module] = STATE(1382), - [sym_internal_module] = STATE(345), - [sym_import_alias] = STATE(1382), - [sym_interface_declaration] = STATE(1382), - [sym_enum_declaration] = STATE(1382), - [sym_type_alias_declaration] = STATE(1382), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4953), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1100), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1100), + [sym_abstract_class_declaration] = STATE(1100), + [sym_module] = STATE(1100), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1100), + [sym_interface_declaration] = STATE(1100), + [sym_enum_declaration] = STATE(1100), + [sym_type_alias_declaration] = STATE(1100), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4838), + [sym_identifier] = ACTIONS(828), + [anon_sym_export] = ACTIONS(830), + [anon_sym_type] = ACTIONS(832), + [anon_sym_namespace] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(836), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(838), + [anon_sym_with] = ACTIONS(840), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(844), + [anon_sym_const] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_for] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(856), + [anon_sym_try] = ACTIONS(858), + [anon_sym_break] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_debugger] = ACTIONS(864), + [anon_sym_return] = ACTIONS(866), + [anon_sym_throw] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(872), + [anon_sym_async] = ACTIONS(874), + [anon_sym_function] = ACTIONS(876), + [anon_sym_new] = ACTIONS(878), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(880), + [anon_sym_readonly] = ACTIONS(880), + [anon_sym_get] = ACTIONS(880), + [anon_sym_set] = ACTIONS(880), + [anon_sym_declare] = ACTIONS(882), + [anon_sym_public] = ACTIONS(880), + [anon_sym_private] = ACTIONS(880), + [anon_sym_protected] = ACTIONS(880), + [anon_sym_override] = ACTIONS(880), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(880), + [anon_sym_number] = ACTIONS(880), + [anon_sym_boolean] = ACTIONS(880), + [anon_sym_string] = ACTIONS(880), + [anon_sym_symbol] = ACTIONS(880), + [anon_sym_object] = ACTIONS(880), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [82] = { + [sym_export_statement] = STATE(1393), + [sym_declaration] = STATE(1393), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1393), + [sym_statement] = STATE(1267), + [sym_expression_statement] = STATE(1393), + [sym_variable_declaration] = STATE(1327), + [sym_lexical_declaration] = STATE(1327), + [sym_statement_block] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_switch_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_for_in_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_do_statement] = STATE(1393), + [sym_try_statement] = STATE(1393), + [sym_with_statement] = STATE(1393), + [sym_break_statement] = STATE(1393), + [sym_continue_statement] = STATE(1393), + [sym_debugger_statement] = STATE(1393), + [sym_return_statement] = STATE(1393), + [sym_throw_statement] = STATE(1393), + [sym_empty_statement] = STATE(1393), + [sym_labeled_statement] = STATE(1393), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1327), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1327), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1327), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6752), + [sym_string] = STATE(2940), + [sym_comment] = STATE(82), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1327), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1327), + [sym_abstract_class_declaration] = STATE(1327), + [sym_module] = STATE(1327), + [sym_internal_module] = STATE(413), + [sym_import_alias] = STATE(1327), + [sym_interface_declaration] = STATE(1327), + [sym_enum_declaration] = STATE(1327), + [sym_type_alias_declaration] = STATE(1327), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4841), [sym_identifier] = ACTIONS(337), [anon_sym_export] = ACTIONS(339), [anon_sym_type] = ACTIONS(343), @@ -43339,122 +43149,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(401), [sym_html_comment] = ACTIONS(5), }, - [82] = { - [sym_export_statement] = STATE(1118), - [sym_declaration] = STATE(1118), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1118), - [sym_expression_statement] = STATE(1118), - [sym_variable_declaration] = STATE(1105), - [sym_lexical_declaration] = STATE(1105), - [sym_statement_block] = STATE(1118), - [sym_if_statement] = STATE(1118), - [sym_switch_statement] = STATE(1118), - [sym_for_statement] = STATE(1118), - [sym_for_in_statement] = STATE(1118), - [sym_while_statement] = STATE(1118), - [sym_do_statement] = STATE(1118), - [sym_try_statement] = STATE(1118), - [sym_with_statement] = STATE(1118), - [sym_break_statement] = STATE(1118), - [sym_continue_statement] = STATE(1118), - [sym_debugger_statement] = STATE(1118), - [sym_return_statement] = STATE(1118), - [sym_throw_statement] = STATE(1118), - [sym_empty_statement] = STATE(1118), - [sym_labeled_statement] = STATE(1118), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2661), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1105), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1105), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1105), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6537), - [sym_string] = STATE(3113), - [sym_comment] = STATE(82), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1105), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1105), - [sym_abstract_class_declaration] = STATE(1105), - [sym_module] = STATE(1105), + [83] = { + [sym_export_statement] = STATE(965), + [sym_declaration] = STATE(965), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(965), + [sym_statement] = STATE(1003), + [sym_expression_statement] = STATE(965), + [sym_variable_declaration] = STATE(1100), + [sym_lexical_declaration] = STATE(1100), + [sym_statement_block] = STATE(965), + [sym_if_statement] = STATE(965), + [sym_switch_statement] = STATE(965), + [sym_for_statement] = STATE(965), + [sym_for_in_statement] = STATE(965), + [sym_while_statement] = STATE(965), + [sym_do_statement] = STATE(965), + [sym_try_statement] = STATE(965), + [sym_with_statement] = STATE(965), + [sym_break_statement] = STATE(965), + [sym_continue_statement] = STATE(965), + [sym_debugger_statement] = STATE(965), + [sym_return_statement] = STATE(965), + [sym_throw_statement] = STATE(965), + [sym_empty_statement] = STATE(965), + [sym_labeled_statement] = STATE(965), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1100), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1100), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1100), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6354), + [sym_string] = STATE(2940), + [sym_comment] = STATE(83), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1100), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1100), + [sym_abstract_class_declaration] = STATE(1100), + [sym_module] = STATE(1100), [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1105), - [sym_interface_declaration] = STATE(1105), - [sym_enum_declaration] = STATE(1105), - [sym_type_alias_declaration] = STATE(1105), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4985), - [sym_identifier] = ACTIONS(764), - [anon_sym_export] = ACTIONS(766), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), + [sym_import_alias] = STATE(1100), + [sym_interface_declaration] = STATE(1100), + [sym_enum_declaration] = STATE(1100), + [sym_type_alias_declaration] = STATE(1100), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4838), + [sym_identifier] = ACTIONS(828), + [anon_sym_export] = ACTIONS(830), + [anon_sym_type] = ACTIONS(832), + [anon_sym_namespace] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(836), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(774), - [anon_sym_with] = ACTIONS(776), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(780), - [anon_sym_const] = ACTIONS(782), + [anon_sym_import] = ACTIONS(838), + [anon_sym_with] = ACTIONS(840), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(844), + [anon_sym_const] = ACTIONS(846), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_for] = ACTIONS(852), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(790), - [anon_sym_do] = ACTIONS(792), - [anon_sym_try] = ACTIONS(794), - [anon_sym_break] = ACTIONS(796), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_debugger] = ACTIONS(800), - [anon_sym_return] = ACTIONS(802), - [anon_sym_throw] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(856), + [anon_sym_try] = ACTIONS(858), + [anon_sym_break] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_debugger] = ACTIONS(864), + [anon_sym_return] = ACTIONS(866), + [anon_sym_throw] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(870), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(810), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(872), + [anon_sym_async] = ACTIONS(874), + [anon_sym_function] = ACTIONS(876), + [anon_sym_new] = ACTIONS(878), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43476,108 +43287,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(816), - [anon_sym_readonly] = ACTIONS(816), - [anon_sym_get] = ACTIONS(816), - [anon_sym_set] = ACTIONS(816), - [anon_sym_declare] = ACTIONS(818), - [anon_sym_public] = ACTIONS(816), - [anon_sym_private] = ACTIONS(816), - [anon_sym_protected] = ACTIONS(816), - [anon_sym_override] = ACTIONS(816), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(816), - [anon_sym_number] = ACTIONS(816), - [anon_sym_boolean] = ACTIONS(816), - [anon_sym_string] = ACTIONS(816), - [anon_sym_symbol] = ACTIONS(816), - [anon_sym_object] = ACTIONS(816), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(880), + [anon_sym_readonly] = ACTIONS(880), + [anon_sym_get] = ACTIONS(880), + [anon_sym_set] = ACTIONS(880), + [anon_sym_declare] = ACTIONS(882), + [anon_sym_public] = ACTIONS(880), + [anon_sym_private] = ACTIONS(880), + [anon_sym_protected] = ACTIONS(880), + [anon_sym_override] = ACTIONS(880), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(880), + [anon_sym_number] = ACTIONS(880), + [anon_sym_boolean] = ACTIONS(880), + [anon_sym_string] = ACTIONS(880), + [anon_sym_symbol] = ACTIONS(880), + [anon_sym_object] = ACTIONS(880), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, - [83] = { - [sym_export_statement] = STATE(6997), - [sym_declaration] = STATE(6997), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(6997), - [sym_expression_statement] = STATE(6997), - [sym_variable_declaration] = STATE(6895), - [sym_lexical_declaration] = STATE(6895), - [sym_statement_block] = STATE(6997), - [sym_if_statement] = STATE(6997), - [sym_switch_statement] = STATE(6997), - [sym_for_statement] = STATE(6997), - [sym_for_in_statement] = STATE(6997), - [sym_while_statement] = STATE(6997), - [sym_do_statement] = STATE(6997), - [sym_try_statement] = STATE(6997), - [sym_with_statement] = STATE(6997), - [sym_break_statement] = STATE(6997), - [sym_continue_statement] = STATE(6997), - [sym_debugger_statement] = STATE(6997), - [sym_return_statement] = STATE(6997), - [sym_throw_statement] = STATE(6997), - [sym_empty_statement] = STATE(6997), - [sym_labeled_statement] = STATE(6997), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(6895), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(6895), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(6895), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6529), - [sym_string] = STATE(3113), - [sym_comment] = STATE(83), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(6895), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(6895), - [sym_abstract_class_declaration] = STATE(6895), - [sym_module] = STATE(6895), - [sym_internal_module] = STATE(3105), - [sym_import_alias] = STATE(6895), - [sym_interface_declaration] = STATE(6895), - [sym_enum_declaration] = STATE(6895), - [sym_type_alias_declaration] = STATE(6895), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4783), + [84] = { + [sym_export_statement] = STATE(6355), + [sym_declaration] = STATE(6355), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(6355), + [sym_statement] = STATE(6651), + [sym_expression_statement] = STATE(6355), + [sym_variable_declaration] = STATE(6360), + [sym_lexical_declaration] = STATE(6360), + [sym_statement_block] = STATE(6355), + [sym_if_statement] = STATE(6355), + [sym_switch_statement] = STATE(6355), + [sym_for_statement] = STATE(6355), + [sym_for_in_statement] = STATE(6355), + [sym_while_statement] = STATE(6355), + [sym_do_statement] = STATE(6355), + [sym_try_statement] = STATE(6355), + [sym_with_statement] = STATE(6355), + [sym_break_statement] = STATE(6355), + [sym_continue_statement] = STATE(6355), + [sym_debugger_statement] = STATE(6355), + [sym_return_statement] = STATE(6355), + [sym_throw_statement] = STATE(6355), + [sym_empty_statement] = STATE(6355), + [sym_labeled_statement] = STATE(6355), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(6360), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(6360), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(6360), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6737), + [sym_string] = STATE(2940), + [sym_comment] = STATE(84), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(6360), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(6360), + [sym_abstract_class_declaration] = STATE(6360), + [sym_module] = STATE(6360), + [sym_internal_module] = STATE(3162), + [sym_import_alias] = STATE(6360), + [sym_interface_declaration] = STATE(6360), + [sym_enum_declaration] = STATE(6360), + [sym_type_alias_declaration] = STATE(6360), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4795), [sym_identifier] = ACTIONS(892), [anon_sym_export] = ACTIONS(894), [anon_sym_type] = ACTIONS(896), @@ -43655,561 +43467,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, - [84] = { - [sym_export_statement] = STATE(1465), - [sym_declaration] = STATE(1465), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1465), - [sym_expression_statement] = STATE(1465), - [sym_variable_declaration] = STATE(1220), - [sym_lexical_declaration] = STATE(1220), - [sym_statement_block] = STATE(1465), - [sym_if_statement] = STATE(1465), - [sym_switch_statement] = STATE(1465), - [sym_for_statement] = STATE(1465), - [sym_for_in_statement] = STATE(1465), - [sym_while_statement] = STATE(1465), - [sym_do_statement] = STATE(1465), - [sym_try_statement] = STATE(1465), - [sym_with_statement] = STATE(1465), - [sym_break_statement] = STATE(1465), - [sym_continue_statement] = STATE(1465), - [sym_debugger_statement] = STATE(1465), - [sym_return_statement] = STATE(1465), - [sym_throw_statement] = STATE(1465), - [sym_empty_statement] = STATE(1465), - [sym_labeled_statement] = STATE(1465), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2695), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1220), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1220), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1220), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6631), - [sym_string] = STATE(3113), - [sym_comment] = STATE(84), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1220), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1220), - [sym_abstract_class_declaration] = STATE(1220), - [sym_module] = STATE(1220), - [sym_internal_module] = STATE(415), - [sym_import_alias] = STATE(1220), - [sym_interface_declaration] = STATE(1220), - [sym_enum_declaration] = STATE(1220), - [sym_type_alias_declaration] = STATE(1220), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4863), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), - [sym_html_comment] = ACTIONS(5), - }, [85] = { - [sym_export_statement] = STATE(1263), - [sym_declaration] = STATE(1267), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1268), - [sym_expression_statement] = STATE(1278), - [sym_variable_declaration] = STATE(1220), - [sym_lexical_declaration] = STATE(1220), - [sym_statement_block] = STATE(1287), - [sym_if_statement] = STATE(1290), - [sym_switch_statement] = STATE(1291), - [sym_for_statement] = STATE(1292), - [sym_for_in_statement] = STATE(1293), - [sym_while_statement] = STATE(1294), - [sym_do_statement] = STATE(1295), - [sym_try_statement] = STATE(1296), - [sym_with_statement] = STATE(1297), - [sym_break_statement] = STATE(1299), - [sym_continue_statement] = STATE(1197), - [sym_debugger_statement] = STATE(1300), - [sym_return_statement] = STATE(1303), - [sym_throw_statement] = STATE(1304), - [sym_empty_statement] = STATE(1305), - [sym_labeled_statement] = STATE(1311), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2695), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1220), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1220), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1220), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6631), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1571), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(85), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1220), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1220), - [sym_abstract_class_declaration] = STATE(1220), - [sym_module] = STATE(1220), - [sym_internal_module] = STATE(415), - [sym_import_alias] = STATE(1220), - [sym_interface_declaration] = STATE(1220), - [sym_enum_declaration] = STATE(1220), - [sym_type_alias_declaration] = STATE(1220), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4863), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), - [sym_html_comment] = ACTIONS(5), - }, - [86] = { - [sym_export_statement] = STATE(1255), - [sym_declaration] = STATE(1255), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1255), - [sym_expression_statement] = STATE(1255), - [sym_variable_declaration] = STATE(1220), - [sym_lexical_declaration] = STATE(1220), - [sym_statement_block] = STATE(1255), - [sym_if_statement] = STATE(1255), - [sym_switch_statement] = STATE(1255), - [sym_for_statement] = STATE(1255), - [sym_for_in_statement] = STATE(1255), - [sym_while_statement] = STATE(1255), - [sym_do_statement] = STATE(1255), - [sym_try_statement] = STATE(1255), - [sym_with_statement] = STATE(1255), - [sym_break_statement] = STATE(1255), - [sym_continue_statement] = STATE(1255), - [sym_debugger_statement] = STATE(1255), - [sym_return_statement] = STATE(1255), - [sym_throw_statement] = STATE(1255), - [sym_empty_statement] = STATE(1255), - [sym_labeled_statement] = STATE(1255), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2695), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1220), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1220), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1220), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6631), - [sym_string] = STATE(3113), - [sym_comment] = STATE(86), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1220), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1220), - [sym_abstract_class_declaration] = STATE(1220), - [sym_module] = STATE(1220), - [sym_internal_module] = STATE(415), - [sym_import_alias] = STATE(1220), - [sym_interface_declaration] = STATE(1220), - [sym_enum_declaration] = STATE(1220), - [sym_type_alias_declaration] = STATE(1220), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4863), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), - [sym_html_comment] = ACTIONS(5), - }, - [87] = { - [sym_export_statement] = STATE(1610), - [sym_declaration] = STATE(1610), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1610), - [sym_expression_statement] = STATE(1610), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1610), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1610), - [sym_for_statement] = STATE(1610), - [sym_for_in_statement] = STATE(1610), - [sym_while_statement] = STATE(1610), - [sym_do_statement] = STATE(1610), - [sym_try_statement] = STATE(1610), - [sym_with_statement] = STATE(1610), - [sym_break_statement] = STATE(1610), - [sym_continue_statement] = STATE(1610), - [sym_debugger_statement] = STATE(1610), - [sym_return_statement] = STATE(1610), - [sym_throw_statement] = STATE(1610), - [sym_empty_statement] = STATE(1610), - [sym_labeled_statement] = STATE(1610), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), - [sym_comment] = STATE(87), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -44287,87 +43626,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [88] = { - [sym_export_statement] = STATE(913), - [sym_declaration] = STATE(913), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(913), - [sym_expression_statement] = STATE(913), - [sym_variable_declaration] = STATE(1105), - [sym_lexical_declaration] = STATE(1105), - [sym_statement_block] = STATE(913), - [sym_if_statement] = STATE(913), - [sym_switch_statement] = STATE(913), - [sym_for_statement] = STATE(913), - [sym_for_in_statement] = STATE(913), - [sym_while_statement] = STATE(913), - [sym_do_statement] = STATE(913), - [sym_try_statement] = STATE(913), - [sym_with_statement] = STATE(913), - [sym_break_statement] = STATE(913), - [sym_continue_statement] = STATE(913), - [sym_debugger_statement] = STATE(913), - [sym_return_statement] = STATE(913), - [sym_throw_statement] = STATE(913), - [sym_empty_statement] = STATE(913), - [sym_labeled_statement] = STATE(913), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2661), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1105), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1105), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1105), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6537), - [sym_string] = STATE(3113), - [sym_comment] = STATE(88), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1105), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1105), - [sym_abstract_class_declaration] = STATE(1105), - [sym_module] = STATE(1105), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1105), - [sym_interface_declaration] = STATE(1105), - [sym_enum_declaration] = STATE(1105), - [sym_type_alias_declaration] = STATE(1105), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4985), + [86] = { + [sym_export_statement] = STATE(6355), + [sym_declaration] = STATE(6355), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(6355), + [sym_statement] = STATE(6708), + [sym_expression_statement] = STATE(6355), + [sym_variable_declaration] = STATE(6360), + [sym_lexical_declaration] = STATE(6360), + [sym_statement_block] = STATE(6355), + [sym_if_statement] = STATE(6355), + [sym_switch_statement] = STATE(6355), + [sym_for_statement] = STATE(6355), + [sym_for_in_statement] = STATE(6355), + [sym_while_statement] = STATE(6355), + [sym_do_statement] = STATE(6355), + [sym_try_statement] = STATE(6355), + [sym_with_statement] = STATE(6355), + [sym_break_statement] = STATE(6355), + [sym_continue_statement] = STATE(6355), + [sym_debugger_statement] = STATE(6355), + [sym_return_statement] = STATE(6355), + [sym_throw_statement] = STATE(6355), + [sym_empty_statement] = STATE(6355), + [sym_labeled_statement] = STATE(6355), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(6360), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(6360), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(6360), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6737), + [sym_string] = STATE(2940), + [sym_comment] = STATE(86), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(6360), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(6360), + [sym_abstract_class_declaration] = STATE(6360), + [sym_module] = STATE(6360), + [sym_internal_module] = STATE(3162), + [sym_import_alias] = STATE(6360), + [sym_interface_declaration] = STATE(6360), + [sym_enum_declaration] = STATE(6360), + [sym_type_alias_declaration] = STATE(6360), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4795), + [sym_identifier] = ACTIONS(892), + [anon_sym_export] = ACTIONS(894), + [anon_sym_type] = ACTIONS(896), + [anon_sym_namespace] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(902), + [anon_sym_with] = ACTIONS(904), + [anon_sym_var] = ACTIONS(906), + [anon_sym_let] = ACTIONS(908), + [anon_sym_const] = ACTIONS(910), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_for] = ACTIONS(916), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(918), + [anon_sym_do] = ACTIONS(920), + [anon_sym_try] = ACTIONS(922), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_debugger] = ACTIONS(928), + [anon_sym_return] = ACTIONS(930), + [anon_sym_throw] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(936), + [anon_sym_async] = ACTIONS(938), + [anon_sym_function] = ACTIONS(940), + [anon_sym_new] = ACTIONS(942), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(946), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + [anon_sym_object] = ACTIONS(944), + [anon_sym_abstract] = ACTIONS(950), + [anon_sym_interface] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(954), + [sym_html_comment] = ACTIONS(5), + }, + [87] = { + [sym_export_statement] = STATE(1443), + [sym_declaration] = STATE(1443), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1443), + [sym_statement] = STATE(1016), + [sym_expression_statement] = STATE(1443), + [sym_variable_declaration] = STATE(1444), + [sym_lexical_declaration] = STATE(1444), + [sym_statement_block] = STATE(1443), + [sym_if_statement] = STATE(1443), + [sym_switch_statement] = STATE(1443), + [sym_for_statement] = STATE(1443), + [sym_for_in_statement] = STATE(1443), + [sym_while_statement] = STATE(1443), + [sym_do_statement] = STATE(1443), + [sym_try_statement] = STATE(1443), + [sym_with_statement] = STATE(1443), + [sym_break_statement] = STATE(1443), + [sym_continue_statement] = STATE(1443), + [sym_debugger_statement] = STATE(1443), + [sym_return_statement] = STATE(1443), + [sym_throw_statement] = STATE(1443), + [sym_empty_statement] = STATE(1443), + [sym_labeled_statement] = STATE(1443), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1444), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1444), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1444), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6773), + [sym_string] = STATE(2940), + [sym_comment] = STATE(87), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1444), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1444), + [sym_abstract_class_declaration] = STATE(1444), + [sym_module] = STATE(1444), + [sym_internal_module] = STATE(397), + [sym_import_alias] = STATE(1444), + [sym_interface_declaration] = STATE(1444), + [sym_enum_declaration] = STATE(1444), + [sym_type_alias_declaration] = STATE(1444), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4833), [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(766), [anon_sym_type] = ACTIONS(768), @@ -44445,87 +43944,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, - [89] = { - [sym_export_statement] = STATE(1550), - [sym_declaration] = STATE(1550), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1550), - [sym_expression_statement] = STATE(1550), - [sym_variable_declaration] = STATE(1382), - [sym_lexical_declaration] = STATE(1382), - [sym_statement_block] = STATE(1550), - [sym_if_statement] = STATE(1550), - [sym_switch_statement] = STATE(1550), - [sym_for_statement] = STATE(1550), - [sym_for_in_statement] = STATE(1550), - [sym_while_statement] = STATE(1550), - [sym_do_statement] = STATE(1550), - [sym_try_statement] = STATE(1550), - [sym_with_statement] = STATE(1550), - [sym_break_statement] = STATE(1550), - [sym_continue_statement] = STATE(1550), - [sym_debugger_statement] = STATE(1550), - [sym_return_statement] = STATE(1550), - [sym_throw_statement] = STATE(1550), - [sym_empty_statement] = STATE(1550), - [sym_labeled_statement] = STATE(1550), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2668), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1382), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1382), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1382), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6712), - [sym_string] = STATE(3113), - [sym_comment] = STATE(89), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1382), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1382), - [sym_abstract_class_declaration] = STATE(1382), - [sym_module] = STATE(1382), - [sym_internal_module] = STATE(345), - [sym_import_alias] = STATE(1382), - [sym_interface_declaration] = STATE(1382), - [sym_enum_declaration] = STATE(1382), - [sym_type_alias_declaration] = STATE(1382), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4953), + [88] = { + [sym_export_statement] = STATE(1393), + [sym_declaration] = STATE(1393), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1393), + [sym_statement] = STATE(1282), + [sym_expression_statement] = STATE(1393), + [sym_variable_declaration] = STATE(1327), + [sym_lexical_declaration] = STATE(1327), + [sym_statement_block] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_switch_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_for_in_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_do_statement] = STATE(1393), + [sym_try_statement] = STATE(1393), + [sym_with_statement] = STATE(1393), + [sym_break_statement] = STATE(1393), + [sym_continue_statement] = STATE(1393), + [sym_debugger_statement] = STATE(1393), + [sym_return_statement] = STATE(1393), + [sym_throw_statement] = STATE(1393), + [sym_empty_statement] = STATE(1393), + [sym_labeled_statement] = STATE(1393), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1327), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1327), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1327), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6752), + [sym_string] = STATE(2940), + [sym_comment] = STATE(88), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1327), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1327), + [sym_abstract_class_declaration] = STATE(1327), + [sym_module] = STATE(1327), + [sym_internal_module] = STATE(413), + [sym_import_alias] = STATE(1327), + [sym_interface_declaration] = STATE(1327), + [sym_enum_declaration] = STATE(1327), + [sym_type_alias_declaration] = STATE(1327), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4841), [sym_identifier] = ACTIONS(337), [anon_sym_export] = ACTIONS(339), [anon_sym_type] = ACTIONS(343), @@ -44603,87 +44103,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(401), [sym_html_comment] = ACTIONS(5), }, - [90] = { - [sym_export_statement] = STATE(6986), - [sym_declaration] = STATE(6986), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(6986), - [sym_expression_statement] = STATE(6986), - [sym_variable_declaration] = STATE(6895), - [sym_lexical_declaration] = STATE(6895), - [sym_statement_block] = STATE(6986), - [sym_if_statement] = STATE(6986), - [sym_switch_statement] = STATE(6986), - [sym_for_statement] = STATE(6986), - [sym_for_in_statement] = STATE(6986), - [sym_while_statement] = STATE(6986), - [sym_do_statement] = STATE(6986), - [sym_try_statement] = STATE(6986), - [sym_with_statement] = STATE(6986), - [sym_break_statement] = STATE(6986), - [sym_continue_statement] = STATE(6986), - [sym_debugger_statement] = STATE(6986), - [sym_return_statement] = STATE(6986), - [sym_throw_statement] = STATE(6986), - [sym_empty_statement] = STATE(6986), - [sym_labeled_statement] = STATE(6986), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(6895), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(6895), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(6895), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6529), - [sym_string] = STATE(3113), - [sym_comment] = STATE(90), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(6895), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(6895), - [sym_abstract_class_declaration] = STATE(6895), - [sym_module] = STATE(6895), - [sym_internal_module] = STATE(3105), - [sym_import_alias] = STATE(6895), - [sym_interface_declaration] = STATE(6895), - [sym_enum_declaration] = STATE(6895), - [sym_type_alias_declaration] = STATE(6895), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4783), + [89] = { + [sym_export_statement] = STATE(6355), + [sym_declaration] = STATE(6355), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(6355), + [sym_statement] = STATE(6557), + [sym_expression_statement] = STATE(6355), + [sym_variable_declaration] = STATE(6360), + [sym_lexical_declaration] = STATE(6360), + [sym_statement_block] = STATE(6355), + [sym_if_statement] = STATE(6355), + [sym_switch_statement] = STATE(6355), + [sym_for_statement] = STATE(6355), + [sym_for_in_statement] = STATE(6355), + [sym_while_statement] = STATE(6355), + [sym_do_statement] = STATE(6355), + [sym_try_statement] = STATE(6355), + [sym_with_statement] = STATE(6355), + [sym_break_statement] = STATE(6355), + [sym_continue_statement] = STATE(6355), + [sym_debugger_statement] = STATE(6355), + [sym_return_statement] = STATE(6355), + [sym_throw_statement] = STATE(6355), + [sym_empty_statement] = STATE(6355), + [sym_labeled_statement] = STATE(6355), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(6360), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(6360), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(6360), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6737), + [sym_string] = STATE(2940), + [sym_comment] = STATE(89), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(6360), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(6360), + [sym_abstract_class_declaration] = STATE(6360), + [sym_module] = STATE(6360), + [sym_internal_module] = STATE(3162), + [sym_import_alias] = STATE(6360), + [sym_interface_declaration] = STATE(6360), + [sym_enum_declaration] = STATE(6360), + [sym_type_alias_declaration] = STATE(6360), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4795), [sym_identifier] = ACTIONS(892), [anon_sym_export] = ACTIONS(894), [anon_sym_type] = ACTIONS(896), @@ -44761,122 +44262,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, - [91] = { - [sym_export_statement] = STATE(1248), - [sym_declaration] = STATE(1248), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1248), - [sym_expression_statement] = STATE(1248), - [sym_variable_declaration] = STATE(1220), - [sym_lexical_declaration] = STATE(1220), - [sym_statement_block] = STATE(1248), - [sym_if_statement] = STATE(1248), - [sym_switch_statement] = STATE(1248), - [sym_for_statement] = STATE(1248), - [sym_for_in_statement] = STATE(1248), - [sym_while_statement] = STATE(1248), - [sym_do_statement] = STATE(1248), - [sym_try_statement] = STATE(1248), - [sym_with_statement] = STATE(1248), - [sym_break_statement] = STATE(1248), - [sym_continue_statement] = STATE(1248), - [sym_debugger_statement] = STATE(1248), - [sym_return_statement] = STATE(1248), - [sym_throw_statement] = STATE(1248), - [sym_empty_statement] = STATE(1248), - [sym_labeled_statement] = STATE(1248), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2695), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1220), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1220), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1220), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6631), - [sym_string] = STATE(3113), - [sym_comment] = STATE(91), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1220), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1220), - [sym_abstract_class_declaration] = STATE(1220), - [sym_module] = STATE(1220), - [sym_internal_module] = STATE(415), - [sym_import_alias] = STATE(1220), - [sym_interface_declaration] = STATE(1220), - [sym_enum_declaration] = STATE(1220), - [sym_type_alias_declaration] = STATE(1220), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4863), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), + [90] = { + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1541), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), + [sym_comment] = STATE(90), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -44898,143 +44400,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [92] = { - [sym_export_statement] = STATE(1529), - [sym_declaration] = STATE(1529), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1529), - [sym_expression_statement] = STATE(1529), - [sym_variable_declaration] = STATE(1220), - [sym_lexical_declaration] = STATE(1220), - [sym_statement_block] = STATE(1529), - [sym_if_statement] = STATE(1529), - [sym_switch_statement] = STATE(1529), - [sym_for_statement] = STATE(1529), - [sym_for_in_statement] = STATE(1529), - [sym_while_statement] = STATE(1529), - [sym_do_statement] = STATE(1529), - [sym_try_statement] = STATE(1529), - [sym_with_statement] = STATE(1529), - [sym_break_statement] = STATE(1529), - [sym_continue_statement] = STATE(1529), - [sym_debugger_statement] = STATE(1529), - [sym_return_statement] = STATE(1529), - [sym_throw_statement] = STATE(1529), - [sym_empty_statement] = STATE(1529), - [sym_labeled_statement] = STATE(1529), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2695), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1220), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1220), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1220), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6631), - [sym_string] = STATE(3113), - [sym_comment] = STATE(92), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1220), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1220), - [sym_abstract_class_declaration] = STATE(1220), - [sym_module] = STATE(1220), - [sym_internal_module] = STATE(415), - [sym_import_alias] = STATE(1220), - [sym_interface_declaration] = STATE(1220), - [sym_enum_declaration] = STATE(1220), - [sym_type_alias_declaration] = STATE(1220), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4863), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), + [91] = { + [sym_export_statement] = STATE(1393), + [sym_declaration] = STATE(1393), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1393), + [sym_statement] = STATE(1197), + [sym_expression_statement] = STATE(1393), + [sym_variable_declaration] = STATE(1327), + [sym_lexical_declaration] = STATE(1327), + [sym_statement_block] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_switch_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_for_in_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_do_statement] = STATE(1393), + [sym_try_statement] = STATE(1393), + [sym_with_statement] = STATE(1393), + [sym_break_statement] = STATE(1393), + [sym_continue_statement] = STATE(1393), + [sym_debugger_statement] = STATE(1393), + [sym_return_statement] = STATE(1393), + [sym_throw_statement] = STATE(1393), + [sym_empty_statement] = STATE(1393), + [sym_labeled_statement] = STATE(1393), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1327), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1327), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1327), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6752), + [sym_string] = STATE(2940), + [sym_comment] = STATE(91), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1327), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1327), + [sym_abstract_class_declaration] = STATE(1327), + [sym_module] = STATE(1327), + [sym_internal_module] = STATE(413), + [sym_import_alias] = STATE(1327), + [sym_interface_declaration] = STATE(1327), + [sym_enum_declaration] = STATE(1327), + [sym_type_alias_declaration] = STATE(1327), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4841), + [sym_identifier] = ACTIONS(337), + [anon_sym_export] = ACTIONS(339), + [anon_sym_type] = ACTIONS(343), + [anon_sym_namespace] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), + [anon_sym_import] = ACTIONS(349), + [anon_sym_with] = ACTIONS(351), + [anon_sym_var] = ACTIONS(353), + [anon_sym_let] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_for] = ACTIONS(363), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_while] = ACTIONS(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(381), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(383), + [anon_sym_async] = ACTIONS(385), + [anon_sym_function] = ACTIONS(387), + [anon_sym_new] = ACTIONS(389), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45056,143 +44559,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(391), + [anon_sym_readonly] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(393), + [anon_sym_public] = ACTIONS(391), + [anon_sym_private] = ACTIONS(391), + [anon_sym_protected] = ACTIONS(391), + [anon_sym_override] = ACTIONS(391), + [anon_sym_module] = ACTIONS(395), + [anon_sym_any] = ACTIONS(391), + [anon_sym_number] = ACTIONS(391), + [anon_sym_boolean] = ACTIONS(391), + [anon_sym_string] = ACTIONS(391), + [anon_sym_symbol] = ACTIONS(391), + [anon_sym_object] = ACTIONS(391), + [anon_sym_abstract] = ACTIONS(397), + [anon_sym_interface] = ACTIONS(399), + [anon_sym_enum] = ACTIONS(401), [sym_html_comment] = ACTIONS(5), }, - [93] = { - [sym_export_statement] = STATE(7279), - [sym_declaration] = STATE(7279), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(7279), - [sym_expression_statement] = STATE(7279), - [sym_variable_declaration] = STATE(6895), - [sym_lexical_declaration] = STATE(6895), - [sym_statement_block] = STATE(7279), - [sym_if_statement] = STATE(7279), - [sym_switch_statement] = STATE(7279), - [sym_for_statement] = STATE(7279), - [sym_for_in_statement] = STATE(7279), - [sym_while_statement] = STATE(7279), - [sym_do_statement] = STATE(7279), - [sym_try_statement] = STATE(7279), - [sym_with_statement] = STATE(7279), - [sym_break_statement] = STATE(7279), - [sym_continue_statement] = STATE(7279), - [sym_debugger_statement] = STATE(7279), - [sym_return_statement] = STATE(7279), - [sym_throw_statement] = STATE(7279), - [sym_empty_statement] = STATE(7279), - [sym_labeled_statement] = STATE(7279), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(6895), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(6895), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(6895), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6529), - [sym_string] = STATE(3113), - [sym_comment] = STATE(93), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(6895), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(6895), - [sym_abstract_class_declaration] = STATE(6895), - [sym_module] = STATE(6895), - [sym_internal_module] = STATE(3105), - [sym_import_alias] = STATE(6895), - [sym_interface_declaration] = STATE(6895), - [sym_enum_declaration] = STATE(6895), - [sym_type_alias_declaration] = STATE(6895), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4783), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), + [92] = { + [sym_export_statement] = STATE(1443), + [sym_declaration] = STATE(1443), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1443), + [sym_statement] = STATE(1202), + [sym_expression_statement] = STATE(1443), + [sym_variable_declaration] = STATE(1444), + [sym_lexical_declaration] = STATE(1444), + [sym_statement_block] = STATE(1443), + [sym_if_statement] = STATE(1443), + [sym_switch_statement] = STATE(1443), + [sym_for_statement] = STATE(1443), + [sym_for_in_statement] = STATE(1443), + [sym_while_statement] = STATE(1443), + [sym_do_statement] = STATE(1443), + [sym_try_statement] = STATE(1443), + [sym_with_statement] = STATE(1443), + [sym_break_statement] = STATE(1443), + [sym_continue_statement] = STATE(1443), + [sym_debugger_statement] = STATE(1443), + [sym_return_statement] = STATE(1443), + [sym_throw_statement] = STATE(1443), + [sym_empty_statement] = STATE(1443), + [sym_labeled_statement] = STATE(1443), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1444), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1444), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1444), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6773), + [sym_string] = STATE(2940), + [sym_comment] = STATE(92), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1444), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1444), + [sym_abstract_class_declaration] = STATE(1444), + [sym_module] = STATE(1444), + [sym_internal_module] = STATE(397), + [sym_import_alias] = STATE(1444), + [sym_interface_declaration] = STATE(1444), + [sym_enum_declaration] = STATE(1444), + [sym_type_alias_declaration] = STATE(1444), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4833), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(766), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(772), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), + [anon_sym_import] = ACTIONS(774), + [anon_sym_with] = ACTIONS(776), + [anon_sym_var] = ACTIONS(778), + [anon_sym_let] = ACTIONS(780), + [anon_sym_const] = ACTIONS(782), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), + [anon_sym_if] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(786), + [anon_sym_for] = ACTIONS(788), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_while] = ACTIONS(790), + [anon_sym_do] = ACTIONS(792), + [anon_sym_try] = ACTIONS(794), + [anon_sym_break] = ACTIONS(796), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_debugger] = ACTIONS(800), + [anon_sym_return] = ACTIONS(802), + [anon_sym_throw] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(806), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(808), + [anon_sym_async] = ACTIONS(810), + [anon_sym_function] = ACTIONS(812), + [anon_sym_new] = ACTIONS(814), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45214,459 +44718,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(944), - [anon_sym_number] = ACTIONS(944), - [anon_sym_boolean] = ACTIONS(944), - [anon_sym_string] = ACTIONS(944), - [anon_sym_symbol] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), - [sym_html_comment] = ACTIONS(5), - }, - [94] = { - [sym_export_statement] = STATE(1607), - [sym_declaration] = STATE(1613), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1614), - [sym_expression_statement] = STATE(1619), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1620), - [sym_if_statement] = STATE(1621), - [sym_switch_statement] = STATE(1622), - [sym_for_statement] = STATE(1631), - [sym_for_in_statement] = STATE(1642), - [sym_while_statement] = STATE(1647), - [sym_do_statement] = STATE(1648), - [sym_try_statement] = STATE(1584), - [sym_with_statement] = STATE(1656), - [sym_break_statement] = STATE(1657), - [sym_continue_statement] = STATE(1660), - [sym_debugger_statement] = STATE(1661), - [sym_return_statement] = STATE(1662), - [sym_throw_statement] = STATE(1664), - [sym_empty_statement] = STATE(1667), - [sym_labeled_statement] = STATE(1669), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), - [sym_comment] = STATE(94), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4771), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), - [sym_html_comment] = ACTIONS(5), - }, - [95] = { - [sym_export_statement] = STATE(6710), - [sym_declaration] = STATE(6710), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(6710), - [sym_expression_statement] = STATE(6710), - [sym_variable_declaration] = STATE(6895), - [sym_lexical_declaration] = STATE(6895), - [sym_statement_block] = STATE(6710), - [sym_if_statement] = STATE(6710), - [sym_switch_statement] = STATE(6710), - [sym_for_statement] = STATE(6710), - [sym_for_in_statement] = STATE(6710), - [sym_while_statement] = STATE(6710), - [sym_do_statement] = STATE(6710), - [sym_try_statement] = STATE(6710), - [sym_with_statement] = STATE(6710), - [sym_break_statement] = STATE(6710), - [sym_continue_statement] = STATE(6710), - [sym_debugger_statement] = STATE(6710), - [sym_return_statement] = STATE(6710), - [sym_throw_statement] = STATE(6710), - [sym_empty_statement] = STATE(6710), - [sym_labeled_statement] = STATE(6710), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(6895), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(6895), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(6895), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6529), - [sym_string] = STATE(3113), - [sym_comment] = STATE(95), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(6895), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(6895), - [sym_abstract_class_declaration] = STATE(6895), - [sym_module] = STATE(6895), - [sym_internal_module] = STATE(3105), - [sym_import_alias] = STATE(6895), - [sym_interface_declaration] = STATE(6895), - [sym_enum_declaration] = STATE(6895), - [sym_type_alias_declaration] = STATE(6895), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4783), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(944), - [anon_sym_number] = ACTIONS(944), - [anon_sym_boolean] = ACTIONS(944), - [anon_sym_string] = ACTIONS(944), - [anon_sym_symbol] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(816), + [anon_sym_readonly] = ACTIONS(816), + [anon_sym_get] = ACTIONS(816), + [anon_sym_set] = ACTIONS(816), + [anon_sym_declare] = ACTIONS(818), + [anon_sym_public] = ACTIONS(816), + [anon_sym_private] = ACTIONS(816), + [anon_sym_protected] = ACTIONS(816), + [anon_sym_override] = ACTIONS(816), + [anon_sym_module] = ACTIONS(820), + [anon_sym_any] = ACTIONS(816), + [anon_sym_number] = ACTIONS(816), + [anon_sym_boolean] = ACTIONS(816), + [anon_sym_string] = ACTIONS(816), + [anon_sym_symbol] = ACTIONS(816), + [anon_sym_object] = ACTIONS(816), + [anon_sym_abstract] = ACTIONS(822), + [anon_sym_interface] = ACTIONS(824), + [anon_sym_enum] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, - [96] = { - [sym_export_statement] = STATE(1585), - [sym_declaration] = STATE(1585), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1585), - [sym_expression_statement] = STATE(1585), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1585), - [sym_if_statement] = STATE(1585), - [sym_switch_statement] = STATE(1585), - [sym_for_statement] = STATE(1585), - [sym_for_in_statement] = STATE(1585), - [sym_while_statement] = STATE(1585), - [sym_do_statement] = STATE(1585), - [sym_try_statement] = STATE(1585), - [sym_with_statement] = STATE(1585), - [sym_break_statement] = STATE(1585), - [sym_continue_statement] = STATE(1585), - [sym_debugger_statement] = STATE(1585), - [sym_return_statement] = STATE(1585), - [sym_throw_statement] = STATE(1585), - [sym_empty_statement] = STATE(1585), - [sym_labeled_statement] = STATE(1585), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), - [sym_comment] = STATE(96), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4771), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [93] = { + [sym_export_statement] = STATE(1443), + [sym_declaration] = STATE(1443), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1443), + [sym_statement] = STATE(1272), + [sym_expression_statement] = STATE(1443), + [sym_variable_declaration] = STATE(1444), + [sym_lexical_declaration] = STATE(1444), + [sym_statement_block] = STATE(1443), + [sym_if_statement] = STATE(1443), + [sym_switch_statement] = STATE(1443), + [sym_for_statement] = STATE(1443), + [sym_for_in_statement] = STATE(1443), + [sym_while_statement] = STATE(1443), + [sym_do_statement] = STATE(1443), + [sym_try_statement] = STATE(1443), + [sym_with_statement] = STATE(1443), + [sym_break_statement] = STATE(1443), + [sym_continue_statement] = STATE(1443), + [sym_debugger_statement] = STATE(1443), + [sym_return_statement] = STATE(1443), + [sym_throw_statement] = STATE(1443), + [sym_empty_statement] = STATE(1443), + [sym_labeled_statement] = STATE(1443), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1444), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1444), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1444), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6773), + [sym_string] = STATE(2940), + [sym_comment] = STATE(93), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1444), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1444), + [sym_abstract_class_declaration] = STATE(1444), + [sym_module] = STATE(1444), + [sym_internal_module] = STATE(397), + [sym_import_alias] = STATE(1444), + [sym_interface_declaration] = STATE(1444), + [sym_enum_declaration] = STATE(1444), + [sym_type_alias_declaration] = STATE(1444), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4833), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(766), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(772), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), + [anon_sym_import] = ACTIONS(774), + [anon_sym_with] = ACTIONS(776), + [anon_sym_var] = ACTIONS(778), + [anon_sym_let] = ACTIONS(780), + [anon_sym_const] = ACTIONS(782), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(786), + [anon_sym_for] = ACTIONS(788), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_while] = ACTIONS(790), + [anon_sym_do] = ACTIONS(792), + [anon_sym_try] = ACTIONS(794), + [anon_sym_break] = ACTIONS(796), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_debugger] = ACTIONS(800), + [anon_sym_return] = ACTIONS(802), + [anon_sym_throw] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(806), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(808), + [anon_sym_async] = ACTIONS(810), + [anon_sym_function] = ACTIONS(812), + [anon_sym_new] = ACTIONS(814), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45688,108 +44877,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(816), + [anon_sym_readonly] = ACTIONS(816), + [anon_sym_get] = ACTIONS(816), + [anon_sym_set] = ACTIONS(816), + [anon_sym_declare] = ACTIONS(818), + [anon_sym_public] = ACTIONS(816), + [anon_sym_private] = ACTIONS(816), + [anon_sym_protected] = ACTIONS(816), + [anon_sym_override] = ACTIONS(816), + [anon_sym_module] = ACTIONS(820), + [anon_sym_any] = ACTIONS(816), + [anon_sym_number] = ACTIONS(816), + [anon_sym_boolean] = ACTIONS(816), + [anon_sym_string] = ACTIONS(816), + [anon_sym_symbol] = ACTIONS(816), + [anon_sym_object] = ACTIONS(816), + [anon_sym_abstract] = ACTIONS(822), + [anon_sym_interface] = ACTIONS(824), + [anon_sym_enum] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, - [97] = { - [sym_export_statement] = STATE(6769), - [sym_declaration] = STATE(6769), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(6769), - [sym_expression_statement] = STATE(6769), - [sym_variable_declaration] = STATE(6895), - [sym_lexical_declaration] = STATE(6895), - [sym_statement_block] = STATE(6769), - [sym_if_statement] = STATE(6769), - [sym_switch_statement] = STATE(6769), - [sym_for_statement] = STATE(6769), - [sym_for_in_statement] = STATE(6769), - [sym_while_statement] = STATE(6769), - [sym_do_statement] = STATE(6769), - [sym_try_statement] = STATE(6769), - [sym_with_statement] = STATE(6769), - [sym_break_statement] = STATE(6769), - [sym_continue_statement] = STATE(6769), - [sym_debugger_statement] = STATE(6769), - [sym_return_statement] = STATE(6769), - [sym_throw_statement] = STATE(6769), - [sym_empty_statement] = STATE(6769), - [sym_labeled_statement] = STATE(6769), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(6895), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(6895), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(6895), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6529), - [sym_string] = STATE(3113), - [sym_comment] = STATE(97), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(6895), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(6895), - [sym_abstract_class_declaration] = STATE(6895), - [sym_module] = STATE(6895), - [sym_internal_module] = STATE(3105), - [sym_import_alias] = STATE(6895), - [sym_interface_declaration] = STATE(6895), - [sym_enum_declaration] = STATE(6895), - [sym_type_alias_declaration] = STATE(6895), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4783), + [94] = { + [sym_export_statement] = STATE(6355), + [sym_declaration] = STATE(6355), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(6355), + [sym_statement] = STATE(7283), + [sym_expression_statement] = STATE(6355), + [sym_variable_declaration] = STATE(6360), + [sym_lexical_declaration] = STATE(6360), + [sym_statement_block] = STATE(6355), + [sym_if_statement] = STATE(6355), + [sym_switch_statement] = STATE(6355), + [sym_for_statement] = STATE(6355), + [sym_for_in_statement] = STATE(6355), + [sym_while_statement] = STATE(6355), + [sym_do_statement] = STATE(6355), + [sym_try_statement] = STATE(6355), + [sym_with_statement] = STATE(6355), + [sym_break_statement] = STATE(6355), + [sym_continue_statement] = STATE(6355), + [sym_debugger_statement] = STATE(6355), + [sym_return_statement] = STATE(6355), + [sym_throw_statement] = STATE(6355), + [sym_empty_statement] = STATE(6355), + [sym_labeled_statement] = STATE(6355), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(6360), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(6360), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(6360), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6737), + [sym_string] = STATE(2940), + [sym_comment] = STATE(94), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(6360), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(6360), + [sym_abstract_class_declaration] = STATE(6360), + [sym_module] = STATE(6360), + [sym_internal_module] = STATE(3162), + [sym_import_alias] = STATE(6360), + [sym_interface_declaration] = STATE(6360), + [sym_enum_declaration] = STATE(6360), + [sym_type_alias_declaration] = STATE(6360), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4795), [sym_identifier] = ACTIONS(892), [anon_sym_export] = ACTIONS(894), [anon_sym_type] = ACTIONS(896), @@ -45867,122 +45057,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, - [98] = { - [sym_export_statement] = STATE(7016), - [sym_declaration] = STATE(7020), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(6974), - [sym_expression_statement] = STATE(7029), - [sym_variable_declaration] = STATE(6895), - [sym_lexical_declaration] = STATE(6895), - [sym_statement_block] = STATE(7035), - [sym_if_statement] = STATE(7037), - [sym_switch_statement] = STATE(7040), - [sym_for_statement] = STATE(7045), - [sym_for_in_statement] = STATE(7047), - [sym_while_statement] = STATE(7051), - [sym_do_statement] = STATE(7052), - [sym_try_statement] = STATE(7053), - [sym_with_statement] = STATE(7055), - [sym_break_statement] = STATE(7057), - [sym_continue_statement] = STATE(7059), - [sym_debugger_statement] = STATE(7061), - [sym_return_statement] = STATE(7064), - [sym_throw_statement] = STATE(7069), - [sym_empty_statement] = STATE(7071), - [sym_labeled_statement] = STATE(7077), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(6895), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(6895), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(6895), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6529), - [sym_string] = STATE(3113), - [sym_comment] = STATE(98), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(6895), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(6895), - [sym_abstract_class_declaration] = STATE(6895), - [sym_module] = STATE(6895), - [sym_internal_module] = STATE(3105), - [sym_import_alias] = STATE(6895), - [sym_interface_declaration] = STATE(6895), - [sym_enum_declaration] = STATE(6895), - [sym_type_alias_declaration] = STATE(6895), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4783), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), + [95] = { + [sym_export_statement] = STATE(1443), + [sym_declaration] = STATE(1443), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1443), + [sym_statement] = STATE(1217), + [sym_expression_statement] = STATE(1443), + [sym_variable_declaration] = STATE(1444), + [sym_lexical_declaration] = STATE(1444), + [sym_statement_block] = STATE(1443), + [sym_if_statement] = STATE(1443), + [sym_switch_statement] = STATE(1443), + [sym_for_statement] = STATE(1443), + [sym_for_in_statement] = STATE(1443), + [sym_while_statement] = STATE(1443), + [sym_do_statement] = STATE(1443), + [sym_try_statement] = STATE(1443), + [sym_with_statement] = STATE(1443), + [sym_break_statement] = STATE(1443), + [sym_continue_statement] = STATE(1443), + [sym_debugger_statement] = STATE(1443), + [sym_return_statement] = STATE(1443), + [sym_throw_statement] = STATE(1443), + [sym_empty_statement] = STATE(1443), + [sym_labeled_statement] = STATE(1443), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1444), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1444), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1444), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6773), + [sym_string] = STATE(2940), + [sym_comment] = STATE(95), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1444), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1444), + [sym_abstract_class_declaration] = STATE(1444), + [sym_module] = STATE(1444), + [sym_internal_module] = STATE(397), + [sym_import_alias] = STATE(1444), + [sym_interface_declaration] = STATE(1444), + [sym_enum_declaration] = STATE(1444), + [sym_type_alias_declaration] = STATE(1444), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4833), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(766), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(772), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), + [anon_sym_import] = ACTIONS(774), + [anon_sym_with] = ACTIONS(776), + [anon_sym_var] = ACTIONS(778), + [anon_sym_let] = ACTIONS(780), + [anon_sym_const] = ACTIONS(782), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), + [anon_sym_if] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(786), + [anon_sym_for] = ACTIONS(788), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_while] = ACTIONS(790), + [anon_sym_do] = ACTIONS(792), + [anon_sym_try] = ACTIONS(794), + [anon_sym_break] = ACTIONS(796), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_debugger] = ACTIONS(800), + [anon_sym_return] = ACTIONS(802), + [anon_sym_throw] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(806), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(808), + [anon_sym_async] = ACTIONS(810), + [anon_sym_function] = ACTIONS(812), + [anon_sym_new] = ACTIONS(814), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46004,108 +45195,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(944), - [anon_sym_number] = ACTIONS(944), - [anon_sym_boolean] = ACTIONS(944), - [anon_sym_string] = ACTIONS(944), - [anon_sym_symbol] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(816), + [anon_sym_readonly] = ACTIONS(816), + [anon_sym_get] = ACTIONS(816), + [anon_sym_set] = ACTIONS(816), + [anon_sym_declare] = ACTIONS(818), + [anon_sym_public] = ACTIONS(816), + [anon_sym_private] = ACTIONS(816), + [anon_sym_protected] = ACTIONS(816), + [anon_sym_override] = ACTIONS(816), + [anon_sym_module] = ACTIONS(820), + [anon_sym_any] = ACTIONS(816), + [anon_sym_number] = ACTIONS(816), + [anon_sym_boolean] = ACTIONS(816), + [anon_sym_string] = ACTIONS(816), + [anon_sym_symbol] = ACTIONS(816), + [anon_sym_object] = ACTIONS(816), + [anon_sym_abstract] = ACTIONS(822), + [anon_sym_interface] = ACTIONS(824), + [anon_sym_enum] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, - [99] = { - [sym_export_statement] = STATE(1623), - [sym_declaration] = STATE(1623), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1623), - [sym_expression_statement] = STATE(1623), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1623), - [sym_if_statement] = STATE(1623), - [sym_switch_statement] = STATE(1623), - [sym_for_statement] = STATE(1623), - [sym_for_in_statement] = STATE(1623), - [sym_while_statement] = STATE(1623), - [sym_do_statement] = STATE(1623), - [sym_try_statement] = STATE(1623), - [sym_with_statement] = STATE(1623), - [sym_break_statement] = STATE(1623), - [sym_continue_statement] = STATE(1623), - [sym_debugger_statement] = STATE(1623), - [sym_return_statement] = STATE(1623), - [sym_throw_statement] = STATE(1623), - [sym_empty_statement] = STATE(1623), - [sym_labeled_statement] = STATE(1623), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), - [sym_comment] = STATE(99), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4771), + [96] = { + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1547), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), + [sym_comment] = STATE(96), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -46183,87 +45375,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [100] = { - [sym_export_statement] = STATE(1710), - [sym_declaration] = STATE(1710), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1710), - [sym_expression_statement] = STATE(1710), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1710), - [sym_if_statement] = STATE(1710), - [sym_switch_statement] = STATE(1710), - [sym_for_statement] = STATE(1710), - [sym_for_in_statement] = STATE(1710), - [sym_while_statement] = STATE(1710), - [sym_do_statement] = STATE(1710), - [sym_try_statement] = STATE(1710), - [sym_with_statement] = STATE(1710), - [sym_break_statement] = STATE(1710), - [sym_continue_statement] = STATE(1710), - [sym_debugger_statement] = STATE(1710), - [sym_return_statement] = STATE(1710), - [sym_throw_statement] = STATE(1710), - [sym_empty_statement] = STATE(1710), - [sym_labeled_statement] = STATE(1710), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), - [sym_comment] = STATE(100), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4771), + [97] = { + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1489), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), + [sym_comment] = STATE(97), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -46341,122 +45534,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [101] = { - [sym_export_statement] = STATE(6088), - [sym_declaration] = STATE(6088), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(6088), - [sym_expression_statement] = STATE(6088), - [sym_variable_declaration] = STATE(6895), - [sym_lexical_declaration] = STATE(6895), - [sym_statement_block] = STATE(6088), - [sym_if_statement] = STATE(6088), - [sym_switch_statement] = STATE(6088), - [sym_for_statement] = STATE(6088), - [sym_for_in_statement] = STATE(6088), - [sym_while_statement] = STATE(6088), - [sym_do_statement] = STATE(6088), - [sym_try_statement] = STATE(6088), - [sym_with_statement] = STATE(6088), - [sym_break_statement] = STATE(6088), - [sym_continue_statement] = STATE(6088), - [sym_debugger_statement] = STATE(6088), - [sym_return_statement] = STATE(6088), - [sym_throw_statement] = STATE(6088), - [sym_empty_statement] = STATE(6088), - [sym_labeled_statement] = STATE(6088), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(6895), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(6895), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(6895), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6529), - [sym_string] = STATE(3113), - [sym_comment] = STATE(101), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(6895), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(6895), - [sym_abstract_class_declaration] = STATE(6895), - [sym_module] = STATE(6895), - [sym_internal_module] = STATE(3105), - [sym_import_alias] = STATE(6895), - [sym_interface_declaration] = STATE(6895), - [sym_enum_declaration] = STATE(6895), - [sym_type_alias_declaration] = STATE(6895), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4783), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), + [98] = { + [sym_export_statement] = STATE(965), + [sym_declaration] = STATE(965), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(965), + [sym_statement] = STATE(1088), + [sym_expression_statement] = STATE(965), + [sym_variable_declaration] = STATE(1100), + [sym_lexical_declaration] = STATE(1100), + [sym_statement_block] = STATE(965), + [sym_if_statement] = STATE(965), + [sym_switch_statement] = STATE(965), + [sym_for_statement] = STATE(965), + [sym_for_in_statement] = STATE(965), + [sym_while_statement] = STATE(965), + [sym_do_statement] = STATE(965), + [sym_try_statement] = STATE(965), + [sym_with_statement] = STATE(965), + [sym_break_statement] = STATE(965), + [sym_continue_statement] = STATE(965), + [sym_debugger_statement] = STATE(965), + [sym_return_statement] = STATE(965), + [sym_throw_statement] = STATE(965), + [sym_empty_statement] = STATE(965), + [sym_labeled_statement] = STATE(965), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1100), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1100), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1100), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6354), + [sym_string] = STATE(2940), + [sym_comment] = STATE(98), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1100), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1100), + [sym_abstract_class_declaration] = STATE(1100), + [sym_module] = STATE(1100), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1100), + [sym_interface_declaration] = STATE(1100), + [sym_enum_declaration] = STATE(1100), + [sym_type_alias_declaration] = STATE(1100), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4838), + [sym_identifier] = ACTIONS(828), + [anon_sym_export] = ACTIONS(830), + [anon_sym_type] = ACTIONS(832), + [anon_sym_namespace] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(836), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), + [anon_sym_import] = ACTIONS(838), + [anon_sym_with] = ACTIONS(840), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(844), + [anon_sym_const] = ACTIONS(846), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_for] = ACTIONS(852), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(856), + [anon_sym_try] = ACTIONS(858), + [anon_sym_break] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_debugger] = ACTIONS(864), + [anon_sym_return] = ACTIONS(866), + [anon_sym_throw] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(870), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(872), + [anon_sym_async] = ACTIONS(874), + [anon_sym_function] = ACTIONS(876), + [anon_sym_new] = ACTIONS(878), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46478,143 +45672,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(944), - [anon_sym_number] = ACTIONS(944), - [anon_sym_boolean] = ACTIONS(944), - [anon_sym_string] = ACTIONS(944), - [anon_sym_symbol] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(880), + [anon_sym_readonly] = ACTIONS(880), + [anon_sym_get] = ACTIONS(880), + [anon_sym_set] = ACTIONS(880), + [anon_sym_declare] = ACTIONS(882), + [anon_sym_public] = ACTIONS(880), + [anon_sym_private] = ACTIONS(880), + [anon_sym_protected] = ACTIONS(880), + [anon_sym_override] = ACTIONS(880), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(880), + [anon_sym_number] = ACTIONS(880), + [anon_sym_boolean] = ACTIONS(880), + [anon_sym_string] = ACTIONS(880), + [anon_sym_symbol] = ACTIONS(880), + [anon_sym_object] = ACTIONS(880), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, - [102] = { - [sym_export_statement] = STATE(1390), - [sym_declaration] = STATE(1390), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1390), - [sym_expression_statement] = STATE(1390), - [sym_variable_declaration] = STATE(1382), - [sym_lexical_declaration] = STATE(1382), - [sym_statement_block] = STATE(1390), - [sym_if_statement] = STATE(1390), - [sym_switch_statement] = STATE(1390), - [sym_for_statement] = STATE(1390), - [sym_for_in_statement] = STATE(1390), - [sym_while_statement] = STATE(1390), - [sym_do_statement] = STATE(1390), - [sym_try_statement] = STATE(1390), - [sym_with_statement] = STATE(1390), - [sym_break_statement] = STATE(1390), - [sym_continue_statement] = STATE(1390), - [sym_debugger_statement] = STATE(1390), - [sym_return_statement] = STATE(1390), - [sym_throw_statement] = STATE(1390), - [sym_empty_statement] = STATE(1390), - [sym_labeled_statement] = STATE(1390), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2668), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1382), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1382), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1382), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6712), - [sym_string] = STATE(3113), - [sym_comment] = STATE(102), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1382), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1382), - [sym_abstract_class_declaration] = STATE(1382), - [sym_module] = STATE(1382), - [sym_internal_module] = STATE(345), - [sym_import_alias] = STATE(1382), - [sym_interface_declaration] = STATE(1382), - [sym_enum_declaration] = STATE(1382), - [sym_type_alias_declaration] = STATE(1382), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4953), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_type] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(347), + [99] = { + [sym_export_statement] = STATE(965), + [sym_declaration] = STATE(965), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(965), + [sym_statement] = STATE(917), + [sym_expression_statement] = STATE(965), + [sym_variable_declaration] = STATE(1100), + [sym_lexical_declaration] = STATE(1100), + [sym_statement_block] = STATE(965), + [sym_if_statement] = STATE(965), + [sym_switch_statement] = STATE(965), + [sym_for_statement] = STATE(965), + [sym_for_in_statement] = STATE(965), + [sym_while_statement] = STATE(965), + [sym_do_statement] = STATE(965), + [sym_try_statement] = STATE(965), + [sym_with_statement] = STATE(965), + [sym_break_statement] = STATE(965), + [sym_continue_statement] = STATE(965), + [sym_debugger_statement] = STATE(965), + [sym_return_statement] = STATE(965), + [sym_throw_statement] = STATE(965), + [sym_empty_statement] = STATE(965), + [sym_labeled_statement] = STATE(965), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1100), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1100), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1100), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6354), + [sym_string] = STATE(2940), + [sym_comment] = STATE(99), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1100), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1100), + [sym_abstract_class_declaration] = STATE(1100), + [sym_module] = STATE(1100), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1100), + [sym_interface_declaration] = STATE(1100), + [sym_enum_declaration] = STATE(1100), + [sym_type_alias_declaration] = STATE(1100), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4838), + [sym_identifier] = ACTIONS(828), + [anon_sym_export] = ACTIONS(830), + [anon_sym_type] = ACTIONS(832), + [anon_sym_namespace] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(836), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(349), - [anon_sym_with] = ACTIONS(351), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_const] = ACTIONS(357), + [anon_sym_import] = ACTIONS(838), + [anon_sym_with] = ACTIONS(840), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(844), + [anon_sym_const] = ACTIONS(846), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(359), - [anon_sym_switch] = ACTIONS(361), - [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_for] = ACTIONS(852), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(365), - [anon_sym_do] = ACTIONS(367), - [anon_sym_try] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_debugger] = ACTIONS(375), - [anon_sym_return] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(856), + [anon_sym_try] = ACTIONS(858), + [anon_sym_break] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_debugger] = ACTIONS(864), + [anon_sym_return] = ACTIONS(866), + [anon_sym_throw] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(870), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(385), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(389), + [anon_sym_class] = ACTIONS(872), + [anon_sym_async] = ACTIONS(874), + [anon_sym_function] = ACTIONS(876), + [anon_sym_new] = ACTIONS(878), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46636,108 +45831,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(391), - [anon_sym_readonly] = ACTIONS(391), - [anon_sym_get] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_declare] = ACTIONS(393), - [anon_sym_public] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_override] = ACTIONS(391), - [anon_sym_module] = ACTIONS(395), - [anon_sym_any] = ACTIONS(391), - [anon_sym_number] = ACTIONS(391), - [anon_sym_boolean] = ACTIONS(391), - [anon_sym_string] = ACTIONS(391), - [anon_sym_symbol] = ACTIONS(391), - [anon_sym_object] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), + [anon_sym_static] = ACTIONS(880), + [anon_sym_readonly] = ACTIONS(880), + [anon_sym_get] = ACTIONS(880), + [anon_sym_set] = ACTIONS(880), + [anon_sym_declare] = ACTIONS(882), + [anon_sym_public] = ACTIONS(880), + [anon_sym_private] = ACTIONS(880), + [anon_sym_protected] = ACTIONS(880), + [anon_sym_override] = ACTIONS(880), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(880), + [anon_sym_number] = ACTIONS(880), + [anon_sym_boolean] = ACTIONS(880), + [anon_sym_string] = ACTIONS(880), + [anon_sym_symbol] = ACTIONS(880), + [anon_sym_object] = ACTIONS(880), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, - [103] = { - [sym_export_statement] = STATE(1495), - [sym_declaration] = STATE(1495), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1495), - [sym_expression_statement] = STATE(1495), - [sym_variable_declaration] = STATE(1220), - [sym_lexical_declaration] = STATE(1220), - [sym_statement_block] = STATE(1495), - [sym_if_statement] = STATE(1495), - [sym_switch_statement] = STATE(1495), - [sym_for_statement] = STATE(1495), - [sym_for_in_statement] = STATE(1495), - [sym_while_statement] = STATE(1495), - [sym_do_statement] = STATE(1495), - [sym_try_statement] = STATE(1495), - [sym_with_statement] = STATE(1495), - [sym_break_statement] = STATE(1495), - [sym_continue_statement] = STATE(1495), - [sym_debugger_statement] = STATE(1495), - [sym_return_statement] = STATE(1495), - [sym_throw_statement] = STATE(1495), - [sym_empty_statement] = STATE(1495), - [sym_labeled_statement] = STATE(1495), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2695), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1220), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1220), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1220), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6631), - [sym_string] = STATE(3113), - [sym_comment] = STATE(103), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1220), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1220), - [sym_abstract_class_declaration] = STATE(1220), - [sym_module] = STATE(1220), - [sym_internal_module] = STATE(415), - [sym_import_alias] = STATE(1220), - [sym_interface_declaration] = STATE(1220), - [sym_enum_declaration] = STATE(1220), - [sym_type_alias_declaration] = STATE(1220), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4863), + [100] = { + [sym_export_statement] = STATE(965), + [sym_declaration] = STATE(965), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(965), + [sym_statement] = STATE(1138), + [sym_expression_statement] = STATE(965), + [sym_variable_declaration] = STATE(1100), + [sym_lexical_declaration] = STATE(1100), + [sym_statement_block] = STATE(965), + [sym_if_statement] = STATE(965), + [sym_switch_statement] = STATE(965), + [sym_for_statement] = STATE(965), + [sym_for_in_statement] = STATE(965), + [sym_while_statement] = STATE(965), + [sym_do_statement] = STATE(965), + [sym_try_statement] = STATE(965), + [sym_with_statement] = STATE(965), + [sym_break_statement] = STATE(965), + [sym_continue_statement] = STATE(965), + [sym_debugger_statement] = STATE(965), + [sym_return_statement] = STATE(965), + [sym_throw_statement] = STATE(965), + [sym_empty_statement] = STATE(965), + [sym_labeled_statement] = STATE(965), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1100), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1100), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1100), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6354), + [sym_string] = STATE(2940), + [sym_comment] = STATE(100), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1100), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1100), + [sym_abstract_class_declaration] = STATE(1100), + [sym_module] = STATE(1100), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1100), + [sym_interface_declaration] = STATE(1100), + [sym_enum_declaration] = STATE(1100), + [sym_type_alias_declaration] = STATE(1100), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4838), [sym_identifier] = ACTIONS(828), [anon_sym_export] = ACTIONS(830), [anon_sym_type] = ACTIONS(832), @@ -46815,87 +46011,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, - [104] = { - [sym_export_statement] = STATE(981), - [sym_declaration] = STATE(990), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1000), - [sym_expression_statement] = STATE(1025), - [sym_variable_declaration] = STATE(1105), - [sym_lexical_declaration] = STATE(1105), - [sym_statement_block] = STATE(1040), - [sym_if_statement] = STATE(1049), - [sym_switch_statement] = STATE(1052), - [sym_for_statement] = STATE(1054), - [sym_for_in_statement] = STATE(1055), - [sym_while_statement] = STATE(1056), - [sym_do_statement] = STATE(1061), - [sym_try_statement] = STATE(1062), - [sym_with_statement] = STATE(1063), - [sym_break_statement] = STATE(1074), - [sym_continue_statement] = STATE(1075), - [sym_debugger_statement] = STATE(1076), - [sym_return_statement] = STATE(1085), - [sym_throw_statement] = STATE(1086), - [sym_empty_statement] = STATE(1088), - [sym_labeled_statement] = STATE(1097), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2661), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1105), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1105), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1105), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6537), - [sym_string] = STATE(3113), - [sym_comment] = STATE(104), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1105), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1105), - [sym_abstract_class_declaration] = STATE(1105), - [sym_module] = STATE(1105), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1105), - [sym_interface_declaration] = STATE(1105), - [sym_enum_declaration] = STATE(1105), - [sym_type_alias_declaration] = STATE(1105), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4985), + [101] = { + [sym_export_statement] = STATE(1393), + [sym_declaration] = STATE(1393), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1393), + [sym_statement] = STATE(1343), + [sym_expression_statement] = STATE(1393), + [sym_variable_declaration] = STATE(1327), + [sym_lexical_declaration] = STATE(1327), + [sym_statement_block] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_switch_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_for_in_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_do_statement] = STATE(1393), + [sym_try_statement] = STATE(1393), + [sym_with_statement] = STATE(1393), + [sym_break_statement] = STATE(1393), + [sym_continue_statement] = STATE(1393), + [sym_debugger_statement] = STATE(1393), + [sym_return_statement] = STATE(1393), + [sym_throw_statement] = STATE(1393), + [sym_empty_statement] = STATE(1393), + [sym_labeled_statement] = STATE(1393), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1327), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1327), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1327), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6752), + [sym_string] = STATE(2940), + [sym_comment] = STATE(101), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1327), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1327), + [sym_abstract_class_declaration] = STATE(1327), + [sym_module] = STATE(1327), + [sym_internal_module] = STATE(413), + [sym_import_alias] = STATE(1327), + [sym_interface_declaration] = STATE(1327), + [sym_enum_declaration] = STATE(1327), + [sym_type_alias_declaration] = STATE(1327), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4841), + [sym_identifier] = ACTIONS(337), + [anon_sym_export] = ACTIONS(339), + [anon_sym_type] = ACTIONS(343), + [anon_sym_namespace] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(349), + [anon_sym_with] = ACTIONS(351), + [anon_sym_var] = ACTIONS(353), + [anon_sym_let] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_for] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(383), + [anon_sym_async] = ACTIONS(385), + [anon_sym_function] = ACTIONS(387), + [anon_sym_new] = ACTIONS(389), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(391), + [anon_sym_readonly] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(393), + [anon_sym_public] = ACTIONS(391), + [anon_sym_private] = ACTIONS(391), + [anon_sym_protected] = ACTIONS(391), + [anon_sym_override] = ACTIONS(391), + [anon_sym_module] = ACTIONS(395), + [anon_sym_any] = ACTIONS(391), + [anon_sym_number] = ACTIONS(391), + [anon_sym_boolean] = ACTIONS(391), + [anon_sym_string] = ACTIONS(391), + [anon_sym_symbol] = ACTIONS(391), + [anon_sym_object] = ACTIONS(391), + [anon_sym_abstract] = ACTIONS(397), + [anon_sym_interface] = ACTIONS(399), + [anon_sym_enum] = ACTIONS(401), + [sym_html_comment] = ACTIONS(5), + }, + [102] = { + [sym_export_statement] = STATE(1443), + [sym_declaration] = STATE(1443), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1443), + [sym_statement] = STATE(1328), + [sym_expression_statement] = STATE(1443), + [sym_variable_declaration] = STATE(1444), + [sym_lexical_declaration] = STATE(1444), + [sym_statement_block] = STATE(1443), + [sym_if_statement] = STATE(1443), + [sym_switch_statement] = STATE(1443), + [sym_for_statement] = STATE(1443), + [sym_for_in_statement] = STATE(1443), + [sym_while_statement] = STATE(1443), + [sym_do_statement] = STATE(1443), + [sym_try_statement] = STATE(1443), + [sym_with_statement] = STATE(1443), + [sym_break_statement] = STATE(1443), + [sym_continue_statement] = STATE(1443), + [sym_debugger_statement] = STATE(1443), + [sym_return_statement] = STATE(1443), + [sym_throw_statement] = STATE(1443), + [sym_empty_statement] = STATE(1443), + [sym_labeled_statement] = STATE(1443), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1444), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1444), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1444), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6773), + [sym_string] = STATE(2940), + [sym_comment] = STATE(102), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1444), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1444), + [sym_abstract_class_declaration] = STATE(1444), + [sym_module] = STATE(1444), + [sym_internal_module] = STATE(397), + [sym_import_alias] = STATE(1444), + [sym_interface_declaration] = STATE(1444), + [sym_enum_declaration] = STATE(1444), + [sym_type_alias_declaration] = STATE(1444), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4833), [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(766), [anon_sym_type] = ACTIONS(768), @@ -46973,87 +46329,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, - [105] = { - [sym_export_statement] = STATE(6883), - [sym_declaration] = STATE(6883), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(6883), - [sym_expression_statement] = STATE(6883), - [sym_variable_declaration] = STATE(6895), - [sym_lexical_declaration] = STATE(6895), - [sym_statement_block] = STATE(6883), - [sym_if_statement] = STATE(6883), - [sym_switch_statement] = STATE(6883), - [sym_for_statement] = STATE(6883), - [sym_for_in_statement] = STATE(6883), - [sym_while_statement] = STATE(6883), - [sym_do_statement] = STATE(6883), - [sym_try_statement] = STATE(6883), - [sym_with_statement] = STATE(6883), - [sym_break_statement] = STATE(6883), - [sym_continue_statement] = STATE(6883), - [sym_debugger_statement] = STATE(6883), - [sym_return_statement] = STATE(6883), - [sym_throw_statement] = STATE(6883), - [sym_empty_statement] = STATE(6883), - [sym_labeled_statement] = STATE(6883), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(6895), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(6895), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(6895), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6529), - [sym_string] = STATE(3113), - [sym_comment] = STATE(105), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(6895), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(6895), - [sym_abstract_class_declaration] = STATE(6895), - [sym_module] = STATE(6895), - [sym_internal_module] = STATE(3105), - [sym_import_alias] = STATE(6895), - [sym_interface_declaration] = STATE(6895), - [sym_enum_declaration] = STATE(6895), - [sym_type_alias_declaration] = STATE(6895), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4783), + [103] = { + [sym_export_statement] = STATE(6355), + [sym_declaration] = STATE(6355), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(6355), + [sym_statement] = STATE(7096), + [sym_expression_statement] = STATE(6355), + [sym_variable_declaration] = STATE(6360), + [sym_lexical_declaration] = STATE(6360), + [sym_statement_block] = STATE(6355), + [sym_if_statement] = STATE(6355), + [sym_switch_statement] = STATE(6355), + [sym_for_statement] = STATE(6355), + [sym_for_in_statement] = STATE(6355), + [sym_while_statement] = STATE(6355), + [sym_do_statement] = STATE(6355), + [sym_try_statement] = STATE(6355), + [sym_with_statement] = STATE(6355), + [sym_break_statement] = STATE(6355), + [sym_continue_statement] = STATE(6355), + [sym_debugger_statement] = STATE(6355), + [sym_return_statement] = STATE(6355), + [sym_throw_statement] = STATE(6355), + [sym_empty_statement] = STATE(6355), + [sym_labeled_statement] = STATE(6355), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(6360), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(6360), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(6360), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6737), + [sym_string] = STATE(2940), + [sym_comment] = STATE(103), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(6360), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(6360), + [sym_abstract_class_declaration] = STATE(6360), + [sym_module] = STATE(6360), + [sym_internal_module] = STATE(3162), + [sym_import_alias] = STATE(6360), + [sym_interface_declaration] = STATE(6360), + [sym_enum_declaration] = STATE(6360), + [sym_type_alias_declaration] = STATE(6360), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4795), [sym_identifier] = ACTIONS(892), [anon_sym_export] = ACTIONS(894), [anon_sym_type] = ACTIONS(896), @@ -47131,87 +46488,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, - [106] = { - [sym_export_statement] = STATE(7176), - [sym_declaration] = STATE(7176), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(7176), - [sym_expression_statement] = STATE(7176), - [sym_variable_declaration] = STATE(6895), - [sym_lexical_declaration] = STATE(6895), - [sym_statement_block] = STATE(7176), - [sym_if_statement] = STATE(7176), - [sym_switch_statement] = STATE(7176), - [sym_for_statement] = STATE(7176), - [sym_for_in_statement] = STATE(7176), - [sym_while_statement] = STATE(7176), - [sym_do_statement] = STATE(7176), - [sym_try_statement] = STATE(7176), - [sym_with_statement] = STATE(7176), - [sym_break_statement] = STATE(7176), - [sym_continue_statement] = STATE(7176), - [sym_debugger_statement] = STATE(7176), - [sym_return_statement] = STATE(7176), - [sym_throw_statement] = STATE(7176), - [sym_empty_statement] = STATE(7176), - [sym_labeled_statement] = STATE(7176), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(6895), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(6895), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(6895), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6529), - [sym_string] = STATE(3113), - [sym_comment] = STATE(106), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(6895), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(6895), - [sym_abstract_class_declaration] = STATE(6895), - [sym_module] = STATE(6895), - [sym_internal_module] = STATE(3105), - [sym_import_alias] = STATE(6895), - [sym_interface_declaration] = STATE(6895), - [sym_enum_declaration] = STATE(6895), - [sym_type_alias_declaration] = STATE(6895), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4783), + [104] = { + [sym_export_statement] = STATE(6355), + [sym_declaration] = STATE(6355), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(6355), + [sym_statement] = STATE(7204), + [sym_expression_statement] = STATE(6355), + [sym_variable_declaration] = STATE(6360), + [sym_lexical_declaration] = STATE(6360), + [sym_statement_block] = STATE(6355), + [sym_if_statement] = STATE(6355), + [sym_switch_statement] = STATE(6355), + [sym_for_statement] = STATE(6355), + [sym_for_in_statement] = STATE(6355), + [sym_while_statement] = STATE(6355), + [sym_do_statement] = STATE(6355), + [sym_try_statement] = STATE(6355), + [sym_with_statement] = STATE(6355), + [sym_break_statement] = STATE(6355), + [sym_continue_statement] = STATE(6355), + [sym_debugger_statement] = STATE(6355), + [sym_return_statement] = STATE(6355), + [sym_throw_statement] = STATE(6355), + [sym_empty_statement] = STATE(6355), + [sym_labeled_statement] = STATE(6355), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(6360), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(6360), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(6360), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6737), + [sym_string] = STATE(2940), + [sym_comment] = STATE(104), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(6360), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(6360), + [sym_abstract_class_declaration] = STATE(6360), + [sym_module] = STATE(6360), + [sym_internal_module] = STATE(3162), + [sym_import_alias] = STATE(6360), + [sym_interface_declaration] = STATE(6360), + [sym_enum_declaration] = STATE(6360), + [sym_type_alias_declaration] = STATE(6360), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4795), [sym_identifier] = ACTIONS(892), [anon_sym_export] = ACTIONS(894), [anon_sym_type] = ACTIONS(896), @@ -47289,87 +46647,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, - [107] = { - [sym_export_statement] = STATE(7146), - [sym_declaration] = STATE(7139), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(7137), - [sym_expression_statement] = STATE(7132), - [sym_variable_declaration] = STATE(6895), - [sym_lexical_declaration] = STATE(6895), - [sym_statement_block] = STATE(7124), - [sym_if_statement] = STATE(7118), - [sym_switch_statement] = STATE(7114), - [sym_for_statement] = STATE(7107), - [sym_for_in_statement] = STATE(7101), - [sym_while_statement] = STATE(7100), - [sym_do_statement] = STATE(7096), - [sym_try_statement] = STATE(7094), - [sym_with_statement] = STATE(7093), - [sym_break_statement] = STATE(7087), - [sym_continue_statement] = STATE(7015), - [sym_debugger_statement] = STATE(7076), - [sym_return_statement] = STATE(7072), - [sym_throw_statement] = STATE(7070), - [sym_empty_statement] = STATE(7066), - [sym_labeled_statement] = STATE(7065), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(6895), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(6895), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(6895), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6529), - [sym_string] = STATE(3113), - [sym_comment] = STATE(107), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(6895), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(6895), - [sym_abstract_class_declaration] = STATE(6895), - [sym_module] = STATE(6895), - [sym_internal_module] = STATE(3105), - [sym_import_alias] = STATE(6895), - [sym_interface_declaration] = STATE(6895), - [sym_enum_declaration] = STATE(6895), - [sym_type_alias_declaration] = STATE(6895), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4783), + [105] = { + [sym_export_statement] = STATE(1393), + [sym_declaration] = STATE(1393), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1393), + [sym_statement] = STATE(1326), + [sym_expression_statement] = STATE(1393), + [sym_variable_declaration] = STATE(1327), + [sym_lexical_declaration] = STATE(1327), + [sym_statement_block] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_switch_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_for_in_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_do_statement] = STATE(1393), + [sym_try_statement] = STATE(1393), + [sym_with_statement] = STATE(1393), + [sym_break_statement] = STATE(1393), + [sym_continue_statement] = STATE(1393), + [sym_debugger_statement] = STATE(1393), + [sym_return_statement] = STATE(1393), + [sym_throw_statement] = STATE(1393), + [sym_empty_statement] = STATE(1393), + [sym_labeled_statement] = STATE(1393), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1327), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1327), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1327), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6752), + [sym_string] = STATE(2940), + [sym_comment] = STATE(105), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1327), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1327), + [sym_abstract_class_declaration] = STATE(1327), + [sym_module] = STATE(1327), + [sym_internal_module] = STATE(413), + [sym_import_alias] = STATE(1327), + [sym_interface_declaration] = STATE(1327), + [sym_enum_declaration] = STATE(1327), + [sym_type_alias_declaration] = STATE(1327), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4841), + [sym_identifier] = ACTIONS(337), + [anon_sym_export] = ACTIONS(339), + [anon_sym_type] = ACTIONS(343), + [anon_sym_namespace] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(347), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(349), + [anon_sym_with] = ACTIONS(351), + [anon_sym_var] = ACTIONS(353), + [anon_sym_let] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_for] = ACTIONS(363), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(383), + [anon_sym_async] = ACTIONS(385), + [anon_sym_function] = ACTIONS(387), + [anon_sym_new] = ACTIONS(389), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(391), + [anon_sym_readonly] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(393), + [anon_sym_public] = ACTIONS(391), + [anon_sym_private] = ACTIONS(391), + [anon_sym_protected] = ACTIONS(391), + [anon_sym_override] = ACTIONS(391), + [anon_sym_module] = ACTIONS(395), + [anon_sym_any] = ACTIONS(391), + [anon_sym_number] = ACTIONS(391), + [anon_sym_boolean] = ACTIONS(391), + [anon_sym_string] = ACTIONS(391), + [anon_sym_symbol] = ACTIONS(391), + [anon_sym_object] = ACTIONS(391), + [anon_sym_abstract] = ACTIONS(397), + [anon_sym_interface] = ACTIONS(399), + [anon_sym_enum] = ACTIONS(401), + [sym_html_comment] = ACTIONS(5), + }, + [106] = { + [sym_export_statement] = STATE(6355), + [sym_declaration] = STATE(6355), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(6355), + [sym_statement] = STATE(6950), + [sym_expression_statement] = STATE(6355), + [sym_variable_declaration] = STATE(6360), + [sym_lexical_declaration] = STATE(6360), + [sym_statement_block] = STATE(6355), + [sym_if_statement] = STATE(6355), + [sym_switch_statement] = STATE(6355), + [sym_for_statement] = STATE(6355), + [sym_for_in_statement] = STATE(6355), + [sym_while_statement] = STATE(6355), + [sym_do_statement] = STATE(6355), + [sym_try_statement] = STATE(6355), + [sym_with_statement] = STATE(6355), + [sym_break_statement] = STATE(6355), + [sym_continue_statement] = STATE(6355), + [sym_debugger_statement] = STATE(6355), + [sym_return_statement] = STATE(6355), + [sym_throw_statement] = STATE(6355), + [sym_empty_statement] = STATE(6355), + [sym_labeled_statement] = STATE(6355), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(6360), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(6360), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(6360), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6737), + [sym_string] = STATE(2940), + [sym_comment] = STATE(106), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(6360), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(6360), + [sym_abstract_class_declaration] = STATE(6360), + [sym_module] = STATE(6360), + [sym_internal_module] = STATE(3162), + [sym_import_alias] = STATE(6360), + [sym_interface_declaration] = STATE(6360), + [sym_enum_declaration] = STATE(6360), + [sym_type_alias_declaration] = STATE(6360), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4795), [sym_identifier] = ACTIONS(892), [anon_sym_export] = ACTIONS(894), [anon_sym_type] = ACTIONS(896), @@ -47447,122 +46965,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, - [108] = { - [sym_export_statement] = STATE(1107), - [sym_declaration] = STATE(1107), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1107), - [sym_expression_statement] = STATE(1107), - [sym_variable_declaration] = STATE(1105), - [sym_lexical_declaration] = STATE(1105), - [sym_statement_block] = STATE(1107), - [sym_if_statement] = STATE(1107), - [sym_switch_statement] = STATE(1107), - [sym_for_statement] = STATE(1107), - [sym_for_in_statement] = STATE(1107), - [sym_while_statement] = STATE(1107), - [sym_do_statement] = STATE(1107), - [sym_try_statement] = STATE(1107), - [sym_with_statement] = STATE(1107), - [sym_break_statement] = STATE(1107), - [sym_continue_statement] = STATE(1107), - [sym_debugger_statement] = STATE(1107), - [sym_return_statement] = STATE(1107), - [sym_throw_statement] = STATE(1107), - [sym_empty_statement] = STATE(1107), - [sym_labeled_statement] = STATE(1107), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2661), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1105), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1105), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1105), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6537), - [sym_string] = STATE(3113), - [sym_comment] = STATE(108), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1105), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1105), - [sym_abstract_class_declaration] = STATE(1105), - [sym_module] = STATE(1105), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1105), - [sym_interface_declaration] = STATE(1105), - [sym_enum_declaration] = STATE(1105), - [sym_type_alias_declaration] = STATE(1105), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4985), - [sym_identifier] = ACTIONS(764), - [anon_sym_export] = ACTIONS(766), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), + [107] = { + [sym_export_statement] = STATE(1393), + [sym_declaration] = STATE(1393), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1393), + [sym_statement] = STATE(1405), + [sym_expression_statement] = STATE(1393), + [sym_variable_declaration] = STATE(1327), + [sym_lexical_declaration] = STATE(1327), + [sym_statement_block] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_switch_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_for_in_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_do_statement] = STATE(1393), + [sym_try_statement] = STATE(1393), + [sym_with_statement] = STATE(1393), + [sym_break_statement] = STATE(1393), + [sym_continue_statement] = STATE(1393), + [sym_debugger_statement] = STATE(1393), + [sym_return_statement] = STATE(1393), + [sym_throw_statement] = STATE(1393), + [sym_empty_statement] = STATE(1393), + [sym_labeled_statement] = STATE(1393), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1327), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1327), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1327), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6752), + [sym_string] = STATE(2940), + [sym_comment] = STATE(107), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1327), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1327), + [sym_abstract_class_declaration] = STATE(1327), + [sym_module] = STATE(1327), + [sym_internal_module] = STATE(413), + [sym_import_alias] = STATE(1327), + [sym_interface_declaration] = STATE(1327), + [sym_enum_declaration] = STATE(1327), + [sym_type_alias_declaration] = STATE(1327), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4841), + [sym_identifier] = ACTIONS(337), + [anon_sym_export] = ACTIONS(339), + [anon_sym_type] = ACTIONS(343), + [anon_sym_namespace] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(774), - [anon_sym_with] = ACTIONS(776), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(780), - [anon_sym_const] = ACTIONS(782), + [anon_sym_import] = ACTIONS(349), + [anon_sym_with] = ACTIONS(351), + [anon_sym_var] = ACTIONS(353), + [anon_sym_let] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_for] = ACTIONS(363), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(790), - [anon_sym_do] = ACTIONS(792), - [anon_sym_try] = ACTIONS(794), - [anon_sym_break] = ACTIONS(796), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_debugger] = ACTIONS(800), - [anon_sym_return] = ACTIONS(802), - [anon_sym_throw] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_while] = ACTIONS(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(381), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(810), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(383), + [anon_sym_async] = ACTIONS(385), + [anon_sym_function] = ACTIONS(387), + [anon_sym_new] = ACTIONS(389), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -47584,108 +47103,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(816), - [anon_sym_readonly] = ACTIONS(816), - [anon_sym_get] = ACTIONS(816), - [anon_sym_set] = ACTIONS(816), - [anon_sym_declare] = ACTIONS(818), - [anon_sym_public] = ACTIONS(816), - [anon_sym_private] = ACTIONS(816), - [anon_sym_protected] = ACTIONS(816), - [anon_sym_override] = ACTIONS(816), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(816), - [anon_sym_number] = ACTIONS(816), - [anon_sym_boolean] = ACTIONS(816), - [anon_sym_string] = ACTIONS(816), - [anon_sym_symbol] = ACTIONS(816), - [anon_sym_object] = ACTIONS(816), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(391), + [anon_sym_readonly] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(393), + [anon_sym_public] = ACTIONS(391), + [anon_sym_private] = ACTIONS(391), + [anon_sym_protected] = ACTIONS(391), + [anon_sym_override] = ACTIONS(391), + [anon_sym_module] = ACTIONS(395), + [anon_sym_any] = ACTIONS(391), + [anon_sym_number] = ACTIONS(391), + [anon_sym_boolean] = ACTIONS(391), + [anon_sym_string] = ACTIONS(391), + [anon_sym_symbol] = ACTIONS(391), + [anon_sym_object] = ACTIONS(391), + [anon_sym_abstract] = ACTIONS(397), + [anon_sym_interface] = ACTIONS(399), + [anon_sym_enum] = ACTIONS(401), [sym_html_comment] = ACTIONS(5), }, - [109] = { - [sym_export_statement] = STATE(1125), - [sym_declaration] = STATE(1125), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1125), - [sym_expression_statement] = STATE(1125), - [sym_variable_declaration] = STATE(1220), - [sym_lexical_declaration] = STATE(1220), - [sym_statement_block] = STATE(1125), - [sym_if_statement] = STATE(1125), - [sym_switch_statement] = STATE(1125), - [sym_for_statement] = STATE(1125), - [sym_for_in_statement] = STATE(1125), - [sym_while_statement] = STATE(1125), - [sym_do_statement] = STATE(1125), - [sym_try_statement] = STATE(1125), - [sym_with_statement] = STATE(1125), - [sym_break_statement] = STATE(1125), - [sym_continue_statement] = STATE(1125), - [sym_debugger_statement] = STATE(1125), - [sym_return_statement] = STATE(1125), - [sym_throw_statement] = STATE(1125), - [sym_empty_statement] = STATE(1125), - [sym_labeled_statement] = STATE(1125), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2695), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1220), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1220), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1220), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6631), - [sym_string] = STATE(3113), - [sym_comment] = STATE(109), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1220), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1220), - [sym_abstract_class_declaration] = STATE(1220), - [sym_module] = STATE(1220), - [sym_internal_module] = STATE(415), - [sym_import_alias] = STATE(1220), - [sym_interface_declaration] = STATE(1220), - [sym_enum_declaration] = STATE(1220), - [sym_type_alias_declaration] = STATE(1220), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4863), + [108] = { + [sym_export_statement] = STATE(965), + [sym_declaration] = STATE(965), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(965), + [sym_statement] = STATE(942), + [sym_expression_statement] = STATE(965), + [sym_variable_declaration] = STATE(1100), + [sym_lexical_declaration] = STATE(1100), + [sym_statement_block] = STATE(965), + [sym_if_statement] = STATE(965), + [sym_switch_statement] = STATE(965), + [sym_for_statement] = STATE(965), + [sym_for_in_statement] = STATE(965), + [sym_while_statement] = STATE(965), + [sym_do_statement] = STATE(965), + [sym_try_statement] = STATE(965), + [sym_with_statement] = STATE(965), + [sym_break_statement] = STATE(965), + [sym_continue_statement] = STATE(965), + [sym_debugger_statement] = STATE(965), + [sym_return_statement] = STATE(965), + [sym_throw_statement] = STATE(965), + [sym_empty_statement] = STATE(965), + [sym_labeled_statement] = STATE(965), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1100), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1100), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1100), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6354), + [sym_string] = STATE(2940), + [sym_comment] = STATE(108), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1100), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1100), + [sym_abstract_class_declaration] = STATE(1100), + [sym_module] = STATE(1100), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1100), + [sym_interface_declaration] = STATE(1100), + [sym_enum_declaration] = STATE(1100), + [sym_type_alias_declaration] = STATE(1100), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4838), [sym_identifier] = ACTIONS(828), [anon_sym_export] = ACTIONS(830), [anon_sym_type] = ACTIONS(832), @@ -47763,87 +47283,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, - [110] = { - [sym_export_statement] = STATE(970), - [sym_declaration] = STATE(970), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(970), - [sym_expression_statement] = STATE(970), - [sym_variable_declaration] = STATE(1105), - [sym_lexical_declaration] = STATE(1105), - [sym_statement_block] = STATE(970), - [sym_if_statement] = STATE(970), - [sym_switch_statement] = STATE(970), - [sym_for_statement] = STATE(970), - [sym_for_in_statement] = STATE(970), - [sym_while_statement] = STATE(970), - [sym_do_statement] = STATE(970), - [sym_try_statement] = STATE(970), - [sym_with_statement] = STATE(970), - [sym_break_statement] = STATE(970), - [sym_continue_statement] = STATE(970), - [sym_debugger_statement] = STATE(970), - [sym_return_statement] = STATE(970), - [sym_throw_statement] = STATE(970), - [sym_empty_statement] = STATE(970), - [sym_labeled_statement] = STATE(970), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2661), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1105), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1105), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1105), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6537), - [sym_string] = STATE(3113), - [sym_comment] = STATE(110), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1105), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1105), - [sym_abstract_class_declaration] = STATE(1105), - [sym_module] = STATE(1105), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1105), - [sym_interface_declaration] = STATE(1105), - [sym_enum_declaration] = STATE(1105), - [sym_type_alias_declaration] = STATE(1105), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4985), + [109] = { + [sym_export_statement] = STATE(1443), + [sym_declaration] = STATE(1443), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1443), + [sym_statement] = STATE(1391), + [sym_expression_statement] = STATE(1443), + [sym_variable_declaration] = STATE(1444), + [sym_lexical_declaration] = STATE(1444), + [sym_statement_block] = STATE(1443), + [sym_if_statement] = STATE(1443), + [sym_switch_statement] = STATE(1443), + [sym_for_statement] = STATE(1443), + [sym_for_in_statement] = STATE(1443), + [sym_while_statement] = STATE(1443), + [sym_do_statement] = STATE(1443), + [sym_try_statement] = STATE(1443), + [sym_with_statement] = STATE(1443), + [sym_break_statement] = STATE(1443), + [sym_continue_statement] = STATE(1443), + [sym_debugger_statement] = STATE(1443), + [sym_return_statement] = STATE(1443), + [sym_throw_statement] = STATE(1443), + [sym_empty_statement] = STATE(1443), + [sym_labeled_statement] = STATE(1443), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1444), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1444), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1444), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6773), + [sym_string] = STATE(2940), + [sym_comment] = STATE(109), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1444), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1444), + [sym_abstract_class_declaration] = STATE(1444), + [sym_module] = STATE(1444), + [sym_internal_module] = STATE(397), + [sym_import_alias] = STATE(1444), + [sym_interface_declaration] = STATE(1444), + [sym_enum_declaration] = STATE(1444), + [sym_type_alias_declaration] = STATE(1444), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4833), [sym_identifier] = ACTIONS(764), [anon_sym_export] = ACTIONS(766), [anon_sym_type] = ACTIONS(768), @@ -47921,122 +47442,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, - [111] = { - [sym_export_statement] = STATE(1371), - [sym_declaration] = STATE(1372), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1373), - [sym_expression_statement] = STATE(1374), - [sym_variable_declaration] = STATE(1220), - [sym_lexical_declaration] = STATE(1220), - [sym_statement_block] = STATE(1375), - [sym_if_statement] = STATE(1376), - [sym_switch_statement] = STATE(1377), - [sym_for_statement] = STATE(1378), - [sym_for_in_statement] = STATE(1381), - [sym_while_statement] = STATE(1383), - [sym_do_statement] = STATE(1386), - [sym_try_statement] = STATE(1388), - [sym_with_statement] = STATE(1391), - [sym_break_statement] = STATE(1392), - [sym_continue_statement] = STATE(1393), - [sym_debugger_statement] = STATE(1394), - [sym_return_statement] = STATE(1395), - [sym_throw_statement] = STATE(1396), - [sym_empty_statement] = STATE(1401), - [sym_labeled_statement] = STATE(1403), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2695), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1220), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1220), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1220), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6631), - [sym_string] = STATE(3113), - [sym_comment] = STATE(111), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1220), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1220), - [sym_abstract_class_declaration] = STATE(1220), - [sym_module] = STATE(1220), - [sym_internal_module] = STATE(415), - [sym_import_alias] = STATE(1220), - [sym_interface_declaration] = STATE(1220), - [sym_enum_declaration] = STATE(1220), - [sym_type_alias_declaration] = STATE(1220), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4863), - [sym_identifier] = ACTIONS(828), - [anon_sym_export] = ACTIONS(830), - [anon_sym_type] = ACTIONS(832), - [anon_sym_namespace] = ACTIONS(834), - [anon_sym_LBRACE] = ACTIONS(836), + [110] = { + [sym_export_statement] = STATE(6355), + [sym_declaration] = STATE(6355), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(6355), + [sym_statement] = STATE(6622), + [sym_expression_statement] = STATE(6355), + [sym_variable_declaration] = STATE(6360), + [sym_lexical_declaration] = STATE(6360), + [sym_statement_block] = STATE(6355), + [sym_if_statement] = STATE(6355), + [sym_switch_statement] = STATE(6355), + [sym_for_statement] = STATE(6355), + [sym_for_in_statement] = STATE(6355), + [sym_while_statement] = STATE(6355), + [sym_do_statement] = STATE(6355), + [sym_try_statement] = STATE(6355), + [sym_with_statement] = STATE(6355), + [sym_break_statement] = STATE(6355), + [sym_continue_statement] = STATE(6355), + [sym_debugger_statement] = STATE(6355), + [sym_return_statement] = STATE(6355), + [sym_throw_statement] = STATE(6355), + [sym_empty_statement] = STATE(6355), + [sym_labeled_statement] = STATE(6355), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(6360), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(6360), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(6360), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6737), + [sym_string] = STATE(2940), + [sym_comment] = STATE(110), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(6360), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(6360), + [sym_abstract_class_declaration] = STATE(6360), + [sym_module] = STATE(6360), + [sym_internal_module] = STATE(3162), + [sym_import_alias] = STATE(6360), + [sym_interface_declaration] = STATE(6360), + [sym_enum_declaration] = STATE(6360), + [sym_type_alias_declaration] = STATE(6360), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4795), + [sym_identifier] = ACTIONS(892), + [anon_sym_export] = ACTIONS(894), + [anon_sym_type] = ACTIONS(896), + [anon_sym_namespace] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(838), - [anon_sym_with] = ACTIONS(840), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(844), - [anon_sym_const] = ACTIONS(846), + [anon_sym_import] = ACTIONS(902), + [anon_sym_with] = ACTIONS(904), + [anon_sym_var] = ACTIONS(906), + [anon_sym_let] = ACTIONS(908), + [anon_sym_const] = ACTIONS(910), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(848), - [anon_sym_switch] = ACTIONS(850), - [anon_sym_for] = ACTIONS(852), + [anon_sym_if] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_for] = ACTIONS(916), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(854), - [anon_sym_do] = ACTIONS(856), - [anon_sym_try] = ACTIONS(858), - [anon_sym_break] = ACTIONS(860), - [anon_sym_continue] = ACTIONS(862), - [anon_sym_debugger] = ACTIONS(864), - [anon_sym_return] = ACTIONS(866), - [anon_sym_throw] = ACTIONS(868), - [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_while] = ACTIONS(918), + [anon_sym_do] = ACTIONS(920), + [anon_sym_try] = ACTIONS(922), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_debugger] = ACTIONS(928), + [anon_sym_return] = ACTIONS(930), + [anon_sym_throw] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(934), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(874), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(878), + [anon_sym_class] = ACTIONS(936), + [anon_sym_async] = ACTIONS(938), + [anon_sym_function] = ACTIONS(940), + [anon_sym_new] = ACTIONS(942), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -48058,143 +47580,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(880), - [anon_sym_readonly] = ACTIONS(880), - [anon_sym_get] = ACTIONS(880), - [anon_sym_set] = ACTIONS(880), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(880), - [anon_sym_private] = ACTIONS(880), - [anon_sym_protected] = ACTIONS(880), - [anon_sym_override] = ACTIONS(880), - [anon_sym_module] = ACTIONS(884), - [anon_sym_any] = ACTIONS(880), - [anon_sym_number] = ACTIONS(880), - [anon_sym_boolean] = ACTIONS(880), - [anon_sym_string] = ACTIONS(880), - [anon_sym_symbol] = ACTIONS(880), - [anon_sym_object] = ACTIONS(880), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(946), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + [anon_sym_object] = ACTIONS(944), + [anon_sym_abstract] = ACTIONS(950), + [anon_sym_interface] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, - [112] = { - [sym_export_statement] = STATE(1545), - [sym_declaration] = STATE(1545), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1545), - [sym_expression_statement] = STATE(1545), - [sym_variable_declaration] = STATE(1382), - [sym_lexical_declaration] = STATE(1382), - [sym_statement_block] = STATE(1545), - [sym_if_statement] = STATE(1545), - [sym_switch_statement] = STATE(1545), - [sym_for_statement] = STATE(1545), - [sym_for_in_statement] = STATE(1545), - [sym_while_statement] = STATE(1545), - [sym_do_statement] = STATE(1545), - [sym_try_statement] = STATE(1545), - [sym_with_statement] = STATE(1545), - [sym_break_statement] = STATE(1545), - [sym_continue_statement] = STATE(1545), - [sym_debugger_statement] = STATE(1545), - [sym_return_statement] = STATE(1545), - [sym_throw_statement] = STATE(1545), - [sym_empty_statement] = STATE(1545), - [sym_labeled_statement] = STATE(1545), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2668), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1382), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1382), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1382), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6712), - [sym_string] = STATE(3113), - [sym_comment] = STATE(112), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1382), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1382), - [sym_abstract_class_declaration] = STATE(1382), - [sym_module] = STATE(1382), - [sym_internal_module] = STATE(345), - [sym_import_alias] = STATE(1382), - [sym_interface_declaration] = STATE(1382), - [sym_enum_declaration] = STATE(1382), - [sym_type_alias_declaration] = STATE(1382), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4953), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_type] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(347), + [111] = { + [sym_export_statement] = STATE(1443), + [sym_declaration] = STATE(1443), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1443), + [sym_statement] = STATE(1230), + [sym_expression_statement] = STATE(1443), + [sym_variable_declaration] = STATE(1444), + [sym_lexical_declaration] = STATE(1444), + [sym_statement_block] = STATE(1443), + [sym_if_statement] = STATE(1443), + [sym_switch_statement] = STATE(1443), + [sym_for_statement] = STATE(1443), + [sym_for_in_statement] = STATE(1443), + [sym_while_statement] = STATE(1443), + [sym_do_statement] = STATE(1443), + [sym_try_statement] = STATE(1443), + [sym_with_statement] = STATE(1443), + [sym_break_statement] = STATE(1443), + [sym_continue_statement] = STATE(1443), + [sym_debugger_statement] = STATE(1443), + [sym_return_statement] = STATE(1443), + [sym_throw_statement] = STATE(1443), + [sym_empty_statement] = STATE(1443), + [sym_labeled_statement] = STATE(1443), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1444), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1444), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1444), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6773), + [sym_string] = STATE(2940), + [sym_comment] = STATE(111), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1444), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1444), + [sym_abstract_class_declaration] = STATE(1444), + [sym_module] = STATE(1444), + [sym_internal_module] = STATE(397), + [sym_import_alias] = STATE(1444), + [sym_interface_declaration] = STATE(1444), + [sym_enum_declaration] = STATE(1444), + [sym_type_alias_declaration] = STATE(1444), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4833), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(766), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(772), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(349), - [anon_sym_with] = ACTIONS(351), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_const] = ACTIONS(357), + [anon_sym_import] = ACTIONS(774), + [anon_sym_with] = ACTIONS(776), + [anon_sym_var] = ACTIONS(778), + [anon_sym_let] = ACTIONS(780), + [anon_sym_const] = ACTIONS(782), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(359), - [anon_sym_switch] = ACTIONS(361), - [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(786), + [anon_sym_for] = ACTIONS(788), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(365), - [anon_sym_do] = ACTIONS(367), - [anon_sym_try] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_debugger] = ACTIONS(375), - [anon_sym_return] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_while] = ACTIONS(790), + [anon_sym_do] = ACTIONS(792), + [anon_sym_try] = ACTIONS(794), + [anon_sym_break] = ACTIONS(796), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_debugger] = ACTIONS(800), + [anon_sym_return] = ACTIONS(802), + [anon_sym_throw] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(806), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(385), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(389), + [anon_sym_class] = ACTIONS(808), + [anon_sym_async] = ACTIONS(810), + [anon_sym_function] = ACTIONS(812), + [anon_sym_new] = ACTIONS(814), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -48216,143 +47739,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(391), - [anon_sym_readonly] = ACTIONS(391), - [anon_sym_get] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_declare] = ACTIONS(393), - [anon_sym_public] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_override] = ACTIONS(391), - [anon_sym_module] = ACTIONS(395), - [anon_sym_any] = ACTIONS(391), - [anon_sym_number] = ACTIONS(391), - [anon_sym_boolean] = ACTIONS(391), - [anon_sym_string] = ACTIONS(391), - [anon_sym_symbol] = ACTIONS(391), - [anon_sym_object] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), + [anon_sym_static] = ACTIONS(816), + [anon_sym_readonly] = ACTIONS(816), + [anon_sym_get] = ACTIONS(816), + [anon_sym_set] = ACTIONS(816), + [anon_sym_declare] = ACTIONS(818), + [anon_sym_public] = ACTIONS(816), + [anon_sym_private] = ACTIONS(816), + [anon_sym_protected] = ACTIONS(816), + [anon_sym_override] = ACTIONS(816), + [anon_sym_module] = ACTIONS(820), + [anon_sym_any] = ACTIONS(816), + [anon_sym_number] = ACTIONS(816), + [anon_sym_boolean] = ACTIONS(816), + [anon_sym_string] = ACTIONS(816), + [anon_sym_symbol] = ACTIONS(816), + [anon_sym_object] = ACTIONS(816), + [anon_sym_abstract] = ACTIONS(822), + [anon_sym_interface] = ACTIONS(824), + [anon_sym_enum] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, - [113] = { - [sym_export_statement] = STATE(1507), - [sym_declaration] = STATE(1507), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1507), - [sym_expression_statement] = STATE(1507), - [sym_variable_declaration] = STATE(1382), - [sym_lexical_declaration] = STATE(1382), - [sym_statement_block] = STATE(1507), - [sym_if_statement] = STATE(1507), - [sym_switch_statement] = STATE(1507), - [sym_for_statement] = STATE(1507), - [sym_for_in_statement] = STATE(1507), - [sym_while_statement] = STATE(1507), - [sym_do_statement] = STATE(1507), - [sym_try_statement] = STATE(1507), - [sym_with_statement] = STATE(1507), - [sym_break_statement] = STATE(1507), - [sym_continue_statement] = STATE(1507), - [sym_debugger_statement] = STATE(1507), - [sym_return_statement] = STATE(1507), - [sym_throw_statement] = STATE(1507), - [sym_empty_statement] = STATE(1507), - [sym_labeled_statement] = STATE(1507), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2668), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1382), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1382), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1382), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6712), - [sym_string] = STATE(3113), - [sym_comment] = STATE(113), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1382), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1382), - [sym_abstract_class_declaration] = STATE(1382), - [sym_module] = STATE(1382), - [sym_internal_module] = STATE(345), - [sym_import_alias] = STATE(1382), - [sym_interface_declaration] = STATE(1382), - [sym_enum_declaration] = STATE(1382), - [sym_type_alias_declaration] = STATE(1382), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4953), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_type] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(347), + [112] = { + [sym_export_statement] = STATE(1443), + [sym_declaration] = STATE(1443), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1443), + [sym_statement] = STATE(1215), + [sym_expression_statement] = STATE(1443), + [sym_variable_declaration] = STATE(1444), + [sym_lexical_declaration] = STATE(1444), + [sym_statement_block] = STATE(1443), + [sym_if_statement] = STATE(1443), + [sym_switch_statement] = STATE(1443), + [sym_for_statement] = STATE(1443), + [sym_for_in_statement] = STATE(1443), + [sym_while_statement] = STATE(1443), + [sym_do_statement] = STATE(1443), + [sym_try_statement] = STATE(1443), + [sym_with_statement] = STATE(1443), + [sym_break_statement] = STATE(1443), + [sym_continue_statement] = STATE(1443), + [sym_debugger_statement] = STATE(1443), + [sym_return_statement] = STATE(1443), + [sym_throw_statement] = STATE(1443), + [sym_empty_statement] = STATE(1443), + [sym_labeled_statement] = STATE(1443), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1444), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1444), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1444), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6773), + [sym_string] = STATE(2940), + [sym_comment] = STATE(112), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1444), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1444), + [sym_abstract_class_declaration] = STATE(1444), + [sym_module] = STATE(1444), + [sym_internal_module] = STATE(397), + [sym_import_alias] = STATE(1444), + [sym_interface_declaration] = STATE(1444), + [sym_enum_declaration] = STATE(1444), + [sym_type_alias_declaration] = STATE(1444), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4833), + [sym_identifier] = ACTIONS(764), + [anon_sym_export] = ACTIONS(766), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(772), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(349), - [anon_sym_with] = ACTIONS(351), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_const] = ACTIONS(357), + [anon_sym_import] = ACTIONS(774), + [anon_sym_with] = ACTIONS(776), + [anon_sym_var] = ACTIONS(778), + [anon_sym_let] = ACTIONS(780), + [anon_sym_const] = ACTIONS(782), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(359), - [anon_sym_switch] = ACTIONS(361), - [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(784), + [anon_sym_switch] = ACTIONS(786), + [anon_sym_for] = ACTIONS(788), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(365), - [anon_sym_do] = ACTIONS(367), - [anon_sym_try] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_debugger] = ACTIONS(375), - [anon_sym_return] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_while] = ACTIONS(790), + [anon_sym_do] = ACTIONS(792), + [anon_sym_try] = ACTIONS(794), + [anon_sym_break] = ACTIONS(796), + [anon_sym_continue] = ACTIONS(798), + [anon_sym_debugger] = ACTIONS(800), + [anon_sym_return] = ACTIONS(802), + [anon_sym_throw] = ACTIONS(804), + [anon_sym_SEMI] = ACTIONS(806), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(385), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(389), + [anon_sym_class] = ACTIONS(808), + [anon_sym_async] = ACTIONS(810), + [anon_sym_function] = ACTIONS(812), + [anon_sym_new] = ACTIONS(814), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -48374,143 +47898,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(391), - [anon_sym_readonly] = ACTIONS(391), - [anon_sym_get] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_declare] = ACTIONS(393), - [anon_sym_public] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_override] = ACTIONS(391), - [anon_sym_module] = ACTIONS(395), - [anon_sym_any] = ACTIONS(391), - [anon_sym_number] = ACTIONS(391), - [anon_sym_boolean] = ACTIONS(391), - [anon_sym_string] = ACTIONS(391), - [anon_sym_symbol] = ACTIONS(391), - [anon_sym_object] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), + [anon_sym_static] = ACTIONS(816), + [anon_sym_readonly] = ACTIONS(816), + [anon_sym_get] = ACTIONS(816), + [anon_sym_set] = ACTIONS(816), + [anon_sym_declare] = ACTIONS(818), + [anon_sym_public] = ACTIONS(816), + [anon_sym_private] = ACTIONS(816), + [anon_sym_protected] = ACTIONS(816), + [anon_sym_override] = ACTIONS(816), + [anon_sym_module] = ACTIONS(820), + [anon_sym_any] = ACTIONS(816), + [anon_sym_number] = ACTIONS(816), + [anon_sym_boolean] = ACTIONS(816), + [anon_sym_string] = ACTIONS(816), + [anon_sym_symbol] = ACTIONS(816), + [anon_sym_object] = ACTIONS(816), + [anon_sym_abstract] = ACTIONS(822), + [anon_sym_interface] = ACTIONS(824), + [anon_sym_enum] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, - [114] = { - [sym_export_statement] = STATE(1467), - [sym_declaration] = STATE(1464), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1463), - [sym_expression_statement] = STATE(1462), - [sym_variable_declaration] = STATE(1382), - [sym_lexical_declaration] = STATE(1382), - [sym_statement_block] = STATE(1461), - [sym_if_statement] = STATE(1460), - [sym_switch_statement] = STATE(1459), - [sym_for_statement] = STATE(1458), - [sym_for_in_statement] = STATE(1457), - [sym_while_statement] = STATE(1456), - [sym_do_statement] = STATE(1455), - [sym_try_statement] = STATE(1454), - [sym_with_statement] = STATE(1447), - [sym_break_statement] = STATE(1446), - [sym_continue_statement] = STATE(1444), - [sym_debugger_statement] = STATE(1443), - [sym_return_statement] = STATE(1442), - [sym_throw_statement] = STATE(1441), - [sym_empty_statement] = STATE(1440), - [sym_labeled_statement] = STATE(1439), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2668), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1382), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1382), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1382), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6712), - [sym_string] = STATE(3113), - [sym_comment] = STATE(114), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1382), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1382), - [sym_abstract_class_declaration] = STATE(1382), - [sym_module] = STATE(1382), - [sym_internal_module] = STATE(345), - [sym_import_alias] = STATE(1382), - [sym_interface_declaration] = STATE(1382), - [sym_enum_declaration] = STATE(1382), - [sym_type_alias_declaration] = STATE(1382), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4953), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_type] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(347), + [113] = { + [sym_export_statement] = STATE(965), + [sym_declaration] = STATE(965), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(965), + [sym_statement] = STATE(1118), + [sym_expression_statement] = STATE(965), + [sym_variable_declaration] = STATE(1100), + [sym_lexical_declaration] = STATE(1100), + [sym_statement_block] = STATE(965), + [sym_if_statement] = STATE(965), + [sym_switch_statement] = STATE(965), + [sym_for_statement] = STATE(965), + [sym_for_in_statement] = STATE(965), + [sym_while_statement] = STATE(965), + [sym_do_statement] = STATE(965), + [sym_try_statement] = STATE(965), + [sym_with_statement] = STATE(965), + [sym_break_statement] = STATE(965), + [sym_continue_statement] = STATE(965), + [sym_debugger_statement] = STATE(965), + [sym_return_statement] = STATE(965), + [sym_throw_statement] = STATE(965), + [sym_empty_statement] = STATE(965), + [sym_labeled_statement] = STATE(965), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1100), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1100), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1100), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6354), + [sym_string] = STATE(2940), + [sym_comment] = STATE(113), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1100), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1100), + [sym_abstract_class_declaration] = STATE(1100), + [sym_module] = STATE(1100), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1100), + [sym_interface_declaration] = STATE(1100), + [sym_enum_declaration] = STATE(1100), + [sym_type_alias_declaration] = STATE(1100), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4838), + [sym_identifier] = ACTIONS(828), + [anon_sym_export] = ACTIONS(830), + [anon_sym_type] = ACTIONS(832), + [anon_sym_namespace] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(836), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(349), - [anon_sym_with] = ACTIONS(351), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_const] = ACTIONS(357), + [anon_sym_import] = ACTIONS(838), + [anon_sym_with] = ACTIONS(840), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(844), + [anon_sym_const] = ACTIONS(846), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(359), - [anon_sym_switch] = ACTIONS(361), - [anon_sym_for] = ACTIONS(363), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_for] = ACTIONS(852), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(365), - [anon_sym_do] = ACTIONS(367), - [anon_sym_try] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_debugger] = ACTIONS(375), - [anon_sym_return] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(856), + [anon_sym_try] = ACTIONS(858), + [anon_sym_break] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_debugger] = ACTIONS(864), + [anon_sym_return] = ACTIONS(866), + [anon_sym_throw] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(870), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(385), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(389), + [anon_sym_class] = ACTIONS(872), + [anon_sym_async] = ACTIONS(874), + [anon_sym_function] = ACTIONS(876), + [anon_sym_new] = ACTIONS(878), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -48532,108 +48057,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(391), - [anon_sym_readonly] = ACTIONS(391), - [anon_sym_get] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_declare] = ACTIONS(393), - [anon_sym_public] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_override] = ACTIONS(391), - [anon_sym_module] = ACTIONS(395), - [anon_sym_any] = ACTIONS(391), - [anon_sym_number] = ACTIONS(391), - [anon_sym_boolean] = ACTIONS(391), - [anon_sym_string] = ACTIONS(391), - [anon_sym_symbol] = ACTIONS(391), - [anon_sym_object] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), + [anon_sym_static] = ACTIONS(880), + [anon_sym_readonly] = ACTIONS(880), + [anon_sym_get] = ACTIONS(880), + [anon_sym_set] = ACTIONS(880), + [anon_sym_declare] = ACTIONS(882), + [anon_sym_public] = ACTIONS(880), + [anon_sym_private] = ACTIONS(880), + [anon_sym_protected] = ACTIONS(880), + [anon_sym_override] = ACTIONS(880), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(880), + [anon_sym_number] = ACTIONS(880), + [anon_sym_boolean] = ACTIONS(880), + [anon_sym_string] = ACTIONS(880), + [anon_sym_symbol] = ACTIONS(880), + [anon_sym_object] = ACTIONS(880), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, - [115] = { - [sym_export_statement] = STATE(7337), - [sym_declaration] = STATE(7337), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(7337), - [sym_expression_statement] = STATE(7337), - [sym_variable_declaration] = STATE(6895), - [sym_lexical_declaration] = STATE(6895), - [sym_statement_block] = STATE(7337), - [sym_if_statement] = STATE(7337), - [sym_switch_statement] = STATE(7337), - [sym_for_statement] = STATE(7337), - [sym_for_in_statement] = STATE(7337), - [sym_while_statement] = STATE(7337), - [sym_do_statement] = STATE(7337), - [sym_try_statement] = STATE(7337), - [sym_with_statement] = STATE(7337), - [sym_break_statement] = STATE(7337), - [sym_continue_statement] = STATE(7337), - [sym_debugger_statement] = STATE(7337), - [sym_return_statement] = STATE(7337), - [sym_throw_statement] = STATE(7337), - [sym_empty_statement] = STATE(7337), - [sym_labeled_statement] = STATE(7337), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(6895), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(6895), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(6895), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6529), - [sym_string] = STATE(3113), - [sym_comment] = STATE(115), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(6895), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(6895), - [sym_abstract_class_declaration] = STATE(6895), - [sym_module] = STATE(6895), - [sym_internal_module] = STATE(3105), - [sym_import_alias] = STATE(6895), - [sym_interface_declaration] = STATE(6895), - [sym_enum_declaration] = STATE(6895), - [sym_type_alias_declaration] = STATE(6895), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4783), + [114] = { + [sym_export_statement] = STATE(6355), + [sym_declaration] = STATE(6355), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(6355), + [sym_statement] = STATE(7030), + [sym_expression_statement] = STATE(6355), + [sym_variable_declaration] = STATE(6360), + [sym_lexical_declaration] = STATE(6360), + [sym_statement_block] = STATE(6355), + [sym_if_statement] = STATE(6355), + [sym_switch_statement] = STATE(6355), + [sym_for_statement] = STATE(6355), + [sym_for_in_statement] = STATE(6355), + [sym_while_statement] = STATE(6355), + [sym_do_statement] = STATE(6355), + [sym_try_statement] = STATE(6355), + [sym_with_statement] = STATE(6355), + [sym_break_statement] = STATE(6355), + [sym_continue_statement] = STATE(6355), + [sym_debugger_statement] = STATE(6355), + [sym_return_statement] = STATE(6355), + [sym_throw_statement] = STATE(6355), + [sym_empty_statement] = STATE(6355), + [sym_labeled_statement] = STATE(6355), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(6360), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(6360), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(6360), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6737), + [sym_string] = STATE(2940), + [sym_comment] = STATE(114), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(6360), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(6360), + [sym_abstract_class_declaration] = STATE(6360), + [sym_module] = STATE(6360), + [sym_internal_module] = STATE(3162), + [sym_import_alias] = STATE(6360), + [sym_interface_declaration] = STATE(6360), + [sym_enum_declaration] = STATE(6360), + [sym_type_alias_declaration] = STATE(6360), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4795), [sym_identifier] = ACTIONS(892), [anon_sym_export] = ACTIONS(894), [anon_sym_type] = ACTIONS(896), @@ -48711,245 +48237,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, - [116] = { - [sym_export_statement] = STATE(1537), - [sym_declaration] = STATE(1536), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1534), - [sym_expression_statement] = STATE(1533), - [sym_variable_declaration] = STATE(1382), - [sym_lexical_declaration] = STATE(1382), - [sym_statement_block] = STATE(1531), - [sym_if_statement] = STATE(1526), - [sym_switch_statement] = STATE(1525), - [sym_for_statement] = STATE(1524), - [sym_for_in_statement] = STATE(1523), - [sym_while_statement] = STATE(1522), - [sym_do_statement] = STATE(1521), - [sym_try_statement] = STATE(1520), - [sym_with_statement] = STATE(1519), - [sym_break_statement] = STATE(1518), - [sym_continue_statement] = STATE(1517), - [sym_debugger_statement] = STATE(1515), - [sym_return_statement] = STATE(1514), - [sym_throw_statement] = STATE(1513), - [sym_empty_statement] = STATE(1512), - [sym_labeled_statement] = STATE(1508), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2668), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1382), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1382), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1382), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6712), - [sym_string] = STATE(3113), - [sym_comment] = STATE(116), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1382), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1382), - [sym_abstract_class_declaration] = STATE(1382), - [sym_module] = STATE(1382), - [sym_internal_module] = STATE(345), - [sym_import_alias] = STATE(1382), - [sym_interface_declaration] = STATE(1382), - [sym_enum_declaration] = STATE(1382), - [sym_type_alias_declaration] = STATE(1382), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4953), - [sym_identifier] = ACTIONS(337), - [anon_sym_export] = ACTIONS(339), - [anon_sym_type] = ACTIONS(343), - [anon_sym_namespace] = ACTIONS(345), - [anon_sym_LBRACE] = ACTIONS(347), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(349), - [anon_sym_with] = ACTIONS(351), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(355), - [anon_sym_const] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(359), - [anon_sym_switch] = ACTIONS(361), - [anon_sym_for] = ACTIONS(363), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(365), - [anon_sym_do] = ACTIONS(367), - [anon_sym_try] = ACTIONS(369), - [anon_sym_break] = ACTIONS(371), - [anon_sym_continue] = ACTIONS(373), - [anon_sym_debugger] = ACTIONS(375), - [anon_sym_return] = ACTIONS(377), - [anon_sym_throw] = ACTIONS(379), - [anon_sym_SEMI] = ACTIONS(381), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(385), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(389), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(391), - [anon_sym_readonly] = ACTIONS(391), - [anon_sym_get] = ACTIONS(391), - [anon_sym_set] = ACTIONS(391), - [anon_sym_declare] = ACTIONS(393), - [anon_sym_public] = ACTIONS(391), - [anon_sym_private] = ACTIONS(391), - [anon_sym_protected] = ACTIONS(391), - [anon_sym_override] = ACTIONS(391), - [anon_sym_module] = ACTIONS(395), - [anon_sym_any] = ACTIONS(391), - [anon_sym_number] = ACTIONS(391), - [anon_sym_boolean] = ACTIONS(391), - [anon_sym_string] = ACTIONS(391), - [anon_sym_symbol] = ACTIONS(391), - [anon_sym_object] = ACTIONS(391), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), - [sym_html_comment] = ACTIONS(5), - }, - [117] = { - [sym_export_statement] = STATE(7082), - [sym_declaration] = STATE(7082), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(7082), - [sym_expression_statement] = STATE(7082), - [sym_variable_declaration] = STATE(6895), - [sym_lexical_declaration] = STATE(6895), - [sym_statement_block] = STATE(7082), - [sym_if_statement] = STATE(7082), - [sym_switch_statement] = STATE(7082), - [sym_for_statement] = STATE(7082), - [sym_for_in_statement] = STATE(7082), - [sym_while_statement] = STATE(7082), - [sym_do_statement] = STATE(7082), - [sym_try_statement] = STATE(7082), - [sym_with_statement] = STATE(7082), - [sym_break_statement] = STATE(7082), - [sym_continue_statement] = STATE(7082), - [sym_debugger_statement] = STATE(7082), - [sym_return_statement] = STATE(7082), - [sym_throw_statement] = STATE(7082), - [sym_empty_statement] = STATE(7082), - [sym_labeled_statement] = STATE(7082), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(6895), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(6895), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(6895), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6529), - [sym_string] = STATE(3113), - [sym_comment] = STATE(117), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(6895), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(6895), - [sym_abstract_class_declaration] = STATE(6895), - [sym_module] = STATE(6895), - [sym_internal_module] = STATE(3105), - [sym_import_alias] = STATE(6895), - [sym_interface_declaration] = STATE(6895), - [sym_enum_declaration] = STATE(6895), - [sym_type_alias_declaration] = STATE(6895), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4783), + [115] = { + [sym_export_statement] = STATE(6355), + [sym_declaration] = STATE(6355), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(6355), + [sym_statement] = STATE(5822), + [sym_expression_statement] = STATE(6355), + [sym_variable_declaration] = STATE(6360), + [sym_lexical_declaration] = STATE(6360), + [sym_statement_block] = STATE(6355), + [sym_if_statement] = STATE(6355), + [sym_switch_statement] = STATE(6355), + [sym_for_statement] = STATE(6355), + [sym_for_in_statement] = STATE(6355), + [sym_while_statement] = STATE(6355), + [sym_do_statement] = STATE(6355), + [sym_try_statement] = STATE(6355), + [sym_with_statement] = STATE(6355), + [sym_break_statement] = STATE(6355), + [sym_continue_statement] = STATE(6355), + [sym_debugger_statement] = STATE(6355), + [sym_return_statement] = STATE(6355), + [sym_throw_statement] = STATE(6355), + [sym_empty_statement] = STATE(6355), + [sym_labeled_statement] = STATE(6355), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(6360), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(6360), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(6360), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6737), + [sym_string] = STATE(2940), + [sym_comment] = STATE(115), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(6360), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(6360), + [sym_abstract_class_declaration] = STATE(6360), + [sym_module] = STATE(6360), + [sym_internal_module] = STATE(3162), + [sym_import_alias] = STATE(6360), + [sym_interface_declaration] = STATE(6360), + [sym_enum_declaration] = STATE(6360), + [sym_type_alias_declaration] = STATE(6360), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4795), [sym_identifier] = ACTIONS(892), [anon_sym_export] = ACTIONS(894), [anon_sym_type] = ACTIONS(896), @@ -49027,87 +48396,406 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, + [116] = { + [sym_export_statement] = STATE(965), + [sym_declaration] = STATE(965), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(965), + [sym_statement] = STATE(1112), + [sym_expression_statement] = STATE(965), + [sym_variable_declaration] = STATE(1100), + [sym_lexical_declaration] = STATE(1100), + [sym_statement_block] = STATE(965), + [sym_if_statement] = STATE(965), + [sym_switch_statement] = STATE(965), + [sym_for_statement] = STATE(965), + [sym_for_in_statement] = STATE(965), + [sym_while_statement] = STATE(965), + [sym_do_statement] = STATE(965), + [sym_try_statement] = STATE(965), + [sym_with_statement] = STATE(965), + [sym_break_statement] = STATE(965), + [sym_continue_statement] = STATE(965), + [sym_debugger_statement] = STATE(965), + [sym_return_statement] = STATE(965), + [sym_throw_statement] = STATE(965), + [sym_empty_statement] = STATE(965), + [sym_labeled_statement] = STATE(965), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2505), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1100), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1100), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1100), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6354), + [sym_string] = STATE(2940), + [sym_comment] = STATE(116), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1100), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1100), + [sym_abstract_class_declaration] = STATE(1100), + [sym_module] = STATE(1100), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1100), + [sym_interface_declaration] = STATE(1100), + [sym_enum_declaration] = STATE(1100), + [sym_type_alias_declaration] = STATE(1100), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4838), + [sym_identifier] = ACTIONS(828), + [anon_sym_export] = ACTIONS(830), + [anon_sym_type] = ACTIONS(832), + [anon_sym_namespace] = ACTIONS(834), + [anon_sym_LBRACE] = ACTIONS(836), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(838), + [anon_sym_with] = ACTIONS(840), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(844), + [anon_sym_const] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(848), + [anon_sym_switch] = ACTIONS(850), + [anon_sym_for] = ACTIONS(852), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(854), + [anon_sym_do] = ACTIONS(856), + [anon_sym_try] = ACTIONS(858), + [anon_sym_break] = ACTIONS(860), + [anon_sym_continue] = ACTIONS(862), + [anon_sym_debugger] = ACTIONS(864), + [anon_sym_return] = ACTIONS(866), + [anon_sym_throw] = ACTIONS(868), + [anon_sym_SEMI] = ACTIONS(870), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(872), + [anon_sym_async] = ACTIONS(874), + [anon_sym_function] = ACTIONS(876), + [anon_sym_new] = ACTIONS(878), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(880), + [anon_sym_readonly] = ACTIONS(880), + [anon_sym_get] = ACTIONS(880), + [anon_sym_set] = ACTIONS(880), + [anon_sym_declare] = ACTIONS(882), + [anon_sym_public] = ACTIONS(880), + [anon_sym_private] = ACTIONS(880), + [anon_sym_protected] = ACTIONS(880), + [anon_sym_override] = ACTIONS(880), + [anon_sym_module] = ACTIONS(884), + [anon_sym_any] = ACTIONS(880), + [anon_sym_number] = ACTIONS(880), + [anon_sym_boolean] = ACTIONS(880), + [anon_sym_string] = ACTIONS(880), + [anon_sym_symbol] = ACTIONS(880), + [anon_sym_object] = ACTIONS(880), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(890), + [sym_html_comment] = ACTIONS(5), + }, + [117] = { + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1490), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), + [sym_comment] = STATE(117), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4684), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), + [sym_html_comment] = ACTIONS(5), + }, [118] = { - [sym_export_statement] = STATE(7214), - [sym_declaration] = STATE(7214), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(7214), - [sym_expression_statement] = STATE(7214), - [sym_variable_declaration] = STATE(6895), - [sym_lexical_declaration] = STATE(6895), - [sym_statement_block] = STATE(7214), - [sym_if_statement] = STATE(7214), - [sym_switch_statement] = STATE(7214), - [sym_for_statement] = STATE(7214), - [sym_for_in_statement] = STATE(7214), - [sym_while_statement] = STATE(7214), - [sym_do_statement] = STATE(7214), - [sym_try_statement] = STATE(7214), - [sym_with_statement] = STATE(7214), - [sym_break_statement] = STATE(7214), - [sym_continue_statement] = STATE(7214), - [sym_debugger_statement] = STATE(7214), - [sym_return_statement] = STATE(7214), - [sym_throw_statement] = STATE(7214), - [sym_empty_statement] = STATE(7214), - [sym_labeled_statement] = STATE(7214), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(6895), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(6895), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(6895), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6529), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(6355), + [sym_declaration] = STATE(6355), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(6355), + [sym_statement] = STATE(7033), + [sym_expression_statement] = STATE(6355), + [sym_variable_declaration] = STATE(6360), + [sym_lexical_declaration] = STATE(6360), + [sym_statement_block] = STATE(6355), + [sym_if_statement] = STATE(6355), + [sym_switch_statement] = STATE(6355), + [sym_for_statement] = STATE(6355), + [sym_for_in_statement] = STATE(6355), + [sym_while_statement] = STATE(6355), + [sym_do_statement] = STATE(6355), + [sym_try_statement] = STATE(6355), + [sym_with_statement] = STATE(6355), + [sym_break_statement] = STATE(6355), + [sym_continue_statement] = STATE(6355), + [sym_debugger_statement] = STATE(6355), + [sym_return_statement] = STATE(6355), + [sym_throw_statement] = STATE(6355), + [sym_empty_statement] = STATE(6355), + [sym_labeled_statement] = STATE(6355), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(6360), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(6360), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(6360), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6737), + [sym_string] = STATE(2940), [sym_comment] = STATE(118), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(6895), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(6895), - [sym_abstract_class_declaration] = STATE(6895), - [sym_module] = STATE(6895), - [sym_internal_module] = STATE(3105), - [sym_import_alias] = STATE(6895), - [sym_interface_declaration] = STATE(6895), - [sym_enum_declaration] = STATE(6895), - [sym_type_alias_declaration] = STATE(6895), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4783), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(6360), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(6360), + [sym_abstract_class_declaration] = STATE(6360), + [sym_module] = STATE(6360), + [sym_internal_module] = STATE(3162), + [sym_import_alias] = STATE(6360), + [sym_interface_declaration] = STATE(6360), + [sym_enum_declaration] = STATE(6360), + [sym_type_alias_declaration] = STATE(6360), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4795), [sym_identifier] = ACTIONS(892), [anon_sym_export] = ACTIONS(894), [anon_sym_type] = ACTIONS(896), @@ -49186,121 +48874,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [119] = { - [sym_export_statement] = STATE(7213), - [sym_declaration] = STATE(7213), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(7213), - [sym_expression_statement] = STATE(7213), - [sym_variable_declaration] = STATE(6895), - [sym_lexical_declaration] = STATE(6895), - [sym_statement_block] = STATE(7213), - [sym_if_statement] = STATE(7213), - [sym_switch_statement] = STATE(7213), - [sym_for_statement] = STATE(7213), - [sym_for_in_statement] = STATE(7213), - [sym_while_statement] = STATE(7213), - [sym_do_statement] = STATE(7213), - [sym_try_statement] = STATE(7213), - [sym_with_statement] = STATE(7213), - [sym_break_statement] = STATE(7213), - [sym_continue_statement] = STATE(7213), - [sym_debugger_statement] = STATE(7213), - [sym_return_statement] = STATE(7213), - [sym_throw_statement] = STATE(7213), - [sym_empty_statement] = STATE(7213), - [sym_labeled_statement] = STATE(7213), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(6895), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(6895), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(6895), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6529), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1393), + [sym_declaration] = STATE(1393), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1393), + [sym_statement] = STATE(1414), + [sym_expression_statement] = STATE(1393), + [sym_variable_declaration] = STATE(1327), + [sym_lexical_declaration] = STATE(1327), + [sym_statement_block] = STATE(1393), + [sym_if_statement] = STATE(1393), + [sym_switch_statement] = STATE(1393), + [sym_for_statement] = STATE(1393), + [sym_for_in_statement] = STATE(1393), + [sym_while_statement] = STATE(1393), + [sym_do_statement] = STATE(1393), + [sym_try_statement] = STATE(1393), + [sym_with_statement] = STATE(1393), + [sym_break_statement] = STATE(1393), + [sym_continue_statement] = STATE(1393), + [sym_debugger_statement] = STATE(1393), + [sym_return_statement] = STATE(1393), + [sym_throw_statement] = STATE(1393), + [sym_empty_statement] = STATE(1393), + [sym_labeled_statement] = STATE(1393), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1327), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1327), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1327), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6752), + [sym_string] = STATE(2940), [sym_comment] = STATE(119), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(6895), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(6895), - [sym_abstract_class_declaration] = STATE(6895), - [sym_module] = STATE(6895), - [sym_internal_module] = STATE(3105), - [sym_import_alias] = STATE(6895), - [sym_interface_declaration] = STATE(6895), - [sym_enum_declaration] = STATE(6895), - [sym_type_alias_declaration] = STATE(6895), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4783), - [sym_identifier] = ACTIONS(892), - [anon_sym_export] = ACTIONS(894), - [anon_sym_type] = ACTIONS(896), - [anon_sym_namespace] = ACTIONS(898), - [anon_sym_LBRACE] = ACTIONS(900), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1327), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1327), + [sym_abstract_class_declaration] = STATE(1327), + [sym_module] = STATE(1327), + [sym_internal_module] = STATE(413), + [sym_import_alias] = STATE(1327), + [sym_interface_declaration] = STATE(1327), + [sym_enum_declaration] = STATE(1327), + [sym_type_alias_declaration] = STATE(1327), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4841), + [sym_identifier] = ACTIONS(337), + [anon_sym_export] = ACTIONS(339), + [anon_sym_type] = ACTIONS(343), + [anon_sym_namespace] = ACTIONS(345), + [anon_sym_LBRACE] = ACTIONS(347), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(902), - [anon_sym_with] = ACTIONS(904), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(908), - [anon_sym_const] = ACTIONS(910), + [anon_sym_import] = ACTIONS(349), + [anon_sym_with] = ACTIONS(351), + [anon_sym_var] = ACTIONS(353), + [anon_sym_let] = ACTIONS(355), + [anon_sym_const] = ACTIONS(357), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(912), - [anon_sym_switch] = ACTIONS(914), - [anon_sym_for] = ACTIONS(916), + [anon_sym_if] = ACTIONS(359), + [anon_sym_switch] = ACTIONS(361), + [anon_sym_for] = ACTIONS(363), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(918), - [anon_sym_do] = ACTIONS(920), - [anon_sym_try] = ACTIONS(922), - [anon_sym_break] = ACTIONS(924), - [anon_sym_continue] = ACTIONS(926), - [anon_sym_debugger] = ACTIONS(928), - [anon_sym_return] = ACTIONS(930), - [anon_sym_throw] = ACTIONS(932), - [anon_sym_SEMI] = ACTIONS(934), + [anon_sym_while] = ACTIONS(365), + [anon_sym_do] = ACTIONS(367), + [anon_sym_try] = ACTIONS(369), + [anon_sym_break] = ACTIONS(371), + [anon_sym_continue] = ACTIONS(373), + [anon_sym_debugger] = ACTIONS(375), + [anon_sym_return] = ACTIONS(377), + [anon_sym_throw] = ACTIONS(379), + [anon_sym_SEMI] = ACTIONS(381), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(938), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(942), + [anon_sym_class] = ACTIONS(383), + [anon_sym_async] = ACTIONS(385), + [anon_sym_function] = ACTIONS(387), + [anon_sym_new] = ACTIONS(389), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -49322,108 +49011,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(944), - [anon_sym_readonly] = ACTIONS(944), - [anon_sym_get] = ACTIONS(944), - [anon_sym_set] = ACTIONS(944), - [anon_sym_declare] = ACTIONS(946), - [anon_sym_public] = ACTIONS(944), - [anon_sym_private] = ACTIONS(944), - [anon_sym_protected] = ACTIONS(944), - [anon_sym_override] = ACTIONS(944), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(944), - [anon_sym_number] = ACTIONS(944), - [anon_sym_boolean] = ACTIONS(944), - [anon_sym_string] = ACTIONS(944), - [anon_sym_symbol] = ACTIONS(944), - [anon_sym_object] = ACTIONS(944), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(391), + [anon_sym_readonly] = ACTIONS(391), + [anon_sym_get] = ACTIONS(391), + [anon_sym_set] = ACTIONS(391), + [anon_sym_declare] = ACTIONS(393), + [anon_sym_public] = ACTIONS(391), + [anon_sym_private] = ACTIONS(391), + [anon_sym_protected] = ACTIONS(391), + [anon_sym_override] = ACTIONS(391), + [anon_sym_module] = ACTIONS(395), + [anon_sym_any] = ACTIONS(391), + [anon_sym_number] = ACTIONS(391), + [anon_sym_boolean] = ACTIONS(391), + [anon_sym_string] = ACTIONS(391), + [anon_sym_symbol] = ACTIONS(391), + [anon_sym_object] = ACTIONS(391), + [anon_sym_abstract] = ACTIONS(397), + [anon_sym_interface] = ACTIONS(399), + [anon_sym_enum] = ACTIONS(401), [sym_html_comment] = ACTIONS(5), }, [120] = { - [sym_export_statement] = STATE(1720), - [sym_declaration] = STATE(1719), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(1715), - [sym_expression_statement] = STATE(1714), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_statement_block] = STATE(1708), - [sym_if_statement] = STATE(1703), - [sym_switch_statement] = STATE(1700), - [sym_for_statement] = STATE(1699), - [sym_for_in_statement] = STATE(1698), - [sym_while_statement] = STATE(1694), - [sym_do_statement] = STATE(1677), - [sym_try_statement] = STATE(1689), - [sym_with_statement] = STATE(1688), - [sym_break_statement] = STATE(1687), - [sym_continue_statement] = STATE(1686), - [sym_debugger_statement] = STATE(1684), - [sym_return_statement] = STATE(1683), - [sym_throw_statement] = STATE(1682), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1680), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6676), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(1554), + [sym_declaration] = STATE(1554), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(1554), + [sym_statement] = STATE(1470), + [sym_expression_statement] = STATE(1554), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_statement_block] = STATE(1554), + [sym_if_statement] = STATE(1554), + [sym_switch_statement] = STATE(1554), + [sym_for_statement] = STATE(1554), + [sym_for_in_statement] = STATE(1554), + [sym_while_statement] = STATE(1554), + [sym_do_statement] = STATE(1554), + [sym_try_statement] = STATE(1554), + [sym_with_statement] = STATE(1554), + [sym_break_statement] = STATE(1554), + [sym_continue_statement] = STATE(1554), + [sym_debugger_statement] = STATE(1554), + [sym_return_statement] = STATE(1554), + [sym_throw_statement] = STATE(1554), + [sym_empty_statement] = STATE(1554), + [sym_labeled_statement] = STATE(1554), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6480), + [sym_string] = STATE(2940), [sym_comment] = STATE(120), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4771), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4684), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -49502,121 +49192,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [121] = { - [sym_export_statement] = STATE(928), - [sym_declaration] = STATE(928), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(928), - [sym_expression_statement] = STATE(928), - [sym_variable_declaration] = STATE(1105), - [sym_lexical_declaration] = STATE(1105), - [sym_statement_block] = STATE(928), - [sym_if_statement] = STATE(928), - [sym_switch_statement] = STATE(928), - [sym_for_statement] = STATE(928), - [sym_for_in_statement] = STATE(928), - [sym_while_statement] = STATE(928), - [sym_do_statement] = STATE(928), - [sym_try_statement] = STATE(928), - [sym_with_statement] = STATE(928), - [sym_break_statement] = STATE(928), - [sym_continue_statement] = STATE(928), - [sym_debugger_statement] = STATE(928), - [sym_return_statement] = STATE(928), - [sym_throw_statement] = STATE(928), - [sym_empty_statement] = STATE(928), - [sym_labeled_statement] = STATE(928), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2661), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1105), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1105), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1105), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6537), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(6355), + [sym_declaration] = STATE(6355), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(6355), + [sym_statement] = STATE(6536), + [sym_expression_statement] = STATE(6355), + [sym_variable_declaration] = STATE(6360), + [sym_lexical_declaration] = STATE(6360), + [sym_statement_block] = STATE(6355), + [sym_if_statement] = STATE(6355), + [sym_switch_statement] = STATE(6355), + [sym_for_statement] = STATE(6355), + [sym_for_in_statement] = STATE(6355), + [sym_while_statement] = STATE(6355), + [sym_do_statement] = STATE(6355), + [sym_try_statement] = STATE(6355), + [sym_with_statement] = STATE(6355), + [sym_break_statement] = STATE(6355), + [sym_continue_statement] = STATE(6355), + [sym_debugger_statement] = STATE(6355), + [sym_return_statement] = STATE(6355), + [sym_throw_statement] = STATE(6355), + [sym_empty_statement] = STATE(6355), + [sym_labeled_statement] = STATE(6355), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(6360), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(6360), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(6360), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6737), + [sym_string] = STATE(2940), [sym_comment] = STATE(121), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1105), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1105), - [sym_abstract_class_declaration] = STATE(1105), - [sym_module] = STATE(1105), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1105), - [sym_interface_declaration] = STATE(1105), - [sym_enum_declaration] = STATE(1105), - [sym_type_alias_declaration] = STATE(1105), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4985), - [sym_identifier] = ACTIONS(764), - [anon_sym_export] = ACTIONS(766), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(6360), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(6360), + [sym_abstract_class_declaration] = STATE(6360), + [sym_module] = STATE(6360), + [sym_internal_module] = STATE(3162), + [sym_import_alias] = STATE(6360), + [sym_interface_declaration] = STATE(6360), + [sym_enum_declaration] = STATE(6360), + [sym_type_alias_declaration] = STATE(6360), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4795), + [sym_identifier] = ACTIONS(892), + [anon_sym_export] = ACTIONS(894), + [anon_sym_type] = ACTIONS(896), + [anon_sym_namespace] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(774), - [anon_sym_with] = ACTIONS(776), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(780), - [anon_sym_const] = ACTIONS(782), + [anon_sym_import] = ACTIONS(902), + [anon_sym_with] = ACTIONS(904), + [anon_sym_var] = ACTIONS(906), + [anon_sym_let] = ACTIONS(908), + [anon_sym_const] = ACTIONS(910), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), + [anon_sym_if] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_for] = ACTIONS(916), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(790), - [anon_sym_do] = ACTIONS(792), - [anon_sym_try] = ACTIONS(794), - [anon_sym_break] = ACTIONS(796), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_debugger] = ACTIONS(800), - [anon_sym_return] = ACTIONS(802), - [anon_sym_throw] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_while] = ACTIONS(918), + [anon_sym_do] = ACTIONS(920), + [anon_sym_try] = ACTIONS(922), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_debugger] = ACTIONS(928), + [anon_sym_return] = ACTIONS(930), + [anon_sym_throw] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(934), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(810), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(936), + [anon_sym_async] = ACTIONS(938), + [anon_sym_function] = ACTIONS(940), + [anon_sym_new] = ACTIONS(942), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -49638,143 +49329,144 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(816), - [anon_sym_readonly] = ACTIONS(816), - [anon_sym_get] = ACTIONS(816), - [anon_sym_set] = ACTIONS(816), - [anon_sym_declare] = ACTIONS(818), - [anon_sym_public] = ACTIONS(816), - [anon_sym_private] = ACTIONS(816), - [anon_sym_protected] = ACTIONS(816), - [anon_sym_override] = ACTIONS(816), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(816), - [anon_sym_number] = ACTIONS(816), - [anon_sym_boolean] = ACTIONS(816), - [anon_sym_string] = ACTIONS(816), - [anon_sym_symbol] = ACTIONS(816), - [anon_sym_object] = ACTIONS(816), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(946), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + [anon_sym_object] = ACTIONS(944), + [anon_sym_abstract] = ACTIONS(950), + [anon_sym_interface] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, [122] = { - [sym_export_statement] = STATE(982), - [sym_declaration] = STATE(982), - [sym_import] = STATE(4369), - [sym_import_statement] = STATE(982), - [sym_expression_statement] = STATE(982), - [sym_variable_declaration] = STATE(1105), - [sym_lexical_declaration] = STATE(1105), - [sym_statement_block] = STATE(982), - [sym_if_statement] = STATE(982), - [sym_switch_statement] = STATE(982), - [sym_for_statement] = STATE(982), - [sym_for_in_statement] = STATE(982), - [sym_while_statement] = STATE(982), - [sym_do_statement] = STATE(982), - [sym_try_statement] = STATE(982), - [sym_with_statement] = STATE(982), - [sym_break_statement] = STATE(982), - [sym_continue_statement] = STATE(982), - [sym_debugger_statement] = STATE(982), - [sym_return_statement] = STATE(982), - [sym_throw_statement] = STATE(982), - [sym_empty_statement] = STATE(982), - [sym_labeled_statement] = STATE(982), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2661), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1105), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1105), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1105), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6537), - [sym_string] = STATE(3113), + [sym_export_statement] = STATE(6355), + [sym_declaration] = STATE(6355), + [sym_import] = STATE(4290), + [sym_import_statement] = STATE(6355), + [sym_statement] = STATE(6711), + [sym_expression_statement] = STATE(6355), + [sym_variable_declaration] = STATE(6360), + [sym_lexical_declaration] = STATE(6360), + [sym_statement_block] = STATE(6355), + [sym_if_statement] = STATE(6355), + [sym_switch_statement] = STATE(6355), + [sym_for_statement] = STATE(6355), + [sym_for_in_statement] = STATE(6355), + [sym_while_statement] = STATE(6355), + [sym_do_statement] = STATE(6355), + [sym_try_statement] = STATE(6355), + [sym_with_statement] = STATE(6355), + [sym_break_statement] = STATE(6355), + [sym_continue_statement] = STATE(6355), + [sym_debugger_statement] = STATE(6355), + [sym_return_statement] = STATE(6355), + [sym_throw_statement] = STATE(6355), + [sym_empty_statement] = STATE(6355), + [sym_labeled_statement] = STATE(6355), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(6360), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(6360), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(6360), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6737), + [sym_string] = STATE(2940), [sym_comment] = STATE(122), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_function_signature] = STATE(1105), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1105), - [sym_abstract_class_declaration] = STATE(1105), - [sym_module] = STATE(1105), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1105), - [sym_interface_declaration] = STATE(1105), - [sym_enum_declaration] = STATE(1105), - [sym_type_alias_declaration] = STATE(1105), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4985), - [sym_identifier] = ACTIONS(764), - [anon_sym_export] = ACTIONS(766), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(772), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_function_signature] = STATE(6360), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(6360), + [sym_abstract_class_declaration] = STATE(6360), + [sym_module] = STATE(6360), + [sym_internal_module] = STATE(3162), + [sym_import_alias] = STATE(6360), + [sym_interface_declaration] = STATE(6360), + [sym_enum_declaration] = STATE(6360), + [sym_type_alias_declaration] = STATE(6360), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4795), + [sym_identifier] = ACTIONS(892), + [anon_sym_export] = ACTIONS(894), + [anon_sym_type] = ACTIONS(896), + [anon_sym_namespace] = ACTIONS(898), + [anon_sym_LBRACE] = ACTIONS(900), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(774), - [anon_sym_with] = ACTIONS(776), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(780), - [anon_sym_const] = ACTIONS(782), + [anon_sym_import] = ACTIONS(902), + [anon_sym_with] = ACTIONS(904), + [anon_sym_var] = ACTIONS(906), + [anon_sym_let] = ACTIONS(908), + [anon_sym_const] = ACTIONS(910), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(784), - [anon_sym_switch] = ACTIONS(786), - [anon_sym_for] = ACTIONS(788), + [anon_sym_if] = ACTIONS(912), + [anon_sym_switch] = ACTIONS(914), + [anon_sym_for] = ACTIONS(916), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(790), - [anon_sym_do] = ACTIONS(792), - [anon_sym_try] = ACTIONS(794), - [anon_sym_break] = ACTIONS(796), - [anon_sym_continue] = ACTIONS(798), - [anon_sym_debugger] = ACTIONS(800), - [anon_sym_return] = ACTIONS(802), - [anon_sym_throw] = ACTIONS(804), - [anon_sym_SEMI] = ACTIONS(806), + [anon_sym_while] = ACTIONS(918), + [anon_sym_do] = ACTIONS(920), + [anon_sym_try] = ACTIONS(922), + [anon_sym_break] = ACTIONS(924), + [anon_sym_continue] = ACTIONS(926), + [anon_sym_debugger] = ACTIONS(928), + [anon_sym_return] = ACTIONS(930), + [anon_sym_throw] = ACTIONS(932), + [anon_sym_SEMI] = ACTIONS(934), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(810), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(814), + [anon_sym_class] = ACTIONS(936), + [anon_sym_async] = ACTIONS(938), + [anon_sym_function] = ACTIONS(940), + [anon_sym_new] = ACTIONS(942), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -49796,332 +49488,332 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(816), - [anon_sym_readonly] = ACTIONS(816), - [anon_sym_get] = ACTIONS(816), - [anon_sym_set] = ACTIONS(816), - [anon_sym_declare] = ACTIONS(818), - [anon_sym_public] = ACTIONS(816), - [anon_sym_private] = ACTIONS(816), - [anon_sym_protected] = ACTIONS(816), - [anon_sym_override] = ACTIONS(816), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(816), - [anon_sym_number] = ACTIONS(816), - [anon_sym_boolean] = ACTIONS(816), - [anon_sym_string] = ACTIONS(816), - [anon_sym_symbol] = ACTIONS(816), - [anon_sym_object] = ACTIONS(816), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(946), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_override] = ACTIONS(944), + [anon_sym_module] = ACTIONS(948), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + [anon_sym_object] = ACTIONS(944), + [anon_sym_abstract] = ACTIONS(950), + [anon_sym_interface] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, [123] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2818), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6405), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3103), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(1996), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2401), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1996), + [sym_subscript_expression] = STATE(1996), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2940), [sym_comment] = STATE(123), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(5231), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(5889), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6404), - [aux_sym_array_pattern_repeat1] = STATE(6020), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1996), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), [sym_identifier] = ACTIONS(956), [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(964), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_EQ] = ACTIONS(960), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(958), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_RBRACK] = ACTIONS(976), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(137), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(975), + [anon_sym_function] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(981), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(998), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(985), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1000), + [anon_sym_readonly] = ACTIONS(958), [anon_sym_get] = ACTIONS(958), [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_declare] = ACTIONS(958), [anon_sym_public] = ACTIONS(958), [anon_sym_private] = ACTIONS(958), [anon_sym_protected] = ACTIONS(958), [anon_sym_override] = ACTIONS(958), [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1002), - [anon_sym_number] = ACTIONS(1002), - [anon_sym_boolean] = ACTIONS(1002), - [anon_sym_string] = ACTIONS(1002), - [anon_sym_symbol] = ACTIONS(1002), - [anon_sym_object] = ACTIONS(1002), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_any] = ACTIONS(958), + [anon_sym_number] = ACTIONS(958), + [anon_sym_boolean] = ACTIONS(958), + [anon_sym_string] = ACTIONS(958), + [anon_sym_symbol] = ACTIONS(958), + [anon_sym_object] = ACTIONS(958), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [124] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2818), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6405), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3103), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2670), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(5774), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(3180), [sym_comment] = STATE(124), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(5231), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6241), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6404), - [aux_sym_array_pattern_repeat1] = STATE(6020), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(5167), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6160), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(5776), + [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(989), + [anon_sym_export] = ACTIONS(991), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(1004), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_COMMA] = ACTIONS(997), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), + [anon_sym_let] = ACTIONS(991), [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_RBRACK] = ACTIONS(1006), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_RBRACK] = ACTIONS(1009), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1011), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), + [anon_sym_new] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(181), [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(1029), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(183), [sym_false] = ACTIONS(183), [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(998), + [sym_undefined] = ACTIONS(1031), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1000), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(1033), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1002), - [anon_sym_number] = ACTIONS(1002), - [anon_sym_boolean] = ACTIONS(1002), - [anon_sym_string] = ACTIONS(1002), - [anon_sym_symbol] = ACTIONS(1002), - [anon_sym_object] = ACTIONS(1002), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(1035), + [anon_sym_number] = ACTIONS(1035), + [anon_sym_boolean] = ACTIONS(1035), + [anon_sym_string] = ACTIONS(1035), + [anon_sym_symbol] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1035), [anon_sym_abstract] = ACTIONS(199), [anon_sym_infer] = ACTIONS(201), [anon_sym_keyof] = ACTIONS(203), @@ -50132,153 +49824,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [125] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2818), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6405), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3103), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(6155), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(3180), [sym_comment] = STATE(125), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(5231), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6241), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6404), - [aux_sym_array_pattern_repeat1] = STATE(6020), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(5167), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6160), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(6156), + [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(989), + [anon_sym_export] = ACTIONS(991), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(1004), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_COMMA] = ACTIONS(997), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), + [anon_sym_let] = ACTIONS(991), [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_RBRACK] = ACTIONS(1008), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_RBRACK] = ACTIONS(1037), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1011), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), + [anon_sym_new] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(181), [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(1029), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(183), [sym_false] = ACTIONS(183), [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(998), + [sym_undefined] = ACTIONS(1031), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1000), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(1033), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1002), - [anon_sym_number] = ACTIONS(1002), - [anon_sym_boolean] = ACTIONS(1002), - [anon_sym_string] = ACTIONS(1002), - [anon_sym_symbol] = ACTIONS(1002), - [anon_sym_object] = ACTIONS(1002), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(1035), + [anon_sym_number] = ACTIONS(1035), + [anon_sym_boolean] = ACTIONS(1035), + [anon_sym_string] = ACTIONS(1035), + [anon_sym_symbol] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1035), [anon_sym_abstract] = ACTIONS(199), [anon_sym_infer] = ACTIONS(201), [anon_sym_keyof] = ACTIONS(203), @@ -50289,153 +49981,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [126] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2818), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6405), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3103), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(6155), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(3180), [sym_comment] = STATE(126), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(5231), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6241), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6404), - [aux_sym_array_pattern_repeat1] = STATE(6020), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(5167), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6160), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(6156), + [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(989), + [anon_sym_export] = ACTIONS(991), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(1004), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_COMMA] = ACTIONS(997), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), + [anon_sym_let] = ACTIONS(991), [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_RBRACK] = ACTIONS(1010), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_RBRACK] = ACTIONS(1039), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1011), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), + [anon_sym_new] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(181), [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(1029), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(183), [sym_false] = ACTIONS(183), [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(998), + [sym_undefined] = ACTIONS(1031), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1000), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(1033), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1002), - [anon_sym_number] = ACTIONS(1002), - [anon_sym_boolean] = ACTIONS(1002), - [anon_sym_string] = ACTIONS(1002), - [anon_sym_symbol] = ACTIONS(1002), - [anon_sym_object] = ACTIONS(1002), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(1035), + [anon_sym_number] = ACTIONS(1035), + [anon_sym_boolean] = ACTIONS(1035), + [anon_sym_string] = ACTIONS(1035), + [anon_sym_symbol] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1035), [anon_sym_abstract] = ACTIONS(199), [anon_sym_infer] = ACTIONS(201), [anon_sym_keyof] = ACTIONS(203), @@ -50446,86 +50138,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [127] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2158), - [sym_expression] = STATE(3364), - [sym_primary_expression] = STATE(2594), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2158), - [sym_subscript_expression] = STATE(2158), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(1996), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2401), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1996), + [sym_subscript_expression] = STATE(1996), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2940), [sym_comment] = STATE(127), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2158), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1996), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [aux_sym_object_repeat1] = STATE(5868), + [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_identifier] = ACTIONS(956), + [anon_sym_export] = ACTIONS(958), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_type] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1041), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(958), [anon_sym_BANG] = ACTIONS(174), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(968), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(971), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(975), + [anon_sym_function] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(981), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -50567,8 +50259,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), @@ -50578,335 +50270,335 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_undefined] = ACTIONS(985), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(958), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_declare] = ACTIONS(958), + [anon_sym_public] = ACTIONS(958), + [anon_sym_private] = ACTIONS(958), + [anon_sym_protected] = ACTIONS(958), + [anon_sym_override] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(958), + [anon_sym_number] = ACTIONS(958), + [anon_sym_boolean] = ACTIONS(958), + [anon_sym_string] = ACTIONS(958), + [anon_sym_symbol] = ACTIONS(958), + [anon_sym_object] = ACTIONS(958), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [128] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2808), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6017), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3103), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(1996), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2401), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1996), + [sym_subscript_expression] = STATE(1996), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2940), [sym_comment] = STATE(128), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(5231), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6241), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6018), - [aux_sym_array_pattern_repeat1] = STATE(6020), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1996), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), [sym_identifier] = ACTIONS(956), [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(1004), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_EQ] = ACTIONS(960), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(958), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_RBRACK] = ACTIONS(1045), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(137), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(975), + [anon_sym_function] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(981), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(998), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(985), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1000), + [anon_sym_readonly] = ACTIONS(958), [anon_sym_get] = ACTIONS(958), [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_declare] = ACTIONS(958), [anon_sym_public] = ACTIONS(958), [anon_sym_private] = ACTIONS(958), [anon_sym_protected] = ACTIONS(958), [anon_sym_override] = ACTIONS(958), [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1002), - [anon_sym_number] = ACTIONS(1002), - [anon_sym_boolean] = ACTIONS(1002), - [anon_sym_string] = ACTIONS(1002), - [anon_sym_symbol] = ACTIONS(1002), - [anon_sym_object] = ACTIONS(1002), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_any] = ACTIONS(958), + [anon_sym_number] = ACTIONS(958), + [anon_sym_boolean] = ACTIONS(958), + [anon_sym_string] = ACTIONS(958), + [anon_sym_symbol] = ACTIONS(958), + [anon_sym_object] = ACTIONS(958), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [129] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2818), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6405), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3103), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(6155), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(3180), [sym_comment] = STATE(129), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(5231), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6241), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6404), - [aux_sym_array_pattern_repeat1] = STATE(6020), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(5167), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(5706), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(6156), + [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(989), + [anon_sym_export] = ACTIONS(991), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(1004), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_COMMA] = ACTIONS(1045), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), + [anon_sym_let] = ACTIONS(991), [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1007), [anon_sym_RBRACK] = ACTIONS(1047), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1011), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), + [anon_sym_new] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(181), [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(1029), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(183), [sym_false] = ACTIONS(183), [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(998), + [sym_undefined] = ACTIONS(1031), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1000), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(1033), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1002), - [anon_sym_number] = ACTIONS(1002), - [anon_sym_boolean] = ACTIONS(1002), - [anon_sym_string] = ACTIONS(1002), - [anon_sym_symbol] = ACTIONS(1002), - [anon_sym_object] = ACTIONS(1002), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(1035), + [anon_sym_number] = ACTIONS(1035), + [anon_sym_boolean] = ACTIONS(1035), + [anon_sym_string] = ACTIONS(1035), + [anon_sym_symbol] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1035), [anon_sym_abstract] = ACTIONS(199), [anon_sym_infer] = ACTIONS(201), [anon_sym_keyof] = ACTIONS(203), @@ -50917,153 +50609,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [130] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2818), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6405), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3103), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2670), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(5774), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(3180), [sym_comment] = STATE(130), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(5231), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6241), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6404), - [aux_sym_array_pattern_repeat1] = STATE(6020), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(5167), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6160), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(5776), + [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(989), + [anon_sym_export] = ACTIONS(991), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(1004), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_COMMA] = ACTIONS(997), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), + [anon_sym_let] = ACTIONS(991), [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1007), [anon_sym_RBRACK] = ACTIONS(1049), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1011), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), + [anon_sym_new] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(181), [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(1029), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(183), [sym_false] = ACTIONS(183), [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(998), + [sym_undefined] = ACTIONS(1031), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1000), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(1033), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1002), - [anon_sym_number] = ACTIONS(1002), - [anon_sym_boolean] = ACTIONS(1002), - [anon_sym_string] = ACTIONS(1002), - [anon_sym_symbol] = ACTIONS(1002), - [anon_sym_object] = ACTIONS(1002), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(1035), + [anon_sym_number] = ACTIONS(1035), + [anon_sym_boolean] = ACTIONS(1035), + [anon_sym_string] = ACTIONS(1035), + [anon_sym_symbol] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1035), [anon_sym_abstract] = ACTIONS(199), [anon_sym_infer] = ACTIONS(201), [anon_sym_keyof] = ACTIONS(203), @@ -51074,467 +50766,467 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [131] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2158), - [sym_expression] = STATE(3364), - [sym_primary_expression] = STATE(2594), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2158), - [sym_subscript_expression] = STATE(2158), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(6155), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(3180), [sym_comment] = STATE(131), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2158), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [aux_sym_object_repeat1] = STATE(6165), - [aux_sym_object_pattern_repeat1] = STATE(6171), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1016), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_typeof] = ACTIONS(174), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(5167), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6160), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(6156), + [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(989), + [anon_sym_export] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_COMMA] = ACTIONS(997), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(991), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_RBRACK] = ACTIONS(1051), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1011), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(1029), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(1031), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(1033), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(1035), + [anon_sym_number] = ACTIONS(1035), + [anon_sym_boolean] = ACTIONS(1035), + [anon_sym_string] = ACTIONS(1035), + [anon_sym_symbol] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1035), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(203), + [anon_sym_unique] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [132] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2158), - [sym_expression] = STATE(3364), - [sym_primary_expression] = STATE(2594), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2158), - [sym_subscript_expression] = STATE(2158), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(6155), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(3180), [sym_comment] = STATE(132), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2158), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1016), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_typeof] = ACTIONS(174), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(5167), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6160), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(6156), + [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(989), + [anon_sym_export] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_COMMA] = ACTIONS(997), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(991), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1007), + [anon_sym_RBRACK] = ACTIONS(1053), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1011), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(1029), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(1031), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(1033), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(1035), + [anon_sym_number] = ACTIONS(1035), + [anon_sym_boolean] = ACTIONS(1035), + [anon_sym_string] = ACTIONS(1035), + [anon_sym_symbol] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1035), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(203), + [anon_sym_unique] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, [133] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2818), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6405), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3103), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(6155), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(3180), [sym_comment] = STATE(133), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(5231), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6241), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6404), - [aux_sym_array_pattern_repeat1] = STATE(6020), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(5167), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6160), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(6156), + [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(989), + [anon_sym_export] = ACTIONS(991), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(1004), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_COMMA] = ACTIONS(997), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), + [anon_sym_let] = ACTIONS(991), [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1007), [anon_sym_RBRACK] = ACTIONS(1055), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1011), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), + [anon_sym_new] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(181), [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(1029), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(183), [sym_false] = ACTIONS(183), [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(998), + [sym_undefined] = ACTIONS(1031), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1000), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(1033), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1002), - [anon_sym_number] = ACTIONS(1002), - [anon_sym_boolean] = ACTIONS(1002), - [anon_sym_string] = ACTIONS(1002), - [anon_sym_symbol] = ACTIONS(1002), - [anon_sym_object] = ACTIONS(1002), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(1035), + [anon_sym_number] = ACTIONS(1035), + [anon_sym_boolean] = ACTIONS(1035), + [anon_sym_string] = ACTIONS(1035), + [anon_sym_symbol] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1035), [anon_sym_abstract] = ACTIONS(199), [anon_sym_infer] = ACTIONS(201), [anon_sym_keyof] = ACTIONS(203), @@ -51545,153 +51237,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [134] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2808), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6017), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3103), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(6155), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(3180), [sym_comment] = STATE(134), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(5231), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6241), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6018), - [aux_sym_array_pattern_repeat1] = STATE(6020), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(5167), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6160), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(6156), + [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(989), + [anon_sym_export] = ACTIONS(991), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(1004), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_COMMA] = ACTIONS(997), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), + [anon_sym_let] = ACTIONS(991), [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1007), [anon_sym_RBRACK] = ACTIONS(1057), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1011), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), + [anon_sym_new] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(181), [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(1029), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(183), [sym_false] = ACTIONS(183), [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(998), + [sym_undefined] = ACTIONS(1031), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1000), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(1033), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1002), - [anon_sym_number] = ACTIONS(1002), - [anon_sym_boolean] = ACTIONS(1002), - [anon_sym_string] = ACTIONS(1002), - [anon_sym_symbol] = ACTIONS(1002), - [anon_sym_object] = ACTIONS(1002), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(1035), + [anon_sym_number] = ACTIONS(1035), + [anon_sym_boolean] = ACTIONS(1035), + [anon_sym_string] = ACTIONS(1035), + [anon_sym_symbol] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1035), [anon_sym_abstract] = ACTIONS(199), [anon_sym_infer] = ACTIONS(201), [anon_sym_keyof] = ACTIONS(203), @@ -51702,153 +51394,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [135] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2818), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6405), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3103), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(6155), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(3180), [sym_comment] = STATE(135), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(5231), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6241), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6404), - [aux_sym_array_pattern_repeat1] = STATE(6020), - [sym_identifier] = ACTIONS(956), - [anon_sym_export] = ACTIONS(958), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(5167), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6160), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(6156), + [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(989), + [anon_sym_export] = ACTIONS(991), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(962), - [anon_sym_COMMA] = ACTIONS(1004), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_COMMA] = ACTIONS(997), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), + [anon_sym_let] = ACTIONS(991), [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1007), [anon_sym_RBRACK] = ACTIONS(1059), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1011), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(984), + [anon_sym_new] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1017), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(181), [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(1029), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(183), [sym_false] = ACTIONS(183), [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(998), + [sym_undefined] = ACTIONS(1031), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1000), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(1033), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1002), - [anon_sym_number] = ACTIONS(1002), - [anon_sym_boolean] = ACTIONS(1002), - [anon_sym_string] = ACTIONS(1002), - [anon_sym_symbol] = ACTIONS(1002), - [anon_sym_object] = ACTIONS(1002), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(1035), + [anon_sym_number] = ACTIONS(1035), + [anon_sym_boolean] = ACTIONS(1035), + [anon_sym_string] = ACTIONS(1035), + [anon_sym_symbol] = ACTIONS(1035), + [anon_sym_object] = ACTIONS(1035), [anon_sym_abstract] = ACTIONS(199), [anon_sym_infer] = ACTIONS(201), [anon_sym_keyof] = ACTIONS(203), @@ -51859,72 +51551,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [136] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(136), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5245), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5156), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_COMMA] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(216), + [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(124), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1068), [anon_sym_LTtemplate_GT] = ACTIONS(65), @@ -51935,7 +51627,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(149), [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1071), [anon_sym_using] = ACTIONS(157), @@ -52015,54 +51707,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [137] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(137), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5245), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5080), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), @@ -52142,7 +51834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1076), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1079), + [sym_this] = ACTIONS(1083), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), @@ -52171,54 +51863,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [138] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(138), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5411), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5290), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), @@ -52298,7 +51990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1076), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1083), + [sym_this] = ACTIONS(1085), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), @@ -52327,72 +52019,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [139] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(139), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5045), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(4896), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(213), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(216), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(132), [anon_sym_LPAREN] = ACTIONS(1065), - [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_RPAREN] = ACTIONS(216), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), + [anon_sym_COLON] = ACTIONS(216), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1068), [anon_sym_LTtemplate_GT] = ACTIONS(65), @@ -52403,7 +52095,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(147), [anon_sym_async] = ACTIONS(149), [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1071), [anon_sym_using] = ACTIONS(157), @@ -52454,7 +52146,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1076), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1085), + [sym_this] = ACTIONS(1087), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), @@ -52483,54 +52175,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [140] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(140), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5407), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5283), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), @@ -52610,7 +52302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1076), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1087), + [sym_this] = ACTIONS(1089), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), @@ -52639,54 +52331,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [141] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(141), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5061), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5265), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), @@ -52766,7 +52458,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1076), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1089), + [sym_this] = ACTIONS(1091), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), @@ -52795,54 +52487,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [142] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(142), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5227), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5061), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), @@ -52922,7 +52614,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1076), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1091), + [sym_this] = ACTIONS(1093), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), @@ -52951,54 +52643,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [143] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(143), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5393), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(4896), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), @@ -53078,7 +52770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1076), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1093), + [sym_this] = ACTIONS(1087), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), @@ -53107,85 +52799,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [144] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(144), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_COMMA] = ACTIONS(1105), + [anon_sym_RBRACE] = ACTIONS(1105), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1105), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), + [anon_sym_COLON] = ACTIONS(1105), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_RBRACK] = ACTIONS(1105), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -53212,7 +52904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -53227,10 +52919,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -53238,13 +52930,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), [anon_sym_get] = ACTIONS(1097), [anon_sym_set] = ACTIONS(1097), - [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_QMARK] = ACTIONS(1105), [anon_sym_declare] = ACTIONS(1097), [anon_sym_public] = ACTIONS(1097), [anon_sym_private] = ACTIONS(1097), @@ -53262,85 +52954,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [145] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(145), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1121), + [anon_sym_export] = ACTIONS(1123), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_type] = ACTIONS(1123), + [anon_sym_EQ] = ACTIONS(213), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), + [anon_sym_namespace] = ACTIONS(1125), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_RBRACE] = ACTIONS(216), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), + [anon_sym_let] = ACTIONS(1123), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1119), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(216), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(216), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1119), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(216), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1131), [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1133), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -53367,7 +53059,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -53382,10 +53074,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -53393,109 +53085,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_QMARK] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1123), + [anon_sym_get] = ACTIONS(1123), + [anon_sym_set] = ACTIONS(1123), + [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_declare] = ACTIONS(1123), + [anon_sym_public] = ACTIONS(1123), + [anon_sym_private] = ACTIONS(1123), + [anon_sym_protected] = ACTIONS(1123), + [anon_sym_override] = ACTIONS(1123), + [anon_sym_module] = ACTIONS(1123), + [anon_sym_any] = ACTIONS(1123), + [anon_sym_number] = ACTIONS(1123), + [anon_sym_boolean] = ACTIONS(1123), + [anon_sym_string] = ACTIONS(1123), + [anon_sym_symbol] = ACTIONS(1123), + [anon_sym_object] = ACTIONS(1123), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [146] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(146), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1121), - [anon_sym_export] = ACTIONS(1123), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_RBRACE] = ACTIONS(216), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_RBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1123), + [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(216), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(124), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(216), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1131), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -53522,7 +53214,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -53537,10 +53229,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -53548,76 +53240,384 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_readonly] = ACTIONS(1123), - [anon_sym_get] = ACTIONS(1123), - [anon_sym_set] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(1123), - [anon_sym_public] = ACTIONS(1123), - [anon_sym_private] = ACTIONS(1123), - [anon_sym_protected] = ACTIONS(1123), - [anon_sym_override] = ACTIONS(1123), - [anon_sym_module] = ACTIONS(1123), - [anon_sym_any] = ACTIONS(1123), - [anon_sym_number] = ACTIONS(1123), - [anon_sym_boolean] = ACTIONS(1123), - [anon_sym_string] = ACTIONS(1123), - [anon_sym_symbol] = ACTIONS(1123), - [anon_sym_object] = ACTIONS(1123), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [147] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2368), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym__formal_parameter] = STATE(5763), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7288), + [sym_string] = STATE(3050), [sym_comment] = STATE(147), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5233), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6912), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4958), + [sym_pattern] = STATE(5349), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym_accessibility_modifier] = STATE(399), + [sym_override_modifier] = STATE(433), + [sym_required_parameter] = STATE(6589), + [sym_optional_parameter] = STATE(6589), + [sym__parameter_name] = STATE(4571), + [sym__type] = STATE(5556), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(316), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_typeof] = ACTIONS(1139), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(991), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(1141), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1143), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1011), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1147), + [sym_number] = ACTIONS(1149), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(1151), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(1149), + [sym_false] = ACTIONS(1149), + [sym_null] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1161), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(203), + [anon_sym_unique] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [148] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2323), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym__formal_parameter] = STATE(5763), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7121), + [sym_string] = STATE(3050), + [sym_comment] = STATE(148), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4958), + [sym_pattern] = STATE(5349), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym_accessibility_modifier] = STATE(399), + [sym_override_modifier] = STATE(433), + [sym_required_parameter] = STATE(6589), + [sym_optional_parameter] = STATE(6589), + [sym__parameter_name] = STATE(4571), + [sym__type] = STATE(5602), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(316), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_typeof] = ACTIONS(1139), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(991), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(1141), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1143), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1011), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1147), + [sym_number] = ACTIONS(1149), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(1151), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(1149), + [sym_false] = ACTIONS(1149), + [sym_null] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1161), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(203), + [anon_sym_unique] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [149] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(149), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(5172), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6565), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1121), [anon_sym_export] = ACTIONS(1123), [anon_sym_STAR] = ACTIONS(118), @@ -53631,7 +53631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1123), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_RPAREN] = ACTIONS(216), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), @@ -53641,7 +53641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(216), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), @@ -53676,7 +53676,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -53691,10 +53691,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -53702,7 +53702,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1123), [anon_sym_readonly] = ACTIONS(1123), @@ -53725,86 +53725,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [148] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(148), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1121), - [anon_sym_export] = ACTIONS(1123), + [150] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2323), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym__formal_parameter] = STATE(5763), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7121), + [sym_string] = STATE(3050), + [sym_comment] = STATE(150), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4958), + [sym_pattern] = STATE(5349), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym_accessibility_modifier] = STATE(399), + [sym_override_modifier] = STATE(433), + [sym_required_parameter] = STATE(6589), + [sym_optional_parameter] = STATE(6589), + [sym__parameter_name] = STATE(4571), + [sym__type] = STATE(5556), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(316), + [sym_identifier] = ACTIONS(1135), + [anon_sym_export] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1137), + [anon_sym_typeof] = ACTIONS(1139), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(991), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(1141), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1143), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1011), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1013), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1147), + [sym_number] = ACTIONS(1149), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(1151), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(1149), + [sym_false] = ACTIONS(1149), + [sym_null] = ACTIONS(1149), + [sym_undefined] = ACTIONS(1153), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(1157), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1161), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(1163), + [anon_sym_number] = ACTIONS(1163), + [anon_sym_boolean] = ACTIONS(1163), + [anon_sym_string] = ACTIONS(1163), + [anon_sym_symbol] = ACTIONS(1163), + [anon_sym_object] = ACTIONS(1163), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(203), + [anon_sym_unique] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [151] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(151), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1135), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1123), + [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_RPAREN] = ACTIONS(118), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1131), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -53831,7 +53985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -53846,10 +54000,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -53857,234 +54011,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_readonly] = ACTIONS(1123), - [anon_sym_get] = ACTIONS(1123), - [anon_sym_set] = ACTIONS(1123), - [anon_sym_declare] = ACTIONS(1123), - [anon_sym_public] = ACTIONS(1123), - [anon_sym_private] = ACTIONS(1123), - [anon_sym_protected] = ACTIONS(1123), - [anon_sym_override] = ACTIONS(1123), - [anon_sym_module] = ACTIONS(1123), - [anon_sym_any] = ACTIONS(1123), - [anon_sym_number] = ACTIONS(1123), - [anon_sym_boolean] = ACTIONS(1123), - [anon_sym_string] = ACTIONS(1123), - [anon_sym_symbol] = ACTIONS(1123), - [anon_sym_object] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [149] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2510), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym__formal_parameter] = STATE(6002), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7600), - [sym_string] = STATE(3327), - [sym_comment] = STATE(149), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(5319), - [sym_pattern] = STATE(5367), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym_accessibility_modifier] = STATE(391), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(7169), - [sym_optional_parameter] = STATE(7169), - [sym__parameter_name] = STATE(4673), - [sym__type] = STATE(5731), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1137), - [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_typeof] = ACTIONS(1141), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1149), - [sym_number] = ACTIONS(1151), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(1153), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [sym_null] = ACTIONS(1151), - [sym_undefined] = ACTIONS(1155), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(1161), - [anon_sym_private] = ACTIONS(1161), - [anon_sym_protected] = ACTIONS(1161), - [anon_sym_override] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1165), - [anon_sym_number] = ACTIONS(1165), - [anon_sym_boolean] = ACTIONS(1165), - [anon_sym_string] = ACTIONS(1165), - [anon_sym_symbol] = ACTIONS(1165), - [anon_sym_object] = ACTIONS(1165), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [150] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(150), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5233), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6912), - [aux_sym_export_statement_repeat1] = STATE(5694), + [152] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(152), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(5172), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6565), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1121), [anon_sym_export] = ACTIONS(1123), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1135), + [anon_sym_EQ] = ACTIONS(1165), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1125), [anon_sym_LBRACE] = ACTIONS(1127), @@ -54094,7 +54094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1123), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_RPAREN] = ACTIONS(118), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), @@ -54104,7 +54104,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), @@ -54139,7 +54139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -54154,10 +54154,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -54165,7 +54165,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1123), [anon_sym_readonly] = ACTIONS(1123), @@ -54187,86 +54187,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [151] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(151), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [153] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(153), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1121), + [anon_sym_export] = ACTIONS(1123), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_type] = ACTIONS(1123), + [anon_sym_EQ] = ACTIONS(1165), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1125), + [anon_sym_LBRACE] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), + [anon_sym_let] = ACTIONS(1123), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_RPAREN] = ACTIONS(118), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1131), [anon_sym_function] = ACTIONS(151), [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1133), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -54293,7 +54293,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -54308,10 +54308,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -54319,569 +54319,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1123), + [anon_sym_get] = ACTIONS(1123), + [anon_sym_set] = ACTIONS(1123), + [anon_sym_declare] = ACTIONS(1123), + [anon_sym_public] = ACTIONS(1123), + [anon_sym_private] = ACTIONS(1123), + [anon_sym_protected] = ACTIONS(1123), + [anon_sym_override] = ACTIONS(1123), + [anon_sym_module] = ACTIONS(1123), + [anon_sym_any] = ACTIONS(1123), + [anon_sym_number] = ACTIONS(1123), + [anon_sym_boolean] = ACTIONS(1123), + [anon_sym_string] = ACTIONS(1123), + [anon_sym_symbol] = ACTIONS(1123), + [anon_sym_object] = ACTIONS(1123), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [152] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym__formal_parameter] = STATE(6002), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7244), - [sym_string] = STATE(3327), - [sym_comment] = STATE(152), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(5319), - [sym_pattern] = STATE(5367), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym_accessibility_modifier] = STATE(391), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(7169), - [sym_optional_parameter] = STATE(7169), - [sym__parameter_name] = STATE(4673), - [sym__type] = STATE(5731), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1137), - [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_typeof] = ACTIONS(1141), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1149), - [sym_number] = ACTIONS(1151), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(1153), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [sym_null] = ACTIONS(1151), - [sym_undefined] = ACTIONS(1155), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(1161), - [anon_sym_private] = ACTIONS(1161), - [anon_sym_protected] = ACTIONS(1161), - [anon_sym_override] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1165), - [anon_sym_number] = ACTIONS(1165), - [anon_sym_boolean] = ACTIONS(1165), - [anon_sym_string] = ACTIONS(1165), - [anon_sym_symbol] = ACTIONS(1165), - [anon_sym_object] = ACTIONS(1165), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [153] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym__formal_parameter] = STATE(6002), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7244), - [sym_string] = STATE(3327), - [sym_comment] = STATE(153), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(5319), - [sym_pattern] = STATE(5367), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym_accessibility_modifier] = STATE(391), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(7169), - [sym_optional_parameter] = STATE(7169), - [sym__parameter_name] = STATE(4673), - [sym__type] = STATE(5690), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1137), - [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1139), - [anon_sym_typeof] = ACTIONS(1141), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1145), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(980), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1149), - [sym_number] = ACTIONS(1151), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(1153), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [sym_null] = ACTIONS(1151), - [sym_undefined] = ACTIONS(1155), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1159), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(1161), - [anon_sym_private] = ACTIONS(1161), - [anon_sym_protected] = ACTIONS(1161), - [anon_sym_override] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1165), - [anon_sym_number] = ACTIONS(1165), - [anon_sym_boolean] = ACTIONS(1165), - [anon_sym_string] = ACTIONS(1165), - [anon_sym_symbol] = ACTIONS(1165), - [anon_sym_object] = ACTIONS(1165), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, [154] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2158), - [sym_expression] = STATE(3364), - [sym_primary_expression] = STATE(2594), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2158), - [sym_subscript_expression] = STATE(2158), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym__formal_parameter] = STATE(5763), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(3180), [sym_comment] = STATE(154), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2158), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1167), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [155] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym__formal_parameter] = STATE(6002), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3103), - [sym_comment] = STATE(155), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(5319), - [sym_pattern] = STATE(5367), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym_accessibility_modifier] = STATE(391), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4958), + [sym_pattern] = STATE(5349), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym_accessibility_modifier] = STATE(399), [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(7169), - [sym_optional_parameter] = STATE(7169), - [sym__parameter_name] = STATE(4673), - [sym__type] = STATE(5731), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(339), + [sym_required_parameter] = STATE(6589), + [sym_optional_parameter] = STATE(6589), + [sym__parameter_name] = STATE(4571), + [sym__type] = STATE(5446), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(316), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), @@ -54894,7 +54433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(174), [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_RPAREN] = ACTIONS(1141), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(141), @@ -54911,34 +54450,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(167), [anon_sym_DASH] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(176), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(181), [sym_number] = ACTIONS(183), [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1169), + [sym_this] = ACTIONS(1167), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(183), [sym_false] = ACTIONS(183), [sym_null] = ACTIONS(183), [sym_undefined] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(1157), + [anon_sym_AT] = ACTIONS(1155), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1171), + [anon_sym_readonly] = ACTIONS(1169), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_QMARK] = ACTIONS(195), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_override] = ACTIONS(1175), + [anon_sym_public] = ACTIONS(1171), + [anon_sym_private] = ACTIONS(1171), + [anon_sym_protected] = ACTIONS(1171), + [anon_sym_override] = ACTIONS(1173), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(197), [anon_sym_number] = ACTIONS(197), @@ -54955,84 +54494,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [156] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2158), - [sym_expression] = STATE(3364), - [sym_primary_expression] = STATE(2594), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2158), - [sym_subscript_expression] = STATE(2158), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3113), - [sym_comment] = STATE(156), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2158), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), + [155] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(155), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(5172), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6565), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_COMMA] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1177), + [anon_sym_COLON] = ACTIONS(124), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -55059,7 +54598,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -55074,271 +54613,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [157] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym__formal_parameter] = STATE(6002), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3103), - [sym_comment] = STATE(157), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(5319), - [sym_pattern] = STATE(5367), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym_accessibility_modifier] = STATE(391), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(7169), - [sym_optional_parameter] = STATE(7169), - [sym__parameter_name] = STATE(4673), - [sym__type] = STATE(5690), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(126), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(141), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(155), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(176), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1169), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1171), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(197), - [anon_sym_number] = ACTIONS(197), - [anon_sym_boolean] = ACTIONS(197), - [anon_sym_string] = ACTIONS(197), - [anon_sym_symbol] = ACTIONS(197), - [anon_sym_object] = ACTIONS(197), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [158] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2158), - [sym_expression] = STATE(3364), - [sym_primary_expression] = STATE(2594), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2158), - [sym_subscript_expression] = STATE(2158), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3113), - [sym_comment] = STATE(158), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2158), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), + [156] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(1996), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2401), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1996), + [sym_subscript_expression] = STATE(1996), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2940), + [sym_comment] = STATE(156), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1996), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(956), + [anon_sym_export] = ACTIONS(958), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_type] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(958), [anon_sym_BANG] = ACTIONS(174), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1179), + [anon_sym_COLON] = ACTIONS(1177), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(971), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(975), + [anon_sym_function] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(981), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -55380,8 +54766,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), @@ -55391,107 +54777,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_undefined] = ACTIONS(985), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(958), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_declare] = ACTIONS(958), + [anon_sym_public] = ACTIONS(958), + [anon_sym_private] = ACTIONS(958), + [anon_sym_protected] = ACTIONS(958), + [anon_sym_override] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(958), + [anon_sym_number] = ACTIONS(958), + [anon_sym_boolean] = ACTIONS(958), + [anon_sym_string] = ACTIONS(958), + [anon_sym_symbol] = ACTIONS(958), + [anon_sym_object] = ACTIONS(958), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [159] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(159), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [157] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(157), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(971), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(1179), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -55518,7 +54904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -55533,10 +54919,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -55544,7 +54930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -55567,239 +54953,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [160] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2158), - [sym_expression] = STATE(3364), - [sym_primary_expression] = STATE(2594), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2158), - [sym_subscript_expression] = STATE(2158), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3113), - [sym_comment] = STATE(160), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2158), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1181), - [anon_sym_export] = ACTIONS(1183), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1183), - [anon_sym_EQ] = ACTIONS(1185), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1187), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1183), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1189), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1191), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1193), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1183), - [anon_sym_readonly] = ACTIONS(1183), - [anon_sym_get] = ACTIONS(1183), - [anon_sym_set] = ACTIONS(1183), - [anon_sym_declare] = ACTIONS(1183), - [anon_sym_public] = ACTIONS(1183), - [anon_sym_private] = ACTIONS(1183), - [anon_sym_protected] = ACTIONS(1183), - [anon_sym_override] = ACTIONS(1183), - [anon_sym_module] = ACTIONS(1183), - [anon_sym_any] = ACTIONS(1183), - [anon_sym_number] = ACTIONS(1183), - [anon_sym_boolean] = ACTIONS(1183), - [anon_sym_string] = ACTIONS(1183), - [anon_sym_symbol] = ACTIONS(1183), - [anon_sym_object] = ACTIONS(1183), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [161] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym__formal_parameter] = STATE(6002), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3103), - [sym_comment] = STATE(161), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(5319), - [sym_pattern] = STATE(5367), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym_accessibility_modifier] = STATE(391), + [158] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym__formal_parameter] = STATE(5763), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(3180), + [sym_comment] = STATE(158), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4958), + [sym_pattern] = STATE(5349), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym_accessibility_modifier] = STATE(399), [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(7169), - [sym_optional_parameter] = STATE(7169), - [sym__parameter_name] = STATE(4673), - [sym__type] = STATE(5657), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(339), + [sym_required_parameter] = STATE(6589), + [sym_optional_parameter] = STATE(6589), + [sym__parameter_name] = STATE(4571), + [sym__type] = STATE(5462), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(316), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), @@ -55812,7 +55045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(174), [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_RPAREN] = ACTIONS(1141), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(141), @@ -55829,34 +55062,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(167), [anon_sym_DASH] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(176), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(181), [sym_number] = ACTIONS(183), [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1169), + [sym_this] = ACTIONS(1167), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(183), [sym_false] = ACTIONS(183), [sym_null] = ACTIONS(183), [sym_undefined] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(1157), + [anon_sym_AT] = ACTIONS(1155), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1171), + [anon_sym_readonly] = ACTIONS(1169), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_QMARK] = ACTIONS(195), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_override] = ACTIONS(1175), + [anon_sym_public] = ACTIONS(1171), + [anon_sym_private] = ACTIONS(1171), + [anon_sym_protected] = ACTIONS(1171), + [anon_sym_override] = ACTIONS(1173), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(197), [anon_sym_number] = ACTIONS(197), @@ -55873,66 +55106,66 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [162] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2158), - [sym_expression] = STATE(3364), - [sym_primary_expression] = STATE(2594), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2158), - [sym_subscript_expression] = STATE(2158), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3113), - [sym_comment] = STATE(162), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5233), - [sym_non_null_expression] = STATE(2158), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6912), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), + [159] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(1996), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2401), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1996), + [sym_subscript_expression] = STATE(1996), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2940), + [sym_comment] = STATE(159), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(5172), + [sym_non_null_expression] = STATE(1996), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6565), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(956), + [anon_sym_export] = ACTIONS(958), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_type] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(958), [anon_sym_BANG] = ACTIONS(174), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(137), @@ -55942,15 +55175,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(971), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(975), + [anon_sym_function] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(981), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -55992,8 +55225,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), @@ -56003,260 +55236,260 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_undefined] = ACTIONS(985), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(958), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_declare] = ACTIONS(958), + [anon_sym_public] = ACTIONS(958), + [anon_sym_private] = ACTIONS(958), + [anon_sym_protected] = ACTIONS(958), + [anon_sym_override] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(958), + [anon_sym_number] = ACTIONS(958), + [anon_sym_boolean] = ACTIONS(958), + [anon_sym_string] = ACTIONS(958), + [anon_sym_symbol] = ACTIONS(958), + [anon_sym_object] = ACTIONS(958), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [163] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym__formal_parameter] = STATE(6002), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3103), - [sym_comment] = STATE(163), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(5319), - [sym_pattern] = STATE(5367), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym_accessibility_modifier] = STATE(391), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(7169), - [sym_optional_parameter] = STATE(7169), - [sym__parameter_name] = STATE(4673), - [sym__type] = STATE(5581), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(126), + [160] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(1996), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2401), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1996), + [sym_subscript_expression] = STATE(1996), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2940), + [sym_comment] = STATE(160), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1996), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1181), + [anon_sym_export] = ACTIONS(1183), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1183), + [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1187), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(130), + [anon_sym_let] = ACTIONS(1183), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(137), + [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(155), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1189), + [anon_sym_function] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1179), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(1191), [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(176), + [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1169), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1171), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(197), - [anon_sym_number] = ACTIONS(197), - [anon_sym_boolean] = ACTIONS(197), - [anon_sym_string] = ACTIONS(197), - [anon_sym_symbol] = ACTIONS(197), - [anon_sym_object] = ACTIONS(197), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(985), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1183), + [anon_sym_readonly] = ACTIONS(1183), + [anon_sym_get] = ACTIONS(1183), + [anon_sym_set] = ACTIONS(1183), + [anon_sym_declare] = ACTIONS(1183), + [anon_sym_public] = ACTIONS(1183), + [anon_sym_private] = ACTIONS(1183), + [anon_sym_protected] = ACTIONS(1183), + [anon_sym_override] = ACTIONS(1183), + [anon_sym_module] = ACTIONS(1183), + [anon_sym_any] = ACTIONS(1183), + [anon_sym_number] = ACTIONS(1183), + [anon_sym_boolean] = ACTIONS(1183), + [anon_sym_string] = ACTIONS(1183), + [anon_sym_symbol] = ACTIONS(1183), + [anon_sym_object] = ACTIONS(1183), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [164] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2158), - [sym_expression] = STATE(3364), - [sym_primary_expression] = STATE(2594), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2158), - [sym_subscript_expression] = STATE(2158), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3113), - [sym_comment] = STATE(164), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2158), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), + [161] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(1996), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2401), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1996), + [sym_subscript_expression] = STATE(1996), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2940), + [sym_comment] = STATE(161), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1996), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(956), + [anon_sym_export] = ACTIONS(958), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_type] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(958), [anon_sym_BANG] = ACTIONS(174), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1197), + [anon_sym_COLON] = ACTIONS(1195), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(971), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(975), + [anon_sym_function] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(981), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -56298,8 +55531,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), @@ -56309,260 +55542,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_undefined] = ACTIONS(985), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(958), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_declare] = ACTIONS(958), + [anon_sym_public] = ACTIONS(958), + [anon_sym_private] = ACTIONS(958), + [anon_sym_protected] = ACTIONS(958), + [anon_sym_override] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(958), + [anon_sym_number] = ACTIONS(958), + [anon_sym_boolean] = ACTIONS(958), + [anon_sym_string] = ACTIONS(958), + [anon_sym_symbol] = ACTIONS(958), + [anon_sym_object] = ACTIONS(958), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [165] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym__formal_parameter] = STATE(6002), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3103), - [sym_comment] = STATE(165), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(5319), - [sym_pattern] = STATE(5367), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym_accessibility_modifier] = STATE(391), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(7169), - [sym_optional_parameter] = STATE(7169), - [sym__parameter_name] = STATE(4673), - [sym__type] = STATE(5573), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(126), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(141), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(155), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(167), - [anon_sym_DASH] = ACTIONS(167), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(176), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(181), - [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1169), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(183), - [sym_false] = ACTIONS(183), - [sym_null] = ACTIONS(183), - [sym_undefined] = ACTIONS(191), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1171), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(197), - [anon_sym_number] = ACTIONS(197), - [anon_sym_boolean] = ACTIONS(197), - [anon_sym_string] = ACTIONS(197), - [anon_sym_symbol] = ACTIONS(197), - [anon_sym_object] = ACTIONS(197), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [166] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2158), - [sym_expression] = STATE(3364), - [sym_primary_expression] = STATE(2594), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2158), - [sym_subscript_expression] = STATE(2158), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3113), - [sym_comment] = STATE(166), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2158), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), + [162] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(1996), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2401), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1996), + [sym_subscript_expression] = STATE(1996), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2940), + [sym_comment] = STATE(162), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1996), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(956), + [anon_sym_export] = ACTIONS(958), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_type] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(958), [anon_sym_BANG] = ACTIONS(174), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1199), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(971), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(975), + [anon_sym_function] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(981), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -56604,8 +55684,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), @@ -56615,107 +55695,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_undefined] = ACTIONS(985), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(958), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_declare] = ACTIONS(958), + [anon_sym_public] = ACTIONS(958), + [anon_sym_private] = ACTIONS(958), + [anon_sym_protected] = ACTIONS(958), + [anon_sym_override] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(958), + [anon_sym_number] = ACTIONS(958), + [anon_sym_boolean] = ACTIONS(958), + [anon_sym_string] = ACTIONS(958), + [anon_sym_symbol] = ACTIONS(958), + [anon_sym_object] = ACTIONS(958), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [167] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(167), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5233), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6912), - [aux_sym_export_statement_repeat1] = STATE(5694), + [163] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(163), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(971), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -56742,7 +55822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -56757,10 +55837,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -56768,13 +55848,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), [anon_sym_get] = ACTIONS(1097), [anon_sym_set] = ACTIONS(1097), - [anon_sym_QMARK] = ACTIONS(124), [anon_sym_declare] = ACTIONS(1097), [anon_sym_public] = ACTIONS(1097), [anon_sym_private] = ACTIONS(1097), @@ -56788,87 +55867,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1097), [anon_sym_object] = ACTIONS(1097), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [168] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2158), - [sym_expression] = STATE(3364), - [sym_primary_expression] = STATE(2594), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2158), - [sym_subscript_expression] = STATE(2158), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3113), - [sym_comment] = STATE(168), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2158), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), + [164] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(1996), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2401), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1996), + [sym_subscript_expression] = STATE(1996), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2940), + [sym_comment] = STATE(164), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1996), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(956), + [anon_sym_export] = ACTIONS(958), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_type] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(958), [anon_sym_BANG] = ACTIONS(174), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1201), + [anon_sym_COLON] = ACTIONS(1197), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(971), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(975), + [anon_sym_function] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(981), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -56910,8 +55990,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), @@ -56921,76 +56001,382 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_undefined] = ACTIONS(985), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(958), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_declare] = ACTIONS(958), + [anon_sym_public] = ACTIONS(958), + [anon_sym_private] = ACTIONS(958), + [anon_sym_protected] = ACTIONS(958), + [anon_sym_override] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(958), + [anon_sym_number] = ACTIONS(958), + [anon_sym_boolean] = ACTIONS(958), + [anon_sym_string] = ACTIONS(958), + [anon_sym_symbol] = ACTIONS(958), + [anon_sym_object] = ACTIONS(958), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [169] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2158), - [sym_expression] = STATE(3364), - [sym_primary_expression] = STATE(2594), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2158), - [sym_subscript_expression] = STATE(2158), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3113), - [sym_comment] = STATE(169), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5233), - [sym_non_null_expression] = STATE(2158), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6912), - [aux_sym_export_statement_repeat1] = STATE(5555), + [165] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym__formal_parameter] = STATE(5763), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(3180), + [sym_comment] = STATE(165), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4958), + [sym_pattern] = STATE(5349), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym_accessibility_modifier] = STATE(399), + [sym_override_modifier] = STATE(433), + [sym_required_parameter] = STATE(6589), + [sym_optional_parameter] = STATE(6589), + [sym__parameter_name] = STATE(4571), + [sym__type] = STATE(5556), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(316), + [sym_identifier] = ACTIONS(109), + [anon_sym_export] = ACTIONS(111), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(122), + [anon_sym_typeof] = ACTIONS(126), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(111), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(1141), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(155), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1167), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(191), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1169), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1171), + [anon_sym_private] = ACTIONS(1171), + [anon_sym_protected] = ACTIONS(1171), + [anon_sym_override] = ACTIONS(1173), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(197), + [anon_sym_number] = ACTIONS(197), + [anon_sym_boolean] = ACTIONS(197), + [anon_sym_string] = ACTIONS(197), + [anon_sym_symbol] = ACTIONS(197), + [anon_sym_object] = ACTIONS(197), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(203), + [anon_sym_unique] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [166] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym__formal_parameter] = STATE(5763), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(3180), + [sym_comment] = STATE(166), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4958), + [sym_pattern] = STATE(5349), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym_accessibility_modifier] = STATE(399), + [sym_override_modifier] = STATE(433), + [sym_required_parameter] = STATE(6589), + [sym_optional_parameter] = STATE(6589), + [sym__parameter_name] = STATE(4571), + [sym__type] = STATE(5602), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(316), + [sym_identifier] = ACTIONS(109), + [anon_sym_export] = ACTIONS(111), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(122), + [anon_sym_typeof] = ACTIONS(126), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(111), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(1141), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(141), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(155), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1167), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(191), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1169), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1171), + [anon_sym_private] = ACTIONS(1171), + [anon_sym_protected] = ACTIONS(1171), + [anon_sym_override] = ACTIONS(1173), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(197), + [anon_sym_number] = ACTIONS(197), + [anon_sym_boolean] = ACTIONS(197), + [anon_sym_string] = ACTIONS(197), + [anon_sym_symbol] = ACTIONS(197), + [anon_sym_object] = ACTIONS(197), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(203), + [anon_sym_unique] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [167] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(1996), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2401), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1996), + [sym_subscript_expression] = STATE(1996), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2940), + [sym_comment] = STATE(167), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(5172), + [sym_non_null_expression] = STATE(1996), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6565), + [aux_sym_export_statement_repeat1] = STATE(5470), [sym_identifier] = ACTIONS(1181), [anon_sym_export] = ACTIONS(1183), [anon_sym_STAR] = ACTIONS(118), @@ -56998,7 +56384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1185), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1187), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), @@ -57013,15 +56399,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(971), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), + [anon_sym_class] = ACTIONS(973), [anon_sym_async] = ACTIONS(1189), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1191), + [anon_sym_function] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(1179), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1193), + [anon_sym_new] = ACTIONS(1191), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -57048,7 +56434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -57063,8 +56449,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), @@ -57074,7 +56460,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_undefined] = ACTIONS(985), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1183), [anon_sym_readonly] = ACTIONS(1183), @@ -57097,84 +56483,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [170] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2158), - [sym_expression] = STATE(3364), - [sym_primary_expression] = STATE(2594), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2158), - [sym_subscript_expression] = STATE(2158), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3113), - [sym_comment] = STATE(170), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2158), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), + [168] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(1996), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2401), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1996), + [sym_subscript_expression] = STATE(1996), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2940), + [sym_comment] = STATE(168), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1996), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(956), + [anon_sym_export] = ACTIONS(958), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_type] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(958), [anon_sym_BANG] = ACTIONS(174), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_of] = ACTIONS(1206), + [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1199), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(971), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(975), + [anon_sym_function] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(981), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -57216,8 +56602,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), @@ -57227,107 +56613,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_undefined] = ACTIONS(985), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [171] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(171), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(958), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_declare] = ACTIONS(958), + [anon_sym_public] = ACTIONS(958), + [anon_sym_private] = ACTIONS(958), + [anon_sym_protected] = ACTIONS(958), + [anon_sym_override] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(958), + [anon_sym_number] = ACTIONS(958), + [anon_sym_boolean] = ACTIONS(958), + [anon_sym_string] = ACTIONS(958), + [anon_sym_symbol] = ACTIONS(958), + [anon_sym_object] = ACTIONS(958), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(211), + [sym_html_comment] = ACTIONS(5), + }, + [169] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(1996), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2401), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1996), + [sym_subscript_expression] = STATE(1996), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2940), + [sym_comment] = STATE(169), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1996), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(956), + [anon_sym_export] = ACTIONS(958), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_type] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), + [anon_sym_let] = ACTIONS(958), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1201), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1191), + [anon_sym_DOT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(975), + [anon_sym_function] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(981), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -57354,7 +56740,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -57369,118 +56755,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(985), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(958), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_declare] = ACTIONS(958), + [anon_sym_public] = ACTIONS(958), + [anon_sym_private] = ACTIONS(958), + [anon_sym_protected] = ACTIONS(958), + [anon_sym_override] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(958), + [anon_sym_number] = ACTIONS(958), + [anon_sym_boolean] = ACTIONS(958), + [anon_sym_string] = ACTIONS(958), + [anon_sym_symbol] = ACTIONS(958), + [anon_sym_object] = ACTIONS(958), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [172] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(172), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1121), - [anon_sym_export] = ACTIONS(1123), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1135), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1125), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(1208), - [anon_sym_RBRACE] = ACTIONS(1208), - [anon_sym_typeof] = ACTIONS(174), + [170] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym__formal_parameter] = STATE(5763), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(3180), + [sym_comment] = STATE(170), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4958), + [sym_pattern] = STATE(5349), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym_accessibility_modifier] = STATE(399), + [sym_override_modifier] = STATE(433), + [sym_required_parameter] = STATE(6589), + [sym_optional_parameter] = STATE(6589), + [sym__parameter_name] = STATE(4571), + [sym__type] = STATE(5471), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(316), + [sym_identifier] = ACTIONS(109), + [anon_sym_export] = ACTIONS(111), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(122), + [anon_sym_typeof] = ACTIONS(126), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1123), + [anon_sym_let] = ACTIONS(111), + [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_RPAREN] = ACTIONS(1141), [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(1208), + [anon_sym_LBRACK] = ACTIONS(141), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1131), + [anon_sym_async] = ACTIONS(149), [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_new] = ACTIONS(155), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(167), + [anon_sym_DASH] = ACTIONS(167), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(181), + [sym_number] = ACTIONS(183), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1167), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(183), + [sym_false] = ACTIONS(183), + [sym_null] = ACTIONS(183), + [sym_undefined] = ACTIONS(191), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1169), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1171), + [anon_sym_private] = ACTIONS(1171), + [anon_sym_protected] = ACTIONS(1171), + [anon_sym_override] = ACTIONS(1173), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(197), + [anon_sym_number] = ACTIONS(197), + [anon_sym_boolean] = ACTIONS(197), + [anon_sym_string] = ACTIONS(197), + [anon_sym_symbol] = ACTIONS(197), + [anon_sym_object] = ACTIONS(197), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(203), + [anon_sym_unique] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [171] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(1996), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2401), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1996), + [sym_subscript_expression] = STATE(1996), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2940), + [sym_comment] = STATE(171), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1996), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(956), + [anon_sym_export] = ACTIONS(958), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(958), + [anon_sym_EQ] = ACTIONS(1175), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(962), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(958), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(137), + [anon_sym_in] = ACTIONS(1203), + [anon_sym_of] = ACTIONS(1206), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(975), + [anon_sym_function] = ACTIONS(977), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1133), + [anon_sym_new] = ACTIONS(981), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -57507,7 +57046,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -57522,109 +57061,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(985), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1123), - [anon_sym_readonly] = ACTIONS(1123), - [anon_sym_get] = ACTIONS(1123), - [anon_sym_set] = ACTIONS(1123), - [anon_sym_declare] = ACTIONS(1123), - [anon_sym_public] = ACTIONS(1123), - [anon_sym_private] = ACTIONS(1123), - [anon_sym_protected] = ACTIONS(1123), - [anon_sym_override] = ACTIONS(1123), - [anon_sym_module] = ACTIONS(1123), - [anon_sym_any] = ACTIONS(1123), - [anon_sym_number] = ACTIONS(1123), - [anon_sym_boolean] = ACTIONS(1123), - [anon_sym_string] = ACTIONS(1123), - [anon_sym_symbol] = ACTIONS(1123), - [anon_sym_object] = ACTIONS(1123), + [anon_sym_static] = ACTIONS(958), + [anon_sym_readonly] = ACTIONS(958), + [anon_sym_get] = ACTIONS(958), + [anon_sym_set] = ACTIONS(958), + [anon_sym_declare] = ACTIONS(958), + [anon_sym_public] = ACTIONS(958), + [anon_sym_private] = ACTIONS(958), + [anon_sym_protected] = ACTIONS(958), + [anon_sym_override] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_any] = ACTIONS(958), + [anon_sym_number] = ACTIONS(958), + [anon_sym_boolean] = ACTIONS(958), + [anon_sym_string] = ACTIONS(958), + [anon_sym_symbol] = ACTIONS(958), + [anon_sym_object] = ACTIONS(958), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [173] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(173), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5233), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6912), - [aux_sym_export_statement_repeat1] = STATE(5694), + [172] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(172), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1121), [anon_sym_export] = ACTIONS(1123), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1123), - [anon_sym_EQ] = ACTIONS(1135), + [anon_sym_EQ] = ACTIONS(1165), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1125), [anon_sym_LBRACE] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(1208), + [anon_sym_RBRACE] = ACTIONS(1208), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1123), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1119), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_RBRACK] = ACTIONS(1208), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), @@ -57659,7 +57199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -57674,10 +57214,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -57685,7 +57225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1123), [anon_sym_readonly] = ACTIONS(1123), @@ -57707,53 +57247,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [174] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(174), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [173] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(173), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1211), [anon_sym_export] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(118), @@ -57767,7 +57307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1213), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(1220), @@ -57776,7 +57316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(216), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), @@ -57811,7 +57351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -57826,10 +57366,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -57837,7 +57377,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1213), [anon_sym_readonly] = ACTIONS(1213), @@ -57859,82 +57399,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [175] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2158), - [sym_expression] = STATE(3364), - [sym_primary_expression] = STATE(2594), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2158), - [sym_subscript_expression] = STATE(2158), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3113), - [sym_comment] = STATE(175), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2158), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1228), - [anon_sym_export] = ACTIONS(1230), + [174] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(174), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(5172), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6565), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1121), + [anon_sym_export] = ACTIONS(1123), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_EQ] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(1123), + [anon_sym_EQ] = ACTIONS(1165), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(1125), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(1208), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1230), + [anon_sym_let] = ACTIONS(1123), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1105), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(1208), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1236), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1238), + [anon_sym_DOT] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1131), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1240), + [anon_sym_new] = ACTIONS(1133), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -57961,7 +57503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -57976,116 +57518,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = ACTIONS(1230), - [anon_sym_get] = ACTIONS(1230), - [anon_sym_set] = ACTIONS(1230), - [anon_sym_declare] = ACTIONS(1230), - [anon_sym_public] = ACTIONS(1230), - [anon_sym_private] = ACTIONS(1230), - [anon_sym_protected] = ACTIONS(1230), - [anon_sym_override] = ACTIONS(1230), - [anon_sym_module] = ACTIONS(1230), - [anon_sym_any] = ACTIONS(1230), - [anon_sym_number] = ACTIONS(1230), - [anon_sym_boolean] = ACTIONS(1230), - [anon_sym_string] = ACTIONS(1230), - [anon_sym_symbol] = ACTIONS(1230), - [anon_sym_object] = ACTIONS(1230), + [anon_sym_static] = ACTIONS(1123), + [anon_sym_readonly] = ACTIONS(1123), + [anon_sym_get] = ACTIONS(1123), + [anon_sym_set] = ACTIONS(1123), + [anon_sym_declare] = ACTIONS(1123), + [anon_sym_public] = ACTIONS(1123), + [anon_sym_private] = ACTIONS(1123), + [anon_sym_protected] = ACTIONS(1123), + [anon_sym_override] = ACTIONS(1123), + [anon_sym_module] = ACTIONS(1123), + [anon_sym_any] = ACTIONS(1123), + [anon_sym_number] = ACTIONS(1123), + [anon_sym_boolean] = ACTIONS(1123), + [anon_sym_string] = ACTIONS(1123), + [anon_sym_symbol] = ACTIONS(1123), + [anon_sym_object] = ACTIONS(1123), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [176] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(176), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [175] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(1996), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2401), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1996), + [sym_subscript_expression] = STATE(1996), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2940), + [sym_comment] = STATE(175), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1996), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1228), + [anon_sym_export] = ACTIONS(1230), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_type] = ACTIONS(1230), + [anon_sym_EQ] = ACTIONS(1232), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1234), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), + [anon_sym_let] = ACTIONS(1230), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DOT] = ACTIONS(971), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1236), + [anon_sym_function] = ACTIONS(977), [anon_sym_EQ_GT] = ACTIONS(1238), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1240), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -58112,7 +57653,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -58127,87 +57668,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(985), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1230), + [anon_sym_readonly] = ACTIONS(1230), + [anon_sym_get] = ACTIONS(1230), + [anon_sym_set] = ACTIONS(1230), + [anon_sym_declare] = ACTIONS(1230), + [anon_sym_public] = ACTIONS(1230), + [anon_sym_private] = ACTIONS(1230), + [anon_sym_protected] = ACTIONS(1230), + [anon_sym_override] = ACTIONS(1230), + [anon_sym_module] = ACTIONS(1230), + [anon_sym_any] = ACTIONS(1230), + [anon_sym_number] = ACTIONS(1230), + [anon_sym_boolean] = ACTIONS(1230), + [anon_sym_string] = ACTIONS(1230), + [anon_sym_symbol] = ACTIONS(1230), + [anon_sym_object] = ACTIONS(1230), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [177] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(177), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5510), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6945), - [aux_sym_export_statement_repeat1] = STATE(5694), + [176] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(176), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(5327), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6762), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1121), [anon_sym_export] = ACTIONS(1123), [anon_sym_STAR] = ACTIONS(118), @@ -58222,14 +57763,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1123), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), @@ -58264,7 +57805,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -58279,10 +57820,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -58290,7 +57831,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1123), [anon_sym_readonly] = ACTIONS(1123), @@ -58312,83 +57853,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [178] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(178), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [177] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(177), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(5172), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6565), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1242), + [anon_sym_export] = ACTIONS(1244), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_type] = ACTIONS(1244), + [anon_sym_EQ] = ACTIONS(1246), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1127), [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), + [anon_sym_let] = ACTIONS(1244), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1250), [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1242), + [anon_sym_EQ_GT] = ACTIONS(1252), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1254), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -58415,7 +57956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -58430,10 +57971,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -58441,105 +57982,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1244), + [anon_sym_readonly] = ACTIONS(1244), + [anon_sym_get] = ACTIONS(1244), + [anon_sym_set] = ACTIONS(1244), + [anon_sym_declare] = ACTIONS(1244), + [anon_sym_public] = ACTIONS(1244), + [anon_sym_private] = ACTIONS(1244), + [anon_sym_protected] = ACTIONS(1244), + [anon_sym_override] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), + [anon_sym_any] = ACTIONS(1244), + [anon_sym_number] = ACTIONS(1244), + [anon_sym_boolean] = ACTIONS(1244), + [anon_sym_string] = ACTIONS(1244), + [anon_sym_symbol] = ACTIONS(1244), + [anon_sym_object] = ACTIONS(1244), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [179] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(179), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1211), - [anon_sym_export] = ACTIONS(1213), + [178] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(178), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1256), + [anon_sym_export] = ACTIONS(1258), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1213), - [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_type] = ACTIONS(1258), + [anon_sym_EQ] = ACTIONS(1260), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1218), + [anon_sym_namespace] = ACTIONS(1262), [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1213), + [anon_sym_let] = ACTIONS(1258), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1246), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1222), + [anon_sym_async] = ACTIONS(1264), [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_EQ_GT] = ACTIONS(1266), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1226), + [anon_sym_new] = ACTIONS(1268), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -58566,7 +58106,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -58581,10 +58121,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -58592,105 +58132,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1213), - [anon_sym_readonly] = ACTIONS(1213), - [anon_sym_get] = ACTIONS(1213), - [anon_sym_set] = ACTIONS(1213), - [anon_sym_declare] = ACTIONS(1213), - [anon_sym_public] = ACTIONS(1213), - [anon_sym_private] = ACTIONS(1213), - [anon_sym_protected] = ACTIONS(1213), - [anon_sym_override] = ACTIONS(1213), - [anon_sym_module] = ACTIONS(1213), - [anon_sym_any] = ACTIONS(1213), - [anon_sym_number] = ACTIONS(1213), - [anon_sym_boolean] = ACTIONS(1213), - [anon_sym_string] = ACTIONS(1213), - [anon_sym_symbol] = ACTIONS(1213), - [anon_sym_object] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_readonly] = ACTIONS(1258), + [anon_sym_get] = ACTIONS(1258), + [anon_sym_set] = ACTIONS(1258), + [anon_sym_declare] = ACTIONS(1258), + [anon_sym_public] = ACTIONS(1258), + [anon_sym_private] = ACTIONS(1258), + [anon_sym_protected] = ACTIONS(1258), + [anon_sym_override] = ACTIONS(1258), + [anon_sym_module] = ACTIONS(1258), + [anon_sym_any] = ACTIONS(1258), + [anon_sym_number] = ACTIONS(1258), + [anon_sym_boolean] = ACTIONS(1258), + [anon_sym_string] = ACTIONS(1258), + [anon_sym_symbol] = ACTIONS(1258), + [anon_sym_object] = ACTIONS(1258), [anon_sym_satisfies] = ACTIONS(118), + [anon_sym_implements] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [180] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(180), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1250), + [179] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(179), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1252), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1250), + [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1256), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1242), + [anon_sym_EQ_GT] = ACTIONS(1252), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1258), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -58717,7 +58258,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -58732,10 +58273,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -58743,104 +58284,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [181] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(181), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5233), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6912), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(1262), + [180] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(180), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1211), + [anon_sym_export] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1262), - [anon_sym_EQ] = ACTIONS(1264), + [anon_sym_type] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1215), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1266), + [anon_sym_namespace] = ACTIONS(1218), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1262), + [anon_sym_let] = ACTIONS(1213), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(216), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1222), [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1270), + [anon_sym_EQ_GT] = ACTIONS(1224), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1272), + [anon_sym_new] = ACTIONS(1226), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -58867,7 +58409,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -58882,10 +58424,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -58893,106 +58435,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1262), - [anon_sym_readonly] = ACTIONS(1262), - [anon_sym_get] = ACTIONS(1262), - [anon_sym_set] = ACTIONS(1262), - [anon_sym_declare] = ACTIONS(1262), - [anon_sym_public] = ACTIONS(1262), - [anon_sym_private] = ACTIONS(1262), - [anon_sym_protected] = ACTIONS(1262), - [anon_sym_override] = ACTIONS(1262), - [anon_sym_module] = ACTIONS(1262), - [anon_sym_any] = ACTIONS(1262), - [anon_sym_number] = ACTIONS(1262), - [anon_sym_boolean] = ACTIONS(1262), - [anon_sym_string] = ACTIONS(1262), - [anon_sym_symbol] = ACTIONS(1262), - [anon_sym_object] = ACTIONS(1262), + [anon_sym_static] = ACTIONS(1213), + [anon_sym_readonly] = ACTIONS(1213), + [anon_sym_get] = ACTIONS(1213), + [anon_sym_set] = ACTIONS(1213), + [anon_sym_declare] = ACTIONS(1213), + [anon_sym_public] = ACTIONS(1213), + [anon_sym_private] = ACTIONS(1213), + [anon_sym_protected] = ACTIONS(1213), + [anon_sym_override] = ACTIONS(1213), + [anon_sym_module] = ACTIONS(1213), + [anon_sym_any] = ACTIONS(1213), + [anon_sym_number] = ACTIONS(1213), + [anon_sym_boolean] = ACTIONS(1213), + [anon_sym_string] = ACTIONS(1213), + [anon_sym_symbol] = ACTIONS(1213), + [anon_sym_object] = ACTIONS(1213), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [182] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(182), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5233), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6912), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1248), - [anon_sym_export] = ACTIONS(1250), + [181] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(181), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_EQ] = ACTIONS(1252), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1254), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1250), + [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(971), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1256), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1242), + [anon_sym_EQ_GT] = ACTIONS(1238), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1258), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -59019,7 +58559,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -59034,10 +58574,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -59045,80 +58585,232 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_readonly] = ACTIONS(1250), - [anon_sym_get] = ACTIONS(1250), - [anon_sym_set] = ACTIONS(1250), - [anon_sym_declare] = ACTIONS(1250), - [anon_sym_public] = ACTIONS(1250), - [anon_sym_private] = ACTIONS(1250), - [anon_sym_protected] = ACTIONS(1250), - [anon_sym_override] = ACTIONS(1250), - [anon_sym_module] = ACTIONS(1250), - [anon_sym_any] = ACTIONS(1250), - [anon_sym_number] = ACTIONS(1250), - [anon_sym_boolean] = ACTIONS(1250), - [anon_sym_string] = ACTIONS(1250), - [anon_sym_symbol] = ACTIONS(1250), - [anon_sym_object] = ACTIONS(1250), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(211), + [sym_html_comment] = ACTIONS(5), + }, + [182] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(182), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(5172), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6565), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1256), + [anon_sym_export] = ACTIONS(1258), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1258), + [anon_sym_EQ] = ACTIONS(1260), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1258), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_in] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1264), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1266), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(1268), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1119), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1258), + [anon_sym_readonly] = ACTIONS(1258), + [anon_sym_get] = ACTIONS(1258), + [anon_sym_set] = ACTIONS(1258), + [anon_sym_declare] = ACTIONS(1258), + [anon_sym_public] = ACTIONS(1258), + [anon_sym_private] = ACTIONS(1258), + [anon_sym_protected] = ACTIONS(1258), + [anon_sym_override] = ACTIONS(1258), + [anon_sym_module] = ACTIONS(1258), + [anon_sym_any] = ACTIONS(1258), + [anon_sym_number] = ACTIONS(1258), + [anon_sym_boolean] = ACTIONS(1258), + [anon_sym_string] = ACTIONS(1258), + [anon_sym_symbol] = ACTIONS(1258), + [anon_sym_object] = ACTIONS(1258), + [anon_sym_satisfies] = ACTIONS(118), + [anon_sym_implements] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [183] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(183), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1211), [anon_sym_export] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1213), - [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_EQ] = ACTIONS(1272), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1218), [anon_sym_LBRACE] = ACTIONS(1127), @@ -59126,16 +58818,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1213), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1220), + [anon_sym_COLON] = ACTIONS(1274), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), @@ -59170,7 +58862,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -59185,10 +58877,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -59196,7 +58888,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1213), [anon_sym_readonly] = ACTIONS(1213), @@ -59219,82 +58911,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [184] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(184), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1211), - [anon_sym_export] = ACTIONS(1213), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1213), - [anon_sym_EQ] = ACTIONS(1215), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1218), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1213), + [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(216), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1222), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_EQ_GT] = ACTIONS(1266), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1226), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -59321,7 +59012,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -59336,10 +59027,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -59347,104 +59038,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1213), - [anon_sym_readonly] = ACTIONS(1213), - [anon_sym_get] = ACTIONS(1213), - [anon_sym_set] = ACTIONS(1213), - [anon_sym_declare] = ACTIONS(1213), - [anon_sym_public] = ACTIONS(1213), - [anon_sym_private] = ACTIONS(1213), - [anon_sym_protected] = ACTIONS(1213), - [anon_sym_override] = ACTIONS(1213), - [anon_sym_module] = ACTIONS(1213), - [anon_sym_any] = ACTIONS(1213), - [anon_sym_number] = ACTIONS(1213), - [anon_sym_boolean] = ACTIONS(1213), - [anon_sym_string] = ACTIONS(1213), - [anon_sym_symbol] = ACTIONS(1213), - [anon_sym_object] = ACTIONS(1213), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [anon_sym_satisfies] = ACTIONS(118), + [anon_sym_implements] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [185] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(185), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(1262), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1211), + [anon_sym_export] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1262), - [anon_sym_EQ] = ACTIONS(1264), + [anon_sym_type] = ACTIONS(1213), + [anon_sym_EQ] = ACTIONS(1272), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1266), + [anon_sym_namespace] = ACTIONS(1218), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1262), + [anon_sym_let] = ACTIONS(1213), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1220), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1268), + [anon_sym_async] = ACTIONS(1222), [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1270), + [anon_sym_EQ_GT] = ACTIONS(1224), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1272), + [anon_sym_new] = ACTIONS(1226), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -59471,7 +59164,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -59486,10 +59179,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -59497,105 +59190,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1262), - [anon_sym_readonly] = ACTIONS(1262), - [anon_sym_get] = ACTIONS(1262), - [anon_sym_set] = ACTIONS(1262), - [anon_sym_declare] = ACTIONS(1262), - [anon_sym_public] = ACTIONS(1262), - [anon_sym_private] = ACTIONS(1262), - [anon_sym_protected] = ACTIONS(1262), - [anon_sym_override] = ACTIONS(1262), - [anon_sym_module] = ACTIONS(1262), - [anon_sym_any] = ACTIONS(1262), - [anon_sym_number] = ACTIONS(1262), - [anon_sym_boolean] = ACTIONS(1262), - [anon_sym_string] = ACTIONS(1262), - [anon_sym_symbol] = ACTIONS(1262), - [anon_sym_object] = ACTIONS(1262), + [anon_sym_static] = ACTIONS(1213), + [anon_sym_readonly] = ACTIONS(1213), + [anon_sym_get] = ACTIONS(1213), + [anon_sym_set] = ACTIONS(1213), + [anon_sym_declare] = ACTIONS(1213), + [anon_sym_public] = ACTIONS(1213), + [anon_sym_private] = ACTIONS(1213), + [anon_sym_protected] = ACTIONS(1213), + [anon_sym_override] = ACTIONS(1213), + [anon_sym_module] = ACTIONS(1213), + [anon_sym_any] = ACTIONS(1213), + [anon_sym_number] = ACTIONS(1213), + [anon_sym_boolean] = ACTIONS(1213), + [anon_sym_string] = ACTIONS(1213), + [anon_sym_symbol] = ACTIONS(1213), + [anon_sym_object] = ACTIONS(1213), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [186] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(186), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1242), + [anon_sym_export] = ACTIONS(1244), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_type] = ACTIONS(1244), + [anon_sym_EQ] = ACTIONS(1246), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1248), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), + [anon_sym_let] = ACTIONS(1244), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1250), [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1270), + [anon_sym_EQ_GT] = ACTIONS(1252), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1254), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -59622,7 +59315,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -59637,10 +59330,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -59648,76 +59341,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1244), + [anon_sym_readonly] = ACTIONS(1244), + [anon_sym_get] = ACTIONS(1244), + [anon_sym_set] = ACTIONS(1244), + [anon_sym_declare] = ACTIONS(1244), + [anon_sym_public] = ACTIONS(1244), + [anon_sym_private] = ACTIONS(1244), + [anon_sym_protected] = ACTIONS(1244), + [anon_sym_override] = ACTIONS(1244), + [anon_sym_module] = ACTIONS(1244), + [anon_sym_any] = ACTIONS(1244), + [anon_sym_number] = ACTIONS(1244), + [anon_sym_boolean] = ACTIONS(1244), + [anon_sym_string] = ACTIONS(1244), + [anon_sym_symbol] = ACTIONS(1244), + [anon_sym_object] = ACTIONS(1244), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [187] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2158), - [sym_expression] = STATE(3364), - [sym_primary_expression] = STATE(2594), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2158), - [sym_subscript_expression] = STATE(2158), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(1996), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2401), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1996), + [sym_subscript_expression] = STATE(1996), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2940), [sym_comment] = STATE(187), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5233), - [sym_non_null_expression] = STATE(2158), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6912), - [aux_sym_export_statement_repeat1] = STATE(5555), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(5172), + [sym_non_null_expression] = STATE(1996), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6565), + [aux_sym_export_statement_repeat1] = STATE(5470), [sym_identifier] = ACTIONS(1228), [anon_sym_export] = ACTIONS(1230), [anon_sym_STAR] = ACTIONS(118), @@ -59725,7 +59417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1232), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1234), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1230), @@ -59738,12 +59430,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(971), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), + [anon_sym_class] = ACTIONS(973), [anon_sym_async] = ACTIONS(1236), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_function] = ACTIONS(977), [anon_sym_EQ_GT] = ACTIONS(1238), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1240), @@ -59788,8 +59480,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), @@ -59799,7 +59491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_undefined] = ACTIONS(985), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1230), [anon_sym_readonly] = ACTIONS(1230), @@ -59823,81 +59515,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [188] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(188), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5233), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6912), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1276), - [anon_sym_export] = ACTIONS(1278), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1278), - [anon_sym_EQ] = ACTIONS(1280), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1278), + [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), + [anon_sym_in] = ACTIONS(1203), + [anon_sym_of] = ACTIONS(1206), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1284), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1288), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -59924,7 +59616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -59939,10 +59631,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -59950,104 +59642,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1278), - [anon_sym_readonly] = ACTIONS(1278), - [anon_sym_get] = ACTIONS(1278), - [anon_sym_set] = ACTIONS(1278), - [anon_sym_declare] = ACTIONS(1278), - [anon_sym_public] = ACTIONS(1278), - [anon_sym_private] = ACTIONS(1278), - [anon_sym_protected] = ACTIONS(1278), - [anon_sym_override] = ACTIONS(1278), - [anon_sym_module] = ACTIONS(1278), - [anon_sym_any] = ACTIONS(1278), - [anon_sym_number] = ACTIONS(1278), - [anon_sym_boolean] = ACTIONS(1278), - [anon_sym_string] = ACTIONS(1278), - [anon_sym_symbol] = ACTIONS(1278), - [anon_sym_object] = ACTIONS(1278), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [189] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(189), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1286), + [anon_sym_EQ_GT] = ACTIONS(1224), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -60074,7 +59766,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -60089,10 +59781,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -60100,7 +59792,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -60123,81 +59815,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [190] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(190), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1276), + [anon_sym_export] = ACTIONS(1278), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_type] = ACTIONS(1278), + [anon_sym_EQ] = ACTIONS(1280), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1282), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), + [anon_sym_let] = ACTIONS(1278), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_of] = ACTIONS(1206), + [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1284), [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1286), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1288), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -60224,7 +59916,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -60239,10 +59931,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -60250,80 +59942,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1278), + [anon_sym_readonly] = ACTIONS(1278), + [anon_sym_get] = ACTIONS(1278), + [anon_sym_set] = ACTIONS(1278), + [anon_sym_declare] = ACTIONS(1278), + [anon_sym_public] = ACTIONS(1278), + [anon_sym_private] = ACTIONS(1278), + [anon_sym_protected] = ACTIONS(1278), + [anon_sym_override] = ACTIONS(1278), + [anon_sym_module] = ACTIONS(1278), + [anon_sym_any] = ACTIONS(1278), + [anon_sym_number] = ACTIONS(1278), + [anon_sym_boolean] = ACTIONS(1278), + [anon_sym_string] = ACTIONS(1278), + [anon_sym_symbol] = ACTIONS(1278), + [anon_sym_object] = ACTIONS(1278), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [191] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(191), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1211), [anon_sym_export] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1213), - [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_EQ] = ACTIONS(1272), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1218), [anon_sym_LBRACE] = ACTIONS(1127), @@ -60331,7 +60023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1213), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), @@ -60339,7 +60031,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), @@ -60374,7 +60066,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -60389,10 +60081,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -60400,7 +60092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1213), [anon_sym_readonly] = ACTIONS(1213), @@ -60423,52 +60115,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [192] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(192), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(5172), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6565), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1276), [anon_sym_export] = ACTIONS(1278), [anon_sym_STAR] = ACTIONS(118), @@ -60476,20 +60168,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ] = ACTIONS(1280), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1282), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1278), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_of] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), @@ -60539,10 +60231,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -60550,7 +60242,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1278), [anon_sym_readonly] = ACTIONS(1278), @@ -60573,81 +60265,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [193] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(193), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(5172), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6565), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1105), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -60674,7 +60366,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -60689,10 +60381,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -60700,7 +60392,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -60723,57 +60415,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [194] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(194), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5233), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6912), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(1111), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_function] = ACTIONS(151), + [anon_sym_EQ_GT] = ACTIONS(1286), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1119), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(211), + [sym_html_comment] = ACTIONS(5), + }, + [195] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(195), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(5172), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6565), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1211), [anon_sym_export] = ACTIONS(1213), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1213), - [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_EQ] = ACTIONS(1272), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1218), [anon_sym_LBRACE] = ACTIONS(1127), @@ -60781,7 +60623,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1213), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), @@ -60789,7 +60631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), @@ -60824,7 +60666,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -60839,10 +60681,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -60850,7 +60692,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1213), [anon_sym_readonly] = ACTIONS(1213), @@ -60872,82 +60714,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [195] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(195), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5233), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6912), - [aux_sym_export_statement_repeat1] = STATE(5694), + [196] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(196), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1292), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1119), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -60974,7 +60815,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -60989,10 +60830,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -61000,7 +60841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -61022,81 +60863,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [196] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(196), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [197] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(197), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1294), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -61123,7 +60964,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -61138,10 +60979,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -61149,7 +60990,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -61171,81 +61012,230 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [197] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(197), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5233), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6912), - [aux_sym_export_statement_repeat1] = STATE(5694), + [198] = { + [sym_import] = STATE(4142), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2764), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(6802), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7025), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2697), + [sym_comment] = STATE(198), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(5245), + [sym_pattern] = STATE(6098), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3882), + [sym__type_query_member_expression_in_type_annotation] = STATE(4039), + [sym__type_query_call_expression_in_type_annotation] = STATE(4322), + [sym__type] = STATE(4035), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6740), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1296), + [anon_sym_export] = ACTIONS(991), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1300), + [anon_sym_typeof] = ACTIONS(1302), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(991), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1306), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1308), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1011), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1310), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1316), + [anon_sym_DASH] = ACTIONS(1316), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1318), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1320), + [sym_number] = ACTIONS(1322), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(1324), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), + [sym_null] = ACTIONS(1322), + [sym_undefined] = ACTIONS(1326), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(1328), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), + [anon_sym_object] = ACTIONS(1332), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [199] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(199), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1346), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -61272,7 +61262,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -61287,10 +61277,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -61298,7 +61288,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -61320,230 +61310,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [198] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2922), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6571), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7203), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3065), - [sym_comment] = STATE(198), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5428), - [sym_pattern] = STATE(6429), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(4018), - [sym__type_query_member_expression_in_type_annotation] = STATE(4193), - [sym__type_query_call_expression_in_type_annotation] = STATE(4477), - [sym__type] = STATE(4194), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(6923), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1294), - [anon_sym_export] = ACTIONS(958), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1298), - [anon_sym_typeof] = ACTIONS(1300), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1304), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1306), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1308), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1314), - [anon_sym_DASH] = ACTIONS(1314), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(1316), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1318), - [sym_number] = ACTIONS(1320), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(1322), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1320), - [sym_false] = ACTIONS(1320), - [sym_null] = ACTIONS(1320), - [sym_undefined] = ACTIONS(1324), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1326), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(1330), - [anon_sym_number] = ACTIONS(1330), - [anon_sym_boolean] = ACTIONS(1330), - [anon_sym_string] = ACTIONS(1330), - [anon_sym_symbol] = ACTIONS(1330), - [anon_sym_object] = ACTIONS(1330), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [199] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(199), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [200] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(200), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1344), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -61570,7 +61411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -61585,10 +61426,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -61596,7 +61437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -61618,81 +61459,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [200] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(200), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [201] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(201), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1348), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -61719,7 +61560,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -61734,10 +61575,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -61745,7 +61586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -61767,81 +61608,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [201] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(201), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [202] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(202), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1348), + [anon_sym_EQ] = ACTIONS(1350), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -61868,7 +61709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -61883,10 +61724,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -61894,7 +61735,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -61916,81 +61757,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [202] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(202), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [203] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(203), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1352), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -62017,7 +61858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -62032,10 +61873,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -62043,7 +61884,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -62065,81 +61906,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [203] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(203), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [204] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(204), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1350), + [anon_sym_EQ] = ACTIONS(1354), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -62166,7 +62007,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -62181,10 +62022,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -62192,7 +62033,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -62214,81 +62055,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [204] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(204), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [205] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(205), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1352), + [anon_sym_EQ] = ACTIONS(1356), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -62315,7 +62156,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -62330,10 +62171,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -62341,156 +62182,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [205] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(205), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1354), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_in] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(151), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -62513,80 +62205,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [206] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(206), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1358), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -62613,7 +62305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -62628,10 +62320,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -62639,7 +62331,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -62662,80 +62354,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [207] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2354), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2205), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(207), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(5172), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6565), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1097), - [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1107), + [anon_sym_DOT] = ACTIONS(1111), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -62762,7 +62454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(172), @@ -62777,10 +62469,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -62788,7 +62480,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -62811,79 +62503,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [208] = { - [sym_import] = STATE(4347), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2996), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3355), + [sym_import] = STATE(4127), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2572), [sym_comment] = STATE(208), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(4859), - [sym__type_query_call_expression_in_type_annotation] = STATE(5590), - [sym__type] = STATE(4860), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5555), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(4621), + [sym__type_query_call_expression_in_type_annotation] = STATE(5624), + [sym__type] = STATE(4622), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1360), [anon_sym_export] = ACTIONS(1362), [anon_sym_STAR] = ACTIONS(113), @@ -62895,42 +62587,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(1362), [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1376), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1382), - [anon_sym_using] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1380), + [anon_sym_using] = ACTIONS(1382), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1386), - [anon_sym_DASH] = ACTIONS(1386), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1386), [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1392), - [sym_number] = ACTIONS(1394), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(1398), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1394), - [sym_false] = ACTIONS(1394), - [sym_null] = ACTIONS(1394), - [sym_undefined] = ACTIONS(1400), + [anon_sym_BQUOTE] = ACTIONS(1390), + [sym_number] = ACTIONS(1392), + [sym_private_property_identifier] = ACTIONS(1394), + [sym_this] = ACTIONS(1396), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_null] = ACTIONS(1392), + [sym_undefined] = ACTIONS(1398), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1402), + [anon_sym_readonly] = ACTIONS(1400), [anon_sym_get] = ACTIONS(1362), [anon_sym_set] = ACTIONS(1362), [anon_sym_QMARK] = ACTIONS(195), @@ -62940,12 +62632,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(1362), [anon_sym_override] = ACTIONS(1362), [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1404), - [anon_sym_number] = ACTIONS(1404), - [anon_sym_boolean] = ACTIONS(1404), - [anon_sym_string] = ACTIONS(1404), - [anon_sym_symbol] = ACTIONS(1404), - [anon_sym_object] = ACTIONS(1404), + [anon_sym_any] = ACTIONS(1402), + [anon_sym_number] = ACTIONS(1402), + [anon_sym_boolean] = ACTIONS(1402), + [anon_sym_string] = ACTIONS(1402), + [anon_sym_symbol] = ACTIONS(1402), + [anon_sym_object] = ACTIONS(1402), [anon_sym_abstract] = ACTIONS(199), [anon_sym_infer] = ACTIONS(201), [anon_sym_keyof] = ACTIONS(203), @@ -62956,141 +62648,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [209] = { - [sym_import] = STATE(4426), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3272), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2929), + [sym_import] = STATE(4163), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2533), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2682), [sym_comment] = STATE(209), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(4975), - [sym__type_query_call_expression_in_type_annotation] = STATE(5724), - [sym__type] = STATE(4974), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1406), - [anon_sym_export] = ACTIONS(1408), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(4752), + [sym__type_query_call_expression_in_type_annotation] = STATE(5480), + [sym__type] = STATE(4750), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1404), + [anon_sym_export] = ACTIONS(1406), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_typeof] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_typeof] = ACTIONS(1412), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), + [anon_sym_let] = ACTIONS(1406), [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(1416), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1426), - [anon_sym_using] = ACTIONS(1428), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1420), + [anon_sym_using] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1430), - [anon_sym_DASH] = ACTIONS(1430), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1436), - [sym_number] = ACTIONS(1438), - [sym_private_property_identifier] = ACTIONS(1440), - [sym_this] = ACTIONS(1442), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_null] = ACTIONS(1438), - [sym_undefined] = ACTIONS(1444), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(1424), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1426), + [sym_number] = ACTIONS(1428), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(1430), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [sym_null] = ACTIONS(1428), + [sym_undefined] = ACTIONS(1432), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1446), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1434), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1448), - [anon_sym_number] = ACTIONS(1448), - [anon_sym_boolean] = ACTIONS(1448), - [anon_sym_string] = ACTIONS(1448), - [anon_sym_symbol] = ACTIONS(1448), - [anon_sym_object] = ACTIONS(1448), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1436), + [anon_sym_number] = ACTIONS(1436), + [anon_sym_boolean] = ACTIONS(1436), + [anon_sym_string] = ACTIONS(1436), + [anon_sym_symbol] = ACTIONS(1436), + [anon_sym_object] = ACTIONS(1436), [anon_sym_abstract] = ACTIONS(199), [anon_sym_infer] = ACTIONS(201), [anon_sym_keyof] = ACTIONS(203), @@ -63101,141 +62793,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [210] = { - [sym_import] = STATE(4430), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2386), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2674), + [sym_import] = STATE(4251), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3214), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2877), [sym_comment] = STATE(210), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(4975), - [sym__type_query_call_expression_in_type_annotation] = STATE(5724), - [sym__type] = STATE(4974), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1450), - [anon_sym_export] = ACTIONS(1452), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(4621), + [sym__type_query_call_expression_in_type_annotation] = STATE(5624), + [sym__type] = STATE(4622), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1438), + [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_typeof] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_typeof] = ACTIONS(1442), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), + [anon_sym_let] = ACTIONS(1097), [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(174), [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1460), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1444), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1464), - [anon_sym_using] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1446), + [anon_sym_using] = ACTIONS(157), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1466), - [anon_sym_DASH] = ACTIONS(1466), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1448), + [anon_sym_DASH] = ACTIONS(1448), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1468), - [sym_number] = ACTIONS(1470), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(176), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1450), + [sym_number] = ACTIONS(1452), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1454), [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1470), - [sym_false] = ACTIONS(1470), - [sym_null] = ACTIONS(1470), - [sym_undefined] = ACTIONS(1474), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [sym_null] = ACTIONS(1452), + [sym_undefined] = ACTIONS(1456), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1476), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1478), - [anon_sym_number] = ACTIONS(1478), - [anon_sym_boolean] = ACTIONS(1478), - [anon_sym_string] = ACTIONS(1478), - [anon_sym_symbol] = ACTIONS(1478), - [anon_sym_object] = ACTIONS(1478), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1460), + [anon_sym_number] = ACTIONS(1460), + [anon_sym_boolean] = ACTIONS(1460), + [anon_sym_string] = ACTIONS(1460), + [anon_sym_symbol] = ACTIONS(1460), + [anon_sym_object] = ACTIONS(1460), [anon_sym_abstract] = ACTIONS(199), [anon_sym_infer] = ACTIONS(201), [anon_sym_keyof] = ACTIONS(203), @@ -63246,141 +62938,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [211] = { - [sym_import] = STATE(4426), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2992), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2929), + [sym_import] = STATE(4163), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2464), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2682), [sym_comment] = STATE(211), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(4975), - [sym__type_query_call_expression_in_type_annotation] = STATE(5724), - [sym__type] = STATE(4974), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1480), - [anon_sym_export] = ACTIONS(1482), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(4752), + [sym__type_query_call_expression_in_type_annotation] = STATE(5480), + [sym__type] = STATE(4750), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1462), + [anon_sym_export] = ACTIONS(1464), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_typeof] = ACTIONS(1488), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(1410), + [anon_sym_typeof] = ACTIONS(1468), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), + [anon_sym_let] = ACTIONS(1464), [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1416), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_using] = ACTIONS(1500), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1478), + [anon_sym_using] = ACTIONS(1480), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1502), - [anon_sym_DASH] = ACTIONS(1502), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1504), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1436), - [sym_number] = ACTIONS(1438), - [sym_private_property_identifier] = ACTIONS(1508), - [sym_this] = ACTIONS(1442), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_null] = ACTIONS(1438), - [sym_undefined] = ACTIONS(1510), + [anon_sym_PLUS] = ACTIONS(1482), + [anon_sym_DASH] = ACTIONS(1482), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1484), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1426), + [sym_number] = ACTIONS(1428), + [sym_private_property_identifier] = ACTIONS(1488), + [sym_this] = ACTIONS(1430), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(1428), + [sym_false] = ACTIONS(1428), + [sym_null] = ACTIONS(1428), + [sym_undefined] = ACTIONS(1490), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1512), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1492), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1514), - [anon_sym_number] = ACTIONS(1514), - [anon_sym_boolean] = ACTIONS(1514), - [anon_sym_string] = ACTIONS(1514), - [anon_sym_symbol] = ACTIONS(1514), - [anon_sym_object] = ACTIONS(1514), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1494), + [anon_sym_number] = ACTIONS(1494), + [anon_sym_boolean] = ACTIONS(1494), + [anon_sym_string] = ACTIONS(1494), + [anon_sym_symbol] = ACTIONS(1494), + [anon_sym_object] = ACTIONS(1494), [anon_sym_abstract] = ACTIONS(199), [anon_sym_infer] = ACTIONS(201), [anon_sym_keyof] = ACTIONS(203), @@ -63391,141 +63083,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [212] = { - [sym_import] = STATE(4362), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2593), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(2888), + [sym_import] = STATE(4251), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3107), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2877), [sym_comment] = STATE(212), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(4859), - [sym__type_query_call_expression_in_type_annotation] = STATE(5590), - [sym__type] = STATE(4860), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1516), - [anon_sym_export] = ACTIONS(1518), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(4621), + [sym__type_query_call_expression_in_type_annotation] = STATE(5624), + [sym__type] = STATE(4622), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1496), + [anon_sym_export] = ACTIONS(1498), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_typeof] = ACTIONS(1524), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_typeof] = ACTIONS(1504), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), + [anon_sym_let] = ACTIONS(1498), [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1444), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1536), - [anon_sym_using] = ACTIONS(1538), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1514), + [anon_sym_using] = ACTIONS(1516), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1540), - [anon_sym_DASH] = ACTIONS(1540), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1542), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1546), - [sym_number] = ACTIONS(1548), - [sym_private_property_identifier] = ACTIONS(1550), - [sym_this] = ACTIONS(1552), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1548), - [sym_false] = ACTIONS(1548), - [sym_null] = ACTIONS(1548), - [sym_undefined] = ACTIONS(1554), + [anon_sym_PLUS] = ACTIONS(1518), + [anon_sym_DASH] = ACTIONS(1518), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1520), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1450), + [sym_number] = ACTIONS(1452), + [sym_private_property_identifier] = ACTIONS(1524), + [sym_this] = ACTIONS(1454), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [sym_null] = ACTIONS(1452), + [sym_undefined] = ACTIONS(1526), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1556), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1528), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1558), - [anon_sym_number] = ACTIONS(1558), - [anon_sym_boolean] = ACTIONS(1558), - [anon_sym_string] = ACTIONS(1558), - [anon_sym_symbol] = ACTIONS(1558), - [anon_sym_object] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1530), + [anon_sym_number] = ACTIONS(1530), + [anon_sym_boolean] = ACTIONS(1530), + [anon_sym_string] = ACTIONS(1530), + [anon_sym_symbol] = ACTIONS(1530), + [anon_sym_object] = ACTIONS(1530), [anon_sym_abstract] = ACTIONS(199), [anon_sym_infer] = ACTIONS(201), [anon_sym_keyof] = ACTIONS(203), @@ -63536,141 +63228,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [213] = { - [sym_import] = STATE(4430), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2747), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2674), + [sym_import] = STATE(4251), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3091), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2877), [sym_comment] = STATE(213), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(4975), - [sym__type_query_call_expression_in_type_annotation] = STATE(5724), - [sym__type] = STATE(4974), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1560), - [anon_sym_export] = ACTIONS(1562), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(4621), + [sym__type_query_call_expression_in_type_annotation] = STATE(5624), + [sym__type] = STATE(4622), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1532), + [anon_sym_export] = ACTIONS(1534), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1456), - [anon_sym_typeof] = ACTIONS(1566), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1440), + [anon_sym_typeof] = ACTIONS(1538), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), + [anon_sym_let] = ACTIONS(1534), [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1540), [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1460), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1444), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1576), - [anon_sym_using] = ACTIONS(1578), + [anon_sym_new] = ACTIONS(1548), + [anon_sym_using] = ACTIONS(1550), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1580), - [anon_sym_DASH] = ACTIONS(1580), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1552), + [anon_sym_DASH] = ACTIONS(1552), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1582), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1468), - [sym_number] = ACTIONS(1470), - [sym_private_property_identifier] = ACTIONS(1586), - [sym_this] = ACTIONS(1472), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1554), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1450), + [sym_number] = ACTIONS(1452), + [sym_private_property_identifier] = ACTIONS(1558), + [sym_this] = ACTIONS(1454), [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1470), - [sym_false] = ACTIONS(1470), - [sym_null] = ACTIONS(1470), - [sym_undefined] = ACTIONS(1588), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [sym_null] = ACTIONS(1452), + [sym_undefined] = ACTIONS(1560), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1590), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1562), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1592), - [anon_sym_number] = ACTIONS(1592), - [anon_sym_boolean] = ACTIONS(1592), - [anon_sym_string] = ACTIONS(1592), - [anon_sym_symbol] = ACTIONS(1592), - [anon_sym_object] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1564), + [anon_sym_number] = ACTIONS(1564), + [anon_sym_boolean] = ACTIONS(1564), + [anon_sym_string] = ACTIONS(1564), + [anon_sym_symbol] = ACTIONS(1564), + [anon_sym_object] = ACTIONS(1564), [anon_sym_abstract] = ACTIONS(199), [anon_sym_infer] = ACTIONS(201), [anon_sym_keyof] = ACTIONS(203), @@ -63681,141 +63373,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [214] = { - [sym_import] = STATE(4362), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(2888), + [sym_import] = STATE(4251), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2765), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2877), [sym_comment] = STATE(214), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(4859), - [sym__type_query_call_expression_in_type_annotation] = STATE(5590), - [sym__type] = STATE(4860), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1594), - [anon_sym_export] = ACTIONS(1596), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(4621), + [sym__type_query_call_expression_in_type_annotation] = STATE(5624), + [sym__type] = STATE(4622), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1566), + [anon_sym_export] = ACTIONS(1568), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1522), - [anon_sym_typeof] = ACTIONS(1600), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1502), + [anon_sym_typeof] = ACTIONS(1572), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1568), [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(1372), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(1532), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(135), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1444), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1604), - [anon_sym_using] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1582), + [anon_sym_using] = ACTIONS(1584), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1606), - [anon_sym_DASH] = ACTIONS(1606), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(1608), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1546), - [sym_number] = ACTIONS(1548), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(1552), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1548), - [sym_false] = ACTIONS(1548), - [sym_null] = ACTIONS(1548), - [sym_undefined] = ACTIONS(1610), + [anon_sym_PLUS] = ACTIONS(1586), + [anon_sym_DASH] = ACTIONS(1586), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1588), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1450), + [sym_number] = ACTIONS(1452), + [sym_private_property_identifier] = ACTIONS(1592), + [sym_this] = ACTIONS(1454), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(1452), + [sym_false] = ACTIONS(1452), + [sym_null] = ACTIONS(1452), + [sym_undefined] = ACTIONS(1594), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1612), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1596), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1614), - [anon_sym_number] = ACTIONS(1614), - [anon_sym_boolean] = ACTIONS(1614), - [anon_sym_string] = ACTIONS(1614), - [anon_sym_symbol] = ACTIONS(1614), - [anon_sym_object] = ACTIONS(1614), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1598), + [anon_sym_number] = ACTIONS(1598), + [anon_sym_boolean] = ACTIONS(1598), + [anon_sym_string] = ACTIONS(1598), + [anon_sym_symbol] = ACTIONS(1598), + [anon_sym_object] = ACTIONS(1598), [anon_sym_abstract] = ACTIONS(199), [anon_sym_infer] = ACTIONS(201), [anon_sym_keyof] = ACTIONS(203), @@ -63826,141 +63518,141 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [215] = { - [sym_import] = STATE(4426), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3220), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2929), + [sym_import] = STATE(4179), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2791), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(3245), [sym_comment] = STATE(215), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(4975), - [sym__type_query_call_expression_in_type_annotation] = STATE(5724), - [sym__type] = STATE(4974), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1616), - [anon_sym_export] = ACTIONS(1618), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(4752), + [sym__type_query_call_expression_in_type_annotation] = STATE(5480), + [sym__type] = STATE(4750), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1600), + [anon_sym_export] = ACTIONS(1602), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1486), - [anon_sym_typeof] = ACTIONS(1622), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(1606), + [anon_sym_typeof] = ACTIONS(1608), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), + [anon_sym_let] = ACTIONS(1602), [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(1414), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1616), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1632), - [anon_sym_using] = ACTIONS(1634), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_using] = ACTIONS(1622), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1636), - [anon_sym_DASH] = ACTIONS(1636), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1638), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1436), - [sym_number] = ACTIONS(1438), - [sym_private_property_identifier] = ACTIONS(1642), - [sym_this] = ACTIONS(1442), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_null] = ACTIONS(1438), - [sym_undefined] = ACTIONS(1644), + [anon_sym_PLUS] = ACTIONS(1624), + [anon_sym_DASH] = ACTIONS(1624), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1626), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1630), + [sym_number] = ACTIONS(1632), + [sym_private_property_identifier] = ACTIONS(1634), + [sym_this] = ACTIONS(1636), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(1632), + [sym_false] = ACTIONS(1632), + [sym_null] = ACTIONS(1632), + [sym_undefined] = ACTIONS(1638), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1646), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1640), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1648), - [anon_sym_number] = ACTIONS(1648), - [anon_sym_boolean] = ACTIONS(1648), - [anon_sym_string] = ACTIONS(1648), - [anon_sym_symbol] = ACTIONS(1648), - [anon_sym_object] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1642), + [anon_sym_number] = ACTIONS(1642), + [anon_sym_boolean] = ACTIONS(1642), + [anon_sym_string] = ACTIONS(1642), + [anon_sym_symbol] = ACTIONS(1642), + [anon_sym_object] = ACTIONS(1642), [anon_sym_abstract] = ACTIONS(199), [anon_sym_infer] = ACTIONS(201), [anon_sym_keyof] = ACTIONS(203), @@ -63971,135 +63663,135 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [216] = { - [sym_import] = STATE(4426), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3370), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2929), + [sym_import] = STATE(4127), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2357), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2572), [sym_comment] = STATE(216), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(4975), - [sym__type_query_call_expression_in_type_annotation] = STATE(5724), - [sym__type] = STATE(4974), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1650), - [anon_sym_export] = ACTIONS(1097), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(4621), + [sym__type_query_call_expression_in_type_annotation] = STATE(5624), + [sym__type] = STATE(4622), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1644), + [anon_sym_export] = ACTIONS(1646), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_typeof] = ACTIONS(1652), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1366), + [anon_sym_typeof] = ACTIONS(1650), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), + [anon_sym_let] = ACTIONS(1646), [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(174), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1422), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1376), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1654), - [anon_sym_using] = ACTIONS(157), + [anon_sym_using] = ACTIONS(1015), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1656), [anon_sym_DASH] = ACTIONS(1656), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(176), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1436), - [sym_number] = ACTIONS(1438), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1442), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1390), + [sym_number] = ACTIONS(1392), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(1396), [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1438), - [sym_false] = ACTIONS(1438), - [sym_null] = ACTIONS(1438), + [sym_true] = ACTIONS(1392), + [sym_false] = ACTIONS(1392), + [sym_null] = ACTIONS(1392), [sym_undefined] = ACTIONS(1658), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1646), [anon_sym_readonly] = ACTIONS(1660), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), [anon_sym_any] = ACTIONS(1662), [anon_sym_number] = ACTIONS(1662), [anon_sym_boolean] = ACTIONS(1662), @@ -64116,134 +63808,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [217] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2809), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7498), - [sym_string] = STATE(3327), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2631), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7051), + [sym_string] = STATE(3050), [sym_comment] = STATE(217), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(6224), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(5157), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(5720), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(6165), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(5388), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(5427), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1664), - [anon_sym_export] = ACTIONS(1452), + [anon_sym_export] = ACTIONS(1646), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1141), + [anon_sym_typeof] = ACTIONS(1139), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), + [anon_sym_let] = ACTIONS(1646), [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1464), - [anon_sym_using] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1654), + [anon_sym_using] = ACTIONS(1015), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1147), - [anon_sym_DASH] = ACTIONS(1147), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1145), + [anon_sym_DASH] = ACTIONS(1145), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1149), - [sym_number] = ACTIONS(1151), - [sym_private_property_identifier] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1147), + [sym_number] = ACTIONS(1149), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(1670), [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(1151), - [sym_false] = ACTIONS(1151), - [sym_null] = ACTIONS(1151), + [sym_true] = ACTIONS(1149), + [sym_false] = ACTIONS(1149), + [sym_null] = ACTIONS(1149), [sym_undefined] = ACTIONS(1672), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1476), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1660), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), [anon_sym_any] = ACTIONS(1674), [anon_sym_number] = ACTIONS(1674), [anon_sym_boolean] = ACTIONS(1674), @@ -64260,77 +63952,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [218] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3453), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2111), + [sym_subscript_expression] = STATE(2111), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4563), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(3290), [sym_comment] = STATE(218), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_non_null_expression] = STATE(2270), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5279), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_non_null_expression] = STATE(2111), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5386), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1676), [anon_sym_export] = ACTIONS(1678), [anon_sym_STAR] = ACTIONS(113), @@ -64358,13 +64050,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1692), [anon_sym_DASH] = ACTIONS(1692), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(176), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1694), [sym_number] = ACTIONS(1696), @@ -64403,92 +64095,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [219] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2657), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_nested_identifier] = STATE(7283), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2185), - [sym_subscript_expression] = STATE(2185), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(5123), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(3103), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2523), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_nested_identifier] = STATE(7011), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4987), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(3180), [sym_comment] = STATE(219), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(5319), - [sym_non_null_expression] = STATE(2185), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5279), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6670), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4958), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5386), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6856), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1706), [anon_sym_export] = ACTIONS(1708), [anon_sym_STAR] = ACTIONS(113), [anon_sym_type] = ACTIONS(1708), [anon_sym_namespace] = ACTIONS(1710), [anon_sym_LBRACE] = ACTIONS(1712), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1708), [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(968), + [anon_sym_BANG] = ACTIONS(1001), [anon_sym_LPAREN] = ACTIONS(135), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1007), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), @@ -64496,23 +64188,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1714), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1716), - [anon_sym_using] = ACTIONS(982), + [anon_sym_using] = ACTIONS(1015), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(986), - [anon_sym_DASH] = ACTIONS(986), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1019), + [anon_sym_DASH] = ACTIONS(1019), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(990), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1023), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(181), [sym_number] = ACTIONS(183), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(996), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(1029), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(183), [sym_false] = ACTIONS(183), @@ -64546,71 +64238,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [220] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2376), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2238), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(220), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), + [anon_sym_export] = ACTIONS(1646), [anon_sym_STAR] = ACTIONS(1726), - [anon_sym_type] = ACTIONS(1452), + [anon_sym_type] = ACTIONS(1646), [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(1728), [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_RPAREN] = ACTIONS(1728), - [anon_sym_await] = ACTIONS(970), + [anon_sym_await] = ACTIONS(1003), [anon_sym_in] = ACTIONS(1728), [anon_sym_COLON] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_RBRACK] = ACTIONS(1728), [anon_sym_LTtemplate_GT] = ACTIONS(65), @@ -64619,11 +64311,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_QMARK_DOT] = ACTIONS(1728), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), + [anon_sym_using] = ACTIONS(1015), [anon_sym_AMP_AMP] = ACTIONS(1728), [anon_sym_PIPE_PIPE] = ACTIONS(1728), [anon_sym_GT_GT] = ACTIONS(1728), @@ -64632,9 +64324,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1728), [anon_sym_CARET] = ACTIONS(1728), [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(1728), [anon_sym_STAR_STAR] = ACTIONS(1728), [anon_sym_LT] = ACTIONS(172), @@ -64646,15 +64338,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1728), [anon_sym_QMARK_QMARK] = ACTIONS(1728), [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -64662,103 +64354,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [anon_sym_satisfies] = ACTIONS(1728), [sym__ternary_qmark] = ACTIONS(1734), [sym_html_comment] = ACTIONS(5), }, [221] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2558), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2410), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(221), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), + [anon_sym_export] = ACTIONS(1406), [anon_sym_STAR] = ACTIONS(1738), - [anon_sym_type] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1406), [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_COMMA] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1526), + [anon_sym_RBRACE] = ACTIONS(1728), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), + [anon_sym_await] = ACTIONS(41), [anon_sym_in] = ACTIONS(1728), - [anon_sym_of] = ACTIONS(1728), [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1530), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1728), [anon_sym_DOT] = ACTIONS(1728), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(1728), [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), + [anon_sym_using] = ACTIONS(79), [anon_sym_AMP_AMP] = ACTIONS(1728), [anon_sym_PIPE_PIPE] = ACTIONS(1728), [anon_sym_GT_GT] = ACTIONS(1728), @@ -64767,9 +64459,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1728), [anon_sym_CARET] = ACTIONS(1728), [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(1728), [anon_sym_STAR_STAR] = ACTIONS(1728), [anon_sym_LT] = ACTIONS(83), @@ -64781,120 +64473,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1728), [anon_sym_QMARK_QMARK] = ACTIONS(1728), [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [anon_sym_satisfies] = ACTIONS(1728), [sym__automatic_semicolon] = ACTIONS(1734), [sym__ternary_qmark] = ACTIONS(1734), [sym_html_comment] = ACTIONS(5), }, [222] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2587), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2557), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(222), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_STAR] = ACTIONS(1746), - [anon_sym_type] = ACTIONS(1596), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_STAR] = ACTIONS(1744), + [anon_sym_type] = ACTIONS(1464), [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_COMMA] = ACTIONS(1728), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), + [anon_sym_await] = ACTIONS(1472), [anon_sym_in] = ACTIONS(1728), + [anon_sym_of] = ACTIONS(1728), [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_yield] = ACTIONS(1474), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1728), [anon_sym_DOT] = ACTIONS(1728), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(1728), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), [anon_sym_AMP_AMP] = ACTIONS(1728), [anon_sym_PIPE_PIPE] = ACTIONS(1728), [anon_sym_GT_GT] = ACTIONS(1728), @@ -64903,9 +64595,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1728), [anon_sym_CARET] = ACTIONS(1728), [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_PERCENT] = ACTIONS(1728), [anon_sym_STAR_STAR] = ACTIONS(1728), [anon_sym_LT] = ACTIONS(83), @@ -64917,106 +64609,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1728), [anon_sym_QMARK_QMARK] = ACTIONS(1728), [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1488), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [anon_sym_satisfies] = ACTIONS(1728), [sym__automatic_semicolon] = ACTIONS(1734), [sym__ternary_qmark] = ACTIONS(1734), [sym_html_comment] = ACTIONS(5), }, [223] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2746), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2615), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(223), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), + [anon_sym_export] = ACTIONS(1362), [anon_sym_STAR] = ACTIONS(1752), - [anon_sym_type] = ACTIONS(1562), + [anon_sym_type] = ACTIONS(1362), [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1564), + [anon_sym_namespace] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1127), [anon_sym_COMMA] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), [anon_sym_in] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_yield] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1728), @@ -65024,11 +64716,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), [anon_sym_QMARK_DOT] = ACTIONS(1728), [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), + [anon_sym_using] = ACTIONS(1382), [anon_sym_AMP_AMP] = ACTIONS(1728), [anon_sym_PIPE_PIPE] = ACTIONS(1728), [anon_sym_GT_GT] = ACTIONS(1728), @@ -65037,9 +64729,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1728), [anon_sym_CARET] = ACTIONS(1728), [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_PERCENT] = ACTIONS(1728), [anon_sym_STAR_STAR] = ACTIONS(1728), [anon_sym_LT] = ACTIONS(172), @@ -65051,15 +64743,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1728), [anon_sym_QMARK_QMARK] = ACTIONS(1728), [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -65067,102 +64759,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [anon_sym_satisfies] = ACTIONS(1728), [anon_sym_implements] = ACTIONS(1728), [sym__ternary_qmark] = ACTIONS(1734), [sym_html_comment] = ACTIONS(5), }, [224] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3063), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2878), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(224), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), + [anon_sym_export] = ACTIONS(1568), [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_type] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1568), [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), + [anon_sym_namespace] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(1728), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), [anon_sym_in] = ACTIONS(1728), - [anon_sym_SEMI] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(1728), + [anon_sym_yield] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1728), [anon_sym_DOT] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(151), [anon_sym_QMARK_DOT] = ACTIONS(1728), [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), + [anon_sym_using] = ACTIONS(1584), [anon_sym_AMP_AMP] = ACTIONS(1728), [anon_sym_PIPE_PIPE] = ACTIONS(1728), [anon_sym_GT_GT] = ACTIONS(1728), @@ -65171,12 +64864,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1728), [anon_sym_CARET] = ACTIONS(1728), [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(1728), [anon_sym_STAR_STAR] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(172), [anon_sym_LT_EQ] = ACTIONS(1728), [anon_sym_EQ_EQ] = ACTIONS(1728), [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), @@ -65185,119 +64878,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1728), [anon_sym_QMARK_QMARK] = ACTIONS(1728), [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1592), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [anon_sym_satisfies] = ACTIONS(1728), - [sym__automatic_semicolon] = ACTIONS(1734), [sym__ternary_qmark] = ACTIONS(1734), [sym_html_comment] = ACTIONS(5), }, [225] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2919), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2912), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(225), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), + [anon_sym_export] = ACTIONS(1602), [anon_sym_STAR] = ACTIONS(1768), - [anon_sym_type] = ACTIONS(1482), + [anon_sym_type] = ACTIONS(1602), [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_RBRACE] = ACTIONS(1728), - [anon_sym_typeof] = ACTIONS(1490), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1612), [anon_sym_in] = ACTIONS(1728), - [anon_sym_COLON] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_SEMI] = ACTIONS(1728), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1728), [anon_sym_DOT] = ACTIONS(1728), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(1728), [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), + [anon_sym_using] = ACTIONS(1622), [anon_sym_AMP_AMP] = ACTIONS(1728), [anon_sym_PIPE_PIPE] = ACTIONS(1728), [anon_sym_GT_GT] = ACTIONS(1728), @@ -65306,12 +64997,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1728), [anon_sym_CARET] = ACTIONS(1728), [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(1728), [anon_sym_STAR_STAR] = ACTIONS(1728), - [anon_sym_LT] = ACTIONS(172), + [anon_sym_LT] = ACTIONS(83), [anon_sym_LT_EQ] = ACTIONS(1728), [anon_sym_EQ_EQ] = ACTIONS(1728), [anon_sym_EQ_EQ_EQ] = ACTIONS(1728), @@ -65320,117 +65011,118 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1728), [anon_sym_QMARK_QMARK] = ACTIONS(1728), [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1634), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [anon_sym_satisfies] = ACTIONS(1728), + [sym__automatic_semicolon] = ACTIONS(1734), [sym__ternary_qmark] = ACTIONS(1734), [sym_html_comment] = ACTIONS(5), }, [226] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3147), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3006), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(226), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), + [anon_sym_export] = ACTIONS(1534), [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_type] = ACTIONS(1618), + [anon_sym_type] = ACTIONS(1534), [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), [anon_sym_in] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(1728), + [anon_sym_of] = ACTIONS(1728), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1728), [anon_sym_DOT] = ACTIONS(1728), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), [anon_sym_QMARK_DOT] = ACTIONS(1728), [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), + [anon_sym_using] = ACTIONS(1550), [anon_sym_AMP_AMP] = ACTIONS(1728), [anon_sym_PIPE_PIPE] = ACTIONS(1728), [anon_sym_GT_GT] = ACTIONS(1728), @@ -65439,9 +65131,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1728), [anon_sym_CARET] = ACTIONS(1728), [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_PERCENT] = ACTIONS(1728), [anon_sym_STAR_STAR] = ACTIONS(1728), [anon_sym_LT] = ACTIONS(172), @@ -65453,15 +65145,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1728), [anon_sym_QMARK_QMARK] = ACTIONS(1728), [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -65469,101 +65161,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [anon_sym_satisfies] = ACTIONS(1728), [sym__ternary_qmark] = ACTIONS(1734), [sym_html_comment] = ACTIONS(5), }, [227] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3156), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3100), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(227), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), + [anon_sym_export] = ACTIONS(1498), [anon_sym_STAR] = ACTIONS(1784), - [anon_sym_type] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1498), [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), [anon_sym_in] = ACTIONS(1728), - [anon_sym_of] = ACTIONS(1728), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(1728), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1728), [anon_sym_DOT] = ACTIONS(1728), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1512), [anon_sym_function] = ACTIONS(151), [anon_sym_QMARK_DOT] = ACTIONS(1728), [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), + [anon_sym_using] = ACTIONS(1516), [anon_sym_AMP_AMP] = ACTIONS(1728), [anon_sym_PIPE_PIPE] = ACTIONS(1728), [anon_sym_GT_GT] = ACTIONS(1728), @@ -65572,9 +65264,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1728), [anon_sym_CARET] = ACTIONS(1728), [anon_sym_PIPE] = ACTIONS(1728), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(1728), [anon_sym_STAR_STAR] = ACTIONS(1728), [anon_sym_LT] = ACTIONS(172), @@ -65586,15 +65278,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1728), [anon_sym_QMARK_QMARK] = ACTIONS(1728), [anon_sym_instanceof] = ACTIONS(1728), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -65602,99 +65294,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [anon_sym_satisfies] = ACTIONS(1728), [sym__ternary_qmark] = ACTIONS(1734), [sym_html_comment] = ACTIONS(5), }, [228] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3380), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3189), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(228), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_STAR] = ACTIONS(1790), [anon_sym_type] = ACTIONS(1097), [anon_sym_as] = ACTIONS(1728), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_in] = ACTIONS(1728), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1728), [anon_sym_DOT] = ACTIONS(1728), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), [anon_sym_QMARK_DOT] = ACTIONS(1728), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_AMP_AMP] = ACTIONS(1728), [anon_sym_PIPE_PIPE] = ACTIONS(1728), @@ -65706,7 +65398,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1728), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_PERCENT] = ACTIONS(1728), [anon_sym_STAR_STAR] = ACTIONS(1728), [anon_sym_LT] = ACTIONS(172), @@ -65721,10 +65413,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -65732,7 +65424,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -65755,1538 +65447,1538 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [229] = { - [sym_declaration] = STATE(1341), - [sym_import] = STATE(4369), - [sym_variable_declaration] = STATE(1382), - [sym_lexical_declaration] = STATE(1382), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3019), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1382), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1382), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1382), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_declaration] = STATE(1198), + [sym_import] = STATE(4290), + [sym_variable_declaration] = STATE(1444), + [sym_lexical_declaration] = STATE(1444), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2882), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1444), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1444), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1444), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(229), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_function_signature] = STATE(1382), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1382), - [sym_abstract_class_declaration] = STATE(1382), - [sym_module] = STATE(1382), - [sym_internal_module] = STATE(345), - [sym_import_alias] = STATE(1382), - [sym_interface_declaration] = STATE(1382), - [sym_enum_declaration] = STATE(1382), - [sym_type_alias_declaration] = STATE(1382), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5015), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_function_signature] = STATE(1444), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1444), + [sym_abstract_class_declaration] = STATE(1444), + [sym_module] = STATE(1444), + [sym_internal_module] = STATE(397), + [sym_import_alias] = STATE(1444), + [sym_interface_declaration] = STATE(1444), + [sym_enum_declaration] = STATE(1444), + [sym_type_alias_declaration] = STATE(1444), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4931), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), [anon_sym_type] = ACTIONS(1792), [anon_sym_namespace] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(1796), - [anon_sym_var] = ACTIONS(353), + [anon_sym_var] = ACTIONS(778), [anon_sym_let] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), + [anon_sym_class] = ACTIONS(808), [anon_sym_async] = ACTIONS(1800), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_function] = ACTIONS(812), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), [anon_sym_declare] = ACTIONS(1802), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), [anon_sym_module] = ACTIONS(1804), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), + [anon_sym_abstract] = ACTIONS(822), + [anon_sym_interface] = ACTIONS(824), + [anon_sym_enum] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, [230] = { - [sym_declaration] = STATE(5203), - [sym_import] = STATE(4369), - [sym_variable_declaration] = STATE(5192), - [sym_lexical_declaration] = STATE(5192), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2998), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(5192), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(5192), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(5192), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_declaration] = STATE(1165), + [sym_import] = STATE(4290), + [sym_variable_declaration] = STATE(1327), + [sym_lexical_declaration] = STATE(1327), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2740), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1327), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1327), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1327), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(230), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_function_signature] = STATE(5192), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(5192), - [sym_abstract_class_declaration] = STATE(5192), - [sym_module] = STATE(5192), - [sym_internal_module] = STATE(3199), - [sym_import_alias] = STATE(5192), - [sym_interface_declaration] = STATE(5192), - [sym_enum_declaration] = STATE(5192), - [sym_type_alias_declaration] = STATE(5192), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5275), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_function_signature] = STATE(1327), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1327), + [sym_abstract_class_declaration] = STATE(1327), + [sym_module] = STATE(1327), + [sym_internal_module] = STATE(413), + [sym_import_alias] = STATE(1327), + [sym_interface_declaration] = STATE(1327), + [sym_enum_declaration] = STATE(1327), + [sym_type_alias_declaration] = STATE(1327), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4955), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), [anon_sym_type] = ACTIONS(1806), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(1808), - [anon_sym_var] = ACTIONS(1810), + [anon_sym_namespace] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), + [anon_sym_import] = ACTIONS(1810), + [anon_sym_var] = ACTIONS(353), [anon_sym_let] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_const] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1816), - [anon_sym_async] = ACTIONS(1818), - [anon_sym_function] = ACTIONS(1820), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(383), + [anon_sym_async] = ACTIONS(1814), + [anon_sym_function] = ACTIONS(387), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1822), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1824), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [anon_sym_abstract] = ACTIONS(1826), - [anon_sym_interface] = ACTIONS(1828), - [anon_sym_enum] = ACTIONS(1830), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1816), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1818), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), + [anon_sym_abstract] = ACTIONS(397), + [anon_sym_interface] = ACTIONS(399), + [anon_sym_enum] = ACTIONS(401), [sym_html_comment] = ACTIONS(5), }, [231] = { - [sym_declaration] = STATE(6983), - [sym_import] = STATE(4369), - [sym_variable_declaration] = STATE(6895), - [sym_lexical_declaration] = STATE(6895), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3056), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(6895), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(6895), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(6895), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_declaration] = STATE(1275), + [sym_import] = STATE(4290), + [sym_variable_declaration] = STATE(1444), + [sym_lexical_declaration] = STATE(1444), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2895), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1444), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1444), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1444), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(231), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_function_signature] = STATE(6895), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(6895), - [sym_abstract_class_declaration] = STATE(6895), - [sym_module] = STATE(6895), - [sym_internal_module] = STATE(3105), - [sym_import_alias] = STATE(6895), - [sym_interface_declaration] = STATE(6895), - [sym_enum_declaration] = STATE(6895), - [sym_type_alias_declaration] = STATE(6895), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5200), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(1834), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(1836), - [anon_sym_const] = ACTIONS(910), - [anon_sym_BANG] = ACTIONS(1370), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_function_signature] = STATE(1444), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1444), + [sym_abstract_class_declaration] = STATE(1444), + [sym_module] = STATE(1444), + [sym_internal_module] = STATE(397), + [sym_import_alias] = STATE(1444), + [sym_interface_declaration] = STATE(1444), + [sym_enum_declaration] = STATE(1444), + [sym_type_alias_declaration] = STATE(1444), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4931), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1792), + [anon_sym_namespace] = ACTIONS(1794), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), + [anon_sym_import] = ACTIONS(1796), + [anon_sym_var] = ACTIONS(778), + [anon_sym_let] = ACTIONS(1798), + [anon_sym_const] = ACTIONS(782), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(1838), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(808), + [anon_sym_async] = ACTIONS(1800), + [anon_sym_function] = ACTIONS(812), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1840), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1842), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1802), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1804), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), + [anon_sym_abstract] = ACTIONS(822), + [anon_sym_interface] = ACTIONS(824), + [anon_sym_enum] = ACTIONS(826), [sym_html_comment] = ACTIONS(5), }, [232] = { - [sym_declaration] = STATE(6973), - [sym_import] = STATE(4369), - [sym_variable_declaration] = STATE(6895), - [sym_lexical_declaration] = STATE(6895), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2935), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(6895), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(6895), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(6895), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_declaration] = STATE(1527), + [sym_import] = STATE(4290), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(232), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_function_signature] = STATE(6895), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(6895), - [sym_abstract_class_declaration] = STATE(6895), - [sym_module] = STATE(6895), - [sym_internal_module] = STATE(3105), - [sym_import_alias] = STATE(6895), - [sym_interface_declaration] = STATE(6895), - [sym_enum_declaration] = STATE(6895), - [sym_type_alias_declaration] = STATE(6895), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5200), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1832), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(1834), - [anon_sym_var] = ACTIONS(906), - [anon_sym_let] = ACTIONS(1836), - [anon_sym_const] = ACTIONS(910), - [anon_sym_BANG] = ACTIONS(1370), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1820), + [anon_sym_namespace] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), + [anon_sym_import] = ACTIONS(1824), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1826), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(936), - [anon_sym_async] = ACTIONS(1838), - [anon_sym_function] = ACTIONS(940), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(1828), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1840), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1842), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [anon_sym_abstract] = ACTIONS(950), - [anon_sym_interface] = ACTIONS(952), - [anon_sym_enum] = ACTIONS(954), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1830), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1832), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [233] = { - [sym_declaration] = STATE(1428), - [sym_import] = STATE(4369), - [sym_variable_declaration] = STATE(1220), - [sym_lexical_declaration] = STATE(1220), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2969), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1220), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1220), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1220), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_declaration] = STATE(5132), + [sym_import] = STATE(4290), + [sym_variable_declaration] = STATE(5171), + [sym_lexical_declaration] = STATE(5171), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2836), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(5171), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(5171), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(5171), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(233), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_function_signature] = STATE(1220), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1220), - [sym_abstract_class_declaration] = STATE(1220), - [sym_module] = STATE(1220), - [sym_internal_module] = STATE(415), - [sym_import_alias] = STATE(1220), - [sym_interface_declaration] = STATE(1220), - [sym_enum_declaration] = STATE(1220), - [sym_type_alias_declaration] = STATE(1220), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5474), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1844), - [anon_sym_namespace] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(1848), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(1850), - [anon_sym_const] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(1370), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_function_signature] = STATE(5171), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(5171), + [sym_abstract_class_declaration] = STATE(5171), + [sym_module] = STATE(5171), + [sym_internal_module] = STATE(3040), + [sym_import_alias] = STATE(5171), + [sym_interface_declaration] = STATE(5171), + [sym_enum_declaration] = STATE(5171), + [sym_type_alias_declaration] = STATE(5171), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4875), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1834), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), + [anon_sym_import] = ACTIONS(1836), + [anon_sym_var] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1842), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(1852), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(1844), + [anon_sym_async] = ACTIONS(1846), + [anon_sym_function] = ACTIONS(1848), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1854), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1856), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1850), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1852), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), + [anon_sym_abstract] = ACTIONS(1854), + [anon_sym_interface] = ACTIONS(1856), + [anon_sym_enum] = ACTIONS(1858), [sym_html_comment] = ACTIONS(5), }, [234] = { - [sym_declaration] = STATE(1039), - [sym_import] = STATE(4369), - [sym_variable_declaration] = STATE(1105), - [sym_lexical_declaration] = STATE(1105), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3032), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1105), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1105), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1105), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_declaration] = STATE(1081), + [sym_import] = STATE(4290), + [sym_variable_declaration] = STATE(1100), + [sym_lexical_declaration] = STATE(1100), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2695), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1100), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1100), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1100), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(234), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_function_signature] = STATE(1105), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1105), - [sym_abstract_class_declaration] = STATE(1105), - [sym_module] = STATE(1105), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_function_signature] = STATE(1100), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1100), + [sym_abstract_class_declaration] = STATE(1100), + [sym_module] = STATE(1100), [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1105), - [sym_interface_declaration] = STATE(1105), - [sym_enum_declaration] = STATE(1105), - [sym_type_alias_declaration] = STATE(1105), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4995), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1858), - [anon_sym_namespace] = ACTIONS(1860), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(1862), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(1864), - [anon_sym_const] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(1370), + [sym_import_alias] = STATE(1100), + [sym_interface_declaration] = STATE(1100), + [sym_enum_declaration] = STATE(1100), + [sym_type_alias_declaration] = STATE(1100), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5380), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1860), + [anon_sym_namespace] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), + [anon_sym_import] = ACTIONS(1864), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(1866), + [anon_sym_const] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(1866), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(872), + [anon_sym_async] = ACTIONS(1868), + [anon_sym_function] = ACTIONS(876), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1868), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1870), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1870), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, [235] = { - [sym_declaration] = STATE(5306), - [sym_import] = STATE(4369), - [sym_variable_declaration] = STATE(5192), - [sym_lexical_declaration] = STATE(5192), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2988), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(5192), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(5192), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(5192), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_declaration] = STATE(6551), + [sym_import] = STATE(4290), + [sym_variable_declaration] = STATE(6360), + [sym_lexical_declaration] = STATE(6360), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2782), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(6360), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(6360), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(6360), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(235), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_function_signature] = STATE(5192), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(5192), - [sym_abstract_class_declaration] = STATE(5192), - [sym_module] = STATE(5192), - [sym_internal_module] = STATE(3199), - [sym_import_alias] = STATE(5192), - [sym_interface_declaration] = STATE(5192), - [sym_enum_declaration] = STATE(5192), - [sym_type_alias_declaration] = STATE(5192), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5275), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1806), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(1808), - [anon_sym_var] = ACTIONS(1810), - [anon_sym_let] = ACTIONS(1812), - [anon_sym_const] = ACTIONS(1814), - [anon_sym_BANG] = ACTIONS(1370), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_function_signature] = STATE(6360), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(6360), + [sym_abstract_class_declaration] = STATE(6360), + [sym_module] = STATE(6360), + [sym_internal_module] = STATE(3162), + [sym_import_alias] = STATE(6360), + [sym_interface_declaration] = STATE(6360), + [sym_enum_declaration] = STATE(6360), + [sym_type_alias_declaration] = STATE(6360), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5069), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), + [anon_sym_import] = ACTIONS(1876), + [anon_sym_var] = ACTIONS(906), + [anon_sym_let] = ACTIONS(1878), + [anon_sym_const] = ACTIONS(910), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1816), - [anon_sym_async] = ACTIONS(1818), - [anon_sym_function] = ACTIONS(1820), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(936), + [anon_sym_async] = ACTIONS(1880), + [anon_sym_function] = ACTIONS(940), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1822), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1824), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [anon_sym_abstract] = ACTIONS(1826), - [anon_sym_interface] = ACTIONS(1828), - [anon_sym_enum] = ACTIONS(1830), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1882), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1884), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), + [anon_sym_abstract] = ACTIONS(950), + [anon_sym_interface] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, [236] = { - [sym_declaration] = STATE(1201), - [sym_import] = STATE(4369), - [sym_variable_declaration] = STATE(1382), - [sym_lexical_declaration] = STATE(1382), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3024), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1382), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1382), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1382), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_declaration] = STATE(6462), + [sym_import] = STATE(4290), + [sym_variable_declaration] = STATE(6360), + [sym_lexical_declaration] = STATE(6360), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2828), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(6360), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(6360), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(6360), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(236), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_function_signature] = STATE(1382), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1382), - [sym_abstract_class_declaration] = STATE(1382), - [sym_module] = STATE(1382), - [sym_internal_module] = STATE(345), - [sym_import_alias] = STATE(1382), - [sym_interface_declaration] = STATE(1382), - [sym_enum_declaration] = STATE(1382), - [sym_type_alias_declaration] = STATE(1382), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5015), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1792), - [anon_sym_namespace] = ACTIONS(1794), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(1796), - [anon_sym_var] = ACTIONS(353), - [anon_sym_let] = ACTIONS(1798), - [anon_sym_const] = ACTIONS(357), - [anon_sym_BANG] = ACTIONS(1370), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_function_signature] = STATE(6360), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(6360), + [sym_abstract_class_declaration] = STATE(6360), + [sym_module] = STATE(6360), + [sym_internal_module] = STATE(3162), + [sym_import_alias] = STATE(6360), + [sym_interface_declaration] = STATE(6360), + [sym_enum_declaration] = STATE(6360), + [sym_type_alias_declaration] = STATE(6360), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5069), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1874), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), + [anon_sym_import] = ACTIONS(1876), + [anon_sym_var] = ACTIONS(906), + [anon_sym_let] = ACTIONS(1878), + [anon_sym_const] = ACTIONS(910), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(383), - [anon_sym_async] = ACTIONS(1800), - [anon_sym_function] = ACTIONS(387), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(936), + [anon_sym_async] = ACTIONS(1880), + [anon_sym_function] = ACTIONS(940), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1802), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1804), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [anon_sym_abstract] = ACTIONS(397), - [anon_sym_interface] = ACTIONS(399), - [anon_sym_enum] = ACTIONS(401), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1882), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1884), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), + [anon_sym_abstract] = ACTIONS(950), + [anon_sym_interface] = ACTIONS(952), + [anon_sym_enum] = ACTIONS(954), [sym_html_comment] = ACTIONS(5), }, [237] = { - [sym_declaration] = STATE(1655), - [sym_import] = STATE(4369), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3041), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_declaration] = STATE(1559), + [sym_import] = STATE(4290), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2902), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1558), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1558), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1558), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(237), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5222), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1872), - [anon_sym_namespace] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(1876), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_function_signature] = STATE(1558), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(429), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5131), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1820), + [anon_sym_namespace] = ACTIONS(1822), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), + [anon_sym_import] = ACTIONS(1824), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1878), + [anon_sym_let] = ACTIONS(1826), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(1880), + [anon_sym_async] = ACTIONS(1828), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1882), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1884), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1830), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1832), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [238] = { - [sym_declaration] = STATE(1091), - [sym_import] = STATE(4369), - [sym_variable_declaration] = STATE(1105), - [sym_lexical_declaration] = STATE(1105), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3030), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1105), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1105), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1105), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_declaration] = STATE(5070), + [sym_import] = STATE(4290), + [sym_variable_declaration] = STATE(5171), + [sym_lexical_declaration] = STATE(5171), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2824), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(5171), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(5171), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(5171), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(238), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_function_signature] = STATE(1105), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1105), - [sym_abstract_class_declaration] = STATE(1105), - [sym_module] = STATE(1105), - [sym_internal_module] = STATE(315), - [sym_import_alias] = STATE(1105), - [sym_interface_declaration] = STATE(1105), - [sym_enum_declaration] = STATE(1105), - [sym_type_alias_declaration] = STATE(1105), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(4995), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1858), - [anon_sym_namespace] = ACTIONS(1860), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(1862), - [anon_sym_var] = ACTIONS(778), - [anon_sym_let] = ACTIONS(1864), - [anon_sym_const] = ACTIONS(782), - [anon_sym_BANG] = ACTIONS(1370), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_function_signature] = STATE(5171), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(5171), + [sym_abstract_class_declaration] = STATE(5171), + [sym_module] = STATE(5171), + [sym_internal_module] = STATE(3040), + [sym_import_alias] = STATE(5171), + [sym_interface_declaration] = STATE(5171), + [sym_enum_declaration] = STATE(5171), + [sym_type_alias_declaration] = STATE(5171), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4875), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1834), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), + [anon_sym_import] = ACTIONS(1836), + [anon_sym_var] = ACTIONS(1838), + [anon_sym_let] = ACTIONS(1840), + [anon_sym_const] = ACTIONS(1842), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(808), - [anon_sym_async] = ACTIONS(1866), - [anon_sym_function] = ACTIONS(812), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(1844), + [anon_sym_async] = ACTIONS(1846), + [anon_sym_function] = ACTIONS(1848), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1868), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1870), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [anon_sym_abstract] = ACTIONS(822), - [anon_sym_interface] = ACTIONS(824), - [anon_sym_enum] = ACTIONS(826), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1850), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1852), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), + [anon_sym_abstract] = ACTIONS(1854), + [anon_sym_interface] = ACTIONS(1856), + [anon_sym_enum] = ACTIONS(1858), [sym_html_comment] = ACTIONS(5), }, [239] = { - [sym_declaration] = STATE(1241), - [sym_import] = STATE(4369), - [sym_variable_declaration] = STATE(1220), - [sym_lexical_declaration] = STATE(1220), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2956), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1220), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1220), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1220), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_declaration] = STATE(1279), + [sym_import] = STATE(4290), + [sym_variable_declaration] = STATE(1327), + [sym_lexical_declaration] = STATE(1327), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2751), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1327), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1327), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1327), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(239), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_function_signature] = STATE(1220), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1220), - [sym_abstract_class_declaration] = STATE(1220), - [sym_module] = STATE(1220), - [sym_internal_module] = STATE(415), - [sym_import_alias] = STATE(1220), - [sym_interface_declaration] = STATE(1220), - [sym_enum_declaration] = STATE(1220), - [sym_type_alias_declaration] = STATE(1220), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5474), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1844), - [anon_sym_namespace] = ACTIONS(1846), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(1848), - [anon_sym_var] = ACTIONS(842), - [anon_sym_let] = ACTIONS(1850), - [anon_sym_const] = ACTIONS(846), - [anon_sym_BANG] = ACTIONS(1370), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_function_signature] = STATE(1327), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1327), + [sym_abstract_class_declaration] = STATE(1327), + [sym_module] = STATE(1327), + [sym_internal_module] = STATE(413), + [sym_import_alias] = STATE(1327), + [sym_interface_declaration] = STATE(1327), + [sym_enum_declaration] = STATE(1327), + [sym_type_alias_declaration] = STATE(1327), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(4955), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1806), + [anon_sym_namespace] = ACTIONS(1808), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), + [anon_sym_import] = ACTIONS(1810), + [anon_sym_var] = ACTIONS(353), + [anon_sym_let] = ACTIONS(1812), + [anon_sym_const] = ACTIONS(357), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(872), - [anon_sym_async] = ACTIONS(1852), - [anon_sym_function] = ACTIONS(876), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(383), + [anon_sym_async] = ACTIONS(1814), + [anon_sym_function] = ACTIONS(387), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1854), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1856), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [anon_sym_abstract] = ACTIONS(886), - [anon_sym_interface] = ACTIONS(888), - [anon_sym_enum] = ACTIONS(890), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1816), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1818), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), + [anon_sym_abstract] = ACTIONS(397), + [anon_sym_interface] = ACTIONS(399), + [anon_sym_enum] = ACTIONS(401), [sym_html_comment] = ACTIONS(5), }, [240] = { - [sym_declaration] = STATE(1595), - [sym_import] = STATE(4369), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3000), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_class_declaration] = STATE(1573), - [sym_function_expression] = STATE(3113), - [sym_function_declaration] = STATE(1573), - [sym_generator_function] = STATE(3113), - [sym_generator_function_declaration] = STATE(1573), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_declaration] = STATE(990), + [sym_import] = STATE(4290), + [sym_variable_declaration] = STATE(1100), + [sym_lexical_declaration] = STATE(1100), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2741), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_class_declaration] = STATE(1100), + [sym_function_expression] = STATE(2940), + [sym_function_declaration] = STATE(1100), + [sym_generator_function] = STATE(2940), + [sym_generator_function_declaration] = STATE(1100), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(240), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_function_signature] = STATE(1573), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(437), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5222), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1872), - [anon_sym_namespace] = ACTIONS(1874), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(1876), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1878), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1370), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_function_signature] = STATE(1100), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_ambient_declaration] = STATE(1100), + [sym_abstract_class_declaration] = STATE(1100), + [sym_module] = STATE(1100), + [sym_internal_module] = STATE(315), + [sym_import_alias] = STATE(1100), + [sym_interface_declaration] = STATE(1100), + [sym_enum_declaration] = STATE(1100), + [sym_type_alias_declaration] = STATE(1100), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5380), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1860), + [anon_sym_namespace] = ACTIONS(1862), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), + [anon_sym_import] = ACTIONS(1864), + [anon_sym_var] = ACTIONS(842), + [anon_sym_let] = ACTIONS(1866), + [anon_sym_const] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(1880), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(872), + [anon_sym_async] = ACTIONS(1868), + [anon_sym_function] = ACTIONS(876), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1882), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1884), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1870), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1872), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), + [anon_sym_abstract] = ACTIONS(886), + [anon_sym_interface] = ACTIONS(888), + [anon_sym_enum] = ACTIONS(890), [sym_html_comment] = ACTIONS(5), }, [241] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), [sym_comment] = STATE(241), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3902), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3701), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1135), + [anon_sym_EQ] = ACTIONS(1165), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(209), [anon_sym_COMMA] = ACTIONS(118), @@ -67375,54 +67067,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [242] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), [sym_comment] = STATE(242), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3902), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3701), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(209), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(1888), [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1191), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1898), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -67494,54 +67186,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [243] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), [sym_comment] = STATE(243), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3902), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3701), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1185), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(209), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(1888), [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(1179), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1898), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -67613,54 +67305,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [244] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), [sym_comment] = STATE(244), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3902), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3701), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1135), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_COMMA] = ACTIONS(1208), + [anon_sym_COMMA] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(1888), [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(124), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(1208), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1898), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -67731,54 +67423,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [245] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), [sym_comment] = STATE(245), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3902), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3701), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1165), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(1208), [anon_sym_typeof] = ACTIONS(1888), [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), + [anon_sym_COLON] = ACTIONS(1105), [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(1208), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1898), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -67849,54 +67541,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [246] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), [sym_comment] = STATE(246), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3902), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1264), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(3967), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_EQ] = ACTIONS(213), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_RBRACE] = ACTIONS(216), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1916), [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_LBRACK] = ACTIONS(1918), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1270), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1898), + [anon_sym_new] = ACTIONS(1924), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -67917,11 +67610,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), + [anon_sym_AMP] = ACTIONS(1312), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), @@ -67934,70 +67627,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(207), + [anon_sym_void] = ACTIONS(1342), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(199), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [247] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2368), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym__formal_parameter] = STATE(5763), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7288), + [sym_string] = STATE(2547), [sym_comment] = STATE(247), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3902), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5349), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_accessibility_modifier] = STATE(399), + [sym_override_modifier] = STATE(433), + [sym_required_parameter] = STATE(6589), + [sym_optional_parameter] = STATE(6589), + [sym__parameter_name] = STATE(4571), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(316), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(991), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1001), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1141), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1011), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1938), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(1940), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1161), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(991), + [anon_sym_number] = ACTIONS(991), + [anon_sym_boolean] = ACTIONS(991), + [anon_sym_string] = ACTIONS(991), + [anon_sym_symbol] = ACTIONS(991), + [anon_sym_object] = ACTIONS(991), + [sym_html_comment] = ACTIONS(5), + }, + [248] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(248), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3701), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1252), + [anon_sym_EQ] = ACTIONS(1246), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(209), [anon_sym_RBRACE] = ACTIONS(118), @@ -68012,7 +67821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1242), + [anon_sym_EQ_GT] = ACTIONS(1252), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1898), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -68082,270 +67891,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [248] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym__formal_parameter] = STATE(6002), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7244), - [sym_string] = STATE(2723), - [sym_comment] = STATE(248), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5367), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_accessibility_modifier] = STATE(391), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(7169), - [sym_optional_parameter] = STATE(7169), - [sym__parameter_name] = STATE(4673), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(1916), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1918), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1920), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(1161), - [anon_sym_private] = ACTIONS(1161), - [anon_sym_protected] = ACTIONS(1161), - [anon_sym_override] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), - [sym_html_comment] = ACTIONS(5), - }, [249] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2510), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym__formal_parameter] = STATE(6002), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7600), - [sym_string] = STATE(2723), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), [sym_comment] = STATE(249), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5367), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_accessibility_modifier] = STATE(391), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(7169), - [sym_optional_parameter] = STATE(7169), - [sym__parameter_name] = STATE(4673), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1143), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(1916), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1918), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(1920), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(1161), - [anon_sym_private] = ACTIONS(1161), - [anon_sym_protected] = ACTIONS(1161), - [anon_sym_override] = ACTIONS(1163), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), - [sym_html_comment] = ACTIONS(5), - }, - [250] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(250), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3902), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3701), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(213), @@ -68433,56 +68008,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, + [250] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2323), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym__formal_parameter] = STATE(5763), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7121), + [sym_string] = STATE(2547), + [sym_comment] = STATE(250), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5349), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_accessibility_modifier] = STATE(399), + [sym_override_modifier] = STATE(433), + [sym_required_parameter] = STATE(6589), + [sym_optional_parameter] = STATE(6589), + [sym__parameter_name] = STATE(4571), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(316), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(991), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1001), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1141), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1011), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1938), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(1940), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(1944), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(1159), + [anon_sym_private] = ACTIONS(1159), + [anon_sym_protected] = ACTIONS(1159), + [anon_sym_override] = ACTIONS(1161), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(991), + [anon_sym_number] = ACTIONS(991), + [anon_sym_boolean] = ACTIONS(991), + [anon_sym_string] = ACTIONS(991), + [anon_sym_symbol] = ACTIONS(991), + [anon_sym_object] = ACTIONS(991), + [sym_html_comment] = ACTIONS(5), + }, [251] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), [sym_comment] = STATE(251), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(4132), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_EQ] = ACTIONS(213), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3701), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(1260), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_RBRACE] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(130), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_EQ_GT] = ACTIONS(1266), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1934), + [anon_sym_new] = ACTIONS(1898), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -68503,11 +68194,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(1310), + [anon_sym_AMP] = ACTIONS(163), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), @@ -68520,66 +68211,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(1340), + [anon_sym_void] = ACTIONS(207), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(207), + [anon_sym_number] = ACTIONS(207), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(199), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), + [anon_sym_implements] = ACTIONS(118), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(203), + [anon_sym_unique] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [252] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), [sym_comment] = STATE(252), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3902), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3701), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(1232), @@ -68668,60 +68360,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [253] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym__formal_parameter] = STATE(5830), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym__formal_parameter] = STATE(5816), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(253), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5367), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_accessibility_modifier] = STATE(391), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5349), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_accessibility_modifier] = STATE(399), [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(7169), - [sym_optional_parameter] = STATE(7169), - [sym__parameter_name] = STATE(4673), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(339), + [sym_required_parameter] = STATE(6589), + [sym_optional_parameter] = STATE(6589), + [sym__parameter_name] = STATE(4571), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(316), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -68731,7 +68423,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_RPAREN] = ACTIONS(1946), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), @@ -68747,15 +68439,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(1950), @@ -68764,16 +68456,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), + [anon_sym_AT] = ACTIONS(1155), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1952), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_override] = ACTIONS(1175), + [anon_sym_public] = ACTIONS(1171), + [anon_sym_private] = ACTIONS(1171), + [anon_sym_protected] = ACTIONS(1171), + [anon_sym_override] = ACTIONS(1173), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -68784,60 +68476,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [254] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym__formal_parameter] = STATE(6649), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym__formal_parameter] = STATE(6727), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(254), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5367), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_accessibility_modifier] = STATE(391), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5349), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_accessibility_modifier] = STATE(399), [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(7169), - [sym_optional_parameter] = STATE(7169), - [sym__parameter_name] = STATE(4673), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(339), + [sym_required_parameter] = STATE(6589), + [sym_optional_parameter] = STATE(6589), + [sym__parameter_name] = STATE(4571), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(316), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -68847,7 +68539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_RPAREN] = ACTIONS(1954), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), @@ -68863,15 +68555,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(1950), @@ -68880,16 +68572,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), + [anon_sym_AT] = ACTIONS(1155), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1952), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_override] = ACTIONS(1175), + [anon_sym_public] = ACTIONS(1171), + [anon_sym_private] = ACTIONS(1171), + [anon_sym_protected] = ACTIONS(1171), + [anon_sym_override] = ACTIONS(1173), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -68900,60 +68592,176 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [255] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym__formal_parameter] = STATE(6649), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), [sym_comment] = STATE(255), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5367), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_accessibility_modifier] = STATE(391), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3701), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(1280), + [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(130), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_EQ_GT] = ACTIONS(1286), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_void] = ACTIONS(207), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(207), + [anon_sym_number] = ACTIONS(207), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_satisfies] = ACTIONS(118), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(203), + [anon_sym_unique] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym__ternary_qmark] = ACTIONS(211), + [sym_html_comment] = ACTIONS(5), + }, + [256] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym__formal_parameter] = STATE(5763), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(256), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5349), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_accessibility_modifier] = STATE(399), [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(7169), - [sym_optional_parameter] = STATE(7169), - [sym__parameter_name] = STATE(4673), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(339), + [sym_required_parameter] = STATE(6589), + [sym_optional_parameter] = STATE(6589), + [sym__parameter_name] = STATE(4571), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(316), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -68963,8 +68771,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1956), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1141), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1948), @@ -68979,15 +68787,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(1950), @@ -68996,16 +68804,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), + [anon_sym_AT] = ACTIONS(1155), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1952), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_override] = ACTIONS(1175), + [anon_sym_public] = ACTIONS(1171), + [anon_sym_private] = ACTIONS(1171), + [anon_sym_protected] = ACTIONS(1171), + [anon_sym_override] = ACTIONS(1173), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -69015,61 +68823,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [256] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym__formal_parameter] = STATE(6649), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(256), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5367), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_accessibility_modifier] = STATE(391), + [257] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym__formal_parameter] = STATE(6151), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(257), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5349), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_accessibility_modifier] = STATE(399), [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(7169), - [sym_optional_parameter] = STATE(7169), - [sym__parameter_name] = STATE(4673), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(339), + [sym_required_parameter] = STATE(6589), + [sym_optional_parameter] = STATE(6589), + [sym__parameter_name] = STATE(4571), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(316), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -69079,8 +68887,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1958), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1956), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1948), @@ -69095,15 +68903,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(1950), @@ -69112,16 +68920,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), + [anon_sym_AT] = ACTIONS(1155), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1952), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_override] = ACTIONS(1175), + [anon_sym_public] = ACTIONS(1171), + [anon_sym_private] = ACTIONS(1171), + [anon_sym_protected] = ACTIONS(1171), + [anon_sym_override] = ACTIONS(1173), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -69131,61 +68939,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [257] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym__formal_parameter] = STATE(6649), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(257), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5367), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_accessibility_modifier] = STATE(391), + [258] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym__formal_parameter] = STATE(6727), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(258), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5349), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_accessibility_modifier] = STATE(399), [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(7169), - [sym_optional_parameter] = STATE(7169), - [sym__parameter_name] = STATE(4673), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(339), + [sym_required_parameter] = STATE(6589), + [sym_optional_parameter] = STATE(6589), + [sym__parameter_name] = STATE(4571), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(316), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -69195,8 +69003,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1960), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1958), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1948), @@ -69211,15 +69019,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(1950), @@ -69228,16 +69036,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), + [anon_sym_AT] = ACTIONS(1155), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1952), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_override] = ACTIONS(1175), + [anon_sym_public] = ACTIONS(1171), + [anon_sym_private] = ACTIONS(1171), + [anon_sym_protected] = ACTIONS(1171), + [anon_sym_override] = ACTIONS(1173), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -69247,61 +69055,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [258] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym__formal_parameter] = STATE(6002), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(258), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5367), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_accessibility_modifier] = STATE(391), + [259] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym__formal_parameter] = STATE(6727), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(259), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5349), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_accessibility_modifier] = STATE(399), [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(7169), - [sym_optional_parameter] = STATE(7169), - [sym__parameter_name] = STATE(4673), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(339), + [sym_required_parameter] = STATE(6589), + [sym_optional_parameter] = STATE(6589), + [sym__parameter_name] = STATE(4571), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(316), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -69311,8 +69119,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1143), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1960), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1948), @@ -69327,15 +69135,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(1950), @@ -69344,16 +69152,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), + [anon_sym_AT] = ACTIONS(1155), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1952), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_override] = ACTIONS(1175), + [anon_sym_public] = ACTIONS(1171), + [anon_sym_private] = ACTIONS(1171), + [anon_sym_protected] = ACTIONS(1171), + [anon_sym_override] = ACTIONS(1173), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -69363,39 +69171,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [259] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(259), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3902), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [260] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(260), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3701), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(209), [anon_sym_typeof] = ACTIONS(1888), @@ -69403,13 +69211,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1105), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1898), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -69479,61 +69287,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [260] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym__formal_parameter] = STATE(6649), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(260), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5367), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_accessibility_modifier] = STATE(391), + [261] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym__formal_parameter] = STATE(6727), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(261), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5349), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_accessibility_modifier] = STATE(399), [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(7169), - [sym_optional_parameter] = STATE(7169), - [sym__parameter_name] = STATE(4673), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(339), + [sym_required_parameter] = STATE(6589), + [sym_optional_parameter] = STATE(6589), + [sym__parameter_name] = STATE(4571), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(316), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -69543,7 +69351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_RPAREN] = ACTIONS(1962), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), @@ -69559,15 +69367,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(1950), @@ -69576,16 +69384,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), + [anon_sym_AT] = ACTIONS(1155), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1952), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_override] = ACTIONS(1175), + [anon_sym_public] = ACTIONS(1171), + [anon_sym_private] = ACTIONS(1171), + [anon_sym_protected] = ACTIONS(1171), + [anon_sym_override] = ACTIONS(1173), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -69595,61 +69403,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [261] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym__formal_parameter] = STATE(6649), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(261), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5367), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_accessibility_modifier] = STATE(391), + [262] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym__formal_parameter] = STATE(6727), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(262), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5349), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_accessibility_modifier] = STATE(399), [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(7169), - [sym_optional_parameter] = STATE(7169), - [sym__parameter_name] = STATE(4673), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(339), + [sym_required_parameter] = STATE(6589), + [sym_optional_parameter] = STATE(6589), + [sym__parameter_name] = STATE(4571), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(316), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -69659,7 +69467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_RPAREN] = ACTIONS(1964), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), @@ -69675,15 +69483,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(1950), @@ -69692,16 +69500,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), + [anon_sym_AT] = ACTIONS(1155), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1952), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_override] = ACTIONS(1175), + [anon_sym_public] = ACTIONS(1171), + [anon_sym_private] = ACTIONS(1171), + [anon_sym_protected] = ACTIONS(1171), + [anon_sym_override] = ACTIONS(1173), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -69711,39 +69519,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [262] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(262), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3902), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [263] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(263), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3701), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1272), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(209), [anon_sym_typeof] = ACTIONS(1888), @@ -69751,13 +69559,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1119), [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_EQ_GT] = ACTIONS(1224), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1898), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -69827,61 +69635,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [263] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym__formal_parameter] = STATE(6425), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(263), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5367), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_accessibility_modifier] = STATE(391), + [264] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym__formal_parameter] = STATE(6727), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(264), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5349), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_accessibility_modifier] = STATE(399), [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(7169), - [sym_optional_parameter] = STATE(7169), - [sym__parameter_name] = STATE(4673), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(339), + [sym_required_parameter] = STATE(6589), + [sym_optional_parameter] = STATE(6589), + [sym__parameter_name] = STATE(4571), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(316), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -69891,7 +69699,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_RPAREN] = ACTIONS(1966), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), @@ -69907,15 +69715,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(1950), @@ -69924,16 +69732,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), + [anon_sym_AT] = ACTIONS(1155), [anon_sym_static] = ACTIONS(111), [anon_sym_readonly] = ACTIONS(1952), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_override] = ACTIONS(1175), + [anon_sym_public] = ACTIONS(1171), + [anon_sym_private] = ACTIONS(1171), + [anon_sym_protected] = ACTIONS(1171), + [anon_sym_override] = ACTIONS(1173), [anon_sym_module] = ACTIONS(111), [anon_sym_any] = ACTIONS(111), [anon_sym_number] = ACTIONS(111), @@ -69943,1305 +69751,1189 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [264] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(264), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3902), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1280), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1286), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(207), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, [265] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2735), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6017), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(6155), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(265), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6018), - [aux_sym_array_pattern_repeat1] = STATE(6020), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1101), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(6156), + [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(991), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_RBRACK] = ACTIONS(1970), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1011), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1938), + [anon_sym_using] = ACTIONS(1015), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1918), + [sym_undefined] = ACTIONS(1942), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(991), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(991), + [anon_sym_number] = ACTIONS(991), + [anon_sym_boolean] = ACTIONS(991), + [anon_sym_string] = ACTIONS(991), + [anon_sym_symbol] = ACTIONS(991), + [anon_sym_object] = ACTIONS(991), [sym_html_comment] = ACTIONS(5), }, [266] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2808), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6017), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(266), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6018), - [aux_sym_array_pattern_repeat1] = STATE(6020), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(968), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1970), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1972), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1972), + [anon_sym_RBRACK] = ACTIONS(1972), [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1972), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1918), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_QMARK] = ACTIONS(1972), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), + [anon_sym_extends] = ACTIONS(1972), [sym_html_comment] = ACTIONS(5), }, [267] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2818), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6405), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(6155), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(267), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6404), - [aux_sym_array_pattern_repeat1] = STATE(6020), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1101), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(6156), + [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(991), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1972), + [anon_sym_let] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_RBRACK] = ACTIONS(1974), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1011), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1938), + [anon_sym_using] = ACTIONS(1015), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1918), + [sym_undefined] = ACTIONS(1942), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(991), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(991), + [anon_sym_number] = ACTIONS(991), + [anon_sym_boolean] = ACTIONS(991), + [anon_sym_string] = ACTIONS(991), + [anon_sym_symbol] = ACTIONS(991), + [anon_sym_object] = ACTIONS(991), [sym_html_comment] = ACTIONS(5), }, [268] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2818), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6405), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(6155), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(268), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6404), - [aux_sym_array_pattern_repeat1] = STATE(6020), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1101), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(6156), + [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(991), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1974), + [anon_sym_let] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_RBRACK] = ACTIONS(1976), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1011), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1938), + [anon_sym_using] = ACTIONS(1015), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1918), + [sym_undefined] = ACTIONS(1942), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(991), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(991), + [anon_sym_number] = ACTIONS(991), + [anon_sym_boolean] = ACTIONS(991), + [anon_sym_string] = ACTIONS(991), + [anon_sym_symbol] = ACTIONS(991), + [anon_sym_object] = ACTIONS(991), [sym_html_comment] = ACTIONS(5), }, [269] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2818), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6405), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2670), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(5774), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(269), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6404), - [aux_sym_array_pattern_repeat1] = STATE(6020), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1101), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(5776), + [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(991), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1976), + [anon_sym_let] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_RBRACK] = ACTIONS(1978), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1011), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1938), + [anon_sym_using] = ACTIONS(1015), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1918), + [sym_undefined] = ACTIONS(1942), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(991), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(991), + [anon_sym_number] = ACTIONS(991), + [anon_sym_boolean] = ACTIONS(991), + [anon_sym_string] = ACTIONS(991), + [anon_sym_symbol] = ACTIONS(991), + [anon_sym_object] = ACTIONS(991), [sym_html_comment] = ACTIONS(5), }, [270] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2464), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym__formal_parameter] = STATE(6727), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(270), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(1978), - [anon_sym_RBRACE] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(968), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5349), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_accessibility_modifier] = STATE(399), + [sym_override_modifier] = STATE(433), + [sym_required_parameter] = STATE(6589), + [sym_optional_parameter] = STATE(6589), + [sym__parameter_name] = STATE(4571), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(316), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1978), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_RBRACK] = ACTIONS(1978), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1948), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1978), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(149), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1071), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1950), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_QMARK] = ACTIONS(1978), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), - [anon_sym_extends] = ACTIONS(1978), + [sym_undefined] = ACTIONS(1081), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1952), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1171), + [anon_sym_private] = ACTIONS(1171), + [anon_sym_protected] = ACTIONS(1171), + [anon_sym_override] = ACTIONS(1173), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [271] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2818), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6405), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(6155), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(271), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6404), - [aux_sym_array_pattern_repeat1] = STATE(6020), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1101), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(6156), + [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(991), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_RBRACK] = ACTIONS(1980), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1011), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1938), + [anon_sym_using] = ACTIONS(1015), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1918), + [sym_undefined] = ACTIONS(1942), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(991), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(991), + [anon_sym_number] = ACTIONS(991), + [anon_sym_boolean] = ACTIONS(991), + [anon_sym_string] = ACTIONS(991), + [anon_sym_symbol] = ACTIONS(991), + [anon_sym_object] = ACTIONS(991), [sym_html_comment] = ACTIONS(5), }, [272] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2808), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6017), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2670), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(5774), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(272), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6018), - [aux_sym_array_pattern_repeat1] = STATE(6020), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1101), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(5776), + [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(991), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_RBRACK] = ACTIONS(1982), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1011), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1938), + [anon_sym_using] = ACTIONS(1015), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1918), + [sym_undefined] = ACTIONS(1942), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(991), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(991), + [anon_sym_number] = ACTIONS(991), + [anon_sym_boolean] = ACTIONS(991), + [anon_sym_string] = ACTIONS(991), + [anon_sym_symbol] = ACTIONS(991), + [anon_sym_object] = ACTIONS(991), [sym_html_comment] = ACTIONS(5), }, [273] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2818), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6405), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2579), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(5774), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(273), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6404), - [aux_sym_array_pattern_repeat1] = STATE(6020), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1101), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(5776), + [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(991), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_COMMA] = ACTIONS(1968), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(1984), + [anon_sym_let] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_RBRACK] = ACTIONS(1978), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1011), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1938), + [anon_sym_using] = ACTIONS(1015), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1918), + [sym_undefined] = ACTIONS(1942), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(991), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(991), + [anon_sym_number] = ACTIONS(991), + [anon_sym_boolean] = ACTIONS(991), + [anon_sym_string] = ACTIONS(991), + [anon_sym_symbol] = ACTIONS(991), + [anon_sym_object] = ACTIONS(991), [sym_html_comment] = ACTIONS(5), }, [274] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym__formal_parameter] = STATE(6649), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(6155), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(274), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5367), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_accessibility_modifier] = STATE(391), - [sym_override_modifier] = STATE(433), - [sym_required_parameter] = STATE(7169), - [sym_optional_parameter] = STATE(7169), - [sym__parameter_name] = STATE(4673), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(339), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(6156), + [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(991), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_COMMA] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_let] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_RBRACK] = ACTIONS(1984), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1011), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1938), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1950), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1952), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [sym_undefined] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(991), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(991), + [anon_sym_number] = ACTIONS(991), + [anon_sym_boolean] = ACTIONS(991), + [anon_sym_string] = ACTIONS(991), + [anon_sym_symbol] = ACTIONS(991), + [anon_sym_object] = ACTIONS(991), [sym_html_comment] = ACTIONS(5), }, [275] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), [sym_comment] = STATE(275), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3902), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3701), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(209), [anon_sym_typeof] = ACTIONS(1888), @@ -71325,57 +71017,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [276] = { - [sym_import] = STATE(4369), - [sym_expression_statement] = STATE(376), - [sym_variable_declaration] = STATE(376), - [sym_lexical_declaration] = STATE(376), - [sym_empty_statement] = STATE(376), - [sym_parenthesized_expression] = STATE(2184), - [sym_expression] = STATE(2679), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2184), - [sym_subscript_expression] = STATE(2184), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(6477), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(7092), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_expression_statement] = STATE(369), + [sym_variable_declaration] = STATE(369), + [sym_lexical_declaration] = STATE(369), + [sym_empty_statement] = STATE(369), + [sym_parenthesized_expression] = STATE(2025), + [sym_expression] = STATE(2478), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2025), + [sym_subscript_expression] = STATE(2025), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(5947), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6755), + [sym_string] = STATE(2940), [sym_comment] = STATE(276), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2184), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2025), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), [sym_identifier] = ACTIONS(1986), [anon_sym_export] = ACTIONS(1988), [anon_sym_type] = ACTIONS(1988), @@ -71395,9 +71087,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), + [anon_sym_class] = ACTIONS(973), [anon_sym_async] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_function] = ACTIONS(977), [anon_sym_new] = ACTIONS(2006), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -71439,70 +71131,70 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [277] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3127), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2228), - [sym_subscript_expression] = STATE(2228), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(5832), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3077), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(5714), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(277), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2228), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_mapped_type_clause] = STATE(7478), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_pattern_repeat1] = STATE(6020), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_mapped_type_clause] = STATE(7185), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_pattern_repeat1] = STATE(5777), [sym_identifier] = ACTIONS(2010), [anon_sym_export] = ACTIONS(2012), [anon_sym_type] = ACTIONS(2012), [anon_sym_namespace] = ACTIONS(2014), [anon_sym_LBRACE] = ACTIONS(2016), [anon_sym_COMMA] = ACTIONS(2018), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(2012), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_RBRACK] = ACTIONS(2022), [anon_sym_LTtemplate_GT] = ACTIONS(65), @@ -71512,21 +71204,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(2024), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(2026), - [anon_sym_using] = ACTIONS(1634), + [anon_sym_using] = ACTIONS(1516), [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -71553,91 +71245,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [278] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2464), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(278), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(1978), - [anon_sym_RBRACE] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(1972), + [anon_sym_RBRACE] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(1978), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_SEMI] = ACTIONS(1972), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1972), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_AMP] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -71645,79 +71337,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), - [anon_sym_extends] = ACTIONS(1978), - [anon_sym_PIPE_RBRACE] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), + [anon_sym_extends] = ACTIONS(1972), + [anon_sym_PIPE_RBRACE] = ACTIONS(1972), [sym__automatic_semicolon] = ACTIONS(2030), [sym_html_comment] = ACTIONS(5), }, [279] = { - [sym_import] = STATE(4369), - [sym_expression_statement] = STATE(354), - [sym_variable_declaration] = STATE(354), - [sym_lexical_declaration] = STATE(354), - [sym_empty_statement] = STATE(354), - [sym_parenthesized_expression] = STATE(2184), - [sym_expression] = STATE(2679), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2184), - [sym_subscript_expression] = STATE(2184), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(6477), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(7092), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_expression_statement] = STATE(359), + [sym_variable_declaration] = STATE(359), + [sym_lexical_declaration] = STATE(359), + [sym_empty_statement] = STATE(359), + [sym_parenthesized_expression] = STATE(2025), + [sym_expression] = STATE(2478), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2025), + [sym_subscript_expression] = STATE(2025), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(5947), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6755), + [sym_string] = STATE(2940), [sym_comment] = STATE(279), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2184), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2025), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), [sym_identifier] = ACTIONS(1986), [anon_sym_export] = ACTIONS(1988), [anon_sym_type] = ACTIONS(1988), @@ -71737,9 +71429,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), + [anon_sym_class] = ACTIONS(973), [anon_sym_async] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_function] = ACTIONS(977), [anon_sym_new] = ACTIONS(2006), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -71781,57 +71473,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [280] = { - [sym_import] = STATE(4369), - [sym_expression_statement] = STATE(356), - [sym_variable_declaration] = STATE(356), - [sym_lexical_declaration] = STATE(356), - [sym_empty_statement] = STATE(356), - [sym_parenthesized_expression] = STATE(2184), - [sym_expression] = STATE(2679), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2184), - [sym_subscript_expression] = STATE(2184), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(6477), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(7092), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_expression_statement] = STATE(404), + [sym_variable_declaration] = STATE(404), + [sym_lexical_declaration] = STATE(404), + [sym_empty_statement] = STATE(404), + [sym_parenthesized_expression] = STATE(2025), + [sym_expression] = STATE(2478), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2025), + [sym_subscript_expression] = STATE(2025), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(5947), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6755), + [sym_string] = STATE(2940), [sym_comment] = STATE(280), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2184), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2025), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), [sym_identifier] = ACTIONS(1986), [anon_sym_export] = ACTIONS(1988), [anon_sym_type] = ACTIONS(1988), @@ -71851,9 +71543,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), + [anon_sym_class] = ACTIONS(973), [anon_sym_async] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_function] = ACTIONS(977), [anon_sym_new] = ACTIONS(2006), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -71895,57 +71587,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [281] = { - [sym_import] = STATE(4369), - [sym_expression_statement] = STATE(394), - [sym_variable_declaration] = STATE(394), - [sym_lexical_declaration] = STATE(394), - [sym_empty_statement] = STATE(394), - [sym_parenthesized_expression] = STATE(2184), - [sym_expression] = STATE(2679), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2184), - [sym_subscript_expression] = STATE(2184), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(6477), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(7092), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_expression_statement] = STATE(396), + [sym_variable_declaration] = STATE(396), + [sym_lexical_declaration] = STATE(396), + [sym_empty_statement] = STATE(396), + [sym_parenthesized_expression] = STATE(2025), + [sym_expression] = STATE(2478), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2025), + [sym_subscript_expression] = STATE(2025), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(5947), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6755), + [sym_string] = STATE(2940), [sym_comment] = STATE(281), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2184), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2025), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), [sym_identifier] = ACTIONS(1986), [anon_sym_export] = ACTIONS(1988), [anon_sym_type] = ACTIONS(1988), @@ -71965,9 +71657,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), + [anon_sym_class] = ACTIONS(973), [anon_sym_async] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_function] = ACTIONS(977), [anon_sym_new] = ACTIONS(2006), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -72009,57 +71701,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [282] = { - [sym_import] = STATE(4369), - [sym_expression_statement] = STATE(374), - [sym_variable_declaration] = STATE(374), - [sym_lexical_declaration] = STATE(374), - [sym_empty_statement] = STATE(374), - [sym_parenthesized_expression] = STATE(2184), - [sym_expression] = STATE(2679), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2184), - [sym_subscript_expression] = STATE(2184), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(6477), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(7092), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_expression_statement] = STATE(392), + [sym_variable_declaration] = STATE(392), + [sym_lexical_declaration] = STATE(392), + [sym_empty_statement] = STATE(392), + [sym_parenthesized_expression] = STATE(2025), + [sym_expression] = STATE(2478), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2025), + [sym_subscript_expression] = STATE(2025), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(5947), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6755), + [sym_string] = STATE(2940), [sym_comment] = STATE(282), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2184), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2025), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), [sym_identifier] = ACTIONS(1986), [anon_sym_export] = ACTIONS(1988), [anon_sym_type] = ACTIONS(1988), @@ -72079,9 +71771,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), + [anon_sym_class] = ACTIONS(973), [anon_sym_async] = ACTIONS(2004), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_function] = ACTIONS(977), [anon_sym_new] = ACTIONS(2006), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -72123,90 +71815,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [283] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3373), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(283), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(1978), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_COMMA] = ACTIONS(2018), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), + [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(1978), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_RBRACK] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_RBRACK] = ACTIONS(2022), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1978), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(149), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1071), [anon_sym_using] = ACTIONS(157), - [anon_sym_AMP] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -72214,304 +71907,416 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1081), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [anon_sym_extends] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(111), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(111), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [284] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2773), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6723), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6296), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2637), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(6972), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(5966), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(284), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(6295), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1101), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5968), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(991), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_COMMA] = ACTIONS(2032), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(2035), + [anon_sym_let] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_RBRACK] = ACTIONS(2032), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1011), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1938), + [anon_sym_using] = ACTIONS(1015), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1918), + [sym_undefined] = ACTIONS(1942), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(991), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(991), + [anon_sym_number] = ACTIONS(991), + [anon_sym_boolean] = ACTIONS(991), + [anon_sym_string] = ACTIONS(991), + [anon_sym_symbol] = ACTIONS(991), + [anon_sym_object] = ACTIONS(991), [sym_html_comment] = ACTIONS(5), }, [285] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(2953), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(5773), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(5714), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(285), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_pattern_repeat1] = STATE(6020), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5449), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_pattern_repeat1] = STATE(5777), + [sym_identifier] = ACTIONS(2035), + [anon_sym_export] = ACTIONS(2037), + [anon_sym_type] = ACTIONS(2037), + [anon_sym_namespace] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(2016), [anon_sym_COMMA] = ACTIONS(2018), - [anon_sym_typeof] = ACTIONS(174), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_let] = ACTIONS(2037), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(2020), [anon_sym_RBRACK] = ACTIONS(2022), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), + [anon_sym_async] = ACTIONS(2041), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), + [anon_sym_new] = ACTIONS(2043), + [anon_sym_using] = ACTIONS(1516), [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1081), + [sym_undefined] = ACTIONS(2028), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_static] = ACTIONS(2037), + [anon_sym_readonly] = ACTIONS(2037), + [anon_sym_get] = ACTIONS(2037), + [anon_sym_set] = ACTIONS(2037), + [anon_sym_declare] = ACTIONS(2037), + [anon_sym_public] = ACTIONS(2037), + [anon_sym_private] = ACTIONS(2037), + [anon_sym_protected] = ACTIONS(2037), + [anon_sym_override] = ACTIONS(2037), + [anon_sym_module] = ACTIONS(2037), + [anon_sym_any] = ACTIONS(2037), + [anon_sym_number] = ACTIONS(2037), + [anon_sym_boolean] = ACTIONS(2037), + [anon_sym_string] = ACTIONS(2037), + [anon_sym_symbol] = ACTIONS(2037), + [anon_sym_object] = ACTIONS(2037), [sym_html_comment] = ACTIONS(5), }, [286] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6406), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2637), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(6972), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(5966), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(286), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5651), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_pattern_repeat1] = STATE(6402), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5968), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(991), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_COMMA] = ACTIONS(2032), + [anon_sym_typeof] = ACTIONS(1001), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_RBRACK] = ACTIONS(2045), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1011), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1938), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1942), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(991), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(991), + [anon_sym_number] = ACTIONS(991), + [anon_sym_boolean] = ACTIONS(991), + [anon_sym_string] = ACTIONS(991), + [anon_sym_symbol] = ACTIONS(991), + [anon_sym_object] = ACTIONS(991), + [sym_html_comment] = ACTIONS(5), + }, + [287] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(6153), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(287), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5566), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_pattern_repeat1] = STATE(6158), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -72522,11 +72327,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_RBRACK] = ACTIONS(2039), + [anon_sym_RBRACK] = ACTIONS(2049), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), @@ -72538,15 +72343,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -72574,746 +72379,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [287] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2773), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6723), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6296), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(287), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(6295), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(2032), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_RBRACK] = ACTIONS(2032), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1918), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), - [sym_html_comment] = ACTIONS(5), - }, [288] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3239), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6016), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2228), - [sym_subscript_expression] = STATE(2228), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(5832), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3209), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(288), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5560), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2228), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_pattern_repeat1] = STATE(6020), - [sym_identifier] = ACTIONS(2041), - [anon_sym_export] = ACTIONS(2043), - [anon_sym_type] = ACTIONS(2043), - [anon_sym_namespace] = ACTIONS(2045), - [anon_sym_LBRACE] = ACTIONS(2016), - [anon_sym_COMMA] = ACTIONS(2018), - [anon_sym_typeof] = ACTIONS(1624), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_COMMA] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2043), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(2020), - [anon_sym_RBRACK] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(1972), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1972), + [anon_sym_RBRACK] = ACTIONS(1972), [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1972), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2047), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2049), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2028), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2043), - [anon_sym_readonly] = ACTIONS(2043), - [anon_sym_get] = ACTIONS(2043), - [anon_sym_set] = ACTIONS(2043), - [anon_sym_declare] = ACTIONS(2043), - [anon_sym_public] = ACTIONS(2043), - [anon_sym_private] = ACTIONS(2043), - [anon_sym_protected] = ACTIONS(2043), - [anon_sym_override] = ACTIONS(2043), - [anon_sym_module] = ACTIONS(2043), - [anon_sym_any] = ACTIONS(2043), - [anon_sym_number] = ACTIONS(2043), - [anon_sym_boolean] = ACTIONS(2043), - [anon_sym_string] = ACTIONS(2043), - [anon_sym_symbol] = ACTIONS(2043), - [anon_sym_object] = ACTIONS(2043), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), + [anon_sym_extends] = ACTIONS(1972), [sym_html_comment] = ACTIONS(5), }, [289] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2773), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6723), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_spread_element] = STATE(6296), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2637), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(6972), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_spread_element] = STATE(5966), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(289), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(6295), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1101), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5968), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(991), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_COMMA] = ACTIONS(2032), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_RBRACK] = ACTIONS(2051), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1011), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1938), + [anon_sym_using] = ACTIONS(1015), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1918), + [sym_undefined] = ACTIONS(1942), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(991), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(991), + [anon_sym_number] = ACTIONS(991), + [anon_sym_boolean] = ACTIONS(991), + [anon_sym_string] = ACTIONS(991), + [anon_sym_symbol] = ACTIONS(991), + [anon_sym_object] = ACTIONS(991), [sym_html_comment] = ACTIONS(5), }, [290] = { - [sym_statement_block] = STATE(326), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(6972), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(290), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_default] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_else] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_case] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_STAR_STAR] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_QMARK_QMARK] = ACTIONS(2055), - [anon_sym_instanceof] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_satisfies] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [sym__automatic_semicolon] = ACTIONS(2059), - [sym__ternary_qmark] = ACTIONS(2059), - [sym_html_comment] = ACTIONS(5), - }, - [291] = { - [sym_statement_block] = STATE(326), - [sym_comment] = STATE(291), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_default] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_else] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_case] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_STAR_STAR] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_QMARK_QMARK] = ACTIONS(2055), - [anon_sym_instanceof] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_satisfies] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [sym__automatic_semicolon] = ACTIONS(2059), - [sym__ternary_qmark] = ACTIONS(2059), - [sym_html_comment] = ACTIONS(5), - }, - [292] = { - [sym_statement_block] = STATE(326), - [sym_comment] = STATE(292), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_default] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2057), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_else] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_case] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(2063), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_STAR_STAR] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_QMARK_QMARK] = ACTIONS(2055), - [anon_sym_instanceof] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_satisfies] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [sym__automatic_semicolon] = ACTIONS(2059), - [sym__ternary_qmark] = ACTIONS(2059), - [sym_html_comment] = ACTIONS(5), - }, - [293] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6723), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(293), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(6295), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5968), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1061), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), [anon_sym_namespace] = ACTIONS(120), [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_COMMA] = ACTIONS(2065), + [anon_sym_COMMA] = ACTIONS(2055), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_RBRACK] = ACTIONS(2065), + [anon_sym_RBRACK] = ACTIONS(2055), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), @@ -73325,15 +72681,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(161), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -73361,6 +72717,342 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, + [291] = { + [sym_statement_block] = STATE(321), + [sym_comment] = STATE(291), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_STAR_STAR] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), + [anon_sym_QMARK_QMARK] = ACTIONS(2057), + [anon_sym_instanceof] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_satisfies] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(2061), + [sym__ternary_qmark] = ACTIONS(2061), + [sym_html_comment] = ACTIONS(5), + }, + [292] = { + [sym_statement_block] = STATE(321), + [sym_comment] = STATE(292), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_STAR_STAR] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), + [anon_sym_QMARK_QMARK] = ACTIONS(2057), + [anon_sym_instanceof] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_satisfies] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(2061), + [sym__ternary_qmark] = ACTIONS(2061), + [sym_html_comment] = ACTIONS(5), + }, + [293] = { + [sym_statement_block] = STATE(321), + [sym_comment] = STATE(293), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_STAR_STAR] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), + [anon_sym_QMARK_QMARK] = ACTIONS(2057), + [anon_sym_instanceof] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_satisfies] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(2061), + [sym__ternary_qmark] = ACTIONS(2061), + [sym_html_comment] = ACTIONS(5), + }, [294] = { [sym_comment] = STATE(294), [sym_identifier] = ACTIONS(2067), @@ -73474,899 +73166,455 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [295] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2595), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_spread_element] = STATE(5667), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(295), - [sym_identifier] = ACTIONS(2077), - [anon_sym_export] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_default] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_as] = ACTIONS(2077), - [anon_sym_namespace] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(2077), - [anon_sym_import] = ACTIONS(2077), - [anon_sym_with] = ACTIONS(2077), - [anon_sym_var] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_else] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_switch] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_await] = ACTIONS(2077), - [anon_sym_in] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_debugger] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_throw] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_case] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LTtemplate_GT] = ACTIONS(2077), - [anon_sym_GT] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_class] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_QMARK_DOT] = ACTIONS(2077), - [anon_sym_new] = ACTIONS(2077), - [anon_sym_using] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2077), - [anon_sym_GT_GT_GT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2077), - [anon_sym_CARET] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2077), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2077), - [anon_sym_STAR_STAR] = ACTIONS(2077), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2077), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_QMARK_QMARK] = ACTIONS(2077), - [anon_sym_instanceof] = ACTIONS(2077), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_void] = ACTIONS(2077), - [anon_sym_delete] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2077), - [sym_number] = ACTIONS(2077), - [sym_private_property_identifier] = ACTIONS(2077), - [sym_this] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_true] = ACTIONS(2077), - [sym_false] = ACTIONS(2077), - [sym_null] = ACTIONS(2077), - [sym_undefined] = ACTIONS(2077), - [anon_sym_AT] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_readonly] = ACTIONS(2077), - [anon_sym_get] = ACTIONS(2077), - [anon_sym_set] = ACTIONS(2077), - [anon_sym_declare] = ACTIONS(2077), - [anon_sym_public] = ACTIONS(2077), - [anon_sym_private] = ACTIONS(2077), - [anon_sym_protected] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2077), - [anon_sym_module] = ACTIONS(2077), - [anon_sym_any] = ACTIONS(2077), - [anon_sym_number] = ACTIONS(2077), - [anon_sym_boolean] = ACTIONS(2077), - [anon_sym_string] = ACTIONS(2077), - [anon_sym_symbol] = ACTIONS(2077), - [anon_sym_object] = ACTIONS(2077), - [anon_sym_abstract] = ACTIONS(2077), - [anon_sym_satisfies] = ACTIONS(2077), - [anon_sym_interface] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), - [sym__automatic_semicolon] = ACTIONS(2079), - [sym__ternary_qmark] = ACTIONS(2079), - [sym_html_comment] = ACTIONS(5), - }, - [296] = { - [sym_comment] = STATE(296), - [sym_identifier] = ACTIONS(2081), - [anon_sym_export] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2081), - [anon_sym_default] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_as] = ACTIONS(2081), - [anon_sym_namespace] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_COMMA] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_typeof] = ACTIONS(2081), - [anon_sym_import] = ACTIONS(2081), - [anon_sym_with] = ACTIONS(2081), - [anon_sym_var] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_else] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_switch] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_in] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_do] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_debugger] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_case] = ACTIONS(2081), - [anon_sym_yield] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_LTtemplate_GT] = ACTIONS(2081), - [anon_sym_GT] = ACTIONS(2081), - [anon_sym_DOT] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2081), - [anon_sym_class] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_function] = ACTIONS(2081), - [anon_sym_QMARK_DOT] = ACTIONS(2081), - [anon_sym_new] = ACTIONS(2081), - [anon_sym_using] = ACTIONS(2081), - [anon_sym_AMP_AMP] = ACTIONS(2081), - [anon_sym_PIPE_PIPE] = ACTIONS(2081), - [anon_sym_GT_GT] = ACTIONS(2081), - [anon_sym_GT_GT_GT] = ACTIONS(2081), - [anon_sym_LT_LT] = ACTIONS(2081), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_CARET] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_SLASH] = ACTIONS(2081), - [anon_sym_PERCENT] = ACTIONS(2081), - [anon_sym_STAR_STAR] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2081), - [anon_sym_LT_EQ] = ACTIONS(2081), - [anon_sym_EQ_EQ] = ACTIONS(2081), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2081), - [anon_sym_BANG_EQ] = ACTIONS(2081), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2081), - [anon_sym_GT_EQ] = ACTIONS(2081), - [anon_sym_QMARK_QMARK] = ACTIONS(2081), - [anon_sym_instanceof] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2081), - [anon_sym_void] = ACTIONS(2081), - [anon_sym_delete] = ACTIONS(2081), - [anon_sym_PLUS_PLUS] = ACTIONS(2081), - [anon_sym_DASH_DASH] = ACTIONS(2081), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2081), - [sym_number] = ACTIONS(2081), - [sym_private_property_identifier] = ACTIONS(2081), - [sym_this] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_true] = ACTIONS(2081), - [sym_false] = ACTIONS(2081), - [sym_null] = ACTIONS(2081), - [sym_undefined] = ACTIONS(2081), - [anon_sym_AT] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_readonly] = ACTIONS(2081), - [anon_sym_get] = ACTIONS(2081), - [anon_sym_set] = ACTIONS(2081), - [anon_sym_declare] = ACTIONS(2081), - [anon_sym_public] = ACTIONS(2081), - [anon_sym_private] = ACTIONS(2081), - [anon_sym_protected] = ACTIONS(2081), - [anon_sym_override] = ACTIONS(2081), - [anon_sym_module] = ACTIONS(2081), - [anon_sym_any] = ACTIONS(2081), - [anon_sym_number] = ACTIONS(2081), - [anon_sym_boolean] = ACTIONS(2081), - [anon_sym_string] = ACTIONS(2081), - [anon_sym_symbol] = ACTIONS(2081), - [anon_sym_object] = ACTIONS(2081), - [anon_sym_abstract] = ACTIONS(2081), - [anon_sym_satisfies] = ACTIONS(2081), - [anon_sym_interface] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [sym__automatic_semicolon] = ACTIONS(2083), - [sym__ternary_qmark] = ACTIONS(2083), - [sym_html_comment] = ACTIONS(5), - }, - [297] = { - [sym_comment] = STATE(297), - [sym_identifier] = ACTIONS(2085), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_STAR] = ACTIONS(2087), - [anon_sym_default] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_as] = ACTIONS(2087), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_COMMA] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_typeof] = ACTIONS(2085), - [anon_sym_import] = ACTIONS(2085), - [anon_sym_with] = ACTIONS(2085), - [anon_sym_var] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_else] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_in] = ACTIONS(2087), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_debugger] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_case] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LTtemplate_GT] = ACTIONS(2085), - [anon_sym_GT] = ACTIONS(2087), - [anon_sym_DOT] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_QMARK_DOT] = ACTIONS(2087), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [anon_sym_AMP_AMP] = ACTIONS(2087), - [anon_sym_PIPE_PIPE] = ACTIONS(2087), - [anon_sym_GT_GT] = ACTIONS(2087), - [anon_sym_GT_GT_GT] = ACTIONS(2087), - [anon_sym_LT_LT] = ACTIONS(2087), - [anon_sym_AMP] = ACTIONS(2087), - [anon_sym_CARET] = ACTIONS(2087), - [anon_sym_PIPE] = ACTIONS(2087), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(2085), - [anon_sym_PERCENT] = ACTIONS(2087), - [anon_sym_STAR_STAR] = ACTIONS(2087), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_LT_EQ] = ACTIONS(2087), - [anon_sym_EQ_EQ] = ACTIONS(2087), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2087), - [anon_sym_BANG_EQ] = ACTIONS(2087), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2087), - [anon_sym_GT_EQ] = ACTIONS(2087), - [anon_sym_QMARK_QMARK] = ACTIONS(2087), - [anon_sym_instanceof] = ACTIONS(2087), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_void] = ACTIONS(2085), - [anon_sym_delete] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2085), - [sym_number] = ACTIONS(2085), - [sym_private_property_identifier] = ACTIONS(2085), - [sym_this] = ACTIONS(2085), - [sym_super] = ACTIONS(2085), - [sym_true] = ACTIONS(2085), - [sym_false] = ACTIONS(2085), - [sym_null] = ACTIONS(2085), - [sym_undefined] = ACTIONS(2085), - [anon_sym_AT] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_readonly] = ACTIONS(2085), - [anon_sym_get] = ACTIONS(2085), - [anon_sym_set] = ACTIONS(2085), - [anon_sym_declare] = ACTIONS(2085), - [anon_sym_public] = ACTIONS(2085), - [anon_sym_private] = ACTIONS(2085), - [anon_sym_protected] = ACTIONS(2085), - [anon_sym_override] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_any] = ACTIONS(2085), - [anon_sym_number] = ACTIONS(2085), - [anon_sym_boolean] = ACTIONS(2085), - [anon_sym_string] = ACTIONS(2085), - [anon_sym_symbol] = ACTIONS(2085), - [anon_sym_object] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_satisfies] = ACTIONS(2087), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [sym__automatic_semicolon] = ACTIONS(2089), - [sym__ternary_qmark] = ACTIONS(2091), - [sym_html_comment] = ACTIONS(5), - }, - [298] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(298), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(5668), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_COMMA] = ACTIONS(2077), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(2079), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1978), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_AMP] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2081), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), - [anon_sym_extends] = ACTIONS(1978), - [sym_html_comment] = ACTIONS(5), - }, - [299] = { - [sym_comment] = STATE(299), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_STAR_STAR] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_QMARK_QMARK] = ACTIONS(2093), - [anon_sym_instanceof] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_satisfies] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(2095), - [sym__ternary_qmark] = ACTIONS(2095), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [300] = { - [sym_statement_block] = STATE(382), - [sym_comment] = STATE(300), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_default] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_case] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(2099), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_STAR_STAR] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_QMARK_QMARK] = ACTIONS(2055), - [anon_sym_instanceof] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_satisfies] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [sym__automatic_semicolon] = ACTIONS(2059), - [sym__ternary_qmark] = ACTIONS(2059), + [296] = { + [sym_comment] = STATE(296), + [sym_identifier] = ACTIONS(2083), + [anon_sym_export] = ACTIONS(2083), + [anon_sym_STAR] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(2083), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_as] = ACTIONS(2085), + [anon_sym_namespace] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_COMMA] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_typeof] = ACTIONS(2083), + [anon_sym_import] = ACTIONS(2083), + [anon_sym_with] = ACTIONS(2083), + [anon_sym_var] = ACTIONS(2083), + [anon_sym_let] = ACTIONS(2083), + [anon_sym_const] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_else] = ACTIONS(2083), + [anon_sym_if] = ACTIONS(2083), + [anon_sym_switch] = ACTIONS(2083), + [anon_sym_for] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_await] = ACTIONS(2083), + [anon_sym_in] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2083), + [anon_sym_do] = ACTIONS(2083), + [anon_sym_try] = ACTIONS(2083), + [anon_sym_break] = ACTIONS(2083), + [anon_sym_continue] = ACTIONS(2083), + [anon_sym_debugger] = ACTIONS(2083), + [anon_sym_return] = ACTIONS(2083), + [anon_sym_throw] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_case] = ACTIONS(2083), + [anon_sym_yield] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LTtemplate_GT] = ACTIONS(2083), + [anon_sym_GT] = ACTIONS(2085), + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2083), + [anon_sym_SQUOTE] = ACTIONS(2083), + [anon_sym_class] = ACTIONS(2083), + [anon_sym_async] = ACTIONS(2083), + [anon_sym_function] = ACTIONS(2083), + [anon_sym_QMARK_DOT] = ACTIONS(2085), + [anon_sym_new] = ACTIONS(2083), + [anon_sym_using] = ACTIONS(2083), + [anon_sym_AMP_AMP] = ACTIONS(2085), + [anon_sym_PIPE_PIPE] = ACTIONS(2085), + [anon_sym_GT_GT] = ACTIONS(2085), + [anon_sym_GT_GT_GT] = ACTIONS(2085), + [anon_sym_LT_LT] = ACTIONS(2085), + [anon_sym_AMP] = ACTIONS(2085), + [anon_sym_CARET] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(2083), + [anon_sym_PERCENT] = ACTIONS(2085), + [anon_sym_STAR_STAR] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_LT_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), + [anon_sym_BANG_EQ] = ACTIONS(2085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), + [anon_sym_GT_EQ] = ACTIONS(2085), + [anon_sym_QMARK_QMARK] = ACTIONS(2085), + [anon_sym_instanceof] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_void] = ACTIONS(2083), + [anon_sym_delete] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2083), + [sym_number] = ACTIONS(2083), + [sym_private_property_identifier] = ACTIONS(2083), + [sym_this] = ACTIONS(2083), + [sym_super] = ACTIONS(2083), + [sym_true] = ACTIONS(2083), + [sym_false] = ACTIONS(2083), + [sym_null] = ACTIONS(2083), + [sym_undefined] = ACTIONS(2083), + [anon_sym_AT] = ACTIONS(2083), + [anon_sym_static] = ACTIONS(2083), + [anon_sym_readonly] = ACTIONS(2083), + [anon_sym_get] = ACTIONS(2083), + [anon_sym_set] = ACTIONS(2083), + [anon_sym_declare] = ACTIONS(2083), + [anon_sym_public] = ACTIONS(2083), + [anon_sym_private] = ACTIONS(2083), + [anon_sym_protected] = ACTIONS(2083), + [anon_sym_override] = ACTIONS(2083), + [anon_sym_module] = ACTIONS(2083), + [anon_sym_any] = ACTIONS(2083), + [anon_sym_number] = ACTIONS(2083), + [anon_sym_boolean] = ACTIONS(2083), + [anon_sym_string] = ACTIONS(2083), + [anon_sym_symbol] = ACTIONS(2083), + [anon_sym_object] = ACTIONS(2083), + [anon_sym_abstract] = ACTIONS(2083), + [anon_sym_satisfies] = ACTIONS(2085), + [anon_sym_interface] = ACTIONS(2083), + [anon_sym_enum] = ACTIONS(2083), + [sym__automatic_semicolon] = ACTIONS(2087), + [sym__ternary_qmark] = ACTIONS(2089), [sym_html_comment] = ACTIONS(5), }, - [301] = { - [sym_comment] = STATE(301), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), - [anon_sym_GT_GT] = ACTIONS(2067), - [anon_sym_GT_GT_GT] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2067), - [anon_sym_STAR_STAR] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), - [anon_sym_GT_EQ] = ACTIONS(2067), - [anon_sym_QMARK_QMARK] = ACTIONS(2067), - [anon_sym_instanceof] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2101), - [sym__ternary_qmark] = ACTIONS(2103), + [297] = { + [sym_statement_block] = STATE(385), + [sym_comment] = STATE(297), + [ts_builtin_sym_end] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2091), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(2093), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_STAR_STAR] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), + [anon_sym_QMARK_QMARK] = ACTIONS(2057), + [anon_sym_instanceof] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_satisfies] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(2061), + [sym__ternary_qmark] = ACTIONS(2061), [sym_html_comment] = ACTIONS(5), }, - [302] = { - [sym_comment] = STATE(302), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_in] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(2105), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_QMARK_DOT] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(2105), - [anon_sym_GT_GT] = ACTIONS(2105), - [anon_sym_GT_GT_GT] = ACTIONS(2105), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_AMP] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(2105), - [anon_sym_PIPE] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_PERCENT] = ACTIONS(2105), - [anon_sym_STAR_STAR] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2105), - [anon_sym_instanceof] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_satisfies] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym__automatic_semicolon] = ACTIONS(2107), - [sym__ternary_qmark] = ACTIONS(2107), + [298] = { + [sym_statement_block] = STATE(385), + [sym_comment] = STATE(298), + [ts_builtin_sym_end] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2091), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_STAR_STAR] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), + [anon_sym_QMARK_QMARK] = ACTIONS(2057), + [anon_sym_instanceof] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_satisfies] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(2061), + [sym__ternary_qmark] = ACTIONS(2061), [sym_html_comment] = ACTIONS(5), }, - [303] = { - [sym_comment] = STATE(303), + [299] = { + [sym_comment] = STATE(299), + [ts_builtin_sym_end] = ACTIONS(2095), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), [anon_sym_STAR] = ACTIONS(2069), - [anon_sym_default] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), [anon_sym_EQ] = ACTIONS(2071), [anon_sym_as] = ACTIONS(2069), @@ -74381,6 +73629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2067), [anon_sym_const] = ACTIONS(2067), [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2067), [anon_sym_if] = ACTIONS(2067), [anon_sym_switch] = ACTIONS(2067), [anon_sym_for] = ACTIONS(2067), @@ -74396,7 +73645,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2067), [anon_sym_throw] = ACTIONS(2067), [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), [anon_sym_yield] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(2067), [anon_sym_LTtemplate_GT] = ACTIONS(2067), @@ -74468,96 +73716,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2069), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2109), + [sym__automatic_semicolon] = ACTIONS(2097), [sym__ternary_qmark] = ACTIONS(2075), [sym_html_comment] = ACTIONS(5), }, - [304] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2762), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_spread_element] = STATE(6396), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(304), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6397), + [300] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2656), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_spread_element] = STATE(6213), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(300), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(6214), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(2077), + [anon_sym_typeof] = ACTIONS(1001), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(2099), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1652), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2081), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), + [sym_html_comment] = ACTIONS(5), + }, + [301] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3123), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(301), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1506), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1972), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1524), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), + [anon_sym_extends] = ACTIONS(1972), + [sym_html_comment] = ACTIONS(5), + }, + [302] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2646), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_spread_element] = STATE(6240), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(302), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(6239), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(2077), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2113), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(2101), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2081), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -74565,581 +74035,1247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), + [sym_html_comment] = ACTIONS(5), + }, + [303] = { + [sym_comment] = STATE(303), + [sym_identifier] = ACTIONS(2103), + [anon_sym_export] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(2103), + [anon_sym_type] = ACTIONS(2103), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(2103), + [anon_sym_import] = ACTIONS(2103), + [anon_sym_with] = ACTIONS(2103), + [anon_sym_var] = ACTIONS(2103), + [anon_sym_let] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_BANG] = ACTIONS(2103), + [anon_sym_else] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2103), + [anon_sym_switch] = ACTIONS(2103), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2103), + [anon_sym_do] = ACTIONS(2103), + [anon_sym_try] = ACTIONS(2103), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2103), + [anon_sym_debugger] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2103), + [anon_sym_throw] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_case] = ACTIONS(2103), + [anon_sym_yield] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_LTtemplate_GT] = ACTIONS(2103), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_class] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(2103), + [anon_sym_function] = ACTIONS(2103), + [anon_sym_QMARK_DOT] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2103), + [anon_sym_using] = ACTIONS(2103), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_SLASH] = ACTIONS(2103), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_STAR_STAR] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2103), + [anon_sym_LT_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), + [anon_sym_GT_EQ] = ACTIONS(2105), + [anon_sym_QMARK_QMARK] = ACTIONS(2105), + [anon_sym_instanceof] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_void] = ACTIONS(2103), + [anon_sym_delete] = ACTIONS(2103), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2103), + [sym_number] = ACTIONS(2103), + [sym_private_property_identifier] = ACTIONS(2103), + [sym_this] = ACTIONS(2103), + [sym_super] = ACTIONS(2103), + [sym_true] = ACTIONS(2103), + [sym_false] = ACTIONS(2103), + [sym_null] = ACTIONS(2103), + [sym_undefined] = ACTIONS(2103), + [anon_sym_AT] = ACTIONS(2103), + [anon_sym_static] = ACTIONS(2103), + [anon_sym_readonly] = ACTIONS(2103), + [anon_sym_get] = ACTIONS(2103), + [anon_sym_set] = ACTIONS(2103), + [anon_sym_declare] = ACTIONS(2103), + [anon_sym_public] = ACTIONS(2103), + [anon_sym_private] = ACTIONS(2103), + [anon_sym_protected] = ACTIONS(2103), + [anon_sym_override] = ACTIONS(2103), + [anon_sym_module] = ACTIONS(2103), + [anon_sym_any] = ACTIONS(2103), + [anon_sym_number] = ACTIONS(2103), + [anon_sym_boolean] = ACTIONS(2103), + [anon_sym_string] = ACTIONS(2103), + [anon_sym_symbol] = ACTIONS(2103), + [anon_sym_object] = ACTIONS(2103), + [anon_sym_abstract] = ACTIONS(2103), + [anon_sym_satisfies] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2103), + [anon_sym_enum] = ACTIONS(2103), + [sym__automatic_semicolon] = ACTIONS(2107), + [sym__ternary_qmark] = ACTIONS(2109), + [sym_html_comment] = ACTIONS(5), + }, + [304] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2437), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(304), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(1972), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1972), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), + [anon_sym_extends] = ACTIONS(1972), [sym_html_comment] = ACTIONS(5), }, [305] = { [sym_comment] = STATE(305), - [sym_identifier] = ACTIONS(2117), - [anon_sym_export] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_default] = ACTIONS(2117), - [anon_sym_type] = ACTIONS(2117), - [anon_sym_as] = ACTIONS(2119), - [anon_sym_namespace] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_typeof] = ACTIONS(2117), - [anon_sym_import] = ACTIONS(2117), - [anon_sym_with] = ACTIONS(2117), - [anon_sym_var] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_else] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_switch] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_await] = ACTIONS(2117), - [anon_sym_in] = ACTIONS(2119), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_try] = 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(2117), - [anon_sym_case] = ACTIONS(2117), - [anon_sym_yield] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_LTtemplate_GT] = ACTIONS(2117), - [anon_sym_GT] = ACTIONS(2119), - [anon_sym_DOT] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2117), - [anon_sym_class] = ACTIONS(2117), - [anon_sym_async] = ACTIONS(2117), - [anon_sym_function] = ACTIONS(2117), - [anon_sym_QMARK_DOT] = ACTIONS(2119), - [anon_sym_new] = ACTIONS(2117), - [anon_sym_using] = ACTIONS(2117), - [anon_sym_AMP_AMP] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2119), - [anon_sym_GT_GT] = ACTIONS(2119), - [anon_sym_GT_GT_GT] = ACTIONS(2119), - [anon_sym_LT_LT] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_SLASH] = ACTIONS(2117), - [anon_sym_PERCENT] = ACTIONS(2119), - [anon_sym_STAR_STAR] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_LT_EQ] = ACTIONS(2119), - [anon_sym_EQ_EQ] = ACTIONS(2119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2119), - [anon_sym_BANG_EQ] = ACTIONS(2119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2119), - [anon_sym_GT_EQ] = ACTIONS(2119), - [anon_sym_QMARK_QMARK] = ACTIONS(2119), - [anon_sym_instanceof] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_void] = ACTIONS(2117), - [anon_sym_delete] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2117), - [sym_number] = ACTIONS(2117), - [sym_private_property_identifier] = ACTIONS(2117), - [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(2117), - [anon_sym_static] = ACTIONS(2117), - [anon_sym_readonly] = ACTIONS(2117), - [anon_sym_get] = ACTIONS(2117), - [anon_sym_set] = ACTIONS(2117), - [anon_sym_declare] = ACTIONS(2117), - [anon_sym_public] = ACTIONS(2117), - [anon_sym_private] = ACTIONS(2117), - [anon_sym_protected] = ACTIONS(2117), - [anon_sym_override] = ACTIONS(2117), - [anon_sym_module] = ACTIONS(2117), - [anon_sym_any] = ACTIONS(2117), - [anon_sym_number] = ACTIONS(2117), - [anon_sym_boolean] = ACTIONS(2117), - [anon_sym_string] = ACTIONS(2117), - [anon_sym_symbol] = ACTIONS(2117), - [anon_sym_object] = ACTIONS(2117), - [anon_sym_abstract] = ACTIONS(2117), - [anon_sym_satisfies] = ACTIONS(2119), - [anon_sym_interface] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [sym__automatic_semicolon] = ACTIONS(2121), - [sym__ternary_qmark] = ACTIONS(2123), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_as] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_COMMA] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_in] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_GT] = ACTIONS(2111), + [anon_sym_DOT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_QMARK_DOT] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_AMP_AMP] = ACTIONS(2111), + [anon_sym_PIPE_PIPE] = ACTIONS(2111), + [anon_sym_GT_GT] = ACTIONS(2111), + [anon_sym_GT_GT_GT] = ACTIONS(2111), + [anon_sym_LT_LT] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2111), + [anon_sym_CARET] = ACTIONS(2111), + [anon_sym_PIPE] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_PERCENT] = ACTIONS(2111), + [anon_sym_STAR_STAR] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_LT_EQ] = ACTIONS(2111), + [anon_sym_EQ_EQ] = ACTIONS(2111), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2111), + [anon_sym_BANG_EQ] = ACTIONS(2111), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2111), + [anon_sym_GT_EQ] = ACTIONS(2111), + [anon_sym_QMARK_QMARK] = ACTIONS(2111), + [anon_sym_instanceof] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_satisfies] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(2113), + [sym__ternary_qmark] = ACTIONS(2115), [sym_html_comment] = ACTIONS(5), }, [306] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2633), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_spread_element] = STATE(6244), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(306), - [ts_builtin_sym_end] = ACTIONS(2103), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2069), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_EQ] = ACTIONS(2071), - [anon_sym_as] = ACTIONS(2069), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(2069), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2069), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2069), - [anon_sym_DOT] = ACTIONS(2069), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2069), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2069), - [anon_sym_PIPE_PIPE] = ACTIONS(2069), - [anon_sym_GT_GT] = ACTIONS(2069), - [anon_sym_GT_GT_GT] = ACTIONS(2069), - [anon_sym_LT_LT] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(2069), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2069), - [anon_sym_STAR_STAR] = ACTIONS(2069), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2069), - [anon_sym_EQ_EQ] = ACTIONS(2069), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2069), - [anon_sym_BANG_EQ] = ACTIONS(2069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2069), - [anon_sym_GT_EQ] = ACTIONS(2069), - [anon_sym_QMARK_QMARK] = ACTIONS(2069), - [anon_sym_instanceof] = ACTIONS(2069), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(6246), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(2077), + [anon_sym_typeof] = ACTIONS(1001), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(2117), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1652), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2081), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2069), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2125), - [sym__ternary_qmark] = ACTIONS(2075), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [307] = { + [sym_statement_block] = STATE(398), [sym_comment] = STATE(307), - [sym_identifier] = ACTIONS(2127), - [anon_sym_export] = ACTIONS(2127), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_default] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2127), - [anon_sym_as] = ACTIONS(2129), - [anon_sym_namespace] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_COMMA] = ACTIONS(2129), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_typeof] = ACTIONS(2127), - [anon_sym_import] = ACTIONS(2127), - [anon_sym_with] = ACTIONS(2127), - [anon_sym_var] = ACTIONS(2127), - [anon_sym_let] = ACTIONS(2127), - [anon_sym_const] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_else] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2127), - [anon_sym_switch] = ACTIONS(2127), - [anon_sym_for] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_await] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2127), - [anon_sym_do] = ACTIONS(2127), - [anon_sym_try] = ACTIONS(2127), - [anon_sym_break] = ACTIONS(2127), - [anon_sym_continue] = ACTIONS(2127), - [anon_sym_debugger] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2127), - [anon_sym_throw] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_case] = ACTIONS(2127), - [anon_sym_yield] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_LTtemplate_GT] = ACTIONS(2127), - [anon_sym_GT] = ACTIONS(2129), - [anon_sym_DOT] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2127), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_class] = ACTIONS(2127), - [anon_sym_async] = ACTIONS(2127), - [anon_sym_function] = ACTIONS(2127), - [anon_sym_QMARK_DOT] = ACTIONS(2129), - [anon_sym_new] = ACTIONS(2127), - [anon_sym_using] = ACTIONS(2127), - [anon_sym_AMP_AMP] = ACTIONS(2129), - [anon_sym_PIPE_PIPE] = ACTIONS(2129), - [anon_sym_GT_GT] = ACTIONS(2129), - [anon_sym_GT_GT_GT] = ACTIONS(2129), - [anon_sym_LT_LT] = ACTIONS(2129), - [anon_sym_AMP] = ACTIONS(2129), - [anon_sym_CARET] = ACTIONS(2129), - [anon_sym_PIPE] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2127), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_PERCENT] = ACTIONS(2129), - [anon_sym_STAR_STAR] = ACTIONS(2129), - [anon_sym_LT] = ACTIONS(2127), - [anon_sym_LT_EQ] = ACTIONS(2129), - [anon_sym_EQ_EQ] = ACTIONS(2129), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2129), - [anon_sym_BANG_EQ] = ACTIONS(2129), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2129), - [anon_sym_GT_EQ] = ACTIONS(2129), - [anon_sym_QMARK_QMARK] = ACTIONS(2129), - [anon_sym_instanceof] = ACTIONS(2129), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_void] = ACTIONS(2127), - [anon_sym_delete] = ACTIONS(2127), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2127), - [sym_number] = ACTIONS(2127), - [sym_private_property_identifier] = ACTIONS(2127), - [sym_this] = ACTIONS(2127), - [sym_super] = ACTIONS(2127), - [sym_true] = ACTIONS(2127), - [sym_false] = ACTIONS(2127), - [sym_null] = ACTIONS(2127), - [sym_undefined] = ACTIONS(2127), - [anon_sym_AT] = ACTIONS(2127), - [anon_sym_static] = ACTIONS(2127), - [anon_sym_readonly] = ACTIONS(2127), - [anon_sym_get] = ACTIONS(2127), - [anon_sym_set] = ACTIONS(2127), - [anon_sym_declare] = ACTIONS(2127), - [anon_sym_public] = ACTIONS(2127), - [anon_sym_private] = ACTIONS(2127), - [anon_sym_protected] = ACTIONS(2127), - [anon_sym_override] = ACTIONS(2127), - [anon_sym_module] = ACTIONS(2127), - [anon_sym_any] = ACTIONS(2127), - [anon_sym_number] = ACTIONS(2127), - [anon_sym_boolean] = ACTIONS(2127), - [anon_sym_string] = ACTIONS(2127), - [anon_sym_symbol] = ACTIONS(2127), - [anon_sym_object] = ACTIONS(2127), - [anon_sym_abstract] = ACTIONS(2127), - [anon_sym_satisfies] = ACTIONS(2129), - [anon_sym_interface] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(2127), - [sym__automatic_semicolon] = ACTIONS(2131), - [sym__ternary_qmark] = ACTIONS(2133), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_STAR_STAR] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), + [anon_sym_QMARK_QMARK] = ACTIONS(2057), + [anon_sym_instanceof] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_satisfies] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(2061), + [sym__ternary_qmark] = ACTIONS(2061), [sym_html_comment] = ACTIONS(5), }, [308] = { + [sym_statement_block] = STATE(398), [sym_comment] = STATE(308), - [sym_identifier] = ACTIONS(2135), - [anon_sym_export] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2135), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_namespace] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_COMMA] = ACTIONS(2137), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_typeof] = ACTIONS(2135), - [anon_sym_import] = ACTIONS(2135), - [anon_sym_with] = ACTIONS(2135), - [anon_sym_var] = ACTIONS(2135), - [anon_sym_let] = ACTIONS(2135), - [anon_sym_const] = ACTIONS(2135), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_else] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_switch] = ACTIONS(2135), - [anon_sym_for] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2135), - [anon_sym_in] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2135), - [anon_sym_do] = ACTIONS(2135), - [anon_sym_try] = ACTIONS(2135), - [anon_sym_break] = ACTIONS(2135), - [anon_sym_continue] = ACTIONS(2135), - [anon_sym_debugger] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2135), - [anon_sym_throw] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_case] = ACTIONS(2135), - [anon_sym_yield] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_LTtemplate_GT] = ACTIONS(2135), - [anon_sym_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_class] = ACTIONS(2135), - [anon_sym_async] = ACTIONS(2135), - [anon_sym_function] = ACTIONS(2135), - [anon_sym_QMARK_DOT] = ACTIONS(2137), - [anon_sym_new] = ACTIONS(2135), - [anon_sym_using] = ACTIONS(2135), - [anon_sym_AMP_AMP] = ACTIONS(2137), - [anon_sym_PIPE_PIPE] = ACTIONS(2137), - [anon_sym_GT_GT] = ACTIONS(2137), - [anon_sym_GT_GT_GT] = ACTIONS(2137), - [anon_sym_LT_LT] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_PIPE] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_SLASH] = ACTIONS(2135), - [anon_sym_PERCENT] = ACTIONS(2137), - [anon_sym_STAR_STAR] = ACTIONS(2137), - [anon_sym_LT] = ACTIONS(2135), - [anon_sym_LT_EQ] = ACTIONS(2137), - [anon_sym_EQ_EQ] = ACTIONS(2137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2137), - [anon_sym_BANG_EQ] = ACTIONS(2137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2137), - [anon_sym_GT_EQ] = ACTIONS(2137), - [anon_sym_QMARK_QMARK] = ACTIONS(2137), - [anon_sym_instanceof] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_void] = ACTIONS(2135), - [anon_sym_delete] = ACTIONS(2135), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2135), - [sym_number] = ACTIONS(2135), - [sym_private_property_identifier] = ACTIONS(2135), - [sym_this] = ACTIONS(2135), - [sym_super] = ACTIONS(2135), - [sym_true] = ACTIONS(2135), - [sym_false] = ACTIONS(2135), - [sym_null] = ACTIONS(2135), - [sym_undefined] = ACTIONS(2135), - [anon_sym_AT] = ACTIONS(2135), - [anon_sym_static] = ACTIONS(2135), - [anon_sym_readonly] = ACTIONS(2135), - [anon_sym_get] = ACTIONS(2135), - [anon_sym_set] = ACTIONS(2135), - [anon_sym_declare] = ACTIONS(2135), - [anon_sym_public] = ACTIONS(2135), - [anon_sym_private] = ACTIONS(2135), - [anon_sym_protected] = ACTIONS(2135), - [anon_sym_override] = ACTIONS(2135), - [anon_sym_module] = ACTIONS(2135), - [anon_sym_any] = ACTIONS(2135), - [anon_sym_number] = ACTIONS(2135), - [anon_sym_boolean] = ACTIONS(2135), - [anon_sym_string] = ACTIONS(2135), - [anon_sym_symbol] = ACTIONS(2135), - [anon_sym_object] = ACTIONS(2135), - [anon_sym_abstract] = ACTIONS(2135), - [anon_sym_satisfies] = ACTIONS(2137), - [anon_sym_interface] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(2135), - [sym__automatic_semicolon] = ACTIONS(2139), - [sym__ternary_qmark] = ACTIONS(2141), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(2121), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_STAR_STAR] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), + [anon_sym_QMARK_QMARK] = ACTIONS(2057), + [anon_sym_instanceof] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_satisfies] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(2061), + [sym__ternary_qmark] = ACTIONS(2061), [sym_html_comment] = ACTIONS(5), }, [309] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2795), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_spread_element] = STATE(6342), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_statement_block] = STATE(398), [sym_comment] = STATE(309), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6341), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(968), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(2123), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_STAR_STAR] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), + [anon_sym_QMARK_QMARK] = ACTIONS(2057), + [anon_sym_instanceof] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_satisfies] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(2061), + [sym__ternary_qmark] = ACTIONS(2061), + [sym_html_comment] = ACTIONS(5), + }, + [310] = { + [sym_comment] = STATE(310), + [sym_identifier] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_COMMA] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_typeof] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2125), + [anon_sym_with] = ACTIONS(2125), + [anon_sym_var] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_else] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_in] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_debugger] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_case] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LTtemplate_GT] = ACTIONS(2125), + [anon_sym_GT] = ACTIONS(2125), + [anon_sym_DOT] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_QMARK_DOT] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [anon_sym_AMP_AMP] = ACTIONS(2125), + [anon_sym_PIPE_PIPE] = ACTIONS(2125), + [anon_sym_GT_GT] = ACTIONS(2125), + [anon_sym_GT_GT_GT] = ACTIONS(2125), + [anon_sym_LT_LT] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_PERCENT] = ACTIONS(2125), + [anon_sym_STAR_STAR] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_LT_EQ] = ACTIONS(2125), + [anon_sym_EQ_EQ] = ACTIONS(2125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), + [anon_sym_BANG_EQ] = ACTIONS(2125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), + [anon_sym_GT_EQ] = ACTIONS(2125), + [anon_sym_QMARK_QMARK] = ACTIONS(2125), + [anon_sym_instanceof] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_void] = ACTIONS(2125), + [anon_sym_delete] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2125), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(2125), + [sym_this] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [sym_undefined] = ACTIONS(2125), + [anon_sym_AT] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_readonly] = ACTIONS(2125), + [anon_sym_get] = ACTIONS(2125), + [anon_sym_set] = ACTIONS(2125), + [anon_sym_declare] = ACTIONS(2125), + [anon_sym_public] = ACTIONS(2125), + [anon_sym_private] = ACTIONS(2125), + [anon_sym_protected] = ACTIONS(2125), + [anon_sym_override] = ACTIONS(2125), + [anon_sym_module] = ACTIONS(2125), + [anon_sym_any] = ACTIONS(2125), + [anon_sym_number] = ACTIONS(2125), + [anon_sym_boolean] = ACTIONS(2125), + [anon_sym_string] = ACTIONS(2125), + [anon_sym_symbol] = ACTIONS(2125), + [anon_sym_object] = ACTIONS(2125), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_satisfies] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [sym__automatic_semicolon] = ACTIONS(2127), + [sym__ternary_qmark] = ACTIONS(2127), + [sym_html_comment] = ACTIONS(5), + }, + [311] = { + [sym_comment] = STATE(311), + [sym_identifier] = ACTIONS(2129), + [anon_sym_export] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2131), + [anon_sym_namespace] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2129), + [anon_sym_COMMA] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2129), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_import] = ACTIONS(2129), + [anon_sym_with] = ACTIONS(2129), + [anon_sym_var] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_else] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_in] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_debugger] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_throw] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_yield] = ACTIONS(2129), + [anon_sym_LBRACK] = ACTIONS(2129), + [anon_sym_LTtemplate_GT] = ACTIONS(2129), + [anon_sym_GT] = ACTIONS(2131), + [anon_sym_DOT] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_class] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_function] = ACTIONS(2129), + [anon_sym_QMARK_DOT] = ACTIONS(2131), + [anon_sym_new] = ACTIONS(2129), + [anon_sym_using] = ACTIONS(2129), + [anon_sym_AMP_AMP] = ACTIONS(2131), + [anon_sym_PIPE_PIPE] = ACTIONS(2131), + [anon_sym_GT_GT] = ACTIONS(2131), + [anon_sym_GT_GT_GT] = ACTIONS(2131), + [anon_sym_LT_LT] = ACTIONS(2131), + [anon_sym_AMP] = ACTIONS(2131), + [anon_sym_CARET] = ACTIONS(2131), + [anon_sym_PIPE] = ACTIONS(2131), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_SLASH] = ACTIONS(2129), + [anon_sym_PERCENT] = ACTIONS(2131), + [anon_sym_STAR_STAR] = ACTIONS(2131), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_LT_EQ] = ACTIONS(2131), + [anon_sym_EQ_EQ] = ACTIONS(2131), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2131), + [anon_sym_BANG_EQ] = ACTIONS(2131), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2131), + [anon_sym_GT_EQ] = ACTIONS(2131), + [anon_sym_QMARK_QMARK] = ACTIONS(2131), + [anon_sym_instanceof] = ACTIONS(2131), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_void] = ACTIONS(2129), + [anon_sym_delete] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2129), + [sym_number] = ACTIONS(2129), + [sym_private_property_identifier] = ACTIONS(2129), + [sym_this] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_true] = ACTIONS(2129), + [sym_false] = ACTIONS(2129), + [sym_null] = ACTIONS(2129), + [sym_undefined] = ACTIONS(2129), + [anon_sym_AT] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_readonly] = ACTIONS(2129), + [anon_sym_get] = ACTIONS(2129), + [anon_sym_set] = ACTIONS(2129), + [anon_sym_declare] = ACTIONS(2129), + [anon_sym_public] = ACTIONS(2129), + [anon_sym_private] = ACTIONS(2129), + [anon_sym_protected] = ACTIONS(2129), + [anon_sym_override] = ACTIONS(2129), + [anon_sym_module] = ACTIONS(2129), + [anon_sym_any] = ACTIONS(2129), + [anon_sym_number] = ACTIONS(2129), + [anon_sym_boolean] = ACTIONS(2129), + [anon_sym_string] = ACTIONS(2129), + [anon_sym_symbol] = ACTIONS(2129), + [anon_sym_object] = ACTIONS(2129), + [anon_sym_abstract] = ACTIONS(2129), + [anon_sym_satisfies] = ACTIONS(2131), + [anon_sym_interface] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [sym__automatic_semicolon] = ACTIONS(2133), + [sym__ternary_qmark] = ACTIONS(2135), + [sym_html_comment] = ACTIONS(5), + }, + [312] = { + [sym_comment] = STATE(312), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2137), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2137), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_typeof] = ACTIONS(2137), + [anon_sym_import] = ACTIONS(2137), + [anon_sym_with] = ACTIONS(2137), + [anon_sym_var] = ACTIONS(2137), + [anon_sym_let] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_else] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_switch] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_await] = ACTIONS(2137), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_do] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_debugger] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_throw] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_case] = ACTIONS(2137), + [anon_sym_yield] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_LTtemplate_GT] = ACTIONS(2137), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2137), + [anon_sym_SQUOTE] = ACTIONS(2137), + [anon_sym_class] = ACTIONS(2137), + [anon_sym_async] = ACTIONS(2137), + [anon_sym_function] = ACTIONS(2137), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2137), + [anon_sym_using] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_SLASH] = ACTIONS(2137), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_QMARK_QMARK] = ACTIONS(2139), + [anon_sym_instanceof] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_void] = ACTIONS(2137), + [anon_sym_delete] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2137), + [sym_number] = ACTIONS(2137), + [sym_private_property_identifier] = ACTIONS(2137), + [sym_this] = ACTIONS(2137), + [sym_super] = ACTIONS(2137), + [sym_true] = ACTIONS(2137), + [sym_false] = ACTIONS(2137), + [sym_null] = ACTIONS(2137), + [sym_undefined] = ACTIONS(2137), + [anon_sym_AT] = ACTIONS(2137), + [anon_sym_static] = ACTIONS(2137), + [anon_sym_readonly] = ACTIONS(2137), + [anon_sym_get] = ACTIONS(2137), + [anon_sym_set] = ACTIONS(2137), + [anon_sym_declare] = ACTIONS(2137), + [anon_sym_public] = ACTIONS(2137), + [anon_sym_private] = ACTIONS(2137), + [anon_sym_protected] = ACTIONS(2137), + [anon_sym_override] = ACTIONS(2137), + [anon_sym_module] = ACTIONS(2137), + [anon_sym_any] = ACTIONS(2137), + [anon_sym_number] = ACTIONS(2137), + [anon_sym_boolean] = ACTIONS(2137), + [anon_sym_string] = ACTIONS(2137), + [anon_sym_symbol] = ACTIONS(2137), + [anon_sym_object] = ACTIONS(2137), + [anon_sym_abstract] = ACTIONS(2137), + [anon_sym_satisfies] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [sym__automatic_semicolon] = ACTIONS(2141), + [sym__ternary_qmark] = ACTIONS(2143), + [sym_html_comment] = ACTIONS(5), + }, + [313] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3003), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(313), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_COMMA] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2143), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1972), [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1972), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), + [anon_sym_extends] = ACTIONS(1972), [sym_html_comment] = ACTIONS(5), }, - [310] = { - [sym_comment] = STATE(310), + [314] = { + [sym_comment] = STATE(314), [sym_identifier] = ACTIONS(2145), [anon_sym_export] = ACTIONS(2145), [anon_sym_STAR] = ACTIONS(2145), @@ -75249,8 +75385,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2147), [sym_html_comment] = ACTIONS(5), }, - [311] = { - [sym_comment] = STATE(311), + [315] = { + [sym_comment] = STATE(315), [sym_identifier] = ACTIONS(2149), [anon_sym_export] = ACTIONS(2149), [anon_sym_STAR] = ACTIONS(2151), @@ -75357,95 +75493,206 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2149), [anon_sym_enum] = ACTIONS(2149), [sym__automatic_semicolon] = ACTIONS(2153), - [sym__ternary_qmark] = ACTIONS(2155), + [sym__ternary_qmark] = ACTIONS(2153), [sym_html_comment] = ACTIONS(5), }, - [312] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2773), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_spread_element] = STATE(6296), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(312), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [316] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(316), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(2014), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(4899), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_accessibility_modifier] = STATE(367), + [sym_override_modifier] = STATE(457), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(1906), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(2155), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1071), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(2157), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1081), + [anon_sym_AT] = ACTIONS(1155), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(2159), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1171), + [anon_sym_private] = ACTIONS(1171), + [anon_sym_protected] = ACTIONS(1171), + [anon_sym_override] = ACTIONS(1173), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), + [sym_html_comment] = ACTIONS(5), + }, + [317] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_spread_element] = STATE(6058), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(317), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(6060), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(2157), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(2077), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2157), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(2161), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_RBRACK] = ACTIONS(2157), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2081), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -75453,248 +75700,248 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), - [sym_html_comment] = ACTIONS(5), - }, - [313] = { - [sym_comment] = STATE(313), - [sym_identifier] = ACTIONS(2159), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2161), - [anon_sym_default] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2161), - [anon_sym_namespace] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2161), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_typeof] = ACTIONS(2159), - [anon_sym_import] = ACTIONS(2159), - [anon_sym_with] = ACTIONS(2159), - [anon_sym_var] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_else] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_switch] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2159), - [anon_sym_in] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_debugger] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_throw] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_case] = ACTIONS(2159), - [anon_sym_yield] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LTtemplate_GT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2161), - [anon_sym_DOT] = ACTIONS(2161), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_class] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_function] = ACTIONS(2159), - [anon_sym_QMARK_DOT] = ACTIONS(2161), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_using] = ACTIONS(2159), - [anon_sym_AMP_AMP] = ACTIONS(2161), - [anon_sym_PIPE_PIPE] = ACTIONS(2161), - [anon_sym_GT_GT] = ACTIONS(2161), - [anon_sym_GT_GT_GT] = ACTIONS(2161), - [anon_sym_LT_LT] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2161), - [anon_sym_CARET] = ACTIONS(2161), - [anon_sym_PIPE] = ACTIONS(2161), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2161), - [anon_sym_STAR_STAR] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_LT_EQ] = ACTIONS(2161), - [anon_sym_EQ_EQ] = ACTIONS(2161), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2161), - [anon_sym_BANG_EQ] = ACTIONS(2161), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2161), - [anon_sym_GT_EQ] = ACTIONS(2161), - [anon_sym_QMARK_QMARK] = ACTIONS(2161), - [anon_sym_instanceof] = ACTIONS(2161), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_void] = ACTIONS(2159), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2159), - [sym_number] = ACTIONS(2159), - [sym_private_property_identifier] = ACTIONS(2159), - [sym_this] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_null] = ACTIONS(2159), - [sym_undefined] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [anon_sym_static] = ACTIONS(2159), - [anon_sym_readonly] = ACTIONS(2159), - [anon_sym_get] = ACTIONS(2159), - [anon_sym_set] = ACTIONS(2159), - [anon_sym_declare] = ACTIONS(2159), - [anon_sym_public] = ACTIONS(2159), - [anon_sym_private] = ACTIONS(2159), - [anon_sym_protected] = ACTIONS(2159), - [anon_sym_override] = ACTIONS(2159), - [anon_sym_module] = ACTIONS(2159), - [anon_sym_any] = ACTIONS(2159), - [anon_sym_number] = ACTIONS(2159), - [anon_sym_boolean] = ACTIONS(2159), - [anon_sym_string] = ACTIONS(2159), - [anon_sym_symbol] = ACTIONS(2159), - [anon_sym_object] = ACTIONS(2159), - [anon_sym_abstract] = ACTIONS(2159), - [anon_sym_satisfies] = ACTIONS(2161), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [sym__automatic_semicolon] = ACTIONS(2163), - [sym__ternary_qmark] = ACTIONS(2165), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [314] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2573), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(314), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(21), + [318] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2900), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(318), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(1972), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1978), + [anon_sym_GT] = ACTIONS(1972), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_AMP] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), - [anon_sym_extends] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), + [anon_sym_extends] = ACTIONS(1972), [sym_html_comment] = ACTIONS(5), }, - [315] = { - [sym_comment] = STATE(315), + [319] = { + [sym_comment] = STATE(319), + [sym_identifier] = ACTIONS(2163), + [anon_sym_export] = ACTIONS(2163), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_default] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2163), + [anon_sym_as] = ACTIONS(2163), + [anon_sym_namespace] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_typeof] = ACTIONS(2163), + [anon_sym_import] = ACTIONS(2163), + [anon_sym_with] = ACTIONS(2163), + [anon_sym_var] = ACTIONS(2163), + [anon_sym_let] = ACTIONS(2163), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_else] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_switch] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_await] = ACTIONS(2163), + [anon_sym_in] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2163), + [anon_sym_do] = ACTIONS(2163), + [anon_sym_try] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_debugger] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_throw] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_case] = ACTIONS(2163), + [anon_sym_yield] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2163), + [anon_sym_LTtemplate_GT] = ACTIONS(2163), + [anon_sym_GT] = ACTIONS(2163), + [anon_sym_DOT] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [anon_sym_SQUOTE] = ACTIONS(2163), + [anon_sym_class] = ACTIONS(2163), + [anon_sym_async] = ACTIONS(2163), + [anon_sym_function] = ACTIONS(2163), + [anon_sym_QMARK_DOT] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(2163), + [anon_sym_AMP_AMP] = ACTIONS(2163), + [anon_sym_PIPE_PIPE] = ACTIONS(2163), + [anon_sym_GT_GT] = ACTIONS(2163), + [anon_sym_GT_GT_GT] = ACTIONS(2163), + [anon_sym_LT_LT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2163), + [anon_sym_CARET] = ACTIONS(2163), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2163), + [anon_sym_PERCENT] = ACTIONS(2163), + [anon_sym_STAR_STAR] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2163), + [anon_sym_LT_EQ] = ACTIONS(2163), + [anon_sym_EQ_EQ] = ACTIONS(2163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2163), + [anon_sym_GT_EQ] = ACTIONS(2163), + [anon_sym_QMARK_QMARK] = ACTIONS(2163), + [anon_sym_instanceof] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2163), + [anon_sym_void] = ACTIONS(2163), + [anon_sym_delete] = ACTIONS(2163), + [anon_sym_PLUS_PLUS] = ACTIONS(2163), + [anon_sym_DASH_DASH] = ACTIONS(2163), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2163), + [sym_number] = ACTIONS(2163), + [sym_private_property_identifier] = ACTIONS(2163), + [sym_this] = ACTIONS(2163), + [sym_super] = ACTIONS(2163), + [sym_true] = ACTIONS(2163), + [sym_false] = ACTIONS(2163), + [sym_null] = ACTIONS(2163), + [sym_undefined] = ACTIONS(2163), + [anon_sym_AT] = ACTIONS(2163), + [anon_sym_static] = ACTIONS(2163), + [anon_sym_readonly] = ACTIONS(2163), + [anon_sym_get] = ACTIONS(2163), + [anon_sym_set] = ACTIONS(2163), + [anon_sym_declare] = ACTIONS(2163), + [anon_sym_public] = ACTIONS(2163), + [anon_sym_private] = ACTIONS(2163), + [anon_sym_protected] = ACTIONS(2163), + [anon_sym_override] = ACTIONS(2163), + [anon_sym_module] = ACTIONS(2163), + [anon_sym_any] = ACTIONS(2163), + [anon_sym_number] = ACTIONS(2163), + [anon_sym_boolean] = ACTIONS(2163), + [anon_sym_string] = ACTIONS(2163), + [anon_sym_symbol] = ACTIONS(2163), + [anon_sym_object] = ACTIONS(2163), + [anon_sym_abstract] = ACTIONS(2163), + [anon_sym_satisfies] = ACTIONS(2163), + [anon_sym_interface] = ACTIONS(2163), + [anon_sym_enum] = ACTIONS(2163), + [sym__automatic_semicolon] = ACTIONS(2165), + [sym__ternary_qmark] = ACTIONS(2165), + [sym_html_comment] = ACTIONS(5), + }, + [320] = { + [sym_comment] = STATE(320), [sym_identifier] = ACTIONS(2167), [anon_sym_export] = ACTIONS(2167), [anon_sym_STAR] = ACTIONS(2169), @@ -75801,58 +76048,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2167), [anon_sym_enum] = ACTIONS(2167), [sym__automatic_semicolon] = ACTIONS(2171), - [sym__ternary_qmark] = ACTIONS(2171), + [sym__ternary_qmark] = ACTIONS(2173), [sym_html_comment] = ACTIONS(5), }, - [316] = { - [sym_comment] = STATE(316), - [sym_identifier] = ACTIONS(2173), - [anon_sym_export] = ACTIONS(2173), + [321] = { + [sym_comment] = STATE(321), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2175), [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_default] = ACTIONS(2173), - [anon_sym_type] = ACTIONS(2173), + [anon_sym_default] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), [anon_sym_as] = ACTIONS(2175), - [anon_sym_namespace] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_typeof] = ACTIONS(2173), - [anon_sym_import] = ACTIONS(2173), - [anon_sym_with] = ACTIONS(2173), - [anon_sym_var] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2173), - [anon_sym_else] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_switch] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_await] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_typeof] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_with] = ACTIONS(2175), + [anon_sym_var] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2175), [anon_sym_in] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_debugger] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_throw] = ACTIONS(2173), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_case] = ACTIONS(2173), - [anon_sym_yield] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_LTtemplate_GT] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_debugger] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_throw] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_case] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_LTtemplate_GT] = ACTIONS(2175), [anon_sym_GT] = ACTIONS(2175), [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_class] = ACTIONS(2173), - [anon_sym_async] = ACTIONS(2173), - [anon_sym_function] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_function] = ACTIONS(2175), [anon_sym_QMARK_DOT] = ACTIONS(2175), - [anon_sym_new] = ACTIONS(2173), - [anon_sym_using] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_using] = ACTIONS(2175), [anon_sym_AMP_AMP] = ACTIONS(2175), [anon_sym_PIPE_PIPE] = ACTIONS(2175), [anon_sym_GT_GT] = ACTIONS(2175), @@ -75861,12 +76108,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2175), [anon_sym_CARET] = ACTIONS(2175), [anon_sym_PIPE] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), [anon_sym_PERCENT] = ACTIONS(2175), [anon_sym_STAR_STAR] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2175), [anon_sym_LT_EQ] = ACTIONS(2175), [anon_sym_EQ_EQ] = ACTIONS(2175), [anon_sym_EQ_EQ_EQ] = ACTIONS(2175), @@ -75875,95 +76122,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2175), [anon_sym_QMARK_QMARK] = ACTIONS(2175), [anon_sym_instanceof] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2173), - [anon_sym_void] = ACTIONS(2173), - [anon_sym_delete] = ACTIONS(2173), - [anon_sym_PLUS_PLUS] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2173), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2173), - [sym_number] = ACTIONS(2173), - [sym_private_property_identifier] = ACTIONS(2173), - [sym_this] = ACTIONS(2173), - [sym_super] = ACTIONS(2173), - [sym_true] = ACTIONS(2173), - [sym_false] = ACTIONS(2173), - [sym_null] = ACTIONS(2173), - [sym_undefined] = ACTIONS(2173), - [anon_sym_AT] = ACTIONS(2173), - [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_abstract] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_void] = ACTIONS(2175), + [anon_sym_delete] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2175), + [sym_number] = ACTIONS(2175), + [sym_private_property_identifier] = ACTIONS(2175), + [sym_this] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_null] = ACTIONS(2175), + [sym_undefined] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_readonly] = ACTIONS(2175), + [anon_sym_get] = ACTIONS(2175), + [anon_sym_set] = ACTIONS(2175), + [anon_sym_declare] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_override] = ACTIONS(2175), + [anon_sym_module] = ACTIONS(2175), + [anon_sym_any] = ACTIONS(2175), + [anon_sym_number] = ACTIONS(2175), + [anon_sym_boolean] = ACTIONS(2175), + [anon_sym_string] = ACTIONS(2175), + [anon_sym_symbol] = ACTIONS(2175), + [anon_sym_object] = ACTIONS(2175), + [anon_sym_abstract] = ACTIONS(2175), [anon_sym_satisfies] = ACTIONS(2175), - [anon_sym_interface] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), [sym__automatic_semicolon] = ACTIONS(2177), - [sym__ternary_qmark] = ACTIONS(2179), + [sym__ternary_qmark] = ACTIONS(2177), [sym_html_comment] = ACTIONS(5), }, - [317] = { - [sym_comment] = STATE(317), - [sym_identifier] = ACTIONS(2181), - [anon_sym_export] = ACTIONS(2181), + [322] = { + [sym_comment] = STATE(322), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2069), + [anon_sym_default] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_EQ] = ACTIONS(2071), + [anon_sym_as] = ACTIONS(2069), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_COMMA] = ACTIONS(2069), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_in] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_case] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2069), + [anon_sym_DOT] = ACTIONS(2069), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_QMARK_DOT] = ACTIONS(2069), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2069), + [anon_sym_PIPE_PIPE] = ACTIONS(2069), + [anon_sym_GT_GT] = ACTIONS(2069), + [anon_sym_GT_GT_GT] = ACTIONS(2069), + [anon_sym_LT_LT] = ACTIONS(2069), + [anon_sym_AMP] = ACTIONS(2069), + [anon_sym_CARET] = ACTIONS(2069), + [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_PERCENT] = ACTIONS(2069), + [anon_sym_STAR_STAR] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2069), + [anon_sym_EQ_EQ] = ACTIONS(2069), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2069), + [anon_sym_BANG_EQ] = ACTIONS(2069), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2069), + [anon_sym_GT_EQ] = ACTIONS(2069), + [anon_sym_QMARK_QMARK] = ACTIONS(2069), + [anon_sym_instanceof] = ACTIONS(2069), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_satisfies] = ACTIONS(2069), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [sym__automatic_semicolon] = ACTIONS(2179), + [sym__ternary_qmark] = ACTIONS(2075), + [sym_html_comment] = ACTIONS(5), + }, + [323] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_spread_element] = STATE(5960), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(323), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(5961), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(2077), + [anon_sym_typeof] = ACTIONS(1001), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1652), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2081), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), + [sym_html_comment] = ACTIONS(5), + }, + [324] = { + [sym_comment] = STATE(324), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), + [anon_sym_default] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), [anon_sym_as] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), [anon_sym_COMMA] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_typeof] = ACTIONS(2181), - [anon_sym_import] = ACTIONS(2181), - [anon_sym_with] = ACTIONS(2181), - [anon_sym_var] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2181), - [anon_sym_else] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_switch] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), [anon_sym_in] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_do] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_debugger] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_throw] = ACTIONS(2181), - [anon_sym_SEMI] = ACTIONS(2181), - [anon_sym_case] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_LTtemplate_GT] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_case] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), [anon_sym_GT] = ACTIONS(2183), [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_class] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_function] = ACTIONS(2181), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), [anon_sym_QMARK_DOT] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_using] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), [anon_sym_AMP_AMP] = ACTIONS(2183), [anon_sym_PIPE_PIPE] = ACTIONS(2183), [anon_sym_GT_GT] = ACTIONS(2183), @@ -75972,12 +76441,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2183), [anon_sym_CARET] = ACTIONS(2183), [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_SLASH] = ACTIONS(2181), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), [anon_sym_PERCENT] = ACTIONS(2183), [anon_sym_STAR_STAR] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), [anon_sym_LT_EQ] = ACTIONS(2183), [anon_sym_EQ_EQ] = ACTIONS(2183), [anon_sym_EQ_EQ_EQ] = ACTIONS(2183), @@ -75986,354 +76455,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2183), [anon_sym_QMARK_QMARK] = ACTIONS(2183), [anon_sym_instanceof] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2181), - [anon_sym_void] = ACTIONS(2181), - [anon_sym_delete] = ACTIONS(2181), - [anon_sym_PLUS_PLUS] = ACTIONS(2181), - [anon_sym_DASH_DASH] = ACTIONS(2181), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2181), - [sym_number] = ACTIONS(2181), - [sym_private_property_identifier] = ACTIONS(2181), - [sym_this] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_true] = ACTIONS(2181), - [sym_false] = ACTIONS(2181), - [sym_null] = ACTIONS(2181), - [sym_undefined] = ACTIONS(2181), - [anon_sym_AT] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_readonly] = ACTIONS(2181), - [anon_sym_get] = ACTIONS(2181), - [anon_sym_set] = ACTIONS(2181), - [anon_sym_declare] = ACTIONS(2181), - [anon_sym_public] = ACTIONS(2181), - [anon_sym_private] = ACTIONS(2181), - [anon_sym_protected] = ACTIONS(2181), - [anon_sym_override] = ACTIONS(2181), - [anon_sym_module] = ACTIONS(2181), - [anon_sym_any] = ACTIONS(2181), - [anon_sym_number] = ACTIONS(2181), - [anon_sym_boolean] = ACTIONS(2181), - [anon_sym_string] = ACTIONS(2181), - [anon_sym_symbol] = ACTIONS(2181), - [anon_sym_object] = ACTIONS(2181), - [anon_sym_abstract] = ACTIONS(2181), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), + [anon_sym_abstract] = ACTIONS(2183), [anon_sym_satisfies] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), [sym__automatic_semicolon] = ACTIONS(2185), - [sym__ternary_qmark] = ACTIONS(2187), - [sym_html_comment] = ACTIONS(5), - }, - [318] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3167), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(318), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(1624), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1978), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_AMP] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), - [anon_sym_extends] = ACTIONS(1978), - [sym_html_comment] = ACTIONS(5), - }, - [319] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2821), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_spread_element] = STATE(5904), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(319), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(5911), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2189), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [sym__ternary_qmark] = ACTIONS(2185), [sym_html_comment] = ACTIONS(5), }, - [320] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2779), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_spread_element] = STATE(6143), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(320), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6144), + [325] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2637), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_spread_element] = STATE(5966), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(325), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(2187), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2191), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(2187), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_RBRACK] = ACTIONS(2187), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2081), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -76341,517 +76588,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), - [sym_html_comment] = ACTIONS(5), - }, - [321] = { - [sym_statement_block] = STATE(412), - [sym_comment] = STATE(321), - [ts_builtin_sym_end] = ACTIONS(2059), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_else] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_STAR_STAR] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_QMARK_QMARK] = ACTIONS(2055), - [anon_sym_instanceof] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_satisfies] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [sym__automatic_semicolon] = ACTIONS(2059), - [sym__ternary_qmark] = ACTIONS(2059), - [sym_html_comment] = ACTIONS(5), - }, - [322] = { - [sym_comment] = STATE(322), - [sym_identifier] = ACTIONS(2195), - [anon_sym_export] = ACTIONS(2195), - [anon_sym_STAR] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_namespace] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_COMMA] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_typeof] = ACTIONS(2195), - [anon_sym_import] = ACTIONS(2195), - [anon_sym_with] = ACTIONS(2195), - [anon_sym_var] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_else] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_switch] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_in] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [anon_sym_do] = ACTIONS(2195), - [anon_sym_try] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_debugger] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_throw] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_case] = ACTIONS(2195), - [anon_sym_yield] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_LTtemplate_GT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), - [anon_sym_DOT] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_class] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_QMARK_DOT] = ACTIONS(2195), - [anon_sym_new] = ACTIONS(2195), - [anon_sym_using] = ACTIONS(2195), - [anon_sym_AMP_AMP] = ACTIONS(2195), - [anon_sym_PIPE_PIPE] = ACTIONS(2195), - [anon_sym_GT_GT] = ACTIONS(2195), - [anon_sym_GT_GT_GT] = ACTIONS(2195), - [anon_sym_LT_LT] = ACTIONS(2195), - [anon_sym_AMP] = ACTIONS(2195), - [anon_sym_CARET] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2195), - [anon_sym_PLUS] = ACTIONS(2195), - [anon_sym_DASH] = ACTIONS(2195), - [anon_sym_SLASH] = ACTIONS(2195), - [anon_sym_PERCENT] = ACTIONS(2195), - [anon_sym_STAR_STAR] = ACTIONS(2195), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_LT_EQ] = ACTIONS(2195), - [anon_sym_EQ_EQ] = ACTIONS(2195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2195), - [anon_sym_BANG_EQ] = ACTIONS(2195), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2195), - [anon_sym_GT_EQ] = ACTIONS(2195), - [anon_sym_QMARK_QMARK] = ACTIONS(2195), - [anon_sym_instanceof] = ACTIONS(2195), - [anon_sym_TILDE] = ACTIONS(2195), - [anon_sym_void] = ACTIONS(2195), - [anon_sym_delete] = ACTIONS(2195), - [anon_sym_PLUS_PLUS] = ACTIONS(2195), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2195), - [sym_number] = ACTIONS(2195), - [sym_private_property_identifier] = ACTIONS(2195), - [sym_this] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_true] = ACTIONS(2195), - [sym_false] = ACTIONS(2195), - [sym_null] = ACTIONS(2195), - [sym_undefined] = ACTIONS(2195), - [anon_sym_AT] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_readonly] = ACTIONS(2195), - [anon_sym_get] = ACTIONS(2195), - [anon_sym_set] = ACTIONS(2195), - [anon_sym_declare] = ACTIONS(2195), - [anon_sym_public] = ACTIONS(2195), - [anon_sym_private] = ACTIONS(2195), - [anon_sym_protected] = ACTIONS(2195), - [anon_sym_override] = ACTIONS(2195), - [anon_sym_module] = ACTIONS(2195), - [anon_sym_any] = ACTIONS(2195), - [anon_sym_number] = ACTIONS(2195), - [anon_sym_boolean] = ACTIONS(2195), - [anon_sym_string] = ACTIONS(2195), - [anon_sym_symbol] = ACTIONS(2195), - [anon_sym_object] = ACTIONS(2195), - [anon_sym_abstract] = ACTIONS(2195), - [anon_sym_satisfies] = ACTIONS(2195), - [anon_sym_interface] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [sym__automatic_semicolon] = ACTIONS(2197), - [sym__ternary_qmark] = ACTIONS(2197), - [sym_html_comment] = ACTIONS(5), - }, - [323] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3160), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(323), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_COMMA] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(1416), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1978), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), - [anon_sym_extends] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [324] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2565), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(324), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(1526), + [326] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2563), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(326), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(1972), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1978), + [anon_sym_GT] = ACTIONS(1972), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_AMP] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), + [sym_private_property_identifier] = ACTIONS(1488), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), - [anon_sym_extends] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), + [anon_sym_extends] = ACTIONS(1972), [sym_html_comment] = ACTIONS(5), }, - [325] = { - [sym_comment] = STATE(325), - [sym_identifier] = ACTIONS(2199), - [anon_sym_export] = ACTIONS(2199), + [327] = { + [sym_comment] = STATE(327), + [sym_identifier] = ACTIONS(2189), + [anon_sym_export] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_typeof] = ACTIONS(2189), + [anon_sym_import] = ACTIONS(2189), + [anon_sym_with] = ACTIONS(2189), + [anon_sym_var] = ACTIONS(2189), + [anon_sym_let] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_else] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_switch] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_await] = ACTIONS(2189), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_do] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_debugger] = ACTIONS(2189), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2189), + [anon_sym_SEMI] = ACTIONS(2189), + [anon_sym_case] = ACTIONS(2189), + [anon_sym_yield] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_LTtemplate_GT] = ACTIONS(2189), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2189), + [anon_sym_SQUOTE] = ACTIONS(2189), + [anon_sym_class] = ACTIONS(2189), + [anon_sym_async] = ACTIONS(2189), + [anon_sym_function] = ACTIONS(2189), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_using] = ACTIONS(2189), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(2191), + [anon_sym_GT_GT_GT] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_SLASH] = ACTIONS(2189), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_STAR_STAR] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_QMARK_QMARK] = ACTIONS(2191), + [anon_sym_instanceof] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2189), + [anon_sym_void] = ACTIONS(2189), + [anon_sym_delete] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2189), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2189), + [sym_number] = ACTIONS(2189), + [sym_private_property_identifier] = ACTIONS(2189), + [sym_this] = ACTIONS(2189), + [sym_super] = ACTIONS(2189), + [sym_true] = ACTIONS(2189), + [sym_false] = ACTIONS(2189), + [sym_null] = ACTIONS(2189), + [sym_undefined] = ACTIONS(2189), + [anon_sym_AT] = ACTIONS(2189), + [anon_sym_static] = ACTIONS(2189), + [anon_sym_readonly] = ACTIONS(2189), + [anon_sym_get] = ACTIONS(2189), + [anon_sym_set] = ACTIONS(2189), + [anon_sym_declare] = ACTIONS(2189), + [anon_sym_public] = ACTIONS(2189), + [anon_sym_private] = ACTIONS(2189), + [anon_sym_protected] = ACTIONS(2189), + [anon_sym_override] = ACTIONS(2189), + [anon_sym_module] = ACTIONS(2189), + [anon_sym_any] = ACTIONS(2189), + [anon_sym_number] = ACTIONS(2189), + [anon_sym_boolean] = ACTIONS(2189), + [anon_sym_string] = ACTIONS(2189), + [anon_sym_symbol] = ACTIONS(2189), + [anon_sym_object] = ACTIONS(2189), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_satisfies] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [sym__automatic_semicolon] = ACTIONS(2193), + [sym__ternary_qmark] = ACTIONS(2195), + [sym_html_comment] = ACTIONS(5), + }, + [328] = { + [sym_comment] = STATE(328), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), [anon_sym_STAR] = ACTIONS(2199), - [anon_sym_default] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2199), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), [anon_sym_as] = ACTIONS(2199), - [anon_sym_namespace] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), [anon_sym_COMMA] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_typeof] = ACTIONS(2199), - [anon_sym_import] = ACTIONS(2199), - [anon_sym_with] = ACTIONS(2199), - [anon_sym_var] = ACTIONS(2199), - [anon_sym_let] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_else] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_switch] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_await] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), [anon_sym_in] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2199), - [anon_sym_do] = ACTIONS(2199), - [anon_sym_try] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_debugger] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_throw] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_case] = ACTIONS(2199), - [anon_sym_yield] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_LTtemplate_GT] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_case] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), [anon_sym_GT] = ACTIONS(2199), [anon_sym_DOT] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2199), - [anon_sym_SQUOTE] = ACTIONS(2199), - [anon_sym_class] = ACTIONS(2199), - [anon_sym_async] = ACTIONS(2199), - [anon_sym_function] = ACTIONS(2199), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), [anon_sym_QMARK_DOT] = ACTIONS(2199), - [anon_sym_new] = ACTIONS(2199), - [anon_sym_using] = ACTIONS(2199), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), [anon_sym_AMP_AMP] = ACTIONS(2199), [anon_sym_PIPE_PIPE] = ACTIONS(2199), [anon_sym_GT_GT] = ACTIONS(2199), @@ -76860,12 +76885,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2199), [anon_sym_CARET] = ACTIONS(2199), [anon_sym_PIPE] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_SLASH] = ACTIONS(2199), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), [anon_sym_PERCENT] = ACTIONS(2199), [anon_sym_STAR_STAR] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2199), + [anon_sym_LT] = ACTIONS(2197), [anon_sym_LT_EQ] = ACTIONS(2199), [anon_sym_EQ_EQ] = ACTIONS(2199), [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), @@ -76874,603 +76899,159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2199), [anon_sym_QMARK_QMARK] = ACTIONS(2199), [anon_sym_instanceof] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_void] = ACTIONS(2199), - [anon_sym_delete] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2199), - [sym_number] = ACTIONS(2199), - [sym_private_property_identifier] = ACTIONS(2199), - [sym_this] = ACTIONS(2199), - [sym_super] = ACTIONS(2199), - [sym_true] = ACTIONS(2199), - [sym_false] = ACTIONS(2199), - [sym_null] = ACTIONS(2199), - [sym_undefined] = ACTIONS(2199), - [anon_sym_AT] = ACTIONS(2199), - [anon_sym_static] = ACTIONS(2199), - [anon_sym_readonly] = ACTIONS(2199), - [anon_sym_get] = ACTIONS(2199), - [anon_sym_set] = ACTIONS(2199), - [anon_sym_declare] = ACTIONS(2199), - [anon_sym_public] = ACTIONS(2199), - [anon_sym_private] = ACTIONS(2199), - [anon_sym_protected] = ACTIONS(2199), - [anon_sym_override] = ACTIONS(2199), - [anon_sym_module] = ACTIONS(2199), - [anon_sym_any] = ACTIONS(2199), - [anon_sym_number] = ACTIONS(2199), - [anon_sym_boolean] = ACTIONS(2199), - [anon_sym_string] = ACTIONS(2199), - [anon_sym_symbol] = ACTIONS(2199), - [anon_sym_object] = ACTIONS(2199), - [anon_sym_abstract] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), [anon_sym_satisfies] = ACTIONS(2199), - [anon_sym_interface] = ACTIONS(2199), - [anon_sym_enum] = ACTIONS(2199), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), [sym__automatic_semicolon] = ACTIONS(2201), - [sym__ternary_qmark] = ACTIONS(2201), - [sym_html_comment] = ACTIONS(5), - }, - [326] = { - [sym_comment] = STATE(326), - [sym_identifier] = ACTIONS(2203), - [anon_sym_export] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2203), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_namespace] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_COMMA] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_typeof] = ACTIONS(2203), - [anon_sym_import] = ACTIONS(2203), - [anon_sym_with] = ACTIONS(2203), - [anon_sym_var] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_else] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_switch] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2203), - [anon_sym_in] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [anon_sym_do] = ACTIONS(2203), - [anon_sym_try] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_debugger] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_throw] = ACTIONS(2203), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_case] = ACTIONS(2203), - [anon_sym_yield] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_LTtemplate_GT] = ACTIONS(2203), - [anon_sym_GT] = ACTIONS(2203), - [anon_sym_DOT] = ACTIONS(2203), - [anon_sym_DQUOTE] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_class] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_function] = ACTIONS(2203), - [anon_sym_QMARK_DOT] = ACTIONS(2203), - [anon_sym_new] = ACTIONS(2203), - [anon_sym_using] = ACTIONS(2203), - [anon_sym_AMP_AMP] = ACTIONS(2203), - [anon_sym_PIPE_PIPE] = ACTIONS(2203), - [anon_sym_GT_GT] = ACTIONS(2203), - [anon_sym_GT_GT_GT] = ACTIONS(2203), - [anon_sym_LT_LT] = ACTIONS(2203), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_CARET] = ACTIONS(2203), - [anon_sym_PIPE] = ACTIONS(2203), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_SLASH] = ACTIONS(2203), - [anon_sym_PERCENT] = ACTIONS(2203), - [anon_sym_STAR_STAR] = ACTIONS(2203), - [anon_sym_LT] = ACTIONS(2203), - [anon_sym_LT_EQ] = ACTIONS(2203), - [anon_sym_EQ_EQ] = ACTIONS(2203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2203), - [anon_sym_BANG_EQ] = ACTIONS(2203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2203), - [anon_sym_GT_EQ] = ACTIONS(2203), - [anon_sym_QMARK_QMARK] = ACTIONS(2203), - [anon_sym_instanceof] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(2203), - [anon_sym_delete] = ACTIONS(2203), - [anon_sym_PLUS_PLUS] = ACTIONS(2203), - [anon_sym_DASH_DASH] = ACTIONS(2203), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2203), - [sym_number] = ACTIONS(2203), - [sym_private_property_identifier] = ACTIONS(2203), - [sym_this] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_true] = ACTIONS(2203), - [sym_false] = ACTIONS(2203), - [sym_null] = ACTIONS(2203), - [sym_undefined] = ACTIONS(2203), - [anon_sym_AT] = ACTIONS(2203), - [anon_sym_static] = ACTIONS(2203), - [anon_sym_readonly] = ACTIONS(2203), - [anon_sym_get] = ACTIONS(2203), - [anon_sym_set] = ACTIONS(2203), - [anon_sym_declare] = ACTIONS(2203), - [anon_sym_public] = ACTIONS(2203), - [anon_sym_private] = ACTIONS(2203), - [anon_sym_protected] = ACTIONS(2203), - [anon_sym_override] = ACTIONS(2203), - [anon_sym_module] = ACTIONS(2203), - [anon_sym_any] = ACTIONS(2203), - [anon_sym_number] = ACTIONS(2203), - [anon_sym_boolean] = ACTIONS(2203), - [anon_sym_string] = ACTIONS(2203), - [anon_sym_symbol] = ACTIONS(2203), - [anon_sym_object] = ACTIONS(2203), - [anon_sym_abstract] = ACTIONS(2203), - [anon_sym_satisfies] = ACTIONS(2203), - [anon_sym_interface] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [sym__automatic_semicolon] = ACTIONS(2205), - [sym__ternary_qmark] = ACTIONS(2205), - [sym_html_comment] = ACTIONS(5), - }, - [327] = { - [sym_comment] = STATE(327), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_STAR_STAR] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_QMARK_QMARK] = ACTIONS(2093), - [anon_sym_instanceof] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_satisfies] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(2207), - [sym__ternary_qmark] = ACTIONS(2095), - [sym_html_comment] = ACTIONS(5), - }, - [328] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3060), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(328), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1978), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_AMP] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [anon_sym_extends] = ACTIONS(1978), + [sym__ternary_qmark] = ACTIONS(2203), [sym_html_comment] = ACTIONS(5), }, [329] = { - [sym_statement_block] = STATE(412), [sym_comment] = STATE(329), - [ts_builtin_sym_end] = ACTIONS(2059), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_else] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_STAR_STAR] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_QMARK_QMARK] = ACTIONS(2055), - [anon_sym_instanceof] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_satisfies] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [sym__automatic_semicolon] = ACTIONS(2059), - [sym__ternary_qmark] = ACTIONS(2059), + [sym_identifier] = ACTIONS(2205), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2207), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_typeof] = ACTIONS(2205), + [anon_sym_import] = ACTIONS(2205), + [anon_sym_with] = ACTIONS(2205), + [anon_sym_var] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_else] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_in] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_debugger] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_case] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_LTtemplate_GT] = ACTIONS(2205), + [anon_sym_GT] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_QMARK_DOT] = ACTIONS(2207), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_using] = ACTIONS(2205), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_GT_GT] = ACTIONS(2207), + [anon_sym_GT_GT_GT] = ACTIONS(2207), + [anon_sym_LT_LT] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_PERCENT] = ACTIONS(2207), + [anon_sym_STAR_STAR] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2207), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_QMARK_QMARK] = ACTIONS(2207), + [anon_sym_instanceof] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_void] = ACTIONS(2205), + [anon_sym_delete] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(2205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2205), + [sym_number] = ACTIONS(2205), + [sym_private_property_identifier] = ACTIONS(2205), + [sym_this] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_null] = ACTIONS(2205), + [sym_undefined] = ACTIONS(2205), + [anon_sym_AT] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_readonly] = ACTIONS(2205), + [anon_sym_get] = ACTIONS(2205), + [anon_sym_set] = ACTIONS(2205), + [anon_sym_declare] = ACTIONS(2205), + [anon_sym_public] = ACTIONS(2205), + [anon_sym_private] = ACTIONS(2205), + [anon_sym_protected] = ACTIONS(2205), + [anon_sym_override] = ACTIONS(2205), + [anon_sym_module] = ACTIONS(2205), + [anon_sym_any] = ACTIONS(2205), + [anon_sym_number] = ACTIONS(2205), + [anon_sym_boolean] = ACTIONS(2205), + [anon_sym_string] = ACTIONS(2205), + [anon_sym_symbol] = ACTIONS(2205), + [anon_sym_object] = ACTIONS(2205), + [anon_sym_abstract] = ACTIONS(2205), + [anon_sym_satisfies] = ACTIONS(2207), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [sym__automatic_semicolon] = ACTIONS(2209), + [sym__ternary_qmark] = ACTIONS(2211), [sym_html_comment] = ACTIONS(5), }, [330] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2772), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_spread_element] = STATE(6261), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), [sym_comment] = STATE(330), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6219), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2211), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), - [sym_html_comment] = ACTIONS(5), - }, - [331] = { - [sym_comment] = STATE(331), [sym_identifier] = ACTIONS(2213), [anon_sym_export] = ACTIONS(2213), [anon_sym_STAR] = ACTIONS(2215), @@ -77580,119 +77161,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2219), [sym_html_comment] = ACTIONS(5), }, - [332] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2920), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(332), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(1978), - [anon_sym_typeof] = ACTIONS(1490), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1978), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(1978), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_AMP] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1978), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), - [anon_sym_extends] = ACTIONS(1978), - [sym_html_comment] = ACTIONS(5), - }, - [333] = { - [sym_comment] = STATE(333), + [331] = { + [sym_comment] = STATE(331), [sym_identifier] = ACTIONS(2221), [anon_sym_export] = ACTIONS(2221), [anon_sym_STAR] = ACTIONS(2221), @@ -77802,461 +77272,350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2223), [sym_html_comment] = ACTIONS(5), }, + [332] = { + [sym_comment] = STATE(332), + [sym_identifier] = ACTIONS(2225), + [anon_sym_export] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_default] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_as] = ACTIONS(2227), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_COMMA] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_typeof] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_with] = ACTIONS(2225), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_else] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_in] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_debugger] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_case] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LTtemplate_GT] = ACTIONS(2225), + [anon_sym_GT] = ACTIONS(2227), + [anon_sym_DOT] = ACTIONS(2227), + [anon_sym_DQUOTE] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_QMARK_DOT] = ACTIONS(2227), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [anon_sym_AMP_AMP] = ACTIONS(2227), + [anon_sym_PIPE_PIPE] = ACTIONS(2227), + [anon_sym_GT_GT] = ACTIONS(2227), + [anon_sym_GT_GT_GT] = ACTIONS(2227), + [anon_sym_LT_LT] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_PERCENT] = ACTIONS(2227), + [anon_sym_STAR_STAR] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_LT_EQ] = ACTIONS(2227), + [anon_sym_EQ_EQ] = ACTIONS(2227), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2227), + [anon_sym_GT_EQ] = ACTIONS(2227), + [anon_sym_QMARK_QMARK] = ACTIONS(2227), + [anon_sym_instanceof] = ACTIONS(2227), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_void] = ACTIONS(2225), + [anon_sym_delete] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2225), + [sym_number] = ACTIONS(2225), + [sym_private_property_identifier] = ACTIONS(2225), + [sym_this] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_null] = ACTIONS(2225), + [sym_undefined] = ACTIONS(2225), + [anon_sym_AT] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_readonly] = ACTIONS(2225), + [anon_sym_get] = ACTIONS(2225), + [anon_sym_set] = ACTIONS(2225), + [anon_sym_declare] = ACTIONS(2225), + [anon_sym_public] = ACTIONS(2225), + [anon_sym_private] = ACTIONS(2225), + [anon_sym_protected] = ACTIONS(2225), + [anon_sym_override] = ACTIONS(2225), + [anon_sym_module] = ACTIONS(2225), + [anon_sym_any] = ACTIONS(2225), + [anon_sym_number] = ACTIONS(2225), + [anon_sym_boolean] = ACTIONS(2225), + [anon_sym_string] = ACTIONS(2225), + [anon_sym_symbol] = ACTIONS(2225), + [anon_sym_object] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_satisfies] = ACTIONS(2227), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [sym__automatic_semicolon] = ACTIONS(2229), + [sym__ternary_qmark] = ACTIONS(2231), + [sym_html_comment] = ACTIONS(5), + }, + [333] = { + [sym_comment] = STATE(333), + [sym_identifier] = ACTIONS(2233), + [anon_sym_export] = ACTIONS(2233), + [anon_sym_STAR] = ACTIONS(2233), + [anon_sym_default] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_as] = ACTIONS(2233), + [anon_sym_namespace] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_COMMA] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_typeof] = ACTIONS(2233), + [anon_sym_import] = ACTIONS(2233), + [anon_sym_with] = ACTIONS(2233), + [anon_sym_var] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2233), + [anon_sym_else] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_switch] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2233), + [anon_sym_await] = ACTIONS(2233), + [anon_sym_in] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_do] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_debugger] = ACTIONS(2233), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_throw] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_case] = ACTIONS(2233), + [anon_sym_yield] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LTtemplate_GT] = ACTIONS(2233), + [anon_sym_GT] = ACTIONS(2233), + [anon_sym_DOT] = ACTIONS(2233), + [anon_sym_DQUOTE] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_class] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_function] = ACTIONS(2233), + [anon_sym_QMARK_DOT] = ACTIONS(2233), + [anon_sym_new] = ACTIONS(2233), + [anon_sym_using] = ACTIONS(2233), + [anon_sym_AMP_AMP] = ACTIONS(2233), + [anon_sym_PIPE_PIPE] = ACTIONS(2233), + [anon_sym_GT_GT] = ACTIONS(2233), + [anon_sym_GT_GT_GT] = ACTIONS(2233), + [anon_sym_LT_LT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2233), + [anon_sym_CARET] = ACTIONS(2233), + [anon_sym_PIPE] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_SLASH] = ACTIONS(2233), + [anon_sym_PERCENT] = ACTIONS(2233), + [anon_sym_STAR_STAR] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_LT_EQ] = ACTIONS(2233), + [anon_sym_EQ_EQ] = ACTIONS(2233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2233), + [anon_sym_BANG_EQ] = ACTIONS(2233), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2233), + [anon_sym_GT_EQ] = ACTIONS(2233), + [anon_sym_QMARK_QMARK] = ACTIONS(2233), + [anon_sym_instanceof] = ACTIONS(2233), + [anon_sym_TILDE] = ACTIONS(2233), + [anon_sym_void] = ACTIONS(2233), + [anon_sym_delete] = ACTIONS(2233), + [anon_sym_PLUS_PLUS] = ACTIONS(2233), + [anon_sym_DASH_DASH] = ACTIONS(2233), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2233), + [sym_number] = ACTIONS(2233), + [sym_private_property_identifier] = ACTIONS(2233), + [sym_this] = ACTIONS(2233), + [sym_super] = ACTIONS(2233), + [sym_true] = ACTIONS(2233), + [sym_false] = ACTIONS(2233), + [sym_null] = ACTIONS(2233), + [sym_undefined] = ACTIONS(2233), + [anon_sym_AT] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_readonly] = ACTIONS(2233), + [anon_sym_get] = ACTIONS(2233), + [anon_sym_set] = ACTIONS(2233), + [anon_sym_declare] = ACTIONS(2233), + [anon_sym_public] = ACTIONS(2233), + [anon_sym_private] = ACTIONS(2233), + [anon_sym_protected] = ACTIONS(2233), + [anon_sym_override] = ACTIONS(2233), + [anon_sym_module] = ACTIONS(2233), + [anon_sym_any] = ACTIONS(2233), + [anon_sym_number] = ACTIONS(2233), + [anon_sym_boolean] = ACTIONS(2233), + [anon_sym_string] = ACTIONS(2233), + [anon_sym_symbol] = ACTIONS(2233), + [anon_sym_object] = ACTIONS(2233), + [anon_sym_abstract] = ACTIONS(2233), + [anon_sym_satisfies] = ACTIONS(2233), + [anon_sym_interface] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), + [sym__automatic_semicolon] = ACTIONS(2235), + [sym__ternary_qmark] = ACTIONS(2235), + [sym_html_comment] = ACTIONS(5), + }, [334] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2755), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_spread_element] = STATE(6423), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2617), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(334), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(6420), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2225), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1972), [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1972), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [anon_sym_extends] = ACTIONS(1972), [sym_html_comment] = ACTIONS(5), }, [335] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2826), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_spread_element] = STATE(5850), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), [sym_comment] = STATE(335), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [aux_sym_array_repeat1] = STATE(5851), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_COMMA] = ACTIONS(2111), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_RPAREN] = ACTIONS(2227), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2115), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), - [sym_html_comment] = ACTIONS(5), - }, - [336] = { - [sym_comment] = STATE(336), - [sym_identifier] = ACTIONS(2229), - [anon_sym_export] = ACTIONS(2229), - [anon_sym_STAR] = ACTIONS(2231), - [anon_sym_default] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2231), - [anon_sym_namespace] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_COMMA] = ACTIONS(2231), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_typeof] = ACTIONS(2229), - [anon_sym_import] = ACTIONS(2229), - [anon_sym_with] = ACTIONS(2229), - [anon_sym_var] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_else] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_switch] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_await] = ACTIONS(2229), - [anon_sym_in] = ACTIONS(2231), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_debugger] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_throw] = ACTIONS(2229), - [anon_sym_SEMI] = ACTIONS(2229), - [anon_sym_case] = ACTIONS(2229), - [anon_sym_yield] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2229), - [anon_sym_LTtemplate_GT] = ACTIONS(2229), - [anon_sym_GT] = ACTIONS(2231), - [anon_sym_DOT] = ACTIONS(2231), - [anon_sym_DQUOTE] = ACTIONS(2229), - [anon_sym_SQUOTE] = ACTIONS(2229), - [anon_sym_class] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_function] = ACTIONS(2229), - [anon_sym_QMARK_DOT] = ACTIONS(2231), - [anon_sym_new] = ACTIONS(2229), - [anon_sym_using] = ACTIONS(2229), - [anon_sym_AMP_AMP] = ACTIONS(2231), - [anon_sym_PIPE_PIPE] = ACTIONS(2231), - [anon_sym_GT_GT] = ACTIONS(2231), - [anon_sym_GT_GT_GT] = ACTIONS(2231), - [anon_sym_LT_LT] = ACTIONS(2231), - [anon_sym_AMP] = ACTIONS(2231), - [anon_sym_CARET] = ACTIONS(2231), - [anon_sym_PIPE] = ACTIONS(2231), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_SLASH] = ACTIONS(2229), - [anon_sym_PERCENT] = ACTIONS(2231), - [anon_sym_STAR_STAR] = ACTIONS(2231), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_LT_EQ] = ACTIONS(2231), - [anon_sym_EQ_EQ] = ACTIONS(2231), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2231), - [anon_sym_BANG_EQ] = ACTIONS(2231), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2231), - [anon_sym_GT_EQ] = ACTIONS(2231), - [anon_sym_QMARK_QMARK] = ACTIONS(2231), - [anon_sym_instanceof] = ACTIONS(2231), - [anon_sym_TILDE] = ACTIONS(2229), - [anon_sym_void] = ACTIONS(2229), - [anon_sym_delete] = ACTIONS(2229), - [anon_sym_PLUS_PLUS] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2229), - [sym_number] = ACTIONS(2229), - [sym_private_property_identifier] = ACTIONS(2229), - [sym_this] = ACTIONS(2229), - [sym_super] = ACTIONS(2229), - [sym_true] = ACTIONS(2229), - [sym_false] = ACTIONS(2229), - [sym_null] = ACTIONS(2229), - [sym_undefined] = ACTIONS(2229), - [anon_sym_AT] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_readonly] = ACTIONS(2229), - [anon_sym_get] = ACTIONS(2229), - [anon_sym_set] = ACTIONS(2229), - [anon_sym_declare] = ACTIONS(2229), - [anon_sym_public] = ACTIONS(2229), - [anon_sym_private] = ACTIONS(2229), - [anon_sym_protected] = ACTIONS(2229), - [anon_sym_override] = ACTIONS(2229), - [anon_sym_module] = ACTIONS(2229), - [anon_sym_any] = ACTIONS(2229), - [anon_sym_number] = ACTIONS(2229), - [anon_sym_boolean] = ACTIONS(2229), - [anon_sym_string] = ACTIONS(2229), - [anon_sym_symbol] = ACTIONS(2229), - [anon_sym_object] = ACTIONS(2229), - [anon_sym_abstract] = ACTIONS(2229), - [anon_sym_satisfies] = ACTIONS(2231), - [anon_sym_interface] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [sym__automatic_semicolon] = ACTIONS(2233), - [sym__ternary_qmark] = ACTIONS(2235), - [sym_html_comment] = ACTIONS(5), - }, - [337] = { - [sym_statement_block] = STATE(382), - [sym_comment] = STATE(337), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_default] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_case] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_STAR_STAR] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_QMARK_QMARK] = ACTIONS(2055), - [anon_sym_instanceof] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_satisfies] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [sym__automatic_semicolon] = ACTIONS(2059), - [sym__ternary_qmark] = ACTIONS(2059), - [sym_html_comment] = ACTIONS(5), - }, - [338] = { - [sym_comment] = STATE(338), [sym_identifier] = ACTIONS(2237), [anon_sym_export] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2239), + [anon_sym_STAR] = ACTIONS(2237), [anon_sym_default] = ACTIONS(2237), [anon_sym_type] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2239), + [anon_sym_as] = ACTIONS(2237), [anon_sym_namespace] = ACTIONS(2237), [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_COMMA] = ACTIONS(2239), + [anon_sym_COMMA] = ACTIONS(2237), [anon_sym_RBRACE] = ACTIONS(2237), [anon_sym_typeof] = ACTIONS(2237), [anon_sym_import] = ACTIONS(2237), @@ -78271,7 +77630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2237), [anon_sym_LPAREN] = ACTIONS(2237), [anon_sym_await] = ACTIONS(2237), - [anon_sym_in] = ACTIONS(2239), + [anon_sym_in] = ACTIONS(2237), [anon_sym_while] = ACTIONS(2237), [anon_sym_do] = ACTIONS(2237), [anon_sym_try] = ACTIONS(2237), @@ -78285,38 +77644,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2237), [anon_sym_LBRACK] = ACTIONS(2237), [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_GT] = ACTIONS(2239), - [anon_sym_DOT] = ACTIONS(2239), + [anon_sym_GT] = ACTIONS(2237), + [anon_sym_DOT] = ACTIONS(2237), [anon_sym_DQUOTE] = ACTIONS(2237), [anon_sym_SQUOTE] = ACTIONS(2237), [anon_sym_class] = ACTIONS(2237), [anon_sym_async] = ACTIONS(2237), [anon_sym_function] = ACTIONS(2237), - [anon_sym_QMARK_DOT] = ACTIONS(2239), + [anon_sym_QMARK_DOT] = ACTIONS(2237), [anon_sym_new] = ACTIONS(2237), [anon_sym_using] = ACTIONS(2237), - [anon_sym_AMP_AMP] = ACTIONS(2239), - [anon_sym_PIPE_PIPE] = ACTIONS(2239), - [anon_sym_GT_GT] = ACTIONS(2239), - [anon_sym_GT_GT_GT] = ACTIONS(2239), - [anon_sym_LT_LT] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2239), + [anon_sym_AMP_AMP] = ACTIONS(2237), + [anon_sym_PIPE_PIPE] = ACTIONS(2237), + [anon_sym_GT_GT] = ACTIONS(2237), + [anon_sym_GT_GT_GT] = ACTIONS(2237), + [anon_sym_LT_LT] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_CARET] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(2237), [anon_sym_PLUS] = ACTIONS(2237), [anon_sym_DASH] = ACTIONS(2237), [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_PERCENT] = ACTIONS(2239), - [anon_sym_STAR_STAR] = ACTIONS(2239), + [anon_sym_PERCENT] = ACTIONS(2237), + [anon_sym_STAR_STAR] = ACTIONS(2237), [anon_sym_LT] = ACTIONS(2237), - [anon_sym_LT_EQ] = ACTIONS(2239), - [anon_sym_EQ_EQ] = ACTIONS(2239), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2239), - [anon_sym_GT_EQ] = ACTIONS(2239), - [anon_sym_QMARK_QMARK] = ACTIONS(2239), - [anon_sym_instanceof] = ACTIONS(2239), + [anon_sym_LT_EQ] = ACTIONS(2237), + [anon_sym_EQ_EQ] = ACTIONS(2237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2237), + [anon_sym_BANG_EQ] = ACTIONS(2237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2237), + [anon_sym_GT_EQ] = ACTIONS(2237), + [anon_sym_QMARK_QMARK] = ACTIONS(2237), + [anon_sym_instanceof] = ACTIONS(2237), [anon_sym_TILDE] = ACTIONS(2237), [anon_sym_void] = ACTIONS(2237), [anon_sym_delete] = ACTIONS(2237), @@ -78350,126 +77709,348 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2237), [anon_sym_object] = ACTIONS(2237), [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_satisfies] = ACTIONS(2239), + [anon_sym_satisfies] = ACTIONS(2237), [anon_sym_interface] = ACTIONS(2237), [anon_sym_enum] = ACTIONS(2237), - [sym__automatic_semicolon] = ACTIONS(2241), - [sym__ternary_qmark] = ACTIONS(2243), + [sym__automatic_semicolon] = ACTIONS(2239), + [sym__ternary_qmark] = ACTIONS(2239), [sym_html_comment] = ACTIONS(5), }, - [339] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(339), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(2152), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5335), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_accessibility_modifier] = STATE(361), - [sym_override_modifier] = STATE(431), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(2073), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), + [336] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2874), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(336), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_COMMA] = ACTIONS(1972), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1972), [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(1972), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(2245), - [anon_sym_async] = ACTIONS(149), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(2247), + [sym_private_property_identifier] = ACTIONS(1592), + [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(1157), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2249), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1173), - [anon_sym_private] = ACTIONS(1173), - [anon_sym_protected] = ACTIONS(1173), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [sym_undefined] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), + [anon_sym_extends] = ACTIONS(1972), [sym_html_comment] = ACTIONS(5), }, - [340] = { - [sym_comment] = STATE(340), + [337] = { + [sym_comment] = STATE(337), + [sym_identifier] = ACTIONS(2241), + [anon_sym_export] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_as] = ACTIONS(2243), + [anon_sym_namespace] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2241), + [anon_sym_COMMA] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_typeof] = ACTIONS(2241), + [anon_sym_import] = ACTIONS(2241), + [anon_sym_with] = ACTIONS(2241), + [anon_sym_var] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_else] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_switch] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_await] = ACTIONS(2241), + [anon_sym_in] = ACTIONS(2243), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_do] = ACTIONS(2241), + [anon_sym_try] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_debugger] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_throw] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(2241), + [anon_sym_case] = ACTIONS(2241), + [anon_sym_yield] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_LTtemplate_GT] = ACTIONS(2241), + [anon_sym_GT] = ACTIONS(2243), + [anon_sym_DOT] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_class] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_function] = ACTIONS(2241), + [anon_sym_QMARK_DOT] = ACTIONS(2243), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_using] = ACTIONS(2241), + [anon_sym_AMP_AMP] = ACTIONS(2243), + [anon_sym_PIPE_PIPE] = ACTIONS(2243), + [anon_sym_GT_GT] = ACTIONS(2243), + [anon_sym_GT_GT_GT] = ACTIONS(2243), + [anon_sym_LT_LT] = ACTIONS(2243), + [anon_sym_AMP] = ACTIONS(2243), + [anon_sym_CARET] = ACTIONS(2243), + [anon_sym_PIPE] = ACTIONS(2243), + [anon_sym_PLUS] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_SLASH] = ACTIONS(2241), + [anon_sym_PERCENT] = ACTIONS(2243), + [anon_sym_STAR_STAR] = ACTIONS(2243), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_LT_EQ] = ACTIONS(2243), + [anon_sym_EQ_EQ] = ACTIONS(2243), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2243), + [anon_sym_BANG_EQ] = ACTIONS(2243), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2243), + [anon_sym_GT_EQ] = ACTIONS(2243), + [anon_sym_QMARK_QMARK] = ACTIONS(2243), + [anon_sym_instanceof] = ACTIONS(2243), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_void] = ACTIONS(2241), + [anon_sym_delete] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2241), + [sym_number] = ACTIONS(2241), + [sym_private_property_identifier] = ACTIONS(2241), + [sym_this] = ACTIONS(2241), + [sym_super] = ACTIONS(2241), + [sym_true] = ACTIONS(2241), + [sym_false] = ACTIONS(2241), + [sym_null] = ACTIONS(2241), + [sym_undefined] = ACTIONS(2241), + [anon_sym_AT] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_readonly] = ACTIONS(2241), + [anon_sym_get] = ACTIONS(2241), + [anon_sym_set] = ACTIONS(2241), + [anon_sym_declare] = ACTIONS(2241), + [anon_sym_public] = ACTIONS(2241), + [anon_sym_private] = ACTIONS(2241), + [anon_sym_protected] = ACTIONS(2241), + [anon_sym_override] = ACTIONS(2241), + [anon_sym_module] = ACTIONS(2241), + [anon_sym_any] = ACTIONS(2241), + [anon_sym_number] = ACTIONS(2241), + [anon_sym_boolean] = ACTIONS(2241), + [anon_sym_string] = ACTIONS(2241), + [anon_sym_symbol] = ACTIONS(2241), + [anon_sym_object] = ACTIONS(2241), + [anon_sym_abstract] = ACTIONS(2241), + [anon_sym_satisfies] = ACTIONS(2243), + [anon_sym_interface] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [sym__automatic_semicolon] = ACTIONS(2245), + [sym__ternary_qmark] = ACTIONS(2247), + [sym_html_comment] = ACTIONS(5), + }, + [338] = { + [sym_comment] = STATE(338), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_COMMA] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_in] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_case] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_QMARK_DOT] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT_GT] = ACTIONS(2067), + [anon_sym_GT_GT_GT] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_STAR_STAR] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_QMARK_QMARK] = ACTIONS(2067), + [anon_sym_instanceof] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_satisfies] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [sym__automatic_semicolon] = ACTIONS(2249), + [sym__ternary_qmark] = ACTIONS(2095), + [sym_html_comment] = ACTIONS(5), + }, + [339] = { + [sym_comment] = STATE(339), [sym_identifier] = ACTIONS(2251), [anon_sym_export] = ACTIONS(2251), [anon_sym_STAR] = ACTIONS(2251), @@ -78579,864 +78160,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2253), [sym_html_comment] = ACTIONS(5), }, - [341] = { - [sym_statement_block] = STATE(382), - [sym_comment] = STATE(341), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_default] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2097), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_case] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(2255), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_STAR_STAR] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_QMARK_QMARK] = ACTIONS(2055), - [anon_sym_instanceof] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_satisfies] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [sym__automatic_semicolon] = ACTIONS(2059), - [sym__ternary_qmark] = ACTIONS(2059), - [sym_html_comment] = ACTIONS(5), - }, - [342] = { - [sym_comment] = STATE(342), - [sym_identifier] = ACTIONS(2257), - [anon_sym_export] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2259), - [anon_sym_default] = ACTIONS(2257), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_as] = ACTIONS(2259), - [anon_sym_namespace] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [anon_sym_COMMA] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_typeof] = ACTIONS(2257), - [anon_sym_import] = ACTIONS(2257), - [anon_sym_with] = ACTIONS(2257), - [anon_sym_var] = ACTIONS(2257), - [anon_sym_let] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2257), - [anon_sym_else] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_switch] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_in] = ACTIONS(2259), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_debugger] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_throw] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2257), - [anon_sym_case] = ACTIONS(2257), - [anon_sym_yield] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_LTtemplate_GT] = ACTIONS(2257), - [anon_sym_GT] = ACTIONS(2259), - [anon_sym_DOT] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2257), - [anon_sym_SQUOTE] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_async] = ACTIONS(2257), - [anon_sym_function] = ACTIONS(2257), - [anon_sym_QMARK_DOT] = ACTIONS(2259), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_using] = ACTIONS(2257), - [anon_sym_AMP_AMP] = ACTIONS(2259), - [anon_sym_PIPE_PIPE] = ACTIONS(2259), - [anon_sym_GT_GT] = ACTIONS(2259), - [anon_sym_GT_GT_GT] = ACTIONS(2259), - [anon_sym_LT_LT] = ACTIONS(2259), - [anon_sym_AMP] = ACTIONS(2259), - [anon_sym_CARET] = ACTIONS(2259), - [anon_sym_PIPE] = ACTIONS(2259), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_SLASH] = ACTIONS(2257), - [anon_sym_PERCENT] = ACTIONS(2259), - [anon_sym_STAR_STAR] = ACTIONS(2259), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_LT_EQ] = ACTIONS(2259), - [anon_sym_EQ_EQ] = ACTIONS(2259), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2259), - [anon_sym_BANG_EQ] = ACTIONS(2259), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2259), - [anon_sym_GT_EQ] = ACTIONS(2259), - [anon_sym_QMARK_QMARK] = ACTIONS(2259), - [anon_sym_instanceof] = ACTIONS(2259), - [anon_sym_TILDE] = ACTIONS(2257), - [anon_sym_void] = ACTIONS(2257), - [anon_sym_delete] = ACTIONS(2257), - [anon_sym_PLUS_PLUS] = ACTIONS(2257), - [anon_sym_DASH_DASH] = ACTIONS(2257), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2257), - [sym_number] = ACTIONS(2257), - [sym_private_property_identifier] = ACTIONS(2257), - [sym_this] = ACTIONS(2257), - [sym_super] = ACTIONS(2257), - [sym_true] = ACTIONS(2257), - [sym_false] = ACTIONS(2257), - [sym_null] = ACTIONS(2257), - [sym_undefined] = ACTIONS(2257), - [anon_sym_AT] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_readonly] = ACTIONS(2257), - [anon_sym_get] = ACTIONS(2257), - [anon_sym_set] = ACTIONS(2257), - [anon_sym_declare] = ACTIONS(2257), - [anon_sym_public] = ACTIONS(2257), - [anon_sym_private] = ACTIONS(2257), - [anon_sym_protected] = ACTIONS(2257), - [anon_sym_override] = ACTIONS(2257), - [anon_sym_module] = ACTIONS(2257), - [anon_sym_any] = ACTIONS(2257), - [anon_sym_number] = ACTIONS(2257), - [anon_sym_boolean] = ACTIONS(2257), - [anon_sym_string] = ACTIONS(2257), - [anon_sym_symbol] = ACTIONS(2257), - [anon_sym_object] = ACTIONS(2257), - [anon_sym_abstract] = ACTIONS(2257), - [anon_sym_satisfies] = ACTIONS(2259), - [anon_sym_interface] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [sym__automatic_semicolon] = ACTIONS(2261), - [sym__ternary_qmark] = ACTIONS(2263), - [sym_html_comment] = ACTIONS(5), - }, - [343] = { - [sym_statement_block] = STATE(412), - [sym_comment] = STATE(343), - [ts_builtin_sym_end] = ACTIONS(2059), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2193), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_else] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_STAR_STAR] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_QMARK_QMARK] = ACTIONS(2055), - [anon_sym_instanceof] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_satisfies] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [sym__automatic_semicolon] = ACTIONS(2059), - [sym__ternary_qmark] = ACTIONS(2059), - [sym_html_comment] = ACTIONS(5), - }, - [344] = { - [sym_comment] = STATE(344), - [ts_builtin_sym_end] = ACTIONS(2267), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2215), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2215), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_COMMA] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_typeof] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_else] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_in] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_debugger] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LTtemplate_GT] = ACTIONS(2213), - [anon_sym_GT] = ACTIONS(2215), - [anon_sym_DOT] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_QMARK_DOT] = ACTIONS(2215), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [anon_sym_AMP_AMP] = ACTIONS(2215), - [anon_sym_PIPE_PIPE] = ACTIONS(2215), - [anon_sym_GT_GT] = ACTIONS(2215), - [anon_sym_GT_GT_GT] = ACTIONS(2215), - [anon_sym_LT_LT] = ACTIONS(2215), - [anon_sym_AMP] = ACTIONS(2215), - [anon_sym_CARET] = ACTIONS(2215), - [anon_sym_PIPE] = ACTIONS(2215), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_PERCENT] = ACTIONS(2215), - [anon_sym_STAR_STAR] = ACTIONS(2215), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_LT_EQ] = ACTIONS(2215), - [anon_sym_EQ_EQ] = ACTIONS(2215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2215), - [anon_sym_GT_EQ] = ACTIONS(2215), - [anon_sym_QMARK_QMARK] = ACTIONS(2215), - [anon_sym_instanceof] = ACTIONS(2215), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_delete] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_number] = ACTIONS(2213), - [sym_private_property_identifier] = ACTIONS(2213), - [sym_this] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_null] = ACTIONS(2213), - [sym_undefined] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_readonly] = ACTIONS(2213), - [anon_sym_get] = ACTIONS(2213), - [anon_sym_set] = ACTIONS(2213), - [anon_sym_declare] = ACTIONS(2213), - [anon_sym_public] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_any] = ACTIONS(2213), - [anon_sym_number] = ACTIONS(2213), - [anon_sym_boolean] = ACTIONS(2213), - [anon_sym_string] = ACTIONS(2213), - [anon_sym_symbol] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_satisfies] = ACTIONS(2215), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2269), - [sym__ternary_qmark] = ACTIONS(2219), - [sym_html_comment] = ACTIONS(5), - }, - [345] = { - [sym_comment] = STATE(345), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_default] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2169), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_COMMA] = ACTIONS(2169), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_in] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_case] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_GT] = ACTIONS(2169), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_QMARK_DOT] = ACTIONS(2169), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_AMP_AMP] = ACTIONS(2169), - [anon_sym_PIPE_PIPE] = ACTIONS(2169), - [anon_sym_GT_GT] = ACTIONS(2169), - [anon_sym_GT_GT_GT] = ACTIONS(2169), - [anon_sym_LT_LT] = ACTIONS(2169), - [anon_sym_AMP] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2169), - [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_PERCENT] = ACTIONS(2169), - [anon_sym_STAR_STAR] = ACTIONS(2169), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_LT_EQ] = ACTIONS(2169), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2169), - [anon_sym_GT_EQ] = ACTIONS(2169), - [anon_sym_QMARK_QMARK] = ACTIONS(2169), - [anon_sym_instanceof] = ACTIONS(2169), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_satisfies] = ACTIONS(2169), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2171), - [sym__ternary_qmark] = ACTIONS(2171), - [sym_html_comment] = ACTIONS(5), - }, - [346] = { - [sym_import] = STATE(4275), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2920), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(346), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym__type_query_member_expression] = STATE(3745), - [sym__type_query_subscript_expression] = STATE(3744), - [sym__type_query_call_expression] = STATE(3813), - [sym__type_query_instantiation_expression] = STATE(3926), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2271), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), - [sym_html_comment] = ACTIONS(5), - }, - [347] = { - [sym_comment] = STATE(347), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_STAR_STAR] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_QMARK_QMARK] = ACTIONS(2093), - [anon_sym_instanceof] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_satisfies] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(2095), - [sym__ternary_qmark] = ACTIONS(2095), + [340] = { + [sym_comment] = STATE(340), + [sym_identifier] = ACTIONS(2255), + [anon_sym_export] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_default] = ACTIONS(2255), + [anon_sym_type] = ACTIONS(2255), + [anon_sym_as] = ACTIONS(2257), + [anon_sym_namespace] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_COMMA] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_typeof] = ACTIONS(2255), + [anon_sym_import] = ACTIONS(2255), + [anon_sym_with] = ACTIONS(2255), + [anon_sym_var] = ACTIONS(2255), + [anon_sym_let] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_else] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_switch] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2255), + [anon_sym_in] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2255), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_try] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_debugger] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_case] = ACTIONS(2255), + [anon_sym_yield] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_LTtemplate_GT] = ACTIONS(2255), + [anon_sym_GT] = ACTIONS(2257), + [anon_sym_DOT] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2255), + [anon_sym_SQUOTE] = ACTIONS(2255), + [anon_sym_class] = ACTIONS(2255), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2255), + [anon_sym_QMARK_DOT] = ACTIONS(2257), + [anon_sym_new] = ACTIONS(2255), + [anon_sym_using] = ACTIONS(2255), + [anon_sym_AMP_AMP] = ACTIONS(2257), + [anon_sym_PIPE_PIPE] = ACTIONS(2257), + [anon_sym_GT_GT] = ACTIONS(2257), + [anon_sym_GT_GT_GT] = ACTIONS(2257), + [anon_sym_LT_LT] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_PIPE] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(2255), + [anon_sym_PERCENT] = ACTIONS(2257), + [anon_sym_STAR_STAR] = ACTIONS(2257), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_LT_EQ] = ACTIONS(2257), + [anon_sym_EQ_EQ] = ACTIONS(2257), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2257), + [anon_sym_BANG_EQ] = ACTIONS(2257), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2257), + [anon_sym_GT_EQ] = ACTIONS(2257), + [anon_sym_QMARK_QMARK] = ACTIONS(2257), + [anon_sym_instanceof] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_void] = ACTIONS(2255), + [anon_sym_delete] = ACTIONS(2255), + [anon_sym_PLUS_PLUS] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2255), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2255), + [sym_number] = ACTIONS(2255), + [sym_private_property_identifier] = ACTIONS(2255), + [sym_this] = ACTIONS(2255), + [sym_super] = ACTIONS(2255), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), + [sym_null] = ACTIONS(2255), + [sym_undefined] = ACTIONS(2255), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_readonly] = ACTIONS(2255), + [anon_sym_get] = ACTIONS(2255), + [anon_sym_set] = ACTIONS(2255), + [anon_sym_declare] = ACTIONS(2255), + [anon_sym_public] = ACTIONS(2255), + [anon_sym_private] = ACTIONS(2255), + [anon_sym_protected] = ACTIONS(2255), + [anon_sym_override] = ACTIONS(2255), + [anon_sym_module] = ACTIONS(2255), + [anon_sym_any] = ACTIONS(2255), + [anon_sym_number] = ACTIONS(2255), + [anon_sym_boolean] = ACTIONS(2255), + [anon_sym_string] = ACTIONS(2255), + [anon_sym_symbol] = ACTIONS(2255), + [anon_sym_object] = ACTIONS(2255), + [anon_sym_abstract] = ACTIONS(2255), + [anon_sym_satisfies] = ACTIONS(2257), + [anon_sym_interface] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [sym__automatic_semicolon] = ACTIONS(2259), + [sym__ternary_qmark] = ACTIONS(2261), [sym_html_comment] = ACTIONS(5), }, - [348] = { - [sym_import] = STATE(4318), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2464), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(348), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym__type_query_member_expression] = STATE(3745), - [sym__type_query_subscript_expression] = STATE(3744), - [sym__type_query_call_expression] = STATE(3813), - [sym__type_query_instantiation_expression] = STATE(3926), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2273), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [341] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2681), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_spread_element] = STATE(6300), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(341), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [aux_sym_array_repeat1] = STATE(6299), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(2077), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_RPAREN] = ACTIONS(2263), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2081), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -79444,987 +78364,439 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), - [sym_html_comment] = ACTIONS(5), - }, - [349] = { - [sym_comment] = STATE(349), - [ts_builtin_sym_end] = ACTIONS(2079), - [sym_identifier] = ACTIONS(2077), - [anon_sym_export] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_as] = ACTIONS(2077), - [anon_sym_namespace] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(2077), - [anon_sym_import] = ACTIONS(2077), - [anon_sym_with] = ACTIONS(2077), - [anon_sym_var] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_else] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_switch] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_await] = ACTIONS(2077), - [anon_sym_in] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_debugger] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_throw] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LTtemplate_GT] = ACTIONS(2077), - [anon_sym_GT] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_class] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_QMARK_DOT] = ACTIONS(2077), - [anon_sym_new] = ACTIONS(2077), - [anon_sym_using] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2077), - [anon_sym_GT_GT_GT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2077), - [anon_sym_CARET] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2077), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2077), - [anon_sym_STAR_STAR] = ACTIONS(2077), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2077), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_QMARK_QMARK] = ACTIONS(2077), - [anon_sym_instanceof] = ACTIONS(2077), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_void] = ACTIONS(2077), - [anon_sym_delete] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2077), - [sym_number] = ACTIONS(2077), - [sym_private_property_identifier] = ACTIONS(2077), - [sym_this] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_true] = ACTIONS(2077), - [sym_false] = ACTIONS(2077), - [sym_null] = ACTIONS(2077), - [sym_undefined] = ACTIONS(2077), - [anon_sym_AT] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_readonly] = ACTIONS(2077), - [anon_sym_get] = ACTIONS(2077), - [anon_sym_set] = ACTIONS(2077), - [anon_sym_declare] = ACTIONS(2077), - [anon_sym_public] = ACTIONS(2077), - [anon_sym_private] = ACTIONS(2077), - [anon_sym_protected] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2077), - [anon_sym_module] = ACTIONS(2077), - [anon_sym_any] = ACTIONS(2077), - [anon_sym_number] = ACTIONS(2077), - [anon_sym_boolean] = ACTIONS(2077), - [anon_sym_string] = ACTIONS(2077), - [anon_sym_symbol] = ACTIONS(2077), - [anon_sym_object] = ACTIONS(2077), - [anon_sym_abstract] = ACTIONS(2077), - [anon_sym_satisfies] = ACTIONS(2077), - [anon_sym_interface] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), - [sym__automatic_semicolon] = ACTIONS(2079), - [sym__ternary_qmark] = ACTIONS(2079), - [sym_html_comment] = ACTIONS(5), - }, - [350] = { - [sym_comment] = STATE(350), - [ts_builtin_sym_end] = ACTIONS(2275), - [sym_identifier] = ACTIONS(2135), - [anon_sym_export] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_namespace] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_COMMA] = ACTIONS(2137), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_typeof] = ACTIONS(2135), - [anon_sym_import] = ACTIONS(2135), - [anon_sym_with] = ACTIONS(2135), - [anon_sym_var] = ACTIONS(2135), - [anon_sym_let] = ACTIONS(2135), - [anon_sym_const] = ACTIONS(2135), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_else] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_switch] = ACTIONS(2135), - [anon_sym_for] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2135), - [anon_sym_in] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2135), - [anon_sym_do] = ACTIONS(2135), - [anon_sym_try] = ACTIONS(2135), - [anon_sym_break] = ACTIONS(2135), - [anon_sym_continue] = ACTIONS(2135), - [anon_sym_debugger] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2135), - [anon_sym_throw] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_yield] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_LTtemplate_GT] = ACTIONS(2135), - [anon_sym_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_class] = ACTIONS(2135), - [anon_sym_async] = ACTIONS(2135), - [anon_sym_function] = ACTIONS(2135), - [anon_sym_QMARK_DOT] = ACTIONS(2137), - [anon_sym_new] = ACTIONS(2135), - [anon_sym_using] = ACTIONS(2135), - [anon_sym_AMP_AMP] = ACTIONS(2137), - [anon_sym_PIPE_PIPE] = ACTIONS(2137), - [anon_sym_GT_GT] = ACTIONS(2137), - [anon_sym_GT_GT_GT] = ACTIONS(2137), - [anon_sym_LT_LT] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_PIPE] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_SLASH] = ACTIONS(2135), - [anon_sym_PERCENT] = ACTIONS(2137), - [anon_sym_STAR_STAR] = ACTIONS(2137), - [anon_sym_LT] = ACTIONS(2135), - [anon_sym_LT_EQ] = ACTIONS(2137), - [anon_sym_EQ_EQ] = ACTIONS(2137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2137), - [anon_sym_BANG_EQ] = ACTIONS(2137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2137), - [anon_sym_GT_EQ] = ACTIONS(2137), - [anon_sym_QMARK_QMARK] = ACTIONS(2137), - [anon_sym_instanceof] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_void] = ACTIONS(2135), - [anon_sym_delete] = ACTIONS(2135), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2135), - [sym_number] = ACTIONS(2135), - [sym_private_property_identifier] = ACTIONS(2135), - [sym_this] = ACTIONS(2135), - [sym_super] = ACTIONS(2135), - [sym_true] = ACTIONS(2135), - [sym_false] = ACTIONS(2135), - [sym_null] = ACTIONS(2135), - [sym_undefined] = ACTIONS(2135), - [anon_sym_AT] = ACTIONS(2135), - [anon_sym_static] = ACTIONS(2135), - [anon_sym_readonly] = ACTIONS(2135), - [anon_sym_get] = ACTIONS(2135), - [anon_sym_set] = ACTIONS(2135), - [anon_sym_declare] = ACTIONS(2135), - [anon_sym_public] = ACTIONS(2135), - [anon_sym_private] = ACTIONS(2135), - [anon_sym_protected] = ACTIONS(2135), - [anon_sym_override] = ACTIONS(2135), - [anon_sym_module] = ACTIONS(2135), - [anon_sym_any] = ACTIONS(2135), - [anon_sym_number] = ACTIONS(2135), - [anon_sym_boolean] = ACTIONS(2135), - [anon_sym_string] = ACTIONS(2135), - [anon_sym_symbol] = ACTIONS(2135), - [anon_sym_object] = ACTIONS(2135), - [anon_sym_abstract] = ACTIONS(2135), - [anon_sym_satisfies] = ACTIONS(2137), - [anon_sym_interface] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(2135), - [sym__automatic_semicolon] = ACTIONS(2277), - [sym__ternary_qmark] = ACTIONS(2141), - [sym_html_comment] = ACTIONS(5), - }, - [351] = { - [sym_comment] = STATE(351), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_STAR_STAR] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_QMARK_QMARK] = ACTIONS(2093), - [anon_sym_instanceof] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_satisfies] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(2095), - [sym__ternary_qmark] = ACTIONS(2095), - [sym_html_comment] = ACTIONS(5), - }, - [352] = { - [sym_comment] = STATE(352), - [ts_builtin_sym_end] = ACTIONS(2279), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2149), - [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_as] = ACTIONS(2151), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_COMMA] = ACTIONS(2151), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_typeof] = ACTIONS(2149), - [anon_sym_import] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(2149), - [anon_sym_var] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_else] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_in] = ACTIONS(2151), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_debugger] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LTtemplate_GT] = ACTIONS(2149), - [anon_sym_GT] = ACTIONS(2151), - [anon_sym_DOT] = ACTIONS(2151), - [anon_sym_DQUOTE] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_QMARK_DOT] = ACTIONS(2151), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [anon_sym_AMP_AMP] = ACTIONS(2151), - [anon_sym_PIPE_PIPE] = ACTIONS(2151), - [anon_sym_GT_GT] = ACTIONS(2151), - [anon_sym_GT_GT_GT] = ACTIONS(2151), - [anon_sym_LT_LT] = ACTIONS(2151), - [anon_sym_AMP] = ACTIONS(2151), - [anon_sym_CARET] = ACTIONS(2151), - [anon_sym_PIPE] = ACTIONS(2151), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_PERCENT] = ACTIONS(2151), - [anon_sym_STAR_STAR] = ACTIONS(2151), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_LT_EQ] = ACTIONS(2151), - [anon_sym_EQ_EQ] = ACTIONS(2151), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2151), - [anon_sym_BANG_EQ] = ACTIONS(2151), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2151), - [anon_sym_GT_EQ] = ACTIONS(2151), - [anon_sym_QMARK_QMARK] = ACTIONS(2151), - [anon_sym_instanceof] = ACTIONS(2151), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_void] = ACTIONS(2149), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2149), - [sym_number] = ACTIONS(2149), - [sym_private_property_identifier] = ACTIONS(2149), - [sym_this] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_null] = ACTIONS(2149), - [sym_undefined] = ACTIONS(2149), - [anon_sym_AT] = ACTIONS(2149), - [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_abstract] = ACTIONS(2149), - [anon_sym_satisfies] = ACTIONS(2151), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [sym__automatic_semicolon] = ACTIONS(2281), - [sym__ternary_qmark] = ACTIONS(2155), - [sym_html_comment] = ACTIONS(5), - }, - [353] = { - [sym_comment] = STATE(353), - [ts_builtin_sym_end] = ACTIONS(2283), - [sym_identifier] = ACTIONS(2229), - [anon_sym_export] = ACTIONS(2229), - [anon_sym_STAR] = ACTIONS(2231), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2231), - [anon_sym_namespace] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_COMMA] = ACTIONS(2231), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_typeof] = ACTIONS(2229), - [anon_sym_import] = ACTIONS(2229), - [anon_sym_with] = ACTIONS(2229), - [anon_sym_var] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_else] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_switch] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_await] = ACTIONS(2229), - [anon_sym_in] = ACTIONS(2231), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_debugger] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_throw] = ACTIONS(2229), - [anon_sym_SEMI] = ACTIONS(2229), - [anon_sym_yield] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2229), - [anon_sym_LTtemplate_GT] = ACTIONS(2229), - [anon_sym_GT] = ACTIONS(2231), - [anon_sym_DOT] = ACTIONS(2231), - [anon_sym_DQUOTE] = ACTIONS(2229), - [anon_sym_SQUOTE] = ACTIONS(2229), - [anon_sym_class] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_function] = ACTIONS(2229), - [anon_sym_QMARK_DOT] = ACTIONS(2231), - [anon_sym_new] = ACTIONS(2229), - [anon_sym_using] = ACTIONS(2229), - [anon_sym_AMP_AMP] = ACTIONS(2231), - [anon_sym_PIPE_PIPE] = ACTIONS(2231), - [anon_sym_GT_GT] = ACTIONS(2231), - [anon_sym_GT_GT_GT] = ACTIONS(2231), - [anon_sym_LT_LT] = ACTIONS(2231), - [anon_sym_AMP] = ACTIONS(2231), - [anon_sym_CARET] = ACTIONS(2231), - [anon_sym_PIPE] = ACTIONS(2231), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_SLASH] = ACTIONS(2229), - [anon_sym_PERCENT] = ACTIONS(2231), - [anon_sym_STAR_STAR] = ACTIONS(2231), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_LT_EQ] = ACTIONS(2231), - [anon_sym_EQ_EQ] = ACTIONS(2231), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2231), - [anon_sym_BANG_EQ] = ACTIONS(2231), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2231), - [anon_sym_GT_EQ] = ACTIONS(2231), - [anon_sym_QMARK_QMARK] = ACTIONS(2231), - [anon_sym_instanceof] = ACTIONS(2231), - [anon_sym_TILDE] = ACTIONS(2229), - [anon_sym_void] = ACTIONS(2229), - [anon_sym_delete] = ACTIONS(2229), - [anon_sym_PLUS_PLUS] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2229), - [sym_number] = ACTIONS(2229), - [sym_private_property_identifier] = ACTIONS(2229), - [sym_this] = ACTIONS(2229), - [sym_super] = ACTIONS(2229), - [sym_true] = ACTIONS(2229), - [sym_false] = ACTIONS(2229), - [sym_null] = ACTIONS(2229), - [sym_undefined] = ACTIONS(2229), - [anon_sym_AT] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_readonly] = ACTIONS(2229), - [anon_sym_get] = ACTIONS(2229), - [anon_sym_set] = ACTIONS(2229), - [anon_sym_declare] = ACTIONS(2229), - [anon_sym_public] = ACTIONS(2229), - [anon_sym_private] = ACTIONS(2229), - [anon_sym_protected] = ACTIONS(2229), - [anon_sym_override] = ACTIONS(2229), - [anon_sym_module] = ACTIONS(2229), - [anon_sym_any] = ACTIONS(2229), - [anon_sym_number] = ACTIONS(2229), - [anon_sym_boolean] = ACTIONS(2229), - [anon_sym_string] = ACTIONS(2229), - [anon_sym_symbol] = ACTIONS(2229), - [anon_sym_object] = ACTIONS(2229), - [anon_sym_abstract] = ACTIONS(2229), - [anon_sym_satisfies] = ACTIONS(2231), - [anon_sym_interface] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [sym__automatic_semicolon] = ACTIONS(2285), - [sym__ternary_qmark] = ACTIONS(2235), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [354] = { - [sym_import] = STATE(4369), - [sym_expression_statement] = STATE(466), - [sym_empty_statement] = STATE(466), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2679), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(7092), - [sym_string] = STATE(3113), - [sym_comment] = STATE(354), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [342] = { + [sym_comment] = STATE(342), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_as] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_COMMA] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_in] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_GT] = ACTIONS(2111), + [anon_sym_DOT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_QMARK_DOT] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_AMP_AMP] = ACTIONS(2111), + [anon_sym_PIPE_PIPE] = ACTIONS(2111), + [anon_sym_GT_GT] = ACTIONS(2111), + [anon_sym_GT_GT_GT] = ACTIONS(2111), + [anon_sym_LT_LT] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2111), + [anon_sym_CARET] = ACTIONS(2111), + [anon_sym_PIPE] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_PERCENT] = ACTIONS(2111), + [anon_sym_STAR_STAR] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_LT_EQ] = ACTIONS(2111), + [anon_sym_EQ_EQ] = ACTIONS(2111), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2111), + [anon_sym_BANG_EQ] = ACTIONS(2111), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2111), + [anon_sym_GT_EQ] = ACTIONS(2111), + [anon_sym_QMARK_QMARK] = ACTIONS(2111), + [anon_sym_instanceof] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_satisfies] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(2115), + [sym__ternary_qmark] = ACTIONS(2115), [sym_html_comment] = ACTIONS(5), }, - [355] = { - [sym_comment] = STATE(355), - [ts_builtin_sym_end] = ACTIONS(2147), - [sym_identifier] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_as] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_typeof] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_var] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_else] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_in] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LTtemplate_GT] = ACTIONS(2145), - [anon_sym_GT] = ACTIONS(2145), - [anon_sym_DOT] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_QMARK_DOT] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [anon_sym_AMP_AMP] = ACTIONS(2145), - [anon_sym_PIPE_PIPE] = ACTIONS(2145), - [anon_sym_GT_GT] = ACTIONS(2145), - [anon_sym_GT_GT_GT] = ACTIONS(2145), - [anon_sym_LT_LT] = ACTIONS(2145), - [anon_sym_AMP] = ACTIONS(2145), - [anon_sym_CARET] = ACTIONS(2145), - [anon_sym_PIPE] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), - [anon_sym_PERCENT] = ACTIONS(2145), - [anon_sym_STAR_STAR] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_LT_EQ] = ACTIONS(2145), - [anon_sym_EQ_EQ] = ACTIONS(2145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2145), - [anon_sym_BANG_EQ] = ACTIONS(2145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2145), - [anon_sym_GT_EQ] = ACTIONS(2145), - [anon_sym_QMARK_QMARK] = ACTIONS(2145), - [anon_sym_instanceof] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_delete] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2145), - [sym_number] = ACTIONS(2145), - [sym_private_property_identifier] = ACTIONS(2145), - [sym_this] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2145), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_declare] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_protected] = ACTIONS(2145), - [anon_sym_override] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2145), - [anon_sym_any] = ACTIONS(2145), - [anon_sym_number] = ACTIONS(2145), - [anon_sym_boolean] = ACTIONS(2145), - [anon_sym_string] = ACTIONS(2145), - [anon_sym_symbol] = ACTIONS(2145), - [anon_sym_object] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_satisfies] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [sym__automatic_semicolon] = ACTIONS(2147), - [sym__ternary_qmark] = ACTIONS(2147), + [343] = { + [sym_statement_block] = STATE(385), + [sym_comment] = STATE(343), + [ts_builtin_sym_end] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2091), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_STAR_STAR] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), + [anon_sym_QMARK_QMARK] = ACTIONS(2057), + [anon_sym_instanceof] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_satisfies] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(2061), + [sym__ternary_qmark] = ACTIONS(2061), [sym_html_comment] = ACTIONS(5), }, - [356] = { - [sym_import] = STATE(4369), - [sym_expression_statement] = STATE(464), - [sym_empty_statement] = STATE(464), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2679), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(7092), - [sym_string] = STATE(3113), - [sym_comment] = STATE(356), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [344] = { + [sym_comment] = STATE(344), + [sym_identifier] = ACTIONS(2241), + [anon_sym_export] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(2243), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_as] = ACTIONS(2243), + [anon_sym_namespace] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2241), + [anon_sym_COMMA] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_typeof] = ACTIONS(2241), + [anon_sym_import] = ACTIONS(2241), + [anon_sym_with] = ACTIONS(2241), + [anon_sym_var] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_switch] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_await] = ACTIONS(2241), + [anon_sym_in] = ACTIONS(2243), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_do] = ACTIONS(2241), + [anon_sym_try] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_debugger] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_throw] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(2241), + [anon_sym_case] = ACTIONS(2241), + [anon_sym_yield] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_LTtemplate_GT] = ACTIONS(2241), + [anon_sym_GT] = ACTIONS(2243), + [anon_sym_DOT] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_class] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_function] = ACTIONS(2241), + [anon_sym_QMARK_DOT] = ACTIONS(2243), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_using] = ACTIONS(2241), + [anon_sym_AMP_AMP] = ACTIONS(2243), + [anon_sym_PIPE_PIPE] = ACTIONS(2243), + [anon_sym_GT_GT] = ACTIONS(2243), + [anon_sym_GT_GT_GT] = ACTIONS(2243), + [anon_sym_LT_LT] = ACTIONS(2243), + [anon_sym_AMP] = ACTIONS(2243), + [anon_sym_CARET] = ACTIONS(2243), + [anon_sym_PIPE] = ACTIONS(2243), + [anon_sym_PLUS] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_SLASH] = ACTIONS(2241), + [anon_sym_PERCENT] = ACTIONS(2243), + [anon_sym_STAR_STAR] = ACTIONS(2243), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_LT_EQ] = ACTIONS(2243), + [anon_sym_EQ_EQ] = ACTIONS(2243), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2243), + [anon_sym_BANG_EQ] = ACTIONS(2243), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2243), + [anon_sym_GT_EQ] = ACTIONS(2243), + [anon_sym_QMARK_QMARK] = ACTIONS(2243), + [anon_sym_instanceof] = ACTIONS(2243), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_void] = ACTIONS(2241), + [anon_sym_delete] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2241), + [sym_number] = ACTIONS(2241), + [sym_private_property_identifier] = ACTIONS(2241), + [sym_this] = ACTIONS(2241), + [sym_super] = ACTIONS(2241), + [sym_true] = ACTIONS(2241), + [sym_false] = ACTIONS(2241), + [sym_null] = ACTIONS(2241), + [sym_undefined] = ACTIONS(2241), + [anon_sym_AT] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_readonly] = ACTIONS(2241), + [anon_sym_get] = ACTIONS(2241), + [anon_sym_set] = ACTIONS(2241), + [anon_sym_declare] = ACTIONS(2241), + [anon_sym_public] = ACTIONS(2241), + [anon_sym_private] = ACTIONS(2241), + [anon_sym_protected] = ACTIONS(2241), + [anon_sym_override] = ACTIONS(2241), + [anon_sym_module] = ACTIONS(2241), + [anon_sym_any] = ACTIONS(2241), + [anon_sym_number] = ACTIONS(2241), + [anon_sym_boolean] = ACTIONS(2241), + [anon_sym_string] = ACTIONS(2241), + [anon_sym_symbol] = ACTIONS(2241), + [anon_sym_object] = ACTIONS(2241), + [anon_sym_abstract] = ACTIONS(2241), + [anon_sym_satisfies] = ACTIONS(2243), + [anon_sym_interface] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [sym__automatic_semicolon] = ACTIONS(2267), + [sym__ternary_qmark] = ACTIONS(2247), [sym_html_comment] = ACTIONS(5), }, - [357] = { - [sym_import] = STATE(4275), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3373), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(357), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym__type_query_member_expression] = STATE(3745), - [sym__type_query_subscript_expression] = STATE(3744), - [sym__type_query_call_expression] = STATE(3813), - [sym__type_query_instantiation_expression] = STATE(3926), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2287), + [345] = { + [sym_import] = STATE(4242), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3209), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(345), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym__type_query_member_expression] = STATE(3599), + [sym__type_query_subscript_expression] = STATE(3600), + [sym__type_query_call_expression] = STATE(3656), + [sym__type_query_instantiation_expression] = STATE(3722), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2269), [anon_sym_export] = ACTIONS(1097), [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -80432,7 +78804,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -80452,232 +78824,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, - [358] = { - [sym_comment] = STATE(358), - [ts_builtin_sym_end] = ACTIONS(2289), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_COMMA] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_else] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_in] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_GT] = ACTIONS(2239), - [anon_sym_DOT] = ACTIONS(2239), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_QMARK_DOT] = ACTIONS(2239), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_AMP_AMP] = ACTIONS(2239), - [anon_sym_PIPE_PIPE] = ACTIONS(2239), - [anon_sym_GT_GT] = ACTIONS(2239), - [anon_sym_GT_GT_GT] = ACTIONS(2239), - [anon_sym_LT_LT] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2239), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_PERCENT] = ACTIONS(2239), - [anon_sym_STAR_STAR] = ACTIONS(2239), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_LT_EQ] = ACTIONS(2239), - [anon_sym_EQ_EQ] = ACTIONS(2239), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2239), - [anon_sym_GT_EQ] = ACTIONS(2239), - [anon_sym_QMARK_QMARK] = ACTIONS(2239), - [anon_sym_instanceof] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_satisfies] = ACTIONS(2239), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [sym__automatic_semicolon] = ACTIONS(2291), - [sym__ternary_qmark] = ACTIONS(2243), - [sym_html_comment] = ACTIONS(5), - }, - [359] = { - [sym_comment] = STATE(359), - [sym_identifier] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_STAR] = ACTIONS(2145), - [anon_sym_default] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_as] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_COMMA] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_typeof] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_var] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_in] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_case] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LTtemplate_GT] = ACTIONS(2145), - [anon_sym_GT] = ACTIONS(2145), - [anon_sym_DOT] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_QMARK_DOT] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [anon_sym_AMP_AMP] = ACTIONS(2145), - [anon_sym_PIPE_PIPE] = ACTIONS(2145), - [anon_sym_GT_GT] = ACTIONS(2145), - [anon_sym_GT_GT_GT] = ACTIONS(2145), - [anon_sym_LT_LT] = ACTIONS(2145), - [anon_sym_AMP] = ACTIONS(2145), - [anon_sym_CARET] = ACTIONS(2145), - [anon_sym_PIPE] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), - [anon_sym_PERCENT] = ACTIONS(2145), - [anon_sym_STAR_STAR] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_LT_EQ] = ACTIONS(2145), - [anon_sym_EQ_EQ] = ACTIONS(2145), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2145), - [anon_sym_BANG_EQ] = ACTIONS(2145), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2145), - [anon_sym_GT_EQ] = ACTIONS(2145), - [anon_sym_QMARK_QMARK] = ACTIONS(2145), - [anon_sym_instanceof] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_delete] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2145), - [sym_number] = ACTIONS(2145), - [sym_private_property_identifier] = ACTIONS(2145), - [sym_this] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2145), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_declare] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_protected] = ACTIONS(2145), - [anon_sym_override] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2145), - [anon_sym_any] = ACTIONS(2145), - [anon_sym_number] = ACTIONS(2145), - [anon_sym_boolean] = ACTIONS(2145), - [anon_sym_string] = ACTIONS(2145), - [anon_sym_symbol] = ACTIONS(2145), - [anon_sym_object] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_satisfies] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [sym__automatic_semicolon] = ACTIONS(2147), - [sym__ternary_qmark] = ACTIONS(2147), - [sym_html_comment] = ACTIONS(5), - }, - [360] = { - [sym_comment] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(2223), + [346] = { + [sym_comment] = STATE(346), [sym_identifier] = ACTIONS(2221), [anon_sym_export] = ACTIONS(2221), [anon_sym_STAR] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(2221), [anon_sym_type] = ACTIONS(2221), [anon_sym_as] = ACTIONS(2221), [anon_sym_namespace] = ACTIONS(2221), @@ -80691,7 +78843,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2221), [anon_sym_const] = ACTIONS(2221), [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2221), [anon_sym_if] = ACTIONS(2221), [anon_sym_switch] = ACTIONS(2221), [anon_sym_for] = ACTIONS(2221), @@ -80707,6 +78858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2221), [anon_sym_throw] = ACTIONS(2221), [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_case] = ACTIONS(2221), [anon_sym_yield] = ACTIONS(2221), [anon_sym_LBRACK] = ACTIONS(2221), [anon_sym_LTtemplate_GT] = ACTIONS(2221), @@ -80782,118 +78934,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2223), [sym_html_comment] = ACTIONS(5), }, - [361] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(361), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5041), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_override_modifier] = STATE(441), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(2293), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2295), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), + [347] = { + [sym_comment] = STATE(347), + [sym_identifier] = ACTIONS(2233), + [anon_sym_export] = ACTIONS(2233), + [anon_sym_STAR] = ACTIONS(2233), + [anon_sym_default] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_as] = ACTIONS(2233), + [anon_sym_namespace] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_COMMA] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_typeof] = ACTIONS(2233), + [anon_sym_import] = ACTIONS(2233), + [anon_sym_with] = ACTIONS(2233), + [anon_sym_var] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_switch] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2233), + [anon_sym_await] = ACTIONS(2233), + [anon_sym_in] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_do] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_debugger] = ACTIONS(2233), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_throw] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_case] = ACTIONS(2233), + [anon_sym_yield] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LTtemplate_GT] = ACTIONS(2233), + [anon_sym_GT] = ACTIONS(2233), + [anon_sym_DOT] = ACTIONS(2233), + [anon_sym_DQUOTE] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_class] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_function] = ACTIONS(2233), + [anon_sym_QMARK_DOT] = ACTIONS(2233), + [anon_sym_new] = ACTIONS(2233), + [anon_sym_using] = ACTIONS(2233), + [anon_sym_AMP_AMP] = ACTIONS(2233), + [anon_sym_PIPE_PIPE] = ACTIONS(2233), + [anon_sym_GT_GT] = ACTIONS(2233), + [anon_sym_GT_GT_GT] = ACTIONS(2233), + [anon_sym_LT_LT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2233), + [anon_sym_CARET] = ACTIONS(2233), + [anon_sym_PIPE] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_SLASH] = ACTIONS(2233), + [anon_sym_PERCENT] = ACTIONS(2233), + [anon_sym_STAR_STAR] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_LT_EQ] = ACTIONS(2233), + [anon_sym_EQ_EQ] = ACTIONS(2233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2233), + [anon_sym_BANG_EQ] = ACTIONS(2233), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2233), + [anon_sym_GT_EQ] = ACTIONS(2233), + [anon_sym_QMARK_QMARK] = ACTIONS(2233), + [anon_sym_instanceof] = ACTIONS(2233), + [anon_sym_TILDE] = ACTIONS(2233), + [anon_sym_void] = ACTIONS(2233), + [anon_sym_delete] = ACTIONS(2233), + [anon_sym_PLUS_PLUS] = ACTIONS(2233), + [anon_sym_DASH_DASH] = ACTIONS(2233), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2233), + [sym_number] = ACTIONS(2233), + [sym_private_property_identifier] = ACTIONS(2233), + [sym_this] = ACTIONS(2233), + [sym_super] = ACTIONS(2233), + [sym_true] = ACTIONS(2233), + [sym_false] = ACTIONS(2233), + [sym_null] = ACTIONS(2233), + [sym_undefined] = ACTIONS(2233), + [anon_sym_AT] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_readonly] = ACTIONS(2233), + [anon_sym_get] = ACTIONS(2233), + [anon_sym_set] = ACTIONS(2233), + [anon_sym_declare] = ACTIONS(2233), + [anon_sym_public] = ACTIONS(2233), + [anon_sym_private] = ACTIONS(2233), + [anon_sym_protected] = ACTIONS(2233), + [anon_sym_override] = ACTIONS(2233), + [anon_sym_module] = ACTIONS(2233), + [anon_sym_any] = ACTIONS(2233), + [anon_sym_number] = ACTIONS(2233), + [anon_sym_boolean] = ACTIONS(2233), + [anon_sym_string] = ACTIONS(2233), + [anon_sym_symbol] = ACTIONS(2233), + [anon_sym_object] = ACTIONS(2233), + [anon_sym_abstract] = ACTIONS(2233), + [anon_sym_satisfies] = ACTIONS(2233), + [anon_sym_interface] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), + [sym__automatic_semicolon] = ACTIONS(2235), + [sym__ternary_qmark] = ACTIONS(2235), + [sym_html_comment] = ACTIONS(5), }, - [362] = { - [sym_comment] = STATE(362), + [348] = { + [sym_comment] = STATE(348), + [sym_identifier] = ACTIONS(2237), + [anon_sym_export] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_namespace] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_COMMA] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_with] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_in] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_debugger] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_throw] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_LTtemplate_GT] = ACTIONS(2237), + [anon_sym_GT] = ACTIONS(2237), + [anon_sym_DOT] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_QMARK_DOT] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(2237), + [anon_sym_AMP_AMP] = ACTIONS(2237), + [anon_sym_PIPE_PIPE] = ACTIONS(2237), + [anon_sym_GT_GT] = ACTIONS(2237), + [anon_sym_GT_GT_GT] = ACTIONS(2237), + [anon_sym_LT_LT] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_CARET] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_PERCENT] = ACTIONS(2237), + [anon_sym_STAR_STAR] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_LT_EQ] = ACTIONS(2237), + [anon_sym_EQ_EQ] = ACTIONS(2237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2237), + [anon_sym_BANG_EQ] = ACTIONS(2237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2237), + [anon_sym_GT_EQ] = ACTIONS(2237), + [anon_sym_QMARK_QMARK] = ACTIONS(2237), + [anon_sym_instanceof] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2237), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2237), + [sym_number] = ACTIONS(2237), + [sym_private_property_identifier] = ACTIONS(2237), + [sym_this] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_true] = ACTIONS(2237), + [sym_false] = ACTIONS(2237), + [sym_null] = ACTIONS(2237), + [sym_undefined] = ACTIONS(2237), + [anon_sym_AT] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_readonly] = ACTIONS(2237), + [anon_sym_get] = ACTIONS(2237), + [anon_sym_set] = ACTIONS(2237), + [anon_sym_declare] = ACTIONS(2237), + [anon_sym_public] = ACTIONS(2237), + [anon_sym_private] = ACTIONS(2237), + [anon_sym_protected] = ACTIONS(2237), + [anon_sym_override] = ACTIONS(2237), + [anon_sym_module] = ACTIONS(2237), + [anon_sym_any] = ACTIONS(2237), + [anon_sym_number] = ACTIONS(2237), + [anon_sym_boolean] = ACTIONS(2237), + [anon_sym_string] = ACTIONS(2237), + [anon_sym_symbol] = ACTIONS(2237), + [anon_sym_object] = ACTIONS(2237), + [anon_sym_abstract] = ACTIONS(2237), + [anon_sym_satisfies] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [sym__automatic_semicolon] = ACTIONS(2239), + [sym__ternary_qmark] = ACTIONS(2239), + [sym_html_comment] = ACTIONS(5), + }, + [349] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(6802), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(349), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(6098), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1071), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1081), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(111), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(111), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), + [sym_html_comment] = ACTIONS(5), + }, + [350] = { + [sym_comment] = STATE(350), [sym_identifier] = ACTIONS(2251), [anon_sym_export] = ACTIONS(2251), [anon_sym_STAR] = ACTIONS(2251), @@ -81002,54 +79374,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2253), [sym_html_comment] = ACTIONS(5), }, - [363] = { - [sym_comment] = STATE(363), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), + [351] = { + [sym_comment] = STATE(351), + [ts_builtin_sym_end] = ACTIONS(2271), + [sym_identifier] = ACTIONS(2103), + [anon_sym_export] = ACTIONS(2103), [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2103), [anon_sym_as] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2103), [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(2103), + [anon_sym_import] = ACTIONS(2103), + [anon_sym_with] = ACTIONS(2103), + [anon_sym_var] = ACTIONS(2103), + [anon_sym_let] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_BANG] = ACTIONS(2103), + [anon_sym_else] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2103), + [anon_sym_switch] = ACTIONS(2103), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_await] = ACTIONS(2103), [anon_sym_in] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2103), + [anon_sym_do] = ACTIONS(2103), + [anon_sym_try] = ACTIONS(2103), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2103), + [anon_sym_debugger] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2103), + [anon_sym_throw] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_yield] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_LTtemplate_GT] = ACTIONS(2103), [anon_sym_GT] = ACTIONS(2105), [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_class] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(2103), + [anon_sym_function] = ACTIONS(2103), [anon_sym_QMARK_DOT] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2103), + [anon_sym_using] = ACTIONS(2103), [anon_sym_AMP_AMP] = ACTIONS(2105), [anon_sym_PIPE_PIPE] = ACTIONS(2105), [anon_sym_GT_GT] = ACTIONS(2105), @@ -81058,12 +79430,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2105), [anon_sym_CARET] = ACTIONS(2105), [anon_sym_PIPE] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_SLASH] = ACTIONS(2103), [anon_sym_PERCENT] = ACTIONS(2105), [anon_sym_STAR_STAR] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2103), [anon_sym_LT_EQ] = ACTIONS(2105), [anon_sym_EQ_EQ] = ACTIONS(2105), [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), @@ -81072,754 +79444,644 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2105), [anon_sym_QMARK_QMARK] = ACTIONS(2105), [anon_sym_instanceof] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_void] = ACTIONS(2103), + [anon_sym_delete] = ACTIONS(2103), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2103), + [sym_number] = ACTIONS(2103), + [sym_private_property_identifier] = ACTIONS(2103), + [sym_this] = ACTIONS(2103), + [sym_super] = ACTIONS(2103), + [sym_true] = ACTIONS(2103), + [sym_false] = ACTIONS(2103), + [sym_null] = ACTIONS(2103), + [sym_undefined] = ACTIONS(2103), + [anon_sym_AT] = ACTIONS(2103), + [anon_sym_static] = ACTIONS(2103), + [anon_sym_readonly] = ACTIONS(2103), + [anon_sym_get] = ACTIONS(2103), + [anon_sym_set] = ACTIONS(2103), + [anon_sym_declare] = ACTIONS(2103), + [anon_sym_public] = ACTIONS(2103), + [anon_sym_private] = ACTIONS(2103), + [anon_sym_protected] = ACTIONS(2103), + [anon_sym_override] = ACTIONS(2103), + [anon_sym_module] = ACTIONS(2103), + [anon_sym_any] = ACTIONS(2103), + [anon_sym_number] = ACTIONS(2103), + [anon_sym_boolean] = ACTIONS(2103), + [anon_sym_string] = ACTIONS(2103), + [anon_sym_symbol] = ACTIONS(2103), + [anon_sym_object] = ACTIONS(2103), + [anon_sym_abstract] = ACTIONS(2103), [anon_sym_satisfies] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym__automatic_semicolon] = ACTIONS(2107), - [sym__ternary_qmark] = ACTIONS(2107), - [sym_html_comment] = ACTIONS(5), - }, - [364] = { - [sym_comment] = STATE(364), - [ts_builtin_sym_end] = ACTIONS(2197), - [sym_identifier] = ACTIONS(2195), - [anon_sym_export] = ACTIONS(2195), - [anon_sym_STAR] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_namespace] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_COMMA] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_typeof] = ACTIONS(2195), - [anon_sym_import] = ACTIONS(2195), - [anon_sym_with] = ACTIONS(2195), - [anon_sym_var] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_else] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_switch] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_in] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [anon_sym_do] = ACTIONS(2195), - [anon_sym_try] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_debugger] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_throw] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_yield] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_LTtemplate_GT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), - [anon_sym_DOT] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_class] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_QMARK_DOT] = ACTIONS(2195), - [anon_sym_new] = ACTIONS(2195), - [anon_sym_using] = ACTIONS(2195), - [anon_sym_AMP_AMP] = ACTIONS(2195), - [anon_sym_PIPE_PIPE] = ACTIONS(2195), - [anon_sym_GT_GT] = ACTIONS(2195), - [anon_sym_GT_GT_GT] = ACTIONS(2195), - [anon_sym_LT_LT] = ACTIONS(2195), - [anon_sym_AMP] = ACTIONS(2195), - [anon_sym_CARET] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2195), - [anon_sym_PLUS] = ACTIONS(2195), - [anon_sym_DASH] = ACTIONS(2195), - [anon_sym_SLASH] = ACTIONS(2195), - [anon_sym_PERCENT] = ACTIONS(2195), - [anon_sym_STAR_STAR] = ACTIONS(2195), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_LT_EQ] = ACTIONS(2195), - [anon_sym_EQ_EQ] = ACTIONS(2195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2195), - [anon_sym_BANG_EQ] = ACTIONS(2195), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2195), - [anon_sym_GT_EQ] = ACTIONS(2195), - [anon_sym_QMARK_QMARK] = ACTIONS(2195), - [anon_sym_instanceof] = ACTIONS(2195), - [anon_sym_TILDE] = ACTIONS(2195), - [anon_sym_void] = ACTIONS(2195), - [anon_sym_delete] = ACTIONS(2195), - [anon_sym_PLUS_PLUS] = ACTIONS(2195), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2195), - [sym_number] = ACTIONS(2195), - [sym_private_property_identifier] = ACTIONS(2195), - [sym_this] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_true] = ACTIONS(2195), - [sym_false] = ACTIONS(2195), - [sym_null] = ACTIONS(2195), - [sym_undefined] = ACTIONS(2195), - [anon_sym_AT] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_readonly] = ACTIONS(2195), - [anon_sym_get] = ACTIONS(2195), - [anon_sym_set] = ACTIONS(2195), - [anon_sym_declare] = ACTIONS(2195), - [anon_sym_public] = ACTIONS(2195), - [anon_sym_private] = ACTIONS(2195), - [anon_sym_protected] = ACTIONS(2195), - [anon_sym_override] = ACTIONS(2195), - [anon_sym_module] = ACTIONS(2195), - [anon_sym_any] = ACTIONS(2195), - [anon_sym_number] = ACTIONS(2195), - [anon_sym_boolean] = ACTIONS(2195), - [anon_sym_string] = ACTIONS(2195), - [anon_sym_symbol] = ACTIONS(2195), - [anon_sym_object] = ACTIONS(2195), - [anon_sym_abstract] = ACTIONS(2195), - [anon_sym_satisfies] = ACTIONS(2195), - [anon_sym_interface] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [sym__automatic_semicolon] = ACTIONS(2197), - [sym__ternary_qmark] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2103), + [anon_sym_enum] = ACTIONS(2103), + [sym__automatic_semicolon] = ACTIONS(2273), + [sym__ternary_qmark] = ACTIONS(2109), [sym_html_comment] = ACTIONS(5), }, - [365] = { - [sym_comment] = STATE(365), - [ts_builtin_sym_end] = ACTIONS(2297), - [sym_identifier] = ACTIONS(2117), - [anon_sym_export] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_type] = ACTIONS(2117), - [anon_sym_as] = ACTIONS(2119), - [anon_sym_namespace] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_typeof] = ACTIONS(2117), - [anon_sym_import] = ACTIONS(2117), - [anon_sym_with] = ACTIONS(2117), - [anon_sym_var] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_else] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_switch] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_await] = ACTIONS(2117), - [anon_sym_in] = ACTIONS(2119), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_try] = 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(2117), - [anon_sym_yield] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_LTtemplate_GT] = ACTIONS(2117), - [anon_sym_GT] = ACTIONS(2119), - [anon_sym_DOT] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2117), - [anon_sym_class] = ACTIONS(2117), - [anon_sym_async] = ACTIONS(2117), - [anon_sym_function] = ACTIONS(2117), - [anon_sym_QMARK_DOT] = ACTIONS(2119), - [anon_sym_new] = ACTIONS(2117), - [anon_sym_using] = ACTIONS(2117), - [anon_sym_AMP_AMP] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2119), - [anon_sym_GT_GT] = ACTIONS(2119), - [anon_sym_GT_GT_GT] = ACTIONS(2119), - [anon_sym_LT_LT] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_SLASH] = ACTIONS(2117), - [anon_sym_PERCENT] = ACTIONS(2119), - [anon_sym_STAR_STAR] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_LT_EQ] = ACTIONS(2119), - [anon_sym_EQ_EQ] = ACTIONS(2119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2119), - [anon_sym_BANG_EQ] = ACTIONS(2119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2119), - [anon_sym_GT_EQ] = ACTIONS(2119), - [anon_sym_QMARK_QMARK] = ACTIONS(2119), - [anon_sym_instanceof] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_void] = ACTIONS(2117), - [anon_sym_delete] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2117), - [sym_number] = ACTIONS(2117), - [sym_private_property_identifier] = ACTIONS(2117), - [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(2117), - [anon_sym_static] = ACTIONS(2117), - [anon_sym_readonly] = ACTIONS(2117), - [anon_sym_get] = ACTIONS(2117), - [anon_sym_set] = ACTIONS(2117), - [anon_sym_declare] = ACTIONS(2117), - [anon_sym_public] = ACTIONS(2117), - [anon_sym_private] = ACTIONS(2117), - [anon_sym_protected] = ACTIONS(2117), - [anon_sym_override] = ACTIONS(2117), - [anon_sym_module] = ACTIONS(2117), - [anon_sym_any] = ACTIONS(2117), - [anon_sym_number] = ACTIONS(2117), - [anon_sym_boolean] = ACTIONS(2117), - [anon_sym_string] = ACTIONS(2117), - [anon_sym_symbol] = ACTIONS(2117), - [anon_sym_object] = ACTIONS(2117), - [anon_sym_abstract] = ACTIONS(2117), - [anon_sym_satisfies] = ACTIONS(2119), - [anon_sym_interface] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [sym__automatic_semicolon] = ACTIONS(2299), - [sym__ternary_qmark] = ACTIONS(2123), + [352] = { + [sym_comment] = STATE(352), + [ts_builtin_sym_end] = ACTIONS(2275), + [sym_identifier] = ACTIONS(2189), + [anon_sym_export] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_typeof] = ACTIONS(2189), + [anon_sym_import] = ACTIONS(2189), + [anon_sym_with] = ACTIONS(2189), + [anon_sym_var] = ACTIONS(2189), + [anon_sym_let] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_else] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_switch] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_await] = ACTIONS(2189), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_do] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_debugger] = ACTIONS(2189), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2189), + [anon_sym_SEMI] = ACTIONS(2189), + [anon_sym_yield] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_LTtemplate_GT] = ACTIONS(2189), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2189), + [anon_sym_SQUOTE] = ACTIONS(2189), + [anon_sym_class] = ACTIONS(2189), + [anon_sym_async] = ACTIONS(2189), + [anon_sym_function] = ACTIONS(2189), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_using] = ACTIONS(2189), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(2191), + [anon_sym_GT_GT_GT] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_SLASH] = ACTIONS(2189), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_STAR_STAR] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_QMARK_QMARK] = ACTIONS(2191), + [anon_sym_instanceof] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2189), + [anon_sym_void] = ACTIONS(2189), + [anon_sym_delete] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2189), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2189), + [sym_number] = ACTIONS(2189), + [sym_private_property_identifier] = ACTIONS(2189), + [sym_this] = ACTIONS(2189), + [sym_super] = ACTIONS(2189), + [sym_true] = ACTIONS(2189), + [sym_false] = ACTIONS(2189), + [sym_null] = ACTIONS(2189), + [sym_undefined] = ACTIONS(2189), + [anon_sym_AT] = ACTIONS(2189), + [anon_sym_static] = ACTIONS(2189), + [anon_sym_readonly] = ACTIONS(2189), + [anon_sym_get] = ACTIONS(2189), + [anon_sym_set] = ACTIONS(2189), + [anon_sym_declare] = ACTIONS(2189), + [anon_sym_public] = ACTIONS(2189), + [anon_sym_private] = ACTIONS(2189), + [anon_sym_protected] = ACTIONS(2189), + [anon_sym_override] = ACTIONS(2189), + [anon_sym_module] = ACTIONS(2189), + [anon_sym_any] = ACTIONS(2189), + [anon_sym_number] = ACTIONS(2189), + [anon_sym_boolean] = ACTIONS(2189), + [anon_sym_string] = ACTIONS(2189), + [anon_sym_symbol] = ACTIONS(2189), + [anon_sym_object] = ACTIONS(2189), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_satisfies] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [sym__automatic_semicolon] = ACTIONS(2277), + [sym__ternary_qmark] = ACTIONS(2195), [sym_html_comment] = ACTIONS(5), }, - [366] = { - [sym_comment] = STATE(366), - [ts_builtin_sym_end] = ACTIONS(2301), - [sym_identifier] = ACTIONS(2127), - [anon_sym_export] = ACTIONS(2127), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_type] = ACTIONS(2127), - [anon_sym_as] = ACTIONS(2129), - [anon_sym_namespace] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_COMMA] = ACTIONS(2129), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_typeof] = ACTIONS(2127), - [anon_sym_import] = ACTIONS(2127), - [anon_sym_with] = ACTIONS(2127), - [anon_sym_var] = ACTIONS(2127), - [anon_sym_let] = ACTIONS(2127), - [anon_sym_const] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_else] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2127), - [anon_sym_switch] = ACTIONS(2127), - [anon_sym_for] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_await] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2127), - [anon_sym_do] = ACTIONS(2127), - [anon_sym_try] = ACTIONS(2127), - [anon_sym_break] = ACTIONS(2127), - [anon_sym_continue] = ACTIONS(2127), - [anon_sym_debugger] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2127), - [anon_sym_throw] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_yield] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_LTtemplate_GT] = ACTIONS(2127), - [anon_sym_GT] = ACTIONS(2129), - [anon_sym_DOT] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2127), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_class] = ACTIONS(2127), - [anon_sym_async] = ACTIONS(2127), - [anon_sym_function] = ACTIONS(2127), - [anon_sym_QMARK_DOT] = ACTIONS(2129), - [anon_sym_new] = ACTIONS(2127), - [anon_sym_using] = ACTIONS(2127), - [anon_sym_AMP_AMP] = ACTIONS(2129), - [anon_sym_PIPE_PIPE] = ACTIONS(2129), - [anon_sym_GT_GT] = ACTIONS(2129), - [anon_sym_GT_GT_GT] = ACTIONS(2129), - [anon_sym_LT_LT] = ACTIONS(2129), - [anon_sym_AMP] = ACTIONS(2129), - [anon_sym_CARET] = ACTIONS(2129), - [anon_sym_PIPE] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2127), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_PERCENT] = ACTIONS(2129), - [anon_sym_STAR_STAR] = ACTIONS(2129), - [anon_sym_LT] = ACTIONS(2127), - [anon_sym_LT_EQ] = ACTIONS(2129), - [anon_sym_EQ_EQ] = ACTIONS(2129), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2129), - [anon_sym_BANG_EQ] = ACTIONS(2129), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2129), - [anon_sym_GT_EQ] = ACTIONS(2129), - [anon_sym_QMARK_QMARK] = ACTIONS(2129), - [anon_sym_instanceof] = ACTIONS(2129), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_void] = ACTIONS(2127), - [anon_sym_delete] = ACTIONS(2127), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2127), - [sym_number] = ACTIONS(2127), - [sym_private_property_identifier] = ACTIONS(2127), - [sym_this] = ACTIONS(2127), - [sym_super] = ACTIONS(2127), - [sym_true] = ACTIONS(2127), - [sym_false] = ACTIONS(2127), - [sym_null] = ACTIONS(2127), - [sym_undefined] = ACTIONS(2127), - [anon_sym_AT] = ACTIONS(2127), - [anon_sym_static] = ACTIONS(2127), - [anon_sym_readonly] = ACTIONS(2127), - [anon_sym_get] = ACTIONS(2127), - [anon_sym_set] = ACTIONS(2127), - [anon_sym_declare] = ACTIONS(2127), - [anon_sym_public] = ACTIONS(2127), - [anon_sym_private] = ACTIONS(2127), - [anon_sym_protected] = ACTIONS(2127), - [anon_sym_override] = ACTIONS(2127), - [anon_sym_module] = ACTIONS(2127), - [anon_sym_any] = ACTIONS(2127), - [anon_sym_number] = ACTIONS(2127), - [anon_sym_boolean] = ACTIONS(2127), - [anon_sym_string] = ACTIONS(2127), - [anon_sym_symbol] = ACTIONS(2127), - [anon_sym_object] = ACTIONS(2127), - [anon_sym_abstract] = ACTIONS(2127), - [anon_sym_satisfies] = ACTIONS(2129), - [anon_sym_interface] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(2127), - [sym__automatic_semicolon] = ACTIONS(2303), - [sym__ternary_qmark] = ACTIONS(2133), + [353] = { + [sym_comment] = STATE(353), + [sym_identifier] = ACTIONS(2129), + [anon_sym_export] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2131), + [anon_sym_namespace] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2129), + [anon_sym_COMMA] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2129), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_import] = ACTIONS(2129), + [anon_sym_with] = ACTIONS(2129), + [anon_sym_var] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_in] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_debugger] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_throw] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_yield] = ACTIONS(2129), + [anon_sym_LBRACK] = ACTIONS(2129), + [anon_sym_LTtemplate_GT] = ACTIONS(2129), + [anon_sym_GT] = ACTIONS(2131), + [anon_sym_DOT] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_class] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_function] = ACTIONS(2129), + [anon_sym_QMARK_DOT] = ACTIONS(2131), + [anon_sym_new] = ACTIONS(2129), + [anon_sym_using] = ACTIONS(2129), + [anon_sym_AMP_AMP] = ACTIONS(2131), + [anon_sym_PIPE_PIPE] = ACTIONS(2131), + [anon_sym_GT_GT] = ACTIONS(2131), + [anon_sym_GT_GT_GT] = ACTIONS(2131), + [anon_sym_LT_LT] = ACTIONS(2131), + [anon_sym_AMP] = ACTIONS(2131), + [anon_sym_CARET] = ACTIONS(2131), + [anon_sym_PIPE] = ACTIONS(2131), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_SLASH] = ACTIONS(2129), + [anon_sym_PERCENT] = ACTIONS(2131), + [anon_sym_STAR_STAR] = ACTIONS(2131), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_LT_EQ] = ACTIONS(2131), + [anon_sym_EQ_EQ] = ACTIONS(2131), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2131), + [anon_sym_BANG_EQ] = ACTIONS(2131), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2131), + [anon_sym_GT_EQ] = ACTIONS(2131), + [anon_sym_QMARK_QMARK] = ACTIONS(2131), + [anon_sym_instanceof] = ACTIONS(2131), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_void] = ACTIONS(2129), + [anon_sym_delete] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2129), + [sym_number] = ACTIONS(2129), + [sym_private_property_identifier] = ACTIONS(2129), + [sym_this] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_true] = ACTIONS(2129), + [sym_false] = ACTIONS(2129), + [sym_null] = ACTIONS(2129), + [sym_undefined] = ACTIONS(2129), + [anon_sym_AT] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_readonly] = ACTIONS(2129), + [anon_sym_get] = ACTIONS(2129), + [anon_sym_set] = ACTIONS(2129), + [anon_sym_declare] = ACTIONS(2129), + [anon_sym_public] = ACTIONS(2129), + [anon_sym_private] = ACTIONS(2129), + [anon_sym_protected] = ACTIONS(2129), + [anon_sym_override] = ACTIONS(2129), + [anon_sym_module] = ACTIONS(2129), + [anon_sym_any] = ACTIONS(2129), + [anon_sym_number] = ACTIONS(2129), + [anon_sym_boolean] = ACTIONS(2129), + [anon_sym_string] = ACTIONS(2129), + [anon_sym_symbol] = ACTIONS(2129), + [anon_sym_object] = ACTIONS(2129), + [anon_sym_abstract] = ACTIONS(2129), + [anon_sym_satisfies] = ACTIONS(2131), + [anon_sym_interface] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [sym__automatic_semicolon] = ACTIONS(2279), + [sym__ternary_qmark] = ACTIONS(2135), [sym_html_comment] = ACTIONS(5), }, - [367] = { - [sym_comment] = STATE(367), - [ts_builtin_sym_end] = ACTIONS(2083), - [sym_identifier] = ACTIONS(2081), - [anon_sym_export] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_as] = ACTIONS(2081), - [anon_sym_namespace] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_COMMA] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_typeof] = ACTIONS(2081), - [anon_sym_import] = ACTIONS(2081), - [anon_sym_with] = ACTIONS(2081), - [anon_sym_var] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_else] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_switch] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_in] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_do] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_debugger] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_yield] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_LTtemplate_GT] = ACTIONS(2081), - [anon_sym_GT] = ACTIONS(2081), - [anon_sym_DOT] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2081), - [anon_sym_class] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_function] = ACTIONS(2081), - [anon_sym_QMARK_DOT] = ACTIONS(2081), - [anon_sym_new] = ACTIONS(2081), - [anon_sym_using] = ACTIONS(2081), - [anon_sym_AMP_AMP] = ACTIONS(2081), - [anon_sym_PIPE_PIPE] = ACTIONS(2081), - [anon_sym_GT_GT] = ACTIONS(2081), - [anon_sym_GT_GT_GT] = ACTIONS(2081), - [anon_sym_LT_LT] = ACTIONS(2081), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_CARET] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_SLASH] = ACTIONS(2081), - [anon_sym_PERCENT] = ACTIONS(2081), - [anon_sym_STAR_STAR] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2081), - [anon_sym_LT_EQ] = ACTIONS(2081), - [anon_sym_EQ_EQ] = ACTIONS(2081), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2081), - [anon_sym_BANG_EQ] = ACTIONS(2081), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2081), - [anon_sym_GT_EQ] = ACTIONS(2081), - [anon_sym_QMARK_QMARK] = ACTIONS(2081), - [anon_sym_instanceof] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2081), - [anon_sym_void] = ACTIONS(2081), - [anon_sym_delete] = ACTIONS(2081), - [anon_sym_PLUS_PLUS] = ACTIONS(2081), - [anon_sym_DASH_DASH] = ACTIONS(2081), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2081), - [sym_number] = ACTIONS(2081), - [sym_private_property_identifier] = ACTIONS(2081), - [sym_this] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_true] = ACTIONS(2081), - [sym_false] = ACTIONS(2081), - [sym_null] = ACTIONS(2081), - [sym_undefined] = ACTIONS(2081), - [anon_sym_AT] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_readonly] = ACTIONS(2081), - [anon_sym_get] = ACTIONS(2081), - [anon_sym_set] = ACTIONS(2081), - [anon_sym_declare] = ACTIONS(2081), - [anon_sym_public] = ACTIONS(2081), - [anon_sym_private] = ACTIONS(2081), - [anon_sym_protected] = ACTIONS(2081), - [anon_sym_override] = ACTIONS(2081), - [anon_sym_module] = ACTIONS(2081), - [anon_sym_any] = ACTIONS(2081), - [anon_sym_number] = ACTIONS(2081), - [anon_sym_boolean] = ACTIONS(2081), - [anon_sym_string] = ACTIONS(2081), - [anon_sym_symbol] = ACTIONS(2081), - [anon_sym_object] = ACTIONS(2081), - [anon_sym_abstract] = ACTIONS(2081), - [anon_sym_satisfies] = ACTIONS(2081), - [anon_sym_interface] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [sym__automatic_semicolon] = ACTIONS(2083), - [sym__ternary_qmark] = ACTIONS(2083), + [354] = { + [sym_comment] = STATE(354), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2137), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_default] = ACTIONS(2137), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_typeof] = ACTIONS(2137), + [anon_sym_import] = ACTIONS(2137), + [anon_sym_with] = ACTIONS(2137), + [anon_sym_var] = ACTIONS(2137), + [anon_sym_let] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_switch] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_await] = ACTIONS(2137), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_do] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_debugger] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_throw] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_case] = ACTIONS(2137), + [anon_sym_yield] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_LTtemplate_GT] = ACTIONS(2137), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2137), + [anon_sym_SQUOTE] = ACTIONS(2137), + [anon_sym_class] = ACTIONS(2137), + [anon_sym_async] = ACTIONS(2137), + [anon_sym_function] = ACTIONS(2137), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2137), + [anon_sym_using] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_SLASH] = ACTIONS(2137), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_QMARK_QMARK] = ACTIONS(2139), + [anon_sym_instanceof] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_void] = ACTIONS(2137), + [anon_sym_delete] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2137), + [sym_number] = ACTIONS(2137), + [sym_private_property_identifier] = ACTIONS(2137), + [sym_this] = ACTIONS(2137), + [sym_super] = ACTIONS(2137), + [sym_true] = ACTIONS(2137), + [sym_false] = ACTIONS(2137), + [sym_null] = ACTIONS(2137), + [sym_undefined] = ACTIONS(2137), + [anon_sym_AT] = ACTIONS(2137), + [anon_sym_static] = ACTIONS(2137), + [anon_sym_readonly] = ACTIONS(2137), + [anon_sym_get] = ACTIONS(2137), + [anon_sym_set] = ACTIONS(2137), + [anon_sym_declare] = ACTIONS(2137), + [anon_sym_public] = ACTIONS(2137), + [anon_sym_private] = ACTIONS(2137), + [anon_sym_protected] = ACTIONS(2137), + [anon_sym_override] = ACTIONS(2137), + [anon_sym_module] = ACTIONS(2137), + [anon_sym_any] = ACTIONS(2137), + [anon_sym_number] = ACTIONS(2137), + [anon_sym_boolean] = ACTIONS(2137), + [anon_sym_string] = ACTIONS(2137), + [anon_sym_symbol] = ACTIONS(2137), + [anon_sym_object] = ACTIONS(2137), + [anon_sym_abstract] = ACTIONS(2137), + [anon_sym_satisfies] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [sym__automatic_semicolon] = ACTIONS(2281), + [sym__ternary_qmark] = ACTIONS(2143), [sym_html_comment] = ACTIONS(5), }, - [368] = { - [sym_import] = STATE(4318), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(368), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym__type_query_member_expression] = STATE(3745), - [sym__type_query_subscript_expression] = STATE(3744), - [sym__type_query_call_expression] = STATE(3813), - [sym__type_query_instantiation_expression] = STATE(3926), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2305), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), + [355] = { + [sym_import] = STATE(4107), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(355), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym__type_query_member_expression] = STATE(3599), + [sym__type_query_subscript_expression] = STATE(3600), + [sym__type_query_call_expression] = STATE(3656), + [sym__type_query_instantiation_expression] = STATE(3722), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2283), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [369] = { - [sym_comment] = STATE(369), - [ts_builtin_sym_end] = ACTIONS(2307), - [sym_identifier] = ACTIONS(2173), - [anon_sym_export] = ACTIONS(2173), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_namespace] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2173), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_typeof] = ACTIONS(2173), - [anon_sym_import] = ACTIONS(2173), - [anon_sym_with] = ACTIONS(2173), - [anon_sym_var] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2173), - [anon_sym_else] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_switch] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_in] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_debugger] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_throw] = ACTIONS(2173), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_yield] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_LTtemplate_GT] = ACTIONS(2173), - [anon_sym_GT] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_class] = ACTIONS(2173), - [anon_sym_async] = ACTIONS(2173), - [anon_sym_function] = ACTIONS(2173), - [anon_sym_QMARK_DOT] = ACTIONS(2175), - [anon_sym_new] = ACTIONS(2173), - [anon_sym_using] = ACTIONS(2173), - [anon_sym_AMP_AMP] = ACTIONS(2175), - [anon_sym_PIPE_PIPE] = ACTIONS(2175), - [anon_sym_GT_GT] = ACTIONS(2175), - [anon_sym_GT_GT_GT] = ACTIONS(2175), - [anon_sym_LT_LT] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_SLASH] = ACTIONS(2173), - [anon_sym_PERCENT] = ACTIONS(2175), - [anon_sym_STAR_STAR] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2173), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_EQ_EQ] = ACTIONS(2175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_QMARK_QMARK] = ACTIONS(2175), - [anon_sym_instanceof] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2173), - [anon_sym_void] = ACTIONS(2173), - [anon_sym_delete] = ACTIONS(2173), - [anon_sym_PLUS_PLUS] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2173), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2173), - [sym_number] = ACTIONS(2173), - [sym_private_property_identifier] = ACTIONS(2173), - [sym_this] = ACTIONS(2173), - [sym_super] = ACTIONS(2173), - [sym_true] = ACTIONS(2173), - [sym_false] = ACTIONS(2173), - [sym_null] = ACTIONS(2173), - [sym_undefined] = ACTIONS(2173), - [anon_sym_AT] = ACTIONS(2173), - [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_abstract] = ACTIONS(2173), - [anon_sym_satisfies] = ACTIONS(2175), - [anon_sym_interface] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [sym__automatic_semicolon] = ACTIONS(2309), - [sym__ternary_qmark] = ACTIONS(2179), + [356] = { + [sym_comment] = STATE(356), + [sym_identifier] = ACTIONS(2103), + [anon_sym_export] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_default] = ACTIONS(2103), + [anon_sym_type] = ACTIONS(2103), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(2103), + [anon_sym_import] = ACTIONS(2103), + [anon_sym_with] = ACTIONS(2103), + [anon_sym_var] = ACTIONS(2103), + [anon_sym_let] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_BANG] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2103), + [anon_sym_switch] = ACTIONS(2103), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2103), + [anon_sym_do] = ACTIONS(2103), + [anon_sym_try] = ACTIONS(2103), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2103), + [anon_sym_debugger] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2103), + [anon_sym_throw] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_case] = ACTIONS(2103), + [anon_sym_yield] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_LTtemplate_GT] = ACTIONS(2103), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_class] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(2103), + [anon_sym_function] = ACTIONS(2103), + [anon_sym_QMARK_DOT] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2103), + [anon_sym_using] = ACTIONS(2103), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_SLASH] = ACTIONS(2103), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_STAR_STAR] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2103), + [anon_sym_LT_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), + [anon_sym_GT_EQ] = ACTIONS(2105), + [anon_sym_QMARK_QMARK] = ACTIONS(2105), + [anon_sym_instanceof] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_void] = ACTIONS(2103), + [anon_sym_delete] = ACTIONS(2103), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2103), + [sym_number] = ACTIONS(2103), + [sym_private_property_identifier] = ACTIONS(2103), + [sym_this] = ACTIONS(2103), + [sym_super] = ACTIONS(2103), + [sym_true] = ACTIONS(2103), + [sym_false] = ACTIONS(2103), + [sym_null] = ACTIONS(2103), + [sym_undefined] = ACTIONS(2103), + [anon_sym_AT] = ACTIONS(2103), + [anon_sym_static] = ACTIONS(2103), + [anon_sym_readonly] = ACTIONS(2103), + [anon_sym_get] = ACTIONS(2103), + [anon_sym_set] = ACTIONS(2103), + [anon_sym_declare] = ACTIONS(2103), + [anon_sym_public] = ACTIONS(2103), + [anon_sym_private] = ACTIONS(2103), + [anon_sym_protected] = ACTIONS(2103), + [anon_sym_override] = ACTIONS(2103), + [anon_sym_module] = ACTIONS(2103), + [anon_sym_any] = ACTIONS(2103), + [anon_sym_number] = ACTIONS(2103), + [anon_sym_boolean] = ACTIONS(2103), + [anon_sym_string] = ACTIONS(2103), + [anon_sym_symbol] = ACTIONS(2103), + [anon_sym_object] = ACTIONS(2103), + [anon_sym_abstract] = ACTIONS(2103), + [anon_sym_satisfies] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2103), + [anon_sym_enum] = ACTIONS(2103), + [sym__automatic_semicolon] = ACTIONS(2285), + [sym__ternary_qmark] = ACTIONS(2109), [sym_html_comment] = ACTIONS(5), }, - [370] = { - [sym_comment] = STATE(370), - [ts_builtin_sym_end] = ACTIONS(2311), - [sym_identifier] = ACTIONS(2181), - [anon_sym_export] = ACTIONS(2181), + [357] = { + [sym_comment] = STATE(357), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2181), + [anon_sym_type] = ACTIONS(2183), [anon_sym_as] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), [anon_sym_COMMA] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_typeof] = ACTIONS(2181), - [anon_sym_import] = ACTIONS(2181), - [anon_sym_with] = ACTIONS(2181), - [anon_sym_var] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2181), - [anon_sym_else] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_switch] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), [anon_sym_in] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_do] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_debugger] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_throw] = ACTIONS(2181), - [anon_sym_SEMI] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_LTtemplate_GT] = ACTIONS(2181), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), [anon_sym_GT] = ACTIONS(2183), [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_class] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_function] = ACTIONS(2181), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), [anon_sym_QMARK_DOT] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_using] = ACTIONS(2181), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), [anon_sym_AMP_AMP] = ACTIONS(2183), [anon_sym_PIPE_PIPE] = ACTIONS(2183), [anon_sym_GT_GT] = ACTIONS(2183), @@ -81828,12 +80090,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2183), [anon_sym_CARET] = ACTIONS(2183), [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_SLASH] = ACTIONS(2181), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), [anon_sym_PERCENT] = ACTIONS(2183), [anon_sym_STAR_STAR] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2181), + [anon_sym_LT] = ACTIONS(2183), [anon_sym_LT_EQ] = ACTIONS(2183), [anon_sym_EQ_EQ] = ACTIONS(2183), [anon_sym_EQ_EQ_EQ] = ACTIONS(2183), @@ -81842,159 +80104,709 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2183), [anon_sym_QMARK_QMARK] = ACTIONS(2183), [anon_sym_instanceof] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2181), - [anon_sym_void] = ACTIONS(2181), - [anon_sym_delete] = ACTIONS(2181), - [anon_sym_PLUS_PLUS] = ACTIONS(2181), - [anon_sym_DASH_DASH] = ACTIONS(2181), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2181), - [sym_number] = ACTIONS(2181), - [sym_private_property_identifier] = ACTIONS(2181), - [sym_this] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_true] = ACTIONS(2181), - [sym_false] = ACTIONS(2181), - [sym_null] = ACTIONS(2181), - [sym_undefined] = ACTIONS(2181), - [anon_sym_AT] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_readonly] = ACTIONS(2181), - [anon_sym_get] = ACTIONS(2181), - [anon_sym_set] = ACTIONS(2181), - [anon_sym_declare] = ACTIONS(2181), - [anon_sym_public] = ACTIONS(2181), - [anon_sym_private] = ACTIONS(2181), - [anon_sym_protected] = ACTIONS(2181), - [anon_sym_override] = ACTIONS(2181), - [anon_sym_module] = ACTIONS(2181), - [anon_sym_any] = ACTIONS(2181), - [anon_sym_number] = ACTIONS(2181), - [anon_sym_boolean] = ACTIONS(2181), - [anon_sym_string] = ACTIONS(2181), - [anon_sym_symbol] = ACTIONS(2181), - [anon_sym_object] = ACTIONS(2181), - [anon_sym_abstract] = ACTIONS(2181), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), + [anon_sym_abstract] = ACTIONS(2183), [anon_sym_satisfies] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [sym__automatic_semicolon] = ACTIONS(2313), - [sym__ternary_qmark] = ACTIONS(2187), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [sym__automatic_semicolon] = ACTIONS(2185), + [sym__ternary_qmark] = ACTIONS(2185), [sym_html_comment] = ACTIONS(5), }, - [371] = { - [sym_comment] = STATE(371), - [ts_builtin_sym_end] = ACTIONS(2315), - [sym_identifier] = ACTIONS(2159), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2161), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2161), - [anon_sym_namespace] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2161), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_typeof] = ACTIONS(2159), - [anon_sym_import] = ACTIONS(2159), - [anon_sym_with] = ACTIONS(2159), - [anon_sym_var] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_else] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_switch] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2159), - [anon_sym_in] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_debugger] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_throw] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_yield] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LTtemplate_GT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2161), - [anon_sym_DOT] = ACTIONS(2161), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_class] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_function] = ACTIONS(2159), - [anon_sym_QMARK_DOT] = ACTIONS(2161), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_using] = ACTIONS(2159), - [anon_sym_AMP_AMP] = ACTIONS(2161), - [anon_sym_PIPE_PIPE] = ACTIONS(2161), - [anon_sym_GT_GT] = ACTIONS(2161), - [anon_sym_GT_GT_GT] = ACTIONS(2161), - [anon_sym_LT_LT] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2161), - [anon_sym_CARET] = ACTIONS(2161), - [anon_sym_PIPE] = ACTIONS(2161), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2161), - [anon_sym_STAR_STAR] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_LT_EQ] = ACTIONS(2161), - [anon_sym_EQ_EQ] = ACTIONS(2161), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2161), - [anon_sym_BANG_EQ] = ACTIONS(2161), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2161), - [anon_sym_GT_EQ] = ACTIONS(2161), - [anon_sym_QMARK_QMARK] = ACTIONS(2161), - [anon_sym_instanceof] = ACTIONS(2161), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_void] = ACTIONS(2159), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2159), - [sym_number] = ACTIONS(2159), - [sym_private_property_identifier] = ACTIONS(2159), - [sym_this] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_null] = ACTIONS(2159), - [sym_undefined] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [anon_sym_static] = ACTIONS(2159), - [anon_sym_readonly] = ACTIONS(2159), - [anon_sym_get] = ACTIONS(2159), - [anon_sym_set] = ACTIONS(2159), - [anon_sym_declare] = ACTIONS(2159), - [anon_sym_public] = ACTIONS(2159), - [anon_sym_private] = ACTIONS(2159), - [anon_sym_protected] = ACTIONS(2159), - [anon_sym_override] = ACTIONS(2159), - [anon_sym_module] = ACTIONS(2159), - [anon_sym_any] = ACTIONS(2159), - [anon_sym_number] = ACTIONS(2159), - [anon_sym_boolean] = ACTIONS(2159), - [anon_sym_string] = ACTIONS(2159), - [anon_sym_symbol] = ACTIONS(2159), - [anon_sym_object] = ACTIONS(2159), - [anon_sym_abstract] = ACTIONS(2159), - [anon_sym_satisfies] = ACTIONS(2161), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [sym__automatic_semicolon] = ACTIONS(2317), - [sym__ternary_qmark] = ACTIONS(2165), + [358] = { + [sym_comment] = STATE(358), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_as] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_COMMA] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_in] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_GT] = ACTIONS(2111), + [anon_sym_DOT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_QMARK_DOT] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_AMP_AMP] = ACTIONS(2111), + [anon_sym_PIPE_PIPE] = ACTIONS(2111), + [anon_sym_GT_GT] = ACTIONS(2111), + [anon_sym_GT_GT_GT] = ACTIONS(2111), + [anon_sym_LT_LT] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2111), + [anon_sym_CARET] = ACTIONS(2111), + [anon_sym_PIPE] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_PERCENT] = ACTIONS(2111), + [anon_sym_STAR_STAR] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_LT_EQ] = ACTIONS(2111), + [anon_sym_EQ_EQ] = ACTIONS(2111), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2111), + [anon_sym_BANG_EQ] = ACTIONS(2111), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2111), + [anon_sym_GT_EQ] = ACTIONS(2111), + [anon_sym_QMARK_QMARK] = ACTIONS(2111), + [anon_sym_instanceof] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_satisfies] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(2115), + [sym__ternary_qmark] = ACTIONS(2115), [sym_html_comment] = ACTIONS(5), }, - [372] = { - [sym_comment] = STATE(372), - [ts_builtin_sym_end] = ACTIONS(2103), + [359] = { + [sym_import] = STATE(4290), + [sym_expression_statement] = STATE(464), + [sym_empty_statement] = STATE(464), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2478), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6755), + [sym_string] = STATE(2940), + [sym_comment] = STATE(359), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), + [sym_html_comment] = ACTIONS(5), + }, + [360] = { + [sym_comment] = STATE(360), + [ts_builtin_sym_end] = ACTIONS(2287), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2137), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_typeof] = ACTIONS(2137), + [anon_sym_import] = ACTIONS(2137), + [anon_sym_with] = ACTIONS(2137), + [anon_sym_var] = ACTIONS(2137), + [anon_sym_let] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_else] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_switch] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_await] = ACTIONS(2137), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_do] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_debugger] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_throw] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_yield] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_LTtemplate_GT] = ACTIONS(2137), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2137), + [anon_sym_SQUOTE] = ACTIONS(2137), + [anon_sym_class] = ACTIONS(2137), + [anon_sym_async] = ACTIONS(2137), + [anon_sym_function] = ACTIONS(2137), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2137), + [anon_sym_using] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_SLASH] = ACTIONS(2137), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_QMARK_QMARK] = ACTIONS(2139), + [anon_sym_instanceof] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_void] = ACTIONS(2137), + [anon_sym_delete] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2137), + [sym_number] = ACTIONS(2137), + [sym_private_property_identifier] = ACTIONS(2137), + [sym_this] = ACTIONS(2137), + [sym_super] = ACTIONS(2137), + [sym_true] = ACTIONS(2137), + [sym_false] = ACTIONS(2137), + [sym_null] = ACTIONS(2137), + [sym_undefined] = ACTIONS(2137), + [anon_sym_AT] = ACTIONS(2137), + [anon_sym_static] = ACTIONS(2137), + [anon_sym_readonly] = ACTIONS(2137), + [anon_sym_get] = ACTIONS(2137), + [anon_sym_set] = ACTIONS(2137), + [anon_sym_declare] = ACTIONS(2137), + [anon_sym_public] = ACTIONS(2137), + [anon_sym_private] = ACTIONS(2137), + [anon_sym_protected] = ACTIONS(2137), + [anon_sym_override] = ACTIONS(2137), + [anon_sym_module] = ACTIONS(2137), + [anon_sym_any] = ACTIONS(2137), + [anon_sym_number] = ACTIONS(2137), + [anon_sym_boolean] = ACTIONS(2137), + [anon_sym_string] = ACTIONS(2137), + [anon_sym_symbol] = ACTIONS(2137), + [anon_sym_object] = ACTIONS(2137), + [anon_sym_abstract] = ACTIONS(2137), + [anon_sym_satisfies] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [sym__automatic_semicolon] = ACTIONS(2289), + [sym__ternary_qmark] = ACTIONS(2143), + [sym_html_comment] = ACTIONS(5), + }, + [361] = { + [sym_comment] = STATE(361), + [sym_identifier] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_COMMA] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_typeof] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2125), + [anon_sym_with] = ACTIONS(2125), + [anon_sym_var] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_in] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_debugger] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_case] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LTtemplate_GT] = ACTIONS(2125), + [anon_sym_GT] = ACTIONS(2125), + [anon_sym_DOT] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_QMARK_DOT] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [anon_sym_AMP_AMP] = ACTIONS(2125), + [anon_sym_PIPE_PIPE] = ACTIONS(2125), + [anon_sym_GT_GT] = ACTIONS(2125), + [anon_sym_GT_GT_GT] = ACTIONS(2125), + [anon_sym_LT_LT] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_PERCENT] = ACTIONS(2125), + [anon_sym_STAR_STAR] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_LT_EQ] = ACTIONS(2125), + [anon_sym_EQ_EQ] = ACTIONS(2125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), + [anon_sym_BANG_EQ] = ACTIONS(2125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), + [anon_sym_GT_EQ] = ACTIONS(2125), + [anon_sym_QMARK_QMARK] = ACTIONS(2125), + [anon_sym_instanceof] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_void] = ACTIONS(2125), + [anon_sym_delete] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2125), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(2125), + [sym_this] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [sym_undefined] = ACTIONS(2125), + [anon_sym_AT] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_readonly] = ACTIONS(2125), + [anon_sym_get] = ACTIONS(2125), + [anon_sym_set] = ACTIONS(2125), + [anon_sym_declare] = ACTIONS(2125), + [anon_sym_public] = ACTIONS(2125), + [anon_sym_private] = ACTIONS(2125), + [anon_sym_protected] = ACTIONS(2125), + [anon_sym_override] = ACTIONS(2125), + [anon_sym_module] = ACTIONS(2125), + [anon_sym_any] = ACTIONS(2125), + [anon_sym_number] = ACTIONS(2125), + [anon_sym_boolean] = ACTIONS(2125), + [anon_sym_string] = ACTIONS(2125), + [anon_sym_symbol] = ACTIONS(2125), + [anon_sym_object] = ACTIONS(2125), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_satisfies] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [sym__automatic_semicolon] = ACTIONS(2127), + [sym__ternary_qmark] = ACTIONS(2127), + [sym_html_comment] = ACTIONS(5), + }, + [362] = { + [sym_comment] = STATE(362), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_as] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_COMMA] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_in] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_GT] = ACTIONS(2111), + [anon_sym_DOT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_QMARK_DOT] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_AMP_AMP] = ACTIONS(2111), + [anon_sym_PIPE_PIPE] = ACTIONS(2111), + [anon_sym_GT_GT] = ACTIONS(2111), + [anon_sym_GT_GT_GT] = ACTIONS(2111), + [anon_sym_LT_LT] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2111), + [anon_sym_CARET] = ACTIONS(2111), + [anon_sym_PIPE] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_PERCENT] = ACTIONS(2111), + [anon_sym_STAR_STAR] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_LT_EQ] = ACTIONS(2111), + [anon_sym_EQ_EQ] = ACTIONS(2111), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2111), + [anon_sym_BANG_EQ] = ACTIONS(2111), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2111), + [anon_sym_GT_EQ] = ACTIONS(2111), + [anon_sym_QMARK_QMARK] = ACTIONS(2111), + [anon_sym_instanceof] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_satisfies] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(2291), + [sym__ternary_qmark] = ACTIONS(2115), + [sym_html_comment] = ACTIONS(5), + }, + [363] = { + [sym_comment] = STATE(363), + [sym_identifier] = ACTIONS(2145), + [anon_sym_export] = ACTIONS(2145), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_default] = ACTIONS(2145), + [anon_sym_type] = ACTIONS(2145), + [anon_sym_as] = ACTIONS(2145), + [anon_sym_namespace] = ACTIONS(2145), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_COMMA] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_typeof] = ACTIONS(2145), + [anon_sym_import] = ACTIONS(2145), + [anon_sym_with] = ACTIONS(2145), + [anon_sym_var] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2145), + [anon_sym_switch] = ACTIONS(2145), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_do] = ACTIONS(2145), + [anon_sym_try] = ACTIONS(2145), + [anon_sym_break] = ACTIONS(2145), + [anon_sym_continue] = ACTIONS(2145), + [anon_sym_debugger] = ACTIONS(2145), + [anon_sym_return] = ACTIONS(2145), + [anon_sym_throw] = ACTIONS(2145), + [anon_sym_SEMI] = ACTIONS(2145), + [anon_sym_case] = ACTIONS(2145), + [anon_sym_yield] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_LTtemplate_GT] = ACTIONS(2145), + [anon_sym_GT] = ACTIONS(2145), + [anon_sym_DOT] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2145), + [anon_sym_class] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(2145), + [anon_sym_QMARK_DOT] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(2145), + [anon_sym_using] = ACTIONS(2145), + [anon_sym_AMP_AMP] = ACTIONS(2145), + [anon_sym_PIPE_PIPE] = ACTIONS(2145), + [anon_sym_GT_GT] = ACTIONS(2145), + [anon_sym_GT_GT_GT] = ACTIONS(2145), + [anon_sym_LT_LT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2145), + [anon_sym_PIPE] = ACTIONS(2145), + [anon_sym_PLUS] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_SLASH] = ACTIONS(2145), + [anon_sym_PERCENT] = ACTIONS(2145), + [anon_sym_STAR_STAR] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_LT_EQ] = ACTIONS(2145), + [anon_sym_EQ_EQ] = ACTIONS(2145), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2145), + [anon_sym_BANG_EQ] = ACTIONS(2145), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2145), + [anon_sym_GT_EQ] = ACTIONS(2145), + [anon_sym_QMARK_QMARK] = ACTIONS(2145), + [anon_sym_instanceof] = ACTIONS(2145), + [anon_sym_TILDE] = ACTIONS(2145), + [anon_sym_void] = ACTIONS(2145), + [anon_sym_delete] = ACTIONS(2145), + [anon_sym_PLUS_PLUS] = ACTIONS(2145), + [anon_sym_DASH_DASH] = ACTIONS(2145), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2145), + [sym_number] = ACTIONS(2145), + [sym_private_property_identifier] = ACTIONS(2145), + [sym_this] = ACTIONS(2145), + [sym_super] = ACTIONS(2145), + [sym_true] = ACTIONS(2145), + [sym_false] = ACTIONS(2145), + [sym_null] = ACTIONS(2145), + [sym_undefined] = ACTIONS(2145), + [anon_sym_AT] = ACTIONS(2145), + [anon_sym_static] = ACTIONS(2145), + [anon_sym_readonly] = ACTIONS(2145), + [anon_sym_get] = ACTIONS(2145), + [anon_sym_set] = ACTIONS(2145), + [anon_sym_declare] = ACTIONS(2145), + [anon_sym_public] = ACTIONS(2145), + [anon_sym_private] = ACTIONS(2145), + [anon_sym_protected] = ACTIONS(2145), + [anon_sym_override] = ACTIONS(2145), + [anon_sym_module] = ACTIONS(2145), + [anon_sym_any] = ACTIONS(2145), + [anon_sym_number] = ACTIONS(2145), + [anon_sym_boolean] = ACTIONS(2145), + [anon_sym_string] = ACTIONS(2145), + [anon_sym_symbol] = ACTIONS(2145), + [anon_sym_object] = ACTIONS(2145), + [anon_sym_abstract] = ACTIONS(2145), + [anon_sym_satisfies] = ACTIONS(2145), + [anon_sym_interface] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2145), + [sym__automatic_semicolon] = ACTIONS(2147), + [sym__ternary_qmark] = ACTIONS(2147), + [sym_html_comment] = ACTIONS(5), + }, + [364] = { + [sym_comment] = STATE(364), + [ts_builtin_sym_end] = ACTIONS(2095), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), [anon_sym_STAR] = ACTIONS(2067), @@ -82098,398 +80910,508 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2319), - [sym__ternary_qmark] = ACTIONS(2103), + [sym__automatic_semicolon] = ACTIONS(2293), + [sym__ternary_qmark] = ACTIONS(2095), [sym_html_comment] = ACTIONS(5), }, - [373] = { - [sym_import] = STATE(4258), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2565), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(373), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym__type_query_member_expression] = STATE(3745), - [sym__type_query_subscript_expression] = STATE(3744), - [sym__type_query_call_expression] = STATE(3813), - [sym__type_query_instantiation_expression] = STATE(3926), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(2321), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [365] = { + [sym_import] = STATE(4242), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3003), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(365), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym__type_query_member_expression] = STATE(3599), + [sym__type_query_subscript_expression] = STATE(3600), + [sym__type_query_call_expression] = STATE(3656), + [sym__type_query_instantiation_expression] = STATE(3722), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2295), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1546), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1558), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, - [374] = { - [sym_import] = STATE(4369), - [sym_expression_statement] = STATE(463), - [sym_empty_statement] = STATE(463), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2679), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(7092), - [sym_string] = STATE(3113), - [sym_comment] = STATE(374), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [366] = { + [sym_comment] = STATE(366), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_STAR] = ACTIONS(2183), + [anon_sym_default] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_as] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_COMMA] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_in] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_case] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_QMARK_DOT] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_AMP_AMP] = ACTIONS(2183), + [anon_sym_PIPE_PIPE] = ACTIONS(2183), + [anon_sym_GT_GT] = ACTIONS(2183), + [anon_sym_GT_GT_GT] = ACTIONS(2183), + [anon_sym_LT_LT] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_PIPE] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_PERCENT] = ACTIONS(2183), + [anon_sym_STAR_STAR] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_LT_EQ] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2183), + [anon_sym_BANG_EQ] = ACTIONS(2183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2183), + [anon_sym_GT_EQ] = ACTIONS(2183), + [anon_sym_QMARK_QMARK] = ACTIONS(2183), + [anon_sym_instanceof] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), + [anon_sym_abstract] = ACTIONS(2183), + [anon_sym_satisfies] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [sym__automatic_semicolon] = ACTIONS(2185), + [sym__ternary_qmark] = ACTIONS(2185), + [sym_html_comment] = ACTIONS(5), + }, + [367] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(367), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5081), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_override_modifier] = STATE(436), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2000), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1948), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1071), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(2297), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1081), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(2299), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(1173), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [375] = { - [sym_comment] = STATE(375), - [sym_identifier] = ACTIONS(2085), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_STAR] = ACTIONS(2087), - [anon_sym_default] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_as] = ACTIONS(2087), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_COMMA] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_typeof] = ACTIONS(2085), - [anon_sym_import] = ACTIONS(2085), - [anon_sym_with] = ACTIONS(2085), - [anon_sym_var] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_in] = ACTIONS(2087), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_debugger] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_case] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LTtemplate_GT] = ACTIONS(2085), - [anon_sym_GT] = ACTIONS(2087), - [anon_sym_DOT] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_QMARK_DOT] = ACTIONS(2087), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [anon_sym_AMP_AMP] = ACTIONS(2087), - [anon_sym_PIPE_PIPE] = ACTIONS(2087), - [anon_sym_GT_GT] = ACTIONS(2087), - [anon_sym_GT_GT_GT] = ACTIONS(2087), - [anon_sym_LT_LT] = ACTIONS(2087), - [anon_sym_AMP] = ACTIONS(2087), - [anon_sym_CARET] = ACTIONS(2087), - [anon_sym_PIPE] = ACTIONS(2087), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(2085), - [anon_sym_PERCENT] = ACTIONS(2087), - [anon_sym_STAR_STAR] = ACTIONS(2087), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_LT_EQ] = ACTIONS(2087), - [anon_sym_EQ_EQ] = ACTIONS(2087), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2087), - [anon_sym_BANG_EQ] = ACTIONS(2087), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2087), - [anon_sym_GT_EQ] = ACTIONS(2087), - [anon_sym_QMARK_QMARK] = ACTIONS(2087), - [anon_sym_instanceof] = ACTIONS(2087), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_void] = ACTIONS(2085), - [anon_sym_delete] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2085), - [sym_number] = ACTIONS(2085), - [sym_private_property_identifier] = ACTIONS(2085), - [sym_this] = ACTIONS(2085), - [sym_super] = ACTIONS(2085), - [sym_true] = ACTIONS(2085), - [sym_false] = ACTIONS(2085), - [sym_null] = ACTIONS(2085), - [sym_undefined] = ACTIONS(2085), - [anon_sym_AT] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_readonly] = ACTIONS(2085), - [anon_sym_get] = ACTIONS(2085), - [anon_sym_set] = ACTIONS(2085), - [anon_sym_declare] = ACTIONS(2085), - [anon_sym_public] = ACTIONS(2085), - [anon_sym_private] = ACTIONS(2085), - [anon_sym_protected] = ACTIONS(2085), - [anon_sym_override] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_any] = ACTIONS(2085), - [anon_sym_number] = ACTIONS(2085), - [anon_sym_boolean] = ACTIONS(2085), - [anon_sym_string] = ACTIONS(2085), - [anon_sym_symbol] = ACTIONS(2085), - [anon_sym_object] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_satisfies] = ACTIONS(2087), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [sym__automatic_semicolon] = ACTIONS(2323), - [sym__ternary_qmark] = ACTIONS(2091), + [368] = { + [sym_comment] = STATE(368), + [sym_identifier] = ACTIONS(2225), + [anon_sym_export] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_default] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_as] = ACTIONS(2227), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_COMMA] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_typeof] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_with] = ACTIONS(2225), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_in] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_debugger] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_case] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LTtemplate_GT] = ACTIONS(2225), + [anon_sym_GT] = ACTIONS(2227), + [anon_sym_DOT] = ACTIONS(2227), + [anon_sym_DQUOTE] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_QMARK_DOT] = ACTIONS(2227), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [anon_sym_AMP_AMP] = ACTIONS(2227), + [anon_sym_PIPE_PIPE] = ACTIONS(2227), + [anon_sym_GT_GT] = ACTIONS(2227), + [anon_sym_GT_GT_GT] = ACTIONS(2227), + [anon_sym_LT_LT] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_PERCENT] = ACTIONS(2227), + [anon_sym_STAR_STAR] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_LT_EQ] = ACTIONS(2227), + [anon_sym_EQ_EQ] = ACTIONS(2227), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2227), + [anon_sym_GT_EQ] = ACTIONS(2227), + [anon_sym_QMARK_QMARK] = ACTIONS(2227), + [anon_sym_instanceof] = ACTIONS(2227), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_void] = ACTIONS(2225), + [anon_sym_delete] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2225), + [sym_number] = ACTIONS(2225), + [sym_private_property_identifier] = ACTIONS(2225), + [sym_this] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_null] = ACTIONS(2225), + [sym_undefined] = ACTIONS(2225), + [anon_sym_AT] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_readonly] = ACTIONS(2225), + [anon_sym_get] = ACTIONS(2225), + [anon_sym_set] = ACTIONS(2225), + [anon_sym_declare] = ACTIONS(2225), + [anon_sym_public] = ACTIONS(2225), + [anon_sym_private] = ACTIONS(2225), + [anon_sym_protected] = ACTIONS(2225), + [anon_sym_override] = ACTIONS(2225), + [anon_sym_module] = ACTIONS(2225), + [anon_sym_any] = ACTIONS(2225), + [anon_sym_number] = ACTIONS(2225), + [anon_sym_boolean] = ACTIONS(2225), + [anon_sym_string] = ACTIONS(2225), + [anon_sym_symbol] = ACTIONS(2225), + [anon_sym_object] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_satisfies] = ACTIONS(2227), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [sym__automatic_semicolon] = ACTIONS(2301), + [sym__ternary_qmark] = ACTIONS(2231), [sym_html_comment] = ACTIONS(5), }, - [376] = { - [sym_import] = STATE(4369), + [369] = { + [sym_import] = STATE(4290), [sym_expression_statement] = STATE(465), [sym_empty_statement] = STATE(465), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2679), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(7092), - [sym_string] = STATE(3113), - [sym_comment] = STATE(376), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2478), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6755), + [sym_string] = STATE(2940), + [sym_comment] = STATE(369), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -82499,10 +81421,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -82524,217 +81446,877 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [377] = { - [sym_comment] = STATE(377), - [sym_identifier] = ACTIONS(2117), - [anon_sym_export] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_default] = ACTIONS(2117), - [anon_sym_type] = ACTIONS(2117), - [anon_sym_as] = ACTIONS(2119), - [anon_sym_namespace] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_typeof] = ACTIONS(2117), - [anon_sym_import] = ACTIONS(2117), - [anon_sym_with] = ACTIONS(2117), - [anon_sym_var] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_switch] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_await] = ACTIONS(2117), - [anon_sym_in] = ACTIONS(2119), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_try] = 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(2117), - [anon_sym_case] = ACTIONS(2117), - [anon_sym_yield] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_LTtemplate_GT] = ACTIONS(2117), - [anon_sym_GT] = ACTIONS(2119), - [anon_sym_DOT] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2117), - [anon_sym_class] = ACTIONS(2117), - [anon_sym_async] = ACTIONS(2117), - [anon_sym_function] = ACTIONS(2117), - [anon_sym_QMARK_DOT] = ACTIONS(2119), - [anon_sym_new] = ACTIONS(2117), - [anon_sym_using] = ACTIONS(2117), - [anon_sym_AMP_AMP] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2119), - [anon_sym_GT_GT] = ACTIONS(2119), - [anon_sym_GT_GT_GT] = ACTIONS(2119), - [anon_sym_LT_LT] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_SLASH] = ACTIONS(2117), - [anon_sym_PERCENT] = ACTIONS(2119), - [anon_sym_STAR_STAR] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_LT_EQ] = ACTIONS(2119), - [anon_sym_EQ_EQ] = ACTIONS(2119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2119), - [anon_sym_BANG_EQ] = ACTIONS(2119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2119), - [anon_sym_GT_EQ] = ACTIONS(2119), - [anon_sym_QMARK_QMARK] = ACTIONS(2119), - [anon_sym_instanceof] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_void] = ACTIONS(2117), - [anon_sym_delete] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2117), - [sym_number] = ACTIONS(2117), - [sym_private_property_identifier] = ACTIONS(2117), - [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(2117), - [anon_sym_static] = ACTIONS(2117), - [anon_sym_readonly] = ACTIONS(2117), - [anon_sym_get] = ACTIONS(2117), - [anon_sym_set] = ACTIONS(2117), - [anon_sym_declare] = ACTIONS(2117), - [anon_sym_public] = ACTIONS(2117), - [anon_sym_private] = ACTIONS(2117), - [anon_sym_protected] = ACTIONS(2117), - [anon_sym_override] = ACTIONS(2117), - [anon_sym_module] = ACTIONS(2117), - [anon_sym_any] = ACTIONS(2117), - [anon_sym_number] = ACTIONS(2117), - [anon_sym_boolean] = ACTIONS(2117), - [anon_sym_string] = ACTIONS(2117), - [anon_sym_symbol] = ACTIONS(2117), - [anon_sym_object] = ACTIONS(2117), - [anon_sym_abstract] = ACTIONS(2117), - [anon_sym_satisfies] = ACTIONS(2119), - [anon_sym_interface] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [sym__automatic_semicolon] = ACTIONS(2325), - [sym__ternary_qmark] = ACTIONS(2123), + [370] = { + [sym_import] = STATE(4242), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2874), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(370), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym__type_query_member_expression] = STATE(3599), + [sym__type_query_subscript_expression] = STATE(3600), + [sym__type_query_call_expression] = STATE(3656), + [sym__type_query_instantiation_expression] = STATE(3722), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2303), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1574), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1592), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [378] = { - [sym_import] = STATE(4275), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3373), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(378), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym__type_query_member_expression] = STATE(3745), - [sym__type_query_subscript_expression] = STATE(3744), - [sym__type_query_call_expression] = STATE(3813), - [sym__type_query_instantiation_expression] = STATE(3926), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2327), + [371] = { + [sym_statement_block] = STATE(452), + [sym_comment] = STATE(371), + [ts_builtin_sym_end] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(2307), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_STAR_STAR] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), + [anon_sym_QMARK_QMARK] = ACTIONS(2057), + [anon_sym_instanceof] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_satisfies] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(2061), + [sym__ternary_qmark] = ACTIONS(2061), + [sym_html_comment] = ACTIONS(5), + }, + [372] = { + [sym_statement_block] = STATE(452), + [sym_comment] = STATE(372), + [ts_builtin_sym_end] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(2309), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_STAR_STAR] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), + [anon_sym_QMARK_QMARK] = ACTIONS(2057), + [anon_sym_instanceof] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_satisfies] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(2061), + [sym__ternary_qmark] = ACTIONS(2061), + [sym_html_comment] = ACTIONS(5), + }, + [373] = { + [sym_statement_block] = STATE(452), + [sym_comment] = STATE(373), + [ts_builtin_sym_end] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(2305), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_QMARK_DOT] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_STAR_STAR] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), + [anon_sym_QMARK_QMARK] = ACTIONS(2057), + [anon_sym_instanceof] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_satisfies] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym__automatic_semicolon] = ACTIONS(2061), + [sym__ternary_qmark] = ACTIONS(2061), + [sym_html_comment] = ACTIONS(5), + }, + [374] = { + [sym_comment] = STATE(374), + [ts_builtin_sym_end] = ACTIONS(2253), + [sym_identifier] = ACTIONS(2251), + [anon_sym_export] = ACTIONS(2251), + [anon_sym_STAR] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_as] = ACTIONS(2251), + [anon_sym_namespace] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_COMMA] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_typeof] = ACTIONS(2251), + [anon_sym_import] = ACTIONS(2251), + [anon_sym_with] = ACTIONS(2251), + [anon_sym_var] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_else] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_switch] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_in] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [anon_sym_do] = ACTIONS(2251), + [anon_sym_try] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_debugger] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_throw] = ACTIONS(2251), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym_yield] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(2251), + [anon_sym_LTtemplate_GT] = ACTIONS(2251), + [anon_sym_GT] = ACTIONS(2251), + [anon_sym_DOT] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_class] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_function] = ACTIONS(2251), + [anon_sym_QMARK_DOT] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2251), + [anon_sym_using] = ACTIONS(2251), + [anon_sym_AMP_AMP] = ACTIONS(2251), + [anon_sym_PIPE_PIPE] = ACTIONS(2251), + [anon_sym_GT_GT] = ACTIONS(2251), + [anon_sym_GT_GT_GT] = ACTIONS(2251), + [anon_sym_LT_LT] = ACTIONS(2251), + [anon_sym_AMP] = ACTIONS(2251), + [anon_sym_CARET] = ACTIONS(2251), + [anon_sym_PIPE] = ACTIONS(2251), + [anon_sym_PLUS] = ACTIONS(2251), + [anon_sym_DASH] = ACTIONS(2251), + [anon_sym_SLASH] = ACTIONS(2251), + [anon_sym_PERCENT] = ACTIONS(2251), + [anon_sym_STAR_STAR] = ACTIONS(2251), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_LT_EQ] = ACTIONS(2251), + [anon_sym_EQ_EQ] = ACTIONS(2251), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2251), + [anon_sym_BANG_EQ] = ACTIONS(2251), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2251), + [anon_sym_GT_EQ] = ACTIONS(2251), + [anon_sym_QMARK_QMARK] = ACTIONS(2251), + [anon_sym_instanceof] = ACTIONS(2251), + [anon_sym_TILDE] = ACTIONS(2251), + [anon_sym_void] = ACTIONS(2251), + [anon_sym_delete] = ACTIONS(2251), + [anon_sym_PLUS_PLUS] = ACTIONS(2251), + [anon_sym_DASH_DASH] = ACTIONS(2251), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2251), + [sym_number] = ACTIONS(2251), + [sym_private_property_identifier] = ACTIONS(2251), + [sym_this] = ACTIONS(2251), + [sym_super] = ACTIONS(2251), + [sym_true] = ACTIONS(2251), + [sym_false] = ACTIONS(2251), + [sym_null] = ACTIONS(2251), + [sym_undefined] = ACTIONS(2251), + [anon_sym_AT] = ACTIONS(2251), + [anon_sym_static] = ACTIONS(2251), + [anon_sym_readonly] = ACTIONS(2251), + [anon_sym_get] = ACTIONS(2251), + [anon_sym_set] = ACTIONS(2251), + [anon_sym_declare] = ACTIONS(2251), + [anon_sym_public] = ACTIONS(2251), + [anon_sym_private] = ACTIONS(2251), + [anon_sym_protected] = ACTIONS(2251), + [anon_sym_override] = ACTIONS(2251), + [anon_sym_module] = ACTIONS(2251), + [anon_sym_any] = ACTIONS(2251), + [anon_sym_number] = ACTIONS(2251), + [anon_sym_boolean] = ACTIONS(2251), + [anon_sym_string] = ACTIONS(2251), + [anon_sym_symbol] = ACTIONS(2251), + [anon_sym_object] = ACTIONS(2251), + [anon_sym_abstract] = ACTIONS(2251), + [anon_sym_satisfies] = ACTIONS(2251), + [anon_sym_interface] = ACTIONS(2251), + [anon_sym_enum] = ACTIONS(2251), + [sym__automatic_semicolon] = ACTIONS(2253), + [sym__ternary_qmark] = ACTIONS(2253), + [sym_html_comment] = ACTIONS(5), + }, + [375] = { + [sym_comment] = STATE(375), + [sym_identifier] = ACTIONS(2083), + [anon_sym_export] = ACTIONS(2083), + [anon_sym_STAR] = ACTIONS(2085), + [anon_sym_default] = ACTIONS(2083), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_as] = ACTIONS(2085), + [anon_sym_namespace] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_COMMA] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_typeof] = ACTIONS(2083), + [anon_sym_import] = ACTIONS(2083), + [anon_sym_with] = ACTIONS(2083), + [anon_sym_var] = ACTIONS(2083), + [anon_sym_let] = ACTIONS(2083), + [anon_sym_const] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_if] = ACTIONS(2083), + [anon_sym_switch] = ACTIONS(2083), + [anon_sym_for] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_await] = ACTIONS(2083), + [anon_sym_in] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2083), + [anon_sym_do] = ACTIONS(2083), + [anon_sym_try] = ACTIONS(2083), + [anon_sym_break] = ACTIONS(2083), + [anon_sym_continue] = ACTIONS(2083), + [anon_sym_debugger] = ACTIONS(2083), + [anon_sym_return] = ACTIONS(2083), + [anon_sym_throw] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_case] = ACTIONS(2083), + [anon_sym_yield] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LTtemplate_GT] = ACTIONS(2083), + [anon_sym_GT] = ACTIONS(2085), + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2083), + [anon_sym_SQUOTE] = ACTIONS(2083), + [anon_sym_class] = ACTIONS(2083), + [anon_sym_async] = ACTIONS(2083), + [anon_sym_function] = ACTIONS(2083), + [anon_sym_QMARK_DOT] = ACTIONS(2085), + [anon_sym_new] = ACTIONS(2083), + [anon_sym_using] = ACTIONS(2083), + [anon_sym_AMP_AMP] = ACTIONS(2085), + [anon_sym_PIPE_PIPE] = ACTIONS(2085), + [anon_sym_GT_GT] = ACTIONS(2085), + [anon_sym_GT_GT_GT] = ACTIONS(2085), + [anon_sym_LT_LT] = ACTIONS(2085), + [anon_sym_AMP] = ACTIONS(2085), + [anon_sym_CARET] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(2083), + [anon_sym_PERCENT] = ACTIONS(2085), + [anon_sym_STAR_STAR] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_LT_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), + [anon_sym_BANG_EQ] = ACTIONS(2085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), + [anon_sym_GT_EQ] = ACTIONS(2085), + [anon_sym_QMARK_QMARK] = ACTIONS(2085), + [anon_sym_instanceof] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_void] = ACTIONS(2083), + [anon_sym_delete] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2083), + [sym_number] = ACTIONS(2083), + [sym_private_property_identifier] = ACTIONS(2083), + [sym_this] = ACTIONS(2083), + [sym_super] = ACTIONS(2083), + [sym_true] = ACTIONS(2083), + [sym_false] = ACTIONS(2083), + [sym_null] = ACTIONS(2083), + [sym_undefined] = ACTIONS(2083), + [anon_sym_AT] = ACTIONS(2083), + [anon_sym_static] = ACTIONS(2083), + [anon_sym_readonly] = ACTIONS(2083), + [anon_sym_get] = ACTIONS(2083), + [anon_sym_set] = ACTIONS(2083), + [anon_sym_declare] = ACTIONS(2083), + [anon_sym_public] = ACTIONS(2083), + [anon_sym_private] = ACTIONS(2083), + [anon_sym_protected] = ACTIONS(2083), + [anon_sym_override] = ACTIONS(2083), + [anon_sym_module] = ACTIONS(2083), + [anon_sym_any] = ACTIONS(2083), + [anon_sym_number] = ACTIONS(2083), + [anon_sym_boolean] = ACTIONS(2083), + [anon_sym_string] = ACTIONS(2083), + [anon_sym_symbol] = ACTIONS(2083), + [anon_sym_object] = ACTIONS(2083), + [anon_sym_abstract] = ACTIONS(2083), + [anon_sym_satisfies] = ACTIONS(2085), + [anon_sym_interface] = ACTIONS(2083), + [anon_sym_enum] = ACTIONS(2083), + [sym__automatic_semicolon] = ACTIONS(2311), + [sym__ternary_qmark] = ACTIONS(2089), + [sym_html_comment] = ACTIONS(5), + }, + [376] = { + [sym_comment] = STATE(376), + [ts_builtin_sym_end] = ACTIONS(2313), + [sym_identifier] = ACTIONS(2129), + [anon_sym_export] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2131), + [anon_sym_namespace] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2129), + [anon_sym_COMMA] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2129), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_import] = ACTIONS(2129), + [anon_sym_with] = ACTIONS(2129), + [anon_sym_var] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_else] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_in] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_debugger] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_throw] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2129), + [anon_sym_yield] = ACTIONS(2129), + [anon_sym_LBRACK] = ACTIONS(2129), + [anon_sym_LTtemplate_GT] = ACTIONS(2129), + [anon_sym_GT] = ACTIONS(2131), + [anon_sym_DOT] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_class] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_function] = ACTIONS(2129), + [anon_sym_QMARK_DOT] = ACTIONS(2131), + [anon_sym_new] = ACTIONS(2129), + [anon_sym_using] = ACTIONS(2129), + [anon_sym_AMP_AMP] = ACTIONS(2131), + [anon_sym_PIPE_PIPE] = ACTIONS(2131), + [anon_sym_GT_GT] = ACTIONS(2131), + [anon_sym_GT_GT_GT] = ACTIONS(2131), + [anon_sym_LT_LT] = ACTIONS(2131), + [anon_sym_AMP] = ACTIONS(2131), + [anon_sym_CARET] = ACTIONS(2131), + [anon_sym_PIPE] = ACTIONS(2131), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_SLASH] = ACTIONS(2129), + [anon_sym_PERCENT] = ACTIONS(2131), + [anon_sym_STAR_STAR] = ACTIONS(2131), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_LT_EQ] = ACTIONS(2131), + [anon_sym_EQ_EQ] = ACTIONS(2131), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2131), + [anon_sym_BANG_EQ] = ACTIONS(2131), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2131), + [anon_sym_GT_EQ] = ACTIONS(2131), + [anon_sym_QMARK_QMARK] = ACTIONS(2131), + [anon_sym_instanceof] = ACTIONS(2131), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_void] = ACTIONS(2129), + [anon_sym_delete] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2129), + [sym_number] = ACTIONS(2129), + [sym_private_property_identifier] = ACTIONS(2129), + [sym_this] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_true] = ACTIONS(2129), + [sym_false] = ACTIONS(2129), + [sym_null] = ACTIONS(2129), + [sym_undefined] = ACTIONS(2129), + [anon_sym_AT] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_readonly] = ACTIONS(2129), + [anon_sym_get] = ACTIONS(2129), + [anon_sym_set] = ACTIONS(2129), + [anon_sym_declare] = ACTIONS(2129), + [anon_sym_public] = ACTIONS(2129), + [anon_sym_private] = ACTIONS(2129), + [anon_sym_protected] = ACTIONS(2129), + [anon_sym_override] = ACTIONS(2129), + [anon_sym_module] = ACTIONS(2129), + [anon_sym_any] = ACTIONS(2129), + [anon_sym_number] = ACTIONS(2129), + [anon_sym_boolean] = ACTIONS(2129), + [anon_sym_string] = ACTIONS(2129), + [anon_sym_symbol] = ACTIONS(2129), + [anon_sym_object] = ACTIONS(2129), + [anon_sym_abstract] = ACTIONS(2129), + [anon_sym_satisfies] = ACTIONS(2131), + [anon_sym_interface] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [sym__automatic_semicolon] = ACTIONS(2315), + [sym__ternary_qmark] = ACTIONS(2135), + [sym_html_comment] = ACTIONS(5), + }, + [377] = { + [sym_import] = STATE(4242), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3209), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(377), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym__type_query_member_expression] = STATE(3599), + [sym__type_query_subscript_expression] = STATE(3600), + [sym__type_query_call_expression] = STATE(3656), + [sym__type_query_instantiation_expression] = STATE(3722), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2317), [anon_sym_export] = ACTIONS(1097), [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -82742,7 +82324,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -82762,199 +82344,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, + [378] = { + [sym_comment] = STATE(378), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2069), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_EQ] = ACTIONS(2071), + [anon_sym_as] = ACTIONS(2069), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_COMMA] = ACTIONS(2069), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_in] = ACTIONS(2069), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2069), + [anon_sym_DOT] = ACTIONS(2069), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_QMARK_DOT] = ACTIONS(2069), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2069), + [anon_sym_PIPE_PIPE] = ACTIONS(2069), + [anon_sym_GT_GT] = ACTIONS(2069), + [anon_sym_GT_GT_GT] = ACTIONS(2069), + [anon_sym_LT_LT] = ACTIONS(2069), + [anon_sym_AMP] = ACTIONS(2069), + [anon_sym_CARET] = ACTIONS(2069), + [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_PERCENT] = ACTIONS(2069), + [anon_sym_STAR_STAR] = ACTIONS(2069), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_LT_EQ] = ACTIONS(2069), + [anon_sym_EQ_EQ] = ACTIONS(2069), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2069), + [anon_sym_BANG_EQ] = ACTIONS(2069), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2069), + [anon_sym_GT_EQ] = ACTIONS(2069), + [anon_sym_QMARK_QMARK] = ACTIONS(2069), + [anon_sym_instanceof] = ACTIONS(2069), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_satisfies] = ACTIONS(2069), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [sym__automatic_semicolon] = ACTIONS(2319), + [sym__ternary_qmark] = ACTIONS(2075), + [sym_html_comment] = ACTIONS(5), + }, [379] = { + [sym_import] = STATE(4107), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2617), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(379), - [sym_identifier] = ACTIONS(2159), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2161), - [anon_sym_default] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2161), - [anon_sym_namespace] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2161), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_typeof] = ACTIONS(2159), - [anon_sym_import] = ACTIONS(2159), - [anon_sym_with] = ACTIONS(2159), - [anon_sym_var] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_switch] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2159), - [anon_sym_in] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_debugger] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_throw] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_case] = ACTIONS(2159), - [anon_sym_yield] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LTtemplate_GT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2161), - [anon_sym_DOT] = ACTIONS(2161), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_class] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_function] = ACTIONS(2159), - [anon_sym_QMARK_DOT] = ACTIONS(2161), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_using] = ACTIONS(2159), - [anon_sym_AMP_AMP] = ACTIONS(2161), - [anon_sym_PIPE_PIPE] = ACTIONS(2161), - [anon_sym_GT_GT] = ACTIONS(2161), - [anon_sym_GT_GT_GT] = ACTIONS(2161), - [anon_sym_LT_LT] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2161), - [anon_sym_CARET] = ACTIONS(2161), - [anon_sym_PIPE] = ACTIONS(2161), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2161), - [anon_sym_STAR_STAR] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_LT_EQ] = ACTIONS(2161), - [anon_sym_EQ_EQ] = ACTIONS(2161), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2161), - [anon_sym_BANG_EQ] = ACTIONS(2161), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2161), - [anon_sym_GT_EQ] = ACTIONS(2161), - [anon_sym_QMARK_QMARK] = ACTIONS(2161), - [anon_sym_instanceof] = ACTIONS(2161), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_void] = ACTIONS(2159), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2159), - [sym_number] = ACTIONS(2159), - [sym_private_property_identifier] = ACTIONS(2159), - [sym_this] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_null] = ACTIONS(2159), - [sym_undefined] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [anon_sym_static] = ACTIONS(2159), - [anon_sym_readonly] = ACTIONS(2159), - [anon_sym_get] = ACTIONS(2159), - [anon_sym_set] = ACTIONS(2159), - [anon_sym_declare] = ACTIONS(2159), - [anon_sym_public] = ACTIONS(2159), - [anon_sym_private] = ACTIONS(2159), - [anon_sym_protected] = ACTIONS(2159), - [anon_sym_override] = ACTIONS(2159), - [anon_sym_module] = ACTIONS(2159), - [anon_sym_any] = ACTIONS(2159), - [anon_sym_number] = ACTIONS(2159), - [anon_sym_boolean] = ACTIONS(2159), - [anon_sym_string] = ACTIONS(2159), - [anon_sym_symbol] = ACTIONS(2159), - [anon_sym_object] = ACTIONS(2159), - [anon_sym_abstract] = ACTIONS(2159), - [anon_sym_satisfies] = ACTIONS(2161), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [sym__automatic_semicolon] = ACTIONS(2329), - [sym__ternary_qmark] = ACTIONS(2165), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym__type_query_member_expression] = STATE(3599), + [sym__type_query_subscript_expression] = STATE(3600), + [sym__type_query_call_expression] = STATE(3656), + [sym__type_query_instantiation_expression] = STATE(3722), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2321), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1370), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1394), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, [380] = { - [sym_import] = STATE(4275), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3373), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4242), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3209), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(380), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym__type_query_member_expression] = STATE(3745), - [sym__type_query_subscript_expression] = STATE(3744), - [sym__type_query_call_expression] = STATE(3813), - [sym__type_query_instantiation_expression] = STATE(3926), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2331), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym__type_query_member_expression] = STATE(3599), + [sym__type_query_subscript_expression] = STATE(3600), + [sym__type_query_call_expression] = STATE(3656), + [sym__type_query_instantiation_expression] = STATE(3722), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2323), [anon_sym_export] = ACTIONS(1097), [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -82962,7 +82654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -82984,602 +82676,492 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [381] = { [sym_comment] = STATE(381), - [sym_identifier] = ACTIONS(2199), - [anon_sym_export] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(2199), - [anon_sym_default] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2199), - [anon_sym_as] = ACTIONS(2199), - [anon_sym_namespace] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_COMMA] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_typeof] = ACTIONS(2199), - [anon_sym_import] = ACTIONS(2199), - [anon_sym_with] = ACTIONS(2199), - [anon_sym_var] = ACTIONS(2199), - [anon_sym_let] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_switch] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_await] = ACTIONS(2199), - [anon_sym_in] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2199), - [anon_sym_do] = ACTIONS(2199), - [anon_sym_try] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_debugger] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_throw] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_case] = ACTIONS(2199), - [anon_sym_yield] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_LTtemplate_GT] = ACTIONS(2199), - [anon_sym_GT] = ACTIONS(2199), - [anon_sym_DOT] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2199), - [anon_sym_SQUOTE] = ACTIONS(2199), - [anon_sym_class] = ACTIONS(2199), - [anon_sym_async] = ACTIONS(2199), - [anon_sym_function] = ACTIONS(2199), - [anon_sym_QMARK_DOT] = ACTIONS(2199), - [anon_sym_new] = ACTIONS(2199), - [anon_sym_using] = ACTIONS(2199), - [anon_sym_AMP_AMP] = ACTIONS(2199), - [anon_sym_PIPE_PIPE] = ACTIONS(2199), - [anon_sym_GT_GT] = ACTIONS(2199), - [anon_sym_GT_GT_GT] = ACTIONS(2199), - [anon_sym_LT_LT] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_PIPE] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_SLASH] = ACTIONS(2199), - [anon_sym_PERCENT] = ACTIONS(2199), - [anon_sym_STAR_STAR] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2199), - [anon_sym_LT_EQ] = ACTIONS(2199), - [anon_sym_EQ_EQ] = ACTIONS(2199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2199), - [anon_sym_GT_EQ] = ACTIONS(2199), - [anon_sym_QMARK_QMARK] = ACTIONS(2199), - [anon_sym_instanceof] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_void] = ACTIONS(2199), - [anon_sym_delete] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2199), - [sym_number] = ACTIONS(2199), - [sym_private_property_identifier] = ACTIONS(2199), - [sym_this] = ACTIONS(2199), - [sym_super] = ACTIONS(2199), - [sym_true] = ACTIONS(2199), - [sym_false] = ACTIONS(2199), - [sym_null] = ACTIONS(2199), - [sym_undefined] = ACTIONS(2199), - [anon_sym_AT] = ACTIONS(2199), - [anon_sym_static] = ACTIONS(2199), - [anon_sym_readonly] = ACTIONS(2199), - [anon_sym_get] = ACTIONS(2199), - [anon_sym_set] = ACTIONS(2199), - [anon_sym_declare] = ACTIONS(2199), - [anon_sym_public] = ACTIONS(2199), - [anon_sym_private] = ACTIONS(2199), - [anon_sym_protected] = ACTIONS(2199), - [anon_sym_override] = ACTIONS(2199), - [anon_sym_module] = ACTIONS(2199), - [anon_sym_any] = ACTIONS(2199), - [anon_sym_number] = ACTIONS(2199), - [anon_sym_boolean] = ACTIONS(2199), - [anon_sym_string] = ACTIONS(2199), - [anon_sym_symbol] = ACTIONS(2199), - [anon_sym_object] = ACTIONS(2199), - [anon_sym_abstract] = ACTIONS(2199), - [anon_sym_satisfies] = ACTIONS(2199), - [anon_sym_interface] = ACTIONS(2199), - [anon_sym_enum] = ACTIONS(2199), - [sym__automatic_semicolon] = ACTIONS(2201), - [sym__ternary_qmark] = ACTIONS(2201), + [ts_builtin_sym_end] = ACTIONS(2127), + [sym_identifier] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_COMMA] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_typeof] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2125), + [anon_sym_with] = ACTIONS(2125), + [anon_sym_var] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_else] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_in] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_debugger] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LTtemplate_GT] = ACTIONS(2125), + [anon_sym_GT] = ACTIONS(2125), + [anon_sym_DOT] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_QMARK_DOT] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [anon_sym_AMP_AMP] = ACTIONS(2125), + [anon_sym_PIPE_PIPE] = ACTIONS(2125), + [anon_sym_GT_GT] = ACTIONS(2125), + [anon_sym_GT_GT_GT] = ACTIONS(2125), + [anon_sym_LT_LT] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_PERCENT] = ACTIONS(2125), + [anon_sym_STAR_STAR] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_LT_EQ] = ACTIONS(2125), + [anon_sym_EQ_EQ] = ACTIONS(2125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), + [anon_sym_BANG_EQ] = ACTIONS(2125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), + [anon_sym_GT_EQ] = ACTIONS(2125), + [anon_sym_QMARK_QMARK] = ACTIONS(2125), + [anon_sym_instanceof] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_void] = ACTIONS(2125), + [anon_sym_delete] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2125), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(2125), + [sym_this] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [sym_undefined] = ACTIONS(2125), + [anon_sym_AT] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_readonly] = ACTIONS(2125), + [anon_sym_get] = ACTIONS(2125), + [anon_sym_set] = ACTIONS(2125), + [anon_sym_declare] = ACTIONS(2125), + [anon_sym_public] = ACTIONS(2125), + [anon_sym_private] = ACTIONS(2125), + [anon_sym_protected] = ACTIONS(2125), + [anon_sym_override] = ACTIONS(2125), + [anon_sym_module] = ACTIONS(2125), + [anon_sym_any] = ACTIONS(2125), + [anon_sym_number] = ACTIONS(2125), + [anon_sym_boolean] = ACTIONS(2125), + [anon_sym_string] = ACTIONS(2125), + [anon_sym_symbol] = ACTIONS(2125), + [anon_sym_object] = ACTIONS(2125), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_satisfies] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [sym__automatic_semicolon] = ACTIONS(2127), + [sym__ternary_qmark] = ACTIONS(2127), [sym_html_comment] = ACTIONS(5), }, [382] = { [sym_comment] = STATE(382), - [sym_identifier] = ACTIONS(2203), - [anon_sym_export] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2203), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_namespace] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_COMMA] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_typeof] = ACTIONS(2203), - [anon_sym_import] = ACTIONS(2203), - [anon_sym_with] = ACTIONS(2203), - [anon_sym_var] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_switch] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2203), - [anon_sym_in] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [anon_sym_do] = ACTIONS(2203), - [anon_sym_try] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_debugger] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_throw] = ACTIONS(2203), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_case] = ACTIONS(2203), - [anon_sym_yield] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_LTtemplate_GT] = ACTIONS(2203), - [anon_sym_GT] = ACTIONS(2203), - [anon_sym_DOT] = ACTIONS(2203), - [anon_sym_DQUOTE] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_class] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_function] = ACTIONS(2203), - [anon_sym_QMARK_DOT] = ACTIONS(2203), - [anon_sym_new] = ACTIONS(2203), - [anon_sym_using] = ACTIONS(2203), - [anon_sym_AMP_AMP] = ACTIONS(2203), - [anon_sym_PIPE_PIPE] = ACTIONS(2203), - [anon_sym_GT_GT] = ACTIONS(2203), - [anon_sym_GT_GT_GT] = ACTIONS(2203), - [anon_sym_LT_LT] = ACTIONS(2203), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_CARET] = ACTIONS(2203), - [anon_sym_PIPE] = ACTIONS(2203), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_SLASH] = ACTIONS(2203), - [anon_sym_PERCENT] = ACTIONS(2203), - [anon_sym_STAR_STAR] = ACTIONS(2203), - [anon_sym_LT] = ACTIONS(2203), - [anon_sym_LT_EQ] = ACTIONS(2203), - [anon_sym_EQ_EQ] = ACTIONS(2203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2203), - [anon_sym_BANG_EQ] = ACTIONS(2203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2203), - [anon_sym_GT_EQ] = ACTIONS(2203), - [anon_sym_QMARK_QMARK] = ACTIONS(2203), - [anon_sym_instanceof] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(2203), - [anon_sym_delete] = ACTIONS(2203), - [anon_sym_PLUS_PLUS] = ACTIONS(2203), - [anon_sym_DASH_DASH] = ACTIONS(2203), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2203), - [sym_number] = ACTIONS(2203), - [sym_private_property_identifier] = ACTIONS(2203), - [sym_this] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_true] = ACTIONS(2203), - [sym_false] = ACTIONS(2203), - [sym_null] = ACTIONS(2203), - [sym_undefined] = ACTIONS(2203), - [anon_sym_AT] = ACTIONS(2203), - [anon_sym_static] = ACTIONS(2203), - [anon_sym_readonly] = ACTIONS(2203), - [anon_sym_get] = ACTIONS(2203), - [anon_sym_set] = ACTIONS(2203), - [anon_sym_declare] = ACTIONS(2203), - [anon_sym_public] = ACTIONS(2203), - [anon_sym_private] = ACTIONS(2203), - [anon_sym_protected] = ACTIONS(2203), - [anon_sym_override] = ACTIONS(2203), - [anon_sym_module] = ACTIONS(2203), - [anon_sym_any] = ACTIONS(2203), - [anon_sym_number] = ACTIONS(2203), - [anon_sym_boolean] = ACTIONS(2203), - [anon_sym_string] = ACTIONS(2203), - [anon_sym_symbol] = ACTIONS(2203), - [anon_sym_object] = ACTIONS(2203), - [anon_sym_abstract] = ACTIONS(2203), - [anon_sym_satisfies] = ACTIONS(2203), - [anon_sym_interface] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [sym__automatic_semicolon] = ACTIONS(2205), - [sym__ternary_qmark] = ACTIONS(2205), + [ts_builtin_sym_end] = ACTIONS(2325), + [sym_identifier] = ACTIONS(2225), + [anon_sym_export] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_as] = ACTIONS(2227), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_COMMA] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_typeof] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_with] = ACTIONS(2225), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_else] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_in] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_debugger] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LTtemplate_GT] = ACTIONS(2225), + [anon_sym_GT] = ACTIONS(2227), + [anon_sym_DOT] = ACTIONS(2227), + [anon_sym_DQUOTE] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_QMARK_DOT] = ACTIONS(2227), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [anon_sym_AMP_AMP] = ACTIONS(2227), + [anon_sym_PIPE_PIPE] = ACTIONS(2227), + [anon_sym_GT_GT] = ACTIONS(2227), + [anon_sym_GT_GT_GT] = ACTIONS(2227), + [anon_sym_LT_LT] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_PERCENT] = ACTIONS(2227), + [anon_sym_STAR_STAR] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_LT_EQ] = ACTIONS(2227), + [anon_sym_EQ_EQ] = ACTIONS(2227), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2227), + [anon_sym_GT_EQ] = ACTIONS(2227), + [anon_sym_QMARK_QMARK] = ACTIONS(2227), + [anon_sym_instanceof] = ACTIONS(2227), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_void] = ACTIONS(2225), + [anon_sym_delete] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2225), + [sym_number] = ACTIONS(2225), + [sym_private_property_identifier] = ACTIONS(2225), + [sym_this] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_null] = ACTIONS(2225), + [sym_undefined] = ACTIONS(2225), + [anon_sym_AT] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_readonly] = ACTIONS(2225), + [anon_sym_get] = ACTIONS(2225), + [anon_sym_set] = ACTIONS(2225), + [anon_sym_declare] = ACTIONS(2225), + [anon_sym_public] = ACTIONS(2225), + [anon_sym_private] = ACTIONS(2225), + [anon_sym_protected] = ACTIONS(2225), + [anon_sym_override] = ACTIONS(2225), + [anon_sym_module] = ACTIONS(2225), + [anon_sym_any] = ACTIONS(2225), + [anon_sym_number] = ACTIONS(2225), + [anon_sym_boolean] = ACTIONS(2225), + [anon_sym_string] = ACTIONS(2225), + [anon_sym_symbol] = ACTIONS(2225), + [anon_sym_object] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_satisfies] = ACTIONS(2227), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [sym__automatic_semicolon] = ACTIONS(2327), + [sym__ternary_qmark] = ACTIONS(2231), [sym_html_comment] = ACTIONS(5), }, [383] = { - [sym_import] = STATE(4399), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3060), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), [sym_comment] = STATE(383), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym__type_query_member_expression] = STATE(3745), - [sym__type_query_subscript_expression] = STATE(3744), - [sym__type_query_call_expression] = STATE(3813), - [sym__type_query_instantiation_expression] = STATE(3926), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(2333), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [ts_builtin_sym_end] = ACTIONS(2329), + [sym_identifier] = ACTIONS(2241), + [anon_sym_export] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(2243), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_as] = ACTIONS(2243), + [anon_sym_namespace] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2241), + [anon_sym_COMMA] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_typeof] = ACTIONS(2241), + [anon_sym_import] = ACTIONS(2241), + [anon_sym_with] = ACTIONS(2241), + [anon_sym_var] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_else] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_switch] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_await] = ACTIONS(2241), + [anon_sym_in] = ACTIONS(2243), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_do] = ACTIONS(2241), + [anon_sym_try] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_debugger] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_throw] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(2241), + [anon_sym_yield] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_LTtemplate_GT] = ACTIONS(2241), + [anon_sym_GT] = ACTIONS(2243), + [anon_sym_DOT] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_class] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_function] = ACTIONS(2241), + [anon_sym_QMARK_DOT] = ACTIONS(2243), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_using] = ACTIONS(2241), + [anon_sym_AMP_AMP] = ACTIONS(2243), + [anon_sym_PIPE_PIPE] = ACTIONS(2243), + [anon_sym_GT_GT] = ACTIONS(2243), + [anon_sym_GT_GT_GT] = ACTIONS(2243), + [anon_sym_LT_LT] = ACTIONS(2243), + [anon_sym_AMP] = ACTIONS(2243), + [anon_sym_CARET] = ACTIONS(2243), + [anon_sym_PIPE] = ACTIONS(2243), + [anon_sym_PLUS] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_SLASH] = ACTIONS(2241), + [anon_sym_PERCENT] = ACTIONS(2243), + [anon_sym_STAR_STAR] = ACTIONS(2243), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_LT_EQ] = ACTIONS(2243), + [anon_sym_EQ_EQ] = ACTIONS(2243), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2243), + [anon_sym_BANG_EQ] = ACTIONS(2243), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2243), + [anon_sym_GT_EQ] = ACTIONS(2243), + [anon_sym_QMARK_QMARK] = ACTIONS(2243), + [anon_sym_instanceof] = ACTIONS(2243), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_void] = ACTIONS(2241), + [anon_sym_delete] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2241), + [sym_number] = ACTIONS(2241), + [sym_private_property_identifier] = ACTIONS(2241), + [sym_this] = ACTIONS(2241), + [sym_super] = ACTIONS(2241), + [sym_true] = ACTIONS(2241), + [sym_false] = ACTIONS(2241), + [sym_null] = ACTIONS(2241), + [sym_undefined] = ACTIONS(2241), + [anon_sym_AT] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_readonly] = ACTIONS(2241), + [anon_sym_get] = ACTIONS(2241), + [anon_sym_set] = ACTIONS(2241), + [anon_sym_declare] = ACTIONS(2241), + [anon_sym_public] = ACTIONS(2241), + [anon_sym_private] = ACTIONS(2241), + [anon_sym_protected] = ACTIONS(2241), + [anon_sym_override] = ACTIONS(2241), + [anon_sym_module] = ACTIONS(2241), + [anon_sym_any] = ACTIONS(2241), + [anon_sym_number] = ACTIONS(2241), + [anon_sym_boolean] = ACTIONS(2241), + [anon_sym_string] = ACTIONS(2241), + [anon_sym_symbol] = ACTIONS(2241), + [anon_sym_object] = ACTIONS(2241), + [anon_sym_abstract] = ACTIONS(2241), + [anon_sym_satisfies] = ACTIONS(2243), + [anon_sym_interface] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [sym__automatic_semicolon] = ACTIONS(2331), + [sym__ternary_qmark] = ACTIONS(2247), [sym_html_comment] = ACTIONS(5), }, [384] = { [sym_comment] = STATE(384), - [sym_identifier] = ACTIONS(2127), - [anon_sym_export] = ACTIONS(2127), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_default] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2127), - [anon_sym_as] = ACTIONS(2129), - [anon_sym_namespace] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_COMMA] = ACTIONS(2129), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_typeof] = ACTIONS(2127), - [anon_sym_import] = ACTIONS(2127), - [anon_sym_with] = ACTIONS(2127), - [anon_sym_var] = ACTIONS(2127), - [anon_sym_let] = ACTIONS(2127), - [anon_sym_const] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2127), - [anon_sym_switch] = ACTIONS(2127), - [anon_sym_for] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_await] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2127), - [anon_sym_do] = ACTIONS(2127), - [anon_sym_try] = ACTIONS(2127), - [anon_sym_break] = ACTIONS(2127), - [anon_sym_continue] = ACTIONS(2127), - [anon_sym_debugger] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2127), - [anon_sym_throw] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_case] = ACTIONS(2127), - [anon_sym_yield] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_LTtemplate_GT] = ACTIONS(2127), - [anon_sym_GT] = ACTIONS(2129), - [anon_sym_DOT] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2127), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_class] = ACTIONS(2127), - [anon_sym_async] = ACTIONS(2127), - [anon_sym_function] = ACTIONS(2127), - [anon_sym_QMARK_DOT] = ACTIONS(2129), - [anon_sym_new] = ACTIONS(2127), - [anon_sym_using] = ACTIONS(2127), - [anon_sym_AMP_AMP] = ACTIONS(2129), - [anon_sym_PIPE_PIPE] = ACTIONS(2129), - [anon_sym_GT_GT] = ACTIONS(2129), - [anon_sym_GT_GT_GT] = ACTIONS(2129), - [anon_sym_LT_LT] = ACTIONS(2129), - [anon_sym_AMP] = ACTIONS(2129), - [anon_sym_CARET] = ACTIONS(2129), - [anon_sym_PIPE] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2127), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_PERCENT] = ACTIONS(2129), - [anon_sym_STAR_STAR] = ACTIONS(2129), - [anon_sym_LT] = ACTIONS(2127), - [anon_sym_LT_EQ] = ACTIONS(2129), - [anon_sym_EQ_EQ] = ACTIONS(2129), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2129), - [anon_sym_BANG_EQ] = ACTIONS(2129), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2129), - [anon_sym_GT_EQ] = ACTIONS(2129), - [anon_sym_QMARK_QMARK] = ACTIONS(2129), - [anon_sym_instanceof] = ACTIONS(2129), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_void] = ACTIONS(2127), - [anon_sym_delete] = ACTIONS(2127), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2127), - [sym_number] = ACTIONS(2127), - [sym_private_property_identifier] = ACTIONS(2127), - [sym_this] = ACTIONS(2127), - [sym_super] = ACTIONS(2127), - [sym_true] = ACTIONS(2127), - [sym_false] = ACTIONS(2127), - [sym_null] = ACTIONS(2127), - [sym_undefined] = ACTIONS(2127), - [anon_sym_AT] = ACTIONS(2127), - [anon_sym_static] = ACTIONS(2127), - [anon_sym_readonly] = ACTIONS(2127), - [anon_sym_get] = ACTIONS(2127), - [anon_sym_set] = ACTIONS(2127), - [anon_sym_declare] = ACTIONS(2127), - [anon_sym_public] = ACTIONS(2127), - [anon_sym_private] = ACTIONS(2127), - [anon_sym_protected] = ACTIONS(2127), - [anon_sym_override] = ACTIONS(2127), - [anon_sym_module] = ACTIONS(2127), - [anon_sym_any] = ACTIONS(2127), - [anon_sym_number] = ACTIONS(2127), - [anon_sym_boolean] = ACTIONS(2127), - [anon_sym_string] = ACTIONS(2127), - [anon_sym_symbol] = ACTIONS(2127), - [anon_sym_object] = ACTIONS(2127), - [anon_sym_abstract] = ACTIONS(2127), - [anon_sym_satisfies] = ACTIONS(2129), - [anon_sym_interface] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(2127), - [sym__automatic_semicolon] = ACTIONS(2335), - [sym__ternary_qmark] = ACTIONS(2133), + [ts_builtin_sym_end] = ACTIONS(2165), + [sym_identifier] = ACTIONS(2163), + [anon_sym_export] = ACTIONS(2163), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2163), + [anon_sym_as] = ACTIONS(2163), + [anon_sym_namespace] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_typeof] = ACTIONS(2163), + [anon_sym_import] = ACTIONS(2163), + [anon_sym_with] = ACTIONS(2163), + [anon_sym_var] = ACTIONS(2163), + [anon_sym_let] = ACTIONS(2163), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_else] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_switch] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_await] = ACTIONS(2163), + [anon_sym_in] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2163), + [anon_sym_do] = ACTIONS(2163), + [anon_sym_try] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_debugger] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_throw] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_yield] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2163), + [anon_sym_LTtemplate_GT] = ACTIONS(2163), + [anon_sym_GT] = ACTIONS(2163), + [anon_sym_DOT] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [anon_sym_SQUOTE] = ACTIONS(2163), + [anon_sym_class] = ACTIONS(2163), + [anon_sym_async] = ACTIONS(2163), + [anon_sym_function] = ACTIONS(2163), + [anon_sym_QMARK_DOT] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(2163), + [anon_sym_AMP_AMP] = ACTIONS(2163), + [anon_sym_PIPE_PIPE] = ACTIONS(2163), + [anon_sym_GT_GT] = ACTIONS(2163), + [anon_sym_GT_GT_GT] = ACTIONS(2163), + [anon_sym_LT_LT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2163), + [anon_sym_CARET] = ACTIONS(2163), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2163), + [anon_sym_PERCENT] = ACTIONS(2163), + [anon_sym_STAR_STAR] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2163), + [anon_sym_LT_EQ] = ACTIONS(2163), + [anon_sym_EQ_EQ] = ACTIONS(2163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2163), + [anon_sym_GT_EQ] = ACTIONS(2163), + [anon_sym_QMARK_QMARK] = ACTIONS(2163), + [anon_sym_instanceof] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2163), + [anon_sym_void] = ACTIONS(2163), + [anon_sym_delete] = ACTIONS(2163), + [anon_sym_PLUS_PLUS] = ACTIONS(2163), + [anon_sym_DASH_DASH] = ACTIONS(2163), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2163), + [sym_number] = ACTIONS(2163), + [sym_private_property_identifier] = ACTIONS(2163), + [sym_this] = ACTIONS(2163), + [sym_super] = ACTIONS(2163), + [sym_true] = ACTIONS(2163), + [sym_false] = ACTIONS(2163), + [sym_null] = ACTIONS(2163), + [sym_undefined] = ACTIONS(2163), + [anon_sym_AT] = ACTIONS(2163), + [anon_sym_static] = ACTIONS(2163), + [anon_sym_readonly] = ACTIONS(2163), + [anon_sym_get] = ACTIONS(2163), + [anon_sym_set] = ACTIONS(2163), + [anon_sym_declare] = ACTIONS(2163), + [anon_sym_public] = ACTIONS(2163), + [anon_sym_private] = ACTIONS(2163), + [anon_sym_protected] = ACTIONS(2163), + [anon_sym_override] = ACTIONS(2163), + [anon_sym_module] = ACTIONS(2163), + [anon_sym_any] = ACTIONS(2163), + [anon_sym_number] = ACTIONS(2163), + [anon_sym_boolean] = ACTIONS(2163), + [anon_sym_string] = ACTIONS(2163), + [anon_sym_symbol] = ACTIONS(2163), + [anon_sym_object] = ACTIONS(2163), + [anon_sym_abstract] = ACTIONS(2163), + [anon_sym_satisfies] = ACTIONS(2163), + [anon_sym_interface] = ACTIONS(2163), + [anon_sym_enum] = ACTIONS(2163), + [sym__automatic_semicolon] = ACTIONS(2165), + [sym__ternary_qmark] = ACTIONS(2165), [sym_html_comment] = ACTIONS(5), }, [385] = { - [sym_import] = STATE(4275), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3160), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), [sym_comment] = STATE(385), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym__type_query_member_expression] = STATE(3745), - [sym__type_query_subscript_expression] = STATE(3744), - [sym__type_query_call_expression] = STATE(3813), - [sym__type_query_instantiation_expression] = STATE(3926), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2337), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), - [sym_html_comment] = ACTIONS(5), - }, - [386] = { - [sym_comment] = STATE(386), - [sym_identifier] = ACTIONS(2173), - [anon_sym_export] = ACTIONS(2173), + [ts_builtin_sym_end] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2175), [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_default] = ACTIONS(2173), - [anon_sym_type] = ACTIONS(2173), + [anon_sym_type] = ACTIONS(2175), [anon_sym_as] = ACTIONS(2175), - [anon_sym_namespace] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_typeof] = ACTIONS(2173), - [anon_sym_import] = ACTIONS(2173), - [anon_sym_with] = ACTIONS(2173), - [anon_sym_var] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_switch] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_await] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_typeof] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_with] = ACTIONS(2175), + [anon_sym_var] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2175), [anon_sym_in] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_debugger] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_throw] = ACTIONS(2173), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_case] = ACTIONS(2173), - [anon_sym_yield] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_LTtemplate_GT] = ACTIONS(2173), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_debugger] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_throw] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_LTtemplate_GT] = ACTIONS(2175), [anon_sym_GT] = ACTIONS(2175), [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_class] = ACTIONS(2173), - [anon_sym_async] = ACTIONS(2173), - [anon_sym_function] = ACTIONS(2173), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_function] = ACTIONS(2175), [anon_sym_QMARK_DOT] = ACTIONS(2175), - [anon_sym_new] = ACTIONS(2173), - [anon_sym_using] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_using] = ACTIONS(2175), [anon_sym_AMP_AMP] = ACTIONS(2175), [anon_sym_PIPE_PIPE] = ACTIONS(2175), [anon_sym_GT_GT] = ACTIONS(2175), @@ -83588,12 +83170,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2175), [anon_sym_CARET] = ACTIONS(2175), [anon_sym_PIPE] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_SLASH] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), [anon_sym_PERCENT] = ACTIONS(2175), [anon_sym_STAR_STAR] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2175), [anon_sym_LT_EQ] = ACTIONS(2175), [anon_sym_EQ_EQ] = ACTIONS(2175), [anon_sym_EQ_EQ_EQ] = ACTIONS(2175), @@ -83602,681 +83184,571 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2175), [anon_sym_QMARK_QMARK] = ACTIONS(2175), [anon_sym_instanceof] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2173), - [anon_sym_void] = ACTIONS(2173), - [anon_sym_delete] = ACTIONS(2173), - [anon_sym_PLUS_PLUS] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2173), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2173), - [sym_number] = ACTIONS(2173), - [sym_private_property_identifier] = ACTIONS(2173), - [sym_this] = ACTIONS(2173), - [sym_super] = ACTIONS(2173), - [sym_true] = ACTIONS(2173), - [sym_false] = ACTIONS(2173), - [sym_null] = ACTIONS(2173), - [sym_undefined] = ACTIONS(2173), - [anon_sym_AT] = ACTIONS(2173), - [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_abstract] = ACTIONS(2173), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_void] = ACTIONS(2175), + [anon_sym_delete] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2175), + [sym_number] = ACTIONS(2175), + [sym_private_property_identifier] = ACTIONS(2175), + [sym_this] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_null] = ACTIONS(2175), + [sym_undefined] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_readonly] = ACTIONS(2175), + [anon_sym_get] = ACTIONS(2175), + [anon_sym_set] = ACTIONS(2175), + [anon_sym_declare] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_override] = ACTIONS(2175), + [anon_sym_module] = ACTIONS(2175), + [anon_sym_any] = ACTIONS(2175), + [anon_sym_number] = ACTIONS(2175), + [anon_sym_boolean] = ACTIONS(2175), + [anon_sym_string] = ACTIONS(2175), + [anon_sym_symbol] = ACTIONS(2175), + [anon_sym_object] = ACTIONS(2175), + [anon_sym_abstract] = ACTIONS(2175), [anon_sym_satisfies] = ACTIONS(2175), - [anon_sym_interface] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [sym__automatic_semicolon] = ACTIONS(2339), - [sym__ternary_qmark] = ACTIONS(2179), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [sym__automatic_semicolon] = ACTIONS(2177), + [sym__ternary_qmark] = ACTIONS(2177), [sym_html_comment] = ACTIONS(5), }, - [387] = { - [sym_comment] = STATE(387), - [ts_builtin_sym_end] = ACTIONS(2341), - [sym_identifier] = ACTIONS(2085), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_STAR] = ACTIONS(2087), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_as] = ACTIONS(2087), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_COMMA] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_typeof] = ACTIONS(2085), - [anon_sym_import] = ACTIONS(2085), - [anon_sym_with] = ACTIONS(2085), - [anon_sym_var] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_else] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_in] = ACTIONS(2087), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_debugger] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LTtemplate_GT] = ACTIONS(2085), - [anon_sym_GT] = ACTIONS(2087), - [anon_sym_DOT] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_QMARK_DOT] = ACTIONS(2087), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [anon_sym_AMP_AMP] = ACTIONS(2087), - [anon_sym_PIPE_PIPE] = ACTIONS(2087), - [anon_sym_GT_GT] = ACTIONS(2087), - [anon_sym_GT_GT_GT] = ACTIONS(2087), - [anon_sym_LT_LT] = ACTIONS(2087), - [anon_sym_AMP] = ACTIONS(2087), - [anon_sym_CARET] = ACTIONS(2087), - [anon_sym_PIPE] = ACTIONS(2087), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(2085), - [anon_sym_PERCENT] = ACTIONS(2087), - [anon_sym_STAR_STAR] = ACTIONS(2087), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_LT_EQ] = ACTIONS(2087), - [anon_sym_EQ_EQ] = ACTIONS(2087), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2087), - [anon_sym_BANG_EQ] = ACTIONS(2087), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2087), - [anon_sym_GT_EQ] = ACTIONS(2087), - [anon_sym_QMARK_QMARK] = ACTIONS(2087), - [anon_sym_instanceof] = ACTIONS(2087), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_void] = ACTIONS(2085), - [anon_sym_delete] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2085), - [sym_number] = ACTIONS(2085), - [sym_private_property_identifier] = ACTIONS(2085), - [sym_this] = ACTIONS(2085), - [sym_super] = ACTIONS(2085), - [sym_true] = ACTIONS(2085), - [sym_false] = ACTIONS(2085), - [sym_null] = ACTIONS(2085), - [sym_undefined] = ACTIONS(2085), - [anon_sym_AT] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_readonly] = ACTIONS(2085), - [anon_sym_get] = ACTIONS(2085), - [anon_sym_set] = ACTIONS(2085), - [anon_sym_declare] = ACTIONS(2085), - [anon_sym_public] = ACTIONS(2085), - [anon_sym_private] = ACTIONS(2085), - [anon_sym_protected] = ACTIONS(2085), - [anon_sym_override] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_any] = ACTIONS(2085), - [anon_sym_number] = ACTIONS(2085), - [anon_sym_boolean] = ACTIONS(2085), - [anon_sym_string] = ACTIONS(2085), - [anon_sym_symbol] = ACTIONS(2085), - [anon_sym_object] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_satisfies] = ACTIONS(2087), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [sym__automatic_semicolon] = ACTIONS(2343), - [sym__ternary_qmark] = ACTIONS(2091), + [386] = { + [sym_comment] = STATE(386), + [sym_identifier] = ACTIONS(2255), + [anon_sym_export] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_default] = ACTIONS(2255), + [anon_sym_type] = ACTIONS(2255), + [anon_sym_as] = ACTIONS(2257), + [anon_sym_namespace] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_COMMA] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_typeof] = ACTIONS(2255), + [anon_sym_import] = ACTIONS(2255), + [anon_sym_with] = ACTIONS(2255), + [anon_sym_var] = ACTIONS(2255), + [anon_sym_let] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_switch] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2255), + [anon_sym_in] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2255), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_try] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_debugger] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_case] = ACTIONS(2255), + [anon_sym_yield] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_LTtemplate_GT] = ACTIONS(2255), + [anon_sym_GT] = ACTIONS(2257), + [anon_sym_DOT] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2255), + [anon_sym_SQUOTE] = ACTIONS(2255), + [anon_sym_class] = ACTIONS(2255), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2255), + [anon_sym_QMARK_DOT] = ACTIONS(2257), + [anon_sym_new] = ACTIONS(2255), + [anon_sym_using] = ACTIONS(2255), + [anon_sym_AMP_AMP] = ACTIONS(2257), + [anon_sym_PIPE_PIPE] = ACTIONS(2257), + [anon_sym_GT_GT] = ACTIONS(2257), + [anon_sym_GT_GT_GT] = ACTIONS(2257), + [anon_sym_LT_LT] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_PIPE] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(2255), + [anon_sym_PERCENT] = ACTIONS(2257), + [anon_sym_STAR_STAR] = ACTIONS(2257), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_LT_EQ] = ACTIONS(2257), + [anon_sym_EQ_EQ] = ACTIONS(2257), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2257), + [anon_sym_BANG_EQ] = ACTIONS(2257), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2257), + [anon_sym_GT_EQ] = ACTIONS(2257), + [anon_sym_QMARK_QMARK] = ACTIONS(2257), + [anon_sym_instanceof] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_void] = ACTIONS(2255), + [anon_sym_delete] = ACTIONS(2255), + [anon_sym_PLUS_PLUS] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2255), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2255), + [sym_number] = ACTIONS(2255), + [sym_private_property_identifier] = ACTIONS(2255), + [sym_this] = ACTIONS(2255), + [sym_super] = ACTIONS(2255), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), + [sym_null] = ACTIONS(2255), + [sym_undefined] = ACTIONS(2255), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_readonly] = ACTIONS(2255), + [anon_sym_get] = ACTIONS(2255), + [anon_sym_set] = ACTIONS(2255), + [anon_sym_declare] = ACTIONS(2255), + [anon_sym_public] = ACTIONS(2255), + [anon_sym_private] = ACTIONS(2255), + [anon_sym_protected] = ACTIONS(2255), + [anon_sym_override] = ACTIONS(2255), + [anon_sym_module] = ACTIONS(2255), + [anon_sym_any] = ACTIONS(2255), + [anon_sym_number] = ACTIONS(2255), + [anon_sym_boolean] = ACTIONS(2255), + [anon_sym_string] = ACTIONS(2255), + [anon_sym_symbol] = ACTIONS(2255), + [anon_sym_object] = ACTIONS(2255), + [anon_sym_abstract] = ACTIONS(2255), + [anon_sym_satisfies] = ACTIONS(2257), + [anon_sym_interface] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [sym__automatic_semicolon] = ACTIONS(2333), + [sym__ternary_qmark] = ACTIONS(2261), [sym_html_comment] = ACTIONS(5), }, - [388] = { - [sym_import] = STATE(4281), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3167), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(388), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym__type_query_member_expression] = STATE(3745), - [sym__type_query_subscript_expression] = STATE(3744), - [sym__type_query_call_expression] = STATE(3813), - [sym__type_query_instantiation_expression] = STATE(3926), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2345), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [387] = { + [sym_comment] = STATE(387), + [sym_identifier] = ACTIONS(2213), + [anon_sym_export] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_default] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_as] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_typeof] = ACTIONS(2213), + [anon_sym_import] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(2213), + [anon_sym_var] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_switch] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_in] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_debugger] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_throw] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_case] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_LTtemplate_GT] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2215), + [anon_sym_DOT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_class] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_function] = ACTIONS(2213), + [anon_sym_QMARK_DOT] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2213), + [anon_sym_using] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2215), + [anon_sym_PIPE_PIPE] = ACTIONS(2215), + [anon_sym_GT_GT] = ACTIONS(2215), + [anon_sym_GT_GT_GT] = ACTIONS(2215), + [anon_sym_LT_LT] = ACTIONS(2215), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_CARET] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2215), + [anon_sym_STAR_STAR] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_EQ] = ACTIONS(2215), + [anon_sym_EQ_EQ] = ACTIONS(2215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2215), + [anon_sym_GT_EQ] = ACTIONS(2215), + [anon_sym_QMARK_QMARK] = ACTIONS(2215), + [anon_sym_instanceof] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2213), + [anon_sym_void] = ACTIONS(2213), + [anon_sym_delete] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2213), + [sym_number] = ACTIONS(2213), + [sym_private_property_identifier] = ACTIONS(2213), + [sym_this] = ACTIONS(2213), + [sym_super] = ACTIONS(2213), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [sym_null] = ACTIONS(2213), + [sym_undefined] = ACTIONS(2213), + [anon_sym_AT] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_readonly] = ACTIONS(2213), + [anon_sym_get] = ACTIONS(2213), + [anon_sym_set] = ACTIONS(2213), + [anon_sym_declare] = ACTIONS(2213), + [anon_sym_public] = ACTIONS(2213), + [anon_sym_private] = ACTIONS(2213), + [anon_sym_protected] = ACTIONS(2213), + [anon_sym_override] = ACTIONS(2213), + [anon_sym_module] = ACTIONS(2213), + [anon_sym_any] = ACTIONS(2213), + [anon_sym_number] = ACTIONS(2213), + [anon_sym_boolean] = ACTIONS(2213), + [anon_sym_string] = ACTIONS(2213), + [anon_sym_symbol] = ACTIONS(2213), + [anon_sym_object] = ACTIONS(2213), + [anon_sym_abstract] = ACTIONS(2213), + [anon_sym_satisfies] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [sym__automatic_semicolon] = ACTIONS(2335), + [sym__ternary_qmark] = ACTIONS(2219), + [sym_html_comment] = ACTIONS(5), + }, + [388] = { + [sym_import] = STATE(4088), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2437), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(388), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym__type_query_member_expression] = STATE(3599), + [sym__type_query_subscript_expression] = STATE(3600), + [sym__type_query_call_expression] = STATE(3656), + [sym__type_query_instantiation_expression] = STATE(3722), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(2337), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, [389] = { [sym_comment] = STATE(389), - [ts_builtin_sym_end] = ACTIONS(2347), - [sym_identifier] = ACTIONS(2257), - [anon_sym_export] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2259), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_as] = ACTIONS(2259), - [anon_sym_namespace] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [anon_sym_COMMA] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_typeof] = ACTIONS(2257), - [anon_sym_import] = ACTIONS(2257), - [anon_sym_with] = ACTIONS(2257), - [anon_sym_var] = ACTIONS(2257), - [anon_sym_let] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2257), - [anon_sym_else] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_switch] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_in] = ACTIONS(2259), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_debugger] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_throw] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2257), - [anon_sym_yield] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_LTtemplate_GT] = ACTIONS(2257), - [anon_sym_GT] = ACTIONS(2259), - [anon_sym_DOT] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2257), - [anon_sym_SQUOTE] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_async] = ACTIONS(2257), - [anon_sym_function] = ACTIONS(2257), - [anon_sym_QMARK_DOT] = ACTIONS(2259), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_using] = ACTIONS(2257), - [anon_sym_AMP_AMP] = ACTIONS(2259), - [anon_sym_PIPE_PIPE] = ACTIONS(2259), - [anon_sym_GT_GT] = ACTIONS(2259), - [anon_sym_GT_GT_GT] = ACTIONS(2259), - [anon_sym_LT_LT] = ACTIONS(2259), - [anon_sym_AMP] = ACTIONS(2259), - [anon_sym_CARET] = ACTIONS(2259), - [anon_sym_PIPE] = ACTIONS(2259), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_SLASH] = ACTIONS(2257), - [anon_sym_PERCENT] = ACTIONS(2259), - [anon_sym_STAR_STAR] = ACTIONS(2259), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_LT_EQ] = ACTIONS(2259), - [anon_sym_EQ_EQ] = ACTIONS(2259), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2259), - [anon_sym_BANG_EQ] = ACTIONS(2259), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2259), - [anon_sym_GT_EQ] = ACTIONS(2259), - [anon_sym_QMARK_QMARK] = ACTIONS(2259), - [anon_sym_instanceof] = ACTIONS(2259), - [anon_sym_TILDE] = ACTIONS(2257), - [anon_sym_void] = ACTIONS(2257), - [anon_sym_delete] = ACTIONS(2257), - [anon_sym_PLUS_PLUS] = ACTIONS(2257), - [anon_sym_DASH_DASH] = ACTIONS(2257), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2257), - [sym_number] = ACTIONS(2257), - [sym_private_property_identifier] = ACTIONS(2257), - [sym_this] = ACTIONS(2257), - [sym_super] = ACTIONS(2257), - [sym_true] = ACTIONS(2257), - [sym_false] = ACTIONS(2257), - [sym_null] = ACTIONS(2257), - [sym_undefined] = ACTIONS(2257), - [anon_sym_AT] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_readonly] = ACTIONS(2257), - [anon_sym_get] = ACTIONS(2257), - [anon_sym_set] = ACTIONS(2257), - [anon_sym_declare] = ACTIONS(2257), - [anon_sym_public] = ACTIONS(2257), - [anon_sym_private] = ACTIONS(2257), - [anon_sym_protected] = ACTIONS(2257), - [anon_sym_override] = ACTIONS(2257), - [anon_sym_module] = ACTIONS(2257), - [anon_sym_any] = ACTIONS(2257), - [anon_sym_number] = ACTIONS(2257), - [anon_sym_boolean] = ACTIONS(2257), - [anon_sym_string] = ACTIONS(2257), - [anon_sym_symbol] = ACTIONS(2257), - [anon_sym_object] = ACTIONS(2257), - [anon_sym_abstract] = ACTIONS(2257), - [anon_sym_satisfies] = ACTIONS(2259), - [anon_sym_interface] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [sym__automatic_semicolon] = ACTIONS(2349), - [sym__ternary_qmark] = ACTIONS(2263), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_as] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_COMMA] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_in] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_GT] = ACTIONS(2111), + [anon_sym_DOT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_QMARK_DOT] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_AMP_AMP] = ACTIONS(2111), + [anon_sym_PIPE_PIPE] = ACTIONS(2111), + [anon_sym_GT_GT] = ACTIONS(2111), + [anon_sym_GT_GT_GT] = ACTIONS(2111), + [anon_sym_LT_LT] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2111), + [anon_sym_CARET] = ACTIONS(2111), + [anon_sym_PIPE] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_PERCENT] = ACTIONS(2111), + [anon_sym_STAR_STAR] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_LT_EQ] = ACTIONS(2111), + [anon_sym_EQ_EQ] = ACTIONS(2111), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2111), + [anon_sym_BANG_EQ] = ACTIONS(2111), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2111), + [anon_sym_GT_EQ] = ACTIONS(2111), + [anon_sym_QMARK_QMARK] = ACTIONS(2111), + [anon_sym_instanceof] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_satisfies] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(2115), + [sym__ternary_qmark] = ACTIONS(2115), [sym_html_comment] = ACTIONS(5), }, [390] = { + [sym_import] = STATE(4102), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(390), - [sym_identifier] = ACTIONS(2181), - [anon_sym_export] = ACTIONS(2181), - [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_COMMA] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_typeof] = ACTIONS(2181), - [anon_sym_import] = ACTIONS(2181), - [anon_sym_with] = ACTIONS(2181), - [anon_sym_var] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_switch] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_in] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_do] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_debugger] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_throw] = ACTIONS(2181), - [anon_sym_SEMI] = ACTIONS(2181), - [anon_sym_case] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_LTtemplate_GT] = ACTIONS(2181), - [anon_sym_GT] = ACTIONS(2183), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_class] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_function] = ACTIONS(2181), - [anon_sym_QMARK_DOT] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_using] = ACTIONS(2181), - [anon_sym_AMP_AMP] = ACTIONS(2183), - [anon_sym_PIPE_PIPE] = ACTIONS(2183), - [anon_sym_GT_GT] = ACTIONS(2183), - [anon_sym_GT_GT_GT] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(2183), - [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2183), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_SLASH] = ACTIONS(2181), - [anon_sym_PERCENT] = ACTIONS(2183), - [anon_sym_STAR_STAR] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_LT_EQ] = ACTIONS(2183), - [anon_sym_EQ_EQ] = ACTIONS(2183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2183), - [anon_sym_GT_EQ] = ACTIONS(2183), - [anon_sym_QMARK_QMARK] = ACTIONS(2183), - [anon_sym_instanceof] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2181), - [anon_sym_void] = ACTIONS(2181), - [anon_sym_delete] = ACTIONS(2181), - [anon_sym_PLUS_PLUS] = ACTIONS(2181), - [anon_sym_DASH_DASH] = ACTIONS(2181), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2181), - [sym_number] = ACTIONS(2181), - [sym_private_property_identifier] = ACTIONS(2181), - [sym_this] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_true] = ACTIONS(2181), - [sym_false] = ACTIONS(2181), - [sym_null] = ACTIONS(2181), - [sym_undefined] = ACTIONS(2181), - [anon_sym_AT] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_readonly] = ACTIONS(2181), - [anon_sym_get] = ACTIONS(2181), - [anon_sym_set] = ACTIONS(2181), - [anon_sym_declare] = ACTIONS(2181), - [anon_sym_public] = ACTIONS(2181), - [anon_sym_private] = ACTIONS(2181), - [anon_sym_protected] = ACTIONS(2181), - [anon_sym_override] = ACTIONS(2181), - [anon_sym_module] = ACTIONS(2181), - [anon_sym_any] = ACTIONS(2181), - [anon_sym_number] = ACTIONS(2181), - [anon_sym_boolean] = ACTIONS(2181), - [anon_sym_string] = ACTIONS(2181), - [anon_sym_symbol] = ACTIONS(2181), - [anon_sym_object] = ACTIONS(2181), - [anon_sym_abstract] = ACTIONS(2181), - [anon_sym_satisfies] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [sym__automatic_semicolon] = ACTIONS(2351), - [sym__ternary_qmark] = ACTIONS(2187), - [sym_html_comment] = ACTIONS(5), - }, - [391] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(391), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5245), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_override_modifier] = STATE(440), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1079), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2353), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(1175), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [392] = { - [sym_import] = STATE(4318), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2464), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(392), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym__type_query_member_expression] = STATE(3745), - [sym__type_query_subscript_expression] = STATE(3744), - [sym__type_query_call_expression] = STATE(3813), - [sym__type_query_instantiation_expression] = STATE(3926), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2355), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym__type_query_member_expression] = STATE(3665), + [sym__type_query_subscript_expression] = STATE(3648), + [sym__type_query_call_expression] = STATE(3904), + [sym__type_query_instantiation_expression] = STATE(4006), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2339), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -84284,192 +83756,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [393] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6571), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(393), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(6429), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [391] = { + [sym_comment] = STATE(391), + [sym_identifier] = ACTIONS(2189), + [anon_sym_export] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_typeof] = ACTIONS(2189), + [anon_sym_import] = ACTIONS(2189), + [anon_sym_with] = ACTIONS(2189), + [anon_sym_var] = ACTIONS(2189), + [anon_sym_let] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_switch] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_await] = ACTIONS(2189), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_do] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_debugger] = ACTIONS(2189), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2189), + [anon_sym_SEMI] = ACTIONS(2189), + [anon_sym_case] = ACTIONS(2189), + [anon_sym_yield] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_LTtemplate_GT] = ACTIONS(2189), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2189), + [anon_sym_SQUOTE] = ACTIONS(2189), + [anon_sym_class] = ACTIONS(2189), + [anon_sym_async] = ACTIONS(2189), + [anon_sym_function] = ACTIONS(2189), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_using] = ACTIONS(2189), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(2191), + [anon_sym_GT_GT_GT] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_SLASH] = ACTIONS(2189), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_STAR_STAR] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_QMARK_QMARK] = ACTIONS(2191), + [anon_sym_instanceof] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2189), + [anon_sym_void] = ACTIONS(2189), + [anon_sym_delete] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2189), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2189), + [sym_number] = ACTIONS(2189), + [sym_private_property_identifier] = ACTIONS(2189), + [sym_this] = ACTIONS(2189), + [sym_super] = ACTIONS(2189), + [sym_true] = ACTIONS(2189), + [sym_false] = ACTIONS(2189), + [sym_null] = ACTIONS(2189), + [sym_undefined] = ACTIONS(2189), + [anon_sym_AT] = ACTIONS(2189), + [anon_sym_static] = ACTIONS(2189), + [anon_sym_readonly] = ACTIONS(2189), + [anon_sym_get] = ACTIONS(2189), + [anon_sym_set] = ACTIONS(2189), + [anon_sym_declare] = ACTIONS(2189), + [anon_sym_public] = ACTIONS(2189), + [anon_sym_private] = ACTIONS(2189), + [anon_sym_protected] = ACTIONS(2189), + [anon_sym_override] = ACTIONS(2189), + [anon_sym_module] = ACTIONS(2189), + [anon_sym_any] = ACTIONS(2189), + [anon_sym_number] = ACTIONS(2189), + [anon_sym_boolean] = ACTIONS(2189), + [anon_sym_string] = ACTIONS(2189), + [anon_sym_symbol] = ACTIONS(2189), + [anon_sym_object] = ACTIONS(2189), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_satisfies] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [sym__automatic_semicolon] = ACTIONS(2341), + [sym__ternary_qmark] = ACTIONS(2195), [sym_html_comment] = ACTIONS(5), }, - [394] = { - [sym_import] = STATE(4369), - [sym_expression_statement] = STATE(462), - [sym_empty_statement] = STATE(462), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2679), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(7092), - [sym_string] = STATE(3113), - [sym_comment] = STATE(394), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [392] = { + [sym_import] = STATE(4290), + [sym_expression_statement] = STATE(466), + [sym_empty_statement] = STATE(466), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2478), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6755), + [sym_string] = STATE(2940), + [sym_comment] = STATE(392), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -84479,10 +83951,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -84504,806 +83976,255 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), - [sym_html_comment] = ACTIONS(5), - }, - [395] = { - [sym_comment] = STATE(395), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_in] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(2105), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_QMARK_DOT] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(2105), - [anon_sym_GT_GT] = ACTIONS(2105), - [anon_sym_GT_GT_GT] = ACTIONS(2105), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_AMP] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(2105), - [anon_sym_PIPE] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_PERCENT] = ACTIONS(2105), - [anon_sym_STAR_STAR] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2105), - [anon_sym_instanceof] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_satisfies] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym__automatic_semicolon] = ACTIONS(2107), - [sym__ternary_qmark] = ACTIONS(2107), - [sym_html_comment] = ACTIONS(5), - }, - [396] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2815), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_spread_element] = STATE(7575), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7575), - [sym_string] = STATE(2723), - [sym_comment] = STATE(396), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), - [sym_html_comment] = ACTIONS(5), - }, - [397] = { - [sym_comment] = STATE(397), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2239), - [anon_sym_default] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_COMMA] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_in] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_case] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_GT] = ACTIONS(2239), - [anon_sym_DOT] = ACTIONS(2239), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_QMARK_DOT] = ACTIONS(2239), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_AMP_AMP] = ACTIONS(2239), - [anon_sym_PIPE_PIPE] = ACTIONS(2239), - [anon_sym_GT_GT] = ACTIONS(2239), - [anon_sym_GT_GT_GT] = ACTIONS(2239), - [anon_sym_LT_LT] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2239), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_PERCENT] = ACTIONS(2239), - [anon_sym_STAR_STAR] = ACTIONS(2239), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_LT_EQ] = ACTIONS(2239), - [anon_sym_EQ_EQ] = ACTIONS(2239), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2239), - [anon_sym_GT_EQ] = ACTIONS(2239), - [anon_sym_QMARK_QMARK] = ACTIONS(2239), - [anon_sym_instanceof] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_satisfies] = ACTIONS(2239), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [sym__automatic_semicolon] = ACTIONS(2361), - [sym__ternary_qmark] = ACTIONS(2243), - [sym_html_comment] = ACTIONS(5), - }, - [398] = { - [sym_comment] = STATE(398), - [sym_identifier] = ACTIONS(2081), - [anon_sym_export] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2081), - [anon_sym_default] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_as] = ACTIONS(2081), - [anon_sym_namespace] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_COMMA] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_typeof] = ACTIONS(2081), - [anon_sym_import] = ACTIONS(2081), - [anon_sym_with] = ACTIONS(2081), - [anon_sym_var] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_switch] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_in] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_do] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_debugger] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_case] = ACTIONS(2081), - [anon_sym_yield] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_LTtemplate_GT] = ACTIONS(2081), - [anon_sym_GT] = ACTIONS(2081), - [anon_sym_DOT] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2081), - [anon_sym_class] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_function] = ACTIONS(2081), - [anon_sym_QMARK_DOT] = ACTIONS(2081), - [anon_sym_new] = ACTIONS(2081), - [anon_sym_using] = ACTIONS(2081), - [anon_sym_AMP_AMP] = ACTIONS(2081), - [anon_sym_PIPE_PIPE] = ACTIONS(2081), - [anon_sym_GT_GT] = ACTIONS(2081), - [anon_sym_GT_GT_GT] = ACTIONS(2081), - [anon_sym_LT_LT] = ACTIONS(2081), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_CARET] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_SLASH] = ACTIONS(2081), - [anon_sym_PERCENT] = ACTIONS(2081), - [anon_sym_STAR_STAR] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2081), - [anon_sym_LT_EQ] = ACTIONS(2081), - [anon_sym_EQ_EQ] = ACTIONS(2081), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2081), - [anon_sym_BANG_EQ] = ACTIONS(2081), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2081), - [anon_sym_GT_EQ] = ACTIONS(2081), - [anon_sym_QMARK_QMARK] = ACTIONS(2081), - [anon_sym_instanceof] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2081), - [anon_sym_void] = ACTIONS(2081), - [anon_sym_delete] = ACTIONS(2081), - [anon_sym_PLUS_PLUS] = ACTIONS(2081), - [anon_sym_DASH_DASH] = ACTIONS(2081), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2081), - [sym_number] = ACTIONS(2081), - [sym_private_property_identifier] = ACTIONS(2081), - [sym_this] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_true] = ACTIONS(2081), - [sym_false] = ACTIONS(2081), - [sym_null] = ACTIONS(2081), - [sym_undefined] = ACTIONS(2081), - [anon_sym_AT] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_readonly] = ACTIONS(2081), - [anon_sym_get] = ACTIONS(2081), - [anon_sym_set] = ACTIONS(2081), - [anon_sym_declare] = ACTIONS(2081), - [anon_sym_public] = ACTIONS(2081), - [anon_sym_private] = ACTIONS(2081), - [anon_sym_protected] = ACTIONS(2081), - [anon_sym_override] = ACTIONS(2081), - [anon_sym_module] = ACTIONS(2081), - [anon_sym_any] = ACTIONS(2081), - [anon_sym_number] = ACTIONS(2081), - [anon_sym_boolean] = ACTIONS(2081), - [anon_sym_string] = ACTIONS(2081), - [anon_sym_symbol] = ACTIONS(2081), - [anon_sym_object] = ACTIONS(2081), - [anon_sym_abstract] = ACTIONS(2081), - [anon_sym_satisfies] = ACTIONS(2081), - [anon_sym_interface] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [sym__automatic_semicolon] = ACTIONS(2083), - [sym__ternary_qmark] = ACTIONS(2083), - [sym_html_comment] = ACTIONS(5), - }, - [399] = { - [sym_comment] = STATE(399), - [sym_identifier] = ACTIONS(2195), - [anon_sym_export] = ACTIONS(2195), - [anon_sym_STAR] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_namespace] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_COMMA] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_typeof] = ACTIONS(2195), - [anon_sym_import] = ACTIONS(2195), - [anon_sym_with] = ACTIONS(2195), - [anon_sym_var] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_switch] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_in] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [anon_sym_do] = ACTIONS(2195), - [anon_sym_try] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_debugger] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_throw] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_case] = ACTIONS(2195), - [anon_sym_yield] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_LTtemplate_GT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), - [anon_sym_DOT] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_class] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_QMARK_DOT] = ACTIONS(2195), - [anon_sym_new] = ACTIONS(2195), - [anon_sym_using] = ACTIONS(2195), - [anon_sym_AMP_AMP] = ACTIONS(2195), - [anon_sym_PIPE_PIPE] = ACTIONS(2195), - [anon_sym_GT_GT] = ACTIONS(2195), - [anon_sym_GT_GT_GT] = ACTIONS(2195), - [anon_sym_LT_LT] = ACTIONS(2195), - [anon_sym_AMP] = ACTIONS(2195), - [anon_sym_CARET] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2195), - [anon_sym_PLUS] = ACTIONS(2195), - [anon_sym_DASH] = ACTIONS(2195), - [anon_sym_SLASH] = ACTIONS(2195), - [anon_sym_PERCENT] = ACTIONS(2195), - [anon_sym_STAR_STAR] = ACTIONS(2195), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_LT_EQ] = ACTIONS(2195), - [anon_sym_EQ_EQ] = ACTIONS(2195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2195), - [anon_sym_BANG_EQ] = ACTIONS(2195), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2195), - [anon_sym_GT_EQ] = ACTIONS(2195), - [anon_sym_QMARK_QMARK] = ACTIONS(2195), - [anon_sym_instanceof] = ACTIONS(2195), - [anon_sym_TILDE] = ACTIONS(2195), - [anon_sym_void] = ACTIONS(2195), - [anon_sym_delete] = ACTIONS(2195), - [anon_sym_PLUS_PLUS] = ACTIONS(2195), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2195), - [sym_number] = ACTIONS(2195), - [sym_private_property_identifier] = ACTIONS(2195), - [sym_this] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_true] = ACTIONS(2195), - [sym_false] = ACTIONS(2195), - [sym_null] = ACTIONS(2195), - [sym_undefined] = ACTIONS(2195), - [anon_sym_AT] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_readonly] = ACTIONS(2195), - [anon_sym_get] = ACTIONS(2195), - [anon_sym_set] = ACTIONS(2195), - [anon_sym_declare] = ACTIONS(2195), - [anon_sym_public] = ACTIONS(2195), - [anon_sym_private] = ACTIONS(2195), - [anon_sym_protected] = ACTIONS(2195), - [anon_sym_override] = ACTIONS(2195), - [anon_sym_module] = ACTIONS(2195), - [anon_sym_any] = ACTIONS(2195), - [anon_sym_number] = ACTIONS(2195), - [anon_sym_boolean] = ACTIONS(2195), - [anon_sym_string] = ACTIONS(2195), - [anon_sym_symbol] = ACTIONS(2195), - [anon_sym_object] = ACTIONS(2195), - [anon_sym_abstract] = ACTIONS(2195), - [anon_sym_satisfies] = ACTIONS(2195), - [anon_sym_interface] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [sym__automatic_semicolon] = ACTIONS(2197), - [sym__ternary_qmark] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [400] = { - [sym_comment] = STATE(400), - [sym_identifier] = ACTIONS(2135), - [anon_sym_export] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_default] = ACTIONS(2135), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_namespace] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_COMMA] = ACTIONS(2137), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_typeof] = ACTIONS(2135), - [anon_sym_import] = ACTIONS(2135), - [anon_sym_with] = ACTIONS(2135), - [anon_sym_var] = ACTIONS(2135), - [anon_sym_let] = ACTIONS(2135), - [anon_sym_const] = ACTIONS(2135), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_switch] = ACTIONS(2135), - [anon_sym_for] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2135), - [anon_sym_in] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2135), - [anon_sym_do] = ACTIONS(2135), - [anon_sym_try] = ACTIONS(2135), - [anon_sym_break] = ACTIONS(2135), - [anon_sym_continue] = ACTIONS(2135), - [anon_sym_debugger] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2135), - [anon_sym_throw] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_case] = ACTIONS(2135), - [anon_sym_yield] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_LTtemplate_GT] = ACTIONS(2135), - [anon_sym_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_class] = ACTIONS(2135), - [anon_sym_async] = ACTIONS(2135), - [anon_sym_function] = ACTIONS(2135), - [anon_sym_QMARK_DOT] = ACTIONS(2137), - [anon_sym_new] = ACTIONS(2135), - [anon_sym_using] = ACTIONS(2135), - [anon_sym_AMP_AMP] = ACTIONS(2137), - [anon_sym_PIPE_PIPE] = ACTIONS(2137), - [anon_sym_GT_GT] = ACTIONS(2137), - [anon_sym_GT_GT_GT] = ACTIONS(2137), - [anon_sym_LT_LT] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_PIPE] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_SLASH] = ACTIONS(2135), - [anon_sym_PERCENT] = ACTIONS(2137), - [anon_sym_STAR_STAR] = ACTIONS(2137), - [anon_sym_LT] = ACTIONS(2135), - [anon_sym_LT_EQ] = ACTIONS(2137), - [anon_sym_EQ_EQ] = ACTIONS(2137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2137), - [anon_sym_BANG_EQ] = ACTIONS(2137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2137), - [anon_sym_GT_EQ] = ACTIONS(2137), - [anon_sym_QMARK_QMARK] = ACTIONS(2137), - [anon_sym_instanceof] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_void] = ACTIONS(2135), - [anon_sym_delete] = ACTIONS(2135), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2135), - [sym_number] = ACTIONS(2135), - [sym_private_property_identifier] = ACTIONS(2135), - [sym_this] = ACTIONS(2135), - [sym_super] = ACTIONS(2135), - [sym_true] = ACTIONS(2135), - [sym_false] = ACTIONS(2135), - [sym_null] = ACTIONS(2135), - [sym_undefined] = ACTIONS(2135), - [anon_sym_AT] = ACTIONS(2135), - [anon_sym_static] = ACTIONS(2135), - [anon_sym_readonly] = ACTIONS(2135), - [anon_sym_get] = ACTIONS(2135), - [anon_sym_set] = ACTIONS(2135), - [anon_sym_declare] = ACTIONS(2135), - [anon_sym_public] = ACTIONS(2135), - [anon_sym_private] = ACTIONS(2135), - [anon_sym_protected] = ACTIONS(2135), - [anon_sym_override] = ACTIONS(2135), - [anon_sym_module] = ACTIONS(2135), - [anon_sym_any] = ACTIONS(2135), - [anon_sym_number] = ACTIONS(2135), - [anon_sym_boolean] = ACTIONS(2135), - [anon_sym_string] = ACTIONS(2135), - [anon_sym_symbol] = ACTIONS(2135), - [anon_sym_object] = ACTIONS(2135), - [anon_sym_abstract] = ACTIONS(2135), - [anon_sym_satisfies] = ACTIONS(2137), - [anon_sym_interface] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(2135), - [sym__automatic_semicolon] = ACTIONS(2363), - [sym__ternary_qmark] = ACTIONS(2141), + [393] = { + [sym_comment] = STATE(393), + [ts_builtin_sym_end] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_in] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_GT] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2199), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_QMARK_DOT] = ACTIONS(2199), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_GT_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_AMP] = ACTIONS(2199), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2199), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_PERCENT] = ACTIONS(2199), + [anon_sym_STAR_STAR] = ACTIONS(2199), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_LT_EQ] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2199), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_QMARK_QMARK] = ACTIONS(2199), + [anon_sym_instanceof] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_satisfies] = ACTIONS(2199), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [sym__automatic_semicolon] = ACTIONS(2345), + [sym__ternary_qmark] = ACTIONS(2203), [sym_html_comment] = ACTIONS(5), }, - [401] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2774), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_spread_element] = STATE(7366), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7366), - [sym_string] = STATE(2723), - [sym_comment] = STATE(401), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_RBRACE] = ACTIONS(2365), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2359), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [394] = { + [sym_comment] = STATE(394), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_as] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_COMMA] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_in] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_GT] = ACTIONS(2111), + [anon_sym_DOT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_QMARK_DOT] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_AMP_AMP] = ACTIONS(2111), + [anon_sym_PIPE_PIPE] = ACTIONS(2111), + [anon_sym_GT_GT] = ACTIONS(2111), + [anon_sym_GT_GT_GT] = ACTIONS(2111), + [anon_sym_LT_LT] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2111), + [anon_sym_CARET] = ACTIONS(2111), + [anon_sym_PIPE] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_PERCENT] = ACTIONS(2111), + [anon_sym_STAR_STAR] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_LT_EQ] = ACTIONS(2111), + [anon_sym_EQ_EQ] = ACTIONS(2111), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2111), + [anon_sym_BANG_EQ] = ACTIONS(2111), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2111), + [anon_sym_GT_EQ] = ACTIONS(2111), + [anon_sym_QMARK_QMARK] = ACTIONS(2111), + [anon_sym_instanceof] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_satisfies] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(2347), + [sym__ternary_qmark] = ACTIONS(2115), [sym_html_comment] = ACTIONS(5), }, - [402] = { - [sym_comment] = STATE(402), - [ts_builtin_sym_end] = ACTIONS(2103), + [395] = { + [sym_comment] = STATE(395), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2069), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), - [anon_sym_EQ] = ACTIONS(2071), - [anon_sym_as] = ACTIONS(2069), + [anon_sym_as] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2067), [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(2069), + [anon_sym_COMMA] = ACTIONS(2067), [anon_sym_RBRACE] = ACTIONS(2067), [anon_sym_typeof] = ACTIONS(2067), [anon_sym_import] = ACTIONS(2067), @@ -85317,7 +84238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2067), [anon_sym_LPAREN] = ACTIONS(2067), [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2069), + [anon_sym_in] = ACTIONS(2067), [anon_sym_while] = ACTIONS(2067), [anon_sym_do] = ACTIONS(2067), [anon_sym_try] = ACTIONS(2067), @@ -85327,41 +84248,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2067), [anon_sym_throw] = ACTIONS(2067), [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_case] = ACTIONS(2067), [anon_sym_yield] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(2067), [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2069), - [anon_sym_DOT] = ACTIONS(2069), + [anon_sym_GT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(2067), [anon_sym_DQUOTE] = ACTIONS(2067), [anon_sym_SQUOTE] = ACTIONS(2067), [anon_sym_class] = ACTIONS(2067), [anon_sym_async] = ACTIONS(2067), [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2069), + [anon_sym_QMARK_DOT] = ACTIONS(2067), [anon_sym_new] = ACTIONS(2067), [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2069), - [anon_sym_PIPE_PIPE] = ACTIONS(2069), - [anon_sym_GT_GT] = ACTIONS(2069), - [anon_sym_GT_GT_GT] = ACTIONS(2069), - [anon_sym_LT_LT] = ACTIONS(2069), - [anon_sym_AMP] = ACTIONS(2069), - [anon_sym_CARET] = ACTIONS(2069), - [anon_sym_PIPE] = ACTIONS(2069), + [anon_sym_AMP_AMP] = ACTIONS(2067), + [anon_sym_PIPE_PIPE] = ACTIONS(2067), + [anon_sym_GT_GT] = ACTIONS(2067), + [anon_sym_GT_GT_GT] = ACTIONS(2067), + [anon_sym_LT_LT] = ACTIONS(2067), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_CARET] = ACTIONS(2067), + [anon_sym_PIPE] = ACTIONS(2067), [anon_sym_PLUS] = ACTIONS(2067), [anon_sym_DASH] = ACTIONS(2067), [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2069), - [anon_sym_STAR_STAR] = ACTIONS(2069), + [anon_sym_PERCENT] = ACTIONS(2067), + [anon_sym_STAR_STAR] = ACTIONS(2067), [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2069), - [anon_sym_EQ_EQ] = ACTIONS(2069), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2069), - [anon_sym_BANG_EQ] = ACTIONS(2069), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2069), - [anon_sym_GT_EQ] = ACTIONS(2069), - [anon_sym_QMARK_QMARK] = ACTIONS(2069), - [anon_sym_instanceof] = ACTIONS(2069), + [anon_sym_LT_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), + [anon_sym_GT_EQ] = ACTIONS(2067), + [anon_sym_QMARK_QMARK] = ACTIONS(2067), + [anon_sym_instanceof] = ACTIONS(2067), [anon_sym_TILDE] = ACTIONS(2067), [anon_sym_void] = ACTIONS(2067), [anon_sym_delete] = ACTIONS(2067), @@ -85395,129 +84317,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2067), [anon_sym_object] = ACTIONS(2067), [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2069), + [anon_sym_satisfies] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2367), - [sym__ternary_qmark] = ACTIONS(2075), + [sym__automatic_semicolon] = ACTIONS(2349), + [sym__ternary_qmark] = ACTIONS(2095), [sym_html_comment] = ACTIONS(5), }, - [403] = { - [sym_comment] = STATE(403), - [ts_builtin_sym_end] = ACTIONS(2253), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_STAR] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_as] = ACTIONS(2251), - [anon_sym_namespace] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_COMMA] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_typeof] = ACTIONS(2251), - [anon_sym_import] = ACTIONS(2251), - [anon_sym_with] = ACTIONS(2251), - [anon_sym_var] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_else] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_in] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_debugger] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_throw] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_LTtemplate_GT] = ACTIONS(2251), - [anon_sym_GT] = ACTIONS(2251), - [anon_sym_DOT] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(2251), - [anon_sym_QMARK_DOT] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_using] = ACTIONS(2251), - [anon_sym_AMP_AMP] = ACTIONS(2251), - [anon_sym_PIPE_PIPE] = ACTIONS(2251), - [anon_sym_GT_GT] = ACTIONS(2251), - [anon_sym_GT_GT_GT] = ACTIONS(2251), - [anon_sym_LT_LT] = ACTIONS(2251), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_CARET] = ACTIONS(2251), - [anon_sym_PIPE] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_PERCENT] = ACTIONS(2251), - [anon_sym_STAR_STAR] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_LT_EQ] = ACTIONS(2251), - [anon_sym_EQ_EQ] = ACTIONS(2251), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2251), - [anon_sym_BANG_EQ] = ACTIONS(2251), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2251), - [anon_sym_GT_EQ] = ACTIONS(2251), - [anon_sym_QMARK_QMARK] = ACTIONS(2251), - [anon_sym_instanceof] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_void] = ACTIONS(2251), - [anon_sym_delete] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), + [396] = { + [sym_import] = STATE(4290), + [sym_expression_statement] = STATE(462), + [sym_empty_statement] = STATE(462), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2478), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6755), + [sym_string] = STATE(2940), + [sym_comment] = STATE(396), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2251), - [sym_number] = ACTIONS(2251), - [sym_private_property_identifier] = ACTIONS(2251), - [sym_this] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_undefined] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_readonly] = ACTIONS(2251), - [anon_sym_get] = ACTIONS(2251), - [anon_sym_set] = ACTIONS(2251), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_public] = ACTIONS(2251), - [anon_sym_private] = ACTIONS(2251), - [anon_sym_protected] = ACTIONS(2251), - [anon_sym_override] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_any] = ACTIONS(2251), - [anon_sym_number] = ACTIONS(2251), - [anon_sym_boolean] = ACTIONS(2251), - [anon_sym_string] = ACTIONS(2251), - [anon_sym_symbol] = ACTIONS(2251), - [anon_sym_object] = ACTIONS(2251), - [anon_sym_abstract] = ACTIONS(2251), - [anon_sym_satisfies] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [sym__automatic_semicolon] = ACTIONS(2253), - [sym__ternary_qmark] = ACTIONS(2253), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [404] = { - [sym_comment] = STATE(404), + [397] = { + [sym_comment] = STATE(397), + [ts_builtin_sym_end] = ACTIONS(2351), [sym_identifier] = ACTIONS(2149), [anon_sym_export] = ACTIONS(2149), [anon_sym_STAR] = ACTIONS(2151), - [anon_sym_default] = ACTIONS(2149), [anon_sym_type] = ACTIONS(2149), [anon_sym_as] = ACTIONS(2151), [anon_sym_namespace] = ACTIONS(2149), @@ -85531,6 +84453,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2149), [anon_sym_const] = ACTIONS(2149), [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_else] = ACTIONS(2149), [anon_sym_if] = ACTIONS(2149), [anon_sym_switch] = ACTIONS(2149), [anon_sym_for] = ACTIONS(2149), @@ -85546,7 +84469,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2149), [anon_sym_throw] = ACTIONS(2149), [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_case] = ACTIONS(2149), [anon_sym_yield] = ACTIONS(2149), [anon_sym_LBRACK] = ACTIONS(2149), [anon_sym_LTtemplate_GT] = ACTIONS(2149), @@ -85618,689 +84540,800 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2151), [anon_sym_interface] = ACTIONS(2149), [anon_sym_enum] = ACTIONS(2149), - [sym__automatic_semicolon] = ACTIONS(2369), - [sym__ternary_qmark] = ACTIONS(2155), + [sym__automatic_semicolon] = ACTIONS(2153), + [sym__ternary_qmark] = ACTIONS(2153), [sym_html_comment] = ACTIONS(5), }, - [405] = { - [sym_comment] = STATE(405), - [sym_identifier] = ACTIONS(2229), - [anon_sym_export] = ACTIONS(2229), - [anon_sym_STAR] = ACTIONS(2231), - [anon_sym_default] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2231), - [anon_sym_namespace] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_COMMA] = ACTIONS(2231), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_typeof] = ACTIONS(2229), - [anon_sym_import] = ACTIONS(2229), - [anon_sym_with] = ACTIONS(2229), - [anon_sym_var] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_switch] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_await] = ACTIONS(2229), - [anon_sym_in] = ACTIONS(2231), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_debugger] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_throw] = ACTIONS(2229), - [anon_sym_SEMI] = ACTIONS(2229), - [anon_sym_case] = ACTIONS(2229), - [anon_sym_yield] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2229), - [anon_sym_LTtemplate_GT] = ACTIONS(2229), - [anon_sym_GT] = ACTIONS(2231), - [anon_sym_DOT] = ACTIONS(2231), - [anon_sym_DQUOTE] = ACTIONS(2229), - [anon_sym_SQUOTE] = ACTIONS(2229), - [anon_sym_class] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_function] = ACTIONS(2229), - [anon_sym_QMARK_DOT] = ACTIONS(2231), - [anon_sym_new] = ACTIONS(2229), - [anon_sym_using] = ACTIONS(2229), - [anon_sym_AMP_AMP] = ACTIONS(2231), - [anon_sym_PIPE_PIPE] = ACTIONS(2231), - [anon_sym_GT_GT] = ACTIONS(2231), - [anon_sym_GT_GT_GT] = ACTIONS(2231), - [anon_sym_LT_LT] = ACTIONS(2231), - [anon_sym_AMP] = ACTIONS(2231), - [anon_sym_CARET] = ACTIONS(2231), - [anon_sym_PIPE] = ACTIONS(2231), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_SLASH] = ACTIONS(2229), - [anon_sym_PERCENT] = ACTIONS(2231), - [anon_sym_STAR_STAR] = ACTIONS(2231), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_LT_EQ] = ACTIONS(2231), - [anon_sym_EQ_EQ] = ACTIONS(2231), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2231), - [anon_sym_BANG_EQ] = ACTIONS(2231), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2231), - [anon_sym_GT_EQ] = ACTIONS(2231), - [anon_sym_QMARK_QMARK] = ACTIONS(2231), - [anon_sym_instanceof] = ACTIONS(2231), - [anon_sym_TILDE] = ACTIONS(2229), - [anon_sym_void] = ACTIONS(2229), - [anon_sym_delete] = ACTIONS(2229), - [anon_sym_PLUS_PLUS] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2229), - [sym_number] = ACTIONS(2229), - [sym_private_property_identifier] = ACTIONS(2229), - [sym_this] = ACTIONS(2229), - [sym_super] = ACTIONS(2229), - [sym_true] = ACTIONS(2229), - [sym_false] = ACTIONS(2229), - [sym_null] = ACTIONS(2229), - [sym_undefined] = ACTIONS(2229), - [anon_sym_AT] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_readonly] = ACTIONS(2229), - [anon_sym_get] = ACTIONS(2229), - [anon_sym_set] = ACTIONS(2229), - [anon_sym_declare] = ACTIONS(2229), - [anon_sym_public] = ACTIONS(2229), - [anon_sym_private] = ACTIONS(2229), - [anon_sym_protected] = ACTIONS(2229), - [anon_sym_override] = ACTIONS(2229), - [anon_sym_module] = ACTIONS(2229), - [anon_sym_any] = ACTIONS(2229), - [anon_sym_number] = ACTIONS(2229), - [anon_sym_boolean] = ACTIONS(2229), - [anon_sym_string] = ACTIONS(2229), - [anon_sym_symbol] = ACTIONS(2229), - [anon_sym_object] = ACTIONS(2229), - [anon_sym_abstract] = ACTIONS(2229), - [anon_sym_satisfies] = ACTIONS(2231), - [anon_sym_interface] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [sym__automatic_semicolon] = ACTIONS(2371), - [sym__ternary_qmark] = ACTIONS(2235), + [398] = { + [sym_comment] = STATE(398), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_typeof] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_with] = ACTIONS(2175), + [anon_sym_var] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_debugger] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_throw] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_case] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_LTtemplate_GT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_function] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2175), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_using] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_LT_LT] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_STAR_STAR] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_QMARK_QMARK] = ACTIONS(2175), + [anon_sym_instanceof] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_void] = ACTIONS(2175), + [anon_sym_delete] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2175), + [sym_number] = ACTIONS(2175), + [sym_private_property_identifier] = ACTIONS(2175), + [sym_this] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_null] = ACTIONS(2175), + [sym_undefined] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_readonly] = ACTIONS(2175), + [anon_sym_get] = ACTIONS(2175), + [anon_sym_set] = ACTIONS(2175), + [anon_sym_declare] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_override] = ACTIONS(2175), + [anon_sym_module] = ACTIONS(2175), + [anon_sym_any] = ACTIONS(2175), + [anon_sym_number] = ACTIONS(2175), + [anon_sym_boolean] = ACTIONS(2175), + [anon_sym_string] = ACTIONS(2175), + [anon_sym_symbol] = ACTIONS(2175), + [anon_sym_object] = ACTIONS(2175), + [anon_sym_abstract] = ACTIONS(2175), + [anon_sym_satisfies] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [sym__automatic_semicolon] = ACTIONS(2177), + [sym__ternary_qmark] = ACTIONS(2177), [sym_html_comment] = ACTIONS(5), }, - [406] = { - [sym_statement_block] = STATE(442), - [sym_comment] = STATE(406), - [ts_builtin_sym_end] = ACTIONS(2059), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2373), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_STAR_STAR] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_QMARK_QMARK] = ACTIONS(2055), - [anon_sym_instanceof] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_satisfies] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [sym__automatic_semicolon] = ACTIONS(2059), - [sym__ternary_qmark] = ACTIONS(2059), + [399] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(399), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(4896), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_override_modifier] = STATE(455), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1071), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1087), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1081), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(2353), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(1173), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [407] = { - [sym_statement_block] = STATE(442), - [sym_comment] = STATE(407), - [ts_builtin_sym_end] = ACTIONS(2059), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2373), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(2375), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_STAR_STAR] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_QMARK_QMARK] = ACTIONS(2055), - [anon_sym_instanceof] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_satisfies] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [sym__automatic_semicolon] = ACTIONS(2059), - [sym__ternary_qmark] = ACTIONS(2059), + [400] = { + [sym_import] = STATE(4107), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(400), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym__type_query_member_expression] = STATE(3599), + [sym__type_query_subscript_expression] = STATE(3600), + [sym__type_query_call_expression] = STATE(3656), + [sym__type_query_instantiation_expression] = STATE(3722), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2355), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1652), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [408] = { - [sym_statement_block] = STATE(442), - [sym_comment] = STATE(408), - [ts_builtin_sym_end] = ACTIONS(2059), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_STAR] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_as] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(2373), - [anon_sym_COMMA] = ACTIONS(2055), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_in] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_GT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_QMARK_DOT] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_AMP_AMP] = ACTIONS(2055), - [anon_sym_PIPE_PIPE] = ACTIONS(2055), - [anon_sym_GT_GT] = ACTIONS(2055), - [anon_sym_GT_GT_GT] = ACTIONS(2055), - [anon_sym_LT_LT] = ACTIONS(2055), - [anon_sym_AMP] = ACTIONS(2055), - [anon_sym_CARET] = ACTIONS(2055), - [anon_sym_PIPE] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_PERCENT] = ACTIONS(2055), - [anon_sym_STAR_STAR] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_LT_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ] = ACTIONS(2055), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ] = ACTIONS(2055), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2055), - [anon_sym_GT_EQ] = ACTIONS(2055), - [anon_sym_QMARK_QMARK] = ACTIONS(2055), - [anon_sym_instanceof] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_satisfies] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [sym__automatic_semicolon] = ACTIONS(2059), - [sym__ternary_qmark] = ACTIONS(2059), + [401] = { + [sym_comment] = STATE(401), + [ts_builtin_sym_end] = ACTIONS(2357), + [sym_identifier] = ACTIONS(2255), + [anon_sym_export] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2255), + [anon_sym_as] = ACTIONS(2257), + [anon_sym_namespace] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_COMMA] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_typeof] = ACTIONS(2255), + [anon_sym_import] = ACTIONS(2255), + [anon_sym_with] = ACTIONS(2255), + [anon_sym_var] = ACTIONS(2255), + [anon_sym_let] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_else] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_switch] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2255), + [anon_sym_in] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2255), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_try] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_debugger] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_yield] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_LTtemplate_GT] = ACTIONS(2255), + [anon_sym_GT] = ACTIONS(2257), + [anon_sym_DOT] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2255), + [anon_sym_SQUOTE] = ACTIONS(2255), + [anon_sym_class] = ACTIONS(2255), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2255), + [anon_sym_QMARK_DOT] = ACTIONS(2257), + [anon_sym_new] = ACTIONS(2255), + [anon_sym_using] = ACTIONS(2255), + [anon_sym_AMP_AMP] = ACTIONS(2257), + [anon_sym_PIPE_PIPE] = ACTIONS(2257), + [anon_sym_GT_GT] = ACTIONS(2257), + [anon_sym_GT_GT_GT] = ACTIONS(2257), + [anon_sym_LT_LT] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_PIPE] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(2255), + [anon_sym_PERCENT] = ACTIONS(2257), + [anon_sym_STAR_STAR] = ACTIONS(2257), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_LT_EQ] = ACTIONS(2257), + [anon_sym_EQ_EQ] = ACTIONS(2257), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2257), + [anon_sym_BANG_EQ] = ACTIONS(2257), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2257), + [anon_sym_GT_EQ] = ACTIONS(2257), + [anon_sym_QMARK_QMARK] = ACTIONS(2257), + [anon_sym_instanceof] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_void] = ACTIONS(2255), + [anon_sym_delete] = ACTIONS(2255), + [anon_sym_PLUS_PLUS] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2255), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2255), + [sym_number] = ACTIONS(2255), + [sym_private_property_identifier] = ACTIONS(2255), + [sym_this] = ACTIONS(2255), + [sym_super] = ACTIONS(2255), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), + [sym_null] = ACTIONS(2255), + [sym_undefined] = ACTIONS(2255), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_readonly] = ACTIONS(2255), + [anon_sym_get] = ACTIONS(2255), + [anon_sym_set] = ACTIONS(2255), + [anon_sym_declare] = ACTIONS(2255), + [anon_sym_public] = ACTIONS(2255), + [anon_sym_private] = ACTIONS(2255), + [anon_sym_protected] = ACTIONS(2255), + [anon_sym_override] = ACTIONS(2255), + [anon_sym_module] = ACTIONS(2255), + [anon_sym_any] = ACTIONS(2255), + [anon_sym_number] = ACTIONS(2255), + [anon_sym_boolean] = ACTIONS(2255), + [anon_sym_string] = ACTIONS(2255), + [anon_sym_symbol] = ACTIONS(2255), + [anon_sym_object] = ACTIONS(2255), + [anon_sym_abstract] = ACTIONS(2255), + [anon_sym_satisfies] = ACTIONS(2257), + [anon_sym_interface] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [sym__automatic_semicolon] = ACTIONS(2359), + [sym__ternary_qmark] = ACTIONS(2261), [sym_html_comment] = ACTIONS(5), }, - [409] = { - [sym_comment] = STATE(409), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2215), - [anon_sym_default] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2215), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_COMMA] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_typeof] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_in] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_debugger] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_case] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LTtemplate_GT] = ACTIONS(2213), - [anon_sym_GT] = ACTIONS(2215), - [anon_sym_DOT] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_QMARK_DOT] = ACTIONS(2215), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [anon_sym_AMP_AMP] = ACTIONS(2215), - [anon_sym_PIPE_PIPE] = ACTIONS(2215), - [anon_sym_GT_GT] = ACTIONS(2215), - [anon_sym_GT_GT_GT] = ACTIONS(2215), - [anon_sym_LT_LT] = ACTIONS(2215), - [anon_sym_AMP] = ACTIONS(2215), - [anon_sym_CARET] = ACTIONS(2215), - [anon_sym_PIPE] = ACTIONS(2215), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_PERCENT] = ACTIONS(2215), - [anon_sym_STAR_STAR] = ACTIONS(2215), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_LT_EQ] = ACTIONS(2215), - [anon_sym_EQ_EQ] = ACTIONS(2215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2215), - [anon_sym_GT_EQ] = ACTIONS(2215), - [anon_sym_QMARK_QMARK] = ACTIONS(2215), - [anon_sym_instanceof] = ACTIONS(2215), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_delete] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), + [402] = { + [sym_import] = STATE(4132), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3123), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(402), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym__type_query_member_expression] = STATE(3599), + [sym__type_query_subscript_expression] = STATE(3600), + [sym__type_query_call_expression] = STATE(3656), + [sym__type_query_instantiation_expression] = STATE(3722), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2361), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1506), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_number] = ACTIONS(2213), - [sym_private_property_identifier] = ACTIONS(2213), - [sym_this] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_null] = ACTIONS(2213), - [sym_undefined] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_readonly] = ACTIONS(2213), - [anon_sym_get] = ACTIONS(2213), - [anon_sym_set] = ACTIONS(2213), - [anon_sym_declare] = ACTIONS(2213), - [anon_sym_public] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_any] = ACTIONS(2213), - [anon_sym_number] = ACTIONS(2213), - [anon_sym_boolean] = ACTIONS(2213), - [anon_sym_string] = ACTIONS(2213), - [anon_sym_symbol] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_satisfies] = ACTIONS(2215), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2379), - [sym__ternary_qmark] = ACTIONS(2219), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1524), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, - [410] = { - [sym_comment] = STATE(410), - [sym_identifier] = ACTIONS(2257), - [anon_sym_export] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2259), - [anon_sym_default] = ACTIONS(2257), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_as] = ACTIONS(2259), - [anon_sym_namespace] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [anon_sym_COMMA] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_typeof] = ACTIONS(2257), - [anon_sym_import] = ACTIONS(2257), - [anon_sym_with] = ACTIONS(2257), - [anon_sym_var] = ACTIONS(2257), - [anon_sym_let] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_switch] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_in] = ACTIONS(2259), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_debugger] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_throw] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2257), - [anon_sym_case] = ACTIONS(2257), - [anon_sym_yield] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_LTtemplate_GT] = ACTIONS(2257), - [anon_sym_GT] = ACTIONS(2259), - [anon_sym_DOT] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2257), - [anon_sym_SQUOTE] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_async] = ACTIONS(2257), - [anon_sym_function] = ACTIONS(2257), - [anon_sym_QMARK_DOT] = ACTIONS(2259), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_using] = ACTIONS(2257), - [anon_sym_AMP_AMP] = ACTIONS(2259), - [anon_sym_PIPE_PIPE] = ACTIONS(2259), - [anon_sym_GT_GT] = ACTIONS(2259), - [anon_sym_GT_GT_GT] = ACTIONS(2259), - [anon_sym_LT_LT] = ACTIONS(2259), - [anon_sym_AMP] = ACTIONS(2259), - [anon_sym_CARET] = ACTIONS(2259), - [anon_sym_PIPE] = ACTIONS(2259), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_SLASH] = ACTIONS(2257), - [anon_sym_PERCENT] = ACTIONS(2259), - [anon_sym_STAR_STAR] = ACTIONS(2259), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_LT_EQ] = ACTIONS(2259), - [anon_sym_EQ_EQ] = ACTIONS(2259), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2259), - [anon_sym_BANG_EQ] = ACTIONS(2259), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2259), - [anon_sym_GT_EQ] = ACTIONS(2259), - [anon_sym_QMARK_QMARK] = ACTIONS(2259), - [anon_sym_instanceof] = ACTIONS(2259), - [anon_sym_TILDE] = ACTIONS(2257), - [anon_sym_void] = ACTIONS(2257), - [anon_sym_delete] = ACTIONS(2257), - [anon_sym_PLUS_PLUS] = ACTIONS(2257), - [anon_sym_DASH_DASH] = ACTIONS(2257), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2257), - [sym_number] = ACTIONS(2257), - [sym_private_property_identifier] = ACTIONS(2257), - [sym_this] = ACTIONS(2257), - [sym_super] = ACTIONS(2257), - [sym_true] = ACTIONS(2257), - [sym_false] = ACTIONS(2257), - [sym_null] = ACTIONS(2257), - [sym_undefined] = ACTIONS(2257), - [anon_sym_AT] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_readonly] = ACTIONS(2257), - [anon_sym_get] = ACTIONS(2257), - [anon_sym_set] = ACTIONS(2257), - [anon_sym_declare] = ACTIONS(2257), - [anon_sym_public] = ACTIONS(2257), - [anon_sym_private] = ACTIONS(2257), - [anon_sym_protected] = ACTIONS(2257), - [anon_sym_override] = ACTIONS(2257), - [anon_sym_module] = ACTIONS(2257), - [anon_sym_any] = ACTIONS(2257), - [anon_sym_number] = ACTIONS(2257), - [anon_sym_boolean] = ACTIONS(2257), - [anon_sym_string] = ACTIONS(2257), - [anon_sym_symbol] = ACTIONS(2257), - [anon_sym_object] = ACTIONS(2257), - [anon_sym_abstract] = ACTIONS(2257), - [anon_sym_satisfies] = ACTIONS(2259), - [anon_sym_interface] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [sym__automatic_semicolon] = ACTIONS(2381), - [sym__ternary_qmark] = ACTIONS(2263), + [403] = { + [sym_import] = STATE(4107), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(403), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym__type_query_member_expression] = STATE(3599), + [sym__type_query_subscript_expression] = STATE(3600), + [sym__type_query_call_expression] = STATE(3656), + [sym__type_query_instantiation_expression] = STATE(3722), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2363), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1652), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [411] = { - [sym_comment] = STATE(411), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_STAR] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_as] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_COMMA] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), + [404] = { + [sym_import] = STATE(4290), + [sym_expression_statement] = STATE(463), + [sym_empty_statement] = STATE(463), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2478), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6755), + [sym_string] = STATE(2940), + [sym_comment] = STATE(404), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), + [sym_html_comment] = ACTIONS(5), + }, + [405] = { + [sym_comment] = STATE(405), + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2221), + [anon_sym_export] = ACTIONS(2221), + [anon_sym_STAR] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_as] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_COMMA] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_typeof] = ACTIONS(2221), + [anon_sym_import] = ACTIONS(2221), + [anon_sym_with] = ACTIONS(2221), + [anon_sym_var] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_else] = ACTIONS(2221), [anon_sym_if] = ACTIONS(2221), [anon_sym_switch] = ACTIONS(2221), [anon_sym_for] = ACTIONS(2221), @@ -86316,7 +85349,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2221), [anon_sym_throw] = ACTIONS(2221), [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_case] = ACTIONS(2221), [anon_sym_yield] = ACTIONS(2221), [anon_sym_LBRACK] = ACTIONS(2221), [anon_sym_LTtemplate_GT] = ACTIONS(2221), @@ -86392,201 +85424,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2223), [sym_html_comment] = ACTIONS(5), }, - [412] = { - [sym_comment] = STATE(412), - [ts_builtin_sym_end] = ACTIONS(2205), - [sym_identifier] = ACTIONS(2203), - [anon_sym_export] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_namespace] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_COMMA] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_typeof] = ACTIONS(2203), - [anon_sym_import] = ACTIONS(2203), - [anon_sym_with] = ACTIONS(2203), - [anon_sym_var] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_else] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_switch] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2203), - [anon_sym_in] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [anon_sym_do] = ACTIONS(2203), - [anon_sym_try] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_debugger] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_throw] = ACTIONS(2203), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_yield] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_LTtemplate_GT] = ACTIONS(2203), - [anon_sym_GT] = ACTIONS(2203), - [anon_sym_DOT] = ACTIONS(2203), - [anon_sym_DQUOTE] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_class] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_function] = ACTIONS(2203), - [anon_sym_QMARK_DOT] = ACTIONS(2203), - [anon_sym_new] = ACTIONS(2203), - [anon_sym_using] = ACTIONS(2203), - [anon_sym_AMP_AMP] = ACTIONS(2203), - [anon_sym_PIPE_PIPE] = ACTIONS(2203), - [anon_sym_GT_GT] = ACTIONS(2203), - [anon_sym_GT_GT_GT] = ACTIONS(2203), - [anon_sym_LT_LT] = ACTIONS(2203), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_CARET] = ACTIONS(2203), - [anon_sym_PIPE] = ACTIONS(2203), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_SLASH] = ACTIONS(2203), - [anon_sym_PERCENT] = ACTIONS(2203), - [anon_sym_STAR_STAR] = ACTIONS(2203), - [anon_sym_LT] = ACTIONS(2203), - [anon_sym_LT_EQ] = ACTIONS(2203), - [anon_sym_EQ_EQ] = ACTIONS(2203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2203), - [anon_sym_BANG_EQ] = ACTIONS(2203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2203), - [anon_sym_GT_EQ] = ACTIONS(2203), - [anon_sym_QMARK_QMARK] = ACTIONS(2203), - [anon_sym_instanceof] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(2203), - [anon_sym_delete] = ACTIONS(2203), - [anon_sym_PLUS_PLUS] = ACTIONS(2203), - [anon_sym_DASH_DASH] = ACTIONS(2203), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2203), - [sym_number] = ACTIONS(2203), - [sym_private_property_identifier] = ACTIONS(2203), - [sym_this] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_true] = ACTIONS(2203), - [sym_false] = ACTIONS(2203), - [sym_null] = ACTIONS(2203), - [sym_undefined] = ACTIONS(2203), - [anon_sym_AT] = ACTIONS(2203), - [anon_sym_static] = ACTIONS(2203), - [anon_sym_readonly] = ACTIONS(2203), - [anon_sym_get] = ACTIONS(2203), - [anon_sym_set] = ACTIONS(2203), - [anon_sym_declare] = ACTIONS(2203), - [anon_sym_public] = ACTIONS(2203), - [anon_sym_private] = ACTIONS(2203), - [anon_sym_protected] = ACTIONS(2203), - [anon_sym_override] = ACTIONS(2203), - [anon_sym_module] = ACTIONS(2203), - [anon_sym_any] = ACTIONS(2203), - [anon_sym_number] = ACTIONS(2203), - [anon_sym_boolean] = ACTIONS(2203), - [anon_sym_string] = ACTIONS(2203), - [anon_sym_symbol] = ACTIONS(2203), - [anon_sym_object] = ACTIONS(2203), - [anon_sym_abstract] = ACTIONS(2203), - [anon_sym_satisfies] = ACTIONS(2203), - [anon_sym_interface] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [sym__automatic_semicolon] = ACTIONS(2205), - [sym__ternary_qmark] = ACTIONS(2205), + [406] = { + [sym_comment] = STATE(406), + [ts_builtin_sym_end] = ACTIONS(2365), + [sym_identifier] = ACTIONS(2083), + [anon_sym_export] = ACTIONS(2083), + [anon_sym_STAR] = ACTIONS(2085), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_as] = ACTIONS(2085), + [anon_sym_namespace] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_COMMA] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_typeof] = ACTIONS(2083), + [anon_sym_import] = ACTIONS(2083), + [anon_sym_with] = ACTIONS(2083), + [anon_sym_var] = ACTIONS(2083), + [anon_sym_let] = ACTIONS(2083), + [anon_sym_const] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_else] = ACTIONS(2083), + [anon_sym_if] = ACTIONS(2083), + [anon_sym_switch] = ACTIONS(2083), + [anon_sym_for] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_await] = ACTIONS(2083), + [anon_sym_in] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2083), + [anon_sym_do] = ACTIONS(2083), + [anon_sym_try] = ACTIONS(2083), + [anon_sym_break] = ACTIONS(2083), + [anon_sym_continue] = ACTIONS(2083), + [anon_sym_debugger] = ACTIONS(2083), + [anon_sym_return] = ACTIONS(2083), + [anon_sym_throw] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_yield] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LTtemplate_GT] = ACTIONS(2083), + [anon_sym_GT] = ACTIONS(2085), + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2083), + [anon_sym_SQUOTE] = ACTIONS(2083), + [anon_sym_class] = ACTIONS(2083), + [anon_sym_async] = ACTIONS(2083), + [anon_sym_function] = ACTIONS(2083), + [anon_sym_QMARK_DOT] = ACTIONS(2085), + [anon_sym_new] = ACTIONS(2083), + [anon_sym_using] = ACTIONS(2083), + [anon_sym_AMP_AMP] = ACTIONS(2085), + [anon_sym_PIPE_PIPE] = ACTIONS(2085), + [anon_sym_GT_GT] = ACTIONS(2085), + [anon_sym_GT_GT_GT] = ACTIONS(2085), + [anon_sym_LT_LT] = ACTIONS(2085), + [anon_sym_AMP] = ACTIONS(2085), + [anon_sym_CARET] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(2083), + [anon_sym_PERCENT] = ACTIONS(2085), + [anon_sym_STAR_STAR] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_LT_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), + [anon_sym_BANG_EQ] = ACTIONS(2085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), + [anon_sym_GT_EQ] = ACTIONS(2085), + [anon_sym_QMARK_QMARK] = ACTIONS(2085), + [anon_sym_instanceof] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_void] = ACTIONS(2083), + [anon_sym_delete] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2083), + [sym_number] = ACTIONS(2083), + [sym_private_property_identifier] = ACTIONS(2083), + [sym_this] = ACTIONS(2083), + [sym_super] = ACTIONS(2083), + [sym_true] = ACTIONS(2083), + [sym_false] = ACTIONS(2083), + [sym_null] = ACTIONS(2083), + [sym_undefined] = ACTIONS(2083), + [anon_sym_AT] = ACTIONS(2083), + [anon_sym_static] = ACTIONS(2083), + [anon_sym_readonly] = ACTIONS(2083), + [anon_sym_get] = ACTIONS(2083), + [anon_sym_set] = ACTIONS(2083), + [anon_sym_declare] = ACTIONS(2083), + [anon_sym_public] = ACTIONS(2083), + [anon_sym_private] = ACTIONS(2083), + [anon_sym_protected] = ACTIONS(2083), + [anon_sym_override] = ACTIONS(2083), + [anon_sym_module] = ACTIONS(2083), + [anon_sym_any] = ACTIONS(2083), + [anon_sym_number] = ACTIONS(2083), + [anon_sym_boolean] = ACTIONS(2083), + [anon_sym_string] = ACTIONS(2083), + [anon_sym_symbol] = ACTIONS(2083), + [anon_sym_object] = ACTIONS(2083), + [anon_sym_abstract] = ACTIONS(2083), + [anon_sym_satisfies] = ACTIONS(2085), + [anon_sym_interface] = ACTIONS(2083), + [anon_sym_enum] = ACTIONS(2083), + [sym__automatic_semicolon] = ACTIONS(2367), + [sym__ternary_qmark] = ACTIONS(2089), [sym_html_comment] = ACTIONS(5), }, - [413] = { - [sym_import] = STATE(4391), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2464), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(413), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym__type_query_member_expression] = STATE(3817), - [sym__type_query_subscript_expression] = STATE(3811), - [sym__type_query_call_expression] = STATE(4045), - [sym__type_query_instantiation_expression] = STATE(4140), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2383), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [407] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2630), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_spread_element] = STATE(7385), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7385), + [sym_string] = STATE(2547), + [sym_comment] = STATE(407), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2371), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -86594,137 +85626,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [414] = { - [sym_import] = STATE(4318), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2464), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(414), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym__type_query_member_expression] = STATE(3745), - [sym__type_query_subscript_expression] = STATE(3744), - [sym__type_query_call_expression] = STATE(3813), - [sym__type_query_instantiation_expression] = STATE(3926), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2385), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [408] = { + [sym_comment] = STATE(408), + [sym_identifier] = ACTIONS(2163), + [anon_sym_export] = ACTIONS(2163), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_default] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2163), + [anon_sym_as] = ACTIONS(2163), + [anon_sym_namespace] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_typeof] = ACTIONS(2163), + [anon_sym_import] = ACTIONS(2163), + [anon_sym_with] = ACTIONS(2163), + [anon_sym_var] = ACTIONS(2163), + [anon_sym_let] = ACTIONS(2163), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_switch] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_await] = ACTIONS(2163), + [anon_sym_in] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2163), + [anon_sym_do] = ACTIONS(2163), + [anon_sym_try] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_debugger] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_throw] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_case] = ACTIONS(2163), + [anon_sym_yield] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2163), + [anon_sym_LTtemplate_GT] = ACTIONS(2163), + [anon_sym_GT] = ACTIONS(2163), + [anon_sym_DOT] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [anon_sym_SQUOTE] = ACTIONS(2163), + [anon_sym_class] = ACTIONS(2163), + [anon_sym_async] = ACTIONS(2163), + [anon_sym_function] = ACTIONS(2163), + [anon_sym_QMARK_DOT] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(2163), + [anon_sym_AMP_AMP] = ACTIONS(2163), + [anon_sym_PIPE_PIPE] = ACTIONS(2163), + [anon_sym_GT_GT] = ACTIONS(2163), + [anon_sym_GT_GT_GT] = ACTIONS(2163), + [anon_sym_LT_LT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2163), + [anon_sym_CARET] = ACTIONS(2163), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2163), + [anon_sym_PERCENT] = ACTIONS(2163), + [anon_sym_STAR_STAR] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2163), + [anon_sym_LT_EQ] = ACTIONS(2163), + [anon_sym_EQ_EQ] = ACTIONS(2163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2163), + [anon_sym_GT_EQ] = ACTIONS(2163), + [anon_sym_QMARK_QMARK] = ACTIONS(2163), + [anon_sym_instanceof] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2163), + [anon_sym_void] = ACTIONS(2163), + [anon_sym_delete] = ACTIONS(2163), + [anon_sym_PLUS_PLUS] = ACTIONS(2163), + [anon_sym_DASH_DASH] = ACTIONS(2163), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2163), + [sym_number] = ACTIONS(2163), + [sym_private_property_identifier] = ACTIONS(2163), + [sym_this] = ACTIONS(2163), + [sym_super] = ACTIONS(2163), + [sym_true] = ACTIONS(2163), + [sym_false] = ACTIONS(2163), + [sym_null] = ACTIONS(2163), + [sym_undefined] = ACTIONS(2163), + [anon_sym_AT] = ACTIONS(2163), + [anon_sym_static] = ACTIONS(2163), + [anon_sym_readonly] = ACTIONS(2163), + [anon_sym_get] = ACTIONS(2163), + [anon_sym_set] = ACTIONS(2163), + [anon_sym_declare] = ACTIONS(2163), + [anon_sym_public] = ACTIONS(2163), + [anon_sym_private] = ACTIONS(2163), + [anon_sym_protected] = ACTIONS(2163), + [anon_sym_override] = ACTIONS(2163), + [anon_sym_module] = ACTIONS(2163), + [anon_sym_any] = ACTIONS(2163), + [anon_sym_number] = ACTIONS(2163), + [anon_sym_boolean] = ACTIONS(2163), + [anon_sym_string] = ACTIONS(2163), + [anon_sym_symbol] = ACTIONS(2163), + [anon_sym_object] = ACTIONS(2163), + [anon_sym_abstract] = ACTIONS(2163), + [anon_sym_satisfies] = ACTIONS(2163), + [anon_sym_interface] = ACTIONS(2163), + [anon_sym_enum] = ACTIONS(2163), + [sym__automatic_semicolon] = ACTIONS(2165), + [sym__ternary_qmark] = ACTIONS(2165), [sym_html_comment] = ACTIONS(5), }, - [415] = { - [sym_comment] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(2387), + [409] = { + [sym_comment] = STATE(409), + [ts_builtin_sym_end] = ACTIONS(2373), [sym_identifier] = ACTIONS(2167), [anon_sym_export] = ACTIONS(2167), [anon_sym_STAR] = ACTIONS(2169), @@ -86828,1218 +85860,672 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2169), [anon_sym_interface] = ACTIONS(2167), [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2171), - [sym__ternary_qmark] = ACTIONS(2171), + [sym__automatic_semicolon] = ACTIONS(2375), + [sym__ternary_qmark] = ACTIONS(2173), [sym_html_comment] = ACTIONS(5), }, - [416] = { - [sym_comment] = STATE(416), - [sym_identifier] = ACTIONS(2077), - [anon_sym_export] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_default] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_as] = ACTIONS(2077), - [anon_sym_namespace] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(2077), - [anon_sym_import] = ACTIONS(2077), - [anon_sym_with] = ACTIONS(2077), - [anon_sym_var] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_switch] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_await] = ACTIONS(2077), - [anon_sym_in] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_debugger] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_throw] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_case] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LTtemplate_GT] = ACTIONS(2077), - [anon_sym_GT] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_class] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_QMARK_DOT] = ACTIONS(2077), - [anon_sym_new] = ACTIONS(2077), - [anon_sym_using] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2077), - [anon_sym_GT_GT_GT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2077), - [anon_sym_CARET] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2077), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2077), - [anon_sym_STAR_STAR] = ACTIONS(2077), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2077), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_QMARK_QMARK] = ACTIONS(2077), - [anon_sym_instanceof] = ACTIONS(2077), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_void] = ACTIONS(2077), - [anon_sym_delete] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2077), - [sym_number] = ACTIONS(2077), - [sym_private_property_identifier] = ACTIONS(2077), - [sym_this] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_true] = ACTIONS(2077), - [sym_false] = ACTIONS(2077), - [sym_null] = ACTIONS(2077), - [sym_undefined] = ACTIONS(2077), - [anon_sym_AT] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_readonly] = ACTIONS(2077), - [anon_sym_get] = ACTIONS(2077), - [anon_sym_set] = ACTIONS(2077), - [anon_sym_declare] = ACTIONS(2077), - [anon_sym_public] = ACTIONS(2077), - [anon_sym_private] = ACTIONS(2077), - [anon_sym_protected] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2077), - [anon_sym_module] = ACTIONS(2077), - [anon_sym_any] = ACTIONS(2077), - [anon_sym_number] = ACTIONS(2077), - [anon_sym_boolean] = ACTIONS(2077), - [anon_sym_string] = ACTIONS(2077), - [anon_sym_symbol] = ACTIONS(2077), - [anon_sym_object] = ACTIONS(2077), - [anon_sym_abstract] = ACTIONS(2077), - [anon_sym_satisfies] = ACTIONS(2077), - [anon_sym_interface] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), - [sym__automatic_semicolon] = ACTIONS(2079), - [sym__ternary_qmark] = ACTIONS(2079), + [410] = { + [sym_comment] = STATE(410), + [ts_builtin_sym_end] = ACTIONS(2239), + [sym_identifier] = ACTIONS(2237), + [anon_sym_export] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_namespace] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_COMMA] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_with] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_in] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_debugger] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_throw] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_LTtemplate_GT] = ACTIONS(2237), + [anon_sym_GT] = ACTIONS(2237), + [anon_sym_DOT] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_QMARK_DOT] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(2237), + [anon_sym_AMP_AMP] = ACTIONS(2237), + [anon_sym_PIPE_PIPE] = ACTIONS(2237), + [anon_sym_GT_GT] = ACTIONS(2237), + [anon_sym_GT_GT_GT] = ACTIONS(2237), + [anon_sym_LT_LT] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_CARET] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_PERCENT] = ACTIONS(2237), + [anon_sym_STAR_STAR] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_LT_EQ] = ACTIONS(2237), + [anon_sym_EQ_EQ] = ACTIONS(2237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2237), + [anon_sym_BANG_EQ] = ACTIONS(2237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2237), + [anon_sym_GT_EQ] = ACTIONS(2237), + [anon_sym_QMARK_QMARK] = ACTIONS(2237), + [anon_sym_instanceof] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2237), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2237), + [sym_number] = ACTIONS(2237), + [sym_private_property_identifier] = ACTIONS(2237), + [sym_this] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_true] = ACTIONS(2237), + [sym_false] = ACTIONS(2237), + [sym_null] = ACTIONS(2237), + [sym_undefined] = ACTIONS(2237), + [anon_sym_AT] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_readonly] = ACTIONS(2237), + [anon_sym_get] = ACTIONS(2237), + [anon_sym_set] = ACTIONS(2237), + [anon_sym_declare] = ACTIONS(2237), + [anon_sym_public] = ACTIONS(2237), + [anon_sym_private] = ACTIONS(2237), + [anon_sym_protected] = ACTIONS(2237), + [anon_sym_override] = ACTIONS(2237), + [anon_sym_module] = ACTIONS(2237), + [anon_sym_any] = ACTIONS(2237), + [anon_sym_number] = ACTIONS(2237), + [anon_sym_boolean] = ACTIONS(2237), + [anon_sym_string] = ACTIONS(2237), + [anon_sym_symbol] = ACTIONS(2237), + [anon_sym_object] = ACTIONS(2237), + [anon_sym_abstract] = ACTIONS(2237), + [anon_sym_satisfies] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [sym__automatic_semicolon] = ACTIONS(2239), + [sym__ternary_qmark] = ACTIONS(2239), [sym_html_comment] = ACTIONS(5), }, - [417] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2922), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_assignment_pattern] = STATE(6571), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2101), - [sym_subscript_expression] = STATE(2101), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4717), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(417), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(6429), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2101), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1912), - [anon_sym_export] = ACTIONS(958), - [anon_sym_type] = ACTIONS(958), - [anon_sym_namespace] = ACTIONS(960), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), + [411] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2657), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_spread_element] = STATE(7002), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7002), + [sym_string] = STATE(2547), + [sym_comment] = STATE(411), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_RBRACE] = ACTIONS(2377), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(958), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(978), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1914), - [anon_sym_using] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2371), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1918), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(958), - [anon_sym_readonly] = ACTIONS(958), - [anon_sym_get] = ACTIONS(958), - [anon_sym_set] = ACTIONS(958), - [anon_sym_declare] = ACTIONS(958), - [anon_sym_public] = ACTIONS(958), - [anon_sym_private] = ACTIONS(958), - [anon_sym_protected] = ACTIONS(958), - [anon_sym_override] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_any] = ACTIONS(958), - [anon_sym_number] = ACTIONS(958), - [anon_sym_boolean] = ACTIONS(958), - [anon_sym_string] = ACTIONS(958), - [anon_sym_symbol] = ACTIONS(958), - [anon_sym_object] = ACTIONS(958), - [sym_html_comment] = ACTIONS(5), - }, - [418] = { - [sym_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(2201), - [sym_identifier] = ACTIONS(2199), - [anon_sym_export] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2199), - [anon_sym_as] = ACTIONS(2199), - [anon_sym_namespace] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_COMMA] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_typeof] = ACTIONS(2199), - [anon_sym_import] = ACTIONS(2199), - [anon_sym_with] = ACTIONS(2199), - [anon_sym_var] = ACTIONS(2199), - [anon_sym_let] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_else] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_switch] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_await] = ACTIONS(2199), - [anon_sym_in] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2199), - [anon_sym_do] = ACTIONS(2199), - [anon_sym_try] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_debugger] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_throw] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_yield] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_LTtemplate_GT] = ACTIONS(2199), - [anon_sym_GT] = ACTIONS(2199), - [anon_sym_DOT] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2199), - [anon_sym_SQUOTE] = ACTIONS(2199), - [anon_sym_class] = ACTIONS(2199), - [anon_sym_async] = ACTIONS(2199), - [anon_sym_function] = ACTIONS(2199), - [anon_sym_QMARK_DOT] = ACTIONS(2199), - [anon_sym_new] = ACTIONS(2199), - [anon_sym_using] = ACTIONS(2199), - [anon_sym_AMP_AMP] = ACTIONS(2199), - [anon_sym_PIPE_PIPE] = ACTIONS(2199), - [anon_sym_GT_GT] = ACTIONS(2199), - [anon_sym_GT_GT_GT] = ACTIONS(2199), - [anon_sym_LT_LT] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_PIPE] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_SLASH] = ACTIONS(2199), - [anon_sym_PERCENT] = ACTIONS(2199), - [anon_sym_STAR_STAR] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2199), - [anon_sym_LT_EQ] = ACTIONS(2199), - [anon_sym_EQ_EQ] = ACTIONS(2199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2199), - [anon_sym_GT_EQ] = ACTIONS(2199), - [anon_sym_QMARK_QMARK] = ACTIONS(2199), - [anon_sym_instanceof] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_void] = ACTIONS(2199), - [anon_sym_delete] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2199), - [sym_number] = ACTIONS(2199), - [sym_private_property_identifier] = ACTIONS(2199), - [sym_this] = ACTIONS(2199), - [sym_super] = ACTIONS(2199), - [sym_true] = ACTIONS(2199), - [sym_false] = ACTIONS(2199), - [sym_null] = ACTIONS(2199), - [sym_undefined] = ACTIONS(2199), - [anon_sym_AT] = ACTIONS(2199), - [anon_sym_static] = ACTIONS(2199), - [anon_sym_readonly] = ACTIONS(2199), - [anon_sym_get] = ACTIONS(2199), - [anon_sym_set] = ACTIONS(2199), - [anon_sym_declare] = ACTIONS(2199), - [anon_sym_public] = ACTIONS(2199), - [anon_sym_private] = ACTIONS(2199), - [anon_sym_protected] = ACTIONS(2199), - [anon_sym_override] = ACTIONS(2199), - [anon_sym_module] = ACTIONS(2199), - [anon_sym_any] = ACTIONS(2199), - [anon_sym_number] = ACTIONS(2199), - [anon_sym_boolean] = ACTIONS(2199), - [anon_sym_string] = ACTIONS(2199), - [anon_sym_symbol] = ACTIONS(2199), - [anon_sym_object] = ACTIONS(2199), - [anon_sym_abstract] = ACTIONS(2199), - [anon_sym_satisfies] = ACTIONS(2199), - [anon_sym_interface] = ACTIONS(2199), - [anon_sym_enum] = ACTIONS(2199), - [sym__automatic_semicolon] = ACTIONS(2201), - [sym__ternary_qmark] = ACTIONS(2201), - [sym_html_comment] = ACTIONS(5), - }, - [419] = { - [sym_comment] = STATE(419), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_STAR_STAR] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_QMARK_QMARK] = ACTIONS(2093), - [anon_sym_instanceof] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_satisfies] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(2389), - [sym__ternary_qmark] = ACTIONS(2095), - [sym_html_comment] = ACTIONS(5), - }, - [420] = { - [sym_comment] = STATE(420), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_STAR_STAR] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_QMARK_QMARK] = ACTIONS(2093), - [anon_sym_instanceof] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_satisfies] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(2391), - [sym__ternary_qmark] = ACTIONS(2095), - [sym_html_comment] = ACTIONS(5), - }, - [421] = { - [sym_comment] = STATE(421), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_QMARK_DOT] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_AMP_AMP] = ACTIONS(2067), - [anon_sym_PIPE_PIPE] = ACTIONS(2067), - [anon_sym_GT_GT] = ACTIONS(2067), - [anon_sym_GT_GT_GT] = ACTIONS(2067), - [anon_sym_LT_LT] = ACTIONS(2067), - [anon_sym_AMP] = ACTIONS(2067), - [anon_sym_CARET] = ACTIONS(2067), - [anon_sym_PIPE] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_PERCENT] = ACTIONS(2067), - [anon_sym_STAR_STAR] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_LT_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ] = ACTIONS(2067), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ] = ACTIONS(2067), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2067), - [anon_sym_GT_EQ] = ACTIONS(2067), - [anon_sym_QMARK_QMARK] = ACTIONS(2067), - [anon_sym_instanceof] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_satisfies] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2393), - [sym__ternary_qmark] = ACTIONS(2103), - [sym_html_comment] = ACTIONS(5), - }, - [422] = { - [sym_import] = STATE(4258), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2573), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(422), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym__type_query_member_expression] = STATE(3745), - [sym__type_query_subscript_expression] = STATE(3744), - [sym__type_query_call_expression] = STATE(3813), - [sym__type_query_instantiation_expression] = STATE(3926), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(2395), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [423] = { - [sym_comment] = STATE(423), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_STAR] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_as] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_COMMA] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_in] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_GT] = ACTIONS(2105), - [anon_sym_DOT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_QMARK_DOT] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_AMP_AMP] = ACTIONS(2105), - [anon_sym_PIPE_PIPE] = ACTIONS(2105), - [anon_sym_GT_GT] = ACTIONS(2105), - [anon_sym_GT_GT_GT] = ACTIONS(2105), - [anon_sym_LT_LT] = ACTIONS(2105), - [anon_sym_AMP] = ACTIONS(2105), - [anon_sym_CARET] = ACTIONS(2105), - [anon_sym_PIPE] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_PERCENT] = ACTIONS(2105), - [anon_sym_STAR_STAR] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_LT_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ] = ACTIONS(2105), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ] = ACTIONS(2105), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), - [anon_sym_GT_EQ] = ACTIONS(2105), - [anon_sym_QMARK_QMARK] = ACTIONS(2105), - [anon_sym_instanceof] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_satisfies] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym__automatic_semicolon] = ACTIONS(2107), - [sym__ternary_qmark] = ACTIONS(2107), + [412] = { + [sym_comment] = STATE(412), + [ts_builtin_sym_end] = ACTIONS(2235), + [sym_identifier] = ACTIONS(2233), + [anon_sym_export] = ACTIONS(2233), + [anon_sym_STAR] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_as] = ACTIONS(2233), + [anon_sym_namespace] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_COMMA] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_typeof] = ACTIONS(2233), + [anon_sym_import] = ACTIONS(2233), + [anon_sym_with] = ACTIONS(2233), + [anon_sym_var] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2233), + [anon_sym_else] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_switch] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2233), + [anon_sym_await] = ACTIONS(2233), + [anon_sym_in] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_do] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_debugger] = ACTIONS(2233), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_throw] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_yield] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LTtemplate_GT] = ACTIONS(2233), + [anon_sym_GT] = ACTIONS(2233), + [anon_sym_DOT] = ACTIONS(2233), + [anon_sym_DQUOTE] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_class] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_function] = ACTIONS(2233), + [anon_sym_QMARK_DOT] = ACTIONS(2233), + [anon_sym_new] = ACTIONS(2233), + [anon_sym_using] = ACTIONS(2233), + [anon_sym_AMP_AMP] = ACTIONS(2233), + [anon_sym_PIPE_PIPE] = ACTIONS(2233), + [anon_sym_GT_GT] = ACTIONS(2233), + [anon_sym_GT_GT_GT] = ACTIONS(2233), + [anon_sym_LT_LT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2233), + [anon_sym_CARET] = ACTIONS(2233), + [anon_sym_PIPE] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_SLASH] = ACTIONS(2233), + [anon_sym_PERCENT] = ACTIONS(2233), + [anon_sym_STAR_STAR] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_LT_EQ] = ACTIONS(2233), + [anon_sym_EQ_EQ] = ACTIONS(2233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2233), + [anon_sym_BANG_EQ] = ACTIONS(2233), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2233), + [anon_sym_GT_EQ] = ACTIONS(2233), + [anon_sym_QMARK_QMARK] = ACTIONS(2233), + [anon_sym_instanceof] = ACTIONS(2233), + [anon_sym_TILDE] = ACTIONS(2233), + [anon_sym_void] = ACTIONS(2233), + [anon_sym_delete] = ACTIONS(2233), + [anon_sym_PLUS_PLUS] = ACTIONS(2233), + [anon_sym_DASH_DASH] = ACTIONS(2233), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2233), + [sym_number] = ACTIONS(2233), + [sym_private_property_identifier] = ACTIONS(2233), + [sym_this] = ACTIONS(2233), + [sym_super] = ACTIONS(2233), + [sym_true] = ACTIONS(2233), + [sym_false] = ACTIONS(2233), + [sym_null] = ACTIONS(2233), + [sym_undefined] = ACTIONS(2233), + [anon_sym_AT] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_readonly] = ACTIONS(2233), + [anon_sym_get] = ACTIONS(2233), + [anon_sym_set] = ACTIONS(2233), + [anon_sym_declare] = ACTIONS(2233), + [anon_sym_public] = ACTIONS(2233), + [anon_sym_private] = ACTIONS(2233), + [anon_sym_protected] = ACTIONS(2233), + [anon_sym_override] = ACTIONS(2233), + [anon_sym_module] = ACTIONS(2233), + [anon_sym_any] = ACTIONS(2233), + [anon_sym_number] = ACTIONS(2233), + [anon_sym_boolean] = ACTIONS(2233), + [anon_sym_string] = ACTIONS(2233), + [anon_sym_symbol] = ACTIONS(2233), + [anon_sym_object] = ACTIONS(2233), + [anon_sym_abstract] = ACTIONS(2233), + [anon_sym_satisfies] = ACTIONS(2233), + [anon_sym_interface] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), + [sym__automatic_semicolon] = ACTIONS(2235), + [sym__ternary_qmark] = ACTIONS(2235), [sym_html_comment] = ACTIONS(5), }, - [424] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2692), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6616), - [sym_string] = STATE(3113), - [sym_comment] = STATE(424), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2397), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [413] = { + [sym_comment] = STATE(413), + [sym_identifier] = ACTIONS(2149), + [anon_sym_export] = ACTIONS(2149), + [anon_sym_STAR] = ACTIONS(2151), + [anon_sym_default] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_as] = ACTIONS(2151), + [anon_sym_namespace] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_COMMA] = ACTIONS(2151), + [anon_sym_RBRACE] = ACTIONS(2149), + [anon_sym_typeof] = ACTIONS(2149), + [anon_sym_import] = ACTIONS(2149), + [anon_sym_with] = ACTIONS(2149), + [anon_sym_var] = ACTIONS(2149), + [anon_sym_let] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_switch] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_in] = ACTIONS(2151), + [anon_sym_while] = ACTIONS(2149), + [anon_sym_do] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_debugger] = ACTIONS(2149), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_throw] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(2149), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_LTtemplate_GT] = ACTIONS(2149), + [anon_sym_GT] = ACTIONS(2151), + [anon_sym_DOT] = ACTIONS(2151), + [anon_sym_DQUOTE] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(2149), + [anon_sym_class] = ACTIONS(2149), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_function] = ACTIONS(2149), + [anon_sym_QMARK_DOT] = ACTIONS(2151), + [anon_sym_new] = ACTIONS(2149), + [anon_sym_using] = ACTIONS(2149), + [anon_sym_AMP_AMP] = ACTIONS(2151), + [anon_sym_PIPE_PIPE] = ACTIONS(2151), + [anon_sym_GT_GT] = ACTIONS(2151), + [anon_sym_GT_GT_GT] = ACTIONS(2151), + [anon_sym_LT_LT] = ACTIONS(2151), + [anon_sym_AMP] = ACTIONS(2151), + [anon_sym_CARET] = ACTIONS(2151), + [anon_sym_PIPE] = ACTIONS(2151), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_SLASH] = ACTIONS(2149), + [anon_sym_PERCENT] = ACTIONS(2151), + [anon_sym_STAR_STAR] = ACTIONS(2151), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_LT_EQ] = ACTIONS(2151), + [anon_sym_EQ_EQ] = ACTIONS(2151), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2151), + [anon_sym_BANG_EQ] = ACTIONS(2151), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2151), + [anon_sym_GT_EQ] = ACTIONS(2151), + [anon_sym_QMARK_QMARK] = ACTIONS(2151), + [anon_sym_instanceof] = ACTIONS(2151), + [anon_sym_TILDE] = ACTIONS(2149), + [anon_sym_void] = ACTIONS(2149), + [anon_sym_delete] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2149), + [anon_sym_DASH_DASH] = ACTIONS(2149), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), - [sym__automatic_semicolon] = ACTIONS(2399), + [anon_sym_BQUOTE] = ACTIONS(2149), + [sym_number] = ACTIONS(2149), + [sym_private_property_identifier] = ACTIONS(2149), + [sym_this] = ACTIONS(2149), + [sym_super] = ACTIONS(2149), + [sym_true] = ACTIONS(2149), + [sym_false] = ACTIONS(2149), + [sym_null] = ACTIONS(2149), + [sym_undefined] = ACTIONS(2149), + [anon_sym_AT] = ACTIONS(2149), + [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_abstract] = ACTIONS(2149), + [anon_sym_satisfies] = ACTIONS(2151), + [anon_sym_interface] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), + [sym__automatic_semicolon] = ACTIONS(2153), + [sym__ternary_qmark] = ACTIONS(2153), [sym_html_comment] = ACTIONS(5), }, - [425] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2664), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6692), - [sym_string] = STATE(3113), - [sym_comment] = STATE(425), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [414] = { + [sym_import] = STATE(4169), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2900), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(414), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym__type_query_member_expression] = STATE(3599), + [sym__type_query_subscript_expression] = STATE(3600), + [sym__type_query_call_expression] = STATE(3656), + [sym__type_query_instantiation_expression] = STATE(3722), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(2379), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2401), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), - [sym__automatic_semicolon] = ACTIONS(2403), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, - [426] = { - [sym_comment] = STATE(426), - [ts_builtin_sym_end] = ACTIONS(2083), - [sym_identifier] = ACTIONS(2081), - [anon_sym_export] = ACTIONS(2081), - [anon_sym_STAR] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_as] = ACTIONS(2081), - [anon_sym_namespace] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_COMMA] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_typeof] = ACTIONS(2081), - [anon_sym_import] = ACTIONS(2081), - [anon_sym_with] = ACTIONS(2081), - [anon_sym_var] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_switch] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_in] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_do] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_debugger] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_yield] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_LTtemplate_GT] = ACTIONS(2081), - [anon_sym_GT] = ACTIONS(2081), - [anon_sym_DOT] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2081), - [anon_sym_class] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_function] = ACTIONS(2081), - [anon_sym_QMARK_DOT] = ACTIONS(2081), - [anon_sym_new] = ACTIONS(2081), - [anon_sym_using] = ACTIONS(2081), - [anon_sym_AMP_AMP] = ACTIONS(2081), - [anon_sym_PIPE_PIPE] = ACTIONS(2081), - [anon_sym_GT_GT] = ACTIONS(2081), - [anon_sym_GT_GT_GT] = ACTIONS(2081), - [anon_sym_LT_LT] = ACTIONS(2081), - [anon_sym_AMP] = ACTIONS(2081), - [anon_sym_CARET] = ACTIONS(2081), - [anon_sym_PIPE] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_SLASH] = ACTIONS(2081), - [anon_sym_PERCENT] = ACTIONS(2081), - [anon_sym_STAR_STAR] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2081), - [anon_sym_LT_EQ] = ACTIONS(2081), - [anon_sym_EQ_EQ] = ACTIONS(2081), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2081), - [anon_sym_BANG_EQ] = ACTIONS(2081), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2081), - [anon_sym_GT_EQ] = ACTIONS(2081), - [anon_sym_QMARK_QMARK] = ACTIONS(2081), - [anon_sym_instanceof] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2081), - [anon_sym_void] = ACTIONS(2081), - [anon_sym_delete] = ACTIONS(2081), - [anon_sym_PLUS_PLUS] = ACTIONS(2081), - [anon_sym_DASH_DASH] = ACTIONS(2081), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2081), - [sym_number] = ACTIONS(2081), - [sym_private_property_identifier] = ACTIONS(2081), - [sym_this] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_true] = ACTIONS(2081), - [sym_false] = ACTIONS(2081), - [sym_null] = ACTIONS(2081), - [sym_undefined] = ACTIONS(2081), - [anon_sym_AT] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_readonly] = ACTIONS(2081), - [anon_sym_get] = ACTIONS(2081), - [anon_sym_set] = ACTIONS(2081), - [anon_sym_declare] = ACTIONS(2081), - [anon_sym_public] = ACTIONS(2081), - [anon_sym_private] = ACTIONS(2081), - [anon_sym_protected] = ACTIONS(2081), - [anon_sym_override] = ACTIONS(2081), - [anon_sym_module] = ACTIONS(2081), - [anon_sym_any] = ACTIONS(2081), - [anon_sym_number] = ACTIONS(2081), - [anon_sym_boolean] = ACTIONS(2081), - [anon_sym_string] = ACTIONS(2081), - [anon_sym_symbol] = ACTIONS(2081), - [anon_sym_object] = ACTIONS(2081), - [anon_sym_abstract] = ACTIONS(2081), - [anon_sym_satisfies] = ACTIONS(2081), - [anon_sym_interface] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [sym__automatic_semicolon] = ACTIONS(2083), - [sym__ternary_qmark] = ACTIONS(2083), + [415] = { + [sym_comment] = STATE(415), + [ts_builtin_sym_end] = ACTIONS(2381), + [sym_identifier] = ACTIONS(2205), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2207), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2207), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_typeof] = ACTIONS(2205), + [anon_sym_import] = ACTIONS(2205), + [anon_sym_with] = ACTIONS(2205), + [anon_sym_var] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_else] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_in] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_debugger] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_LTtemplate_GT] = ACTIONS(2205), + [anon_sym_GT] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_QMARK_DOT] = ACTIONS(2207), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_using] = ACTIONS(2205), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_GT_GT] = ACTIONS(2207), + [anon_sym_GT_GT_GT] = ACTIONS(2207), + [anon_sym_LT_LT] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_PERCENT] = ACTIONS(2207), + [anon_sym_STAR_STAR] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2207), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_QMARK_QMARK] = ACTIONS(2207), + [anon_sym_instanceof] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_void] = ACTIONS(2205), + [anon_sym_delete] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(2205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2205), + [sym_number] = ACTIONS(2205), + [sym_private_property_identifier] = ACTIONS(2205), + [sym_this] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_null] = ACTIONS(2205), + [sym_undefined] = ACTIONS(2205), + [anon_sym_AT] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_readonly] = ACTIONS(2205), + [anon_sym_get] = ACTIONS(2205), + [anon_sym_set] = ACTIONS(2205), + [anon_sym_declare] = ACTIONS(2205), + [anon_sym_public] = ACTIONS(2205), + [anon_sym_private] = ACTIONS(2205), + [anon_sym_protected] = ACTIONS(2205), + [anon_sym_override] = ACTIONS(2205), + [anon_sym_module] = ACTIONS(2205), + [anon_sym_any] = ACTIONS(2205), + [anon_sym_number] = ACTIONS(2205), + [anon_sym_boolean] = ACTIONS(2205), + [anon_sym_string] = ACTIONS(2205), + [anon_sym_symbol] = ACTIONS(2205), + [anon_sym_object] = ACTIONS(2205), + [anon_sym_abstract] = ACTIONS(2205), + [anon_sym_satisfies] = ACTIONS(2207), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [sym__automatic_semicolon] = ACTIONS(2383), + [sym__ternary_qmark] = ACTIONS(2211), [sym_html_comment] = ACTIONS(5), }, - [427] = { - [sym_comment] = STATE(427), + [416] = { + [sym_comment] = STATE(416), [ts_builtin_sym_end] = ACTIONS(2147), [sym_identifier] = ACTIONS(2145), [anon_sym_export] = ACTIONS(2145), @@ -88057,6 +86543,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2145), [anon_sym_const] = ACTIONS(2145), [anon_sym_BANG] = ACTIONS(2145), + [anon_sym_else] = ACTIONS(2145), [anon_sym_if] = ACTIONS(2145), [anon_sym_switch] = ACTIONS(2145), [anon_sym_for] = ACTIONS(2145), @@ -88147,993 +86634,562 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2147), [sym_html_comment] = ACTIONS(5), }, - [428] = { - [sym_comment] = STATE(428), - [ts_builtin_sym_end] = ACTIONS(2197), - [sym_identifier] = ACTIONS(2195), - [anon_sym_export] = ACTIONS(2195), - [anon_sym_STAR] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_as] = ACTIONS(2195), - [anon_sym_namespace] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_COMMA] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_typeof] = ACTIONS(2195), - [anon_sym_import] = ACTIONS(2195), - [anon_sym_with] = ACTIONS(2195), - [anon_sym_var] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_switch] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_in] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [anon_sym_do] = ACTIONS(2195), - [anon_sym_try] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_debugger] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_throw] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_yield] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_LTtemplate_GT] = ACTIONS(2195), - [anon_sym_GT] = ACTIONS(2195), - [anon_sym_DOT] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_class] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_QMARK_DOT] = ACTIONS(2195), - [anon_sym_new] = ACTIONS(2195), - [anon_sym_using] = ACTIONS(2195), - [anon_sym_AMP_AMP] = ACTIONS(2195), - [anon_sym_PIPE_PIPE] = ACTIONS(2195), - [anon_sym_GT_GT] = ACTIONS(2195), - [anon_sym_GT_GT_GT] = ACTIONS(2195), - [anon_sym_LT_LT] = ACTIONS(2195), - [anon_sym_AMP] = ACTIONS(2195), - [anon_sym_CARET] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2195), - [anon_sym_PLUS] = ACTIONS(2195), - [anon_sym_DASH] = ACTIONS(2195), - [anon_sym_SLASH] = ACTIONS(2195), - [anon_sym_PERCENT] = ACTIONS(2195), - [anon_sym_STAR_STAR] = ACTIONS(2195), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_LT_EQ] = ACTIONS(2195), - [anon_sym_EQ_EQ] = ACTIONS(2195), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2195), - [anon_sym_BANG_EQ] = ACTIONS(2195), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2195), - [anon_sym_GT_EQ] = ACTIONS(2195), - [anon_sym_QMARK_QMARK] = ACTIONS(2195), - [anon_sym_instanceof] = ACTIONS(2195), - [anon_sym_TILDE] = ACTIONS(2195), - [anon_sym_void] = ACTIONS(2195), - [anon_sym_delete] = ACTIONS(2195), - [anon_sym_PLUS_PLUS] = ACTIONS(2195), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2195), - [sym_number] = ACTIONS(2195), - [sym_private_property_identifier] = ACTIONS(2195), - [sym_this] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_true] = ACTIONS(2195), - [sym_false] = ACTIONS(2195), - [sym_null] = ACTIONS(2195), - [sym_undefined] = ACTIONS(2195), - [anon_sym_AT] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_readonly] = ACTIONS(2195), - [anon_sym_get] = ACTIONS(2195), - [anon_sym_set] = ACTIONS(2195), - [anon_sym_declare] = ACTIONS(2195), - [anon_sym_public] = ACTIONS(2195), - [anon_sym_private] = ACTIONS(2195), - [anon_sym_protected] = ACTIONS(2195), - [anon_sym_override] = ACTIONS(2195), - [anon_sym_module] = ACTIONS(2195), - [anon_sym_any] = ACTIONS(2195), - [anon_sym_number] = ACTIONS(2195), - [anon_sym_boolean] = ACTIONS(2195), - [anon_sym_string] = ACTIONS(2195), - [anon_sym_symbol] = ACTIONS(2195), - [anon_sym_object] = ACTIONS(2195), - [anon_sym_abstract] = ACTIONS(2195), - [anon_sym_satisfies] = ACTIONS(2195), - [anon_sym_interface] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [sym__automatic_semicolon] = ACTIONS(2197), - [sym__ternary_qmark] = ACTIONS(2197), - [sym_html_comment] = ACTIONS(5), - }, - [429] = { - [sym_comment] = STATE(429), - [ts_builtin_sym_end] = ACTIONS(2283), - [sym_identifier] = ACTIONS(2229), - [anon_sym_export] = ACTIONS(2229), - [anon_sym_STAR] = ACTIONS(2231), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2231), - [anon_sym_namespace] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_COMMA] = ACTIONS(2231), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_typeof] = ACTIONS(2229), - [anon_sym_import] = ACTIONS(2229), - [anon_sym_with] = ACTIONS(2229), - [anon_sym_var] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_switch] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_await] = ACTIONS(2229), - [anon_sym_in] = ACTIONS(2231), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_debugger] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_throw] = ACTIONS(2229), - [anon_sym_SEMI] = ACTIONS(2229), - [anon_sym_yield] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2229), - [anon_sym_LTtemplate_GT] = ACTIONS(2229), - [anon_sym_GT] = ACTIONS(2231), - [anon_sym_DOT] = ACTIONS(2231), - [anon_sym_DQUOTE] = ACTIONS(2229), - [anon_sym_SQUOTE] = ACTIONS(2229), - [anon_sym_class] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_function] = ACTIONS(2229), - [anon_sym_QMARK_DOT] = ACTIONS(2231), - [anon_sym_new] = ACTIONS(2229), - [anon_sym_using] = ACTIONS(2229), - [anon_sym_AMP_AMP] = ACTIONS(2231), - [anon_sym_PIPE_PIPE] = ACTIONS(2231), - [anon_sym_GT_GT] = ACTIONS(2231), - [anon_sym_GT_GT_GT] = ACTIONS(2231), - [anon_sym_LT_LT] = ACTIONS(2231), - [anon_sym_AMP] = ACTIONS(2231), - [anon_sym_CARET] = ACTIONS(2231), - [anon_sym_PIPE] = ACTIONS(2231), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_SLASH] = ACTIONS(2229), - [anon_sym_PERCENT] = ACTIONS(2231), - [anon_sym_STAR_STAR] = ACTIONS(2231), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_LT_EQ] = ACTIONS(2231), - [anon_sym_EQ_EQ] = ACTIONS(2231), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2231), - [anon_sym_BANG_EQ] = ACTIONS(2231), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2231), - [anon_sym_GT_EQ] = ACTIONS(2231), - [anon_sym_QMARK_QMARK] = ACTIONS(2231), - [anon_sym_instanceof] = ACTIONS(2231), - [anon_sym_TILDE] = ACTIONS(2229), - [anon_sym_void] = ACTIONS(2229), - [anon_sym_delete] = ACTIONS(2229), - [anon_sym_PLUS_PLUS] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2229), - [sym_number] = ACTIONS(2229), - [sym_private_property_identifier] = ACTIONS(2229), - [sym_this] = ACTIONS(2229), - [sym_super] = ACTIONS(2229), - [sym_true] = ACTIONS(2229), - [sym_false] = ACTIONS(2229), - [sym_null] = ACTIONS(2229), - [sym_undefined] = ACTIONS(2229), - [anon_sym_AT] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_readonly] = ACTIONS(2229), - [anon_sym_get] = ACTIONS(2229), - [anon_sym_set] = ACTIONS(2229), - [anon_sym_declare] = ACTIONS(2229), - [anon_sym_public] = ACTIONS(2229), - [anon_sym_private] = ACTIONS(2229), - [anon_sym_protected] = ACTIONS(2229), - [anon_sym_override] = ACTIONS(2229), - [anon_sym_module] = ACTIONS(2229), - [anon_sym_any] = ACTIONS(2229), - [anon_sym_number] = ACTIONS(2229), - [anon_sym_boolean] = ACTIONS(2229), - [anon_sym_string] = ACTIONS(2229), - [anon_sym_symbol] = ACTIONS(2229), - [anon_sym_object] = ACTIONS(2229), - [anon_sym_abstract] = ACTIONS(2229), - [anon_sym_satisfies] = ACTIONS(2231), - [anon_sym_interface] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [sym__automatic_semicolon] = ACTIONS(2405), - [sym__ternary_qmark] = ACTIONS(2235), - [sym_html_comment] = ACTIONS(5), - }, - [430] = { - [sym_comment] = STATE(430), - [ts_builtin_sym_end] = ACTIONS(2297), - [sym_identifier] = ACTIONS(2117), - [anon_sym_export] = ACTIONS(2117), - [anon_sym_STAR] = ACTIONS(2119), - [anon_sym_type] = ACTIONS(2117), - [anon_sym_as] = ACTIONS(2119), - [anon_sym_namespace] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_typeof] = ACTIONS(2117), - [anon_sym_import] = ACTIONS(2117), - [anon_sym_with] = ACTIONS(2117), - [anon_sym_var] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_switch] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_await] = ACTIONS(2117), - [anon_sym_in] = ACTIONS(2119), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_try] = 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(2117), - [anon_sym_yield] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_LTtemplate_GT] = ACTIONS(2117), - [anon_sym_GT] = ACTIONS(2119), - [anon_sym_DOT] = ACTIONS(2119), - [anon_sym_DQUOTE] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2117), - [anon_sym_class] = ACTIONS(2117), - [anon_sym_async] = ACTIONS(2117), - [anon_sym_function] = ACTIONS(2117), - [anon_sym_QMARK_DOT] = ACTIONS(2119), - [anon_sym_new] = ACTIONS(2117), - [anon_sym_using] = ACTIONS(2117), - [anon_sym_AMP_AMP] = ACTIONS(2119), - [anon_sym_PIPE_PIPE] = ACTIONS(2119), - [anon_sym_GT_GT] = ACTIONS(2119), - [anon_sym_GT_GT_GT] = ACTIONS(2119), - [anon_sym_LT_LT] = ACTIONS(2119), - [anon_sym_AMP] = ACTIONS(2119), - [anon_sym_CARET] = ACTIONS(2119), - [anon_sym_PIPE] = ACTIONS(2119), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_SLASH] = ACTIONS(2117), - [anon_sym_PERCENT] = ACTIONS(2119), - [anon_sym_STAR_STAR] = ACTIONS(2119), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_LT_EQ] = ACTIONS(2119), - [anon_sym_EQ_EQ] = ACTIONS(2119), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2119), - [anon_sym_BANG_EQ] = ACTIONS(2119), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2119), - [anon_sym_GT_EQ] = ACTIONS(2119), - [anon_sym_QMARK_QMARK] = ACTIONS(2119), - [anon_sym_instanceof] = ACTIONS(2119), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_void] = ACTIONS(2117), - [anon_sym_delete] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2117), - [sym_number] = ACTIONS(2117), - [sym_private_property_identifier] = ACTIONS(2117), - [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(2117), - [anon_sym_static] = ACTIONS(2117), - [anon_sym_readonly] = ACTIONS(2117), - [anon_sym_get] = ACTIONS(2117), - [anon_sym_set] = ACTIONS(2117), - [anon_sym_declare] = ACTIONS(2117), - [anon_sym_public] = ACTIONS(2117), - [anon_sym_private] = ACTIONS(2117), - [anon_sym_protected] = ACTIONS(2117), - [anon_sym_override] = ACTIONS(2117), - [anon_sym_module] = ACTIONS(2117), - [anon_sym_any] = ACTIONS(2117), - [anon_sym_number] = ACTIONS(2117), - [anon_sym_boolean] = ACTIONS(2117), - [anon_sym_string] = ACTIONS(2117), - [anon_sym_symbol] = ACTIONS(2117), - [anon_sym_object] = ACTIONS(2117), - [anon_sym_abstract] = ACTIONS(2117), - [anon_sym_satisfies] = ACTIONS(2119), - [anon_sym_interface] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [sym__automatic_semicolon] = ACTIONS(2407), - [sym__ternary_qmark] = ACTIONS(2123), + [417] = { + [sym_comment] = STATE(417), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_in] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_case] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_GT] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2199), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_QMARK_DOT] = ACTIONS(2199), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_GT_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_AMP] = ACTIONS(2199), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2199), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_PERCENT] = ACTIONS(2199), + [anon_sym_STAR_STAR] = ACTIONS(2199), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_LT_EQ] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2199), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_QMARK_QMARK] = ACTIONS(2199), + [anon_sym_instanceof] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_satisfies] = ACTIONS(2199), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [sym__automatic_semicolon] = ACTIONS(2385), + [sym__ternary_qmark] = ACTIONS(2203), [sym_html_comment] = ACTIONS(5), }, - [431] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(431), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5039), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), + [418] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2764), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_assignment_pattern] = STATE(6802), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1959), + [sym_subscript_expression] = STATE(1959), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4573), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(418), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(6098), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1959), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1936), + [anon_sym_export] = ACTIONS(991), + [anon_sym_type] = ACTIONS(991), + [anon_sym_namespace] = ACTIONS(993), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_let] = ACTIONS(991), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), + [anon_sym_async] = ACTIONS(1011), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), + [anon_sym_new] = ACTIONS(1938), + [anon_sym_using] = ACTIONS(1015), [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(2409), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1081), + [sym_undefined] = ACTIONS(1942), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2411), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_static] = ACTIONS(991), + [anon_sym_readonly] = ACTIONS(991), + [anon_sym_get] = ACTIONS(991), + [anon_sym_set] = ACTIONS(991), + [anon_sym_declare] = ACTIONS(991), + [anon_sym_public] = ACTIONS(991), + [anon_sym_private] = ACTIONS(991), + [anon_sym_protected] = ACTIONS(991), + [anon_sym_override] = ACTIONS(991), + [anon_sym_module] = ACTIONS(991), + [anon_sym_any] = ACTIONS(991), + [anon_sym_number] = ACTIONS(991), + [anon_sym_boolean] = ACTIONS(991), + [anon_sym_string] = ACTIONS(991), + [anon_sym_symbol] = ACTIONS(991), + [anon_sym_object] = ACTIONS(991), [sym_html_comment] = ACTIONS(5), }, - [432] = { - [sym_comment] = STATE(432), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_STAR_STAR] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_QMARK_QMARK] = ACTIONS(2093), - [anon_sym_instanceof] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_satisfies] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(2413), - [sym__ternary_qmark] = ACTIONS(2095), + [419] = { + [sym_comment] = STATE(419), + [ts_builtin_sym_end] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2213), + [anon_sym_export] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_as] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_typeof] = ACTIONS(2213), + [anon_sym_import] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(2213), + [anon_sym_var] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_else] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_switch] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_in] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_debugger] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_throw] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_LTtemplate_GT] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2215), + [anon_sym_DOT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_class] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_function] = ACTIONS(2213), + [anon_sym_QMARK_DOT] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2213), + [anon_sym_using] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2215), + [anon_sym_PIPE_PIPE] = ACTIONS(2215), + [anon_sym_GT_GT] = ACTIONS(2215), + [anon_sym_GT_GT_GT] = ACTIONS(2215), + [anon_sym_LT_LT] = ACTIONS(2215), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_CARET] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2215), + [anon_sym_STAR_STAR] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_EQ] = ACTIONS(2215), + [anon_sym_EQ_EQ] = ACTIONS(2215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2215), + [anon_sym_GT_EQ] = ACTIONS(2215), + [anon_sym_QMARK_QMARK] = ACTIONS(2215), + [anon_sym_instanceof] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2213), + [anon_sym_void] = ACTIONS(2213), + [anon_sym_delete] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2213), + [sym_number] = ACTIONS(2213), + [sym_private_property_identifier] = ACTIONS(2213), + [sym_this] = ACTIONS(2213), + [sym_super] = ACTIONS(2213), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [sym_null] = ACTIONS(2213), + [sym_undefined] = ACTIONS(2213), + [anon_sym_AT] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_readonly] = ACTIONS(2213), + [anon_sym_get] = ACTIONS(2213), + [anon_sym_set] = ACTIONS(2213), + [anon_sym_declare] = ACTIONS(2213), + [anon_sym_public] = ACTIONS(2213), + [anon_sym_private] = ACTIONS(2213), + [anon_sym_protected] = ACTIONS(2213), + [anon_sym_override] = ACTIONS(2213), + [anon_sym_module] = ACTIONS(2213), + [anon_sym_any] = ACTIONS(2213), + [anon_sym_number] = ACTIONS(2213), + [anon_sym_boolean] = ACTIONS(2213), + [anon_sym_string] = ACTIONS(2213), + [anon_sym_symbol] = ACTIONS(2213), + [anon_sym_object] = ACTIONS(2213), + [anon_sym_abstract] = ACTIONS(2213), + [anon_sym_satisfies] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [sym__automatic_semicolon] = ACTIONS(2389), + [sym__ternary_qmark] = ACTIONS(2219), [sym_html_comment] = ACTIONS(5), }, - [433] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(433), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5245), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), + [420] = { + [sym_comment] = STATE(420), + [sym_identifier] = ACTIONS(2205), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2207), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_typeof] = ACTIONS(2205), + [anon_sym_import] = ACTIONS(2205), + [anon_sym_with] = ACTIONS(2205), + [anon_sym_var] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_in] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_debugger] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_case] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_LTtemplate_GT] = ACTIONS(2205), + [anon_sym_GT] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_QMARK_DOT] = ACTIONS(2207), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_using] = ACTIONS(2205), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_GT_GT] = ACTIONS(2207), + [anon_sym_GT_GT_GT] = ACTIONS(2207), + [anon_sym_LT_LT] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_PERCENT] = ACTIONS(2207), + [anon_sym_STAR_STAR] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2207), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_QMARK_QMARK] = ACTIONS(2207), + [anon_sym_instanceof] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_void] = ACTIONS(2205), + [anon_sym_delete] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(2205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2205), + [sym_number] = ACTIONS(2205), + [sym_private_property_identifier] = ACTIONS(2205), + [sym_this] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_null] = ACTIONS(2205), + [sym_undefined] = ACTIONS(2205), + [anon_sym_AT] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_readonly] = ACTIONS(2205), + [anon_sym_get] = ACTIONS(2205), + [anon_sym_set] = ACTIONS(2205), + [anon_sym_declare] = ACTIONS(2205), + [anon_sym_public] = ACTIONS(2205), + [anon_sym_private] = ACTIONS(2205), + [anon_sym_protected] = ACTIONS(2205), + [anon_sym_override] = ACTIONS(2205), + [anon_sym_module] = ACTIONS(2205), + [anon_sym_any] = ACTIONS(2205), + [anon_sym_number] = ACTIONS(2205), + [anon_sym_boolean] = ACTIONS(2205), + [anon_sym_string] = ACTIONS(2205), + [anon_sym_symbol] = ACTIONS(2205), + [anon_sym_object] = ACTIONS(2205), + [anon_sym_abstract] = ACTIONS(2205), + [anon_sym_satisfies] = ACTIONS(2207), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [sym__automatic_semicolon] = ACTIONS(2391), + [sym__ternary_qmark] = ACTIONS(2211), + [sym_html_comment] = ACTIONS(5), + }, + [421] = { + [sym_import] = STATE(4088), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2563), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(421), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym__type_query_member_expression] = STATE(3599), + [sym__type_query_subscript_expression] = STATE(3600), + [sym__type_query_call_expression] = STATE(3656), + [sym__type_query_instantiation_expression] = STATE(3722), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(2393), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1079), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1488), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2353), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [434] = { - [sym_comment] = STATE(434), - [ts_builtin_sym_end] = ACTIONS(2079), - [sym_identifier] = ACTIONS(2077), - [anon_sym_export] = ACTIONS(2077), - [anon_sym_STAR] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_as] = ACTIONS(2077), - [anon_sym_namespace] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_COMMA] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(2077), - [anon_sym_import] = ACTIONS(2077), - [anon_sym_with] = ACTIONS(2077), - [anon_sym_var] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_switch] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_await] = ACTIONS(2077), - [anon_sym_in] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_debugger] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_throw] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LTtemplate_GT] = ACTIONS(2077), - [anon_sym_GT] = ACTIONS(2077), - [anon_sym_DOT] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_class] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_QMARK_DOT] = ACTIONS(2077), - [anon_sym_new] = ACTIONS(2077), - [anon_sym_using] = ACTIONS(2077), - [anon_sym_AMP_AMP] = ACTIONS(2077), - [anon_sym_PIPE_PIPE] = ACTIONS(2077), - [anon_sym_GT_GT] = ACTIONS(2077), - [anon_sym_GT_GT_GT] = ACTIONS(2077), - [anon_sym_LT_LT] = ACTIONS(2077), - [anon_sym_AMP] = ACTIONS(2077), - [anon_sym_CARET] = ACTIONS(2077), - [anon_sym_PIPE] = ACTIONS(2077), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2077), - [anon_sym_PERCENT] = ACTIONS(2077), - [anon_sym_STAR_STAR] = ACTIONS(2077), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_LT_EQ] = ACTIONS(2077), - [anon_sym_EQ_EQ] = ACTIONS(2077), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ] = ACTIONS(2077), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2077), - [anon_sym_GT_EQ] = ACTIONS(2077), - [anon_sym_QMARK_QMARK] = ACTIONS(2077), - [anon_sym_instanceof] = ACTIONS(2077), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_void] = ACTIONS(2077), - [anon_sym_delete] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2077), - [sym_number] = ACTIONS(2077), - [sym_private_property_identifier] = ACTIONS(2077), - [sym_this] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_true] = ACTIONS(2077), - [sym_false] = ACTIONS(2077), - [sym_null] = ACTIONS(2077), - [sym_undefined] = ACTIONS(2077), - [anon_sym_AT] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_readonly] = ACTIONS(2077), - [anon_sym_get] = ACTIONS(2077), - [anon_sym_set] = ACTIONS(2077), - [anon_sym_declare] = ACTIONS(2077), - [anon_sym_public] = ACTIONS(2077), - [anon_sym_private] = ACTIONS(2077), - [anon_sym_protected] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2077), - [anon_sym_module] = ACTIONS(2077), - [anon_sym_any] = ACTIONS(2077), - [anon_sym_number] = ACTIONS(2077), - [anon_sym_boolean] = ACTIONS(2077), - [anon_sym_string] = ACTIONS(2077), - [anon_sym_symbol] = ACTIONS(2077), - [anon_sym_object] = ACTIONS(2077), - [anon_sym_abstract] = ACTIONS(2077), - [anon_sym_satisfies] = ACTIONS(2077), - [anon_sym_interface] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), - [sym__automatic_semicolon] = ACTIONS(2079), - [sym__ternary_qmark] = ACTIONS(2079), - [sym_html_comment] = ACTIONS(5), - }, - [435] = { - [sym_comment] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_STAR] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_COMMA] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_in] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_GT] = ACTIONS(2093), - [anon_sym_DOT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_QMARK_DOT] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_AMP_AMP] = ACTIONS(2093), - [anon_sym_PIPE_PIPE] = ACTIONS(2093), - [anon_sym_GT_GT] = ACTIONS(2093), - [anon_sym_GT_GT_GT] = ACTIONS(2093), - [anon_sym_LT_LT] = ACTIONS(2093), - [anon_sym_AMP] = ACTIONS(2093), - [anon_sym_CARET] = ACTIONS(2093), - [anon_sym_PIPE] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_PERCENT] = ACTIONS(2093), - [anon_sym_STAR_STAR] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_LT_EQ] = ACTIONS(2093), - [anon_sym_EQ_EQ] = ACTIONS(2093), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ] = ACTIONS(2093), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2093), - [anon_sym_GT_EQ] = ACTIONS(2093), - [anon_sym_QMARK_QMARK] = ACTIONS(2093), - [anon_sym_instanceof] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_satisfies] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(2095), - [sym__ternary_qmark] = ACTIONS(2095), - [sym_html_comment] = ACTIONS(5), - }, - [436] = { - [sym_comment] = STATE(436), - [ts_builtin_sym_end] = ACTIONS(2301), - [sym_identifier] = ACTIONS(2127), - [anon_sym_export] = ACTIONS(2127), - [anon_sym_STAR] = ACTIONS(2129), - [anon_sym_type] = ACTIONS(2127), - [anon_sym_as] = ACTIONS(2129), - [anon_sym_namespace] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_COMMA] = ACTIONS(2129), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_typeof] = ACTIONS(2127), - [anon_sym_import] = ACTIONS(2127), - [anon_sym_with] = ACTIONS(2127), - [anon_sym_var] = ACTIONS(2127), - [anon_sym_let] = ACTIONS(2127), - [anon_sym_const] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2127), - [anon_sym_switch] = ACTIONS(2127), - [anon_sym_for] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_await] = ACTIONS(2127), - [anon_sym_in] = ACTIONS(2129), - [anon_sym_while] = ACTIONS(2127), - [anon_sym_do] = ACTIONS(2127), - [anon_sym_try] = ACTIONS(2127), - [anon_sym_break] = ACTIONS(2127), - [anon_sym_continue] = ACTIONS(2127), - [anon_sym_debugger] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2127), - [anon_sym_throw] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_yield] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_LTtemplate_GT] = ACTIONS(2127), - [anon_sym_GT] = ACTIONS(2129), - [anon_sym_DOT] = ACTIONS(2129), - [anon_sym_DQUOTE] = ACTIONS(2127), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_class] = ACTIONS(2127), - [anon_sym_async] = ACTIONS(2127), - [anon_sym_function] = ACTIONS(2127), - [anon_sym_QMARK_DOT] = ACTIONS(2129), - [anon_sym_new] = ACTIONS(2127), - [anon_sym_using] = ACTIONS(2127), - [anon_sym_AMP_AMP] = ACTIONS(2129), - [anon_sym_PIPE_PIPE] = ACTIONS(2129), - [anon_sym_GT_GT] = ACTIONS(2129), - [anon_sym_GT_GT_GT] = ACTIONS(2129), - [anon_sym_LT_LT] = ACTIONS(2129), - [anon_sym_AMP] = ACTIONS(2129), - [anon_sym_CARET] = ACTIONS(2129), - [anon_sym_PIPE] = ACTIONS(2129), - [anon_sym_PLUS] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2127), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_PERCENT] = ACTIONS(2129), - [anon_sym_STAR_STAR] = ACTIONS(2129), - [anon_sym_LT] = ACTIONS(2127), - [anon_sym_LT_EQ] = ACTIONS(2129), - [anon_sym_EQ_EQ] = ACTIONS(2129), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2129), - [anon_sym_BANG_EQ] = ACTIONS(2129), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2129), - [anon_sym_GT_EQ] = ACTIONS(2129), - [anon_sym_QMARK_QMARK] = ACTIONS(2129), - [anon_sym_instanceof] = ACTIONS(2129), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_void] = ACTIONS(2127), - [anon_sym_delete] = ACTIONS(2127), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2127), - [sym_number] = ACTIONS(2127), - [sym_private_property_identifier] = ACTIONS(2127), - [sym_this] = ACTIONS(2127), - [sym_super] = ACTIONS(2127), - [sym_true] = ACTIONS(2127), - [sym_false] = ACTIONS(2127), - [sym_null] = ACTIONS(2127), - [sym_undefined] = ACTIONS(2127), - [anon_sym_AT] = ACTIONS(2127), - [anon_sym_static] = ACTIONS(2127), - [anon_sym_readonly] = ACTIONS(2127), - [anon_sym_get] = ACTIONS(2127), - [anon_sym_set] = ACTIONS(2127), - [anon_sym_declare] = ACTIONS(2127), - [anon_sym_public] = ACTIONS(2127), - [anon_sym_private] = ACTIONS(2127), - [anon_sym_protected] = ACTIONS(2127), - [anon_sym_override] = ACTIONS(2127), - [anon_sym_module] = ACTIONS(2127), - [anon_sym_any] = ACTIONS(2127), - [anon_sym_number] = ACTIONS(2127), - [anon_sym_boolean] = ACTIONS(2127), - [anon_sym_string] = ACTIONS(2127), - [anon_sym_symbol] = ACTIONS(2127), - [anon_sym_object] = ACTIONS(2127), - [anon_sym_abstract] = ACTIONS(2127), - [anon_sym_satisfies] = ACTIONS(2129), - [anon_sym_interface] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(2127), - [sym__automatic_semicolon] = ACTIONS(2415), - [sym__ternary_qmark] = ACTIONS(2133), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, - [437] = { - [sym_comment] = STATE(437), - [ts_builtin_sym_end] = ACTIONS(2387), + [422] = { + [sym_comment] = STATE(422), [sym_identifier] = ACTIONS(2167), [anon_sym_export] = ACTIONS(2167), [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_default] = ACTIONS(2167), [anon_sym_type] = ACTIONS(2167), [anon_sym_as] = ACTIONS(2169), [anon_sym_namespace] = ACTIONS(2167), @@ -89162,6 +87218,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2167), [anon_sym_throw] = ACTIONS(2167), [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_case] = ACTIONS(2167), [anon_sym_yield] = ACTIONS(2167), [anon_sym_LBRACK] = ACTIONS(2167), [anon_sym_LTtemplate_GT] = ACTIONS(2167), @@ -89233,884 +87290,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2169), [anon_sym_interface] = ACTIONS(2167), [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2171), - [sym__ternary_qmark] = ACTIONS(2171), - [sym_html_comment] = ACTIONS(5), - }, - [438] = { - [sym_comment] = STATE(438), - [ts_builtin_sym_end] = ACTIONS(2341), - [sym_identifier] = ACTIONS(2085), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_STAR] = ACTIONS(2087), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_as] = ACTIONS(2087), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_COMMA] = ACTIONS(2087), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_typeof] = ACTIONS(2085), - [anon_sym_import] = ACTIONS(2085), - [anon_sym_with] = ACTIONS(2085), - [anon_sym_var] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_in] = ACTIONS(2087), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_debugger] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LTtemplate_GT] = ACTIONS(2085), - [anon_sym_GT] = ACTIONS(2087), - [anon_sym_DOT] = ACTIONS(2087), - [anon_sym_DQUOTE] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_QMARK_DOT] = ACTIONS(2087), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [anon_sym_AMP_AMP] = ACTIONS(2087), - [anon_sym_PIPE_PIPE] = ACTIONS(2087), - [anon_sym_GT_GT] = ACTIONS(2087), - [anon_sym_GT_GT_GT] = ACTIONS(2087), - [anon_sym_LT_LT] = ACTIONS(2087), - [anon_sym_AMP] = ACTIONS(2087), - [anon_sym_CARET] = ACTIONS(2087), - [anon_sym_PIPE] = ACTIONS(2087), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(2085), - [anon_sym_PERCENT] = ACTIONS(2087), - [anon_sym_STAR_STAR] = ACTIONS(2087), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_LT_EQ] = ACTIONS(2087), - [anon_sym_EQ_EQ] = ACTIONS(2087), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2087), - [anon_sym_BANG_EQ] = ACTIONS(2087), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2087), - [anon_sym_GT_EQ] = ACTIONS(2087), - [anon_sym_QMARK_QMARK] = ACTIONS(2087), - [anon_sym_instanceof] = ACTIONS(2087), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_void] = ACTIONS(2085), - [anon_sym_delete] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2085), - [sym_number] = ACTIONS(2085), - [sym_private_property_identifier] = ACTIONS(2085), - [sym_this] = ACTIONS(2085), - [sym_super] = ACTIONS(2085), - [sym_true] = ACTIONS(2085), - [sym_false] = ACTIONS(2085), - [sym_null] = ACTIONS(2085), - [sym_undefined] = ACTIONS(2085), - [anon_sym_AT] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_readonly] = ACTIONS(2085), - [anon_sym_get] = ACTIONS(2085), - [anon_sym_set] = ACTIONS(2085), - [anon_sym_declare] = ACTIONS(2085), - [anon_sym_public] = ACTIONS(2085), - [anon_sym_private] = ACTIONS(2085), - [anon_sym_protected] = ACTIONS(2085), - [anon_sym_override] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_any] = ACTIONS(2085), - [anon_sym_number] = ACTIONS(2085), - [anon_sym_boolean] = ACTIONS(2085), - [anon_sym_string] = ACTIONS(2085), - [anon_sym_symbol] = ACTIONS(2085), - [anon_sym_object] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_satisfies] = ACTIONS(2087), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [sym__automatic_semicolon] = ACTIONS(2417), - [sym__ternary_qmark] = ACTIONS(2091), - [sym_html_comment] = ACTIONS(5), - }, - [439] = { - [sym_comment] = STATE(439), - [sym_identifier] = ACTIONS(2419), - [anon_sym_export] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2419), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(2419), - [anon_sym_import] = ACTIONS(2419), - [anon_sym_let] = ACTIONS(2419), - [anon_sym_BANG] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_await] = ACTIONS(2419), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(2419), - [anon_sym_LTtemplate_GT] = ACTIONS(2419), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_class] = ACTIONS(2419), - [anon_sym_async] = ACTIONS(2419), - [anon_sym_function] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2419), - [anon_sym_using] = ACTIONS(2419), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2419), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_SLASH] = ACTIONS(2419), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2419), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_void] = ACTIONS(2419), - [anon_sym_delete] = ACTIONS(2419), - [anon_sym_PLUS_PLUS] = ACTIONS(2419), - [anon_sym_DASH_DASH] = ACTIONS(2419), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2419), - [sym_number] = ACTIONS(2419), - [sym_private_property_identifier] = ACTIONS(2419), - [sym_this] = ACTIONS(2419), - [sym_super] = ACTIONS(2419), - [sym_true] = ACTIONS(2419), - [sym_false] = ACTIONS(2419), - [sym_null] = ACTIONS(2419), - [sym_undefined] = ACTIONS(2419), - [anon_sym_AT] = ACTIONS(2419), - [anon_sym_static] = ACTIONS(2419), - [anon_sym_readonly] = ACTIONS(2419), - [anon_sym_get] = ACTIONS(2419), - [anon_sym_set] = ACTIONS(2419), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(2419), - [anon_sym_public] = ACTIONS(2419), - [anon_sym_private] = ACTIONS(2419), - [anon_sym_protected] = ACTIONS(2419), - [anon_sym_override] = ACTIONS(2419), - [anon_sym_module] = ACTIONS(2419), - [anon_sym_any] = ACTIONS(2419), - [anon_sym_number] = ACTIONS(2419), - [anon_sym_boolean] = ACTIONS(2419), - [anon_sym_string] = ACTIONS(2419), - [anon_sym_symbol] = ACTIONS(2419), - [anon_sym_object] = ACTIONS(2419), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [sym__automatic_semicolon] = ACTIONS(2395), + [sym__ternary_qmark] = ACTIONS(2173), [sym_html_comment] = ACTIONS(5), }, - [440] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(440), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5061), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), + [423] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2417), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6601), + [sym_string] = STATE(2940), + [sym_comment] = STATE(423), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2397), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(1089), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1081), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2421), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [441] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2111), - [sym_subscript_expression] = STATE(2111), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4560), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(441), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_pattern] = STATE(5408), - [sym_rest_pattern] = STATE(4693), - [sym_non_null_expression] = STATE(2111), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1061), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1948), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(149), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1071), - [anon_sym_using] = ACTIONS(157), - [anon_sym_DOT_DOT_DOT] = ACTIONS(161), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(2423), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1081), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2425), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [442] = { - [sym_comment] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(2205), - [sym_identifier] = ACTIONS(2203), - [anon_sym_export] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_namespace] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_COMMA] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_typeof] = ACTIONS(2203), - [anon_sym_import] = ACTIONS(2203), - [anon_sym_with] = ACTIONS(2203), - [anon_sym_var] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_switch] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2203), - [anon_sym_in] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [anon_sym_do] = ACTIONS(2203), - [anon_sym_try] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_debugger] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_throw] = ACTIONS(2203), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_yield] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_LTtemplate_GT] = ACTIONS(2203), - [anon_sym_GT] = ACTIONS(2203), - [anon_sym_DOT] = ACTIONS(2203), - [anon_sym_DQUOTE] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_class] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_function] = ACTIONS(2203), - [anon_sym_QMARK_DOT] = ACTIONS(2203), - [anon_sym_new] = ACTIONS(2203), - [anon_sym_using] = ACTIONS(2203), - [anon_sym_AMP_AMP] = ACTIONS(2203), - [anon_sym_PIPE_PIPE] = ACTIONS(2203), - [anon_sym_GT_GT] = ACTIONS(2203), - [anon_sym_GT_GT_GT] = ACTIONS(2203), - [anon_sym_LT_LT] = ACTIONS(2203), - [anon_sym_AMP] = ACTIONS(2203), - [anon_sym_CARET] = ACTIONS(2203), - [anon_sym_PIPE] = ACTIONS(2203), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_SLASH] = ACTIONS(2203), - [anon_sym_PERCENT] = ACTIONS(2203), - [anon_sym_STAR_STAR] = ACTIONS(2203), - [anon_sym_LT] = ACTIONS(2203), - [anon_sym_LT_EQ] = ACTIONS(2203), - [anon_sym_EQ_EQ] = ACTIONS(2203), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2203), - [anon_sym_BANG_EQ] = ACTIONS(2203), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2203), - [anon_sym_GT_EQ] = ACTIONS(2203), - [anon_sym_QMARK_QMARK] = ACTIONS(2203), - [anon_sym_instanceof] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(2203), - [anon_sym_delete] = ACTIONS(2203), - [anon_sym_PLUS_PLUS] = ACTIONS(2203), - [anon_sym_DASH_DASH] = ACTIONS(2203), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2203), - [sym_number] = ACTIONS(2203), - [sym_private_property_identifier] = ACTIONS(2203), - [sym_this] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_true] = ACTIONS(2203), - [sym_false] = ACTIONS(2203), - [sym_null] = ACTIONS(2203), - [sym_undefined] = ACTIONS(2203), - [anon_sym_AT] = ACTIONS(2203), - [anon_sym_static] = ACTIONS(2203), - [anon_sym_readonly] = ACTIONS(2203), - [anon_sym_get] = ACTIONS(2203), - [anon_sym_set] = ACTIONS(2203), - [anon_sym_declare] = ACTIONS(2203), - [anon_sym_public] = ACTIONS(2203), - [anon_sym_private] = ACTIONS(2203), - [anon_sym_protected] = ACTIONS(2203), - [anon_sym_override] = ACTIONS(2203), - [anon_sym_module] = ACTIONS(2203), - [anon_sym_any] = ACTIONS(2203), - [anon_sym_number] = ACTIONS(2203), - [anon_sym_boolean] = ACTIONS(2203), - [anon_sym_string] = ACTIONS(2203), - [anon_sym_symbol] = ACTIONS(2203), - [anon_sym_object] = ACTIONS(2203), - [anon_sym_abstract] = ACTIONS(2203), - [anon_sym_satisfies] = ACTIONS(2203), - [anon_sym_interface] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [sym__automatic_semicolon] = ACTIONS(2205), - [sym__ternary_qmark] = ACTIONS(2205), - [sym_html_comment] = ACTIONS(5), - }, - [443] = { - [sym_comment] = STATE(443), - [ts_builtin_sym_end] = ACTIONS(2267), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_STAR] = ACTIONS(2215), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_as] = ACTIONS(2215), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_COMMA] = ACTIONS(2215), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_typeof] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_in] = ACTIONS(2215), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_debugger] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LTtemplate_GT] = ACTIONS(2213), - [anon_sym_GT] = ACTIONS(2215), - [anon_sym_DOT] = ACTIONS(2215), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_QMARK_DOT] = ACTIONS(2215), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [anon_sym_AMP_AMP] = ACTIONS(2215), - [anon_sym_PIPE_PIPE] = ACTIONS(2215), - [anon_sym_GT_GT] = ACTIONS(2215), - [anon_sym_GT_GT_GT] = ACTIONS(2215), - [anon_sym_LT_LT] = ACTIONS(2215), - [anon_sym_AMP] = ACTIONS(2215), - [anon_sym_CARET] = ACTIONS(2215), - [anon_sym_PIPE] = ACTIONS(2215), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_PERCENT] = ACTIONS(2215), - [anon_sym_STAR_STAR] = ACTIONS(2215), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_LT_EQ] = ACTIONS(2215), - [anon_sym_EQ_EQ] = ACTIONS(2215), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ] = ACTIONS(2215), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2215), - [anon_sym_GT_EQ] = ACTIONS(2215), - [anon_sym_QMARK_QMARK] = ACTIONS(2215), - [anon_sym_instanceof] = ACTIONS(2215), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_delete] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_number] = ACTIONS(2213), - [sym_private_property_identifier] = ACTIONS(2213), - [sym_this] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_null] = ACTIONS(2213), - [sym_undefined] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_readonly] = ACTIONS(2213), - [anon_sym_get] = ACTIONS(2213), - [anon_sym_set] = ACTIONS(2213), - [anon_sym_declare] = ACTIONS(2213), - [anon_sym_public] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_any] = ACTIONS(2213), - [anon_sym_number] = ACTIONS(2213), - [anon_sym_boolean] = ACTIONS(2213), - [anon_sym_string] = ACTIONS(2213), - [anon_sym_symbol] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_satisfies] = ACTIONS(2215), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2427), - [sym__ternary_qmark] = ACTIONS(2219), - [sym_html_comment] = ACTIONS(5), - }, - [444] = { - [sym_comment] = STATE(444), - [ts_builtin_sym_end] = ACTIONS(2315), - [sym_identifier] = ACTIONS(2159), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_STAR] = ACTIONS(2161), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_as] = ACTIONS(2161), - [anon_sym_namespace] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_COMMA] = ACTIONS(2161), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_typeof] = ACTIONS(2159), - [anon_sym_import] = ACTIONS(2159), - [anon_sym_with] = ACTIONS(2159), - [anon_sym_var] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_switch] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2159), - [anon_sym_in] = ACTIONS(2161), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_debugger] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_throw] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_yield] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LTtemplate_GT] = ACTIONS(2159), - [anon_sym_GT] = ACTIONS(2161), - [anon_sym_DOT] = ACTIONS(2161), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_class] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_function] = ACTIONS(2159), - [anon_sym_QMARK_DOT] = ACTIONS(2161), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_using] = ACTIONS(2159), - [anon_sym_AMP_AMP] = ACTIONS(2161), - [anon_sym_PIPE_PIPE] = ACTIONS(2161), - [anon_sym_GT_GT] = ACTIONS(2161), - [anon_sym_GT_GT_GT] = ACTIONS(2161), - [anon_sym_LT_LT] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2161), - [anon_sym_CARET] = ACTIONS(2161), - [anon_sym_PIPE] = ACTIONS(2161), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_PERCENT] = ACTIONS(2161), - [anon_sym_STAR_STAR] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_LT_EQ] = ACTIONS(2161), - [anon_sym_EQ_EQ] = ACTIONS(2161), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2161), - [anon_sym_BANG_EQ] = ACTIONS(2161), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2161), - [anon_sym_GT_EQ] = ACTIONS(2161), - [anon_sym_QMARK_QMARK] = ACTIONS(2161), - [anon_sym_instanceof] = ACTIONS(2161), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_void] = ACTIONS(2159), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2159), - [sym_number] = ACTIONS(2159), - [sym_private_property_identifier] = ACTIONS(2159), - [sym_this] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_null] = ACTIONS(2159), - [sym_undefined] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [anon_sym_static] = ACTIONS(2159), - [anon_sym_readonly] = ACTIONS(2159), - [anon_sym_get] = ACTIONS(2159), - [anon_sym_set] = ACTIONS(2159), - [anon_sym_declare] = ACTIONS(2159), - [anon_sym_public] = ACTIONS(2159), - [anon_sym_private] = ACTIONS(2159), - [anon_sym_protected] = ACTIONS(2159), - [anon_sym_override] = ACTIONS(2159), - [anon_sym_module] = ACTIONS(2159), - [anon_sym_any] = ACTIONS(2159), - [anon_sym_number] = ACTIONS(2159), - [anon_sym_boolean] = ACTIONS(2159), - [anon_sym_string] = ACTIONS(2159), - [anon_sym_symbol] = ACTIONS(2159), - [anon_sym_object] = ACTIONS(2159), - [anon_sym_abstract] = ACTIONS(2159), - [anon_sym_satisfies] = ACTIONS(2161), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [sym__automatic_semicolon] = ACTIONS(2429), - [sym__ternary_qmark] = ACTIONS(2165), - [sym_html_comment] = ACTIONS(5), - }, - [445] = { - [sym_comment] = STATE(445), - [sym_identifier] = ACTIONS(2431), - [anon_sym_export] = ACTIONS(2431), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2431), - [anon_sym_EQ] = ACTIONS(213), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_typeof] = ACTIONS(2431), - [anon_sym_import] = ACTIONS(2431), - [anon_sym_let] = ACTIONS(2431), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_RPAREN] = ACTIONS(216), - [anon_sym_await] = ACTIONS(2431), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), - [anon_sym_yield] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_LTtemplate_GT] = ACTIONS(2431), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_class] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [anon_sym_function] = ACTIONS(2431), - [anon_sym_EQ_GT] = ACTIONS(219), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2431), - [anon_sym_using] = ACTIONS(2431), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2431), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2431), - [anon_sym_DASH] = ACTIONS(2431), - [anon_sym_SLASH] = ACTIONS(2431), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2431), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_void] = ACTIONS(2431), - [anon_sym_delete] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2431), - [sym_number] = ACTIONS(2431), - [sym_private_property_identifier] = ACTIONS(2431), - [sym_this] = ACTIONS(2431), - [sym_super] = ACTIONS(2431), - [sym_true] = ACTIONS(2431), - [sym_false] = ACTIONS(2431), - [sym_null] = ACTIONS(2431), - [sym_undefined] = ACTIONS(2431), - [anon_sym_AT] = ACTIONS(2431), - [anon_sym_static] = ACTIONS(2431), - [anon_sym_readonly] = ACTIONS(2431), - [anon_sym_get] = ACTIONS(2431), - [anon_sym_set] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(2431), - [anon_sym_public] = ACTIONS(2431), - [anon_sym_private] = ACTIONS(2431), - [anon_sym_protected] = ACTIONS(2431), - [anon_sym_override] = ACTIONS(2431), - [anon_sym_module] = ACTIONS(2431), - [anon_sym_any] = ACTIONS(2431), - [anon_sym_number] = ACTIONS(2431), - [anon_sym_boolean] = ACTIONS(2431), - [anon_sym_string] = ACTIONS(2431), - [anon_sym_symbol] = ACTIONS(2431), - [anon_sym_object] = ACTIONS(2431), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), + [sym__automatic_semicolon] = ACTIONS(2399), [sym_html_comment] = ACTIONS(5), }, - [446] = { - [sym_comment] = STATE(446), + [424] = { + [sym_comment] = STATE(424), [ts_builtin_sym_end] = ACTIONS(2253), [sym_identifier] = ACTIONS(2251), [anon_sym_export] = ACTIONS(2251), @@ -90218,40 +87512,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2253), [sym_html_comment] = ACTIONS(5), }, - [447] = { - [sym_comment] = STATE(447), - [sym_identifier] = ACTIONS(2431), - [anon_sym_export] = ACTIONS(2431), + [425] = { + [sym_comment] = STATE(425), + [ts_builtin_sym_end] = ACTIONS(2381), + [sym_identifier] = ACTIONS(2205), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2207), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2207), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_COMMA] = ACTIONS(2207), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_typeof] = ACTIONS(2205), + [anon_sym_import] = ACTIONS(2205), + [anon_sym_with] = ACTIONS(2205), + [anon_sym_var] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_in] = ACTIONS(2207), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_debugger] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_LTtemplate_GT] = ACTIONS(2205), + [anon_sym_GT] = ACTIONS(2207), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_DQUOTE] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_QMARK_DOT] = ACTIONS(2207), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_using] = ACTIONS(2205), + [anon_sym_AMP_AMP] = ACTIONS(2207), + [anon_sym_PIPE_PIPE] = ACTIONS(2207), + [anon_sym_GT_GT] = ACTIONS(2207), + [anon_sym_GT_GT_GT] = ACTIONS(2207), + [anon_sym_LT_LT] = ACTIONS(2207), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_CARET] = ACTIONS(2207), + [anon_sym_PIPE] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_PERCENT] = ACTIONS(2207), + [anon_sym_STAR_STAR] = ACTIONS(2207), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_LT_EQ] = ACTIONS(2207), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2207), + [anon_sym_GT_EQ] = ACTIONS(2207), + [anon_sym_QMARK_QMARK] = ACTIONS(2207), + [anon_sym_instanceof] = ACTIONS(2207), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_void] = ACTIONS(2205), + [anon_sym_delete] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(2205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2205), + [sym_number] = ACTIONS(2205), + [sym_private_property_identifier] = ACTIONS(2205), + [sym_this] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_null] = ACTIONS(2205), + [sym_undefined] = ACTIONS(2205), + [anon_sym_AT] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_readonly] = ACTIONS(2205), + [anon_sym_get] = ACTIONS(2205), + [anon_sym_set] = ACTIONS(2205), + [anon_sym_declare] = ACTIONS(2205), + [anon_sym_public] = ACTIONS(2205), + [anon_sym_private] = ACTIONS(2205), + [anon_sym_protected] = ACTIONS(2205), + [anon_sym_override] = ACTIONS(2205), + [anon_sym_module] = ACTIONS(2205), + [anon_sym_any] = ACTIONS(2205), + [anon_sym_number] = ACTIONS(2205), + [anon_sym_boolean] = ACTIONS(2205), + [anon_sym_string] = ACTIONS(2205), + [anon_sym_symbol] = ACTIONS(2205), + [anon_sym_object] = ACTIONS(2205), + [anon_sym_abstract] = ACTIONS(2205), + [anon_sym_satisfies] = ACTIONS(2207), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [sym__automatic_semicolon] = ACTIONS(2401), + [sym__ternary_qmark] = ACTIONS(2211), + [sym_html_comment] = ACTIONS(5), + }, + [426] = { + [sym_comment] = STATE(426), + [sym_identifier] = ACTIONS(2403), + [anon_sym_export] = ACTIONS(2403), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2431), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_type] = ACTIONS(2403), + [anon_sym_EQ] = ACTIONS(213), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2431), - [anon_sym_LBRACE] = ACTIONS(2431), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2431), - [anon_sym_import] = ACTIONS(2431), - [anon_sym_let] = ACTIONS(2431), - [anon_sym_BANG] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(2431), + [anon_sym_namespace] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_typeof] = ACTIONS(2403), + [anon_sym_import] = ACTIONS(2403), + [anon_sym_let] = ACTIONS(2403), + [anon_sym_BANG] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(216), + [anon_sym_await] = ACTIONS(2403), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(2431), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_LTtemplate_GT] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(216), + [anon_sym_yield] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_LTtemplate_GT] = ACTIONS(2403), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_class] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [anon_sym_function] = ACTIONS(2431), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(2403), + [anon_sym_SQUOTE] = ACTIONS(2403), + [anon_sym_class] = ACTIONS(2403), + [anon_sym_async] = ACTIONS(2403), + [anon_sym_function] = ACTIONS(2403), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2431), - [anon_sym_using] = ACTIONS(2431), + [anon_sym_new] = ACTIONS(2403), + [anon_sym_using] = ACTIONS(2403), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -90267,7 +87670,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(159), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2431), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2403), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -90276,12 +87679,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2431), - [anon_sym_DASH] = ACTIONS(2431), - [anon_sym_SLASH] = ACTIONS(2431), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_SLASH] = ACTIONS(2403), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2431), + [anon_sym_LT] = ACTIONS(2403), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -90290,155 +87693,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(2431), - [anon_sym_void] = ACTIONS(2431), - [anon_sym_delete] = ACTIONS(2431), - [anon_sym_PLUS_PLUS] = ACTIONS(2431), - [anon_sym_DASH_DASH] = ACTIONS(2431), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2431), - [sym_number] = ACTIONS(2431), - [sym_private_property_identifier] = ACTIONS(2431), - [sym_this] = ACTIONS(2431), - [sym_super] = ACTIONS(2431), - [sym_true] = ACTIONS(2431), - [sym_false] = ACTIONS(2431), - [sym_null] = ACTIONS(2431), - [sym_undefined] = ACTIONS(2431), - [anon_sym_AT] = ACTIONS(2431), - [anon_sym_static] = ACTIONS(2431), - [anon_sym_readonly] = ACTIONS(2431), - [anon_sym_get] = ACTIONS(2431), - [anon_sym_set] = ACTIONS(2431), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_void] = ACTIONS(2403), + [anon_sym_delete] = ACTIONS(2403), + [anon_sym_PLUS_PLUS] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(2403), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2403), + [sym_number] = ACTIONS(2403), + [sym_private_property_identifier] = ACTIONS(2403), + [sym_this] = ACTIONS(2403), + [sym_super] = ACTIONS(2403), + [sym_true] = ACTIONS(2403), + [sym_false] = ACTIONS(2403), + [sym_null] = ACTIONS(2403), + [sym_undefined] = ACTIONS(2403), + [anon_sym_AT] = ACTIONS(2403), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_readonly] = ACTIONS(2403), + [anon_sym_get] = ACTIONS(2403), + [anon_sym_set] = ACTIONS(2403), [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(2431), - [anon_sym_public] = ACTIONS(2431), - [anon_sym_private] = ACTIONS(2431), - [anon_sym_protected] = ACTIONS(2431), - [anon_sym_override] = ACTIONS(2431), - [anon_sym_module] = ACTIONS(2431), - [anon_sym_any] = ACTIONS(2431), - [anon_sym_number] = ACTIONS(2431), - [anon_sym_boolean] = ACTIONS(2431), - [anon_sym_string] = ACTIONS(2431), - [anon_sym_symbol] = ACTIONS(2431), - [anon_sym_object] = ACTIONS(2431), + [anon_sym_declare] = ACTIONS(2403), + [anon_sym_public] = ACTIONS(2403), + [anon_sym_private] = ACTIONS(2403), + [anon_sym_protected] = ACTIONS(2403), + [anon_sym_override] = ACTIONS(2403), + [anon_sym_module] = ACTIONS(2403), + [anon_sym_any] = ACTIONS(2403), + [anon_sym_number] = ACTIONS(2403), + [anon_sym_boolean] = ACTIONS(2403), + [anon_sym_string] = ACTIONS(2403), + [anon_sym_symbol] = ACTIONS(2403), + [anon_sym_object] = ACTIONS(2403), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [448] = { - [sym_comment] = STATE(448), - [ts_builtin_sym_end] = ACTIONS(2347), - [sym_identifier] = ACTIONS(2257), - [anon_sym_export] = ACTIONS(2257), - [anon_sym_STAR] = ACTIONS(2259), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_as] = ACTIONS(2259), - [anon_sym_namespace] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [anon_sym_COMMA] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_typeof] = ACTIONS(2257), - [anon_sym_import] = ACTIONS(2257), - [anon_sym_with] = ACTIONS(2257), - [anon_sym_var] = ACTIONS(2257), - [anon_sym_let] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_switch] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_in] = ACTIONS(2259), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_debugger] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_throw] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2257), - [anon_sym_yield] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_LTtemplate_GT] = ACTIONS(2257), - [anon_sym_GT] = ACTIONS(2259), - [anon_sym_DOT] = ACTIONS(2259), - [anon_sym_DQUOTE] = ACTIONS(2257), - [anon_sym_SQUOTE] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_async] = ACTIONS(2257), - [anon_sym_function] = ACTIONS(2257), - [anon_sym_QMARK_DOT] = ACTIONS(2259), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_using] = ACTIONS(2257), - [anon_sym_AMP_AMP] = ACTIONS(2259), - [anon_sym_PIPE_PIPE] = ACTIONS(2259), - [anon_sym_GT_GT] = ACTIONS(2259), - [anon_sym_GT_GT_GT] = ACTIONS(2259), - [anon_sym_LT_LT] = ACTIONS(2259), - [anon_sym_AMP] = ACTIONS(2259), - [anon_sym_CARET] = ACTIONS(2259), - [anon_sym_PIPE] = ACTIONS(2259), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_SLASH] = ACTIONS(2257), - [anon_sym_PERCENT] = ACTIONS(2259), - [anon_sym_STAR_STAR] = ACTIONS(2259), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_LT_EQ] = ACTIONS(2259), - [anon_sym_EQ_EQ] = ACTIONS(2259), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2259), - [anon_sym_BANG_EQ] = ACTIONS(2259), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2259), - [anon_sym_GT_EQ] = ACTIONS(2259), - [anon_sym_QMARK_QMARK] = ACTIONS(2259), - [anon_sym_instanceof] = ACTIONS(2259), - [anon_sym_TILDE] = ACTIONS(2257), - [anon_sym_void] = ACTIONS(2257), - [anon_sym_delete] = ACTIONS(2257), - [anon_sym_PLUS_PLUS] = ACTIONS(2257), - [anon_sym_DASH_DASH] = ACTIONS(2257), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2257), - [sym_number] = ACTIONS(2257), - [sym_private_property_identifier] = ACTIONS(2257), - [sym_this] = ACTIONS(2257), - [sym_super] = ACTIONS(2257), - [sym_true] = ACTIONS(2257), - [sym_false] = ACTIONS(2257), - [sym_null] = ACTIONS(2257), - [sym_undefined] = ACTIONS(2257), - [anon_sym_AT] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_readonly] = ACTIONS(2257), - [anon_sym_get] = ACTIONS(2257), - [anon_sym_set] = ACTIONS(2257), - [anon_sym_declare] = ACTIONS(2257), - [anon_sym_public] = ACTIONS(2257), - [anon_sym_private] = ACTIONS(2257), - [anon_sym_protected] = ACTIONS(2257), - [anon_sym_override] = ACTIONS(2257), - [anon_sym_module] = ACTIONS(2257), - [anon_sym_any] = ACTIONS(2257), - [anon_sym_number] = ACTIONS(2257), - [anon_sym_boolean] = ACTIONS(2257), - [anon_sym_string] = ACTIONS(2257), - [anon_sym_symbol] = ACTIONS(2257), - [anon_sym_object] = ACTIONS(2257), - [anon_sym_abstract] = ACTIONS(2257), - [anon_sym_satisfies] = ACTIONS(2259), - [anon_sym_interface] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [sym__automatic_semicolon] = ACTIONS(2433), - [sym__ternary_qmark] = ACTIONS(2263), + [427] = { + [sym_comment] = STATE(427), + [sym_identifier] = ACTIONS(2405), + [anon_sym_export] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2405), + [anon_sym_EQ] = ACTIONS(213), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2405), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_typeof] = ACTIONS(2405), + [anon_sym_import] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_RPAREN] = ACTIONS(216), + [anon_sym_await] = ACTIONS(2405), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(216), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_LTtemplate_GT] = ACTIONS(2405), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(2405), + [anon_sym_function] = ACTIONS(2405), + [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2405), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_SLASH] = ACTIONS(2405), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2405), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(2405), + [anon_sym_void] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_PLUS_PLUS] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2405), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2405), + [sym_number] = ACTIONS(2405), + [sym_private_property_identifier] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_super] = ACTIONS(2405), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_undefined] = ACTIONS(2405), + [anon_sym_AT] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_readonly] = ACTIONS(2405), + [anon_sym_get] = ACTIONS(2405), + [anon_sym_set] = ACTIONS(2405), + [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_declare] = ACTIONS(2405), + [anon_sym_public] = ACTIONS(2405), + [anon_sym_private] = ACTIONS(2405), + [anon_sym_protected] = ACTIONS(2405), + [anon_sym_override] = ACTIONS(2405), + [anon_sym_module] = ACTIONS(2405), + [anon_sym_any] = ACTIONS(2405), + [anon_sym_number] = ACTIONS(2405), + [anon_sym_boolean] = ACTIONS(2405), + [anon_sym_string] = ACTIONS(2405), + [anon_sym_symbol] = ACTIONS(2405), + [anon_sym_object] = ACTIONS(2405), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [449] = { - [sym_comment] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(2279), + [428] = { + [sym_comment] = STATE(428), + [ts_builtin_sym_end] = ACTIONS(2329), + [sym_identifier] = ACTIONS(2241), + [anon_sym_export] = ACTIONS(2241), + [anon_sym_STAR] = ACTIONS(2243), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_as] = ACTIONS(2243), + [anon_sym_namespace] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2241), + [anon_sym_COMMA] = ACTIONS(2243), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_typeof] = ACTIONS(2241), + [anon_sym_import] = ACTIONS(2241), + [anon_sym_with] = ACTIONS(2241), + [anon_sym_var] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_switch] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_await] = ACTIONS(2241), + [anon_sym_in] = ACTIONS(2243), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_do] = ACTIONS(2241), + [anon_sym_try] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_debugger] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_throw] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(2241), + [anon_sym_yield] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_LTtemplate_GT] = ACTIONS(2241), + [anon_sym_GT] = ACTIONS(2243), + [anon_sym_DOT] = ACTIONS(2243), + [anon_sym_DQUOTE] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_class] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_function] = ACTIONS(2241), + [anon_sym_QMARK_DOT] = ACTIONS(2243), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_using] = ACTIONS(2241), + [anon_sym_AMP_AMP] = ACTIONS(2243), + [anon_sym_PIPE_PIPE] = ACTIONS(2243), + [anon_sym_GT_GT] = ACTIONS(2243), + [anon_sym_GT_GT_GT] = ACTIONS(2243), + [anon_sym_LT_LT] = ACTIONS(2243), + [anon_sym_AMP] = ACTIONS(2243), + [anon_sym_CARET] = ACTIONS(2243), + [anon_sym_PIPE] = ACTIONS(2243), + [anon_sym_PLUS] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_SLASH] = ACTIONS(2241), + [anon_sym_PERCENT] = ACTIONS(2243), + [anon_sym_STAR_STAR] = ACTIONS(2243), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_LT_EQ] = ACTIONS(2243), + [anon_sym_EQ_EQ] = ACTIONS(2243), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2243), + [anon_sym_BANG_EQ] = ACTIONS(2243), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2243), + [anon_sym_GT_EQ] = ACTIONS(2243), + [anon_sym_QMARK_QMARK] = ACTIONS(2243), + [anon_sym_instanceof] = ACTIONS(2243), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_void] = ACTIONS(2241), + [anon_sym_delete] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2241), + [sym_number] = ACTIONS(2241), + [sym_private_property_identifier] = ACTIONS(2241), + [sym_this] = ACTIONS(2241), + [sym_super] = ACTIONS(2241), + [sym_true] = ACTIONS(2241), + [sym_false] = ACTIONS(2241), + [sym_null] = ACTIONS(2241), + [sym_undefined] = ACTIONS(2241), + [anon_sym_AT] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_readonly] = ACTIONS(2241), + [anon_sym_get] = ACTIONS(2241), + [anon_sym_set] = ACTIONS(2241), + [anon_sym_declare] = ACTIONS(2241), + [anon_sym_public] = ACTIONS(2241), + [anon_sym_private] = ACTIONS(2241), + [anon_sym_protected] = ACTIONS(2241), + [anon_sym_override] = ACTIONS(2241), + [anon_sym_module] = ACTIONS(2241), + [anon_sym_any] = ACTIONS(2241), + [anon_sym_number] = ACTIONS(2241), + [anon_sym_boolean] = ACTIONS(2241), + [anon_sym_string] = ACTIONS(2241), + [anon_sym_symbol] = ACTIONS(2241), + [anon_sym_object] = ACTIONS(2241), + [anon_sym_abstract] = ACTIONS(2241), + [anon_sym_satisfies] = ACTIONS(2243), + [anon_sym_interface] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [sym__automatic_semicolon] = ACTIONS(2407), + [sym__ternary_qmark] = ACTIONS(2247), + [sym_html_comment] = ACTIONS(5), + }, + [429] = { + [sym_comment] = STATE(429), + [ts_builtin_sym_end] = ACTIONS(2351), [sym_identifier] = ACTIONS(2149), [anon_sym_export] = ACTIONS(2149), [anon_sym_STAR] = ACTIONS(2151), @@ -90541,188 +88053,297 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2151), [anon_sym_interface] = ACTIONS(2149), [anon_sym_enum] = ACTIONS(2149), - [sym__automatic_semicolon] = ACTIONS(2435), - [sym__ternary_qmark] = ACTIONS(2155), + [sym__automatic_semicolon] = ACTIONS(2153), + [sym__ternary_qmark] = ACTIONS(2153), [sym_html_comment] = ACTIONS(5), }, - [450] = { - [sym_comment] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(2311), - [sym_identifier] = ACTIONS(2181), - [anon_sym_export] = ACTIONS(2181), - [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_COMMA] = ACTIONS(2183), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_typeof] = ACTIONS(2181), - [anon_sym_import] = ACTIONS(2181), - [anon_sym_with] = ACTIONS(2181), - [anon_sym_var] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_switch] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_in] = ACTIONS(2183), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_do] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_debugger] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_throw] = ACTIONS(2181), - [anon_sym_SEMI] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_LTtemplate_GT] = ACTIONS(2181), - [anon_sym_GT] = ACTIONS(2183), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_DQUOTE] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_class] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_function] = ACTIONS(2181), - [anon_sym_QMARK_DOT] = ACTIONS(2183), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_using] = ACTIONS(2181), - [anon_sym_AMP_AMP] = ACTIONS(2183), - [anon_sym_PIPE_PIPE] = ACTIONS(2183), - [anon_sym_GT_GT] = ACTIONS(2183), - [anon_sym_GT_GT_GT] = ACTIONS(2183), - [anon_sym_LT_LT] = ACTIONS(2183), - [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2183), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_SLASH] = ACTIONS(2181), - [anon_sym_PERCENT] = ACTIONS(2183), - [anon_sym_STAR_STAR] = ACTIONS(2183), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_LT_EQ] = ACTIONS(2183), - [anon_sym_EQ_EQ] = ACTIONS(2183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2183), - [anon_sym_GT_EQ] = ACTIONS(2183), - [anon_sym_QMARK_QMARK] = ACTIONS(2183), - [anon_sym_instanceof] = ACTIONS(2183), - [anon_sym_TILDE] = ACTIONS(2181), - [anon_sym_void] = ACTIONS(2181), - [anon_sym_delete] = ACTIONS(2181), - [anon_sym_PLUS_PLUS] = ACTIONS(2181), - [anon_sym_DASH_DASH] = ACTIONS(2181), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2181), - [sym_number] = ACTIONS(2181), - [sym_private_property_identifier] = ACTIONS(2181), - [sym_this] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_true] = ACTIONS(2181), - [sym_false] = ACTIONS(2181), - [sym_null] = ACTIONS(2181), - [sym_undefined] = ACTIONS(2181), - [anon_sym_AT] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_readonly] = ACTIONS(2181), - [anon_sym_get] = ACTIONS(2181), - [anon_sym_set] = ACTIONS(2181), - [anon_sym_declare] = ACTIONS(2181), - [anon_sym_public] = ACTIONS(2181), - [anon_sym_private] = ACTIONS(2181), - [anon_sym_protected] = ACTIONS(2181), - [anon_sym_override] = ACTIONS(2181), - [anon_sym_module] = ACTIONS(2181), - [anon_sym_any] = ACTIONS(2181), - [anon_sym_number] = ACTIONS(2181), - [anon_sym_boolean] = ACTIONS(2181), - [anon_sym_string] = ACTIONS(2181), - [anon_sym_symbol] = ACTIONS(2181), - [anon_sym_object] = ACTIONS(2181), - [anon_sym_abstract] = ACTIONS(2181), - [anon_sym_satisfies] = ACTIONS(2183), - [anon_sym_interface] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [sym__automatic_semicolon] = ACTIONS(2437), - [sym__ternary_qmark] = ACTIONS(2187), + [430] = { + [sym_comment] = STATE(430), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_as] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_COMMA] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_in] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_GT] = ACTIONS(2111), + [anon_sym_DOT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_QMARK_DOT] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_AMP_AMP] = ACTIONS(2111), + [anon_sym_PIPE_PIPE] = ACTIONS(2111), + [anon_sym_GT_GT] = ACTIONS(2111), + [anon_sym_GT_GT_GT] = ACTIONS(2111), + [anon_sym_LT_LT] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2111), + [anon_sym_CARET] = ACTIONS(2111), + [anon_sym_PIPE] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_PERCENT] = ACTIONS(2111), + [anon_sym_STAR_STAR] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_LT_EQ] = ACTIONS(2111), + [anon_sym_EQ_EQ] = ACTIONS(2111), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2111), + [anon_sym_BANG_EQ] = ACTIONS(2111), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2111), + [anon_sym_GT_EQ] = ACTIONS(2111), + [anon_sym_QMARK_QMARK] = ACTIONS(2111), + [anon_sym_instanceof] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_satisfies] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(2115), + [sym__ternary_qmark] = ACTIONS(2115), [sym_html_comment] = ACTIONS(5), }, - [451] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2583), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(7160), - [sym_string] = STATE(3113), - [sym_comment] = STATE(451), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [431] = { + [sym_comment] = STATE(431), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_STAR] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_as] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_COMMA] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_in] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_GT] = ACTIONS(2111), + [anon_sym_DOT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_QMARK_DOT] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_AMP_AMP] = ACTIONS(2111), + [anon_sym_PIPE_PIPE] = ACTIONS(2111), + [anon_sym_GT_GT] = ACTIONS(2111), + [anon_sym_GT_GT_GT] = ACTIONS(2111), + [anon_sym_LT_LT] = ACTIONS(2111), + [anon_sym_AMP] = ACTIONS(2111), + [anon_sym_CARET] = ACTIONS(2111), + [anon_sym_PIPE] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_PERCENT] = ACTIONS(2111), + [anon_sym_STAR_STAR] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_LT_EQ] = ACTIONS(2111), + [anon_sym_EQ_EQ] = ACTIONS(2111), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2111), + [anon_sym_BANG_EQ] = ACTIONS(2111), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2111), + [anon_sym_GT_EQ] = ACTIONS(2111), + [anon_sym_QMARK_QMARK] = ACTIONS(2111), + [anon_sym_instanceof] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_satisfies] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(2409), + [sym__ternary_qmark] = ACTIONS(2115), + [sym_html_comment] = ACTIONS(5), + }, + [432] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2402), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6645), + [sym_string] = STATE(2940), + [sym_comment] = STATE(432), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2439), + [anon_sym_SEMI] = ACTIONS(2411), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -90744,136 +88365,1008 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), - [sym__automatic_semicolon] = ACTIONS(2441), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), + [sym__automatic_semicolon] = ACTIONS(2413), [sym_html_comment] = ACTIONS(5), }, - [452] = { - [sym_comment] = STATE(452), - [ts_builtin_sym_end] = ACTIONS(2275), - [sym_identifier] = ACTIONS(2135), - [anon_sym_export] = ACTIONS(2135), - [anon_sym_STAR] = ACTIONS(2137), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_as] = ACTIONS(2137), - [anon_sym_namespace] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_COMMA] = ACTIONS(2137), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_typeof] = ACTIONS(2135), - [anon_sym_import] = ACTIONS(2135), - [anon_sym_with] = ACTIONS(2135), - [anon_sym_var] = ACTIONS(2135), - [anon_sym_let] = ACTIONS(2135), - [anon_sym_const] = ACTIONS(2135), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_switch] = ACTIONS(2135), - [anon_sym_for] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2135), - [anon_sym_in] = ACTIONS(2137), - [anon_sym_while] = ACTIONS(2135), - [anon_sym_do] = ACTIONS(2135), - [anon_sym_try] = ACTIONS(2135), - [anon_sym_break] = ACTIONS(2135), - [anon_sym_continue] = ACTIONS(2135), - [anon_sym_debugger] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2135), - [anon_sym_throw] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_yield] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_LTtemplate_GT] = ACTIONS(2135), - [anon_sym_GT] = ACTIONS(2137), - [anon_sym_DOT] = ACTIONS(2137), - [anon_sym_DQUOTE] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_class] = ACTIONS(2135), - [anon_sym_async] = ACTIONS(2135), - [anon_sym_function] = ACTIONS(2135), - [anon_sym_QMARK_DOT] = ACTIONS(2137), - [anon_sym_new] = ACTIONS(2135), - [anon_sym_using] = ACTIONS(2135), - [anon_sym_AMP_AMP] = ACTIONS(2137), - [anon_sym_PIPE_PIPE] = ACTIONS(2137), - [anon_sym_GT_GT] = ACTIONS(2137), - [anon_sym_GT_GT_GT] = ACTIONS(2137), - [anon_sym_LT_LT] = ACTIONS(2137), - [anon_sym_AMP] = ACTIONS(2137), - [anon_sym_CARET] = ACTIONS(2137), - [anon_sym_PIPE] = ACTIONS(2137), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_SLASH] = ACTIONS(2135), - [anon_sym_PERCENT] = ACTIONS(2137), - [anon_sym_STAR_STAR] = ACTIONS(2137), - [anon_sym_LT] = ACTIONS(2135), - [anon_sym_LT_EQ] = ACTIONS(2137), - [anon_sym_EQ_EQ] = ACTIONS(2137), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2137), - [anon_sym_BANG_EQ] = ACTIONS(2137), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2137), - [anon_sym_GT_EQ] = ACTIONS(2137), - [anon_sym_QMARK_QMARK] = ACTIONS(2137), - [anon_sym_instanceof] = ACTIONS(2137), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_void] = ACTIONS(2135), - [anon_sym_delete] = ACTIONS(2135), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2135), - [sym_number] = ACTIONS(2135), - [sym_private_property_identifier] = ACTIONS(2135), - [sym_this] = ACTIONS(2135), - [sym_super] = ACTIONS(2135), - [sym_true] = ACTIONS(2135), - [sym_false] = ACTIONS(2135), - [sym_null] = ACTIONS(2135), - [sym_undefined] = ACTIONS(2135), - [anon_sym_AT] = ACTIONS(2135), - [anon_sym_static] = ACTIONS(2135), - [anon_sym_readonly] = ACTIONS(2135), - [anon_sym_get] = ACTIONS(2135), - [anon_sym_set] = ACTIONS(2135), - [anon_sym_declare] = ACTIONS(2135), - [anon_sym_public] = ACTIONS(2135), - [anon_sym_private] = ACTIONS(2135), - [anon_sym_protected] = ACTIONS(2135), - [anon_sym_override] = ACTIONS(2135), - [anon_sym_module] = ACTIONS(2135), - [anon_sym_any] = ACTIONS(2135), - [anon_sym_number] = ACTIONS(2135), - [anon_sym_boolean] = ACTIONS(2135), - [anon_sym_string] = ACTIONS(2135), - [anon_sym_symbol] = ACTIONS(2135), - [anon_sym_object] = ACTIONS(2135), - [anon_sym_abstract] = ACTIONS(2135), - [anon_sym_satisfies] = ACTIONS(2137), - [anon_sym_interface] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(2135), - [sym__automatic_semicolon] = ACTIONS(2443), - [sym__ternary_qmark] = ACTIONS(2141), + [433] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(433), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(4896), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1071), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1087), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1081), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(2353), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(111), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [453] = { - [sym_comment] = STATE(453), + [434] = { + [sym_comment] = STATE(434), + [ts_builtin_sym_end] = ACTIONS(2147), + [sym_identifier] = ACTIONS(2145), + [anon_sym_export] = ACTIONS(2145), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_type] = ACTIONS(2145), + [anon_sym_as] = ACTIONS(2145), + [anon_sym_namespace] = ACTIONS(2145), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_COMMA] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_typeof] = ACTIONS(2145), + [anon_sym_import] = ACTIONS(2145), + [anon_sym_with] = ACTIONS(2145), + [anon_sym_var] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2145), + [anon_sym_switch] = ACTIONS(2145), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_in] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_do] = ACTIONS(2145), + [anon_sym_try] = ACTIONS(2145), + [anon_sym_break] = ACTIONS(2145), + [anon_sym_continue] = ACTIONS(2145), + [anon_sym_debugger] = ACTIONS(2145), + [anon_sym_return] = ACTIONS(2145), + [anon_sym_throw] = ACTIONS(2145), + [anon_sym_SEMI] = ACTIONS(2145), + [anon_sym_yield] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_LTtemplate_GT] = ACTIONS(2145), + [anon_sym_GT] = ACTIONS(2145), + [anon_sym_DOT] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2145), + [anon_sym_class] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(2145), + [anon_sym_QMARK_DOT] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(2145), + [anon_sym_using] = ACTIONS(2145), + [anon_sym_AMP_AMP] = ACTIONS(2145), + [anon_sym_PIPE_PIPE] = ACTIONS(2145), + [anon_sym_GT_GT] = ACTIONS(2145), + [anon_sym_GT_GT_GT] = ACTIONS(2145), + [anon_sym_LT_LT] = ACTIONS(2145), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2145), + [anon_sym_PIPE] = ACTIONS(2145), + [anon_sym_PLUS] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_SLASH] = ACTIONS(2145), + [anon_sym_PERCENT] = ACTIONS(2145), + [anon_sym_STAR_STAR] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_LT_EQ] = ACTIONS(2145), + [anon_sym_EQ_EQ] = ACTIONS(2145), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2145), + [anon_sym_BANG_EQ] = ACTIONS(2145), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2145), + [anon_sym_GT_EQ] = ACTIONS(2145), + [anon_sym_QMARK_QMARK] = ACTIONS(2145), + [anon_sym_instanceof] = ACTIONS(2145), + [anon_sym_TILDE] = ACTIONS(2145), + [anon_sym_void] = ACTIONS(2145), + [anon_sym_delete] = ACTIONS(2145), + [anon_sym_PLUS_PLUS] = ACTIONS(2145), + [anon_sym_DASH_DASH] = ACTIONS(2145), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2145), + [sym_number] = ACTIONS(2145), + [sym_private_property_identifier] = ACTIONS(2145), + [sym_this] = ACTIONS(2145), + [sym_super] = ACTIONS(2145), + [sym_true] = ACTIONS(2145), + [sym_false] = ACTIONS(2145), + [sym_null] = ACTIONS(2145), + [sym_undefined] = ACTIONS(2145), + [anon_sym_AT] = ACTIONS(2145), + [anon_sym_static] = ACTIONS(2145), + [anon_sym_readonly] = ACTIONS(2145), + [anon_sym_get] = ACTIONS(2145), + [anon_sym_set] = ACTIONS(2145), + [anon_sym_declare] = ACTIONS(2145), + [anon_sym_public] = ACTIONS(2145), + [anon_sym_private] = ACTIONS(2145), + [anon_sym_protected] = ACTIONS(2145), + [anon_sym_override] = ACTIONS(2145), + [anon_sym_module] = ACTIONS(2145), + [anon_sym_any] = ACTIONS(2145), + [anon_sym_number] = ACTIONS(2145), + [anon_sym_boolean] = ACTIONS(2145), + [anon_sym_string] = ACTIONS(2145), + [anon_sym_symbol] = ACTIONS(2145), + [anon_sym_object] = ACTIONS(2145), + [anon_sym_abstract] = ACTIONS(2145), + [anon_sym_satisfies] = ACTIONS(2145), + [anon_sym_interface] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2145), + [sym__automatic_semicolon] = ACTIONS(2147), + [sym__ternary_qmark] = ACTIONS(2147), + [sym_html_comment] = ACTIONS(5), + }, + [435] = { + [sym_comment] = STATE(435), + [ts_builtin_sym_end] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_in] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_GT] = ACTIONS(2199), + [anon_sym_DOT] = ACTIONS(2199), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_QMARK_DOT] = ACTIONS(2199), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2199), + [anon_sym_GT_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_AMP] = ACTIONS(2199), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2199), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_PERCENT] = ACTIONS(2199), + [anon_sym_STAR_STAR] = ACTIONS(2199), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_LT_EQ] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2199), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2199), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_QMARK_QMARK] = ACTIONS(2199), + [anon_sym_instanceof] = ACTIONS(2199), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_satisfies] = ACTIONS(2199), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [sym__automatic_semicolon] = ACTIONS(2415), + [sym__ternary_qmark] = ACTIONS(2203), + [sym_html_comment] = ACTIONS(5), + }, + [436] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(436), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5286), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1071), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(2417), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1081), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(2419), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(111), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), + [sym_html_comment] = ACTIONS(5), + }, + [437] = { + [sym_comment] = STATE(437), + [ts_builtin_sym_end] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2213), + [anon_sym_export] = ACTIONS(2213), + [anon_sym_STAR] = ACTIONS(2215), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_as] = ACTIONS(2215), + [anon_sym_namespace] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_COMMA] = ACTIONS(2215), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_typeof] = ACTIONS(2213), + [anon_sym_import] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(2213), + [anon_sym_var] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_switch] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_in] = ACTIONS(2215), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_debugger] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_throw] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_LTtemplate_GT] = ACTIONS(2213), + [anon_sym_GT] = ACTIONS(2215), + [anon_sym_DOT] = ACTIONS(2215), + [anon_sym_DQUOTE] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_class] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_function] = ACTIONS(2213), + [anon_sym_QMARK_DOT] = ACTIONS(2215), + [anon_sym_new] = ACTIONS(2213), + [anon_sym_using] = ACTIONS(2213), + [anon_sym_AMP_AMP] = ACTIONS(2215), + [anon_sym_PIPE_PIPE] = ACTIONS(2215), + [anon_sym_GT_GT] = ACTIONS(2215), + [anon_sym_GT_GT_GT] = ACTIONS(2215), + [anon_sym_LT_LT] = ACTIONS(2215), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_CARET] = ACTIONS(2215), + [anon_sym_PIPE] = ACTIONS(2215), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_PERCENT] = ACTIONS(2215), + [anon_sym_STAR_STAR] = ACTIONS(2215), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_LT_EQ] = ACTIONS(2215), + [anon_sym_EQ_EQ] = ACTIONS(2215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2215), + [anon_sym_GT_EQ] = ACTIONS(2215), + [anon_sym_QMARK_QMARK] = ACTIONS(2215), + [anon_sym_instanceof] = ACTIONS(2215), + [anon_sym_TILDE] = ACTIONS(2213), + [anon_sym_void] = ACTIONS(2213), + [anon_sym_delete] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2213), + [sym_number] = ACTIONS(2213), + [sym_private_property_identifier] = ACTIONS(2213), + [sym_this] = ACTIONS(2213), + [sym_super] = ACTIONS(2213), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [sym_null] = ACTIONS(2213), + [sym_undefined] = ACTIONS(2213), + [anon_sym_AT] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_readonly] = ACTIONS(2213), + [anon_sym_get] = ACTIONS(2213), + [anon_sym_set] = ACTIONS(2213), + [anon_sym_declare] = ACTIONS(2213), + [anon_sym_public] = ACTIONS(2213), + [anon_sym_private] = ACTIONS(2213), + [anon_sym_protected] = ACTIONS(2213), + [anon_sym_override] = ACTIONS(2213), + [anon_sym_module] = ACTIONS(2213), + [anon_sym_any] = ACTIONS(2213), + [anon_sym_number] = ACTIONS(2213), + [anon_sym_boolean] = ACTIONS(2213), + [anon_sym_string] = ACTIONS(2213), + [anon_sym_symbol] = ACTIONS(2213), + [anon_sym_object] = ACTIONS(2213), + [anon_sym_abstract] = ACTIONS(2213), + [anon_sym_satisfies] = ACTIONS(2215), + [anon_sym_interface] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [sym__automatic_semicolon] = ACTIONS(2421), + [sym__ternary_qmark] = ACTIONS(2219), + [sym_html_comment] = ACTIONS(5), + }, + [438] = { + [sym_comment] = STATE(438), + [ts_builtin_sym_end] = ACTIONS(2287), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2137), + [anon_sym_STAR] = ACTIONS(2139), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_as] = ACTIONS(2139), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_COMMA] = ACTIONS(2139), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_typeof] = ACTIONS(2137), + [anon_sym_import] = ACTIONS(2137), + [anon_sym_with] = ACTIONS(2137), + [anon_sym_var] = ACTIONS(2137), + [anon_sym_let] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_switch] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_await] = ACTIONS(2137), + [anon_sym_in] = ACTIONS(2139), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_do] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_debugger] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_throw] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_yield] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_LTtemplate_GT] = ACTIONS(2137), + [anon_sym_GT] = ACTIONS(2139), + [anon_sym_DOT] = ACTIONS(2139), + [anon_sym_DQUOTE] = ACTIONS(2137), + [anon_sym_SQUOTE] = ACTIONS(2137), + [anon_sym_class] = ACTIONS(2137), + [anon_sym_async] = ACTIONS(2137), + [anon_sym_function] = ACTIONS(2137), + [anon_sym_QMARK_DOT] = ACTIONS(2139), + [anon_sym_new] = ACTIONS(2137), + [anon_sym_using] = ACTIONS(2137), + [anon_sym_AMP_AMP] = ACTIONS(2139), + [anon_sym_PIPE_PIPE] = ACTIONS(2139), + [anon_sym_GT_GT] = ACTIONS(2139), + [anon_sym_GT_GT_GT] = ACTIONS(2139), + [anon_sym_LT_LT] = ACTIONS(2139), + [anon_sym_AMP] = ACTIONS(2139), + [anon_sym_CARET] = ACTIONS(2139), + [anon_sym_PIPE] = ACTIONS(2139), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_SLASH] = ACTIONS(2137), + [anon_sym_PERCENT] = ACTIONS(2139), + [anon_sym_STAR_STAR] = ACTIONS(2139), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_LT_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ] = ACTIONS(2139), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ] = ACTIONS(2139), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2139), + [anon_sym_GT_EQ] = ACTIONS(2139), + [anon_sym_QMARK_QMARK] = ACTIONS(2139), + [anon_sym_instanceof] = ACTIONS(2139), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_void] = ACTIONS(2137), + [anon_sym_delete] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2137), + [sym_number] = ACTIONS(2137), + [sym_private_property_identifier] = ACTIONS(2137), + [sym_this] = ACTIONS(2137), + [sym_super] = ACTIONS(2137), + [sym_true] = ACTIONS(2137), + [sym_false] = ACTIONS(2137), + [sym_null] = ACTIONS(2137), + [sym_undefined] = ACTIONS(2137), + [anon_sym_AT] = ACTIONS(2137), + [anon_sym_static] = ACTIONS(2137), + [anon_sym_readonly] = ACTIONS(2137), + [anon_sym_get] = ACTIONS(2137), + [anon_sym_set] = ACTIONS(2137), + [anon_sym_declare] = ACTIONS(2137), + [anon_sym_public] = ACTIONS(2137), + [anon_sym_private] = ACTIONS(2137), + [anon_sym_protected] = ACTIONS(2137), + [anon_sym_override] = ACTIONS(2137), + [anon_sym_module] = ACTIONS(2137), + [anon_sym_any] = ACTIONS(2137), + [anon_sym_number] = ACTIONS(2137), + [anon_sym_boolean] = ACTIONS(2137), + [anon_sym_string] = ACTIONS(2137), + [anon_sym_symbol] = ACTIONS(2137), + [anon_sym_object] = ACTIONS(2137), + [anon_sym_abstract] = ACTIONS(2137), + [anon_sym_satisfies] = ACTIONS(2139), + [anon_sym_interface] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [sym__automatic_semicolon] = ACTIONS(2423), + [sym__ternary_qmark] = ACTIONS(2143), + [sym_html_comment] = ACTIONS(5), + }, + [439] = { + [sym_comment] = STATE(439), + [ts_builtin_sym_end] = ACTIONS(2239), + [sym_identifier] = ACTIONS(2237), + [anon_sym_export] = ACTIONS(2237), + [anon_sym_STAR] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_namespace] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_COMMA] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_with] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_in] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_debugger] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_throw] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_LTtemplate_GT] = ACTIONS(2237), + [anon_sym_GT] = ACTIONS(2237), + [anon_sym_DOT] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_QMARK_DOT] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(2237), + [anon_sym_AMP_AMP] = ACTIONS(2237), + [anon_sym_PIPE_PIPE] = ACTIONS(2237), + [anon_sym_GT_GT] = ACTIONS(2237), + [anon_sym_GT_GT_GT] = ACTIONS(2237), + [anon_sym_LT_LT] = ACTIONS(2237), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_CARET] = ACTIONS(2237), + [anon_sym_PIPE] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_PERCENT] = ACTIONS(2237), + [anon_sym_STAR_STAR] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_LT_EQ] = ACTIONS(2237), + [anon_sym_EQ_EQ] = ACTIONS(2237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2237), + [anon_sym_BANG_EQ] = ACTIONS(2237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2237), + [anon_sym_GT_EQ] = ACTIONS(2237), + [anon_sym_QMARK_QMARK] = ACTIONS(2237), + [anon_sym_instanceof] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2237), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2237), + [sym_number] = ACTIONS(2237), + [sym_private_property_identifier] = ACTIONS(2237), + [sym_this] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_true] = ACTIONS(2237), + [sym_false] = ACTIONS(2237), + [sym_null] = ACTIONS(2237), + [sym_undefined] = ACTIONS(2237), + [anon_sym_AT] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_readonly] = ACTIONS(2237), + [anon_sym_get] = ACTIONS(2237), + [anon_sym_set] = ACTIONS(2237), + [anon_sym_declare] = ACTIONS(2237), + [anon_sym_public] = ACTIONS(2237), + [anon_sym_private] = ACTIONS(2237), + [anon_sym_protected] = ACTIONS(2237), + [anon_sym_override] = ACTIONS(2237), + [anon_sym_module] = ACTIONS(2237), + [anon_sym_any] = ACTIONS(2237), + [anon_sym_number] = ACTIONS(2237), + [anon_sym_boolean] = ACTIONS(2237), + [anon_sym_string] = ACTIONS(2237), + [anon_sym_symbol] = ACTIONS(2237), + [anon_sym_object] = ACTIONS(2237), + [anon_sym_abstract] = ACTIONS(2237), + [anon_sym_satisfies] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [sym__automatic_semicolon] = ACTIONS(2239), + [sym__ternary_qmark] = ACTIONS(2239), + [sym_html_comment] = ACTIONS(5), + }, + [440] = { + [sym_comment] = STATE(440), + [ts_builtin_sym_end] = ACTIONS(2235), + [sym_identifier] = ACTIONS(2233), + [anon_sym_export] = ACTIONS(2233), + [anon_sym_STAR] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_as] = ACTIONS(2233), + [anon_sym_namespace] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_COMMA] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_typeof] = ACTIONS(2233), + [anon_sym_import] = ACTIONS(2233), + [anon_sym_with] = ACTIONS(2233), + [anon_sym_var] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_switch] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2233), + [anon_sym_await] = ACTIONS(2233), + [anon_sym_in] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_do] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_debugger] = ACTIONS(2233), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_throw] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_yield] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LTtemplate_GT] = ACTIONS(2233), + [anon_sym_GT] = ACTIONS(2233), + [anon_sym_DOT] = ACTIONS(2233), + [anon_sym_DQUOTE] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_class] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_function] = ACTIONS(2233), + [anon_sym_QMARK_DOT] = ACTIONS(2233), + [anon_sym_new] = ACTIONS(2233), + [anon_sym_using] = ACTIONS(2233), + [anon_sym_AMP_AMP] = ACTIONS(2233), + [anon_sym_PIPE_PIPE] = ACTIONS(2233), + [anon_sym_GT_GT] = ACTIONS(2233), + [anon_sym_GT_GT_GT] = ACTIONS(2233), + [anon_sym_LT_LT] = ACTIONS(2233), + [anon_sym_AMP] = ACTIONS(2233), + [anon_sym_CARET] = ACTIONS(2233), + [anon_sym_PIPE] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_SLASH] = ACTIONS(2233), + [anon_sym_PERCENT] = ACTIONS(2233), + [anon_sym_STAR_STAR] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_LT_EQ] = ACTIONS(2233), + [anon_sym_EQ_EQ] = ACTIONS(2233), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2233), + [anon_sym_BANG_EQ] = ACTIONS(2233), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2233), + [anon_sym_GT_EQ] = ACTIONS(2233), + [anon_sym_QMARK_QMARK] = ACTIONS(2233), + [anon_sym_instanceof] = ACTIONS(2233), + [anon_sym_TILDE] = ACTIONS(2233), + [anon_sym_void] = ACTIONS(2233), + [anon_sym_delete] = ACTIONS(2233), + [anon_sym_PLUS_PLUS] = ACTIONS(2233), + [anon_sym_DASH_DASH] = ACTIONS(2233), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2233), + [sym_number] = ACTIONS(2233), + [sym_private_property_identifier] = ACTIONS(2233), + [sym_this] = ACTIONS(2233), + [sym_super] = ACTIONS(2233), + [sym_true] = ACTIONS(2233), + [sym_false] = ACTIONS(2233), + [sym_null] = ACTIONS(2233), + [sym_undefined] = ACTIONS(2233), + [anon_sym_AT] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_readonly] = ACTIONS(2233), + [anon_sym_get] = ACTIONS(2233), + [anon_sym_set] = ACTIONS(2233), + [anon_sym_declare] = ACTIONS(2233), + [anon_sym_public] = ACTIONS(2233), + [anon_sym_private] = ACTIONS(2233), + [anon_sym_protected] = ACTIONS(2233), + [anon_sym_override] = ACTIONS(2233), + [anon_sym_module] = ACTIONS(2233), + [anon_sym_any] = ACTIONS(2233), + [anon_sym_number] = ACTIONS(2233), + [anon_sym_boolean] = ACTIONS(2233), + [anon_sym_string] = ACTIONS(2233), + [anon_sym_symbol] = ACTIONS(2233), + [anon_sym_object] = ACTIONS(2233), + [anon_sym_abstract] = ACTIONS(2233), + [anon_sym_satisfies] = ACTIONS(2233), + [anon_sym_interface] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), + [sym__automatic_semicolon] = ACTIONS(2235), + [sym__ternary_qmark] = ACTIONS(2235), + [sym_html_comment] = ACTIONS(5), + }, + [441] = { + [sym_comment] = STATE(441), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_STAR] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_as] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_COMMA] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_in] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_GT] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_QMARK_DOT] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_AMP_AMP] = ACTIONS(2183), + [anon_sym_PIPE_PIPE] = ACTIONS(2183), + [anon_sym_GT_GT] = ACTIONS(2183), + [anon_sym_GT_GT_GT] = ACTIONS(2183), + [anon_sym_LT_LT] = ACTIONS(2183), + [anon_sym_AMP] = ACTIONS(2183), + [anon_sym_CARET] = ACTIONS(2183), + [anon_sym_PIPE] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_PERCENT] = ACTIONS(2183), + [anon_sym_STAR_STAR] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_LT_EQ] = ACTIONS(2183), + [anon_sym_EQ_EQ] = ACTIONS(2183), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2183), + [anon_sym_BANG_EQ] = ACTIONS(2183), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2183), + [anon_sym_GT_EQ] = ACTIONS(2183), + [anon_sym_QMARK_QMARK] = ACTIONS(2183), + [anon_sym_instanceof] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), + [anon_sym_abstract] = ACTIONS(2183), + [anon_sym_satisfies] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [sym__automatic_semicolon] = ACTIONS(2185), + [sym__ternary_qmark] = ACTIONS(2185), + [sym_html_comment] = ACTIONS(5), + }, + [442] = { + [sym_comment] = STATE(442), [ts_builtin_sym_end] = ACTIONS(2223), [sym_identifier] = ACTIONS(2221), [anon_sym_export] = ACTIONS(2221), @@ -90981,367 +89474,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2223), [sym_html_comment] = ACTIONS(5), }, - [454] = { - [sym_comment] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(2307), - [sym_identifier] = ACTIONS(2173), - [anon_sym_export] = ACTIONS(2173), - [anon_sym_STAR] = ACTIONS(2175), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_as] = ACTIONS(2175), - [anon_sym_namespace] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2173), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_typeof] = ACTIONS(2173), - [anon_sym_import] = ACTIONS(2173), - [anon_sym_with] = ACTIONS(2173), - [anon_sym_var] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_switch] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_in] = ACTIONS(2175), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_debugger] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_throw] = ACTIONS(2173), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_yield] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_LTtemplate_GT] = ACTIONS(2173), - [anon_sym_GT] = ACTIONS(2175), - [anon_sym_DOT] = ACTIONS(2175), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_class] = ACTIONS(2173), - [anon_sym_async] = ACTIONS(2173), - [anon_sym_function] = ACTIONS(2173), - [anon_sym_QMARK_DOT] = ACTIONS(2175), - [anon_sym_new] = ACTIONS(2173), - [anon_sym_using] = ACTIONS(2173), - [anon_sym_AMP_AMP] = ACTIONS(2175), - [anon_sym_PIPE_PIPE] = ACTIONS(2175), - [anon_sym_GT_GT] = ACTIONS(2175), - [anon_sym_GT_GT_GT] = ACTIONS(2175), - [anon_sym_LT_LT] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2175), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(2175), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_SLASH] = ACTIONS(2173), - [anon_sym_PERCENT] = ACTIONS(2175), - [anon_sym_STAR_STAR] = ACTIONS(2175), - [anon_sym_LT] = ACTIONS(2173), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_EQ_EQ] = ACTIONS(2175), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_QMARK_QMARK] = ACTIONS(2175), - [anon_sym_instanceof] = ACTIONS(2175), - [anon_sym_TILDE] = ACTIONS(2173), - [anon_sym_void] = ACTIONS(2173), - [anon_sym_delete] = ACTIONS(2173), - [anon_sym_PLUS_PLUS] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2173), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2173), - [sym_number] = ACTIONS(2173), - [sym_private_property_identifier] = ACTIONS(2173), - [sym_this] = ACTIONS(2173), - [sym_super] = ACTIONS(2173), - [sym_true] = ACTIONS(2173), - [sym_false] = ACTIONS(2173), - [sym_null] = ACTIONS(2173), - [sym_undefined] = ACTIONS(2173), - [anon_sym_AT] = ACTIONS(2173), - [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_abstract] = ACTIONS(2173), - [anon_sym_satisfies] = ACTIONS(2175), - [anon_sym_interface] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [sym__automatic_semicolon] = ACTIONS(2445), - [sym__ternary_qmark] = ACTIONS(2179), - [sym_html_comment] = ACTIONS(5), - }, - [455] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2677), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(7050), - [sym_string] = STATE(3113), - [sym_comment] = STATE(455), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2447), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), - [sym__automatic_semicolon] = ACTIONS(2449), - [sym_html_comment] = ACTIONS(5), - }, - [456] = { - [sym_comment] = STATE(456), - [ts_builtin_sym_end] = ACTIONS(2201), - [sym_identifier] = ACTIONS(2199), - [anon_sym_export] = ACTIONS(2199), - [anon_sym_STAR] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2199), - [anon_sym_as] = ACTIONS(2199), - [anon_sym_namespace] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_COMMA] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_typeof] = ACTIONS(2199), - [anon_sym_import] = ACTIONS(2199), - [anon_sym_with] = ACTIONS(2199), - [anon_sym_var] = ACTIONS(2199), - [anon_sym_let] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_switch] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_await] = ACTIONS(2199), - [anon_sym_in] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2199), - [anon_sym_do] = ACTIONS(2199), - [anon_sym_try] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_debugger] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_throw] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_yield] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_LTtemplate_GT] = ACTIONS(2199), - [anon_sym_GT] = ACTIONS(2199), - [anon_sym_DOT] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2199), - [anon_sym_SQUOTE] = ACTIONS(2199), - [anon_sym_class] = ACTIONS(2199), - [anon_sym_async] = ACTIONS(2199), - [anon_sym_function] = ACTIONS(2199), - [anon_sym_QMARK_DOT] = ACTIONS(2199), - [anon_sym_new] = ACTIONS(2199), - [anon_sym_using] = ACTIONS(2199), - [anon_sym_AMP_AMP] = ACTIONS(2199), - [anon_sym_PIPE_PIPE] = ACTIONS(2199), - [anon_sym_GT_GT] = ACTIONS(2199), - [anon_sym_GT_GT_GT] = ACTIONS(2199), - [anon_sym_LT_LT] = ACTIONS(2199), - [anon_sym_AMP] = ACTIONS(2199), - [anon_sym_CARET] = ACTIONS(2199), - [anon_sym_PIPE] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_SLASH] = ACTIONS(2199), - [anon_sym_PERCENT] = ACTIONS(2199), - [anon_sym_STAR_STAR] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2199), - [anon_sym_LT_EQ] = ACTIONS(2199), - [anon_sym_EQ_EQ] = ACTIONS(2199), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ] = ACTIONS(2199), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2199), - [anon_sym_GT_EQ] = ACTIONS(2199), - [anon_sym_QMARK_QMARK] = ACTIONS(2199), - [anon_sym_instanceof] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_void] = ACTIONS(2199), - [anon_sym_delete] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2199), - [sym_number] = ACTIONS(2199), - [sym_private_property_identifier] = ACTIONS(2199), - [sym_this] = ACTIONS(2199), - [sym_super] = ACTIONS(2199), - [sym_true] = ACTIONS(2199), - [sym_false] = ACTIONS(2199), - [sym_null] = ACTIONS(2199), - [sym_undefined] = ACTIONS(2199), - [anon_sym_AT] = ACTIONS(2199), - [anon_sym_static] = ACTIONS(2199), - [anon_sym_readonly] = ACTIONS(2199), - [anon_sym_get] = ACTIONS(2199), - [anon_sym_set] = ACTIONS(2199), - [anon_sym_declare] = ACTIONS(2199), - [anon_sym_public] = ACTIONS(2199), - [anon_sym_private] = ACTIONS(2199), - [anon_sym_protected] = ACTIONS(2199), - [anon_sym_override] = ACTIONS(2199), - [anon_sym_module] = ACTIONS(2199), - [anon_sym_any] = ACTIONS(2199), - [anon_sym_number] = ACTIONS(2199), - [anon_sym_boolean] = ACTIONS(2199), - [anon_sym_string] = ACTIONS(2199), - [anon_sym_symbol] = ACTIONS(2199), - [anon_sym_object] = ACTIONS(2199), - [anon_sym_abstract] = ACTIONS(2199), - [anon_sym_satisfies] = ACTIONS(2199), - [anon_sym_interface] = ACTIONS(2199), - [anon_sym_enum] = ACTIONS(2199), - [sym__automatic_semicolon] = ACTIONS(2201), - [sym__ternary_qmark] = ACTIONS(2201), - [sym_html_comment] = ACTIONS(5), - }, - [457] = { - [sym_comment] = STATE(457), - [sym_identifier] = ACTIONS(2419), - [anon_sym_export] = ACTIONS(2419), + [443] = { + [sym_comment] = STATE(443), + [sym_identifier] = ACTIONS(2405), + [anon_sym_export] = ACTIONS(2405), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2419), + [anon_sym_type] = ACTIONS(2405), [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2419), - [anon_sym_LBRACE] = ACTIONS(2419), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_LBRACE] = ACTIONS(2405), [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2419), - [anon_sym_import] = ACTIONS(2419), - [anon_sym_let] = ACTIONS(2419), - [anon_sym_BANG] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_typeof] = ACTIONS(2405), + [anon_sym_import] = ACTIONS(2405), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(2405), + [anon_sym_LPAREN] = ACTIONS(2405), [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(2419), + [anon_sym_await] = ACTIONS(2405), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(2419), - [anon_sym_LBRACK] = ACTIONS(2419), - [anon_sym_LTtemplate_GT] = ACTIONS(2419), + [anon_sym_yield] = ACTIONS(2405), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_LTtemplate_GT] = ACTIONS(2405), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_class] = ACTIONS(2419), - [anon_sym_async] = ACTIONS(2419), - [anon_sym_function] = ACTIONS(2419), + [anon_sym_DQUOTE] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_class] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(2405), + [anon_sym_function] = ACTIONS(2405), [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2419), - [anon_sym_using] = ACTIONS(2419), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_using] = ACTIONS(2405), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -91357,7 +89523,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(159), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2419), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2405), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -91366,12 +89532,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2419), - [anon_sym_DASH] = ACTIONS(2419), - [anon_sym_SLASH] = ACTIONS(2419), + [anon_sym_PLUS] = ACTIONS(2405), + [anon_sym_DASH] = ACTIONS(2405), + [anon_sym_SLASH] = ACTIONS(2405), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2419), + [anon_sym_LT] = ACTIONS(2405), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -91380,86 +89546,740 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(2419), - [anon_sym_void] = ACTIONS(2419), - [anon_sym_delete] = ACTIONS(2419), - [anon_sym_PLUS_PLUS] = ACTIONS(2419), - [anon_sym_DASH_DASH] = ACTIONS(2419), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2419), - [sym_number] = ACTIONS(2419), - [sym_private_property_identifier] = ACTIONS(2419), - [sym_this] = ACTIONS(2419), - [sym_super] = ACTIONS(2419), - [sym_true] = ACTIONS(2419), - [sym_false] = ACTIONS(2419), - [sym_null] = ACTIONS(2419), - [sym_undefined] = ACTIONS(2419), - [anon_sym_AT] = ACTIONS(2419), - [anon_sym_static] = ACTIONS(2419), - [anon_sym_readonly] = ACTIONS(2419), - [anon_sym_get] = ACTIONS(2419), - [anon_sym_set] = ACTIONS(2419), + [anon_sym_TILDE] = ACTIONS(2405), + [anon_sym_void] = ACTIONS(2405), + [anon_sym_delete] = ACTIONS(2405), + [anon_sym_PLUS_PLUS] = ACTIONS(2405), + [anon_sym_DASH_DASH] = ACTIONS(2405), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2405), + [sym_number] = ACTIONS(2405), + [sym_private_property_identifier] = ACTIONS(2405), + [sym_this] = ACTIONS(2405), + [sym_super] = ACTIONS(2405), + [sym_true] = ACTIONS(2405), + [sym_false] = ACTIONS(2405), + [sym_null] = ACTIONS(2405), + [sym_undefined] = ACTIONS(2405), + [anon_sym_AT] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_readonly] = ACTIONS(2405), + [anon_sym_get] = ACTIONS(2405), + [anon_sym_set] = ACTIONS(2405), [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(2419), - [anon_sym_public] = ACTIONS(2419), - [anon_sym_private] = ACTIONS(2419), - [anon_sym_protected] = ACTIONS(2419), - [anon_sym_override] = ACTIONS(2419), - [anon_sym_module] = ACTIONS(2419), - [anon_sym_any] = ACTIONS(2419), - [anon_sym_number] = ACTIONS(2419), - [anon_sym_boolean] = ACTIONS(2419), - [anon_sym_string] = ACTIONS(2419), - [anon_sym_symbol] = ACTIONS(2419), - [anon_sym_object] = ACTIONS(2419), + [anon_sym_declare] = ACTIONS(2405), + [anon_sym_public] = ACTIONS(2405), + [anon_sym_private] = ACTIONS(2405), + [anon_sym_protected] = ACTIONS(2405), + [anon_sym_override] = ACTIONS(2405), + [anon_sym_module] = ACTIONS(2405), + [anon_sym_any] = ACTIONS(2405), + [anon_sym_number] = ACTIONS(2405), + [anon_sym_boolean] = ACTIONS(2405), + [anon_sym_string] = ACTIONS(2405), + [anon_sym_symbol] = ACTIONS(2405), + [anon_sym_object] = ACTIONS(2405), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [458] = { - [sym_comment] = STATE(458), - [ts_builtin_sym_end] = ACTIONS(2103), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_STAR] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_as] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_COMMA] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_in] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_GT] = ACTIONS(2067), - [anon_sym_DOT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), + [444] = { + [sym_comment] = STATE(444), + [ts_builtin_sym_end] = ACTIONS(2373), + [sym_identifier] = ACTIONS(2167), + [anon_sym_export] = ACTIONS(2167), + [anon_sym_STAR] = ACTIONS(2169), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_as] = ACTIONS(2169), + [anon_sym_namespace] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_COMMA] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_typeof] = ACTIONS(2167), + [anon_sym_import] = ACTIONS(2167), + [anon_sym_with] = ACTIONS(2167), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_switch] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_await] = ACTIONS(2167), + [anon_sym_in] = ACTIONS(2169), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_do] = ACTIONS(2167), + [anon_sym_try] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_debugger] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_throw] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_yield] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_LTtemplate_GT] = ACTIONS(2167), + [anon_sym_GT] = ACTIONS(2169), + [anon_sym_DOT] = ACTIONS(2169), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_class] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_function] = ACTIONS(2167), + [anon_sym_QMARK_DOT] = ACTIONS(2169), + [anon_sym_new] = ACTIONS(2167), + [anon_sym_using] = ACTIONS(2167), + [anon_sym_AMP_AMP] = ACTIONS(2169), + [anon_sym_PIPE_PIPE] = ACTIONS(2169), + [anon_sym_GT_GT] = ACTIONS(2169), + [anon_sym_GT_GT_GT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(2169), + [anon_sym_CARET] = ACTIONS(2169), + [anon_sym_PIPE] = ACTIONS(2169), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_PERCENT] = ACTIONS(2169), + [anon_sym_STAR_STAR] = ACTIONS(2169), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_LT_EQ] = ACTIONS(2169), + [anon_sym_EQ_EQ] = ACTIONS(2169), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2169), + [anon_sym_BANG_EQ] = ACTIONS(2169), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2169), + [anon_sym_QMARK_QMARK] = ACTIONS(2169), + [anon_sym_instanceof] = ACTIONS(2169), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_void] = ACTIONS(2167), + [anon_sym_delete] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2167), + [sym_number] = ACTIONS(2167), + [sym_private_property_identifier] = ACTIONS(2167), + [sym_this] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_true] = ACTIONS(2167), + [sym_false] = ACTIONS(2167), + [sym_null] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(2167), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_readonly] = ACTIONS(2167), + [anon_sym_get] = ACTIONS(2167), + [anon_sym_set] = ACTIONS(2167), + [anon_sym_declare] = ACTIONS(2167), + [anon_sym_public] = ACTIONS(2167), + [anon_sym_private] = ACTIONS(2167), + [anon_sym_protected] = ACTIONS(2167), + [anon_sym_override] = ACTIONS(2167), + [anon_sym_module] = ACTIONS(2167), + [anon_sym_any] = ACTIONS(2167), + [anon_sym_number] = ACTIONS(2167), + [anon_sym_boolean] = ACTIONS(2167), + [anon_sym_string] = ACTIONS(2167), + [anon_sym_symbol] = ACTIONS(2167), + [anon_sym_object] = ACTIONS(2167), + [anon_sym_abstract] = ACTIONS(2167), + [anon_sym_satisfies] = ACTIONS(2169), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [sym__automatic_semicolon] = ACTIONS(2425), + [sym__ternary_qmark] = ACTIONS(2173), + [sym_html_comment] = ACTIONS(5), + }, + [445] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2428), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6715), + [sym_string] = STATE(2940), + [sym_comment] = STATE(445), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2427), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), + [sym__automatic_semicolon] = ACTIONS(2429), + [sym_html_comment] = ACTIONS(5), + }, + [446] = { + [sym_comment] = STATE(446), + [sym_identifier] = ACTIONS(2403), + [anon_sym_export] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2403), + [anon_sym_EQ] = ACTIONS(115), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(2403), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2403), + [anon_sym_import] = ACTIONS(2403), + [anon_sym_let] = ACTIONS(2403), + [anon_sym_BANG] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(2403), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(2403), + [anon_sym_LBRACK] = ACTIONS(2403), + [anon_sym_LTtemplate_GT] = ACTIONS(2403), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(2403), + [anon_sym_SQUOTE] = ACTIONS(2403), + [anon_sym_class] = ACTIONS(2403), + [anon_sym_async] = ACTIONS(2403), + [anon_sym_function] = ACTIONS(2403), + [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2403), + [anon_sym_using] = ACTIONS(2403), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2403), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(2403), + [anon_sym_DASH] = ACTIONS(2403), + [anon_sym_SLASH] = ACTIONS(2403), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2403), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(2403), + [anon_sym_void] = ACTIONS(2403), + [anon_sym_delete] = ACTIONS(2403), + [anon_sym_PLUS_PLUS] = ACTIONS(2403), + [anon_sym_DASH_DASH] = ACTIONS(2403), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2403), + [sym_number] = ACTIONS(2403), + [sym_private_property_identifier] = ACTIONS(2403), + [sym_this] = ACTIONS(2403), + [sym_super] = ACTIONS(2403), + [sym_true] = ACTIONS(2403), + [sym_false] = ACTIONS(2403), + [sym_null] = ACTIONS(2403), + [sym_undefined] = ACTIONS(2403), + [anon_sym_AT] = ACTIONS(2403), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_readonly] = ACTIONS(2403), + [anon_sym_get] = ACTIONS(2403), + [anon_sym_set] = ACTIONS(2403), + [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_declare] = ACTIONS(2403), + [anon_sym_public] = ACTIONS(2403), + [anon_sym_private] = ACTIONS(2403), + [anon_sym_protected] = ACTIONS(2403), + [anon_sym_override] = ACTIONS(2403), + [anon_sym_module] = ACTIONS(2403), + [anon_sym_any] = ACTIONS(2403), + [anon_sym_number] = ACTIONS(2403), + [anon_sym_boolean] = ACTIONS(2403), + [anon_sym_string] = ACTIONS(2403), + [anon_sym_symbol] = ACTIONS(2403), + [anon_sym_object] = ACTIONS(2403), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(211), + [sym_html_comment] = ACTIONS(5), + }, + [447] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2575), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6693), + [sym_string] = STATE(2940), + [sym_comment] = STATE(447), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2431), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), + [sym__automatic_semicolon] = ACTIONS(2433), + [sym_html_comment] = ACTIONS(5), + }, + [448] = { + [sym_comment] = STATE(448), + [ts_builtin_sym_end] = ACTIONS(2271), + [sym_identifier] = ACTIONS(2103), + [anon_sym_export] = ACTIONS(2103), + [anon_sym_STAR] = ACTIONS(2105), + [anon_sym_type] = ACTIONS(2103), + [anon_sym_as] = ACTIONS(2105), + [anon_sym_namespace] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(2103), + [anon_sym_import] = ACTIONS(2103), + [anon_sym_with] = ACTIONS(2103), + [anon_sym_var] = ACTIONS(2103), + [anon_sym_let] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_BANG] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2103), + [anon_sym_switch] = ACTIONS(2103), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_in] = ACTIONS(2105), + [anon_sym_while] = ACTIONS(2103), + [anon_sym_do] = ACTIONS(2103), + [anon_sym_try] = ACTIONS(2103), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2103), + [anon_sym_debugger] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2103), + [anon_sym_throw] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_yield] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_LTtemplate_GT] = ACTIONS(2103), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_DOT] = ACTIONS(2105), + [anon_sym_DQUOTE] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_class] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(2103), + [anon_sym_function] = ACTIONS(2103), + [anon_sym_QMARK_DOT] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2103), + [anon_sym_using] = ACTIONS(2103), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2105), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_SLASH] = ACTIONS(2103), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_STAR_STAR] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2103), + [anon_sym_LT_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), + [anon_sym_GT_EQ] = ACTIONS(2105), + [anon_sym_QMARK_QMARK] = ACTIONS(2105), + [anon_sym_instanceof] = ACTIONS(2105), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_void] = ACTIONS(2103), + [anon_sym_delete] = ACTIONS(2103), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2103), + [sym_number] = ACTIONS(2103), + [sym_private_property_identifier] = ACTIONS(2103), + [sym_this] = ACTIONS(2103), + [sym_super] = ACTIONS(2103), + [sym_true] = ACTIONS(2103), + [sym_false] = ACTIONS(2103), + [sym_null] = ACTIONS(2103), + [sym_undefined] = ACTIONS(2103), + [anon_sym_AT] = ACTIONS(2103), + [anon_sym_static] = ACTIONS(2103), + [anon_sym_readonly] = ACTIONS(2103), + [anon_sym_get] = ACTIONS(2103), + [anon_sym_set] = ACTIONS(2103), + [anon_sym_declare] = ACTIONS(2103), + [anon_sym_public] = ACTIONS(2103), + [anon_sym_private] = ACTIONS(2103), + [anon_sym_protected] = ACTIONS(2103), + [anon_sym_override] = ACTIONS(2103), + [anon_sym_module] = ACTIONS(2103), + [anon_sym_any] = ACTIONS(2103), + [anon_sym_number] = ACTIONS(2103), + [anon_sym_boolean] = ACTIONS(2103), + [anon_sym_string] = ACTIONS(2103), + [anon_sym_symbol] = ACTIONS(2103), + [anon_sym_object] = ACTIONS(2103), + [anon_sym_abstract] = ACTIONS(2103), + [anon_sym_satisfies] = ACTIONS(2105), + [anon_sym_interface] = ACTIONS(2103), + [anon_sym_enum] = ACTIONS(2103), + [sym__automatic_semicolon] = ACTIONS(2435), + [sym__ternary_qmark] = ACTIONS(2109), + [sym_html_comment] = ACTIONS(5), + }, + [449] = { + [sym_comment] = STATE(449), + [ts_builtin_sym_end] = ACTIONS(2357), + [sym_identifier] = ACTIONS(2255), + [anon_sym_export] = ACTIONS(2255), + [anon_sym_STAR] = ACTIONS(2257), + [anon_sym_type] = ACTIONS(2255), + [anon_sym_as] = ACTIONS(2257), + [anon_sym_namespace] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_COMMA] = ACTIONS(2257), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_typeof] = ACTIONS(2255), + [anon_sym_import] = ACTIONS(2255), + [anon_sym_with] = ACTIONS(2255), + [anon_sym_var] = ACTIONS(2255), + [anon_sym_let] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_switch] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2255), + [anon_sym_in] = ACTIONS(2257), + [anon_sym_while] = ACTIONS(2255), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_try] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_debugger] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_yield] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_LTtemplate_GT] = ACTIONS(2255), + [anon_sym_GT] = ACTIONS(2257), + [anon_sym_DOT] = ACTIONS(2257), + [anon_sym_DQUOTE] = ACTIONS(2255), + [anon_sym_SQUOTE] = ACTIONS(2255), + [anon_sym_class] = ACTIONS(2255), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2255), + [anon_sym_QMARK_DOT] = ACTIONS(2257), + [anon_sym_new] = ACTIONS(2255), + [anon_sym_using] = ACTIONS(2255), + [anon_sym_AMP_AMP] = ACTIONS(2257), + [anon_sym_PIPE_PIPE] = ACTIONS(2257), + [anon_sym_GT_GT] = ACTIONS(2257), + [anon_sym_GT_GT_GT] = ACTIONS(2257), + [anon_sym_LT_LT] = ACTIONS(2257), + [anon_sym_AMP] = ACTIONS(2257), + [anon_sym_CARET] = ACTIONS(2257), + [anon_sym_PIPE] = ACTIONS(2257), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(2255), + [anon_sym_PERCENT] = ACTIONS(2257), + [anon_sym_STAR_STAR] = ACTIONS(2257), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_LT_EQ] = ACTIONS(2257), + [anon_sym_EQ_EQ] = ACTIONS(2257), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2257), + [anon_sym_BANG_EQ] = ACTIONS(2257), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2257), + [anon_sym_GT_EQ] = ACTIONS(2257), + [anon_sym_QMARK_QMARK] = ACTIONS(2257), + [anon_sym_instanceof] = ACTIONS(2257), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_void] = ACTIONS(2255), + [anon_sym_delete] = ACTIONS(2255), + [anon_sym_PLUS_PLUS] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2255), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2255), + [sym_number] = ACTIONS(2255), + [sym_private_property_identifier] = ACTIONS(2255), + [sym_this] = ACTIONS(2255), + [sym_super] = ACTIONS(2255), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), + [sym_null] = ACTIONS(2255), + [sym_undefined] = ACTIONS(2255), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_readonly] = ACTIONS(2255), + [anon_sym_get] = ACTIONS(2255), + [anon_sym_set] = ACTIONS(2255), + [anon_sym_declare] = ACTIONS(2255), + [anon_sym_public] = ACTIONS(2255), + [anon_sym_private] = ACTIONS(2255), + [anon_sym_protected] = ACTIONS(2255), + [anon_sym_override] = ACTIONS(2255), + [anon_sym_module] = ACTIONS(2255), + [anon_sym_any] = ACTIONS(2255), + [anon_sym_number] = ACTIONS(2255), + [anon_sym_boolean] = ACTIONS(2255), + [anon_sym_string] = ACTIONS(2255), + [anon_sym_symbol] = ACTIONS(2255), + [anon_sym_object] = ACTIONS(2255), + [anon_sym_abstract] = ACTIONS(2255), + [anon_sym_satisfies] = ACTIONS(2257), + [anon_sym_interface] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [sym__automatic_semicolon] = ACTIONS(2437), + [sym__ternary_qmark] = ACTIONS(2261), + [sym_html_comment] = ACTIONS(5), + }, + [450] = { + [sym_comment] = STATE(450), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_COMMA] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_in] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_GT] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), [anon_sym_function] = ACTIONS(2067), [anon_sym_QMARK_DOT] = ACTIONS(2067), [anon_sym_new] = ACTIONS(2067), @@ -91522,188 +90342,951 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2451), - [sym__ternary_qmark] = ACTIONS(2103), + [sym__automatic_semicolon] = ACTIONS(2439), + [sym__ternary_qmark] = ACTIONS(2095), [sym_html_comment] = ACTIONS(5), }, - [459] = { - [sym_comment] = STATE(459), - [ts_builtin_sym_end] = ACTIONS(2289), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_STAR] = ACTIONS(2239), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2239), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_COMMA] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_in] = ACTIONS(2239), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_GT] = ACTIONS(2239), - [anon_sym_DOT] = ACTIONS(2239), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_QMARK_DOT] = ACTIONS(2239), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_AMP_AMP] = ACTIONS(2239), - [anon_sym_PIPE_PIPE] = ACTIONS(2239), - [anon_sym_GT_GT] = ACTIONS(2239), - [anon_sym_GT_GT_GT] = ACTIONS(2239), - [anon_sym_LT_LT] = ACTIONS(2239), - [anon_sym_AMP] = ACTIONS(2239), - [anon_sym_CARET] = ACTIONS(2239), - [anon_sym_PIPE] = ACTIONS(2239), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_PERCENT] = ACTIONS(2239), - [anon_sym_STAR_STAR] = ACTIONS(2239), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_LT_EQ] = ACTIONS(2239), - [anon_sym_EQ_EQ] = ACTIONS(2239), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ] = ACTIONS(2239), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2239), - [anon_sym_GT_EQ] = ACTIONS(2239), - [anon_sym_QMARK_QMARK] = ACTIONS(2239), - [anon_sym_instanceof] = ACTIONS(2239), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), + [451] = { + [sym_comment] = STATE(451), + [ts_builtin_sym_end] = ACTIONS(2365), + [sym_identifier] = ACTIONS(2083), + [anon_sym_export] = ACTIONS(2083), + [anon_sym_STAR] = ACTIONS(2085), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_as] = ACTIONS(2085), + [anon_sym_namespace] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_COMMA] = ACTIONS(2085), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_typeof] = ACTIONS(2083), + [anon_sym_import] = ACTIONS(2083), + [anon_sym_with] = ACTIONS(2083), + [anon_sym_var] = ACTIONS(2083), + [anon_sym_let] = ACTIONS(2083), + [anon_sym_const] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_if] = ACTIONS(2083), + [anon_sym_switch] = ACTIONS(2083), + [anon_sym_for] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_await] = ACTIONS(2083), + [anon_sym_in] = ACTIONS(2085), + [anon_sym_while] = ACTIONS(2083), + [anon_sym_do] = ACTIONS(2083), + [anon_sym_try] = ACTIONS(2083), + [anon_sym_break] = ACTIONS(2083), + [anon_sym_continue] = ACTIONS(2083), + [anon_sym_debugger] = ACTIONS(2083), + [anon_sym_return] = ACTIONS(2083), + [anon_sym_throw] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_yield] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LTtemplate_GT] = ACTIONS(2083), + [anon_sym_GT] = ACTIONS(2085), + [anon_sym_DOT] = ACTIONS(2085), + [anon_sym_DQUOTE] = ACTIONS(2083), + [anon_sym_SQUOTE] = ACTIONS(2083), + [anon_sym_class] = ACTIONS(2083), + [anon_sym_async] = ACTIONS(2083), + [anon_sym_function] = ACTIONS(2083), + [anon_sym_QMARK_DOT] = ACTIONS(2085), + [anon_sym_new] = ACTIONS(2083), + [anon_sym_using] = ACTIONS(2083), + [anon_sym_AMP_AMP] = ACTIONS(2085), + [anon_sym_PIPE_PIPE] = ACTIONS(2085), + [anon_sym_GT_GT] = ACTIONS(2085), + [anon_sym_GT_GT_GT] = ACTIONS(2085), + [anon_sym_LT_LT] = ACTIONS(2085), + [anon_sym_AMP] = ACTIONS(2085), + [anon_sym_CARET] = ACTIONS(2085), + [anon_sym_PIPE] = ACTIONS(2085), + [anon_sym_PLUS] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(2083), + [anon_sym_PERCENT] = ACTIONS(2085), + [anon_sym_STAR_STAR] = ACTIONS(2085), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_LT_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ] = ACTIONS(2085), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2085), + [anon_sym_BANG_EQ] = ACTIONS(2085), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2085), + [anon_sym_GT_EQ] = ACTIONS(2085), + [anon_sym_QMARK_QMARK] = ACTIONS(2085), + [anon_sym_instanceof] = ACTIONS(2085), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_void] = ACTIONS(2083), + [anon_sym_delete] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2083), + [sym_number] = ACTIONS(2083), + [sym_private_property_identifier] = ACTIONS(2083), + [sym_this] = ACTIONS(2083), + [sym_super] = ACTIONS(2083), + [sym_true] = ACTIONS(2083), + [sym_false] = ACTIONS(2083), + [sym_null] = ACTIONS(2083), + [sym_undefined] = ACTIONS(2083), + [anon_sym_AT] = ACTIONS(2083), + [anon_sym_static] = ACTIONS(2083), + [anon_sym_readonly] = ACTIONS(2083), + [anon_sym_get] = ACTIONS(2083), + [anon_sym_set] = ACTIONS(2083), + [anon_sym_declare] = ACTIONS(2083), + [anon_sym_public] = ACTIONS(2083), + [anon_sym_private] = ACTIONS(2083), + [anon_sym_protected] = ACTIONS(2083), + [anon_sym_override] = ACTIONS(2083), + [anon_sym_module] = ACTIONS(2083), + [anon_sym_any] = ACTIONS(2083), + [anon_sym_number] = ACTIONS(2083), + [anon_sym_boolean] = ACTIONS(2083), + [anon_sym_string] = ACTIONS(2083), + [anon_sym_symbol] = ACTIONS(2083), + [anon_sym_object] = ACTIONS(2083), + [anon_sym_abstract] = ACTIONS(2083), + [anon_sym_satisfies] = ACTIONS(2085), + [anon_sym_interface] = ACTIONS(2083), + [anon_sym_enum] = ACTIONS(2083), + [sym__automatic_semicolon] = ACTIONS(2441), + [sym__ternary_qmark] = ACTIONS(2089), + [sym_html_comment] = ACTIONS(5), + }, + [452] = { + [sym_comment] = STATE(452), + [ts_builtin_sym_end] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_COMMA] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_typeof] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_with] = ACTIONS(2175), + [anon_sym_var] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_debugger] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_throw] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_LTtemplate_GT] = ACTIONS(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_function] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2175), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_using] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2175), + [anon_sym_PIPE_PIPE] = ACTIONS(2175), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2175), + [anon_sym_LT_LT] = ACTIONS(2175), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2175), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2175), + [anon_sym_STAR_STAR] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_LT_EQ] = ACTIONS(2175), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2175), + [anon_sym_GT_EQ] = ACTIONS(2175), + [anon_sym_QMARK_QMARK] = ACTIONS(2175), + [anon_sym_instanceof] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_void] = ACTIONS(2175), + [anon_sym_delete] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2175), + [sym_number] = ACTIONS(2175), + [sym_private_property_identifier] = ACTIONS(2175), + [sym_this] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_null] = ACTIONS(2175), + [sym_undefined] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_readonly] = ACTIONS(2175), + [anon_sym_get] = ACTIONS(2175), + [anon_sym_set] = ACTIONS(2175), + [anon_sym_declare] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_override] = ACTIONS(2175), + [anon_sym_module] = ACTIONS(2175), + [anon_sym_any] = ACTIONS(2175), + [anon_sym_number] = ACTIONS(2175), + [anon_sym_boolean] = ACTIONS(2175), + [anon_sym_string] = ACTIONS(2175), + [anon_sym_symbol] = ACTIONS(2175), + [anon_sym_object] = ACTIONS(2175), + [anon_sym_abstract] = ACTIONS(2175), + [anon_sym_satisfies] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [sym__automatic_semicolon] = ACTIONS(2177), + [sym__ternary_qmark] = ACTIONS(2177), + [sym_html_comment] = ACTIONS(5), + }, + [453] = { + [sym_comment] = STATE(453), + [ts_builtin_sym_end] = ACTIONS(2165), + [sym_identifier] = ACTIONS(2163), + [anon_sym_export] = ACTIONS(2163), + [anon_sym_STAR] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2163), + [anon_sym_as] = ACTIONS(2163), + [anon_sym_namespace] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_typeof] = ACTIONS(2163), + [anon_sym_import] = ACTIONS(2163), + [anon_sym_with] = ACTIONS(2163), + [anon_sym_var] = ACTIONS(2163), + [anon_sym_let] = ACTIONS(2163), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_switch] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_await] = ACTIONS(2163), + [anon_sym_in] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2163), + [anon_sym_do] = ACTIONS(2163), + [anon_sym_try] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_debugger] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_throw] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_yield] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2163), + [anon_sym_LTtemplate_GT] = ACTIONS(2163), + [anon_sym_GT] = ACTIONS(2163), + [anon_sym_DOT] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [anon_sym_SQUOTE] = ACTIONS(2163), + [anon_sym_class] = ACTIONS(2163), + [anon_sym_async] = ACTIONS(2163), + [anon_sym_function] = ACTIONS(2163), + [anon_sym_QMARK_DOT] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(2163), + [anon_sym_AMP_AMP] = ACTIONS(2163), + [anon_sym_PIPE_PIPE] = ACTIONS(2163), + [anon_sym_GT_GT] = ACTIONS(2163), + [anon_sym_GT_GT_GT] = ACTIONS(2163), + [anon_sym_LT_LT] = ACTIONS(2163), + [anon_sym_AMP] = ACTIONS(2163), + [anon_sym_CARET] = ACTIONS(2163), + [anon_sym_PIPE] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2163), + [anon_sym_PERCENT] = ACTIONS(2163), + [anon_sym_STAR_STAR] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2163), + [anon_sym_LT_EQ] = ACTIONS(2163), + [anon_sym_EQ_EQ] = ACTIONS(2163), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ] = ACTIONS(2163), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2163), + [anon_sym_GT_EQ] = ACTIONS(2163), + [anon_sym_QMARK_QMARK] = ACTIONS(2163), + [anon_sym_instanceof] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2163), + [anon_sym_void] = ACTIONS(2163), + [anon_sym_delete] = ACTIONS(2163), + [anon_sym_PLUS_PLUS] = ACTIONS(2163), + [anon_sym_DASH_DASH] = ACTIONS(2163), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2163), + [sym_number] = ACTIONS(2163), + [sym_private_property_identifier] = ACTIONS(2163), + [sym_this] = ACTIONS(2163), + [sym_super] = ACTIONS(2163), + [sym_true] = ACTIONS(2163), + [sym_false] = ACTIONS(2163), + [sym_null] = ACTIONS(2163), + [sym_undefined] = ACTIONS(2163), + [anon_sym_AT] = ACTIONS(2163), + [anon_sym_static] = ACTIONS(2163), + [anon_sym_readonly] = ACTIONS(2163), + [anon_sym_get] = ACTIONS(2163), + [anon_sym_set] = ACTIONS(2163), + [anon_sym_declare] = ACTIONS(2163), + [anon_sym_public] = ACTIONS(2163), + [anon_sym_private] = ACTIONS(2163), + [anon_sym_protected] = ACTIONS(2163), + [anon_sym_override] = ACTIONS(2163), + [anon_sym_module] = ACTIONS(2163), + [anon_sym_any] = ACTIONS(2163), + [anon_sym_number] = ACTIONS(2163), + [anon_sym_boolean] = ACTIONS(2163), + [anon_sym_string] = ACTIONS(2163), + [anon_sym_symbol] = ACTIONS(2163), + [anon_sym_object] = ACTIONS(2163), + [anon_sym_abstract] = ACTIONS(2163), + [anon_sym_satisfies] = ACTIONS(2163), + [anon_sym_interface] = ACTIONS(2163), + [anon_sym_enum] = ACTIONS(2163), + [sym__automatic_semicolon] = ACTIONS(2165), + [sym__ternary_qmark] = ACTIONS(2165), + [sym_html_comment] = ACTIONS(5), + }, + [454] = { + [sym_comment] = STATE(454), + [ts_builtin_sym_end] = ACTIONS(2275), + [sym_identifier] = ACTIONS(2189), + [anon_sym_export] = ACTIONS(2189), + [anon_sym_STAR] = ACTIONS(2191), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_as] = ACTIONS(2191), + [anon_sym_namespace] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_COMMA] = ACTIONS(2191), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_typeof] = ACTIONS(2189), + [anon_sym_import] = ACTIONS(2189), + [anon_sym_with] = ACTIONS(2189), + [anon_sym_var] = ACTIONS(2189), + [anon_sym_let] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_switch] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_await] = ACTIONS(2189), + [anon_sym_in] = ACTIONS(2191), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_do] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_debugger] = ACTIONS(2189), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2189), + [anon_sym_SEMI] = ACTIONS(2189), + [anon_sym_yield] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_LTtemplate_GT] = ACTIONS(2189), + [anon_sym_GT] = ACTIONS(2191), + [anon_sym_DOT] = ACTIONS(2191), + [anon_sym_DQUOTE] = ACTIONS(2189), + [anon_sym_SQUOTE] = ACTIONS(2189), + [anon_sym_class] = ACTIONS(2189), + [anon_sym_async] = ACTIONS(2189), + [anon_sym_function] = ACTIONS(2189), + [anon_sym_QMARK_DOT] = ACTIONS(2191), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_using] = ACTIONS(2189), + [anon_sym_AMP_AMP] = ACTIONS(2191), + [anon_sym_PIPE_PIPE] = ACTIONS(2191), + [anon_sym_GT_GT] = ACTIONS(2191), + [anon_sym_GT_GT_GT] = ACTIONS(2191), + [anon_sym_LT_LT] = ACTIONS(2191), + [anon_sym_AMP] = ACTIONS(2191), + [anon_sym_CARET] = ACTIONS(2191), + [anon_sym_PIPE] = ACTIONS(2191), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_SLASH] = ACTIONS(2189), + [anon_sym_PERCENT] = ACTIONS(2191), + [anon_sym_STAR_STAR] = ACTIONS(2191), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_LT_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ] = ACTIONS(2191), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ] = ACTIONS(2191), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2191), + [anon_sym_GT_EQ] = ACTIONS(2191), + [anon_sym_QMARK_QMARK] = ACTIONS(2191), + [anon_sym_instanceof] = ACTIONS(2191), + [anon_sym_TILDE] = ACTIONS(2189), + [anon_sym_void] = ACTIONS(2189), + [anon_sym_delete] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2189), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2189), + [sym_number] = ACTIONS(2189), + [sym_private_property_identifier] = ACTIONS(2189), + [sym_this] = ACTIONS(2189), + [sym_super] = ACTIONS(2189), + [sym_true] = ACTIONS(2189), + [sym_false] = ACTIONS(2189), + [sym_null] = ACTIONS(2189), + [sym_undefined] = ACTIONS(2189), + [anon_sym_AT] = ACTIONS(2189), + [anon_sym_static] = ACTIONS(2189), + [anon_sym_readonly] = ACTIONS(2189), + [anon_sym_get] = ACTIONS(2189), + [anon_sym_set] = ACTIONS(2189), + [anon_sym_declare] = ACTIONS(2189), + [anon_sym_public] = ACTIONS(2189), + [anon_sym_private] = ACTIONS(2189), + [anon_sym_protected] = ACTIONS(2189), + [anon_sym_override] = ACTIONS(2189), + [anon_sym_module] = ACTIONS(2189), + [anon_sym_any] = ACTIONS(2189), + [anon_sym_number] = ACTIONS(2189), + [anon_sym_boolean] = ACTIONS(2189), + [anon_sym_string] = ACTIONS(2189), + [anon_sym_symbol] = ACTIONS(2189), + [anon_sym_object] = ACTIONS(2189), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_satisfies] = ACTIONS(2191), + [anon_sym_interface] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [sym__automatic_semicolon] = ACTIONS(2443), + [sym__ternary_qmark] = ACTIONS(2195), + [sym_html_comment] = ACTIONS(5), + }, + [455] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(455), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5061), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1071), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_satisfies] = ACTIONS(2239), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [sym__automatic_semicolon] = ACTIONS(2453), - [sym__ternary_qmark] = ACTIONS(2243), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(1093), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1081), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(2445), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(111), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [460] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2560), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6603), - [sym_string] = STATE(3113), - [sym_comment] = STATE(460), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [456] = { + [sym_comment] = STATE(456), + [ts_builtin_sym_end] = ACTIONS(2127), + [sym_identifier] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_STAR] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_as] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_COMMA] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_typeof] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2125), + [anon_sym_with] = ACTIONS(2125), + [anon_sym_var] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_in] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_debugger] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LTtemplate_GT] = ACTIONS(2125), + [anon_sym_GT] = ACTIONS(2125), + [anon_sym_DOT] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_QMARK_DOT] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [anon_sym_AMP_AMP] = ACTIONS(2125), + [anon_sym_PIPE_PIPE] = ACTIONS(2125), + [anon_sym_GT_GT] = ACTIONS(2125), + [anon_sym_GT_GT_GT] = ACTIONS(2125), + [anon_sym_LT_LT] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2125), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_PERCENT] = ACTIONS(2125), + [anon_sym_STAR_STAR] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_LT_EQ] = ACTIONS(2125), + [anon_sym_EQ_EQ] = ACTIONS(2125), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), + [anon_sym_BANG_EQ] = ACTIONS(2125), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), + [anon_sym_GT_EQ] = ACTIONS(2125), + [anon_sym_QMARK_QMARK] = ACTIONS(2125), + [anon_sym_instanceof] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_void] = ACTIONS(2125), + [anon_sym_delete] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2125), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(2125), + [sym_this] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [sym_undefined] = ACTIONS(2125), + [anon_sym_AT] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_readonly] = ACTIONS(2125), + [anon_sym_get] = ACTIONS(2125), + [anon_sym_set] = ACTIONS(2125), + [anon_sym_declare] = ACTIONS(2125), + [anon_sym_public] = ACTIONS(2125), + [anon_sym_private] = ACTIONS(2125), + [anon_sym_protected] = ACTIONS(2125), + [anon_sym_override] = ACTIONS(2125), + [anon_sym_module] = ACTIONS(2125), + [anon_sym_any] = ACTIONS(2125), + [anon_sym_number] = ACTIONS(2125), + [anon_sym_boolean] = ACTIONS(2125), + [anon_sym_string] = ACTIONS(2125), + [anon_sym_symbol] = ACTIONS(2125), + [anon_sym_object] = ACTIONS(2125), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_satisfies] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [sym__automatic_semicolon] = ACTIONS(2127), + [sym__ternary_qmark] = ACTIONS(2127), + [sym_html_comment] = ACTIONS(5), + }, + [457] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1940), + [sym_subscript_expression] = STATE(1940), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4554), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(457), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_pattern] = STATE(5082), + [sym_rest_pattern] = STATE(4572), + [sym_non_null_expression] = STATE(1940), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1061), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(149), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1071), + [anon_sym_using] = ACTIONS(157), + [anon_sym_DOT_DOT_DOT] = ACTIONS(161), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(2447), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1081), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(2449), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(111), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), + [sym_html_comment] = ACTIONS(5), + }, + [458] = { + [sym_comment] = STATE(458), + [ts_builtin_sym_end] = ACTIONS(2313), + [sym_identifier] = ACTIONS(2129), + [anon_sym_export] = ACTIONS(2129), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_as] = ACTIONS(2131), + [anon_sym_namespace] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2129), + [anon_sym_COMMA] = ACTIONS(2131), + [anon_sym_RBRACE] = ACTIONS(2129), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_import] = ACTIONS(2129), + [anon_sym_with] = ACTIONS(2129), + [anon_sym_var] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_in] = ACTIONS(2131), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_debugger] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_throw] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2129), + [anon_sym_yield] = ACTIONS(2129), + [anon_sym_LBRACK] = ACTIONS(2129), + [anon_sym_LTtemplate_GT] = ACTIONS(2129), + [anon_sym_GT] = ACTIONS(2131), + [anon_sym_DOT] = ACTIONS(2131), + [anon_sym_DQUOTE] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_class] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_function] = ACTIONS(2129), + [anon_sym_QMARK_DOT] = ACTIONS(2131), + [anon_sym_new] = ACTIONS(2129), + [anon_sym_using] = ACTIONS(2129), + [anon_sym_AMP_AMP] = ACTIONS(2131), + [anon_sym_PIPE_PIPE] = ACTIONS(2131), + [anon_sym_GT_GT] = ACTIONS(2131), + [anon_sym_GT_GT_GT] = ACTIONS(2131), + [anon_sym_LT_LT] = ACTIONS(2131), + [anon_sym_AMP] = ACTIONS(2131), + [anon_sym_CARET] = ACTIONS(2131), + [anon_sym_PIPE] = ACTIONS(2131), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_SLASH] = ACTIONS(2129), + [anon_sym_PERCENT] = ACTIONS(2131), + [anon_sym_STAR_STAR] = ACTIONS(2131), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_LT_EQ] = ACTIONS(2131), + [anon_sym_EQ_EQ] = ACTIONS(2131), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2131), + [anon_sym_BANG_EQ] = ACTIONS(2131), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2131), + [anon_sym_GT_EQ] = ACTIONS(2131), + [anon_sym_QMARK_QMARK] = ACTIONS(2131), + [anon_sym_instanceof] = ACTIONS(2131), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_void] = ACTIONS(2129), + [anon_sym_delete] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2129), + [sym_number] = ACTIONS(2129), + [sym_private_property_identifier] = ACTIONS(2129), + [sym_this] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_true] = ACTIONS(2129), + [sym_false] = ACTIONS(2129), + [sym_null] = ACTIONS(2129), + [sym_undefined] = ACTIONS(2129), + [anon_sym_AT] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_readonly] = ACTIONS(2129), + [anon_sym_get] = ACTIONS(2129), + [anon_sym_set] = ACTIONS(2129), + [anon_sym_declare] = ACTIONS(2129), + [anon_sym_public] = ACTIONS(2129), + [anon_sym_private] = ACTIONS(2129), + [anon_sym_protected] = ACTIONS(2129), + [anon_sym_override] = ACTIONS(2129), + [anon_sym_module] = ACTIONS(2129), + [anon_sym_any] = ACTIONS(2129), + [anon_sym_number] = ACTIONS(2129), + [anon_sym_boolean] = ACTIONS(2129), + [anon_sym_string] = ACTIONS(2129), + [anon_sym_symbol] = ACTIONS(2129), + [anon_sym_object] = ACTIONS(2129), + [anon_sym_abstract] = ACTIONS(2129), + [anon_sym_satisfies] = ACTIONS(2131), + [anon_sym_interface] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [sym__automatic_semicolon] = ACTIONS(2451), + [sym__ternary_qmark] = ACTIONS(2135), + [sym_html_comment] = ACTIONS(5), + }, + [459] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2467), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6813), + [sym_string] = STATE(2940), + [sym_comment] = STATE(459), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2455), + [anon_sym_SEMI] = ACTIONS(2453), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -91725,72 +91308,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), + [sym__automatic_semicolon] = ACTIONS(2455), + [sym_html_comment] = ACTIONS(5), + }, + [460] = { + [sym_comment] = STATE(460), + [ts_builtin_sym_end] = ACTIONS(2325), + [sym_identifier] = ACTIONS(2225), + [anon_sym_export] = ACTIONS(2225), + [anon_sym_STAR] = ACTIONS(2227), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_as] = ACTIONS(2227), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_COMMA] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_typeof] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_with] = ACTIONS(2225), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_in] = ACTIONS(2227), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_debugger] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LTtemplate_GT] = ACTIONS(2225), + [anon_sym_GT] = ACTIONS(2227), + [anon_sym_DOT] = ACTIONS(2227), + [anon_sym_DQUOTE] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_QMARK_DOT] = ACTIONS(2227), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [anon_sym_AMP_AMP] = ACTIONS(2227), + [anon_sym_PIPE_PIPE] = ACTIONS(2227), + [anon_sym_GT_GT] = ACTIONS(2227), + [anon_sym_GT_GT_GT] = ACTIONS(2227), + [anon_sym_LT_LT] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2227), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2227), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_PERCENT] = ACTIONS(2227), + [anon_sym_STAR_STAR] = ACTIONS(2227), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_LT_EQ] = ACTIONS(2227), + [anon_sym_EQ_EQ] = ACTIONS(2227), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2227), + [anon_sym_GT_EQ] = ACTIONS(2227), + [anon_sym_QMARK_QMARK] = ACTIONS(2227), + [anon_sym_instanceof] = ACTIONS(2227), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_void] = ACTIONS(2225), + [anon_sym_delete] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2225), + [sym_number] = ACTIONS(2225), + [sym_private_property_identifier] = ACTIONS(2225), + [sym_this] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_null] = ACTIONS(2225), + [sym_undefined] = ACTIONS(2225), + [anon_sym_AT] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_readonly] = ACTIONS(2225), + [anon_sym_get] = ACTIONS(2225), + [anon_sym_set] = ACTIONS(2225), + [anon_sym_declare] = ACTIONS(2225), + [anon_sym_public] = ACTIONS(2225), + [anon_sym_private] = ACTIONS(2225), + [anon_sym_protected] = ACTIONS(2225), + [anon_sym_override] = ACTIONS(2225), + [anon_sym_module] = ACTIONS(2225), + [anon_sym_any] = ACTIONS(2225), + [anon_sym_number] = ACTIONS(2225), + [anon_sym_boolean] = ACTIONS(2225), + [anon_sym_string] = ACTIONS(2225), + [anon_sym_symbol] = ACTIONS(2225), + [anon_sym_object] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_satisfies] = ACTIONS(2227), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), [sym__automatic_semicolon] = ACTIONS(2457), + [sym__ternary_qmark] = ACTIONS(2231), [sym_html_comment] = ACTIONS(5), }, [461] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2238), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2238), - [sym_subscript_expression] = STATE(2238), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(6082), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2126), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2126), + [sym_subscript_expression] = STATE(2126), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(5824), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(461), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2238), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2126), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(2459), [anon_sym_export] = ACTIONS(2461), [anon_sym_type] = ACTIONS(2461), @@ -91802,7 +91494,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2469), [anon_sym_const] = ACTIONS(2471), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), [anon_sym_LBRACK] = ACTIONS(2473), @@ -91816,15 +91508,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -91853,88 +91545,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [462] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2776), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7365), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2679), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7387), + [sym_string] = STATE(2547), [sym_comment] = STATE(462), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_RPAREN] = ACTIONS(2481), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -91942,107 +91634,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [463] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2793), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7367), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2661), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7389), + [sym_string] = STATE(2547), [sym_comment] = STATE(463), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_RPAREN] = ACTIONS(2483), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -92050,107 +91742,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [464] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2760), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7589), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2601), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7304), + [sym_string] = STATE(2547), [sym_comment] = STATE(464), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_RPAREN] = ACTIONS(2485), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -92158,107 +91850,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [465] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2823), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7280), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2626), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7341), + [sym_string] = STATE(2547), [sym_comment] = STATE(465), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_RPAREN] = ACTIONS(2487), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -92266,107 +91958,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [466] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2811), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7290), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2629), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7048), + [sym_string] = STATE(2547), [sym_comment] = STATE(466), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_RPAREN] = ACTIONS(2489), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -92374,320 +92066,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [467] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2535), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7463), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2473), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(2945), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(467), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, [468] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2417), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7560), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2548), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(468), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1512), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, [469] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7318), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2436), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2322), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(469), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -92695,401 +92387,829 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [470] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2665), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3405), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2495), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2586), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(470), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(174), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, [471] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2726), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2466), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6815), + [sym_string] = STATE(2940), [sym_comment] = STATE(471), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym__extends_clause_single] = STATE(6040), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), + [sym_html_comment] = ACTIONS(5), + }, + [472] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2473), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3163), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(472), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1506), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1524), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), + [sym_html_comment] = ACTIONS(5), + }, + [473] = { + [sym_import] = STATE(4290), + [sym_statement_block] = STATE(2925), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2536), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(473), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1470), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1488), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), + [sym_html_comment] = ACTIONS(5), + }, + [474] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2234), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7182), + [sym_string] = STATE(2547), + [sym_comment] = STATE(474), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [472] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2638), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3387), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(472), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(174), + [475] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2495), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2241), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(475), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [473] = { - [sym_import] = STATE(4369), - [sym_statement_block] = STATE(3259), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2700), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(473), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), + [476] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2453), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3151), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(476), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1506), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1524), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), + [sym_html_comment] = ACTIONS(5), + }, + [477] = { + [sym_import] = STATE(4290), + [sym_statement_block] = STATE(2925), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2499), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(477), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(2495), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -93098,10 +93218,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -93123,80 +93243,294 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [474] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2559), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6606), - [sym_string] = STATE(3113), - [sym_comment] = STATE(474), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [478] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2623), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7303), + [sym_string] = STATE(2547), + [sym_comment] = STATE(478), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1652), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), + [sym_html_comment] = ACTIONS(5), + }, + [479] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2446), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3132), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(479), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1506), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1524), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), + [sym_html_comment] = ACTIONS(5), + }, + [480] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2429), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6710), + [sym_string] = STATE(2940), + [sym_comment] = STATE(480), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -93205,10 +93539,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -93230,106 +93564,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [475] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2767), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7310), - [sym_string] = STATE(2723), - [sym_comment] = STATE(475), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [481] = { + [sym_import] = STATE(4290), + [sym_statement_block] = STATE(3160), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2534), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(481), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1470), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1488), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), + [sym_html_comment] = ACTIONS(5), + }, + [482] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2275), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7429), + [sym_string] = STATE(2547), + [sym_comment] = STATE(482), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -93337,213 +93778,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [476] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2635), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3383), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(476), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), + [483] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2548), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3033), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(483), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(174), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, - [477] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2809), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7498), - [sym_string] = STATE(2723), - [sym_comment] = STATE(477), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [484] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2650), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7059), + [sym_string] = STATE(2547), + [sym_comment] = STATE(484), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -93551,320 +93992,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [478] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2824), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7423), - [sym_string] = STATE(2723), - [sym_comment] = STATE(478), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [485] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2436), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3106), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(485), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1512), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, - [479] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2634), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3382), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(479), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), + [486] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2436), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3092), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(486), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(174), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, - [480] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2418), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7433), - [sym_string] = STATE(2723), - [sym_comment] = STATE(480), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [487] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2239), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7282), + [sym_string] = STATE(2547), + [sym_comment] = STATE(487), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -93872,641 +94313,534 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), - [sym_html_comment] = ACTIONS(5), - }, - [481] = { - [sym_import] = STATE(4369), - [sym_statement_block] = STATE(3259), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2590), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(481), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1526), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [482] = { - [sym_import] = STATE(4369), - [sym_statement_block] = STATE(3258), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2648), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(482), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), + [488] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2548), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2246), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(488), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1526), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1652), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [483] = { - [sym_import] = STATE(4369), - [sym_statement_block] = STATE(3304), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2649), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(483), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1526), + [489] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2587), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7057), + [sym_string] = STATE(2547), + [sym_comment] = STATE(489), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1652), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [484] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2691), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6486), - [sym_string] = STATE(3113), - [sym_comment] = STATE(484), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [490] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2446), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3187), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(490), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, - [485] = { - [sym_import] = STATE(4369), - [sym_statement_block] = STATE(3085), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2654), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(485), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(21), + [491] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2453), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3246), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(491), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, - [486] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2829), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7289), - [sym_string] = STATE(2723), - [sym_comment] = STATE(486), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [492] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2588), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7104), + [sym_string] = STATE(2547), + [sym_comment] = STATE(492), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -94514,211 +94848,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [487] = { - [sym_import] = STATE(4369), - [sym_statement_block] = STATE(3222), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2650), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(487), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1526), + [493] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2473), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3248), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(493), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, - [488] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2705), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3362), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(488), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [494] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2548), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3256), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(494), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), + [anon_sym_namespace] = ACTIONS(1101), [anon_sym_LBRACE] = ACTIONS(2491), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -94726,7 +95060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -94746,276 +95080,597 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, - [489] = { - [sym_import] = STATE(4369), - [sym_statement_block] = STATE(3085), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2982), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(489), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), + [495] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2655), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7097), + [sym_string] = STATE(2547), + [sym_comment] = STATE(495), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1652), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), + [sym_html_comment] = ACTIONS(5), + }, + [496] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2495), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3093), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(496), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1370), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1524), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, - [490] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2665), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2766), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(490), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1568), + [497] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2628), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7092), + [sym_string] = STATE(2547), + [sym_comment] = STATE(497), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [491] = { - [sym_import] = STATE(4369), - [sym_statement_block] = STATE(3258), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2698), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(491), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(2493), + [498] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2436), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3191), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(498), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1119), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), + [sym_html_comment] = ACTIONS(5), + }, + [499] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2495), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3173), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(499), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(1540), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1546), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1558), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), + [sym_html_comment] = ACTIONS(5), + }, + [500] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2576), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6689), + [sym_string] = STATE(2940), + [sym_comment] = STATE(500), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -95024,10 +95679,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -95049,106 +95704,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [492] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2682), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2745), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(492), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), + [501] = { + [sym_import] = STATE(4290), + [sym_statement_block] = STATE(2925), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2784), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(501), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_typeof] = ACTIONS(1610), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1634), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1772), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), + [sym_html_comment] = ACTIONS(5), + }, + [502] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2592), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(502), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym__extends_clause_single] = STATE(5622), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -95156,80 +95918,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [493] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2585), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(7158), - [sym_string] = STATE(3113), - [sym_comment] = STATE(493), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [503] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2412), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6604), + [sym_string] = STATE(2940), + [sym_comment] = STATE(503), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -95238,10 +96000,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -95263,106 +96025,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [494] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2399), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7584), - [sym_string] = STATE(2723), - [sym_comment] = STATE(494), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [504] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2320), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7399), + [sym_string] = STATE(2547), + [sym_comment] = STATE(504), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -95370,211 +96132,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), - [sym_html_comment] = ACTIONS(5), - }, - [495] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2705), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(3015), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(495), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1490), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [496] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2682), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3367), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(496), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [505] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2495), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3213), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(505), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), + [anon_sym_namespace] = ACTIONS(1101), [anon_sym_LBRACE] = ACTIONS(2491), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -95582,7 +96237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -95602,55 +96257,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, - [497] = { - [sym_import] = STATE(4369), - [sym_statement_block] = STATE(3247), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(497), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), + [506] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2230), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7337), + [sym_string] = STATE(2547), + [sym_comment] = STATE(506), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1652), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1732), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), + [sym_html_comment] = ACTIONS(5), + }, + [507] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2446), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(507), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), @@ -95659,37 +96421,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1362), [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), [anon_sym_PLUS] = ACTIONS(1370), [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(1370), [anon_sym_void] = ACTIONS(1370), [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1394), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -95709,195 +96471,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [498] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2665), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3324), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(498), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1416), + [508] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2453), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2612), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(508), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [499] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2828), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7287), - [sym_string] = STATE(2723), - [sym_comment] = STATE(499), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [509] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2621), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7196), + [sym_string] = STATE(2547), + [sym_comment] = STATE(509), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -95905,320 +96667,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [500] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2638), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2471), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(500), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(968), + [510] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2473), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2613), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(510), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [501] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2682), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3271), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(501), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), + [511] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2453), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(2943), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(511), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, - [502] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2634), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3187), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(502), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [512] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2446), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(2941), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(512), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(2491), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -96226,615 +96988,508 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), - [sym_html_comment] = ACTIONS(5), - }, - [503] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2676), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(7048), - [sym_string] = STATE(3113), - [sym_comment] = STATE(503), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, - [504] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2635), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3193), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(504), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1624), + [513] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2473), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2343), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(513), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [505] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2638), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2780), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(505), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1568), + [514] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2453), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2350), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(514), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [506] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2635), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2781), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(506), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1568), + [515] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2446), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2352), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(515), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [507] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2634), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2782), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(507), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1568), + [516] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2446), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2834), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(516), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [508] = { - [sym_import] = STATE(4369), - [sym_statement_block] = STATE(3247), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2576), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(508), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(2493), + [517] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2573), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_sequence_expression] = STATE(6612), + [sym_string] = STATE(2940), + [sym_comment] = STATE(517), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -96843,10 +97498,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -96868,213 +97523,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [509] = { - [sym_import] = STATE(4369), - [sym_statement_block] = STATE(3222), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3053), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(509), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), + [518] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2453), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2833), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(518), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1370), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1592), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [510] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2682), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2389), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(510), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [519] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2473), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2831), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(519), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1574), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1592), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), + [sym_html_comment] = ACTIONS(5), + }, + [520] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7312), + [sym_string] = STATE(2547), + [sym_comment] = STATE(520), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -97082,320 +97844,427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [511] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2638), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3232), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(511), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1624), + [521] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2548), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2816), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(521), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [512] = { - [sym_import] = STATE(4369), - [sym_statement_block] = STATE(3304), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2701), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(512), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(21), + [522] = { + [sym_import] = STATE(4290), + [sym_statement_block] = STATE(2967), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2498), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(522), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1488), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, - [513] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2726), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(513), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym__extends_clause_single] = STATE(5599), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [523] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2436), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2645), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(523), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1370), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1394), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), + [sym_html_comment] = ACTIONS(5), + }, + [524] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2592), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(524), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym__extends_clause_single] = STATE(6281), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -97403,748 +98272,855 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [514] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2682), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2994), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(514), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1490), + [525] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3077), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(525), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_mapped_type_clause] = STATE(7185), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2497), + [anon_sym_export] = ACTIONS(2499), + [anon_sym_type] = ACTIONS(2499), + [anon_sym_namespace] = ACTIONS(2501), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(2499), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(2503), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(2505), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(2499), + [anon_sym_readonly] = ACTIONS(2499), + [anon_sym_get] = ACTIONS(2499), + [anon_sym_set] = ACTIONS(2499), + [anon_sym_declare] = ACTIONS(2499), + [anon_sym_public] = ACTIONS(2499), + [anon_sym_private] = ACTIONS(2499), + [anon_sym_protected] = ACTIONS(2499), + [anon_sym_override] = ACTIONS(2499), + [anon_sym_module] = ACTIONS(2499), + [anon_sym_any] = ACTIONS(2499), + [anon_sym_number] = ACTIONS(2499), + [anon_sym_boolean] = ACTIONS(2499), + [anon_sym_string] = ACTIONS(2499), + [anon_sym_symbol] = ACTIONS(2499), + [anon_sym_object] = ACTIONS(2499), [sym_html_comment] = ACTIONS(5), }, - [515] = { - [sym_import] = STATE(4369), - [sym_statement_block] = STATE(3222), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2703), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(515), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(21), + [526] = { + [sym_import] = STATE(4290), + [sym_statement_block] = STATE(2969), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2494), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(526), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1488), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, - [516] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2665), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3236), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(516), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), + [527] = { + [sym_import] = STATE(4290), + [sym_statement_block] = STATE(3017), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2492), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(527), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_typeof] = ACTIONS(1470), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1488), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), + [sym_html_comment] = ACTIONS(5), + }, + [528] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2548), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2667), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(528), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [517] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2634), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3217), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(517), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1416), + [529] = { + [sym_import] = STATE(4290), + [sym_statement_block] = STATE(3094), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2790), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(529), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1634), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, - [518] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2635), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3218), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(518), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1416), + [530] = { + [sym_import] = STATE(4290), + [sym_statement_block] = STATE(3094), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2463), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(530), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1488), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, - [519] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2638), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3219), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(519), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1416), + [531] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2436), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2762), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(531), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [520] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2412), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7451), - [sym_string] = STATE(2723), - [sym_comment] = STATE(520), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [532] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2577), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7404), + [sym_string] = STATE(2547), + [sym_comment] = STATE(532), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -98152,427 +99128,427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [521] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2635), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2472), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(521), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [533] = { + [sym_import] = STATE(4290), + [sym_statement_block] = STATE(3094), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2520), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(533), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [522] = { - [sym_import] = STATE(4369), - [sym_statement_block] = STATE(3259), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2986), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(522), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1370), + [534] = { + [sym_import] = STATE(4290), + [sym_statement_block] = STATE(3160), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2504), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(534), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [523] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2705), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2733), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(523), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1568), + [535] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2632), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7361), + [sym_string] = STATE(2547), + [sym_comment] = STATE(535), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [524] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2705), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(524), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2491), - [anon_sym_typeof] = ACTIONS(1416), + [536] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3077), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(536), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_mapped_type_clause] = STATE(7453), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2507), + [anon_sym_export] = ACTIONS(2509), + [anon_sym_type] = ACTIONS(2509), + [anon_sym_namespace] = ACTIONS(2511), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(2509), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(2513), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_new] = ACTIONS(2515), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -98580,106 +99556,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(2509), + [anon_sym_readonly] = ACTIONS(2509), + [anon_sym_get] = ACTIONS(2509), + [anon_sym_set] = ACTIONS(2509), + [anon_sym_declare] = ACTIONS(2509), + [anon_sym_public] = ACTIONS(2509), + [anon_sym_private] = ACTIONS(2509), + [anon_sym_protected] = ACTIONS(2509), + [anon_sym_override] = ACTIONS(2509), + [anon_sym_module] = ACTIONS(2509), + [anon_sym_any] = ACTIONS(2509), + [anon_sym_number] = ACTIONS(2509), + [anon_sym_boolean] = ACTIONS(2509), + [anon_sym_string] = ACTIONS(2509), + [anon_sym_symbol] = ACTIONS(2509), + [anon_sym_object] = ACTIONS(2509), [sym_html_comment] = ACTIONS(5), }, - [525] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2787), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7462), - [sym_string] = STATE(2723), - [sym_comment] = STATE(525), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [537] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2651), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7380), + [sym_string] = STATE(2547), + [sym_comment] = STATE(537), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -98687,320 +99663,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [526] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3127), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(526), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_mapped_type_clause] = STATE(7249), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2497), - [anon_sym_export] = ACTIONS(2499), - [anon_sym_type] = ACTIONS(2499), - [anon_sym_namespace] = ACTIONS(2501), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [538] = { + [sym_import] = STATE(4207), + [sym_statement_block] = STATE(2495), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2758), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(538), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(2493), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2499), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2503), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2505), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2499), - [anon_sym_readonly] = ACTIONS(2499), - [anon_sym_get] = ACTIONS(2499), - [anon_sym_set] = ACTIONS(2499), - [anon_sym_declare] = ACTIONS(2499), - [anon_sym_public] = ACTIONS(2499), - [anon_sym_private] = ACTIONS(2499), - [anon_sym_protected] = ACTIONS(2499), - [anon_sym_override] = ACTIONS(2499), - [anon_sym_module] = ACTIONS(2499), - [anon_sym_any] = ACTIONS(2499), - [anon_sym_number] = ACTIONS(2499), - [anon_sym_boolean] = ACTIONS(2499), - [anon_sym_string] = ACTIONS(2499), - [anon_sym_symbol] = ACTIONS(2499), - [anon_sym_object] = ACTIONS(2499), - [sym_html_comment] = ACTIONS(5), - }, - [527] = { - [sym_import] = STATE(4369), - [sym_statement_block] = STATE(3304), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2981), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(527), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [528] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2827), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7282), - [sym_string] = STATE(2723), - [sym_comment] = STATE(528), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [539] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2653), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7383), + [sym_string] = STATE(2547), + [sym_comment] = STATE(539), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -99008,106 +99877,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [529] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2533), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7544), - [sym_string] = STATE(2723), - [sym_comment] = STATE(529), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [540] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2678), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7386), + [sym_string] = STATE(2547), + [sym_comment] = STATE(540), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -99115,641 +99984,962 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [530] = { - [sym_import] = STATE(4369), - [sym_statement_block] = STATE(3085), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2556), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(530), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), + [541] = { + [sym_import] = STATE(4290), + [sym_statement_block] = STATE(3017), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2823), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(541), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1610), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1634), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1772), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), + [sym_html_comment] = ACTIONS(5), + }, + [542] = { + [sym_import] = STATE(4290), + [sym_statement_block] = STATE(2967), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2431), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(542), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1526), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [531] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2682), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3333), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(531), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), + [543] = { + [sym_import] = STATE(4290), + [sym_statement_block] = STATE(2969), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2822), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(543), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_typeof] = ACTIONS(1610), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1634), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1772), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), + [sym_html_comment] = ACTIONS(5), + }, + [544] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2631), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7051), + [sym_string] = STATE(2547), + [sym_comment] = STATE(544), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [532] = { - [sym_import] = STATE(4369), - [sym_statement_block] = STATE(3247), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2610), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(532), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), + [545] = { + [sym_import] = STATE(4290), + [sym_statement_block] = STATE(2969), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2422), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(545), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1526), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [533] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2665), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2960), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(533), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [546] = { + [sym_import] = STATE(4290), + [sym_statement_block] = STATE(3017), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2407), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(546), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), + [sym_html_comment] = ACTIONS(5), + }, + [547] = { + [sym_import] = STATE(4290), + [sym_statement_block] = STATE(2967), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2821), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(547), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1490), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1634), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, - [534] = { - [sym_import] = STATE(4369), - [sym_statement_block] = STATE(3258), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3038), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(534), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(2493), - [anon_sym_typeof] = ACTIONS(1370), + [548] = { + [sym_import] = STATE(4290), + [sym_statement_block] = STATE(3160), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2814), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(548), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(2495), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, - [535] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2816), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7383), - [sym_string] = STATE(2723), - [sym_comment] = STATE(535), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [549] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2371), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_sequence_expression] = STATE(7171), + [sym_string] = STATE(2547), + [sym_comment] = STATE(549), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -99757,80 +100947,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [536] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2663), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_sequence_expression] = STATE(6691), - [sym_string] = STATE(3113), - [sym_comment] = STATE(536), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [550] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2562), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(550), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -99839,10 +101028,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -99864,213 +101053,423 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [537] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2705), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3282), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(537), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1624), + [551] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3209), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(551), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, - [538] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2705), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2440), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(538), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [552] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2564), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(552), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), + [sym_html_comment] = ACTIONS(5), + }, + [553] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2437), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(553), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), + [sym_html_comment] = ACTIONS(5), + }, + [554] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2764), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(554), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -100078,855 +101477,953 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [539] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2638), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2947), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(539), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1490), + [555] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2825), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(555), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [540] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2634), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2473), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(540), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(968), + [556] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2768), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(556), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [541] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2732), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7661), - [sym_string] = STATE(2723), - [sym_comment] = STATE(541), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [557] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2766), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(557), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [542] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2791), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7658), - [sym_string] = STATE(2723), - [sym_comment] = STATE(542), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [558] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2810), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(558), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1634), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1772), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), + [sym_html_comment] = ACTIONS(5), + }, + [559] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2815), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(559), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [543] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2734), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7653), - [sym_string] = STATE(2723), - [sym_comment] = STATE(543), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [560] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(3078), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(560), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [544] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2635), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2946), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(544), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1490), + [561] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2136), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2136), + [sym_subscript_expression] = STATE(2136), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7215), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(561), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2136), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2517), + [anon_sym_export] = ACTIONS(2519), + [anon_sym_type] = ACTIONS(2519), + [anon_sym_namespace] = ACTIONS(2521), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(2519), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(2523), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(2525), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(2527), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(2519), + [anon_sym_readonly] = ACTIONS(2519), + [anon_sym_get] = ACTIONS(2519), + [anon_sym_set] = ACTIONS(2519), + [anon_sym_declare] = ACTIONS(2519), + [anon_sym_public] = ACTIONS(2519), + [anon_sym_private] = ACTIONS(2519), + [anon_sym_protected] = ACTIONS(2519), + [anon_sym_override] = ACTIONS(2519), + [anon_sym_module] = ACTIONS(2519), + [anon_sym_any] = ACTIONS(2519), + [anon_sym_number] = ACTIONS(2519), + [anon_sym_boolean] = ACTIONS(2519), + [anon_sym_string] = ACTIONS(2519), + [anon_sym_symbol] = ACTIONS(2519), + [anon_sym_object] = ACTIONS(2519), [sym_html_comment] = ACTIONS(5), }, - [545] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2634), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2941), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(545), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(1490), + [562] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2765), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(562), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [546] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2408), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7489), - [sym_string] = STATE(2723), - [sym_comment] = STATE(546), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [563] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(563), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(2529), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -100934,718 +102431,1033 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [547] = { - [sym_import] = STATE(4259), - [sym_statement_block] = STATE(2665), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2456), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(547), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(2495), - [anon_sym_typeof] = ACTIONS(968), + [564] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2423), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(564), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), + [sym_html_comment] = ACTIONS(5), + }, + [565] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2761), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(565), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [548] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2728), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_sequence_expression] = STATE(7651), - [sym_string] = STATE(2723), - [sym_comment] = STATE(548), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [566] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2812), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(566), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1634), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1772), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), + [sym_html_comment] = ACTIONS(5), + }, + [567] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2811), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(567), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [549] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3127), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(549), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_mapped_type_clause] = STATE(7478), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2507), - [anon_sym_export] = ACTIONS(2509), - [anon_sym_type] = ACTIONS(2509), - [anon_sym_namespace] = ACTIONS(2511), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [568] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2571), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(568), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2509), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), + [sym_html_comment] = ACTIONS(5), + }, + [569] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2140), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2140), + [sym_subscript_expression] = STATE(2140), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7254), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(569), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2140), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2531), + [anon_sym_export] = ACTIONS(2533), + [anon_sym_type] = ACTIONS(2533), + [anon_sym_namespace] = ACTIONS(2535), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(2533), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2513), + [anon_sym_async] = ACTIONS(2537), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2515), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(2539), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(2541), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2509), - [anon_sym_readonly] = ACTIONS(2509), - [anon_sym_get] = ACTIONS(2509), - [anon_sym_set] = ACTIONS(2509), - [anon_sym_declare] = ACTIONS(2509), - [anon_sym_public] = ACTIONS(2509), - [anon_sym_private] = ACTIONS(2509), - [anon_sym_protected] = ACTIONS(2509), - [anon_sym_override] = ACTIONS(2509), - [anon_sym_module] = ACTIONS(2509), - [anon_sym_any] = ACTIONS(2509), - [anon_sym_number] = ACTIONS(2509), - [anon_sym_boolean] = ACTIONS(2509), - [anon_sym_string] = ACTIONS(2509), - [anon_sym_symbol] = ACTIONS(2509), - [anon_sym_object] = ACTIONS(2509), + [anon_sym_static] = ACTIONS(2533), + [anon_sym_readonly] = ACTIONS(2533), + [anon_sym_get] = ACTIONS(2533), + [anon_sym_set] = ACTIONS(2533), + [anon_sym_declare] = ACTIONS(2533), + [anon_sym_public] = ACTIONS(2533), + [anon_sym_private] = ACTIONS(2533), + [anon_sym_protected] = ACTIONS(2533), + [anon_sym_override] = ACTIONS(2533), + [anon_sym_module] = ACTIONS(2533), + [anon_sym_any] = ACTIONS(2533), + [anon_sym_number] = ACTIONS(2533), + [anon_sym_boolean] = ACTIONS(2533), + [anon_sym_string] = ACTIONS(2533), + [anon_sym_symbol] = ACTIONS(2533), + [anon_sym_object] = ACTIONS(2533), [sym_html_comment] = ACTIONS(5), }, - [550] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(3133), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(550), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [570] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2817), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(570), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1634), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, - [551] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2730), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(551), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [571] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3077), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(571), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1512), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, - [552] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2454), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(552), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [572] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2809), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(572), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [553] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2573), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(553), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [573] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2433), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(573), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -101654,10 +103466,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -101679,423 +103491,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [554] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2794), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(554), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [574] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2760), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(574), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [555] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2438), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(555), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [575] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2778), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(575), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), - [sym_html_comment] = ACTIONS(5), - }, - [556] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3098), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(556), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [557] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2464), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(557), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [576] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2597), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(576), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2517), - [sym_private_property_identifier] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -102103,397 +103809,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [558] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2922), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(558), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [577] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2802), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(577), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1634), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, - [559] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(3279), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(559), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), + [578] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2776), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(578), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [560] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7398), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(560), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2286), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2519), - [anon_sym_export] = ACTIONS(2521), - [anon_sym_type] = ACTIONS(2521), - [anon_sym_namespace] = ACTIONS(2523), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [579] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(579), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2521), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2525), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2527), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2529), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2521), - [anon_sym_readonly] = ACTIONS(2521), - [anon_sym_get] = ACTIONS(2521), - [anon_sym_set] = ACTIONS(2521), - [anon_sym_declare] = ACTIONS(2521), - [anon_sym_public] = ACTIONS(2521), - [anon_sym_private] = ACTIONS(2521), - [anon_sym_protected] = ACTIONS(2521), - [anon_sym_override] = ACTIONS(2521), - [anon_sym_module] = ACTIONS(2521), - [anon_sym_any] = ACTIONS(2521), - [anon_sym_number] = ACTIONS(2521), - [anon_sym_boolean] = ACTIONS(2521), - [anon_sym_string] = ACTIONS(2521), - [anon_sym_symbol] = ACTIONS(2521), - [anon_sym_object] = ACTIONS(2521), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [561] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2582), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(561), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [580] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2574), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(580), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -102502,10 +104208,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -102527,953 +104233,741 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), - [sym_html_comment] = ACTIONS(5), - }, - [562] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3157), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(562), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [563] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3146), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(563), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [581] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2456), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(581), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [564] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2810), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(564), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), + [582] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3209), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(582), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(2543), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, - [565] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2768), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(565), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), + [583] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2392), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(583), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1488), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, - [566] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3318), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(566), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), + [584] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2447), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(584), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), - [sym_html_comment] = ACTIONS(5), - }, - [567] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(567), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2531), - [sym_private_property_identifier] = ACTIONS(1586), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [568] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2784), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(568), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), + [585] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2759), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(585), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [569] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2783), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(569), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), + [586] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2773), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(586), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [570] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3329), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(570), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [587] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3090), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(587), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1512), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -103481,79 +104975,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, - [571] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2581), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(571), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [588] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(588), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -103562,10 +105056,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -103587,1269 +105081,1057 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [572] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3331), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(572), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), + [589] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2559), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(589), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [573] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3326), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(573), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), + [590] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2563), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(590), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2545), + [sym_private_property_identifier] = ACTIONS(1488), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, - [574] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2544), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(574), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [591] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2910), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(591), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), - [sym_html_comment] = ACTIONS(5), - }, - [575] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(575), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, - [576] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3322), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(576), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), + [592] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2556), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(592), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [577] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2513), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(577), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [593] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2555), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(593), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [578] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2764), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(578), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), + [594] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(3029), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(594), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [579] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2763), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(579), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), + [595] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2714), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(595), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [580] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3321), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(580), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), + [596] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3038), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(596), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), - [sym_html_comment] = ACTIONS(5), - }, - [581] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2761), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(581), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, - [582] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2759), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(582), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), + [597] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2581), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(597), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [583] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2292), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2292), - [sym_subscript_expression] = STATE(2292), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7262), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(583), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2292), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2533), - [anon_sym_export] = ACTIONS(2535), - [anon_sym_type] = ACTIONS(2535), - [anon_sym_namespace] = ACTIONS(2537), - [anon_sym_LBRACE] = ACTIONS(1101), + [598] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2139), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2139), + [sym_subscript_expression] = STATE(2139), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7331), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(598), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2139), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2547), + [anon_sym_export] = ACTIONS(2549), + [anon_sym_type] = ACTIONS(2549), + [anon_sym_namespace] = ACTIONS(2551), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2535), + [anon_sym_let] = ACTIONS(2549), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2539), + [anon_sym_async] = ACTIONS(2553), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2541), + [anon_sym_new] = ACTIONS(2555), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -104857,611 +106139,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2543), + [sym_undefined] = ACTIONS(2557), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2535), - [anon_sym_readonly] = ACTIONS(2535), - [anon_sym_get] = ACTIONS(2535), - [anon_sym_set] = ACTIONS(2535), - [anon_sym_declare] = ACTIONS(2535), - [anon_sym_public] = ACTIONS(2535), - [anon_sym_private] = ACTIONS(2535), - [anon_sym_protected] = ACTIONS(2535), - [anon_sym_override] = ACTIONS(2535), - [anon_sym_module] = ACTIONS(2535), - [anon_sym_any] = ACTIONS(2535), - [anon_sym_number] = ACTIONS(2535), - [anon_sym_boolean] = ACTIONS(2535), - [anon_sym_string] = ACTIONS(2535), - [anon_sym_symbol] = ACTIONS(2535), - [anon_sym_object] = ACTIONS(2535), + [anon_sym_static] = ACTIONS(2549), + [anon_sym_readonly] = ACTIONS(2549), + [anon_sym_get] = ACTIONS(2549), + [anon_sym_set] = ACTIONS(2549), + [anon_sym_declare] = ACTIONS(2549), + [anon_sym_public] = ACTIONS(2549), + [anon_sym_private] = ACTIONS(2549), + [anon_sym_protected] = ACTIONS(2549), + [anon_sym_override] = ACTIONS(2549), + [anon_sym_module] = ACTIONS(2549), + [anon_sym_any] = ACTIONS(2549), + [anon_sym_number] = ACTIONS(2549), + [anon_sym_boolean] = ACTIONS(2549), + [anon_sym_string] = ACTIONS(2549), + [anon_sym_symbol] = ACTIONS(2549), + [anon_sym_object] = ACTIONS(2549), [sym_html_comment] = ACTIONS(5), }, - [584] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2758), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(584), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), + [599] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2771), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(599), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [585] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(3114), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(585), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [600] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2519), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(600), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), - [sym_html_comment] = ACTIONS(5), - }, - [586] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2757), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(586), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), - [sym_html_comment] = ACTIONS(5), - }, - [587] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3373), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(587), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2517), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [588] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2561), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(588), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [589] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2637), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(589), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [601] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2516), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(601), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -105470,10 +106434,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -105495,609 +106459,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), - [sym_html_comment] = ACTIONS(5), - }, - [590] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2756), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(590), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), - [sym_html_comment] = ACTIONS(5), - }, - [591] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2754), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(591), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [592] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2565), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(592), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [602] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2803), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(602), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), - [sym_html_comment] = ACTIONS(5), - }, - [593] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2752), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(593), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, - [594] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2289), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2289), - [sym_subscript_expression] = STATE(2289), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7514), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(594), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2289), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2545), - [anon_sym_export] = ACTIONS(2547), - [anon_sym_type] = ACTIONS(2547), - [anon_sym_namespace] = ACTIONS(2549), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [603] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2804), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(603), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2547), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2551), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2553), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2555), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1634), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2547), - [anon_sym_readonly] = ACTIONS(2547), - [anon_sym_get] = ACTIONS(2547), - [anon_sym_set] = ACTIONS(2547), - [anon_sym_declare] = ACTIONS(2547), - [anon_sym_public] = ACTIONS(2547), - [anon_sym_private] = ACTIONS(2547), - [anon_sym_protected] = ACTIONS(2547), - [anon_sym_override] = ACTIONS(2547), - [anon_sym_module] = ACTIONS(2547), - [anon_sym_any] = ACTIONS(2547), - [anon_sym_number] = ACTIONS(2547), - [anon_sym_boolean] = ACTIONS(2547), - [anon_sym_string] = ACTIONS(2547), - [anon_sym_symbol] = ACTIONS(2547), - [anon_sym_object] = ACTIONS(2547), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, - [595] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2807), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(595), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [604] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2511), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(604), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -106106,10 +106752,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -106131,1881 +106777,1139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [596] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2751), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(596), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), + [605] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2826), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(605), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1634), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, - [597] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3150), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(597), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [606] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2827), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(606), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1634), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, - [598] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2750), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(598), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), + [607] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2970), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(607), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [599] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2747), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(599), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), + [608] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(3130), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(608), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [600] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2740), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(600), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), + [609] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2770), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(609), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [601] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3160), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(601), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), + [610] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3066), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(610), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2531), - [sym_private_property_identifier] = ACTIONS(1440), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), - [sym_html_comment] = ACTIONS(5), - }, - [602] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2738), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(602), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), - [sym_html_comment] = ACTIONS(5), - }, - [603] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2464), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(603), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2557), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, - [604] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3320), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(604), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), + [611] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2523), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4987), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(611), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2559), + [anon_sym_export] = ACTIONS(1708), + [anon_sym_type] = ACTIONS(1708), + [anon_sym_namespace] = ACTIONS(1710), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1708), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1714), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_new] = ACTIONS(2561), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), - [sym_html_comment] = ACTIONS(5), - }, - [605] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2464), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(605), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2559), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(2563), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1708), + [anon_sym_readonly] = ACTIONS(1708), + [anon_sym_get] = ACTIONS(1708), + [anon_sym_set] = ACTIONS(1708), + [anon_sym_declare] = ACTIONS(1708), + [anon_sym_public] = ACTIONS(1708), + [anon_sym_private] = ACTIONS(1708), + [anon_sym_protected] = ACTIONS(1708), + [anon_sym_override] = ACTIONS(1708), + [anon_sym_module] = ACTIONS(1708), + [anon_sym_any] = ACTIONS(1708), + [anon_sym_number] = ACTIONS(1708), + [anon_sym_boolean] = ACTIONS(1708), + [anon_sym_string] = ACTIONS(1708), + [anon_sym_symbol] = ACTIONS(1708), + [anon_sym_object] = ACTIONS(1708), [sym_html_comment] = ACTIONS(5), }, - [606] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2547), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(606), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), + [612] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2649), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(612), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), - [sym_html_comment] = ACTIONS(5), - }, - [607] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3167), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(607), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), - [sym_html_comment] = ACTIONS(5), - }, - [608] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3305), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(608), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [609] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2731), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(609), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), + [613] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(3119), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(613), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [610] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2557), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(610), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), + [614] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2482), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(614), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), - [sym_html_comment] = ACTIONS(5), - }, - [611] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2749), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(611), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), - [sym_html_comment] = ACTIONS(5), - }, - [612] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3171), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(612), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [613] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(613), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [615] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2398), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(615), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -108014,10 +107918,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -108039,291 +107943,397 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [614] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2591), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(614), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [616] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2900), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(616), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2545), + [sym_private_property_identifier] = ACTIONS(1634), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1772), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), + [sym_html_comment] = ACTIONS(5), + }, + [617] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2801), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(617), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, - [615] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3167), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(615), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), + [618] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(618), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2531), - [sym_private_property_identifier] = ACTIONS(1642), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(2565), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [616] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2651), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(616), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [619] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(619), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -108332,10 +108342,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -108357,103 +108367,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [617] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2290), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2290), - [sym_subscript_expression] = STATE(2290), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7503), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(617), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2290), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2561), - [anon_sym_export] = ACTIONS(2563), - [anon_sym_type] = ACTIONS(2563), - [anon_sym_namespace] = ACTIONS(2565), - [anon_sym_LBRACE] = ACTIONS(1101), + [620] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(620), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2144), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2567), + [anon_sym_export] = ACTIONS(2569), + [anon_sym_type] = ACTIONS(2569), + [anon_sym_namespace] = ACTIONS(2571), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2563), + [anon_sym_let] = ACTIONS(2569), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2567), + [anon_sym_async] = ACTIONS(2573), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2569), + [anon_sym_new] = ACTIONS(2575), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -108461,187 +108471,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2571), + [sym_undefined] = ACTIONS(2577), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2563), - [anon_sym_readonly] = ACTIONS(2563), - [anon_sym_get] = ACTIONS(2563), - [anon_sym_set] = ACTIONS(2563), - [anon_sym_declare] = ACTIONS(2563), - [anon_sym_public] = ACTIONS(2563), - [anon_sym_private] = ACTIONS(2563), - [anon_sym_protected] = ACTIONS(2563), - [anon_sym_override] = ACTIONS(2563), - [anon_sym_module] = ACTIONS(2563), - [anon_sym_any] = ACTIONS(2563), - [anon_sym_number] = ACTIONS(2563), - [anon_sym_boolean] = ACTIONS(2563), - [anon_sym_string] = ACTIONS(2563), - [anon_sym_symbol] = ACTIONS(2563), - [anon_sym_object] = ACTIONS(2563), + [anon_sym_static] = ACTIONS(2569), + [anon_sym_readonly] = ACTIONS(2569), + [anon_sym_get] = ACTIONS(2569), + [anon_sym_set] = ACTIONS(2569), + [anon_sym_declare] = ACTIONS(2569), + [anon_sym_public] = ACTIONS(2569), + [anon_sym_private] = ACTIONS(2569), + [anon_sym_protected] = ACTIONS(2569), + [anon_sym_override] = ACTIONS(2569), + [anon_sym_module] = ACTIONS(2569), + [anon_sym_any] = ACTIONS(2569), + [anon_sym_number] = ACTIONS(2569), + [anon_sym_boolean] = ACTIONS(2569), + [anon_sym_string] = ACTIONS(2569), + [anon_sym_symbol] = ACTIONS(2569), + [anon_sym_object] = ACTIONS(2569), [sym_html_comment] = ACTIONS(5), }, - [618] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2727), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(618), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [621] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2800), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(621), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, - [619] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2589), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(619), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [622] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2503), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(622), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -108650,10 +108660,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -108675,317 +108685,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [620] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2889), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(620), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), + [623] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2798), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(623), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [621] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3239), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(621), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, - [622] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3175), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(622), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [624] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3004), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(624), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -108993,423 +108897,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), - [sym_html_comment] = ACTIONS(5), - }, - [623] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2586), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(623), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), - [sym_html_comment] = ACTIONS(5), - }, - [624] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2872), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(624), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, [625] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3182), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2309), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(625), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [626] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3303), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3116), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(626), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1512), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -109417,111 +109109,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, [627] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2832), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2614), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(627), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1127), [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1362), [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), [anon_sym_PLUS] = ACTIONS(1370), [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(1370), [anon_sym_void] = ACTIONS(1370), [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1394), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -109542,192 +109234,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [628] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2996), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2839), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(628), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1592), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, [629] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3302), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3123), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(629), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1512), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -109735,747 +109427,1171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, [630] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(3107), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3003), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(630), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, [631] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3055), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3124), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(631), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1524), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, [632] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2711), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(2958), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(632), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1546), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1558), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, [633] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2712), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(633), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1488), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, [634] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2869), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2860), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(634), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1592), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), + [sym_html_comment] = ACTIONS(5), + }, + [635] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2797), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(635), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, - [635] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2841), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(635), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), + [636] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3123), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(636), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(2565), + [sym_private_property_identifier] = ACTIONS(1524), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), + [sym_html_comment] = ACTIONS(5), + }, + [637] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3126), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(637), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1506), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1524), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), + [sym_html_comment] = ACTIONS(5), + }, + [638] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2561), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(638), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(1488), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, - [636] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2879), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(636), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), + [639] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3128), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(639), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1506), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1524), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1788), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), + [sym_html_comment] = ACTIONS(5), + }, + [640] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2616), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(640), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1127), [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1362), [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), [anon_sym_PLUS] = ACTIONS(1370), [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(1370), [anon_sym_void] = ACTIONS(1370), [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1394), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -110495,511 +110611,511 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [637] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3273), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(637), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), + [641] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2874), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(641), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(2565), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [638] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3272), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(638), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), + [642] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(642), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [639] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3235), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(639), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), + [643] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2861), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(643), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [640] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3269), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(640), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), + [644] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2231), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(644), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [641] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3245), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(641), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [645] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3159), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(645), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1512), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -111007,535 +111123,217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, - [642] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3237), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(642), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), + [646] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3133), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(646), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1512), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), - [sym_html_comment] = ACTIONS(5), - }, - [643] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2874), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(643), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [644] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2894), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(644), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), - [sym_html_comment] = ACTIONS(5), - }, - [645] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2896), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(645), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, - [646] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2897), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(646), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), + [647] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2617), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(647), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1127), [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1362), [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), [anon_sym_PLUS] = ACTIONS(1370), [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(1370), [anon_sym_void] = ACTIONS(1370), [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1394), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -111555,511 +111353,405 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [647] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3238), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(647), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), + [648] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3131), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(648), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1512), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), - [sym_html_comment] = ACTIONS(5), - }, - [648] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2936), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(648), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, [649] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2997), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2533), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(649), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, [650] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3003), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3129), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(650), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1524), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, [651] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3253), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3056), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(651), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -112067,423 +111759,423 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, [652] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3014), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2509), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(652), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, [653] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2575), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(653), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1652), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(2543), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [654] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3274), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3122), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(654), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1512), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, [655] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3127), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3055), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(655), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -112491,317 +112183,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, [656] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3287), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3120), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(656), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1512), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, [657] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3288), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2874), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(657), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, [658] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3290), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3070), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(658), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -112809,1245 +112501,1351 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, [659] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2743), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2464), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(659), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1488), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), + [sym_html_comment] = ACTIONS(5), + }, + [660] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2523), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(660), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [660] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2588), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(660), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [661] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2883), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(661), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1592), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [661] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2196), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7510), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2196), - [sym_subscript_expression] = STATE(2196), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3936), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7511), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(661), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2196), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1750), - [anon_sym_export] = ACTIONS(1562), - [anon_sym_type] = ACTIONS(1562), - [anon_sym_namespace] = ACTIONS(1564), + [662] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2876), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(662), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1562), - [anon_sym_BANG] = ACTIONS(1568), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1570), - [anon_sym_yield] = ACTIONS(1572), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1574), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_using] = ACTIONS(1578), - [anon_sym_PLUS] = ACTIONS(1568), - [anon_sym_DASH] = ACTIONS(1568), - [anon_sym_SLASH] = ACTIONS(1274), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1568), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1584), - [anon_sym_DASH_DASH] = ACTIONS(1584), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1586), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1756), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1562), - [anon_sym_readonly] = ACTIONS(1562), - [anon_sym_get] = ACTIONS(1562), - [anon_sym_set] = ACTIONS(1562), - [anon_sym_declare] = ACTIONS(1562), - [anon_sym_public] = ACTIONS(1562), - [anon_sym_private] = ACTIONS(1562), - [anon_sym_protected] = ACTIONS(1562), - [anon_sym_override] = ACTIONS(1562), - [anon_sym_module] = ACTIONS(1562), - [anon_sym_any] = ACTIONS(1562), - [anon_sym_number] = ACTIONS(1562), - [anon_sym_boolean] = ACTIONS(1562), - [anon_sym_string] = ACTIONS(1562), - [anon_sym_symbol] = ACTIONS(1562), - [anon_sym_object] = ACTIONS(1562), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [662] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3011), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(662), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), + [663] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3052), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(663), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1546), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1558), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), + [sym_html_comment] = ACTIONS(5), + }, + [664] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2837), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(664), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, - [663] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(2985), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(663), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), + [665] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2795), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(665), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, - [664] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3297), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(664), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), + [666] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2358), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(666), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), - [sym_html_comment] = ACTIONS(5), - }, - [665] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3226), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(665), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [666] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(3086), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(666), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), + [667] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(3084), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(667), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [667] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3060), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(667), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), + [668] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2793), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(668), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2573), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, - [668] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2464), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(668), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [669] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3115), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(669), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1512), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2531), - [sym_private_property_identifier] = ACTIONS(994), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, - [669] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2593), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(669), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [670] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(670), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), + [sym_private_property_identifier] = ACTIONS(1488), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, - [670] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2579), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(670), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [671] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2455), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(671), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -114056,10 +113854,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -114081,211 +113879,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), - [sym_html_comment] = ACTIONS(5), - }, - [671] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3047), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(671), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, [672] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2411), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2356), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(672), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -114293,211 +113985,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [673] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2595), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2311), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(673), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), - [sym_html_comment] = ACTIONS(5), - }, - [674] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2480), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(674), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -114505,1351 +114091,1457 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [675] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3384), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(675), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [674] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2600), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(674), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [676] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(676), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [675] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2486), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(675), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), + [sym_private_property_identifier] = ACTIONS(1488), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [sym_undefined] = ACTIONS(1748), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), + [sym_html_comment] = ACTIONS(5), + }, + [676] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3114), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(676), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1506), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1524), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, [677] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3363), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3113), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(677), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1512), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, [678] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2657), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3110), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(678), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1512), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, [679] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3004), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3109), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(679), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1524), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, [680] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3307), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3108), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(680), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1512), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, [681] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2597), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2141), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2141), + [sym_subscript_expression] = STATE(2141), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7352), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(681), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2141), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2579), + [anon_sym_export] = ACTIONS(2581), + [anon_sym_type] = ACTIONS(2581), + [anon_sym_namespace] = ACTIONS(2583), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(2581), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(2585), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2587), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2589), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(2581), + [anon_sym_readonly] = ACTIONS(2581), + [anon_sym_get] = ACTIONS(2581), + [anon_sym_set] = ACTIONS(2581), + [anon_sym_declare] = ACTIONS(2581), + [anon_sym_public] = ACTIONS(2581), + [anon_sym_private] = ACTIONS(2581), + [anon_sym_protected] = ACTIONS(2581), + [anon_sym_override] = ACTIONS(2581), + [anon_sym_module] = ACTIONS(2581), + [anon_sym_any] = ACTIONS(2581), + [anon_sym_number] = ACTIONS(2581), + [anon_sym_boolean] = ACTIONS(2581), + [anon_sym_string] = ACTIONS(2581), + [anon_sym_symbol] = ACTIONS(2581), + [anon_sym_object] = ACTIONS(2581), [sym_html_comment] = ACTIONS(5), }, [682] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2598), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3071), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(682), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1546), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1558), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, [683] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3365), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3079), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(683), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, [684] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3366), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3080), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(684), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, [685] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3373), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3083), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(685), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2557), - [sym_private_property_identifier] = ACTIONS(185), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, [686] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3370), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2355), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(686), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [687] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2551), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2622), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(687), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -115858,10 +115550,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -115883,609 +115575,609 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, [688] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2599), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2584), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(688), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1394), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, [689] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2600), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2791), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(689), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, [690] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2601), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1938), + [sym_subscript_expression] = STATE(1938), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(4563), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(690), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1938), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2591), + [anon_sym_export] = ACTIONS(2593), + [anon_sym_type] = ACTIONS(2593), + [anon_sym_namespace] = ACTIONS(2595), + [anon_sym_LBRACE] = ACTIONS(1063), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(2593), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1948), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(2597), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(2599), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(2601), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(2593), + [anon_sym_readonly] = ACTIONS(2593), + [anon_sym_get] = ACTIONS(2593), + [anon_sym_set] = ACTIONS(2593), + [anon_sym_declare] = ACTIONS(2593), + [anon_sym_public] = ACTIONS(2593), + [anon_sym_private] = ACTIONS(2593), + [anon_sym_protected] = ACTIONS(2593), + [anon_sym_override] = ACTIONS(2593), + [anon_sym_module] = ACTIONS(2593), + [anon_sym_any] = ACTIONS(2593), + [anon_sym_number] = ACTIONS(2593), + [anon_sym_boolean] = ACTIONS(2593), + [anon_sym_string] = ACTIONS(2593), + [anon_sym_symbol] = ACTIONS(2593), + [anon_sym_object] = ACTIONS(2593), [sym_html_comment] = ACTIONS(5), }, [691] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2602), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3104), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(691), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1524), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, [692] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2607), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2971), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(692), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1592), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, [693] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2437), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(693), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -116494,10 +116186,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -116510,7 +116202,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), + [sym_number] = ACTIONS(2545), [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), @@ -116519,1271 +116211,1271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, [694] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2567), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2538), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(694), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1488), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, [695] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2608), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2906), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(695), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, [696] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2609), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3101), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(696), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1524), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, [697] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2554), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3037), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(697), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1546), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1558), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, [698] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2611), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3099), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(698), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1512), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1524), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, [699] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2620), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2367), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(699), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1652), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [700] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2621), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3034), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(700), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1546), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1558), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, [701] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2248), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(701), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1652), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [702] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2612), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2900), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(702), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, [703] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3179), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2357), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(703), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [704] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2647), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2542), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(704), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1488), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, [705] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3212), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3107), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(705), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1512), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -117791,209 +117483,315 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, [706] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3335), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3003), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(706), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(2565), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, [707] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3381), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(707), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1488), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), + [sym_html_comment] = ACTIONS(5), + }, + [708] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2137), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2137), + [sym_subscript_expression] = STATE(2137), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7004), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(708), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2137), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2603), + [anon_sym_export] = ACTIONS(2605), + [anon_sym_type] = ACTIONS(2605), + [anon_sym_namespace] = ACTIONS(2607), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), + [anon_sym_let] = ACTIONS(2605), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(2609), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(2611), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -118001,187 +117799,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [708] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2792), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(708), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(2613), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(2605), + [anon_sym_readonly] = ACTIONS(2605), + [anon_sym_get] = ACTIONS(2605), + [anon_sym_set] = ACTIONS(2605), + [anon_sym_declare] = ACTIONS(2605), + [anon_sym_public] = ACTIONS(2605), + [anon_sym_private] = ACTIONS(2605), + [anon_sym_protected] = ACTIONS(2605), + [anon_sym_override] = ACTIONS(2605), + [anon_sym_module] = ACTIONS(2605), + [anon_sym_any] = ACTIONS(2605), + [anon_sym_number] = ACTIONS(2605), + [anon_sym_boolean] = ACTIONS(2605), + [anon_sym_string] = ACTIONS(2605), + [anon_sym_symbol] = ACTIONS(2605), + [anon_sym_object] = ACTIONS(2605), [sym_html_comment] = ACTIONS(5), }, [709] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(709), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -118190,10 +117882,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -118215,951 +117907,951 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, [710] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(3078), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3091), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(710), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, [711] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2573), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2341), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(711), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1652), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2573), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1027), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [712] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3386), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2333), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(712), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [713] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3389), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2330), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(713), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [714] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3390), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2328), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(714), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [715] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3308), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2375), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(715), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [716] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3393), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(3137), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(716), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, [717] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3394), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2307), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(717), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [718] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3396), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3207), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(718), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -119167,7 +118859,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -119188,908 +118880,590 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [719] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3406), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2806), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(719), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [720] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3408), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(720), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [721] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2753), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(721), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, - [722] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3413), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(722), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [720] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2319), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(720), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [723] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3412), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(723), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [721] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2317), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(721), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [724] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3316), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(724), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), + [722] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2316), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(722), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [725] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3401), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(725), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [723] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2315), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(723), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), - [sym_html_comment] = ACTIONS(5), - }, - [726] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(726), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [727] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2696), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(727), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [724] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2654), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(724), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -120098,10 +119472,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -120123,211 +119497,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [728] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3375), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(728), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1095), - [anon_sym_export] = ACTIONS(1097), - [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [725] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3032), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(725), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1097), - [anon_sym_readonly] = ACTIONS(1097), - [anon_sym_get] = ACTIONS(1097), - [anon_sym_set] = ACTIONS(1097), - [anon_sym_declare] = ACTIONS(1097), - [anon_sym_public] = ACTIONS(1097), - [anon_sym_private] = ACTIONS(1097), - [anon_sym_protected] = ACTIONS(1097), - [anon_sym_override] = ACTIONS(1097), - [anon_sym_module] = ACTIONS(1097), - [anon_sym_any] = ACTIONS(1097), - [anon_sym_number] = ACTIONS(1097), - [anon_sym_boolean] = ACTIONS(1097), - [anon_sym_string] = ACTIONS(1097), - [anon_sym_symbol] = ACTIONS(1097), - [anon_sym_object] = ACTIONS(1097), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, - [729] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2441), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(729), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [726] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2232), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(726), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -120335,317 +119709,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [730] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3220), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(730), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), + [727] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2233), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(727), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, - [731] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3155), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(731), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), + [728] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2524), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(728), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1488), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, - [732] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3315), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(732), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [729] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3095), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(729), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), @@ -120653,535 +120027,535 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(189), [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, - [733] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3067), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(733), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [730] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2518), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(730), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1488), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, - [734] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2248), - [sym_expression] = STATE(3285), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7502), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2248), - [sym_subscript_expression] = STATE(2248), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3928), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7561), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(734), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2248), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1774), - [anon_sym_export] = ACTIONS(1618), - [anon_sym_type] = ACTIONS(1618), - [anon_sym_namespace] = ACTIONS(1620), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1624), + [731] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2138), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2138), + [sym_subscript_expression] = STATE(2138), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7244), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(731), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2138), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2615), + [anon_sym_export] = ACTIONS(2617), + [anon_sym_type] = ACTIONS(2617), + [anon_sym_namespace] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1618), - [anon_sym_BANG] = ACTIONS(1624), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1626), - [anon_sym_yield] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(2617), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1630), + [anon_sym_async] = ACTIONS(2621), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1778), - [anon_sym_using] = ACTIONS(1634), - [anon_sym_PLUS] = ACTIONS(1624), - [anon_sym_DASH] = ACTIONS(1624), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(2623), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1624), - [anon_sym_void] = ACTIONS(1624), - [anon_sym_delete] = ACTIONS(1624), - [anon_sym_PLUS_PLUS] = ACTIONS(1640), - [anon_sym_DASH_DASH] = ACTIONS(1640), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1642), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1780), + [sym_undefined] = ACTIONS(2625), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1618), - [anon_sym_readonly] = ACTIONS(1618), - [anon_sym_get] = ACTIONS(1618), - [anon_sym_set] = ACTIONS(1618), - [anon_sym_declare] = ACTIONS(1618), - [anon_sym_public] = ACTIONS(1618), - [anon_sym_private] = ACTIONS(1618), - [anon_sym_protected] = ACTIONS(1618), - [anon_sym_override] = ACTIONS(1618), - [anon_sym_module] = ACTIONS(1618), - [anon_sym_any] = ACTIONS(1618), - [anon_sym_number] = ACTIONS(1618), - [anon_sym_boolean] = ACTIONS(1618), - [anon_sym_string] = ACTIONS(1618), - [anon_sym_symbol] = ACTIONS(1618), - [anon_sym_object] = ACTIONS(1618), + [anon_sym_static] = ACTIONS(2617), + [anon_sym_readonly] = ACTIONS(2617), + [anon_sym_get] = ACTIONS(2617), + [anon_sym_set] = ACTIONS(2617), + [anon_sym_declare] = ACTIONS(2617), + [anon_sym_public] = ACTIONS(2617), + [anon_sym_private] = ACTIONS(2617), + [anon_sym_protected] = ACTIONS(2617), + [anon_sym_override] = ACTIONS(2617), + [anon_sym_module] = ACTIONS(2617), + [anon_sym_any] = ACTIONS(2617), + [anon_sym_number] = ACTIONS(2617), + [anon_sym_boolean] = ACTIONS(2617), + [anon_sym_string] = ACTIONS(2617), + [anon_sym_symbol] = ACTIONS(2617), + [anon_sym_object] = ACTIONS(2617), [sym_html_comment] = ACTIONS(5), }, - [735] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2918), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(735), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [732] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2143), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2143), + [sym_subscript_expression] = STATE(2143), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7273), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(732), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2143), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2627), + [anon_sym_export] = ACTIONS(2629), + [anon_sym_type] = ACTIONS(2629), + [anon_sym_namespace] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(2629), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(2633), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(2635), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(2637), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(2629), + [anon_sym_readonly] = ACTIONS(2629), + [anon_sym_get] = ACTIONS(2629), + [anon_sym_set] = ACTIONS(2629), + [anon_sym_declare] = ACTIONS(2629), + [anon_sym_public] = ACTIONS(2629), + [anon_sym_private] = ACTIONS(2629), + [anon_sym_protected] = ACTIONS(2629), + [anon_sym_override] = ACTIONS(2629), + [anon_sym_module] = ACTIONS(2629), + [anon_sym_any] = ACTIONS(2629), + [anon_sym_number] = ACTIONS(2629), + [anon_sym_boolean] = ACTIONS(2629), + [anon_sym_string] = ACTIONS(2629), + [anon_sym_symbol] = ACTIONS(2629), + [anon_sym_object] = ACTIONS(2629), [sym_html_comment] = ACTIONS(5), }, - [736] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2655), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(736), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [733] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(733), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1488), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, - [737] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3373), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(737), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [734] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3228), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(734), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2531), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -121201,167 +120575,485 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, - [738] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2657), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2185), - [sym_subscript_expression] = STATE(2185), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(5123), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(738), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2185), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2575), - [anon_sym_export] = ACTIONS(1708), - [anon_sym_type] = ACTIONS(1708), - [anon_sym_namespace] = ACTIONS(1710), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(968), + [735] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2468), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(735), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1708), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1105), - [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), + [sym_html_comment] = ACTIONS(5), + }, + [736] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2249), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(736), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1714), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2577), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2579), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1708), - [anon_sym_readonly] = ACTIONS(1708), - [anon_sym_get] = ACTIONS(1708), - [anon_sym_set] = ACTIONS(1708), - [anon_sym_declare] = ACTIONS(1708), - [anon_sym_public] = ACTIONS(1708), - [anon_sym_private] = ACTIONS(1708), - [anon_sym_protected] = ACTIONS(1708), - [anon_sym_override] = ACTIONS(1708), - [anon_sym_module] = ACTIONS(1708), - [anon_sym_any] = ACTIONS(1708), - [anon_sym_number] = ACTIONS(1708), - [anon_sym_boolean] = ACTIONS(1708), - [anon_sym_string] = ACTIONS(1708), - [anon_sym_symbol] = ACTIONS(1708), - [anon_sym_object] = ACTIONS(1708), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), + [sym_html_comment] = ACTIONS(5), + }, + [737] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(2952), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(737), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1574), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1580), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1592), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1764), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), + [sym_html_comment] = ACTIONS(5), + }, + [738] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2408), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(738), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1488), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, [739] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2538), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2634), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(739), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -121370,10 +121062,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -121395,111 +121087,111 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, [740] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3336), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3209), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(740), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(2565), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -121520,198 +121212,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [741] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3064), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2785), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(741), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, [742] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3062), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3144), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(742), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1546), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1558), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1780), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), + [sym_html_comment] = ACTIONS(5), + }, + [743] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2669), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(743), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), [anon_sym_export] = ACTIONS(1362), [anon_sym_type] = ACTIONS(1362), [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1127), [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1362), [anon_sym_BANG] = ACTIONS(1370), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), [anon_sym_PLUS] = ACTIONS(1370), [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(1370), [anon_sym_void] = ACTIONS(1370), [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(1394), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1362), [anon_sym_readonly] = ACTIONS(1362), @@ -121731,85 +121529,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [743] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3373), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(743), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [744] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3242), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(744), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -121817,7 +121615,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -121837,85 +121635,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, - [744] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3377), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2048), - [sym_subscript_expression] = STATE(2048), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7646), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(744), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2048), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [745] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3243), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(745), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), [sym_identifier] = ACTIONS(1095), [anon_sym_export] = ACTIONS(1097), [anon_sym_type] = ACTIONS(1097), - [anon_sym_namespace] = ACTIONS(1099), - [anon_sym_LBRACE] = ACTIONS(1101), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1109), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1111), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -121923,7 +121721,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1115), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1097), [anon_sym_readonly] = ACTIONS(1097), @@ -121943,1145 +121741,1039 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, - [745] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2221), - [sym_expression] = STATE(3060), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7374), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2221), - [sym_subscript_expression] = STATE(2221), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3860), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7376), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(745), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2221), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1362), - [anon_sym_type] = ACTIONS(1362), - [anon_sym_namespace] = ACTIONS(1364), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1370), + [746] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2469), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(746), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1362), - [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1374), - [anon_sym_yield] = ACTIONS(1376), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1380), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1762), - [anon_sym_using] = ACTIONS(1384), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1370), - [anon_sym_void] = ACTIONS(1370), - [anon_sym_delete] = ACTIONS(1370), - [anon_sym_PLUS_PLUS] = ACTIONS(1390), - [anon_sym_DASH_DASH] = ACTIONS(1390), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1396), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1764), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1362), - [anon_sym_readonly] = ACTIONS(1362), - [anon_sym_get] = ACTIONS(1362), - [anon_sym_set] = ACTIONS(1362), - [anon_sym_declare] = ACTIONS(1362), - [anon_sym_public] = ACTIONS(1362), - [anon_sym_private] = ACTIONS(1362), - [anon_sym_protected] = ACTIONS(1362), - [anon_sym_override] = ACTIONS(1362), - [anon_sym_module] = ACTIONS(1362), - [anon_sym_any] = ACTIONS(1362), - [anon_sym_number] = ACTIONS(1362), - [anon_sym_boolean] = ACTIONS(1362), - [anon_sym_string] = ACTIONS(1362), - [anon_sym_symbol] = ACTIONS(1362), - [anon_sym_object] = ACTIONS(1362), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, - [746] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(3118), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(746), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [747] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(2930), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(747), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, - [747] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2288), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2288), - [sym_subscript_expression] = STATE(2288), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7481), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(747), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2288), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2581), - [anon_sym_export] = ACTIONS(2583), - [anon_sym_type] = ACTIONS(2583), - [anon_sym_namespace] = ACTIONS(2585), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [748] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(2934), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(748), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2583), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2587), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2589), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2591), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2583), - [anon_sym_readonly] = ACTIONS(2583), - [anon_sym_get] = ACTIONS(2583), - [anon_sym_set] = ACTIONS(2583), - [anon_sym_declare] = ACTIONS(2583), - [anon_sym_public] = ACTIONS(2583), - [anon_sym_private] = ACTIONS(2583), - [anon_sym_protected] = ACTIONS(2583), - [anon_sym_override] = ACTIONS(2583), - [anon_sym_module] = ACTIONS(2583), - [anon_sym_any] = ACTIONS(2583), - [anon_sym_number] = ACTIONS(2583), - [anon_sym_boolean] = ACTIONS(2583), - [anon_sym_string] = ACTIONS(2583), - [anon_sym_symbol] = ACTIONS(2583), - [anon_sym_object] = ACTIONS(2583), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, - [748] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(748), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [749] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2072), + [sym_expression] = STATE(3068), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(6992), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2072), + [sym_subscript_expression] = STATE(2072), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3709), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7255), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(749), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2072), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1758), + [anon_sym_export] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1568), + [anon_sym_namespace] = ACTIONS(1570), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1574), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1568), + [anon_sym_BANG] = ACTIONS(1574), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1576), + [anon_sym_yield] = ACTIONS(1578), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1580), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1762), + [anon_sym_using] = ACTIONS(1584), + [anon_sym_PLUS] = ACTIONS(1574), + [anon_sym_DASH] = ACTIONS(1574), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1574), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1574), + [anon_sym_PLUS_PLUS] = ACTIONS(1590), + [anon_sym_DASH_DASH] = ACTIONS(1590), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1592), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1764), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1568), + [anon_sym_readonly] = ACTIONS(1568), + [anon_sym_get] = ACTIONS(1568), + [anon_sym_set] = ACTIONS(1568), + [anon_sym_declare] = ACTIONS(1568), + [anon_sym_public] = ACTIONS(1568), + [anon_sym_private] = ACTIONS(1568), + [anon_sym_protected] = ACTIONS(1568), + [anon_sym_override] = ACTIONS(1568), + [anon_sym_module] = ACTIONS(1568), + [anon_sym_any] = ACTIONS(1568), + [anon_sym_number] = ACTIONS(1568), + [anon_sym_boolean] = ACTIONS(1568), + [anon_sym_string] = ACTIONS(1568), + [anon_sym_symbol] = ACTIONS(1568), + [anon_sym_object] = ACTIONS(1568), [sym_html_comment] = ACTIONS(5), }, - [749] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7247), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(749), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2284), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2593), - [anon_sym_export] = ACTIONS(2595), - [anon_sym_type] = ACTIONS(2595), - [anon_sym_namespace] = ACTIONS(2597), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [750] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2671), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(750), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2595), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2599), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2601), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2603), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2595), - [anon_sym_readonly] = ACTIONS(2595), - [anon_sym_get] = ACTIONS(2595), - [anon_sym_set] = ACTIONS(2595), - [anon_sym_declare] = ACTIONS(2595), - [anon_sym_public] = ACTIONS(2595), - [anon_sym_private] = ACTIONS(2595), - [anon_sym_protected] = ACTIONS(2595), - [anon_sym_override] = ACTIONS(2595), - [anon_sym_module] = ACTIONS(2595), - [anon_sym_any] = ACTIONS(2595), - [anon_sym_number] = ACTIONS(2595), - [anon_sym_boolean] = ACTIONS(2595), - [anon_sym_string] = ACTIONS(2595), - [anon_sym_symbol] = ACTIONS(2595), - [anon_sym_object] = ACTIONS(2595), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [750] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2457), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(750), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [751] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2603), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(751), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [751] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2797), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(751), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [752] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2786), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(752), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1770), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1634), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), - [sym_html_comment] = ACTIONS(5), - }, - [752] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2464), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(752), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, [753] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2393), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3254), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(753), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, [754] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2652), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2400), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(754), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), + [sym_private_property_identifier] = ACTIONS(1488), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, [755] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2287), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2287), - [sym_subscript_expression] = STATE(2287), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7269), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3258), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(755), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2287), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2605), - [anon_sym_export] = ACTIONS(2607), - [anon_sym_type] = ACTIONS(2607), - [anon_sym_namespace] = ACTIONS(2609), - [anon_sym_LBRACE] = ACTIONS(1101), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2607), + [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2611), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2613), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -123089,1589 +122781,1483 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2615), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2607), - [anon_sym_readonly] = ACTIONS(2607), - [anon_sym_get] = ACTIONS(2607), - [anon_sym_set] = ACTIONS(2607), - [anon_sym_declare] = ACTIONS(2607), - [anon_sym_public] = ACTIONS(2607), - [anon_sym_private] = ACTIONS(2607), - [anon_sym_protected] = ACTIONS(2607), - [anon_sym_override] = ACTIONS(2607), - [anon_sym_module] = ACTIONS(2607), - [anon_sym_any] = ACTIONS(2607), - [anon_sym_number] = ACTIONS(2607), - [anon_sym_boolean] = ACTIONS(2607), - [anon_sym_string] = ACTIONS(2607), - [anon_sym_symbol] = ACTIONS(2607), - [anon_sym_object] = ACTIONS(2607), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, [756] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3160), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3259), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(756), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, [757] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2653), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3260), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(757), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1113), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(189), + [sym_private_property_identifier] = ACTIONS(185), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, [758] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2386), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3264), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(758), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, [759] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2488), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3241), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(759), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, [760] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2509), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(760), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, [761] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2517), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3239), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(761), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, [762] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(3257), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3235), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(762), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, [763] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3229), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(763), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, [764] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2769), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3224), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(764), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), - [sym_html_comment] = ACTIONS(5), - }, - [765] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(3013), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(765), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, - [766] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(3012), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(766), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [765] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3231), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(765), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, - [767] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2565), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(767), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [766] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2506), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(766), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2573), - [sym_private_property_identifier] = ACTIONS(1550), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1488), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, - [768] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(3005), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(768), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), + [767] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(767), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [769] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2461), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(769), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [768] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2677), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(768), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, - [770] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2291), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2291), - [sym_subscript_expression] = STATE(2291), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7187), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(770), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2291), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2617), - [anon_sym_export] = ACTIONS(2619), - [anon_sym_type] = ACTIONS(2619), - [anon_sym_namespace] = ACTIONS(2621), - [anon_sym_LBRACE] = ACTIONS(1101), + [769] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3212), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(769), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2619), + [anon_sym_let] = ACTIONS(1097), [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), + [anon_sym_LPAREN] = ACTIONS(1107), [anon_sym_await] = ACTIONS(137), [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2623), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2625), + [anon_sym_new] = ACTIONS(1115), [anon_sym_using] = ACTIONS(157), [anon_sym_PLUS] = ACTIONS(174), [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), [anon_sym_TILDE] = ACTIONS(174), [anon_sym_void] = ACTIONS(174), [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), @@ -124679,2519 +124265,2519 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2627), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2619), - [anon_sym_readonly] = ACTIONS(2619), - [anon_sym_get] = ACTIONS(2619), - [anon_sym_set] = ACTIONS(2619), - [anon_sym_declare] = ACTIONS(2619), - [anon_sym_public] = ACTIONS(2619), - [anon_sym_private] = ACTIONS(2619), - [anon_sym_protected] = ACTIONS(2619), - [anon_sym_override] = ACTIONS(2619), - [anon_sym_module] = ACTIONS(2619), - [anon_sym_any] = ACTIONS(2619), - [anon_sym_number] = ACTIONS(2619), - [anon_sym_boolean] = ACTIONS(2619), - [anon_sym_string] = ACTIONS(2619), - [anon_sym_symbol] = ACTIONS(2619), - [anon_sym_object] = ACTIONS(2619), - [sym_html_comment] = ACTIONS(5), - }, - [771] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(3151), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(771), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), + [sym_html_comment] = ACTIONS(5), + }, + [770] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3215), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(770), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, - [772] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2239), - [sym_expression] = STATE(3213), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7446), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2239), - [sym_subscript_expression] = STATE(2239), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3938), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7450), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), - [sym_comment] = STATE(772), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2239), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1782), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(1416), + [771] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3214), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(771), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1408), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1424), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1786), - [anon_sym_using] = ACTIONS(1428), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1290), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1416), - [anon_sym_delete] = ACTIONS(1416), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1440), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1788), + [sym_undefined] = ACTIONS(1119), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), + [sym_html_comment] = ACTIONS(5), + }, + [772] = { + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), + [sym_comment] = STATE(772), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1488), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_override] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_object] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, [773] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2992), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(773), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, [774] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2991), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2569), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(774), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1488), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, [775] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2987), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2563), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(775), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1488), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, [776] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2390), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2142), + [sym_expression] = STATE(3253), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2142), + [sym_subscript_expression] = STATE(2142), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7085), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(776), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2142), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(2639), + [anon_sym_export] = ACTIONS(2641), + [anon_sym_type] = ACTIONS(2641), + [anon_sym_namespace] = ACTIONS(2643), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(2645), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(2647), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(2649), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(2641), + [anon_sym_readonly] = ACTIONS(2641), + [anon_sym_get] = ACTIONS(2641), + [anon_sym_set] = ACTIONS(2641), + [anon_sym_declare] = ACTIONS(2641), + [anon_sym_public] = ACTIONS(2641), + [anon_sym_private] = ACTIONS(2641), + [anon_sym_protected] = ACTIONS(2641), + [anon_sym_override] = ACTIONS(2641), + [anon_sym_module] = ACTIONS(2641), + [anon_sym_any] = ACTIONS(2641), + [anon_sym_number] = ACTIONS(2641), + [anon_sym_boolean] = ACTIONS(2641), + [anon_sym_string] = ACTIONS(2641), + [anon_sym_symbol] = ACTIONS(2641), + [anon_sym_object] = ACTIONS(2641), [sym_html_comment] = ACTIONS(5), }, [777] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2388), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2676), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(777), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, [778] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2984), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2652), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(778), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, [779] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2387), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3203), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(779), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, [780] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2983), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2658), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(780), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, [781] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(3168), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3174), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(781), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, [782] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2977), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2699), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(782), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [783] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2975), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(783), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [784] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2972), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2606), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(784), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [785] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2970), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2666), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(785), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, [786] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2967), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2084), + [sym_expression] = STATE(2789), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7191), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2084), + [sym_subscript_expression] = STATE(2084), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3714), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7193), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(786), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2084), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [anon_sym_export] = ACTIONS(1602), + [anon_sym_type] = ACTIONS(1602), + [anon_sym_namespace] = ACTIONS(1604), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1610), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1602), + [anon_sym_BANG] = ACTIONS(1610), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1612), + [anon_sym_yield] = ACTIONS(1614), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), - [anon_sym_function] = ACTIONS(151), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1618), + [anon_sym_function] = ACTIONS(977), [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_using] = ACTIONS(1622), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1610), + [anon_sym_void] = ACTIONS(1610), + [anon_sym_delete] = ACTIONS(1610), + [anon_sym_PLUS_PLUS] = ACTIONS(1628), + [anon_sym_DASH_DASH] = ACTIONS(1628), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1634), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1772), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1602), + [anon_sym_readonly] = ACTIONS(1602), + [anon_sym_get] = ACTIONS(1602), + [anon_sym_set] = ACTIONS(1602), + [anon_sym_declare] = ACTIONS(1602), + [anon_sym_public] = ACTIONS(1602), + [anon_sym_private] = ACTIONS(1602), + [anon_sym_protected] = ACTIONS(1602), + [anon_sym_override] = ACTIONS(1602), + [anon_sym_module] = ACTIONS(1602), + [anon_sym_any] = ACTIONS(1602), + [anon_sym_number] = ACTIONS(1602), + [anon_sym_boolean] = ACTIONS(1602), + [anon_sym_string] = ACTIONS(1602), + [anon_sym_symbol] = ACTIONS(1602), + [anon_sym_object] = ACTIONS(1602), [sym_html_comment] = ACTIONS(5), }, [787] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2385), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2674), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(787), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, [788] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2382), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(788), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1488), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, [789] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2175), - [sym_expression] = STATE(2656), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7205), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2175), - [sym_subscript_expression] = STATE(2175), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7209), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2527), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(789), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2175), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1736), - [anon_sym_export] = ACTIONS(1518), - [anon_sym_type] = ACTIONS(1518), - [anon_sym_namespace] = ACTIONS(1520), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1526), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1518), - [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1528), - [anon_sym_yield] = ACTIONS(1530), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1534), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_using] = ACTIONS(1538), - [anon_sym_PLUS] = ACTIONS(1526), - [anon_sym_DASH] = ACTIONS(1526), - [anon_sym_SLASH] = ACTIONS(1195), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1526), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1544), - [anon_sym_DASH_DASH] = ACTIONS(1544), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1550), + [sym_private_property_identifier] = ACTIONS(1488), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1742), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1518), - [anon_sym_readonly] = ACTIONS(1518), - [anon_sym_get] = ACTIONS(1518), - [anon_sym_set] = ACTIONS(1518), - [anon_sym_declare] = ACTIONS(1518), - [anon_sym_public] = ACTIONS(1518), - [anon_sym_private] = ACTIONS(1518), - [anon_sym_protected] = ACTIONS(1518), - [anon_sym_override] = ACTIONS(1518), - [anon_sym_module] = ACTIONS(1518), - [anon_sym_any] = ACTIONS(1518), - [anon_sym_number] = ACTIONS(1518), - [anon_sym_boolean] = ACTIONS(1518), - [anon_sym_string] = ACTIONS(1518), - [anon_sym_symbol] = ACTIONS(1518), - [anon_sym_object] = ACTIONS(1518), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, [790] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2048), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2109), - [sym_subscript_expression] = STATE(2109), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(4631), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2013), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7163), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2013), + [sym_subscript_expression] = STATE(2013), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3771), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(790), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2109), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2629), - [anon_sym_export] = ACTIONS(2631), - [anon_sym_type] = ACTIONS(2631), - [anon_sym_namespace] = ACTIONS(2633), - [anon_sym_LBRACE] = ACTIONS(1063), - [anon_sym_typeof] = ACTIONS(174), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2013), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1724), + [anon_sym_export] = ACTIONS(1646), + [anon_sym_type] = ACTIONS(1646), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1001), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2631), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1948), + [anon_sym_let] = ACTIONS(1646), + [anon_sym_BANG] = ACTIONS(1001), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1003), + [anon_sym_yield] = ACTIONS(1005), + [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2635), + [anon_sym_async] = ACTIONS(1652), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2637), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1730), + [anon_sym_using] = ACTIONS(1015), + [anon_sym_PLUS] = ACTIONS(1001), + [anon_sym_DASH] = ACTIONS(1001), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [anon_sym_TILDE] = ACTIONS(1001), + [anon_sym_void] = ACTIONS(1001), + [anon_sym_delete] = ACTIONS(1001), + [anon_sym_PLUS_PLUS] = ACTIONS(1025), + [anon_sym_DASH_DASH] = ACTIONS(1025), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(2651), + [sym_private_property_identifier] = ACTIONS(1027), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2639), + [sym_undefined] = ACTIONS(1732), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2631), - [anon_sym_readonly] = ACTIONS(2631), - [anon_sym_get] = ACTIONS(2631), - [anon_sym_set] = ACTIONS(2631), - [anon_sym_declare] = ACTIONS(2631), - [anon_sym_public] = ACTIONS(2631), - [anon_sym_private] = ACTIONS(2631), - [anon_sym_protected] = ACTIONS(2631), - [anon_sym_override] = ACTIONS(2631), - [anon_sym_module] = ACTIONS(2631), - [anon_sym_any] = ACTIONS(2631), - [anon_sym_number] = ACTIONS(2631), - [anon_sym_boolean] = ACTIONS(2631), - [anon_sym_string] = ACTIONS(2631), - [anon_sym_symbol] = ACTIONS(2631), - [anon_sym_object] = ACTIONS(2631), + [anon_sym_static] = ACTIONS(1646), + [anon_sym_readonly] = ACTIONS(1646), + [anon_sym_get] = ACTIONS(1646), + [anon_sym_set] = ACTIONS(1646), + [anon_sym_declare] = ACTIONS(1646), + [anon_sym_public] = ACTIONS(1646), + [anon_sym_private] = ACTIONS(1646), + [anon_sym_protected] = ACTIONS(1646), + [anon_sym_override] = ACTIONS(1646), + [anon_sym_module] = ACTIONS(1646), + [anon_sym_any] = ACTIONS(1646), + [anon_sym_number] = ACTIONS(1646), + [anon_sym_boolean] = ACTIONS(1646), + [anon_sym_string] = ACTIONS(1646), + [anon_sym_symbol] = ACTIONS(1646), + [anon_sym_object] = ACTIONS(1646), [sym_html_comment] = ACTIONS(5), }, [791] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2965), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3205), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(791), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, [792] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2961), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2461), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(792), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1488), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, [793] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2955), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(793), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), - [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), - [sym_html_comment] = ACTIONS(5), - }, - [794] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2785), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), - [sym_comment] = STATE(794), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), + [anon_sym_let] = ACTIONS(1406), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -127200,10 +126786,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -127225,1319 +126811,1425 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), + [sym_html_comment] = ACTIONS(5), + }, + [794] = { + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2617), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), + [sym_comment] = STATE(794), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), + [anon_sym_LBRACE] = ACTIONS(1127), + [anon_sym_typeof] = ACTIONS(1370), + [anon_sym_import] = ACTIONS(128), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_class] = ACTIONS(147), + [anon_sym_async] = ACTIONS(1378), + [anon_sym_function] = ACTIONS(151), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), + [anon_sym_LT] = ACTIONS(172), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(2565), + [sym_private_property_identifier] = ACTIONS(1394), + [sym_this] = ACTIONS(189), + [sym_super] = ACTIONS(189), + [sym_true] = ACTIONS(189), + [sym_false] = ACTIONS(189), + [sym_null] = ACTIONS(189), + [sym_undefined] = ACTIONS(1756), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, [795] = { - [sym_import] = STATE(4369), - [sym_parenthesized_expression] = STATE(2177), - [sym_expression] = STATE(2671), - [sym_primary_expression] = STATE(2990), - [sym_yield_expression] = STATE(3139), - [sym_object] = STATE(3113), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(3113), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(3139), - [sym_glimmer_opening_tag] = STATE(5702), - [sym_jsx_element] = STATE(3139), - [sym_jsx_opening_element] = STATE(4008), - [sym_jsx_self_closing_element] = STATE(3139), - [sym_class] = STATE(3113), - [sym_function_expression] = STATE(3113), - [sym_generator_function] = STATE(3113), - [sym_arrow_function] = STATE(3113), - [sym__call_signature] = STATE(7486), - [sym_call_expression] = STATE(3113), - [sym_new_expression] = STATE(3139), - [sym_await_expression] = STATE(3139), - [sym_member_expression] = STATE(2177), - [sym_subscript_expression] = STATE(2177), - [sym_assignment_expression] = STATE(3139), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(3139), - [sym__destructuring_pattern] = STATE(7484), - [sym_ternary_expression] = STATE(3139), - [sym_binary_expression] = STATE(3139), - [sym_unary_expression] = STATE(3139), - [sym_update_expression] = STATE(3139), - [sym_string] = STATE(3113), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2528), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(795), - [sym_template_string] = STATE(3113), - [sym_regex] = STATE(3113), - [sym_meta_property] = STATE(3113), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2177), - [sym_as_expression] = STATE(3139), - [sym_satisfies_expression] = STATE(3139), - [sym_instantiation_expression] = STATE(3139), - [sym_internal_module] = STATE(3139), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5555), - [sym_identifier] = ACTIONS(1744), - [anon_sym_export] = ACTIONS(1596), - [anon_sym_type] = ACTIONS(1596), - [anon_sym_namespace] = ACTIONS(1598), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1596), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1602), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1488), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1596), - [anon_sym_readonly] = ACTIONS(1596), - [anon_sym_get] = ACTIONS(1596), - [anon_sym_set] = ACTIONS(1596), - [anon_sym_declare] = ACTIONS(1596), - [anon_sym_public] = ACTIONS(1596), - [anon_sym_private] = ACTIONS(1596), - [anon_sym_protected] = ACTIONS(1596), - [anon_sym_override] = ACTIONS(1596), - [anon_sym_module] = ACTIONS(1596), - [anon_sym_any] = ACTIONS(1596), - [anon_sym_number] = ACTIONS(1596), - [anon_sym_boolean] = ACTIONS(1596), - [anon_sym_string] = ACTIONS(1596), - [anon_sym_symbol] = ACTIONS(1596), - [anon_sym_object] = ACTIONS(1596), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, [796] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2937), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(2953), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7319), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3721), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7378), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(796), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2087), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1782), + [anon_sym_export] = ACTIONS(1498), + [anon_sym_type] = ACTIONS(1498), + [anon_sym_namespace] = ACTIONS(1500), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(1498), + [anon_sym_BANG] = ACTIONS(1506), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1508), + [anon_sym_yield] = ACTIONS(1510), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1512), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1786), + [anon_sym_using] = ACTIONS(1516), + [anon_sym_PLUS] = ACTIONS(1506), + [anon_sym_DASH] = ACTIONS(1506), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1506), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1522), + [anon_sym_DASH_DASH] = ACTIONS(1522), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(1524), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1788), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1498), + [anon_sym_readonly] = ACTIONS(1498), + [anon_sym_get] = ACTIONS(1498), + [anon_sym_set] = ACTIONS(1498), + [anon_sym_declare] = ACTIONS(1498), + [anon_sym_public] = ACTIONS(1498), + [anon_sym_private] = ACTIONS(1498), + [anon_sym_protected] = ACTIONS(1498), + [anon_sym_override] = ACTIONS(1498), + [anon_sym_module] = ACTIONS(1498), + [anon_sym_any] = ACTIONS(1498), + [anon_sym_number] = ACTIONS(1498), + [anon_sym_boolean] = ACTIONS(1498), + [anon_sym_string] = ACTIONS(1498), + [anon_sym_symbol] = ACTIONS(1498), + [anon_sym_object] = ACTIONS(1498), [sym_html_comment] = ACTIONS(5), }, [797] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2285), - [sym_expression] = STATE(3359), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7260), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2285), - [sym_subscript_expression] = STATE(2285), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7616), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2112), + [sym_expression] = STATE(3009), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7145), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2112), + [sym_subscript_expression] = STATE(2112), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3782), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7154), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(797), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2285), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(2641), - [anon_sym_export] = ACTIONS(2643), - [anon_sym_type] = ACTIONS(2643), - [anon_sym_namespace] = ACTIONS(2645), - [anon_sym_LBRACE] = ACTIONS(1101), - [anon_sym_typeof] = ACTIONS(174), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2112), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1774), + [anon_sym_export] = ACTIONS(1534), + [anon_sym_type] = ACTIONS(1534), + [anon_sym_namespace] = ACTIONS(1536), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(2643), - [anon_sym_BANG] = ACTIONS(174), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(137), - [anon_sym_yield] = ACTIONS(139), - [anon_sym_LBRACK] = ACTIONS(1105), + [anon_sym_let] = ACTIONS(1534), + [anon_sym_BANG] = ACTIONS(1540), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1542), + [anon_sym_yield] = ACTIONS(1544), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(2647), + [anon_sym_async] = ACTIONS(1546), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(2649), - [anon_sym_using] = ACTIONS(157), - [anon_sym_PLUS] = ACTIONS(174), - [anon_sym_DASH] = ACTIONS(174), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1778), + [anon_sym_using] = ACTIONS(1550), + [anon_sym_PLUS] = ACTIONS(1540), + [anon_sym_DASH] = ACTIONS(1540), + [anon_sym_SLASH] = ACTIONS(1290), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(174), - [anon_sym_void] = ACTIONS(174), - [anon_sym_delete] = ACTIONS(174), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1540), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1556), + [anon_sym_DASH_DASH] = ACTIONS(1556), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(185), + [sym_private_property_identifier] = ACTIONS(1558), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(2651), + [sym_undefined] = ACTIONS(1780), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2643), - [anon_sym_readonly] = ACTIONS(2643), - [anon_sym_get] = ACTIONS(2643), - [anon_sym_set] = ACTIONS(2643), - [anon_sym_declare] = ACTIONS(2643), - [anon_sym_public] = ACTIONS(2643), - [anon_sym_private] = ACTIONS(2643), - [anon_sym_protected] = ACTIONS(2643), - [anon_sym_override] = ACTIONS(2643), - [anon_sym_module] = ACTIONS(2643), - [anon_sym_any] = ACTIONS(2643), - [anon_sym_number] = ACTIONS(2643), - [anon_sym_boolean] = ACTIONS(2643), - [anon_sym_string] = ACTIONS(2643), - [anon_sym_symbol] = ACTIONS(2643), - [anon_sym_object] = ACTIONS(2643), + [anon_sym_static] = ACTIONS(1534), + [anon_sym_readonly] = ACTIONS(1534), + [anon_sym_get] = ACTIONS(1534), + [anon_sym_set] = ACTIONS(1534), + [anon_sym_declare] = ACTIONS(1534), + [anon_sym_public] = ACTIONS(1534), + [anon_sym_private] = ACTIONS(1534), + [anon_sym_protected] = ACTIONS(1534), + [anon_sym_override] = ACTIONS(1534), + [anon_sym_module] = ACTIONS(1534), + [anon_sym_any] = ACTIONS(1534), + [anon_sym_number] = ACTIONS(1534), + [anon_sym_boolean] = ACTIONS(1534), + [anon_sym_string] = ACTIONS(1534), + [anon_sym_symbol] = ACTIONS(1534), + [anon_sym_object] = ACTIONS(1534), [sym_html_comment] = ACTIONS(5), }, [798] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2933), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7152), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3770), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7147), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(798), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1742), + [anon_sym_export] = ACTIONS(1464), + [anon_sym_type] = ACTIONS(1464), + [anon_sym_namespace] = ACTIONS(1466), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(1470), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1464), + [anon_sym_BANG] = ACTIONS(1470), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1472), + [anon_sym_yield] = ACTIONS(1474), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1476), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1746), + [anon_sym_using] = ACTIONS(1480), + [anon_sym_PLUS] = ACTIONS(1470), + [anon_sym_DASH] = ACTIONS(1470), + [anon_sym_SLASH] = ACTIONS(1193), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1470), + [anon_sym_void] = ACTIONS(1470), + [anon_sym_delete] = ACTIONS(1470), + [anon_sym_PLUS_PLUS] = ACTIONS(1486), + [anon_sym_DASH_DASH] = ACTIONS(1486), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1488), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1748), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1464), + [anon_sym_readonly] = ACTIONS(1464), + [anon_sym_get] = ACTIONS(1464), + [anon_sym_set] = ACTIONS(1464), + [anon_sym_declare] = ACTIONS(1464), + [anon_sym_public] = ACTIONS(1464), + [anon_sym_private] = ACTIONS(1464), + [anon_sym_protected] = ACTIONS(1464), + [anon_sym_override] = ACTIONS(1464), + [anon_sym_module] = ACTIONS(1464), + [anon_sym_any] = ACTIONS(1464), + [anon_sym_number] = ACTIONS(1464), + [anon_sym_boolean] = ACTIONS(1464), + [anon_sym_string] = ACTIONS(1464), + [anon_sym_symbol] = ACTIONS(1464), + [anon_sym_object] = ACTIONS(1464), [sym_html_comment] = ACTIONS(5), }, [799] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2502), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2668), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(799), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, [800] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2927), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2672), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(800), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, [801] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2923), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2673), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(801), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, [802] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2921), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3209), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(802), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [anon_sym_BQUOTE] = ACTIONS(1117), + [sym_number] = ACTIONS(2651), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, [803] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2151), - [sym_expression] = STATE(2496), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7643), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2151), - [sym_subscript_expression] = STATE(2151), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3918), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7259), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2608), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(803), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2151), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1724), - [anon_sym_export] = ACTIONS(1452), - [anon_sym_type] = ACTIONS(1452), - [anon_sym_namespace] = ACTIONS(1454), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(968), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1452), - [anon_sym_BANG] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(970), - [anon_sym_yield] = ACTIONS(972), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1462), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1730), - [anon_sym_using] = ACTIONS(982), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(968), - [anon_sym_void] = ACTIONS(968), - [anon_sym_delete] = ACTIONS(968), - [anon_sym_PLUS_PLUS] = ACTIONS(992), - [anon_sym_DASH_DASH] = ACTIONS(992), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1732), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1452), - [anon_sym_readonly] = ACTIONS(1452), - [anon_sym_get] = ACTIONS(1452), - [anon_sym_set] = ACTIONS(1452), - [anon_sym_declare] = ACTIONS(1452), - [anon_sym_public] = ACTIONS(1452), - [anon_sym_private] = ACTIONS(1452), - [anon_sym_protected] = ACTIONS(1452), - [anon_sym_override] = ACTIONS(1452), - [anon_sym_module] = ACTIONS(1452), - [anon_sym_any] = ACTIONS(1452), - [anon_sym_number] = ACTIONS(1452), - [anon_sym_boolean] = ACTIONS(1452), - [anon_sym_string] = ACTIONS(1452), - [anon_sym_symbol] = ACTIONS(1452), - [anon_sym_object] = ACTIONS(1452), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, [804] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2920), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2609), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7106), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3702), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7131), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(804), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1750), + [anon_sym_export] = ACTIONS(1362), + [anon_sym_type] = ACTIONS(1362), + [anon_sym_namespace] = ACTIONS(1364), [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [anon_sym_typeof] = ACTIONS(1370), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), + [anon_sym_let] = ACTIONS(1362), + [anon_sym_BANG] = ACTIONS(1370), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(1372), + [anon_sym_yield] = ACTIONS(1374), [anon_sym_LBRACK] = ACTIONS(1129), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1378), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1754), + [anon_sym_using] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1370), + [anon_sym_DASH] = ACTIONS(1370), + [anon_sym_SLASH] = ACTIONS(1270), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(1370), + [anon_sym_void] = ACTIONS(1370), + [anon_sym_delete] = ACTIONS(1370), + [anon_sym_PLUS_PLUS] = ACTIONS(1388), + [anon_sym_DASH_DASH] = ACTIONS(1388), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(1394), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1756), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1362), + [anon_sym_readonly] = ACTIONS(1362), + [anon_sym_get] = ACTIONS(1362), + [anon_sym_set] = ACTIONS(1362), + [anon_sym_declare] = ACTIONS(1362), + [anon_sym_public] = ACTIONS(1362), + [anon_sym_private] = ACTIONS(1362), + [anon_sym_protected] = ACTIONS(1362), + [anon_sym_override] = ACTIONS(1362), + [anon_sym_module] = ACTIONS(1362), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), + [anon_sym_object] = ACTIONS(1362), [sym_html_comment] = ACTIONS(5), }, [805] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2920), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4290), + [sym_parenthesized_expression] = STATE(2026), + [sym_expression] = STATE(2477), + [sym_primary_expression] = STATE(2881), + [sym_yield_expression] = STATE(2982), + [sym_object] = STATE(2940), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2940), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2982), + [sym_glimmer_opening_tag] = STATE(5508), + [sym_jsx_element] = STATE(2982), + [sym_jsx_opening_element] = STATE(3884), + [sym_jsx_self_closing_element] = STATE(2982), + [sym_class] = STATE(2940), + [sym_function_expression] = STATE(2940), + [sym_generator_function] = STATE(2940), + [sym_arrow_function] = STATE(2940), + [sym__call_signature] = STATE(7370), + [sym_call_expression] = STATE(2940), + [sym_new_expression] = STATE(2982), + [sym_await_expression] = STATE(2982), + [sym_member_expression] = STATE(2026), + [sym_subscript_expression] = STATE(2026), + [sym_assignment_expression] = STATE(2982), + [sym__augmented_assignment_lhs] = STATE(3712), + [sym_augmented_assignment_expression] = STATE(2982), + [sym__destructuring_pattern] = STATE(7359), + [sym_ternary_expression] = STATE(2982), + [sym_binary_expression] = STATE(2982), + [sym_unary_expression] = STATE(2982), + [sym_update_expression] = STATE(2982), + [sym_string] = STATE(2940), [sym_comment] = STATE(805), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [sym_template_string] = STATE(2940), + [sym_regex] = STATE(2940), + [sym_meta_property] = STATE(2940), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(2026), + [sym_as_expression] = STATE(2982), + [sym_satisfies_expression] = STATE(2982), + [sym_instantiation_expression] = STATE(2982), + [sym_internal_module] = STATE(2982), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5470), + [sym_identifier] = ACTIONS(1736), + [anon_sym_export] = ACTIONS(1406), + [anon_sym_type] = ACTIONS(1406), + [anon_sym_namespace] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1406), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), - [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), - [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), - [sym_number] = ACTIONS(2531), - [sym_private_property_identifier] = ACTIONS(1508), - [sym_this] = ACTIONS(189), - [sym_super] = ACTIONS(189), - [sym_true] = ACTIONS(189), - [sym_false] = ACTIONS(189), - [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(973), + [anon_sym_async] = ACTIONS(1418), + [anon_sym_function] = ACTIONS(977), + [anon_sym_new] = ACTIONS(1740), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1406), + [anon_sym_readonly] = ACTIONS(1406), + [anon_sym_get] = ACTIONS(1406), + [anon_sym_set] = ACTIONS(1406), + [anon_sym_declare] = ACTIONS(1406), + [anon_sym_public] = ACTIONS(1406), + [anon_sym_private] = ACTIONS(1406), + [anon_sym_protected] = ACTIONS(1406), + [anon_sym_override] = ACTIONS(1406), + [anon_sym_module] = ACTIONS(1406), + [anon_sym_any] = ACTIONS(1406), + [anon_sym_number] = ACTIONS(1406), + [anon_sym_boolean] = ACTIONS(1406), + [anon_sym_string] = ACTIONS(1406), + [anon_sym_symbol] = ACTIONS(1406), + [anon_sym_object] = ACTIONS(1406), [sym_html_comment] = ACTIONS(5), }, [806] = { - [sym_import] = STATE(4259), - [sym_parenthesized_expression] = STATE(2229), - [sym_expression] = STATE(2930), - [sym_primary_expression] = STATE(2469), - [sym_yield_expression] = STATE(2537), - [sym_object] = STATE(2723), - [sym_object_pattern] = STATE(4283), - [sym_array] = STATE(2723), - [sym_array_pattern] = STATE(4283), - [sym_glimmer_template] = STATE(2537), - [sym_glimmer_opening_tag] = STATE(5668), - [sym_jsx_element] = STATE(2537), - [sym_jsx_opening_element] = STATE(4048), - [sym_jsx_self_closing_element] = STATE(2537), - [sym_class] = STATE(2723), - [sym_function_expression] = STATE(2723), - [sym_generator_function] = STATE(2723), - [sym_arrow_function] = STATE(2723), - [sym__call_signature] = STATE(7175), - [sym_call_expression] = STATE(2723), - [sym_new_expression] = STATE(2537), - [sym_await_expression] = STATE(2537), - [sym_member_expression] = STATE(2229), - [sym_subscript_expression] = STATE(2229), - [sym_assignment_expression] = STATE(2537), - [sym__augmented_assignment_lhs] = STATE(3935), - [sym_augmented_assignment_expression] = STATE(2537), - [sym__destructuring_pattern] = STATE(7438), - [sym_ternary_expression] = STATE(2537), - [sym_binary_expression] = STATE(2537), - [sym_unary_expression] = STATE(2537), - [sym_update_expression] = STATE(2537), - [sym_string] = STATE(2723), + [sym_import] = STATE(4207), + [sym_parenthesized_expression] = STATE(1900), + [sym_expression] = STATE(3210), + [sym_primary_expression] = STATE(2235), + [sym_yield_expression] = STATE(2568), + [sym_object] = STATE(2547), + [sym_object_pattern] = STATE(4288), + [sym_array] = STATE(2547), + [sym_array_pattern] = STATE(4288), + [sym_glimmer_template] = STATE(2568), + [sym_glimmer_opening_tag] = STATE(5599), + [sym_jsx_element] = STATE(2568), + [sym_jsx_opening_element] = STATE(3849), + [sym_jsx_self_closing_element] = STATE(2568), + [sym_class] = STATE(2547), + [sym_function_expression] = STATE(2547), + [sym_generator_function] = STATE(2547), + [sym_arrow_function] = STATE(2547), + [sym__call_signature] = STATE(7074), + [sym_call_expression] = STATE(2547), + [sym_new_expression] = STATE(2568), + [sym_await_expression] = STATE(2568), + [sym_member_expression] = STATE(1900), + [sym_subscript_expression] = STATE(1900), + [sym_assignment_expression] = STATE(2568), + [sym__augmented_assignment_lhs] = STATE(3711), + [sym_augmented_assignment_expression] = STATE(2568), + [sym__destructuring_pattern] = STATE(7166), + [sym_ternary_expression] = STATE(2568), + [sym_binary_expression] = STATE(2568), + [sym_unary_expression] = STATE(2568), + [sym_update_expression] = STATE(2568), + [sym_string] = STATE(2547), [sym_comment] = STATE(806), - [sym_template_string] = STATE(2723), - [sym_regex] = STATE(2723), - [sym_meta_property] = STATE(2723), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4790), - [sym_non_null_expression] = STATE(2229), - [sym_as_expression] = STATE(2537), - [sym_satisfies_expression] = STATE(2537), - [sym_instantiation_expression] = STATE(2537), - [sym_internal_module] = STATE(2537), - [sym_type_parameters] = STATE(6683), - [aux_sym_export_statement_repeat1] = STATE(5694), - [sym_identifier] = ACTIONS(1766), - [anon_sym_export] = ACTIONS(1482), - [anon_sym_type] = ACTIONS(1482), - [anon_sym_namespace] = ACTIONS(1484), - [anon_sym_LBRACE] = ACTIONS(1127), - [anon_sym_typeof] = ACTIONS(1490), + [sym_template_string] = STATE(2547), + [sym_regex] = STATE(2547), + [sym_meta_property] = STATE(2547), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4683), + [sym_non_null_expression] = STATE(1900), + [sym_as_expression] = STATE(2568), + [sym_satisfies_expression] = STATE(2568), + [sym_instantiation_expression] = STATE(2568), + [sym_internal_module] = STATE(2568), + [sym_type_parameters] = STATE(6493), + [aux_sym_export_statement_repeat1] = STATE(5557), + [sym_identifier] = ACTIONS(1095), + [anon_sym_export] = ACTIONS(1097), + [anon_sym_type] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1101), + [anon_sym_LBRACE] = ACTIONS(1103), + [anon_sym_typeof] = ACTIONS(174), [anon_sym_import] = ACTIONS(128), - [anon_sym_let] = ACTIONS(1482), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1103), - [anon_sym_await] = ACTIONS(1492), - [anon_sym_yield] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1097), + [anon_sym_BANG] = ACTIONS(174), + [anon_sym_LPAREN] = ACTIONS(1107), + [anon_sym_await] = ACTIONS(137), + [anon_sym_yield] = ACTIONS(139), + [anon_sym_LBRACK] = ACTIONS(1109), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), [anon_sym_class] = ACTIONS(147), - [anon_sym_async] = ACTIONS(1496), + [anon_sym_async] = ACTIONS(1113), [anon_sym_function] = ACTIONS(151), - [anon_sym_new] = ACTIONS(1770), - [anon_sym_using] = ACTIONS(1500), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_SLASH] = ACTIONS(988), + [anon_sym_new] = ACTIONS(1115), + [anon_sym_using] = ACTIONS(157), + [anon_sym_PLUS] = ACTIONS(174), + [anon_sym_DASH] = ACTIONS(174), + [anon_sym_SLASH] = ACTIONS(1021), [anon_sym_LT] = ACTIONS(172), - [anon_sym_TILDE] = ACTIONS(1490), - [anon_sym_void] = ACTIONS(1490), - [anon_sym_delete] = ACTIONS(1490), - [anon_sym_PLUS_PLUS] = ACTIONS(1506), - [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_TILDE] = ACTIONS(174), + [anon_sym_void] = ACTIONS(174), + [anon_sym_delete] = ACTIONS(174), + [anon_sym_PLUS_PLUS] = ACTIONS(983), + [anon_sym_DASH_DASH] = ACTIONS(983), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1113), + [anon_sym_BQUOTE] = ACTIONS(1117), [sym_number] = ACTIONS(189), - [sym_private_property_identifier] = ACTIONS(1508), + [sym_private_property_identifier] = ACTIONS(185), [sym_this] = ACTIONS(189), [sym_super] = ACTIONS(189), [sym_true] = ACTIONS(189), [sym_false] = ACTIONS(189), [sym_null] = ACTIONS(189), - [sym_undefined] = ACTIONS(1772), + [sym_undefined] = ACTIONS(1119), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1482), - [anon_sym_readonly] = ACTIONS(1482), - [anon_sym_get] = ACTIONS(1482), - [anon_sym_set] = ACTIONS(1482), - [anon_sym_declare] = ACTIONS(1482), - [anon_sym_public] = ACTIONS(1482), - [anon_sym_private] = ACTIONS(1482), - [anon_sym_protected] = ACTIONS(1482), - [anon_sym_override] = ACTIONS(1482), - [anon_sym_module] = ACTIONS(1482), - [anon_sym_any] = ACTIONS(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_object] = ACTIONS(1482), + [anon_sym_static] = ACTIONS(1097), + [anon_sym_readonly] = ACTIONS(1097), + [anon_sym_get] = ACTIONS(1097), + [anon_sym_set] = ACTIONS(1097), + [anon_sym_declare] = ACTIONS(1097), + [anon_sym_public] = ACTIONS(1097), + [anon_sym_private] = ACTIONS(1097), + [anon_sym_protected] = ACTIONS(1097), + [anon_sym_override] = ACTIONS(1097), + [anon_sym_module] = ACTIONS(1097), + [anon_sym_any] = ACTIONS(1097), + [anon_sym_number] = ACTIONS(1097), + [anon_sym_boolean] = ACTIONS(1097), + [anon_sym_string] = ACTIONS(1097), + [anon_sym_symbol] = ACTIONS(1097), + [anon_sym_object] = ACTIONS(1097), [sym_html_comment] = ACTIONS(5), }, [807] = { - [sym_namespace_export] = STATE(6737), - [sym_export_clause] = STATE(5663), - [sym_declaration] = STATE(1574), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_class_declaration] = STATE(1573), - [sym_function_declaration] = STATE(1573), - [sym_generator_function_declaration] = STATE(1573), + [sym_namespace_export] = STATE(6533), + [sym_export_clause] = STATE(5430), + [sym_declaration] = STATE(1561), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_class_declaration] = STATE(1558), + [sym_function_declaration] = STATE(1558), + [sym_generator_function_declaration] = STATE(1558), [sym_comment] = STATE(807), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(1573), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(1575), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [aux_sym_export_statement_repeat1] = STATE(5414), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(1558), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(1557), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [aux_sym_export_statement_repeat1] = STATE(5398), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), [anon_sym_STAR] = ACTIONS(2653), [anon_sym_default] = ACTIONS(2655), [anon_sym_type] = ACTIONS(2657), @@ -128606,7 +128298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2696), [anon_sym_BQUOTE] = ACTIONS(211), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_declare] = ACTIONS(2700), [anon_sym_module] = ACTIONS(2702), [anon_sym_abstract] = ACTIONS(2704), @@ -128618,28 +128310,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [808] = { - [sym_namespace_export] = STATE(6737), - [sym_export_clause] = STATE(5663), - [sym_declaration] = STATE(1574), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_class_declaration] = STATE(1573), - [sym_function_declaration] = STATE(1573), - [sym_generator_function_declaration] = STATE(1573), + [sym_namespace_export] = STATE(6533), + [sym_export_clause] = STATE(5430), + [sym_declaration] = STATE(1561), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_class_declaration] = STATE(1558), + [sym_function_declaration] = STATE(1558), + [sym_generator_function_declaration] = STATE(1558), [sym_comment] = STATE(808), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(1573), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(1575), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [aux_sym_export_statement_repeat1] = STATE(5414), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(1558), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(1557), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [aux_sym_export_statement_repeat1] = STATE(5398), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), [anon_sym_STAR] = ACTIONS(2653), [anon_sym_default] = ACTIONS(2655), [anon_sym_type] = ACTIONS(2657), @@ -128708,7 +128400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2696), [anon_sym_BQUOTE] = ACTIONS(211), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_declare] = ACTIONS(2700), [anon_sym_module] = ACTIONS(2702), [anon_sym_abstract] = ACTIONS(2704), @@ -128720,28 +128412,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [809] = { - [sym_namespace_export] = STATE(6737), - [sym_export_clause] = STATE(5663), - [sym_declaration] = STATE(1574), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_class_declaration] = STATE(1573), - [sym_function_declaration] = STATE(1573), - [sym_generator_function_declaration] = STATE(1573), + [sym_namespace_export] = STATE(6533), + [sym_export_clause] = STATE(5430), + [sym_declaration] = STATE(1561), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_class_declaration] = STATE(1558), + [sym_function_declaration] = STATE(1558), + [sym_generator_function_declaration] = STATE(1558), [sym_comment] = STATE(809), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(1573), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(1575), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [aux_sym_export_statement_repeat1] = STATE(5414), - [aux_sym_object_repeat1] = STATE(6165), - [aux_sym_object_pattern_repeat1] = STATE(6171), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(1558), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(1557), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [aux_sym_export_statement_repeat1] = STATE(5398), + [aux_sym_object_repeat1] = STATE(5868), + [aux_sym_object_pattern_repeat1] = STATE(5869), [anon_sym_STAR] = ACTIONS(2653), [anon_sym_default] = ACTIONS(2655), [anon_sym_type] = ACTIONS(2657), @@ -128810,7 +128502,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2696), [anon_sym_BQUOTE] = ACTIONS(211), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_declare] = ACTIONS(2700), [anon_sym_module] = ACTIONS(2702), [anon_sym_abstract] = ACTIONS(2704), @@ -128822,30 +128514,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [810] = { - [sym__call_signature] = STATE(7204), - [sym_string] = STATE(4740), + [sym__call_signature] = STATE(7260), + [sym_string] = STATE(4582), [sym_comment] = STATE(810), - [sym_formal_parameters] = STATE(4790), - [sym__property_name] = STATE(4761), - [sym_computed_property_name] = STATE(4740), - [sym_type_parameters] = STATE(6683), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), + [sym_formal_parameters] = STATE(4683), + [sym__property_name] = STATE(4808), + [sym_computed_property_name] = STATE(4582), + [sym_type_parameters] = STATE(6493), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), [sym_identifier] = ACTIONS(2714), [anon_sym_export] = ACTIONS(2716), [anon_sym_STAR] = ACTIONS(2718), [anon_sym_type] = ACTIONS(2716), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2716), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(1043), [anon_sym_let] = ACTIONS(2716), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2721), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(968), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), @@ -128853,7 +128545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_async] = ACTIONS(2716), [anon_sym_function] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2716), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -128903,7 +128595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2716), [anon_sym_get] = ACTIONS(2736), [anon_sym_set] = ACTIONS(2736), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_declare] = ACTIONS(2716), [anon_sym_public] = ACTIONS(2716), [anon_sym_private] = ACTIONS(2716), @@ -128922,30 +128614,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [811] = { - [sym__call_signature] = STATE(7204), - [sym_string] = STATE(4740), + [sym__call_signature] = STATE(7260), + [sym_string] = STATE(4582), [sym_comment] = STATE(811), - [sym_formal_parameters] = STATE(4790), - [sym__property_name] = STATE(4761), - [sym_computed_property_name] = STATE(4740), - [sym_type_parameters] = STATE(6683), - [aux_sym_object_repeat1] = STATE(6165), - [aux_sym_object_pattern_repeat1] = STATE(6171), + [sym_formal_parameters] = STATE(4683), + [sym__property_name] = STATE(4808), + [sym_computed_property_name] = STATE(4582), + [sym_type_parameters] = STATE(6493), + [aux_sym_object_repeat1] = STATE(5868), + [aux_sym_object_pattern_repeat1] = STATE(5869), [sym_identifier] = ACTIONS(2714), [anon_sym_export] = ACTIONS(2716), [anon_sym_STAR] = ACTIONS(2718), [anon_sym_type] = ACTIONS(2716), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2716), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1041), [anon_sym_let] = ACTIONS(2716), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2721), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(968), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), @@ -128953,7 +128645,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_async] = ACTIONS(2716), [anon_sym_function] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2716), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -129003,7 +128695,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2716), [anon_sym_get] = ACTIONS(2736), [anon_sym_set] = ACTIONS(2736), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_declare] = ACTIONS(2716), [anon_sym_public] = ACTIONS(2716), [anon_sym_private] = ACTIONS(2716), @@ -129022,30 +128714,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [812] = { - [sym__call_signature] = STATE(7204), - [sym_string] = STATE(4740), + [sym__call_signature] = STATE(7260), + [sym_string] = STATE(4582), [sym_comment] = STATE(812), - [sym_formal_parameters] = STATE(4790), - [sym__property_name] = STATE(4761), - [sym_computed_property_name] = STATE(4740), - [sym_type_parameters] = STATE(6683), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), + [sym_formal_parameters] = STATE(4683), + [sym__property_name] = STATE(4808), + [sym_computed_property_name] = STATE(4582), + [sym_type_parameters] = STATE(6493), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), [sym_identifier] = ACTIONS(2714), [anon_sym_export] = ACTIONS(2716), [anon_sym_STAR] = ACTIONS(2718), [anon_sym_type] = ACTIONS(2716), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2716), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(966), [anon_sym_let] = ACTIONS(2716), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2721), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(968), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), @@ -129053,7 +128745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_async] = ACTIONS(2716), [anon_sym_function] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2716), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -129103,7 +128795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2716), [anon_sym_get] = ACTIONS(2736), [anon_sym_set] = ACTIONS(2736), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_declare] = ACTIONS(2716), [anon_sym_public] = ACTIONS(2716), [anon_sym_private] = ACTIONS(2716), @@ -129122,33 +128814,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [813] = { - [sym_declaration] = STATE(1588), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_class_declaration] = STATE(1573), - [sym_function_declaration] = STATE(1573), - [sym_generator_function_declaration] = STATE(1573), + [sym_declaration] = STATE(1514), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_class_declaration] = STATE(1558), + [sym_function_declaration] = STATE(1558), + [sym_generator_function_declaration] = STATE(1558), [sym_comment] = STATE(813), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(1573), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(1575), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [aux_sym_export_statement_repeat1] = STATE(5414), - [aux_sym_object_repeat1] = STATE(6165), - [aux_sym_object_pattern_repeat1] = STATE(6171), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(1558), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(1557), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [aux_sym_export_statement_repeat1] = STATE(5398), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2663), [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(2712), + [anon_sym_RBRACE] = ACTIONS(2667), [anon_sym_import] = ACTIONS(2669), [anon_sym_var] = ACTIONS(2671), [anon_sym_let] = ACTIONS(2673), @@ -129208,7 +128900,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2696), [anon_sym_BQUOTE] = ACTIONS(211), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_declare] = ACTIONS(2700), [anon_sym_module] = ACTIONS(2740), [anon_sym_abstract] = ACTIONS(2704), @@ -129221,33 +128913,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [814] = { - [sym_declaration] = STATE(1588), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_class_declaration] = STATE(1573), - [sym_function_declaration] = STATE(1573), - [sym_generator_function_declaration] = STATE(1573), + [sym_declaration] = STATE(1514), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_class_declaration] = STATE(1558), + [sym_function_declaration] = STATE(1558), + [sym_generator_function_declaration] = STATE(1558), [sym_comment] = STATE(814), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(1573), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(1575), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [aux_sym_export_statement_repeat1] = STATE(5414), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(1558), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(1557), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [aux_sym_export_statement_repeat1] = STATE(5398), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2663), [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(2667), + [anon_sym_RBRACE] = ACTIONS(2710), [anon_sym_import] = ACTIONS(2669), [anon_sym_var] = ACTIONS(2671), [anon_sym_let] = ACTIONS(2673), @@ -129307,7 +128999,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2696), [anon_sym_BQUOTE] = ACTIONS(211), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_declare] = ACTIONS(2700), [anon_sym_module] = ACTIONS(2740), [anon_sym_abstract] = ACTIONS(2704), @@ -129320,33 +129012,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [815] = { - [sym_declaration] = STATE(1588), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_class_declaration] = STATE(1573), - [sym_function_declaration] = STATE(1573), - [sym_generator_function_declaration] = STATE(1573), + [sym_declaration] = STATE(1514), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_class_declaration] = STATE(1558), + [sym_function_declaration] = STATE(1558), + [sym_generator_function_declaration] = STATE(1558), [sym_comment] = STATE(815), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(1573), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(1575), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [aux_sym_export_statement_repeat1] = STATE(5414), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(1558), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(1557), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [aux_sym_export_statement_repeat1] = STATE(5398), + [aux_sym_object_repeat1] = STATE(5868), + [aux_sym_object_pattern_repeat1] = STATE(5869), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2663), [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_RBRACE] = ACTIONS(2712), [anon_sym_import] = ACTIONS(2669), [anon_sym_var] = ACTIONS(2671), [anon_sym_let] = ACTIONS(2673), @@ -129406,7 +129098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2696), [anon_sym_BQUOTE] = ACTIONS(211), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_declare] = ACTIONS(2700), [anon_sym_module] = ACTIONS(2740), [anon_sym_abstract] = ACTIONS(2704), @@ -129419,422 +129111,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [816] = { - [sym_namespace_export] = STATE(7088), - [sym_export_clause] = STATE(5730), - [sym_declaration] = STATE(1221), - [sym_variable_declaration] = STATE(1220), - [sym_lexical_declaration] = STATE(1220), - [sym_class_declaration] = STATE(1220), - [sym_function_declaration] = STATE(1220), - [sym_generator_function_declaration] = STATE(1220), + [sym_namespace_export] = STATE(6533), + [sym_export_clause] = STATE(5430), + [sym_declaration] = STATE(1561), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_class_declaration] = STATE(1558), + [sym_function_declaration] = STATE(1558), + [sym_generator_function_declaration] = STATE(1558), [sym_comment] = STATE(816), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(1220), - [sym_ambient_declaration] = STATE(1220), - [sym_abstract_class_declaration] = STATE(1220), - [sym_module] = STATE(1220), - [sym_internal_module] = STATE(1224), - [sym_import_alias] = STATE(1220), - [sym_interface_declaration] = STATE(1220), - [sym_enum_declaration] = STATE(1220), - [sym_type_alias_declaration] = STATE(1220), - [aux_sym_export_statement_repeat1] = STATE(5213), - [anon_sym_STAR] = ACTIONS(2744), - [anon_sym_default] = ACTIONS(2746), - [anon_sym_type] = ACTIONS(2748), - [anon_sym_EQ] = ACTIONS(2750), - [anon_sym_as] = ACTIONS(2752), - [anon_sym_namespace] = ACTIONS(2754), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_import] = ACTIONS(2756), - [anon_sym_var] = ACTIONS(2758), - [anon_sym_let] = ACTIONS(2760), - [anon_sym_const] = ACTIONS(2762), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_COLON] = ACTIONS(2764), - [anon_sym_LBRACK] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2766), - [anon_sym_async] = ACTIONS(2768), - [anon_sym_function] = ACTIONS(2770), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(211), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2772), - [anon_sym_module] = ACTIONS(2774), - [anon_sym_abstract] = ACTIONS(2776), - [anon_sym_satisfies] = ACTIONS(211), - [anon_sym_interface] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2780), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [817] = { - [sym_namespace_export] = STATE(6847), - [sym_export_clause] = STATE(5664), - [sym_declaration] = STATE(6913), - [sym_variable_declaration] = STATE(6895), - [sym_lexical_declaration] = STATE(6895), - [sym_class_declaration] = STATE(6895), - [sym_function_declaration] = STATE(6895), - [sym_generator_function_declaration] = STATE(6895), - [sym_comment] = STATE(817), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(6895), - [sym_ambient_declaration] = STATE(6895), - [sym_abstract_class_declaration] = STATE(6895), - [sym_module] = STATE(6895), - [sym_internal_module] = STATE(6915), - [sym_import_alias] = STATE(6895), - [sym_interface_declaration] = STATE(6895), - [sym_enum_declaration] = STATE(6895), - [sym_type_alias_declaration] = STATE(6895), - [aux_sym_export_statement_repeat1] = STATE(5327), - [anon_sym_STAR] = ACTIONS(2782), - [anon_sym_default] = ACTIONS(2784), - [anon_sym_type] = ACTIONS(2786), - [anon_sym_EQ] = ACTIONS(2788), - [anon_sym_as] = ACTIONS(2790), - [anon_sym_namespace] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_import] = ACTIONS(2794), - [anon_sym_var] = ACTIONS(2796), - [anon_sym_let] = ACTIONS(2798), - [anon_sym_const] = ACTIONS(2800), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_COLON] = ACTIONS(2802), - [anon_sym_LBRACK] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2804), - [anon_sym_async] = ACTIONS(2806), - [anon_sym_function] = ACTIONS(2808), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(211), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2810), - [anon_sym_module] = ACTIONS(2812), - [anon_sym_abstract] = ACTIONS(2814), - [anon_sym_satisfies] = ACTIONS(211), - [anon_sym_interface] = ACTIONS(2816), - [anon_sym_enum] = ACTIONS(2818), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [818] = { - [sym_namespace_export] = STATE(6871), - [sym_export_clause] = STATE(5682), - [sym_declaration] = STATE(1103), - [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(818), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(1105), - [sym_ambient_declaration] = STATE(1105), - [sym_abstract_class_declaration] = STATE(1105), - [sym_module] = STATE(1105), - [sym_internal_module] = STATE(1102), - [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(5341), - [anon_sym_STAR] = ACTIONS(2820), - [anon_sym_default] = ACTIONS(2822), - [anon_sym_type] = ACTIONS(2824), - [anon_sym_EQ] = ACTIONS(2826), - [anon_sym_as] = ACTIONS(2828), - [anon_sym_namespace] = ACTIONS(2830), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_import] = ACTIONS(2832), - [anon_sym_var] = ACTIONS(2834), - [anon_sym_let] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2838), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_COLON] = ACTIONS(2840), - [anon_sym_LBRACK] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2842), - [anon_sym_async] = ACTIONS(2844), - [anon_sym_function] = ACTIONS(2846), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(211), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2848), - [anon_sym_module] = ACTIONS(2850), - [anon_sym_abstract] = ACTIONS(2852), - [anon_sym_satisfies] = ACTIONS(211), - [anon_sym_interface] = ACTIONS(2854), - [anon_sym_enum] = ACTIONS(2856), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [819] = { - [sym_namespace_export] = STATE(7012), - [sym_export_clause] = STATE(5615), - [sym_declaration] = STATE(1380), - [sym_variable_declaration] = STATE(1382), - [sym_lexical_declaration] = STATE(1382), - [sym_class_declaration] = STATE(1382), - [sym_function_declaration] = STATE(1382), - [sym_generator_function_declaration] = STATE(1382), - [sym_comment] = STATE(819), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(1382), - [sym_ambient_declaration] = STATE(1382), - [sym_abstract_class_declaration] = STATE(1382), - [sym_module] = STATE(1382), - [sym_internal_module] = STATE(1379), - [sym_import_alias] = STATE(1382), - [sym_interface_declaration] = STATE(1382), - [sym_enum_declaration] = STATE(1382), - [sym_type_alias_declaration] = STATE(1382), - [aux_sym_export_statement_repeat1] = STATE(5403), - [anon_sym_STAR] = ACTIONS(2858), - [anon_sym_default] = ACTIONS(2860), - [anon_sym_type] = ACTIONS(2862), - [anon_sym_EQ] = ACTIONS(2864), - [anon_sym_as] = ACTIONS(2866), - [anon_sym_namespace] = ACTIONS(2868), - [anon_sym_LBRACE] = ACTIONS(2665), - [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_import] = ACTIONS(2870), - [anon_sym_var] = ACTIONS(2872), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_const] = ACTIONS(2876), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_COLON] = ACTIONS(2878), - [anon_sym_LBRACK] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2880), - [anon_sym_async] = ACTIONS(2882), - [anon_sym_function] = ACTIONS(2884), - [anon_sym_EQ_GT] = ACTIONS(2689), - [anon_sym_QMARK_DOT] = ACTIONS(211), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2886), - [anon_sym_module] = ACTIONS(2888), - [anon_sym_abstract] = ACTIONS(2890), - [anon_sym_satisfies] = ACTIONS(211), - [anon_sym_interface] = ACTIONS(2892), - [anon_sym_enum] = ACTIONS(2894), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [820] = { - [sym_namespace_export] = STATE(6737), - [sym_export_clause] = STATE(5663), - [sym_declaration] = STATE(1574), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_class_declaration] = STATE(1573), - [sym_function_declaration] = STATE(1573), - [sym_generator_function_declaration] = STATE(1573), - [sym_comment] = STATE(820), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(1573), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(1575), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [aux_sym_export_statement_repeat1] = STATE(5414), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(1558), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(1557), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [aux_sym_export_statement_repeat1] = STATE(5398), [anon_sym_STAR] = ACTIONS(2653), [anon_sym_default] = ACTIONS(2655), [anon_sym_type] = ACTIONS(2657), - [anon_sym_EQ] = ACTIONS(2896), + [anon_sym_EQ] = ACTIONS(2744), [anon_sym_as] = ACTIONS(2661), [anon_sym_namespace] = ACTIONS(2663), [anon_sym_LBRACE] = ACTIONS(2665), @@ -129847,7 +129147,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(211), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_COLON] = ACTIONS(2898), + [anon_sym_COLON] = ACTIONS(2746), [anon_sym_LBRACK] = ACTIONS(211), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(211), @@ -129908,36 +129208,428 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, + [817] = { + [sym_namespace_export] = STATE(6822), + [sym_export_clause] = STATE(5411), + [sym_declaration] = STATE(1347), + [sym_variable_declaration] = STATE(1327), + [sym_lexical_declaration] = STATE(1327), + [sym_class_declaration] = STATE(1327), + [sym_function_declaration] = STATE(1327), + [sym_generator_function_declaration] = STATE(1327), + [sym_comment] = STATE(817), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(1327), + [sym_ambient_declaration] = STATE(1327), + [sym_abstract_class_declaration] = STATE(1327), + [sym_module] = STATE(1327), + [sym_internal_module] = STATE(1348), + [sym_import_alias] = STATE(1327), + [sym_interface_declaration] = STATE(1327), + [sym_enum_declaration] = STATE(1327), + [sym_type_alias_declaration] = STATE(1327), + [aux_sym_export_statement_repeat1] = STATE(5102), + [anon_sym_STAR] = ACTIONS(2748), + [anon_sym_default] = ACTIONS(2750), + [anon_sym_type] = ACTIONS(2752), + [anon_sym_EQ] = ACTIONS(2754), + [anon_sym_as] = ACTIONS(2756), + [anon_sym_namespace] = ACTIONS(2758), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_COMMA] = ACTIONS(211), + [anon_sym_import] = ACTIONS(2760), + [anon_sym_var] = ACTIONS(2762), + [anon_sym_let] = ACTIONS(2764), + [anon_sym_const] = ACTIONS(2766), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_COLON] = ACTIONS(2768), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(211), + [anon_sym_class] = ACTIONS(2770), + [anon_sym_async] = ACTIONS(2772), + [anon_sym_function] = ACTIONS(2774), + [anon_sym_EQ_GT] = ACTIONS(2689), + [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_PLUS_EQ] = ACTIONS(2691), + [anon_sym_DASH_EQ] = ACTIONS(2691), + [anon_sym_STAR_EQ] = ACTIONS(2691), + [anon_sym_SLASH_EQ] = ACTIONS(2691), + [anon_sym_PERCENT_EQ] = ACTIONS(2691), + [anon_sym_CARET_EQ] = ACTIONS(2691), + [anon_sym_AMP_EQ] = ACTIONS(2691), + [anon_sym_PIPE_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_LT_LT_EQ] = ACTIONS(2691), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(211), + [aux_sym_comment_token1] = ACTIONS(2696), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(2698), + [anon_sym_declare] = ACTIONS(2776), + [anon_sym_module] = ACTIONS(2778), + [anon_sym_abstract] = ACTIONS(2780), + [anon_sym_satisfies] = ACTIONS(211), + [anon_sym_interface] = ACTIONS(2782), + [anon_sym_enum] = ACTIONS(2784), + [sym__automatic_semicolon] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(211), + [sym_html_comment] = ACTIONS(5), + }, + [818] = { + [sym_namespace_export] = STATE(6664), + [sym_export_clause] = STATE(5593), + [sym_declaration] = STATE(6379), + [sym_variable_declaration] = STATE(6360), + [sym_lexical_declaration] = STATE(6360), + [sym_class_declaration] = STATE(6360), + [sym_function_declaration] = STATE(6360), + [sym_generator_function_declaration] = STATE(6360), + [sym_comment] = STATE(818), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(6360), + [sym_ambient_declaration] = STATE(6360), + [sym_abstract_class_declaration] = STATE(6360), + [sym_module] = STATE(6360), + [sym_internal_module] = STATE(6385), + [sym_import_alias] = STATE(6360), + [sym_interface_declaration] = STATE(6360), + [sym_enum_declaration] = STATE(6360), + [sym_type_alias_declaration] = STATE(6360), + [aux_sym_export_statement_repeat1] = STATE(5201), + [anon_sym_STAR] = ACTIONS(2786), + [anon_sym_default] = ACTIONS(2788), + [anon_sym_type] = ACTIONS(2790), + [anon_sym_EQ] = ACTIONS(2792), + [anon_sym_as] = ACTIONS(2794), + [anon_sym_namespace] = ACTIONS(2796), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_COMMA] = ACTIONS(211), + [anon_sym_import] = ACTIONS(2798), + [anon_sym_var] = ACTIONS(2800), + [anon_sym_let] = ACTIONS(2802), + [anon_sym_const] = ACTIONS(2804), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_COLON] = ACTIONS(2806), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(211), + [anon_sym_class] = ACTIONS(2808), + [anon_sym_async] = ACTIONS(2810), + [anon_sym_function] = ACTIONS(2812), + [anon_sym_EQ_GT] = ACTIONS(2689), + [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_PLUS_EQ] = ACTIONS(2691), + [anon_sym_DASH_EQ] = ACTIONS(2691), + [anon_sym_STAR_EQ] = ACTIONS(2691), + [anon_sym_SLASH_EQ] = ACTIONS(2691), + [anon_sym_PERCENT_EQ] = ACTIONS(2691), + [anon_sym_CARET_EQ] = ACTIONS(2691), + [anon_sym_AMP_EQ] = ACTIONS(2691), + [anon_sym_PIPE_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_LT_LT_EQ] = ACTIONS(2691), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(211), + [aux_sym_comment_token1] = ACTIONS(2696), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(2698), + [anon_sym_declare] = ACTIONS(2814), + [anon_sym_module] = ACTIONS(2816), + [anon_sym_abstract] = ACTIONS(2818), + [anon_sym_satisfies] = ACTIONS(211), + [anon_sym_interface] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2822), + [sym__automatic_semicolon] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(211), + [sym_html_comment] = ACTIONS(5), + }, + [819] = { + [sym_namespace_export] = STATE(6753), + [sym_export_clause] = STATE(5457), + [sym_declaration] = STATE(1098), + [sym_variable_declaration] = STATE(1100), + [sym_lexical_declaration] = STATE(1100), + [sym_class_declaration] = STATE(1100), + [sym_function_declaration] = STATE(1100), + [sym_generator_function_declaration] = STATE(1100), + [sym_comment] = STATE(819), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(1100), + [sym_ambient_declaration] = STATE(1100), + [sym_abstract_class_declaration] = STATE(1100), + [sym_module] = STATE(1100), + [sym_internal_module] = STATE(1094), + [sym_import_alias] = STATE(1100), + [sym_interface_declaration] = STATE(1100), + [sym_enum_declaration] = STATE(1100), + [sym_type_alias_declaration] = STATE(1100), + [aux_sym_export_statement_repeat1] = STATE(4991), + [anon_sym_STAR] = ACTIONS(2824), + [anon_sym_default] = ACTIONS(2826), + [anon_sym_type] = ACTIONS(2828), + [anon_sym_EQ] = ACTIONS(2830), + [anon_sym_as] = ACTIONS(2832), + [anon_sym_namespace] = ACTIONS(2834), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_COMMA] = ACTIONS(211), + [anon_sym_import] = ACTIONS(2836), + [anon_sym_var] = ACTIONS(2838), + [anon_sym_let] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2842), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_COLON] = ACTIONS(2844), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(211), + [anon_sym_class] = ACTIONS(2846), + [anon_sym_async] = ACTIONS(2848), + [anon_sym_function] = ACTIONS(2850), + [anon_sym_EQ_GT] = ACTIONS(2689), + [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_PLUS_EQ] = ACTIONS(2691), + [anon_sym_DASH_EQ] = ACTIONS(2691), + [anon_sym_STAR_EQ] = ACTIONS(2691), + [anon_sym_SLASH_EQ] = ACTIONS(2691), + [anon_sym_PERCENT_EQ] = ACTIONS(2691), + [anon_sym_CARET_EQ] = ACTIONS(2691), + [anon_sym_AMP_EQ] = ACTIONS(2691), + [anon_sym_PIPE_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_LT_LT_EQ] = ACTIONS(2691), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(211), + [aux_sym_comment_token1] = ACTIONS(2696), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(2698), + [anon_sym_declare] = ACTIONS(2852), + [anon_sym_module] = ACTIONS(2854), + [anon_sym_abstract] = ACTIONS(2856), + [anon_sym_satisfies] = ACTIONS(211), + [anon_sym_interface] = ACTIONS(2858), + [anon_sym_enum] = ACTIONS(2860), + [sym__automatic_semicolon] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(211), + [sym_html_comment] = ACTIONS(5), + }, + [820] = { + [sym_namespace_export] = STATE(6905), + [sym_export_clause] = STATE(5547), + [sym_declaration] = STATE(1406), + [sym_variable_declaration] = STATE(1444), + [sym_lexical_declaration] = STATE(1444), + [sym_class_declaration] = STATE(1444), + [sym_function_declaration] = STATE(1444), + [sym_generator_function_declaration] = STATE(1444), + [sym_comment] = STATE(820), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(1444), + [sym_ambient_declaration] = STATE(1444), + [sym_abstract_class_declaration] = STATE(1444), + [sym_module] = STATE(1444), + [sym_internal_module] = STATE(1399), + [sym_import_alias] = STATE(1444), + [sym_interface_declaration] = STATE(1444), + [sym_enum_declaration] = STATE(1444), + [sym_type_alias_declaration] = STATE(1444), + [aux_sym_export_statement_repeat1] = STATE(5232), + [anon_sym_STAR] = ACTIONS(2862), + [anon_sym_default] = ACTIONS(2864), + [anon_sym_type] = ACTIONS(2866), + [anon_sym_EQ] = ACTIONS(2868), + [anon_sym_as] = ACTIONS(2870), + [anon_sym_namespace] = ACTIONS(2872), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_COMMA] = ACTIONS(211), + [anon_sym_import] = ACTIONS(2874), + [anon_sym_var] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2878), + [anon_sym_const] = ACTIONS(2880), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_COLON] = ACTIONS(2882), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(211), + [anon_sym_class] = ACTIONS(2884), + [anon_sym_async] = ACTIONS(2886), + [anon_sym_function] = ACTIONS(2888), + [anon_sym_EQ_GT] = ACTIONS(2689), + [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_PLUS_EQ] = ACTIONS(2691), + [anon_sym_DASH_EQ] = ACTIONS(2691), + [anon_sym_STAR_EQ] = ACTIONS(2691), + [anon_sym_SLASH_EQ] = ACTIONS(2691), + [anon_sym_PERCENT_EQ] = ACTIONS(2691), + [anon_sym_CARET_EQ] = ACTIONS(2691), + [anon_sym_AMP_EQ] = ACTIONS(2691), + [anon_sym_PIPE_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_LT_LT_EQ] = ACTIONS(2691), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(211), + [aux_sym_comment_token1] = ACTIONS(2696), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(2698), + [anon_sym_declare] = ACTIONS(2890), + [anon_sym_module] = ACTIONS(2892), + [anon_sym_abstract] = ACTIONS(2894), + [anon_sym_satisfies] = ACTIONS(211), + [anon_sym_interface] = ACTIONS(2896), + [anon_sym_enum] = ACTIONS(2898), + [sym__automatic_semicolon] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(211), + [sym_html_comment] = ACTIONS(5), + }, [821] = { - [sym_string] = STATE(4740), + [sym_string] = STATE(4582), [sym_comment] = STATE(821), - [sym__property_name] = STATE(4761), - [sym_computed_property_name] = STATE(4740), - [sym_override_modifier] = STATE(3665), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), + [sym__property_name] = STATE(4808), + [sym_computed_property_name] = STATE(4582), + [sym_override_modifier] = STATE(3531), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), [sym_identifier] = ACTIONS(2900), [anon_sym_export] = ACTIONS(2900), [anon_sym_STAR] = ACTIONS(2718), [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2900), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(966), [anon_sym_let] = ACTIONS(2900), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(968), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_async] = ACTIONS(2902), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2900), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -129987,7 +129679,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2904), [anon_sym_get] = ACTIONS(2906), [anon_sym_set] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_declare] = ACTIONS(2900), [anon_sym_public] = ACTIONS(2900), [anon_sym_private] = ACTIONS(2900), @@ -130006,35 +129698,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [822] = { - [sym_string] = STATE(4740), + [sym_string] = STATE(4582), [sym_comment] = STATE(822), - [sym__property_name] = STATE(4761), - [sym_computed_property_name] = STATE(4740), - [sym_override_modifier] = STATE(3665), - [aux_sym_object_repeat1] = STATE(6165), - [aux_sym_object_pattern_repeat1] = STATE(6171), + [sym__property_name] = STATE(4808), + [sym_computed_property_name] = STATE(4582), + [sym_override_modifier] = STATE(3531), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), [sym_identifier] = ACTIONS(2900), [anon_sym_export] = ACTIONS(2900), [anon_sym_STAR] = ACTIONS(2718), [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2900), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1043), [anon_sym_let] = ACTIONS(2900), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(968), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_async] = ACTIONS(2902), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2900), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -130084,7 +129776,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2904), [anon_sym_get] = ACTIONS(2906), [anon_sym_set] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_declare] = ACTIONS(2900), [anon_sym_public] = ACTIONS(2900), [anon_sym_private] = ACTIONS(2900), @@ -130103,35 +129795,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [823] = { - [sym_string] = STATE(4740), + [sym_string] = STATE(4582), [sym_comment] = STATE(823), - [sym__property_name] = STATE(4761), - [sym_computed_property_name] = STATE(4740), - [sym_override_modifier] = STATE(3665), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), + [sym__property_name] = STATE(4808), + [sym_computed_property_name] = STATE(4582), + [sym_override_modifier] = STATE(3531), + [aux_sym_object_repeat1] = STATE(5868), + [aux_sym_object_pattern_repeat1] = STATE(5869), [sym_identifier] = ACTIONS(2900), [anon_sym_export] = ACTIONS(2900), [anon_sym_STAR] = ACTIONS(2718), [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2900), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1041), [anon_sym_let] = ACTIONS(2900), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(968), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_async] = ACTIONS(2902), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2900), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -130181,7 +129873,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2904), [anon_sym_get] = ACTIONS(2906), [anon_sym_set] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_declare] = ACTIONS(2900), [anon_sym_public] = ACTIONS(2900), [anon_sym_private] = ACTIONS(2900), @@ -130200,34 +129892,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [824] = { - [sym_string] = STATE(4740), + [sym_string] = STATE(4582), [sym_comment] = STATE(824), - [sym__property_name] = STATE(4761), - [sym_computed_property_name] = STATE(4740), - [aux_sym_object_repeat1] = STATE(6165), - [aux_sym_object_pattern_repeat1] = STATE(6171), + [sym__property_name] = STATE(4808), + [sym_computed_property_name] = STATE(4582), + [aux_sym_object_repeat1] = STATE(5868), + [aux_sym_object_pattern_repeat1] = STATE(5869), [sym_identifier] = ACTIONS(2900), [anon_sym_export] = ACTIONS(2900), [anon_sym_STAR] = ACTIONS(2718), [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2900), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1041), [anon_sym_let] = ACTIONS(2900), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(968), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_async] = ACTIONS(2902), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2900), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -130277,7 +129969,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2900), [anon_sym_get] = ACTIONS(2906), [anon_sym_set] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_declare] = ACTIONS(2900), [anon_sym_public] = ACTIONS(2900), [anon_sym_private] = ACTIONS(2900), @@ -130296,34 +129988,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [825] = { - [sym_string] = STATE(4740), + [sym_string] = STATE(4582), [sym_comment] = STATE(825), - [sym__property_name] = STATE(4761), - [sym_computed_property_name] = STATE(4740), - [aux_sym_object_repeat1] = STATE(6165), - [aux_sym_object_pattern_repeat1] = STATE(6171), + [sym__property_name] = STATE(4808), + [sym_computed_property_name] = STATE(4582), + [aux_sym_object_repeat1] = STATE(5868), + [aux_sym_object_pattern_repeat1] = STATE(5869), [sym_identifier] = ACTIONS(2900), [anon_sym_export] = ACTIONS(2900), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2900), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1041), [anon_sym_let] = ACTIONS(2900), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(968), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_async] = ACTIONS(2900), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2900), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -130373,7 +130065,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2900), [anon_sym_get] = ACTIONS(2900), [anon_sym_set] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_declare] = ACTIONS(2900), [anon_sym_public] = ACTIONS(2900), [anon_sym_private] = ACTIONS(2900), @@ -130392,34 +130084,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [826] = { - [sym_string] = STATE(4740), + [sym_string] = STATE(4582), [sym_comment] = STATE(826), - [sym__property_name] = STATE(4761), - [sym_computed_property_name] = STATE(4740), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), + [sym__property_name] = STATE(4808), + [sym_computed_property_name] = STATE(4582), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), [sym_identifier] = ACTIONS(2900), [anon_sym_export] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2900), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(966), [anon_sym_let] = ACTIONS(2900), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(968), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(2902), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(2900), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2900), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -130467,9 +130159,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2734), [anon_sym_static] = ACTIONS(2900), [anon_sym_readonly] = ACTIONS(2900), - [anon_sym_get] = ACTIONS(2906), - [anon_sym_set] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_get] = ACTIONS(2900), + [anon_sym_set] = ACTIONS(2900), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_declare] = ACTIONS(2900), [anon_sym_public] = ACTIONS(2900), [anon_sym_private] = ACTIONS(2900), @@ -130488,34 +130180,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [827] = { - [sym_string] = STATE(4740), + [sym_string] = STATE(4582), [sym_comment] = STATE(827), - [sym__property_name] = STATE(4761), - [sym_computed_property_name] = STATE(4740), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), + [sym__property_name] = STATE(4808), + [sym_computed_property_name] = STATE(4582), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), [sym_identifier] = ACTIONS(2900), [anon_sym_export] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(2718), [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2900), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(966), [anon_sym_let] = ACTIONS(2900), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(968), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(2900), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(2902), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2900), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -130563,9 +130255,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2734), [anon_sym_static] = ACTIONS(2900), [anon_sym_readonly] = ACTIONS(2900), - [anon_sym_get] = ACTIONS(2900), - [anon_sym_set] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_get] = ACTIONS(2906), + [anon_sym_set] = ACTIONS(2906), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_declare] = ACTIONS(2900), [anon_sym_public] = ACTIONS(2900), [anon_sym_private] = ACTIONS(2900), @@ -130584,34 +130276,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [828] = { - [sym_string] = STATE(4740), + [sym_string] = STATE(4582), [sym_comment] = STATE(828), - [sym__property_name] = STATE(4761), - [sym_computed_property_name] = STATE(4740), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), + [sym__property_name] = STATE(4808), + [sym_computed_property_name] = STATE(4582), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), [sym_identifier] = ACTIONS(2900), [anon_sym_export] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(2718), + [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2900), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1043), [anon_sym_let] = ACTIONS(2900), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(968), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(2902), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(2900), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2900), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -130659,9 +130351,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2734), [anon_sym_static] = ACTIONS(2900), [anon_sym_readonly] = ACTIONS(2900), - [anon_sym_get] = ACTIONS(2906), - [anon_sym_set] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_get] = ACTIONS(2900), + [anon_sym_set] = ACTIONS(2900), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_declare] = ACTIONS(2900), [anon_sym_public] = ACTIONS(2900), [anon_sym_private] = ACTIONS(2900), @@ -130680,34 +130372,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [829] = { - [sym_string] = STATE(4740), + [sym_string] = STATE(4582), [sym_comment] = STATE(829), - [sym__property_name] = STATE(4761), - [sym_computed_property_name] = STATE(4740), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), + [sym__property_name] = STATE(4808), + [sym_computed_property_name] = STATE(4582), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), [sym_identifier] = ACTIONS(2900), [anon_sym_export] = ACTIONS(2900), - [anon_sym_STAR] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(2718), [anon_sym_type] = ACTIONS(2900), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2900), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1043), [anon_sym_let] = ACTIONS(2900), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(968), [anon_sym_LBRACK] = ACTIONS(2725), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_async] = ACTIONS(2900), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(2902), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2900), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -130755,9 +130447,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2734), [anon_sym_static] = ACTIONS(2900), [anon_sym_readonly] = ACTIONS(2900), - [anon_sym_get] = ACTIONS(2900), - [anon_sym_set] = ACTIONS(2900), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_get] = ACTIONS(2906), + [anon_sym_set] = ACTIONS(2906), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_declare] = ACTIONS(2900), [anon_sym_public] = ACTIONS(2900), [anon_sym_private] = ACTIONS(2900), @@ -130776,45 +130468,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [830] = { - [sym_declaration] = STATE(1358), - [sym_variable_declaration] = STATE(1382), - [sym_lexical_declaration] = STATE(1382), - [sym_class_declaration] = STATE(1382), - [sym_function_declaration] = STATE(1382), - [sym_generator_function_declaration] = STATE(1382), + [sym_declaration] = STATE(1332), + [sym_variable_declaration] = STATE(1444), + [sym_lexical_declaration] = STATE(1444), + [sym_class_declaration] = STATE(1444), + [sym_function_declaration] = STATE(1444), + [sym_generator_function_declaration] = STATE(1444), [sym_comment] = STATE(830), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(1382), - [sym_ambient_declaration] = STATE(1382), - [sym_abstract_class_declaration] = STATE(1382), - [sym_module] = STATE(1382), - [sym_internal_module] = STATE(1379), - [sym_import_alias] = STATE(1382), - [sym_interface_declaration] = STATE(1382), - [sym_enum_declaration] = STATE(1382), - [sym_type_alias_declaration] = STATE(1382), - [aux_sym_export_statement_repeat1] = STATE(5403), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(1444), + [sym_ambient_declaration] = STATE(1444), + [sym_abstract_class_declaration] = STATE(1444), + [sym_module] = STATE(1444), + [sym_internal_module] = STATE(1399), + [sym_import_alias] = STATE(1444), + [sym_interface_declaration] = STATE(1444), + [sym_enum_declaration] = STATE(1444), + [sym_type_alias_declaration] = STATE(1444), + [aux_sym_export_statement_repeat1] = STATE(5232), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2910), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2868), + [anon_sym_namespace] = ACTIONS(2872), [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_import] = ACTIONS(2870), - [anon_sym_var] = ACTIONS(2872), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_const] = ACTIONS(2876), + [anon_sym_import] = ACTIONS(2874), + [anon_sym_var] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2878), + [anon_sym_const] = ACTIONS(2880), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(211), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_COLON] = ACTIONS(2878), + [anon_sym_COLON] = ACTIONS(2882), [anon_sym_LBRACK] = ACTIONS(211), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2880), - [anon_sym_async] = ACTIONS(2882), - [anon_sym_function] = ACTIONS(2884), + [anon_sym_class] = ACTIONS(2884), + [anon_sym_async] = ACTIONS(2886), + [anon_sym_function] = ACTIONS(2888), [anon_sym_EQ_GT] = ACTIONS(2689), [anon_sym_QMARK_DOT] = ACTIONS(211), [anon_sym_PLUS_EQ] = ACTIONS(2691), @@ -130859,57 +130551,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2696), [anon_sym_BQUOTE] = ACTIONS(211), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2886), + [anon_sym_declare] = ACTIONS(2890), [anon_sym_module] = ACTIONS(2912), - [anon_sym_abstract] = ACTIONS(2890), + [anon_sym_abstract] = ACTIONS(2894), [anon_sym_satisfies] = ACTIONS(211), [anon_sym_global] = ACTIONS(2914), - [anon_sym_interface] = ACTIONS(2892), - [anon_sym_enum] = ACTIONS(2894), + [anon_sym_interface] = ACTIONS(2896), + [anon_sym_enum] = ACTIONS(2898), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [831] = { - [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_declaration] = STATE(1086), + [sym_variable_declaration] = STATE(1100), + [sym_lexical_declaration] = STATE(1100), + [sym_class_declaration] = STATE(1100), + [sym_function_declaration] = STATE(1100), + [sym_generator_function_declaration] = STATE(1100), [sym_comment] = STATE(831), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(1105), - [sym_ambient_declaration] = STATE(1105), - [sym_abstract_class_declaration] = STATE(1105), - [sym_module] = STATE(1105), - [sym_internal_module] = STATE(1102), - [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(5341), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(1100), + [sym_ambient_declaration] = STATE(1100), + [sym_abstract_class_declaration] = STATE(1100), + [sym_module] = STATE(1100), + [sym_internal_module] = STATE(1094), + [sym_import_alias] = STATE(1100), + [sym_interface_declaration] = STATE(1100), + [sym_enum_declaration] = STATE(1100), + [sym_type_alias_declaration] = STATE(1100), + [aux_sym_export_statement_repeat1] = STATE(4991), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2916), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2830), + [anon_sym_namespace] = ACTIONS(2834), [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_import] = ACTIONS(2832), - [anon_sym_var] = ACTIONS(2834), - [anon_sym_let] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2838), + [anon_sym_import] = ACTIONS(2836), + [anon_sym_var] = ACTIONS(2838), + [anon_sym_let] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2842), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(211), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_COLON] = ACTIONS(2840), + [anon_sym_COLON] = ACTIONS(2844), [anon_sym_LBRACK] = ACTIONS(211), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2842), - [anon_sym_async] = ACTIONS(2844), - [anon_sym_function] = ACTIONS(2846), + [anon_sym_class] = ACTIONS(2846), + [anon_sym_async] = ACTIONS(2848), + [anon_sym_function] = ACTIONS(2850), [anon_sym_EQ_GT] = ACTIONS(2689), [anon_sym_QMARK_DOT] = ACTIONS(211), [anon_sym_PLUS_EQ] = ACTIONS(2691), @@ -130954,57 +130646,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2696), [anon_sym_BQUOTE] = ACTIONS(211), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2848), + [anon_sym_declare] = ACTIONS(2852), [anon_sym_module] = ACTIONS(2918), - [anon_sym_abstract] = ACTIONS(2852), + [anon_sym_abstract] = ACTIONS(2856), [anon_sym_satisfies] = ACTIONS(211), [anon_sym_global] = ACTIONS(2920), - [anon_sym_interface] = ACTIONS(2854), - [anon_sym_enum] = ACTIONS(2856), + [anon_sym_interface] = ACTIONS(2858), + [anon_sym_enum] = ACTIONS(2860), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [832] = { - [sym_declaration] = STATE(6956), - [sym_variable_declaration] = STATE(6895), - [sym_lexical_declaration] = STATE(6895), - [sym_class_declaration] = STATE(6895), - [sym_function_declaration] = STATE(6895), - [sym_generator_function_declaration] = STATE(6895), + [sym_declaration] = STATE(1377), + [sym_variable_declaration] = STATE(1327), + [sym_lexical_declaration] = STATE(1327), + [sym_class_declaration] = STATE(1327), + [sym_function_declaration] = STATE(1327), + [sym_generator_function_declaration] = STATE(1327), [sym_comment] = STATE(832), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(6895), - [sym_ambient_declaration] = STATE(6895), - [sym_abstract_class_declaration] = STATE(6895), - [sym_module] = STATE(6895), - [sym_internal_module] = STATE(6915), - [sym_import_alias] = STATE(6895), - [sym_interface_declaration] = STATE(6895), - [sym_enum_declaration] = STATE(6895), - [sym_type_alias_declaration] = STATE(6895), - [aux_sym_export_statement_repeat1] = STATE(5327), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(1327), + [sym_ambient_declaration] = STATE(1327), + [sym_abstract_class_declaration] = STATE(1327), + [sym_module] = STATE(1327), + [sym_internal_module] = STATE(1348), + [sym_import_alias] = STATE(1327), + [sym_interface_declaration] = STATE(1327), + [sym_enum_declaration] = STATE(1327), + [sym_type_alias_declaration] = STATE(1327), + [aux_sym_export_statement_repeat1] = STATE(5102), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2922), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2792), + [anon_sym_namespace] = ACTIONS(2758), [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_import] = ACTIONS(2794), - [anon_sym_var] = ACTIONS(2796), - [anon_sym_let] = ACTIONS(2798), - [anon_sym_const] = ACTIONS(2800), + [anon_sym_import] = ACTIONS(2760), + [anon_sym_var] = ACTIONS(2762), + [anon_sym_let] = ACTIONS(2764), + [anon_sym_const] = ACTIONS(2766), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(211), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_COLON] = ACTIONS(2802), + [anon_sym_COLON] = ACTIONS(2768), [anon_sym_LBRACK] = ACTIONS(211), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2804), - [anon_sym_async] = ACTIONS(2806), - [anon_sym_function] = ACTIONS(2808), + [anon_sym_class] = ACTIONS(2770), + [anon_sym_async] = ACTIONS(2772), + [anon_sym_function] = ACTIONS(2774), [anon_sym_EQ_GT] = ACTIONS(2689), [anon_sym_QMARK_DOT] = ACTIONS(211), [anon_sym_PLUS_EQ] = ACTIONS(2691), @@ -131049,57 +130741,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2696), [anon_sym_BQUOTE] = ACTIONS(211), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2810), + [anon_sym_declare] = ACTIONS(2776), [anon_sym_module] = ACTIONS(2924), - [anon_sym_abstract] = ACTIONS(2814), + [anon_sym_abstract] = ACTIONS(2780), [anon_sym_satisfies] = ACTIONS(211), [anon_sym_global] = ACTIONS(2926), - [anon_sym_interface] = ACTIONS(2816), - [anon_sym_enum] = ACTIONS(2818), + [anon_sym_interface] = ACTIONS(2782), + [anon_sym_enum] = ACTIONS(2784), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [833] = { - [sym_declaration] = STATE(1588), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_class_declaration] = STATE(1573), - [sym_function_declaration] = STATE(1573), - [sym_generator_function_declaration] = STATE(1573), + [sym_declaration] = STATE(6491), + [sym_variable_declaration] = STATE(6360), + [sym_lexical_declaration] = STATE(6360), + [sym_class_declaration] = STATE(6360), + [sym_function_declaration] = STATE(6360), + [sym_generator_function_declaration] = STATE(6360), [sym_comment] = STATE(833), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(1573), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(1575), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [aux_sym_export_statement_repeat1] = STATE(5414), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(6360), + [sym_ambient_declaration] = STATE(6360), + [sym_abstract_class_declaration] = STATE(6360), + [sym_module] = STATE(6360), + [sym_internal_module] = STATE(6385), + [sym_import_alias] = STATE(6360), + [sym_interface_declaration] = STATE(6360), + [sym_enum_declaration] = STATE(6360), + [sym_type_alias_declaration] = STATE(6360), + [aux_sym_export_statement_repeat1] = STATE(5201), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_type] = ACTIONS(2928), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2663), + [anon_sym_namespace] = ACTIONS(2796), [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2671), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2675), + [anon_sym_import] = ACTIONS(2798), + [anon_sym_var] = ACTIONS(2800), + [anon_sym_let] = ACTIONS(2802), + [anon_sym_const] = ACTIONS(2804), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(211), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_COLON] = ACTIONS(2898), + [anon_sym_COLON] = ACTIONS(2806), [anon_sym_LBRACK] = ACTIONS(211), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2685), - [anon_sym_function] = ACTIONS(2687), + [anon_sym_class] = ACTIONS(2808), + [anon_sym_async] = ACTIONS(2810), + [anon_sym_function] = ACTIONS(2812), [anon_sym_EQ_GT] = ACTIONS(2689), [anon_sym_QMARK_DOT] = ACTIONS(211), [anon_sym_PLUS_EQ] = ACTIONS(2691), @@ -131144,57 +130836,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2696), [anon_sym_BQUOTE] = ACTIONS(211), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2700), - [anon_sym_module] = ACTIONS(2740), - [anon_sym_abstract] = ACTIONS(2704), + [anon_sym_declare] = ACTIONS(2814), + [anon_sym_module] = ACTIONS(2930), + [anon_sym_abstract] = ACTIONS(2818), [anon_sym_satisfies] = ACTIONS(211), - [anon_sym_global] = ACTIONS(2742), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2708), + [anon_sym_global] = ACTIONS(2932), + [anon_sym_interface] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2822), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [834] = { - [sym_declaration] = STATE(1232), - [sym_variable_declaration] = STATE(1220), - [sym_lexical_declaration] = STATE(1220), - [sym_class_declaration] = STATE(1220), - [sym_function_declaration] = STATE(1220), - [sym_generator_function_declaration] = STATE(1220), + [sym_declaration] = STATE(1514), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_class_declaration] = STATE(1558), + [sym_function_declaration] = STATE(1558), + [sym_generator_function_declaration] = STATE(1558), [sym_comment] = STATE(834), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(1220), - [sym_ambient_declaration] = STATE(1220), - [sym_abstract_class_declaration] = STATE(1220), - [sym_module] = STATE(1220), - [sym_internal_module] = STATE(1224), - [sym_import_alias] = STATE(1220), - [sym_interface_declaration] = STATE(1220), - [sym_enum_declaration] = STATE(1220), - [sym_type_alias_declaration] = STATE(1220), - [aux_sym_export_statement_repeat1] = STATE(5213), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(1558), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(1557), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [aux_sym_export_statement_repeat1] = STATE(5398), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2928), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_type] = ACTIONS(2738), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2754), + [anon_sym_namespace] = ACTIONS(2663), [anon_sym_COMMA] = ACTIONS(211), - [anon_sym_import] = ACTIONS(2756), - [anon_sym_var] = ACTIONS(2758), - [anon_sym_let] = ACTIONS(2760), - [anon_sym_const] = ACTIONS(2762), + [anon_sym_import] = ACTIONS(2669), + [anon_sym_var] = ACTIONS(2671), + [anon_sym_let] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2675), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(211), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_COLON] = ACTIONS(2764), + [anon_sym_COLON] = ACTIONS(2746), [anon_sym_LBRACK] = ACTIONS(211), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2766), - [anon_sym_async] = ACTIONS(2768), - [anon_sym_function] = ACTIONS(2770), + [anon_sym_class] = ACTIONS(2683), + [anon_sym_async] = ACTIONS(2685), + [anon_sym_function] = ACTIONS(2687), [anon_sym_EQ_GT] = ACTIONS(2689), [anon_sym_QMARK_DOT] = ACTIONS(211), [anon_sym_PLUS_EQ] = ACTIONS(2691), @@ -131239,45 +130931,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2696), [anon_sym_BQUOTE] = ACTIONS(211), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2772), - [anon_sym_module] = ACTIONS(2930), - [anon_sym_abstract] = ACTIONS(2776), + [anon_sym_declare] = ACTIONS(2700), + [anon_sym_module] = ACTIONS(2740), + [anon_sym_abstract] = ACTIONS(2704), [anon_sym_satisfies] = ACTIONS(211), - [anon_sym_global] = ACTIONS(2932), - [anon_sym_interface] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2780), + [anon_sym_global] = ACTIONS(2742), + [anon_sym_interface] = ACTIONS(2706), + [anon_sym_enum] = ACTIONS(2708), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [835] = { [sym_comment] = STATE(835), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), - [sym_identifier] = ACTIONS(2419), - [anon_sym_export] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2419), - [anon_sym_type] = ACTIONS(2419), - [anon_sym_EQ] = ACTIONS(1016), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_identifier] = ACTIONS(2405), + [anon_sym_export] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_type] = ACTIONS(2405), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2419), + [anon_sym_namespace] = ACTIONS(2405), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_let] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_let] = ACTIONS(2405), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(2405), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_async] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(2405), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2419), + [anon_sym_new] = ACTIONS(2405), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -131319,25 +131011,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2419), - [sym_private_property_identifier] = ACTIONS(2419), - [anon_sym_static] = ACTIONS(2419), - [anon_sym_readonly] = ACTIONS(2419), - [anon_sym_get] = ACTIONS(2419), - [anon_sym_set] = ACTIONS(2419), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_declare] = ACTIONS(2419), - [anon_sym_public] = ACTIONS(2419), - [anon_sym_private] = ACTIONS(2419), - [anon_sym_protected] = ACTIONS(2419), - [anon_sym_override] = ACTIONS(2419), - [anon_sym_module] = ACTIONS(2419), - [anon_sym_any] = ACTIONS(2419), - [anon_sym_number] = ACTIONS(2419), - [anon_sym_boolean] = ACTIONS(2419), - [anon_sym_string] = ACTIONS(2419), - [anon_sym_symbol] = ACTIONS(2419), - [anon_sym_object] = ACTIONS(2419), + [sym_number] = ACTIONS(2405), + [sym_private_property_identifier] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_readonly] = ACTIONS(2405), + [anon_sym_get] = ACTIONS(2405), + [anon_sym_set] = ACTIONS(2405), + [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_declare] = ACTIONS(2405), + [anon_sym_public] = ACTIONS(2405), + [anon_sym_private] = ACTIONS(2405), + [anon_sym_protected] = ACTIONS(2405), + [anon_sym_override] = ACTIONS(2405), + [anon_sym_module] = ACTIONS(2405), + [anon_sym_any] = ACTIONS(2405), + [anon_sym_number] = ACTIONS(2405), + [anon_sym_boolean] = ACTIONS(2405), + [anon_sym_string] = ACTIONS(2405), + [anon_sym_symbol] = ACTIONS(2405), + [anon_sym_object] = ACTIONS(2405), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), @@ -131345,32 +131037,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [836] = { [sym_comment] = STATE(836), - [aux_sym_object_repeat1] = STATE(6165), - [aux_sym_object_pattern_repeat1] = STATE(6171), - [sym_identifier] = ACTIONS(2419), - [anon_sym_export] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2419), - [anon_sym_type] = ACTIONS(2419), - [anon_sym_EQ] = ACTIONS(1016), + [aux_sym_object_repeat1] = STATE(5868), + [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_identifier] = ACTIONS(2403), + [anon_sym_export] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_type] = ACTIONS(2403), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2419), + [anon_sym_namespace] = ACTIONS(2403), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_let] = ACTIONS(2419), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(2403), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(2419), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(2403), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_async] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(2403), + [anon_sym_SQUOTE] = ACTIONS(2403), + [anon_sym_async] = ACTIONS(2403), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2419), + [anon_sym_new] = ACTIONS(2403), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -131412,58 +131104,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2419), - [sym_private_property_identifier] = ACTIONS(2419), - [anon_sym_static] = ACTIONS(2419), - [anon_sym_readonly] = ACTIONS(2419), - [anon_sym_get] = ACTIONS(2419), - [anon_sym_set] = ACTIONS(2419), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_declare] = ACTIONS(2419), - [anon_sym_public] = ACTIONS(2419), - [anon_sym_private] = ACTIONS(2419), - [anon_sym_protected] = ACTIONS(2419), - [anon_sym_override] = ACTIONS(2419), - [anon_sym_module] = ACTIONS(2419), - [anon_sym_any] = ACTIONS(2419), - [anon_sym_number] = ACTIONS(2419), - [anon_sym_boolean] = ACTIONS(2419), - [anon_sym_string] = ACTIONS(2419), - [anon_sym_symbol] = ACTIONS(2419), - [anon_sym_object] = ACTIONS(2419), + [sym_number] = ACTIONS(2403), + [sym_private_property_identifier] = ACTIONS(2403), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_readonly] = ACTIONS(2403), + [anon_sym_get] = ACTIONS(2403), + [anon_sym_set] = ACTIONS(2403), + [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_declare] = ACTIONS(2403), + [anon_sym_public] = ACTIONS(2403), + [anon_sym_private] = ACTIONS(2403), + [anon_sym_protected] = ACTIONS(2403), + [anon_sym_override] = ACTIONS(2403), + [anon_sym_module] = ACTIONS(2403), + [anon_sym_any] = ACTIONS(2403), + [anon_sym_number] = ACTIONS(2403), + [anon_sym_boolean] = ACTIONS(2403), + [anon_sym_string] = ACTIONS(2403), + [anon_sym_symbol] = ACTIONS(2403), + [anon_sym_object] = ACTIONS(2403), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [837] = { - [sym_declaration] = STATE(1588), - [sym_variable_declaration] = STATE(1573), - [sym_lexical_declaration] = STATE(1573), - [sym_class_declaration] = STATE(1573), - [sym_function_declaration] = STATE(1573), - [sym_generator_function_declaration] = STATE(1573), + [sym_declaration] = STATE(1377), + [sym_variable_declaration] = STATE(1327), + [sym_lexical_declaration] = STATE(1327), + [sym_class_declaration] = STATE(1327), + [sym_function_declaration] = STATE(1327), + [sym_generator_function_declaration] = STATE(1327), [sym_comment] = STATE(837), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(1573), - [sym_ambient_declaration] = STATE(1573), - [sym_abstract_class_declaration] = STATE(1573), - [sym_module] = STATE(1573), - [sym_internal_module] = STATE(1575), - [sym_import_alias] = STATE(1573), - [sym_interface_declaration] = STATE(1573), - [sym_enum_declaration] = STATE(1573), - [sym_type_alias_declaration] = STATE(1573), - [aux_sym_export_statement_repeat1] = STATE(5414), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(1327), + [sym_ambient_declaration] = STATE(1327), + [sym_abstract_class_declaration] = STATE(1327), + [sym_module] = STATE(1327), + [sym_internal_module] = STATE(1348), + [sym_import_alias] = STATE(1327), + [sym_interface_declaration] = STATE(1327), + [sym_enum_declaration] = STATE(1327), + [sym_type_alias_declaration] = STATE(1327), + [aux_sym_export_statement_repeat1] = STATE(5102), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2738), + [anon_sym_type] = ACTIONS(2922), [anon_sym_EQ] = ACTIONS(1232), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2663), - [anon_sym_import] = ACTIONS(2669), - [anon_sym_var] = ACTIONS(2671), - [anon_sym_let] = ACTIONS(2673), - [anon_sym_const] = ACTIONS(2675), + [anon_sym_namespace] = ACTIONS(2758), + [anon_sym_import] = ACTIONS(2760), + [anon_sym_var] = ACTIONS(2762), + [anon_sym_let] = ACTIONS(2764), + [anon_sym_const] = ACTIONS(2766), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(211), [anon_sym_in] = ACTIONS(118), @@ -131471,9 +131163,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(211), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2683), - [anon_sym_async] = ACTIONS(2685), - [anon_sym_function] = ACTIONS(2687), + [anon_sym_class] = ACTIONS(2770), + [anon_sym_async] = ACTIONS(2772), + [anon_sym_function] = ACTIONS(2774), [anon_sym_EQ_GT] = ACTIONS(2934), [anon_sym_QMARK_DOT] = ACTIONS(211), [anon_sym_PLUS_EQ] = ACTIONS(2691), @@ -131518,45 +131210,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2696), [anon_sym_BQUOTE] = ACTIONS(211), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2700), - [anon_sym_module] = ACTIONS(2740), - [anon_sym_abstract] = ACTIONS(2704), + [anon_sym_declare] = ACTIONS(2776), + [anon_sym_module] = ACTIONS(2924), + [anon_sym_abstract] = ACTIONS(2780), [anon_sym_satisfies] = ACTIONS(211), - [anon_sym_global] = ACTIONS(2742), - [anon_sym_interface] = ACTIONS(2706), - [anon_sym_enum] = ACTIONS(2708), + [anon_sym_global] = ACTIONS(2926), + [anon_sym_interface] = ACTIONS(2782), + [anon_sym_enum] = ACTIONS(2784), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [838] = { - [sym_declaration] = STATE(6956), - [sym_variable_declaration] = STATE(6895), - [sym_lexical_declaration] = STATE(6895), - [sym_class_declaration] = STATE(6895), - [sym_function_declaration] = STATE(6895), - [sym_generator_function_declaration] = STATE(6895), + [sym_declaration] = STATE(4945), + [sym_variable_declaration] = STATE(5171), + [sym_lexical_declaration] = STATE(5171), + [sym_class_declaration] = STATE(5171), + [sym_function_declaration] = STATE(5171), + [sym_generator_function_declaration] = STATE(5171), [sym_comment] = STATE(838), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(6895), - [sym_ambient_declaration] = STATE(6895), - [sym_abstract_class_declaration] = STATE(6895), - [sym_module] = STATE(6895), - [sym_internal_module] = STATE(6915), - [sym_import_alias] = STATE(6895), - [sym_interface_declaration] = STATE(6895), - [sym_enum_declaration] = STATE(6895), - [sym_type_alias_declaration] = STATE(6895), - [aux_sym_export_statement_repeat1] = STATE(5327), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(5171), + [sym_ambient_declaration] = STATE(5171), + [sym_abstract_class_declaration] = STATE(5171), + [sym_module] = STATE(5171), + [sym_internal_module] = STATE(4878), + [sym_import_alias] = STATE(5171), + [sym_interface_declaration] = STATE(5171), + [sym_enum_declaration] = STATE(5171), + [sym_type_alias_declaration] = STATE(5171), + [aux_sym_export_statement_repeat1] = STATE(5382), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2922), + [anon_sym_type] = ACTIONS(2936), [anon_sym_EQ] = ACTIONS(1232), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2792), - [anon_sym_import] = ACTIONS(2794), - [anon_sym_var] = ACTIONS(2796), - [anon_sym_let] = ACTIONS(2798), - [anon_sym_const] = ACTIONS(2800), + [anon_sym_namespace] = ACTIONS(2938), + [anon_sym_import] = ACTIONS(2940), + [anon_sym_var] = ACTIONS(2942), + [anon_sym_let] = ACTIONS(2944), + [anon_sym_const] = ACTIONS(2946), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(211), [anon_sym_in] = ACTIONS(118), @@ -131564,9 +131256,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(211), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2804), - [anon_sym_async] = ACTIONS(2806), - [anon_sym_function] = ACTIONS(2808), + [anon_sym_class] = ACTIONS(2948), + [anon_sym_async] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2952), [anon_sym_EQ_GT] = ACTIONS(2934), [anon_sym_QMARK_DOT] = ACTIONS(211), [anon_sym_PLUS_EQ] = ACTIONS(2691), @@ -131611,324 +131303,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2696), [anon_sym_BQUOTE] = ACTIONS(211), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2810), - [anon_sym_module] = ACTIONS(2924), - [anon_sym_abstract] = ACTIONS(2814), + [anon_sym_declare] = ACTIONS(2954), + [anon_sym_module] = ACTIONS(2956), + [anon_sym_abstract] = ACTIONS(2958), [anon_sym_satisfies] = ACTIONS(211), - [anon_sym_global] = ACTIONS(2926), - [anon_sym_interface] = ACTIONS(2816), - [anon_sym_enum] = ACTIONS(2818), + [anon_sym_global] = ACTIONS(2960), + [anon_sym_interface] = ACTIONS(2962), + [anon_sym_enum] = ACTIONS(2964), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [839] = { + [sym_declaration] = STATE(1514), + [sym_variable_declaration] = STATE(1558), + [sym_lexical_declaration] = STATE(1558), + [sym_class_declaration] = STATE(1558), + [sym_function_declaration] = STATE(1558), + [sym_generator_function_declaration] = STATE(1558), [sym_comment] = STATE(839), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), - [sym_identifier] = ACTIONS(2431), - [anon_sym_export] = ACTIONS(2431), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_type] = ACTIONS(2431), - [anon_sym_EQ] = ACTIONS(1016), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2431), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), - [anon_sym_let] = ACTIONS(2431), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(2431), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [anon_sym_EQ_GT] = ACTIONS(1035), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2431), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2431), - [sym_private_property_identifier] = ACTIONS(2431), - [anon_sym_static] = ACTIONS(2431), - [anon_sym_readonly] = ACTIONS(2431), - [anon_sym_get] = ACTIONS(2431), - [anon_sym_set] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_declare] = ACTIONS(2431), - [anon_sym_public] = ACTIONS(2431), - [anon_sym_private] = ACTIONS(2431), - [anon_sym_protected] = ACTIONS(2431), - [anon_sym_override] = ACTIONS(2431), - [anon_sym_module] = ACTIONS(2431), - [anon_sym_any] = ACTIONS(2431), - [anon_sym_number] = ACTIONS(2431), - [anon_sym_boolean] = ACTIONS(2431), - [anon_sym_string] = ACTIONS(2431), - [anon_sym_symbol] = ACTIONS(2431), - [anon_sym_object] = ACTIONS(2431), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [840] = { - [sym_comment] = STATE(840), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), - [sym_identifier] = ACTIONS(2419), - [anon_sym_export] = ACTIONS(2419), - [anon_sym_STAR] = ACTIONS(2419), - [anon_sym_type] = ACTIONS(2419), - [anon_sym_EQ] = ACTIONS(1016), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2419), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), - [anon_sym_let] = ACTIONS(2419), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(2419), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2419), - [anon_sym_SQUOTE] = ACTIONS(2419), - [anon_sym_async] = ACTIONS(2419), - [anon_sym_EQ_GT] = ACTIONS(1035), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2419), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2419), - [sym_private_property_identifier] = ACTIONS(2419), - [anon_sym_static] = ACTIONS(2419), - [anon_sym_readonly] = ACTIONS(2419), - [anon_sym_get] = ACTIONS(2419), - [anon_sym_set] = ACTIONS(2419), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_declare] = ACTIONS(2419), - [anon_sym_public] = ACTIONS(2419), - [anon_sym_private] = ACTIONS(2419), - [anon_sym_protected] = ACTIONS(2419), - [anon_sym_override] = ACTIONS(2419), - [anon_sym_module] = ACTIONS(2419), - [anon_sym_any] = ACTIONS(2419), - [anon_sym_number] = ACTIONS(2419), - [anon_sym_boolean] = ACTIONS(2419), - [anon_sym_string] = ACTIONS(2419), - [anon_sym_symbol] = ACTIONS(2419), - [anon_sym_object] = ACTIONS(2419), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [841] = { - [sym_declaration] = STATE(1232), - [sym_variable_declaration] = STATE(1220), - [sym_lexical_declaration] = STATE(1220), - [sym_class_declaration] = STATE(1220), - [sym_function_declaration] = STATE(1220), - [sym_generator_function_declaration] = STATE(1220), - [sym_comment] = STATE(841), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(1220), - [sym_ambient_declaration] = STATE(1220), - [sym_abstract_class_declaration] = STATE(1220), - [sym_module] = STATE(1220), - [sym_internal_module] = STATE(1224), - [sym_import_alias] = STATE(1220), - [sym_interface_declaration] = STATE(1220), - [sym_enum_declaration] = STATE(1220), - [sym_type_alias_declaration] = STATE(1220), - [aux_sym_export_statement_repeat1] = STATE(5213), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(1558), + [sym_ambient_declaration] = STATE(1558), + [sym_abstract_class_declaration] = STATE(1558), + [sym_module] = STATE(1558), + [sym_internal_module] = STATE(1557), + [sym_import_alias] = STATE(1558), + [sym_interface_declaration] = STATE(1558), + [sym_enum_declaration] = STATE(1558), + [sym_type_alias_declaration] = STATE(1558), + [aux_sym_export_statement_repeat1] = STATE(5398), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2928), - [anon_sym_EQ] = ACTIONS(1232), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2754), - [anon_sym_import] = ACTIONS(2756), - [anon_sym_var] = ACTIONS(2758), - [anon_sym_let] = ACTIONS(2760), - [anon_sym_const] = ACTIONS(2762), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(211), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(211), - [anon_sym_LBRACK] = ACTIONS(211), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2766), - [anon_sym_async] = ACTIONS(2768), - [anon_sym_function] = ACTIONS(2770), - [anon_sym_EQ_GT] = ACTIONS(2934), - [anon_sym_QMARK_DOT] = ACTIONS(211), - [anon_sym_PLUS_EQ] = ACTIONS(2691), - [anon_sym_DASH_EQ] = ACTIONS(2691), - [anon_sym_STAR_EQ] = ACTIONS(2691), - [anon_sym_SLASH_EQ] = ACTIONS(2691), - [anon_sym_PERCENT_EQ] = ACTIONS(2691), - [anon_sym_CARET_EQ] = ACTIONS(2691), - [anon_sym_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), - [anon_sym_LT_LT_EQ] = ACTIONS(2691), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(211), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(211), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(211), - [anon_sym_GT_EQ] = ACTIONS(211), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(211), - [anon_sym_PLUS_PLUS] = ACTIONS(211), - [anon_sym_DASH_DASH] = ACTIONS(211), - [aux_sym_comment_token1] = ACTIONS(2696), - [anon_sym_BQUOTE] = ACTIONS(211), - [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2772), - [anon_sym_module] = ACTIONS(2930), - [anon_sym_abstract] = ACTIONS(2776), - [anon_sym_satisfies] = ACTIONS(211), - [anon_sym_global] = ACTIONS(2932), - [anon_sym_interface] = ACTIONS(2778), - [anon_sym_enum] = ACTIONS(2780), - [sym__automatic_semicolon] = ACTIONS(211), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [842] = { - [sym_declaration] = STATE(1358), - [sym_variable_declaration] = STATE(1382), - [sym_lexical_declaration] = STATE(1382), - [sym_class_declaration] = STATE(1382), - [sym_function_declaration] = STATE(1382), - [sym_generator_function_declaration] = STATE(1382), - [sym_comment] = STATE(842), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(1382), - [sym_ambient_declaration] = STATE(1382), - [sym_abstract_class_declaration] = STATE(1382), - [sym_module] = STATE(1382), - [sym_internal_module] = STATE(1379), - [sym_import_alias] = STATE(1382), - [sym_interface_declaration] = STATE(1382), - [sym_enum_declaration] = STATE(1382), - [sym_type_alias_declaration] = STATE(1382), - [aux_sym_export_statement_repeat1] = STATE(5403), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2910), + [anon_sym_type] = ACTIONS(2738), [anon_sym_EQ] = ACTIONS(1232), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2868), - [anon_sym_import] = ACTIONS(2870), - [anon_sym_var] = ACTIONS(2872), - [anon_sym_let] = ACTIONS(2874), - [anon_sym_const] = ACTIONS(2876), + [anon_sym_namespace] = ACTIONS(2663), + [anon_sym_import] = ACTIONS(2669), + [anon_sym_var] = ACTIONS(2671), + [anon_sym_let] = ACTIONS(2673), + [anon_sym_const] = ACTIONS(2675), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(211), [anon_sym_in] = ACTIONS(118), @@ -131936,9 +131349,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(211), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2880), - [anon_sym_async] = ACTIONS(2882), - [anon_sym_function] = ACTIONS(2884), + [anon_sym_class] = ACTIONS(2683), + [anon_sym_async] = ACTIONS(2685), + [anon_sym_function] = ACTIONS(2687), [anon_sym_EQ_GT] = ACTIONS(2934), [anon_sym_QMARK_DOT] = ACTIONS(211), [anon_sym_PLUS_EQ] = ACTIONS(2691), @@ -131983,45 +131396,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2696), [anon_sym_BQUOTE] = ACTIONS(211), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2886), - [anon_sym_module] = ACTIONS(2912), - [anon_sym_abstract] = ACTIONS(2890), + [anon_sym_declare] = ACTIONS(2700), + [anon_sym_module] = ACTIONS(2740), + [anon_sym_abstract] = ACTIONS(2704), [anon_sym_satisfies] = ACTIONS(211), - [anon_sym_global] = ACTIONS(2914), - [anon_sym_interface] = ACTIONS(2892), - [anon_sym_enum] = ACTIONS(2894), + [anon_sym_global] = ACTIONS(2742), + [anon_sym_interface] = ACTIONS(2706), + [anon_sym_enum] = ACTIONS(2708), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [843] = { - [sym_comment] = STATE(843), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), - [sym_identifier] = ACTIONS(2431), - [anon_sym_export] = ACTIONS(2431), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_type] = ACTIONS(2431), - [anon_sym_EQ] = ACTIONS(1016), + [840] = { + [sym_comment] = STATE(840), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_identifier] = ACTIONS(2403), + [anon_sym_export] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_type] = ACTIONS(2403), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2431), + [anon_sym_namespace] = ACTIONS(2403), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1053), - [anon_sym_let] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(1043), + [anon_sym_let] = ACTIONS(2403), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(2403), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(2403), + [anon_sym_SQUOTE] = ACTIONS(2403), + [anon_sym_async] = ACTIONS(2403), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2431), + [anon_sym_new] = ACTIONS(2403), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -132063,58 +131476,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2431), - [sym_private_property_identifier] = ACTIONS(2431), - [anon_sym_static] = ACTIONS(2431), - [anon_sym_readonly] = ACTIONS(2431), - [anon_sym_get] = ACTIONS(2431), - [anon_sym_set] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_declare] = ACTIONS(2431), - [anon_sym_public] = ACTIONS(2431), - [anon_sym_private] = ACTIONS(2431), - [anon_sym_protected] = ACTIONS(2431), - [anon_sym_override] = ACTIONS(2431), - [anon_sym_module] = ACTIONS(2431), - [anon_sym_any] = ACTIONS(2431), - [anon_sym_number] = ACTIONS(2431), - [anon_sym_boolean] = ACTIONS(2431), - [anon_sym_string] = ACTIONS(2431), - [anon_sym_symbol] = ACTIONS(2431), - [anon_sym_object] = ACTIONS(2431), + [sym_number] = ACTIONS(2403), + [sym_private_property_identifier] = ACTIONS(2403), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_readonly] = ACTIONS(2403), + [anon_sym_get] = ACTIONS(2403), + [anon_sym_set] = ACTIONS(2403), + [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_declare] = ACTIONS(2403), + [anon_sym_public] = ACTIONS(2403), + [anon_sym_private] = ACTIONS(2403), + [anon_sym_protected] = ACTIONS(2403), + [anon_sym_override] = ACTIONS(2403), + [anon_sym_module] = ACTIONS(2403), + [anon_sym_any] = ACTIONS(2403), + [anon_sym_number] = ACTIONS(2403), + [anon_sym_boolean] = ACTIONS(2403), + [anon_sym_string] = ACTIONS(2403), + [anon_sym_symbol] = ACTIONS(2403), + [anon_sym_object] = ACTIONS(2403), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [844] = { - [sym_declaration] = STATE(5248), - [sym_variable_declaration] = STATE(5192), - [sym_lexical_declaration] = STATE(5192), - [sym_class_declaration] = STATE(5192), - [sym_function_declaration] = STATE(5192), - [sym_generator_function_declaration] = STATE(5192), - [sym_comment] = STATE(844), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(5192), - [sym_ambient_declaration] = STATE(5192), - [sym_abstract_class_declaration] = STATE(5192), - [sym_module] = STATE(5192), - [sym_internal_module] = STATE(5206), - [sym_import_alias] = STATE(5192), - [sym_interface_declaration] = STATE(5192), - [sym_enum_declaration] = STATE(5192), - [sym_type_alias_declaration] = STATE(5192), - [aux_sym_export_statement_repeat1] = STATE(5375), + [841] = { + [sym_declaration] = STATE(6491), + [sym_variable_declaration] = STATE(6360), + [sym_lexical_declaration] = STATE(6360), + [sym_class_declaration] = STATE(6360), + [sym_function_declaration] = STATE(6360), + [sym_generator_function_declaration] = STATE(6360), + [sym_comment] = STATE(841), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(6360), + [sym_ambient_declaration] = STATE(6360), + [sym_abstract_class_declaration] = STATE(6360), + [sym_module] = STATE(6360), + [sym_internal_module] = STATE(6385), + [sym_import_alias] = STATE(6360), + [sym_interface_declaration] = STATE(6360), + [sym_enum_declaration] = STATE(6360), + [sym_type_alias_declaration] = STATE(6360), + [aux_sym_export_statement_repeat1] = STATE(5201), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2936), + [anon_sym_type] = ACTIONS(2928), [anon_sym_EQ] = ACTIONS(1232), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2938), - [anon_sym_import] = ACTIONS(2940), - [anon_sym_var] = ACTIONS(2942), - [anon_sym_let] = ACTIONS(2944), - [anon_sym_const] = ACTIONS(2946), + [anon_sym_namespace] = ACTIONS(2796), + [anon_sym_import] = ACTIONS(2798), + [anon_sym_var] = ACTIONS(2800), + [anon_sym_let] = ACTIONS(2802), + [anon_sym_const] = ACTIONS(2804), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(211), [anon_sym_in] = ACTIONS(118), @@ -132122,9 +131535,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(211), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2948), - [anon_sym_async] = ACTIONS(2950), - [anon_sym_function] = ACTIONS(2952), + [anon_sym_class] = ACTIONS(2808), + [anon_sym_async] = ACTIONS(2810), + [anon_sym_function] = ACTIONS(2812), [anon_sym_EQ_GT] = ACTIONS(2934), [anon_sym_QMARK_DOT] = ACTIONS(211), [anon_sym_PLUS_EQ] = ACTIONS(2691), @@ -132169,45 +131582,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2696), [anon_sym_BQUOTE] = ACTIONS(211), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2954), - [anon_sym_module] = ACTIONS(2956), - [anon_sym_abstract] = ACTIONS(2958), + [anon_sym_declare] = ACTIONS(2814), + [anon_sym_module] = ACTIONS(2930), + [anon_sym_abstract] = ACTIONS(2818), [anon_sym_satisfies] = ACTIONS(211), - [anon_sym_global] = ACTIONS(2960), - [anon_sym_interface] = ACTIONS(2962), - [anon_sym_enum] = ACTIONS(2964), + [anon_sym_global] = ACTIONS(2932), + [anon_sym_interface] = ACTIONS(2820), + [anon_sym_enum] = ACTIONS(2822), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [845] = { - [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(845), - [sym_decorator] = STATE(5700), - [sym_function_signature] = STATE(1105), - [sym_ambient_declaration] = STATE(1105), - [sym_abstract_class_declaration] = STATE(1105), - [sym_module] = STATE(1105), - [sym_internal_module] = STATE(1102), - [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(5341), + [842] = { + [sym_declaration] = STATE(1086), + [sym_variable_declaration] = STATE(1100), + [sym_lexical_declaration] = STATE(1100), + [sym_class_declaration] = STATE(1100), + [sym_function_declaration] = STATE(1100), + [sym_generator_function_declaration] = STATE(1100), + [sym_comment] = STATE(842), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(1100), + [sym_ambient_declaration] = STATE(1100), + [sym_abstract_class_declaration] = STATE(1100), + [sym_module] = STATE(1100), + [sym_internal_module] = STATE(1094), + [sym_import_alias] = STATE(1100), + [sym_interface_declaration] = STATE(1100), + [sym_enum_declaration] = STATE(1100), + [sym_type_alias_declaration] = STATE(1100), + [aux_sym_export_statement_repeat1] = STATE(4991), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2916), [anon_sym_EQ] = ACTIONS(1232), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2830), - [anon_sym_import] = ACTIONS(2832), - [anon_sym_var] = ACTIONS(2834), - [anon_sym_let] = ACTIONS(2836), - [anon_sym_const] = ACTIONS(2838), + [anon_sym_namespace] = ACTIONS(2834), + [anon_sym_import] = ACTIONS(2836), + [anon_sym_var] = ACTIONS(2838), + [anon_sym_let] = ACTIONS(2840), + [anon_sym_const] = ACTIONS(2842), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(211), [anon_sym_in] = ACTIONS(118), @@ -132215,9 +131628,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(211), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(211), - [anon_sym_class] = ACTIONS(2842), - [anon_sym_async] = ACTIONS(2844), - [anon_sym_function] = ACTIONS(2846), + [anon_sym_class] = ACTIONS(2846), + [anon_sym_async] = ACTIONS(2848), + [anon_sym_function] = ACTIONS(2850), [anon_sym_EQ_GT] = ACTIONS(2934), [anon_sym_QMARK_DOT] = ACTIONS(211), [anon_sym_PLUS_EQ] = ACTIONS(2691), @@ -132262,45 +131675,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2696), [anon_sym_BQUOTE] = ACTIONS(211), [anon_sym_AT] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2848), + [anon_sym_declare] = ACTIONS(2852), [anon_sym_module] = ACTIONS(2918), - [anon_sym_abstract] = ACTIONS(2852), + [anon_sym_abstract] = ACTIONS(2856), [anon_sym_satisfies] = ACTIONS(211), [anon_sym_global] = ACTIONS(2920), - [anon_sym_interface] = ACTIONS(2854), - [anon_sym_enum] = ACTIONS(2856), + [anon_sym_interface] = ACTIONS(2858), + [anon_sym_enum] = ACTIONS(2860), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [846] = { - [sym_comment] = STATE(846), - [aux_sym_object_repeat1] = STATE(6165), - [aux_sym_object_pattern_repeat1] = STATE(6171), - [sym_identifier] = ACTIONS(2431), - [anon_sym_export] = ACTIONS(2431), - [anon_sym_STAR] = ACTIONS(2431), - [anon_sym_type] = ACTIONS(2431), - [anon_sym_EQ] = ACTIONS(1016), + [843] = { + [sym_comment] = STATE(843), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_identifier] = ACTIONS(2405), + [anon_sym_export] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_type] = ACTIONS(2405), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2431), + [anon_sym_namespace] = ACTIONS(2405), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), - [anon_sym_let] = ACTIONS(2431), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_let] = ACTIONS(2405), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(2431), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(2405), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2431), - [anon_sym_SQUOTE] = ACTIONS(2431), - [anon_sym_async] = ACTIONS(2431), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(2405), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2431), + [anon_sym_new] = ACTIONS(2405), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -132342,59 +131755,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2431), - [sym_private_property_identifier] = ACTIONS(2431), - [anon_sym_static] = ACTIONS(2431), - [anon_sym_readonly] = ACTIONS(2431), - [anon_sym_get] = ACTIONS(2431), - [anon_sym_set] = ACTIONS(2431), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_declare] = ACTIONS(2431), - [anon_sym_public] = ACTIONS(2431), - [anon_sym_private] = ACTIONS(2431), - [anon_sym_protected] = ACTIONS(2431), - [anon_sym_override] = ACTIONS(2431), - [anon_sym_module] = ACTIONS(2431), - [anon_sym_any] = ACTIONS(2431), - [anon_sym_number] = ACTIONS(2431), - [anon_sym_boolean] = ACTIONS(2431), - [anon_sym_string] = ACTIONS(2431), - [anon_sym_symbol] = ACTIONS(2431), - [anon_sym_object] = ACTIONS(2431), + [sym_number] = ACTIONS(2405), + [sym_private_property_identifier] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_readonly] = ACTIONS(2405), + [anon_sym_get] = ACTIONS(2405), + [anon_sym_set] = ACTIONS(2405), + [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_declare] = ACTIONS(2405), + [anon_sym_public] = ACTIONS(2405), + [anon_sym_private] = ACTIONS(2405), + [anon_sym_protected] = ACTIONS(2405), + [anon_sym_override] = ACTIONS(2405), + [anon_sym_module] = ACTIONS(2405), + [anon_sym_any] = ACTIONS(2405), + [anon_sym_number] = ACTIONS(2405), + [anon_sym_boolean] = ACTIONS(2405), + [anon_sym_string] = ACTIONS(2405), + [anon_sym_symbol] = ACTIONS(2405), + [anon_sym_object] = ACTIONS(2405), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [847] = { - [sym__call_signature] = STATE(7253), - [sym_comment] = STATE(847), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1117), + [844] = { + [sym_comment] = STATE(844), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_identifier] = ACTIONS(2403), + [anon_sym_export] = ACTIONS(2403), + [anon_sym_STAR] = ACTIONS(2403), + [anon_sym_type] = ACTIONS(2403), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), - [anon_sym_let] = ACTIONS(2968), + [anon_sym_namespace] = ACTIONS(2403), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_let] = ACTIONS(2403), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_RPAREN] = ACTIONS(1119), + [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1119), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1119), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(2403), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_DQUOTE] = ACTIONS(2403), + [anon_sym_SQUOTE] = ACTIONS(2403), + [anon_sym_async] = ACTIONS(2403), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2968), + [anon_sym_new] = ACTIONS(2403), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -132423,7 +131835,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), + [anon_sym_LT] = ACTIONS(2693), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -132436,49 +131848,238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_readonly] = ACTIONS(2968), - [anon_sym_get] = ACTIONS(2968), - [anon_sym_set] = ACTIONS(2968), - [anon_sym_QMARK] = ACTIONS(1119), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2968), - [anon_sym_private] = ACTIONS(2968), - [anon_sym_protected] = ACTIONS(2968), - [anon_sym_override] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_object] = ACTIONS(2968), + [sym_number] = ACTIONS(2403), + [sym_private_property_identifier] = ACTIONS(2403), + [anon_sym_static] = ACTIONS(2403), + [anon_sym_readonly] = ACTIONS(2403), + [anon_sym_get] = ACTIONS(2403), + [anon_sym_set] = ACTIONS(2403), + [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_declare] = ACTIONS(2403), + [anon_sym_public] = ACTIONS(2403), + [anon_sym_private] = ACTIONS(2403), + [anon_sym_protected] = ACTIONS(2403), + [anon_sym_override] = ACTIONS(2403), + [anon_sym_module] = ACTIONS(2403), + [anon_sym_any] = ACTIONS(2403), + [anon_sym_number] = ACTIONS(2403), + [anon_sym_boolean] = ACTIONS(2403), + [anon_sym_string] = ACTIONS(2403), + [anon_sym_symbol] = ACTIONS(2403), + [anon_sym_object] = ACTIONS(2403), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [848] = { - [sym__call_signature] = STATE(7253), - [sym_comment] = STATE(848), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [845] = { + [sym_comment] = STATE(845), + [aux_sym_object_repeat1] = STATE(5868), + [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_identifier] = ACTIONS(2405), + [anon_sym_export] = ACTIONS(2405), + [anon_sym_STAR] = ACTIONS(2405), + [anon_sym_type] = ACTIONS(2405), + [anon_sym_EQ] = ACTIONS(960), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2405), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(1041), + [anon_sym_let] = ACTIONS(2405), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(2405), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(2405), + [anon_sym_SQUOTE] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(2405), + [anon_sym_EQ_GT] = ACTIONS(979), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2405), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2693), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [sym_number] = ACTIONS(2405), + [sym_private_property_identifier] = ACTIONS(2405), + [anon_sym_static] = ACTIONS(2405), + [anon_sym_readonly] = ACTIONS(2405), + [anon_sym_get] = ACTIONS(2405), + [anon_sym_set] = ACTIONS(2405), + [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_declare] = ACTIONS(2405), + [anon_sym_public] = ACTIONS(2405), + [anon_sym_private] = ACTIONS(2405), + [anon_sym_protected] = ACTIONS(2405), + [anon_sym_override] = ACTIONS(2405), + [anon_sym_module] = ACTIONS(2405), + [anon_sym_any] = ACTIONS(2405), + [anon_sym_number] = ACTIONS(2405), + [anon_sym_boolean] = ACTIONS(2405), + [anon_sym_string] = ACTIONS(2405), + [anon_sym_symbol] = ACTIONS(2405), + [anon_sym_object] = ACTIONS(2405), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(211), + [sym_html_comment] = ACTIONS(5), + }, + [846] = { + [sym_declaration] = STATE(1332), + [sym_variable_declaration] = STATE(1444), + [sym_lexical_declaration] = STATE(1444), + [sym_class_declaration] = STATE(1444), + [sym_function_declaration] = STATE(1444), + [sym_generator_function_declaration] = STATE(1444), + [sym_comment] = STATE(846), + [sym_decorator] = STATE(5410), + [sym_function_signature] = STATE(1444), + [sym_ambient_declaration] = STATE(1444), + [sym_abstract_class_declaration] = STATE(1444), + [sym_module] = STATE(1444), + [sym_internal_module] = STATE(1399), + [sym_import_alias] = STATE(1444), + [sym_interface_declaration] = STATE(1444), + [sym_enum_declaration] = STATE(1444), + [sym_type_alias_declaration] = STATE(1444), + [aux_sym_export_statement_repeat1] = STATE(5232), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2910), + [anon_sym_EQ] = ACTIONS(1232), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2872), + [anon_sym_import] = ACTIONS(2874), + [anon_sym_var] = ACTIONS(2876), + [anon_sym_let] = ACTIONS(2878), + [anon_sym_const] = ACTIONS(2880), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(211), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(211), + [anon_sym_LBRACK] = ACTIONS(211), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(211), + [anon_sym_class] = ACTIONS(2884), + [anon_sym_async] = ACTIONS(2886), + [anon_sym_function] = ACTIONS(2888), + [anon_sym_EQ_GT] = ACTIONS(2934), + [anon_sym_QMARK_DOT] = ACTIONS(211), + [anon_sym_PLUS_EQ] = ACTIONS(2691), + [anon_sym_DASH_EQ] = ACTIONS(2691), + [anon_sym_STAR_EQ] = ACTIONS(2691), + [anon_sym_SLASH_EQ] = ACTIONS(2691), + [anon_sym_PERCENT_EQ] = ACTIONS(2691), + [anon_sym_CARET_EQ] = ACTIONS(2691), + [anon_sym_AMP_EQ] = ACTIONS(2691), + [anon_sym_PIPE_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2691), + [anon_sym_LT_LT_EQ] = ACTIONS(2691), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2691), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2691), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2691), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(211), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(211), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(211), + [anon_sym_GT_EQ] = ACTIONS(211), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(211), + [anon_sym_PLUS_PLUS] = ACTIONS(211), + [anon_sym_DASH_DASH] = ACTIONS(211), + [aux_sym_comment_token1] = ACTIONS(2696), + [anon_sym_BQUOTE] = ACTIONS(211), + [anon_sym_AT] = ACTIONS(2698), + [anon_sym_declare] = ACTIONS(2890), + [anon_sym_module] = ACTIONS(2912), + [anon_sym_abstract] = ACTIONS(2894), + [anon_sym_satisfies] = ACTIONS(211), + [anon_sym_global] = ACTIONS(2914), + [anon_sym_interface] = ACTIONS(2896), + [anon_sym_enum] = ACTIONS(2898), + [sym__automatic_semicolon] = ACTIONS(211), + [sym__ternary_qmark] = ACTIONS(211), + [sym_html_comment] = ACTIONS(5), + }, + [847] = { + [sym__call_signature] = STATE(7068), + [sym_comment] = STATE(847), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(2966), [anon_sym_export] = ACTIONS(2968), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(1105), + [anon_sym_RBRACE] = ACTIONS(1105), [anon_sym_let] = ACTIONS(2968), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_RPAREN] = ACTIONS(1105), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), + [anon_sym_COLON] = ACTIONS(1105), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_RBRACK] = ACTIONS(1105), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(2968), @@ -132531,7 +132132,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2968), [anon_sym_get] = ACTIONS(2968), [anon_sym_set] = ACTIONS(2968), - [anon_sym_QMARK] = ACTIONS(124), + [anon_sym_QMARK] = ACTIONS(1105), [anon_sym_declare] = ACTIONS(2968), [anon_sym_public] = ACTIONS(2968), [anon_sym_private] = ACTIONS(2968), @@ -132548,35 +132149,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [849] = { - [sym__call_signature] = STATE(7520), - [sym_comment] = STATE(849), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(2978), - [anon_sym_export] = ACTIONS(2980), + [848] = { + [sym__call_signature] = STATE(7068), + [sym_comment] = STATE(848), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(2966), + [anon_sym_export] = ACTIONS(2968), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(213), + [anon_sym_type] = ACTIONS(2968), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2980), - [anon_sym_COMMA] = ACTIONS(216), - [anon_sym_RBRACE] = ACTIONS(216), - [anon_sym_let] = ACTIONS(2980), + [anon_sym_namespace] = ACTIONS(2968), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_RBRACE] = ACTIONS(124), + [anon_sym_let] = ACTIONS(2968), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_RPAREN] = ACTIONS(216), + [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(216), + [anon_sym_COLON] = ACTIONS(124), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(216), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2980), + [anon_sym_async] = ACTIONS(2968), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_EQ_GT] = ACTIONS(153), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2980), + [anon_sym_new] = ACTIONS(2968), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -132618,49 +132219,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_readonly] = ACTIONS(2980), - [anon_sym_get] = ACTIONS(2980), - [anon_sym_set] = ACTIONS(2980), + [anon_sym_static] = ACTIONS(2968), + [anon_sym_readonly] = ACTIONS(2968), + [anon_sym_get] = ACTIONS(2968), + [anon_sym_set] = ACTIONS(2968), [anon_sym_QMARK] = ACTIONS(124), - [anon_sym_declare] = ACTIONS(2980), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_override] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_any] = ACTIONS(2980), - [anon_sym_number] = ACTIONS(2980), - [anon_sym_boolean] = ACTIONS(2980), - [anon_sym_string] = ACTIONS(2980), - [anon_sym_symbol] = ACTIONS(2980), - [anon_sym_object] = ACTIONS(2980), + [anon_sym_declare] = ACTIONS(2968), + [anon_sym_public] = ACTIONS(2968), + [anon_sym_private] = ACTIONS(2968), + [anon_sym_protected] = ACTIONS(2968), + [anon_sym_override] = ACTIONS(2968), + [anon_sym_module] = ACTIONS(2968), + [anon_sym_any] = ACTIONS(2968), + [anon_sym_number] = ACTIONS(2968), + [anon_sym_boolean] = ACTIONS(2968), + [anon_sym_string] = ACTIONS(2968), + [anon_sym_symbol] = ACTIONS(2968), + [anon_sym_object] = ACTIONS(2968), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [850] = { - [sym__call_signature] = STATE(7520), - [sym_comment] = STATE(850), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [849] = { + [sym__call_signature] = STATE(7230), + [sym_comment] = STATE(849), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(2978), [anon_sym_export] = ACTIONS(2980), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(1135), + [anon_sym_EQ] = ACTIONS(213), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2980), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(216), + [anon_sym_RBRACE] = ACTIONS(216), [anon_sym_let] = ACTIONS(2980), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_RPAREN] = ACTIONS(118), + [anon_sym_RPAREN] = ACTIONS(216), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(216), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(216), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(2980), @@ -132713,6 +132314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2980), [anon_sym_get] = ACTIONS(2980), [anon_sym_set] = ACTIONS(2980), + [anon_sym_QMARK] = ACTIONS(124), [anon_sym_declare] = ACTIONS(2980), [anon_sym_public] = ACTIONS(2980), [anon_sym_private] = ACTIONS(2980), @@ -132729,16 +132331,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [851] = { - [sym__call_signature] = STATE(7520), - [sym_comment] = STATE(851), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [850] = { + [sym__call_signature] = STATE(7230), + [sym_comment] = STATE(850), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(2978), [anon_sym_export] = ACTIONS(2980), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1165), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2980), [anon_sym_COMMA] = ACTIONS(118), @@ -132819,33 +132421,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [852] = { - [sym__call_signature] = STATE(7204), - [sym_comment] = STATE(852), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(2982), - [anon_sym_export] = ACTIONS(2984), + [851] = { + [sym__call_signature] = STATE(7230), + [sym_comment] = STATE(851), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2984), + [anon_sym_namespace] = ACTIONS(2980), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2984), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_let] = ACTIONS(2980), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_RPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1201), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2986), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2973), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2984), + [anon_sym_new] = ACTIONS(2980), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -132887,52 +132491,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2984), - [anon_sym_readonly] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(2984), - [anon_sym_set] = ACTIONS(2984), - [anon_sym_declare] = ACTIONS(2984), - [anon_sym_public] = ACTIONS(2984), - [anon_sym_private] = ACTIONS(2984), - [anon_sym_protected] = ACTIONS(2984), - [anon_sym_override] = ACTIONS(2984), - [anon_sym_module] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(2984), - [anon_sym_number] = ACTIONS(2984), - [anon_sym_boolean] = ACTIONS(2984), - [anon_sym_string] = ACTIONS(2984), - [anon_sym_symbol] = ACTIONS(2984), - [anon_sym_object] = ACTIONS(2984), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_readonly] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_declare] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_protected] = ACTIONS(2980), + [anon_sym_override] = ACTIONS(2980), + [anon_sym_module] = ACTIONS(2980), + [anon_sym_any] = ACTIONS(2980), + [anon_sym_number] = ACTIONS(2980), + [anon_sym_boolean] = ACTIONS(2980), + [anon_sym_string] = ACTIONS(2980), + [anon_sym_symbol] = ACTIONS(2980), + [anon_sym_object] = ACTIONS(2980), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [853] = { - [sym__call_signature] = STATE(7204), - [sym_comment] = STATE(853), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [852] = { + [sym__call_signature] = STATE(7260), + [sym_comment] = STATE(852), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(2982), [anon_sym_export] = ACTIONS(2984), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2984), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_let] = ACTIONS(2984), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_of] = ACTIONS(1206), + [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1197), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_function] = ACTIONS(2986), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2984), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -132997,33 +132600,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [854] = { - [sym__call_signature] = STATE(7258), - [sym_comment] = STATE(854), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(2990), - [anon_sym_export] = ACTIONS(2992), + [853] = { + [sym__call_signature] = STATE(7260), + [sym_comment] = STATE(853), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(2982), + [anon_sym_export] = ACTIONS(2984), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_type] = ACTIONS(2984), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2992), + [anon_sym_namespace] = ACTIONS(2984), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2992), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_let] = ACTIONS(2984), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2992), + [anon_sym_async] = ACTIONS(2984), [anon_sym_function] = ACTIONS(2988), - [anon_sym_EQ_GT] = ACTIONS(1191), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2992), + [anon_sym_new] = ACTIONS(2984), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -133065,52 +132668,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), + [anon_sym_static] = ACTIONS(2984), + [anon_sym_readonly] = ACTIONS(2984), + [anon_sym_get] = ACTIONS(2984), + [anon_sym_set] = ACTIONS(2984), + [anon_sym_declare] = ACTIONS(2984), + [anon_sym_public] = ACTIONS(2984), + [anon_sym_private] = ACTIONS(2984), + [anon_sym_protected] = ACTIONS(2984), + [anon_sym_override] = ACTIONS(2984), + [anon_sym_module] = ACTIONS(2984), + [anon_sym_any] = ACTIONS(2984), + [anon_sym_number] = ACTIONS(2984), + [anon_sym_boolean] = ACTIONS(2984), + [anon_sym_string] = ACTIONS(2984), + [anon_sym_symbol] = ACTIONS(2984), + [anon_sym_object] = ACTIONS(2984), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [855] = { - [sym__call_signature] = STATE(7204), - [sym_comment] = STATE(855), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [854] = { + [sym__call_signature] = STATE(7260), + [sym_comment] = STATE(854), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(2982), [anon_sym_export] = ACTIONS(2984), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2984), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_let] = ACTIONS(2984), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), + [anon_sym_in] = ACTIONS(1203), + [anon_sym_of] = ACTIONS(1206), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1199), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2994), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2984), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -133175,34 +132778,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [856] = { - [sym__call_signature] = STATE(7520), - [sym_comment] = STATE(856), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(2978), - [anon_sym_export] = ACTIONS(2980), + [855] = { + [sym__call_signature] = STATE(7099), + [sym_comment] = STATE(855), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(2990), + [anon_sym_export] = ACTIONS(2992), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2980), - [anon_sym_EQ] = ACTIONS(1135), + [anon_sym_type] = ACTIONS(2992), + [anon_sym_EQ] = ACTIONS(1185), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2980), - [anon_sym_COMMA] = ACTIONS(1208), - [anon_sym_RBRACE] = ACTIONS(1208), - [anon_sym_let] = ACTIONS(2980), + [anon_sym_namespace] = ACTIONS(2992), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_let] = ACTIONS(2992), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1119), + [anon_sym_of] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1208), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2980), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_async] = ACTIONS(2992), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_EQ_GT] = ACTIONS(1179), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2980), + [anon_sym_new] = ACTIONS(2992), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -133244,36 +132846,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2980), - [anon_sym_readonly] = ACTIONS(2980), - [anon_sym_get] = ACTIONS(2980), - [anon_sym_set] = ACTIONS(2980), - [anon_sym_declare] = ACTIONS(2980), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_override] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(2980), - [anon_sym_any] = ACTIONS(2980), - [anon_sym_number] = ACTIONS(2980), - [anon_sym_boolean] = ACTIONS(2980), - [anon_sym_string] = ACTIONS(2980), - [anon_sym_symbol] = ACTIONS(2980), - [anon_sym_object] = ACTIONS(2980), + [anon_sym_static] = ACTIONS(2992), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_get] = ACTIONS(2992), + [anon_sym_set] = ACTIONS(2992), + [anon_sym_declare] = ACTIONS(2992), + [anon_sym_public] = ACTIONS(2992), + [anon_sym_private] = ACTIONS(2992), + [anon_sym_protected] = ACTIONS(2992), + [anon_sym_override] = ACTIONS(2992), + [anon_sym_module] = ACTIONS(2992), + [anon_sym_any] = ACTIONS(2992), + [anon_sym_number] = ACTIONS(2992), + [anon_sym_boolean] = ACTIONS(2992), + [anon_sym_string] = ACTIONS(2992), + [anon_sym_symbol] = ACTIONS(2992), + [anon_sym_object] = ACTIONS(2992), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [857] = { - [sym__call_signature] = STATE(7204), - [sym_comment] = STATE(857), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [856] = { + [sym__call_signature] = STATE(7260), + [sym_comment] = STATE(856), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(2982), [anon_sym_export] = ACTIONS(2984), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2984), [anon_sym_COMMA] = ACTIONS(118), @@ -133282,13 +132885,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1177), + [anon_sym_COLON] = ACTIONS(1201), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2996), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_function] = ACTIONS(2994), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2984), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -133353,33 +132956,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [858] = { - [sym__call_signature] = STATE(7258), - [sym_comment] = STATE(858), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(2990), - [anon_sym_export] = ACTIONS(2992), + [857] = { + [sym__call_signature] = STATE(7260), + [sym_comment] = STATE(857), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(2982), + [anon_sym_export] = ACTIONS(2984), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_type] = ACTIONS(2984), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2992), + [anon_sym_namespace] = ACTIONS(2984), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2992), + [anon_sym_let] = ACTIONS(2984), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1199), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_EQ_GT] = ACTIONS(1191), + [anon_sym_async] = ACTIONS(2984), + [anon_sym_function] = ACTIONS(2996), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2992), + [anon_sym_new] = ACTIONS(2984), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -133421,37 +133024,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_override] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_object] = ACTIONS(2992), + [anon_sym_static] = ACTIONS(2984), + [anon_sym_readonly] = ACTIONS(2984), + [anon_sym_get] = ACTIONS(2984), + [anon_sym_set] = ACTIONS(2984), + [anon_sym_declare] = ACTIONS(2984), + [anon_sym_public] = ACTIONS(2984), + [anon_sym_private] = ACTIONS(2984), + [anon_sym_protected] = ACTIONS(2984), + [anon_sym_override] = ACTIONS(2984), + [anon_sym_module] = ACTIONS(2984), + [anon_sym_any] = ACTIONS(2984), + [anon_sym_number] = ACTIONS(2984), + [anon_sym_boolean] = ACTIONS(2984), + [anon_sym_string] = ACTIONS(2984), + [anon_sym_symbol] = ACTIONS(2984), + [anon_sym_object] = ACTIONS(2984), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [859] = { - [sym__call_signature] = STATE(7204), - [sym_comment] = STATE(859), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [858] = { + [sym__call_signature] = STATE(7260), + [sym_comment] = STATE(858), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(2982), [anon_sym_export] = ACTIONS(2984), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2984), [anon_sym_COMMA] = ACTIONS(118), @@ -133460,13 +133063,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1179), + [anon_sym_COLON] = ACTIONS(1195), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_function] = ACTIONS(2728), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2984), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -133531,31 +133134,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, + [859] = { + [sym__call_signature] = STATE(7230), + [sym_comment] = STATE(859), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(1165), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_COMMA] = ACTIONS(1208), + [anon_sym_RBRACE] = ACTIONS(1208), + [anon_sym_let] = ACTIONS(2980), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(1208), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_async] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2973), + [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2980), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_readonly] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_declare] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_protected] = ACTIONS(2980), + [anon_sym_override] = ACTIONS(2980), + [anon_sym_module] = ACTIONS(2980), + [anon_sym_any] = ACTIONS(2980), + [anon_sym_number] = ACTIONS(2980), + [anon_sym_boolean] = ACTIONS(2980), + [anon_sym_string] = ACTIONS(2980), + [anon_sym_symbol] = ACTIONS(2980), + [anon_sym_object] = ACTIONS(2980), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(211), + [sym_html_comment] = ACTIONS(5), + }, [860] = { - [sym__call_signature] = STATE(7204), + [sym__call_signature] = STATE(7260), [sym_comment] = STATE(860), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(2982), [anon_sym_export] = ACTIONS(2984), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2984), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_let] = ACTIONS(2984), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1177), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_function] = ACTIONS(2998), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2984), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -133621,32 +133313,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [861] = { - [sym__call_signature] = STATE(7204), + [sym__call_signature] = STATE(7099), [sym_comment] = STATE(861), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(2982), - [anon_sym_export] = ACTIONS(2984), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(2990), + [anon_sym_export] = ACTIONS(2992), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_type] = ACTIONS(2992), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2984), + [anon_sym_namespace] = ACTIONS(2992), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(2984), + [anon_sym_let] = ACTIONS(2992), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1197), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2984), - [anon_sym_function] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(2992), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_EQ_GT] = ACTIONS(1179), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2984), + [anon_sym_new] = ACTIONS(2992), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -133688,37 +133380,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2984), - [anon_sym_readonly] = ACTIONS(2984), - [anon_sym_get] = ACTIONS(2984), - [anon_sym_set] = ACTIONS(2984), - [anon_sym_declare] = ACTIONS(2984), - [anon_sym_public] = ACTIONS(2984), - [anon_sym_private] = ACTIONS(2984), - [anon_sym_protected] = ACTIONS(2984), - [anon_sym_override] = ACTIONS(2984), - [anon_sym_module] = ACTIONS(2984), - [anon_sym_any] = ACTIONS(2984), - [anon_sym_number] = ACTIONS(2984), - [anon_sym_boolean] = ACTIONS(2984), - [anon_sym_string] = ACTIONS(2984), - [anon_sym_symbol] = ACTIONS(2984), - [anon_sym_object] = ACTIONS(2984), + [anon_sym_static] = ACTIONS(2992), + [anon_sym_readonly] = ACTIONS(2992), + [anon_sym_get] = ACTIONS(2992), + [anon_sym_set] = ACTIONS(2992), + [anon_sym_declare] = ACTIONS(2992), + [anon_sym_public] = ACTIONS(2992), + [anon_sym_private] = ACTIONS(2992), + [anon_sym_protected] = ACTIONS(2992), + [anon_sym_override] = ACTIONS(2992), + [anon_sym_module] = ACTIONS(2992), + [anon_sym_any] = ACTIONS(2992), + [anon_sym_number] = ACTIONS(2992), + [anon_sym_boolean] = ACTIONS(2992), + [anon_sym_string] = ACTIONS(2992), + [anon_sym_symbol] = ACTIONS(2992), + [anon_sym_object] = ACTIONS(2992), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [862] = { - [sym__call_signature] = STATE(7204), + [sym__call_signature] = STATE(7260), [sym_comment] = STATE(862), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(2982), [anon_sym_export] = ACTIONS(2984), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2984), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2984), [anon_sym_COMMA] = ACTIONS(118), @@ -133733,7 +133425,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(2984), [anon_sym_function] = ACTIONS(2988), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2984), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -133799,15 +133491,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [863] = { - [sym__call_signature] = STATE(7621), + [sym__call_signature] = STATE(7299), [sym_comment] = STATE(863), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(3000), [anon_sym_export] = ACTIONS(3002), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(1264), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3002), [anon_sym_LBRACE] = ACTIONS(118), @@ -133821,7 +133513,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3002), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1270), + [anon_sym_EQ_GT] = ACTIONS(1266), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3002), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -133887,10 +133579,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [864] = { - [sym__call_signature] = STATE(7506), + [sym__call_signature] = STATE(7323), [sym_comment] = STATE(864), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(3004), [anon_sym_export] = ACTIONS(3006), [anon_sym_STAR] = ACTIONS(118), @@ -133975,15 +133667,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [865] = { - [sym__call_signature] = STATE(7621), + [sym__call_signature] = STATE(7299), [sym_comment] = STATE(865), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(3000), [anon_sym_export] = ACTIONS(3002), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3002), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1260), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3002), [anon_sym_LBRACE] = ACTIONS(118), @@ -133997,7 +133689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3002), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1270), + [anon_sym_EQ_GT] = ACTIONS(1266), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3002), [anon_sym_PLUS_EQ] = ACTIONS(159), @@ -134063,18 +133755,192 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [866] = { - [sym__call_signature] = STATE(7389), + [sym__call_signature] = STATE(7323), [sym_comment] = STATE(866), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(3004), + [anon_sym_export] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(3006), + [anon_sym_EQ] = ACTIONS(1215), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(3006), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_let] = ACTIONS(3006), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_in] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(216), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_async] = ACTIONS(3006), + [anon_sym_function] = ACTIONS(2973), + [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(3006), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_static] = ACTIONS(3006), + [anon_sym_readonly] = ACTIONS(3006), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_declare] = ACTIONS(3006), + [anon_sym_public] = ACTIONS(3006), + [anon_sym_private] = ACTIONS(3006), + [anon_sym_protected] = ACTIONS(3006), + [anon_sym_override] = ACTIONS(3006), + [anon_sym_module] = ACTIONS(3006), + [anon_sym_any] = ACTIONS(3006), + [anon_sym_number] = ACTIONS(3006), + [anon_sym_boolean] = ACTIONS(3006), + [anon_sym_string] = ACTIONS(3006), + [anon_sym_symbol] = ACTIONS(3006), + [anon_sym_object] = ACTIONS(3006), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(211), + [sym_html_comment] = ACTIONS(5), + }, + [867] = { + [sym_catch_clause] = STATE(896), + [sym_finally_clause] = STATE(963), + [sym_comment] = STATE(867), [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3010), + [anon_sym_export] = ACTIONS(3008), + [anon_sym_default] = ACTIONS(3008), + [anon_sym_type] = ACTIONS(3008), + [anon_sym_namespace] = ACTIONS(3008), + [anon_sym_LBRACE] = ACTIONS(3008), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_typeof] = ACTIONS(3008), + [anon_sym_import] = ACTIONS(3008), + [anon_sym_with] = ACTIONS(3008), + [anon_sym_var] = ACTIONS(3008), + [anon_sym_let] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3008), + [anon_sym_BANG] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3008), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_switch] = ACTIONS(3008), + [anon_sym_for] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_await] = ACTIONS(3008), + [anon_sym_while] = ACTIONS(3008), + [anon_sym_do] = ACTIONS(3008), + [anon_sym_try] = ACTIONS(3008), + [anon_sym_break] = ACTIONS(3008), + [anon_sym_continue] = ACTIONS(3008), + [anon_sym_debugger] = ACTIONS(3008), + [anon_sym_return] = ACTIONS(3008), + [anon_sym_throw] = ACTIONS(3008), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_case] = ACTIONS(3008), + [anon_sym_catch] = ACTIONS(3010), + [anon_sym_finally] = ACTIONS(3012), + [anon_sym_yield] = ACTIONS(3008), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_LTtemplate_GT] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(3008), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_class] = ACTIONS(3008), + [anon_sym_async] = ACTIONS(3008), + [anon_sym_function] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3008), + [anon_sym_using] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3008), + [anon_sym_DASH] = ACTIONS(3008), + [anon_sym_SLASH] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_TILDE] = ACTIONS(3008), + [anon_sym_void] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3008), + [anon_sym_PLUS_PLUS] = ACTIONS(3008), + [anon_sym_DASH_DASH] = ACTIONS(3008), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3008), + [sym_number] = ACTIONS(3008), + [sym_private_property_identifier] = ACTIONS(3008), + [sym_this] = ACTIONS(3008), + [sym_super] = ACTIONS(3008), + [sym_true] = ACTIONS(3008), + [sym_false] = ACTIONS(3008), + [sym_null] = ACTIONS(3008), + [sym_undefined] = ACTIONS(3008), + [anon_sym_AT] = ACTIONS(3008), + [anon_sym_static] = ACTIONS(3008), + [anon_sym_readonly] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3008), + [anon_sym_set] = ACTIONS(3008), + [anon_sym_declare] = ACTIONS(3008), + [anon_sym_public] = ACTIONS(3008), + [anon_sym_private] = ACTIONS(3008), + [anon_sym_protected] = ACTIONS(3008), + [anon_sym_override] = ACTIONS(3008), + [anon_sym_module] = ACTIONS(3008), + [anon_sym_any] = ACTIONS(3008), + [anon_sym_number] = ACTIONS(3008), + [anon_sym_boolean] = ACTIONS(3008), + [anon_sym_string] = ACTIONS(3008), + [anon_sym_symbol] = ACTIONS(3008), + [anon_sym_object] = ACTIONS(3008), + [anon_sym_abstract] = ACTIONS(3008), + [anon_sym_interface] = ACTIONS(3008), + [anon_sym_enum] = ACTIONS(3008), + [sym_html_comment] = ACTIONS(5), + }, + [868] = { + [sym__call_signature] = STATE(7206), + [sym_comment] = STATE(868), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(3014), + [anon_sym_export] = ACTIONS(3016), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3010), + [anon_sym_type] = ACTIONS(3016), [anon_sym_EQ] = ACTIONS(1232), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_let] = ACTIONS(3016), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), @@ -134082,11 +133948,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3010), - [anon_sym_function] = ACTIONS(2996), + [anon_sym_async] = ACTIONS(3016), + [anon_sym_function] = ACTIONS(2986), [anon_sym_EQ_GT] = ACTIONS(1238), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3016), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -134128,40 +133994,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3010), - [anon_sym_readonly] = ACTIONS(3010), - [anon_sym_get] = ACTIONS(3010), - [anon_sym_set] = ACTIONS(3010), - [anon_sym_declare] = ACTIONS(3010), - [anon_sym_public] = ACTIONS(3010), - [anon_sym_private] = ACTIONS(3010), - [anon_sym_protected] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3010), - [anon_sym_module] = ACTIONS(3010), - [anon_sym_any] = ACTIONS(3010), - [anon_sym_number] = ACTIONS(3010), - [anon_sym_boolean] = ACTIONS(3010), - [anon_sym_string] = ACTIONS(3010), - [anon_sym_symbol] = ACTIONS(3010), - [anon_sym_object] = ACTIONS(3010), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_readonly] = ACTIONS(3016), + [anon_sym_get] = ACTIONS(3016), + [anon_sym_set] = ACTIONS(3016), + [anon_sym_declare] = ACTIONS(3016), + [anon_sym_public] = ACTIONS(3016), + [anon_sym_private] = ACTIONS(3016), + [anon_sym_protected] = ACTIONS(3016), + [anon_sym_override] = ACTIONS(3016), + [anon_sym_module] = ACTIONS(3016), + [anon_sym_any] = ACTIONS(3016), + [anon_sym_number] = ACTIONS(3016), + [anon_sym_boolean] = ACTIONS(3016), + [anon_sym_string] = ACTIONS(3016), + [anon_sym_symbol] = ACTIONS(3016), + [anon_sym_object] = ACTIONS(3016), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [867] = { - [sym__call_signature] = STATE(7389), - [sym_comment] = STATE(867), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3010), + [869] = { + [sym__call_signature] = STATE(7206), + [sym_comment] = STATE(869), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(3014), + [anon_sym_export] = ACTIONS(3016), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3010), + [anon_sym_type] = ACTIONS(3016), [anon_sym_EQ] = ACTIONS(1232), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_let] = ACTIONS(3016), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), @@ -134169,11 +134035,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3010), + [anon_sym_async] = ACTIONS(3016), [anon_sym_function] = ACTIONS(2988), [anon_sym_EQ_GT] = ACTIONS(1238), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3016), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -134215,53 +134081,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3010), - [anon_sym_readonly] = ACTIONS(3010), - [anon_sym_get] = ACTIONS(3010), - [anon_sym_set] = ACTIONS(3010), - [anon_sym_declare] = ACTIONS(3010), - [anon_sym_public] = ACTIONS(3010), - [anon_sym_private] = ACTIONS(3010), - [anon_sym_protected] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3010), - [anon_sym_module] = ACTIONS(3010), - [anon_sym_any] = ACTIONS(3010), - [anon_sym_number] = ACTIONS(3010), - [anon_sym_boolean] = ACTIONS(3010), - [anon_sym_string] = ACTIONS(3010), - [anon_sym_symbol] = ACTIONS(3010), - [anon_sym_object] = ACTIONS(3010), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_readonly] = ACTIONS(3016), + [anon_sym_get] = ACTIONS(3016), + [anon_sym_set] = ACTIONS(3016), + [anon_sym_declare] = ACTIONS(3016), + [anon_sym_public] = ACTIONS(3016), + [anon_sym_private] = ACTIONS(3016), + [anon_sym_protected] = ACTIONS(3016), + [anon_sym_override] = ACTIONS(3016), + [anon_sym_module] = ACTIONS(3016), + [anon_sym_any] = ACTIONS(3016), + [anon_sym_number] = ACTIONS(3016), + [anon_sym_boolean] = ACTIONS(3016), + [anon_sym_string] = ACTIONS(3016), + [anon_sym_symbol] = ACTIONS(3016), + [anon_sym_object] = ACTIONS(3016), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [868] = { - [sym__call_signature] = STATE(7179), - [sym_comment] = STATE(868), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(3012), - [anon_sym_export] = ACTIONS(3014), + [870] = { + [sym__call_signature] = STATE(7206), + [sym_comment] = STATE(870), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(3014), + [anon_sym_export] = ACTIONS(3016), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3014), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_type] = ACTIONS(3016), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3014), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3014), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_let] = ACTIONS(3016), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3014), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(3016), + [anon_sym_function] = ACTIONS(2988), + [anon_sym_EQ_GT] = ACTIONS(1238), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -134303,39 +134168,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3014), - [anon_sym_readonly] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(3014), - [anon_sym_set] = ACTIONS(3014), - [anon_sym_declare] = ACTIONS(3014), - [anon_sym_public] = ACTIONS(3014), - [anon_sym_private] = ACTIONS(3014), - [anon_sym_protected] = ACTIONS(3014), - [anon_sym_override] = ACTIONS(3014), - [anon_sym_module] = ACTIONS(3014), - [anon_sym_any] = ACTIONS(3014), - [anon_sym_number] = ACTIONS(3014), - [anon_sym_boolean] = ACTIONS(3014), - [anon_sym_string] = ACTIONS(3014), - [anon_sym_symbol] = ACTIONS(3014), - [anon_sym_object] = ACTIONS(3014), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_readonly] = ACTIONS(3016), + [anon_sym_get] = ACTIONS(3016), + [anon_sym_set] = ACTIONS(3016), + [anon_sym_declare] = ACTIONS(3016), + [anon_sym_public] = ACTIONS(3016), + [anon_sym_private] = ACTIONS(3016), + [anon_sym_protected] = ACTIONS(3016), + [anon_sym_override] = ACTIONS(3016), + [anon_sym_module] = ACTIONS(3016), + [anon_sym_any] = ACTIONS(3016), + [anon_sym_number] = ACTIONS(3016), + [anon_sym_boolean] = ACTIONS(3016), + [anon_sym_string] = ACTIONS(3016), + [anon_sym_symbol] = ACTIONS(3016), + [anon_sym_object] = ACTIONS(3016), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [869] = { - [sym__call_signature] = STATE(7389), - [sym_comment] = STATE(869), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3010), + [871] = { + [sym__call_signature] = STATE(7206), + [sym_comment] = STATE(871), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(3014), + [anon_sym_export] = ACTIONS(3016), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3010), + [anon_sym_type] = ACTIONS(3016), [anon_sym_EQ] = ACTIONS(1232), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_let] = ACTIONS(3016), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), @@ -134343,11 +134209,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3010), - [anon_sym_function] = ACTIONS(2994), + [anon_sym_async] = ACTIONS(3016), + [anon_sym_function] = ACTIONS(2996), [anon_sym_EQ_GT] = ACTIONS(1238), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3016), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -134389,53 +134255,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3010), - [anon_sym_readonly] = ACTIONS(3010), - [anon_sym_get] = ACTIONS(3010), - [anon_sym_set] = ACTIONS(3010), - [anon_sym_declare] = ACTIONS(3010), - [anon_sym_public] = ACTIONS(3010), - [anon_sym_private] = ACTIONS(3010), - [anon_sym_protected] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3010), - [anon_sym_module] = ACTIONS(3010), - [anon_sym_any] = ACTIONS(3010), - [anon_sym_number] = ACTIONS(3010), - [anon_sym_boolean] = ACTIONS(3010), - [anon_sym_string] = ACTIONS(3010), - [anon_sym_symbol] = ACTIONS(3010), - [anon_sym_object] = ACTIONS(3010), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_readonly] = ACTIONS(3016), + [anon_sym_get] = ACTIONS(3016), + [anon_sym_set] = ACTIONS(3016), + [anon_sym_declare] = ACTIONS(3016), + [anon_sym_public] = ACTIONS(3016), + [anon_sym_private] = ACTIONS(3016), + [anon_sym_protected] = ACTIONS(3016), + [anon_sym_override] = ACTIONS(3016), + [anon_sym_module] = ACTIONS(3016), + [anon_sym_any] = ACTIONS(3016), + [anon_sym_number] = ACTIONS(3016), + [anon_sym_boolean] = ACTIONS(3016), + [anon_sym_string] = ACTIONS(3016), + [anon_sym_symbol] = ACTIONS(3016), + [anon_sym_object] = ACTIONS(3016), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [870] = { - [sym__call_signature] = STATE(7506), - [sym_comment] = STATE(870), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(3004), - [anon_sym_export] = ACTIONS(3006), + [872] = { + [sym__call_signature] = STATE(6996), + [sym_comment] = STATE(872), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(3018), + [anon_sym_export] = ACTIONS(3020), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_type] = ACTIONS(3020), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_let] = ACTIONS(3006), + [anon_sym_namespace] = ACTIONS(3020), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_let] = ACTIONS(3020), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1220), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3006), + [anon_sym_async] = ACTIONS(3020), [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_EQ_GT] = ACTIONS(1252), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3006), + [anon_sym_new] = ACTIONS(3020), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -134477,52 +134343,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3006), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_get] = ACTIONS(3006), - [anon_sym_set] = ACTIONS(3006), - [anon_sym_declare] = ACTIONS(3006), - [anon_sym_public] = ACTIONS(3006), - [anon_sym_private] = ACTIONS(3006), - [anon_sym_protected] = ACTIONS(3006), - [anon_sym_override] = ACTIONS(3006), - [anon_sym_module] = ACTIONS(3006), - [anon_sym_any] = ACTIONS(3006), - [anon_sym_number] = ACTIONS(3006), - [anon_sym_boolean] = ACTIONS(3006), - [anon_sym_string] = ACTIONS(3006), - [anon_sym_symbol] = ACTIONS(3006), - [anon_sym_object] = ACTIONS(3006), + [anon_sym_static] = ACTIONS(3020), + [anon_sym_readonly] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(3020), + [anon_sym_set] = ACTIONS(3020), + [anon_sym_declare] = ACTIONS(3020), + [anon_sym_public] = ACTIONS(3020), + [anon_sym_private] = ACTIONS(3020), + [anon_sym_protected] = ACTIONS(3020), + [anon_sym_override] = ACTIONS(3020), + [anon_sym_module] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(3020), + [anon_sym_number] = ACTIONS(3020), + [anon_sym_boolean] = ACTIONS(3020), + [anon_sym_string] = ACTIONS(3020), + [anon_sym_symbol] = ACTIONS(3020), + [anon_sym_object] = ACTIONS(3020), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [871] = { - [sym__call_signature] = STATE(7506), - [sym_comment] = STATE(871), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(3004), - [anon_sym_export] = ACTIONS(3006), + [873] = { + [sym__call_signature] = STATE(7206), + [sym_comment] = STATE(873), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(3014), + [anon_sym_export] = ACTIONS(3016), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(1244), + [anon_sym_type] = ACTIONS(3016), + [anon_sym_EQ] = ACTIONS(1232), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_let] = ACTIONS(3006), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_let] = ACTIONS(3016), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3006), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1224), + [anon_sym_async] = ACTIONS(3016), + [anon_sym_function] = ACTIONS(2728), + [anon_sym_EQ_GT] = ACTIONS(1238), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3006), + [anon_sym_new] = ACTIONS(3016), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -134564,39 +134429,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3006), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_get] = ACTIONS(3006), - [anon_sym_set] = ACTIONS(3006), - [anon_sym_declare] = ACTIONS(3006), - [anon_sym_public] = ACTIONS(3006), - [anon_sym_private] = ACTIONS(3006), - [anon_sym_protected] = ACTIONS(3006), - [anon_sym_override] = ACTIONS(3006), - [anon_sym_module] = ACTIONS(3006), - [anon_sym_any] = ACTIONS(3006), - [anon_sym_number] = ACTIONS(3006), - [anon_sym_boolean] = ACTIONS(3006), - [anon_sym_string] = ACTIONS(3006), - [anon_sym_symbol] = ACTIONS(3006), - [anon_sym_object] = ACTIONS(3006), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_readonly] = ACTIONS(3016), + [anon_sym_get] = ACTIONS(3016), + [anon_sym_set] = ACTIONS(3016), + [anon_sym_declare] = ACTIONS(3016), + [anon_sym_public] = ACTIONS(3016), + [anon_sym_private] = ACTIONS(3016), + [anon_sym_protected] = ACTIONS(3016), + [anon_sym_override] = ACTIONS(3016), + [anon_sym_module] = ACTIONS(3016), + [anon_sym_any] = ACTIONS(3016), + [anon_sym_number] = ACTIONS(3016), + [anon_sym_boolean] = ACTIONS(3016), + [anon_sym_string] = ACTIONS(3016), + [anon_sym_symbol] = ACTIONS(3016), + [anon_sym_object] = ACTIONS(3016), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [872] = { - [sym__call_signature] = STATE(7389), - [sym_comment] = STATE(872), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3010), + [874] = { + [sym__call_signature] = STATE(7206), + [sym_comment] = STATE(874), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(3014), + [anon_sym_export] = ACTIONS(3016), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3010), + [anon_sym_type] = ACTIONS(3016), [anon_sym_EQ] = ACTIONS(1232), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_let] = ACTIONS(3016), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), @@ -134604,11 +134470,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3010), - [anon_sym_function] = ACTIONS(3016), + [anon_sym_async] = ACTIONS(3016), + [anon_sym_function] = ACTIONS(2994), [anon_sym_EQ_GT] = ACTIONS(1238), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3016), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -134650,52 +134516,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3010), - [anon_sym_readonly] = ACTIONS(3010), - [anon_sym_get] = ACTIONS(3010), - [anon_sym_set] = ACTIONS(3010), - [anon_sym_declare] = ACTIONS(3010), - [anon_sym_public] = ACTIONS(3010), - [anon_sym_private] = ACTIONS(3010), - [anon_sym_protected] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3010), - [anon_sym_module] = ACTIONS(3010), - [anon_sym_any] = ACTIONS(3010), - [anon_sym_number] = ACTIONS(3010), - [anon_sym_boolean] = ACTIONS(3010), - [anon_sym_string] = ACTIONS(3010), - [anon_sym_symbol] = ACTIONS(3010), - [anon_sym_object] = ACTIONS(3010), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_readonly] = ACTIONS(3016), + [anon_sym_get] = ACTIONS(3016), + [anon_sym_set] = ACTIONS(3016), + [anon_sym_declare] = ACTIONS(3016), + [anon_sym_public] = ACTIONS(3016), + [anon_sym_private] = ACTIONS(3016), + [anon_sym_protected] = ACTIONS(3016), + [anon_sym_override] = ACTIONS(3016), + [anon_sym_module] = ACTIONS(3016), + [anon_sym_any] = ACTIONS(3016), + [anon_sym_number] = ACTIONS(3016), + [anon_sym_boolean] = ACTIONS(3016), + [anon_sym_string] = ACTIONS(3016), + [anon_sym_symbol] = ACTIONS(3016), + [anon_sym_object] = ACTIONS(3016), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [873] = { - [sym__call_signature] = STATE(7389), - [sym_comment] = STATE(873), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3010), + [875] = { + [sym__call_signature] = STATE(6996), + [sym_comment] = STATE(875), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(3018), + [anon_sym_export] = ACTIONS(3020), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(3020), + [anon_sym_EQ] = ACTIONS(1246), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), + [anon_sym_namespace] = ACTIONS(3020), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_let] = ACTIONS(3020), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3010), - [anon_sym_function] = ACTIONS(2728), - [anon_sym_EQ_GT] = ACTIONS(1238), + [anon_sym_async] = ACTIONS(3020), + [anon_sym_function] = ACTIONS(2973), + [anon_sym_EQ_GT] = ACTIONS(1252), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3020), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -134737,40 +134604,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3010), - [anon_sym_readonly] = ACTIONS(3010), - [anon_sym_get] = ACTIONS(3010), - [anon_sym_set] = ACTIONS(3010), - [anon_sym_declare] = ACTIONS(3010), - [anon_sym_public] = ACTIONS(3010), - [anon_sym_private] = ACTIONS(3010), - [anon_sym_protected] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3010), - [anon_sym_module] = ACTIONS(3010), - [anon_sym_any] = ACTIONS(3010), - [anon_sym_number] = ACTIONS(3010), - [anon_sym_boolean] = ACTIONS(3010), - [anon_sym_string] = ACTIONS(3010), - [anon_sym_symbol] = ACTIONS(3010), - [anon_sym_object] = ACTIONS(3010), + [anon_sym_static] = ACTIONS(3020), + [anon_sym_readonly] = ACTIONS(3020), + [anon_sym_get] = ACTIONS(3020), + [anon_sym_set] = ACTIONS(3020), + [anon_sym_declare] = ACTIONS(3020), + [anon_sym_public] = ACTIONS(3020), + [anon_sym_private] = ACTIONS(3020), + [anon_sym_protected] = ACTIONS(3020), + [anon_sym_override] = ACTIONS(3020), + [anon_sym_module] = ACTIONS(3020), + [anon_sym_any] = ACTIONS(3020), + [anon_sym_number] = ACTIONS(3020), + [anon_sym_boolean] = ACTIONS(3020), + [anon_sym_string] = ACTIONS(3020), + [anon_sym_symbol] = ACTIONS(3020), + [anon_sym_object] = ACTIONS(3020), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [874] = { - [sym__call_signature] = STATE(7389), - [sym_comment] = STATE(874), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3010), + [876] = { + [sym__call_signature] = STATE(7206), + [sym_comment] = STATE(876), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(3014), + [anon_sym_export] = ACTIONS(3016), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3010), + [anon_sym_type] = ACTIONS(3016), [anon_sym_EQ] = ACTIONS(1232), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_let] = ACTIONS(3016), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), @@ -134778,11 +134644,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3010), - [anon_sym_function] = ACTIONS(2986), + [anon_sym_async] = ACTIONS(3016), + [anon_sym_function] = ACTIONS(2998), [anon_sym_EQ_GT] = ACTIONS(1238), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3016), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -134824,52 +134690,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3010), - [anon_sym_readonly] = ACTIONS(3010), - [anon_sym_get] = ACTIONS(3010), - [anon_sym_set] = ACTIONS(3010), - [anon_sym_declare] = ACTIONS(3010), - [anon_sym_public] = ACTIONS(3010), - [anon_sym_private] = ACTIONS(3010), - [anon_sym_protected] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3010), - [anon_sym_module] = ACTIONS(3010), - [anon_sym_any] = ACTIONS(3010), - [anon_sym_number] = ACTIONS(3010), - [anon_sym_boolean] = ACTIONS(3010), - [anon_sym_string] = ACTIONS(3010), - [anon_sym_symbol] = ACTIONS(3010), - [anon_sym_object] = ACTIONS(3010), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_readonly] = ACTIONS(3016), + [anon_sym_get] = ACTIONS(3016), + [anon_sym_set] = ACTIONS(3016), + [anon_sym_declare] = ACTIONS(3016), + [anon_sym_public] = ACTIONS(3016), + [anon_sym_private] = ACTIONS(3016), + [anon_sym_protected] = ACTIONS(3016), + [anon_sym_override] = ACTIONS(3016), + [anon_sym_module] = ACTIONS(3016), + [anon_sym_any] = ACTIONS(3016), + [anon_sym_number] = ACTIONS(3016), + [anon_sym_boolean] = ACTIONS(3016), + [anon_sym_string] = ACTIONS(3016), + [anon_sym_symbol] = ACTIONS(3016), + [anon_sym_object] = ACTIONS(3016), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [875] = { - [sym__call_signature] = STATE(7389), - [sym_comment] = STATE(875), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3010), + [877] = { + [sym__call_signature] = STATE(7323), + [sym_comment] = STATE(877), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(3004), + [anon_sym_export] = ACTIONS(3006), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(1232), + [anon_sym_type] = ACTIONS(3006), + [anon_sym_EQ] = ACTIONS(1272), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), + [anon_sym_namespace] = ACTIONS(3006), + [anon_sym_let] = ACTIONS(3006), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1274), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3010), - [anon_sym_function] = ACTIONS(2998), - [anon_sym_EQ_GT] = ACTIONS(1238), + [anon_sym_async] = ACTIONS(3006), + [anon_sym_function] = ACTIONS(2973), + [anon_sym_EQ_GT] = ACTIONS(1224), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3006), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -134911,139 +134778,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3010), - [anon_sym_readonly] = ACTIONS(3010), - [anon_sym_get] = ACTIONS(3010), - [anon_sym_set] = ACTIONS(3010), - [anon_sym_declare] = ACTIONS(3010), - [anon_sym_public] = ACTIONS(3010), - [anon_sym_private] = ACTIONS(3010), - [anon_sym_protected] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3010), - [anon_sym_module] = ACTIONS(3010), - [anon_sym_any] = ACTIONS(3010), - [anon_sym_number] = ACTIONS(3010), - [anon_sym_boolean] = ACTIONS(3010), - [anon_sym_string] = ACTIONS(3010), - [anon_sym_symbol] = ACTIONS(3010), - [anon_sym_object] = ACTIONS(3010), + [anon_sym_static] = ACTIONS(3006), + [anon_sym_readonly] = ACTIONS(3006), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_declare] = ACTIONS(3006), + [anon_sym_public] = ACTIONS(3006), + [anon_sym_private] = ACTIONS(3006), + [anon_sym_protected] = ACTIONS(3006), + [anon_sym_override] = ACTIONS(3006), + [anon_sym_module] = ACTIONS(3006), + [anon_sym_any] = ACTIONS(3006), + [anon_sym_number] = ACTIONS(3006), + [anon_sym_boolean] = ACTIONS(3006), + [anon_sym_string] = ACTIONS(3006), + [anon_sym_symbol] = ACTIONS(3006), + [anon_sym_object] = ACTIONS(3006), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [876] = { - [sym_catch_clause] = STATE(905), - [sym_finally_clause] = STATE(1110), - [sym_comment] = STATE(876), - [sym_identifier] = ACTIONS(3018), - [anon_sym_export] = ACTIONS(3018), - [anon_sym_default] = ACTIONS(3018), - [anon_sym_type] = ACTIONS(3018), - [anon_sym_namespace] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(3018), - [anon_sym_with] = ACTIONS(3018), - [anon_sym_var] = ACTIONS(3018), - [anon_sym_let] = ACTIONS(3018), - [anon_sym_const] = ACTIONS(3018), - [anon_sym_BANG] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_switch] = ACTIONS(3018), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_await] = ACTIONS(3018), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_do] = ACTIONS(3018), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_break] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(3018), - [anon_sym_debugger] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_throw] = ACTIONS(3018), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_case] = ACTIONS(3018), - [anon_sym_catch] = ACTIONS(3020), - [anon_sym_finally] = ACTIONS(3022), - [anon_sym_yield] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_LTtemplate_GT] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_SQUOTE] = ACTIONS(3018), - [anon_sym_class] = ACTIONS(3018), - [anon_sym_async] = ACTIONS(3018), - [anon_sym_function] = ACTIONS(3018), - [anon_sym_new] = ACTIONS(3018), - [anon_sym_using] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_SLASH] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3018), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_void] = ACTIONS(3018), - [anon_sym_delete] = ACTIONS(3018), - [anon_sym_PLUS_PLUS] = ACTIONS(3018), - [anon_sym_DASH_DASH] = ACTIONS(3018), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3018), - [sym_number] = ACTIONS(3018), - [sym_private_property_identifier] = ACTIONS(3018), - [sym_this] = ACTIONS(3018), - [sym_super] = ACTIONS(3018), - [sym_true] = ACTIONS(3018), - [sym_false] = ACTIONS(3018), - [sym_null] = ACTIONS(3018), - [sym_undefined] = ACTIONS(3018), - [anon_sym_AT] = ACTIONS(3018), - [anon_sym_static] = ACTIONS(3018), - [anon_sym_readonly] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(3018), - [anon_sym_set] = ACTIONS(3018), - [anon_sym_declare] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_protected] = ACTIONS(3018), - [anon_sym_override] = ACTIONS(3018), - [anon_sym_module] = ACTIONS(3018), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_interface] = ACTIONS(3018), - [anon_sym_enum] = ACTIONS(3018), - [sym_html_comment] = ACTIONS(5), - }, - [877] = { - [sym__call_signature] = STATE(7389), - [sym_comment] = STATE(877), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(3008), - [anon_sym_export] = ACTIONS(3010), + [878] = { + [sym__call_signature] = STATE(7323), + [sym_comment] = STATE(878), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(3004), + [anon_sym_export] = ACTIONS(3006), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3010), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_type] = ACTIONS(3006), + [anon_sym_EQ] = ACTIONS(1272), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3010), - [anon_sym_let] = ACTIONS(3010), + [anon_sym_namespace] = ACTIONS(3006), + [anon_sym_let] = ACTIONS(3006), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1220), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3010), - [anon_sym_function] = ACTIONS(2988), - [anon_sym_EQ_GT] = ACTIONS(1238), + [anon_sym_async] = ACTIONS(3006), + [anon_sym_function] = ACTIONS(2973), + [anon_sym_EQ_GT] = ACTIONS(1224), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3010), + [anon_sym_new] = ACTIONS(3006), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -135085,53 +134865,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3010), - [anon_sym_readonly] = ACTIONS(3010), - [anon_sym_get] = ACTIONS(3010), - [anon_sym_set] = ACTIONS(3010), - [anon_sym_declare] = ACTIONS(3010), - [anon_sym_public] = ACTIONS(3010), - [anon_sym_private] = ACTIONS(3010), - [anon_sym_protected] = ACTIONS(3010), - [anon_sym_override] = ACTIONS(3010), - [anon_sym_module] = ACTIONS(3010), - [anon_sym_any] = ACTIONS(3010), - [anon_sym_number] = ACTIONS(3010), - [anon_sym_boolean] = ACTIONS(3010), - [anon_sym_string] = ACTIONS(3010), - [anon_sym_symbol] = ACTIONS(3010), - [anon_sym_object] = ACTIONS(3010), + [anon_sym_static] = ACTIONS(3006), + [anon_sym_readonly] = ACTIONS(3006), + [anon_sym_get] = ACTIONS(3006), + [anon_sym_set] = ACTIONS(3006), + [anon_sym_declare] = ACTIONS(3006), + [anon_sym_public] = ACTIONS(3006), + [anon_sym_private] = ACTIONS(3006), + [anon_sym_protected] = ACTIONS(3006), + [anon_sym_override] = ACTIONS(3006), + [anon_sym_module] = ACTIONS(3006), + [anon_sym_any] = ACTIONS(3006), + [anon_sym_number] = ACTIONS(3006), + [anon_sym_boolean] = ACTIONS(3006), + [anon_sym_string] = ACTIONS(3006), + [anon_sym_symbol] = ACTIONS(3006), + [anon_sym_object] = ACTIONS(3006), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [878] = { - [sym__call_signature] = STATE(7179), - [sym_comment] = STATE(878), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(3012), - [anon_sym_export] = ACTIONS(3014), + [879] = { + [sym__call_signature] = STATE(7206), + [sym_comment] = STATE(879), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(3014), + [anon_sym_export] = ACTIONS(3016), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3014), - [anon_sym_EQ] = ACTIONS(1252), + [anon_sym_type] = ACTIONS(3016), + [anon_sym_EQ] = ACTIONS(1232), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3014), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3014), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_let] = ACTIONS(3016), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3014), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(3016), + [anon_sym_function] = ACTIONS(3022), + [anon_sym_EQ_GT] = ACTIONS(1238), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3014), + [anon_sym_new] = ACTIONS(3016), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -135173,45 +134951,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3014), - [anon_sym_readonly] = ACTIONS(3014), - [anon_sym_get] = ACTIONS(3014), - [anon_sym_set] = ACTIONS(3014), - [anon_sym_declare] = ACTIONS(3014), - [anon_sym_public] = ACTIONS(3014), - [anon_sym_private] = ACTIONS(3014), - [anon_sym_protected] = ACTIONS(3014), - [anon_sym_override] = ACTIONS(3014), - [anon_sym_module] = ACTIONS(3014), - [anon_sym_any] = ACTIONS(3014), - [anon_sym_number] = ACTIONS(3014), - [anon_sym_boolean] = ACTIONS(3014), - [anon_sym_string] = ACTIONS(3014), - [anon_sym_symbol] = ACTIONS(3014), - [anon_sym_object] = ACTIONS(3014), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_readonly] = ACTIONS(3016), + [anon_sym_get] = ACTIONS(3016), + [anon_sym_set] = ACTIONS(3016), + [anon_sym_declare] = ACTIONS(3016), + [anon_sym_public] = ACTIONS(3016), + [anon_sym_private] = ACTIONS(3016), + [anon_sym_protected] = ACTIONS(3016), + [anon_sym_override] = ACTIONS(3016), + [anon_sym_module] = ACTIONS(3016), + [anon_sym_any] = ACTIONS(3016), + [anon_sym_number] = ACTIONS(3016), + [anon_sym_boolean] = ACTIONS(3016), + [anon_sym_string] = ACTIONS(3016), + [anon_sym_symbol] = ACTIONS(3016), + [anon_sym_object] = ACTIONS(3016), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [879] = { - [sym__call_signature] = STATE(7506), - [sym_comment] = STATE(879), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [880] = { + [sym__call_signature] = STATE(7323), + [sym_comment] = STATE(880), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(3004), [anon_sym_export] = ACTIONS(3006), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(1215), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(124), [anon_sym_let] = ACTIONS(3006), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(216), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3006), @@ -135280,19 +135058,277 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [880] = { - [sym__call_signature] = STATE(7480), - [sym_comment] = STATE(880), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(3024), - [anon_sym_export] = ACTIONS(3026), + [881] = { + [sym_catch_clause] = STATE(934), + [sym_finally_clause] = STATE(1160), + [sym_comment] = STATE(881), + [sym_identifier] = ACTIONS(3008), + [anon_sym_export] = ACTIONS(3008), + [anon_sym_default] = ACTIONS(3008), + [anon_sym_type] = ACTIONS(3008), + [anon_sym_namespace] = ACTIONS(3008), + [anon_sym_LBRACE] = ACTIONS(3008), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_typeof] = ACTIONS(3008), + [anon_sym_import] = ACTIONS(3008), + [anon_sym_with] = ACTIONS(3008), + [anon_sym_var] = ACTIONS(3008), + [anon_sym_let] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3008), + [anon_sym_BANG] = ACTIONS(3008), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_switch] = ACTIONS(3008), + [anon_sym_for] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_await] = ACTIONS(3008), + [anon_sym_while] = ACTIONS(3008), + [anon_sym_do] = ACTIONS(3008), + [anon_sym_try] = ACTIONS(3008), + [anon_sym_break] = ACTIONS(3008), + [anon_sym_continue] = ACTIONS(3008), + [anon_sym_debugger] = ACTIONS(3008), + [anon_sym_return] = ACTIONS(3008), + [anon_sym_throw] = ACTIONS(3008), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_case] = ACTIONS(3008), + [anon_sym_catch] = ACTIONS(3024), + [anon_sym_finally] = ACTIONS(3026), + [anon_sym_yield] = ACTIONS(3008), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_LTtemplate_GT] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(3008), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_class] = ACTIONS(3008), + [anon_sym_async] = ACTIONS(3008), + [anon_sym_function] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3008), + [anon_sym_using] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3008), + [anon_sym_DASH] = ACTIONS(3008), + [anon_sym_SLASH] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_TILDE] = ACTIONS(3008), + [anon_sym_void] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3008), + [anon_sym_PLUS_PLUS] = ACTIONS(3008), + [anon_sym_DASH_DASH] = ACTIONS(3008), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3008), + [sym_number] = ACTIONS(3008), + [sym_private_property_identifier] = ACTIONS(3008), + [sym_this] = ACTIONS(3008), + [sym_super] = ACTIONS(3008), + [sym_true] = ACTIONS(3008), + [sym_false] = ACTIONS(3008), + [sym_null] = ACTIONS(3008), + [sym_undefined] = ACTIONS(3008), + [anon_sym_AT] = ACTIONS(3008), + [anon_sym_static] = ACTIONS(3008), + [anon_sym_readonly] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3008), + [anon_sym_set] = ACTIONS(3008), + [anon_sym_declare] = ACTIONS(3008), + [anon_sym_public] = ACTIONS(3008), + [anon_sym_private] = ACTIONS(3008), + [anon_sym_protected] = ACTIONS(3008), + [anon_sym_override] = ACTIONS(3008), + [anon_sym_module] = ACTIONS(3008), + [anon_sym_any] = ACTIONS(3008), + [anon_sym_number] = ACTIONS(3008), + [anon_sym_boolean] = ACTIONS(3008), + [anon_sym_string] = ACTIONS(3008), + [anon_sym_symbol] = ACTIONS(3008), + [anon_sym_object] = ACTIONS(3008), + [anon_sym_abstract] = ACTIONS(3008), + [anon_sym_interface] = ACTIONS(3008), + [anon_sym_enum] = ACTIONS(3008), + [sym_html_comment] = ACTIONS(5), + }, + [882] = { + [sym__call_signature] = STATE(7068), + [sym_comment] = STATE(882), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(2966), + [anon_sym_export] = ACTIONS(2968), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2968), + [anon_sym_EQ] = ACTIONS(1099), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2968), + [anon_sym_let] = ACTIONS(2968), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2970), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1105), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_async] = ACTIONS(2968), + [anon_sym_function] = ACTIONS(2973), + [anon_sym_EQ_GT] = ACTIONS(153), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2968), + [anon_sym_PLUS_EQ] = ACTIONS(159), + [anon_sym_DASH_EQ] = ACTIONS(159), + [anon_sym_STAR_EQ] = ACTIONS(159), + [anon_sym_SLASH_EQ] = ACTIONS(159), + [anon_sym_PERCENT_EQ] = ACTIONS(159), + [anon_sym_CARET_EQ] = ACTIONS(159), + [anon_sym_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_EQ] = ACTIONS(159), + [anon_sym_GT_GT_EQ] = ACTIONS(159), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), + [anon_sym_LT_LT_EQ] = ACTIONS(159), + [anon_sym_STAR_STAR_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP_EQ] = ACTIONS(159), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2975), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_static] = ACTIONS(2968), + [anon_sym_readonly] = ACTIONS(2968), + [anon_sym_get] = ACTIONS(2968), + [anon_sym_set] = ACTIONS(2968), + [anon_sym_declare] = ACTIONS(2968), + [anon_sym_public] = ACTIONS(2968), + [anon_sym_private] = ACTIONS(2968), + [anon_sym_protected] = ACTIONS(2968), + [anon_sym_override] = ACTIONS(2968), + [anon_sym_module] = ACTIONS(2968), + [anon_sym_any] = ACTIONS(2968), + [anon_sym_number] = ACTIONS(2968), + [anon_sym_boolean] = ACTIONS(2968), + [anon_sym_string] = ACTIONS(2968), + [anon_sym_symbol] = ACTIONS(2968), + [anon_sym_object] = ACTIONS(2968), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(211), + [sym_html_comment] = ACTIONS(5), + }, + [883] = { + [sym_catch_clause] = STATE(954), + [sym_finally_clause] = STATE(1200), + [sym_comment] = STATE(883), + [ts_builtin_sym_end] = ACTIONS(3028), + [sym_identifier] = ACTIONS(3008), + [anon_sym_export] = ACTIONS(3008), + [anon_sym_type] = ACTIONS(3008), + [anon_sym_namespace] = ACTIONS(3008), + [anon_sym_LBRACE] = ACTIONS(3008), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_typeof] = ACTIONS(3008), + [anon_sym_import] = ACTIONS(3008), + [anon_sym_with] = ACTIONS(3008), + [anon_sym_var] = ACTIONS(3008), + [anon_sym_let] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3008), + [anon_sym_BANG] = ACTIONS(3008), + [anon_sym_else] = ACTIONS(3008), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_switch] = ACTIONS(3008), + [anon_sym_for] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_await] = ACTIONS(3008), + [anon_sym_while] = ACTIONS(3008), + [anon_sym_do] = ACTIONS(3008), + [anon_sym_try] = ACTIONS(3008), + [anon_sym_break] = ACTIONS(3008), + [anon_sym_continue] = ACTIONS(3008), + [anon_sym_debugger] = ACTIONS(3008), + [anon_sym_return] = ACTIONS(3008), + [anon_sym_throw] = ACTIONS(3008), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_catch] = ACTIONS(3030), + [anon_sym_finally] = ACTIONS(3032), + [anon_sym_yield] = ACTIONS(3008), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_LTtemplate_GT] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(3008), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_class] = ACTIONS(3008), + [anon_sym_async] = ACTIONS(3008), + [anon_sym_function] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3008), + [anon_sym_using] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3008), + [anon_sym_DASH] = ACTIONS(3008), + [anon_sym_SLASH] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_TILDE] = ACTIONS(3008), + [anon_sym_void] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3008), + [anon_sym_PLUS_PLUS] = ACTIONS(3008), + [anon_sym_DASH_DASH] = ACTIONS(3008), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3008), + [sym_number] = ACTIONS(3008), + [sym_private_property_identifier] = ACTIONS(3008), + [sym_this] = ACTIONS(3008), + [sym_super] = ACTIONS(3008), + [sym_true] = ACTIONS(3008), + [sym_false] = ACTIONS(3008), + [sym_null] = ACTIONS(3008), + [sym_undefined] = ACTIONS(3008), + [anon_sym_AT] = ACTIONS(3008), + [anon_sym_static] = ACTIONS(3008), + [anon_sym_readonly] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3008), + [anon_sym_set] = ACTIONS(3008), + [anon_sym_declare] = ACTIONS(3008), + [anon_sym_public] = ACTIONS(3008), + [anon_sym_private] = ACTIONS(3008), + [anon_sym_protected] = ACTIONS(3008), + [anon_sym_override] = ACTIONS(3008), + [anon_sym_module] = ACTIONS(3008), + [anon_sym_any] = ACTIONS(3008), + [anon_sym_number] = ACTIONS(3008), + [anon_sym_boolean] = ACTIONS(3008), + [anon_sym_string] = ACTIONS(3008), + [anon_sym_symbol] = ACTIONS(3008), + [anon_sym_object] = ACTIONS(3008), + [anon_sym_abstract] = ACTIONS(3008), + [anon_sym_interface] = ACTIONS(3008), + [anon_sym_enum] = ACTIONS(3008), + [sym_html_comment] = ACTIONS(5), + }, + [884] = { + [sym__call_signature] = STATE(7207), + [sym_comment] = STATE(884), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(3034), + [anon_sym_export] = ACTIONS(3036), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3026), + [anon_sym_type] = ACTIONS(3036), [anon_sym_EQ] = ACTIONS(1280), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), + [anon_sym_namespace] = ACTIONS(3036), + [anon_sym_let] = ACTIONS(3036), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), @@ -135300,11 +135336,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3026), + [anon_sym_async] = ACTIONS(3036), [anon_sym_function] = ACTIONS(2973), [anon_sym_EQ_GT] = ACTIONS(1286), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3026), + [anon_sym_new] = ACTIONS(3036), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -135346,125 +135382,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3026), - [anon_sym_get] = ACTIONS(3026), - [anon_sym_set] = ACTIONS(3026), - [anon_sym_declare] = ACTIONS(3026), - [anon_sym_public] = ACTIONS(3026), - [anon_sym_private] = ACTIONS(3026), - [anon_sym_protected] = ACTIONS(3026), - [anon_sym_override] = ACTIONS(3026), - [anon_sym_module] = ACTIONS(3026), - [anon_sym_any] = ACTIONS(3026), - [anon_sym_number] = ACTIONS(3026), - [anon_sym_boolean] = ACTIONS(3026), - [anon_sym_string] = ACTIONS(3026), - [anon_sym_symbol] = ACTIONS(3026), - [anon_sym_object] = ACTIONS(3026), + [anon_sym_static] = ACTIONS(3036), + [anon_sym_readonly] = ACTIONS(3036), + [anon_sym_get] = ACTIONS(3036), + [anon_sym_set] = ACTIONS(3036), + [anon_sym_declare] = ACTIONS(3036), + [anon_sym_public] = ACTIONS(3036), + [anon_sym_private] = ACTIONS(3036), + [anon_sym_protected] = ACTIONS(3036), + [anon_sym_override] = ACTIONS(3036), + [anon_sym_module] = ACTIONS(3036), + [anon_sym_any] = ACTIONS(3036), + [anon_sym_number] = ACTIONS(3036), + [anon_sym_boolean] = ACTIONS(3036), + [anon_sym_string] = ACTIONS(3036), + [anon_sym_symbol] = ACTIONS(3036), + [anon_sym_object] = ACTIONS(3036), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [881] = { - [sym__call_signature] = STATE(7506), - [sym_comment] = STATE(881), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(3004), - [anon_sym_export] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(1244), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_let] = ACTIONS(3006), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3006), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(1224), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3006), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3006), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_get] = ACTIONS(3006), - [anon_sym_set] = ACTIONS(3006), - [anon_sym_declare] = ACTIONS(3006), - [anon_sym_public] = ACTIONS(3006), - [anon_sym_private] = ACTIONS(3006), - [anon_sym_protected] = ACTIONS(3006), - [anon_sym_override] = ACTIONS(3006), - [anon_sym_module] = ACTIONS(3006), - [anon_sym_any] = ACTIONS(3006), - [anon_sym_number] = ACTIONS(3006), - [anon_sym_boolean] = ACTIONS(3006), - [anon_sym_string] = ACTIONS(3006), - [anon_sym_symbol] = ACTIONS(3006), - [anon_sym_object] = ACTIONS(3006), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [882] = { - [sym__call_signature] = STATE(7480), - [sym_comment] = STATE(882), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(3024), - [anon_sym_export] = ACTIONS(3026), + [885] = { + [sym__call_signature] = STATE(7207), + [sym_comment] = STATE(885), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), + [sym_identifier] = ACTIONS(3034), + [anon_sym_export] = ACTIONS(3036), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3026), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_type] = ACTIONS(3036), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3026), - [anon_sym_let] = ACTIONS(3026), + [anon_sym_namespace] = ACTIONS(3036), + [anon_sym_let] = ACTIONS(3036), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), [anon_sym_in] = ACTIONS(118), @@ -135472,11 +135422,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3026), + [anon_sym_async] = ACTIONS(3036), [anon_sym_function] = ACTIONS(2973), [anon_sym_EQ_GT] = ACTIONS(1286), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3026), + [anon_sym_new] = ACTIONS(3036), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), [anon_sym_STAR_EQ] = ACTIONS(159), @@ -135518,286 +135468,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3026), - [anon_sym_readonly] = ACTIONS(3026), - [anon_sym_get] = ACTIONS(3026), - [anon_sym_set] = ACTIONS(3026), - [anon_sym_declare] = ACTIONS(3026), - [anon_sym_public] = ACTIONS(3026), - [anon_sym_private] = ACTIONS(3026), - [anon_sym_protected] = ACTIONS(3026), - [anon_sym_override] = ACTIONS(3026), - [anon_sym_module] = ACTIONS(3026), - [anon_sym_any] = ACTIONS(3026), - [anon_sym_number] = ACTIONS(3026), - [anon_sym_boolean] = ACTIONS(3026), - [anon_sym_string] = ACTIONS(3026), - [anon_sym_symbol] = ACTIONS(3026), - [anon_sym_object] = ACTIONS(3026), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(211), - [sym_html_comment] = ACTIONS(5), - }, - [883] = { - [sym_comment] = STATE(883), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_catch] = ACTIONS(2093), - [anon_sym_finally] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(3028), - [sym_html_comment] = ACTIONS(5), - }, - [884] = { - [sym_catch_clause] = STATE(938), - [sym_finally_clause] = STATE(1316), - [sym_comment] = STATE(884), - [ts_builtin_sym_end] = ACTIONS(3030), - [sym_identifier] = ACTIONS(3018), - [anon_sym_export] = ACTIONS(3018), - [anon_sym_type] = ACTIONS(3018), - [anon_sym_namespace] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(3018), - [anon_sym_with] = ACTIONS(3018), - [anon_sym_var] = ACTIONS(3018), - [anon_sym_let] = ACTIONS(3018), - [anon_sym_const] = ACTIONS(3018), - [anon_sym_BANG] = ACTIONS(3018), - [anon_sym_else] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_switch] = ACTIONS(3018), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_await] = ACTIONS(3018), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_do] = ACTIONS(3018), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_break] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(3018), - [anon_sym_debugger] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_throw] = ACTIONS(3018), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_catch] = ACTIONS(3032), - [anon_sym_finally] = ACTIONS(3034), - [anon_sym_yield] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_LTtemplate_GT] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_SQUOTE] = ACTIONS(3018), - [anon_sym_class] = ACTIONS(3018), - [anon_sym_async] = ACTIONS(3018), - [anon_sym_function] = ACTIONS(3018), - [anon_sym_new] = ACTIONS(3018), - [anon_sym_using] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_SLASH] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3018), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_void] = ACTIONS(3018), - [anon_sym_delete] = ACTIONS(3018), - [anon_sym_PLUS_PLUS] = ACTIONS(3018), - [anon_sym_DASH_DASH] = ACTIONS(3018), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3018), - [sym_number] = ACTIONS(3018), - [sym_private_property_identifier] = ACTIONS(3018), - [sym_this] = ACTIONS(3018), - [sym_super] = ACTIONS(3018), - [sym_true] = ACTIONS(3018), - [sym_false] = ACTIONS(3018), - [sym_null] = ACTIONS(3018), - [sym_undefined] = ACTIONS(3018), - [anon_sym_AT] = ACTIONS(3018), - [anon_sym_static] = ACTIONS(3018), - [anon_sym_readonly] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(3018), - [anon_sym_set] = ACTIONS(3018), - [anon_sym_declare] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_protected] = ACTIONS(3018), - [anon_sym_override] = ACTIONS(3018), - [anon_sym_module] = ACTIONS(3018), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_interface] = ACTIONS(3018), - [anon_sym_enum] = ACTIONS(3018), - [sym_html_comment] = ACTIONS(5), - }, - [885] = { - [sym__call_signature] = STATE(7253), - [sym_comment] = STATE(885), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2968), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1117), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2968), - [anon_sym_let] = ACTIONS(2968), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_of] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(2968), - [anon_sym_function] = ACTIONS(2973), - [anon_sym_EQ_GT] = ACTIONS(153), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2968), - [anon_sym_PLUS_EQ] = ACTIONS(159), - [anon_sym_DASH_EQ] = ACTIONS(159), - [anon_sym_STAR_EQ] = ACTIONS(159), - [anon_sym_SLASH_EQ] = ACTIONS(159), - [anon_sym_PERCENT_EQ] = ACTIONS(159), - [anon_sym_CARET_EQ] = ACTIONS(159), - [anon_sym_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_EQ] = ACTIONS(159), - [anon_sym_GT_GT_EQ] = ACTIONS(159), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(159), - [anon_sym_LT_LT_EQ] = ACTIONS(159), - [anon_sym_STAR_STAR_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP_EQ] = ACTIONS(159), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(159), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(159), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2975), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(2968), - [anon_sym_readonly] = ACTIONS(2968), - [anon_sym_get] = ACTIONS(2968), - [anon_sym_set] = ACTIONS(2968), - [anon_sym_declare] = ACTIONS(2968), - [anon_sym_public] = ACTIONS(2968), - [anon_sym_private] = ACTIONS(2968), - [anon_sym_protected] = ACTIONS(2968), - [anon_sym_override] = ACTIONS(2968), - [anon_sym_module] = ACTIONS(2968), - [anon_sym_any] = ACTIONS(2968), - [anon_sym_number] = ACTIONS(2968), - [anon_sym_boolean] = ACTIONS(2968), - [anon_sym_string] = ACTIONS(2968), - [anon_sym_symbol] = ACTIONS(2968), - [anon_sym_object] = ACTIONS(2968), + [anon_sym_static] = ACTIONS(3036), + [anon_sym_readonly] = ACTIONS(3036), + [anon_sym_get] = ACTIONS(3036), + [anon_sym_set] = ACTIONS(3036), + [anon_sym_declare] = ACTIONS(3036), + [anon_sym_public] = ACTIONS(3036), + [anon_sym_private] = ACTIONS(3036), + [anon_sym_protected] = ACTIONS(3036), + [anon_sym_override] = ACTIONS(3036), + [anon_sym_module] = ACTIONS(3036), + [anon_sym_any] = ACTIONS(3036), + [anon_sym_number] = ACTIONS(3036), + [anon_sym_boolean] = ACTIONS(3036), + [anon_sym_string] = ACTIONS(3036), + [anon_sym_symbol] = ACTIONS(3036), + [anon_sym_object] = ACTIONS(3036), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, [886] = { [sym_comment] = STATE(886), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_catch] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(3038), + [sym_html_comment] = ACTIONS(5), + }, + [887] = { + [sym_comment] = STATE(887), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), [anon_sym_default] = ACTIONS(2067), @@ -135879,19 +135657,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3036), + [sym__automatic_semicolon] = ACTIONS(3040), [sym_html_comment] = ACTIONS(5), }, - [887] = { - [sym__call_signature] = STATE(7506), - [sym_comment] = STATE(887), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [888] = { + [sym__call_signature] = STATE(7323), + [sym_comment] = STATE(888), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(3004), [anon_sym_export] = ACTIONS(3006), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1272), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3006), [anon_sym_let] = ACTIONS(3006), @@ -135968,23 +135746,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [888] = { - [sym__call_signature] = STATE(7253), - [sym_comment] = STATE(888), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [889] = { + [sym__call_signature] = STATE(7068), + [sym_comment] = STATE(889), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(2966), [anon_sym_export] = ACTIONS(2968), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2968), [anon_sym_let] = ACTIONS(2968), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2970), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1119), + [anon_sym_in] = ACTIONS(1203), + [anon_sym_of] = ACTIONS(1206), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), @@ -136054,102 +135832,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [889] = { - [sym_catch_clause] = STATE(951), - [sym_finally_clause] = STATE(1505), - [sym_comment] = STATE(889), - [sym_identifier] = ACTIONS(3018), - [anon_sym_export] = ACTIONS(3018), - [anon_sym_default] = ACTIONS(3018), - [anon_sym_type] = ACTIONS(3018), - [anon_sym_namespace] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(3018), - [anon_sym_with] = ACTIONS(3018), - [anon_sym_var] = ACTIONS(3018), - [anon_sym_let] = ACTIONS(3018), - [anon_sym_const] = ACTIONS(3018), - [anon_sym_BANG] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_switch] = ACTIONS(3018), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_await] = ACTIONS(3018), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_do] = ACTIONS(3018), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_break] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(3018), - [anon_sym_debugger] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_throw] = ACTIONS(3018), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_case] = ACTIONS(3018), - [anon_sym_catch] = ACTIONS(3038), - [anon_sym_finally] = ACTIONS(3040), - [anon_sym_yield] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_LTtemplate_GT] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_SQUOTE] = ACTIONS(3018), - [anon_sym_class] = ACTIONS(3018), - [anon_sym_async] = ACTIONS(3018), - [anon_sym_function] = ACTIONS(3018), - [anon_sym_new] = ACTIONS(3018), - [anon_sym_using] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_SLASH] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3018), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_void] = ACTIONS(3018), - [anon_sym_delete] = ACTIONS(3018), - [anon_sym_PLUS_PLUS] = ACTIONS(3018), - [anon_sym_DASH_DASH] = ACTIONS(3018), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3018), - [sym_number] = ACTIONS(3018), - [sym_private_property_identifier] = ACTIONS(3018), - [sym_this] = ACTIONS(3018), - [sym_super] = ACTIONS(3018), - [sym_true] = ACTIONS(3018), - [sym_false] = ACTIONS(3018), - [sym_null] = ACTIONS(3018), - [sym_undefined] = ACTIONS(3018), - [anon_sym_AT] = ACTIONS(3018), - [anon_sym_static] = ACTIONS(3018), - [anon_sym_readonly] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(3018), - [anon_sym_set] = ACTIONS(3018), - [anon_sym_declare] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_protected] = ACTIONS(3018), - [anon_sym_override] = ACTIONS(3018), - [anon_sym_module] = ACTIONS(3018), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_interface] = ACTIONS(3018), - [anon_sym_enum] = ACTIONS(3018), - [sym_html_comment] = ACTIONS(5), - }, [890] = { - [sym__call_signature] = STATE(7253), + [sym__call_signature] = STATE(7068), [sym_comment] = STATE(890), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(2966), [anon_sym_export] = ACTIONS(2968), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1350), + [anon_sym_EQ] = ACTIONS(1358), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2968), [anon_sym_let] = ACTIONS(2968), @@ -136226,15 +135918,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [891] = { - [sym__call_signature] = STATE(7253), + [sym_statement_block] = STATE(1102), [sym_comment] = STATE(891), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(3044), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym_html_comment] = ACTIONS(5), + }, + [892] = { + [sym__call_signature] = STATE(7068), + [sym_comment] = STATE(892), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(2966), [anon_sym_export] = ACTIONS(2968), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1292), + [anon_sym_EQ] = ACTIONS(1346), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2968), [anon_sym_let] = ACTIONS(2968), @@ -136310,101 +136087,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [892] = { - [sym_comment] = STATE(892), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_catch] = ACTIONS(2067), - [anon_sym_finally] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3042), - [sym_html_comment] = ACTIONS(5), - }, [893] = { - [sym__call_signature] = STATE(7253), [sym_comment] = STATE(893), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_catch] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(3046), + [sym_html_comment] = ACTIONS(5), + }, + [894] = { + [sym_catch_clause] = STATE(1145), + [sym_finally_clause] = STATE(1484), + [sym_comment] = STATE(894), + [ts_builtin_sym_end] = ACTIONS(3028), + [sym_identifier] = ACTIONS(3008), + [anon_sym_export] = ACTIONS(3008), + [anon_sym_type] = ACTIONS(3008), + [anon_sym_namespace] = ACTIONS(3008), + [anon_sym_LBRACE] = ACTIONS(3008), + [anon_sym_RBRACE] = ACTIONS(3008), + [anon_sym_typeof] = ACTIONS(3008), + [anon_sym_import] = ACTIONS(3008), + [anon_sym_with] = ACTIONS(3008), + [anon_sym_var] = ACTIONS(3008), + [anon_sym_let] = ACTIONS(3008), + [anon_sym_const] = ACTIONS(3008), + [anon_sym_BANG] = ACTIONS(3008), + [anon_sym_if] = ACTIONS(3008), + [anon_sym_switch] = ACTIONS(3008), + [anon_sym_for] = ACTIONS(3008), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_await] = ACTIONS(3008), + [anon_sym_while] = ACTIONS(3008), + [anon_sym_do] = ACTIONS(3008), + [anon_sym_try] = ACTIONS(3008), + [anon_sym_break] = ACTIONS(3008), + [anon_sym_continue] = ACTIONS(3008), + [anon_sym_debugger] = ACTIONS(3008), + [anon_sym_return] = ACTIONS(3008), + [anon_sym_throw] = ACTIONS(3008), + [anon_sym_SEMI] = ACTIONS(3008), + [anon_sym_catch] = ACTIONS(3048), + [anon_sym_finally] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3008), + [anon_sym_LBRACK] = ACTIONS(3008), + [anon_sym_LTtemplate_GT] = ACTIONS(3008), + [anon_sym_DQUOTE] = ACTIONS(3008), + [anon_sym_SQUOTE] = ACTIONS(3008), + [anon_sym_class] = ACTIONS(3008), + [anon_sym_async] = ACTIONS(3008), + [anon_sym_function] = ACTIONS(3008), + [anon_sym_new] = ACTIONS(3008), + [anon_sym_using] = ACTIONS(3008), + [anon_sym_PLUS] = ACTIONS(3008), + [anon_sym_DASH] = ACTIONS(3008), + [anon_sym_SLASH] = ACTIONS(3008), + [anon_sym_LT] = ACTIONS(3008), + [anon_sym_TILDE] = ACTIONS(3008), + [anon_sym_void] = ACTIONS(3008), + [anon_sym_delete] = ACTIONS(3008), + [anon_sym_PLUS_PLUS] = ACTIONS(3008), + [anon_sym_DASH_DASH] = ACTIONS(3008), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3008), + [sym_number] = ACTIONS(3008), + [sym_private_property_identifier] = ACTIONS(3008), + [sym_this] = ACTIONS(3008), + [sym_super] = ACTIONS(3008), + [sym_true] = ACTIONS(3008), + [sym_false] = ACTIONS(3008), + [sym_null] = ACTIONS(3008), + [sym_undefined] = ACTIONS(3008), + [anon_sym_AT] = ACTIONS(3008), + [anon_sym_static] = ACTIONS(3008), + [anon_sym_readonly] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3008), + [anon_sym_set] = ACTIONS(3008), + [anon_sym_declare] = ACTIONS(3008), + [anon_sym_public] = ACTIONS(3008), + [anon_sym_private] = ACTIONS(3008), + [anon_sym_protected] = ACTIONS(3008), + [anon_sym_override] = ACTIONS(3008), + [anon_sym_module] = ACTIONS(3008), + [anon_sym_any] = ACTIONS(3008), + [anon_sym_number] = ACTIONS(3008), + [anon_sym_boolean] = ACTIONS(3008), + [anon_sym_string] = ACTIONS(3008), + [anon_sym_symbol] = ACTIONS(3008), + [anon_sym_object] = ACTIONS(3008), + [anon_sym_abstract] = ACTIONS(3008), + [anon_sym_interface] = ACTIONS(3008), + [anon_sym_enum] = ACTIONS(3008), + [sym_html_comment] = ACTIONS(5), + }, + [895] = { + [sym__call_signature] = STATE(7068), + [sym_comment] = STATE(895), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(2966), [anon_sym_export] = ACTIONS(2968), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_EQ] = ACTIONS(1350), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2968), [anon_sym_let] = ACTIONS(2968), @@ -136480,101 +136342,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [894] = { - [sym_comment] = STATE(894), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_catch] = ACTIONS(2093), - [anon_sym_finally] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(3044), + [896] = { + [sym_finally_clause] = STATE(1134), + [sym_comment] = STATE(896), + [sym_identifier] = ACTIONS(3052), + [anon_sym_export] = ACTIONS(3052), + [anon_sym_default] = ACTIONS(3052), + [anon_sym_type] = ACTIONS(3052), + [anon_sym_namespace] = ACTIONS(3052), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_typeof] = ACTIONS(3052), + [anon_sym_import] = ACTIONS(3052), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_var] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_BANG] = ACTIONS(3052), + [anon_sym_else] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_switch] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_await] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_break] = ACTIONS(3052), + [anon_sym_continue] = ACTIONS(3052), + [anon_sym_debugger] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_throw] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_case] = ACTIONS(3052), + [anon_sym_finally] = ACTIONS(3012), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LTtemplate_GT] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_class] = ACTIONS(3052), + [anon_sym_async] = ACTIONS(3052), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_using] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_SLASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3052), + [anon_sym_void] = ACTIONS(3052), + [anon_sym_delete] = ACTIONS(3052), + [anon_sym_PLUS_PLUS] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3052), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3052), + [sym_number] = ACTIONS(3052), + [sym_private_property_identifier] = ACTIONS(3052), + [sym_this] = ACTIONS(3052), + [sym_super] = ACTIONS(3052), + [sym_true] = ACTIONS(3052), + [sym_false] = ACTIONS(3052), + [sym_null] = ACTIONS(3052), + [sym_undefined] = ACTIONS(3052), + [anon_sym_AT] = ACTIONS(3052), + [anon_sym_static] = ACTIONS(3052), + [anon_sym_readonly] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_declare] = ACTIONS(3052), + [anon_sym_public] = ACTIONS(3052), + [anon_sym_private] = ACTIONS(3052), + [anon_sym_protected] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3052), + [anon_sym_module] = ACTIONS(3052), + [anon_sym_any] = ACTIONS(3052), + [anon_sym_number] = ACTIONS(3052), + [anon_sym_boolean] = ACTIONS(3052), + [anon_sym_string] = ACTIONS(3052), + [anon_sym_symbol] = ACTIONS(3052), + [anon_sym_object] = ACTIONS(3052), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_interface] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), [sym_html_comment] = ACTIONS(5), }, - [895] = { - [sym__call_signature] = STATE(7253), - [sym_comment] = STATE(895), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [897] = { + [sym__call_signature] = STATE(7068), + [sym_comment] = STATE(897), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(2966), [anon_sym_export] = ACTIONS(2968), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1294), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2968), [anon_sym_let] = ACTIONS(2968), @@ -136650,101 +136512,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [896] = { - [sym_catch_clause] = STATE(1161), - [sym_finally_clause] = STATE(1705), - [sym_comment] = STATE(896), - [ts_builtin_sym_end] = ACTIONS(3030), - [sym_identifier] = ACTIONS(3018), - [anon_sym_export] = ACTIONS(3018), - [anon_sym_type] = ACTIONS(3018), - [anon_sym_namespace] = ACTIONS(3018), - [anon_sym_LBRACE] = ACTIONS(3018), - [anon_sym_RBRACE] = ACTIONS(3018), - [anon_sym_typeof] = ACTIONS(3018), - [anon_sym_import] = ACTIONS(3018), - [anon_sym_with] = ACTIONS(3018), - [anon_sym_var] = ACTIONS(3018), - [anon_sym_let] = ACTIONS(3018), - [anon_sym_const] = ACTIONS(3018), - [anon_sym_BANG] = ACTIONS(3018), - [anon_sym_if] = ACTIONS(3018), - [anon_sym_switch] = ACTIONS(3018), - [anon_sym_for] = ACTIONS(3018), - [anon_sym_LPAREN] = ACTIONS(3018), - [anon_sym_await] = ACTIONS(3018), - [anon_sym_while] = ACTIONS(3018), - [anon_sym_do] = ACTIONS(3018), - [anon_sym_try] = ACTIONS(3018), - [anon_sym_break] = ACTIONS(3018), - [anon_sym_continue] = ACTIONS(3018), - [anon_sym_debugger] = ACTIONS(3018), - [anon_sym_return] = ACTIONS(3018), - [anon_sym_throw] = ACTIONS(3018), - [anon_sym_SEMI] = ACTIONS(3018), - [anon_sym_catch] = ACTIONS(3046), - [anon_sym_finally] = ACTIONS(3048), - [anon_sym_yield] = ACTIONS(3018), - [anon_sym_LBRACK] = ACTIONS(3018), - [anon_sym_LTtemplate_GT] = ACTIONS(3018), - [anon_sym_DQUOTE] = ACTIONS(3018), - [anon_sym_SQUOTE] = ACTIONS(3018), - [anon_sym_class] = ACTIONS(3018), - [anon_sym_async] = ACTIONS(3018), - [anon_sym_function] = ACTIONS(3018), - [anon_sym_new] = ACTIONS(3018), - [anon_sym_using] = ACTIONS(3018), - [anon_sym_PLUS] = ACTIONS(3018), - [anon_sym_DASH] = ACTIONS(3018), - [anon_sym_SLASH] = ACTIONS(3018), - [anon_sym_LT] = ACTIONS(3018), - [anon_sym_TILDE] = ACTIONS(3018), - [anon_sym_void] = ACTIONS(3018), - [anon_sym_delete] = ACTIONS(3018), - [anon_sym_PLUS_PLUS] = ACTIONS(3018), - [anon_sym_DASH_DASH] = ACTIONS(3018), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3018), - [sym_number] = ACTIONS(3018), - [sym_private_property_identifier] = ACTIONS(3018), - [sym_this] = ACTIONS(3018), - [sym_super] = ACTIONS(3018), - [sym_true] = ACTIONS(3018), - [sym_false] = ACTIONS(3018), - [sym_null] = ACTIONS(3018), - [sym_undefined] = ACTIONS(3018), - [anon_sym_AT] = ACTIONS(3018), - [anon_sym_static] = ACTIONS(3018), - [anon_sym_readonly] = ACTIONS(3018), - [anon_sym_get] = ACTIONS(3018), - [anon_sym_set] = ACTIONS(3018), - [anon_sym_declare] = ACTIONS(3018), - [anon_sym_public] = ACTIONS(3018), - [anon_sym_private] = ACTIONS(3018), - [anon_sym_protected] = ACTIONS(3018), - [anon_sym_override] = ACTIONS(3018), - [anon_sym_module] = ACTIONS(3018), - [anon_sym_any] = ACTIONS(3018), - [anon_sym_number] = ACTIONS(3018), - [anon_sym_boolean] = ACTIONS(3018), - [anon_sym_string] = ACTIONS(3018), - [anon_sym_symbol] = ACTIONS(3018), - [anon_sym_object] = ACTIONS(3018), - [anon_sym_abstract] = ACTIONS(3018), - [anon_sym_interface] = ACTIONS(3018), - [anon_sym_enum] = ACTIONS(3018), - [sym_html_comment] = ACTIONS(5), - }, - [897] = { - [sym__call_signature] = STATE(7253), - [sym_comment] = STATE(897), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [898] = { + [sym__call_signature] = STATE(7068), + [sym_comment] = STATE(898), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(2966), [anon_sym_export] = ACTIONS(2968), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1346), + [anon_sym_EQ] = ACTIONS(1348), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2968), [anon_sym_let] = ACTIONS(2968), @@ -136820,16 +136597,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [898] = { - [sym__call_signature] = STATE(7253), - [sym_comment] = STATE(898), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [899] = { + [sym__call_signature] = STATE(7068), + [sym_comment] = STATE(899), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(2966), [anon_sym_export] = ACTIONS(2968), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1352), + [anon_sym_EQ] = ACTIONS(1356), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2968), [anon_sym_let] = ACTIONS(2968), @@ -136905,101 +136682,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [899] = { - [sym_comment] = STATE(899), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_finally] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(3050), - [sym_html_comment] = ACTIONS(5), - }, [900] = { - [sym__call_signature] = STATE(7253), + [sym__call_signature] = STATE(7068), [sym_comment] = STATE(900), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(2966), [anon_sym_export] = ACTIONS(2968), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1348), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2968), [anon_sym_let] = ACTIONS(2968), @@ -137076,15 +136768,610 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [901] = { - [sym__call_signature] = STATE(7253), [sym_comment] = STATE(901), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_catch] = ACTIONS(2067), + [anon_sym_finally] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [sym__automatic_semicolon] = ACTIONS(3054), + [sym_html_comment] = ACTIONS(5), + }, + [902] = { + [sym_comment] = STATE(902), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_catch] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(3056), + [sym_html_comment] = ACTIONS(5), + }, + [903] = { + [sym_comment] = STATE(903), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_case] = ACTIONS(2067), + [anon_sym_finally] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [sym__automatic_semicolon] = ACTIONS(3058), + [sym_html_comment] = ACTIONS(5), + }, + [904] = { + [sym_comment] = STATE(904), + [sym_identifier] = ACTIONS(2221), + [anon_sym_export] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_typeof] = ACTIONS(2221), + [anon_sym_import] = ACTIONS(2221), + [anon_sym_with] = ACTIONS(2221), + [anon_sym_var] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_else] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_debugger] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_case] = ACTIONS(2221), + [anon_sym_catch] = ACTIONS(2221), + [anon_sym_finally] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LTtemplate_GT] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_void] = ACTIONS(2221), + [anon_sym_delete] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2221), + [sym_number] = ACTIONS(2221), + [sym_private_property_identifier] = ACTIONS(2221), + [sym_this] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_null] = ACTIONS(2221), + [sym_undefined] = ACTIONS(2221), + [anon_sym_AT] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_get] = ACTIONS(2221), + [anon_sym_set] = ACTIONS(2221), + [anon_sym_declare] = ACTIONS(2221), + [anon_sym_public] = ACTIONS(2221), + [anon_sym_private] = ACTIONS(2221), + [anon_sym_protected] = ACTIONS(2221), + [anon_sym_override] = ACTIONS(2221), + [anon_sym_module] = ACTIONS(2221), + [anon_sym_any] = ACTIONS(2221), + [anon_sym_number] = ACTIONS(2221), + [anon_sym_boolean] = ACTIONS(2221), + [anon_sym_string] = ACTIONS(2221), + [anon_sym_symbol] = ACTIONS(2221), + [anon_sym_object] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [sym_html_comment] = ACTIONS(5), + }, + [905] = { + [sym_comment] = STATE(905), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_case] = ACTIONS(2067), + [anon_sym_catch] = ACTIONS(2067), + [anon_sym_finally] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [sym__automatic_semicolon] = ACTIONS(3060), + [sym_html_comment] = ACTIONS(5), + }, + [906] = { + [sym_comment] = STATE(906), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_catch] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym_html_comment] = ACTIONS(5), + }, + [907] = { + [sym_comment] = STATE(907), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(3062), + [sym_html_comment] = ACTIONS(5), + }, + [908] = { + [sym__call_signature] = STATE(7068), + [sym_comment] = STATE(908), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(2966), [anon_sym_export] = ACTIONS(2968), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1344), + [anon_sym_EQ] = ACTIONS(1354), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2968), [anon_sym_let] = ACTIONS(2968), @@ -137160,16 +137447,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [902] = { - [sym__call_signature] = STATE(7253), - [sym_comment] = STATE(902), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [909] = { + [sym_statement_block] = STATE(1102), + [sym_comment] = STATE(909), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(3064), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym_html_comment] = ACTIONS(5), + }, + [910] = { + [sym__call_signature] = STATE(7068), + [sym_comment] = STATE(910), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(2966), [anon_sym_export] = ACTIONS(2968), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1358), + [anon_sym_EQ] = ACTIONS(1292), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2968), [anon_sym_let] = ACTIONS(2968), @@ -137245,271 +137617,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [903] = { - [sym_comment] = STATE(903), - [ts_builtin_sym_end] = ACTIONS(2103), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_catch] = ACTIONS(2067), - [anon_sym_finally] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3052), - [sym_html_comment] = ACTIONS(5), - }, - [904] = { - [sym_comment] = STATE(904), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_catch] = ACTIONS(2093), - [anon_sym_finally] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(3054), - [sym_html_comment] = ACTIONS(5), - }, - [905] = { - [sym_finally_clause] = STATE(1193), - [sym_comment] = STATE(905), - [sym_identifier] = ACTIONS(3056), - [anon_sym_export] = ACTIONS(3056), - [anon_sym_default] = ACTIONS(3056), - [anon_sym_type] = ACTIONS(3056), - [anon_sym_namespace] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_RBRACE] = ACTIONS(3056), - [anon_sym_typeof] = ACTIONS(3056), - [anon_sym_import] = ACTIONS(3056), - [anon_sym_with] = ACTIONS(3056), - [anon_sym_var] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_const] = ACTIONS(3056), - [anon_sym_BANG] = ACTIONS(3056), - [anon_sym_else] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3056), - [anon_sym_switch] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_await] = ACTIONS(3056), - [anon_sym_while] = ACTIONS(3056), - [anon_sym_do] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3056), - [anon_sym_break] = ACTIONS(3056), - [anon_sym_continue] = ACTIONS(3056), - [anon_sym_debugger] = ACTIONS(3056), - [anon_sym_return] = ACTIONS(3056), - [anon_sym_throw] = ACTIONS(3056), - [anon_sym_SEMI] = ACTIONS(3056), - [anon_sym_case] = ACTIONS(3056), - [anon_sym_finally] = ACTIONS(3022), - [anon_sym_yield] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_LTtemplate_GT] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [anon_sym_SQUOTE] = ACTIONS(3056), - [anon_sym_class] = ACTIONS(3056), - [anon_sym_async] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3056), - [anon_sym_new] = ACTIONS(3056), - [anon_sym_using] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_SLASH] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [anon_sym_void] = ACTIONS(3056), - [anon_sym_delete] = ACTIONS(3056), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3056), - [sym_number] = ACTIONS(3056), - [sym_private_property_identifier] = ACTIONS(3056), - [sym_this] = ACTIONS(3056), - [sym_super] = ACTIONS(3056), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_AT] = ACTIONS(3056), - [anon_sym_static] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3056), - [anon_sym_get] = ACTIONS(3056), - [anon_sym_set] = ACTIONS(3056), - [anon_sym_declare] = ACTIONS(3056), - [anon_sym_public] = ACTIONS(3056), - [anon_sym_private] = ACTIONS(3056), - [anon_sym_protected] = ACTIONS(3056), - [anon_sym_override] = ACTIONS(3056), - [anon_sym_module] = ACTIONS(3056), - [anon_sym_any] = ACTIONS(3056), - [anon_sym_number] = ACTIONS(3056), - [anon_sym_boolean] = ACTIONS(3056), - [anon_sym_string] = ACTIONS(3056), - [anon_sym_symbol] = ACTIONS(3056), - [anon_sym_object] = ACTIONS(3056), - [anon_sym_abstract] = ACTIONS(3056), - [anon_sym_interface] = ACTIONS(3056), - [anon_sym_enum] = ACTIONS(3056), - [sym_html_comment] = ACTIONS(5), - }, - [906] = { - [sym__call_signature] = STATE(7253), - [sym_comment] = STATE(906), - [sym_formal_parameters] = STATE(4790), - [sym_type_parameters] = STATE(6683), + [911] = { + [sym__call_signature] = STATE(7068), + [sym_comment] = STATE(911), + [sym_formal_parameters] = STATE(4683), + [sym_type_parameters] = STATE(6493), [sym_identifier] = ACTIONS(2966), [anon_sym_export] = ACTIONS(2968), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2968), - [anon_sym_EQ] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1352), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2968), [anon_sym_let] = ACTIONS(2968), @@ -137585,8 +137702,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [907] = { - [sym_comment] = STATE(907), + [912] = { + [sym_statement_block] = STATE(1102), + [sym_comment] = STATE(912), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(3042), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym_html_comment] = ACTIONS(5), + }, + [913] = { + [sym_comment] = STATE(913), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), [anon_sym_default] = ACTIONS(2067), @@ -137617,7 +137818,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2067), [anon_sym_SEMI] = ACTIONS(2067), [anon_sym_case] = ACTIONS(2067), - [anon_sym_finally] = ACTIONS(2067), [anon_sym_yield] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(2067), [anon_sym_LTtemplate_GT] = ACTIONS(2067), @@ -137667,1359 +137867,935 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3058), - [sym_html_comment] = ACTIONS(5), - }, - [908] = { - [sym_statement_block] = STATE(1018), - [sym_comment] = STATE(908), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_default] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_else] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_case] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(3062), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [sym_html_comment] = ACTIONS(5), - }, - [909] = { - [sym_statement_block] = STATE(1018), - [sym_comment] = STATE(909), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_default] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_else] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_case] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(3064), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [sym_html_comment] = ACTIONS(5), - }, - [910] = { - [sym_comment] = STATE(910), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_catch] = ACTIONS(2093), - [anon_sym_finally] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym_html_comment] = ACTIONS(5), - }, - [911] = { - [sym_comment] = STATE(911), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_catch] = ACTIONS(2105), - [anon_sym_finally] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym_html_comment] = ACTIONS(5), - }, - [912] = { - [sym_comment] = STATE(912), - [sym_identifier] = ACTIONS(3066), - [anon_sym_export] = ACTIONS(3066), - [anon_sym_default] = ACTIONS(3066), - [anon_sym_type] = ACTIONS(3066), - [anon_sym_namespace] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_RBRACE] = ACTIONS(3066), - [anon_sym_typeof] = ACTIONS(3066), - [anon_sym_import] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3066), - [anon_sym_var] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_BANG] = ACTIONS(3066), - [anon_sym_else] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_await] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_debugger] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [anon_sym_case] = ACTIONS(3066), - [anon_sym_finally] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LTtemplate_GT] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3066), - [anon_sym_class] = ACTIONS(3066), - [anon_sym_async] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_using] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_SLASH] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3066), - [anon_sym_void] = ACTIONS(3066), - [anon_sym_delete] = ACTIONS(3066), - [anon_sym_PLUS_PLUS] = ACTIONS(3066), - [anon_sym_DASH_DASH] = ACTIONS(3066), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3066), - [sym_number] = ACTIONS(3066), - [sym_private_property_identifier] = ACTIONS(3066), - [sym_this] = ACTIONS(3066), - [sym_super] = ACTIONS(3066), - [sym_true] = ACTIONS(3066), - [sym_false] = ACTIONS(3066), - [sym_null] = ACTIONS(3066), - [sym_undefined] = ACTIONS(3066), - [anon_sym_AT] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_readonly] = ACTIONS(3066), - [anon_sym_get] = ACTIONS(3066), - [anon_sym_set] = ACTIONS(3066), - [anon_sym_declare] = ACTIONS(3066), - [anon_sym_public] = ACTIONS(3066), - [anon_sym_private] = ACTIONS(3066), - [anon_sym_protected] = ACTIONS(3066), - [anon_sym_override] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - [anon_sym_any] = ACTIONS(3066), - [anon_sym_number] = ACTIONS(3066), - [anon_sym_boolean] = ACTIONS(3066), - [anon_sym_string] = ACTIONS(3066), - [anon_sym_symbol] = ACTIONS(3066), - [anon_sym_object] = ACTIONS(3066), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_interface] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), - [sym_html_comment] = ACTIONS(5), - }, - [913] = { - [sym_else_clause] = STATE(1470), - [sym_comment] = STATE(913), - [sym_identifier] = ACTIONS(3068), - [anon_sym_export] = ACTIONS(3068), - [anon_sym_default] = ACTIONS(3068), - [anon_sym_type] = ACTIONS(3068), - [anon_sym_namespace] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_typeof] = ACTIONS(3068), - [anon_sym_import] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), - [anon_sym_var] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_const] = ACTIONS(3068), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_else] = ACTIONS(3070), - [anon_sym_if] = ACTIONS(3068), - [anon_sym_switch] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_await] = ACTIONS(3068), - [anon_sym_while] = ACTIONS(3068), - [anon_sym_do] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3068), - [anon_sym_break] = ACTIONS(3068), - [anon_sym_continue] = ACTIONS(3068), - [anon_sym_debugger] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3068), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [anon_sym_case] = ACTIONS(3068), - [anon_sym_yield] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_LTtemplate_GT] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_class] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(3068), - [anon_sym_new] = ACTIONS(3068), - [anon_sym_using] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_SLASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_void] = ACTIONS(3068), - [anon_sym_delete] = ACTIONS(3068), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3068), - [sym_number] = ACTIONS(3068), - [sym_private_property_identifier] = ACTIONS(3068), - [sym_this] = ACTIONS(3068), - [sym_super] = ACTIONS(3068), - [sym_true] = ACTIONS(3068), - [sym_false] = ACTIONS(3068), - [sym_null] = ACTIONS(3068), - [sym_undefined] = ACTIONS(3068), - [anon_sym_AT] = ACTIONS(3068), - [anon_sym_static] = ACTIONS(3068), - [anon_sym_readonly] = ACTIONS(3068), - [anon_sym_get] = ACTIONS(3068), - [anon_sym_set] = ACTIONS(3068), - [anon_sym_declare] = ACTIONS(3068), - [anon_sym_public] = ACTIONS(3068), - [anon_sym_private] = ACTIONS(3068), - [anon_sym_protected] = ACTIONS(3068), - [anon_sym_override] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_any] = ACTIONS(3068), - [anon_sym_number] = ACTIONS(3068), - [anon_sym_boolean] = ACTIONS(3068), - [anon_sym_string] = ACTIONS(3068), - [anon_sym_symbol] = ACTIONS(3068), - [anon_sym_object] = ACTIONS(3068), - [anon_sym_abstract] = ACTIONS(3068), - [anon_sym_interface] = ACTIONS(3068), - [anon_sym_enum] = ACTIONS(3068), + [sym__automatic_semicolon] = ACTIONS(3066), [sym_html_comment] = ACTIONS(5), }, [914] = { [sym_comment] = STATE(914), - [sym_identifier] = ACTIONS(2085), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_default] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_typeof] = ACTIONS(2085), - [anon_sym_import] = ACTIONS(2085), - [anon_sym_with] = ACTIONS(2085), - [anon_sym_var] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_else] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_debugger] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_case] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LTtemplate_GT] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_void] = ACTIONS(2085), - [anon_sym_delete] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2085), - [sym_number] = ACTIONS(2085), - [sym_private_property_identifier] = ACTIONS(2085), - [sym_this] = ACTIONS(2085), - [sym_super] = ACTIONS(2085), - [sym_true] = ACTIONS(2085), - [sym_false] = ACTIONS(2085), - [sym_null] = ACTIONS(2085), - [sym_undefined] = ACTIONS(2085), - [anon_sym_AT] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_readonly] = ACTIONS(2085), - [anon_sym_get] = ACTIONS(2085), - [anon_sym_set] = ACTIONS(2085), - [anon_sym_declare] = ACTIONS(2085), - [anon_sym_public] = ACTIONS(2085), - [anon_sym_private] = ACTIONS(2085), - [anon_sym_protected] = ACTIONS(2085), - [anon_sym_override] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_any] = ACTIONS(2085), - [anon_sym_number] = ACTIONS(2085), - [anon_sym_boolean] = ACTIONS(2085), - [anon_sym_string] = ACTIONS(2085), - [anon_sym_symbol] = ACTIONS(2085), - [anon_sym_object] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [sym__automatic_semicolon] = ACTIONS(2089), + [sym_identifier] = ACTIONS(2129), + [anon_sym_export] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_namespace] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2129), + [anon_sym_RBRACE] = ACTIONS(2129), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_import] = ACTIONS(2129), + [anon_sym_with] = ACTIONS(2129), + [anon_sym_var] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_else] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_debugger] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_throw] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_yield] = ACTIONS(2129), + [anon_sym_LBRACK] = ACTIONS(2129), + [anon_sym_LTtemplate_GT] = ACTIONS(2129), + [anon_sym_DQUOTE] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_class] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_function] = ACTIONS(2129), + [anon_sym_new] = ACTIONS(2129), + [anon_sym_using] = ACTIONS(2129), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_SLASH] = ACTIONS(2129), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_void] = ACTIONS(2129), + [anon_sym_delete] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2129), + [sym_number] = ACTIONS(2129), + [sym_private_property_identifier] = ACTIONS(2129), + [sym_this] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_true] = ACTIONS(2129), + [sym_false] = ACTIONS(2129), + [sym_null] = ACTIONS(2129), + [sym_undefined] = ACTIONS(2129), + [anon_sym_AT] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_readonly] = ACTIONS(2129), + [anon_sym_get] = ACTIONS(2129), + [anon_sym_set] = ACTIONS(2129), + [anon_sym_declare] = ACTIONS(2129), + [anon_sym_public] = ACTIONS(2129), + [anon_sym_private] = ACTIONS(2129), + [anon_sym_protected] = ACTIONS(2129), + [anon_sym_override] = ACTIONS(2129), + [anon_sym_module] = ACTIONS(2129), + [anon_sym_any] = ACTIONS(2129), + [anon_sym_number] = ACTIONS(2129), + [anon_sym_boolean] = ACTIONS(2129), + [anon_sym_string] = ACTIONS(2129), + [anon_sym_symbol] = ACTIONS(2129), + [anon_sym_object] = ACTIONS(2129), + [anon_sym_abstract] = ACTIONS(2129), + [anon_sym_interface] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [sym__automatic_semicolon] = ACTIONS(2133), [sym_html_comment] = ACTIONS(5), }, [915] = { - [sym_statement_block] = STATE(1018), [sym_comment] = STATE(915), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_default] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(3060), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_else] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_case] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(3068), [sym_html_comment] = ACTIONS(5), }, [916] = { [sym_comment] = STATE(916), - [sym_identifier] = ACTIONS(2173), - [anon_sym_export] = ACTIONS(2173), - [anon_sym_default] = ACTIONS(2173), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_namespace] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_typeof] = ACTIONS(2173), - [anon_sym_import] = ACTIONS(2173), - [anon_sym_with] = ACTIONS(2173), - [anon_sym_var] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2173), - [anon_sym_else] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_switch] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_debugger] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_throw] = ACTIONS(2173), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_case] = ACTIONS(2173), - [anon_sym_yield] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_LTtemplate_GT] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_class] = ACTIONS(2173), - [anon_sym_async] = ACTIONS(2173), - [anon_sym_function] = ACTIONS(2173), - [anon_sym_new] = ACTIONS(2173), - [anon_sym_using] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_SLASH] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2173), - [anon_sym_TILDE] = ACTIONS(2173), - [anon_sym_void] = ACTIONS(2173), - [anon_sym_delete] = ACTIONS(2173), - [anon_sym_PLUS_PLUS] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2173), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2173), - [sym_number] = ACTIONS(2173), - [sym_private_property_identifier] = ACTIONS(2173), - [sym_this] = ACTIONS(2173), - [sym_super] = ACTIONS(2173), - [sym_true] = ACTIONS(2173), - [sym_false] = ACTIONS(2173), - [sym_null] = ACTIONS(2173), - [sym_undefined] = ACTIONS(2173), - [anon_sym_AT] = ACTIONS(2173), - [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_abstract] = ACTIONS(2173), - [anon_sym_interface] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [sym__automatic_semicolon] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_catch] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), [sym_html_comment] = ACTIONS(5), }, [917] = { + [sym_else_clause] = STATE(1190), [sym_comment] = STATE(917), - [sym_identifier] = ACTIONS(2181), - [anon_sym_export] = ACTIONS(2181), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_namespace] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_typeof] = ACTIONS(2181), - [anon_sym_import] = ACTIONS(2181), - [anon_sym_with] = ACTIONS(2181), - [anon_sym_var] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2181), - [anon_sym_else] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_switch] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_do] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_debugger] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_throw] = ACTIONS(2181), - [anon_sym_SEMI] = ACTIONS(2181), - [anon_sym_case] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_LTtemplate_GT] = ACTIONS(2181), - [anon_sym_DQUOTE] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_class] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_function] = ACTIONS(2181), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_using] = ACTIONS(2181), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_SLASH] = ACTIONS(2181), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_TILDE] = ACTIONS(2181), - [anon_sym_void] = ACTIONS(2181), - [anon_sym_delete] = ACTIONS(2181), - [anon_sym_PLUS_PLUS] = ACTIONS(2181), - [anon_sym_DASH_DASH] = ACTIONS(2181), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2181), - [sym_number] = ACTIONS(2181), - [sym_private_property_identifier] = ACTIONS(2181), - [sym_this] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_true] = ACTIONS(2181), - [sym_false] = ACTIONS(2181), - [sym_null] = ACTIONS(2181), - [sym_undefined] = ACTIONS(2181), - [anon_sym_AT] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_readonly] = ACTIONS(2181), - [anon_sym_get] = ACTIONS(2181), - [anon_sym_set] = ACTIONS(2181), - [anon_sym_declare] = ACTIONS(2181), - [anon_sym_public] = ACTIONS(2181), - [anon_sym_private] = ACTIONS(2181), - [anon_sym_protected] = ACTIONS(2181), - [anon_sym_override] = ACTIONS(2181), - [anon_sym_module] = ACTIONS(2181), - [anon_sym_any] = ACTIONS(2181), - [anon_sym_number] = ACTIONS(2181), - [anon_sym_boolean] = ACTIONS(2181), - [anon_sym_string] = ACTIONS(2181), - [anon_sym_symbol] = ACTIONS(2181), - [anon_sym_object] = ACTIONS(2181), - [anon_sym_abstract] = ACTIONS(2181), - [anon_sym_interface] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [sym__automatic_semicolon] = ACTIONS(2185), + [sym_identifier] = ACTIONS(3070), + [anon_sym_export] = ACTIONS(3070), + [anon_sym_default] = ACTIONS(3070), + [anon_sym_type] = ACTIONS(3070), + [anon_sym_namespace] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3070), + [anon_sym_RBRACE] = ACTIONS(3070), + [anon_sym_typeof] = ACTIONS(3070), + [anon_sym_import] = ACTIONS(3070), + [anon_sym_with] = ACTIONS(3070), + [anon_sym_var] = ACTIONS(3070), + [anon_sym_let] = ACTIONS(3070), + [anon_sym_const] = ACTIONS(3070), + [anon_sym_BANG] = ACTIONS(3070), + [anon_sym_else] = ACTIONS(3072), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_switch] = ACTIONS(3070), + [anon_sym_for] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3070), + [anon_sym_await] = ACTIONS(3070), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_do] = ACTIONS(3070), + [anon_sym_try] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_debugger] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3070), + [anon_sym_SEMI] = ACTIONS(3070), + [anon_sym_case] = ACTIONS(3070), + [anon_sym_yield] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3070), + [anon_sym_LTtemplate_GT] = ACTIONS(3070), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_class] = ACTIONS(3070), + [anon_sym_async] = ACTIONS(3070), + [anon_sym_function] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3070), + [anon_sym_using] = ACTIONS(3070), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_SLASH] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3070), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_void] = ACTIONS(3070), + [anon_sym_delete] = ACTIONS(3070), + [anon_sym_PLUS_PLUS] = ACTIONS(3070), + [anon_sym_DASH_DASH] = ACTIONS(3070), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3070), + [sym_number] = ACTIONS(3070), + [sym_private_property_identifier] = ACTIONS(3070), + [sym_this] = ACTIONS(3070), + [sym_super] = ACTIONS(3070), + [sym_true] = ACTIONS(3070), + [sym_false] = ACTIONS(3070), + [sym_null] = ACTIONS(3070), + [sym_undefined] = ACTIONS(3070), + [anon_sym_AT] = ACTIONS(3070), + [anon_sym_static] = ACTIONS(3070), + [anon_sym_readonly] = ACTIONS(3070), + [anon_sym_get] = ACTIONS(3070), + [anon_sym_set] = ACTIONS(3070), + [anon_sym_declare] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3070), + [anon_sym_private] = ACTIONS(3070), + [anon_sym_protected] = ACTIONS(3070), + [anon_sym_override] = ACTIONS(3070), + [anon_sym_module] = ACTIONS(3070), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3070), + [anon_sym_interface] = ACTIONS(3070), + [anon_sym_enum] = ACTIONS(3070), [sym_html_comment] = ACTIONS(5), }, [918] = { [sym_comment] = STATE(918), - [sym_identifier] = ACTIONS(3072), - [anon_sym_export] = ACTIONS(3072), - [anon_sym_default] = ACTIONS(3072), - [anon_sym_type] = ACTIONS(3072), - [anon_sym_namespace] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_RBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3072), - [anon_sym_import] = ACTIONS(3072), - [anon_sym_with] = ACTIONS(3072), - [anon_sym_var] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_const] = ACTIONS(3072), - [anon_sym_BANG] = ACTIONS(3072), - [anon_sym_else] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_switch] = ACTIONS(3072), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_await] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_break] = ACTIONS(3072), - [anon_sym_continue] = ACTIONS(3072), - [anon_sym_debugger] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_throw] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3072), - [anon_sym_case] = ACTIONS(3072), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LTtemplate_GT] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_class] = ACTIONS(3072), - [anon_sym_async] = ACTIONS(3072), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_using] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_SLASH] = ACTIONS(3072), - [anon_sym_LT] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_void] = ACTIONS(3072), - [anon_sym_delete] = ACTIONS(3072), - [anon_sym_PLUS_PLUS] = ACTIONS(3072), - [anon_sym_DASH_DASH] = ACTIONS(3072), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3072), - [sym_private_property_identifier] = ACTIONS(3072), - [sym_this] = ACTIONS(3072), - [sym_super] = ACTIONS(3072), - [sym_true] = ACTIONS(3072), - [sym_false] = ACTIONS(3072), - [sym_null] = ACTIONS(3072), - [sym_undefined] = ACTIONS(3072), - [anon_sym_AT] = ACTIONS(3072), - [anon_sym_static] = ACTIONS(3072), - [anon_sym_readonly] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(3072), - [anon_sym_set] = ACTIONS(3072), - [anon_sym_declare] = ACTIONS(3072), - [anon_sym_public] = ACTIONS(3072), - [anon_sym_private] = ACTIONS(3072), - [anon_sym_protected] = ACTIONS(3072), - [anon_sym_override] = ACTIONS(3072), - [anon_sym_module] = ACTIONS(3072), - [anon_sym_any] = ACTIONS(3072), - [anon_sym_number] = ACTIONS(3072), - [anon_sym_boolean] = ACTIONS(3072), - [anon_sym_string] = ACTIONS(3072), - [anon_sym_symbol] = ACTIONS(3072), - [anon_sym_object] = ACTIONS(3072), - [anon_sym_abstract] = ACTIONS(3072), - [anon_sym_interface] = ACTIONS(3072), - [anon_sym_enum] = ACTIONS(3072), - [sym__automatic_semicolon] = ACTIONS(3074), + [sym_identifier] = ACTIONS(2221), + [anon_sym_export] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_typeof] = ACTIONS(2221), + [anon_sym_import] = ACTIONS(2221), + [anon_sym_with] = ACTIONS(2221), + [anon_sym_var] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_debugger] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_case] = ACTIONS(2221), + [anon_sym_catch] = ACTIONS(2221), + [anon_sym_finally] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LTtemplate_GT] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_void] = ACTIONS(2221), + [anon_sym_delete] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2221), + [sym_number] = ACTIONS(2221), + [sym_private_property_identifier] = ACTIONS(2221), + [sym_this] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_null] = ACTIONS(2221), + [sym_undefined] = ACTIONS(2221), + [anon_sym_AT] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_get] = ACTIONS(2221), + [anon_sym_set] = ACTIONS(2221), + [anon_sym_declare] = ACTIONS(2221), + [anon_sym_public] = ACTIONS(2221), + [anon_sym_private] = ACTIONS(2221), + [anon_sym_protected] = ACTIONS(2221), + [anon_sym_override] = ACTIONS(2221), + [anon_sym_module] = ACTIONS(2221), + [anon_sym_any] = ACTIONS(2221), + [anon_sym_number] = ACTIONS(2221), + [anon_sym_boolean] = ACTIONS(2221), + [anon_sym_string] = ACTIONS(2221), + [anon_sym_symbol] = ACTIONS(2221), + [anon_sym_object] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), [sym_html_comment] = ACTIONS(5), }, [919] = { [sym_comment] = STATE(919), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3076), + [sym_identifier] = ACTIONS(3074), + [anon_sym_export] = ACTIONS(3074), + [anon_sym_default] = ACTIONS(3074), + [anon_sym_type] = ACTIONS(3074), + [anon_sym_namespace] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3074), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_typeof] = ACTIONS(3074), + [anon_sym_import] = ACTIONS(3074), + [anon_sym_with] = ACTIONS(3074), + [anon_sym_var] = ACTIONS(3074), + [anon_sym_let] = ACTIONS(3074), + [anon_sym_const] = ACTIONS(3074), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_switch] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3074), + [anon_sym_await] = ACTIONS(3074), + [anon_sym_while] = ACTIONS(3074), + [anon_sym_do] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_debugger] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_throw] = ACTIONS(3074), + [anon_sym_SEMI] = ACTIONS(3076), + [anon_sym_case] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3074), + [anon_sym_LBRACK] = ACTIONS(3074), + [anon_sym_LTtemplate_GT] = ACTIONS(3074), + [anon_sym_DQUOTE] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3074), + [anon_sym_class] = ACTIONS(3074), + [anon_sym_async] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3074), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_using] = ACTIONS(3074), + [anon_sym_PLUS] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3074), + [anon_sym_SLASH] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_TILDE] = ACTIONS(3074), + [anon_sym_void] = ACTIONS(3074), + [anon_sym_delete] = ACTIONS(3074), + [anon_sym_PLUS_PLUS] = ACTIONS(3074), + [anon_sym_DASH_DASH] = ACTIONS(3074), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3074), + [sym_number] = ACTIONS(3074), + [sym_private_property_identifier] = ACTIONS(3074), + [sym_this] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_AT] = ACTIONS(3074), + [anon_sym_static] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3074), + [anon_sym_get] = ACTIONS(3074), + [anon_sym_set] = ACTIONS(3074), + [anon_sym_declare] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_module] = ACTIONS(3074), + [anon_sym_any] = ACTIONS(3074), + [anon_sym_number] = ACTIONS(3074), + [anon_sym_boolean] = ACTIONS(3074), + [anon_sym_string] = ACTIONS(3074), + [anon_sym_symbol] = ACTIONS(3074), + [anon_sym_object] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_interface] = ACTIONS(3074), + [anon_sym_enum] = ACTIONS(3074), + [sym__automatic_semicolon] = ACTIONS(3078), [sym_html_comment] = ACTIONS(5), }, [920] = { [sym_comment] = STATE(920), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_finally] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), + [sym_identifier] = ACTIONS(2167), + [anon_sym_export] = ACTIONS(2167), + [anon_sym_default] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_namespace] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_typeof] = ACTIONS(2167), + [anon_sym_import] = ACTIONS(2167), + [anon_sym_with] = ACTIONS(2167), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_else] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_switch] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_await] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_do] = ACTIONS(2167), + [anon_sym_try] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_debugger] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_throw] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_case] = ACTIONS(2167), + [anon_sym_yield] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_LTtemplate_GT] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_class] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_function] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(2167), + [anon_sym_using] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_void] = ACTIONS(2167), + [anon_sym_delete] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2167), + [sym_number] = ACTIONS(2167), + [sym_private_property_identifier] = ACTIONS(2167), + [sym_this] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_true] = ACTIONS(2167), + [sym_false] = ACTIONS(2167), + [sym_null] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(2167), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_readonly] = ACTIONS(2167), + [anon_sym_get] = ACTIONS(2167), + [anon_sym_set] = ACTIONS(2167), + [anon_sym_declare] = ACTIONS(2167), + [anon_sym_public] = ACTIONS(2167), + [anon_sym_private] = ACTIONS(2167), + [anon_sym_protected] = ACTIONS(2167), + [anon_sym_override] = ACTIONS(2167), + [anon_sym_module] = ACTIONS(2167), + [anon_sym_any] = ACTIONS(2167), + [anon_sym_number] = ACTIONS(2167), + [anon_sym_boolean] = ACTIONS(2167), + [anon_sym_string] = ACTIONS(2167), + [anon_sym_symbol] = ACTIONS(2167), + [anon_sym_object] = ACTIONS(2167), + [anon_sym_abstract] = ACTIONS(2167), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [sym__automatic_semicolon] = ACTIONS(2171), [sym_html_comment] = ACTIONS(5), }, [921] = { [sym_comment] = STATE(921), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_default] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_typeof] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_else] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_debugger] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_case] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LTtemplate_GT] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_delete] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_number] = ACTIONS(2213), - [sym_private_property_identifier] = ACTIONS(2213), - [sym_this] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_null] = ACTIONS(2213), - [sym_undefined] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_readonly] = ACTIONS(2213), - [anon_sym_get] = ACTIONS(2213), - [anon_sym_set] = ACTIONS(2213), - [anon_sym_declare] = ACTIONS(2213), - [anon_sym_public] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_any] = ACTIONS(2213), - [anon_sym_number] = ACTIONS(2213), - [anon_sym_boolean] = ACTIONS(2213), - [anon_sym_string] = ACTIONS(2213), - [anon_sym_symbol] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2205), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_typeof] = ACTIONS(2205), + [anon_sym_import] = ACTIONS(2205), + [anon_sym_with] = ACTIONS(2205), + [anon_sym_var] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_else] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_debugger] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_case] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_LTtemplate_GT] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_using] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_void] = ACTIONS(2205), + [anon_sym_delete] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(2205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2205), + [sym_number] = ACTIONS(2205), + [sym_private_property_identifier] = ACTIONS(2205), + [sym_this] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_null] = ACTIONS(2205), + [sym_undefined] = ACTIONS(2205), + [anon_sym_AT] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_readonly] = ACTIONS(2205), + [anon_sym_get] = ACTIONS(2205), + [anon_sym_set] = ACTIONS(2205), + [anon_sym_declare] = ACTIONS(2205), + [anon_sym_public] = ACTIONS(2205), + [anon_sym_private] = ACTIONS(2205), + [anon_sym_protected] = ACTIONS(2205), + [anon_sym_override] = ACTIONS(2205), + [anon_sym_module] = ACTIONS(2205), + [anon_sym_any] = ACTIONS(2205), + [anon_sym_number] = ACTIONS(2205), + [anon_sym_boolean] = ACTIONS(2205), + [anon_sym_string] = ACTIONS(2205), + [anon_sym_symbol] = ACTIONS(2205), + [anon_sym_object] = ACTIONS(2205), + [anon_sym_abstract] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [sym__automatic_semicolon] = ACTIONS(2209), [sym_html_comment] = ACTIONS(5), }, [922] = { [sym_comment] = STATE(922), - [sym_identifier] = ACTIONS(2159), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_default] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_namespace] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_typeof] = ACTIONS(2159), - [anon_sym_import] = ACTIONS(2159), - [anon_sym_with] = ACTIONS(2159), - [anon_sym_var] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_else] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_switch] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2159), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_debugger] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_throw] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_case] = ACTIONS(2159), - [anon_sym_yield] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LTtemplate_GT] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_class] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_function] = ACTIONS(2159), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_using] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_void] = ACTIONS(2159), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2159), - [sym_number] = ACTIONS(2159), - [sym_private_property_identifier] = ACTIONS(2159), - [sym_this] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_null] = ACTIONS(2159), - [sym_undefined] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [anon_sym_static] = ACTIONS(2159), - [anon_sym_readonly] = ACTIONS(2159), - [anon_sym_get] = ACTIONS(2159), - [anon_sym_set] = ACTIONS(2159), - [anon_sym_declare] = ACTIONS(2159), - [anon_sym_public] = ACTIONS(2159), - [anon_sym_private] = ACTIONS(2159), - [anon_sym_protected] = ACTIONS(2159), - [anon_sym_override] = ACTIONS(2159), - [anon_sym_module] = ACTIONS(2159), - [anon_sym_any] = ACTIONS(2159), - [anon_sym_number] = ACTIONS(2159), - [anon_sym_boolean] = ACTIONS(2159), - [anon_sym_string] = ACTIONS(2159), - [anon_sym_symbol] = ACTIONS(2159), - [anon_sym_object] = ACTIONS(2159), - [anon_sym_abstract] = ACTIONS(2159), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [sym__automatic_semicolon] = ACTIONS(2163), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_case] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [sym__automatic_semicolon] = ACTIONS(2201), [sym_html_comment] = ACTIONS(5), }, [923] = { [sym_comment] = STATE(923), - [sym_identifier] = ACTIONS(3078), - [anon_sym_export] = ACTIONS(3078), - [anon_sym_default] = ACTIONS(3078), - [anon_sym_type] = ACTIONS(3078), - [anon_sym_namespace] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3078), - [anon_sym_RBRACE] = ACTIONS(3078), - [anon_sym_typeof] = ACTIONS(3078), - [anon_sym_import] = ACTIONS(3078), - [anon_sym_with] = ACTIONS(3078), - [anon_sym_var] = ACTIONS(3078), - [anon_sym_let] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_switch] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_await] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_do] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_debugger] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3078), - [anon_sym_case] = ACTIONS(3078), - [anon_sym_yield] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_LTtemplate_GT] = ACTIONS(3078), - [anon_sym_DQUOTE] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_async] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_SLASH] = ACTIONS(3078), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_TILDE] = ACTIONS(3078), - [anon_sym_void] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3078), - [anon_sym_PLUS_PLUS] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3078), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3078), - [sym_number] = ACTIONS(3078), - [sym_private_property_identifier] = ACTIONS(3078), - [sym_this] = ACTIONS(3078), - [sym_super] = ACTIONS(3078), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3078), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_declare] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_override] = ACTIONS(3078), - [anon_sym_module] = ACTIONS(3078), - [anon_sym_any] = ACTIONS(3078), - [anon_sym_number] = ACTIONS(3078), - [anon_sym_boolean] = ACTIONS(3078), - [anon_sym_string] = ACTIONS(3078), - [anon_sym_symbol] = ACTIONS(3078), - [anon_sym_object] = ACTIONS(3078), - [anon_sym_abstract] = ACTIONS(3078), - [anon_sym_interface] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_catch] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), [sym__automatic_semicolon] = ACTIONS(3080), [sym_html_comment] = ACTIONS(5), }, [924] = { [sym_comment] = STATE(924), + [sym_identifier] = ACTIONS(3082), + [anon_sym_export] = ACTIONS(3082), + [anon_sym_default] = ACTIONS(3082), + [anon_sym_type] = ACTIONS(3082), + [anon_sym_namespace] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3082), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(3082), + [anon_sym_with] = ACTIONS(3082), + [anon_sym_var] = ACTIONS(3082), + [anon_sym_let] = ACTIONS(3082), + [anon_sym_const] = ACTIONS(3082), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_switch] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3082), + [anon_sym_await] = ACTIONS(3082), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_do] = ACTIONS(3082), + [anon_sym_try] = ACTIONS(3082), + [anon_sym_break] = ACTIONS(3082), + [anon_sym_continue] = ACTIONS(3082), + [anon_sym_debugger] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3082), + [anon_sym_throw] = ACTIONS(3082), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_case] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_LTtemplate_GT] = ACTIONS(3082), + [anon_sym_DQUOTE] = ACTIONS(3082), + [anon_sym_SQUOTE] = ACTIONS(3082), + [anon_sym_class] = ACTIONS(3082), + [anon_sym_async] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3082), + [anon_sym_using] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_SLASH] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_void] = ACTIONS(3082), + [anon_sym_delete] = ACTIONS(3082), + [anon_sym_PLUS_PLUS] = ACTIONS(3082), + [anon_sym_DASH_DASH] = ACTIONS(3082), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3082), + [sym_number] = ACTIONS(3082), + [sym_private_property_identifier] = ACTIONS(3082), + [sym_this] = ACTIONS(3082), + [sym_super] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_null] = ACTIONS(3082), + [sym_undefined] = ACTIONS(3082), + [anon_sym_AT] = ACTIONS(3082), + [anon_sym_static] = ACTIONS(3082), + [anon_sym_readonly] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3082), + [anon_sym_set] = ACTIONS(3082), + [anon_sym_declare] = ACTIONS(3082), + [anon_sym_public] = ACTIONS(3082), + [anon_sym_private] = ACTIONS(3082), + [anon_sym_protected] = ACTIONS(3082), + [anon_sym_override] = ACTIONS(3082), + [anon_sym_module] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3082), + [anon_sym_interface] = ACTIONS(3082), + [anon_sym_enum] = ACTIONS(3082), + [sym__automatic_semicolon] = ACTIONS(3084), + [sym_html_comment] = ACTIONS(5), + }, + [925] = { + [sym_comment] = STATE(925), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), [anon_sym_default] = ACTIONS(2067), @@ -139034,7 +138810,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2067), [anon_sym_const] = ACTIONS(2067), [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), [anon_sym_if] = ACTIONS(2067), [anon_sym_switch] = ACTIONS(2067), [anon_sym_for] = ACTIONS(2067), @@ -139050,6 +138825,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2067), [anon_sym_SEMI] = ACTIONS(2067), [anon_sym_case] = ACTIONS(2067), + [anon_sym_finally] = ACTIONS(2067), [anon_sym_yield] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(2067), [anon_sym_LTtemplate_GT] = ACTIONS(2067), @@ -139099,98 +138875,98 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2073), - [sym_html_comment] = ACTIONS(5), - }, - [925] = { - [sym_statement_block] = STATE(1387), - [sym_comment] = STATE(925), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_default] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_case] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(3084), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), + [sym__automatic_semicolon] = ACTIONS(3086), [sym_html_comment] = ACTIONS(5), }, [926] = { [sym_comment] = STATE(926), + [sym_identifier] = ACTIONS(2241), + [anon_sym_export] = ACTIONS(2241), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_namespace] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2241), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_typeof] = ACTIONS(2241), + [anon_sym_import] = ACTIONS(2241), + [anon_sym_with] = ACTIONS(2241), + [anon_sym_var] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_else] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_switch] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_await] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_do] = ACTIONS(2241), + [anon_sym_try] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_debugger] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_throw] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(2241), + [anon_sym_case] = ACTIONS(2241), + [anon_sym_yield] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_LTtemplate_GT] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_class] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_function] = ACTIONS(2241), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_using] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_SLASH] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_void] = ACTIONS(2241), + [anon_sym_delete] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2241), + [sym_number] = ACTIONS(2241), + [sym_private_property_identifier] = ACTIONS(2241), + [sym_this] = ACTIONS(2241), + [sym_super] = ACTIONS(2241), + [sym_true] = ACTIONS(2241), + [sym_false] = ACTIONS(2241), + [sym_null] = ACTIONS(2241), + [sym_undefined] = ACTIONS(2241), + [anon_sym_AT] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_readonly] = ACTIONS(2241), + [anon_sym_get] = ACTIONS(2241), + [anon_sym_set] = ACTIONS(2241), + [anon_sym_declare] = ACTIONS(2241), + [anon_sym_public] = ACTIONS(2241), + [anon_sym_private] = ACTIONS(2241), + [anon_sym_protected] = ACTIONS(2241), + [anon_sym_override] = ACTIONS(2241), + [anon_sym_module] = ACTIONS(2241), + [anon_sym_any] = ACTIONS(2241), + [anon_sym_number] = ACTIONS(2241), + [anon_sym_boolean] = ACTIONS(2241), + [anon_sym_string] = ACTIONS(2241), + [anon_sym_symbol] = ACTIONS(2241), + [anon_sym_object] = ACTIONS(2241), + [anon_sym_abstract] = ACTIONS(2241), + [anon_sym_interface] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [sym__automatic_semicolon] = ACTIONS(2245), + [sym_html_comment] = ACTIONS(5), + }, + [927] = { + [sym_comment] = STATE(927), + [ts_builtin_sym_end] = ACTIONS(2095), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2067), [anon_sym_LBRACE] = ACTIONS(2067), @@ -139216,7 +138992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2067), [anon_sym_throw] = ACTIONS(2067), [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), + [anon_sym_catch] = ACTIONS(2067), [anon_sym_finally] = ACTIONS(2067), [anon_sym_yield] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(2067), @@ -139267,266 +139043,350 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3086), - [sym_html_comment] = ACTIONS(5), - }, - [927] = { - [sym_comment] = STATE(927), - [sym_identifier] = ACTIONS(3088), - [anon_sym_export] = ACTIONS(3088), - [anon_sym_default] = ACTIONS(3088), - [anon_sym_type] = ACTIONS(3088), - [anon_sym_namespace] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_RBRACE] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(3088), - [anon_sym_import] = ACTIONS(3088), - [anon_sym_with] = ACTIONS(3088), - [anon_sym_var] = ACTIONS(3088), - [anon_sym_let] = ACTIONS(3088), - [anon_sym_const] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_switch] = ACTIONS(3088), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_await] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_debugger] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3088), - [anon_sym_case] = ACTIONS(3088), - [anon_sym_finally] = ACTIONS(3088), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_LTtemplate_GT] = ACTIONS(3088), - [anon_sym_DQUOTE] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3088), - [anon_sym_class] = ACTIONS(3088), - [anon_sym_async] = ACTIONS(3088), - [anon_sym_function] = ACTIONS(3088), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_using] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_SLASH] = ACTIONS(3088), - [anon_sym_LT] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3088), - [anon_sym_void] = ACTIONS(3088), - [anon_sym_delete] = ACTIONS(3088), - [anon_sym_PLUS_PLUS] = ACTIONS(3088), - [anon_sym_DASH_DASH] = ACTIONS(3088), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3088), - [sym_number] = ACTIONS(3088), - [sym_private_property_identifier] = ACTIONS(3088), - [sym_this] = ACTIONS(3088), - [sym_super] = ACTIONS(3088), - [sym_true] = ACTIONS(3088), - [sym_false] = ACTIONS(3088), - [sym_null] = ACTIONS(3088), - [sym_undefined] = ACTIONS(3088), - [anon_sym_AT] = ACTIONS(3088), - [anon_sym_static] = ACTIONS(3088), - [anon_sym_readonly] = ACTIONS(3088), - [anon_sym_get] = ACTIONS(3088), - [anon_sym_set] = ACTIONS(3088), - [anon_sym_declare] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_module] = ACTIONS(3088), - [anon_sym_any] = ACTIONS(3088), - [anon_sym_number] = ACTIONS(3088), - [anon_sym_boolean] = ACTIONS(3088), - [anon_sym_string] = ACTIONS(3088), - [anon_sym_symbol] = ACTIONS(3088), - [anon_sym_object] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_interface] = ACTIONS(3088), - [anon_sym_enum] = ACTIONS(3088), + [sym__automatic_semicolon] = ACTIONS(3088), [sym_html_comment] = ACTIONS(5), }, [928] = { - [sym_else_clause] = STATE(1144), + [sym_statement_block] = STATE(1351), [sym_comment] = STATE(928), - [sym_identifier] = ACTIONS(3068), - [anon_sym_export] = ACTIONS(3068), - [anon_sym_default] = ACTIONS(3068), - [anon_sym_type] = ACTIONS(3068), - [anon_sym_namespace] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_typeof] = ACTIONS(3068), - [anon_sym_import] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), - [anon_sym_var] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_const] = ACTIONS(3068), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_else] = ACTIONS(3090), - [anon_sym_if] = ACTIONS(3068), - [anon_sym_switch] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_await] = ACTIONS(3068), - [anon_sym_while] = ACTIONS(3068), - [anon_sym_do] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3068), - [anon_sym_break] = ACTIONS(3068), - [anon_sym_continue] = ACTIONS(3068), - [anon_sym_debugger] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3068), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [anon_sym_case] = ACTIONS(3068), - [anon_sym_yield] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_LTtemplate_GT] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_class] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(3068), - [anon_sym_new] = ACTIONS(3068), - [anon_sym_using] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_SLASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_void] = ACTIONS(3068), - [anon_sym_delete] = ACTIONS(3068), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3068), - [sym_number] = ACTIONS(3068), - [sym_private_property_identifier] = ACTIONS(3068), - [sym_this] = ACTIONS(3068), - [sym_super] = ACTIONS(3068), - [sym_true] = ACTIONS(3068), - [sym_false] = ACTIONS(3068), - [sym_null] = ACTIONS(3068), - [sym_undefined] = ACTIONS(3068), - [anon_sym_AT] = ACTIONS(3068), - [anon_sym_static] = ACTIONS(3068), - [anon_sym_readonly] = ACTIONS(3068), - [anon_sym_get] = ACTIONS(3068), - [anon_sym_set] = ACTIONS(3068), - [anon_sym_declare] = ACTIONS(3068), - [anon_sym_public] = ACTIONS(3068), - [anon_sym_private] = ACTIONS(3068), - [anon_sym_protected] = ACTIONS(3068), - [anon_sym_override] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_any] = ACTIONS(3068), - [anon_sym_number] = ACTIONS(3068), - [anon_sym_boolean] = ACTIONS(3068), - [anon_sym_string] = ACTIONS(3068), - [anon_sym_symbol] = ACTIONS(3068), - [anon_sym_object] = ACTIONS(3068), - [anon_sym_abstract] = ACTIONS(3068), - [anon_sym_interface] = ACTIONS(3068), - [anon_sym_enum] = ACTIONS(3068), + [ts_builtin_sym_end] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(3092), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), [sym_html_comment] = ACTIONS(5), }, [929] = { [sym_comment] = STATE(929), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(2095), + [sym_identifier] = ACTIONS(3094), + [anon_sym_export] = ACTIONS(3094), + [anon_sym_default] = ACTIONS(3094), + [anon_sym_type] = ACTIONS(3094), + [anon_sym_namespace] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_typeof] = ACTIONS(3094), + [anon_sym_import] = ACTIONS(3094), + [anon_sym_with] = ACTIONS(3094), + [anon_sym_var] = ACTIONS(3094), + [anon_sym_let] = ACTIONS(3094), + [anon_sym_const] = ACTIONS(3094), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_switch] = ACTIONS(3094), + [anon_sym_for] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3094), + [anon_sym_await] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_do] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_debugger] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_case] = ACTIONS(3094), + [anon_sym_finally] = ACTIONS(3094), + [anon_sym_yield] = ACTIONS(3094), + [anon_sym_LBRACK] = ACTIONS(3094), + [anon_sym_LTtemplate_GT] = ACTIONS(3094), + [anon_sym_DQUOTE] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3094), + [anon_sym_class] = ACTIONS(3094), + [anon_sym_async] = ACTIONS(3094), + [anon_sym_function] = ACTIONS(3094), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_using] = ACTIONS(3094), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_TILDE] = ACTIONS(3094), + [anon_sym_void] = ACTIONS(3094), + [anon_sym_delete] = ACTIONS(3094), + [anon_sym_PLUS_PLUS] = ACTIONS(3094), + [anon_sym_DASH_DASH] = ACTIONS(3094), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3094), + [sym_number] = ACTIONS(3094), + [sym_private_property_identifier] = ACTIONS(3094), + [sym_this] = ACTIONS(3094), + [sym_super] = ACTIONS(3094), + [sym_true] = ACTIONS(3094), + [sym_false] = ACTIONS(3094), + [sym_null] = ACTIONS(3094), + [sym_undefined] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(3094), + [anon_sym_static] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_declare] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_module] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3094), + [anon_sym_number] = ACTIONS(3094), + [anon_sym_boolean] = ACTIONS(3094), + [anon_sym_string] = ACTIONS(3094), + [anon_sym_symbol] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_interface] = ACTIONS(3094), + [anon_sym_enum] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [930] = { + [sym_statement_block] = STATE(1351), [sym_comment] = STATE(930), - [ts_builtin_sym_end] = ACTIONS(2103), + [ts_builtin_sym_end] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(3096), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym_html_comment] = ACTIONS(5), + }, + [931] = { + [sym_comment] = STATE(931), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(3098), + [sym_html_comment] = ACTIONS(5), + }, + [932] = { + [sym_comment] = STATE(932), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2067), [anon_sym_LBRACE] = ACTIONS(2067), @@ -139553,7 +139413,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2067), [anon_sym_throw] = ACTIONS(2067), [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_finally] = ACTIONS(2067), + [anon_sym_case] = ACTIONS(2067), [anon_sym_yield] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(2067), [anon_sym_LTtemplate_GT] = ACTIONS(2067), @@ -139603,767 +139463,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3092), - [sym_html_comment] = ACTIONS(5), - }, - [931] = { - [sym_comment] = STATE(931), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym__automatic_semicolon] = ACTIONS(2107), - [sym_html_comment] = ACTIONS(5), - }, - [932] = { - [sym_comment] = STATE(932), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_finally] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(3094), + [sym__automatic_semicolon] = ACTIONS(2073), [sym_html_comment] = ACTIONS(5), }, [933] = { [sym_comment] = STATE(933), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_default] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_else] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_case] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [sym__automatic_semicolon] = ACTIONS(2241), + [sym_identifier] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_typeof] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2125), + [anon_sym_with] = ACTIONS(2125), + [anon_sym_var] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_else] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_debugger] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_case] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LTtemplate_GT] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_void] = ACTIONS(2125), + [anon_sym_delete] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2125), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(2125), + [sym_this] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [sym_undefined] = ACTIONS(2125), + [anon_sym_AT] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_readonly] = ACTIONS(2125), + [anon_sym_get] = ACTIONS(2125), + [anon_sym_set] = ACTIONS(2125), + [anon_sym_declare] = ACTIONS(2125), + [anon_sym_public] = ACTIONS(2125), + [anon_sym_private] = ACTIONS(2125), + [anon_sym_protected] = ACTIONS(2125), + [anon_sym_override] = ACTIONS(2125), + [anon_sym_module] = ACTIONS(2125), + [anon_sym_any] = ACTIONS(2125), + [anon_sym_number] = ACTIONS(2125), + [anon_sym_boolean] = ACTIONS(2125), + [anon_sym_string] = ACTIONS(2125), + [anon_sym_symbol] = ACTIONS(2125), + [anon_sym_object] = ACTIONS(2125), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [sym__automatic_semicolon] = ACTIONS(2127), [sym_html_comment] = ACTIONS(5), }, [934] = { + [sym_finally_clause] = STATE(1222), [sym_comment] = STATE(934), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_catch] = ACTIONS(2093), - [anon_sym_finally] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(3096), + [sym_identifier] = ACTIONS(3052), + [anon_sym_export] = ACTIONS(3052), + [anon_sym_default] = ACTIONS(3052), + [anon_sym_type] = ACTIONS(3052), + [anon_sym_namespace] = ACTIONS(3052), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_typeof] = ACTIONS(3052), + [anon_sym_import] = ACTIONS(3052), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_var] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_BANG] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_switch] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_await] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_break] = ACTIONS(3052), + [anon_sym_continue] = ACTIONS(3052), + [anon_sym_debugger] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_throw] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_case] = ACTIONS(3052), + [anon_sym_finally] = ACTIONS(3026), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LTtemplate_GT] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_class] = ACTIONS(3052), + [anon_sym_async] = ACTIONS(3052), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_using] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_SLASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3052), + [anon_sym_void] = ACTIONS(3052), + [anon_sym_delete] = ACTIONS(3052), + [anon_sym_PLUS_PLUS] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3052), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3052), + [sym_number] = ACTIONS(3052), + [sym_private_property_identifier] = ACTIONS(3052), + [sym_this] = ACTIONS(3052), + [sym_super] = ACTIONS(3052), + [sym_true] = ACTIONS(3052), + [sym_false] = ACTIONS(3052), + [sym_null] = ACTIONS(3052), + [sym_undefined] = ACTIONS(3052), + [anon_sym_AT] = ACTIONS(3052), + [anon_sym_static] = ACTIONS(3052), + [anon_sym_readonly] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_declare] = ACTIONS(3052), + [anon_sym_public] = ACTIONS(3052), + [anon_sym_private] = ACTIONS(3052), + [anon_sym_protected] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3052), + [anon_sym_module] = ACTIONS(3052), + [anon_sym_any] = ACTIONS(3052), + [anon_sym_number] = ACTIONS(3052), + [anon_sym_boolean] = ACTIONS(3052), + [anon_sym_string] = ACTIONS(3052), + [anon_sym_symbol] = ACTIONS(3052), + [anon_sym_object] = ACTIONS(3052), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_interface] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), [sym_html_comment] = ACTIONS(5), }, [935] = { [sym_comment] = STATE(935), - [sym_identifier] = ACTIONS(2195), - [anon_sym_export] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_namespace] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_typeof] = ACTIONS(2195), - [anon_sym_import] = ACTIONS(2195), - [anon_sym_with] = ACTIONS(2195), - [anon_sym_var] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_else] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_switch] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [anon_sym_do] = ACTIONS(2195), - [anon_sym_try] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_debugger] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_throw] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_case] = ACTIONS(2195), - [anon_sym_yield] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_LTtemplate_GT] = ACTIONS(2195), - [anon_sym_DOT] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_class] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_new] = ACTIONS(2195), - [anon_sym_using] = ACTIONS(2195), - [anon_sym_PLUS] = ACTIONS(2195), - [anon_sym_DASH] = ACTIONS(2195), - [anon_sym_SLASH] = ACTIONS(2195), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_TILDE] = ACTIONS(2195), - [anon_sym_void] = ACTIONS(2195), - [anon_sym_delete] = ACTIONS(2195), - [anon_sym_PLUS_PLUS] = ACTIONS(2195), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2195), - [sym_number] = ACTIONS(2195), - [sym_private_property_identifier] = ACTIONS(2195), - [sym_this] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_true] = ACTIONS(2195), - [sym_false] = ACTIONS(2195), - [sym_null] = ACTIONS(2195), - [sym_undefined] = ACTIONS(2195), - [anon_sym_AT] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_readonly] = ACTIONS(2195), - [anon_sym_get] = ACTIONS(2195), - [anon_sym_set] = ACTIONS(2195), - [anon_sym_declare] = ACTIONS(2195), - [anon_sym_public] = ACTIONS(2195), - [anon_sym_private] = ACTIONS(2195), - [anon_sym_protected] = ACTIONS(2195), - [anon_sym_override] = ACTIONS(2195), - [anon_sym_module] = ACTIONS(2195), - [anon_sym_any] = ACTIONS(2195), - [anon_sym_number] = ACTIONS(2195), - [anon_sym_boolean] = ACTIONS(2195), - [anon_sym_string] = ACTIONS(2195), - [anon_sym_symbol] = ACTIONS(2195), - [anon_sym_object] = ACTIONS(2195), - [anon_sym_abstract] = ACTIONS(2195), - [anon_sym_interface] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), [sym_html_comment] = ACTIONS(5), }, [936] = { [sym_comment] = STATE(936), - [sym_identifier] = ACTIONS(2081), - [anon_sym_export] = ACTIONS(2081), - [anon_sym_default] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_namespace] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_typeof] = ACTIONS(2081), - [anon_sym_import] = ACTIONS(2081), - [anon_sym_with] = ACTIONS(2081), - [anon_sym_var] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_else] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_switch] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_do] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_debugger] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_case] = ACTIONS(2081), - [anon_sym_yield] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_LTtemplate_GT] = ACTIONS(2081), - [anon_sym_DOT] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2081), - [anon_sym_class] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_function] = ACTIONS(2081), - [anon_sym_new] = ACTIONS(2081), - [anon_sym_using] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_SLASH] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2081), - [anon_sym_void] = ACTIONS(2081), - [anon_sym_delete] = ACTIONS(2081), - [anon_sym_PLUS_PLUS] = ACTIONS(2081), - [anon_sym_DASH_DASH] = ACTIONS(2081), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2081), - [sym_number] = ACTIONS(2081), - [sym_private_property_identifier] = ACTIONS(2081), - [sym_this] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_true] = ACTIONS(2081), - [sym_false] = ACTIONS(2081), - [sym_null] = ACTIONS(2081), - [sym_undefined] = ACTIONS(2081), - [anon_sym_AT] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_readonly] = ACTIONS(2081), - [anon_sym_get] = ACTIONS(2081), - [anon_sym_set] = ACTIONS(2081), - [anon_sym_declare] = ACTIONS(2081), - [anon_sym_public] = ACTIONS(2081), - [anon_sym_private] = ACTIONS(2081), - [anon_sym_protected] = ACTIONS(2081), - [anon_sym_override] = ACTIONS(2081), - [anon_sym_module] = ACTIONS(2081), - [anon_sym_any] = ACTIONS(2081), - [anon_sym_number] = ACTIONS(2081), - [anon_sym_boolean] = ACTIONS(2081), - [anon_sym_string] = ACTIONS(2081), - [anon_sym_symbol] = ACTIONS(2081), - [anon_sym_object] = ACTIONS(2081), - [anon_sym_abstract] = ACTIONS(2081), - [anon_sym_interface] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_catch] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), [sym_html_comment] = ACTIONS(5), }, [937] = { [sym_comment] = STATE(937), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_finally] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym_html_comment] = ACTIONS(5), - }, - [938] = { - [sym_finally_clause] = STATE(1406), - [sym_comment] = STATE(938), - [ts_builtin_sym_end] = ACTIONS(3098), - [sym_identifier] = ACTIONS(3056), - [anon_sym_export] = ACTIONS(3056), - [anon_sym_type] = ACTIONS(3056), - [anon_sym_namespace] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_RBRACE] = ACTIONS(3056), - [anon_sym_typeof] = ACTIONS(3056), - [anon_sym_import] = ACTIONS(3056), - [anon_sym_with] = ACTIONS(3056), - [anon_sym_var] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_const] = ACTIONS(3056), - [anon_sym_BANG] = ACTIONS(3056), - [anon_sym_else] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3056), - [anon_sym_switch] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_await] = ACTIONS(3056), - [anon_sym_while] = ACTIONS(3056), - [anon_sym_do] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3056), - [anon_sym_break] = ACTIONS(3056), - [anon_sym_continue] = ACTIONS(3056), - [anon_sym_debugger] = ACTIONS(3056), - [anon_sym_return] = ACTIONS(3056), - [anon_sym_throw] = ACTIONS(3056), - [anon_sym_SEMI] = ACTIONS(3056), - [anon_sym_finally] = ACTIONS(3034), - [anon_sym_yield] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_LTtemplate_GT] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [anon_sym_SQUOTE] = ACTIONS(3056), - [anon_sym_class] = ACTIONS(3056), - [anon_sym_async] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3056), - [anon_sym_new] = ACTIONS(3056), - [anon_sym_using] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_SLASH] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [anon_sym_void] = ACTIONS(3056), - [anon_sym_delete] = ACTIONS(3056), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3056), - [sym_number] = ACTIONS(3056), - [sym_private_property_identifier] = ACTIONS(3056), - [sym_this] = ACTIONS(3056), - [sym_super] = ACTIONS(3056), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_AT] = ACTIONS(3056), - [anon_sym_static] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3056), - [anon_sym_get] = ACTIONS(3056), - [anon_sym_set] = ACTIONS(3056), - [anon_sym_declare] = ACTIONS(3056), - [anon_sym_public] = ACTIONS(3056), - [anon_sym_private] = ACTIONS(3056), - [anon_sym_protected] = ACTIONS(3056), - [anon_sym_override] = ACTIONS(3056), - [anon_sym_module] = ACTIONS(3056), - [anon_sym_any] = ACTIONS(3056), - [anon_sym_number] = ACTIONS(3056), - [anon_sym_boolean] = ACTIONS(3056), - [anon_sym_string] = ACTIONS(3056), - [anon_sym_symbol] = ACTIONS(3056), - [anon_sym_object] = ACTIONS(3056), - [anon_sym_abstract] = ACTIONS(3056), - [anon_sym_interface] = ACTIONS(3056), - [anon_sym_enum] = ACTIONS(3056), - [sym_html_comment] = ACTIONS(5), - }, - [939] = { - [sym_comment] = STATE(939), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2149), - [anon_sym_default] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_typeof] = ACTIONS(2149), - [anon_sym_import] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(2149), - [anon_sym_var] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_else] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_debugger] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_case] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LTtemplate_GT] = ACTIONS(2149), - [anon_sym_DQUOTE] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_void] = ACTIONS(2149), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2149), - [sym_number] = ACTIONS(2149), - [sym_private_property_identifier] = ACTIONS(2149), - [sym_this] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_null] = ACTIONS(2149), - [sym_undefined] = ACTIONS(2149), - [anon_sym_AT] = ACTIONS(2149), - [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_abstract] = ACTIONS(2149), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [sym__automatic_semicolon] = ACTIONS(2153), - [sym_html_comment] = ACTIONS(5), - }, - [940] = { - [sym_comment] = STATE(940), [sym_identifier] = ACTIONS(3100), [anon_sym_export] = ACTIONS(3100), [anon_sym_default] = ACTIONS(3100), @@ -140392,8 +139832,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(3100), [anon_sym_return] = ACTIONS(3100), [anon_sym_throw] = ACTIONS(3100), - [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3100), [anon_sym_case] = ACTIONS(3100), + [anon_sym_finally] = ACTIONS(3100), [anon_sym_yield] = ACTIONS(3100), [anon_sym_LBRACK] = ACTIONS(3100), [anon_sym_LTtemplate_GT] = ACTIONS(3100), @@ -140443,935 +139884,598 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(3100), [anon_sym_interface] = ACTIONS(3100), [anon_sym_enum] = ACTIONS(3100), - [sym__automatic_semicolon] = ACTIONS(3104), + [sym_html_comment] = ACTIONS(5), + }, + [938] = { + [sym_comment] = STATE(938), + [sym_identifier] = ACTIONS(2221), + [anon_sym_export] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_typeof] = ACTIONS(2221), + [anon_sym_import] = ACTIONS(2221), + [anon_sym_with] = ACTIONS(2221), + [anon_sym_var] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_else] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_debugger] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_case] = ACTIONS(2221), + [anon_sym_finally] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LTtemplate_GT] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_void] = ACTIONS(2221), + [anon_sym_delete] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2221), + [sym_number] = ACTIONS(2221), + [sym_private_property_identifier] = ACTIONS(2221), + [sym_this] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_null] = ACTIONS(2221), + [sym_undefined] = ACTIONS(2221), + [anon_sym_AT] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_get] = ACTIONS(2221), + [anon_sym_set] = ACTIONS(2221), + [anon_sym_declare] = ACTIONS(2221), + [anon_sym_public] = ACTIONS(2221), + [anon_sym_private] = ACTIONS(2221), + [anon_sym_protected] = ACTIONS(2221), + [anon_sym_override] = ACTIONS(2221), + [anon_sym_module] = ACTIONS(2221), + [anon_sym_any] = ACTIONS(2221), + [anon_sym_number] = ACTIONS(2221), + [anon_sym_boolean] = ACTIONS(2221), + [anon_sym_string] = ACTIONS(2221), + [anon_sym_symbol] = ACTIONS(2221), + [anon_sym_object] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [sym_html_comment] = ACTIONS(5), + }, + [939] = { + [sym_comment] = STATE(939), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2137), + [anon_sym_default] = ACTIONS(2137), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_typeof] = ACTIONS(2137), + [anon_sym_import] = ACTIONS(2137), + [anon_sym_with] = ACTIONS(2137), + [anon_sym_var] = ACTIONS(2137), + [anon_sym_let] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_else] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_switch] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_await] = ACTIONS(2137), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_do] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_debugger] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_throw] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_case] = ACTIONS(2137), + [anon_sym_yield] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_LTtemplate_GT] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(2137), + [anon_sym_SQUOTE] = ACTIONS(2137), + [anon_sym_class] = ACTIONS(2137), + [anon_sym_async] = ACTIONS(2137), + [anon_sym_function] = ACTIONS(2137), + [anon_sym_new] = ACTIONS(2137), + [anon_sym_using] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_SLASH] = ACTIONS(2137), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_void] = ACTIONS(2137), + [anon_sym_delete] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2137), + [sym_number] = ACTIONS(2137), + [sym_private_property_identifier] = ACTIONS(2137), + [sym_this] = ACTIONS(2137), + [sym_super] = ACTIONS(2137), + [sym_true] = ACTIONS(2137), + [sym_false] = ACTIONS(2137), + [sym_null] = ACTIONS(2137), + [sym_undefined] = ACTIONS(2137), + [anon_sym_AT] = ACTIONS(2137), + [anon_sym_static] = ACTIONS(2137), + [anon_sym_readonly] = ACTIONS(2137), + [anon_sym_get] = ACTIONS(2137), + [anon_sym_set] = ACTIONS(2137), + [anon_sym_declare] = ACTIONS(2137), + [anon_sym_public] = ACTIONS(2137), + [anon_sym_private] = ACTIONS(2137), + [anon_sym_protected] = ACTIONS(2137), + [anon_sym_override] = ACTIONS(2137), + [anon_sym_module] = ACTIONS(2137), + [anon_sym_any] = ACTIONS(2137), + [anon_sym_number] = ACTIONS(2137), + [anon_sym_boolean] = ACTIONS(2137), + [anon_sym_string] = ACTIONS(2137), + [anon_sym_symbol] = ACTIONS(2137), + [anon_sym_object] = ACTIONS(2137), + [anon_sym_abstract] = ACTIONS(2137), + [anon_sym_interface] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [sym__automatic_semicolon] = ACTIONS(2141), + [sym_html_comment] = ACTIONS(5), + }, + [940] = { + [sym_comment] = STATE(940), + [sym_identifier] = ACTIONS(3102), + [anon_sym_export] = ACTIONS(3102), + [anon_sym_default] = ACTIONS(3102), + [anon_sym_type] = ACTIONS(3102), + [anon_sym_namespace] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3102), + [anon_sym_import] = ACTIONS(3102), + [anon_sym_with] = ACTIONS(3102), + [anon_sym_var] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_const] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_switch] = ACTIONS(3102), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_await] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_debugger] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_throw] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_case] = ACTIONS(3102), + [anon_sym_finally] = ACTIONS(3102), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_LTtemplate_GT] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_SQUOTE] = ACTIONS(3102), + [anon_sym_class] = ACTIONS(3102), + [anon_sym_async] = ACTIONS(3102), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_using] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_SLASH] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3102), + [anon_sym_void] = ACTIONS(3102), + [anon_sym_delete] = ACTIONS(3102), + [anon_sym_PLUS_PLUS] = ACTIONS(3102), + [anon_sym_DASH_DASH] = ACTIONS(3102), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3102), + [sym_number] = ACTIONS(3102), + [sym_private_property_identifier] = ACTIONS(3102), + [sym_this] = ACTIONS(3102), + [sym_super] = ACTIONS(3102), + [sym_true] = ACTIONS(3102), + [sym_false] = ACTIONS(3102), + [sym_null] = ACTIONS(3102), + [sym_undefined] = ACTIONS(3102), + [anon_sym_AT] = ACTIONS(3102), + [anon_sym_static] = ACTIONS(3102), + [anon_sym_readonly] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3102), + [anon_sym_set] = ACTIONS(3102), + [anon_sym_declare] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_module] = ACTIONS(3102), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3102), + [anon_sym_interface] = ACTIONS(3102), + [anon_sym_enum] = ACTIONS(3102), [sym_html_comment] = ACTIONS(5), }, [941] = { [sym_comment] = STATE(941), - [sym_identifier] = ACTIONS(3106), - [anon_sym_export] = ACTIONS(3106), - [anon_sym_default] = ACTIONS(3106), - [anon_sym_type] = ACTIONS(3106), - [anon_sym_namespace] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(3106), - [anon_sym_RBRACE] = ACTIONS(3106), - [anon_sym_typeof] = ACTIONS(3106), - [anon_sym_import] = ACTIONS(3106), - [anon_sym_with] = ACTIONS(3106), - [anon_sym_var] = ACTIONS(3106), - [anon_sym_let] = ACTIONS(3106), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_switch] = ACTIONS(3106), - [anon_sym_for] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3106), - [anon_sym_await] = ACTIONS(3106), - [anon_sym_while] = ACTIONS(3106), - [anon_sym_do] = ACTIONS(3106), - [anon_sym_try] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_debugger] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_throw] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3106), - [anon_sym_case] = ACTIONS(3106), - [anon_sym_finally] = ACTIONS(3106), - [anon_sym_yield] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(3106), - [anon_sym_LTtemplate_GT] = ACTIONS(3106), - [anon_sym_DQUOTE] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3106), - [anon_sym_class] = ACTIONS(3106), - [anon_sym_async] = ACTIONS(3106), - [anon_sym_function] = ACTIONS(3106), - [anon_sym_new] = ACTIONS(3106), - [anon_sym_using] = ACTIONS(3106), - [anon_sym_PLUS] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3106), - [anon_sym_SLASH] = ACTIONS(3106), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_void] = ACTIONS(3106), - [anon_sym_delete] = ACTIONS(3106), - [anon_sym_PLUS_PLUS] = ACTIONS(3106), - [anon_sym_DASH_DASH] = ACTIONS(3106), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3106), - [sym_number] = ACTIONS(3106), - [sym_private_property_identifier] = ACTIONS(3106), - [sym_this] = ACTIONS(3106), - [sym_super] = ACTIONS(3106), - [sym_true] = ACTIONS(3106), - [sym_false] = ACTIONS(3106), - [sym_null] = ACTIONS(3106), - [sym_undefined] = ACTIONS(3106), - [anon_sym_AT] = ACTIONS(3106), - [anon_sym_static] = ACTIONS(3106), - [anon_sym_readonly] = ACTIONS(3106), - [anon_sym_get] = ACTIONS(3106), - [anon_sym_set] = ACTIONS(3106), - [anon_sym_declare] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_module] = ACTIONS(3106), - [anon_sym_any] = ACTIONS(3106), - [anon_sym_number] = ACTIONS(3106), - [anon_sym_boolean] = ACTIONS(3106), - [anon_sym_string] = ACTIONS(3106), - [anon_sym_symbol] = ACTIONS(3106), - [anon_sym_object] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_interface] = ACTIONS(3106), - [anon_sym_enum] = ACTIONS(3106), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(2115), [sym_html_comment] = ACTIONS(5), }, [942] = { + [sym_else_clause] = STATE(1076), [sym_comment] = STATE(942), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_catch] = ACTIONS(2105), - [anon_sym_finally] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), + [sym_identifier] = ACTIONS(3070), + [anon_sym_export] = ACTIONS(3070), + [anon_sym_default] = ACTIONS(3070), + [anon_sym_type] = ACTIONS(3070), + [anon_sym_namespace] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3070), + [anon_sym_RBRACE] = ACTIONS(3070), + [anon_sym_typeof] = ACTIONS(3070), + [anon_sym_import] = ACTIONS(3070), + [anon_sym_with] = ACTIONS(3070), + [anon_sym_var] = ACTIONS(3070), + [anon_sym_let] = ACTIONS(3070), + [anon_sym_const] = ACTIONS(3070), + [anon_sym_BANG] = ACTIONS(3070), + [anon_sym_else] = ACTIONS(3104), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_switch] = ACTIONS(3070), + [anon_sym_for] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3070), + [anon_sym_await] = ACTIONS(3070), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_do] = ACTIONS(3070), + [anon_sym_try] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_debugger] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3070), + [anon_sym_SEMI] = ACTIONS(3070), + [anon_sym_case] = ACTIONS(3070), + [anon_sym_yield] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3070), + [anon_sym_LTtemplate_GT] = ACTIONS(3070), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_class] = ACTIONS(3070), + [anon_sym_async] = ACTIONS(3070), + [anon_sym_function] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3070), + [anon_sym_using] = ACTIONS(3070), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_SLASH] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3070), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_void] = ACTIONS(3070), + [anon_sym_delete] = ACTIONS(3070), + [anon_sym_PLUS_PLUS] = ACTIONS(3070), + [anon_sym_DASH_DASH] = ACTIONS(3070), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3070), + [sym_number] = ACTIONS(3070), + [sym_private_property_identifier] = ACTIONS(3070), + [sym_this] = ACTIONS(3070), + [sym_super] = ACTIONS(3070), + [sym_true] = ACTIONS(3070), + [sym_false] = ACTIONS(3070), + [sym_null] = ACTIONS(3070), + [sym_undefined] = ACTIONS(3070), + [anon_sym_AT] = ACTIONS(3070), + [anon_sym_static] = ACTIONS(3070), + [anon_sym_readonly] = ACTIONS(3070), + [anon_sym_get] = ACTIONS(3070), + [anon_sym_set] = ACTIONS(3070), + [anon_sym_declare] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3070), + [anon_sym_private] = ACTIONS(3070), + [anon_sym_protected] = ACTIONS(3070), + [anon_sym_override] = ACTIONS(3070), + [anon_sym_module] = ACTIONS(3070), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3070), + [anon_sym_interface] = ACTIONS(3070), + [anon_sym_enum] = ACTIONS(3070), [sym_html_comment] = ACTIONS(5), }, [943] = { [sym_comment] = STATE(943), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_catch] = ACTIONS(2093), - [anon_sym_finally] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), + [sym_identifier] = ACTIONS(2221), + [anon_sym_export] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_typeof] = ACTIONS(2221), + [anon_sym_import] = ACTIONS(2221), + [anon_sym_with] = ACTIONS(2221), + [anon_sym_var] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_else] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_debugger] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_case] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LTtemplate_GT] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_void] = ACTIONS(2221), + [anon_sym_delete] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2221), + [sym_number] = ACTIONS(2221), + [sym_private_property_identifier] = ACTIONS(2221), + [sym_this] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_null] = ACTIONS(2221), + [sym_undefined] = ACTIONS(2221), + [anon_sym_AT] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_get] = ACTIONS(2221), + [anon_sym_set] = ACTIONS(2221), + [anon_sym_declare] = ACTIONS(2221), + [anon_sym_public] = ACTIONS(2221), + [anon_sym_private] = ACTIONS(2221), + [anon_sym_protected] = ACTIONS(2221), + [anon_sym_override] = ACTIONS(2221), + [anon_sym_module] = ACTIONS(2221), + [anon_sym_any] = ACTIONS(2221), + [anon_sym_number] = ACTIONS(2221), + [anon_sym_boolean] = ACTIONS(2221), + [anon_sym_string] = ACTIONS(2221), + [anon_sym_symbol] = ACTIONS(2221), + [anon_sym_object] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [sym__automatic_semicolon] = ACTIONS(2223), [sym_html_comment] = ACTIONS(5), }, [944] = { [sym_comment] = STATE(944), - [ts_builtin_sym_end] = ACTIONS(2103), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_catch] = ACTIONS(2067), - [anon_sym_finally] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3108), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(3106), [sym_html_comment] = ACTIONS(5), }, [945] = { [sym_comment] = STATE(945), - [sym_identifier] = ACTIONS(2229), - [anon_sym_export] = ACTIONS(2229), - [anon_sym_default] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_namespace] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_typeof] = ACTIONS(2229), - [anon_sym_import] = ACTIONS(2229), - [anon_sym_with] = ACTIONS(2229), - [anon_sym_var] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_else] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_switch] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_await] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_debugger] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_throw] = ACTIONS(2229), - [anon_sym_SEMI] = ACTIONS(2229), - [anon_sym_case] = ACTIONS(2229), - [anon_sym_yield] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2229), - [anon_sym_LTtemplate_GT] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2229), - [anon_sym_SQUOTE] = ACTIONS(2229), - [anon_sym_class] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_function] = ACTIONS(2229), - [anon_sym_new] = ACTIONS(2229), - [anon_sym_using] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_SLASH] = ACTIONS(2229), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_TILDE] = ACTIONS(2229), - [anon_sym_void] = ACTIONS(2229), - [anon_sym_delete] = ACTIONS(2229), - [anon_sym_PLUS_PLUS] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2229), - [sym_number] = ACTIONS(2229), - [sym_private_property_identifier] = ACTIONS(2229), - [sym_this] = ACTIONS(2229), - [sym_super] = ACTIONS(2229), - [sym_true] = ACTIONS(2229), - [sym_false] = ACTIONS(2229), - [sym_null] = ACTIONS(2229), - [sym_undefined] = ACTIONS(2229), - [anon_sym_AT] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_readonly] = ACTIONS(2229), - [anon_sym_get] = ACTIONS(2229), - [anon_sym_set] = ACTIONS(2229), - [anon_sym_declare] = ACTIONS(2229), - [anon_sym_public] = ACTIONS(2229), - [anon_sym_private] = ACTIONS(2229), - [anon_sym_protected] = ACTIONS(2229), - [anon_sym_override] = ACTIONS(2229), - [anon_sym_module] = ACTIONS(2229), - [anon_sym_any] = ACTIONS(2229), - [anon_sym_number] = ACTIONS(2229), - [anon_sym_boolean] = ACTIONS(2229), - [anon_sym_string] = ACTIONS(2229), - [anon_sym_symbol] = ACTIONS(2229), - [anon_sym_object] = ACTIONS(2229), - [anon_sym_abstract] = ACTIONS(2229), - [anon_sym_interface] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [sym__automatic_semicolon] = ACTIONS(2233), - [sym_html_comment] = ACTIONS(5), - }, - [946] = { - [sym_comment] = STATE(946), - [sym_identifier] = ACTIONS(2127), - [anon_sym_export] = ACTIONS(2127), - [anon_sym_default] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2127), - [anon_sym_namespace] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_typeof] = ACTIONS(2127), - [anon_sym_import] = ACTIONS(2127), - [anon_sym_with] = ACTIONS(2127), - [anon_sym_var] = ACTIONS(2127), - [anon_sym_let] = ACTIONS(2127), - [anon_sym_const] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_else] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2127), - [anon_sym_switch] = ACTIONS(2127), - [anon_sym_for] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_await] = ACTIONS(2127), - [anon_sym_while] = ACTIONS(2127), - [anon_sym_do] = ACTIONS(2127), - [anon_sym_try] = ACTIONS(2127), - [anon_sym_break] = ACTIONS(2127), - [anon_sym_continue] = ACTIONS(2127), - [anon_sym_debugger] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2127), - [anon_sym_throw] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_case] = ACTIONS(2127), - [anon_sym_yield] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_LTtemplate_GT] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(2127), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_class] = ACTIONS(2127), - [anon_sym_async] = ACTIONS(2127), - [anon_sym_function] = ACTIONS(2127), - [anon_sym_new] = ACTIONS(2127), - [anon_sym_using] = ACTIONS(2127), - [anon_sym_PLUS] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2127), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_LT] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_void] = ACTIONS(2127), - [anon_sym_delete] = ACTIONS(2127), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2127), - [sym_number] = ACTIONS(2127), - [sym_private_property_identifier] = ACTIONS(2127), - [sym_this] = ACTIONS(2127), - [sym_super] = ACTIONS(2127), - [sym_true] = ACTIONS(2127), - [sym_false] = ACTIONS(2127), - [sym_null] = ACTIONS(2127), - [sym_undefined] = ACTIONS(2127), - [anon_sym_AT] = ACTIONS(2127), - [anon_sym_static] = ACTIONS(2127), - [anon_sym_readonly] = ACTIONS(2127), - [anon_sym_get] = ACTIONS(2127), - [anon_sym_set] = ACTIONS(2127), - [anon_sym_declare] = ACTIONS(2127), - [anon_sym_public] = ACTIONS(2127), - [anon_sym_private] = ACTIONS(2127), - [anon_sym_protected] = ACTIONS(2127), - [anon_sym_override] = ACTIONS(2127), - [anon_sym_module] = ACTIONS(2127), - [anon_sym_any] = ACTIONS(2127), - [anon_sym_number] = ACTIONS(2127), - [anon_sym_boolean] = ACTIONS(2127), - [anon_sym_string] = ACTIONS(2127), - [anon_sym_symbol] = ACTIONS(2127), - [anon_sym_object] = ACTIONS(2127), - [anon_sym_abstract] = ACTIONS(2127), - [anon_sym_interface] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(2127), - [sym__automatic_semicolon] = ACTIONS(2131), - [sym_html_comment] = ACTIONS(5), - }, - [947] = { - [sym_comment] = STATE(947), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_finally] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(3110), - [sym_html_comment] = ACTIONS(5), - }, - [948] = { - [sym_comment] = STATE(948), - [sym_identifier] = ACTIONS(2117), - [anon_sym_export] = ACTIONS(2117), - [anon_sym_default] = ACTIONS(2117), - [anon_sym_type] = ACTIONS(2117), - [anon_sym_namespace] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_typeof] = ACTIONS(2117), - [anon_sym_import] = ACTIONS(2117), - [anon_sym_with] = ACTIONS(2117), - [anon_sym_var] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_else] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_switch] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_await] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_try] = 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(2117), - [anon_sym_case] = ACTIONS(2117), - [anon_sym_yield] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_LTtemplate_GT] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2117), - [anon_sym_class] = ACTIONS(2117), - [anon_sym_async] = ACTIONS(2117), - [anon_sym_function] = ACTIONS(2117), - [anon_sym_new] = ACTIONS(2117), - [anon_sym_using] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_SLASH] = ACTIONS(2117), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_void] = ACTIONS(2117), - [anon_sym_delete] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2117), - [sym_number] = ACTIONS(2117), - [sym_private_property_identifier] = ACTIONS(2117), - [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(2117), - [anon_sym_static] = ACTIONS(2117), - [anon_sym_readonly] = ACTIONS(2117), - [anon_sym_get] = ACTIONS(2117), - [anon_sym_set] = ACTIONS(2117), - [anon_sym_declare] = ACTIONS(2117), - [anon_sym_public] = ACTIONS(2117), - [anon_sym_private] = ACTIONS(2117), - [anon_sym_protected] = ACTIONS(2117), - [anon_sym_override] = ACTIONS(2117), - [anon_sym_module] = ACTIONS(2117), - [anon_sym_any] = ACTIONS(2117), - [anon_sym_number] = ACTIONS(2117), - [anon_sym_boolean] = ACTIONS(2117), - [anon_sym_string] = ACTIONS(2117), - [anon_sym_symbol] = ACTIONS(2117), - [anon_sym_object] = ACTIONS(2117), - [anon_sym_abstract] = ACTIONS(2117), - [anon_sym_interface] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [sym__automatic_semicolon] = ACTIONS(2121), - [sym_html_comment] = ACTIONS(5), - }, - [949] = { - [sym_comment] = STATE(949), - [sym_identifier] = ACTIONS(2135), - [anon_sym_export] = ACTIONS(2135), - [anon_sym_default] = ACTIONS(2135), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_namespace] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_typeof] = ACTIONS(2135), - [anon_sym_import] = ACTIONS(2135), - [anon_sym_with] = ACTIONS(2135), - [anon_sym_var] = ACTIONS(2135), - [anon_sym_let] = ACTIONS(2135), - [anon_sym_const] = ACTIONS(2135), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_else] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_switch] = ACTIONS(2135), - [anon_sym_for] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2135), - [anon_sym_while] = ACTIONS(2135), - [anon_sym_do] = ACTIONS(2135), - [anon_sym_try] = ACTIONS(2135), - [anon_sym_break] = ACTIONS(2135), - [anon_sym_continue] = ACTIONS(2135), - [anon_sym_debugger] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2135), - [anon_sym_throw] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_case] = ACTIONS(2135), - [anon_sym_yield] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_LTtemplate_GT] = ACTIONS(2135), - [anon_sym_DQUOTE] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_class] = ACTIONS(2135), - [anon_sym_async] = ACTIONS(2135), - [anon_sym_function] = ACTIONS(2135), - [anon_sym_new] = ACTIONS(2135), - [anon_sym_using] = ACTIONS(2135), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_SLASH] = ACTIONS(2135), - [anon_sym_LT] = ACTIONS(2135), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_void] = ACTIONS(2135), - [anon_sym_delete] = ACTIONS(2135), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2135), - [sym_number] = ACTIONS(2135), - [sym_private_property_identifier] = ACTIONS(2135), - [sym_this] = ACTIONS(2135), - [sym_super] = ACTIONS(2135), - [sym_true] = ACTIONS(2135), - [sym_false] = ACTIONS(2135), - [sym_null] = ACTIONS(2135), - [sym_undefined] = ACTIONS(2135), - [anon_sym_AT] = ACTIONS(2135), - [anon_sym_static] = ACTIONS(2135), - [anon_sym_readonly] = ACTIONS(2135), - [anon_sym_get] = ACTIONS(2135), - [anon_sym_set] = ACTIONS(2135), - [anon_sym_declare] = ACTIONS(2135), - [anon_sym_public] = ACTIONS(2135), - [anon_sym_private] = ACTIONS(2135), - [anon_sym_protected] = ACTIONS(2135), - [anon_sym_override] = ACTIONS(2135), - [anon_sym_module] = ACTIONS(2135), - [anon_sym_any] = ACTIONS(2135), - [anon_sym_number] = ACTIONS(2135), - [anon_sym_boolean] = ACTIONS(2135), - [anon_sym_string] = ACTIONS(2135), - [anon_sym_symbol] = ACTIONS(2135), - [anon_sym_object] = ACTIONS(2135), - [anon_sym_abstract] = ACTIONS(2135), - [anon_sym_interface] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(2135), - [sym__automatic_semicolon] = ACTIONS(2139), - [sym_html_comment] = ACTIONS(5), - }, - [950] = { - [sym_comment] = STATE(950), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_catch] = ACTIONS(2105), - [anon_sym_finally] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym_html_comment] = ACTIONS(5), - }, - [951] = { - [sym_finally_clause] = STATE(1435), - [sym_comment] = STATE(951), - [sym_identifier] = ACTIONS(3056), - [anon_sym_export] = ACTIONS(3056), - [anon_sym_default] = ACTIONS(3056), - [anon_sym_type] = ACTIONS(3056), - [anon_sym_namespace] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_RBRACE] = ACTIONS(3056), - [anon_sym_typeof] = ACTIONS(3056), - [anon_sym_import] = ACTIONS(3056), - [anon_sym_with] = ACTIONS(3056), - [anon_sym_var] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_const] = ACTIONS(3056), - [anon_sym_BANG] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3056), - [anon_sym_switch] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_await] = ACTIONS(3056), - [anon_sym_while] = ACTIONS(3056), - [anon_sym_do] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3056), - [anon_sym_break] = ACTIONS(3056), - [anon_sym_continue] = ACTIONS(3056), - [anon_sym_debugger] = ACTIONS(3056), - [anon_sym_return] = ACTIONS(3056), - [anon_sym_throw] = ACTIONS(3056), - [anon_sym_SEMI] = ACTIONS(3056), - [anon_sym_case] = ACTIONS(3056), - [anon_sym_finally] = ACTIONS(3040), - [anon_sym_yield] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_LTtemplate_GT] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [anon_sym_SQUOTE] = ACTIONS(3056), - [anon_sym_class] = ACTIONS(3056), - [anon_sym_async] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3056), - [anon_sym_new] = ACTIONS(3056), - [anon_sym_using] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_SLASH] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [anon_sym_void] = ACTIONS(3056), - [anon_sym_delete] = ACTIONS(3056), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3056), - [sym_number] = ACTIONS(3056), - [sym_private_property_identifier] = ACTIONS(3056), - [sym_this] = ACTIONS(3056), - [sym_super] = ACTIONS(3056), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_AT] = ACTIONS(3056), - [anon_sym_static] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3056), - [anon_sym_get] = ACTIONS(3056), - [anon_sym_set] = ACTIONS(3056), - [anon_sym_declare] = ACTIONS(3056), - [anon_sym_public] = ACTIONS(3056), - [anon_sym_private] = ACTIONS(3056), - [anon_sym_protected] = ACTIONS(3056), - [anon_sym_override] = ACTIONS(3056), - [anon_sym_module] = ACTIONS(3056), - [anon_sym_any] = ACTIONS(3056), - [anon_sym_number] = ACTIONS(3056), - [anon_sym_boolean] = ACTIONS(3056), - [anon_sym_string] = ACTIONS(3056), - [anon_sym_symbol] = ACTIONS(3056), - [anon_sym_object] = ACTIONS(3056), - [anon_sym_abstract] = ACTIONS(3056), - [anon_sym_interface] = ACTIONS(3056), - [anon_sym_enum] = ACTIONS(3056), - [sym_html_comment] = ACTIONS(5), - }, - [952] = { - [sym_comment] = STATE(952), [sym_identifier] = ACTIONS(2145), [anon_sym_export] = ACTIONS(2145), [anon_sym_default] = ACTIONS(2145), @@ -141454,683 +140558,767 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(2147), [sym_html_comment] = ACTIONS(5), }, - [953] = { - [sym_comment] = STATE(953), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_catch] = ACTIONS(2093), - [anon_sym_finally] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), + [946] = { + [sym_comment] = STATE(946), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(3108), [sym_html_comment] = ACTIONS(5), }, - [954] = { - [sym_comment] = STATE(954), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(3112), + [947] = { + [sym_statement_block] = STATE(1218), + [sym_comment] = STATE(947), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(3110), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(3112), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), [sym_html_comment] = ACTIONS(5), }, - [955] = { - [sym_comment] = STATE(955), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(3114), + [948] = { + [sym_statement_block] = STATE(1218), + [sym_comment] = STATE(948), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(3110), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(3114), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), [sym_html_comment] = ACTIONS(5), }, - [956] = { - [sym_comment] = STATE(956), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_default] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_namespace] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_typeof] = ACTIONS(2251), - [anon_sym_import] = ACTIONS(2251), - [anon_sym_with] = ACTIONS(2251), - [anon_sym_var] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_else] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_debugger] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_throw] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_case] = ACTIONS(2251), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_LTtemplate_GT] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_using] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_void] = ACTIONS(2251), - [anon_sym_delete] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2251), - [sym_number] = ACTIONS(2251), - [sym_private_property_identifier] = ACTIONS(2251), - [sym_this] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_undefined] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_readonly] = ACTIONS(2251), - [anon_sym_get] = ACTIONS(2251), - [anon_sym_set] = ACTIONS(2251), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_public] = ACTIONS(2251), - [anon_sym_private] = ACTIONS(2251), - [anon_sym_protected] = ACTIONS(2251), - [anon_sym_override] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_any] = ACTIONS(2251), - [anon_sym_number] = ACTIONS(2251), - [anon_sym_boolean] = ACTIONS(2251), - [anon_sym_string] = ACTIONS(2251), - [anon_sym_symbol] = ACTIONS(2251), - [anon_sym_object] = ACTIONS(2251), - [anon_sym_abstract] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [sym__automatic_semicolon] = ACTIONS(2253), + [949] = { + [sym_comment] = STATE(949), + [sym_identifier] = ACTIONS(2255), + [anon_sym_export] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(2255), + [anon_sym_type] = ACTIONS(2255), + [anon_sym_namespace] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_typeof] = ACTIONS(2255), + [anon_sym_import] = ACTIONS(2255), + [anon_sym_with] = ACTIONS(2255), + [anon_sym_var] = ACTIONS(2255), + [anon_sym_let] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_else] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_switch] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2255), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_try] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_debugger] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_case] = ACTIONS(2255), + [anon_sym_yield] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_LTtemplate_GT] = ACTIONS(2255), + [anon_sym_DQUOTE] = ACTIONS(2255), + [anon_sym_SQUOTE] = ACTIONS(2255), + [anon_sym_class] = ACTIONS(2255), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2255), + [anon_sym_new] = ACTIONS(2255), + [anon_sym_using] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_void] = ACTIONS(2255), + [anon_sym_delete] = ACTIONS(2255), + [anon_sym_PLUS_PLUS] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2255), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2255), + [sym_number] = ACTIONS(2255), + [sym_private_property_identifier] = ACTIONS(2255), + [sym_this] = ACTIONS(2255), + [sym_super] = ACTIONS(2255), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), + [sym_null] = ACTIONS(2255), + [sym_undefined] = ACTIONS(2255), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_readonly] = ACTIONS(2255), + [anon_sym_get] = ACTIONS(2255), + [anon_sym_set] = ACTIONS(2255), + [anon_sym_declare] = ACTIONS(2255), + [anon_sym_public] = ACTIONS(2255), + [anon_sym_private] = ACTIONS(2255), + [anon_sym_protected] = ACTIONS(2255), + [anon_sym_override] = ACTIONS(2255), + [anon_sym_module] = ACTIONS(2255), + [anon_sym_any] = ACTIONS(2255), + [anon_sym_number] = ACTIONS(2255), + [anon_sym_boolean] = ACTIONS(2255), + [anon_sym_string] = ACTIONS(2255), + [anon_sym_symbol] = ACTIONS(2255), + [anon_sym_object] = ACTIONS(2255), + [anon_sym_abstract] = ACTIONS(2255), + [anon_sym_interface] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [sym__automatic_semicolon] = ACTIONS(2259), [sym_html_comment] = ACTIONS(5), }, - [957] = { - [sym_statement_block] = STATE(1337), - [sym_comment] = STATE(957), - [ts_builtin_sym_end] = ACTIONS(2059), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), + [950] = { + [sym_comment] = STATE(950), + [sym_identifier] = ACTIONS(3116), + [anon_sym_export] = ACTIONS(3116), + [anon_sym_default] = ACTIONS(3116), + [anon_sym_type] = ACTIONS(3116), + [anon_sym_namespace] = ACTIONS(3116), [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_else] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(3116), + [anon_sym_with] = ACTIONS(3116), + [anon_sym_var] = ACTIONS(3116), + [anon_sym_let] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(3116), + [anon_sym_else] = ACTIONS(3116), + [anon_sym_if] = ACTIONS(3116), + [anon_sym_switch] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3116), + [anon_sym_await] = ACTIONS(3116), + [anon_sym_while] = ACTIONS(3116), + [anon_sym_do] = ACTIONS(3116), + [anon_sym_try] = ACTIONS(3116), + [anon_sym_break] = ACTIONS(3116), + [anon_sym_continue] = ACTIONS(3116), + [anon_sym_debugger] = ACTIONS(3116), + [anon_sym_return] = ACTIONS(3116), + [anon_sym_throw] = ACTIONS(3116), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_case] = ACTIONS(3116), + [anon_sym_yield] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_LTtemplate_GT] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3116), + [anon_sym_SQUOTE] = ACTIONS(3116), + [anon_sym_class] = ACTIONS(3116), + [anon_sym_async] = ACTIONS(3116), + [anon_sym_function] = ACTIONS(3116), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_using] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3116), + [anon_sym_SLASH] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(3116), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_void] = ACTIONS(3116), + [anon_sym_delete] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3116), + [sym_number] = ACTIONS(3116), + [sym_private_property_identifier] = ACTIONS(3116), + [sym_this] = ACTIONS(3116), + [sym_super] = ACTIONS(3116), + [sym_true] = ACTIONS(3116), + [sym_false] = ACTIONS(3116), + [sym_null] = ACTIONS(3116), + [sym_undefined] = ACTIONS(3116), + [anon_sym_AT] = ACTIONS(3116), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_readonly] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3116), + [anon_sym_set] = ACTIONS(3116), + [anon_sym_declare] = ACTIONS(3116), + [anon_sym_public] = ACTIONS(3116), + [anon_sym_private] = ACTIONS(3116), + [anon_sym_protected] = ACTIONS(3116), + [anon_sym_override] = ACTIONS(3116), + [anon_sym_module] = ACTIONS(3116), + [anon_sym_any] = ACTIONS(3116), + [anon_sym_number] = ACTIONS(3116), + [anon_sym_boolean] = ACTIONS(3116), + [anon_sym_string] = ACTIONS(3116), + [anon_sym_symbol] = ACTIONS(3116), + [anon_sym_object] = ACTIONS(3116), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_interface] = ACTIONS(3116), + [anon_sym_enum] = ACTIONS(3116), + [sym__automatic_semicolon] = ACTIONS(3118), [sym_html_comment] = ACTIONS(5), }, - [958] = { - [sym_statement_block] = STATE(1337), - [sym_comment] = STATE(958), - [ts_builtin_sym_end] = ACTIONS(2059), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_else] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(3120), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), + [951] = { + [sym_comment] = STATE(951), + [sym_identifier] = ACTIONS(2225), + [anon_sym_export] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_typeof] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_with] = ACTIONS(2225), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_else] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_debugger] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_case] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LTtemplate_GT] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_void] = ACTIONS(2225), + [anon_sym_delete] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2225), + [sym_number] = ACTIONS(2225), + [sym_private_property_identifier] = ACTIONS(2225), + [sym_this] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_null] = ACTIONS(2225), + [sym_undefined] = ACTIONS(2225), + [anon_sym_AT] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_readonly] = ACTIONS(2225), + [anon_sym_get] = ACTIONS(2225), + [anon_sym_set] = ACTIONS(2225), + [anon_sym_declare] = ACTIONS(2225), + [anon_sym_public] = ACTIONS(2225), + [anon_sym_private] = ACTIONS(2225), + [anon_sym_protected] = ACTIONS(2225), + [anon_sym_override] = ACTIONS(2225), + [anon_sym_module] = ACTIONS(2225), + [anon_sym_any] = ACTIONS(2225), + [anon_sym_number] = ACTIONS(2225), + [anon_sym_boolean] = ACTIONS(2225), + [anon_sym_string] = ACTIONS(2225), + [anon_sym_symbol] = ACTIONS(2225), + [anon_sym_object] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [sym__automatic_semicolon] = ACTIONS(2229), [sym_html_comment] = ACTIONS(5), }, - [959] = { - [sym_comment] = STATE(959), - [sym_identifier] = ACTIONS(2257), - [anon_sym_export] = ACTIONS(2257), - [anon_sym_default] = ACTIONS(2257), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_typeof] = ACTIONS(2257), - [anon_sym_import] = ACTIONS(2257), - [anon_sym_with] = ACTIONS(2257), - [anon_sym_var] = ACTIONS(2257), - [anon_sym_let] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2257), - [anon_sym_else] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_switch] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_debugger] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_throw] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2257), - [anon_sym_case] = ACTIONS(2257), - [anon_sym_yield] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_LTtemplate_GT] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(2257), - [anon_sym_SQUOTE] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_async] = ACTIONS(2257), - [anon_sym_function] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_using] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_SLASH] = ACTIONS(2257), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_TILDE] = ACTIONS(2257), - [anon_sym_void] = ACTIONS(2257), - [anon_sym_delete] = ACTIONS(2257), - [anon_sym_PLUS_PLUS] = ACTIONS(2257), - [anon_sym_DASH_DASH] = ACTIONS(2257), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2257), - [sym_number] = ACTIONS(2257), - [sym_private_property_identifier] = ACTIONS(2257), - [sym_this] = ACTIONS(2257), - [sym_super] = ACTIONS(2257), - [sym_true] = ACTIONS(2257), - [sym_false] = ACTIONS(2257), - [sym_null] = ACTIONS(2257), - [sym_undefined] = ACTIONS(2257), - [anon_sym_AT] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_readonly] = ACTIONS(2257), - [anon_sym_get] = ACTIONS(2257), - [anon_sym_set] = ACTIONS(2257), - [anon_sym_declare] = ACTIONS(2257), - [anon_sym_public] = ACTIONS(2257), - [anon_sym_private] = ACTIONS(2257), - [anon_sym_protected] = ACTIONS(2257), - [anon_sym_override] = ACTIONS(2257), - [anon_sym_module] = ACTIONS(2257), - [anon_sym_any] = ACTIONS(2257), - [anon_sym_number] = ACTIONS(2257), - [anon_sym_boolean] = ACTIONS(2257), - [anon_sym_string] = ACTIONS(2257), - [anon_sym_symbol] = ACTIONS(2257), - [anon_sym_object] = ACTIONS(2257), - [anon_sym_abstract] = ACTIONS(2257), - [anon_sym_interface] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [sym__automatic_semicolon] = ACTIONS(2261), + [952] = { + [sym_comment] = STATE(952), + [sym_identifier] = ACTIONS(2083), + [anon_sym_export] = ACTIONS(2083), + [anon_sym_default] = ACTIONS(2083), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_namespace] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_typeof] = ACTIONS(2083), + [anon_sym_import] = ACTIONS(2083), + [anon_sym_with] = ACTIONS(2083), + [anon_sym_var] = ACTIONS(2083), + [anon_sym_let] = ACTIONS(2083), + [anon_sym_const] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_else] = ACTIONS(2083), + [anon_sym_if] = ACTIONS(2083), + [anon_sym_switch] = ACTIONS(2083), + [anon_sym_for] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_await] = ACTIONS(2083), + [anon_sym_while] = ACTIONS(2083), + [anon_sym_do] = ACTIONS(2083), + [anon_sym_try] = ACTIONS(2083), + [anon_sym_break] = ACTIONS(2083), + [anon_sym_continue] = ACTIONS(2083), + [anon_sym_debugger] = ACTIONS(2083), + [anon_sym_return] = ACTIONS(2083), + [anon_sym_throw] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_case] = ACTIONS(2083), + [anon_sym_yield] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LTtemplate_GT] = ACTIONS(2083), + [anon_sym_DQUOTE] = ACTIONS(2083), + [anon_sym_SQUOTE] = ACTIONS(2083), + [anon_sym_class] = ACTIONS(2083), + [anon_sym_async] = ACTIONS(2083), + [anon_sym_function] = ACTIONS(2083), + [anon_sym_new] = ACTIONS(2083), + [anon_sym_using] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(2083), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_void] = ACTIONS(2083), + [anon_sym_delete] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2083), + [sym_number] = ACTIONS(2083), + [sym_private_property_identifier] = ACTIONS(2083), + [sym_this] = ACTIONS(2083), + [sym_super] = ACTIONS(2083), + [sym_true] = ACTIONS(2083), + [sym_false] = ACTIONS(2083), + [sym_null] = ACTIONS(2083), + [sym_undefined] = ACTIONS(2083), + [anon_sym_AT] = ACTIONS(2083), + [anon_sym_static] = ACTIONS(2083), + [anon_sym_readonly] = ACTIONS(2083), + [anon_sym_get] = ACTIONS(2083), + [anon_sym_set] = ACTIONS(2083), + [anon_sym_declare] = ACTIONS(2083), + [anon_sym_public] = ACTIONS(2083), + [anon_sym_private] = ACTIONS(2083), + [anon_sym_protected] = ACTIONS(2083), + [anon_sym_override] = ACTIONS(2083), + [anon_sym_module] = ACTIONS(2083), + [anon_sym_any] = ACTIONS(2083), + [anon_sym_number] = ACTIONS(2083), + [anon_sym_boolean] = ACTIONS(2083), + [anon_sym_string] = ACTIONS(2083), + [anon_sym_symbol] = ACTIONS(2083), + [anon_sym_object] = ACTIONS(2083), + [anon_sym_abstract] = ACTIONS(2083), + [anon_sym_interface] = ACTIONS(2083), + [anon_sym_enum] = ACTIONS(2083), + [sym__automatic_semicolon] = ACTIONS(2087), [sym_html_comment] = ACTIONS(5), }, - [960] = { - [sym_statement_block] = STATE(1387), - [sym_comment] = STATE(960), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_default] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_case] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), + [953] = { + [sym_comment] = STATE(953), + [sym_identifier] = ACTIONS(2103), + [anon_sym_export] = ACTIONS(2103), + [anon_sym_default] = ACTIONS(2103), + [anon_sym_type] = ACTIONS(2103), + [anon_sym_namespace] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(2103), + [anon_sym_import] = ACTIONS(2103), + [anon_sym_with] = ACTIONS(2103), + [anon_sym_var] = ACTIONS(2103), + [anon_sym_let] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_BANG] = ACTIONS(2103), + [anon_sym_else] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2103), + [anon_sym_switch] = ACTIONS(2103), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_while] = ACTIONS(2103), + [anon_sym_do] = ACTIONS(2103), + [anon_sym_try] = ACTIONS(2103), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2103), + [anon_sym_debugger] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2103), + [anon_sym_throw] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_case] = ACTIONS(2103), + [anon_sym_yield] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_LTtemplate_GT] = ACTIONS(2103), + [anon_sym_DQUOTE] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_class] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(2103), + [anon_sym_function] = ACTIONS(2103), + [anon_sym_new] = ACTIONS(2103), + [anon_sym_using] = ACTIONS(2103), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_SLASH] = ACTIONS(2103), + [anon_sym_LT] = ACTIONS(2103), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_void] = ACTIONS(2103), + [anon_sym_delete] = ACTIONS(2103), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2103), + [sym_number] = ACTIONS(2103), + [sym_private_property_identifier] = ACTIONS(2103), + [sym_this] = ACTIONS(2103), + [sym_super] = ACTIONS(2103), + [sym_true] = ACTIONS(2103), + [sym_false] = ACTIONS(2103), + [sym_null] = ACTIONS(2103), + [sym_undefined] = ACTIONS(2103), + [anon_sym_AT] = ACTIONS(2103), + [anon_sym_static] = ACTIONS(2103), + [anon_sym_readonly] = ACTIONS(2103), + [anon_sym_get] = ACTIONS(2103), + [anon_sym_set] = ACTIONS(2103), + [anon_sym_declare] = ACTIONS(2103), + [anon_sym_public] = ACTIONS(2103), + [anon_sym_private] = ACTIONS(2103), + [anon_sym_protected] = ACTIONS(2103), + [anon_sym_override] = ACTIONS(2103), + [anon_sym_module] = ACTIONS(2103), + [anon_sym_any] = ACTIONS(2103), + [anon_sym_number] = ACTIONS(2103), + [anon_sym_boolean] = ACTIONS(2103), + [anon_sym_string] = ACTIONS(2103), + [anon_sym_symbol] = ACTIONS(2103), + [anon_sym_object] = ACTIONS(2103), + [anon_sym_abstract] = ACTIONS(2103), + [anon_sym_interface] = ACTIONS(2103), + [anon_sym_enum] = ACTIONS(2103), + [sym__automatic_semicolon] = ACTIONS(2107), [sym_html_comment] = ACTIONS(5), }, - [961] = { - [sym_comment] = STATE(961), - [ts_builtin_sym_end] = ACTIONS(2267), + [954] = { + [sym_finally_clause] = STATE(1366), + [sym_comment] = STATE(954), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3052), + [anon_sym_export] = ACTIONS(3052), + [anon_sym_type] = ACTIONS(3052), + [anon_sym_namespace] = ACTIONS(3052), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_typeof] = ACTIONS(3052), + [anon_sym_import] = ACTIONS(3052), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_var] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_BANG] = ACTIONS(3052), + [anon_sym_else] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_switch] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_await] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_break] = ACTIONS(3052), + [anon_sym_continue] = ACTIONS(3052), + [anon_sym_debugger] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_throw] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_finally] = ACTIONS(3032), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LTtemplate_GT] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_class] = ACTIONS(3052), + [anon_sym_async] = ACTIONS(3052), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_using] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_SLASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3052), + [anon_sym_void] = ACTIONS(3052), + [anon_sym_delete] = ACTIONS(3052), + [anon_sym_PLUS_PLUS] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3052), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3052), + [sym_number] = ACTIONS(3052), + [sym_private_property_identifier] = ACTIONS(3052), + [sym_this] = ACTIONS(3052), + [sym_super] = ACTIONS(3052), + [sym_true] = ACTIONS(3052), + [sym_false] = ACTIONS(3052), + [sym_null] = ACTIONS(3052), + [sym_undefined] = ACTIONS(3052), + [anon_sym_AT] = ACTIONS(3052), + [anon_sym_static] = ACTIONS(3052), + [anon_sym_readonly] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_declare] = ACTIONS(3052), + [anon_sym_public] = ACTIONS(3052), + [anon_sym_private] = ACTIONS(3052), + [anon_sym_protected] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3052), + [anon_sym_module] = ACTIONS(3052), + [anon_sym_any] = ACTIONS(3052), + [anon_sym_number] = ACTIONS(3052), + [anon_sym_boolean] = ACTIONS(3052), + [anon_sym_string] = ACTIONS(3052), + [anon_sym_symbol] = ACTIONS(3052), + [anon_sym_object] = ACTIONS(3052), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_interface] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), + [sym_html_comment] = ACTIONS(5), + }, + [955] = { + [sym_comment] = STATE(955), [sym_identifier] = ACTIONS(2213), [anon_sym_export] = ACTIONS(2213), + [anon_sym_default] = ACTIONS(2213), [anon_sym_type] = ACTIONS(2213), [anon_sym_namespace] = ACTIONS(2213), [anon_sym_LBRACE] = ACTIONS(2213), @@ -142157,6 +141345,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2213), [anon_sym_throw] = ACTIONS(2213), [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_case] = ACTIONS(2213), [anon_sym_yield] = ACTIONS(2213), [anon_sym_LBRACK] = ACTIONS(2213), [anon_sym_LTtemplate_GT] = ACTIONS(2213), @@ -142206,95 +141395,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2213), [anon_sym_interface] = ACTIONS(2213), [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2269), + [sym__automatic_semicolon] = ACTIONS(2217), [sym_html_comment] = ACTIONS(5), }, - [962] = { - [sym_comment] = STATE(962), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_RBRACE] = ACTIONS(3124), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3124), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_LTtemplate_GT] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(3124), - [anon_sym_SQUOTE] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_using] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3124), - [anon_sym_DASH_DASH] = ACTIONS(3124), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3124), - [sym_number] = ACTIONS(3124), - [sym_private_property_identifier] = ACTIONS(3124), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3124), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_object] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [956] = { + [sym_comment] = STATE(956), + [sym_identifier] = ACTIONS(2233), + [anon_sym_export] = ACTIONS(2233), + [anon_sym_default] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_namespace] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_typeof] = ACTIONS(2233), + [anon_sym_import] = ACTIONS(2233), + [anon_sym_with] = ACTIONS(2233), + [anon_sym_var] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2233), + [anon_sym_else] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_switch] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2233), + [anon_sym_await] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_do] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_debugger] = ACTIONS(2233), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_throw] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_case] = ACTIONS(2233), + [anon_sym_yield] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LTtemplate_GT] = ACTIONS(2233), + [anon_sym_DOT] = ACTIONS(2233), + [anon_sym_DQUOTE] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_class] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_function] = ACTIONS(2233), + [anon_sym_new] = ACTIONS(2233), + [anon_sym_using] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_SLASH] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_TILDE] = ACTIONS(2233), + [anon_sym_void] = ACTIONS(2233), + [anon_sym_delete] = ACTIONS(2233), + [anon_sym_PLUS_PLUS] = ACTIONS(2233), + [anon_sym_DASH_DASH] = ACTIONS(2233), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2233), + [sym_number] = ACTIONS(2233), + [sym_private_property_identifier] = ACTIONS(2233), + [sym_this] = ACTIONS(2233), + [sym_super] = ACTIONS(2233), + [sym_true] = ACTIONS(2233), + [sym_false] = ACTIONS(2233), + [sym_null] = ACTIONS(2233), + [sym_undefined] = ACTIONS(2233), + [anon_sym_AT] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_readonly] = ACTIONS(2233), + [anon_sym_get] = ACTIONS(2233), + [anon_sym_set] = ACTIONS(2233), + [anon_sym_declare] = ACTIONS(2233), + [anon_sym_public] = ACTIONS(2233), + [anon_sym_private] = ACTIONS(2233), + [anon_sym_protected] = ACTIONS(2233), + [anon_sym_override] = ACTIONS(2233), + [anon_sym_module] = ACTIONS(2233), + [anon_sym_any] = ACTIONS(2233), + [anon_sym_number] = ACTIONS(2233), + [anon_sym_boolean] = ACTIONS(2233), + [anon_sym_string] = ACTIONS(2233), + [anon_sym_symbol] = ACTIONS(2233), + [anon_sym_object] = ACTIONS(2233), + [anon_sym_abstract] = ACTIONS(2233), + [anon_sym_interface] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), [sym_html_comment] = ACTIONS(5), }, - [963] = { - [sym_comment] = STATE(963), - [ts_builtin_sym_end] = ACTIONS(2103), + [957] = { + [sym_comment] = STATE(957), + [sym_identifier] = ACTIONS(2237), + [anon_sym_export] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_namespace] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_with] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_debugger] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_throw] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_case] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_LTtemplate_GT] = ACTIONS(2237), + [anon_sym_DOT] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2237), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2237), + [sym_number] = ACTIONS(2237), + [sym_private_property_identifier] = ACTIONS(2237), + [sym_this] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_true] = ACTIONS(2237), + [sym_false] = ACTIONS(2237), + [sym_null] = ACTIONS(2237), + [sym_undefined] = ACTIONS(2237), + [anon_sym_AT] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_readonly] = ACTIONS(2237), + [anon_sym_get] = ACTIONS(2237), + [anon_sym_set] = ACTIONS(2237), + [anon_sym_declare] = ACTIONS(2237), + [anon_sym_public] = ACTIONS(2237), + [anon_sym_private] = ACTIONS(2237), + [anon_sym_protected] = ACTIONS(2237), + [anon_sym_override] = ACTIONS(2237), + [anon_sym_module] = ACTIONS(2237), + [anon_sym_any] = ACTIONS(2237), + [anon_sym_number] = ACTIONS(2237), + [anon_sym_boolean] = ACTIONS(2237), + [anon_sym_string] = ACTIONS(2237), + [anon_sym_symbol] = ACTIONS(2237), + [anon_sym_object] = ACTIONS(2237), + [anon_sym_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [sym_html_comment] = ACTIONS(5), + }, + [958] = { + [sym_comment] = STATE(958), + [ts_builtin_sym_end] = ACTIONS(2095), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), @@ -142308,6 +141582,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2067), [anon_sym_const] = ACTIONS(2067), [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2067), [anon_sym_if] = ACTIONS(2067), [anon_sym_switch] = ACTIONS(2067), [anon_sym_for] = ACTIONS(2067), @@ -142372,94 +141647,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3126), + [sym__automatic_semicolon] = ACTIONS(3122), [sym_html_comment] = ACTIONS(5), }, - [964] = { - [sym_comment] = STATE(964), - [sym_identifier] = ACTIONS(3078), - [anon_sym_export] = ACTIONS(3078), - [anon_sym_default] = ACTIONS(3078), - [anon_sym_type] = ACTIONS(3078), - [anon_sym_namespace] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3078), - [anon_sym_RBRACE] = ACTIONS(3078), - [anon_sym_typeof] = ACTIONS(3078), - [anon_sym_import] = ACTIONS(3078), - [anon_sym_with] = ACTIONS(3078), - [anon_sym_var] = ACTIONS(3078), - [anon_sym_let] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_switch] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_await] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_do] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_debugger] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3078), - [anon_sym_case] = ACTIONS(3078), - [anon_sym_yield] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_LTtemplate_GT] = ACTIONS(3078), - [anon_sym_DQUOTE] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_async] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_SLASH] = ACTIONS(3078), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_TILDE] = ACTIONS(3078), - [anon_sym_void] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3078), - [anon_sym_PLUS_PLUS] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3078), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3078), - [sym_number] = ACTIONS(3078), - [sym_private_property_identifier] = ACTIONS(3078), - [sym_this] = ACTIONS(3078), - [sym_super] = ACTIONS(3078), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3078), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_declare] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_override] = ACTIONS(3078), - [anon_sym_module] = ACTIONS(3078), - [anon_sym_any] = ACTIONS(3078), - [anon_sym_number] = ACTIONS(3078), - [anon_sym_boolean] = ACTIONS(3078), - [anon_sym_string] = ACTIONS(3078), - [anon_sym_symbol] = ACTIONS(3078), - [anon_sym_object] = ACTIONS(3078), - [anon_sym_abstract] = ACTIONS(3078), - [anon_sym_interface] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [sym__automatic_semicolon] = ACTIONS(3080), + [959] = { + [sym_comment] = STATE(959), + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2221), + [anon_sym_export] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_typeof] = ACTIONS(2221), + [anon_sym_import] = ACTIONS(2221), + [anon_sym_with] = ACTIONS(2221), + [anon_sym_var] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_else] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_debugger] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_catch] = ACTIONS(2221), + [anon_sym_finally] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LTtemplate_GT] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_void] = ACTIONS(2221), + [anon_sym_delete] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2221), + [sym_number] = ACTIONS(2221), + [sym_private_property_identifier] = ACTIONS(2221), + [sym_this] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_null] = ACTIONS(2221), + [sym_undefined] = ACTIONS(2221), + [anon_sym_AT] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_get] = ACTIONS(2221), + [anon_sym_set] = ACTIONS(2221), + [anon_sym_declare] = ACTIONS(2221), + [anon_sym_public] = ACTIONS(2221), + [anon_sym_private] = ACTIONS(2221), + [anon_sym_protected] = ACTIONS(2221), + [anon_sym_override] = ACTIONS(2221), + [anon_sym_module] = ACTIONS(2221), + [anon_sym_any] = ACTIONS(2221), + [anon_sym_number] = ACTIONS(2221), + [anon_sym_boolean] = ACTIONS(2221), + [anon_sym_string] = ACTIONS(2221), + [anon_sym_symbol] = ACTIONS(2221), + [anon_sym_object] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), [sym_html_comment] = ACTIONS(5), }, - [965] = { - [sym_comment] = STATE(965), + [960] = { + [sym_comment] = STATE(960), + [sym_identifier] = ACTIONS(2189), + [anon_sym_export] = ACTIONS(2189), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_namespace] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_typeof] = ACTIONS(2189), + [anon_sym_import] = ACTIONS(2189), + [anon_sym_with] = ACTIONS(2189), + [anon_sym_var] = ACTIONS(2189), + [anon_sym_let] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_else] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_switch] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_await] = ACTIONS(2189), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_do] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_debugger] = ACTIONS(2189), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2189), + [anon_sym_SEMI] = ACTIONS(2189), + [anon_sym_case] = ACTIONS(2189), + [anon_sym_yield] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_LTtemplate_GT] = ACTIONS(2189), + [anon_sym_DQUOTE] = ACTIONS(2189), + [anon_sym_SQUOTE] = ACTIONS(2189), + [anon_sym_class] = ACTIONS(2189), + [anon_sym_async] = ACTIONS(2189), + [anon_sym_function] = ACTIONS(2189), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_using] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_SLASH] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_TILDE] = ACTIONS(2189), + [anon_sym_void] = ACTIONS(2189), + [anon_sym_delete] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2189), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2189), + [sym_number] = ACTIONS(2189), + [sym_private_property_identifier] = ACTIONS(2189), + [sym_this] = ACTIONS(2189), + [sym_super] = ACTIONS(2189), + [sym_true] = ACTIONS(2189), + [sym_false] = ACTIONS(2189), + [sym_null] = ACTIONS(2189), + [sym_undefined] = ACTIONS(2189), + [anon_sym_AT] = ACTIONS(2189), + [anon_sym_static] = ACTIONS(2189), + [anon_sym_readonly] = ACTIONS(2189), + [anon_sym_get] = ACTIONS(2189), + [anon_sym_set] = ACTIONS(2189), + [anon_sym_declare] = ACTIONS(2189), + [anon_sym_public] = ACTIONS(2189), + [anon_sym_private] = ACTIONS(2189), + [anon_sym_protected] = ACTIONS(2189), + [anon_sym_override] = ACTIONS(2189), + [anon_sym_module] = ACTIONS(2189), + [anon_sym_any] = ACTIONS(2189), + [anon_sym_number] = ACTIONS(2189), + [anon_sym_boolean] = ACTIONS(2189), + [anon_sym_string] = ACTIONS(2189), + [anon_sym_symbol] = ACTIONS(2189), + [anon_sym_object] = ACTIONS(2189), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_interface] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [sym__automatic_semicolon] = ACTIONS(2193), + [sym_html_comment] = ACTIONS(5), + }, + [961] = { + [sym_comment] = STATE(961), + [sym_identifier] = ACTIONS(2103), + [anon_sym_export] = ACTIONS(2103), + [anon_sym_default] = ACTIONS(2103), + [anon_sym_type] = ACTIONS(2103), + [anon_sym_namespace] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(2103), + [anon_sym_import] = ACTIONS(2103), + [anon_sym_with] = ACTIONS(2103), + [anon_sym_var] = ACTIONS(2103), + [anon_sym_let] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_BANG] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2103), + [anon_sym_switch] = ACTIONS(2103), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_while] = ACTIONS(2103), + [anon_sym_do] = ACTIONS(2103), + [anon_sym_try] = ACTIONS(2103), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2103), + [anon_sym_debugger] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2103), + [anon_sym_throw] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_case] = ACTIONS(2103), + [anon_sym_yield] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_LTtemplate_GT] = ACTIONS(2103), + [anon_sym_DQUOTE] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_class] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(2103), + [anon_sym_function] = ACTIONS(2103), + [anon_sym_new] = ACTIONS(2103), + [anon_sym_using] = ACTIONS(2103), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_SLASH] = ACTIONS(2103), + [anon_sym_LT] = ACTIONS(2103), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_void] = ACTIONS(2103), + [anon_sym_delete] = ACTIONS(2103), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2103), + [sym_number] = ACTIONS(2103), + [sym_private_property_identifier] = ACTIONS(2103), + [sym_this] = ACTIONS(2103), + [sym_super] = ACTIONS(2103), + [sym_true] = ACTIONS(2103), + [sym_false] = ACTIONS(2103), + [sym_null] = ACTIONS(2103), + [sym_undefined] = ACTIONS(2103), + [anon_sym_AT] = ACTIONS(2103), + [anon_sym_static] = ACTIONS(2103), + [anon_sym_readonly] = ACTIONS(2103), + [anon_sym_get] = ACTIONS(2103), + [anon_sym_set] = ACTIONS(2103), + [anon_sym_declare] = ACTIONS(2103), + [anon_sym_public] = ACTIONS(2103), + [anon_sym_private] = ACTIONS(2103), + [anon_sym_protected] = ACTIONS(2103), + [anon_sym_override] = ACTIONS(2103), + [anon_sym_module] = ACTIONS(2103), + [anon_sym_any] = ACTIONS(2103), + [anon_sym_number] = ACTIONS(2103), + [anon_sym_boolean] = ACTIONS(2103), + [anon_sym_string] = ACTIONS(2103), + [anon_sym_symbol] = ACTIONS(2103), + [anon_sym_object] = ACTIONS(2103), + [anon_sym_abstract] = ACTIONS(2103), + [anon_sym_interface] = ACTIONS(2103), + [anon_sym_enum] = ACTIONS(2103), + [sym__automatic_semicolon] = ACTIONS(2285), + [sym_html_comment] = ACTIONS(5), + }, + [962] = { + [sym_statement_block] = STATE(1520), + [sym_comment] = STATE(962), + [ts_builtin_sym_end] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(3126), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym_html_comment] = ACTIONS(5), + }, + [963] = { + [sym_comment] = STATE(963), [sym_identifier] = ACTIONS(3128), [anon_sym_export] = ACTIONS(3128), [anon_sym_default] = ACTIONS(3128), @@ -142541,174 +142067,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3128), [sym_html_comment] = ACTIONS(5), }, - [966] = { - [sym_comment] = STATE(966), - [ts_builtin_sym_end] = ACTIONS(3074), - [sym_identifier] = ACTIONS(3072), - [anon_sym_export] = ACTIONS(3072), - [anon_sym_type] = ACTIONS(3072), - [anon_sym_namespace] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_RBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3072), - [anon_sym_import] = ACTIONS(3072), - [anon_sym_with] = ACTIONS(3072), - [anon_sym_var] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_const] = ACTIONS(3072), - [anon_sym_BANG] = ACTIONS(3072), - [anon_sym_else] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_switch] = ACTIONS(3072), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_await] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_break] = ACTIONS(3072), - [anon_sym_continue] = ACTIONS(3072), - [anon_sym_debugger] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_throw] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3072), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LTtemplate_GT] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_class] = ACTIONS(3072), - [anon_sym_async] = ACTIONS(3072), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_using] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_SLASH] = ACTIONS(3072), - [anon_sym_LT] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_void] = ACTIONS(3072), - [anon_sym_delete] = ACTIONS(3072), - [anon_sym_PLUS_PLUS] = ACTIONS(3072), - [anon_sym_DASH_DASH] = ACTIONS(3072), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3072), - [sym_private_property_identifier] = ACTIONS(3072), - [sym_this] = ACTIONS(3072), - [sym_super] = ACTIONS(3072), - [sym_true] = ACTIONS(3072), - [sym_false] = ACTIONS(3072), - [sym_null] = ACTIONS(3072), - [sym_undefined] = ACTIONS(3072), - [anon_sym_AT] = ACTIONS(3072), - [anon_sym_static] = ACTIONS(3072), - [anon_sym_readonly] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(3072), - [anon_sym_set] = ACTIONS(3072), - [anon_sym_declare] = ACTIONS(3072), - [anon_sym_public] = ACTIONS(3072), - [anon_sym_private] = ACTIONS(3072), - [anon_sym_protected] = ACTIONS(3072), - [anon_sym_override] = ACTIONS(3072), - [anon_sym_module] = ACTIONS(3072), - [anon_sym_any] = ACTIONS(3072), - [anon_sym_number] = ACTIONS(3072), - [anon_sym_boolean] = ACTIONS(3072), - [anon_sym_string] = ACTIONS(3072), - [anon_sym_symbol] = ACTIONS(3072), - [anon_sym_object] = ACTIONS(3072), - [anon_sym_abstract] = ACTIONS(3072), - [anon_sym_interface] = ACTIONS(3072), - [anon_sym_enum] = ACTIONS(3072), - [sym__automatic_semicolon] = ACTIONS(3074), - [sym_html_comment] = ACTIONS(5), - }, - [967] = { - [sym_comment] = STATE(967), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_finally] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(3130), + [964] = { + [sym_comment] = STATE(964), + [sym_identifier] = ACTIONS(3130), + [anon_sym_export] = ACTIONS(3130), + [anon_sym_default] = ACTIONS(3130), + [anon_sym_type] = ACTIONS(3130), + [anon_sym_namespace] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(3130), + [anon_sym_RBRACE] = ACTIONS(3130), + [anon_sym_typeof] = ACTIONS(3130), + [anon_sym_import] = ACTIONS(3130), + [anon_sym_with] = ACTIONS(3130), + [anon_sym_var] = ACTIONS(3130), + [anon_sym_let] = ACTIONS(3130), + [anon_sym_const] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_switch] = ACTIONS(3130), + [anon_sym_for] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_await] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_do] = ACTIONS(3130), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_debugger] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_throw] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3130), + [anon_sym_case] = ACTIONS(3130), + [anon_sym_yield] = ACTIONS(3130), + [anon_sym_LBRACK] = ACTIONS(3130), + [anon_sym_LTtemplate_GT] = ACTIONS(3130), + [anon_sym_DQUOTE] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(3130), + [anon_sym_class] = ACTIONS(3130), + [anon_sym_async] = ACTIONS(3130), + [anon_sym_function] = ACTIONS(3130), + [anon_sym_new] = ACTIONS(3130), + [anon_sym_using] = ACTIONS(3130), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_SLASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3130), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_void] = ACTIONS(3130), + [anon_sym_delete] = ACTIONS(3130), + [anon_sym_PLUS_PLUS] = ACTIONS(3130), + [anon_sym_DASH_DASH] = ACTIONS(3130), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3130), + [sym_number] = ACTIONS(3130), + [sym_private_property_identifier] = ACTIONS(3130), + [sym_this] = ACTIONS(3130), + [sym_super] = ACTIONS(3130), + [sym_true] = ACTIONS(3130), + [sym_false] = ACTIONS(3130), + [sym_null] = ACTIONS(3130), + [sym_undefined] = ACTIONS(3130), + [anon_sym_AT] = ACTIONS(3130), + [anon_sym_static] = ACTIONS(3130), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_get] = ACTIONS(3130), + [anon_sym_set] = ACTIONS(3130), + [anon_sym_declare] = ACTIONS(3130), + [anon_sym_public] = ACTIONS(3130), + [anon_sym_private] = ACTIONS(3130), + [anon_sym_protected] = ACTIONS(3130), + [anon_sym_override] = ACTIONS(3130), + [anon_sym_module] = ACTIONS(3130), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3130), + [anon_sym_interface] = ACTIONS(3130), + [anon_sym_enum] = ACTIONS(3130), [sym_html_comment] = ACTIONS(5), }, - [968] = { - [sym_comment] = STATE(968), + [965] = { + [sym_comment] = STATE(965), [sym_identifier] = ACTIONS(3132), [anon_sym_export] = ACTIONS(3132), [anon_sym_default] = ACTIONS(3132), @@ -142790,8 +142233,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3132), [sym_html_comment] = ACTIONS(5), }, - [969] = { - [sym_comment] = STATE(969), + [966] = { + [sym_comment] = STATE(966), [sym_identifier] = ACTIONS(3134), [anon_sym_export] = ACTIONS(3134), [anon_sym_default] = ACTIONS(3134), @@ -142873,8 +142316,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3134), [sym_html_comment] = ACTIONS(5), }, - [970] = { - [sym_comment] = STATE(970), + [967] = { + [sym_comment] = STATE(967), [sym_identifier] = ACTIONS(3136), [anon_sym_export] = ACTIONS(3136), [anon_sym_default] = ACTIONS(3136), @@ -142956,91 +142399,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3136), [sym_html_comment] = ACTIONS(5), }, - [971] = { - [sym_statement_block] = STATE(1337), - [sym_comment] = STATE(971), - [ts_builtin_sym_end] = ACTIONS(2059), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(3116), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_else] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [sym_html_comment] = ACTIONS(5), - }, - [972] = { - [sym_comment] = STATE(972), + [968] = { + [sym_comment] = STATE(968), [sym_identifier] = ACTIONS(3138), [anon_sym_export] = ACTIONS(3138), [anon_sym_default] = ACTIONS(3138), @@ -143122,91 +142482,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3138), [sym_html_comment] = ACTIONS(5), }, - [973] = { - [sym_comment] = STATE(973), - [sym_identifier] = ACTIONS(3072), - [anon_sym_export] = ACTIONS(3072), - [anon_sym_default] = ACTIONS(3072), - [anon_sym_type] = ACTIONS(3072), - [anon_sym_namespace] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_RBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3072), - [anon_sym_import] = ACTIONS(3072), - [anon_sym_with] = ACTIONS(3072), - [anon_sym_var] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_const] = ACTIONS(3072), - [anon_sym_BANG] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_switch] = ACTIONS(3072), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_await] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_break] = ACTIONS(3072), - [anon_sym_continue] = ACTIONS(3072), - [anon_sym_debugger] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_throw] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3072), - [anon_sym_case] = ACTIONS(3072), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LTtemplate_GT] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_class] = ACTIONS(3072), - [anon_sym_async] = ACTIONS(3072), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_using] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_SLASH] = ACTIONS(3072), - [anon_sym_LT] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_void] = ACTIONS(3072), - [anon_sym_delete] = ACTIONS(3072), - [anon_sym_PLUS_PLUS] = ACTIONS(3072), - [anon_sym_DASH_DASH] = ACTIONS(3072), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3072), - [sym_private_property_identifier] = ACTIONS(3072), - [sym_this] = ACTIONS(3072), - [sym_super] = ACTIONS(3072), - [sym_true] = ACTIONS(3072), - [sym_false] = ACTIONS(3072), - [sym_null] = ACTIONS(3072), - [sym_undefined] = ACTIONS(3072), - [anon_sym_AT] = ACTIONS(3072), - [anon_sym_static] = ACTIONS(3072), - [anon_sym_readonly] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(3072), - [anon_sym_set] = ACTIONS(3072), - [anon_sym_declare] = ACTIONS(3072), - [anon_sym_public] = ACTIONS(3072), - [anon_sym_private] = ACTIONS(3072), - [anon_sym_protected] = ACTIONS(3072), - [anon_sym_override] = ACTIONS(3072), - [anon_sym_module] = ACTIONS(3072), - [anon_sym_any] = ACTIONS(3072), - [anon_sym_number] = ACTIONS(3072), - [anon_sym_boolean] = ACTIONS(3072), - [anon_sym_string] = ACTIONS(3072), - [anon_sym_symbol] = ACTIONS(3072), - [anon_sym_object] = ACTIONS(3072), - [anon_sym_abstract] = ACTIONS(3072), - [anon_sym_interface] = ACTIONS(3072), - [anon_sym_enum] = ACTIONS(3072), - [sym__automatic_semicolon] = ACTIONS(3074), - [sym_html_comment] = ACTIONS(5), - }, - [974] = { - [sym_comment] = STATE(974), + [969] = { + [sym_comment] = STATE(969), [sym_identifier] = ACTIONS(3140), [anon_sym_export] = ACTIONS(3140), [anon_sym_default] = ACTIONS(3140), @@ -143288,8 +142565,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3140), [sym_html_comment] = ACTIONS(5), }, - [975] = { - [sym_comment] = STATE(975), + [970] = { + [sym_comment] = STATE(970), [sym_identifier] = ACTIONS(3142), [anon_sym_export] = ACTIONS(3142), [anon_sym_default] = ACTIONS(3142), @@ -143371,8 +142648,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3142), [sym_html_comment] = ACTIONS(5), }, - [976] = { - [sym_comment] = STATE(976), + [971] = { + [sym_comment] = STATE(971), + [sym_identifier] = ACTIONS(3138), + [anon_sym_export] = ACTIONS(3138), + [anon_sym_default] = ACTIONS(3138), + [anon_sym_type] = ACTIONS(3138), + [anon_sym_namespace] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_typeof] = ACTIONS(3138), + [anon_sym_import] = ACTIONS(3138), + [anon_sym_with] = ACTIONS(3138), + [anon_sym_var] = ACTIONS(3138), + [anon_sym_let] = ACTIONS(3138), + [anon_sym_const] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3138), + [anon_sym_if] = ACTIONS(3138), + [anon_sym_switch] = ACTIONS(3138), + [anon_sym_for] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3138), + [anon_sym_await] = ACTIONS(3138), + [anon_sym_while] = ACTIONS(3138), + [anon_sym_do] = ACTIONS(3138), + [anon_sym_try] = ACTIONS(3138), + [anon_sym_break] = ACTIONS(3138), + [anon_sym_continue] = ACTIONS(3138), + [anon_sym_debugger] = ACTIONS(3138), + [anon_sym_return] = ACTIONS(3138), + [anon_sym_throw] = ACTIONS(3138), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_case] = ACTIONS(3138), + [anon_sym_yield] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_LTtemplate_GT] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3138), + [anon_sym_SQUOTE] = ACTIONS(3138), + [anon_sym_class] = ACTIONS(3138), + [anon_sym_async] = ACTIONS(3138), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_new] = ACTIONS(3138), + [anon_sym_using] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_TILDE] = ACTIONS(3138), + [anon_sym_void] = ACTIONS(3138), + [anon_sym_delete] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3138), + [sym_number] = ACTIONS(3138), + [sym_private_property_identifier] = ACTIONS(3138), + [sym_this] = ACTIONS(3138), + [sym_super] = ACTIONS(3138), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_AT] = ACTIONS(3138), + [anon_sym_static] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3138), + [anon_sym_set] = ACTIONS(3138), + [anon_sym_declare] = ACTIONS(3138), + [anon_sym_public] = ACTIONS(3138), + [anon_sym_private] = ACTIONS(3138), + [anon_sym_protected] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3138), + [anon_sym_module] = ACTIONS(3138), + [anon_sym_any] = ACTIONS(3138), + [anon_sym_number] = ACTIONS(3138), + [anon_sym_boolean] = ACTIONS(3138), + [anon_sym_string] = ACTIONS(3138), + [anon_sym_symbol] = ACTIONS(3138), + [anon_sym_object] = ACTIONS(3138), + [anon_sym_abstract] = ACTIONS(3138), + [anon_sym_interface] = ACTIONS(3138), + [anon_sym_enum] = ACTIONS(3138), + [sym_html_comment] = ACTIONS(5), + }, + [972] = { + [sym_comment] = STATE(972), + [ts_builtin_sym_end] = ACTIONS(3118), + [sym_identifier] = ACTIONS(3116), + [anon_sym_export] = ACTIONS(3116), + [anon_sym_type] = ACTIONS(3116), + [anon_sym_namespace] = ACTIONS(3116), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(3116), + [anon_sym_with] = ACTIONS(3116), + [anon_sym_var] = ACTIONS(3116), + [anon_sym_let] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(3116), + [anon_sym_else] = ACTIONS(3116), + [anon_sym_if] = ACTIONS(3116), + [anon_sym_switch] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3116), + [anon_sym_await] = ACTIONS(3116), + [anon_sym_while] = ACTIONS(3116), + [anon_sym_do] = ACTIONS(3116), + [anon_sym_try] = ACTIONS(3116), + [anon_sym_break] = ACTIONS(3116), + [anon_sym_continue] = ACTIONS(3116), + [anon_sym_debugger] = ACTIONS(3116), + [anon_sym_return] = ACTIONS(3116), + [anon_sym_throw] = ACTIONS(3116), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_yield] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_LTtemplate_GT] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3116), + [anon_sym_SQUOTE] = ACTIONS(3116), + [anon_sym_class] = ACTIONS(3116), + [anon_sym_async] = ACTIONS(3116), + [anon_sym_function] = ACTIONS(3116), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_using] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3116), + [anon_sym_SLASH] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(3116), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_void] = ACTIONS(3116), + [anon_sym_delete] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3116), + [sym_number] = ACTIONS(3116), + [sym_private_property_identifier] = ACTIONS(3116), + [sym_this] = ACTIONS(3116), + [sym_super] = ACTIONS(3116), + [sym_true] = ACTIONS(3116), + [sym_false] = ACTIONS(3116), + [sym_null] = ACTIONS(3116), + [sym_undefined] = ACTIONS(3116), + [anon_sym_AT] = ACTIONS(3116), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_readonly] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3116), + [anon_sym_set] = ACTIONS(3116), + [anon_sym_declare] = ACTIONS(3116), + [anon_sym_public] = ACTIONS(3116), + [anon_sym_private] = ACTIONS(3116), + [anon_sym_protected] = ACTIONS(3116), + [anon_sym_override] = ACTIONS(3116), + [anon_sym_module] = ACTIONS(3116), + [anon_sym_any] = ACTIONS(3116), + [anon_sym_number] = ACTIONS(3116), + [anon_sym_boolean] = ACTIONS(3116), + [anon_sym_string] = ACTIONS(3116), + [anon_sym_symbol] = ACTIONS(3116), + [anon_sym_object] = ACTIONS(3116), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_interface] = ACTIONS(3116), + [anon_sym_enum] = ACTIONS(3116), + [sym__automatic_semicolon] = ACTIONS(3118), + [sym_html_comment] = ACTIONS(5), + }, + [973] = { + [sym_comment] = STATE(973), [sym_identifier] = ACTIONS(3144), [anon_sym_export] = ACTIONS(3144), [anon_sym_default] = ACTIONS(3144), @@ -143454,8 +142897,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [977] = { - [sym_comment] = STATE(977), + [974] = { + [sym_comment] = STATE(974), [sym_identifier] = ACTIONS(3146), [anon_sym_export] = ACTIONS(3146), [anon_sym_default] = ACTIONS(3146), @@ -143537,8 +142980,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3146), [sym_html_comment] = ACTIONS(5), }, - [978] = { - [sym_comment] = STATE(978), + [975] = { + [sym_comment] = STATE(975), [sym_identifier] = ACTIONS(3148), [anon_sym_export] = ACTIONS(3148), [anon_sym_default] = ACTIONS(3148), @@ -143620,8 +143063,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3148), [sym_html_comment] = ACTIONS(5), }, - [979] = { - [sym_comment] = STATE(979), + [976] = { + [sym_comment] = STATE(976), [sym_identifier] = ACTIONS(3150), [anon_sym_export] = ACTIONS(3150), [anon_sym_default] = ACTIONS(3150), @@ -143703,8 +143146,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3150), [sym_html_comment] = ACTIONS(5), }, - [980] = { - [sym_comment] = STATE(980), + [977] = { + [sym_comment] = STATE(977), [sym_identifier] = ACTIONS(3152), [anon_sym_export] = ACTIONS(3152), [anon_sym_default] = ACTIONS(3152), @@ -143786,8 +143229,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3152), [sym_html_comment] = ACTIONS(5), }, - [981] = { - [sym_comment] = STATE(981), + [978] = { + [sym_comment] = STATE(978), + [sym_identifier] = ACTIONS(3138), + [anon_sym_export] = ACTIONS(3138), + [anon_sym_default] = ACTIONS(3138), + [anon_sym_type] = ACTIONS(3138), + [anon_sym_namespace] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_typeof] = ACTIONS(3138), + [anon_sym_import] = ACTIONS(3138), + [anon_sym_with] = ACTIONS(3138), + [anon_sym_var] = ACTIONS(3138), + [anon_sym_let] = ACTIONS(3138), + [anon_sym_const] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3138), + [anon_sym_if] = ACTIONS(3138), + [anon_sym_switch] = ACTIONS(3138), + [anon_sym_for] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3138), + [anon_sym_await] = ACTIONS(3138), + [anon_sym_while] = ACTIONS(3138), + [anon_sym_do] = ACTIONS(3138), + [anon_sym_try] = ACTIONS(3138), + [anon_sym_break] = ACTIONS(3138), + [anon_sym_continue] = ACTIONS(3138), + [anon_sym_debugger] = ACTIONS(3138), + [anon_sym_return] = ACTIONS(3138), + [anon_sym_throw] = ACTIONS(3138), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_case] = ACTIONS(3138), + [anon_sym_yield] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_LTtemplate_GT] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3138), + [anon_sym_SQUOTE] = ACTIONS(3138), + [anon_sym_class] = ACTIONS(3138), + [anon_sym_async] = ACTIONS(3138), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_new] = ACTIONS(3138), + [anon_sym_using] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_TILDE] = ACTIONS(3138), + [anon_sym_void] = ACTIONS(3138), + [anon_sym_delete] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3138), + [sym_number] = ACTIONS(3138), + [sym_private_property_identifier] = ACTIONS(3138), + [sym_this] = ACTIONS(3138), + [sym_super] = ACTIONS(3138), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_AT] = ACTIONS(3138), + [anon_sym_static] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3138), + [anon_sym_set] = ACTIONS(3138), + [anon_sym_declare] = ACTIONS(3138), + [anon_sym_public] = ACTIONS(3138), + [anon_sym_private] = ACTIONS(3138), + [anon_sym_protected] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3138), + [anon_sym_module] = ACTIONS(3138), + [anon_sym_any] = ACTIONS(3138), + [anon_sym_number] = ACTIONS(3138), + [anon_sym_boolean] = ACTIONS(3138), + [anon_sym_string] = ACTIONS(3138), + [anon_sym_symbol] = ACTIONS(3138), + [anon_sym_object] = ACTIONS(3138), + [anon_sym_abstract] = ACTIONS(3138), + [anon_sym_interface] = ACTIONS(3138), + [anon_sym_enum] = ACTIONS(3138), + [sym_html_comment] = ACTIONS(5), + }, + [979] = { + [sym_comment] = STATE(979), [sym_identifier] = ACTIONS(3154), [anon_sym_export] = ACTIONS(3154), [anon_sym_default] = ACTIONS(3154), @@ -143869,8 +143395,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, - [982] = { - [sym_comment] = STATE(982), + [980] = { + [sym_comment] = STATE(980), [sym_identifier] = ACTIONS(3156), [anon_sym_export] = ACTIONS(3156), [anon_sym_default] = ACTIONS(3156), @@ -143952,8 +143478,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3156), [sym_html_comment] = ACTIONS(5), }, - [983] = { - [sym_comment] = STATE(983), + [981] = { + [sym_comment] = STATE(981), [sym_identifier] = ACTIONS(3158), [anon_sym_export] = ACTIONS(3158), [anon_sym_default] = ACTIONS(3158), @@ -144035,8 +143561,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3158), [sym_html_comment] = ACTIONS(5), }, - [984] = { - [sym_comment] = STATE(984), + [982] = { + [sym_comment] = STATE(982), [sym_identifier] = ACTIONS(3160), [anon_sym_export] = ACTIONS(3160), [anon_sym_default] = ACTIONS(3160), @@ -144118,8 +143644,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3160), [sym_html_comment] = ACTIONS(5), }, - [985] = { - [sym_comment] = STATE(985), + [983] = { + [sym_comment] = STATE(983), [sym_identifier] = ACTIONS(3162), [anon_sym_export] = ACTIONS(3162), [anon_sym_default] = ACTIONS(3162), @@ -144201,174 +143727,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3162), [sym_html_comment] = ACTIONS(5), }, - [986] = { - [sym_comment] = STATE(986), - [ts_builtin_sym_end] = ACTIONS(3080), - [sym_identifier] = ACTIONS(3078), - [anon_sym_export] = ACTIONS(3078), - [anon_sym_type] = ACTIONS(3078), - [anon_sym_namespace] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3078), - [anon_sym_RBRACE] = ACTIONS(3078), - [anon_sym_typeof] = ACTIONS(3078), - [anon_sym_import] = ACTIONS(3078), - [anon_sym_with] = ACTIONS(3078), - [anon_sym_var] = ACTIONS(3078), - [anon_sym_let] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_else] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_switch] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_await] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_do] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_debugger] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3078), - [anon_sym_yield] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_LTtemplate_GT] = ACTIONS(3078), - [anon_sym_DQUOTE] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_async] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_SLASH] = ACTIONS(3078), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_TILDE] = ACTIONS(3078), - [anon_sym_void] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3078), - [anon_sym_PLUS_PLUS] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3078), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3078), - [sym_number] = ACTIONS(3078), - [sym_private_property_identifier] = ACTIONS(3078), - [sym_this] = ACTIONS(3078), - [sym_super] = ACTIONS(3078), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3078), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_declare] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_override] = ACTIONS(3078), - [anon_sym_module] = ACTIONS(3078), - [anon_sym_any] = ACTIONS(3078), - [anon_sym_number] = ACTIONS(3078), - [anon_sym_boolean] = ACTIONS(3078), - [anon_sym_string] = ACTIONS(3078), - [anon_sym_symbol] = ACTIONS(3078), - [anon_sym_object] = ACTIONS(3078), - [anon_sym_abstract] = ACTIONS(3078), - [anon_sym_interface] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [sym__automatic_semicolon] = ACTIONS(3080), - [sym_html_comment] = ACTIONS(5), - }, - [987] = { - [sym_comment] = STATE(987), - [sym_identifier] = ACTIONS(3164), - [anon_sym_export] = ACTIONS(3164), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_type] = ACTIONS(3164), - [anon_sym_namespace] = ACTIONS(3164), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_RBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3164), - [anon_sym_import] = ACTIONS(3164), - [anon_sym_with] = ACTIONS(3164), - [anon_sym_var] = ACTIONS(3164), - [anon_sym_let] = ACTIONS(3164), - [anon_sym_const] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_switch] = ACTIONS(3164), - [anon_sym_for] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3164), - [anon_sym_await] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_do] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_debugger] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3164), - [anon_sym_case] = ACTIONS(3164), - [anon_sym_yield] = ACTIONS(3164), - [anon_sym_LBRACK] = ACTIONS(3164), - [anon_sym_LTtemplate_GT] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(3164), - [anon_sym_SQUOTE] = ACTIONS(3164), - [anon_sym_class] = ACTIONS(3164), - [anon_sym_async] = ACTIONS(3164), - [anon_sym_function] = ACTIONS(3164), - [anon_sym_new] = ACTIONS(3164), - [anon_sym_using] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_LT] = ACTIONS(3164), - [anon_sym_TILDE] = ACTIONS(3164), - [anon_sym_void] = ACTIONS(3164), - [anon_sym_delete] = ACTIONS(3164), - [anon_sym_PLUS_PLUS] = ACTIONS(3164), - [anon_sym_DASH_DASH] = ACTIONS(3164), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3164), - [sym_number] = ACTIONS(3164), - [sym_private_property_identifier] = ACTIONS(3164), - [sym_this] = ACTIONS(3164), - [sym_super] = ACTIONS(3164), - [sym_true] = ACTIONS(3164), - [sym_false] = ACTIONS(3164), - [sym_null] = ACTIONS(3164), - [sym_undefined] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3164), - [anon_sym_static] = ACTIONS(3164), - [anon_sym_readonly] = ACTIONS(3164), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_declare] = ACTIONS(3164), - [anon_sym_public] = ACTIONS(3164), - [anon_sym_private] = ACTIONS(3164), - [anon_sym_protected] = ACTIONS(3164), - [anon_sym_override] = ACTIONS(3164), - [anon_sym_module] = ACTIONS(3164), - [anon_sym_any] = ACTIONS(3164), - [anon_sym_number] = ACTIONS(3164), - [anon_sym_boolean] = ACTIONS(3164), - [anon_sym_string] = ACTIONS(3164), - [anon_sym_symbol] = ACTIONS(3164), - [anon_sym_object] = ACTIONS(3164), - [anon_sym_abstract] = ACTIONS(3164), - [anon_sym_interface] = ACTIONS(3164), - [anon_sym_enum] = ACTIONS(3164), + [984] = { + [sym_comment] = STATE(984), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(3164), [sym_html_comment] = ACTIONS(5), }, - [988] = { - [sym_comment] = STATE(988), + [985] = { + [sym_comment] = STATE(985), [sym_identifier] = ACTIONS(3166), [anon_sym_export] = ACTIONS(3166), [anon_sym_default] = ACTIONS(3166), @@ -144450,8 +143893,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3166), [sym_html_comment] = ACTIONS(5), }, - [989] = { - [sym_comment] = STATE(989), + [986] = { + [sym_comment] = STATE(986), [sym_identifier] = ACTIONS(3168), [anon_sym_export] = ACTIONS(3168), [anon_sym_default] = ACTIONS(3168), @@ -144533,91 +143976,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, - [990] = { - [sym_comment] = STATE(990), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [991] = { - [sym_comment] = STATE(991), + [987] = { + [sym_comment] = STATE(987), [sym_identifier] = ACTIONS(3170), [anon_sym_export] = ACTIONS(3170), [anon_sym_default] = ACTIONS(3170), @@ -144699,8 +144059,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3170), [sym_html_comment] = ACTIONS(5), }, - [992] = { - [sym_comment] = STATE(992), + [988] = { + [sym_comment] = STATE(988), [sym_identifier] = ACTIONS(3172), [anon_sym_export] = ACTIONS(3172), [anon_sym_default] = ACTIONS(3172), @@ -144782,8 +144142,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3172), [sym_html_comment] = ACTIONS(5), }, - [993] = { - [sym_comment] = STATE(993), + [989] = { + [sym_comment] = STATE(989), + [sym_identifier] = ACTIONS(3172), + [anon_sym_export] = ACTIONS(3172), + [anon_sym_default] = ACTIONS(3172), + [anon_sym_type] = ACTIONS(3172), + [anon_sym_namespace] = ACTIONS(3172), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3172), + [anon_sym_typeof] = ACTIONS(3172), + [anon_sym_import] = ACTIONS(3172), + [anon_sym_with] = ACTIONS(3172), + [anon_sym_var] = ACTIONS(3172), + [anon_sym_let] = ACTIONS(3172), + [anon_sym_const] = ACTIONS(3172), + [anon_sym_BANG] = ACTIONS(3172), + [anon_sym_else] = ACTIONS(3172), + [anon_sym_if] = ACTIONS(3172), + [anon_sym_switch] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_await] = ACTIONS(3172), + [anon_sym_while] = ACTIONS(3172), + [anon_sym_do] = ACTIONS(3172), + [anon_sym_try] = ACTIONS(3172), + [anon_sym_break] = ACTIONS(3172), + [anon_sym_continue] = ACTIONS(3172), + [anon_sym_debugger] = ACTIONS(3172), + [anon_sym_return] = ACTIONS(3172), + [anon_sym_throw] = ACTIONS(3172), + [anon_sym_SEMI] = ACTIONS(3172), + [anon_sym_case] = ACTIONS(3172), + [anon_sym_yield] = ACTIONS(3172), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_LTtemplate_GT] = ACTIONS(3172), + [anon_sym_DQUOTE] = ACTIONS(3172), + [anon_sym_SQUOTE] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3172), + [anon_sym_async] = ACTIONS(3172), + [anon_sym_function] = ACTIONS(3172), + [anon_sym_new] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3172), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_void] = ACTIONS(3172), + [anon_sym_delete] = ACTIONS(3172), + [anon_sym_PLUS_PLUS] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3172), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3172), + [sym_number] = ACTIONS(3172), + [sym_private_property_identifier] = ACTIONS(3172), + [sym_this] = ACTIONS(3172), + [sym_super] = ACTIONS(3172), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [sym_null] = ACTIONS(3172), + [sym_undefined] = ACTIONS(3172), + [anon_sym_AT] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3172), + [anon_sym_readonly] = ACTIONS(3172), + [anon_sym_get] = ACTIONS(3172), + [anon_sym_set] = ACTIONS(3172), + [anon_sym_declare] = ACTIONS(3172), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_override] = ACTIONS(3172), + [anon_sym_module] = ACTIONS(3172), + [anon_sym_any] = ACTIONS(3172), + [anon_sym_number] = ACTIONS(3172), + [anon_sym_boolean] = ACTIONS(3172), + [anon_sym_string] = ACTIONS(3172), + [anon_sym_symbol] = ACTIONS(3172), + [anon_sym_object] = ACTIONS(3172), + [anon_sym_abstract] = ACTIONS(3172), + [anon_sym_interface] = ACTIONS(3172), + [anon_sym_enum] = ACTIONS(3172), + [sym_html_comment] = ACTIONS(5), + }, + [990] = { + [sym_comment] = STATE(990), [sym_identifier] = ACTIONS(3174), [anon_sym_export] = ACTIONS(3174), [anon_sym_default] = ACTIONS(3174), @@ -144865,91 +144308,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3174), [sym_html_comment] = ACTIONS(5), }, - [994] = { - [sym_comment] = STATE(994), - [ts_builtin_sym_end] = ACTIONS(2253), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_namespace] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_typeof] = ACTIONS(2251), - [anon_sym_import] = ACTIONS(2251), - [anon_sym_with] = ACTIONS(2251), - [anon_sym_var] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_else] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_debugger] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_throw] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_LTtemplate_GT] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_using] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_void] = ACTIONS(2251), - [anon_sym_delete] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2251), - [sym_number] = ACTIONS(2251), - [sym_private_property_identifier] = ACTIONS(2251), - [sym_this] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_undefined] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_readonly] = ACTIONS(2251), - [anon_sym_get] = ACTIONS(2251), - [anon_sym_set] = ACTIONS(2251), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_public] = ACTIONS(2251), - [anon_sym_private] = ACTIONS(2251), - [anon_sym_protected] = ACTIONS(2251), - [anon_sym_override] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_any] = ACTIONS(2251), - [anon_sym_number] = ACTIONS(2251), - [anon_sym_boolean] = ACTIONS(2251), - [anon_sym_string] = ACTIONS(2251), - [anon_sym_symbol] = ACTIONS(2251), - [anon_sym_object] = ACTIONS(2251), - [anon_sym_abstract] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [sym__automatic_semicolon] = ACTIONS(2253), - [sym_html_comment] = ACTIONS(5), - }, - [995] = { - [sym_comment] = STATE(995), + [991] = { + [sym_comment] = STATE(991), [sym_identifier] = ACTIONS(3176), [anon_sym_export] = ACTIONS(3176), [anon_sym_default] = ACTIONS(3176), @@ -145031,8 +144391,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3176), [sym_html_comment] = ACTIONS(5), }, - [996] = { - [sym_comment] = STATE(996), + [992] = { + [sym_comment] = STATE(992), [sym_identifier] = ACTIONS(3178), [anon_sym_export] = ACTIONS(3178), [anon_sym_default] = ACTIONS(3178), @@ -145114,8 +144474,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3178), [sym_html_comment] = ACTIONS(5), }, - [997] = { - [sym_comment] = STATE(997), + [993] = { + [sym_comment] = STATE(993), [sym_identifier] = ACTIONS(3180), [anon_sym_export] = ACTIONS(3180), [anon_sym_default] = ACTIONS(3180), @@ -145197,8 +144557,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3180), [sym_html_comment] = ACTIONS(5), }, - [998] = { - [sym_comment] = STATE(998), + [994] = { + [sym_comment] = STATE(994), [sym_identifier] = ACTIONS(3182), [anon_sym_export] = ACTIONS(3182), [anon_sym_default] = ACTIONS(3182), @@ -145280,174 +144640,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3182), [sym_html_comment] = ACTIONS(5), }, - [999] = { - [sym_comment] = STATE(999), - [ts_builtin_sym_end] = ACTIONS(2197), - [sym_identifier] = ACTIONS(2195), - [anon_sym_export] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_namespace] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_typeof] = ACTIONS(2195), - [anon_sym_import] = ACTIONS(2195), - [anon_sym_with] = ACTIONS(2195), - [anon_sym_var] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_else] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_switch] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [anon_sym_do] = ACTIONS(2195), - [anon_sym_try] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_debugger] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_throw] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_yield] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_LTtemplate_GT] = ACTIONS(2195), - [anon_sym_DOT] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_class] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_new] = ACTIONS(2195), - [anon_sym_using] = ACTIONS(2195), - [anon_sym_PLUS] = ACTIONS(2195), - [anon_sym_DASH] = ACTIONS(2195), - [anon_sym_SLASH] = ACTIONS(2195), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_TILDE] = ACTIONS(2195), - [anon_sym_void] = ACTIONS(2195), - [anon_sym_delete] = ACTIONS(2195), - [anon_sym_PLUS_PLUS] = ACTIONS(2195), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2195), - [sym_number] = ACTIONS(2195), - [sym_private_property_identifier] = ACTIONS(2195), - [sym_this] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_true] = ACTIONS(2195), - [sym_false] = ACTIONS(2195), - [sym_null] = ACTIONS(2195), - [sym_undefined] = ACTIONS(2195), - [anon_sym_AT] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_readonly] = ACTIONS(2195), - [anon_sym_get] = ACTIONS(2195), - [anon_sym_set] = ACTIONS(2195), - [anon_sym_declare] = ACTIONS(2195), - [anon_sym_public] = ACTIONS(2195), - [anon_sym_private] = ACTIONS(2195), - [anon_sym_protected] = ACTIONS(2195), - [anon_sym_override] = ACTIONS(2195), - [anon_sym_module] = ACTIONS(2195), - [anon_sym_any] = ACTIONS(2195), - [anon_sym_number] = ACTIONS(2195), - [anon_sym_boolean] = ACTIONS(2195), - [anon_sym_string] = ACTIONS(2195), - [anon_sym_symbol] = ACTIONS(2195), - [anon_sym_object] = ACTIONS(2195), - [anon_sym_abstract] = ACTIONS(2195), - [anon_sym_interface] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [sym_html_comment] = ACTIONS(5), - }, - [1000] = { - [sym_comment] = STATE(1000), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [995] = { + [sym_comment] = STATE(995), + [ts_builtin_sym_end] = ACTIONS(2287), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2137), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_typeof] = ACTIONS(2137), + [anon_sym_import] = ACTIONS(2137), + [anon_sym_with] = ACTIONS(2137), + [anon_sym_var] = ACTIONS(2137), + [anon_sym_let] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_else] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_switch] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_await] = ACTIONS(2137), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_do] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_debugger] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_throw] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_yield] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_LTtemplate_GT] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(2137), + [anon_sym_SQUOTE] = ACTIONS(2137), + [anon_sym_class] = ACTIONS(2137), + [anon_sym_async] = ACTIONS(2137), + [anon_sym_function] = ACTIONS(2137), + [anon_sym_new] = ACTIONS(2137), + [anon_sym_using] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_SLASH] = ACTIONS(2137), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_void] = ACTIONS(2137), + [anon_sym_delete] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2137), + [sym_number] = ACTIONS(2137), + [sym_private_property_identifier] = ACTIONS(2137), + [sym_this] = ACTIONS(2137), + [sym_super] = ACTIONS(2137), + [sym_true] = ACTIONS(2137), + [sym_false] = ACTIONS(2137), + [sym_null] = ACTIONS(2137), + [sym_undefined] = ACTIONS(2137), + [anon_sym_AT] = ACTIONS(2137), + [anon_sym_static] = ACTIONS(2137), + [anon_sym_readonly] = ACTIONS(2137), + [anon_sym_get] = ACTIONS(2137), + [anon_sym_set] = ACTIONS(2137), + [anon_sym_declare] = ACTIONS(2137), + [anon_sym_public] = ACTIONS(2137), + [anon_sym_private] = ACTIONS(2137), + [anon_sym_protected] = ACTIONS(2137), + [anon_sym_override] = ACTIONS(2137), + [anon_sym_module] = ACTIONS(2137), + [anon_sym_any] = ACTIONS(2137), + [anon_sym_number] = ACTIONS(2137), + [anon_sym_boolean] = ACTIONS(2137), + [anon_sym_string] = ACTIONS(2137), + [anon_sym_symbol] = ACTIONS(2137), + [anon_sym_object] = ACTIONS(2137), + [anon_sym_abstract] = ACTIONS(2137), + [anon_sym_interface] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [sym__automatic_semicolon] = ACTIONS(2289), [sym_html_comment] = ACTIONS(5), }, - [1001] = { - [sym_comment] = STATE(1001), + [996] = { + [sym_comment] = STATE(996), [sym_identifier] = ACTIONS(3184), [anon_sym_export] = ACTIONS(3184), [anon_sym_default] = ACTIONS(3184), @@ -145529,257 +144806,340 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3184), [sym_html_comment] = ACTIONS(5), }, - [1002] = { - [sym_comment] = STATE(1002), - [sym_identifier] = ACTIONS(3186), - [anon_sym_export] = ACTIONS(3186), - [anon_sym_default] = ACTIONS(3186), - [anon_sym_type] = ACTIONS(3186), - [anon_sym_namespace] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_typeof] = ACTIONS(3186), - [anon_sym_import] = ACTIONS(3186), - [anon_sym_with] = ACTIONS(3186), - [anon_sym_var] = ACTIONS(3186), - [anon_sym_let] = ACTIONS(3186), - [anon_sym_const] = ACTIONS(3186), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(3186), - [anon_sym_await] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_try] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [anon_sym_debugger] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_throw] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_case] = ACTIONS(3186), - [anon_sym_yield] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_LTtemplate_GT] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3186), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_async] = ACTIONS(3186), - [anon_sym_function] = ACTIONS(3186), - [anon_sym_new] = ACTIONS(3186), - [anon_sym_using] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_TILDE] = ACTIONS(3186), - [anon_sym_void] = ACTIONS(3186), - [anon_sym_delete] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3186), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3186), - [sym_number] = ACTIONS(3186), - [sym_private_property_identifier] = ACTIONS(3186), - [sym_this] = ACTIONS(3186), - [sym_super] = ACTIONS(3186), - [sym_true] = ACTIONS(3186), - [sym_false] = ACTIONS(3186), - [sym_null] = ACTIONS(3186), - [sym_undefined] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_readonly] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_declare] = ACTIONS(3186), - [anon_sym_public] = ACTIONS(3186), - [anon_sym_private] = ACTIONS(3186), - [anon_sym_protected] = ACTIONS(3186), - [anon_sym_override] = ACTIONS(3186), - [anon_sym_module] = ACTIONS(3186), - [anon_sym_any] = ACTIONS(3186), - [anon_sym_number] = ACTIONS(3186), - [anon_sym_boolean] = ACTIONS(3186), - [anon_sym_string] = ACTIONS(3186), - [anon_sym_symbol] = ACTIONS(3186), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_abstract] = ACTIONS(3186), - [anon_sym_interface] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), + [997] = { + [sym_comment] = STATE(997), + [ts_builtin_sym_end] = ACTIONS(2313), + [sym_identifier] = ACTIONS(2129), + [anon_sym_export] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_namespace] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2129), + [anon_sym_RBRACE] = ACTIONS(2129), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_import] = ACTIONS(2129), + [anon_sym_with] = ACTIONS(2129), + [anon_sym_var] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_else] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_debugger] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_throw] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2129), + [anon_sym_yield] = ACTIONS(2129), + [anon_sym_LBRACK] = ACTIONS(2129), + [anon_sym_LTtemplate_GT] = ACTIONS(2129), + [anon_sym_DQUOTE] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_class] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_function] = ACTIONS(2129), + [anon_sym_new] = ACTIONS(2129), + [anon_sym_using] = ACTIONS(2129), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_SLASH] = ACTIONS(2129), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_void] = ACTIONS(2129), + [anon_sym_delete] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2129), + [sym_number] = ACTIONS(2129), + [sym_private_property_identifier] = ACTIONS(2129), + [sym_this] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_true] = ACTIONS(2129), + [sym_false] = ACTIONS(2129), + [sym_null] = ACTIONS(2129), + [sym_undefined] = ACTIONS(2129), + [anon_sym_AT] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_readonly] = ACTIONS(2129), + [anon_sym_get] = ACTIONS(2129), + [anon_sym_set] = ACTIONS(2129), + [anon_sym_declare] = ACTIONS(2129), + [anon_sym_public] = ACTIONS(2129), + [anon_sym_private] = ACTIONS(2129), + [anon_sym_protected] = ACTIONS(2129), + [anon_sym_override] = ACTIONS(2129), + [anon_sym_module] = ACTIONS(2129), + [anon_sym_any] = ACTIONS(2129), + [anon_sym_number] = ACTIONS(2129), + [anon_sym_boolean] = ACTIONS(2129), + [anon_sym_string] = ACTIONS(2129), + [anon_sym_symbol] = ACTIONS(2129), + [anon_sym_object] = ACTIONS(2129), + [anon_sym_abstract] = ACTIONS(2129), + [anon_sym_interface] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [sym__automatic_semicolon] = ACTIONS(2315), [sym_html_comment] = ACTIONS(5), }, - [1003] = { - [sym_comment] = STATE(1003), - [ts_builtin_sym_end] = ACTIONS(2083), - [sym_identifier] = ACTIONS(2081), - [anon_sym_export] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_namespace] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_typeof] = ACTIONS(2081), - [anon_sym_import] = ACTIONS(2081), - [anon_sym_with] = ACTIONS(2081), - [anon_sym_var] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_else] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_switch] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_do] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_debugger] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_yield] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_LTtemplate_GT] = ACTIONS(2081), - [anon_sym_DOT] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2081), - [anon_sym_class] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_function] = ACTIONS(2081), - [anon_sym_new] = ACTIONS(2081), - [anon_sym_using] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_SLASH] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2081), - [anon_sym_void] = ACTIONS(2081), - [anon_sym_delete] = ACTIONS(2081), - [anon_sym_PLUS_PLUS] = ACTIONS(2081), - [anon_sym_DASH_DASH] = ACTIONS(2081), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2081), - [sym_number] = ACTIONS(2081), - [sym_private_property_identifier] = ACTIONS(2081), - [sym_this] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_true] = ACTIONS(2081), - [sym_false] = ACTIONS(2081), - [sym_null] = ACTIONS(2081), - [sym_undefined] = ACTIONS(2081), - [anon_sym_AT] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_readonly] = ACTIONS(2081), - [anon_sym_get] = ACTIONS(2081), - [anon_sym_set] = ACTIONS(2081), - [anon_sym_declare] = ACTIONS(2081), - [anon_sym_public] = ACTIONS(2081), - [anon_sym_private] = ACTIONS(2081), - [anon_sym_protected] = ACTIONS(2081), - [anon_sym_override] = ACTIONS(2081), - [anon_sym_module] = ACTIONS(2081), - [anon_sym_any] = ACTIONS(2081), - [anon_sym_number] = ACTIONS(2081), - [anon_sym_boolean] = ACTIONS(2081), - [anon_sym_string] = ACTIONS(2081), - [anon_sym_symbol] = ACTIONS(2081), - [anon_sym_object] = ACTIONS(2081), - [anon_sym_abstract] = ACTIONS(2081), - [anon_sym_interface] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), + [998] = { + [sym_comment] = STATE(998), + [ts_builtin_sym_end] = ACTIONS(3186), + [sym_identifier] = ACTIONS(3094), + [anon_sym_export] = ACTIONS(3094), + [anon_sym_type] = ACTIONS(3094), + [anon_sym_namespace] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_typeof] = ACTIONS(3094), + [anon_sym_import] = ACTIONS(3094), + [anon_sym_with] = ACTIONS(3094), + [anon_sym_var] = ACTIONS(3094), + [anon_sym_let] = ACTIONS(3094), + [anon_sym_const] = ACTIONS(3094), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_switch] = ACTIONS(3094), + [anon_sym_for] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3094), + [anon_sym_await] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_do] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_debugger] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_finally] = ACTIONS(3094), + [anon_sym_yield] = ACTIONS(3094), + [anon_sym_LBRACK] = ACTIONS(3094), + [anon_sym_LTtemplate_GT] = ACTIONS(3094), + [anon_sym_DQUOTE] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3094), + [anon_sym_class] = ACTIONS(3094), + [anon_sym_async] = ACTIONS(3094), + [anon_sym_function] = ACTIONS(3094), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_using] = ACTIONS(3094), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_TILDE] = ACTIONS(3094), + [anon_sym_void] = ACTIONS(3094), + [anon_sym_delete] = ACTIONS(3094), + [anon_sym_PLUS_PLUS] = ACTIONS(3094), + [anon_sym_DASH_DASH] = ACTIONS(3094), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3094), + [sym_number] = ACTIONS(3094), + [sym_private_property_identifier] = ACTIONS(3094), + [sym_this] = ACTIONS(3094), + [sym_super] = ACTIONS(3094), + [sym_true] = ACTIONS(3094), + [sym_false] = ACTIONS(3094), + [sym_null] = ACTIONS(3094), + [sym_undefined] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(3094), + [anon_sym_static] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_declare] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_module] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3094), + [anon_sym_number] = ACTIONS(3094), + [anon_sym_boolean] = ACTIONS(3094), + [anon_sym_string] = ACTIONS(3094), + [anon_sym_symbol] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_interface] = ACTIONS(3094), + [anon_sym_enum] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, - [1004] = { - [sym_comment] = STATE(1004), - [ts_builtin_sym_end] = ACTIONS(2147), - [sym_identifier] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_typeof] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_var] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_else] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LTtemplate_GT] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_delete] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), + [999] = { + [sym_comment] = STATE(999), + [sym_identifier] = ACTIONS(3188), + [anon_sym_export] = ACTIONS(3188), + [anon_sym_default] = ACTIONS(3188), + [anon_sym_type] = ACTIONS(3188), + [anon_sym_namespace] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_typeof] = ACTIONS(3188), + [anon_sym_import] = ACTIONS(3188), + [anon_sym_with] = ACTIONS(3188), + [anon_sym_var] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_await] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_break] = ACTIONS(3188), + [anon_sym_continue] = ACTIONS(3188), + [anon_sym_debugger] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_throw] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_case] = ACTIONS(3188), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LTtemplate_GT] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_SQUOTE] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_async] = ACTIONS(3188), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_void] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3188), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2145), - [sym_number] = ACTIONS(2145), - [sym_private_property_identifier] = ACTIONS(2145), - [sym_this] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2145), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_declare] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_protected] = ACTIONS(2145), - [anon_sym_override] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2145), - [anon_sym_any] = ACTIONS(2145), - [anon_sym_number] = ACTIONS(2145), - [anon_sym_boolean] = ACTIONS(2145), - [anon_sym_string] = ACTIONS(2145), - [anon_sym_symbol] = ACTIONS(2145), - [anon_sym_object] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [sym__automatic_semicolon] = ACTIONS(2147), + [anon_sym_BQUOTE] = ACTIONS(3188), + [sym_number] = ACTIONS(3188), + [sym_private_property_identifier] = ACTIONS(3188), + [sym_this] = ACTIONS(3188), + [sym_super] = ACTIONS(3188), + [sym_true] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [sym_null] = ACTIONS(3188), + [sym_undefined] = ACTIONS(3188), + [anon_sym_AT] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_readonly] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3188), + [anon_sym_set] = ACTIONS(3188), + [anon_sym_declare] = ACTIONS(3188), + [anon_sym_public] = ACTIONS(3188), + [anon_sym_private] = ACTIONS(3188), + [anon_sym_protected] = ACTIONS(3188), + [anon_sym_override] = ACTIONS(3188), + [anon_sym_module] = ACTIONS(3188), + [anon_sym_any] = ACTIONS(3188), + [anon_sym_number] = ACTIONS(3188), + [anon_sym_boolean] = ACTIONS(3188), + [anon_sym_string] = ACTIONS(3188), + [anon_sym_symbol] = ACTIONS(3188), + [anon_sym_object] = ACTIONS(3188), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_interface] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), [sym_html_comment] = ACTIONS(5), }, - [1005] = { - [sym_comment] = STATE(1005), + [1000] = { + [sym_comment] = STATE(1000), + [sym_identifier] = ACTIONS(3082), + [anon_sym_export] = ACTIONS(3082), + [anon_sym_default] = ACTIONS(3082), + [anon_sym_type] = ACTIONS(3082), + [anon_sym_namespace] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3082), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(3082), + [anon_sym_with] = ACTIONS(3082), + [anon_sym_var] = ACTIONS(3082), + [anon_sym_let] = ACTIONS(3082), + [anon_sym_const] = ACTIONS(3082), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_switch] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3082), + [anon_sym_await] = ACTIONS(3082), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_do] = ACTIONS(3082), + [anon_sym_try] = ACTIONS(3082), + [anon_sym_break] = ACTIONS(3082), + [anon_sym_continue] = ACTIONS(3082), + [anon_sym_debugger] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3082), + [anon_sym_throw] = ACTIONS(3082), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_case] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_LTtemplate_GT] = ACTIONS(3082), + [anon_sym_DQUOTE] = ACTIONS(3082), + [anon_sym_SQUOTE] = ACTIONS(3082), + [anon_sym_class] = ACTIONS(3082), + [anon_sym_async] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3082), + [anon_sym_using] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_SLASH] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_void] = ACTIONS(3082), + [anon_sym_delete] = ACTIONS(3082), + [anon_sym_PLUS_PLUS] = ACTIONS(3082), + [anon_sym_DASH_DASH] = ACTIONS(3082), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3082), + [sym_number] = ACTIONS(3082), + [sym_private_property_identifier] = ACTIONS(3082), + [sym_this] = ACTIONS(3082), + [sym_super] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_null] = ACTIONS(3082), + [sym_undefined] = ACTIONS(3082), + [anon_sym_AT] = ACTIONS(3082), + [anon_sym_static] = ACTIONS(3082), + [anon_sym_readonly] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3082), + [anon_sym_set] = ACTIONS(3082), + [anon_sym_declare] = ACTIONS(3082), + [anon_sym_public] = ACTIONS(3082), + [anon_sym_private] = ACTIONS(3082), + [anon_sym_protected] = ACTIONS(3082), + [anon_sym_override] = ACTIONS(3082), + [anon_sym_module] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3082), + [anon_sym_interface] = ACTIONS(3082), + [anon_sym_enum] = ACTIONS(3082), + [sym__automatic_semicolon] = ACTIONS(3084), + [sym_html_comment] = ACTIONS(5), + }, + [1001] = { + [sym_comment] = STATE(1001), [sym_identifier] = ACTIONS(3188), [anon_sym_export] = ACTIONS(3188), [anon_sym_default] = ACTIONS(3188), @@ -145861,91 +145221,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3188), [sym_html_comment] = ACTIONS(5), }, - [1006] = { - [sym_comment] = STATE(1006), - [sym_identifier] = ACTIONS(3190), - [anon_sym_export] = ACTIONS(3190), - [anon_sym_default] = ACTIONS(3190), - [anon_sym_type] = ACTIONS(3190), - [anon_sym_namespace] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3190), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_typeof] = ACTIONS(3190), - [anon_sym_import] = ACTIONS(3190), - [anon_sym_with] = ACTIONS(3190), - [anon_sym_var] = ACTIONS(3190), - [anon_sym_let] = ACTIONS(3190), - [anon_sym_const] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3190), - [anon_sym_if] = ACTIONS(3190), - [anon_sym_switch] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_await] = ACTIONS(3190), - [anon_sym_while] = ACTIONS(3190), - [anon_sym_do] = ACTIONS(3190), - [anon_sym_try] = ACTIONS(3190), - [anon_sym_break] = ACTIONS(3190), - [anon_sym_continue] = ACTIONS(3190), - [anon_sym_debugger] = ACTIONS(3190), - [anon_sym_return] = ACTIONS(3190), - [anon_sym_throw] = ACTIONS(3190), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_case] = ACTIONS(3190), - [anon_sym_yield] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_LTtemplate_GT] = ACTIONS(3190), - [anon_sym_DQUOTE] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3190), - [anon_sym_class] = ACTIONS(3190), - [anon_sym_async] = ACTIONS(3190), - [anon_sym_function] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_using] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3190), - [anon_sym_SLASH] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_void] = ACTIONS(3190), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3190), - [sym_number] = ACTIONS(3190), - [sym_private_property_identifier] = ACTIONS(3190), - [sym_this] = ACTIONS(3190), - [sym_super] = ACTIONS(3190), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_static] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3190), - [anon_sym_set] = ACTIONS(3190), - [anon_sym_declare] = ACTIONS(3190), - [anon_sym_public] = ACTIONS(3190), - [anon_sym_private] = ACTIONS(3190), - [anon_sym_protected] = ACTIONS(3190), - [anon_sym_override] = ACTIONS(3190), - [anon_sym_module] = ACTIONS(3190), - [anon_sym_any] = ACTIONS(3190), - [anon_sym_number] = ACTIONS(3190), - [anon_sym_boolean] = ACTIONS(3190), - [anon_sym_string] = ACTIONS(3190), - [anon_sym_symbol] = ACTIONS(3190), - [anon_sym_object] = ACTIONS(3190), - [anon_sym_abstract] = ACTIONS(3190), - [anon_sym_interface] = ACTIONS(3190), - [anon_sym_enum] = ACTIONS(3190), + [1002] = { + [sym_comment] = STATE(1002), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_finally] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [sym__automatic_semicolon] = ACTIONS(3190), [sym_html_comment] = ACTIONS(5), }, - [1007] = { - [sym_comment] = STATE(1007), + [1003] = { + [sym_comment] = STATE(1003), [sym_identifier] = ACTIONS(3192), [anon_sym_export] = ACTIONS(3192), [anon_sym_default] = ACTIONS(3192), @@ -146027,8 +145387,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [1008] = { - [sym_comment] = STATE(1008), + [1004] = { + [sym_comment] = STATE(1004), + [sym_identifier] = ACTIONS(3116), + [anon_sym_export] = ACTIONS(3116), + [anon_sym_default] = ACTIONS(3116), + [anon_sym_type] = ACTIONS(3116), + [anon_sym_namespace] = ACTIONS(3116), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(3116), + [anon_sym_with] = ACTIONS(3116), + [anon_sym_var] = ACTIONS(3116), + [anon_sym_let] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(3116), + [anon_sym_if] = ACTIONS(3116), + [anon_sym_switch] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3116), + [anon_sym_await] = ACTIONS(3116), + [anon_sym_while] = ACTIONS(3116), + [anon_sym_do] = ACTIONS(3116), + [anon_sym_try] = ACTIONS(3116), + [anon_sym_break] = ACTIONS(3116), + [anon_sym_continue] = ACTIONS(3116), + [anon_sym_debugger] = ACTIONS(3116), + [anon_sym_return] = ACTIONS(3116), + [anon_sym_throw] = ACTIONS(3116), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_case] = ACTIONS(3116), + [anon_sym_yield] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_LTtemplate_GT] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3116), + [anon_sym_SQUOTE] = ACTIONS(3116), + [anon_sym_class] = ACTIONS(3116), + [anon_sym_async] = ACTIONS(3116), + [anon_sym_function] = ACTIONS(3116), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_using] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3116), + [anon_sym_SLASH] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(3116), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_void] = ACTIONS(3116), + [anon_sym_delete] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3116), + [sym_number] = ACTIONS(3116), + [sym_private_property_identifier] = ACTIONS(3116), + [sym_this] = ACTIONS(3116), + [sym_super] = ACTIONS(3116), + [sym_true] = ACTIONS(3116), + [sym_false] = ACTIONS(3116), + [sym_null] = ACTIONS(3116), + [sym_undefined] = ACTIONS(3116), + [anon_sym_AT] = ACTIONS(3116), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_readonly] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3116), + [anon_sym_set] = ACTIONS(3116), + [anon_sym_declare] = ACTIONS(3116), + [anon_sym_public] = ACTIONS(3116), + [anon_sym_private] = ACTIONS(3116), + [anon_sym_protected] = ACTIONS(3116), + [anon_sym_override] = ACTIONS(3116), + [anon_sym_module] = ACTIONS(3116), + [anon_sym_any] = ACTIONS(3116), + [anon_sym_number] = ACTIONS(3116), + [anon_sym_boolean] = ACTIONS(3116), + [anon_sym_string] = ACTIONS(3116), + [anon_sym_symbol] = ACTIONS(3116), + [anon_sym_object] = ACTIONS(3116), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_interface] = ACTIONS(3116), + [anon_sym_enum] = ACTIONS(3116), + [sym__automatic_semicolon] = ACTIONS(3118), + [sym_html_comment] = ACTIONS(5), + }, + [1005] = { + [sym_comment] = STATE(1005), + [sym_identifier] = ACTIONS(3188), + [anon_sym_export] = ACTIONS(3188), + [anon_sym_default] = ACTIONS(3188), + [anon_sym_type] = ACTIONS(3188), + [anon_sym_namespace] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_typeof] = ACTIONS(3188), + [anon_sym_import] = ACTIONS(3188), + [anon_sym_with] = ACTIONS(3188), + [anon_sym_var] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_await] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_break] = ACTIONS(3188), + [anon_sym_continue] = ACTIONS(3188), + [anon_sym_debugger] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_throw] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_case] = ACTIONS(3188), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LTtemplate_GT] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_SQUOTE] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_async] = ACTIONS(3188), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_void] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3188), + [sym_number] = ACTIONS(3188), + [sym_private_property_identifier] = ACTIONS(3188), + [sym_this] = ACTIONS(3188), + [sym_super] = ACTIONS(3188), + [sym_true] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [sym_null] = ACTIONS(3188), + [sym_undefined] = ACTIONS(3188), + [anon_sym_AT] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_readonly] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3188), + [anon_sym_set] = ACTIONS(3188), + [anon_sym_declare] = ACTIONS(3188), + [anon_sym_public] = ACTIONS(3188), + [anon_sym_private] = ACTIONS(3188), + [anon_sym_protected] = ACTIONS(3188), + [anon_sym_override] = ACTIONS(3188), + [anon_sym_module] = ACTIONS(3188), + [anon_sym_any] = ACTIONS(3188), + [anon_sym_number] = ACTIONS(3188), + [anon_sym_boolean] = ACTIONS(3188), + [anon_sym_string] = ACTIONS(3188), + [anon_sym_symbol] = ACTIONS(3188), + [anon_sym_object] = ACTIONS(3188), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_interface] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), + [sym_html_comment] = ACTIONS(5), + }, + [1006] = { + [sym_comment] = STATE(1006), [sym_identifier] = ACTIONS(3194), [anon_sym_export] = ACTIONS(3194), [anon_sym_default] = ACTIONS(3194), @@ -146110,8 +145636,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3194), [sym_html_comment] = ACTIONS(5), }, - [1009] = { - [sym_comment] = STATE(1009), + [1007] = { + [sym_comment] = STATE(1007), + [ts_builtin_sym_end] = ACTIONS(2271), + [sym_identifier] = ACTIONS(2103), + [anon_sym_export] = ACTIONS(2103), + [anon_sym_type] = ACTIONS(2103), + [anon_sym_namespace] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(2103), + [anon_sym_import] = ACTIONS(2103), + [anon_sym_with] = ACTIONS(2103), + [anon_sym_var] = ACTIONS(2103), + [anon_sym_let] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_BANG] = ACTIONS(2103), + [anon_sym_else] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2103), + [anon_sym_switch] = ACTIONS(2103), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_while] = ACTIONS(2103), + [anon_sym_do] = ACTIONS(2103), + [anon_sym_try] = ACTIONS(2103), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2103), + [anon_sym_debugger] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2103), + [anon_sym_throw] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_yield] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_LTtemplate_GT] = ACTIONS(2103), + [anon_sym_DQUOTE] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_class] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(2103), + [anon_sym_function] = ACTIONS(2103), + [anon_sym_new] = ACTIONS(2103), + [anon_sym_using] = ACTIONS(2103), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_SLASH] = ACTIONS(2103), + [anon_sym_LT] = ACTIONS(2103), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_void] = ACTIONS(2103), + [anon_sym_delete] = ACTIONS(2103), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2103), + [sym_number] = ACTIONS(2103), + [sym_private_property_identifier] = ACTIONS(2103), + [sym_this] = ACTIONS(2103), + [sym_super] = ACTIONS(2103), + [sym_true] = ACTIONS(2103), + [sym_false] = ACTIONS(2103), + [sym_null] = ACTIONS(2103), + [sym_undefined] = ACTIONS(2103), + [anon_sym_AT] = ACTIONS(2103), + [anon_sym_static] = ACTIONS(2103), + [anon_sym_readonly] = ACTIONS(2103), + [anon_sym_get] = ACTIONS(2103), + [anon_sym_set] = ACTIONS(2103), + [anon_sym_declare] = ACTIONS(2103), + [anon_sym_public] = ACTIONS(2103), + [anon_sym_private] = ACTIONS(2103), + [anon_sym_protected] = ACTIONS(2103), + [anon_sym_override] = ACTIONS(2103), + [anon_sym_module] = ACTIONS(2103), + [anon_sym_any] = ACTIONS(2103), + [anon_sym_number] = ACTIONS(2103), + [anon_sym_boolean] = ACTIONS(2103), + [anon_sym_string] = ACTIONS(2103), + [anon_sym_symbol] = ACTIONS(2103), + [anon_sym_object] = ACTIONS(2103), + [anon_sym_abstract] = ACTIONS(2103), + [anon_sym_interface] = ACTIONS(2103), + [anon_sym_enum] = ACTIONS(2103), + [sym__automatic_semicolon] = ACTIONS(2273), + [sym_html_comment] = ACTIONS(5), + }, + [1008] = { + [sym_comment] = STATE(1008), [sym_identifier] = ACTIONS(3196), [anon_sym_export] = ACTIONS(3196), [anon_sym_default] = ACTIONS(3196), @@ -146193,8 +145802,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3196), [sym_html_comment] = ACTIONS(5), }, - [1010] = { - [sym_comment] = STATE(1010), + [1009] = { + [sym_comment] = STATE(1009), [sym_identifier] = ACTIONS(3198), [anon_sym_export] = ACTIONS(3198), [anon_sym_default] = ACTIONS(3198), @@ -146276,8 +145885,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1011] = { - [sym_comment] = STATE(1011), + [1010] = { + [sym_comment] = STATE(1010), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [sym_html_comment] = ACTIONS(5), + }, + [1011] = { + [sym_comment] = STATE(1011), [sym_identifier] = ACTIONS(3198), [anon_sym_export] = ACTIONS(3198), [anon_sym_default] = ACTIONS(3198), @@ -146361,89 +146053,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1012] = { [sym_comment] = STATE(1012), - [sym_identifier] = ACTIONS(3200), - [anon_sym_export] = ACTIONS(3200), - [anon_sym_default] = ACTIONS(3200), - [anon_sym_type] = ACTIONS(3200), - [anon_sym_namespace] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3200), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_typeof] = ACTIONS(3200), - [anon_sym_import] = ACTIONS(3200), - [anon_sym_with] = ACTIONS(3200), - [anon_sym_var] = ACTIONS(3200), - [anon_sym_let] = ACTIONS(3200), - [anon_sym_const] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_switch] = ACTIONS(3200), - [anon_sym_for] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_await] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_do] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_debugger] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_case] = ACTIONS(3200), - [anon_sym_yield] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_LTtemplate_GT] = ACTIONS(3200), - [anon_sym_DQUOTE] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3200), - [anon_sym_class] = ACTIONS(3200), - [anon_sym_async] = ACTIONS(3200), - [anon_sym_function] = ACTIONS(3200), - [anon_sym_new] = ACTIONS(3200), - [anon_sym_using] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3200), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_void] = ACTIONS(3200), - [anon_sym_delete] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3200), - [sym_number] = ACTIONS(3200), - [sym_private_property_identifier] = ACTIONS(3200), - [sym_this] = ACTIONS(3200), - [sym_super] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_null] = ACTIONS(3200), - [sym_undefined] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_static] = ACTIONS(3200), - [anon_sym_readonly] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_declare] = ACTIONS(3200), - [anon_sym_public] = ACTIONS(3200), - [anon_sym_private] = ACTIONS(3200), - [anon_sym_protected] = ACTIONS(3200), - [anon_sym_override] = ACTIONS(3200), - [anon_sym_module] = ACTIONS(3200), - [anon_sym_any] = ACTIONS(3200), - [anon_sym_number] = ACTIONS(3200), - [anon_sym_boolean] = ACTIONS(3200), - [anon_sym_string] = ACTIONS(3200), - [anon_sym_symbol] = ACTIONS(3200), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_abstract] = ACTIONS(3200), - [anon_sym_interface] = ACTIONS(3200), - [anon_sym_enum] = ACTIONS(3200), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, [1013] = { [sym_comment] = STATE(1013), + [ts_builtin_sym_end] = ACTIONS(3200), + [sym_identifier] = ACTIONS(3100), + [anon_sym_export] = ACTIONS(3100), + [anon_sym_type] = ACTIONS(3100), + [anon_sym_namespace] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3100), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_typeof] = ACTIONS(3100), + [anon_sym_import] = ACTIONS(3100), + [anon_sym_with] = ACTIONS(3100), + [anon_sym_var] = ACTIONS(3100), + [anon_sym_let] = ACTIONS(3100), + [anon_sym_const] = ACTIONS(3100), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_switch] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_await] = ACTIONS(3100), + [anon_sym_while] = ACTIONS(3100), + [anon_sym_do] = ACTIONS(3100), + [anon_sym_try] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_debugger] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_throw] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3100), + [anon_sym_finally] = ACTIONS(3100), + [anon_sym_yield] = ACTIONS(3100), + [anon_sym_LBRACK] = ACTIONS(3100), + [anon_sym_LTtemplate_GT] = ACTIONS(3100), + [anon_sym_DQUOTE] = ACTIONS(3100), + [anon_sym_SQUOTE] = ACTIONS(3100), + [anon_sym_class] = ACTIONS(3100), + [anon_sym_async] = ACTIONS(3100), + [anon_sym_function] = ACTIONS(3100), + [anon_sym_new] = ACTIONS(3100), + [anon_sym_using] = ACTIONS(3100), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_TILDE] = ACTIONS(3100), + [anon_sym_void] = ACTIONS(3100), + [anon_sym_delete] = ACTIONS(3100), + [anon_sym_PLUS_PLUS] = ACTIONS(3100), + [anon_sym_DASH_DASH] = ACTIONS(3100), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3100), + [sym_number] = ACTIONS(3100), + [sym_private_property_identifier] = ACTIONS(3100), + [sym_this] = ACTIONS(3100), + [sym_super] = ACTIONS(3100), + [sym_true] = ACTIONS(3100), + [sym_false] = ACTIONS(3100), + [sym_null] = ACTIONS(3100), + [sym_undefined] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(3100), + [anon_sym_static] = ACTIONS(3100), + [anon_sym_readonly] = ACTIONS(3100), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_declare] = ACTIONS(3100), + [anon_sym_public] = ACTIONS(3100), + [anon_sym_private] = ACTIONS(3100), + [anon_sym_protected] = ACTIONS(3100), + [anon_sym_override] = ACTIONS(3100), + [anon_sym_module] = ACTIONS(3100), + [anon_sym_any] = ACTIONS(3100), + [anon_sym_number] = ACTIONS(3100), + [anon_sym_boolean] = ACTIONS(3100), + [anon_sym_string] = ACTIONS(3100), + [anon_sym_symbol] = ACTIONS(3100), + [anon_sym_object] = ACTIONS(3100), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_interface] = ACTIONS(3100), + [anon_sym_enum] = ACTIONS(3100), + [sym_html_comment] = ACTIONS(5), + }, + [1014] = { + [sym_comment] = STATE(1014), [sym_identifier] = ACTIONS(3202), [anon_sym_export] = ACTIONS(3202), [anon_sym_default] = ACTIONS(3202), @@ -146525,8 +146300,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3202), [sym_html_comment] = ACTIONS(5), }, - [1014] = { - [sym_comment] = STATE(1014), + [1015] = { + [sym_comment] = STATE(1015), [sym_identifier] = ACTIONS(3204), [anon_sym_export] = ACTIONS(3204), [anon_sym_default] = ACTIONS(3204), @@ -146608,174 +146383,506 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3204), [sym_html_comment] = ACTIONS(5), }, - [1015] = { - [sym_comment] = STATE(1015), - [sym_identifier] = ACTIONS(3206), - [anon_sym_export] = ACTIONS(3206), - [anon_sym_default] = ACTIONS(3206), - [anon_sym_type] = ACTIONS(3206), - [anon_sym_namespace] = ACTIONS(3206), - [anon_sym_LBRACE] = ACTIONS(3206), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_typeof] = ACTIONS(3206), - [anon_sym_import] = ACTIONS(3206), - [anon_sym_with] = ACTIONS(3206), - [anon_sym_var] = ACTIONS(3206), - [anon_sym_let] = ACTIONS(3206), - [anon_sym_const] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3206), - [anon_sym_if] = ACTIONS(3206), - [anon_sym_switch] = ACTIONS(3206), - [anon_sym_for] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3206), - [anon_sym_await] = ACTIONS(3206), - [anon_sym_while] = ACTIONS(3206), - [anon_sym_do] = ACTIONS(3206), - [anon_sym_try] = ACTIONS(3206), - [anon_sym_break] = ACTIONS(3206), - [anon_sym_continue] = ACTIONS(3206), - [anon_sym_debugger] = ACTIONS(3206), - [anon_sym_return] = ACTIONS(3206), - [anon_sym_throw] = ACTIONS(3206), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_case] = ACTIONS(3206), - [anon_sym_yield] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_LTtemplate_GT] = ACTIONS(3206), - [anon_sym_DQUOTE] = ACTIONS(3206), - [anon_sym_SQUOTE] = ACTIONS(3206), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_async] = ACTIONS(3206), - [anon_sym_function] = ACTIONS(3206), - [anon_sym_new] = ACTIONS(3206), - [anon_sym_using] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_SLASH] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3206), - [anon_sym_TILDE] = ACTIONS(3206), - [anon_sym_void] = ACTIONS(3206), - [anon_sym_delete] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3206), - [sym_number] = ACTIONS(3206), - [sym_private_property_identifier] = ACTIONS(3206), - [sym_this] = ACTIONS(3206), - [sym_super] = ACTIONS(3206), - [sym_true] = ACTIONS(3206), - [sym_false] = ACTIONS(3206), - [sym_null] = ACTIONS(3206), - [sym_undefined] = ACTIONS(3206), - [anon_sym_AT] = ACTIONS(3206), - [anon_sym_static] = ACTIONS(3206), - [anon_sym_readonly] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3206), - [anon_sym_set] = ACTIONS(3206), - [anon_sym_declare] = ACTIONS(3206), - [anon_sym_public] = ACTIONS(3206), - [anon_sym_private] = ACTIONS(3206), - [anon_sym_protected] = ACTIONS(3206), - [anon_sym_override] = ACTIONS(3206), - [anon_sym_module] = ACTIONS(3206), - [anon_sym_any] = ACTIONS(3206), - [anon_sym_number] = ACTIONS(3206), - [anon_sym_boolean] = ACTIONS(3206), - [anon_sym_string] = ACTIONS(3206), - [anon_sym_symbol] = ACTIONS(3206), - [anon_sym_object] = ACTIONS(3206), - [anon_sym_abstract] = ACTIONS(3206), - [anon_sym_interface] = ACTIONS(3206), - [anon_sym_enum] = ACTIONS(3206), - [sym_html_comment] = ACTIONS(5), - }, [1016] = { + [sym_else_clause] = STATE(1310), [sym_comment] = STATE(1016), - [sym_identifier] = ACTIONS(3208), - [anon_sym_export] = ACTIONS(3208), - [anon_sym_default] = ACTIONS(3208), - [anon_sym_type] = ACTIONS(3208), - [anon_sym_namespace] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3208), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_typeof] = ACTIONS(3208), - [anon_sym_import] = ACTIONS(3208), - [anon_sym_with] = ACTIONS(3208), - [anon_sym_var] = ACTIONS(3208), - [anon_sym_let] = ACTIONS(3208), - [anon_sym_const] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3208), + [ts_builtin_sym_end] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3070), + [anon_sym_export] = ACTIONS(3070), + [anon_sym_type] = ACTIONS(3070), + [anon_sym_namespace] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3070), + [anon_sym_RBRACE] = ACTIONS(3070), + [anon_sym_typeof] = ACTIONS(3070), + [anon_sym_import] = ACTIONS(3070), + [anon_sym_with] = ACTIONS(3070), + [anon_sym_var] = ACTIONS(3070), + [anon_sym_let] = ACTIONS(3070), + [anon_sym_const] = ACTIONS(3070), + [anon_sym_BANG] = ACTIONS(3070), [anon_sym_else] = ACTIONS(3208), - [anon_sym_if] = ACTIONS(3208), - [anon_sym_switch] = ACTIONS(3208), - [anon_sym_for] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_await] = ACTIONS(3208), - [anon_sym_while] = ACTIONS(3208), - [anon_sym_do] = ACTIONS(3208), - [anon_sym_try] = ACTIONS(3208), - [anon_sym_break] = ACTIONS(3208), - [anon_sym_continue] = ACTIONS(3208), - [anon_sym_debugger] = ACTIONS(3208), - [anon_sym_return] = ACTIONS(3208), - [anon_sym_throw] = ACTIONS(3208), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_case] = ACTIONS(3208), - [anon_sym_yield] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_LTtemplate_GT] = ACTIONS(3208), - [anon_sym_DQUOTE] = ACTIONS(3208), - [anon_sym_SQUOTE] = ACTIONS(3208), - [anon_sym_class] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3208), - [anon_sym_function] = ACTIONS(3208), - [anon_sym_new] = ACTIONS(3208), - [anon_sym_using] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_SLASH] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_void] = ACTIONS(3208), - [anon_sym_delete] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3208), - [sym_number] = ACTIONS(3208), - [sym_private_property_identifier] = ACTIONS(3208), - [sym_this] = ACTIONS(3208), - [sym_super] = ACTIONS(3208), - [sym_true] = ACTIONS(3208), - [sym_false] = ACTIONS(3208), - [sym_null] = ACTIONS(3208), - [sym_undefined] = ACTIONS(3208), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_static] = ACTIONS(3208), - [anon_sym_readonly] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3208), - [anon_sym_set] = ACTIONS(3208), - [anon_sym_declare] = ACTIONS(3208), - [anon_sym_public] = ACTIONS(3208), - [anon_sym_private] = ACTIONS(3208), - [anon_sym_protected] = ACTIONS(3208), - [anon_sym_override] = ACTIONS(3208), - [anon_sym_module] = ACTIONS(3208), - [anon_sym_any] = ACTIONS(3208), - [anon_sym_number] = ACTIONS(3208), - [anon_sym_boolean] = ACTIONS(3208), - [anon_sym_string] = ACTIONS(3208), - [anon_sym_symbol] = ACTIONS(3208), - [anon_sym_object] = ACTIONS(3208), - [anon_sym_abstract] = ACTIONS(3208), - [anon_sym_interface] = ACTIONS(3208), - [anon_sym_enum] = ACTIONS(3208), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_switch] = ACTIONS(3070), + [anon_sym_for] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3070), + [anon_sym_await] = ACTIONS(3070), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_do] = ACTIONS(3070), + [anon_sym_try] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_debugger] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3070), + [anon_sym_SEMI] = ACTIONS(3070), + [anon_sym_yield] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3070), + [anon_sym_LTtemplate_GT] = ACTIONS(3070), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_class] = ACTIONS(3070), + [anon_sym_async] = ACTIONS(3070), + [anon_sym_function] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3070), + [anon_sym_using] = ACTIONS(3070), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_SLASH] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3070), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_void] = ACTIONS(3070), + [anon_sym_delete] = ACTIONS(3070), + [anon_sym_PLUS_PLUS] = ACTIONS(3070), + [anon_sym_DASH_DASH] = ACTIONS(3070), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3070), + [sym_number] = ACTIONS(3070), + [sym_private_property_identifier] = ACTIONS(3070), + [sym_this] = ACTIONS(3070), + [sym_super] = ACTIONS(3070), + [sym_true] = ACTIONS(3070), + [sym_false] = ACTIONS(3070), + [sym_null] = ACTIONS(3070), + [sym_undefined] = ACTIONS(3070), + [anon_sym_AT] = ACTIONS(3070), + [anon_sym_static] = ACTIONS(3070), + [anon_sym_readonly] = ACTIONS(3070), + [anon_sym_get] = ACTIONS(3070), + [anon_sym_set] = ACTIONS(3070), + [anon_sym_declare] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3070), + [anon_sym_private] = ACTIONS(3070), + [anon_sym_protected] = ACTIONS(3070), + [anon_sym_override] = ACTIONS(3070), + [anon_sym_module] = ACTIONS(3070), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3070), + [anon_sym_interface] = ACTIONS(3070), + [anon_sym_enum] = ACTIONS(3070), [sym_html_comment] = ACTIONS(5), }, [1017] = { [sym_comment] = STATE(1017), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [sym_html_comment] = ACTIONS(5), + }, + [1018] = { + [sym_comment] = STATE(1018), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [sym_html_comment] = ACTIONS(5), + }, + [1019] = { + [sym_comment] = STATE(1019), + [ts_builtin_sym_end] = ACTIONS(2147), + [sym_identifier] = ACTIONS(2145), + [anon_sym_export] = ACTIONS(2145), + [anon_sym_type] = ACTIONS(2145), + [anon_sym_namespace] = ACTIONS(2145), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_typeof] = ACTIONS(2145), + [anon_sym_import] = ACTIONS(2145), + [anon_sym_with] = ACTIONS(2145), + [anon_sym_var] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(2145), + [anon_sym_else] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2145), + [anon_sym_switch] = ACTIONS(2145), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_do] = ACTIONS(2145), + [anon_sym_try] = ACTIONS(2145), + [anon_sym_break] = ACTIONS(2145), + [anon_sym_continue] = ACTIONS(2145), + [anon_sym_debugger] = ACTIONS(2145), + [anon_sym_return] = ACTIONS(2145), + [anon_sym_throw] = ACTIONS(2145), + [anon_sym_SEMI] = ACTIONS(2145), + [anon_sym_yield] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_LTtemplate_GT] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2145), + [anon_sym_class] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(2145), + [anon_sym_using] = ACTIONS(2145), + [anon_sym_PLUS] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_SLASH] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_TILDE] = ACTIONS(2145), + [anon_sym_void] = ACTIONS(2145), + [anon_sym_delete] = ACTIONS(2145), + [anon_sym_PLUS_PLUS] = ACTIONS(2145), + [anon_sym_DASH_DASH] = ACTIONS(2145), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2145), + [sym_number] = ACTIONS(2145), + [sym_private_property_identifier] = ACTIONS(2145), + [sym_this] = ACTIONS(2145), + [sym_super] = ACTIONS(2145), + [sym_true] = ACTIONS(2145), + [sym_false] = ACTIONS(2145), + [sym_null] = ACTIONS(2145), + [sym_undefined] = ACTIONS(2145), + [anon_sym_AT] = ACTIONS(2145), + [anon_sym_static] = ACTIONS(2145), + [anon_sym_readonly] = ACTIONS(2145), + [anon_sym_get] = ACTIONS(2145), + [anon_sym_set] = ACTIONS(2145), + [anon_sym_declare] = ACTIONS(2145), + [anon_sym_public] = ACTIONS(2145), + [anon_sym_private] = ACTIONS(2145), + [anon_sym_protected] = ACTIONS(2145), + [anon_sym_override] = ACTIONS(2145), + [anon_sym_module] = ACTIONS(2145), + [anon_sym_any] = ACTIONS(2145), + [anon_sym_number] = ACTIONS(2145), + [anon_sym_boolean] = ACTIONS(2145), + [anon_sym_string] = ACTIONS(2145), + [anon_sym_symbol] = ACTIONS(2145), + [anon_sym_object] = ACTIONS(2145), + [anon_sym_abstract] = ACTIONS(2145), + [anon_sym_interface] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2145), + [sym__automatic_semicolon] = ACTIONS(2147), + [sym_html_comment] = ACTIONS(5), + }, + [1020] = { + [sym_comment] = STATE(1020), + [sym_identifier] = ACTIONS(2255), + [anon_sym_export] = ACTIONS(2255), + [anon_sym_default] = ACTIONS(2255), + [anon_sym_type] = ACTIONS(2255), + [anon_sym_namespace] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_typeof] = ACTIONS(2255), + [anon_sym_import] = ACTIONS(2255), + [anon_sym_with] = ACTIONS(2255), + [anon_sym_var] = ACTIONS(2255), + [anon_sym_let] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_switch] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2255), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_try] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_debugger] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_case] = ACTIONS(2255), + [anon_sym_yield] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_LTtemplate_GT] = ACTIONS(2255), + [anon_sym_DQUOTE] = ACTIONS(2255), + [anon_sym_SQUOTE] = ACTIONS(2255), + [anon_sym_class] = ACTIONS(2255), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2255), + [anon_sym_new] = ACTIONS(2255), + [anon_sym_using] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_void] = ACTIONS(2255), + [anon_sym_delete] = ACTIONS(2255), + [anon_sym_PLUS_PLUS] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2255), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2255), + [sym_number] = ACTIONS(2255), + [sym_private_property_identifier] = ACTIONS(2255), + [sym_this] = ACTIONS(2255), + [sym_super] = ACTIONS(2255), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), + [sym_null] = ACTIONS(2255), + [sym_undefined] = ACTIONS(2255), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_readonly] = ACTIONS(2255), + [anon_sym_get] = ACTIONS(2255), + [anon_sym_set] = ACTIONS(2255), + [anon_sym_declare] = ACTIONS(2255), + [anon_sym_public] = ACTIONS(2255), + [anon_sym_private] = ACTIONS(2255), + [anon_sym_protected] = ACTIONS(2255), + [anon_sym_override] = ACTIONS(2255), + [anon_sym_module] = ACTIONS(2255), + [anon_sym_any] = ACTIONS(2255), + [anon_sym_number] = ACTIONS(2255), + [anon_sym_boolean] = ACTIONS(2255), + [anon_sym_string] = ACTIONS(2255), + [anon_sym_symbol] = ACTIONS(2255), + [anon_sym_object] = ACTIONS(2255), + [anon_sym_abstract] = ACTIONS(2255), + [anon_sym_interface] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [sym__automatic_semicolon] = ACTIONS(2333), + [sym_html_comment] = ACTIONS(5), + }, + [1021] = { + [sym_comment] = STATE(1021), + [ts_builtin_sym_end] = ACTIONS(2239), + [sym_identifier] = ACTIONS(2237), + [anon_sym_export] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_namespace] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_with] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_else] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_debugger] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_throw] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_LTtemplate_GT] = ACTIONS(2237), + [anon_sym_DOT] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2237), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2237), + [sym_number] = ACTIONS(2237), + [sym_private_property_identifier] = ACTIONS(2237), + [sym_this] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_true] = ACTIONS(2237), + [sym_false] = ACTIONS(2237), + [sym_null] = ACTIONS(2237), + [sym_undefined] = ACTIONS(2237), + [anon_sym_AT] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_readonly] = ACTIONS(2237), + [anon_sym_get] = ACTIONS(2237), + [anon_sym_set] = ACTIONS(2237), + [anon_sym_declare] = ACTIONS(2237), + [anon_sym_public] = ACTIONS(2237), + [anon_sym_private] = ACTIONS(2237), + [anon_sym_protected] = ACTIONS(2237), + [anon_sym_override] = ACTIONS(2237), + [anon_sym_module] = ACTIONS(2237), + [anon_sym_any] = ACTIONS(2237), + [anon_sym_number] = ACTIONS(2237), + [anon_sym_boolean] = ACTIONS(2237), + [anon_sym_string] = ACTIONS(2237), + [anon_sym_symbol] = ACTIONS(2237), + [anon_sym_object] = ACTIONS(2237), + [anon_sym_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [sym_html_comment] = ACTIONS(5), + }, + [1022] = { + [sym_comment] = STATE(1022), [sym_identifier] = ACTIONS(3210), [anon_sym_export] = ACTIONS(3210), [anon_sym_default] = ACTIONS(3210), @@ -146857,91 +146964,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3210), [sym_html_comment] = ACTIONS(5), }, - [1018] = { - [sym_comment] = STATE(1018), - [sym_identifier] = ACTIONS(2203), - [anon_sym_export] = ACTIONS(2203), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_namespace] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_typeof] = ACTIONS(2203), - [anon_sym_import] = ACTIONS(2203), - [anon_sym_with] = ACTIONS(2203), - [anon_sym_var] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_else] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_switch] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [anon_sym_do] = ACTIONS(2203), - [anon_sym_try] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_debugger] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_throw] = ACTIONS(2203), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_case] = ACTIONS(2203), - [anon_sym_yield] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_LTtemplate_GT] = ACTIONS(2203), - [anon_sym_DQUOTE] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_class] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_function] = ACTIONS(2203), - [anon_sym_new] = ACTIONS(2203), - [anon_sym_using] = ACTIONS(2203), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_SLASH] = ACTIONS(2203), - [anon_sym_LT] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(2203), - [anon_sym_delete] = ACTIONS(2203), - [anon_sym_PLUS_PLUS] = ACTIONS(2203), - [anon_sym_DASH_DASH] = ACTIONS(2203), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2203), - [sym_number] = ACTIONS(2203), - [sym_private_property_identifier] = ACTIONS(2203), - [sym_this] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_true] = ACTIONS(2203), - [sym_false] = ACTIONS(2203), - [sym_null] = ACTIONS(2203), - [sym_undefined] = ACTIONS(2203), - [anon_sym_AT] = ACTIONS(2203), - [anon_sym_static] = ACTIONS(2203), - [anon_sym_readonly] = ACTIONS(2203), - [anon_sym_get] = ACTIONS(2203), - [anon_sym_set] = ACTIONS(2203), - [anon_sym_declare] = ACTIONS(2203), - [anon_sym_public] = ACTIONS(2203), - [anon_sym_private] = ACTIONS(2203), - [anon_sym_protected] = ACTIONS(2203), - [anon_sym_override] = ACTIONS(2203), - [anon_sym_module] = ACTIONS(2203), - [anon_sym_any] = ACTIONS(2203), - [anon_sym_number] = ACTIONS(2203), - [anon_sym_boolean] = ACTIONS(2203), - [anon_sym_string] = ACTIONS(2203), - [anon_sym_symbol] = ACTIONS(2203), - [anon_sym_object] = ACTIONS(2203), - [anon_sym_abstract] = ACTIONS(2203), - [anon_sym_interface] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), + [1023] = { + [sym_comment] = STATE(1023), + [sym_identifier] = ACTIONS(2083), + [anon_sym_export] = ACTIONS(2083), + [anon_sym_default] = ACTIONS(2083), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_namespace] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_typeof] = ACTIONS(2083), + [anon_sym_import] = ACTIONS(2083), + [anon_sym_with] = ACTIONS(2083), + [anon_sym_var] = ACTIONS(2083), + [anon_sym_let] = ACTIONS(2083), + [anon_sym_const] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_if] = ACTIONS(2083), + [anon_sym_switch] = ACTIONS(2083), + [anon_sym_for] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_await] = ACTIONS(2083), + [anon_sym_while] = ACTIONS(2083), + [anon_sym_do] = ACTIONS(2083), + [anon_sym_try] = ACTIONS(2083), + [anon_sym_break] = ACTIONS(2083), + [anon_sym_continue] = ACTIONS(2083), + [anon_sym_debugger] = ACTIONS(2083), + [anon_sym_return] = ACTIONS(2083), + [anon_sym_throw] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_case] = ACTIONS(2083), + [anon_sym_yield] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LTtemplate_GT] = ACTIONS(2083), + [anon_sym_DQUOTE] = ACTIONS(2083), + [anon_sym_SQUOTE] = ACTIONS(2083), + [anon_sym_class] = ACTIONS(2083), + [anon_sym_async] = ACTIONS(2083), + [anon_sym_function] = ACTIONS(2083), + [anon_sym_new] = ACTIONS(2083), + [anon_sym_using] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(2083), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_void] = ACTIONS(2083), + [anon_sym_delete] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2083), + [sym_number] = ACTIONS(2083), + [sym_private_property_identifier] = ACTIONS(2083), + [sym_this] = ACTIONS(2083), + [sym_super] = ACTIONS(2083), + [sym_true] = ACTIONS(2083), + [sym_false] = ACTIONS(2083), + [sym_null] = ACTIONS(2083), + [sym_undefined] = ACTIONS(2083), + [anon_sym_AT] = ACTIONS(2083), + [anon_sym_static] = ACTIONS(2083), + [anon_sym_readonly] = ACTIONS(2083), + [anon_sym_get] = ACTIONS(2083), + [anon_sym_set] = ACTIONS(2083), + [anon_sym_declare] = ACTIONS(2083), + [anon_sym_public] = ACTIONS(2083), + [anon_sym_private] = ACTIONS(2083), + [anon_sym_protected] = ACTIONS(2083), + [anon_sym_override] = ACTIONS(2083), + [anon_sym_module] = ACTIONS(2083), + [anon_sym_any] = ACTIONS(2083), + [anon_sym_number] = ACTIONS(2083), + [anon_sym_boolean] = ACTIONS(2083), + [anon_sym_string] = ACTIONS(2083), + [anon_sym_symbol] = ACTIONS(2083), + [anon_sym_object] = ACTIONS(2083), + [anon_sym_abstract] = ACTIONS(2083), + [anon_sym_interface] = ACTIONS(2083), + [anon_sym_enum] = ACTIONS(2083), + [sym__automatic_semicolon] = ACTIONS(2311), [sym_html_comment] = ACTIONS(5), }, - [1019] = { - [sym_comment] = STATE(1019), + [1024] = { + [sym_comment] = STATE(1024), + [ts_builtin_sym_end] = ACTIONS(2235), + [sym_identifier] = ACTIONS(2233), + [anon_sym_export] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_namespace] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_typeof] = ACTIONS(2233), + [anon_sym_import] = ACTIONS(2233), + [anon_sym_with] = ACTIONS(2233), + [anon_sym_var] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2233), + [anon_sym_else] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_switch] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2233), + [anon_sym_await] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_do] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_debugger] = ACTIONS(2233), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_throw] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_yield] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LTtemplate_GT] = ACTIONS(2233), + [anon_sym_DOT] = ACTIONS(2233), + [anon_sym_DQUOTE] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_class] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_function] = ACTIONS(2233), + [anon_sym_new] = ACTIONS(2233), + [anon_sym_using] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_SLASH] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_TILDE] = ACTIONS(2233), + [anon_sym_void] = ACTIONS(2233), + [anon_sym_delete] = ACTIONS(2233), + [anon_sym_PLUS_PLUS] = ACTIONS(2233), + [anon_sym_DASH_DASH] = ACTIONS(2233), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2233), + [sym_number] = ACTIONS(2233), + [sym_private_property_identifier] = ACTIONS(2233), + [sym_this] = ACTIONS(2233), + [sym_super] = ACTIONS(2233), + [sym_true] = ACTIONS(2233), + [sym_false] = ACTIONS(2233), + [sym_null] = ACTIONS(2233), + [sym_undefined] = ACTIONS(2233), + [anon_sym_AT] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_readonly] = ACTIONS(2233), + [anon_sym_get] = ACTIONS(2233), + [anon_sym_set] = ACTIONS(2233), + [anon_sym_declare] = ACTIONS(2233), + [anon_sym_public] = ACTIONS(2233), + [anon_sym_private] = ACTIONS(2233), + [anon_sym_protected] = ACTIONS(2233), + [anon_sym_override] = ACTIONS(2233), + [anon_sym_module] = ACTIONS(2233), + [anon_sym_any] = ACTIONS(2233), + [anon_sym_number] = ACTIONS(2233), + [anon_sym_boolean] = ACTIONS(2233), + [anon_sym_string] = ACTIONS(2233), + [anon_sym_symbol] = ACTIONS(2233), + [anon_sym_object] = ACTIONS(2233), + [anon_sym_abstract] = ACTIONS(2233), + [anon_sym_interface] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), + [sym_html_comment] = ACTIONS(5), + }, + [1025] = { + [sym_comment] = STATE(1025), [sym_identifier] = ACTIONS(3212), [anon_sym_export] = ACTIONS(3212), [anon_sym_default] = ACTIONS(3212), @@ -147023,8 +147213,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3212), [sym_html_comment] = ACTIONS(5), }, - [1020] = { - [sym_comment] = STATE(1020), + [1026] = { + [sym_comment] = STATE(1026), [sym_identifier] = ACTIONS(3214), [anon_sym_export] = ACTIONS(3214), [anon_sym_default] = ACTIONS(3214), @@ -147106,8 +147296,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3214), [sym_html_comment] = ACTIONS(5), }, - [1021] = { - [sym_comment] = STATE(1021), + [1027] = { + [sym_comment] = STATE(1027), [sym_identifier] = ACTIONS(3216), [anon_sym_export] = ACTIONS(3216), [anon_sym_default] = ACTIONS(3216), @@ -147189,8 +147379,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3216), [sym_html_comment] = ACTIONS(5), }, - [1022] = { - [sym_comment] = STATE(1022), + [1028] = { + [sym_comment] = STATE(1028), + [ts_builtin_sym_end] = ACTIONS(2127), + [sym_identifier] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_typeof] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2125), + [anon_sym_with] = ACTIONS(2125), + [anon_sym_var] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_else] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_debugger] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LTtemplate_GT] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_void] = ACTIONS(2125), + [anon_sym_delete] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2125), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(2125), + [sym_this] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [sym_undefined] = ACTIONS(2125), + [anon_sym_AT] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_readonly] = ACTIONS(2125), + [anon_sym_get] = ACTIONS(2125), + [anon_sym_set] = ACTIONS(2125), + [anon_sym_declare] = ACTIONS(2125), + [anon_sym_public] = ACTIONS(2125), + [anon_sym_private] = ACTIONS(2125), + [anon_sym_protected] = ACTIONS(2125), + [anon_sym_override] = ACTIONS(2125), + [anon_sym_module] = ACTIONS(2125), + [anon_sym_any] = ACTIONS(2125), + [anon_sym_number] = ACTIONS(2125), + [anon_sym_boolean] = ACTIONS(2125), + [anon_sym_string] = ACTIONS(2125), + [anon_sym_symbol] = ACTIONS(2125), + [anon_sym_object] = ACTIONS(2125), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [sym__automatic_semicolon] = ACTIONS(2127), + [sym_html_comment] = ACTIONS(5), + }, + [1029] = { + [sym_comment] = STATE(1029), [sym_identifier] = ACTIONS(3218), [anon_sym_export] = ACTIONS(3218), [anon_sym_default] = ACTIONS(3218), @@ -147272,257 +147545,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3218), [sym_html_comment] = ACTIONS(5), }, - [1023] = { - [sym_comment] = STATE(1023), - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_default] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_with] = ACTIONS(3216), - [anon_sym_var] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_debugger] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_throw] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_case] = ACTIONS(3216), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_LTtemplate_GT] = ACTIONS(3216), - [anon_sym_DQUOTE] = ACTIONS(3216), - [anon_sym_SQUOTE] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3216), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3216), - [sym_number] = ACTIONS(3216), - [sym_private_property_identifier] = ACTIONS(3216), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_override] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_interface] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), - [sym_html_comment] = ACTIONS(5), - }, - [1024] = { - [sym_comment] = STATE(1024), - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_default] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_with] = ACTIONS(3216), - [anon_sym_var] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_debugger] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_throw] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_case] = ACTIONS(3216), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_LTtemplate_GT] = ACTIONS(3216), - [anon_sym_DQUOTE] = ACTIONS(3216), - [anon_sym_SQUOTE] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3216), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3216), - [sym_number] = ACTIONS(3216), - [sym_private_property_identifier] = ACTIONS(3216), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_override] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_interface] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), - [sym_html_comment] = ACTIONS(5), - }, - [1025] = { - [sym_comment] = STATE(1025), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1026] = { - [sym_comment] = STATE(1026), + [1030] = { + [sym_comment] = STATE(1030), [sym_identifier] = ACTIONS(3220), [anon_sym_export] = ACTIONS(3220), [anon_sym_default] = ACTIONS(3220), @@ -147604,8 +147628,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3220), [sym_html_comment] = ACTIONS(5), }, - [1027] = { - [sym_comment] = STATE(1027), + [1031] = { + [sym_comment] = STATE(1031), [sym_identifier] = ACTIONS(3222), [anon_sym_export] = ACTIONS(3222), [anon_sym_default] = ACTIONS(3222), @@ -147687,8 +147711,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3222), [sym_html_comment] = ACTIONS(5), }, - [1028] = { - [sym_comment] = STATE(1028), + [1032] = { + [sym_comment] = STATE(1032), [sym_identifier] = ACTIONS(3224), [anon_sym_export] = ACTIONS(3224), [anon_sym_default] = ACTIONS(3224), @@ -147770,8 +147794,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, - [1029] = { - [sym_comment] = STATE(1029), + [1033] = { + [sym_comment] = STATE(1033), [sym_identifier] = ACTIONS(3226), [anon_sym_export] = ACTIONS(3226), [anon_sym_default] = ACTIONS(3226), @@ -147853,104 +147877,270 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3226), [sym_html_comment] = ACTIONS(5), }, - [1030] = { - [sym_comment] = STATE(1030), - [sym_identifier] = ACTIONS(3228), - [anon_sym_export] = ACTIONS(3228), - [anon_sym_default] = ACTIONS(3228), - [anon_sym_type] = ACTIONS(3228), - [anon_sym_namespace] = ACTIONS(3228), - [anon_sym_LBRACE] = ACTIONS(3228), - [anon_sym_RBRACE] = ACTIONS(3228), - [anon_sym_typeof] = ACTIONS(3228), - [anon_sym_import] = ACTIONS(3228), - [anon_sym_with] = ACTIONS(3228), - [anon_sym_var] = ACTIONS(3228), - [anon_sym_let] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_else] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_LPAREN] = ACTIONS(3228), - [anon_sym_await] = ACTIONS(3228), - [anon_sym_while] = ACTIONS(3228), - [anon_sym_do] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3228), - [anon_sym_break] = ACTIONS(3228), - [anon_sym_continue] = ACTIONS(3228), - [anon_sym_debugger] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3228), - [anon_sym_throw] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3228), - [anon_sym_case] = ACTIONS(3228), - [anon_sym_yield] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_LTtemplate_GT] = ACTIONS(3228), - [anon_sym_DQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_async] = ACTIONS(3228), - [anon_sym_function] = ACTIONS(3228), - [anon_sym_new] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3228), - [anon_sym_PLUS] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(3228), - [anon_sym_SLASH] = ACTIONS(3228), - [anon_sym_LT] = ACTIONS(3228), - [anon_sym_TILDE] = ACTIONS(3228), - [anon_sym_void] = ACTIONS(3228), - [anon_sym_delete] = ACTIONS(3228), - [anon_sym_PLUS_PLUS] = ACTIONS(3228), - [anon_sym_DASH_DASH] = ACTIONS(3228), + [1034] = { + [sym_comment] = STATE(1034), + [ts_builtin_sym_end] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2213), + [anon_sym_export] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_namespace] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_typeof] = ACTIONS(2213), + [anon_sym_import] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(2213), + [anon_sym_var] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_else] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_switch] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_debugger] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_throw] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_LTtemplate_GT] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_class] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_function] = ACTIONS(2213), + [anon_sym_new] = ACTIONS(2213), + [anon_sym_using] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_TILDE] = ACTIONS(2213), + [anon_sym_void] = ACTIONS(2213), + [anon_sym_delete] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3228), - [sym_number] = ACTIONS(3228), - [sym_private_property_identifier] = ACTIONS(3228), - [sym_this] = ACTIONS(3228), - [sym_super] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_null] = ACTIONS(3228), - [sym_undefined] = ACTIONS(3228), - [anon_sym_AT] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_readonly] = ACTIONS(3228), - [anon_sym_get] = ACTIONS(3228), - [anon_sym_set] = ACTIONS(3228), - [anon_sym_declare] = ACTIONS(3228), - [anon_sym_public] = ACTIONS(3228), - [anon_sym_private] = ACTIONS(3228), - [anon_sym_protected] = ACTIONS(3228), - [anon_sym_override] = ACTIONS(3228), - [anon_sym_module] = ACTIONS(3228), - [anon_sym_any] = ACTIONS(3228), - [anon_sym_number] = ACTIONS(3228), - [anon_sym_boolean] = ACTIONS(3228), - [anon_sym_string] = ACTIONS(3228), - [anon_sym_symbol] = ACTIONS(3228), - [anon_sym_object] = ACTIONS(3228), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_interface] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), - [sym_html_comment] = ACTIONS(5), - }, - [1031] = { - [sym_comment] = STATE(1031), - [sym_identifier] = ACTIONS(3230), - [anon_sym_export] = ACTIONS(3230), - [anon_sym_default] = ACTIONS(3230), - [anon_sym_type] = ACTIONS(3230), - [anon_sym_namespace] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3230), - [anon_sym_RBRACE] = ACTIONS(3230), - [anon_sym_typeof] = ACTIONS(3230), - [anon_sym_import] = ACTIONS(3230), - [anon_sym_with] = ACTIONS(3230), - [anon_sym_var] = ACTIONS(3230), - [anon_sym_let] = ACTIONS(3230), - [anon_sym_const] = ACTIONS(3230), + [anon_sym_BQUOTE] = ACTIONS(2213), + [sym_number] = ACTIONS(2213), + [sym_private_property_identifier] = ACTIONS(2213), + [sym_this] = ACTIONS(2213), + [sym_super] = ACTIONS(2213), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [sym_null] = ACTIONS(2213), + [sym_undefined] = ACTIONS(2213), + [anon_sym_AT] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_readonly] = ACTIONS(2213), + [anon_sym_get] = ACTIONS(2213), + [anon_sym_set] = ACTIONS(2213), + [anon_sym_declare] = ACTIONS(2213), + [anon_sym_public] = ACTIONS(2213), + [anon_sym_private] = ACTIONS(2213), + [anon_sym_protected] = ACTIONS(2213), + [anon_sym_override] = ACTIONS(2213), + [anon_sym_module] = ACTIONS(2213), + [anon_sym_any] = ACTIONS(2213), + [anon_sym_number] = ACTIONS(2213), + [anon_sym_boolean] = ACTIONS(2213), + [anon_sym_string] = ACTIONS(2213), + [anon_sym_symbol] = ACTIONS(2213), + [anon_sym_object] = ACTIONS(2213), + [anon_sym_abstract] = ACTIONS(2213), + [anon_sym_interface] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [sym__automatic_semicolon] = ACTIONS(2389), + [sym_html_comment] = ACTIONS(5), + }, + [1035] = { + [sym_comment] = STATE(1035), + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2221), + [anon_sym_export] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_typeof] = ACTIONS(2221), + [anon_sym_import] = ACTIONS(2221), + [anon_sym_with] = ACTIONS(2221), + [anon_sym_var] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_debugger] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_catch] = ACTIONS(2221), + [anon_sym_finally] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LTtemplate_GT] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_void] = ACTIONS(2221), + [anon_sym_delete] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2221), + [sym_number] = ACTIONS(2221), + [sym_private_property_identifier] = ACTIONS(2221), + [sym_this] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_null] = ACTIONS(2221), + [sym_undefined] = ACTIONS(2221), + [anon_sym_AT] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_get] = ACTIONS(2221), + [anon_sym_set] = ACTIONS(2221), + [anon_sym_declare] = ACTIONS(2221), + [anon_sym_public] = ACTIONS(2221), + [anon_sym_private] = ACTIONS(2221), + [anon_sym_protected] = ACTIONS(2221), + [anon_sym_override] = ACTIONS(2221), + [anon_sym_module] = ACTIONS(2221), + [anon_sym_any] = ACTIONS(2221), + [anon_sym_number] = ACTIONS(2221), + [anon_sym_boolean] = ACTIONS(2221), + [anon_sym_string] = ACTIONS(2221), + [anon_sym_symbol] = ACTIONS(2221), + [anon_sym_object] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [sym_html_comment] = ACTIONS(5), + }, + [1036] = { + [sym_comment] = STATE(1036), + [sym_identifier] = ACTIONS(3228), + [anon_sym_export] = ACTIONS(3228), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_type] = ACTIONS(3228), + [anon_sym_namespace] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_typeof] = ACTIONS(3228), + [anon_sym_import] = ACTIONS(3228), + [anon_sym_with] = ACTIONS(3228), + [anon_sym_var] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_const] = ACTIONS(3228), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_switch] = ACTIONS(3228), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_await] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_debugger] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_case] = ACTIONS(3228), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LTtemplate_GT] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3228), + [anon_sym_class] = ACTIONS(3228), + [anon_sym_async] = ACTIONS(3228), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_using] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_void] = ACTIONS(3228), + [anon_sym_delete] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3228), + [sym_number] = ACTIONS(3228), + [sym_private_property_identifier] = ACTIONS(3228), + [sym_this] = ACTIONS(3228), + [sym_super] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_null] = ACTIONS(3228), + [sym_undefined] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3228), + [anon_sym_static] = ACTIONS(3228), + [anon_sym_readonly] = ACTIONS(3228), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_declare] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_module] = ACTIONS(3228), + [anon_sym_any] = ACTIONS(3228), + [anon_sym_number] = ACTIONS(3228), + [anon_sym_boolean] = ACTIONS(3228), + [anon_sym_string] = ACTIONS(3228), + [anon_sym_symbol] = ACTIONS(3228), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_interface] = ACTIONS(3228), + [anon_sym_enum] = ACTIONS(3228), + [sym_html_comment] = ACTIONS(5), + }, + [1037] = { + [sym_comment] = STATE(1037), + [sym_identifier] = ACTIONS(3230), + [anon_sym_export] = ACTIONS(3230), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_namespace] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_typeof] = ACTIONS(3230), + [anon_sym_import] = ACTIONS(3230), + [anon_sym_with] = ACTIONS(3230), + [anon_sym_var] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), [anon_sym_BANG] = ACTIONS(3230), [anon_sym_else] = ACTIONS(3230), [anon_sym_if] = ACTIONS(3230), @@ -148019,257 +148209,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3230), [sym_html_comment] = ACTIONS(5), }, - [1032] = { - [sym_statement_block] = STATE(1387), - [sym_comment] = STATE(1032), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_default] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(3082), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_case] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), - [sym_html_comment] = ACTIONS(5), - }, - [1033] = { - [sym_comment] = STATE(1033), - [sym_identifier] = ACTIONS(3106), - [anon_sym_export] = ACTIONS(3106), - [anon_sym_default] = ACTIONS(3106), - [anon_sym_type] = ACTIONS(3106), - [anon_sym_namespace] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(3106), - [anon_sym_RBRACE] = ACTIONS(3106), - [anon_sym_typeof] = ACTIONS(3106), - [anon_sym_import] = ACTIONS(3106), - [anon_sym_with] = ACTIONS(3106), - [anon_sym_var] = ACTIONS(3106), - [anon_sym_let] = ACTIONS(3106), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_switch] = ACTIONS(3106), - [anon_sym_for] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3106), - [anon_sym_await] = ACTIONS(3106), - [anon_sym_while] = ACTIONS(3106), - [anon_sym_do] = ACTIONS(3106), - [anon_sym_try] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_debugger] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_throw] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3106), - [anon_sym_case] = ACTIONS(3106), - [anon_sym_finally] = ACTIONS(3106), - [anon_sym_yield] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(3106), - [anon_sym_LTtemplate_GT] = ACTIONS(3106), - [anon_sym_DQUOTE] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3106), - [anon_sym_class] = ACTIONS(3106), - [anon_sym_async] = ACTIONS(3106), - [anon_sym_function] = ACTIONS(3106), - [anon_sym_new] = ACTIONS(3106), - [anon_sym_using] = ACTIONS(3106), - [anon_sym_PLUS] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3106), - [anon_sym_SLASH] = ACTIONS(3106), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_void] = ACTIONS(3106), - [anon_sym_delete] = ACTIONS(3106), - [anon_sym_PLUS_PLUS] = ACTIONS(3106), - [anon_sym_DASH_DASH] = ACTIONS(3106), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3106), - [sym_number] = ACTIONS(3106), - [sym_private_property_identifier] = ACTIONS(3106), - [sym_this] = ACTIONS(3106), - [sym_super] = ACTIONS(3106), - [sym_true] = ACTIONS(3106), - [sym_false] = ACTIONS(3106), - [sym_null] = ACTIONS(3106), - [sym_undefined] = ACTIONS(3106), - [anon_sym_AT] = ACTIONS(3106), - [anon_sym_static] = ACTIONS(3106), - [anon_sym_readonly] = ACTIONS(3106), - [anon_sym_get] = ACTIONS(3106), - [anon_sym_set] = ACTIONS(3106), - [anon_sym_declare] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_module] = ACTIONS(3106), - [anon_sym_any] = ACTIONS(3106), - [anon_sym_number] = ACTIONS(3106), - [anon_sym_boolean] = ACTIONS(3106), - [anon_sym_string] = ACTIONS(3106), - [anon_sym_symbol] = ACTIONS(3106), - [anon_sym_object] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_interface] = ACTIONS(3106), - [anon_sym_enum] = ACTIONS(3106), - [sym_html_comment] = ACTIONS(5), - }, - [1034] = { - [sym_comment] = STATE(1034), - [sym_identifier] = ACTIONS(3066), - [anon_sym_export] = ACTIONS(3066), - [anon_sym_default] = ACTIONS(3066), - [anon_sym_type] = ACTIONS(3066), - [anon_sym_namespace] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_RBRACE] = ACTIONS(3066), - [anon_sym_typeof] = ACTIONS(3066), - [anon_sym_import] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3066), - [anon_sym_var] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_BANG] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_await] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_debugger] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [anon_sym_case] = ACTIONS(3066), - [anon_sym_finally] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LTtemplate_GT] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3066), - [anon_sym_class] = ACTIONS(3066), - [anon_sym_async] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_using] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_SLASH] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3066), - [anon_sym_void] = ACTIONS(3066), - [anon_sym_delete] = ACTIONS(3066), - [anon_sym_PLUS_PLUS] = ACTIONS(3066), - [anon_sym_DASH_DASH] = ACTIONS(3066), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3066), - [sym_number] = ACTIONS(3066), - [sym_private_property_identifier] = ACTIONS(3066), - [sym_this] = ACTIONS(3066), - [sym_super] = ACTIONS(3066), - [sym_true] = ACTIONS(3066), - [sym_false] = ACTIONS(3066), - [sym_null] = ACTIONS(3066), - [sym_undefined] = ACTIONS(3066), - [anon_sym_AT] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_readonly] = ACTIONS(3066), - [anon_sym_get] = ACTIONS(3066), - [anon_sym_set] = ACTIONS(3066), - [anon_sym_declare] = ACTIONS(3066), - [anon_sym_public] = ACTIONS(3066), - [anon_sym_private] = ACTIONS(3066), - [anon_sym_protected] = ACTIONS(3066), - [anon_sym_override] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - [anon_sym_any] = ACTIONS(3066), - [anon_sym_number] = ACTIONS(3066), - [anon_sym_boolean] = ACTIONS(3066), - [anon_sym_string] = ACTIONS(3066), - [anon_sym_symbol] = ACTIONS(3066), - [anon_sym_object] = ACTIONS(3066), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_interface] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), - [sym_html_comment] = ACTIONS(5), - }, - [1035] = { - [sym_comment] = STATE(1035), + [1038] = { + [sym_comment] = STATE(1038), [sym_identifier] = ACTIONS(3232), [anon_sym_export] = ACTIONS(3232), [anon_sym_default] = ACTIONS(3232), @@ -148351,91 +148292,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3232), [sym_html_comment] = ACTIONS(5), }, - [1036] = { - [sym_comment] = STATE(1036), - [sym_identifier] = ACTIONS(3234), - [anon_sym_export] = ACTIONS(3234), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_type] = ACTIONS(3234), - [anon_sym_namespace] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_typeof] = ACTIONS(3234), - [anon_sym_import] = ACTIONS(3234), - [anon_sym_with] = ACTIONS(3234), - [anon_sym_var] = ACTIONS(3234), - [anon_sym_let] = ACTIONS(3234), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_await] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_debugger] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3234), - [anon_sym_case] = ACTIONS(3234), - [anon_sym_yield] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_LTtemplate_GT] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_async] = ACTIONS(3234), - [anon_sym_function] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3234), - [anon_sym_TILDE] = ACTIONS(3234), - [anon_sym_void] = ACTIONS(3234), - [anon_sym_delete] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3234), - [sym_number] = ACTIONS(3234), - [sym_private_property_identifier] = ACTIONS(3234), - [sym_this] = ACTIONS(3234), - [sym_super] = ACTIONS(3234), - [sym_true] = ACTIONS(3234), - [sym_false] = ACTIONS(3234), - [sym_null] = ACTIONS(3234), - [sym_undefined] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_readonly] = ACTIONS(3234), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_declare] = ACTIONS(3234), - [anon_sym_public] = ACTIONS(3234), - [anon_sym_private] = ACTIONS(3234), - [anon_sym_protected] = ACTIONS(3234), - [anon_sym_override] = ACTIONS(3234), - [anon_sym_module] = ACTIONS(3234), - [anon_sym_any] = ACTIONS(3234), - [anon_sym_number] = ACTIONS(3234), - [anon_sym_boolean] = ACTIONS(3234), - [anon_sym_string] = ACTIONS(3234), - [anon_sym_symbol] = ACTIONS(3234), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_abstract] = ACTIONS(3234), - [anon_sym_interface] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), - [sym_html_comment] = ACTIONS(5), - }, - [1037] = { - [sym_comment] = STATE(1037), + [1039] = { + [sym_comment] = STATE(1039), [sym_identifier] = ACTIONS(3234), [anon_sym_export] = ACTIONS(3234), [anon_sym_default] = ACTIONS(3234), @@ -148517,91 +148375,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3234), [sym_html_comment] = ACTIONS(5), }, - [1038] = { - [sym_comment] = STATE(1038), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_default] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_typeof] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_debugger] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_case] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LTtemplate_GT] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_delete] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_number] = ACTIONS(2213), - [sym_private_property_identifier] = ACTIONS(2213), - [sym_this] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_null] = ACTIONS(2213), - [sym_undefined] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_readonly] = ACTIONS(2213), - [anon_sym_get] = ACTIONS(2213), - [anon_sym_set] = ACTIONS(2213), - [anon_sym_declare] = ACTIONS(2213), - [anon_sym_public] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_any] = ACTIONS(2213), - [anon_sym_number] = ACTIONS(2213), - [anon_sym_boolean] = ACTIONS(2213), - [anon_sym_string] = ACTIONS(2213), - [anon_sym_symbol] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2379), - [sym_html_comment] = ACTIONS(5), - }, - [1039] = { - [sym_comment] = STATE(1039), + [1040] = { + [sym_comment] = STATE(1040), [sym_identifier] = ACTIONS(3236), [anon_sym_export] = ACTIONS(3236), [anon_sym_default] = ACTIONS(3236), @@ -148683,91 +148458,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3236), [sym_html_comment] = ACTIONS(5), }, - [1040] = { - [sym_comment] = STATE(1040), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, [1041] = { + [sym_statement_block] = STATE(1218), [sym_comment] = STATE(1041), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(3110), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_case] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym_html_comment] = ACTIONS(5), + }, + [1042] = { + [sym_comment] = STATE(1042), [sym_identifier] = ACTIONS(3238), [anon_sym_export] = ACTIONS(3238), [anon_sym_default] = ACTIONS(3238), @@ -148849,2997 +148624,3993 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3238), [sym_html_comment] = ACTIONS(5), }, - [1042] = { - [sym_comment] = STATE(1042), - [sym_identifier] = ACTIONS(3240), - [anon_sym_export] = ACTIONS(3240), - [anon_sym_default] = ACTIONS(3240), - [anon_sym_type] = ACTIONS(3240), - [anon_sym_namespace] = ACTIONS(3240), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_typeof] = ACTIONS(3240), - [anon_sym_import] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3240), - [anon_sym_var] = ACTIONS(3240), - [anon_sym_let] = ACTIONS(3240), - [anon_sym_const] = ACTIONS(3240), - [anon_sym_BANG] = ACTIONS(3240), - [anon_sym_else] = ACTIONS(3240), - [anon_sym_if] = ACTIONS(3240), - [anon_sym_switch] = ACTIONS(3240), - [anon_sym_for] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_await] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3240), - [anon_sym_do] = ACTIONS(3240), - [anon_sym_try] = ACTIONS(3240), - [anon_sym_break] = ACTIONS(3240), - [anon_sym_continue] = ACTIONS(3240), - [anon_sym_debugger] = ACTIONS(3240), - [anon_sym_return] = ACTIONS(3240), - [anon_sym_throw] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_case] = ACTIONS(3240), - [anon_sym_yield] = ACTIONS(3240), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_LTtemplate_GT] = ACTIONS(3240), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_SQUOTE] = ACTIONS(3240), - [anon_sym_class] = ACTIONS(3240), - [anon_sym_async] = ACTIONS(3240), - [anon_sym_function] = ACTIONS(3240), - [anon_sym_new] = ACTIONS(3240), - [anon_sym_using] = ACTIONS(3240), - [anon_sym_PLUS] = ACTIONS(3240), - [anon_sym_DASH] = ACTIONS(3240), - [anon_sym_SLASH] = ACTIONS(3240), - [anon_sym_LT] = ACTIONS(3240), - [anon_sym_TILDE] = ACTIONS(3240), - [anon_sym_void] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3240), - [anon_sym_PLUS_PLUS] = ACTIONS(3240), - [anon_sym_DASH_DASH] = ACTIONS(3240), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3240), - [sym_number] = ACTIONS(3240), - [sym_private_property_identifier] = ACTIONS(3240), - [sym_this] = ACTIONS(3240), - [sym_super] = ACTIONS(3240), - [sym_true] = ACTIONS(3240), - [sym_false] = ACTIONS(3240), - [sym_null] = ACTIONS(3240), - [sym_undefined] = ACTIONS(3240), - [anon_sym_AT] = ACTIONS(3240), - [anon_sym_static] = ACTIONS(3240), - [anon_sym_readonly] = ACTIONS(3240), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3240), - [anon_sym_declare] = ACTIONS(3240), - [anon_sym_public] = ACTIONS(3240), - [anon_sym_private] = ACTIONS(3240), - [anon_sym_protected] = ACTIONS(3240), - [anon_sym_override] = ACTIONS(3240), - [anon_sym_module] = ACTIONS(3240), - [anon_sym_any] = ACTIONS(3240), - [anon_sym_number] = ACTIONS(3240), - [anon_sym_boolean] = ACTIONS(3240), - [anon_sym_string] = ACTIONS(3240), - [anon_sym_symbol] = ACTIONS(3240), - [anon_sym_object] = ACTIONS(3240), - [anon_sym_abstract] = ACTIONS(3240), - [anon_sym_interface] = ACTIONS(3240), - [anon_sym_enum] = ACTIONS(3240), - [sym_html_comment] = ACTIONS(5), - }, [1043] = { + [sym_else_clause] = STATE(1469), [sym_comment] = STATE(1043), - [sym_identifier] = ACTIONS(3242), - [anon_sym_export] = ACTIONS(3242), - [anon_sym_default] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_namespace] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3242), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_typeof] = ACTIONS(3242), - [anon_sym_import] = ACTIONS(3242), - [anon_sym_with] = ACTIONS(3242), - [anon_sym_var] = ACTIONS(3242), - [anon_sym_let] = ACTIONS(3242), - [anon_sym_const] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3242), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_switch] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3242), - [anon_sym_await] = ACTIONS(3242), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3242), - [anon_sym_try] = ACTIONS(3242), - [anon_sym_break] = ACTIONS(3242), - [anon_sym_continue] = ACTIONS(3242), - [anon_sym_debugger] = ACTIONS(3242), - [anon_sym_return] = ACTIONS(3242), - [anon_sym_throw] = ACTIONS(3242), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_case] = ACTIONS(3242), - [anon_sym_yield] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_LTtemplate_GT] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(3242), - [anon_sym_SQUOTE] = ACTIONS(3242), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_function] = ACTIONS(3242), - [anon_sym_new] = ACTIONS(3242), - [anon_sym_using] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_TILDE] = ACTIONS(3242), - [anon_sym_void] = ACTIONS(3242), - [anon_sym_delete] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3242), - [sym_number] = ACTIONS(3242), - [sym_private_property_identifier] = ACTIONS(3242), - [sym_this] = ACTIONS(3242), - [sym_super] = ACTIONS(3242), - [sym_true] = ACTIONS(3242), - [sym_false] = ACTIONS(3242), - [sym_null] = ACTIONS(3242), - [sym_undefined] = ACTIONS(3242), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_readonly] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_declare] = ACTIONS(3242), - [anon_sym_public] = ACTIONS(3242), - [anon_sym_private] = ACTIONS(3242), - [anon_sym_protected] = ACTIONS(3242), - [anon_sym_override] = ACTIONS(3242), - [anon_sym_module] = ACTIONS(3242), - [anon_sym_any] = ACTIONS(3242), - [anon_sym_number] = ACTIONS(3242), - [anon_sym_boolean] = ACTIONS(3242), - [anon_sym_string] = ACTIONS(3242), - [anon_sym_symbol] = ACTIONS(3242), - [anon_sym_object] = ACTIONS(3242), - [anon_sym_abstract] = ACTIONS(3242), - [anon_sym_interface] = ACTIONS(3242), - [anon_sym_enum] = ACTIONS(3242), + [ts_builtin_sym_end] = ACTIONS(3206), + [sym_identifier] = ACTIONS(3070), + [anon_sym_export] = ACTIONS(3070), + [anon_sym_type] = ACTIONS(3070), + [anon_sym_namespace] = ACTIONS(3070), + [anon_sym_LBRACE] = ACTIONS(3070), + [anon_sym_RBRACE] = ACTIONS(3070), + [anon_sym_typeof] = ACTIONS(3070), + [anon_sym_import] = ACTIONS(3070), + [anon_sym_with] = ACTIONS(3070), + [anon_sym_var] = ACTIONS(3070), + [anon_sym_let] = ACTIONS(3070), + [anon_sym_const] = ACTIONS(3070), + [anon_sym_BANG] = ACTIONS(3070), + [anon_sym_else] = ACTIONS(3240), + [anon_sym_if] = ACTIONS(3070), + [anon_sym_switch] = ACTIONS(3070), + [anon_sym_for] = ACTIONS(3070), + [anon_sym_LPAREN] = ACTIONS(3070), + [anon_sym_await] = ACTIONS(3070), + [anon_sym_while] = ACTIONS(3070), + [anon_sym_do] = ACTIONS(3070), + [anon_sym_try] = ACTIONS(3070), + [anon_sym_break] = ACTIONS(3070), + [anon_sym_continue] = ACTIONS(3070), + [anon_sym_debugger] = ACTIONS(3070), + [anon_sym_return] = ACTIONS(3070), + [anon_sym_throw] = ACTIONS(3070), + [anon_sym_SEMI] = ACTIONS(3070), + [anon_sym_yield] = ACTIONS(3070), + [anon_sym_LBRACK] = ACTIONS(3070), + [anon_sym_LTtemplate_GT] = ACTIONS(3070), + [anon_sym_DQUOTE] = ACTIONS(3070), + [anon_sym_SQUOTE] = ACTIONS(3070), + [anon_sym_class] = ACTIONS(3070), + [anon_sym_async] = ACTIONS(3070), + [anon_sym_function] = ACTIONS(3070), + [anon_sym_new] = ACTIONS(3070), + [anon_sym_using] = ACTIONS(3070), + [anon_sym_PLUS] = ACTIONS(3070), + [anon_sym_DASH] = ACTIONS(3070), + [anon_sym_SLASH] = ACTIONS(3070), + [anon_sym_LT] = ACTIONS(3070), + [anon_sym_TILDE] = ACTIONS(3070), + [anon_sym_void] = ACTIONS(3070), + [anon_sym_delete] = ACTIONS(3070), + [anon_sym_PLUS_PLUS] = ACTIONS(3070), + [anon_sym_DASH_DASH] = ACTIONS(3070), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3070), + [sym_number] = ACTIONS(3070), + [sym_private_property_identifier] = ACTIONS(3070), + [sym_this] = ACTIONS(3070), + [sym_super] = ACTIONS(3070), + [sym_true] = ACTIONS(3070), + [sym_false] = ACTIONS(3070), + [sym_null] = ACTIONS(3070), + [sym_undefined] = ACTIONS(3070), + [anon_sym_AT] = ACTIONS(3070), + [anon_sym_static] = ACTIONS(3070), + [anon_sym_readonly] = ACTIONS(3070), + [anon_sym_get] = ACTIONS(3070), + [anon_sym_set] = ACTIONS(3070), + [anon_sym_declare] = ACTIONS(3070), + [anon_sym_public] = ACTIONS(3070), + [anon_sym_private] = ACTIONS(3070), + [anon_sym_protected] = ACTIONS(3070), + [anon_sym_override] = ACTIONS(3070), + [anon_sym_module] = ACTIONS(3070), + [anon_sym_any] = ACTIONS(3070), + [anon_sym_number] = ACTIONS(3070), + [anon_sym_boolean] = ACTIONS(3070), + [anon_sym_string] = ACTIONS(3070), + [anon_sym_symbol] = ACTIONS(3070), + [anon_sym_object] = ACTIONS(3070), + [anon_sym_abstract] = ACTIONS(3070), + [anon_sym_interface] = ACTIONS(3070), + [anon_sym_enum] = ACTIONS(3070), [sym_html_comment] = ACTIONS(5), }, [1044] = { [sym_comment] = STATE(1044), - [sym_identifier] = ACTIONS(3244), - [anon_sym_export] = ACTIONS(3244), - [anon_sym_default] = ACTIONS(3244), - [anon_sym_type] = ACTIONS(3244), - [anon_sym_namespace] = ACTIONS(3244), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_typeof] = ACTIONS(3244), - [anon_sym_import] = ACTIONS(3244), - [anon_sym_with] = ACTIONS(3244), - [anon_sym_var] = ACTIONS(3244), - [anon_sym_let] = ACTIONS(3244), - [anon_sym_const] = ACTIONS(3244), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_switch] = ACTIONS(3244), - [anon_sym_for] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_await] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3244), - [anon_sym_do] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_debugger] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_throw] = ACTIONS(3244), + [ts_builtin_sym_end] = ACTIONS(3242), + [sym_identifier] = ACTIONS(3074), + [anon_sym_export] = ACTIONS(3074), + [anon_sym_type] = ACTIONS(3074), + [anon_sym_namespace] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3074), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_typeof] = ACTIONS(3074), + [anon_sym_import] = ACTIONS(3074), + [anon_sym_with] = ACTIONS(3074), + [anon_sym_var] = ACTIONS(3074), + [anon_sym_let] = ACTIONS(3074), + [anon_sym_const] = ACTIONS(3074), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_else] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_switch] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3074), + [anon_sym_await] = ACTIONS(3074), + [anon_sym_while] = ACTIONS(3074), + [anon_sym_do] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_debugger] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_throw] = ACTIONS(3074), [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_case] = ACTIONS(3244), - [anon_sym_yield] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_LTtemplate_GT] = ACTIONS(3244), - [anon_sym_DQUOTE] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3244), - [anon_sym_class] = ACTIONS(3244), - [anon_sym_async] = ACTIONS(3244), - [anon_sym_function] = ACTIONS(3244), - [anon_sym_new] = ACTIONS(3244), - [anon_sym_using] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3244), - [anon_sym_TILDE] = ACTIONS(3244), - [anon_sym_void] = ACTIONS(3244), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3244), - [sym_number] = ACTIONS(3244), - [sym_private_property_identifier] = ACTIONS(3244), - [sym_this] = ACTIONS(3244), - [sym_super] = ACTIONS(3244), - [sym_true] = ACTIONS(3244), - [sym_false] = ACTIONS(3244), - [sym_null] = ACTIONS(3244), - [sym_undefined] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3244), - [anon_sym_static] = ACTIONS(3244), - [anon_sym_readonly] = ACTIONS(3244), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_declare] = ACTIONS(3244), - [anon_sym_public] = ACTIONS(3244), - [anon_sym_private] = ACTIONS(3244), - [anon_sym_protected] = ACTIONS(3244), - [anon_sym_override] = ACTIONS(3244), - [anon_sym_module] = ACTIONS(3244), - [anon_sym_any] = ACTIONS(3244), - [anon_sym_number] = ACTIONS(3244), - [anon_sym_boolean] = ACTIONS(3244), - [anon_sym_string] = ACTIONS(3244), - [anon_sym_symbol] = ACTIONS(3244), - [anon_sym_object] = ACTIONS(3244), - [anon_sym_abstract] = ACTIONS(3244), - [anon_sym_interface] = ACTIONS(3244), - [anon_sym_enum] = ACTIONS(3244), + [anon_sym_yield] = ACTIONS(3074), + [anon_sym_LBRACK] = ACTIONS(3074), + [anon_sym_LTtemplate_GT] = ACTIONS(3074), + [anon_sym_DQUOTE] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3074), + [anon_sym_class] = ACTIONS(3074), + [anon_sym_async] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3074), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_using] = ACTIONS(3074), + [anon_sym_PLUS] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3074), + [anon_sym_SLASH] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_TILDE] = ACTIONS(3074), + [anon_sym_void] = ACTIONS(3074), + [anon_sym_delete] = ACTIONS(3074), + [anon_sym_PLUS_PLUS] = ACTIONS(3074), + [anon_sym_DASH_DASH] = ACTIONS(3074), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3074), + [sym_number] = ACTIONS(3074), + [sym_private_property_identifier] = ACTIONS(3074), + [sym_this] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_AT] = ACTIONS(3074), + [anon_sym_static] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3074), + [anon_sym_get] = ACTIONS(3074), + [anon_sym_set] = ACTIONS(3074), + [anon_sym_declare] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_module] = ACTIONS(3074), + [anon_sym_any] = ACTIONS(3074), + [anon_sym_number] = ACTIONS(3074), + [anon_sym_boolean] = ACTIONS(3074), + [anon_sym_string] = ACTIONS(3074), + [anon_sym_symbol] = ACTIONS(3074), + [anon_sym_object] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_interface] = ACTIONS(3074), + [anon_sym_enum] = ACTIONS(3074), + [sym__automatic_semicolon] = ACTIONS(3246), [sym_html_comment] = ACTIONS(5), }, [1045] = { [sym_comment] = STATE(1045), - [sym_identifier] = ACTIONS(2127), - [anon_sym_export] = ACTIONS(2127), - [anon_sym_default] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2127), - [anon_sym_namespace] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_typeof] = ACTIONS(2127), - [anon_sym_import] = ACTIONS(2127), - [anon_sym_with] = ACTIONS(2127), - [anon_sym_var] = ACTIONS(2127), - [anon_sym_let] = ACTIONS(2127), - [anon_sym_const] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2127), - [anon_sym_switch] = ACTIONS(2127), - [anon_sym_for] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_await] = ACTIONS(2127), - [anon_sym_while] = ACTIONS(2127), - [anon_sym_do] = ACTIONS(2127), - [anon_sym_try] = ACTIONS(2127), - [anon_sym_break] = ACTIONS(2127), - [anon_sym_continue] = ACTIONS(2127), - [anon_sym_debugger] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2127), - [anon_sym_throw] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_case] = ACTIONS(2127), - [anon_sym_yield] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_LTtemplate_GT] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(2127), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_class] = ACTIONS(2127), - [anon_sym_async] = ACTIONS(2127), - [anon_sym_function] = ACTIONS(2127), - [anon_sym_new] = ACTIONS(2127), - [anon_sym_using] = ACTIONS(2127), - [anon_sym_PLUS] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2127), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_LT] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_void] = ACTIONS(2127), - [anon_sym_delete] = ACTIONS(2127), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2127), - [sym_number] = ACTIONS(2127), - [sym_private_property_identifier] = ACTIONS(2127), - [sym_this] = ACTIONS(2127), - [sym_super] = ACTIONS(2127), - [sym_true] = ACTIONS(2127), - [sym_false] = ACTIONS(2127), - [sym_null] = ACTIONS(2127), - [sym_undefined] = ACTIONS(2127), - [anon_sym_AT] = ACTIONS(2127), - [anon_sym_static] = ACTIONS(2127), - [anon_sym_readonly] = ACTIONS(2127), - [anon_sym_get] = ACTIONS(2127), - [anon_sym_set] = ACTIONS(2127), - [anon_sym_declare] = ACTIONS(2127), - [anon_sym_public] = ACTIONS(2127), - [anon_sym_private] = ACTIONS(2127), - [anon_sym_protected] = ACTIONS(2127), - [anon_sym_override] = ACTIONS(2127), - [anon_sym_module] = ACTIONS(2127), - [anon_sym_any] = ACTIONS(2127), - [anon_sym_number] = ACTIONS(2127), - [anon_sym_boolean] = ACTIONS(2127), - [anon_sym_string] = ACTIONS(2127), - [anon_sym_symbol] = ACTIONS(2127), - [anon_sym_object] = ACTIONS(2127), - [anon_sym_abstract] = ACTIONS(2127), - [anon_sym_interface] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(2127), - [sym__automatic_semicolon] = ACTIONS(2335), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3102), + [anon_sym_export] = ACTIONS(3102), + [anon_sym_type] = ACTIONS(3102), + [anon_sym_namespace] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3102), + [anon_sym_import] = ACTIONS(3102), + [anon_sym_with] = ACTIONS(3102), + [anon_sym_var] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_const] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_switch] = ACTIONS(3102), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_await] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_debugger] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_throw] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_finally] = ACTIONS(3102), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_LTtemplate_GT] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_SQUOTE] = ACTIONS(3102), + [anon_sym_class] = ACTIONS(3102), + [anon_sym_async] = ACTIONS(3102), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_using] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_SLASH] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3102), + [anon_sym_void] = ACTIONS(3102), + [anon_sym_delete] = ACTIONS(3102), + [anon_sym_PLUS_PLUS] = ACTIONS(3102), + [anon_sym_DASH_DASH] = ACTIONS(3102), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3102), + [sym_number] = ACTIONS(3102), + [sym_private_property_identifier] = ACTIONS(3102), + [sym_this] = ACTIONS(3102), + [sym_super] = ACTIONS(3102), + [sym_true] = ACTIONS(3102), + [sym_false] = ACTIONS(3102), + [sym_null] = ACTIONS(3102), + [sym_undefined] = ACTIONS(3102), + [anon_sym_AT] = ACTIONS(3102), + [anon_sym_static] = ACTIONS(3102), + [anon_sym_readonly] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3102), + [anon_sym_set] = ACTIONS(3102), + [anon_sym_declare] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_module] = ACTIONS(3102), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3102), + [anon_sym_interface] = ACTIONS(3102), + [anon_sym_enum] = ACTIONS(3102), [sym_html_comment] = ACTIONS(5), }, [1046] = { [sym_comment] = STATE(1046), - [sym_identifier] = ACTIONS(3246), - [anon_sym_export] = ACTIONS(3246), - [anon_sym_default] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_namespace] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3246), - [anon_sym_typeof] = ACTIONS(3246), - [anon_sym_import] = ACTIONS(3246), - [anon_sym_with] = ACTIONS(3246), - [anon_sym_var] = ACTIONS(3246), - [anon_sym_let] = ACTIONS(3246), - [anon_sym_const] = ACTIONS(3246), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_switch] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(3246), - [anon_sym_await] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_do] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_debugger] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_case] = ACTIONS(3246), - [anon_sym_yield] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_LTtemplate_GT] = ACTIONS(3246), - [anon_sym_DQUOTE] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3246), - [anon_sym_class] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_function] = ACTIONS(3246), - [anon_sym_new] = ACTIONS(3246), - [anon_sym_using] = ACTIONS(3246), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(3246), - [anon_sym_void] = ACTIONS(3246), - [anon_sym_delete] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3246), - [anon_sym_DASH_DASH] = ACTIONS(3246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3246), - [sym_number] = ACTIONS(3246), - [sym_private_property_identifier] = ACTIONS(3246), - [sym_this] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_true] = ACTIONS(3246), - [sym_false] = ACTIONS(3246), - [sym_null] = ACTIONS(3246), - [sym_undefined] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_static] = ACTIONS(3246), - [anon_sym_readonly] = ACTIONS(3246), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_declare] = ACTIONS(3246), - [anon_sym_public] = ACTIONS(3246), - [anon_sym_private] = ACTIONS(3246), - [anon_sym_protected] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3246), - [anon_sym_module] = ACTIONS(3246), - [anon_sym_any] = ACTIONS(3246), - [anon_sym_number] = ACTIONS(3246), - [anon_sym_boolean] = ACTIONS(3246), - [anon_sym_string] = ACTIONS(3246), - [anon_sym_symbol] = ACTIONS(3246), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_abstract] = ACTIONS(3246), - [anon_sym_interface] = ACTIONS(3246), - [anon_sym_enum] = ACTIONS(3246), + [sym_identifier] = ACTIONS(3250), + [anon_sym_export] = ACTIONS(3250), + [anon_sym_default] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_namespace] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_typeof] = ACTIONS(3250), + [anon_sym_import] = ACTIONS(3250), + [anon_sym_with] = ACTIONS(3250), + [anon_sym_var] = ACTIONS(3250), + [anon_sym_let] = ACTIONS(3250), + [anon_sym_const] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_switch] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym_await] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_do] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_debugger] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym_case] = ACTIONS(3250), + [anon_sym_yield] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3250), + [anon_sym_LTtemplate_GT] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_function] = ACTIONS(3250), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_using] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_void] = ACTIONS(3250), + [anon_sym_delete] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3250), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), + [sym_this] = ACTIONS(3250), + [sym_super] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_null] = ACTIONS(3250), + [sym_undefined] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3250), + [anon_sym_static] = ACTIONS(3250), + [anon_sym_readonly] = ACTIONS(3250), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_declare] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_module] = ACTIONS(3250), + [anon_sym_any] = ACTIONS(3250), + [anon_sym_number] = ACTIONS(3250), + [anon_sym_boolean] = ACTIONS(3250), + [anon_sym_string] = ACTIONS(3250), + [anon_sym_symbol] = ACTIONS(3250), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_interface] = ACTIONS(3250), + [anon_sym_enum] = ACTIONS(3250), [sym_html_comment] = ACTIONS(5), }, [1047] = { [sym_comment] = STATE(1047), - [sym_identifier] = ACTIONS(3246), - [anon_sym_export] = ACTIONS(3246), - [anon_sym_default] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_namespace] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3246), - [anon_sym_typeof] = ACTIONS(3246), - [anon_sym_import] = ACTIONS(3246), - [anon_sym_with] = ACTIONS(3246), - [anon_sym_var] = ACTIONS(3246), - [anon_sym_let] = ACTIONS(3246), - [anon_sym_const] = ACTIONS(3246), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_switch] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(3246), - [anon_sym_await] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_do] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_debugger] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_case] = ACTIONS(3246), - [anon_sym_yield] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_LTtemplate_GT] = ACTIONS(3246), - [anon_sym_DQUOTE] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3246), - [anon_sym_class] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_function] = ACTIONS(3246), - [anon_sym_new] = ACTIONS(3246), - [anon_sym_using] = ACTIONS(3246), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(3246), - [anon_sym_void] = ACTIONS(3246), - [anon_sym_delete] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3246), - [anon_sym_DASH_DASH] = ACTIONS(3246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3246), - [sym_number] = ACTIONS(3246), - [sym_private_property_identifier] = ACTIONS(3246), - [sym_this] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_true] = ACTIONS(3246), - [sym_false] = ACTIONS(3246), - [sym_null] = ACTIONS(3246), - [sym_undefined] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_static] = ACTIONS(3246), - [anon_sym_readonly] = ACTIONS(3246), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_declare] = ACTIONS(3246), - [anon_sym_public] = ACTIONS(3246), - [anon_sym_private] = ACTIONS(3246), - [anon_sym_protected] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3246), - [anon_sym_module] = ACTIONS(3246), - [anon_sym_any] = ACTIONS(3246), - [anon_sym_number] = ACTIONS(3246), - [anon_sym_boolean] = ACTIONS(3246), - [anon_sym_string] = ACTIONS(3246), - [anon_sym_symbol] = ACTIONS(3246), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_abstract] = ACTIONS(3246), - [anon_sym_interface] = ACTIONS(3246), - [anon_sym_enum] = ACTIONS(3246), + [sym_identifier] = ACTIONS(3252), + [anon_sym_export] = ACTIONS(3252), + [anon_sym_default] = ACTIONS(3252), + [anon_sym_type] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_typeof] = ACTIONS(3252), + [anon_sym_import] = ACTIONS(3252), + [anon_sym_with] = ACTIONS(3252), + [anon_sym_var] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_BANG] = ACTIONS(3252), + [anon_sym_else] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_await] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_debugger] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_case] = ACTIONS(3252), + [anon_sym_yield] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LTtemplate_GT] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [anon_sym_SQUOTE] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_async] = ACTIONS(3252), + [anon_sym_function] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_void] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3252), + [sym_number] = ACTIONS(3252), + [sym_private_property_identifier] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + [sym_super] = ACTIONS(3252), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [sym_null] = ACTIONS(3252), + [sym_undefined] = ACTIONS(3252), + [anon_sym_AT] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3252), + [anon_sym_get] = ACTIONS(3252), + [anon_sym_set] = ACTIONS(3252), + [anon_sym_declare] = ACTIONS(3252), + [anon_sym_public] = ACTIONS(3252), + [anon_sym_private] = ACTIONS(3252), + [anon_sym_protected] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_module] = ACTIONS(3252), + [anon_sym_any] = ACTIONS(3252), + [anon_sym_number] = ACTIONS(3252), + [anon_sym_boolean] = ACTIONS(3252), + [anon_sym_string] = ACTIONS(3252), + [anon_sym_symbol] = ACTIONS(3252), + [anon_sym_object] = ACTIONS(3252), + [anon_sym_abstract] = ACTIONS(3252), + [anon_sym_interface] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), [sym_html_comment] = ACTIONS(5), }, [1048] = { [sym_comment] = STATE(1048), - [sym_identifier] = ACTIONS(3246), - [anon_sym_export] = ACTIONS(3246), - [anon_sym_default] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_namespace] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3246), - [anon_sym_typeof] = ACTIONS(3246), - [anon_sym_import] = ACTIONS(3246), - [anon_sym_with] = ACTIONS(3246), - [anon_sym_var] = ACTIONS(3246), - [anon_sym_let] = ACTIONS(3246), - [anon_sym_const] = ACTIONS(3246), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_switch] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(3246), - [anon_sym_await] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_do] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_debugger] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_case] = ACTIONS(3246), - [anon_sym_yield] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_LTtemplate_GT] = ACTIONS(3246), - [anon_sym_DQUOTE] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3246), - [anon_sym_class] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_function] = ACTIONS(3246), - [anon_sym_new] = ACTIONS(3246), - [anon_sym_using] = ACTIONS(3246), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(3246), - [anon_sym_void] = ACTIONS(3246), - [anon_sym_delete] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3246), - [anon_sym_DASH_DASH] = ACTIONS(3246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3246), - [sym_number] = ACTIONS(3246), - [sym_private_property_identifier] = ACTIONS(3246), - [sym_this] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_true] = ACTIONS(3246), - [sym_false] = ACTIONS(3246), - [sym_null] = ACTIONS(3246), - [sym_undefined] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_static] = ACTIONS(3246), - [anon_sym_readonly] = ACTIONS(3246), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_declare] = ACTIONS(3246), - [anon_sym_public] = ACTIONS(3246), - [anon_sym_private] = ACTIONS(3246), - [anon_sym_protected] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3246), - [anon_sym_module] = ACTIONS(3246), - [anon_sym_any] = ACTIONS(3246), - [anon_sym_number] = ACTIONS(3246), - [anon_sym_boolean] = ACTIONS(3246), - [anon_sym_string] = ACTIONS(3246), - [anon_sym_symbol] = ACTIONS(3246), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_abstract] = ACTIONS(3246), - [anon_sym_interface] = ACTIONS(3246), - [anon_sym_enum] = ACTIONS(3246), + [sym_identifier] = ACTIONS(3254), + [anon_sym_export] = ACTIONS(3254), + [anon_sym_default] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_namespace] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_typeof] = ACTIONS(3254), + [anon_sym_import] = ACTIONS(3254), + [anon_sym_with] = ACTIONS(3254), + [anon_sym_var] = ACTIONS(3254), + [anon_sym_let] = ACTIONS(3254), + [anon_sym_const] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_switch] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_await] = ACTIONS(3254), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_do] = ACTIONS(3254), + [anon_sym_try] = ACTIONS(3254), + [anon_sym_break] = ACTIONS(3254), + [anon_sym_continue] = ACTIONS(3254), + [anon_sym_debugger] = ACTIONS(3254), + [anon_sym_return] = ACTIONS(3254), + [anon_sym_throw] = ACTIONS(3254), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_case] = ACTIONS(3254), + [anon_sym_yield] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_LTtemplate_GT] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_class] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_function] = ACTIONS(3254), + [anon_sym_new] = ACTIONS(3254), + [anon_sym_using] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_SLASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_void] = ACTIONS(3254), + [anon_sym_delete] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3254), + [sym_number] = ACTIONS(3254), + [sym_private_property_identifier] = ACTIONS(3254), + [sym_this] = ACTIONS(3254), + [sym_super] = ACTIONS(3254), + [sym_true] = ACTIONS(3254), + [sym_false] = ACTIONS(3254), + [sym_null] = ACTIONS(3254), + [sym_undefined] = ACTIONS(3254), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_static] = ACTIONS(3254), + [anon_sym_readonly] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3254), + [anon_sym_set] = ACTIONS(3254), + [anon_sym_declare] = ACTIONS(3254), + [anon_sym_public] = ACTIONS(3254), + [anon_sym_private] = ACTIONS(3254), + [anon_sym_protected] = ACTIONS(3254), + [anon_sym_override] = ACTIONS(3254), + [anon_sym_module] = ACTIONS(3254), + [anon_sym_any] = ACTIONS(3254), + [anon_sym_number] = ACTIONS(3254), + [anon_sym_boolean] = ACTIONS(3254), + [anon_sym_string] = ACTIONS(3254), + [anon_sym_symbol] = ACTIONS(3254), + [anon_sym_object] = ACTIONS(3254), + [anon_sym_abstract] = ACTIONS(3254), + [anon_sym_interface] = ACTIONS(3254), + [anon_sym_enum] = ACTIONS(3254), [sym_html_comment] = ACTIONS(5), }, [1049] = { + [sym_statement_block] = STATE(1520), [sym_comment] = STATE(1049), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [ts_builtin_sym_end] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DOT] = ACTIONS(3256), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), [sym_html_comment] = ACTIONS(5), }, [1050] = { [sym_comment] = STATE(1050), - [sym_identifier] = ACTIONS(2117), - [anon_sym_export] = ACTIONS(2117), - [anon_sym_default] = ACTIONS(2117), - [anon_sym_type] = ACTIONS(2117), - [anon_sym_namespace] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_typeof] = ACTIONS(2117), - [anon_sym_import] = ACTIONS(2117), - [anon_sym_with] = ACTIONS(2117), - [anon_sym_var] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_switch] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_await] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_try] = 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(2117), - [anon_sym_case] = ACTIONS(2117), - [anon_sym_yield] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_LTtemplate_GT] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2117), - [anon_sym_class] = ACTIONS(2117), - [anon_sym_async] = ACTIONS(2117), - [anon_sym_function] = ACTIONS(2117), - [anon_sym_new] = ACTIONS(2117), - [anon_sym_using] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_SLASH] = ACTIONS(2117), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_void] = ACTIONS(2117), - [anon_sym_delete] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2117), - [sym_number] = ACTIONS(2117), - [sym_private_property_identifier] = ACTIONS(2117), - [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(2117), - [anon_sym_static] = ACTIONS(2117), - [anon_sym_readonly] = ACTIONS(2117), - [anon_sym_get] = ACTIONS(2117), - [anon_sym_set] = ACTIONS(2117), - [anon_sym_declare] = ACTIONS(2117), - [anon_sym_public] = ACTIONS(2117), - [anon_sym_private] = ACTIONS(2117), - [anon_sym_protected] = ACTIONS(2117), - [anon_sym_override] = ACTIONS(2117), - [anon_sym_module] = ACTIONS(2117), - [anon_sym_any] = ACTIONS(2117), - [anon_sym_number] = ACTIONS(2117), - [anon_sym_boolean] = ACTIONS(2117), - [anon_sym_string] = ACTIONS(2117), - [anon_sym_symbol] = ACTIONS(2117), - [anon_sym_object] = ACTIONS(2117), - [anon_sym_abstract] = ACTIONS(2117), - [anon_sym_interface] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [sym__automatic_semicolon] = ACTIONS(2325), + [sym_identifier] = ACTIONS(3258), + [anon_sym_export] = ACTIONS(3258), + [anon_sym_default] = ACTIONS(3258), + [anon_sym_type] = ACTIONS(3258), + [anon_sym_namespace] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_typeof] = ACTIONS(3258), + [anon_sym_import] = ACTIONS(3258), + [anon_sym_with] = ACTIONS(3258), + [anon_sym_var] = ACTIONS(3258), + [anon_sym_let] = ACTIONS(3258), + [anon_sym_const] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_else] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_switch] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_await] = ACTIONS(3258), + [anon_sym_while] = ACTIONS(3258), + [anon_sym_do] = ACTIONS(3258), + [anon_sym_try] = ACTIONS(3258), + [anon_sym_break] = ACTIONS(3258), + [anon_sym_continue] = ACTIONS(3258), + [anon_sym_debugger] = ACTIONS(3258), + [anon_sym_return] = ACTIONS(3258), + [anon_sym_throw] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym_case] = ACTIONS(3258), + [anon_sym_yield] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3258), + [anon_sym_LTtemplate_GT] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [anon_sym_SQUOTE] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3258), + [anon_sym_async] = ACTIONS(3258), + [anon_sym_function] = ACTIONS(3258), + [anon_sym_new] = ACTIONS(3258), + [anon_sym_using] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_SLASH] = ACTIONS(3258), + [anon_sym_LT] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_void] = ACTIONS(3258), + [anon_sym_delete] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DASH_DASH] = ACTIONS(3258), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3258), + [sym_number] = ACTIONS(3258), + [sym_private_property_identifier] = ACTIONS(3258), + [sym_this] = ACTIONS(3258), + [sym_super] = ACTIONS(3258), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [sym_null] = ACTIONS(3258), + [sym_undefined] = ACTIONS(3258), + [anon_sym_AT] = ACTIONS(3258), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_readonly] = ACTIONS(3258), + [anon_sym_get] = ACTIONS(3258), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_declare] = ACTIONS(3258), + [anon_sym_public] = ACTIONS(3258), + [anon_sym_private] = ACTIONS(3258), + [anon_sym_protected] = ACTIONS(3258), + [anon_sym_override] = ACTIONS(3258), + [anon_sym_module] = ACTIONS(3258), + [anon_sym_any] = ACTIONS(3258), + [anon_sym_number] = ACTIONS(3258), + [anon_sym_boolean] = ACTIONS(3258), + [anon_sym_string] = ACTIONS(3258), + [anon_sym_symbol] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3258), + [anon_sym_abstract] = ACTIONS(3258), + [anon_sym_interface] = ACTIONS(3258), + [anon_sym_enum] = ACTIONS(3258), [sym_html_comment] = ACTIONS(5), }, [1051] = { [sym_comment] = STATE(1051), - [sym_identifier] = ACTIONS(3248), - [anon_sym_export] = ACTIONS(3248), - [anon_sym_default] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_namespace] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_typeof] = ACTIONS(3248), - [anon_sym_import] = ACTIONS(3248), - [anon_sym_with] = ACTIONS(3248), - [anon_sym_var] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_switch] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_await] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3248), - [anon_sym_do] = ACTIONS(3248), - [anon_sym_try] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_debugger] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_throw] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_case] = ACTIONS(3248), - [anon_sym_yield] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_LTtemplate_GT] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_async] = ACTIONS(3248), - [anon_sym_function] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3248), - [anon_sym_using] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_void] = ACTIONS(3248), - [anon_sym_delete] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3248), - [sym_number] = ACTIONS(3248), - [sym_private_property_identifier] = ACTIONS(3248), - [sym_this] = ACTIONS(3248), - [sym_super] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_null] = ACTIONS(3248), - [sym_undefined] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3248), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_readonly] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3248), - [anon_sym_set] = ACTIONS(3248), - [anon_sym_declare] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_protected] = ACTIONS(3248), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_module] = ACTIONS(3248), - [anon_sym_any] = ACTIONS(3248), - [anon_sym_number] = ACTIONS(3248), - [anon_sym_boolean] = ACTIONS(3248), - [anon_sym_string] = ACTIONS(3248), - [anon_sym_symbol] = ACTIONS(3248), - [anon_sym_object] = ACTIONS(3248), - [anon_sym_abstract] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3260), + [anon_sym_export] = ACTIONS(3260), + [anon_sym_default] = ACTIONS(3260), + [anon_sym_type] = ACTIONS(3260), + [anon_sym_namespace] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_RBRACE] = ACTIONS(3260), + [anon_sym_typeof] = ACTIONS(3260), + [anon_sym_import] = ACTIONS(3260), + [anon_sym_with] = ACTIONS(3260), + [anon_sym_var] = ACTIONS(3260), + [anon_sym_let] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_BANG] = ACTIONS(3260), + [anon_sym_else] = ACTIONS(3260), + [anon_sym_if] = ACTIONS(3260), + [anon_sym_switch] = ACTIONS(3260), + [anon_sym_for] = ACTIONS(3260), + [anon_sym_LPAREN] = ACTIONS(3260), + [anon_sym_await] = ACTIONS(3260), + [anon_sym_while] = ACTIONS(3260), + [anon_sym_do] = ACTIONS(3260), + [anon_sym_try] = ACTIONS(3260), + [anon_sym_break] = ACTIONS(3260), + [anon_sym_continue] = ACTIONS(3260), + [anon_sym_debugger] = ACTIONS(3260), + [anon_sym_return] = ACTIONS(3260), + [anon_sym_throw] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_case] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_LTtemplate_GT] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3260), + [anon_sym_class] = ACTIONS(3260), + [anon_sym_async] = ACTIONS(3260), + [anon_sym_function] = ACTIONS(3260), + [anon_sym_new] = ACTIONS(3260), + [anon_sym_using] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_void] = ACTIONS(3260), + [anon_sym_delete] = ACTIONS(3260), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3260), + [sym_number] = ACTIONS(3260), + [sym_private_property_identifier] = ACTIONS(3260), + [sym_this] = ACTIONS(3260), + [sym_super] = ACTIONS(3260), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [sym_null] = ACTIONS(3260), + [sym_undefined] = ACTIONS(3260), + [anon_sym_AT] = ACTIONS(3260), + [anon_sym_static] = ACTIONS(3260), + [anon_sym_readonly] = ACTIONS(3260), + [anon_sym_get] = ACTIONS(3260), + [anon_sym_set] = ACTIONS(3260), + [anon_sym_declare] = ACTIONS(3260), + [anon_sym_public] = ACTIONS(3260), + [anon_sym_private] = ACTIONS(3260), + [anon_sym_protected] = ACTIONS(3260), + [anon_sym_override] = ACTIONS(3260), + [anon_sym_module] = ACTIONS(3260), + [anon_sym_any] = ACTIONS(3260), + [anon_sym_number] = ACTIONS(3260), + [anon_sym_boolean] = ACTIONS(3260), + [anon_sym_string] = ACTIONS(3260), + [anon_sym_symbol] = ACTIONS(3260), + [anon_sym_object] = ACTIONS(3260), + [anon_sym_abstract] = ACTIONS(3260), + [anon_sym_interface] = ACTIONS(3260), + [anon_sym_enum] = ACTIONS(3260), [sym_html_comment] = ACTIONS(5), }, [1052] = { [sym_comment] = STATE(1052), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3262), + [anon_sym_export] = ACTIONS(3262), + [anon_sym_default] = ACTIONS(3262), + [anon_sym_type] = ACTIONS(3262), + [anon_sym_namespace] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_typeof] = ACTIONS(3262), + [anon_sym_import] = ACTIONS(3262), + [anon_sym_with] = ACTIONS(3262), + [anon_sym_var] = ACTIONS(3262), + [anon_sym_let] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_BANG] = ACTIONS(3262), + [anon_sym_else] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_await] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_try] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_debugger] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_throw] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_case] = ACTIONS(3262), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_LTtemplate_GT] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_async] = ACTIONS(3262), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_using] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_LT] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_void] = ACTIONS(3262), + [anon_sym_delete] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3262), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1053] = { - [sym_comment] = STATE(1053), - [sym_identifier] = ACTIONS(2195), - [anon_sym_export] = ACTIONS(2195), - [anon_sym_default] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_namespace] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_typeof] = ACTIONS(2195), - [anon_sym_import] = ACTIONS(2195), - [anon_sym_with] = ACTIONS(2195), - [anon_sym_var] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_switch] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [anon_sym_do] = ACTIONS(2195), - [anon_sym_try] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_debugger] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_throw] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_case] = ACTIONS(2195), - [anon_sym_yield] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_LTtemplate_GT] = ACTIONS(2195), - [anon_sym_DOT] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_class] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_new] = ACTIONS(2195), - [anon_sym_using] = ACTIONS(2195), - [anon_sym_PLUS] = ACTIONS(2195), - [anon_sym_DASH] = ACTIONS(2195), - [anon_sym_SLASH] = ACTIONS(2195), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_TILDE] = ACTIONS(2195), - [anon_sym_void] = ACTIONS(2195), - [anon_sym_delete] = ACTIONS(2195), - [anon_sym_PLUS_PLUS] = ACTIONS(2195), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2195), - [sym_number] = ACTIONS(2195), - [sym_private_property_identifier] = ACTIONS(2195), - [sym_this] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_true] = ACTIONS(2195), - [sym_false] = ACTIONS(2195), - [sym_null] = ACTIONS(2195), - [sym_undefined] = ACTIONS(2195), - [anon_sym_AT] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_readonly] = ACTIONS(2195), - [anon_sym_get] = ACTIONS(2195), - [anon_sym_set] = ACTIONS(2195), - [anon_sym_declare] = ACTIONS(2195), - [anon_sym_public] = ACTIONS(2195), - [anon_sym_private] = ACTIONS(2195), - [anon_sym_protected] = ACTIONS(2195), - [anon_sym_override] = ACTIONS(2195), - [anon_sym_module] = ACTIONS(2195), - [anon_sym_any] = ACTIONS(2195), - [anon_sym_number] = ACTIONS(2195), - [anon_sym_boolean] = ACTIONS(2195), - [anon_sym_string] = ACTIONS(2195), - [anon_sym_symbol] = ACTIONS(2195), - [anon_sym_object] = ACTIONS(2195), - [anon_sym_abstract] = ACTIONS(2195), - [anon_sym_interface] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [sym_html_comment] = ACTIONS(5), + [anon_sym_BQUOTE] = ACTIONS(3262), + [sym_number] = ACTIONS(3262), + [sym_private_property_identifier] = ACTIONS(3262), + [sym_this] = ACTIONS(3262), + [sym_super] = ACTIONS(3262), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_null] = ACTIONS(3262), + [sym_undefined] = ACTIONS(3262), + [anon_sym_AT] = ACTIONS(3262), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_readonly] = ACTIONS(3262), + [anon_sym_get] = ACTIONS(3262), + [anon_sym_set] = ACTIONS(3262), + [anon_sym_declare] = ACTIONS(3262), + [anon_sym_public] = ACTIONS(3262), + [anon_sym_private] = ACTIONS(3262), + [anon_sym_protected] = ACTIONS(3262), + [anon_sym_override] = ACTIONS(3262), + [anon_sym_module] = ACTIONS(3262), + [anon_sym_any] = ACTIONS(3262), + [anon_sym_number] = ACTIONS(3262), + [anon_sym_boolean] = ACTIONS(3262), + [anon_sym_string] = ACTIONS(3262), + [anon_sym_symbol] = ACTIONS(3262), + [anon_sym_object] = ACTIONS(3262), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_interface] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), + [sym_html_comment] = ACTIONS(5), + }, + [1053] = { + [sym_comment] = STATE(1053), + [sym_identifier] = ACTIONS(3264), + [anon_sym_export] = ACTIONS(3264), + [anon_sym_default] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_namespace] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_RBRACE] = ACTIONS(3264), + [anon_sym_typeof] = ACTIONS(3264), + [anon_sym_import] = ACTIONS(3264), + [anon_sym_with] = ACTIONS(3264), + [anon_sym_var] = ACTIONS(3264), + [anon_sym_let] = ACTIONS(3264), + [anon_sym_const] = ACTIONS(3264), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_switch] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3264), + [anon_sym_await] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_do] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_debugger] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym_case] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_LTtemplate_GT] = ACTIONS(3264), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3264), + [anon_sym_class] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3264), + [anon_sym_using] = ACTIONS(3264), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_void] = ACTIONS(3264), + [anon_sym_delete] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_DASH_DASH] = ACTIONS(3264), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3264), + [sym_number] = ACTIONS(3264), + [sym_private_property_identifier] = ACTIONS(3264), + [sym_this] = ACTIONS(3264), + [sym_super] = ACTIONS(3264), + [sym_true] = ACTIONS(3264), + [sym_false] = ACTIONS(3264), + [sym_null] = ACTIONS(3264), + [sym_undefined] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3264), + [anon_sym_static] = ACTIONS(3264), + [anon_sym_readonly] = ACTIONS(3264), + [anon_sym_get] = ACTIONS(3264), + [anon_sym_set] = ACTIONS(3264), + [anon_sym_declare] = ACTIONS(3264), + [anon_sym_public] = ACTIONS(3264), + [anon_sym_private] = ACTIONS(3264), + [anon_sym_protected] = ACTIONS(3264), + [anon_sym_override] = ACTIONS(3264), + [anon_sym_module] = ACTIONS(3264), + [anon_sym_any] = ACTIONS(3264), + [anon_sym_number] = ACTIONS(3264), + [anon_sym_boolean] = ACTIONS(3264), + [anon_sym_string] = ACTIONS(3264), + [anon_sym_symbol] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_abstract] = ACTIONS(3264), + [anon_sym_interface] = ACTIONS(3264), + [anon_sym_enum] = ACTIONS(3264), + [sym_html_comment] = ACTIONS(5), }, [1054] = { [sym_comment] = STATE(1054), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3266), + [anon_sym_export] = ACTIONS(3266), + [anon_sym_default] = ACTIONS(3266), + [anon_sym_type] = ACTIONS(3266), + [anon_sym_namespace] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_typeof] = ACTIONS(3266), + [anon_sym_import] = ACTIONS(3266), + [anon_sym_with] = ACTIONS(3266), + [anon_sym_var] = ACTIONS(3266), + [anon_sym_let] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_await] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_try] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_debugger] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_throw] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_case] = ACTIONS(3266), + [anon_sym_yield] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_LTtemplate_GT] = ACTIONS(3266), + [anon_sym_DQUOTE] = ACTIONS(3266), + [anon_sym_SQUOTE] = ACTIONS(3266), + [anon_sym_class] = ACTIONS(3266), + [anon_sym_async] = ACTIONS(3266), + [anon_sym_function] = ACTIONS(3266), + [anon_sym_new] = ACTIONS(3266), + [anon_sym_using] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_SLASH] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_void] = ACTIONS(3266), + [anon_sym_delete] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3266), + [sym_number] = ACTIONS(3266), + [sym_private_property_identifier] = ACTIONS(3266), + [sym_this] = ACTIONS(3266), + [sym_super] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_null] = ACTIONS(3266), + [sym_undefined] = ACTIONS(3266), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_readonly] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3266), + [anon_sym_set] = ACTIONS(3266), + [anon_sym_declare] = ACTIONS(3266), + [anon_sym_public] = ACTIONS(3266), + [anon_sym_private] = ACTIONS(3266), + [anon_sym_protected] = ACTIONS(3266), + [anon_sym_override] = ACTIONS(3266), + [anon_sym_module] = ACTIONS(3266), + [anon_sym_any] = ACTIONS(3266), + [anon_sym_number] = ACTIONS(3266), + [anon_sym_boolean] = ACTIONS(3266), + [anon_sym_string] = ACTIONS(3266), + [anon_sym_symbol] = ACTIONS(3266), + [anon_sym_object] = ACTIONS(3266), + [anon_sym_abstract] = ACTIONS(3266), + [anon_sym_interface] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), [sym_html_comment] = ACTIONS(5), }, [1055] = { [sym_comment] = STATE(1055), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3268), + [anon_sym_export] = ACTIONS(3268), + [anon_sym_default] = ACTIONS(3268), + [anon_sym_type] = ACTIONS(3268), + [anon_sym_namespace] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3268), + [anon_sym_import] = ACTIONS(3268), + [anon_sym_with] = ACTIONS(3268), + [anon_sym_var] = ACTIONS(3268), + [anon_sym_let] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_switch] = ACTIONS(3268), + [anon_sym_for] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_do] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_debugger] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3268), + [anon_sym_yield] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LTtemplate_GT] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_class] = ACTIONS(3268), + [anon_sym_async] = ACTIONS(3268), + [anon_sym_function] = ACTIONS(3268), + [anon_sym_new] = ACTIONS(3268), + [anon_sym_using] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_private_property_identifier] = ACTIONS(3268), + [sym_this] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_true] = ACTIONS(3268), + [sym_false] = ACTIONS(3268), + [sym_null] = ACTIONS(3268), + [sym_undefined] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_readonly] = ACTIONS(3268), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_declare] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_module] = ACTIONS(3268), + [anon_sym_any] = ACTIONS(3268), + [anon_sym_number] = ACTIONS(3268), + [anon_sym_boolean] = ACTIONS(3268), + [anon_sym_string] = ACTIONS(3268), + [anon_sym_symbol] = ACTIONS(3268), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_interface] = ACTIONS(3268), + [anon_sym_enum] = ACTIONS(3268), [sym_html_comment] = ACTIONS(5), }, [1056] = { [sym_comment] = STATE(1056), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2137), + [anon_sym_default] = ACTIONS(2137), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_typeof] = ACTIONS(2137), + [anon_sym_import] = ACTIONS(2137), + [anon_sym_with] = ACTIONS(2137), + [anon_sym_var] = ACTIONS(2137), + [anon_sym_let] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_switch] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_await] = ACTIONS(2137), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_do] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_debugger] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_throw] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_case] = ACTIONS(2137), + [anon_sym_yield] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_LTtemplate_GT] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(2137), + [anon_sym_SQUOTE] = ACTIONS(2137), + [anon_sym_class] = ACTIONS(2137), + [anon_sym_async] = ACTIONS(2137), + [anon_sym_function] = ACTIONS(2137), + [anon_sym_new] = ACTIONS(2137), + [anon_sym_using] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_SLASH] = ACTIONS(2137), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_void] = ACTIONS(2137), + [anon_sym_delete] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2137), + [sym_number] = ACTIONS(2137), + [sym_private_property_identifier] = ACTIONS(2137), + [sym_this] = ACTIONS(2137), + [sym_super] = ACTIONS(2137), + [sym_true] = ACTIONS(2137), + [sym_false] = ACTIONS(2137), + [sym_null] = ACTIONS(2137), + [sym_undefined] = ACTIONS(2137), + [anon_sym_AT] = ACTIONS(2137), + [anon_sym_static] = ACTIONS(2137), + [anon_sym_readonly] = ACTIONS(2137), + [anon_sym_get] = ACTIONS(2137), + [anon_sym_set] = ACTIONS(2137), + [anon_sym_declare] = ACTIONS(2137), + [anon_sym_public] = ACTIONS(2137), + [anon_sym_private] = ACTIONS(2137), + [anon_sym_protected] = ACTIONS(2137), + [anon_sym_override] = ACTIONS(2137), + [anon_sym_module] = ACTIONS(2137), + [anon_sym_any] = ACTIONS(2137), + [anon_sym_number] = ACTIONS(2137), + [anon_sym_boolean] = ACTIONS(2137), + [anon_sym_string] = ACTIONS(2137), + [anon_sym_symbol] = ACTIONS(2137), + [anon_sym_object] = ACTIONS(2137), + [anon_sym_abstract] = ACTIONS(2137), + [anon_sym_interface] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [sym__automatic_semicolon] = ACTIONS(2281), [sym_html_comment] = ACTIONS(5), }, [1057] = { [sym_comment] = STATE(1057), - [sym_identifier] = ACTIONS(2081), - [anon_sym_export] = ACTIONS(2081), - [anon_sym_default] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_namespace] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_typeof] = ACTIONS(2081), - [anon_sym_import] = ACTIONS(2081), - [anon_sym_with] = ACTIONS(2081), - [anon_sym_var] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_switch] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_do] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_debugger] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_case] = ACTIONS(2081), - [anon_sym_yield] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_LTtemplate_GT] = ACTIONS(2081), - [anon_sym_DOT] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2081), - [anon_sym_class] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_function] = ACTIONS(2081), - [anon_sym_new] = ACTIONS(2081), - [anon_sym_using] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_SLASH] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2081), - [anon_sym_void] = ACTIONS(2081), - [anon_sym_delete] = ACTIONS(2081), - [anon_sym_PLUS_PLUS] = ACTIONS(2081), - [anon_sym_DASH_DASH] = ACTIONS(2081), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2081), - [sym_number] = ACTIONS(2081), - [sym_private_property_identifier] = ACTIONS(2081), - [sym_this] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_true] = ACTIONS(2081), - [sym_false] = ACTIONS(2081), - [sym_null] = ACTIONS(2081), - [sym_undefined] = ACTIONS(2081), - [anon_sym_AT] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_readonly] = ACTIONS(2081), - [anon_sym_get] = ACTIONS(2081), - [anon_sym_set] = ACTIONS(2081), - [anon_sym_declare] = ACTIONS(2081), - [anon_sym_public] = ACTIONS(2081), - [anon_sym_private] = ACTIONS(2081), - [anon_sym_protected] = ACTIONS(2081), - [anon_sym_override] = ACTIONS(2081), - [anon_sym_module] = ACTIONS(2081), - [anon_sym_any] = ACTIONS(2081), - [anon_sym_number] = ACTIONS(2081), - [anon_sym_boolean] = ACTIONS(2081), - [anon_sym_string] = ACTIONS(2081), - [anon_sym_symbol] = ACTIONS(2081), - [anon_sym_object] = ACTIONS(2081), - [anon_sym_abstract] = ACTIONS(2081), - [anon_sym_interface] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(3270), [sym_html_comment] = ACTIONS(5), }, [1058] = { [sym_comment] = STATE(1058), - [sym_identifier] = ACTIONS(2199), - [anon_sym_export] = ACTIONS(2199), - [anon_sym_default] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2199), - [anon_sym_namespace] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_typeof] = ACTIONS(2199), - [anon_sym_import] = ACTIONS(2199), - [anon_sym_with] = ACTIONS(2199), - [anon_sym_var] = ACTIONS(2199), - [anon_sym_let] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_else] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_switch] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_await] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2199), - [anon_sym_do] = ACTIONS(2199), - [anon_sym_try] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_debugger] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_throw] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_case] = ACTIONS(2199), - [anon_sym_yield] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_LTtemplate_GT] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2199), - [anon_sym_SQUOTE] = ACTIONS(2199), - [anon_sym_class] = ACTIONS(2199), - [anon_sym_async] = ACTIONS(2199), - [anon_sym_function] = ACTIONS(2199), - [anon_sym_new] = ACTIONS(2199), - [anon_sym_using] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_SLASH] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_void] = ACTIONS(2199), - [anon_sym_delete] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2199), - [sym_number] = ACTIONS(2199), - [sym_private_property_identifier] = ACTIONS(2199), - [sym_this] = ACTIONS(2199), - [sym_super] = ACTIONS(2199), - [sym_true] = ACTIONS(2199), - [sym_false] = ACTIONS(2199), - [sym_null] = ACTIONS(2199), - [sym_undefined] = ACTIONS(2199), - [anon_sym_AT] = ACTIONS(2199), - [anon_sym_static] = ACTIONS(2199), - [anon_sym_readonly] = ACTIONS(2199), - [anon_sym_get] = ACTIONS(2199), - [anon_sym_set] = ACTIONS(2199), - [anon_sym_declare] = ACTIONS(2199), - [anon_sym_public] = ACTIONS(2199), - [anon_sym_private] = ACTIONS(2199), - [anon_sym_protected] = ACTIONS(2199), - [anon_sym_override] = ACTIONS(2199), - [anon_sym_module] = ACTIONS(2199), - [anon_sym_any] = ACTIONS(2199), - [anon_sym_number] = ACTIONS(2199), - [anon_sym_boolean] = ACTIONS(2199), - [anon_sym_string] = ACTIONS(2199), - [anon_sym_symbol] = ACTIONS(2199), - [anon_sym_object] = ACTIONS(2199), - [anon_sym_abstract] = ACTIONS(2199), - [anon_sym_interface] = ACTIONS(2199), - [anon_sym_enum] = ACTIONS(2199), + [sym_identifier] = ACTIONS(3094), + [anon_sym_export] = ACTIONS(3094), + [anon_sym_default] = ACTIONS(3094), + [anon_sym_type] = ACTIONS(3094), + [anon_sym_namespace] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_typeof] = ACTIONS(3094), + [anon_sym_import] = ACTIONS(3094), + [anon_sym_with] = ACTIONS(3094), + [anon_sym_var] = ACTIONS(3094), + [anon_sym_let] = ACTIONS(3094), + [anon_sym_const] = ACTIONS(3094), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_switch] = ACTIONS(3094), + [anon_sym_for] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3094), + [anon_sym_await] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_do] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_debugger] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_case] = ACTIONS(3094), + [anon_sym_finally] = ACTIONS(3094), + [anon_sym_yield] = ACTIONS(3094), + [anon_sym_LBRACK] = ACTIONS(3094), + [anon_sym_LTtemplate_GT] = ACTIONS(3094), + [anon_sym_DQUOTE] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3094), + [anon_sym_class] = ACTIONS(3094), + [anon_sym_async] = ACTIONS(3094), + [anon_sym_function] = ACTIONS(3094), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_using] = ACTIONS(3094), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_TILDE] = ACTIONS(3094), + [anon_sym_void] = ACTIONS(3094), + [anon_sym_delete] = ACTIONS(3094), + [anon_sym_PLUS_PLUS] = ACTIONS(3094), + [anon_sym_DASH_DASH] = ACTIONS(3094), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3094), + [sym_number] = ACTIONS(3094), + [sym_private_property_identifier] = ACTIONS(3094), + [sym_this] = ACTIONS(3094), + [sym_super] = ACTIONS(3094), + [sym_true] = ACTIONS(3094), + [sym_false] = ACTIONS(3094), + [sym_null] = ACTIONS(3094), + [sym_undefined] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(3094), + [anon_sym_static] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_declare] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_module] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3094), + [anon_sym_number] = ACTIONS(3094), + [anon_sym_boolean] = ACTIONS(3094), + [anon_sym_string] = ACTIONS(3094), + [anon_sym_symbol] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_interface] = ACTIONS(3094), + [anon_sym_enum] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [1059] = { [sym_comment] = STATE(1059), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2149), - [anon_sym_default] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_typeof] = ACTIONS(2149), - [anon_sym_import] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(2149), - [anon_sym_var] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_debugger] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_case] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LTtemplate_GT] = ACTIONS(2149), - [anon_sym_DQUOTE] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_void] = ACTIONS(2149), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_default] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_case] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2149), - [sym_number] = ACTIONS(2149), - [sym_private_property_identifier] = ACTIONS(2149), - [sym_this] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_null] = ACTIONS(2149), - [sym_undefined] = ACTIONS(2149), - [anon_sym_AT] = ACTIONS(2149), - [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_abstract] = ACTIONS(2149), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [sym__automatic_semicolon] = ACTIONS(2369), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, [1060] = { [sym_comment] = STATE(1060), - [sym_identifier] = ACTIONS(3250), - [anon_sym_export] = ACTIONS(3250), - [anon_sym_default] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_namespace] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3250), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_typeof] = ACTIONS(3250), - [anon_sym_import] = ACTIONS(3250), - [anon_sym_with] = ACTIONS(3250), - [anon_sym_var] = ACTIONS(3250), - [anon_sym_let] = ACTIONS(3250), - [anon_sym_const] = ACTIONS(3250), - [anon_sym_BANG] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3250), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_switch] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_await] = ACTIONS(3250), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_do] = ACTIONS(3250), - [anon_sym_try] = ACTIONS(3250), - [anon_sym_break] = ACTIONS(3250), - [anon_sym_continue] = ACTIONS(3250), - [anon_sym_debugger] = ACTIONS(3250), - [anon_sym_return] = ACTIONS(3250), - [anon_sym_throw] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_case] = ACTIONS(3250), - [anon_sym_yield] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_LTtemplate_GT] = ACTIONS(3250), - [anon_sym_DQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_class] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_function] = ACTIONS(3250), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_using] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_SLASH] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_TILDE] = ACTIONS(3250), - [anon_sym_void] = ACTIONS(3250), - [anon_sym_delete] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), + [sym_identifier] = ACTIONS(3274), + [anon_sym_export] = ACTIONS(3274), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_typeof] = ACTIONS(3274), + [anon_sym_import] = ACTIONS(3274), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_var] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3274), + [anon_sym_else] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_await] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_debugger] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_throw] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_case] = ACTIONS(3274), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LTtemplate_GT] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_SQUOTE] = ACTIONS(3274), + [anon_sym_class] = ACTIONS(3274), + [anon_sym_async] = ACTIONS(3274), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_using] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_SLASH] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3274), + [anon_sym_void] = ACTIONS(3274), + [anon_sym_delete] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3250), - [sym_number] = ACTIONS(3250), - [sym_private_property_identifier] = ACTIONS(3250), - [sym_this] = ACTIONS(3250), - [sym_super] = ACTIONS(3250), - [sym_true] = ACTIONS(3250), - [sym_false] = ACTIONS(3250), - [sym_null] = ACTIONS(3250), - [sym_undefined] = ACTIONS(3250), - [anon_sym_AT] = ACTIONS(3250), - [anon_sym_static] = ACTIONS(3250), - [anon_sym_readonly] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3250), - [anon_sym_set] = ACTIONS(3250), - [anon_sym_declare] = ACTIONS(3250), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_protected] = ACTIONS(3250), - [anon_sym_override] = ACTIONS(3250), - [anon_sym_module] = ACTIONS(3250), - [anon_sym_any] = ACTIONS(3250), - [anon_sym_number] = ACTIONS(3250), - [anon_sym_boolean] = ACTIONS(3250), - [anon_sym_string] = ACTIONS(3250), - [anon_sym_symbol] = ACTIONS(3250), - [anon_sym_object] = ACTIONS(3250), - [anon_sym_abstract] = ACTIONS(3250), - [anon_sym_interface] = ACTIONS(3250), - [anon_sym_enum] = ACTIONS(3250), + [anon_sym_BQUOTE] = ACTIONS(3274), + [sym_number] = ACTIONS(3274), + [sym_private_property_identifier] = ACTIONS(3274), + [sym_this] = ACTIONS(3274), + [sym_super] = ACTIONS(3274), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [sym_null] = ACTIONS(3274), + [sym_undefined] = ACTIONS(3274), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_readonly] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3274), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_declare] = ACTIONS(3274), + [anon_sym_public] = ACTIONS(3274), + [anon_sym_private] = ACTIONS(3274), + [anon_sym_protected] = ACTIONS(3274), + [anon_sym_override] = ACTIONS(3274), + [anon_sym_module] = ACTIONS(3274), + [anon_sym_any] = ACTIONS(3274), + [anon_sym_number] = ACTIONS(3274), + [anon_sym_boolean] = ACTIONS(3274), + [anon_sym_string] = ACTIONS(3274), + [anon_sym_symbol] = ACTIONS(3274), + [anon_sym_object] = ACTIONS(3274), + [anon_sym_abstract] = ACTIONS(3274), + [anon_sym_interface] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), [sym_html_comment] = ACTIONS(5), }, [1061] = { [sym_comment] = STATE(1061), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [sym_identifier] = ACTIONS(2221), + [anon_sym_export] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_typeof] = ACTIONS(2221), + [anon_sym_import] = ACTIONS(2221), + [anon_sym_with] = ACTIONS(2221), + [anon_sym_var] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_debugger] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_case] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LTtemplate_GT] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_void] = ACTIONS(2221), + [anon_sym_delete] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(2221), + [sym_number] = ACTIONS(2221), + [sym_private_property_identifier] = ACTIONS(2221), + [sym_this] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_null] = ACTIONS(2221), + [sym_undefined] = ACTIONS(2221), + [anon_sym_AT] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_get] = ACTIONS(2221), + [anon_sym_set] = ACTIONS(2221), + [anon_sym_declare] = ACTIONS(2221), + [anon_sym_public] = ACTIONS(2221), + [anon_sym_private] = ACTIONS(2221), + [anon_sym_protected] = ACTIONS(2221), + [anon_sym_override] = ACTIONS(2221), + [anon_sym_module] = ACTIONS(2221), + [anon_sym_any] = ACTIONS(2221), + [anon_sym_number] = ACTIONS(2221), + [anon_sym_boolean] = ACTIONS(2221), + [anon_sym_string] = ACTIONS(2221), + [anon_sym_symbol] = ACTIONS(2221), + [anon_sym_object] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [sym__automatic_semicolon] = ACTIONS(2223), [sym_html_comment] = ACTIONS(5), }, [1062] = { [sym_comment] = STATE(1062), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(3276), [sym_html_comment] = ACTIONS(5), }, [1063] = { [sym_comment] = STATE(1063), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(2115), [sym_html_comment] = ACTIONS(5), }, [1064] = { [sym_comment] = STATE(1064), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_default] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_case] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_default] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_case] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, [1065] = { [sym_comment] = STATE(1065), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_default] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_case] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), + [sym_identifier] = ACTIONS(2221), + [anon_sym_export] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_typeof] = ACTIONS(2221), + [anon_sym_import] = ACTIONS(2221), + [anon_sym_with] = ACTIONS(2221), + [anon_sym_var] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_debugger] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_case] = ACTIONS(2221), + [anon_sym_finally] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LTtemplate_GT] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_void] = ACTIONS(2221), + [anon_sym_delete] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [anon_sym_BQUOTE] = ACTIONS(2221), + [sym_number] = ACTIONS(2221), + [sym_private_property_identifier] = ACTIONS(2221), + [sym_this] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_null] = ACTIONS(2221), + [sym_undefined] = ACTIONS(2221), + [anon_sym_AT] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_get] = ACTIONS(2221), + [anon_sym_set] = ACTIONS(2221), + [anon_sym_declare] = ACTIONS(2221), + [anon_sym_public] = ACTIONS(2221), + [anon_sym_private] = ACTIONS(2221), + [anon_sym_protected] = ACTIONS(2221), + [anon_sym_override] = ACTIONS(2221), + [anon_sym_module] = ACTIONS(2221), + [anon_sym_any] = ACTIONS(2221), + [anon_sym_number] = ACTIONS(2221), + [anon_sym_boolean] = ACTIONS(2221), + [anon_sym_string] = ACTIONS(2221), + [anon_sym_symbol] = ACTIONS(2221), + [anon_sym_object] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), [sym_html_comment] = ACTIONS(5), }, [1066] = { [sym_comment] = STATE(1066), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_default] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_case] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3278), + [anon_sym_export] = ACTIONS(3278), + [anon_sym_default] = ACTIONS(3278), + [anon_sym_type] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3278), + [anon_sym_RBRACE] = ACTIONS(3278), + [anon_sym_typeof] = ACTIONS(3278), + [anon_sym_import] = ACTIONS(3278), + [anon_sym_with] = ACTIONS(3278), + [anon_sym_var] = ACTIONS(3278), + [anon_sym_let] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_LPAREN] = ACTIONS(3278), + [anon_sym_await] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_debugger] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3278), + [anon_sym_case] = ACTIONS(3278), + [anon_sym_yield] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_LTtemplate_GT] = ACTIONS(3278), + [anon_sym_DQUOTE] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3278), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_async] = ACTIONS(3278), + [anon_sym_function] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3278), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_TILDE] = ACTIONS(3278), + [anon_sym_void] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_PLUS_PLUS] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3278), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [anon_sym_BQUOTE] = ACTIONS(3278), + [sym_number] = ACTIONS(3278), + [sym_private_property_identifier] = ACTIONS(3278), + [sym_this] = ACTIONS(3278), + [sym_super] = ACTIONS(3278), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [sym_null] = ACTIONS(3278), + [sym_undefined] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_readonly] = ACTIONS(3278), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_declare] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_module] = ACTIONS(3278), + [anon_sym_any] = ACTIONS(3278), + [anon_sym_number] = ACTIONS(3278), + [anon_sym_boolean] = ACTIONS(3278), + [anon_sym_string] = ACTIONS(3278), + [anon_sym_symbol] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_interface] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), [sym_html_comment] = ACTIONS(5), }, [1067] = { [sym_comment] = STATE(1067), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_default] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_case] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), [sym_html_comment] = ACTIONS(5), }, [1068] = { + [sym_statement_block] = STATE(1351), [sym_comment] = STATE(1068), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), + [ts_builtin_sym_end] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_else] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), [sym_html_comment] = ACTIONS(5), }, [1069] = { [sym_comment] = STATE(1069), - [sym_identifier] = ACTIONS(3254), - [anon_sym_export] = ACTIONS(3254), - [anon_sym_default] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_namespace] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3254), - [anon_sym_typeof] = ACTIONS(3254), - [anon_sym_import] = ACTIONS(3254), - [anon_sym_with] = ACTIONS(3254), - [anon_sym_var] = ACTIONS(3254), - [anon_sym_let] = ACTIONS(3254), - [anon_sym_const] = ACTIONS(3254), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_else] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_switch] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_await] = ACTIONS(3254), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_do] = ACTIONS(3254), - [anon_sym_try] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_debugger] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_throw] = ACTIONS(3254), - [anon_sym_SEMI] = ACTIONS(3254), - [anon_sym_case] = ACTIONS(3254), - [anon_sym_yield] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_LTtemplate_GT] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(3254), - [anon_sym_class] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_function] = ACTIONS(3254), - [anon_sym_new] = ACTIONS(3254), - [anon_sym_using] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3254), - [anon_sym_void] = ACTIONS(3254), - [anon_sym_delete] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3254), - [sym_number] = ACTIONS(3254), - [sym_private_property_identifier] = ACTIONS(3254), - [sym_this] = ACTIONS(3254), - [sym_super] = ACTIONS(3254), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_undefined] = ACTIONS(3254), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_readonly] = ACTIONS(3254), - [anon_sym_get] = ACTIONS(3254), - [anon_sym_set] = ACTIONS(3254), - [anon_sym_declare] = ACTIONS(3254), - [anon_sym_public] = ACTIONS(3254), - [anon_sym_private] = ACTIONS(3254), - [anon_sym_protected] = ACTIONS(3254), - [anon_sym_override] = ACTIONS(3254), - [anon_sym_module] = ACTIONS(3254), - [anon_sym_any] = ACTIONS(3254), - [anon_sym_number] = ACTIONS(3254), - [anon_sym_boolean] = ACTIONS(3254), - [anon_sym_string] = ACTIONS(3254), - [anon_sym_symbol] = ACTIONS(3254), - [anon_sym_object] = ACTIONS(3254), - [anon_sym_abstract] = ACTIONS(3254), - [anon_sym_interface] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3254), + [sym_identifier] = ACTIONS(3280), + [anon_sym_export] = ACTIONS(3280), + [anon_sym_default] = ACTIONS(3280), + [anon_sym_type] = ACTIONS(3280), + [anon_sym_namespace] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_typeof] = ACTIONS(3280), + [anon_sym_import] = ACTIONS(3280), + [anon_sym_with] = ACTIONS(3280), + [anon_sym_var] = ACTIONS(3280), + [anon_sym_let] = ACTIONS(3280), + [anon_sym_const] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_else] = ACTIONS(3280), + [anon_sym_if] = ACTIONS(3280), + [anon_sym_switch] = ACTIONS(3280), + [anon_sym_for] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_await] = ACTIONS(3280), + [anon_sym_while] = ACTIONS(3280), + [anon_sym_do] = ACTIONS(3280), + [anon_sym_try] = ACTIONS(3280), + [anon_sym_break] = ACTIONS(3280), + [anon_sym_continue] = ACTIONS(3280), + [anon_sym_debugger] = ACTIONS(3280), + [anon_sym_return] = ACTIONS(3280), + [anon_sym_throw] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_case] = ACTIONS(3280), + [anon_sym_yield] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_LTtemplate_GT] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_class] = ACTIONS(3280), + [anon_sym_async] = ACTIONS(3280), + [anon_sym_function] = ACTIONS(3280), + [anon_sym_new] = ACTIONS(3280), + [anon_sym_using] = ACTIONS(3280), + [anon_sym_PLUS] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3280), + [anon_sym_SLASH] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_void] = ACTIONS(3280), + [anon_sym_delete] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3280), + [sym_number] = ACTIONS(3280), + [sym_private_property_identifier] = ACTIONS(3280), + [sym_this] = ACTIONS(3280), + [sym_super] = ACTIONS(3280), + [sym_true] = ACTIONS(3280), + [sym_false] = ACTIONS(3280), + [sym_null] = ACTIONS(3280), + [sym_undefined] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_static] = ACTIONS(3280), + [anon_sym_readonly] = ACTIONS(3280), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3280), + [anon_sym_declare] = ACTIONS(3280), + [anon_sym_public] = ACTIONS(3280), + [anon_sym_private] = ACTIONS(3280), + [anon_sym_protected] = ACTIONS(3280), + [anon_sym_override] = ACTIONS(3280), + [anon_sym_module] = ACTIONS(3280), + [anon_sym_any] = ACTIONS(3280), + [anon_sym_number] = ACTIONS(3280), + [anon_sym_boolean] = ACTIONS(3280), + [anon_sym_string] = ACTIONS(3280), + [anon_sym_symbol] = ACTIONS(3280), + [anon_sym_object] = ACTIONS(3280), + [anon_sym_abstract] = ACTIONS(3280), + [anon_sym_interface] = ACTIONS(3280), + [anon_sym_enum] = ACTIONS(3280), [sym_html_comment] = ACTIONS(5), }, [1070] = { [sym_comment] = STATE(1070), - [sym_identifier] = ACTIONS(3256), - [anon_sym_export] = ACTIONS(3256), - [anon_sym_default] = ACTIONS(3256), - [anon_sym_type] = ACTIONS(3256), - [anon_sym_namespace] = ACTIONS(3256), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3256), - [anon_sym_typeof] = ACTIONS(3256), - [anon_sym_import] = ACTIONS(3256), - [anon_sym_with] = ACTIONS(3256), - [anon_sym_var] = ACTIONS(3256), - [anon_sym_let] = ACTIONS(3256), - [anon_sym_const] = ACTIONS(3256), - [anon_sym_BANG] = ACTIONS(3256), - [anon_sym_else] = ACTIONS(3256), - [anon_sym_if] = ACTIONS(3256), - [anon_sym_switch] = ACTIONS(3256), - [anon_sym_for] = ACTIONS(3256), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_await] = ACTIONS(3256), - [anon_sym_while] = ACTIONS(3256), - [anon_sym_do] = ACTIONS(3256), - [anon_sym_try] = ACTIONS(3256), - [anon_sym_break] = ACTIONS(3256), - [anon_sym_continue] = ACTIONS(3256), - [anon_sym_debugger] = ACTIONS(3256), - [anon_sym_return] = ACTIONS(3256), - [anon_sym_throw] = ACTIONS(3256), - [anon_sym_SEMI] = ACTIONS(3256), - [anon_sym_case] = ACTIONS(3256), - [anon_sym_yield] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_LTtemplate_GT] = ACTIONS(3256), - [anon_sym_DQUOTE] = ACTIONS(3256), - [anon_sym_SQUOTE] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3256), - [anon_sym_async] = ACTIONS(3256), - [anon_sym_function] = ACTIONS(3256), - [anon_sym_new] = ACTIONS(3256), - [anon_sym_using] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3256), - [anon_sym_DASH] = ACTIONS(3256), - [anon_sym_SLASH] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3256), - [anon_sym_TILDE] = ACTIONS(3256), - [anon_sym_void] = ACTIONS(3256), - [anon_sym_delete] = ACTIONS(3256), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3256), - [sym_number] = ACTIONS(3256), - [sym_private_property_identifier] = ACTIONS(3256), - [sym_this] = ACTIONS(3256), - [sym_super] = ACTIONS(3256), - [sym_true] = ACTIONS(3256), - [sym_false] = ACTIONS(3256), - [sym_null] = ACTIONS(3256), - [sym_undefined] = ACTIONS(3256), - [anon_sym_AT] = ACTIONS(3256), - [anon_sym_static] = ACTIONS(3256), - [anon_sym_readonly] = ACTIONS(3256), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3256), - [anon_sym_declare] = ACTIONS(3256), - [anon_sym_public] = ACTIONS(3256), - [anon_sym_private] = ACTIONS(3256), - [anon_sym_protected] = ACTIONS(3256), - [anon_sym_override] = ACTIONS(3256), - [anon_sym_module] = ACTIONS(3256), - [anon_sym_any] = ACTIONS(3256), - [anon_sym_number] = ACTIONS(3256), - [anon_sym_boolean] = ACTIONS(3256), - [anon_sym_string] = ACTIONS(3256), - [anon_sym_symbol] = ACTIONS(3256), - [anon_sym_object] = ACTIONS(3256), - [anon_sym_abstract] = ACTIONS(3256), - [anon_sym_interface] = ACTIONS(3256), - [anon_sym_enum] = ACTIONS(3256), + [ts_builtin_sym_end] = ACTIONS(2329), + [sym_identifier] = ACTIONS(2241), + [anon_sym_export] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_namespace] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2241), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_typeof] = ACTIONS(2241), + [anon_sym_import] = ACTIONS(2241), + [anon_sym_with] = ACTIONS(2241), + [anon_sym_var] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_else] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_switch] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_await] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_do] = ACTIONS(2241), + [anon_sym_try] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_debugger] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_throw] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(2241), + [anon_sym_yield] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_LTtemplate_GT] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_class] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_function] = ACTIONS(2241), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_using] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_SLASH] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_void] = ACTIONS(2241), + [anon_sym_delete] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2241), + [sym_number] = ACTIONS(2241), + [sym_private_property_identifier] = ACTIONS(2241), + [sym_this] = ACTIONS(2241), + [sym_super] = ACTIONS(2241), + [sym_true] = ACTIONS(2241), + [sym_false] = ACTIONS(2241), + [sym_null] = ACTIONS(2241), + [sym_undefined] = ACTIONS(2241), + [anon_sym_AT] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_readonly] = ACTIONS(2241), + [anon_sym_get] = ACTIONS(2241), + [anon_sym_set] = ACTIONS(2241), + [anon_sym_declare] = ACTIONS(2241), + [anon_sym_public] = ACTIONS(2241), + [anon_sym_private] = ACTIONS(2241), + [anon_sym_protected] = ACTIONS(2241), + [anon_sym_override] = ACTIONS(2241), + [anon_sym_module] = ACTIONS(2241), + [anon_sym_any] = ACTIONS(2241), + [anon_sym_number] = ACTIONS(2241), + [anon_sym_boolean] = ACTIONS(2241), + [anon_sym_string] = ACTIONS(2241), + [anon_sym_symbol] = ACTIONS(2241), + [anon_sym_object] = ACTIONS(2241), + [anon_sym_abstract] = ACTIONS(2241), + [anon_sym_interface] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [sym__automatic_semicolon] = ACTIONS(2331), [sym_html_comment] = ACTIONS(5), }, [1071] = { [sym_comment] = STATE(1071), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_default] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_case] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_case] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [sym__automatic_semicolon] = ACTIONS(3282), [sym_html_comment] = ACTIONS(5), }, [1072] = { [sym_comment] = STATE(1072), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_default] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_case] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [ts_builtin_sym_end] = ACTIONS(2275), + [sym_identifier] = ACTIONS(2189), + [anon_sym_export] = ACTIONS(2189), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_namespace] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_typeof] = ACTIONS(2189), + [anon_sym_import] = ACTIONS(2189), + [anon_sym_with] = ACTIONS(2189), + [anon_sym_var] = ACTIONS(2189), + [anon_sym_let] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_else] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_switch] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_await] = ACTIONS(2189), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_do] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_debugger] = ACTIONS(2189), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2189), + [anon_sym_SEMI] = ACTIONS(2189), + [anon_sym_yield] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_LTtemplate_GT] = ACTIONS(2189), + [anon_sym_DQUOTE] = ACTIONS(2189), + [anon_sym_SQUOTE] = ACTIONS(2189), + [anon_sym_class] = ACTIONS(2189), + [anon_sym_async] = ACTIONS(2189), + [anon_sym_function] = ACTIONS(2189), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_using] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_SLASH] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_TILDE] = ACTIONS(2189), + [anon_sym_void] = ACTIONS(2189), + [anon_sym_delete] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2189), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2189), + [sym_number] = ACTIONS(2189), + [sym_private_property_identifier] = ACTIONS(2189), + [sym_this] = ACTIONS(2189), + [sym_super] = ACTIONS(2189), + [sym_true] = ACTIONS(2189), + [sym_false] = ACTIONS(2189), + [sym_null] = ACTIONS(2189), + [sym_undefined] = ACTIONS(2189), + [anon_sym_AT] = ACTIONS(2189), + [anon_sym_static] = ACTIONS(2189), + [anon_sym_readonly] = ACTIONS(2189), + [anon_sym_get] = ACTIONS(2189), + [anon_sym_set] = ACTIONS(2189), + [anon_sym_declare] = ACTIONS(2189), + [anon_sym_public] = ACTIONS(2189), + [anon_sym_private] = ACTIONS(2189), + [anon_sym_protected] = ACTIONS(2189), + [anon_sym_override] = ACTIONS(2189), + [anon_sym_module] = ACTIONS(2189), + [anon_sym_any] = ACTIONS(2189), + [anon_sym_number] = ACTIONS(2189), + [anon_sym_boolean] = ACTIONS(2189), + [anon_sym_string] = ACTIONS(2189), + [anon_sym_symbol] = ACTIONS(2189), + [anon_sym_object] = ACTIONS(2189), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_interface] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [sym__automatic_semicolon] = ACTIONS(2277), [sym_html_comment] = ACTIONS(5), }, [1073] = { [sym_comment] = STATE(1073), - [sym_identifier] = ACTIONS(3258), - [anon_sym_export] = ACTIONS(3258), - [anon_sym_default] = ACTIONS(3258), - [anon_sym_type] = ACTIONS(3258), - [anon_sym_namespace] = ACTIONS(3258), - [anon_sym_LBRACE] = ACTIONS(3258), - [anon_sym_RBRACE] = ACTIONS(3258), - [anon_sym_typeof] = ACTIONS(3258), - [anon_sym_import] = ACTIONS(3258), - [anon_sym_with] = ACTIONS(3258), - [anon_sym_var] = ACTIONS(3258), - [anon_sym_let] = ACTIONS(3258), - [anon_sym_const] = ACTIONS(3258), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_else] = ACTIONS(3258), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_switch] = ACTIONS(3258), - [anon_sym_for] = ACTIONS(3258), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_await] = ACTIONS(3258), - [anon_sym_while] = ACTIONS(3258), - [anon_sym_do] = ACTIONS(3258), - [anon_sym_try] = ACTIONS(3258), - [anon_sym_break] = ACTIONS(3258), - [anon_sym_continue] = ACTIONS(3258), - [anon_sym_debugger] = ACTIONS(3258), - [anon_sym_return] = ACTIONS(3258), - [anon_sym_throw] = ACTIONS(3258), - [anon_sym_SEMI] = ACTIONS(3258), - [anon_sym_case] = ACTIONS(3258), - [anon_sym_yield] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3258), - [anon_sym_LTtemplate_GT] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_SQUOTE] = ACTIONS(3258), - [anon_sym_class] = ACTIONS(3258), - [anon_sym_async] = ACTIONS(3258), - [anon_sym_function] = ACTIONS(3258), - [anon_sym_new] = ACTIONS(3258), - [anon_sym_using] = ACTIONS(3258), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_SLASH] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(3258), - [anon_sym_void] = ACTIONS(3258), - [anon_sym_delete] = ACTIONS(3258), - [anon_sym_PLUS_PLUS] = ACTIONS(3258), - [anon_sym_DASH_DASH] = ACTIONS(3258), + [sym_identifier] = ACTIONS(3284), + [anon_sym_export] = ACTIONS(3284), + [anon_sym_default] = ACTIONS(3284), + [anon_sym_type] = ACTIONS(3284), + [anon_sym_namespace] = ACTIONS(3284), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_RBRACE] = ACTIONS(3284), + [anon_sym_typeof] = ACTIONS(3284), + [anon_sym_import] = ACTIONS(3284), + [anon_sym_with] = ACTIONS(3284), + [anon_sym_var] = ACTIONS(3284), + [anon_sym_let] = ACTIONS(3284), + [anon_sym_const] = ACTIONS(3284), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3284), + [anon_sym_switch] = ACTIONS(3284), + [anon_sym_for] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3284), + [anon_sym_await] = ACTIONS(3284), + [anon_sym_while] = ACTIONS(3284), + [anon_sym_do] = ACTIONS(3284), + [anon_sym_try] = ACTIONS(3284), + [anon_sym_break] = ACTIONS(3284), + [anon_sym_continue] = ACTIONS(3284), + [anon_sym_debugger] = ACTIONS(3284), + [anon_sym_return] = ACTIONS(3284), + [anon_sym_throw] = ACTIONS(3284), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_case] = ACTIONS(3284), + [anon_sym_yield] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3284), + [anon_sym_LTtemplate_GT] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3284), + [anon_sym_class] = ACTIONS(3284), + [anon_sym_async] = ACTIONS(3284), + [anon_sym_function] = ACTIONS(3284), + [anon_sym_new] = ACTIONS(3284), + [anon_sym_using] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_void] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_DASH_DASH] = ACTIONS(3284), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3258), - [sym_number] = ACTIONS(3258), - [sym_private_property_identifier] = ACTIONS(3258), - [sym_this] = ACTIONS(3258), - [sym_super] = ACTIONS(3258), - [sym_true] = ACTIONS(3258), - [sym_false] = ACTIONS(3258), - [sym_null] = ACTIONS(3258), - [sym_undefined] = ACTIONS(3258), - [anon_sym_AT] = ACTIONS(3258), - [anon_sym_static] = ACTIONS(3258), - [anon_sym_readonly] = ACTIONS(3258), - [anon_sym_get] = ACTIONS(3258), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_declare] = ACTIONS(3258), - [anon_sym_public] = ACTIONS(3258), - [anon_sym_private] = ACTIONS(3258), - [anon_sym_protected] = ACTIONS(3258), - [anon_sym_override] = ACTIONS(3258), - [anon_sym_module] = ACTIONS(3258), - [anon_sym_any] = ACTIONS(3258), - [anon_sym_number] = ACTIONS(3258), - [anon_sym_boolean] = ACTIONS(3258), - [anon_sym_string] = ACTIONS(3258), - [anon_sym_symbol] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3258), - [anon_sym_abstract] = ACTIONS(3258), - [anon_sym_interface] = ACTIONS(3258), - [anon_sym_enum] = ACTIONS(3258), - [sym_html_comment] = ACTIONS(5), - }, - [1074] = { - [sym_comment] = STATE(1074), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3284), + [sym_number] = ACTIONS(3284), + [sym_private_property_identifier] = ACTIONS(3284), + [sym_this] = ACTIONS(3284), + [sym_super] = ACTIONS(3284), + [sym_true] = ACTIONS(3284), + [sym_false] = ACTIONS(3284), + [sym_null] = ACTIONS(3284), + [sym_undefined] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3284), + [anon_sym_static] = ACTIONS(3284), + [anon_sym_readonly] = ACTIONS(3284), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3284), + [anon_sym_declare] = ACTIONS(3284), + [anon_sym_public] = ACTIONS(3284), + [anon_sym_private] = ACTIONS(3284), + [anon_sym_protected] = ACTIONS(3284), + [anon_sym_override] = ACTIONS(3284), + [anon_sym_module] = ACTIONS(3284), + [anon_sym_any] = ACTIONS(3284), + [anon_sym_number] = ACTIONS(3284), + [anon_sym_boolean] = ACTIONS(3284), + [anon_sym_string] = ACTIONS(3284), + [anon_sym_symbol] = ACTIONS(3284), + [anon_sym_object] = ACTIONS(3284), + [anon_sym_abstract] = ACTIONS(3284), + [anon_sym_interface] = ACTIONS(3284), + [anon_sym_enum] = ACTIONS(3284), + [sym_html_comment] = ACTIONS(5), + }, + [1074] = { + [sym_comment] = STATE(1074), + [sym_identifier] = ACTIONS(2221), + [anon_sym_export] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_typeof] = ACTIONS(2221), + [anon_sym_import] = ACTIONS(2221), + [anon_sym_with] = ACTIONS(2221), + [anon_sym_var] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_else] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_debugger] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_case] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LTtemplate_GT] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_void] = ACTIONS(2221), + [anon_sym_delete] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(2221), + [sym_number] = ACTIONS(2221), + [sym_private_property_identifier] = ACTIONS(2221), + [sym_this] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_null] = ACTIONS(2221), + [sym_undefined] = ACTIONS(2221), + [anon_sym_AT] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_get] = ACTIONS(2221), + [anon_sym_set] = ACTIONS(2221), + [anon_sym_declare] = ACTIONS(2221), + [anon_sym_public] = ACTIONS(2221), + [anon_sym_private] = ACTIONS(2221), + [anon_sym_protected] = ACTIONS(2221), + [anon_sym_override] = ACTIONS(2221), + [anon_sym_module] = ACTIONS(2221), + [anon_sym_any] = ACTIONS(2221), + [anon_sym_number] = ACTIONS(2221), + [anon_sym_boolean] = ACTIONS(2221), + [anon_sym_string] = ACTIONS(2221), + [anon_sym_symbol] = ACTIONS(2221), + [anon_sym_object] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), [sym_html_comment] = ACTIONS(5), }, [1075] = { [sym_comment] = STATE(1075), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(3286), [sym_html_comment] = ACTIONS(5), }, [1076] = { [sym_comment] = STATE(1076), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3288), + [anon_sym_export] = ACTIONS(3288), + [anon_sym_default] = ACTIONS(3288), + [anon_sym_type] = ACTIONS(3288), + [anon_sym_namespace] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_typeof] = ACTIONS(3288), + [anon_sym_import] = ACTIONS(3288), + [anon_sym_with] = ACTIONS(3288), + [anon_sym_var] = ACTIONS(3288), + [anon_sym_let] = ACTIONS(3288), + [anon_sym_const] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_else] = ACTIONS(3288), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_switch] = ACTIONS(3288), + [anon_sym_for] = ACTIONS(3288), + [anon_sym_LPAREN] = ACTIONS(3288), + [anon_sym_await] = ACTIONS(3288), + [anon_sym_while] = ACTIONS(3288), + [anon_sym_do] = ACTIONS(3288), + [anon_sym_try] = ACTIONS(3288), + [anon_sym_break] = ACTIONS(3288), + [anon_sym_continue] = ACTIONS(3288), + [anon_sym_debugger] = ACTIONS(3288), + [anon_sym_return] = ACTIONS(3288), + [anon_sym_throw] = ACTIONS(3288), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_case] = ACTIONS(3288), + [anon_sym_yield] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3288), + [anon_sym_LTtemplate_GT] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_class] = ACTIONS(3288), + [anon_sym_async] = ACTIONS(3288), + [anon_sym_function] = ACTIONS(3288), + [anon_sym_new] = ACTIONS(3288), + [anon_sym_using] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3288), + [anon_sym_SLASH] = ACTIONS(3288), + [anon_sym_LT] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_void] = ACTIONS(3288), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_DASH_DASH] = ACTIONS(3288), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3288), + [sym_number] = ACTIONS(3288), + [sym_private_property_identifier] = ACTIONS(3288), + [sym_this] = ACTIONS(3288), + [sym_super] = ACTIONS(3288), + [sym_true] = ACTIONS(3288), + [sym_false] = ACTIONS(3288), + [sym_null] = ACTIONS(3288), + [sym_undefined] = ACTIONS(3288), + [anon_sym_AT] = ACTIONS(3288), + [anon_sym_static] = ACTIONS(3288), + [anon_sym_readonly] = ACTIONS(3288), + [anon_sym_get] = ACTIONS(3288), + [anon_sym_set] = ACTIONS(3288), + [anon_sym_declare] = ACTIONS(3288), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3288), + [anon_sym_module] = ACTIONS(3288), + [anon_sym_any] = ACTIONS(3288), + [anon_sym_number] = ACTIONS(3288), + [anon_sym_boolean] = ACTIONS(3288), + [anon_sym_string] = ACTIONS(3288), + [anon_sym_symbol] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3288), + [anon_sym_abstract] = ACTIONS(3288), + [anon_sym_interface] = ACTIONS(3288), + [anon_sym_enum] = ACTIONS(3288), [sym_html_comment] = ACTIONS(5), }, [1077] = { [sym_comment] = STATE(1077), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(3260), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_catch] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), [sym_html_comment] = ACTIONS(5), }, [1078] = { [sym_comment] = STATE(1078), - [ts_builtin_sym_end] = ACTIONS(2103), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym_html_comment] = ACTIONS(5), + }, + [1079] = { + [sym_comment] = STATE(1079), + [sym_identifier] = ACTIONS(3290), + [anon_sym_export] = ACTIONS(3290), + [anon_sym_default] = ACTIONS(3290), + [anon_sym_type] = ACTIONS(3290), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(3290), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_typeof] = ACTIONS(3290), + [anon_sym_import] = ACTIONS(3290), + [anon_sym_with] = ACTIONS(3290), + [anon_sym_var] = ACTIONS(3290), + [anon_sym_let] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_await] = ACTIONS(3290), + [anon_sym_while] = ACTIONS(3290), + [anon_sym_do] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3290), + [anon_sym_break] = ACTIONS(3290), + [anon_sym_continue] = ACTIONS(3290), + [anon_sym_debugger] = ACTIONS(3290), + [anon_sym_return] = ACTIONS(3290), + [anon_sym_throw] = ACTIONS(3290), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_case] = ACTIONS(3290), + [anon_sym_yield] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_LTtemplate_GT] = ACTIONS(3290), + [anon_sym_DQUOTE] = ACTIONS(3290), + [anon_sym_SQUOTE] = ACTIONS(3290), + [anon_sym_class] = ACTIONS(3290), + [anon_sym_async] = ACTIONS(3290), + [anon_sym_function] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_using] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_SLASH] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3290), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_void] = ACTIONS(3290), + [anon_sym_delete] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3290), + [sym_number] = ACTIONS(3290), + [sym_private_property_identifier] = ACTIONS(3290), + [sym_this] = ACTIONS(3290), + [sym_super] = ACTIONS(3290), + [sym_true] = ACTIONS(3290), + [sym_false] = ACTIONS(3290), + [sym_null] = ACTIONS(3290), + [sym_undefined] = ACTIONS(3290), + [anon_sym_AT] = ACTIONS(3290), + [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_abstract] = ACTIONS(3290), + [anon_sym_interface] = ACTIONS(3290), + [anon_sym_enum] = ACTIONS(3290), + [sym_html_comment] = ACTIONS(5), + }, + [1080] = { + [sym_comment] = STATE(1080), + [sym_identifier] = ACTIONS(3292), + [anon_sym_export] = ACTIONS(3292), + [anon_sym_default] = ACTIONS(3292), + [anon_sym_type] = ACTIONS(3292), + [anon_sym_namespace] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_typeof] = ACTIONS(3292), + [anon_sym_import] = ACTIONS(3292), + [anon_sym_with] = ACTIONS(3292), + [anon_sym_var] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_const] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_else] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_switch] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_await] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_break] = ACTIONS(3292), + [anon_sym_continue] = ACTIONS(3292), + [anon_sym_debugger] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_throw] = ACTIONS(3292), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym_case] = ACTIONS(3292), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LTtemplate_GT] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_class] = ACTIONS(3292), + [anon_sym_async] = ACTIONS(3292), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_using] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_SLASH] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_void] = ACTIONS(3292), + [anon_sym_delete] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3292), + [sym_number] = ACTIONS(3292), + [sym_private_property_identifier] = ACTIONS(3292), + [sym_this] = ACTIONS(3292), + [sym_super] = ACTIONS(3292), + [sym_true] = ACTIONS(3292), + [sym_false] = ACTIONS(3292), + [sym_null] = ACTIONS(3292), + [sym_undefined] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3292), + [anon_sym_static] = ACTIONS(3292), + [anon_sym_readonly] = ACTIONS(3292), + [anon_sym_get] = ACTIONS(3292), + [anon_sym_set] = ACTIONS(3292), + [anon_sym_declare] = ACTIONS(3292), + [anon_sym_public] = ACTIONS(3292), + [anon_sym_private] = ACTIONS(3292), + [anon_sym_protected] = ACTIONS(3292), + [anon_sym_override] = ACTIONS(3292), + [anon_sym_module] = ACTIONS(3292), + [anon_sym_any] = ACTIONS(3292), + [anon_sym_number] = ACTIONS(3292), + [anon_sym_boolean] = ACTIONS(3292), + [anon_sym_string] = ACTIONS(3292), + [anon_sym_symbol] = ACTIONS(3292), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_abstract] = ACTIONS(3292), + [anon_sym_interface] = ACTIONS(3292), + [anon_sym_enum] = ACTIONS(3292), + [sym_html_comment] = ACTIONS(5), + }, + [1081] = { + [sym_comment] = STATE(1081), + [sym_identifier] = ACTIONS(3294), + [anon_sym_export] = ACTIONS(3294), + [anon_sym_default] = ACTIONS(3294), + [anon_sym_type] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3294), + [anon_sym_RBRACE] = ACTIONS(3294), + [anon_sym_typeof] = ACTIONS(3294), + [anon_sym_import] = ACTIONS(3294), + [anon_sym_with] = ACTIONS(3294), + [anon_sym_var] = ACTIONS(3294), + [anon_sym_let] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_BANG] = ACTIONS(3294), + [anon_sym_else] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3294), + [anon_sym_switch] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3294), + [anon_sym_await] = ACTIONS(3294), + [anon_sym_while] = ACTIONS(3294), + [anon_sym_do] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3294), + [anon_sym_break] = ACTIONS(3294), + [anon_sym_continue] = ACTIONS(3294), + [anon_sym_debugger] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3294), + [anon_sym_throw] = ACTIONS(3294), + [anon_sym_SEMI] = ACTIONS(3294), + [anon_sym_case] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_LTtemplate_GT] = ACTIONS(3294), + [anon_sym_DQUOTE] = ACTIONS(3294), + [anon_sym_SQUOTE] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_async] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_using] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3294), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_SLASH] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3294), + [anon_sym_TILDE] = ACTIONS(3294), + [anon_sym_void] = ACTIONS(3294), + [anon_sym_delete] = ACTIONS(3294), + [anon_sym_PLUS_PLUS] = ACTIONS(3294), + [anon_sym_DASH_DASH] = ACTIONS(3294), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3294), + [sym_number] = ACTIONS(3294), + [sym_private_property_identifier] = ACTIONS(3294), + [sym_this] = ACTIONS(3294), + [sym_super] = ACTIONS(3294), + [sym_true] = ACTIONS(3294), + [sym_false] = ACTIONS(3294), + [sym_null] = ACTIONS(3294), + [sym_undefined] = ACTIONS(3294), + [anon_sym_AT] = ACTIONS(3294), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_readonly] = ACTIONS(3294), + [anon_sym_get] = ACTIONS(3294), + [anon_sym_set] = ACTIONS(3294), + [anon_sym_declare] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3294), + [anon_sym_private] = ACTIONS(3294), + [anon_sym_protected] = ACTIONS(3294), + [anon_sym_override] = ACTIONS(3294), + [anon_sym_module] = ACTIONS(3294), + [anon_sym_any] = ACTIONS(3294), + [anon_sym_number] = ACTIONS(3294), + [anon_sym_boolean] = ACTIONS(3294), + [anon_sym_string] = ACTIONS(3294), + [anon_sym_symbol] = ACTIONS(3294), + [anon_sym_object] = ACTIONS(3294), + [anon_sym_abstract] = ACTIONS(3294), + [anon_sym_interface] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), + [sym_html_comment] = ACTIONS(5), + }, + [1082] = { + [sym_comment] = STATE(1082), + [sym_identifier] = ACTIONS(3296), + [anon_sym_export] = ACTIONS(3296), + [anon_sym_default] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3296), + [anon_sym_namespace] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_typeof] = ACTIONS(3296), + [anon_sym_import] = ACTIONS(3296), + [anon_sym_with] = ACTIONS(3296), + [anon_sym_var] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_const] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_switch] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_await] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_debugger] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_case] = ACTIONS(3296), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LTtemplate_GT] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_class] = ACTIONS(3296), + [anon_sym_async] = ACTIONS(3296), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_using] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_void] = ACTIONS(3296), + [anon_sym_delete] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3296), + [sym_number] = ACTIONS(3296), + [sym_private_property_identifier] = ACTIONS(3296), + [sym_this] = ACTIONS(3296), + [sym_super] = ACTIONS(3296), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_null] = ACTIONS(3296), + [sym_undefined] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_static] = ACTIONS(3296), + [anon_sym_readonly] = ACTIONS(3296), + [anon_sym_get] = ACTIONS(3296), + [anon_sym_set] = ACTIONS(3296), + [anon_sym_declare] = ACTIONS(3296), + [anon_sym_public] = ACTIONS(3296), + [anon_sym_private] = ACTIONS(3296), + [anon_sym_protected] = ACTIONS(3296), + [anon_sym_override] = ACTIONS(3296), + [anon_sym_module] = ACTIONS(3296), + [anon_sym_any] = ACTIONS(3296), + [anon_sym_number] = ACTIONS(3296), + [anon_sym_boolean] = ACTIONS(3296), + [anon_sym_string] = ACTIONS(3296), + [anon_sym_symbol] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_abstract] = ACTIONS(3296), + [anon_sym_interface] = ACTIONS(3296), + [anon_sym_enum] = ACTIONS(3296), + [sym_html_comment] = ACTIONS(5), + }, + [1083] = { + [sym_comment] = STATE(1083), + [sym_identifier] = ACTIONS(3298), + [anon_sym_export] = ACTIONS(3298), + [anon_sym_default] = ACTIONS(3298), + [anon_sym_type] = ACTIONS(3298), + [anon_sym_namespace] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_typeof] = ACTIONS(3298), + [anon_sym_import] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3298), + [anon_sym_var] = ACTIONS(3298), + [anon_sym_let] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_switch] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_await] = ACTIONS(3298), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_do] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3298), + [anon_sym_break] = ACTIONS(3298), + [anon_sym_continue] = ACTIONS(3298), + [anon_sym_debugger] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3298), + [anon_sym_throw] = ACTIONS(3298), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_case] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_LTtemplate_GT] = ACTIONS(3298), + [anon_sym_DQUOTE] = ACTIONS(3298), + [anon_sym_SQUOTE] = ACTIONS(3298), + [anon_sym_class] = ACTIONS(3298), + [anon_sym_async] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3298), + [anon_sym_using] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3298), + [anon_sym_void] = ACTIONS(3298), + [anon_sym_delete] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3298), + [sym_number] = ACTIONS(3298), + [sym_private_property_identifier] = ACTIONS(3298), + [sym_this] = ACTIONS(3298), + [sym_super] = ACTIONS(3298), + [sym_true] = ACTIONS(3298), + [sym_false] = ACTIONS(3298), + [sym_null] = ACTIONS(3298), + [sym_undefined] = ACTIONS(3298), + [anon_sym_AT] = ACTIONS(3298), + [anon_sym_static] = ACTIONS(3298), + [anon_sym_readonly] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3298), + [anon_sym_set] = ACTIONS(3298), + [anon_sym_declare] = ACTIONS(3298), + [anon_sym_public] = ACTIONS(3298), + [anon_sym_private] = ACTIONS(3298), + [anon_sym_protected] = ACTIONS(3298), + [anon_sym_override] = ACTIONS(3298), + [anon_sym_module] = ACTIONS(3298), + [anon_sym_any] = ACTIONS(3298), + [anon_sym_number] = ACTIONS(3298), + [anon_sym_boolean] = ACTIONS(3298), + [anon_sym_string] = ACTIONS(3298), + [anon_sym_symbol] = ACTIONS(3298), + [anon_sym_object] = ACTIONS(3298), + [anon_sym_abstract] = ACTIONS(3298), + [anon_sym_interface] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), + [sym_html_comment] = ACTIONS(5), + }, + [1084] = { + [sym_comment] = STATE(1084), + [sym_identifier] = ACTIONS(3100), + [anon_sym_export] = ACTIONS(3100), + [anon_sym_default] = ACTIONS(3100), + [anon_sym_type] = ACTIONS(3100), + [anon_sym_namespace] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3100), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_typeof] = ACTIONS(3100), + [anon_sym_import] = ACTIONS(3100), + [anon_sym_with] = ACTIONS(3100), + [anon_sym_var] = ACTIONS(3100), + [anon_sym_let] = ACTIONS(3100), + [anon_sym_const] = ACTIONS(3100), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_switch] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_await] = ACTIONS(3100), + [anon_sym_while] = ACTIONS(3100), + [anon_sym_do] = ACTIONS(3100), + [anon_sym_try] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_debugger] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_throw] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3100), + [anon_sym_case] = ACTIONS(3100), + [anon_sym_finally] = ACTIONS(3100), + [anon_sym_yield] = ACTIONS(3100), + [anon_sym_LBRACK] = ACTIONS(3100), + [anon_sym_LTtemplate_GT] = ACTIONS(3100), + [anon_sym_DQUOTE] = ACTIONS(3100), + [anon_sym_SQUOTE] = ACTIONS(3100), + [anon_sym_class] = ACTIONS(3100), + [anon_sym_async] = ACTIONS(3100), + [anon_sym_function] = ACTIONS(3100), + [anon_sym_new] = ACTIONS(3100), + [anon_sym_using] = ACTIONS(3100), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_TILDE] = ACTIONS(3100), + [anon_sym_void] = ACTIONS(3100), + [anon_sym_delete] = ACTIONS(3100), + [anon_sym_PLUS_PLUS] = ACTIONS(3100), + [anon_sym_DASH_DASH] = ACTIONS(3100), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3100), + [sym_number] = ACTIONS(3100), + [sym_private_property_identifier] = ACTIONS(3100), + [sym_this] = ACTIONS(3100), + [sym_super] = ACTIONS(3100), + [sym_true] = ACTIONS(3100), + [sym_false] = ACTIONS(3100), + [sym_null] = ACTIONS(3100), + [sym_undefined] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(3100), + [anon_sym_static] = ACTIONS(3100), + [anon_sym_readonly] = ACTIONS(3100), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_declare] = ACTIONS(3100), + [anon_sym_public] = ACTIONS(3100), + [anon_sym_private] = ACTIONS(3100), + [anon_sym_protected] = ACTIONS(3100), + [anon_sym_override] = ACTIONS(3100), + [anon_sym_module] = ACTIONS(3100), + [anon_sym_any] = ACTIONS(3100), + [anon_sym_number] = ACTIONS(3100), + [anon_sym_boolean] = ACTIONS(3100), + [anon_sym_string] = ACTIONS(3100), + [anon_sym_symbol] = ACTIONS(3100), + [anon_sym_object] = ACTIONS(3100), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_interface] = ACTIONS(3100), + [anon_sym_enum] = ACTIONS(3100), + [sym_html_comment] = ACTIONS(5), + }, + [1085] = { + [sym_comment] = STATE(1085), + [sym_identifier] = ACTIONS(3300), + [anon_sym_export] = ACTIONS(3300), + [anon_sym_default] = ACTIONS(3300), + [anon_sym_type] = ACTIONS(3300), + [anon_sym_namespace] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_typeof] = ACTIONS(3300), + [anon_sym_import] = ACTIONS(3300), + [anon_sym_with] = ACTIONS(3300), + [anon_sym_var] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_const] = ACTIONS(3300), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_else] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_switch] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_await] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_debugger] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_throw] = ACTIONS(3300), + [anon_sym_SEMI] = ACTIONS(3300), + [anon_sym_case] = ACTIONS(3300), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LTtemplate_GT] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [anon_sym_class] = ACTIONS(3300), + [anon_sym_async] = ACTIONS(3300), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_using] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3300), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_void] = ACTIONS(3300), + [anon_sym_delete] = ACTIONS(3300), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3300), + [sym_number] = ACTIONS(3300), + [sym_private_property_identifier] = ACTIONS(3300), + [sym_this] = ACTIONS(3300), + [sym_super] = ACTIONS(3300), + [sym_true] = ACTIONS(3300), + [sym_false] = ACTIONS(3300), + [sym_null] = ACTIONS(3300), + [sym_undefined] = ACTIONS(3300), + [anon_sym_AT] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_readonly] = ACTIONS(3300), + [anon_sym_get] = ACTIONS(3300), + [anon_sym_set] = ACTIONS(3300), + [anon_sym_declare] = ACTIONS(3300), + [anon_sym_public] = ACTIONS(3300), + [anon_sym_private] = ACTIONS(3300), + [anon_sym_protected] = ACTIONS(3300), + [anon_sym_override] = ACTIONS(3300), + [anon_sym_module] = ACTIONS(3300), + [anon_sym_any] = ACTIONS(3300), + [anon_sym_number] = ACTIONS(3300), + [anon_sym_boolean] = ACTIONS(3300), + [anon_sym_string] = ACTIONS(3300), + [anon_sym_symbol] = ACTIONS(3300), + [anon_sym_object] = ACTIONS(3300), + [anon_sym_abstract] = ACTIONS(3300), + [anon_sym_interface] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), + [sym_html_comment] = ACTIONS(5), + }, + [1086] = { + [sym_comment] = STATE(1086), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_else] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [anon_sym_module] = ACTIONS(3302), + [anon_sym_any] = ACTIONS(3302), + [anon_sym_number] = ACTIONS(3302), + [anon_sym_boolean] = ACTIONS(3302), + [anon_sym_string] = ACTIONS(3302), + [anon_sym_symbol] = ACTIONS(3302), + [anon_sym_object] = ACTIONS(3302), + [anon_sym_abstract] = ACTIONS(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [sym_html_comment] = ACTIONS(5), + }, + [1087] = { + [sym_comment] = STATE(1087), + [sym_identifier] = ACTIONS(3304), + [anon_sym_export] = ACTIONS(3304), + [anon_sym_default] = ACTIONS(3304), + [anon_sym_type] = ACTIONS(3304), + [anon_sym_namespace] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_RBRACE] = ACTIONS(3304), + [anon_sym_typeof] = ACTIONS(3304), + [anon_sym_import] = ACTIONS(3304), + [anon_sym_with] = ACTIONS(3304), + [anon_sym_var] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_const] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_else] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_switch] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_await] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_break] = ACTIONS(3304), + [anon_sym_continue] = ACTIONS(3304), + [anon_sym_debugger] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_throw] = ACTIONS(3304), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_case] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LTtemplate_GT] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_class] = ACTIONS(3304), + [anon_sym_async] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_using] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_SLASH] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_void] = ACTIONS(3304), + [anon_sym_delete] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3304), + [sym_number] = ACTIONS(3304), + [sym_private_property_identifier] = ACTIONS(3304), + [sym_this] = ACTIONS(3304), + [sym_super] = ACTIONS(3304), + [sym_true] = ACTIONS(3304), + [sym_false] = ACTIONS(3304), + [sym_null] = ACTIONS(3304), + [sym_undefined] = ACTIONS(3304), + [anon_sym_AT] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_readonly] = ACTIONS(3304), + [anon_sym_get] = ACTIONS(3304), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_declare] = ACTIONS(3304), + [anon_sym_public] = ACTIONS(3304), + [anon_sym_private] = ACTIONS(3304), + [anon_sym_protected] = ACTIONS(3304), + [anon_sym_override] = ACTIONS(3304), + [anon_sym_module] = ACTIONS(3304), + [anon_sym_any] = ACTIONS(3304), + [anon_sym_number] = ACTIONS(3304), + [anon_sym_boolean] = ACTIONS(3304), + [anon_sym_string] = ACTIONS(3304), + [anon_sym_symbol] = ACTIONS(3304), + [anon_sym_object] = ACTIONS(3304), + [anon_sym_abstract] = ACTIONS(3304), + [anon_sym_interface] = ACTIONS(3304), + [anon_sym_enum] = ACTIONS(3304), + [sym_html_comment] = ACTIONS(5), + }, + [1088] = { + [sym_comment] = STATE(1088), + [sym_identifier] = ACTIONS(3306), + [anon_sym_export] = ACTIONS(3306), + [anon_sym_default] = ACTIONS(3306), + [anon_sym_type] = ACTIONS(3306), + [anon_sym_namespace] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_RBRACE] = ACTIONS(3306), + [anon_sym_typeof] = ACTIONS(3306), + [anon_sym_import] = ACTIONS(3306), + [anon_sym_with] = ACTIONS(3306), + [anon_sym_var] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_else] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_switch] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_await] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_break] = ACTIONS(3306), + [anon_sym_continue] = ACTIONS(3306), + [anon_sym_debugger] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_throw] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_case] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LTtemplate_GT] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_SQUOTE] = ACTIONS(3306), + [anon_sym_class] = ACTIONS(3306), + [anon_sym_async] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_using] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_SLASH] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_void] = ACTIONS(3306), + [anon_sym_delete] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_DASH_DASH] = ACTIONS(3306), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3306), + [sym_number] = ACTIONS(3306), + [sym_private_property_identifier] = ACTIONS(3306), + [sym_this] = ACTIONS(3306), + [sym_super] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_null] = ACTIONS(3306), + [sym_undefined] = ACTIONS(3306), + [anon_sym_AT] = ACTIONS(3306), + [anon_sym_static] = ACTIONS(3306), + [anon_sym_readonly] = ACTIONS(3306), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3306), + [anon_sym_declare] = ACTIONS(3306), + [anon_sym_public] = ACTIONS(3306), + [anon_sym_private] = ACTIONS(3306), + [anon_sym_protected] = ACTIONS(3306), + [anon_sym_override] = ACTIONS(3306), + [anon_sym_module] = ACTIONS(3306), + [anon_sym_any] = ACTIONS(3306), + [anon_sym_number] = ACTIONS(3306), + [anon_sym_boolean] = ACTIONS(3306), + [anon_sym_string] = ACTIONS(3306), + [anon_sym_symbol] = ACTIONS(3306), + [anon_sym_object] = ACTIONS(3306), + [anon_sym_abstract] = ACTIONS(3306), + [anon_sym_interface] = ACTIONS(3306), + [anon_sym_enum] = ACTIONS(3306), + [sym_html_comment] = ACTIONS(5), + }, + [1089] = { + [sym_comment] = STATE(1089), + [sym_identifier] = ACTIONS(3308), + [anon_sym_export] = ACTIONS(3308), + [anon_sym_default] = ACTIONS(3308), + [anon_sym_type] = ACTIONS(3308), + [anon_sym_namespace] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_typeof] = ACTIONS(3308), + [anon_sym_import] = ACTIONS(3308), + [anon_sym_with] = ACTIONS(3308), + [anon_sym_var] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_else] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_switch] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_await] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_debugger] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_throw] = ACTIONS(3308), + [anon_sym_SEMI] = ACTIONS(3308), + [anon_sym_case] = ACTIONS(3308), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LTtemplate_GT] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_class] = ACTIONS(3308), + [anon_sym_async] = ACTIONS(3308), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_using] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_SLASH] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_void] = ACTIONS(3308), + [anon_sym_delete] = ACTIONS(3308), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3308), + [sym_number] = ACTIONS(3308), + [sym_private_property_identifier] = ACTIONS(3308), + [sym_this] = ACTIONS(3308), + [sym_super] = ACTIONS(3308), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [sym_null] = ACTIONS(3308), + [sym_undefined] = ACTIONS(3308), + [anon_sym_AT] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_readonly] = ACTIONS(3308), + [anon_sym_get] = ACTIONS(3308), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_declare] = ACTIONS(3308), + [anon_sym_public] = ACTIONS(3308), + [anon_sym_private] = ACTIONS(3308), + [anon_sym_protected] = ACTIONS(3308), + [anon_sym_override] = ACTIONS(3308), + [anon_sym_module] = ACTIONS(3308), + [anon_sym_any] = ACTIONS(3308), + [anon_sym_number] = ACTIONS(3308), + [anon_sym_boolean] = ACTIONS(3308), + [anon_sym_string] = ACTIONS(3308), + [anon_sym_symbol] = ACTIONS(3308), + [anon_sym_object] = ACTIONS(3308), + [anon_sym_abstract] = ACTIONS(3308), + [anon_sym_interface] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), + [sym_html_comment] = ACTIONS(5), + }, + [1090] = { + [sym_comment] = STATE(1090), + [ts_builtin_sym_end] = ACTIONS(2373), + [sym_identifier] = ACTIONS(2167), + [anon_sym_export] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_namespace] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_typeof] = ACTIONS(2167), + [anon_sym_import] = ACTIONS(2167), + [anon_sym_with] = ACTIONS(2167), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_else] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_switch] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_await] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_do] = ACTIONS(2167), + [anon_sym_try] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_debugger] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_throw] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_yield] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_LTtemplate_GT] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_class] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_function] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(2167), + [anon_sym_using] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_void] = ACTIONS(2167), + [anon_sym_delete] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2167), + [sym_number] = ACTIONS(2167), + [sym_private_property_identifier] = ACTIONS(2167), + [sym_this] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_true] = ACTIONS(2167), + [sym_false] = ACTIONS(2167), + [sym_null] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(2167), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_readonly] = ACTIONS(2167), + [anon_sym_get] = ACTIONS(2167), + [anon_sym_set] = ACTIONS(2167), + [anon_sym_declare] = ACTIONS(2167), + [anon_sym_public] = ACTIONS(2167), + [anon_sym_private] = ACTIONS(2167), + [anon_sym_protected] = ACTIONS(2167), + [anon_sym_override] = ACTIONS(2167), + [anon_sym_module] = ACTIONS(2167), + [anon_sym_any] = ACTIONS(2167), + [anon_sym_number] = ACTIONS(2167), + [anon_sym_boolean] = ACTIONS(2167), + [anon_sym_string] = ACTIONS(2167), + [anon_sym_symbol] = ACTIONS(2167), + [anon_sym_object] = ACTIONS(2167), + [anon_sym_abstract] = ACTIONS(2167), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [sym__automatic_semicolon] = ACTIONS(2375), + [sym_html_comment] = ACTIONS(5), + }, + [1091] = { + [sym_comment] = STATE(1091), + [ts_builtin_sym_end] = ACTIONS(2095), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), @@ -151917,844 +152688,761 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2125), + [sym__automatic_semicolon] = ACTIONS(2097), [sym_html_comment] = ACTIONS(5), }, - [1079] = { - [sym_comment] = STATE(1079), - [sym_identifier] = ACTIONS(3262), - [anon_sym_export] = ACTIONS(3262), - [anon_sym_default] = ACTIONS(3262), - [anon_sym_type] = ACTIONS(3262), - [anon_sym_namespace] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_typeof] = ACTIONS(3262), - [anon_sym_import] = ACTIONS(3262), - [anon_sym_with] = ACTIONS(3262), - [anon_sym_var] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), - [anon_sym_const] = ACTIONS(3262), - [anon_sym_BANG] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_switch] = ACTIONS(3262), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_await] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_try] = ACTIONS(3262), - [anon_sym_break] = ACTIONS(3262), - [anon_sym_continue] = ACTIONS(3262), - [anon_sym_debugger] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_throw] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_case] = ACTIONS(3262), - [anon_sym_yield] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_LTtemplate_GT] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_SQUOTE] = ACTIONS(3262), - [anon_sym_class] = ACTIONS(3262), - [anon_sym_async] = ACTIONS(3262), - [anon_sym_function] = ACTIONS(3262), - [anon_sym_new] = ACTIONS(3262), - [anon_sym_using] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_void] = ACTIONS(3262), - [anon_sym_delete] = ACTIONS(3262), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3262), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), - [sym_this] = ACTIONS(3262), - [sym_super] = ACTIONS(3262), - [sym_true] = ACTIONS(3262), - [sym_false] = ACTIONS(3262), - [sym_null] = ACTIONS(3262), - [sym_undefined] = ACTIONS(3262), - [anon_sym_AT] = ACTIONS(3262), - [anon_sym_static] = ACTIONS(3262), - [anon_sym_readonly] = ACTIONS(3262), - [anon_sym_get] = ACTIONS(3262), - [anon_sym_set] = ACTIONS(3262), - [anon_sym_declare] = ACTIONS(3262), - [anon_sym_public] = ACTIONS(3262), - [anon_sym_private] = ACTIONS(3262), - [anon_sym_protected] = ACTIONS(3262), - [anon_sym_override] = ACTIONS(3262), - [anon_sym_module] = ACTIONS(3262), - [anon_sym_any] = ACTIONS(3262), - [anon_sym_number] = ACTIONS(3262), - [anon_sym_boolean] = ACTIONS(3262), - [anon_sym_string] = ACTIONS(3262), - [anon_sym_symbol] = ACTIONS(3262), - [anon_sym_object] = ACTIONS(3262), - [anon_sym_abstract] = ACTIONS(3262), - [anon_sym_interface] = ACTIONS(3262), - [anon_sym_enum] = ACTIONS(3262), - [sym_html_comment] = ACTIONS(5), - }, - [1080] = { - [sym_comment] = STATE(1080), - [sym_identifier] = ACTIONS(3264), - [anon_sym_export] = ACTIONS(3264), - [anon_sym_default] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_namespace] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_RBRACE] = ACTIONS(3264), - [anon_sym_typeof] = ACTIONS(3264), - [anon_sym_import] = ACTIONS(3264), - [anon_sym_with] = ACTIONS(3264), - [anon_sym_var] = ACTIONS(3264), - [anon_sym_let] = ACTIONS(3264), - [anon_sym_const] = ACTIONS(3264), - [anon_sym_BANG] = ACTIONS(3264), - [anon_sym_else] = ACTIONS(3264), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_switch] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3264), - [anon_sym_await] = ACTIONS(3264), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_do] = ACTIONS(3264), - [anon_sym_try] = ACTIONS(3264), - [anon_sym_break] = ACTIONS(3264), - [anon_sym_continue] = ACTIONS(3264), - [anon_sym_debugger] = ACTIONS(3264), - [anon_sym_return] = ACTIONS(3264), - [anon_sym_throw] = ACTIONS(3264), - [anon_sym_SEMI] = ACTIONS(3264), - [anon_sym_case] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3264), - [anon_sym_LTtemplate_GT] = ACTIONS(3264), - [anon_sym_DQUOTE] = ACTIONS(3264), - [anon_sym_SQUOTE] = ACTIONS(3264), - [anon_sym_class] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3264), - [anon_sym_new] = ACTIONS(3264), - [anon_sym_using] = ACTIONS(3264), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_SLASH] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_TILDE] = ACTIONS(3264), - [anon_sym_void] = ACTIONS(3264), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_PLUS_PLUS] = ACTIONS(3264), - [anon_sym_DASH_DASH] = ACTIONS(3264), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3264), - [sym_number] = ACTIONS(3264), - [sym_private_property_identifier] = ACTIONS(3264), - [sym_this] = ACTIONS(3264), - [sym_super] = ACTIONS(3264), - [sym_true] = ACTIONS(3264), - [sym_false] = ACTIONS(3264), - [sym_null] = ACTIONS(3264), - [sym_undefined] = ACTIONS(3264), - [anon_sym_AT] = ACTIONS(3264), - [anon_sym_static] = ACTIONS(3264), - [anon_sym_readonly] = ACTIONS(3264), - [anon_sym_get] = ACTIONS(3264), - [anon_sym_set] = ACTIONS(3264), - [anon_sym_declare] = ACTIONS(3264), - [anon_sym_public] = ACTIONS(3264), - [anon_sym_private] = ACTIONS(3264), - [anon_sym_protected] = ACTIONS(3264), - [anon_sym_override] = ACTIONS(3264), - [anon_sym_module] = ACTIONS(3264), - [anon_sym_any] = ACTIONS(3264), - [anon_sym_number] = ACTIONS(3264), - [anon_sym_boolean] = ACTIONS(3264), - [anon_sym_string] = ACTIONS(3264), - [anon_sym_symbol] = ACTIONS(3264), - [anon_sym_object] = ACTIONS(3264), - [anon_sym_abstract] = ACTIONS(3264), - [anon_sym_interface] = ACTIONS(3264), - [anon_sym_enum] = ACTIONS(3264), + [1092] = { + [sym_comment] = STATE(1092), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(3310), [sym_html_comment] = ACTIONS(5), }, - [1081] = { - [sym_comment] = STATE(1081), - [sym_identifier] = ACTIONS(3266), - [anon_sym_export] = ACTIONS(3266), - [anon_sym_default] = ACTIONS(3266), - [anon_sym_type] = ACTIONS(3266), - [anon_sym_namespace] = ACTIONS(3266), - [anon_sym_LBRACE] = ACTIONS(3266), - [anon_sym_RBRACE] = ACTIONS(3266), - [anon_sym_typeof] = ACTIONS(3266), - [anon_sym_import] = ACTIONS(3266), - [anon_sym_with] = ACTIONS(3266), - [anon_sym_var] = ACTIONS(3266), - [anon_sym_let] = ACTIONS(3266), - [anon_sym_const] = ACTIONS(3266), - [anon_sym_BANG] = ACTIONS(3266), - [anon_sym_else] = ACTIONS(3266), - [anon_sym_if] = ACTIONS(3266), - [anon_sym_switch] = ACTIONS(3266), - [anon_sym_for] = ACTIONS(3266), - [anon_sym_LPAREN] = ACTIONS(3266), - [anon_sym_await] = ACTIONS(3266), - [anon_sym_while] = ACTIONS(3266), - [anon_sym_do] = ACTIONS(3266), - [anon_sym_try] = ACTIONS(3266), - [anon_sym_break] = ACTIONS(3266), - [anon_sym_continue] = ACTIONS(3266), - [anon_sym_debugger] = ACTIONS(3266), - [anon_sym_return] = ACTIONS(3266), - [anon_sym_throw] = ACTIONS(3266), - [anon_sym_SEMI] = ACTIONS(3266), - [anon_sym_case] = ACTIONS(3266), - [anon_sym_yield] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3266), - [anon_sym_LTtemplate_GT] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(3266), - [anon_sym_SQUOTE] = ACTIONS(3266), - [anon_sym_class] = ACTIONS(3266), - [anon_sym_async] = ACTIONS(3266), - [anon_sym_function] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3266), - [anon_sym_using] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3266), - [anon_sym_DASH] = ACTIONS(3266), - [anon_sym_SLASH] = ACTIONS(3266), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_TILDE] = ACTIONS(3266), - [anon_sym_void] = ACTIONS(3266), - [anon_sym_delete] = ACTIONS(3266), - [anon_sym_PLUS_PLUS] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3266), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3266), - [sym_number] = ACTIONS(3266), - [sym_private_property_identifier] = ACTIONS(3266), - [sym_this] = ACTIONS(3266), - [sym_super] = ACTIONS(3266), - [sym_true] = ACTIONS(3266), - [sym_false] = ACTIONS(3266), - [sym_null] = ACTIONS(3266), - [sym_undefined] = ACTIONS(3266), - [anon_sym_AT] = ACTIONS(3266), - [anon_sym_static] = ACTIONS(3266), - [anon_sym_readonly] = ACTIONS(3266), - [anon_sym_get] = ACTIONS(3266), - [anon_sym_set] = ACTIONS(3266), - [anon_sym_declare] = ACTIONS(3266), - [anon_sym_public] = ACTIONS(3266), - [anon_sym_private] = ACTIONS(3266), - [anon_sym_protected] = ACTIONS(3266), - [anon_sym_override] = ACTIONS(3266), - [anon_sym_module] = ACTIONS(3266), - [anon_sym_any] = ACTIONS(3266), - [anon_sym_number] = ACTIONS(3266), - [anon_sym_boolean] = ACTIONS(3266), - [anon_sym_string] = ACTIONS(3266), - [anon_sym_symbol] = ACTIONS(3266), - [anon_sym_object] = ACTIONS(3266), - [anon_sym_abstract] = ACTIONS(3266), - [anon_sym_interface] = ACTIONS(3266), - [anon_sym_enum] = ACTIONS(3266), + [1093] = { + [sym_comment] = STATE(1093), + [sym_identifier] = ACTIONS(3312), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_default] = ACTIONS(3312), + [anon_sym_type] = ACTIONS(3312), + [anon_sym_namespace] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_typeof] = ACTIONS(3312), + [anon_sym_import] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3312), + [anon_sym_var] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_await] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_debugger] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3312), + [anon_sym_case] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LTtemplate_GT] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_async] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_using] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_SLASH] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_void] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3312), + [sym_number] = ACTIONS(3312), + [sym_private_property_identifier] = ACTIONS(3312), + [sym_this] = ACTIONS(3312), + [sym_super] = ACTIONS(3312), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [sym_null] = ACTIONS(3312), + [sym_undefined] = ACTIONS(3312), + [anon_sym_AT] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_readonly] = ACTIONS(3312), + [anon_sym_get] = ACTIONS(3312), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_declare] = ACTIONS(3312), + [anon_sym_public] = ACTIONS(3312), + [anon_sym_private] = ACTIONS(3312), + [anon_sym_protected] = ACTIONS(3312), + [anon_sym_override] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_any] = ACTIONS(3312), + [anon_sym_number] = ACTIONS(3312), + [anon_sym_boolean] = ACTIONS(3312), + [anon_sym_string] = ACTIONS(3312), + [anon_sym_symbol] = ACTIONS(3312), + [anon_sym_object] = ACTIONS(3312), + [anon_sym_abstract] = ACTIONS(3312), + [anon_sym_interface] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), [sym_html_comment] = ACTIONS(5), }, - [1082] = { - [sym_comment] = STATE(1082), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_default] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_namespace] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_typeof] = ACTIONS(2251), - [anon_sym_import] = ACTIONS(2251), - [anon_sym_with] = ACTIONS(2251), - [anon_sym_var] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_debugger] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_throw] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_case] = ACTIONS(2251), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_LTtemplate_GT] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_using] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_void] = ACTIONS(2251), - [anon_sym_delete] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), + [1094] = { + [sym_comment] = STATE(1094), + [sym_identifier] = ACTIONS(2149), + [anon_sym_export] = ACTIONS(2149), + [anon_sym_default] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2149), + [anon_sym_typeof] = ACTIONS(2149), + [anon_sym_import] = ACTIONS(2149), + [anon_sym_with] = ACTIONS(2149), + [anon_sym_var] = ACTIONS(2149), + [anon_sym_let] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_else] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_switch] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [anon_sym_do] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_debugger] = ACTIONS(2149), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_throw] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(2149), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_LTtemplate_GT] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(2149), + [anon_sym_class] = ACTIONS(2149), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_function] = ACTIONS(2149), + [anon_sym_new] = ACTIONS(2149), + [anon_sym_using] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_SLASH] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_TILDE] = ACTIONS(2149), + [anon_sym_void] = ACTIONS(2149), + [anon_sym_delete] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2149), + [anon_sym_DASH_DASH] = ACTIONS(2149), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2251), - [sym_number] = ACTIONS(2251), - [sym_private_property_identifier] = ACTIONS(2251), - [sym_this] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_undefined] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_readonly] = ACTIONS(2251), - [anon_sym_get] = ACTIONS(2251), - [anon_sym_set] = ACTIONS(2251), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_public] = ACTIONS(2251), - [anon_sym_private] = ACTIONS(2251), - [anon_sym_protected] = ACTIONS(2251), - [anon_sym_override] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_any] = ACTIONS(2251), - [anon_sym_number] = ACTIONS(2251), - [anon_sym_boolean] = ACTIONS(2251), - [anon_sym_string] = ACTIONS(2251), - [anon_sym_symbol] = ACTIONS(2251), - [anon_sym_object] = ACTIONS(2251), - [anon_sym_abstract] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [sym__automatic_semicolon] = ACTIONS(2253), + [anon_sym_BQUOTE] = ACTIONS(2149), + [sym_number] = ACTIONS(2149), + [sym_private_property_identifier] = ACTIONS(2149), + [sym_this] = ACTIONS(2149), + [sym_super] = ACTIONS(2149), + [sym_true] = ACTIONS(2149), + [sym_false] = ACTIONS(2149), + [sym_null] = ACTIONS(2149), + [sym_undefined] = ACTIONS(2149), + [anon_sym_AT] = ACTIONS(2149), + [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_abstract] = ACTIONS(2149), + [anon_sym_interface] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), [sym_html_comment] = ACTIONS(5), }, - [1083] = { - [sym_comment] = STATE(1083), - [sym_identifier] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_default] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_typeof] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_var] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_case] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LTtemplate_GT] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_delete] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2145), - [sym_number] = ACTIONS(2145), - [sym_private_property_identifier] = ACTIONS(2145), - [sym_this] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2145), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_declare] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_protected] = ACTIONS(2145), - [anon_sym_override] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2145), - [anon_sym_any] = ACTIONS(2145), - [anon_sym_number] = ACTIONS(2145), - [anon_sym_boolean] = ACTIONS(2145), - [anon_sym_string] = ACTIONS(2145), - [anon_sym_symbol] = ACTIONS(2145), - [anon_sym_object] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [sym__automatic_semicolon] = ACTIONS(2147), + [1095] = { + [sym_comment] = STATE(1095), + [ts_builtin_sym_end] = ACTIONS(2381), + [sym_identifier] = ACTIONS(2205), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_typeof] = ACTIONS(2205), + [anon_sym_import] = ACTIONS(2205), + [anon_sym_with] = ACTIONS(2205), + [anon_sym_var] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_else] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_debugger] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_LTtemplate_GT] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_using] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_void] = ACTIONS(2205), + [anon_sym_delete] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(2205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2205), + [sym_number] = ACTIONS(2205), + [sym_private_property_identifier] = ACTIONS(2205), + [sym_this] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_null] = ACTIONS(2205), + [sym_undefined] = ACTIONS(2205), + [anon_sym_AT] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_readonly] = ACTIONS(2205), + [anon_sym_get] = ACTIONS(2205), + [anon_sym_set] = ACTIONS(2205), + [anon_sym_declare] = ACTIONS(2205), + [anon_sym_public] = ACTIONS(2205), + [anon_sym_private] = ACTIONS(2205), + [anon_sym_protected] = ACTIONS(2205), + [anon_sym_override] = ACTIONS(2205), + [anon_sym_module] = ACTIONS(2205), + [anon_sym_any] = ACTIONS(2205), + [anon_sym_number] = ACTIONS(2205), + [anon_sym_boolean] = ACTIONS(2205), + [anon_sym_string] = ACTIONS(2205), + [anon_sym_symbol] = ACTIONS(2205), + [anon_sym_object] = ACTIONS(2205), + [anon_sym_abstract] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [sym__automatic_semicolon] = ACTIONS(2383), [sym_html_comment] = ACTIONS(5), }, - [1084] = { - [sym_comment] = STATE(1084), - [sym_identifier] = ACTIONS(2077), - [anon_sym_export] = ACTIONS(2077), - [anon_sym_default] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_namespace] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(2077), - [anon_sym_import] = ACTIONS(2077), - [anon_sym_with] = ACTIONS(2077), - [anon_sym_var] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_else] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_switch] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_await] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_debugger] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_throw] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_case] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LTtemplate_GT] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_class] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_new] = ACTIONS(2077), - [anon_sym_using] = ACTIONS(2077), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2077), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_void] = ACTIONS(2077), - [anon_sym_delete] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2077), - [sym_number] = ACTIONS(2077), - [sym_private_property_identifier] = ACTIONS(2077), - [sym_this] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_true] = ACTIONS(2077), - [sym_false] = ACTIONS(2077), - [sym_null] = ACTIONS(2077), - [sym_undefined] = ACTIONS(2077), - [anon_sym_AT] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_readonly] = ACTIONS(2077), - [anon_sym_get] = ACTIONS(2077), - [anon_sym_set] = ACTIONS(2077), - [anon_sym_declare] = ACTIONS(2077), - [anon_sym_public] = ACTIONS(2077), - [anon_sym_private] = ACTIONS(2077), - [anon_sym_protected] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2077), - [anon_sym_module] = ACTIONS(2077), - [anon_sym_any] = ACTIONS(2077), - [anon_sym_number] = ACTIONS(2077), - [anon_sym_boolean] = ACTIONS(2077), - [anon_sym_string] = ACTIONS(2077), - [anon_sym_symbol] = ACTIONS(2077), - [anon_sym_object] = ACTIONS(2077), - [anon_sym_abstract] = ACTIONS(2077), - [anon_sym_interface] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), + [1096] = { + [sym_comment] = STATE(1096), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3314), + [anon_sym_default] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_RBRACE] = ACTIONS(3314), + [anon_sym_typeof] = ACTIONS(3314), + [anon_sym_import] = ACTIONS(3314), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_var] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_const] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_else] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_switch] = ACTIONS(3314), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_await] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_break] = ACTIONS(3314), + [anon_sym_continue] = ACTIONS(3314), + [anon_sym_debugger] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_throw] = ACTIONS(3314), + [anon_sym_SEMI] = ACTIONS(3314), + [anon_sym_case] = ACTIONS(3314), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LTtemplate_GT] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_SQUOTE] = ACTIONS(3314), + [anon_sym_class] = ACTIONS(3314), + [anon_sym_async] = ACTIONS(3314), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_using] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_SLASH] = ACTIONS(3314), + [anon_sym_LT] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3314), + [anon_sym_void] = ACTIONS(3314), + [anon_sym_delete] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3314), + [anon_sym_DASH_DASH] = ACTIONS(3314), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3314), + [sym_number] = ACTIONS(3314), + [sym_private_property_identifier] = ACTIONS(3314), + [sym_this] = ACTIONS(3314), + [sym_super] = ACTIONS(3314), + [sym_true] = ACTIONS(3314), + [sym_false] = ACTIONS(3314), + [sym_null] = ACTIONS(3314), + [sym_undefined] = ACTIONS(3314), + [anon_sym_AT] = ACTIONS(3314), + [anon_sym_static] = ACTIONS(3314), + [anon_sym_readonly] = ACTIONS(3314), + [anon_sym_get] = ACTIONS(3314), + [anon_sym_set] = ACTIONS(3314), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3314), + [anon_sym_private] = ACTIONS(3314), + [anon_sym_protected] = ACTIONS(3314), + [anon_sym_override] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_any] = ACTIONS(3314), + [anon_sym_number] = ACTIONS(3314), + [anon_sym_boolean] = ACTIONS(3314), + [anon_sym_string] = ACTIONS(3314), + [anon_sym_symbol] = ACTIONS(3314), + [anon_sym_object] = ACTIONS(3314), + [anon_sym_abstract] = ACTIONS(3314), + [anon_sym_interface] = ACTIONS(3314), + [anon_sym_enum] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, - [1085] = { - [sym_comment] = STATE(1085), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1097] = { + [sym_comment] = STATE(1097), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_case] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [sym__automatic_semicolon] = ACTIONS(2179), [sym_html_comment] = ACTIONS(5), }, - [1086] = { - [sym_comment] = STATE(1086), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [1098] = { + [sym_comment] = STATE(1098), + [sym_identifier] = ACTIONS(3316), + [anon_sym_export] = ACTIONS(3316), + [anon_sym_default] = ACTIONS(3316), + [anon_sym_type] = ACTIONS(3316), + [anon_sym_namespace] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3316), + [anon_sym_RBRACE] = ACTIONS(3316), + [anon_sym_typeof] = ACTIONS(3316), + [anon_sym_import] = ACTIONS(3316), + [anon_sym_with] = ACTIONS(3316), + [anon_sym_var] = ACTIONS(3316), + [anon_sym_let] = ACTIONS(3316), + [anon_sym_const] = ACTIONS(3316), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_else] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(3316), + [anon_sym_switch] = ACTIONS(3316), + [anon_sym_for] = ACTIONS(3316), + [anon_sym_LPAREN] = ACTIONS(3316), + [anon_sym_await] = ACTIONS(3316), + [anon_sym_while] = ACTIONS(3316), + [anon_sym_do] = ACTIONS(3316), + [anon_sym_try] = ACTIONS(3316), + [anon_sym_break] = ACTIONS(3316), + [anon_sym_continue] = ACTIONS(3316), + [anon_sym_debugger] = ACTIONS(3316), + [anon_sym_return] = ACTIONS(3316), + [anon_sym_throw] = ACTIONS(3316), + [anon_sym_SEMI] = ACTIONS(3316), + [anon_sym_case] = ACTIONS(3316), + [anon_sym_yield] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_LTtemplate_GT] = ACTIONS(3316), + [anon_sym_DQUOTE] = ACTIONS(3316), + [anon_sym_SQUOTE] = ACTIONS(3316), + [anon_sym_class] = ACTIONS(3316), + [anon_sym_async] = ACTIONS(3316), + [anon_sym_function] = ACTIONS(3316), + [anon_sym_new] = ACTIONS(3316), + [anon_sym_using] = ACTIONS(3316), + [anon_sym_PLUS] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3316), + [anon_sym_SLASH] = ACTIONS(3316), + [anon_sym_LT] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_void] = ACTIONS(3316), + [anon_sym_delete] = ACTIONS(3316), + [anon_sym_PLUS_PLUS] = ACTIONS(3316), + [anon_sym_DASH_DASH] = ACTIONS(3316), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3316), + [sym_number] = ACTIONS(3316), + [sym_private_property_identifier] = ACTIONS(3316), + [sym_this] = ACTIONS(3316), + [sym_super] = ACTIONS(3316), + [sym_true] = ACTIONS(3316), + [sym_false] = ACTIONS(3316), + [sym_null] = ACTIONS(3316), + [sym_undefined] = ACTIONS(3316), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_static] = ACTIONS(3316), + [anon_sym_readonly] = ACTIONS(3316), + [anon_sym_get] = ACTIONS(3316), + [anon_sym_set] = ACTIONS(3316), + [anon_sym_declare] = ACTIONS(3316), + [anon_sym_public] = ACTIONS(3316), + [anon_sym_private] = ACTIONS(3316), + [anon_sym_protected] = ACTIONS(3316), + [anon_sym_override] = ACTIONS(3316), + [anon_sym_module] = ACTIONS(3316), + [anon_sym_any] = ACTIONS(3316), + [anon_sym_number] = ACTIONS(3316), + [anon_sym_boolean] = ACTIONS(3316), + [anon_sym_string] = ACTIONS(3316), + [anon_sym_symbol] = ACTIONS(3316), + [anon_sym_object] = ACTIONS(3316), + [anon_sym_abstract] = ACTIONS(3316), + [anon_sym_interface] = ACTIONS(3316), + [anon_sym_enum] = ACTIONS(3316), [sym_html_comment] = ACTIONS(5), }, - [1087] = { - [sym_comment] = STATE(1087), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(3268), + [1099] = { + [sym_comment] = STATE(1099), + [sym_identifier] = ACTIONS(3318), + [anon_sym_export] = ACTIONS(3318), + [anon_sym_default] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_namespace] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_typeof] = ACTIONS(3318), + [anon_sym_import] = ACTIONS(3318), + [anon_sym_with] = ACTIONS(3318), + [anon_sym_var] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_const] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_switch] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_await] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_break] = ACTIONS(3318), + [anon_sym_continue] = ACTIONS(3318), + [anon_sym_debugger] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_throw] = ACTIONS(3318), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_case] = ACTIONS(3318), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LTtemplate_GT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_class] = ACTIONS(3318), + [anon_sym_async] = ACTIONS(3318), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_using] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_void] = ACTIONS(3318), + [anon_sym_delete] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3318), + [sym_number] = ACTIONS(3318), + [sym_private_property_identifier] = ACTIONS(3318), + [sym_this] = ACTIONS(3318), + [sym_super] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_null] = ACTIONS(3318), + [sym_undefined] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_static] = ACTIONS(3318), + [anon_sym_readonly] = ACTIONS(3318), + [anon_sym_get] = ACTIONS(3318), + [anon_sym_set] = ACTIONS(3318), + [anon_sym_declare] = ACTIONS(3318), + [anon_sym_public] = ACTIONS(3318), + [anon_sym_private] = ACTIONS(3318), + [anon_sym_protected] = ACTIONS(3318), + [anon_sym_override] = ACTIONS(3318), + [anon_sym_module] = ACTIONS(3318), + [anon_sym_any] = ACTIONS(3318), + [anon_sym_number] = ACTIONS(3318), + [anon_sym_boolean] = ACTIONS(3318), + [anon_sym_string] = ACTIONS(3318), + [anon_sym_symbol] = ACTIONS(3318), + [anon_sym_object] = ACTIONS(3318), + [anon_sym_abstract] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_enum] = ACTIONS(3318), [sym_html_comment] = ACTIONS(5), }, - [1088] = { - [sym_comment] = STATE(1088), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1100] = { + [sym_comment] = STATE(1100), + [sym_identifier] = ACTIONS(2149), + [anon_sym_export] = ACTIONS(2149), + [anon_sym_default] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2149), + [anon_sym_typeof] = ACTIONS(2149), + [anon_sym_import] = ACTIONS(2149), + [anon_sym_with] = ACTIONS(2149), + [anon_sym_var] = ACTIONS(2149), + [anon_sym_let] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_else] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_switch] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [anon_sym_do] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_debugger] = ACTIONS(2149), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_throw] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(2149), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_LTtemplate_GT] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(2149), + [anon_sym_class] = ACTIONS(2149), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_function] = ACTIONS(2149), + [anon_sym_new] = ACTIONS(2149), + [anon_sym_using] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_SLASH] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_TILDE] = ACTIONS(2149), + [anon_sym_void] = ACTIONS(2149), + [anon_sym_delete] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2149), + [anon_sym_DASH_DASH] = ACTIONS(2149), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(2149), + [sym_number] = ACTIONS(2149), + [sym_private_property_identifier] = ACTIONS(2149), + [sym_this] = ACTIONS(2149), + [sym_super] = ACTIONS(2149), + [sym_true] = ACTIONS(2149), + [sym_false] = ACTIONS(2149), + [sym_null] = ACTIONS(2149), + [sym_undefined] = ACTIONS(2149), + [anon_sym_AT] = ACTIONS(2149), + [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_abstract] = ACTIONS(2149), + [anon_sym_interface] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), [sym_html_comment] = ACTIONS(5), }, - [1089] = { - [sym_comment] = STATE(1089), + [1101] = { + [sym_comment] = STATE(1101), + [ts_builtin_sym_end] = ACTIONS(2223), [sym_identifier] = ACTIONS(2221), [anon_sym_export] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), [anon_sym_type] = ACTIONS(2221), [anon_sym_namespace] = ACTIONS(2221), [anon_sym_LBRACE] = ACTIONS(2221), @@ -152781,7 +153469,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2221), [anon_sym_throw] = ACTIONS(2221), [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_case] = ACTIONS(2221), [anon_sym_yield] = ACTIONS(2221), [anon_sym_LBRACK] = ACTIONS(2221), [anon_sym_LTtemplate_GT] = ACTIONS(2221), @@ -152831,840 +153518,343 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2221), [anon_sym_interface] = ACTIONS(2221), [anon_sym_enum] = ACTIONS(2221), + [sym__automatic_semicolon] = ACTIONS(2223), [sym_html_comment] = ACTIONS(5), }, - [1090] = { - [sym_comment] = STATE(1090), - [sym_identifier] = ACTIONS(3270), - [anon_sym_export] = ACTIONS(3270), - [anon_sym_default] = ACTIONS(3270), - [anon_sym_type] = ACTIONS(3270), - [anon_sym_namespace] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3270), - [anon_sym_RBRACE] = ACTIONS(3270), - [anon_sym_typeof] = ACTIONS(3270), - [anon_sym_import] = ACTIONS(3270), - [anon_sym_with] = ACTIONS(3270), - [anon_sym_var] = ACTIONS(3270), - [anon_sym_let] = ACTIONS(3270), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_switch] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3270), - [anon_sym_await] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_do] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_debugger] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3270), - [anon_sym_case] = ACTIONS(3270), - [anon_sym_yield] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_LTtemplate_GT] = ACTIONS(3270), - [anon_sym_DQUOTE] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3270), - [anon_sym_async] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_TILDE] = ACTIONS(3270), - [anon_sym_void] = ACTIONS(3270), - [anon_sym_delete] = ACTIONS(3270), - [anon_sym_PLUS_PLUS] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3270), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3270), - [sym_number] = ACTIONS(3270), - [sym_private_property_identifier] = ACTIONS(3270), - [sym_this] = ACTIONS(3270), - [sym_super] = ACTIONS(3270), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [sym_null] = ACTIONS(3270), - [sym_undefined] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_readonly] = ACTIONS(3270), - [anon_sym_get] = ACTIONS(3270), - [anon_sym_set] = ACTIONS(3270), - [anon_sym_declare] = ACTIONS(3270), - [anon_sym_public] = ACTIONS(3270), - [anon_sym_private] = ACTIONS(3270), - [anon_sym_protected] = ACTIONS(3270), - [anon_sym_override] = ACTIONS(3270), - [anon_sym_module] = ACTIONS(3270), - [anon_sym_any] = ACTIONS(3270), - [anon_sym_number] = ACTIONS(3270), - [anon_sym_boolean] = ACTIONS(3270), - [anon_sym_string] = ACTIONS(3270), - [anon_sym_symbol] = ACTIONS(3270), - [anon_sym_object] = ACTIONS(3270), - [anon_sym_abstract] = ACTIONS(3270), - [anon_sym_interface] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), + [1102] = { + [sym_comment] = STATE(1102), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_typeof] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_with] = ACTIONS(2175), + [anon_sym_var] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_debugger] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_throw] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_case] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_LTtemplate_GT] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_function] = ACTIONS(2175), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_using] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_void] = ACTIONS(2175), + [anon_sym_delete] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2175), + [sym_number] = ACTIONS(2175), + [sym_private_property_identifier] = ACTIONS(2175), + [sym_this] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_null] = ACTIONS(2175), + [sym_undefined] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_readonly] = ACTIONS(2175), + [anon_sym_get] = ACTIONS(2175), + [anon_sym_set] = ACTIONS(2175), + [anon_sym_declare] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_override] = ACTIONS(2175), + [anon_sym_module] = ACTIONS(2175), + [anon_sym_any] = ACTIONS(2175), + [anon_sym_number] = ACTIONS(2175), + [anon_sym_boolean] = ACTIONS(2175), + [anon_sym_string] = ACTIONS(2175), + [anon_sym_symbol] = ACTIONS(2175), + [anon_sym_object] = ACTIONS(2175), + [anon_sym_abstract] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), [sym_html_comment] = ACTIONS(5), }, - [1091] = { - [sym_comment] = STATE(1091), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3272), - [anon_sym_default] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_typeof] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(3272), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_var] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_const] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_switch] = ACTIONS(3272), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_await] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_break] = ACTIONS(3272), - [anon_sym_continue] = ACTIONS(3272), - [anon_sym_debugger] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_throw] = ACTIONS(3272), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym_case] = ACTIONS(3272), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LTtemplate_GT] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_class] = ACTIONS(3272), - [anon_sym_async] = ACTIONS(3272), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_using] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_void] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3272), - [sym_number] = ACTIONS(3272), - [sym_private_property_identifier] = ACTIONS(3272), - [sym_this] = ACTIONS(3272), - [sym_super] = ACTIONS(3272), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_undefined] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3272), - [anon_sym_static] = ACTIONS(3272), - [anon_sym_readonly] = ACTIONS(3272), - [anon_sym_get] = ACTIONS(3272), - [anon_sym_set] = ACTIONS(3272), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3272), - [anon_sym_private] = ACTIONS(3272), - [anon_sym_protected] = ACTIONS(3272), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_any] = ACTIONS(3272), - [anon_sym_number] = ACTIONS(3272), - [anon_sym_boolean] = ACTIONS(3272), - [anon_sym_string] = ACTIONS(3272), - [anon_sym_symbol] = ACTIONS(3272), - [anon_sym_object] = ACTIONS(3272), - [anon_sym_abstract] = ACTIONS(3272), - [anon_sym_interface] = ACTIONS(3272), - [anon_sym_enum] = ACTIONS(3272), + [1103] = { + [sym_comment] = STATE(1103), + [ts_builtin_sym_end] = ACTIONS(2357), + [sym_identifier] = ACTIONS(2255), + [anon_sym_export] = ACTIONS(2255), + [anon_sym_type] = ACTIONS(2255), + [anon_sym_namespace] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_typeof] = ACTIONS(2255), + [anon_sym_import] = ACTIONS(2255), + [anon_sym_with] = ACTIONS(2255), + [anon_sym_var] = ACTIONS(2255), + [anon_sym_let] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_else] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_switch] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2255), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_try] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_debugger] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_yield] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_LTtemplate_GT] = ACTIONS(2255), + [anon_sym_DQUOTE] = ACTIONS(2255), + [anon_sym_SQUOTE] = ACTIONS(2255), + [anon_sym_class] = ACTIONS(2255), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2255), + [anon_sym_new] = ACTIONS(2255), + [anon_sym_using] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_void] = ACTIONS(2255), + [anon_sym_delete] = ACTIONS(2255), + [anon_sym_PLUS_PLUS] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2255), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2255), + [sym_number] = ACTIONS(2255), + [sym_private_property_identifier] = ACTIONS(2255), + [sym_this] = ACTIONS(2255), + [sym_super] = ACTIONS(2255), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), + [sym_null] = ACTIONS(2255), + [sym_undefined] = ACTIONS(2255), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_readonly] = ACTIONS(2255), + [anon_sym_get] = ACTIONS(2255), + [anon_sym_set] = ACTIONS(2255), + [anon_sym_declare] = ACTIONS(2255), + [anon_sym_public] = ACTIONS(2255), + [anon_sym_private] = ACTIONS(2255), + [anon_sym_protected] = ACTIONS(2255), + [anon_sym_override] = ACTIONS(2255), + [anon_sym_module] = ACTIONS(2255), + [anon_sym_any] = ACTIONS(2255), + [anon_sym_number] = ACTIONS(2255), + [anon_sym_boolean] = ACTIONS(2255), + [anon_sym_string] = ACTIONS(2255), + [anon_sym_symbol] = ACTIONS(2255), + [anon_sym_object] = ACTIONS(2255), + [anon_sym_abstract] = ACTIONS(2255), + [anon_sym_interface] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [sym__automatic_semicolon] = ACTIONS(2359), [sym_html_comment] = ACTIONS(5), }, - [1092] = { - [sym_comment] = STATE(1092), - [sym_identifier] = ACTIONS(3274), - [anon_sym_export] = ACTIONS(3274), - [anon_sym_default] = ACTIONS(3274), - [anon_sym_type] = ACTIONS(3274), - [anon_sym_namespace] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_RBRACE] = ACTIONS(3274), - [anon_sym_typeof] = ACTIONS(3274), - [anon_sym_import] = ACTIONS(3274), - [anon_sym_with] = ACTIONS(3274), - [anon_sym_var] = ACTIONS(3274), - [anon_sym_let] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_BANG] = ACTIONS(3274), - [anon_sym_else] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3274), - [anon_sym_await] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_try] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_debugger] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_throw] = ACTIONS(3274), - [anon_sym_SEMI] = ACTIONS(3274), - [anon_sym_case] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_LTtemplate_GT] = ACTIONS(3274), - [anon_sym_DQUOTE] = ACTIONS(3274), - [anon_sym_SQUOTE] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_async] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_SLASH] = ACTIONS(3274), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_TILDE] = ACTIONS(3274), - [anon_sym_void] = ACTIONS(3274), - [anon_sym_delete] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3274), - [sym_number] = ACTIONS(3274), - [sym_private_property_identifier] = ACTIONS(3274), - [sym_this] = ACTIONS(3274), - [sym_super] = ACTIONS(3274), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [sym_null] = ACTIONS(3274), - [sym_undefined] = ACTIONS(3274), - [anon_sym_AT] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_readonly] = ACTIONS(3274), - [anon_sym_get] = ACTIONS(3274), - [anon_sym_set] = ACTIONS(3274), - [anon_sym_declare] = ACTIONS(3274), - [anon_sym_public] = ACTIONS(3274), - [anon_sym_private] = ACTIONS(3274), - [anon_sym_protected] = ACTIONS(3274), - [anon_sym_override] = ACTIONS(3274), - [anon_sym_module] = ACTIONS(3274), - [anon_sym_any] = ACTIONS(3274), - [anon_sym_number] = ACTIONS(3274), - [anon_sym_boolean] = ACTIONS(3274), - [anon_sym_string] = ACTIONS(3274), - [anon_sym_symbol] = ACTIONS(3274), - [anon_sym_object] = ACTIONS(3274), - [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_interface] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [sym_html_comment] = ACTIONS(5), - }, - [1093] = { - [sym_comment] = STATE(1093), - [sym_identifier] = ACTIONS(3276), - [anon_sym_export] = ACTIONS(3276), - [anon_sym_default] = ACTIONS(3276), - [anon_sym_type] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_RBRACE] = ACTIONS(3276), - [anon_sym_typeof] = ACTIONS(3276), - [anon_sym_import] = ACTIONS(3276), - [anon_sym_with] = ACTIONS(3276), - [anon_sym_var] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_const] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_switch] = ACTIONS(3276), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_await] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_debugger] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym_case] = ACTIONS(3276), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_LTtemplate_GT] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3276), - [anon_sym_class] = ACTIONS(3276), - [anon_sym_async] = ACTIONS(3276), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_using] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_void] = ACTIONS(3276), - [anon_sym_delete] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3276), - [sym_number] = ACTIONS(3276), - [sym_private_property_identifier] = ACTIONS(3276), - [sym_this] = ACTIONS(3276), - [sym_super] = ACTIONS(3276), - [sym_true] = ACTIONS(3276), - [sym_false] = ACTIONS(3276), - [sym_null] = ACTIONS(3276), - [sym_undefined] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3276), - [anon_sym_readonly] = ACTIONS(3276), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_declare] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_any] = ACTIONS(3276), - [anon_sym_number] = ACTIONS(3276), - [anon_sym_boolean] = ACTIONS(3276), - [anon_sym_string] = ACTIONS(3276), - [anon_sym_symbol] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_interface] = ACTIONS(3276), - [anon_sym_enum] = ACTIONS(3276), - [sym_html_comment] = ACTIONS(5), - }, - [1094] = { - [sym_comment] = STATE(1094), - [sym_identifier] = ACTIONS(3278), - [anon_sym_export] = ACTIONS(3278), - [anon_sym_default] = ACTIONS(3278), - [anon_sym_type] = ACTIONS(3278), - [anon_sym_namespace] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_RBRACE] = ACTIONS(3278), - [anon_sym_typeof] = ACTIONS(3278), - [anon_sym_import] = ACTIONS(3278), - [anon_sym_with] = ACTIONS(3278), - [anon_sym_var] = ACTIONS(3278), - [anon_sym_let] = ACTIONS(3278), - [anon_sym_const] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_switch] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3278), - [anon_sym_await] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_do] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_debugger] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym_case] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3278), - [anon_sym_LTtemplate_GT] = ACTIONS(3278), - [anon_sym_DQUOTE] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3278), - [anon_sym_class] = ACTIONS(3278), - [anon_sym_async] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3278), - [anon_sym_using] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_void] = ACTIONS(3278), - [anon_sym_delete] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3278), - [sym_number] = ACTIONS(3278), - [sym_private_property_identifier] = ACTIONS(3278), - [sym_this] = ACTIONS(3278), - [sym_super] = ACTIONS(3278), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [sym_null] = ACTIONS(3278), - [sym_undefined] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3278), - [anon_sym_static] = ACTIONS(3278), - [anon_sym_readonly] = ACTIONS(3278), - [anon_sym_get] = ACTIONS(3278), - [anon_sym_set] = ACTIONS(3278), - [anon_sym_declare] = ACTIONS(3278), - [anon_sym_public] = ACTIONS(3278), - [anon_sym_private] = ACTIONS(3278), - [anon_sym_protected] = ACTIONS(3278), - [anon_sym_override] = ACTIONS(3278), - [anon_sym_module] = ACTIONS(3278), - [anon_sym_any] = ACTIONS(3278), - [anon_sym_number] = ACTIONS(3278), - [anon_sym_boolean] = ACTIONS(3278), - [anon_sym_string] = ACTIONS(3278), - [anon_sym_symbol] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_abstract] = ACTIONS(3278), - [anon_sym_interface] = ACTIONS(3278), - [anon_sym_enum] = ACTIONS(3278), - [sym_html_comment] = ACTIONS(5), - }, - [1095] = { - [sym_comment] = STATE(1095), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_finally] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym_html_comment] = ACTIONS(5), - }, - [1096] = { - [sym_comment] = STATE(1096), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_finally] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym_html_comment] = ACTIONS(5), - }, - [1097] = { - [sym_comment] = STATE(1097), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1098] = { - [sym_comment] = STATE(1098), - [ts_builtin_sym_end] = ACTIONS(2103), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_else] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3280), + [1104] = { + [sym_comment] = STATE(1104), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(2115), [sym_html_comment] = ACTIONS(5), }, - [1099] = { - [sym_comment] = STATE(1099), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_default] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_namespace] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_typeof] = ACTIONS(2251), - [anon_sym_import] = ACTIONS(2251), - [anon_sym_with] = ACTIONS(2251), - [anon_sym_var] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_else] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_debugger] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_throw] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_case] = ACTIONS(2251), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_LTtemplate_GT] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_using] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_void] = ACTIONS(2251), - [anon_sym_delete] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2251), - [sym_number] = ACTIONS(2251), - [sym_private_property_identifier] = ACTIONS(2251), - [sym_this] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_undefined] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_readonly] = ACTIONS(2251), - [anon_sym_get] = ACTIONS(2251), - [anon_sym_set] = ACTIONS(2251), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_public] = ACTIONS(2251), - [anon_sym_private] = ACTIONS(2251), - [anon_sym_protected] = ACTIONS(2251), - [anon_sym_override] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_any] = ACTIONS(2251), - [anon_sym_number] = ACTIONS(2251), - [anon_sym_boolean] = ACTIONS(2251), - [anon_sym_string] = ACTIONS(2251), - [anon_sym_symbol] = ACTIONS(2251), - [anon_sym_object] = ACTIONS(2251), - [anon_sym_abstract] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), + [1105] = { + [sym_comment] = STATE(1105), + [sym_identifier] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_typeof] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2125), + [anon_sym_with] = ACTIONS(2125), + [anon_sym_var] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_else] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_debugger] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_case] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LTtemplate_GT] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_void] = ACTIONS(2125), + [anon_sym_delete] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2125), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(2125), + [sym_this] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [sym_undefined] = ACTIONS(2125), + [anon_sym_AT] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_readonly] = ACTIONS(2125), + [anon_sym_get] = ACTIONS(2125), + [anon_sym_set] = ACTIONS(2125), + [anon_sym_declare] = ACTIONS(2125), + [anon_sym_public] = ACTIONS(2125), + [anon_sym_private] = ACTIONS(2125), + [anon_sym_protected] = ACTIONS(2125), + [anon_sym_override] = ACTIONS(2125), + [anon_sym_module] = ACTIONS(2125), + [anon_sym_any] = ACTIONS(2125), + [anon_sym_number] = ACTIONS(2125), + [anon_sym_boolean] = ACTIONS(2125), + [anon_sym_string] = ACTIONS(2125), + [anon_sym_symbol] = ACTIONS(2125), + [anon_sym_object] = ACTIONS(2125), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), [sym_html_comment] = ACTIONS(5), }, - [1100] = { - [sym_comment] = STATE(1100), + [1106] = { + [sym_comment] = STATE(1106), [sym_identifier] = ACTIONS(2145), [anon_sym_export] = ACTIONS(2145), [anon_sym_default] = ACTIONS(2145), @@ -153746,1505 +153936,1173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2145), [sym_html_comment] = ACTIONS(5), }, - [1101] = { - [sym_comment] = STATE(1101), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(2095), - [sym_html_comment] = ACTIONS(5), - }, - [1102] = { - [sym_comment] = STATE(1102), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_default] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_case] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym_html_comment] = ACTIONS(5), - }, - [1103] = { - [sym_comment] = STATE(1103), - [sym_identifier] = ACTIONS(3282), - [anon_sym_export] = ACTIONS(3282), - [anon_sym_default] = ACTIONS(3282), - [anon_sym_type] = ACTIONS(3282), - [anon_sym_namespace] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_RBRACE] = ACTIONS(3282), - [anon_sym_typeof] = ACTIONS(3282), - [anon_sym_import] = ACTIONS(3282), - [anon_sym_with] = ACTIONS(3282), - [anon_sym_var] = ACTIONS(3282), - [anon_sym_let] = ACTIONS(3282), - [anon_sym_const] = ACTIONS(3282), - [anon_sym_BANG] = ACTIONS(3282), - [anon_sym_else] = ACTIONS(3282), - [anon_sym_if] = ACTIONS(3282), - [anon_sym_switch] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_await] = ACTIONS(3282), - [anon_sym_while] = ACTIONS(3282), - [anon_sym_do] = ACTIONS(3282), - [anon_sym_try] = ACTIONS(3282), - [anon_sym_break] = ACTIONS(3282), - [anon_sym_continue] = ACTIONS(3282), - [anon_sym_debugger] = ACTIONS(3282), - [anon_sym_return] = ACTIONS(3282), - [anon_sym_throw] = ACTIONS(3282), - [anon_sym_SEMI] = ACTIONS(3282), - [anon_sym_case] = ACTIONS(3282), - [anon_sym_yield] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_LTtemplate_GT] = ACTIONS(3282), - [anon_sym_DQUOTE] = ACTIONS(3282), - [anon_sym_SQUOTE] = ACTIONS(3282), - [anon_sym_class] = ACTIONS(3282), - [anon_sym_async] = ACTIONS(3282), - [anon_sym_function] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3282), - [anon_sym_using] = ACTIONS(3282), - [anon_sym_PLUS] = ACTIONS(3282), - [anon_sym_DASH] = ACTIONS(3282), - [anon_sym_SLASH] = ACTIONS(3282), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_TILDE] = ACTIONS(3282), - [anon_sym_void] = ACTIONS(3282), - [anon_sym_delete] = ACTIONS(3282), - [anon_sym_PLUS_PLUS] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3282), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3282), - [sym_number] = ACTIONS(3282), - [sym_private_property_identifier] = ACTIONS(3282), - [sym_this] = ACTIONS(3282), - [sym_super] = ACTIONS(3282), - [sym_true] = ACTIONS(3282), - [sym_false] = ACTIONS(3282), - [sym_null] = ACTIONS(3282), - [sym_undefined] = ACTIONS(3282), - [anon_sym_AT] = ACTIONS(3282), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_readonly] = ACTIONS(3282), - [anon_sym_get] = ACTIONS(3282), - [anon_sym_set] = ACTIONS(3282), - [anon_sym_declare] = ACTIONS(3282), - [anon_sym_public] = ACTIONS(3282), - [anon_sym_private] = ACTIONS(3282), - [anon_sym_protected] = ACTIONS(3282), - [anon_sym_override] = ACTIONS(3282), - [anon_sym_module] = ACTIONS(3282), - [anon_sym_any] = ACTIONS(3282), - [anon_sym_number] = ACTIONS(3282), - [anon_sym_boolean] = ACTIONS(3282), - [anon_sym_string] = ACTIONS(3282), - [anon_sym_symbol] = ACTIONS(3282), - [anon_sym_object] = ACTIONS(3282), - [anon_sym_abstract] = ACTIONS(3282), - [anon_sym_interface] = ACTIONS(3282), - [anon_sym_enum] = ACTIONS(3282), - [sym_html_comment] = ACTIONS(5), - }, - [1104] = { - [sym_comment] = STATE(1104), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym__automatic_semicolon] = ACTIONS(2107), - [sym_html_comment] = ACTIONS(5), - }, - [1105] = { - [sym_comment] = STATE(1105), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_default] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_case] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym_html_comment] = ACTIONS(5), - }, - [1106] = { - [sym_comment] = STATE(1106), - [sym_identifier] = ACTIONS(3284), - [anon_sym_export] = ACTIONS(3284), - [anon_sym_default] = ACTIONS(3284), - [anon_sym_type] = ACTIONS(3284), - [anon_sym_namespace] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3284), - [anon_sym_typeof] = ACTIONS(3284), - [anon_sym_import] = ACTIONS(3284), - [anon_sym_with] = ACTIONS(3284), - [anon_sym_var] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_const] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_switch] = ACTIONS(3284), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_await] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_debugger] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_case] = ACTIONS(3284), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LTtemplate_GT] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_async] = ACTIONS(3284), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_using] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_void] = ACTIONS(3284), - [anon_sym_delete] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_DASH_DASH] = ACTIONS(3284), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3284), - [sym_number] = ACTIONS(3284), - [sym_private_property_identifier] = ACTIONS(3284), - [sym_this] = ACTIONS(3284), - [sym_super] = ACTIONS(3284), - [sym_true] = ACTIONS(3284), - [sym_false] = ACTIONS(3284), - [sym_null] = ACTIONS(3284), - [sym_undefined] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_readonly] = ACTIONS(3284), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_declare] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_module] = ACTIONS(3284), - [anon_sym_any] = ACTIONS(3284), - [anon_sym_number] = ACTIONS(3284), - [anon_sym_boolean] = ACTIONS(3284), - [anon_sym_string] = ACTIONS(3284), - [anon_sym_symbol] = ACTIONS(3284), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_interface] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), - [sym_html_comment] = ACTIONS(5), - }, [1107] = { [sym_comment] = STATE(1107), - [sym_identifier] = ACTIONS(3286), - [anon_sym_export] = ACTIONS(3286), - [anon_sym_default] = ACTIONS(3286), - [anon_sym_type] = ACTIONS(3286), - [anon_sym_namespace] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_RBRACE] = ACTIONS(3286), - [anon_sym_typeof] = ACTIONS(3286), - [anon_sym_import] = ACTIONS(3286), - [anon_sym_with] = ACTIONS(3286), - [anon_sym_var] = ACTIONS(3286), - [anon_sym_let] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_else] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3286), - [anon_sym_await] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_try] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_debugger] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_throw] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3286), - [anon_sym_yield] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3286), - [anon_sym_LTtemplate_GT] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [anon_sym_class] = ACTIONS(3286), - [anon_sym_async] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3286), - [anon_sym_using] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_SLASH] = ACTIONS(3286), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_void] = ACTIONS(3286), - [anon_sym_delete] = ACTIONS(3286), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3286), - [sym_number] = ACTIONS(3286), - [sym_private_property_identifier] = ACTIONS(3286), - [sym_this] = ACTIONS(3286), - [sym_super] = ACTIONS(3286), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_null] = ACTIONS(3286), - [sym_undefined] = ACTIONS(3286), - [anon_sym_AT] = ACTIONS(3286), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_readonly] = ACTIONS(3286), - [anon_sym_get] = ACTIONS(3286), - [anon_sym_set] = ACTIONS(3286), - [anon_sym_declare] = ACTIONS(3286), - [anon_sym_public] = ACTIONS(3286), - [anon_sym_private] = ACTIONS(3286), - [anon_sym_protected] = ACTIONS(3286), - [anon_sym_override] = ACTIONS(3286), - [anon_sym_module] = ACTIONS(3286), - [anon_sym_any] = ACTIONS(3286), - [anon_sym_number] = ACTIONS(3286), - [anon_sym_boolean] = ACTIONS(3286), - [anon_sym_string] = ACTIONS(3286), - [anon_sym_symbol] = ACTIONS(3286), - [anon_sym_object] = ACTIONS(3286), - [anon_sym_abstract] = ACTIONS(3286), - [anon_sym_interface] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), + [sym_identifier] = ACTIONS(2241), + [anon_sym_export] = ACTIONS(2241), + [anon_sym_default] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_namespace] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2241), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_typeof] = ACTIONS(2241), + [anon_sym_import] = ACTIONS(2241), + [anon_sym_with] = ACTIONS(2241), + [anon_sym_var] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_switch] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_await] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_do] = ACTIONS(2241), + [anon_sym_try] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_debugger] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_throw] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(2241), + [anon_sym_case] = ACTIONS(2241), + [anon_sym_yield] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_LTtemplate_GT] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_class] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_function] = ACTIONS(2241), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_using] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_SLASH] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_void] = ACTIONS(2241), + [anon_sym_delete] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2241), + [sym_number] = ACTIONS(2241), + [sym_private_property_identifier] = ACTIONS(2241), + [sym_this] = ACTIONS(2241), + [sym_super] = ACTIONS(2241), + [sym_true] = ACTIONS(2241), + [sym_false] = ACTIONS(2241), + [sym_null] = ACTIONS(2241), + [sym_undefined] = ACTIONS(2241), + [anon_sym_AT] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_readonly] = ACTIONS(2241), + [anon_sym_get] = ACTIONS(2241), + [anon_sym_set] = ACTIONS(2241), + [anon_sym_declare] = ACTIONS(2241), + [anon_sym_public] = ACTIONS(2241), + [anon_sym_private] = ACTIONS(2241), + [anon_sym_protected] = ACTIONS(2241), + [anon_sym_override] = ACTIONS(2241), + [anon_sym_module] = ACTIONS(2241), + [anon_sym_any] = ACTIONS(2241), + [anon_sym_number] = ACTIONS(2241), + [anon_sym_boolean] = ACTIONS(2241), + [anon_sym_string] = ACTIONS(2241), + [anon_sym_symbol] = ACTIONS(2241), + [anon_sym_object] = ACTIONS(2241), + [anon_sym_abstract] = ACTIONS(2241), + [anon_sym_interface] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [sym__automatic_semicolon] = ACTIONS(2267), [sym_html_comment] = ACTIONS(5), }, [1108] = { [sym_comment] = STATE(1108), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), + [sym_identifier] = ACTIONS(3320), + [anon_sym_export] = ACTIONS(3320), + [anon_sym_default] = ACTIONS(3320), + [anon_sym_type] = ACTIONS(3320), + [anon_sym_namespace] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3320), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_typeof] = ACTIONS(3320), + [anon_sym_import] = ACTIONS(3320), + [anon_sym_with] = ACTIONS(3320), + [anon_sym_var] = ACTIONS(3320), + [anon_sym_let] = ACTIONS(3320), + [anon_sym_const] = ACTIONS(3320), + [anon_sym_BANG] = ACTIONS(3320), + [anon_sym_else] = ACTIONS(3320), + [anon_sym_if] = ACTIONS(3320), + [anon_sym_switch] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3320), + [anon_sym_await] = ACTIONS(3320), + [anon_sym_while] = ACTIONS(3320), + [anon_sym_do] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(3320), + [anon_sym_break] = ACTIONS(3320), + [anon_sym_continue] = ACTIONS(3320), + [anon_sym_debugger] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3320), + [anon_sym_throw] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_case] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_LTtemplate_GT] = ACTIONS(3320), + [anon_sym_DQUOTE] = ACTIONS(3320), + [anon_sym_SQUOTE] = ACTIONS(3320), + [anon_sym_class] = ACTIONS(3320), + [anon_sym_async] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3320), + [anon_sym_using] = ACTIONS(3320), + [anon_sym_PLUS] = ACTIONS(3320), + [anon_sym_DASH] = ACTIONS(3320), + [anon_sym_SLASH] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_TILDE] = ACTIONS(3320), + [anon_sym_void] = ACTIONS(3320), + [anon_sym_delete] = ACTIONS(3320), + [anon_sym_PLUS_PLUS] = ACTIONS(3320), + [anon_sym_DASH_DASH] = ACTIONS(3320), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2109), + [anon_sym_BQUOTE] = ACTIONS(3320), + [sym_number] = ACTIONS(3320), + [sym_private_property_identifier] = ACTIONS(3320), + [sym_this] = ACTIONS(3320), + [sym_super] = ACTIONS(3320), + [sym_true] = ACTIONS(3320), + [sym_false] = ACTIONS(3320), + [sym_null] = ACTIONS(3320), + [sym_undefined] = ACTIONS(3320), + [anon_sym_AT] = ACTIONS(3320), + [anon_sym_static] = ACTIONS(3320), + [anon_sym_readonly] = ACTIONS(3320), + [anon_sym_get] = ACTIONS(3320), + [anon_sym_set] = ACTIONS(3320), + [anon_sym_declare] = ACTIONS(3320), + [anon_sym_public] = ACTIONS(3320), + [anon_sym_private] = ACTIONS(3320), + [anon_sym_protected] = ACTIONS(3320), + [anon_sym_override] = ACTIONS(3320), + [anon_sym_module] = ACTIONS(3320), + [anon_sym_any] = ACTIONS(3320), + [anon_sym_number] = ACTIONS(3320), + [anon_sym_boolean] = ACTIONS(3320), + [anon_sym_string] = ACTIONS(3320), + [anon_sym_symbol] = ACTIONS(3320), + [anon_sym_object] = ACTIONS(3320), + [anon_sym_abstract] = ACTIONS(3320), + [anon_sym_interface] = ACTIONS(3320), + [anon_sym_enum] = ACTIONS(3320), [sym_html_comment] = ACTIONS(5), }, [1109] = { [sym_comment] = STATE(1109), - [sym_identifier] = ACTIONS(3088), - [anon_sym_export] = ACTIONS(3088), - [anon_sym_default] = ACTIONS(3088), - [anon_sym_type] = ACTIONS(3088), - [anon_sym_namespace] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_RBRACE] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(3088), - [anon_sym_import] = ACTIONS(3088), - [anon_sym_with] = ACTIONS(3088), - [anon_sym_var] = ACTIONS(3088), - [anon_sym_let] = ACTIONS(3088), - [anon_sym_const] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_switch] = ACTIONS(3088), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_await] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_debugger] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3088), - [anon_sym_case] = ACTIONS(3088), - [anon_sym_finally] = ACTIONS(3088), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_LTtemplate_GT] = ACTIONS(3088), - [anon_sym_DQUOTE] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3088), - [anon_sym_class] = ACTIONS(3088), - [anon_sym_async] = ACTIONS(3088), - [anon_sym_function] = ACTIONS(3088), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_using] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_SLASH] = ACTIONS(3088), - [anon_sym_LT] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3088), - [anon_sym_void] = ACTIONS(3088), - [anon_sym_delete] = ACTIONS(3088), - [anon_sym_PLUS_PLUS] = ACTIONS(3088), - [anon_sym_DASH_DASH] = ACTIONS(3088), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3088), - [sym_number] = ACTIONS(3088), - [sym_private_property_identifier] = ACTIONS(3088), - [sym_this] = ACTIONS(3088), - [sym_super] = ACTIONS(3088), - [sym_true] = ACTIONS(3088), - [sym_false] = ACTIONS(3088), - [sym_null] = ACTIONS(3088), - [sym_undefined] = ACTIONS(3088), - [anon_sym_AT] = ACTIONS(3088), - [anon_sym_static] = ACTIONS(3088), - [anon_sym_readonly] = ACTIONS(3088), - [anon_sym_get] = ACTIONS(3088), - [anon_sym_set] = ACTIONS(3088), - [anon_sym_declare] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_module] = ACTIONS(3088), - [anon_sym_any] = ACTIONS(3088), - [anon_sym_number] = ACTIONS(3088), - [anon_sym_boolean] = ACTIONS(3088), - [anon_sym_string] = ACTIONS(3088), - [anon_sym_symbol] = ACTIONS(3088), - [anon_sym_object] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_interface] = ACTIONS(3088), - [anon_sym_enum] = ACTIONS(3088), + [sym_identifier] = ACTIONS(3322), + [anon_sym_export] = ACTIONS(3322), + [anon_sym_default] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_typeof] = ACTIONS(3322), + [anon_sym_import] = ACTIONS(3322), + [anon_sym_with] = ACTIONS(3322), + [anon_sym_var] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_else] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_switch] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_await] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_debugger] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_throw] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3322), + [anon_sym_case] = ACTIONS(3322), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LTtemplate_GT] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3322), + [anon_sym_class] = ACTIONS(3322), + [anon_sym_async] = ACTIONS(3322), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_using] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_void] = ACTIONS(3322), + [anon_sym_delete] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3322), + [sym_number] = ACTIONS(3322), + [sym_private_property_identifier] = ACTIONS(3322), + [sym_this] = ACTIONS(3322), + [sym_super] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_null] = ACTIONS(3322), + [sym_undefined] = ACTIONS(3322), + [anon_sym_AT] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_readonly] = ACTIONS(3322), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3322), + [anon_sym_declare] = ACTIONS(3322), + [anon_sym_public] = ACTIONS(3322), + [anon_sym_private] = ACTIONS(3322), + [anon_sym_protected] = ACTIONS(3322), + [anon_sym_override] = ACTIONS(3322), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_any] = ACTIONS(3322), + [anon_sym_number] = ACTIONS(3322), + [anon_sym_boolean] = ACTIONS(3322), + [anon_sym_string] = ACTIONS(3322), + [anon_sym_symbol] = ACTIONS(3322), + [anon_sym_object] = ACTIONS(3322), + [anon_sym_abstract] = ACTIONS(3322), + [anon_sym_interface] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), [sym_html_comment] = ACTIONS(5), }, [1110] = { [sym_comment] = STATE(1110), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_default] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_typeof] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_await] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_debugger] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_case] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LTtemplate_GT] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_void] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), + [sym_identifier] = ACTIONS(3324), + [anon_sym_export] = ACTIONS(3324), + [anon_sym_default] = ACTIONS(3324), + [anon_sym_type] = ACTIONS(3324), + [anon_sym_namespace] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_typeof] = ACTIONS(3324), + [anon_sym_import] = ACTIONS(3324), + [anon_sym_with] = ACTIONS(3324), + [anon_sym_var] = ACTIONS(3324), + [anon_sym_let] = ACTIONS(3324), + [anon_sym_const] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_else] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_switch] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_await] = ACTIONS(3324), + [anon_sym_while] = ACTIONS(3324), + [anon_sym_do] = ACTIONS(3324), + [anon_sym_try] = ACTIONS(3324), + [anon_sym_break] = ACTIONS(3324), + [anon_sym_continue] = ACTIONS(3324), + [anon_sym_debugger] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3324), + [anon_sym_throw] = ACTIONS(3324), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_case] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3324), + [anon_sym_LTtemplate_GT] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_class] = ACTIONS(3324), + [anon_sym_async] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3324), + [anon_sym_using] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_void] = ACTIONS(3324), + [anon_sym_delete] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_DASH_DASH] = ACTIONS(3324), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3288), - [sym_number] = ACTIONS(3288), - [sym_private_property_identifier] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_undefined] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_declare] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_any] = ACTIONS(3288), - [anon_sym_number] = ACTIONS(3288), - [anon_sym_boolean] = ACTIONS(3288), - [anon_sym_string] = ACTIONS(3288), - [anon_sym_symbol] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), + [anon_sym_BQUOTE] = ACTIONS(3324), + [sym_number] = ACTIONS(3324), + [sym_private_property_identifier] = ACTIONS(3324), + [sym_this] = ACTIONS(3324), + [sym_super] = ACTIONS(3324), + [sym_true] = ACTIONS(3324), + [sym_false] = ACTIONS(3324), + [sym_null] = ACTIONS(3324), + [sym_undefined] = ACTIONS(3324), + [anon_sym_AT] = ACTIONS(3324), + [anon_sym_static] = ACTIONS(3324), + [anon_sym_readonly] = ACTIONS(3324), + [anon_sym_get] = ACTIONS(3324), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_declare] = ACTIONS(3324), + [anon_sym_public] = ACTIONS(3324), + [anon_sym_private] = ACTIONS(3324), + [anon_sym_protected] = ACTIONS(3324), + [anon_sym_override] = ACTIONS(3324), + [anon_sym_module] = ACTIONS(3324), + [anon_sym_any] = ACTIONS(3324), + [anon_sym_number] = ACTIONS(3324), + [anon_sym_boolean] = ACTIONS(3324), + [anon_sym_string] = ACTIONS(3324), + [anon_sym_symbol] = ACTIONS(3324), + [anon_sym_object] = ACTIONS(3324), + [anon_sym_abstract] = ACTIONS(3324), + [anon_sym_interface] = ACTIONS(3324), + [anon_sym_enum] = ACTIONS(3324), [sym_html_comment] = ACTIONS(5), }, [1111] = { [sym_comment] = STATE(1111), - [sym_identifier] = ACTIONS(3290), - [anon_sym_export] = ACTIONS(3290), - [anon_sym_default] = ACTIONS(3290), - [anon_sym_type] = ACTIONS(3290), - [anon_sym_namespace] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_RBRACE] = ACTIONS(3290), - [anon_sym_typeof] = ACTIONS(3290), - [anon_sym_import] = ACTIONS(3290), - [anon_sym_with] = ACTIONS(3290), - [anon_sym_var] = ACTIONS(3290), - [anon_sym_let] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_BANG] = ACTIONS(3290), - [anon_sym_else] = ACTIONS(3290), - [anon_sym_if] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3290), - [anon_sym_await] = ACTIONS(3290), - [anon_sym_while] = ACTIONS(3290), - [anon_sym_do] = ACTIONS(3290), - [anon_sym_try] = ACTIONS(3290), - [anon_sym_break] = ACTIONS(3290), - [anon_sym_continue] = ACTIONS(3290), - [anon_sym_debugger] = ACTIONS(3290), - [anon_sym_return] = ACTIONS(3290), - [anon_sym_throw] = ACTIONS(3290), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_case] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_LTtemplate_GT] = ACTIONS(3290), - [anon_sym_DQUOTE] = ACTIONS(3290), - [anon_sym_SQUOTE] = ACTIONS(3290), - [anon_sym_class] = ACTIONS(3290), - [anon_sym_async] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3290), - [anon_sym_using] = ACTIONS(3290), - [anon_sym_PLUS] = ACTIONS(3290), - [anon_sym_DASH] = ACTIONS(3290), - [anon_sym_SLASH] = ACTIONS(3290), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_TILDE] = ACTIONS(3290), - [anon_sym_void] = ACTIONS(3290), - [anon_sym_delete] = ACTIONS(3290), - [anon_sym_PLUS_PLUS] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3290), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3290), - [sym_number] = ACTIONS(3290), - [sym_private_property_identifier] = ACTIONS(3290), - [sym_this] = ACTIONS(3290), - [sym_super] = ACTIONS(3290), - [sym_true] = ACTIONS(3290), - [sym_false] = ACTIONS(3290), - [sym_null] = ACTIONS(3290), - [sym_undefined] = ACTIONS(3290), - [anon_sym_AT] = ACTIONS(3290), - [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_abstract] = ACTIONS(3290), - [anon_sym_interface] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), + [ts_builtin_sym_end] = ACTIONS(2325), + [sym_identifier] = ACTIONS(2225), + [anon_sym_export] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_typeof] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_with] = ACTIONS(2225), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_else] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_debugger] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LTtemplate_GT] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_void] = ACTIONS(2225), + [anon_sym_delete] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2225), + [sym_number] = ACTIONS(2225), + [sym_private_property_identifier] = ACTIONS(2225), + [sym_this] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_null] = ACTIONS(2225), + [sym_undefined] = ACTIONS(2225), + [anon_sym_AT] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_readonly] = ACTIONS(2225), + [anon_sym_get] = ACTIONS(2225), + [anon_sym_set] = ACTIONS(2225), + [anon_sym_declare] = ACTIONS(2225), + [anon_sym_public] = ACTIONS(2225), + [anon_sym_private] = ACTIONS(2225), + [anon_sym_protected] = ACTIONS(2225), + [anon_sym_override] = ACTIONS(2225), + [anon_sym_module] = ACTIONS(2225), + [anon_sym_any] = ACTIONS(2225), + [anon_sym_number] = ACTIONS(2225), + [anon_sym_boolean] = ACTIONS(2225), + [anon_sym_string] = ACTIONS(2225), + [anon_sym_symbol] = ACTIONS(2225), + [anon_sym_object] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [sym__automatic_semicolon] = ACTIONS(2327), [sym_html_comment] = ACTIONS(5), }, [1112] = { [sym_comment] = STATE(1112), - [sym_identifier] = ACTIONS(3292), - [anon_sym_export] = ACTIONS(3292), - [anon_sym_default] = ACTIONS(3292), - [anon_sym_type] = ACTIONS(3292), - [anon_sym_namespace] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_typeof] = ACTIONS(3292), - [anon_sym_import] = ACTIONS(3292), - [anon_sym_with] = ACTIONS(3292), - [anon_sym_var] = ACTIONS(3292), - [anon_sym_let] = ACTIONS(3292), - [anon_sym_const] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_switch] = ACTIONS(3292), - [anon_sym_for] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_await] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_do] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_debugger] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_case] = ACTIONS(3292), - [anon_sym_yield] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_LTtemplate_GT] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_class] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3292), - [anon_sym_function] = ACTIONS(3292), - [anon_sym_new] = ACTIONS(3292), - [anon_sym_using] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_void] = ACTIONS(3292), - [anon_sym_delete] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), + [sym_identifier] = ACTIONS(3326), + [anon_sym_export] = ACTIONS(3326), + [anon_sym_default] = ACTIONS(3326), + [anon_sym_type] = ACTIONS(3326), + [anon_sym_namespace] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_RBRACE] = ACTIONS(3326), + [anon_sym_typeof] = ACTIONS(3326), + [anon_sym_import] = ACTIONS(3326), + [anon_sym_with] = ACTIONS(3326), + [anon_sym_var] = ACTIONS(3326), + [anon_sym_let] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_switch] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_await] = ACTIONS(3326), + [anon_sym_while] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_try] = ACTIONS(3326), + [anon_sym_break] = ACTIONS(3326), + [anon_sym_continue] = ACTIONS(3326), + [anon_sym_debugger] = ACTIONS(3326), + [anon_sym_return] = ACTIONS(3326), + [anon_sym_throw] = ACTIONS(3326), + [anon_sym_SEMI] = ACTIONS(3326), + [anon_sym_case] = ACTIONS(3326), + [anon_sym_yield] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_LTtemplate_GT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_class] = ACTIONS(3326), + [anon_sym_async] = ACTIONS(3326), + [anon_sym_function] = ACTIONS(3326), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_using] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_void] = ACTIONS(3326), + [anon_sym_delete] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3292), - [sym_number] = ACTIONS(3292), - [sym_private_property_identifier] = ACTIONS(3292), - [sym_this] = ACTIONS(3292), - [sym_super] = ACTIONS(3292), - [sym_true] = ACTIONS(3292), - [sym_false] = ACTIONS(3292), - [sym_null] = ACTIONS(3292), - [sym_undefined] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_readonly] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_declare] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_module] = ACTIONS(3292), - [anon_sym_any] = ACTIONS(3292), - [anon_sym_number] = ACTIONS(3292), - [anon_sym_boolean] = ACTIONS(3292), - [anon_sym_string] = ACTIONS(3292), - [anon_sym_symbol] = ACTIONS(3292), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_interface] = ACTIONS(3292), - [anon_sym_enum] = ACTIONS(3292), + [anon_sym_BQUOTE] = ACTIONS(3326), + [sym_number] = ACTIONS(3326), + [sym_private_property_identifier] = ACTIONS(3326), + [sym_this] = ACTIONS(3326), + [sym_super] = ACTIONS(3326), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [sym_null] = ACTIONS(3326), + [sym_undefined] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_readonly] = ACTIONS(3326), + [anon_sym_get] = ACTIONS(3326), + [anon_sym_set] = ACTIONS(3326), + [anon_sym_declare] = ACTIONS(3326), + [anon_sym_public] = ACTIONS(3326), + [anon_sym_private] = ACTIONS(3326), + [anon_sym_protected] = ACTIONS(3326), + [anon_sym_override] = ACTIONS(3326), + [anon_sym_module] = ACTIONS(3326), + [anon_sym_any] = ACTIONS(3326), + [anon_sym_number] = ACTIONS(3326), + [anon_sym_boolean] = ACTIONS(3326), + [anon_sym_string] = ACTIONS(3326), + [anon_sym_symbol] = ACTIONS(3326), + [anon_sym_object] = ACTIONS(3326), + [anon_sym_abstract] = ACTIONS(3326), + [anon_sym_interface] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), [sym_html_comment] = ACTIONS(5), }, [1113] = { [sym_comment] = STATE(1113), - [sym_identifier] = ACTIONS(3294), - [anon_sym_export] = ACTIONS(3294), - [anon_sym_default] = ACTIONS(3294), - [anon_sym_type] = ACTIONS(3294), - [anon_sym_namespace] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_RBRACE] = ACTIONS(3294), - [anon_sym_typeof] = ACTIONS(3294), - [anon_sym_import] = ACTIONS(3294), - [anon_sym_with] = ACTIONS(3294), - [anon_sym_var] = ACTIONS(3294), - [anon_sym_let] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_switch] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_LPAREN] = ACTIONS(3294), - [anon_sym_await] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_do] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_debugger] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3294), - [anon_sym_yield] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_LTtemplate_GT] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [anon_sym_class] = ACTIONS(3294), - [anon_sym_async] = ACTIONS(3294), - [anon_sym_function] = ACTIONS(3294), - [anon_sym_new] = ACTIONS(3294), - [anon_sym_using] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_void] = ACTIONS(3294), - [anon_sym_delete] = ACTIONS(3294), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3294), - [sym_number] = ACTIONS(3294), - [sym_private_property_identifier] = ACTIONS(3294), - [sym_this] = ACTIONS(3294), - [sym_super] = ACTIONS(3294), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_null] = ACTIONS(3294), - [sym_undefined] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_readonly] = ACTIONS(3294), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_declare] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_module] = ACTIONS(3294), - [anon_sym_any] = ACTIONS(3294), - [anon_sym_number] = ACTIONS(3294), - [anon_sym_boolean] = ACTIONS(3294), - [anon_sym_string] = ACTIONS(3294), - [anon_sym_symbol] = ACTIONS(3294), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_interface] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), + [sym_identifier] = ACTIONS(2129), + [anon_sym_export] = ACTIONS(2129), + [anon_sym_default] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_namespace] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2129), + [anon_sym_RBRACE] = ACTIONS(2129), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_import] = ACTIONS(2129), + [anon_sym_with] = ACTIONS(2129), + [anon_sym_var] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_debugger] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_throw] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2129), + [anon_sym_case] = ACTIONS(2129), + [anon_sym_yield] = ACTIONS(2129), + [anon_sym_LBRACK] = ACTIONS(2129), + [anon_sym_LTtemplate_GT] = ACTIONS(2129), + [anon_sym_DQUOTE] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_class] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_function] = ACTIONS(2129), + [anon_sym_new] = ACTIONS(2129), + [anon_sym_using] = ACTIONS(2129), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_SLASH] = ACTIONS(2129), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_void] = ACTIONS(2129), + [anon_sym_delete] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2129), + [sym_number] = ACTIONS(2129), + [sym_private_property_identifier] = ACTIONS(2129), + [sym_this] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_true] = ACTIONS(2129), + [sym_false] = ACTIONS(2129), + [sym_null] = ACTIONS(2129), + [sym_undefined] = ACTIONS(2129), + [anon_sym_AT] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_readonly] = ACTIONS(2129), + [anon_sym_get] = ACTIONS(2129), + [anon_sym_set] = ACTIONS(2129), + [anon_sym_declare] = ACTIONS(2129), + [anon_sym_public] = ACTIONS(2129), + [anon_sym_private] = ACTIONS(2129), + [anon_sym_protected] = ACTIONS(2129), + [anon_sym_override] = ACTIONS(2129), + [anon_sym_module] = ACTIONS(2129), + [anon_sym_any] = ACTIONS(2129), + [anon_sym_number] = ACTIONS(2129), + [anon_sym_boolean] = ACTIONS(2129), + [anon_sym_string] = ACTIONS(2129), + [anon_sym_symbol] = ACTIONS(2129), + [anon_sym_object] = ACTIONS(2129), + [anon_sym_abstract] = ACTIONS(2129), + [anon_sym_interface] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [sym__automatic_semicolon] = ACTIONS(2279), [sym_html_comment] = ACTIONS(5), }, [1114] = { [sym_comment] = STATE(1114), - [sym_identifier] = ACTIONS(3296), - [anon_sym_export] = ACTIONS(3296), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_type] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_typeof] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_with] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_await] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_debugger] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_case] = ACTIONS(3296), - [anon_sym_yield] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_LTtemplate_GT] = ACTIONS(3296), - [anon_sym_DQUOTE] = ACTIONS(3296), - [anon_sym_SQUOTE] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_async] = ACTIONS(3296), - [anon_sym_function] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_using] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_void] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), + [sym_identifier] = ACTIONS(3328), + [anon_sym_export] = ACTIONS(3328), + [anon_sym_default] = ACTIONS(3328), + [anon_sym_type] = ACTIONS(3328), + [anon_sym_namespace] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_RBRACE] = ACTIONS(3328), + [anon_sym_typeof] = ACTIONS(3328), + [anon_sym_import] = ACTIONS(3328), + [anon_sym_with] = ACTIONS(3328), + [anon_sym_var] = ACTIONS(3328), + [anon_sym_let] = ACTIONS(3328), + [anon_sym_const] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_else] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_switch] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym_await] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_do] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_debugger] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_throw] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym_case] = ACTIONS(3328), + [anon_sym_yield] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_LTtemplate_GT] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3328), + [anon_sym_async] = ACTIONS(3328), + [anon_sym_function] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3328), + [anon_sym_using] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_void] = ACTIONS(3328), + [anon_sym_delete] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3328), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3296), - [sym_number] = ACTIONS(3296), - [sym_private_property_identifier] = ACTIONS(3296), - [sym_this] = ACTIONS(3296), - [sym_super] = ACTIONS(3296), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [sym_null] = ACTIONS(3296), - [sym_undefined] = ACTIONS(3296), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_readonly] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_override] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3296), - [anon_sym_any] = ACTIONS(3296), - [anon_sym_number] = ACTIONS(3296), - [anon_sym_boolean] = ACTIONS(3296), - [anon_sym_string] = ACTIONS(3296), - [anon_sym_symbol] = ACTIONS(3296), - [anon_sym_object] = ACTIONS(3296), - [anon_sym_abstract] = ACTIONS(3296), - [anon_sym_interface] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), + [anon_sym_BQUOTE] = ACTIONS(3328), + [sym_number] = ACTIONS(3328), + [sym_private_property_identifier] = ACTIONS(3328), + [sym_this] = ACTIONS(3328), + [sym_super] = ACTIONS(3328), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_null] = ACTIONS(3328), + [sym_undefined] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_readonly] = ACTIONS(3328), + [anon_sym_get] = ACTIONS(3328), + [anon_sym_set] = ACTIONS(3328), + [anon_sym_declare] = ACTIONS(3328), + [anon_sym_public] = ACTIONS(3328), + [anon_sym_private] = ACTIONS(3328), + [anon_sym_protected] = ACTIONS(3328), + [anon_sym_override] = ACTIONS(3328), + [anon_sym_module] = ACTIONS(3328), + [anon_sym_any] = ACTIONS(3328), + [anon_sym_number] = ACTIONS(3328), + [anon_sym_boolean] = ACTIONS(3328), + [anon_sym_string] = ACTIONS(3328), + [anon_sym_symbol] = ACTIONS(3328), + [anon_sym_object] = ACTIONS(3328), + [anon_sym_abstract] = ACTIONS(3328), + [anon_sym_interface] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), [sym_html_comment] = ACTIONS(5), }, [1115] = { [sym_comment] = STATE(1115), - [sym_identifier] = ACTIONS(3100), - [anon_sym_export] = ACTIONS(3100), - [anon_sym_default] = ACTIONS(3100), - [anon_sym_type] = ACTIONS(3100), - [anon_sym_namespace] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3100), - [anon_sym_RBRACE] = ACTIONS(3100), - [anon_sym_typeof] = ACTIONS(3100), - [anon_sym_import] = ACTIONS(3100), - [anon_sym_with] = ACTIONS(3100), - [anon_sym_var] = ACTIONS(3100), - [anon_sym_let] = ACTIONS(3100), - [anon_sym_const] = ACTIONS(3100), - [anon_sym_BANG] = ACTIONS(3100), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_switch] = ACTIONS(3100), - [anon_sym_for] = ACTIONS(3100), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_await] = ACTIONS(3100), - [anon_sym_while] = ACTIONS(3100), - [anon_sym_do] = ACTIONS(3100), - [anon_sym_try] = ACTIONS(3100), - [anon_sym_break] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(3100), - [anon_sym_debugger] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_case] = ACTIONS(3100), - [anon_sym_yield] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_LTtemplate_GT] = ACTIONS(3100), - [anon_sym_DQUOTE] = ACTIONS(3100), - [anon_sym_SQUOTE] = ACTIONS(3100), - [anon_sym_class] = ACTIONS(3100), - [anon_sym_async] = ACTIONS(3100), - [anon_sym_function] = ACTIONS(3100), - [anon_sym_new] = ACTIONS(3100), - [anon_sym_using] = ACTIONS(3100), - [anon_sym_PLUS] = ACTIONS(3100), - [anon_sym_DASH] = ACTIONS(3100), - [anon_sym_SLASH] = ACTIONS(3100), - [anon_sym_LT] = ACTIONS(3100), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_void] = ACTIONS(3100), - [anon_sym_delete] = ACTIONS(3100), - [anon_sym_PLUS_PLUS] = ACTIONS(3100), - [anon_sym_DASH_DASH] = ACTIONS(3100), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3100), - [sym_number] = ACTIONS(3100), - [sym_private_property_identifier] = ACTIONS(3100), - [sym_this] = ACTIONS(3100), - [sym_super] = ACTIONS(3100), - [sym_true] = ACTIONS(3100), - [sym_false] = ACTIONS(3100), - [sym_null] = ACTIONS(3100), - [sym_undefined] = ACTIONS(3100), - [anon_sym_AT] = ACTIONS(3100), - [anon_sym_static] = ACTIONS(3100), - [anon_sym_readonly] = ACTIONS(3100), - [anon_sym_get] = ACTIONS(3100), - [anon_sym_set] = ACTIONS(3100), - [anon_sym_declare] = ACTIONS(3100), - [anon_sym_public] = ACTIONS(3100), - [anon_sym_private] = ACTIONS(3100), - [anon_sym_protected] = ACTIONS(3100), - [anon_sym_override] = ACTIONS(3100), - [anon_sym_module] = ACTIONS(3100), - [anon_sym_any] = ACTIONS(3100), - [anon_sym_number] = ACTIONS(3100), - [anon_sym_boolean] = ACTIONS(3100), - [anon_sym_string] = ACTIONS(3100), - [anon_sym_symbol] = ACTIONS(3100), - [anon_sym_object] = ACTIONS(3100), - [anon_sym_abstract] = ACTIONS(3100), - [anon_sym_interface] = ACTIONS(3100), - [anon_sym_enum] = ACTIONS(3100), - [sym__automatic_semicolon] = ACTIONS(3300), + [sym_identifier] = ACTIONS(3268), + [anon_sym_export] = ACTIONS(3268), + [anon_sym_default] = ACTIONS(3268), + [anon_sym_type] = ACTIONS(3268), + [anon_sym_namespace] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3268), + [anon_sym_import] = ACTIONS(3268), + [anon_sym_with] = ACTIONS(3268), + [anon_sym_var] = ACTIONS(3268), + [anon_sym_let] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_switch] = ACTIONS(3268), + [anon_sym_for] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_do] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_debugger] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3268), + [anon_sym_yield] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LTtemplate_GT] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_class] = ACTIONS(3268), + [anon_sym_async] = ACTIONS(3268), + [anon_sym_function] = ACTIONS(3268), + [anon_sym_new] = ACTIONS(3268), + [anon_sym_using] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_private_property_identifier] = ACTIONS(3268), + [sym_this] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_true] = ACTIONS(3268), + [sym_false] = ACTIONS(3268), + [sym_null] = ACTIONS(3268), + [sym_undefined] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_readonly] = ACTIONS(3268), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_declare] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_module] = ACTIONS(3268), + [anon_sym_any] = ACTIONS(3268), + [anon_sym_number] = ACTIONS(3268), + [anon_sym_boolean] = ACTIONS(3268), + [anon_sym_string] = ACTIONS(3268), + [anon_sym_symbol] = ACTIONS(3268), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_interface] = ACTIONS(3268), + [anon_sym_enum] = ACTIONS(3268), [sym_html_comment] = ACTIONS(5), }, [1116] = { [sym_comment] = STATE(1116), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), + [ts_builtin_sym_end] = ACTIONS(3084), + [sym_identifier] = ACTIONS(3082), + [anon_sym_export] = ACTIONS(3082), + [anon_sym_type] = ACTIONS(3082), + [anon_sym_namespace] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3082), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(3082), + [anon_sym_with] = ACTIONS(3082), + [anon_sym_var] = ACTIONS(3082), + [anon_sym_let] = ACTIONS(3082), + [anon_sym_const] = ACTIONS(3082), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_else] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_switch] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3082), + [anon_sym_await] = ACTIONS(3082), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_do] = ACTIONS(3082), + [anon_sym_try] = ACTIONS(3082), + [anon_sym_break] = ACTIONS(3082), + [anon_sym_continue] = ACTIONS(3082), + [anon_sym_debugger] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3082), + [anon_sym_throw] = ACTIONS(3082), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_LTtemplate_GT] = ACTIONS(3082), + [anon_sym_DQUOTE] = ACTIONS(3082), + [anon_sym_SQUOTE] = ACTIONS(3082), + [anon_sym_class] = ACTIONS(3082), + [anon_sym_async] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3082), + [anon_sym_using] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_SLASH] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_void] = ACTIONS(3082), + [anon_sym_delete] = ACTIONS(3082), + [anon_sym_PLUS_PLUS] = ACTIONS(3082), + [anon_sym_DASH_DASH] = ACTIONS(3082), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3082), + [sym_number] = ACTIONS(3082), + [sym_private_property_identifier] = ACTIONS(3082), + [sym_this] = ACTIONS(3082), + [sym_super] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_null] = ACTIONS(3082), + [sym_undefined] = ACTIONS(3082), + [anon_sym_AT] = ACTIONS(3082), + [anon_sym_static] = ACTIONS(3082), + [anon_sym_readonly] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3082), + [anon_sym_set] = ACTIONS(3082), + [anon_sym_declare] = ACTIONS(3082), + [anon_sym_public] = ACTIONS(3082), + [anon_sym_private] = ACTIONS(3082), + [anon_sym_protected] = ACTIONS(3082), + [anon_sym_override] = ACTIONS(3082), + [anon_sym_module] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3082), + [anon_sym_interface] = ACTIONS(3082), + [anon_sym_enum] = ACTIONS(3082), + [sym__automatic_semicolon] = ACTIONS(3084), [sym_html_comment] = ACTIONS(5), }, [1117] = { [sym_comment] = STATE(1117), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(3302), + [sym_identifier] = ACTIONS(3330), + [anon_sym_export] = ACTIONS(3330), + [anon_sym_default] = ACTIONS(3330), + [anon_sym_type] = ACTIONS(3330), + [anon_sym_namespace] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_typeof] = ACTIONS(3330), + [anon_sym_import] = ACTIONS(3330), + [anon_sym_with] = ACTIONS(3330), + [anon_sym_var] = ACTIONS(3330), + [anon_sym_let] = ACTIONS(3330), + [anon_sym_const] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_else] = ACTIONS(3330), + [anon_sym_if] = ACTIONS(3330), + [anon_sym_switch] = ACTIONS(3330), + [anon_sym_for] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_await] = ACTIONS(3330), + [anon_sym_while] = ACTIONS(3330), + [anon_sym_do] = ACTIONS(3330), + [anon_sym_try] = ACTIONS(3330), + [anon_sym_break] = ACTIONS(3330), + [anon_sym_continue] = ACTIONS(3330), + [anon_sym_debugger] = ACTIONS(3330), + [anon_sym_return] = ACTIONS(3330), + [anon_sym_throw] = ACTIONS(3330), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_case] = ACTIONS(3330), + [anon_sym_yield] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_LTtemplate_GT] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_async] = ACTIONS(3330), + [anon_sym_function] = ACTIONS(3330), + [anon_sym_new] = ACTIONS(3330), + [anon_sym_using] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_void] = ACTIONS(3330), + [anon_sym_delete] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3330), + [sym_number] = ACTIONS(3330), + [sym_private_property_identifier] = ACTIONS(3330), + [sym_this] = ACTIONS(3330), + [sym_super] = ACTIONS(3330), + [sym_true] = ACTIONS(3330), + [sym_false] = ACTIONS(3330), + [sym_null] = ACTIONS(3330), + [sym_undefined] = ACTIONS(3330), + [anon_sym_AT] = ACTIONS(3330), + [anon_sym_static] = ACTIONS(3330), + [anon_sym_readonly] = ACTIONS(3330), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3330), + [anon_sym_declare] = ACTIONS(3330), + [anon_sym_public] = ACTIONS(3330), + [anon_sym_private] = ACTIONS(3330), + [anon_sym_protected] = ACTIONS(3330), + [anon_sym_override] = ACTIONS(3330), + [anon_sym_module] = ACTIONS(3330), + [anon_sym_any] = ACTIONS(3330), + [anon_sym_number] = ACTIONS(3330), + [anon_sym_boolean] = ACTIONS(3330), + [anon_sym_string] = ACTIONS(3330), + [anon_sym_symbol] = ACTIONS(3330), + [anon_sym_object] = ACTIONS(3330), + [anon_sym_abstract] = ACTIONS(3330), + [anon_sym_interface] = ACTIONS(3330), + [anon_sym_enum] = ACTIONS(3330), [sym_html_comment] = ACTIONS(5), }, [1118] = { [sym_comment] = STATE(1118), - [sym_identifier] = ACTIONS(3304), - [anon_sym_export] = ACTIONS(3304), - [anon_sym_default] = ACTIONS(3304), - [anon_sym_type] = ACTIONS(3304), - [anon_sym_namespace] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3304), - [anon_sym_RBRACE] = ACTIONS(3304), - [anon_sym_typeof] = ACTIONS(3304), - [anon_sym_import] = ACTIONS(3304), - [anon_sym_with] = ACTIONS(3304), - [anon_sym_var] = ACTIONS(3304), - [anon_sym_let] = ACTIONS(3304), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_else] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_switch] = ACTIONS(3304), - [anon_sym_for] = ACTIONS(3304), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_await] = ACTIONS(3304), - [anon_sym_while] = ACTIONS(3304), - [anon_sym_do] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(3304), - [anon_sym_break] = ACTIONS(3304), - [anon_sym_continue] = ACTIONS(3304), - [anon_sym_debugger] = ACTIONS(3304), - [anon_sym_return] = ACTIONS(3304), - [anon_sym_throw] = ACTIONS(3304), - [anon_sym_SEMI] = ACTIONS(3304), - [anon_sym_case] = ACTIONS(3304), - [anon_sym_yield] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3304), - [anon_sym_LTtemplate_GT] = ACTIONS(3304), - [anon_sym_DQUOTE] = ACTIONS(3304), - [anon_sym_SQUOTE] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_async] = ACTIONS(3304), - [anon_sym_function] = ACTIONS(3304), - [anon_sym_new] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_SLASH] = ACTIONS(3304), - [anon_sym_LT] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3304), - [anon_sym_void] = ACTIONS(3304), - [anon_sym_delete] = ACTIONS(3304), - [anon_sym_PLUS_PLUS] = ACTIONS(3304), - [anon_sym_DASH_DASH] = ACTIONS(3304), + [sym_identifier] = ACTIONS(3332), + [anon_sym_export] = ACTIONS(3332), + [anon_sym_default] = ACTIONS(3332), + [anon_sym_type] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3332), + [anon_sym_RBRACE] = ACTIONS(3332), + [anon_sym_typeof] = ACTIONS(3332), + [anon_sym_import] = ACTIONS(3332), + [anon_sym_with] = ACTIONS(3332), + [anon_sym_var] = ACTIONS(3332), + [anon_sym_let] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_else] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3332), + [anon_sym_await] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_debugger] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3332), + [anon_sym_case] = ACTIONS(3332), + [anon_sym_yield] = ACTIONS(3332), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_LTtemplate_GT] = ACTIONS(3332), + [anon_sym_DQUOTE] = ACTIONS(3332), + [anon_sym_SQUOTE] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_async] = ACTIONS(3332), + [anon_sym_function] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_SLASH] = ACTIONS(3332), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3332), + [anon_sym_void] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_PLUS_PLUS] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3332), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3304), - [sym_number] = ACTIONS(3304), - [sym_private_property_identifier] = ACTIONS(3304), - [sym_this] = ACTIONS(3304), - [sym_super] = ACTIONS(3304), - [sym_true] = ACTIONS(3304), - [sym_false] = ACTIONS(3304), - [sym_null] = ACTIONS(3304), - [sym_undefined] = ACTIONS(3304), - [anon_sym_AT] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3304), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_declare] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_protected] = ACTIONS(3304), - [anon_sym_override] = ACTIONS(3304), - [anon_sym_module] = ACTIONS(3304), - [anon_sym_any] = ACTIONS(3304), - [anon_sym_number] = ACTIONS(3304), - [anon_sym_boolean] = ACTIONS(3304), - [anon_sym_string] = ACTIONS(3304), - [anon_sym_symbol] = ACTIONS(3304), - [anon_sym_object] = ACTIONS(3304), - [anon_sym_abstract] = ACTIONS(3304), - [anon_sym_interface] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), + [anon_sym_BQUOTE] = ACTIONS(3332), + [sym_number] = ACTIONS(3332), + [sym_private_property_identifier] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), + [sym_super] = ACTIONS(3332), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [sym_null] = ACTIONS(3332), + [sym_undefined] = ACTIONS(3332), + [anon_sym_AT] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_readonly] = ACTIONS(3332), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_declare] = ACTIONS(3332), + [anon_sym_public] = ACTIONS(3332), + [anon_sym_private] = ACTIONS(3332), + [anon_sym_protected] = ACTIONS(3332), + [anon_sym_override] = ACTIONS(3332), + [anon_sym_module] = ACTIONS(3332), + [anon_sym_any] = ACTIONS(3332), + [anon_sym_number] = ACTIONS(3332), + [anon_sym_boolean] = ACTIONS(3332), + [anon_sym_string] = ACTIONS(3332), + [anon_sym_symbol] = ACTIONS(3332), + [anon_sym_object] = ACTIONS(3332), + [anon_sym_abstract] = ACTIONS(3332), + [anon_sym_interface] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), [sym_html_comment] = ACTIONS(5), }, [1119] = { [sym_comment] = STATE(1119), + [sym_identifier] = ACTIONS(3334), + [anon_sym_export] = ACTIONS(3334), + [anon_sym_default] = ACTIONS(3334), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_namespace] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_typeof] = ACTIONS(3334), + [anon_sym_import] = ACTIONS(3334), + [anon_sym_with] = ACTIONS(3334), + [anon_sym_var] = ACTIONS(3334), + [anon_sym_let] = ACTIONS(3334), + [anon_sym_const] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_switch] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_await] = ACTIONS(3334), + [anon_sym_while] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_try] = ACTIONS(3334), + [anon_sym_break] = ACTIONS(3334), + [anon_sym_continue] = ACTIONS(3334), + [anon_sym_debugger] = ACTIONS(3334), + [anon_sym_return] = ACTIONS(3334), + [anon_sym_throw] = ACTIONS(3334), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_case] = ACTIONS(3334), + [anon_sym_yield] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_LTtemplate_GT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_class] = ACTIONS(3334), + [anon_sym_async] = ACTIONS(3334), + [anon_sym_function] = ACTIONS(3334), + [anon_sym_new] = ACTIONS(3334), + [anon_sym_using] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_void] = ACTIONS(3334), + [anon_sym_delete] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3334), + [sym_number] = ACTIONS(3334), + [sym_private_property_identifier] = ACTIONS(3334), + [sym_this] = ACTIONS(3334), + [sym_super] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_null] = ACTIONS(3334), + [sym_undefined] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_static] = ACTIONS(3334), + [anon_sym_readonly] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3334), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_declare] = ACTIONS(3334), + [anon_sym_public] = ACTIONS(3334), + [anon_sym_private] = ACTIONS(3334), + [anon_sym_protected] = ACTIONS(3334), + [anon_sym_override] = ACTIONS(3334), + [anon_sym_module] = ACTIONS(3334), + [anon_sym_any] = ACTIONS(3334), + [anon_sym_number] = ACTIONS(3334), + [anon_sym_boolean] = ACTIONS(3334), + [anon_sym_string] = ACTIONS(3334), + [anon_sym_symbol] = ACTIONS(3334), + [anon_sym_object] = ACTIONS(3334), + [anon_sym_abstract] = ACTIONS(3334), + [anon_sym_interface] = ACTIONS(3334), + [anon_sym_enum] = ACTIONS(3334), + [sym_html_comment] = ACTIONS(5), + }, + [1120] = { + [sym_comment] = STATE(1120), + [ts_builtin_sym_end] = ACTIONS(2365), + [sym_identifier] = ACTIONS(2083), + [anon_sym_export] = ACTIONS(2083), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_namespace] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_typeof] = ACTIONS(2083), + [anon_sym_import] = ACTIONS(2083), + [anon_sym_with] = ACTIONS(2083), + [anon_sym_var] = ACTIONS(2083), + [anon_sym_let] = ACTIONS(2083), + [anon_sym_const] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_else] = ACTIONS(2083), + [anon_sym_if] = ACTIONS(2083), + [anon_sym_switch] = ACTIONS(2083), + [anon_sym_for] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_await] = ACTIONS(2083), + [anon_sym_while] = ACTIONS(2083), + [anon_sym_do] = ACTIONS(2083), + [anon_sym_try] = ACTIONS(2083), + [anon_sym_break] = ACTIONS(2083), + [anon_sym_continue] = ACTIONS(2083), + [anon_sym_debugger] = ACTIONS(2083), + [anon_sym_return] = ACTIONS(2083), + [anon_sym_throw] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_yield] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LTtemplate_GT] = ACTIONS(2083), + [anon_sym_DQUOTE] = ACTIONS(2083), + [anon_sym_SQUOTE] = ACTIONS(2083), + [anon_sym_class] = ACTIONS(2083), + [anon_sym_async] = ACTIONS(2083), + [anon_sym_function] = ACTIONS(2083), + [anon_sym_new] = ACTIONS(2083), + [anon_sym_using] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(2083), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_void] = ACTIONS(2083), + [anon_sym_delete] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2083), + [sym_number] = ACTIONS(2083), + [sym_private_property_identifier] = ACTIONS(2083), + [sym_this] = ACTIONS(2083), + [sym_super] = ACTIONS(2083), + [sym_true] = ACTIONS(2083), + [sym_false] = ACTIONS(2083), + [sym_null] = ACTIONS(2083), + [sym_undefined] = ACTIONS(2083), + [anon_sym_AT] = ACTIONS(2083), + [anon_sym_static] = ACTIONS(2083), + [anon_sym_readonly] = ACTIONS(2083), + [anon_sym_get] = ACTIONS(2083), + [anon_sym_set] = ACTIONS(2083), + [anon_sym_declare] = ACTIONS(2083), + [anon_sym_public] = ACTIONS(2083), + [anon_sym_private] = ACTIONS(2083), + [anon_sym_protected] = ACTIONS(2083), + [anon_sym_override] = ACTIONS(2083), + [anon_sym_module] = ACTIONS(2083), + [anon_sym_any] = ACTIONS(2083), + [anon_sym_number] = ACTIONS(2083), + [anon_sym_boolean] = ACTIONS(2083), + [anon_sym_string] = ACTIONS(2083), + [anon_sym_symbol] = ACTIONS(2083), + [anon_sym_object] = ACTIONS(2083), + [anon_sym_abstract] = ACTIONS(2083), + [anon_sym_interface] = ACTIONS(2083), + [anon_sym_enum] = ACTIONS(2083), + [sym__automatic_semicolon] = ACTIONS(2367), + [sym_html_comment] = ACTIONS(5), + }, + [1121] = { + [sym_comment] = STATE(1121), + [ts_builtin_sym_end] = ACTIONS(2095), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), - [anon_sym_default] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), [anon_sym_namespace] = ACTIONS(2067), [anon_sym_LBRACE] = ACTIONS(2067), @@ -155256,6 +155114,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2067), [anon_sym_const] = ACTIONS(2067), [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2067), [anon_sym_if] = ACTIONS(2067), [anon_sym_switch] = ACTIONS(2067), [anon_sym_for] = ACTIONS(2067), @@ -155270,7 +155129,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2067), [anon_sym_throw] = ACTIONS(2067), [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_case] = ACTIONS(2067), [anon_sym_yield] = ACTIONS(2067), [anon_sym_LBRACK] = ACTIONS(2067), [anon_sym_LTtemplate_GT] = ACTIONS(2067), @@ -155320,3251 +155178,2587 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3306), - [sym_html_comment] = ACTIONS(5), - }, - [1120] = { - [sym_comment] = STATE(1120), - [sym_identifier] = ACTIONS(2257), - [anon_sym_export] = ACTIONS(2257), - [anon_sym_default] = ACTIONS(2257), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_typeof] = ACTIONS(2257), - [anon_sym_import] = ACTIONS(2257), - [anon_sym_with] = ACTIONS(2257), - [anon_sym_var] = ACTIONS(2257), - [anon_sym_let] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_switch] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_debugger] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_throw] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2257), - [anon_sym_case] = ACTIONS(2257), - [anon_sym_yield] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_LTtemplate_GT] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(2257), - [anon_sym_SQUOTE] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_async] = ACTIONS(2257), - [anon_sym_function] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_using] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_SLASH] = ACTIONS(2257), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_TILDE] = ACTIONS(2257), - [anon_sym_void] = ACTIONS(2257), - [anon_sym_delete] = ACTIONS(2257), - [anon_sym_PLUS_PLUS] = ACTIONS(2257), - [anon_sym_DASH_DASH] = ACTIONS(2257), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2257), - [sym_number] = ACTIONS(2257), - [sym_private_property_identifier] = ACTIONS(2257), - [sym_this] = ACTIONS(2257), - [sym_super] = ACTIONS(2257), - [sym_true] = ACTIONS(2257), - [sym_false] = ACTIONS(2257), - [sym_null] = ACTIONS(2257), - [sym_undefined] = ACTIONS(2257), - [anon_sym_AT] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_readonly] = ACTIONS(2257), - [anon_sym_get] = ACTIONS(2257), - [anon_sym_set] = ACTIONS(2257), - [anon_sym_declare] = ACTIONS(2257), - [anon_sym_public] = ACTIONS(2257), - [anon_sym_private] = ACTIONS(2257), - [anon_sym_protected] = ACTIONS(2257), - [anon_sym_override] = ACTIONS(2257), - [anon_sym_module] = ACTIONS(2257), - [anon_sym_any] = ACTIONS(2257), - [anon_sym_number] = ACTIONS(2257), - [anon_sym_boolean] = ACTIONS(2257), - [anon_sym_string] = ACTIONS(2257), - [anon_sym_symbol] = ACTIONS(2257), - [anon_sym_object] = ACTIONS(2257), - [anon_sym_abstract] = ACTIONS(2257), - [anon_sym_interface] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [sym__automatic_semicolon] = ACTIONS(2381), - [sym_html_comment] = ACTIONS(5), - }, - [1121] = { - [sym_comment] = STATE(1121), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_finally] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), + [sym__automatic_semicolon] = ACTIONS(3336), [sym_html_comment] = ACTIONS(5), }, [1122] = { [sym_comment] = STATE(1122), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_finally] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), + [sym_identifier] = ACTIONS(3334), + [anon_sym_export] = ACTIONS(3334), + [anon_sym_default] = ACTIONS(3334), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_namespace] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_typeof] = ACTIONS(3334), + [anon_sym_import] = ACTIONS(3334), + [anon_sym_with] = ACTIONS(3334), + [anon_sym_var] = ACTIONS(3334), + [anon_sym_let] = ACTIONS(3334), + [anon_sym_const] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_switch] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_await] = ACTIONS(3334), + [anon_sym_while] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_try] = ACTIONS(3334), + [anon_sym_break] = ACTIONS(3334), + [anon_sym_continue] = ACTIONS(3334), + [anon_sym_debugger] = ACTIONS(3334), + [anon_sym_return] = ACTIONS(3334), + [anon_sym_throw] = ACTIONS(3334), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_case] = ACTIONS(3334), + [anon_sym_yield] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_LTtemplate_GT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_class] = ACTIONS(3334), + [anon_sym_async] = ACTIONS(3334), + [anon_sym_function] = ACTIONS(3334), + [anon_sym_new] = ACTIONS(3334), + [anon_sym_using] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_void] = ACTIONS(3334), + [anon_sym_delete] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3334), + [sym_number] = ACTIONS(3334), + [sym_private_property_identifier] = ACTIONS(3334), + [sym_this] = ACTIONS(3334), + [sym_super] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_null] = ACTIONS(3334), + [sym_undefined] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_static] = ACTIONS(3334), + [anon_sym_readonly] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3334), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_declare] = ACTIONS(3334), + [anon_sym_public] = ACTIONS(3334), + [anon_sym_private] = ACTIONS(3334), + [anon_sym_protected] = ACTIONS(3334), + [anon_sym_override] = ACTIONS(3334), + [anon_sym_module] = ACTIONS(3334), + [anon_sym_any] = ACTIONS(3334), + [anon_sym_number] = ACTIONS(3334), + [anon_sym_boolean] = ACTIONS(3334), + [anon_sym_string] = ACTIONS(3334), + [anon_sym_symbol] = ACTIONS(3334), + [anon_sym_object] = ACTIONS(3334), + [anon_sym_abstract] = ACTIONS(3334), + [anon_sym_interface] = ACTIONS(3334), + [anon_sym_enum] = ACTIONS(3334), [sym_html_comment] = ACTIONS(5), }, [1123] = { [sym_comment] = STATE(1123), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(2095), + [sym_identifier] = ACTIONS(3338), + [anon_sym_export] = ACTIONS(3338), + [anon_sym_default] = ACTIONS(3338), + [anon_sym_type] = ACTIONS(3338), + [anon_sym_namespace] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_RBRACE] = ACTIONS(3338), + [anon_sym_typeof] = ACTIONS(3338), + [anon_sym_import] = ACTIONS(3338), + [anon_sym_with] = ACTIONS(3338), + [anon_sym_var] = ACTIONS(3338), + [anon_sym_let] = ACTIONS(3338), + [anon_sym_const] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_switch] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym_await] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_do] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_debugger] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_case] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_LTtemplate_GT] = ACTIONS(3338), + [anon_sym_DQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3338), + [anon_sym_class] = ACTIONS(3338), + [anon_sym_async] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3338), + [anon_sym_using] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_void] = ACTIONS(3338), + [anon_sym_delete] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3338), + [sym_number] = ACTIONS(3338), + [sym_private_property_identifier] = ACTIONS(3338), + [sym_this] = ACTIONS(3338), + [sym_super] = ACTIONS(3338), + [sym_true] = ACTIONS(3338), + [sym_false] = ACTIONS(3338), + [sym_null] = ACTIONS(3338), + [sym_undefined] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3338), + [anon_sym_static] = ACTIONS(3338), + [anon_sym_readonly] = ACTIONS(3338), + [anon_sym_get] = ACTIONS(3338), + [anon_sym_set] = ACTIONS(3338), + [anon_sym_declare] = ACTIONS(3338), + [anon_sym_public] = ACTIONS(3338), + [anon_sym_private] = ACTIONS(3338), + [anon_sym_protected] = ACTIONS(3338), + [anon_sym_override] = ACTIONS(3338), + [anon_sym_module] = ACTIONS(3338), + [anon_sym_any] = ACTIONS(3338), + [anon_sym_number] = ACTIONS(3338), + [anon_sym_boolean] = ACTIONS(3338), + [anon_sym_string] = ACTIONS(3338), + [anon_sym_symbol] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_abstract] = ACTIONS(3338), + [anon_sym_interface] = ACTIONS(3338), + [anon_sym_enum] = ACTIONS(3338), [sym_html_comment] = ACTIONS(5), }, [1124] = { [sym_comment] = STATE(1124), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym__automatic_semicolon] = ACTIONS(2107), - [sym_html_comment] = ACTIONS(5), - }, - [1125] = { - [sym_else_clause] = STATE(1369), - [sym_comment] = STATE(1125), - [ts_builtin_sym_end] = ACTIONS(3308), - [sym_identifier] = ACTIONS(3068), - [anon_sym_export] = ACTIONS(3068), - [anon_sym_type] = ACTIONS(3068), - [anon_sym_namespace] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_typeof] = ACTIONS(3068), - [anon_sym_import] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), - [anon_sym_var] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_const] = ACTIONS(3068), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_else] = ACTIONS(3310), - [anon_sym_if] = ACTIONS(3068), - [anon_sym_switch] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_await] = ACTIONS(3068), - [anon_sym_while] = ACTIONS(3068), - [anon_sym_do] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3068), - [anon_sym_break] = ACTIONS(3068), - [anon_sym_continue] = ACTIONS(3068), - [anon_sym_debugger] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3068), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [anon_sym_yield] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_LTtemplate_GT] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_class] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(3068), - [anon_sym_new] = ACTIONS(3068), - [anon_sym_using] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_SLASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_void] = ACTIONS(3068), - [anon_sym_delete] = ACTIONS(3068), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3068), - [sym_number] = ACTIONS(3068), - [sym_private_property_identifier] = ACTIONS(3068), - [sym_this] = ACTIONS(3068), - [sym_super] = ACTIONS(3068), - [sym_true] = ACTIONS(3068), - [sym_false] = ACTIONS(3068), - [sym_null] = ACTIONS(3068), - [sym_undefined] = ACTIONS(3068), - [anon_sym_AT] = ACTIONS(3068), - [anon_sym_static] = ACTIONS(3068), - [anon_sym_readonly] = ACTIONS(3068), - [anon_sym_get] = ACTIONS(3068), - [anon_sym_set] = ACTIONS(3068), - [anon_sym_declare] = ACTIONS(3068), - [anon_sym_public] = ACTIONS(3068), - [anon_sym_private] = ACTIONS(3068), - [anon_sym_protected] = ACTIONS(3068), - [anon_sym_override] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_any] = ACTIONS(3068), - [anon_sym_number] = ACTIONS(3068), - [anon_sym_boolean] = ACTIONS(3068), - [anon_sym_string] = ACTIONS(3068), - [anon_sym_symbol] = ACTIONS(3068), - [anon_sym_object] = ACTIONS(3068), - [anon_sym_abstract] = ACTIONS(3068), - [anon_sym_interface] = ACTIONS(3068), - [anon_sym_enum] = ACTIONS(3068), - [sym_html_comment] = ACTIONS(5), - }, - [1126] = { - [sym_comment] = STATE(1126), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(3312), - [sym_html_comment] = ACTIONS(5), - }, - [1127] = { - [sym_comment] = STATE(1127), - [ts_builtin_sym_end] = ACTIONS(3314), - [sym_identifier] = ACTIONS(3088), - [anon_sym_export] = ACTIONS(3088), - [anon_sym_type] = ACTIONS(3088), - [anon_sym_namespace] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_RBRACE] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(3088), - [anon_sym_import] = ACTIONS(3088), - [anon_sym_with] = ACTIONS(3088), - [anon_sym_var] = ACTIONS(3088), - [anon_sym_let] = ACTIONS(3088), - [anon_sym_const] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_else] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_switch] = ACTIONS(3088), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_await] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_debugger] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3088), - [anon_sym_finally] = ACTIONS(3088), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_LTtemplate_GT] = ACTIONS(3088), - [anon_sym_DQUOTE] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3088), - [anon_sym_class] = ACTIONS(3088), - [anon_sym_async] = ACTIONS(3088), - [anon_sym_function] = ACTIONS(3088), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_using] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_SLASH] = ACTIONS(3088), - [anon_sym_LT] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3088), - [anon_sym_void] = ACTIONS(3088), - [anon_sym_delete] = ACTIONS(3088), - [anon_sym_PLUS_PLUS] = ACTIONS(3088), - [anon_sym_DASH_DASH] = ACTIONS(3088), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3088), - [sym_number] = ACTIONS(3088), - [sym_private_property_identifier] = ACTIONS(3088), - [sym_this] = ACTIONS(3088), - [sym_super] = ACTIONS(3088), - [sym_true] = ACTIONS(3088), - [sym_false] = ACTIONS(3088), - [sym_null] = ACTIONS(3088), - [sym_undefined] = ACTIONS(3088), - [anon_sym_AT] = ACTIONS(3088), - [anon_sym_static] = ACTIONS(3088), - [anon_sym_readonly] = ACTIONS(3088), - [anon_sym_get] = ACTIONS(3088), - [anon_sym_set] = ACTIONS(3088), - [anon_sym_declare] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_module] = ACTIONS(3088), - [anon_sym_any] = ACTIONS(3088), - [anon_sym_number] = ACTIONS(3088), - [anon_sym_boolean] = ACTIONS(3088), - [anon_sym_string] = ACTIONS(3088), - [anon_sym_symbol] = ACTIONS(3088), - [anon_sym_object] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_interface] = ACTIONS(3088), - [anon_sym_enum] = ACTIONS(3088), - [sym_html_comment] = ACTIONS(5), - }, - [1128] = { - [sym_comment] = STATE(1128), - [ts_builtin_sym_end] = ACTIONS(3316), - [sym_identifier] = ACTIONS(3106), - [anon_sym_export] = ACTIONS(3106), - [anon_sym_type] = ACTIONS(3106), - [anon_sym_namespace] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(3106), - [anon_sym_RBRACE] = ACTIONS(3106), - [anon_sym_typeof] = ACTIONS(3106), - [anon_sym_import] = ACTIONS(3106), - [anon_sym_with] = ACTIONS(3106), - [anon_sym_var] = ACTIONS(3106), - [anon_sym_let] = ACTIONS(3106), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_switch] = ACTIONS(3106), - [anon_sym_for] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3106), - [anon_sym_await] = ACTIONS(3106), - [anon_sym_while] = ACTIONS(3106), - [anon_sym_do] = ACTIONS(3106), - [anon_sym_try] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_debugger] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_throw] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3106), - [anon_sym_finally] = ACTIONS(3106), - [anon_sym_yield] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(3106), - [anon_sym_LTtemplate_GT] = ACTIONS(3106), - [anon_sym_DQUOTE] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3106), - [anon_sym_class] = ACTIONS(3106), - [anon_sym_async] = ACTIONS(3106), - [anon_sym_function] = ACTIONS(3106), - [anon_sym_new] = ACTIONS(3106), - [anon_sym_using] = ACTIONS(3106), - [anon_sym_PLUS] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3106), - [anon_sym_SLASH] = ACTIONS(3106), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_void] = ACTIONS(3106), - [anon_sym_delete] = ACTIONS(3106), - [anon_sym_PLUS_PLUS] = ACTIONS(3106), - [anon_sym_DASH_DASH] = ACTIONS(3106), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3106), - [sym_number] = ACTIONS(3106), - [sym_private_property_identifier] = ACTIONS(3106), - [sym_this] = ACTIONS(3106), - [sym_super] = ACTIONS(3106), - [sym_true] = ACTIONS(3106), - [sym_false] = ACTIONS(3106), - [sym_null] = ACTIONS(3106), - [sym_undefined] = ACTIONS(3106), - [anon_sym_AT] = ACTIONS(3106), - [anon_sym_static] = ACTIONS(3106), - [anon_sym_readonly] = ACTIONS(3106), - [anon_sym_get] = ACTIONS(3106), - [anon_sym_set] = ACTIONS(3106), - [anon_sym_declare] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_module] = ACTIONS(3106), - [anon_sym_any] = ACTIONS(3106), - [anon_sym_number] = ACTIONS(3106), - [anon_sym_boolean] = ACTIONS(3106), - [anon_sym_string] = ACTIONS(3106), - [anon_sym_symbol] = ACTIONS(3106), - [anon_sym_object] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_interface] = ACTIONS(3106), - [anon_sym_enum] = ACTIONS(3106), - [sym_html_comment] = ACTIONS(5), - }, - [1129] = { - [sym_comment] = STATE(1129), - [ts_builtin_sym_end] = ACTIONS(3318), - [sym_identifier] = ACTIONS(3066), - [anon_sym_export] = ACTIONS(3066), - [anon_sym_type] = ACTIONS(3066), - [anon_sym_namespace] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_RBRACE] = ACTIONS(3066), - [anon_sym_typeof] = ACTIONS(3066), - [anon_sym_import] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3066), - [anon_sym_var] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_BANG] = ACTIONS(3066), - [anon_sym_else] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_await] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_debugger] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [anon_sym_finally] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LTtemplate_GT] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3066), - [anon_sym_class] = ACTIONS(3066), - [anon_sym_async] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_using] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_SLASH] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3066), - [anon_sym_void] = ACTIONS(3066), - [anon_sym_delete] = ACTIONS(3066), - [anon_sym_PLUS_PLUS] = ACTIONS(3066), - [anon_sym_DASH_DASH] = ACTIONS(3066), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3066), - [sym_number] = ACTIONS(3066), - [sym_private_property_identifier] = ACTIONS(3066), - [sym_this] = ACTIONS(3066), - [sym_super] = ACTIONS(3066), - [sym_true] = ACTIONS(3066), - [sym_false] = ACTIONS(3066), - [sym_null] = ACTIONS(3066), - [sym_undefined] = ACTIONS(3066), - [anon_sym_AT] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_readonly] = ACTIONS(3066), - [anon_sym_get] = ACTIONS(3066), - [anon_sym_set] = ACTIONS(3066), - [anon_sym_declare] = ACTIONS(3066), - [anon_sym_public] = ACTIONS(3066), - [anon_sym_private] = ACTIONS(3066), - [anon_sym_protected] = ACTIONS(3066), - [anon_sym_override] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - [anon_sym_any] = ACTIONS(3066), - [anon_sym_number] = ACTIONS(3066), - [anon_sym_boolean] = ACTIONS(3066), - [anon_sym_string] = ACTIONS(3066), - [anon_sym_symbol] = ACTIONS(3066), - [anon_sym_object] = ACTIONS(3066), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_interface] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), - [sym_html_comment] = ACTIONS(5), - }, - [1130] = { - [sym_comment] = STATE(1130), - [ts_builtin_sym_end] = ACTIONS(2347), - [sym_identifier] = ACTIONS(2257), - [anon_sym_export] = ACTIONS(2257), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_typeof] = ACTIONS(2257), - [anon_sym_import] = ACTIONS(2257), - [anon_sym_with] = ACTIONS(2257), - [anon_sym_var] = ACTIONS(2257), - [anon_sym_let] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2257), - [anon_sym_else] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_switch] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_debugger] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_throw] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2257), - [anon_sym_yield] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_LTtemplate_GT] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(2257), - [anon_sym_SQUOTE] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_async] = ACTIONS(2257), - [anon_sym_function] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_using] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_SLASH] = ACTIONS(2257), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_TILDE] = ACTIONS(2257), - [anon_sym_void] = ACTIONS(2257), - [anon_sym_delete] = ACTIONS(2257), - [anon_sym_PLUS_PLUS] = ACTIONS(2257), - [anon_sym_DASH_DASH] = ACTIONS(2257), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2257), - [sym_number] = ACTIONS(2257), - [sym_private_property_identifier] = ACTIONS(2257), - [sym_this] = ACTIONS(2257), - [sym_super] = ACTIONS(2257), - [sym_true] = ACTIONS(2257), - [sym_false] = ACTIONS(2257), - [sym_null] = ACTIONS(2257), - [sym_undefined] = ACTIONS(2257), - [anon_sym_AT] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_readonly] = ACTIONS(2257), - [anon_sym_get] = ACTIONS(2257), - [anon_sym_set] = ACTIONS(2257), - [anon_sym_declare] = ACTIONS(2257), - [anon_sym_public] = ACTIONS(2257), - [anon_sym_private] = ACTIONS(2257), - [anon_sym_protected] = ACTIONS(2257), - [anon_sym_override] = ACTIONS(2257), - [anon_sym_module] = ACTIONS(2257), - [anon_sym_any] = ACTIONS(2257), - [anon_sym_number] = ACTIONS(2257), - [anon_sym_boolean] = ACTIONS(2257), - [anon_sym_string] = ACTIONS(2257), - [anon_sym_symbol] = ACTIONS(2257), - [anon_sym_object] = ACTIONS(2257), - [anon_sym_abstract] = ACTIONS(2257), - [anon_sym_interface] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [sym__automatic_semicolon] = ACTIONS(2349), + [sym_identifier] = ACTIONS(2167), + [anon_sym_export] = ACTIONS(2167), + [anon_sym_default] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_namespace] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_typeof] = ACTIONS(2167), + [anon_sym_import] = ACTIONS(2167), + [anon_sym_with] = ACTIONS(2167), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_switch] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_await] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_do] = ACTIONS(2167), + [anon_sym_try] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_debugger] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_throw] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_case] = ACTIONS(2167), + [anon_sym_yield] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_LTtemplate_GT] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_class] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_function] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(2167), + [anon_sym_using] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_void] = ACTIONS(2167), + [anon_sym_delete] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2167), + [sym_number] = ACTIONS(2167), + [sym_private_property_identifier] = ACTIONS(2167), + [sym_this] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_true] = ACTIONS(2167), + [sym_false] = ACTIONS(2167), + [sym_null] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(2167), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_readonly] = ACTIONS(2167), + [anon_sym_get] = ACTIONS(2167), + [anon_sym_set] = ACTIONS(2167), + [anon_sym_declare] = ACTIONS(2167), + [anon_sym_public] = ACTIONS(2167), + [anon_sym_private] = ACTIONS(2167), + [anon_sym_protected] = ACTIONS(2167), + [anon_sym_override] = ACTIONS(2167), + [anon_sym_module] = ACTIONS(2167), + [anon_sym_any] = ACTIONS(2167), + [anon_sym_number] = ACTIONS(2167), + [anon_sym_boolean] = ACTIONS(2167), + [anon_sym_string] = ACTIONS(2167), + [anon_sym_symbol] = ACTIONS(2167), + [anon_sym_object] = ACTIONS(2167), + [anon_sym_abstract] = ACTIONS(2167), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [sym__automatic_semicolon] = ACTIONS(2395), + [sym_html_comment] = ACTIONS(5), + }, + [1125] = { + [sym_comment] = STATE(1125), + [sym_identifier] = ACTIONS(2205), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_typeof] = ACTIONS(2205), + [anon_sym_import] = ACTIONS(2205), + [anon_sym_with] = ACTIONS(2205), + [anon_sym_var] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_debugger] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_case] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_LTtemplate_GT] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_using] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_void] = ACTIONS(2205), + [anon_sym_delete] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(2205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2205), + [sym_number] = ACTIONS(2205), + [sym_private_property_identifier] = ACTIONS(2205), + [sym_this] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_null] = ACTIONS(2205), + [sym_undefined] = ACTIONS(2205), + [anon_sym_AT] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_readonly] = ACTIONS(2205), + [anon_sym_get] = ACTIONS(2205), + [anon_sym_set] = ACTIONS(2205), + [anon_sym_declare] = ACTIONS(2205), + [anon_sym_public] = ACTIONS(2205), + [anon_sym_private] = ACTIONS(2205), + [anon_sym_protected] = ACTIONS(2205), + [anon_sym_override] = ACTIONS(2205), + [anon_sym_module] = ACTIONS(2205), + [anon_sym_any] = ACTIONS(2205), + [anon_sym_number] = ACTIONS(2205), + [anon_sym_boolean] = ACTIONS(2205), + [anon_sym_string] = ACTIONS(2205), + [anon_sym_symbol] = ACTIONS(2205), + [anon_sym_object] = ACTIONS(2205), + [anon_sym_abstract] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [sym__automatic_semicolon] = ACTIONS(2391), + [sym_html_comment] = ACTIONS(5), + }, + [1126] = { + [sym_comment] = STATE(1126), + [sym_identifier] = ACTIONS(3340), + [anon_sym_export] = ACTIONS(3340), + [anon_sym_default] = ACTIONS(3340), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_namespace] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_typeof] = ACTIONS(3340), + [anon_sym_import] = ACTIONS(3340), + [anon_sym_with] = ACTIONS(3340), + [anon_sym_var] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_switch] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_await] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_debugger] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_case] = ACTIONS(3340), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LTtemplate_GT] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3340), + [anon_sym_class] = ACTIONS(3340), + [anon_sym_async] = ACTIONS(3340), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_using] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_void] = ACTIONS(3340), + [anon_sym_delete] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3340), + [sym_number] = ACTIONS(3340), + [sym_private_property_identifier] = ACTIONS(3340), + [sym_this] = ACTIONS(3340), + [sym_super] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_null] = ACTIONS(3340), + [sym_undefined] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3340), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_readonly] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3340), + [anon_sym_declare] = ACTIONS(3340), + [anon_sym_public] = ACTIONS(3340), + [anon_sym_private] = ACTIONS(3340), + [anon_sym_protected] = ACTIONS(3340), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_module] = ACTIONS(3340), + [anon_sym_any] = ACTIONS(3340), + [anon_sym_number] = ACTIONS(3340), + [anon_sym_boolean] = ACTIONS(3340), + [anon_sym_string] = ACTIONS(3340), + [anon_sym_symbol] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_abstract] = ACTIONS(3340), + [anon_sym_interface] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), + [sym_html_comment] = ACTIONS(5), + }, + [1127] = { + [sym_comment] = STATE(1127), + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2221), + [anon_sym_export] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_typeof] = ACTIONS(2221), + [anon_sym_import] = ACTIONS(2221), + [anon_sym_with] = ACTIONS(2221), + [anon_sym_var] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_else] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_debugger] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_finally] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LTtemplate_GT] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_void] = ACTIONS(2221), + [anon_sym_delete] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2221), + [sym_number] = ACTIONS(2221), + [sym_private_property_identifier] = ACTIONS(2221), + [sym_this] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_null] = ACTIONS(2221), + [sym_undefined] = ACTIONS(2221), + [anon_sym_AT] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_get] = ACTIONS(2221), + [anon_sym_set] = ACTIONS(2221), + [anon_sym_declare] = ACTIONS(2221), + [anon_sym_public] = ACTIONS(2221), + [anon_sym_private] = ACTIONS(2221), + [anon_sym_protected] = ACTIONS(2221), + [anon_sym_override] = ACTIONS(2221), + [anon_sym_module] = ACTIONS(2221), + [anon_sym_any] = ACTIONS(2221), + [anon_sym_number] = ACTIONS(2221), + [anon_sym_boolean] = ACTIONS(2221), + [anon_sym_string] = ACTIONS(2221), + [anon_sym_symbol] = ACTIONS(2221), + [anon_sym_object] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [sym_html_comment] = ACTIONS(5), + }, + [1128] = { + [sym_comment] = STATE(1128), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym_html_comment] = ACTIONS(5), + }, + [1129] = { + [sym_comment] = STATE(1129), + [sym_identifier] = ACTIONS(3342), + [anon_sym_export] = ACTIONS(3342), + [anon_sym_default] = ACTIONS(3342), + [anon_sym_type] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_typeof] = ACTIONS(3342), + [anon_sym_import] = ACTIONS(3342), + [anon_sym_with] = ACTIONS(3342), + [anon_sym_var] = ACTIONS(3342), + [anon_sym_let] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_switch] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_await] = ACTIONS(3342), + [anon_sym_while] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_debugger] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_throw] = ACTIONS(3342), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_case] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_LTtemplate_GT] = ACTIONS(3342), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_SQUOTE] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_async] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3342), + [anon_sym_using] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_void] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3342), + [sym_number] = ACTIONS(3342), + [sym_private_property_identifier] = ACTIONS(3342), + [sym_this] = ACTIONS(3342), + [sym_super] = ACTIONS(3342), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [sym_null] = ACTIONS(3342), + [sym_undefined] = ACTIONS(3342), + [anon_sym_AT] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_readonly] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_declare] = ACTIONS(3342), + [anon_sym_public] = ACTIONS(3342), + [anon_sym_private] = ACTIONS(3342), + [anon_sym_protected] = ACTIONS(3342), + [anon_sym_override] = ACTIONS(3342), + [anon_sym_module] = ACTIONS(3342), + [anon_sym_any] = ACTIONS(3342), + [anon_sym_number] = ACTIONS(3342), + [anon_sym_boolean] = ACTIONS(3342), + [anon_sym_string] = ACTIONS(3342), + [anon_sym_symbol] = ACTIONS(3342), + [anon_sym_object] = ACTIONS(3342), + [anon_sym_abstract] = ACTIONS(3342), + [anon_sym_interface] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), + [sym_html_comment] = ACTIONS(5), + }, + [1130] = { + [sym_comment] = STATE(1130), + [sym_identifier] = ACTIONS(3344), + [anon_sym_export] = ACTIONS(3344), + [anon_sym_default] = ACTIONS(3344), + [anon_sym_type] = ACTIONS(3344), + [anon_sym_namespace] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_RBRACE] = ACTIONS(3344), + [anon_sym_typeof] = ACTIONS(3344), + [anon_sym_import] = ACTIONS(3344), + [anon_sym_with] = ACTIONS(3344), + [anon_sym_var] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3344), + [anon_sym_const] = ACTIONS(3344), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_switch] = ACTIONS(3344), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_await] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_debugger] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_case] = ACTIONS(3344), + [anon_sym_yield] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_LTtemplate_GT] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3344), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_async] = ACTIONS(3344), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_using] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3344), + [anon_sym_void] = ACTIONS(3344), + [anon_sym_delete] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3344), + [anon_sym_DASH_DASH] = ACTIONS(3344), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3344), + [sym_number] = ACTIONS(3344), + [sym_private_property_identifier] = ACTIONS(3344), + [sym_this] = ACTIONS(3344), + [sym_super] = ACTIONS(3344), + [sym_true] = ACTIONS(3344), + [sym_false] = ACTIONS(3344), + [sym_null] = ACTIONS(3344), + [sym_undefined] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3344), + [anon_sym_static] = ACTIONS(3344), + [anon_sym_readonly] = ACTIONS(3344), + [anon_sym_get] = ACTIONS(3344), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_declare] = ACTIONS(3344), + [anon_sym_public] = ACTIONS(3344), + [anon_sym_private] = ACTIONS(3344), + [anon_sym_protected] = ACTIONS(3344), + [anon_sym_override] = ACTIONS(3344), + [anon_sym_module] = ACTIONS(3344), + [anon_sym_any] = ACTIONS(3344), + [anon_sym_number] = ACTIONS(3344), + [anon_sym_boolean] = ACTIONS(3344), + [anon_sym_string] = ACTIONS(3344), + [anon_sym_symbol] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_abstract] = ACTIONS(3344), + [anon_sym_interface] = ACTIONS(3344), + [anon_sym_enum] = ACTIONS(3344), [sym_html_comment] = ACTIONS(5), }, [1131] = { [sym_comment] = STATE(1131), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_default] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_case] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [sym__automatic_semicolon] = ACTIONS(2361), + [ts_builtin_sym_end] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [sym__automatic_semicolon] = ACTIONS(2345), [sym_html_comment] = ACTIONS(5), }, [1132] = { [sym_comment] = STATE(1132), - [ts_builtin_sym_end] = ACTIONS(2311), - [sym_identifier] = ACTIONS(2181), - [anon_sym_export] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_namespace] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_typeof] = ACTIONS(2181), - [anon_sym_import] = ACTIONS(2181), - [anon_sym_with] = ACTIONS(2181), - [anon_sym_var] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2181), - [anon_sym_else] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_switch] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_do] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_debugger] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_throw] = ACTIONS(2181), - [anon_sym_SEMI] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_LTtemplate_GT] = ACTIONS(2181), - [anon_sym_DQUOTE] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_class] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_function] = ACTIONS(2181), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_using] = ACTIONS(2181), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_SLASH] = ACTIONS(2181), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_TILDE] = ACTIONS(2181), - [anon_sym_void] = ACTIONS(2181), - [anon_sym_delete] = ACTIONS(2181), - [anon_sym_PLUS_PLUS] = ACTIONS(2181), - [anon_sym_DASH_DASH] = ACTIONS(2181), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2181), - [sym_number] = ACTIONS(2181), - [sym_private_property_identifier] = ACTIONS(2181), - [sym_this] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_true] = ACTIONS(2181), - [sym_false] = ACTIONS(2181), - [sym_null] = ACTIONS(2181), - [sym_undefined] = ACTIONS(2181), - [anon_sym_AT] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_readonly] = ACTIONS(2181), - [anon_sym_get] = ACTIONS(2181), - [anon_sym_set] = ACTIONS(2181), - [anon_sym_declare] = ACTIONS(2181), - [anon_sym_public] = ACTIONS(2181), - [anon_sym_private] = ACTIONS(2181), - [anon_sym_protected] = ACTIONS(2181), - [anon_sym_override] = ACTIONS(2181), - [anon_sym_module] = ACTIONS(2181), - [anon_sym_any] = ACTIONS(2181), - [anon_sym_number] = ACTIONS(2181), - [anon_sym_boolean] = ACTIONS(2181), - [anon_sym_string] = ACTIONS(2181), - [anon_sym_symbol] = ACTIONS(2181), - [anon_sym_object] = ACTIONS(2181), - [anon_sym_abstract] = ACTIONS(2181), - [anon_sym_interface] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [sym__automatic_semicolon] = ACTIONS(2313), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_case] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [sym__automatic_semicolon] = ACTIONS(2385), [sym_html_comment] = ACTIONS(5), }, [1133] = { [sym_comment] = STATE(1133), - [sym_identifier] = ACTIONS(2159), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_default] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_namespace] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_typeof] = ACTIONS(2159), - [anon_sym_import] = ACTIONS(2159), - [anon_sym_with] = ACTIONS(2159), - [anon_sym_var] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_switch] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2159), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_debugger] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_throw] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_case] = ACTIONS(2159), - [anon_sym_yield] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LTtemplate_GT] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_class] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_function] = ACTIONS(2159), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_using] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_void] = ACTIONS(2159), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2159), - [sym_number] = ACTIONS(2159), - [sym_private_property_identifier] = ACTIONS(2159), - [sym_this] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_null] = ACTIONS(2159), - [sym_undefined] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [anon_sym_static] = ACTIONS(2159), - [anon_sym_readonly] = ACTIONS(2159), - [anon_sym_get] = ACTIONS(2159), - [anon_sym_set] = ACTIONS(2159), - [anon_sym_declare] = ACTIONS(2159), - [anon_sym_public] = ACTIONS(2159), - [anon_sym_private] = ACTIONS(2159), - [anon_sym_protected] = ACTIONS(2159), - [anon_sym_override] = ACTIONS(2159), - [anon_sym_module] = ACTIONS(2159), - [anon_sym_any] = ACTIONS(2159), - [anon_sym_number] = ACTIONS(2159), - [anon_sym_boolean] = ACTIONS(2159), - [anon_sym_string] = ACTIONS(2159), - [anon_sym_symbol] = ACTIONS(2159), - [anon_sym_object] = ACTIONS(2159), - [anon_sym_abstract] = ACTIONS(2159), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [sym__automatic_semicolon] = ACTIONS(2329), + [sym_identifier] = ACTIONS(2251), + [anon_sym_export] = ACTIONS(2251), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_namespace] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_typeof] = ACTIONS(2251), + [anon_sym_import] = ACTIONS(2251), + [anon_sym_with] = ACTIONS(2251), + [anon_sym_var] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_else] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_switch] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [anon_sym_do] = ACTIONS(2251), + [anon_sym_try] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_debugger] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_throw] = ACTIONS(2251), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym_case] = ACTIONS(2251), + [anon_sym_yield] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(2251), + [anon_sym_LTtemplate_GT] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_class] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_function] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2251), + [anon_sym_using] = ACTIONS(2251), + [anon_sym_PLUS] = ACTIONS(2251), + [anon_sym_DASH] = ACTIONS(2251), + [anon_sym_SLASH] = ACTIONS(2251), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_TILDE] = ACTIONS(2251), + [anon_sym_void] = ACTIONS(2251), + [anon_sym_delete] = ACTIONS(2251), + [anon_sym_PLUS_PLUS] = ACTIONS(2251), + [anon_sym_DASH_DASH] = ACTIONS(2251), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2251), + [sym_number] = ACTIONS(2251), + [sym_private_property_identifier] = ACTIONS(2251), + [sym_this] = ACTIONS(2251), + [sym_super] = ACTIONS(2251), + [sym_true] = ACTIONS(2251), + [sym_false] = ACTIONS(2251), + [sym_null] = ACTIONS(2251), + [sym_undefined] = ACTIONS(2251), + [anon_sym_AT] = ACTIONS(2251), + [anon_sym_static] = ACTIONS(2251), + [anon_sym_readonly] = ACTIONS(2251), + [anon_sym_get] = ACTIONS(2251), + [anon_sym_set] = ACTIONS(2251), + [anon_sym_declare] = ACTIONS(2251), + [anon_sym_public] = ACTIONS(2251), + [anon_sym_private] = ACTIONS(2251), + [anon_sym_protected] = ACTIONS(2251), + [anon_sym_override] = ACTIONS(2251), + [anon_sym_module] = ACTIONS(2251), + [anon_sym_any] = ACTIONS(2251), + [anon_sym_number] = ACTIONS(2251), + [anon_sym_boolean] = ACTIONS(2251), + [anon_sym_string] = ACTIONS(2251), + [anon_sym_symbol] = ACTIONS(2251), + [anon_sym_object] = ACTIONS(2251), + [anon_sym_abstract] = ACTIONS(2251), + [anon_sym_interface] = ACTIONS(2251), + [anon_sym_enum] = ACTIONS(2251), [sym_html_comment] = ACTIONS(5), }, [1134] = { [sym_comment] = STATE(1134), - [ts_builtin_sym_end] = ACTIONS(2307), - [sym_identifier] = ACTIONS(2173), - [anon_sym_export] = ACTIONS(2173), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_namespace] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_typeof] = ACTIONS(2173), - [anon_sym_import] = ACTIONS(2173), - [anon_sym_with] = ACTIONS(2173), - [anon_sym_var] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2173), - [anon_sym_else] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_switch] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_debugger] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_throw] = ACTIONS(2173), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_yield] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_LTtemplate_GT] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_class] = ACTIONS(2173), - [anon_sym_async] = ACTIONS(2173), - [anon_sym_function] = ACTIONS(2173), - [anon_sym_new] = ACTIONS(2173), - [anon_sym_using] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_SLASH] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2173), - [anon_sym_TILDE] = ACTIONS(2173), - [anon_sym_void] = ACTIONS(2173), - [anon_sym_delete] = ACTIONS(2173), - [anon_sym_PLUS_PLUS] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2173), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2173), - [sym_number] = ACTIONS(2173), - [sym_private_property_identifier] = ACTIONS(2173), - [sym_this] = ACTIONS(2173), - [sym_super] = ACTIONS(2173), - [sym_true] = ACTIONS(2173), - [sym_false] = ACTIONS(2173), - [sym_null] = ACTIONS(2173), - [sym_undefined] = ACTIONS(2173), - [anon_sym_AT] = ACTIONS(2173), - [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_abstract] = ACTIONS(2173), - [anon_sym_interface] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [sym__automatic_semicolon] = ACTIONS(2309), + [sym_identifier] = ACTIONS(3346), + [anon_sym_export] = ACTIONS(3346), + [anon_sym_default] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3346), + [anon_sym_namespace] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_typeof] = ACTIONS(3346), + [anon_sym_import] = ACTIONS(3346), + [anon_sym_with] = ACTIONS(3346), + [anon_sym_var] = ACTIONS(3346), + [anon_sym_let] = ACTIONS(3346), + [anon_sym_const] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_switch] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_await] = ACTIONS(3346), + [anon_sym_while] = ACTIONS(3346), + [anon_sym_do] = ACTIONS(3346), + [anon_sym_try] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_debugger] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_throw] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_case] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_LTtemplate_GT] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3346), + [anon_sym_class] = ACTIONS(3346), + [anon_sym_async] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3346), + [anon_sym_using] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_void] = ACTIONS(3346), + [anon_sym_delete] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3346), + [sym_number] = ACTIONS(3346), + [sym_private_property_identifier] = ACTIONS(3346), + [sym_this] = ACTIONS(3346), + [sym_super] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_null] = ACTIONS(3346), + [sym_undefined] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_static] = ACTIONS(3346), + [anon_sym_readonly] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_declare] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_override] = ACTIONS(3346), + [anon_sym_module] = ACTIONS(3346), + [anon_sym_any] = ACTIONS(3346), + [anon_sym_number] = ACTIONS(3346), + [anon_sym_boolean] = ACTIONS(3346), + [anon_sym_string] = ACTIONS(3346), + [anon_sym_symbol] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_interface] = ACTIONS(3346), + [anon_sym_enum] = ACTIONS(3346), [sym_html_comment] = ACTIONS(5), }, [1135] = { [sym_comment] = STATE(1135), - [ts_builtin_sym_end] = ACTIONS(2301), - [sym_identifier] = ACTIONS(2127), - [anon_sym_export] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2127), - [anon_sym_namespace] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_typeof] = ACTIONS(2127), - [anon_sym_import] = ACTIONS(2127), - [anon_sym_with] = ACTIONS(2127), - [anon_sym_var] = ACTIONS(2127), - [anon_sym_let] = ACTIONS(2127), - [anon_sym_const] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_else] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2127), - [anon_sym_switch] = ACTIONS(2127), - [anon_sym_for] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_await] = ACTIONS(2127), - [anon_sym_while] = ACTIONS(2127), - [anon_sym_do] = ACTIONS(2127), - [anon_sym_try] = ACTIONS(2127), - [anon_sym_break] = ACTIONS(2127), - [anon_sym_continue] = ACTIONS(2127), - [anon_sym_debugger] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2127), - [anon_sym_throw] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_yield] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_LTtemplate_GT] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(2127), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_class] = ACTIONS(2127), - [anon_sym_async] = ACTIONS(2127), - [anon_sym_function] = ACTIONS(2127), - [anon_sym_new] = ACTIONS(2127), - [anon_sym_using] = ACTIONS(2127), - [anon_sym_PLUS] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2127), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_LT] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_void] = ACTIONS(2127), - [anon_sym_delete] = ACTIONS(2127), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2127), - [sym_number] = ACTIONS(2127), - [sym_private_property_identifier] = ACTIONS(2127), - [sym_this] = ACTIONS(2127), - [sym_super] = ACTIONS(2127), - [sym_true] = ACTIONS(2127), - [sym_false] = ACTIONS(2127), - [sym_null] = ACTIONS(2127), - [sym_undefined] = ACTIONS(2127), - [anon_sym_AT] = ACTIONS(2127), - [anon_sym_static] = ACTIONS(2127), - [anon_sym_readonly] = ACTIONS(2127), - [anon_sym_get] = ACTIONS(2127), - [anon_sym_set] = ACTIONS(2127), - [anon_sym_declare] = ACTIONS(2127), - [anon_sym_public] = ACTIONS(2127), - [anon_sym_private] = ACTIONS(2127), - [anon_sym_protected] = ACTIONS(2127), - [anon_sym_override] = ACTIONS(2127), - [anon_sym_module] = ACTIONS(2127), - [anon_sym_any] = ACTIONS(2127), - [anon_sym_number] = ACTIONS(2127), - [anon_sym_boolean] = ACTIONS(2127), - [anon_sym_string] = ACTIONS(2127), - [anon_sym_symbol] = ACTIONS(2127), - [anon_sym_object] = ACTIONS(2127), - [anon_sym_abstract] = ACTIONS(2127), - [anon_sym_interface] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(2127), - [sym__automatic_semicolon] = ACTIONS(2303), + [sym_identifier] = ACTIONS(3348), + [anon_sym_export] = ACTIONS(3348), + [anon_sym_default] = ACTIONS(3348), + [anon_sym_type] = ACTIONS(3348), + [anon_sym_namespace] = ACTIONS(3348), + [anon_sym_LBRACE] = ACTIONS(3348), + [anon_sym_RBRACE] = ACTIONS(3348), + [anon_sym_typeof] = ACTIONS(3348), + [anon_sym_import] = ACTIONS(3348), + [anon_sym_with] = ACTIONS(3348), + [anon_sym_var] = ACTIONS(3348), + [anon_sym_let] = ACTIONS(3348), + [anon_sym_const] = ACTIONS(3348), + [anon_sym_BANG] = ACTIONS(3348), + [anon_sym_else] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(3348), + [anon_sym_switch] = ACTIONS(3348), + [anon_sym_for] = ACTIONS(3348), + [anon_sym_LPAREN] = ACTIONS(3348), + [anon_sym_await] = ACTIONS(3348), + [anon_sym_while] = ACTIONS(3348), + [anon_sym_do] = ACTIONS(3348), + [anon_sym_try] = ACTIONS(3348), + [anon_sym_break] = ACTIONS(3348), + [anon_sym_continue] = ACTIONS(3348), + [anon_sym_debugger] = ACTIONS(3348), + [anon_sym_return] = ACTIONS(3348), + [anon_sym_throw] = ACTIONS(3348), + [anon_sym_SEMI] = ACTIONS(3348), + [anon_sym_case] = ACTIONS(3348), + [anon_sym_yield] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3348), + [anon_sym_LTtemplate_GT] = ACTIONS(3348), + [anon_sym_DQUOTE] = ACTIONS(3348), + [anon_sym_SQUOTE] = ACTIONS(3348), + [anon_sym_class] = ACTIONS(3348), + [anon_sym_async] = ACTIONS(3348), + [anon_sym_function] = ACTIONS(3348), + [anon_sym_new] = ACTIONS(3348), + [anon_sym_using] = ACTIONS(3348), + [anon_sym_PLUS] = ACTIONS(3348), + [anon_sym_DASH] = ACTIONS(3348), + [anon_sym_SLASH] = ACTIONS(3348), + [anon_sym_LT] = ACTIONS(3348), + [anon_sym_TILDE] = ACTIONS(3348), + [anon_sym_void] = ACTIONS(3348), + [anon_sym_delete] = ACTIONS(3348), + [anon_sym_PLUS_PLUS] = ACTIONS(3348), + [anon_sym_DASH_DASH] = ACTIONS(3348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3348), + [sym_number] = ACTIONS(3348), + [sym_private_property_identifier] = ACTIONS(3348), + [sym_this] = ACTIONS(3348), + [sym_super] = ACTIONS(3348), + [sym_true] = ACTIONS(3348), + [sym_false] = ACTIONS(3348), + [sym_null] = ACTIONS(3348), + [sym_undefined] = ACTIONS(3348), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_static] = ACTIONS(3348), + [anon_sym_readonly] = ACTIONS(3348), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3348), + [anon_sym_declare] = ACTIONS(3348), + [anon_sym_public] = ACTIONS(3348), + [anon_sym_private] = ACTIONS(3348), + [anon_sym_protected] = ACTIONS(3348), + [anon_sym_override] = ACTIONS(3348), + [anon_sym_module] = ACTIONS(3348), + [anon_sym_any] = ACTIONS(3348), + [anon_sym_number] = ACTIONS(3348), + [anon_sym_boolean] = ACTIONS(3348), + [anon_sym_string] = ACTIONS(3348), + [anon_sym_symbol] = ACTIONS(3348), + [anon_sym_object] = ACTIONS(3348), + [anon_sym_abstract] = ACTIONS(3348), + [anon_sym_interface] = ACTIONS(3348), + [anon_sym_enum] = ACTIONS(3348), [sym_html_comment] = ACTIONS(5), }, [1136] = { [sym_comment] = STATE(1136), - [sym_identifier] = ACTIONS(3320), - [anon_sym_export] = ACTIONS(3320), - [anon_sym_default] = ACTIONS(3320), - [anon_sym_type] = ACTIONS(3320), - [anon_sym_namespace] = ACTIONS(3320), - [anon_sym_LBRACE] = ACTIONS(3320), - [anon_sym_RBRACE] = ACTIONS(3320), - [anon_sym_typeof] = ACTIONS(3320), - [anon_sym_import] = ACTIONS(3320), - [anon_sym_with] = ACTIONS(3320), - [anon_sym_var] = ACTIONS(3320), - [anon_sym_let] = ACTIONS(3320), - [anon_sym_const] = ACTIONS(3320), - [anon_sym_BANG] = ACTIONS(3320), - [anon_sym_else] = ACTIONS(3320), - [anon_sym_if] = ACTIONS(3320), - [anon_sym_switch] = ACTIONS(3320), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(3320), - [anon_sym_await] = ACTIONS(3320), - [anon_sym_while] = ACTIONS(3320), - [anon_sym_do] = ACTIONS(3320), - [anon_sym_try] = ACTIONS(3320), - [anon_sym_break] = ACTIONS(3320), - [anon_sym_continue] = ACTIONS(3320), - [anon_sym_debugger] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(3320), - [anon_sym_throw] = ACTIONS(3320), - [anon_sym_SEMI] = ACTIONS(3320), - [anon_sym_case] = ACTIONS(3320), - [anon_sym_yield] = ACTIONS(3320), - [anon_sym_LBRACK] = ACTIONS(3320), - [anon_sym_LTtemplate_GT] = ACTIONS(3320), - [anon_sym_DQUOTE] = ACTIONS(3320), - [anon_sym_SQUOTE] = ACTIONS(3320), - [anon_sym_class] = ACTIONS(3320), - [anon_sym_async] = ACTIONS(3320), - [anon_sym_function] = ACTIONS(3320), - [anon_sym_new] = ACTIONS(3320), - [anon_sym_using] = ACTIONS(3320), - [anon_sym_PLUS] = ACTIONS(3320), - [anon_sym_DASH] = ACTIONS(3320), - [anon_sym_SLASH] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(3320), - [anon_sym_TILDE] = ACTIONS(3320), - [anon_sym_void] = ACTIONS(3320), - [anon_sym_delete] = ACTIONS(3320), - [anon_sym_PLUS_PLUS] = ACTIONS(3320), - [anon_sym_DASH_DASH] = ACTIONS(3320), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3320), - [sym_number] = ACTIONS(3320), - [sym_private_property_identifier] = ACTIONS(3320), - [sym_this] = ACTIONS(3320), - [sym_super] = ACTIONS(3320), - [sym_true] = ACTIONS(3320), - [sym_false] = ACTIONS(3320), - [sym_null] = ACTIONS(3320), - [sym_undefined] = ACTIONS(3320), - [anon_sym_AT] = ACTIONS(3320), - [anon_sym_static] = ACTIONS(3320), - [anon_sym_readonly] = ACTIONS(3320), - [anon_sym_get] = ACTIONS(3320), - [anon_sym_set] = ACTIONS(3320), - [anon_sym_declare] = ACTIONS(3320), - [anon_sym_public] = ACTIONS(3320), - [anon_sym_private] = ACTIONS(3320), - [anon_sym_protected] = ACTIONS(3320), - [anon_sym_override] = ACTIONS(3320), - [anon_sym_module] = ACTIONS(3320), - [anon_sym_any] = ACTIONS(3320), - [anon_sym_number] = ACTIONS(3320), - [anon_sym_boolean] = ACTIONS(3320), - [anon_sym_string] = ACTIONS(3320), - [anon_sym_symbol] = ACTIONS(3320), - [anon_sym_object] = ACTIONS(3320), - [anon_sym_abstract] = ACTIONS(3320), - [anon_sym_interface] = ACTIONS(3320), - [anon_sym_enum] = ACTIONS(3320), + [sym_identifier] = ACTIONS(3350), + [anon_sym_export] = ACTIONS(3350), + [anon_sym_default] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3350), + [anon_sym_namespace] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_typeof] = ACTIONS(3350), + [anon_sym_import] = ACTIONS(3350), + [anon_sym_with] = ACTIONS(3350), + [anon_sym_var] = ACTIONS(3350), + [anon_sym_let] = ACTIONS(3350), + [anon_sym_const] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_else] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_switch] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_await] = ACTIONS(3350), + [anon_sym_while] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_try] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_debugger] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_throw] = ACTIONS(3350), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_case] = ACTIONS(3350), + [anon_sym_yield] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_LTtemplate_GT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_class] = ACTIONS(3350), + [anon_sym_async] = ACTIONS(3350), + [anon_sym_function] = ACTIONS(3350), + [anon_sym_new] = ACTIONS(3350), + [anon_sym_using] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_void] = ACTIONS(3350), + [anon_sym_delete] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3350), + [sym_number] = ACTIONS(3350), + [sym_private_property_identifier] = ACTIONS(3350), + [sym_this] = ACTIONS(3350), + [sym_super] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_null] = ACTIONS(3350), + [sym_undefined] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_static] = ACTIONS(3350), + [anon_sym_readonly] = ACTIONS(3350), + [anon_sym_get] = ACTIONS(3350), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_declare] = ACTIONS(3350), + [anon_sym_public] = ACTIONS(3350), + [anon_sym_private] = ACTIONS(3350), + [anon_sym_protected] = ACTIONS(3350), + [anon_sym_override] = ACTIONS(3350), + [anon_sym_module] = ACTIONS(3350), + [anon_sym_any] = ACTIONS(3350), + [anon_sym_number] = ACTIONS(3350), + [anon_sym_boolean] = ACTIONS(3350), + [anon_sym_string] = ACTIONS(3350), + [anon_sym_symbol] = ACTIONS(3350), + [anon_sym_object] = ACTIONS(3350), + [anon_sym_abstract] = ACTIONS(3350), + [anon_sym_interface] = ACTIONS(3350), + [anon_sym_enum] = ACTIONS(3350), [sym_html_comment] = ACTIONS(5), }, [1137] = { [sym_comment] = STATE(1137), - [sym_identifier] = ACTIONS(3322), - [anon_sym_export] = ACTIONS(3322), - [anon_sym_default] = ACTIONS(3322), - [anon_sym_type] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3322), - [anon_sym_RBRACE] = ACTIONS(3322), - [anon_sym_typeof] = ACTIONS(3322), - [anon_sym_import] = ACTIONS(3322), - [anon_sym_with] = ACTIONS(3322), - [anon_sym_var] = ACTIONS(3322), - [anon_sym_let] = ACTIONS(3322), - [anon_sym_const] = ACTIONS(3322), - [anon_sym_BANG] = ACTIONS(3322), - [anon_sym_else] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3322), - [anon_sym_switch] = ACTIONS(3322), - [anon_sym_for] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3322), - [anon_sym_await] = ACTIONS(3322), - [anon_sym_while] = ACTIONS(3322), - [anon_sym_do] = ACTIONS(3322), - [anon_sym_try] = ACTIONS(3322), - [anon_sym_break] = ACTIONS(3322), - [anon_sym_continue] = ACTIONS(3322), - [anon_sym_debugger] = ACTIONS(3322), - [anon_sym_return] = ACTIONS(3322), - [anon_sym_throw] = ACTIONS(3322), - [anon_sym_SEMI] = ACTIONS(3322), - [anon_sym_case] = ACTIONS(3322), - [anon_sym_yield] = ACTIONS(3322), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_LTtemplate_GT] = ACTIONS(3322), - [anon_sym_DQUOTE] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3322), - [anon_sym_class] = ACTIONS(3322), - [anon_sym_async] = ACTIONS(3322), - [anon_sym_function] = ACTIONS(3322), - [anon_sym_new] = ACTIONS(3322), - [anon_sym_using] = ACTIONS(3322), - [anon_sym_PLUS] = ACTIONS(3322), - [anon_sym_DASH] = ACTIONS(3322), - [anon_sym_SLASH] = ACTIONS(3322), - [anon_sym_LT] = ACTIONS(3322), - [anon_sym_TILDE] = ACTIONS(3322), - [anon_sym_void] = ACTIONS(3322), - [anon_sym_delete] = ACTIONS(3322), - [anon_sym_PLUS_PLUS] = ACTIONS(3322), - [anon_sym_DASH_DASH] = ACTIONS(3322), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3322), - [sym_number] = ACTIONS(3322), - [sym_private_property_identifier] = ACTIONS(3322), - [sym_this] = ACTIONS(3322), - [sym_super] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_null] = ACTIONS(3322), - [sym_undefined] = ACTIONS(3322), - [anon_sym_AT] = ACTIONS(3322), - [anon_sym_static] = ACTIONS(3322), - [anon_sym_readonly] = ACTIONS(3322), - [anon_sym_get] = ACTIONS(3322), - [anon_sym_set] = ACTIONS(3322), - [anon_sym_declare] = ACTIONS(3322), - [anon_sym_public] = ACTIONS(3322), - [anon_sym_private] = ACTIONS(3322), - [anon_sym_protected] = ACTIONS(3322), - [anon_sym_override] = ACTIONS(3322), - [anon_sym_module] = ACTIONS(3322), - [anon_sym_any] = ACTIONS(3322), - [anon_sym_number] = ACTIONS(3322), - [anon_sym_boolean] = ACTIONS(3322), - [anon_sym_string] = ACTIONS(3322), - [anon_sym_symbol] = ACTIONS(3322), - [anon_sym_object] = ACTIONS(3322), - [anon_sym_abstract] = ACTIONS(3322), - [anon_sym_interface] = ACTIONS(3322), - [anon_sym_enum] = ACTIONS(3322), + [sym_identifier] = ACTIONS(3352), + [anon_sym_export] = ACTIONS(3352), + [anon_sym_default] = ACTIONS(3352), + [anon_sym_type] = ACTIONS(3352), + [anon_sym_namespace] = ACTIONS(3352), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_RBRACE] = ACTIONS(3352), + [anon_sym_typeof] = ACTIONS(3352), + [anon_sym_import] = ACTIONS(3352), + [anon_sym_with] = ACTIONS(3352), + [anon_sym_var] = ACTIONS(3352), + [anon_sym_let] = ACTIONS(3352), + [anon_sym_const] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3352), + [anon_sym_else] = ACTIONS(3352), + [anon_sym_if] = ACTIONS(3352), + [anon_sym_switch] = ACTIONS(3352), + [anon_sym_for] = ACTIONS(3352), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_await] = ACTIONS(3352), + [anon_sym_while] = ACTIONS(3352), + [anon_sym_do] = ACTIONS(3352), + [anon_sym_try] = ACTIONS(3352), + [anon_sym_break] = ACTIONS(3352), + [anon_sym_continue] = ACTIONS(3352), + [anon_sym_debugger] = ACTIONS(3352), + [anon_sym_return] = ACTIONS(3352), + [anon_sym_throw] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_case] = ACTIONS(3352), + [anon_sym_yield] = ACTIONS(3352), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_LTtemplate_GT] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [anon_sym_SQUOTE] = ACTIONS(3352), + [anon_sym_class] = ACTIONS(3352), + [anon_sym_async] = ACTIONS(3352), + [anon_sym_function] = ACTIONS(3352), + [anon_sym_new] = ACTIONS(3352), + [anon_sym_using] = ACTIONS(3352), + [anon_sym_PLUS] = ACTIONS(3352), + [anon_sym_DASH] = ACTIONS(3352), + [anon_sym_SLASH] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3352), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_void] = ACTIONS(3352), + [anon_sym_delete] = ACTIONS(3352), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3352), + [sym_number] = ACTIONS(3352), + [sym_private_property_identifier] = ACTIONS(3352), + [sym_this] = ACTIONS(3352), + [sym_super] = ACTIONS(3352), + [sym_true] = ACTIONS(3352), + [sym_false] = ACTIONS(3352), + [sym_null] = ACTIONS(3352), + [sym_undefined] = ACTIONS(3352), + [anon_sym_AT] = ACTIONS(3352), + [anon_sym_static] = ACTIONS(3352), + [anon_sym_readonly] = ACTIONS(3352), + [anon_sym_get] = ACTIONS(3352), + [anon_sym_set] = ACTIONS(3352), + [anon_sym_declare] = ACTIONS(3352), + [anon_sym_public] = ACTIONS(3352), + [anon_sym_private] = ACTIONS(3352), + [anon_sym_protected] = ACTIONS(3352), + [anon_sym_override] = ACTIONS(3352), + [anon_sym_module] = ACTIONS(3352), + [anon_sym_any] = ACTIONS(3352), + [anon_sym_number] = ACTIONS(3352), + [anon_sym_boolean] = ACTIONS(3352), + [anon_sym_string] = ACTIONS(3352), + [anon_sym_symbol] = ACTIONS(3352), + [anon_sym_object] = ACTIONS(3352), + [anon_sym_abstract] = ACTIONS(3352), + [anon_sym_interface] = ACTIONS(3352), + [anon_sym_enum] = ACTIONS(3352), [sym_html_comment] = ACTIONS(5), }, [1138] = { [sym_comment] = STATE(1138), - [sym_identifier] = ACTIONS(3324), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_default] = ACTIONS(3324), - [anon_sym_type] = ACTIONS(3324), - [anon_sym_namespace] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_typeof] = ACTIONS(3324), - [anon_sym_import] = ACTIONS(3324), - [anon_sym_with] = ACTIONS(3324), - [anon_sym_var] = ACTIONS(3324), - [anon_sym_let] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_else] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_await] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_try] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_debugger] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_throw] = ACTIONS(3324), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_case] = ACTIONS(3324), - [anon_sym_yield] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3324), - [anon_sym_LTtemplate_GT] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_class] = ACTIONS(3324), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_function] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_using] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_void] = ACTIONS(3324), - [anon_sym_delete] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3324), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_case] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LTtemplate_GT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3324), - [sym_number] = ACTIONS(3324), - [sym_private_property_identifier] = ACTIONS(3324), - [sym_this] = ACTIONS(3324), - [sym_super] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_null] = ACTIONS(3324), - [sym_undefined] = ACTIONS(3324), - [anon_sym_AT] = ACTIONS(3324), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_readonly] = ACTIONS(3324), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3324), - [anon_sym_declare] = ACTIONS(3324), - [anon_sym_public] = ACTIONS(3324), - [anon_sym_private] = ACTIONS(3324), - [anon_sym_protected] = ACTIONS(3324), - [anon_sym_override] = ACTIONS(3324), - [anon_sym_module] = ACTIONS(3324), - [anon_sym_any] = ACTIONS(3324), - [anon_sym_number] = ACTIONS(3324), - [anon_sym_boolean] = ACTIONS(3324), - [anon_sym_string] = ACTIONS(3324), - [anon_sym_symbol] = ACTIONS(3324), - [anon_sym_object] = ACTIONS(3324), - [anon_sym_abstract] = ACTIONS(3324), - [anon_sym_interface] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), + [anon_sym_BQUOTE] = ACTIONS(3354), + [sym_number] = ACTIONS(3354), + [sym_private_property_identifier] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), + [sym_super] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_undefined] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_any] = ACTIONS(3354), + [anon_sym_number] = ACTIONS(3354), + [anon_sym_boolean] = ACTIONS(3354), + [anon_sym_string] = ACTIONS(3354), + [anon_sym_symbol] = ACTIONS(3354), + [anon_sym_object] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), [sym_html_comment] = ACTIONS(5), }, [1139] = { [sym_comment] = STATE(1139), - [sym_identifier] = ACTIONS(3324), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_default] = ACTIONS(3324), - [anon_sym_type] = ACTIONS(3324), - [anon_sym_namespace] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_typeof] = ACTIONS(3324), - [anon_sym_import] = ACTIONS(3324), - [anon_sym_with] = ACTIONS(3324), - [anon_sym_var] = ACTIONS(3324), - [anon_sym_let] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_else] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_await] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_try] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_debugger] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_throw] = ACTIONS(3324), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_case] = ACTIONS(3324), - [anon_sym_yield] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3324), - [anon_sym_LTtemplate_GT] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_class] = ACTIONS(3324), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_function] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_using] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_void] = ACTIONS(3324), - [anon_sym_delete] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3324), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3324), - [sym_number] = ACTIONS(3324), - [sym_private_property_identifier] = ACTIONS(3324), - [sym_this] = ACTIONS(3324), - [sym_super] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_null] = ACTIONS(3324), - [sym_undefined] = ACTIONS(3324), - [anon_sym_AT] = ACTIONS(3324), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_readonly] = ACTIONS(3324), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3324), - [anon_sym_declare] = ACTIONS(3324), - [anon_sym_public] = ACTIONS(3324), - [anon_sym_private] = ACTIONS(3324), - [anon_sym_protected] = ACTIONS(3324), - [anon_sym_override] = ACTIONS(3324), - [anon_sym_module] = ACTIONS(3324), - [anon_sym_any] = ACTIONS(3324), - [anon_sym_number] = ACTIONS(3324), - [anon_sym_boolean] = ACTIONS(3324), - [anon_sym_string] = ACTIONS(3324), - [anon_sym_symbol] = ACTIONS(3324), - [anon_sym_object] = ACTIONS(3324), - [anon_sym_abstract] = ACTIONS(3324), - [anon_sym_interface] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), + [sym_identifier] = ACTIONS(3356), + [anon_sym_export] = ACTIONS(3356), + [anon_sym_default] = ACTIONS(3356), + [anon_sym_type] = ACTIONS(3356), + [anon_sym_namespace] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_typeof] = ACTIONS(3356), + [anon_sym_import] = ACTIONS(3356), + [anon_sym_with] = ACTIONS(3356), + [anon_sym_var] = ACTIONS(3356), + [anon_sym_let] = ACTIONS(3356), + [anon_sym_const] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_else] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_switch] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_await] = ACTIONS(3356), + [anon_sym_while] = ACTIONS(3356), + [anon_sym_do] = ACTIONS(3356), + [anon_sym_try] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_debugger] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_throw] = ACTIONS(3356), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_case] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LTtemplate_GT] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_class] = ACTIONS(3356), + [anon_sym_async] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3356), + [anon_sym_new] = ACTIONS(3356), + [anon_sym_using] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_void] = ACTIONS(3356), + [anon_sym_delete] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3356), + [sym_number] = ACTIONS(3356), + [sym_private_property_identifier] = ACTIONS(3356), + [sym_this] = ACTIONS(3356), + [sym_super] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_null] = ACTIONS(3356), + [sym_undefined] = ACTIONS(3356), + [anon_sym_AT] = ACTIONS(3356), + [anon_sym_static] = ACTIONS(3356), + [anon_sym_readonly] = ACTIONS(3356), + [anon_sym_get] = ACTIONS(3356), + [anon_sym_set] = ACTIONS(3356), + [anon_sym_declare] = ACTIONS(3356), + [anon_sym_public] = ACTIONS(3356), + [anon_sym_private] = ACTIONS(3356), + [anon_sym_protected] = ACTIONS(3356), + [anon_sym_override] = ACTIONS(3356), + [anon_sym_module] = ACTIONS(3356), + [anon_sym_any] = ACTIONS(3356), + [anon_sym_number] = ACTIONS(3356), + [anon_sym_boolean] = ACTIONS(3356), + [anon_sym_string] = ACTIONS(3356), + [anon_sym_symbol] = ACTIONS(3356), + [anon_sym_object] = ACTIONS(3356), + [anon_sym_abstract] = ACTIONS(3356), + [anon_sym_interface] = ACTIONS(3356), + [anon_sym_enum] = ACTIONS(3356), [sym_html_comment] = ACTIONS(5), }, [1140] = { [sym_comment] = STATE(1140), - [sym_identifier] = ACTIONS(3326), - [anon_sym_export] = ACTIONS(3326), - [anon_sym_default] = ACTIONS(3326), - [anon_sym_type] = ACTIONS(3326), - [anon_sym_namespace] = ACTIONS(3326), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_RBRACE] = ACTIONS(3326), - [anon_sym_typeof] = ACTIONS(3326), - [anon_sym_import] = ACTIONS(3326), - [anon_sym_with] = ACTIONS(3326), - [anon_sym_var] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3326), - [anon_sym_const] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_switch] = ACTIONS(3326), - [anon_sym_for] = ACTIONS(3326), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_await] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_do] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_break] = ACTIONS(3326), - [anon_sym_continue] = ACTIONS(3326), - [anon_sym_debugger] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_throw] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(3326), - [anon_sym_case] = ACTIONS(3326), - [anon_sym_yield] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LTtemplate_GT] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3326), - [anon_sym_class] = ACTIONS(3326), - [anon_sym_async] = ACTIONS(3326), - [anon_sym_function] = ACTIONS(3326), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_using] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3326), - [anon_sym_void] = ACTIONS(3326), - [anon_sym_delete] = ACTIONS(3326), - [anon_sym_PLUS_PLUS] = ACTIONS(3326), - [anon_sym_DASH_DASH] = ACTIONS(3326), + [sym_identifier] = ACTIONS(3356), + [anon_sym_export] = ACTIONS(3356), + [anon_sym_default] = ACTIONS(3356), + [anon_sym_type] = ACTIONS(3356), + [anon_sym_namespace] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_typeof] = ACTIONS(3356), + [anon_sym_import] = ACTIONS(3356), + [anon_sym_with] = ACTIONS(3356), + [anon_sym_var] = ACTIONS(3356), + [anon_sym_let] = ACTIONS(3356), + [anon_sym_const] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_else] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_switch] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_await] = ACTIONS(3356), + [anon_sym_while] = ACTIONS(3356), + [anon_sym_do] = ACTIONS(3356), + [anon_sym_try] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_debugger] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_throw] = ACTIONS(3356), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_case] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LTtemplate_GT] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_class] = ACTIONS(3356), + [anon_sym_async] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3356), + [anon_sym_new] = ACTIONS(3356), + [anon_sym_using] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_void] = ACTIONS(3356), + [anon_sym_delete] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3326), - [sym_number] = ACTIONS(3326), - [sym_private_property_identifier] = ACTIONS(3326), - [sym_this] = ACTIONS(3326), - [sym_super] = ACTIONS(3326), - [sym_true] = ACTIONS(3326), - [sym_false] = ACTIONS(3326), - [sym_null] = ACTIONS(3326), - [sym_undefined] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3326), - [anon_sym_static] = ACTIONS(3326), - [anon_sym_readonly] = ACTIONS(3326), - [anon_sym_get] = ACTIONS(3326), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_declare] = ACTIONS(3326), - [anon_sym_public] = ACTIONS(3326), - [anon_sym_private] = ACTIONS(3326), - [anon_sym_protected] = ACTIONS(3326), - [anon_sym_override] = ACTIONS(3326), - [anon_sym_module] = ACTIONS(3326), - [anon_sym_any] = ACTIONS(3326), - [anon_sym_number] = ACTIONS(3326), - [anon_sym_boolean] = ACTIONS(3326), - [anon_sym_string] = ACTIONS(3326), - [anon_sym_symbol] = ACTIONS(3326), - [anon_sym_object] = ACTIONS(3326), - [anon_sym_abstract] = ACTIONS(3326), - [anon_sym_interface] = ACTIONS(3326), - [anon_sym_enum] = ACTIONS(3326), + [anon_sym_BQUOTE] = ACTIONS(3356), + [sym_number] = ACTIONS(3356), + [sym_private_property_identifier] = ACTIONS(3356), + [sym_this] = ACTIONS(3356), + [sym_super] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_null] = ACTIONS(3356), + [sym_undefined] = ACTIONS(3356), + [anon_sym_AT] = ACTIONS(3356), + [anon_sym_static] = ACTIONS(3356), + [anon_sym_readonly] = ACTIONS(3356), + [anon_sym_get] = ACTIONS(3356), + [anon_sym_set] = ACTIONS(3356), + [anon_sym_declare] = ACTIONS(3356), + [anon_sym_public] = ACTIONS(3356), + [anon_sym_private] = ACTIONS(3356), + [anon_sym_protected] = ACTIONS(3356), + [anon_sym_override] = ACTIONS(3356), + [anon_sym_module] = ACTIONS(3356), + [anon_sym_any] = ACTIONS(3356), + [anon_sym_number] = ACTIONS(3356), + [anon_sym_boolean] = ACTIONS(3356), + [anon_sym_string] = ACTIONS(3356), + [anon_sym_symbol] = ACTIONS(3356), + [anon_sym_object] = ACTIONS(3356), + [anon_sym_abstract] = ACTIONS(3356), + [anon_sym_interface] = ACTIONS(3356), + [anon_sym_enum] = ACTIONS(3356), [sym_html_comment] = ACTIONS(5), }, [1141] = { [sym_comment] = STATE(1141), - [ts_builtin_sym_end] = ACTIONS(2297), - [sym_identifier] = ACTIONS(2117), - [anon_sym_export] = ACTIONS(2117), - [anon_sym_type] = ACTIONS(2117), - [anon_sym_namespace] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_typeof] = ACTIONS(2117), - [anon_sym_import] = ACTIONS(2117), - [anon_sym_with] = ACTIONS(2117), - [anon_sym_var] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_else] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_switch] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_await] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_try] = 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(2117), - [anon_sym_yield] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_LTtemplate_GT] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2117), - [anon_sym_class] = ACTIONS(2117), - [anon_sym_async] = ACTIONS(2117), - [anon_sym_function] = ACTIONS(2117), - [anon_sym_new] = ACTIONS(2117), - [anon_sym_using] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_SLASH] = ACTIONS(2117), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_void] = ACTIONS(2117), - [anon_sym_delete] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2117), - [sym_number] = ACTIONS(2117), - [sym_private_property_identifier] = ACTIONS(2117), - [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(2117), - [anon_sym_static] = ACTIONS(2117), - [anon_sym_readonly] = ACTIONS(2117), - [anon_sym_get] = ACTIONS(2117), - [anon_sym_set] = ACTIONS(2117), - [anon_sym_declare] = ACTIONS(2117), - [anon_sym_public] = ACTIONS(2117), - [anon_sym_private] = ACTIONS(2117), - [anon_sym_protected] = ACTIONS(2117), - [anon_sym_override] = ACTIONS(2117), - [anon_sym_module] = ACTIONS(2117), - [anon_sym_any] = ACTIONS(2117), - [anon_sym_number] = ACTIONS(2117), - [anon_sym_boolean] = ACTIONS(2117), - [anon_sym_string] = ACTIONS(2117), - [anon_sym_symbol] = ACTIONS(2117), - [anon_sym_object] = ACTIONS(2117), - [anon_sym_abstract] = ACTIONS(2117), - [anon_sym_interface] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [sym__automatic_semicolon] = ACTIONS(2299), + [sym_identifier] = ACTIONS(3358), + [anon_sym_export] = ACTIONS(3358), + [anon_sym_default] = ACTIONS(3358), + [anon_sym_type] = ACTIONS(3358), + [anon_sym_namespace] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_RBRACE] = ACTIONS(3358), + [anon_sym_typeof] = ACTIONS(3358), + [anon_sym_import] = ACTIONS(3358), + [anon_sym_with] = ACTIONS(3358), + [anon_sym_var] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3358), + [anon_sym_const] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_switch] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_await] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_debugger] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3358), + [anon_sym_case] = ACTIONS(3358), + [anon_sym_yield] = ACTIONS(3358), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_LTtemplate_GT] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3358), + [anon_sym_class] = ACTIONS(3358), + [anon_sym_async] = ACTIONS(3358), + [anon_sym_function] = ACTIONS(3358), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_using] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_void] = ACTIONS(3358), + [anon_sym_delete] = ACTIONS(3358), + [anon_sym_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3358), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3358), + [sym_number] = ACTIONS(3358), + [sym_private_property_identifier] = ACTIONS(3358), + [sym_this] = ACTIONS(3358), + [sym_super] = ACTIONS(3358), + [sym_true] = ACTIONS(3358), + [sym_false] = ACTIONS(3358), + [sym_null] = ACTIONS(3358), + [sym_undefined] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3358), + [anon_sym_static] = ACTIONS(3358), + [anon_sym_readonly] = ACTIONS(3358), + [anon_sym_get] = ACTIONS(3358), + [anon_sym_set] = ACTIONS(3358), + [anon_sym_declare] = ACTIONS(3358), + [anon_sym_public] = ACTIONS(3358), + [anon_sym_private] = ACTIONS(3358), + [anon_sym_protected] = ACTIONS(3358), + [anon_sym_override] = ACTIONS(3358), + [anon_sym_module] = ACTIONS(3358), + [anon_sym_any] = ACTIONS(3358), + [anon_sym_number] = ACTIONS(3358), + [anon_sym_boolean] = ACTIONS(3358), + [anon_sym_string] = ACTIONS(3358), + [anon_sym_symbol] = ACTIONS(3358), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_abstract] = ACTIONS(3358), + [anon_sym_interface] = ACTIONS(3358), + [anon_sym_enum] = ACTIONS(3358), [sym_html_comment] = ACTIONS(5), }, [1142] = { [sym_comment] = STATE(1142), - [sym_identifier] = ACTIONS(3328), - [anon_sym_export] = ACTIONS(3328), - [anon_sym_default] = ACTIONS(3328), - [anon_sym_type] = ACTIONS(3328), - [anon_sym_namespace] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [anon_sym_RBRACE] = ACTIONS(3328), - [anon_sym_typeof] = ACTIONS(3328), - [anon_sym_import] = ACTIONS(3328), - [anon_sym_with] = ACTIONS(3328), - [anon_sym_var] = ACTIONS(3328), - [anon_sym_let] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_else] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_switch] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3328), - [anon_sym_await] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_try] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_debugger] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_throw] = ACTIONS(3328), - [anon_sym_SEMI] = ACTIONS(3328), - [anon_sym_case] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_LTtemplate_GT] = ACTIONS(3328), - [anon_sym_DQUOTE] = ACTIONS(3328), - [anon_sym_SQUOTE] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3328), - [anon_sym_using] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_void] = ACTIONS(3328), - [anon_sym_delete] = ACTIONS(3328), - [anon_sym_PLUS_PLUS] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3328), - [sym_number] = ACTIONS(3328), - [sym_private_property_identifier] = ACTIONS(3328), - [sym_this] = ACTIONS(3328), - [sym_super] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_null] = ACTIONS(3328), - [sym_undefined] = ACTIONS(3328), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_readonly] = ACTIONS(3328), - [anon_sym_get] = ACTIONS(3328), - [anon_sym_set] = ACTIONS(3328), - [anon_sym_declare] = ACTIONS(3328), - [anon_sym_public] = ACTIONS(3328), - [anon_sym_private] = ACTIONS(3328), - [anon_sym_protected] = ACTIONS(3328), - [anon_sym_override] = ACTIONS(3328), - [anon_sym_module] = ACTIONS(3328), - [anon_sym_any] = ACTIONS(3328), - [anon_sym_number] = ACTIONS(3328), - [anon_sym_boolean] = ACTIONS(3328), - [anon_sym_string] = ACTIONS(3328), - [anon_sym_symbol] = ACTIONS(3328), - [anon_sym_object] = ACTIONS(3328), - [anon_sym_abstract] = ACTIONS(3328), - [anon_sym_interface] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), + [sym_identifier] = ACTIONS(3102), + [anon_sym_export] = ACTIONS(3102), + [anon_sym_default] = ACTIONS(3102), + [anon_sym_type] = ACTIONS(3102), + [anon_sym_namespace] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3102), + [anon_sym_import] = ACTIONS(3102), + [anon_sym_with] = ACTIONS(3102), + [anon_sym_var] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_const] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_switch] = ACTIONS(3102), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_await] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_debugger] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_throw] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_case] = ACTIONS(3102), + [anon_sym_finally] = ACTIONS(3102), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_LTtemplate_GT] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_SQUOTE] = ACTIONS(3102), + [anon_sym_class] = ACTIONS(3102), + [anon_sym_async] = ACTIONS(3102), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_using] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_SLASH] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3102), + [anon_sym_void] = ACTIONS(3102), + [anon_sym_delete] = ACTIONS(3102), + [anon_sym_PLUS_PLUS] = ACTIONS(3102), + [anon_sym_DASH_DASH] = ACTIONS(3102), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3102), + [sym_number] = ACTIONS(3102), + [sym_private_property_identifier] = ACTIONS(3102), + [sym_this] = ACTIONS(3102), + [sym_super] = ACTIONS(3102), + [sym_true] = ACTIONS(3102), + [sym_false] = ACTIONS(3102), + [sym_null] = ACTIONS(3102), + [sym_undefined] = ACTIONS(3102), + [anon_sym_AT] = ACTIONS(3102), + [anon_sym_static] = ACTIONS(3102), + [anon_sym_readonly] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3102), + [anon_sym_set] = ACTIONS(3102), + [anon_sym_declare] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_module] = ACTIONS(3102), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3102), + [anon_sym_interface] = ACTIONS(3102), + [anon_sym_enum] = ACTIONS(3102), [sym_html_comment] = ACTIONS(5), }, [1143] = { [sym_comment] = STATE(1143), - [sym_identifier] = ACTIONS(3330), - [anon_sym_export] = ACTIONS(3330), - [anon_sym_default] = ACTIONS(3330), - [anon_sym_type] = ACTIONS(3330), - [anon_sym_namespace] = ACTIONS(3330), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_typeof] = ACTIONS(3330), - [anon_sym_import] = ACTIONS(3330), - [anon_sym_with] = ACTIONS(3330), - [anon_sym_var] = ACTIONS(3330), - [anon_sym_let] = ACTIONS(3330), - [anon_sym_const] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3330), - [anon_sym_if] = ACTIONS(3330), - [anon_sym_switch] = ACTIONS(3330), - [anon_sym_for] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_await] = ACTIONS(3330), - [anon_sym_while] = ACTIONS(3330), - [anon_sym_do] = ACTIONS(3330), - [anon_sym_try] = ACTIONS(3330), - [anon_sym_break] = ACTIONS(3330), - [anon_sym_continue] = ACTIONS(3330), - [anon_sym_debugger] = ACTIONS(3330), - [anon_sym_return] = ACTIONS(3330), - [anon_sym_throw] = ACTIONS(3330), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym_case] = ACTIONS(3330), - [anon_sym_yield] = ACTIONS(3330), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_LTtemplate_GT] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_class] = ACTIONS(3330), - [anon_sym_async] = ACTIONS(3330), - [anon_sym_function] = ACTIONS(3330), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_using] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_void] = ACTIONS(3330), - [anon_sym_delete] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3330), - [sym_number] = ACTIONS(3330), - [sym_private_property_identifier] = ACTIONS(3330), - [sym_this] = ACTIONS(3330), - [sym_super] = ACTIONS(3330), - [sym_true] = ACTIONS(3330), - [sym_false] = ACTIONS(3330), - [sym_null] = ACTIONS(3330), - [sym_undefined] = ACTIONS(3330), - [anon_sym_AT] = ACTIONS(3330), - [anon_sym_static] = ACTIONS(3330), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3330), - [anon_sym_set] = ACTIONS(3330), - [anon_sym_declare] = ACTIONS(3330), - [anon_sym_public] = ACTIONS(3330), - [anon_sym_private] = ACTIONS(3330), - [anon_sym_protected] = ACTIONS(3330), - [anon_sym_override] = ACTIONS(3330), - [anon_sym_module] = ACTIONS(3330), - [anon_sym_any] = ACTIONS(3330), - [anon_sym_number] = ACTIONS(3330), - [anon_sym_boolean] = ACTIONS(3330), - [anon_sym_string] = ACTIONS(3330), - [anon_sym_symbol] = ACTIONS(3330), - [anon_sym_object] = ACTIONS(3330), - [anon_sym_abstract] = ACTIONS(3330), - [anon_sym_interface] = ACTIONS(3330), - [anon_sym_enum] = ACTIONS(3330), + [sym_identifier] = ACTIONS(3074), + [anon_sym_export] = ACTIONS(3074), + [anon_sym_default] = ACTIONS(3074), + [anon_sym_type] = ACTIONS(3074), + [anon_sym_namespace] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3074), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_typeof] = ACTIONS(3074), + [anon_sym_import] = ACTIONS(3074), + [anon_sym_with] = ACTIONS(3074), + [anon_sym_var] = ACTIONS(3074), + [anon_sym_let] = ACTIONS(3074), + [anon_sym_const] = ACTIONS(3074), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_switch] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3074), + [anon_sym_await] = ACTIONS(3074), + [anon_sym_while] = ACTIONS(3074), + [anon_sym_do] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_debugger] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_throw] = ACTIONS(3074), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_case] = ACTIONS(3074), + [anon_sym_yield] = ACTIONS(3074), + [anon_sym_LBRACK] = ACTIONS(3074), + [anon_sym_LTtemplate_GT] = ACTIONS(3074), + [anon_sym_DQUOTE] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3074), + [anon_sym_class] = ACTIONS(3074), + [anon_sym_async] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3074), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_using] = ACTIONS(3074), + [anon_sym_PLUS] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3074), + [anon_sym_SLASH] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_TILDE] = ACTIONS(3074), + [anon_sym_void] = ACTIONS(3074), + [anon_sym_delete] = ACTIONS(3074), + [anon_sym_PLUS_PLUS] = ACTIONS(3074), + [anon_sym_DASH_DASH] = ACTIONS(3074), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3074), + [sym_number] = ACTIONS(3074), + [sym_private_property_identifier] = ACTIONS(3074), + [sym_this] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_AT] = ACTIONS(3074), + [anon_sym_static] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3074), + [anon_sym_get] = ACTIONS(3074), + [anon_sym_set] = ACTIONS(3074), + [anon_sym_declare] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_module] = ACTIONS(3074), + [anon_sym_any] = ACTIONS(3074), + [anon_sym_number] = ACTIONS(3074), + [anon_sym_boolean] = ACTIONS(3074), + [anon_sym_string] = ACTIONS(3074), + [anon_sym_symbol] = ACTIONS(3074), + [anon_sym_object] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_interface] = ACTIONS(3074), + [anon_sym_enum] = ACTIONS(3074), + [sym__automatic_semicolon] = ACTIONS(3362), [sym_html_comment] = ACTIONS(5), }, [1144] = { [sym_comment] = STATE(1144), - [sym_identifier] = ACTIONS(3332), - [anon_sym_export] = ACTIONS(3332), - [anon_sym_default] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_RBRACE] = ACTIONS(3332), - [anon_sym_typeof] = ACTIONS(3332), - [anon_sym_import] = ACTIONS(3332), - [anon_sym_with] = ACTIONS(3332), - [anon_sym_var] = ACTIONS(3332), - [anon_sym_let] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_else] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_await] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_debugger] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_case] = ACTIONS(3332), - [anon_sym_yield] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_LTtemplate_GT] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_async] = ACTIONS(3332), - [anon_sym_function] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_void] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3332), + [sym_identifier] = ACTIONS(3364), + [anon_sym_export] = ACTIONS(3364), + [anon_sym_default] = ACTIONS(3364), + [anon_sym_type] = ACTIONS(3364), + [anon_sym_namespace] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_typeof] = ACTIONS(3364), + [anon_sym_import] = ACTIONS(3364), + [anon_sym_with] = ACTIONS(3364), + [anon_sym_var] = ACTIONS(3364), + [anon_sym_let] = ACTIONS(3364), + [anon_sym_const] = ACTIONS(3364), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_else] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_switch] = ACTIONS(3364), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(3364), + [anon_sym_await] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_do] = ACTIONS(3364), + [anon_sym_try] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_debugger] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_throw] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_case] = ACTIONS(3364), + [anon_sym_yield] = ACTIONS(3364), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_LTtemplate_GT] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3364), + [anon_sym_async] = ACTIONS(3364), + [anon_sym_function] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3364), + [anon_sym_using] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_void] = ACTIONS(3364), + [anon_sym_delete] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3364), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3332), - [sym_number] = ACTIONS(3332), - [sym_private_property_identifier] = ACTIONS(3332), - [sym_this] = ACTIONS(3332), - [sym_super] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_null] = ACTIONS(3332), - [sym_undefined] = ACTIONS(3332), - [anon_sym_AT] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3332), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3332), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_protected] = ACTIONS(3332), - [anon_sym_override] = ACTIONS(3332), - [anon_sym_module] = ACTIONS(3332), - [anon_sym_any] = ACTIONS(3332), - [anon_sym_number] = ACTIONS(3332), - [anon_sym_boolean] = ACTIONS(3332), - [anon_sym_string] = ACTIONS(3332), - [anon_sym_symbol] = ACTIONS(3332), - [anon_sym_object] = ACTIONS(3332), - [anon_sym_abstract] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), + [anon_sym_BQUOTE] = ACTIONS(3364), + [sym_number] = ACTIONS(3364), + [sym_private_property_identifier] = ACTIONS(3364), + [sym_this] = ACTIONS(3364), + [sym_super] = ACTIONS(3364), + [sym_true] = ACTIONS(3364), + [sym_false] = ACTIONS(3364), + [sym_null] = ACTIONS(3364), + [sym_undefined] = ACTIONS(3364), + [anon_sym_AT] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_readonly] = ACTIONS(3364), + [anon_sym_get] = ACTIONS(3364), + [anon_sym_set] = ACTIONS(3364), + [anon_sym_declare] = ACTIONS(3364), + [anon_sym_public] = ACTIONS(3364), + [anon_sym_private] = ACTIONS(3364), + [anon_sym_protected] = ACTIONS(3364), + [anon_sym_override] = ACTIONS(3364), + [anon_sym_module] = ACTIONS(3364), + [anon_sym_any] = ACTIONS(3364), + [anon_sym_number] = ACTIONS(3364), + [anon_sym_boolean] = ACTIONS(3364), + [anon_sym_string] = ACTIONS(3364), + [anon_sym_symbol] = ACTIONS(3364), + [anon_sym_object] = ACTIONS(3364), + [anon_sym_abstract] = ACTIONS(3364), + [anon_sym_interface] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), [sym_html_comment] = ACTIONS(5), }, [1145] = { + [sym_finally_clause] = STATE(1526), [sym_comment] = STATE(1145), - [sym_identifier] = ACTIONS(3330), - [anon_sym_export] = ACTIONS(3330), - [anon_sym_default] = ACTIONS(3330), - [anon_sym_type] = ACTIONS(3330), - [anon_sym_namespace] = ACTIONS(3330), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_typeof] = ACTIONS(3330), - [anon_sym_import] = ACTIONS(3330), - [anon_sym_with] = ACTIONS(3330), - [anon_sym_var] = ACTIONS(3330), - [anon_sym_let] = ACTIONS(3330), - [anon_sym_const] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3330), - [anon_sym_if] = ACTIONS(3330), - [anon_sym_switch] = ACTIONS(3330), - [anon_sym_for] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_await] = ACTIONS(3330), - [anon_sym_while] = ACTIONS(3330), - [anon_sym_do] = ACTIONS(3330), - [anon_sym_try] = ACTIONS(3330), - [anon_sym_break] = ACTIONS(3330), - [anon_sym_continue] = ACTIONS(3330), - [anon_sym_debugger] = ACTIONS(3330), - [anon_sym_return] = ACTIONS(3330), - [anon_sym_throw] = ACTIONS(3330), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym_case] = ACTIONS(3330), - [anon_sym_yield] = ACTIONS(3330), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_LTtemplate_GT] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_class] = ACTIONS(3330), - [anon_sym_async] = ACTIONS(3330), - [anon_sym_function] = ACTIONS(3330), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_using] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_void] = ACTIONS(3330), - [anon_sym_delete] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3330), - [sym_number] = ACTIONS(3330), - [sym_private_property_identifier] = ACTIONS(3330), - [sym_this] = ACTIONS(3330), - [sym_super] = ACTIONS(3330), - [sym_true] = ACTIONS(3330), - [sym_false] = ACTIONS(3330), - [sym_null] = ACTIONS(3330), - [sym_undefined] = ACTIONS(3330), - [anon_sym_AT] = ACTIONS(3330), - [anon_sym_static] = ACTIONS(3330), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3330), - [anon_sym_set] = ACTIONS(3330), - [anon_sym_declare] = ACTIONS(3330), - [anon_sym_public] = ACTIONS(3330), - [anon_sym_private] = ACTIONS(3330), - [anon_sym_protected] = ACTIONS(3330), - [anon_sym_override] = ACTIONS(3330), - [anon_sym_module] = ACTIONS(3330), - [anon_sym_any] = ACTIONS(3330), - [anon_sym_number] = ACTIONS(3330), - [anon_sym_boolean] = ACTIONS(3330), - [anon_sym_string] = ACTIONS(3330), - [anon_sym_symbol] = ACTIONS(3330), - [anon_sym_object] = ACTIONS(3330), - [anon_sym_abstract] = ACTIONS(3330), - [anon_sym_interface] = ACTIONS(3330), - [anon_sym_enum] = ACTIONS(3330), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3052), + [anon_sym_export] = ACTIONS(3052), + [anon_sym_type] = ACTIONS(3052), + [anon_sym_namespace] = ACTIONS(3052), + [anon_sym_LBRACE] = ACTIONS(3052), + [anon_sym_RBRACE] = ACTIONS(3052), + [anon_sym_typeof] = ACTIONS(3052), + [anon_sym_import] = ACTIONS(3052), + [anon_sym_with] = ACTIONS(3052), + [anon_sym_var] = ACTIONS(3052), + [anon_sym_let] = ACTIONS(3052), + [anon_sym_const] = ACTIONS(3052), + [anon_sym_BANG] = ACTIONS(3052), + [anon_sym_if] = ACTIONS(3052), + [anon_sym_switch] = ACTIONS(3052), + [anon_sym_for] = ACTIONS(3052), + [anon_sym_LPAREN] = ACTIONS(3052), + [anon_sym_await] = ACTIONS(3052), + [anon_sym_while] = ACTIONS(3052), + [anon_sym_do] = ACTIONS(3052), + [anon_sym_try] = ACTIONS(3052), + [anon_sym_break] = ACTIONS(3052), + [anon_sym_continue] = ACTIONS(3052), + [anon_sym_debugger] = ACTIONS(3052), + [anon_sym_return] = ACTIONS(3052), + [anon_sym_throw] = ACTIONS(3052), + [anon_sym_SEMI] = ACTIONS(3052), + [anon_sym_finally] = ACTIONS(3050), + [anon_sym_yield] = ACTIONS(3052), + [anon_sym_LBRACK] = ACTIONS(3052), + [anon_sym_LTtemplate_GT] = ACTIONS(3052), + [anon_sym_DQUOTE] = ACTIONS(3052), + [anon_sym_SQUOTE] = ACTIONS(3052), + [anon_sym_class] = ACTIONS(3052), + [anon_sym_async] = ACTIONS(3052), + [anon_sym_function] = ACTIONS(3052), + [anon_sym_new] = ACTIONS(3052), + [anon_sym_using] = ACTIONS(3052), + [anon_sym_PLUS] = ACTIONS(3052), + [anon_sym_DASH] = ACTIONS(3052), + [anon_sym_SLASH] = ACTIONS(3052), + [anon_sym_LT] = ACTIONS(3052), + [anon_sym_TILDE] = ACTIONS(3052), + [anon_sym_void] = ACTIONS(3052), + [anon_sym_delete] = ACTIONS(3052), + [anon_sym_PLUS_PLUS] = ACTIONS(3052), + [anon_sym_DASH_DASH] = ACTIONS(3052), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3052), + [sym_number] = ACTIONS(3052), + [sym_private_property_identifier] = ACTIONS(3052), + [sym_this] = ACTIONS(3052), + [sym_super] = ACTIONS(3052), + [sym_true] = ACTIONS(3052), + [sym_false] = ACTIONS(3052), + [sym_null] = ACTIONS(3052), + [sym_undefined] = ACTIONS(3052), + [anon_sym_AT] = ACTIONS(3052), + [anon_sym_static] = ACTIONS(3052), + [anon_sym_readonly] = ACTIONS(3052), + [anon_sym_get] = ACTIONS(3052), + [anon_sym_set] = ACTIONS(3052), + [anon_sym_declare] = ACTIONS(3052), + [anon_sym_public] = ACTIONS(3052), + [anon_sym_private] = ACTIONS(3052), + [anon_sym_protected] = ACTIONS(3052), + [anon_sym_override] = ACTIONS(3052), + [anon_sym_module] = ACTIONS(3052), + [anon_sym_any] = ACTIONS(3052), + [anon_sym_number] = ACTIONS(3052), + [anon_sym_boolean] = ACTIONS(3052), + [anon_sym_string] = ACTIONS(3052), + [anon_sym_symbol] = ACTIONS(3052), + [anon_sym_object] = ACTIONS(3052), + [anon_sym_abstract] = ACTIONS(3052), + [anon_sym_interface] = ACTIONS(3052), + [anon_sym_enum] = ACTIONS(3052), [sym_html_comment] = ACTIONS(5), }, [1146] = { [sym_comment] = STATE(1146), - [ts_builtin_sym_end] = ACTIONS(2341), - [sym_identifier] = ACTIONS(2085), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_typeof] = ACTIONS(2085), - [anon_sym_import] = ACTIONS(2085), - [anon_sym_with] = ACTIONS(2085), - [anon_sym_var] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_else] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_debugger] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LTtemplate_GT] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_void] = ACTIONS(2085), - [anon_sym_delete] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2085), - [sym_number] = ACTIONS(2085), - [sym_private_property_identifier] = ACTIONS(2085), - [sym_this] = ACTIONS(2085), - [sym_super] = ACTIONS(2085), - [sym_true] = ACTIONS(2085), - [sym_false] = ACTIONS(2085), - [sym_null] = ACTIONS(2085), - [sym_undefined] = ACTIONS(2085), - [anon_sym_AT] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_readonly] = ACTIONS(2085), - [anon_sym_get] = ACTIONS(2085), - [anon_sym_set] = ACTIONS(2085), - [anon_sym_declare] = ACTIONS(2085), - [anon_sym_public] = ACTIONS(2085), - [anon_sym_private] = ACTIONS(2085), - [anon_sym_protected] = ACTIONS(2085), - [anon_sym_override] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_any] = ACTIONS(2085), - [anon_sym_number] = ACTIONS(2085), - [anon_sym_boolean] = ACTIONS(2085), - [anon_sym_string] = ACTIONS(2085), - [anon_sym_symbol] = ACTIONS(2085), - [anon_sym_object] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [sym__automatic_semicolon] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2233), + [anon_sym_export] = ACTIONS(2233), + [anon_sym_default] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_namespace] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_typeof] = ACTIONS(2233), + [anon_sym_import] = ACTIONS(2233), + [anon_sym_with] = ACTIONS(2233), + [anon_sym_var] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_switch] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2233), + [anon_sym_await] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_do] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_debugger] = ACTIONS(2233), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_throw] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_case] = ACTIONS(2233), + [anon_sym_yield] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LTtemplate_GT] = ACTIONS(2233), + [anon_sym_DOT] = ACTIONS(2233), + [anon_sym_DQUOTE] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_class] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_function] = ACTIONS(2233), + [anon_sym_new] = ACTIONS(2233), + [anon_sym_using] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_SLASH] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_TILDE] = ACTIONS(2233), + [anon_sym_void] = ACTIONS(2233), + [anon_sym_delete] = ACTIONS(2233), + [anon_sym_PLUS_PLUS] = ACTIONS(2233), + [anon_sym_DASH_DASH] = ACTIONS(2233), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2233), + [sym_number] = ACTIONS(2233), + [sym_private_property_identifier] = ACTIONS(2233), + [sym_this] = ACTIONS(2233), + [sym_super] = ACTIONS(2233), + [sym_true] = ACTIONS(2233), + [sym_false] = ACTIONS(2233), + [sym_null] = ACTIONS(2233), + [sym_undefined] = ACTIONS(2233), + [anon_sym_AT] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_readonly] = ACTIONS(2233), + [anon_sym_get] = ACTIONS(2233), + [anon_sym_set] = ACTIONS(2233), + [anon_sym_declare] = ACTIONS(2233), + [anon_sym_public] = ACTIONS(2233), + [anon_sym_private] = ACTIONS(2233), + [anon_sym_protected] = ACTIONS(2233), + [anon_sym_override] = ACTIONS(2233), + [anon_sym_module] = ACTIONS(2233), + [anon_sym_any] = ACTIONS(2233), + [anon_sym_number] = ACTIONS(2233), + [anon_sym_boolean] = ACTIONS(2233), + [anon_sym_string] = ACTIONS(2233), + [anon_sym_symbol] = ACTIONS(2233), + [anon_sym_object] = ACTIONS(2233), + [anon_sym_abstract] = ACTIONS(2233), + [anon_sym_interface] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), [sym_html_comment] = ACTIONS(5), }, [1147] = { [sym_comment] = STATE(1147), - [sym_identifier] = ACTIONS(3334), - [anon_sym_export] = ACTIONS(3334), - [anon_sym_default] = ACTIONS(3334), - [anon_sym_type] = ACTIONS(3334), - [anon_sym_namespace] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3334), - [anon_sym_typeof] = ACTIONS(3334), - [anon_sym_import] = ACTIONS(3334), - [anon_sym_with] = ACTIONS(3334), - [anon_sym_var] = ACTIONS(3334), - [anon_sym_let] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_else] = ACTIONS(3334), - [anon_sym_if] = ACTIONS(3334), - [anon_sym_switch] = ACTIONS(3334), - [anon_sym_for] = ACTIONS(3334), - [anon_sym_LPAREN] = ACTIONS(3334), - [anon_sym_await] = ACTIONS(3334), - [anon_sym_while] = ACTIONS(3334), - [anon_sym_do] = ACTIONS(3334), - [anon_sym_try] = ACTIONS(3334), - [anon_sym_break] = ACTIONS(3334), - [anon_sym_continue] = ACTIONS(3334), - [anon_sym_debugger] = ACTIONS(3334), - [anon_sym_return] = ACTIONS(3334), - [anon_sym_throw] = ACTIONS(3334), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym_case] = ACTIONS(3334), - [anon_sym_yield] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_LTtemplate_GT] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_class] = ACTIONS(3334), - [anon_sym_async] = ACTIONS(3334), - [anon_sym_function] = ACTIONS(3334), - [anon_sym_new] = ACTIONS(3334), - [anon_sym_using] = ACTIONS(3334), - [anon_sym_PLUS] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3334), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_void] = ACTIONS(3334), - [anon_sym_delete] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3334), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3334), - [sym_number] = ACTIONS(3334), - [sym_private_property_identifier] = ACTIONS(3334), - [sym_this] = ACTIONS(3334), - [sym_super] = ACTIONS(3334), - [sym_true] = ACTIONS(3334), - [sym_false] = ACTIONS(3334), - [sym_null] = ACTIONS(3334), - [sym_undefined] = ACTIONS(3334), - [anon_sym_AT] = ACTIONS(3334), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3334), - [anon_sym_set] = ACTIONS(3334), - [anon_sym_declare] = ACTIONS(3334), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3334), - [anon_sym_module] = ACTIONS(3334), - [anon_sym_any] = ACTIONS(3334), - [anon_sym_number] = ACTIONS(3334), - [anon_sym_boolean] = ACTIONS(3334), - [anon_sym_string] = ACTIONS(3334), - [anon_sym_symbol] = ACTIONS(3334), - [anon_sym_object] = ACTIONS(3334), - [anon_sym_abstract] = ACTIONS(3334), - [anon_sym_interface] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_default] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_case] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), + [anon_sym_abstract] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), [sym_html_comment] = ACTIONS(5), }, [1148] = { [sym_comment] = STATE(1148), - [sym_identifier] = ACTIONS(2181), - [anon_sym_export] = ACTIONS(2181), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_namespace] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_typeof] = ACTIONS(2181), - [anon_sym_import] = ACTIONS(2181), - [anon_sym_with] = ACTIONS(2181), - [anon_sym_var] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_switch] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_do] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_debugger] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_throw] = ACTIONS(2181), - [anon_sym_SEMI] = ACTIONS(2181), - [anon_sym_case] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_LTtemplate_GT] = ACTIONS(2181), - [anon_sym_DQUOTE] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_class] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_function] = ACTIONS(2181), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_using] = ACTIONS(2181), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_SLASH] = ACTIONS(2181), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_TILDE] = ACTIONS(2181), - [anon_sym_void] = ACTIONS(2181), - [anon_sym_delete] = ACTIONS(2181), - [anon_sym_PLUS_PLUS] = ACTIONS(2181), - [anon_sym_DASH_DASH] = ACTIONS(2181), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2181), - [sym_number] = ACTIONS(2181), - [sym_private_property_identifier] = ACTIONS(2181), - [sym_this] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_true] = ACTIONS(2181), - [sym_false] = ACTIONS(2181), - [sym_null] = ACTIONS(2181), - [sym_undefined] = ACTIONS(2181), - [anon_sym_AT] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_readonly] = ACTIONS(2181), - [anon_sym_get] = ACTIONS(2181), - [anon_sym_set] = ACTIONS(2181), - [anon_sym_declare] = ACTIONS(2181), - [anon_sym_public] = ACTIONS(2181), - [anon_sym_private] = ACTIONS(2181), - [anon_sym_protected] = ACTIONS(2181), - [anon_sym_override] = ACTIONS(2181), - [anon_sym_module] = ACTIONS(2181), - [anon_sym_any] = ACTIONS(2181), - [anon_sym_number] = ACTIONS(2181), - [anon_sym_boolean] = ACTIONS(2181), - [anon_sym_string] = ACTIONS(2181), - [anon_sym_symbol] = ACTIONS(2181), - [anon_sym_object] = ACTIONS(2181), - [anon_sym_abstract] = ACTIONS(2181), - [anon_sym_interface] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [sym__automatic_semicolon] = ACTIONS(2351), + [sym_identifier] = ACTIONS(3366), + [anon_sym_export] = ACTIONS(3366), + [anon_sym_default] = ACTIONS(3366), + [anon_sym_type] = ACTIONS(3366), + [anon_sym_namespace] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_typeof] = ACTIONS(3366), + [anon_sym_import] = ACTIONS(3366), + [anon_sym_with] = ACTIONS(3366), + [anon_sym_var] = ACTIONS(3366), + [anon_sym_let] = ACTIONS(3366), + [anon_sym_const] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_switch] = ACTIONS(3366), + [anon_sym_for] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3366), + [anon_sym_await] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_do] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_debugger] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3366), + [anon_sym_case] = ACTIONS(3366), + [anon_sym_yield] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3366), + [anon_sym_LTtemplate_GT] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3366), + [anon_sym_class] = ACTIONS(3366), + [anon_sym_async] = ACTIONS(3366), + [anon_sym_function] = ACTIONS(3366), + [anon_sym_new] = ACTIONS(3366), + [anon_sym_using] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_void] = ACTIONS(3366), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_DASH_DASH] = ACTIONS(3366), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3366), + [sym_number] = ACTIONS(3366), + [sym_private_property_identifier] = ACTIONS(3366), + [sym_this] = ACTIONS(3366), + [sym_super] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_null] = ACTIONS(3366), + [sym_undefined] = ACTIONS(3366), + [anon_sym_AT] = ACTIONS(3366), + [anon_sym_static] = ACTIONS(3366), + [anon_sym_readonly] = ACTIONS(3366), + [anon_sym_get] = ACTIONS(3366), + [anon_sym_set] = ACTIONS(3366), + [anon_sym_declare] = ACTIONS(3366), + [anon_sym_public] = ACTIONS(3366), + [anon_sym_private] = ACTIONS(3366), + [anon_sym_protected] = ACTIONS(3366), + [anon_sym_override] = ACTIONS(3366), + [anon_sym_module] = ACTIONS(3366), + [anon_sym_any] = ACTIONS(3366), + [anon_sym_number] = ACTIONS(3366), + [anon_sym_boolean] = ACTIONS(3366), + [anon_sym_string] = ACTIONS(3366), + [anon_sym_symbol] = ACTIONS(3366), + [anon_sym_object] = ACTIONS(3366), + [anon_sym_abstract] = ACTIONS(3366), + [anon_sym_interface] = ACTIONS(3366), + [anon_sym_enum] = ACTIONS(3366), [sym_html_comment] = ACTIONS(5), }, [1149] = { [sym_comment] = STATE(1149), - [sym_identifier] = ACTIONS(2173), - [anon_sym_export] = ACTIONS(2173), - [anon_sym_default] = ACTIONS(2173), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_namespace] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_typeof] = ACTIONS(2173), - [anon_sym_import] = ACTIONS(2173), - [anon_sym_with] = ACTIONS(2173), - [anon_sym_var] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_switch] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_debugger] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_throw] = ACTIONS(2173), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_case] = ACTIONS(2173), - [anon_sym_yield] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_LTtemplate_GT] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_class] = ACTIONS(2173), - [anon_sym_async] = ACTIONS(2173), - [anon_sym_function] = ACTIONS(2173), - [anon_sym_new] = ACTIONS(2173), - [anon_sym_using] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_SLASH] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2173), - [anon_sym_TILDE] = ACTIONS(2173), - [anon_sym_void] = ACTIONS(2173), - [anon_sym_delete] = ACTIONS(2173), - [anon_sym_PLUS_PLUS] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2173), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2173), - [sym_number] = ACTIONS(2173), - [sym_private_property_identifier] = ACTIONS(2173), - [sym_this] = ACTIONS(2173), - [sym_super] = ACTIONS(2173), - [sym_true] = ACTIONS(2173), - [sym_false] = ACTIONS(2173), - [sym_null] = ACTIONS(2173), - [sym_undefined] = ACTIONS(2173), - [anon_sym_AT] = ACTIONS(2173), - [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_abstract] = ACTIONS(2173), - [anon_sym_interface] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [sym__automatic_semicolon] = ACTIONS(2339), + [sym_identifier] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_typeof] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2125), + [anon_sym_with] = ACTIONS(2125), + [anon_sym_var] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_debugger] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_case] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LTtemplate_GT] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_void] = ACTIONS(2125), + [anon_sym_delete] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2125), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(2125), + [sym_this] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [sym_undefined] = ACTIONS(2125), + [anon_sym_AT] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_readonly] = ACTIONS(2125), + [anon_sym_get] = ACTIONS(2125), + [anon_sym_set] = ACTIONS(2125), + [anon_sym_declare] = ACTIONS(2125), + [anon_sym_public] = ACTIONS(2125), + [anon_sym_private] = ACTIONS(2125), + [anon_sym_protected] = ACTIONS(2125), + [anon_sym_override] = ACTIONS(2125), + [anon_sym_module] = ACTIONS(2125), + [anon_sym_any] = ACTIONS(2125), + [anon_sym_number] = ACTIONS(2125), + [anon_sym_boolean] = ACTIONS(2125), + [anon_sym_string] = ACTIONS(2125), + [anon_sym_symbol] = ACTIONS(2125), + [anon_sym_object] = ACTIONS(2125), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [sym__automatic_semicolon] = ACTIONS(2127), [sym_html_comment] = ACTIONS(5), }, [1150] = { [sym_comment] = STATE(1150), - [ts_builtin_sym_end] = ACTIONS(2275), - [sym_identifier] = ACTIONS(2135), - [anon_sym_export] = ACTIONS(2135), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_namespace] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_typeof] = ACTIONS(2135), - [anon_sym_import] = ACTIONS(2135), - [anon_sym_with] = ACTIONS(2135), - [anon_sym_var] = ACTIONS(2135), - [anon_sym_let] = ACTIONS(2135), - [anon_sym_const] = ACTIONS(2135), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_else] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_switch] = ACTIONS(2135), - [anon_sym_for] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2135), - [anon_sym_while] = ACTIONS(2135), - [anon_sym_do] = ACTIONS(2135), - [anon_sym_try] = ACTIONS(2135), - [anon_sym_break] = ACTIONS(2135), - [anon_sym_continue] = ACTIONS(2135), - [anon_sym_debugger] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2135), - [anon_sym_throw] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_yield] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_LTtemplate_GT] = ACTIONS(2135), - [anon_sym_DQUOTE] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_class] = ACTIONS(2135), - [anon_sym_async] = ACTIONS(2135), - [anon_sym_function] = ACTIONS(2135), - [anon_sym_new] = ACTIONS(2135), - [anon_sym_using] = ACTIONS(2135), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_SLASH] = ACTIONS(2135), - [anon_sym_LT] = ACTIONS(2135), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_void] = ACTIONS(2135), - [anon_sym_delete] = ACTIONS(2135), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2135), - [sym_number] = ACTIONS(2135), - [sym_private_property_identifier] = ACTIONS(2135), - [sym_this] = ACTIONS(2135), - [sym_super] = ACTIONS(2135), - [sym_true] = ACTIONS(2135), - [sym_false] = ACTIONS(2135), - [sym_null] = ACTIONS(2135), - [sym_undefined] = ACTIONS(2135), - [anon_sym_AT] = ACTIONS(2135), - [anon_sym_static] = ACTIONS(2135), - [anon_sym_readonly] = ACTIONS(2135), - [anon_sym_get] = ACTIONS(2135), - [anon_sym_set] = ACTIONS(2135), - [anon_sym_declare] = ACTIONS(2135), - [anon_sym_public] = ACTIONS(2135), - [anon_sym_private] = ACTIONS(2135), - [anon_sym_protected] = ACTIONS(2135), - [anon_sym_override] = ACTIONS(2135), - [anon_sym_module] = ACTIONS(2135), - [anon_sym_any] = ACTIONS(2135), - [anon_sym_number] = ACTIONS(2135), - [anon_sym_boolean] = ACTIONS(2135), - [anon_sym_string] = ACTIONS(2135), - [anon_sym_symbol] = ACTIONS(2135), - [anon_sym_object] = ACTIONS(2135), - [anon_sym_abstract] = ACTIONS(2135), - [anon_sym_interface] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(2135), - [sym__automatic_semicolon] = ACTIONS(2277), + [sym_identifier] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(3368), + [anon_sym_default] = ACTIONS(3368), + [anon_sym_type] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_typeof] = ACTIONS(3368), + [anon_sym_import] = ACTIONS(3368), + [anon_sym_with] = ACTIONS(3368), + [anon_sym_var] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_await] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_debugger] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_case] = ACTIONS(3368), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LTtemplate_GT] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3368), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_async] = ACTIONS(3368), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_void] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3368), + [sym_number] = ACTIONS(3368), + [sym_private_property_identifier] = ACTIONS(3368), + [sym_this] = ACTIONS(3368), + [sym_super] = ACTIONS(3368), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [sym_null] = ACTIONS(3368), + [sym_undefined] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_readonly] = ACTIONS(3368), + [anon_sym_get] = ACTIONS(3368), + [anon_sym_set] = ACTIONS(3368), + [anon_sym_declare] = ACTIONS(3368), + [anon_sym_public] = ACTIONS(3368), + [anon_sym_private] = ACTIONS(3368), + [anon_sym_protected] = ACTIONS(3368), + [anon_sym_override] = ACTIONS(3368), + [anon_sym_module] = ACTIONS(3368), + [anon_sym_any] = ACTIONS(3368), + [anon_sym_number] = ACTIONS(3368), + [anon_sym_boolean] = ACTIONS(3368), + [anon_sym_string] = ACTIONS(3368), + [anon_sym_symbol] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_abstract] = ACTIONS(3368), + [anon_sym_interface] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), [sym_html_comment] = ACTIONS(5), }, [1151] = { [sym_comment] = STATE(1151), - [ts_builtin_sym_end] = ACTIONS(2279), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_typeof] = ACTIONS(2149), - [anon_sym_import] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(2149), - [anon_sym_var] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_else] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_debugger] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LTtemplate_GT] = ACTIONS(2149), - [anon_sym_DQUOTE] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_void] = ACTIONS(2149), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2149), - [sym_number] = ACTIONS(2149), - [sym_private_property_identifier] = ACTIONS(2149), - [sym_this] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_null] = ACTIONS(2149), - [sym_undefined] = ACTIONS(2149), - [anon_sym_AT] = ACTIONS(2149), - [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_abstract] = ACTIONS(2149), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [sym__automatic_semicolon] = ACTIONS(2281), + [sym_identifier] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(3368), + [anon_sym_default] = ACTIONS(3368), + [anon_sym_type] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_typeof] = ACTIONS(3368), + [anon_sym_import] = ACTIONS(3368), + [anon_sym_with] = ACTIONS(3368), + [anon_sym_var] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_await] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_debugger] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_case] = ACTIONS(3368), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LTtemplate_GT] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3368), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_async] = ACTIONS(3368), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_void] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3368), + [sym_number] = ACTIONS(3368), + [sym_private_property_identifier] = ACTIONS(3368), + [sym_this] = ACTIONS(3368), + [sym_super] = ACTIONS(3368), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [sym_null] = ACTIONS(3368), + [sym_undefined] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_readonly] = ACTIONS(3368), + [anon_sym_get] = ACTIONS(3368), + [anon_sym_set] = ACTIONS(3368), + [anon_sym_declare] = ACTIONS(3368), + [anon_sym_public] = ACTIONS(3368), + [anon_sym_private] = ACTIONS(3368), + [anon_sym_protected] = ACTIONS(3368), + [anon_sym_override] = ACTIONS(3368), + [anon_sym_module] = ACTIONS(3368), + [anon_sym_any] = ACTIONS(3368), + [anon_sym_number] = ACTIONS(3368), + [anon_sym_boolean] = ACTIONS(3368), + [anon_sym_string] = ACTIONS(3368), + [anon_sym_symbol] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_abstract] = ACTIONS(3368), + [anon_sym_interface] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), [sym_html_comment] = ACTIONS(5), }, [1152] = { [sym_comment] = STATE(1152), - [sym_identifier] = ACTIONS(2085), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_default] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_typeof] = ACTIONS(2085), - [anon_sym_import] = ACTIONS(2085), - [anon_sym_with] = ACTIONS(2085), - [anon_sym_var] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_debugger] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_case] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LTtemplate_GT] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_void] = ACTIONS(2085), - [anon_sym_delete] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2085), - [sym_number] = ACTIONS(2085), - [sym_private_property_identifier] = ACTIONS(2085), - [sym_this] = ACTIONS(2085), - [sym_super] = ACTIONS(2085), - [sym_true] = ACTIONS(2085), - [sym_false] = ACTIONS(2085), - [sym_null] = ACTIONS(2085), - [sym_undefined] = ACTIONS(2085), - [anon_sym_AT] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_readonly] = ACTIONS(2085), - [anon_sym_get] = ACTIONS(2085), - [anon_sym_set] = ACTIONS(2085), - [anon_sym_declare] = ACTIONS(2085), - [anon_sym_public] = ACTIONS(2085), - [anon_sym_private] = ACTIONS(2085), - [anon_sym_protected] = ACTIONS(2085), - [anon_sym_override] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_any] = ACTIONS(2085), - [anon_sym_number] = ACTIONS(2085), - [anon_sym_boolean] = ACTIONS(2085), - [anon_sym_string] = ACTIONS(2085), - [anon_sym_symbol] = ACTIONS(2085), - [anon_sym_object] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [sym__automatic_semicolon] = ACTIONS(2323), + [sym_identifier] = ACTIONS(2189), + [anon_sym_export] = ACTIONS(2189), + [anon_sym_default] = ACTIONS(2189), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_namespace] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_typeof] = ACTIONS(2189), + [anon_sym_import] = ACTIONS(2189), + [anon_sym_with] = ACTIONS(2189), + [anon_sym_var] = ACTIONS(2189), + [anon_sym_let] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_switch] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_await] = ACTIONS(2189), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_do] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_debugger] = ACTIONS(2189), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2189), + [anon_sym_SEMI] = ACTIONS(2189), + [anon_sym_case] = ACTIONS(2189), + [anon_sym_yield] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_LTtemplate_GT] = ACTIONS(2189), + [anon_sym_DQUOTE] = ACTIONS(2189), + [anon_sym_SQUOTE] = ACTIONS(2189), + [anon_sym_class] = ACTIONS(2189), + [anon_sym_async] = ACTIONS(2189), + [anon_sym_function] = ACTIONS(2189), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_using] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_SLASH] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_TILDE] = ACTIONS(2189), + [anon_sym_void] = ACTIONS(2189), + [anon_sym_delete] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2189), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2189), + [sym_number] = ACTIONS(2189), + [sym_private_property_identifier] = ACTIONS(2189), + [sym_this] = ACTIONS(2189), + [sym_super] = ACTIONS(2189), + [sym_true] = ACTIONS(2189), + [sym_false] = ACTIONS(2189), + [sym_null] = ACTIONS(2189), + [sym_undefined] = ACTIONS(2189), + [anon_sym_AT] = ACTIONS(2189), + [anon_sym_static] = ACTIONS(2189), + [anon_sym_readonly] = ACTIONS(2189), + [anon_sym_get] = ACTIONS(2189), + [anon_sym_set] = ACTIONS(2189), + [anon_sym_declare] = ACTIONS(2189), + [anon_sym_public] = ACTIONS(2189), + [anon_sym_private] = ACTIONS(2189), + [anon_sym_protected] = ACTIONS(2189), + [anon_sym_override] = ACTIONS(2189), + [anon_sym_module] = ACTIONS(2189), + [anon_sym_any] = ACTIONS(2189), + [anon_sym_number] = ACTIONS(2189), + [anon_sym_boolean] = ACTIONS(2189), + [anon_sym_string] = ACTIONS(2189), + [anon_sym_symbol] = ACTIONS(2189), + [anon_sym_object] = ACTIONS(2189), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_interface] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [sym__automatic_semicolon] = ACTIONS(2341), [sym_html_comment] = ACTIONS(5), }, [1153] = { [sym_comment] = STATE(1153), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1154] = { - [sym_comment] = STATE(1154), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1155] = { - [sym_comment] = STATE(1155), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1156] = { - [sym_comment] = STATE(1156), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1157] = { - [sym_comment] = STATE(1157), - [ts_builtin_sym_end] = ACTIONS(2283), - [sym_identifier] = ACTIONS(2229), - [anon_sym_export] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_namespace] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_typeof] = ACTIONS(2229), - [anon_sym_import] = ACTIONS(2229), - [anon_sym_with] = ACTIONS(2229), - [anon_sym_var] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_else] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_switch] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_await] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_debugger] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_throw] = ACTIONS(2229), - [anon_sym_SEMI] = ACTIONS(2229), - [anon_sym_yield] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2229), - [anon_sym_LTtemplate_GT] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2229), - [anon_sym_SQUOTE] = ACTIONS(2229), - [anon_sym_class] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_function] = ACTIONS(2229), - [anon_sym_new] = ACTIONS(2229), - [anon_sym_using] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_SLASH] = ACTIONS(2229), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_TILDE] = ACTIONS(2229), - [anon_sym_void] = ACTIONS(2229), - [anon_sym_delete] = ACTIONS(2229), - [anon_sym_PLUS_PLUS] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2229), - [sym_number] = ACTIONS(2229), - [sym_private_property_identifier] = ACTIONS(2229), - [sym_this] = ACTIONS(2229), - [sym_super] = ACTIONS(2229), - [sym_true] = ACTIONS(2229), - [sym_false] = ACTIONS(2229), - [sym_null] = ACTIONS(2229), - [sym_undefined] = ACTIONS(2229), - [anon_sym_AT] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_readonly] = ACTIONS(2229), - [anon_sym_get] = ACTIONS(2229), - [anon_sym_set] = ACTIONS(2229), - [anon_sym_declare] = ACTIONS(2229), - [anon_sym_public] = ACTIONS(2229), - [anon_sym_private] = ACTIONS(2229), - [anon_sym_protected] = ACTIONS(2229), - [anon_sym_override] = ACTIONS(2229), - [anon_sym_module] = ACTIONS(2229), - [anon_sym_any] = ACTIONS(2229), - [anon_sym_number] = ACTIONS(2229), - [anon_sym_boolean] = ACTIONS(2229), - [anon_sym_string] = ACTIONS(2229), - [anon_sym_symbol] = ACTIONS(2229), - [anon_sym_object] = ACTIONS(2229), - [anon_sym_abstract] = ACTIONS(2229), - [anon_sym_interface] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [sym__automatic_semicolon] = ACTIONS(2285), - [sym_html_comment] = ACTIONS(5), - }, - [1158] = { - [sym_comment] = STATE(1158), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1159] = { - [sym_comment] = STATE(1159), - [ts_builtin_sym_end] = ACTIONS(2289), [sym_identifier] = ACTIONS(2237), [anon_sym_export] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2237), [anon_sym_type] = ACTIONS(2237), [anon_sym_namespace] = ACTIONS(2237), [anon_sym_LBRACE] = ACTIONS(2237), @@ -158576,7 +157770,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2237), [anon_sym_const] = ACTIONS(2237), [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_else] = ACTIONS(2237), [anon_sym_if] = ACTIONS(2237), [anon_sym_switch] = ACTIONS(2237), [anon_sym_for] = ACTIONS(2237), @@ -158591,9 +157784,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2237), [anon_sym_throw] = ACTIONS(2237), [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_case] = ACTIONS(2237), [anon_sym_yield] = ACTIONS(2237), [anon_sym_LBRACK] = ACTIONS(2237), [anon_sym_LTtemplate_GT] = ACTIONS(2237), + [anon_sym_DOT] = ACTIONS(2237), [anon_sym_DQUOTE] = ACTIONS(2237), [anon_sym_SQUOTE] = ACTIONS(2237), [anon_sym_class] = ACTIONS(2237), @@ -158640,2255 +157835,2068 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2237), [anon_sym_interface] = ACTIONS(2237), [anon_sym_enum] = ACTIONS(2237), - [sym__automatic_semicolon] = ACTIONS(2291), - [sym_html_comment] = ACTIONS(5), - }, - [1160] = { - [sym_comment] = STATE(1160), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1161] = { - [sym_finally_clause] = STATE(1678), - [sym_comment] = STATE(1161), - [ts_builtin_sym_end] = ACTIONS(3098), - [sym_identifier] = ACTIONS(3056), - [anon_sym_export] = ACTIONS(3056), - [anon_sym_type] = ACTIONS(3056), - [anon_sym_namespace] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(3056), - [anon_sym_RBRACE] = ACTIONS(3056), - [anon_sym_typeof] = ACTIONS(3056), - [anon_sym_import] = ACTIONS(3056), - [anon_sym_with] = ACTIONS(3056), - [anon_sym_var] = ACTIONS(3056), - [anon_sym_let] = ACTIONS(3056), - [anon_sym_const] = ACTIONS(3056), - [anon_sym_BANG] = ACTIONS(3056), - [anon_sym_if] = ACTIONS(3056), - [anon_sym_switch] = ACTIONS(3056), - [anon_sym_for] = ACTIONS(3056), - [anon_sym_LPAREN] = ACTIONS(3056), - [anon_sym_await] = ACTIONS(3056), - [anon_sym_while] = ACTIONS(3056), - [anon_sym_do] = ACTIONS(3056), - [anon_sym_try] = ACTIONS(3056), - [anon_sym_break] = ACTIONS(3056), - [anon_sym_continue] = ACTIONS(3056), - [anon_sym_debugger] = ACTIONS(3056), - [anon_sym_return] = ACTIONS(3056), - [anon_sym_throw] = ACTIONS(3056), - [anon_sym_SEMI] = ACTIONS(3056), - [anon_sym_finally] = ACTIONS(3048), - [anon_sym_yield] = ACTIONS(3056), - [anon_sym_LBRACK] = ACTIONS(3056), - [anon_sym_LTtemplate_GT] = ACTIONS(3056), - [anon_sym_DQUOTE] = ACTIONS(3056), - [anon_sym_SQUOTE] = ACTIONS(3056), - [anon_sym_class] = ACTIONS(3056), - [anon_sym_async] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3056), - [anon_sym_new] = ACTIONS(3056), - [anon_sym_using] = ACTIONS(3056), - [anon_sym_PLUS] = ACTIONS(3056), - [anon_sym_DASH] = ACTIONS(3056), - [anon_sym_SLASH] = ACTIONS(3056), - [anon_sym_LT] = ACTIONS(3056), - [anon_sym_TILDE] = ACTIONS(3056), - [anon_sym_void] = ACTIONS(3056), - [anon_sym_delete] = ACTIONS(3056), - [anon_sym_PLUS_PLUS] = ACTIONS(3056), - [anon_sym_DASH_DASH] = ACTIONS(3056), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3056), - [sym_number] = ACTIONS(3056), - [sym_private_property_identifier] = ACTIONS(3056), - [sym_this] = ACTIONS(3056), - [sym_super] = ACTIONS(3056), - [sym_true] = ACTIONS(3056), - [sym_false] = ACTIONS(3056), - [sym_null] = ACTIONS(3056), - [sym_undefined] = ACTIONS(3056), - [anon_sym_AT] = ACTIONS(3056), - [anon_sym_static] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3056), - [anon_sym_get] = ACTIONS(3056), - [anon_sym_set] = ACTIONS(3056), - [anon_sym_declare] = ACTIONS(3056), - [anon_sym_public] = ACTIONS(3056), - [anon_sym_private] = ACTIONS(3056), - [anon_sym_protected] = ACTIONS(3056), - [anon_sym_override] = ACTIONS(3056), - [anon_sym_module] = ACTIONS(3056), - [anon_sym_any] = ACTIONS(3056), - [anon_sym_number] = ACTIONS(3056), - [anon_sym_boolean] = ACTIONS(3056), - [anon_sym_string] = ACTIONS(3056), - [anon_sym_symbol] = ACTIONS(3056), - [anon_sym_object] = ACTIONS(3056), - [anon_sym_abstract] = ACTIONS(3056), - [anon_sym_interface] = ACTIONS(3056), - [anon_sym_enum] = ACTIONS(3056), [sym_html_comment] = ACTIONS(5), }, - [1162] = { - [sym_comment] = STATE(1162), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1163] = { - [sym_comment] = STATE(1163), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1154] = { + [sym_comment] = STATE(1154), + [sym_identifier] = ACTIONS(3370), + [anon_sym_export] = ACTIONS(3370), + [anon_sym_default] = ACTIONS(3370), + [anon_sym_type] = ACTIONS(3370), + [anon_sym_namespace] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_typeof] = ACTIONS(3370), + [anon_sym_import] = ACTIONS(3370), + [anon_sym_with] = ACTIONS(3370), + [anon_sym_var] = ACTIONS(3370), + [anon_sym_let] = ACTIONS(3370), + [anon_sym_const] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_switch] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_await] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_try] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_debugger] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_throw] = ACTIONS(3370), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_case] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_LTtemplate_GT] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3370), + [anon_sym_async] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3370), + [anon_sym_using] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_void] = ACTIONS(3370), + [anon_sym_delete] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3370), + [sym_number] = ACTIONS(3370), + [sym_private_property_identifier] = ACTIONS(3370), + [sym_this] = ACTIONS(3370), + [sym_super] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_null] = ACTIONS(3370), + [sym_undefined] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_readonly] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3370), + [anon_sym_set] = ACTIONS(3370), + [anon_sym_declare] = ACTIONS(3370), + [anon_sym_public] = ACTIONS(3370), + [anon_sym_private] = ACTIONS(3370), + [anon_sym_protected] = ACTIONS(3370), + [anon_sym_override] = ACTIONS(3370), + [anon_sym_module] = ACTIONS(3370), + [anon_sym_any] = ACTIONS(3370), + [anon_sym_number] = ACTIONS(3370), + [anon_sym_boolean] = ACTIONS(3370), + [anon_sym_string] = ACTIONS(3370), + [anon_sym_symbol] = ACTIONS(3370), + [anon_sym_object] = ACTIONS(3370), + [anon_sym_abstract] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), [sym_html_comment] = ACTIONS(5), }, - [1164] = { - [sym_comment] = STATE(1164), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1155] = { + [sym_comment] = STATE(1155), + [sym_identifier] = ACTIONS(2163), + [anon_sym_export] = ACTIONS(2163), + [anon_sym_default] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2163), + [anon_sym_namespace] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_typeof] = ACTIONS(2163), + [anon_sym_import] = ACTIONS(2163), + [anon_sym_with] = ACTIONS(2163), + [anon_sym_var] = ACTIONS(2163), + [anon_sym_let] = ACTIONS(2163), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_else] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_switch] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_await] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2163), + [anon_sym_do] = ACTIONS(2163), + [anon_sym_try] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_debugger] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_throw] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_case] = ACTIONS(2163), + [anon_sym_yield] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2163), + [anon_sym_LTtemplate_GT] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [anon_sym_SQUOTE] = ACTIONS(2163), + [anon_sym_class] = ACTIONS(2163), + [anon_sym_async] = ACTIONS(2163), + [anon_sym_function] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2163), + [anon_sym_void] = ACTIONS(2163), + [anon_sym_delete] = ACTIONS(2163), + [anon_sym_PLUS_PLUS] = ACTIONS(2163), + [anon_sym_DASH_DASH] = ACTIONS(2163), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2163), + [sym_number] = ACTIONS(2163), + [sym_private_property_identifier] = ACTIONS(2163), + [sym_this] = ACTIONS(2163), + [sym_super] = ACTIONS(2163), + [sym_true] = ACTIONS(2163), + [sym_false] = ACTIONS(2163), + [sym_null] = ACTIONS(2163), + [sym_undefined] = ACTIONS(2163), + [anon_sym_AT] = ACTIONS(2163), + [anon_sym_static] = ACTIONS(2163), + [anon_sym_readonly] = ACTIONS(2163), + [anon_sym_get] = ACTIONS(2163), + [anon_sym_set] = ACTIONS(2163), + [anon_sym_declare] = ACTIONS(2163), + [anon_sym_public] = ACTIONS(2163), + [anon_sym_private] = ACTIONS(2163), + [anon_sym_protected] = ACTIONS(2163), + [anon_sym_override] = ACTIONS(2163), + [anon_sym_module] = ACTIONS(2163), + [anon_sym_any] = ACTIONS(2163), + [anon_sym_number] = ACTIONS(2163), + [anon_sym_boolean] = ACTIONS(2163), + [anon_sym_string] = ACTIONS(2163), + [anon_sym_symbol] = ACTIONS(2163), + [anon_sym_object] = ACTIONS(2163), + [anon_sym_abstract] = ACTIONS(2163), + [anon_sym_interface] = ACTIONS(2163), + [anon_sym_enum] = ACTIONS(2163), [sym_html_comment] = ACTIONS(5), }, - [1165] = { - [sym_comment] = STATE(1165), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1156] = { + [sym_comment] = STATE(1156), + [sym_identifier] = ACTIONS(2225), + [anon_sym_export] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_typeof] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_with] = ACTIONS(2225), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_debugger] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_case] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LTtemplate_GT] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_void] = ACTIONS(2225), + [anon_sym_delete] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2225), + [sym_number] = ACTIONS(2225), + [sym_private_property_identifier] = ACTIONS(2225), + [sym_this] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_null] = ACTIONS(2225), + [sym_undefined] = ACTIONS(2225), + [anon_sym_AT] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_readonly] = ACTIONS(2225), + [anon_sym_get] = ACTIONS(2225), + [anon_sym_set] = ACTIONS(2225), + [anon_sym_declare] = ACTIONS(2225), + [anon_sym_public] = ACTIONS(2225), + [anon_sym_private] = ACTIONS(2225), + [anon_sym_protected] = ACTIONS(2225), + [anon_sym_override] = ACTIONS(2225), + [anon_sym_module] = ACTIONS(2225), + [anon_sym_any] = ACTIONS(2225), + [anon_sym_number] = ACTIONS(2225), + [anon_sym_boolean] = ACTIONS(2225), + [anon_sym_string] = ACTIONS(2225), + [anon_sym_symbol] = ACTIONS(2225), + [anon_sym_object] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [sym__automatic_semicolon] = ACTIONS(2301), + [sym_html_comment] = ACTIONS(5), + }, + [1157] = { + [sym_comment] = STATE(1157), + [sym_identifier] = ACTIONS(2213), + [anon_sym_export] = ACTIONS(2213), + [anon_sym_default] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_namespace] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_typeof] = ACTIONS(2213), + [anon_sym_import] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(2213), + [anon_sym_var] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_switch] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_debugger] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_throw] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_case] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_LTtemplate_GT] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_class] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_function] = ACTIONS(2213), + [anon_sym_new] = ACTIONS(2213), + [anon_sym_using] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_TILDE] = ACTIONS(2213), + [anon_sym_void] = ACTIONS(2213), + [anon_sym_delete] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2213), + [sym_number] = ACTIONS(2213), + [sym_private_property_identifier] = ACTIONS(2213), + [sym_this] = ACTIONS(2213), + [sym_super] = ACTIONS(2213), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [sym_null] = ACTIONS(2213), + [sym_undefined] = ACTIONS(2213), + [anon_sym_AT] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_readonly] = ACTIONS(2213), + [anon_sym_get] = ACTIONS(2213), + [anon_sym_set] = ACTIONS(2213), + [anon_sym_declare] = ACTIONS(2213), + [anon_sym_public] = ACTIONS(2213), + [anon_sym_private] = ACTIONS(2213), + [anon_sym_protected] = ACTIONS(2213), + [anon_sym_override] = ACTIONS(2213), + [anon_sym_module] = ACTIONS(2213), + [anon_sym_any] = ACTIONS(2213), + [anon_sym_number] = ACTIONS(2213), + [anon_sym_boolean] = ACTIONS(2213), + [anon_sym_string] = ACTIONS(2213), + [anon_sym_symbol] = ACTIONS(2213), + [anon_sym_object] = ACTIONS(2213), + [anon_sym_abstract] = ACTIONS(2213), + [anon_sym_interface] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [sym__automatic_semicolon] = ACTIONS(2335), + [sym_html_comment] = ACTIONS(5), + }, + [1158] = { + [sym_comment] = STATE(1158), + [sym_identifier] = ACTIONS(2145), + [anon_sym_export] = ACTIONS(2145), + [anon_sym_default] = ACTIONS(2145), + [anon_sym_type] = ACTIONS(2145), + [anon_sym_namespace] = ACTIONS(2145), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_typeof] = ACTIONS(2145), + [anon_sym_import] = ACTIONS(2145), + [anon_sym_with] = ACTIONS(2145), + [anon_sym_var] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2145), + [anon_sym_switch] = ACTIONS(2145), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_do] = ACTIONS(2145), + [anon_sym_try] = ACTIONS(2145), + [anon_sym_break] = ACTIONS(2145), + [anon_sym_continue] = ACTIONS(2145), + [anon_sym_debugger] = ACTIONS(2145), + [anon_sym_return] = ACTIONS(2145), + [anon_sym_throw] = ACTIONS(2145), + [anon_sym_SEMI] = ACTIONS(2145), + [anon_sym_case] = ACTIONS(2145), + [anon_sym_yield] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_LTtemplate_GT] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2145), + [anon_sym_class] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(2145), + [anon_sym_using] = ACTIONS(2145), + [anon_sym_PLUS] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_SLASH] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_TILDE] = ACTIONS(2145), + [anon_sym_void] = ACTIONS(2145), + [anon_sym_delete] = ACTIONS(2145), + [anon_sym_PLUS_PLUS] = ACTIONS(2145), + [anon_sym_DASH_DASH] = ACTIONS(2145), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2145), + [sym_number] = ACTIONS(2145), + [sym_private_property_identifier] = ACTIONS(2145), + [sym_this] = ACTIONS(2145), + [sym_super] = ACTIONS(2145), + [sym_true] = ACTIONS(2145), + [sym_false] = ACTIONS(2145), + [sym_null] = ACTIONS(2145), + [sym_undefined] = ACTIONS(2145), + [anon_sym_AT] = ACTIONS(2145), + [anon_sym_static] = ACTIONS(2145), + [anon_sym_readonly] = ACTIONS(2145), + [anon_sym_get] = ACTIONS(2145), + [anon_sym_set] = ACTIONS(2145), + [anon_sym_declare] = ACTIONS(2145), + [anon_sym_public] = ACTIONS(2145), + [anon_sym_private] = ACTIONS(2145), + [anon_sym_protected] = ACTIONS(2145), + [anon_sym_override] = ACTIONS(2145), + [anon_sym_module] = ACTIONS(2145), + [anon_sym_any] = ACTIONS(2145), + [anon_sym_number] = ACTIONS(2145), + [anon_sym_boolean] = ACTIONS(2145), + [anon_sym_string] = ACTIONS(2145), + [anon_sym_symbol] = ACTIONS(2145), + [anon_sym_object] = ACTIONS(2145), + [anon_sym_abstract] = ACTIONS(2145), + [anon_sym_interface] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2145), + [sym__automatic_semicolon] = ACTIONS(2147), + [sym_html_comment] = ACTIONS(5), + }, + [1159] = { + [sym_comment] = STATE(1159), + [ts_builtin_sym_end] = ACTIONS(3372), + [sym_identifier] = ACTIONS(3194), + [anon_sym_export] = ACTIONS(3194), + [anon_sym_type] = ACTIONS(3194), + [anon_sym_namespace] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_typeof] = ACTIONS(3194), + [anon_sym_import] = ACTIONS(3194), + [anon_sym_with] = ACTIONS(3194), + [anon_sym_var] = ACTIONS(3194), + [anon_sym_let] = ACTIONS(3194), + [anon_sym_const] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_switch] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_await] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_do] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_debugger] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_yield] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_LTtemplate_GT] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3194), + [anon_sym_class] = ACTIONS(3194), + [anon_sym_async] = ACTIONS(3194), + [anon_sym_function] = ACTIONS(3194), + [anon_sym_new] = ACTIONS(3194), + [anon_sym_using] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_void] = ACTIONS(3194), + [anon_sym_delete] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3194), + [sym_number] = ACTIONS(3194), + [sym_private_property_identifier] = ACTIONS(3194), + [sym_this] = ACTIONS(3194), + [sym_super] = ACTIONS(3194), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_null] = ACTIONS(3194), + [sym_undefined] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_static] = ACTIONS(3194), + [anon_sym_readonly] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_declare] = ACTIONS(3194), + [anon_sym_public] = ACTIONS(3194), + [anon_sym_private] = ACTIONS(3194), + [anon_sym_protected] = ACTIONS(3194), + [anon_sym_override] = ACTIONS(3194), + [anon_sym_module] = ACTIONS(3194), + [anon_sym_any] = ACTIONS(3194), + [anon_sym_number] = ACTIONS(3194), + [anon_sym_boolean] = ACTIONS(3194), + [anon_sym_string] = ACTIONS(3194), + [anon_sym_symbol] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_abstract] = ACTIONS(3194), + [anon_sym_interface] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), + [sym_html_comment] = ACTIONS(5), + }, + [1160] = { + [sym_comment] = STATE(1160), + [sym_identifier] = ACTIONS(3128), + [anon_sym_export] = ACTIONS(3128), + [anon_sym_default] = ACTIONS(3128), + [anon_sym_type] = ACTIONS(3128), + [anon_sym_namespace] = ACTIONS(3128), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_typeof] = ACTIONS(3128), + [anon_sym_import] = ACTIONS(3128), + [anon_sym_with] = ACTIONS(3128), + [anon_sym_var] = ACTIONS(3128), + [anon_sym_let] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_BANG] = ACTIONS(3128), + [anon_sym_if] = ACTIONS(3128), + [anon_sym_switch] = ACTIONS(3128), + [anon_sym_for] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3128), + [anon_sym_await] = ACTIONS(3128), + [anon_sym_while] = ACTIONS(3128), + [anon_sym_do] = ACTIONS(3128), + [anon_sym_try] = ACTIONS(3128), + [anon_sym_break] = ACTIONS(3128), + [anon_sym_continue] = ACTIONS(3128), + [anon_sym_debugger] = ACTIONS(3128), + [anon_sym_return] = ACTIONS(3128), + [anon_sym_throw] = ACTIONS(3128), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_case] = ACTIONS(3128), + [anon_sym_yield] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LTtemplate_GT] = ACTIONS(3128), + [anon_sym_DQUOTE] = ACTIONS(3128), + [anon_sym_SQUOTE] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_async] = ACTIONS(3128), + [anon_sym_function] = ACTIONS(3128), + [anon_sym_new] = ACTIONS(3128), + [anon_sym_using] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_TILDE] = ACTIONS(3128), + [anon_sym_void] = ACTIONS(3128), + [anon_sym_delete] = ACTIONS(3128), + [anon_sym_PLUS_PLUS] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3128), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3128), + [sym_number] = ACTIONS(3128), + [sym_private_property_identifier] = ACTIONS(3128), + [sym_this] = ACTIONS(3128), + [sym_super] = ACTIONS(3128), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_AT] = ACTIONS(3128), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3128), + [anon_sym_set] = ACTIONS(3128), + [anon_sym_declare] = ACTIONS(3128), + [anon_sym_public] = ACTIONS(3128), + [anon_sym_private] = ACTIONS(3128), + [anon_sym_protected] = ACTIONS(3128), + [anon_sym_override] = ACTIONS(3128), + [anon_sym_module] = ACTIONS(3128), + [anon_sym_any] = ACTIONS(3128), + [anon_sym_number] = ACTIONS(3128), + [anon_sym_boolean] = ACTIONS(3128), + [anon_sym_string] = ACTIONS(3128), + [anon_sym_symbol] = ACTIONS(3128), + [anon_sym_object] = ACTIONS(3128), + [anon_sym_abstract] = ACTIONS(3128), + [anon_sym_interface] = ACTIONS(3128), + [anon_sym_enum] = ACTIONS(3128), + [sym_html_comment] = ACTIONS(5), + }, + [1161] = { + [sym_statement_block] = STATE(1520), + [sym_comment] = STATE(1161), + [ts_builtin_sym_end] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2057), + [anon_sym_export] = ACTIONS(2057), + [anon_sym_type] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2057), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_RBRACE] = ACTIONS(2057), + [anon_sym_typeof] = ACTIONS(2057), + [anon_sym_import] = ACTIONS(2057), + [anon_sym_with] = ACTIONS(2057), + [anon_sym_var] = ACTIONS(2057), + [anon_sym_let] = ACTIONS(2057), + [anon_sym_const] = ACTIONS(2057), + [anon_sym_BANG] = ACTIONS(2057), + [anon_sym_if] = ACTIONS(2057), + [anon_sym_switch] = ACTIONS(2057), + [anon_sym_for] = ACTIONS(2057), + [anon_sym_LPAREN] = ACTIONS(2057), + [anon_sym_await] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2057), + [anon_sym_do] = ACTIONS(2057), + [anon_sym_try] = ACTIONS(2057), + [anon_sym_break] = ACTIONS(2057), + [anon_sym_continue] = ACTIONS(2057), + [anon_sym_debugger] = ACTIONS(2057), + [anon_sym_return] = ACTIONS(2057), + [anon_sym_throw] = ACTIONS(2057), + [anon_sym_SEMI] = ACTIONS(2057), + [anon_sym_yield] = ACTIONS(2057), + [anon_sym_LBRACK] = ACTIONS(2057), + [anon_sym_LTtemplate_GT] = ACTIONS(2057), + [anon_sym_DQUOTE] = ACTIONS(2057), + [anon_sym_SQUOTE] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2057), + [anon_sym_async] = ACTIONS(2057), + [anon_sym_function] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2057), + [anon_sym_using] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2057), + [anon_sym_DASH] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2057), + [anon_sym_LT] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2057), + [anon_sym_void] = ACTIONS(2057), + [anon_sym_delete] = ACTIONS(2057), + [anon_sym_PLUS_PLUS] = ACTIONS(2057), + [anon_sym_DASH_DASH] = ACTIONS(2057), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2057), + [sym_number] = ACTIONS(2057), + [sym_private_property_identifier] = ACTIONS(2057), + [sym_this] = ACTIONS(2057), + [sym_super] = ACTIONS(2057), + [sym_true] = ACTIONS(2057), + [sym_false] = ACTIONS(2057), + [sym_null] = ACTIONS(2057), + [sym_undefined] = ACTIONS(2057), + [anon_sym_AT] = ACTIONS(2057), + [anon_sym_static] = ACTIONS(2057), + [anon_sym_readonly] = ACTIONS(2057), + [anon_sym_get] = ACTIONS(2057), + [anon_sym_set] = ACTIONS(2057), + [anon_sym_declare] = ACTIONS(2057), + [anon_sym_public] = ACTIONS(2057), + [anon_sym_private] = ACTIONS(2057), + [anon_sym_protected] = ACTIONS(2057), + [anon_sym_override] = ACTIONS(2057), + [anon_sym_module] = ACTIONS(2057), + [anon_sym_any] = ACTIONS(2057), + [anon_sym_number] = ACTIONS(2057), + [anon_sym_boolean] = ACTIONS(2057), + [anon_sym_string] = ACTIONS(2057), + [anon_sym_symbol] = ACTIONS(2057), + [anon_sym_object] = ACTIONS(2057), + [anon_sym_abstract] = ACTIONS(2057), + [anon_sym_interface] = ACTIONS(2057), + [anon_sym_enum] = ACTIONS(2057), + [sym_html_comment] = ACTIONS(5), + }, + [1162] = { + [sym_comment] = STATE(1162), + [ts_builtin_sym_end] = ACTIONS(3374), + [sym_identifier] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(3368), + [anon_sym_type] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_typeof] = ACTIONS(3368), + [anon_sym_import] = ACTIONS(3368), + [anon_sym_with] = ACTIONS(3368), + [anon_sym_var] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_await] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_debugger] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LTtemplate_GT] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3368), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_async] = ACTIONS(3368), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_void] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3368), + [sym_number] = ACTIONS(3368), + [sym_private_property_identifier] = ACTIONS(3368), + [sym_this] = ACTIONS(3368), + [sym_super] = ACTIONS(3368), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [sym_null] = ACTIONS(3368), + [sym_undefined] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_readonly] = ACTIONS(3368), + [anon_sym_get] = ACTIONS(3368), + [anon_sym_set] = ACTIONS(3368), + [anon_sym_declare] = ACTIONS(3368), + [anon_sym_public] = ACTIONS(3368), + [anon_sym_private] = ACTIONS(3368), + [anon_sym_protected] = ACTIONS(3368), + [anon_sym_override] = ACTIONS(3368), + [anon_sym_module] = ACTIONS(3368), + [anon_sym_any] = ACTIONS(3368), + [anon_sym_number] = ACTIONS(3368), + [anon_sym_boolean] = ACTIONS(3368), + [anon_sym_string] = ACTIONS(3368), + [anon_sym_symbol] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_abstract] = ACTIONS(3368), + [anon_sym_interface] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), + [sym_html_comment] = ACTIONS(5), + }, + [1163] = { + [sym_comment] = STATE(1163), + [ts_builtin_sym_end] = ACTIONS(3374), + [sym_identifier] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(3368), + [anon_sym_type] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_typeof] = ACTIONS(3368), + [anon_sym_import] = ACTIONS(3368), + [anon_sym_with] = ACTIONS(3368), + [anon_sym_var] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_await] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_debugger] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LTtemplate_GT] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3368), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_async] = ACTIONS(3368), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_void] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3368), + [sym_number] = ACTIONS(3368), + [sym_private_property_identifier] = ACTIONS(3368), + [sym_this] = ACTIONS(3368), + [sym_super] = ACTIONS(3368), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [sym_null] = ACTIONS(3368), + [sym_undefined] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_readonly] = ACTIONS(3368), + [anon_sym_get] = ACTIONS(3368), + [anon_sym_set] = ACTIONS(3368), + [anon_sym_declare] = ACTIONS(3368), + [anon_sym_public] = ACTIONS(3368), + [anon_sym_private] = ACTIONS(3368), + [anon_sym_protected] = ACTIONS(3368), + [anon_sym_override] = ACTIONS(3368), + [anon_sym_module] = ACTIONS(3368), + [anon_sym_any] = ACTIONS(3368), + [anon_sym_number] = ACTIONS(3368), + [anon_sym_boolean] = ACTIONS(3368), + [anon_sym_string] = ACTIONS(3368), + [anon_sym_symbol] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_abstract] = ACTIONS(3368), + [anon_sym_interface] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), + [sym_html_comment] = ACTIONS(5), + }, + [1164] = { + [sym_comment] = STATE(1164), + [ts_builtin_sym_end] = ACTIONS(3376), + [sym_identifier] = ACTIONS(3366), + [anon_sym_export] = ACTIONS(3366), + [anon_sym_type] = ACTIONS(3366), + [anon_sym_namespace] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_typeof] = ACTIONS(3366), + [anon_sym_import] = ACTIONS(3366), + [anon_sym_with] = ACTIONS(3366), + [anon_sym_var] = ACTIONS(3366), + [anon_sym_let] = ACTIONS(3366), + [anon_sym_const] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_switch] = ACTIONS(3366), + [anon_sym_for] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3366), + [anon_sym_await] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_do] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_debugger] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3366), + [anon_sym_yield] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3366), + [anon_sym_LTtemplate_GT] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3366), + [anon_sym_class] = ACTIONS(3366), + [anon_sym_async] = ACTIONS(3366), + [anon_sym_function] = ACTIONS(3366), + [anon_sym_new] = ACTIONS(3366), + [anon_sym_using] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_void] = ACTIONS(3366), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_DASH_DASH] = ACTIONS(3366), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3366), + [sym_number] = ACTIONS(3366), + [sym_private_property_identifier] = ACTIONS(3366), + [sym_this] = ACTIONS(3366), + [sym_super] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_null] = ACTIONS(3366), + [sym_undefined] = ACTIONS(3366), + [anon_sym_AT] = ACTIONS(3366), + [anon_sym_static] = ACTIONS(3366), + [anon_sym_readonly] = ACTIONS(3366), + [anon_sym_get] = ACTIONS(3366), + [anon_sym_set] = ACTIONS(3366), + [anon_sym_declare] = ACTIONS(3366), + [anon_sym_public] = ACTIONS(3366), + [anon_sym_private] = ACTIONS(3366), + [anon_sym_protected] = ACTIONS(3366), + [anon_sym_override] = ACTIONS(3366), + [anon_sym_module] = ACTIONS(3366), + [anon_sym_any] = ACTIONS(3366), + [anon_sym_number] = ACTIONS(3366), + [anon_sym_boolean] = ACTIONS(3366), + [anon_sym_string] = ACTIONS(3366), + [anon_sym_symbol] = ACTIONS(3366), + [anon_sym_object] = ACTIONS(3366), + [anon_sym_abstract] = ACTIONS(3366), + [anon_sym_interface] = ACTIONS(3366), + [anon_sym_enum] = ACTIONS(3366), + [sym_html_comment] = ACTIONS(5), + }, + [1165] = { + [sym_comment] = STATE(1165), + [sym_identifier] = ACTIONS(3174), + [anon_sym_export] = ACTIONS(3174), + [anon_sym_default] = ACTIONS(3174), + [anon_sym_type] = ACTIONS(3174), + [anon_sym_namespace] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_RBRACE] = ACTIONS(3174), + [anon_sym_typeof] = ACTIONS(3174), + [anon_sym_import] = ACTIONS(3174), + [anon_sym_with] = ACTIONS(3174), + [anon_sym_var] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_const] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_switch] = ACTIONS(3174), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_await] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_break] = ACTIONS(3174), + [anon_sym_continue] = ACTIONS(3174), + [anon_sym_debugger] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_throw] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3174), + [anon_sym_case] = ACTIONS(3174), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3174), + [anon_sym_LTtemplate_GT] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [anon_sym_SQUOTE] = ACTIONS(3174), + [anon_sym_class] = ACTIONS(3174), + [anon_sym_async] = ACTIONS(3174), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_using] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_SLASH] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_void] = ACTIONS(3174), + [anon_sym_delete] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_DASH_DASH] = ACTIONS(3174), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3174), + [sym_number] = ACTIONS(3174), + [sym_private_property_identifier] = ACTIONS(3174), + [sym_this] = ACTIONS(3174), + [sym_super] = ACTIONS(3174), + [sym_true] = ACTIONS(3174), + [sym_false] = ACTIONS(3174), + [sym_null] = ACTIONS(3174), + [sym_undefined] = ACTIONS(3174), + [anon_sym_AT] = ACTIONS(3174), + [anon_sym_static] = ACTIONS(3174), + [anon_sym_readonly] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(3174), + [anon_sym_set] = ACTIONS(3174), + [anon_sym_declare] = ACTIONS(3174), + [anon_sym_public] = ACTIONS(3174), + [anon_sym_private] = ACTIONS(3174), + [anon_sym_protected] = ACTIONS(3174), + [anon_sym_override] = ACTIONS(3174), + [anon_sym_module] = ACTIONS(3174), + [anon_sym_any] = ACTIONS(3174), + [anon_sym_number] = ACTIONS(3174), + [anon_sym_boolean] = ACTIONS(3174), + [anon_sym_string] = ACTIONS(3174), + [anon_sym_symbol] = ACTIONS(3174), + [anon_sym_object] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3174), + [anon_sym_interface] = ACTIONS(3174), + [anon_sym_enum] = ACTIONS(3174), [sym_html_comment] = ACTIONS(5), }, [1166] = { [sym_comment] = STATE(1166), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [ts_builtin_sym_end] = ACTIONS(2387), + [sym_identifier] = ACTIONS(2213), + [anon_sym_export] = ACTIONS(2213), + [anon_sym_type] = ACTIONS(2213), + [anon_sym_namespace] = ACTIONS(2213), + [anon_sym_LBRACE] = ACTIONS(2213), + [anon_sym_RBRACE] = ACTIONS(2213), + [anon_sym_typeof] = ACTIONS(2213), + [anon_sym_import] = ACTIONS(2213), + [anon_sym_with] = ACTIONS(2213), + [anon_sym_var] = ACTIONS(2213), + [anon_sym_let] = ACTIONS(2213), + [anon_sym_const] = ACTIONS(2213), + [anon_sym_BANG] = ACTIONS(2213), + [anon_sym_if] = ACTIONS(2213), + [anon_sym_switch] = ACTIONS(2213), + [anon_sym_for] = ACTIONS(2213), + [anon_sym_LPAREN] = ACTIONS(2213), + [anon_sym_await] = ACTIONS(2213), + [anon_sym_while] = ACTIONS(2213), + [anon_sym_do] = ACTIONS(2213), + [anon_sym_try] = ACTIONS(2213), + [anon_sym_break] = ACTIONS(2213), + [anon_sym_continue] = ACTIONS(2213), + [anon_sym_debugger] = ACTIONS(2213), + [anon_sym_return] = ACTIONS(2213), + [anon_sym_throw] = ACTIONS(2213), + [anon_sym_SEMI] = ACTIONS(2213), + [anon_sym_yield] = ACTIONS(2213), + [anon_sym_LBRACK] = ACTIONS(2213), + [anon_sym_LTtemplate_GT] = ACTIONS(2213), + [anon_sym_DQUOTE] = ACTIONS(2213), + [anon_sym_SQUOTE] = ACTIONS(2213), + [anon_sym_class] = ACTIONS(2213), + [anon_sym_async] = ACTIONS(2213), + [anon_sym_function] = ACTIONS(2213), + [anon_sym_new] = ACTIONS(2213), + [anon_sym_using] = ACTIONS(2213), + [anon_sym_PLUS] = ACTIONS(2213), + [anon_sym_DASH] = ACTIONS(2213), + [anon_sym_SLASH] = ACTIONS(2213), + [anon_sym_LT] = ACTIONS(2213), + [anon_sym_TILDE] = ACTIONS(2213), + [anon_sym_void] = ACTIONS(2213), + [anon_sym_delete] = ACTIONS(2213), + [anon_sym_PLUS_PLUS] = ACTIONS(2213), + [anon_sym_DASH_DASH] = ACTIONS(2213), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2213), + [sym_number] = ACTIONS(2213), + [sym_private_property_identifier] = ACTIONS(2213), + [sym_this] = ACTIONS(2213), + [sym_super] = ACTIONS(2213), + [sym_true] = ACTIONS(2213), + [sym_false] = ACTIONS(2213), + [sym_null] = ACTIONS(2213), + [sym_undefined] = ACTIONS(2213), + [anon_sym_AT] = ACTIONS(2213), + [anon_sym_static] = ACTIONS(2213), + [anon_sym_readonly] = ACTIONS(2213), + [anon_sym_get] = ACTIONS(2213), + [anon_sym_set] = ACTIONS(2213), + [anon_sym_declare] = ACTIONS(2213), + [anon_sym_public] = ACTIONS(2213), + [anon_sym_private] = ACTIONS(2213), + [anon_sym_protected] = ACTIONS(2213), + [anon_sym_override] = ACTIONS(2213), + [anon_sym_module] = ACTIONS(2213), + [anon_sym_any] = ACTIONS(2213), + [anon_sym_number] = ACTIONS(2213), + [anon_sym_boolean] = ACTIONS(2213), + [anon_sym_string] = ACTIONS(2213), + [anon_sym_symbol] = ACTIONS(2213), + [anon_sym_object] = ACTIONS(2213), + [anon_sym_abstract] = ACTIONS(2213), + [anon_sym_interface] = ACTIONS(2213), + [anon_sym_enum] = ACTIONS(2213), + [sym__automatic_semicolon] = ACTIONS(2421), [sym_html_comment] = ACTIONS(5), }, [1167] = { [sym_comment] = STATE(1167), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [sym_identifier] = ACTIONS(3172), + [anon_sym_export] = ACTIONS(3172), + [anon_sym_default] = ACTIONS(3172), + [anon_sym_type] = ACTIONS(3172), + [anon_sym_namespace] = ACTIONS(3172), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3172), + [anon_sym_typeof] = ACTIONS(3172), + [anon_sym_import] = ACTIONS(3172), + [anon_sym_with] = ACTIONS(3172), + [anon_sym_var] = ACTIONS(3172), + [anon_sym_let] = ACTIONS(3172), + [anon_sym_const] = ACTIONS(3172), + [anon_sym_BANG] = ACTIONS(3172), + [anon_sym_if] = ACTIONS(3172), + [anon_sym_switch] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_await] = ACTIONS(3172), + [anon_sym_while] = ACTIONS(3172), + [anon_sym_do] = ACTIONS(3172), + [anon_sym_try] = ACTIONS(3172), + [anon_sym_break] = ACTIONS(3172), + [anon_sym_continue] = ACTIONS(3172), + [anon_sym_debugger] = ACTIONS(3172), + [anon_sym_return] = ACTIONS(3172), + [anon_sym_throw] = ACTIONS(3172), + [anon_sym_SEMI] = ACTIONS(3172), + [anon_sym_case] = ACTIONS(3172), + [anon_sym_yield] = ACTIONS(3172), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_LTtemplate_GT] = ACTIONS(3172), + [anon_sym_DQUOTE] = ACTIONS(3172), + [anon_sym_SQUOTE] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3172), + [anon_sym_async] = ACTIONS(3172), + [anon_sym_function] = ACTIONS(3172), + [anon_sym_new] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3172), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_void] = ACTIONS(3172), + [anon_sym_delete] = ACTIONS(3172), + [anon_sym_PLUS_PLUS] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3172), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3172), + [sym_number] = ACTIONS(3172), + [sym_private_property_identifier] = ACTIONS(3172), + [sym_this] = ACTIONS(3172), + [sym_super] = ACTIONS(3172), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [sym_null] = ACTIONS(3172), + [sym_undefined] = ACTIONS(3172), + [anon_sym_AT] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3172), + [anon_sym_readonly] = ACTIONS(3172), + [anon_sym_get] = ACTIONS(3172), + [anon_sym_set] = ACTIONS(3172), + [anon_sym_declare] = ACTIONS(3172), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_override] = ACTIONS(3172), + [anon_sym_module] = ACTIONS(3172), + [anon_sym_any] = ACTIONS(3172), + [anon_sym_number] = ACTIONS(3172), + [anon_sym_boolean] = ACTIONS(3172), + [anon_sym_string] = ACTIONS(3172), + [anon_sym_symbol] = ACTIONS(3172), + [anon_sym_object] = ACTIONS(3172), + [anon_sym_abstract] = ACTIONS(3172), + [anon_sym_interface] = ACTIONS(3172), + [anon_sym_enum] = ACTIONS(3172), [sym_html_comment] = ACTIONS(5), }, [1168] = { - [sym_else_clause] = STATE(1717), [sym_comment] = STATE(1168), - [ts_builtin_sym_end] = ACTIONS(3308), - [sym_identifier] = ACTIONS(3068), - [anon_sym_export] = ACTIONS(3068), - [anon_sym_type] = ACTIONS(3068), - [anon_sym_namespace] = ACTIONS(3068), - [anon_sym_LBRACE] = ACTIONS(3068), - [anon_sym_RBRACE] = ACTIONS(3068), - [anon_sym_typeof] = ACTIONS(3068), - [anon_sym_import] = ACTIONS(3068), - [anon_sym_with] = ACTIONS(3068), - [anon_sym_var] = ACTIONS(3068), - [anon_sym_let] = ACTIONS(3068), - [anon_sym_const] = ACTIONS(3068), - [anon_sym_BANG] = ACTIONS(3068), - [anon_sym_else] = ACTIONS(3338), - [anon_sym_if] = ACTIONS(3068), - [anon_sym_switch] = ACTIONS(3068), - [anon_sym_for] = ACTIONS(3068), - [anon_sym_LPAREN] = ACTIONS(3068), - [anon_sym_await] = ACTIONS(3068), - [anon_sym_while] = ACTIONS(3068), - [anon_sym_do] = ACTIONS(3068), - [anon_sym_try] = ACTIONS(3068), - [anon_sym_break] = ACTIONS(3068), - [anon_sym_continue] = ACTIONS(3068), - [anon_sym_debugger] = ACTIONS(3068), - [anon_sym_return] = ACTIONS(3068), - [anon_sym_throw] = ACTIONS(3068), - [anon_sym_SEMI] = ACTIONS(3068), - [anon_sym_yield] = ACTIONS(3068), - [anon_sym_LBRACK] = ACTIONS(3068), - [anon_sym_LTtemplate_GT] = ACTIONS(3068), - [anon_sym_DQUOTE] = ACTIONS(3068), - [anon_sym_SQUOTE] = ACTIONS(3068), - [anon_sym_class] = ACTIONS(3068), - [anon_sym_async] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(3068), - [anon_sym_new] = ACTIONS(3068), - [anon_sym_using] = ACTIONS(3068), - [anon_sym_PLUS] = ACTIONS(3068), - [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_SLASH] = ACTIONS(3068), - [anon_sym_LT] = ACTIONS(3068), - [anon_sym_TILDE] = ACTIONS(3068), - [anon_sym_void] = ACTIONS(3068), - [anon_sym_delete] = ACTIONS(3068), - [anon_sym_PLUS_PLUS] = ACTIONS(3068), - [anon_sym_DASH_DASH] = ACTIONS(3068), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3068), - [sym_number] = ACTIONS(3068), - [sym_private_property_identifier] = ACTIONS(3068), - [sym_this] = ACTIONS(3068), - [sym_super] = ACTIONS(3068), - [sym_true] = ACTIONS(3068), - [sym_false] = ACTIONS(3068), - [sym_null] = ACTIONS(3068), - [sym_undefined] = ACTIONS(3068), - [anon_sym_AT] = ACTIONS(3068), - [anon_sym_static] = ACTIONS(3068), - [anon_sym_readonly] = ACTIONS(3068), - [anon_sym_get] = ACTIONS(3068), - [anon_sym_set] = ACTIONS(3068), - [anon_sym_declare] = ACTIONS(3068), - [anon_sym_public] = ACTIONS(3068), - [anon_sym_private] = ACTIONS(3068), - [anon_sym_protected] = ACTIONS(3068), - [anon_sym_override] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_any] = ACTIONS(3068), - [anon_sym_number] = ACTIONS(3068), - [anon_sym_boolean] = ACTIONS(3068), - [anon_sym_string] = ACTIONS(3068), - [anon_sym_symbol] = ACTIONS(3068), - [anon_sym_object] = ACTIONS(3068), - [anon_sym_abstract] = ACTIONS(3068), - [anon_sym_interface] = ACTIONS(3068), - [anon_sym_enum] = ACTIONS(3068), + [ts_builtin_sym_end] = ACTIONS(2325), + [sym_identifier] = ACTIONS(2225), + [anon_sym_export] = ACTIONS(2225), + [anon_sym_type] = ACTIONS(2225), + [anon_sym_namespace] = ACTIONS(2225), + [anon_sym_LBRACE] = ACTIONS(2225), + [anon_sym_RBRACE] = ACTIONS(2225), + [anon_sym_typeof] = ACTIONS(2225), + [anon_sym_import] = ACTIONS(2225), + [anon_sym_with] = ACTIONS(2225), + [anon_sym_var] = ACTIONS(2225), + [anon_sym_let] = ACTIONS(2225), + [anon_sym_const] = ACTIONS(2225), + [anon_sym_BANG] = ACTIONS(2225), + [anon_sym_if] = ACTIONS(2225), + [anon_sym_switch] = ACTIONS(2225), + [anon_sym_for] = ACTIONS(2225), + [anon_sym_LPAREN] = ACTIONS(2225), + [anon_sym_await] = ACTIONS(2225), + [anon_sym_while] = ACTIONS(2225), + [anon_sym_do] = ACTIONS(2225), + [anon_sym_try] = ACTIONS(2225), + [anon_sym_break] = ACTIONS(2225), + [anon_sym_continue] = ACTIONS(2225), + [anon_sym_debugger] = ACTIONS(2225), + [anon_sym_return] = ACTIONS(2225), + [anon_sym_throw] = ACTIONS(2225), + [anon_sym_SEMI] = ACTIONS(2225), + [anon_sym_yield] = ACTIONS(2225), + [anon_sym_LBRACK] = ACTIONS(2225), + [anon_sym_LTtemplate_GT] = ACTIONS(2225), + [anon_sym_DQUOTE] = ACTIONS(2225), + [anon_sym_SQUOTE] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2225), + [anon_sym_async] = ACTIONS(2225), + [anon_sym_function] = ACTIONS(2225), + [anon_sym_new] = ACTIONS(2225), + [anon_sym_using] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2225), + [anon_sym_DASH] = ACTIONS(2225), + [anon_sym_SLASH] = ACTIONS(2225), + [anon_sym_LT] = ACTIONS(2225), + [anon_sym_TILDE] = ACTIONS(2225), + [anon_sym_void] = ACTIONS(2225), + [anon_sym_delete] = ACTIONS(2225), + [anon_sym_PLUS_PLUS] = ACTIONS(2225), + [anon_sym_DASH_DASH] = ACTIONS(2225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2225), + [sym_number] = ACTIONS(2225), + [sym_private_property_identifier] = ACTIONS(2225), + [sym_this] = ACTIONS(2225), + [sym_super] = ACTIONS(2225), + [sym_true] = ACTIONS(2225), + [sym_false] = ACTIONS(2225), + [sym_null] = ACTIONS(2225), + [sym_undefined] = ACTIONS(2225), + [anon_sym_AT] = ACTIONS(2225), + [anon_sym_static] = ACTIONS(2225), + [anon_sym_readonly] = ACTIONS(2225), + [anon_sym_get] = ACTIONS(2225), + [anon_sym_set] = ACTIONS(2225), + [anon_sym_declare] = ACTIONS(2225), + [anon_sym_public] = ACTIONS(2225), + [anon_sym_private] = ACTIONS(2225), + [anon_sym_protected] = ACTIONS(2225), + [anon_sym_override] = ACTIONS(2225), + [anon_sym_module] = ACTIONS(2225), + [anon_sym_any] = ACTIONS(2225), + [anon_sym_number] = ACTIONS(2225), + [anon_sym_boolean] = ACTIONS(2225), + [anon_sym_string] = ACTIONS(2225), + [anon_sym_symbol] = ACTIONS(2225), + [anon_sym_object] = ACTIONS(2225), + [anon_sym_abstract] = ACTIONS(2225), + [anon_sym_interface] = ACTIONS(2225), + [anon_sym_enum] = ACTIONS(2225), + [sym__automatic_semicolon] = ACTIONS(2457), [sym_html_comment] = ACTIONS(5), }, [1169] = { [sym_comment] = STATE(1169), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_default] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_case] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, [1170] = { [sym_comment] = STATE(1170), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [sym_identifier] = ACTIONS(3172), + [anon_sym_export] = ACTIONS(3172), + [anon_sym_default] = ACTIONS(3172), + [anon_sym_type] = ACTIONS(3172), + [anon_sym_namespace] = ACTIONS(3172), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3172), + [anon_sym_typeof] = ACTIONS(3172), + [anon_sym_import] = ACTIONS(3172), + [anon_sym_with] = ACTIONS(3172), + [anon_sym_var] = ACTIONS(3172), + [anon_sym_let] = ACTIONS(3172), + [anon_sym_const] = ACTIONS(3172), + [anon_sym_BANG] = ACTIONS(3172), + [anon_sym_if] = ACTIONS(3172), + [anon_sym_switch] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_await] = ACTIONS(3172), + [anon_sym_while] = ACTIONS(3172), + [anon_sym_do] = ACTIONS(3172), + [anon_sym_try] = ACTIONS(3172), + [anon_sym_break] = ACTIONS(3172), + [anon_sym_continue] = ACTIONS(3172), + [anon_sym_debugger] = ACTIONS(3172), + [anon_sym_return] = ACTIONS(3172), + [anon_sym_throw] = ACTIONS(3172), + [anon_sym_SEMI] = ACTIONS(3172), + [anon_sym_case] = ACTIONS(3172), + [anon_sym_yield] = ACTIONS(3172), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_LTtemplate_GT] = ACTIONS(3172), + [anon_sym_DQUOTE] = ACTIONS(3172), + [anon_sym_SQUOTE] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3172), + [anon_sym_async] = ACTIONS(3172), + [anon_sym_function] = ACTIONS(3172), + [anon_sym_new] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3172), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_void] = ACTIONS(3172), + [anon_sym_delete] = ACTIONS(3172), + [anon_sym_PLUS_PLUS] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3172), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3172), + [sym_number] = ACTIONS(3172), + [sym_private_property_identifier] = ACTIONS(3172), + [sym_this] = ACTIONS(3172), + [sym_super] = ACTIONS(3172), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [sym_null] = ACTIONS(3172), + [sym_undefined] = ACTIONS(3172), + [anon_sym_AT] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3172), + [anon_sym_readonly] = ACTIONS(3172), + [anon_sym_get] = ACTIONS(3172), + [anon_sym_set] = ACTIONS(3172), + [anon_sym_declare] = ACTIONS(3172), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_override] = ACTIONS(3172), + [anon_sym_module] = ACTIONS(3172), + [anon_sym_any] = ACTIONS(3172), + [anon_sym_number] = ACTIONS(3172), + [anon_sym_boolean] = ACTIONS(3172), + [anon_sym_string] = ACTIONS(3172), + [anon_sym_symbol] = ACTIONS(3172), + [anon_sym_object] = ACTIONS(3172), + [anon_sym_abstract] = ACTIONS(3172), + [anon_sym_interface] = ACTIONS(3172), + [anon_sym_enum] = ACTIONS(3172), [sym_html_comment] = ACTIONS(5), }, [1171] = { [sym_comment] = STATE(1171), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [ts_builtin_sym_end] = ACTIONS(2329), + [sym_identifier] = ACTIONS(2241), + [anon_sym_export] = ACTIONS(2241), + [anon_sym_type] = ACTIONS(2241), + [anon_sym_namespace] = ACTIONS(2241), + [anon_sym_LBRACE] = ACTIONS(2241), + [anon_sym_RBRACE] = ACTIONS(2241), + [anon_sym_typeof] = ACTIONS(2241), + [anon_sym_import] = ACTIONS(2241), + [anon_sym_with] = ACTIONS(2241), + [anon_sym_var] = ACTIONS(2241), + [anon_sym_let] = ACTIONS(2241), + [anon_sym_const] = ACTIONS(2241), + [anon_sym_BANG] = ACTIONS(2241), + [anon_sym_if] = ACTIONS(2241), + [anon_sym_switch] = ACTIONS(2241), + [anon_sym_for] = ACTIONS(2241), + [anon_sym_LPAREN] = ACTIONS(2241), + [anon_sym_await] = ACTIONS(2241), + [anon_sym_while] = ACTIONS(2241), + [anon_sym_do] = ACTIONS(2241), + [anon_sym_try] = ACTIONS(2241), + [anon_sym_break] = ACTIONS(2241), + [anon_sym_continue] = ACTIONS(2241), + [anon_sym_debugger] = ACTIONS(2241), + [anon_sym_return] = ACTIONS(2241), + [anon_sym_throw] = ACTIONS(2241), + [anon_sym_SEMI] = ACTIONS(2241), + [anon_sym_yield] = ACTIONS(2241), + [anon_sym_LBRACK] = ACTIONS(2241), + [anon_sym_LTtemplate_GT] = ACTIONS(2241), + [anon_sym_DQUOTE] = ACTIONS(2241), + [anon_sym_SQUOTE] = ACTIONS(2241), + [anon_sym_class] = ACTIONS(2241), + [anon_sym_async] = ACTIONS(2241), + [anon_sym_function] = ACTIONS(2241), + [anon_sym_new] = ACTIONS(2241), + [anon_sym_using] = ACTIONS(2241), + [anon_sym_PLUS] = ACTIONS(2241), + [anon_sym_DASH] = ACTIONS(2241), + [anon_sym_SLASH] = ACTIONS(2241), + [anon_sym_LT] = ACTIONS(2241), + [anon_sym_TILDE] = ACTIONS(2241), + [anon_sym_void] = ACTIONS(2241), + [anon_sym_delete] = ACTIONS(2241), + [anon_sym_PLUS_PLUS] = ACTIONS(2241), + [anon_sym_DASH_DASH] = ACTIONS(2241), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2241), + [sym_number] = ACTIONS(2241), + [sym_private_property_identifier] = ACTIONS(2241), + [sym_this] = ACTIONS(2241), + [sym_super] = ACTIONS(2241), + [sym_true] = ACTIONS(2241), + [sym_false] = ACTIONS(2241), + [sym_null] = ACTIONS(2241), + [sym_undefined] = ACTIONS(2241), + [anon_sym_AT] = ACTIONS(2241), + [anon_sym_static] = ACTIONS(2241), + [anon_sym_readonly] = ACTIONS(2241), + [anon_sym_get] = ACTIONS(2241), + [anon_sym_set] = ACTIONS(2241), + [anon_sym_declare] = ACTIONS(2241), + [anon_sym_public] = ACTIONS(2241), + [anon_sym_private] = ACTIONS(2241), + [anon_sym_protected] = ACTIONS(2241), + [anon_sym_override] = ACTIONS(2241), + [anon_sym_module] = ACTIONS(2241), + [anon_sym_any] = ACTIONS(2241), + [anon_sym_number] = ACTIONS(2241), + [anon_sym_boolean] = ACTIONS(2241), + [anon_sym_string] = ACTIONS(2241), + [anon_sym_symbol] = ACTIONS(2241), + [anon_sym_object] = ACTIONS(2241), + [anon_sym_abstract] = ACTIONS(2241), + [anon_sym_interface] = ACTIONS(2241), + [anon_sym_enum] = ACTIONS(2241), + [sym__automatic_semicolon] = ACTIONS(2407), [sym_html_comment] = ACTIONS(5), }, [1172] = { [sym_comment] = STATE(1172), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [sym_identifier] = ACTIONS(3170), + [anon_sym_export] = ACTIONS(3170), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_type] = ACTIONS(3170), + [anon_sym_namespace] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3170), + [anon_sym_typeof] = ACTIONS(3170), + [anon_sym_import] = ACTIONS(3170), + [anon_sym_with] = ACTIONS(3170), + [anon_sym_var] = ACTIONS(3170), + [anon_sym_let] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_switch] = ACTIONS(3170), + [anon_sym_for] = ACTIONS(3170), + [anon_sym_LPAREN] = ACTIONS(3170), + [anon_sym_await] = ACTIONS(3170), + [anon_sym_while] = ACTIONS(3170), + [anon_sym_do] = ACTIONS(3170), + [anon_sym_try] = ACTIONS(3170), + [anon_sym_break] = ACTIONS(3170), + [anon_sym_continue] = ACTIONS(3170), + [anon_sym_debugger] = ACTIONS(3170), + [anon_sym_return] = ACTIONS(3170), + [anon_sym_throw] = ACTIONS(3170), + [anon_sym_SEMI] = ACTIONS(3170), + [anon_sym_case] = ACTIONS(3170), + [anon_sym_yield] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_LTtemplate_GT] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [anon_sym_SQUOTE] = ACTIONS(3170), + [anon_sym_class] = ACTIONS(3170), + [anon_sym_async] = ACTIONS(3170), + [anon_sym_function] = ACTIONS(3170), + [anon_sym_new] = ACTIONS(3170), + [anon_sym_using] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_SLASH] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_void] = ACTIONS(3170), + [anon_sym_delete] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3170), + [sym_private_property_identifier] = ACTIONS(3170), + [sym_this] = ACTIONS(3170), + [sym_super] = ACTIONS(3170), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [sym_null] = ACTIONS(3170), + [sym_undefined] = ACTIONS(3170), + [anon_sym_AT] = ACTIONS(3170), + [anon_sym_static] = ACTIONS(3170), + [anon_sym_readonly] = ACTIONS(3170), + [anon_sym_get] = ACTIONS(3170), + [anon_sym_set] = ACTIONS(3170), + [anon_sym_declare] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3170), + [anon_sym_private] = ACTIONS(3170), + [anon_sym_protected] = ACTIONS(3170), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_module] = ACTIONS(3170), + [anon_sym_any] = ACTIONS(3170), + [anon_sym_number] = ACTIONS(3170), + [anon_sym_boolean] = ACTIONS(3170), + [anon_sym_string] = ACTIONS(3170), + [anon_sym_symbol] = ACTIONS(3170), + [anon_sym_object] = ACTIONS(3170), + [anon_sym_abstract] = ACTIONS(3170), + [anon_sym_interface] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), [sym_html_comment] = ACTIONS(5), }, [1173] = { [sym_comment] = STATE(1173), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [ts_builtin_sym_end] = ACTIONS(2275), + [sym_identifier] = ACTIONS(2189), + [anon_sym_export] = ACTIONS(2189), + [anon_sym_type] = ACTIONS(2189), + [anon_sym_namespace] = ACTIONS(2189), + [anon_sym_LBRACE] = ACTIONS(2189), + [anon_sym_RBRACE] = ACTIONS(2189), + [anon_sym_typeof] = ACTIONS(2189), + [anon_sym_import] = ACTIONS(2189), + [anon_sym_with] = ACTIONS(2189), + [anon_sym_var] = ACTIONS(2189), + [anon_sym_let] = ACTIONS(2189), + [anon_sym_const] = ACTIONS(2189), + [anon_sym_BANG] = ACTIONS(2189), + [anon_sym_if] = ACTIONS(2189), + [anon_sym_switch] = ACTIONS(2189), + [anon_sym_for] = ACTIONS(2189), + [anon_sym_LPAREN] = ACTIONS(2189), + [anon_sym_await] = ACTIONS(2189), + [anon_sym_while] = ACTIONS(2189), + [anon_sym_do] = ACTIONS(2189), + [anon_sym_try] = ACTIONS(2189), + [anon_sym_break] = ACTIONS(2189), + [anon_sym_continue] = ACTIONS(2189), + [anon_sym_debugger] = ACTIONS(2189), + [anon_sym_return] = ACTIONS(2189), + [anon_sym_throw] = ACTIONS(2189), + [anon_sym_SEMI] = ACTIONS(2189), + [anon_sym_yield] = ACTIONS(2189), + [anon_sym_LBRACK] = ACTIONS(2189), + [anon_sym_LTtemplate_GT] = ACTIONS(2189), + [anon_sym_DQUOTE] = ACTIONS(2189), + [anon_sym_SQUOTE] = ACTIONS(2189), + [anon_sym_class] = ACTIONS(2189), + [anon_sym_async] = ACTIONS(2189), + [anon_sym_function] = ACTIONS(2189), + [anon_sym_new] = ACTIONS(2189), + [anon_sym_using] = ACTIONS(2189), + [anon_sym_PLUS] = ACTIONS(2189), + [anon_sym_DASH] = ACTIONS(2189), + [anon_sym_SLASH] = ACTIONS(2189), + [anon_sym_LT] = ACTIONS(2189), + [anon_sym_TILDE] = ACTIONS(2189), + [anon_sym_void] = ACTIONS(2189), + [anon_sym_delete] = ACTIONS(2189), + [anon_sym_PLUS_PLUS] = ACTIONS(2189), + [anon_sym_DASH_DASH] = ACTIONS(2189), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2189), + [sym_number] = ACTIONS(2189), + [sym_private_property_identifier] = ACTIONS(2189), + [sym_this] = ACTIONS(2189), + [sym_super] = ACTIONS(2189), + [sym_true] = ACTIONS(2189), + [sym_false] = ACTIONS(2189), + [sym_null] = ACTIONS(2189), + [sym_undefined] = ACTIONS(2189), + [anon_sym_AT] = ACTIONS(2189), + [anon_sym_static] = ACTIONS(2189), + [anon_sym_readonly] = ACTIONS(2189), + [anon_sym_get] = ACTIONS(2189), + [anon_sym_set] = ACTIONS(2189), + [anon_sym_declare] = ACTIONS(2189), + [anon_sym_public] = ACTIONS(2189), + [anon_sym_private] = ACTIONS(2189), + [anon_sym_protected] = ACTIONS(2189), + [anon_sym_override] = ACTIONS(2189), + [anon_sym_module] = ACTIONS(2189), + [anon_sym_any] = ACTIONS(2189), + [anon_sym_number] = ACTIONS(2189), + [anon_sym_boolean] = ACTIONS(2189), + [anon_sym_string] = ACTIONS(2189), + [anon_sym_symbol] = ACTIONS(2189), + [anon_sym_object] = ACTIONS(2189), + [anon_sym_abstract] = ACTIONS(2189), + [anon_sym_interface] = ACTIONS(2189), + [anon_sym_enum] = ACTIONS(2189), + [sym__automatic_semicolon] = ACTIONS(2443), [sym_html_comment] = ACTIONS(5), }, [1174] = { [sym_comment] = STATE(1174), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [ts_builtin_sym_end] = ACTIONS(3378), + [sym_identifier] = ACTIONS(3254), + [anon_sym_export] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_namespace] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_typeof] = ACTIONS(3254), + [anon_sym_import] = ACTIONS(3254), + [anon_sym_with] = ACTIONS(3254), + [anon_sym_var] = ACTIONS(3254), + [anon_sym_let] = ACTIONS(3254), + [anon_sym_const] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_else] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_switch] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_await] = ACTIONS(3254), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_do] = ACTIONS(3254), + [anon_sym_try] = ACTIONS(3254), + [anon_sym_break] = ACTIONS(3254), + [anon_sym_continue] = ACTIONS(3254), + [anon_sym_debugger] = ACTIONS(3254), + [anon_sym_return] = ACTIONS(3254), + [anon_sym_throw] = ACTIONS(3254), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_yield] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_LTtemplate_GT] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_class] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_function] = ACTIONS(3254), + [anon_sym_new] = ACTIONS(3254), + [anon_sym_using] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_SLASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_void] = ACTIONS(3254), + [anon_sym_delete] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3254), + [sym_number] = ACTIONS(3254), + [sym_private_property_identifier] = ACTIONS(3254), + [sym_this] = ACTIONS(3254), + [sym_super] = ACTIONS(3254), + [sym_true] = ACTIONS(3254), + [sym_false] = ACTIONS(3254), + [sym_null] = ACTIONS(3254), + [sym_undefined] = ACTIONS(3254), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_static] = ACTIONS(3254), + [anon_sym_readonly] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3254), + [anon_sym_set] = ACTIONS(3254), + [anon_sym_declare] = ACTIONS(3254), + [anon_sym_public] = ACTIONS(3254), + [anon_sym_private] = ACTIONS(3254), + [anon_sym_protected] = ACTIONS(3254), + [anon_sym_override] = ACTIONS(3254), + [anon_sym_module] = ACTIONS(3254), + [anon_sym_any] = ACTIONS(3254), + [anon_sym_number] = ACTIONS(3254), + [anon_sym_boolean] = ACTIONS(3254), + [anon_sym_string] = ACTIONS(3254), + [anon_sym_symbol] = ACTIONS(3254), + [anon_sym_object] = ACTIONS(3254), + [anon_sym_abstract] = ACTIONS(3254), + [anon_sym_interface] = ACTIONS(3254), + [anon_sym_enum] = ACTIONS(3254), [sym_html_comment] = ACTIONS(5), }, [1175] = { [sym_comment] = STATE(1175), - [sym_identifier] = ACTIONS(3340), - [anon_sym_export] = ACTIONS(3340), - [anon_sym_default] = ACTIONS(3340), - [anon_sym_type] = ACTIONS(3340), - [anon_sym_namespace] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [anon_sym_RBRACE] = ACTIONS(3340), - [anon_sym_typeof] = ACTIONS(3340), - [anon_sym_import] = ACTIONS(3340), - [anon_sym_with] = ACTIONS(3340), - [anon_sym_var] = ACTIONS(3340), - [anon_sym_let] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3340), - [anon_sym_await] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_do] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_debugger] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_case] = ACTIONS(3340), - [anon_sym_yield] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3340), - [anon_sym_LTtemplate_GT] = ACTIONS(3340), - [anon_sym_DQUOTE] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3340), - [anon_sym_async] = ACTIONS(3340), - [anon_sym_function] = ACTIONS(3340), - [anon_sym_new] = ACTIONS(3340), - [anon_sym_using] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3340), - [anon_sym_void] = ACTIONS(3340), - [anon_sym_delete] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3340), - [anon_sym_DASH_DASH] = ACTIONS(3340), + [ts_builtin_sym_end] = ACTIONS(3380), + [sym_identifier] = ACTIONS(3250), + [anon_sym_export] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_namespace] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_typeof] = ACTIONS(3250), + [anon_sym_import] = ACTIONS(3250), + [anon_sym_with] = ACTIONS(3250), + [anon_sym_var] = ACTIONS(3250), + [anon_sym_let] = ACTIONS(3250), + [anon_sym_const] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_switch] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym_await] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_do] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_debugger] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym_yield] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3250), + [anon_sym_LTtemplate_GT] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_function] = ACTIONS(3250), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_using] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_void] = ACTIONS(3250), + [anon_sym_delete] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3340), - [sym_number] = ACTIONS(3340), - [sym_private_property_identifier] = ACTIONS(3340), - [sym_this] = ACTIONS(3340), - [sym_super] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_null] = ACTIONS(3340), - [sym_undefined] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3340), - [anon_sym_static] = ACTIONS(3340), - [anon_sym_readonly] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3340), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_declare] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_protected] = ACTIONS(3340), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3340), - [anon_sym_any] = ACTIONS(3340), - [anon_sym_number] = ACTIONS(3340), - [anon_sym_boolean] = ACTIONS(3340), - [anon_sym_string] = ACTIONS(3340), - [anon_sym_symbol] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), + [anon_sym_BQUOTE] = ACTIONS(3250), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), + [sym_this] = ACTIONS(3250), + [sym_super] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_null] = ACTIONS(3250), + [sym_undefined] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3250), + [anon_sym_static] = ACTIONS(3250), + [anon_sym_readonly] = ACTIONS(3250), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_declare] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_module] = ACTIONS(3250), + [anon_sym_any] = ACTIONS(3250), + [anon_sym_number] = ACTIONS(3250), + [anon_sym_boolean] = ACTIONS(3250), + [anon_sym_string] = ACTIONS(3250), + [anon_sym_symbol] = ACTIONS(3250), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_interface] = ACTIONS(3250), + [anon_sym_enum] = ACTIONS(3250), [sym_html_comment] = ACTIONS(5), }, [1176] = { [sym_comment] = STATE(1176), - [sym_identifier] = ACTIONS(3342), - [anon_sym_export] = ACTIONS(3342), - [anon_sym_default] = ACTIONS(3342), - [anon_sym_type] = ACTIONS(3342), - [anon_sym_namespace] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_typeof] = ACTIONS(3342), - [anon_sym_import] = ACTIONS(3342), - [anon_sym_with] = ACTIONS(3342), - [anon_sym_var] = ACTIONS(3342), - [anon_sym_let] = ACTIONS(3342), - [anon_sym_const] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3342), - [anon_sym_if] = ACTIONS(3342), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_for] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_await] = ACTIONS(3342), - [anon_sym_while] = ACTIONS(3342), - [anon_sym_do] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(3342), - [anon_sym_break] = ACTIONS(3342), - [anon_sym_continue] = ACTIONS(3342), - [anon_sym_debugger] = ACTIONS(3342), - [anon_sym_return] = ACTIONS(3342), - [anon_sym_throw] = ACTIONS(3342), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3342), - [anon_sym_yield] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_LTtemplate_GT] = ACTIONS(3342), - [anon_sym_DQUOTE] = ACTIONS(3342), - [anon_sym_SQUOTE] = ACTIONS(3342), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_async] = ACTIONS(3342), - [anon_sym_function] = ACTIONS(3342), - [anon_sym_new] = ACTIONS(3342), - [anon_sym_using] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3342), - [anon_sym_DASH] = ACTIONS(3342), - [anon_sym_SLASH] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3342), - [anon_sym_TILDE] = ACTIONS(3342), - [anon_sym_void] = ACTIONS(3342), - [anon_sym_delete] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), + [ts_builtin_sym_end] = ACTIONS(3382), + [sym_identifier] = ACTIONS(3234), + [anon_sym_export] = ACTIONS(3234), + [anon_sym_type] = ACTIONS(3234), + [anon_sym_namespace] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3234), + [anon_sym_typeof] = ACTIONS(3234), + [anon_sym_import] = ACTIONS(3234), + [anon_sym_with] = ACTIONS(3234), + [anon_sym_var] = ACTIONS(3234), + [anon_sym_let] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_LPAREN] = ACTIONS(3234), + [anon_sym_await] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_debugger] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3234), + [anon_sym_yield] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3234), + [anon_sym_LTtemplate_GT] = ACTIONS(3234), + [anon_sym_DQUOTE] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3234), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_async] = ACTIONS(3234), + [anon_sym_function] = ACTIONS(3234), + [anon_sym_new] = ACTIONS(3234), + [anon_sym_using] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_LT] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_void] = ACTIONS(3234), + [anon_sym_delete] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3234), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3342), - [sym_number] = ACTIONS(3342), - [sym_private_property_identifier] = ACTIONS(3342), - [sym_this] = ACTIONS(3342), - [sym_super] = ACTIONS(3342), - [sym_true] = ACTIONS(3342), - [sym_false] = ACTIONS(3342), - [sym_null] = ACTIONS(3342), - [sym_undefined] = ACTIONS(3342), - [anon_sym_AT] = ACTIONS(3342), - [anon_sym_static] = ACTIONS(3342), - [anon_sym_readonly] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3342), - [anon_sym_set] = ACTIONS(3342), - [anon_sym_declare] = ACTIONS(3342), - [anon_sym_public] = ACTIONS(3342), - [anon_sym_private] = ACTIONS(3342), - [anon_sym_protected] = ACTIONS(3342), - [anon_sym_override] = ACTIONS(3342), - [anon_sym_module] = ACTIONS(3342), - [anon_sym_any] = ACTIONS(3342), - [anon_sym_number] = ACTIONS(3342), - [anon_sym_boolean] = ACTIONS(3342), - [anon_sym_string] = ACTIONS(3342), - [anon_sym_symbol] = ACTIONS(3342), - [anon_sym_object] = ACTIONS(3342), - [anon_sym_abstract] = ACTIONS(3342), - [anon_sym_interface] = ACTIONS(3342), - [anon_sym_enum] = ACTIONS(3342), + [anon_sym_BQUOTE] = ACTIONS(3234), + [sym_number] = ACTIONS(3234), + [sym_private_property_identifier] = ACTIONS(3234), + [sym_this] = ACTIONS(3234), + [sym_super] = ACTIONS(3234), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_null] = ACTIONS(3234), + [sym_undefined] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3234), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_readonly] = ACTIONS(3234), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_declare] = ACTIONS(3234), + [anon_sym_public] = ACTIONS(3234), + [anon_sym_private] = ACTIONS(3234), + [anon_sym_protected] = ACTIONS(3234), + [anon_sym_override] = ACTIONS(3234), + [anon_sym_module] = ACTIONS(3234), + [anon_sym_any] = ACTIONS(3234), + [anon_sym_number] = ACTIONS(3234), + [anon_sym_boolean] = ACTIONS(3234), + [anon_sym_string] = ACTIONS(3234), + [anon_sym_symbol] = ACTIONS(3234), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_abstract] = ACTIONS(3234), + [anon_sym_interface] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), [sym_html_comment] = ACTIONS(5), }, [1177] = { [sym_comment] = STATE(1177), - [sym_identifier] = ACTIONS(3344), - [anon_sym_export] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3344), - [anon_sym_type] = ACTIONS(3344), - [anon_sym_namespace] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_RBRACE] = ACTIONS(3344), - [anon_sym_typeof] = ACTIONS(3344), - [anon_sym_import] = ACTIONS(3344), - [anon_sym_with] = ACTIONS(3344), - [anon_sym_var] = ACTIONS(3344), - [anon_sym_let] = ACTIONS(3344), - [anon_sym_const] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_switch] = ACTIONS(3344), - [anon_sym_for] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_await] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_do] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_debugger] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_yield] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_LTtemplate_GT] = ACTIONS(3344), - [anon_sym_DQUOTE] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3344), - [anon_sym_class] = ACTIONS(3344), - [anon_sym_async] = ACTIONS(3344), - [anon_sym_function] = ACTIONS(3344), - [anon_sym_new] = ACTIONS(3344), - [anon_sym_using] = ACTIONS(3344), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_void] = ACTIONS(3344), - [anon_sym_delete] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_DASH_DASH] = ACTIONS(3344), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3344), - [sym_number] = ACTIONS(3344), - [sym_private_property_identifier] = ACTIONS(3344), - [sym_this] = ACTIONS(3344), - [sym_super] = ACTIONS(3344), - [sym_true] = ACTIONS(3344), - [sym_false] = ACTIONS(3344), - [sym_null] = ACTIONS(3344), - [sym_undefined] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3344), - [anon_sym_static] = ACTIONS(3344), - [anon_sym_readonly] = ACTIONS(3344), - [anon_sym_get] = ACTIONS(3344), - [anon_sym_set] = ACTIONS(3344), - [anon_sym_declare] = ACTIONS(3344), - [anon_sym_public] = ACTIONS(3344), - [anon_sym_private] = ACTIONS(3344), - [anon_sym_protected] = ACTIONS(3344), - [anon_sym_override] = ACTIONS(3344), - [anon_sym_module] = ACTIONS(3344), - [anon_sym_any] = ACTIONS(3344), - [anon_sym_number] = ACTIONS(3344), - [anon_sym_boolean] = ACTIONS(3344), - [anon_sym_string] = ACTIONS(3344), - [anon_sym_symbol] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_abstract] = ACTIONS(3344), - [anon_sym_interface] = ACTIONS(3344), - [anon_sym_enum] = ACTIONS(3344), + [ts_builtin_sym_end] = ACTIONS(3186), + [sym_identifier] = ACTIONS(3094), + [anon_sym_export] = ACTIONS(3094), + [anon_sym_type] = ACTIONS(3094), + [anon_sym_namespace] = ACTIONS(3094), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_typeof] = ACTIONS(3094), + [anon_sym_import] = ACTIONS(3094), + [anon_sym_with] = ACTIONS(3094), + [anon_sym_var] = ACTIONS(3094), + [anon_sym_let] = ACTIONS(3094), + [anon_sym_const] = ACTIONS(3094), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_if] = ACTIONS(3094), + [anon_sym_switch] = ACTIONS(3094), + [anon_sym_for] = ACTIONS(3094), + [anon_sym_LPAREN] = ACTIONS(3094), + [anon_sym_await] = ACTIONS(3094), + [anon_sym_while] = ACTIONS(3094), + [anon_sym_do] = ACTIONS(3094), + [anon_sym_try] = ACTIONS(3094), + [anon_sym_break] = ACTIONS(3094), + [anon_sym_continue] = ACTIONS(3094), + [anon_sym_debugger] = ACTIONS(3094), + [anon_sym_return] = ACTIONS(3094), + [anon_sym_throw] = ACTIONS(3094), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_finally] = ACTIONS(3094), + [anon_sym_yield] = ACTIONS(3094), + [anon_sym_LBRACK] = ACTIONS(3094), + [anon_sym_LTtemplate_GT] = ACTIONS(3094), + [anon_sym_DQUOTE] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3094), + [anon_sym_class] = ACTIONS(3094), + [anon_sym_async] = ACTIONS(3094), + [anon_sym_function] = ACTIONS(3094), + [anon_sym_new] = ACTIONS(3094), + [anon_sym_using] = ACTIONS(3094), + [anon_sym_PLUS] = ACTIONS(3094), + [anon_sym_DASH] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_TILDE] = ACTIONS(3094), + [anon_sym_void] = ACTIONS(3094), + [anon_sym_delete] = ACTIONS(3094), + [anon_sym_PLUS_PLUS] = ACTIONS(3094), + [anon_sym_DASH_DASH] = ACTIONS(3094), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3094), + [sym_number] = ACTIONS(3094), + [sym_private_property_identifier] = ACTIONS(3094), + [sym_this] = ACTIONS(3094), + [sym_super] = ACTIONS(3094), + [sym_true] = ACTIONS(3094), + [sym_false] = ACTIONS(3094), + [sym_null] = ACTIONS(3094), + [sym_undefined] = ACTIONS(3094), + [anon_sym_AT] = ACTIONS(3094), + [anon_sym_static] = ACTIONS(3094), + [anon_sym_readonly] = ACTIONS(3094), + [anon_sym_get] = ACTIONS(3094), + [anon_sym_set] = ACTIONS(3094), + [anon_sym_declare] = ACTIONS(3094), + [anon_sym_public] = ACTIONS(3094), + [anon_sym_private] = ACTIONS(3094), + [anon_sym_protected] = ACTIONS(3094), + [anon_sym_override] = ACTIONS(3094), + [anon_sym_module] = ACTIONS(3094), + [anon_sym_any] = ACTIONS(3094), + [anon_sym_number] = ACTIONS(3094), + [anon_sym_boolean] = ACTIONS(3094), + [anon_sym_string] = ACTIONS(3094), + [anon_sym_symbol] = ACTIONS(3094), + [anon_sym_object] = ACTIONS(3094), + [anon_sym_abstract] = ACTIONS(3094), + [anon_sym_interface] = ACTIONS(3094), + [anon_sym_enum] = ACTIONS(3094), [sym_html_comment] = ACTIONS(5), }, [1178] = { [sym_comment] = STATE(1178), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [ts_builtin_sym_end] = ACTIONS(3384), + [sym_identifier] = ACTIONS(3278), + [anon_sym_export] = ACTIONS(3278), + [anon_sym_type] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3278), + [anon_sym_RBRACE] = ACTIONS(3278), + [anon_sym_typeof] = ACTIONS(3278), + [anon_sym_import] = ACTIONS(3278), + [anon_sym_with] = ACTIONS(3278), + [anon_sym_var] = ACTIONS(3278), + [anon_sym_let] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_LPAREN] = ACTIONS(3278), + [anon_sym_await] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_debugger] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3278), + [anon_sym_yield] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_LTtemplate_GT] = ACTIONS(3278), + [anon_sym_DQUOTE] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3278), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_async] = ACTIONS(3278), + [anon_sym_function] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3278), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_TILDE] = ACTIONS(3278), + [anon_sym_void] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_PLUS_PLUS] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3278), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3278), + [sym_number] = ACTIONS(3278), + [sym_private_property_identifier] = ACTIONS(3278), + [sym_this] = ACTIONS(3278), + [sym_super] = ACTIONS(3278), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [sym_null] = ACTIONS(3278), + [sym_undefined] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_readonly] = ACTIONS(3278), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_declare] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_module] = ACTIONS(3278), + [anon_sym_any] = ACTIONS(3278), + [anon_sym_number] = ACTIONS(3278), + [anon_sym_boolean] = ACTIONS(3278), + [anon_sym_string] = ACTIONS(3278), + [anon_sym_symbol] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_interface] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), [sym_html_comment] = ACTIONS(5), }, [1179] = { [sym_comment] = STATE(1179), - [sym_identifier] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3346), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_typeof] = ACTIONS(3346), - [anon_sym_import] = ACTIONS(3346), - [anon_sym_with] = ACTIONS(3346), - [anon_sym_var] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_await] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_debugger] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3346), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LTtemplate_GT] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_async] = ACTIONS(3346), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_void] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3346), - [sym_number] = ACTIONS(3346), - [sym_private_property_identifier] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - [sym_super] = ACTIONS(3346), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [sym_null] = ACTIONS(3346), - [sym_undefined] = ACTIONS(3346), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_readonly] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3346), - [anon_sym_set] = ACTIONS(3346), - [anon_sym_declare] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3346), - [anon_sym_private] = ACTIONS(3346), - [anon_sym_protected] = ACTIONS(3346), - [anon_sym_override] = ACTIONS(3346), - [anon_sym_module] = ACTIONS(3346), - [anon_sym_any] = ACTIONS(3346), - [anon_sym_number] = ACTIONS(3346), - [anon_sym_boolean] = ACTIONS(3346), - [anon_sym_string] = ACTIONS(3346), - [anon_sym_symbol] = ACTIONS(3346), - [anon_sym_object] = ACTIONS(3346), - [anon_sym_abstract] = ACTIONS(3346), - [anon_sym_interface] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), - [sym_html_comment] = ACTIONS(5), - }, - [1180] = { - [sym_comment] = STATE(1180), - [sym_identifier] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3346), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_typeof] = ACTIONS(3346), - [anon_sym_import] = ACTIONS(3346), - [anon_sym_with] = ACTIONS(3346), - [anon_sym_var] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_await] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_debugger] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3346), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LTtemplate_GT] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_async] = ACTIONS(3346), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_void] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3346), - [sym_number] = ACTIONS(3346), - [sym_private_property_identifier] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - [sym_super] = ACTIONS(3346), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [sym_null] = ACTIONS(3346), - [sym_undefined] = ACTIONS(3346), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_readonly] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3346), - [anon_sym_set] = ACTIONS(3346), - [anon_sym_declare] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3346), - [anon_sym_private] = ACTIONS(3346), - [anon_sym_protected] = ACTIONS(3346), - [anon_sym_override] = ACTIONS(3346), - [anon_sym_module] = ACTIONS(3346), - [anon_sym_any] = ACTIONS(3346), - [anon_sym_number] = ACTIONS(3346), - [anon_sym_boolean] = ACTIONS(3346), - [anon_sym_string] = ACTIONS(3346), - [anon_sym_symbol] = ACTIONS(3346), - [anon_sym_object] = ACTIONS(3346), - [anon_sym_abstract] = ACTIONS(3346), - [anon_sym_interface] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), - [sym_html_comment] = ACTIONS(5), - }, - [1181] = { - [sym_comment] = STATE(1181), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1182] = { - [sym_comment] = STATE(1182), - [ts_builtin_sym_end] = ACTIONS(3348), - [sym_identifier] = ACTIONS(3100), - [anon_sym_export] = ACTIONS(3100), - [anon_sym_type] = ACTIONS(3100), - [anon_sym_namespace] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3100), - [anon_sym_RBRACE] = ACTIONS(3100), - [anon_sym_typeof] = ACTIONS(3100), - [anon_sym_import] = ACTIONS(3100), - [anon_sym_with] = ACTIONS(3100), - [anon_sym_var] = ACTIONS(3100), - [anon_sym_let] = ACTIONS(3100), - [anon_sym_const] = ACTIONS(3100), - [anon_sym_BANG] = ACTIONS(3100), - [anon_sym_else] = ACTIONS(3100), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_switch] = ACTIONS(3100), - [anon_sym_for] = ACTIONS(3100), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_await] = ACTIONS(3100), - [anon_sym_while] = ACTIONS(3100), - [anon_sym_do] = ACTIONS(3100), - [anon_sym_try] = ACTIONS(3100), - [anon_sym_break] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(3100), - [anon_sym_debugger] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_SEMI] = ACTIONS(3350), - [anon_sym_yield] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_LTtemplate_GT] = ACTIONS(3100), - [anon_sym_DQUOTE] = ACTIONS(3100), - [anon_sym_SQUOTE] = ACTIONS(3100), - [anon_sym_class] = ACTIONS(3100), - [anon_sym_async] = ACTIONS(3100), - [anon_sym_function] = ACTIONS(3100), - [anon_sym_new] = ACTIONS(3100), - [anon_sym_using] = ACTIONS(3100), - [anon_sym_PLUS] = ACTIONS(3100), - [anon_sym_DASH] = ACTIONS(3100), - [anon_sym_SLASH] = ACTIONS(3100), - [anon_sym_LT] = ACTIONS(3100), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_void] = ACTIONS(3100), - [anon_sym_delete] = ACTIONS(3100), - [anon_sym_PLUS_PLUS] = ACTIONS(3100), - [anon_sym_DASH_DASH] = ACTIONS(3100), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3100), - [sym_number] = ACTIONS(3100), - [sym_private_property_identifier] = ACTIONS(3100), - [sym_this] = ACTIONS(3100), - [sym_super] = ACTIONS(3100), - [sym_true] = ACTIONS(3100), - [sym_false] = ACTIONS(3100), - [sym_null] = ACTIONS(3100), - [sym_undefined] = ACTIONS(3100), - [anon_sym_AT] = ACTIONS(3100), - [anon_sym_static] = ACTIONS(3100), - [anon_sym_readonly] = ACTIONS(3100), - [anon_sym_get] = ACTIONS(3100), - [anon_sym_set] = ACTIONS(3100), - [anon_sym_declare] = ACTIONS(3100), - [anon_sym_public] = ACTIONS(3100), - [anon_sym_private] = ACTIONS(3100), - [anon_sym_protected] = ACTIONS(3100), - [anon_sym_override] = ACTIONS(3100), - [anon_sym_module] = ACTIONS(3100), - [anon_sym_any] = ACTIONS(3100), - [anon_sym_number] = ACTIONS(3100), - [anon_sym_boolean] = ACTIONS(3100), - [anon_sym_string] = ACTIONS(3100), - [anon_sym_symbol] = ACTIONS(3100), - [anon_sym_object] = ACTIONS(3100), - [anon_sym_abstract] = ACTIONS(3100), - [anon_sym_interface] = ACTIONS(3100), - [anon_sym_enum] = ACTIONS(3100), - [sym__automatic_semicolon] = ACTIONS(3352), - [sym_html_comment] = ACTIONS(5), - }, - [1183] = { - [sym_comment] = STATE(1183), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_catch] = ACTIONS(2105), - [anon_sym_finally] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym_html_comment] = ACTIONS(5), - }, - [1184] = { - [sym_comment] = STATE(1184), - [sym_identifier] = ACTIONS(3354), - [anon_sym_export] = ACTIONS(3354), - [anon_sym_default] = ACTIONS(3354), - [anon_sym_type] = ACTIONS(3354), - [anon_sym_namespace] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_typeof] = ACTIONS(3354), - [anon_sym_import] = ACTIONS(3354), - [anon_sym_with] = ACTIONS(3354), - [anon_sym_var] = ACTIONS(3354), - [anon_sym_let] = ACTIONS(3354), - [anon_sym_const] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_else] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_await] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_debugger] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym_case] = ACTIONS(3354), - [anon_sym_yield] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_LTtemplate_GT] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_async] = ACTIONS(3354), - [anon_sym_function] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_void] = ACTIONS(3354), - [anon_sym_delete] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3354), - [sym_number] = ACTIONS(3354), - [sym_private_property_identifier] = ACTIONS(3354), - [sym_this] = ACTIONS(3354), - [sym_super] = ACTIONS(3354), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [sym_null] = ACTIONS(3354), - [sym_undefined] = ACTIONS(3354), - [anon_sym_AT] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_readonly] = ACTIONS(3354), - [anon_sym_get] = ACTIONS(3354), - [anon_sym_set] = ACTIONS(3354), - [anon_sym_declare] = ACTIONS(3354), - [anon_sym_public] = ACTIONS(3354), - [anon_sym_private] = ACTIONS(3354), - [anon_sym_protected] = ACTIONS(3354), - [anon_sym_override] = ACTIONS(3354), - [anon_sym_module] = ACTIONS(3354), - [anon_sym_any] = ACTIONS(3354), - [anon_sym_number] = ACTIONS(3354), - [anon_sym_boolean] = ACTIONS(3354), - [anon_sym_string] = ACTIONS(3354), - [anon_sym_symbol] = ACTIONS(3354), - [anon_sym_object] = ACTIONS(3354), - [anon_sym_abstract] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), - [sym_html_comment] = ACTIONS(5), - }, - [1185] = { - [sym_comment] = STATE(1185), - [sym_identifier] = ACTIONS(3356), - [anon_sym_export] = ACTIONS(3356), - [anon_sym_default] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_namespace] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_RBRACE] = ACTIONS(3356), - [anon_sym_typeof] = ACTIONS(3356), - [anon_sym_import] = ACTIONS(3356), - [anon_sym_with] = ACTIONS(3356), - [anon_sym_var] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_else] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_switch] = ACTIONS(3356), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_await] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_break] = ACTIONS(3356), - [anon_sym_continue] = ACTIONS(3356), - [anon_sym_debugger] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_throw] = ACTIONS(3356), - [anon_sym_SEMI] = ACTIONS(3356), - [anon_sym_case] = ACTIONS(3356), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LTtemplate_GT] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(3356), - [anon_sym_class] = ACTIONS(3356), - [anon_sym_async] = ACTIONS(3356), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_using] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_SLASH] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_void] = ACTIONS(3356), - [anon_sym_delete] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_DASH_DASH] = ACTIONS(3356), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3356), - [sym_number] = ACTIONS(3356), - [sym_private_property_identifier] = ACTIONS(3356), - [sym_this] = ACTIONS(3356), - [sym_super] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_null] = ACTIONS(3356), - [sym_undefined] = ACTIONS(3356), - [anon_sym_AT] = ACTIONS(3356), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3356), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3356), - [anon_sym_declare] = ACTIONS(3356), - [anon_sym_public] = ACTIONS(3356), - [anon_sym_private] = ACTIONS(3356), - [anon_sym_protected] = ACTIONS(3356), - [anon_sym_override] = ACTIONS(3356), - [anon_sym_module] = ACTIONS(3356), - [anon_sym_any] = ACTIONS(3356), - [anon_sym_number] = ACTIONS(3356), - [anon_sym_boolean] = ACTIONS(3356), - [anon_sym_string] = ACTIONS(3356), - [anon_sym_symbol] = ACTIONS(3356), - [anon_sym_object] = ACTIONS(3356), - [anon_sym_abstract] = ACTIONS(3356), - [anon_sym_interface] = ACTIONS(3356), - [anon_sym_enum] = ACTIONS(3356), - [sym_html_comment] = ACTIONS(5), - }, - [1186] = { - [sym_comment] = STATE(1186), - [ts_builtin_sym_end] = ACTIONS(2315), - [sym_identifier] = ACTIONS(2159), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_namespace] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_typeof] = ACTIONS(2159), - [anon_sym_import] = ACTIONS(2159), - [anon_sym_with] = ACTIONS(2159), - [anon_sym_var] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_else] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_switch] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2159), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_debugger] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_throw] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_yield] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LTtemplate_GT] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_class] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_function] = ACTIONS(2159), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_using] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_void] = ACTIONS(2159), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2159), - [sym_number] = ACTIONS(2159), - [sym_private_property_identifier] = ACTIONS(2159), - [sym_this] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_null] = ACTIONS(2159), - [sym_undefined] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [anon_sym_static] = ACTIONS(2159), - [anon_sym_readonly] = ACTIONS(2159), - [anon_sym_get] = ACTIONS(2159), - [anon_sym_set] = ACTIONS(2159), - [anon_sym_declare] = ACTIONS(2159), - [anon_sym_public] = ACTIONS(2159), - [anon_sym_private] = ACTIONS(2159), - [anon_sym_protected] = ACTIONS(2159), - [anon_sym_override] = ACTIONS(2159), - [anon_sym_module] = ACTIONS(2159), - [anon_sym_any] = ACTIONS(2159), - [anon_sym_number] = ACTIONS(2159), - [anon_sym_boolean] = ACTIONS(2159), - [anon_sym_string] = ACTIONS(2159), - [anon_sym_symbol] = ACTIONS(2159), - [anon_sym_object] = ACTIONS(2159), - [anon_sym_abstract] = ACTIONS(2159), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [sym__automatic_semicolon] = ACTIONS(2317), - [sym_html_comment] = ACTIONS(5), - }, - [1187] = { - [sym_comment] = STATE(1187), + [ts_builtin_sym_end] = ACTIONS(3386), [sym_identifier] = ACTIONS(3358), [anon_sym_export] = ACTIONS(3358), - [anon_sym_default] = ACTIONS(3358), [anon_sym_type] = ACTIONS(3358), [anon_sym_namespace] = ACTIONS(3358), [anon_sym_LBRACE] = ACTIONS(3358), @@ -160915,7 +159923,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3358), [anon_sym_throw] = ACTIONS(3358), [anon_sym_SEMI] = ACTIONS(3358), - [anon_sym_case] = ACTIONS(3358), [anon_sym_yield] = ACTIONS(3358), [anon_sym_LBRACK] = ACTIONS(3358), [anon_sym_LTtemplate_GT] = ACTIONS(3358), @@ -160967,4117 +159974,2387 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3358), [sym_html_comment] = ACTIONS(5), }, - [1188] = { - [sym_comment] = STATE(1188), - [sym_identifier] = ACTIONS(3358), - [anon_sym_export] = ACTIONS(3358), - [anon_sym_default] = ACTIONS(3358), - [anon_sym_type] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_RBRACE] = ACTIONS(3358), - [anon_sym_typeof] = ACTIONS(3358), - [anon_sym_import] = ACTIONS(3358), - [anon_sym_with] = ACTIONS(3358), - [anon_sym_var] = ACTIONS(3358), - [anon_sym_let] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3358), - [anon_sym_else] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_await] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_debugger] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3358), - [anon_sym_case] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_LTtemplate_GT] = ACTIONS(3358), - [anon_sym_DQUOTE] = ACTIONS(3358), - [anon_sym_SQUOTE] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_async] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_void] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), + [1180] = { + [sym_comment] = STATE(1180), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_default] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_case] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3358), - [sym_number] = ACTIONS(3358), - [sym_private_property_identifier] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), - [sym_super] = ACTIONS(3358), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [sym_null] = ACTIONS(3358), - [sym_undefined] = ACTIONS(3358), - [anon_sym_AT] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3358), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_declare] = ACTIONS(3358), - [anon_sym_public] = ACTIONS(3358), - [anon_sym_private] = ACTIONS(3358), - [anon_sym_protected] = ACTIONS(3358), - [anon_sym_override] = ACTIONS(3358), - [anon_sym_module] = ACTIONS(3358), - [anon_sym_any] = ACTIONS(3358), - [anon_sym_number] = ACTIONS(3358), - [anon_sym_boolean] = ACTIONS(3358), - [anon_sym_string] = ACTIONS(3358), - [anon_sym_symbol] = ACTIONS(3358), - [anon_sym_object] = ACTIONS(3358), - [anon_sym_abstract] = ACTIONS(3358), - [anon_sym_interface] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), - [sym_html_comment] = ACTIONS(5), - }, - [1189] = { - [sym_comment] = STATE(1189), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_catch] = ACTIONS(2093), - [anon_sym_finally] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym_html_comment] = ACTIONS(5), - }, - [1190] = { - [sym_comment] = STATE(1190), - [sym_identifier] = ACTIONS(2135), - [anon_sym_export] = ACTIONS(2135), - [anon_sym_default] = ACTIONS(2135), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_namespace] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_typeof] = ACTIONS(2135), - [anon_sym_import] = ACTIONS(2135), - [anon_sym_with] = ACTIONS(2135), - [anon_sym_var] = ACTIONS(2135), - [anon_sym_let] = ACTIONS(2135), - [anon_sym_const] = ACTIONS(2135), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_switch] = ACTIONS(2135), - [anon_sym_for] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2135), - [anon_sym_while] = ACTIONS(2135), - [anon_sym_do] = ACTIONS(2135), - [anon_sym_try] = ACTIONS(2135), - [anon_sym_break] = ACTIONS(2135), - [anon_sym_continue] = ACTIONS(2135), - [anon_sym_debugger] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2135), - [anon_sym_throw] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_case] = ACTIONS(2135), - [anon_sym_yield] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_LTtemplate_GT] = ACTIONS(2135), - [anon_sym_DQUOTE] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_class] = ACTIONS(2135), - [anon_sym_async] = ACTIONS(2135), - [anon_sym_function] = ACTIONS(2135), - [anon_sym_new] = ACTIONS(2135), - [anon_sym_using] = ACTIONS(2135), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_SLASH] = ACTIONS(2135), - [anon_sym_LT] = ACTIONS(2135), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_void] = ACTIONS(2135), - [anon_sym_delete] = ACTIONS(2135), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2135), - [sym_number] = ACTIONS(2135), - [sym_private_property_identifier] = ACTIONS(2135), - [sym_this] = ACTIONS(2135), - [sym_super] = ACTIONS(2135), - [sym_true] = ACTIONS(2135), - [sym_false] = ACTIONS(2135), - [sym_null] = ACTIONS(2135), - [sym_undefined] = ACTIONS(2135), - [anon_sym_AT] = ACTIONS(2135), - [anon_sym_static] = ACTIONS(2135), - [anon_sym_readonly] = ACTIONS(2135), - [anon_sym_get] = ACTIONS(2135), - [anon_sym_set] = ACTIONS(2135), - [anon_sym_declare] = ACTIONS(2135), - [anon_sym_public] = ACTIONS(2135), - [anon_sym_private] = ACTIONS(2135), - [anon_sym_protected] = ACTIONS(2135), - [anon_sym_override] = ACTIONS(2135), - [anon_sym_module] = ACTIONS(2135), - [anon_sym_any] = ACTIONS(2135), - [anon_sym_number] = ACTIONS(2135), - [anon_sym_boolean] = ACTIONS(2135), - [anon_sym_string] = ACTIONS(2135), - [anon_sym_symbol] = ACTIONS(2135), - [anon_sym_object] = ACTIONS(2135), - [anon_sym_abstract] = ACTIONS(2135), - [anon_sym_interface] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(2135), - [sym__automatic_semicolon] = ACTIONS(2363), - [sym_html_comment] = ACTIONS(5), - }, - [1191] = { - [sym_statement_block] = STATE(1580), - [sym_comment] = STATE(1191), - [ts_builtin_sym_end] = ACTIONS(2059), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(3362), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, - [1192] = { - [sym_comment] = STATE(1192), - [sym_identifier] = ACTIONS(3364), - [anon_sym_export] = ACTIONS(3364), - [anon_sym_default] = ACTIONS(3364), - [anon_sym_type] = ACTIONS(3364), - [anon_sym_namespace] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_RBRACE] = ACTIONS(3364), - [anon_sym_typeof] = ACTIONS(3364), - [anon_sym_import] = ACTIONS(3364), - [anon_sym_with] = ACTIONS(3364), - [anon_sym_var] = ACTIONS(3364), - [anon_sym_let] = ACTIONS(3364), - [anon_sym_const] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_else] = ACTIONS(3364), - [anon_sym_if] = ACTIONS(3364), - [anon_sym_switch] = ACTIONS(3364), - [anon_sym_for] = ACTIONS(3364), - [anon_sym_LPAREN] = ACTIONS(3364), - [anon_sym_await] = ACTIONS(3364), - [anon_sym_while] = ACTIONS(3364), - [anon_sym_do] = ACTIONS(3364), - [anon_sym_try] = ACTIONS(3364), - [anon_sym_break] = ACTIONS(3364), - [anon_sym_continue] = ACTIONS(3364), - [anon_sym_debugger] = ACTIONS(3364), - [anon_sym_return] = ACTIONS(3364), - [anon_sym_throw] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_case] = ACTIONS(3364), - [anon_sym_yield] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_LTtemplate_GT] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_class] = ACTIONS(3364), - [anon_sym_async] = ACTIONS(3364), - [anon_sym_function] = ACTIONS(3364), - [anon_sym_new] = ACTIONS(3364), - [anon_sym_using] = ACTIONS(3364), - [anon_sym_PLUS] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3364), - [anon_sym_SLASH] = ACTIONS(3364), - [anon_sym_LT] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_void] = ACTIONS(3364), - [anon_sym_delete] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_DASH_DASH] = ACTIONS(3364), + [1181] = { + [sym_comment] = STATE(1181), + [sym_identifier] = ACTIONS(3278), + [anon_sym_export] = ACTIONS(3278), + [anon_sym_default] = ACTIONS(3278), + [anon_sym_type] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3278), + [anon_sym_RBRACE] = ACTIONS(3278), + [anon_sym_typeof] = ACTIONS(3278), + [anon_sym_import] = ACTIONS(3278), + [anon_sym_with] = ACTIONS(3278), + [anon_sym_var] = ACTIONS(3278), + [anon_sym_let] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_LPAREN] = ACTIONS(3278), + [anon_sym_await] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_debugger] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3278), + [anon_sym_case] = ACTIONS(3278), + [anon_sym_yield] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_LTtemplate_GT] = ACTIONS(3278), + [anon_sym_DQUOTE] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3278), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_async] = ACTIONS(3278), + [anon_sym_function] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3278), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_TILDE] = ACTIONS(3278), + [anon_sym_void] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_PLUS_PLUS] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3278), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3364), - [sym_number] = ACTIONS(3364), - [sym_private_property_identifier] = ACTIONS(3364), - [sym_this] = ACTIONS(3364), - [sym_super] = ACTIONS(3364), - [sym_true] = ACTIONS(3364), - [sym_false] = ACTIONS(3364), - [sym_null] = ACTIONS(3364), - [sym_undefined] = ACTIONS(3364), - [anon_sym_AT] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(3364), - [anon_sym_readonly] = ACTIONS(3364), - [anon_sym_get] = ACTIONS(3364), - [anon_sym_set] = ACTIONS(3364), - [anon_sym_declare] = ACTIONS(3364), - [anon_sym_public] = ACTIONS(3364), - [anon_sym_private] = ACTIONS(3364), - [anon_sym_protected] = ACTIONS(3364), - [anon_sym_override] = ACTIONS(3364), - [anon_sym_module] = ACTIONS(3364), - [anon_sym_any] = ACTIONS(3364), - [anon_sym_number] = ACTIONS(3364), - [anon_sym_boolean] = ACTIONS(3364), - [anon_sym_string] = ACTIONS(3364), - [anon_sym_symbol] = ACTIONS(3364), - [anon_sym_object] = ACTIONS(3364), - [anon_sym_abstract] = ACTIONS(3364), - [anon_sym_interface] = ACTIONS(3364), - [anon_sym_enum] = ACTIONS(3364), + [anon_sym_BQUOTE] = ACTIONS(3278), + [sym_number] = ACTIONS(3278), + [sym_private_property_identifier] = ACTIONS(3278), + [sym_this] = ACTIONS(3278), + [sym_super] = ACTIONS(3278), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [sym_null] = ACTIONS(3278), + [sym_undefined] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_readonly] = ACTIONS(3278), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_declare] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_module] = ACTIONS(3278), + [anon_sym_any] = ACTIONS(3278), + [anon_sym_number] = ACTIONS(3278), + [anon_sym_boolean] = ACTIONS(3278), + [anon_sym_string] = ACTIONS(3278), + [anon_sym_symbol] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_interface] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), [sym_html_comment] = ACTIONS(5), }, - [1193] = { - [sym_comment] = STATE(1193), - [sym_identifier] = ACTIONS(3366), - [anon_sym_export] = ACTIONS(3366), - [anon_sym_default] = ACTIONS(3366), - [anon_sym_type] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3366), - [anon_sym_RBRACE] = ACTIONS(3366), - [anon_sym_typeof] = ACTIONS(3366), - [anon_sym_import] = ACTIONS(3366), - [anon_sym_with] = ACTIONS(3366), - [anon_sym_var] = ACTIONS(3366), - [anon_sym_let] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_else] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_LPAREN] = ACTIONS(3366), - [anon_sym_await] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_debugger] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_SEMI] = ACTIONS(3366), - [anon_sym_case] = ACTIONS(3366), - [anon_sym_yield] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_LTtemplate_GT] = ACTIONS(3366), - [anon_sym_DQUOTE] = ACTIONS(3366), - [anon_sym_SQUOTE] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_async] = ACTIONS(3366), - [anon_sym_function] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_SLASH] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_void] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3366), - [anon_sym_PLUS_PLUS] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3366), + [1182] = { + [sym_comment] = STATE(1182), + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2221), + [anon_sym_export] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_typeof] = ACTIONS(2221), + [anon_sym_import] = ACTIONS(2221), + [anon_sym_with] = ACTIONS(2221), + [anon_sym_var] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_debugger] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LTtemplate_GT] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_void] = ACTIONS(2221), + [anon_sym_delete] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3366), - [sym_number] = ACTIONS(3366), - [sym_private_property_identifier] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), - [sym_super] = ACTIONS(3366), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [sym_null] = ACTIONS(3366), - [sym_undefined] = ACTIONS(3366), - [anon_sym_AT] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_readonly] = ACTIONS(3366), - [anon_sym_get] = ACTIONS(3366), - [anon_sym_set] = ACTIONS(3366), - [anon_sym_declare] = ACTIONS(3366), - [anon_sym_public] = ACTIONS(3366), - [anon_sym_private] = ACTIONS(3366), - [anon_sym_protected] = ACTIONS(3366), - [anon_sym_override] = ACTIONS(3366), - [anon_sym_module] = ACTIONS(3366), - [anon_sym_any] = ACTIONS(3366), - [anon_sym_number] = ACTIONS(3366), - [anon_sym_boolean] = ACTIONS(3366), - [anon_sym_string] = ACTIONS(3366), - [anon_sym_symbol] = ACTIONS(3366), - [anon_sym_object] = ACTIONS(3366), - [anon_sym_abstract] = ACTIONS(3366), - [anon_sym_interface] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), + [anon_sym_BQUOTE] = ACTIONS(2221), + [sym_number] = ACTIONS(2221), + [sym_private_property_identifier] = ACTIONS(2221), + [sym_this] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_null] = ACTIONS(2221), + [sym_undefined] = ACTIONS(2221), + [anon_sym_AT] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_get] = ACTIONS(2221), + [anon_sym_set] = ACTIONS(2221), + [anon_sym_declare] = ACTIONS(2221), + [anon_sym_public] = ACTIONS(2221), + [anon_sym_private] = ACTIONS(2221), + [anon_sym_protected] = ACTIONS(2221), + [anon_sym_override] = ACTIONS(2221), + [anon_sym_module] = ACTIONS(2221), + [anon_sym_any] = ACTIONS(2221), + [anon_sym_number] = ACTIONS(2221), + [anon_sym_boolean] = ACTIONS(2221), + [anon_sym_string] = ACTIONS(2221), + [anon_sym_symbol] = ACTIONS(2221), + [anon_sym_object] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), + [sym__automatic_semicolon] = ACTIONS(2223), [sym_html_comment] = ACTIONS(5), }, - [1194] = { - [sym_statement_block] = STATE(1580), - [sym_comment] = STATE(1194), - [ts_builtin_sym_end] = ACTIONS(2059), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_DOT] = ACTIONS(3368), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), + [1183] = { + [sym_comment] = STATE(1183), + [sym_identifier] = ACTIONS(2251), + [anon_sym_export] = ACTIONS(2251), + [anon_sym_default] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_namespace] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_typeof] = ACTIONS(2251), + [anon_sym_import] = ACTIONS(2251), + [anon_sym_with] = ACTIONS(2251), + [anon_sym_var] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_switch] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [anon_sym_do] = ACTIONS(2251), + [anon_sym_try] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_debugger] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_throw] = ACTIONS(2251), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym_case] = ACTIONS(2251), + [anon_sym_yield] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(2251), + [anon_sym_LTtemplate_GT] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_class] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_function] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2251), + [anon_sym_using] = ACTIONS(2251), + [anon_sym_PLUS] = ACTIONS(2251), + [anon_sym_DASH] = ACTIONS(2251), + [anon_sym_SLASH] = ACTIONS(2251), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_TILDE] = ACTIONS(2251), + [anon_sym_void] = ACTIONS(2251), + [anon_sym_delete] = ACTIONS(2251), + [anon_sym_PLUS_PLUS] = ACTIONS(2251), + [anon_sym_DASH_DASH] = ACTIONS(2251), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2251), + [sym_number] = ACTIONS(2251), + [sym_private_property_identifier] = ACTIONS(2251), + [sym_this] = ACTIONS(2251), + [sym_super] = ACTIONS(2251), + [sym_true] = ACTIONS(2251), + [sym_false] = ACTIONS(2251), + [sym_null] = ACTIONS(2251), + [sym_undefined] = ACTIONS(2251), + [anon_sym_AT] = ACTIONS(2251), + [anon_sym_static] = ACTIONS(2251), + [anon_sym_readonly] = ACTIONS(2251), + [anon_sym_get] = ACTIONS(2251), + [anon_sym_set] = ACTIONS(2251), + [anon_sym_declare] = ACTIONS(2251), + [anon_sym_public] = ACTIONS(2251), + [anon_sym_private] = ACTIONS(2251), + [anon_sym_protected] = ACTIONS(2251), + [anon_sym_override] = ACTIONS(2251), + [anon_sym_module] = ACTIONS(2251), + [anon_sym_any] = ACTIONS(2251), + [anon_sym_number] = ACTIONS(2251), + [anon_sym_boolean] = ACTIONS(2251), + [anon_sym_string] = ACTIONS(2251), + [anon_sym_symbol] = ACTIONS(2251), + [anon_sym_object] = ACTIONS(2251), + [anon_sym_abstract] = ACTIONS(2251), + [anon_sym_interface] = ACTIONS(2251), + [anon_sym_enum] = ACTIONS(2251), [sym_html_comment] = ACTIONS(5), }, - [1195] = { - [sym_comment] = STATE(1195), - [sym_identifier] = ACTIONS(2229), - [anon_sym_export] = ACTIONS(2229), - [anon_sym_default] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_namespace] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_typeof] = ACTIONS(2229), - [anon_sym_import] = ACTIONS(2229), - [anon_sym_with] = ACTIONS(2229), - [anon_sym_var] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_switch] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_await] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_debugger] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_throw] = ACTIONS(2229), - [anon_sym_SEMI] = ACTIONS(2229), - [anon_sym_case] = ACTIONS(2229), - [anon_sym_yield] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2229), - [anon_sym_LTtemplate_GT] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2229), - [anon_sym_SQUOTE] = ACTIONS(2229), - [anon_sym_class] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_function] = ACTIONS(2229), - [anon_sym_new] = ACTIONS(2229), - [anon_sym_using] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_SLASH] = ACTIONS(2229), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_TILDE] = ACTIONS(2229), - [anon_sym_void] = ACTIONS(2229), - [anon_sym_delete] = ACTIONS(2229), - [anon_sym_PLUS_PLUS] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2229), - [sym_number] = ACTIONS(2229), - [sym_private_property_identifier] = ACTIONS(2229), - [sym_this] = ACTIONS(2229), - [sym_super] = ACTIONS(2229), - [sym_true] = ACTIONS(2229), - [sym_false] = ACTIONS(2229), - [sym_null] = ACTIONS(2229), - [sym_undefined] = ACTIONS(2229), - [anon_sym_AT] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_readonly] = ACTIONS(2229), - [anon_sym_get] = ACTIONS(2229), - [anon_sym_set] = ACTIONS(2229), - [anon_sym_declare] = ACTIONS(2229), - [anon_sym_public] = ACTIONS(2229), - [anon_sym_private] = ACTIONS(2229), - [anon_sym_protected] = ACTIONS(2229), - [anon_sym_override] = ACTIONS(2229), - [anon_sym_module] = ACTIONS(2229), - [anon_sym_any] = ACTIONS(2229), - [anon_sym_number] = ACTIONS(2229), - [anon_sym_boolean] = ACTIONS(2229), - [anon_sym_string] = ACTIONS(2229), - [anon_sym_symbol] = ACTIONS(2229), - [anon_sym_object] = ACTIONS(2229), - [anon_sym_abstract] = ACTIONS(2229), - [anon_sym_interface] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [sym__automatic_semicolon] = ACTIONS(2371), + [1184] = { + [sym_comment] = STATE(1184), + [ts_builtin_sym_end] = ACTIONS(3388), + [sym_identifier] = ACTIONS(3158), + [anon_sym_export] = ACTIONS(3158), + [anon_sym_type] = ACTIONS(3158), + [anon_sym_namespace] = ACTIONS(3158), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_typeof] = ACTIONS(3158), + [anon_sym_import] = ACTIONS(3158), + [anon_sym_with] = ACTIONS(3158), + [anon_sym_var] = ACTIONS(3158), + [anon_sym_let] = ACTIONS(3158), + [anon_sym_const] = ACTIONS(3158), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_else] = ACTIONS(3158), + [anon_sym_if] = ACTIONS(3158), + [anon_sym_switch] = ACTIONS(3158), + [anon_sym_for] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3158), + [anon_sym_await] = ACTIONS(3158), + [anon_sym_while] = ACTIONS(3158), + [anon_sym_do] = ACTIONS(3158), + [anon_sym_try] = ACTIONS(3158), + [anon_sym_break] = ACTIONS(3158), + [anon_sym_continue] = ACTIONS(3158), + [anon_sym_debugger] = ACTIONS(3158), + [anon_sym_return] = ACTIONS(3158), + [anon_sym_throw] = ACTIONS(3158), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_yield] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_LTtemplate_GT] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(3158), + [anon_sym_SQUOTE] = ACTIONS(3158), + [anon_sym_class] = ACTIONS(3158), + [anon_sym_async] = ACTIONS(3158), + [anon_sym_function] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3158), + [anon_sym_using] = ACTIONS(3158), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_SLASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3158), + [anon_sym_TILDE] = ACTIONS(3158), + [anon_sym_void] = ACTIONS(3158), + [anon_sym_delete] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3158), + [anon_sym_DASH_DASH] = ACTIONS(3158), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3158), + [sym_number] = ACTIONS(3158), + [sym_private_property_identifier] = ACTIONS(3158), + [sym_this] = ACTIONS(3158), + [sym_super] = ACTIONS(3158), + [sym_true] = ACTIONS(3158), + [sym_false] = ACTIONS(3158), + [sym_null] = ACTIONS(3158), + [sym_undefined] = ACTIONS(3158), + [anon_sym_AT] = ACTIONS(3158), + [anon_sym_static] = ACTIONS(3158), + [anon_sym_readonly] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3158), + [anon_sym_set] = ACTIONS(3158), + [anon_sym_declare] = ACTIONS(3158), + [anon_sym_public] = ACTIONS(3158), + [anon_sym_private] = ACTIONS(3158), + [anon_sym_protected] = ACTIONS(3158), + [anon_sym_override] = ACTIONS(3158), + [anon_sym_module] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(3158), + [anon_sym_number] = ACTIONS(3158), + [anon_sym_boolean] = ACTIONS(3158), + [anon_sym_string] = ACTIONS(3158), + [anon_sym_symbol] = ACTIONS(3158), + [anon_sym_object] = ACTIONS(3158), + [anon_sym_abstract] = ACTIONS(3158), + [anon_sym_interface] = ACTIONS(3158), + [anon_sym_enum] = ACTIONS(3158), [sym_html_comment] = ACTIONS(5), }, - [1196] = { - [sym_comment] = STATE(1196), - [sym_identifier] = ACTIONS(3296), - [anon_sym_export] = ACTIONS(3296), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_type] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_typeof] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_with] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_await] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_debugger] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_case] = ACTIONS(3296), - [anon_sym_yield] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_LTtemplate_GT] = ACTIONS(3296), - [anon_sym_DQUOTE] = ACTIONS(3296), - [anon_sym_SQUOTE] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_async] = ACTIONS(3296), - [anon_sym_function] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_using] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_void] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3296), - [sym_number] = ACTIONS(3296), - [sym_private_property_identifier] = ACTIONS(3296), - [sym_this] = ACTIONS(3296), - [sym_super] = ACTIONS(3296), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [sym_null] = ACTIONS(3296), - [sym_undefined] = ACTIONS(3296), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_readonly] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_override] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3296), - [anon_sym_any] = ACTIONS(3296), - [anon_sym_number] = ACTIONS(3296), - [anon_sym_boolean] = ACTIONS(3296), - [anon_sym_string] = ACTIONS(3296), - [anon_sym_symbol] = ACTIONS(3296), - [anon_sym_object] = ACTIONS(3296), - [anon_sym_abstract] = ACTIONS(3296), - [anon_sym_interface] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), + [1185] = { + [sym_comment] = STATE(1185), + [ts_builtin_sym_end] = ACTIONS(2313), + [sym_identifier] = ACTIONS(2129), + [anon_sym_export] = ACTIONS(2129), + [anon_sym_type] = ACTIONS(2129), + [anon_sym_namespace] = ACTIONS(2129), + [anon_sym_LBRACE] = ACTIONS(2129), + [anon_sym_RBRACE] = ACTIONS(2129), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_import] = ACTIONS(2129), + [anon_sym_with] = ACTIONS(2129), + [anon_sym_var] = ACTIONS(2129), + [anon_sym_let] = ACTIONS(2129), + [anon_sym_const] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(2129), + [anon_sym_if] = ACTIONS(2129), + [anon_sym_switch] = ACTIONS(2129), + [anon_sym_for] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(2129), + [anon_sym_await] = ACTIONS(2129), + [anon_sym_while] = ACTIONS(2129), + [anon_sym_do] = ACTIONS(2129), + [anon_sym_try] = ACTIONS(2129), + [anon_sym_break] = ACTIONS(2129), + [anon_sym_continue] = ACTIONS(2129), + [anon_sym_debugger] = ACTIONS(2129), + [anon_sym_return] = ACTIONS(2129), + [anon_sym_throw] = ACTIONS(2129), + [anon_sym_SEMI] = ACTIONS(2129), + [anon_sym_yield] = ACTIONS(2129), + [anon_sym_LBRACK] = ACTIONS(2129), + [anon_sym_LTtemplate_GT] = ACTIONS(2129), + [anon_sym_DQUOTE] = ACTIONS(2129), + [anon_sym_SQUOTE] = ACTIONS(2129), + [anon_sym_class] = ACTIONS(2129), + [anon_sym_async] = ACTIONS(2129), + [anon_sym_function] = ACTIONS(2129), + [anon_sym_new] = ACTIONS(2129), + [anon_sym_using] = ACTIONS(2129), + [anon_sym_PLUS] = ACTIONS(2129), + [anon_sym_DASH] = ACTIONS(2129), + [anon_sym_SLASH] = ACTIONS(2129), + [anon_sym_LT] = ACTIONS(2129), + [anon_sym_TILDE] = ACTIONS(2129), + [anon_sym_void] = ACTIONS(2129), + [anon_sym_delete] = ACTIONS(2129), + [anon_sym_PLUS_PLUS] = ACTIONS(2129), + [anon_sym_DASH_DASH] = ACTIONS(2129), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2129), + [sym_number] = ACTIONS(2129), + [sym_private_property_identifier] = ACTIONS(2129), + [sym_this] = ACTIONS(2129), + [sym_super] = ACTIONS(2129), + [sym_true] = ACTIONS(2129), + [sym_false] = ACTIONS(2129), + [sym_null] = ACTIONS(2129), + [sym_undefined] = ACTIONS(2129), + [anon_sym_AT] = ACTIONS(2129), + [anon_sym_static] = ACTIONS(2129), + [anon_sym_readonly] = ACTIONS(2129), + [anon_sym_get] = ACTIONS(2129), + [anon_sym_set] = ACTIONS(2129), + [anon_sym_declare] = ACTIONS(2129), + [anon_sym_public] = ACTIONS(2129), + [anon_sym_private] = ACTIONS(2129), + [anon_sym_protected] = ACTIONS(2129), + [anon_sym_override] = ACTIONS(2129), + [anon_sym_module] = ACTIONS(2129), + [anon_sym_any] = ACTIONS(2129), + [anon_sym_number] = ACTIONS(2129), + [anon_sym_boolean] = ACTIONS(2129), + [anon_sym_string] = ACTIONS(2129), + [anon_sym_symbol] = ACTIONS(2129), + [anon_sym_object] = ACTIONS(2129), + [anon_sym_abstract] = ACTIONS(2129), + [anon_sym_interface] = ACTIONS(2129), + [anon_sym_enum] = ACTIONS(2129), + [sym__automatic_semicolon] = ACTIONS(2451), [sym_html_comment] = ACTIONS(5), }, - [1197] = { - [sym_comment] = STATE(1197), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [1186] = { + [sym_comment] = STATE(1186), + [ts_builtin_sym_end] = ACTIONS(2287), + [sym_identifier] = ACTIONS(2137), + [anon_sym_export] = ACTIONS(2137), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_namespace] = ACTIONS(2137), + [anon_sym_LBRACE] = ACTIONS(2137), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_typeof] = ACTIONS(2137), + [anon_sym_import] = ACTIONS(2137), + [anon_sym_with] = ACTIONS(2137), + [anon_sym_var] = ACTIONS(2137), + [anon_sym_let] = ACTIONS(2137), + [anon_sym_const] = ACTIONS(2137), + [anon_sym_BANG] = ACTIONS(2137), + [anon_sym_if] = ACTIONS(2137), + [anon_sym_switch] = ACTIONS(2137), + [anon_sym_for] = ACTIONS(2137), + [anon_sym_LPAREN] = ACTIONS(2137), + [anon_sym_await] = ACTIONS(2137), + [anon_sym_while] = ACTIONS(2137), + [anon_sym_do] = ACTIONS(2137), + [anon_sym_try] = ACTIONS(2137), + [anon_sym_break] = ACTIONS(2137), + [anon_sym_continue] = ACTIONS(2137), + [anon_sym_debugger] = ACTIONS(2137), + [anon_sym_return] = ACTIONS(2137), + [anon_sym_throw] = ACTIONS(2137), + [anon_sym_SEMI] = ACTIONS(2137), + [anon_sym_yield] = ACTIONS(2137), + [anon_sym_LBRACK] = ACTIONS(2137), + [anon_sym_LTtemplate_GT] = ACTIONS(2137), + [anon_sym_DQUOTE] = ACTIONS(2137), + [anon_sym_SQUOTE] = ACTIONS(2137), + [anon_sym_class] = ACTIONS(2137), + [anon_sym_async] = ACTIONS(2137), + [anon_sym_function] = ACTIONS(2137), + [anon_sym_new] = ACTIONS(2137), + [anon_sym_using] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(2137), + [anon_sym_DASH] = ACTIONS(2137), + [anon_sym_SLASH] = ACTIONS(2137), + [anon_sym_LT] = ACTIONS(2137), + [anon_sym_TILDE] = ACTIONS(2137), + [anon_sym_void] = ACTIONS(2137), + [anon_sym_delete] = ACTIONS(2137), + [anon_sym_PLUS_PLUS] = ACTIONS(2137), + [anon_sym_DASH_DASH] = ACTIONS(2137), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2137), + [sym_number] = ACTIONS(2137), + [sym_private_property_identifier] = ACTIONS(2137), + [sym_this] = ACTIONS(2137), + [sym_super] = ACTIONS(2137), + [sym_true] = ACTIONS(2137), + [sym_false] = ACTIONS(2137), + [sym_null] = ACTIONS(2137), + [sym_undefined] = ACTIONS(2137), + [anon_sym_AT] = ACTIONS(2137), + [anon_sym_static] = ACTIONS(2137), + [anon_sym_readonly] = ACTIONS(2137), + [anon_sym_get] = ACTIONS(2137), + [anon_sym_set] = ACTIONS(2137), + [anon_sym_declare] = ACTIONS(2137), + [anon_sym_public] = ACTIONS(2137), + [anon_sym_private] = ACTIONS(2137), + [anon_sym_protected] = ACTIONS(2137), + [anon_sym_override] = ACTIONS(2137), + [anon_sym_module] = ACTIONS(2137), + [anon_sym_any] = ACTIONS(2137), + [anon_sym_number] = ACTIONS(2137), + [anon_sym_boolean] = ACTIONS(2137), + [anon_sym_string] = ACTIONS(2137), + [anon_sym_symbol] = ACTIONS(2137), + [anon_sym_object] = ACTIONS(2137), + [anon_sym_abstract] = ACTIONS(2137), + [anon_sym_interface] = ACTIONS(2137), + [anon_sym_enum] = ACTIONS(2137), + [sym__automatic_semicolon] = ACTIONS(2423), [sym_html_comment] = ACTIONS(5), }, - [1198] = { - [sym_comment] = STATE(1198), - [sym_identifier] = ACTIONS(3232), - [anon_sym_export] = ACTIONS(3232), - [anon_sym_default] = ACTIONS(3232), - [anon_sym_type] = ACTIONS(3232), - [anon_sym_namespace] = ACTIONS(3232), - [anon_sym_LBRACE] = ACTIONS(3232), - [anon_sym_RBRACE] = ACTIONS(3232), - [anon_sym_typeof] = ACTIONS(3232), - [anon_sym_import] = ACTIONS(3232), - [anon_sym_with] = ACTIONS(3232), - [anon_sym_var] = ACTIONS(3232), - [anon_sym_let] = ACTIONS(3232), - [anon_sym_const] = ACTIONS(3232), - [anon_sym_BANG] = ACTIONS(3232), - [anon_sym_if] = ACTIONS(3232), - [anon_sym_switch] = ACTIONS(3232), - [anon_sym_for] = ACTIONS(3232), - [anon_sym_LPAREN] = ACTIONS(3232), - [anon_sym_await] = ACTIONS(3232), - [anon_sym_while] = ACTIONS(3232), - [anon_sym_do] = ACTIONS(3232), - [anon_sym_try] = ACTIONS(3232), - [anon_sym_break] = ACTIONS(3232), - [anon_sym_continue] = ACTIONS(3232), - [anon_sym_debugger] = ACTIONS(3232), - [anon_sym_return] = ACTIONS(3232), - [anon_sym_throw] = ACTIONS(3232), - [anon_sym_SEMI] = ACTIONS(3232), - [anon_sym_case] = ACTIONS(3232), - [anon_sym_yield] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_LTtemplate_GT] = ACTIONS(3232), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3232), - [anon_sym_class] = ACTIONS(3232), - [anon_sym_async] = ACTIONS(3232), - [anon_sym_function] = ACTIONS(3232), - [anon_sym_new] = ACTIONS(3232), - [anon_sym_using] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3232), - [anon_sym_DASH] = ACTIONS(3232), - [anon_sym_SLASH] = ACTIONS(3232), - [anon_sym_LT] = ACTIONS(3232), - [anon_sym_TILDE] = ACTIONS(3232), - [anon_sym_void] = ACTIONS(3232), - [anon_sym_delete] = ACTIONS(3232), - [anon_sym_PLUS_PLUS] = ACTIONS(3232), - [anon_sym_DASH_DASH] = ACTIONS(3232), + [1187] = { + [sym_comment] = STATE(1187), + [sym_identifier] = ACTIONS(3168), + [anon_sym_export] = ACTIONS(3168), + [anon_sym_default] = ACTIONS(3168), + [anon_sym_type] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3168), + [anon_sym_RBRACE] = ACTIONS(3168), + [anon_sym_typeof] = ACTIONS(3168), + [anon_sym_import] = ACTIONS(3168), + [anon_sym_with] = ACTIONS(3168), + [anon_sym_var] = ACTIONS(3168), + [anon_sym_let] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_BANG] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_await] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_debugger] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3168), + [anon_sym_yield] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_LTtemplate_GT] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_async] = ACTIONS(3168), + [anon_sym_function] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_SLASH] = ACTIONS(3168), + [anon_sym_LT] = ACTIONS(3168), + [anon_sym_TILDE] = ACTIONS(3168), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_PLUS_PLUS] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3168), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3232), - [sym_number] = ACTIONS(3232), - [sym_private_property_identifier] = ACTIONS(3232), - [sym_this] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [sym_null] = ACTIONS(3232), - [sym_undefined] = ACTIONS(3232), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_static] = ACTIONS(3232), - [anon_sym_readonly] = ACTIONS(3232), - [anon_sym_get] = ACTIONS(3232), - [anon_sym_set] = ACTIONS(3232), - [anon_sym_declare] = ACTIONS(3232), - [anon_sym_public] = ACTIONS(3232), - [anon_sym_private] = ACTIONS(3232), - [anon_sym_protected] = ACTIONS(3232), - [anon_sym_override] = ACTIONS(3232), - [anon_sym_module] = ACTIONS(3232), - [anon_sym_any] = ACTIONS(3232), - [anon_sym_number] = ACTIONS(3232), - [anon_sym_boolean] = ACTIONS(3232), - [anon_sym_string] = ACTIONS(3232), - [anon_sym_symbol] = ACTIONS(3232), - [anon_sym_object] = ACTIONS(3232), - [anon_sym_abstract] = ACTIONS(3232), - [anon_sym_interface] = ACTIONS(3232), - [anon_sym_enum] = ACTIONS(3232), + [anon_sym_BQUOTE] = ACTIONS(3168), + [sym_number] = ACTIONS(3168), + [sym_private_property_identifier] = ACTIONS(3168), + [sym_this] = ACTIONS(3168), + [sym_super] = ACTIONS(3168), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [sym_null] = ACTIONS(3168), + [sym_undefined] = ACTIONS(3168), + [anon_sym_AT] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_readonly] = ACTIONS(3168), + [anon_sym_get] = ACTIONS(3168), + [anon_sym_set] = ACTIONS(3168), + [anon_sym_declare] = ACTIONS(3168), + [anon_sym_public] = ACTIONS(3168), + [anon_sym_private] = ACTIONS(3168), + [anon_sym_protected] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3168), + [anon_sym_module] = ACTIONS(3168), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), + [anon_sym_abstract] = ACTIONS(3168), + [anon_sym_interface] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, - [1199] = { - [sym_comment] = STATE(1199), - [sym_identifier] = ACTIONS(3234), - [anon_sym_export] = ACTIONS(3234), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_type] = ACTIONS(3234), - [anon_sym_namespace] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_typeof] = ACTIONS(3234), - [anon_sym_import] = ACTIONS(3234), - [anon_sym_with] = ACTIONS(3234), - [anon_sym_var] = ACTIONS(3234), - [anon_sym_let] = ACTIONS(3234), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_await] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_debugger] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3234), - [anon_sym_case] = ACTIONS(3234), - [anon_sym_yield] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_LTtemplate_GT] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_async] = ACTIONS(3234), - [anon_sym_function] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3234), - [anon_sym_TILDE] = ACTIONS(3234), - [anon_sym_void] = ACTIONS(3234), - [anon_sym_delete] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), + [1188] = { + [sym_comment] = STATE(1188), + [ts_builtin_sym_end] = ACTIONS(3390), + [sym_identifier] = ACTIONS(3226), + [anon_sym_export] = ACTIONS(3226), + [anon_sym_type] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3226), + [anon_sym_RBRACE] = ACTIONS(3226), + [anon_sym_typeof] = ACTIONS(3226), + [anon_sym_import] = ACTIONS(3226), + [anon_sym_with] = ACTIONS(3226), + [anon_sym_var] = ACTIONS(3226), + [anon_sym_let] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_switch] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_await] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_debugger] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3226), + [anon_sym_LTtemplate_GT] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3226), + [anon_sym_class] = ACTIONS(3226), + [anon_sym_async] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3226), + [anon_sym_using] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3226), + [anon_sym_void] = ACTIONS(3226), + [anon_sym_delete] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3226), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3234), - [sym_number] = ACTIONS(3234), - [sym_private_property_identifier] = ACTIONS(3234), - [sym_this] = ACTIONS(3234), - [sym_super] = ACTIONS(3234), - [sym_true] = ACTIONS(3234), - [sym_false] = ACTIONS(3234), - [sym_null] = ACTIONS(3234), - [sym_undefined] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_readonly] = ACTIONS(3234), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_declare] = ACTIONS(3234), - [anon_sym_public] = ACTIONS(3234), - [anon_sym_private] = ACTIONS(3234), - [anon_sym_protected] = ACTIONS(3234), - [anon_sym_override] = ACTIONS(3234), - [anon_sym_module] = ACTIONS(3234), - [anon_sym_any] = ACTIONS(3234), - [anon_sym_number] = ACTIONS(3234), - [anon_sym_boolean] = ACTIONS(3234), - [anon_sym_string] = ACTIONS(3234), - [anon_sym_symbol] = ACTIONS(3234), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_abstract] = ACTIONS(3234), - [anon_sym_interface] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), + [anon_sym_BQUOTE] = ACTIONS(3226), + [sym_number] = ACTIONS(3226), + [sym_private_property_identifier] = ACTIONS(3226), + [sym_this] = ACTIONS(3226), + [sym_super] = ACTIONS(3226), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [sym_null] = ACTIONS(3226), + [sym_undefined] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3226), + [anon_sym_static] = ACTIONS(3226), + [anon_sym_readonly] = ACTIONS(3226), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_declare] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_module] = ACTIONS(3226), + [anon_sym_any] = ACTIONS(3226), + [anon_sym_number] = ACTIONS(3226), + [anon_sym_boolean] = ACTIONS(3226), + [anon_sym_string] = ACTIONS(3226), + [anon_sym_symbol] = ACTIONS(3226), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_interface] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), [sym_html_comment] = ACTIONS(5), }, - [1200] = { - [sym_comment] = STATE(1200), - [sym_identifier] = ACTIONS(3234), - [anon_sym_export] = ACTIONS(3234), - [anon_sym_default] = ACTIONS(3234), - [anon_sym_type] = ACTIONS(3234), - [anon_sym_namespace] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_typeof] = ACTIONS(3234), - [anon_sym_import] = ACTIONS(3234), - [anon_sym_with] = ACTIONS(3234), - [anon_sym_var] = ACTIONS(3234), - [anon_sym_let] = ACTIONS(3234), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_await] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_debugger] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3234), - [anon_sym_case] = ACTIONS(3234), - [anon_sym_yield] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_LTtemplate_GT] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_async] = ACTIONS(3234), - [anon_sym_function] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3234), - [anon_sym_TILDE] = ACTIONS(3234), - [anon_sym_void] = ACTIONS(3234), - [anon_sym_delete] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3234), - [sym_number] = ACTIONS(3234), - [sym_private_property_identifier] = ACTIONS(3234), - [sym_this] = ACTIONS(3234), - [sym_super] = ACTIONS(3234), - [sym_true] = ACTIONS(3234), - [sym_false] = ACTIONS(3234), - [sym_null] = ACTIONS(3234), - [sym_undefined] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_readonly] = ACTIONS(3234), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_declare] = ACTIONS(3234), - [anon_sym_public] = ACTIONS(3234), - [anon_sym_private] = ACTIONS(3234), - [anon_sym_protected] = ACTIONS(3234), - [anon_sym_override] = ACTIONS(3234), - [anon_sym_module] = ACTIONS(3234), - [anon_sym_any] = ACTIONS(3234), - [anon_sym_number] = ACTIONS(3234), - [anon_sym_boolean] = ACTIONS(3234), - [anon_sym_string] = ACTIONS(3234), - [anon_sym_symbol] = ACTIONS(3234), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_abstract] = ACTIONS(3234), - [anon_sym_interface] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), - [sym_html_comment] = ACTIONS(5), - }, - [1201] = { - [sym_comment] = STATE(1201), - [sym_identifier] = ACTIONS(3236), - [anon_sym_export] = ACTIONS(3236), - [anon_sym_default] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3236), - [anon_sym_namespace] = ACTIONS(3236), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3236), - [anon_sym_typeof] = ACTIONS(3236), - [anon_sym_import] = ACTIONS(3236), - [anon_sym_with] = ACTIONS(3236), - [anon_sym_var] = ACTIONS(3236), - [anon_sym_let] = ACTIONS(3236), - [anon_sym_const] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_if] = ACTIONS(3236), - [anon_sym_switch] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3236), - [anon_sym_await] = ACTIONS(3236), - [anon_sym_while] = ACTIONS(3236), - [anon_sym_do] = ACTIONS(3236), - [anon_sym_try] = ACTIONS(3236), - [anon_sym_break] = ACTIONS(3236), - [anon_sym_continue] = ACTIONS(3236), - [anon_sym_debugger] = ACTIONS(3236), - [anon_sym_return] = ACTIONS(3236), - [anon_sym_throw] = ACTIONS(3236), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_case] = ACTIONS(3236), - [anon_sym_yield] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_LTtemplate_GT] = ACTIONS(3236), - [anon_sym_DQUOTE] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym_class] = ACTIONS(3236), - [anon_sym_async] = ACTIONS(3236), - [anon_sym_function] = ACTIONS(3236), - [anon_sym_new] = ACTIONS(3236), - [anon_sym_using] = ACTIONS(3236), - [anon_sym_PLUS] = ACTIONS(3236), - [anon_sym_DASH] = ACTIONS(3236), - [anon_sym_SLASH] = ACTIONS(3236), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_void] = ACTIONS(3236), - [anon_sym_delete] = ACTIONS(3236), - [anon_sym_PLUS_PLUS] = ACTIONS(3236), - [anon_sym_DASH_DASH] = ACTIONS(3236), + [1189] = { + [sym_comment] = STATE(1189), + [ts_builtin_sym_end] = ACTIONS(3392), + [sym_identifier] = ACTIONS(3170), + [anon_sym_export] = ACTIONS(3170), + [anon_sym_type] = ACTIONS(3170), + [anon_sym_namespace] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3170), + [anon_sym_typeof] = ACTIONS(3170), + [anon_sym_import] = ACTIONS(3170), + [anon_sym_with] = ACTIONS(3170), + [anon_sym_var] = ACTIONS(3170), + [anon_sym_let] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_else] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_switch] = ACTIONS(3170), + [anon_sym_for] = ACTIONS(3170), + [anon_sym_LPAREN] = ACTIONS(3170), + [anon_sym_await] = ACTIONS(3170), + [anon_sym_while] = ACTIONS(3170), + [anon_sym_do] = ACTIONS(3170), + [anon_sym_try] = ACTIONS(3170), + [anon_sym_break] = ACTIONS(3170), + [anon_sym_continue] = ACTIONS(3170), + [anon_sym_debugger] = ACTIONS(3170), + [anon_sym_return] = ACTIONS(3170), + [anon_sym_throw] = ACTIONS(3170), + [anon_sym_SEMI] = ACTIONS(3170), + [anon_sym_yield] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_LTtemplate_GT] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [anon_sym_SQUOTE] = ACTIONS(3170), + [anon_sym_class] = ACTIONS(3170), + [anon_sym_async] = ACTIONS(3170), + [anon_sym_function] = ACTIONS(3170), + [anon_sym_new] = ACTIONS(3170), + [anon_sym_using] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_SLASH] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_void] = ACTIONS(3170), + [anon_sym_delete] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_DASH_DASH] = ACTIONS(3170), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3236), - [sym_number] = ACTIONS(3236), - [sym_private_property_identifier] = ACTIONS(3236), - [sym_this] = ACTIONS(3236), - [sym_super] = ACTIONS(3236), - [sym_true] = ACTIONS(3236), - [sym_false] = ACTIONS(3236), - [sym_null] = ACTIONS(3236), - [sym_undefined] = ACTIONS(3236), - [anon_sym_AT] = ACTIONS(3236), - [anon_sym_static] = ACTIONS(3236), - [anon_sym_readonly] = ACTIONS(3236), - [anon_sym_get] = ACTIONS(3236), - [anon_sym_set] = ACTIONS(3236), - [anon_sym_declare] = ACTIONS(3236), - [anon_sym_public] = ACTIONS(3236), - [anon_sym_private] = ACTIONS(3236), - [anon_sym_protected] = ACTIONS(3236), - [anon_sym_override] = ACTIONS(3236), - [anon_sym_module] = ACTIONS(3236), - [anon_sym_any] = ACTIONS(3236), - [anon_sym_number] = ACTIONS(3236), - [anon_sym_boolean] = ACTIONS(3236), - [anon_sym_string] = ACTIONS(3236), - [anon_sym_symbol] = ACTIONS(3236), - [anon_sym_object] = ACTIONS(3236), - [anon_sym_abstract] = ACTIONS(3236), - [anon_sym_interface] = ACTIONS(3236), - [anon_sym_enum] = ACTIONS(3236), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3170), + [sym_private_property_identifier] = ACTIONS(3170), + [sym_this] = ACTIONS(3170), + [sym_super] = ACTIONS(3170), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [sym_null] = ACTIONS(3170), + [sym_undefined] = ACTIONS(3170), + [anon_sym_AT] = ACTIONS(3170), + [anon_sym_static] = ACTIONS(3170), + [anon_sym_readonly] = ACTIONS(3170), + [anon_sym_get] = ACTIONS(3170), + [anon_sym_set] = ACTIONS(3170), + [anon_sym_declare] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3170), + [anon_sym_private] = ACTIONS(3170), + [anon_sym_protected] = ACTIONS(3170), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_module] = ACTIONS(3170), + [anon_sym_any] = ACTIONS(3170), + [anon_sym_number] = ACTIONS(3170), + [anon_sym_boolean] = ACTIONS(3170), + [anon_sym_string] = ACTIONS(3170), + [anon_sym_symbol] = ACTIONS(3170), + [anon_sym_object] = ACTIONS(3170), + [anon_sym_abstract] = ACTIONS(3170), + [anon_sym_interface] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), [sym_html_comment] = ACTIONS(5), }, - [1202] = { - [sym_comment] = STATE(1202), - [ts_builtin_sym_end] = ACTIONS(2289), - [sym_identifier] = ACTIONS(2237), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_type] = ACTIONS(2237), - [anon_sym_namespace] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_typeof] = ACTIONS(2237), - [anon_sym_import] = ACTIONS(2237), - [anon_sym_with] = ACTIONS(2237), - [anon_sym_var] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [anon_sym_BANG] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_switch] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_await] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_debugger] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_throw] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_yield] = ACTIONS(2237), - [anon_sym_LBRACK] = ACTIONS(2237), - [anon_sym_LTtemplate_GT] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [anon_sym_SQUOTE] = ACTIONS(2237), - [anon_sym_class] = ACTIONS(2237), - [anon_sym_async] = ACTIONS(2237), - [anon_sym_function] = ACTIONS(2237), - [anon_sym_new] = ACTIONS(2237), - [anon_sym_using] = ACTIONS(2237), - [anon_sym_PLUS] = ACTIONS(2237), - [anon_sym_DASH] = ACTIONS(2237), - [anon_sym_SLASH] = ACTIONS(2237), - [anon_sym_LT] = ACTIONS(2237), - [anon_sym_TILDE] = ACTIONS(2237), - [anon_sym_void] = ACTIONS(2237), - [anon_sym_delete] = ACTIONS(2237), - [anon_sym_PLUS_PLUS] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), + [1190] = { + [sym_comment] = STATE(1190), + [sym_identifier] = ACTIONS(3288), + [anon_sym_export] = ACTIONS(3288), + [anon_sym_default] = ACTIONS(3288), + [anon_sym_type] = ACTIONS(3288), + [anon_sym_namespace] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_typeof] = ACTIONS(3288), + [anon_sym_import] = ACTIONS(3288), + [anon_sym_with] = ACTIONS(3288), + [anon_sym_var] = ACTIONS(3288), + [anon_sym_let] = ACTIONS(3288), + [anon_sym_const] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_switch] = ACTIONS(3288), + [anon_sym_for] = ACTIONS(3288), + [anon_sym_LPAREN] = ACTIONS(3288), + [anon_sym_await] = ACTIONS(3288), + [anon_sym_while] = ACTIONS(3288), + [anon_sym_do] = ACTIONS(3288), + [anon_sym_try] = ACTIONS(3288), + [anon_sym_break] = ACTIONS(3288), + [anon_sym_continue] = ACTIONS(3288), + [anon_sym_debugger] = ACTIONS(3288), + [anon_sym_return] = ACTIONS(3288), + [anon_sym_throw] = ACTIONS(3288), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_case] = ACTIONS(3288), + [anon_sym_yield] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3288), + [anon_sym_LTtemplate_GT] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_class] = ACTIONS(3288), + [anon_sym_async] = ACTIONS(3288), + [anon_sym_function] = ACTIONS(3288), + [anon_sym_new] = ACTIONS(3288), + [anon_sym_using] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3288), + [anon_sym_SLASH] = ACTIONS(3288), + [anon_sym_LT] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_void] = ACTIONS(3288), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_DASH_DASH] = ACTIONS(3288), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2237), - [sym_number] = ACTIONS(2237), - [sym_private_property_identifier] = ACTIONS(2237), - [sym_this] = ACTIONS(2237), - [sym_super] = ACTIONS(2237), - [sym_true] = ACTIONS(2237), - [sym_false] = ACTIONS(2237), - [sym_null] = ACTIONS(2237), - [sym_undefined] = ACTIONS(2237), - [anon_sym_AT] = ACTIONS(2237), - [anon_sym_static] = ACTIONS(2237), - [anon_sym_readonly] = ACTIONS(2237), - [anon_sym_get] = ACTIONS(2237), - [anon_sym_set] = ACTIONS(2237), - [anon_sym_declare] = ACTIONS(2237), - [anon_sym_public] = ACTIONS(2237), - [anon_sym_private] = ACTIONS(2237), - [anon_sym_protected] = ACTIONS(2237), - [anon_sym_override] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_any] = ACTIONS(2237), - [anon_sym_number] = ACTIONS(2237), - [anon_sym_boolean] = ACTIONS(2237), - [anon_sym_string] = ACTIONS(2237), - [anon_sym_symbol] = ACTIONS(2237), - [anon_sym_object] = ACTIONS(2237), - [anon_sym_abstract] = ACTIONS(2237), - [anon_sym_interface] = ACTIONS(2237), - [anon_sym_enum] = ACTIONS(2237), - [sym__automatic_semicolon] = ACTIONS(2453), - [sym_html_comment] = ACTIONS(5), - }, - [1203] = { - [sym_comment] = STATE(1203), - [ts_builtin_sym_end] = ACTIONS(2283), - [sym_identifier] = ACTIONS(2229), - [anon_sym_export] = ACTIONS(2229), - [anon_sym_type] = ACTIONS(2229), - [anon_sym_namespace] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2229), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_typeof] = ACTIONS(2229), - [anon_sym_import] = ACTIONS(2229), - [anon_sym_with] = ACTIONS(2229), - [anon_sym_var] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [anon_sym_BANG] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_switch] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_await] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_debugger] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_throw] = ACTIONS(2229), - [anon_sym_SEMI] = ACTIONS(2229), - [anon_sym_yield] = ACTIONS(2229), - [anon_sym_LBRACK] = ACTIONS(2229), - [anon_sym_LTtemplate_GT] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2229), - [anon_sym_SQUOTE] = ACTIONS(2229), - [anon_sym_class] = ACTIONS(2229), - [anon_sym_async] = ACTIONS(2229), - [anon_sym_function] = ACTIONS(2229), - [anon_sym_new] = ACTIONS(2229), - [anon_sym_using] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2229), - [anon_sym_DASH] = ACTIONS(2229), - [anon_sym_SLASH] = ACTIONS(2229), - [anon_sym_LT] = ACTIONS(2229), - [anon_sym_TILDE] = ACTIONS(2229), - [anon_sym_void] = ACTIONS(2229), - [anon_sym_delete] = ACTIONS(2229), - [anon_sym_PLUS_PLUS] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2229), - [sym_number] = ACTIONS(2229), - [sym_private_property_identifier] = ACTIONS(2229), - [sym_this] = ACTIONS(2229), - [sym_super] = ACTIONS(2229), - [sym_true] = ACTIONS(2229), - [sym_false] = ACTIONS(2229), - [sym_null] = ACTIONS(2229), - [sym_undefined] = ACTIONS(2229), - [anon_sym_AT] = ACTIONS(2229), - [anon_sym_static] = ACTIONS(2229), - [anon_sym_readonly] = ACTIONS(2229), - [anon_sym_get] = ACTIONS(2229), - [anon_sym_set] = ACTIONS(2229), - [anon_sym_declare] = ACTIONS(2229), - [anon_sym_public] = ACTIONS(2229), - [anon_sym_private] = ACTIONS(2229), - [anon_sym_protected] = ACTIONS(2229), - [anon_sym_override] = ACTIONS(2229), - [anon_sym_module] = ACTIONS(2229), - [anon_sym_any] = ACTIONS(2229), - [anon_sym_number] = ACTIONS(2229), - [anon_sym_boolean] = ACTIONS(2229), - [anon_sym_string] = ACTIONS(2229), - [anon_sym_symbol] = ACTIONS(2229), - [anon_sym_object] = ACTIONS(2229), - [anon_sym_abstract] = ACTIONS(2229), - [anon_sym_interface] = ACTIONS(2229), - [anon_sym_enum] = ACTIONS(2229), - [sym__automatic_semicolon] = ACTIONS(2405), + [anon_sym_BQUOTE] = ACTIONS(3288), + [sym_number] = ACTIONS(3288), + [sym_private_property_identifier] = ACTIONS(3288), + [sym_this] = ACTIONS(3288), + [sym_super] = ACTIONS(3288), + [sym_true] = ACTIONS(3288), + [sym_false] = ACTIONS(3288), + [sym_null] = ACTIONS(3288), + [sym_undefined] = ACTIONS(3288), + [anon_sym_AT] = ACTIONS(3288), + [anon_sym_static] = ACTIONS(3288), + [anon_sym_readonly] = ACTIONS(3288), + [anon_sym_get] = ACTIONS(3288), + [anon_sym_set] = ACTIONS(3288), + [anon_sym_declare] = ACTIONS(3288), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3288), + [anon_sym_module] = ACTIONS(3288), + [anon_sym_any] = ACTIONS(3288), + [anon_sym_number] = ACTIONS(3288), + [anon_sym_boolean] = ACTIONS(3288), + [anon_sym_string] = ACTIONS(3288), + [anon_sym_symbol] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3288), + [anon_sym_abstract] = ACTIONS(3288), + [anon_sym_interface] = ACTIONS(3288), + [anon_sym_enum] = ACTIONS(3288), [sym_html_comment] = ACTIONS(5), }, - [1204] = { - [sym_comment] = STATE(1204), - [sym_identifier] = ACTIONS(3238), - [anon_sym_export] = ACTIONS(3238), - [anon_sym_default] = ACTIONS(3238), - [anon_sym_type] = ACTIONS(3238), - [anon_sym_namespace] = ACTIONS(3238), - [anon_sym_LBRACE] = ACTIONS(3238), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_import] = ACTIONS(3238), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_var] = ACTIONS(3238), - [anon_sym_let] = ACTIONS(3238), - [anon_sym_const] = ACTIONS(3238), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_switch] = ACTIONS(3238), - [anon_sym_for] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3238), - [anon_sym_await] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_debugger] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_LTtemplate_GT] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_async] = ACTIONS(3238), - [anon_sym_function] = ACTIONS(3238), - [anon_sym_new] = ACTIONS(3238), - [anon_sym_using] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3238), - [anon_sym_void] = ACTIONS(3238), - [anon_sym_delete] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), + [1191] = { + [sym_comment] = STATE(1191), + [ts_builtin_sym_end] = ACTIONS(3394), + [sym_identifier] = ACTIONS(3172), + [anon_sym_export] = ACTIONS(3172), + [anon_sym_type] = ACTIONS(3172), + [anon_sym_namespace] = ACTIONS(3172), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3172), + [anon_sym_typeof] = ACTIONS(3172), + [anon_sym_import] = ACTIONS(3172), + [anon_sym_with] = ACTIONS(3172), + [anon_sym_var] = ACTIONS(3172), + [anon_sym_let] = ACTIONS(3172), + [anon_sym_const] = ACTIONS(3172), + [anon_sym_BANG] = ACTIONS(3172), + [anon_sym_else] = ACTIONS(3172), + [anon_sym_if] = ACTIONS(3172), + [anon_sym_switch] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_await] = ACTIONS(3172), + [anon_sym_while] = ACTIONS(3172), + [anon_sym_do] = ACTIONS(3172), + [anon_sym_try] = ACTIONS(3172), + [anon_sym_break] = ACTIONS(3172), + [anon_sym_continue] = ACTIONS(3172), + [anon_sym_debugger] = ACTIONS(3172), + [anon_sym_return] = ACTIONS(3172), + [anon_sym_throw] = ACTIONS(3172), + [anon_sym_SEMI] = ACTIONS(3172), + [anon_sym_yield] = ACTIONS(3172), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_LTtemplate_GT] = ACTIONS(3172), + [anon_sym_DQUOTE] = ACTIONS(3172), + [anon_sym_SQUOTE] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3172), + [anon_sym_async] = ACTIONS(3172), + [anon_sym_function] = ACTIONS(3172), + [anon_sym_new] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3172), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_void] = ACTIONS(3172), + [anon_sym_delete] = ACTIONS(3172), + [anon_sym_PLUS_PLUS] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3172), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3238), - [sym_number] = ACTIONS(3238), - [sym_private_property_identifier] = ACTIONS(3238), - [sym_this] = ACTIONS(3238), - [sym_super] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [sym_null] = ACTIONS(3238), - [sym_undefined] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3238), - [anon_sym_static] = ACTIONS(3238), - [anon_sym_readonly] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_declare] = ACTIONS(3238), - [anon_sym_public] = ACTIONS(3238), - [anon_sym_private] = ACTIONS(3238), - [anon_sym_protected] = ACTIONS(3238), - [anon_sym_override] = ACTIONS(3238), - [anon_sym_module] = ACTIONS(3238), - [anon_sym_any] = ACTIONS(3238), - [anon_sym_number] = ACTIONS(3238), - [anon_sym_boolean] = ACTIONS(3238), - [anon_sym_string] = ACTIONS(3238), - [anon_sym_symbol] = ACTIONS(3238), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_abstract] = ACTIONS(3238), - [anon_sym_interface] = ACTIONS(3238), - [anon_sym_enum] = ACTIONS(3238), - [sym_html_comment] = ACTIONS(5), - }, - [1205] = { - [sym_comment] = STATE(1205), - [sym_identifier] = ACTIONS(3240), - [anon_sym_export] = ACTIONS(3240), - [anon_sym_default] = ACTIONS(3240), - [anon_sym_type] = ACTIONS(3240), - [anon_sym_namespace] = ACTIONS(3240), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_typeof] = ACTIONS(3240), - [anon_sym_import] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3240), - [anon_sym_var] = ACTIONS(3240), - [anon_sym_let] = ACTIONS(3240), - [anon_sym_const] = ACTIONS(3240), - [anon_sym_BANG] = ACTIONS(3240), - [anon_sym_if] = ACTIONS(3240), - [anon_sym_switch] = ACTIONS(3240), - [anon_sym_for] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_await] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3240), - [anon_sym_do] = ACTIONS(3240), - [anon_sym_try] = ACTIONS(3240), - [anon_sym_break] = ACTIONS(3240), - [anon_sym_continue] = ACTIONS(3240), - [anon_sym_debugger] = ACTIONS(3240), - [anon_sym_return] = ACTIONS(3240), - [anon_sym_throw] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_case] = ACTIONS(3240), - [anon_sym_yield] = ACTIONS(3240), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_LTtemplate_GT] = ACTIONS(3240), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_SQUOTE] = ACTIONS(3240), - [anon_sym_class] = ACTIONS(3240), - [anon_sym_async] = ACTIONS(3240), - [anon_sym_function] = ACTIONS(3240), - [anon_sym_new] = ACTIONS(3240), - [anon_sym_using] = ACTIONS(3240), - [anon_sym_PLUS] = ACTIONS(3240), - [anon_sym_DASH] = ACTIONS(3240), - [anon_sym_SLASH] = ACTIONS(3240), - [anon_sym_LT] = ACTIONS(3240), - [anon_sym_TILDE] = ACTIONS(3240), - [anon_sym_void] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3240), - [anon_sym_PLUS_PLUS] = ACTIONS(3240), - [anon_sym_DASH_DASH] = ACTIONS(3240), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3240), - [sym_number] = ACTIONS(3240), - [sym_private_property_identifier] = ACTIONS(3240), - [sym_this] = ACTIONS(3240), - [sym_super] = ACTIONS(3240), - [sym_true] = ACTIONS(3240), - [sym_false] = ACTIONS(3240), - [sym_null] = ACTIONS(3240), - [sym_undefined] = ACTIONS(3240), - [anon_sym_AT] = ACTIONS(3240), - [anon_sym_static] = ACTIONS(3240), - [anon_sym_readonly] = ACTIONS(3240), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3240), - [anon_sym_declare] = ACTIONS(3240), - [anon_sym_public] = ACTIONS(3240), - [anon_sym_private] = ACTIONS(3240), - [anon_sym_protected] = ACTIONS(3240), - [anon_sym_override] = ACTIONS(3240), - [anon_sym_module] = ACTIONS(3240), - [anon_sym_any] = ACTIONS(3240), - [anon_sym_number] = ACTIONS(3240), - [anon_sym_boolean] = ACTIONS(3240), - [anon_sym_string] = ACTIONS(3240), - [anon_sym_symbol] = ACTIONS(3240), - [anon_sym_object] = ACTIONS(3240), - [anon_sym_abstract] = ACTIONS(3240), - [anon_sym_interface] = ACTIONS(3240), - [anon_sym_enum] = ACTIONS(3240), - [sym_html_comment] = ACTIONS(5), - }, - [1206] = { - [sym_comment] = STATE(1206), - [sym_identifier] = ACTIONS(3242), - [anon_sym_export] = ACTIONS(3242), - [anon_sym_default] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_namespace] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3242), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_typeof] = ACTIONS(3242), - [anon_sym_import] = ACTIONS(3242), - [anon_sym_with] = ACTIONS(3242), - [anon_sym_var] = ACTIONS(3242), - [anon_sym_let] = ACTIONS(3242), - [anon_sym_const] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3242), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_switch] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3242), - [anon_sym_await] = ACTIONS(3242), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3242), - [anon_sym_try] = ACTIONS(3242), - [anon_sym_break] = ACTIONS(3242), - [anon_sym_continue] = ACTIONS(3242), - [anon_sym_debugger] = ACTIONS(3242), - [anon_sym_return] = ACTIONS(3242), - [anon_sym_throw] = ACTIONS(3242), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_case] = ACTIONS(3242), - [anon_sym_yield] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_LTtemplate_GT] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(3242), - [anon_sym_SQUOTE] = ACTIONS(3242), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_function] = ACTIONS(3242), - [anon_sym_new] = ACTIONS(3242), - [anon_sym_using] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_TILDE] = ACTIONS(3242), - [anon_sym_void] = ACTIONS(3242), - [anon_sym_delete] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3242), - [sym_number] = ACTIONS(3242), - [sym_private_property_identifier] = ACTIONS(3242), - [sym_this] = ACTIONS(3242), - [sym_super] = ACTIONS(3242), - [sym_true] = ACTIONS(3242), - [sym_false] = ACTIONS(3242), - [sym_null] = ACTIONS(3242), - [sym_undefined] = ACTIONS(3242), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_readonly] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_declare] = ACTIONS(3242), - [anon_sym_public] = ACTIONS(3242), - [anon_sym_private] = ACTIONS(3242), - [anon_sym_protected] = ACTIONS(3242), - [anon_sym_override] = ACTIONS(3242), - [anon_sym_module] = ACTIONS(3242), - [anon_sym_any] = ACTIONS(3242), - [anon_sym_number] = ACTIONS(3242), - [anon_sym_boolean] = ACTIONS(3242), - [anon_sym_string] = ACTIONS(3242), - [anon_sym_symbol] = ACTIONS(3242), - [anon_sym_object] = ACTIONS(3242), - [anon_sym_abstract] = ACTIONS(3242), - [anon_sym_interface] = ACTIONS(3242), - [anon_sym_enum] = ACTIONS(3242), + [anon_sym_BQUOTE] = ACTIONS(3172), + [sym_number] = ACTIONS(3172), + [sym_private_property_identifier] = ACTIONS(3172), + [sym_this] = ACTIONS(3172), + [sym_super] = ACTIONS(3172), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [sym_null] = ACTIONS(3172), + [sym_undefined] = ACTIONS(3172), + [anon_sym_AT] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3172), + [anon_sym_readonly] = ACTIONS(3172), + [anon_sym_get] = ACTIONS(3172), + [anon_sym_set] = ACTIONS(3172), + [anon_sym_declare] = ACTIONS(3172), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_override] = ACTIONS(3172), + [anon_sym_module] = ACTIONS(3172), + [anon_sym_any] = ACTIONS(3172), + [anon_sym_number] = ACTIONS(3172), + [anon_sym_boolean] = ACTIONS(3172), + [anon_sym_string] = ACTIONS(3172), + [anon_sym_symbol] = ACTIONS(3172), + [anon_sym_object] = ACTIONS(3172), + [anon_sym_abstract] = ACTIONS(3172), + [anon_sym_interface] = ACTIONS(3172), + [anon_sym_enum] = ACTIONS(3172), [sym_html_comment] = ACTIONS(5), }, - [1207] = { - [sym_comment] = STATE(1207), - [ts_builtin_sym_end] = ACTIONS(2279), - [sym_identifier] = ACTIONS(2149), - [anon_sym_export] = ACTIONS(2149), - [anon_sym_type] = ACTIONS(2149), - [anon_sym_namespace] = ACTIONS(2149), - [anon_sym_LBRACE] = ACTIONS(2149), - [anon_sym_RBRACE] = ACTIONS(2149), - [anon_sym_typeof] = ACTIONS(2149), - [anon_sym_import] = ACTIONS(2149), - [anon_sym_with] = ACTIONS(2149), - [anon_sym_var] = ACTIONS(2149), - [anon_sym_let] = ACTIONS(2149), - [anon_sym_const] = ACTIONS(2149), - [anon_sym_BANG] = ACTIONS(2149), - [anon_sym_if] = ACTIONS(2149), - [anon_sym_switch] = ACTIONS(2149), - [anon_sym_for] = ACTIONS(2149), - [anon_sym_LPAREN] = ACTIONS(2149), - [anon_sym_await] = ACTIONS(2149), - [anon_sym_while] = ACTIONS(2149), - [anon_sym_do] = ACTIONS(2149), - [anon_sym_try] = ACTIONS(2149), - [anon_sym_break] = ACTIONS(2149), - [anon_sym_continue] = ACTIONS(2149), - [anon_sym_debugger] = ACTIONS(2149), - [anon_sym_return] = ACTIONS(2149), - [anon_sym_throw] = ACTIONS(2149), - [anon_sym_SEMI] = ACTIONS(2149), - [anon_sym_yield] = ACTIONS(2149), - [anon_sym_LBRACK] = ACTIONS(2149), - [anon_sym_LTtemplate_GT] = ACTIONS(2149), - [anon_sym_DQUOTE] = ACTIONS(2149), - [anon_sym_SQUOTE] = ACTIONS(2149), - [anon_sym_class] = ACTIONS(2149), - [anon_sym_async] = ACTIONS(2149), - [anon_sym_function] = ACTIONS(2149), - [anon_sym_new] = ACTIONS(2149), - [anon_sym_using] = ACTIONS(2149), - [anon_sym_PLUS] = ACTIONS(2149), - [anon_sym_DASH] = ACTIONS(2149), - [anon_sym_SLASH] = ACTIONS(2149), - [anon_sym_LT] = ACTIONS(2149), - [anon_sym_TILDE] = ACTIONS(2149), - [anon_sym_void] = ACTIONS(2149), - [anon_sym_delete] = ACTIONS(2149), - [anon_sym_PLUS_PLUS] = ACTIONS(2149), - [anon_sym_DASH_DASH] = ACTIONS(2149), + [1192] = { + [sym_comment] = STATE(1192), + [sym_identifier] = ACTIONS(3160), + [anon_sym_export] = ACTIONS(3160), + [anon_sym_default] = ACTIONS(3160), + [anon_sym_type] = ACTIONS(3160), + [anon_sym_namespace] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3160), + [anon_sym_RBRACE] = ACTIONS(3160), + [anon_sym_typeof] = ACTIONS(3160), + [anon_sym_import] = ACTIONS(3160), + [anon_sym_with] = ACTIONS(3160), + [anon_sym_var] = ACTIONS(3160), + [anon_sym_let] = ACTIONS(3160), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_switch] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_await] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_do] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_debugger] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_case] = ACTIONS(3160), + [anon_sym_yield] = ACTIONS(3160), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_LTtemplate_GT] = ACTIONS(3160), + [anon_sym_DQUOTE] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3160), + [anon_sym_class] = ACTIONS(3160), + [anon_sym_async] = ACTIONS(3160), + [anon_sym_function] = ACTIONS(3160), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_using] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_void] = ACTIONS(3160), + [anon_sym_delete] = ACTIONS(3160), + [anon_sym_PLUS_PLUS] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3160), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2149), - [sym_number] = ACTIONS(2149), - [sym_private_property_identifier] = ACTIONS(2149), - [sym_this] = ACTIONS(2149), - [sym_super] = ACTIONS(2149), - [sym_true] = ACTIONS(2149), - [sym_false] = ACTIONS(2149), - [sym_null] = ACTIONS(2149), - [sym_undefined] = ACTIONS(2149), - [anon_sym_AT] = ACTIONS(2149), - [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_abstract] = ACTIONS(2149), - [anon_sym_interface] = ACTIONS(2149), - [anon_sym_enum] = ACTIONS(2149), - [sym__automatic_semicolon] = ACTIONS(2435), - [sym_html_comment] = ACTIONS(5), - }, - [1208] = { - [sym_comment] = STATE(1208), - [sym_identifier] = ACTIONS(3244), - [anon_sym_export] = ACTIONS(3244), - [anon_sym_default] = ACTIONS(3244), - [anon_sym_type] = ACTIONS(3244), - [anon_sym_namespace] = ACTIONS(3244), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_typeof] = ACTIONS(3244), - [anon_sym_import] = ACTIONS(3244), - [anon_sym_with] = ACTIONS(3244), - [anon_sym_var] = ACTIONS(3244), - [anon_sym_let] = ACTIONS(3244), - [anon_sym_const] = ACTIONS(3244), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_switch] = ACTIONS(3244), - [anon_sym_for] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_await] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3244), - [anon_sym_do] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_debugger] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_throw] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_case] = ACTIONS(3244), - [anon_sym_yield] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_LTtemplate_GT] = ACTIONS(3244), - [anon_sym_DQUOTE] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3244), - [anon_sym_class] = ACTIONS(3244), - [anon_sym_async] = ACTIONS(3244), - [anon_sym_function] = ACTIONS(3244), - [anon_sym_new] = ACTIONS(3244), - [anon_sym_using] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3244), - [anon_sym_TILDE] = ACTIONS(3244), - [anon_sym_void] = ACTIONS(3244), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3244), - [sym_number] = ACTIONS(3244), - [sym_private_property_identifier] = ACTIONS(3244), - [sym_this] = ACTIONS(3244), - [sym_super] = ACTIONS(3244), - [sym_true] = ACTIONS(3244), - [sym_false] = ACTIONS(3244), - [sym_null] = ACTIONS(3244), - [sym_undefined] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3244), - [anon_sym_static] = ACTIONS(3244), - [anon_sym_readonly] = ACTIONS(3244), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_declare] = ACTIONS(3244), - [anon_sym_public] = ACTIONS(3244), - [anon_sym_private] = ACTIONS(3244), - [anon_sym_protected] = ACTIONS(3244), - [anon_sym_override] = ACTIONS(3244), - [anon_sym_module] = ACTIONS(3244), - [anon_sym_any] = ACTIONS(3244), - [anon_sym_number] = ACTIONS(3244), - [anon_sym_boolean] = ACTIONS(3244), - [anon_sym_string] = ACTIONS(3244), - [anon_sym_symbol] = ACTIONS(3244), - [anon_sym_object] = ACTIONS(3244), - [anon_sym_abstract] = ACTIONS(3244), - [anon_sym_interface] = ACTIONS(3244), - [anon_sym_enum] = ACTIONS(3244), - [sym_html_comment] = ACTIONS(5), - }, - [1209] = { - [sym_comment] = STATE(1209), - [ts_builtin_sym_end] = ACTIONS(2275), - [sym_identifier] = ACTIONS(2135), - [anon_sym_export] = ACTIONS(2135), - [anon_sym_type] = ACTIONS(2135), - [anon_sym_namespace] = ACTIONS(2135), - [anon_sym_LBRACE] = ACTIONS(2135), - [anon_sym_RBRACE] = ACTIONS(2135), - [anon_sym_typeof] = ACTIONS(2135), - [anon_sym_import] = ACTIONS(2135), - [anon_sym_with] = ACTIONS(2135), - [anon_sym_var] = ACTIONS(2135), - [anon_sym_let] = ACTIONS(2135), - [anon_sym_const] = ACTIONS(2135), - [anon_sym_BANG] = ACTIONS(2135), - [anon_sym_if] = ACTIONS(2135), - [anon_sym_switch] = ACTIONS(2135), - [anon_sym_for] = ACTIONS(2135), - [anon_sym_LPAREN] = ACTIONS(2135), - [anon_sym_await] = ACTIONS(2135), - [anon_sym_while] = ACTIONS(2135), - [anon_sym_do] = ACTIONS(2135), - [anon_sym_try] = ACTIONS(2135), - [anon_sym_break] = ACTIONS(2135), - [anon_sym_continue] = ACTIONS(2135), - [anon_sym_debugger] = ACTIONS(2135), - [anon_sym_return] = ACTIONS(2135), - [anon_sym_throw] = ACTIONS(2135), - [anon_sym_SEMI] = ACTIONS(2135), - [anon_sym_yield] = ACTIONS(2135), - [anon_sym_LBRACK] = ACTIONS(2135), - [anon_sym_LTtemplate_GT] = ACTIONS(2135), - [anon_sym_DQUOTE] = ACTIONS(2135), - [anon_sym_SQUOTE] = ACTIONS(2135), - [anon_sym_class] = ACTIONS(2135), - [anon_sym_async] = ACTIONS(2135), - [anon_sym_function] = ACTIONS(2135), - [anon_sym_new] = ACTIONS(2135), - [anon_sym_using] = ACTIONS(2135), - [anon_sym_PLUS] = ACTIONS(2135), - [anon_sym_DASH] = ACTIONS(2135), - [anon_sym_SLASH] = ACTIONS(2135), - [anon_sym_LT] = ACTIONS(2135), - [anon_sym_TILDE] = ACTIONS(2135), - [anon_sym_void] = ACTIONS(2135), - [anon_sym_delete] = ACTIONS(2135), - [anon_sym_PLUS_PLUS] = ACTIONS(2135), - [anon_sym_DASH_DASH] = ACTIONS(2135), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2135), - [sym_number] = ACTIONS(2135), - [sym_private_property_identifier] = ACTIONS(2135), - [sym_this] = ACTIONS(2135), - [sym_super] = ACTIONS(2135), - [sym_true] = ACTIONS(2135), - [sym_false] = ACTIONS(2135), - [sym_null] = ACTIONS(2135), - [sym_undefined] = ACTIONS(2135), - [anon_sym_AT] = ACTIONS(2135), - [anon_sym_static] = ACTIONS(2135), - [anon_sym_readonly] = ACTIONS(2135), - [anon_sym_get] = ACTIONS(2135), - [anon_sym_set] = ACTIONS(2135), - [anon_sym_declare] = ACTIONS(2135), - [anon_sym_public] = ACTIONS(2135), - [anon_sym_private] = ACTIONS(2135), - [anon_sym_protected] = ACTIONS(2135), - [anon_sym_override] = ACTIONS(2135), - [anon_sym_module] = ACTIONS(2135), - [anon_sym_any] = ACTIONS(2135), - [anon_sym_number] = ACTIONS(2135), - [anon_sym_boolean] = ACTIONS(2135), - [anon_sym_string] = ACTIONS(2135), - [anon_sym_symbol] = ACTIONS(2135), - [anon_sym_object] = ACTIONS(2135), - [anon_sym_abstract] = ACTIONS(2135), - [anon_sym_interface] = ACTIONS(2135), - [anon_sym_enum] = ACTIONS(2135), - [sym__automatic_semicolon] = ACTIONS(2443), - [sym_html_comment] = ACTIONS(5), - }, - [1210] = { - [sym_comment] = STATE(1210), - [sym_identifier] = ACTIONS(3246), - [anon_sym_export] = ACTIONS(3246), - [anon_sym_default] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_namespace] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3246), - [anon_sym_typeof] = ACTIONS(3246), - [anon_sym_import] = ACTIONS(3246), - [anon_sym_with] = ACTIONS(3246), - [anon_sym_var] = ACTIONS(3246), - [anon_sym_let] = ACTIONS(3246), - [anon_sym_const] = ACTIONS(3246), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_switch] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(3246), - [anon_sym_await] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_do] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_debugger] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_case] = ACTIONS(3246), - [anon_sym_yield] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_LTtemplate_GT] = ACTIONS(3246), - [anon_sym_DQUOTE] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3246), - [anon_sym_class] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_function] = ACTIONS(3246), - [anon_sym_new] = ACTIONS(3246), - [anon_sym_using] = ACTIONS(3246), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(3246), - [anon_sym_void] = ACTIONS(3246), - [anon_sym_delete] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3246), - [anon_sym_DASH_DASH] = ACTIONS(3246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3246), - [sym_number] = ACTIONS(3246), - [sym_private_property_identifier] = ACTIONS(3246), - [sym_this] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_true] = ACTIONS(3246), - [sym_false] = ACTIONS(3246), - [sym_null] = ACTIONS(3246), - [sym_undefined] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_static] = ACTIONS(3246), - [anon_sym_readonly] = ACTIONS(3246), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_declare] = ACTIONS(3246), - [anon_sym_public] = ACTIONS(3246), - [anon_sym_private] = ACTIONS(3246), - [anon_sym_protected] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3246), - [anon_sym_module] = ACTIONS(3246), - [anon_sym_any] = ACTIONS(3246), - [anon_sym_number] = ACTIONS(3246), - [anon_sym_boolean] = ACTIONS(3246), - [anon_sym_string] = ACTIONS(3246), - [anon_sym_symbol] = ACTIONS(3246), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_abstract] = ACTIONS(3246), - [anon_sym_interface] = ACTIONS(3246), - [anon_sym_enum] = ACTIONS(3246), + [anon_sym_BQUOTE] = ACTIONS(3160), + [sym_number] = ACTIONS(3160), + [sym_private_property_identifier] = ACTIONS(3160), + [sym_this] = ACTIONS(3160), + [sym_super] = ACTIONS(3160), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [sym_null] = ACTIONS(3160), + [sym_undefined] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3160), + [anon_sym_static] = ACTIONS(3160), + [anon_sym_readonly] = ACTIONS(3160), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_declare] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_module] = ACTIONS(3160), + [anon_sym_any] = ACTIONS(3160), + [anon_sym_number] = ACTIONS(3160), + [anon_sym_boolean] = ACTIONS(3160), + [anon_sym_string] = ACTIONS(3160), + [anon_sym_symbol] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_interface] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), [sym_html_comment] = ACTIONS(5), }, - [1211] = { - [sym_comment] = STATE(1211), - [ts_builtin_sym_end] = ACTIONS(3316), - [sym_identifier] = ACTIONS(3106), - [anon_sym_export] = ACTIONS(3106), - [anon_sym_type] = ACTIONS(3106), - [anon_sym_namespace] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(3106), - [anon_sym_RBRACE] = ACTIONS(3106), - [anon_sym_typeof] = ACTIONS(3106), - [anon_sym_import] = ACTIONS(3106), - [anon_sym_with] = ACTIONS(3106), - [anon_sym_var] = ACTIONS(3106), - [anon_sym_let] = ACTIONS(3106), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_BANG] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_switch] = ACTIONS(3106), - [anon_sym_for] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3106), - [anon_sym_await] = ACTIONS(3106), - [anon_sym_while] = ACTIONS(3106), - [anon_sym_do] = ACTIONS(3106), - [anon_sym_try] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_debugger] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_throw] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3106), - [anon_sym_finally] = ACTIONS(3106), - [anon_sym_yield] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(3106), - [anon_sym_LTtemplate_GT] = ACTIONS(3106), - [anon_sym_DQUOTE] = ACTIONS(3106), - [anon_sym_SQUOTE] = ACTIONS(3106), - [anon_sym_class] = ACTIONS(3106), - [anon_sym_async] = ACTIONS(3106), - [anon_sym_function] = ACTIONS(3106), - [anon_sym_new] = ACTIONS(3106), - [anon_sym_using] = ACTIONS(3106), - [anon_sym_PLUS] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3106), - [anon_sym_SLASH] = ACTIONS(3106), - [anon_sym_LT] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3106), - [anon_sym_void] = ACTIONS(3106), - [anon_sym_delete] = ACTIONS(3106), - [anon_sym_PLUS_PLUS] = ACTIONS(3106), - [anon_sym_DASH_DASH] = ACTIONS(3106), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3106), - [sym_number] = ACTIONS(3106), - [sym_private_property_identifier] = ACTIONS(3106), - [sym_this] = ACTIONS(3106), - [sym_super] = ACTIONS(3106), - [sym_true] = ACTIONS(3106), - [sym_false] = ACTIONS(3106), - [sym_null] = ACTIONS(3106), - [sym_undefined] = ACTIONS(3106), - [anon_sym_AT] = ACTIONS(3106), - [anon_sym_static] = ACTIONS(3106), - [anon_sym_readonly] = ACTIONS(3106), - [anon_sym_get] = ACTIONS(3106), - [anon_sym_set] = ACTIONS(3106), - [anon_sym_declare] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_override] = ACTIONS(3106), - [anon_sym_module] = ACTIONS(3106), - [anon_sym_any] = ACTIONS(3106), - [anon_sym_number] = ACTIONS(3106), - [anon_sym_boolean] = ACTIONS(3106), - [anon_sym_string] = ACTIONS(3106), - [anon_sym_symbol] = ACTIONS(3106), - [anon_sym_object] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_interface] = ACTIONS(3106), - [anon_sym_enum] = ACTIONS(3106), + [1193] = { + [sym_comment] = STATE(1193), + [sym_identifier] = ACTIONS(3290), + [anon_sym_export] = ACTIONS(3290), + [anon_sym_default] = ACTIONS(3290), + [anon_sym_type] = ACTIONS(3290), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(3290), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_typeof] = ACTIONS(3290), + [anon_sym_import] = ACTIONS(3290), + [anon_sym_with] = ACTIONS(3290), + [anon_sym_var] = ACTIONS(3290), + [anon_sym_let] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_await] = ACTIONS(3290), + [anon_sym_while] = ACTIONS(3290), + [anon_sym_do] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3290), + [anon_sym_break] = ACTIONS(3290), + [anon_sym_continue] = ACTIONS(3290), + [anon_sym_debugger] = ACTIONS(3290), + [anon_sym_return] = ACTIONS(3290), + [anon_sym_throw] = ACTIONS(3290), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_case] = ACTIONS(3290), + [anon_sym_yield] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_LTtemplate_GT] = ACTIONS(3290), + [anon_sym_DQUOTE] = ACTIONS(3290), + [anon_sym_SQUOTE] = ACTIONS(3290), + [anon_sym_class] = ACTIONS(3290), + [anon_sym_async] = ACTIONS(3290), + [anon_sym_function] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_using] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_SLASH] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3290), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_void] = ACTIONS(3290), + [anon_sym_delete] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3290), + [sym_number] = ACTIONS(3290), + [sym_private_property_identifier] = ACTIONS(3290), + [sym_this] = ACTIONS(3290), + [sym_super] = ACTIONS(3290), + [sym_true] = ACTIONS(3290), + [sym_false] = ACTIONS(3290), + [sym_null] = ACTIONS(3290), + [sym_undefined] = ACTIONS(3290), + [anon_sym_AT] = ACTIONS(3290), + [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_abstract] = ACTIONS(3290), + [anon_sym_interface] = ACTIONS(3290), + [anon_sym_enum] = ACTIONS(3290), [sym_html_comment] = ACTIONS(5), }, - [1212] = { - [sym_comment] = STATE(1212), - [sym_identifier] = ACTIONS(3246), - [anon_sym_export] = ACTIONS(3246), - [anon_sym_default] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_namespace] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3246), - [anon_sym_typeof] = ACTIONS(3246), - [anon_sym_import] = ACTIONS(3246), - [anon_sym_with] = ACTIONS(3246), - [anon_sym_var] = ACTIONS(3246), - [anon_sym_let] = ACTIONS(3246), - [anon_sym_const] = ACTIONS(3246), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_switch] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(3246), - [anon_sym_await] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_do] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_debugger] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_case] = ACTIONS(3246), - [anon_sym_yield] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_LTtemplate_GT] = ACTIONS(3246), - [anon_sym_DQUOTE] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3246), - [anon_sym_class] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_function] = ACTIONS(3246), - [anon_sym_new] = ACTIONS(3246), - [anon_sym_using] = ACTIONS(3246), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(3246), - [anon_sym_void] = ACTIONS(3246), - [anon_sym_delete] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3246), - [anon_sym_DASH_DASH] = ACTIONS(3246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3246), - [sym_number] = ACTIONS(3246), - [sym_private_property_identifier] = ACTIONS(3246), - [sym_this] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_true] = ACTIONS(3246), - [sym_false] = ACTIONS(3246), - [sym_null] = ACTIONS(3246), - [sym_undefined] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_static] = ACTIONS(3246), - [anon_sym_readonly] = ACTIONS(3246), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_declare] = ACTIONS(3246), - [anon_sym_public] = ACTIONS(3246), - [anon_sym_private] = ACTIONS(3246), - [anon_sym_protected] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3246), - [anon_sym_module] = ACTIONS(3246), - [anon_sym_any] = ACTIONS(3246), - [anon_sym_number] = ACTIONS(3246), - [anon_sym_boolean] = ACTIONS(3246), - [anon_sym_string] = ACTIONS(3246), - [anon_sym_symbol] = ACTIONS(3246), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_abstract] = ACTIONS(3246), - [anon_sym_interface] = ACTIONS(3246), - [anon_sym_enum] = ACTIONS(3246), + [1194] = { + [sym_comment] = STATE(1194), + [ts_builtin_sym_end] = ACTIONS(3394), + [sym_identifier] = ACTIONS(3172), + [anon_sym_export] = ACTIONS(3172), + [anon_sym_type] = ACTIONS(3172), + [anon_sym_namespace] = ACTIONS(3172), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3172), + [anon_sym_typeof] = ACTIONS(3172), + [anon_sym_import] = ACTIONS(3172), + [anon_sym_with] = ACTIONS(3172), + [anon_sym_var] = ACTIONS(3172), + [anon_sym_let] = ACTIONS(3172), + [anon_sym_const] = ACTIONS(3172), + [anon_sym_BANG] = ACTIONS(3172), + [anon_sym_else] = ACTIONS(3172), + [anon_sym_if] = ACTIONS(3172), + [anon_sym_switch] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_await] = ACTIONS(3172), + [anon_sym_while] = ACTIONS(3172), + [anon_sym_do] = ACTIONS(3172), + [anon_sym_try] = ACTIONS(3172), + [anon_sym_break] = ACTIONS(3172), + [anon_sym_continue] = ACTIONS(3172), + [anon_sym_debugger] = ACTIONS(3172), + [anon_sym_return] = ACTIONS(3172), + [anon_sym_throw] = ACTIONS(3172), + [anon_sym_SEMI] = ACTIONS(3172), + [anon_sym_yield] = ACTIONS(3172), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_LTtemplate_GT] = ACTIONS(3172), + [anon_sym_DQUOTE] = ACTIONS(3172), + [anon_sym_SQUOTE] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3172), + [anon_sym_async] = ACTIONS(3172), + [anon_sym_function] = ACTIONS(3172), + [anon_sym_new] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3172), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_void] = ACTIONS(3172), + [anon_sym_delete] = ACTIONS(3172), + [anon_sym_PLUS_PLUS] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3172), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3172), + [sym_number] = ACTIONS(3172), + [sym_private_property_identifier] = ACTIONS(3172), + [sym_this] = ACTIONS(3172), + [sym_super] = ACTIONS(3172), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [sym_null] = ACTIONS(3172), + [sym_undefined] = ACTIONS(3172), + [anon_sym_AT] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3172), + [anon_sym_readonly] = ACTIONS(3172), + [anon_sym_get] = ACTIONS(3172), + [anon_sym_set] = ACTIONS(3172), + [anon_sym_declare] = ACTIONS(3172), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_override] = ACTIONS(3172), + [anon_sym_module] = ACTIONS(3172), + [anon_sym_any] = ACTIONS(3172), + [anon_sym_number] = ACTIONS(3172), + [anon_sym_boolean] = ACTIONS(3172), + [anon_sym_string] = ACTIONS(3172), + [anon_sym_symbol] = ACTIONS(3172), + [anon_sym_object] = ACTIONS(3172), + [anon_sym_abstract] = ACTIONS(3172), + [anon_sym_interface] = ACTIONS(3172), + [anon_sym_enum] = ACTIONS(3172), [sym_html_comment] = ACTIONS(5), }, - [1213] = { - [sym_comment] = STATE(1213), - [sym_identifier] = ACTIONS(3246), - [anon_sym_export] = ACTIONS(3246), - [anon_sym_default] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_namespace] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3246), - [anon_sym_typeof] = ACTIONS(3246), - [anon_sym_import] = ACTIONS(3246), - [anon_sym_with] = ACTIONS(3246), - [anon_sym_var] = ACTIONS(3246), - [anon_sym_let] = ACTIONS(3246), - [anon_sym_const] = ACTIONS(3246), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_switch] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(3246), - [anon_sym_await] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_do] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_debugger] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_case] = ACTIONS(3246), - [anon_sym_yield] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_LTtemplate_GT] = ACTIONS(3246), - [anon_sym_DQUOTE] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3246), - [anon_sym_class] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_function] = ACTIONS(3246), - [anon_sym_new] = ACTIONS(3246), - [anon_sym_using] = ACTIONS(3246), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(3246), - [anon_sym_void] = ACTIONS(3246), - [anon_sym_delete] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3246), - [anon_sym_DASH_DASH] = ACTIONS(3246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3246), - [sym_number] = ACTIONS(3246), - [sym_private_property_identifier] = ACTIONS(3246), - [sym_this] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_true] = ACTIONS(3246), - [sym_false] = ACTIONS(3246), - [sym_null] = ACTIONS(3246), - [sym_undefined] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_static] = ACTIONS(3246), - [anon_sym_readonly] = ACTIONS(3246), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_declare] = ACTIONS(3246), - [anon_sym_public] = ACTIONS(3246), - [anon_sym_private] = ACTIONS(3246), - [anon_sym_protected] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3246), - [anon_sym_module] = ACTIONS(3246), - [anon_sym_any] = ACTIONS(3246), - [anon_sym_number] = ACTIONS(3246), - [anon_sym_boolean] = ACTIONS(3246), - [anon_sym_string] = ACTIONS(3246), - [anon_sym_symbol] = ACTIONS(3246), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_abstract] = ACTIONS(3246), - [anon_sym_interface] = ACTIONS(3246), - [anon_sym_enum] = ACTIONS(3246), + [1195] = { + [sym_comment] = STATE(1195), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(2115), [sym_html_comment] = ACTIONS(5), }, - [1214] = { - [sym_comment] = STATE(1214), - [sym_identifier] = ACTIONS(3372), - [anon_sym_export] = ACTIONS(3372), - [anon_sym_default] = ACTIONS(3372), - [anon_sym_type] = ACTIONS(3372), - [anon_sym_namespace] = ACTIONS(3372), - [anon_sym_LBRACE] = ACTIONS(3372), - [anon_sym_RBRACE] = ACTIONS(3372), - [anon_sym_typeof] = ACTIONS(3372), - [anon_sym_import] = ACTIONS(3372), - [anon_sym_with] = ACTIONS(3372), - [anon_sym_var] = ACTIONS(3372), - [anon_sym_let] = ACTIONS(3372), - [anon_sym_const] = ACTIONS(3372), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_if] = ACTIONS(3372), - [anon_sym_switch] = ACTIONS(3372), - [anon_sym_for] = ACTIONS(3372), - [anon_sym_LPAREN] = ACTIONS(3372), - [anon_sym_await] = ACTIONS(3372), - [anon_sym_while] = ACTIONS(3372), - [anon_sym_do] = ACTIONS(3372), - [anon_sym_try] = ACTIONS(3372), - [anon_sym_break] = ACTIONS(3372), - [anon_sym_continue] = ACTIONS(3372), - [anon_sym_debugger] = ACTIONS(3372), - [anon_sym_return] = ACTIONS(3372), - [anon_sym_throw] = ACTIONS(3372), - [anon_sym_SEMI] = ACTIONS(3372), - [anon_sym_case] = ACTIONS(3372), - [anon_sym_yield] = ACTIONS(3372), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_LTtemplate_GT] = ACTIONS(3372), - [anon_sym_DQUOTE] = ACTIONS(3372), - [anon_sym_SQUOTE] = ACTIONS(3372), - [anon_sym_class] = ACTIONS(3372), - [anon_sym_async] = ACTIONS(3372), - [anon_sym_function] = ACTIONS(3372), - [anon_sym_new] = ACTIONS(3372), - [anon_sym_using] = ACTIONS(3372), - [anon_sym_PLUS] = ACTIONS(3372), - [anon_sym_DASH] = ACTIONS(3372), - [anon_sym_SLASH] = ACTIONS(3372), - [anon_sym_LT] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(3372), - [anon_sym_void] = ACTIONS(3372), - [anon_sym_delete] = ACTIONS(3372), - [anon_sym_PLUS_PLUS] = ACTIONS(3372), - [anon_sym_DASH_DASH] = ACTIONS(3372), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3372), - [sym_number] = ACTIONS(3372), - [sym_private_property_identifier] = ACTIONS(3372), - [sym_this] = ACTIONS(3372), - [sym_super] = ACTIONS(3372), - [sym_true] = ACTIONS(3372), - [sym_false] = ACTIONS(3372), - [sym_null] = ACTIONS(3372), - [sym_undefined] = ACTIONS(3372), - [anon_sym_AT] = ACTIONS(3372), - [anon_sym_static] = ACTIONS(3372), - [anon_sym_readonly] = ACTIONS(3372), - [anon_sym_get] = ACTIONS(3372), - [anon_sym_set] = ACTIONS(3372), - [anon_sym_declare] = ACTIONS(3372), - [anon_sym_public] = ACTIONS(3372), - [anon_sym_private] = ACTIONS(3372), - [anon_sym_protected] = ACTIONS(3372), - [anon_sym_override] = ACTIONS(3372), - [anon_sym_module] = ACTIONS(3372), - [anon_sym_any] = ACTIONS(3372), - [anon_sym_number] = ACTIONS(3372), - [anon_sym_boolean] = ACTIONS(3372), - [anon_sym_string] = ACTIONS(3372), - [anon_sym_symbol] = ACTIONS(3372), - [anon_sym_object] = ACTIONS(3372), - [anon_sym_abstract] = ACTIONS(3372), - [anon_sym_interface] = ACTIONS(3372), - [anon_sym_enum] = ACTIONS(3372), + [1196] = { + [sym_comment] = STATE(1196), + [sym_identifier] = ACTIONS(3158), + [anon_sym_export] = ACTIONS(3158), + [anon_sym_default] = ACTIONS(3158), + [anon_sym_type] = ACTIONS(3158), + [anon_sym_namespace] = ACTIONS(3158), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_typeof] = ACTIONS(3158), + [anon_sym_import] = ACTIONS(3158), + [anon_sym_with] = ACTIONS(3158), + [anon_sym_var] = ACTIONS(3158), + [anon_sym_let] = ACTIONS(3158), + [anon_sym_const] = ACTIONS(3158), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_if] = ACTIONS(3158), + [anon_sym_switch] = ACTIONS(3158), + [anon_sym_for] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3158), + [anon_sym_await] = ACTIONS(3158), + [anon_sym_while] = ACTIONS(3158), + [anon_sym_do] = ACTIONS(3158), + [anon_sym_try] = ACTIONS(3158), + [anon_sym_break] = ACTIONS(3158), + [anon_sym_continue] = ACTIONS(3158), + [anon_sym_debugger] = ACTIONS(3158), + [anon_sym_return] = ACTIONS(3158), + [anon_sym_throw] = ACTIONS(3158), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_case] = ACTIONS(3158), + [anon_sym_yield] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_LTtemplate_GT] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(3158), + [anon_sym_SQUOTE] = ACTIONS(3158), + [anon_sym_class] = ACTIONS(3158), + [anon_sym_async] = ACTIONS(3158), + [anon_sym_function] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3158), + [anon_sym_using] = ACTIONS(3158), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_SLASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3158), + [anon_sym_TILDE] = ACTIONS(3158), + [anon_sym_void] = ACTIONS(3158), + [anon_sym_delete] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3158), + [anon_sym_DASH_DASH] = ACTIONS(3158), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3158), + [sym_number] = ACTIONS(3158), + [sym_private_property_identifier] = ACTIONS(3158), + [sym_this] = ACTIONS(3158), + [sym_super] = ACTIONS(3158), + [sym_true] = ACTIONS(3158), + [sym_false] = ACTIONS(3158), + [sym_null] = ACTIONS(3158), + [sym_undefined] = ACTIONS(3158), + [anon_sym_AT] = ACTIONS(3158), + [anon_sym_static] = ACTIONS(3158), + [anon_sym_readonly] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3158), + [anon_sym_set] = ACTIONS(3158), + [anon_sym_declare] = ACTIONS(3158), + [anon_sym_public] = ACTIONS(3158), + [anon_sym_private] = ACTIONS(3158), + [anon_sym_protected] = ACTIONS(3158), + [anon_sym_override] = ACTIONS(3158), + [anon_sym_module] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(3158), + [anon_sym_number] = ACTIONS(3158), + [anon_sym_boolean] = ACTIONS(3158), + [anon_sym_string] = ACTIONS(3158), + [anon_sym_symbol] = ACTIONS(3158), + [anon_sym_object] = ACTIONS(3158), + [anon_sym_abstract] = ACTIONS(3158), + [anon_sym_interface] = ACTIONS(3158), + [anon_sym_enum] = ACTIONS(3158), [sym_html_comment] = ACTIONS(5), }, - [1215] = { - [sym_statement_block] = STATE(1580), - [sym_comment] = STATE(1215), - [ts_builtin_sym_end] = ACTIONS(2059), - [sym_identifier] = ACTIONS(2055), - [anon_sym_export] = ACTIONS(2055), - [anon_sym_type] = ACTIONS(2055), - [anon_sym_namespace] = ACTIONS(2055), - [anon_sym_LBRACE] = ACTIONS(3360), - [anon_sym_RBRACE] = ACTIONS(2055), - [anon_sym_typeof] = ACTIONS(2055), - [anon_sym_import] = ACTIONS(2055), - [anon_sym_with] = ACTIONS(2055), - [anon_sym_var] = ACTIONS(2055), - [anon_sym_let] = ACTIONS(2055), - [anon_sym_const] = ACTIONS(2055), - [anon_sym_BANG] = ACTIONS(2055), - [anon_sym_if] = ACTIONS(2055), - [anon_sym_switch] = ACTIONS(2055), - [anon_sym_for] = ACTIONS(2055), - [anon_sym_LPAREN] = ACTIONS(2055), - [anon_sym_await] = ACTIONS(2055), - [anon_sym_while] = ACTIONS(2055), - [anon_sym_do] = ACTIONS(2055), - [anon_sym_try] = ACTIONS(2055), - [anon_sym_break] = ACTIONS(2055), - [anon_sym_continue] = ACTIONS(2055), - [anon_sym_debugger] = ACTIONS(2055), - [anon_sym_return] = ACTIONS(2055), - [anon_sym_throw] = ACTIONS(2055), - [anon_sym_SEMI] = ACTIONS(2055), - [anon_sym_yield] = ACTIONS(2055), - [anon_sym_LBRACK] = ACTIONS(2055), - [anon_sym_LTtemplate_GT] = ACTIONS(2055), - [anon_sym_DQUOTE] = ACTIONS(2055), - [anon_sym_SQUOTE] = ACTIONS(2055), - [anon_sym_class] = ACTIONS(2055), - [anon_sym_async] = ACTIONS(2055), - [anon_sym_function] = ACTIONS(2055), - [anon_sym_new] = ACTIONS(2055), - [anon_sym_using] = ACTIONS(2055), - [anon_sym_PLUS] = ACTIONS(2055), - [anon_sym_DASH] = ACTIONS(2055), - [anon_sym_SLASH] = ACTIONS(2055), - [anon_sym_LT] = ACTIONS(2055), - [anon_sym_TILDE] = ACTIONS(2055), - [anon_sym_void] = ACTIONS(2055), - [anon_sym_delete] = ACTIONS(2055), - [anon_sym_PLUS_PLUS] = ACTIONS(2055), - [anon_sym_DASH_DASH] = ACTIONS(2055), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2055), - [sym_number] = ACTIONS(2055), - [sym_private_property_identifier] = ACTIONS(2055), - [sym_this] = ACTIONS(2055), - [sym_super] = ACTIONS(2055), - [sym_true] = ACTIONS(2055), - [sym_false] = ACTIONS(2055), - [sym_null] = ACTIONS(2055), - [sym_undefined] = ACTIONS(2055), - [anon_sym_AT] = ACTIONS(2055), - [anon_sym_static] = ACTIONS(2055), - [anon_sym_readonly] = ACTIONS(2055), - [anon_sym_get] = ACTIONS(2055), - [anon_sym_set] = ACTIONS(2055), - [anon_sym_declare] = ACTIONS(2055), - [anon_sym_public] = ACTIONS(2055), - [anon_sym_private] = ACTIONS(2055), - [anon_sym_protected] = ACTIONS(2055), - [anon_sym_override] = ACTIONS(2055), - [anon_sym_module] = ACTIONS(2055), - [anon_sym_any] = ACTIONS(2055), - [anon_sym_number] = ACTIONS(2055), - [anon_sym_boolean] = ACTIONS(2055), - [anon_sym_string] = ACTIONS(2055), - [anon_sym_symbol] = ACTIONS(2055), - [anon_sym_object] = ACTIONS(2055), - [anon_sym_abstract] = ACTIONS(2055), - [anon_sym_interface] = ACTIONS(2055), - [anon_sym_enum] = ACTIONS(2055), + [1197] = { + [sym_comment] = STATE(1197), + [sym_identifier] = ACTIONS(3306), + [anon_sym_export] = ACTIONS(3306), + [anon_sym_default] = ACTIONS(3306), + [anon_sym_type] = ACTIONS(3306), + [anon_sym_namespace] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_RBRACE] = ACTIONS(3306), + [anon_sym_typeof] = ACTIONS(3306), + [anon_sym_import] = ACTIONS(3306), + [anon_sym_with] = ACTIONS(3306), + [anon_sym_var] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_switch] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_await] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_break] = ACTIONS(3306), + [anon_sym_continue] = ACTIONS(3306), + [anon_sym_debugger] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_throw] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_case] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LTtemplate_GT] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_SQUOTE] = ACTIONS(3306), + [anon_sym_class] = ACTIONS(3306), + [anon_sym_async] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_using] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_SLASH] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_void] = ACTIONS(3306), + [anon_sym_delete] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_DASH_DASH] = ACTIONS(3306), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3306), + [sym_number] = ACTIONS(3306), + [sym_private_property_identifier] = ACTIONS(3306), + [sym_this] = ACTIONS(3306), + [sym_super] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_null] = ACTIONS(3306), + [sym_undefined] = ACTIONS(3306), + [anon_sym_AT] = ACTIONS(3306), + [anon_sym_static] = ACTIONS(3306), + [anon_sym_readonly] = ACTIONS(3306), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3306), + [anon_sym_declare] = ACTIONS(3306), + [anon_sym_public] = ACTIONS(3306), + [anon_sym_private] = ACTIONS(3306), + [anon_sym_protected] = ACTIONS(3306), + [anon_sym_override] = ACTIONS(3306), + [anon_sym_module] = ACTIONS(3306), + [anon_sym_any] = ACTIONS(3306), + [anon_sym_number] = ACTIONS(3306), + [anon_sym_boolean] = ACTIONS(3306), + [anon_sym_string] = ACTIONS(3306), + [anon_sym_symbol] = ACTIONS(3306), + [anon_sym_object] = ACTIONS(3306), + [anon_sym_abstract] = ACTIONS(3306), + [anon_sym_interface] = ACTIONS(3306), + [anon_sym_enum] = ACTIONS(3306), [sym_html_comment] = ACTIONS(5), }, - [1216] = { - [sym_comment] = STATE(1216), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(3374), + [1198] = { + [sym_comment] = STATE(1198), + [ts_builtin_sym_end] = ACTIONS(3396), + [sym_identifier] = ACTIONS(3174), + [anon_sym_export] = ACTIONS(3174), + [anon_sym_type] = ACTIONS(3174), + [anon_sym_namespace] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_RBRACE] = ACTIONS(3174), + [anon_sym_typeof] = ACTIONS(3174), + [anon_sym_import] = ACTIONS(3174), + [anon_sym_with] = ACTIONS(3174), + [anon_sym_var] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_const] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_else] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_switch] = ACTIONS(3174), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_await] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_break] = ACTIONS(3174), + [anon_sym_continue] = ACTIONS(3174), + [anon_sym_debugger] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_throw] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3174), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3174), + [anon_sym_LTtemplate_GT] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [anon_sym_SQUOTE] = ACTIONS(3174), + [anon_sym_class] = ACTIONS(3174), + [anon_sym_async] = ACTIONS(3174), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_using] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_SLASH] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_void] = ACTIONS(3174), + [anon_sym_delete] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_DASH_DASH] = ACTIONS(3174), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3174), + [sym_number] = ACTIONS(3174), + [sym_private_property_identifier] = ACTIONS(3174), + [sym_this] = ACTIONS(3174), + [sym_super] = ACTIONS(3174), + [sym_true] = ACTIONS(3174), + [sym_false] = ACTIONS(3174), + [sym_null] = ACTIONS(3174), + [sym_undefined] = ACTIONS(3174), + [anon_sym_AT] = ACTIONS(3174), + [anon_sym_static] = ACTIONS(3174), + [anon_sym_readonly] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(3174), + [anon_sym_set] = ACTIONS(3174), + [anon_sym_declare] = ACTIONS(3174), + [anon_sym_public] = ACTIONS(3174), + [anon_sym_private] = ACTIONS(3174), + [anon_sym_protected] = ACTIONS(3174), + [anon_sym_override] = ACTIONS(3174), + [anon_sym_module] = ACTIONS(3174), + [anon_sym_any] = ACTIONS(3174), + [anon_sym_number] = ACTIONS(3174), + [anon_sym_boolean] = ACTIONS(3174), + [anon_sym_string] = ACTIONS(3174), + [anon_sym_symbol] = ACTIONS(3174), + [anon_sym_object] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3174), + [anon_sym_interface] = ACTIONS(3174), + [anon_sym_enum] = ACTIONS(3174), [sym_html_comment] = ACTIONS(5), }, - [1217] = { - [sym_comment] = STATE(1217), - [sym_identifier] = ACTIONS(3248), - [anon_sym_export] = ACTIONS(3248), - [anon_sym_default] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_namespace] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_typeof] = ACTIONS(3248), - [anon_sym_import] = ACTIONS(3248), - [anon_sym_with] = ACTIONS(3248), - [anon_sym_var] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_switch] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_await] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3248), - [anon_sym_do] = ACTIONS(3248), - [anon_sym_try] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_debugger] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_throw] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_case] = ACTIONS(3248), - [anon_sym_yield] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_LTtemplate_GT] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_async] = ACTIONS(3248), - [anon_sym_function] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3248), - [anon_sym_using] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_void] = ACTIONS(3248), - [anon_sym_delete] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3248), - [sym_number] = ACTIONS(3248), - [sym_private_property_identifier] = ACTIONS(3248), - [sym_this] = ACTIONS(3248), - [sym_super] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_null] = ACTIONS(3248), - [sym_undefined] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3248), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_readonly] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3248), - [anon_sym_set] = ACTIONS(3248), - [anon_sym_declare] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_protected] = ACTIONS(3248), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_module] = ACTIONS(3248), - [anon_sym_any] = ACTIONS(3248), - [anon_sym_number] = ACTIONS(3248), - [anon_sym_boolean] = ACTIONS(3248), - [anon_sym_string] = ACTIONS(3248), - [anon_sym_symbol] = ACTIONS(3248), - [anon_sym_object] = ACTIONS(3248), - [anon_sym_abstract] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), + [1199] = { + [sym_comment] = STATE(1199), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_default] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_case] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), + [anon_sym_abstract] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), [sym_html_comment] = ACTIONS(5), }, - [1218] = { - [sym_comment] = STATE(1218), - [ts_builtin_sym_end] = ACTIONS(3376), - [sym_identifier] = ACTIONS(3284), - [anon_sym_export] = ACTIONS(3284), - [anon_sym_type] = ACTIONS(3284), - [anon_sym_namespace] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3284), - [anon_sym_typeof] = ACTIONS(3284), - [anon_sym_import] = ACTIONS(3284), - [anon_sym_with] = ACTIONS(3284), - [anon_sym_var] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_const] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_switch] = ACTIONS(3284), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_await] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_debugger] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LTtemplate_GT] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_async] = ACTIONS(3284), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_using] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_void] = ACTIONS(3284), - [anon_sym_delete] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_DASH_DASH] = ACTIONS(3284), + [1200] = { + [sym_comment] = STATE(1200), + [ts_builtin_sym_end] = ACTIONS(3398), + [sym_identifier] = ACTIONS(3128), + [anon_sym_export] = ACTIONS(3128), + [anon_sym_type] = ACTIONS(3128), + [anon_sym_namespace] = ACTIONS(3128), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_typeof] = ACTIONS(3128), + [anon_sym_import] = ACTIONS(3128), + [anon_sym_with] = ACTIONS(3128), + [anon_sym_var] = ACTIONS(3128), + [anon_sym_let] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_BANG] = ACTIONS(3128), + [anon_sym_else] = ACTIONS(3128), + [anon_sym_if] = ACTIONS(3128), + [anon_sym_switch] = ACTIONS(3128), + [anon_sym_for] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3128), + [anon_sym_await] = ACTIONS(3128), + [anon_sym_while] = ACTIONS(3128), + [anon_sym_do] = ACTIONS(3128), + [anon_sym_try] = ACTIONS(3128), + [anon_sym_break] = ACTIONS(3128), + [anon_sym_continue] = ACTIONS(3128), + [anon_sym_debugger] = ACTIONS(3128), + [anon_sym_return] = ACTIONS(3128), + [anon_sym_throw] = ACTIONS(3128), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_yield] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LTtemplate_GT] = ACTIONS(3128), + [anon_sym_DQUOTE] = ACTIONS(3128), + [anon_sym_SQUOTE] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_async] = ACTIONS(3128), + [anon_sym_function] = ACTIONS(3128), + [anon_sym_new] = ACTIONS(3128), + [anon_sym_using] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_TILDE] = ACTIONS(3128), + [anon_sym_void] = ACTIONS(3128), + [anon_sym_delete] = ACTIONS(3128), + [anon_sym_PLUS_PLUS] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3128), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3284), - [sym_number] = ACTIONS(3284), - [sym_private_property_identifier] = ACTIONS(3284), - [sym_this] = ACTIONS(3284), - [sym_super] = ACTIONS(3284), - [sym_true] = ACTIONS(3284), - [sym_false] = ACTIONS(3284), - [sym_null] = ACTIONS(3284), - [sym_undefined] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_readonly] = ACTIONS(3284), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_declare] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_module] = ACTIONS(3284), - [anon_sym_any] = ACTIONS(3284), - [anon_sym_number] = ACTIONS(3284), - [anon_sym_boolean] = ACTIONS(3284), - [anon_sym_string] = ACTIONS(3284), - [anon_sym_symbol] = ACTIONS(3284), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_interface] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), + [anon_sym_BQUOTE] = ACTIONS(3128), + [sym_number] = ACTIONS(3128), + [sym_private_property_identifier] = ACTIONS(3128), + [sym_this] = ACTIONS(3128), + [sym_super] = ACTIONS(3128), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_AT] = ACTIONS(3128), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3128), + [anon_sym_set] = ACTIONS(3128), + [anon_sym_declare] = ACTIONS(3128), + [anon_sym_public] = ACTIONS(3128), + [anon_sym_private] = ACTIONS(3128), + [anon_sym_protected] = ACTIONS(3128), + [anon_sym_override] = ACTIONS(3128), + [anon_sym_module] = ACTIONS(3128), + [anon_sym_any] = ACTIONS(3128), + [anon_sym_number] = ACTIONS(3128), + [anon_sym_boolean] = ACTIONS(3128), + [anon_sym_string] = ACTIONS(3128), + [anon_sym_symbol] = ACTIONS(3128), + [anon_sym_object] = ACTIONS(3128), + [anon_sym_abstract] = ACTIONS(3128), + [anon_sym_interface] = ACTIONS(3128), + [anon_sym_enum] = ACTIONS(3128), [sym_html_comment] = ACTIONS(5), }, - [1219] = { - [sym_comment] = STATE(1219), - [sym_identifier] = ACTIONS(3194), - [anon_sym_export] = ACTIONS(3194), - [anon_sym_default] = ACTIONS(3194), - [anon_sym_type] = ACTIONS(3194), - [anon_sym_namespace] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_typeof] = ACTIONS(3194), - [anon_sym_import] = ACTIONS(3194), - [anon_sym_with] = ACTIONS(3194), - [anon_sym_var] = ACTIONS(3194), - [anon_sym_let] = ACTIONS(3194), - [anon_sym_const] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_switch] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_await] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_debugger] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_case] = ACTIONS(3194), - [anon_sym_yield] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_LTtemplate_GT] = ACTIONS(3194), - [anon_sym_DQUOTE] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_async] = ACTIONS(3194), - [anon_sym_function] = ACTIONS(3194), - [anon_sym_new] = ACTIONS(3194), - [anon_sym_using] = ACTIONS(3194), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3194), - [anon_sym_void] = ACTIONS(3194), - [anon_sym_delete] = ACTIONS(3194), - [anon_sym_PLUS_PLUS] = ACTIONS(3194), - [anon_sym_DASH_DASH] = ACTIONS(3194), + [1201] = { + [sym_comment] = STATE(1201), + [ts_builtin_sym_end] = ACTIONS(3400), + [sym_identifier] = ACTIONS(3356), + [anon_sym_export] = ACTIONS(3356), + [anon_sym_type] = ACTIONS(3356), + [anon_sym_namespace] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_typeof] = ACTIONS(3356), + [anon_sym_import] = ACTIONS(3356), + [anon_sym_with] = ACTIONS(3356), + [anon_sym_var] = ACTIONS(3356), + [anon_sym_let] = ACTIONS(3356), + [anon_sym_const] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_else] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_switch] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_await] = ACTIONS(3356), + [anon_sym_while] = ACTIONS(3356), + [anon_sym_do] = ACTIONS(3356), + [anon_sym_try] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_debugger] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_throw] = ACTIONS(3356), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LTtemplate_GT] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_class] = ACTIONS(3356), + [anon_sym_async] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3356), + [anon_sym_new] = ACTIONS(3356), + [anon_sym_using] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_void] = ACTIONS(3356), + [anon_sym_delete] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3194), - [sym_number] = ACTIONS(3194), - [sym_private_property_identifier] = ACTIONS(3194), - [sym_this] = ACTIONS(3194), - [sym_super] = ACTIONS(3194), - [sym_true] = ACTIONS(3194), - [sym_false] = ACTIONS(3194), - [sym_null] = ACTIONS(3194), - [sym_undefined] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3194), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_readonly] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_declare] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_module] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3194), - [anon_sym_number] = ACTIONS(3194), - [anon_sym_boolean] = ACTIONS(3194), - [anon_sym_string] = ACTIONS(3194), - [anon_sym_symbol] = ACTIONS(3194), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_interface] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(3356), + [sym_number] = ACTIONS(3356), + [sym_private_property_identifier] = ACTIONS(3356), + [sym_this] = ACTIONS(3356), + [sym_super] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_null] = ACTIONS(3356), + [sym_undefined] = ACTIONS(3356), + [anon_sym_AT] = ACTIONS(3356), + [anon_sym_static] = ACTIONS(3356), + [anon_sym_readonly] = ACTIONS(3356), + [anon_sym_get] = ACTIONS(3356), + [anon_sym_set] = ACTIONS(3356), + [anon_sym_declare] = ACTIONS(3356), + [anon_sym_public] = ACTIONS(3356), + [anon_sym_private] = ACTIONS(3356), + [anon_sym_protected] = ACTIONS(3356), + [anon_sym_override] = ACTIONS(3356), + [anon_sym_module] = ACTIONS(3356), + [anon_sym_any] = ACTIONS(3356), + [anon_sym_number] = ACTIONS(3356), + [anon_sym_boolean] = ACTIONS(3356), + [anon_sym_string] = ACTIONS(3356), + [anon_sym_symbol] = ACTIONS(3356), + [anon_sym_object] = ACTIONS(3356), + [anon_sym_abstract] = ACTIONS(3356), + [anon_sym_interface] = ACTIONS(3356), + [anon_sym_enum] = ACTIONS(3356), [sym_html_comment] = ACTIONS(5), }, - [1220] = { - [sym_comment] = STATE(1220), - [ts_builtin_sym_end] = ACTIONS(2387), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), + [1202] = { + [sym_comment] = STATE(1202), + [ts_builtin_sym_end] = ACTIONS(3402), + [sym_identifier] = ACTIONS(3136), + [anon_sym_export] = ACTIONS(3136), + [anon_sym_type] = ACTIONS(3136), + [anon_sym_namespace] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_RBRACE] = ACTIONS(3136), + [anon_sym_typeof] = ACTIONS(3136), + [anon_sym_import] = ACTIONS(3136), + [anon_sym_with] = ACTIONS(3136), + [anon_sym_var] = ACTIONS(3136), + [anon_sym_let] = ACTIONS(3136), + [anon_sym_const] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_else] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_switch] = ACTIONS(3136), + [anon_sym_for] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3136), + [anon_sym_await] = ACTIONS(3136), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_do] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_debugger] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_SEMI] = ACTIONS(3136), + [anon_sym_yield] = ACTIONS(3136), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_LTtemplate_GT] = ACTIONS(3136), + [anon_sym_DQUOTE] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3136), + [anon_sym_class] = ACTIONS(3136), + [anon_sym_async] = ACTIONS(3136), + [anon_sym_function] = ACTIONS(3136), + [anon_sym_new] = ACTIONS(3136), + [anon_sym_using] = ACTIONS(3136), + [anon_sym_PLUS] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3136), + [anon_sym_SLASH] = ACTIONS(3136), + [anon_sym_LT] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_void] = ACTIONS(3136), + [anon_sym_delete] = ACTIONS(3136), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_DASH_DASH] = ACTIONS(3136), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym_html_comment] = ACTIONS(5), - }, - [1221] = { - [sym_comment] = STATE(1221), - [ts_builtin_sym_end] = ACTIONS(3378), - [sym_identifier] = ACTIONS(3282), - [anon_sym_export] = ACTIONS(3282), - [anon_sym_type] = ACTIONS(3282), - [anon_sym_namespace] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_RBRACE] = ACTIONS(3282), - [anon_sym_typeof] = ACTIONS(3282), - [anon_sym_import] = ACTIONS(3282), - [anon_sym_with] = ACTIONS(3282), - [anon_sym_var] = ACTIONS(3282), - [anon_sym_let] = ACTIONS(3282), - [anon_sym_const] = ACTIONS(3282), - [anon_sym_BANG] = ACTIONS(3282), - [anon_sym_else] = ACTIONS(3282), - [anon_sym_if] = ACTIONS(3282), - [anon_sym_switch] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_await] = ACTIONS(3282), - [anon_sym_while] = ACTIONS(3282), - [anon_sym_do] = ACTIONS(3282), - [anon_sym_try] = ACTIONS(3282), - [anon_sym_break] = ACTIONS(3282), - [anon_sym_continue] = ACTIONS(3282), - [anon_sym_debugger] = ACTIONS(3282), - [anon_sym_return] = ACTIONS(3282), - [anon_sym_throw] = ACTIONS(3282), - [anon_sym_SEMI] = ACTIONS(3282), - [anon_sym_yield] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_LTtemplate_GT] = ACTIONS(3282), - [anon_sym_DQUOTE] = ACTIONS(3282), - [anon_sym_SQUOTE] = ACTIONS(3282), - [anon_sym_class] = ACTIONS(3282), - [anon_sym_async] = ACTIONS(3282), - [anon_sym_function] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3282), - [anon_sym_using] = ACTIONS(3282), - [anon_sym_PLUS] = ACTIONS(3282), - [anon_sym_DASH] = ACTIONS(3282), - [anon_sym_SLASH] = ACTIONS(3282), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_TILDE] = ACTIONS(3282), - [anon_sym_void] = ACTIONS(3282), - [anon_sym_delete] = ACTIONS(3282), - [anon_sym_PLUS_PLUS] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3282), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3282), - [sym_number] = ACTIONS(3282), - [sym_private_property_identifier] = ACTIONS(3282), - [sym_this] = ACTIONS(3282), - [sym_super] = ACTIONS(3282), - [sym_true] = ACTIONS(3282), - [sym_false] = ACTIONS(3282), - [sym_null] = ACTIONS(3282), - [sym_undefined] = ACTIONS(3282), - [anon_sym_AT] = ACTIONS(3282), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_readonly] = ACTIONS(3282), - [anon_sym_get] = ACTIONS(3282), - [anon_sym_set] = ACTIONS(3282), - [anon_sym_declare] = ACTIONS(3282), - [anon_sym_public] = ACTIONS(3282), - [anon_sym_private] = ACTIONS(3282), - [anon_sym_protected] = ACTIONS(3282), - [anon_sym_override] = ACTIONS(3282), - [anon_sym_module] = ACTIONS(3282), - [anon_sym_any] = ACTIONS(3282), - [anon_sym_number] = ACTIONS(3282), - [anon_sym_boolean] = ACTIONS(3282), - [anon_sym_string] = ACTIONS(3282), - [anon_sym_symbol] = ACTIONS(3282), - [anon_sym_object] = ACTIONS(3282), - [anon_sym_abstract] = ACTIONS(3282), - [anon_sym_interface] = ACTIONS(3282), - [anon_sym_enum] = ACTIONS(3282), + [anon_sym_BQUOTE] = ACTIONS(3136), + [sym_number] = ACTIONS(3136), + [sym_private_property_identifier] = ACTIONS(3136), + [sym_this] = ACTIONS(3136), + [sym_super] = ACTIONS(3136), + [sym_true] = ACTIONS(3136), + [sym_false] = ACTIONS(3136), + [sym_null] = ACTIONS(3136), + [sym_undefined] = ACTIONS(3136), + [anon_sym_AT] = ACTIONS(3136), + [anon_sym_static] = ACTIONS(3136), + [anon_sym_readonly] = ACTIONS(3136), + [anon_sym_get] = ACTIONS(3136), + [anon_sym_set] = ACTIONS(3136), + [anon_sym_declare] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_module] = ACTIONS(3136), + [anon_sym_any] = ACTIONS(3136), + [anon_sym_number] = ACTIONS(3136), + [anon_sym_boolean] = ACTIONS(3136), + [anon_sym_string] = ACTIONS(3136), + [anon_sym_symbol] = ACTIONS(3136), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_interface] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3136), [sym_html_comment] = ACTIONS(5), }, - [1222] = { - [sym_comment] = STATE(1222), - [sym_identifier] = ACTIONS(3230), - [anon_sym_export] = ACTIONS(3230), - [anon_sym_default] = ACTIONS(3230), - [anon_sym_type] = ACTIONS(3230), - [anon_sym_namespace] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3230), - [anon_sym_RBRACE] = ACTIONS(3230), - [anon_sym_typeof] = ACTIONS(3230), - [anon_sym_import] = ACTIONS(3230), - [anon_sym_with] = ACTIONS(3230), - [anon_sym_var] = ACTIONS(3230), - [anon_sym_let] = ACTIONS(3230), - [anon_sym_const] = ACTIONS(3230), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_switch] = ACTIONS(3230), - [anon_sym_for] = ACTIONS(3230), - [anon_sym_LPAREN] = ACTIONS(3230), - [anon_sym_await] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_do] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_debugger] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3230), - [anon_sym_case] = ACTIONS(3230), - [anon_sym_yield] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_LTtemplate_GT] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_class] = ACTIONS(3230), - [anon_sym_async] = ACTIONS(3230), - [anon_sym_function] = ACTIONS(3230), - [anon_sym_new] = ACTIONS(3230), - [anon_sym_using] = ACTIONS(3230), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_TILDE] = ACTIONS(3230), - [anon_sym_void] = ACTIONS(3230), - [anon_sym_delete] = ACTIONS(3230), - [anon_sym_PLUS_PLUS] = ACTIONS(3230), - [anon_sym_DASH_DASH] = ACTIONS(3230), + [1203] = { + [sym_comment] = STATE(1203), + [ts_builtin_sym_end] = ACTIONS(3400), + [sym_identifier] = ACTIONS(3356), + [anon_sym_export] = ACTIONS(3356), + [anon_sym_type] = ACTIONS(3356), + [anon_sym_namespace] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_typeof] = ACTIONS(3356), + [anon_sym_import] = ACTIONS(3356), + [anon_sym_with] = ACTIONS(3356), + [anon_sym_var] = ACTIONS(3356), + [anon_sym_let] = ACTIONS(3356), + [anon_sym_const] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_else] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_switch] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_await] = ACTIONS(3356), + [anon_sym_while] = ACTIONS(3356), + [anon_sym_do] = ACTIONS(3356), + [anon_sym_try] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_debugger] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_throw] = ACTIONS(3356), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LTtemplate_GT] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_class] = ACTIONS(3356), + [anon_sym_async] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3356), + [anon_sym_new] = ACTIONS(3356), + [anon_sym_using] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_void] = ACTIONS(3356), + [anon_sym_delete] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3230), - [sym_number] = ACTIONS(3230), - [sym_private_property_identifier] = ACTIONS(3230), - [sym_this] = ACTIONS(3230), - [sym_super] = ACTIONS(3230), - [sym_true] = ACTIONS(3230), - [sym_false] = ACTIONS(3230), - [sym_null] = ACTIONS(3230), - [sym_undefined] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3230), - [anon_sym_readonly] = ACTIONS(3230), - [anon_sym_get] = ACTIONS(3230), - [anon_sym_set] = ACTIONS(3230), - [anon_sym_declare] = ACTIONS(3230), - [anon_sym_public] = ACTIONS(3230), - [anon_sym_private] = ACTIONS(3230), - [anon_sym_protected] = ACTIONS(3230), - [anon_sym_override] = ACTIONS(3230), - [anon_sym_module] = ACTIONS(3230), - [anon_sym_any] = ACTIONS(3230), - [anon_sym_number] = ACTIONS(3230), - [anon_sym_boolean] = ACTIONS(3230), - [anon_sym_string] = ACTIONS(3230), - [anon_sym_symbol] = ACTIONS(3230), - [anon_sym_object] = ACTIONS(3230), - [anon_sym_abstract] = ACTIONS(3230), - [anon_sym_interface] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3230), + [anon_sym_BQUOTE] = ACTIONS(3356), + [sym_number] = ACTIONS(3356), + [sym_private_property_identifier] = ACTIONS(3356), + [sym_this] = ACTIONS(3356), + [sym_super] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_null] = ACTIONS(3356), + [sym_undefined] = ACTIONS(3356), + [anon_sym_AT] = ACTIONS(3356), + [anon_sym_static] = ACTIONS(3356), + [anon_sym_readonly] = ACTIONS(3356), + [anon_sym_get] = ACTIONS(3356), + [anon_sym_set] = ACTIONS(3356), + [anon_sym_declare] = ACTIONS(3356), + [anon_sym_public] = ACTIONS(3356), + [anon_sym_private] = ACTIONS(3356), + [anon_sym_protected] = ACTIONS(3356), + [anon_sym_override] = ACTIONS(3356), + [anon_sym_module] = ACTIONS(3356), + [anon_sym_any] = ACTIONS(3356), + [anon_sym_number] = ACTIONS(3356), + [anon_sym_boolean] = ACTIONS(3356), + [anon_sym_string] = ACTIONS(3356), + [anon_sym_symbol] = ACTIONS(3356), + [anon_sym_object] = ACTIONS(3356), + [anon_sym_abstract] = ACTIONS(3356), + [anon_sym_interface] = ACTIONS(3356), + [anon_sym_enum] = ACTIONS(3356), [sym_html_comment] = ACTIONS(5), }, - [1223] = { - [sym_comment] = STATE(1223), - [ts_builtin_sym_end] = ACTIONS(3074), - [sym_identifier] = ACTIONS(3072), - [anon_sym_export] = ACTIONS(3072), - [anon_sym_type] = ACTIONS(3072), - [anon_sym_namespace] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_RBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3072), - [anon_sym_import] = ACTIONS(3072), - [anon_sym_with] = ACTIONS(3072), - [anon_sym_var] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_const] = ACTIONS(3072), - [anon_sym_BANG] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_switch] = ACTIONS(3072), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_await] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_break] = ACTIONS(3072), - [anon_sym_continue] = ACTIONS(3072), - [anon_sym_debugger] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_throw] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3072), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LTtemplate_GT] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_class] = ACTIONS(3072), - [anon_sym_async] = ACTIONS(3072), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_using] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_SLASH] = ACTIONS(3072), - [anon_sym_LT] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_void] = ACTIONS(3072), - [anon_sym_delete] = ACTIONS(3072), - [anon_sym_PLUS_PLUS] = ACTIONS(3072), - [anon_sym_DASH_DASH] = ACTIONS(3072), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3072), - [sym_private_property_identifier] = ACTIONS(3072), - [sym_this] = ACTIONS(3072), - [sym_super] = ACTIONS(3072), - [sym_true] = ACTIONS(3072), - [sym_false] = ACTIONS(3072), - [sym_null] = ACTIONS(3072), - [sym_undefined] = ACTIONS(3072), - [anon_sym_AT] = ACTIONS(3072), - [anon_sym_static] = ACTIONS(3072), - [anon_sym_readonly] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(3072), - [anon_sym_set] = ACTIONS(3072), - [anon_sym_declare] = ACTIONS(3072), - [anon_sym_public] = ACTIONS(3072), - [anon_sym_private] = ACTIONS(3072), - [anon_sym_protected] = ACTIONS(3072), - [anon_sym_override] = ACTIONS(3072), - [anon_sym_module] = ACTIONS(3072), - [anon_sym_any] = ACTIONS(3072), - [anon_sym_number] = ACTIONS(3072), - [anon_sym_boolean] = ACTIONS(3072), - [anon_sym_string] = ACTIONS(3072), - [anon_sym_symbol] = ACTIONS(3072), - [anon_sym_object] = ACTIONS(3072), - [anon_sym_abstract] = ACTIONS(3072), - [anon_sym_interface] = ACTIONS(3072), - [anon_sym_enum] = ACTIONS(3072), - [sym__automatic_semicolon] = ACTIONS(3074), + [1204] = { + [sym_comment] = STATE(1204), + [ts_builtin_sym_end] = ACTIONS(3242), + [sym_identifier] = ACTIONS(3074), + [anon_sym_export] = ACTIONS(3074), + [anon_sym_type] = ACTIONS(3074), + [anon_sym_namespace] = ACTIONS(3074), + [anon_sym_LBRACE] = ACTIONS(3074), + [anon_sym_RBRACE] = ACTIONS(3074), + [anon_sym_typeof] = ACTIONS(3074), + [anon_sym_import] = ACTIONS(3074), + [anon_sym_with] = ACTIONS(3074), + [anon_sym_var] = ACTIONS(3074), + [anon_sym_let] = ACTIONS(3074), + [anon_sym_const] = ACTIONS(3074), + [anon_sym_BANG] = ACTIONS(3074), + [anon_sym_if] = ACTIONS(3074), + [anon_sym_switch] = ACTIONS(3074), + [anon_sym_for] = ACTIONS(3074), + [anon_sym_LPAREN] = ACTIONS(3074), + [anon_sym_await] = ACTIONS(3074), + [anon_sym_while] = ACTIONS(3074), + [anon_sym_do] = ACTIONS(3074), + [anon_sym_try] = ACTIONS(3074), + [anon_sym_break] = ACTIONS(3074), + [anon_sym_continue] = ACTIONS(3074), + [anon_sym_debugger] = ACTIONS(3074), + [anon_sym_return] = ACTIONS(3074), + [anon_sym_throw] = ACTIONS(3074), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_yield] = ACTIONS(3074), + [anon_sym_LBRACK] = ACTIONS(3074), + [anon_sym_LTtemplate_GT] = ACTIONS(3074), + [anon_sym_DQUOTE] = ACTIONS(3074), + [anon_sym_SQUOTE] = ACTIONS(3074), + [anon_sym_class] = ACTIONS(3074), + [anon_sym_async] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3074), + [anon_sym_new] = ACTIONS(3074), + [anon_sym_using] = ACTIONS(3074), + [anon_sym_PLUS] = ACTIONS(3074), + [anon_sym_DASH] = ACTIONS(3074), + [anon_sym_SLASH] = ACTIONS(3074), + [anon_sym_LT] = ACTIONS(3074), + [anon_sym_TILDE] = ACTIONS(3074), + [anon_sym_void] = ACTIONS(3074), + [anon_sym_delete] = ACTIONS(3074), + [anon_sym_PLUS_PLUS] = ACTIONS(3074), + [anon_sym_DASH_DASH] = ACTIONS(3074), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3074), + [sym_number] = ACTIONS(3074), + [sym_private_property_identifier] = ACTIONS(3074), + [sym_this] = ACTIONS(3074), + [sym_super] = ACTIONS(3074), + [sym_true] = ACTIONS(3074), + [sym_false] = ACTIONS(3074), + [sym_null] = ACTIONS(3074), + [sym_undefined] = ACTIONS(3074), + [anon_sym_AT] = ACTIONS(3074), + [anon_sym_static] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3074), + [anon_sym_get] = ACTIONS(3074), + [anon_sym_set] = ACTIONS(3074), + [anon_sym_declare] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_override] = ACTIONS(3074), + [anon_sym_module] = ACTIONS(3074), + [anon_sym_any] = ACTIONS(3074), + [anon_sym_number] = ACTIONS(3074), + [anon_sym_boolean] = ACTIONS(3074), + [anon_sym_string] = ACTIONS(3074), + [anon_sym_symbol] = ACTIONS(3074), + [anon_sym_object] = ACTIONS(3074), + [anon_sym_abstract] = ACTIONS(3074), + [anon_sym_interface] = ACTIONS(3074), + [anon_sym_enum] = ACTIONS(3074), + [sym__automatic_semicolon] = ACTIONS(3406), [sym_html_comment] = ACTIONS(5), }, - [1224] = { - [sym_comment] = STATE(1224), - [ts_builtin_sym_end] = ACTIONS(2387), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_else] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), + [1205] = { + [sym_comment] = STATE(1205), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3102), + [anon_sym_export] = ACTIONS(3102), + [anon_sym_type] = ACTIONS(3102), + [anon_sym_namespace] = ACTIONS(3102), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3102), + [anon_sym_import] = ACTIONS(3102), + [anon_sym_with] = ACTIONS(3102), + [anon_sym_var] = ACTIONS(3102), + [anon_sym_let] = ACTIONS(3102), + [anon_sym_const] = ACTIONS(3102), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_if] = ACTIONS(3102), + [anon_sym_switch] = ACTIONS(3102), + [anon_sym_for] = ACTIONS(3102), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_await] = ACTIONS(3102), + [anon_sym_while] = ACTIONS(3102), + [anon_sym_do] = ACTIONS(3102), + [anon_sym_try] = ACTIONS(3102), + [anon_sym_break] = ACTIONS(3102), + [anon_sym_continue] = ACTIONS(3102), + [anon_sym_debugger] = ACTIONS(3102), + [anon_sym_return] = ACTIONS(3102), + [anon_sym_throw] = ACTIONS(3102), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_finally] = ACTIONS(3102), + [anon_sym_yield] = ACTIONS(3102), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_LTtemplate_GT] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_SQUOTE] = ACTIONS(3102), + [anon_sym_class] = ACTIONS(3102), + [anon_sym_async] = ACTIONS(3102), + [anon_sym_function] = ACTIONS(3102), + [anon_sym_new] = ACTIONS(3102), + [anon_sym_using] = ACTIONS(3102), + [anon_sym_PLUS] = ACTIONS(3102), + [anon_sym_DASH] = ACTIONS(3102), + [anon_sym_SLASH] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3102), + [anon_sym_TILDE] = ACTIONS(3102), + [anon_sym_void] = ACTIONS(3102), + [anon_sym_delete] = ACTIONS(3102), + [anon_sym_PLUS_PLUS] = ACTIONS(3102), + [anon_sym_DASH_DASH] = ACTIONS(3102), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3102), + [sym_number] = ACTIONS(3102), + [sym_private_property_identifier] = ACTIONS(3102), + [sym_this] = ACTIONS(3102), + [sym_super] = ACTIONS(3102), + [sym_true] = ACTIONS(3102), + [sym_false] = ACTIONS(3102), + [sym_null] = ACTIONS(3102), + [sym_undefined] = ACTIONS(3102), + [anon_sym_AT] = ACTIONS(3102), + [anon_sym_static] = ACTIONS(3102), + [anon_sym_readonly] = ACTIONS(3102), + [anon_sym_get] = ACTIONS(3102), + [anon_sym_set] = ACTIONS(3102), + [anon_sym_declare] = ACTIONS(3102), + [anon_sym_public] = ACTIONS(3102), + [anon_sym_private] = ACTIONS(3102), + [anon_sym_protected] = ACTIONS(3102), + [anon_sym_override] = ACTIONS(3102), + [anon_sym_module] = ACTIONS(3102), + [anon_sym_any] = ACTIONS(3102), + [anon_sym_number] = ACTIONS(3102), + [anon_sym_boolean] = ACTIONS(3102), + [anon_sym_string] = ACTIONS(3102), + [anon_sym_symbol] = ACTIONS(3102), + [anon_sym_object] = ACTIONS(3102), + [anon_sym_abstract] = ACTIONS(3102), + [anon_sym_interface] = ACTIONS(3102), + [anon_sym_enum] = ACTIONS(3102), [sym_html_comment] = ACTIONS(5), }, - [1225] = { - [sym_comment] = STATE(1225), - [ts_builtin_sym_end] = ACTIONS(3380), - [sym_identifier] = ACTIONS(3222), - [anon_sym_export] = ACTIONS(3222), - [anon_sym_type] = ACTIONS(3222), - [anon_sym_namespace] = ACTIONS(3222), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3222), - [anon_sym_import] = ACTIONS(3222), - [anon_sym_with] = ACTIONS(3222), - [anon_sym_var] = ACTIONS(3222), - [anon_sym_let] = ACTIONS(3222), - [anon_sym_const] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3222), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_switch] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(3222), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3222), - [anon_sym_while] = ACTIONS(3222), - [anon_sym_do] = ACTIONS(3222), - [anon_sym_try] = ACTIONS(3222), - [anon_sym_break] = ACTIONS(3222), - [anon_sym_continue] = ACTIONS(3222), - [anon_sym_debugger] = ACTIONS(3222), - [anon_sym_return] = ACTIONS(3222), - [anon_sym_throw] = ACTIONS(3222), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_yield] = ACTIONS(3222), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LTtemplate_GT] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [anon_sym_class] = ACTIONS(3222), - [anon_sym_async] = ACTIONS(3222), - [anon_sym_function] = ACTIONS(3222), - [anon_sym_new] = ACTIONS(3222), - [anon_sym_using] = ACTIONS(3222), - [anon_sym_PLUS] = ACTIONS(3222), - [anon_sym_DASH] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3222), - [anon_sym_delete] = ACTIONS(3222), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_private_property_identifier] = ACTIONS(3222), - [sym_this] = ACTIONS(3222), - [sym_super] = ACTIONS(3222), - [sym_true] = ACTIONS(3222), - [sym_false] = ACTIONS(3222), - [sym_null] = ACTIONS(3222), - [sym_undefined] = ACTIONS(3222), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3222), - [anon_sym_readonly] = ACTIONS(3222), - [anon_sym_get] = ACTIONS(3222), - [anon_sym_set] = ACTIONS(3222), - [anon_sym_declare] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3222), - [anon_sym_private] = ACTIONS(3222), - [anon_sym_protected] = ACTIONS(3222), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_module] = ACTIONS(3222), - [anon_sym_any] = ACTIONS(3222), - [anon_sym_number] = ACTIONS(3222), - [anon_sym_boolean] = ACTIONS(3222), - [anon_sym_string] = ACTIONS(3222), - [anon_sym_symbol] = ACTIONS(3222), - [anon_sym_object] = ACTIONS(3222), - [anon_sym_abstract] = ACTIONS(3222), - [anon_sym_interface] = ACTIONS(3222), - [anon_sym_enum] = ACTIONS(3222), + [1206] = { + [sym_comment] = STATE(1206), + [ts_builtin_sym_end] = ACTIONS(2127), + [sym_identifier] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_typeof] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2125), + [anon_sym_with] = ACTIONS(2125), + [anon_sym_var] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_else] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_debugger] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LTtemplate_GT] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_void] = ACTIONS(2125), + [anon_sym_delete] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2125), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(2125), + [sym_this] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [sym_undefined] = ACTIONS(2125), + [anon_sym_AT] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_readonly] = ACTIONS(2125), + [anon_sym_get] = ACTIONS(2125), + [anon_sym_set] = ACTIONS(2125), + [anon_sym_declare] = ACTIONS(2125), + [anon_sym_public] = ACTIONS(2125), + [anon_sym_private] = ACTIONS(2125), + [anon_sym_protected] = ACTIONS(2125), + [anon_sym_override] = ACTIONS(2125), + [anon_sym_module] = ACTIONS(2125), + [anon_sym_any] = ACTIONS(2125), + [anon_sym_number] = ACTIONS(2125), + [anon_sym_boolean] = ACTIONS(2125), + [anon_sym_string] = ACTIONS(2125), + [anon_sym_symbol] = ACTIONS(2125), + [anon_sym_object] = ACTIONS(2125), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), [sym_html_comment] = ACTIONS(5), }, - [1226] = { - [sym_comment] = STATE(1226), - [sym_identifier] = ACTIONS(3228), - [anon_sym_export] = ACTIONS(3228), - [anon_sym_default] = ACTIONS(3228), - [anon_sym_type] = ACTIONS(3228), - [anon_sym_namespace] = ACTIONS(3228), - [anon_sym_LBRACE] = ACTIONS(3228), - [anon_sym_RBRACE] = ACTIONS(3228), - [anon_sym_typeof] = ACTIONS(3228), - [anon_sym_import] = ACTIONS(3228), - [anon_sym_with] = ACTIONS(3228), - [anon_sym_var] = ACTIONS(3228), - [anon_sym_let] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_LPAREN] = ACTIONS(3228), - [anon_sym_await] = ACTIONS(3228), - [anon_sym_while] = ACTIONS(3228), - [anon_sym_do] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3228), - [anon_sym_break] = ACTIONS(3228), - [anon_sym_continue] = ACTIONS(3228), - [anon_sym_debugger] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3228), - [anon_sym_throw] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3228), - [anon_sym_case] = ACTIONS(3228), - [anon_sym_yield] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_LTtemplate_GT] = ACTIONS(3228), - [anon_sym_DQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_async] = ACTIONS(3228), - [anon_sym_function] = ACTIONS(3228), - [anon_sym_new] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3228), - [anon_sym_PLUS] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(3228), - [anon_sym_SLASH] = ACTIONS(3228), - [anon_sym_LT] = ACTIONS(3228), - [anon_sym_TILDE] = ACTIONS(3228), - [anon_sym_void] = ACTIONS(3228), - [anon_sym_delete] = ACTIONS(3228), - [anon_sym_PLUS_PLUS] = ACTIONS(3228), - [anon_sym_DASH_DASH] = ACTIONS(3228), + [1207] = { + [sym_comment] = STATE(1207), + [sym_identifier] = ACTIONS(3156), + [anon_sym_export] = ACTIONS(3156), + [anon_sym_default] = ACTIONS(3156), + [anon_sym_type] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_typeof] = ACTIONS(3156), + [anon_sym_import] = ACTIONS(3156), + [anon_sym_with] = ACTIONS(3156), + [anon_sym_var] = ACTIONS(3156), + [anon_sym_let] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_switch] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_await] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_do] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_debugger] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_case] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_LTtemplate_GT] = ACTIONS(3156), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_async] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_SLASH] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_void] = ACTIONS(3156), + [anon_sym_delete] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3228), - [sym_number] = ACTIONS(3228), - [sym_private_property_identifier] = ACTIONS(3228), - [sym_this] = ACTIONS(3228), - [sym_super] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_null] = ACTIONS(3228), - [sym_undefined] = ACTIONS(3228), - [anon_sym_AT] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_readonly] = ACTIONS(3228), - [anon_sym_get] = ACTIONS(3228), - [anon_sym_set] = ACTIONS(3228), - [anon_sym_declare] = ACTIONS(3228), - [anon_sym_public] = ACTIONS(3228), - [anon_sym_private] = ACTIONS(3228), - [anon_sym_protected] = ACTIONS(3228), - [anon_sym_override] = ACTIONS(3228), - [anon_sym_module] = ACTIONS(3228), - [anon_sym_any] = ACTIONS(3228), - [anon_sym_number] = ACTIONS(3228), - [anon_sym_boolean] = ACTIONS(3228), - [anon_sym_string] = ACTIONS(3228), - [anon_sym_symbol] = ACTIONS(3228), - [anon_sym_object] = ACTIONS(3228), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_interface] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), + [anon_sym_BQUOTE] = ACTIONS(3156), + [sym_number] = ACTIONS(3156), + [sym_private_property_identifier] = ACTIONS(3156), + [sym_this] = ACTIONS(3156), + [sym_super] = ACTIONS(3156), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [sym_null] = ACTIONS(3156), + [sym_undefined] = ACTIONS(3156), + [anon_sym_AT] = ACTIONS(3156), + [anon_sym_static] = ACTIONS(3156), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3156), + [anon_sym_set] = ACTIONS(3156), + [anon_sym_declare] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_module] = ACTIONS(3156), + [anon_sym_any] = ACTIONS(3156), + [anon_sym_number] = ACTIONS(3156), + [anon_sym_boolean] = ACTIONS(3156), + [anon_sym_string] = ACTIONS(3156), + [anon_sym_symbol] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_interface] = ACTIONS(3156), + [anon_sym_enum] = ACTIONS(3156), [sym_html_comment] = ACTIONS(5), }, - [1227] = { - [sym_comment] = STATE(1227), - [ts_builtin_sym_end] = ACTIONS(3382), - [sym_identifier] = ACTIONS(3218), - [anon_sym_export] = ACTIONS(3218), - [anon_sym_type] = ACTIONS(3218), - [anon_sym_namespace] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(3218), - [anon_sym_RBRACE] = ACTIONS(3218), - [anon_sym_typeof] = ACTIONS(3218), - [anon_sym_import] = ACTIONS(3218), - [anon_sym_with] = ACTIONS(3218), - [anon_sym_var] = ACTIONS(3218), - [anon_sym_let] = ACTIONS(3218), - [anon_sym_const] = ACTIONS(3218), - [anon_sym_BANG] = ACTIONS(3218), - [anon_sym_else] = ACTIONS(3218), - [anon_sym_if] = ACTIONS(3218), - [anon_sym_switch] = ACTIONS(3218), - [anon_sym_for] = ACTIONS(3218), - [anon_sym_LPAREN] = ACTIONS(3218), - [anon_sym_await] = ACTIONS(3218), - [anon_sym_while] = ACTIONS(3218), - [anon_sym_do] = ACTIONS(3218), - [anon_sym_try] = ACTIONS(3218), - [anon_sym_break] = ACTIONS(3218), - [anon_sym_continue] = ACTIONS(3218), - [anon_sym_debugger] = ACTIONS(3218), - [anon_sym_return] = ACTIONS(3218), - [anon_sym_throw] = ACTIONS(3218), - [anon_sym_SEMI] = ACTIONS(3218), - [anon_sym_yield] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_LTtemplate_GT] = ACTIONS(3218), - [anon_sym_DQUOTE] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3218), - [anon_sym_class] = ACTIONS(3218), - [anon_sym_async] = ACTIONS(3218), - [anon_sym_function] = ACTIONS(3218), - [anon_sym_new] = ACTIONS(3218), - [anon_sym_using] = ACTIONS(3218), - [anon_sym_PLUS] = ACTIONS(3218), - [anon_sym_DASH] = ACTIONS(3218), - [anon_sym_SLASH] = ACTIONS(3218), - [anon_sym_LT] = ACTIONS(3218), - [anon_sym_TILDE] = ACTIONS(3218), - [anon_sym_void] = ACTIONS(3218), - [anon_sym_delete] = ACTIONS(3218), - [anon_sym_PLUS_PLUS] = ACTIONS(3218), - [anon_sym_DASH_DASH] = ACTIONS(3218), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3218), - [sym_number] = ACTIONS(3218), - [sym_private_property_identifier] = ACTIONS(3218), - [sym_this] = ACTIONS(3218), - [sym_super] = ACTIONS(3218), - [sym_true] = ACTIONS(3218), - [sym_false] = ACTIONS(3218), - [sym_null] = ACTIONS(3218), - [sym_undefined] = ACTIONS(3218), - [anon_sym_AT] = ACTIONS(3218), - [anon_sym_static] = ACTIONS(3218), - [anon_sym_readonly] = ACTIONS(3218), - [anon_sym_get] = ACTIONS(3218), - [anon_sym_set] = ACTIONS(3218), - [anon_sym_declare] = ACTIONS(3218), - [anon_sym_public] = ACTIONS(3218), - [anon_sym_private] = ACTIONS(3218), - [anon_sym_protected] = ACTIONS(3218), - [anon_sym_override] = ACTIONS(3218), - [anon_sym_module] = ACTIONS(3218), - [anon_sym_any] = ACTIONS(3218), - [anon_sym_number] = ACTIONS(3218), - [anon_sym_boolean] = ACTIONS(3218), - [anon_sym_string] = ACTIONS(3218), - [anon_sym_symbol] = ACTIONS(3218), - [anon_sym_object] = ACTIONS(3218), - [anon_sym_abstract] = ACTIONS(3218), - [anon_sym_interface] = ACTIONS(3218), - [anon_sym_enum] = ACTIONS(3218), - [sym_html_comment] = ACTIONS(5), - }, - [1228] = { - [sym_comment] = STATE(1228), - [sym_identifier] = ACTIONS(3226), - [anon_sym_export] = ACTIONS(3226), - [anon_sym_default] = ACTIONS(3226), - [anon_sym_type] = ACTIONS(3226), - [anon_sym_namespace] = ACTIONS(3226), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_RBRACE] = ACTIONS(3226), - [anon_sym_typeof] = ACTIONS(3226), - [anon_sym_import] = ACTIONS(3226), - [anon_sym_with] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_const] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_if] = ACTIONS(3226), - [anon_sym_switch] = ACTIONS(3226), - [anon_sym_for] = ACTIONS(3226), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_await] = ACTIONS(3226), - [anon_sym_while] = ACTIONS(3226), - [anon_sym_do] = ACTIONS(3226), - [anon_sym_try] = ACTIONS(3226), - [anon_sym_break] = ACTIONS(3226), - [anon_sym_continue] = ACTIONS(3226), - [anon_sym_debugger] = ACTIONS(3226), - [anon_sym_return] = ACTIONS(3226), - [anon_sym_throw] = ACTIONS(3226), - [anon_sym_SEMI] = ACTIONS(3226), - [anon_sym_case] = ACTIONS(3226), - [anon_sym_yield] = ACTIONS(3226), - [anon_sym_LBRACK] = ACTIONS(3226), - [anon_sym_LTtemplate_GT] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [anon_sym_class] = ACTIONS(3226), - [anon_sym_async] = ACTIONS(3226), - [anon_sym_function] = ACTIONS(3226), - [anon_sym_new] = ACTIONS(3226), - [anon_sym_using] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_SLASH] = ACTIONS(3226), - [anon_sym_LT] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_void] = ACTIONS(3226), - [anon_sym_delete] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_DASH_DASH] = ACTIONS(3226), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3226), - [sym_number] = ACTIONS(3226), - [sym_private_property_identifier] = ACTIONS(3226), - [sym_this] = ACTIONS(3226), - [sym_super] = ACTIONS(3226), - [sym_true] = ACTIONS(3226), - [sym_false] = ACTIONS(3226), - [sym_null] = ACTIONS(3226), - [sym_undefined] = ACTIONS(3226), - [anon_sym_AT] = ACTIONS(3226), - [anon_sym_static] = ACTIONS(3226), - [anon_sym_readonly] = ACTIONS(3226), - [anon_sym_get] = ACTIONS(3226), - [anon_sym_set] = ACTIONS(3226), - [anon_sym_declare] = ACTIONS(3226), - [anon_sym_public] = ACTIONS(3226), - [anon_sym_private] = ACTIONS(3226), - [anon_sym_protected] = ACTIONS(3226), - [anon_sym_override] = ACTIONS(3226), - [anon_sym_module] = ACTIONS(3226), - [anon_sym_any] = ACTIONS(3226), - [anon_sym_number] = ACTIONS(3226), - [anon_sym_boolean] = ACTIONS(3226), - [anon_sym_string] = ACTIONS(3226), - [anon_sym_symbol] = ACTIONS(3226), - [anon_sym_object] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3226), - [anon_sym_interface] = ACTIONS(3226), - [anon_sym_enum] = ACTIONS(3226), - [sym_html_comment] = ACTIONS(5), - }, - [1229] = { - [sym_comment] = STATE(1229), - [sym_identifier] = ACTIONS(3220), - [anon_sym_export] = ACTIONS(3220), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_type] = ACTIONS(3220), - [anon_sym_namespace] = ACTIONS(3220), - [anon_sym_LBRACE] = ACTIONS(3220), - [anon_sym_RBRACE] = ACTIONS(3220), - [anon_sym_typeof] = ACTIONS(3220), - [anon_sym_import] = ACTIONS(3220), - [anon_sym_with] = ACTIONS(3220), - [anon_sym_var] = ACTIONS(3220), - [anon_sym_let] = ACTIONS(3220), - [anon_sym_const] = ACTIONS(3220), - [anon_sym_BANG] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3220), - [anon_sym_switch] = ACTIONS(3220), - [anon_sym_for] = ACTIONS(3220), - [anon_sym_LPAREN] = ACTIONS(3220), - [anon_sym_await] = ACTIONS(3220), - [anon_sym_while] = ACTIONS(3220), - [anon_sym_do] = ACTIONS(3220), - [anon_sym_try] = ACTIONS(3220), - [anon_sym_break] = ACTIONS(3220), - [anon_sym_continue] = ACTIONS(3220), - [anon_sym_debugger] = ACTIONS(3220), - [anon_sym_return] = ACTIONS(3220), - [anon_sym_throw] = ACTIONS(3220), - [anon_sym_SEMI] = ACTIONS(3220), - [anon_sym_case] = ACTIONS(3220), - [anon_sym_yield] = ACTIONS(3220), - [anon_sym_LBRACK] = ACTIONS(3220), - [anon_sym_LTtemplate_GT] = ACTIONS(3220), - [anon_sym_DQUOTE] = ACTIONS(3220), - [anon_sym_SQUOTE] = ACTIONS(3220), - [anon_sym_class] = ACTIONS(3220), - [anon_sym_async] = ACTIONS(3220), - [anon_sym_function] = ACTIONS(3220), - [anon_sym_new] = ACTIONS(3220), - [anon_sym_using] = ACTIONS(3220), - [anon_sym_PLUS] = ACTIONS(3220), - [anon_sym_DASH] = ACTIONS(3220), - [anon_sym_SLASH] = ACTIONS(3220), - [anon_sym_LT] = ACTIONS(3220), - [anon_sym_TILDE] = ACTIONS(3220), - [anon_sym_void] = ACTIONS(3220), - [anon_sym_delete] = ACTIONS(3220), - [anon_sym_PLUS_PLUS] = ACTIONS(3220), - [anon_sym_DASH_DASH] = ACTIONS(3220), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3220), - [sym_number] = ACTIONS(3220), - [sym_private_property_identifier] = ACTIONS(3220), - [sym_this] = ACTIONS(3220), - [sym_super] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_null] = ACTIONS(3220), - [sym_undefined] = ACTIONS(3220), - [anon_sym_AT] = ACTIONS(3220), - [anon_sym_static] = ACTIONS(3220), - [anon_sym_readonly] = ACTIONS(3220), - [anon_sym_get] = ACTIONS(3220), - [anon_sym_set] = ACTIONS(3220), - [anon_sym_declare] = ACTIONS(3220), - [anon_sym_public] = ACTIONS(3220), - [anon_sym_private] = ACTIONS(3220), - [anon_sym_protected] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3220), - [anon_sym_module] = ACTIONS(3220), - [anon_sym_any] = ACTIONS(3220), - [anon_sym_number] = ACTIONS(3220), - [anon_sym_boolean] = ACTIONS(3220), - [anon_sym_string] = ACTIONS(3220), - [anon_sym_symbol] = ACTIONS(3220), - [anon_sym_object] = ACTIONS(3220), - [anon_sym_abstract] = ACTIONS(3220), - [anon_sym_interface] = ACTIONS(3220), - [anon_sym_enum] = ACTIONS(3220), - [sym_html_comment] = ACTIONS(5), - }, - [1230] = { - [sym_comment] = STATE(1230), - [ts_builtin_sym_end] = ACTIONS(3384), - [sym_identifier] = ACTIONS(3214), - [anon_sym_export] = ACTIONS(3214), - [anon_sym_type] = ACTIONS(3214), - [anon_sym_namespace] = ACTIONS(3214), - [anon_sym_LBRACE] = ACTIONS(3214), - [anon_sym_RBRACE] = ACTIONS(3214), - [anon_sym_typeof] = ACTIONS(3214), - [anon_sym_import] = ACTIONS(3214), - [anon_sym_with] = ACTIONS(3214), - [anon_sym_var] = ACTIONS(3214), - [anon_sym_let] = ACTIONS(3214), - [anon_sym_const] = ACTIONS(3214), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_else] = ACTIONS(3214), - [anon_sym_if] = ACTIONS(3214), - [anon_sym_switch] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3214), - [anon_sym_await] = ACTIONS(3214), - [anon_sym_while] = ACTIONS(3214), - [anon_sym_do] = ACTIONS(3214), - [anon_sym_try] = ACTIONS(3214), - [anon_sym_break] = ACTIONS(3214), - [anon_sym_continue] = ACTIONS(3214), - [anon_sym_debugger] = ACTIONS(3214), - [anon_sym_return] = ACTIONS(3214), - [anon_sym_throw] = ACTIONS(3214), - [anon_sym_SEMI] = ACTIONS(3214), - [anon_sym_yield] = ACTIONS(3214), - [anon_sym_LBRACK] = ACTIONS(3214), - [anon_sym_LTtemplate_GT] = ACTIONS(3214), - [anon_sym_DQUOTE] = ACTIONS(3214), - [anon_sym_SQUOTE] = ACTIONS(3214), - [anon_sym_class] = ACTIONS(3214), - [anon_sym_async] = ACTIONS(3214), - [anon_sym_function] = ACTIONS(3214), - [anon_sym_new] = ACTIONS(3214), - [anon_sym_using] = ACTIONS(3214), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_SLASH] = ACTIONS(3214), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_void] = ACTIONS(3214), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_PLUS_PLUS] = ACTIONS(3214), - [anon_sym_DASH_DASH] = ACTIONS(3214), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3214), - [sym_number] = ACTIONS(3214), - [sym_private_property_identifier] = ACTIONS(3214), - [sym_this] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_true] = ACTIONS(3214), - [sym_false] = ACTIONS(3214), - [sym_null] = ACTIONS(3214), - [sym_undefined] = ACTIONS(3214), - [anon_sym_AT] = ACTIONS(3214), - [anon_sym_static] = ACTIONS(3214), - [anon_sym_readonly] = ACTIONS(3214), - [anon_sym_get] = ACTIONS(3214), - [anon_sym_set] = ACTIONS(3214), - [anon_sym_declare] = ACTIONS(3214), - [anon_sym_public] = ACTIONS(3214), - [anon_sym_private] = ACTIONS(3214), - [anon_sym_protected] = ACTIONS(3214), - [anon_sym_override] = ACTIONS(3214), - [anon_sym_module] = ACTIONS(3214), - [anon_sym_any] = ACTIONS(3214), - [anon_sym_number] = ACTIONS(3214), - [anon_sym_boolean] = ACTIONS(3214), - [anon_sym_string] = ACTIONS(3214), - [anon_sym_symbol] = ACTIONS(3214), - [anon_sym_object] = ACTIONS(3214), - [anon_sym_abstract] = ACTIONS(3214), - [anon_sym_interface] = ACTIONS(3214), - [anon_sym_enum] = ACTIONS(3214), - [sym_html_comment] = ACTIONS(5), - }, - [1231] = { - [sym_comment] = STATE(1231), - [ts_builtin_sym_end] = ACTIONS(3386), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3212), - [anon_sym_RBRACE] = ACTIONS(3212), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3212), - [anon_sym_LTtemplate_GT] = ACTIONS(3212), - [anon_sym_DQUOTE] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_using] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3212), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3212), - [sym_number] = ACTIONS(3212), - [sym_private_property_identifier] = ACTIONS(3212), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3212), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), - [sym_html_comment] = ACTIONS(5), - }, - [1232] = { - [sym_comment] = STATE(1232), - [ts_builtin_sym_end] = ACTIONS(3388), - [sym_identifier] = ACTIONS(3278), - [anon_sym_export] = ACTIONS(3278), - [anon_sym_type] = ACTIONS(3278), - [anon_sym_namespace] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_RBRACE] = ACTIONS(3278), - [anon_sym_typeof] = ACTIONS(3278), - [anon_sym_import] = ACTIONS(3278), - [anon_sym_with] = ACTIONS(3278), - [anon_sym_var] = ACTIONS(3278), - [anon_sym_let] = ACTIONS(3278), - [anon_sym_const] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_switch] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3278), - [anon_sym_await] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_do] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_debugger] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3278), - [anon_sym_LTtemplate_GT] = ACTIONS(3278), - [anon_sym_DQUOTE] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3278), - [anon_sym_class] = ACTIONS(3278), - [anon_sym_async] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3278), - [anon_sym_using] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_void] = ACTIONS(3278), - [anon_sym_delete] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3278), - [sym_number] = ACTIONS(3278), - [sym_private_property_identifier] = ACTIONS(3278), - [sym_this] = ACTIONS(3278), - [sym_super] = ACTIONS(3278), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [sym_null] = ACTIONS(3278), - [sym_undefined] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3278), - [anon_sym_static] = ACTIONS(3278), - [anon_sym_readonly] = ACTIONS(3278), - [anon_sym_get] = ACTIONS(3278), - [anon_sym_set] = ACTIONS(3278), - [anon_sym_declare] = ACTIONS(3278), - [anon_sym_public] = ACTIONS(3278), - [anon_sym_private] = ACTIONS(3278), - [anon_sym_protected] = ACTIONS(3278), - [anon_sym_override] = ACTIONS(3278), - [anon_sym_module] = ACTIONS(3278), - [anon_sym_any] = ACTIONS(3278), - [anon_sym_number] = ACTIONS(3278), - [anon_sym_boolean] = ACTIONS(3278), - [anon_sym_string] = ACTIONS(3278), - [anon_sym_symbol] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_abstract] = ACTIONS(3278), - [anon_sym_interface] = ACTIONS(3278), - [anon_sym_enum] = ACTIONS(3278), - [sym_html_comment] = ACTIONS(5), - }, - [1233] = { - [sym_comment] = STATE(1233), - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_default] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_with] = ACTIONS(3216), - [anon_sym_var] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_debugger] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_throw] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_case] = ACTIONS(3216), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_LTtemplate_GT] = ACTIONS(3216), - [anon_sym_DQUOTE] = ACTIONS(3216), - [anon_sym_SQUOTE] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3216), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3216), - [sym_number] = ACTIONS(3216), - [sym_private_property_identifier] = ACTIONS(3216), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_override] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_interface] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), - [sym_html_comment] = ACTIONS(5), - }, - [1234] = { - [sym_comment] = STATE(1234), - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_default] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_with] = ACTIONS(3216), - [anon_sym_var] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_debugger] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_throw] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_case] = ACTIONS(3216), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_LTtemplate_GT] = ACTIONS(3216), - [anon_sym_DQUOTE] = ACTIONS(3216), - [anon_sym_SQUOTE] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3216), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3216), - [sym_number] = ACTIONS(3216), - [sym_private_property_identifier] = ACTIONS(3216), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_override] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_interface] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), - [sym_html_comment] = ACTIONS(5), - }, - [1235] = { - [sym_comment] = STATE(1235), - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_default] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_with] = ACTIONS(3216), - [anon_sym_var] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_debugger] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_throw] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_case] = ACTIONS(3216), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_LTtemplate_GT] = ACTIONS(3216), - [anon_sym_DQUOTE] = ACTIONS(3216), - [anon_sym_SQUOTE] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3216), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3216), - [sym_number] = ACTIONS(3216), - [sym_private_property_identifier] = ACTIONS(3216), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_override] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_interface] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), - [sym_html_comment] = ACTIONS(5), - }, - [1236] = { - [sym_comment] = STATE(1236), - [sym_identifier] = ACTIONS(3210), - [anon_sym_export] = ACTIONS(3210), - [anon_sym_default] = ACTIONS(3210), - [anon_sym_type] = ACTIONS(3210), - [anon_sym_namespace] = ACTIONS(3210), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3210), - [anon_sym_import] = ACTIONS(3210), - [anon_sym_with] = ACTIONS(3210), - [anon_sym_var] = ACTIONS(3210), - [anon_sym_let] = ACTIONS(3210), - [anon_sym_const] = ACTIONS(3210), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_if] = ACTIONS(3210), - [anon_sym_switch] = ACTIONS(3210), - [anon_sym_for] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3210), - [anon_sym_while] = ACTIONS(3210), - [anon_sym_do] = ACTIONS(3210), - [anon_sym_try] = ACTIONS(3210), - [anon_sym_break] = ACTIONS(3210), - [anon_sym_continue] = ACTIONS(3210), - [anon_sym_debugger] = ACTIONS(3210), - [anon_sym_return] = ACTIONS(3210), - [anon_sym_throw] = ACTIONS(3210), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3210), - [anon_sym_yield] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LTtemplate_GT] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [anon_sym_class] = ACTIONS(3210), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_function] = ACTIONS(3210), - [anon_sym_new] = ACTIONS(3210), - [anon_sym_using] = ACTIONS(3210), - [anon_sym_PLUS] = ACTIONS(3210), - [anon_sym_DASH] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3210), - [anon_sym_delete] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), + [1208] = { + [sym_comment] = STATE(1208), + [sym_identifier] = ACTIONS(2145), + [anon_sym_export] = ACTIONS(2145), + [anon_sym_default] = ACTIONS(2145), + [anon_sym_type] = ACTIONS(2145), + [anon_sym_namespace] = ACTIONS(2145), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_typeof] = ACTIONS(2145), + [anon_sym_import] = ACTIONS(2145), + [anon_sym_with] = ACTIONS(2145), + [anon_sym_var] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2145), + [anon_sym_switch] = ACTIONS(2145), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_do] = ACTIONS(2145), + [anon_sym_try] = ACTIONS(2145), + [anon_sym_break] = ACTIONS(2145), + [anon_sym_continue] = ACTIONS(2145), + [anon_sym_debugger] = ACTIONS(2145), + [anon_sym_return] = ACTIONS(2145), + [anon_sym_throw] = ACTIONS(2145), + [anon_sym_SEMI] = ACTIONS(2145), + [anon_sym_case] = ACTIONS(2145), + [anon_sym_yield] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_LTtemplate_GT] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2145), + [anon_sym_class] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(2145), + [anon_sym_using] = ACTIONS(2145), + [anon_sym_PLUS] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_SLASH] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_TILDE] = ACTIONS(2145), + [anon_sym_void] = ACTIONS(2145), + [anon_sym_delete] = ACTIONS(2145), + [anon_sym_PLUS_PLUS] = ACTIONS(2145), + [anon_sym_DASH_DASH] = ACTIONS(2145), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_private_property_identifier] = ACTIONS(3210), - [sym_this] = ACTIONS(3210), - [sym_super] = ACTIONS(3210), - [sym_true] = ACTIONS(3210), - [sym_false] = ACTIONS(3210), - [sym_null] = ACTIONS(3210), - [sym_undefined] = ACTIONS(3210), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3210), - [anon_sym_readonly] = ACTIONS(3210), - [anon_sym_get] = ACTIONS(3210), - [anon_sym_set] = ACTIONS(3210), - [anon_sym_declare] = ACTIONS(3210), - [anon_sym_public] = ACTIONS(3210), - [anon_sym_private] = ACTIONS(3210), - [anon_sym_protected] = ACTIONS(3210), - [anon_sym_override] = ACTIONS(3210), - [anon_sym_module] = ACTIONS(3210), - [anon_sym_any] = ACTIONS(3210), - [anon_sym_number] = ACTIONS(3210), - [anon_sym_boolean] = ACTIONS(3210), - [anon_sym_string] = ACTIONS(3210), - [anon_sym_symbol] = ACTIONS(3210), - [anon_sym_object] = ACTIONS(3210), - [anon_sym_abstract] = ACTIONS(3210), - [anon_sym_interface] = ACTIONS(3210), - [anon_sym_enum] = ACTIONS(3210), - [sym_html_comment] = ACTIONS(5), - }, - [1237] = { - [sym_comment] = STATE(1237), - [ts_builtin_sym_end] = ACTIONS(3390), - [sym_identifier] = ACTIONS(3276), - [anon_sym_export] = ACTIONS(3276), - [anon_sym_type] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_RBRACE] = ACTIONS(3276), - [anon_sym_typeof] = ACTIONS(3276), - [anon_sym_import] = ACTIONS(3276), - [anon_sym_with] = ACTIONS(3276), - [anon_sym_var] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_const] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_switch] = ACTIONS(3276), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_await] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_debugger] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_LTtemplate_GT] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3276), - [anon_sym_class] = ACTIONS(3276), - [anon_sym_async] = ACTIONS(3276), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_using] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_void] = ACTIONS(3276), - [anon_sym_delete] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3276), - [sym_number] = ACTIONS(3276), - [sym_private_property_identifier] = ACTIONS(3276), - [sym_this] = ACTIONS(3276), - [sym_super] = ACTIONS(3276), - [sym_true] = ACTIONS(3276), - [sym_false] = ACTIONS(3276), - [sym_null] = ACTIONS(3276), - [sym_undefined] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3276), - [anon_sym_readonly] = ACTIONS(3276), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_declare] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_any] = ACTIONS(3276), - [anon_sym_number] = ACTIONS(3276), - [anon_sym_boolean] = ACTIONS(3276), - [anon_sym_string] = ACTIONS(3276), - [anon_sym_symbol] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_interface] = ACTIONS(3276), - [anon_sym_enum] = ACTIONS(3276), + [anon_sym_BQUOTE] = ACTIONS(2145), + [sym_number] = ACTIONS(2145), + [sym_private_property_identifier] = ACTIONS(2145), + [sym_this] = ACTIONS(2145), + [sym_super] = ACTIONS(2145), + [sym_true] = ACTIONS(2145), + [sym_false] = ACTIONS(2145), + [sym_null] = ACTIONS(2145), + [sym_undefined] = ACTIONS(2145), + [anon_sym_AT] = ACTIONS(2145), + [anon_sym_static] = ACTIONS(2145), + [anon_sym_readonly] = ACTIONS(2145), + [anon_sym_get] = ACTIONS(2145), + [anon_sym_set] = ACTIONS(2145), + [anon_sym_declare] = ACTIONS(2145), + [anon_sym_public] = ACTIONS(2145), + [anon_sym_private] = ACTIONS(2145), + [anon_sym_protected] = ACTIONS(2145), + [anon_sym_override] = ACTIONS(2145), + [anon_sym_module] = ACTIONS(2145), + [anon_sym_any] = ACTIONS(2145), + [anon_sym_number] = ACTIONS(2145), + [anon_sym_boolean] = ACTIONS(2145), + [anon_sym_string] = ACTIONS(2145), + [anon_sym_symbol] = ACTIONS(2145), + [anon_sym_object] = ACTIONS(2145), + [anon_sym_abstract] = ACTIONS(2145), + [anon_sym_interface] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2145), [sym_html_comment] = ACTIONS(5), }, - [1238] = { - [sym_comment] = STATE(1238), - [ts_builtin_sym_end] = ACTIONS(3392), + [1209] = { + [sym_comment] = STATE(1209), + [ts_builtin_sym_end] = ACTIONS(3408), [sym_identifier] = ACTIONS(3274), [anon_sym_export] = ACTIONS(3274), [anon_sym_type] = ACTIONS(3274), @@ -165157,2058 +162434,2058 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3274), [sym_html_comment] = ACTIONS(5), }, - [1239] = { - [sym_comment] = STATE(1239), - [sym_identifier] = ACTIONS(3208), - [anon_sym_export] = ACTIONS(3208), - [anon_sym_default] = ACTIONS(3208), - [anon_sym_type] = ACTIONS(3208), - [anon_sym_namespace] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3208), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_typeof] = ACTIONS(3208), - [anon_sym_import] = ACTIONS(3208), - [anon_sym_with] = ACTIONS(3208), - [anon_sym_var] = ACTIONS(3208), - [anon_sym_let] = ACTIONS(3208), - [anon_sym_const] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_if] = ACTIONS(3208), - [anon_sym_switch] = ACTIONS(3208), - [anon_sym_for] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_await] = ACTIONS(3208), - [anon_sym_while] = ACTIONS(3208), - [anon_sym_do] = ACTIONS(3208), - [anon_sym_try] = ACTIONS(3208), - [anon_sym_break] = ACTIONS(3208), - [anon_sym_continue] = ACTIONS(3208), - [anon_sym_debugger] = ACTIONS(3208), - [anon_sym_return] = ACTIONS(3208), - [anon_sym_throw] = ACTIONS(3208), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_case] = ACTIONS(3208), - [anon_sym_yield] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_LTtemplate_GT] = ACTIONS(3208), - [anon_sym_DQUOTE] = ACTIONS(3208), - [anon_sym_SQUOTE] = ACTIONS(3208), - [anon_sym_class] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3208), - [anon_sym_function] = ACTIONS(3208), - [anon_sym_new] = ACTIONS(3208), - [anon_sym_using] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_SLASH] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_void] = ACTIONS(3208), - [anon_sym_delete] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3208), - [sym_number] = ACTIONS(3208), - [sym_private_property_identifier] = ACTIONS(3208), - [sym_this] = ACTIONS(3208), - [sym_super] = ACTIONS(3208), - [sym_true] = ACTIONS(3208), - [sym_false] = ACTIONS(3208), - [sym_null] = ACTIONS(3208), - [sym_undefined] = ACTIONS(3208), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_static] = ACTIONS(3208), - [anon_sym_readonly] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3208), - [anon_sym_set] = ACTIONS(3208), - [anon_sym_declare] = ACTIONS(3208), - [anon_sym_public] = ACTIONS(3208), - [anon_sym_private] = ACTIONS(3208), - [anon_sym_protected] = ACTIONS(3208), - [anon_sym_override] = ACTIONS(3208), - [anon_sym_module] = ACTIONS(3208), - [anon_sym_any] = ACTIONS(3208), - [anon_sym_number] = ACTIONS(3208), - [anon_sym_boolean] = ACTIONS(3208), - [anon_sym_string] = ACTIONS(3208), - [anon_sym_symbol] = ACTIONS(3208), - [anon_sym_object] = ACTIONS(3208), - [anon_sym_abstract] = ACTIONS(3208), - [anon_sym_interface] = ACTIONS(3208), - [anon_sym_enum] = ACTIONS(3208), + [1210] = { + [sym_comment] = STATE(1210), + [ts_builtin_sym_end] = ACTIONS(2147), + [sym_identifier] = ACTIONS(2145), + [anon_sym_export] = ACTIONS(2145), + [anon_sym_type] = ACTIONS(2145), + [anon_sym_namespace] = ACTIONS(2145), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_typeof] = ACTIONS(2145), + [anon_sym_import] = ACTIONS(2145), + [anon_sym_with] = ACTIONS(2145), + [anon_sym_var] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(2145), + [anon_sym_else] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2145), + [anon_sym_switch] = ACTIONS(2145), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_do] = ACTIONS(2145), + [anon_sym_try] = ACTIONS(2145), + [anon_sym_break] = ACTIONS(2145), + [anon_sym_continue] = ACTIONS(2145), + [anon_sym_debugger] = ACTIONS(2145), + [anon_sym_return] = ACTIONS(2145), + [anon_sym_throw] = ACTIONS(2145), + [anon_sym_SEMI] = ACTIONS(2145), + [anon_sym_yield] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_LTtemplate_GT] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2145), + [anon_sym_class] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(2145), + [anon_sym_using] = ACTIONS(2145), + [anon_sym_PLUS] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_SLASH] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_TILDE] = ACTIONS(2145), + [anon_sym_void] = ACTIONS(2145), + [anon_sym_delete] = ACTIONS(2145), + [anon_sym_PLUS_PLUS] = ACTIONS(2145), + [anon_sym_DASH_DASH] = ACTIONS(2145), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2145), + [sym_number] = ACTIONS(2145), + [sym_private_property_identifier] = ACTIONS(2145), + [sym_this] = ACTIONS(2145), + [sym_super] = ACTIONS(2145), + [sym_true] = ACTIONS(2145), + [sym_false] = ACTIONS(2145), + [sym_null] = ACTIONS(2145), + [sym_undefined] = ACTIONS(2145), + [anon_sym_AT] = ACTIONS(2145), + [anon_sym_static] = ACTIONS(2145), + [anon_sym_readonly] = ACTIONS(2145), + [anon_sym_get] = ACTIONS(2145), + [anon_sym_set] = ACTIONS(2145), + [anon_sym_declare] = ACTIONS(2145), + [anon_sym_public] = ACTIONS(2145), + [anon_sym_private] = ACTIONS(2145), + [anon_sym_protected] = ACTIONS(2145), + [anon_sym_override] = ACTIONS(2145), + [anon_sym_module] = ACTIONS(2145), + [anon_sym_any] = ACTIONS(2145), + [anon_sym_number] = ACTIONS(2145), + [anon_sym_boolean] = ACTIONS(2145), + [anon_sym_string] = ACTIONS(2145), + [anon_sym_symbol] = ACTIONS(2145), + [anon_sym_object] = ACTIONS(2145), + [anon_sym_abstract] = ACTIONS(2145), + [anon_sym_interface] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2145), [sym_html_comment] = ACTIONS(5), }, - [1240] = { - [sym_comment] = STATE(1240), - [ts_builtin_sym_end] = ACTIONS(3318), - [sym_identifier] = ACTIONS(3066), - [anon_sym_export] = ACTIONS(3066), - [anon_sym_type] = ACTIONS(3066), - [anon_sym_namespace] = ACTIONS(3066), - [anon_sym_LBRACE] = ACTIONS(3066), - [anon_sym_RBRACE] = ACTIONS(3066), - [anon_sym_typeof] = ACTIONS(3066), - [anon_sym_import] = ACTIONS(3066), - [anon_sym_with] = ACTIONS(3066), - [anon_sym_var] = ACTIONS(3066), - [anon_sym_let] = ACTIONS(3066), - [anon_sym_const] = ACTIONS(3066), - [anon_sym_BANG] = ACTIONS(3066), - [anon_sym_if] = ACTIONS(3066), - [anon_sym_switch] = ACTIONS(3066), - [anon_sym_for] = ACTIONS(3066), - [anon_sym_LPAREN] = ACTIONS(3066), - [anon_sym_await] = ACTIONS(3066), - [anon_sym_while] = ACTIONS(3066), - [anon_sym_do] = ACTIONS(3066), - [anon_sym_try] = ACTIONS(3066), - [anon_sym_break] = ACTIONS(3066), - [anon_sym_continue] = ACTIONS(3066), - [anon_sym_debugger] = ACTIONS(3066), - [anon_sym_return] = ACTIONS(3066), - [anon_sym_throw] = ACTIONS(3066), - [anon_sym_SEMI] = ACTIONS(3066), - [anon_sym_finally] = ACTIONS(3066), - [anon_sym_yield] = ACTIONS(3066), - [anon_sym_LBRACK] = ACTIONS(3066), - [anon_sym_LTtemplate_GT] = ACTIONS(3066), - [anon_sym_DQUOTE] = ACTIONS(3066), - [anon_sym_SQUOTE] = ACTIONS(3066), - [anon_sym_class] = ACTIONS(3066), - [anon_sym_async] = ACTIONS(3066), - [anon_sym_function] = ACTIONS(3066), - [anon_sym_new] = ACTIONS(3066), - [anon_sym_using] = ACTIONS(3066), - [anon_sym_PLUS] = ACTIONS(3066), - [anon_sym_DASH] = ACTIONS(3066), - [anon_sym_SLASH] = ACTIONS(3066), - [anon_sym_LT] = ACTIONS(3066), - [anon_sym_TILDE] = ACTIONS(3066), - [anon_sym_void] = ACTIONS(3066), - [anon_sym_delete] = ACTIONS(3066), - [anon_sym_PLUS_PLUS] = ACTIONS(3066), - [anon_sym_DASH_DASH] = ACTIONS(3066), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3066), - [sym_number] = ACTIONS(3066), - [sym_private_property_identifier] = ACTIONS(3066), - [sym_this] = ACTIONS(3066), - [sym_super] = ACTIONS(3066), - [sym_true] = ACTIONS(3066), - [sym_false] = ACTIONS(3066), - [sym_null] = ACTIONS(3066), - [sym_undefined] = ACTIONS(3066), - [anon_sym_AT] = ACTIONS(3066), - [anon_sym_static] = ACTIONS(3066), - [anon_sym_readonly] = ACTIONS(3066), - [anon_sym_get] = ACTIONS(3066), - [anon_sym_set] = ACTIONS(3066), - [anon_sym_declare] = ACTIONS(3066), - [anon_sym_public] = ACTIONS(3066), - [anon_sym_private] = ACTIONS(3066), - [anon_sym_protected] = ACTIONS(3066), - [anon_sym_override] = ACTIONS(3066), - [anon_sym_module] = ACTIONS(3066), - [anon_sym_any] = ACTIONS(3066), - [anon_sym_number] = ACTIONS(3066), - [anon_sym_boolean] = ACTIONS(3066), - [anon_sym_string] = ACTIONS(3066), - [anon_sym_symbol] = ACTIONS(3066), - [anon_sym_object] = ACTIONS(3066), - [anon_sym_abstract] = ACTIONS(3066), - [anon_sym_interface] = ACTIONS(3066), - [anon_sym_enum] = ACTIONS(3066), + [1211] = { + [sym_comment] = STATE(1211), + [sym_identifier] = ACTIONS(3178), + [anon_sym_export] = ACTIONS(3178), + [anon_sym_default] = ACTIONS(3178), + [anon_sym_type] = ACTIONS(3178), + [anon_sym_namespace] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3178), + [anon_sym_typeof] = ACTIONS(3178), + [anon_sym_import] = ACTIONS(3178), + [anon_sym_with] = ACTIONS(3178), + [anon_sym_var] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_switch] = ACTIONS(3178), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_await] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_break] = ACTIONS(3178), + [anon_sym_continue] = ACTIONS(3178), + [anon_sym_debugger] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym_case] = ACTIONS(3178), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LTtemplate_GT] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3178), + [anon_sym_class] = ACTIONS(3178), + [anon_sym_async] = ACTIONS(3178), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_using] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_void] = ACTIONS(3178), + [anon_sym_delete] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_DASH_DASH] = ACTIONS(3178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3178), + [sym_number] = ACTIONS(3178), + [sym_private_property_identifier] = ACTIONS(3178), + [sym_this] = ACTIONS(3178), + [sym_super] = ACTIONS(3178), + [sym_true] = ACTIONS(3178), + [sym_false] = ACTIONS(3178), + [sym_null] = ACTIONS(3178), + [sym_undefined] = ACTIONS(3178), + [anon_sym_AT] = ACTIONS(3178), + [anon_sym_static] = ACTIONS(3178), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_get] = ACTIONS(3178), + [anon_sym_set] = ACTIONS(3178), + [anon_sym_declare] = ACTIONS(3178), + [anon_sym_public] = ACTIONS(3178), + [anon_sym_private] = ACTIONS(3178), + [anon_sym_protected] = ACTIONS(3178), + [anon_sym_override] = ACTIONS(3178), + [anon_sym_module] = ACTIONS(3178), + [anon_sym_any] = ACTIONS(3178), + [anon_sym_number] = ACTIONS(3178), + [anon_sym_boolean] = ACTIONS(3178), + [anon_sym_string] = ACTIONS(3178), + [anon_sym_symbol] = ACTIONS(3178), + [anon_sym_object] = ACTIONS(3178), + [anon_sym_abstract] = ACTIONS(3178), + [anon_sym_interface] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), [sym_html_comment] = ACTIONS(5), }, - [1241] = { - [sym_comment] = STATE(1241), - [ts_builtin_sym_end] = ACTIONS(3394), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_typeof] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(3272), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_var] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_const] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_else] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_switch] = ACTIONS(3272), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_await] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_break] = ACTIONS(3272), - [anon_sym_continue] = ACTIONS(3272), - [anon_sym_debugger] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_throw] = ACTIONS(3272), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LTtemplate_GT] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_class] = ACTIONS(3272), - [anon_sym_async] = ACTIONS(3272), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_using] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_void] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), + [1212] = { + [sym_comment] = STATE(1212), + [sym_identifier] = ACTIONS(3154), + [anon_sym_export] = ACTIONS(3154), + [anon_sym_default] = ACTIONS(3154), + [anon_sym_type] = ACTIONS(3154), + [anon_sym_namespace] = ACTIONS(3154), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_typeof] = ACTIONS(3154), + [anon_sym_import] = ACTIONS(3154), + [anon_sym_with] = ACTIONS(3154), + [anon_sym_var] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_await] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [anon_sym_debugger] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_throw] = ACTIONS(3154), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_case] = ACTIONS(3154), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LTtemplate_GT] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_async] = ACTIONS(3154), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_using] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_SLASH] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3154), + [anon_sym_void] = ACTIONS(3154), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3272), - [sym_number] = ACTIONS(3272), - [sym_private_property_identifier] = ACTIONS(3272), - [sym_this] = ACTIONS(3272), - [sym_super] = ACTIONS(3272), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_undefined] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3272), - [anon_sym_static] = ACTIONS(3272), - [anon_sym_readonly] = ACTIONS(3272), - [anon_sym_get] = ACTIONS(3272), - [anon_sym_set] = ACTIONS(3272), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3272), - [anon_sym_private] = ACTIONS(3272), - [anon_sym_protected] = ACTIONS(3272), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_any] = ACTIONS(3272), - [anon_sym_number] = ACTIONS(3272), - [anon_sym_boolean] = ACTIONS(3272), - [anon_sym_string] = ACTIONS(3272), - [anon_sym_symbol] = ACTIONS(3272), - [anon_sym_object] = ACTIONS(3272), - [anon_sym_abstract] = ACTIONS(3272), - [anon_sym_interface] = ACTIONS(3272), - [anon_sym_enum] = ACTIONS(3272), - [sym_html_comment] = ACTIONS(5), - }, - [1242] = { - [sym_comment] = STATE(1242), - [sym_identifier] = ACTIONS(3206), - [anon_sym_export] = ACTIONS(3206), - [anon_sym_default] = ACTIONS(3206), - [anon_sym_type] = ACTIONS(3206), - [anon_sym_namespace] = ACTIONS(3206), - [anon_sym_LBRACE] = ACTIONS(3206), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_typeof] = ACTIONS(3206), - [anon_sym_import] = ACTIONS(3206), - [anon_sym_with] = ACTIONS(3206), - [anon_sym_var] = ACTIONS(3206), - [anon_sym_let] = ACTIONS(3206), - [anon_sym_const] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_if] = ACTIONS(3206), - [anon_sym_switch] = ACTIONS(3206), - [anon_sym_for] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3206), - [anon_sym_await] = ACTIONS(3206), - [anon_sym_while] = ACTIONS(3206), - [anon_sym_do] = ACTIONS(3206), - [anon_sym_try] = ACTIONS(3206), - [anon_sym_break] = ACTIONS(3206), - [anon_sym_continue] = ACTIONS(3206), - [anon_sym_debugger] = ACTIONS(3206), - [anon_sym_return] = ACTIONS(3206), - [anon_sym_throw] = ACTIONS(3206), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_case] = ACTIONS(3206), - [anon_sym_yield] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_LTtemplate_GT] = ACTIONS(3206), - [anon_sym_DQUOTE] = ACTIONS(3206), - [anon_sym_SQUOTE] = ACTIONS(3206), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_async] = ACTIONS(3206), - [anon_sym_function] = ACTIONS(3206), - [anon_sym_new] = ACTIONS(3206), - [anon_sym_using] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_SLASH] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3206), - [anon_sym_TILDE] = ACTIONS(3206), - [anon_sym_void] = ACTIONS(3206), - [anon_sym_delete] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3206), - [sym_number] = ACTIONS(3206), - [sym_private_property_identifier] = ACTIONS(3206), - [sym_this] = ACTIONS(3206), - [sym_super] = ACTIONS(3206), - [sym_true] = ACTIONS(3206), - [sym_false] = ACTIONS(3206), - [sym_null] = ACTIONS(3206), - [sym_undefined] = ACTIONS(3206), - [anon_sym_AT] = ACTIONS(3206), - [anon_sym_static] = ACTIONS(3206), - [anon_sym_readonly] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3206), - [anon_sym_set] = ACTIONS(3206), - [anon_sym_declare] = ACTIONS(3206), - [anon_sym_public] = ACTIONS(3206), - [anon_sym_private] = ACTIONS(3206), - [anon_sym_protected] = ACTIONS(3206), - [anon_sym_override] = ACTIONS(3206), - [anon_sym_module] = ACTIONS(3206), - [anon_sym_any] = ACTIONS(3206), - [anon_sym_number] = ACTIONS(3206), - [anon_sym_boolean] = ACTIONS(3206), - [anon_sym_string] = ACTIONS(3206), - [anon_sym_symbol] = ACTIONS(3206), - [anon_sym_object] = ACTIONS(3206), - [anon_sym_abstract] = ACTIONS(3206), - [anon_sym_interface] = ACTIONS(3206), - [anon_sym_enum] = ACTIONS(3206), + [anon_sym_BQUOTE] = ACTIONS(3154), + [sym_number] = ACTIONS(3154), + [sym_private_property_identifier] = ACTIONS(3154), + [sym_this] = ACTIONS(3154), + [sym_super] = ACTIONS(3154), + [sym_true] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [sym_undefined] = ACTIONS(3154), + [anon_sym_AT] = ACTIONS(3154), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_readonly] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3154), + [anon_sym_set] = ACTIONS(3154), + [anon_sym_declare] = ACTIONS(3154), + [anon_sym_public] = ACTIONS(3154), + [anon_sym_private] = ACTIONS(3154), + [anon_sym_protected] = ACTIONS(3154), + [anon_sym_override] = ACTIONS(3154), + [anon_sym_module] = ACTIONS(3154), + [anon_sym_any] = ACTIONS(3154), + [anon_sym_number] = ACTIONS(3154), + [anon_sym_boolean] = ACTIONS(3154), + [anon_sym_string] = ACTIONS(3154), + [anon_sym_symbol] = ACTIONS(3154), + [anon_sym_object] = ACTIONS(3154), + [anon_sym_abstract] = ACTIONS(3154), + [anon_sym_interface] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, - [1243] = { - [sym_comment] = STATE(1243), - [sym_identifier] = ACTIONS(3204), - [anon_sym_export] = ACTIONS(3204), - [anon_sym_default] = ACTIONS(3204), - [anon_sym_type] = ACTIONS(3204), - [anon_sym_namespace] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3204), - [anon_sym_RBRACE] = ACTIONS(3204), - [anon_sym_typeof] = ACTIONS(3204), - [anon_sym_import] = ACTIONS(3204), - [anon_sym_with] = ACTIONS(3204), - [anon_sym_var] = ACTIONS(3204), - [anon_sym_let] = ACTIONS(3204), - [anon_sym_const] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_switch] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(3204), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_await] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_do] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_debugger] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3204), - [anon_sym_case] = ACTIONS(3204), - [anon_sym_yield] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_LTtemplate_GT] = ACTIONS(3204), - [anon_sym_DQUOTE] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3204), - [anon_sym_async] = ACTIONS(3204), - [anon_sym_function] = ACTIONS(3204), - [anon_sym_new] = ACTIONS(3204), - [anon_sym_using] = ACTIONS(3204), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_void] = ACTIONS(3204), - [anon_sym_delete] = ACTIONS(3204), - [anon_sym_PLUS_PLUS] = ACTIONS(3204), - [anon_sym_DASH_DASH] = ACTIONS(3204), + [1213] = { + [sym_comment] = STATE(1213), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_default] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_case] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3204), - [sym_number] = ACTIONS(3204), - [sym_private_property_identifier] = ACTIONS(3204), - [sym_this] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_true] = ACTIONS(3204), - [sym_false] = ACTIONS(3204), - [sym_null] = ACTIONS(3204), - [sym_undefined] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3204), - [anon_sym_static] = ACTIONS(3204), - [anon_sym_readonly] = ACTIONS(3204), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_declare] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_module] = ACTIONS(3204), - [anon_sym_any] = ACTIONS(3204), - [anon_sym_number] = ACTIONS(3204), - [anon_sym_boolean] = ACTIONS(3204), - [anon_sym_string] = ACTIONS(3204), - [anon_sym_symbol] = ACTIONS(3204), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_interface] = ACTIONS(3204), - [anon_sym_enum] = ACTIONS(3204), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, - [1244] = { - [sym_comment] = STATE(1244), - [sym_identifier] = ACTIONS(3202), - [anon_sym_export] = ACTIONS(3202), - [anon_sym_default] = ACTIONS(3202), - [anon_sym_type] = ACTIONS(3202), - [anon_sym_namespace] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_typeof] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_with] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [anon_sym_let] = ACTIONS(3202), - [anon_sym_const] = ACTIONS(3202), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_switch] = ACTIONS(3202), - [anon_sym_for] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_await] = ACTIONS(3202), - [anon_sym_while] = ACTIONS(3202), - [anon_sym_do] = ACTIONS(3202), - [anon_sym_try] = ACTIONS(3202), - [anon_sym_break] = ACTIONS(3202), - [anon_sym_continue] = ACTIONS(3202), - [anon_sym_debugger] = ACTIONS(3202), - [anon_sym_return] = ACTIONS(3202), - [anon_sym_throw] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3202), - [anon_sym_yield] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_LTtemplate_GT] = ACTIONS(3202), - [anon_sym_DQUOTE] = ACTIONS(3202), - [anon_sym_SQUOTE] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_async] = ACTIONS(3202), - [anon_sym_function] = ACTIONS(3202), - [anon_sym_new] = ACTIONS(3202), - [anon_sym_using] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_SLASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3202), - [anon_sym_TILDE] = ACTIONS(3202), - [anon_sym_void] = ACTIONS(3202), - [anon_sym_delete] = ACTIONS(3202), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), + [1214] = { + [sym_comment] = STATE(1214), + [sym_identifier] = ACTIONS(3264), + [anon_sym_export] = ACTIONS(3264), + [anon_sym_default] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_namespace] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_RBRACE] = ACTIONS(3264), + [anon_sym_typeof] = ACTIONS(3264), + [anon_sym_import] = ACTIONS(3264), + [anon_sym_with] = ACTIONS(3264), + [anon_sym_var] = ACTIONS(3264), + [anon_sym_let] = ACTIONS(3264), + [anon_sym_const] = ACTIONS(3264), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_switch] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3264), + [anon_sym_await] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_do] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_debugger] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym_case] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_LTtemplate_GT] = ACTIONS(3264), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3264), + [anon_sym_class] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3264), + [anon_sym_using] = ACTIONS(3264), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_void] = ACTIONS(3264), + [anon_sym_delete] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_DASH_DASH] = ACTIONS(3264), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3202), - [sym_number] = ACTIONS(3202), - [sym_private_property_identifier] = ACTIONS(3202), - [sym_this] = ACTIONS(3202), - [sym_super] = ACTIONS(3202), - [sym_true] = ACTIONS(3202), - [sym_false] = ACTIONS(3202), - [sym_null] = ACTIONS(3202), - [sym_undefined] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_readonly] = ACTIONS(3202), - [anon_sym_get] = ACTIONS(3202), - [anon_sym_set] = ACTIONS(3202), - [anon_sym_declare] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_protected] = ACTIONS(3202), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_module] = ACTIONS(3202), - [anon_sym_any] = ACTIONS(3202), - [anon_sym_number] = ACTIONS(3202), - [anon_sym_boolean] = ACTIONS(3202), - [anon_sym_string] = ACTIONS(3202), - [anon_sym_symbol] = ACTIONS(3202), - [anon_sym_object] = ACTIONS(3202), - [anon_sym_abstract] = ACTIONS(3202), - [anon_sym_interface] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), - [sym_html_comment] = ACTIONS(5), - }, - [1245] = { - [sym_comment] = STATE(1245), - [sym_identifier] = ACTIONS(3200), - [anon_sym_export] = ACTIONS(3200), - [anon_sym_default] = ACTIONS(3200), - [anon_sym_type] = ACTIONS(3200), - [anon_sym_namespace] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3200), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_typeof] = ACTIONS(3200), - [anon_sym_import] = ACTIONS(3200), - [anon_sym_with] = ACTIONS(3200), - [anon_sym_var] = ACTIONS(3200), - [anon_sym_let] = ACTIONS(3200), - [anon_sym_const] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_switch] = ACTIONS(3200), - [anon_sym_for] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_await] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_do] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_debugger] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_case] = ACTIONS(3200), - [anon_sym_yield] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_LTtemplate_GT] = ACTIONS(3200), - [anon_sym_DQUOTE] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3200), - [anon_sym_class] = ACTIONS(3200), - [anon_sym_async] = ACTIONS(3200), - [anon_sym_function] = ACTIONS(3200), - [anon_sym_new] = ACTIONS(3200), - [anon_sym_using] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3200), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_void] = ACTIONS(3200), - [anon_sym_delete] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3200), - [sym_number] = ACTIONS(3200), - [sym_private_property_identifier] = ACTIONS(3200), - [sym_this] = ACTIONS(3200), - [sym_super] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_null] = ACTIONS(3200), - [sym_undefined] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_static] = ACTIONS(3200), - [anon_sym_readonly] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_declare] = ACTIONS(3200), - [anon_sym_public] = ACTIONS(3200), - [anon_sym_private] = ACTIONS(3200), - [anon_sym_protected] = ACTIONS(3200), - [anon_sym_override] = ACTIONS(3200), - [anon_sym_module] = ACTIONS(3200), - [anon_sym_any] = ACTIONS(3200), - [anon_sym_number] = ACTIONS(3200), - [anon_sym_boolean] = ACTIONS(3200), - [anon_sym_string] = ACTIONS(3200), - [anon_sym_symbol] = ACTIONS(3200), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_abstract] = ACTIONS(3200), - [anon_sym_interface] = ACTIONS(3200), - [anon_sym_enum] = ACTIONS(3200), + [anon_sym_BQUOTE] = ACTIONS(3264), + [sym_number] = ACTIONS(3264), + [sym_private_property_identifier] = ACTIONS(3264), + [sym_this] = ACTIONS(3264), + [sym_super] = ACTIONS(3264), + [sym_true] = ACTIONS(3264), + [sym_false] = ACTIONS(3264), + [sym_null] = ACTIONS(3264), + [sym_undefined] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3264), + [anon_sym_static] = ACTIONS(3264), + [anon_sym_readonly] = ACTIONS(3264), + [anon_sym_get] = ACTIONS(3264), + [anon_sym_set] = ACTIONS(3264), + [anon_sym_declare] = ACTIONS(3264), + [anon_sym_public] = ACTIONS(3264), + [anon_sym_private] = ACTIONS(3264), + [anon_sym_protected] = ACTIONS(3264), + [anon_sym_override] = ACTIONS(3264), + [anon_sym_module] = ACTIONS(3264), + [anon_sym_any] = ACTIONS(3264), + [anon_sym_number] = ACTIONS(3264), + [anon_sym_boolean] = ACTIONS(3264), + [anon_sym_string] = ACTIONS(3264), + [anon_sym_symbol] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_abstract] = ACTIONS(3264), + [anon_sym_interface] = ACTIONS(3264), + [anon_sym_enum] = ACTIONS(3264), [sym_html_comment] = ACTIONS(5), }, - [1246] = { - [sym_comment] = STATE(1246), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_default] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_case] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), + [1215] = { + [sym_comment] = STATE(1215), + [ts_builtin_sym_end] = ACTIONS(3410), + [sym_identifier] = ACTIONS(3252), + [anon_sym_export] = ACTIONS(3252), + [anon_sym_type] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_typeof] = ACTIONS(3252), + [anon_sym_import] = ACTIONS(3252), + [anon_sym_with] = ACTIONS(3252), + [anon_sym_var] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_BANG] = ACTIONS(3252), + [anon_sym_else] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_await] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_debugger] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_yield] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LTtemplate_GT] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [anon_sym_SQUOTE] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_async] = ACTIONS(3252), + [anon_sym_function] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_void] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [anon_sym_BQUOTE] = ACTIONS(3252), + [sym_number] = ACTIONS(3252), + [sym_private_property_identifier] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + [sym_super] = ACTIONS(3252), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [sym_null] = ACTIONS(3252), + [sym_undefined] = ACTIONS(3252), + [anon_sym_AT] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3252), + [anon_sym_get] = ACTIONS(3252), + [anon_sym_set] = ACTIONS(3252), + [anon_sym_declare] = ACTIONS(3252), + [anon_sym_public] = ACTIONS(3252), + [anon_sym_private] = ACTIONS(3252), + [anon_sym_protected] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_module] = ACTIONS(3252), + [anon_sym_any] = ACTIONS(3252), + [anon_sym_number] = ACTIONS(3252), + [anon_sym_boolean] = ACTIONS(3252), + [anon_sym_string] = ACTIONS(3252), + [anon_sym_symbol] = ACTIONS(3252), + [anon_sym_object] = ACTIONS(3252), + [anon_sym_abstract] = ACTIONS(3252), + [anon_sym_interface] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), [sym_html_comment] = ACTIONS(5), }, - [1247] = { - [sym_comment] = STATE(1247), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_default] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_case] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), + [1216] = { + [sym_comment] = STATE(1216), + [ts_builtin_sym_end] = ACTIONS(2095), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2067), + [anon_sym_RBRACE] = ACTIONS(2067), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2067), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2067), + [anon_sym_yield] = ACTIONS(2067), + [anon_sym_LBRACK] = ACTIONS(2067), + [anon_sym_LTtemplate_GT] = ACTIONS(2067), + [anon_sym_DQUOTE] = ACTIONS(2067), + [anon_sym_SQUOTE] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_using] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_LT] = ACTIONS(2067), + [anon_sym_TILDE] = ACTIONS(2067), + [anon_sym_void] = ACTIONS(2067), + [anon_sym_delete] = ACTIONS(2067), + [anon_sym_PLUS_PLUS] = ACTIONS(2067), + [anon_sym_DASH_DASH] = ACTIONS(2067), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [anon_sym_BQUOTE] = ACTIONS(2067), + [sym_number] = ACTIONS(2067), + [sym_private_property_identifier] = ACTIONS(2067), + [sym_this] = ACTIONS(2067), + [sym_super] = ACTIONS(2067), + [sym_true] = ACTIONS(2067), + [sym_false] = ACTIONS(2067), + [sym_null] = ACTIONS(2067), + [sym_undefined] = ACTIONS(2067), + [anon_sym_AT] = ACTIONS(2067), + [anon_sym_static] = ACTIONS(2067), + [anon_sym_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_override] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_object] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [sym__automatic_semicolon] = ACTIONS(3412), [sym_html_comment] = ACTIONS(5), }, - [1248] = { - [sym_comment] = STATE(1248), - [ts_builtin_sym_end] = ACTIONS(3396), - [sym_identifier] = ACTIONS(3156), - [anon_sym_export] = ACTIONS(3156), - [anon_sym_type] = ACTIONS(3156), - [anon_sym_namespace] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3156), - [anon_sym_typeof] = ACTIONS(3156), - [anon_sym_import] = ACTIONS(3156), - [anon_sym_with] = ACTIONS(3156), - [anon_sym_var] = ACTIONS(3156), - [anon_sym_let] = ACTIONS(3156), - [anon_sym_const] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3156), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_switch] = ACTIONS(3156), - [anon_sym_for] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_await] = ACTIONS(3156), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_do] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_debugger] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_SEMI] = ACTIONS(3156), - [anon_sym_yield] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3156), - [anon_sym_LTtemplate_GT] = ACTIONS(3156), - [anon_sym_DQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_class] = ACTIONS(3156), - [anon_sym_async] = ACTIONS(3156), - [anon_sym_function] = ACTIONS(3156), - [anon_sym_new] = ACTIONS(3156), - [anon_sym_using] = ACTIONS(3156), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_SLASH] = ACTIONS(3156), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3156), - [anon_sym_void] = ACTIONS(3156), - [anon_sym_delete] = ACTIONS(3156), - [anon_sym_PLUS_PLUS] = ACTIONS(3156), - [anon_sym_DASH_DASH] = ACTIONS(3156), + [1217] = { + [sym_comment] = STATE(1217), + [ts_builtin_sym_end] = ACTIONS(3414), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LTtemplate_GT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3156), - [sym_number] = ACTIONS(3156), - [sym_private_property_identifier] = ACTIONS(3156), - [sym_this] = ACTIONS(3156), - [sym_super] = ACTIONS(3156), - [sym_true] = ACTIONS(3156), - [sym_false] = ACTIONS(3156), - [sym_null] = ACTIONS(3156), - [sym_undefined] = ACTIONS(3156), - [anon_sym_AT] = ACTIONS(3156), - [anon_sym_static] = ACTIONS(3156), - [anon_sym_readonly] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(3156), - [anon_sym_set] = ACTIONS(3156), - [anon_sym_declare] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_module] = ACTIONS(3156), - [anon_sym_any] = ACTIONS(3156), - [anon_sym_number] = ACTIONS(3156), - [anon_sym_boolean] = ACTIONS(3156), - [anon_sym_string] = ACTIONS(3156), - [anon_sym_symbol] = ACTIONS(3156), - [anon_sym_object] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_interface] = ACTIONS(3156), - [anon_sym_enum] = ACTIONS(3156), + [anon_sym_BQUOTE] = ACTIONS(3354), + [sym_number] = ACTIONS(3354), + [sym_private_property_identifier] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), + [sym_super] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_undefined] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_any] = ACTIONS(3354), + [anon_sym_number] = ACTIONS(3354), + [anon_sym_boolean] = ACTIONS(3354), + [anon_sym_string] = ACTIONS(3354), + [anon_sym_symbol] = ACTIONS(3354), + [anon_sym_object] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), [sym_html_comment] = ACTIONS(5), }, - [1249] = { - [sym_comment] = STATE(1249), - [sym_identifier] = ACTIONS(3190), - [anon_sym_export] = ACTIONS(3190), - [anon_sym_default] = ACTIONS(3190), - [anon_sym_type] = ACTIONS(3190), - [anon_sym_namespace] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3190), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_typeof] = ACTIONS(3190), - [anon_sym_import] = ACTIONS(3190), - [anon_sym_with] = ACTIONS(3190), - [anon_sym_var] = ACTIONS(3190), - [anon_sym_let] = ACTIONS(3190), - [anon_sym_const] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_if] = ACTIONS(3190), - [anon_sym_switch] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_await] = ACTIONS(3190), - [anon_sym_while] = ACTIONS(3190), - [anon_sym_do] = ACTIONS(3190), - [anon_sym_try] = ACTIONS(3190), - [anon_sym_break] = ACTIONS(3190), - [anon_sym_continue] = ACTIONS(3190), - [anon_sym_debugger] = ACTIONS(3190), - [anon_sym_return] = ACTIONS(3190), - [anon_sym_throw] = ACTIONS(3190), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_case] = ACTIONS(3190), - [anon_sym_yield] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_LTtemplate_GT] = ACTIONS(3190), - [anon_sym_DQUOTE] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3190), - [anon_sym_class] = ACTIONS(3190), - [anon_sym_async] = ACTIONS(3190), - [anon_sym_function] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_using] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3190), - [anon_sym_SLASH] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_void] = ACTIONS(3190), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3190), - [sym_number] = ACTIONS(3190), - [sym_private_property_identifier] = ACTIONS(3190), - [sym_this] = ACTIONS(3190), - [sym_super] = ACTIONS(3190), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_static] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3190), - [anon_sym_set] = ACTIONS(3190), - [anon_sym_declare] = ACTIONS(3190), - [anon_sym_public] = ACTIONS(3190), - [anon_sym_private] = ACTIONS(3190), - [anon_sym_protected] = ACTIONS(3190), - [anon_sym_override] = ACTIONS(3190), - [anon_sym_module] = ACTIONS(3190), - [anon_sym_any] = ACTIONS(3190), - [anon_sym_number] = ACTIONS(3190), - [anon_sym_boolean] = ACTIONS(3190), - [anon_sym_string] = ACTIONS(3190), - [anon_sym_symbol] = ACTIONS(3190), - [anon_sym_object] = ACTIONS(3190), - [anon_sym_abstract] = ACTIONS(3190), - [anon_sym_interface] = ACTIONS(3190), - [anon_sym_enum] = ACTIONS(3190), + [1218] = { + [sym_comment] = STATE(1218), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_typeof] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_with] = ACTIONS(2175), + [anon_sym_var] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_debugger] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_throw] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_case] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_LTtemplate_GT] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_function] = ACTIONS(2175), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_using] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_void] = ACTIONS(2175), + [anon_sym_delete] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2175), + [sym_number] = ACTIONS(2175), + [sym_private_property_identifier] = ACTIONS(2175), + [sym_this] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_null] = ACTIONS(2175), + [sym_undefined] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_readonly] = ACTIONS(2175), + [anon_sym_get] = ACTIONS(2175), + [anon_sym_set] = ACTIONS(2175), + [anon_sym_declare] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_override] = ACTIONS(2175), + [anon_sym_module] = ACTIONS(2175), + [anon_sym_any] = ACTIONS(2175), + [anon_sym_number] = ACTIONS(2175), + [anon_sym_boolean] = ACTIONS(2175), + [anon_sym_string] = ACTIONS(2175), + [anon_sym_symbol] = ACTIONS(2175), + [anon_sym_object] = ACTIONS(2175), + [anon_sym_abstract] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), [sym_html_comment] = ACTIONS(5), }, - [1250] = { - [sym_comment] = STATE(1250), - [sym_identifier] = ACTIONS(3186), - [anon_sym_export] = ACTIONS(3186), - [anon_sym_default] = ACTIONS(3186), - [anon_sym_type] = ACTIONS(3186), - [anon_sym_namespace] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_typeof] = ACTIONS(3186), - [anon_sym_import] = ACTIONS(3186), - [anon_sym_with] = ACTIONS(3186), - [anon_sym_var] = ACTIONS(3186), - [anon_sym_let] = ACTIONS(3186), - [anon_sym_const] = ACTIONS(3186), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(3186), - [anon_sym_await] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_try] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [anon_sym_debugger] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_throw] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_case] = ACTIONS(3186), - [anon_sym_yield] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_LTtemplate_GT] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3186), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_async] = ACTIONS(3186), - [anon_sym_function] = ACTIONS(3186), - [anon_sym_new] = ACTIONS(3186), - [anon_sym_using] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_TILDE] = ACTIONS(3186), - [anon_sym_void] = ACTIONS(3186), - [anon_sym_delete] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3186), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3186), - [sym_number] = ACTIONS(3186), - [sym_private_property_identifier] = ACTIONS(3186), - [sym_this] = ACTIONS(3186), - [sym_super] = ACTIONS(3186), - [sym_true] = ACTIONS(3186), - [sym_false] = ACTIONS(3186), - [sym_null] = ACTIONS(3186), - [sym_undefined] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_readonly] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_declare] = ACTIONS(3186), - [anon_sym_public] = ACTIONS(3186), - [anon_sym_private] = ACTIONS(3186), - [anon_sym_protected] = ACTIONS(3186), - [anon_sym_override] = ACTIONS(3186), - [anon_sym_module] = ACTIONS(3186), - [anon_sym_any] = ACTIONS(3186), - [anon_sym_number] = ACTIONS(3186), - [anon_sym_boolean] = ACTIONS(3186), - [anon_sym_string] = ACTIONS(3186), - [anon_sym_symbol] = ACTIONS(3186), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_abstract] = ACTIONS(3186), - [anon_sym_interface] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), + [1219] = { + [sym_comment] = STATE(1219), + [sym_identifier] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_default] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_typeof] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2125), + [anon_sym_with] = ACTIONS(2125), + [anon_sym_var] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_debugger] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_case] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LTtemplate_GT] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_void] = ACTIONS(2125), + [anon_sym_delete] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2125), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(2125), + [sym_this] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [sym_undefined] = ACTIONS(2125), + [anon_sym_AT] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_readonly] = ACTIONS(2125), + [anon_sym_get] = ACTIONS(2125), + [anon_sym_set] = ACTIONS(2125), + [anon_sym_declare] = ACTIONS(2125), + [anon_sym_public] = ACTIONS(2125), + [anon_sym_private] = ACTIONS(2125), + [anon_sym_protected] = ACTIONS(2125), + [anon_sym_override] = ACTIONS(2125), + [anon_sym_module] = ACTIONS(2125), + [anon_sym_any] = ACTIONS(2125), + [anon_sym_number] = ACTIONS(2125), + [anon_sym_boolean] = ACTIONS(2125), + [anon_sym_string] = ACTIONS(2125), + [anon_sym_symbol] = ACTIONS(2125), + [anon_sym_object] = ACTIONS(2125), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), [sym_html_comment] = ACTIONS(5), }, - [1251] = { - [sym_comment] = STATE(1251), - [ts_builtin_sym_end] = ACTIONS(3398), - [sym_identifier] = ACTIONS(3270), - [anon_sym_export] = ACTIONS(3270), - [anon_sym_type] = ACTIONS(3270), - [anon_sym_namespace] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3270), - [anon_sym_RBRACE] = ACTIONS(3270), - [anon_sym_typeof] = ACTIONS(3270), - [anon_sym_import] = ACTIONS(3270), - [anon_sym_with] = ACTIONS(3270), - [anon_sym_var] = ACTIONS(3270), - [anon_sym_let] = ACTIONS(3270), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_else] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_switch] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3270), - [anon_sym_await] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_do] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_debugger] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3270), - [anon_sym_yield] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_LTtemplate_GT] = ACTIONS(3270), - [anon_sym_DQUOTE] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3270), - [anon_sym_async] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_TILDE] = ACTIONS(3270), - [anon_sym_void] = ACTIONS(3270), - [anon_sym_delete] = ACTIONS(3270), - [anon_sym_PLUS_PLUS] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3270), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3270), - [sym_number] = ACTIONS(3270), - [sym_private_property_identifier] = ACTIONS(3270), - [sym_this] = ACTIONS(3270), - [sym_super] = ACTIONS(3270), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [sym_null] = ACTIONS(3270), - [sym_undefined] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_readonly] = ACTIONS(3270), - [anon_sym_get] = ACTIONS(3270), - [anon_sym_set] = ACTIONS(3270), - [anon_sym_declare] = ACTIONS(3270), - [anon_sym_public] = ACTIONS(3270), - [anon_sym_private] = ACTIONS(3270), - [anon_sym_protected] = ACTIONS(3270), - [anon_sym_override] = ACTIONS(3270), - [anon_sym_module] = ACTIONS(3270), - [anon_sym_any] = ACTIONS(3270), - [anon_sym_number] = ACTIONS(3270), - [anon_sym_boolean] = ACTIONS(3270), - [anon_sym_string] = ACTIONS(3270), - [anon_sym_symbol] = ACTIONS(3270), - [anon_sym_object] = ACTIONS(3270), - [anon_sym_abstract] = ACTIONS(3270), - [anon_sym_interface] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), + [1220] = { + [sym_comment] = STATE(1220), + [sym_identifier] = ACTIONS(2163), + [anon_sym_export] = ACTIONS(2163), + [anon_sym_default] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2163), + [anon_sym_namespace] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_typeof] = ACTIONS(2163), + [anon_sym_import] = ACTIONS(2163), + [anon_sym_with] = ACTIONS(2163), + [anon_sym_var] = ACTIONS(2163), + [anon_sym_let] = ACTIONS(2163), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_switch] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_await] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2163), + [anon_sym_do] = ACTIONS(2163), + [anon_sym_try] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_debugger] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_throw] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_case] = ACTIONS(2163), + [anon_sym_yield] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2163), + [anon_sym_LTtemplate_GT] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [anon_sym_SQUOTE] = ACTIONS(2163), + [anon_sym_class] = ACTIONS(2163), + [anon_sym_async] = ACTIONS(2163), + [anon_sym_function] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2163), + [anon_sym_void] = ACTIONS(2163), + [anon_sym_delete] = ACTIONS(2163), + [anon_sym_PLUS_PLUS] = ACTIONS(2163), + [anon_sym_DASH_DASH] = ACTIONS(2163), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2163), + [sym_number] = ACTIONS(2163), + [sym_private_property_identifier] = ACTIONS(2163), + [sym_this] = ACTIONS(2163), + [sym_super] = ACTIONS(2163), + [sym_true] = ACTIONS(2163), + [sym_false] = ACTIONS(2163), + [sym_null] = ACTIONS(2163), + [sym_undefined] = ACTIONS(2163), + [anon_sym_AT] = ACTIONS(2163), + [anon_sym_static] = ACTIONS(2163), + [anon_sym_readonly] = ACTIONS(2163), + [anon_sym_get] = ACTIONS(2163), + [anon_sym_set] = ACTIONS(2163), + [anon_sym_declare] = ACTIONS(2163), + [anon_sym_public] = ACTIONS(2163), + [anon_sym_private] = ACTIONS(2163), + [anon_sym_protected] = ACTIONS(2163), + [anon_sym_override] = ACTIONS(2163), + [anon_sym_module] = ACTIONS(2163), + [anon_sym_any] = ACTIONS(2163), + [anon_sym_number] = ACTIONS(2163), + [anon_sym_boolean] = ACTIONS(2163), + [anon_sym_string] = ACTIONS(2163), + [anon_sym_symbol] = ACTIONS(2163), + [anon_sym_object] = ACTIONS(2163), + [anon_sym_abstract] = ACTIONS(2163), + [anon_sym_interface] = ACTIONS(2163), + [anon_sym_enum] = ACTIONS(2163), [sym_html_comment] = ACTIONS(5), }, - [1252] = { - [sym_comment] = STATE(1252), - [sym_identifier] = ACTIONS(3250), - [anon_sym_export] = ACTIONS(3250), - [anon_sym_default] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_namespace] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3250), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_typeof] = ACTIONS(3250), - [anon_sym_import] = ACTIONS(3250), - [anon_sym_with] = ACTIONS(3250), - [anon_sym_var] = ACTIONS(3250), - [anon_sym_let] = ACTIONS(3250), - [anon_sym_const] = ACTIONS(3250), - [anon_sym_BANG] = ACTIONS(3250), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_switch] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_await] = ACTIONS(3250), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_do] = ACTIONS(3250), - [anon_sym_try] = ACTIONS(3250), - [anon_sym_break] = ACTIONS(3250), - [anon_sym_continue] = ACTIONS(3250), - [anon_sym_debugger] = ACTIONS(3250), - [anon_sym_return] = ACTIONS(3250), - [anon_sym_throw] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_case] = ACTIONS(3250), - [anon_sym_yield] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_LTtemplate_GT] = ACTIONS(3250), - [anon_sym_DQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_class] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_function] = ACTIONS(3250), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_using] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_SLASH] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_TILDE] = ACTIONS(3250), - [anon_sym_void] = ACTIONS(3250), - [anon_sym_delete] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3250), - [sym_number] = ACTIONS(3250), - [sym_private_property_identifier] = ACTIONS(3250), - [sym_this] = ACTIONS(3250), - [sym_super] = ACTIONS(3250), - [sym_true] = ACTIONS(3250), - [sym_false] = ACTIONS(3250), - [sym_null] = ACTIONS(3250), - [sym_undefined] = ACTIONS(3250), - [anon_sym_AT] = ACTIONS(3250), - [anon_sym_static] = ACTIONS(3250), - [anon_sym_readonly] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3250), - [anon_sym_set] = ACTIONS(3250), - [anon_sym_declare] = ACTIONS(3250), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_protected] = ACTIONS(3250), - [anon_sym_override] = ACTIONS(3250), - [anon_sym_module] = ACTIONS(3250), - [anon_sym_any] = ACTIONS(3250), - [anon_sym_number] = ACTIONS(3250), - [anon_sym_boolean] = ACTIONS(3250), - [anon_sym_string] = ACTIONS(3250), - [anon_sym_symbol] = ACTIONS(3250), - [anon_sym_object] = ACTIONS(3250), - [anon_sym_abstract] = ACTIONS(3250), - [anon_sym_interface] = ACTIONS(3250), - [anon_sym_enum] = ACTIONS(3250), + [1221] = { + [sym_comment] = STATE(1221), + [sym_identifier] = ACTIONS(3330), + [anon_sym_export] = ACTIONS(3330), + [anon_sym_default] = ACTIONS(3330), + [anon_sym_type] = ACTIONS(3330), + [anon_sym_namespace] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_typeof] = ACTIONS(3330), + [anon_sym_import] = ACTIONS(3330), + [anon_sym_with] = ACTIONS(3330), + [anon_sym_var] = ACTIONS(3330), + [anon_sym_let] = ACTIONS(3330), + [anon_sym_const] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_if] = ACTIONS(3330), + [anon_sym_switch] = ACTIONS(3330), + [anon_sym_for] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_await] = ACTIONS(3330), + [anon_sym_while] = ACTIONS(3330), + [anon_sym_do] = ACTIONS(3330), + [anon_sym_try] = ACTIONS(3330), + [anon_sym_break] = ACTIONS(3330), + [anon_sym_continue] = ACTIONS(3330), + [anon_sym_debugger] = ACTIONS(3330), + [anon_sym_return] = ACTIONS(3330), + [anon_sym_throw] = ACTIONS(3330), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_case] = ACTIONS(3330), + [anon_sym_yield] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_LTtemplate_GT] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_async] = ACTIONS(3330), + [anon_sym_function] = ACTIONS(3330), + [anon_sym_new] = ACTIONS(3330), + [anon_sym_using] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_void] = ACTIONS(3330), + [anon_sym_delete] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3330), + [sym_number] = ACTIONS(3330), + [sym_private_property_identifier] = ACTIONS(3330), + [sym_this] = ACTIONS(3330), + [sym_super] = ACTIONS(3330), + [sym_true] = ACTIONS(3330), + [sym_false] = ACTIONS(3330), + [sym_null] = ACTIONS(3330), + [sym_undefined] = ACTIONS(3330), + [anon_sym_AT] = ACTIONS(3330), + [anon_sym_static] = ACTIONS(3330), + [anon_sym_readonly] = ACTIONS(3330), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3330), + [anon_sym_declare] = ACTIONS(3330), + [anon_sym_public] = ACTIONS(3330), + [anon_sym_private] = ACTIONS(3330), + [anon_sym_protected] = ACTIONS(3330), + [anon_sym_override] = ACTIONS(3330), + [anon_sym_module] = ACTIONS(3330), + [anon_sym_any] = ACTIONS(3330), + [anon_sym_number] = ACTIONS(3330), + [anon_sym_boolean] = ACTIONS(3330), + [anon_sym_string] = ACTIONS(3330), + [anon_sym_symbol] = ACTIONS(3330), + [anon_sym_object] = ACTIONS(3330), + [anon_sym_abstract] = ACTIONS(3330), + [anon_sym_interface] = ACTIONS(3330), + [anon_sym_enum] = ACTIONS(3330), [sym_html_comment] = ACTIONS(5), }, - [1253] = { - [sym_comment] = STATE(1253), - [ts_builtin_sym_end] = ACTIONS(3400), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3128), - [anon_sym_RBRACE] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3128), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3128), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LTtemplate_GT] = ACTIONS(3128), - [anon_sym_DQUOTE] = ACTIONS(3128), - [anon_sym_SQUOTE] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_using] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3128), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3128), + [1222] = { + [sym_comment] = STATE(1222), + [sym_identifier] = ACTIONS(3346), + [anon_sym_export] = ACTIONS(3346), + [anon_sym_default] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3346), + [anon_sym_namespace] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_typeof] = ACTIONS(3346), + [anon_sym_import] = ACTIONS(3346), + [anon_sym_with] = ACTIONS(3346), + [anon_sym_var] = ACTIONS(3346), + [anon_sym_let] = ACTIONS(3346), + [anon_sym_const] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_switch] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_await] = ACTIONS(3346), + [anon_sym_while] = ACTIONS(3346), + [anon_sym_do] = ACTIONS(3346), + [anon_sym_try] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_debugger] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_throw] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_case] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_LTtemplate_GT] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3346), + [anon_sym_class] = ACTIONS(3346), + [anon_sym_async] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3346), + [anon_sym_using] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_void] = ACTIONS(3346), + [anon_sym_delete] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3128), - [sym_number] = ACTIONS(3128), - [sym_private_property_identifier] = ACTIONS(3128), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3128), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_override] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [anon_sym_BQUOTE] = ACTIONS(3346), + [sym_number] = ACTIONS(3346), + [sym_private_property_identifier] = ACTIONS(3346), + [sym_this] = ACTIONS(3346), + [sym_super] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_null] = ACTIONS(3346), + [sym_undefined] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_static] = ACTIONS(3346), + [anon_sym_readonly] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_declare] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_override] = ACTIONS(3346), + [anon_sym_module] = ACTIONS(3346), + [anon_sym_any] = ACTIONS(3346), + [anon_sym_number] = ACTIONS(3346), + [anon_sym_boolean] = ACTIONS(3346), + [anon_sym_string] = ACTIONS(3346), + [anon_sym_symbol] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_interface] = ACTIONS(3346), + [anon_sym_enum] = ACTIONS(3346), [sym_html_comment] = ACTIONS(5), }, - [1254] = { - [sym_comment] = STATE(1254), - [ts_builtin_sym_end] = ACTIONS(3402), - [sym_identifier] = ACTIONS(3134), - [anon_sym_export] = ACTIONS(3134), - [anon_sym_type] = ACTIONS(3134), - [anon_sym_namespace] = ACTIONS(3134), - [anon_sym_LBRACE] = ACTIONS(3134), - [anon_sym_RBRACE] = ACTIONS(3134), - [anon_sym_typeof] = ACTIONS(3134), - [anon_sym_import] = ACTIONS(3134), - [anon_sym_with] = ACTIONS(3134), - [anon_sym_var] = ACTIONS(3134), - [anon_sym_let] = ACTIONS(3134), - [anon_sym_const] = ACTIONS(3134), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_else] = ACTIONS(3134), - [anon_sym_if] = ACTIONS(3134), - [anon_sym_switch] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(3134), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_await] = ACTIONS(3134), - [anon_sym_while] = ACTIONS(3134), - [anon_sym_do] = ACTIONS(3134), - [anon_sym_try] = ACTIONS(3134), - [anon_sym_break] = ACTIONS(3134), - [anon_sym_continue] = ACTIONS(3134), - [anon_sym_debugger] = ACTIONS(3134), - [anon_sym_return] = ACTIONS(3134), - [anon_sym_throw] = ACTIONS(3134), - [anon_sym_SEMI] = ACTIONS(3134), - [anon_sym_yield] = ACTIONS(3134), - [anon_sym_LBRACK] = ACTIONS(3134), - [anon_sym_LTtemplate_GT] = ACTIONS(3134), - [anon_sym_DQUOTE] = ACTIONS(3134), - [anon_sym_SQUOTE] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3134), - [anon_sym_async] = ACTIONS(3134), - [anon_sym_function] = ACTIONS(3134), - [anon_sym_new] = ACTIONS(3134), - [anon_sym_using] = ACTIONS(3134), - [anon_sym_PLUS] = ACTIONS(3134), - [anon_sym_DASH] = ACTIONS(3134), - [anon_sym_SLASH] = ACTIONS(3134), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_TILDE] = ACTIONS(3134), - [anon_sym_void] = ACTIONS(3134), - [anon_sym_delete] = ACTIONS(3134), - [anon_sym_PLUS_PLUS] = ACTIONS(3134), - [anon_sym_DASH_DASH] = ACTIONS(3134), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3134), - [sym_number] = ACTIONS(3134), - [sym_private_property_identifier] = ACTIONS(3134), - [sym_this] = ACTIONS(3134), - [sym_super] = ACTIONS(3134), - [sym_true] = ACTIONS(3134), - [sym_false] = ACTIONS(3134), - [sym_null] = ACTIONS(3134), - [sym_undefined] = ACTIONS(3134), - [anon_sym_AT] = ACTIONS(3134), - [anon_sym_static] = ACTIONS(3134), - [anon_sym_readonly] = ACTIONS(3134), - [anon_sym_get] = ACTIONS(3134), - [anon_sym_set] = ACTIONS(3134), - [anon_sym_declare] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3134), - [anon_sym_private] = ACTIONS(3134), - [anon_sym_protected] = ACTIONS(3134), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_module] = ACTIONS(3134), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_interface] = ACTIONS(3134), - [anon_sym_enum] = ACTIONS(3134), + [1223] = { + [sym_comment] = STATE(1223), + [ts_builtin_sym_end] = ACTIONS(2127), + [sym_identifier] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_typeof] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2125), + [anon_sym_with] = ACTIONS(2125), + [anon_sym_var] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_debugger] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LTtemplate_GT] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_void] = ACTIONS(2125), + [anon_sym_delete] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2125), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(2125), + [sym_this] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [sym_undefined] = ACTIONS(2125), + [anon_sym_AT] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_readonly] = ACTIONS(2125), + [anon_sym_get] = ACTIONS(2125), + [anon_sym_set] = ACTIONS(2125), + [anon_sym_declare] = ACTIONS(2125), + [anon_sym_public] = ACTIONS(2125), + [anon_sym_private] = ACTIONS(2125), + [anon_sym_protected] = ACTIONS(2125), + [anon_sym_override] = ACTIONS(2125), + [anon_sym_module] = ACTIONS(2125), + [anon_sym_any] = ACTIONS(2125), + [anon_sym_number] = ACTIONS(2125), + [anon_sym_boolean] = ACTIONS(2125), + [anon_sym_string] = ACTIONS(2125), + [anon_sym_symbol] = ACTIONS(2125), + [anon_sym_object] = ACTIONS(2125), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), + [sym__automatic_semicolon] = ACTIONS(2127), [sym_html_comment] = ACTIONS(5), }, - [1255] = { - [sym_comment] = STATE(1255), - [ts_builtin_sym_end] = ACTIONS(3404), - [sym_identifier] = ACTIONS(3136), - [anon_sym_export] = ACTIONS(3136), - [anon_sym_type] = ACTIONS(3136), - [anon_sym_namespace] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(3136), - [anon_sym_RBRACE] = ACTIONS(3136), - [anon_sym_typeof] = ACTIONS(3136), - [anon_sym_import] = ACTIONS(3136), - [anon_sym_with] = ACTIONS(3136), - [anon_sym_var] = ACTIONS(3136), - [anon_sym_let] = ACTIONS(3136), - [anon_sym_const] = ACTIONS(3136), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_if] = ACTIONS(3136), - [anon_sym_switch] = ACTIONS(3136), - [anon_sym_for] = ACTIONS(3136), - [anon_sym_LPAREN] = ACTIONS(3136), - [anon_sym_await] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_do] = ACTIONS(3136), - [anon_sym_try] = ACTIONS(3136), - [anon_sym_break] = ACTIONS(3136), - [anon_sym_continue] = ACTIONS(3136), - [anon_sym_debugger] = ACTIONS(3136), - [anon_sym_return] = ACTIONS(3136), - [anon_sym_throw] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3136), - [anon_sym_yield] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_LTtemplate_GT] = ACTIONS(3136), - [anon_sym_DQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_async] = ACTIONS(3136), - [anon_sym_function] = ACTIONS(3136), - [anon_sym_new] = ACTIONS(3136), - [anon_sym_using] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_TILDE] = ACTIONS(3136), - [anon_sym_void] = ACTIONS(3136), - [anon_sym_delete] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3136), + [1224] = { + [sym_comment] = STATE(1224), + [ts_builtin_sym_end] = ACTIONS(3416), + [sym_identifier] = ACTIONS(3146), + [anon_sym_export] = ACTIONS(3146), + [anon_sym_type] = ACTIONS(3146), + [anon_sym_namespace] = ACTIONS(3146), + [anon_sym_LBRACE] = ACTIONS(3146), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(3146), + [anon_sym_with] = ACTIONS(3146), + [anon_sym_var] = ACTIONS(3146), + [anon_sym_let] = ACTIONS(3146), + [anon_sym_const] = ACTIONS(3146), + [anon_sym_BANG] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3146), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_switch] = ACTIONS(3146), + [anon_sym_for] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_await] = ACTIONS(3146), + [anon_sym_while] = ACTIONS(3146), + [anon_sym_do] = ACTIONS(3146), + [anon_sym_try] = ACTIONS(3146), + [anon_sym_break] = ACTIONS(3146), + [anon_sym_continue] = ACTIONS(3146), + [anon_sym_debugger] = ACTIONS(3146), + [anon_sym_return] = ACTIONS(3146), + [anon_sym_throw] = ACTIONS(3146), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_yield] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3146), + [anon_sym_LTtemplate_GT] = ACTIONS(3146), + [anon_sym_DQUOTE] = ACTIONS(3146), + [anon_sym_SQUOTE] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(3146), + [anon_sym_function] = ACTIONS(3146), + [anon_sym_new] = ACTIONS(3146), + [anon_sym_using] = ACTIONS(3146), + [anon_sym_PLUS] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3146), + [anon_sym_SLASH] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(3146), + [anon_sym_TILDE] = ACTIONS(3146), + [anon_sym_void] = ACTIONS(3146), + [anon_sym_delete] = ACTIONS(3146), + [anon_sym_PLUS_PLUS] = ACTIONS(3146), + [anon_sym_DASH_DASH] = ACTIONS(3146), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3136), - [sym_private_property_identifier] = ACTIONS(3136), - [sym_this] = ACTIONS(3136), - [sym_super] = ACTIONS(3136), - [sym_true] = ACTIONS(3136), - [sym_false] = ACTIONS(3136), - [sym_null] = ACTIONS(3136), - [sym_undefined] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3136), - [anon_sym_static] = ACTIONS(3136), - [anon_sym_readonly] = ACTIONS(3136), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_declare] = ACTIONS(3136), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [anon_sym_override] = ACTIONS(3136), - [anon_sym_module] = ACTIONS(3136), - [anon_sym_any] = ACTIONS(3136), - [anon_sym_number] = ACTIONS(3136), - [anon_sym_boolean] = ACTIONS(3136), - [anon_sym_string] = ACTIONS(3136), - [anon_sym_symbol] = ACTIONS(3136), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_abstract] = ACTIONS(3136), - [anon_sym_interface] = ACTIONS(3136), - [anon_sym_enum] = ACTIONS(3136), + [anon_sym_BQUOTE] = ACTIONS(3146), + [sym_number] = ACTIONS(3146), + [sym_private_property_identifier] = ACTIONS(3146), + [sym_this] = ACTIONS(3146), + [sym_super] = ACTIONS(3146), + [sym_true] = ACTIONS(3146), + [sym_false] = ACTIONS(3146), + [sym_null] = ACTIONS(3146), + [sym_undefined] = ACTIONS(3146), + [anon_sym_AT] = ACTIONS(3146), + [anon_sym_static] = ACTIONS(3146), + [anon_sym_readonly] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3146), + [anon_sym_set] = ACTIONS(3146), + [anon_sym_declare] = ACTIONS(3146), + [anon_sym_public] = ACTIONS(3146), + [anon_sym_private] = ACTIONS(3146), + [anon_sym_protected] = ACTIONS(3146), + [anon_sym_override] = ACTIONS(3146), + [anon_sym_module] = ACTIONS(3146), + [anon_sym_any] = ACTIONS(3146), + [anon_sym_number] = ACTIONS(3146), + [anon_sym_boolean] = ACTIONS(3146), + [anon_sym_string] = ACTIONS(3146), + [anon_sym_symbol] = ACTIONS(3146), + [anon_sym_object] = ACTIONS(3146), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_interface] = ACTIONS(3146), + [anon_sym_enum] = ACTIONS(3146), [sym_html_comment] = ACTIONS(5), }, - [1256] = { - [sym_comment] = STATE(1256), - [sym_identifier] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3184), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_type] = ACTIONS(3184), - [anon_sym_namespace] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_typeof] = ACTIONS(3184), - [anon_sym_import] = ACTIONS(3184), - [anon_sym_with] = ACTIONS(3184), - [anon_sym_var] = ACTIONS(3184), - [anon_sym_let] = ACTIONS(3184), - [anon_sym_const] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_if] = ACTIONS(3184), - [anon_sym_switch] = ACTIONS(3184), - [anon_sym_for] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_await] = ACTIONS(3184), - [anon_sym_while] = ACTIONS(3184), - [anon_sym_do] = ACTIONS(3184), - [anon_sym_try] = ACTIONS(3184), - [anon_sym_break] = ACTIONS(3184), - [anon_sym_continue] = ACTIONS(3184), - [anon_sym_debugger] = ACTIONS(3184), - [anon_sym_return] = ACTIONS(3184), - [anon_sym_throw] = ACTIONS(3184), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym_case] = ACTIONS(3184), - [anon_sym_yield] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3184), - [anon_sym_LTtemplate_GT] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_class] = ACTIONS(3184), - [anon_sym_async] = ACTIONS(3184), - [anon_sym_function] = ACTIONS(3184), - [anon_sym_new] = ACTIONS(3184), - [anon_sym_using] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3184), - [anon_sym_SLASH] = ACTIONS(3184), - [anon_sym_LT] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_void] = ACTIONS(3184), - [anon_sym_delete] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), + [1225] = { + [sym_comment] = STATE(1225), + [ts_builtin_sym_end] = ACTIONS(3418), + [sym_identifier] = ACTIONS(3238), + [anon_sym_export] = ACTIONS(3238), + [anon_sym_type] = ACTIONS(3238), + [anon_sym_namespace] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_typeof] = ACTIONS(3238), + [anon_sym_import] = ACTIONS(3238), + [anon_sym_with] = ACTIONS(3238), + [anon_sym_var] = ACTIONS(3238), + [anon_sym_let] = ACTIONS(3238), + [anon_sym_const] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3238), + [anon_sym_else] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(3238), + [anon_sym_switch] = ACTIONS(3238), + [anon_sym_for] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_await] = ACTIONS(3238), + [anon_sym_while] = ACTIONS(3238), + [anon_sym_do] = ACTIONS(3238), + [anon_sym_try] = ACTIONS(3238), + [anon_sym_break] = ACTIONS(3238), + [anon_sym_continue] = ACTIONS(3238), + [anon_sym_debugger] = ACTIONS(3238), + [anon_sym_return] = ACTIONS(3238), + [anon_sym_throw] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_yield] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_LTtemplate_GT] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3238), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_class] = ACTIONS(3238), + [anon_sym_async] = ACTIONS(3238), + [anon_sym_function] = ACTIONS(3238), + [anon_sym_new] = ACTIONS(3238), + [anon_sym_using] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3238), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_SLASH] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3238), + [anon_sym_void] = ACTIONS(3238), + [anon_sym_delete] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3184), - [sym_private_property_identifier] = ACTIONS(3184), - [sym_this] = ACTIONS(3184), - [sym_super] = ACTIONS(3184), - [sym_true] = ACTIONS(3184), - [sym_false] = ACTIONS(3184), - [sym_null] = ACTIONS(3184), - [sym_undefined] = ACTIONS(3184), - [anon_sym_AT] = ACTIONS(3184), - [anon_sym_static] = ACTIONS(3184), - [anon_sym_readonly] = ACTIONS(3184), - [anon_sym_get] = ACTIONS(3184), - [anon_sym_set] = ACTIONS(3184), - [anon_sym_declare] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_protected] = ACTIONS(3184), - [anon_sym_override] = ACTIONS(3184), - [anon_sym_module] = ACTIONS(3184), - [anon_sym_any] = ACTIONS(3184), - [anon_sym_number] = ACTIONS(3184), - [anon_sym_boolean] = ACTIONS(3184), - [anon_sym_string] = ACTIONS(3184), - [anon_sym_symbol] = ACTIONS(3184), - [anon_sym_object] = ACTIONS(3184), - [anon_sym_abstract] = ACTIONS(3184), - [anon_sym_interface] = ACTIONS(3184), - [anon_sym_enum] = ACTIONS(3184), + [anon_sym_BQUOTE] = ACTIONS(3238), + [sym_number] = ACTIONS(3238), + [sym_private_property_identifier] = ACTIONS(3238), + [sym_this] = ACTIONS(3238), + [sym_super] = ACTIONS(3238), + [sym_true] = ACTIONS(3238), + [sym_false] = ACTIONS(3238), + [sym_null] = ACTIONS(3238), + [sym_undefined] = ACTIONS(3238), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_static] = ACTIONS(3238), + [anon_sym_readonly] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3238), + [anon_sym_set] = ACTIONS(3238), + [anon_sym_declare] = ACTIONS(3238), + [anon_sym_public] = ACTIONS(3238), + [anon_sym_private] = ACTIONS(3238), + [anon_sym_protected] = ACTIONS(3238), + [anon_sym_override] = ACTIONS(3238), + [anon_sym_module] = ACTIONS(3238), + [anon_sym_any] = ACTIONS(3238), + [anon_sym_number] = ACTIONS(3238), + [anon_sym_boolean] = ACTIONS(3238), + [anon_sym_string] = ACTIONS(3238), + [anon_sym_symbol] = ACTIONS(3238), + [anon_sym_object] = ACTIONS(3238), + [anon_sym_abstract] = ACTIONS(3238), + [anon_sym_interface] = ACTIONS(3238), + [anon_sym_enum] = ACTIONS(3238), [sym_html_comment] = ACTIONS(5), }, - [1257] = { - [sym_comment] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(3406), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_RBRACE] = ACTIONS(3124), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_LTtemplate_GT] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(3124), - [anon_sym_SQUOTE] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_using] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3124), - [anon_sym_DASH_DASH] = ACTIONS(3124), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3124), - [sym_number] = ACTIONS(3124), - [sym_private_property_identifier] = ACTIONS(3124), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3124), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_object] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [1226] = { + [sym_comment] = STATE(1226), + [ts_builtin_sym_end] = ACTIONS(3420), + [sym_identifier] = ACTIONS(3350), + [anon_sym_export] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3350), + [anon_sym_namespace] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_typeof] = ACTIONS(3350), + [anon_sym_import] = ACTIONS(3350), + [anon_sym_with] = ACTIONS(3350), + [anon_sym_var] = ACTIONS(3350), + [anon_sym_let] = ACTIONS(3350), + [anon_sym_const] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_else] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_switch] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_await] = ACTIONS(3350), + [anon_sym_while] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_try] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_debugger] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_throw] = ACTIONS(3350), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_yield] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_LTtemplate_GT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_class] = ACTIONS(3350), + [anon_sym_async] = ACTIONS(3350), + [anon_sym_function] = ACTIONS(3350), + [anon_sym_new] = ACTIONS(3350), + [anon_sym_using] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_void] = ACTIONS(3350), + [anon_sym_delete] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3350), + [sym_number] = ACTIONS(3350), + [sym_private_property_identifier] = ACTIONS(3350), + [sym_this] = ACTIONS(3350), + [sym_super] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_null] = ACTIONS(3350), + [sym_undefined] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_static] = ACTIONS(3350), + [anon_sym_readonly] = ACTIONS(3350), + [anon_sym_get] = ACTIONS(3350), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_declare] = ACTIONS(3350), + [anon_sym_public] = ACTIONS(3350), + [anon_sym_private] = ACTIONS(3350), + [anon_sym_protected] = ACTIONS(3350), + [anon_sym_override] = ACTIONS(3350), + [anon_sym_module] = ACTIONS(3350), + [anon_sym_any] = ACTIONS(3350), + [anon_sym_number] = ACTIONS(3350), + [anon_sym_boolean] = ACTIONS(3350), + [anon_sym_string] = ACTIONS(3350), + [anon_sym_symbol] = ACTIONS(3350), + [anon_sym_object] = ACTIONS(3350), + [anon_sym_abstract] = ACTIONS(3350), + [anon_sym_interface] = ACTIONS(3350), + [anon_sym_enum] = ACTIONS(3350), [sym_html_comment] = ACTIONS(5), }, - [1258] = { - [sym_comment] = STATE(1258), - [ts_builtin_sym_end] = ACTIONS(3408), - [sym_identifier] = ACTIONS(3168), - [anon_sym_export] = ACTIONS(3168), - [anon_sym_type] = ACTIONS(3168), - [anon_sym_namespace] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(3168), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_typeof] = ACTIONS(3168), - [anon_sym_import] = ACTIONS(3168), - [anon_sym_with] = ACTIONS(3168), - [anon_sym_var] = ACTIONS(3168), - [anon_sym_let] = ACTIONS(3168), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_switch] = ACTIONS(3168), - [anon_sym_for] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3168), - [anon_sym_await] = ACTIONS(3168), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_do] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_debugger] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_yield] = ACTIONS(3168), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_LTtemplate_GT] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3168), - [anon_sym_class] = ACTIONS(3168), - [anon_sym_async] = ACTIONS(3168), - [anon_sym_function] = ACTIONS(3168), - [anon_sym_new] = ACTIONS(3168), - [anon_sym_using] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3168), - [anon_sym_SLASH] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_delete] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3168), - [sym_number] = ACTIONS(3168), - [sym_private_property_identifier] = ACTIONS(3168), - [sym_this] = ACTIONS(3168), - [sym_super] = ACTIONS(3168), - [sym_true] = ACTIONS(3168), - [sym_false] = ACTIONS(3168), - [sym_null] = ACTIONS(3168), - [sym_undefined] = ACTIONS(3168), - [anon_sym_AT] = ACTIONS(3168), - [anon_sym_static] = ACTIONS(3168), - [anon_sym_readonly] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3168), - [anon_sym_set] = ACTIONS(3168), - [anon_sym_declare] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_override] = ACTIONS(3168), - [anon_sym_module] = ACTIONS(3168), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_interface] = ACTIONS(3168), - [anon_sym_enum] = ACTIONS(3168), + [1227] = { + [sym_comment] = STATE(1227), + [ts_builtin_sym_end] = ACTIONS(3422), + [sym_identifier] = ACTIONS(3260), + [anon_sym_export] = ACTIONS(3260), + [anon_sym_type] = ACTIONS(3260), + [anon_sym_namespace] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_RBRACE] = ACTIONS(3260), + [anon_sym_typeof] = ACTIONS(3260), + [anon_sym_import] = ACTIONS(3260), + [anon_sym_with] = ACTIONS(3260), + [anon_sym_var] = ACTIONS(3260), + [anon_sym_let] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_BANG] = ACTIONS(3260), + [anon_sym_else] = ACTIONS(3260), + [anon_sym_if] = ACTIONS(3260), + [anon_sym_switch] = ACTIONS(3260), + [anon_sym_for] = ACTIONS(3260), + [anon_sym_LPAREN] = ACTIONS(3260), + [anon_sym_await] = ACTIONS(3260), + [anon_sym_while] = ACTIONS(3260), + [anon_sym_do] = ACTIONS(3260), + [anon_sym_try] = ACTIONS(3260), + [anon_sym_break] = ACTIONS(3260), + [anon_sym_continue] = ACTIONS(3260), + [anon_sym_debugger] = ACTIONS(3260), + [anon_sym_return] = ACTIONS(3260), + [anon_sym_throw] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_LTtemplate_GT] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3260), + [anon_sym_class] = ACTIONS(3260), + [anon_sym_async] = ACTIONS(3260), + [anon_sym_function] = ACTIONS(3260), + [anon_sym_new] = ACTIONS(3260), + [anon_sym_using] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_void] = ACTIONS(3260), + [anon_sym_delete] = ACTIONS(3260), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3260), + [sym_number] = ACTIONS(3260), + [sym_private_property_identifier] = ACTIONS(3260), + [sym_this] = ACTIONS(3260), + [sym_super] = ACTIONS(3260), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [sym_null] = ACTIONS(3260), + [sym_undefined] = ACTIONS(3260), + [anon_sym_AT] = ACTIONS(3260), + [anon_sym_static] = ACTIONS(3260), + [anon_sym_readonly] = ACTIONS(3260), + [anon_sym_get] = ACTIONS(3260), + [anon_sym_set] = ACTIONS(3260), + [anon_sym_declare] = ACTIONS(3260), + [anon_sym_public] = ACTIONS(3260), + [anon_sym_private] = ACTIONS(3260), + [anon_sym_protected] = ACTIONS(3260), + [anon_sym_override] = ACTIONS(3260), + [anon_sym_module] = ACTIONS(3260), + [anon_sym_any] = ACTIONS(3260), + [anon_sym_number] = ACTIONS(3260), + [anon_sym_boolean] = ACTIONS(3260), + [anon_sym_string] = ACTIONS(3260), + [anon_sym_symbol] = ACTIONS(3260), + [anon_sym_object] = ACTIONS(3260), + [anon_sym_abstract] = ACTIONS(3260), + [anon_sym_interface] = ACTIONS(3260), + [anon_sym_enum] = ACTIONS(3260), [sym_html_comment] = ACTIONS(5), }, - [1259] = { - [sym_comment] = STATE(1259), - [ts_builtin_sym_end] = ACTIONS(3410), - [sym_identifier] = ACTIONS(3140), - [anon_sym_export] = ACTIONS(3140), - [anon_sym_type] = ACTIONS(3140), - [anon_sym_namespace] = ACTIONS(3140), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_typeof] = ACTIONS(3140), - [anon_sym_import] = ACTIONS(3140), - [anon_sym_with] = ACTIONS(3140), - [anon_sym_var] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_const] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3140), - [anon_sym_else] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_switch] = ACTIONS(3140), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_await] = ACTIONS(3140), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_break] = ACTIONS(3140), - [anon_sym_continue] = ACTIONS(3140), - [anon_sym_debugger] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_throw] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LTtemplate_GT] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_SQUOTE] = ACTIONS(3140), - [anon_sym_class] = ACTIONS(3140), - [anon_sym_async] = ACTIONS(3140), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_using] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_SLASH] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3140), - [anon_sym_void] = ACTIONS(3140), - [anon_sym_delete] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), + [1228] = { + [sym_comment] = STATE(1228), + [sym_identifier] = ACTIONS(3138), + [anon_sym_export] = ACTIONS(3138), + [anon_sym_default] = ACTIONS(3138), + [anon_sym_type] = ACTIONS(3138), + [anon_sym_namespace] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_typeof] = ACTIONS(3138), + [anon_sym_import] = ACTIONS(3138), + [anon_sym_with] = ACTIONS(3138), + [anon_sym_var] = ACTIONS(3138), + [anon_sym_let] = ACTIONS(3138), + [anon_sym_const] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3138), + [anon_sym_if] = ACTIONS(3138), + [anon_sym_switch] = ACTIONS(3138), + [anon_sym_for] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3138), + [anon_sym_await] = ACTIONS(3138), + [anon_sym_while] = ACTIONS(3138), + [anon_sym_do] = ACTIONS(3138), + [anon_sym_try] = ACTIONS(3138), + [anon_sym_break] = ACTIONS(3138), + [anon_sym_continue] = ACTIONS(3138), + [anon_sym_debugger] = ACTIONS(3138), + [anon_sym_return] = ACTIONS(3138), + [anon_sym_throw] = ACTIONS(3138), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_case] = ACTIONS(3138), + [anon_sym_yield] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_LTtemplate_GT] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3138), + [anon_sym_SQUOTE] = ACTIONS(3138), + [anon_sym_class] = ACTIONS(3138), + [anon_sym_async] = ACTIONS(3138), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_new] = ACTIONS(3138), + [anon_sym_using] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_TILDE] = ACTIONS(3138), + [anon_sym_void] = ACTIONS(3138), + [anon_sym_delete] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3140), - [sym_number] = ACTIONS(3140), - [sym_private_property_identifier] = ACTIONS(3140), - [sym_this] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_undefined] = ACTIONS(3140), - [anon_sym_AT] = ACTIONS(3140), - [anon_sym_static] = ACTIONS(3140), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3140), - [anon_sym_set] = ACTIONS(3140), - [anon_sym_declare] = ACTIONS(3140), - [anon_sym_public] = ACTIONS(3140), - [anon_sym_private] = ACTIONS(3140), - [anon_sym_protected] = ACTIONS(3140), - [anon_sym_override] = ACTIONS(3140), - [anon_sym_module] = ACTIONS(3140), - [anon_sym_any] = ACTIONS(3140), - [anon_sym_number] = ACTIONS(3140), - [anon_sym_boolean] = ACTIONS(3140), - [anon_sym_string] = ACTIONS(3140), - [anon_sym_symbol] = ACTIONS(3140), - [anon_sym_object] = ACTIONS(3140), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_interface] = ACTIONS(3140), - [anon_sym_enum] = ACTIONS(3140), + [anon_sym_BQUOTE] = ACTIONS(3138), + [sym_number] = ACTIONS(3138), + [sym_private_property_identifier] = ACTIONS(3138), + [sym_this] = ACTIONS(3138), + [sym_super] = ACTIONS(3138), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_AT] = ACTIONS(3138), + [anon_sym_static] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3138), + [anon_sym_set] = ACTIONS(3138), + [anon_sym_declare] = ACTIONS(3138), + [anon_sym_public] = ACTIONS(3138), + [anon_sym_private] = ACTIONS(3138), + [anon_sym_protected] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3138), + [anon_sym_module] = ACTIONS(3138), + [anon_sym_any] = ACTIONS(3138), + [anon_sym_number] = ACTIONS(3138), + [anon_sym_boolean] = ACTIONS(3138), + [anon_sym_string] = ACTIONS(3138), + [anon_sym_symbol] = ACTIONS(3138), + [anon_sym_object] = ACTIONS(3138), + [anon_sym_abstract] = ACTIONS(3138), + [anon_sym_interface] = ACTIONS(3138), + [anon_sym_enum] = ACTIONS(3138), [sym_html_comment] = ACTIONS(5), }, - [1260] = { - [sym_comment] = STATE(1260), - [sym_identifier] = ACTIONS(3182), - [anon_sym_export] = ACTIONS(3182), - [anon_sym_default] = ACTIONS(3182), - [anon_sym_type] = ACTIONS(3182), - [anon_sym_namespace] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3182), - [anon_sym_typeof] = ACTIONS(3182), - [anon_sym_import] = ACTIONS(3182), - [anon_sym_with] = ACTIONS(3182), - [anon_sym_var] = ACTIONS(3182), - [anon_sym_let] = ACTIONS(3182), - [anon_sym_const] = ACTIONS(3182), - [anon_sym_BANG] = ACTIONS(3182), - [anon_sym_if] = ACTIONS(3182), - [anon_sym_switch] = ACTIONS(3182), - [anon_sym_for] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3182), - [anon_sym_await] = ACTIONS(3182), - [anon_sym_while] = ACTIONS(3182), - [anon_sym_do] = ACTIONS(3182), - [anon_sym_try] = ACTIONS(3182), - [anon_sym_break] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(3182), - [anon_sym_debugger] = ACTIONS(3182), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_throw] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3182), - [anon_sym_case] = ACTIONS(3182), - [anon_sym_yield] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_LTtemplate_GT] = ACTIONS(3182), - [anon_sym_DQUOTE] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3182), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_async] = ACTIONS(3182), - [anon_sym_function] = ACTIONS(3182), - [anon_sym_new] = ACTIONS(3182), - [anon_sym_using] = ACTIONS(3182), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_SLASH] = ACTIONS(3182), - [anon_sym_LT] = ACTIONS(3182), - [anon_sym_TILDE] = ACTIONS(3182), - [anon_sym_void] = ACTIONS(3182), - [anon_sym_delete] = ACTIONS(3182), - [anon_sym_PLUS_PLUS] = ACTIONS(3182), - [anon_sym_DASH_DASH] = ACTIONS(3182), + [1229] = { + [sym_comment] = STATE(1229), + [sym_identifier] = ACTIONS(3138), + [anon_sym_export] = ACTIONS(3138), + [anon_sym_default] = ACTIONS(3138), + [anon_sym_type] = ACTIONS(3138), + [anon_sym_namespace] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_typeof] = ACTIONS(3138), + [anon_sym_import] = ACTIONS(3138), + [anon_sym_with] = ACTIONS(3138), + [anon_sym_var] = ACTIONS(3138), + [anon_sym_let] = ACTIONS(3138), + [anon_sym_const] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3138), + [anon_sym_if] = ACTIONS(3138), + [anon_sym_switch] = ACTIONS(3138), + [anon_sym_for] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3138), + [anon_sym_await] = ACTIONS(3138), + [anon_sym_while] = ACTIONS(3138), + [anon_sym_do] = ACTIONS(3138), + [anon_sym_try] = ACTIONS(3138), + [anon_sym_break] = ACTIONS(3138), + [anon_sym_continue] = ACTIONS(3138), + [anon_sym_debugger] = ACTIONS(3138), + [anon_sym_return] = ACTIONS(3138), + [anon_sym_throw] = ACTIONS(3138), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_case] = ACTIONS(3138), + [anon_sym_yield] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_LTtemplate_GT] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3138), + [anon_sym_SQUOTE] = ACTIONS(3138), + [anon_sym_class] = ACTIONS(3138), + [anon_sym_async] = ACTIONS(3138), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_new] = ACTIONS(3138), + [anon_sym_using] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_TILDE] = ACTIONS(3138), + [anon_sym_void] = ACTIONS(3138), + [anon_sym_delete] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3182), - [sym_number] = ACTIONS(3182), - [sym_private_property_identifier] = ACTIONS(3182), - [sym_this] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_true] = ACTIONS(3182), - [sym_false] = ACTIONS(3182), - [sym_null] = ACTIONS(3182), - [sym_undefined] = ACTIONS(3182), - [anon_sym_AT] = ACTIONS(3182), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_readonly] = ACTIONS(3182), - [anon_sym_get] = ACTIONS(3182), - [anon_sym_set] = ACTIONS(3182), - [anon_sym_declare] = ACTIONS(3182), - [anon_sym_public] = ACTIONS(3182), - [anon_sym_private] = ACTIONS(3182), - [anon_sym_protected] = ACTIONS(3182), - [anon_sym_override] = ACTIONS(3182), - [anon_sym_module] = ACTIONS(3182), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_interface] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), - [sym_html_comment] = ACTIONS(5), - }, - [1261] = { - [sym_comment] = STATE(1261), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_default] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_case] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), + [anon_sym_BQUOTE] = ACTIONS(3138), + [sym_number] = ACTIONS(3138), + [sym_private_property_identifier] = ACTIONS(3138), + [sym_this] = ACTIONS(3138), + [sym_super] = ACTIONS(3138), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_AT] = ACTIONS(3138), + [anon_sym_static] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3138), + [anon_sym_set] = ACTIONS(3138), + [anon_sym_declare] = ACTIONS(3138), + [anon_sym_public] = ACTIONS(3138), + [anon_sym_private] = ACTIONS(3138), + [anon_sym_protected] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3138), + [anon_sym_module] = ACTIONS(3138), + [anon_sym_any] = ACTIONS(3138), + [anon_sym_number] = ACTIONS(3138), + [anon_sym_boolean] = ACTIONS(3138), + [anon_sym_string] = ACTIONS(3138), + [anon_sym_symbol] = ACTIONS(3138), + [anon_sym_object] = ACTIONS(3138), + [anon_sym_abstract] = ACTIONS(3138), + [anon_sym_interface] = ACTIONS(3138), + [anon_sym_enum] = ACTIONS(3138), + [sym_html_comment] = ACTIONS(5), + }, + [1230] = { + [sym_comment] = STATE(1230), + [ts_builtin_sym_end] = ACTIONS(3424), + [sym_identifier] = ACTIONS(3148), + [anon_sym_export] = ACTIONS(3148), + [anon_sym_type] = ACTIONS(3148), + [anon_sym_namespace] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3148), + [anon_sym_import] = ACTIONS(3148), + [anon_sym_with] = ACTIONS(3148), + [anon_sym_var] = ACTIONS(3148), + [anon_sym_let] = ACTIONS(3148), + [anon_sym_const] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_switch] = ACTIONS(3148), + [anon_sym_for] = ACTIONS(3148), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_do] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_debugger] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_yield] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LTtemplate_GT] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_async] = ACTIONS(3148), + [anon_sym_function] = ACTIONS(3148), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_using] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3148), + [anon_sym_delete] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_private_property_identifier] = ACTIONS(3148), + [sym_this] = ACTIONS(3148), + [sym_super] = ACTIONS(3148), + [sym_true] = ACTIONS(3148), + [sym_false] = ACTIONS(3148), + [sym_null] = ACTIONS(3148), + [sym_undefined] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3148), + [anon_sym_readonly] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_declare] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_override] = ACTIONS(3148), + [anon_sym_module] = ACTIONS(3148), + [anon_sym_any] = ACTIONS(3148), + [anon_sym_number] = ACTIONS(3148), + [anon_sym_boolean] = ACTIONS(3148), + [anon_sym_string] = ACTIONS(3148), + [anon_sym_symbol] = ACTIONS(3148), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_abstract] = ACTIONS(3148), + [anon_sym_interface] = ACTIONS(3148), + [anon_sym_enum] = ACTIONS(3148), [sym_html_comment] = ACTIONS(5), }, - [1262] = { - [sym_comment] = STATE(1262), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_default] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_case] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), + [1231] = { + [sym_comment] = STATE(1231), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_default] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_case] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym_html_comment] = ACTIONS(5), + }, + [1232] = { + [sym_comment] = STATE(1232), + [sym_identifier] = ACTIONS(3138), + [anon_sym_export] = ACTIONS(3138), + [anon_sym_default] = ACTIONS(3138), + [anon_sym_type] = ACTIONS(3138), + [anon_sym_namespace] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_typeof] = ACTIONS(3138), + [anon_sym_import] = ACTIONS(3138), + [anon_sym_with] = ACTIONS(3138), + [anon_sym_var] = ACTIONS(3138), + [anon_sym_let] = ACTIONS(3138), + [anon_sym_const] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3138), + [anon_sym_if] = ACTIONS(3138), + [anon_sym_switch] = ACTIONS(3138), + [anon_sym_for] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3138), + [anon_sym_await] = ACTIONS(3138), + [anon_sym_while] = ACTIONS(3138), + [anon_sym_do] = ACTIONS(3138), + [anon_sym_try] = ACTIONS(3138), + [anon_sym_break] = ACTIONS(3138), + [anon_sym_continue] = ACTIONS(3138), + [anon_sym_debugger] = ACTIONS(3138), + [anon_sym_return] = ACTIONS(3138), + [anon_sym_throw] = ACTIONS(3138), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_case] = ACTIONS(3138), + [anon_sym_yield] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_LTtemplate_GT] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3138), + [anon_sym_SQUOTE] = ACTIONS(3138), + [anon_sym_class] = ACTIONS(3138), + [anon_sym_async] = ACTIONS(3138), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_new] = ACTIONS(3138), + [anon_sym_using] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_TILDE] = ACTIONS(3138), + [anon_sym_void] = ACTIONS(3138), + [anon_sym_delete] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [anon_sym_BQUOTE] = ACTIONS(3138), + [sym_number] = ACTIONS(3138), + [sym_private_property_identifier] = ACTIONS(3138), + [sym_this] = ACTIONS(3138), + [sym_super] = ACTIONS(3138), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_AT] = ACTIONS(3138), + [anon_sym_static] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3138), + [anon_sym_set] = ACTIONS(3138), + [anon_sym_declare] = ACTIONS(3138), + [anon_sym_public] = ACTIONS(3138), + [anon_sym_private] = ACTIONS(3138), + [anon_sym_protected] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3138), + [anon_sym_module] = ACTIONS(3138), + [anon_sym_any] = ACTIONS(3138), + [anon_sym_number] = ACTIONS(3138), + [anon_sym_boolean] = ACTIONS(3138), + [anon_sym_string] = ACTIONS(3138), + [anon_sym_symbol] = ACTIONS(3138), + [anon_sym_object] = ACTIONS(3138), + [anon_sym_abstract] = ACTIONS(3138), + [anon_sym_interface] = ACTIONS(3138), + [anon_sym_enum] = ACTIONS(3138), [sym_html_comment] = ACTIONS(5), }, - [1263] = { - [sym_comment] = STATE(1263), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1233] = { + [sym_comment] = STATE(1233), + [ts_builtin_sym_end] = ACTIONS(3426), + [sym_identifier] = ACTIONS(3348), + [anon_sym_export] = ACTIONS(3348), + [anon_sym_type] = ACTIONS(3348), + [anon_sym_namespace] = ACTIONS(3348), + [anon_sym_LBRACE] = ACTIONS(3348), + [anon_sym_RBRACE] = ACTIONS(3348), + [anon_sym_typeof] = ACTIONS(3348), + [anon_sym_import] = ACTIONS(3348), + [anon_sym_with] = ACTIONS(3348), + [anon_sym_var] = ACTIONS(3348), + [anon_sym_let] = ACTIONS(3348), + [anon_sym_const] = ACTIONS(3348), + [anon_sym_BANG] = ACTIONS(3348), + [anon_sym_else] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(3348), + [anon_sym_switch] = ACTIONS(3348), + [anon_sym_for] = ACTIONS(3348), + [anon_sym_LPAREN] = ACTIONS(3348), + [anon_sym_await] = ACTIONS(3348), + [anon_sym_while] = ACTIONS(3348), + [anon_sym_do] = ACTIONS(3348), + [anon_sym_try] = ACTIONS(3348), + [anon_sym_break] = ACTIONS(3348), + [anon_sym_continue] = ACTIONS(3348), + [anon_sym_debugger] = ACTIONS(3348), + [anon_sym_return] = ACTIONS(3348), + [anon_sym_throw] = ACTIONS(3348), + [anon_sym_SEMI] = ACTIONS(3348), + [anon_sym_yield] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3348), + [anon_sym_LTtemplate_GT] = ACTIONS(3348), + [anon_sym_DQUOTE] = ACTIONS(3348), + [anon_sym_SQUOTE] = ACTIONS(3348), + [anon_sym_class] = ACTIONS(3348), + [anon_sym_async] = ACTIONS(3348), + [anon_sym_function] = ACTIONS(3348), + [anon_sym_new] = ACTIONS(3348), + [anon_sym_using] = ACTIONS(3348), + [anon_sym_PLUS] = ACTIONS(3348), + [anon_sym_DASH] = ACTIONS(3348), + [anon_sym_SLASH] = ACTIONS(3348), + [anon_sym_LT] = ACTIONS(3348), + [anon_sym_TILDE] = ACTIONS(3348), + [anon_sym_void] = ACTIONS(3348), + [anon_sym_delete] = ACTIONS(3348), + [anon_sym_PLUS_PLUS] = ACTIONS(3348), + [anon_sym_DASH_DASH] = ACTIONS(3348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3348), + [sym_number] = ACTIONS(3348), + [sym_private_property_identifier] = ACTIONS(3348), + [sym_this] = ACTIONS(3348), + [sym_super] = ACTIONS(3348), + [sym_true] = ACTIONS(3348), + [sym_false] = ACTIONS(3348), + [sym_null] = ACTIONS(3348), + [sym_undefined] = ACTIONS(3348), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_static] = ACTIONS(3348), + [anon_sym_readonly] = ACTIONS(3348), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3348), + [anon_sym_declare] = ACTIONS(3348), + [anon_sym_public] = ACTIONS(3348), + [anon_sym_private] = ACTIONS(3348), + [anon_sym_protected] = ACTIONS(3348), + [anon_sym_override] = ACTIONS(3348), + [anon_sym_module] = ACTIONS(3348), + [anon_sym_any] = ACTIONS(3348), + [anon_sym_number] = ACTIONS(3348), + [anon_sym_boolean] = ACTIONS(3348), + [anon_sym_string] = ACTIONS(3348), + [anon_sym_symbol] = ACTIONS(3348), + [anon_sym_object] = ACTIONS(3348), + [anon_sym_abstract] = ACTIONS(3348), + [anon_sym_interface] = ACTIONS(3348), + [anon_sym_enum] = ACTIONS(3348), + [sym_html_comment] = ACTIONS(5), + }, + [1234] = { + [sym_comment] = STATE(1234), + [ts_builtin_sym_end] = ACTIONS(3428), + [sym_identifier] = ACTIONS(3162), + [anon_sym_export] = ACTIONS(3162), + [anon_sym_type] = ACTIONS(3162), + [anon_sym_namespace] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_typeof] = ACTIONS(3162), + [anon_sym_import] = ACTIONS(3162), + [anon_sym_with] = ACTIONS(3162), + [anon_sym_var] = ACTIONS(3162), + [anon_sym_let] = ACTIONS(3162), + [anon_sym_const] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_switch] = ACTIONS(3162), + [anon_sym_for] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym_await] = ACTIONS(3162), + [anon_sym_while] = ACTIONS(3162), + [anon_sym_do] = ACTIONS(3162), + [anon_sym_try] = ACTIONS(3162), + [anon_sym_break] = ACTIONS(3162), + [anon_sym_continue] = ACTIONS(3162), + [anon_sym_debugger] = ACTIONS(3162), + [anon_sym_return] = ACTIONS(3162), + [anon_sym_throw] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_yield] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3162), + [anon_sym_LTtemplate_GT] = ACTIONS(3162), + [anon_sym_DQUOTE] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3162), + [anon_sym_class] = ACTIONS(3162), + [anon_sym_async] = ACTIONS(3162), + [anon_sym_function] = ACTIONS(3162), + [anon_sym_new] = ACTIONS(3162), + [anon_sym_using] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3162), + [anon_sym_void] = ACTIONS(3162), + [anon_sym_delete] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3162), + [sym_number] = ACTIONS(3162), + [sym_private_property_identifier] = ACTIONS(3162), + [sym_this] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_true] = ACTIONS(3162), + [sym_false] = ACTIONS(3162), + [sym_null] = ACTIONS(3162), + [sym_undefined] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_static] = ACTIONS(3162), + [anon_sym_readonly] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_declare] = ACTIONS(3162), + [anon_sym_public] = ACTIONS(3162), + [anon_sym_private] = ACTIONS(3162), + [anon_sym_protected] = ACTIONS(3162), + [anon_sym_override] = ACTIONS(3162), + [anon_sym_module] = ACTIONS(3162), + [anon_sym_any] = ACTIONS(3162), + [anon_sym_number] = ACTIONS(3162), + [anon_sym_boolean] = ACTIONS(3162), + [anon_sym_string] = ACTIONS(3162), + [anon_sym_symbol] = ACTIONS(3162), + [anon_sym_object] = ACTIONS(3162), + [anon_sym_abstract] = ACTIONS(3162), + [anon_sym_interface] = ACTIONS(3162), + [anon_sym_enum] = ACTIONS(3162), [sym_html_comment] = ACTIONS(5), }, - [1264] = { - [sym_comment] = STATE(1264), + [1235] = { + [sym_comment] = STATE(1235), [sym_identifier] = ACTIONS(3180), [anon_sym_export] = ACTIONS(3180), [anon_sym_default] = ACTIONS(3180), @@ -167289,746 +164566,828 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3180), [sym_html_comment] = ACTIONS(5), }, - [1265] = { - [sym_comment] = STATE(1265), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_default] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_case] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), + [1236] = { + [sym_comment] = STATE(1236), + [sym_identifier] = ACTIONS(3184), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_default] = ACTIONS(3184), + [anon_sym_type] = ACTIONS(3184), + [anon_sym_namespace] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3184), + [anon_sym_import] = ACTIONS(3184), + [anon_sym_with] = ACTIONS(3184), + [anon_sym_var] = ACTIONS(3184), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_try] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_throw] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3184), + [anon_sym_yield] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LTtemplate_GT] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [anon_sym_class] = ACTIONS(3184), + [anon_sym_async] = ACTIONS(3184), + [anon_sym_function] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3184), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_private_property_identifier] = ACTIONS(3184), + [sym_this] = ACTIONS(3184), + [sym_super] = ACTIONS(3184), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [sym_null] = ACTIONS(3184), + [sym_undefined] = ACTIONS(3184), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_readonly] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_declare] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_override] = ACTIONS(3184), + [anon_sym_module] = ACTIONS(3184), + [anon_sym_any] = ACTIONS(3184), + [anon_sym_number] = ACTIONS(3184), + [anon_sym_boolean] = ACTIONS(3184), + [anon_sym_string] = ACTIONS(3184), + [anon_sym_symbol] = ACTIONS(3184), + [anon_sym_object] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_interface] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), [sym_html_comment] = ACTIONS(5), }, - [1266] = { - [sym_comment] = STATE(1266), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_default] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_case] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), + [1237] = { + [sym_comment] = STATE(1237), + [ts_builtin_sym_end] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3156), + [anon_sym_export] = ACTIONS(3156), + [anon_sym_type] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_typeof] = ACTIONS(3156), + [anon_sym_import] = ACTIONS(3156), + [anon_sym_with] = ACTIONS(3156), + [anon_sym_var] = ACTIONS(3156), + [anon_sym_let] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_switch] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_await] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_do] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_debugger] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_LTtemplate_GT] = ACTIONS(3156), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_async] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_SLASH] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_void] = ACTIONS(3156), + [anon_sym_delete] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [anon_sym_BQUOTE] = ACTIONS(3156), + [sym_number] = ACTIONS(3156), + [sym_private_property_identifier] = ACTIONS(3156), + [sym_this] = ACTIONS(3156), + [sym_super] = ACTIONS(3156), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [sym_null] = ACTIONS(3156), + [sym_undefined] = ACTIONS(3156), + [anon_sym_AT] = ACTIONS(3156), + [anon_sym_static] = ACTIONS(3156), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3156), + [anon_sym_set] = ACTIONS(3156), + [anon_sym_declare] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_module] = ACTIONS(3156), + [anon_sym_any] = ACTIONS(3156), + [anon_sym_number] = ACTIONS(3156), + [anon_sym_boolean] = ACTIONS(3156), + [anon_sym_string] = ACTIONS(3156), + [anon_sym_symbol] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_interface] = ACTIONS(3156), + [anon_sym_enum] = ACTIONS(3156), [sym_html_comment] = ACTIONS(5), }, - [1267] = { - [sym_comment] = STATE(1267), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1238] = { + [sym_comment] = STATE(1238), + [sym_identifier] = ACTIONS(3134), + [anon_sym_export] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_type] = ACTIONS(3134), + [anon_sym_namespace] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3134), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_typeof] = ACTIONS(3134), + [anon_sym_import] = ACTIONS(3134), + [anon_sym_with] = ACTIONS(3134), + [anon_sym_var] = ACTIONS(3134), + [anon_sym_let] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_await] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_try] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_debugger] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_throw] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_LTtemplate_GT] = ACTIONS(3134), + [anon_sym_DQUOTE] = ACTIONS(3134), + [anon_sym_SQUOTE] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_async] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_using] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_SLASH] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_TILDE] = ACTIONS(3134), + [anon_sym_void] = ACTIONS(3134), + [anon_sym_delete] = ACTIONS(3134), + [anon_sym_PLUS_PLUS] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3134), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3134), + [sym_private_property_identifier] = ACTIONS(3134), + [sym_this] = ACTIONS(3134), + [sym_super] = ACTIONS(3134), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [sym_null] = ACTIONS(3134), + [sym_undefined] = ACTIONS(3134), + [anon_sym_AT] = ACTIONS(3134), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3134), + [anon_sym_set] = ACTIONS(3134), + [anon_sym_declare] = ACTIONS(3134), + [anon_sym_public] = ACTIONS(3134), + [anon_sym_private] = ACTIONS(3134), + [anon_sym_protected] = ACTIONS(3134), + [anon_sym_override] = ACTIONS(3134), + [anon_sym_module] = ACTIONS(3134), + [anon_sym_any] = ACTIONS(3134), + [anon_sym_number] = ACTIONS(3134), + [anon_sym_boolean] = ACTIONS(3134), + [anon_sym_string] = ACTIONS(3134), + [anon_sym_symbol] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3134), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_interface] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), [sym_html_comment] = ACTIONS(5), }, - [1268] = { - [sym_comment] = STATE(1268), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1239] = { + [sym_comment] = STATE(1239), + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2221), + [anon_sym_export] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_typeof] = ACTIONS(2221), + [anon_sym_import] = ACTIONS(2221), + [anon_sym_with] = ACTIONS(2221), + [anon_sym_var] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_debugger] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_finally] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LTtemplate_GT] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_void] = ACTIONS(2221), + [anon_sym_delete] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(2221), + [sym_number] = ACTIONS(2221), + [sym_private_property_identifier] = ACTIONS(2221), + [sym_this] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_null] = ACTIONS(2221), + [sym_undefined] = ACTIONS(2221), + [anon_sym_AT] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_get] = ACTIONS(2221), + [anon_sym_set] = ACTIONS(2221), + [anon_sym_declare] = ACTIONS(2221), + [anon_sym_public] = ACTIONS(2221), + [anon_sym_private] = ACTIONS(2221), + [anon_sym_protected] = ACTIONS(2221), + [anon_sym_override] = ACTIONS(2221), + [anon_sym_module] = ACTIONS(2221), + [anon_sym_any] = ACTIONS(2221), + [anon_sym_number] = ACTIONS(2221), + [anon_sym_boolean] = ACTIONS(2221), + [anon_sym_string] = ACTIONS(2221), + [anon_sym_symbol] = ACTIONS(2221), + [anon_sym_object] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), [sym_html_comment] = ACTIONS(5), }, - [1269] = { - [sym_comment] = STATE(1269), - [sym_identifier] = ACTIONS(3254), - [anon_sym_export] = ACTIONS(3254), - [anon_sym_default] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_namespace] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3254), - [anon_sym_typeof] = ACTIONS(3254), - [anon_sym_import] = ACTIONS(3254), - [anon_sym_with] = ACTIONS(3254), - [anon_sym_var] = ACTIONS(3254), - [anon_sym_let] = ACTIONS(3254), - [anon_sym_const] = ACTIONS(3254), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_switch] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_await] = ACTIONS(3254), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_do] = ACTIONS(3254), - [anon_sym_try] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_debugger] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_throw] = ACTIONS(3254), - [anon_sym_SEMI] = ACTIONS(3254), - [anon_sym_case] = ACTIONS(3254), - [anon_sym_yield] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_LTtemplate_GT] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(3254), - [anon_sym_class] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_function] = ACTIONS(3254), - [anon_sym_new] = ACTIONS(3254), - [anon_sym_using] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3254), - [anon_sym_void] = ACTIONS(3254), - [anon_sym_delete] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3254), - [sym_number] = ACTIONS(3254), - [sym_private_property_identifier] = ACTIONS(3254), - [sym_this] = ACTIONS(3254), - [sym_super] = ACTIONS(3254), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_undefined] = ACTIONS(3254), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_readonly] = ACTIONS(3254), - [anon_sym_get] = ACTIONS(3254), - [anon_sym_set] = ACTIONS(3254), - [anon_sym_declare] = ACTIONS(3254), - [anon_sym_public] = ACTIONS(3254), - [anon_sym_private] = ACTIONS(3254), - [anon_sym_protected] = ACTIONS(3254), - [anon_sym_override] = ACTIONS(3254), - [anon_sym_module] = ACTIONS(3254), - [anon_sym_any] = ACTIONS(3254), - [anon_sym_number] = ACTIONS(3254), - [anon_sym_boolean] = ACTIONS(3254), - [anon_sym_string] = ACTIONS(3254), - [anon_sym_symbol] = ACTIONS(3254), - [anon_sym_object] = ACTIONS(3254), - [anon_sym_abstract] = ACTIONS(3254), - [anon_sym_interface] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3254), + [1240] = { + [sym_comment] = STATE(1240), + [sym_identifier] = ACTIONS(3130), + [anon_sym_export] = ACTIONS(3130), + [anon_sym_default] = ACTIONS(3130), + [anon_sym_type] = ACTIONS(3130), + [anon_sym_namespace] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(3130), + [anon_sym_RBRACE] = ACTIONS(3130), + [anon_sym_typeof] = ACTIONS(3130), + [anon_sym_import] = ACTIONS(3130), + [anon_sym_with] = ACTIONS(3130), + [anon_sym_var] = ACTIONS(3130), + [anon_sym_let] = ACTIONS(3130), + [anon_sym_const] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_switch] = ACTIONS(3130), + [anon_sym_for] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_await] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_do] = ACTIONS(3130), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_debugger] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_throw] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3130), + [anon_sym_case] = ACTIONS(3130), + [anon_sym_yield] = ACTIONS(3130), + [anon_sym_LBRACK] = ACTIONS(3130), + [anon_sym_LTtemplate_GT] = ACTIONS(3130), + [anon_sym_DQUOTE] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(3130), + [anon_sym_class] = ACTIONS(3130), + [anon_sym_async] = ACTIONS(3130), + [anon_sym_function] = ACTIONS(3130), + [anon_sym_new] = ACTIONS(3130), + [anon_sym_using] = ACTIONS(3130), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_SLASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3130), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_void] = ACTIONS(3130), + [anon_sym_delete] = ACTIONS(3130), + [anon_sym_PLUS_PLUS] = ACTIONS(3130), + [anon_sym_DASH_DASH] = ACTIONS(3130), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3130), + [sym_number] = ACTIONS(3130), + [sym_private_property_identifier] = ACTIONS(3130), + [sym_this] = ACTIONS(3130), + [sym_super] = ACTIONS(3130), + [sym_true] = ACTIONS(3130), + [sym_false] = ACTIONS(3130), + [sym_null] = ACTIONS(3130), + [sym_undefined] = ACTIONS(3130), + [anon_sym_AT] = ACTIONS(3130), + [anon_sym_static] = ACTIONS(3130), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_get] = ACTIONS(3130), + [anon_sym_set] = ACTIONS(3130), + [anon_sym_declare] = ACTIONS(3130), + [anon_sym_public] = ACTIONS(3130), + [anon_sym_private] = ACTIONS(3130), + [anon_sym_protected] = ACTIONS(3130), + [anon_sym_override] = ACTIONS(3130), + [anon_sym_module] = ACTIONS(3130), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3130), + [anon_sym_interface] = ACTIONS(3130), + [anon_sym_enum] = ACTIONS(3130), [sym_html_comment] = ACTIONS(5), }, - [1270] = { - [sym_comment] = STATE(1270), - [sym_identifier] = ACTIONS(3256), - [anon_sym_export] = ACTIONS(3256), - [anon_sym_default] = ACTIONS(3256), - [anon_sym_type] = ACTIONS(3256), - [anon_sym_namespace] = ACTIONS(3256), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3256), - [anon_sym_typeof] = ACTIONS(3256), - [anon_sym_import] = ACTIONS(3256), - [anon_sym_with] = ACTIONS(3256), - [anon_sym_var] = ACTIONS(3256), - [anon_sym_let] = ACTIONS(3256), - [anon_sym_const] = ACTIONS(3256), - [anon_sym_BANG] = ACTIONS(3256), - [anon_sym_if] = ACTIONS(3256), - [anon_sym_switch] = ACTIONS(3256), - [anon_sym_for] = ACTIONS(3256), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_await] = ACTIONS(3256), - [anon_sym_while] = ACTIONS(3256), - [anon_sym_do] = ACTIONS(3256), - [anon_sym_try] = ACTIONS(3256), - [anon_sym_break] = ACTIONS(3256), - [anon_sym_continue] = ACTIONS(3256), - [anon_sym_debugger] = ACTIONS(3256), - [anon_sym_return] = ACTIONS(3256), - [anon_sym_throw] = ACTIONS(3256), - [anon_sym_SEMI] = ACTIONS(3256), - [anon_sym_case] = ACTIONS(3256), - [anon_sym_yield] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_LTtemplate_GT] = ACTIONS(3256), - [anon_sym_DQUOTE] = ACTIONS(3256), - [anon_sym_SQUOTE] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3256), - [anon_sym_async] = ACTIONS(3256), - [anon_sym_function] = ACTIONS(3256), - [anon_sym_new] = ACTIONS(3256), - [anon_sym_using] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3256), - [anon_sym_DASH] = ACTIONS(3256), - [anon_sym_SLASH] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3256), - [anon_sym_TILDE] = ACTIONS(3256), - [anon_sym_void] = ACTIONS(3256), - [anon_sym_delete] = ACTIONS(3256), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3256), - [sym_number] = ACTIONS(3256), - [sym_private_property_identifier] = ACTIONS(3256), - [sym_this] = ACTIONS(3256), - [sym_super] = ACTIONS(3256), - [sym_true] = ACTIONS(3256), - [sym_false] = ACTIONS(3256), - [sym_null] = ACTIONS(3256), - [sym_undefined] = ACTIONS(3256), - [anon_sym_AT] = ACTIONS(3256), - [anon_sym_static] = ACTIONS(3256), - [anon_sym_readonly] = ACTIONS(3256), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3256), - [anon_sym_declare] = ACTIONS(3256), - [anon_sym_public] = ACTIONS(3256), - [anon_sym_private] = ACTIONS(3256), - [anon_sym_protected] = ACTIONS(3256), - [anon_sym_override] = ACTIONS(3256), - [anon_sym_module] = ACTIONS(3256), - [anon_sym_any] = ACTIONS(3256), - [anon_sym_number] = ACTIONS(3256), - [anon_sym_boolean] = ACTIONS(3256), - [anon_sym_string] = ACTIONS(3256), - [anon_sym_symbol] = ACTIONS(3256), - [anon_sym_object] = ACTIONS(3256), - [anon_sym_abstract] = ACTIONS(3256), - [anon_sym_interface] = ACTIONS(3256), - [anon_sym_enum] = ACTIONS(3256), + [1241] = { + [sym_comment] = STATE(1241), + [sym_identifier] = ACTIONS(3188), + [anon_sym_export] = ACTIONS(3188), + [anon_sym_default] = ACTIONS(3188), + [anon_sym_type] = ACTIONS(3188), + [anon_sym_namespace] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_typeof] = ACTIONS(3188), + [anon_sym_import] = ACTIONS(3188), + [anon_sym_with] = ACTIONS(3188), + [anon_sym_var] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_await] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_break] = ACTIONS(3188), + [anon_sym_continue] = ACTIONS(3188), + [anon_sym_debugger] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_throw] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_case] = ACTIONS(3188), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LTtemplate_GT] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_SQUOTE] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_async] = ACTIONS(3188), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_void] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3188), + [sym_number] = ACTIONS(3188), + [sym_private_property_identifier] = ACTIONS(3188), + [sym_this] = ACTIONS(3188), + [sym_super] = ACTIONS(3188), + [sym_true] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [sym_null] = ACTIONS(3188), + [sym_undefined] = ACTIONS(3188), + [anon_sym_AT] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_readonly] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3188), + [anon_sym_set] = ACTIONS(3188), + [anon_sym_declare] = ACTIONS(3188), + [anon_sym_public] = ACTIONS(3188), + [anon_sym_private] = ACTIONS(3188), + [anon_sym_protected] = ACTIONS(3188), + [anon_sym_override] = ACTIONS(3188), + [anon_sym_module] = ACTIONS(3188), + [anon_sym_any] = ACTIONS(3188), + [anon_sym_number] = ACTIONS(3188), + [anon_sym_boolean] = ACTIONS(3188), + [anon_sym_string] = ACTIONS(3188), + [anon_sym_symbol] = ACTIONS(3188), + [anon_sym_object] = ACTIONS(3188), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_interface] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), [sym_html_comment] = ACTIONS(5), }, - [1271] = { - [sym_comment] = STATE(1271), - [sym_identifier] = ACTIONS(3178), - [anon_sym_export] = ACTIONS(3178), - [anon_sym_default] = ACTIONS(3178), - [anon_sym_type] = ACTIONS(3178), - [anon_sym_namespace] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3178), - [anon_sym_typeof] = ACTIONS(3178), - [anon_sym_import] = ACTIONS(3178), - [anon_sym_with] = ACTIONS(3178), - [anon_sym_var] = ACTIONS(3178), - [anon_sym_let] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3178), - [anon_sym_await] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_try] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_debugger] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_throw] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3178), - [anon_sym_case] = ACTIONS(3178), - [anon_sym_yield] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_LTtemplate_GT] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [anon_sym_SQUOTE] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_async] = ACTIONS(3178), - [anon_sym_function] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_SLASH] = ACTIONS(3178), - [anon_sym_LT] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_void] = ACTIONS(3178), - [anon_sym_delete] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3178), + [1242] = { + [sym_comment] = STATE(1242), + [ts_builtin_sym_end] = ACTIONS(3432), + [sym_identifier] = ACTIONS(3166), + [anon_sym_export] = ACTIONS(3166), + [anon_sym_type] = ACTIONS(3166), + [anon_sym_namespace] = ACTIONS(3166), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_import] = ACTIONS(3166), + [anon_sym_with] = ACTIONS(3166), + [anon_sym_var] = ACTIONS(3166), + [anon_sym_let] = ACTIONS(3166), + [anon_sym_const] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_else] = ACTIONS(3166), + [anon_sym_if] = ACTIONS(3166), + [anon_sym_switch] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_await] = ACTIONS(3166), + [anon_sym_while] = ACTIONS(3166), + [anon_sym_do] = ACTIONS(3166), + [anon_sym_try] = ACTIONS(3166), + [anon_sym_break] = ACTIONS(3166), + [anon_sym_continue] = ACTIONS(3166), + [anon_sym_debugger] = ACTIONS(3166), + [anon_sym_return] = ACTIONS(3166), + [anon_sym_throw] = ACTIONS(3166), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_yield] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_LTtemplate_GT] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_class] = ACTIONS(3166), + [anon_sym_async] = ACTIONS(3166), + [anon_sym_function] = ACTIONS(3166), + [anon_sym_new] = ACTIONS(3166), + [anon_sym_using] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), + [anon_sym_SLASH] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_void] = ACTIONS(3166), + [anon_sym_delete] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3178), - [sym_number] = ACTIONS(3178), - [sym_private_property_identifier] = ACTIONS(3178), - [sym_this] = ACTIONS(3178), - [sym_super] = ACTIONS(3178), - [sym_true] = ACTIONS(3178), - [sym_false] = ACTIONS(3178), - [sym_null] = ACTIONS(3178), - [sym_undefined] = ACTIONS(3178), - [anon_sym_AT] = ACTIONS(3178), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_get] = ACTIONS(3178), - [anon_sym_set] = ACTIONS(3178), - [anon_sym_declare] = ACTIONS(3178), - [anon_sym_public] = ACTIONS(3178), - [anon_sym_private] = ACTIONS(3178), - [anon_sym_protected] = ACTIONS(3178), - [anon_sym_override] = ACTIONS(3178), - [anon_sym_module] = ACTIONS(3178), - [anon_sym_any] = ACTIONS(3178), - [anon_sym_number] = ACTIONS(3178), - [anon_sym_boolean] = ACTIONS(3178), - [anon_sym_string] = ACTIONS(3178), - [anon_sym_symbol] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3178), - [anon_sym_abstract] = ACTIONS(3178), - [anon_sym_interface] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), + [anon_sym_BQUOTE] = ACTIONS(3166), + [sym_number] = ACTIONS(3166), + [sym_private_property_identifier] = ACTIONS(3166), + [sym_this] = ACTIONS(3166), + [sym_super] = ACTIONS(3166), + [sym_true] = ACTIONS(3166), + [sym_false] = ACTIONS(3166), + [sym_null] = ACTIONS(3166), + [sym_undefined] = ACTIONS(3166), + [anon_sym_AT] = ACTIONS(3166), + [anon_sym_static] = ACTIONS(3166), + [anon_sym_readonly] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3166), + [anon_sym_set] = ACTIONS(3166), + [anon_sym_declare] = ACTIONS(3166), + [anon_sym_public] = ACTIONS(3166), + [anon_sym_private] = ACTIONS(3166), + [anon_sym_protected] = ACTIONS(3166), + [anon_sym_override] = ACTIONS(3166), + [anon_sym_module] = ACTIONS(3166), + [anon_sym_any] = ACTIONS(3166), + [anon_sym_number] = ACTIONS(3166), + [anon_sym_boolean] = ACTIONS(3166), + [anon_sym_string] = ACTIONS(3166), + [anon_sym_symbol] = ACTIONS(3166), + [anon_sym_object] = ACTIONS(3166), + [anon_sym_abstract] = ACTIONS(3166), + [anon_sym_interface] = ACTIONS(3166), + [anon_sym_enum] = ACTIONS(3166), [sym_html_comment] = ACTIONS(5), }, - [1272] = { - [sym_comment] = STATE(1272), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_default] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_case] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), + [1243] = { + [sym_comment] = STATE(1243), + [sym_identifier] = ACTIONS(2221), + [anon_sym_export] = ACTIONS(2221), + [anon_sym_default] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_typeof] = ACTIONS(2221), + [anon_sym_import] = ACTIONS(2221), + [anon_sym_with] = ACTIONS(2221), + [anon_sym_var] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_debugger] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_case] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LTtemplate_GT] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_void] = ACTIONS(2221), + [anon_sym_delete] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [anon_sym_BQUOTE] = ACTIONS(2221), + [sym_number] = ACTIONS(2221), + [sym_private_property_identifier] = ACTIONS(2221), + [sym_this] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_null] = ACTIONS(2221), + [sym_undefined] = ACTIONS(2221), + [anon_sym_AT] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_get] = ACTIONS(2221), + [anon_sym_set] = ACTIONS(2221), + [anon_sym_declare] = ACTIONS(2221), + [anon_sym_public] = ACTIONS(2221), + [anon_sym_private] = ACTIONS(2221), + [anon_sym_protected] = ACTIONS(2221), + [anon_sym_override] = ACTIONS(2221), + [anon_sym_module] = ACTIONS(2221), + [anon_sym_any] = ACTIONS(2221), + [anon_sym_number] = ACTIONS(2221), + [anon_sym_boolean] = ACTIONS(2221), + [anon_sym_string] = ACTIONS(2221), + [anon_sym_symbol] = ACTIONS(2221), + [anon_sym_object] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), [sym_html_comment] = ACTIONS(5), }, - [1273] = { - [sym_comment] = STATE(1273), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_default] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_case] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), + [1244] = { + [sym_comment] = STATE(1244), + [sym_identifier] = ACTIONS(3274), + [anon_sym_export] = ACTIONS(3274), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_typeof] = ACTIONS(3274), + [anon_sym_import] = ACTIONS(3274), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_var] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_await] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_debugger] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_throw] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_case] = ACTIONS(3274), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LTtemplate_GT] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_SQUOTE] = ACTIONS(3274), + [anon_sym_class] = ACTIONS(3274), + [anon_sym_async] = ACTIONS(3274), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_using] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_SLASH] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3274), + [anon_sym_void] = ACTIONS(3274), + [anon_sym_delete] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [anon_sym_BQUOTE] = ACTIONS(3274), + [sym_number] = ACTIONS(3274), + [sym_private_property_identifier] = ACTIONS(3274), + [sym_this] = ACTIONS(3274), + [sym_super] = ACTIONS(3274), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [sym_null] = ACTIONS(3274), + [sym_undefined] = ACTIONS(3274), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_readonly] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3274), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_declare] = ACTIONS(3274), + [anon_sym_public] = ACTIONS(3274), + [anon_sym_private] = ACTIONS(3274), + [anon_sym_protected] = ACTIONS(3274), + [anon_sym_override] = ACTIONS(3274), + [anon_sym_module] = ACTIONS(3274), + [anon_sym_any] = ACTIONS(3274), + [anon_sym_number] = ACTIONS(3274), + [anon_sym_boolean] = ACTIONS(3274), + [anon_sym_string] = ACTIONS(3274), + [anon_sym_symbol] = ACTIONS(3274), + [anon_sym_object] = ACTIONS(3274), + [anon_sym_abstract] = ACTIONS(3274), + [anon_sym_interface] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), [sym_html_comment] = ACTIONS(5), }, - [1274] = { - [sym_comment] = STATE(1274), + [1245] = { + [sym_comment] = STATE(1245), + [sym_identifier] = ACTIONS(3434), + [anon_sym_export] = ACTIONS(3434), + [anon_sym_default] = ACTIONS(3434), + [anon_sym_type] = ACTIONS(3434), + [anon_sym_namespace] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3434), + [anon_sym_RBRACE] = ACTIONS(3434), + [anon_sym_typeof] = ACTIONS(3434), + [anon_sym_import] = ACTIONS(3434), + [anon_sym_with] = ACTIONS(3434), + [anon_sym_var] = ACTIONS(3434), + [anon_sym_let] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_BANG] = ACTIONS(3434), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_LPAREN] = ACTIONS(3434), + [anon_sym_await] = ACTIONS(3434), + [anon_sym_while] = ACTIONS(3434), + [anon_sym_do] = ACTIONS(3434), + [anon_sym_try] = ACTIONS(3434), + [anon_sym_break] = ACTIONS(3434), + [anon_sym_continue] = ACTIONS(3434), + [anon_sym_debugger] = ACTIONS(3434), + [anon_sym_return] = ACTIONS(3434), + [anon_sym_throw] = ACTIONS(3434), + [anon_sym_SEMI] = ACTIONS(3434), + [anon_sym_case] = ACTIONS(3434), + [anon_sym_yield] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_LTtemplate_GT] = ACTIONS(3434), + [anon_sym_DQUOTE] = ACTIONS(3434), + [anon_sym_SQUOTE] = ACTIONS(3434), + [anon_sym_class] = ACTIONS(3434), + [anon_sym_async] = ACTIONS(3434), + [anon_sym_function] = ACTIONS(3434), + [anon_sym_new] = ACTIONS(3434), + [anon_sym_using] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_SLASH] = ACTIONS(3434), + [anon_sym_LT] = ACTIONS(3434), + [anon_sym_TILDE] = ACTIONS(3434), + [anon_sym_void] = ACTIONS(3434), + [anon_sym_delete] = ACTIONS(3434), + [anon_sym_PLUS_PLUS] = ACTIONS(3434), + [anon_sym_DASH_DASH] = ACTIONS(3434), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3434), + [sym_number] = ACTIONS(3434), + [sym_private_property_identifier] = ACTIONS(3434), + [sym_this] = ACTIONS(3434), + [sym_super] = ACTIONS(3434), + [sym_true] = ACTIONS(3434), + [sym_false] = ACTIONS(3434), + [sym_null] = ACTIONS(3434), + [sym_undefined] = ACTIONS(3434), + [anon_sym_AT] = ACTIONS(3434), + [anon_sym_static] = ACTIONS(3434), + [anon_sym_readonly] = ACTIONS(3434), + [anon_sym_get] = ACTIONS(3434), + [anon_sym_set] = ACTIONS(3434), + [anon_sym_declare] = ACTIONS(3434), + [anon_sym_public] = ACTIONS(3434), + [anon_sym_private] = ACTIONS(3434), + [anon_sym_protected] = ACTIONS(3434), + [anon_sym_override] = ACTIONS(3434), + [anon_sym_module] = ACTIONS(3434), + [anon_sym_any] = ACTIONS(3434), + [anon_sym_number] = ACTIONS(3434), + [anon_sym_boolean] = ACTIONS(3434), + [anon_sym_string] = ACTIONS(3434), + [anon_sym_symbol] = ACTIONS(3434), + [anon_sym_object] = ACTIONS(3434), + [anon_sym_abstract] = ACTIONS(3434), + [anon_sym_interface] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), + [sym_html_comment] = ACTIONS(5), + }, + [1246] = { + [sym_comment] = STATE(1246), [sym_identifier] = ACTIONS(3258), [anon_sym_export] = ACTIONS(3258), [anon_sym_default] = ACTIONS(3258), @@ -168109,255 +165468,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3258), [sym_html_comment] = ACTIONS(5), }, - [1275] = { - [sym_comment] = STATE(1275), - [sym_identifier] = ACTIONS(3176), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_default] = ACTIONS(3176), - [anon_sym_type] = ACTIONS(3176), - [anon_sym_namespace] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(3176), - [anon_sym_RBRACE] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(3176), - [anon_sym_import] = ACTIONS(3176), - [anon_sym_with] = ACTIONS(3176), - [anon_sym_var] = ACTIONS(3176), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_const] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3176), - [anon_sym_if] = ACTIONS(3176), - [anon_sym_switch] = ACTIONS(3176), - [anon_sym_for] = ACTIONS(3176), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_await] = ACTIONS(3176), - [anon_sym_while] = ACTIONS(3176), - [anon_sym_do] = ACTIONS(3176), - [anon_sym_try] = ACTIONS(3176), - [anon_sym_break] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_throw] = ACTIONS(3176), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_case] = ACTIONS(3176), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_LTtemplate_GT] = ACTIONS(3176), - [anon_sym_DQUOTE] = ACTIONS(3176), - [anon_sym_SQUOTE] = ACTIONS(3176), - [anon_sym_class] = ACTIONS(3176), - [anon_sym_async] = ACTIONS(3176), - [anon_sym_function] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3176), - [anon_sym_using] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3176), - [anon_sym_DASH] = ACTIONS(3176), - [anon_sym_SLASH] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3176), - [anon_sym_TILDE] = ACTIONS(3176), - [anon_sym_void] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3176), - [sym_number] = ACTIONS(3176), - [sym_private_property_identifier] = ACTIONS(3176), - [sym_this] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_AT] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3176), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), - [anon_sym_declare] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_protected] = ACTIONS(3176), - [anon_sym_override] = ACTIONS(3176), - [anon_sym_module] = ACTIONS(3176), - [anon_sym_any] = ACTIONS(3176), - [anon_sym_number] = ACTIONS(3176), - [anon_sym_boolean] = ACTIONS(3176), - [anon_sym_string] = ACTIONS(3176), - [anon_sym_symbol] = ACTIONS(3176), - [anon_sym_object] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_interface] = ACTIONS(3176), - [anon_sym_enum] = ACTIONS(3176), - [sym_html_comment] = ACTIONS(5), - }, - [1276] = { - [sym_comment] = STATE(1276), - [sym_identifier] = ACTIONS(3174), - [anon_sym_export] = ACTIONS(3174), - [anon_sym_default] = ACTIONS(3174), - [anon_sym_type] = ACTIONS(3174), - [anon_sym_namespace] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_typeof] = ACTIONS(3174), - [anon_sym_import] = ACTIONS(3174), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_var] = ACTIONS(3174), - [anon_sym_let] = ACTIONS(3174), - [anon_sym_const] = ACTIONS(3174), - [anon_sym_BANG] = ACTIONS(3174), - [anon_sym_if] = ACTIONS(3174), - [anon_sym_switch] = ACTIONS(3174), - [anon_sym_for] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_await] = ACTIONS(3174), - [anon_sym_while] = ACTIONS(3174), - [anon_sym_do] = ACTIONS(3174), - [anon_sym_try] = ACTIONS(3174), - [anon_sym_break] = ACTIONS(3174), - [anon_sym_continue] = ACTIONS(3174), - [anon_sym_debugger] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3174), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_case] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3174), - [anon_sym_LTtemplate_GT] = ACTIONS(3174), - [anon_sym_DQUOTE] = ACTIONS(3174), - [anon_sym_SQUOTE] = ACTIONS(3174), - [anon_sym_class] = ACTIONS(3174), - [anon_sym_async] = ACTIONS(3174), - [anon_sym_function] = ACTIONS(3174), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_using] = ACTIONS(3174), - [anon_sym_PLUS] = ACTIONS(3174), - [anon_sym_DASH] = ACTIONS(3174), - [anon_sym_SLASH] = ACTIONS(3174), - [anon_sym_LT] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3174), - [anon_sym_void] = ACTIONS(3174), - [anon_sym_delete] = ACTIONS(3174), - [anon_sym_PLUS_PLUS] = ACTIONS(3174), - [anon_sym_DASH_DASH] = ACTIONS(3174), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3174), - [sym_number] = ACTIONS(3174), - [sym_private_property_identifier] = ACTIONS(3174), - [sym_this] = ACTIONS(3174), - [sym_super] = ACTIONS(3174), - [sym_true] = ACTIONS(3174), - [sym_false] = ACTIONS(3174), - [sym_null] = ACTIONS(3174), - [sym_undefined] = ACTIONS(3174), - [anon_sym_AT] = ACTIONS(3174), - [anon_sym_static] = ACTIONS(3174), - [anon_sym_readonly] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3174), - [anon_sym_set] = ACTIONS(3174), - [anon_sym_declare] = ACTIONS(3174), - [anon_sym_public] = ACTIONS(3174), - [anon_sym_private] = ACTIONS(3174), - [anon_sym_protected] = ACTIONS(3174), - [anon_sym_override] = ACTIONS(3174), - [anon_sym_module] = ACTIONS(3174), - [anon_sym_any] = ACTIONS(3174), - [anon_sym_number] = ACTIONS(3174), - [anon_sym_boolean] = ACTIONS(3174), - [anon_sym_string] = ACTIONS(3174), - [anon_sym_symbol] = ACTIONS(3174), - [anon_sym_object] = ACTIONS(3174), - [anon_sym_abstract] = ACTIONS(3174), - [anon_sym_interface] = ACTIONS(3174), - [anon_sym_enum] = ACTIONS(3174), - [sym_html_comment] = ACTIONS(5), - }, - [1277] = { - [sym_comment] = STATE(1277), - [sym_identifier] = ACTIONS(3170), - [anon_sym_export] = ACTIONS(3170), - [anon_sym_default] = ACTIONS(3170), - [anon_sym_type] = ACTIONS(3170), - [anon_sym_namespace] = ACTIONS(3170), - [anon_sym_LBRACE] = ACTIONS(3170), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_typeof] = ACTIONS(3170), - [anon_sym_import] = ACTIONS(3170), - [anon_sym_with] = ACTIONS(3170), - [anon_sym_var] = ACTIONS(3170), - [anon_sym_let] = ACTIONS(3170), - [anon_sym_const] = ACTIONS(3170), - [anon_sym_BANG] = ACTIONS(3170), - [anon_sym_if] = ACTIONS(3170), - [anon_sym_switch] = ACTIONS(3170), - [anon_sym_for] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_await] = ACTIONS(3170), - [anon_sym_while] = ACTIONS(3170), - [anon_sym_do] = ACTIONS(3170), - [anon_sym_try] = ACTIONS(3170), - [anon_sym_break] = ACTIONS(3170), - [anon_sym_continue] = ACTIONS(3170), - [anon_sym_debugger] = ACTIONS(3170), - [anon_sym_return] = ACTIONS(3170), - [anon_sym_throw] = ACTIONS(3170), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_case] = ACTIONS(3170), - [anon_sym_yield] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3170), - [anon_sym_LTtemplate_GT] = ACTIONS(3170), - [anon_sym_DQUOTE] = ACTIONS(3170), - [anon_sym_SQUOTE] = ACTIONS(3170), - [anon_sym_class] = ACTIONS(3170), - [anon_sym_async] = ACTIONS(3170), - [anon_sym_function] = ACTIONS(3170), - [anon_sym_new] = ACTIONS(3170), - [anon_sym_using] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3170), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_SLASH] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3170), - [anon_sym_void] = ACTIONS(3170), - [anon_sym_delete] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_DASH_DASH] = ACTIONS(3170), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3170), - [sym_private_property_identifier] = ACTIONS(3170), - [sym_this] = ACTIONS(3170), - [sym_super] = ACTIONS(3170), - [sym_true] = ACTIONS(3170), - [sym_false] = ACTIONS(3170), - [sym_null] = ACTIONS(3170), - [sym_undefined] = ACTIONS(3170), - [anon_sym_AT] = ACTIONS(3170), - [anon_sym_static] = ACTIONS(3170), - [anon_sym_readonly] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3170), - [anon_sym_set] = ACTIONS(3170), - [anon_sym_declare] = ACTIONS(3170), - [anon_sym_public] = ACTIONS(3170), - [anon_sym_private] = ACTIONS(3170), - [anon_sym_protected] = ACTIONS(3170), - [anon_sym_override] = ACTIONS(3170), - [anon_sym_module] = ACTIONS(3170), - [anon_sym_any] = ACTIONS(3170), - [anon_sym_number] = ACTIONS(3170), - [anon_sym_boolean] = ACTIONS(3170), - [anon_sym_string] = ACTIONS(3170), - [anon_sym_symbol] = ACTIONS(3170), - [anon_sym_object] = ACTIONS(3170), - [anon_sym_abstract] = ACTIONS(3170), - [anon_sym_interface] = ACTIONS(3170), - [anon_sym_enum] = ACTIONS(3170), - [sym_html_comment] = ACTIONS(5), - }, - [1278] = { - [sym_comment] = STATE(1278), - [ts_builtin_sym_end] = ACTIONS(3370), + [1247] = { + [sym_comment] = STATE(1247), + [ts_builtin_sym_end] = ACTIONS(3436), [sym_identifier] = ACTIONS(3154), [anon_sym_export] = ACTIONS(3154), [anon_sym_type] = ACTIONS(3154), @@ -168437,172 +165550,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, - [1279] = { - [sym_comment] = STATE(1279), - [sym_identifier] = ACTIONS(3166), - [anon_sym_export] = ACTIONS(3166), - [anon_sym_default] = ACTIONS(3166), - [anon_sym_type] = ACTIONS(3166), - [anon_sym_namespace] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(3166), - [anon_sym_RBRACE] = ACTIONS(3166), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(3166), - [anon_sym_with] = ACTIONS(3166), - [anon_sym_var] = ACTIONS(3166), - [anon_sym_let] = ACTIONS(3166), - [anon_sym_const] = ACTIONS(3166), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_if] = ACTIONS(3166), - [anon_sym_switch] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(3166), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_await] = ACTIONS(3166), - [anon_sym_while] = ACTIONS(3166), - [anon_sym_do] = ACTIONS(3166), - [anon_sym_try] = ACTIONS(3166), - [anon_sym_break] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(3166), - [anon_sym_debugger] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3166), - [anon_sym_case] = ACTIONS(3166), - [anon_sym_yield] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3166), - [anon_sym_LTtemplate_GT] = ACTIONS(3166), - [anon_sym_DQUOTE] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3166), - [anon_sym_class] = ACTIONS(3166), - [anon_sym_async] = ACTIONS(3166), - [anon_sym_function] = ACTIONS(3166), - [anon_sym_new] = ACTIONS(3166), - [anon_sym_using] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_SLASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(3166), - [anon_sym_TILDE] = ACTIONS(3166), - [anon_sym_void] = ACTIONS(3166), - [anon_sym_delete] = ACTIONS(3166), - [anon_sym_PLUS_PLUS] = ACTIONS(3166), - [anon_sym_DASH_DASH] = ACTIONS(3166), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3166), - [sym_number] = ACTIONS(3166), - [sym_private_property_identifier] = ACTIONS(3166), - [sym_this] = ACTIONS(3166), - [sym_super] = ACTIONS(3166), - [sym_true] = ACTIONS(3166), - [sym_false] = ACTIONS(3166), - [sym_null] = ACTIONS(3166), - [sym_undefined] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(3166), - [anon_sym_static] = ACTIONS(3166), - [anon_sym_readonly] = ACTIONS(3166), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_declare] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_module] = ACTIONS(3166), - [anon_sym_any] = ACTIONS(3166), - [anon_sym_number] = ACTIONS(3166), - [anon_sym_boolean] = ACTIONS(3166), - [anon_sym_string] = ACTIONS(3166), - [anon_sym_symbol] = ACTIONS(3166), - [anon_sym_object] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_interface] = ACTIONS(3166), - [anon_sym_enum] = ACTIONS(3166), - [sym_html_comment] = ACTIONS(5), - }, - [1280] = { - [sym_comment] = STATE(1280), - [sym_identifier] = ACTIONS(3164), - [anon_sym_export] = ACTIONS(3164), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_type] = ACTIONS(3164), - [anon_sym_namespace] = ACTIONS(3164), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_RBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3164), - [anon_sym_import] = ACTIONS(3164), - [anon_sym_with] = ACTIONS(3164), - [anon_sym_var] = ACTIONS(3164), - [anon_sym_let] = ACTIONS(3164), - [anon_sym_const] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_switch] = ACTIONS(3164), - [anon_sym_for] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3164), - [anon_sym_await] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_do] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_debugger] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3164), - [anon_sym_case] = ACTIONS(3164), - [anon_sym_yield] = ACTIONS(3164), - [anon_sym_LBRACK] = ACTIONS(3164), - [anon_sym_LTtemplate_GT] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(3164), - [anon_sym_SQUOTE] = ACTIONS(3164), - [anon_sym_class] = ACTIONS(3164), - [anon_sym_async] = ACTIONS(3164), - [anon_sym_function] = ACTIONS(3164), - [anon_sym_new] = ACTIONS(3164), - [anon_sym_using] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_LT] = ACTIONS(3164), - [anon_sym_TILDE] = ACTIONS(3164), - [anon_sym_void] = ACTIONS(3164), - [anon_sym_delete] = ACTIONS(3164), - [anon_sym_PLUS_PLUS] = ACTIONS(3164), - [anon_sym_DASH_DASH] = ACTIONS(3164), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3164), - [sym_number] = ACTIONS(3164), - [sym_private_property_identifier] = ACTIONS(3164), - [sym_this] = ACTIONS(3164), - [sym_super] = ACTIONS(3164), - [sym_true] = ACTIONS(3164), - [sym_false] = ACTIONS(3164), - [sym_null] = ACTIONS(3164), - [sym_undefined] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3164), - [anon_sym_static] = ACTIONS(3164), - [anon_sym_readonly] = ACTIONS(3164), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_declare] = ACTIONS(3164), - [anon_sym_public] = ACTIONS(3164), - [anon_sym_private] = ACTIONS(3164), - [anon_sym_protected] = ACTIONS(3164), - [anon_sym_override] = ACTIONS(3164), - [anon_sym_module] = ACTIONS(3164), - [anon_sym_any] = ACTIONS(3164), - [anon_sym_number] = ACTIONS(3164), - [anon_sym_boolean] = ACTIONS(3164), - [anon_sym_string] = ACTIONS(3164), - [anon_sym_symbol] = ACTIONS(3164), - [anon_sym_object] = ACTIONS(3164), - [anon_sym_abstract] = ACTIONS(3164), - [anon_sym_interface] = ACTIONS(3164), - [anon_sym_enum] = ACTIONS(3164), - [sym_html_comment] = ACTIONS(5), - }, - [1281] = { - [sym_comment] = STATE(1281), + [1248] = { + [sym_comment] = STATE(1248), [sym_identifier] = ACTIONS(3262), [anon_sym_export] = ACTIONS(3262), [anon_sym_default] = ACTIONS(3262), @@ -168683,172 +165632,172 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3262), [sym_html_comment] = ACTIONS(5), }, - [1282] = { - [sym_comment] = STATE(1282), - [sym_identifier] = ACTIONS(3162), - [anon_sym_export] = ACTIONS(3162), - [anon_sym_default] = ACTIONS(3162), - [anon_sym_type] = ACTIONS(3162), - [anon_sym_namespace] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3162), - [anon_sym_RBRACE] = ACTIONS(3162), - [anon_sym_typeof] = ACTIONS(3162), - [anon_sym_import] = ACTIONS(3162), - [anon_sym_with] = ACTIONS(3162), - [anon_sym_var] = ACTIONS(3162), - [anon_sym_let] = ACTIONS(3162), - [anon_sym_const] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_switch] = ACTIONS(3162), - [anon_sym_for] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3162), - [anon_sym_await] = ACTIONS(3162), - [anon_sym_while] = ACTIONS(3162), - [anon_sym_do] = ACTIONS(3162), - [anon_sym_try] = ACTIONS(3162), - [anon_sym_break] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(3162), - [anon_sym_debugger] = ACTIONS(3162), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_throw] = ACTIONS(3162), - [anon_sym_SEMI] = ACTIONS(3162), - [anon_sym_case] = ACTIONS(3162), - [anon_sym_yield] = ACTIONS(3162), - [anon_sym_LBRACK] = ACTIONS(3162), - [anon_sym_LTtemplate_GT] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3162), - [anon_sym_class] = ACTIONS(3162), - [anon_sym_async] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3162), - [anon_sym_new] = ACTIONS(3162), - [anon_sym_using] = ACTIONS(3162), - [anon_sym_PLUS] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3162), - [anon_sym_SLASH] = ACTIONS(3162), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_void] = ACTIONS(3162), - [anon_sym_delete] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3162), - [anon_sym_DASH_DASH] = ACTIONS(3162), + [1249] = { + [sym_comment] = STATE(1249), + [sym_identifier] = ACTIONS(3188), + [anon_sym_export] = ACTIONS(3188), + [anon_sym_default] = ACTIONS(3188), + [anon_sym_type] = ACTIONS(3188), + [anon_sym_namespace] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_typeof] = ACTIONS(3188), + [anon_sym_import] = ACTIONS(3188), + [anon_sym_with] = ACTIONS(3188), + [anon_sym_var] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_await] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_break] = ACTIONS(3188), + [anon_sym_continue] = ACTIONS(3188), + [anon_sym_debugger] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_throw] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_case] = ACTIONS(3188), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LTtemplate_GT] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_SQUOTE] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_async] = ACTIONS(3188), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_void] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3188), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3162), - [sym_number] = ACTIONS(3162), - [sym_private_property_identifier] = ACTIONS(3162), - [sym_this] = ACTIONS(3162), - [sym_super] = ACTIONS(3162), - [sym_true] = ACTIONS(3162), - [sym_false] = ACTIONS(3162), - [sym_null] = ACTIONS(3162), - [sym_undefined] = ACTIONS(3162), - [anon_sym_AT] = ACTIONS(3162), - [anon_sym_static] = ACTIONS(3162), - [anon_sym_readonly] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(3162), - [anon_sym_set] = ACTIONS(3162), - [anon_sym_declare] = ACTIONS(3162), - [anon_sym_public] = ACTIONS(3162), - [anon_sym_private] = ACTIONS(3162), - [anon_sym_protected] = ACTIONS(3162), - [anon_sym_override] = ACTIONS(3162), - [anon_sym_module] = ACTIONS(3162), - [anon_sym_any] = ACTIONS(3162), - [anon_sym_number] = ACTIONS(3162), - [anon_sym_boolean] = ACTIONS(3162), - [anon_sym_string] = ACTIONS(3162), - [anon_sym_symbol] = ACTIONS(3162), - [anon_sym_object] = ACTIONS(3162), - [anon_sym_abstract] = ACTIONS(3162), - [anon_sym_interface] = ACTIONS(3162), - [anon_sym_enum] = ACTIONS(3162), + [anon_sym_BQUOTE] = ACTIONS(3188), + [sym_number] = ACTIONS(3188), + [sym_private_property_identifier] = ACTIONS(3188), + [sym_this] = ACTIONS(3188), + [sym_super] = ACTIONS(3188), + [sym_true] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [sym_null] = ACTIONS(3188), + [sym_undefined] = ACTIONS(3188), + [anon_sym_AT] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_readonly] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3188), + [anon_sym_set] = ACTIONS(3188), + [anon_sym_declare] = ACTIONS(3188), + [anon_sym_public] = ACTIONS(3188), + [anon_sym_private] = ACTIONS(3188), + [anon_sym_protected] = ACTIONS(3188), + [anon_sym_override] = ACTIONS(3188), + [anon_sym_module] = ACTIONS(3188), + [anon_sym_any] = ACTIONS(3188), + [anon_sym_number] = ACTIONS(3188), + [anon_sym_boolean] = ACTIONS(3188), + [anon_sym_string] = ACTIONS(3188), + [anon_sym_symbol] = ACTIONS(3188), + [anon_sym_object] = ACTIONS(3188), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_interface] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), [sym_html_comment] = ACTIONS(5), }, - [1283] = { - [sym_comment] = STATE(1283), - [sym_identifier] = ACTIONS(3264), - [anon_sym_export] = ACTIONS(3264), - [anon_sym_default] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_namespace] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_RBRACE] = ACTIONS(3264), - [anon_sym_typeof] = ACTIONS(3264), - [anon_sym_import] = ACTIONS(3264), - [anon_sym_with] = ACTIONS(3264), - [anon_sym_var] = ACTIONS(3264), - [anon_sym_let] = ACTIONS(3264), - [anon_sym_const] = ACTIONS(3264), - [anon_sym_BANG] = ACTIONS(3264), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_switch] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3264), - [anon_sym_await] = ACTIONS(3264), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_do] = ACTIONS(3264), - [anon_sym_try] = ACTIONS(3264), - [anon_sym_break] = ACTIONS(3264), - [anon_sym_continue] = ACTIONS(3264), - [anon_sym_debugger] = ACTIONS(3264), - [anon_sym_return] = ACTIONS(3264), - [anon_sym_throw] = ACTIONS(3264), - [anon_sym_SEMI] = ACTIONS(3264), - [anon_sym_case] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3264), - [anon_sym_LTtemplate_GT] = ACTIONS(3264), - [anon_sym_DQUOTE] = ACTIONS(3264), - [anon_sym_SQUOTE] = ACTIONS(3264), - [anon_sym_class] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3264), - [anon_sym_new] = ACTIONS(3264), - [anon_sym_using] = ACTIONS(3264), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_SLASH] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_TILDE] = ACTIONS(3264), - [anon_sym_void] = ACTIONS(3264), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_PLUS_PLUS] = ACTIONS(3264), - [anon_sym_DASH_DASH] = ACTIONS(3264), + [1250] = { + [sym_comment] = STATE(1250), + [sym_identifier] = ACTIONS(3188), + [anon_sym_export] = ACTIONS(3188), + [anon_sym_default] = ACTIONS(3188), + [anon_sym_type] = ACTIONS(3188), + [anon_sym_namespace] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_typeof] = ACTIONS(3188), + [anon_sym_import] = ACTIONS(3188), + [anon_sym_with] = ACTIONS(3188), + [anon_sym_var] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_await] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_break] = ACTIONS(3188), + [anon_sym_continue] = ACTIONS(3188), + [anon_sym_debugger] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_throw] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_case] = ACTIONS(3188), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LTtemplate_GT] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_SQUOTE] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_async] = ACTIONS(3188), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_void] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3188), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3264), - [sym_number] = ACTIONS(3264), - [sym_private_property_identifier] = ACTIONS(3264), - [sym_this] = ACTIONS(3264), - [sym_super] = ACTIONS(3264), - [sym_true] = ACTIONS(3264), - [sym_false] = ACTIONS(3264), - [sym_null] = ACTIONS(3264), - [sym_undefined] = ACTIONS(3264), - [anon_sym_AT] = ACTIONS(3264), - [anon_sym_static] = ACTIONS(3264), - [anon_sym_readonly] = ACTIONS(3264), - [anon_sym_get] = ACTIONS(3264), - [anon_sym_set] = ACTIONS(3264), - [anon_sym_declare] = ACTIONS(3264), - [anon_sym_public] = ACTIONS(3264), - [anon_sym_private] = ACTIONS(3264), - [anon_sym_protected] = ACTIONS(3264), - [anon_sym_override] = ACTIONS(3264), - [anon_sym_module] = ACTIONS(3264), - [anon_sym_any] = ACTIONS(3264), - [anon_sym_number] = ACTIONS(3264), - [anon_sym_boolean] = ACTIONS(3264), - [anon_sym_string] = ACTIONS(3264), - [anon_sym_symbol] = ACTIONS(3264), - [anon_sym_object] = ACTIONS(3264), - [anon_sym_abstract] = ACTIONS(3264), - [anon_sym_interface] = ACTIONS(3264), - [anon_sym_enum] = ACTIONS(3264), + [anon_sym_BQUOTE] = ACTIONS(3188), + [sym_number] = ACTIONS(3188), + [sym_private_property_identifier] = ACTIONS(3188), + [sym_this] = ACTIONS(3188), + [sym_super] = ACTIONS(3188), + [sym_true] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [sym_null] = ACTIONS(3188), + [sym_undefined] = ACTIONS(3188), + [anon_sym_AT] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_readonly] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3188), + [anon_sym_set] = ACTIONS(3188), + [anon_sym_declare] = ACTIONS(3188), + [anon_sym_public] = ACTIONS(3188), + [anon_sym_private] = ACTIONS(3188), + [anon_sym_protected] = ACTIONS(3188), + [anon_sym_override] = ACTIONS(3188), + [anon_sym_module] = ACTIONS(3188), + [anon_sym_any] = ACTIONS(3188), + [anon_sym_number] = ACTIONS(3188), + [anon_sym_boolean] = ACTIONS(3188), + [anon_sym_string] = ACTIONS(3188), + [anon_sym_symbol] = ACTIONS(3188), + [anon_sym_object] = ACTIONS(3188), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_interface] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), [sym_html_comment] = ACTIONS(5), }, - [1284] = { - [sym_comment] = STATE(1284), + [1251] = { + [sym_comment] = STATE(1251), [sym_identifier] = ACTIONS(3266), [anon_sym_export] = ACTIONS(3266), [anon_sym_default] = ACTIONS(3266), @@ -168929,1135 +165878,1217 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3266), [sym_html_comment] = ACTIONS(5), }, - [1285] = { - [sym_comment] = STATE(1285), - [sym_identifier] = ACTIONS(3160), - [anon_sym_export] = ACTIONS(3160), - [anon_sym_default] = ACTIONS(3160), - [anon_sym_type] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_RBRACE] = ACTIONS(3160), - [anon_sym_typeof] = ACTIONS(3160), - [anon_sym_import] = ACTIONS(3160), - [anon_sym_with] = ACTIONS(3160), - [anon_sym_var] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_BANG] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_await] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_debugger] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_case] = ACTIONS(3160), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LTtemplate_GT] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_SQUOTE] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_async] = ACTIONS(3160), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_SLASH] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_void] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_PLUS_PLUS] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3160), - [sym_number] = ACTIONS(3160), - [sym_private_property_identifier] = ACTIONS(3160), - [sym_this] = ACTIONS(3160), - [sym_super] = ACTIONS(3160), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [sym_null] = ACTIONS(3160), - [sym_undefined] = ACTIONS(3160), - [anon_sym_AT] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_readonly] = ACTIONS(3160), - [anon_sym_get] = ACTIONS(3160), - [anon_sym_set] = ACTIONS(3160), - [anon_sym_declare] = ACTIONS(3160), - [anon_sym_public] = ACTIONS(3160), - [anon_sym_private] = ACTIONS(3160), - [anon_sym_protected] = ACTIONS(3160), - [anon_sym_override] = ACTIONS(3160), - [anon_sym_module] = ACTIONS(3160), - [anon_sym_any] = ACTIONS(3160), - [anon_sym_number] = ACTIONS(3160), - [anon_sym_boolean] = ACTIONS(3160), - [anon_sym_string] = ACTIONS(3160), - [anon_sym_symbol] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3160), - [anon_sym_abstract] = ACTIONS(3160), - [anon_sym_interface] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), + [1252] = { + [sym_comment] = STATE(1252), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_finally] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), [sym_html_comment] = ACTIONS(5), }, - [1286] = { - [sym_comment] = STATE(1286), - [sym_identifier] = ACTIONS(3158), - [anon_sym_export] = ACTIONS(3158), - [anon_sym_default] = ACTIONS(3158), - [anon_sym_type] = ACTIONS(3158), - [anon_sym_namespace] = ACTIONS(3158), - [anon_sym_LBRACE] = ACTIONS(3158), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_typeof] = ACTIONS(3158), - [anon_sym_import] = ACTIONS(3158), - [anon_sym_with] = ACTIONS(3158), - [anon_sym_var] = ACTIONS(3158), - [anon_sym_let] = ACTIONS(3158), - [anon_sym_const] = ACTIONS(3158), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_switch] = ACTIONS(3158), - [anon_sym_for] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_await] = ACTIONS(3158), - [anon_sym_while] = ACTIONS(3158), - [anon_sym_do] = ACTIONS(3158), - [anon_sym_try] = ACTIONS(3158), - [anon_sym_break] = ACTIONS(3158), - [anon_sym_continue] = ACTIONS(3158), - [anon_sym_debugger] = ACTIONS(3158), - [anon_sym_return] = ACTIONS(3158), - [anon_sym_throw] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_case] = ACTIONS(3158), - [anon_sym_yield] = ACTIONS(3158), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_LTtemplate_GT] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_SQUOTE] = ACTIONS(3158), - [anon_sym_class] = ACTIONS(3158), - [anon_sym_async] = ACTIONS(3158), - [anon_sym_function] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3158), - [anon_sym_using] = ACTIONS(3158), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_SLASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3158), - [anon_sym_TILDE] = ACTIONS(3158), - [anon_sym_void] = ACTIONS(3158), - [anon_sym_delete] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_DASH_DASH] = ACTIONS(3158), + [1253] = { + [sym_comment] = STATE(1253), + [ts_builtin_sym_end] = ACTIONS(3438), + [sym_identifier] = ACTIONS(3176), + [anon_sym_export] = ACTIONS(3176), + [anon_sym_type] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3176), + [anon_sym_RBRACE] = ACTIONS(3176), + [anon_sym_typeof] = ACTIONS(3176), + [anon_sym_import] = ACTIONS(3176), + [anon_sym_with] = ACTIONS(3176), + [anon_sym_var] = ACTIONS(3176), + [anon_sym_let] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3176), + [anon_sym_else] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3176), + [anon_sym_await] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_debugger] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_LTtemplate_GT] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_async] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_SLASH] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_void] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3176), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3158), - [sym_number] = ACTIONS(3158), - [sym_private_property_identifier] = ACTIONS(3158), - [sym_this] = ACTIONS(3158), - [sym_super] = ACTIONS(3158), - [sym_true] = ACTIONS(3158), - [sym_false] = ACTIONS(3158), - [sym_null] = ACTIONS(3158), - [sym_undefined] = ACTIONS(3158), - [anon_sym_AT] = ACTIONS(3158), - [anon_sym_static] = ACTIONS(3158), - [anon_sym_readonly] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3158), - [anon_sym_set] = ACTIONS(3158), - [anon_sym_declare] = ACTIONS(3158), - [anon_sym_public] = ACTIONS(3158), - [anon_sym_private] = ACTIONS(3158), - [anon_sym_protected] = ACTIONS(3158), - [anon_sym_override] = ACTIONS(3158), - [anon_sym_module] = ACTIONS(3158), - [anon_sym_any] = ACTIONS(3158), - [anon_sym_number] = ACTIONS(3158), - [anon_sym_boolean] = ACTIONS(3158), - [anon_sym_string] = ACTIONS(3158), - [anon_sym_symbol] = ACTIONS(3158), - [anon_sym_object] = ACTIONS(3158), - [anon_sym_abstract] = ACTIONS(3158), - [anon_sym_interface] = ACTIONS(3158), - [anon_sym_enum] = ACTIONS(3158), + [anon_sym_BQUOTE] = ACTIONS(3176), + [sym_number] = ACTIONS(3176), + [sym_private_property_identifier] = ACTIONS(3176), + [sym_this] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_AT] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(3176), + [anon_sym_set] = ACTIONS(3176), + [anon_sym_declare] = ACTIONS(3176), + [anon_sym_public] = ACTIONS(3176), + [anon_sym_private] = ACTIONS(3176), + [anon_sym_protected] = ACTIONS(3176), + [anon_sym_override] = ACTIONS(3176), + [anon_sym_module] = ACTIONS(3176), + [anon_sym_any] = ACTIONS(3176), + [anon_sym_number] = ACTIONS(3176), + [anon_sym_boolean] = ACTIONS(3176), + [anon_sym_string] = ACTIONS(3176), + [anon_sym_symbol] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3176), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_interface] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), [sym_html_comment] = ACTIONS(5), }, - [1287] = { - [sym_comment] = STATE(1287), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1254] = { + [sym_comment] = STATE(1254), + [ts_builtin_sym_end] = ACTIONS(3440), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1288] = { - [sym_comment] = STATE(1288), - [ts_builtin_sym_end] = ACTIONS(2347), - [sym_identifier] = ACTIONS(2257), - [anon_sym_export] = ACTIONS(2257), - [anon_sym_type] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2257), - [anon_sym_LBRACE] = ACTIONS(2257), - [anon_sym_RBRACE] = ACTIONS(2257), - [anon_sym_typeof] = ACTIONS(2257), - [anon_sym_import] = ACTIONS(2257), - [anon_sym_with] = ACTIONS(2257), - [anon_sym_var] = ACTIONS(2257), - [anon_sym_let] = ACTIONS(2257), - [anon_sym_const] = ACTIONS(2257), - [anon_sym_BANG] = ACTIONS(2257), - [anon_sym_if] = ACTIONS(2257), - [anon_sym_switch] = ACTIONS(2257), - [anon_sym_for] = ACTIONS(2257), - [anon_sym_LPAREN] = ACTIONS(2257), - [anon_sym_await] = ACTIONS(2257), - [anon_sym_while] = ACTIONS(2257), - [anon_sym_do] = ACTIONS(2257), - [anon_sym_try] = ACTIONS(2257), - [anon_sym_break] = ACTIONS(2257), - [anon_sym_continue] = ACTIONS(2257), - [anon_sym_debugger] = ACTIONS(2257), - [anon_sym_return] = ACTIONS(2257), - [anon_sym_throw] = ACTIONS(2257), - [anon_sym_SEMI] = ACTIONS(2257), - [anon_sym_yield] = ACTIONS(2257), - [anon_sym_LBRACK] = ACTIONS(2257), - [anon_sym_LTtemplate_GT] = ACTIONS(2257), - [anon_sym_DQUOTE] = ACTIONS(2257), - [anon_sym_SQUOTE] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2257), - [anon_sym_async] = ACTIONS(2257), - [anon_sym_function] = ACTIONS(2257), - [anon_sym_new] = ACTIONS(2257), - [anon_sym_using] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2257), - [anon_sym_DASH] = ACTIONS(2257), - [anon_sym_SLASH] = ACTIONS(2257), - [anon_sym_LT] = ACTIONS(2257), - [anon_sym_TILDE] = ACTIONS(2257), - [anon_sym_void] = ACTIONS(2257), - [anon_sym_delete] = ACTIONS(2257), - [anon_sym_PLUS_PLUS] = ACTIONS(2257), - [anon_sym_DASH_DASH] = ACTIONS(2257), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2257), - [sym_number] = ACTIONS(2257), - [sym_private_property_identifier] = ACTIONS(2257), - [sym_this] = ACTIONS(2257), - [sym_super] = ACTIONS(2257), - [sym_true] = ACTIONS(2257), - [sym_false] = ACTIONS(2257), - [sym_null] = ACTIONS(2257), - [sym_undefined] = ACTIONS(2257), - [anon_sym_AT] = ACTIONS(2257), - [anon_sym_static] = ACTIONS(2257), - [anon_sym_readonly] = ACTIONS(2257), - [anon_sym_get] = ACTIONS(2257), - [anon_sym_set] = ACTIONS(2257), - [anon_sym_declare] = ACTIONS(2257), - [anon_sym_public] = ACTIONS(2257), - [anon_sym_private] = ACTIONS(2257), - [anon_sym_protected] = ACTIONS(2257), - [anon_sym_override] = ACTIONS(2257), - [anon_sym_module] = ACTIONS(2257), - [anon_sym_any] = ACTIONS(2257), - [anon_sym_number] = ACTIONS(2257), - [anon_sym_boolean] = ACTIONS(2257), - [anon_sym_string] = ACTIONS(2257), - [anon_sym_symbol] = ACTIONS(2257), - [anon_sym_object] = ACTIONS(2257), - [anon_sym_abstract] = ACTIONS(2257), - [anon_sym_interface] = ACTIONS(2257), - [anon_sym_enum] = ACTIONS(2257), - [sym__automatic_semicolon] = ACTIONS(2433), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, - [1289] = { - [sym_comment] = STATE(1289), - [ts_builtin_sym_end] = ACTIONS(2267), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(2213), - [anon_sym_type] = ACTIONS(2213), - [anon_sym_namespace] = ACTIONS(2213), - [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_RBRACE] = ACTIONS(2213), - [anon_sym_typeof] = ACTIONS(2213), - [anon_sym_import] = ACTIONS(2213), - [anon_sym_with] = ACTIONS(2213), - [anon_sym_var] = ACTIONS(2213), - [anon_sym_let] = ACTIONS(2213), - [anon_sym_const] = ACTIONS(2213), - [anon_sym_BANG] = ACTIONS(2213), - [anon_sym_if] = ACTIONS(2213), - [anon_sym_switch] = ACTIONS(2213), - [anon_sym_for] = ACTIONS(2213), - [anon_sym_LPAREN] = ACTIONS(2213), - [anon_sym_await] = ACTIONS(2213), - [anon_sym_while] = ACTIONS(2213), - [anon_sym_do] = ACTIONS(2213), - [anon_sym_try] = ACTIONS(2213), - [anon_sym_break] = ACTIONS(2213), - [anon_sym_continue] = ACTIONS(2213), - [anon_sym_debugger] = ACTIONS(2213), - [anon_sym_return] = ACTIONS(2213), - [anon_sym_throw] = ACTIONS(2213), - [anon_sym_SEMI] = ACTIONS(2213), - [anon_sym_yield] = ACTIONS(2213), - [anon_sym_LBRACK] = ACTIONS(2213), - [anon_sym_LTtemplate_GT] = ACTIONS(2213), - [anon_sym_DQUOTE] = ACTIONS(2213), - [anon_sym_SQUOTE] = ACTIONS(2213), - [anon_sym_class] = ACTIONS(2213), - [anon_sym_async] = ACTIONS(2213), - [anon_sym_function] = ACTIONS(2213), - [anon_sym_new] = ACTIONS(2213), - [anon_sym_using] = ACTIONS(2213), - [anon_sym_PLUS] = ACTIONS(2213), - [anon_sym_DASH] = ACTIONS(2213), - [anon_sym_SLASH] = ACTIONS(2213), - [anon_sym_LT] = ACTIONS(2213), - [anon_sym_TILDE] = ACTIONS(2213), - [anon_sym_void] = ACTIONS(2213), - [anon_sym_delete] = ACTIONS(2213), - [anon_sym_PLUS_PLUS] = ACTIONS(2213), - [anon_sym_DASH_DASH] = ACTIONS(2213), + [1255] = { + [sym_comment] = STATE(1255), + [ts_builtin_sym_end] = ACTIONS(3442), + [sym_identifier] = ACTIONS(3178), + [anon_sym_export] = ACTIONS(3178), + [anon_sym_type] = ACTIONS(3178), + [anon_sym_namespace] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3178), + [anon_sym_typeof] = ACTIONS(3178), + [anon_sym_import] = ACTIONS(3178), + [anon_sym_with] = ACTIONS(3178), + [anon_sym_var] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_else] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_switch] = ACTIONS(3178), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_await] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_break] = ACTIONS(3178), + [anon_sym_continue] = ACTIONS(3178), + [anon_sym_debugger] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LTtemplate_GT] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3178), + [anon_sym_class] = ACTIONS(3178), + [anon_sym_async] = ACTIONS(3178), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_using] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_void] = ACTIONS(3178), + [anon_sym_delete] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_DASH_DASH] = ACTIONS(3178), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2213), - [sym_number] = ACTIONS(2213), - [sym_private_property_identifier] = ACTIONS(2213), - [sym_this] = ACTIONS(2213), - [sym_super] = ACTIONS(2213), - [sym_true] = ACTIONS(2213), - [sym_false] = ACTIONS(2213), - [sym_null] = ACTIONS(2213), - [sym_undefined] = ACTIONS(2213), - [anon_sym_AT] = ACTIONS(2213), - [anon_sym_static] = ACTIONS(2213), - [anon_sym_readonly] = ACTIONS(2213), - [anon_sym_get] = ACTIONS(2213), - [anon_sym_set] = ACTIONS(2213), - [anon_sym_declare] = ACTIONS(2213), - [anon_sym_public] = ACTIONS(2213), - [anon_sym_private] = ACTIONS(2213), - [anon_sym_protected] = ACTIONS(2213), - [anon_sym_override] = ACTIONS(2213), - [anon_sym_module] = ACTIONS(2213), - [anon_sym_any] = ACTIONS(2213), - [anon_sym_number] = ACTIONS(2213), - [anon_sym_boolean] = ACTIONS(2213), - [anon_sym_string] = ACTIONS(2213), - [anon_sym_symbol] = ACTIONS(2213), - [anon_sym_object] = ACTIONS(2213), - [anon_sym_abstract] = ACTIONS(2213), - [anon_sym_interface] = ACTIONS(2213), - [anon_sym_enum] = ACTIONS(2213), - [sym__automatic_semicolon] = ACTIONS(2427), + [anon_sym_BQUOTE] = ACTIONS(3178), + [sym_number] = ACTIONS(3178), + [sym_private_property_identifier] = ACTIONS(3178), + [sym_this] = ACTIONS(3178), + [sym_super] = ACTIONS(3178), + [sym_true] = ACTIONS(3178), + [sym_false] = ACTIONS(3178), + [sym_null] = ACTIONS(3178), + [sym_undefined] = ACTIONS(3178), + [anon_sym_AT] = ACTIONS(3178), + [anon_sym_static] = ACTIONS(3178), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_get] = ACTIONS(3178), + [anon_sym_set] = ACTIONS(3178), + [anon_sym_declare] = ACTIONS(3178), + [anon_sym_public] = ACTIONS(3178), + [anon_sym_private] = ACTIONS(3178), + [anon_sym_protected] = ACTIONS(3178), + [anon_sym_override] = ACTIONS(3178), + [anon_sym_module] = ACTIONS(3178), + [anon_sym_any] = ACTIONS(3178), + [anon_sym_number] = ACTIONS(3178), + [anon_sym_boolean] = ACTIONS(3178), + [anon_sym_string] = ACTIONS(3178), + [anon_sym_symbol] = ACTIONS(3178), + [anon_sym_object] = ACTIONS(3178), + [anon_sym_abstract] = ACTIONS(3178), + [anon_sym_interface] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), [sym_html_comment] = ACTIONS(5), }, - [1290] = { - [sym_comment] = STATE(1290), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [1256] = { + [sym_comment] = STATE(1256), + [sym_identifier] = ACTIONS(3232), + [anon_sym_export] = ACTIONS(3232), + [anon_sym_default] = ACTIONS(3232), + [anon_sym_type] = ACTIONS(3232), + [anon_sym_namespace] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_typeof] = ACTIONS(3232), + [anon_sym_import] = ACTIONS(3232), + [anon_sym_with] = ACTIONS(3232), + [anon_sym_var] = ACTIONS(3232), + [anon_sym_let] = ACTIONS(3232), + [anon_sym_const] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3232), + [anon_sym_switch] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_await] = ACTIONS(3232), + [anon_sym_while] = ACTIONS(3232), + [anon_sym_do] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3232), + [anon_sym_break] = ACTIONS(3232), + [anon_sym_continue] = ACTIONS(3232), + [anon_sym_debugger] = ACTIONS(3232), + [anon_sym_return] = ACTIONS(3232), + [anon_sym_throw] = ACTIONS(3232), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_case] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_LTtemplate_GT] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3232), + [anon_sym_async] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3232), + [anon_sym_using] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3232), + [anon_sym_DASH] = ACTIONS(3232), + [anon_sym_SLASH] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_void] = ACTIONS(3232), + [anon_sym_delete] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3232), + [sym_number] = ACTIONS(3232), + [sym_private_property_identifier] = ACTIONS(3232), + [sym_this] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [sym_null] = ACTIONS(3232), + [sym_undefined] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_static] = ACTIONS(3232), + [anon_sym_readonly] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3232), + [anon_sym_set] = ACTIONS(3232), + [anon_sym_declare] = ACTIONS(3232), + [anon_sym_public] = ACTIONS(3232), + [anon_sym_private] = ACTIONS(3232), + [anon_sym_protected] = ACTIONS(3232), + [anon_sym_override] = ACTIONS(3232), + [anon_sym_module] = ACTIONS(3232), + [anon_sym_any] = ACTIONS(3232), + [anon_sym_number] = ACTIONS(3232), + [anon_sym_boolean] = ACTIONS(3232), + [anon_sym_string] = ACTIONS(3232), + [anon_sym_symbol] = ACTIONS(3232), + [anon_sym_object] = ACTIONS(3232), + [anon_sym_abstract] = ACTIONS(3232), + [anon_sym_interface] = ACTIONS(3232), + [anon_sym_enum] = ACTIONS(3232), [sym_html_comment] = ACTIONS(5), }, - [1291] = { - [sym_comment] = STATE(1291), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1257] = { + [sym_comment] = STATE(1257), + [ts_builtin_sym_end] = ACTIONS(3440), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, - [1292] = { - [sym_comment] = STATE(1292), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [1258] = { + [sym_comment] = STATE(1258), + [sym_identifier] = ACTIONS(3268), + [anon_sym_export] = ACTIONS(3268), + [anon_sym_default] = ACTIONS(3268), + [anon_sym_type] = ACTIONS(3268), + [anon_sym_namespace] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3268), + [anon_sym_import] = ACTIONS(3268), + [anon_sym_with] = ACTIONS(3268), + [anon_sym_var] = ACTIONS(3268), + [anon_sym_let] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_switch] = ACTIONS(3268), + [anon_sym_for] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_do] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_debugger] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3268), + [anon_sym_yield] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LTtemplate_GT] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_class] = ACTIONS(3268), + [anon_sym_async] = ACTIONS(3268), + [anon_sym_function] = ACTIONS(3268), + [anon_sym_new] = ACTIONS(3268), + [anon_sym_using] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_private_property_identifier] = ACTIONS(3268), + [sym_this] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_true] = ACTIONS(3268), + [sym_false] = ACTIONS(3268), + [sym_null] = ACTIONS(3268), + [sym_undefined] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_readonly] = ACTIONS(3268), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_declare] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_module] = ACTIONS(3268), + [anon_sym_any] = ACTIONS(3268), + [anon_sym_number] = ACTIONS(3268), + [anon_sym_boolean] = ACTIONS(3268), + [anon_sym_string] = ACTIONS(3268), + [anon_sym_symbol] = ACTIONS(3268), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_interface] = ACTIONS(3268), + [anon_sym_enum] = ACTIONS(3268), [sym_html_comment] = ACTIONS(5), }, - [1293] = { - [sym_comment] = STATE(1293), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [1259] = { + [sym_comment] = STATE(1259), + [sym_identifier] = ACTIONS(3268), + [anon_sym_export] = ACTIONS(3268), + [anon_sym_default] = ACTIONS(3268), + [anon_sym_type] = ACTIONS(3268), + [anon_sym_namespace] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3268), + [anon_sym_import] = ACTIONS(3268), + [anon_sym_with] = ACTIONS(3268), + [anon_sym_var] = ACTIONS(3268), + [anon_sym_let] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_switch] = ACTIONS(3268), + [anon_sym_for] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_do] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_debugger] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3268), + [anon_sym_yield] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LTtemplate_GT] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_class] = ACTIONS(3268), + [anon_sym_async] = ACTIONS(3268), + [anon_sym_function] = ACTIONS(3268), + [anon_sym_new] = ACTIONS(3268), + [anon_sym_using] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_private_property_identifier] = ACTIONS(3268), + [sym_this] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_true] = ACTIONS(3268), + [sym_false] = ACTIONS(3268), + [sym_null] = ACTIONS(3268), + [sym_undefined] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_readonly] = ACTIONS(3268), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_declare] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_module] = ACTIONS(3268), + [anon_sym_any] = ACTIONS(3268), + [anon_sym_number] = ACTIONS(3268), + [anon_sym_boolean] = ACTIONS(3268), + [anon_sym_string] = ACTIONS(3268), + [anon_sym_symbol] = ACTIONS(3268), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_interface] = ACTIONS(3268), + [anon_sym_enum] = ACTIONS(3268), [sym_html_comment] = ACTIONS(5), }, - [1294] = { - [sym_comment] = STATE(1294), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1260] = { + [sym_comment] = STATE(1260), + [sym_identifier] = ACTIONS(3194), + [anon_sym_export] = ACTIONS(3194), + [anon_sym_default] = ACTIONS(3194), + [anon_sym_type] = ACTIONS(3194), + [anon_sym_namespace] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_typeof] = ACTIONS(3194), + [anon_sym_import] = ACTIONS(3194), + [anon_sym_with] = ACTIONS(3194), + [anon_sym_var] = ACTIONS(3194), + [anon_sym_let] = ACTIONS(3194), + [anon_sym_const] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_switch] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_await] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_do] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_debugger] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_case] = ACTIONS(3194), + [anon_sym_yield] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_LTtemplate_GT] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3194), + [anon_sym_class] = ACTIONS(3194), + [anon_sym_async] = ACTIONS(3194), + [anon_sym_function] = ACTIONS(3194), + [anon_sym_new] = ACTIONS(3194), + [anon_sym_using] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_void] = ACTIONS(3194), + [anon_sym_delete] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3194), + [sym_number] = ACTIONS(3194), + [sym_private_property_identifier] = ACTIONS(3194), + [sym_this] = ACTIONS(3194), + [sym_super] = ACTIONS(3194), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_null] = ACTIONS(3194), + [sym_undefined] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_static] = ACTIONS(3194), + [anon_sym_readonly] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_declare] = ACTIONS(3194), + [anon_sym_public] = ACTIONS(3194), + [anon_sym_private] = ACTIONS(3194), + [anon_sym_protected] = ACTIONS(3194), + [anon_sym_override] = ACTIONS(3194), + [anon_sym_module] = ACTIONS(3194), + [anon_sym_any] = ACTIONS(3194), + [anon_sym_number] = ACTIONS(3194), + [anon_sym_boolean] = ACTIONS(3194), + [anon_sym_string] = ACTIONS(3194), + [anon_sym_symbol] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_abstract] = ACTIONS(3194), + [anon_sym_interface] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), [sym_html_comment] = ACTIONS(5), }, - [1295] = { - [sym_comment] = STATE(1295), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [1261] = { + [sym_comment] = STATE(1261), + [sym_identifier] = ACTIONS(3280), + [anon_sym_export] = ACTIONS(3280), + [anon_sym_default] = ACTIONS(3280), + [anon_sym_type] = ACTIONS(3280), + [anon_sym_namespace] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_typeof] = ACTIONS(3280), + [anon_sym_import] = ACTIONS(3280), + [anon_sym_with] = ACTIONS(3280), + [anon_sym_var] = ACTIONS(3280), + [anon_sym_let] = ACTIONS(3280), + [anon_sym_const] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_if] = ACTIONS(3280), + [anon_sym_switch] = ACTIONS(3280), + [anon_sym_for] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_await] = ACTIONS(3280), + [anon_sym_while] = ACTIONS(3280), + [anon_sym_do] = ACTIONS(3280), + [anon_sym_try] = ACTIONS(3280), + [anon_sym_break] = ACTIONS(3280), + [anon_sym_continue] = ACTIONS(3280), + [anon_sym_debugger] = ACTIONS(3280), + [anon_sym_return] = ACTIONS(3280), + [anon_sym_throw] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_case] = ACTIONS(3280), + [anon_sym_yield] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_LTtemplate_GT] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_class] = ACTIONS(3280), + [anon_sym_async] = ACTIONS(3280), + [anon_sym_function] = ACTIONS(3280), + [anon_sym_new] = ACTIONS(3280), + [anon_sym_using] = ACTIONS(3280), + [anon_sym_PLUS] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3280), + [anon_sym_SLASH] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_void] = ACTIONS(3280), + [anon_sym_delete] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3280), + [sym_number] = ACTIONS(3280), + [sym_private_property_identifier] = ACTIONS(3280), + [sym_this] = ACTIONS(3280), + [sym_super] = ACTIONS(3280), + [sym_true] = ACTIONS(3280), + [sym_false] = ACTIONS(3280), + [sym_null] = ACTIONS(3280), + [sym_undefined] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_static] = ACTIONS(3280), + [anon_sym_readonly] = ACTIONS(3280), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3280), + [anon_sym_declare] = ACTIONS(3280), + [anon_sym_public] = ACTIONS(3280), + [anon_sym_private] = ACTIONS(3280), + [anon_sym_protected] = ACTIONS(3280), + [anon_sym_override] = ACTIONS(3280), + [anon_sym_module] = ACTIONS(3280), + [anon_sym_any] = ACTIONS(3280), + [anon_sym_number] = ACTIONS(3280), + [anon_sym_boolean] = ACTIONS(3280), + [anon_sym_string] = ACTIONS(3280), + [anon_sym_symbol] = ACTIONS(3280), + [anon_sym_object] = ACTIONS(3280), + [anon_sym_abstract] = ACTIONS(3280), + [anon_sym_interface] = ACTIONS(3280), + [anon_sym_enum] = ACTIONS(3280), [sym_html_comment] = ACTIONS(5), }, - [1296] = { - [sym_comment] = STATE(1296), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1262] = { + [sym_comment] = STATE(1262), + [sym_identifier] = ACTIONS(3230), + [anon_sym_export] = ACTIONS(3230), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_namespace] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_typeof] = ACTIONS(3230), + [anon_sym_import] = ACTIONS(3230), + [anon_sym_with] = ACTIONS(3230), + [anon_sym_var] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_switch] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_await] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_debugger] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_throw] = ACTIONS(3230), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_case] = ACTIONS(3230), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LTtemplate_GT] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_SQUOTE] = ACTIONS(3230), + [anon_sym_class] = ACTIONS(3230), + [anon_sym_async] = ACTIONS(3230), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_using] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3230), + [anon_sym_void] = ACTIONS(3230), + [anon_sym_delete] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3230), + [sym_number] = ACTIONS(3230), + [sym_private_property_identifier] = ACTIONS(3230), + [sym_this] = ACTIONS(3230), + [sym_super] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_null] = ACTIONS(3230), + [sym_undefined] = ACTIONS(3230), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_readonly] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3230), + [anon_sym_set] = ACTIONS(3230), + [anon_sym_declare] = ACTIONS(3230), + [anon_sym_public] = ACTIONS(3230), + [anon_sym_private] = ACTIONS(3230), + [anon_sym_protected] = ACTIONS(3230), + [anon_sym_override] = ACTIONS(3230), + [anon_sym_module] = ACTIONS(3230), + [anon_sym_any] = ACTIONS(3230), + [anon_sym_number] = ACTIONS(3230), + [anon_sym_boolean] = ACTIONS(3230), + [anon_sym_string] = ACTIONS(3230), + [anon_sym_symbol] = ACTIONS(3230), + [anon_sym_object] = ACTIONS(3230), + [anon_sym_abstract] = ACTIONS(3230), + [anon_sym_interface] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), [sym_html_comment] = ACTIONS(5), }, - [1297] = { - [sym_comment] = STATE(1297), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1263] = { + [sym_comment] = STATE(1263), + [sym_identifier] = ACTIONS(3228), + [anon_sym_export] = ACTIONS(3228), + [anon_sym_default] = ACTIONS(3228), + [anon_sym_type] = ACTIONS(3228), + [anon_sym_namespace] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_typeof] = ACTIONS(3228), + [anon_sym_import] = ACTIONS(3228), + [anon_sym_with] = ACTIONS(3228), + [anon_sym_var] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_const] = ACTIONS(3228), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_switch] = ACTIONS(3228), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_await] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_debugger] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_case] = ACTIONS(3228), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LTtemplate_GT] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3228), + [anon_sym_class] = ACTIONS(3228), + [anon_sym_async] = ACTIONS(3228), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_using] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_void] = ACTIONS(3228), + [anon_sym_delete] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3228), + [sym_number] = ACTIONS(3228), + [sym_private_property_identifier] = ACTIONS(3228), + [sym_this] = ACTIONS(3228), + [sym_super] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_null] = ACTIONS(3228), + [sym_undefined] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3228), + [anon_sym_static] = ACTIONS(3228), + [anon_sym_readonly] = ACTIONS(3228), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_declare] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_module] = ACTIONS(3228), + [anon_sym_any] = ACTIONS(3228), + [anon_sym_number] = ACTIONS(3228), + [anon_sym_boolean] = ACTIONS(3228), + [anon_sym_string] = ACTIONS(3228), + [anon_sym_symbol] = ACTIONS(3228), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_interface] = ACTIONS(3228), + [anon_sym_enum] = ACTIONS(3228), [sym_html_comment] = ACTIONS(5), }, - [1298] = { - [sym_comment] = STATE(1298), - [sym_identifier] = ACTIONS(3152), - [anon_sym_export] = ACTIONS(3152), - [anon_sym_default] = ACTIONS(3152), - [anon_sym_type] = ACTIONS(3152), - [anon_sym_namespace] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(3152), - [anon_sym_with] = ACTIONS(3152), - [anon_sym_var] = ACTIONS(3152), - [anon_sym_let] = ACTIONS(3152), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_await] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_debugger] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_throw] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3152), - [anon_sym_case] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_LTtemplate_GT] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_async] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_using] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_DASH] = ACTIONS(3152), - [anon_sym_SLASH] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3152), - [anon_sym_void] = ACTIONS(3152), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3152), - [sym_number] = ACTIONS(3152), - [sym_private_property_identifier] = ACTIONS(3152), - [sym_this] = ACTIONS(3152), - [sym_super] = ACTIONS(3152), - [sym_true] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [sym_undefined] = ACTIONS(3152), - [anon_sym_AT] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_readonly] = ACTIONS(3152), + [1264] = { + [sym_comment] = STATE(1264), + [sym_identifier] = ACTIONS(3222), + [anon_sym_export] = ACTIONS(3222), + [anon_sym_default] = ACTIONS(3222), + [anon_sym_type] = ACTIONS(3222), + [anon_sym_namespace] = ACTIONS(3222), + [anon_sym_LBRACE] = ACTIONS(3222), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_typeof] = ACTIONS(3222), + [anon_sym_import] = ACTIONS(3222), + [anon_sym_with] = ACTIONS(3222), + [anon_sym_var] = ACTIONS(3222), + [anon_sym_let] = ACTIONS(3222), + [anon_sym_const] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_switch] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_await] = ACTIONS(3222), + [anon_sym_while] = ACTIONS(3222), + [anon_sym_do] = ACTIONS(3222), + [anon_sym_try] = ACTIONS(3222), + [anon_sym_break] = ACTIONS(3222), + [anon_sym_continue] = ACTIONS(3222), + [anon_sym_debugger] = ACTIONS(3222), + [anon_sym_return] = ACTIONS(3222), + [anon_sym_throw] = ACTIONS(3222), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_case] = ACTIONS(3222), + [anon_sym_yield] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_LTtemplate_GT] = ACTIONS(3222), + [anon_sym_DQUOTE] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3222), + [anon_sym_class] = ACTIONS(3222), + [anon_sym_async] = ACTIONS(3222), + [anon_sym_function] = ACTIONS(3222), + [anon_sym_new] = ACTIONS(3222), + [anon_sym_using] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3222), + [anon_sym_DASH] = ACTIONS(3222), + [anon_sym_SLASH] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3222), + [anon_sym_void] = ACTIONS(3222), + [anon_sym_delete] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3222), + [sym_number] = ACTIONS(3222), + [sym_private_property_identifier] = ACTIONS(3222), + [sym_this] = ACTIONS(3222), + [sym_super] = ACTIONS(3222), + [sym_true] = ACTIONS(3222), + [sym_false] = ACTIONS(3222), + [sym_null] = ACTIONS(3222), + [sym_undefined] = ACTIONS(3222), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_static] = ACTIONS(3222), + [anon_sym_readonly] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3222), + [anon_sym_set] = ACTIONS(3222), + [anon_sym_declare] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3222), + [anon_sym_private] = ACTIONS(3222), + [anon_sym_protected] = ACTIONS(3222), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_module] = ACTIONS(3222), + [anon_sym_any] = ACTIONS(3222), + [anon_sym_number] = ACTIONS(3222), + [anon_sym_boolean] = ACTIONS(3222), + [anon_sym_string] = ACTIONS(3222), + [anon_sym_symbol] = ACTIONS(3222), + [anon_sym_object] = ACTIONS(3222), + [anon_sym_abstract] = ACTIONS(3222), + [anon_sym_interface] = ACTIONS(3222), + [anon_sym_enum] = ACTIONS(3222), + [sym_html_comment] = ACTIONS(5), + }, + [1265] = { + [sym_comment] = STATE(1265), + [sym_identifier] = ACTIONS(3300), + [anon_sym_export] = ACTIONS(3300), + [anon_sym_default] = ACTIONS(3300), + [anon_sym_type] = ACTIONS(3300), + [anon_sym_namespace] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_typeof] = ACTIONS(3300), + [anon_sym_import] = ACTIONS(3300), + [anon_sym_with] = ACTIONS(3300), + [anon_sym_var] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_const] = ACTIONS(3300), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_switch] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_await] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_debugger] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_throw] = ACTIONS(3300), + [anon_sym_SEMI] = ACTIONS(3300), + [anon_sym_case] = ACTIONS(3300), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LTtemplate_GT] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [anon_sym_class] = ACTIONS(3300), + [anon_sym_async] = ACTIONS(3300), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_using] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3300), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_void] = ACTIONS(3300), + [anon_sym_delete] = ACTIONS(3300), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3300), + [sym_number] = ACTIONS(3300), + [sym_private_property_identifier] = ACTIONS(3300), + [sym_this] = ACTIONS(3300), + [sym_super] = ACTIONS(3300), + [sym_true] = ACTIONS(3300), + [sym_false] = ACTIONS(3300), + [sym_null] = ACTIONS(3300), + [sym_undefined] = ACTIONS(3300), + [anon_sym_AT] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_readonly] = ACTIONS(3300), + [anon_sym_get] = ACTIONS(3300), + [anon_sym_set] = ACTIONS(3300), + [anon_sym_declare] = ACTIONS(3300), + [anon_sym_public] = ACTIONS(3300), + [anon_sym_private] = ACTIONS(3300), + [anon_sym_protected] = ACTIONS(3300), + [anon_sym_override] = ACTIONS(3300), + [anon_sym_module] = ACTIONS(3300), + [anon_sym_any] = ACTIONS(3300), + [anon_sym_number] = ACTIONS(3300), + [anon_sym_boolean] = ACTIONS(3300), + [anon_sym_string] = ACTIONS(3300), + [anon_sym_symbol] = ACTIONS(3300), + [anon_sym_object] = ACTIONS(3300), + [anon_sym_abstract] = ACTIONS(3300), + [anon_sym_interface] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), + [sym_html_comment] = ACTIONS(5), + }, + [1266] = { + [sym_comment] = STATE(1266), + [sym_identifier] = ACTIONS(3152), + [anon_sym_export] = ACTIONS(3152), + [anon_sym_default] = ACTIONS(3152), + [anon_sym_type] = ACTIONS(3152), + [anon_sym_namespace] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_RBRACE] = ACTIONS(3152), + [anon_sym_typeof] = ACTIONS(3152), + [anon_sym_import] = ACTIONS(3152), + [anon_sym_with] = ACTIONS(3152), + [anon_sym_var] = ACTIONS(3152), + [anon_sym_let] = ACTIONS(3152), + [anon_sym_const] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_switch] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_await] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_do] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_debugger] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3152), + [anon_sym_case] = ACTIONS(3152), + [anon_sym_yield] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3152), + [anon_sym_LTtemplate_GT] = ACTIONS(3152), + [anon_sym_DQUOTE] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3152), + [anon_sym_class] = ACTIONS(3152), + [anon_sym_async] = ACTIONS(3152), + [anon_sym_function] = ACTIONS(3152), + [anon_sym_new] = ACTIONS(3152), + [anon_sym_using] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(3152), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_void] = ACTIONS(3152), + [anon_sym_delete] = ACTIONS(3152), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3152), + [sym_number] = ACTIONS(3152), + [sym_private_property_identifier] = ACTIONS(3152), + [sym_this] = ACTIONS(3152), + [sym_super] = ACTIONS(3152), + [sym_true] = ACTIONS(3152), + [sym_false] = ACTIONS(3152), + [sym_null] = ACTIONS(3152), + [sym_undefined] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3152), + [anon_sym_static] = ACTIONS(3152), + [anon_sym_readonly] = ACTIONS(3152), [anon_sym_get] = ACTIONS(3152), [anon_sym_set] = ACTIONS(3152), [anon_sym_declare] = ACTIONS(3152), @@ -170077,172 +167108,336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3152), [sym_html_comment] = ACTIONS(5), }, - [1299] = { - [sym_comment] = STATE(1299), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1267] = { + [sym_comment] = STATE(1267), + [sym_identifier] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3192), + [anon_sym_default] = ACTIONS(3192), + [anon_sym_type] = ACTIONS(3192), + [anon_sym_namespace] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3192), + [anon_sym_RBRACE] = ACTIONS(3192), + [anon_sym_typeof] = ACTIONS(3192), + [anon_sym_import] = ACTIONS(3192), + [anon_sym_with] = ACTIONS(3192), + [anon_sym_var] = ACTIONS(3192), + [anon_sym_let] = ACTIONS(3192), + [anon_sym_const] = ACTIONS(3192), + [anon_sym_BANG] = ACTIONS(3192), + [anon_sym_if] = ACTIONS(3192), + [anon_sym_switch] = ACTIONS(3192), + [anon_sym_for] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_await] = ACTIONS(3192), + [anon_sym_while] = ACTIONS(3192), + [anon_sym_do] = ACTIONS(3192), + [anon_sym_try] = ACTIONS(3192), + [anon_sym_break] = ACTIONS(3192), + [anon_sym_continue] = ACTIONS(3192), + [anon_sym_debugger] = ACTIONS(3192), + [anon_sym_return] = ACTIONS(3192), + [anon_sym_throw] = ACTIONS(3192), + [anon_sym_SEMI] = ACTIONS(3192), + [anon_sym_case] = ACTIONS(3192), + [anon_sym_yield] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_LTtemplate_GT] = ACTIONS(3192), + [anon_sym_DQUOTE] = ACTIONS(3192), + [anon_sym_SQUOTE] = ACTIONS(3192), + [anon_sym_class] = ACTIONS(3192), + [anon_sym_async] = ACTIONS(3192), + [anon_sym_function] = ACTIONS(3192), + [anon_sym_new] = ACTIONS(3192), + [anon_sym_using] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_SLASH] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3192), + [anon_sym_TILDE] = ACTIONS(3192), + [anon_sym_void] = ACTIONS(3192), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_PLUS_PLUS] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3192), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3192), + [sym_number] = ACTIONS(3192), + [sym_private_property_identifier] = ACTIONS(3192), + [sym_this] = ACTIONS(3192), + [sym_super] = ACTIONS(3192), + [sym_true] = ACTIONS(3192), + [sym_false] = ACTIONS(3192), + [sym_null] = ACTIONS(3192), + [sym_undefined] = ACTIONS(3192), + [anon_sym_AT] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3192), + [anon_sym_readonly] = ACTIONS(3192), + [anon_sym_get] = ACTIONS(3192), + [anon_sym_set] = ACTIONS(3192), + [anon_sym_declare] = ACTIONS(3192), + [anon_sym_public] = ACTIONS(3192), + [anon_sym_private] = ACTIONS(3192), + [anon_sym_protected] = ACTIONS(3192), + [anon_sym_override] = ACTIONS(3192), + [anon_sym_module] = ACTIONS(3192), + [anon_sym_any] = ACTIONS(3192), + [anon_sym_number] = ACTIONS(3192), + [anon_sym_boolean] = ACTIONS(3192), + [anon_sym_string] = ACTIONS(3192), + [anon_sym_symbol] = ACTIONS(3192), + [anon_sym_object] = ACTIONS(3192), + [anon_sym_abstract] = ACTIONS(3192), + [anon_sym_interface] = ACTIONS(3192), + [anon_sym_enum] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [1300] = { - [sym_comment] = STATE(1300), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1268] = { + [sym_comment] = STATE(1268), + [ts_builtin_sym_end] = ACTIONS(3444), + [sym_identifier] = ACTIONS(3292), + [anon_sym_export] = ACTIONS(3292), + [anon_sym_type] = ACTIONS(3292), + [anon_sym_namespace] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_typeof] = ACTIONS(3292), + [anon_sym_import] = ACTIONS(3292), + [anon_sym_with] = ACTIONS(3292), + [anon_sym_var] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_const] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_else] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_switch] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_await] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_break] = ACTIONS(3292), + [anon_sym_continue] = ACTIONS(3292), + [anon_sym_debugger] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_throw] = ACTIONS(3292), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LTtemplate_GT] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_class] = ACTIONS(3292), + [anon_sym_async] = ACTIONS(3292), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_using] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_SLASH] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_void] = ACTIONS(3292), + [anon_sym_delete] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_DASH_DASH] = ACTIONS(3292), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3292), + [sym_number] = ACTIONS(3292), + [sym_private_property_identifier] = ACTIONS(3292), + [sym_this] = ACTIONS(3292), + [sym_super] = ACTIONS(3292), + [sym_true] = ACTIONS(3292), + [sym_false] = ACTIONS(3292), + [sym_null] = ACTIONS(3292), + [sym_undefined] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3292), + [anon_sym_static] = ACTIONS(3292), + [anon_sym_readonly] = ACTIONS(3292), + [anon_sym_get] = ACTIONS(3292), + [anon_sym_set] = ACTIONS(3292), + [anon_sym_declare] = ACTIONS(3292), + [anon_sym_public] = ACTIONS(3292), + [anon_sym_private] = ACTIONS(3292), + [anon_sym_protected] = ACTIONS(3292), + [anon_sym_override] = ACTIONS(3292), + [anon_sym_module] = ACTIONS(3292), + [anon_sym_any] = ACTIONS(3292), + [anon_sym_number] = ACTIONS(3292), + [anon_sym_boolean] = ACTIONS(3292), + [anon_sym_string] = ACTIONS(3292), + [anon_sym_symbol] = ACTIONS(3292), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_abstract] = ACTIONS(3292), + [anon_sym_interface] = ACTIONS(3292), + [anon_sym_enum] = ACTIONS(3292), [sym_html_comment] = ACTIONS(5), }, - [1301] = { - [sym_comment] = STATE(1301), + [1269] = { + [sym_comment] = STATE(1269), + [sym_identifier] = ACTIONS(3236), + [anon_sym_export] = ACTIONS(3236), + [anon_sym_default] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3236), + [anon_sym_namespace] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_RBRACE] = ACTIONS(3236), + [anon_sym_typeof] = ACTIONS(3236), + [anon_sym_import] = ACTIONS(3236), + [anon_sym_with] = ACTIONS(3236), + [anon_sym_var] = ACTIONS(3236), + [anon_sym_let] = ACTIONS(3236), + [anon_sym_const] = ACTIONS(3236), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_switch] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3236), + [anon_sym_await] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_do] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_debugger] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3236), + [anon_sym_case] = ACTIONS(3236), + [anon_sym_yield] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_LTtemplate_GT] = ACTIONS(3236), + [anon_sym_DQUOTE] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3236), + [anon_sym_class] = ACTIONS(3236), + [anon_sym_async] = ACTIONS(3236), + [anon_sym_function] = ACTIONS(3236), + [anon_sym_new] = ACTIONS(3236), + [anon_sym_using] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_TILDE] = ACTIONS(3236), + [anon_sym_void] = ACTIONS(3236), + [anon_sym_delete] = ACTIONS(3236), + [anon_sym_PLUS_PLUS] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3236), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3236), + [sym_number] = ACTIONS(3236), + [sym_private_property_identifier] = ACTIONS(3236), + [sym_this] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_true] = ACTIONS(3236), + [sym_false] = ACTIONS(3236), + [sym_null] = ACTIONS(3236), + [sym_undefined] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3236), + [anon_sym_readonly] = ACTIONS(3236), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_declare] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_module] = ACTIONS(3236), + [anon_sym_any] = ACTIONS(3236), + [anon_sym_number] = ACTIONS(3236), + [anon_sym_boolean] = ACTIONS(3236), + [anon_sym_string] = ACTIONS(3236), + [anon_sym_symbol] = ACTIONS(3236), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_interface] = ACTIONS(3236), + [anon_sym_enum] = ACTIONS(3236), + [sym_html_comment] = ACTIONS(5), + }, + [1270] = { + [sym_comment] = STATE(1270), + [ts_builtin_sym_end] = ACTIONS(3446), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_else] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), + [sym_html_comment] = ACTIONS(5), + }, + [1271] = { + [sym_comment] = STATE(1271), [sym_identifier] = ACTIONS(3150), [anon_sym_export] = ACTIONS(3150), [anon_sym_default] = ACTIONS(3150), @@ -170323,582 +167518,746 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3150), [sym_html_comment] = ACTIONS(5), }, - [1302] = { - [sym_comment] = STATE(1302), - [sym_identifier] = ACTIONS(3148), - [anon_sym_export] = ACTIONS(3148), - [anon_sym_default] = ACTIONS(3148), - [anon_sym_type] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3148), - [anon_sym_RBRACE] = ACTIONS(3148), - [anon_sym_typeof] = ACTIONS(3148), - [anon_sym_import] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3148), - [anon_sym_var] = ACTIONS(3148), - [anon_sym_let] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3148), - [anon_sym_await] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_debugger] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3148), - [anon_sym_case] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_LTtemplate_GT] = ACTIONS(3148), - [anon_sym_DQUOTE] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_async] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_SLASH] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_void] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_PLUS_PLUS] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3148), + [1272] = { + [sym_comment] = STATE(1272), + [ts_builtin_sym_end] = ACTIONS(3448), + [sym_identifier] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3192), + [anon_sym_type] = ACTIONS(3192), + [anon_sym_namespace] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3192), + [anon_sym_RBRACE] = ACTIONS(3192), + [anon_sym_typeof] = ACTIONS(3192), + [anon_sym_import] = ACTIONS(3192), + [anon_sym_with] = ACTIONS(3192), + [anon_sym_var] = ACTIONS(3192), + [anon_sym_let] = ACTIONS(3192), + [anon_sym_const] = ACTIONS(3192), + [anon_sym_BANG] = ACTIONS(3192), + [anon_sym_else] = ACTIONS(3192), + [anon_sym_if] = ACTIONS(3192), + [anon_sym_switch] = ACTIONS(3192), + [anon_sym_for] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_await] = ACTIONS(3192), + [anon_sym_while] = ACTIONS(3192), + [anon_sym_do] = ACTIONS(3192), + [anon_sym_try] = ACTIONS(3192), + [anon_sym_break] = ACTIONS(3192), + [anon_sym_continue] = ACTIONS(3192), + [anon_sym_debugger] = ACTIONS(3192), + [anon_sym_return] = ACTIONS(3192), + [anon_sym_throw] = ACTIONS(3192), + [anon_sym_SEMI] = ACTIONS(3192), + [anon_sym_yield] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_LTtemplate_GT] = ACTIONS(3192), + [anon_sym_DQUOTE] = ACTIONS(3192), + [anon_sym_SQUOTE] = ACTIONS(3192), + [anon_sym_class] = ACTIONS(3192), + [anon_sym_async] = ACTIONS(3192), + [anon_sym_function] = ACTIONS(3192), + [anon_sym_new] = ACTIONS(3192), + [anon_sym_using] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_SLASH] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3192), + [anon_sym_TILDE] = ACTIONS(3192), + [anon_sym_void] = ACTIONS(3192), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_PLUS_PLUS] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3192), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3148), - [sym_number] = ACTIONS(3148), - [sym_private_property_identifier] = ACTIONS(3148), - [sym_this] = ACTIONS(3148), - [sym_super] = ACTIONS(3148), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [sym_null] = ACTIONS(3148), - [sym_undefined] = ACTIONS(3148), - [anon_sym_AT] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_readonly] = ACTIONS(3148), - [anon_sym_get] = ACTIONS(3148), - [anon_sym_set] = ACTIONS(3148), - [anon_sym_declare] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_module] = ACTIONS(3148), - [anon_sym_any] = ACTIONS(3148), - [anon_sym_number] = ACTIONS(3148), - [anon_sym_boolean] = ACTIONS(3148), - [anon_sym_string] = ACTIONS(3148), - [anon_sym_symbol] = ACTIONS(3148), - [anon_sym_object] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_interface] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), + [anon_sym_BQUOTE] = ACTIONS(3192), + [sym_number] = ACTIONS(3192), + [sym_private_property_identifier] = ACTIONS(3192), + [sym_this] = ACTIONS(3192), + [sym_super] = ACTIONS(3192), + [sym_true] = ACTIONS(3192), + [sym_false] = ACTIONS(3192), + [sym_null] = ACTIONS(3192), + [sym_undefined] = ACTIONS(3192), + [anon_sym_AT] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3192), + [anon_sym_readonly] = ACTIONS(3192), + [anon_sym_get] = ACTIONS(3192), + [anon_sym_set] = ACTIONS(3192), + [anon_sym_declare] = ACTIONS(3192), + [anon_sym_public] = ACTIONS(3192), + [anon_sym_private] = ACTIONS(3192), + [anon_sym_protected] = ACTIONS(3192), + [anon_sym_override] = ACTIONS(3192), + [anon_sym_module] = ACTIONS(3192), + [anon_sym_any] = ACTIONS(3192), + [anon_sym_number] = ACTIONS(3192), + [anon_sym_boolean] = ACTIONS(3192), + [anon_sym_string] = ACTIONS(3192), + [anon_sym_symbol] = ACTIONS(3192), + [anon_sym_object] = ACTIONS(3192), + [anon_sym_abstract] = ACTIONS(3192), + [anon_sym_interface] = ACTIONS(3192), + [anon_sym_enum] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [1303] = { - [sym_comment] = STATE(1303), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1273] = { + [sym_comment] = STATE(1273), + [ts_builtin_sym_end] = ACTIONS(3450), + [sym_identifier] = ACTIONS(3264), + [anon_sym_export] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_namespace] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_RBRACE] = ACTIONS(3264), + [anon_sym_typeof] = ACTIONS(3264), + [anon_sym_import] = ACTIONS(3264), + [anon_sym_with] = ACTIONS(3264), + [anon_sym_var] = ACTIONS(3264), + [anon_sym_let] = ACTIONS(3264), + [anon_sym_const] = ACTIONS(3264), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_switch] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3264), + [anon_sym_await] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_do] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_debugger] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_LTtemplate_GT] = ACTIONS(3264), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3264), + [anon_sym_class] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3264), + [anon_sym_using] = ACTIONS(3264), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_void] = ACTIONS(3264), + [anon_sym_delete] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_DASH_DASH] = ACTIONS(3264), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3264), + [sym_number] = ACTIONS(3264), + [sym_private_property_identifier] = ACTIONS(3264), + [sym_this] = ACTIONS(3264), + [sym_super] = ACTIONS(3264), + [sym_true] = ACTIONS(3264), + [sym_false] = ACTIONS(3264), + [sym_null] = ACTIONS(3264), + [sym_undefined] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3264), + [anon_sym_static] = ACTIONS(3264), + [anon_sym_readonly] = ACTIONS(3264), + [anon_sym_get] = ACTIONS(3264), + [anon_sym_set] = ACTIONS(3264), + [anon_sym_declare] = ACTIONS(3264), + [anon_sym_public] = ACTIONS(3264), + [anon_sym_private] = ACTIONS(3264), + [anon_sym_protected] = ACTIONS(3264), + [anon_sym_override] = ACTIONS(3264), + [anon_sym_module] = ACTIONS(3264), + [anon_sym_any] = ACTIONS(3264), + [anon_sym_number] = ACTIONS(3264), + [anon_sym_boolean] = ACTIONS(3264), + [anon_sym_string] = ACTIONS(3264), + [anon_sym_symbol] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_abstract] = ACTIONS(3264), + [anon_sym_interface] = ACTIONS(3264), + [anon_sym_enum] = ACTIONS(3264), [sym_html_comment] = ACTIONS(5), }, - [1304] = { - [sym_comment] = STATE(1304), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), + [1274] = { + [sym_comment] = STATE(1274), + [sym_identifier] = ACTIONS(3308), + [anon_sym_export] = ACTIONS(3308), + [anon_sym_default] = ACTIONS(3308), + [anon_sym_type] = ACTIONS(3308), + [anon_sym_namespace] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_typeof] = ACTIONS(3308), + [anon_sym_import] = ACTIONS(3308), + [anon_sym_with] = ACTIONS(3308), + [anon_sym_var] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_switch] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_await] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_debugger] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_throw] = ACTIONS(3308), + [anon_sym_SEMI] = ACTIONS(3308), + [anon_sym_case] = ACTIONS(3308), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LTtemplate_GT] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_class] = ACTIONS(3308), + [anon_sym_async] = ACTIONS(3308), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_using] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_SLASH] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_void] = ACTIONS(3308), + [anon_sym_delete] = ACTIONS(3308), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3308), + [sym_number] = ACTIONS(3308), + [sym_private_property_identifier] = ACTIONS(3308), + [sym_this] = ACTIONS(3308), + [sym_super] = ACTIONS(3308), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [sym_null] = ACTIONS(3308), + [sym_undefined] = ACTIONS(3308), + [anon_sym_AT] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_readonly] = ACTIONS(3308), + [anon_sym_get] = ACTIONS(3308), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_declare] = ACTIONS(3308), + [anon_sym_public] = ACTIONS(3308), + [anon_sym_private] = ACTIONS(3308), + [anon_sym_protected] = ACTIONS(3308), + [anon_sym_override] = ACTIONS(3308), + [anon_sym_module] = ACTIONS(3308), + [anon_sym_any] = ACTIONS(3308), + [anon_sym_number] = ACTIONS(3308), + [anon_sym_boolean] = ACTIONS(3308), + [anon_sym_string] = ACTIONS(3308), + [anon_sym_symbol] = ACTIONS(3308), + [anon_sym_object] = ACTIONS(3308), + [anon_sym_abstract] = ACTIONS(3308), + [anon_sym_interface] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), + [sym_html_comment] = ACTIONS(5), }, - [1305] = { - [sym_comment] = STATE(1305), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1275] = { + [sym_comment] = STATE(1275), + [ts_builtin_sym_end] = ACTIONS(3452), + [sym_identifier] = ACTIONS(3294), + [anon_sym_export] = ACTIONS(3294), + [anon_sym_type] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3294), + [anon_sym_RBRACE] = ACTIONS(3294), + [anon_sym_typeof] = ACTIONS(3294), + [anon_sym_import] = ACTIONS(3294), + [anon_sym_with] = ACTIONS(3294), + [anon_sym_var] = ACTIONS(3294), + [anon_sym_let] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_BANG] = ACTIONS(3294), + [anon_sym_else] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3294), + [anon_sym_switch] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3294), + [anon_sym_await] = ACTIONS(3294), + [anon_sym_while] = ACTIONS(3294), + [anon_sym_do] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3294), + [anon_sym_break] = ACTIONS(3294), + [anon_sym_continue] = ACTIONS(3294), + [anon_sym_debugger] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3294), + [anon_sym_throw] = ACTIONS(3294), + [anon_sym_SEMI] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_LTtemplate_GT] = ACTIONS(3294), + [anon_sym_DQUOTE] = ACTIONS(3294), + [anon_sym_SQUOTE] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_async] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_using] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3294), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_SLASH] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3294), + [anon_sym_TILDE] = ACTIONS(3294), + [anon_sym_void] = ACTIONS(3294), + [anon_sym_delete] = ACTIONS(3294), + [anon_sym_PLUS_PLUS] = ACTIONS(3294), + [anon_sym_DASH_DASH] = ACTIONS(3294), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3294), + [sym_number] = ACTIONS(3294), + [sym_private_property_identifier] = ACTIONS(3294), + [sym_this] = ACTIONS(3294), + [sym_super] = ACTIONS(3294), + [sym_true] = ACTIONS(3294), + [sym_false] = ACTIONS(3294), + [sym_null] = ACTIONS(3294), + [sym_undefined] = ACTIONS(3294), + [anon_sym_AT] = ACTIONS(3294), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_readonly] = ACTIONS(3294), + [anon_sym_get] = ACTIONS(3294), + [anon_sym_set] = ACTIONS(3294), + [anon_sym_declare] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3294), + [anon_sym_private] = ACTIONS(3294), + [anon_sym_protected] = ACTIONS(3294), + [anon_sym_override] = ACTIONS(3294), + [anon_sym_module] = ACTIONS(3294), + [anon_sym_any] = ACTIONS(3294), + [anon_sym_number] = ACTIONS(3294), + [anon_sym_boolean] = ACTIONS(3294), + [anon_sym_string] = ACTIONS(3294), + [anon_sym_symbol] = ACTIONS(3294), + [anon_sym_object] = ACTIONS(3294), + [anon_sym_abstract] = ACTIONS(3294), + [anon_sym_interface] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), [sym_html_comment] = ACTIONS(5), }, - [1306] = { - [sym_comment] = STATE(1306), - [sym_identifier] = ACTIONS(3146), - [anon_sym_export] = ACTIONS(3146), - [anon_sym_default] = ACTIONS(3146), - [anon_sym_type] = ACTIONS(3146), - [anon_sym_namespace] = ACTIONS(3146), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_RBRACE] = ACTIONS(3146), - [anon_sym_typeof] = ACTIONS(3146), - [anon_sym_import] = ACTIONS(3146), - [anon_sym_with] = ACTIONS(3146), - [anon_sym_var] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_const] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_switch] = ACTIONS(3146), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_await] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_debugger] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3146), - [anon_sym_case] = ACTIONS(3146), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LTtemplate_GT] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3146), - [anon_sym_class] = ACTIONS(3146), - [anon_sym_async] = ACTIONS(3146), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_using] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_void] = ACTIONS(3146), - [anon_sym_delete] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3146), - [anon_sym_DASH_DASH] = ACTIONS(3146), + [1276] = { + [sym_comment] = STATE(1276), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(3454), + [sym_html_comment] = ACTIONS(5), + }, + [1277] = { + [sym_comment] = STATE(1277), + [ts_builtin_sym_end] = ACTIONS(3456), + [sym_identifier] = ACTIONS(3180), + [anon_sym_export] = ACTIONS(3180), + [anon_sym_type] = ACTIONS(3180), + [anon_sym_namespace] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_RBRACE] = ACTIONS(3180), + [anon_sym_typeof] = ACTIONS(3180), + [anon_sym_import] = ACTIONS(3180), + [anon_sym_with] = ACTIONS(3180), + [anon_sym_var] = ACTIONS(3180), + [anon_sym_let] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_else] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3180), + [anon_sym_await] = ACTIONS(3180), + [anon_sym_while] = ACTIONS(3180), + [anon_sym_do] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3180), + [anon_sym_break] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(3180), + [anon_sym_debugger] = ACTIONS(3180), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_throw] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_LTtemplate_GT] = ACTIONS(3180), + [anon_sym_DQUOTE] = ACTIONS(3180), + [anon_sym_SQUOTE] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_async] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_PLUS] = ACTIONS(3180), + [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_SLASH] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_TILDE] = ACTIONS(3180), + [anon_sym_void] = ACTIONS(3180), + [anon_sym_delete] = ACTIONS(3180), + [anon_sym_PLUS_PLUS] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3180), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3146), - [sym_number] = ACTIONS(3146), - [sym_private_property_identifier] = ACTIONS(3146), - [sym_this] = ACTIONS(3146), - [sym_super] = ACTIONS(3146), - [sym_true] = ACTIONS(3146), - [sym_false] = ACTIONS(3146), - [sym_null] = ACTIONS(3146), - [sym_undefined] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3146), - [anon_sym_static] = ACTIONS(3146), - [anon_sym_readonly] = ACTIONS(3146), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_declare] = ACTIONS(3146), - [anon_sym_public] = ACTIONS(3146), - [anon_sym_private] = ACTIONS(3146), - [anon_sym_protected] = ACTIONS(3146), - [anon_sym_override] = ACTIONS(3146), - [anon_sym_module] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3146), - [anon_sym_number] = ACTIONS(3146), - [anon_sym_boolean] = ACTIONS(3146), - [anon_sym_string] = ACTIONS(3146), - [anon_sym_symbol] = ACTIONS(3146), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_abstract] = ACTIONS(3146), - [anon_sym_interface] = ACTIONS(3146), - [anon_sym_enum] = ACTIONS(3146), + [anon_sym_BQUOTE] = ACTIONS(3180), + [sym_number] = ACTIONS(3180), + [sym_private_property_identifier] = ACTIONS(3180), + [sym_this] = ACTIONS(3180), + [sym_super] = ACTIONS(3180), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [sym_null] = ACTIONS(3180), + [sym_undefined] = ACTIONS(3180), + [anon_sym_AT] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_readonly] = ACTIONS(3180), + [anon_sym_get] = ACTIONS(3180), + [anon_sym_set] = ACTIONS(3180), + [anon_sym_declare] = ACTIONS(3180), + [anon_sym_public] = ACTIONS(3180), + [anon_sym_private] = ACTIONS(3180), + [anon_sym_protected] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3180), + [anon_sym_module] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3180), + [anon_sym_number] = ACTIONS(3180), + [anon_sym_boolean] = ACTIONS(3180), + [anon_sym_string] = ACTIONS(3180), + [anon_sym_symbol] = ACTIONS(3180), + [anon_sym_object] = ACTIONS(3180), + [anon_sym_abstract] = ACTIONS(3180), + [anon_sym_interface] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), [sym_html_comment] = ACTIONS(5), }, - [1307] = { - [sym_comment] = STATE(1307), - [sym_identifier] = ACTIONS(3144), - [anon_sym_export] = ACTIONS(3144), - [anon_sym_default] = ACTIONS(3144), - [anon_sym_type] = ACTIONS(3144), - [anon_sym_namespace] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3144), - [anon_sym_typeof] = ACTIONS(3144), - [anon_sym_import] = ACTIONS(3144), - [anon_sym_with] = ACTIONS(3144), - [anon_sym_var] = ACTIONS(3144), - [anon_sym_let] = ACTIONS(3144), - [anon_sym_const] = ACTIONS(3144), - [anon_sym_BANG] = ACTIONS(3144), - [anon_sym_if] = ACTIONS(3144), - [anon_sym_switch] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3144), - [anon_sym_await] = ACTIONS(3144), - [anon_sym_while] = ACTIONS(3144), - [anon_sym_do] = ACTIONS(3144), - [anon_sym_try] = ACTIONS(3144), - [anon_sym_break] = ACTIONS(3144), - [anon_sym_continue] = ACTIONS(3144), - [anon_sym_debugger] = ACTIONS(3144), - [anon_sym_return] = ACTIONS(3144), - [anon_sym_throw] = ACTIONS(3144), - [anon_sym_SEMI] = ACTIONS(3144), - [anon_sym_case] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3144), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_LTtemplate_GT] = ACTIONS(3144), - [anon_sym_DQUOTE] = ACTIONS(3144), - [anon_sym_SQUOTE] = ACTIONS(3144), - [anon_sym_class] = ACTIONS(3144), - [anon_sym_async] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3144), - [anon_sym_using] = ACTIONS(3144), - [anon_sym_PLUS] = ACTIONS(3144), - [anon_sym_DASH] = ACTIONS(3144), - [anon_sym_SLASH] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_TILDE] = ACTIONS(3144), - [anon_sym_void] = ACTIONS(3144), - [anon_sym_delete] = ACTIONS(3144), - [anon_sym_PLUS_PLUS] = ACTIONS(3144), - [anon_sym_DASH_DASH] = ACTIONS(3144), + [1278] = { + [sym_comment] = STATE(1278), + [sym_identifier] = ACTIONS(3324), + [anon_sym_export] = ACTIONS(3324), + [anon_sym_default] = ACTIONS(3324), + [anon_sym_type] = ACTIONS(3324), + [anon_sym_namespace] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_typeof] = ACTIONS(3324), + [anon_sym_import] = ACTIONS(3324), + [anon_sym_with] = ACTIONS(3324), + [anon_sym_var] = ACTIONS(3324), + [anon_sym_let] = ACTIONS(3324), + [anon_sym_const] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_switch] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_await] = ACTIONS(3324), + [anon_sym_while] = ACTIONS(3324), + [anon_sym_do] = ACTIONS(3324), + [anon_sym_try] = ACTIONS(3324), + [anon_sym_break] = ACTIONS(3324), + [anon_sym_continue] = ACTIONS(3324), + [anon_sym_debugger] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3324), + [anon_sym_throw] = ACTIONS(3324), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_case] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3324), + [anon_sym_LTtemplate_GT] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_class] = ACTIONS(3324), + [anon_sym_async] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3324), + [anon_sym_using] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_void] = ACTIONS(3324), + [anon_sym_delete] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_DASH_DASH] = ACTIONS(3324), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3144), - [sym_number] = ACTIONS(3144), - [sym_private_property_identifier] = ACTIONS(3144), - [sym_this] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_true] = ACTIONS(3144), - [sym_false] = ACTIONS(3144), - [sym_null] = ACTIONS(3144), - [sym_undefined] = ACTIONS(3144), - [anon_sym_AT] = ACTIONS(3144), - [anon_sym_static] = ACTIONS(3144), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_get] = ACTIONS(3144), - [anon_sym_set] = ACTIONS(3144), - [anon_sym_declare] = ACTIONS(3144), - [anon_sym_public] = ACTIONS(3144), - [anon_sym_private] = ACTIONS(3144), - [anon_sym_protected] = ACTIONS(3144), - [anon_sym_override] = ACTIONS(3144), - [anon_sym_module] = ACTIONS(3144), - [anon_sym_any] = ACTIONS(3144), - [anon_sym_number] = ACTIONS(3144), - [anon_sym_boolean] = ACTIONS(3144), - [anon_sym_string] = ACTIONS(3144), - [anon_sym_symbol] = ACTIONS(3144), - [anon_sym_object] = ACTIONS(3144), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_interface] = ACTIONS(3144), - [anon_sym_enum] = ACTIONS(3144), + [anon_sym_BQUOTE] = ACTIONS(3324), + [sym_number] = ACTIONS(3324), + [sym_private_property_identifier] = ACTIONS(3324), + [sym_this] = ACTIONS(3324), + [sym_super] = ACTIONS(3324), + [sym_true] = ACTIONS(3324), + [sym_false] = ACTIONS(3324), + [sym_null] = ACTIONS(3324), + [sym_undefined] = ACTIONS(3324), + [anon_sym_AT] = ACTIONS(3324), + [anon_sym_static] = ACTIONS(3324), + [anon_sym_readonly] = ACTIONS(3324), + [anon_sym_get] = ACTIONS(3324), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_declare] = ACTIONS(3324), + [anon_sym_public] = ACTIONS(3324), + [anon_sym_private] = ACTIONS(3324), + [anon_sym_protected] = ACTIONS(3324), + [anon_sym_override] = ACTIONS(3324), + [anon_sym_module] = ACTIONS(3324), + [anon_sym_any] = ACTIONS(3324), + [anon_sym_number] = ACTIONS(3324), + [anon_sym_boolean] = ACTIONS(3324), + [anon_sym_string] = ACTIONS(3324), + [anon_sym_symbol] = ACTIONS(3324), + [anon_sym_object] = ACTIONS(3324), + [anon_sym_abstract] = ACTIONS(3324), + [anon_sym_interface] = ACTIONS(3324), + [anon_sym_enum] = ACTIONS(3324), [sym_html_comment] = ACTIONS(5), }, - [1308] = { - [sym_comment] = STATE(1308), - [ts_builtin_sym_end] = ACTIONS(2103), - [sym_identifier] = ACTIONS(2067), - [anon_sym_export] = ACTIONS(2067), - [anon_sym_type] = ACTIONS(2067), - [anon_sym_namespace] = ACTIONS(2067), - [anon_sym_LBRACE] = ACTIONS(2067), - [anon_sym_RBRACE] = ACTIONS(2067), - [anon_sym_typeof] = ACTIONS(2067), - [anon_sym_import] = ACTIONS(2067), - [anon_sym_with] = ACTIONS(2067), - [anon_sym_var] = ACTIONS(2067), - [anon_sym_let] = ACTIONS(2067), - [anon_sym_const] = ACTIONS(2067), - [anon_sym_BANG] = ACTIONS(2067), - [anon_sym_if] = ACTIONS(2067), - [anon_sym_switch] = ACTIONS(2067), - [anon_sym_for] = ACTIONS(2067), - [anon_sym_LPAREN] = ACTIONS(2067), - [anon_sym_await] = ACTIONS(2067), - [anon_sym_while] = ACTIONS(2067), - [anon_sym_do] = ACTIONS(2067), - [anon_sym_try] = ACTIONS(2067), - [anon_sym_break] = ACTIONS(2067), - [anon_sym_continue] = ACTIONS(2067), - [anon_sym_debugger] = ACTIONS(2067), - [anon_sym_return] = ACTIONS(2067), - [anon_sym_throw] = ACTIONS(2067), - [anon_sym_SEMI] = ACTIONS(2067), - [anon_sym_yield] = ACTIONS(2067), - [anon_sym_LBRACK] = ACTIONS(2067), - [anon_sym_LTtemplate_GT] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2067), - [anon_sym_SQUOTE] = ACTIONS(2067), - [anon_sym_class] = ACTIONS(2067), - [anon_sym_async] = ACTIONS(2067), - [anon_sym_function] = ACTIONS(2067), - [anon_sym_new] = ACTIONS(2067), - [anon_sym_using] = ACTIONS(2067), - [anon_sym_PLUS] = ACTIONS(2067), - [anon_sym_DASH] = ACTIONS(2067), - [anon_sym_SLASH] = ACTIONS(2067), - [anon_sym_LT] = ACTIONS(2067), - [anon_sym_TILDE] = ACTIONS(2067), - [anon_sym_void] = ACTIONS(2067), - [anon_sym_delete] = ACTIONS(2067), - [anon_sym_PLUS_PLUS] = ACTIONS(2067), - [anon_sym_DASH_DASH] = ACTIONS(2067), + [1279] = { + [sym_comment] = STATE(1279), + [sym_identifier] = ACTIONS(3294), + [anon_sym_export] = ACTIONS(3294), + [anon_sym_default] = ACTIONS(3294), + [anon_sym_type] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3294), + [anon_sym_RBRACE] = ACTIONS(3294), + [anon_sym_typeof] = ACTIONS(3294), + [anon_sym_import] = ACTIONS(3294), + [anon_sym_with] = ACTIONS(3294), + [anon_sym_var] = ACTIONS(3294), + [anon_sym_let] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_BANG] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3294), + [anon_sym_switch] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3294), + [anon_sym_await] = ACTIONS(3294), + [anon_sym_while] = ACTIONS(3294), + [anon_sym_do] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3294), + [anon_sym_break] = ACTIONS(3294), + [anon_sym_continue] = ACTIONS(3294), + [anon_sym_debugger] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3294), + [anon_sym_throw] = ACTIONS(3294), + [anon_sym_SEMI] = ACTIONS(3294), + [anon_sym_case] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3294), + [anon_sym_LTtemplate_GT] = ACTIONS(3294), + [anon_sym_DQUOTE] = ACTIONS(3294), + [anon_sym_SQUOTE] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_async] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_using] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3294), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_SLASH] = ACTIONS(3294), + [anon_sym_LT] = ACTIONS(3294), + [anon_sym_TILDE] = ACTIONS(3294), + [anon_sym_void] = ACTIONS(3294), + [anon_sym_delete] = ACTIONS(3294), + [anon_sym_PLUS_PLUS] = ACTIONS(3294), + [anon_sym_DASH_DASH] = ACTIONS(3294), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2067), - [sym_number] = ACTIONS(2067), - [sym_private_property_identifier] = ACTIONS(2067), - [sym_this] = ACTIONS(2067), - [sym_super] = ACTIONS(2067), - [sym_true] = ACTIONS(2067), - [sym_false] = ACTIONS(2067), - [sym_null] = ACTIONS(2067), - [sym_undefined] = ACTIONS(2067), - [anon_sym_AT] = ACTIONS(2067), - [anon_sym_static] = ACTIONS(2067), - [anon_sym_readonly] = ACTIONS(2067), - [anon_sym_get] = ACTIONS(2067), - [anon_sym_set] = ACTIONS(2067), - [anon_sym_declare] = ACTIONS(2067), - [anon_sym_public] = ACTIONS(2067), - [anon_sym_private] = ACTIONS(2067), - [anon_sym_protected] = ACTIONS(2067), - [anon_sym_override] = ACTIONS(2067), - [anon_sym_module] = ACTIONS(2067), - [anon_sym_any] = ACTIONS(2067), - [anon_sym_number] = ACTIONS(2067), - [anon_sym_boolean] = ACTIONS(2067), - [anon_sym_string] = ACTIONS(2067), - [anon_sym_symbol] = ACTIONS(2067), - [anon_sym_object] = ACTIONS(2067), - [anon_sym_abstract] = ACTIONS(2067), - [anon_sym_interface] = ACTIONS(2067), - [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(2367), + [anon_sym_BQUOTE] = ACTIONS(3294), + [sym_number] = ACTIONS(3294), + [sym_private_property_identifier] = ACTIONS(3294), + [sym_this] = ACTIONS(3294), + [sym_super] = ACTIONS(3294), + [sym_true] = ACTIONS(3294), + [sym_false] = ACTIONS(3294), + [sym_null] = ACTIONS(3294), + [sym_undefined] = ACTIONS(3294), + [anon_sym_AT] = ACTIONS(3294), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_readonly] = ACTIONS(3294), + [anon_sym_get] = ACTIONS(3294), + [anon_sym_set] = ACTIONS(3294), + [anon_sym_declare] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3294), + [anon_sym_private] = ACTIONS(3294), + [anon_sym_protected] = ACTIONS(3294), + [anon_sym_override] = ACTIONS(3294), + [anon_sym_module] = ACTIONS(3294), + [anon_sym_any] = ACTIONS(3294), + [anon_sym_number] = ACTIONS(3294), + [anon_sym_boolean] = ACTIONS(3294), + [anon_sym_string] = ACTIONS(3294), + [anon_sym_symbol] = ACTIONS(3294), + [anon_sym_object] = ACTIONS(3294), + [anon_sym_abstract] = ACTIONS(3294), + [anon_sym_interface] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), [sym_html_comment] = ACTIONS(5), }, - [1309] = { - [sym_comment] = STATE(1309), + [1280] = { + [sym_comment] = STATE(1280), + [sym_identifier] = ACTIONS(3292), + [anon_sym_export] = ACTIONS(3292), + [anon_sym_default] = ACTIONS(3292), + [anon_sym_type] = ACTIONS(3292), + [anon_sym_namespace] = ACTIONS(3292), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_typeof] = ACTIONS(3292), + [anon_sym_import] = ACTIONS(3292), + [anon_sym_with] = ACTIONS(3292), + [anon_sym_var] = ACTIONS(3292), + [anon_sym_let] = ACTIONS(3292), + [anon_sym_const] = ACTIONS(3292), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_if] = ACTIONS(3292), + [anon_sym_switch] = ACTIONS(3292), + [anon_sym_for] = ACTIONS(3292), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_await] = ACTIONS(3292), + [anon_sym_while] = ACTIONS(3292), + [anon_sym_do] = ACTIONS(3292), + [anon_sym_try] = ACTIONS(3292), + [anon_sym_break] = ACTIONS(3292), + [anon_sym_continue] = ACTIONS(3292), + [anon_sym_debugger] = ACTIONS(3292), + [anon_sym_return] = ACTIONS(3292), + [anon_sym_throw] = ACTIONS(3292), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym_case] = ACTIONS(3292), + [anon_sym_yield] = ACTIONS(3292), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LTtemplate_GT] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [anon_sym_class] = ACTIONS(3292), + [anon_sym_async] = ACTIONS(3292), + [anon_sym_function] = ACTIONS(3292), + [anon_sym_new] = ACTIONS(3292), + [anon_sym_using] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_SLASH] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_void] = ACTIONS(3292), + [anon_sym_delete] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3292), + [sym_number] = ACTIONS(3292), + [sym_private_property_identifier] = ACTIONS(3292), + [sym_this] = ACTIONS(3292), + [sym_super] = ACTIONS(3292), + [sym_true] = ACTIONS(3292), + [sym_false] = ACTIONS(3292), + [sym_null] = ACTIONS(3292), + [sym_undefined] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3292), + [anon_sym_static] = ACTIONS(3292), + [anon_sym_readonly] = ACTIONS(3292), + [anon_sym_get] = ACTIONS(3292), + [anon_sym_set] = ACTIONS(3292), + [anon_sym_declare] = ACTIONS(3292), + [anon_sym_public] = ACTIONS(3292), + [anon_sym_private] = ACTIONS(3292), + [anon_sym_protected] = ACTIONS(3292), + [anon_sym_override] = ACTIONS(3292), + [anon_sym_module] = ACTIONS(3292), + [anon_sym_any] = ACTIONS(3292), + [anon_sym_number] = ACTIONS(3292), + [anon_sym_boolean] = ACTIONS(3292), + [anon_sym_string] = ACTIONS(3292), + [anon_sym_symbol] = ACTIONS(3292), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_abstract] = ACTIONS(3292), + [anon_sym_interface] = ACTIONS(3292), + [anon_sym_enum] = ACTIONS(3292), + [sym_html_comment] = ACTIONS(5), + }, + [1281] = { + [sym_comment] = STATE(1281), [sym_identifier] = ACTIONS(3142), [anon_sym_export] = ACTIONS(3142), [anon_sym_default] = ACTIONS(3142), @@ -170979,831 +168338,585 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3142), [sym_html_comment] = ACTIONS(5), }, - [1310] = { - [sym_comment] = STATE(1310), - [ts_builtin_sym_end] = ACTIONS(3080), - [sym_identifier] = ACTIONS(3078), - [anon_sym_export] = ACTIONS(3078), - [anon_sym_type] = ACTIONS(3078), - [anon_sym_namespace] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3078), - [anon_sym_RBRACE] = ACTIONS(3078), - [anon_sym_typeof] = ACTIONS(3078), - [anon_sym_import] = ACTIONS(3078), - [anon_sym_with] = ACTIONS(3078), - [anon_sym_var] = ACTIONS(3078), - [anon_sym_let] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_switch] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_await] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_do] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_debugger] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3078), - [anon_sym_yield] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_LTtemplate_GT] = ACTIONS(3078), - [anon_sym_DQUOTE] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_async] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_SLASH] = ACTIONS(3078), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_TILDE] = ACTIONS(3078), - [anon_sym_void] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3078), - [anon_sym_PLUS_PLUS] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3078), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3078), - [sym_number] = ACTIONS(3078), - [sym_private_property_identifier] = ACTIONS(3078), - [sym_this] = ACTIONS(3078), - [sym_super] = ACTIONS(3078), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3078), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_declare] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_override] = ACTIONS(3078), - [anon_sym_module] = ACTIONS(3078), - [anon_sym_any] = ACTIONS(3078), - [anon_sym_number] = ACTIONS(3078), - [anon_sym_boolean] = ACTIONS(3078), - [anon_sym_string] = ACTIONS(3078), - [anon_sym_symbol] = ACTIONS(3078), - [anon_sym_object] = ACTIONS(3078), - [anon_sym_abstract] = ACTIONS(3078), - [anon_sym_interface] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [sym__automatic_semicolon] = ACTIONS(3080), - [sym_html_comment] = ACTIONS(5), - }, - [1311] = { - [sym_comment] = STATE(1311), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1282] = { + [sym_comment] = STATE(1282), + [sym_identifier] = ACTIONS(3326), + [anon_sym_export] = ACTIONS(3326), + [anon_sym_default] = ACTIONS(3326), + [anon_sym_type] = ACTIONS(3326), + [anon_sym_namespace] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_RBRACE] = ACTIONS(3326), + [anon_sym_typeof] = ACTIONS(3326), + [anon_sym_import] = ACTIONS(3326), + [anon_sym_with] = ACTIONS(3326), + [anon_sym_var] = ACTIONS(3326), + [anon_sym_let] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_switch] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_await] = ACTIONS(3326), + [anon_sym_while] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_try] = ACTIONS(3326), + [anon_sym_break] = ACTIONS(3326), + [anon_sym_continue] = ACTIONS(3326), + [anon_sym_debugger] = ACTIONS(3326), + [anon_sym_return] = ACTIONS(3326), + [anon_sym_throw] = ACTIONS(3326), + [anon_sym_SEMI] = ACTIONS(3326), + [anon_sym_case] = ACTIONS(3326), + [anon_sym_yield] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_LTtemplate_GT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_class] = ACTIONS(3326), + [anon_sym_async] = ACTIONS(3326), + [anon_sym_function] = ACTIONS(3326), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_using] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_void] = ACTIONS(3326), + [anon_sym_delete] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1312] = { - [sym_comment] = STATE(1312), - [ts_builtin_sym_end] = ACTIONS(3412), - [sym_identifier] = ACTIONS(3286), - [anon_sym_export] = ACTIONS(3286), - [anon_sym_type] = ACTIONS(3286), - [anon_sym_namespace] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_RBRACE] = ACTIONS(3286), - [anon_sym_typeof] = ACTIONS(3286), - [anon_sym_import] = ACTIONS(3286), - [anon_sym_with] = ACTIONS(3286), - [anon_sym_var] = ACTIONS(3286), - [anon_sym_let] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_else] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3286), - [anon_sym_await] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_try] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_debugger] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_throw] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3286), - [anon_sym_yield] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3286), - [anon_sym_LTtemplate_GT] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [anon_sym_class] = ACTIONS(3286), - [anon_sym_async] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3286), - [anon_sym_using] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_SLASH] = ACTIONS(3286), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_void] = ACTIONS(3286), - [anon_sym_delete] = ACTIONS(3286), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3286), - [sym_number] = ACTIONS(3286), - [sym_private_property_identifier] = ACTIONS(3286), - [sym_this] = ACTIONS(3286), - [sym_super] = ACTIONS(3286), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_null] = ACTIONS(3286), - [sym_undefined] = ACTIONS(3286), - [anon_sym_AT] = ACTIONS(3286), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_readonly] = ACTIONS(3286), - [anon_sym_get] = ACTIONS(3286), - [anon_sym_set] = ACTIONS(3286), - [anon_sym_declare] = ACTIONS(3286), - [anon_sym_public] = ACTIONS(3286), - [anon_sym_private] = ACTIONS(3286), - [anon_sym_protected] = ACTIONS(3286), - [anon_sym_override] = ACTIONS(3286), - [anon_sym_module] = ACTIONS(3286), - [anon_sym_any] = ACTIONS(3286), - [anon_sym_number] = ACTIONS(3286), - [anon_sym_boolean] = ACTIONS(3286), - [anon_sym_string] = ACTIONS(3286), - [anon_sym_symbol] = ACTIONS(3286), - [anon_sym_object] = ACTIONS(3286), - [anon_sym_abstract] = ACTIONS(3286), - [anon_sym_interface] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), + [anon_sym_BQUOTE] = ACTIONS(3326), + [sym_number] = ACTIONS(3326), + [sym_private_property_identifier] = ACTIONS(3326), + [sym_this] = ACTIONS(3326), + [sym_super] = ACTIONS(3326), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [sym_null] = ACTIONS(3326), + [sym_undefined] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_readonly] = ACTIONS(3326), + [anon_sym_get] = ACTIONS(3326), + [anon_sym_set] = ACTIONS(3326), + [anon_sym_declare] = ACTIONS(3326), + [anon_sym_public] = ACTIONS(3326), + [anon_sym_private] = ACTIONS(3326), + [anon_sym_protected] = ACTIONS(3326), + [anon_sym_override] = ACTIONS(3326), + [anon_sym_module] = ACTIONS(3326), + [anon_sym_any] = ACTIONS(3326), + [anon_sym_number] = ACTIONS(3326), + [anon_sym_boolean] = ACTIONS(3326), + [anon_sym_string] = ACTIONS(3326), + [anon_sym_symbol] = ACTIONS(3326), + [anon_sym_object] = ACTIONS(3326), + [anon_sym_abstract] = ACTIONS(3326), + [anon_sym_interface] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), [sym_html_comment] = ACTIONS(5), }, - [1313] = { - [sym_comment] = STATE(1313), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), + [1283] = { + [sym_comment] = STATE(1283), + [ts_builtin_sym_end] = ACTIONS(2253), + [sym_identifier] = ACTIONS(2251), + [anon_sym_export] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_namespace] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_typeof] = ACTIONS(2251), + [anon_sym_import] = ACTIONS(2251), + [anon_sym_with] = ACTIONS(2251), + [anon_sym_var] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_else] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_switch] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [anon_sym_do] = ACTIONS(2251), + [anon_sym_try] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_debugger] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_throw] = ACTIONS(2251), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym_yield] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(2251), + [anon_sym_LTtemplate_GT] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_class] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_function] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2251), + [anon_sym_using] = ACTIONS(2251), + [anon_sym_PLUS] = ACTIONS(2251), + [anon_sym_DASH] = ACTIONS(2251), + [anon_sym_SLASH] = ACTIONS(2251), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_TILDE] = ACTIONS(2251), + [anon_sym_void] = ACTIONS(2251), + [anon_sym_delete] = ACTIONS(2251), + [anon_sym_PLUS_PLUS] = ACTIONS(2251), + [anon_sym_DASH_DASH] = ACTIONS(2251), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2251), + [sym_number] = ACTIONS(2251), + [sym_private_property_identifier] = ACTIONS(2251), + [sym_this] = ACTIONS(2251), + [sym_super] = ACTIONS(2251), + [sym_true] = ACTIONS(2251), + [sym_false] = ACTIONS(2251), + [sym_null] = ACTIONS(2251), + [sym_undefined] = ACTIONS(2251), + [anon_sym_AT] = ACTIONS(2251), + [anon_sym_static] = ACTIONS(2251), + [anon_sym_readonly] = ACTIONS(2251), + [anon_sym_get] = ACTIONS(2251), + [anon_sym_set] = ACTIONS(2251), + [anon_sym_declare] = ACTIONS(2251), + [anon_sym_public] = ACTIONS(2251), + [anon_sym_private] = ACTIONS(2251), + [anon_sym_protected] = ACTIONS(2251), + [anon_sym_override] = ACTIONS(2251), + [anon_sym_module] = ACTIONS(2251), + [anon_sym_any] = ACTIONS(2251), + [anon_sym_number] = ACTIONS(2251), + [anon_sym_boolean] = ACTIONS(2251), + [anon_sym_string] = ACTIONS(2251), + [anon_sym_symbol] = ACTIONS(2251), + [anon_sym_object] = ACTIONS(2251), + [anon_sym_abstract] = ACTIONS(2251), + [anon_sym_interface] = ACTIONS(2251), + [anon_sym_enum] = ACTIONS(2251), [sym_html_comment] = ACTIONS(5), }, - [1314] = { - [sym_comment] = STATE(1314), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_RBRACE] = ACTIONS(3124), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3124), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_LTtemplate_GT] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(3124), - [anon_sym_SQUOTE] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_using] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3124), - [anon_sym_DASH_DASH] = ACTIONS(3124), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3124), - [sym_number] = ACTIONS(3124), - [sym_private_property_identifier] = ACTIONS(3124), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3124), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_object] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [1284] = { + [sym_comment] = STATE(1284), + [sym_identifier] = ACTIONS(3338), + [anon_sym_export] = ACTIONS(3338), + [anon_sym_default] = ACTIONS(3338), + [anon_sym_type] = ACTIONS(3338), + [anon_sym_namespace] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_RBRACE] = ACTIONS(3338), + [anon_sym_typeof] = ACTIONS(3338), + [anon_sym_import] = ACTIONS(3338), + [anon_sym_with] = ACTIONS(3338), + [anon_sym_var] = ACTIONS(3338), + [anon_sym_let] = ACTIONS(3338), + [anon_sym_const] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_switch] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym_await] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_do] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_debugger] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_case] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_LTtemplate_GT] = ACTIONS(3338), + [anon_sym_DQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3338), + [anon_sym_class] = ACTIONS(3338), + [anon_sym_async] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3338), + [anon_sym_using] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_void] = ACTIONS(3338), + [anon_sym_delete] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3338), + [sym_number] = ACTIONS(3338), + [sym_private_property_identifier] = ACTIONS(3338), + [sym_this] = ACTIONS(3338), + [sym_super] = ACTIONS(3338), + [sym_true] = ACTIONS(3338), + [sym_false] = ACTIONS(3338), + [sym_null] = ACTIONS(3338), + [sym_undefined] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3338), + [anon_sym_static] = ACTIONS(3338), + [anon_sym_readonly] = ACTIONS(3338), + [anon_sym_get] = ACTIONS(3338), + [anon_sym_set] = ACTIONS(3338), + [anon_sym_declare] = ACTIONS(3338), + [anon_sym_public] = ACTIONS(3338), + [anon_sym_private] = ACTIONS(3338), + [anon_sym_protected] = ACTIONS(3338), + [anon_sym_override] = ACTIONS(3338), + [anon_sym_module] = ACTIONS(3338), + [anon_sym_any] = ACTIONS(3338), + [anon_sym_number] = ACTIONS(3338), + [anon_sym_boolean] = ACTIONS(3338), + [anon_sym_string] = ACTIONS(3338), + [anon_sym_symbol] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_abstract] = ACTIONS(3338), + [anon_sym_interface] = ACTIONS(3338), + [anon_sym_enum] = ACTIONS(3338), [sym_html_comment] = ACTIONS(5), }, - [1315] = { - [sym_comment] = STATE(1315), - [sym_identifier] = ACTIONS(3168), - [anon_sym_export] = ACTIONS(3168), - [anon_sym_default] = ACTIONS(3168), - [anon_sym_type] = ACTIONS(3168), - [anon_sym_namespace] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(3168), - [anon_sym_RBRACE] = ACTIONS(3168), - [anon_sym_typeof] = ACTIONS(3168), - [anon_sym_import] = ACTIONS(3168), - [anon_sym_with] = ACTIONS(3168), - [anon_sym_var] = ACTIONS(3168), - [anon_sym_let] = ACTIONS(3168), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_switch] = ACTIONS(3168), - [anon_sym_for] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3168), - [anon_sym_await] = ACTIONS(3168), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_do] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_debugger] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_SEMI] = ACTIONS(3168), - [anon_sym_case] = ACTIONS(3168), - [anon_sym_yield] = ACTIONS(3168), - [anon_sym_LBRACK] = ACTIONS(3168), - [anon_sym_LTtemplate_GT] = ACTIONS(3168), - [anon_sym_DQUOTE] = ACTIONS(3168), - [anon_sym_SQUOTE] = ACTIONS(3168), - [anon_sym_class] = ACTIONS(3168), - [anon_sym_async] = ACTIONS(3168), - [anon_sym_function] = ACTIONS(3168), - [anon_sym_new] = ACTIONS(3168), - [anon_sym_using] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3168), - [anon_sym_SLASH] = ACTIONS(3168), - [anon_sym_LT] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3168), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_delete] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3168), - [anon_sym_DASH_DASH] = ACTIONS(3168), + [1285] = { + [sym_comment] = STATE(1285), + [ts_builtin_sym_end] = ACTIONS(3458), + [sym_identifier] = ACTIONS(3138), + [anon_sym_export] = ACTIONS(3138), + [anon_sym_type] = ACTIONS(3138), + [anon_sym_namespace] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_typeof] = ACTIONS(3138), + [anon_sym_import] = ACTIONS(3138), + [anon_sym_with] = ACTIONS(3138), + [anon_sym_var] = ACTIONS(3138), + [anon_sym_let] = ACTIONS(3138), + [anon_sym_const] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3138), + [anon_sym_if] = ACTIONS(3138), + [anon_sym_switch] = ACTIONS(3138), + [anon_sym_for] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3138), + [anon_sym_await] = ACTIONS(3138), + [anon_sym_while] = ACTIONS(3138), + [anon_sym_do] = ACTIONS(3138), + [anon_sym_try] = ACTIONS(3138), + [anon_sym_break] = ACTIONS(3138), + [anon_sym_continue] = ACTIONS(3138), + [anon_sym_debugger] = ACTIONS(3138), + [anon_sym_return] = ACTIONS(3138), + [anon_sym_throw] = ACTIONS(3138), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_yield] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_LTtemplate_GT] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3138), + [anon_sym_SQUOTE] = ACTIONS(3138), + [anon_sym_class] = ACTIONS(3138), + [anon_sym_async] = ACTIONS(3138), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_new] = ACTIONS(3138), + [anon_sym_using] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_TILDE] = ACTIONS(3138), + [anon_sym_void] = ACTIONS(3138), + [anon_sym_delete] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3168), - [sym_number] = ACTIONS(3168), - [sym_private_property_identifier] = ACTIONS(3168), - [sym_this] = ACTIONS(3168), - [sym_super] = ACTIONS(3168), - [sym_true] = ACTIONS(3168), - [sym_false] = ACTIONS(3168), - [sym_null] = ACTIONS(3168), - [sym_undefined] = ACTIONS(3168), - [anon_sym_AT] = ACTIONS(3168), - [anon_sym_static] = ACTIONS(3168), - [anon_sym_readonly] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3168), - [anon_sym_set] = ACTIONS(3168), - [anon_sym_declare] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_override] = ACTIONS(3168), - [anon_sym_module] = ACTIONS(3168), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_object] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_interface] = ACTIONS(3168), - [anon_sym_enum] = ACTIONS(3168), + [anon_sym_BQUOTE] = ACTIONS(3138), + [sym_number] = ACTIONS(3138), + [sym_private_property_identifier] = ACTIONS(3138), + [sym_this] = ACTIONS(3138), + [sym_super] = ACTIONS(3138), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_AT] = ACTIONS(3138), + [anon_sym_static] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3138), + [anon_sym_set] = ACTIONS(3138), + [anon_sym_declare] = ACTIONS(3138), + [anon_sym_public] = ACTIONS(3138), + [anon_sym_private] = ACTIONS(3138), + [anon_sym_protected] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3138), + [anon_sym_module] = ACTIONS(3138), + [anon_sym_any] = ACTIONS(3138), + [anon_sym_number] = ACTIONS(3138), + [anon_sym_boolean] = ACTIONS(3138), + [anon_sym_string] = ACTIONS(3138), + [anon_sym_symbol] = ACTIONS(3138), + [anon_sym_object] = ACTIONS(3138), + [anon_sym_abstract] = ACTIONS(3138), + [anon_sym_interface] = ACTIONS(3138), + [anon_sym_enum] = ACTIONS(3138), [sym_html_comment] = ACTIONS(5), }, - [1316] = { - [sym_comment] = STATE(1316), - [ts_builtin_sym_end] = ACTIONS(3414), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_typeof] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_await] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_debugger] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LTtemplate_GT] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_void] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), + [1286] = { + [sym_comment] = STATE(1286), + [ts_builtin_sym_end] = ACTIONS(3460), + [sym_identifier] = ACTIONS(3140), + [anon_sym_export] = ACTIONS(3140), + [anon_sym_type] = ACTIONS(3140), + [anon_sym_namespace] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(3140), + [anon_sym_RBRACE] = ACTIONS(3140), + [anon_sym_typeof] = ACTIONS(3140), + [anon_sym_import] = ACTIONS(3140), + [anon_sym_with] = ACTIONS(3140), + [anon_sym_var] = ACTIONS(3140), + [anon_sym_let] = ACTIONS(3140), + [anon_sym_const] = ACTIONS(3140), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_switch] = ACTIONS(3140), + [anon_sym_for] = ACTIONS(3140), + [anon_sym_LPAREN] = ACTIONS(3140), + [anon_sym_await] = ACTIONS(3140), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_do] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_debugger] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3140), + [anon_sym_yield] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_LTtemplate_GT] = ACTIONS(3140), + [anon_sym_DQUOTE] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3140), + [anon_sym_class] = ACTIONS(3140), + [anon_sym_async] = ACTIONS(3140), + [anon_sym_function] = ACTIONS(3140), + [anon_sym_new] = ACTIONS(3140), + [anon_sym_using] = ACTIONS(3140), + [anon_sym_PLUS] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3140), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_void] = ACTIONS(3140), + [anon_sym_delete] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_DASH_DASH] = ACTIONS(3140), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3288), - [sym_number] = ACTIONS(3288), - [sym_private_property_identifier] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_undefined] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_declare] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_any] = ACTIONS(3288), - [anon_sym_number] = ACTIONS(3288), - [anon_sym_boolean] = ACTIONS(3288), - [anon_sym_string] = ACTIONS(3288), - [anon_sym_symbol] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), + [anon_sym_BQUOTE] = ACTIONS(3140), + [sym_number] = ACTIONS(3140), + [sym_private_property_identifier] = ACTIONS(3140), + [sym_this] = ACTIONS(3140), + [sym_super] = ACTIONS(3140), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_AT] = ACTIONS(3140), + [anon_sym_static] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_get] = ACTIONS(3140), + [anon_sym_set] = ACTIONS(3140), + [anon_sym_declare] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_module] = ACTIONS(3140), + [anon_sym_any] = ACTIONS(3140), + [anon_sym_number] = ACTIONS(3140), + [anon_sym_boolean] = ACTIONS(3140), + [anon_sym_string] = ACTIONS(3140), + [anon_sym_symbol] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_interface] = ACTIONS(3140), + [anon_sym_enum] = ACTIONS(3140), [sym_html_comment] = ACTIONS(5), }, - [1317] = { - [sym_comment] = STATE(1317), - [ts_builtin_sym_end] = ACTIONS(3416), - [sym_identifier] = ACTIONS(3290), - [anon_sym_export] = ACTIONS(3290), - [anon_sym_type] = ACTIONS(3290), - [anon_sym_namespace] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_RBRACE] = ACTIONS(3290), - [anon_sym_typeof] = ACTIONS(3290), - [anon_sym_import] = ACTIONS(3290), - [anon_sym_with] = ACTIONS(3290), - [anon_sym_var] = ACTIONS(3290), - [anon_sym_let] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_BANG] = ACTIONS(3290), - [anon_sym_else] = ACTIONS(3290), - [anon_sym_if] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3290), - [anon_sym_await] = ACTIONS(3290), - [anon_sym_while] = ACTIONS(3290), - [anon_sym_do] = ACTIONS(3290), - [anon_sym_try] = ACTIONS(3290), - [anon_sym_break] = ACTIONS(3290), - [anon_sym_continue] = ACTIONS(3290), - [anon_sym_debugger] = ACTIONS(3290), - [anon_sym_return] = ACTIONS(3290), - [anon_sym_throw] = ACTIONS(3290), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_LTtemplate_GT] = ACTIONS(3290), - [anon_sym_DQUOTE] = ACTIONS(3290), - [anon_sym_SQUOTE] = ACTIONS(3290), - [anon_sym_class] = ACTIONS(3290), - [anon_sym_async] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3290), - [anon_sym_using] = ACTIONS(3290), - [anon_sym_PLUS] = ACTIONS(3290), - [anon_sym_DASH] = ACTIONS(3290), - [anon_sym_SLASH] = ACTIONS(3290), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_TILDE] = ACTIONS(3290), - [anon_sym_void] = ACTIONS(3290), - [anon_sym_delete] = ACTIONS(3290), - [anon_sym_PLUS_PLUS] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3290), + [1287] = { + [sym_comment] = STATE(1287), + [sym_identifier] = ACTIONS(3340), + [anon_sym_export] = ACTIONS(3340), + [anon_sym_default] = ACTIONS(3340), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_namespace] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_typeof] = ACTIONS(3340), + [anon_sym_import] = ACTIONS(3340), + [anon_sym_with] = ACTIONS(3340), + [anon_sym_var] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_switch] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_await] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_debugger] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_case] = ACTIONS(3340), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LTtemplate_GT] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3340), + [anon_sym_class] = ACTIONS(3340), + [anon_sym_async] = ACTIONS(3340), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_using] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_void] = ACTIONS(3340), + [anon_sym_delete] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3290), - [sym_number] = ACTIONS(3290), - [sym_private_property_identifier] = ACTIONS(3290), - [sym_this] = ACTIONS(3290), - [sym_super] = ACTIONS(3290), - [sym_true] = ACTIONS(3290), - [sym_false] = ACTIONS(3290), - [sym_null] = ACTIONS(3290), - [sym_undefined] = ACTIONS(3290), - [anon_sym_AT] = ACTIONS(3290), - [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_abstract] = ACTIONS(3290), - [anon_sym_interface] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), + [anon_sym_BQUOTE] = ACTIONS(3340), + [sym_number] = ACTIONS(3340), + [sym_private_property_identifier] = ACTIONS(3340), + [sym_this] = ACTIONS(3340), + [sym_super] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_null] = ACTIONS(3340), + [sym_undefined] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3340), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_readonly] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3340), + [anon_sym_declare] = ACTIONS(3340), + [anon_sym_public] = ACTIONS(3340), + [anon_sym_private] = ACTIONS(3340), + [anon_sym_protected] = ACTIONS(3340), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_module] = ACTIONS(3340), + [anon_sym_any] = ACTIONS(3340), + [anon_sym_number] = ACTIONS(3340), + [anon_sym_boolean] = ACTIONS(3340), + [anon_sym_string] = ACTIONS(3340), + [anon_sym_symbol] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_abstract] = ACTIONS(3340), + [anon_sym_interface] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), [sym_html_comment] = ACTIONS(5), }, - [1318] = { - [sym_comment] = STATE(1318), - [ts_builtin_sym_end] = ACTIONS(3418), - [sym_identifier] = ACTIONS(3292), - [anon_sym_export] = ACTIONS(3292), - [anon_sym_type] = ACTIONS(3292), - [anon_sym_namespace] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_typeof] = ACTIONS(3292), - [anon_sym_import] = ACTIONS(3292), - [anon_sym_with] = ACTIONS(3292), - [anon_sym_var] = ACTIONS(3292), - [anon_sym_let] = ACTIONS(3292), - [anon_sym_const] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_switch] = ACTIONS(3292), - [anon_sym_for] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_await] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_do] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_debugger] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_yield] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_LTtemplate_GT] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_class] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3292), - [anon_sym_function] = ACTIONS(3292), - [anon_sym_new] = ACTIONS(3292), - [anon_sym_using] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_void] = ACTIONS(3292), - [anon_sym_delete] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), + [1288] = { + [sym_comment] = STATE(1288), + [sym_identifier] = ACTIONS(3342), + [anon_sym_export] = ACTIONS(3342), + [anon_sym_default] = ACTIONS(3342), + [anon_sym_type] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_typeof] = ACTIONS(3342), + [anon_sym_import] = ACTIONS(3342), + [anon_sym_with] = ACTIONS(3342), + [anon_sym_var] = ACTIONS(3342), + [anon_sym_let] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_switch] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_await] = ACTIONS(3342), + [anon_sym_while] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_debugger] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_throw] = ACTIONS(3342), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_case] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_LTtemplate_GT] = ACTIONS(3342), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_SQUOTE] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_async] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3342), + [anon_sym_using] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_void] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3292), - [sym_number] = ACTIONS(3292), - [sym_private_property_identifier] = ACTIONS(3292), - [sym_this] = ACTIONS(3292), - [sym_super] = ACTIONS(3292), - [sym_true] = ACTIONS(3292), - [sym_false] = ACTIONS(3292), - [sym_null] = ACTIONS(3292), - [sym_undefined] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_readonly] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_declare] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_module] = ACTIONS(3292), - [anon_sym_any] = ACTIONS(3292), - [anon_sym_number] = ACTIONS(3292), - [anon_sym_boolean] = ACTIONS(3292), - [anon_sym_string] = ACTIONS(3292), - [anon_sym_symbol] = ACTIONS(3292), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_interface] = ACTIONS(3292), - [anon_sym_enum] = ACTIONS(3292), - [sym_html_comment] = ACTIONS(5), - }, - [1319] = { - [sym_comment] = STATE(1319), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_else] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), + [anon_sym_BQUOTE] = ACTIONS(3342), + [sym_number] = ACTIONS(3342), + [sym_private_property_identifier] = ACTIONS(3342), + [sym_this] = ACTIONS(3342), + [sym_super] = ACTIONS(3342), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [sym_null] = ACTIONS(3342), + [sym_undefined] = ACTIONS(3342), + [anon_sym_AT] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_readonly] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_declare] = ACTIONS(3342), + [anon_sym_public] = ACTIONS(3342), + [anon_sym_private] = ACTIONS(3342), + [anon_sym_protected] = ACTIONS(3342), + [anon_sym_override] = ACTIONS(3342), + [anon_sym_module] = ACTIONS(3342), + [anon_sym_any] = ACTIONS(3342), + [anon_sym_number] = ACTIONS(3342), + [anon_sym_boolean] = ACTIONS(3342), + [anon_sym_string] = ACTIONS(3342), + [anon_sym_symbol] = ACTIONS(3342), + [anon_sym_object] = ACTIONS(3342), + [anon_sym_abstract] = ACTIONS(3342), + [anon_sym_interface] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), [sym_html_comment] = ACTIONS(5), }, - [1320] = { - [sym_comment] = STATE(1320), + [1289] = { + [sym_comment] = STATE(1289), + [ts_builtin_sym_end] = ACTIONS(3458), [sym_identifier] = ACTIONS(3138), [anon_sym_export] = ACTIONS(3138), - [anon_sym_default] = ACTIONS(3138), [anon_sym_type] = ACTIONS(3138), [anon_sym_namespace] = ACTIONS(3138), [anon_sym_LBRACE] = ACTIONS(3138), @@ -171815,6 +168928,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3138), [anon_sym_const] = ACTIONS(3138), [anon_sym_BANG] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3138), [anon_sym_if] = ACTIONS(3138), [anon_sym_switch] = ACTIONS(3138), [anon_sym_for] = ACTIONS(3138), @@ -171829,7 +168943,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3138), [anon_sym_throw] = ACTIONS(3138), [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_case] = ACTIONS(3138), [anon_sym_yield] = ACTIONS(3138), [anon_sym_LBRACK] = ACTIONS(3138), [anon_sym_LTtemplate_GT] = ACTIONS(3138), @@ -171881,1979 +168994,995 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3138), [sym_html_comment] = ACTIONS(5), }, - [1321] = { - [sym_comment] = STATE(1321), - [sym_identifier] = ACTIONS(3132), - [anon_sym_export] = ACTIONS(3132), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_type] = ACTIONS(3132), - [anon_sym_namespace] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3132), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_typeof] = ACTIONS(3132), - [anon_sym_import] = ACTIONS(3132), - [anon_sym_with] = ACTIONS(3132), - [anon_sym_var] = ACTIONS(3132), - [anon_sym_let] = ACTIONS(3132), - [anon_sym_const] = ACTIONS(3132), - [anon_sym_BANG] = ACTIONS(3132), - [anon_sym_if] = ACTIONS(3132), - [anon_sym_switch] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3132), - [anon_sym_await] = ACTIONS(3132), - [anon_sym_while] = ACTIONS(3132), - [anon_sym_do] = ACTIONS(3132), - [anon_sym_try] = ACTIONS(3132), - [anon_sym_break] = ACTIONS(3132), - [anon_sym_continue] = ACTIONS(3132), - [anon_sym_debugger] = ACTIONS(3132), - [anon_sym_return] = ACTIONS(3132), - [anon_sym_throw] = ACTIONS(3132), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_case] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_LTtemplate_GT] = ACTIONS(3132), - [anon_sym_DQUOTE] = ACTIONS(3132), - [anon_sym_SQUOTE] = ACTIONS(3132), - [anon_sym_class] = ACTIONS(3132), - [anon_sym_async] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3132), - [anon_sym_using] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_SLASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_TILDE] = ACTIONS(3132), - [anon_sym_void] = ACTIONS(3132), - [anon_sym_delete] = ACTIONS(3132), - [anon_sym_PLUS_PLUS] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3132), + [1290] = { + [sym_comment] = STATE(1290), + [ts_builtin_sym_end] = ACTIONS(3458), + [sym_identifier] = ACTIONS(3138), + [anon_sym_export] = ACTIONS(3138), + [anon_sym_type] = ACTIONS(3138), + [anon_sym_namespace] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_typeof] = ACTIONS(3138), + [anon_sym_import] = ACTIONS(3138), + [anon_sym_with] = ACTIONS(3138), + [anon_sym_var] = ACTIONS(3138), + [anon_sym_let] = ACTIONS(3138), + [anon_sym_const] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3138), + [anon_sym_else] = ACTIONS(3138), + [anon_sym_if] = ACTIONS(3138), + [anon_sym_switch] = ACTIONS(3138), + [anon_sym_for] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3138), + [anon_sym_await] = ACTIONS(3138), + [anon_sym_while] = ACTIONS(3138), + [anon_sym_do] = ACTIONS(3138), + [anon_sym_try] = ACTIONS(3138), + [anon_sym_break] = ACTIONS(3138), + [anon_sym_continue] = ACTIONS(3138), + [anon_sym_debugger] = ACTIONS(3138), + [anon_sym_return] = ACTIONS(3138), + [anon_sym_throw] = ACTIONS(3138), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_yield] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_LTtemplate_GT] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3138), + [anon_sym_SQUOTE] = ACTIONS(3138), + [anon_sym_class] = ACTIONS(3138), + [anon_sym_async] = ACTIONS(3138), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_new] = ACTIONS(3138), + [anon_sym_using] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_TILDE] = ACTIONS(3138), + [anon_sym_void] = ACTIONS(3138), + [anon_sym_delete] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3132), - [sym_private_property_identifier] = ACTIONS(3132), - [sym_this] = ACTIONS(3132), - [sym_super] = ACTIONS(3132), - [sym_true] = ACTIONS(3132), - [sym_false] = ACTIONS(3132), - [sym_null] = ACTIONS(3132), - [sym_undefined] = ACTIONS(3132), - [anon_sym_AT] = ACTIONS(3132), - [anon_sym_static] = ACTIONS(3132), - [anon_sym_readonly] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3132), - [anon_sym_set] = ACTIONS(3132), - [anon_sym_declare] = ACTIONS(3132), - [anon_sym_public] = ACTIONS(3132), - [anon_sym_private] = ACTIONS(3132), - [anon_sym_protected] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3132), - [anon_sym_module] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3132), - [anon_sym_number] = ACTIONS(3132), - [anon_sym_boolean] = ACTIONS(3132), - [anon_sym_string] = ACTIONS(3132), - [anon_sym_symbol] = ACTIONS(3132), - [anon_sym_object] = ACTIONS(3132), - [anon_sym_abstract] = ACTIONS(3132), - [anon_sym_interface] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3132), + [anon_sym_BQUOTE] = ACTIONS(3138), + [sym_number] = ACTIONS(3138), + [sym_private_property_identifier] = ACTIONS(3138), + [sym_this] = ACTIONS(3138), + [sym_super] = ACTIONS(3138), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_AT] = ACTIONS(3138), + [anon_sym_static] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3138), + [anon_sym_set] = ACTIONS(3138), + [anon_sym_declare] = ACTIONS(3138), + [anon_sym_public] = ACTIONS(3138), + [anon_sym_private] = ACTIONS(3138), + [anon_sym_protected] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3138), + [anon_sym_module] = ACTIONS(3138), + [anon_sym_any] = ACTIONS(3138), + [anon_sym_number] = ACTIONS(3138), + [anon_sym_boolean] = ACTIONS(3138), + [anon_sym_string] = ACTIONS(3138), + [anon_sym_symbol] = ACTIONS(3138), + [anon_sym_object] = ACTIONS(3138), + [anon_sym_abstract] = ACTIONS(3138), + [anon_sym_interface] = ACTIONS(3138), + [anon_sym_enum] = ACTIONS(3138), [sym_html_comment] = ACTIONS(5), }, - [1322] = { - [sym_comment] = STATE(1322), - [ts_builtin_sym_end] = ACTIONS(3420), - [sym_identifier] = ACTIONS(3294), - [anon_sym_export] = ACTIONS(3294), - [anon_sym_type] = ACTIONS(3294), - [anon_sym_namespace] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_RBRACE] = ACTIONS(3294), - [anon_sym_typeof] = ACTIONS(3294), - [anon_sym_import] = ACTIONS(3294), - [anon_sym_with] = ACTIONS(3294), - [anon_sym_var] = ACTIONS(3294), - [anon_sym_let] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_switch] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_LPAREN] = ACTIONS(3294), - [anon_sym_await] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_do] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_debugger] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym_yield] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_LTtemplate_GT] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [anon_sym_class] = ACTIONS(3294), - [anon_sym_async] = ACTIONS(3294), - [anon_sym_function] = ACTIONS(3294), - [anon_sym_new] = ACTIONS(3294), - [anon_sym_using] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_void] = ACTIONS(3294), - [anon_sym_delete] = ACTIONS(3294), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3294), + [1291] = { + [sym_comment] = STATE(1291), + [sym_identifier] = ACTIONS(3344), + [anon_sym_export] = ACTIONS(3344), + [anon_sym_default] = ACTIONS(3344), + [anon_sym_type] = ACTIONS(3344), + [anon_sym_namespace] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_RBRACE] = ACTIONS(3344), + [anon_sym_typeof] = ACTIONS(3344), + [anon_sym_import] = ACTIONS(3344), + [anon_sym_with] = ACTIONS(3344), + [anon_sym_var] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3344), + [anon_sym_const] = ACTIONS(3344), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_switch] = ACTIONS(3344), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_await] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_debugger] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_case] = ACTIONS(3344), + [anon_sym_yield] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_LTtemplate_GT] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3344), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_async] = ACTIONS(3344), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_using] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3344), + [anon_sym_void] = ACTIONS(3344), + [anon_sym_delete] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3344), + [anon_sym_DASH_DASH] = ACTIONS(3344), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3294), - [sym_number] = ACTIONS(3294), - [sym_private_property_identifier] = ACTIONS(3294), - [sym_this] = ACTIONS(3294), - [sym_super] = ACTIONS(3294), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_null] = ACTIONS(3294), - [sym_undefined] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_readonly] = ACTIONS(3294), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_declare] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_module] = ACTIONS(3294), - [anon_sym_any] = ACTIONS(3294), - [anon_sym_number] = ACTIONS(3294), - [anon_sym_boolean] = ACTIONS(3294), - [anon_sym_string] = ACTIONS(3294), - [anon_sym_symbol] = ACTIONS(3294), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_interface] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), + [anon_sym_BQUOTE] = ACTIONS(3344), + [sym_number] = ACTIONS(3344), + [sym_private_property_identifier] = ACTIONS(3344), + [sym_this] = ACTIONS(3344), + [sym_super] = ACTIONS(3344), + [sym_true] = ACTIONS(3344), + [sym_false] = ACTIONS(3344), + [sym_null] = ACTIONS(3344), + [sym_undefined] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3344), + [anon_sym_static] = ACTIONS(3344), + [anon_sym_readonly] = ACTIONS(3344), + [anon_sym_get] = ACTIONS(3344), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_declare] = ACTIONS(3344), + [anon_sym_public] = ACTIONS(3344), + [anon_sym_private] = ACTIONS(3344), + [anon_sym_protected] = ACTIONS(3344), + [anon_sym_override] = ACTIONS(3344), + [anon_sym_module] = ACTIONS(3344), + [anon_sym_any] = ACTIONS(3344), + [anon_sym_number] = ACTIONS(3344), + [anon_sym_boolean] = ACTIONS(3344), + [anon_sym_string] = ACTIONS(3344), + [anon_sym_symbol] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_abstract] = ACTIONS(3344), + [anon_sym_interface] = ACTIONS(3344), + [anon_sym_enum] = ACTIONS(3344), [sym_html_comment] = ACTIONS(5), }, - [1323] = { - [sym_comment] = STATE(1323), - [ts_builtin_sym_end] = ACTIONS(3422), - [sym_identifier] = ACTIONS(3296), - [anon_sym_export] = ACTIONS(3296), - [anon_sym_type] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_typeof] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_with] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_else] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_await] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_debugger] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_yield] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_LTtemplate_GT] = ACTIONS(3296), - [anon_sym_DQUOTE] = ACTIONS(3296), - [anon_sym_SQUOTE] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_async] = ACTIONS(3296), - [anon_sym_function] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_using] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_void] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3296), - [sym_number] = ACTIONS(3296), - [sym_private_property_identifier] = ACTIONS(3296), - [sym_this] = ACTIONS(3296), - [sym_super] = ACTIONS(3296), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [sym_null] = ACTIONS(3296), - [sym_undefined] = ACTIONS(3296), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_readonly] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_override] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3296), - [anon_sym_any] = ACTIONS(3296), - [anon_sym_number] = ACTIONS(3296), - [anon_sym_boolean] = ACTIONS(3296), - [anon_sym_string] = ACTIONS(3296), - [anon_sym_symbol] = ACTIONS(3296), - [anon_sym_object] = ACTIONS(3296), - [anon_sym_abstract] = ACTIONS(3296), - [anon_sym_interface] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), + [1292] = { + [sym_comment] = STATE(1292), + [sym_identifier] = ACTIONS(3352), + [anon_sym_export] = ACTIONS(3352), + [anon_sym_default] = ACTIONS(3352), + [anon_sym_type] = ACTIONS(3352), + [anon_sym_namespace] = ACTIONS(3352), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_RBRACE] = ACTIONS(3352), + [anon_sym_typeof] = ACTIONS(3352), + [anon_sym_import] = ACTIONS(3352), + [anon_sym_with] = ACTIONS(3352), + [anon_sym_var] = ACTIONS(3352), + [anon_sym_let] = ACTIONS(3352), + [anon_sym_const] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3352), + [anon_sym_if] = ACTIONS(3352), + [anon_sym_switch] = ACTIONS(3352), + [anon_sym_for] = ACTIONS(3352), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_await] = ACTIONS(3352), + [anon_sym_while] = ACTIONS(3352), + [anon_sym_do] = ACTIONS(3352), + [anon_sym_try] = ACTIONS(3352), + [anon_sym_break] = ACTIONS(3352), + [anon_sym_continue] = ACTIONS(3352), + [anon_sym_debugger] = ACTIONS(3352), + [anon_sym_return] = ACTIONS(3352), + [anon_sym_throw] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_case] = ACTIONS(3352), + [anon_sym_yield] = ACTIONS(3352), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_LTtemplate_GT] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [anon_sym_SQUOTE] = ACTIONS(3352), + [anon_sym_class] = ACTIONS(3352), + [anon_sym_async] = ACTIONS(3352), + [anon_sym_function] = ACTIONS(3352), + [anon_sym_new] = ACTIONS(3352), + [anon_sym_using] = ACTIONS(3352), + [anon_sym_PLUS] = ACTIONS(3352), + [anon_sym_DASH] = ACTIONS(3352), + [anon_sym_SLASH] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3352), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_void] = ACTIONS(3352), + [anon_sym_delete] = ACTIONS(3352), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3352), + [sym_number] = ACTIONS(3352), + [sym_private_property_identifier] = ACTIONS(3352), + [sym_this] = ACTIONS(3352), + [sym_super] = ACTIONS(3352), + [sym_true] = ACTIONS(3352), + [sym_false] = ACTIONS(3352), + [sym_null] = ACTIONS(3352), + [sym_undefined] = ACTIONS(3352), + [anon_sym_AT] = ACTIONS(3352), + [anon_sym_static] = ACTIONS(3352), + [anon_sym_readonly] = ACTIONS(3352), + [anon_sym_get] = ACTIONS(3352), + [anon_sym_set] = ACTIONS(3352), + [anon_sym_declare] = ACTIONS(3352), + [anon_sym_public] = ACTIONS(3352), + [anon_sym_private] = ACTIONS(3352), + [anon_sym_protected] = ACTIONS(3352), + [anon_sym_override] = ACTIONS(3352), + [anon_sym_module] = ACTIONS(3352), + [anon_sym_any] = ACTIONS(3352), + [anon_sym_number] = ACTIONS(3352), + [anon_sym_boolean] = ACTIONS(3352), + [anon_sym_string] = ACTIONS(3352), + [anon_sym_symbol] = ACTIONS(3352), + [anon_sym_object] = ACTIONS(3352), + [anon_sym_abstract] = ACTIONS(3352), + [anon_sym_interface] = ACTIONS(3352), + [anon_sym_enum] = ACTIONS(3352), [sym_html_comment] = ACTIONS(5), }, - [1324] = { - [sym_comment] = STATE(1324), - [ts_builtin_sym_end] = ACTIONS(3424), - [sym_identifier] = ACTIONS(3266), - [anon_sym_export] = ACTIONS(3266), - [anon_sym_type] = ACTIONS(3266), - [anon_sym_namespace] = ACTIONS(3266), - [anon_sym_LBRACE] = ACTIONS(3266), - [anon_sym_RBRACE] = ACTIONS(3266), - [anon_sym_typeof] = ACTIONS(3266), - [anon_sym_import] = ACTIONS(3266), - [anon_sym_with] = ACTIONS(3266), - [anon_sym_var] = ACTIONS(3266), - [anon_sym_let] = ACTIONS(3266), - [anon_sym_const] = ACTIONS(3266), - [anon_sym_BANG] = ACTIONS(3266), - [anon_sym_else] = ACTIONS(3266), - [anon_sym_if] = ACTIONS(3266), - [anon_sym_switch] = ACTIONS(3266), - [anon_sym_for] = ACTIONS(3266), - [anon_sym_LPAREN] = ACTIONS(3266), - [anon_sym_await] = ACTIONS(3266), - [anon_sym_while] = ACTIONS(3266), - [anon_sym_do] = ACTIONS(3266), - [anon_sym_try] = ACTIONS(3266), - [anon_sym_break] = ACTIONS(3266), - [anon_sym_continue] = ACTIONS(3266), - [anon_sym_debugger] = ACTIONS(3266), - [anon_sym_return] = ACTIONS(3266), - [anon_sym_throw] = ACTIONS(3266), - [anon_sym_SEMI] = ACTIONS(3266), - [anon_sym_yield] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3266), - [anon_sym_LTtemplate_GT] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(3266), - [anon_sym_SQUOTE] = ACTIONS(3266), - [anon_sym_class] = ACTIONS(3266), - [anon_sym_async] = ACTIONS(3266), - [anon_sym_function] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3266), - [anon_sym_using] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3266), - [anon_sym_DASH] = ACTIONS(3266), - [anon_sym_SLASH] = ACTIONS(3266), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_TILDE] = ACTIONS(3266), - [anon_sym_void] = ACTIONS(3266), - [anon_sym_delete] = ACTIONS(3266), - [anon_sym_PLUS_PLUS] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3266), + [1293] = { + [sym_comment] = STATE(1293), + [sym_identifier] = ACTIONS(3320), + [anon_sym_export] = ACTIONS(3320), + [anon_sym_default] = ACTIONS(3320), + [anon_sym_type] = ACTIONS(3320), + [anon_sym_namespace] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3320), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_typeof] = ACTIONS(3320), + [anon_sym_import] = ACTIONS(3320), + [anon_sym_with] = ACTIONS(3320), + [anon_sym_var] = ACTIONS(3320), + [anon_sym_let] = ACTIONS(3320), + [anon_sym_const] = ACTIONS(3320), + [anon_sym_BANG] = ACTIONS(3320), + [anon_sym_if] = ACTIONS(3320), + [anon_sym_switch] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3320), + [anon_sym_await] = ACTIONS(3320), + [anon_sym_while] = ACTIONS(3320), + [anon_sym_do] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(3320), + [anon_sym_break] = ACTIONS(3320), + [anon_sym_continue] = ACTIONS(3320), + [anon_sym_debugger] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3320), + [anon_sym_throw] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_case] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_LTtemplate_GT] = ACTIONS(3320), + [anon_sym_DQUOTE] = ACTIONS(3320), + [anon_sym_SQUOTE] = ACTIONS(3320), + [anon_sym_class] = ACTIONS(3320), + [anon_sym_async] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3320), + [anon_sym_using] = ACTIONS(3320), + [anon_sym_PLUS] = ACTIONS(3320), + [anon_sym_DASH] = ACTIONS(3320), + [anon_sym_SLASH] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_TILDE] = ACTIONS(3320), + [anon_sym_void] = ACTIONS(3320), + [anon_sym_delete] = ACTIONS(3320), + [anon_sym_PLUS_PLUS] = ACTIONS(3320), + [anon_sym_DASH_DASH] = ACTIONS(3320), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3266), - [sym_number] = ACTIONS(3266), - [sym_private_property_identifier] = ACTIONS(3266), - [sym_this] = ACTIONS(3266), - [sym_super] = ACTIONS(3266), - [sym_true] = ACTIONS(3266), - [sym_false] = ACTIONS(3266), - [sym_null] = ACTIONS(3266), - [sym_undefined] = ACTIONS(3266), - [anon_sym_AT] = ACTIONS(3266), - [anon_sym_static] = ACTIONS(3266), - [anon_sym_readonly] = ACTIONS(3266), - [anon_sym_get] = ACTIONS(3266), - [anon_sym_set] = ACTIONS(3266), - [anon_sym_declare] = ACTIONS(3266), - [anon_sym_public] = ACTIONS(3266), - [anon_sym_private] = ACTIONS(3266), - [anon_sym_protected] = ACTIONS(3266), - [anon_sym_override] = ACTIONS(3266), - [anon_sym_module] = ACTIONS(3266), - [anon_sym_any] = ACTIONS(3266), - [anon_sym_number] = ACTIONS(3266), - [anon_sym_boolean] = ACTIONS(3266), - [anon_sym_string] = ACTIONS(3266), - [anon_sym_symbol] = ACTIONS(3266), - [anon_sym_object] = ACTIONS(3266), - [anon_sym_abstract] = ACTIONS(3266), - [anon_sym_interface] = ACTIONS(3266), - [anon_sym_enum] = ACTIONS(3266), + [anon_sym_BQUOTE] = ACTIONS(3320), + [sym_number] = ACTIONS(3320), + [sym_private_property_identifier] = ACTIONS(3320), + [sym_this] = ACTIONS(3320), + [sym_super] = ACTIONS(3320), + [sym_true] = ACTIONS(3320), + [sym_false] = ACTIONS(3320), + [sym_null] = ACTIONS(3320), + [sym_undefined] = ACTIONS(3320), + [anon_sym_AT] = ACTIONS(3320), + [anon_sym_static] = ACTIONS(3320), + [anon_sym_readonly] = ACTIONS(3320), + [anon_sym_get] = ACTIONS(3320), + [anon_sym_set] = ACTIONS(3320), + [anon_sym_declare] = ACTIONS(3320), + [anon_sym_public] = ACTIONS(3320), + [anon_sym_private] = ACTIONS(3320), + [anon_sym_protected] = ACTIONS(3320), + [anon_sym_override] = ACTIONS(3320), + [anon_sym_module] = ACTIONS(3320), + [anon_sym_any] = ACTIONS(3320), + [anon_sym_number] = ACTIONS(3320), + [anon_sym_boolean] = ACTIONS(3320), + [anon_sym_string] = ACTIONS(3320), + [anon_sym_symbol] = ACTIONS(3320), + [anon_sym_object] = ACTIONS(3320), + [anon_sym_abstract] = ACTIONS(3320), + [anon_sym_interface] = ACTIONS(3320), + [anon_sym_enum] = ACTIONS(3320), [sym_html_comment] = ACTIONS(5), }, - [1325] = { - [sym_comment] = STATE(1325), - [ts_builtin_sym_end] = ACTIONS(3426), - [sym_identifier] = ACTIONS(3264), - [anon_sym_export] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_namespace] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_RBRACE] = ACTIONS(3264), - [anon_sym_typeof] = ACTIONS(3264), - [anon_sym_import] = ACTIONS(3264), - [anon_sym_with] = ACTIONS(3264), - [anon_sym_var] = ACTIONS(3264), - [anon_sym_let] = ACTIONS(3264), - [anon_sym_const] = ACTIONS(3264), - [anon_sym_BANG] = ACTIONS(3264), - [anon_sym_else] = ACTIONS(3264), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_switch] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3264), - [anon_sym_await] = ACTIONS(3264), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_do] = ACTIONS(3264), - [anon_sym_try] = ACTIONS(3264), - [anon_sym_break] = ACTIONS(3264), - [anon_sym_continue] = ACTIONS(3264), - [anon_sym_debugger] = ACTIONS(3264), - [anon_sym_return] = ACTIONS(3264), - [anon_sym_throw] = ACTIONS(3264), - [anon_sym_SEMI] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3264), - [anon_sym_LTtemplate_GT] = ACTIONS(3264), - [anon_sym_DQUOTE] = ACTIONS(3264), - [anon_sym_SQUOTE] = ACTIONS(3264), - [anon_sym_class] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3264), - [anon_sym_new] = ACTIONS(3264), - [anon_sym_using] = ACTIONS(3264), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_SLASH] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_TILDE] = ACTIONS(3264), - [anon_sym_void] = ACTIONS(3264), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_PLUS_PLUS] = ACTIONS(3264), - [anon_sym_DASH_DASH] = ACTIONS(3264), + [1294] = { + [sym_comment] = STATE(1294), + [ts_builtin_sym_end] = ACTIONS(3462), + [sym_identifier] = ACTIONS(3220), + [anon_sym_export] = ACTIONS(3220), + [anon_sym_type] = ACTIONS(3220), + [anon_sym_namespace] = ACTIONS(3220), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3220), + [anon_sym_typeof] = ACTIONS(3220), + [anon_sym_import] = ACTIONS(3220), + [anon_sym_with] = ACTIONS(3220), + [anon_sym_var] = ACTIONS(3220), + [anon_sym_let] = ACTIONS(3220), + [anon_sym_const] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3220), + [anon_sym_else] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3220), + [anon_sym_switch] = ACTIONS(3220), + [anon_sym_for] = ACTIONS(3220), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_await] = ACTIONS(3220), + [anon_sym_while] = ACTIONS(3220), + [anon_sym_do] = ACTIONS(3220), + [anon_sym_try] = ACTIONS(3220), + [anon_sym_break] = ACTIONS(3220), + [anon_sym_continue] = ACTIONS(3220), + [anon_sym_debugger] = ACTIONS(3220), + [anon_sym_return] = ACTIONS(3220), + [anon_sym_throw] = ACTIONS(3220), + [anon_sym_SEMI] = ACTIONS(3220), + [anon_sym_yield] = ACTIONS(3220), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_LTtemplate_GT] = ACTIONS(3220), + [anon_sym_DQUOTE] = ACTIONS(3220), + [anon_sym_SQUOTE] = ACTIONS(3220), + [anon_sym_class] = ACTIONS(3220), + [anon_sym_async] = ACTIONS(3220), + [anon_sym_function] = ACTIONS(3220), + [anon_sym_new] = ACTIONS(3220), + [anon_sym_using] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_SLASH] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(3220), + [anon_sym_TILDE] = ACTIONS(3220), + [anon_sym_void] = ACTIONS(3220), + [anon_sym_delete] = ACTIONS(3220), + [anon_sym_PLUS_PLUS] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3220), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3264), - [sym_number] = ACTIONS(3264), - [sym_private_property_identifier] = ACTIONS(3264), - [sym_this] = ACTIONS(3264), - [sym_super] = ACTIONS(3264), - [sym_true] = ACTIONS(3264), - [sym_false] = ACTIONS(3264), - [sym_null] = ACTIONS(3264), - [sym_undefined] = ACTIONS(3264), - [anon_sym_AT] = ACTIONS(3264), - [anon_sym_static] = ACTIONS(3264), - [anon_sym_readonly] = ACTIONS(3264), - [anon_sym_get] = ACTIONS(3264), - [anon_sym_set] = ACTIONS(3264), - [anon_sym_declare] = ACTIONS(3264), - [anon_sym_public] = ACTIONS(3264), - [anon_sym_private] = ACTIONS(3264), - [anon_sym_protected] = ACTIONS(3264), - [anon_sym_override] = ACTIONS(3264), - [anon_sym_module] = ACTIONS(3264), - [anon_sym_any] = ACTIONS(3264), - [anon_sym_number] = ACTIONS(3264), - [anon_sym_boolean] = ACTIONS(3264), - [anon_sym_string] = ACTIONS(3264), - [anon_sym_symbol] = ACTIONS(3264), - [anon_sym_object] = ACTIONS(3264), - [anon_sym_abstract] = ACTIONS(3264), - [anon_sym_interface] = ACTIONS(3264), - [anon_sym_enum] = ACTIONS(3264), + [anon_sym_BQUOTE] = ACTIONS(3220), + [sym_number] = ACTIONS(3220), + [sym_private_property_identifier] = ACTIONS(3220), + [sym_this] = ACTIONS(3220), + [sym_super] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_null] = ACTIONS(3220), + [sym_undefined] = ACTIONS(3220), + [anon_sym_AT] = ACTIONS(3220), + [anon_sym_static] = ACTIONS(3220), + [anon_sym_readonly] = ACTIONS(3220), + [anon_sym_get] = ACTIONS(3220), + [anon_sym_set] = ACTIONS(3220), + [anon_sym_declare] = ACTIONS(3220), + [anon_sym_public] = ACTIONS(3220), + [anon_sym_private] = ACTIONS(3220), + [anon_sym_protected] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3220), + [anon_sym_module] = ACTIONS(3220), + [anon_sym_any] = ACTIONS(3220), + [anon_sym_number] = ACTIONS(3220), + [anon_sym_boolean] = ACTIONS(3220), + [anon_sym_string] = ACTIONS(3220), + [anon_sym_symbol] = ACTIONS(3220), + [anon_sym_object] = ACTIONS(3220), + [anon_sym_abstract] = ACTIONS(3220), + [anon_sym_interface] = ACTIONS(3220), + [anon_sym_enum] = ACTIONS(3220), [sym_html_comment] = ACTIONS(5), }, - [1326] = { - [sym_comment] = STATE(1326), - [ts_builtin_sym_end] = ACTIONS(3428), - [sym_identifier] = ACTIONS(3262), - [anon_sym_export] = ACTIONS(3262), - [anon_sym_type] = ACTIONS(3262), - [anon_sym_namespace] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_typeof] = ACTIONS(3262), - [anon_sym_import] = ACTIONS(3262), - [anon_sym_with] = ACTIONS(3262), - [anon_sym_var] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), - [anon_sym_const] = ACTIONS(3262), - [anon_sym_BANG] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_switch] = ACTIONS(3262), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_await] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_try] = ACTIONS(3262), - [anon_sym_break] = ACTIONS(3262), - [anon_sym_continue] = ACTIONS(3262), - [anon_sym_debugger] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_throw] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_yield] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_LTtemplate_GT] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_SQUOTE] = ACTIONS(3262), - [anon_sym_class] = ACTIONS(3262), - [anon_sym_async] = ACTIONS(3262), - [anon_sym_function] = ACTIONS(3262), - [anon_sym_new] = ACTIONS(3262), - [anon_sym_using] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_void] = ACTIONS(3262), - [anon_sym_delete] = ACTIONS(3262), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3262), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), - [sym_this] = ACTIONS(3262), - [sym_super] = ACTIONS(3262), - [sym_true] = ACTIONS(3262), - [sym_false] = ACTIONS(3262), - [sym_null] = ACTIONS(3262), - [sym_undefined] = ACTIONS(3262), - [anon_sym_AT] = ACTIONS(3262), - [anon_sym_static] = ACTIONS(3262), - [anon_sym_readonly] = ACTIONS(3262), - [anon_sym_get] = ACTIONS(3262), - [anon_sym_set] = ACTIONS(3262), - [anon_sym_declare] = ACTIONS(3262), - [anon_sym_public] = ACTIONS(3262), - [anon_sym_private] = ACTIONS(3262), - [anon_sym_protected] = ACTIONS(3262), - [anon_sym_override] = ACTIONS(3262), - [anon_sym_module] = ACTIONS(3262), - [anon_sym_any] = ACTIONS(3262), - [anon_sym_number] = ACTIONS(3262), - [anon_sym_boolean] = ACTIONS(3262), - [anon_sym_string] = ACTIONS(3262), - [anon_sym_symbol] = ACTIONS(3262), - [anon_sym_object] = ACTIONS(3262), - [anon_sym_abstract] = ACTIONS(3262), - [anon_sym_interface] = ACTIONS(3262), - [anon_sym_enum] = ACTIONS(3262), + [1295] = { + [sym_comment] = STATE(1295), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), + [anon_sym_abstract] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), [sym_html_comment] = ACTIONS(5), }, - [1327] = { - [sym_comment] = STATE(1327), - [ts_builtin_sym_end] = ACTIONS(3430), - [sym_identifier] = ACTIONS(3258), - [anon_sym_export] = ACTIONS(3258), - [anon_sym_type] = ACTIONS(3258), - [anon_sym_namespace] = ACTIONS(3258), - [anon_sym_LBRACE] = ACTIONS(3258), - [anon_sym_RBRACE] = ACTIONS(3258), - [anon_sym_typeof] = ACTIONS(3258), - [anon_sym_import] = ACTIONS(3258), - [anon_sym_with] = ACTIONS(3258), - [anon_sym_var] = ACTIONS(3258), - [anon_sym_let] = ACTIONS(3258), - [anon_sym_const] = ACTIONS(3258), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_else] = ACTIONS(3258), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_switch] = ACTIONS(3258), - [anon_sym_for] = ACTIONS(3258), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_await] = ACTIONS(3258), - [anon_sym_while] = ACTIONS(3258), - [anon_sym_do] = ACTIONS(3258), - [anon_sym_try] = ACTIONS(3258), - [anon_sym_break] = ACTIONS(3258), - [anon_sym_continue] = ACTIONS(3258), - [anon_sym_debugger] = ACTIONS(3258), - [anon_sym_return] = ACTIONS(3258), - [anon_sym_throw] = ACTIONS(3258), - [anon_sym_SEMI] = ACTIONS(3258), - [anon_sym_yield] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3258), - [anon_sym_LTtemplate_GT] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_SQUOTE] = ACTIONS(3258), - [anon_sym_class] = ACTIONS(3258), - [anon_sym_async] = ACTIONS(3258), - [anon_sym_function] = ACTIONS(3258), - [anon_sym_new] = ACTIONS(3258), - [anon_sym_using] = ACTIONS(3258), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_SLASH] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(3258), - [anon_sym_void] = ACTIONS(3258), - [anon_sym_delete] = ACTIONS(3258), - [anon_sym_PLUS_PLUS] = ACTIONS(3258), - [anon_sym_DASH_DASH] = ACTIONS(3258), + [1296] = { + [sym_comment] = STATE(1296), + [sym_identifier] = ACTIONS(3364), + [anon_sym_export] = ACTIONS(3364), + [anon_sym_default] = ACTIONS(3364), + [anon_sym_type] = ACTIONS(3364), + [anon_sym_namespace] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_typeof] = ACTIONS(3364), + [anon_sym_import] = ACTIONS(3364), + [anon_sym_with] = ACTIONS(3364), + [anon_sym_var] = ACTIONS(3364), + [anon_sym_let] = ACTIONS(3364), + [anon_sym_const] = ACTIONS(3364), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_switch] = ACTIONS(3364), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(3364), + [anon_sym_await] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_do] = ACTIONS(3364), + [anon_sym_try] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_debugger] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_throw] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_case] = ACTIONS(3364), + [anon_sym_yield] = ACTIONS(3364), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_LTtemplate_GT] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3364), + [anon_sym_async] = ACTIONS(3364), + [anon_sym_function] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3364), + [anon_sym_using] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_void] = ACTIONS(3364), + [anon_sym_delete] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3364), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3258), - [sym_number] = ACTIONS(3258), - [sym_private_property_identifier] = ACTIONS(3258), - [sym_this] = ACTIONS(3258), - [sym_super] = ACTIONS(3258), - [sym_true] = ACTIONS(3258), - [sym_false] = ACTIONS(3258), - [sym_null] = ACTIONS(3258), - [sym_undefined] = ACTIONS(3258), - [anon_sym_AT] = ACTIONS(3258), - [anon_sym_static] = ACTIONS(3258), - [anon_sym_readonly] = ACTIONS(3258), - [anon_sym_get] = ACTIONS(3258), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_declare] = ACTIONS(3258), - [anon_sym_public] = ACTIONS(3258), - [anon_sym_private] = ACTIONS(3258), - [anon_sym_protected] = ACTIONS(3258), - [anon_sym_override] = ACTIONS(3258), - [anon_sym_module] = ACTIONS(3258), - [anon_sym_any] = ACTIONS(3258), - [anon_sym_number] = ACTIONS(3258), - [anon_sym_boolean] = ACTIONS(3258), - [anon_sym_string] = ACTIONS(3258), - [anon_sym_symbol] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3258), - [anon_sym_abstract] = ACTIONS(3258), - [anon_sym_interface] = ACTIONS(3258), - [anon_sym_enum] = ACTIONS(3258), + [anon_sym_BQUOTE] = ACTIONS(3364), + [sym_number] = ACTIONS(3364), + [sym_private_property_identifier] = ACTIONS(3364), + [sym_this] = ACTIONS(3364), + [sym_super] = ACTIONS(3364), + [sym_true] = ACTIONS(3364), + [sym_false] = ACTIONS(3364), + [sym_null] = ACTIONS(3364), + [sym_undefined] = ACTIONS(3364), + [anon_sym_AT] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_readonly] = ACTIONS(3364), + [anon_sym_get] = ACTIONS(3364), + [anon_sym_set] = ACTIONS(3364), + [anon_sym_declare] = ACTIONS(3364), + [anon_sym_public] = ACTIONS(3364), + [anon_sym_private] = ACTIONS(3364), + [anon_sym_protected] = ACTIONS(3364), + [anon_sym_override] = ACTIONS(3364), + [anon_sym_module] = ACTIONS(3364), + [anon_sym_any] = ACTIONS(3364), + [anon_sym_number] = ACTIONS(3364), + [anon_sym_boolean] = ACTIONS(3364), + [anon_sym_string] = ACTIONS(3364), + [anon_sym_symbol] = ACTIONS(3364), + [anon_sym_object] = ACTIONS(3364), + [anon_sym_abstract] = ACTIONS(3364), + [anon_sym_interface] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), [sym_html_comment] = ACTIONS(5), }, - [1328] = { - [sym_comment] = STATE(1328), - [ts_builtin_sym_end] = ACTIONS(3432), - [sym_identifier] = ACTIONS(3188), - [anon_sym_export] = ACTIONS(3188), - [anon_sym_type] = ACTIONS(3188), - [anon_sym_namespace] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_typeof] = ACTIONS(3188), - [anon_sym_import] = ACTIONS(3188), - [anon_sym_with] = ACTIONS(3188), - [anon_sym_var] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_const] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_switch] = ACTIONS(3188), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_await] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_debugger] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LTtemplate_GT] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_class] = ACTIONS(3188), - [anon_sym_async] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_using] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_SLASH] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_void] = ACTIONS(3188), - [anon_sym_delete] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3188), - [sym_number] = ACTIONS(3188), - [sym_private_property_identifier] = ACTIONS(3188), - [sym_this] = ACTIONS(3188), - [sym_super] = ACTIONS(3188), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_undefined] = ACTIONS(3188), - [anon_sym_AT] = ACTIONS(3188), - [anon_sym_static] = ACTIONS(3188), - [anon_sym_readonly] = ACTIONS(3188), - [anon_sym_get] = ACTIONS(3188), - [anon_sym_set] = ACTIONS(3188), - [anon_sym_declare] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_module] = ACTIONS(3188), - [anon_sym_any] = ACTIONS(3188), - [anon_sym_number] = ACTIONS(3188), - [anon_sym_boolean] = ACTIONS(3188), - [anon_sym_string] = ACTIONS(3188), - [anon_sym_symbol] = ACTIONS(3188), - [anon_sym_object] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_interface] = ACTIONS(3188), - [anon_sym_enum] = ACTIONS(3188), + [1297] = { + [sym_comment] = STATE(1297), + [sym_identifier] = ACTIONS(3370), + [anon_sym_export] = ACTIONS(3370), + [anon_sym_default] = ACTIONS(3370), + [anon_sym_type] = ACTIONS(3370), + [anon_sym_namespace] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_typeof] = ACTIONS(3370), + [anon_sym_import] = ACTIONS(3370), + [anon_sym_with] = ACTIONS(3370), + [anon_sym_var] = ACTIONS(3370), + [anon_sym_let] = ACTIONS(3370), + [anon_sym_const] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_switch] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_await] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_try] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_debugger] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_throw] = ACTIONS(3370), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_case] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_LTtemplate_GT] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3370), + [anon_sym_async] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3370), + [anon_sym_using] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_void] = ACTIONS(3370), + [anon_sym_delete] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3370), + [sym_number] = ACTIONS(3370), + [sym_private_property_identifier] = ACTIONS(3370), + [sym_this] = ACTIONS(3370), + [sym_super] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_null] = ACTIONS(3370), + [sym_undefined] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_readonly] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3370), + [anon_sym_set] = ACTIONS(3370), + [anon_sym_declare] = ACTIONS(3370), + [anon_sym_public] = ACTIONS(3370), + [anon_sym_private] = ACTIONS(3370), + [anon_sym_protected] = ACTIONS(3370), + [anon_sym_override] = ACTIONS(3370), + [anon_sym_module] = ACTIONS(3370), + [anon_sym_any] = ACTIONS(3370), + [anon_sym_number] = ACTIONS(3370), + [anon_sym_boolean] = ACTIONS(3370), + [anon_sym_string] = ACTIONS(3370), + [anon_sym_symbol] = ACTIONS(3370), + [anon_sym_object] = ACTIONS(3370), + [anon_sym_abstract] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), [sym_html_comment] = ACTIONS(5), }, - [1329] = { - [sym_comment] = STATE(1329), - [sym_identifier] = ACTIONS(3188), - [anon_sym_export] = ACTIONS(3188), - [anon_sym_default] = ACTIONS(3188), - [anon_sym_type] = ACTIONS(3188), - [anon_sym_namespace] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_typeof] = ACTIONS(3188), - [anon_sym_import] = ACTIONS(3188), - [anon_sym_with] = ACTIONS(3188), - [anon_sym_var] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_const] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_switch] = ACTIONS(3188), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_await] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_debugger] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym_case] = ACTIONS(3188), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LTtemplate_GT] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_class] = ACTIONS(3188), - [anon_sym_async] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_using] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_SLASH] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_void] = ACTIONS(3188), - [anon_sym_delete] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_DASH_DASH] = ACTIONS(3188), + [1298] = { + [sym_comment] = STATE(1298), + [ts_builtin_sym_end] = ACTIONS(3464), + [sym_identifier] = ACTIONS(3218), + [anon_sym_export] = ACTIONS(3218), + [anon_sym_type] = ACTIONS(3218), + [anon_sym_namespace] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_typeof] = ACTIONS(3218), + [anon_sym_import] = ACTIONS(3218), + [anon_sym_with] = ACTIONS(3218), + [anon_sym_var] = ACTIONS(3218), + [anon_sym_let] = ACTIONS(3218), + [anon_sym_const] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_switch] = ACTIONS(3218), + [anon_sym_for] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3218), + [anon_sym_await] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_do] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_debugger] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_yield] = ACTIONS(3218), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_LTtemplate_GT] = ACTIONS(3218), + [anon_sym_DQUOTE] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3218), + [anon_sym_class] = ACTIONS(3218), + [anon_sym_async] = ACTIONS(3218), + [anon_sym_function] = ACTIONS(3218), + [anon_sym_new] = ACTIONS(3218), + [anon_sym_using] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_void] = ACTIONS(3218), + [anon_sym_delete] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3188), - [sym_number] = ACTIONS(3188), - [sym_private_property_identifier] = ACTIONS(3188), - [sym_this] = ACTIONS(3188), - [sym_super] = ACTIONS(3188), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_undefined] = ACTIONS(3188), - [anon_sym_AT] = ACTIONS(3188), - [anon_sym_static] = ACTIONS(3188), - [anon_sym_readonly] = ACTIONS(3188), - [anon_sym_get] = ACTIONS(3188), - [anon_sym_set] = ACTIONS(3188), - [anon_sym_declare] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_module] = ACTIONS(3188), - [anon_sym_any] = ACTIONS(3188), - [anon_sym_number] = ACTIONS(3188), - [anon_sym_boolean] = ACTIONS(3188), - [anon_sym_string] = ACTIONS(3188), - [anon_sym_symbol] = ACTIONS(3188), - [anon_sym_object] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_interface] = ACTIONS(3188), - [anon_sym_enum] = ACTIONS(3188), + [anon_sym_BQUOTE] = ACTIONS(3218), + [sym_number] = ACTIONS(3218), + [sym_private_property_identifier] = ACTIONS(3218), + [sym_this] = ACTIONS(3218), + [sym_super] = ACTIONS(3218), + [sym_true] = ACTIONS(3218), + [sym_false] = ACTIONS(3218), + [sym_null] = ACTIONS(3218), + [sym_undefined] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3218), + [anon_sym_static] = ACTIONS(3218), + [anon_sym_readonly] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_declare] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_module] = ACTIONS(3218), + [anon_sym_any] = ACTIONS(3218), + [anon_sym_number] = ACTIONS(3218), + [anon_sym_boolean] = ACTIONS(3218), + [anon_sym_string] = ACTIONS(3218), + [anon_sym_symbol] = ACTIONS(3218), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_interface] = ACTIONS(3218), + [anon_sym_enum] = ACTIONS(3218), [sym_html_comment] = ACTIONS(5), }, - [1330] = { - [sym_comment] = STATE(1330), - [ts_builtin_sym_end] = ACTIONS(3434), - [sym_identifier] = ACTIONS(3192), - [anon_sym_export] = ACTIONS(3192), - [anon_sym_type] = ACTIONS(3192), - [anon_sym_namespace] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3192), - [anon_sym_typeof] = ACTIONS(3192), - [anon_sym_import] = ACTIONS(3192), - [anon_sym_with] = ACTIONS(3192), - [anon_sym_var] = ACTIONS(3192), - [anon_sym_let] = ACTIONS(3192), - [anon_sym_const] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_if] = ACTIONS(3192), - [anon_sym_switch] = ACTIONS(3192), - [anon_sym_for] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3192), - [anon_sym_await] = ACTIONS(3192), - [anon_sym_while] = ACTIONS(3192), - [anon_sym_do] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3192), - [anon_sym_break] = ACTIONS(3192), - [anon_sym_continue] = ACTIONS(3192), - [anon_sym_debugger] = ACTIONS(3192), - [anon_sym_return] = ACTIONS(3192), - [anon_sym_throw] = ACTIONS(3192), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym_yield] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3192), - [anon_sym_LTtemplate_GT] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_class] = ACTIONS(3192), - [anon_sym_async] = ACTIONS(3192), - [anon_sym_function] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3192), - [anon_sym_using] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_SLASH] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_void] = ACTIONS(3192), - [anon_sym_delete] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3192), + [1299] = { + [sym_comment] = STATE(1299), + [sym_identifier] = ACTIONS(3216), + [anon_sym_export] = ACTIONS(3216), + [anon_sym_default] = ACTIONS(3216), + [anon_sym_type] = ACTIONS(3216), + [anon_sym_namespace] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3216), + [anon_sym_RBRACE] = ACTIONS(3216), + [anon_sym_typeof] = ACTIONS(3216), + [anon_sym_import] = ACTIONS(3216), + [anon_sym_with] = ACTIONS(3216), + [anon_sym_var] = ACTIONS(3216), + [anon_sym_let] = ACTIONS(3216), + [anon_sym_const] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3216), + [anon_sym_if] = ACTIONS(3216), + [anon_sym_switch] = ACTIONS(3216), + [anon_sym_for] = ACTIONS(3216), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_await] = ACTIONS(3216), + [anon_sym_while] = ACTIONS(3216), + [anon_sym_do] = ACTIONS(3216), + [anon_sym_try] = ACTIONS(3216), + [anon_sym_break] = ACTIONS(3216), + [anon_sym_continue] = ACTIONS(3216), + [anon_sym_debugger] = ACTIONS(3216), + [anon_sym_return] = ACTIONS(3216), + [anon_sym_throw] = ACTIONS(3216), + [anon_sym_SEMI] = ACTIONS(3216), + [anon_sym_case] = ACTIONS(3216), + [anon_sym_yield] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_LTtemplate_GT] = ACTIONS(3216), + [anon_sym_DQUOTE] = ACTIONS(3216), + [anon_sym_SQUOTE] = ACTIONS(3216), + [anon_sym_class] = ACTIONS(3216), + [anon_sym_async] = ACTIONS(3216), + [anon_sym_function] = ACTIONS(3216), + [anon_sym_new] = ACTIONS(3216), + [anon_sym_using] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3216), + [anon_sym_DASH] = ACTIONS(3216), + [anon_sym_SLASH] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3216), + [anon_sym_void] = ACTIONS(3216), + [anon_sym_delete] = ACTIONS(3216), + [anon_sym_PLUS_PLUS] = ACTIONS(3216), + [anon_sym_DASH_DASH] = ACTIONS(3216), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3192), - [sym_number] = ACTIONS(3192), - [sym_private_property_identifier] = ACTIONS(3192), - [sym_this] = ACTIONS(3192), - [sym_super] = ACTIONS(3192), - [sym_true] = ACTIONS(3192), - [sym_false] = ACTIONS(3192), - [sym_null] = ACTIONS(3192), - [sym_undefined] = ACTIONS(3192), - [anon_sym_AT] = ACTIONS(3192), - [anon_sym_static] = ACTIONS(3192), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_get] = ACTIONS(3192), - [anon_sym_set] = ACTIONS(3192), - [anon_sym_declare] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_module] = ACTIONS(3192), - [anon_sym_any] = ACTIONS(3192), - [anon_sym_number] = ACTIONS(3192), - [anon_sym_boolean] = ACTIONS(3192), - [anon_sym_string] = ACTIONS(3192), - [anon_sym_symbol] = ACTIONS(3192), - [anon_sym_object] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_interface] = ACTIONS(3192), - [anon_sym_enum] = ACTIONS(3192), + [anon_sym_BQUOTE] = ACTIONS(3216), + [sym_number] = ACTIONS(3216), + [sym_private_property_identifier] = ACTIONS(3216), + [sym_this] = ACTIONS(3216), + [sym_super] = ACTIONS(3216), + [sym_true] = ACTIONS(3216), + [sym_false] = ACTIONS(3216), + [sym_null] = ACTIONS(3216), + [sym_undefined] = ACTIONS(3216), + [anon_sym_AT] = ACTIONS(3216), + [anon_sym_static] = ACTIONS(3216), + [anon_sym_readonly] = ACTIONS(3216), + [anon_sym_get] = ACTIONS(3216), + [anon_sym_set] = ACTIONS(3216), + [anon_sym_declare] = ACTIONS(3216), + [anon_sym_public] = ACTIONS(3216), + [anon_sym_private] = ACTIONS(3216), + [anon_sym_protected] = ACTIONS(3216), + [anon_sym_override] = ACTIONS(3216), + [anon_sym_module] = ACTIONS(3216), + [anon_sym_any] = ACTIONS(3216), + [anon_sym_number] = ACTIONS(3216), + [anon_sym_boolean] = ACTIONS(3216), + [anon_sym_string] = ACTIONS(3216), + [anon_sym_symbol] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3216), + [anon_sym_abstract] = ACTIONS(3216), + [anon_sym_interface] = ACTIONS(3216), + [anon_sym_enum] = ACTIONS(3216), [sym_html_comment] = ACTIONS(5), }, - [1331] = { - [sym_comment] = STATE(1331), - [ts_builtin_sym_end] = ACTIONS(3436), - [sym_identifier] = ACTIONS(3196), - [anon_sym_export] = ACTIONS(3196), - [anon_sym_type] = ACTIONS(3196), - [anon_sym_namespace] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3196), - [anon_sym_RBRACE] = ACTIONS(3196), - [anon_sym_typeof] = ACTIONS(3196), - [anon_sym_import] = ACTIONS(3196), - [anon_sym_with] = ACTIONS(3196), - [anon_sym_var] = ACTIONS(3196), - [anon_sym_let] = ACTIONS(3196), - [anon_sym_const] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_switch] = ACTIONS(3196), - [anon_sym_for] = ACTIONS(3196), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_await] = ACTIONS(3196), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_do] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_debugger] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3196), - [anon_sym_yield] = ACTIONS(3196), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_LTtemplate_GT] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3196), - [anon_sym_class] = ACTIONS(3196), - [anon_sym_async] = ACTIONS(3196), - [anon_sym_function] = ACTIONS(3196), - [anon_sym_new] = ACTIONS(3196), - [anon_sym_using] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_void] = ACTIONS(3196), - [anon_sym_delete] = ACTIONS(3196), - [anon_sym_PLUS_PLUS] = ACTIONS(3196), - [anon_sym_DASH_DASH] = ACTIONS(3196), + [1300] = { + [sym_comment] = STATE(1300), + [sym_identifier] = ACTIONS(3212), + [anon_sym_export] = ACTIONS(3212), + [anon_sym_default] = ACTIONS(3212), + [anon_sym_type] = ACTIONS(3212), + [anon_sym_namespace] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_RBRACE] = ACTIONS(3212), + [anon_sym_typeof] = ACTIONS(3212), + [anon_sym_import] = ACTIONS(3212), + [anon_sym_with] = ACTIONS(3212), + [anon_sym_var] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_const] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_switch] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_await] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_break] = ACTIONS(3212), + [anon_sym_continue] = ACTIONS(3212), + [anon_sym_debugger] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_throw] = ACTIONS(3212), + [anon_sym_SEMI] = ACTIONS(3212), + [anon_sym_case] = ACTIONS(3212), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LTtemplate_GT] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_SQUOTE] = ACTIONS(3212), + [anon_sym_class] = ACTIONS(3212), + [anon_sym_async] = ACTIONS(3212), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_using] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_SLASH] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3212), + [anon_sym_TILDE] = ACTIONS(3212), + [anon_sym_void] = ACTIONS(3212), + [anon_sym_delete] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_DASH_DASH] = ACTIONS(3212), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3196), - [sym_number] = ACTIONS(3196), - [sym_private_property_identifier] = ACTIONS(3196), - [sym_this] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_true] = ACTIONS(3196), - [sym_false] = ACTIONS(3196), - [sym_null] = ACTIONS(3196), - [sym_undefined] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3196), - [anon_sym_static] = ACTIONS(3196), - [anon_sym_readonly] = ACTIONS(3196), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_declare] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_module] = ACTIONS(3196), - [anon_sym_any] = ACTIONS(3196), - [anon_sym_number] = ACTIONS(3196), - [anon_sym_boolean] = ACTIONS(3196), - [anon_sym_string] = ACTIONS(3196), - [anon_sym_symbol] = ACTIONS(3196), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_interface] = ACTIONS(3196), - [anon_sym_enum] = ACTIONS(3196), - [sym_html_comment] = ACTIONS(5), - }, - [1332] = { - [sym_comment] = STATE(1332), - [ts_builtin_sym_end] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), - [sym_html_comment] = ACTIONS(5), - }, - [1333] = { - [sym_comment] = STATE(1333), - [ts_builtin_sym_end] = ACTIONS(3440), - [sym_identifier] = ACTIONS(3172), - [anon_sym_export] = ACTIONS(3172), - [anon_sym_type] = ACTIONS(3172), - [anon_sym_namespace] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3172), - [anon_sym_RBRACE] = ACTIONS(3172), - [anon_sym_typeof] = ACTIONS(3172), - [anon_sym_import] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3172), - [anon_sym_var] = ACTIONS(3172), - [anon_sym_let] = ACTIONS(3172), - [anon_sym_const] = ACTIONS(3172), - [anon_sym_BANG] = ACTIONS(3172), - [anon_sym_else] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_switch] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3172), - [anon_sym_await] = ACTIONS(3172), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_do] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_debugger] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_SEMI] = ACTIONS(3172), - [anon_sym_yield] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_LTtemplate_GT] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(3172), - [anon_sym_SQUOTE] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3172), - [anon_sym_async] = ACTIONS(3172), - [anon_sym_function] = ACTIONS(3172), - [anon_sym_new] = ACTIONS(3172), - [anon_sym_using] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_void] = ACTIONS(3172), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_PLUS_PLUS] = ACTIONS(3172), - [anon_sym_DASH_DASH] = ACTIONS(3172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3172), - [sym_number] = ACTIONS(3172), - [sym_private_property_identifier] = ACTIONS(3172), - [sym_this] = ACTIONS(3172), - [sym_super] = ACTIONS(3172), - [sym_true] = ACTIONS(3172), - [sym_false] = ACTIONS(3172), - [sym_null] = ACTIONS(3172), - [sym_undefined] = ACTIONS(3172), - [anon_sym_AT] = ACTIONS(3172), - [anon_sym_static] = ACTIONS(3172), - [anon_sym_readonly] = ACTIONS(3172), - [anon_sym_get] = ACTIONS(3172), - [anon_sym_set] = ACTIONS(3172), - [anon_sym_declare] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_module] = ACTIONS(3172), - [anon_sym_any] = ACTIONS(3172), - [anon_sym_number] = ACTIONS(3172), - [anon_sym_boolean] = ACTIONS(3172), - [anon_sym_string] = ACTIONS(3172), - [anon_sym_symbol] = ACTIONS(3172), - [anon_sym_object] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_interface] = ACTIONS(3172), - [anon_sym_enum] = ACTIONS(3172), - [sym_html_comment] = ACTIONS(5), - }, - [1334] = { - [sym_comment] = STATE(1334), - [ts_builtin_sym_end] = ACTIONS(3442), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3224), - [anon_sym_RBRACE] = ACTIONS(3224), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3224), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_LTtemplate_GT] = ACTIONS(3224), - [anon_sym_DQUOTE] = ACTIONS(3224), - [anon_sym_SQUOTE] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_using] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_LT] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3224), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3224), - [sym_number] = ACTIONS(3224), - [sym_private_property_identifier] = ACTIONS(3224), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3224), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_override] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_object] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), - [sym_html_comment] = ACTIONS(5), - }, - [1335] = { - [sym_comment] = STATE(1335), - [ts_builtin_sym_end] = ACTIONS(2201), - [sym_identifier] = ACTIONS(2199), - [anon_sym_export] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2199), - [anon_sym_namespace] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_typeof] = ACTIONS(2199), - [anon_sym_import] = ACTIONS(2199), - [anon_sym_with] = ACTIONS(2199), - [anon_sym_var] = ACTIONS(2199), - [anon_sym_let] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_else] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_switch] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_await] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2199), - [anon_sym_do] = ACTIONS(2199), - [anon_sym_try] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_debugger] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_throw] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_yield] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_LTtemplate_GT] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2199), - [anon_sym_SQUOTE] = ACTIONS(2199), - [anon_sym_class] = ACTIONS(2199), - [anon_sym_async] = ACTIONS(2199), - [anon_sym_function] = ACTIONS(2199), - [anon_sym_new] = ACTIONS(2199), - [anon_sym_using] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_SLASH] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_void] = ACTIONS(2199), - [anon_sym_delete] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2199), - [sym_number] = ACTIONS(2199), - [sym_private_property_identifier] = ACTIONS(2199), - [sym_this] = ACTIONS(2199), - [sym_super] = ACTIONS(2199), - [sym_true] = ACTIONS(2199), - [sym_false] = ACTIONS(2199), - [sym_null] = ACTIONS(2199), - [sym_undefined] = ACTIONS(2199), - [anon_sym_AT] = ACTIONS(2199), - [anon_sym_static] = ACTIONS(2199), - [anon_sym_readonly] = ACTIONS(2199), - [anon_sym_get] = ACTIONS(2199), - [anon_sym_set] = ACTIONS(2199), - [anon_sym_declare] = ACTIONS(2199), - [anon_sym_public] = ACTIONS(2199), - [anon_sym_private] = ACTIONS(2199), - [anon_sym_protected] = ACTIONS(2199), - [anon_sym_override] = ACTIONS(2199), - [anon_sym_module] = ACTIONS(2199), - [anon_sym_any] = ACTIONS(2199), - [anon_sym_number] = ACTIONS(2199), - [anon_sym_boolean] = ACTIONS(2199), - [anon_sym_string] = ACTIONS(2199), - [anon_sym_symbol] = ACTIONS(2199), - [anon_sym_object] = ACTIONS(2199), - [anon_sym_abstract] = ACTIONS(2199), - [anon_sym_interface] = ACTIONS(2199), - [anon_sym_enum] = ACTIONS(2199), - [sym_html_comment] = ACTIONS(5), - }, - [1336] = { - [sym_comment] = STATE(1336), - [ts_builtin_sym_end] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), - [sym_html_comment] = ACTIONS(5), - }, - [1337] = { - [sym_comment] = STATE(1337), - [ts_builtin_sym_end] = ACTIONS(2205), - [sym_identifier] = ACTIONS(2203), - [anon_sym_export] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_namespace] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_typeof] = ACTIONS(2203), - [anon_sym_import] = ACTIONS(2203), - [anon_sym_with] = ACTIONS(2203), - [anon_sym_var] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_else] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_switch] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [anon_sym_do] = ACTIONS(2203), - [anon_sym_try] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_debugger] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_throw] = ACTIONS(2203), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_yield] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_LTtemplate_GT] = ACTIONS(2203), - [anon_sym_DQUOTE] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_class] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_function] = ACTIONS(2203), - [anon_sym_new] = ACTIONS(2203), - [anon_sym_using] = ACTIONS(2203), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_SLASH] = ACTIONS(2203), - [anon_sym_LT] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(2203), - [anon_sym_delete] = ACTIONS(2203), - [anon_sym_PLUS_PLUS] = ACTIONS(2203), - [anon_sym_DASH_DASH] = ACTIONS(2203), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2203), - [sym_number] = ACTIONS(2203), - [sym_private_property_identifier] = ACTIONS(2203), - [sym_this] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_true] = ACTIONS(2203), - [sym_false] = ACTIONS(2203), - [sym_null] = ACTIONS(2203), - [sym_undefined] = ACTIONS(2203), - [anon_sym_AT] = ACTIONS(2203), - [anon_sym_static] = ACTIONS(2203), - [anon_sym_readonly] = ACTIONS(2203), - [anon_sym_get] = ACTIONS(2203), - [anon_sym_set] = ACTIONS(2203), - [anon_sym_declare] = ACTIONS(2203), - [anon_sym_public] = ACTIONS(2203), - [anon_sym_private] = ACTIONS(2203), - [anon_sym_protected] = ACTIONS(2203), - [anon_sym_override] = ACTIONS(2203), - [anon_sym_module] = ACTIONS(2203), - [anon_sym_any] = ACTIONS(2203), - [anon_sym_number] = ACTIONS(2203), - [anon_sym_boolean] = ACTIONS(2203), - [anon_sym_string] = ACTIONS(2203), - [anon_sym_symbol] = ACTIONS(2203), - [anon_sym_object] = ACTIONS(2203), - [anon_sym_abstract] = ACTIONS(2203), - [anon_sym_interface] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [sym_html_comment] = ACTIONS(5), - }, - [1338] = { - [sym_comment] = STATE(1338), - [ts_builtin_sym_end] = ACTIONS(3444), - [sym_identifier] = ACTIONS(3256), - [anon_sym_export] = ACTIONS(3256), - [anon_sym_type] = ACTIONS(3256), - [anon_sym_namespace] = ACTIONS(3256), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3256), - [anon_sym_typeof] = ACTIONS(3256), - [anon_sym_import] = ACTIONS(3256), - [anon_sym_with] = ACTIONS(3256), - [anon_sym_var] = ACTIONS(3256), - [anon_sym_let] = ACTIONS(3256), - [anon_sym_const] = ACTIONS(3256), - [anon_sym_BANG] = ACTIONS(3256), - [anon_sym_else] = ACTIONS(3256), - [anon_sym_if] = ACTIONS(3256), - [anon_sym_switch] = ACTIONS(3256), - [anon_sym_for] = ACTIONS(3256), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_await] = ACTIONS(3256), - [anon_sym_while] = ACTIONS(3256), - [anon_sym_do] = ACTIONS(3256), - [anon_sym_try] = ACTIONS(3256), - [anon_sym_break] = ACTIONS(3256), - [anon_sym_continue] = ACTIONS(3256), - [anon_sym_debugger] = ACTIONS(3256), - [anon_sym_return] = ACTIONS(3256), - [anon_sym_throw] = ACTIONS(3256), - [anon_sym_SEMI] = ACTIONS(3256), - [anon_sym_yield] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_LTtemplate_GT] = ACTIONS(3256), - [anon_sym_DQUOTE] = ACTIONS(3256), - [anon_sym_SQUOTE] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3256), - [anon_sym_async] = ACTIONS(3256), - [anon_sym_function] = ACTIONS(3256), - [anon_sym_new] = ACTIONS(3256), - [anon_sym_using] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3256), - [anon_sym_DASH] = ACTIONS(3256), - [anon_sym_SLASH] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3256), - [anon_sym_TILDE] = ACTIONS(3256), - [anon_sym_void] = ACTIONS(3256), - [anon_sym_delete] = ACTIONS(3256), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3256), - [sym_number] = ACTIONS(3256), - [sym_private_property_identifier] = ACTIONS(3256), - [sym_this] = ACTIONS(3256), - [sym_super] = ACTIONS(3256), - [sym_true] = ACTIONS(3256), - [sym_false] = ACTIONS(3256), - [sym_null] = ACTIONS(3256), - [sym_undefined] = ACTIONS(3256), - [anon_sym_AT] = ACTIONS(3256), - [anon_sym_static] = ACTIONS(3256), - [anon_sym_readonly] = ACTIONS(3256), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3256), - [anon_sym_declare] = ACTIONS(3256), - [anon_sym_public] = ACTIONS(3256), - [anon_sym_private] = ACTIONS(3256), - [anon_sym_protected] = ACTIONS(3256), - [anon_sym_override] = ACTIONS(3256), - [anon_sym_module] = ACTIONS(3256), - [anon_sym_any] = ACTIONS(3256), - [anon_sym_number] = ACTIONS(3256), - [anon_sym_boolean] = ACTIONS(3256), - [anon_sym_string] = ACTIONS(3256), - [anon_sym_symbol] = ACTIONS(3256), - [anon_sym_object] = ACTIONS(3256), - [anon_sym_abstract] = ACTIONS(3256), - [anon_sym_interface] = ACTIONS(3256), - [anon_sym_enum] = ACTIONS(3256), - [sym_html_comment] = ACTIONS(5), - }, - [1339] = { - [sym_comment] = STATE(1339), - [sym_identifier] = ACTIONS(3270), - [anon_sym_export] = ACTIONS(3270), - [anon_sym_default] = ACTIONS(3270), - [anon_sym_type] = ACTIONS(3270), - [anon_sym_namespace] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3270), - [anon_sym_RBRACE] = ACTIONS(3270), - [anon_sym_typeof] = ACTIONS(3270), - [anon_sym_import] = ACTIONS(3270), - [anon_sym_with] = ACTIONS(3270), - [anon_sym_var] = ACTIONS(3270), - [anon_sym_let] = ACTIONS(3270), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_switch] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3270), - [anon_sym_await] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_do] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_debugger] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3270), - [anon_sym_case] = ACTIONS(3270), - [anon_sym_yield] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_LTtemplate_GT] = ACTIONS(3270), - [anon_sym_DQUOTE] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3270), - [anon_sym_async] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_TILDE] = ACTIONS(3270), - [anon_sym_void] = ACTIONS(3270), - [anon_sym_delete] = ACTIONS(3270), - [anon_sym_PLUS_PLUS] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3270), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3270), - [sym_number] = ACTIONS(3270), - [sym_private_property_identifier] = ACTIONS(3270), - [sym_this] = ACTIONS(3270), - [sym_super] = ACTIONS(3270), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [sym_null] = ACTIONS(3270), - [sym_undefined] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_readonly] = ACTIONS(3270), - [anon_sym_get] = ACTIONS(3270), - [anon_sym_set] = ACTIONS(3270), - [anon_sym_declare] = ACTIONS(3270), - [anon_sym_public] = ACTIONS(3270), - [anon_sym_private] = ACTIONS(3270), - [anon_sym_protected] = ACTIONS(3270), - [anon_sym_override] = ACTIONS(3270), - [anon_sym_module] = ACTIONS(3270), - [anon_sym_any] = ACTIONS(3270), - [anon_sym_number] = ACTIONS(3270), - [anon_sym_boolean] = ACTIONS(3270), - [anon_sym_string] = ACTIONS(3270), - [anon_sym_symbol] = ACTIONS(3270), - [anon_sym_object] = ACTIONS(3270), - [anon_sym_abstract] = ACTIONS(3270), - [anon_sym_interface] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), - [sym_html_comment] = ACTIONS(5), - }, - [1340] = { - [sym_comment] = STATE(1340), - [ts_builtin_sym_end] = ACTIONS(2079), - [sym_identifier] = ACTIONS(2077), - [anon_sym_export] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_namespace] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(2077), - [anon_sym_import] = ACTIONS(2077), - [anon_sym_with] = ACTIONS(2077), - [anon_sym_var] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_else] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_switch] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_await] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_debugger] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_throw] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LTtemplate_GT] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_class] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_new] = ACTIONS(2077), - [anon_sym_using] = ACTIONS(2077), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2077), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_void] = ACTIONS(2077), - [anon_sym_delete] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2077), - [sym_number] = ACTIONS(2077), - [sym_private_property_identifier] = ACTIONS(2077), - [sym_this] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_true] = ACTIONS(2077), - [sym_false] = ACTIONS(2077), - [sym_null] = ACTIONS(2077), - [sym_undefined] = ACTIONS(2077), - [anon_sym_AT] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_readonly] = ACTIONS(2077), - [anon_sym_get] = ACTIONS(2077), - [anon_sym_set] = ACTIONS(2077), - [anon_sym_declare] = ACTIONS(2077), - [anon_sym_public] = ACTIONS(2077), - [anon_sym_private] = ACTIONS(2077), - [anon_sym_protected] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2077), - [anon_sym_module] = ACTIONS(2077), - [anon_sym_any] = ACTIONS(2077), - [anon_sym_number] = ACTIONS(2077), - [anon_sym_boolean] = ACTIONS(2077), - [anon_sym_string] = ACTIONS(2077), - [anon_sym_symbol] = ACTIONS(2077), - [anon_sym_object] = ACTIONS(2077), - [anon_sym_abstract] = ACTIONS(2077), - [anon_sym_interface] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), - [sym_html_comment] = ACTIONS(5), - }, - [1341] = { - [sym_comment] = STATE(1341), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3272), - [anon_sym_default] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_typeof] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(3272), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_var] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_const] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_switch] = ACTIONS(3272), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_await] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_break] = ACTIONS(3272), - [anon_sym_continue] = ACTIONS(3272), - [anon_sym_debugger] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_throw] = ACTIONS(3272), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym_case] = ACTIONS(3272), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LTtemplate_GT] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_class] = ACTIONS(3272), - [anon_sym_async] = ACTIONS(3272), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_using] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_void] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3272), - [sym_number] = ACTIONS(3272), - [sym_private_property_identifier] = ACTIONS(3272), - [sym_this] = ACTIONS(3272), - [sym_super] = ACTIONS(3272), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_undefined] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3272), - [anon_sym_static] = ACTIONS(3272), - [anon_sym_readonly] = ACTIONS(3272), - [anon_sym_get] = ACTIONS(3272), - [anon_sym_set] = ACTIONS(3272), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3272), - [anon_sym_private] = ACTIONS(3272), - [anon_sym_protected] = ACTIONS(3272), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_any] = ACTIONS(3272), - [anon_sym_number] = ACTIONS(3272), - [anon_sym_boolean] = ACTIONS(3272), - [anon_sym_string] = ACTIONS(3272), - [anon_sym_symbol] = ACTIONS(3272), - [anon_sym_object] = ACTIONS(3272), - [anon_sym_abstract] = ACTIONS(3272), - [anon_sym_interface] = ACTIONS(3272), - [anon_sym_enum] = ACTIONS(3272), - [sym_html_comment] = ACTIONS(5), - }, - [1342] = { - [sym_comment] = STATE(1342), - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), - [sym_html_comment] = ACTIONS(5), - }, - [1343] = { - [sym_comment] = STATE(1343), - [ts_builtin_sym_end] = ACTIONS(3446), - [sym_identifier] = ACTIONS(3254), - [anon_sym_export] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_namespace] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3254), - [anon_sym_typeof] = ACTIONS(3254), - [anon_sym_import] = ACTIONS(3254), - [anon_sym_with] = ACTIONS(3254), - [anon_sym_var] = ACTIONS(3254), - [anon_sym_let] = ACTIONS(3254), - [anon_sym_const] = ACTIONS(3254), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_else] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_switch] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_await] = ACTIONS(3254), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_do] = ACTIONS(3254), - [anon_sym_try] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_debugger] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_throw] = ACTIONS(3254), - [anon_sym_SEMI] = ACTIONS(3254), - [anon_sym_yield] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_LTtemplate_GT] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(3254), - [anon_sym_class] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_function] = ACTIONS(3254), - [anon_sym_new] = ACTIONS(3254), - [anon_sym_using] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3254), - [anon_sym_void] = ACTIONS(3254), - [anon_sym_delete] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3254), - [sym_number] = ACTIONS(3254), - [sym_private_property_identifier] = ACTIONS(3254), - [sym_this] = ACTIONS(3254), - [sym_super] = ACTIONS(3254), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_undefined] = ACTIONS(3254), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_readonly] = ACTIONS(3254), - [anon_sym_get] = ACTIONS(3254), - [anon_sym_set] = ACTIONS(3254), - [anon_sym_declare] = ACTIONS(3254), - [anon_sym_public] = ACTIONS(3254), - [anon_sym_private] = ACTIONS(3254), - [anon_sym_protected] = ACTIONS(3254), - [anon_sym_override] = ACTIONS(3254), - [anon_sym_module] = ACTIONS(3254), - [anon_sym_any] = ACTIONS(3254), - [anon_sym_number] = ACTIONS(3254), - [anon_sym_boolean] = ACTIONS(3254), - [anon_sym_string] = ACTIONS(3254), - [anon_sym_symbol] = ACTIONS(3254), - [anon_sym_object] = ACTIONS(3254), - [anon_sym_abstract] = ACTIONS(3254), - [anon_sym_interface] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3254), + [anon_sym_BQUOTE] = ACTIONS(3212), + [sym_number] = ACTIONS(3212), + [sym_private_property_identifier] = ACTIONS(3212), + [sym_this] = ACTIONS(3212), + [sym_super] = ACTIONS(3212), + [sym_true] = ACTIONS(3212), + [sym_false] = ACTIONS(3212), + [sym_null] = ACTIONS(3212), + [sym_undefined] = ACTIONS(3212), + [anon_sym_AT] = ACTIONS(3212), + [anon_sym_static] = ACTIONS(3212), + [anon_sym_readonly] = ACTIONS(3212), + [anon_sym_get] = ACTIONS(3212), + [anon_sym_set] = ACTIONS(3212), + [anon_sym_declare] = ACTIONS(3212), + [anon_sym_public] = ACTIONS(3212), + [anon_sym_private] = ACTIONS(3212), + [anon_sym_protected] = ACTIONS(3212), + [anon_sym_override] = ACTIONS(3212), + [anon_sym_module] = ACTIONS(3212), + [anon_sym_any] = ACTIONS(3212), + [anon_sym_number] = ACTIONS(3212), + [anon_sym_boolean] = ACTIONS(3212), + [anon_sym_string] = ACTIONS(3212), + [anon_sym_symbol] = ACTIONS(3212), + [anon_sym_object] = ACTIONS(3212), + [anon_sym_abstract] = ACTIONS(3212), + [anon_sym_interface] = ACTIONS(3212), + [anon_sym_enum] = ACTIONS(3212), [sym_html_comment] = ACTIONS(5), }, - [1344] = { - [sym_comment] = STATE(1344), - [sym_identifier] = ACTIONS(3192), - [anon_sym_export] = ACTIONS(3192), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_type] = ACTIONS(3192), - [anon_sym_namespace] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3192), - [anon_sym_typeof] = ACTIONS(3192), - [anon_sym_import] = ACTIONS(3192), - [anon_sym_with] = ACTIONS(3192), - [anon_sym_var] = ACTIONS(3192), - [anon_sym_let] = ACTIONS(3192), - [anon_sym_const] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_if] = ACTIONS(3192), - [anon_sym_switch] = ACTIONS(3192), - [anon_sym_for] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3192), - [anon_sym_await] = ACTIONS(3192), - [anon_sym_while] = ACTIONS(3192), - [anon_sym_do] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3192), - [anon_sym_break] = ACTIONS(3192), - [anon_sym_continue] = ACTIONS(3192), - [anon_sym_debugger] = ACTIONS(3192), - [anon_sym_return] = ACTIONS(3192), - [anon_sym_throw] = ACTIONS(3192), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym_case] = ACTIONS(3192), - [anon_sym_yield] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3192), - [anon_sym_LTtemplate_GT] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_class] = ACTIONS(3192), - [anon_sym_async] = ACTIONS(3192), - [anon_sym_function] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3192), - [anon_sym_using] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_SLASH] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_void] = ACTIONS(3192), - [anon_sym_delete] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3192), + [1301] = { + [sym_comment] = STATE(1301), + [ts_builtin_sym_end] = ACTIONS(3466), + [sym_identifier] = ACTIONS(3144), + [anon_sym_export] = ACTIONS(3144), + [anon_sym_type] = ACTIONS(3144), + [anon_sym_namespace] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_RBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3144), + [anon_sym_import] = ACTIONS(3144), + [anon_sym_with] = ACTIONS(3144), + [anon_sym_var] = ACTIONS(3144), + [anon_sym_let] = ACTIONS(3144), + [anon_sym_const] = ACTIONS(3144), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_switch] = ACTIONS(3144), + [anon_sym_for] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_await] = ACTIONS(3144), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_do] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_debugger] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_throw] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3144), + [anon_sym_yield] = ACTIONS(3144), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_LTtemplate_GT] = ACTIONS(3144), + [anon_sym_DQUOTE] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3144), + [anon_sym_class] = ACTIONS(3144), + [anon_sym_async] = ACTIONS(3144), + [anon_sym_function] = ACTIONS(3144), + [anon_sym_new] = ACTIONS(3144), + [anon_sym_using] = ACTIONS(3144), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_SLASH] = ACTIONS(3144), + [anon_sym_LT] = ACTIONS(3144), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_void] = ACTIONS(3144), + [anon_sym_delete] = ACTIONS(3144), + [anon_sym_PLUS_PLUS] = ACTIONS(3144), + [anon_sym_DASH_DASH] = ACTIONS(3144), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3192), - [sym_number] = ACTIONS(3192), - [sym_private_property_identifier] = ACTIONS(3192), - [sym_this] = ACTIONS(3192), - [sym_super] = ACTIONS(3192), - [sym_true] = ACTIONS(3192), - [sym_false] = ACTIONS(3192), - [sym_null] = ACTIONS(3192), - [sym_undefined] = ACTIONS(3192), - [anon_sym_AT] = ACTIONS(3192), - [anon_sym_static] = ACTIONS(3192), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_get] = ACTIONS(3192), - [anon_sym_set] = ACTIONS(3192), - [anon_sym_declare] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_module] = ACTIONS(3192), - [anon_sym_any] = ACTIONS(3192), - [anon_sym_number] = ACTIONS(3192), - [anon_sym_boolean] = ACTIONS(3192), - [anon_sym_string] = ACTIONS(3192), - [anon_sym_symbol] = ACTIONS(3192), - [anon_sym_object] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_interface] = ACTIONS(3192), - [anon_sym_enum] = ACTIONS(3192), + [anon_sym_BQUOTE] = ACTIONS(3144), + [sym_number] = ACTIONS(3144), + [sym_private_property_identifier] = ACTIONS(3144), + [sym_this] = ACTIONS(3144), + [sym_super] = ACTIONS(3144), + [sym_true] = ACTIONS(3144), + [sym_false] = ACTIONS(3144), + [sym_null] = ACTIONS(3144), + [sym_undefined] = ACTIONS(3144), + [anon_sym_AT] = ACTIONS(3144), + [anon_sym_static] = ACTIONS(3144), + [anon_sym_readonly] = ACTIONS(3144), + [anon_sym_get] = ACTIONS(3144), + [anon_sym_set] = ACTIONS(3144), + [anon_sym_declare] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_module] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3144), + [anon_sym_number] = ACTIONS(3144), + [anon_sym_boolean] = ACTIONS(3144), + [anon_sym_string] = ACTIONS(3144), + [anon_sym_symbol] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_interface] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [1345] = { - [sym_comment] = STATE(1345), + [1302] = { + [sym_comment] = STATE(1302), + [ts_builtin_sym_end] = ACTIONS(3468), [sym_identifier] = ACTIONS(3196), [anon_sym_export] = ACTIONS(3196), - [anon_sym_default] = ACTIONS(3196), [anon_sym_type] = ACTIONS(3196), [anon_sym_namespace] = ACTIONS(3196), [anon_sym_LBRACE] = ACTIONS(3196), @@ -173865,6 +169994,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3196), [anon_sym_const] = ACTIONS(3196), [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3196), [anon_sym_if] = ACTIONS(3196), [anon_sym_switch] = ACTIONS(3196), [anon_sym_for] = ACTIONS(3196), @@ -173879,7 +170009,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3196), [anon_sym_throw] = ACTIONS(3196), [anon_sym_SEMI] = ACTIONS(3196), - [anon_sym_case] = ACTIONS(3196), [anon_sym_yield] = ACTIONS(3196), [anon_sym_LBRACK] = ACTIONS(3196), [anon_sym_LTtemplate_GT] = ACTIONS(3196), @@ -173931,1368 +170060,794 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3196), [sym_html_comment] = ACTIONS(5), }, - [1346] = { - [sym_comment] = STATE(1346), - [sym_identifier] = ACTIONS(3172), - [anon_sym_export] = ACTIONS(3172), - [anon_sym_default] = ACTIONS(3172), - [anon_sym_type] = ACTIONS(3172), - [anon_sym_namespace] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3172), - [anon_sym_RBRACE] = ACTIONS(3172), - [anon_sym_typeof] = ACTIONS(3172), - [anon_sym_import] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3172), - [anon_sym_var] = ACTIONS(3172), - [anon_sym_let] = ACTIONS(3172), - [anon_sym_const] = ACTIONS(3172), - [anon_sym_BANG] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_switch] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3172), - [anon_sym_await] = ACTIONS(3172), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_do] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_debugger] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_SEMI] = ACTIONS(3172), - [anon_sym_case] = ACTIONS(3172), - [anon_sym_yield] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_LTtemplate_GT] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(3172), - [anon_sym_SQUOTE] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3172), - [anon_sym_async] = ACTIONS(3172), - [anon_sym_function] = ACTIONS(3172), - [anon_sym_new] = ACTIONS(3172), - [anon_sym_using] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_void] = ACTIONS(3172), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_PLUS_PLUS] = ACTIONS(3172), - [anon_sym_DASH_DASH] = ACTIONS(3172), + [1303] = { + [sym_comment] = STATE(1303), + [sym_identifier] = ACTIONS(3296), + [anon_sym_export] = ACTIONS(3296), + [anon_sym_default] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3296), + [anon_sym_namespace] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_typeof] = ACTIONS(3296), + [anon_sym_import] = ACTIONS(3296), + [anon_sym_with] = ACTIONS(3296), + [anon_sym_var] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_const] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_switch] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_await] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_debugger] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_case] = ACTIONS(3296), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LTtemplate_GT] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_class] = ACTIONS(3296), + [anon_sym_async] = ACTIONS(3296), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_using] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_void] = ACTIONS(3296), + [anon_sym_delete] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DASH_DASH] = ACTIONS(3296), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3172), - [sym_number] = ACTIONS(3172), - [sym_private_property_identifier] = ACTIONS(3172), - [sym_this] = ACTIONS(3172), - [sym_super] = ACTIONS(3172), - [sym_true] = ACTIONS(3172), - [sym_false] = ACTIONS(3172), - [sym_null] = ACTIONS(3172), - [sym_undefined] = ACTIONS(3172), - [anon_sym_AT] = ACTIONS(3172), - [anon_sym_static] = ACTIONS(3172), - [anon_sym_readonly] = ACTIONS(3172), - [anon_sym_get] = ACTIONS(3172), - [anon_sym_set] = ACTIONS(3172), - [anon_sym_declare] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_module] = ACTIONS(3172), - [anon_sym_any] = ACTIONS(3172), - [anon_sym_number] = ACTIONS(3172), - [anon_sym_boolean] = ACTIONS(3172), - [anon_sym_string] = ACTIONS(3172), - [anon_sym_symbol] = ACTIONS(3172), - [anon_sym_object] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_interface] = ACTIONS(3172), - [anon_sym_enum] = ACTIONS(3172), + [anon_sym_BQUOTE] = ACTIONS(3296), + [sym_number] = ACTIONS(3296), + [sym_private_property_identifier] = ACTIONS(3296), + [sym_this] = ACTIONS(3296), + [sym_super] = ACTIONS(3296), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_null] = ACTIONS(3296), + [sym_undefined] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_static] = ACTIONS(3296), + [anon_sym_readonly] = ACTIONS(3296), + [anon_sym_get] = ACTIONS(3296), + [anon_sym_set] = ACTIONS(3296), + [anon_sym_declare] = ACTIONS(3296), + [anon_sym_public] = ACTIONS(3296), + [anon_sym_private] = ACTIONS(3296), + [anon_sym_protected] = ACTIONS(3296), + [anon_sym_override] = ACTIONS(3296), + [anon_sym_module] = ACTIONS(3296), + [anon_sym_any] = ACTIONS(3296), + [anon_sym_number] = ACTIONS(3296), + [anon_sym_boolean] = ACTIONS(3296), + [anon_sym_string] = ACTIONS(3296), + [anon_sym_symbol] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_abstract] = ACTIONS(3296), + [anon_sym_interface] = ACTIONS(3296), + [anon_sym_enum] = ACTIONS(3296), [sym_html_comment] = ACTIONS(5), }, - [1347] = { - [sym_comment] = STATE(1347), - [ts_builtin_sym_end] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), + [1304] = { + [sym_comment] = STATE(1304), + [ts_builtin_sym_end] = ACTIONS(3470), + [sym_identifier] = ACTIONS(3134), + [anon_sym_export] = ACTIONS(3134), + [anon_sym_type] = ACTIONS(3134), + [anon_sym_namespace] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3134), + [anon_sym_RBRACE] = ACTIONS(3134), + [anon_sym_typeof] = ACTIONS(3134), + [anon_sym_import] = ACTIONS(3134), + [anon_sym_with] = ACTIONS(3134), + [anon_sym_var] = ACTIONS(3134), + [anon_sym_let] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_BANG] = ACTIONS(3134), + [anon_sym_else] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3134), + [anon_sym_await] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_try] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_debugger] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_throw] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3134), + [anon_sym_LTtemplate_GT] = ACTIONS(3134), + [anon_sym_DQUOTE] = ACTIONS(3134), + [anon_sym_SQUOTE] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_async] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_using] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_SLASH] = ACTIONS(3134), + [anon_sym_LT] = ACTIONS(3134), + [anon_sym_TILDE] = ACTIONS(3134), + [anon_sym_void] = ACTIONS(3134), + [anon_sym_delete] = ACTIONS(3134), + [anon_sym_PLUS_PLUS] = ACTIONS(3134), + [anon_sym_DASH_DASH] = ACTIONS(3134), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [anon_sym_BQUOTE] = ACTIONS(3134), + [sym_number] = ACTIONS(3134), + [sym_private_property_identifier] = ACTIONS(3134), + [sym_this] = ACTIONS(3134), + [sym_super] = ACTIONS(3134), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [sym_null] = ACTIONS(3134), + [sym_undefined] = ACTIONS(3134), + [anon_sym_AT] = ACTIONS(3134), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3134), + [anon_sym_set] = ACTIONS(3134), + [anon_sym_declare] = ACTIONS(3134), + [anon_sym_public] = ACTIONS(3134), + [anon_sym_private] = ACTIONS(3134), + [anon_sym_protected] = ACTIONS(3134), + [anon_sym_override] = ACTIONS(3134), + [anon_sym_module] = ACTIONS(3134), + [anon_sym_any] = ACTIONS(3134), + [anon_sym_number] = ACTIONS(3134), + [anon_sym_boolean] = ACTIONS(3134), + [anon_sym_string] = ACTIONS(3134), + [anon_sym_symbol] = ACTIONS(3134), + [anon_sym_object] = ACTIONS(3134), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_interface] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), [sym_html_comment] = ACTIONS(5), }, - [1348] = { - [sym_comment] = STATE(1348), - [ts_builtin_sym_end] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), + [1305] = { + [sym_comment] = STATE(1305), + [sym_identifier] = ACTIONS(3328), + [anon_sym_export] = ACTIONS(3328), + [anon_sym_default] = ACTIONS(3328), + [anon_sym_type] = ACTIONS(3328), + [anon_sym_namespace] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_RBRACE] = ACTIONS(3328), + [anon_sym_typeof] = ACTIONS(3328), + [anon_sym_import] = ACTIONS(3328), + [anon_sym_with] = ACTIONS(3328), + [anon_sym_var] = ACTIONS(3328), + [anon_sym_let] = ACTIONS(3328), + [anon_sym_const] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_switch] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym_await] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_do] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_debugger] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_throw] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym_case] = ACTIONS(3328), + [anon_sym_yield] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_LTtemplate_GT] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3328), + [anon_sym_async] = ACTIONS(3328), + [anon_sym_function] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3328), + [anon_sym_using] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_void] = ACTIONS(3328), + [anon_sym_delete] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3328), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), - [sym_html_comment] = ACTIONS(5), - }, - [1349] = { - [sym_comment] = STATE(1349), - [ts_builtin_sym_end] = ACTIONS(3314), - [sym_identifier] = ACTIONS(3088), - [anon_sym_export] = ACTIONS(3088), - [anon_sym_type] = ACTIONS(3088), - [anon_sym_namespace] = ACTIONS(3088), - [anon_sym_LBRACE] = ACTIONS(3088), - [anon_sym_RBRACE] = ACTIONS(3088), - [anon_sym_typeof] = ACTIONS(3088), - [anon_sym_import] = ACTIONS(3088), - [anon_sym_with] = ACTIONS(3088), - [anon_sym_var] = ACTIONS(3088), - [anon_sym_let] = ACTIONS(3088), - [anon_sym_const] = ACTIONS(3088), - [anon_sym_BANG] = ACTIONS(3088), - [anon_sym_if] = ACTIONS(3088), - [anon_sym_switch] = ACTIONS(3088), - [anon_sym_for] = ACTIONS(3088), - [anon_sym_LPAREN] = ACTIONS(3088), - [anon_sym_await] = ACTIONS(3088), - [anon_sym_while] = ACTIONS(3088), - [anon_sym_do] = ACTIONS(3088), - [anon_sym_try] = ACTIONS(3088), - [anon_sym_break] = ACTIONS(3088), - [anon_sym_continue] = ACTIONS(3088), - [anon_sym_debugger] = ACTIONS(3088), - [anon_sym_return] = ACTIONS(3088), - [anon_sym_throw] = ACTIONS(3088), - [anon_sym_SEMI] = ACTIONS(3088), - [anon_sym_finally] = ACTIONS(3088), - [anon_sym_yield] = ACTIONS(3088), - [anon_sym_LBRACK] = ACTIONS(3088), - [anon_sym_LTtemplate_GT] = ACTIONS(3088), - [anon_sym_DQUOTE] = ACTIONS(3088), - [anon_sym_SQUOTE] = ACTIONS(3088), - [anon_sym_class] = ACTIONS(3088), - [anon_sym_async] = ACTIONS(3088), - [anon_sym_function] = ACTIONS(3088), - [anon_sym_new] = ACTIONS(3088), - [anon_sym_using] = ACTIONS(3088), - [anon_sym_PLUS] = ACTIONS(3088), - [anon_sym_DASH] = ACTIONS(3088), - [anon_sym_SLASH] = ACTIONS(3088), - [anon_sym_LT] = ACTIONS(3088), - [anon_sym_TILDE] = ACTIONS(3088), - [anon_sym_void] = ACTIONS(3088), - [anon_sym_delete] = ACTIONS(3088), - [anon_sym_PLUS_PLUS] = ACTIONS(3088), - [anon_sym_DASH_DASH] = ACTIONS(3088), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3088), - [sym_number] = ACTIONS(3088), - [sym_private_property_identifier] = ACTIONS(3088), - [sym_this] = ACTIONS(3088), - [sym_super] = ACTIONS(3088), - [sym_true] = ACTIONS(3088), - [sym_false] = ACTIONS(3088), - [sym_null] = ACTIONS(3088), - [sym_undefined] = ACTIONS(3088), - [anon_sym_AT] = ACTIONS(3088), - [anon_sym_static] = ACTIONS(3088), - [anon_sym_readonly] = ACTIONS(3088), - [anon_sym_get] = ACTIONS(3088), - [anon_sym_set] = ACTIONS(3088), - [anon_sym_declare] = ACTIONS(3088), - [anon_sym_public] = ACTIONS(3088), - [anon_sym_private] = ACTIONS(3088), - [anon_sym_protected] = ACTIONS(3088), - [anon_sym_override] = ACTIONS(3088), - [anon_sym_module] = ACTIONS(3088), - [anon_sym_any] = ACTIONS(3088), - [anon_sym_number] = ACTIONS(3088), - [anon_sym_boolean] = ACTIONS(3088), - [anon_sym_string] = ACTIONS(3088), - [anon_sym_symbol] = ACTIONS(3088), - [anon_sym_object] = ACTIONS(3088), - [anon_sym_abstract] = ACTIONS(3088), - [anon_sym_interface] = ACTIONS(3088), - [anon_sym_enum] = ACTIONS(3088), + [anon_sym_BQUOTE] = ACTIONS(3328), + [sym_number] = ACTIONS(3328), + [sym_private_property_identifier] = ACTIONS(3328), + [sym_this] = ACTIONS(3328), + [sym_super] = ACTIONS(3328), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_null] = ACTIONS(3328), + [sym_undefined] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_readonly] = ACTIONS(3328), + [anon_sym_get] = ACTIONS(3328), + [anon_sym_set] = ACTIONS(3328), + [anon_sym_declare] = ACTIONS(3328), + [anon_sym_public] = ACTIONS(3328), + [anon_sym_private] = ACTIONS(3328), + [anon_sym_protected] = ACTIONS(3328), + [anon_sym_override] = ACTIONS(3328), + [anon_sym_module] = ACTIONS(3328), + [anon_sym_any] = ACTIONS(3328), + [anon_sym_number] = ACTIONS(3328), + [anon_sym_boolean] = ACTIONS(3328), + [anon_sym_string] = ACTIONS(3328), + [anon_sym_symbol] = ACTIONS(3328), + [anon_sym_object] = ACTIONS(3328), + [anon_sym_abstract] = ACTIONS(3328), + [anon_sym_interface] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), [sym_html_comment] = ACTIONS(5), }, - [1350] = { - [sym_comment] = STATE(1350), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3224), - [anon_sym_RBRACE] = ACTIONS(3224), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3224), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3224), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_LTtemplate_GT] = ACTIONS(3224), - [anon_sym_DQUOTE] = ACTIONS(3224), - [anon_sym_SQUOTE] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_using] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_LT] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3224), + [1306] = { + [sym_comment] = STATE(1306), + [ts_builtin_sym_end] = ACTIONS(3472), + [sym_identifier] = ACTIONS(3214), + [anon_sym_export] = ACTIONS(3214), + [anon_sym_type] = ACTIONS(3214), + [anon_sym_namespace] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_RBRACE] = ACTIONS(3214), + [anon_sym_typeof] = ACTIONS(3214), + [anon_sym_import] = ACTIONS(3214), + [anon_sym_with] = ACTIONS(3214), + [anon_sym_var] = ACTIONS(3214), + [anon_sym_let] = ACTIONS(3214), + [anon_sym_const] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_switch] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3214), + [anon_sym_await] = ACTIONS(3214), + [anon_sym_while] = ACTIONS(3214), + [anon_sym_do] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_debugger] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_throw] = ACTIONS(3214), + [anon_sym_SEMI] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3214), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_LTtemplate_GT] = ACTIONS(3214), + [anon_sym_DQUOTE] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3214), + [anon_sym_class] = ACTIONS(3214), + [anon_sym_async] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3214), + [anon_sym_using] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_void] = ACTIONS(3214), + [anon_sym_delete] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3214), + [anon_sym_DASH_DASH] = ACTIONS(3214), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3224), - [sym_number] = ACTIONS(3224), - [sym_private_property_identifier] = ACTIONS(3224), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3224), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_override] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_object] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [anon_sym_BQUOTE] = ACTIONS(3214), + [sym_number] = ACTIONS(3214), + [sym_private_property_identifier] = ACTIONS(3214), + [sym_this] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_true] = ACTIONS(3214), + [sym_false] = ACTIONS(3214), + [sym_null] = ACTIONS(3214), + [sym_undefined] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3214), + [anon_sym_static] = ACTIONS(3214), + [anon_sym_readonly] = ACTIONS(3214), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_declare] = ACTIONS(3214), + [anon_sym_public] = ACTIONS(3214), + [anon_sym_private] = ACTIONS(3214), + [anon_sym_protected] = ACTIONS(3214), + [anon_sym_override] = ACTIONS(3214), + [anon_sym_module] = ACTIONS(3214), + [anon_sym_any] = ACTIONS(3214), + [anon_sym_number] = ACTIONS(3214), + [anon_sym_boolean] = ACTIONS(3214), + [anon_sym_string] = ACTIONS(3214), + [anon_sym_symbol] = ACTIONS(3214), + [anon_sym_object] = ACTIONS(3214), + [anon_sym_abstract] = ACTIONS(3214), + [anon_sym_interface] = ACTIONS(3214), + [anon_sym_enum] = ACTIONS(3214), [sym_html_comment] = ACTIONS(5), }, - [1351] = { - [sym_comment] = STATE(1351), - [ts_builtin_sym_end] = ACTIONS(3348), - [sym_identifier] = ACTIONS(3100), - [anon_sym_export] = ACTIONS(3100), - [anon_sym_type] = ACTIONS(3100), - [anon_sym_namespace] = ACTIONS(3100), - [anon_sym_LBRACE] = ACTIONS(3100), - [anon_sym_RBRACE] = ACTIONS(3100), - [anon_sym_typeof] = ACTIONS(3100), - [anon_sym_import] = ACTIONS(3100), - [anon_sym_with] = ACTIONS(3100), - [anon_sym_var] = ACTIONS(3100), - [anon_sym_let] = ACTIONS(3100), - [anon_sym_const] = ACTIONS(3100), - [anon_sym_BANG] = ACTIONS(3100), - [anon_sym_if] = ACTIONS(3100), - [anon_sym_switch] = ACTIONS(3100), - [anon_sym_for] = ACTIONS(3100), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_await] = ACTIONS(3100), - [anon_sym_while] = ACTIONS(3100), - [anon_sym_do] = ACTIONS(3100), - [anon_sym_try] = ACTIONS(3100), - [anon_sym_break] = ACTIONS(3100), - [anon_sym_continue] = ACTIONS(3100), - [anon_sym_debugger] = ACTIONS(3100), - [anon_sym_return] = ACTIONS(3100), - [anon_sym_throw] = ACTIONS(3100), - [anon_sym_SEMI] = ACTIONS(3448), - [anon_sym_yield] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_LTtemplate_GT] = ACTIONS(3100), - [anon_sym_DQUOTE] = ACTIONS(3100), - [anon_sym_SQUOTE] = ACTIONS(3100), - [anon_sym_class] = ACTIONS(3100), - [anon_sym_async] = ACTIONS(3100), - [anon_sym_function] = ACTIONS(3100), - [anon_sym_new] = ACTIONS(3100), - [anon_sym_using] = ACTIONS(3100), - [anon_sym_PLUS] = ACTIONS(3100), - [anon_sym_DASH] = ACTIONS(3100), - [anon_sym_SLASH] = ACTIONS(3100), - [anon_sym_LT] = ACTIONS(3100), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_void] = ACTIONS(3100), - [anon_sym_delete] = ACTIONS(3100), - [anon_sym_PLUS_PLUS] = ACTIONS(3100), - [anon_sym_DASH_DASH] = ACTIONS(3100), + [1307] = { + [sym_comment] = STATE(1307), + [ts_builtin_sym_end] = ACTIONS(3474), + [sym_identifier] = ACTIONS(3184), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_type] = ACTIONS(3184), + [anon_sym_namespace] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3184), + [anon_sym_import] = ACTIONS(3184), + [anon_sym_with] = ACTIONS(3184), + [anon_sym_var] = ACTIONS(3184), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_try] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_throw] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_yield] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LTtemplate_GT] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [anon_sym_class] = ACTIONS(3184), + [anon_sym_async] = ACTIONS(3184), + [anon_sym_function] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3184), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3100), - [sym_number] = ACTIONS(3100), - [sym_private_property_identifier] = ACTIONS(3100), - [sym_this] = ACTIONS(3100), - [sym_super] = ACTIONS(3100), - [sym_true] = ACTIONS(3100), - [sym_false] = ACTIONS(3100), - [sym_null] = ACTIONS(3100), - [sym_undefined] = ACTIONS(3100), - [anon_sym_AT] = ACTIONS(3100), - [anon_sym_static] = ACTIONS(3100), - [anon_sym_readonly] = ACTIONS(3100), - [anon_sym_get] = ACTIONS(3100), - [anon_sym_set] = ACTIONS(3100), - [anon_sym_declare] = ACTIONS(3100), - [anon_sym_public] = ACTIONS(3100), - [anon_sym_private] = ACTIONS(3100), - [anon_sym_protected] = ACTIONS(3100), - [anon_sym_override] = ACTIONS(3100), - [anon_sym_module] = ACTIONS(3100), - [anon_sym_any] = ACTIONS(3100), - [anon_sym_number] = ACTIONS(3100), - [anon_sym_boolean] = ACTIONS(3100), - [anon_sym_string] = ACTIONS(3100), - [anon_sym_symbol] = ACTIONS(3100), - [anon_sym_object] = ACTIONS(3100), - [anon_sym_abstract] = ACTIONS(3100), - [anon_sym_interface] = ACTIONS(3100), - [anon_sym_enum] = ACTIONS(3100), - [sym__automatic_semicolon] = ACTIONS(3450), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_private_property_identifier] = ACTIONS(3184), + [sym_this] = ACTIONS(3184), + [sym_super] = ACTIONS(3184), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [sym_null] = ACTIONS(3184), + [sym_undefined] = ACTIONS(3184), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_readonly] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_declare] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_override] = ACTIONS(3184), + [anon_sym_module] = ACTIONS(3184), + [anon_sym_any] = ACTIONS(3184), + [anon_sym_number] = ACTIONS(3184), + [anon_sym_boolean] = ACTIONS(3184), + [anon_sym_string] = ACTIONS(3184), + [anon_sym_symbol] = ACTIONS(3184), + [anon_sym_object] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_interface] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), [sym_html_comment] = ACTIONS(5), }, - [1352] = { - [sym_comment] = STATE(1352), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_finally] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), + [1308] = { + [sym_comment] = STATE(1308), + [ts_builtin_sym_end] = ACTIONS(3084), + [sym_identifier] = ACTIONS(3082), + [anon_sym_export] = ACTIONS(3082), + [anon_sym_type] = ACTIONS(3082), + [anon_sym_namespace] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3082), + [anon_sym_RBRACE] = ACTIONS(3082), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(3082), + [anon_sym_with] = ACTIONS(3082), + [anon_sym_var] = ACTIONS(3082), + [anon_sym_let] = ACTIONS(3082), + [anon_sym_const] = ACTIONS(3082), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_switch] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3082), + [anon_sym_await] = ACTIONS(3082), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_do] = ACTIONS(3082), + [anon_sym_try] = ACTIONS(3082), + [anon_sym_break] = ACTIONS(3082), + [anon_sym_continue] = ACTIONS(3082), + [anon_sym_debugger] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3082), + [anon_sym_throw] = ACTIONS(3082), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_LTtemplate_GT] = ACTIONS(3082), + [anon_sym_DQUOTE] = ACTIONS(3082), + [anon_sym_SQUOTE] = ACTIONS(3082), + [anon_sym_class] = ACTIONS(3082), + [anon_sym_async] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3082), + [anon_sym_using] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_SLASH] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_void] = ACTIONS(3082), + [anon_sym_delete] = ACTIONS(3082), + [anon_sym_PLUS_PLUS] = ACTIONS(3082), + [anon_sym_DASH_DASH] = ACTIONS(3082), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3082), + [sym_number] = ACTIONS(3082), + [sym_private_property_identifier] = ACTIONS(3082), + [sym_this] = ACTIONS(3082), + [sym_super] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_null] = ACTIONS(3082), + [sym_undefined] = ACTIONS(3082), + [anon_sym_AT] = ACTIONS(3082), + [anon_sym_static] = ACTIONS(3082), + [anon_sym_readonly] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3082), + [anon_sym_set] = ACTIONS(3082), + [anon_sym_declare] = ACTIONS(3082), + [anon_sym_public] = ACTIONS(3082), + [anon_sym_private] = ACTIONS(3082), + [anon_sym_protected] = ACTIONS(3082), + [anon_sym_override] = ACTIONS(3082), + [anon_sym_module] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3082), + [anon_sym_interface] = ACTIONS(3082), + [anon_sym_enum] = ACTIONS(3082), + [sym__automatic_semicolon] = ACTIONS(3084), [sym_html_comment] = ACTIONS(5), }, - [1353] = { - [sym_comment] = STATE(1353), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_finally] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), + [1309] = { + [sym_comment] = STATE(1309), + [ts_builtin_sym_end] = ACTIONS(3476), + [sym_identifier] = ACTIONS(3130), + [anon_sym_export] = ACTIONS(3130), + [anon_sym_type] = ACTIONS(3130), + [anon_sym_namespace] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(3130), + [anon_sym_RBRACE] = ACTIONS(3130), + [anon_sym_typeof] = ACTIONS(3130), + [anon_sym_import] = ACTIONS(3130), + [anon_sym_with] = ACTIONS(3130), + [anon_sym_var] = ACTIONS(3130), + [anon_sym_let] = ACTIONS(3130), + [anon_sym_const] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_switch] = ACTIONS(3130), + [anon_sym_for] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_await] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_do] = ACTIONS(3130), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_debugger] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_throw] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3130), + [anon_sym_yield] = ACTIONS(3130), + [anon_sym_LBRACK] = ACTIONS(3130), + [anon_sym_LTtemplate_GT] = ACTIONS(3130), + [anon_sym_DQUOTE] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(3130), + [anon_sym_class] = ACTIONS(3130), + [anon_sym_async] = ACTIONS(3130), + [anon_sym_function] = ACTIONS(3130), + [anon_sym_new] = ACTIONS(3130), + [anon_sym_using] = ACTIONS(3130), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_SLASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3130), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_void] = ACTIONS(3130), + [anon_sym_delete] = ACTIONS(3130), + [anon_sym_PLUS_PLUS] = ACTIONS(3130), + [anon_sym_DASH_DASH] = ACTIONS(3130), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3130), + [sym_number] = ACTIONS(3130), + [sym_private_property_identifier] = ACTIONS(3130), + [sym_this] = ACTIONS(3130), + [sym_super] = ACTIONS(3130), + [sym_true] = ACTIONS(3130), + [sym_false] = ACTIONS(3130), + [sym_null] = ACTIONS(3130), + [sym_undefined] = ACTIONS(3130), + [anon_sym_AT] = ACTIONS(3130), + [anon_sym_static] = ACTIONS(3130), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_get] = ACTIONS(3130), + [anon_sym_set] = ACTIONS(3130), + [anon_sym_declare] = ACTIONS(3130), + [anon_sym_public] = ACTIONS(3130), + [anon_sym_private] = ACTIONS(3130), + [anon_sym_protected] = ACTIONS(3130), + [anon_sym_override] = ACTIONS(3130), + [anon_sym_module] = ACTIONS(3130), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3130), + [anon_sym_interface] = ACTIONS(3130), + [anon_sym_enum] = ACTIONS(3130), [sym_html_comment] = ACTIONS(5), }, - [1354] = { - [sym_comment] = STATE(1354), - [ts_builtin_sym_end] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), + [1310] = { + [sym_comment] = STATE(1310), + [ts_builtin_sym_end] = ACTIONS(3478), + [sym_identifier] = ACTIONS(3288), + [anon_sym_export] = ACTIONS(3288), + [anon_sym_type] = ACTIONS(3288), + [anon_sym_namespace] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_typeof] = ACTIONS(3288), + [anon_sym_import] = ACTIONS(3288), + [anon_sym_with] = ACTIONS(3288), + [anon_sym_var] = ACTIONS(3288), + [anon_sym_let] = ACTIONS(3288), + [anon_sym_const] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_else] = ACTIONS(3288), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_switch] = ACTIONS(3288), + [anon_sym_for] = ACTIONS(3288), + [anon_sym_LPAREN] = ACTIONS(3288), + [anon_sym_await] = ACTIONS(3288), + [anon_sym_while] = ACTIONS(3288), + [anon_sym_do] = ACTIONS(3288), + [anon_sym_try] = ACTIONS(3288), + [anon_sym_break] = ACTIONS(3288), + [anon_sym_continue] = ACTIONS(3288), + [anon_sym_debugger] = ACTIONS(3288), + [anon_sym_return] = ACTIONS(3288), + [anon_sym_throw] = ACTIONS(3288), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_yield] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3288), + [anon_sym_LTtemplate_GT] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_class] = ACTIONS(3288), + [anon_sym_async] = ACTIONS(3288), + [anon_sym_function] = ACTIONS(3288), + [anon_sym_new] = ACTIONS(3288), + [anon_sym_using] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3288), + [anon_sym_SLASH] = ACTIONS(3288), + [anon_sym_LT] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_void] = ACTIONS(3288), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_DASH_DASH] = ACTIONS(3288), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [anon_sym_BQUOTE] = ACTIONS(3288), + [sym_number] = ACTIONS(3288), + [sym_private_property_identifier] = ACTIONS(3288), + [sym_this] = ACTIONS(3288), + [sym_super] = ACTIONS(3288), + [sym_true] = ACTIONS(3288), + [sym_false] = ACTIONS(3288), + [sym_null] = ACTIONS(3288), + [sym_undefined] = ACTIONS(3288), + [anon_sym_AT] = ACTIONS(3288), + [anon_sym_static] = ACTIONS(3288), + [anon_sym_readonly] = ACTIONS(3288), + [anon_sym_get] = ACTIONS(3288), + [anon_sym_set] = ACTIONS(3288), + [anon_sym_declare] = ACTIONS(3288), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3288), + [anon_sym_module] = ACTIONS(3288), + [anon_sym_any] = ACTIONS(3288), + [anon_sym_number] = ACTIONS(3288), + [anon_sym_boolean] = ACTIONS(3288), + [anon_sym_string] = ACTIONS(3288), + [anon_sym_symbol] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3288), + [anon_sym_abstract] = ACTIONS(3288), + [anon_sym_interface] = ACTIONS(3288), + [anon_sym_enum] = ACTIONS(3288), [sym_html_comment] = ACTIONS(5), }, - [1355] = { - [sym_comment] = STATE(1355), - [ts_builtin_sym_end] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_else] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), + [1311] = { + [sym_comment] = STATE(1311), + [sym_identifier] = ACTIONS(3166), + [anon_sym_export] = ACTIONS(3166), + [anon_sym_default] = ACTIONS(3166), + [anon_sym_type] = ACTIONS(3166), + [anon_sym_namespace] = ACTIONS(3166), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_import] = ACTIONS(3166), + [anon_sym_with] = ACTIONS(3166), + [anon_sym_var] = ACTIONS(3166), + [anon_sym_let] = ACTIONS(3166), + [anon_sym_const] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_if] = ACTIONS(3166), + [anon_sym_switch] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_await] = ACTIONS(3166), + [anon_sym_while] = ACTIONS(3166), + [anon_sym_do] = ACTIONS(3166), + [anon_sym_try] = ACTIONS(3166), + [anon_sym_break] = ACTIONS(3166), + [anon_sym_continue] = ACTIONS(3166), + [anon_sym_debugger] = ACTIONS(3166), + [anon_sym_return] = ACTIONS(3166), + [anon_sym_throw] = ACTIONS(3166), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_case] = ACTIONS(3166), + [anon_sym_yield] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_LTtemplate_GT] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_class] = ACTIONS(3166), + [anon_sym_async] = ACTIONS(3166), + [anon_sym_function] = ACTIONS(3166), + [anon_sym_new] = ACTIONS(3166), + [anon_sym_using] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), + [anon_sym_SLASH] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_void] = ACTIONS(3166), + [anon_sym_delete] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [anon_sym_BQUOTE] = ACTIONS(3166), + [sym_number] = ACTIONS(3166), + [sym_private_property_identifier] = ACTIONS(3166), + [sym_this] = ACTIONS(3166), + [sym_super] = ACTIONS(3166), + [sym_true] = ACTIONS(3166), + [sym_false] = ACTIONS(3166), + [sym_null] = ACTIONS(3166), + [sym_undefined] = ACTIONS(3166), + [anon_sym_AT] = ACTIONS(3166), + [anon_sym_static] = ACTIONS(3166), + [anon_sym_readonly] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3166), + [anon_sym_set] = ACTIONS(3166), + [anon_sym_declare] = ACTIONS(3166), + [anon_sym_public] = ACTIONS(3166), + [anon_sym_private] = ACTIONS(3166), + [anon_sym_protected] = ACTIONS(3166), + [anon_sym_override] = ACTIONS(3166), + [anon_sym_module] = ACTIONS(3166), + [anon_sym_any] = ACTIONS(3166), + [anon_sym_number] = ACTIONS(3166), + [anon_sym_boolean] = ACTIONS(3166), + [anon_sym_string] = ACTIONS(3166), + [anon_sym_symbol] = ACTIONS(3166), + [anon_sym_object] = ACTIONS(3166), + [anon_sym_abstract] = ACTIONS(3166), + [anon_sym_interface] = ACTIONS(3166), + [anon_sym_enum] = ACTIONS(3166), [sym_html_comment] = ACTIONS(5), }, - [1356] = { - [sym_comment] = STATE(1356), - [sym_identifier] = ACTIONS(3274), - [anon_sym_export] = ACTIONS(3274), - [anon_sym_default] = ACTIONS(3274), - [anon_sym_type] = ACTIONS(3274), - [anon_sym_namespace] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_RBRACE] = ACTIONS(3274), - [anon_sym_typeof] = ACTIONS(3274), - [anon_sym_import] = ACTIONS(3274), - [anon_sym_with] = ACTIONS(3274), - [anon_sym_var] = ACTIONS(3274), - [anon_sym_let] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_BANG] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3274), - [anon_sym_await] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_try] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_debugger] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_throw] = ACTIONS(3274), - [anon_sym_SEMI] = ACTIONS(3274), - [anon_sym_case] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_LTtemplate_GT] = ACTIONS(3274), - [anon_sym_DQUOTE] = ACTIONS(3274), - [anon_sym_SQUOTE] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_async] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_SLASH] = ACTIONS(3274), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_TILDE] = ACTIONS(3274), - [anon_sym_void] = ACTIONS(3274), - [anon_sym_delete] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3274), - [sym_number] = ACTIONS(3274), - [sym_private_property_identifier] = ACTIONS(3274), - [sym_this] = ACTIONS(3274), - [sym_super] = ACTIONS(3274), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [sym_null] = ACTIONS(3274), - [sym_undefined] = ACTIONS(3274), - [anon_sym_AT] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_readonly] = ACTIONS(3274), - [anon_sym_get] = ACTIONS(3274), - [anon_sym_set] = ACTIONS(3274), - [anon_sym_declare] = ACTIONS(3274), - [anon_sym_public] = ACTIONS(3274), - [anon_sym_private] = ACTIONS(3274), - [anon_sym_protected] = ACTIONS(3274), - [anon_sym_override] = ACTIONS(3274), - [anon_sym_module] = ACTIONS(3274), - [anon_sym_any] = ACTIONS(3274), - [anon_sym_number] = ACTIONS(3274), - [anon_sym_boolean] = ACTIONS(3274), - [anon_sym_string] = ACTIONS(3274), - [anon_sym_symbol] = ACTIONS(3274), - [anon_sym_object] = ACTIONS(3274), - [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_interface] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [sym_html_comment] = ACTIONS(5), - }, - [1357] = { - [sym_comment] = STATE(1357), - [sym_identifier] = ACTIONS(3276), - [anon_sym_export] = ACTIONS(3276), - [anon_sym_default] = ACTIONS(3276), - [anon_sym_type] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_RBRACE] = ACTIONS(3276), - [anon_sym_typeof] = ACTIONS(3276), - [anon_sym_import] = ACTIONS(3276), - [anon_sym_with] = ACTIONS(3276), - [anon_sym_var] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_const] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_switch] = ACTIONS(3276), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_await] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_debugger] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym_case] = ACTIONS(3276), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_LTtemplate_GT] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3276), - [anon_sym_class] = ACTIONS(3276), - [anon_sym_async] = ACTIONS(3276), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_using] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_void] = ACTIONS(3276), - [anon_sym_delete] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3276), - [sym_number] = ACTIONS(3276), - [sym_private_property_identifier] = ACTIONS(3276), - [sym_this] = ACTIONS(3276), - [sym_super] = ACTIONS(3276), - [sym_true] = ACTIONS(3276), - [sym_false] = ACTIONS(3276), - [sym_null] = ACTIONS(3276), - [sym_undefined] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3276), - [anon_sym_readonly] = ACTIONS(3276), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_declare] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_any] = ACTIONS(3276), - [anon_sym_number] = ACTIONS(3276), - [anon_sym_boolean] = ACTIONS(3276), - [anon_sym_string] = ACTIONS(3276), - [anon_sym_symbol] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_interface] = ACTIONS(3276), - [anon_sym_enum] = ACTIONS(3276), - [sym_html_comment] = ACTIONS(5), - }, - [1358] = { - [sym_comment] = STATE(1358), - [sym_identifier] = ACTIONS(3278), - [anon_sym_export] = ACTIONS(3278), - [anon_sym_default] = ACTIONS(3278), - [anon_sym_type] = ACTIONS(3278), - [anon_sym_namespace] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_RBRACE] = ACTIONS(3278), - [anon_sym_typeof] = ACTIONS(3278), - [anon_sym_import] = ACTIONS(3278), - [anon_sym_with] = ACTIONS(3278), - [anon_sym_var] = ACTIONS(3278), - [anon_sym_let] = ACTIONS(3278), - [anon_sym_const] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_switch] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3278), - [anon_sym_await] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_do] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_debugger] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym_case] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3278), - [anon_sym_LTtemplate_GT] = ACTIONS(3278), - [anon_sym_DQUOTE] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3278), - [anon_sym_class] = ACTIONS(3278), - [anon_sym_async] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3278), - [anon_sym_using] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_void] = ACTIONS(3278), - [anon_sym_delete] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3278), - [sym_number] = ACTIONS(3278), - [sym_private_property_identifier] = ACTIONS(3278), - [sym_this] = ACTIONS(3278), - [sym_super] = ACTIONS(3278), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [sym_null] = ACTIONS(3278), - [sym_undefined] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3278), - [anon_sym_static] = ACTIONS(3278), - [anon_sym_readonly] = ACTIONS(3278), - [anon_sym_get] = ACTIONS(3278), - [anon_sym_set] = ACTIONS(3278), - [anon_sym_declare] = ACTIONS(3278), - [anon_sym_public] = ACTIONS(3278), - [anon_sym_private] = ACTIONS(3278), - [anon_sym_protected] = ACTIONS(3278), - [anon_sym_override] = ACTIONS(3278), - [anon_sym_module] = ACTIONS(3278), - [anon_sym_any] = ACTIONS(3278), - [anon_sym_number] = ACTIONS(3278), - [anon_sym_boolean] = ACTIONS(3278), - [anon_sym_string] = ACTIONS(3278), - [anon_sym_symbol] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_abstract] = ACTIONS(3278), - [anon_sym_interface] = ACTIONS(3278), - [anon_sym_enum] = ACTIONS(3278), - [sym_html_comment] = ACTIONS(5), - }, - [1359] = { - [sym_comment] = STATE(1359), - [ts_builtin_sym_end] = ACTIONS(2197), - [sym_identifier] = ACTIONS(2195), - [anon_sym_export] = ACTIONS(2195), - [anon_sym_type] = ACTIONS(2195), - [anon_sym_namespace] = ACTIONS(2195), - [anon_sym_LBRACE] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2195), - [anon_sym_typeof] = ACTIONS(2195), - [anon_sym_import] = ACTIONS(2195), - [anon_sym_with] = ACTIONS(2195), - [anon_sym_var] = ACTIONS(2195), - [anon_sym_let] = ACTIONS(2195), - [anon_sym_const] = ACTIONS(2195), - [anon_sym_BANG] = ACTIONS(2195), - [anon_sym_if] = ACTIONS(2195), - [anon_sym_switch] = ACTIONS(2195), - [anon_sym_for] = ACTIONS(2195), - [anon_sym_LPAREN] = ACTIONS(2195), - [anon_sym_await] = ACTIONS(2195), - [anon_sym_while] = ACTIONS(2195), - [anon_sym_do] = ACTIONS(2195), - [anon_sym_try] = ACTIONS(2195), - [anon_sym_break] = ACTIONS(2195), - [anon_sym_continue] = ACTIONS(2195), - [anon_sym_debugger] = ACTIONS(2195), - [anon_sym_return] = ACTIONS(2195), - [anon_sym_throw] = ACTIONS(2195), - [anon_sym_SEMI] = ACTIONS(2195), - [anon_sym_yield] = ACTIONS(2195), - [anon_sym_LBRACK] = ACTIONS(2195), - [anon_sym_LTtemplate_GT] = ACTIONS(2195), - [anon_sym_DOT] = ACTIONS(2195), - [anon_sym_DQUOTE] = ACTIONS(2195), - [anon_sym_SQUOTE] = ACTIONS(2195), - [anon_sym_class] = ACTIONS(2195), - [anon_sym_async] = ACTIONS(2195), - [anon_sym_function] = ACTIONS(2195), - [anon_sym_new] = ACTIONS(2195), - [anon_sym_using] = ACTIONS(2195), - [anon_sym_PLUS] = ACTIONS(2195), - [anon_sym_DASH] = ACTIONS(2195), - [anon_sym_SLASH] = ACTIONS(2195), - [anon_sym_LT] = ACTIONS(2195), - [anon_sym_TILDE] = ACTIONS(2195), - [anon_sym_void] = ACTIONS(2195), - [anon_sym_delete] = ACTIONS(2195), - [anon_sym_PLUS_PLUS] = ACTIONS(2195), - [anon_sym_DASH_DASH] = ACTIONS(2195), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2195), - [sym_number] = ACTIONS(2195), - [sym_private_property_identifier] = ACTIONS(2195), - [sym_this] = ACTIONS(2195), - [sym_super] = ACTIONS(2195), - [sym_true] = ACTIONS(2195), - [sym_false] = ACTIONS(2195), - [sym_null] = ACTIONS(2195), - [sym_undefined] = ACTIONS(2195), - [anon_sym_AT] = ACTIONS(2195), - [anon_sym_static] = ACTIONS(2195), - [anon_sym_readonly] = ACTIONS(2195), - [anon_sym_get] = ACTIONS(2195), - [anon_sym_set] = ACTIONS(2195), - [anon_sym_declare] = ACTIONS(2195), - [anon_sym_public] = ACTIONS(2195), - [anon_sym_private] = ACTIONS(2195), - [anon_sym_protected] = ACTIONS(2195), - [anon_sym_override] = ACTIONS(2195), - [anon_sym_module] = ACTIONS(2195), - [anon_sym_any] = ACTIONS(2195), - [anon_sym_number] = ACTIONS(2195), - [anon_sym_boolean] = ACTIONS(2195), - [anon_sym_string] = ACTIONS(2195), - [anon_sym_symbol] = ACTIONS(2195), - [anon_sym_object] = ACTIONS(2195), - [anon_sym_abstract] = ACTIONS(2195), - [anon_sym_interface] = ACTIONS(2195), - [anon_sym_enum] = ACTIONS(2195), - [sym_html_comment] = ACTIONS(5), - }, - [1360] = { - [sym_comment] = STATE(1360), - [ts_builtin_sym_end] = ACTIONS(2083), - [sym_identifier] = ACTIONS(2081), - [anon_sym_export] = ACTIONS(2081), - [anon_sym_type] = ACTIONS(2081), - [anon_sym_namespace] = ACTIONS(2081), - [anon_sym_LBRACE] = ACTIONS(2081), - [anon_sym_RBRACE] = ACTIONS(2081), - [anon_sym_typeof] = ACTIONS(2081), - [anon_sym_import] = ACTIONS(2081), - [anon_sym_with] = ACTIONS(2081), - [anon_sym_var] = ACTIONS(2081), - [anon_sym_let] = ACTIONS(2081), - [anon_sym_const] = ACTIONS(2081), - [anon_sym_BANG] = ACTIONS(2081), - [anon_sym_if] = ACTIONS(2081), - [anon_sym_switch] = ACTIONS(2081), - [anon_sym_for] = ACTIONS(2081), - [anon_sym_LPAREN] = ACTIONS(2081), - [anon_sym_await] = ACTIONS(2081), - [anon_sym_while] = ACTIONS(2081), - [anon_sym_do] = ACTIONS(2081), - [anon_sym_try] = ACTIONS(2081), - [anon_sym_break] = ACTIONS(2081), - [anon_sym_continue] = ACTIONS(2081), - [anon_sym_debugger] = ACTIONS(2081), - [anon_sym_return] = ACTIONS(2081), - [anon_sym_throw] = ACTIONS(2081), - [anon_sym_SEMI] = ACTIONS(2081), - [anon_sym_yield] = ACTIONS(2081), - [anon_sym_LBRACK] = ACTIONS(2081), - [anon_sym_LTtemplate_GT] = ACTIONS(2081), - [anon_sym_DOT] = ACTIONS(2081), - [anon_sym_DQUOTE] = ACTIONS(2081), - [anon_sym_SQUOTE] = ACTIONS(2081), - [anon_sym_class] = ACTIONS(2081), - [anon_sym_async] = ACTIONS(2081), - [anon_sym_function] = ACTIONS(2081), - [anon_sym_new] = ACTIONS(2081), - [anon_sym_using] = ACTIONS(2081), - [anon_sym_PLUS] = ACTIONS(2081), - [anon_sym_DASH] = ACTIONS(2081), - [anon_sym_SLASH] = ACTIONS(2081), - [anon_sym_LT] = ACTIONS(2081), - [anon_sym_TILDE] = ACTIONS(2081), - [anon_sym_void] = ACTIONS(2081), - [anon_sym_delete] = ACTIONS(2081), - [anon_sym_PLUS_PLUS] = ACTIONS(2081), - [anon_sym_DASH_DASH] = ACTIONS(2081), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2081), - [sym_number] = ACTIONS(2081), - [sym_private_property_identifier] = ACTIONS(2081), - [sym_this] = ACTIONS(2081), - [sym_super] = ACTIONS(2081), - [sym_true] = ACTIONS(2081), - [sym_false] = ACTIONS(2081), - [sym_null] = ACTIONS(2081), - [sym_undefined] = ACTIONS(2081), - [anon_sym_AT] = ACTIONS(2081), - [anon_sym_static] = ACTIONS(2081), - [anon_sym_readonly] = ACTIONS(2081), - [anon_sym_get] = ACTIONS(2081), - [anon_sym_set] = ACTIONS(2081), - [anon_sym_declare] = ACTIONS(2081), - [anon_sym_public] = ACTIONS(2081), - [anon_sym_private] = ACTIONS(2081), - [anon_sym_protected] = ACTIONS(2081), - [anon_sym_override] = ACTIONS(2081), - [anon_sym_module] = ACTIONS(2081), - [anon_sym_any] = ACTIONS(2081), - [anon_sym_number] = ACTIONS(2081), - [anon_sym_boolean] = ACTIONS(2081), - [anon_sym_string] = ACTIONS(2081), - [anon_sym_symbol] = ACTIONS(2081), - [anon_sym_object] = ACTIONS(2081), - [anon_sym_abstract] = ACTIONS(2081), - [anon_sym_interface] = ACTIONS(2081), - [anon_sym_enum] = ACTIONS(2081), - [sym_html_comment] = ACTIONS(5), - }, - [1361] = { - [sym_comment] = STATE(1361), - [ts_builtin_sym_end] = ACTIONS(3452), - [sym_identifier] = ACTIONS(3320), - [anon_sym_export] = ACTIONS(3320), - [anon_sym_type] = ACTIONS(3320), - [anon_sym_namespace] = ACTIONS(3320), - [anon_sym_LBRACE] = ACTIONS(3320), - [anon_sym_RBRACE] = ACTIONS(3320), - [anon_sym_typeof] = ACTIONS(3320), - [anon_sym_import] = ACTIONS(3320), - [anon_sym_with] = ACTIONS(3320), - [anon_sym_var] = ACTIONS(3320), - [anon_sym_let] = ACTIONS(3320), - [anon_sym_const] = ACTIONS(3320), - [anon_sym_BANG] = ACTIONS(3320), - [anon_sym_else] = ACTIONS(3320), - [anon_sym_if] = ACTIONS(3320), - [anon_sym_switch] = ACTIONS(3320), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(3320), - [anon_sym_await] = ACTIONS(3320), - [anon_sym_while] = ACTIONS(3320), - [anon_sym_do] = ACTIONS(3320), - [anon_sym_try] = ACTIONS(3320), - [anon_sym_break] = ACTIONS(3320), - [anon_sym_continue] = ACTIONS(3320), - [anon_sym_debugger] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(3320), - [anon_sym_throw] = ACTIONS(3320), - [anon_sym_SEMI] = ACTIONS(3320), - [anon_sym_yield] = ACTIONS(3320), - [anon_sym_LBRACK] = ACTIONS(3320), - [anon_sym_LTtemplate_GT] = ACTIONS(3320), - [anon_sym_DQUOTE] = ACTIONS(3320), - [anon_sym_SQUOTE] = ACTIONS(3320), - [anon_sym_class] = ACTIONS(3320), - [anon_sym_async] = ACTIONS(3320), - [anon_sym_function] = ACTIONS(3320), - [anon_sym_new] = ACTIONS(3320), - [anon_sym_using] = ACTIONS(3320), - [anon_sym_PLUS] = ACTIONS(3320), - [anon_sym_DASH] = ACTIONS(3320), - [anon_sym_SLASH] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(3320), - [anon_sym_TILDE] = ACTIONS(3320), - [anon_sym_void] = ACTIONS(3320), - [anon_sym_delete] = ACTIONS(3320), - [anon_sym_PLUS_PLUS] = ACTIONS(3320), - [anon_sym_DASH_DASH] = ACTIONS(3320), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3320), - [sym_number] = ACTIONS(3320), - [sym_private_property_identifier] = ACTIONS(3320), - [sym_this] = ACTIONS(3320), - [sym_super] = ACTIONS(3320), - [sym_true] = ACTIONS(3320), - [sym_false] = ACTIONS(3320), - [sym_null] = ACTIONS(3320), - [sym_undefined] = ACTIONS(3320), - [anon_sym_AT] = ACTIONS(3320), - [anon_sym_static] = ACTIONS(3320), - [anon_sym_readonly] = ACTIONS(3320), - [anon_sym_get] = ACTIONS(3320), - [anon_sym_set] = ACTIONS(3320), - [anon_sym_declare] = ACTIONS(3320), - [anon_sym_public] = ACTIONS(3320), - [anon_sym_private] = ACTIONS(3320), - [anon_sym_protected] = ACTIONS(3320), - [anon_sym_override] = ACTIONS(3320), - [anon_sym_module] = ACTIONS(3320), - [anon_sym_any] = ACTIONS(3320), - [anon_sym_number] = ACTIONS(3320), - [anon_sym_boolean] = ACTIONS(3320), - [anon_sym_string] = ACTIONS(3320), - [anon_sym_symbol] = ACTIONS(3320), - [anon_sym_object] = ACTIONS(3320), - [anon_sym_abstract] = ACTIONS(3320), - [anon_sym_interface] = ACTIONS(3320), - [anon_sym_enum] = ACTIONS(3320), - [sym_html_comment] = ACTIONS(5), - }, - [1362] = { - [sym_comment] = STATE(1362), - [ts_builtin_sym_end] = ACTIONS(3454), - [sym_identifier] = ACTIONS(3322), - [anon_sym_export] = ACTIONS(3322), - [anon_sym_type] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3322), - [anon_sym_RBRACE] = ACTIONS(3322), - [anon_sym_typeof] = ACTIONS(3322), - [anon_sym_import] = ACTIONS(3322), - [anon_sym_with] = ACTIONS(3322), - [anon_sym_var] = ACTIONS(3322), - [anon_sym_let] = ACTIONS(3322), - [anon_sym_const] = ACTIONS(3322), - [anon_sym_BANG] = ACTIONS(3322), - [anon_sym_else] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3322), - [anon_sym_switch] = ACTIONS(3322), - [anon_sym_for] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3322), - [anon_sym_await] = ACTIONS(3322), - [anon_sym_while] = ACTIONS(3322), - [anon_sym_do] = ACTIONS(3322), - [anon_sym_try] = ACTIONS(3322), - [anon_sym_break] = ACTIONS(3322), - [anon_sym_continue] = ACTIONS(3322), - [anon_sym_debugger] = ACTIONS(3322), - [anon_sym_return] = ACTIONS(3322), - [anon_sym_throw] = ACTIONS(3322), - [anon_sym_SEMI] = ACTIONS(3322), - [anon_sym_yield] = ACTIONS(3322), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_LTtemplate_GT] = ACTIONS(3322), - [anon_sym_DQUOTE] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3322), - [anon_sym_class] = ACTIONS(3322), - [anon_sym_async] = ACTIONS(3322), - [anon_sym_function] = ACTIONS(3322), - [anon_sym_new] = ACTIONS(3322), - [anon_sym_using] = ACTIONS(3322), - [anon_sym_PLUS] = ACTIONS(3322), - [anon_sym_DASH] = ACTIONS(3322), - [anon_sym_SLASH] = ACTIONS(3322), - [anon_sym_LT] = ACTIONS(3322), - [anon_sym_TILDE] = ACTIONS(3322), - [anon_sym_void] = ACTIONS(3322), - [anon_sym_delete] = ACTIONS(3322), - [anon_sym_PLUS_PLUS] = ACTIONS(3322), - [anon_sym_DASH_DASH] = ACTIONS(3322), + [1312] = { + [sym_comment] = STATE(1312), + [sym_identifier] = ACTIONS(3322), + [anon_sym_export] = ACTIONS(3322), + [anon_sym_default] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_typeof] = ACTIONS(3322), + [anon_sym_import] = ACTIONS(3322), + [anon_sym_with] = ACTIONS(3322), + [anon_sym_var] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_switch] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_await] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_debugger] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_throw] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3322), + [anon_sym_case] = ACTIONS(3322), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LTtemplate_GT] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3322), + [anon_sym_class] = ACTIONS(3322), + [anon_sym_async] = ACTIONS(3322), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_using] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_void] = ACTIONS(3322), + [anon_sym_delete] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(3322), [sym_number] = ACTIONS(3322), @@ -175325,2141 +170880,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3322), [sym_html_comment] = ACTIONS(5), }, - [1363] = { - [sym_comment] = STATE(1363), - [ts_builtin_sym_end] = ACTIONS(3456), - [sym_identifier] = ACTIONS(3324), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_type] = ACTIONS(3324), - [anon_sym_namespace] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_typeof] = ACTIONS(3324), - [anon_sym_import] = ACTIONS(3324), - [anon_sym_with] = ACTIONS(3324), - [anon_sym_var] = ACTIONS(3324), - [anon_sym_let] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_else] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_await] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_try] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_debugger] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_throw] = ACTIONS(3324), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_yield] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3324), - [anon_sym_LTtemplate_GT] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_class] = ACTIONS(3324), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_function] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_using] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_void] = ACTIONS(3324), - [anon_sym_delete] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3324), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3324), - [sym_number] = ACTIONS(3324), - [sym_private_property_identifier] = ACTIONS(3324), - [sym_this] = ACTIONS(3324), - [sym_super] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_null] = ACTIONS(3324), - [sym_undefined] = ACTIONS(3324), - [anon_sym_AT] = ACTIONS(3324), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_readonly] = ACTIONS(3324), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3324), - [anon_sym_declare] = ACTIONS(3324), - [anon_sym_public] = ACTIONS(3324), - [anon_sym_private] = ACTIONS(3324), - [anon_sym_protected] = ACTIONS(3324), - [anon_sym_override] = ACTIONS(3324), - [anon_sym_module] = ACTIONS(3324), - [anon_sym_any] = ACTIONS(3324), - [anon_sym_number] = ACTIONS(3324), - [anon_sym_boolean] = ACTIONS(3324), - [anon_sym_string] = ACTIONS(3324), - [anon_sym_symbol] = ACTIONS(3324), - [anon_sym_object] = ACTIONS(3324), - [anon_sym_abstract] = ACTIONS(3324), - [anon_sym_interface] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), + [1313] = { + [sym_comment] = STATE(1313), + [sym_identifier] = ACTIONS(3318), + [anon_sym_export] = ACTIONS(3318), + [anon_sym_default] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_namespace] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_typeof] = ACTIONS(3318), + [anon_sym_import] = ACTIONS(3318), + [anon_sym_with] = ACTIONS(3318), + [anon_sym_var] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_const] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_switch] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_await] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_break] = ACTIONS(3318), + [anon_sym_continue] = ACTIONS(3318), + [anon_sym_debugger] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_throw] = ACTIONS(3318), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_case] = ACTIONS(3318), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LTtemplate_GT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_class] = ACTIONS(3318), + [anon_sym_async] = ACTIONS(3318), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_using] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_void] = ACTIONS(3318), + [anon_sym_delete] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3318), + [sym_number] = ACTIONS(3318), + [sym_private_property_identifier] = ACTIONS(3318), + [sym_this] = ACTIONS(3318), + [sym_super] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_null] = ACTIONS(3318), + [sym_undefined] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_static] = ACTIONS(3318), + [anon_sym_readonly] = ACTIONS(3318), + [anon_sym_get] = ACTIONS(3318), + [anon_sym_set] = ACTIONS(3318), + [anon_sym_declare] = ACTIONS(3318), + [anon_sym_public] = ACTIONS(3318), + [anon_sym_private] = ACTIONS(3318), + [anon_sym_protected] = ACTIONS(3318), + [anon_sym_override] = ACTIONS(3318), + [anon_sym_module] = ACTIONS(3318), + [anon_sym_any] = ACTIONS(3318), + [anon_sym_number] = ACTIONS(3318), + [anon_sym_boolean] = ACTIONS(3318), + [anon_sym_string] = ACTIONS(3318), + [anon_sym_symbol] = ACTIONS(3318), + [anon_sym_object] = ACTIONS(3318), + [anon_sym_abstract] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_enum] = ACTIONS(3318), [sym_html_comment] = ACTIONS(5), }, - [1364] = { - [sym_comment] = STATE(1364), - [ts_builtin_sym_end] = ACTIONS(3456), - [sym_identifier] = ACTIONS(3324), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_type] = ACTIONS(3324), - [anon_sym_namespace] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_typeof] = ACTIONS(3324), - [anon_sym_import] = ACTIONS(3324), - [anon_sym_with] = ACTIONS(3324), - [anon_sym_var] = ACTIONS(3324), - [anon_sym_let] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_else] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_await] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_try] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_debugger] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_throw] = ACTIONS(3324), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_yield] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3324), - [anon_sym_LTtemplate_GT] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_class] = ACTIONS(3324), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_function] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_using] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_void] = ACTIONS(3324), - [anon_sym_delete] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3324), + [1314] = { + [sym_comment] = STATE(1314), + [ts_builtin_sym_end] = ACTIONS(3480), + [sym_identifier] = ACTIONS(3258), + [anon_sym_export] = ACTIONS(3258), + [anon_sym_type] = ACTIONS(3258), + [anon_sym_namespace] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_typeof] = ACTIONS(3258), + [anon_sym_import] = ACTIONS(3258), + [anon_sym_with] = ACTIONS(3258), + [anon_sym_var] = ACTIONS(3258), + [anon_sym_let] = ACTIONS(3258), + [anon_sym_const] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_else] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_switch] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_await] = ACTIONS(3258), + [anon_sym_while] = ACTIONS(3258), + [anon_sym_do] = ACTIONS(3258), + [anon_sym_try] = ACTIONS(3258), + [anon_sym_break] = ACTIONS(3258), + [anon_sym_continue] = ACTIONS(3258), + [anon_sym_debugger] = ACTIONS(3258), + [anon_sym_return] = ACTIONS(3258), + [anon_sym_throw] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym_yield] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3258), + [anon_sym_LTtemplate_GT] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [anon_sym_SQUOTE] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3258), + [anon_sym_async] = ACTIONS(3258), + [anon_sym_function] = ACTIONS(3258), + [anon_sym_new] = ACTIONS(3258), + [anon_sym_using] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_SLASH] = ACTIONS(3258), + [anon_sym_LT] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_void] = ACTIONS(3258), + [anon_sym_delete] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DASH_DASH] = ACTIONS(3258), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3324), - [sym_number] = ACTIONS(3324), - [sym_private_property_identifier] = ACTIONS(3324), - [sym_this] = ACTIONS(3324), - [sym_super] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_null] = ACTIONS(3324), - [sym_undefined] = ACTIONS(3324), - [anon_sym_AT] = ACTIONS(3324), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_readonly] = ACTIONS(3324), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3324), - [anon_sym_declare] = ACTIONS(3324), - [anon_sym_public] = ACTIONS(3324), - [anon_sym_private] = ACTIONS(3324), - [anon_sym_protected] = ACTIONS(3324), - [anon_sym_override] = ACTIONS(3324), - [anon_sym_module] = ACTIONS(3324), - [anon_sym_any] = ACTIONS(3324), - [anon_sym_number] = ACTIONS(3324), - [anon_sym_boolean] = ACTIONS(3324), - [anon_sym_string] = ACTIONS(3324), - [anon_sym_symbol] = ACTIONS(3324), - [anon_sym_object] = ACTIONS(3324), - [anon_sym_abstract] = ACTIONS(3324), - [anon_sym_interface] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), + [anon_sym_BQUOTE] = ACTIONS(3258), + [sym_number] = ACTIONS(3258), + [sym_private_property_identifier] = ACTIONS(3258), + [sym_this] = ACTIONS(3258), + [sym_super] = ACTIONS(3258), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [sym_null] = ACTIONS(3258), + [sym_undefined] = ACTIONS(3258), + [anon_sym_AT] = ACTIONS(3258), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_readonly] = ACTIONS(3258), + [anon_sym_get] = ACTIONS(3258), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_declare] = ACTIONS(3258), + [anon_sym_public] = ACTIONS(3258), + [anon_sym_private] = ACTIONS(3258), + [anon_sym_protected] = ACTIONS(3258), + [anon_sym_override] = ACTIONS(3258), + [anon_sym_module] = ACTIONS(3258), + [anon_sym_any] = ACTIONS(3258), + [anon_sym_number] = ACTIONS(3258), + [anon_sym_boolean] = ACTIONS(3258), + [anon_sym_string] = ACTIONS(3258), + [anon_sym_symbol] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3258), + [anon_sym_abstract] = ACTIONS(3258), + [anon_sym_interface] = ACTIONS(3258), + [anon_sym_enum] = ACTIONS(3258), [sym_html_comment] = ACTIONS(5), }, - [1365] = { - [sym_comment] = STATE(1365), - [ts_builtin_sym_end] = ACTIONS(3458), - [sym_identifier] = ACTIONS(3326), - [anon_sym_export] = ACTIONS(3326), - [anon_sym_type] = ACTIONS(3326), - [anon_sym_namespace] = ACTIONS(3326), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_RBRACE] = ACTIONS(3326), - [anon_sym_typeof] = ACTIONS(3326), - [anon_sym_import] = ACTIONS(3326), - [anon_sym_with] = ACTIONS(3326), - [anon_sym_var] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3326), - [anon_sym_const] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_else] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_switch] = ACTIONS(3326), - [anon_sym_for] = ACTIONS(3326), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_await] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_do] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_break] = ACTIONS(3326), - [anon_sym_continue] = ACTIONS(3326), - [anon_sym_debugger] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_throw] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(3326), - [anon_sym_yield] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LTtemplate_GT] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3326), - [anon_sym_class] = ACTIONS(3326), - [anon_sym_async] = ACTIONS(3326), - [anon_sym_function] = ACTIONS(3326), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_using] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3326), - [anon_sym_void] = ACTIONS(3326), - [anon_sym_delete] = ACTIONS(3326), - [anon_sym_PLUS_PLUS] = ACTIONS(3326), - [anon_sym_DASH_DASH] = ACTIONS(3326), + [1315] = { + [sym_comment] = STATE(1315), + [ts_builtin_sym_end] = ACTIONS(3482), + [sym_identifier] = ACTIONS(3262), + [anon_sym_export] = ACTIONS(3262), + [anon_sym_type] = ACTIONS(3262), + [anon_sym_namespace] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_typeof] = ACTIONS(3262), + [anon_sym_import] = ACTIONS(3262), + [anon_sym_with] = ACTIONS(3262), + [anon_sym_var] = ACTIONS(3262), + [anon_sym_let] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_BANG] = ACTIONS(3262), + [anon_sym_else] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_await] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_try] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_debugger] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_throw] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_LTtemplate_GT] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_async] = ACTIONS(3262), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_using] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_LT] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_void] = ACTIONS(3262), + [anon_sym_delete] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3262), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3326), - [sym_number] = ACTIONS(3326), - [sym_private_property_identifier] = ACTIONS(3326), - [sym_this] = ACTIONS(3326), - [sym_super] = ACTIONS(3326), - [sym_true] = ACTIONS(3326), - [sym_false] = ACTIONS(3326), - [sym_null] = ACTIONS(3326), - [sym_undefined] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3326), - [anon_sym_static] = ACTIONS(3326), - [anon_sym_readonly] = ACTIONS(3326), - [anon_sym_get] = ACTIONS(3326), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_declare] = ACTIONS(3326), - [anon_sym_public] = ACTIONS(3326), - [anon_sym_private] = ACTIONS(3326), - [anon_sym_protected] = ACTIONS(3326), - [anon_sym_override] = ACTIONS(3326), - [anon_sym_module] = ACTIONS(3326), - [anon_sym_any] = ACTIONS(3326), - [anon_sym_number] = ACTIONS(3326), - [anon_sym_boolean] = ACTIONS(3326), - [anon_sym_string] = ACTIONS(3326), - [anon_sym_symbol] = ACTIONS(3326), - [anon_sym_object] = ACTIONS(3326), - [anon_sym_abstract] = ACTIONS(3326), - [anon_sym_interface] = ACTIONS(3326), - [anon_sym_enum] = ACTIONS(3326), + [anon_sym_BQUOTE] = ACTIONS(3262), + [sym_number] = ACTIONS(3262), + [sym_private_property_identifier] = ACTIONS(3262), + [sym_this] = ACTIONS(3262), + [sym_super] = ACTIONS(3262), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_null] = ACTIONS(3262), + [sym_undefined] = ACTIONS(3262), + [anon_sym_AT] = ACTIONS(3262), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_readonly] = ACTIONS(3262), + [anon_sym_get] = ACTIONS(3262), + [anon_sym_set] = ACTIONS(3262), + [anon_sym_declare] = ACTIONS(3262), + [anon_sym_public] = ACTIONS(3262), + [anon_sym_private] = ACTIONS(3262), + [anon_sym_protected] = ACTIONS(3262), + [anon_sym_override] = ACTIONS(3262), + [anon_sym_module] = ACTIONS(3262), + [anon_sym_any] = ACTIONS(3262), + [anon_sym_number] = ACTIONS(3262), + [anon_sym_boolean] = ACTIONS(3262), + [anon_sym_string] = ACTIONS(3262), + [anon_sym_symbol] = ACTIONS(3262), + [anon_sym_object] = ACTIONS(3262), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_interface] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), [sym_html_comment] = ACTIONS(5), }, - [1366] = { - [sym_comment] = STATE(1366), - [ts_builtin_sym_end] = ACTIONS(3460), - [sym_identifier] = ACTIONS(3138), - [anon_sym_export] = ACTIONS(3138), - [anon_sym_type] = ACTIONS(3138), - [anon_sym_namespace] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_typeof] = ACTIONS(3138), - [anon_sym_import] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3138), - [anon_sym_var] = ACTIONS(3138), - [anon_sym_let] = ACTIONS(3138), - [anon_sym_const] = ACTIONS(3138), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_else] = ACTIONS(3138), - [anon_sym_if] = ACTIONS(3138), - [anon_sym_switch] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3138), - [anon_sym_await] = ACTIONS(3138), - [anon_sym_while] = ACTIONS(3138), - [anon_sym_do] = ACTIONS(3138), - [anon_sym_try] = ACTIONS(3138), - [anon_sym_break] = ACTIONS(3138), - [anon_sym_continue] = ACTIONS(3138), - [anon_sym_debugger] = ACTIONS(3138), - [anon_sym_return] = ACTIONS(3138), - [anon_sym_throw] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_LTtemplate_GT] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [anon_sym_class] = ACTIONS(3138), - [anon_sym_async] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3138), - [anon_sym_using] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_void] = ACTIONS(3138), - [anon_sym_delete] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3138), - [sym_number] = ACTIONS(3138), - [sym_private_property_identifier] = ACTIONS(3138), - [sym_this] = ACTIONS(3138), - [sym_super] = ACTIONS(3138), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_AT] = ACTIONS(3138), - [anon_sym_static] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3138), - [anon_sym_get] = ACTIONS(3138), - [anon_sym_set] = ACTIONS(3138), - [anon_sym_declare] = ACTIONS(3138), - [anon_sym_public] = ACTIONS(3138), - [anon_sym_private] = ACTIONS(3138), - [anon_sym_protected] = ACTIONS(3138), - [anon_sym_override] = ACTIONS(3138), - [anon_sym_module] = ACTIONS(3138), - [anon_sym_any] = ACTIONS(3138), - [anon_sym_number] = ACTIONS(3138), - [anon_sym_boolean] = ACTIONS(3138), - [anon_sym_string] = ACTIONS(3138), - [anon_sym_symbol] = ACTIONS(3138), - [anon_sym_object] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(3138), - [anon_sym_interface] = ACTIONS(3138), - [anon_sym_enum] = ACTIONS(3138), + [1316] = { + [sym_comment] = STATE(1316), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3314), + [anon_sym_default] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_RBRACE] = ACTIONS(3314), + [anon_sym_typeof] = ACTIONS(3314), + [anon_sym_import] = ACTIONS(3314), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_var] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_const] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_switch] = ACTIONS(3314), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_await] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_break] = ACTIONS(3314), + [anon_sym_continue] = ACTIONS(3314), + [anon_sym_debugger] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_throw] = ACTIONS(3314), + [anon_sym_SEMI] = ACTIONS(3314), + [anon_sym_case] = ACTIONS(3314), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LTtemplate_GT] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_SQUOTE] = ACTIONS(3314), + [anon_sym_class] = ACTIONS(3314), + [anon_sym_async] = ACTIONS(3314), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_using] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_SLASH] = ACTIONS(3314), + [anon_sym_LT] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3314), + [anon_sym_void] = ACTIONS(3314), + [anon_sym_delete] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3314), + [anon_sym_DASH_DASH] = ACTIONS(3314), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3314), + [sym_number] = ACTIONS(3314), + [sym_private_property_identifier] = ACTIONS(3314), + [sym_this] = ACTIONS(3314), + [sym_super] = ACTIONS(3314), + [sym_true] = ACTIONS(3314), + [sym_false] = ACTIONS(3314), + [sym_null] = ACTIONS(3314), + [sym_undefined] = ACTIONS(3314), + [anon_sym_AT] = ACTIONS(3314), + [anon_sym_static] = ACTIONS(3314), + [anon_sym_readonly] = ACTIONS(3314), + [anon_sym_get] = ACTIONS(3314), + [anon_sym_set] = ACTIONS(3314), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3314), + [anon_sym_private] = ACTIONS(3314), + [anon_sym_protected] = ACTIONS(3314), + [anon_sym_override] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_any] = ACTIONS(3314), + [anon_sym_number] = ACTIONS(3314), + [anon_sym_boolean] = ACTIONS(3314), + [anon_sym_string] = ACTIONS(3314), + [anon_sym_symbol] = ACTIONS(3314), + [anon_sym_object] = ACTIONS(3314), + [anon_sym_abstract] = ACTIONS(3314), + [anon_sym_interface] = ACTIONS(3314), + [anon_sym_enum] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, - [1367] = { - [sym_comment] = STATE(1367), - [ts_builtin_sym_end] = ACTIONS(3462), - [sym_identifier] = ACTIONS(3132), - [anon_sym_export] = ACTIONS(3132), - [anon_sym_type] = ACTIONS(3132), - [anon_sym_namespace] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3132), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_typeof] = ACTIONS(3132), - [anon_sym_import] = ACTIONS(3132), - [anon_sym_with] = ACTIONS(3132), - [anon_sym_var] = ACTIONS(3132), - [anon_sym_let] = ACTIONS(3132), - [anon_sym_const] = ACTIONS(3132), - [anon_sym_BANG] = ACTIONS(3132), - [anon_sym_else] = ACTIONS(3132), - [anon_sym_if] = ACTIONS(3132), - [anon_sym_switch] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3132), - [anon_sym_await] = ACTIONS(3132), - [anon_sym_while] = ACTIONS(3132), - [anon_sym_do] = ACTIONS(3132), - [anon_sym_try] = ACTIONS(3132), - [anon_sym_break] = ACTIONS(3132), - [anon_sym_continue] = ACTIONS(3132), - [anon_sym_debugger] = ACTIONS(3132), - [anon_sym_return] = ACTIONS(3132), - [anon_sym_throw] = ACTIONS(3132), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_LTtemplate_GT] = ACTIONS(3132), - [anon_sym_DQUOTE] = ACTIONS(3132), - [anon_sym_SQUOTE] = ACTIONS(3132), - [anon_sym_class] = ACTIONS(3132), - [anon_sym_async] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3132), - [anon_sym_using] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_SLASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_TILDE] = ACTIONS(3132), - [anon_sym_void] = ACTIONS(3132), - [anon_sym_delete] = ACTIONS(3132), - [anon_sym_PLUS_PLUS] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3132), + [1317] = { + [sym_comment] = STATE(1317), + [sym_identifier] = ACTIONS(3162), + [anon_sym_export] = ACTIONS(3162), + [anon_sym_default] = ACTIONS(3162), + [anon_sym_type] = ACTIONS(3162), + [anon_sym_namespace] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_typeof] = ACTIONS(3162), + [anon_sym_import] = ACTIONS(3162), + [anon_sym_with] = ACTIONS(3162), + [anon_sym_var] = ACTIONS(3162), + [anon_sym_let] = ACTIONS(3162), + [anon_sym_const] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_switch] = ACTIONS(3162), + [anon_sym_for] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym_await] = ACTIONS(3162), + [anon_sym_while] = ACTIONS(3162), + [anon_sym_do] = ACTIONS(3162), + [anon_sym_try] = ACTIONS(3162), + [anon_sym_break] = ACTIONS(3162), + [anon_sym_continue] = ACTIONS(3162), + [anon_sym_debugger] = ACTIONS(3162), + [anon_sym_return] = ACTIONS(3162), + [anon_sym_throw] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_case] = ACTIONS(3162), + [anon_sym_yield] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3162), + [anon_sym_LTtemplate_GT] = ACTIONS(3162), + [anon_sym_DQUOTE] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3162), + [anon_sym_class] = ACTIONS(3162), + [anon_sym_async] = ACTIONS(3162), + [anon_sym_function] = ACTIONS(3162), + [anon_sym_new] = ACTIONS(3162), + [anon_sym_using] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3162), + [anon_sym_void] = ACTIONS(3162), + [anon_sym_delete] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3132), - [sym_private_property_identifier] = ACTIONS(3132), - [sym_this] = ACTIONS(3132), - [sym_super] = ACTIONS(3132), - [sym_true] = ACTIONS(3132), - [sym_false] = ACTIONS(3132), - [sym_null] = ACTIONS(3132), - [sym_undefined] = ACTIONS(3132), - [anon_sym_AT] = ACTIONS(3132), - [anon_sym_static] = ACTIONS(3132), - [anon_sym_readonly] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3132), - [anon_sym_set] = ACTIONS(3132), - [anon_sym_declare] = ACTIONS(3132), - [anon_sym_public] = ACTIONS(3132), - [anon_sym_private] = ACTIONS(3132), - [anon_sym_protected] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3132), - [anon_sym_module] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3132), - [anon_sym_number] = ACTIONS(3132), - [anon_sym_boolean] = ACTIONS(3132), - [anon_sym_string] = ACTIONS(3132), - [anon_sym_symbol] = ACTIONS(3132), - [anon_sym_object] = ACTIONS(3132), - [anon_sym_abstract] = ACTIONS(3132), - [anon_sym_interface] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3132), + [anon_sym_BQUOTE] = ACTIONS(3162), + [sym_number] = ACTIONS(3162), + [sym_private_property_identifier] = ACTIONS(3162), + [sym_this] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_true] = ACTIONS(3162), + [sym_false] = ACTIONS(3162), + [sym_null] = ACTIONS(3162), + [sym_undefined] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_static] = ACTIONS(3162), + [anon_sym_readonly] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_declare] = ACTIONS(3162), + [anon_sym_public] = ACTIONS(3162), + [anon_sym_private] = ACTIONS(3162), + [anon_sym_protected] = ACTIONS(3162), + [anon_sym_override] = ACTIONS(3162), + [anon_sym_module] = ACTIONS(3162), + [anon_sym_any] = ACTIONS(3162), + [anon_sym_number] = ACTIONS(3162), + [anon_sym_boolean] = ACTIONS(3162), + [anon_sym_string] = ACTIONS(3162), + [anon_sym_symbol] = ACTIONS(3162), + [anon_sym_object] = ACTIONS(3162), + [anon_sym_abstract] = ACTIONS(3162), + [anon_sym_interface] = ACTIONS(3162), + [anon_sym_enum] = ACTIONS(3162), [sym_html_comment] = ACTIONS(5), }, - [1368] = { - [sym_comment] = STATE(1368), - [ts_builtin_sym_end] = ACTIONS(3464), - [sym_identifier] = ACTIONS(3250), - [anon_sym_export] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_namespace] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3250), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_typeof] = ACTIONS(3250), - [anon_sym_import] = ACTIONS(3250), - [anon_sym_with] = ACTIONS(3250), - [anon_sym_var] = ACTIONS(3250), - [anon_sym_let] = ACTIONS(3250), - [anon_sym_const] = ACTIONS(3250), - [anon_sym_BANG] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3250), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_switch] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_await] = ACTIONS(3250), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_do] = ACTIONS(3250), - [anon_sym_try] = ACTIONS(3250), - [anon_sym_break] = ACTIONS(3250), - [anon_sym_continue] = ACTIONS(3250), - [anon_sym_debugger] = ACTIONS(3250), - [anon_sym_return] = ACTIONS(3250), - [anon_sym_throw] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_yield] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_LTtemplate_GT] = ACTIONS(3250), - [anon_sym_DQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_class] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_function] = ACTIONS(3250), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_using] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_SLASH] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_TILDE] = ACTIONS(3250), - [anon_sym_void] = ACTIONS(3250), - [anon_sym_delete] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3250), - [sym_number] = ACTIONS(3250), - [sym_private_property_identifier] = ACTIONS(3250), - [sym_this] = ACTIONS(3250), - [sym_super] = ACTIONS(3250), - [sym_true] = ACTIONS(3250), - [sym_false] = ACTIONS(3250), - [sym_null] = ACTIONS(3250), - [sym_undefined] = ACTIONS(3250), - [anon_sym_AT] = ACTIONS(3250), - [anon_sym_static] = ACTIONS(3250), - [anon_sym_readonly] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3250), - [anon_sym_set] = ACTIONS(3250), - [anon_sym_declare] = ACTIONS(3250), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_protected] = ACTIONS(3250), - [anon_sym_override] = ACTIONS(3250), - [anon_sym_module] = ACTIONS(3250), - [anon_sym_any] = ACTIONS(3250), - [anon_sym_number] = ACTIONS(3250), - [anon_sym_boolean] = ACTIONS(3250), - [anon_sym_string] = ACTIONS(3250), - [anon_sym_symbol] = ACTIONS(3250), - [anon_sym_object] = ACTIONS(3250), - [anon_sym_abstract] = ACTIONS(3250), - [anon_sym_interface] = ACTIONS(3250), - [anon_sym_enum] = ACTIONS(3250), + [1318] = { + [sym_comment] = STATE(1318), + [sym_identifier] = ACTIONS(3312), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_default] = ACTIONS(3312), + [anon_sym_type] = ACTIONS(3312), + [anon_sym_namespace] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_typeof] = ACTIONS(3312), + [anon_sym_import] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3312), + [anon_sym_var] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_await] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_debugger] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3312), + [anon_sym_case] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LTtemplate_GT] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_async] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_using] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_SLASH] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_void] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3312), + [sym_number] = ACTIONS(3312), + [sym_private_property_identifier] = ACTIONS(3312), + [sym_this] = ACTIONS(3312), + [sym_super] = ACTIONS(3312), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [sym_null] = ACTIONS(3312), + [sym_undefined] = ACTIONS(3312), + [anon_sym_AT] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_readonly] = ACTIONS(3312), + [anon_sym_get] = ACTIONS(3312), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_declare] = ACTIONS(3312), + [anon_sym_public] = ACTIONS(3312), + [anon_sym_private] = ACTIONS(3312), + [anon_sym_protected] = ACTIONS(3312), + [anon_sym_override] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_any] = ACTIONS(3312), + [anon_sym_number] = ACTIONS(3312), + [anon_sym_boolean] = ACTIONS(3312), + [anon_sym_string] = ACTIONS(3312), + [anon_sym_symbol] = ACTIONS(3312), + [anon_sym_object] = ACTIONS(3312), + [anon_sym_abstract] = ACTIONS(3312), + [anon_sym_interface] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), [sym_html_comment] = ACTIONS(5), }, - [1369] = { - [sym_comment] = STATE(1369), - [ts_builtin_sym_end] = ACTIONS(3466), - [sym_identifier] = ACTIONS(3332), - [anon_sym_export] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_RBRACE] = ACTIONS(3332), - [anon_sym_typeof] = ACTIONS(3332), - [anon_sym_import] = ACTIONS(3332), - [anon_sym_with] = ACTIONS(3332), - [anon_sym_var] = ACTIONS(3332), - [anon_sym_let] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_else] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_await] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_debugger] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_yield] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_LTtemplate_GT] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_async] = ACTIONS(3332), - [anon_sym_function] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_void] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3332), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3332), - [sym_number] = ACTIONS(3332), - [sym_private_property_identifier] = ACTIONS(3332), - [sym_this] = ACTIONS(3332), - [sym_super] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_null] = ACTIONS(3332), - [sym_undefined] = ACTIONS(3332), - [anon_sym_AT] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3332), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3332), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_protected] = ACTIONS(3332), - [anon_sym_override] = ACTIONS(3332), - [anon_sym_module] = ACTIONS(3332), - [anon_sym_any] = ACTIONS(3332), - [anon_sym_number] = ACTIONS(3332), - [anon_sym_boolean] = ACTIONS(3332), - [anon_sym_string] = ACTIONS(3332), - [anon_sym_symbol] = ACTIONS(3332), - [anon_sym_object] = ACTIONS(3332), - [anon_sym_abstract] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), - [sym_html_comment] = ACTIONS(5), - }, - [1370] = { - [sym_comment] = STATE(1370), - [ts_builtin_sym_end] = ACTIONS(3468), - [sym_identifier] = ACTIONS(3334), - [anon_sym_export] = ACTIONS(3334), - [anon_sym_type] = ACTIONS(3334), - [anon_sym_namespace] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3334), - [anon_sym_typeof] = ACTIONS(3334), - [anon_sym_import] = ACTIONS(3334), - [anon_sym_with] = ACTIONS(3334), - [anon_sym_var] = ACTIONS(3334), - [anon_sym_let] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_else] = ACTIONS(3334), - [anon_sym_if] = ACTIONS(3334), - [anon_sym_switch] = ACTIONS(3334), - [anon_sym_for] = ACTIONS(3334), - [anon_sym_LPAREN] = ACTIONS(3334), - [anon_sym_await] = ACTIONS(3334), - [anon_sym_while] = ACTIONS(3334), - [anon_sym_do] = ACTIONS(3334), - [anon_sym_try] = ACTIONS(3334), - [anon_sym_break] = ACTIONS(3334), - [anon_sym_continue] = ACTIONS(3334), - [anon_sym_debugger] = ACTIONS(3334), - [anon_sym_return] = ACTIONS(3334), - [anon_sym_throw] = ACTIONS(3334), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym_yield] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_LTtemplate_GT] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_class] = ACTIONS(3334), - [anon_sym_async] = ACTIONS(3334), - [anon_sym_function] = ACTIONS(3334), - [anon_sym_new] = ACTIONS(3334), - [anon_sym_using] = ACTIONS(3334), - [anon_sym_PLUS] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3334), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_void] = ACTIONS(3334), - [anon_sym_delete] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3334), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3334), - [sym_number] = ACTIONS(3334), - [sym_private_property_identifier] = ACTIONS(3334), - [sym_this] = ACTIONS(3334), - [sym_super] = ACTIONS(3334), - [sym_true] = ACTIONS(3334), - [sym_false] = ACTIONS(3334), - [sym_null] = ACTIONS(3334), - [sym_undefined] = ACTIONS(3334), - [anon_sym_AT] = ACTIONS(3334), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3334), - [anon_sym_set] = ACTIONS(3334), - [anon_sym_declare] = ACTIONS(3334), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3334), - [anon_sym_module] = ACTIONS(3334), - [anon_sym_any] = ACTIONS(3334), - [anon_sym_number] = ACTIONS(3334), - [anon_sym_boolean] = ACTIONS(3334), - [anon_sym_string] = ACTIONS(3334), - [anon_sym_symbol] = ACTIONS(3334), - [anon_sym_object] = ACTIONS(3334), - [anon_sym_abstract] = ACTIONS(3334), - [anon_sym_interface] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), - [sym_html_comment] = ACTIONS(5), - }, - [1371] = { - [sym_comment] = STATE(1371), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1372] = { - [sym_comment] = STATE(1372), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1373] = { - [sym_comment] = STATE(1373), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1374] = { - [sym_comment] = STATE(1374), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1375] = { - [sym_comment] = STATE(1375), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1376] = { - [sym_comment] = STATE(1376), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1377] = { - [sym_comment] = STATE(1377), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1378] = { - [sym_comment] = STATE(1378), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1379] = { - [sym_comment] = STATE(1379), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_default] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_case] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym_html_comment] = ACTIONS(5), - }, - [1380] = { - [sym_comment] = STATE(1380), - [sym_identifier] = ACTIONS(3282), - [anon_sym_export] = ACTIONS(3282), - [anon_sym_default] = ACTIONS(3282), - [anon_sym_type] = ACTIONS(3282), - [anon_sym_namespace] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_RBRACE] = ACTIONS(3282), - [anon_sym_typeof] = ACTIONS(3282), - [anon_sym_import] = ACTIONS(3282), - [anon_sym_with] = ACTIONS(3282), - [anon_sym_var] = ACTIONS(3282), - [anon_sym_let] = ACTIONS(3282), - [anon_sym_const] = ACTIONS(3282), - [anon_sym_BANG] = ACTIONS(3282), - [anon_sym_if] = ACTIONS(3282), - [anon_sym_switch] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_await] = ACTIONS(3282), - [anon_sym_while] = ACTIONS(3282), - [anon_sym_do] = ACTIONS(3282), - [anon_sym_try] = ACTIONS(3282), - [anon_sym_break] = ACTIONS(3282), - [anon_sym_continue] = ACTIONS(3282), - [anon_sym_debugger] = ACTIONS(3282), - [anon_sym_return] = ACTIONS(3282), - [anon_sym_throw] = ACTIONS(3282), - [anon_sym_SEMI] = ACTIONS(3282), - [anon_sym_case] = ACTIONS(3282), - [anon_sym_yield] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_LTtemplate_GT] = ACTIONS(3282), - [anon_sym_DQUOTE] = ACTIONS(3282), - [anon_sym_SQUOTE] = ACTIONS(3282), - [anon_sym_class] = ACTIONS(3282), - [anon_sym_async] = ACTIONS(3282), - [anon_sym_function] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3282), - [anon_sym_using] = ACTIONS(3282), - [anon_sym_PLUS] = ACTIONS(3282), - [anon_sym_DASH] = ACTIONS(3282), - [anon_sym_SLASH] = ACTIONS(3282), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_TILDE] = ACTIONS(3282), - [anon_sym_void] = ACTIONS(3282), - [anon_sym_delete] = ACTIONS(3282), - [anon_sym_PLUS_PLUS] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3282), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3282), - [sym_number] = ACTIONS(3282), - [sym_private_property_identifier] = ACTIONS(3282), - [sym_this] = ACTIONS(3282), - [sym_super] = ACTIONS(3282), - [sym_true] = ACTIONS(3282), - [sym_false] = ACTIONS(3282), - [sym_null] = ACTIONS(3282), - [sym_undefined] = ACTIONS(3282), - [anon_sym_AT] = ACTIONS(3282), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_readonly] = ACTIONS(3282), - [anon_sym_get] = ACTIONS(3282), - [anon_sym_set] = ACTIONS(3282), - [anon_sym_declare] = ACTIONS(3282), - [anon_sym_public] = ACTIONS(3282), - [anon_sym_private] = ACTIONS(3282), - [anon_sym_protected] = ACTIONS(3282), - [anon_sym_override] = ACTIONS(3282), - [anon_sym_module] = ACTIONS(3282), - [anon_sym_any] = ACTIONS(3282), - [anon_sym_number] = ACTIONS(3282), - [anon_sym_boolean] = ACTIONS(3282), - [anon_sym_string] = ACTIONS(3282), - [anon_sym_symbol] = ACTIONS(3282), - [anon_sym_object] = ACTIONS(3282), - [anon_sym_abstract] = ACTIONS(3282), - [anon_sym_interface] = ACTIONS(3282), - [anon_sym_enum] = ACTIONS(3282), - [sym_html_comment] = ACTIONS(5), - }, - [1381] = { - [sym_comment] = STATE(1381), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1382] = { - [sym_comment] = STATE(1382), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_default] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_case] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym_html_comment] = ACTIONS(5), - }, - [1383] = { - [sym_comment] = STATE(1383), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1384] = { - [sym_comment] = STATE(1384), - [sym_identifier] = ACTIONS(2199), - [anon_sym_export] = ACTIONS(2199), - [anon_sym_default] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2199), - [anon_sym_namespace] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_typeof] = ACTIONS(2199), - [anon_sym_import] = ACTIONS(2199), - [anon_sym_with] = ACTIONS(2199), - [anon_sym_var] = ACTIONS(2199), - [anon_sym_let] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_switch] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_await] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2199), - [anon_sym_do] = ACTIONS(2199), - [anon_sym_try] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_debugger] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_throw] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_case] = ACTIONS(2199), - [anon_sym_yield] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_LTtemplate_GT] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2199), - [anon_sym_SQUOTE] = ACTIONS(2199), - [anon_sym_class] = ACTIONS(2199), - [anon_sym_async] = ACTIONS(2199), - [anon_sym_function] = ACTIONS(2199), - [anon_sym_new] = ACTIONS(2199), - [anon_sym_using] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_SLASH] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_void] = ACTIONS(2199), - [anon_sym_delete] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2199), - [sym_number] = ACTIONS(2199), - [sym_private_property_identifier] = ACTIONS(2199), - [sym_this] = ACTIONS(2199), - [sym_super] = ACTIONS(2199), - [sym_true] = ACTIONS(2199), - [sym_false] = ACTIONS(2199), - [sym_null] = ACTIONS(2199), - [sym_undefined] = ACTIONS(2199), - [anon_sym_AT] = ACTIONS(2199), - [anon_sym_static] = ACTIONS(2199), - [anon_sym_readonly] = ACTIONS(2199), - [anon_sym_get] = ACTIONS(2199), - [anon_sym_set] = ACTIONS(2199), - [anon_sym_declare] = ACTIONS(2199), - [anon_sym_public] = ACTIONS(2199), - [anon_sym_private] = ACTIONS(2199), - [anon_sym_protected] = ACTIONS(2199), - [anon_sym_override] = ACTIONS(2199), - [anon_sym_module] = ACTIONS(2199), - [anon_sym_any] = ACTIONS(2199), - [anon_sym_number] = ACTIONS(2199), - [anon_sym_boolean] = ACTIONS(2199), - [anon_sym_string] = ACTIONS(2199), - [anon_sym_symbol] = ACTIONS(2199), - [anon_sym_object] = ACTIONS(2199), - [anon_sym_abstract] = ACTIONS(2199), - [anon_sym_interface] = ACTIONS(2199), - [anon_sym_enum] = ACTIONS(2199), - [sym_html_comment] = ACTIONS(5), - }, - [1385] = { - [sym_comment] = STATE(1385), - [sym_identifier] = ACTIONS(3284), - [anon_sym_export] = ACTIONS(3284), - [anon_sym_default] = ACTIONS(3284), - [anon_sym_type] = ACTIONS(3284), - [anon_sym_namespace] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3284), - [anon_sym_typeof] = ACTIONS(3284), - [anon_sym_import] = ACTIONS(3284), - [anon_sym_with] = ACTIONS(3284), - [anon_sym_var] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_const] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_switch] = ACTIONS(3284), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_await] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_debugger] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_case] = ACTIONS(3284), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LTtemplate_GT] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_async] = ACTIONS(3284), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_using] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_void] = ACTIONS(3284), - [anon_sym_delete] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_DASH_DASH] = ACTIONS(3284), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3284), - [sym_number] = ACTIONS(3284), - [sym_private_property_identifier] = ACTIONS(3284), - [sym_this] = ACTIONS(3284), - [sym_super] = ACTIONS(3284), - [sym_true] = ACTIONS(3284), - [sym_false] = ACTIONS(3284), - [sym_null] = ACTIONS(3284), - [sym_undefined] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_readonly] = ACTIONS(3284), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_declare] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_module] = ACTIONS(3284), - [anon_sym_any] = ACTIONS(3284), - [anon_sym_number] = ACTIONS(3284), - [anon_sym_boolean] = ACTIONS(3284), - [anon_sym_string] = ACTIONS(3284), - [anon_sym_symbol] = ACTIONS(3284), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_interface] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), - [sym_html_comment] = ACTIONS(5), - }, - [1386] = { - [sym_comment] = STATE(1386), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1387] = { - [sym_comment] = STATE(1387), - [sym_identifier] = ACTIONS(2203), - [anon_sym_export] = ACTIONS(2203), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_namespace] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_typeof] = ACTIONS(2203), - [anon_sym_import] = ACTIONS(2203), - [anon_sym_with] = ACTIONS(2203), - [anon_sym_var] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_switch] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [anon_sym_do] = ACTIONS(2203), - [anon_sym_try] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_debugger] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_throw] = ACTIONS(2203), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_case] = ACTIONS(2203), - [anon_sym_yield] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_LTtemplate_GT] = ACTIONS(2203), - [anon_sym_DQUOTE] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_class] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_function] = ACTIONS(2203), - [anon_sym_new] = ACTIONS(2203), - [anon_sym_using] = ACTIONS(2203), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_SLASH] = ACTIONS(2203), - [anon_sym_LT] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(2203), - [anon_sym_delete] = ACTIONS(2203), - [anon_sym_PLUS_PLUS] = ACTIONS(2203), - [anon_sym_DASH_DASH] = ACTIONS(2203), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2203), - [sym_number] = ACTIONS(2203), - [sym_private_property_identifier] = ACTIONS(2203), - [sym_this] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_true] = ACTIONS(2203), - [sym_false] = ACTIONS(2203), - [sym_null] = ACTIONS(2203), - [sym_undefined] = ACTIONS(2203), - [anon_sym_AT] = ACTIONS(2203), - [anon_sym_static] = ACTIONS(2203), - [anon_sym_readonly] = ACTIONS(2203), - [anon_sym_get] = ACTIONS(2203), - [anon_sym_set] = ACTIONS(2203), - [anon_sym_declare] = ACTIONS(2203), - [anon_sym_public] = ACTIONS(2203), - [anon_sym_private] = ACTIONS(2203), - [anon_sym_protected] = ACTIONS(2203), - [anon_sym_override] = ACTIONS(2203), - [anon_sym_module] = ACTIONS(2203), - [anon_sym_any] = ACTIONS(2203), - [anon_sym_number] = ACTIONS(2203), - [anon_sym_boolean] = ACTIONS(2203), - [anon_sym_string] = ACTIONS(2203), - [anon_sym_symbol] = ACTIONS(2203), - [anon_sym_object] = ACTIONS(2203), - [anon_sym_abstract] = ACTIONS(2203), - [anon_sym_interface] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [sym_html_comment] = ACTIONS(5), - }, - [1388] = { - [sym_comment] = STATE(1388), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1389] = { - [sym_comment] = STATE(1389), - [ts_builtin_sym_end] = ACTIONS(2103), + [1319] = { + [sym_comment] = STATE(1319), + [ts_builtin_sym_end] = ACTIONS(2095), [sym_identifier] = ACTIONS(2067), [anon_sym_export] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), @@ -177536,11 +171451,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2067), [anon_sym_interface] = ACTIONS(2067), [anon_sym_enum] = ACTIONS(2067), - [sym__automatic_semicolon] = ACTIONS(3472), + [sym__automatic_semicolon] = ACTIONS(2319), [sym_html_comment] = ACTIONS(5), }, - [1390] = { - [sym_comment] = STATE(1390), + [1320] = { + [sym_comment] = STATE(1320), [sym_identifier] = ACTIONS(3304), [anon_sym_export] = ACTIONS(3304), [anon_sym_default] = ACTIONS(3304), @@ -177621,910 +171536,1484 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3304), [sym_html_comment] = ACTIONS(5), }, - [1391] = { - [sym_comment] = STATE(1391), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1321] = { + [sym_comment] = STATE(1321), + [sym_identifier] = ACTIONS(3284), + [anon_sym_export] = ACTIONS(3284), + [anon_sym_default] = ACTIONS(3284), + [anon_sym_type] = ACTIONS(3284), + [anon_sym_namespace] = ACTIONS(3284), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_RBRACE] = ACTIONS(3284), + [anon_sym_typeof] = ACTIONS(3284), + [anon_sym_import] = ACTIONS(3284), + [anon_sym_with] = ACTIONS(3284), + [anon_sym_var] = ACTIONS(3284), + [anon_sym_let] = ACTIONS(3284), + [anon_sym_const] = ACTIONS(3284), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3284), + [anon_sym_switch] = ACTIONS(3284), + [anon_sym_for] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3284), + [anon_sym_await] = ACTIONS(3284), + [anon_sym_while] = ACTIONS(3284), + [anon_sym_do] = ACTIONS(3284), + [anon_sym_try] = ACTIONS(3284), + [anon_sym_break] = ACTIONS(3284), + [anon_sym_continue] = ACTIONS(3284), + [anon_sym_debugger] = ACTIONS(3284), + [anon_sym_return] = ACTIONS(3284), + [anon_sym_throw] = ACTIONS(3284), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_case] = ACTIONS(3284), + [anon_sym_yield] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3284), + [anon_sym_LTtemplate_GT] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3284), + [anon_sym_class] = ACTIONS(3284), + [anon_sym_async] = ACTIONS(3284), + [anon_sym_function] = ACTIONS(3284), + [anon_sym_new] = ACTIONS(3284), + [anon_sym_using] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_void] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3284), + [sym_number] = ACTIONS(3284), + [sym_private_property_identifier] = ACTIONS(3284), + [sym_this] = ACTIONS(3284), + [sym_super] = ACTIONS(3284), + [sym_true] = ACTIONS(3284), + [sym_false] = ACTIONS(3284), + [sym_null] = ACTIONS(3284), + [sym_undefined] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3284), + [anon_sym_static] = ACTIONS(3284), + [anon_sym_readonly] = ACTIONS(3284), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3284), + [anon_sym_declare] = ACTIONS(3284), + [anon_sym_public] = ACTIONS(3284), + [anon_sym_private] = ACTIONS(3284), + [anon_sym_protected] = ACTIONS(3284), + [anon_sym_override] = ACTIONS(3284), + [anon_sym_module] = ACTIONS(3284), + [anon_sym_any] = ACTIONS(3284), + [anon_sym_number] = ACTIONS(3284), + [anon_sym_boolean] = ACTIONS(3284), + [anon_sym_string] = ACTIONS(3284), + [anon_sym_symbol] = ACTIONS(3284), + [anon_sym_object] = ACTIONS(3284), + [anon_sym_abstract] = ACTIONS(3284), + [anon_sym_interface] = ACTIONS(3284), + [anon_sym_enum] = ACTIONS(3284), [sym_html_comment] = ACTIONS(5), }, - [1392] = { - [sym_comment] = STATE(1392), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1322] = { + [sym_comment] = STATE(1322), + [ts_builtin_sym_end] = ACTIONS(3484), + [sym_identifier] = ACTIONS(3266), + [anon_sym_export] = ACTIONS(3266), + [anon_sym_type] = ACTIONS(3266), + [anon_sym_namespace] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_typeof] = ACTIONS(3266), + [anon_sym_import] = ACTIONS(3266), + [anon_sym_with] = ACTIONS(3266), + [anon_sym_var] = ACTIONS(3266), + [anon_sym_let] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_else] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_await] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_try] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_debugger] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_throw] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_yield] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_LTtemplate_GT] = ACTIONS(3266), + [anon_sym_DQUOTE] = ACTIONS(3266), + [anon_sym_SQUOTE] = ACTIONS(3266), + [anon_sym_class] = ACTIONS(3266), + [anon_sym_async] = ACTIONS(3266), + [anon_sym_function] = ACTIONS(3266), + [anon_sym_new] = ACTIONS(3266), + [anon_sym_using] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_SLASH] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_void] = ACTIONS(3266), + [anon_sym_delete] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3266), + [sym_number] = ACTIONS(3266), + [sym_private_property_identifier] = ACTIONS(3266), + [sym_this] = ACTIONS(3266), + [sym_super] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_null] = ACTIONS(3266), + [sym_undefined] = ACTIONS(3266), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_readonly] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3266), + [anon_sym_set] = ACTIONS(3266), + [anon_sym_declare] = ACTIONS(3266), + [anon_sym_public] = ACTIONS(3266), + [anon_sym_private] = ACTIONS(3266), + [anon_sym_protected] = ACTIONS(3266), + [anon_sym_override] = ACTIONS(3266), + [anon_sym_module] = ACTIONS(3266), + [anon_sym_any] = ACTIONS(3266), + [anon_sym_number] = ACTIONS(3266), + [anon_sym_boolean] = ACTIONS(3266), + [anon_sym_string] = ACTIONS(3266), + [anon_sym_symbol] = ACTIONS(3266), + [anon_sym_object] = ACTIONS(3266), + [anon_sym_abstract] = ACTIONS(3266), + [anon_sym_interface] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), [sym_html_comment] = ACTIONS(5), }, - [1393] = { - [sym_comment] = STATE(1393), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1323] = { + [sym_comment] = STATE(1323), + [sym_identifier] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(3368), + [anon_sym_default] = ACTIONS(3368), + [anon_sym_type] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_typeof] = ACTIONS(3368), + [anon_sym_import] = ACTIONS(3368), + [anon_sym_with] = ACTIONS(3368), + [anon_sym_var] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_await] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_debugger] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_case] = ACTIONS(3368), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LTtemplate_GT] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3368), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_async] = ACTIONS(3368), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_void] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3368), + [sym_number] = ACTIONS(3368), + [sym_private_property_identifier] = ACTIONS(3368), + [sym_this] = ACTIONS(3368), + [sym_super] = ACTIONS(3368), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [sym_null] = ACTIONS(3368), + [sym_undefined] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_readonly] = ACTIONS(3368), + [anon_sym_get] = ACTIONS(3368), + [anon_sym_set] = ACTIONS(3368), + [anon_sym_declare] = ACTIONS(3368), + [anon_sym_public] = ACTIONS(3368), + [anon_sym_private] = ACTIONS(3368), + [anon_sym_protected] = ACTIONS(3368), + [anon_sym_override] = ACTIONS(3368), + [anon_sym_module] = ACTIONS(3368), + [anon_sym_any] = ACTIONS(3368), + [anon_sym_number] = ACTIONS(3368), + [anon_sym_boolean] = ACTIONS(3368), + [anon_sym_string] = ACTIONS(3368), + [anon_sym_symbol] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_abstract] = ACTIONS(3368), + [anon_sym_interface] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), [sym_html_comment] = ACTIONS(5), }, - [1394] = { - [sym_comment] = STATE(1394), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1324] = { + [sym_comment] = STATE(1324), + [sym_identifier] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(3368), + [anon_sym_default] = ACTIONS(3368), + [anon_sym_type] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_typeof] = ACTIONS(3368), + [anon_sym_import] = ACTIONS(3368), + [anon_sym_with] = ACTIONS(3368), + [anon_sym_var] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_await] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_debugger] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_case] = ACTIONS(3368), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LTtemplate_GT] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3368), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_async] = ACTIONS(3368), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_void] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3368), + [sym_number] = ACTIONS(3368), + [sym_private_property_identifier] = ACTIONS(3368), + [sym_this] = ACTIONS(3368), + [sym_super] = ACTIONS(3368), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [sym_null] = ACTIONS(3368), + [sym_undefined] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_readonly] = ACTIONS(3368), + [anon_sym_get] = ACTIONS(3368), + [anon_sym_set] = ACTIONS(3368), + [anon_sym_declare] = ACTIONS(3368), + [anon_sym_public] = ACTIONS(3368), + [anon_sym_private] = ACTIONS(3368), + [anon_sym_protected] = ACTIONS(3368), + [anon_sym_override] = ACTIONS(3368), + [anon_sym_module] = ACTIONS(3368), + [anon_sym_any] = ACTIONS(3368), + [anon_sym_number] = ACTIONS(3368), + [anon_sym_boolean] = ACTIONS(3368), + [anon_sym_string] = ACTIONS(3368), + [anon_sym_symbol] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_abstract] = ACTIONS(3368), + [anon_sym_interface] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), [sym_html_comment] = ACTIONS(5), }, - [1395] = { - [sym_comment] = STATE(1395), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1325] = { + [sym_comment] = STATE(1325), + [sym_identifier] = ACTIONS(3366), + [anon_sym_export] = ACTIONS(3366), + [anon_sym_default] = ACTIONS(3366), + [anon_sym_type] = ACTIONS(3366), + [anon_sym_namespace] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_typeof] = ACTIONS(3366), + [anon_sym_import] = ACTIONS(3366), + [anon_sym_with] = ACTIONS(3366), + [anon_sym_var] = ACTIONS(3366), + [anon_sym_let] = ACTIONS(3366), + [anon_sym_const] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_switch] = ACTIONS(3366), + [anon_sym_for] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3366), + [anon_sym_await] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_do] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_debugger] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3366), + [anon_sym_case] = ACTIONS(3366), + [anon_sym_yield] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3366), + [anon_sym_LTtemplate_GT] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3366), + [anon_sym_class] = ACTIONS(3366), + [anon_sym_async] = ACTIONS(3366), + [anon_sym_function] = ACTIONS(3366), + [anon_sym_new] = ACTIONS(3366), + [anon_sym_using] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_void] = ACTIONS(3366), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_DASH_DASH] = ACTIONS(3366), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3366), + [sym_number] = ACTIONS(3366), + [sym_private_property_identifier] = ACTIONS(3366), + [sym_this] = ACTIONS(3366), + [sym_super] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_null] = ACTIONS(3366), + [sym_undefined] = ACTIONS(3366), + [anon_sym_AT] = ACTIONS(3366), + [anon_sym_static] = ACTIONS(3366), + [anon_sym_readonly] = ACTIONS(3366), + [anon_sym_get] = ACTIONS(3366), + [anon_sym_set] = ACTIONS(3366), + [anon_sym_declare] = ACTIONS(3366), + [anon_sym_public] = ACTIONS(3366), + [anon_sym_private] = ACTIONS(3366), + [anon_sym_protected] = ACTIONS(3366), + [anon_sym_override] = ACTIONS(3366), + [anon_sym_module] = ACTIONS(3366), + [anon_sym_any] = ACTIONS(3366), + [anon_sym_number] = ACTIONS(3366), + [anon_sym_boolean] = ACTIONS(3366), + [anon_sym_string] = ACTIONS(3366), + [anon_sym_symbol] = ACTIONS(3366), + [anon_sym_object] = ACTIONS(3366), + [anon_sym_abstract] = ACTIONS(3366), + [anon_sym_interface] = ACTIONS(3366), + [anon_sym_enum] = ACTIONS(3366), [sym_html_comment] = ACTIONS(5), }, - [1396] = { - [sym_comment] = STATE(1396), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1326] = { + [sym_comment] = STATE(1326), + [sym_identifier] = ACTIONS(3148), + [anon_sym_export] = ACTIONS(3148), + [anon_sym_default] = ACTIONS(3148), + [anon_sym_type] = ACTIONS(3148), + [anon_sym_namespace] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3148), + [anon_sym_import] = ACTIONS(3148), + [anon_sym_with] = ACTIONS(3148), + [anon_sym_var] = ACTIONS(3148), + [anon_sym_let] = ACTIONS(3148), + [anon_sym_const] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_switch] = ACTIONS(3148), + [anon_sym_for] = ACTIONS(3148), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_do] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_debugger] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3148), + [anon_sym_yield] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LTtemplate_GT] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_async] = ACTIONS(3148), + [anon_sym_function] = ACTIONS(3148), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_using] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3148), + [anon_sym_delete] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_private_property_identifier] = ACTIONS(3148), + [sym_this] = ACTIONS(3148), + [sym_super] = ACTIONS(3148), + [sym_true] = ACTIONS(3148), + [sym_false] = ACTIONS(3148), + [sym_null] = ACTIONS(3148), + [sym_undefined] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3148), + [anon_sym_readonly] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_declare] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_override] = ACTIONS(3148), + [anon_sym_module] = ACTIONS(3148), + [anon_sym_any] = ACTIONS(3148), + [anon_sym_number] = ACTIONS(3148), + [anon_sym_boolean] = ACTIONS(3148), + [anon_sym_string] = ACTIONS(3148), + [anon_sym_symbol] = ACTIONS(3148), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_abstract] = ACTIONS(3148), + [anon_sym_interface] = ACTIONS(3148), + [anon_sym_enum] = ACTIONS(3148), [sym_html_comment] = ACTIONS(5), }, - [1397] = { - [sym_comment] = STATE(1397), - [sym_identifier] = ACTIONS(3328), - [anon_sym_export] = ACTIONS(3328), - [anon_sym_default] = ACTIONS(3328), - [anon_sym_type] = ACTIONS(3328), - [anon_sym_namespace] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [anon_sym_RBRACE] = ACTIONS(3328), - [anon_sym_typeof] = ACTIONS(3328), - [anon_sym_import] = ACTIONS(3328), - [anon_sym_with] = ACTIONS(3328), - [anon_sym_var] = ACTIONS(3328), - [anon_sym_let] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_switch] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3328), - [anon_sym_await] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_try] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_debugger] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_throw] = ACTIONS(3328), - [anon_sym_SEMI] = ACTIONS(3328), - [anon_sym_case] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_LTtemplate_GT] = ACTIONS(3328), - [anon_sym_DQUOTE] = ACTIONS(3328), - [anon_sym_SQUOTE] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3328), - [anon_sym_using] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_void] = ACTIONS(3328), - [anon_sym_delete] = ACTIONS(3328), - [anon_sym_PLUS_PLUS] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3328), + [1327] = { + [sym_comment] = STATE(1327), + [sym_identifier] = ACTIONS(2149), + [anon_sym_export] = ACTIONS(2149), + [anon_sym_default] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2149), + [anon_sym_typeof] = ACTIONS(2149), + [anon_sym_import] = ACTIONS(2149), + [anon_sym_with] = ACTIONS(2149), + [anon_sym_var] = ACTIONS(2149), + [anon_sym_let] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_switch] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [anon_sym_do] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_debugger] = ACTIONS(2149), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_throw] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(2149), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_LTtemplate_GT] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(2149), + [anon_sym_class] = ACTIONS(2149), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_function] = ACTIONS(2149), + [anon_sym_new] = ACTIONS(2149), + [anon_sym_using] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_SLASH] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_TILDE] = ACTIONS(2149), + [anon_sym_void] = ACTIONS(2149), + [anon_sym_delete] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2149), + [anon_sym_DASH_DASH] = ACTIONS(2149), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3328), - [sym_number] = ACTIONS(3328), - [sym_private_property_identifier] = ACTIONS(3328), - [sym_this] = ACTIONS(3328), - [sym_super] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_null] = ACTIONS(3328), - [sym_undefined] = ACTIONS(3328), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_readonly] = ACTIONS(3328), - [anon_sym_get] = ACTIONS(3328), - [anon_sym_set] = ACTIONS(3328), - [anon_sym_declare] = ACTIONS(3328), - [anon_sym_public] = ACTIONS(3328), - [anon_sym_private] = ACTIONS(3328), - [anon_sym_protected] = ACTIONS(3328), - [anon_sym_override] = ACTIONS(3328), - [anon_sym_module] = ACTIONS(3328), - [anon_sym_any] = ACTIONS(3328), - [anon_sym_number] = ACTIONS(3328), - [anon_sym_boolean] = ACTIONS(3328), - [anon_sym_string] = ACTIONS(3328), - [anon_sym_symbol] = ACTIONS(3328), - [anon_sym_object] = ACTIONS(3328), - [anon_sym_abstract] = ACTIONS(3328), - [anon_sym_interface] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), + [anon_sym_BQUOTE] = ACTIONS(2149), + [sym_number] = ACTIONS(2149), + [sym_private_property_identifier] = ACTIONS(2149), + [sym_this] = ACTIONS(2149), + [sym_super] = ACTIONS(2149), + [sym_true] = ACTIONS(2149), + [sym_false] = ACTIONS(2149), + [sym_null] = ACTIONS(2149), + [sym_undefined] = ACTIONS(2149), + [anon_sym_AT] = ACTIONS(2149), + [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_abstract] = ACTIONS(2149), + [anon_sym_interface] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), [sym_html_comment] = ACTIONS(5), }, - [1398] = { - [sym_comment] = STATE(1398), - [sym_identifier] = ACTIONS(3330), - [anon_sym_export] = ACTIONS(3330), - [anon_sym_default] = ACTIONS(3330), - [anon_sym_type] = ACTIONS(3330), - [anon_sym_namespace] = ACTIONS(3330), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_typeof] = ACTIONS(3330), - [anon_sym_import] = ACTIONS(3330), - [anon_sym_with] = ACTIONS(3330), - [anon_sym_var] = ACTIONS(3330), - [anon_sym_let] = ACTIONS(3330), - [anon_sym_const] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_if] = ACTIONS(3330), - [anon_sym_switch] = ACTIONS(3330), - [anon_sym_for] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_await] = ACTIONS(3330), - [anon_sym_while] = ACTIONS(3330), - [anon_sym_do] = ACTIONS(3330), - [anon_sym_try] = ACTIONS(3330), - [anon_sym_break] = ACTIONS(3330), - [anon_sym_continue] = ACTIONS(3330), - [anon_sym_debugger] = ACTIONS(3330), - [anon_sym_return] = ACTIONS(3330), - [anon_sym_throw] = ACTIONS(3330), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym_case] = ACTIONS(3330), - [anon_sym_yield] = ACTIONS(3330), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_LTtemplate_GT] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_class] = ACTIONS(3330), - [anon_sym_async] = ACTIONS(3330), - [anon_sym_function] = ACTIONS(3330), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_using] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_void] = ACTIONS(3330), - [anon_sym_delete] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3330), - [sym_number] = ACTIONS(3330), - [sym_private_property_identifier] = ACTIONS(3330), - [sym_this] = ACTIONS(3330), - [sym_super] = ACTIONS(3330), - [sym_true] = ACTIONS(3330), - [sym_false] = ACTIONS(3330), - [sym_null] = ACTIONS(3330), - [sym_undefined] = ACTIONS(3330), - [anon_sym_AT] = ACTIONS(3330), - [anon_sym_static] = ACTIONS(3330), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3330), - [anon_sym_set] = ACTIONS(3330), - [anon_sym_declare] = ACTIONS(3330), - [anon_sym_public] = ACTIONS(3330), - [anon_sym_private] = ACTIONS(3330), - [anon_sym_protected] = ACTIONS(3330), - [anon_sym_override] = ACTIONS(3330), - [anon_sym_module] = ACTIONS(3330), - [anon_sym_any] = ACTIONS(3330), - [anon_sym_number] = ACTIONS(3330), - [anon_sym_boolean] = ACTIONS(3330), - [anon_sym_string] = ACTIONS(3330), - [anon_sym_symbol] = ACTIONS(3330), - [anon_sym_object] = ACTIONS(3330), - [anon_sym_abstract] = ACTIONS(3330), - [anon_sym_interface] = ACTIONS(3330), - [anon_sym_enum] = ACTIONS(3330), + [1328] = { + [sym_comment] = STATE(1328), + [ts_builtin_sym_end] = ACTIONS(3486), + [sym_identifier] = ACTIONS(3306), + [anon_sym_export] = ACTIONS(3306), + [anon_sym_type] = ACTIONS(3306), + [anon_sym_namespace] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_RBRACE] = ACTIONS(3306), + [anon_sym_typeof] = ACTIONS(3306), + [anon_sym_import] = ACTIONS(3306), + [anon_sym_with] = ACTIONS(3306), + [anon_sym_var] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_else] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_switch] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_await] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_break] = ACTIONS(3306), + [anon_sym_continue] = ACTIONS(3306), + [anon_sym_debugger] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_throw] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LTtemplate_GT] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_SQUOTE] = ACTIONS(3306), + [anon_sym_class] = ACTIONS(3306), + [anon_sym_async] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_using] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_SLASH] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_void] = ACTIONS(3306), + [anon_sym_delete] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_DASH_DASH] = ACTIONS(3306), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3306), + [sym_number] = ACTIONS(3306), + [sym_private_property_identifier] = ACTIONS(3306), + [sym_this] = ACTIONS(3306), + [sym_super] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_null] = ACTIONS(3306), + [sym_undefined] = ACTIONS(3306), + [anon_sym_AT] = ACTIONS(3306), + [anon_sym_static] = ACTIONS(3306), + [anon_sym_readonly] = ACTIONS(3306), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3306), + [anon_sym_declare] = ACTIONS(3306), + [anon_sym_public] = ACTIONS(3306), + [anon_sym_private] = ACTIONS(3306), + [anon_sym_protected] = ACTIONS(3306), + [anon_sym_override] = ACTIONS(3306), + [anon_sym_module] = ACTIONS(3306), + [anon_sym_any] = ACTIONS(3306), + [anon_sym_number] = ACTIONS(3306), + [anon_sym_boolean] = ACTIONS(3306), + [anon_sym_string] = ACTIONS(3306), + [anon_sym_symbol] = ACTIONS(3306), + [anon_sym_object] = ACTIONS(3306), + [anon_sym_abstract] = ACTIONS(3306), + [anon_sym_interface] = ACTIONS(3306), + [anon_sym_enum] = ACTIONS(3306), [sym_html_comment] = ACTIONS(5), }, - [1399] = { - [sym_comment] = STATE(1399), - [sym_identifier] = ACTIONS(3330), - [anon_sym_export] = ACTIONS(3330), - [anon_sym_default] = ACTIONS(3330), - [anon_sym_type] = ACTIONS(3330), - [anon_sym_namespace] = ACTIONS(3330), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_typeof] = ACTIONS(3330), - [anon_sym_import] = ACTIONS(3330), - [anon_sym_with] = ACTIONS(3330), - [anon_sym_var] = ACTIONS(3330), - [anon_sym_let] = ACTIONS(3330), - [anon_sym_const] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_if] = ACTIONS(3330), - [anon_sym_switch] = ACTIONS(3330), - [anon_sym_for] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_await] = ACTIONS(3330), - [anon_sym_while] = ACTIONS(3330), - [anon_sym_do] = ACTIONS(3330), - [anon_sym_try] = ACTIONS(3330), - [anon_sym_break] = ACTIONS(3330), - [anon_sym_continue] = ACTIONS(3330), - [anon_sym_debugger] = ACTIONS(3330), - [anon_sym_return] = ACTIONS(3330), - [anon_sym_throw] = ACTIONS(3330), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym_case] = ACTIONS(3330), - [anon_sym_yield] = ACTIONS(3330), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_LTtemplate_GT] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_class] = ACTIONS(3330), - [anon_sym_async] = ACTIONS(3330), - [anon_sym_function] = ACTIONS(3330), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_using] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_void] = ACTIONS(3330), - [anon_sym_delete] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), + [1329] = { + [sym_comment] = STATE(1329), + [ts_builtin_sym_end] = ACTIONS(3488), + [sym_identifier] = ACTIONS(3296), + [anon_sym_export] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3296), + [anon_sym_namespace] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_typeof] = ACTIONS(3296), + [anon_sym_import] = ACTIONS(3296), + [anon_sym_with] = ACTIONS(3296), + [anon_sym_var] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_const] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_switch] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_await] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_debugger] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LTtemplate_GT] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_class] = ACTIONS(3296), + [anon_sym_async] = ACTIONS(3296), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_using] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_void] = ACTIONS(3296), + [anon_sym_delete] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DASH_DASH] = ACTIONS(3296), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3330), - [sym_number] = ACTIONS(3330), - [sym_private_property_identifier] = ACTIONS(3330), - [sym_this] = ACTIONS(3330), - [sym_super] = ACTIONS(3330), - [sym_true] = ACTIONS(3330), - [sym_false] = ACTIONS(3330), - [sym_null] = ACTIONS(3330), - [sym_undefined] = ACTIONS(3330), - [anon_sym_AT] = ACTIONS(3330), - [anon_sym_static] = ACTIONS(3330), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3330), - [anon_sym_set] = ACTIONS(3330), - [anon_sym_declare] = ACTIONS(3330), - [anon_sym_public] = ACTIONS(3330), - [anon_sym_private] = ACTIONS(3330), - [anon_sym_protected] = ACTIONS(3330), - [anon_sym_override] = ACTIONS(3330), - [anon_sym_module] = ACTIONS(3330), - [anon_sym_any] = ACTIONS(3330), - [anon_sym_number] = ACTIONS(3330), - [anon_sym_boolean] = ACTIONS(3330), - [anon_sym_string] = ACTIONS(3330), - [anon_sym_symbol] = ACTIONS(3330), - [anon_sym_object] = ACTIONS(3330), - [anon_sym_abstract] = ACTIONS(3330), - [anon_sym_interface] = ACTIONS(3330), - [anon_sym_enum] = ACTIONS(3330), + [anon_sym_BQUOTE] = ACTIONS(3296), + [sym_number] = ACTIONS(3296), + [sym_private_property_identifier] = ACTIONS(3296), + [sym_this] = ACTIONS(3296), + [sym_super] = ACTIONS(3296), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_null] = ACTIONS(3296), + [sym_undefined] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_static] = ACTIONS(3296), + [anon_sym_readonly] = ACTIONS(3296), + [anon_sym_get] = ACTIONS(3296), + [anon_sym_set] = ACTIONS(3296), + [anon_sym_declare] = ACTIONS(3296), + [anon_sym_public] = ACTIONS(3296), + [anon_sym_private] = ACTIONS(3296), + [anon_sym_protected] = ACTIONS(3296), + [anon_sym_override] = ACTIONS(3296), + [anon_sym_module] = ACTIONS(3296), + [anon_sym_any] = ACTIONS(3296), + [anon_sym_number] = ACTIONS(3296), + [anon_sym_boolean] = ACTIONS(3296), + [anon_sym_string] = ACTIONS(3296), + [anon_sym_symbol] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_abstract] = ACTIONS(3296), + [anon_sym_interface] = ACTIONS(3296), + [anon_sym_enum] = ACTIONS(3296), [sym_html_comment] = ACTIONS(5), }, - [1400] = { - [sym_comment] = STATE(1400), - [ts_builtin_sym_end] = ACTIONS(2253), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_namespace] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_typeof] = ACTIONS(2251), - [anon_sym_import] = ACTIONS(2251), - [anon_sym_with] = ACTIONS(2251), - [anon_sym_var] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_else] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_debugger] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_throw] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_LTtemplate_GT] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_using] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_void] = ACTIONS(2251), - [anon_sym_delete] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), + [1330] = { + [sym_comment] = STATE(1330), + [ts_builtin_sym_end] = ACTIONS(3200), + [sym_identifier] = ACTIONS(3100), + [anon_sym_export] = ACTIONS(3100), + [anon_sym_type] = ACTIONS(3100), + [anon_sym_namespace] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3100), + [anon_sym_RBRACE] = ACTIONS(3100), + [anon_sym_typeof] = ACTIONS(3100), + [anon_sym_import] = ACTIONS(3100), + [anon_sym_with] = ACTIONS(3100), + [anon_sym_var] = ACTIONS(3100), + [anon_sym_let] = ACTIONS(3100), + [anon_sym_const] = ACTIONS(3100), + [anon_sym_BANG] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_switch] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3100), + [anon_sym_await] = ACTIONS(3100), + [anon_sym_while] = ACTIONS(3100), + [anon_sym_do] = ACTIONS(3100), + [anon_sym_try] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_debugger] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_throw] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3100), + [anon_sym_finally] = ACTIONS(3100), + [anon_sym_yield] = ACTIONS(3100), + [anon_sym_LBRACK] = ACTIONS(3100), + [anon_sym_LTtemplate_GT] = ACTIONS(3100), + [anon_sym_DQUOTE] = ACTIONS(3100), + [anon_sym_SQUOTE] = ACTIONS(3100), + [anon_sym_class] = ACTIONS(3100), + [anon_sym_async] = ACTIONS(3100), + [anon_sym_function] = ACTIONS(3100), + [anon_sym_new] = ACTIONS(3100), + [anon_sym_using] = ACTIONS(3100), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_LT] = ACTIONS(3100), + [anon_sym_TILDE] = ACTIONS(3100), + [anon_sym_void] = ACTIONS(3100), + [anon_sym_delete] = ACTIONS(3100), + [anon_sym_PLUS_PLUS] = ACTIONS(3100), + [anon_sym_DASH_DASH] = ACTIONS(3100), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2251), - [sym_number] = ACTIONS(2251), - [sym_private_property_identifier] = ACTIONS(2251), - [sym_this] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_undefined] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_readonly] = ACTIONS(2251), - [anon_sym_get] = ACTIONS(2251), - [anon_sym_set] = ACTIONS(2251), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_public] = ACTIONS(2251), - [anon_sym_private] = ACTIONS(2251), - [anon_sym_protected] = ACTIONS(2251), - [anon_sym_override] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_any] = ACTIONS(2251), - [anon_sym_number] = ACTIONS(2251), - [anon_sym_boolean] = ACTIONS(2251), - [anon_sym_string] = ACTIONS(2251), - [anon_sym_symbol] = ACTIONS(2251), - [anon_sym_object] = ACTIONS(2251), - [anon_sym_abstract] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), + [anon_sym_BQUOTE] = ACTIONS(3100), + [sym_number] = ACTIONS(3100), + [sym_private_property_identifier] = ACTIONS(3100), + [sym_this] = ACTIONS(3100), + [sym_super] = ACTIONS(3100), + [sym_true] = ACTIONS(3100), + [sym_false] = ACTIONS(3100), + [sym_null] = ACTIONS(3100), + [sym_undefined] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(3100), + [anon_sym_static] = ACTIONS(3100), + [anon_sym_readonly] = ACTIONS(3100), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_declare] = ACTIONS(3100), + [anon_sym_public] = ACTIONS(3100), + [anon_sym_private] = ACTIONS(3100), + [anon_sym_protected] = ACTIONS(3100), + [anon_sym_override] = ACTIONS(3100), + [anon_sym_module] = ACTIONS(3100), + [anon_sym_any] = ACTIONS(3100), + [anon_sym_number] = ACTIONS(3100), + [anon_sym_boolean] = ACTIONS(3100), + [anon_sym_string] = ACTIONS(3100), + [anon_sym_symbol] = ACTIONS(3100), + [anon_sym_object] = ACTIONS(3100), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_interface] = ACTIONS(3100), + [anon_sym_enum] = ACTIONS(3100), [sym_html_comment] = ACTIONS(5), }, - [1401] = { - [sym_comment] = STATE(1401), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1331] = { + [sym_comment] = STATE(1331), + [ts_builtin_sym_end] = ACTIONS(3490), + [sym_identifier] = ACTIONS(3298), + [anon_sym_export] = ACTIONS(3298), + [anon_sym_type] = ACTIONS(3298), + [anon_sym_namespace] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_typeof] = ACTIONS(3298), + [anon_sym_import] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3298), + [anon_sym_var] = ACTIONS(3298), + [anon_sym_let] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3298), + [anon_sym_else] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_switch] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_await] = ACTIONS(3298), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_do] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3298), + [anon_sym_break] = ACTIONS(3298), + [anon_sym_continue] = ACTIONS(3298), + [anon_sym_debugger] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3298), + [anon_sym_throw] = ACTIONS(3298), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_LTtemplate_GT] = ACTIONS(3298), + [anon_sym_DQUOTE] = ACTIONS(3298), + [anon_sym_SQUOTE] = ACTIONS(3298), + [anon_sym_class] = ACTIONS(3298), + [anon_sym_async] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3298), + [anon_sym_using] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3298), + [anon_sym_void] = ACTIONS(3298), + [anon_sym_delete] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3298), + [sym_number] = ACTIONS(3298), + [sym_private_property_identifier] = ACTIONS(3298), + [sym_this] = ACTIONS(3298), + [sym_super] = ACTIONS(3298), + [sym_true] = ACTIONS(3298), + [sym_false] = ACTIONS(3298), + [sym_null] = ACTIONS(3298), + [sym_undefined] = ACTIONS(3298), + [anon_sym_AT] = ACTIONS(3298), + [anon_sym_static] = ACTIONS(3298), + [anon_sym_readonly] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3298), + [anon_sym_set] = ACTIONS(3298), + [anon_sym_declare] = ACTIONS(3298), + [anon_sym_public] = ACTIONS(3298), + [anon_sym_private] = ACTIONS(3298), + [anon_sym_protected] = ACTIONS(3298), + [anon_sym_override] = ACTIONS(3298), + [anon_sym_module] = ACTIONS(3298), + [anon_sym_any] = ACTIONS(3298), + [anon_sym_number] = ACTIONS(3298), + [anon_sym_boolean] = ACTIONS(3298), + [anon_sym_string] = ACTIONS(3298), + [anon_sym_symbol] = ACTIONS(3298), + [anon_sym_object] = ACTIONS(3298), + [anon_sym_abstract] = ACTIONS(3298), + [anon_sym_interface] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), [sym_html_comment] = ACTIONS(5), }, - [1402] = { - [sym_comment] = STATE(1402), + [1332] = { + [sym_comment] = STATE(1332), + [ts_builtin_sym_end] = ACTIONS(3492), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_else] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [anon_sym_module] = ACTIONS(3302), + [anon_sym_any] = ACTIONS(3302), + [anon_sym_number] = ACTIONS(3302), + [anon_sym_boolean] = ACTIONS(3302), + [anon_sym_string] = ACTIONS(3302), + [anon_sym_symbol] = ACTIONS(3302), + [anon_sym_object] = ACTIONS(3302), + [anon_sym_abstract] = ACTIONS(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [sym_html_comment] = ACTIONS(5), + }, + [1333] = { + [sym_comment] = STATE(1333), + [sym_identifier] = ACTIONS(3220), + [anon_sym_export] = ACTIONS(3220), + [anon_sym_default] = ACTIONS(3220), + [anon_sym_type] = ACTIONS(3220), + [anon_sym_namespace] = ACTIONS(3220), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3220), + [anon_sym_typeof] = ACTIONS(3220), + [anon_sym_import] = ACTIONS(3220), + [anon_sym_with] = ACTIONS(3220), + [anon_sym_var] = ACTIONS(3220), + [anon_sym_let] = ACTIONS(3220), + [anon_sym_const] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3220), + [anon_sym_switch] = ACTIONS(3220), + [anon_sym_for] = ACTIONS(3220), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_await] = ACTIONS(3220), + [anon_sym_while] = ACTIONS(3220), + [anon_sym_do] = ACTIONS(3220), + [anon_sym_try] = ACTIONS(3220), + [anon_sym_break] = ACTIONS(3220), + [anon_sym_continue] = ACTIONS(3220), + [anon_sym_debugger] = ACTIONS(3220), + [anon_sym_return] = ACTIONS(3220), + [anon_sym_throw] = ACTIONS(3220), + [anon_sym_SEMI] = ACTIONS(3220), + [anon_sym_case] = ACTIONS(3220), + [anon_sym_yield] = ACTIONS(3220), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_LTtemplate_GT] = ACTIONS(3220), + [anon_sym_DQUOTE] = ACTIONS(3220), + [anon_sym_SQUOTE] = ACTIONS(3220), + [anon_sym_class] = ACTIONS(3220), + [anon_sym_async] = ACTIONS(3220), + [anon_sym_function] = ACTIONS(3220), + [anon_sym_new] = ACTIONS(3220), + [anon_sym_using] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_SLASH] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(3220), + [anon_sym_TILDE] = ACTIONS(3220), + [anon_sym_void] = ACTIONS(3220), + [anon_sym_delete] = ACTIONS(3220), + [anon_sym_PLUS_PLUS] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3220), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3220), + [sym_number] = ACTIONS(3220), + [sym_private_property_identifier] = ACTIONS(3220), + [sym_this] = ACTIONS(3220), + [sym_super] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_null] = ACTIONS(3220), + [sym_undefined] = ACTIONS(3220), + [anon_sym_AT] = ACTIONS(3220), + [anon_sym_static] = ACTIONS(3220), + [anon_sym_readonly] = ACTIONS(3220), + [anon_sym_get] = ACTIONS(3220), + [anon_sym_set] = ACTIONS(3220), + [anon_sym_declare] = ACTIONS(3220), + [anon_sym_public] = ACTIONS(3220), + [anon_sym_private] = ACTIONS(3220), + [anon_sym_protected] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3220), + [anon_sym_module] = ACTIONS(3220), + [anon_sym_any] = ACTIONS(3220), + [anon_sym_number] = ACTIONS(3220), + [anon_sym_boolean] = ACTIONS(3220), + [anon_sym_string] = ACTIONS(3220), + [anon_sym_symbol] = ACTIONS(3220), + [anon_sym_object] = ACTIONS(3220), + [anon_sym_abstract] = ACTIONS(3220), + [anon_sym_interface] = ACTIONS(3220), + [anon_sym_enum] = ACTIONS(3220), + [sym_html_comment] = ACTIONS(5), + }, + [1334] = { + [sym_comment] = STATE(1334), + [sym_identifier] = ACTIONS(3218), + [anon_sym_export] = ACTIONS(3218), + [anon_sym_default] = ACTIONS(3218), + [anon_sym_type] = ACTIONS(3218), + [anon_sym_namespace] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_typeof] = ACTIONS(3218), + [anon_sym_import] = ACTIONS(3218), + [anon_sym_with] = ACTIONS(3218), + [anon_sym_var] = ACTIONS(3218), + [anon_sym_let] = ACTIONS(3218), + [anon_sym_const] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_switch] = ACTIONS(3218), + [anon_sym_for] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3218), + [anon_sym_await] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_do] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_debugger] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_case] = ACTIONS(3218), + [anon_sym_yield] = ACTIONS(3218), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_LTtemplate_GT] = ACTIONS(3218), + [anon_sym_DQUOTE] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3218), + [anon_sym_class] = ACTIONS(3218), + [anon_sym_async] = ACTIONS(3218), + [anon_sym_function] = ACTIONS(3218), + [anon_sym_new] = ACTIONS(3218), + [anon_sym_using] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_void] = ACTIONS(3218), + [anon_sym_delete] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3218), + [sym_number] = ACTIONS(3218), + [sym_private_property_identifier] = ACTIONS(3218), + [sym_this] = ACTIONS(3218), + [sym_super] = ACTIONS(3218), + [sym_true] = ACTIONS(3218), + [sym_false] = ACTIONS(3218), + [sym_null] = ACTIONS(3218), + [sym_undefined] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3218), + [anon_sym_static] = ACTIONS(3218), + [anon_sym_readonly] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_declare] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_module] = ACTIONS(3218), + [anon_sym_any] = ACTIONS(3218), + [anon_sym_number] = ACTIONS(3218), + [anon_sym_boolean] = ACTIONS(3218), + [anon_sym_string] = ACTIONS(3218), + [anon_sym_symbol] = ACTIONS(3218), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_interface] = ACTIONS(3218), + [anon_sym_enum] = ACTIONS(3218), + [sym_html_comment] = ACTIONS(5), + }, + [1335] = { + [sym_comment] = STATE(1335), + [sym_identifier] = ACTIONS(3358), + [anon_sym_export] = ACTIONS(3358), + [anon_sym_default] = ACTIONS(3358), + [anon_sym_type] = ACTIONS(3358), + [anon_sym_namespace] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_RBRACE] = ACTIONS(3358), + [anon_sym_typeof] = ACTIONS(3358), + [anon_sym_import] = ACTIONS(3358), + [anon_sym_with] = ACTIONS(3358), + [anon_sym_var] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3358), + [anon_sym_const] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_switch] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_await] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_debugger] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3358), + [anon_sym_case] = ACTIONS(3358), + [anon_sym_yield] = ACTIONS(3358), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_LTtemplate_GT] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3358), + [anon_sym_class] = ACTIONS(3358), + [anon_sym_async] = ACTIONS(3358), + [anon_sym_function] = ACTIONS(3358), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_using] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_void] = ACTIONS(3358), + [anon_sym_delete] = ACTIONS(3358), + [anon_sym_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3358), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3358), + [sym_number] = ACTIONS(3358), + [sym_private_property_identifier] = ACTIONS(3358), + [sym_this] = ACTIONS(3358), + [sym_super] = ACTIONS(3358), + [sym_true] = ACTIONS(3358), + [sym_false] = ACTIONS(3358), + [sym_null] = ACTIONS(3358), + [sym_undefined] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3358), + [anon_sym_static] = ACTIONS(3358), + [anon_sym_readonly] = ACTIONS(3358), + [anon_sym_get] = ACTIONS(3358), + [anon_sym_set] = ACTIONS(3358), + [anon_sym_declare] = ACTIONS(3358), + [anon_sym_public] = ACTIONS(3358), + [anon_sym_private] = ACTIONS(3358), + [anon_sym_protected] = ACTIONS(3358), + [anon_sym_override] = ACTIONS(3358), + [anon_sym_module] = ACTIONS(3358), + [anon_sym_any] = ACTIONS(3358), + [anon_sym_number] = ACTIONS(3358), + [anon_sym_boolean] = ACTIONS(3358), + [anon_sym_string] = ACTIONS(3358), + [anon_sym_symbol] = ACTIONS(3358), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_abstract] = ACTIONS(3358), + [anon_sym_interface] = ACTIONS(3358), + [anon_sym_enum] = ACTIONS(3358), + [sym_html_comment] = ACTIONS(5), + }, + [1336] = { + [sym_comment] = STATE(1336), + [sym_identifier] = ACTIONS(3356), + [anon_sym_export] = ACTIONS(3356), + [anon_sym_default] = ACTIONS(3356), + [anon_sym_type] = ACTIONS(3356), + [anon_sym_namespace] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_typeof] = ACTIONS(3356), + [anon_sym_import] = ACTIONS(3356), + [anon_sym_with] = ACTIONS(3356), + [anon_sym_var] = ACTIONS(3356), + [anon_sym_let] = ACTIONS(3356), + [anon_sym_const] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_switch] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_await] = ACTIONS(3356), + [anon_sym_while] = ACTIONS(3356), + [anon_sym_do] = ACTIONS(3356), + [anon_sym_try] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_debugger] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_throw] = ACTIONS(3356), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_case] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LTtemplate_GT] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_class] = ACTIONS(3356), + [anon_sym_async] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3356), + [anon_sym_new] = ACTIONS(3356), + [anon_sym_using] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_void] = ACTIONS(3356), + [anon_sym_delete] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3356), + [sym_number] = ACTIONS(3356), + [sym_private_property_identifier] = ACTIONS(3356), + [sym_this] = ACTIONS(3356), + [sym_super] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_null] = ACTIONS(3356), + [sym_undefined] = ACTIONS(3356), + [anon_sym_AT] = ACTIONS(3356), + [anon_sym_static] = ACTIONS(3356), + [anon_sym_readonly] = ACTIONS(3356), + [anon_sym_get] = ACTIONS(3356), + [anon_sym_set] = ACTIONS(3356), + [anon_sym_declare] = ACTIONS(3356), + [anon_sym_public] = ACTIONS(3356), + [anon_sym_private] = ACTIONS(3356), + [anon_sym_protected] = ACTIONS(3356), + [anon_sym_override] = ACTIONS(3356), + [anon_sym_module] = ACTIONS(3356), + [anon_sym_any] = ACTIONS(3356), + [anon_sym_number] = ACTIONS(3356), + [anon_sym_boolean] = ACTIONS(3356), + [anon_sym_string] = ACTIONS(3356), + [anon_sym_symbol] = ACTIONS(3356), + [anon_sym_object] = ACTIONS(3356), + [anon_sym_abstract] = ACTIONS(3356), + [anon_sym_interface] = ACTIONS(3356), + [anon_sym_enum] = ACTIONS(3356), + [sym_html_comment] = ACTIONS(5), + }, + [1337] = { + [sym_comment] = STATE(1337), + [sym_identifier] = ACTIONS(3356), + [anon_sym_export] = ACTIONS(3356), + [anon_sym_default] = ACTIONS(3356), + [anon_sym_type] = ACTIONS(3356), + [anon_sym_namespace] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_typeof] = ACTIONS(3356), + [anon_sym_import] = ACTIONS(3356), + [anon_sym_with] = ACTIONS(3356), + [anon_sym_var] = ACTIONS(3356), + [anon_sym_let] = ACTIONS(3356), + [anon_sym_const] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_switch] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_await] = ACTIONS(3356), + [anon_sym_while] = ACTIONS(3356), + [anon_sym_do] = ACTIONS(3356), + [anon_sym_try] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_debugger] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_throw] = ACTIONS(3356), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_case] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LTtemplate_GT] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_class] = ACTIONS(3356), + [anon_sym_async] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3356), + [anon_sym_new] = ACTIONS(3356), + [anon_sym_using] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_void] = ACTIONS(3356), + [anon_sym_delete] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3356), + [sym_number] = ACTIONS(3356), + [sym_private_property_identifier] = ACTIONS(3356), + [sym_this] = ACTIONS(3356), + [sym_super] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_null] = ACTIONS(3356), + [sym_undefined] = ACTIONS(3356), + [anon_sym_AT] = ACTIONS(3356), + [anon_sym_static] = ACTIONS(3356), + [anon_sym_readonly] = ACTIONS(3356), + [anon_sym_get] = ACTIONS(3356), + [anon_sym_set] = ACTIONS(3356), + [anon_sym_declare] = ACTIONS(3356), + [anon_sym_public] = ACTIONS(3356), + [anon_sym_private] = ACTIONS(3356), + [anon_sym_protected] = ACTIONS(3356), + [anon_sym_override] = ACTIONS(3356), + [anon_sym_module] = ACTIONS(3356), + [anon_sym_any] = ACTIONS(3356), + [anon_sym_number] = ACTIONS(3356), + [anon_sym_boolean] = ACTIONS(3356), + [anon_sym_string] = ACTIONS(3356), + [anon_sym_symbol] = ACTIONS(3356), + [anon_sym_object] = ACTIONS(3356), + [anon_sym_abstract] = ACTIONS(3356), + [anon_sym_interface] = ACTIONS(3356), + [anon_sym_enum] = ACTIONS(3356), + [sym_html_comment] = ACTIONS(5), + }, + [1338] = { + [sym_comment] = STATE(1338), + [ts_builtin_sym_end] = ACTIONS(3494), + [sym_identifier] = ACTIONS(3182), + [anon_sym_export] = ACTIONS(3182), + [anon_sym_type] = ACTIONS(3182), + [anon_sym_namespace] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_typeof] = ACTIONS(3182), + [anon_sym_import] = ACTIONS(3182), + [anon_sym_with] = ACTIONS(3182), + [anon_sym_var] = ACTIONS(3182), + [anon_sym_let] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_switch] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym_await] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_do] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_debugger] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_yield] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_LTtemplate_GT] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_async] = ACTIONS(3182), + [anon_sym_function] = ACTIONS(3182), + [anon_sym_new] = ACTIONS(3182), + [anon_sym_using] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3182), + [sym_number] = ACTIONS(3182), + [sym_private_property_identifier] = ACTIONS(3182), + [sym_this] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_null] = ACTIONS(3182), + [sym_undefined] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_readonly] = ACTIONS(3182), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_declare] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_module] = ACTIONS(3182), + [anon_sym_any] = ACTIONS(3182), + [anon_sym_number] = ACTIONS(3182), + [anon_sym_boolean] = ACTIONS(3182), + [anon_sym_string] = ACTIONS(3182), + [anon_sym_symbol] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_interface] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), + [sym_html_comment] = ACTIONS(5), + }, + [1339] = { + [sym_comment] = STATE(1339), [ts_builtin_sym_end] = ACTIONS(2147), [sym_identifier] = ACTIONS(2145), [anon_sym_export] = ACTIONS(2145), @@ -178539,7 +173028,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2145), [anon_sym_const] = ACTIONS(2145), [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_else] = ACTIONS(2145), [anon_sym_if] = ACTIONS(2145), [anon_sym_switch] = ACTIONS(2145), [anon_sym_for] = ACTIONS(2145), @@ -178603,1090 +173091,2158 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2145), [anon_sym_interface] = ACTIONS(2145), [anon_sym_enum] = ACTIONS(2145), + [sym__automatic_semicolon] = ACTIONS(2147), [sym_html_comment] = ACTIONS(5), }, - [1403] = { - [sym_comment] = STATE(1403), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1340] = { + [sym_comment] = STATE(1340), + [ts_builtin_sym_end] = ACTIONS(3496), + [sym_identifier] = ACTIONS(3168), + [anon_sym_export] = ACTIONS(3168), + [anon_sym_type] = ACTIONS(3168), + [anon_sym_namespace] = ACTIONS(3168), + [anon_sym_LBRACE] = ACTIONS(3168), + [anon_sym_RBRACE] = ACTIONS(3168), + [anon_sym_typeof] = ACTIONS(3168), + [anon_sym_import] = ACTIONS(3168), + [anon_sym_with] = ACTIONS(3168), + [anon_sym_var] = ACTIONS(3168), + [anon_sym_let] = ACTIONS(3168), + [anon_sym_const] = ACTIONS(3168), + [anon_sym_BANG] = ACTIONS(3168), + [anon_sym_else] = ACTIONS(3168), + [anon_sym_if] = ACTIONS(3168), + [anon_sym_switch] = ACTIONS(3168), + [anon_sym_for] = ACTIONS(3168), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_await] = ACTIONS(3168), + [anon_sym_while] = ACTIONS(3168), + [anon_sym_do] = ACTIONS(3168), + [anon_sym_try] = ACTIONS(3168), + [anon_sym_break] = ACTIONS(3168), + [anon_sym_continue] = ACTIONS(3168), + [anon_sym_debugger] = ACTIONS(3168), + [anon_sym_return] = ACTIONS(3168), + [anon_sym_throw] = ACTIONS(3168), + [anon_sym_SEMI] = ACTIONS(3168), + [anon_sym_yield] = ACTIONS(3168), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_LTtemplate_GT] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [anon_sym_class] = ACTIONS(3168), + [anon_sym_async] = ACTIONS(3168), + [anon_sym_function] = ACTIONS(3168), + [anon_sym_new] = ACTIONS(3168), + [anon_sym_using] = ACTIONS(3168), + [anon_sym_PLUS] = ACTIONS(3168), + [anon_sym_DASH] = ACTIONS(3168), + [anon_sym_SLASH] = ACTIONS(3168), + [anon_sym_LT] = ACTIONS(3168), + [anon_sym_TILDE] = ACTIONS(3168), + [anon_sym_void] = ACTIONS(3168), + [anon_sym_delete] = ACTIONS(3168), + [anon_sym_PLUS_PLUS] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3168), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3168), + [sym_number] = ACTIONS(3168), + [sym_private_property_identifier] = ACTIONS(3168), + [sym_this] = ACTIONS(3168), + [sym_super] = ACTIONS(3168), + [sym_true] = ACTIONS(3168), + [sym_false] = ACTIONS(3168), + [sym_null] = ACTIONS(3168), + [sym_undefined] = ACTIONS(3168), + [anon_sym_AT] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3168), + [anon_sym_readonly] = ACTIONS(3168), + [anon_sym_get] = ACTIONS(3168), + [anon_sym_set] = ACTIONS(3168), + [anon_sym_declare] = ACTIONS(3168), + [anon_sym_public] = ACTIONS(3168), + [anon_sym_private] = ACTIONS(3168), + [anon_sym_protected] = ACTIONS(3168), + [anon_sym_override] = ACTIONS(3168), + [anon_sym_module] = ACTIONS(3168), + [anon_sym_any] = ACTIONS(3168), + [anon_sym_number] = ACTIONS(3168), + [anon_sym_boolean] = ACTIONS(3168), + [anon_sym_string] = ACTIONS(3168), + [anon_sym_symbol] = ACTIONS(3168), + [anon_sym_object] = ACTIONS(3168), + [anon_sym_abstract] = ACTIONS(3168), + [anon_sym_interface] = ACTIONS(3168), + [anon_sym_enum] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, - [1404] = { - [sym_comment] = STATE(1404), - [sym_identifier] = ACTIONS(2077), - [anon_sym_export] = ACTIONS(2077), - [anon_sym_default] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_namespace] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(2077), - [anon_sym_import] = ACTIONS(2077), - [anon_sym_with] = ACTIONS(2077), - [anon_sym_var] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_switch] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_await] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_debugger] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_throw] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_case] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LTtemplate_GT] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_class] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_new] = ACTIONS(2077), - [anon_sym_using] = ACTIONS(2077), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2077), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_void] = ACTIONS(2077), - [anon_sym_delete] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2077), - [sym_number] = ACTIONS(2077), - [sym_private_property_identifier] = ACTIONS(2077), - [sym_this] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_true] = ACTIONS(2077), - [sym_false] = ACTIONS(2077), - [sym_null] = ACTIONS(2077), - [sym_undefined] = ACTIONS(2077), - [anon_sym_AT] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_readonly] = ACTIONS(2077), - [anon_sym_get] = ACTIONS(2077), - [anon_sym_set] = ACTIONS(2077), - [anon_sym_declare] = ACTIONS(2077), - [anon_sym_public] = ACTIONS(2077), - [anon_sym_private] = ACTIONS(2077), - [anon_sym_protected] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2077), - [anon_sym_module] = ACTIONS(2077), - [anon_sym_any] = ACTIONS(2077), - [anon_sym_number] = ACTIONS(2077), - [anon_sym_boolean] = ACTIONS(2077), - [anon_sym_string] = ACTIONS(2077), - [anon_sym_symbol] = ACTIONS(2077), - [anon_sym_object] = ACTIONS(2077), - [anon_sym_abstract] = ACTIONS(2077), - [anon_sym_interface] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), + [1341] = { + [sym_comment] = STATE(1341), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_case] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LTtemplate_GT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3354), + [sym_number] = ACTIONS(3354), + [sym_private_property_identifier] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), + [sym_super] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_undefined] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_any] = ACTIONS(3354), + [anon_sym_number] = ACTIONS(3354), + [anon_sym_boolean] = ACTIONS(3354), + [anon_sym_string] = ACTIONS(3354), + [anon_sym_symbol] = ACTIONS(3354), + [anon_sym_object] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), [sym_html_comment] = ACTIONS(5), }, - [1405] = { - [sym_comment] = STATE(1405), - [ts_builtin_sym_end] = ACTIONS(3474), - [sym_identifier] = ACTIONS(3364), - [anon_sym_export] = ACTIONS(3364), - [anon_sym_type] = ACTIONS(3364), - [anon_sym_namespace] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_RBRACE] = ACTIONS(3364), - [anon_sym_typeof] = ACTIONS(3364), - [anon_sym_import] = ACTIONS(3364), - [anon_sym_with] = ACTIONS(3364), - [anon_sym_var] = ACTIONS(3364), - [anon_sym_let] = ACTIONS(3364), - [anon_sym_const] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_else] = ACTIONS(3364), - [anon_sym_if] = ACTIONS(3364), - [anon_sym_switch] = ACTIONS(3364), - [anon_sym_for] = ACTIONS(3364), - [anon_sym_LPAREN] = ACTIONS(3364), - [anon_sym_await] = ACTIONS(3364), - [anon_sym_while] = ACTIONS(3364), - [anon_sym_do] = ACTIONS(3364), - [anon_sym_try] = ACTIONS(3364), - [anon_sym_break] = ACTIONS(3364), - [anon_sym_continue] = ACTIONS(3364), - [anon_sym_debugger] = ACTIONS(3364), - [anon_sym_return] = ACTIONS(3364), - [anon_sym_throw] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_yield] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_LTtemplate_GT] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_class] = ACTIONS(3364), - [anon_sym_async] = ACTIONS(3364), - [anon_sym_function] = ACTIONS(3364), - [anon_sym_new] = ACTIONS(3364), - [anon_sym_using] = ACTIONS(3364), - [anon_sym_PLUS] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3364), - [anon_sym_SLASH] = ACTIONS(3364), - [anon_sym_LT] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_void] = ACTIONS(3364), - [anon_sym_delete] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_DASH_DASH] = ACTIONS(3364), + [1342] = { + [sym_comment] = STATE(1342), + [sym_identifier] = ACTIONS(3214), + [anon_sym_export] = ACTIONS(3214), + [anon_sym_default] = ACTIONS(3214), + [anon_sym_type] = ACTIONS(3214), + [anon_sym_namespace] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_RBRACE] = ACTIONS(3214), + [anon_sym_typeof] = ACTIONS(3214), + [anon_sym_import] = ACTIONS(3214), + [anon_sym_with] = ACTIONS(3214), + [anon_sym_var] = ACTIONS(3214), + [anon_sym_let] = ACTIONS(3214), + [anon_sym_const] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_switch] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3214), + [anon_sym_await] = ACTIONS(3214), + [anon_sym_while] = ACTIONS(3214), + [anon_sym_do] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_debugger] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_throw] = ACTIONS(3214), + [anon_sym_SEMI] = ACTIONS(3214), + [anon_sym_case] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3214), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_LTtemplate_GT] = ACTIONS(3214), + [anon_sym_DQUOTE] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3214), + [anon_sym_class] = ACTIONS(3214), + [anon_sym_async] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3214), + [anon_sym_using] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_void] = ACTIONS(3214), + [anon_sym_delete] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3214), + [anon_sym_DASH_DASH] = ACTIONS(3214), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3364), - [sym_number] = ACTIONS(3364), - [sym_private_property_identifier] = ACTIONS(3364), - [sym_this] = ACTIONS(3364), - [sym_super] = ACTIONS(3364), - [sym_true] = ACTIONS(3364), - [sym_false] = ACTIONS(3364), - [sym_null] = ACTIONS(3364), - [sym_undefined] = ACTIONS(3364), - [anon_sym_AT] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(3364), - [anon_sym_readonly] = ACTIONS(3364), - [anon_sym_get] = ACTIONS(3364), - [anon_sym_set] = ACTIONS(3364), - [anon_sym_declare] = ACTIONS(3364), - [anon_sym_public] = ACTIONS(3364), - [anon_sym_private] = ACTIONS(3364), - [anon_sym_protected] = ACTIONS(3364), - [anon_sym_override] = ACTIONS(3364), - [anon_sym_module] = ACTIONS(3364), - [anon_sym_any] = ACTIONS(3364), - [anon_sym_number] = ACTIONS(3364), - [anon_sym_boolean] = ACTIONS(3364), - [anon_sym_string] = ACTIONS(3364), - [anon_sym_symbol] = ACTIONS(3364), - [anon_sym_object] = ACTIONS(3364), - [anon_sym_abstract] = ACTIONS(3364), - [anon_sym_interface] = ACTIONS(3364), - [anon_sym_enum] = ACTIONS(3364), + [anon_sym_BQUOTE] = ACTIONS(3214), + [sym_number] = ACTIONS(3214), + [sym_private_property_identifier] = ACTIONS(3214), + [sym_this] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_true] = ACTIONS(3214), + [sym_false] = ACTIONS(3214), + [sym_null] = ACTIONS(3214), + [sym_undefined] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3214), + [anon_sym_static] = ACTIONS(3214), + [anon_sym_readonly] = ACTIONS(3214), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_declare] = ACTIONS(3214), + [anon_sym_public] = ACTIONS(3214), + [anon_sym_private] = ACTIONS(3214), + [anon_sym_protected] = ACTIONS(3214), + [anon_sym_override] = ACTIONS(3214), + [anon_sym_module] = ACTIONS(3214), + [anon_sym_any] = ACTIONS(3214), + [anon_sym_number] = ACTIONS(3214), + [anon_sym_boolean] = ACTIONS(3214), + [anon_sym_string] = ACTIONS(3214), + [anon_sym_symbol] = ACTIONS(3214), + [anon_sym_object] = ACTIONS(3214), + [anon_sym_abstract] = ACTIONS(3214), + [anon_sym_interface] = ACTIONS(3214), + [anon_sym_enum] = ACTIONS(3214), [sym_html_comment] = ACTIONS(5), }, - [1406] = { - [sym_comment] = STATE(1406), - [ts_builtin_sym_end] = ACTIONS(3476), - [sym_identifier] = ACTIONS(3366), - [anon_sym_export] = ACTIONS(3366), - [anon_sym_type] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3366), - [anon_sym_RBRACE] = ACTIONS(3366), - [anon_sym_typeof] = ACTIONS(3366), - [anon_sym_import] = ACTIONS(3366), - [anon_sym_with] = ACTIONS(3366), - [anon_sym_var] = ACTIONS(3366), - [anon_sym_let] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_else] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_LPAREN] = ACTIONS(3366), - [anon_sym_await] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_debugger] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_SEMI] = ACTIONS(3366), - [anon_sym_yield] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_LTtemplate_GT] = ACTIONS(3366), - [anon_sym_DQUOTE] = ACTIONS(3366), - [anon_sym_SQUOTE] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_async] = ACTIONS(3366), - [anon_sym_function] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_SLASH] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_void] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3366), - [anon_sym_PLUS_PLUS] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3366), + [1343] = { + [sym_comment] = STATE(1343), + [sym_identifier] = ACTIONS(3332), + [anon_sym_export] = ACTIONS(3332), + [anon_sym_default] = ACTIONS(3332), + [anon_sym_type] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3332), + [anon_sym_RBRACE] = ACTIONS(3332), + [anon_sym_typeof] = ACTIONS(3332), + [anon_sym_import] = ACTIONS(3332), + [anon_sym_with] = ACTIONS(3332), + [anon_sym_var] = ACTIONS(3332), + [anon_sym_let] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3332), + [anon_sym_await] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_debugger] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3332), + [anon_sym_case] = ACTIONS(3332), + [anon_sym_yield] = ACTIONS(3332), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_LTtemplate_GT] = ACTIONS(3332), + [anon_sym_DQUOTE] = ACTIONS(3332), + [anon_sym_SQUOTE] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_async] = ACTIONS(3332), + [anon_sym_function] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_SLASH] = ACTIONS(3332), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3332), + [anon_sym_void] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_PLUS_PLUS] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3332), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3366), - [sym_number] = ACTIONS(3366), - [sym_private_property_identifier] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), - [sym_super] = ACTIONS(3366), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [sym_null] = ACTIONS(3366), - [sym_undefined] = ACTIONS(3366), - [anon_sym_AT] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_readonly] = ACTIONS(3366), - [anon_sym_get] = ACTIONS(3366), - [anon_sym_set] = ACTIONS(3366), - [anon_sym_declare] = ACTIONS(3366), - [anon_sym_public] = ACTIONS(3366), - [anon_sym_private] = ACTIONS(3366), - [anon_sym_protected] = ACTIONS(3366), - [anon_sym_override] = ACTIONS(3366), - [anon_sym_module] = ACTIONS(3366), - [anon_sym_any] = ACTIONS(3366), - [anon_sym_number] = ACTIONS(3366), - [anon_sym_boolean] = ACTIONS(3366), - [anon_sym_string] = ACTIONS(3366), - [anon_sym_symbol] = ACTIONS(3366), - [anon_sym_object] = ACTIONS(3366), - [anon_sym_abstract] = ACTIONS(3366), - [anon_sym_interface] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), - [sym_html_comment] = ACTIONS(5), - }, - [1407] = { - [sym_comment] = STATE(1407), - [ts_builtin_sym_end] = ACTIONS(3478), - [sym_identifier] = ACTIONS(3248), - [anon_sym_export] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_namespace] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_typeof] = ACTIONS(3248), - [anon_sym_import] = ACTIONS(3248), - [anon_sym_with] = ACTIONS(3248), - [anon_sym_var] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_else] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_switch] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_await] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3248), - [anon_sym_do] = ACTIONS(3248), - [anon_sym_try] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_debugger] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_throw] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_yield] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_LTtemplate_GT] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_async] = ACTIONS(3248), - [anon_sym_function] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3248), - [anon_sym_using] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_void] = ACTIONS(3248), - [anon_sym_delete] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3248), - [sym_number] = ACTIONS(3248), - [sym_private_property_identifier] = ACTIONS(3248), - [sym_this] = ACTIONS(3248), - [sym_super] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_null] = ACTIONS(3248), - [sym_undefined] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3248), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_readonly] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3248), - [anon_sym_set] = ACTIONS(3248), - [anon_sym_declare] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_protected] = ACTIONS(3248), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_module] = ACTIONS(3248), - [anon_sym_any] = ACTIONS(3248), - [anon_sym_number] = ACTIONS(3248), - [anon_sym_boolean] = ACTIONS(3248), - [anon_sym_string] = ACTIONS(3248), - [anon_sym_symbol] = ACTIONS(3248), - [anon_sym_object] = ACTIONS(3248), - [anon_sym_abstract] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), + [anon_sym_BQUOTE] = ACTIONS(3332), + [sym_number] = ACTIONS(3332), + [sym_private_property_identifier] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), + [sym_super] = ACTIONS(3332), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [sym_null] = ACTIONS(3332), + [sym_undefined] = ACTIONS(3332), + [anon_sym_AT] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_readonly] = ACTIONS(3332), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_declare] = ACTIONS(3332), + [anon_sym_public] = ACTIONS(3332), + [anon_sym_private] = ACTIONS(3332), + [anon_sym_protected] = ACTIONS(3332), + [anon_sym_override] = ACTIONS(3332), + [anon_sym_module] = ACTIONS(3332), + [anon_sym_any] = ACTIONS(3332), + [anon_sym_number] = ACTIONS(3332), + [anon_sym_boolean] = ACTIONS(3332), + [anon_sym_string] = ACTIONS(3332), + [anon_sym_symbol] = ACTIONS(3332), + [anon_sym_object] = ACTIONS(3332), + [anon_sym_abstract] = ACTIONS(3332), + [anon_sym_interface] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), [sym_html_comment] = ACTIONS(5), }, - [1408] = { - [sym_comment] = STATE(1408), - [ts_builtin_sym_end] = ACTIONS(3480), - [sym_identifier] = ACTIONS(3246), - [anon_sym_export] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_namespace] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3246), - [anon_sym_typeof] = ACTIONS(3246), - [anon_sym_import] = ACTIONS(3246), - [anon_sym_with] = ACTIONS(3246), - [anon_sym_var] = ACTIONS(3246), - [anon_sym_let] = ACTIONS(3246), - [anon_sym_const] = ACTIONS(3246), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_switch] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(3246), - [anon_sym_await] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_do] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_debugger] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_yield] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_LTtemplate_GT] = ACTIONS(3246), - [anon_sym_DQUOTE] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3246), - [anon_sym_class] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_function] = ACTIONS(3246), - [anon_sym_new] = ACTIONS(3246), - [anon_sym_using] = ACTIONS(3246), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(3246), - [anon_sym_void] = ACTIONS(3246), - [anon_sym_delete] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3246), - [anon_sym_DASH_DASH] = ACTIONS(3246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3246), - [sym_number] = ACTIONS(3246), - [sym_private_property_identifier] = ACTIONS(3246), - [sym_this] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_true] = ACTIONS(3246), - [sym_false] = ACTIONS(3246), - [sym_null] = ACTIONS(3246), - [sym_undefined] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_static] = ACTIONS(3246), - [anon_sym_readonly] = ACTIONS(3246), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_declare] = ACTIONS(3246), - [anon_sym_public] = ACTIONS(3246), - [anon_sym_private] = ACTIONS(3246), - [anon_sym_protected] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3246), - [anon_sym_module] = ACTIONS(3246), - [anon_sym_any] = ACTIONS(3246), - [anon_sym_number] = ACTIONS(3246), - [anon_sym_boolean] = ACTIONS(3246), - [anon_sym_string] = ACTIONS(3246), - [anon_sym_symbol] = ACTIONS(3246), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_abstract] = ACTIONS(3246), - [anon_sym_interface] = ACTIONS(3246), - [anon_sym_enum] = ACTIONS(3246), + [1344] = { + [sym_comment] = STATE(1344), + [ts_builtin_sym_end] = ACTIONS(3498), + [sym_identifier] = ACTIONS(3152), + [anon_sym_export] = ACTIONS(3152), + [anon_sym_type] = ACTIONS(3152), + [anon_sym_namespace] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_RBRACE] = ACTIONS(3152), + [anon_sym_typeof] = ACTIONS(3152), + [anon_sym_import] = ACTIONS(3152), + [anon_sym_with] = ACTIONS(3152), + [anon_sym_var] = ACTIONS(3152), + [anon_sym_let] = ACTIONS(3152), + [anon_sym_const] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_else] = ACTIONS(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_switch] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_await] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_do] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_debugger] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3152), + [anon_sym_yield] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3152), + [anon_sym_LTtemplate_GT] = ACTIONS(3152), + [anon_sym_DQUOTE] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3152), + [anon_sym_class] = ACTIONS(3152), + [anon_sym_async] = ACTIONS(3152), + [anon_sym_function] = ACTIONS(3152), + [anon_sym_new] = ACTIONS(3152), + [anon_sym_using] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(3152), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_void] = ACTIONS(3152), + [anon_sym_delete] = ACTIONS(3152), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3152), + [sym_number] = ACTIONS(3152), + [sym_private_property_identifier] = ACTIONS(3152), + [sym_this] = ACTIONS(3152), + [sym_super] = ACTIONS(3152), + [sym_true] = ACTIONS(3152), + [sym_false] = ACTIONS(3152), + [sym_null] = ACTIONS(3152), + [sym_undefined] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3152), + [anon_sym_static] = ACTIONS(3152), + [anon_sym_readonly] = ACTIONS(3152), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_declare] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_module] = ACTIONS(3152), + [anon_sym_any] = ACTIONS(3152), + [anon_sym_number] = ACTIONS(3152), + [anon_sym_boolean] = ACTIONS(3152), + [anon_sym_string] = ACTIONS(3152), + [anon_sym_symbol] = ACTIONS(3152), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_interface] = ACTIONS(3152), + [anon_sym_enum] = ACTIONS(3152), [sym_html_comment] = ACTIONS(5), }, - [1409] = { - [sym_comment] = STATE(1409), - [ts_builtin_sym_end] = ACTIONS(3480), - [sym_identifier] = ACTIONS(3246), - [anon_sym_export] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_namespace] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3246), - [anon_sym_typeof] = ACTIONS(3246), - [anon_sym_import] = ACTIONS(3246), - [anon_sym_with] = ACTIONS(3246), - [anon_sym_var] = ACTIONS(3246), - [anon_sym_let] = ACTIONS(3246), - [anon_sym_const] = ACTIONS(3246), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_switch] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(3246), - [anon_sym_await] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_do] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_debugger] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_yield] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_LTtemplate_GT] = ACTIONS(3246), - [anon_sym_DQUOTE] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3246), - [anon_sym_class] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_function] = ACTIONS(3246), - [anon_sym_new] = ACTIONS(3246), - [anon_sym_using] = ACTIONS(3246), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(3246), - [anon_sym_void] = ACTIONS(3246), - [anon_sym_delete] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3246), - [anon_sym_DASH_DASH] = ACTIONS(3246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3246), - [sym_number] = ACTIONS(3246), - [sym_private_property_identifier] = ACTIONS(3246), - [sym_this] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_true] = ACTIONS(3246), - [sym_false] = ACTIONS(3246), - [sym_null] = ACTIONS(3246), - [sym_undefined] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_static] = ACTIONS(3246), - [anon_sym_readonly] = ACTIONS(3246), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_declare] = ACTIONS(3246), - [anon_sym_public] = ACTIONS(3246), - [anon_sym_private] = ACTIONS(3246), - [anon_sym_protected] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3246), - [anon_sym_module] = ACTIONS(3246), - [anon_sym_any] = ACTIONS(3246), - [anon_sym_number] = ACTIONS(3246), - [anon_sym_boolean] = ACTIONS(3246), - [anon_sym_string] = ACTIONS(3246), - [anon_sym_symbol] = ACTIONS(3246), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_abstract] = ACTIONS(3246), - [anon_sym_interface] = ACTIONS(3246), - [anon_sym_enum] = ACTIONS(3246), + [1345] = { + [sym_comment] = STATE(1345), + [ts_builtin_sym_end] = ACTIONS(3500), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3150), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3150), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_LTtemplate_GT] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(3150), + [anon_sym_SQUOTE] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_using] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_LT] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3150), + [anon_sym_DASH_DASH] = ACTIONS(3150), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3150), + [sym_number] = ACTIONS(3150), + [sym_private_property_identifier] = ACTIONS(3150), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_override] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_object] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), [sym_html_comment] = ACTIONS(5), }, - [1410] = { - [sym_comment] = STATE(1410), - [sym_identifier] = ACTIONS(3340), - [anon_sym_export] = ACTIONS(3340), - [anon_sym_default] = ACTIONS(3340), - [anon_sym_type] = ACTIONS(3340), - [anon_sym_namespace] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [anon_sym_RBRACE] = ACTIONS(3340), - [anon_sym_typeof] = ACTIONS(3340), - [anon_sym_import] = ACTIONS(3340), - [anon_sym_with] = ACTIONS(3340), - [anon_sym_var] = ACTIONS(3340), - [anon_sym_let] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3340), - [anon_sym_await] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_do] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_debugger] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_case] = ACTIONS(3340), - [anon_sym_yield] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3340), - [anon_sym_LTtemplate_GT] = ACTIONS(3340), - [anon_sym_DQUOTE] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3340), - [anon_sym_async] = ACTIONS(3340), - [anon_sym_function] = ACTIONS(3340), - [anon_sym_new] = ACTIONS(3340), - [anon_sym_using] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3340), - [anon_sym_void] = ACTIONS(3340), - [anon_sym_delete] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3340), - [anon_sym_DASH_DASH] = ACTIONS(3340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3340), - [sym_number] = ACTIONS(3340), - [sym_private_property_identifier] = ACTIONS(3340), - [sym_this] = ACTIONS(3340), - [sym_super] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_null] = ACTIONS(3340), - [sym_undefined] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3340), - [anon_sym_static] = ACTIONS(3340), - [anon_sym_readonly] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3340), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_declare] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_protected] = ACTIONS(3340), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3340), - [anon_sym_any] = ACTIONS(3340), - [anon_sym_number] = ACTIONS(3340), - [anon_sym_boolean] = ACTIONS(3340), - [anon_sym_string] = ACTIONS(3340), - [anon_sym_symbol] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), + [1346] = { + [sym_comment] = STATE(1346), + [sym_identifier] = ACTIONS(3350), + [anon_sym_export] = ACTIONS(3350), + [anon_sym_default] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3350), + [anon_sym_namespace] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_typeof] = ACTIONS(3350), + [anon_sym_import] = ACTIONS(3350), + [anon_sym_with] = ACTIONS(3350), + [anon_sym_var] = ACTIONS(3350), + [anon_sym_let] = ACTIONS(3350), + [anon_sym_const] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_switch] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_await] = ACTIONS(3350), + [anon_sym_while] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_try] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_debugger] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_throw] = ACTIONS(3350), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_case] = ACTIONS(3350), + [anon_sym_yield] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_LTtemplate_GT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_class] = ACTIONS(3350), + [anon_sym_async] = ACTIONS(3350), + [anon_sym_function] = ACTIONS(3350), + [anon_sym_new] = ACTIONS(3350), + [anon_sym_using] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_void] = ACTIONS(3350), + [anon_sym_delete] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3350), + [sym_number] = ACTIONS(3350), + [sym_private_property_identifier] = ACTIONS(3350), + [sym_this] = ACTIONS(3350), + [sym_super] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_null] = ACTIONS(3350), + [sym_undefined] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_static] = ACTIONS(3350), + [anon_sym_readonly] = ACTIONS(3350), + [anon_sym_get] = ACTIONS(3350), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_declare] = ACTIONS(3350), + [anon_sym_public] = ACTIONS(3350), + [anon_sym_private] = ACTIONS(3350), + [anon_sym_protected] = ACTIONS(3350), + [anon_sym_override] = ACTIONS(3350), + [anon_sym_module] = ACTIONS(3350), + [anon_sym_any] = ACTIONS(3350), + [anon_sym_number] = ACTIONS(3350), + [anon_sym_boolean] = ACTIONS(3350), + [anon_sym_string] = ACTIONS(3350), + [anon_sym_symbol] = ACTIONS(3350), + [anon_sym_object] = ACTIONS(3350), + [anon_sym_abstract] = ACTIONS(3350), + [anon_sym_interface] = ACTIONS(3350), + [anon_sym_enum] = ACTIONS(3350), [sym_html_comment] = ACTIONS(5), }, - [1411] = { - [sym_comment] = STATE(1411), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(2095), + [1347] = { + [sym_comment] = STATE(1347), + [sym_identifier] = ACTIONS(3316), + [anon_sym_export] = ACTIONS(3316), + [anon_sym_default] = ACTIONS(3316), + [anon_sym_type] = ACTIONS(3316), + [anon_sym_namespace] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3316), + [anon_sym_RBRACE] = ACTIONS(3316), + [anon_sym_typeof] = ACTIONS(3316), + [anon_sym_import] = ACTIONS(3316), + [anon_sym_with] = ACTIONS(3316), + [anon_sym_var] = ACTIONS(3316), + [anon_sym_let] = ACTIONS(3316), + [anon_sym_const] = ACTIONS(3316), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(3316), + [anon_sym_switch] = ACTIONS(3316), + [anon_sym_for] = ACTIONS(3316), + [anon_sym_LPAREN] = ACTIONS(3316), + [anon_sym_await] = ACTIONS(3316), + [anon_sym_while] = ACTIONS(3316), + [anon_sym_do] = ACTIONS(3316), + [anon_sym_try] = ACTIONS(3316), + [anon_sym_break] = ACTIONS(3316), + [anon_sym_continue] = ACTIONS(3316), + [anon_sym_debugger] = ACTIONS(3316), + [anon_sym_return] = ACTIONS(3316), + [anon_sym_throw] = ACTIONS(3316), + [anon_sym_SEMI] = ACTIONS(3316), + [anon_sym_case] = ACTIONS(3316), + [anon_sym_yield] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_LTtemplate_GT] = ACTIONS(3316), + [anon_sym_DQUOTE] = ACTIONS(3316), + [anon_sym_SQUOTE] = ACTIONS(3316), + [anon_sym_class] = ACTIONS(3316), + [anon_sym_async] = ACTIONS(3316), + [anon_sym_function] = ACTIONS(3316), + [anon_sym_new] = ACTIONS(3316), + [anon_sym_using] = ACTIONS(3316), + [anon_sym_PLUS] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3316), + [anon_sym_SLASH] = ACTIONS(3316), + [anon_sym_LT] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_void] = ACTIONS(3316), + [anon_sym_delete] = ACTIONS(3316), + [anon_sym_PLUS_PLUS] = ACTIONS(3316), + [anon_sym_DASH_DASH] = ACTIONS(3316), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3316), + [sym_number] = ACTIONS(3316), + [sym_private_property_identifier] = ACTIONS(3316), + [sym_this] = ACTIONS(3316), + [sym_super] = ACTIONS(3316), + [sym_true] = ACTIONS(3316), + [sym_false] = ACTIONS(3316), + [sym_null] = ACTIONS(3316), + [sym_undefined] = ACTIONS(3316), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_static] = ACTIONS(3316), + [anon_sym_readonly] = ACTIONS(3316), + [anon_sym_get] = ACTIONS(3316), + [anon_sym_set] = ACTIONS(3316), + [anon_sym_declare] = ACTIONS(3316), + [anon_sym_public] = ACTIONS(3316), + [anon_sym_private] = ACTIONS(3316), + [anon_sym_protected] = ACTIONS(3316), + [anon_sym_override] = ACTIONS(3316), + [anon_sym_module] = ACTIONS(3316), + [anon_sym_any] = ACTIONS(3316), + [anon_sym_number] = ACTIONS(3316), + [anon_sym_boolean] = ACTIONS(3316), + [anon_sym_string] = ACTIONS(3316), + [anon_sym_symbol] = ACTIONS(3316), + [anon_sym_object] = ACTIONS(3316), + [anon_sym_abstract] = ACTIONS(3316), + [anon_sym_interface] = ACTIONS(3316), + [anon_sym_enum] = ACTIONS(3316), [sym_html_comment] = ACTIONS(5), }, - [1412] = { - [sym_comment] = STATE(1412), - [sym_identifier] = ACTIONS(3342), - [anon_sym_export] = ACTIONS(3342), - [anon_sym_default] = ACTIONS(3342), - [anon_sym_type] = ACTIONS(3342), - [anon_sym_namespace] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_typeof] = ACTIONS(3342), - [anon_sym_import] = ACTIONS(3342), - [anon_sym_with] = ACTIONS(3342), - [anon_sym_var] = ACTIONS(3342), - [anon_sym_let] = ACTIONS(3342), - [anon_sym_const] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3342), - [anon_sym_if] = ACTIONS(3342), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_for] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_await] = ACTIONS(3342), - [anon_sym_while] = ACTIONS(3342), - [anon_sym_do] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(3342), - [anon_sym_break] = ACTIONS(3342), - [anon_sym_continue] = ACTIONS(3342), - [anon_sym_debugger] = ACTIONS(3342), - [anon_sym_return] = ACTIONS(3342), - [anon_sym_throw] = ACTIONS(3342), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3342), - [anon_sym_yield] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_LTtemplate_GT] = ACTIONS(3342), - [anon_sym_DQUOTE] = ACTIONS(3342), - [anon_sym_SQUOTE] = ACTIONS(3342), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_async] = ACTIONS(3342), - [anon_sym_function] = ACTIONS(3342), - [anon_sym_new] = ACTIONS(3342), - [anon_sym_using] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3342), - [anon_sym_DASH] = ACTIONS(3342), - [anon_sym_SLASH] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3342), - [anon_sym_TILDE] = ACTIONS(3342), - [anon_sym_void] = ACTIONS(3342), - [anon_sym_delete] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), + [1348] = { + [sym_comment] = STATE(1348), + [sym_identifier] = ACTIONS(2149), + [anon_sym_export] = ACTIONS(2149), + [anon_sym_default] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2149), + [anon_sym_typeof] = ACTIONS(2149), + [anon_sym_import] = ACTIONS(2149), + [anon_sym_with] = ACTIONS(2149), + [anon_sym_var] = ACTIONS(2149), + [anon_sym_let] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_switch] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [anon_sym_do] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_debugger] = ACTIONS(2149), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_throw] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(2149), + [anon_sym_case] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_LTtemplate_GT] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(2149), + [anon_sym_class] = ACTIONS(2149), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_function] = ACTIONS(2149), + [anon_sym_new] = ACTIONS(2149), + [anon_sym_using] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_SLASH] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_TILDE] = ACTIONS(2149), + [anon_sym_void] = ACTIONS(2149), + [anon_sym_delete] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2149), + [anon_sym_DASH_DASH] = ACTIONS(2149), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3342), - [sym_number] = ACTIONS(3342), - [sym_private_property_identifier] = ACTIONS(3342), - [sym_this] = ACTIONS(3342), - [sym_super] = ACTIONS(3342), - [sym_true] = ACTIONS(3342), - [sym_false] = ACTIONS(3342), - [sym_null] = ACTIONS(3342), - [sym_undefined] = ACTIONS(3342), - [anon_sym_AT] = ACTIONS(3342), - [anon_sym_static] = ACTIONS(3342), - [anon_sym_readonly] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3342), - [anon_sym_set] = ACTIONS(3342), - [anon_sym_declare] = ACTIONS(3342), - [anon_sym_public] = ACTIONS(3342), - [anon_sym_private] = ACTIONS(3342), - [anon_sym_protected] = ACTIONS(3342), - [anon_sym_override] = ACTIONS(3342), - [anon_sym_module] = ACTIONS(3342), - [anon_sym_any] = ACTIONS(3342), - [anon_sym_number] = ACTIONS(3342), - [anon_sym_boolean] = ACTIONS(3342), - [anon_sym_string] = ACTIONS(3342), - [anon_sym_symbol] = ACTIONS(3342), - [anon_sym_object] = ACTIONS(3342), - [anon_sym_abstract] = ACTIONS(3342), - [anon_sym_interface] = ACTIONS(3342), - [anon_sym_enum] = ACTIONS(3342), + [anon_sym_BQUOTE] = ACTIONS(2149), + [sym_number] = ACTIONS(2149), + [sym_private_property_identifier] = ACTIONS(2149), + [sym_this] = ACTIONS(2149), + [sym_super] = ACTIONS(2149), + [sym_true] = ACTIONS(2149), + [sym_false] = ACTIONS(2149), + [sym_null] = ACTIONS(2149), + [sym_undefined] = ACTIONS(2149), + [anon_sym_AT] = ACTIONS(2149), + [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_abstract] = ACTIONS(2149), + [anon_sym_interface] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), [sym_html_comment] = ACTIONS(5), }, - [1413] = { - [sym_comment] = STATE(1413), - [sym_identifier] = ACTIONS(3344), - [anon_sym_export] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3344), - [anon_sym_type] = ACTIONS(3344), - [anon_sym_namespace] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_RBRACE] = ACTIONS(3344), - [anon_sym_typeof] = ACTIONS(3344), - [anon_sym_import] = ACTIONS(3344), - [anon_sym_with] = ACTIONS(3344), - [anon_sym_var] = ACTIONS(3344), - [anon_sym_let] = ACTIONS(3344), - [anon_sym_const] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_switch] = ACTIONS(3344), - [anon_sym_for] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_await] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_do] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_debugger] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_yield] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_LTtemplate_GT] = ACTIONS(3344), - [anon_sym_DQUOTE] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3344), - [anon_sym_class] = ACTIONS(3344), - [anon_sym_async] = ACTIONS(3344), - [anon_sym_function] = ACTIONS(3344), - [anon_sym_new] = ACTIONS(3344), - [anon_sym_using] = ACTIONS(3344), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_void] = ACTIONS(3344), - [anon_sym_delete] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_DASH_DASH] = ACTIONS(3344), + [1349] = { + [sym_comment] = STATE(1349), + [ts_builtin_sym_end] = ACTIONS(3502), + [sym_identifier] = ACTIONS(3330), + [anon_sym_export] = ACTIONS(3330), + [anon_sym_type] = ACTIONS(3330), + [anon_sym_namespace] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_typeof] = ACTIONS(3330), + [anon_sym_import] = ACTIONS(3330), + [anon_sym_with] = ACTIONS(3330), + [anon_sym_var] = ACTIONS(3330), + [anon_sym_let] = ACTIONS(3330), + [anon_sym_const] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_else] = ACTIONS(3330), + [anon_sym_if] = ACTIONS(3330), + [anon_sym_switch] = ACTIONS(3330), + [anon_sym_for] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_await] = ACTIONS(3330), + [anon_sym_while] = ACTIONS(3330), + [anon_sym_do] = ACTIONS(3330), + [anon_sym_try] = ACTIONS(3330), + [anon_sym_break] = ACTIONS(3330), + [anon_sym_continue] = ACTIONS(3330), + [anon_sym_debugger] = ACTIONS(3330), + [anon_sym_return] = ACTIONS(3330), + [anon_sym_throw] = ACTIONS(3330), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_yield] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_LTtemplate_GT] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_async] = ACTIONS(3330), + [anon_sym_function] = ACTIONS(3330), + [anon_sym_new] = ACTIONS(3330), + [anon_sym_using] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_void] = ACTIONS(3330), + [anon_sym_delete] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3344), - [sym_number] = ACTIONS(3344), - [sym_private_property_identifier] = ACTIONS(3344), - [sym_this] = ACTIONS(3344), - [sym_super] = ACTIONS(3344), - [sym_true] = ACTIONS(3344), - [sym_false] = ACTIONS(3344), - [sym_null] = ACTIONS(3344), - [sym_undefined] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3344), - [anon_sym_static] = ACTIONS(3344), - [anon_sym_readonly] = ACTIONS(3344), - [anon_sym_get] = ACTIONS(3344), - [anon_sym_set] = ACTIONS(3344), - [anon_sym_declare] = ACTIONS(3344), - [anon_sym_public] = ACTIONS(3344), - [anon_sym_private] = ACTIONS(3344), - [anon_sym_protected] = ACTIONS(3344), - [anon_sym_override] = ACTIONS(3344), - [anon_sym_module] = ACTIONS(3344), - [anon_sym_any] = ACTIONS(3344), - [anon_sym_number] = ACTIONS(3344), - [anon_sym_boolean] = ACTIONS(3344), - [anon_sym_string] = ACTIONS(3344), - [anon_sym_symbol] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_abstract] = ACTIONS(3344), - [anon_sym_interface] = ACTIONS(3344), - [anon_sym_enum] = ACTIONS(3344), + [anon_sym_BQUOTE] = ACTIONS(3330), + [sym_number] = ACTIONS(3330), + [sym_private_property_identifier] = ACTIONS(3330), + [sym_this] = ACTIONS(3330), + [sym_super] = ACTIONS(3330), + [sym_true] = ACTIONS(3330), + [sym_false] = ACTIONS(3330), + [sym_null] = ACTIONS(3330), + [sym_undefined] = ACTIONS(3330), + [anon_sym_AT] = ACTIONS(3330), + [anon_sym_static] = ACTIONS(3330), + [anon_sym_readonly] = ACTIONS(3330), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3330), + [anon_sym_declare] = ACTIONS(3330), + [anon_sym_public] = ACTIONS(3330), + [anon_sym_private] = ACTIONS(3330), + [anon_sym_protected] = ACTIONS(3330), + [anon_sym_override] = ACTIONS(3330), + [anon_sym_module] = ACTIONS(3330), + [anon_sym_any] = ACTIONS(3330), + [anon_sym_number] = ACTIONS(3330), + [anon_sym_boolean] = ACTIONS(3330), + [anon_sym_string] = ACTIONS(3330), + [anon_sym_symbol] = ACTIONS(3330), + [anon_sym_object] = ACTIONS(3330), + [anon_sym_abstract] = ACTIONS(3330), + [anon_sym_interface] = ACTIONS(3330), + [anon_sym_enum] = ACTIONS(3330), [sym_html_comment] = ACTIONS(5), }, - [1414] = { - [sym_comment] = STATE(1414), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_default] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_case] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), + [1350] = { + [sym_comment] = STATE(1350), + [sym_identifier] = ACTIONS(3348), + [anon_sym_export] = ACTIONS(3348), + [anon_sym_default] = ACTIONS(3348), + [anon_sym_type] = ACTIONS(3348), + [anon_sym_namespace] = ACTIONS(3348), + [anon_sym_LBRACE] = ACTIONS(3348), + [anon_sym_RBRACE] = ACTIONS(3348), + [anon_sym_typeof] = ACTIONS(3348), + [anon_sym_import] = ACTIONS(3348), + [anon_sym_with] = ACTIONS(3348), + [anon_sym_var] = ACTIONS(3348), + [anon_sym_let] = ACTIONS(3348), + [anon_sym_const] = ACTIONS(3348), + [anon_sym_BANG] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(3348), + [anon_sym_switch] = ACTIONS(3348), + [anon_sym_for] = ACTIONS(3348), + [anon_sym_LPAREN] = ACTIONS(3348), + [anon_sym_await] = ACTIONS(3348), + [anon_sym_while] = ACTIONS(3348), + [anon_sym_do] = ACTIONS(3348), + [anon_sym_try] = ACTIONS(3348), + [anon_sym_break] = ACTIONS(3348), + [anon_sym_continue] = ACTIONS(3348), + [anon_sym_debugger] = ACTIONS(3348), + [anon_sym_return] = ACTIONS(3348), + [anon_sym_throw] = ACTIONS(3348), + [anon_sym_SEMI] = ACTIONS(3348), + [anon_sym_case] = ACTIONS(3348), + [anon_sym_yield] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3348), + [anon_sym_LTtemplate_GT] = ACTIONS(3348), + [anon_sym_DQUOTE] = ACTIONS(3348), + [anon_sym_SQUOTE] = ACTIONS(3348), + [anon_sym_class] = ACTIONS(3348), + [anon_sym_async] = ACTIONS(3348), + [anon_sym_function] = ACTIONS(3348), + [anon_sym_new] = ACTIONS(3348), + [anon_sym_using] = ACTIONS(3348), + [anon_sym_PLUS] = ACTIONS(3348), + [anon_sym_DASH] = ACTIONS(3348), + [anon_sym_SLASH] = ACTIONS(3348), + [anon_sym_LT] = ACTIONS(3348), + [anon_sym_TILDE] = ACTIONS(3348), + [anon_sym_void] = ACTIONS(3348), + [anon_sym_delete] = ACTIONS(3348), + [anon_sym_PLUS_PLUS] = ACTIONS(3348), + [anon_sym_DASH_DASH] = ACTIONS(3348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3348), + [sym_number] = ACTIONS(3348), + [sym_private_property_identifier] = ACTIONS(3348), + [sym_this] = ACTIONS(3348), + [sym_super] = ACTIONS(3348), + [sym_true] = ACTIONS(3348), + [sym_false] = ACTIONS(3348), + [sym_null] = ACTIONS(3348), + [sym_undefined] = ACTIONS(3348), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_static] = ACTIONS(3348), + [anon_sym_readonly] = ACTIONS(3348), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3348), + [anon_sym_declare] = ACTIONS(3348), + [anon_sym_public] = ACTIONS(3348), + [anon_sym_private] = ACTIONS(3348), + [anon_sym_protected] = ACTIONS(3348), + [anon_sym_override] = ACTIONS(3348), + [anon_sym_module] = ACTIONS(3348), + [anon_sym_any] = ACTIONS(3348), + [anon_sym_number] = ACTIONS(3348), + [anon_sym_boolean] = ACTIONS(3348), + [anon_sym_string] = ACTIONS(3348), + [anon_sym_symbol] = ACTIONS(3348), + [anon_sym_object] = ACTIONS(3348), + [anon_sym_abstract] = ACTIONS(3348), + [anon_sym_interface] = ACTIONS(3348), + [anon_sym_enum] = ACTIONS(3348), [sym_html_comment] = ACTIONS(5), }, - [1415] = { - [sym_comment] = STATE(1415), - [sym_identifier] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3346), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_typeof] = ACTIONS(3346), - [anon_sym_import] = ACTIONS(3346), - [anon_sym_with] = ACTIONS(3346), - [anon_sym_var] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_await] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_debugger] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3346), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LTtemplate_GT] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_async] = ACTIONS(3346), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_void] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3346), - [sym_number] = ACTIONS(3346), - [sym_private_property_identifier] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - [sym_super] = ACTIONS(3346), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [sym_null] = ACTIONS(3346), - [sym_undefined] = ACTIONS(3346), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_readonly] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3346), - [anon_sym_set] = ACTIONS(3346), - [anon_sym_declare] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3346), - [anon_sym_private] = ACTIONS(3346), - [anon_sym_protected] = ACTIONS(3346), - [anon_sym_override] = ACTIONS(3346), - [anon_sym_module] = ACTIONS(3346), - [anon_sym_any] = ACTIONS(3346), - [anon_sym_number] = ACTIONS(3346), - [anon_sym_boolean] = ACTIONS(3346), - [anon_sym_string] = ACTIONS(3346), - [anon_sym_symbol] = ACTIONS(3346), - [anon_sym_object] = ACTIONS(3346), - [anon_sym_abstract] = ACTIONS(3346), - [anon_sym_interface] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), + [1351] = { + [sym_comment] = STATE(1351), + [ts_builtin_sym_end] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_typeof] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_with] = ACTIONS(2175), + [anon_sym_var] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_debugger] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_throw] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_LTtemplate_GT] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_function] = ACTIONS(2175), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_using] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_void] = ACTIONS(2175), + [anon_sym_delete] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2175), + [sym_number] = ACTIONS(2175), + [sym_private_property_identifier] = ACTIONS(2175), + [sym_this] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_null] = ACTIONS(2175), + [sym_undefined] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_readonly] = ACTIONS(2175), + [anon_sym_get] = ACTIONS(2175), + [anon_sym_set] = ACTIONS(2175), + [anon_sym_declare] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_override] = ACTIONS(2175), + [anon_sym_module] = ACTIONS(2175), + [anon_sym_any] = ACTIONS(2175), + [anon_sym_number] = ACTIONS(2175), + [anon_sym_boolean] = ACTIONS(2175), + [anon_sym_string] = ACTIONS(2175), + [anon_sym_symbol] = ACTIONS(2175), + [anon_sym_object] = ACTIONS(2175), + [anon_sym_abstract] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), [sym_html_comment] = ACTIONS(5), }, - [1416] = { - [sym_comment] = STATE(1416), - [sym_identifier] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3346), - [anon_sym_default] = ACTIONS(3346), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_typeof] = ACTIONS(3346), - [anon_sym_import] = ACTIONS(3346), - [anon_sym_with] = ACTIONS(3346), - [anon_sym_var] = ACTIONS(3346), + [1352] = { + [sym_comment] = STATE(1352), + [ts_builtin_sym_end] = ACTIONS(3504), + [sym_identifier] = ACTIONS(3188), + [anon_sym_export] = ACTIONS(3188), + [anon_sym_type] = ACTIONS(3188), + [anon_sym_namespace] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_typeof] = ACTIONS(3188), + [anon_sym_import] = ACTIONS(3188), + [anon_sym_with] = ACTIONS(3188), + [anon_sym_var] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_await] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_break] = ACTIONS(3188), + [anon_sym_continue] = ACTIONS(3188), + [anon_sym_debugger] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_throw] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LTtemplate_GT] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_SQUOTE] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_async] = ACTIONS(3188), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_void] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3188), + [sym_number] = ACTIONS(3188), + [sym_private_property_identifier] = ACTIONS(3188), + [sym_this] = ACTIONS(3188), + [sym_super] = ACTIONS(3188), + [sym_true] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [sym_null] = ACTIONS(3188), + [sym_undefined] = ACTIONS(3188), + [anon_sym_AT] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_readonly] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3188), + [anon_sym_set] = ACTIONS(3188), + [anon_sym_declare] = ACTIONS(3188), + [anon_sym_public] = ACTIONS(3188), + [anon_sym_private] = ACTIONS(3188), + [anon_sym_protected] = ACTIONS(3188), + [anon_sym_override] = ACTIONS(3188), + [anon_sym_module] = ACTIONS(3188), + [anon_sym_any] = ACTIONS(3188), + [anon_sym_number] = ACTIONS(3188), + [anon_sym_boolean] = ACTIONS(3188), + [anon_sym_string] = ACTIONS(3188), + [anon_sym_symbol] = ACTIONS(3188), + [anon_sym_object] = ACTIONS(3188), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_interface] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), + [sym_html_comment] = ACTIONS(5), + }, + [1353] = { + [sym_comment] = STATE(1353), + [ts_builtin_sym_end] = ACTIONS(3504), + [sym_identifier] = ACTIONS(3188), + [anon_sym_export] = ACTIONS(3188), + [anon_sym_type] = ACTIONS(3188), + [anon_sym_namespace] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_typeof] = ACTIONS(3188), + [anon_sym_import] = ACTIONS(3188), + [anon_sym_with] = ACTIONS(3188), + [anon_sym_var] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_await] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_break] = ACTIONS(3188), + [anon_sym_continue] = ACTIONS(3188), + [anon_sym_debugger] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_throw] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LTtemplate_GT] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_SQUOTE] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_async] = ACTIONS(3188), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_void] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3188), + [sym_number] = ACTIONS(3188), + [sym_private_property_identifier] = ACTIONS(3188), + [sym_this] = ACTIONS(3188), + [sym_super] = ACTIONS(3188), + [sym_true] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [sym_null] = ACTIONS(3188), + [sym_undefined] = ACTIONS(3188), + [anon_sym_AT] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_readonly] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3188), + [anon_sym_set] = ACTIONS(3188), + [anon_sym_declare] = ACTIONS(3188), + [anon_sym_public] = ACTIONS(3188), + [anon_sym_private] = ACTIONS(3188), + [anon_sym_protected] = ACTIONS(3188), + [anon_sym_override] = ACTIONS(3188), + [anon_sym_module] = ACTIONS(3188), + [anon_sym_any] = ACTIONS(3188), + [anon_sym_number] = ACTIONS(3188), + [anon_sym_boolean] = ACTIONS(3188), + [anon_sym_string] = ACTIONS(3188), + [anon_sym_symbol] = ACTIONS(3188), + [anon_sym_object] = ACTIONS(3188), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_interface] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), + [sym_html_comment] = ACTIONS(5), + }, + [1354] = { + [sym_comment] = STATE(1354), + [ts_builtin_sym_end] = ACTIONS(3504), + [sym_identifier] = ACTIONS(3188), + [anon_sym_export] = ACTIONS(3188), + [anon_sym_type] = ACTIONS(3188), + [anon_sym_namespace] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_typeof] = ACTIONS(3188), + [anon_sym_import] = ACTIONS(3188), + [anon_sym_with] = ACTIONS(3188), + [anon_sym_var] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_await] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_break] = ACTIONS(3188), + [anon_sym_continue] = ACTIONS(3188), + [anon_sym_debugger] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_throw] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LTtemplate_GT] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_SQUOTE] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_async] = ACTIONS(3188), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_void] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3188), + [sym_number] = ACTIONS(3188), + [sym_private_property_identifier] = ACTIONS(3188), + [sym_this] = ACTIONS(3188), + [sym_super] = ACTIONS(3188), + [sym_true] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [sym_null] = ACTIONS(3188), + [sym_undefined] = ACTIONS(3188), + [anon_sym_AT] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_readonly] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3188), + [anon_sym_set] = ACTIONS(3188), + [anon_sym_declare] = ACTIONS(3188), + [anon_sym_public] = ACTIONS(3188), + [anon_sym_private] = ACTIONS(3188), + [anon_sym_protected] = ACTIONS(3188), + [anon_sym_override] = ACTIONS(3188), + [anon_sym_module] = ACTIONS(3188), + [anon_sym_any] = ACTIONS(3188), + [anon_sym_number] = ACTIONS(3188), + [anon_sym_boolean] = ACTIONS(3188), + [anon_sym_string] = ACTIONS(3188), + [anon_sym_symbol] = ACTIONS(3188), + [anon_sym_object] = ACTIONS(3188), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_interface] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), + [sym_html_comment] = ACTIONS(5), + }, + [1355] = { + [sym_comment] = STATE(1355), + [ts_builtin_sym_end] = ACTIONS(2235), + [sym_identifier] = ACTIONS(2233), + [anon_sym_export] = ACTIONS(2233), + [anon_sym_type] = ACTIONS(2233), + [anon_sym_namespace] = ACTIONS(2233), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [anon_sym_typeof] = ACTIONS(2233), + [anon_sym_import] = ACTIONS(2233), + [anon_sym_with] = ACTIONS(2233), + [anon_sym_var] = ACTIONS(2233), + [anon_sym_let] = ACTIONS(2233), + [anon_sym_const] = ACTIONS(2233), + [anon_sym_BANG] = ACTIONS(2233), + [anon_sym_if] = ACTIONS(2233), + [anon_sym_switch] = ACTIONS(2233), + [anon_sym_for] = ACTIONS(2233), + [anon_sym_LPAREN] = ACTIONS(2233), + [anon_sym_await] = ACTIONS(2233), + [anon_sym_while] = ACTIONS(2233), + [anon_sym_do] = ACTIONS(2233), + [anon_sym_try] = ACTIONS(2233), + [anon_sym_break] = ACTIONS(2233), + [anon_sym_continue] = ACTIONS(2233), + [anon_sym_debugger] = ACTIONS(2233), + [anon_sym_return] = ACTIONS(2233), + [anon_sym_throw] = ACTIONS(2233), + [anon_sym_SEMI] = ACTIONS(2233), + [anon_sym_yield] = ACTIONS(2233), + [anon_sym_LBRACK] = ACTIONS(2233), + [anon_sym_LTtemplate_GT] = ACTIONS(2233), + [anon_sym_DOT] = ACTIONS(2233), + [anon_sym_DQUOTE] = ACTIONS(2233), + [anon_sym_SQUOTE] = ACTIONS(2233), + [anon_sym_class] = ACTIONS(2233), + [anon_sym_async] = ACTIONS(2233), + [anon_sym_function] = ACTIONS(2233), + [anon_sym_new] = ACTIONS(2233), + [anon_sym_using] = ACTIONS(2233), + [anon_sym_PLUS] = ACTIONS(2233), + [anon_sym_DASH] = ACTIONS(2233), + [anon_sym_SLASH] = ACTIONS(2233), + [anon_sym_LT] = ACTIONS(2233), + [anon_sym_TILDE] = ACTIONS(2233), + [anon_sym_void] = ACTIONS(2233), + [anon_sym_delete] = ACTIONS(2233), + [anon_sym_PLUS_PLUS] = ACTIONS(2233), + [anon_sym_DASH_DASH] = ACTIONS(2233), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2233), + [sym_number] = ACTIONS(2233), + [sym_private_property_identifier] = ACTIONS(2233), + [sym_this] = ACTIONS(2233), + [sym_super] = ACTIONS(2233), + [sym_true] = ACTIONS(2233), + [sym_false] = ACTIONS(2233), + [sym_null] = ACTIONS(2233), + [sym_undefined] = ACTIONS(2233), + [anon_sym_AT] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2233), + [anon_sym_readonly] = ACTIONS(2233), + [anon_sym_get] = ACTIONS(2233), + [anon_sym_set] = ACTIONS(2233), + [anon_sym_declare] = ACTIONS(2233), + [anon_sym_public] = ACTIONS(2233), + [anon_sym_private] = ACTIONS(2233), + [anon_sym_protected] = ACTIONS(2233), + [anon_sym_override] = ACTIONS(2233), + [anon_sym_module] = ACTIONS(2233), + [anon_sym_any] = ACTIONS(2233), + [anon_sym_number] = ACTIONS(2233), + [anon_sym_boolean] = ACTIONS(2233), + [anon_sym_string] = ACTIONS(2233), + [anon_sym_symbol] = ACTIONS(2233), + [anon_sym_object] = ACTIONS(2233), + [anon_sym_abstract] = ACTIONS(2233), + [anon_sym_interface] = ACTIONS(2233), + [anon_sym_enum] = ACTIONS(2233), + [sym_html_comment] = ACTIONS(5), + }, + [1356] = { + [sym_comment] = STATE(1356), + [sym_identifier] = ACTIONS(3146), + [anon_sym_export] = ACTIONS(3146), + [anon_sym_default] = ACTIONS(3146), + [anon_sym_type] = ACTIONS(3146), + [anon_sym_namespace] = ACTIONS(3146), + [anon_sym_LBRACE] = ACTIONS(3146), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(3146), + [anon_sym_with] = ACTIONS(3146), + [anon_sym_var] = ACTIONS(3146), + [anon_sym_let] = ACTIONS(3146), + [anon_sym_const] = ACTIONS(3146), + [anon_sym_BANG] = ACTIONS(3146), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_switch] = ACTIONS(3146), + [anon_sym_for] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_await] = ACTIONS(3146), + [anon_sym_while] = ACTIONS(3146), + [anon_sym_do] = ACTIONS(3146), + [anon_sym_try] = ACTIONS(3146), + [anon_sym_break] = ACTIONS(3146), + [anon_sym_continue] = ACTIONS(3146), + [anon_sym_debugger] = ACTIONS(3146), + [anon_sym_return] = ACTIONS(3146), + [anon_sym_throw] = ACTIONS(3146), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_case] = ACTIONS(3146), + [anon_sym_yield] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3146), + [anon_sym_LTtemplate_GT] = ACTIONS(3146), + [anon_sym_DQUOTE] = ACTIONS(3146), + [anon_sym_SQUOTE] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(3146), + [anon_sym_function] = ACTIONS(3146), + [anon_sym_new] = ACTIONS(3146), + [anon_sym_using] = ACTIONS(3146), + [anon_sym_PLUS] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3146), + [anon_sym_SLASH] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(3146), + [anon_sym_TILDE] = ACTIONS(3146), + [anon_sym_void] = ACTIONS(3146), + [anon_sym_delete] = ACTIONS(3146), + [anon_sym_PLUS_PLUS] = ACTIONS(3146), + [anon_sym_DASH_DASH] = ACTIONS(3146), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3146), + [sym_number] = ACTIONS(3146), + [sym_private_property_identifier] = ACTIONS(3146), + [sym_this] = ACTIONS(3146), + [sym_super] = ACTIONS(3146), + [sym_true] = ACTIONS(3146), + [sym_false] = ACTIONS(3146), + [sym_null] = ACTIONS(3146), + [sym_undefined] = ACTIONS(3146), + [anon_sym_AT] = ACTIONS(3146), + [anon_sym_static] = ACTIONS(3146), + [anon_sym_readonly] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3146), + [anon_sym_set] = ACTIONS(3146), + [anon_sym_declare] = ACTIONS(3146), + [anon_sym_public] = ACTIONS(3146), + [anon_sym_private] = ACTIONS(3146), + [anon_sym_protected] = ACTIONS(3146), + [anon_sym_override] = ACTIONS(3146), + [anon_sym_module] = ACTIONS(3146), + [anon_sym_any] = ACTIONS(3146), + [anon_sym_number] = ACTIONS(3146), + [anon_sym_boolean] = ACTIONS(3146), + [anon_sym_string] = ACTIONS(3146), + [anon_sym_symbol] = ACTIONS(3146), + [anon_sym_object] = ACTIONS(3146), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_interface] = ACTIONS(3146), + [anon_sym_enum] = ACTIONS(3146), + [sym_html_comment] = ACTIONS(5), + }, + [1357] = { + [sym_comment] = STATE(1357), + [ts_builtin_sym_end] = ACTIONS(2165), + [sym_identifier] = ACTIONS(2163), + [anon_sym_export] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2163), + [anon_sym_namespace] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_typeof] = ACTIONS(2163), + [anon_sym_import] = ACTIONS(2163), + [anon_sym_with] = ACTIONS(2163), + [anon_sym_var] = ACTIONS(2163), + [anon_sym_let] = ACTIONS(2163), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_else] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_switch] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_await] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2163), + [anon_sym_do] = ACTIONS(2163), + [anon_sym_try] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_debugger] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_throw] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_yield] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2163), + [anon_sym_LTtemplate_GT] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [anon_sym_SQUOTE] = ACTIONS(2163), + [anon_sym_class] = ACTIONS(2163), + [anon_sym_async] = ACTIONS(2163), + [anon_sym_function] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2163), + [anon_sym_void] = ACTIONS(2163), + [anon_sym_delete] = ACTIONS(2163), + [anon_sym_PLUS_PLUS] = ACTIONS(2163), + [anon_sym_DASH_DASH] = ACTIONS(2163), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2163), + [sym_number] = ACTIONS(2163), + [sym_private_property_identifier] = ACTIONS(2163), + [sym_this] = ACTIONS(2163), + [sym_super] = ACTIONS(2163), + [sym_true] = ACTIONS(2163), + [sym_false] = ACTIONS(2163), + [sym_null] = ACTIONS(2163), + [sym_undefined] = ACTIONS(2163), + [anon_sym_AT] = ACTIONS(2163), + [anon_sym_static] = ACTIONS(2163), + [anon_sym_readonly] = ACTIONS(2163), + [anon_sym_get] = ACTIONS(2163), + [anon_sym_set] = ACTIONS(2163), + [anon_sym_declare] = ACTIONS(2163), + [anon_sym_public] = ACTIONS(2163), + [anon_sym_private] = ACTIONS(2163), + [anon_sym_protected] = ACTIONS(2163), + [anon_sym_override] = ACTIONS(2163), + [anon_sym_module] = ACTIONS(2163), + [anon_sym_any] = ACTIONS(2163), + [anon_sym_number] = ACTIONS(2163), + [anon_sym_boolean] = ACTIONS(2163), + [anon_sym_string] = ACTIONS(2163), + [anon_sym_symbol] = ACTIONS(2163), + [anon_sym_object] = ACTIONS(2163), + [anon_sym_abstract] = ACTIONS(2163), + [anon_sym_interface] = ACTIONS(2163), + [anon_sym_enum] = ACTIONS(2163), + [sym_html_comment] = ACTIONS(5), + }, + [1358] = { + [sym_comment] = STATE(1358), + [ts_builtin_sym_end] = ACTIONS(3506), + [sym_identifier] = ACTIONS(3232), + [anon_sym_export] = ACTIONS(3232), + [anon_sym_type] = ACTIONS(3232), + [anon_sym_namespace] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_typeof] = ACTIONS(3232), + [anon_sym_import] = ACTIONS(3232), + [anon_sym_with] = ACTIONS(3232), + [anon_sym_var] = ACTIONS(3232), + [anon_sym_let] = ACTIONS(3232), + [anon_sym_const] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3232), + [anon_sym_switch] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_await] = ACTIONS(3232), + [anon_sym_while] = ACTIONS(3232), + [anon_sym_do] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3232), + [anon_sym_break] = ACTIONS(3232), + [anon_sym_continue] = ACTIONS(3232), + [anon_sym_debugger] = ACTIONS(3232), + [anon_sym_return] = ACTIONS(3232), + [anon_sym_throw] = ACTIONS(3232), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_LTtemplate_GT] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3232), + [anon_sym_async] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3232), + [anon_sym_using] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3232), + [anon_sym_DASH] = ACTIONS(3232), + [anon_sym_SLASH] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_void] = ACTIONS(3232), + [anon_sym_delete] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3232), + [sym_number] = ACTIONS(3232), + [sym_private_property_identifier] = ACTIONS(3232), + [sym_this] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [sym_null] = ACTIONS(3232), + [sym_undefined] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_static] = ACTIONS(3232), + [anon_sym_readonly] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3232), + [anon_sym_set] = ACTIONS(3232), + [anon_sym_declare] = ACTIONS(3232), + [anon_sym_public] = ACTIONS(3232), + [anon_sym_private] = ACTIONS(3232), + [anon_sym_protected] = ACTIONS(3232), + [anon_sym_override] = ACTIONS(3232), + [anon_sym_module] = ACTIONS(3232), + [anon_sym_any] = ACTIONS(3232), + [anon_sym_number] = ACTIONS(3232), + [anon_sym_boolean] = ACTIONS(3232), + [anon_sym_string] = ACTIONS(3232), + [anon_sym_symbol] = ACTIONS(3232), + [anon_sym_object] = ACTIONS(3232), + [anon_sym_abstract] = ACTIONS(3232), + [anon_sym_interface] = ACTIONS(3232), + [anon_sym_enum] = ACTIONS(3232), + [sym_html_comment] = ACTIONS(5), + }, + [1359] = { + [sym_comment] = STATE(1359), + [sym_identifier] = ACTIONS(3182), + [anon_sym_export] = ACTIONS(3182), + [anon_sym_default] = ACTIONS(3182), + [anon_sym_type] = ACTIONS(3182), + [anon_sym_namespace] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_typeof] = ACTIONS(3182), + [anon_sym_import] = ACTIONS(3182), + [anon_sym_with] = ACTIONS(3182), + [anon_sym_var] = ACTIONS(3182), + [anon_sym_let] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_switch] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym_await] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_do] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_debugger] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_case] = ACTIONS(3182), + [anon_sym_yield] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_LTtemplate_GT] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_async] = ACTIONS(3182), + [anon_sym_function] = ACTIONS(3182), + [anon_sym_new] = ACTIONS(3182), + [anon_sym_using] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3182), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3182), + [sym_number] = ACTIONS(3182), + [sym_private_property_identifier] = ACTIONS(3182), + [sym_this] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_null] = ACTIONS(3182), + [sym_undefined] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_readonly] = ACTIONS(3182), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_declare] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_module] = ACTIONS(3182), + [anon_sym_any] = ACTIONS(3182), + [anon_sym_number] = ACTIONS(3182), + [anon_sym_boolean] = ACTIONS(3182), + [anon_sym_string] = ACTIONS(3182), + [anon_sym_symbol] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_interface] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), + [sym_html_comment] = ACTIONS(5), + }, + [1360] = { + [sym_comment] = STATE(1360), + [ts_builtin_sym_end] = ACTIONS(3508), + [sym_identifier] = ACTIONS(3230), + [anon_sym_export] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_namespace] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_typeof] = ACTIONS(3230), + [anon_sym_import] = ACTIONS(3230), + [anon_sym_with] = ACTIONS(3230), + [anon_sym_var] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_else] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_switch] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_await] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_debugger] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_throw] = ACTIONS(3230), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LTtemplate_GT] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_SQUOTE] = ACTIONS(3230), + [anon_sym_class] = ACTIONS(3230), + [anon_sym_async] = ACTIONS(3230), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_using] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3230), + [anon_sym_void] = ACTIONS(3230), + [anon_sym_delete] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3230), + [sym_number] = ACTIONS(3230), + [sym_private_property_identifier] = ACTIONS(3230), + [sym_this] = ACTIONS(3230), + [sym_super] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_null] = ACTIONS(3230), + [sym_undefined] = ACTIONS(3230), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_readonly] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3230), + [anon_sym_set] = ACTIONS(3230), + [anon_sym_declare] = ACTIONS(3230), + [anon_sym_public] = ACTIONS(3230), + [anon_sym_private] = ACTIONS(3230), + [anon_sym_protected] = ACTIONS(3230), + [anon_sym_override] = ACTIONS(3230), + [anon_sym_module] = ACTIONS(3230), + [anon_sym_any] = ACTIONS(3230), + [anon_sym_number] = ACTIONS(3230), + [anon_sym_boolean] = ACTIONS(3230), + [anon_sym_string] = ACTIONS(3230), + [anon_sym_symbol] = ACTIONS(3230), + [anon_sym_object] = ACTIONS(3230), + [anon_sym_abstract] = ACTIONS(3230), + [anon_sym_interface] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), + [sym_html_comment] = ACTIONS(5), + }, + [1361] = { + [sym_comment] = STATE(1361), + [ts_builtin_sym_end] = ACTIONS(3118), + [sym_identifier] = ACTIONS(3116), + [anon_sym_export] = ACTIONS(3116), + [anon_sym_type] = ACTIONS(3116), + [anon_sym_namespace] = ACTIONS(3116), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_RBRACE] = ACTIONS(3116), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(3116), + [anon_sym_with] = ACTIONS(3116), + [anon_sym_var] = ACTIONS(3116), + [anon_sym_let] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(3116), + [anon_sym_if] = ACTIONS(3116), + [anon_sym_switch] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3116), + [anon_sym_await] = ACTIONS(3116), + [anon_sym_while] = ACTIONS(3116), + [anon_sym_do] = ACTIONS(3116), + [anon_sym_try] = ACTIONS(3116), + [anon_sym_break] = ACTIONS(3116), + [anon_sym_continue] = ACTIONS(3116), + [anon_sym_debugger] = ACTIONS(3116), + [anon_sym_return] = ACTIONS(3116), + [anon_sym_throw] = ACTIONS(3116), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_yield] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_LTtemplate_GT] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3116), + [anon_sym_SQUOTE] = ACTIONS(3116), + [anon_sym_class] = ACTIONS(3116), + [anon_sym_async] = ACTIONS(3116), + [anon_sym_function] = ACTIONS(3116), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_using] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3116), + [anon_sym_SLASH] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(3116), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_void] = ACTIONS(3116), + [anon_sym_delete] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3116), + [sym_number] = ACTIONS(3116), + [sym_private_property_identifier] = ACTIONS(3116), + [sym_this] = ACTIONS(3116), + [sym_super] = ACTIONS(3116), + [sym_true] = ACTIONS(3116), + [sym_false] = ACTIONS(3116), + [sym_null] = ACTIONS(3116), + [sym_undefined] = ACTIONS(3116), + [anon_sym_AT] = ACTIONS(3116), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_readonly] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3116), + [anon_sym_set] = ACTIONS(3116), + [anon_sym_declare] = ACTIONS(3116), + [anon_sym_public] = ACTIONS(3116), + [anon_sym_private] = ACTIONS(3116), + [anon_sym_protected] = ACTIONS(3116), + [anon_sym_override] = ACTIONS(3116), + [anon_sym_module] = ACTIONS(3116), + [anon_sym_any] = ACTIONS(3116), + [anon_sym_number] = ACTIONS(3116), + [anon_sym_boolean] = ACTIONS(3116), + [anon_sym_string] = ACTIONS(3116), + [anon_sym_symbol] = ACTIONS(3116), + [anon_sym_object] = ACTIONS(3116), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_interface] = ACTIONS(3116), + [anon_sym_enum] = ACTIONS(3116), + [sym__automatic_semicolon] = ACTIONS(3118), + [sym_html_comment] = ACTIONS(5), + }, + [1362] = { + [sym_comment] = STATE(1362), + [ts_builtin_sym_end] = ACTIONS(3510), + [sym_identifier] = ACTIONS(3268), + [anon_sym_export] = ACTIONS(3268), + [anon_sym_type] = ACTIONS(3268), + [anon_sym_namespace] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3268), + [anon_sym_import] = ACTIONS(3268), + [anon_sym_with] = ACTIONS(3268), + [anon_sym_var] = ACTIONS(3268), + [anon_sym_let] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_switch] = ACTIONS(3268), + [anon_sym_for] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_do] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_debugger] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_yield] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LTtemplate_GT] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_class] = ACTIONS(3268), + [anon_sym_async] = ACTIONS(3268), + [anon_sym_function] = ACTIONS(3268), + [anon_sym_new] = ACTIONS(3268), + [anon_sym_using] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_private_property_identifier] = ACTIONS(3268), + [sym_this] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_true] = ACTIONS(3268), + [sym_false] = ACTIONS(3268), + [sym_null] = ACTIONS(3268), + [sym_undefined] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_readonly] = ACTIONS(3268), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_declare] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_module] = ACTIONS(3268), + [anon_sym_any] = ACTIONS(3268), + [anon_sym_number] = ACTIONS(3268), + [anon_sym_boolean] = ACTIONS(3268), + [anon_sym_string] = ACTIONS(3268), + [anon_sym_symbol] = ACTIONS(3268), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_interface] = ACTIONS(3268), + [anon_sym_enum] = ACTIONS(3268), + [sym_html_comment] = ACTIONS(5), + }, + [1363] = { + [sym_comment] = STATE(1363), + [ts_builtin_sym_end] = ACTIONS(2239), + [sym_identifier] = ACTIONS(2237), + [anon_sym_export] = ACTIONS(2237), + [anon_sym_type] = ACTIONS(2237), + [anon_sym_namespace] = ACTIONS(2237), + [anon_sym_LBRACE] = ACTIONS(2237), + [anon_sym_RBRACE] = ACTIONS(2237), + [anon_sym_typeof] = ACTIONS(2237), + [anon_sym_import] = ACTIONS(2237), + [anon_sym_with] = ACTIONS(2237), + [anon_sym_var] = ACTIONS(2237), + [anon_sym_let] = ACTIONS(2237), + [anon_sym_const] = ACTIONS(2237), + [anon_sym_BANG] = ACTIONS(2237), + [anon_sym_if] = ACTIONS(2237), + [anon_sym_switch] = ACTIONS(2237), + [anon_sym_for] = ACTIONS(2237), + [anon_sym_LPAREN] = ACTIONS(2237), + [anon_sym_await] = ACTIONS(2237), + [anon_sym_while] = ACTIONS(2237), + [anon_sym_do] = ACTIONS(2237), + [anon_sym_try] = ACTIONS(2237), + [anon_sym_break] = ACTIONS(2237), + [anon_sym_continue] = ACTIONS(2237), + [anon_sym_debugger] = ACTIONS(2237), + [anon_sym_return] = ACTIONS(2237), + [anon_sym_throw] = ACTIONS(2237), + [anon_sym_SEMI] = ACTIONS(2237), + [anon_sym_yield] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(2237), + [anon_sym_LTtemplate_GT] = ACTIONS(2237), + [anon_sym_DOT] = ACTIONS(2237), + [anon_sym_DQUOTE] = ACTIONS(2237), + [anon_sym_SQUOTE] = ACTIONS(2237), + [anon_sym_class] = ACTIONS(2237), + [anon_sym_async] = ACTIONS(2237), + [anon_sym_function] = ACTIONS(2237), + [anon_sym_new] = ACTIONS(2237), + [anon_sym_using] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2237), + [anon_sym_DASH] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2237), + [anon_sym_LT] = ACTIONS(2237), + [anon_sym_TILDE] = ACTIONS(2237), + [anon_sym_void] = ACTIONS(2237), + [anon_sym_delete] = ACTIONS(2237), + [anon_sym_PLUS_PLUS] = ACTIONS(2237), + [anon_sym_DASH_DASH] = ACTIONS(2237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2237), + [sym_number] = ACTIONS(2237), + [sym_private_property_identifier] = ACTIONS(2237), + [sym_this] = ACTIONS(2237), + [sym_super] = ACTIONS(2237), + [sym_true] = ACTIONS(2237), + [sym_false] = ACTIONS(2237), + [sym_null] = ACTIONS(2237), + [sym_undefined] = ACTIONS(2237), + [anon_sym_AT] = ACTIONS(2237), + [anon_sym_static] = ACTIONS(2237), + [anon_sym_readonly] = ACTIONS(2237), + [anon_sym_get] = ACTIONS(2237), + [anon_sym_set] = ACTIONS(2237), + [anon_sym_declare] = ACTIONS(2237), + [anon_sym_public] = ACTIONS(2237), + [anon_sym_private] = ACTIONS(2237), + [anon_sym_protected] = ACTIONS(2237), + [anon_sym_override] = ACTIONS(2237), + [anon_sym_module] = ACTIONS(2237), + [anon_sym_any] = ACTIONS(2237), + [anon_sym_number] = ACTIONS(2237), + [anon_sym_boolean] = ACTIONS(2237), + [anon_sym_string] = ACTIONS(2237), + [anon_sym_symbol] = ACTIONS(2237), + [anon_sym_object] = ACTIONS(2237), + [anon_sym_abstract] = ACTIONS(2237), + [anon_sym_interface] = ACTIONS(2237), + [anon_sym_enum] = ACTIONS(2237), + [sym_html_comment] = ACTIONS(5), + }, + [1364] = { + [sym_comment] = STATE(1364), + [ts_builtin_sym_end] = ACTIONS(3510), + [sym_identifier] = ACTIONS(3268), + [anon_sym_export] = ACTIONS(3268), + [anon_sym_type] = ACTIONS(3268), + [anon_sym_namespace] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3268), + [anon_sym_import] = ACTIONS(3268), + [anon_sym_with] = ACTIONS(3268), + [anon_sym_var] = ACTIONS(3268), + [anon_sym_let] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_switch] = ACTIONS(3268), + [anon_sym_for] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_do] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_debugger] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_yield] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LTtemplate_GT] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_class] = ACTIONS(3268), + [anon_sym_async] = ACTIONS(3268), + [anon_sym_function] = ACTIONS(3268), + [anon_sym_new] = ACTIONS(3268), + [anon_sym_using] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_private_property_identifier] = ACTIONS(3268), + [sym_this] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_true] = ACTIONS(3268), + [sym_false] = ACTIONS(3268), + [sym_null] = ACTIONS(3268), + [sym_undefined] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_readonly] = ACTIONS(3268), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_declare] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_module] = ACTIONS(3268), + [anon_sym_any] = ACTIONS(3268), + [anon_sym_number] = ACTIONS(3268), + [anon_sym_boolean] = ACTIONS(3268), + [anon_sym_string] = ACTIONS(3268), + [anon_sym_symbol] = ACTIONS(3268), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_interface] = ACTIONS(3268), + [anon_sym_enum] = ACTIONS(3268), + [sym_html_comment] = ACTIONS(5), + }, + [1365] = { + [sym_comment] = STATE(1365), + [ts_builtin_sym_end] = ACTIONS(3512), + [sym_identifier] = ACTIONS(3280), + [anon_sym_export] = ACTIONS(3280), + [anon_sym_type] = ACTIONS(3280), + [anon_sym_namespace] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_typeof] = ACTIONS(3280), + [anon_sym_import] = ACTIONS(3280), + [anon_sym_with] = ACTIONS(3280), + [anon_sym_var] = ACTIONS(3280), + [anon_sym_let] = ACTIONS(3280), + [anon_sym_const] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_else] = ACTIONS(3280), + [anon_sym_if] = ACTIONS(3280), + [anon_sym_switch] = ACTIONS(3280), + [anon_sym_for] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_await] = ACTIONS(3280), + [anon_sym_while] = ACTIONS(3280), + [anon_sym_do] = ACTIONS(3280), + [anon_sym_try] = ACTIONS(3280), + [anon_sym_break] = ACTIONS(3280), + [anon_sym_continue] = ACTIONS(3280), + [anon_sym_debugger] = ACTIONS(3280), + [anon_sym_return] = ACTIONS(3280), + [anon_sym_throw] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_yield] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_LTtemplate_GT] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_class] = ACTIONS(3280), + [anon_sym_async] = ACTIONS(3280), + [anon_sym_function] = ACTIONS(3280), + [anon_sym_new] = ACTIONS(3280), + [anon_sym_using] = ACTIONS(3280), + [anon_sym_PLUS] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3280), + [anon_sym_SLASH] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_void] = ACTIONS(3280), + [anon_sym_delete] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3280), + [sym_number] = ACTIONS(3280), + [sym_private_property_identifier] = ACTIONS(3280), + [sym_this] = ACTIONS(3280), + [sym_super] = ACTIONS(3280), + [sym_true] = ACTIONS(3280), + [sym_false] = ACTIONS(3280), + [sym_null] = ACTIONS(3280), + [sym_undefined] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_static] = ACTIONS(3280), + [anon_sym_readonly] = ACTIONS(3280), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3280), + [anon_sym_declare] = ACTIONS(3280), + [anon_sym_public] = ACTIONS(3280), + [anon_sym_private] = ACTIONS(3280), + [anon_sym_protected] = ACTIONS(3280), + [anon_sym_override] = ACTIONS(3280), + [anon_sym_module] = ACTIONS(3280), + [anon_sym_any] = ACTIONS(3280), + [anon_sym_number] = ACTIONS(3280), + [anon_sym_boolean] = ACTIONS(3280), + [anon_sym_string] = ACTIONS(3280), + [anon_sym_symbol] = ACTIONS(3280), + [anon_sym_object] = ACTIONS(3280), + [anon_sym_abstract] = ACTIONS(3280), + [anon_sym_interface] = ACTIONS(3280), + [anon_sym_enum] = ACTIONS(3280), + [sym_html_comment] = ACTIONS(5), + }, + [1366] = { + [sym_comment] = STATE(1366), + [ts_builtin_sym_end] = ACTIONS(3514), + [sym_identifier] = ACTIONS(3346), + [anon_sym_export] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3346), + [anon_sym_namespace] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_typeof] = ACTIONS(3346), + [anon_sym_import] = ACTIONS(3346), + [anon_sym_with] = ACTIONS(3346), + [anon_sym_var] = ACTIONS(3346), [anon_sym_let] = ACTIONS(3346), [anon_sym_const] = ACTIONS(3346), [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_else] = ACTIONS(3346), [anon_sym_if] = ACTIONS(3346), [anon_sym_switch] = ACTIONS(3346), [anon_sym_for] = ACTIONS(3346), @@ -179701,7 +175257,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3346), [anon_sym_throw] = ACTIONS(3346), [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3346), [anon_sym_yield] = ACTIONS(3346), [anon_sym_LBRACK] = ACTIONS(3346), [anon_sym_LTtemplate_GT] = ACTIONS(3346), @@ -179753,749 +175308,1159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3346), [sym_html_comment] = ACTIONS(5), }, - [1417] = { - [sym_comment] = STATE(1417), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), - [sym__automatic_semicolon] = ACTIONS(2107), + [1367] = { + [sym_comment] = STATE(1367), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_else] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), [sym_html_comment] = ACTIONS(5), }, - [1418] = { - [sym_comment] = STATE(1418), - [sym_identifier] = ACTIONS(3354), - [anon_sym_export] = ACTIONS(3354), - [anon_sym_default] = ACTIONS(3354), - [anon_sym_type] = ACTIONS(3354), - [anon_sym_namespace] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_typeof] = ACTIONS(3354), - [anon_sym_import] = ACTIONS(3354), - [anon_sym_with] = ACTIONS(3354), - [anon_sym_var] = ACTIONS(3354), - [anon_sym_let] = ACTIONS(3354), - [anon_sym_const] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_await] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_debugger] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym_case] = ACTIONS(3354), - [anon_sym_yield] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_LTtemplate_GT] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_async] = ACTIONS(3354), - [anon_sym_function] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_void] = ACTIONS(3354), - [anon_sym_delete] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), + [1368] = { + [sym_comment] = STATE(1368), + [ts_builtin_sym_end] = ACTIONS(3516), + [sym_identifier] = ACTIONS(3300), + [anon_sym_export] = ACTIONS(3300), + [anon_sym_type] = ACTIONS(3300), + [anon_sym_namespace] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_typeof] = ACTIONS(3300), + [anon_sym_import] = ACTIONS(3300), + [anon_sym_with] = ACTIONS(3300), + [anon_sym_var] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_const] = ACTIONS(3300), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_else] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_switch] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_await] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_debugger] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_throw] = ACTIONS(3300), + [anon_sym_SEMI] = ACTIONS(3300), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LTtemplate_GT] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [anon_sym_class] = ACTIONS(3300), + [anon_sym_async] = ACTIONS(3300), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_using] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3300), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_void] = ACTIONS(3300), + [anon_sym_delete] = ACTIONS(3300), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3300), + [sym_number] = ACTIONS(3300), + [sym_private_property_identifier] = ACTIONS(3300), + [sym_this] = ACTIONS(3300), + [sym_super] = ACTIONS(3300), + [sym_true] = ACTIONS(3300), + [sym_false] = ACTIONS(3300), + [sym_null] = ACTIONS(3300), + [sym_undefined] = ACTIONS(3300), + [anon_sym_AT] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_readonly] = ACTIONS(3300), + [anon_sym_get] = ACTIONS(3300), + [anon_sym_set] = ACTIONS(3300), + [anon_sym_declare] = ACTIONS(3300), + [anon_sym_public] = ACTIONS(3300), + [anon_sym_private] = ACTIONS(3300), + [anon_sym_protected] = ACTIONS(3300), + [anon_sym_override] = ACTIONS(3300), + [anon_sym_module] = ACTIONS(3300), + [anon_sym_any] = ACTIONS(3300), + [anon_sym_number] = ACTIONS(3300), + [anon_sym_boolean] = ACTIONS(3300), + [anon_sym_string] = ACTIONS(3300), + [anon_sym_symbol] = ACTIONS(3300), + [anon_sym_object] = ACTIONS(3300), + [anon_sym_abstract] = ACTIONS(3300), + [anon_sym_interface] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), + [sym_html_comment] = ACTIONS(5), + }, + [1369] = { + [sym_comment] = STATE(1369), + [sym_identifier] = ACTIONS(3196), + [anon_sym_export] = ACTIONS(3196), + [anon_sym_default] = ACTIONS(3196), + [anon_sym_type] = ACTIONS(3196), + [anon_sym_namespace] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(3196), + [anon_sym_RBRACE] = ACTIONS(3196), + [anon_sym_typeof] = ACTIONS(3196), + [anon_sym_import] = ACTIONS(3196), + [anon_sym_with] = ACTIONS(3196), + [anon_sym_var] = ACTIONS(3196), + [anon_sym_let] = ACTIONS(3196), + [anon_sym_const] = ACTIONS(3196), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_switch] = ACTIONS(3196), + [anon_sym_for] = ACTIONS(3196), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_await] = ACTIONS(3196), + [anon_sym_while] = ACTIONS(3196), + [anon_sym_do] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_debugger] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3196), + [anon_sym_case] = ACTIONS(3196), + [anon_sym_yield] = ACTIONS(3196), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_LTtemplate_GT] = ACTIONS(3196), + [anon_sym_DQUOTE] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3196), + [anon_sym_class] = ACTIONS(3196), + [anon_sym_async] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3196), + [anon_sym_using] = ACTIONS(3196), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_TILDE] = ACTIONS(3196), + [anon_sym_void] = ACTIONS(3196), + [anon_sym_delete] = ACTIONS(3196), + [anon_sym_PLUS_PLUS] = ACTIONS(3196), + [anon_sym_DASH_DASH] = ACTIONS(3196), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3354), - [sym_number] = ACTIONS(3354), - [sym_private_property_identifier] = ACTIONS(3354), - [sym_this] = ACTIONS(3354), - [sym_super] = ACTIONS(3354), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [sym_null] = ACTIONS(3354), - [sym_undefined] = ACTIONS(3354), - [anon_sym_AT] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_readonly] = ACTIONS(3354), - [anon_sym_get] = ACTIONS(3354), - [anon_sym_set] = ACTIONS(3354), - [anon_sym_declare] = ACTIONS(3354), - [anon_sym_public] = ACTIONS(3354), - [anon_sym_private] = ACTIONS(3354), - [anon_sym_protected] = ACTIONS(3354), - [anon_sym_override] = ACTIONS(3354), - [anon_sym_module] = ACTIONS(3354), - [anon_sym_any] = ACTIONS(3354), - [anon_sym_number] = ACTIONS(3354), - [anon_sym_boolean] = ACTIONS(3354), - [anon_sym_string] = ACTIONS(3354), - [anon_sym_symbol] = ACTIONS(3354), - [anon_sym_object] = ACTIONS(3354), - [anon_sym_abstract] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), + [anon_sym_BQUOTE] = ACTIONS(3196), + [sym_number] = ACTIONS(3196), + [sym_private_property_identifier] = ACTIONS(3196), + [sym_this] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_true] = ACTIONS(3196), + [sym_false] = ACTIONS(3196), + [sym_null] = ACTIONS(3196), + [sym_undefined] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3196), + [anon_sym_static] = ACTIONS(3196), + [anon_sym_readonly] = ACTIONS(3196), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_declare] = ACTIONS(3196), + [anon_sym_public] = ACTIONS(3196), + [anon_sym_private] = ACTIONS(3196), + [anon_sym_protected] = ACTIONS(3196), + [anon_sym_override] = ACTIONS(3196), + [anon_sym_module] = ACTIONS(3196), + [anon_sym_any] = ACTIONS(3196), + [anon_sym_number] = ACTIONS(3196), + [anon_sym_boolean] = ACTIONS(3196), + [anon_sym_string] = ACTIONS(3196), + [anon_sym_symbol] = ACTIONS(3196), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_abstract] = ACTIONS(3196), + [anon_sym_interface] = ACTIONS(3196), + [anon_sym_enum] = ACTIONS(3196), [sym_html_comment] = ACTIONS(5), }, - [1419] = { - [sym_comment] = STATE(1419), - [sym_identifier] = ACTIONS(3356), - [anon_sym_export] = ACTIONS(3356), - [anon_sym_default] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_namespace] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_RBRACE] = ACTIONS(3356), - [anon_sym_typeof] = ACTIONS(3356), - [anon_sym_import] = ACTIONS(3356), - [anon_sym_with] = ACTIONS(3356), - [anon_sym_var] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_switch] = ACTIONS(3356), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_await] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_break] = ACTIONS(3356), - [anon_sym_continue] = ACTIONS(3356), - [anon_sym_debugger] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_throw] = ACTIONS(3356), - [anon_sym_SEMI] = ACTIONS(3356), - [anon_sym_case] = ACTIONS(3356), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LTtemplate_GT] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(3356), - [anon_sym_class] = ACTIONS(3356), - [anon_sym_async] = ACTIONS(3356), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_using] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_SLASH] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_void] = ACTIONS(3356), - [anon_sym_delete] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_DASH_DASH] = ACTIONS(3356), + [1370] = { + [sym_comment] = STATE(1370), + [sym_identifier] = ACTIONS(3334), + [anon_sym_export] = ACTIONS(3334), + [anon_sym_default] = ACTIONS(3334), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_namespace] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_typeof] = ACTIONS(3334), + [anon_sym_import] = ACTIONS(3334), + [anon_sym_with] = ACTIONS(3334), + [anon_sym_var] = ACTIONS(3334), + [anon_sym_let] = ACTIONS(3334), + [anon_sym_const] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_switch] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_await] = ACTIONS(3334), + [anon_sym_while] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_try] = ACTIONS(3334), + [anon_sym_break] = ACTIONS(3334), + [anon_sym_continue] = ACTIONS(3334), + [anon_sym_debugger] = ACTIONS(3334), + [anon_sym_return] = ACTIONS(3334), + [anon_sym_throw] = ACTIONS(3334), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_case] = ACTIONS(3334), + [anon_sym_yield] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_LTtemplate_GT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_class] = ACTIONS(3334), + [anon_sym_async] = ACTIONS(3334), + [anon_sym_function] = ACTIONS(3334), + [anon_sym_new] = ACTIONS(3334), + [anon_sym_using] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_void] = ACTIONS(3334), + [anon_sym_delete] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3356), - [sym_number] = ACTIONS(3356), - [sym_private_property_identifier] = ACTIONS(3356), - [sym_this] = ACTIONS(3356), - [sym_super] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_null] = ACTIONS(3356), - [sym_undefined] = ACTIONS(3356), - [anon_sym_AT] = ACTIONS(3356), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3356), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3356), - [anon_sym_declare] = ACTIONS(3356), - [anon_sym_public] = ACTIONS(3356), - [anon_sym_private] = ACTIONS(3356), - [anon_sym_protected] = ACTIONS(3356), - [anon_sym_override] = ACTIONS(3356), - [anon_sym_module] = ACTIONS(3356), - [anon_sym_any] = ACTIONS(3356), - [anon_sym_number] = ACTIONS(3356), - [anon_sym_boolean] = ACTIONS(3356), - [anon_sym_string] = ACTIONS(3356), - [anon_sym_symbol] = ACTIONS(3356), - [anon_sym_object] = ACTIONS(3356), - [anon_sym_abstract] = ACTIONS(3356), - [anon_sym_interface] = ACTIONS(3356), - [anon_sym_enum] = ACTIONS(3356), + [anon_sym_BQUOTE] = ACTIONS(3334), + [sym_number] = ACTIONS(3334), + [sym_private_property_identifier] = ACTIONS(3334), + [sym_this] = ACTIONS(3334), + [sym_super] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_null] = ACTIONS(3334), + [sym_undefined] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_static] = ACTIONS(3334), + [anon_sym_readonly] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3334), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_declare] = ACTIONS(3334), + [anon_sym_public] = ACTIONS(3334), + [anon_sym_private] = ACTIONS(3334), + [anon_sym_protected] = ACTIONS(3334), + [anon_sym_override] = ACTIONS(3334), + [anon_sym_module] = ACTIONS(3334), + [anon_sym_any] = ACTIONS(3334), + [anon_sym_number] = ACTIONS(3334), + [anon_sym_boolean] = ACTIONS(3334), + [anon_sym_string] = ACTIONS(3334), + [anon_sym_symbol] = ACTIONS(3334), + [anon_sym_object] = ACTIONS(3334), + [anon_sym_abstract] = ACTIONS(3334), + [anon_sym_interface] = ACTIONS(3334), + [anon_sym_enum] = ACTIONS(3334), [sym_html_comment] = ACTIONS(5), }, - [1420] = { - [sym_comment] = STATE(1420), - [sym_identifier] = ACTIONS(3358), - [anon_sym_export] = ACTIONS(3358), - [anon_sym_default] = ACTIONS(3358), - [anon_sym_type] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_RBRACE] = ACTIONS(3358), - [anon_sym_typeof] = ACTIONS(3358), - [anon_sym_import] = ACTIONS(3358), - [anon_sym_with] = ACTIONS(3358), - [anon_sym_var] = ACTIONS(3358), - [anon_sym_let] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_await] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_debugger] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3358), - [anon_sym_case] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_LTtemplate_GT] = ACTIONS(3358), - [anon_sym_DQUOTE] = ACTIONS(3358), - [anon_sym_SQUOTE] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_async] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_void] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), + [1371] = { + [sym_comment] = STATE(1371), + [sym_identifier] = ACTIONS(3334), + [anon_sym_export] = ACTIONS(3334), + [anon_sym_default] = ACTIONS(3334), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_namespace] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_typeof] = ACTIONS(3334), + [anon_sym_import] = ACTIONS(3334), + [anon_sym_with] = ACTIONS(3334), + [anon_sym_var] = ACTIONS(3334), + [anon_sym_let] = ACTIONS(3334), + [anon_sym_const] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_switch] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_await] = ACTIONS(3334), + [anon_sym_while] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_try] = ACTIONS(3334), + [anon_sym_break] = ACTIONS(3334), + [anon_sym_continue] = ACTIONS(3334), + [anon_sym_debugger] = ACTIONS(3334), + [anon_sym_return] = ACTIONS(3334), + [anon_sym_throw] = ACTIONS(3334), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_case] = ACTIONS(3334), + [anon_sym_yield] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_LTtemplate_GT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_class] = ACTIONS(3334), + [anon_sym_async] = ACTIONS(3334), + [anon_sym_function] = ACTIONS(3334), + [anon_sym_new] = ACTIONS(3334), + [anon_sym_using] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_void] = ACTIONS(3334), + [anon_sym_delete] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3358), - [sym_number] = ACTIONS(3358), - [sym_private_property_identifier] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), - [sym_super] = ACTIONS(3358), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [sym_null] = ACTIONS(3358), - [sym_undefined] = ACTIONS(3358), - [anon_sym_AT] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3358), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_declare] = ACTIONS(3358), - [anon_sym_public] = ACTIONS(3358), - [anon_sym_private] = ACTIONS(3358), - [anon_sym_protected] = ACTIONS(3358), - [anon_sym_override] = ACTIONS(3358), - [anon_sym_module] = ACTIONS(3358), - [anon_sym_any] = ACTIONS(3358), - [anon_sym_number] = ACTIONS(3358), - [anon_sym_boolean] = ACTIONS(3358), - [anon_sym_string] = ACTIONS(3358), - [anon_sym_symbol] = ACTIONS(3358), - [anon_sym_object] = ACTIONS(3358), - [anon_sym_abstract] = ACTIONS(3358), - [anon_sym_interface] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), + [anon_sym_BQUOTE] = ACTIONS(3334), + [sym_number] = ACTIONS(3334), + [sym_private_property_identifier] = ACTIONS(3334), + [sym_this] = ACTIONS(3334), + [sym_super] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_null] = ACTIONS(3334), + [sym_undefined] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_static] = ACTIONS(3334), + [anon_sym_readonly] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3334), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_declare] = ACTIONS(3334), + [anon_sym_public] = ACTIONS(3334), + [anon_sym_private] = ACTIONS(3334), + [anon_sym_protected] = ACTIONS(3334), + [anon_sym_override] = ACTIONS(3334), + [anon_sym_module] = ACTIONS(3334), + [anon_sym_any] = ACTIONS(3334), + [anon_sym_number] = ACTIONS(3334), + [anon_sym_boolean] = ACTIONS(3334), + [anon_sym_string] = ACTIONS(3334), + [anon_sym_symbol] = ACTIONS(3334), + [anon_sym_object] = ACTIONS(3334), + [anon_sym_abstract] = ACTIONS(3334), + [anon_sym_interface] = ACTIONS(3334), + [anon_sym_enum] = ACTIONS(3334), [sym_html_comment] = ACTIONS(5), }, - [1421] = { - [sym_comment] = STATE(1421), - [sym_identifier] = ACTIONS(3358), - [anon_sym_export] = ACTIONS(3358), - [anon_sym_default] = ACTIONS(3358), - [anon_sym_type] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_RBRACE] = ACTIONS(3358), - [anon_sym_typeof] = ACTIONS(3358), - [anon_sym_import] = ACTIONS(3358), - [anon_sym_with] = ACTIONS(3358), - [anon_sym_var] = ACTIONS(3358), - [anon_sym_let] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_await] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_debugger] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3358), - [anon_sym_case] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_LTtemplate_GT] = ACTIONS(3358), - [anon_sym_DQUOTE] = ACTIONS(3358), - [anon_sym_SQUOTE] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_async] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_void] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), + [1372] = { + [sym_comment] = STATE(1372), + [ts_builtin_sym_end] = ACTIONS(3518), + [sym_identifier] = ACTIONS(3228), + [anon_sym_export] = ACTIONS(3228), + [anon_sym_type] = ACTIONS(3228), + [anon_sym_namespace] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_typeof] = ACTIONS(3228), + [anon_sym_import] = ACTIONS(3228), + [anon_sym_with] = ACTIONS(3228), + [anon_sym_var] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_const] = ACTIONS(3228), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_switch] = ACTIONS(3228), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_await] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_debugger] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LTtemplate_GT] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3228), + [anon_sym_class] = ACTIONS(3228), + [anon_sym_async] = ACTIONS(3228), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_using] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_void] = ACTIONS(3228), + [anon_sym_delete] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3358), - [sym_number] = ACTIONS(3358), - [sym_private_property_identifier] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), - [sym_super] = ACTIONS(3358), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [sym_null] = ACTIONS(3358), - [sym_undefined] = ACTIONS(3358), - [anon_sym_AT] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3358), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_declare] = ACTIONS(3358), - [anon_sym_public] = ACTIONS(3358), - [anon_sym_private] = ACTIONS(3358), - [anon_sym_protected] = ACTIONS(3358), - [anon_sym_override] = ACTIONS(3358), - [anon_sym_module] = ACTIONS(3358), - [anon_sym_any] = ACTIONS(3358), - [anon_sym_number] = ACTIONS(3358), - [anon_sym_boolean] = ACTIONS(3358), - [anon_sym_string] = ACTIONS(3358), - [anon_sym_symbol] = ACTIONS(3358), - [anon_sym_object] = ACTIONS(3358), - [anon_sym_abstract] = ACTIONS(3358), - [anon_sym_interface] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), + [anon_sym_BQUOTE] = ACTIONS(3228), + [sym_number] = ACTIONS(3228), + [sym_private_property_identifier] = ACTIONS(3228), + [sym_this] = ACTIONS(3228), + [sym_super] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_null] = ACTIONS(3228), + [sym_undefined] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3228), + [anon_sym_static] = ACTIONS(3228), + [anon_sym_readonly] = ACTIONS(3228), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_declare] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_module] = ACTIONS(3228), + [anon_sym_any] = ACTIONS(3228), + [anon_sym_number] = ACTIONS(3228), + [anon_sym_boolean] = ACTIONS(3228), + [anon_sym_string] = ACTIONS(3228), + [anon_sym_symbol] = ACTIONS(3228), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_interface] = ACTIONS(3228), + [anon_sym_enum] = ACTIONS(3228), [sym_html_comment] = ACTIONS(5), }, - [1422] = { - [sym_comment] = STATE(1422), - [ts_builtin_sym_end] = ACTIONS(3480), - [sym_identifier] = ACTIONS(3246), - [anon_sym_export] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_namespace] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3246), - [anon_sym_typeof] = ACTIONS(3246), - [anon_sym_import] = ACTIONS(3246), - [anon_sym_with] = ACTIONS(3246), - [anon_sym_var] = ACTIONS(3246), - [anon_sym_let] = ACTIONS(3246), - [anon_sym_const] = ACTIONS(3246), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_switch] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(3246), - [anon_sym_await] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_do] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_debugger] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_yield] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_LTtemplate_GT] = ACTIONS(3246), - [anon_sym_DQUOTE] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3246), - [anon_sym_class] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_function] = ACTIONS(3246), - [anon_sym_new] = ACTIONS(3246), - [anon_sym_using] = ACTIONS(3246), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(3246), - [anon_sym_void] = ACTIONS(3246), - [anon_sym_delete] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3246), - [anon_sym_DASH_DASH] = ACTIONS(3246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3246), - [sym_number] = ACTIONS(3246), - [sym_private_property_identifier] = ACTIONS(3246), - [sym_this] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_true] = ACTIONS(3246), - [sym_false] = ACTIONS(3246), - [sym_null] = ACTIONS(3246), - [sym_undefined] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_static] = ACTIONS(3246), - [anon_sym_readonly] = ACTIONS(3246), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_declare] = ACTIONS(3246), - [anon_sym_public] = ACTIONS(3246), - [anon_sym_private] = ACTIONS(3246), - [anon_sym_protected] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3246), - [anon_sym_module] = ACTIONS(3246), - [anon_sym_any] = ACTIONS(3246), - [anon_sym_number] = ACTIONS(3246), - [anon_sym_boolean] = ACTIONS(3246), - [anon_sym_string] = ACTIONS(3246), - [anon_sym_symbol] = ACTIONS(3246), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_abstract] = ACTIONS(3246), - [anon_sym_interface] = ACTIONS(3246), - [anon_sym_enum] = ACTIONS(3246), + [1373] = { + [sym_comment] = STATE(1373), + [sym_identifier] = ACTIONS(3176), + [anon_sym_export] = ACTIONS(3176), + [anon_sym_default] = ACTIONS(3176), + [anon_sym_type] = ACTIONS(3176), + [anon_sym_namespace] = ACTIONS(3176), + [anon_sym_LBRACE] = ACTIONS(3176), + [anon_sym_RBRACE] = ACTIONS(3176), + [anon_sym_typeof] = ACTIONS(3176), + [anon_sym_import] = ACTIONS(3176), + [anon_sym_with] = ACTIONS(3176), + [anon_sym_var] = ACTIONS(3176), + [anon_sym_let] = ACTIONS(3176), + [anon_sym_const] = ACTIONS(3176), + [anon_sym_BANG] = ACTIONS(3176), + [anon_sym_if] = ACTIONS(3176), + [anon_sym_switch] = ACTIONS(3176), + [anon_sym_for] = ACTIONS(3176), + [anon_sym_LPAREN] = ACTIONS(3176), + [anon_sym_await] = ACTIONS(3176), + [anon_sym_while] = ACTIONS(3176), + [anon_sym_do] = ACTIONS(3176), + [anon_sym_try] = ACTIONS(3176), + [anon_sym_break] = ACTIONS(3176), + [anon_sym_continue] = ACTIONS(3176), + [anon_sym_debugger] = ACTIONS(3176), + [anon_sym_return] = ACTIONS(3176), + [anon_sym_throw] = ACTIONS(3176), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_case] = ACTIONS(3176), + [anon_sym_yield] = ACTIONS(3176), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_LTtemplate_GT] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [anon_sym_class] = ACTIONS(3176), + [anon_sym_async] = ACTIONS(3176), + [anon_sym_function] = ACTIONS(3176), + [anon_sym_new] = ACTIONS(3176), + [anon_sym_using] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3176), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_SLASH] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_void] = ACTIONS(3176), + [anon_sym_delete] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3176), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3176), + [sym_number] = ACTIONS(3176), + [sym_private_property_identifier] = ACTIONS(3176), + [sym_this] = ACTIONS(3176), + [sym_super] = ACTIONS(3176), + [sym_true] = ACTIONS(3176), + [sym_false] = ACTIONS(3176), + [sym_null] = ACTIONS(3176), + [sym_undefined] = ACTIONS(3176), + [anon_sym_AT] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3176), + [anon_sym_readonly] = ACTIONS(3176), + [anon_sym_get] = ACTIONS(3176), + [anon_sym_set] = ACTIONS(3176), + [anon_sym_declare] = ACTIONS(3176), + [anon_sym_public] = ACTIONS(3176), + [anon_sym_private] = ACTIONS(3176), + [anon_sym_protected] = ACTIONS(3176), + [anon_sym_override] = ACTIONS(3176), + [anon_sym_module] = ACTIONS(3176), + [anon_sym_any] = ACTIONS(3176), + [anon_sym_number] = ACTIONS(3176), + [anon_sym_boolean] = ACTIONS(3176), + [anon_sym_string] = ACTIONS(3176), + [anon_sym_symbol] = ACTIONS(3176), + [anon_sym_object] = ACTIONS(3176), + [anon_sym_abstract] = ACTIONS(3176), + [anon_sym_interface] = ACTIONS(3176), + [anon_sym_enum] = ACTIONS(3176), [sym_html_comment] = ACTIONS(5), }, - [1423] = { - [sym_comment] = STATE(1423), - [ts_builtin_sym_end] = ACTIONS(3482), - [sym_identifier] = ACTIONS(3244), - [anon_sym_export] = ACTIONS(3244), - [anon_sym_type] = ACTIONS(3244), - [anon_sym_namespace] = ACTIONS(3244), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_typeof] = ACTIONS(3244), - [anon_sym_import] = ACTIONS(3244), - [anon_sym_with] = ACTIONS(3244), - [anon_sym_var] = ACTIONS(3244), - [anon_sym_let] = ACTIONS(3244), - [anon_sym_const] = ACTIONS(3244), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_switch] = ACTIONS(3244), - [anon_sym_for] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_await] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3244), - [anon_sym_do] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_debugger] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_throw] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_yield] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_LTtemplate_GT] = ACTIONS(3244), - [anon_sym_DQUOTE] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3244), - [anon_sym_class] = ACTIONS(3244), - [anon_sym_async] = ACTIONS(3244), - [anon_sym_function] = ACTIONS(3244), - [anon_sym_new] = ACTIONS(3244), - [anon_sym_using] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3244), - [anon_sym_TILDE] = ACTIONS(3244), - [anon_sym_void] = ACTIONS(3244), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3244), - [sym_number] = ACTIONS(3244), - [sym_private_property_identifier] = ACTIONS(3244), - [sym_this] = ACTIONS(3244), - [sym_super] = ACTIONS(3244), - [sym_true] = ACTIONS(3244), - [sym_false] = ACTIONS(3244), - [sym_null] = ACTIONS(3244), - [sym_undefined] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3244), - [anon_sym_static] = ACTIONS(3244), - [anon_sym_readonly] = ACTIONS(3244), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_declare] = ACTIONS(3244), - [anon_sym_public] = ACTIONS(3244), - [anon_sym_private] = ACTIONS(3244), - [anon_sym_protected] = ACTIONS(3244), - [anon_sym_override] = ACTIONS(3244), - [anon_sym_module] = ACTIONS(3244), - [anon_sym_any] = ACTIONS(3244), - [anon_sym_number] = ACTIONS(3244), - [anon_sym_boolean] = ACTIONS(3244), - [anon_sym_string] = ACTIONS(3244), - [anon_sym_symbol] = ACTIONS(3244), - [anon_sym_object] = ACTIONS(3244), - [anon_sym_abstract] = ACTIONS(3244), - [anon_sym_interface] = ACTIONS(3244), - [anon_sym_enum] = ACTIONS(3244), + [1374] = { + [sym_comment] = STATE(1374), + [ts_builtin_sym_end] = ACTIONS(2373), + [sym_identifier] = ACTIONS(2167), + [anon_sym_export] = ACTIONS(2167), + [anon_sym_type] = ACTIONS(2167), + [anon_sym_namespace] = ACTIONS(2167), + [anon_sym_LBRACE] = ACTIONS(2167), + [anon_sym_RBRACE] = ACTIONS(2167), + [anon_sym_typeof] = ACTIONS(2167), + [anon_sym_import] = ACTIONS(2167), + [anon_sym_with] = ACTIONS(2167), + [anon_sym_var] = ACTIONS(2167), + [anon_sym_let] = ACTIONS(2167), + [anon_sym_const] = ACTIONS(2167), + [anon_sym_BANG] = ACTIONS(2167), + [anon_sym_if] = ACTIONS(2167), + [anon_sym_switch] = ACTIONS(2167), + [anon_sym_for] = ACTIONS(2167), + [anon_sym_LPAREN] = ACTIONS(2167), + [anon_sym_await] = ACTIONS(2167), + [anon_sym_while] = ACTIONS(2167), + [anon_sym_do] = ACTIONS(2167), + [anon_sym_try] = ACTIONS(2167), + [anon_sym_break] = ACTIONS(2167), + [anon_sym_continue] = ACTIONS(2167), + [anon_sym_debugger] = ACTIONS(2167), + [anon_sym_return] = ACTIONS(2167), + [anon_sym_throw] = ACTIONS(2167), + [anon_sym_SEMI] = ACTIONS(2167), + [anon_sym_yield] = ACTIONS(2167), + [anon_sym_LBRACK] = ACTIONS(2167), + [anon_sym_LTtemplate_GT] = ACTIONS(2167), + [anon_sym_DQUOTE] = ACTIONS(2167), + [anon_sym_SQUOTE] = ACTIONS(2167), + [anon_sym_class] = ACTIONS(2167), + [anon_sym_async] = ACTIONS(2167), + [anon_sym_function] = ACTIONS(2167), + [anon_sym_new] = ACTIONS(2167), + [anon_sym_using] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2167), + [anon_sym_DASH] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2167), + [anon_sym_LT] = ACTIONS(2167), + [anon_sym_TILDE] = ACTIONS(2167), + [anon_sym_void] = ACTIONS(2167), + [anon_sym_delete] = ACTIONS(2167), + [anon_sym_PLUS_PLUS] = ACTIONS(2167), + [anon_sym_DASH_DASH] = ACTIONS(2167), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2167), + [sym_number] = ACTIONS(2167), + [sym_private_property_identifier] = ACTIONS(2167), + [sym_this] = ACTIONS(2167), + [sym_super] = ACTIONS(2167), + [sym_true] = ACTIONS(2167), + [sym_false] = ACTIONS(2167), + [sym_null] = ACTIONS(2167), + [sym_undefined] = ACTIONS(2167), + [anon_sym_AT] = ACTIONS(2167), + [anon_sym_static] = ACTIONS(2167), + [anon_sym_readonly] = ACTIONS(2167), + [anon_sym_get] = ACTIONS(2167), + [anon_sym_set] = ACTIONS(2167), + [anon_sym_declare] = ACTIONS(2167), + [anon_sym_public] = ACTIONS(2167), + [anon_sym_private] = ACTIONS(2167), + [anon_sym_protected] = ACTIONS(2167), + [anon_sym_override] = ACTIONS(2167), + [anon_sym_module] = ACTIONS(2167), + [anon_sym_any] = ACTIONS(2167), + [anon_sym_number] = ACTIONS(2167), + [anon_sym_boolean] = ACTIONS(2167), + [anon_sym_string] = ACTIONS(2167), + [anon_sym_symbol] = ACTIONS(2167), + [anon_sym_object] = ACTIONS(2167), + [anon_sym_abstract] = ACTIONS(2167), + [anon_sym_interface] = ACTIONS(2167), + [anon_sym_enum] = ACTIONS(2167), + [sym__automatic_semicolon] = ACTIONS(2425), [sym_html_comment] = ACTIONS(5), }, - [1424] = { - [sym_comment] = STATE(1424), - [ts_builtin_sym_end] = ACTIONS(3484), - [sym_identifier] = ACTIONS(3242), - [anon_sym_export] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_namespace] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3242), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_typeof] = ACTIONS(3242), - [anon_sym_import] = ACTIONS(3242), - [anon_sym_with] = ACTIONS(3242), - [anon_sym_var] = ACTIONS(3242), - [anon_sym_let] = ACTIONS(3242), - [anon_sym_const] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3242), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_switch] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3242), - [anon_sym_await] = ACTIONS(3242), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3242), - [anon_sym_try] = ACTIONS(3242), - [anon_sym_break] = ACTIONS(3242), - [anon_sym_continue] = ACTIONS(3242), - [anon_sym_debugger] = ACTIONS(3242), - [anon_sym_return] = ACTIONS(3242), - [anon_sym_throw] = ACTIONS(3242), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_yield] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_LTtemplate_GT] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(3242), - [anon_sym_SQUOTE] = ACTIONS(3242), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_function] = ACTIONS(3242), - [anon_sym_new] = ACTIONS(3242), - [anon_sym_using] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_TILDE] = ACTIONS(3242), - [anon_sym_void] = ACTIONS(3242), - [anon_sym_delete] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3242), - [sym_number] = ACTIONS(3242), - [sym_private_property_identifier] = ACTIONS(3242), - [sym_this] = ACTIONS(3242), - [sym_super] = ACTIONS(3242), - [sym_true] = ACTIONS(3242), - [sym_false] = ACTIONS(3242), - [sym_null] = ACTIONS(3242), - [sym_undefined] = ACTIONS(3242), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_readonly] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_declare] = ACTIONS(3242), - [anon_sym_public] = ACTIONS(3242), - [anon_sym_private] = ACTIONS(3242), - [anon_sym_protected] = ACTIONS(3242), - [anon_sym_override] = ACTIONS(3242), - [anon_sym_module] = ACTIONS(3242), - [anon_sym_any] = ACTIONS(3242), - [anon_sym_number] = ACTIONS(3242), - [anon_sym_boolean] = ACTIONS(3242), - [anon_sym_string] = ACTIONS(3242), - [anon_sym_symbol] = ACTIONS(3242), - [anon_sym_object] = ACTIONS(3242), - [anon_sym_abstract] = ACTIONS(3242), - [anon_sym_interface] = ACTIONS(3242), - [anon_sym_enum] = ACTIONS(3242), + [1375] = { + [sym_comment] = STATE(1375), + [sym_identifier] = ACTIONS(3298), + [anon_sym_export] = ACTIONS(3298), + [anon_sym_default] = ACTIONS(3298), + [anon_sym_type] = ACTIONS(3298), + [anon_sym_namespace] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_typeof] = ACTIONS(3298), + [anon_sym_import] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3298), + [anon_sym_var] = ACTIONS(3298), + [anon_sym_let] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_switch] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_await] = ACTIONS(3298), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_do] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3298), + [anon_sym_break] = ACTIONS(3298), + [anon_sym_continue] = ACTIONS(3298), + [anon_sym_debugger] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3298), + [anon_sym_throw] = ACTIONS(3298), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_case] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_LTtemplate_GT] = ACTIONS(3298), + [anon_sym_DQUOTE] = ACTIONS(3298), + [anon_sym_SQUOTE] = ACTIONS(3298), + [anon_sym_class] = ACTIONS(3298), + [anon_sym_async] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3298), + [anon_sym_using] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3298), + [anon_sym_void] = ACTIONS(3298), + [anon_sym_delete] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3298), + [sym_number] = ACTIONS(3298), + [sym_private_property_identifier] = ACTIONS(3298), + [sym_this] = ACTIONS(3298), + [sym_super] = ACTIONS(3298), + [sym_true] = ACTIONS(3298), + [sym_false] = ACTIONS(3298), + [sym_null] = ACTIONS(3298), + [sym_undefined] = ACTIONS(3298), + [anon_sym_AT] = ACTIONS(3298), + [anon_sym_static] = ACTIONS(3298), + [anon_sym_readonly] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3298), + [anon_sym_set] = ACTIONS(3298), + [anon_sym_declare] = ACTIONS(3298), + [anon_sym_public] = ACTIONS(3298), + [anon_sym_private] = ACTIONS(3298), + [anon_sym_protected] = ACTIONS(3298), + [anon_sym_override] = ACTIONS(3298), + [anon_sym_module] = ACTIONS(3298), + [anon_sym_any] = ACTIONS(3298), + [anon_sym_number] = ACTIONS(3298), + [anon_sym_boolean] = ACTIONS(3298), + [anon_sym_string] = ACTIONS(3298), + [anon_sym_symbol] = ACTIONS(3298), + [anon_sym_object] = ACTIONS(3298), + [anon_sym_abstract] = ACTIONS(3298), + [anon_sym_interface] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), [sym_html_comment] = ACTIONS(5), }, - [1425] = { - [sym_comment] = STATE(1425), - [ts_builtin_sym_end] = ACTIONS(3486), - [sym_identifier] = ACTIONS(3240), - [anon_sym_export] = ACTIONS(3240), - [anon_sym_type] = ACTIONS(3240), - [anon_sym_namespace] = ACTIONS(3240), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_typeof] = ACTIONS(3240), - [anon_sym_import] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3240), - [anon_sym_var] = ACTIONS(3240), - [anon_sym_let] = ACTIONS(3240), - [anon_sym_const] = ACTIONS(3240), - [anon_sym_BANG] = ACTIONS(3240), - [anon_sym_else] = ACTIONS(3240), - [anon_sym_if] = ACTIONS(3240), - [anon_sym_switch] = ACTIONS(3240), - [anon_sym_for] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_await] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3240), - [anon_sym_do] = ACTIONS(3240), - [anon_sym_try] = ACTIONS(3240), - [anon_sym_break] = ACTIONS(3240), - [anon_sym_continue] = ACTIONS(3240), - [anon_sym_debugger] = ACTIONS(3240), - [anon_sym_return] = ACTIONS(3240), - [anon_sym_throw] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_yield] = ACTIONS(3240), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_LTtemplate_GT] = ACTIONS(3240), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_SQUOTE] = ACTIONS(3240), - [anon_sym_class] = ACTIONS(3240), - [anon_sym_async] = ACTIONS(3240), - [anon_sym_function] = ACTIONS(3240), - [anon_sym_new] = ACTIONS(3240), - [anon_sym_using] = ACTIONS(3240), - [anon_sym_PLUS] = ACTIONS(3240), - [anon_sym_DASH] = ACTIONS(3240), - [anon_sym_SLASH] = ACTIONS(3240), - [anon_sym_LT] = ACTIONS(3240), - [anon_sym_TILDE] = ACTIONS(3240), - [anon_sym_void] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3240), - [anon_sym_PLUS_PLUS] = ACTIONS(3240), - [anon_sym_DASH_DASH] = ACTIONS(3240), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3240), - [sym_number] = ACTIONS(3240), - [sym_private_property_identifier] = ACTIONS(3240), - [sym_this] = ACTIONS(3240), - [sym_super] = ACTIONS(3240), - [sym_true] = ACTIONS(3240), - [sym_false] = ACTIONS(3240), - [sym_null] = ACTIONS(3240), - [sym_undefined] = ACTIONS(3240), - [anon_sym_AT] = ACTIONS(3240), - [anon_sym_static] = ACTIONS(3240), - [anon_sym_readonly] = ACTIONS(3240), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3240), - [anon_sym_declare] = ACTIONS(3240), - [anon_sym_public] = ACTIONS(3240), - [anon_sym_private] = ACTIONS(3240), - [anon_sym_protected] = ACTIONS(3240), - [anon_sym_override] = ACTIONS(3240), - [anon_sym_module] = ACTIONS(3240), - [anon_sym_any] = ACTIONS(3240), - [anon_sym_number] = ACTIONS(3240), - [anon_sym_boolean] = ACTIONS(3240), - [anon_sym_string] = ACTIONS(3240), - [anon_sym_symbol] = ACTIONS(3240), - [anon_sym_object] = ACTIONS(3240), - [anon_sym_abstract] = ACTIONS(3240), - [anon_sym_interface] = ACTIONS(3240), - [anon_sym_enum] = ACTIONS(3240), + [1376] = { + [sym_comment] = STATE(1376), + [ts_builtin_sym_end] = ACTIONS(2381), + [sym_identifier] = ACTIONS(2205), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2205), + [anon_sym_RBRACE] = ACTIONS(2205), + [anon_sym_typeof] = ACTIONS(2205), + [anon_sym_import] = ACTIONS(2205), + [anon_sym_with] = ACTIONS(2205), + [anon_sym_var] = ACTIONS(2205), + [anon_sym_let] = ACTIONS(2205), + [anon_sym_const] = ACTIONS(2205), + [anon_sym_BANG] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2205), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_while] = ACTIONS(2205), + [anon_sym_do] = ACTIONS(2205), + [anon_sym_try] = ACTIONS(2205), + [anon_sym_break] = ACTIONS(2205), + [anon_sym_continue] = ACTIONS(2205), + [anon_sym_debugger] = ACTIONS(2205), + [anon_sym_return] = ACTIONS(2205), + [anon_sym_throw] = ACTIONS(2205), + [anon_sym_SEMI] = ACTIONS(2205), + [anon_sym_yield] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(2205), + [anon_sym_LTtemplate_GT] = ACTIONS(2205), + [anon_sym_DQUOTE] = ACTIONS(2205), + [anon_sym_SQUOTE] = ACTIONS(2205), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_using] = ACTIONS(2205), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_LT] = ACTIONS(2205), + [anon_sym_TILDE] = ACTIONS(2205), + [anon_sym_void] = ACTIONS(2205), + [anon_sym_delete] = ACTIONS(2205), + [anon_sym_PLUS_PLUS] = ACTIONS(2205), + [anon_sym_DASH_DASH] = ACTIONS(2205), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2205), + [sym_number] = ACTIONS(2205), + [sym_private_property_identifier] = ACTIONS(2205), + [sym_this] = ACTIONS(2205), + [sym_super] = ACTIONS(2205), + [sym_true] = ACTIONS(2205), + [sym_false] = ACTIONS(2205), + [sym_null] = ACTIONS(2205), + [sym_undefined] = ACTIONS(2205), + [anon_sym_AT] = ACTIONS(2205), + [anon_sym_static] = ACTIONS(2205), + [anon_sym_readonly] = ACTIONS(2205), + [anon_sym_get] = ACTIONS(2205), + [anon_sym_set] = ACTIONS(2205), + [anon_sym_declare] = ACTIONS(2205), + [anon_sym_public] = ACTIONS(2205), + [anon_sym_private] = ACTIONS(2205), + [anon_sym_protected] = ACTIONS(2205), + [anon_sym_override] = ACTIONS(2205), + [anon_sym_module] = ACTIONS(2205), + [anon_sym_any] = ACTIONS(2205), + [anon_sym_number] = ACTIONS(2205), + [anon_sym_boolean] = ACTIONS(2205), + [anon_sym_string] = ACTIONS(2205), + [anon_sym_symbol] = ACTIONS(2205), + [anon_sym_object] = ACTIONS(2205), + [anon_sym_abstract] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [sym__automatic_semicolon] = ACTIONS(2401), [sym_html_comment] = ACTIONS(5), }, - [1426] = { - [sym_comment] = STATE(1426), - [ts_builtin_sym_end] = ACTIONS(3488), + [1377] = { + [sym_comment] = STATE(1377), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [anon_sym_module] = ACTIONS(3302), + [anon_sym_any] = ACTIONS(3302), + [anon_sym_number] = ACTIONS(3302), + [anon_sym_boolean] = ACTIONS(3302), + [anon_sym_string] = ACTIONS(3302), + [anon_sym_symbol] = ACTIONS(3302), + [anon_sym_object] = ACTIONS(3302), + [anon_sym_abstract] = ACTIONS(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), + [sym_html_comment] = ACTIONS(5), + }, + [1378] = { + [sym_comment] = STATE(1378), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym__automatic_semicolon] = ACTIONS(3520), + [sym_html_comment] = ACTIONS(5), + }, + [1379] = { + [sym_comment] = STATE(1379), + [sym_identifier] = ACTIONS(3260), + [anon_sym_export] = ACTIONS(3260), + [anon_sym_default] = ACTIONS(3260), + [anon_sym_type] = ACTIONS(3260), + [anon_sym_namespace] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_RBRACE] = ACTIONS(3260), + [anon_sym_typeof] = ACTIONS(3260), + [anon_sym_import] = ACTIONS(3260), + [anon_sym_with] = ACTIONS(3260), + [anon_sym_var] = ACTIONS(3260), + [anon_sym_let] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_BANG] = ACTIONS(3260), + [anon_sym_if] = ACTIONS(3260), + [anon_sym_switch] = ACTIONS(3260), + [anon_sym_for] = ACTIONS(3260), + [anon_sym_LPAREN] = ACTIONS(3260), + [anon_sym_await] = ACTIONS(3260), + [anon_sym_while] = ACTIONS(3260), + [anon_sym_do] = ACTIONS(3260), + [anon_sym_try] = ACTIONS(3260), + [anon_sym_break] = ACTIONS(3260), + [anon_sym_continue] = ACTIONS(3260), + [anon_sym_debugger] = ACTIONS(3260), + [anon_sym_return] = ACTIONS(3260), + [anon_sym_throw] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_case] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_LTtemplate_GT] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3260), + [anon_sym_class] = ACTIONS(3260), + [anon_sym_async] = ACTIONS(3260), + [anon_sym_function] = ACTIONS(3260), + [anon_sym_new] = ACTIONS(3260), + [anon_sym_using] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_void] = ACTIONS(3260), + [anon_sym_delete] = ACTIONS(3260), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3260), + [sym_number] = ACTIONS(3260), + [sym_private_property_identifier] = ACTIONS(3260), + [sym_this] = ACTIONS(3260), + [sym_super] = ACTIONS(3260), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [sym_null] = ACTIONS(3260), + [sym_undefined] = ACTIONS(3260), + [anon_sym_AT] = ACTIONS(3260), + [anon_sym_static] = ACTIONS(3260), + [anon_sym_readonly] = ACTIONS(3260), + [anon_sym_get] = ACTIONS(3260), + [anon_sym_set] = ACTIONS(3260), + [anon_sym_declare] = ACTIONS(3260), + [anon_sym_public] = ACTIONS(3260), + [anon_sym_private] = ACTIONS(3260), + [anon_sym_protected] = ACTIONS(3260), + [anon_sym_override] = ACTIONS(3260), + [anon_sym_module] = ACTIONS(3260), + [anon_sym_any] = ACTIONS(3260), + [anon_sym_number] = ACTIONS(3260), + [anon_sym_boolean] = ACTIONS(3260), + [anon_sym_string] = ACTIONS(3260), + [anon_sym_symbol] = ACTIONS(3260), + [anon_sym_object] = ACTIONS(3260), + [anon_sym_abstract] = ACTIONS(3260), + [anon_sym_interface] = ACTIONS(3260), + [anon_sym_enum] = ACTIONS(3260), + [sym_html_comment] = ACTIONS(5), + }, + [1380] = { + [sym_comment] = STATE(1380), + [ts_builtin_sym_end] = ACTIONS(2357), + [sym_identifier] = ACTIONS(2255), + [anon_sym_export] = ACTIONS(2255), + [anon_sym_type] = ACTIONS(2255), + [anon_sym_namespace] = ACTIONS(2255), + [anon_sym_LBRACE] = ACTIONS(2255), + [anon_sym_RBRACE] = ACTIONS(2255), + [anon_sym_typeof] = ACTIONS(2255), + [anon_sym_import] = ACTIONS(2255), + [anon_sym_with] = ACTIONS(2255), + [anon_sym_var] = ACTIONS(2255), + [anon_sym_let] = ACTIONS(2255), + [anon_sym_const] = ACTIONS(2255), + [anon_sym_BANG] = ACTIONS(2255), + [anon_sym_if] = ACTIONS(2255), + [anon_sym_switch] = ACTIONS(2255), + [anon_sym_for] = ACTIONS(2255), + [anon_sym_LPAREN] = ACTIONS(2255), + [anon_sym_await] = ACTIONS(2255), + [anon_sym_while] = ACTIONS(2255), + [anon_sym_do] = ACTIONS(2255), + [anon_sym_try] = ACTIONS(2255), + [anon_sym_break] = ACTIONS(2255), + [anon_sym_continue] = ACTIONS(2255), + [anon_sym_debugger] = ACTIONS(2255), + [anon_sym_return] = ACTIONS(2255), + [anon_sym_throw] = ACTIONS(2255), + [anon_sym_SEMI] = ACTIONS(2255), + [anon_sym_yield] = ACTIONS(2255), + [anon_sym_LBRACK] = ACTIONS(2255), + [anon_sym_LTtemplate_GT] = ACTIONS(2255), + [anon_sym_DQUOTE] = ACTIONS(2255), + [anon_sym_SQUOTE] = ACTIONS(2255), + [anon_sym_class] = ACTIONS(2255), + [anon_sym_async] = ACTIONS(2255), + [anon_sym_function] = ACTIONS(2255), + [anon_sym_new] = ACTIONS(2255), + [anon_sym_using] = ACTIONS(2255), + [anon_sym_PLUS] = ACTIONS(2255), + [anon_sym_DASH] = ACTIONS(2255), + [anon_sym_SLASH] = ACTIONS(2255), + [anon_sym_LT] = ACTIONS(2255), + [anon_sym_TILDE] = ACTIONS(2255), + [anon_sym_void] = ACTIONS(2255), + [anon_sym_delete] = ACTIONS(2255), + [anon_sym_PLUS_PLUS] = ACTIONS(2255), + [anon_sym_DASH_DASH] = ACTIONS(2255), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2255), + [sym_number] = ACTIONS(2255), + [sym_private_property_identifier] = ACTIONS(2255), + [sym_this] = ACTIONS(2255), + [sym_super] = ACTIONS(2255), + [sym_true] = ACTIONS(2255), + [sym_false] = ACTIONS(2255), + [sym_null] = ACTIONS(2255), + [sym_undefined] = ACTIONS(2255), + [anon_sym_AT] = ACTIONS(2255), + [anon_sym_static] = ACTIONS(2255), + [anon_sym_readonly] = ACTIONS(2255), + [anon_sym_get] = ACTIONS(2255), + [anon_sym_set] = ACTIONS(2255), + [anon_sym_declare] = ACTIONS(2255), + [anon_sym_public] = ACTIONS(2255), + [anon_sym_private] = ACTIONS(2255), + [anon_sym_protected] = ACTIONS(2255), + [anon_sym_override] = ACTIONS(2255), + [anon_sym_module] = ACTIONS(2255), + [anon_sym_any] = ACTIONS(2255), + [anon_sym_number] = ACTIONS(2255), + [anon_sym_boolean] = ACTIONS(2255), + [anon_sym_string] = ACTIONS(2255), + [anon_sym_symbol] = ACTIONS(2255), + [anon_sym_object] = ACTIONS(2255), + [anon_sym_abstract] = ACTIONS(2255), + [anon_sym_interface] = ACTIONS(2255), + [anon_sym_enum] = ACTIONS(2255), + [sym__automatic_semicolon] = ACTIONS(2437), + [sym_html_comment] = ACTIONS(5), + }, + [1381] = { + [sym_comment] = STATE(1381), [sym_identifier] = ACTIONS(3238), [anon_sym_export] = ACTIONS(3238), + [anon_sym_default] = ACTIONS(3238), [anon_sym_type] = ACTIONS(3238), [anon_sym_namespace] = ACTIONS(3238), [anon_sym_LBRACE] = ACTIONS(3238), @@ -180507,7 +176472,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3238), [anon_sym_const] = ACTIONS(3238), [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3238), [anon_sym_if] = ACTIONS(3238), [anon_sym_switch] = ACTIONS(3238), [anon_sym_for] = ACTIONS(3238), @@ -180522,6 +176486,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3238), [anon_sym_throw] = ACTIONS(3238), [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_case] = ACTIONS(3238), [anon_sym_yield] = ACTIONS(3238), [anon_sym_LBRACK] = ACTIONS(3238), [anon_sym_LTtemplate_GT] = ACTIONS(3238), @@ -180573,3125 +176538,2715 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3238), [sym_html_comment] = ACTIONS(5), }, - [1427] = { - [sym_comment] = STATE(1427), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_default] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_namespace] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_typeof] = ACTIONS(2251), - [anon_sym_import] = ACTIONS(2251), - [anon_sym_with] = ACTIONS(2251), - [anon_sym_var] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_debugger] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_throw] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_case] = ACTIONS(2251), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_LTtemplate_GT] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_using] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_void] = ACTIONS(2251), - [anon_sym_delete] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), + [1382] = { + [sym_comment] = STATE(1382), + [ts_builtin_sym_end] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2251), - [sym_number] = ACTIONS(2251), - [sym_private_property_identifier] = ACTIONS(2251), - [sym_this] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_undefined] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_readonly] = ACTIONS(2251), - [anon_sym_get] = ACTIONS(2251), - [anon_sym_set] = ACTIONS(2251), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_public] = ACTIONS(2251), - [anon_sym_private] = ACTIONS(2251), - [anon_sym_protected] = ACTIONS(2251), - [anon_sym_override] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_any] = ACTIONS(2251), - [anon_sym_number] = ACTIONS(2251), - [anon_sym_boolean] = ACTIONS(2251), - [anon_sym_string] = ACTIONS(2251), - [anon_sym_symbol] = ACTIONS(2251), - [anon_sym_object] = ACTIONS(2251), - [anon_sym_abstract] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1428] = { - [sym_comment] = STATE(1428), - [ts_builtin_sym_end] = ACTIONS(3490), - [sym_identifier] = ACTIONS(3236), - [anon_sym_export] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3236), - [anon_sym_namespace] = ACTIONS(3236), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3236), - [anon_sym_typeof] = ACTIONS(3236), - [anon_sym_import] = ACTIONS(3236), - [anon_sym_with] = ACTIONS(3236), - [anon_sym_var] = ACTIONS(3236), - [anon_sym_let] = ACTIONS(3236), - [anon_sym_const] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_else] = ACTIONS(3236), - [anon_sym_if] = ACTIONS(3236), - [anon_sym_switch] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3236), - [anon_sym_await] = ACTIONS(3236), - [anon_sym_while] = ACTIONS(3236), - [anon_sym_do] = ACTIONS(3236), - [anon_sym_try] = ACTIONS(3236), - [anon_sym_break] = ACTIONS(3236), - [anon_sym_continue] = ACTIONS(3236), - [anon_sym_debugger] = ACTIONS(3236), - [anon_sym_return] = ACTIONS(3236), - [anon_sym_throw] = ACTIONS(3236), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_yield] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_LTtemplate_GT] = ACTIONS(3236), - [anon_sym_DQUOTE] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym_class] = ACTIONS(3236), - [anon_sym_async] = ACTIONS(3236), - [anon_sym_function] = ACTIONS(3236), - [anon_sym_new] = ACTIONS(3236), - [anon_sym_using] = ACTIONS(3236), - [anon_sym_PLUS] = ACTIONS(3236), - [anon_sym_DASH] = ACTIONS(3236), - [anon_sym_SLASH] = ACTIONS(3236), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_void] = ACTIONS(3236), - [anon_sym_delete] = ACTIONS(3236), - [anon_sym_PLUS_PLUS] = ACTIONS(3236), - [anon_sym_DASH_DASH] = ACTIONS(3236), + [1383] = { + [sym_comment] = STATE(1383), + [ts_builtin_sym_end] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3236), - [sym_number] = ACTIONS(3236), - [sym_private_property_identifier] = ACTIONS(3236), - [sym_this] = ACTIONS(3236), - [sym_super] = ACTIONS(3236), - [sym_true] = ACTIONS(3236), - [sym_false] = ACTIONS(3236), - [sym_null] = ACTIONS(3236), - [sym_undefined] = ACTIONS(3236), - [anon_sym_AT] = ACTIONS(3236), - [anon_sym_static] = ACTIONS(3236), - [anon_sym_readonly] = ACTIONS(3236), - [anon_sym_get] = ACTIONS(3236), - [anon_sym_set] = ACTIONS(3236), - [anon_sym_declare] = ACTIONS(3236), - [anon_sym_public] = ACTIONS(3236), - [anon_sym_private] = ACTIONS(3236), - [anon_sym_protected] = ACTIONS(3236), - [anon_sym_override] = ACTIONS(3236), - [anon_sym_module] = ACTIONS(3236), - [anon_sym_any] = ACTIONS(3236), - [anon_sym_number] = ACTIONS(3236), - [anon_sym_boolean] = ACTIONS(3236), - [anon_sym_string] = ACTIONS(3236), - [anon_sym_symbol] = ACTIONS(3236), - [anon_sym_object] = ACTIONS(3236), - [anon_sym_abstract] = ACTIONS(3236), - [anon_sym_interface] = ACTIONS(3236), - [anon_sym_enum] = ACTIONS(3236), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1429] = { - [sym_comment] = STATE(1429), - [ts_builtin_sym_end] = ACTIONS(3492), - [sym_identifier] = ACTIONS(3234), - [anon_sym_export] = ACTIONS(3234), - [anon_sym_type] = ACTIONS(3234), - [anon_sym_namespace] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_typeof] = ACTIONS(3234), - [anon_sym_import] = ACTIONS(3234), - [anon_sym_with] = ACTIONS(3234), - [anon_sym_var] = ACTIONS(3234), - [anon_sym_let] = ACTIONS(3234), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_await] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_debugger] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3234), - [anon_sym_yield] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_LTtemplate_GT] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_async] = ACTIONS(3234), - [anon_sym_function] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3234), - [anon_sym_TILDE] = ACTIONS(3234), - [anon_sym_void] = ACTIONS(3234), - [anon_sym_delete] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), + [1384] = { + [sym_comment] = STATE(1384), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3234), - [sym_number] = ACTIONS(3234), - [sym_private_property_identifier] = ACTIONS(3234), - [sym_this] = ACTIONS(3234), - [sym_super] = ACTIONS(3234), - [sym_true] = ACTIONS(3234), - [sym_false] = ACTIONS(3234), - [sym_null] = ACTIONS(3234), - [sym_undefined] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_readonly] = ACTIONS(3234), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_declare] = ACTIONS(3234), - [anon_sym_public] = ACTIONS(3234), - [anon_sym_private] = ACTIONS(3234), - [anon_sym_protected] = ACTIONS(3234), - [anon_sym_override] = ACTIONS(3234), - [anon_sym_module] = ACTIONS(3234), - [anon_sym_any] = ACTIONS(3234), - [anon_sym_number] = ACTIONS(3234), - [anon_sym_boolean] = ACTIONS(3234), - [anon_sym_string] = ACTIONS(3234), - [anon_sym_symbol] = ACTIONS(3234), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_abstract] = ACTIONS(3234), - [anon_sym_interface] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1430] = { - [sym_comment] = STATE(1430), - [ts_builtin_sym_end] = ACTIONS(3492), - [sym_identifier] = ACTIONS(3234), - [anon_sym_export] = ACTIONS(3234), - [anon_sym_type] = ACTIONS(3234), - [anon_sym_namespace] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_typeof] = ACTIONS(3234), - [anon_sym_import] = ACTIONS(3234), - [anon_sym_with] = ACTIONS(3234), - [anon_sym_var] = ACTIONS(3234), - [anon_sym_let] = ACTIONS(3234), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_await] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_debugger] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3234), - [anon_sym_yield] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_LTtemplate_GT] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_async] = ACTIONS(3234), - [anon_sym_function] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3234), - [anon_sym_TILDE] = ACTIONS(3234), - [anon_sym_void] = ACTIONS(3234), - [anon_sym_delete] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), + [1385] = { + [sym_comment] = STATE(1385), + [ts_builtin_sym_end] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3234), - [sym_number] = ACTIONS(3234), - [sym_private_property_identifier] = ACTIONS(3234), - [sym_this] = ACTIONS(3234), - [sym_super] = ACTIONS(3234), - [sym_true] = ACTIONS(3234), - [sym_false] = ACTIONS(3234), - [sym_null] = ACTIONS(3234), - [sym_undefined] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_readonly] = ACTIONS(3234), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_declare] = ACTIONS(3234), - [anon_sym_public] = ACTIONS(3234), - [anon_sym_private] = ACTIONS(3234), - [anon_sym_protected] = ACTIONS(3234), - [anon_sym_override] = ACTIONS(3234), - [anon_sym_module] = ACTIONS(3234), - [anon_sym_any] = ACTIONS(3234), - [anon_sym_number] = ACTIONS(3234), - [anon_sym_boolean] = ACTIONS(3234), - [anon_sym_string] = ACTIONS(3234), - [anon_sym_symbol] = ACTIONS(3234), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_abstract] = ACTIONS(3234), - [anon_sym_interface] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1431] = { - [sym_comment] = STATE(1431), - [sym_identifier] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_default] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_typeof] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_var] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_case] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LTtemplate_GT] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_delete] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2145), - [sym_number] = ACTIONS(2145), - [sym_private_property_identifier] = ACTIONS(2145), - [sym_this] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2145), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_declare] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_protected] = ACTIONS(2145), - [anon_sym_override] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2145), - [anon_sym_any] = ACTIONS(2145), - [anon_sym_number] = ACTIONS(2145), - [anon_sym_boolean] = ACTIONS(2145), - [anon_sym_string] = ACTIONS(2145), - [anon_sym_symbol] = ACTIONS(2145), - [anon_sym_object] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), + [1386] = { + [sym_comment] = STATE(1386), + [ts_builtin_sym_end] = ACTIONS(2365), + [sym_identifier] = ACTIONS(2083), + [anon_sym_export] = ACTIONS(2083), + [anon_sym_type] = ACTIONS(2083), + [anon_sym_namespace] = ACTIONS(2083), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_RBRACE] = ACTIONS(2083), + [anon_sym_typeof] = ACTIONS(2083), + [anon_sym_import] = ACTIONS(2083), + [anon_sym_with] = ACTIONS(2083), + [anon_sym_var] = ACTIONS(2083), + [anon_sym_let] = ACTIONS(2083), + [anon_sym_const] = ACTIONS(2083), + [anon_sym_BANG] = ACTIONS(2083), + [anon_sym_if] = ACTIONS(2083), + [anon_sym_switch] = ACTIONS(2083), + [anon_sym_for] = ACTIONS(2083), + [anon_sym_LPAREN] = ACTIONS(2083), + [anon_sym_await] = ACTIONS(2083), + [anon_sym_while] = ACTIONS(2083), + [anon_sym_do] = ACTIONS(2083), + [anon_sym_try] = ACTIONS(2083), + [anon_sym_break] = ACTIONS(2083), + [anon_sym_continue] = ACTIONS(2083), + [anon_sym_debugger] = ACTIONS(2083), + [anon_sym_return] = ACTIONS(2083), + [anon_sym_throw] = ACTIONS(2083), + [anon_sym_SEMI] = ACTIONS(2083), + [anon_sym_yield] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(2083), + [anon_sym_LTtemplate_GT] = ACTIONS(2083), + [anon_sym_DQUOTE] = ACTIONS(2083), + [anon_sym_SQUOTE] = ACTIONS(2083), + [anon_sym_class] = ACTIONS(2083), + [anon_sym_async] = ACTIONS(2083), + [anon_sym_function] = ACTIONS(2083), + [anon_sym_new] = ACTIONS(2083), + [anon_sym_using] = ACTIONS(2083), + [anon_sym_PLUS] = ACTIONS(2083), + [anon_sym_DASH] = ACTIONS(2083), + [anon_sym_SLASH] = ACTIONS(2083), + [anon_sym_LT] = ACTIONS(2083), + [anon_sym_TILDE] = ACTIONS(2083), + [anon_sym_void] = ACTIONS(2083), + [anon_sym_delete] = ACTIONS(2083), + [anon_sym_PLUS_PLUS] = ACTIONS(2083), + [anon_sym_DASH_DASH] = ACTIONS(2083), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2083), + [sym_number] = ACTIONS(2083), + [sym_private_property_identifier] = ACTIONS(2083), + [sym_this] = ACTIONS(2083), + [sym_super] = ACTIONS(2083), + [sym_true] = ACTIONS(2083), + [sym_false] = ACTIONS(2083), + [sym_null] = ACTIONS(2083), + [sym_undefined] = ACTIONS(2083), + [anon_sym_AT] = ACTIONS(2083), + [anon_sym_static] = ACTIONS(2083), + [anon_sym_readonly] = ACTIONS(2083), + [anon_sym_get] = ACTIONS(2083), + [anon_sym_set] = ACTIONS(2083), + [anon_sym_declare] = ACTIONS(2083), + [anon_sym_public] = ACTIONS(2083), + [anon_sym_private] = ACTIONS(2083), + [anon_sym_protected] = ACTIONS(2083), + [anon_sym_override] = ACTIONS(2083), + [anon_sym_module] = ACTIONS(2083), + [anon_sym_any] = ACTIONS(2083), + [anon_sym_number] = ACTIONS(2083), + [anon_sym_boolean] = ACTIONS(2083), + [anon_sym_string] = ACTIONS(2083), + [anon_sym_symbol] = ACTIONS(2083), + [anon_sym_object] = ACTIONS(2083), + [anon_sym_abstract] = ACTIONS(2083), + [anon_sym_interface] = ACTIONS(2083), + [anon_sym_enum] = ACTIONS(2083), + [sym__automatic_semicolon] = ACTIONS(2441), [sym_html_comment] = ACTIONS(5), }, - [1432] = { - [sym_comment] = STATE(1432), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_default] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_case] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), + [1387] = { + [sym_comment] = STATE(1387), + [ts_builtin_sym_end] = ACTIONS(2343), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2197), + [anon_sym_RBRACE] = ACTIONS(2197), + [anon_sym_typeof] = ACTIONS(2197), + [anon_sym_import] = ACTIONS(2197), + [anon_sym_with] = ACTIONS(2197), + [anon_sym_var] = ACTIONS(2197), + [anon_sym_let] = ACTIONS(2197), + [anon_sym_const] = ACTIONS(2197), + [anon_sym_BANG] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2197), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_break] = ACTIONS(2197), + [anon_sym_continue] = ACTIONS(2197), + [anon_sym_debugger] = ACTIONS(2197), + [anon_sym_return] = ACTIONS(2197), + [anon_sym_throw] = ACTIONS(2197), + [anon_sym_SEMI] = ACTIONS(2197), + [anon_sym_yield] = ACTIONS(2197), + [anon_sym_LBRACK] = ACTIONS(2197), + [anon_sym_LTtemplate_GT] = ACTIONS(2197), + [anon_sym_DQUOTE] = ACTIONS(2197), + [anon_sym_SQUOTE] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_using] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_LT] = ACTIONS(2197), + [anon_sym_TILDE] = ACTIONS(2197), + [anon_sym_void] = ACTIONS(2197), + [anon_sym_delete] = ACTIONS(2197), + [anon_sym_PLUS_PLUS] = ACTIONS(2197), + [anon_sym_DASH_DASH] = ACTIONS(2197), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2197), + [sym_number] = ACTIONS(2197), + [sym_private_property_identifier] = ACTIONS(2197), + [sym_this] = ACTIONS(2197), + [sym_super] = ACTIONS(2197), + [sym_true] = ACTIONS(2197), + [sym_false] = ACTIONS(2197), + [sym_null] = ACTIONS(2197), + [sym_undefined] = ACTIONS(2197), + [anon_sym_AT] = ACTIONS(2197), + [anon_sym_static] = ACTIONS(2197), + [anon_sym_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_override] = ACTIONS(2197), + [anon_sym_module] = ACTIONS(2197), + [anon_sym_any] = ACTIONS(2197), + [anon_sym_number] = ACTIONS(2197), + [anon_sym_boolean] = ACTIONS(2197), + [anon_sym_string] = ACTIONS(2197), + [anon_sym_symbol] = ACTIONS(2197), + [anon_sym_object] = ACTIONS(2197), + [anon_sym_abstract] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [sym__automatic_semicolon] = ACTIONS(2415), [sym_html_comment] = ACTIONS(5), }, - [1433] = { - [sym_comment] = STATE(1433), - [ts_builtin_sym_end] = ACTIONS(2147), - [sym_identifier] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_typeof] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_var] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LTtemplate_GT] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_delete] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2145), - [sym_number] = ACTIONS(2145), - [sym_private_property_identifier] = ACTIONS(2145), - [sym_this] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2145), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_declare] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_protected] = ACTIONS(2145), - [anon_sym_override] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2145), - [anon_sym_any] = ACTIONS(2145), - [anon_sym_number] = ACTIONS(2145), - [anon_sym_boolean] = ACTIONS(2145), - [anon_sym_string] = ACTIONS(2145), - [anon_sym_symbol] = ACTIONS(2145), - [anon_sym_object] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [sym__automatic_semicolon] = ACTIONS(2147), + [1388] = { + [sym_comment] = STATE(1388), + [ts_builtin_sym_end] = ACTIONS(3524), + [sym_identifier] = ACTIONS(3308), + [anon_sym_export] = ACTIONS(3308), + [anon_sym_type] = ACTIONS(3308), + [anon_sym_namespace] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_typeof] = ACTIONS(3308), + [anon_sym_import] = ACTIONS(3308), + [anon_sym_with] = ACTIONS(3308), + [anon_sym_var] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_else] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_switch] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_await] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_debugger] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_throw] = ACTIONS(3308), + [anon_sym_SEMI] = ACTIONS(3308), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LTtemplate_GT] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_class] = ACTIONS(3308), + [anon_sym_async] = ACTIONS(3308), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_using] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_SLASH] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_void] = ACTIONS(3308), + [anon_sym_delete] = ACTIONS(3308), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3308), + [sym_number] = ACTIONS(3308), + [sym_private_property_identifier] = ACTIONS(3308), + [sym_this] = ACTIONS(3308), + [sym_super] = ACTIONS(3308), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [sym_null] = ACTIONS(3308), + [sym_undefined] = ACTIONS(3308), + [anon_sym_AT] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_readonly] = ACTIONS(3308), + [anon_sym_get] = ACTIONS(3308), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_declare] = ACTIONS(3308), + [anon_sym_public] = ACTIONS(3308), + [anon_sym_private] = ACTIONS(3308), + [anon_sym_protected] = ACTIONS(3308), + [anon_sym_override] = ACTIONS(3308), + [anon_sym_module] = ACTIONS(3308), + [anon_sym_any] = ACTIONS(3308), + [anon_sym_number] = ACTIONS(3308), + [anon_sym_boolean] = ACTIONS(3308), + [anon_sym_string] = ACTIONS(3308), + [anon_sym_symbol] = ACTIONS(3308), + [anon_sym_object] = ACTIONS(3308), + [anon_sym_abstract] = ACTIONS(3308), + [anon_sym_interface] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), [sym_html_comment] = ACTIONS(5), }, - [1434] = { - [sym_comment] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(3494), - [sym_identifier] = ACTIONS(3232), - [anon_sym_export] = ACTIONS(3232), - [anon_sym_type] = ACTIONS(3232), - [anon_sym_namespace] = ACTIONS(3232), - [anon_sym_LBRACE] = ACTIONS(3232), - [anon_sym_RBRACE] = ACTIONS(3232), - [anon_sym_typeof] = ACTIONS(3232), - [anon_sym_import] = ACTIONS(3232), - [anon_sym_with] = ACTIONS(3232), - [anon_sym_var] = ACTIONS(3232), - [anon_sym_let] = ACTIONS(3232), - [anon_sym_const] = ACTIONS(3232), - [anon_sym_BANG] = ACTIONS(3232), - [anon_sym_else] = ACTIONS(3232), - [anon_sym_if] = ACTIONS(3232), - [anon_sym_switch] = ACTIONS(3232), - [anon_sym_for] = ACTIONS(3232), - [anon_sym_LPAREN] = ACTIONS(3232), - [anon_sym_await] = ACTIONS(3232), - [anon_sym_while] = ACTIONS(3232), - [anon_sym_do] = ACTIONS(3232), - [anon_sym_try] = ACTIONS(3232), - [anon_sym_break] = ACTIONS(3232), - [anon_sym_continue] = ACTIONS(3232), - [anon_sym_debugger] = ACTIONS(3232), - [anon_sym_return] = ACTIONS(3232), - [anon_sym_throw] = ACTIONS(3232), - [anon_sym_SEMI] = ACTIONS(3232), - [anon_sym_yield] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_LTtemplate_GT] = ACTIONS(3232), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3232), - [anon_sym_class] = ACTIONS(3232), - [anon_sym_async] = ACTIONS(3232), - [anon_sym_function] = ACTIONS(3232), - [anon_sym_new] = ACTIONS(3232), - [anon_sym_using] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3232), - [anon_sym_DASH] = ACTIONS(3232), - [anon_sym_SLASH] = ACTIONS(3232), - [anon_sym_LT] = ACTIONS(3232), - [anon_sym_TILDE] = ACTIONS(3232), - [anon_sym_void] = ACTIONS(3232), - [anon_sym_delete] = ACTIONS(3232), - [anon_sym_PLUS_PLUS] = ACTIONS(3232), - [anon_sym_DASH_DASH] = ACTIONS(3232), + [1389] = { + [sym_comment] = STATE(1389), + [ts_builtin_sym_end] = ACTIONS(3526), + [sym_identifier] = ACTIONS(3334), + [anon_sym_export] = ACTIONS(3334), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_namespace] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_typeof] = ACTIONS(3334), + [anon_sym_import] = ACTIONS(3334), + [anon_sym_with] = ACTIONS(3334), + [anon_sym_var] = ACTIONS(3334), + [anon_sym_let] = ACTIONS(3334), + [anon_sym_const] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_switch] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_await] = ACTIONS(3334), + [anon_sym_while] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_try] = ACTIONS(3334), + [anon_sym_break] = ACTIONS(3334), + [anon_sym_continue] = ACTIONS(3334), + [anon_sym_debugger] = ACTIONS(3334), + [anon_sym_return] = ACTIONS(3334), + [anon_sym_throw] = ACTIONS(3334), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_yield] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_LTtemplate_GT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_class] = ACTIONS(3334), + [anon_sym_async] = ACTIONS(3334), + [anon_sym_function] = ACTIONS(3334), + [anon_sym_new] = ACTIONS(3334), + [anon_sym_using] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_void] = ACTIONS(3334), + [anon_sym_delete] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3232), - [sym_number] = ACTIONS(3232), - [sym_private_property_identifier] = ACTIONS(3232), - [sym_this] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [sym_null] = ACTIONS(3232), - [sym_undefined] = ACTIONS(3232), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_static] = ACTIONS(3232), - [anon_sym_readonly] = ACTIONS(3232), - [anon_sym_get] = ACTIONS(3232), - [anon_sym_set] = ACTIONS(3232), - [anon_sym_declare] = ACTIONS(3232), - [anon_sym_public] = ACTIONS(3232), - [anon_sym_private] = ACTIONS(3232), - [anon_sym_protected] = ACTIONS(3232), - [anon_sym_override] = ACTIONS(3232), - [anon_sym_module] = ACTIONS(3232), - [anon_sym_any] = ACTIONS(3232), - [anon_sym_number] = ACTIONS(3232), - [anon_sym_boolean] = ACTIONS(3232), - [anon_sym_string] = ACTIONS(3232), - [anon_sym_symbol] = ACTIONS(3232), - [anon_sym_object] = ACTIONS(3232), - [anon_sym_abstract] = ACTIONS(3232), - [anon_sym_interface] = ACTIONS(3232), - [anon_sym_enum] = ACTIONS(3232), + [anon_sym_BQUOTE] = ACTIONS(3334), + [sym_number] = ACTIONS(3334), + [sym_private_property_identifier] = ACTIONS(3334), + [sym_this] = ACTIONS(3334), + [sym_super] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_null] = ACTIONS(3334), + [sym_undefined] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_static] = ACTIONS(3334), + [anon_sym_readonly] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3334), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_declare] = ACTIONS(3334), + [anon_sym_public] = ACTIONS(3334), + [anon_sym_private] = ACTIONS(3334), + [anon_sym_protected] = ACTIONS(3334), + [anon_sym_override] = ACTIONS(3334), + [anon_sym_module] = ACTIONS(3334), + [anon_sym_any] = ACTIONS(3334), + [anon_sym_number] = ACTIONS(3334), + [anon_sym_boolean] = ACTIONS(3334), + [anon_sym_string] = ACTIONS(3334), + [anon_sym_symbol] = ACTIONS(3334), + [anon_sym_object] = ACTIONS(3334), + [anon_sym_abstract] = ACTIONS(3334), + [anon_sym_interface] = ACTIONS(3334), + [anon_sym_enum] = ACTIONS(3334), [sym_html_comment] = ACTIONS(5), }, - [1435] = { - [sym_comment] = STATE(1435), - [sym_identifier] = ACTIONS(3366), - [anon_sym_export] = ACTIONS(3366), - [anon_sym_default] = ACTIONS(3366), - [anon_sym_type] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3366), - [anon_sym_RBRACE] = ACTIONS(3366), - [anon_sym_typeof] = ACTIONS(3366), - [anon_sym_import] = ACTIONS(3366), - [anon_sym_with] = ACTIONS(3366), - [anon_sym_var] = ACTIONS(3366), - [anon_sym_let] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_LPAREN] = ACTIONS(3366), - [anon_sym_await] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_debugger] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_SEMI] = ACTIONS(3366), - [anon_sym_case] = ACTIONS(3366), - [anon_sym_yield] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_LTtemplate_GT] = ACTIONS(3366), - [anon_sym_DQUOTE] = ACTIONS(3366), - [anon_sym_SQUOTE] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_async] = ACTIONS(3366), - [anon_sym_function] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_SLASH] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_void] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3366), - [anon_sym_PLUS_PLUS] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3366), + [1390] = { + [sym_comment] = STATE(1390), + [ts_builtin_sym_end] = ACTIONS(3526), + [sym_identifier] = ACTIONS(3334), + [anon_sym_export] = ACTIONS(3334), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_namespace] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_typeof] = ACTIONS(3334), + [anon_sym_import] = ACTIONS(3334), + [anon_sym_with] = ACTIONS(3334), + [anon_sym_var] = ACTIONS(3334), + [anon_sym_let] = ACTIONS(3334), + [anon_sym_const] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_switch] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_await] = ACTIONS(3334), + [anon_sym_while] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_try] = ACTIONS(3334), + [anon_sym_break] = ACTIONS(3334), + [anon_sym_continue] = ACTIONS(3334), + [anon_sym_debugger] = ACTIONS(3334), + [anon_sym_return] = ACTIONS(3334), + [anon_sym_throw] = ACTIONS(3334), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_yield] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_LTtemplate_GT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_class] = ACTIONS(3334), + [anon_sym_async] = ACTIONS(3334), + [anon_sym_function] = ACTIONS(3334), + [anon_sym_new] = ACTIONS(3334), + [anon_sym_using] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_void] = ACTIONS(3334), + [anon_sym_delete] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3366), - [sym_number] = ACTIONS(3366), - [sym_private_property_identifier] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), - [sym_super] = ACTIONS(3366), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [sym_null] = ACTIONS(3366), - [sym_undefined] = ACTIONS(3366), - [anon_sym_AT] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_readonly] = ACTIONS(3366), - [anon_sym_get] = ACTIONS(3366), - [anon_sym_set] = ACTIONS(3366), - [anon_sym_declare] = ACTIONS(3366), - [anon_sym_public] = ACTIONS(3366), - [anon_sym_private] = ACTIONS(3366), - [anon_sym_protected] = ACTIONS(3366), - [anon_sym_override] = ACTIONS(3366), - [anon_sym_module] = ACTIONS(3366), - [anon_sym_any] = ACTIONS(3366), - [anon_sym_number] = ACTIONS(3366), - [anon_sym_boolean] = ACTIONS(3366), - [anon_sym_string] = ACTIONS(3366), - [anon_sym_symbol] = ACTIONS(3366), - [anon_sym_object] = ACTIONS(3366), - [anon_sym_abstract] = ACTIONS(3366), - [anon_sym_interface] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), + [anon_sym_BQUOTE] = ACTIONS(3334), + [sym_number] = ACTIONS(3334), + [sym_private_property_identifier] = ACTIONS(3334), + [sym_this] = ACTIONS(3334), + [sym_super] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_null] = ACTIONS(3334), + [sym_undefined] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_static] = ACTIONS(3334), + [anon_sym_readonly] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3334), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_declare] = ACTIONS(3334), + [anon_sym_public] = ACTIONS(3334), + [anon_sym_private] = ACTIONS(3334), + [anon_sym_protected] = ACTIONS(3334), + [anon_sym_override] = ACTIONS(3334), + [anon_sym_module] = ACTIONS(3334), + [anon_sym_any] = ACTIONS(3334), + [anon_sym_number] = ACTIONS(3334), + [anon_sym_boolean] = ACTIONS(3334), + [anon_sym_string] = ACTIONS(3334), + [anon_sym_symbol] = ACTIONS(3334), + [anon_sym_object] = ACTIONS(3334), + [anon_sym_abstract] = ACTIONS(3334), + [anon_sym_interface] = ACTIONS(3334), + [anon_sym_enum] = ACTIONS(3334), [sym_html_comment] = ACTIONS(5), }, - [1436] = { - [sym_comment] = STATE(1436), - [sym_identifier] = ACTIONS(3364), - [anon_sym_export] = ACTIONS(3364), - [anon_sym_default] = ACTIONS(3364), - [anon_sym_type] = ACTIONS(3364), - [anon_sym_namespace] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_RBRACE] = ACTIONS(3364), - [anon_sym_typeof] = ACTIONS(3364), - [anon_sym_import] = ACTIONS(3364), - [anon_sym_with] = ACTIONS(3364), - [anon_sym_var] = ACTIONS(3364), - [anon_sym_let] = ACTIONS(3364), - [anon_sym_const] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_if] = ACTIONS(3364), - [anon_sym_switch] = ACTIONS(3364), - [anon_sym_for] = ACTIONS(3364), - [anon_sym_LPAREN] = ACTIONS(3364), - [anon_sym_await] = ACTIONS(3364), - [anon_sym_while] = ACTIONS(3364), - [anon_sym_do] = ACTIONS(3364), - [anon_sym_try] = ACTIONS(3364), - [anon_sym_break] = ACTIONS(3364), - [anon_sym_continue] = ACTIONS(3364), - [anon_sym_debugger] = ACTIONS(3364), - [anon_sym_return] = ACTIONS(3364), - [anon_sym_throw] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_case] = ACTIONS(3364), - [anon_sym_yield] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_LTtemplate_GT] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_class] = ACTIONS(3364), - [anon_sym_async] = ACTIONS(3364), - [anon_sym_function] = ACTIONS(3364), - [anon_sym_new] = ACTIONS(3364), - [anon_sym_using] = ACTIONS(3364), - [anon_sym_PLUS] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3364), - [anon_sym_SLASH] = ACTIONS(3364), - [anon_sym_LT] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_void] = ACTIONS(3364), - [anon_sym_delete] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_DASH_DASH] = ACTIONS(3364), + [1391] = { + [sym_comment] = STATE(1391), + [ts_builtin_sym_end] = ACTIONS(3528), + [sym_identifier] = ACTIONS(3332), + [anon_sym_export] = ACTIONS(3332), + [anon_sym_type] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3332), + [anon_sym_RBRACE] = ACTIONS(3332), + [anon_sym_typeof] = ACTIONS(3332), + [anon_sym_import] = ACTIONS(3332), + [anon_sym_with] = ACTIONS(3332), + [anon_sym_var] = ACTIONS(3332), + [anon_sym_let] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_else] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3332), + [anon_sym_await] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_debugger] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3332), + [anon_sym_yield] = ACTIONS(3332), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_LTtemplate_GT] = ACTIONS(3332), + [anon_sym_DQUOTE] = ACTIONS(3332), + [anon_sym_SQUOTE] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_async] = ACTIONS(3332), + [anon_sym_function] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_SLASH] = ACTIONS(3332), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3332), + [anon_sym_void] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_PLUS_PLUS] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3332), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3364), - [sym_number] = ACTIONS(3364), - [sym_private_property_identifier] = ACTIONS(3364), - [sym_this] = ACTIONS(3364), - [sym_super] = ACTIONS(3364), - [sym_true] = ACTIONS(3364), - [sym_false] = ACTIONS(3364), - [sym_null] = ACTIONS(3364), - [sym_undefined] = ACTIONS(3364), - [anon_sym_AT] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(3364), - [anon_sym_readonly] = ACTIONS(3364), - [anon_sym_get] = ACTIONS(3364), - [anon_sym_set] = ACTIONS(3364), - [anon_sym_declare] = ACTIONS(3364), - [anon_sym_public] = ACTIONS(3364), - [anon_sym_private] = ACTIONS(3364), - [anon_sym_protected] = ACTIONS(3364), - [anon_sym_override] = ACTIONS(3364), - [anon_sym_module] = ACTIONS(3364), - [anon_sym_any] = ACTIONS(3364), - [anon_sym_number] = ACTIONS(3364), - [anon_sym_boolean] = ACTIONS(3364), - [anon_sym_string] = ACTIONS(3364), - [anon_sym_symbol] = ACTIONS(3364), - [anon_sym_object] = ACTIONS(3364), - [anon_sym_abstract] = ACTIONS(3364), - [anon_sym_interface] = ACTIONS(3364), - [anon_sym_enum] = ACTIONS(3364), - [sym_html_comment] = ACTIONS(5), - }, - [1437] = { - [sym_comment] = STATE(1437), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_default] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_case] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), + [anon_sym_BQUOTE] = ACTIONS(3332), + [sym_number] = ACTIONS(3332), + [sym_private_property_identifier] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), + [sym_super] = ACTIONS(3332), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [sym_null] = ACTIONS(3332), + [sym_undefined] = ACTIONS(3332), + [anon_sym_AT] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_readonly] = ACTIONS(3332), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_declare] = ACTIONS(3332), + [anon_sym_public] = ACTIONS(3332), + [anon_sym_private] = ACTIONS(3332), + [anon_sym_protected] = ACTIONS(3332), + [anon_sym_override] = ACTIONS(3332), + [anon_sym_module] = ACTIONS(3332), + [anon_sym_any] = ACTIONS(3332), + [anon_sym_number] = ACTIONS(3332), + [anon_sym_boolean] = ACTIONS(3332), + [anon_sym_string] = ACTIONS(3332), + [anon_sym_symbol] = ACTIONS(3332), + [anon_sym_object] = ACTIONS(3332), + [anon_sym_abstract] = ACTIONS(3332), + [anon_sym_interface] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), [sym_html_comment] = ACTIONS(5), }, - [1438] = { - [sym_comment] = STATE(1438), - [ts_builtin_sym_end] = ACTIONS(3496), - [sym_identifier] = ACTIONS(3230), - [anon_sym_export] = ACTIONS(3230), - [anon_sym_type] = ACTIONS(3230), - [anon_sym_namespace] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3230), - [anon_sym_RBRACE] = ACTIONS(3230), - [anon_sym_typeof] = ACTIONS(3230), - [anon_sym_import] = ACTIONS(3230), - [anon_sym_with] = ACTIONS(3230), - [anon_sym_var] = ACTIONS(3230), - [anon_sym_let] = ACTIONS(3230), - [anon_sym_const] = ACTIONS(3230), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_else] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_switch] = ACTIONS(3230), - [anon_sym_for] = ACTIONS(3230), - [anon_sym_LPAREN] = ACTIONS(3230), - [anon_sym_await] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_do] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_debugger] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3230), - [anon_sym_yield] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_LTtemplate_GT] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_class] = ACTIONS(3230), - [anon_sym_async] = ACTIONS(3230), - [anon_sym_function] = ACTIONS(3230), - [anon_sym_new] = ACTIONS(3230), - [anon_sym_using] = ACTIONS(3230), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_TILDE] = ACTIONS(3230), - [anon_sym_void] = ACTIONS(3230), - [anon_sym_delete] = ACTIONS(3230), - [anon_sym_PLUS_PLUS] = ACTIONS(3230), - [anon_sym_DASH_DASH] = ACTIONS(3230), + [1392] = { + [sym_comment] = STATE(1392), + [ts_builtin_sym_end] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3230), - [sym_number] = ACTIONS(3230), - [sym_private_property_identifier] = ACTIONS(3230), - [sym_this] = ACTIONS(3230), - [sym_super] = ACTIONS(3230), - [sym_true] = ACTIONS(3230), - [sym_false] = ACTIONS(3230), - [sym_null] = ACTIONS(3230), - [sym_undefined] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3230), - [anon_sym_readonly] = ACTIONS(3230), - [anon_sym_get] = ACTIONS(3230), - [anon_sym_set] = ACTIONS(3230), - [anon_sym_declare] = ACTIONS(3230), - [anon_sym_public] = ACTIONS(3230), - [anon_sym_private] = ACTIONS(3230), - [anon_sym_protected] = ACTIONS(3230), - [anon_sym_override] = ACTIONS(3230), - [anon_sym_module] = ACTIONS(3230), - [anon_sym_any] = ACTIONS(3230), - [anon_sym_number] = ACTIONS(3230), - [anon_sym_boolean] = ACTIONS(3230), - [anon_sym_string] = ACTIONS(3230), - [anon_sym_symbol] = ACTIONS(3230), - [anon_sym_object] = ACTIONS(3230), - [anon_sym_abstract] = ACTIONS(3230), - [anon_sym_interface] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3230), - [sym_html_comment] = ACTIONS(5), - }, - [1439] = { - [sym_comment] = STATE(1439), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1440] = { - [sym_comment] = STATE(1440), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1441] = { - [sym_comment] = STATE(1441), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1393] = { + [sym_comment] = STATE(1393), + [sym_identifier] = ACTIONS(3132), + [anon_sym_export] = ACTIONS(3132), + [anon_sym_default] = ACTIONS(3132), + [anon_sym_type] = ACTIONS(3132), + [anon_sym_namespace] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_typeof] = ACTIONS(3132), + [anon_sym_import] = ACTIONS(3132), + [anon_sym_with] = ACTIONS(3132), + [anon_sym_var] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_switch] = ACTIONS(3132), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_await] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_debugger] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_case] = ACTIONS(3132), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LTtemplate_GT] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3132), + [anon_sym_class] = ACTIONS(3132), + [anon_sym_async] = ACTIONS(3132), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_using] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_SLASH] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_void] = ACTIONS(3132), + [anon_sym_delete] = ACTIONS(3132), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3132), + [sym_private_property_identifier] = ACTIONS(3132), + [sym_this] = ACTIONS(3132), + [sym_super] = ACTIONS(3132), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_AT] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3132), + [anon_sym_set] = ACTIONS(3132), + [anon_sym_declare] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_module] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_interface] = ACTIONS(3132), + [anon_sym_enum] = ACTIONS(3132), [sym_html_comment] = ACTIONS(5), }, - [1442] = { - [sym_comment] = STATE(1442), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1443] = { - [sym_comment] = STATE(1443), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1394] = { + [sym_comment] = STATE(1394), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1444] = { - [sym_comment] = STATE(1444), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1395] = { + [sym_comment] = STATE(1395), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1445] = { - [sym_comment] = STATE(1445), - [ts_builtin_sym_end] = ACTIONS(3498), - [sym_identifier] = ACTIONS(3358), - [anon_sym_export] = ACTIONS(3358), - [anon_sym_type] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_RBRACE] = ACTIONS(3358), - [anon_sym_typeof] = ACTIONS(3358), - [anon_sym_import] = ACTIONS(3358), - [anon_sym_with] = ACTIONS(3358), - [anon_sym_var] = ACTIONS(3358), - [anon_sym_let] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3358), - [anon_sym_else] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_await] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_debugger] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_LTtemplate_GT] = ACTIONS(3358), - [anon_sym_DQUOTE] = ACTIONS(3358), - [anon_sym_SQUOTE] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_async] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_void] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), + [1396] = { + [sym_comment] = STATE(1396), + [ts_builtin_sym_end] = ACTIONS(3530), + [sym_identifier] = ACTIONS(3202), + [anon_sym_export] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3202), + [anon_sym_typeof] = ACTIONS(3202), + [anon_sym_import] = ACTIONS(3202), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_var] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_else] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_await] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_debugger] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_throw] = ACTIONS(3202), + [anon_sym_SEMI] = ACTIONS(3202), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LTtemplate_GT] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_SQUOTE] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_async] = ACTIONS(3202), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_using] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3202), + [anon_sym_void] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3202), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3358), - [sym_number] = ACTIONS(3358), - [sym_private_property_identifier] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), - [sym_super] = ACTIONS(3358), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [sym_null] = ACTIONS(3358), - [sym_undefined] = ACTIONS(3358), - [anon_sym_AT] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3358), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_declare] = ACTIONS(3358), - [anon_sym_public] = ACTIONS(3358), - [anon_sym_private] = ACTIONS(3358), - [anon_sym_protected] = ACTIONS(3358), - [anon_sym_override] = ACTIONS(3358), - [anon_sym_module] = ACTIONS(3358), - [anon_sym_any] = ACTIONS(3358), - [anon_sym_number] = ACTIONS(3358), - [anon_sym_boolean] = ACTIONS(3358), - [anon_sym_string] = ACTIONS(3358), - [anon_sym_symbol] = ACTIONS(3358), - [anon_sym_object] = ACTIONS(3358), - [anon_sym_abstract] = ACTIONS(3358), - [anon_sym_interface] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), + [anon_sym_BQUOTE] = ACTIONS(3202), + [sym_number] = ACTIONS(3202), + [sym_private_property_identifier] = ACTIONS(3202), + [sym_this] = ACTIONS(3202), + [sym_super] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_null] = ACTIONS(3202), + [sym_undefined] = ACTIONS(3202), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_readonly] = ACTIONS(3202), + [anon_sym_get] = ACTIONS(3202), + [anon_sym_set] = ACTIONS(3202), + [anon_sym_declare] = ACTIONS(3202), + [anon_sym_public] = ACTIONS(3202), + [anon_sym_private] = ACTIONS(3202), + [anon_sym_protected] = ACTIONS(3202), + [anon_sym_override] = ACTIONS(3202), + [anon_sym_module] = ACTIONS(3202), + [anon_sym_any] = ACTIONS(3202), + [anon_sym_number] = ACTIONS(3202), + [anon_sym_boolean] = ACTIONS(3202), + [anon_sym_string] = ACTIONS(3202), + [anon_sym_symbol] = ACTIONS(3202), + [anon_sym_object] = ACTIONS(3202), + [anon_sym_abstract] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), [sym_html_comment] = ACTIONS(5), }, - [1446] = { - [sym_comment] = STATE(1446), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1397] = { + [sym_comment] = STATE(1397), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1447] = { - [sym_comment] = STATE(1447), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1398] = { + [sym_comment] = STATE(1398), + [ts_builtin_sym_end] = ACTIONS(3532), + [sym_identifier] = ACTIONS(3324), + [anon_sym_export] = ACTIONS(3324), + [anon_sym_type] = ACTIONS(3324), + [anon_sym_namespace] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_typeof] = ACTIONS(3324), + [anon_sym_import] = ACTIONS(3324), + [anon_sym_with] = ACTIONS(3324), + [anon_sym_var] = ACTIONS(3324), + [anon_sym_let] = ACTIONS(3324), + [anon_sym_const] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_else] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_switch] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_await] = ACTIONS(3324), + [anon_sym_while] = ACTIONS(3324), + [anon_sym_do] = ACTIONS(3324), + [anon_sym_try] = ACTIONS(3324), + [anon_sym_break] = ACTIONS(3324), + [anon_sym_continue] = ACTIONS(3324), + [anon_sym_debugger] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3324), + [anon_sym_throw] = ACTIONS(3324), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3324), + [anon_sym_LTtemplate_GT] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_class] = ACTIONS(3324), + [anon_sym_async] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3324), + [anon_sym_using] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_void] = ACTIONS(3324), + [anon_sym_delete] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3324), + [sym_number] = ACTIONS(3324), + [sym_private_property_identifier] = ACTIONS(3324), + [sym_this] = ACTIONS(3324), + [sym_super] = ACTIONS(3324), + [sym_true] = ACTIONS(3324), + [sym_false] = ACTIONS(3324), + [sym_null] = ACTIONS(3324), + [sym_undefined] = ACTIONS(3324), + [anon_sym_AT] = ACTIONS(3324), + [anon_sym_static] = ACTIONS(3324), + [anon_sym_readonly] = ACTIONS(3324), + [anon_sym_get] = ACTIONS(3324), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_declare] = ACTIONS(3324), + [anon_sym_public] = ACTIONS(3324), + [anon_sym_private] = ACTIONS(3324), + [anon_sym_protected] = ACTIONS(3324), + [anon_sym_override] = ACTIONS(3324), + [anon_sym_module] = ACTIONS(3324), + [anon_sym_any] = ACTIONS(3324), + [anon_sym_number] = ACTIONS(3324), + [anon_sym_boolean] = ACTIONS(3324), + [anon_sym_string] = ACTIONS(3324), + [anon_sym_symbol] = ACTIONS(3324), + [anon_sym_object] = ACTIONS(3324), + [anon_sym_abstract] = ACTIONS(3324), + [anon_sym_interface] = ACTIONS(3324), + [anon_sym_enum] = ACTIONS(3324), [sym_html_comment] = ACTIONS(5), }, - [1448] = { - [sym_comment] = STATE(1448), - [ts_builtin_sym_end] = ACTIONS(3498), - [sym_identifier] = ACTIONS(3358), - [anon_sym_export] = ACTIONS(3358), - [anon_sym_type] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_RBRACE] = ACTIONS(3358), - [anon_sym_typeof] = ACTIONS(3358), - [anon_sym_import] = ACTIONS(3358), - [anon_sym_with] = ACTIONS(3358), - [anon_sym_var] = ACTIONS(3358), - [anon_sym_let] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3358), - [anon_sym_else] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_await] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_debugger] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_LTtemplate_GT] = ACTIONS(3358), - [anon_sym_DQUOTE] = ACTIONS(3358), - [anon_sym_SQUOTE] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_async] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_void] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), + [1399] = { + [sym_comment] = STATE(1399), + [ts_builtin_sym_end] = ACTIONS(2351), + [sym_identifier] = ACTIONS(2149), + [anon_sym_export] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2149), + [anon_sym_typeof] = ACTIONS(2149), + [anon_sym_import] = ACTIONS(2149), + [anon_sym_with] = ACTIONS(2149), + [anon_sym_var] = ACTIONS(2149), + [anon_sym_let] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_else] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_switch] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [anon_sym_do] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_debugger] = ACTIONS(2149), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_throw] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_LTtemplate_GT] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(2149), + [anon_sym_class] = ACTIONS(2149), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_function] = ACTIONS(2149), + [anon_sym_new] = ACTIONS(2149), + [anon_sym_using] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_SLASH] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_TILDE] = ACTIONS(2149), + [anon_sym_void] = ACTIONS(2149), + [anon_sym_delete] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2149), + [anon_sym_DASH_DASH] = ACTIONS(2149), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3358), - [sym_number] = ACTIONS(3358), - [sym_private_property_identifier] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), - [sym_super] = ACTIONS(3358), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [sym_null] = ACTIONS(3358), - [sym_undefined] = ACTIONS(3358), - [anon_sym_AT] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3358), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_declare] = ACTIONS(3358), - [anon_sym_public] = ACTIONS(3358), - [anon_sym_private] = ACTIONS(3358), - [anon_sym_protected] = ACTIONS(3358), - [anon_sym_override] = ACTIONS(3358), - [anon_sym_module] = ACTIONS(3358), - [anon_sym_any] = ACTIONS(3358), - [anon_sym_number] = ACTIONS(3358), - [anon_sym_boolean] = ACTIONS(3358), - [anon_sym_string] = ACTIONS(3358), - [anon_sym_symbol] = ACTIONS(3358), - [anon_sym_object] = ACTIONS(3358), - [anon_sym_abstract] = ACTIONS(3358), - [anon_sym_interface] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), + [anon_sym_BQUOTE] = ACTIONS(2149), + [sym_number] = ACTIONS(2149), + [sym_private_property_identifier] = ACTIONS(2149), + [sym_this] = ACTIONS(2149), + [sym_super] = ACTIONS(2149), + [sym_true] = ACTIONS(2149), + [sym_false] = ACTIONS(2149), + [sym_null] = ACTIONS(2149), + [sym_undefined] = ACTIONS(2149), + [anon_sym_AT] = ACTIONS(2149), + [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_abstract] = ACTIONS(2149), + [anon_sym_interface] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), [sym_html_comment] = ACTIONS(5), }, - [1449] = { - [sym_comment] = STATE(1449), - [ts_builtin_sym_end] = ACTIONS(3500), - [sym_identifier] = ACTIONS(3356), - [anon_sym_export] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_namespace] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_RBRACE] = ACTIONS(3356), - [anon_sym_typeof] = ACTIONS(3356), - [anon_sym_import] = ACTIONS(3356), - [anon_sym_with] = ACTIONS(3356), - [anon_sym_var] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_else] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_switch] = ACTIONS(3356), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_await] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_break] = ACTIONS(3356), - [anon_sym_continue] = ACTIONS(3356), - [anon_sym_debugger] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_throw] = ACTIONS(3356), - [anon_sym_SEMI] = ACTIONS(3356), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LTtemplate_GT] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(3356), - [anon_sym_class] = ACTIONS(3356), - [anon_sym_async] = ACTIONS(3356), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_using] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_SLASH] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_void] = ACTIONS(3356), - [anon_sym_delete] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_DASH_DASH] = ACTIONS(3356), + [1400] = { + [sym_comment] = STATE(1400), + [ts_builtin_sym_end] = ACTIONS(3534), + [sym_identifier] = ACTIONS(3204), + [anon_sym_export] = ACTIONS(3204), + [anon_sym_type] = ACTIONS(3204), + [anon_sym_namespace] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_RBRACE] = ACTIONS(3204), + [anon_sym_typeof] = ACTIONS(3204), + [anon_sym_import] = ACTIONS(3204), + [anon_sym_with] = ACTIONS(3204), + [anon_sym_var] = ACTIONS(3204), + [anon_sym_let] = ACTIONS(3204), + [anon_sym_const] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_switch] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_await] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_do] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_debugger] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3204), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_LTtemplate_GT] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3204), + [anon_sym_async] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3204), + [anon_sym_using] = ACTIONS(3204), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_void] = ACTIONS(3204), + [anon_sym_delete] = ACTIONS(3204), + [anon_sym_PLUS_PLUS] = ACTIONS(3204), + [anon_sym_DASH_DASH] = ACTIONS(3204), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3356), - [sym_number] = ACTIONS(3356), - [sym_private_property_identifier] = ACTIONS(3356), - [sym_this] = ACTIONS(3356), - [sym_super] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_null] = ACTIONS(3356), - [sym_undefined] = ACTIONS(3356), - [anon_sym_AT] = ACTIONS(3356), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3356), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3356), - [anon_sym_declare] = ACTIONS(3356), - [anon_sym_public] = ACTIONS(3356), - [anon_sym_private] = ACTIONS(3356), - [anon_sym_protected] = ACTIONS(3356), - [anon_sym_override] = ACTIONS(3356), - [anon_sym_module] = ACTIONS(3356), - [anon_sym_any] = ACTIONS(3356), - [anon_sym_number] = ACTIONS(3356), - [anon_sym_boolean] = ACTIONS(3356), - [anon_sym_string] = ACTIONS(3356), - [anon_sym_symbol] = ACTIONS(3356), - [anon_sym_object] = ACTIONS(3356), - [anon_sym_abstract] = ACTIONS(3356), - [anon_sym_interface] = ACTIONS(3356), - [anon_sym_enum] = ACTIONS(3356), + [anon_sym_BQUOTE] = ACTIONS(3204), + [sym_number] = ACTIONS(3204), + [sym_private_property_identifier] = ACTIONS(3204), + [sym_this] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_true] = ACTIONS(3204), + [sym_false] = ACTIONS(3204), + [sym_null] = ACTIONS(3204), + [sym_undefined] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3204), + [anon_sym_static] = ACTIONS(3204), + [anon_sym_readonly] = ACTIONS(3204), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_declare] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_module] = ACTIONS(3204), + [anon_sym_any] = ACTIONS(3204), + [anon_sym_number] = ACTIONS(3204), + [anon_sym_boolean] = ACTIONS(3204), + [anon_sym_string] = ACTIONS(3204), + [anon_sym_symbol] = ACTIONS(3204), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_interface] = ACTIONS(3204), + [anon_sym_enum] = ACTIONS(3204), [sym_html_comment] = ACTIONS(5), }, - [1450] = { - [sym_comment] = STATE(1450), - [ts_builtin_sym_end] = ACTIONS(3502), - [sym_identifier] = ACTIONS(3354), - [anon_sym_export] = ACTIONS(3354), - [anon_sym_type] = ACTIONS(3354), - [anon_sym_namespace] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_typeof] = ACTIONS(3354), - [anon_sym_import] = ACTIONS(3354), - [anon_sym_with] = ACTIONS(3354), - [anon_sym_var] = ACTIONS(3354), - [anon_sym_let] = ACTIONS(3354), - [anon_sym_const] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_else] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_await] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_debugger] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym_yield] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_LTtemplate_GT] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_async] = ACTIONS(3354), - [anon_sym_function] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_void] = ACTIONS(3354), - [anon_sym_delete] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), + [1401] = { + [sym_comment] = STATE(1401), + [ts_builtin_sym_end] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3354), - [sym_number] = ACTIONS(3354), - [sym_private_property_identifier] = ACTIONS(3354), - [sym_this] = ACTIONS(3354), - [sym_super] = ACTIONS(3354), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [sym_null] = ACTIONS(3354), - [sym_undefined] = ACTIONS(3354), - [anon_sym_AT] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_readonly] = ACTIONS(3354), - [anon_sym_get] = ACTIONS(3354), - [anon_sym_set] = ACTIONS(3354), - [anon_sym_declare] = ACTIONS(3354), - [anon_sym_public] = ACTIONS(3354), - [anon_sym_private] = ACTIONS(3354), - [anon_sym_protected] = ACTIONS(3354), - [anon_sym_override] = ACTIONS(3354), - [anon_sym_module] = ACTIONS(3354), - [anon_sym_any] = ACTIONS(3354), - [anon_sym_number] = ACTIONS(3354), - [anon_sym_boolean] = ACTIONS(3354), - [anon_sym_string] = ACTIONS(3354), - [anon_sym_symbol] = ACTIONS(3354), - [anon_sym_object] = ACTIONS(3354), - [anon_sym_abstract] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1451] = { - [sym_comment] = STATE(1451), - [ts_builtin_sym_end] = ACTIONS(3504), - [sym_identifier] = ACTIONS(3228), - [anon_sym_export] = ACTIONS(3228), - [anon_sym_type] = ACTIONS(3228), - [anon_sym_namespace] = ACTIONS(3228), - [anon_sym_LBRACE] = ACTIONS(3228), - [anon_sym_RBRACE] = ACTIONS(3228), - [anon_sym_typeof] = ACTIONS(3228), - [anon_sym_import] = ACTIONS(3228), - [anon_sym_with] = ACTIONS(3228), - [anon_sym_var] = ACTIONS(3228), - [anon_sym_let] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_else] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_LPAREN] = ACTIONS(3228), - [anon_sym_await] = ACTIONS(3228), - [anon_sym_while] = ACTIONS(3228), - [anon_sym_do] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3228), - [anon_sym_break] = ACTIONS(3228), - [anon_sym_continue] = ACTIONS(3228), - [anon_sym_debugger] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3228), - [anon_sym_throw] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3228), - [anon_sym_yield] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_LTtemplate_GT] = ACTIONS(3228), - [anon_sym_DQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_async] = ACTIONS(3228), - [anon_sym_function] = ACTIONS(3228), - [anon_sym_new] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3228), - [anon_sym_PLUS] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(3228), - [anon_sym_SLASH] = ACTIONS(3228), - [anon_sym_LT] = ACTIONS(3228), - [anon_sym_TILDE] = ACTIONS(3228), - [anon_sym_void] = ACTIONS(3228), - [anon_sym_delete] = ACTIONS(3228), - [anon_sym_PLUS_PLUS] = ACTIONS(3228), - [anon_sym_DASH_DASH] = ACTIONS(3228), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3228), - [sym_number] = ACTIONS(3228), - [sym_private_property_identifier] = ACTIONS(3228), - [sym_this] = ACTIONS(3228), - [sym_super] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_null] = ACTIONS(3228), - [sym_undefined] = ACTIONS(3228), - [anon_sym_AT] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_readonly] = ACTIONS(3228), - [anon_sym_get] = ACTIONS(3228), - [anon_sym_set] = ACTIONS(3228), - [anon_sym_declare] = ACTIONS(3228), - [anon_sym_public] = ACTIONS(3228), - [anon_sym_private] = ACTIONS(3228), - [anon_sym_protected] = ACTIONS(3228), - [anon_sym_override] = ACTIONS(3228), - [anon_sym_module] = ACTIONS(3228), - [anon_sym_any] = ACTIONS(3228), - [anon_sym_number] = ACTIONS(3228), - [anon_sym_boolean] = ACTIONS(3228), - [anon_sym_string] = ACTIONS(3228), - [anon_sym_symbol] = ACTIONS(3228), - [anon_sym_object] = ACTIONS(3228), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_interface] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), - [sym_html_comment] = ACTIONS(5), - }, - [1452] = { - [sym_comment] = STATE(1452), - [ts_builtin_sym_end] = ACTIONS(3506), - [sym_identifier] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3346), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_typeof] = ACTIONS(3346), - [anon_sym_import] = ACTIONS(3346), - [anon_sym_with] = ACTIONS(3346), - [anon_sym_var] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_await] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_debugger] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LTtemplate_GT] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_async] = ACTIONS(3346), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_void] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), + [1402] = { + [sym_comment] = STATE(1402), + [ts_builtin_sym_end] = ACTIONS(3536), + [sym_identifier] = ACTIONS(3160), + [anon_sym_export] = ACTIONS(3160), + [anon_sym_type] = ACTIONS(3160), + [anon_sym_namespace] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3160), + [anon_sym_RBRACE] = ACTIONS(3160), + [anon_sym_typeof] = ACTIONS(3160), + [anon_sym_import] = ACTIONS(3160), + [anon_sym_with] = ACTIONS(3160), + [anon_sym_var] = ACTIONS(3160), + [anon_sym_let] = ACTIONS(3160), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_switch] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_await] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_do] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_debugger] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_yield] = ACTIONS(3160), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_LTtemplate_GT] = ACTIONS(3160), + [anon_sym_DQUOTE] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3160), + [anon_sym_class] = ACTIONS(3160), + [anon_sym_async] = ACTIONS(3160), + [anon_sym_function] = ACTIONS(3160), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_using] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_void] = ACTIONS(3160), + [anon_sym_delete] = ACTIONS(3160), + [anon_sym_PLUS_PLUS] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3160), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3346), - [sym_number] = ACTIONS(3346), - [sym_private_property_identifier] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - [sym_super] = ACTIONS(3346), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [sym_null] = ACTIONS(3346), - [sym_undefined] = ACTIONS(3346), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_readonly] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3346), - [anon_sym_set] = ACTIONS(3346), - [anon_sym_declare] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3346), - [anon_sym_private] = ACTIONS(3346), - [anon_sym_protected] = ACTIONS(3346), - [anon_sym_override] = ACTIONS(3346), - [anon_sym_module] = ACTIONS(3346), - [anon_sym_any] = ACTIONS(3346), - [anon_sym_number] = ACTIONS(3346), - [anon_sym_boolean] = ACTIONS(3346), - [anon_sym_string] = ACTIONS(3346), - [anon_sym_symbol] = ACTIONS(3346), - [anon_sym_object] = ACTIONS(3346), - [anon_sym_abstract] = ACTIONS(3346), - [anon_sym_interface] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), + [anon_sym_BQUOTE] = ACTIONS(3160), + [sym_number] = ACTIONS(3160), + [sym_private_property_identifier] = ACTIONS(3160), + [sym_this] = ACTIONS(3160), + [sym_super] = ACTIONS(3160), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [sym_null] = ACTIONS(3160), + [sym_undefined] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3160), + [anon_sym_static] = ACTIONS(3160), + [anon_sym_readonly] = ACTIONS(3160), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_declare] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_module] = ACTIONS(3160), + [anon_sym_any] = ACTIONS(3160), + [anon_sym_number] = ACTIONS(3160), + [anon_sym_boolean] = ACTIONS(3160), + [anon_sym_string] = ACTIONS(3160), + [anon_sym_symbol] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_interface] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), [sym_html_comment] = ACTIONS(5), }, - [1453] = { - [sym_comment] = STATE(1453), - [ts_builtin_sym_end] = ACTIONS(3506), - [sym_identifier] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3346), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_typeof] = ACTIONS(3346), - [anon_sym_import] = ACTIONS(3346), - [anon_sym_with] = ACTIONS(3346), - [anon_sym_var] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_await] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_debugger] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LTtemplate_GT] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_async] = ACTIONS(3346), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_void] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), + [1403] = { + [sym_comment] = STATE(1403), + [sym_identifier] = ACTIONS(3210), + [anon_sym_export] = ACTIONS(3210), + [anon_sym_default] = ACTIONS(3210), + [anon_sym_type] = ACTIONS(3210), + [anon_sym_namespace] = ACTIONS(3210), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3210), + [anon_sym_typeof] = ACTIONS(3210), + [anon_sym_import] = ACTIONS(3210), + [anon_sym_with] = ACTIONS(3210), + [anon_sym_var] = ACTIONS(3210), + [anon_sym_let] = ACTIONS(3210), + [anon_sym_const] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_if] = ACTIONS(3210), + [anon_sym_switch] = ACTIONS(3210), + [anon_sym_for] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_await] = ACTIONS(3210), + [anon_sym_while] = ACTIONS(3210), + [anon_sym_do] = ACTIONS(3210), + [anon_sym_try] = ACTIONS(3210), + [anon_sym_break] = ACTIONS(3210), + [anon_sym_continue] = ACTIONS(3210), + [anon_sym_debugger] = ACTIONS(3210), + [anon_sym_return] = ACTIONS(3210), + [anon_sym_throw] = ACTIONS(3210), + [anon_sym_SEMI] = ACTIONS(3210), + [anon_sym_case] = ACTIONS(3210), + [anon_sym_yield] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3210), + [anon_sym_LTtemplate_GT] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3210), + [anon_sym_class] = ACTIONS(3210), + [anon_sym_async] = ACTIONS(3210), + [anon_sym_function] = ACTIONS(3210), + [anon_sym_new] = ACTIONS(3210), + [anon_sym_using] = ACTIONS(3210), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3210), + [anon_sym_SLASH] = ACTIONS(3210), + [anon_sym_LT] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3210), + [anon_sym_void] = ACTIONS(3210), + [anon_sym_delete] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3210), + [anon_sym_DASH_DASH] = ACTIONS(3210), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3346), - [sym_number] = ACTIONS(3346), - [sym_private_property_identifier] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - [sym_super] = ACTIONS(3346), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [sym_null] = ACTIONS(3346), - [sym_undefined] = ACTIONS(3346), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_readonly] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3346), - [anon_sym_set] = ACTIONS(3346), - [anon_sym_declare] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3346), - [anon_sym_private] = ACTIONS(3346), - [anon_sym_protected] = ACTIONS(3346), - [anon_sym_override] = ACTIONS(3346), - [anon_sym_module] = ACTIONS(3346), - [anon_sym_any] = ACTIONS(3346), - [anon_sym_number] = ACTIONS(3346), - [anon_sym_boolean] = ACTIONS(3346), - [anon_sym_string] = ACTIONS(3346), - [anon_sym_symbol] = ACTIONS(3346), - [anon_sym_object] = ACTIONS(3346), - [anon_sym_abstract] = ACTIONS(3346), - [anon_sym_interface] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), + [anon_sym_BQUOTE] = ACTIONS(3210), + [sym_number] = ACTIONS(3210), + [sym_private_property_identifier] = ACTIONS(3210), + [sym_this] = ACTIONS(3210), + [sym_super] = ACTIONS(3210), + [sym_true] = ACTIONS(3210), + [sym_false] = ACTIONS(3210), + [sym_null] = ACTIONS(3210), + [sym_undefined] = ACTIONS(3210), + [anon_sym_AT] = ACTIONS(3210), + [anon_sym_static] = ACTIONS(3210), + [anon_sym_readonly] = ACTIONS(3210), + [anon_sym_get] = ACTIONS(3210), + [anon_sym_set] = ACTIONS(3210), + [anon_sym_declare] = ACTIONS(3210), + [anon_sym_public] = ACTIONS(3210), + [anon_sym_private] = ACTIONS(3210), + [anon_sym_protected] = ACTIONS(3210), + [anon_sym_override] = ACTIONS(3210), + [anon_sym_module] = ACTIONS(3210), + [anon_sym_any] = ACTIONS(3210), + [anon_sym_number] = ACTIONS(3210), + [anon_sym_boolean] = ACTIONS(3210), + [anon_sym_string] = ACTIONS(3210), + [anon_sym_symbol] = ACTIONS(3210), + [anon_sym_object] = ACTIONS(3210), + [anon_sym_abstract] = ACTIONS(3210), + [anon_sym_interface] = ACTIONS(3210), + [anon_sym_enum] = ACTIONS(3210), [sym_html_comment] = ACTIONS(5), }, - [1454] = { - [sym_comment] = STATE(1454), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1404] = { + [sym_comment] = STATE(1404), + [ts_builtin_sym_end] = ACTIONS(2271), + [sym_identifier] = ACTIONS(2103), + [anon_sym_export] = ACTIONS(2103), + [anon_sym_type] = ACTIONS(2103), + [anon_sym_namespace] = ACTIONS(2103), + [anon_sym_LBRACE] = ACTIONS(2103), + [anon_sym_RBRACE] = ACTIONS(2103), + [anon_sym_typeof] = ACTIONS(2103), + [anon_sym_import] = ACTIONS(2103), + [anon_sym_with] = ACTIONS(2103), + [anon_sym_var] = ACTIONS(2103), + [anon_sym_let] = ACTIONS(2103), + [anon_sym_const] = ACTIONS(2103), + [anon_sym_BANG] = ACTIONS(2103), + [anon_sym_if] = ACTIONS(2103), + [anon_sym_switch] = ACTIONS(2103), + [anon_sym_for] = ACTIONS(2103), + [anon_sym_LPAREN] = ACTIONS(2103), + [anon_sym_await] = ACTIONS(2103), + [anon_sym_while] = ACTIONS(2103), + [anon_sym_do] = ACTIONS(2103), + [anon_sym_try] = ACTIONS(2103), + [anon_sym_break] = ACTIONS(2103), + [anon_sym_continue] = ACTIONS(2103), + [anon_sym_debugger] = ACTIONS(2103), + [anon_sym_return] = ACTIONS(2103), + [anon_sym_throw] = ACTIONS(2103), + [anon_sym_SEMI] = ACTIONS(2103), + [anon_sym_yield] = ACTIONS(2103), + [anon_sym_LBRACK] = ACTIONS(2103), + [anon_sym_LTtemplate_GT] = ACTIONS(2103), + [anon_sym_DQUOTE] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2103), + [anon_sym_class] = ACTIONS(2103), + [anon_sym_async] = ACTIONS(2103), + [anon_sym_function] = ACTIONS(2103), + [anon_sym_new] = ACTIONS(2103), + [anon_sym_using] = ACTIONS(2103), + [anon_sym_PLUS] = ACTIONS(2103), + [anon_sym_DASH] = ACTIONS(2103), + [anon_sym_SLASH] = ACTIONS(2103), + [anon_sym_LT] = ACTIONS(2103), + [anon_sym_TILDE] = ACTIONS(2103), + [anon_sym_void] = ACTIONS(2103), + [anon_sym_delete] = ACTIONS(2103), + [anon_sym_PLUS_PLUS] = ACTIONS(2103), + [anon_sym_DASH_DASH] = ACTIONS(2103), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2103), + [sym_number] = ACTIONS(2103), + [sym_private_property_identifier] = ACTIONS(2103), + [sym_this] = ACTIONS(2103), + [sym_super] = ACTIONS(2103), + [sym_true] = ACTIONS(2103), + [sym_false] = ACTIONS(2103), + [sym_null] = ACTIONS(2103), + [sym_undefined] = ACTIONS(2103), + [anon_sym_AT] = ACTIONS(2103), + [anon_sym_static] = ACTIONS(2103), + [anon_sym_readonly] = ACTIONS(2103), + [anon_sym_get] = ACTIONS(2103), + [anon_sym_set] = ACTIONS(2103), + [anon_sym_declare] = ACTIONS(2103), + [anon_sym_public] = ACTIONS(2103), + [anon_sym_private] = ACTIONS(2103), + [anon_sym_protected] = ACTIONS(2103), + [anon_sym_override] = ACTIONS(2103), + [anon_sym_module] = ACTIONS(2103), + [anon_sym_any] = ACTIONS(2103), + [anon_sym_number] = ACTIONS(2103), + [anon_sym_boolean] = ACTIONS(2103), + [anon_sym_string] = ACTIONS(2103), + [anon_sym_symbol] = ACTIONS(2103), + [anon_sym_object] = ACTIONS(2103), + [anon_sym_abstract] = ACTIONS(2103), + [anon_sym_interface] = ACTIONS(2103), + [anon_sym_enum] = ACTIONS(2103), + [sym__automatic_semicolon] = ACTIONS(2435), [sym_html_comment] = ACTIONS(5), }, - [1455] = { - [sym_comment] = STATE(1455), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1405] = { + [sym_comment] = STATE(1405), + [sym_identifier] = ACTIONS(3252), + [anon_sym_export] = ACTIONS(3252), + [anon_sym_default] = ACTIONS(3252), + [anon_sym_type] = ACTIONS(3252), + [anon_sym_namespace] = ACTIONS(3252), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_typeof] = ACTIONS(3252), + [anon_sym_import] = ACTIONS(3252), + [anon_sym_with] = ACTIONS(3252), + [anon_sym_var] = ACTIONS(3252), + [anon_sym_let] = ACTIONS(3252), + [anon_sym_const] = ACTIONS(3252), + [anon_sym_BANG] = ACTIONS(3252), + [anon_sym_if] = ACTIONS(3252), + [anon_sym_switch] = ACTIONS(3252), + [anon_sym_for] = ACTIONS(3252), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_await] = ACTIONS(3252), + [anon_sym_while] = ACTIONS(3252), + [anon_sym_do] = ACTIONS(3252), + [anon_sym_try] = ACTIONS(3252), + [anon_sym_break] = ACTIONS(3252), + [anon_sym_continue] = ACTIONS(3252), + [anon_sym_debugger] = ACTIONS(3252), + [anon_sym_return] = ACTIONS(3252), + [anon_sym_throw] = ACTIONS(3252), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_case] = ACTIONS(3252), + [anon_sym_yield] = ACTIONS(3252), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LTtemplate_GT] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [anon_sym_SQUOTE] = ACTIONS(3252), + [anon_sym_class] = ACTIONS(3252), + [anon_sym_async] = ACTIONS(3252), + [anon_sym_function] = ACTIONS(3252), + [anon_sym_new] = ACTIONS(3252), + [anon_sym_using] = ACTIONS(3252), + [anon_sym_PLUS] = ACTIONS(3252), + [anon_sym_DASH] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_void] = ACTIONS(3252), + [anon_sym_delete] = ACTIONS(3252), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3252), + [sym_number] = ACTIONS(3252), + [sym_private_property_identifier] = ACTIONS(3252), + [sym_this] = ACTIONS(3252), + [sym_super] = ACTIONS(3252), + [sym_true] = ACTIONS(3252), + [sym_false] = ACTIONS(3252), + [sym_null] = ACTIONS(3252), + [sym_undefined] = ACTIONS(3252), + [anon_sym_AT] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3252), + [anon_sym_readonly] = ACTIONS(3252), + [anon_sym_get] = ACTIONS(3252), + [anon_sym_set] = ACTIONS(3252), + [anon_sym_declare] = ACTIONS(3252), + [anon_sym_public] = ACTIONS(3252), + [anon_sym_private] = ACTIONS(3252), + [anon_sym_protected] = ACTIONS(3252), + [anon_sym_override] = ACTIONS(3252), + [anon_sym_module] = ACTIONS(3252), + [anon_sym_any] = ACTIONS(3252), + [anon_sym_number] = ACTIONS(3252), + [anon_sym_boolean] = ACTIONS(3252), + [anon_sym_string] = ACTIONS(3252), + [anon_sym_symbol] = ACTIONS(3252), + [anon_sym_object] = ACTIONS(3252), + [anon_sym_abstract] = ACTIONS(3252), + [anon_sym_interface] = ACTIONS(3252), + [anon_sym_enum] = ACTIONS(3252), [sym_html_comment] = ACTIONS(5), }, - [1456] = { - [sym_comment] = STATE(1456), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1406] = { + [sym_comment] = STATE(1406), + [ts_builtin_sym_end] = ACTIONS(3538), + [sym_identifier] = ACTIONS(3316), + [anon_sym_export] = ACTIONS(3316), + [anon_sym_type] = ACTIONS(3316), + [anon_sym_namespace] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3316), + [anon_sym_RBRACE] = ACTIONS(3316), + [anon_sym_typeof] = ACTIONS(3316), + [anon_sym_import] = ACTIONS(3316), + [anon_sym_with] = ACTIONS(3316), + [anon_sym_var] = ACTIONS(3316), + [anon_sym_let] = ACTIONS(3316), + [anon_sym_const] = ACTIONS(3316), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_else] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(3316), + [anon_sym_switch] = ACTIONS(3316), + [anon_sym_for] = ACTIONS(3316), + [anon_sym_LPAREN] = ACTIONS(3316), + [anon_sym_await] = ACTIONS(3316), + [anon_sym_while] = ACTIONS(3316), + [anon_sym_do] = ACTIONS(3316), + [anon_sym_try] = ACTIONS(3316), + [anon_sym_break] = ACTIONS(3316), + [anon_sym_continue] = ACTIONS(3316), + [anon_sym_debugger] = ACTIONS(3316), + [anon_sym_return] = ACTIONS(3316), + [anon_sym_throw] = ACTIONS(3316), + [anon_sym_SEMI] = ACTIONS(3316), + [anon_sym_yield] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_LTtemplate_GT] = ACTIONS(3316), + [anon_sym_DQUOTE] = ACTIONS(3316), + [anon_sym_SQUOTE] = ACTIONS(3316), + [anon_sym_class] = ACTIONS(3316), + [anon_sym_async] = ACTIONS(3316), + [anon_sym_function] = ACTIONS(3316), + [anon_sym_new] = ACTIONS(3316), + [anon_sym_using] = ACTIONS(3316), + [anon_sym_PLUS] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3316), + [anon_sym_SLASH] = ACTIONS(3316), + [anon_sym_LT] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_void] = ACTIONS(3316), + [anon_sym_delete] = ACTIONS(3316), + [anon_sym_PLUS_PLUS] = ACTIONS(3316), + [anon_sym_DASH_DASH] = ACTIONS(3316), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3316), + [sym_number] = ACTIONS(3316), + [sym_private_property_identifier] = ACTIONS(3316), + [sym_this] = ACTIONS(3316), + [sym_super] = ACTIONS(3316), + [sym_true] = ACTIONS(3316), + [sym_false] = ACTIONS(3316), + [sym_null] = ACTIONS(3316), + [sym_undefined] = ACTIONS(3316), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_static] = ACTIONS(3316), + [anon_sym_readonly] = ACTIONS(3316), + [anon_sym_get] = ACTIONS(3316), + [anon_sym_set] = ACTIONS(3316), + [anon_sym_declare] = ACTIONS(3316), + [anon_sym_public] = ACTIONS(3316), + [anon_sym_private] = ACTIONS(3316), + [anon_sym_protected] = ACTIONS(3316), + [anon_sym_override] = ACTIONS(3316), + [anon_sym_module] = ACTIONS(3316), + [anon_sym_any] = ACTIONS(3316), + [anon_sym_number] = ACTIONS(3316), + [anon_sym_boolean] = ACTIONS(3316), + [anon_sym_string] = ACTIONS(3316), + [anon_sym_symbol] = ACTIONS(3316), + [anon_sym_object] = ACTIONS(3316), + [anon_sym_abstract] = ACTIONS(3316), + [anon_sym_interface] = ACTIONS(3316), + [anon_sym_enum] = ACTIONS(3316), [sym_html_comment] = ACTIONS(5), }, - [1457] = { - [sym_comment] = STATE(1457), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1407] = { + [sym_comment] = STATE(1407), + [ts_builtin_sym_end] = ACTIONS(3540), + [sym_identifier] = ACTIONS(3222), + [anon_sym_export] = ACTIONS(3222), + [anon_sym_type] = ACTIONS(3222), + [anon_sym_namespace] = ACTIONS(3222), + [anon_sym_LBRACE] = ACTIONS(3222), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_typeof] = ACTIONS(3222), + [anon_sym_import] = ACTIONS(3222), + [anon_sym_with] = ACTIONS(3222), + [anon_sym_var] = ACTIONS(3222), + [anon_sym_let] = ACTIONS(3222), + [anon_sym_const] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_else] = ACTIONS(3222), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_switch] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_await] = ACTIONS(3222), + [anon_sym_while] = ACTIONS(3222), + [anon_sym_do] = ACTIONS(3222), + [anon_sym_try] = ACTIONS(3222), + [anon_sym_break] = ACTIONS(3222), + [anon_sym_continue] = ACTIONS(3222), + [anon_sym_debugger] = ACTIONS(3222), + [anon_sym_return] = ACTIONS(3222), + [anon_sym_throw] = ACTIONS(3222), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_yield] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_LTtemplate_GT] = ACTIONS(3222), + [anon_sym_DQUOTE] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3222), + [anon_sym_class] = ACTIONS(3222), + [anon_sym_async] = ACTIONS(3222), + [anon_sym_function] = ACTIONS(3222), + [anon_sym_new] = ACTIONS(3222), + [anon_sym_using] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3222), + [anon_sym_DASH] = ACTIONS(3222), + [anon_sym_SLASH] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3222), + [anon_sym_void] = ACTIONS(3222), + [anon_sym_delete] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3222), + [sym_number] = ACTIONS(3222), + [sym_private_property_identifier] = ACTIONS(3222), + [sym_this] = ACTIONS(3222), + [sym_super] = ACTIONS(3222), + [sym_true] = ACTIONS(3222), + [sym_false] = ACTIONS(3222), + [sym_null] = ACTIONS(3222), + [sym_undefined] = ACTIONS(3222), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_static] = ACTIONS(3222), + [anon_sym_readonly] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3222), + [anon_sym_set] = ACTIONS(3222), + [anon_sym_declare] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3222), + [anon_sym_private] = ACTIONS(3222), + [anon_sym_protected] = ACTIONS(3222), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_module] = ACTIONS(3222), + [anon_sym_any] = ACTIONS(3222), + [anon_sym_number] = ACTIONS(3222), + [anon_sym_boolean] = ACTIONS(3222), + [anon_sym_string] = ACTIONS(3222), + [anon_sym_symbol] = ACTIONS(3222), + [anon_sym_object] = ACTIONS(3222), + [anon_sym_abstract] = ACTIONS(3222), + [anon_sym_interface] = ACTIONS(3222), + [anon_sym_enum] = ACTIONS(3222), [sym_html_comment] = ACTIONS(5), }, - [1458] = { - [sym_comment] = STATE(1458), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1408] = { + [sym_comment] = STATE(1408), + [ts_builtin_sym_end] = ACTIONS(3542), + [sym_identifier] = ACTIONS(3290), + [anon_sym_export] = ACTIONS(3290), + [anon_sym_type] = ACTIONS(3290), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(3290), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_typeof] = ACTIONS(3290), + [anon_sym_import] = ACTIONS(3290), + [anon_sym_with] = ACTIONS(3290), + [anon_sym_var] = ACTIONS(3290), + [anon_sym_let] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3290), + [anon_sym_else] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_await] = ACTIONS(3290), + [anon_sym_while] = ACTIONS(3290), + [anon_sym_do] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3290), + [anon_sym_break] = ACTIONS(3290), + [anon_sym_continue] = ACTIONS(3290), + [anon_sym_debugger] = ACTIONS(3290), + [anon_sym_return] = ACTIONS(3290), + [anon_sym_throw] = ACTIONS(3290), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_yield] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_LTtemplate_GT] = ACTIONS(3290), + [anon_sym_DQUOTE] = ACTIONS(3290), + [anon_sym_SQUOTE] = ACTIONS(3290), + [anon_sym_class] = ACTIONS(3290), + [anon_sym_async] = ACTIONS(3290), + [anon_sym_function] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_using] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_SLASH] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3290), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_void] = ACTIONS(3290), + [anon_sym_delete] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3290), + [sym_number] = ACTIONS(3290), + [sym_private_property_identifier] = ACTIONS(3290), + [sym_this] = ACTIONS(3290), + [sym_super] = ACTIONS(3290), + [sym_true] = ACTIONS(3290), + [sym_false] = ACTIONS(3290), + [sym_null] = ACTIONS(3290), + [sym_undefined] = ACTIONS(3290), + [anon_sym_AT] = ACTIONS(3290), + [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_abstract] = ACTIONS(3290), + [anon_sym_interface] = ACTIONS(3290), + [anon_sym_enum] = ACTIONS(3290), [sym_html_comment] = ACTIONS(5), }, - [1459] = { - [sym_comment] = STATE(1459), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1409] = { + [sym_comment] = STATE(1409), + [ts_builtin_sym_end] = ACTIONS(3544), + [sym_identifier] = ACTIONS(3142), + [anon_sym_export] = ACTIONS(3142), + [anon_sym_type] = ACTIONS(3142), + [anon_sym_namespace] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3142), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_typeof] = ACTIONS(3142), + [anon_sym_import] = ACTIONS(3142), + [anon_sym_with] = ACTIONS(3142), + [anon_sym_var] = ACTIONS(3142), + [anon_sym_let] = ACTIONS(3142), + [anon_sym_const] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3142), + [anon_sym_else] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3142), + [anon_sym_switch] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3142), + [anon_sym_await] = ACTIONS(3142), + [anon_sym_while] = ACTIONS(3142), + [anon_sym_do] = ACTIONS(3142), + [anon_sym_try] = ACTIONS(3142), + [anon_sym_break] = ACTIONS(3142), + [anon_sym_continue] = ACTIONS(3142), + [anon_sym_debugger] = ACTIONS(3142), + [anon_sym_return] = ACTIONS(3142), + [anon_sym_throw] = ACTIONS(3142), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_yield] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(3142), + [anon_sym_LTtemplate_GT] = ACTIONS(3142), + [anon_sym_DQUOTE] = ACTIONS(3142), + [anon_sym_SQUOTE] = ACTIONS(3142), + [anon_sym_class] = ACTIONS(3142), + [anon_sym_async] = ACTIONS(3142), + [anon_sym_function] = ACTIONS(3142), + [anon_sym_new] = ACTIONS(3142), + [anon_sym_using] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_SLASH] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_TILDE] = ACTIONS(3142), + [anon_sym_void] = ACTIONS(3142), + [anon_sym_delete] = ACTIONS(3142), + [anon_sym_PLUS_PLUS] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3142), + [sym_number] = ACTIONS(3142), + [sym_private_property_identifier] = ACTIONS(3142), + [sym_this] = ACTIONS(3142), + [sym_super] = ACTIONS(3142), + [sym_true] = ACTIONS(3142), + [sym_false] = ACTIONS(3142), + [sym_null] = ACTIONS(3142), + [sym_undefined] = ACTIONS(3142), + [anon_sym_AT] = ACTIONS(3142), + [anon_sym_static] = ACTIONS(3142), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3142), + [anon_sym_set] = ACTIONS(3142), + [anon_sym_declare] = ACTIONS(3142), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [anon_sym_override] = ACTIONS(3142), + [anon_sym_module] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3142), + [anon_sym_number] = ACTIONS(3142), + [anon_sym_boolean] = ACTIONS(3142), + [anon_sym_string] = ACTIONS(3142), + [anon_sym_symbol] = ACTIONS(3142), + [anon_sym_object] = ACTIONS(3142), + [anon_sym_abstract] = ACTIONS(3142), + [anon_sym_interface] = ACTIONS(3142), + [anon_sym_enum] = ACTIONS(3142), [sym_html_comment] = ACTIONS(5), }, - [1460] = { - [sym_comment] = STATE(1460), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1410] = { + [sym_comment] = STATE(1410), + [ts_builtin_sym_end] = ACTIONS(3546), + [sym_identifier] = ACTIONS(3338), + [anon_sym_export] = ACTIONS(3338), + [anon_sym_type] = ACTIONS(3338), + [anon_sym_namespace] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_RBRACE] = ACTIONS(3338), + [anon_sym_typeof] = ACTIONS(3338), + [anon_sym_import] = ACTIONS(3338), + [anon_sym_with] = ACTIONS(3338), + [anon_sym_var] = ACTIONS(3338), + [anon_sym_let] = ACTIONS(3338), + [anon_sym_const] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_switch] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym_await] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_do] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_debugger] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_LTtemplate_GT] = ACTIONS(3338), + [anon_sym_DQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3338), + [anon_sym_class] = ACTIONS(3338), + [anon_sym_async] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3338), + [anon_sym_using] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_void] = ACTIONS(3338), + [anon_sym_delete] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3338), + [sym_number] = ACTIONS(3338), + [sym_private_property_identifier] = ACTIONS(3338), + [sym_this] = ACTIONS(3338), + [sym_super] = ACTIONS(3338), + [sym_true] = ACTIONS(3338), + [sym_false] = ACTIONS(3338), + [sym_null] = ACTIONS(3338), + [sym_undefined] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3338), + [anon_sym_static] = ACTIONS(3338), + [anon_sym_readonly] = ACTIONS(3338), + [anon_sym_get] = ACTIONS(3338), + [anon_sym_set] = ACTIONS(3338), + [anon_sym_declare] = ACTIONS(3338), + [anon_sym_public] = ACTIONS(3338), + [anon_sym_private] = ACTIONS(3338), + [anon_sym_protected] = ACTIONS(3338), + [anon_sym_override] = ACTIONS(3338), + [anon_sym_module] = ACTIONS(3338), + [anon_sym_any] = ACTIONS(3338), + [anon_sym_number] = ACTIONS(3338), + [anon_sym_boolean] = ACTIONS(3338), + [anon_sym_string] = ACTIONS(3338), + [anon_sym_symbol] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_abstract] = ACTIONS(3338), + [anon_sym_interface] = ACTIONS(3338), + [anon_sym_enum] = ACTIONS(3338), [sym_html_comment] = ACTIONS(5), }, - [1461] = { - [sym_comment] = STATE(1461), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1411] = { + [sym_comment] = STATE(1411), + [ts_builtin_sym_end] = ACTIONS(3548), + [sym_identifier] = ACTIONS(3284), + [anon_sym_export] = ACTIONS(3284), + [anon_sym_type] = ACTIONS(3284), + [anon_sym_namespace] = ACTIONS(3284), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_RBRACE] = ACTIONS(3284), + [anon_sym_typeof] = ACTIONS(3284), + [anon_sym_import] = ACTIONS(3284), + [anon_sym_with] = ACTIONS(3284), + [anon_sym_var] = ACTIONS(3284), + [anon_sym_let] = ACTIONS(3284), + [anon_sym_const] = ACTIONS(3284), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_else] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3284), + [anon_sym_switch] = ACTIONS(3284), + [anon_sym_for] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3284), + [anon_sym_await] = ACTIONS(3284), + [anon_sym_while] = ACTIONS(3284), + [anon_sym_do] = ACTIONS(3284), + [anon_sym_try] = ACTIONS(3284), + [anon_sym_break] = ACTIONS(3284), + [anon_sym_continue] = ACTIONS(3284), + [anon_sym_debugger] = ACTIONS(3284), + [anon_sym_return] = ACTIONS(3284), + [anon_sym_throw] = ACTIONS(3284), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_yield] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3284), + [anon_sym_LTtemplate_GT] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3284), + [anon_sym_class] = ACTIONS(3284), + [anon_sym_async] = ACTIONS(3284), + [anon_sym_function] = ACTIONS(3284), + [anon_sym_new] = ACTIONS(3284), + [anon_sym_using] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_void] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3284), + [sym_number] = ACTIONS(3284), + [sym_private_property_identifier] = ACTIONS(3284), + [sym_this] = ACTIONS(3284), + [sym_super] = ACTIONS(3284), + [sym_true] = ACTIONS(3284), + [sym_false] = ACTIONS(3284), + [sym_null] = ACTIONS(3284), + [sym_undefined] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3284), + [anon_sym_static] = ACTIONS(3284), + [anon_sym_readonly] = ACTIONS(3284), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3284), + [anon_sym_declare] = ACTIONS(3284), + [anon_sym_public] = ACTIONS(3284), + [anon_sym_private] = ACTIONS(3284), + [anon_sym_protected] = ACTIONS(3284), + [anon_sym_override] = ACTIONS(3284), + [anon_sym_module] = ACTIONS(3284), + [anon_sym_any] = ACTIONS(3284), + [anon_sym_number] = ACTIONS(3284), + [anon_sym_boolean] = ACTIONS(3284), + [anon_sym_string] = ACTIONS(3284), + [anon_sym_symbol] = ACTIONS(3284), + [anon_sym_object] = ACTIONS(3284), + [anon_sym_abstract] = ACTIONS(3284), + [anon_sym_interface] = ACTIONS(3284), + [anon_sym_enum] = ACTIONS(3284), [sym_html_comment] = ACTIONS(5), }, - [1462] = { - [sym_comment] = STATE(1462), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1412] = { + [sym_comment] = STATE(1412), + [ts_builtin_sym_end] = ACTIONS(3550), + [sym_identifier] = ACTIONS(3340), + [anon_sym_export] = ACTIONS(3340), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_namespace] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_typeof] = ACTIONS(3340), + [anon_sym_import] = ACTIONS(3340), + [anon_sym_with] = ACTIONS(3340), + [anon_sym_var] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_switch] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_await] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_debugger] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LTtemplate_GT] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3340), + [anon_sym_class] = ACTIONS(3340), + [anon_sym_async] = ACTIONS(3340), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_using] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_void] = ACTIONS(3340), + [anon_sym_delete] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3340), + [sym_number] = ACTIONS(3340), + [sym_private_property_identifier] = ACTIONS(3340), + [sym_this] = ACTIONS(3340), + [sym_super] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_null] = ACTIONS(3340), + [sym_undefined] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3340), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_readonly] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3340), + [anon_sym_declare] = ACTIONS(3340), + [anon_sym_public] = ACTIONS(3340), + [anon_sym_private] = ACTIONS(3340), + [anon_sym_protected] = ACTIONS(3340), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_module] = ACTIONS(3340), + [anon_sym_any] = ACTIONS(3340), + [anon_sym_number] = ACTIONS(3340), + [anon_sym_boolean] = ACTIONS(3340), + [anon_sym_string] = ACTIONS(3340), + [anon_sym_symbol] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_abstract] = ACTIONS(3340), + [anon_sym_interface] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), [sym_html_comment] = ACTIONS(5), }, - [1463] = { - [sym_comment] = STATE(1463), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1413] = { + [sym_comment] = STATE(1413), + [ts_builtin_sym_end] = ACTIONS(3552), + [sym_identifier] = ACTIONS(3342), + [anon_sym_export] = ACTIONS(3342), + [anon_sym_type] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_typeof] = ACTIONS(3342), + [anon_sym_import] = ACTIONS(3342), + [anon_sym_with] = ACTIONS(3342), + [anon_sym_var] = ACTIONS(3342), + [anon_sym_let] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_else] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_switch] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_await] = ACTIONS(3342), + [anon_sym_while] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_debugger] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_throw] = ACTIONS(3342), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_LTtemplate_GT] = ACTIONS(3342), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_SQUOTE] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_async] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3342), + [anon_sym_using] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_void] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3342), + [sym_number] = ACTIONS(3342), + [sym_private_property_identifier] = ACTIONS(3342), + [sym_this] = ACTIONS(3342), + [sym_super] = ACTIONS(3342), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [sym_null] = ACTIONS(3342), + [sym_undefined] = ACTIONS(3342), + [anon_sym_AT] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_readonly] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_declare] = ACTIONS(3342), + [anon_sym_public] = ACTIONS(3342), + [anon_sym_private] = ACTIONS(3342), + [anon_sym_protected] = ACTIONS(3342), + [anon_sym_override] = ACTIONS(3342), + [anon_sym_module] = ACTIONS(3342), + [anon_sym_any] = ACTIONS(3342), + [anon_sym_number] = ACTIONS(3342), + [anon_sym_boolean] = ACTIONS(3342), + [anon_sym_string] = ACTIONS(3342), + [anon_sym_symbol] = ACTIONS(3342), + [anon_sym_object] = ACTIONS(3342), + [anon_sym_abstract] = ACTIONS(3342), + [anon_sym_interface] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), [sym_html_comment] = ACTIONS(5), }, - [1464] = { - [sym_comment] = STATE(1464), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1414] = { + [sym_comment] = STATE(1414), + [sym_identifier] = ACTIONS(3136), + [anon_sym_export] = ACTIONS(3136), + [anon_sym_default] = ACTIONS(3136), + [anon_sym_type] = ACTIONS(3136), + [anon_sym_namespace] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_RBRACE] = ACTIONS(3136), + [anon_sym_typeof] = ACTIONS(3136), + [anon_sym_import] = ACTIONS(3136), + [anon_sym_with] = ACTIONS(3136), + [anon_sym_var] = ACTIONS(3136), + [anon_sym_let] = ACTIONS(3136), + [anon_sym_const] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_switch] = ACTIONS(3136), + [anon_sym_for] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3136), + [anon_sym_await] = ACTIONS(3136), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_do] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_debugger] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_SEMI] = ACTIONS(3136), + [anon_sym_case] = ACTIONS(3136), + [anon_sym_yield] = ACTIONS(3136), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_LTtemplate_GT] = ACTIONS(3136), + [anon_sym_DQUOTE] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3136), + [anon_sym_class] = ACTIONS(3136), + [anon_sym_async] = ACTIONS(3136), + [anon_sym_function] = ACTIONS(3136), + [anon_sym_new] = ACTIONS(3136), + [anon_sym_using] = ACTIONS(3136), + [anon_sym_PLUS] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3136), + [anon_sym_SLASH] = ACTIONS(3136), + [anon_sym_LT] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_void] = ACTIONS(3136), + [anon_sym_delete] = ACTIONS(3136), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_DASH_DASH] = ACTIONS(3136), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3136), + [sym_number] = ACTIONS(3136), + [sym_private_property_identifier] = ACTIONS(3136), + [sym_this] = ACTIONS(3136), + [sym_super] = ACTIONS(3136), + [sym_true] = ACTIONS(3136), + [sym_false] = ACTIONS(3136), + [sym_null] = ACTIONS(3136), + [sym_undefined] = ACTIONS(3136), + [anon_sym_AT] = ACTIONS(3136), + [anon_sym_static] = ACTIONS(3136), + [anon_sym_readonly] = ACTIONS(3136), + [anon_sym_get] = ACTIONS(3136), + [anon_sym_set] = ACTIONS(3136), + [anon_sym_declare] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_module] = ACTIONS(3136), + [anon_sym_any] = ACTIONS(3136), + [anon_sym_number] = ACTIONS(3136), + [anon_sym_boolean] = ACTIONS(3136), + [anon_sym_string] = ACTIONS(3136), + [anon_sym_symbol] = ACTIONS(3136), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_interface] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3136), [sym_html_comment] = ACTIONS(5), }, - [1465] = { - [sym_comment] = STATE(1465), - [ts_builtin_sym_end] = ACTIONS(3508), + [1415] = { + [sym_comment] = STATE(1415), + [ts_builtin_sym_end] = ACTIONS(3554), [sym_identifier] = ACTIONS(3344), [anon_sym_export] = ACTIONS(3344), [anon_sym_type] = ACTIONS(3344), @@ -183771,1569 +179326,1241 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3344), [sym_html_comment] = ACTIONS(5), }, - [1466] = { - [sym_comment] = STATE(1466), - [ts_builtin_sym_end] = ACTIONS(3510), - [sym_identifier] = ACTIONS(3342), - [anon_sym_export] = ACTIONS(3342), - [anon_sym_type] = ACTIONS(3342), - [anon_sym_namespace] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_typeof] = ACTIONS(3342), - [anon_sym_import] = ACTIONS(3342), - [anon_sym_with] = ACTIONS(3342), - [anon_sym_var] = ACTIONS(3342), - [anon_sym_let] = ACTIONS(3342), - [anon_sym_const] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3342), - [anon_sym_if] = ACTIONS(3342), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_for] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_await] = ACTIONS(3342), - [anon_sym_while] = ACTIONS(3342), - [anon_sym_do] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(3342), - [anon_sym_break] = ACTIONS(3342), - [anon_sym_continue] = ACTIONS(3342), - [anon_sym_debugger] = ACTIONS(3342), - [anon_sym_return] = ACTIONS(3342), - [anon_sym_throw] = ACTIONS(3342), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_yield] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_LTtemplate_GT] = ACTIONS(3342), - [anon_sym_DQUOTE] = ACTIONS(3342), - [anon_sym_SQUOTE] = ACTIONS(3342), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_async] = ACTIONS(3342), - [anon_sym_function] = ACTIONS(3342), - [anon_sym_new] = ACTIONS(3342), - [anon_sym_using] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3342), - [anon_sym_DASH] = ACTIONS(3342), - [anon_sym_SLASH] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3342), - [anon_sym_TILDE] = ACTIONS(3342), - [anon_sym_void] = ACTIONS(3342), - [anon_sym_delete] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3342), - [sym_number] = ACTIONS(3342), - [sym_private_property_identifier] = ACTIONS(3342), - [sym_this] = ACTIONS(3342), - [sym_super] = ACTIONS(3342), - [sym_true] = ACTIONS(3342), - [sym_false] = ACTIONS(3342), - [sym_null] = ACTIONS(3342), - [sym_undefined] = ACTIONS(3342), - [anon_sym_AT] = ACTIONS(3342), - [anon_sym_static] = ACTIONS(3342), - [anon_sym_readonly] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3342), - [anon_sym_set] = ACTIONS(3342), - [anon_sym_declare] = ACTIONS(3342), - [anon_sym_public] = ACTIONS(3342), - [anon_sym_private] = ACTIONS(3342), - [anon_sym_protected] = ACTIONS(3342), - [anon_sym_override] = ACTIONS(3342), - [anon_sym_module] = ACTIONS(3342), - [anon_sym_any] = ACTIONS(3342), - [anon_sym_number] = ACTIONS(3342), - [anon_sym_boolean] = ACTIONS(3342), - [anon_sym_string] = ACTIONS(3342), - [anon_sym_symbol] = ACTIONS(3342), - [anon_sym_object] = ACTIONS(3342), - [anon_sym_abstract] = ACTIONS(3342), - [anon_sym_interface] = ACTIONS(3342), - [anon_sym_enum] = ACTIONS(3342), + [1416] = { + [sym_comment] = STATE(1416), + [ts_builtin_sym_end] = ACTIONS(3556), + [sym_identifier] = ACTIONS(3352), + [anon_sym_export] = ACTIONS(3352), + [anon_sym_type] = ACTIONS(3352), + [anon_sym_namespace] = ACTIONS(3352), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_RBRACE] = ACTIONS(3352), + [anon_sym_typeof] = ACTIONS(3352), + [anon_sym_import] = ACTIONS(3352), + [anon_sym_with] = ACTIONS(3352), + [anon_sym_var] = ACTIONS(3352), + [anon_sym_let] = ACTIONS(3352), + [anon_sym_const] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3352), + [anon_sym_else] = ACTIONS(3352), + [anon_sym_if] = ACTIONS(3352), + [anon_sym_switch] = ACTIONS(3352), + [anon_sym_for] = ACTIONS(3352), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_await] = ACTIONS(3352), + [anon_sym_while] = ACTIONS(3352), + [anon_sym_do] = ACTIONS(3352), + [anon_sym_try] = ACTIONS(3352), + [anon_sym_break] = ACTIONS(3352), + [anon_sym_continue] = ACTIONS(3352), + [anon_sym_debugger] = ACTIONS(3352), + [anon_sym_return] = ACTIONS(3352), + [anon_sym_throw] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_yield] = ACTIONS(3352), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_LTtemplate_GT] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [anon_sym_SQUOTE] = ACTIONS(3352), + [anon_sym_class] = ACTIONS(3352), + [anon_sym_async] = ACTIONS(3352), + [anon_sym_function] = ACTIONS(3352), + [anon_sym_new] = ACTIONS(3352), + [anon_sym_using] = ACTIONS(3352), + [anon_sym_PLUS] = ACTIONS(3352), + [anon_sym_DASH] = ACTIONS(3352), + [anon_sym_SLASH] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3352), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_void] = ACTIONS(3352), + [anon_sym_delete] = ACTIONS(3352), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3352), + [sym_number] = ACTIONS(3352), + [sym_private_property_identifier] = ACTIONS(3352), + [sym_this] = ACTIONS(3352), + [sym_super] = ACTIONS(3352), + [sym_true] = ACTIONS(3352), + [sym_false] = ACTIONS(3352), + [sym_null] = ACTIONS(3352), + [sym_undefined] = ACTIONS(3352), + [anon_sym_AT] = ACTIONS(3352), + [anon_sym_static] = ACTIONS(3352), + [anon_sym_readonly] = ACTIONS(3352), + [anon_sym_get] = ACTIONS(3352), + [anon_sym_set] = ACTIONS(3352), + [anon_sym_declare] = ACTIONS(3352), + [anon_sym_public] = ACTIONS(3352), + [anon_sym_private] = ACTIONS(3352), + [anon_sym_protected] = ACTIONS(3352), + [anon_sym_override] = ACTIONS(3352), + [anon_sym_module] = ACTIONS(3352), + [anon_sym_any] = ACTIONS(3352), + [anon_sym_number] = ACTIONS(3352), + [anon_sym_boolean] = ACTIONS(3352), + [anon_sym_string] = ACTIONS(3352), + [anon_sym_symbol] = ACTIONS(3352), + [anon_sym_object] = ACTIONS(3352), + [anon_sym_abstract] = ACTIONS(3352), + [anon_sym_interface] = ACTIONS(3352), + [anon_sym_enum] = ACTIONS(3352), [sym_html_comment] = ACTIONS(5), }, - [1467] = { - [sym_comment] = STATE(1467), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1417] = { + [sym_comment] = STATE(1417), + [ts_builtin_sym_end] = ACTIONS(3558), + [sym_identifier] = ACTIONS(3364), + [anon_sym_export] = ACTIONS(3364), + [anon_sym_type] = ACTIONS(3364), + [anon_sym_namespace] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_typeof] = ACTIONS(3364), + [anon_sym_import] = ACTIONS(3364), + [anon_sym_with] = ACTIONS(3364), + [anon_sym_var] = ACTIONS(3364), + [anon_sym_let] = ACTIONS(3364), + [anon_sym_const] = ACTIONS(3364), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_else] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_switch] = ACTIONS(3364), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(3364), + [anon_sym_await] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_do] = ACTIONS(3364), + [anon_sym_try] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_debugger] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_throw] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_yield] = ACTIONS(3364), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_LTtemplate_GT] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3364), + [anon_sym_async] = ACTIONS(3364), + [anon_sym_function] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3364), + [anon_sym_using] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_void] = ACTIONS(3364), + [anon_sym_delete] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3364), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3364), + [sym_number] = ACTIONS(3364), + [sym_private_property_identifier] = ACTIONS(3364), + [sym_this] = ACTIONS(3364), + [sym_super] = ACTIONS(3364), + [sym_true] = ACTIONS(3364), + [sym_false] = ACTIONS(3364), + [sym_null] = ACTIONS(3364), + [sym_undefined] = ACTIONS(3364), + [anon_sym_AT] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_readonly] = ACTIONS(3364), + [anon_sym_get] = ACTIONS(3364), + [anon_sym_set] = ACTIONS(3364), + [anon_sym_declare] = ACTIONS(3364), + [anon_sym_public] = ACTIONS(3364), + [anon_sym_private] = ACTIONS(3364), + [anon_sym_protected] = ACTIONS(3364), + [anon_sym_override] = ACTIONS(3364), + [anon_sym_module] = ACTIONS(3364), + [anon_sym_any] = ACTIONS(3364), + [anon_sym_number] = ACTIONS(3364), + [anon_sym_boolean] = ACTIONS(3364), + [anon_sym_string] = ACTIONS(3364), + [anon_sym_symbol] = ACTIONS(3364), + [anon_sym_object] = ACTIONS(3364), + [anon_sym_abstract] = ACTIONS(3364), + [anon_sym_interface] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), [sym_html_comment] = ACTIONS(5), }, - [1468] = { - [sym_comment] = STATE(1468), - [ts_builtin_sym_end] = ACTIONS(3512), - [sym_identifier] = ACTIONS(3340), - [anon_sym_export] = ACTIONS(3340), - [anon_sym_type] = ACTIONS(3340), - [anon_sym_namespace] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [anon_sym_RBRACE] = ACTIONS(3340), - [anon_sym_typeof] = ACTIONS(3340), - [anon_sym_import] = ACTIONS(3340), - [anon_sym_with] = ACTIONS(3340), - [anon_sym_var] = ACTIONS(3340), - [anon_sym_let] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3340), - [anon_sym_await] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_do] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_debugger] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_yield] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3340), - [anon_sym_LTtemplate_GT] = ACTIONS(3340), - [anon_sym_DQUOTE] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3340), - [anon_sym_async] = ACTIONS(3340), - [anon_sym_function] = ACTIONS(3340), - [anon_sym_new] = ACTIONS(3340), - [anon_sym_using] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3340), - [anon_sym_void] = ACTIONS(3340), - [anon_sym_delete] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3340), - [anon_sym_DASH_DASH] = ACTIONS(3340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3340), - [sym_number] = ACTIONS(3340), - [sym_private_property_identifier] = ACTIONS(3340), - [sym_this] = ACTIONS(3340), - [sym_super] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_null] = ACTIONS(3340), - [sym_undefined] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3340), - [anon_sym_static] = ACTIONS(3340), - [anon_sym_readonly] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3340), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_declare] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_protected] = ACTIONS(3340), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3340), - [anon_sym_any] = ACTIONS(3340), - [anon_sym_number] = ACTIONS(3340), - [anon_sym_boolean] = ACTIONS(3340), - [anon_sym_string] = ACTIONS(3340), - [anon_sym_symbol] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), + [1418] = { + [sym_comment] = STATE(1418), + [ts_builtin_sym_end] = ACTIONS(3560), + [sym_identifier] = ACTIONS(3370), + [anon_sym_export] = ACTIONS(3370), + [anon_sym_type] = ACTIONS(3370), + [anon_sym_namespace] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_typeof] = ACTIONS(3370), + [anon_sym_import] = ACTIONS(3370), + [anon_sym_with] = ACTIONS(3370), + [anon_sym_var] = ACTIONS(3370), + [anon_sym_let] = ACTIONS(3370), + [anon_sym_const] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_else] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_switch] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_await] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_try] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_debugger] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_throw] = ACTIONS(3370), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_LTtemplate_GT] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3370), + [anon_sym_async] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3370), + [anon_sym_using] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_void] = ACTIONS(3370), + [anon_sym_delete] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3370), + [sym_number] = ACTIONS(3370), + [sym_private_property_identifier] = ACTIONS(3370), + [sym_this] = ACTIONS(3370), + [sym_super] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_null] = ACTIONS(3370), + [sym_undefined] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_readonly] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3370), + [anon_sym_set] = ACTIONS(3370), + [anon_sym_declare] = ACTIONS(3370), + [anon_sym_public] = ACTIONS(3370), + [anon_sym_private] = ACTIONS(3370), + [anon_sym_protected] = ACTIONS(3370), + [anon_sym_override] = ACTIONS(3370), + [anon_sym_module] = ACTIONS(3370), + [anon_sym_any] = ACTIONS(3370), + [anon_sym_number] = ACTIONS(3370), + [anon_sym_boolean] = ACTIONS(3370), + [anon_sym_string] = ACTIONS(3370), + [anon_sym_symbol] = ACTIONS(3370), + [anon_sym_object] = ACTIONS(3370), + [anon_sym_abstract] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), [sym_html_comment] = ACTIONS(5), }, - [1469] = { - [sym_comment] = STATE(1469), - [sym_identifier] = ACTIONS(3334), - [anon_sym_export] = ACTIONS(3334), - [anon_sym_default] = ACTIONS(3334), - [anon_sym_type] = ACTIONS(3334), - [anon_sym_namespace] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3334), - [anon_sym_typeof] = ACTIONS(3334), - [anon_sym_import] = ACTIONS(3334), - [anon_sym_with] = ACTIONS(3334), - [anon_sym_var] = ACTIONS(3334), - [anon_sym_let] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_if] = ACTIONS(3334), - [anon_sym_switch] = ACTIONS(3334), - [anon_sym_for] = ACTIONS(3334), - [anon_sym_LPAREN] = ACTIONS(3334), - [anon_sym_await] = ACTIONS(3334), - [anon_sym_while] = ACTIONS(3334), - [anon_sym_do] = ACTIONS(3334), - [anon_sym_try] = ACTIONS(3334), - [anon_sym_break] = ACTIONS(3334), - [anon_sym_continue] = ACTIONS(3334), - [anon_sym_debugger] = ACTIONS(3334), - [anon_sym_return] = ACTIONS(3334), - [anon_sym_throw] = ACTIONS(3334), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym_case] = ACTIONS(3334), - [anon_sym_yield] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_LTtemplate_GT] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_class] = ACTIONS(3334), - [anon_sym_async] = ACTIONS(3334), - [anon_sym_function] = ACTIONS(3334), - [anon_sym_new] = ACTIONS(3334), - [anon_sym_using] = ACTIONS(3334), - [anon_sym_PLUS] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3334), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_void] = ACTIONS(3334), - [anon_sym_delete] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3334), + [1419] = { + [sym_comment] = STATE(1419), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3334), - [sym_number] = ACTIONS(3334), - [sym_private_property_identifier] = ACTIONS(3334), - [sym_this] = ACTIONS(3334), - [sym_super] = ACTIONS(3334), - [sym_true] = ACTIONS(3334), - [sym_false] = ACTIONS(3334), - [sym_null] = ACTIONS(3334), - [sym_undefined] = ACTIONS(3334), - [anon_sym_AT] = ACTIONS(3334), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3334), - [anon_sym_set] = ACTIONS(3334), - [anon_sym_declare] = ACTIONS(3334), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3334), - [anon_sym_module] = ACTIONS(3334), - [anon_sym_any] = ACTIONS(3334), - [anon_sym_number] = ACTIONS(3334), - [anon_sym_boolean] = ACTIONS(3334), - [anon_sym_string] = ACTIONS(3334), - [anon_sym_symbol] = ACTIONS(3334), - [anon_sym_object] = ACTIONS(3334), - [anon_sym_abstract] = ACTIONS(3334), - [anon_sym_interface] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1470] = { - [sym_comment] = STATE(1470), - [sym_identifier] = ACTIONS(3332), - [anon_sym_export] = ACTIONS(3332), - [anon_sym_default] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_RBRACE] = ACTIONS(3332), - [anon_sym_typeof] = ACTIONS(3332), - [anon_sym_import] = ACTIONS(3332), - [anon_sym_with] = ACTIONS(3332), - [anon_sym_var] = ACTIONS(3332), - [anon_sym_let] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_await] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_debugger] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_case] = ACTIONS(3332), - [anon_sym_yield] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_LTtemplate_GT] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_async] = ACTIONS(3332), - [anon_sym_function] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_void] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3332), + [1420] = { + [sym_comment] = STATE(1420), + [ts_builtin_sym_end] = ACTIONS(3562), + [sym_identifier] = ACTIONS(3304), + [anon_sym_export] = ACTIONS(3304), + [anon_sym_type] = ACTIONS(3304), + [anon_sym_namespace] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_RBRACE] = ACTIONS(3304), + [anon_sym_typeof] = ACTIONS(3304), + [anon_sym_import] = ACTIONS(3304), + [anon_sym_with] = ACTIONS(3304), + [anon_sym_var] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_const] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_else] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_switch] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_await] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_break] = ACTIONS(3304), + [anon_sym_continue] = ACTIONS(3304), + [anon_sym_debugger] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_throw] = ACTIONS(3304), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LTtemplate_GT] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_class] = ACTIONS(3304), + [anon_sym_async] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_using] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_SLASH] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_void] = ACTIONS(3304), + [anon_sym_delete] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3304), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3332), - [sym_number] = ACTIONS(3332), - [sym_private_property_identifier] = ACTIONS(3332), - [sym_this] = ACTIONS(3332), - [sym_super] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_null] = ACTIONS(3332), - [sym_undefined] = ACTIONS(3332), - [anon_sym_AT] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3332), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3332), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_protected] = ACTIONS(3332), - [anon_sym_override] = ACTIONS(3332), - [anon_sym_module] = ACTIONS(3332), - [anon_sym_any] = ACTIONS(3332), - [anon_sym_number] = ACTIONS(3332), - [anon_sym_boolean] = ACTIONS(3332), - [anon_sym_string] = ACTIONS(3332), - [anon_sym_symbol] = ACTIONS(3332), - [anon_sym_object] = ACTIONS(3332), - [anon_sym_abstract] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), + [anon_sym_BQUOTE] = ACTIONS(3304), + [sym_number] = ACTIONS(3304), + [sym_private_property_identifier] = ACTIONS(3304), + [sym_this] = ACTIONS(3304), + [sym_super] = ACTIONS(3304), + [sym_true] = ACTIONS(3304), + [sym_false] = ACTIONS(3304), + [sym_null] = ACTIONS(3304), + [sym_undefined] = ACTIONS(3304), + [anon_sym_AT] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_readonly] = ACTIONS(3304), + [anon_sym_get] = ACTIONS(3304), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_declare] = ACTIONS(3304), + [anon_sym_public] = ACTIONS(3304), + [anon_sym_private] = ACTIONS(3304), + [anon_sym_protected] = ACTIONS(3304), + [anon_sym_override] = ACTIONS(3304), + [anon_sym_module] = ACTIONS(3304), + [anon_sym_any] = ACTIONS(3304), + [anon_sym_number] = ACTIONS(3304), + [anon_sym_boolean] = ACTIONS(3304), + [anon_sym_string] = ACTIONS(3304), + [anon_sym_symbol] = ACTIONS(3304), + [anon_sym_object] = ACTIONS(3304), + [anon_sym_abstract] = ACTIONS(3304), + [anon_sym_interface] = ACTIONS(3304), + [anon_sym_enum] = ACTIONS(3304), [sym_html_comment] = ACTIONS(5), }, - [1471] = { - [sym_comment] = STATE(1471), - [ts_builtin_sym_end] = ACTIONS(2315), - [sym_identifier] = ACTIONS(2159), - [anon_sym_export] = ACTIONS(2159), - [anon_sym_type] = ACTIONS(2159), - [anon_sym_namespace] = ACTIONS(2159), - [anon_sym_LBRACE] = ACTIONS(2159), - [anon_sym_RBRACE] = ACTIONS(2159), - [anon_sym_typeof] = ACTIONS(2159), - [anon_sym_import] = ACTIONS(2159), - [anon_sym_with] = ACTIONS(2159), - [anon_sym_var] = ACTIONS(2159), - [anon_sym_let] = ACTIONS(2159), - [anon_sym_const] = ACTIONS(2159), - [anon_sym_BANG] = ACTIONS(2159), - [anon_sym_if] = ACTIONS(2159), - [anon_sym_switch] = ACTIONS(2159), - [anon_sym_for] = ACTIONS(2159), - [anon_sym_LPAREN] = ACTIONS(2159), - [anon_sym_await] = ACTIONS(2159), - [anon_sym_while] = ACTIONS(2159), - [anon_sym_do] = ACTIONS(2159), - [anon_sym_try] = ACTIONS(2159), - [anon_sym_break] = ACTIONS(2159), - [anon_sym_continue] = ACTIONS(2159), - [anon_sym_debugger] = ACTIONS(2159), - [anon_sym_return] = ACTIONS(2159), - [anon_sym_throw] = ACTIONS(2159), - [anon_sym_SEMI] = ACTIONS(2159), - [anon_sym_yield] = ACTIONS(2159), - [anon_sym_LBRACK] = ACTIONS(2159), - [anon_sym_LTtemplate_GT] = ACTIONS(2159), - [anon_sym_DQUOTE] = ACTIONS(2159), - [anon_sym_SQUOTE] = ACTIONS(2159), - [anon_sym_class] = ACTIONS(2159), - [anon_sym_async] = ACTIONS(2159), - [anon_sym_function] = ACTIONS(2159), - [anon_sym_new] = ACTIONS(2159), - [anon_sym_using] = ACTIONS(2159), - [anon_sym_PLUS] = ACTIONS(2159), - [anon_sym_DASH] = ACTIONS(2159), - [anon_sym_SLASH] = ACTIONS(2159), - [anon_sym_LT] = ACTIONS(2159), - [anon_sym_TILDE] = ACTIONS(2159), - [anon_sym_void] = ACTIONS(2159), - [anon_sym_delete] = ACTIONS(2159), - [anon_sym_PLUS_PLUS] = ACTIONS(2159), - [anon_sym_DASH_DASH] = ACTIONS(2159), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2159), - [sym_number] = ACTIONS(2159), - [sym_private_property_identifier] = ACTIONS(2159), - [sym_this] = ACTIONS(2159), - [sym_super] = ACTIONS(2159), - [sym_true] = ACTIONS(2159), - [sym_false] = ACTIONS(2159), - [sym_null] = ACTIONS(2159), - [sym_undefined] = ACTIONS(2159), - [anon_sym_AT] = ACTIONS(2159), - [anon_sym_static] = ACTIONS(2159), - [anon_sym_readonly] = ACTIONS(2159), - [anon_sym_get] = ACTIONS(2159), - [anon_sym_set] = ACTIONS(2159), - [anon_sym_declare] = ACTIONS(2159), - [anon_sym_public] = ACTIONS(2159), - [anon_sym_private] = ACTIONS(2159), - [anon_sym_protected] = ACTIONS(2159), - [anon_sym_override] = ACTIONS(2159), - [anon_sym_module] = ACTIONS(2159), - [anon_sym_any] = ACTIONS(2159), - [anon_sym_number] = ACTIONS(2159), - [anon_sym_boolean] = ACTIONS(2159), - [anon_sym_string] = ACTIONS(2159), - [anon_sym_symbol] = ACTIONS(2159), - [anon_sym_object] = ACTIONS(2159), - [anon_sym_abstract] = ACTIONS(2159), - [anon_sym_interface] = ACTIONS(2159), - [anon_sym_enum] = ACTIONS(2159), - [sym__automatic_semicolon] = ACTIONS(2429), + [1421] = { + [sym_comment] = STATE(1421), + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2221), + [anon_sym_export] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_typeof] = ACTIONS(2221), + [anon_sym_import] = ACTIONS(2221), + [anon_sym_with] = ACTIONS(2221), + [anon_sym_var] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_else] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_debugger] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LTtemplate_GT] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_void] = ACTIONS(2221), + [anon_sym_delete] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2221), + [sym_number] = ACTIONS(2221), + [sym_private_property_identifier] = ACTIONS(2221), + [sym_this] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_null] = ACTIONS(2221), + [sym_undefined] = ACTIONS(2221), + [anon_sym_AT] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_get] = ACTIONS(2221), + [anon_sym_set] = ACTIONS(2221), + [anon_sym_declare] = ACTIONS(2221), + [anon_sym_public] = ACTIONS(2221), + [anon_sym_private] = ACTIONS(2221), + [anon_sym_protected] = ACTIONS(2221), + [anon_sym_override] = ACTIONS(2221), + [anon_sym_module] = ACTIONS(2221), + [anon_sym_any] = ACTIONS(2221), + [anon_sym_number] = ACTIONS(2221), + [anon_sym_boolean] = ACTIONS(2221), + [anon_sym_string] = ACTIONS(2221), + [anon_sym_symbol] = ACTIONS(2221), + [anon_sym_object] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), [sym_html_comment] = ACTIONS(5), }, - [1472] = { - [sym_comment] = STATE(1472), - [sym_identifier] = ACTIONS(3326), - [anon_sym_export] = ACTIONS(3326), - [anon_sym_default] = ACTIONS(3326), - [anon_sym_type] = ACTIONS(3326), - [anon_sym_namespace] = ACTIONS(3326), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_RBRACE] = ACTIONS(3326), - [anon_sym_typeof] = ACTIONS(3326), - [anon_sym_import] = ACTIONS(3326), - [anon_sym_with] = ACTIONS(3326), - [anon_sym_var] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3326), - [anon_sym_const] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_switch] = ACTIONS(3326), - [anon_sym_for] = ACTIONS(3326), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_await] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_do] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_break] = ACTIONS(3326), - [anon_sym_continue] = ACTIONS(3326), - [anon_sym_debugger] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_throw] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(3326), - [anon_sym_case] = ACTIONS(3326), - [anon_sym_yield] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LTtemplate_GT] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3326), - [anon_sym_class] = ACTIONS(3326), - [anon_sym_async] = ACTIONS(3326), - [anon_sym_function] = ACTIONS(3326), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_using] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3326), - [anon_sym_void] = ACTIONS(3326), - [anon_sym_delete] = ACTIONS(3326), - [anon_sym_PLUS_PLUS] = ACTIONS(3326), - [anon_sym_DASH_DASH] = ACTIONS(3326), + [1422] = { + [sym_comment] = STATE(1422), + [sym_identifier] = ACTIONS(3254), + [anon_sym_export] = ACTIONS(3254), + [anon_sym_default] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_namespace] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_typeof] = ACTIONS(3254), + [anon_sym_import] = ACTIONS(3254), + [anon_sym_with] = ACTIONS(3254), + [anon_sym_var] = ACTIONS(3254), + [anon_sym_let] = ACTIONS(3254), + [anon_sym_const] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_switch] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_await] = ACTIONS(3254), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_do] = ACTIONS(3254), + [anon_sym_try] = ACTIONS(3254), + [anon_sym_break] = ACTIONS(3254), + [anon_sym_continue] = ACTIONS(3254), + [anon_sym_debugger] = ACTIONS(3254), + [anon_sym_return] = ACTIONS(3254), + [anon_sym_throw] = ACTIONS(3254), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_case] = ACTIONS(3254), + [anon_sym_yield] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_LTtemplate_GT] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_class] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_function] = ACTIONS(3254), + [anon_sym_new] = ACTIONS(3254), + [anon_sym_using] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_SLASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_void] = ACTIONS(3254), + [anon_sym_delete] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3326), - [sym_number] = ACTIONS(3326), - [sym_private_property_identifier] = ACTIONS(3326), - [sym_this] = ACTIONS(3326), - [sym_super] = ACTIONS(3326), - [sym_true] = ACTIONS(3326), - [sym_false] = ACTIONS(3326), - [sym_null] = ACTIONS(3326), - [sym_undefined] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3326), - [anon_sym_static] = ACTIONS(3326), - [anon_sym_readonly] = ACTIONS(3326), - [anon_sym_get] = ACTIONS(3326), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_declare] = ACTIONS(3326), - [anon_sym_public] = ACTIONS(3326), - [anon_sym_private] = ACTIONS(3326), - [anon_sym_protected] = ACTIONS(3326), - [anon_sym_override] = ACTIONS(3326), - [anon_sym_module] = ACTIONS(3326), - [anon_sym_any] = ACTIONS(3326), - [anon_sym_number] = ACTIONS(3326), - [anon_sym_boolean] = ACTIONS(3326), - [anon_sym_string] = ACTIONS(3326), - [anon_sym_symbol] = ACTIONS(3326), - [anon_sym_object] = ACTIONS(3326), - [anon_sym_abstract] = ACTIONS(3326), - [anon_sym_interface] = ACTIONS(3326), - [anon_sym_enum] = ACTIONS(3326), + [anon_sym_BQUOTE] = ACTIONS(3254), + [sym_number] = ACTIONS(3254), + [sym_private_property_identifier] = ACTIONS(3254), + [sym_this] = ACTIONS(3254), + [sym_super] = ACTIONS(3254), + [sym_true] = ACTIONS(3254), + [sym_false] = ACTIONS(3254), + [sym_null] = ACTIONS(3254), + [sym_undefined] = ACTIONS(3254), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_static] = ACTIONS(3254), + [anon_sym_readonly] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3254), + [anon_sym_set] = ACTIONS(3254), + [anon_sym_declare] = ACTIONS(3254), + [anon_sym_public] = ACTIONS(3254), + [anon_sym_private] = ACTIONS(3254), + [anon_sym_protected] = ACTIONS(3254), + [anon_sym_override] = ACTIONS(3254), + [anon_sym_module] = ACTIONS(3254), + [anon_sym_any] = ACTIONS(3254), + [anon_sym_number] = ACTIONS(3254), + [anon_sym_boolean] = ACTIONS(3254), + [anon_sym_string] = ACTIONS(3254), + [anon_sym_symbol] = ACTIONS(3254), + [anon_sym_object] = ACTIONS(3254), + [anon_sym_abstract] = ACTIONS(3254), + [anon_sym_interface] = ACTIONS(3254), + [anon_sym_enum] = ACTIONS(3254), [sym_html_comment] = ACTIONS(5), }, - [1473] = { - [sym_comment] = STATE(1473), - [ts_builtin_sym_end] = ACTIONS(3514), - [sym_identifier] = ACTIONS(3226), - [anon_sym_export] = ACTIONS(3226), - [anon_sym_type] = ACTIONS(3226), - [anon_sym_namespace] = ACTIONS(3226), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_RBRACE] = ACTIONS(3226), - [anon_sym_typeof] = ACTIONS(3226), - [anon_sym_import] = ACTIONS(3226), - [anon_sym_with] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_const] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_else] = ACTIONS(3226), - [anon_sym_if] = ACTIONS(3226), - [anon_sym_switch] = ACTIONS(3226), - [anon_sym_for] = ACTIONS(3226), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_await] = ACTIONS(3226), - [anon_sym_while] = ACTIONS(3226), - [anon_sym_do] = ACTIONS(3226), - [anon_sym_try] = ACTIONS(3226), - [anon_sym_break] = ACTIONS(3226), - [anon_sym_continue] = ACTIONS(3226), - [anon_sym_debugger] = ACTIONS(3226), - [anon_sym_return] = ACTIONS(3226), - [anon_sym_throw] = ACTIONS(3226), - [anon_sym_SEMI] = ACTIONS(3226), - [anon_sym_yield] = ACTIONS(3226), - [anon_sym_LBRACK] = ACTIONS(3226), - [anon_sym_LTtemplate_GT] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [anon_sym_class] = ACTIONS(3226), - [anon_sym_async] = ACTIONS(3226), - [anon_sym_function] = ACTIONS(3226), - [anon_sym_new] = ACTIONS(3226), - [anon_sym_using] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_SLASH] = ACTIONS(3226), - [anon_sym_LT] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_void] = ACTIONS(3226), - [anon_sym_delete] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_DASH_DASH] = ACTIONS(3226), + [1423] = { + [sym_comment] = STATE(1423), + [sym_identifier] = ACTIONS(3140), + [anon_sym_export] = ACTIONS(3140), + [anon_sym_default] = ACTIONS(3140), + [anon_sym_type] = ACTIONS(3140), + [anon_sym_namespace] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(3140), + [anon_sym_RBRACE] = ACTIONS(3140), + [anon_sym_typeof] = ACTIONS(3140), + [anon_sym_import] = ACTIONS(3140), + [anon_sym_with] = ACTIONS(3140), + [anon_sym_var] = ACTIONS(3140), + [anon_sym_let] = ACTIONS(3140), + [anon_sym_const] = ACTIONS(3140), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_switch] = ACTIONS(3140), + [anon_sym_for] = ACTIONS(3140), + [anon_sym_LPAREN] = ACTIONS(3140), + [anon_sym_await] = ACTIONS(3140), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_do] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_debugger] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3140), + [anon_sym_case] = ACTIONS(3140), + [anon_sym_yield] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_LTtemplate_GT] = ACTIONS(3140), + [anon_sym_DQUOTE] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3140), + [anon_sym_class] = ACTIONS(3140), + [anon_sym_async] = ACTIONS(3140), + [anon_sym_function] = ACTIONS(3140), + [anon_sym_new] = ACTIONS(3140), + [anon_sym_using] = ACTIONS(3140), + [anon_sym_PLUS] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3140), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_void] = ACTIONS(3140), + [anon_sym_delete] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_DASH_DASH] = ACTIONS(3140), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3226), - [sym_number] = ACTIONS(3226), - [sym_private_property_identifier] = ACTIONS(3226), - [sym_this] = ACTIONS(3226), - [sym_super] = ACTIONS(3226), - [sym_true] = ACTIONS(3226), - [sym_false] = ACTIONS(3226), - [sym_null] = ACTIONS(3226), - [sym_undefined] = ACTIONS(3226), - [anon_sym_AT] = ACTIONS(3226), - [anon_sym_static] = ACTIONS(3226), - [anon_sym_readonly] = ACTIONS(3226), - [anon_sym_get] = ACTIONS(3226), - [anon_sym_set] = ACTIONS(3226), - [anon_sym_declare] = ACTIONS(3226), - [anon_sym_public] = ACTIONS(3226), - [anon_sym_private] = ACTIONS(3226), - [anon_sym_protected] = ACTIONS(3226), - [anon_sym_override] = ACTIONS(3226), - [anon_sym_module] = ACTIONS(3226), - [anon_sym_any] = ACTIONS(3226), - [anon_sym_number] = ACTIONS(3226), - [anon_sym_boolean] = ACTIONS(3226), - [anon_sym_string] = ACTIONS(3226), - [anon_sym_symbol] = ACTIONS(3226), - [anon_sym_object] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3226), - [anon_sym_interface] = ACTIONS(3226), - [anon_sym_enum] = ACTIONS(3226), + [anon_sym_BQUOTE] = ACTIONS(3140), + [sym_number] = ACTIONS(3140), + [sym_private_property_identifier] = ACTIONS(3140), + [sym_this] = ACTIONS(3140), + [sym_super] = ACTIONS(3140), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_AT] = ACTIONS(3140), + [anon_sym_static] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_get] = ACTIONS(3140), + [anon_sym_set] = ACTIONS(3140), + [anon_sym_declare] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_module] = ACTIONS(3140), + [anon_sym_any] = ACTIONS(3140), + [anon_sym_number] = ACTIONS(3140), + [anon_sym_boolean] = ACTIONS(3140), + [anon_sym_string] = ACTIONS(3140), + [anon_sym_symbol] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_interface] = ACTIONS(3140), + [anon_sym_enum] = ACTIONS(3140), [sym_html_comment] = ACTIONS(5), }, - [1474] = { - [sym_comment] = STATE(1474), - [sym_identifier] = ACTIONS(3324), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_default] = ACTIONS(3324), - [anon_sym_type] = ACTIONS(3324), - [anon_sym_namespace] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_typeof] = ACTIONS(3324), - [anon_sym_import] = ACTIONS(3324), - [anon_sym_with] = ACTIONS(3324), - [anon_sym_var] = ACTIONS(3324), - [anon_sym_let] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_await] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_try] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_debugger] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_throw] = ACTIONS(3324), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_case] = ACTIONS(3324), - [anon_sym_yield] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3324), - [anon_sym_LTtemplate_GT] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_class] = ACTIONS(3324), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_function] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_using] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_void] = ACTIONS(3324), - [anon_sym_delete] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3324), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3324), - [sym_number] = ACTIONS(3324), - [sym_private_property_identifier] = ACTIONS(3324), - [sym_this] = ACTIONS(3324), - [sym_super] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_null] = ACTIONS(3324), - [sym_undefined] = ACTIONS(3324), - [anon_sym_AT] = ACTIONS(3324), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_readonly] = ACTIONS(3324), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3324), - [anon_sym_declare] = ACTIONS(3324), - [anon_sym_public] = ACTIONS(3324), - [anon_sym_private] = ACTIONS(3324), - [anon_sym_protected] = ACTIONS(3324), - [anon_sym_override] = ACTIONS(3324), - [anon_sym_module] = ACTIONS(3324), - [anon_sym_any] = ACTIONS(3324), - [anon_sym_number] = ACTIONS(3324), - [anon_sym_boolean] = ACTIONS(3324), - [anon_sym_string] = ACTIONS(3324), - [anon_sym_symbol] = ACTIONS(3324), - [anon_sym_object] = ACTIONS(3324), - [anon_sym_abstract] = ACTIONS(3324), - [anon_sym_interface] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), - [sym_html_comment] = ACTIONS(5), - }, - [1475] = { - [sym_comment] = STATE(1475), - [ts_builtin_sym_end] = ACTIONS(3516), - [sym_identifier] = ACTIONS(3220), - [anon_sym_export] = ACTIONS(3220), - [anon_sym_type] = ACTIONS(3220), - [anon_sym_namespace] = ACTIONS(3220), - [anon_sym_LBRACE] = ACTIONS(3220), - [anon_sym_RBRACE] = ACTIONS(3220), - [anon_sym_typeof] = ACTIONS(3220), - [anon_sym_import] = ACTIONS(3220), - [anon_sym_with] = ACTIONS(3220), - [anon_sym_var] = ACTIONS(3220), - [anon_sym_let] = ACTIONS(3220), - [anon_sym_const] = ACTIONS(3220), - [anon_sym_BANG] = ACTIONS(3220), - [anon_sym_else] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3220), - [anon_sym_switch] = ACTIONS(3220), - [anon_sym_for] = ACTIONS(3220), - [anon_sym_LPAREN] = ACTIONS(3220), - [anon_sym_await] = ACTIONS(3220), - [anon_sym_while] = ACTIONS(3220), - [anon_sym_do] = ACTIONS(3220), - [anon_sym_try] = ACTIONS(3220), - [anon_sym_break] = ACTIONS(3220), - [anon_sym_continue] = ACTIONS(3220), - [anon_sym_debugger] = ACTIONS(3220), - [anon_sym_return] = ACTIONS(3220), - [anon_sym_throw] = ACTIONS(3220), - [anon_sym_SEMI] = ACTIONS(3220), - [anon_sym_yield] = ACTIONS(3220), - [anon_sym_LBRACK] = ACTIONS(3220), - [anon_sym_LTtemplate_GT] = ACTIONS(3220), - [anon_sym_DQUOTE] = ACTIONS(3220), - [anon_sym_SQUOTE] = ACTIONS(3220), - [anon_sym_class] = ACTIONS(3220), - [anon_sym_async] = ACTIONS(3220), - [anon_sym_function] = ACTIONS(3220), - [anon_sym_new] = ACTIONS(3220), - [anon_sym_using] = ACTIONS(3220), - [anon_sym_PLUS] = ACTIONS(3220), - [anon_sym_DASH] = ACTIONS(3220), - [anon_sym_SLASH] = ACTIONS(3220), - [anon_sym_LT] = ACTIONS(3220), - [anon_sym_TILDE] = ACTIONS(3220), - [anon_sym_void] = ACTIONS(3220), - [anon_sym_delete] = ACTIONS(3220), - [anon_sym_PLUS_PLUS] = ACTIONS(3220), - [anon_sym_DASH_DASH] = ACTIONS(3220), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3220), - [sym_number] = ACTIONS(3220), - [sym_private_property_identifier] = ACTIONS(3220), - [sym_this] = ACTIONS(3220), - [sym_super] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_null] = ACTIONS(3220), - [sym_undefined] = ACTIONS(3220), - [anon_sym_AT] = ACTIONS(3220), - [anon_sym_static] = ACTIONS(3220), - [anon_sym_readonly] = ACTIONS(3220), - [anon_sym_get] = ACTIONS(3220), - [anon_sym_set] = ACTIONS(3220), - [anon_sym_declare] = ACTIONS(3220), - [anon_sym_public] = ACTIONS(3220), - [anon_sym_private] = ACTIONS(3220), - [anon_sym_protected] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3220), - [anon_sym_module] = ACTIONS(3220), - [anon_sym_any] = ACTIONS(3220), - [anon_sym_number] = ACTIONS(3220), - [anon_sym_boolean] = ACTIONS(3220), - [anon_sym_string] = ACTIONS(3220), - [anon_sym_symbol] = ACTIONS(3220), - [anon_sym_object] = ACTIONS(3220), - [anon_sym_abstract] = ACTIONS(3220), - [anon_sym_interface] = ACTIONS(3220), - [anon_sym_enum] = ACTIONS(3220), - [sym_html_comment] = ACTIONS(5), - }, - [1476] = { - [sym_comment] = STATE(1476), - [sym_identifier] = ACTIONS(3324), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_default] = ACTIONS(3324), - [anon_sym_type] = ACTIONS(3324), - [anon_sym_namespace] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_typeof] = ACTIONS(3324), - [anon_sym_import] = ACTIONS(3324), - [anon_sym_with] = ACTIONS(3324), - [anon_sym_var] = ACTIONS(3324), - [anon_sym_let] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_await] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_try] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_debugger] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_throw] = ACTIONS(3324), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_case] = ACTIONS(3324), - [anon_sym_yield] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3324), - [anon_sym_LTtemplate_GT] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_class] = ACTIONS(3324), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_function] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_using] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_void] = ACTIONS(3324), - [anon_sym_delete] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3324), + [1424] = { + [sym_comment] = STATE(1424), + [ts_builtin_sym_end] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_else] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3324), - [sym_number] = ACTIONS(3324), - [sym_private_property_identifier] = ACTIONS(3324), - [sym_this] = ACTIONS(3324), - [sym_super] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_null] = ACTIONS(3324), - [sym_undefined] = ACTIONS(3324), - [anon_sym_AT] = ACTIONS(3324), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_readonly] = ACTIONS(3324), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3324), - [anon_sym_declare] = ACTIONS(3324), - [anon_sym_public] = ACTIONS(3324), - [anon_sym_private] = ACTIONS(3324), - [anon_sym_protected] = ACTIONS(3324), - [anon_sym_override] = ACTIONS(3324), - [anon_sym_module] = ACTIONS(3324), - [anon_sym_any] = ACTIONS(3324), - [anon_sym_number] = ACTIONS(3324), - [anon_sym_boolean] = ACTIONS(3324), - [anon_sym_string] = ACTIONS(3324), - [anon_sym_symbol] = ACTIONS(3324), - [anon_sym_object] = ACTIONS(3324), - [anon_sym_abstract] = ACTIONS(3324), - [anon_sym_interface] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1477] = { - [sym_comment] = STATE(1477), - [sym_identifier] = ACTIONS(3322), - [anon_sym_export] = ACTIONS(3322), - [anon_sym_default] = ACTIONS(3322), - [anon_sym_type] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3322), - [anon_sym_RBRACE] = ACTIONS(3322), - [anon_sym_typeof] = ACTIONS(3322), - [anon_sym_import] = ACTIONS(3322), - [anon_sym_with] = ACTIONS(3322), - [anon_sym_var] = ACTIONS(3322), - [anon_sym_let] = ACTIONS(3322), - [anon_sym_const] = ACTIONS(3322), - [anon_sym_BANG] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3322), - [anon_sym_switch] = ACTIONS(3322), - [anon_sym_for] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3322), - [anon_sym_await] = ACTIONS(3322), - [anon_sym_while] = ACTIONS(3322), - [anon_sym_do] = ACTIONS(3322), - [anon_sym_try] = ACTIONS(3322), - [anon_sym_break] = ACTIONS(3322), - [anon_sym_continue] = ACTIONS(3322), - [anon_sym_debugger] = ACTIONS(3322), - [anon_sym_return] = ACTIONS(3322), - [anon_sym_throw] = ACTIONS(3322), - [anon_sym_SEMI] = ACTIONS(3322), - [anon_sym_case] = ACTIONS(3322), - [anon_sym_yield] = ACTIONS(3322), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_LTtemplate_GT] = ACTIONS(3322), - [anon_sym_DQUOTE] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3322), - [anon_sym_class] = ACTIONS(3322), - [anon_sym_async] = ACTIONS(3322), - [anon_sym_function] = ACTIONS(3322), - [anon_sym_new] = ACTIONS(3322), - [anon_sym_using] = ACTIONS(3322), - [anon_sym_PLUS] = ACTIONS(3322), - [anon_sym_DASH] = ACTIONS(3322), - [anon_sym_SLASH] = ACTIONS(3322), - [anon_sym_LT] = ACTIONS(3322), - [anon_sym_TILDE] = ACTIONS(3322), - [anon_sym_void] = ACTIONS(3322), - [anon_sym_delete] = ACTIONS(3322), - [anon_sym_PLUS_PLUS] = ACTIONS(3322), - [anon_sym_DASH_DASH] = ACTIONS(3322), + [1425] = { + [sym_comment] = STATE(1425), + [sym_identifier] = ACTIONS(3144), + [anon_sym_export] = ACTIONS(3144), + [anon_sym_default] = ACTIONS(3144), + [anon_sym_type] = ACTIONS(3144), + [anon_sym_namespace] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_RBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3144), + [anon_sym_import] = ACTIONS(3144), + [anon_sym_with] = ACTIONS(3144), + [anon_sym_var] = ACTIONS(3144), + [anon_sym_let] = ACTIONS(3144), + [anon_sym_const] = ACTIONS(3144), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_switch] = ACTIONS(3144), + [anon_sym_for] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_await] = ACTIONS(3144), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_do] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_debugger] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_throw] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3144), + [anon_sym_case] = ACTIONS(3144), + [anon_sym_yield] = ACTIONS(3144), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_LTtemplate_GT] = ACTIONS(3144), + [anon_sym_DQUOTE] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3144), + [anon_sym_class] = ACTIONS(3144), + [anon_sym_async] = ACTIONS(3144), + [anon_sym_function] = ACTIONS(3144), + [anon_sym_new] = ACTIONS(3144), + [anon_sym_using] = ACTIONS(3144), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_SLASH] = ACTIONS(3144), + [anon_sym_LT] = ACTIONS(3144), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_void] = ACTIONS(3144), + [anon_sym_delete] = ACTIONS(3144), + [anon_sym_PLUS_PLUS] = ACTIONS(3144), + [anon_sym_DASH_DASH] = ACTIONS(3144), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3322), - [sym_number] = ACTIONS(3322), - [sym_private_property_identifier] = ACTIONS(3322), - [sym_this] = ACTIONS(3322), - [sym_super] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_null] = ACTIONS(3322), - [sym_undefined] = ACTIONS(3322), - [anon_sym_AT] = ACTIONS(3322), - [anon_sym_static] = ACTIONS(3322), - [anon_sym_readonly] = ACTIONS(3322), - [anon_sym_get] = ACTIONS(3322), - [anon_sym_set] = ACTIONS(3322), - [anon_sym_declare] = ACTIONS(3322), - [anon_sym_public] = ACTIONS(3322), - [anon_sym_private] = ACTIONS(3322), - [anon_sym_protected] = ACTIONS(3322), - [anon_sym_override] = ACTIONS(3322), - [anon_sym_module] = ACTIONS(3322), - [anon_sym_any] = ACTIONS(3322), - [anon_sym_number] = ACTIONS(3322), - [anon_sym_boolean] = ACTIONS(3322), - [anon_sym_string] = ACTIONS(3322), - [anon_sym_symbol] = ACTIONS(3322), - [anon_sym_object] = ACTIONS(3322), - [anon_sym_abstract] = ACTIONS(3322), - [anon_sym_interface] = ACTIONS(3322), - [anon_sym_enum] = ACTIONS(3322), + [anon_sym_BQUOTE] = ACTIONS(3144), + [sym_number] = ACTIONS(3144), + [sym_private_property_identifier] = ACTIONS(3144), + [sym_this] = ACTIONS(3144), + [sym_super] = ACTIONS(3144), + [sym_true] = ACTIONS(3144), + [sym_false] = ACTIONS(3144), + [sym_null] = ACTIONS(3144), + [sym_undefined] = ACTIONS(3144), + [anon_sym_AT] = ACTIONS(3144), + [anon_sym_static] = ACTIONS(3144), + [anon_sym_readonly] = ACTIONS(3144), + [anon_sym_get] = ACTIONS(3144), + [anon_sym_set] = ACTIONS(3144), + [anon_sym_declare] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_module] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3144), + [anon_sym_number] = ACTIONS(3144), + [anon_sym_boolean] = ACTIONS(3144), + [anon_sym_string] = ACTIONS(3144), + [anon_sym_symbol] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_interface] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [1478] = { - [sym_comment] = STATE(1478), - [sym_identifier] = ACTIONS(3320), - [anon_sym_export] = ACTIONS(3320), - [anon_sym_default] = ACTIONS(3320), - [anon_sym_type] = ACTIONS(3320), - [anon_sym_namespace] = ACTIONS(3320), - [anon_sym_LBRACE] = ACTIONS(3320), - [anon_sym_RBRACE] = ACTIONS(3320), - [anon_sym_typeof] = ACTIONS(3320), - [anon_sym_import] = ACTIONS(3320), - [anon_sym_with] = ACTIONS(3320), - [anon_sym_var] = ACTIONS(3320), - [anon_sym_let] = ACTIONS(3320), - [anon_sym_const] = ACTIONS(3320), - [anon_sym_BANG] = ACTIONS(3320), - [anon_sym_if] = ACTIONS(3320), - [anon_sym_switch] = ACTIONS(3320), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(3320), - [anon_sym_await] = ACTIONS(3320), - [anon_sym_while] = ACTIONS(3320), - [anon_sym_do] = ACTIONS(3320), - [anon_sym_try] = ACTIONS(3320), - [anon_sym_break] = ACTIONS(3320), - [anon_sym_continue] = ACTIONS(3320), - [anon_sym_debugger] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(3320), - [anon_sym_throw] = ACTIONS(3320), - [anon_sym_SEMI] = ACTIONS(3320), - [anon_sym_case] = ACTIONS(3320), - [anon_sym_yield] = ACTIONS(3320), - [anon_sym_LBRACK] = ACTIONS(3320), - [anon_sym_LTtemplate_GT] = ACTIONS(3320), - [anon_sym_DQUOTE] = ACTIONS(3320), - [anon_sym_SQUOTE] = ACTIONS(3320), - [anon_sym_class] = ACTIONS(3320), - [anon_sym_async] = ACTIONS(3320), - [anon_sym_function] = ACTIONS(3320), - [anon_sym_new] = ACTIONS(3320), - [anon_sym_using] = ACTIONS(3320), - [anon_sym_PLUS] = ACTIONS(3320), - [anon_sym_DASH] = ACTIONS(3320), - [anon_sym_SLASH] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(3320), - [anon_sym_TILDE] = ACTIONS(3320), - [anon_sym_void] = ACTIONS(3320), - [anon_sym_delete] = ACTIONS(3320), - [anon_sym_PLUS_PLUS] = ACTIONS(3320), - [anon_sym_DASH_DASH] = ACTIONS(3320), + [1426] = { + [sym_comment] = STATE(1426), + [sym_identifier] = ACTIONS(3250), + [anon_sym_export] = ACTIONS(3250), + [anon_sym_default] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_namespace] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_typeof] = ACTIONS(3250), + [anon_sym_import] = ACTIONS(3250), + [anon_sym_with] = ACTIONS(3250), + [anon_sym_var] = ACTIONS(3250), + [anon_sym_let] = ACTIONS(3250), + [anon_sym_const] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_switch] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym_await] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_do] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_debugger] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym_case] = ACTIONS(3250), + [anon_sym_yield] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3250), + [anon_sym_LTtemplate_GT] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_function] = ACTIONS(3250), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_using] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_void] = ACTIONS(3250), + [anon_sym_delete] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3320), - [sym_number] = ACTIONS(3320), - [sym_private_property_identifier] = ACTIONS(3320), - [sym_this] = ACTIONS(3320), - [sym_super] = ACTIONS(3320), - [sym_true] = ACTIONS(3320), - [sym_false] = ACTIONS(3320), - [sym_null] = ACTIONS(3320), - [sym_undefined] = ACTIONS(3320), - [anon_sym_AT] = ACTIONS(3320), - [anon_sym_static] = ACTIONS(3320), - [anon_sym_readonly] = ACTIONS(3320), - [anon_sym_get] = ACTIONS(3320), - [anon_sym_set] = ACTIONS(3320), - [anon_sym_declare] = ACTIONS(3320), - [anon_sym_public] = ACTIONS(3320), - [anon_sym_private] = ACTIONS(3320), - [anon_sym_protected] = ACTIONS(3320), - [anon_sym_override] = ACTIONS(3320), - [anon_sym_module] = ACTIONS(3320), - [anon_sym_any] = ACTIONS(3320), - [anon_sym_number] = ACTIONS(3320), - [anon_sym_boolean] = ACTIONS(3320), - [anon_sym_string] = ACTIONS(3320), - [anon_sym_symbol] = ACTIONS(3320), - [anon_sym_object] = ACTIONS(3320), - [anon_sym_abstract] = ACTIONS(3320), - [anon_sym_interface] = ACTIONS(3320), - [anon_sym_enum] = ACTIONS(3320), + [anon_sym_BQUOTE] = ACTIONS(3250), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), + [sym_this] = ACTIONS(3250), + [sym_super] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_null] = ACTIONS(3250), + [sym_undefined] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3250), + [anon_sym_static] = ACTIONS(3250), + [anon_sym_readonly] = ACTIONS(3250), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_declare] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_module] = ACTIONS(3250), + [anon_sym_any] = ACTIONS(3250), + [anon_sym_number] = ACTIONS(3250), + [anon_sym_boolean] = ACTIONS(3250), + [anon_sym_string] = ACTIONS(3250), + [anon_sym_symbol] = ACTIONS(3250), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_interface] = ACTIONS(3250), + [anon_sym_enum] = ACTIONS(3250), [sym_html_comment] = ACTIONS(5), }, - [1479] = { - [sym_comment] = STATE(1479), - [ts_builtin_sym_end] = ACTIONS(3518), - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_with] = ACTIONS(3216), - [anon_sym_var] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_debugger] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_throw] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_LTtemplate_GT] = ACTIONS(3216), - [anon_sym_DQUOTE] = ACTIONS(3216), - [anon_sym_SQUOTE] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3216), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3216), - [sym_number] = ACTIONS(3216), - [sym_private_property_identifier] = ACTIONS(3216), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_override] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_interface] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), + [1427] = { + [sym_comment] = STATE(1427), + [ts_builtin_sym_end] = ACTIONS(3564), + [sym_identifier] = ACTIONS(3312), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_type] = ACTIONS(3312), + [anon_sym_namespace] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_typeof] = ACTIONS(3312), + [anon_sym_import] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3312), + [anon_sym_var] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_await] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_debugger] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LTtemplate_GT] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_async] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_using] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_SLASH] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_void] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3312), + [sym_number] = ACTIONS(3312), + [sym_private_property_identifier] = ACTIONS(3312), + [sym_this] = ACTIONS(3312), + [sym_super] = ACTIONS(3312), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [sym_null] = ACTIONS(3312), + [sym_undefined] = ACTIONS(3312), + [anon_sym_AT] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_readonly] = ACTIONS(3312), + [anon_sym_get] = ACTIONS(3312), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_declare] = ACTIONS(3312), + [anon_sym_public] = ACTIONS(3312), + [anon_sym_private] = ACTIONS(3312), + [anon_sym_protected] = ACTIONS(3312), + [anon_sym_override] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_any] = ACTIONS(3312), + [anon_sym_number] = ACTIONS(3312), + [anon_sym_boolean] = ACTIONS(3312), + [anon_sym_string] = ACTIONS(3312), + [anon_sym_symbol] = ACTIONS(3312), + [anon_sym_object] = ACTIONS(3312), + [anon_sym_abstract] = ACTIONS(3312), + [anon_sym_interface] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), [sym_html_comment] = ACTIONS(5), }, - [1480] = { - [sym_comment] = STATE(1480), - [ts_builtin_sym_end] = ACTIONS(3518), - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_with] = ACTIONS(3216), - [anon_sym_var] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_debugger] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_throw] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_LTtemplate_GT] = ACTIONS(3216), - [anon_sym_DQUOTE] = ACTIONS(3216), - [anon_sym_SQUOTE] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3216), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3216), - [sym_number] = ACTIONS(3216), - [sym_private_property_identifier] = ACTIONS(3216), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_override] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_interface] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), + [1428] = { + [sym_comment] = STATE(1428), + [ts_builtin_sym_end] = ACTIONS(3566), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_RBRACE] = ACTIONS(3314), + [anon_sym_typeof] = ACTIONS(3314), + [anon_sym_import] = ACTIONS(3314), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_var] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_const] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_else] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_switch] = ACTIONS(3314), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_await] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_break] = ACTIONS(3314), + [anon_sym_continue] = ACTIONS(3314), + [anon_sym_debugger] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_throw] = ACTIONS(3314), + [anon_sym_SEMI] = ACTIONS(3314), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LTtemplate_GT] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_SQUOTE] = ACTIONS(3314), + [anon_sym_class] = ACTIONS(3314), + [anon_sym_async] = ACTIONS(3314), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_using] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_SLASH] = ACTIONS(3314), + [anon_sym_LT] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3314), + [anon_sym_void] = ACTIONS(3314), + [anon_sym_delete] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3314), + [anon_sym_DASH_DASH] = ACTIONS(3314), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3314), + [sym_number] = ACTIONS(3314), + [sym_private_property_identifier] = ACTIONS(3314), + [sym_this] = ACTIONS(3314), + [sym_super] = ACTIONS(3314), + [sym_true] = ACTIONS(3314), + [sym_false] = ACTIONS(3314), + [sym_null] = ACTIONS(3314), + [sym_undefined] = ACTIONS(3314), + [anon_sym_AT] = ACTIONS(3314), + [anon_sym_static] = ACTIONS(3314), + [anon_sym_readonly] = ACTIONS(3314), + [anon_sym_get] = ACTIONS(3314), + [anon_sym_set] = ACTIONS(3314), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3314), + [anon_sym_private] = ACTIONS(3314), + [anon_sym_protected] = ACTIONS(3314), + [anon_sym_override] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_any] = ACTIONS(3314), + [anon_sym_number] = ACTIONS(3314), + [anon_sym_boolean] = ACTIONS(3314), + [anon_sym_string] = ACTIONS(3314), + [anon_sym_symbol] = ACTIONS(3314), + [anon_sym_object] = ACTIONS(3314), + [anon_sym_abstract] = ACTIONS(3314), + [anon_sym_interface] = ACTIONS(3314), + [anon_sym_enum] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, - [1481] = { - [sym_comment] = STATE(1481), - [ts_builtin_sym_end] = ACTIONS(3518), - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_with] = ACTIONS(3216), - [anon_sym_var] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3216), - [anon_sym_else] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_debugger] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_throw] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_LTtemplate_GT] = ACTIONS(3216), - [anon_sym_DQUOTE] = ACTIONS(3216), - [anon_sym_SQUOTE] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3216), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3216), - [sym_number] = ACTIONS(3216), - [sym_private_property_identifier] = ACTIONS(3216), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_override] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_interface] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), + [1429] = { + [sym_comment] = STATE(1429), + [ts_builtin_sym_end] = ACTIONS(3568), + [sym_identifier] = ACTIONS(3318), + [anon_sym_export] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_namespace] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_typeof] = ACTIONS(3318), + [anon_sym_import] = ACTIONS(3318), + [anon_sym_with] = ACTIONS(3318), + [anon_sym_var] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_const] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_switch] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_await] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_break] = ACTIONS(3318), + [anon_sym_continue] = ACTIONS(3318), + [anon_sym_debugger] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_throw] = ACTIONS(3318), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LTtemplate_GT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_class] = ACTIONS(3318), + [anon_sym_async] = ACTIONS(3318), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_using] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_void] = ACTIONS(3318), + [anon_sym_delete] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3318), + [sym_number] = ACTIONS(3318), + [sym_private_property_identifier] = ACTIONS(3318), + [sym_this] = ACTIONS(3318), + [sym_super] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_null] = ACTIONS(3318), + [sym_undefined] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_static] = ACTIONS(3318), + [anon_sym_readonly] = ACTIONS(3318), + [anon_sym_get] = ACTIONS(3318), + [anon_sym_set] = ACTIONS(3318), + [anon_sym_declare] = ACTIONS(3318), + [anon_sym_public] = ACTIONS(3318), + [anon_sym_private] = ACTIONS(3318), + [anon_sym_protected] = ACTIONS(3318), + [anon_sym_override] = ACTIONS(3318), + [anon_sym_module] = ACTIONS(3318), + [anon_sym_any] = ACTIONS(3318), + [anon_sym_number] = ACTIONS(3318), + [anon_sym_boolean] = ACTIONS(3318), + [anon_sym_string] = ACTIONS(3318), + [anon_sym_symbol] = ACTIONS(3318), + [anon_sym_object] = ACTIONS(3318), + [anon_sym_abstract] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_enum] = ACTIONS(3318), [sym_html_comment] = ACTIONS(5), }, - [1482] = { - [sym_comment] = STATE(1482), - [ts_builtin_sym_end] = ACTIONS(3520), - [sym_identifier] = ACTIONS(3210), - [anon_sym_export] = ACTIONS(3210), - [anon_sym_type] = ACTIONS(3210), - [anon_sym_namespace] = ACTIONS(3210), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3210), - [anon_sym_import] = ACTIONS(3210), - [anon_sym_with] = ACTIONS(3210), - [anon_sym_var] = ACTIONS(3210), - [anon_sym_let] = ACTIONS(3210), - [anon_sym_const] = ACTIONS(3210), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3210), - [anon_sym_if] = ACTIONS(3210), - [anon_sym_switch] = ACTIONS(3210), - [anon_sym_for] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3210), - [anon_sym_while] = ACTIONS(3210), - [anon_sym_do] = ACTIONS(3210), - [anon_sym_try] = ACTIONS(3210), - [anon_sym_break] = ACTIONS(3210), - [anon_sym_continue] = ACTIONS(3210), - [anon_sym_debugger] = ACTIONS(3210), - [anon_sym_return] = ACTIONS(3210), - [anon_sym_throw] = ACTIONS(3210), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_yield] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LTtemplate_GT] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [anon_sym_class] = ACTIONS(3210), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_function] = ACTIONS(3210), - [anon_sym_new] = ACTIONS(3210), - [anon_sym_using] = ACTIONS(3210), - [anon_sym_PLUS] = ACTIONS(3210), - [anon_sym_DASH] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3210), - [anon_sym_delete] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), + [1430] = { + [sym_comment] = STATE(1430), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_private_property_identifier] = ACTIONS(3210), - [sym_this] = ACTIONS(3210), - [sym_super] = ACTIONS(3210), - [sym_true] = ACTIONS(3210), - [sym_false] = ACTIONS(3210), - [sym_null] = ACTIONS(3210), - [sym_undefined] = ACTIONS(3210), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3210), - [anon_sym_readonly] = ACTIONS(3210), - [anon_sym_get] = ACTIONS(3210), - [anon_sym_set] = ACTIONS(3210), - [anon_sym_declare] = ACTIONS(3210), - [anon_sym_public] = ACTIONS(3210), - [anon_sym_private] = ACTIONS(3210), - [anon_sym_protected] = ACTIONS(3210), - [anon_sym_override] = ACTIONS(3210), - [anon_sym_module] = ACTIONS(3210), - [anon_sym_any] = ACTIONS(3210), - [anon_sym_number] = ACTIONS(3210), - [anon_sym_boolean] = ACTIONS(3210), - [anon_sym_string] = ACTIONS(3210), - [anon_sym_symbol] = ACTIONS(3210), - [anon_sym_object] = ACTIONS(3210), - [anon_sym_abstract] = ACTIONS(3210), - [anon_sym_interface] = ACTIONS(3210), - [anon_sym_enum] = ACTIONS(3210), - [sym_html_comment] = ACTIONS(5), - }, - [1483] = { - [sym_comment] = STATE(1483), - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(3208), - [anon_sym_export] = ACTIONS(3208), - [anon_sym_type] = ACTIONS(3208), - [anon_sym_namespace] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3208), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_typeof] = ACTIONS(3208), - [anon_sym_import] = ACTIONS(3208), - [anon_sym_with] = ACTIONS(3208), - [anon_sym_var] = ACTIONS(3208), - [anon_sym_let] = ACTIONS(3208), - [anon_sym_const] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_else] = ACTIONS(3208), - [anon_sym_if] = ACTIONS(3208), - [anon_sym_switch] = ACTIONS(3208), - [anon_sym_for] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_await] = ACTIONS(3208), - [anon_sym_while] = ACTIONS(3208), - [anon_sym_do] = ACTIONS(3208), - [anon_sym_try] = ACTIONS(3208), - [anon_sym_break] = ACTIONS(3208), - [anon_sym_continue] = ACTIONS(3208), - [anon_sym_debugger] = ACTIONS(3208), - [anon_sym_return] = ACTIONS(3208), - [anon_sym_throw] = ACTIONS(3208), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_yield] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_LTtemplate_GT] = ACTIONS(3208), - [anon_sym_DQUOTE] = ACTIONS(3208), - [anon_sym_SQUOTE] = ACTIONS(3208), - [anon_sym_class] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3208), - [anon_sym_function] = ACTIONS(3208), - [anon_sym_new] = ACTIONS(3208), - [anon_sym_using] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_SLASH] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_void] = ACTIONS(3208), - [anon_sym_delete] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3208), - [sym_number] = ACTIONS(3208), - [sym_private_property_identifier] = ACTIONS(3208), - [sym_this] = ACTIONS(3208), - [sym_super] = ACTIONS(3208), - [sym_true] = ACTIONS(3208), - [sym_false] = ACTIONS(3208), - [sym_null] = ACTIONS(3208), - [sym_undefined] = ACTIONS(3208), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_static] = ACTIONS(3208), - [anon_sym_readonly] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3208), - [anon_sym_set] = ACTIONS(3208), - [anon_sym_declare] = ACTIONS(3208), - [anon_sym_public] = ACTIONS(3208), - [anon_sym_private] = ACTIONS(3208), - [anon_sym_protected] = ACTIONS(3208), - [anon_sym_override] = ACTIONS(3208), - [anon_sym_module] = ACTIONS(3208), - [anon_sym_any] = ACTIONS(3208), - [anon_sym_number] = ACTIONS(3208), - [anon_sym_boolean] = ACTIONS(3208), - [anon_sym_string] = ACTIONS(3208), - [anon_sym_symbol] = ACTIONS(3208), - [anon_sym_object] = ACTIONS(3208), - [anon_sym_abstract] = ACTIONS(3208), - [anon_sym_interface] = ACTIONS(3208), - [anon_sym_enum] = ACTIONS(3208), - [sym_html_comment] = ACTIONS(5), - }, - [1484] = { - [sym_comment] = STATE(1484), - [ts_builtin_sym_end] = ACTIONS(3524), - [sym_identifier] = ACTIONS(3206), - [anon_sym_export] = ACTIONS(3206), - [anon_sym_type] = ACTIONS(3206), - [anon_sym_namespace] = ACTIONS(3206), - [anon_sym_LBRACE] = ACTIONS(3206), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_typeof] = ACTIONS(3206), - [anon_sym_import] = ACTIONS(3206), - [anon_sym_with] = ACTIONS(3206), - [anon_sym_var] = ACTIONS(3206), - [anon_sym_let] = ACTIONS(3206), - [anon_sym_const] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3206), - [anon_sym_if] = ACTIONS(3206), - [anon_sym_switch] = ACTIONS(3206), - [anon_sym_for] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3206), - [anon_sym_await] = ACTIONS(3206), - [anon_sym_while] = ACTIONS(3206), - [anon_sym_do] = ACTIONS(3206), - [anon_sym_try] = ACTIONS(3206), - [anon_sym_break] = ACTIONS(3206), - [anon_sym_continue] = ACTIONS(3206), - [anon_sym_debugger] = ACTIONS(3206), - [anon_sym_return] = ACTIONS(3206), - [anon_sym_throw] = ACTIONS(3206), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_yield] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_LTtemplate_GT] = ACTIONS(3206), - [anon_sym_DQUOTE] = ACTIONS(3206), - [anon_sym_SQUOTE] = ACTIONS(3206), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_async] = ACTIONS(3206), - [anon_sym_function] = ACTIONS(3206), - [anon_sym_new] = ACTIONS(3206), - [anon_sym_using] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_SLASH] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3206), - [anon_sym_TILDE] = ACTIONS(3206), - [anon_sym_void] = ACTIONS(3206), - [anon_sym_delete] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3206), - [sym_number] = ACTIONS(3206), - [sym_private_property_identifier] = ACTIONS(3206), - [sym_this] = ACTIONS(3206), - [sym_super] = ACTIONS(3206), - [sym_true] = ACTIONS(3206), - [sym_false] = ACTIONS(3206), - [sym_null] = ACTIONS(3206), - [sym_undefined] = ACTIONS(3206), - [anon_sym_AT] = ACTIONS(3206), - [anon_sym_static] = ACTIONS(3206), - [anon_sym_readonly] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3206), - [anon_sym_set] = ACTIONS(3206), - [anon_sym_declare] = ACTIONS(3206), - [anon_sym_public] = ACTIONS(3206), - [anon_sym_private] = ACTIONS(3206), - [anon_sym_protected] = ACTIONS(3206), - [anon_sym_override] = ACTIONS(3206), - [anon_sym_module] = ACTIONS(3206), - [anon_sym_any] = ACTIONS(3206), - [anon_sym_number] = ACTIONS(3206), - [anon_sym_boolean] = ACTIONS(3206), - [anon_sym_string] = ACTIONS(3206), - [anon_sym_symbol] = ACTIONS(3206), - [anon_sym_object] = ACTIONS(3206), - [anon_sym_abstract] = ACTIONS(3206), - [anon_sym_interface] = ACTIONS(3206), - [anon_sym_enum] = ACTIONS(3206), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1485] = { - [sym_comment] = STATE(1485), - [ts_builtin_sym_end] = ACTIONS(3526), + [1431] = { + [sym_comment] = STATE(1431), [sym_identifier] = ACTIONS(3204), [anon_sym_export] = ACTIONS(3204), + [anon_sym_default] = ACTIONS(3204), [anon_sym_type] = ACTIONS(3204), [anon_sym_namespace] = ACTIONS(3204), [anon_sym_LBRACE] = ACTIONS(3204), @@ -185345,7 +180572,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3204), [anon_sym_const] = ACTIONS(3204), [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_else] = ACTIONS(3204), [anon_sym_if] = ACTIONS(3204), [anon_sym_switch] = ACTIONS(3204), [anon_sym_for] = ACTIONS(3204), @@ -185360,6 +180586,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3204), [anon_sym_throw] = ACTIONS(3204), [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym_case] = ACTIONS(3204), [anon_sym_yield] = ACTIONS(3204), [anon_sym_LBRACK] = ACTIONS(3204), [anon_sym_LTtemplate_GT] = ACTIONS(3204), @@ -185411,38 +180638,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3204), [sym_html_comment] = ACTIONS(5), }, - [1486] = { - [sym_comment] = STATE(1486), - [ts_builtin_sym_end] = ACTIONS(3528), - [sym_identifier] = ACTIONS(3202), - [anon_sym_export] = ACTIONS(3202), - [anon_sym_type] = ACTIONS(3202), - [anon_sym_namespace] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_typeof] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_with] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [anon_sym_let] = ACTIONS(3202), - [anon_sym_const] = ACTIONS(3202), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_else] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_switch] = ACTIONS(3202), - [anon_sym_for] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_await] = ACTIONS(3202), - [anon_sym_while] = ACTIONS(3202), - [anon_sym_do] = ACTIONS(3202), - [anon_sym_try] = ACTIONS(3202), - [anon_sym_break] = ACTIONS(3202), - [anon_sym_continue] = ACTIONS(3202), - [anon_sym_debugger] = ACTIONS(3202), - [anon_sym_return] = ACTIONS(3202), - [anon_sym_throw] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_yield] = ACTIONS(3202), + [1432] = { + [sym_comment] = STATE(1432), + [ts_builtin_sym_end] = ACTIONS(3570), + [sym_identifier] = ACTIONS(3236), + [anon_sym_export] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3236), + [anon_sym_namespace] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_RBRACE] = ACTIONS(3236), + [anon_sym_typeof] = ACTIONS(3236), + [anon_sym_import] = ACTIONS(3236), + [anon_sym_with] = ACTIONS(3236), + [anon_sym_var] = ACTIONS(3236), + [anon_sym_let] = ACTIONS(3236), + [anon_sym_const] = ACTIONS(3236), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_switch] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3236), + [anon_sym_await] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_do] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_debugger] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3236), + [anon_sym_yield] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_LTtemplate_GT] = ACTIONS(3236), + [anon_sym_DQUOTE] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3236), + [anon_sym_class] = ACTIONS(3236), + [anon_sym_async] = ACTIONS(3236), + [anon_sym_function] = ACTIONS(3236), + [anon_sym_new] = ACTIONS(3236), + [anon_sym_using] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_TILDE] = ACTIONS(3236), + [anon_sym_void] = ACTIONS(3236), + [anon_sym_delete] = ACTIONS(3236), + [anon_sym_PLUS_PLUS] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3236), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3236), + [sym_number] = ACTIONS(3236), + [sym_private_property_identifier] = ACTIONS(3236), + [sym_this] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_true] = ACTIONS(3236), + [sym_false] = ACTIONS(3236), + [sym_null] = ACTIONS(3236), + [sym_undefined] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3236), + [anon_sym_readonly] = ACTIONS(3236), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_declare] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_module] = ACTIONS(3236), + [anon_sym_any] = ACTIONS(3236), + [anon_sym_number] = ACTIONS(3236), + [anon_sym_boolean] = ACTIONS(3236), + [anon_sym_string] = ACTIONS(3236), + [anon_sym_symbol] = ACTIONS(3236), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_interface] = ACTIONS(3236), + [anon_sym_enum] = ACTIONS(3236), + [sym_html_comment] = ACTIONS(5), + }, + [1433] = { + [sym_comment] = STATE(1433), + [sym_identifier] = ACTIONS(3202), + [anon_sym_export] = ACTIONS(3202), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3202), + [anon_sym_typeof] = ACTIONS(3202), + [anon_sym_import] = ACTIONS(3202), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_var] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_await] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_debugger] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_throw] = ACTIONS(3202), + [anon_sym_SEMI] = ACTIONS(3202), + [anon_sym_case] = ACTIONS(3202), + [anon_sym_yield] = ACTIONS(3202), [anon_sym_LBRACK] = ACTIONS(3202), [anon_sym_LTtemplate_GT] = ACTIONS(3202), [anon_sym_DQUOTE] = ACTIONS(3202), @@ -185493,665 +180802,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3202), [sym_html_comment] = ACTIONS(5), }, - [1487] = { - [sym_comment] = STATE(1487), - [ts_builtin_sym_end] = ACTIONS(3530), - [sym_identifier] = ACTIONS(3200), - [anon_sym_export] = ACTIONS(3200), - [anon_sym_type] = ACTIONS(3200), - [anon_sym_namespace] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3200), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_typeof] = ACTIONS(3200), - [anon_sym_import] = ACTIONS(3200), - [anon_sym_with] = ACTIONS(3200), - [anon_sym_var] = ACTIONS(3200), - [anon_sym_let] = ACTIONS(3200), - [anon_sym_const] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_switch] = ACTIONS(3200), - [anon_sym_for] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_await] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_do] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_debugger] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_yield] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_LTtemplate_GT] = ACTIONS(3200), - [anon_sym_DQUOTE] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3200), - [anon_sym_class] = ACTIONS(3200), - [anon_sym_async] = ACTIONS(3200), - [anon_sym_function] = ACTIONS(3200), - [anon_sym_new] = ACTIONS(3200), - [anon_sym_using] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3200), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_void] = ACTIONS(3200), - [anon_sym_delete] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3200), - [sym_number] = ACTIONS(3200), - [sym_private_property_identifier] = ACTIONS(3200), - [sym_this] = ACTIONS(3200), - [sym_super] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_null] = ACTIONS(3200), - [sym_undefined] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_static] = ACTIONS(3200), - [anon_sym_readonly] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_declare] = ACTIONS(3200), - [anon_sym_public] = ACTIONS(3200), - [anon_sym_private] = ACTIONS(3200), - [anon_sym_protected] = ACTIONS(3200), - [anon_sym_override] = ACTIONS(3200), - [anon_sym_module] = ACTIONS(3200), - [anon_sym_any] = ACTIONS(3200), - [anon_sym_number] = ACTIONS(3200), - [anon_sym_boolean] = ACTIONS(3200), - [anon_sym_string] = ACTIONS(3200), - [anon_sym_symbol] = ACTIONS(3200), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_abstract] = ACTIONS(3200), - [anon_sym_interface] = ACTIONS(3200), - [anon_sym_enum] = ACTIONS(3200), - [sym_html_comment] = ACTIONS(5), - }, - [1488] = { - [sym_comment] = STATE(1488), - [ts_builtin_sym_end] = ACTIONS(3532), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), - [sym_html_comment] = ACTIONS(5), - }, - [1489] = { - [sym_comment] = STATE(1489), - [ts_builtin_sym_end] = ACTIONS(3532), - [sym_identifier] = ACTIONS(3198), - [anon_sym_export] = ACTIONS(3198), - [anon_sym_type] = ACTIONS(3198), - [anon_sym_namespace] = ACTIONS(3198), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3198), - [anon_sym_import] = ACTIONS(3198), - [anon_sym_with] = ACTIONS(3198), - [anon_sym_var] = ACTIONS(3198), - [anon_sym_let] = ACTIONS(3198), - [anon_sym_const] = ACTIONS(3198), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3198), - [anon_sym_if] = ACTIONS(3198), - [anon_sym_switch] = ACTIONS(3198), - [anon_sym_for] = ACTIONS(3198), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3198), - [anon_sym_while] = ACTIONS(3198), - [anon_sym_do] = ACTIONS(3198), - [anon_sym_try] = ACTIONS(3198), - [anon_sym_break] = ACTIONS(3198), - [anon_sym_continue] = ACTIONS(3198), - [anon_sym_debugger] = ACTIONS(3198), - [anon_sym_return] = ACTIONS(3198), - [anon_sym_throw] = ACTIONS(3198), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_yield] = ACTIONS(3198), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LTtemplate_GT] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [anon_sym_class] = ACTIONS(3198), - [anon_sym_async] = ACTIONS(3198), - [anon_sym_function] = ACTIONS(3198), - [anon_sym_new] = ACTIONS(3198), - [anon_sym_using] = ACTIONS(3198), - [anon_sym_PLUS] = ACTIONS(3198), - [anon_sym_DASH] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3198), - [anon_sym_delete] = ACTIONS(3198), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), + [1434] = { + [sym_comment] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(3572), + [sym_identifier] = ACTIONS(3320), + [anon_sym_export] = ACTIONS(3320), + [anon_sym_type] = ACTIONS(3320), + [anon_sym_namespace] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3320), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_typeof] = ACTIONS(3320), + [anon_sym_import] = ACTIONS(3320), + [anon_sym_with] = ACTIONS(3320), + [anon_sym_var] = ACTIONS(3320), + [anon_sym_let] = ACTIONS(3320), + [anon_sym_const] = ACTIONS(3320), + [anon_sym_BANG] = ACTIONS(3320), + [anon_sym_else] = ACTIONS(3320), + [anon_sym_if] = ACTIONS(3320), + [anon_sym_switch] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3320), + [anon_sym_await] = ACTIONS(3320), + [anon_sym_while] = ACTIONS(3320), + [anon_sym_do] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(3320), + [anon_sym_break] = ACTIONS(3320), + [anon_sym_continue] = ACTIONS(3320), + [anon_sym_debugger] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3320), + [anon_sym_throw] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_LTtemplate_GT] = ACTIONS(3320), + [anon_sym_DQUOTE] = ACTIONS(3320), + [anon_sym_SQUOTE] = ACTIONS(3320), + [anon_sym_class] = ACTIONS(3320), + [anon_sym_async] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3320), + [anon_sym_using] = ACTIONS(3320), + [anon_sym_PLUS] = ACTIONS(3320), + [anon_sym_DASH] = ACTIONS(3320), + [anon_sym_SLASH] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_TILDE] = ACTIONS(3320), + [anon_sym_void] = ACTIONS(3320), + [anon_sym_delete] = ACTIONS(3320), + [anon_sym_PLUS_PLUS] = ACTIONS(3320), + [anon_sym_DASH_DASH] = ACTIONS(3320), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_private_property_identifier] = ACTIONS(3198), - [sym_this] = ACTIONS(3198), - [sym_super] = ACTIONS(3198), - [sym_true] = ACTIONS(3198), - [sym_false] = ACTIONS(3198), - [sym_null] = ACTIONS(3198), - [sym_undefined] = ACTIONS(3198), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3198), - [anon_sym_readonly] = ACTIONS(3198), - [anon_sym_get] = ACTIONS(3198), - [anon_sym_set] = ACTIONS(3198), - [anon_sym_declare] = ACTIONS(3198), - [anon_sym_public] = ACTIONS(3198), - [anon_sym_private] = ACTIONS(3198), - [anon_sym_protected] = ACTIONS(3198), - [anon_sym_override] = ACTIONS(3198), - [anon_sym_module] = ACTIONS(3198), - [anon_sym_any] = ACTIONS(3198), - [anon_sym_number] = ACTIONS(3198), - [anon_sym_boolean] = ACTIONS(3198), - [anon_sym_string] = ACTIONS(3198), - [anon_sym_symbol] = ACTIONS(3198), - [anon_sym_object] = ACTIONS(3198), - [anon_sym_abstract] = ACTIONS(3198), - [anon_sym_interface] = ACTIONS(3198), - [anon_sym_enum] = ACTIONS(3198), + [anon_sym_BQUOTE] = ACTIONS(3320), + [sym_number] = ACTIONS(3320), + [sym_private_property_identifier] = ACTIONS(3320), + [sym_this] = ACTIONS(3320), + [sym_super] = ACTIONS(3320), + [sym_true] = ACTIONS(3320), + [sym_false] = ACTIONS(3320), + [sym_null] = ACTIONS(3320), + [sym_undefined] = ACTIONS(3320), + [anon_sym_AT] = ACTIONS(3320), + [anon_sym_static] = ACTIONS(3320), + [anon_sym_readonly] = ACTIONS(3320), + [anon_sym_get] = ACTIONS(3320), + [anon_sym_set] = ACTIONS(3320), + [anon_sym_declare] = ACTIONS(3320), + [anon_sym_public] = ACTIONS(3320), + [anon_sym_private] = ACTIONS(3320), + [anon_sym_protected] = ACTIONS(3320), + [anon_sym_override] = ACTIONS(3320), + [anon_sym_module] = ACTIONS(3320), + [anon_sym_any] = ACTIONS(3320), + [anon_sym_number] = ACTIONS(3320), + [anon_sym_boolean] = ACTIONS(3320), + [anon_sym_string] = ACTIONS(3320), + [anon_sym_symbol] = ACTIONS(3320), + [anon_sym_object] = ACTIONS(3320), + [anon_sym_abstract] = ACTIONS(3320), + [anon_sym_interface] = ACTIONS(3320), + [anon_sym_enum] = ACTIONS(3320), [sym_html_comment] = ACTIONS(5), }, - [1490] = { - [sym_comment] = STATE(1490), - [ts_builtin_sym_end] = ACTIONS(3534), - [sym_identifier] = ACTIONS(3194), - [anon_sym_export] = ACTIONS(3194), - [anon_sym_type] = ACTIONS(3194), - [anon_sym_namespace] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_typeof] = ACTIONS(3194), - [anon_sym_import] = ACTIONS(3194), - [anon_sym_with] = ACTIONS(3194), - [anon_sym_var] = ACTIONS(3194), - [anon_sym_let] = ACTIONS(3194), - [anon_sym_const] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_switch] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_await] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_debugger] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_yield] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_LTtemplate_GT] = ACTIONS(3194), - [anon_sym_DQUOTE] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_async] = ACTIONS(3194), - [anon_sym_function] = ACTIONS(3194), - [anon_sym_new] = ACTIONS(3194), - [anon_sym_using] = ACTIONS(3194), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3194), - [anon_sym_void] = ACTIONS(3194), - [anon_sym_delete] = ACTIONS(3194), - [anon_sym_PLUS_PLUS] = ACTIONS(3194), - [anon_sym_DASH_DASH] = ACTIONS(3194), + [1435] = { + [sym_comment] = STATE(1435), + [ts_builtin_sym_end] = ACTIONS(3574), + [sym_identifier] = ACTIONS(3322), + [anon_sym_export] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_typeof] = ACTIONS(3322), + [anon_sym_import] = ACTIONS(3322), + [anon_sym_with] = ACTIONS(3322), + [anon_sym_var] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_else] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_switch] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_await] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_debugger] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_throw] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3322), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LTtemplate_GT] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3322), + [anon_sym_class] = ACTIONS(3322), + [anon_sym_async] = ACTIONS(3322), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_using] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_void] = ACTIONS(3322), + [anon_sym_delete] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3194), - [sym_number] = ACTIONS(3194), - [sym_private_property_identifier] = ACTIONS(3194), - [sym_this] = ACTIONS(3194), - [sym_super] = ACTIONS(3194), - [sym_true] = ACTIONS(3194), - [sym_false] = ACTIONS(3194), - [sym_null] = ACTIONS(3194), - [sym_undefined] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3194), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_readonly] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_declare] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_module] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3194), - [anon_sym_number] = ACTIONS(3194), - [anon_sym_boolean] = ACTIONS(3194), - [anon_sym_string] = ACTIONS(3194), - [anon_sym_symbol] = ACTIONS(3194), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_interface] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), - [sym_html_comment] = ACTIONS(5), - }, - [1491] = { - [sym_comment] = STATE(1491), - [ts_builtin_sym_end] = ACTIONS(3536), - [sym_identifier] = ACTIONS(3190), - [anon_sym_export] = ACTIONS(3190), - [anon_sym_type] = ACTIONS(3190), - [anon_sym_namespace] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3190), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_typeof] = ACTIONS(3190), - [anon_sym_import] = ACTIONS(3190), - [anon_sym_with] = ACTIONS(3190), - [anon_sym_var] = ACTIONS(3190), - [anon_sym_let] = ACTIONS(3190), - [anon_sym_const] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3190), - [anon_sym_if] = ACTIONS(3190), - [anon_sym_switch] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_await] = ACTIONS(3190), - [anon_sym_while] = ACTIONS(3190), - [anon_sym_do] = ACTIONS(3190), - [anon_sym_try] = ACTIONS(3190), - [anon_sym_break] = ACTIONS(3190), - [anon_sym_continue] = ACTIONS(3190), - [anon_sym_debugger] = ACTIONS(3190), - [anon_sym_return] = ACTIONS(3190), - [anon_sym_throw] = ACTIONS(3190), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_yield] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_LTtemplate_GT] = ACTIONS(3190), - [anon_sym_DQUOTE] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3190), - [anon_sym_class] = ACTIONS(3190), - [anon_sym_async] = ACTIONS(3190), - [anon_sym_function] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_using] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3190), - [anon_sym_SLASH] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_void] = ACTIONS(3190), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3190), - [sym_number] = ACTIONS(3190), - [sym_private_property_identifier] = ACTIONS(3190), - [sym_this] = ACTIONS(3190), - [sym_super] = ACTIONS(3190), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_static] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3190), - [anon_sym_set] = ACTIONS(3190), - [anon_sym_declare] = ACTIONS(3190), - [anon_sym_public] = ACTIONS(3190), - [anon_sym_private] = ACTIONS(3190), - [anon_sym_protected] = ACTIONS(3190), - [anon_sym_override] = ACTIONS(3190), - [anon_sym_module] = ACTIONS(3190), - [anon_sym_any] = ACTIONS(3190), - [anon_sym_number] = ACTIONS(3190), - [anon_sym_boolean] = ACTIONS(3190), - [anon_sym_string] = ACTIONS(3190), - [anon_sym_symbol] = ACTIONS(3190), - [anon_sym_object] = ACTIONS(3190), - [anon_sym_abstract] = ACTIONS(3190), - [anon_sym_interface] = ACTIONS(3190), - [anon_sym_enum] = ACTIONS(3190), - [sym_html_comment] = ACTIONS(5), - }, - [1492] = { - [sym_comment] = STATE(1492), - [ts_builtin_sym_end] = ACTIONS(3538), - [sym_identifier] = ACTIONS(3186), - [anon_sym_export] = ACTIONS(3186), - [anon_sym_type] = ACTIONS(3186), - [anon_sym_namespace] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_typeof] = ACTIONS(3186), - [anon_sym_import] = ACTIONS(3186), - [anon_sym_with] = ACTIONS(3186), - [anon_sym_var] = ACTIONS(3186), - [anon_sym_let] = ACTIONS(3186), - [anon_sym_const] = ACTIONS(3186), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_else] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(3186), - [anon_sym_await] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_try] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [anon_sym_debugger] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_throw] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_yield] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_LTtemplate_GT] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3186), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_async] = ACTIONS(3186), - [anon_sym_function] = ACTIONS(3186), - [anon_sym_new] = ACTIONS(3186), - [anon_sym_using] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_TILDE] = ACTIONS(3186), - [anon_sym_void] = ACTIONS(3186), - [anon_sym_delete] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3186), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3186), - [sym_number] = ACTIONS(3186), - [sym_private_property_identifier] = ACTIONS(3186), - [sym_this] = ACTIONS(3186), - [sym_super] = ACTIONS(3186), - [sym_true] = ACTIONS(3186), - [sym_false] = ACTIONS(3186), - [sym_null] = ACTIONS(3186), - [sym_undefined] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_readonly] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_declare] = ACTIONS(3186), - [anon_sym_public] = ACTIONS(3186), - [anon_sym_private] = ACTIONS(3186), - [anon_sym_protected] = ACTIONS(3186), - [anon_sym_override] = ACTIONS(3186), - [anon_sym_module] = ACTIONS(3186), - [anon_sym_any] = ACTIONS(3186), - [anon_sym_number] = ACTIONS(3186), - [anon_sym_boolean] = ACTIONS(3186), - [anon_sym_string] = ACTIONS(3186), - [anon_sym_symbol] = ACTIONS(3186), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_abstract] = ACTIONS(3186), - [anon_sym_interface] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), + [anon_sym_BQUOTE] = ACTIONS(3322), + [sym_number] = ACTIONS(3322), + [sym_private_property_identifier] = ACTIONS(3322), + [sym_this] = ACTIONS(3322), + [sym_super] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_null] = ACTIONS(3322), + [sym_undefined] = ACTIONS(3322), + [anon_sym_AT] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_readonly] = ACTIONS(3322), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3322), + [anon_sym_declare] = ACTIONS(3322), + [anon_sym_public] = ACTIONS(3322), + [anon_sym_private] = ACTIONS(3322), + [anon_sym_protected] = ACTIONS(3322), + [anon_sym_override] = ACTIONS(3322), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_any] = ACTIONS(3322), + [anon_sym_number] = ACTIONS(3322), + [anon_sym_boolean] = ACTIONS(3322), + [anon_sym_string] = ACTIONS(3322), + [anon_sym_symbol] = ACTIONS(3322), + [anon_sym_object] = ACTIONS(3322), + [anon_sym_abstract] = ACTIONS(3322), + [anon_sym_interface] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), [sym_html_comment] = ACTIONS(5), }, - [1493] = { - [sym_comment] = STATE(1493), - [ts_builtin_sym_end] = ACTIONS(3540), - [sym_identifier] = ACTIONS(3330), - [anon_sym_export] = ACTIONS(3330), - [anon_sym_type] = ACTIONS(3330), - [anon_sym_namespace] = ACTIONS(3330), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_typeof] = ACTIONS(3330), - [anon_sym_import] = ACTIONS(3330), - [anon_sym_with] = ACTIONS(3330), - [anon_sym_var] = ACTIONS(3330), - [anon_sym_let] = ACTIONS(3330), - [anon_sym_const] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3330), - [anon_sym_if] = ACTIONS(3330), - [anon_sym_switch] = ACTIONS(3330), - [anon_sym_for] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_await] = ACTIONS(3330), - [anon_sym_while] = ACTIONS(3330), - [anon_sym_do] = ACTIONS(3330), - [anon_sym_try] = ACTIONS(3330), - [anon_sym_break] = ACTIONS(3330), - [anon_sym_continue] = ACTIONS(3330), - [anon_sym_debugger] = ACTIONS(3330), - [anon_sym_return] = ACTIONS(3330), - [anon_sym_throw] = ACTIONS(3330), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym_yield] = ACTIONS(3330), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_LTtemplate_GT] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_class] = ACTIONS(3330), - [anon_sym_async] = ACTIONS(3330), - [anon_sym_function] = ACTIONS(3330), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_using] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_void] = ACTIONS(3330), - [anon_sym_delete] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), + [1436] = { + [sym_comment] = STATE(1436), + [sym_identifier] = ACTIONS(3234), + [anon_sym_export] = ACTIONS(3234), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_type] = ACTIONS(3234), + [anon_sym_namespace] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3234), + [anon_sym_typeof] = ACTIONS(3234), + [anon_sym_import] = ACTIONS(3234), + [anon_sym_with] = ACTIONS(3234), + [anon_sym_var] = ACTIONS(3234), + [anon_sym_let] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_LPAREN] = ACTIONS(3234), + [anon_sym_await] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_debugger] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3234), + [anon_sym_case] = ACTIONS(3234), + [anon_sym_yield] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3234), + [anon_sym_LTtemplate_GT] = ACTIONS(3234), + [anon_sym_DQUOTE] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3234), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_async] = ACTIONS(3234), + [anon_sym_function] = ACTIONS(3234), + [anon_sym_new] = ACTIONS(3234), + [anon_sym_using] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_LT] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_void] = ACTIONS(3234), + [anon_sym_delete] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3234), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3330), - [sym_number] = ACTIONS(3330), - [sym_private_property_identifier] = ACTIONS(3330), - [sym_this] = ACTIONS(3330), - [sym_super] = ACTIONS(3330), - [sym_true] = ACTIONS(3330), - [sym_false] = ACTIONS(3330), - [sym_null] = ACTIONS(3330), - [sym_undefined] = ACTIONS(3330), - [anon_sym_AT] = ACTIONS(3330), - [anon_sym_static] = ACTIONS(3330), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3330), - [anon_sym_set] = ACTIONS(3330), - [anon_sym_declare] = ACTIONS(3330), - [anon_sym_public] = ACTIONS(3330), - [anon_sym_private] = ACTIONS(3330), - [anon_sym_protected] = ACTIONS(3330), - [anon_sym_override] = ACTIONS(3330), - [anon_sym_module] = ACTIONS(3330), - [anon_sym_any] = ACTIONS(3330), - [anon_sym_number] = ACTIONS(3330), - [anon_sym_boolean] = ACTIONS(3330), - [anon_sym_string] = ACTIONS(3330), - [anon_sym_symbol] = ACTIONS(3330), - [anon_sym_object] = ACTIONS(3330), - [anon_sym_abstract] = ACTIONS(3330), - [anon_sym_interface] = ACTIONS(3330), - [anon_sym_enum] = ACTIONS(3330), + [anon_sym_BQUOTE] = ACTIONS(3234), + [sym_number] = ACTIONS(3234), + [sym_private_property_identifier] = ACTIONS(3234), + [sym_this] = ACTIONS(3234), + [sym_super] = ACTIONS(3234), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_null] = ACTIONS(3234), + [sym_undefined] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3234), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_readonly] = ACTIONS(3234), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_declare] = ACTIONS(3234), + [anon_sym_public] = ACTIONS(3234), + [anon_sym_private] = ACTIONS(3234), + [anon_sym_protected] = ACTIONS(3234), + [anon_sym_override] = ACTIONS(3234), + [anon_sym_module] = ACTIONS(3234), + [anon_sym_any] = ACTIONS(3234), + [anon_sym_number] = ACTIONS(3234), + [anon_sym_boolean] = ACTIONS(3234), + [anon_sym_string] = ACTIONS(3234), + [anon_sym_symbol] = ACTIONS(3234), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_abstract] = ACTIONS(3234), + [anon_sym_interface] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), [sym_html_comment] = ACTIONS(5), }, - [1494] = { - [sym_comment] = STATE(1494), - [ts_builtin_sym_end] = ACTIONS(3540), - [sym_identifier] = ACTIONS(3330), - [anon_sym_export] = ACTIONS(3330), - [anon_sym_type] = ACTIONS(3330), - [anon_sym_namespace] = ACTIONS(3330), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_typeof] = ACTIONS(3330), - [anon_sym_import] = ACTIONS(3330), - [anon_sym_with] = ACTIONS(3330), - [anon_sym_var] = ACTIONS(3330), - [anon_sym_let] = ACTIONS(3330), - [anon_sym_const] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3330), - [anon_sym_if] = ACTIONS(3330), - [anon_sym_switch] = ACTIONS(3330), - [anon_sym_for] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_await] = ACTIONS(3330), - [anon_sym_while] = ACTIONS(3330), - [anon_sym_do] = ACTIONS(3330), - [anon_sym_try] = ACTIONS(3330), - [anon_sym_break] = ACTIONS(3330), - [anon_sym_continue] = ACTIONS(3330), - [anon_sym_debugger] = ACTIONS(3330), - [anon_sym_return] = ACTIONS(3330), - [anon_sym_throw] = ACTIONS(3330), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym_yield] = ACTIONS(3330), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_LTtemplate_GT] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_class] = ACTIONS(3330), - [anon_sym_async] = ACTIONS(3330), - [anon_sym_function] = ACTIONS(3330), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_using] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_void] = ACTIONS(3330), - [anon_sym_delete] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), + [1437] = { + [sym_comment] = STATE(1437), + [ts_builtin_sym_end] = ACTIONS(3576), + [sym_identifier] = ACTIONS(3326), + [anon_sym_export] = ACTIONS(3326), + [anon_sym_type] = ACTIONS(3326), + [anon_sym_namespace] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_RBRACE] = ACTIONS(3326), + [anon_sym_typeof] = ACTIONS(3326), + [anon_sym_import] = ACTIONS(3326), + [anon_sym_with] = ACTIONS(3326), + [anon_sym_var] = ACTIONS(3326), + [anon_sym_let] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_switch] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_await] = ACTIONS(3326), + [anon_sym_while] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_try] = ACTIONS(3326), + [anon_sym_break] = ACTIONS(3326), + [anon_sym_continue] = ACTIONS(3326), + [anon_sym_debugger] = ACTIONS(3326), + [anon_sym_return] = ACTIONS(3326), + [anon_sym_throw] = ACTIONS(3326), + [anon_sym_SEMI] = ACTIONS(3326), + [anon_sym_yield] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_LTtemplate_GT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_class] = ACTIONS(3326), + [anon_sym_async] = ACTIONS(3326), + [anon_sym_function] = ACTIONS(3326), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_using] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_void] = ACTIONS(3326), + [anon_sym_delete] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3330), - [sym_number] = ACTIONS(3330), - [sym_private_property_identifier] = ACTIONS(3330), - [sym_this] = ACTIONS(3330), - [sym_super] = ACTIONS(3330), - [sym_true] = ACTIONS(3330), - [sym_false] = ACTIONS(3330), - [sym_null] = ACTIONS(3330), - [sym_undefined] = ACTIONS(3330), - [anon_sym_AT] = ACTIONS(3330), - [anon_sym_static] = ACTIONS(3330), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3330), - [anon_sym_set] = ACTIONS(3330), - [anon_sym_declare] = ACTIONS(3330), - [anon_sym_public] = ACTIONS(3330), - [anon_sym_private] = ACTIONS(3330), - [anon_sym_protected] = ACTIONS(3330), - [anon_sym_override] = ACTIONS(3330), - [anon_sym_module] = ACTIONS(3330), - [anon_sym_any] = ACTIONS(3330), - [anon_sym_number] = ACTIONS(3330), - [anon_sym_boolean] = ACTIONS(3330), - [anon_sym_string] = ACTIONS(3330), - [anon_sym_symbol] = ACTIONS(3330), - [anon_sym_object] = ACTIONS(3330), - [anon_sym_abstract] = ACTIONS(3330), - [anon_sym_interface] = ACTIONS(3330), - [anon_sym_enum] = ACTIONS(3330), + [anon_sym_BQUOTE] = ACTIONS(3326), + [sym_number] = ACTIONS(3326), + [sym_private_property_identifier] = ACTIONS(3326), + [sym_this] = ACTIONS(3326), + [sym_super] = ACTIONS(3326), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [sym_null] = ACTIONS(3326), + [sym_undefined] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_readonly] = ACTIONS(3326), + [anon_sym_get] = ACTIONS(3326), + [anon_sym_set] = ACTIONS(3326), + [anon_sym_declare] = ACTIONS(3326), + [anon_sym_public] = ACTIONS(3326), + [anon_sym_private] = ACTIONS(3326), + [anon_sym_protected] = ACTIONS(3326), + [anon_sym_override] = ACTIONS(3326), + [anon_sym_module] = ACTIONS(3326), + [anon_sym_any] = ACTIONS(3326), + [anon_sym_number] = ACTIONS(3326), + [anon_sym_boolean] = ACTIONS(3326), + [anon_sym_string] = ACTIONS(3326), + [anon_sym_symbol] = ACTIONS(3326), + [anon_sym_object] = ACTIONS(3326), + [anon_sym_abstract] = ACTIONS(3326), + [anon_sym_interface] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), [sym_html_comment] = ACTIONS(5), }, - [1495] = { - [sym_comment] = STATE(1495), - [ts_builtin_sym_end] = ACTIONS(3542), + [1438] = { + [sym_comment] = STATE(1438), + [ts_builtin_sym_end] = ACTIONS(3578), [sym_identifier] = ACTIONS(3328), [anon_sym_export] = ACTIONS(3328), [anon_sym_type] = ACTIONS(3328), @@ -186231,8250 +181212,1554 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3328), [sym_html_comment] = ACTIONS(5), }, - [1496] = { - [sym_comment] = STATE(1496), - [ts_builtin_sym_end] = ACTIONS(3544), - [sym_identifier] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3184), - [anon_sym_type] = ACTIONS(3184), - [anon_sym_namespace] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_typeof] = ACTIONS(3184), - [anon_sym_import] = ACTIONS(3184), - [anon_sym_with] = ACTIONS(3184), - [anon_sym_var] = ACTIONS(3184), - [anon_sym_let] = ACTIONS(3184), - [anon_sym_const] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_else] = ACTIONS(3184), - [anon_sym_if] = ACTIONS(3184), - [anon_sym_switch] = ACTIONS(3184), - [anon_sym_for] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_await] = ACTIONS(3184), - [anon_sym_while] = ACTIONS(3184), - [anon_sym_do] = ACTIONS(3184), - [anon_sym_try] = ACTIONS(3184), - [anon_sym_break] = ACTIONS(3184), - [anon_sym_continue] = ACTIONS(3184), - [anon_sym_debugger] = ACTIONS(3184), - [anon_sym_return] = ACTIONS(3184), - [anon_sym_throw] = ACTIONS(3184), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym_yield] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3184), - [anon_sym_LTtemplate_GT] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_class] = ACTIONS(3184), - [anon_sym_async] = ACTIONS(3184), - [anon_sym_function] = ACTIONS(3184), - [anon_sym_new] = ACTIONS(3184), - [anon_sym_using] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3184), - [anon_sym_SLASH] = ACTIONS(3184), - [anon_sym_LT] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_void] = ACTIONS(3184), - [anon_sym_delete] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), + [1439] = { + [sym_comment] = STATE(1439), + [ts_builtin_sym_end] = ACTIONS(3580), + [sym_identifier] = ACTIONS(3210), + [anon_sym_export] = ACTIONS(3210), + [anon_sym_type] = ACTIONS(3210), + [anon_sym_namespace] = ACTIONS(3210), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3210), + [anon_sym_typeof] = ACTIONS(3210), + [anon_sym_import] = ACTIONS(3210), + [anon_sym_with] = ACTIONS(3210), + [anon_sym_var] = ACTIONS(3210), + [anon_sym_let] = ACTIONS(3210), + [anon_sym_const] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_else] = ACTIONS(3210), + [anon_sym_if] = ACTIONS(3210), + [anon_sym_switch] = ACTIONS(3210), + [anon_sym_for] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_await] = ACTIONS(3210), + [anon_sym_while] = ACTIONS(3210), + [anon_sym_do] = ACTIONS(3210), + [anon_sym_try] = ACTIONS(3210), + [anon_sym_break] = ACTIONS(3210), + [anon_sym_continue] = ACTIONS(3210), + [anon_sym_debugger] = ACTIONS(3210), + [anon_sym_return] = ACTIONS(3210), + [anon_sym_throw] = ACTIONS(3210), + [anon_sym_SEMI] = ACTIONS(3210), + [anon_sym_yield] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3210), + [anon_sym_LTtemplate_GT] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3210), + [anon_sym_class] = ACTIONS(3210), + [anon_sym_async] = ACTIONS(3210), + [anon_sym_function] = ACTIONS(3210), + [anon_sym_new] = ACTIONS(3210), + [anon_sym_using] = ACTIONS(3210), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3210), + [anon_sym_SLASH] = ACTIONS(3210), + [anon_sym_LT] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3210), + [anon_sym_void] = ACTIONS(3210), + [anon_sym_delete] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3210), + [anon_sym_DASH_DASH] = ACTIONS(3210), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3184), - [sym_private_property_identifier] = ACTIONS(3184), - [sym_this] = ACTIONS(3184), - [sym_super] = ACTIONS(3184), - [sym_true] = ACTIONS(3184), - [sym_false] = ACTIONS(3184), - [sym_null] = ACTIONS(3184), - [sym_undefined] = ACTIONS(3184), - [anon_sym_AT] = ACTIONS(3184), - [anon_sym_static] = ACTIONS(3184), - [anon_sym_readonly] = ACTIONS(3184), - [anon_sym_get] = ACTIONS(3184), - [anon_sym_set] = ACTIONS(3184), - [anon_sym_declare] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_protected] = ACTIONS(3184), - [anon_sym_override] = ACTIONS(3184), - [anon_sym_module] = ACTIONS(3184), - [anon_sym_any] = ACTIONS(3184), - [anon_sym_number] = ACTIONS(3184), - [anon_sym_boolean] = ACTIONS(3184), - [anon_sym_string] = ACTIONS(3184), - [anon_sym_symbol] = ACTIONS(3184), - [anon_sym_object] = ACTIONS(3184), - [anon_sym_abstract] = ACTIONS(3184), - [anon_sym_interface] = ACTIONS(3184), - [anon_sym_enum] = ACTIONS(3184), + [anon_sym_BQUOTE] = ACTIONS(3210), + [sym_number] = ACTIONS(3210), + [sym_private_property_identifier] = ACTIONS(3210), + [sym_this] = ACTIONS(3210), + [sym_super] = ACTIONS(3210), + [sym_true] = ACTIONS(3210), + [sym_false] = ACTIONS(3210), + [sym_null] = ACTIONS(3210), + [sym_undefined] = ACTIONS(3210), + [anon_sym_AT] = ACTIONS(3210), + [anon_sym_static] = ACTIONS(3210), + [anon_sym_readonly] = ACTIONS(3210), + [anon_sym_get] = ACTIONS(3210), + [anon_sym_set] = ACTIONS(3210), + [anon_sym_declare] = ACTIONS(3210), + [anon_sym_public] = ACTIONS(3210), + [anon_sym_private] = ACTIONS(3210), + [anon_sym_protected] = ACTIONS(3210), + [anon_sym_override] = ACTIONS(3210), + [anon_sym_module] = ACTIONS(3210), + [anon_sym_any] = ACTIONS(3210), + [anon_sym_number] = ACTIONS(3210), + [anon_sym_boolean] = ACTIONS(3210), + [anon_sym_string] = ACTIONS(3210), + [anon_sym_symbol] = ACTIONS(3210), + [anon_sym_object] = ACTIONS(3210), + [anon_sym_abstract] = ACTIONS(3210), + [anon_sym_interface] = ACTIONS(3210), + [anon_sym_enum] = ACTIONS(3210), [sym_html_comment] = ACTIONS(5), }, - [1497] = { - [sym_comment] = STATE(1497), - [ts_builtin_sym_end] = ACTIONS(3546), - [sym_identifier] = ACTIONS(3182), - [anon_sym_export] = ACTIONS(3182), - [anon_sym_type] = ACTIONS(3182), - [anon_sym_namespace] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3182), - [anon_sym_typeof] = ACTIONS(3182), - [anon_sym_import] = ACTIONS(3182), - [anon_sym_with] = ACTIONS(3182), - [anon_sym_var] = ACTIONS(3182), - [anon_sym_let] = ACTIONS(3182), - [anon_sym_const] = ACTIONS(3182), - [anon_sym_BANG] = ACTIONS(3182), - [anon_sym_else] = ACTIONS(3182), - [anon_sym_if] = ACTIONS(3182), - [anon_sym_switch] = ACTIONS(3182), - [anon_sym_for] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3182), - [anon_sym_await] = ACTIONS(3182), - [anon_sym_while] = ACTIONS(3182), - [anon_sym_do] = ACTIONS(3182), - [anon_sym_try] = ACTIONS(3182), - [anon_sym_break] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(3182), - [anon_sym_debugger] = ACTIONS(3182), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_throw] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3182), - [anon_sym_yield] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_LTtemplate_GT] = ACTIONS(3182), - [anon_sym_DQUOTE] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3182), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_async] = ACTIONS(3182), - [anon_sym_function] = ACTIONS(3182), - [anon_sym_new] = ACTIONS(3182), - [anon_sym_using] = ACTIONS(3182), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_SLASH] = ACTIONS(3182), - [anon_sym_LT] = ACTIONS(3182), - [anon_sym_TILDE] = ACTIONS(3182), - [anon_sym_void] = ACTIONS(3182), - [anon_sym_delete] = ACTIONS(3182), - [anon_sym_PLUS_PLUS] = ACTIONS(3182), - [anon_sym_DASH_DASH] = ACTIONS(3182), + [1440] = { + [sym_comment] = STATE(1440), + [ts_builtin_sym_end] = ACTIONS(3582), + [sym_identifier] = ACTIONS(3212), + [anon_sym_export] = ACTIONS(3212), + [anon_sym_type] = ACTIONS(3212), + [anon_sym_namespace] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_RBRACE] = ACTIONS(3212), + [anon_sym_typeof] = ACTIONS(3212), + [anon_sym_import] = ACTIONS(3212), + [anon_sym_with] = ACTIONS(3212), + [anon_sym_var] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_const] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3212), + [anon_sym_else] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_switch] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_await] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_break] = ACTIONS(3212), + [anon_sym_continue] = ACTIONS(3212), + [anon_sym_debugger] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_throw] = ACTIONS(3212), + [anon_sym_SEMI] = ACTIONS(3212), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LTtemplate_GT] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_SQUOTE] = ACTIONS(3212), + [anon_sym_class] = ACTIONS(3212), + [anon_sym_async] = ACTIONS(3212), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_using] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_SLASH] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3212), + [anon_sym_TILDE] = ACTIONS(3212), + [anon_sym_void] = ACTIONS(3212), + [anon_sym_delete] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_DASH_DASH] = ACTIONS(3212), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3182), - [sym_number] = ACTIONS(3182), - [sym_private_property_identifier] = ACTIONS(3182), - [sym_this] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_true] = ACTIONS(3182), - [sym_false] = ACTIONS(3182), - [sym_null] = ACTIONS(3182), - [sym_undefined] = ACTIONS(3182), - [anon_sym_AT] = ACTIONS(3182), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_readonly] = ACTIONS(3182), - [anon_sym_get] = ACTIONS(3182), - [anon_sym_set] = ACTIONS(3182), - [anon_sym_declare] = ACTIONS(3182), - [anon_sym_public] = ACTIONS(3182), - [anon_sym_private] = ACTIONS(3182), - [anon_sym_protected] = ACTIONS(3182), - [anon_sym_override] = ACTIONS(3182), - [anon_sym_module] = ACTIONS(3182), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_interface] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), + [anon_sym_BQUOTE] = ACTIONS(3212), + [sym_number] = ACTIONS(3212), + [sym_private_property_identifier] = ACTIONS(3212), + [sym_this] = ACTIONS(3212), + [sym_super] = ACTIONS(3212), + [sym_true] = ACTIONS(3212), + [sym_false] = ACTIONS(3212), + [sym_null] = ACTIONS(3212), + [sym_undefined] = ACTIONS(3212), + [anon_sym_AT] = ACTIONS(3212), + [anon_sym_static] = ACTIONS(3212), + [anon_sym_readonly] = ACTIONS(3212), + [anon_sym_get] = ACTIONS(3212), + [anon_sym_set] = ACTIONS(3212), + [anon_sym_declare] = ACTIONS(3212), + [anon_sym_public] = ACTIONS(3212), + [anon_sym_private] = ACTIONS(3212), + [anon_sym_protected] = ACTIONS(3212), + [anon_sym_override] = ACTIONS(3212), + [anon_sym_module] = ACTIONS(3212), + [anon_sym_any] = ACTIONS(3212), + [anon_sym_number] = ACTIONS(3212), + [anon_sym_boolean] = ACTIONS(3212), + [anon_sym_string] = ACTIONS(3212), + [anon_sym_symbol] = ACTIONS(3212), + [anon_sym_object] = ACTIONS(3212), + [anon_sym_abstract] = ACTIONS(3212), + [anon_sym_interface] = ACTIONS(3212), + [anon_sym_enum] = ACTIONS(3212), [sym_html_comment] = ACTIONS(5), }, - [1498] = { - [sym_comment] = STATE(1498), - [ts_builtin_sym_end] = ACTIONS(2253), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_namespace] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_typeof] = ACTIONS(2251), - [anon_sym_import] = ACTIONS(2251), - [anon_sym_with] = ACTIONS(2251), - [anon_sym_var] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_debugger] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_throw] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_LTtemplate_GT] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_using] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_void] = ACTIONS(2251), - [anon_sym_delete] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), + [1441] = { + [sym_comment] = STATE(1441), + [sym_identifier] = ACTIONS(3226), + [anon_sym_export] = ACTIONS(3226), + [anon_sym_default] = ACTIONS(3226), + [anon_sym_type] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3226), + [anon_sym_RBRACE] = ACTIONS(3226), + [anon_sym_typeof] = ACTIONS(3226), + [anon_sym_import] = ACTIONS(3226), + [anon_sym_with] = ACTIONS(3226), + [anon_sym_var] = ACTIONS(3226), + [anon_sym_let] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_switch] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_await] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_debugger] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3226), + [anon_sym_case] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3226), + [anon_sym_LTtemplate_GT] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3226), + [anon_sym_class] = ACTIONS(3226), + [anon_sym_async] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3226), + [anon_sym_using] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3226), + [anon_sym_void] = ACTIONS(3226), + [anon_sym_delete] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3226), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2251), - [sym_number] = ACTIONS(2251), - [sym_private_property_identifier] = ACTIONS(2251), - [sym_this] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_undefined] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_readonly] = ACTIONS(2251), - [anon_sym_get] = ACTIONS(2251), - [anon_sym_set] = ACTIONS(2251), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_public] = ACTIONS(2251), - [anon_sym_private] = ACTIONS(2251), - [anon_sym_protected] = ACTIONS(2251), - [anon_sym_override] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_any] = ACTIONS(2251), - [anon_sym_number] = ACTIONS(2251), - [anon_sym_boolean] = ACTIONS(2251), - [anon_sym_string] = ACTIONS(2251), - [anon_sym_symbol] = ACTIONS(2251), - [anon_sym_object] = ACTIONS(2251), - [anon_sym_abstract] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [sym__automatic_semicolon] = ACTIONS(2253), + [anon_sym_BQUOTE] = ACTIONS(3226), + [sym_number] = ACTIONS(3226), + [sym_private_property_identifier] = ACTIONS(3226), + [sym_this] = ACTIONS(3226), + [sym_super] = ACTIONS(3226), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [sym_null] = ACTIONS(3226), + [sym_undefined] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3226), + [anon_sym_static] = ACTIONS(3226), + [anon_sym_readonly] = ACTIONS(3226), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_declare] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_module] = ACTIONS(3226), + [anon_sym_any] = ACTIONS(3226), + [anon_sym_number] = ACTIONS(3226), + [anon_sym_boolean] = ACTIONS(3226), + [anon_sym_string] = ACTIONS(3226), + [anon_sym_symbol] = ACTIONS(3226), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_interface] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), [sym_html_comment] = ACTIONS(5), }, - [1499] = { - [sym_comment] = STATE(1499), - [ts_builtin_sym_end] = ACTIONS(3548), - [sym_identifier] = ACTIONS(3180), - [anon_sym_export] = ACTIONS(3180), - [anon_sym_type] = ACTIONS(3180), - [anon_sym_namespace] = ACTIONS(3180), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3180), - [anon_sym_typeof] = ACTIONS(3180), - [anon_sym_import] = ACTIONS(3180), - [anon_sym_with] = ACTIONS(3180), - [anon_sym_var] = ACTIONS(3180), - [anon_sym_let] = ACTIONS(3180), - [anon_sym_const] = ACTIONS(3180), - [anon_sym_BANG] = ACTIONS(3180), - [anon_sym_else] = ACTIONS(3180), - [anon_sym_if] = ACTIONS(3180), - [anon_sym_switch] = ACTIONS(3180), - [anon_sym_for] = ACTIONS(3180), - [anon_sym_LPAREN] = ACTIONS(3180), - [anon_sym_await] = ACTIONS(3180), - [anon_sym_while] = ACTIONS(3180), - [anon_sym_do] = ACTIONS(3180), - [anon_sym_try] = ACTIONS(3180), - [anon_sym_break] = ACTIONS(3180), - [anon_sym_continue] = ACTIONS(3180), - [anon_sym_debugger] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3180), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym_yield] = ACTIONS(3180), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_LTtemplate_GT] = ACTIONS(3180), - [anon_sym_DQUOTE] = ACTIONS(3180), - [anon_sym_SQUOTE] = ACTIONS(3180), - [anon_sym_class] = ACTIONS(3180), - [anon_sym_async] = ACTIONS(3180), - [anon_sym_function] = ACTIONS(3180), - [anon_sym_new] = ACTIONS(3180), - [anon_sym_using] = ACTIONS(3180), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_SLASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(3180), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_void] = ACTIONS(3180), - [anon_sym_delete] = ACTIONS(3180), - [anon_sym_PLUS_PLUS] = ACTIONS(3180), - [anon_sym_DASH_DASH] = ACTIONS(3180), + [1442] = { + [sym_comment] = STATE(1442), + [ts_builtin_sym_end] = ACTIONS(3584), + [sym_identifier] = ACTIONS(3216), + [anon_sym_export] = ACTIONS(3216), + [anon_sym_type] = ACTIONS(3216), + [anon_sym_namespace] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3216), + [anon_sym_RBRACE] = ACTIONS(3216), + [anon_sym_typeof] = ACTIONS(3216), + [anon_sym_import] = ACTIONS(3216), + [anon_sym_with] = ACTIONS(3216), + [anon_sym_var] = ACTIONS(3216), + [anon_sym_let] = ACTIONS(3216), + [anon_sym_const] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3216), + [anon_sym_else] = ACTIONS(3216), + [anon_sym_if] = ACTIONS(3216), + [anon_sym_switch] = ACTIONS(3216), + [anon_sym_for] = ACTIONS(3216), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_await] = ACTIONS(3216), + [anon_sym_while] = ACTIONS(3216), + [anon_sym_do] = ACTIONS(3216), + [anon_sym_try] = ACTIONS(3216), + [anon_sym_break] = ACTIONS(3216), + [anon_sym_continue] = ACTIONS(3216), + [anon_sym_debugger] = ACTIONS(3216), + [anon_sym_return] = ACTIONS(3216), + [anon_sym_throw] = ACTIONS(3216), + [anon_sym_SEMI] = ACTIONS(3216), + [anon_sym_yield] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_LTtemplate_GT] = ACTIONS(3216), + [anon_sym_DQUOTE] = ACTIONS(3216), + [anon_sym_SQUOTE] = ACTIONS(3216), + [anon_sym_class] = ACTIONS(3216), + [anon_sym_async] = ACTIONS(3216), + [anon_sym_function] = ACTIONS(3216), + [anon_sym_new] = ACTIONS(3216), + [anon_sym_using] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3216), + [anon_sym_DASH] = ACTIONS(3216), + [anon_sym_SLASH] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3216), + [anon_sym_void] = ACTIONS(3216), + [anon_sym_delete] = ACTIONS(3216), + [anon_sym_PLUS_PLUS] = ACTIONS(3216), + [anon_sym_DASH_DASH] = ACTIONS(3216), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3180), - [sym_number] = ACTIONS(3180), - [sym_private_property_identifier] = ACTIONS(3180), - [sym_this] = ACTIONS(3180), - [sym_super] = ACTIONS(3180), - [sym_true] = ACTIONS(3180), - [sym_false] = ACTIONS(3180), - [sym_null] = ACTIONS(3180), - [sym_undefined] = ACTIONS(3180), - [anon_sym_AT] = ACTIONS(3180), - [anon_sym_static] = ACTIONS(3180), - [anon_sym_readonly] = ACTIONS(3180), - [anon_sym_get] = ACTIONS(3180), - [anon_sym_set] = ACTIONS(3180), - [anon_sym_declare] = ACTIONS(3180), - [anon_sym_public] = ACTIONS(3180), - [anon_sym_private] = ACTIONS(3180), - [anon_sym_protected] = ACTIONS(3180), - [anon_sym_override] = ACTIONS(3180), - [anon_sym_module] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3180), - [anon_sym_number] = ACTIONS(3180), - [anon_sym_boolean] = ACTIONS(3180), - [anon_sym_string] = ACTIONS(3180), - [anon_sym_symbol] = ACTIONS(3180), - [anon_sym_object] = ACTIONS(3180), - [anon_sym_abstract] = ACTIONS(3180), - [anon_sym_interface] = ACTIONS(3180), - [anon_sym_enum] = ACTIONS(3180), + [anon_sym_BQUOTE] = ACTIONS(3216), + [sym_number] = ACTIONS(3216), + [sym_private_property_identifier] = ACTIONS(3216), + [sym_this] = ACTIONS(3216), + [sym_super] = ACTIONS(3216), + [sym_true] = ACTIONS(3216), + [sym_false] = ACTIONS(3216), + [sym_null] = ACTIONS(3216), + [sym_undefined] = ACTIONS(3216), + [anon_sym_AT] = ACTIONS(3216), + [anon_sym_static] = ACTIONS(3216), + [anon_sym_readonly] = ACTIONS(3216), + [anon_sym_get] = ACTIONS(3216), + [anon_sym_set] = ACTIONS(3216), + [anon_sym_declare] = ACTIONS(3216), + [anon_sym_public] = ACTIONS(3216), + [anon_sym_private] = ACTIONS(3216), + [anon_sym_protected] = ACTIONS(3216), + [anon_sym_override] = ACTIONS(3216), + [anon_sym_module] = ACTIONS(3216), + [anon_sym_any] = ACTIONS(3216), + [anon_sym_number] = ACTIONS(3216), + [anon_sym_boolean] = ACTIONS(3216), + [anon_sym_string] = ACTIONS(3216), + [anon_sym_symbol] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3216), + [anon_sym_abstract] = ACTIONS(3216), + [anon_sym_interface] = ACTIONS(3216), + [anon_sym_enum] = ACTIONS(3216), [sym_html_comment] = ACTIONS(5), }, - [1500] = { - [sym_comment] = STATE(1500), - [ts_builtin_sym_end] = ACTIONS(3550), - [sym_identifier] = ACTIONS(3178), - [anon_sym_export] = ACTIONS(3178), - [anon_sym_type] = ACTIONS(3178), - [anon_sym_namespace] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3178), - [anon_sym_typeof] = ACTIONS(3178), - [anon_sym_import] = ACTIONS(3178), - [anon_sym_with] = ACTIONS(3178), - [anon_sym_var] = ACTIONS(3178), - [anon_sym_let] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_else] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3178), - [anon_sym_await] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_try] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_debugger] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_throw] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3178), - [anon_sym_yield] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_LTtemplate_GT] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [anon_sym_SQUOTE] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_async] = ACTIONS(3178), - [anon_sym_function] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_SLASH] = ACTIONS(3178), - [anon_sym_LT] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_void] = ACTIONS(3178), - [anon_sym_delete] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3178), + [1443] = { + [sym_comment] = STATE(1443), + [ts_builtin_sym_end] = ACTIONS(3586), + [sym_identifier] = ACTIONS(3132), + [anon_sym_export] = ACTIONS(3132), + [anon_sym_type] = ACTIONS(3132), + [anon_sym_namespace] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_typeof] = ACTIONS(3132), + [anon_sym_import] = ACTIONS(3132), + [anon_sym_with] = ACTIONS(3132), + [anon_sym_var] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_switch] = ACTIONS(3132), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_await] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_debugger] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LTtemplate_GT] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3132), + [anon_sym_class] = ACTIONS(3132), + [anon_sym_async] = ACTIONS(3132), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_using] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_SLASH] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_void] = ACTIONS(3132), + [anon_sym_delete] = ACTIONS(3132), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3132), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3178), - [sym_number] = ACTIONS(3178), - [sym_private_property_identifier] = ACTIONS(3178), - [sym_this] = ACTIONS(3178), - [sym_super] = ACTIONS(3178), - [sym_true] = ACTIONS(3178), - [sym_false] = ACTIONS(3178), - [sym_null] = ACTIONS(3178), - [sym_undefined] = ACTIONS(3178), - [anon_sym_AT] = ACTIONS(3178), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_get] = ACTIONS(3178), - [anon_sym_set] = ACTIONS(3178), - [anon_sym_declare] = ACTIONS(3178), - [anon_sym_public] = ACTIONS(3178), - [anon_sym_private] = ACTIONS(3178), - [anon_sym_protected] = ACTIONS(3178), - [anon_sym_override] = ACTIONS(3178), - [anon_sym_module] = ACTIONS(3178), - [anon_sym_any] = ACTIONS(3178), - [anon_sym_number] = ACTIONS(3178), - [anon_sym_boolean] = ACTIONS(3178), - [anon_sym_string] = ACTIONS(3178), - [anon_sym_symbol] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3178), - [anon_sym_abstract] = ACTIONS(3178), - [anon_sym_interface] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3132), + [sym_private_property_identifier] = ACTIONS(3132), + [sym_this] = ACTIONS(3132), + [sym_super] = ACTIONS(3132), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_AT] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3132), + [anon_sym_set] = ACTIONS(3132), + [anon_sym_declare] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_module] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_interface] = ACTIONS(3132), + [anon_sym_enum] = ACTIONS(3132), [sym_html_comment] = ACTIONS(5), }, - [1501] = { - [sym_comment] = STATE(1501), - [ts_builtin_sym_end] = ACTIONS(3552), - [sym_identifier] = ACTIONS(3176), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_type] = ACTIONS(3176), - [anon_sym_namespace] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(3176), - [anon_sym_RBRACE] = ACTIONS(3176), - [anon_sym_typeof] = ACTIONS(3176), - [anon_sym_import] = ACTIONS(3176), - [anon_sym_with] = ACTIONS(3176), - [anon_sym_var] = ACTIONS(3176), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_const] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3176), - [anon_sym_else] = ACTIONS(3176), - [anon_sym_if] = ACTIONS(3176), - [anon_sym_switch] = ACTIONS(3176), - [anon_sym_for] = ACTIONS(3176), - [anon_sym_LPAREN] = ACTIONS(3176), - [anon_sym_await] = ACTIONS(3176), - [anon_sym_while] = ACTIONS(3176), - [anon_sym_do] = ACTIONS(3176), - [anon_sym_try] = ACTIONS(3176), - [anon_sym_break] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_throw] = ACTIONS(3176), - [anon_sym_SEMI] = ACTIONS(3176), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3176), - [anon_sym_LTtemplate_GT] = ACTIONS(3176), - [anon_sym_DQUOTE] = ACTIONS(3176), - [anon_sym_SQUOTE] = ACTIONS(3176), - [anon_sym_class] = ACTIONS(3176), - [anon_sym_async] = ACTIONS(3176), - [anon_sym_function] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3176), - [anon_sym_using] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3176), - [anon_sym_DASH] = ACTIONS(3176), - [anon_sym_SLASH] = ACTIONS(3176), - [anon_sym_LT] = ACTIONS(3176), - [anon_sym_TILDE] = ACTIONS(3176), - [anon_sym_void] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3176), - [anon_sym_DASH_DASH] = ACTIONS(3176), + [1444] = { + [sym_comment] = STATE(1444), + [ts_builtin_sym_end] = ACTIONS(2351), + [sym_identifier] = ACTIONS(2149), + [anon_sym_export] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2149), + [anon_sym_typeof] = ACTIONS(2149), + [anon_sym_import] = ACTIONS(2149), + [anon_sym_with] = ACTIONS(2149), + [anon_sym_var] = ACTIONS(2149), + [anon_sym_let] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_else] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_switch] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [anon_sym_do] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_debugger] = ACTIONS(2149), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_throw] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_LTtemplate_GT] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(2149), + [anon_sym_class] = ACTIONS(2149), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_function] = ACTIONS(2149), + [anon_sym_new] = ACTIONS(2149), + [anon_sym_using] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_SLASH] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_TILDE] = ACTIONS(2149), + [anon_sym_void] = ACTIONS(2149), + [anon_sym_delete] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2149), + [anon_sym_DASH_DASH] = ACTIONS(2149), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3176), - [sym_number] = ACTIONS(3176), - [sym_private_property_identifier] = ACTIONS(3176), - [sym_this] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_AT] = ACTIONS(3176), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3176), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), - [anon_sym_declare] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_protected] = ACTIONS(3176), - [anon_sym_override] = ACTIONS(3176), - [anon_sym_module] = ACTIONS(3176), - [anon_sym_any] = ACTIONS(3176), - [anon_sym_number] = ACTIONS(3176), - [anon_sym_boolean] = ACTIONS(3176), - [anon_sym_string] = ACTIONS(3176), - [anon_sym_symbol] = ACTIONS(3176), - [anon_sym_object] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_interface] = ACTIONS(3176), - [anon_sym_enum] = ACTIONS(3176), + [anon_sym_BQUOTE] = ACTIONS(2149), + [sym_number] = ACTIONS(2149), + [sym_private_property_identifier] = ACTIONS(2149), + [sym_this] = ACTIONS(2149), + [sym_super] = ACTIONS(2149), + [sym_true] = ACTIONS(2149), + [sym_false] = ACTIONS(2149), + [sym_null] = ACTIONS(2149), + [sym_undefined] = ACTIONS(2149), + [anon_sym_AT] = ACTIONS(2149), + [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_abstract] = ACTIONS(2149), + [anon_sym_interface] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), [sym_html_comment] = ACTIONS(5), }, - [1502] = { - [sym_comment] = STATE(1502), - [sym_identifier] = ACTIONS(3294), - [anon_sym_export] = ACTIONS(3294), - [anon_sym_default] = ACTIONS(3294), - [anon_sym_type] = ACTIONS(3294), - [anon_sym_namespace] = ACTIONS(3294), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_RBRACE] = ACTIONS(3294), - [anon_sym_typeof] = ACTIONS(3294), - [anon_sym_import] = ACTIONS(3294), - [anon_sym_with] = ACTIONS(3294), - [anon_sym_var] = ACTIONS(3294), - [anon_sym_let] = ACTIONS(3294), - [anon_sym_const] = ACTIONS(3294), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_if] = ACTIONS(3294), - [anon_sym_switch] = ACTIONS(3294), - [anon_sym_for] = ACTIONS(3294), - [anon_sym_LPAREN] = ACTIONS(3294), - [anon_sym_await] = ACTIONS(3294), - [anon_sym_while] = ACTIONS(3294), - [anon_sym_do] = ACTIONS(3294), - [anon_sym_try] = ACTIONS(3294), - [anon_sym_break] = ACTIONS(3294), - [anon_sym_continue] = ACTIONS(3294), - [anon_sym_debugger] = ACTIONS(3294), - [anon_sym_return] = ACTIONS(3294), - [anon_sym_throw] = ACTIONS(3294), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3294), - [anon_sym_yield] = ACTIONS(3294), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_LTtemplate_GT] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [anon_sym_class] = ACTIONS(3294), - [anon_sym_async] = ACTIONS(3294), - [anon_sym_function] = ACTIONS(3294), - [anon_sym_new] = ACTIONS(3294), - [anon_sym_using] = ACTIONS(3294), - [anon_sym_PLUS] = ACTIONS(3294), - [anon_sym_DASH] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3294), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_void] = ACTIONS(3294), - [anon_sym_delete] = ACTIONS(3294), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3294), - [sym_number] = ACTIONS(3294), - [sym_private_property_identifier] = ACTIONS(3294), - [sym_this] = ACTIONS(3294), - [sym_super] = ACTIONS(3294), - [sym_true] = ACTIONS(3294), - [sym_false] = ACTIONS(3294), - [sym_null] = ACTIONS(3294), - [sym_undefined] = ACTIONS(3294), - [anon_sym_AT] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3294), - [anon_sym_readonly] = ACTIONS(3294), - [anon_sym_get] = ACTIONS(3294), - [anon_sym_set] = ACTIONS(3294), - [anon_sym_declare] = ACTIONS(3294), - [anon_sym_public] = ACTIONS(3294), - [anon_sym_private] = ACTIONS(3294), - [anon_sym_protected] = ACTIONS(3294), - [anon_sym_override] = ACTIONS(3294), - [anon_sym_module] = ACTIONS(3294), - [anon_sym_any] = ACTIONS(3294), - [anon_sym_number] = ACTIONS(3294), - [anon_sym_boolean] = ACTIONS(3294), - [anon_sym_string] = ACTIONS(3294), - [anon_sym_symbol] = ACTIONS(3294), - [anon_sym_object] = ACTIONS(3294), - [anon_sym_abstract] = ACTIONS(3294), - [anon_sym_interface] = ACTIONS(3294), - [anon_sym_enum] = ACTIONS(3294), + [1445] = { + [sym_comment] = STATE(1445), + [ts_builtin_sym_end] = ACTIONS(3510), + [sym_identifier] = ACTIONS(3268), + [anon_sym_export] = ACTIONS(3268), + [anon_sym_type] = ACTIONS(3268), + [anon_sym_namespace] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3268), + [anon_sym_import] = ACTIONS(3268), + [anon_sym_with] = ACTIONS(3268), + [anon_sym_var] = ACTIONS(3268), + [anon_sym_let] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_switch] = ACTIONS(3268), + [anon_sym_for] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_do] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_debugger] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_yield] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LTtemplate_GT] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_class] = ACTIONS(3268), + [anon_sym_async] = ACTIONS(3268), + [anon_sym_function] = ACTIONS(3268), + [anon_sym_new] = ACTIONS(3268), + [anon_sym_using] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_private_property_identifier] = ACTIONS(3268), + [sym_this] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_true] = ACTIONS(3268), + [sym_false] = ACTIONS(3268), + [sym_null] = ACTIONS(3268), + [sym_undefined] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_readonly] = ACTIONS(3268), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_declare] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_module] = ACTIONS(3268), + [anon_sym_any] = ACTIONS(3268), + [anon_sym_number] = ACTIONS(3268), + [anon_sym_boolean] = ACTIONS(3268), + [anon_sym_string] = ACTIONS(3268), + [anon_sym_symbol] = ACTIONS(3268), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_interface] = ACTIONS(3268), + [anon_sym_enum] = ACTIONS(3268), [sym_html_comment] = ACTIONS(5), }, - [1503] = { - [sym_comment] = STATE(1503), - [sym_identifier] = ACTIONS(3292), - [anon_sym_export] = ACTIONS(3292), - [anon_sym_default] = ACTIONS(3292), - [anon_sym_type] = ACTIONS(3292), - [anon_sym_namespace] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3292), - [anon_sym_RBRACE] = ACTIONS(3292), - [anon_sym_typeof] = ACTIONS(3292), - [anon_sym_import] = ACTIONS(3292), - [anon_sym_with] = ACTIONS(3292), - [anon_sym_var] = ACTIONS(3292), - [anon_sym_let] = ACTIONS(3292), - [anon_sym_const] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_switch] = ACTIONS(3292), - [anon_sym_for] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3292), - [anon_sym_await] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_do] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_debugger] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3292), - [anon_sym_case] = ACTIONS(3292), - [anon_sym_yield] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3292), - [anon_sym_LTtemplate_GT] = ACTIONS(3292), - [anon_sym_DQUOTE] = ACTIONS(3292), - [anon_sym_SQUOTE] = ACTIONS(3292), - [anon_sym_class] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3292), - [anon_sym_function] = ACTIONS(3292), - [anon_sym_new] = ACTIONS(3292), - [anon_sym_using] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_void] = ACTIONS(3292), - [anon_sym_delete] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), + [1446] = { + [sym_comment] = STATE(1446), + [ts_builtin_sym_end] = ACTIONS(3416), + [sym_identifier] = ACTIONS(3146), + [anon_sym_export] = ACTIONS(3146), + [anon_sym_type] = ACTIONS(3146), + [anon_sym_namespace] = ACTIONS(3146), + [anon_sym_LBRACE] = ACTIONS(3146), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(3146), + [anon_sym_with] = ACTIONS(3146), + [anon_sym_var] = ACTIONS(3146), + [anon_sym_let] = ACTIONS(3146), + [anon_sym_const] = ACTIONS(3146), + [anon_sym_BANG] = ACTIONS(3146), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_switch] = ACTIONS(3146), + [anon_sym_for] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_await] = ACTIONS(3146), + [anon_sym_while] = ACTIONS(3146), + [anon_sym_do] = ACTIONS(3146), + [anon_sym_try] = ACTIONS(3146), + [anon_sym_break] = ACTIONS(3146), + [anon_sym_continue] = ACTIONS(3146), + [anon_sym_debugger] = ACTIONS(3146), + [anon_sym_return] = ACTIONS(3146), + [anon_sym_throw] = ACTIONS(3146), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_yield] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3146), + [anon_sym_LTtemplate_GT] = ACTIONS(3146), + [anon_sym_DQUOTE] = ACTIONS(3146), + [anon_sym_SQUOTE] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(3146), + [anon_sym_function] = ACTIONS(3146), + [anon_sym_new] = ACTIONS(3146), + [anon_sym_using] = ACTIONS(3146), + [anon_sym_PLUS] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3146), + [anon_sym_SLASH] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(3146), + [anon_sym_TILDE] = ACTIONS(3146), + [anon_sym_void] = ACTIONS(3146), + [anon_sym_delete] = ACTIONS(3146), + [anon_sym_PLUS_PLUS] = ACTIONS(3146), + [anon_sym_DASH_DASH] = ACTIONS(3146), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3292), - [sym_number] = ACTIONS(3292), - [sym_private_property_identifier] = ACTIONS(3292), - [sym_this] = ACTIONS(3292), - [sym_super] = ACTIONS(3292), - [sym_true] = ACTIONS(3292), - [sym_false] = ACTIONS(3292), - [sym_null] = ACTIONS(3292), - [sym_undefined] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_readonly] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_declare] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_module] = ACTIONS(3292), - [anon_sym_any] = ACTIONS(3292), - [anon_sym_number] = ACTIONS(3292), - [anon_sym_boolean] = ACTIONS(3292), - [anon_sym_string] = ACTIONS(3292), - [anon_sym_symbol] = ACTIONS(3292), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_interface] = ACTIONS(3292), - [anon_sym_enum] = ACTIONS(3292), + [anon_sym_BQUOTE] = ACTIONS(3146), + [sym_number] = ACTIONS(3146), + [sym_private_property_identifier] = ACTIONS(3146), + [sym_this] = ACTIONS(3146), + [sym_super] = ACTIONS(3146), + [sym_true] = ACTIONS(3146), + [sym_false] = ACTIONS(3146), + [sym_null] = ACTIONS(3146), + [sym_undefined] = ACTIONS(3146), + [anon_sym_AT] = ACTIONS(3146), + [anon_sym_static] = ACTIONS(3146), + [anon_sym_readonly] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3146), + [anon_sym_set] = ACTIONS(3146), + [anon_sym_declare] = ACTIONS(3146), + [anon_sym_public] = ACTIONS(3146), + [anon_sym_private] = ACTIONS(3146), + [anon_sym_protected] = ACTIONS(3146), + [anon_sym_override] = ACTIONS(3146), + [anon_sym_module] = ACTIONS(3146), + [anon_sym_any] = ACTIONS(3146), + [anon_sym_number] = ACTIONS(3146), + [anon_sym_boolean] = ACTIONS(3146), + [anon_sym_string] = ACTIONS(3146), + [anon_sym_symbol] = ACTIONS(3146), + [anon_sym_object] = ACTIONS(3146), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_interface] = ACTIONS(3146), + [anon_sym_enum] = ACTIONS(3146), [sym_html_comment] = ACTIONS(5), }, - [1504] = { - [sym_comment] = STATE(1504), - [sym_identifier] = ACTIONS(3290), - [anon_sym_export] = ACTIONS(3290), - [anon_sym_default] = ACTIONS(3290), - [anon_sym_type] = ACTIONS(3290), - [anon_sym_namespace] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_RBRACE] = ACTIONS(3290), - [anon_sym_typeof] = ACTIONS(3290), - [anon_sym_import] = ACTIONS(3290), - [anon_sym_with] = ACTIONS(3290), - [anon_sym_var] = ACTIONS(3290), - [anon_sym_let] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_BANG] = ACTIONS(3290), - [anon_sym_if] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3290), - [anon_sym_await] = ACTIONS(3290), - [anon_sym_while] = ACTIONS(3290), - [anon_sym_do] = ACTIONS(3290), - [anon_sym_try] = ACTIONS(3290), - [anon_sym_break] = ACTIONS(3290), - [anon_sym_continue] = ACTIONS(3290), - [anon_sym_debugger] = ACTIONS(3290), - [anon_sym_return] = ACTIONS(3290), - [anon_sym_throw] = ACTIONS(3290), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_case] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_LTtemplate_GT] = ACTIONS(3290), - [anon_sym_DQUOTE] = ACTIONS(3290), - [anon_sym_SQUOTE] = ACTIONS(3290), - [anon_sym_class] = ACTIONS(3290), - [anon_sym_async] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3290), - [anon_sym_using] = ACTIONS(3290), - [anon_sym_PLUS] = ACTIONS(3290), - [anon_sym_DASH] = ACTIONS(3290), - [anon_sym_SLASH] = ACTIONS(3290), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_TILDE] = ACTIONS(3290), - [anon_sym_void] = ACTIONS(3290), - [anon_sym_delete] = ACTIONS(3290), - [anon_sym_PLUS_PLUS] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3290), + [1447] = { + [sym_comment] = STATE(1447), + [ts_builtin_sym_end] = ACTIONS(3482), + [sym_identifier] = ACTIONS(3262), + [anon_sym_export] = ACTIONS(3262), + [anon_sym_type] = ACTIONS(3262), + [anon_sym_namespace] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3262), + [anon_sym_RBRACE] = ACTIONS(3262), + [anon_sym_typeof] = ACTIONS(3262), + [anon_sym_import] = ACTIONS(3262), + [anon_sym_with] = ACTIONS(3262), + [anon_sym_var] = ACTIONS(3262), + [anon_sym_let] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_BANG] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3262), + [anon_sym_await] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_try] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_debugger] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_throw] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3262), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3262), + [anon_sym_LTtemplate_GT] = ACTIONS(3262), + [anon_sym_DQUOTE] = ACTIONS(3262), + [anon_sym_SQUOTE] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_async] = ACTIONS(3262), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_using] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_LT] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3262), + [anon_sym_void] = ACTIONS(3262), + [anon_sym_delete] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3262), + [anon_sym_DASH_DASH] = ACTIONS(3262), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3290), - [sym_number] = ACTIONS(3290), - [sym_private_property_identifier] = ACTIONS(3290), - [sym_this] = ACTIONS(3290), - [sym_super] = ACTIONS(3290), - [sym_true] = ACTIONS(3290), - [sym_false] = ACTIONS(3290), - [sym_null] = ACTIONS(3290), - [sym_undefined] = ACTIONS(3290), - [anon_sym_AT] = ACTIONS(3290), - [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_abstract] = ACTIONS(3290), - [anon_sym_interface] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), + [anon_sym_BQUOTE] = ACTIONS(3262), + [sym_number] = ACTIONS(3262), + [sym_private_property_identifier] = ACTIONS(3262), + [sym_this] = ACTIONS(3262), + [sym_super] = ACTIONS(3262), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_null] = ACTIONS(3262), + [sym_undefined] = ACTIONS(3262), + [anon_sym_AT] = ACTIONS(3262), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_readonly] = ACTIONS(3262), + [anon_sym_get] = ACTIONS(3262), + [anon_sym_set] = ACTIONS(3262), + [anon_sym_declare] = ACTIONS(3262), + [anon_sym_public] = ACTIONS(3262), + [anon_sym_private] = ACTIONS(3262), + [anon_sym_protected] = ACTIONS(3262), + [anon_sym_override] = ACTIONS(3262), + [anon_sym_module] = ACTIONS(3262), + [anon_sym_any] = ACTIONS(3262), + [anon_sym_number] = ACTIONS(3262), + [anon_sym_boolean] = ACTIONS(3262), + [anon_sym_string] = ACTIONS(3262), + [anon_sym_symbol] = ACTIONS(3262), + [anon_sym_object] = ACTIONS(3262), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_interface] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), [sym_html_comment] = ACTIONS(5), }, - [1505] = { - [sym_comment] = STATE(1505), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_default] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_typeof] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_await] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_debugger] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_case] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LTtemplate_GT] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_void] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), + [1448] = { + [sym_comment] = STATE(1448), + [ts_builtin_sym_end] = ACTIONS(3484), + [sym_identifier] = ACTIONS(3266), + [anon_sym_export] = ACTIONS(3266), + [anon_sym_type] = ACTIONS(3266), + [anon_sym_namespace] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3266), + [anon_sym_RBRACE] = ACTIONS(3266), + [anon_sym_typeof] = ACTIONS(3266), + [anon_sym_import] = ACTIONS(3266), + [anon_sym_with] = ACTIONS(3266), + [anon_sym_var] = ACTIONS(3266), + [anon_sym_let] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3266), + [anon_sym_await] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_try] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_debugger] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_throw] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3266), + [anon_sym_yield] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3266), + [anon_sym_LTtemplate_GT] = ACTIONS(3266), + [anon_sym_DQUOTE] = ACTIONS(3266), + [anon_sym_SQUOTE] = ACTIONS(3266), + [anon_sym_class] = ACTIONS(3266), + [anon_sym_async] = ACTIONS(3266), + [anon_sym_function] = ACTIONS(3266), + [anon_sym_new] = ACTIONS(3266), + [anon_sym_using] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_SLASH] = ACTIONS(3266), + [anon_sym_LT] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3266), + [anon_sym_void] = ACTIONS(3266), + [anon_sym_delete] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3266), + [anon_sym_DASH_DASH] = ACTIONS(3266), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3288), - [sym_number] = ACTIONS(3288), - [sym_private_property_identifier] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_undefined] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_declare] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_any] = ACTIONS(3288), - [anon_sym_number] = ACTIONS(3288), - [anon_sym_boolean] = ACTIONS(3288), - [anon_sym_string] = ACTIONS(3288), - [anon_sym_symbol] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), + [anon_sym_BQUOTE] = ACTIONS(3266), + [sym_number] = ACTIONS(3266), + [sym_private_property_identifier] = ACTIONS(3266), + [sym_this] = ACTIONS(3266), + [sym_super] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_null] = ACTIONS(3266), + [sym_undefined] = ACTIONS(3266), + [anon_sym_AT] = ACTIONS(3266), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_readonly] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3266), + [anon_sym_set] = ACTIONS(3266), + [anon_sym_declare] = ACTIONS(3266), + [anon_sym_public] = ACTIONS(3266), + [anon_sym_private] = ACTIONS(3266), + [anon_sym_protected] = ACTIONS(3266), + [anon_sym_override] = ACTIONS(3266), + [anon_sym_module] = ACTIONS(3266), + [anon_sym_any] = ACTIONS(3266), + [anon_sym_number] = ACTIONS(3266), + [anon_sym_boolean] = ACTIONS(3266), + [anon_sym_string] = ACTIONS(3266), + [anon_sym_symbol] = ACTIONS(3266), + [anon_sym_object] = ACTIONS(3266), + [anon_sym_abstract] = ACTIONS(3266), + [anon_sym_interface] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), [sym_html_comment] = ACTIONS(5), }, - [1506] = { - [sym_comment] = STATE(1506), - [ts_builtin_sym_end] = ACTIONS(3554), - [sym_identifier] = ACTIONS(3174), - [anon_sym_export] = ACTIONS(3174), - [anon_sym_type] = ACTIONS(3174), - [anon_sym_namespace] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_typeof] = ACTIONS(3174), - [anon_sym_import] = ACTIONS(3174), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_var] = ACTIONS(3174), - [anon_sym_let] = ACTIONS(3174), - [anon_sym_const] = ACTIONS(3174), - [anon_sym_BANG] = ACTIONS(3174), - [anon_sym_else] = ACTIONS(3174), - [anon_sym_if] = ACTIONS(3174), - [anon_sym_switch] = ACTIONS(3174), - [anon_sym_for] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_await] = ACTIONS(3174), - [anon_sym_while] = ACTIONS(3174), - [anon_sym_do] = ACTIONS(3174), - [anon_sym_try] = ACTIONS(3174), - [anon_sym_break] = ACTIONS(3174), - [anon_sym_continue] = ACTIONS(3174), - [anon_sym_debugger] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3174), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3174), - [anon_sym_LTtemplate_GT] = ACTIONS(3174), - [anon_sym_DQUOTE] = ACTIONS(3174), - [anon_sym_SQUOTE] = ACTIONS(3174), - [anon_sym_class] = ACTIONS(3174), - [anon_sym_async] = ACTIONS(3174), - [anon_sym_function] = ACTIONS(3174), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_using] = ACTIONS(3174), - [anon_sym_PLUS] = ACTIONS(3174), - [anon_sym_DASH] = ACTIONS(3174), - [anon_sym_SLASH] = ACTIONS(3174), - [anon_sym_LT] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3174), - [anon_sym_void] = ACTIONS(3174), - [anon_sym_delete] = ACTIONS(3174), - [anon_sym_PLUS_PLUS] = ACTIONS(3174), - [anon_sym_DASH_DASH] = ACTIONS(3174), + [1449] = { + [sym_comment] = STATE(1449), + [ts_builtin_sym_end] = ACTIONS(3480), + [sym_identifier] = ACTIONS(3258), + [anon_sym_export] = ACTIONS(3258), + [anon_sym_type] = ACTIONS(3258), + [anon_sym_namespace] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3258), + [anon_sym_RBRACE] = ACTIONS(3258), + [anon_sym_typeof] = ACTIONS(3258), + [anon_sym_import] = ACTIONS(3258), + [anon_sym_with] = ACTIONS(3258), + [anon_sym_var] = ACTIONS(3258), + [anon_sym_let] = ACTIONS(3258), + [anon_sym_const] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_switch] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(3258), + [anon_sym_await] = ACTIONS(3258), + [anon_sym_while] = ACTIONS(3258), + [anon_sym_do] = ACTIONS(3258), + [anon_sym_try] = ACTIONS(3258), + [anon_sym_break] = ACTIONS(3258), + [anon_sym_continue] = ACTIONS(3258), + [anon_sym_debugger] = ACTIONS(3258), + [anon_sym_return] = ACTIONS(3258), + [anon_sym_throw] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(3258), + [anon_sym_yield] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3258), + [anon_sym_LTtemplate_GT] = ACTIONS(3258), + [anon_sym_DQUOTE] = ACTIONS(3258), + [anon_sym_SQUOTE] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3258), + [anon_sym_async] = ACTIONS(3258), + [anon_sym_function] = ACTIONS(3258), + [anon_sym_new] = ACTIONS(3258), + [anon_sym_using] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_SLASH] = ACTIONS(3258), + [anon_sym_LT] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3258), + [anon_sym_void] = ACTIONS(3258), + [anon_sym_delete] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3258), + [anon_sym_DASH_DASH] = ACTIONS(3258), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3174), - [sym_number] = ACTIONS(3174), - [sym_private_property_identifier] = ACTIONS(3174), - [sym_this] = ACTIONS(3174), - [sym_super] = ACTIONS(3174), - [sym_true] = ACTIONS(3174), - [sym_false] = ACTIONS(3174), - [sym_null] = ACTIONS(3174), - [sym_undefined] = ACTIONS(3174), - [anon_sym_AT] = ACTIONS(3174), - [anon_sym_static] = ACTIONS(3174), - [anon_sym_readonly] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3174), - [anon_sym_set] = ACTIONS(3174), - [anon_sym_declare] = ACTIONS(3174), - [anon_sym_public] = ACTIONS(3174), - [anon_sym_private] = ACTIONS(3174), - [anon_sym_protected] = ACTIONS(3174), - [anon_sym_override] = ACTIONS(3174), - [anon_sym_module] = ACTIONS(3174), - [anon_sym_any] = ACTIONS(3174), - [anon_sym_number] = ACTIONS(3174), - [anon_sym_boolean] = ACTIONS(3174), - [anon_sym_string] = ACTIONS(3174), - [anon_sym_symbol] = ACTIONS(3174), - [anon_sym_object] = ACTIONS(3174), - [anon_sym_abstract] = ACTIONS(3174), - [anon_sym_interface] = ACTIONS(3174), - [anon_sym_enum] = ACTIONS(3174), - [sym_html_comment] = ACTIONS(5), - }, - [1507] = { - [sym_comment] = STATE(1507), - [sym_identifier] = ACTIONS(3286), - [anon_sym_export] = ACTIONS(3286), - [anon_sym_default] = ACTIONS(3286), - [anon_sym_type] = ACTIONS(3286), - [anon_sym_namespace] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_RBRACE] = ACTIONS(3286), - [anon_sym_typeof] = ACTIONS(3286), - [anon_sym_import] = ACTIONS(3286), - [anon_sym_with] = ACTIONS(3286), - [anon_sym_var] = ACTIONS(3286), - [anon_sym_let] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3286), - [anon_sym_await] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_try] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_debugger] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_throw] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3286), - [anon_sym_yield] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3286), - [anon_sym_LTtemplate_GT] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [anon_sym_class] = ACTIONS(3286), - [anon_sym_async] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3286), - [anon_sym_using] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_SLASH] = ACTIONS(3286), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_void] = ACTIONS(3286), - [anon_sym_delete] = ACTIONS(3286), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3286), - [sym_number] = ACTIONS(3286), - [sym_private_property_identifier] = ACTIONS(3286), - [sym_this] = ACTIONS(3286), - [sym_super] = ACTIONS(3286), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_null] = ACTIONS(3286), - [sym_undefined] = ACTIONS(3286), - [anon_sym_AT] = ACTIONS(3286), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_readonly] = ACTIONS(3286), - [anon_sym_get] = ACTIONS(3286), - [anon_sym_set] = ACTIONS(3286), - [anon_sym_declare] = ACTIONS(3286), - [anon_sym_public] = ACTIONS(3286), - [anon_sym_private] = ACTIONS(3286), - [anon_sym_protected] = ACTIONS(3286), - [anon_sym_override] = ACTIONS(3286), - [anon_sym_module] = ACTIONS(3286), - [anon_sym_any] = ACTIONS(3286), - [anon_sym_number] = ACTIONS(3286), - [anon_sym_boolean] = ACTIONS(3286), - [anon_sym_string] = ACTIONS(3286), - [anon_sym_symbol] = ACTIONS(3286), - [anon_sym_object] = ACTIONS(3286), - [anon_sym_abstract] = ACTIONS(3286), - [anon_sym_interface] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), + [anon_sym_BQUOTE] = ACTIONS(3258), + [sym_number] = ACTIONS(3258), + [sym_private_property_identifier] = ACTIONS(3258), + [sym_this] = ACTIONS(3258), + [sym_super] = ACTIONS(3258), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [sym_null] = ACTIONS(3258), + [sym_undefined] = ACTIONS(3258), + [anon_sym_AT] = ACTIONS(3258), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_readonly] = ACTIONS(3258), + [anon_sym_get] = ACTIONS(3258), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_declare] = ACTIONS(3258), + [anon_sym_public] = ACTIONS(3258), + [anon_sym_private] = ACTIONS(3258), + [anon_sym_protected] = ACTIONS(3258), + [anon_sym_override] = ACTIONS(3258), + [anon_sym_module] = ACTIONS(3258), + [anon_sym_any] = ACTIONS(3258), + [anon_sym_number] = ACTIONS(3258), + [anon_sym_boolean] = ACTIONS(3258), + [anon_sym_string] = ACTIONS(3258), + [anon_sym_symbol] = ACTIONS(3258), + [anon_sym_object] = ACTIONS(3258), + [anon_sym_abstract] = ACTIONS(3258), + [anon_sym_interface] = ACTIONS(3258), + [anon_sym_enum] = ACTIONS(3258), [sym_html_comment] = ACTIONS(5), }, - [1508] = { - [sym_comment] = STATE(1508), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [1450] = { + [sym_comment] = STATE(1450), + [ts_builtin_sym_end] = ACTIONS(2165), + [sym_identifier] = ACTIONS(2163), + [anon_sym_export] = ACTIONS(2163), + [anon_sym_type] = ACTIONS(2163), + [anon_sym_namespace] = ACTIONS(2163), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [anon_sym_typeof] = ACTIONS(2163), + [anon_sym_import] = ACTIONS(2163), + [anon_sym_with] = ACTIONS(2163), + [anon_sym_var] = ACTIONS(2163), + [anon_sym_let] = ACTIONS(2163), + [anon_sym_const] = ACTIONS(2163), + [anon_sym_BANG] = ACTIONS(2163), + [anon_sym_if] = ACTIONS(2163), + [anon_sym_switch] = ACTIONS(2163), + [anon_sym_for] = ACTIONS(2163), + [anon_sym_LPAREN] = ACTIONS(2163), + [anon_sym_await] = ACTIONS(2163), + [anon_sym_while] = ACTIONS(2163), + [anon_sym_do] = ACTIONS(2163), + [anon_sym_try] = ACTIONS(2163), + [anon_sym_break] = ACTIONS(2163), + [anon_sym_continue] = ACTIONS(2163), + [anon_sym_debugger] = ACTIONS(2163), + [anon_sym_return] = ACTIONS(2163), + [anon_sym_throw] = ACTIONS(2163), + [anon_sym_SEMI] = ACTIONS(2163), + [anon_sym_yield] = ACTIONS(2163), + [anon_sym_LBRACK] = ACTIONS(2163), + [anon_sym_LTtemplate_GT] = ACTIONS(2163), + [anon_sym_DQUOTE] = ACTIONS(2163), + [anon_sym_SQUOTE] = ACTIONS(2163), + [anon_sym_class] = ACTIONS(2163), + [anon_sym_async] = ACTIONS(2163), + [anon_sym_function] = ACTIONS(2163), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_using] = ACTIONS(2163), + [anon_sym_PLUS] = ACTIONS(2163), + [anon_sym_DASH] = ACTIONS(2163), + [anon_sym_SLASH] = ACTIONS(2163), + [anon_sym_LT] = ACTIONS(2163), + [anon_sym_TILDE] = ACTIONS(2163), + [anon_sym_void] = ACTIONS(2163), + [anon_sym_delete] = ACTIONS(2163), + [anon_sym_PLUS_PLUS] = ACTIONS(2163), + [anon_sym_DASH_DASH] = ACTIONS(2163), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2163), + [sym_number] = ACTIONS(2163), + [sym_private_property_identifier] = ACTIONS(2163), + [sym_this] = ACTIONS(2163), + [sym_super] = ACTIONS(2163), + [sym_true] = ACTIONS(2163), + [sym_false] = ACTIONS(2163), + [sym_null] = ACTIONS(2163), + [sym_undefined] = ACTIONS(2163), + [anon_sym_AT] = ACTIONS(2163), + [anon_sym_static] = ACTIONS(2163), + [anon_sym_readonly] = ACTIONS(2163), + [anon_sym_get] = ACTIONS(2163), + [anon_sym_set] = ACTIONS(2163), + [anon_sym_declare] = ACTIONS(2163), + [anon_sym_public] = ACTIONS(2163), + [anon_sym_private] = ACTIONS(2163), + [anon_sym_protected] = ACTIONS(2163), + [anon_sym_override] = ACTIONS(2163), + [anon_sym_module] = ACTIONS(2163), + [anon_sym_any] = ACTIONS(2163), + [anon_sym_number] = ACTIONS(2163), + [anon_sym_boolean] = ACTIONS(2163), + [anon_sym_string] = ACTIONS(2163), + [anon_sym_symbol] = ACTIONS(2163), + [anon_sym_object] = ACTIONS(2163), + [anon_sym_abstract] = ACTIONS(2163), + [anon_sym_interface] = ACTIONS(2163), + [anon_sym_enum] = ACTIONS(2163), [sym_html_comment] = ACTIONS(5), }, - [1509] = { - [sym_comment] = STATE(1509), - [ts_builtin_sym_end] = ACTIONS(3556), - [sym_identifier] = ACTIONS(3170), - [anon_sym_export] = ACTIONS(3170), - [anon_sym_type] = ACTIONS(3170), - [anon_sym_namespace] = ACTIONS(3170), - [anon_sym_LBRACE] = ACTIONS(3170), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_typeof] = ACTIONS(3170), - [anon_sym_import] = ACTIONS(3170), - [anon_sym_with] = ACTIONS(3170), - [anon_sym_var] = ACTIONS(3170), - [anon_sym_let] = ACTIONS(3170), - [anon_sym_const] = ACTIONS(3170), - [anon_sym_BANG] = ACTIONS(3170), - [anon_sym_else] = ACTIONS(3170), - [anon_sym_if] = ACTIONS(3170), - [anon_sym_switch] = ACTIONS(3170), - [anon_sym_for] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_await] = ACTIONS(3170), - [anon_sym_while] = ACTIONS(3170), - [anon_sym_do] = ACTIONS(3170), - [anon_sym_try] = ACTIONS(3170), - [anon_sym_break] = ACTIONS(3170), - [anon_sym_continue] = ACTIONS(3170), - [anon_sym_debugger] = ACTIONS(3170), - [anon_sym_return] = ACTIONS(3170), - [anon_sym_throw] = ACTIONS(3170), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_yield] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3170), - [anon_sym_LTtemplate_GT] = ACTIONS(3170), - [anon_sym_DQUOTE] = ACTIONS(3170), - [anon_sym_SQUOTE] = ACTIONS(3170), - [anon_sym_class] = ACTIONS(3170), - [anon_sym_async] = ACTIONS(3170), - [anon_sym_function] = ACTIONS(3170), - [anon_sym_new] = ACTIONS(3170), - [anon_sym_using] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3170), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_SLASH] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3170), - [anon_sym_void] = ACTIONS(3170), - [anon_sym_delete] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_DASH_DASH] = ACTIONS(3170), + [1451] = { + [sym_comment] = STATE(1451), + [ts_builtin_sym_end] = ACTIONS(3408), + [sym_identifier] = ACTIONS(3274), + [anon_sym_export] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3274), + [anon_sym_RBRACE] = ACTIONS(3274), + [anon_sym_typeof] = ACTIONS(3274), + [anon_sym_import] = ACTIONS(3274), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_var] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3274), + [anon_sym_await] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_debugger] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_throw] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3274), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3274), + [anon_sym_LTtemplate_GT] = ACTIONS(3274), + [anon_sym_DQUOTE] = ACTIONS(3274), + [anon_sym_SQUOTE] = ACTIONS(3274), + [anon_sym_class] = ACTIONS(3274), + [anon_sym_async] = ACTIONS(3274), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_using] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_SLASH] = ACTIONS(3274), + [anon_sym_LT] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3274), + [anon_sym_void] = ACTIONS(3274), + [anon_sym_delete] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3274), + [anon_sym_DASH_DASH] = ACTIONS(3274), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3170), - [sym_private_property_identifier] = ACTIONS(3170), - [sym_this] = ACTIONS(3170), - [sym_super] = ACTIONS(3170), - [sym_true] = ACTIONS(3170), - [sym_false] = ACTIONS(3170), - [sym_null] = ACTIONS(3170), - [sym_undefined] = ACTIONS(3170), - [anon_sym_AT] = ACTIONS(3170), - [anon_sym_static] = ACTIONS(3170), - [anon_sym_readonly] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3170), - [anon_sym_set] = ACTIONS(3170), - [anon_sym_declare] = ACTIONS(3170), - [anon_sym_public] = ACTIONS(3170), - [anon_sym_private] = ACTIONS(3170), - [anon_sym_protected] = ACTIONS(3170), - [anon_sym_override] = ACTIONS(3170), - [anon_sym_module] = ACTIONS(3170), - [anon_sym_any] = ACTIONS(3170), - [anon_sym_number] = ACTIONS(3170), - [anon_sym_boolean] = ACTIONS(3170), - [anon_sym_string] = ACTIONS(3170), - [anon_sym_symbol] = ACTIONS(3170), - [anon_sym_object] = ACTIONS(3170), - [anon_sym_abstract] = ACTIONS(3170), - [anon_sym_interface] = ACTIONS(3170), - [anon_sym_enum] = ACTIONS(3170), + [anon_sym_BQUOTE] = ACTIONS(3274), + [sym_number] = ACTIONS(3274), + [sym_private_property_identifier] = ACTIONS(3274), + [sym_this] = ACTIONS(3274), + [sym_super] = ACTIONS(3274), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [sym_null] = ACTIONS(3274), + [sym_undefined] = ACTIONS(3274), + [anon_sym_AT] = ACTIONS(3274), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_readonly] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3274), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_declare] = ACTIONS(3274), + [anon_sym_public] = ACTIONS(3274), + [anon_sym_private] = ACTIONS(3274), + [anon_sym_protected] = ACTIONS(3274), + [anon_sym_override] = ACTIONS(3274), + [anon_sym_module] = ACTIONS(3274), + [anon_sym_any] = ACTIONS(3274), + [anon_sym_number] = ACTIONS(3274), + [anon_sym_boolean] = ACTIONS(3274), + [anon_sym_string] = ACTIONS(3274), + [anon_sym_symbol] = ACTIONS(3274), + [anon_sym_object] = ACTIONS(3274), + [anon_sym_abstract] = ACTIONS(3274), + [anon_sym_interface] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), [sym_html_comment] = ACTIONS(5), }, - [1510] = { - [sym_comment] = STATE(1510), - [ts_builtin_sym_end] = ACTIONS(3558), - [sym_identifier] = ACTIONS(3166), - [anon_sym_export] = ACTIONS(3166), - [anon_sym_type] = ACTIONS(3166), - [anon_sym_namespace] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(3166), - [anon_sym_RBRACE] = ACTIONS(3166), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(3166), - [anon_sym_with] = ACTIONS(3166), - [anon_sym_var] = ACTIONS(3166), - [anon_sym_let] = ACTIONS(3166), - [anon_sym_const] = ACTIONS(3166), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_else] = ACTIONS(3166), - [anon_sym_if] = ACTIONS(3166), - [anon_sym_switch] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(3166), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_await] = ACTIONS(3166), - [anon_sym_while] = ACTIONS(3166), - [anon_sym_do] = ACTIONS(3166), - [anon_sym_try] = ACTIONS(3166), - [anon_sym_break] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(3166), - [anon_sym_debugger] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3166), - [anon_sym_yield] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3166), - [anon_sym_LTtemplate_GT] = ACTIONS(3166), - [anon_sym_DQUOTE] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3166), - [anon_sym_class] = ACTIONS(3166), - [anon_sym_async] = ACTIONS(3166), - [anon_sym_function] = ACTIONS(3166), - [anon_sym_new] = ACTIONS(3166), - [anon_sym_using] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_SLASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(3166), - [anon_sym_TILDE] = ACTIONS(3166), - [anon_sym_void] = ACTIONS(3166), - [anon_sym_delete] = ACTIONS(3166), - [anon_sym_PLUS_PLUS] = ACTIONS(3166), - [anon_sym_DASH_DASH] = ACTIONS(3166), + [1452] = { + [sym_comment] = STATE(1452), + [ts_builtin_sym_end] = ACTIONS(3440), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3166), - [sym_number] = ACTIONS(3166), - [sym_private_property_identifier] = ACTIONS(3166), - [sym_this] = ACTIONS(3166), - [sym_super] = ACTIONS(3166), - [sym_true] = ACTIONS(3166), - [sym_false] = ACTIONS(3166), - [sym_null] = ACTIONS(3166), - [sym_undefined] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(3166), - [anon_sym_static] = ACTIONS(3166), - [anon_sym_readonly] = ACTIONS(3166), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_declare] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_module] = ACTIONS(3166), - [anon_sym_any] = ACTIONS(3166), - [anon_sym_number] = ACTIONS(3166), - [anon_sym_boolean] = ACTIONS(3166), - [anon_sym_string] = ACTIONS(3166), - [anon_sym_symbol] = ACTIONS(3166), - [anon_sym_object] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_interface] = ACTIONS(3166), - [anon_sym_enum] = ACTIONS(3166), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, - [1511] = { - [sym_comment] = STATE(1511), - [ts_builtin_sym_end] = ACTIONS(3560), - [sym_identifier] = ACTIONS(3164), - [anon_sym_export] = ACTIONS(3164), - [anon_sym_type] = ACTIONS(3164), - [anon_sym_namespace] = ACTIONS(3164), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_RBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3164), - [anon_sym_import] = ACTIONS(3164), - [anon_sym_with] = ACTIONS(3164), - [anon_sym_var] = ACTIONS(3164), - [anon_sym_let] = ACTIONS(3164), - [anon_sym_const] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_switch] = ACTIONS(3164), - [anon_sym_for] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3164), - [anon_sym_await] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_do] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_debugger] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3164), - [anon_sym_yield] = ACTIONS(3164), - [anon_sym_LBRACK] = ACTIONS(3164), - [anon_sym_LTtemplate_GT] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(3164), - [anon_sym_SQUOTE] = ACTIONS(3164), - [anon_sym_class] = ACTIONS(3164), - [anon_sym_async] = ACTIONS(3164), - [anon_sym_function] = ACTIONS(3164), - [anon_sym_new] = ACTIONS(3164), - [anon_sym_using] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_LT] = ACTIONS(3164), - [anon_sym_TILDE] = ACTIONS(3164), - [anon_sym_void] = ACTIONS(3164), - [anon_sym_delete] = ACTIONS(3164), - [anon_sym_PLUS_PLUS] = ACTIONS(3164), - [anon_sym_DASH_DASH] = ACTIONS(3164), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3164), - [sym_number] = ACTIONS(3164), - [sym_private_property_identifier] = ACTIONS(3164), - [sym_this] = ACTIONS(3164), - [sym_super] = ACTIONS(3164), - [sym_true] = ACTIONS(3164), - [sym_false] = ACTIONS(3164), - [sym_null] = ACTIONS(3164), - [sym_undefined] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3164), - [anon_sym_static] = ACTIONS(3164), - [anon_sym_readonly] = ACTIONS(3164), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_declare] = ACTIONS(3164), - [anon_sym_public] = ACTIONS(3164), - [anon_sym_private] = ACTIONS(3164), - [anon_sym_protected] = ACTIONS(3164), - [anon_sym_override] = ACTIONS(3164), - [anon_sym_module] = ACTIONS(3164), - [anon_sym_any] = ACTIONS(3164), - [anon_sym_number] = ACTIONS(3164), - [anon_sym_boolean] = ACTIONS(3164), - [anon_sym_string] = ACTIONS(3164), - [anon_sym_symbol] = ACTIONS(3164), - [anon_sym_object] = ACTIONS(3164), - [anon_sym_abstract] = ACTIONS(3164), - [anon_sym_interface] = ACTIONS(3164), - [anon_sym_enum] = ACTIONS(3164), + [1453] = { + [sym_comment] = STATE(1453), + [ts_builtin_sym_end] = ACTIONS(3476), + [sym_identifier] = ACTIONS(3130), + [anon_sym_export] = ACTIONS(3130), + [anon_sym_type] = ACTIONS(3130), + [anon_sym_namespace] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(3130), + [anon_sym_RBRACE] = ACTIONS(3130), + [anon_sym_typeof] = ACTIONS(3130), + [anon_sym_import] = ACTIONS(3130), + [anon_sym_with] = ACTIONS(3130), + [anon_sym_var] = ACTIONS(3130), + [anon_sym_let] = ACTIONS(3130), + [anon_sym_const] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_switch] = ACTIONS(3130), + [anon_sym_for] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3130), + [anon_sym_await] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_do] = ACTIONS(3130), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_debugger] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_throw] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3130), + [anon_sym_yield] = ACTIONS(3130), + [anon_sym_LBRACK] = ACTIONS(3130), + [anon_sym_LTtemplate_GT] = ACTIONS(3130), + [anon_sym_DQUOTE] = ACTIONS(3130), + [anon_sym_SQUOTE] = ACTIONS(3130), + [anon_sym_class] = ACTIONS(3130), + [anon_sym_async] = ACTIONS(3130), + [anon_sym_function] = ACTIONS(3130), + [anon_sym_new] = ACTIONS(3130), + [anon_sym_using] = ACTIONS(3130), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_SLASH] = ACTIONS(3130), + [anon_sym_LT] = ACTIONS(3130), + [anon_sym_TILDE] = ACTIONS(3130), + [anon_sym_void] = ACTIONS(3130), + [anon_sym_delete] = ACTIONS(3130), + [anon_sym_PLUS_PLUS] = ACTIONS(3130), + [anon_sym_DASH_DASH] = ACTIONS(3130), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3130), + [sym_number] = ACTIONS(3130), + [sym_private_property_identifier] = ACTIONS(3130), + [sym_this] = ACTIONS(3130), + [sym_super] = ACTIONS(3130), + [sym_true] = ACTIONS(3130), + [sym_false] = ACTIONS(3130), + [sym_null] = ACTIONS(3130), + [sym_undefined] = ACTIONS(3130), + [anon_sym_AT] = ACTIONS(3130), + [anon_sym_static] = ACTIONS(3130), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_get] = ACTIONS(3130), + [anon_sym_set] = ACTIONS(3130), + [anon_sym_declare] = ACTIONS(3130), + [anon_sym_public] = ACTIONS(3130), + [anon_sym_private] = ACTIONS(3130), + [anon_sym_protected] = ACTIONS(3130), + [anon_sym_override] = ACTIONS(3130), + [anon_sym_module] = ACTIONS(3130), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_object] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3130), + [anon_sym_interface] = ACTIONS(3130), + [anon_sym_enum] = ACTIONS(3130), [sym_html_comment] = ACTIONS(5), }, - [1512] = { - [sym_comment] = STATE(1512), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1454] = { + [sym_comment] = STATE(1454), + [ts_builtin_sym_end] = ACTIONS(3440), + [sym_identifier] = ACTIONS(3272), + [anon_sym_export] = ACTIONS(3272), + [anon_sym_type] = ACTIONS(3272), + [anon_sym_namespace] = ACTIONS(3272), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3272), + [anon_sym_import] = ACTIONS(3272), + [anon_sym_with] = ACTIONS(3272), + [anon_sym_var] = ACTIONS(3272), + [anon_sym_let] = ACTIONS(3272), + [anon_sym_const] = ACTIONS(3272), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_if] = ACTIONS(3272), + [anon_sym_switch] = ACTIONS(3272), + [anon_sym_for] = ACTIONS(3272), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3272), + [anon_sym_while] = ACTIONS(3272), + [anon_sym_do] = ACTIONS(3272), + [anon_sym_try] = ACTIONS(3272), + [anon_sym_break] = ACTIONS(3272), + [anon_sym_continue] = ACTIONS(3272), + [anon_sym_debugger] = ACTIONS(3272), + [anon_sym_return] = ACTIONS(3272), + [anon_sym_throw] = ACTIONS(3272), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_yield] = ACTIONS(3272), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LTtemplate_GT] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [anon_sym_class] = ACTIONS(3272), + [anon_sym_async] = ACTIONS(3272), + [anon_sym_function] = ACTIONS(3272), + [anon_sym_new] = ACTIONS(3272), + [anon_sym_using] = ACTIONS(3272), + [anon_sym_PLUS] = ACTIONS(3272), + [anon_sym_DASH] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3272), + [anon_sym_delete] = ACTIONS(3272), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_private_property_identifier] = ACTIONS(3272), + [sym_this] = ACTIONS(3272), + [sym_super] = ACTIONS(3272), + [sym_true] = ACTIONS(3272), + [sym_false] = ACTIONS(3272), + [sym_null] = ACTIONS(3272), + [sym_undefined] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3272), + [anon_sym_readonly] = ACTIONS(3272), + [anon_sym_get] = ACTIONS(3272), + [anon_sym_set] = ACTIONS(3272), + [anon_sym_declare] = ACTIONS(3272), + [anon_sym_public] = ACTIONS(3272), + [anon_sym_private] = ACTIONS(3272), + [anon_sym_protected] = ACTIONS(3272), + [anon_sym_override] = ACTIONS(3272), + [anon_sym_module] = ACTIONS(3272), + [anon_sym_any] = ACTIONS(3272), + [anon_sym_number] = ACTIONS(3272), + [anon_sym_boolean] = ACTIONS(3272), + [anon_sym_string] = ACTIONS(3272), + [anon_sym_symbol] = ACTIONS(3272), + [anon_sym_object] = ACTIONS(3272), + [anon_sym_abstract] = ACTIONS(3272), + [anon_sym_interface] = ACTIONS(3272), + [anon_sym_enum] = ACTIONS(3272), [sym_html_comment] = ACTIONS(5), }, - [1513] = { - [sym_comment] = STATE(1513), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1514] = { - [sym_comment] = STATE(1514), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1515] = { - [sym_comment] = STATE(1515), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1516] = { - [sym_comment] = STATE(1516), - [ts_builtin_sym_end] = ACTIONS(3562), - [sym_identifier] = ACTIONS(3162), - [anon_sym_export] = ACTIONS(3162), - [anon_sym_type] = ACTIONS(3162), - [anon_sym_namespace] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3162), - [anon_sym_RBRACE] = ACTIONS(3162), - [anon_sym_typeof] = ACTIONS(3162), - [anon_sym_import] = ACTIONS(3162), - [anon_sym_with] = ACTIONS(3162), - [anon_sym_var] = ACTIONS(3162), - [anon_sym_let] = ACTIONS(3162), - [anon_sym_const] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_else] = ACTIONS(3162), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_switch] = ACTIONS(3162), - [anon_sym_for] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3162), - [anon_sym_await] = ACTIONS(3162), - [anon_sym_while] = ACTIONS(3162), - [anon_sym_do] = ACTIONS(3162), - [anon_sym_try] = ACTIONS(3162), - [anon_sym_break] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(3162), - [anon_sym_debugger] = ACTIONS(3162), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_throw] = ACTIONS(3162), - [anon_sym_SEMI] = ACTIONS(3162), - [anon_sym_yield] = ACTIONS(3162), - [anon_sym_LBRACK] = ACTIONS(3162), - [anon_sym_LTtemplate_GT] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3162), - [anon_sym_class] = ACTIONS(3162), - [anon_sym_async] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3162), - [anon_sym_new] = ACTIONS(3162), - [anon_sym_using] = ACTIONS(3162), - [anon_sym_PLUS] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3162), - [anon_sym_SLASH] = ACTIONS(3162), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_void] = ACTIONS(3162), - [anon_sym_delete] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3162), - [anon_sym_DASH_DASH] = ACTIONS(3162), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3162), - [sym_number] = ACTIONS(3162), - [sym_private_property_identifier] = ACTIONS(3162), - [sym_this] = ACTIONS(3162), - [sym_super] = ACTIONS(3162), - [sym_true] = ACTIONS(3162), - [sym_false] = ACTIONS(3162), - [sym_null] = ACTIONS(3162), - [sym_undefined] = ACTIONS(3162), - [anon_sym_AT] = ACTIONS(3162), - [anon_sym_static] = ACTIONS(3162), - [anon_sym_readonly] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(3162), - [anon_sym_set] = ACTIONS(3162), - [anon_sym_declare] = ACTIONS(3162), - [anon_sym_public] = ACTIONS(3162), - [anon_sym_private] = ACTIONS(3162), - [anon_sym_protected] = ACTIONS(3162), - [anon_sym_override] = ACTIONS(3162), - [anon_sym_module] = ACTIONS(3162), - [anon_sym_any] = ACTIONS(3162), - [anon_sym_number] = ACTIONS(3162), - [anon_sym_boolean] = ACTIONS(3162), - [anon_sym_string] = ACTIONS(3162), - [anon_sym_symbol] = ACTIONS(3162), - [anon_sym_object] = ACTIONS(3162), - [anon_sym_abstract] = ACTIONS(3162), - [anon_sym_interface] = ACTIONS(3162), - [anon_sym_enum] = ACTIONS(3162), - [sym_html_comment] = ACTIONS(5), - }, - [1517] = { - [sym_comment] = STATE(1517), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1518] = { - [sym_comment] = STATE(1518), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1519] = { - [sym_comment] = STATE(1519), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1520] = { - [sym_comment] = STATE(1520), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1521] = { - [sym_comment] = STATE(1521), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1522] = { - [sym_comment] = STATE(1522), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1523] = { - [sym_comment] = STATE(1523), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1524] = { - [sym_comment] = STATE(1524), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1525] = { - [sym_comment] = STATE(1525), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1526] = { - [sym_comment] = STATE(1526), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1527] = { - [sym_comment] = STATE(1527), - [ts_builtin_sym_end] = ACTIONS(3564), - [sym_identifier] = ACTIONS(3160), - [anon_sym_export] = ACTIONS(3160), - [anon_sym_type] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_RBRACE] = ACTIONS(3160), - [anon_sym_typeof] = ACTIONS(3160), - [anon_sym_import] = ACTIONS(3160), - [anon_sym_with] = ACTIONS(3160), - [anon_sym_var] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_BANG] = ACTIONS(3160), - [anon_sym_else] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_await] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_debugger] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LTtemplate_GT] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_SQUOTE] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_async] = ACTIONS(3160), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_SLASH] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_void] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_PLUS_PLUS] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3160), - [sym_number] = ACTIONS(3160), - [sym_private_property_identifier] = ACTIONS(3160), - [sym_this] = ACTIONS(3160), - [sym_super] = ACTIONS(3160), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [sym_null] = ACTIONS(3160), - [sym_undefined] = ACTIONS(3160), - [anon_sym_AT] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_readonly] = ACTIONS(3160), - [anon_sym_get] = ACTIONS(3160), - [anon_sym_set] = ACTIONS(3160), - [anon_sym_declare] = ACTIONS(3160), - [anon_sym_public] = ACTIONS(3160), - [anon_sym_private] = ACTIONS(3160), - [anon_sym_protected] = ACTIONS(3160), - [anon_sym_override] = ACTIONS(3160), - [anon_sym_module] = ACTIONS(3160), - [anon_sym_any] = ACTIONS(3160), - [anon_sym_number] = ACTIONS(3160), - [anon_sym_boolean] = ACTIONS(3160), - [anon_sym_string] = ACTIONS(3160), - [anon_sym_symbol] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3160), - [anon_sym_abstract] = ACTIONS(3160), - [anon_sym_interface] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), - [sym_html_comment] = ACTIONS(5), - }, - [1528] = { - [sym_comment] = STATE(1528), - [ts_builtin_sym_end] = ACTIONS(3566), - [sym_identifier] = ACTIONS(3158), - [anon_sym_export] = ACTIONS(3158), - [anon_sym_type] = ACTIONS(3158), - [anon_sym_namespace] = ACTIONS(3158), - [anon_sym_LBRACE] = ACTIONS(3158), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_typeof] = ACTIONS(3158), - [anon_sym_import] = ACTIONS(3158), - [anon_sym_with] = ACTIONS(3158), - [anon_sym_var] = ACTIONS(3158), - [anon_sym_let] = ACTIONS(3158), - [anon_sym_const] = ACTIONS(3158), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_else] = ACTIONS(3158), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_switch] = ACTIONS(3158), - [anon_sym_for] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_await] = ACTIONS(3158), - [anon_sym_while] = ACTIONS(3158), - [anon_sym_do] = ACTIONS(3158), - [anon_sym_try] = ACTIONS(3158), - [anon_sym_break] = ACTIONS(3158), - [anon_sym_continue] = ACTIONS(3158), - [anon_sym_debugger] = ACTIONS(3158), - [anon_sym_return] = ACTIONS(3158), - [anon_sym_throw] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_yield] = ACTIONS(3158), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_LTtemplate_GT] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_SQUOTE] = ACTIONS(3158), - [anon_sym_class] = ACTIONS(3158), - [anon_sym_async] = ACTIONS(3158), - [anon_sym_function] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3158), - [anon_sym_using] = ACTIONS(3158), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_SLASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3158), - [anon_sym_TILDE] = ACTIONS(3158), - [anon_sym_void] = ACTIONS(3158), - [anon_sym_delete] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_DASH_DASH] = ACTIONS(3158), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3158), - [sym_number] = ACTIONS(3158), - [sym_private_property_identifier] = ACTIONS(3158), - [sym_this] = ACTIONS(3158), - [sym_super] = ACTIONS(3158), - [sym_true] = ACTIONS(3158), - [sym_false] = ACTIONS(3158), - [sym_null] = ACTIONS(3158), - [sym_undefined] = ACTIONS(3158), - [anon_sym_AT] = ACTIONS(3158), - [anon_sym_static] = ACTIONS(3158), - [anon_sym_readonly] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3158), - [anon_sym_set] = ACTIONS(3158), - [anon_sym_declare] = ACTIONS(3158), - [anon_sym_public] = ACTIONS(3158), - [anon_sym_private] = ACTIONS(3158), - [anon_sym_protected] = ACTIONS(3158), - [anon_sym_override] = ACTIONS(3158), - [anon_sym_module] = ACTIONS(3158), - [anon_sym_any] = ACTIONS(3158), - [anon_sym_number] = ACTIONS(3158), - [anon_sym_boolean] = ACTIONS(3158), - [anon_sym_string] = ACTIONS(3158), - [anon_sym_symbol] = ACTIONS(3158), - [anon_sym_object] = ACTIONS(3158), - [anon_sym_abstract] = ACTIONS(3158), - [anon_sym_interface] = ACTIONS(3158), - [anon_sym_enum] = ACTIONS(3158), - [sym_html_comment] = ACTIONS(5), - }, - [1529] = { - [sym_comment] = STATE(1529), - [ts_builtin_sym_end] = ACTIONS(3568), - [sym_identifier] = ACTIONS(3304), - [anon_sym_export] = ACTIONS(3304), - [anon_sym_type] = ACTIONS(3304), - [anon_sym_namespace] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3304), - [anon_sym_RBRACE] = ACTIONS(3304), - [anon_sym_typeof] = ACTIONS(3304), - [anon_sym_import] = ACTIONS(3304), - [anon_sym_with] = ACTIONS(3304), - [anon_sym_var] = ACTIONS(3304), - [anon_sym_let] = ACTIONS(3304), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_else] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_switch] = ACTIONS(3304), - [anon_sym_for] = ACTIONS(3304), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_await] = ACTIONS(3304), - [anon_sym_while] = ACTIONS(3304), - [anon_sym_do] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(3304), - [anon_sym_break] = ACTIONS(3304), - [anon_sym_continue] = ACTIONS(3304), - [anon_sym_debugger] = ACTIONS(3304), - [anon_sym_return] = ACTIONS(3304), - [anon_sym_throw] = ACTIONS(3304), - [anon_sym_SEMI] = ACTIONS(3304), - [anon_sym_yield] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3304), - [anon_sym_LTtemplate_GT] = ACTIONS(3304), - [anon_sym_DQUOTE] = ACTIONS(3304), - [anon_sym_SQUOTE] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_async] = ACTIONS(3304), - [anon_sym_function] = ACTIONS(3304), - [anon_sym_new] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_SLASH] = ACTIONS(3304), - [anon_sym_LT] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3304), - [anon_sym_void] = ACTIONS(3304), - [anon_sym_delete] = ACTIONS(3304), - [anon_sym_PLUS_PLUS] = ACTIONS(3304), - [anon_sym_DASH_DASH] = ACTIONS(3304), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3304), - [sym_number] = ACTIONS(3304), - [sym_private_property_identifier] = ACTIONS(3304), - [sym_this] = ACTIONS(3304), - [sym_super] = ACTIONS(3304), - [sym_true] = ACTIONS(3304), - [sym_false] = ACTIONS(3304), - [sym_null] = ACTIONS(3304), - [sym_undefined] = ACTIONS(3304), - [anon_sym_AT] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3304), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_declare] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_protected] = ACTIONS(3304), - [anon_sym_override] = ACTIONS(3304), - [anon_sym_module] = ACTIONS(3304), - [anon_sym_any] = ACTIONS(3304), - [anon_sym_number] = ACTIONS(3304), - [anon_sym_boolean] = ACTIONS(3304), - [anon_sym_string] = ACTIONS(3304), - [anon_sym_symbol] = ACTIONS(3304), - [anon_sym_object] = ACTIONS(3304), - [anon_sym_abstract] = ACTIONS(3304), - [anon_sym_interface] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), - [sym_html_comment] = ACTIONS(5), - }, - [1530] = { - [sym_comment] = STATE(1530), - [ts_builtin_sym_end] = ACTIONS(3570), - [sym_identifier] = ACTIONS(3152), - [anon_sym_export] = ACTIONS(3152), - [anon_sym_type] = ACTIONS(3152), - [anon_sym_namespace] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(3152), - [anon_sym_with] = ACTIONS(3152), - [anon_sym_var] = ACTIONS(3152), - [anon_sym_let] = ACTIONS(3152), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3152), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_await] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_debugger] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_throw] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_LTtemplate_GT] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_async] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_using] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_DASH] = ACTIONS(3152), - [anon_sym_SLASH] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3152), - [anon_sym_void] = ACTIONS(3152), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3152), - [sym_number] = ACTIONS(3152), - [sym_private_property_identifier] = ACTIONS(3152), - [sym_this] = ACTIONS(3152), - [sym_super] = ACTIONS(3152), - [sym_true] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [sym_undefined] = ACTIONS(3152), - [anon_sym_AT] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_readonly] = ACTIONS(3152), - [anon_sym_get] = ACTIONS(3152), - [anon_sym_set] = ACTIONS(3152), - [anon_sym_declare] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_module] = ACTIONS(3152), - [anon_sym_any] = ACTIONS(3152), - [anon_sym_number] = ACTIONS(3152), - [anon_sym_boolean] = ACTIONS(3152), - [anon_sym_string] = ACTIONS(3152), - [anon_sym_symbol] = ACTIONS(3152), - [anon_sym_object] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_interface] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), - [sym_html_comment] = ACTIONS(5), - }, - [1531] = { - [sym_comment] = STATE(1531), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1532] = { - [sym_comment] = STATE(1532), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), - [sym__automatic_semicolon] = ACTIONS(3572), - [sym_html_comment] = ACTIONS(5), - }, - [1533] = { - [sym_comment] = STATE(1533), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1534] = { - [sym_comment] = STATE(1534), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1535] = { - [sym_comment] = STATE(1535), - [ts_builtin_sym_end] = ACTIONS(3574), - [sym_identifier] = ACTIONS(3150), - [anon_sym_export] = ACTIONS(3150), - [anon_sym_type] = ACTIONS(3150), - [anon_sym_namespace] = ACTIONS(3150), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3150), - [anon_sym_import] = ACTIONS(3150), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_var] = ACTIONS(3150), - [anon_sym_let] = ACTIONS(3150), - [anon_sym_const] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3150), - [anon_sym_if] = ACTIONS(3150), - [anon_sym_switch] = ACTIONS(3150), - [anon_sym_for] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3150), - [anon_sym_await] = ACTIONS(3150), - [anon_sym_while] = ACTIONS(3150), - [anon_sym_do] = ACTIONS(3150), - [anon_sym_try] = ACTIONS(3150), - [anon_sym_break] = ACTIONS(3150), - [anon_sym_continue] = ACTIONS(3150), - [anon_sym_debugger] = ACTIONS(3150), - [anon_sym_return] = ACTIONS(3150), - [anon_sym_throw] = ACTIONS(3150), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_LTtemplate_GT] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3150), - [anon_sym_SQUOTE] = ACTIONS(3150), - [anon_sym_class] = ACTIONS(3150), - [anon_sym_async] = ACTIONS(3150), - [anon_sym_function] = ACTIONS(3150), - [anon_sym_new] = ACTIONS(3150), - [anon_sym_using] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_SLASH] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_void] = ACTIONS(3150), - [anon_sym_delete] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3150), - [sym_number] = ACTIONS(3150), - [sym_private_property_identifier] = ACTIONS(3150), - [sym_this] = ACTIONS(3150), - [sym_super] = ACTIONS(3150), - [sym_true] = ACTIONS(3150), - [sym_false] = ACTIONS(3150), - [sym_null] = ACTIONS(3150), - [sym_undefined] = ACTIONS(3150), - [anon_sym_AT] = ACTIONS(3150), - [anon_sym_static] = ACTIONS(3150), - [anon_sym_readonly] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3150), - [anon_sym_set] = ACTIONS(3150), - [anon_sym_declare] = ACTIONS(3150), - [anon_sym_public] = ACTIONS(3150), - [anon_sym_private] = ACTIONS(3150), - [anon_sym_protected] = ACTIONS(3150), - [anon_sym_override] = ACTIONS(3150), - [anon_sym_module] = ACTIONS(3150), - [anon_sym_any] = ACTIONS(3150), - [anon_sym_number] = ACTIONS(3150), - [anon_sym_boolean] = ACTIONS(3150), - [anon_sym_string] = ACTIONS(3150), - [anon_sym_symbol] = ACTIONS(3150), - [anon_sym_object] = ACTIONS(3150), - [anon_sym_abstract] = ACTIONS(3150), - [anon_sym_interface] = ACTIONS(3150), - [anon_sym_enum] = ACTIONS(3150), - [sym_html_comment] = ACTIONS(5), - }, - [1536] = { - [sym_comment] = STATE(1536), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1537] = { - [sym_comment] = STATE(1537), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_default] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1538] = { - [sym_comment] = STATE(1538), - [ts_builtin_sym_end] = ACTIONS(3576), - [sym_identifier] = ACTIONS(3148), - [anon_sym_export] = ACTIONS(3148), - [anon_sym_type] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3148), - [anon_sym_RBRACE] = ACTIONS(3148), - [anon_sym_typeof] = ACTIONS(3148), - [anon_sym_import] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3148), - [anon_sym_var] = ACTIONS(3148), - [anon_sym_let] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3148), - [anon_sym_await] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_debugger] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_LTtemplate_GT] = ACTIONS(3148), - [anon_sym_DQUOTE] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_async] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_SLASH] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_void] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_PLUS_PLUS] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3148), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3148), - [sym_number] = ACTIONS(3148), - [sym_private_property_identifier] = ACTIONS(3148), - [sym_this] = ACTIONS(3148), - [sym_super] = ACTIONS(3148), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [sym_null] = ACTIONS(3148), - [sym_undefined] = ACTIONS(3148), - [anon_sym_AT] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_readonly] = ACTIONS(3148), - [anon_sym_get] = ACTIONS(3148), - [anon_sym_set] = ACTIONS(3148), - [anon_sym_declare] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_module] = ACTIONS(3148), - [anon_sym_any] = ACTIONS(3148), - [anon_sym_number] = ACTIONS(3148), - [anon_sym_boolean] = ACTIONS(3148), - [anon_sym_string] = ACTIONS(3148), - [anon_sym_symbol] = ACTIONS(3148), - [anon_sym_object] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_interface] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), - [sym_html_comment] = ACTIONS(5), - }, - [1539] = { - [sym_comment] = STATE(1539), - [sym_identifier] = ACTIONS(3140), - [anon_sym_export] = ACTIONS(3140), - [anon_sym_default] = ACTIONS(3140), - [anon_sym_type] = ACTIONS(3140), - [anon_sym_namespace] = ACTIONS(3140), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_typeof] = ACTIONS(3140), - [anon_sym_import] = ACTIONS(3140), - [anon_sym_with] = ACTIONS(3140), - [anon_sym_var] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_const] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_switch] = ACTIONS(3140), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_await] = ACTIONS(3140), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_break] = ACTIONS(3140), - [anon_sym_continue] = ACTIONS(3140), - [anon_sym_debugger] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_throw] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_case] = ACTIONS(3140), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LTtemplate_GT] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_SQUOTE] = ACTIONS(3140), - [anon_sym_class] = ACTIONS(3140), - [anon_sym_async] = ACTIONS(3140), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_using] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_SLASH] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3140), - [anon_sym_void] = ACTIONS(3140), - [anon_sym_delete] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3140), - [sym_number] = ACTIONS(3140), - [sym_private_property_identifier] = ACTIONS(3140), - [sym_this] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_undefined] = ACTIONS(3140), - [anon_sym_AT] = ACTIONS(3140), - [anon_sym_static] = ACTIONS(3140), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3140), - [anon_sym_set] = ACTIONS(3140), - [anon_sym_declare] = ACTIONS(3140), - [anon_sym_public] = ACTIONS(3140), - [anon_sym_private] = ACTIONS(3140), - [anon_sym_protected] = ACTIONS(3140), - [anon_sym_override] = ACTIONS(3140), - [anon_sym_module] = ACTIONS(3140), - [anon_sym_any] = ACTIONS(3140), - [anon_sym_number] = ACTIONS(3140), - [anon_sym_boolean] = ACTIONS(3140), - [anon_sym_string] = ACTIONS(3140), - [anon_sym_symbol] = ACTIONS(3140), - [anon_sym_object] = ACTIONS(3140), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_interface] = ACTIONS(3140), - [anon_sym_enum] = ACTIONS(3140), - [sym_html_comment] = ACTIONS(5), - }, - [1540] = { - [sym_comment] = STATE(1540), - [ts_builtin_sym_end] = ACTIONS(2341), - [sym_identifier] = ACTIONS(2085), - [anon_sym_export] = ACTIONS(2085), - [anon_sym_type] = ACTIONS(2085), - [anon_sym_namespace] = ACTIONS(2085), - [anon_sym_LBRACE] = ACTIONS(2085), - [anon_sym_RBRACE] = ACTIONS(2085), - [anon_sym_typeof] = ACTIONS(2085), - [anon_sym_import] = ACTIONS(2085), - [anon_sym_with] = ACTIONS(2085), - [anon_sym_var] = ACTIONS(2085), - [anon_sym_let] = ACTIONS(2085), - [anon_sym_const] = ACTIONS(2085), - [anon_sym_BANG] = ACTIONS(2085), - [anon_sym_if] = ACTIONS(2085), - [anon_sym_switch] = ACTIONS(2085), - [anon_sym_for] = ACTIONS(2085), - [anon_sym_LPAREN] = ACTIONS(2085), - [anon_sym_await] = ACTIONS(2085), - [anon_sym_while] = ACTIONS(2085), - [anon_sym_do] = ACTIONS(2085), - [anon_sym_try] = ACTIONS(2085), - [anon_sym_break] = ACTIONS(2085), - [anon_sym_continue] = ACTIONS(2085), - [anon_sym_debugger] = ACTIONS(2085), - [anon_sym_return] = ACTIONS(2085), - [anon_sym_throw] = ACTIONS(2085), - [anon_sym_SEMI] = ACTIONS(2085), - [anon_sym_yield] = ACTIONS(2085), - [anon_sym_LBRACK] = ACTIONS(2085), - [anon_sym_LTtemplate_GT] = ACTIONS(2085), - [anon_sym_DQUOTE] = ACTIONS(2085), - [anon_sym_SQUOTE] = ACTIONS(2085), - [anon_sym_class] = ACTIONS(2085), - [anon_sym_async] = ACTIONS(2085), - [anon_sym_function] = ACTIONS(2085), - [anon_sym_new] = ACTIONS(2085), - [anon_sym_using] = ACTIONS(2085), - [anon_sym_PLUS] = ACTIONS(2085), - [anon_sym_DASH] = ACTIONS(2085), - [anon_sym_SLASH] = ACTIONS(2085), - [anon_sym_LT] = ACTIONS(2085), - [anon_sym_TILDE] = ACTIONS(2085), - [anon_sym_void] = ACTIONS(2085), - [anon_sym_delete] = ACTIONS(2085), - [anon_sym_PLUS_PLUS] = ACTIONS(2085), - [anon_sym_DASH_DASH] = ACTIONS(2085), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2085), - [sym_number] = ACTIONS(2085), - [sym_private_property_identifier] = ACTIONS(2085), - [sym_this] = ACTIONS(2085), - [sym_super] = ACTIONS(2085), - [sym_true] = ACTIONS(2085), - [sym_false] = ACTIONS(2085), - [sym_null] = ACTIONS(2085), - [sym_undefined] = ACTIONS(2085), - [anon_sym_AT] = ACTIONS(2085), - [anon_sym_static] = ACTIONS(2085), - [anon_sym_readonly] = ACTIONS(2085), - [anon_sym_get] = ACTIONS(2085), - [anon_sym_set] = ACTIONS(2085), - [anon_sym_declare] = ACTIONS(2085), - [anon_sym_public] = ACTIONS(2085), - [anon_sym_private] = ACTIONS(2085), - [anon_sym_protected] = ACTIONS(2085), - [anon_sym_override] = ACTIONS(2085), - [anon_sym_module] = ACTIONS(2085), - [anon_sym_any] = ACTIONS(2085), - [anon_sym_number] = ACTIONS(2085), - [anon_sym_boolean] = ACTIONS(2085), - [anon_sym_string] = ACTIONS(2085), - [anon_sym_symbol] = ACTIONS(2085), - [anon_sym_object] = ACTIONS(2085), - [anon_sym_abstract] = ACTIONS(2085), - [anon_sym_interface] = ACTIONS(2085), - [anon_sym_enum] = ACTIONS(2085), - [sym__automatic_semicolon] = ACTIONS(2417), - [sym_html_comment] = ACTIONS(5), - }, - [1541] = { - [sym_comment] = STATE(1541), - [ts_builtin_sym_end] = ACTIONS(3578), - [sym_identifier] = ACTIONS(3146), - [anon_sym_export] = ACTIONS(3146), - [anon_sym_type] = ACTIONS(3146), - [anon_sym_namespace] = ACTIONS(3146), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_RBRACE] = ACTIONS(3146), - [anon_sym_typeof] = ACTIONS(3146), - [anon_sym_import] = ACTIONS(3146), - [anon_sym_with] = ACTIONS(3146), - [anon_sym_var] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_const] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_switch] = ACTIONS(3146), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_await] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_debugger] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3146), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LTtemplate_GT] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3146), - [anon_sym_class] = ACTIONS(3146), - [anon_sym_async] = ACTIONS(3146), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_using] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_void] = ACTIONS(3146), - [anon_sym_delete] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3146), - [anon_sym_DASH_DASH] = ACTIONS(3146), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3146), - [sym_number] = ACTIONS(3146), - [sym_private_property_identifier] = ACTIONS(3146), - [sym_this] = ACTIONS(3146), - [sym_super] = ACTIONS(3146), - [sym_true] = ACTIONS(3146), - [sym_false] = ACTIONS(3146), - [sym_null] = ACTIONS(3146), - [sym_undefined] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3146), - [anon_sym_static] = ACTIONS(3146), - [anon_sym_readonly] = ACTIONS(3146), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_declare] = ACTIONS(3146), - [anon_sym_public] = ACTIONS(3146), - [anon_sym_private] = ACTIONS(3146), - [anon_sym_protected] = ACTIONS(3146), - [anon_sym_override] = ACTIONS(3146), - [anon_sym_module] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3146), - [anon_sym_number] = ACTIONS(3146), - [anon_sym_boolean] = ACTIONS(3146), - [anon_sym_string] = ACTIONS(3146), - [anon_sym_symbol] = ACTIONS(3146), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_abstract] = ACTIONS(3146), - [anon_sym_interface] = ACTIONS(3146), - [anon_sym_enum] = ACTIONS(3146), - [sym_html_comment] = ACTIONS(5), - }, - [1542] = { - [sym_comment] = STATE(1542), - [ts_builtin_sym_end] = ACTIONS(2297), - [sym_identifier] = ACTIONS(2117), - [anon_sym_export] = ACTIONS(2117), - [anon_sym_type] = ACTIONS(2117), - [anon_sym_namespace] = ACTIONS(2117), - [anon_sym_LBRACE] = ACTIONS(2117), - [anon_sym_RBRACE] = ACTIONS(2117), - [anon_sym_typeof] = ACTIONS(2117), - [anon_sym_import] = ACTIONS(2117), - [anon_sym_with] = ACTIONS(2117), - [anon_sym_var] = ACTIONS(2117), - [anon_sym_let] = ACTIONS(2117), - [anon_sym_const] = ACTIONS(2117), - [anon_sym_BANG] = ACTIONS(2117), - [anon_sym_if] = ACTIONS(2117), - [anon_sym_switch] = ACTIONS(2117), - [anon_sym_for] = ACTIONS(2117), - [anon_sym_LPAREN] = ACTIONS(2117), - [anon_sym_await] = ACTIONS(2117), - [anon_sym_while] = ACTIONS(2117), - [anon_sym_do] = ACTIONS(2117), - [anon_sym_try] = 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(2117), - [anon_sym_yield] = ACTIONS(2117), - [anon_sym_LBRACK] = ACTIONS(2117), - [anon_sym_LTtemplate_GT] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2117), - [anon_sym_SQUOTE] = ACTIONS(2117), - [anon_sym_class] = ACTIONS(2117), - [anon_sym_async] = ACTIONS(2117), - [anon_sym_function] = ACTIONS(2117), - [anon_sym_new] = ACTIONS(2117), - [anon_sym_using] = ACTIONS(2117), - [anon_sym_PLUS] = ACTIONS(2117), - [anon_sym_DASH] = ACTIONS(2117), - [anon_sym_SLASH] = ACTIONS(2117), - [anon_sym_LT] = ACTIONS(2117), - [anon_sym_TILDE] = ACTIONS(2117), - [anon_sym_void] = ACTIONS(2117), - [anon_sym_delete] = ACTIONS(2117), - [anon_sym_PLUS_PLUS] = ACTIONS(2117), - [anon_sym_DASH_DASH] = ACTIONS(2117), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2117), - [sym_number] = ACTIONS(2117), - [sym_private_property_identifier] = ACTIONS(2117), - [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(2117), - [anon_sym_static] = ACTIONS(2117), - [anon_sym_readonly] = ACTIONS(2117), - [anon_sym_get] = ACTIONS(2117), - [anon_sym_set] = ACTIONS(2117), - [anon_sym_declare] = ACTIONS(2117), - [anon_sym_public] = ACTIONS(2117), - [anon_sym_private] = ACTIONS(2117), - [anon_sym_protected] = ACTIONS(2117), - [anon_sym_override] = ACTIONS(2117), - [anon_sym_module] = ACTIONS(2117), - [anon_sym_any] = ACTIONS(2117), - [anon_sym_number] = ACTIONS(2117), - [anon_sym_boolean] = ACTIONS(2117), - [anon_sym_string] = ACTIONS(2117), - [anon_sym_symbol] = ACTIONS(2117), - [anon_sym_object] = ACTIONS(2117), - [anon_sym_abstract] = ACTIONS(2117), - [anon_sym_interface] = ACTIONS(2117), - [anon_sym_enum] = ACTIONS(2117), - [sym__automatic_semicolon] = ACTIONS(2407), - [sym_html_comment] = ACTIONS(5), - }, - [1543] = { - [sym_comment] = STATE(1543), - [ts_builtin_sym_end] = ACTIONS(2301), - [sym_identifier] = ACTIONS(2127), - [anon_sym_export] = ACTIONS(2127), - [anon_sym_type] = ACTIONS(2127), - [anon_sym_namespace] = ACTIONS(2127), - [anon_sym_LBRACE] = ACTIONS(2127), - [anon_sym_RBRACE] = ACTIONS(2127), - [anon_sym_typeof] = ACTIONS(2127), - [anon_sym_import] = ACTIONS(2127), - [anon_sym_with] = ACTIONS(2127), - [anon_sym_var] = ACTIONS(2127), - [anon_sym_let] = ACTIONS(2127), - [anon_sym_const] = ACTIONS(2127), - [anon_sym_BANG] = ACTIONS(2127), - [anon_sym_if] = ACTIONS(2127), - [anon_sym_switch] = ACTIONS(2127), - [anon_sym_for] = ACTIONS(2127), - [anon_sym_LPAREN] = ACTIONS(2127), - [anon_sym_await] = ACTIONS(2127), - [anon_sym_while] = ACTIONS(2127), - [anon_sym_do] = ACTIONS(2127), - [anon_sym_try] = ACTIONS(2127), - [anon_sym_break] = ACTIONS(2127), - [anon_sym_continue] = ACTIONS(2127), - [anon_sym_debugger] = ACTIONS(2127), - [anon_sym_return] = ACTIONS(2127), - [anon_sym_throw] = ACTIONS(2127), - [anon_sym_SEMI] = ACTIONS(2127), - [anon_sym_yield] = ACTIONS(2127), - [anon_sym_LBRACK] = ACTIONS(2127), - [anon_sym_LTtemplate_GT] = ACTIONS(2127), - [anon_sym_DQUOTE] = ACTIONS(2127), - [anon_sym_SQUOTE] = ACTIONS(2127), - [anon_sym_class] = ACTIONS(2127), - [anon_sym_async] = ACTIONS(2127), - [anon_sym_function] = ACTIONS(2127), - [anon_sym_new] = ACTIONS(2127), - [anon_sym_using] = ACTIONS(2127), - [anon_sym_PLUS] = ACTIONS(2127), - [anon_sym_DASH] = ACTIONS(2127), - [anon_sym_SLASH] = ACTIONS(2127), - [anon_sym_LT] = ACTIONS(2127), - [anon_sym_TILDE] = ACTIONS(2127), - [anon_sym_void] = ACTIONS(2127), - [anon_sym_delete] = ACTIONS(2127), - [anon_sym_PLUS_PLUS] = ACTIONS(2127), - [anon_sym_DASH_DASH] = ACTIONS(2127), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2127), - [sym_number] = ACTIONS(2127), - [sym_private_property_identifier] = ACTIONS(2127), - [sym_this] = ACTIONS(2127), - [sym_super] = ACTIONS(2127), - [sym_true] = ACTIONS(2127), - [sym_false] = ACTIONS(2127), - [sym_null] = ACTIONS(2127), - [sym_undefined] = ACTIONS(2127), - [anon_sym_AT] = ACTIONS(2127), - [anon_sym_static] = ACTIONS(2127), - [anon_sym_readonly] = ACTIONS(2127), - [anon_sym_get] = ACTIONS(2127), - [anon_sym_set] = ACTIONS(2127), - [anon_sym_declare] = ACTIONS(2127), - [anon_sym_public] = ACTIONS(2127), - [anon_sym_private] = ACTIONS(2127), - [anon_sym_protected] = ACTIONS(2127), - [anon_sym_override] = ACTIONS(2127), - [anon_sym_module] = ACTIONS(2127), - [anon_sym_any] = ACTIONS(2127), - [anon_sym_number] = ACTIONS(2127), - [anon_sym_boolean] = ACTIONS(2127), - [anon_sym_string] = ACTIONS(2127), - [anon_sym_symbol] = ACTIONS(2127), - [anon_sym_object] = ACTIONS(2127), - [anon_sym_abstract] = ACTIONS(2127), - [anon_sym_interface] = ACTIONS(2127), - [anon_sym_enum] = ACTIONS(2127), - [sym__automatic_semicolon] = ACTIONS(2415), - [sym_html_comment] = ACTIONS(5), - }, - [1544] = { - [sym_comment] = STATE(1544), - [ts_builtin_sym_end] = ACTIONS(2307), - [sym_identifier] = ACTIONS(2173), - [anon_sym_export] = ACTIONS(2173), - [anon_sym_type] = ACTIONS(2173), - [anon_sym_namespace] = ACTIONS(2173), - [anon_sym_LBRACE] = ACTIONS(2173), - [anon_sym_RBRACE] = ACTIONS(2173), - [anon_sym_typeof] = ACTIONS(2173), - [anon_sym_import] = ACTIONS(2173), - [anon_sym_with] = ACTIONS(2173), - [anon_sym_var] = ACTIONS(2173), - [anon_sym_let] = ACTIONS(2173), - [anon_sym_const] = ACTIONS(2173), - [anon_sym_BANG] = ACTIONS(2173), - [anon_sym_if] = ACTIONS(2173), - [anon_sym_switch] = ACTIONS(2173), - [anon_sym_for] = ACTIONS(2173), - [anon_sym_LPAREN] = ACTIONS(2173), - [anon_sym_await] = ACTIONS(2173), - [anon_sym_while] = ACTIONS(2173), - [anon_sym_do] = ACTIONS(2173), - [anon_sym_try] = ACTIONS(2173), - [anon_sym_break] = ACTIONS(2173), - [anon_sym_continue] = ACTIONS(2173), - [anon_sym_debugger] = ACTIONS(2173), - [anon_sym_return] = ACTIONS(2173), - [anon_sym_throw] = ACTIONS(2173), - [anon_sym_SEMI] = ACTIONS(2173), - [anon_sym_yield] = ACTIONS(2173), - [anon_sym_LBRACK] = ACTIONS(2173), - [anon_sym_LTtemplate_GT] = ACTIONS(2173), - [anon_sym_DQUOTE] = ACTIONS(2173), - [anon_sym_SQUOTE] = ACTIONS(2173), - [anon_sym_class] = ACTIONS(2173), - [anon_sym_async] = ACTIONS(2173), - [anon_sym_function] = ACTIONS(2173), - [anon_sym_new] = ACTIONS(2173), - [anon_sym_using] = ACTIONS(2173), - [anon_sym_PLUS] = ACTIONS(2173), - [anon_sym_DASH] = ACTIONS(2173), - [anon_sym_SLASH] = ACTIONS(2173), - [anon_sym_LT] = ACTIONS(2173), - [anon_sym_TILDE] = ACTIONS(2173), - [anon_sym_void] = ACTIONS(2173), - [anon_sym_delete] = ACTIONS(2173), - [anon_sym_PLUS_PLUS] = ACTIONS(2173), - [anon_sym_DASH_DASH] = ACTIONS(2173), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2173), - [sym_number] = ACTIONS(2173), - [sym_private_property_identifier] = ACTIONS(2173), - [sym_this] = ACTIONS(2173), - [sym_super] = ACTIONS(2173), - [sym_true] = ACTIONS(2173), - [sym_false] = ACTIONS(2173), - [sym_null] = ACTIONS(2173), - [sym_undefined] = ACTIONS(2173), - [anon_sym_AT] = ACTIONS(2173), - [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_abstract] = ACTIONS(2173), - [anon_sym_interface] = ACTIONS(2173), - [anon_sym_enum] = ACTIONS(2173), - [sym__automatic_semicolon] = ACTIONS(2445), - [sym_html_comment] = ACTIONS(5), - }, - [1545] = { - [sym_comment] = STATE(1545), - [sym_identifier] = ACTIONS(3136), - [anon_sym_export] = ACTIONS(3136), - [anon_sym_default] = ACTIONS(3136), - [anon_sym_type] = ACTIONS(3136), - [anon_sym_namespace] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(3136), - [anon_sym_RBRACE] = ACTIONS(3136), - [anon_sym_typeof] = ACTIONS(3136), - [anon_sym_import] = ACTIONS(3136), - [anon_sym_with] = ACTIONS(3136), - [anon_sym_var] = ACTIONS(3136), - [anon_sym_let] = ACTIONS(3136), - [anon_sym_const] = ACTIONS(3136), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_if] = ACTIONS(3136), - [anon_sym_switch] = ACTIONS(3136), - [anon_sym_for] = ACTIONS(3136), - [anon_sym_LPAREN] = ACTIONS(3136), - [anon_sym_await] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_do] = ACTIONS(3136), - [anon_sym_try] = ACTIONS(3136), - [anon_sym_break] = ACTIONS(3136), - [anon_sym_continue] = ACTIONS(3136), - [anon_sym_debugger] = ACTIONS(3136), - [anon_sym_return] = ACTIONS(3136), - [anon_sym_throw] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3136), - [anon_sym_case] = ACTIONS(3136), - [anon_sym_yield] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_LTtemplate_GT] = ACTIONS(3136), - [anon_sym_DQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_async] = ACTIONS(3136), - [anon_sym_function] = ACTIONS(3136), - [anon_sym_new] = ACTIONS(3136), - [anon_sym_using] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_TILDE] = ACTIONS(3136), - [anon_sym_void] = ACTIONS(3136), - [anon_sym_delete] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3136), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3136), - [sym_private_property_identifier] = ACTIONS(3136), - [sym_this] = ACTIONS(3136), - [sym_super] = ACTIONS(3136), - [sym_true] = ACTIONS(3136), - [sym_false] = ACTIONS(3136), - [sym_null] = ACTIONS(3136), - [sym_undefined] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3136), - [anon_sym_static] = ACTIONS(3136), - [anon_sym_readonly] = ACTIONS(3136), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_declare] = ACTIONS(3136), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [anon_sym_override] = ACTIONS(3136), - [anon_sym_module] = ACTIONS(3136), - [anon_sym_any] = ACTIONS(3136), - [anon_sym_number] = ACTIONS(3136), - [anon_sym_boolean] = ACTIONS(3136), - [anon_sym_string] = ACTIONS(3136), - [anon_sym_symbol] = ACTIONS(3136), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_abstract] = ACTIONS(3136), - [anon_sym_interface] = ACTIONS(3136), - [anon_sym_enum] = ACTIONS(3136), - [sym_html_comment] = ACTIONS(5), - }, - [1546] = { - [sym_comment] = STATE(1546), - [ts_builtin_sym_end] = ACTIONS(2311), - [sym_identifier] = ACTIONS(2181), - [anon_sym_export] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_namespace] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2181), - [anon_sym_RBRACE] = ACTIONS(2181), - [anon_sym_typeof] = ACTIONS(2181), - [anon_sym_import] = ACTIONS(2181), - [anon_sym_with] = ACTIONS(2181), - [anon_sym_var] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_switch] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2181), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_do] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_debugger] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_throw] = ACTIONS(2181), - [anon_sym_SEMI] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2181), - [anon_sym_LTtemplate_GT] = ACTIONS(2181), - [anon_sym_DQUOTE] = ACTIONS(2181), - [anon_sym_SQUOTE] = ACTIONS(2181), - [anon_sym_class] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_function] = ACTIONS(2181), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_using] = ACTIONS(2181), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_SLASH] = ACTIONS(2181), - [anon_sym_LT] = ACTIONS(2181), - [anon_sym_TILDE] = ACTIONS(2181), - [anon_sym_void] = ACTIONS(2181), - [anon_sym_delete] = ACTIONS(2181), - [anon_sym_PLUS_PLUS] = ACTIONS(2181), - [anon_sym_DASH_DASH] = ACTIONS(2181), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2181), - [sym_number] = ACTIONS(2181), - [sym_private_property_identifier] = ACTIONS(2181), - [sym_this] = ACTIONS(2181), - [sym_super] = ACTIONS(2181), - [sym_true] = ACTIONS(2181), - [sym_false] = ACTIONS(2181), - [sym_null] = ACTIONS(2181), - [sym_undefined] = ACTIONS(2181), - [anon_sym_AT] = ACTIONS(2181), - [anon_sym_static] = ACTIONS(2181), - [anon_sym_readonly] = ACTIONS(2181), - [anon_sym_get] = ACTIONS(2181), - [anon_sym_set] = ACTIONS(2181), - [anon_sym_declare] = ACTIONS(2181), - [anon_sym_public] = ACTIONS(2181), - [anon_sym_private] = ACTIONS(2181), - [anon_sym_protected] = ACTIONS(2181), - [anon_sym_override] = ACTIONS(2181), - [anon_sym_module] = ACTIONS(2181), - [anon_sym_any] = ACTIONS(2181), - [anon_sym_number] = ACTIONS(2181), - [anon_sym_boolean] = ACTIONS(2181), - [anon_sym_string] = ACTIONS(2181), - [anon_sym_symbol] = ACTIONS(2181), - [anon_sym_object] = ACTIONS(2181), - [anon_sym_abstract] = ACTIONS(2181), - [anon_sym_interface] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [sym__automatic_semicolon] = ACTIONS(2437), - [sym_html_comment] = ACTIONS(5), - }, - [1547] = { - [sym_comment] = STATE(1547), - [ts_builtin_sym_end] = ACTIONS(3580), - [sym_identifier] = ACTIONS(3144), - [anon_sym_export] = ACTIONS(3144), - [anon_sym_type] = ACTIONS(3144), - [anon_sym_namespace] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3144), - [anon_sym_typeof] = ACTIONS(3144), - [anon_sym_import] = ACTIONS(3144), - [anon_sym_with] = ACTIONS(3144), - [anon_sym_var] = ACTIONS(3144), - [anon_sym_let] = ACTIONS(3144), - [anon_sym_const] = ACTIONS(3144), - [anon_sym_BANG] = ACTIONS(3144), - [anon_sym_else] = ACTIONS(3144), - [anon_sym_if] = ACTIONS(3144), - [anon_sym_switch] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3144), - [anon_sym_await] = ACTIONS(3144), - [anon_sym_while] = ACTIONS(3144), - [anon_sym_do] = ACTIONS(3144), - [anon_sym_try] = ACTIONS(3144), - [anon_sym_break] = ACTIONS(3144), - [anon_sym_continue] = ACTIONS(3144), - [anon_sym_debugger] = ACTIONS(3144), - [anon_sym_return] = ACTIONS(3144), - [anon_sym_throw] = ACTIONS(3144), - [anon_sym_SEMI] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3144), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_LTtemplate_GT] = ACTIONS(3144), - [anon_sym_DQUOTE] = ACTIONS(3144), - [anon_sym_SQUOTE] = ACTIONS(3144), - [anon_sym_class] = ACTIONS(3144), - [anon_sym_async] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3144), - [anon_sym_using] = ACTIONS(3144), - [anon_sym_PLUS] = ACTIONS(3144), - [anon_sym_DASH] = ACTIONS(3144), - [anon_sym_SLASH] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_TILDE] = ACTIONS(3144), - [anon_sym_void] = ACTIONS(3144), - [anon_sym_delete] = ACTIONS(3144), - [anon_sym_PLUS_PLUS] = ACTIONS(3144), - [anon_sym_DASH_DASH] = ACTIONS(3144), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3144), - [sym_number] = ACTIONS(3144), - [sym_private_property_identifier] = ACTIONS(3144), - [sym_this] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_true] = ACTIONS(3144), - [sym_false] = ACTIONS(3144), - [sym_null] = ACTIONS(3144), - [sym_undefined] = ACTIONS(3144), - [anon_sym_AT] = ACTIONS(3144), - [anon_sym_static] = ACTIONS(3144), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_get] = ACTIONS(3144), - [anon_sym_set] = ACTIONS(3144), - [anon_sym_declare] = ACTIONS(3144), - [anon_sym_public] = ACTIONS(3144), - [anon_sym_private] = ACTIONS(3144), - [anon_sym_protected] = ACTIONS(3144), - [anon_sym_override] = ACTIONS(3144), - [anon_sym_module] = ACTIONS(3144), - [anon_sym_any] = ACTIONS(3144), - [anon_sym_number] = ACTIONS(3144), - [anon_sym_boolean] = ACTIONS(3144), - [anon_sym_string] = ACTIONS(3144), - [anon_sym_symbol] = ACTIONS(3144), - [anon_sym_object] = ACTIONS(3144), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_interface] = ACTIONS(3144), - [anon_sym_enum] = ACTIONS(3144), - [sym_html_comment] = ACTIONS(5), - }, - [1548] = { - [sym_comment] = STATE(1548), - [sym_identifier] = ACTIONS(3134), - [anon_sym_export] = ACTIONS(3134), - [anon_sym_default] = ACTIONS(3134), - [anon_sym_type] = ACTIONS(3134), - [anon_sym_namespace] = ACTIONS(3134), - [anon_sym_LBRACE] = ACTIONS(3134), - [anon_sym_RBRACE] = ACTIONS(3134), - [anon_sym_typeof] = ACTIONS(3134), - [anon_sym_import] = ACTIONS(3134), - [anon_sym_with] = ACTIONS(3134), - [anon_sym_var] = ACTIONS(3134), - [anon_sym_let] = ACTIONS(3134), - [anon_sym_const] = ACTIONS(3134), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_if] = ACTIONS(3134), - [anon_sym_switch] = ACTIONS(3134), - [anon_sym_for] = ACTIONS(3134), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_await] = ACTIONS(3134), - [anon_sym_while] = ACTIONS(3134), - [anon_sym_do] = ACTIONS(3134), - [anon_sym_try] = ACTIONS(3134), - [anon_sym_break] = ACTIONS(3134), - [anon_sym_continue] = ACTIONS(3134), - [anon_sym_debugger] = ACTIONS(3134), - [anon_sym_return] = ACTIONS(3134), - [anon_sym_throw] = ACTIONS(3134), - [anon_sym_SEMI] = ACTIONS(3134), - [anon_sym_case] = ACTIONS(3134), - [anon_sym_yield] = ACTIONS(3134), - [anon_sym_LBRACK] = ACTIONS(3134), - [anon_sym_LTtemplate_GT] = ACTIONS(3134), - [anon_sym_DQUOTE] = ACTIONS(3134), - [anon_sym_SQUOTE] = ACTIONS(3134), - [anon_sym_class] = ACTIONS(3134), - [anon_sym_async] = ACTIONS(3134), - [anon_sym_function] = ACTIONS(3134), - [anon_sym_new] = ACTIONS(3134), - [anon_sym_using] = ACTIONS(3134), - [anon_sym_PLUS] = ACTIONS(3134), - [anon_sym_DASH] = ACTIONS(3134), - [anon_sym_SLASH] = ACTIONS(3134), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_TILDE] = ACTIONS(3134), - [anon_sym_void] = ACTIONS(3134), - [anon_sym_delete] = ACTIONS(3134), - [anon_sym_PLUS_PLUS] = ACTIONS(3134), - [anon_sym_DASH_DASH] = ACTIONS(3134), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3134), - [sym_number] = ACTIONS(3134), - [sym_private_property_identifier] = ACTIONS(3134), - [sym_this] = ACTIONS(3134), - [sym_super] = ACTIONS(3134), - [sym_true] = ACTIONS(3134), - [sym_false] = ACTIONS(3134), - [sym_null] = ACTIONS(3134), - [sym_undefined] = ACTIONS(3134), - [anon_sym_AT] = ACTIONS(3134), - [anon_sym_static] = ACTIONS(3134), - [anon_sym_readonly] = ACTIONS(3134), - [anon_sym_get] = ACTIONS(3134), - [anon_sym_set] = ACTIONS(3134), - [anon_sym_declare] = ACTIONS(3134), - [anon_sym_public] = ACTIONS(3134), - [anon_sym_private] = ACTIONS(3134), - [anon_sym_protected] = ACTIONS(3134), - [anon_sym_override] = ACTIONS(3134), - [anon_sym_module] = ACTIONS(3134), - [anon_sym_any] = ACTIONS(3134), - [anon_sym_number] = ACTIONS(3134), - [anon_sym_boolean] = ACTIONS(3134), - [anon_sym_string] = ACTIONS(3134), - [anon_sym_symbol] = ACTIONS(3134), - [anon_sym_object] = ACTIONS(3134), - [anon_sym_abstract] = ACTIONS(3134), - [anon_sym_interface] = ACTIONS(3134), - [anon_sym_enum] = ACTIONS(3134), - [sym_html_comment] = ACTIONS(5), - }, - [1549] = { - [sym_comment] = STATE(1549), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3128), - [anon_sym_RBRACE] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3128), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3128), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LTtemplate_GT] = ACTIONS(3128), - [anon_sym_DQUOTE] = ACTIONS(3128), - [anon_sym_SQUOTE] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_using] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3128), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3128), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3128), - [sym_number] = ACTIONS(3128), - [sym_private_property_identifier] = ACTIONS(3128), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3128), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_override] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), - [sym_html_comment] = ACTIONS(5), - }, - [1550] = { - [sym_comment] = STATE(1550), - [sym_identifier] = ACTIONS(3156), - [anon_sym_export] = ACTIONS(3156), - [anon_sym_default] = ACTIONS(3156), - [anon_sym_type] = ACTIONS(3156), - [anon_sym_namespace] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3156), - [anon_sym_typeof] = ACTIONS(3156), - [anon_sym_import] = ACTIONS(3156), - [anon_sym_with] = ACTIONS(3156), - [anon_sym_var] = ACTIONS(3156), - [anon_sym_let] = ACTIONS(3156), - [anon_sym_const] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_switch] = ACTIONS(3156), - [anon_sym_for] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_await] = ACTIONS(3156), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_do] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_debugger] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_SEMI] = ACTIONS(3156), - [anon_sym_case] = ACTIONS(3156), - [anon_sym_yield] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3156), - [anon_sym_LTtemplate_GT] = ACTIONS(3156), - [anon_sym_DQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_class] = ACTIONS(3156), - [anon_sym_async] = ACTIONS(3156), - [anon_sym_function] = ACTIONS(3156), - [anon_sym_new] = ACTIONS(3156), - [anon_sym_using] = ACTIONS(3156), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_SLASH] = ACTIONS(3156), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3156), - [anon_sym_void] = ACTIONS(3156), - [anon_sym_delete] = ACTIONS(3156), - [anon_sym_PLUS_PLUS] = ACTIONS(3156), - [anon_sym_DASH_DASH] = ACTIONS(3156), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3156), - [sym_number] = ACTIONS(3156), - [sym_private_property_identifier] = ACTIONS(3156), - [sym_this] = ACTIONS(3156), - [sym_super] = ACTIONS(3156), - [sym_true] = ACTIONS(3156), - [sym_false] = ACTIONS(3156), - [sym_null] = ACTIONS(3156), - [sym_undefined] = ACTIONS(3156), - [anon_sym_AT] = ACTIONS(3156), - [anon_sym_static] = ACTIONS(3156), - [anon_sym_readonly] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(3156), - [anon_sym_set] = ACTIONS(3156), - [anon_sym_declare] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_module] = ACTIONS(3156), - [anon_sym_any] = ACTIONS(3156), - [anon_sym_number] = ACTIONS(3156), - [anon_sym_boolean] = ACTIONS(3156), - [anon_sym_string] = ACTIONS(3156), - [anon_sym_symbol] = ACTIONS(3156), - [anon_sym_object] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_interface] = ACTIONS(3156), - [anon_sym_enum] = ACTIONS(3156), - [sym_html_comment] = ACTIONS(5), - }, - [1551] = { - [sym_comment] = STATE(1551), - [ts_builtin_sym_end] = ACTIONS(3582), - [sym_identifier] = ACTIONS(3142), - [anon_sym_export] = ACTIONS(3142), - [anon_sym_type] = ACTIONS(3142), - [anon_sym_namespace] = ACTIONS(3142), - [anon_sym_LBRACE] = ACTIONS(3142), - [anon_sym_RBRACE] = ACTIONS(3142), - [anon_sym_typeof] = ACTIONS(3142), - [anon_sym_import] = ACTIONS(3142), - [anon_sym_with] = ACTIONS(3142), - [anon_sym_var] = ACTIONS(3142), - [anon_sym_let] = ACTIONS(3142), - [anon_sym_const] = ACTIONS(3142), - [anon_sym_BANG] = ACTIONS(3142), - [anon_sym_else] = ACTIONS(3142), - [anon_sym_if] = ACTIONS(3142), - [anon_sym_switch] = ACTIONS(3142), - [anon_sym_for] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3142), - [anon_sym_await] = ACTIONS(3142), - [anon_sym_while] = ACTIONS(3142), - [anon_sym_do] = ACTIONS(3142), - [anon_sym_try] = ACTIONS(3142), - [anon_sym_break] = ACTIONS(3142), - [anon_sym_continue] = ACTIONS(3142), - [anon_sym_debugger] = ACTIONS(3142), - [anon_sym_return] = ACTIONS(3142), - [anon_sym_throw] = ACTIONS(3142), - [anon_sym_SEMI] = ACTIONS(3142), - [anon_sym_yield] = ACTIONS(3142), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_LTtemplate_GT] = ACTIONS(3142), - [anon_sym_DQUOTE] = ACTIONS(3142), - [anon_sym_SQUOTE] = ACTIONS(3142), - [anon_sym_class] = ACTIONS(3142), - [anon_sym_async] = ACTIONS(3142), - [anon_sym_function] = ACTIONS(3142), - [anon_sym_new] = ACTIONS(3142), - [anon_sym_using] = ACTIONS(3142), - [anon_sym_PLUS] = ACTIONS(3142), - [anon_sym_DASH] = ACTIONS(3142), - [anon_sym_SLASH] = ACTIONS(3142), - [anon_sym_LT] = ACTIONS(3142), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_void] = ACTIONS(3142), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3142), - [sym_number] = ACTIONS(3142), - [sym_private_property_identifier] = ACTIONS(3142), - [sym_this] = ACTIONS(3142), - [sym_super] = ACTIONS(3142), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_AT] = ACTIONS(3142), - [anon_sym_static] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3142), - [anon_sym_get] = ACTIONS(3142), - [anon_sym_set] = ACTIONS(3142), - [anon_sym_declare] = ACTIONS(3142), - [anon_sym_public] = ACTIONS(3142), - [anon_sym_private] = ACTIONS(3142), - [anon_sym_protected] = ACTIONS(3142), - [anon_sym_override] = ACTIONS(3142), - [anon_sym_module] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3142), - [anon_sym_number] = ACTIONS(3142), - [anon_sym_boolean] = ACTIONS(3142), - [anon_sym_string] = ACTIONS(3142), - [anon_sym_symbol] = ACTIONS(3142), - [anon_sym_object] = ACTIONS(3142), - [anon_sym_abstract] = ACTIONS(3142), - [anon_sym_interface] = ACTIONS(3142), - [anon_sym_enum] = ACTIONS(3142), - [sym_html_comment] = ACTIONS(5), - }, - [1552] = { - [sym_comment] = STATE(1552), - [sym_identifier] = ACTIONS(3222), - [anon_sym_export] = ACTIONS(3222), - [anon_sym_default] = ACTIONS(3222), - [anon_sym_type] = ACTIONS(3222), - [anon_sym_namespace] = ACTIONS(3222), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3222), - [anon_sym_import] = ACTIONS(3222), - [anon_sym_with] = ACTIONS(3222), - [anon_sym_var] = ACTIONS(3222), - [anon_sym_let] = ACTIONS(3222), - [anon_sym_const] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_switch] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(3222), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3222), - [anon_sym_while] = ACTIONS(3222), - [anon_sym_do] = ACTIONS(3222), - [anon_sym_try] = ACTIONS(3222), - [anon_sym_break] = ACTIONS(3222), - [anon_sym_continue] = ACTIONS(3222), - [anon_sym_debugger] = ACTIONS(3222), - [anon_sym_return] = ACTIONS(3222), - [anon_sym_throw] = ACTIONS(3222), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3222), - [anon_sym_yield] = ACTIONS(3222), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LTtemplate_GT] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [anon_sym_class] = ACTIONS(3222), - [anon_sym_async] = ACTIONS(3222), - [anon_sym_function] = ACTIONS(3222), - [anon_sym_new] = ACTIONS(3222), - [anon_sym_using] = ACTIONS(3222), - [anon_sym_PLUS] = ACTIONS(3222), - [anon_sym_DASH] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3222), - [anon_sym_delete] = ACTIONS(3222), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_private_property_identifier] = ACTIONS(3222), - [sym_this] = ACTIONS(3222), - [sym_super] = ACTIONS(3222), - [sym_true] = ACTIONS(3222), - [sym_false] = ACTIONS(3222), - [sym_null] = ACTIONS(3222), - [sym_undefined] = ACTIONS(3222), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3222), - [anon_sym_readonly] = ACTIONS(3222), - [anon_sym_get] = ACTIONS(3222), - [anon_sym_set] = ACTIONS(3222), - [anon_sym_declare] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3222), - [anon_sym_private] = ACTIONS(3222), - [anon_sym_protected] = ACTIONS(3222), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_module] = ACTIONS(3222), - [anon_sym_any] = ACTIONS(3222), - [anon_sym_number] = ACTIONS(3222), - [anon_sym_boolean] = ACTIONS(3222), - [anon_sym_string] = ACTIONS(3222), - [anon_sym_symbol] = ACTIONS(3222), - [anon_sym_object] = ACTIONS(3222), - [anon_sym_abstract] = ACTIONS(3222), - [anon_sym_interface] = ACTIONS(3222), - [anon_sym_enum] = ACTIONS(3222), - [sym_html_comment] = ACTIONS(5), - }, - [1553] = { - [sym_comment] = STATE(1553), - [sym_identifier] = ACTIONS(3218), - [anon_sym_export] = ACTIONS(3218), - [anon_sym_default] = ACTIONS(3218), - [anon_sym_type] = ACTIONS(3218), - [anon_sym_namespace] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(3218), - [anon_sym_RBRACE] = ACTIONS(3218), - [anon_sym_typeof] = ACTIONS(3218), - [anon_sym_import] = ACTIONS(3218), - [anon_sym_with] = ACTIONS(3218), - [anon_sym_var] = ACTIONS(3218), - [anon_sym_let] = ACTIONS(3218), - [anon_sym_const] = ACTIONS(3218), - [anon_sym_BANG] = ACTIONS(3218), - [anon_sym_if] = ACTIONS(3218), - [anon_sym_switch] = ACTIONS(3218), - [anon_sym_for] = ACTIONS(3218), - [anon_sym_LPAREN] = ACTIONS(3218), - [anon_sym_await] = ACTIONS(3218), - [anon_sym_while] = ACTIONS(3218), - [anon_sym_do] = ACTIONS(3218), - [anon_sym_try] = ACTIONS(3218), - [anon_sym_break] = ACTIONS(3218), - [anon_sym_continue] = ACTIONS(3218), - [anon_sym_debugger] = ACTIONS(3218), - [anon_sym_return] = ACTIONS(3218), - [anon_sym_throw] = ACTIONS(3218), - [anon_sym_SEMI] = ACTIONS(3218), - [anon_sym_case] = ACTIONS(3218), - [anon_sym_yield] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_LTtemplate_GT] = ACTIONS(3218), - [anon_sym_DQUOTE] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3218), - [anon_sym_class] = ACTIONS(3218), - [anon_sym_async] = ACTIONS(3218), - [anon_sym_function] = ACTIONS(3218), - [anon_sym_new] = ACTIONS(3218), - [anon_sym_using] = ACTIONS(3218), - [anon_sym_PLUS] = ACTIONS(3218), - [anon_sym_DASH] = ACTIONS(3218), - [anon_sym_SLASH] = ACTIONS(3218), - [anon_sym_LT] = ACTIONS(3218), - [anon_sym_TILDE] = ACTIONS(3218), - [anon_sym_void] = ACTIONS(3218), - [anon_sym_delete] = ACTIONS(3218), - [anon_sym_PLUS_PLUS] = ACTIONS(3218), - [anon_sym_DASH_DASH] = ACTIONS(3218), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3218), - [sym_number] = ACTIONS(3218), - [sym_private_property_identifier] = ACTIONS(3218), - [sym_this] = ACTIONS(3218), - [sym_super] = ACTIONS(3218), - [sym_true] = ACTIONS(3218), - [sym_false] = ACTIONS(3218), - [sym_null] = ACTIONS(3218), - [sym_undefined] = ACTIONS(3218), - [anon_sym_AT] = ACTIONS(3218), - [anon_sym_static] = ACTIONS(3218), - [anon_sym_readonly] = ACTIONS(3218), - [anon_sym_get] = ACTIONS(3218), - [anon_sym_set] = ACTIONS(3218), - [anon_sym_declare] = ACTIONS(3218), - [anon_sym_public] = ACTIONS(3218), - [anon_sym_private] = ACTIONS(3218), - [anon_sym_protected] = ACTIONS(3218), - [anon_sym_override] = ACTIONS(3218), - [anon_sym_module] = ACTIONS(3218), - [anon_sym_any] = ACTIONS(3218), - [anon_sym_number] = ACTIONS(3218), - [anon_sym_boolean] = ACTIONS(3218), - [anon_sym_string] = ACTIONS(3218), - [anon_sym_symbol] = ACTIONS(3218), - [anon_sym_object] = ACTIONS(3218), - [anon_sym_abstract] = ACTIONS(3218), - [anon_sym_interface] = ACTIONS(3218), - [anon_sym_enum] = ACTIONS(3218), - [sym_html_comment] = ACTIONS(5), - }, - [1554] = { - [sym_comment] = STATE(1554), - [sym_identifier] = ACTIONS(3214), - [anon_sym_export] = ACTIONS(3214), - [anon_sym_default] = ACTIONS(3214), - [anon_sym_type] = ACTIONS(3214), - [anon_sym_namespace] = ACTIONS(3214), - [anon_sym_LBRACE] = ACTIONS(3214), - [anon_sym_RBRACE] = ACTIONS(3214), - [anon_sym_typeof] = ACTIONS(3214), - [anon_sym_import] = ACTIONS(3214), - [anon_sym_with] = ACTIONS(3214), - [anon_sym_var] = ACTIONS(3214), - [anon_sym_let] = ACTIONS(3214), - [anon_sym_const] = ACTIONS(3214), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_if] = ACTIONS(3214), - [anon_sym_switch] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3214), - [anon_sym_await] = ACTIONS(3214), - [anon_sym_while] = ACTIONS(3214), - [anon_sym_do] = ACTIONS(3214), - [anon_sym_try] = ACTIONS(3214), - [anon_sym_break] = ACTIONS(3214), - [anon_sym_continue] = ACTIONS(3214), - [anon_sym_debugger] = ACTIONS(3214), - [anon_sym_return] = ACTIONS(3214), - [anon_sym_throw] = ACTIONS(3214), - [anon_sym_SEMI] = ACTIONS(3214), - [anon_sym_case] = ACTIONS(3214), - [anon_sym_yield] = ACTIONS(3214), - [anon_sym_LBRACK] = ACTIONS(3214), - [anon_sym_LTtemplate_GT] = ACTIONS(3214), - [anon_sym_DQUOTE] = ACTIONS(3214), - [anon_sym_SQUOTE] = ACTIONS(3214), - [anon_sym_class] = ACTIONS(3214), - [anon_sym_async] = ACTIONS(3214), - [anon_sym_function] = ACTIONS(3214), - [anon_sym_new] = ACTIONS(3214), - [anon_sym_using] = ACTIONS(3214), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_SLASH] = ACTIONS(3214), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_void] = ACTIONS(3214), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_PLUS_PLUS] = ACTIONS(3214), - [anon_sym_DASH_DASH] = ACTIONS(3214), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3214), - [sym_number] = ACTIONS(3214), - [sym_private_property_identifier] = ACTIONS(3214), - [sym_this] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_true] = ACTIONS(3214), - [sym_false] = ACTIONS(3214), - [sym_null] = ACTIONS(3214), - [sym_undefined] = ACTIONS(3214), - [anon_sym_AT] = ACTIONS(3214), - [anon_sym_static] = ACTIONS(3214), - [anon_sym_readonly] = ACTIONS(3214), - [anon_sym_get] = ACTIONS(3214), - [anon_sym_set] = ACTIONS(3214), - [anon_sym_declare] = ACTIONS(3214), - [anon_sym_public] = ACTIONS(3214), - [anon_sym_private] = ACTIONS(3214), - [anon_sym_protected] = ACTIONS(3214), - [anon_sym_override] = ACTIONS(3214), - [anon_sym_module] = ACTIONS(3214), - [anon_sym_any] = ACTIONS(3214), - [anon_sym_number] = ACTIONS(3214), - [anon_sym_boolean] = ACTIONS(3214), - [anon_sym_string] = ACTIONS(3214), - [anon_sym_symbol] = ACTIONS(3214), - [anon_sym_object] = ACTIONS(3214), - [anon_sym_abstract] = ACTIONS(3214), - [anon_sym_interface] = ACTIONS(3214), - [anon_sym_enum] = ACTIONS(3214), - [sym_html_comment] = ACTIONS(5), - }, - [1555] = { - [sym_comment] = STATE(1555), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3212), - [anon_sym_RBRACE] = ACTIONS(3212), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3212), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3212), - [anon_sym_LTtemplate_GT] = ACTIONS(3212), - [anon_sym_DQUOTE] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_using] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3212), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3212), - [sym_number] = ACTIONS(3212), - [sym_private_property_identifier] = ACTIONS(3212), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3212), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), - [sym_html_comment] = ACTIONS(5), - }, - [1556] = { - [sym_comment] = STATE(1556), - [ts_builtin_sym_end] = ACTIONS(3546), - [sym_identifier] = ACTIONS(3182), - [anon_sym_export] = ACTIONS(3182), - [anon_sym_type] = ACTIONS(3182), - [anon_sym_namespace] = ACTIONS(3182), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3182), - [anon_sym_typeof] = ACTIONS(3182), - [anon_sym_import] = ACTIONS(3182), - [anon_sym_with] = ACTIONS(3182), - [anon_sym_var] = ACTIONS(3182), - [anon_sym_let] = ACTIONS(3182), - [anon_sym_const] = ACTIONS(3182), - [anon_sym_BANG] = ACTIONS(3182), - [anon_sym_if] = ACTIONS(3182), - [anon_sym_switch] = ACTIONS(3182), - [anon_sym_for] = ACTIONS(3182), - [anon_sym_LPAREN] = ACTIONS(3182), - [anon_sym_await] = ACTIONS(3182), - [anon_sym_while] = ACTIONS(3182), - [anon_sym_do] = ACTIONS(3182), - [anon_sym_try] = ACTIONS(3182), - [anon_sym_break] = ACTIONS(3182), - [anon_sym_continue] = ACTIONS(3182), - [anon_sym_debugger] = ACTIONS(3182), - [anon_sym_return] = ACTIONS(3182), - [anon_sym_throw] = ACTIONS(3182), - [anon_sym_SEMI] = ACTIONS(3182), - [anon_sym_yield] = ACTIONS(3182), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_LTtemplate_GT] = ACTIONS(3182), - [anon_sym_DQUOTE] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3182), - [anon_sym_class] = ACTIONS(3182), - [anon_sym_async] = ACTIONS(3182), - [anon_sym_function] = ACTIONS(3182), - [anon_sym_new] = ACTIONS(3182), - [anon_sym_using] = ACTIONS(3182), - [anon_sym_PLUS] = ACTIONS(3182), - [anon_sym_DASH] = ACTIONS(3182), - [anon_sym_SLASH] = ACTIONS(3182), - [anon_sym_LT] = ACTIONS(3182), - [anon_sym_TILDE] = ACTIONS(3182), - [anon_sym_void] = ACTIONS(3182), - [anon_sym_delete] = ACTIONS(3182), - [anon_sym_PLUS_PLUS] = ACTIONS(3182), - [anon_sym_DASH_DASH] = ACTIONS(3182), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3182), - [sym_number] = ACTIONS(3182), - [sym_private_property_identifier] = ACTIONS(3182), - [sym_this] = ACTIONS(3182), - [sym_super] = ACTIONS(3182), - [sym_true] = ACTIONS(3182), - [sym_false] = ACTIONS(3182), - [sym_null] = ACTIONS(3182), - [sym_undefined] = ACTIONS(3182), - [anon_sym_AT] = ACTIONS(3182), - [anon_sym_static] = ACTIONS(3182), - [anon_sym_readonly] = ACTIONS(3182), - [anon_sym_get] = ACTIONS(3182), - [anon_sym_set] = ACTIONS(3182), - [anon_sym_declare] = ACTIONS(3182), - [anon_sym_public] = ACTIONS(3182), - [anon_sym_private] = ACTIONS(3182), - [anon_sym_protected] = ACTIONS(3182), - [anon_sym_override] = ACTIONS(3182), - [anon_sym_module] = ACTIONS(3182), - [anon_sym_any] = ACTIONS(3182), - [anon_sym_number] = ACTIONS(3182), - [anon_sym_boolean] = ACTIONS(3182), - [anon_sym_string] = ACTIONS(3182), - [anon_sym_symbol] = ACTIONS(3182), - [anon_sym_object] = ACTIONS(3182), - [anon_sym_abstract] = ACTIONS(3182), - [anon_sym_interface] = ACTIONS(3182), - [anon_sym_enum] = ACTIONS(3182), - [sym_html_comment] = ACTIONS(5), - }, - [1557] = { - [sym_comment] = STATE(1557), - [ts_builtin_sym_end] = ACTIONS(3442), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3224), - [anon_sym_RBRACE] = ACTIONS(3224), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3224), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3224), - [anon_sym_LTtemplate_GT] = ACTIONS(3224), - [anon_sym_DQUOTE] = ACTIONS(3224), - [anon_sym_SQUOTE] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_using] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_LT] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3224), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3224), - [anon_sym_DASH_DASH] = ACTIONS(3224), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3224), - [sym_number] = ACTIONS(3224), - [sym_private_property_identifier] = ACTIONS(3224), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3224), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_override] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_object] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), - [sym_html_comment] = ACTIONS(5), - }, - [1558] = { - [sym_comment] = STATE(1558), - [ts_builtin_sym_end] = ACTIONS(3570), - [sym_identifier] = ACTIONS(3152), - [anon_sym_export] = ACTIONS(3152), - [anon_sym_type] = ACTIONS(3152), - [anon_sym_namespace] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(3152), - [anon_sym_RBRACE] = ACTIONS(3152), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(3152), - [anon_sym_with] = ACTIONS(3152), - [anon_sym_var] = ACTIONS(3152), - [anon_sym_let] = ACTIONS(3152), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [anon_sym_LPAREN] = ACTIONS(3152), - [anon_sym_await] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_debugger] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_throw] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3152), - [anon_sym_LTtemplate_GT] = ACTIONS(3152), - [anon_sym_DQUOTE] = ACTIONS(3152), - [anon_sym_SQUOTE] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_async] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_using] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_DASH] = ACTIONS(3152), - [anon_sym_SLASH] = ACTIONS(3152), - [anon_sym_LT] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3152), - [anon_sym_void] = ACTIONS(3152), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3152), - [anon_sym_DASH_DASH] = ACTIONS(3152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3152), - [sym_number] = ACTIONS(3152), - [sym_private_property_identifier] = ACTIONS(3152), - [sym_this] = ACTIONS(3152), - [sym_super] = ACTIONS(3152), - [sym_true] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [sym_undefined] = ACTIONS(3152), - [anon_sym_AT] = ACTIONS(3152), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_readonly] = ACTIONS(3152), - [anon_sym_get] = ACTIONS(3152), - [anon_sym_set] = ACTIONS(3152), - [anon_sym_declare] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_override] = ACTIONS(3152), - [anon_sym_module] = ACTIONS(3152), - [anon_sym_any] = ACTIONS(3152), - [anon_sym_number] = ACTIONS(3152), - [anon_sym_boolean] = ACTIONS(3152), - [anon_sym_string] = ACTIONS(3152), - [anon_sym_symbol] = ACTIONS(3152), - [anon_sym_object] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_interface] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), - [sym_html_comment] = ACTIONS(5), - }, - [1559] = { - [sym_comment] = STATE(1559), - [ts_builtin_sym_end] = ACTIONS(3574), - [sym_identifier] = ACTIONS(3150), - [anon_sym_export] = ACTIONS(3150), - [anon_sym_type] = ACTIONS(3150), - [anon_sym_namespace] = ACTIONS(3150), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3150), - [anon_sym_import] = ACTIONS(3150), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_var] = ACTIONS(3150), - [anon_sym_let] = ACTIONS(3150), - [anon_sym_const] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_if] = ACTIONS(3150), - [anon_sym_switch] = ACTIONS(3150), - [anon_sym_for] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3150), - [anon_sym_await] = ACTIONS(3150), - [anon_sym_while] = ACTIONS(3150), - [anon_sym_do] = ACTIONS(3150), - [anon_sym_try] = ACTIONS(3150), - [anon_sym_break] = ACTIONS(3150), - [anon_sym_continue] = ACTIONS(3150), - [anon_sym_debugger] = ACTIONS(3150), - [anon_sym_return] = ACTIONS(3150), - [anon_sym_throw] = ACTIONS(3150), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_yield] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_LTtemplate_GT] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3150), - [anon_sym_SQUOTE] = ACTIONS(3150), - [anon_sym_class] = ACTIONS(3150), - [anon_sym_async] = ACTIONS(3150), - [anon_sym_function] = ACTIONS(3150), - [anon_sym_new] = ACTIONS(3150), - [anon_sym_using] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_SLASH] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_void] = ACTIONS(3150), - [anon_sym_delete] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3150), - [sym_number] = ACTIONS(3150), - [sym_private_property_identifier] = ACTIONS(3150), - [sym_this] = ACTIONS(3150), - [sym_super] = ACTIONS(3150), - [sym_true] = ACTIONS(3150), - [sym_false] = ACTIONS(3150), - [sym_null] = ACTIONS(3150), - [sym_undefined] = ACTIONS(3150), - [anon_sym_AT] = ACTIONS(3150), - [anon_sym_static] = ACTIONS(3150), - [anon_sym_readonly] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3150), - [anon_sym_set] = ACTIONS(3150), - [anon_sym_declare] = ACTIONS(3150), - [anon_sym_public] = ACTIONS(3150), - [anon_sym_private] = ACTIONS(3150), - [anon_sym_protected] = ACTIONS(3150), - [anon_sym_override] = ACTIONS(3150), - [anon_sym_module] = ACTIONS(3150), - [anon_sym_any] = ACTIONS(3150), - [anon_sym_number] = ACTIONS(3150), - [anon_sym_boolean] = ACTIONS(3150), - [anon_sym_string] = ACTIONS(3150), - [anon_sym_symbol] = ACTIONS(3150), - [anon_sym_object] = ACTIONS(3150), - [anon_sym_abstract] = ACTIONS(3150), - [anon_sym_interface] = ACTIONS(3150), - [anon_sym_enum] = ACTIONS(3150), - [sym_html_comment] = ACTIONS(5), - }, - [1560] = { - [sym_comment] = STATE(1560), - [ts_builtin_sym_end] = ACTIONS(3576), - [sym_identifier] = ACTIONS(3148), - [anon_sym_export] = ACTIONS(3148), - [anon_sym_type] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3148), - [anon_sym_RBRACE] = ACTIONS(3148), - [anon_sym_typeof] = ACTIONS(3148), - [anon_sym_import] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3148), - [anon_sym_var] = ACTIONS(3148), - [anon_sym_let] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3148), - [anon_sym_await] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_debugger] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_LTtemplate_GT] = ACTIONS(3148), - [anon_sym_DQUOTE] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_async] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_using] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_SLASH] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_void] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_PLUS_PLUS] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3148), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3148), - [sym_number] = ACTIONS(3148), - [sym_private_property_identifier] = ACTIONS(3148), - [sym_this] = ACTIONS(3148), - [sym_super] = ACTIONS(3148), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [sym_null] = ACTIONS(3148), - [sym_undefined] = ACTIONS(3148), - [anon_sym_AT] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_readonly] = ACTIONS(3148), - [anon_sym_get] = ACTIONS(3148), - [anon_sym_set] = ACTIONS(3148), - [anon_sym_declare] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_override] = ACTIONS(3148), - [anon_sym_module] = ACTIONS(3148), - [anon_sym_any] = ACTIONS(3148), - [anon_sym_number] = ACTIONS(3148), - [anon_sym_boolean] = ACTIONS(3148), - [anon_sym_string] = ACTIONS(3148), - [anon_sym_symbol] = ACTIONS(3148), - [anon_sym_object] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_interface] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), - [sym_html_comment] = ACTIONS(5), - }, - [1561] = { - [sym_comment] = STATE(1561), - [ts_builtin_sym_end] = ACTIONS(3578), - [sym_identifier] = ACTIONS(3146), - [anon_sym_export] = ACTIONS(3146), - [anon_sym_type] = ACTIONS(3146), - [anon_sym_namespace] = ACTIONS(3146), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_RBRACE] = ACTIONS(3146), - [anon_sym_typeof] = ACTIONS(3146), - [anon_sym_import] = ACTIONS(3146), - [anon_sym_with] = ACTIONS(3146), - [anon_sym_var] = ACTIONS(3146), - [anon_sym_let] = ACTIONS(3146), - [anon_sym_const] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_if] = ACTIONS(3146), - [anon_sym_switch] = ACTIONS(3146), - [anon_sym_for] = ACTIONS(3146), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_await] = ACTIONS(3146), - [anon_sym_while] = ACTIONS(3146), - [anon_sym_do] = ACTIONS(3146), - [anon_sym_try] = ACTIONS(3146), - [anon_sym_break] = ACTIONS(3146), - [anon_sym_continue] = ACTIONS(3146), - [anon_sym_debugger] = ACTIONS(3146), - [anon_sym_return] = ACTIONS(3146), - [anon_sym_throw] = ACTIONS(3146), - [anon_sym_SEMI] = ACTIONS(3146), - [anon_sym_yield] = ACTIONS(3146), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LTtemplate_GT] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3146), - [anon_sym_class] = ACTIONS(3146), - [anon_sym_async] = ACTIONS(3146), - [anon_sym_function] = ACTIONS(3146), - [anon_sym_new] = ACTIONS(3146), - [anon_sym_using] = ACTIONS(3146), - [anon_sym_PLUS] = ACTIONS(3146), - [anon_sym_DASH] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(3146), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_void] = ACTIONS(3146), - [anon_sym_delete] = ACTIONS(3146), - [anon_sym_PLUS_PLUS] = ACTIONS(3146), - [anon_sym_DASH_DASH] = ACTIONS(3146), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3146), - [sym_number] = ACTIONS(3146), - [sym_private_property_identifier] = ACTIONS(3146), - [sym_this] = ACTIONS(3146), - [sym_super] = ACTIONS(3146), - [sym_true] = ACTIONS(3146), - [sym_false] = ACTIONS(3146), - [sym_null] = ACTIONS(3146), - [sym_undefined] = ACTIONS(3146), - [anon_sym_AT] = ACTIONS(3146), - [anon_sym_static] = ACTIONS(3146), - [anon_sym_readonly] = ACTIONS(3146), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_declare] = ACTIONS(3146), - [anon_sym_public] = ACTIONS(3146), - [anon_sym_private] = ACTIONS(3146), - [anon_sym_protected] = ACTIONS(3146), - [anon_sym_override] = ACTIONS(3146), - [anon_sym_module] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3146), - [anon_sym_number] = ACTIONS(3146), - [anon_sym_boolean] = ACTIONS(3146), - [anon_sym_string] = ACTIONS(3146), - [anon_sym_symbol] = ACTIONS(3146), - [anon_sym_object] = ACTIONS(3146), - [anon_sym_abstract] = ACTIONS(3146), - [anon_sym_interface] = ACTIONS(3146), - [anon_sym_enum] = ACTIONS(3146), - [sym_html_comment] = ACTIONS(5), - }, - [1562] = { - [sym_comment] = STATE(1562), - [ts_builtin_sym_end] = ACTIONS(3580), - [sym_identifier] = ACTIONS(3144), - [anon_sym_export] = ACTIONS(3144), - [anon_sym_type] = ACTIONS(3144), - [anon_sym_namespace] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3144), - [anon_sym_RBRACE] = ACTIONS(3144), - [anon_sym_typeof] = ACTIONS(3144), - [anon_sym_import] = ACTIONS(3144), - [anon_sym_with] = ACTIONS(3144), - [anon_sym_var] = ACTIONS(3144), - [anon_sym_let] = ACTIONS(3144), - [anon_sym_const] = ACTIONS(3144), - [anon_sym_BANG] = ACTIONS(3144), - [anon_sym_if] = ACTIONS(3144), - [anon_sym_switch] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3144), - [anon_sym_await] = ACTIONS(3144), - [anon_sym_while] = ACTIONS(3144), - [anon_sym_do] = ACTIONS(3144), - [anon_sym_try] = ACTIONS(3144), - [anon_sym_break] = ACTIONS(3144), - [anon_sym_continue] = ACTIONS(3144), - [anon_sym_debugger] = ACTIONS(3144), - [anon_sym_return] = ACTIONS(3144), - [anon_sym_throw] = ACTIONS(3144), - [anon_sym_SEMI] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3144), - [anon_sym_LBRACK] = ACTIONS(3144), - [anon_sym_LTtemplate_GT] = ACTIONS(3144), - [anon_sym_DQUOTE] = ACTIONS(3144), - [anon_sym_SQUOTE] = ACTIONS(3144), - [anon_sym_class] = ACTIONS(3144), - [anon_sym_async] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3144), - [anon_sym_using] = ACTIONS(3144), - [anon_sym_PLUS] = ACTIONS(3144), - [anon_sym_DASH] = ACTIONS(3144), - [anon_sym_SLASH] = ACTIONS(3144), - [anon_sym_LT] = ACTIONS(3144), - [anon_sym_TILDE] = ACTIONS(3144), - [anon_sym_void] = ACTIONS(3144), - [anon_sym_delete] = ACTIONS(3144), - [anon_sym_PLUS_PLUS] = ACTIONS(3144), - [anon_sym_DASH_DASH] = ACTIONS(3144), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3144), - [sym_number] = ACTIONS(3144), - [sym_private_property_identifier] = ACTIONS(3144), - [sym_this] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_true] = ACTIONS(3144), - [sym_false] = ACTIONS(3144), - [sym_null] = ACTIONS(3144), - [sym_undefined] = ACTIONS(3144), - [anon_sym_AT] = ACTIONS(3144), - [anon_sym_static] = ACTIONS(3144), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_get] = ACTIONS(3144), - [anon_sym_set] = ACTIONS(3144), - [anon_sym_declare] = ACTIONS(3144), - [anon_sym_public] = ACTIONS(3144), - [anon_sym_private] = ACTIONS(3144), - [anon_sym_protected] = ACTIONS(3144), - [anon_sym_override] = ACTIONS(3144), - [anon_sym_module] = ACTIONS(3144), - [anon_sym_any] = ACTIONS(3144), - [anon_sym_number] = ACTIONS(3144), - [anon_sym_boolean] = ACTIONS(3144), - [anon_sym_string] = ACTIONS(3144), - [anon_sym_symbol] = ACTIONS(3144), - [anon_sym_object] = ACTIONS(3144), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_interface] = ACTIONS(3144), - [anon_sym_enum] = ACTIONS(3144), - [sym_html_comment] = ACTIONS(5), - }, - [1563] = { - [sym_comment] = STATE(1563), - [ts_builtin_sym_end] = ACTIONS(3582), - [sym_identifier] = ACTIONS(3142), - [anon_sym_export] = ACTIONS(3142), - [anon_sym_type] = ACTIONS(3142), - [anon_sym_namespace] = ACTIONS(3142), - [anon_sym_LBRACE] = ACTIONS(3142), - [anon_sym_RBRACE] = ACTIONS(3142), - [anon_sym_typeof] = ACTIONS(3142), - [anon_sym_import] = ACTIONS(3142), - [anon_sym_with] = ACTIONS(3142), - [anon_sym_var] = ACTIONS(3142), - [anon_sym_let] = ACTIONS(3142), - [anon_sym_const] = ACTIONS(3142), - [anon_sym_BANG] = ACTIONS(3142), - [anon_sym_if] = ACTIONS(3142), - [anon_sym_switch] = ACTIONS(3142), - [anon_sym_for] = ACTIONS(3142), - [anon_sym_LPAREN] = ACTIONS(3142), - [anon_sym_await] = ACTIONS(3142), - [anon_sym_while] = ACTIONS(3142), - [anon_sym_do] = ACTIONS(3142), - [anon_sym_try] = ACTIONS(3142), - [anon_sym_break] = ACTIONS(3142), - [anon_sym_continue] = ACTIONS(3142), - [anon_sym_debugger] = ACTIONS(3142), - [anon_sym_return] = ACTIONS(3142), - [anon_sym_throw] = ACTIONS(3142), - [anon_sym_SEMI] = ACTIONS(3142), - [anon_sym_yield] = ACTIONS(3142), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_LTtemplate_GT] = ACTIONS(3142), - [anon_sym_DQUOTE] = ACTIONS(3142), - [anon_sym_SQUOTE] = ACTIONS(3142), - [anon_sym_class] = ACTIONS(3142), - [anon_sym_async] = ACTIONS(3142), - [anon_sym_function] = ACTIONS(3142), - [anon_sym_new] = ACTIONS(3142), - [anon_sym_using] = ACTIONS(3142), - [anon_sym_PLUS] = ACTIONS(3142), - [anon_sym_DASH] = ACTIONS(3142), - [anon_sym_SLASH] = ACTIONS(3142), - [anon_sym_LT] = ACTIONS(3142), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_void] = ACTIONS(3142), - [anon_sym_delete] = ACTIONS(3142), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3142), - [sym_number] = ACTIONS(3142), - [sym_private_property_identifier] = ACTIONS(3142), - [sym_this] = ACTIONS(3142), - [sym_super] = ACTIONS(3142), - [sym_true] = ACTIONS(3142), - [sym_false] = ACTIONS(3142), - [sym_null] = ACTIONS(3142), - [sym_undefined] = ACTIONS(3142), - [anon_sym_AT] = ACTIONS(3142), - [anon_sym_static] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3142), - [anon_sym_get] = ACTIONS(3142), - [anon_sym_set] = ACTIONS(3142), - [anon_sym_declare] = ACTIONS(3142), - [anon_sym_public] = ACTIONS(3142), - [anon_sym_private] = ACTIONS(3142), - [anon_sym_protected] = ACTIONS(3142), - [anon_sym_override] = ACTIONS(3142), - [anon_sym_module] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3142), - [anon_sym_number] = ACTIONS(3142), - [anon_sym_boolean] = ACTIONS(3142), - [anon_sym_string] = ACTIONS(3142), - [anon_sym_symbol] = ACTIONS(3142), - [anon_sym_object] = ACTIONS(3142), - [anon_sym_abstract] = ACTIONS(3142), - [anon_sym_interface] = ACTIONS(3142), - [anon_sym_enum] = ACTIONS(3142), - [sym_html_comment] = ACTIONS(5), - }, - [1564] = { - [sym_comment] = STATE(1564), - [ts_builtin_sym_end] = ACTIONS(3540), - [sym_identifier] = ACTIONS(3330), - [anon_sym_export] = ACTIONS(3330), - [anon_sym_type] = ACTIONS(3330), - [anon_sym_namespace] = ACTIONS(3330), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_typeof] = ACTIONS(3330), - [anon_sym_import] = ACTIONS(3330), - [anon_sym_with] = ACTIONS(3330), - [anon_sym_var] = ACTIONS(3330), - [anon_sym_let] = ACTIONS(3330), - [anon_sym_const] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_if] = ACTIONS(3330), - [anon_sym_switch] = ACTIONS(3330), - [anon_sym_for] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_await] = ACTIONS(3330), - [anon_sym_while] = ACTIONS(3330), - [anon_sym_do] = ACTIONS(3330), - [anon_sym_try] = ACTIONS(3330), - [anon_sym_break] = ACTIONS(3330), - [anon_sym_continue] = ACTIONS(3330), - [anon_sym_debugger] = ACTIONS(3330), - [anon_sym_return] = ACTIONS(3330), - [anon_sym_throw] = ACTIONS(3330), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym_yield] = ACTIONS(3330), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_LTtemplate_GT] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_class] = ACTIONS(3330), - [anon_sym_async] = ACTIONS(3330), - [anon_sym_function] = ACTIONS(3330), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_using] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_void] = ACTIONS(3330), - [anon_sym_delete] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3330), - [sym_number] = ACTIONS(3330), - [sym_private_property_identifier] = ACTIONS(3330), - [sym_this] = ACTIONS(3330), - [sym_super] = ACTIONS(3330), - [sym_true] = ACTIONS(3330), - [sym_false] = ACTIONS(3330), - [sym_null] = ACTIONS(3330), - [sym_undefined] = ACTIONS(3330), - [anon_sym_AT] = ACTIONS(3330), - [anon_sym_static] = ACTIONS(3330), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3330), - [anon_sym_set] = ACTIONS(3330), - [anon_sym_declare] = ACTIONS(3330), - [anon_sym_public] = ACTIONS(3330), - [anon_sym_private] = ACTIONS(3330), - [anon_sym_protected] = ACTIONS(3330), - [anon_sym_override] = ACTIONS(3330), - [anon_sym_module] = ACTIONS(3330), - [anon_sym_any] = ACTIONS(3330), - [anon_sym_number] = ACTIONS(3330), - [anon_sym_boolean] = ACTIONS(3330), - [anon_sym_string] = ACTIONS(3330), - [anon_sym_symbol] = ACTIONS(3330), - [anon_sym_object] = ACTIONS(3330), - [anon_sym_abstract] = ACTIONS(3330), - [anon_sym_interface] = ACTIONS(3330), - [anon_sym_enum] = ACTIONS(3330), - [sym_html_comment] = ACTIONS(5), - }, - [1565] = { - [sym_comment] = STATE(1565), - [ts_builtin_sym_end] = ACTIONS(3540), - [sym_identifier] = ACTIONS(3330), - [anon_sym_export] = ACTIONS(3330), - [anon_sym_type] = ACTIONS(3330), - [anon_sym_namespace] = ACTIONS(3330), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_typeof] = ACTIONS(3330), - [anon_sym_import] = ACTIONS(3330), - [anon_sym_with] = ACTIONS(3330), - [anon_sym_var] = ACTIONS(3330), - [anon_sym_let] = ACTIONS(3330), - [anon_sym_const] = ACTIONS(3330), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_if] = ACTIONS(3330), - [anon_sym_switch] = ACTIONS(3330), - [anon_sym_for] = ACTIONS(3330), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_await] = ACTIONS(3330), - [anon_sym_while] = ACTIONS(3330), - [anon_sym_do] = ACTIONS(3330), - [anon_sym_try] = ACTIONS(3330), - [anon_sym_break] = ACTIONS(3330), - [anon_sym_continue] = ACTIONS(3330), - [anon_sym_debugger] = ACTIONS(3330), - [anon_sym_return] = ACTIONS(3330), - [anon_sym_throw] = ACTIONS(3330), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym_yield] = ACTIONS(3330), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_LTtemplate_GT] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [anon_sym_class] = ACTIONS(3330), - [anon_sym_async] = ACTIONS(3330), - [anon_sym_function] = ACTIONS(3330), - [anon_sym_new] = ACTIONS(3330), - [anon_sym_using] = ACTIONS(3330), - [anon_sym_PLUS] = ACTIONS(3330), - [anon_sym_DASH] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3330), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_void] = ACTIONS(3330), - [anon_sym_delete] = ACTIONS(3330), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3330), - [sym_number] = ACTIONS(3330), - [sym_private_property_identifier] = ACTIONS(3330), - [sym_this] = ACTIONS(3330), - [sym_super] = ACTIONS(3330), - [sym_true] = ACTIONS(3330), - [sym_false] = ACTIONS(3330), - [sym_null] = ACTIONS(3330), - [sym_undefined] = ACTIONS(3330), - [anon_sym_AT] = ACTIONS(3330), - [anon_sym_static] = ACTIONS(3330), - [anon_sym_readonly] = ACTIONS(3330), - [anon_sym_get] = ACTIONS(3330), - [anon_sym_set] = ACTIONS(3330), - [anon_sym_declare] = ACTIONS(3330), - [anon_sym_public] = ACTIONS(3330), - [anon_sym_private] = ACTIONS(3330), - [anon_sym_protected] = ACTIONS(3330), - [anon_sym_override] = ACTIONS(3330), - [anon_sym_module] = ACTIONS(3330), - [anon_sym_any] = ACTIONS(3330), - [anon_sym_number] = ACTIONS(3330), - [anon_sym_boolean] = ACTIONS(3330), - [anon_sym_string] = ACTIONS(3330), - [anon_sym_symbol] = ACTIONS(3330), - [anon_sym_object] = ACTIONS(3330), - [anon_sym_abstract] = ACTIONS(3330), - [anon_sym_interface] = ACTIONS(3330), - [anon_sym_enum] = ACTIONS(3330), - [sym_html_comment] = ACTIONS(5), - }, - [1566] = { - [sym_comment] = STATE(1566), - [ts_builtin_sym_end] = ACTIONS(3428), - [sym_identifier] = ACTIONS(3262), - [anon_sym_export] = ACTIONS(3262), - [anon_sym_type] = ACTIONS(3262), - [anon_sym_namespace] = ACTIONS(3262), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_typeof] = ACTIONS(3262), - [anon_sym_import] = ACTIONS(3262), - [anon_sym_with] = ACTIONS(3262), - [anon_sym_var] = ACTIONS(3262), - [anon_sym_let] = ACTIONS(3262), - [anon_sym_const] = ACTIONS(3262), - [anon_sym_BANG] = ACTIONS(3262), - [anon_sym_if] = ACTIONS(3262), - [anon_sym_switch] = ACTIONS(3262), - [anon_sym_for] = ACTIONS(3262), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_await] = ACTIONS(3262), - [anon_sym_while] = ACTIONS(3262), - [anon_sym_do] = ACTIONS(3262), - [anon_sym_try] = ACTIONS(3262), - [anon_sym_break] = ACTIONS(3262), - [anon_sym_continue] = ACTIONS(3262), - [anon_sym_debugger] = ACTIONS(3262), - [anon_sym_return] = ACTIONS(3262), - [anon_sym_throw] = ACTIONS(3262), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_yield] = ACTIONS(3262), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_LTtemplate_GT] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_SQUOTE] = ACTIONS(3262), - [anon_sym_class] = ACTIONS(3262), - [anon_sym_async] = ACTIONS(3262), - [anon_sym_function] = ACTIONS(3262), - [anon_sym_new] = ACTIONS(3262), - [anon_sym_using] = ACTIONS(3262), - [anon_sym_PLUS] = ACTIONS(3262), - [anon_sym_DASH] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3262), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_void] = ACTIONS(3262), - [anon_sym_delete] = ACTIONS(3262), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3262), - [sym_number] = ACTIONS(3262), - [sym_private_property_identifier] = ACTIONS(3262), - [sym_this] = ACTIONS(3262), - [sym_super] = ACTIONS(3262), - [sym_true] = ACTIONS(3262), - [sym_false] = ACTIONS(3262), - [sym_null] = ACTIONS(3262), - [sym_undefined] = ACTIONS(3262), - [anon_sym_AT] = ACTIONS(3262), - [anon_sym_static] = ACTIONS(3262), - [anon_sym_readonly] = ACTIONS(3262), - [anon_sym_get] = ACTIONS(3262), - [anon_sym_set] = ACTIONS(3262), - [anon_sym_declare] = ACTIONS(3262), - [anon_sym_public] = ACTIONS(3262), - [anon_sym_private] = ACTIONS(3262), - [anon_sym_protected] = ACTIONS(3262), - [anon_sym_override] = ACTIONS(3262), - [anon_sym_module] = ACTIONS(3262), - [anon_sym_any] = ACTIONS(3262), - [anon_sym_number] = ACTIONS(3262), - [anon_sym_boolean] = ACTIONS(3262), - [anon_sym_string] = ACTIONS(3262), - [anon_sym_symbol] = ACTIONS(3262), - [anon_sym_object] = ACTIONS(3262), - [anon_sym_abstract] = ACTIONS(3262), - [anon_sym_interface] = ACTIONS(3262), - [anon_sym_enum] = ACTIONS(3262), - [sym_html_comment] = ACTIONS(5), - }, - [1567] = { - [sym_comment] = STATE(1567), - [ts_builtin_sym_end] = ACTIONS(3426), - [sym_identifier] = ACTIONS(3264), - [anon_sym_export] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_namespace] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3264), - [anon_sym_RBRACE] = ACTIONS(3264), - [anon_sym_typeof] = ACTIONS(3264), - [anon_sym_import] = ACTIONS(3264), - [anon_sym_with] = ACTIONS(3264), - [anon_sym_var] = ACTIONS(3264), - [anon_sym_let] = ACTIONS(3264), - [anon_sym_const] = ACTIONS(3264), - [anon_sym_BANG] = ACTIONS(3264), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_switch] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3264), - [anon_sym_await] = ACTIONS(3264), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_do] = ACTIONS(3264), - [anon_sym_try] = ACTIONS(3264), - [anon_sym_break] = ACTIONS(3264), - [anon_sym_continue] = ACTIONS(3264), - [anon_sym_debugger] = ACTIONS(3264), - [anon_sym_return] = ACTIONS(3264), - [anon_sym_throw] = ACTIONS(3264), - [anon_sym_SEMI] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3264), - [anon_sym_LTtemplate_GT] = ACTIONS(3264), - [anon_sym_DQUOTE] = ACTIONS(3264), - [anon_sym_SQUOTE] = ACTIONS(3264), - [anon_sym_class] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3264), - [anon_sym_new] = ACTIONS(3264), - [anon_sym_using] = ACTIONS(3264), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_SLASH] = ACTIONS(3264), - [anon_sym_LT] = ACTIONS(3264), - [anon_sym_TILDE] = ACTIONS(3264), - [anon_sym_void] = ACTIONS(3264), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_PLUS_PLUS] = ACTIONS(3264), - [anon_sym_DASH_DASH] = ACTIONS(3264), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3264), - [sym_number] = ACTIONS(3264), - [sym_private_property_identifier] = ACTIONS(3264), - [sym_this] = ACTIONS(3264), - [sym_super] = ACTIONS(3264), - [sym_true] = ACTIONS(3264), - [sym_false] = ACTIONS(3264), - [sym_null] = ACTIONS(3264), - [sym_undefined] = ACTIONS(3264), - [anon_sym_AT] = ACTIONS(3264), - [anon_sym_static] = ACTIONS(3264), - [anon_sym_readonly] = ACTIONS(3264), - [anon_sym_get] = ACTIONS(3264), - [anon_sym_set] = ACTIONS(3264), - [anon_sym_declare] = ACTIONS(3264), - [anon_sym_public] = ACTIONS(3264), - [anon_sym_private] = ACTIONS(3264), - [anon_sym_protected] = ACTIONS(3264), - [anon_sym_override] = ACTIONS(3264), - [anon_sym_module] = ACTIONS(3264), - [anon_sym_any] = ACTIONS(3264), - [anon_sym_number] = ACTIONS(3264), - [anon_sym_boolean] = ACTIONS(3264), - [anon_sym_string] = ACTIONS(3264), - [anon_sym_symbol] = ACTIONS(3264), - [anon_sym_object] = ACTIONS(3264), - [anon_sym_abstract] = ACTIONS(3264), - [anon_sym_interface] = ACTIONS(3264), - [anon_sym_enum] = ACTIONS(3264), - [sym_html_comment] = ACTIONS(5), - }, - [1568] = { - [sym_comment] = STATE(1568), - [ts_builtin_sym_end] = ACTIONS(3424), - [sym_identifier] = ACTIONS(3266), - [anon_sym_export] = ACTIONS(3266), - [anon_sym_type] = ACTIONS(3266), - [anon_sym_namespace] = ACTIONS(3266), - [anon_sym_LBRACE] = ACTIONS(3266), - [anon_sym_RBRACE] = ACTIONS(3266), - [anon_sym_typeof] = ACTIONS(3266), - [anon_sym_import] = ACTIONS(3266), - [anon_sym_with] = ACTIONS(3266), - [anon_sym_var] = ACTIONS(3266), - [anon_sym_let] = ACTIONS(3266), - [anon_sym_const] = ACTIONS(3266), - [anon_sym_BANG] = ACTIONS(3266), - [anon_sym_if] = ACTIONS(3266), - [anon_sym_switch] = ACTIONS(3266), - [anon_sym_for] = ACTIONS(3266), - [anon_sym_LPAREN] = ACTIONS(3266), - [anon_sym_await] = ACTIONS(3266), - [anon_sym_while] = ACTIONS(3266), - [anon_sym_do] = ACTIONS(3266), - [anon_sym_try] = ACTIONS(3266), - [anon_sym_break] = ACTIONS(3266), - [anon_sym_continue] = ACTIONS(3266), - [anon_sym_debugger] = ACTIONS(3266), - [anon_sym_return] = ACTIONS(3266), - [anon_sym_throw] = ACTIONS(3266), - [anon_sym_SEMI] = ACTIONS(3266), - [anon_sym_yield] = ACTIONS(3266), - [anon_sym_LBRACK] = ACTIONS(3266), - [anon_sym_LTtemplate_GT] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(3266), - [anon_sym_SQUOTE] = ACTIONS(3266), - [anon_sym_class] = ACTIONS(3266), - [anon_sym_async] = ACTIONS(3266), - [anon_sym_function] = ACTIONS(3266), - [anon_sym_new] = ACTIONS(3266), - [anon_sym_using] = ACTIONS(3266), - [anon_sym_PLUS] = ACTIONS(3266), - [anon_sym_DASH] = ACTIONS(3266), - [anon_sym_SLASH] = ACTIONS(3266), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_TILDE] = ACTIONS(3266), - [anon_sym_void] = ACTIONS(3266), - [anon_sym_delete] = ACTIONS(3266), - [anon_sym_PLUS_PLUS] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3266), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3266), - [sym_number] = ACTIONS(3266), - [sym_private_property_identifier] = ACTIONS(3266), - [sym_this] = ACTIONS(3266), - [sym_super] = ACTIONS(3266), - [sym_true] = ACTIONS(3266), - [sym_false] = ACTIONS(3266), - [sym_null] = ACTIONS(3266), - [sym_undefined] = ACTIONS(3266), - [anon_sym_AT] = ACTIONS(3266), - [anon_sym_static] = ACTIONS(3266), - [anon_sym_readonly] = ACTIONS(3266), - [anon_sym_get] = ACTIONS(3266), - [anon_sym_set] = ACTIONS(3266), - [anon_sym_declare] = ACTIONS(3266), - [anon_sym_public] = ACTIONS(3266), - [anon_sym_private] = ACTIONS(3266), - [anon_sym_protected] = ACTIONS(3266), - [anon_sym_override] = ACTIONS(3266), - [anon_sym_module] = ACTIONS(3266), - [anon_sym_any] = ACTIONS(3266), - [anon_sym_number] = ACTIONS(3266), - [anon_sym_boolean] = ACTIONS(3266), - [anon_sym_string] = ACTIONS(3266), - [anon_sym_symbol] = ACTIONS(3266), - [anon_sym_object] = ACTIONS(3266), - [anon_sym_abstract] = ACTIONS(3266), - [anon_sym_interface] = ACTIONS(3266), - [anon_sym_enum] = ACTIONS(3266), - [sym_html_comment] = ACTIONS(5), - }, - [1569] = { - [sym_comment] = STATE(1569), - [ts_builtin_sym_end] = ACTIONS(3496), - [sym_identifier] = ACTIONS(3230), - [anon_sym_export] = ACTIONS(3230), - [anon_sym_type] = ACTIONS(3230), - [anon_sym_namespace] = ACTIONS(3230), - [anon_sym_LBRACE] = ACTIONS(3230), - [anon_sym_RBRACE] = ACTIONS(3230), - [anon_sym_typeof] = ACTIONS(3230), - [anon_sym_import] = ACTIONS(3230), - [anon_sym_with] = ACTIONS(3230), - [anon_sym_var] = ACTIONS(3230), - [anon_sym_let] = ACTIONS(3230), - [anon_sym_const] = ACTIONS(3230), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_if] = ACTIONS(3230), - [anon_sym_switch] = ACTIONS(3230), - [anon_sym_for] = ACTIONS(3230), - [anon_sym_LPAREN] = ACTIONS(3230), - [anon_sym_await] = ACTIONS(3230), - [anon_sym_while] = ACTIONS(3230), - [anon_sym_do] = ACTIONS(3230), - [anon_sym_try] = ACTIONS(3230), - [anon_sym_break] = ACTIONS(3230), - [anon_sym_continue] = ACTIONS(3230), - [anon_sym_debugger] = ACTIONS(3230), - [anon_sym_return] = ACTIONS(3230), - [anon_sym_throw] = ACTIONS(3230), - [anon_sym_SEMI] = ACTIONS(3230), - [anon_sym_yield] = ACTIONS(3230), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_LTtemplate_GT] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3230), - [anon_sym_class] = ACTIONS(3230), - [anon_sym_async] = ACTIONS(3230), - [anon_sym_function] = ACTIONS(3230), - [anon_sym_new] = ACTIONS(3230), - [anon_sym_using] = ACTIONS(3230), - [anon_sym_PLUS] = ACTIONS(3230), - [anon_sym_DASH] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_TILDE] = ACTIONS(3230), - [anon_sym_void] = ACTIONS(3230), - [anon_sym_delete] = ACTIONS(3230), - [anon_sym_PLUS_PLUS] = ACTIONS(3230), - [anon_sym_DASH_DASH] = ACTIONS(3230), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3230), - [sym_number] = ACTIONS(3230), - [sym_private_property_identifier] = ACTIONS(3230), - [sym_this] = ACTIONS(3230), - [sym_super] = ACTIONS(3230), - [sym_true] = ACTIONS(3230), - [sym_false] = ACTIONS(3230), - [sym_null] = ACTIONS(3230), - [sym_undefined] = ACTIONS(3230), - [anon_sym_AT] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3230), - [anon_sym_readonly] = ACTIONS(3230), - [anon_sym_get] = ACTIONS(3230), - [anon_sym_set] = ACTIONS(3230), - [anon_sym_declare] = ACTIONS(3230), - [anon_sym_public] = ACTIONS(3230), - [anon_sym_private] = ACTIONS(3230), - [anon_sym_protected] = ACTIONS(3230), - [anon_sym_override] = ACTIONS(3230), - [anon_sym_module] = ACTIONS(3230), - [anon_sym_any] = ACTIONS(3230), - [anon_sym_number] = ACTIONS(3230), - [anon_sym_boolean] = ACTIONS(3230), - [anon_sym_string] = ACTIONS(3230), - [anon_sym_symbol] = ACTIONS(3230), - [anon_sym_object] = ACTIONS(3230), - [anon_sym_abstract] = ACTIONS(3230), - [anon_sym_interface] = ACTIONS(3230), - [anon_sym_enum] = ACTIONS(3230), - [sym_html_comment] = ACTIONS(5), - }, - [1570] = { - [sym_comment] = STATE(1570), - [ts_builtin_sym_end] = ACTIONS(3376), - [sym_identifier] = ACTIONS(3284), - [anon_sym_export] = ACTIONS(3284), - [anon_sym_type] = ACTIONS(3284), - [anon_sym_namespace] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3284), - [anon_sym_RBRACE] = ACTIONS(3284), - [anon_sym_typeof] = ACTIONS(3284), - [anon_sym_import] = ACTIONS(3284), - [anon_sym_with] = ACTIONS(3284), - [anon_sym_var] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_const] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_switch] = ACTIONS(3284), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_LPAREN] = ACTIONS(3284), - [anon_sym_await] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_debugger] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3284), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3284), - [anon_sym_LTtemplate_GT] = ACTIONS(3284), - [anon_sym_DQUOTE] = ACTIONS(3284), - [anon_sym_SQUOTE] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_async] = ACTIONS(3284), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_using] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_LT] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3284), - [anon_sym_void] = ACTIONS(3284), - [anon_sym_delete] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3284), - [anon_sym_DASH_DASH] = ACTIONS(3284), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3284), - [sym_number] = ACTIONS(3284), - [sym_private_property_identifier] = ACTIONS(3284), - [sym_this] = ACTIONS(3284), - [sym_super] = ACTIONS(3284), - [sym_true] = ACTIONS(3284), - [sym_false] = ACTIONS(3284), - [sym_null] = ACTIONS(3284), - [sym_undefined] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3284), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_readonly] = ACTIONS(3284), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_declare] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_override] = ACTIONS(3284), - [anon_sym_module] = ACTIONS(3284), - [anon_sym_any] = ACTIONS(3284), - [anon_sym_number] = ACTIONS(3284), - [anon_sym_boolean] = ACTIONS(3284), - [anon_sym_string] = ACTIONS(3284), - [anon_sym_symbol] = ACTIONS(3284), - [anon_sym_object] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_interface] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), - [sym_html_comment] = ACTIONS(5), - }, - [1571] = { - [sym_comment] = STATE(1571), - [ts_builtin_sym_end] = ACTIONS(2201), - [sym_identifier] = ACTIONS(2199), - [anon_sym_export] = ACTIONS(2199), - [anon_sym_type] = ACTIONS(2199), - [anon_sym_namespace] = ACTIONS(2199), - [anon_sym_LBRACE] = ACTIONS(2199), - [anon_sym_RBRACE] = ACTIONS(2199), - [anon_sym_typeof] = ACTIONS(2199), - [anon_sym_import] = ACTIONS(2199), - [anon_sym_with] = ACTIONS(2199), - [anon_sym_var] = ACTIONS(2199), - [anon_sym_let] = ACTIONS(2199), - [anon_sym_const] = ACTIONS(2199), - [anon_sym_BANG] = ACTIONS(2199), - [anon_sym_if] = ACTIONS(2199), - [anon_sym_switch] = ACTIONS(2199), - [anon_sym_for] = ACTIONS(2199), - [anon_sym_LPAREN] = ACTIONS(2199), - [anon_sym_await] = ACTIONS(2199), - [anon_sym_while] = ACTIONS(2199), - [anon_sym_do] = ACTIONS(2199), - [anon_sym_try] = ACTIONS(2199), - [anon_sym_break] = ACTIONS(2199), - [anon_sym_continue] = ACTIONS(2199), - [anon_sym_debugger] = ACTIONS(2199), - [anon_sym_return] = ACTIONS(2199), - [anon_sym_throw] = ACTIONS(2199), - [anon_sym_SEMI] = ACTIONS(2199), - [anon_sym_yield] = ACTIONS(2199), - [anon_sym_LBRACK] = ACTIONS(2199), - [anon_sym_LTtemplate_GT] = ACTIONS(2199), - [anon_sym_DQUOTE] = ACTIONS(2199), - [anon_sym_SQUOTE] = ACTIONS(2199), - [anon_sym_class] = ACTIONS(2199), - [anon_sym_async] = ACTIONS(2199), - [anon_sym_function] = ACTIONS(2199), - [anon_sym_new] = ACTIONS(2199), - [anon_sym_using] = ACTIONS(2199), - [anon_sym_PLUS] = ACTIONS(2199), - [anon_sym_DASH] = ACTIONS(2199), - [anon_sym_SLASH] = ACTIONS(2199), - [anon_sym_LT] = ACTIONS(2199), - [anon_sym_TILDE] = ACTIONS(2199), - [anon_sym_void] = ACTIONS(2199), - [anon_sym_delete] = ACTIONS(2199), - [anon_sym_PLUS_PLUS] = ACTIONS(2199), - [anon_sym_DASH_DASH] = ACTIONS(2199), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2199), - [sym_number] = ACTIONS(2199), - [sym_private_property_identifier] = ACTIONS(2199), - [sym_this] = ACTIONS(2199), - [sym_super] = ACTIONS(2199), - [sym_true] = ACTIONS(2199), - [sym_false] = ACTIONS(2199), - [sym_null] = ACTIONS(2199), - [sym_undefined] = ACTIONS(2199), - [anon_sym_AT] = ACTIONS(2199), - [anon_sym_static] = ACTIONS(2199), - [anon_sym_readonly] = ACTIONS(2199), - [anon_sym_get] = ACTIONS(2199), - [anon_sym_set] = ACTIONS(2199), - [anon_sym_declare] = ACTIONS(2199), - [anon_sym_public] = ACTIONS(2199), - [anon_sym_private] = ACTIONS(2199), - [anon_sym_protected] = ACTIONS(2199), - [anon_sym_override] = ACTIONS(2199), - [anon_sym_module] = ACTIONS(2199), - [anon_sym_any] = ACTIONS(2199), - [anon_sym_number] = ACTIONS(2199), - [anon_sym_boolean] = ACTIONS(2199), - [anon_sym_string] = ACTIONS(2199), - [anon_sym_symbol] = ACTIONS(2199), - [anon_sym_object] = ACTIONS(2199), - [anon_sym_abstract] = ACTIONS(2199), - [anon_sym_interface] = ACTIONS(2199), - [anon_sym_enum] = ACTIONS(2199), - [sym_html_comment] = ACTIONS(5), - }, - [1572] = { - [sym_comment] = STATE(1572), - [ts_builtin_sym_end] = ACTIONS(3584), - [sym_identifier] = ACTIONS(3372), - [anon_sym_export] = ACTIONS(3372), - [anon_sym_type] = ACTIONS(3372), - [anon_sym_namespace] = ACTIONS(3372), - [anon_sym_LBRACE] = ACTIONS(3372), - [anon_sym_RBRACE] = ACTIONS(3372), - [anon_sym_typeof] = ACTIONS(3372), - [anon_sym_import] = ACTIONS(3372), - [anon_sym_with] = ACTIONS(3372), - [anon_sym_var] = ACTIONS(3372), - [anon_sym_let] = ACTIONS(3372), - [anon_sym_const] = ACTIONS(3372), - [anon_sym_BANG] = ACTIONS(3372), - [anon_sym_if] = ACTIONS(3372), - [anon_sym_switch] = ACTIONS(3372), - [anon_sym_for] = ACTIONS(3372), - [anon_sym_LPAREN] = ACTIONS(3372), - [anon_sym_await] = ACTIONS(3372), - [anon_sym_while] = ACTIONS(3372), - [anon_sym_do] = ACTIONS(3372), - [anon_sym_try] = ACTIONS(3372), - [anon_sym_break] = ACTIONS(3372), - [anon_sym_continue] = ACTIONS(3372), - [anon_sym_debugger] = ACTIONS(3372), - [anon_sym_return] = ACTIONS(3372), - [anon_sym_throw] = ACTIONS(3372), - [anon_sym_SEMI] = ACTIONS(3372), - [anon_sym_yield] = ACTIONS(3372), - [anon_sym_LBRACK] = ACTIONS(3372), - [anon_sym_LTtemplate_GT] = ACTIONS(3372), - [anon_sym_DQUOTE] = ACTIONS(3372), - [anon_sym_SQUOTE] = ACTIONS(3372), - [anon_sym_class] = ACTIONS(3372), - [anon_sym_async] = ACTIONS(3372), - [anon_sym_function] = ACTIONS(3372), - [anon_sym_new] = ACTIONS(3372), - [anon_sym_using] = ACTIONS(3372), - [anon_sym_PLUS] = ACTIONS(3372), - [anon_sym_DASH] = ACTIONS(3372), - [anon_sym_SLASH] = ACTIONS(3372), - [anon_sym_LT] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(3372), - [anon_sym_void] = ACTIONS(3372), - [anon_sym_delete] = ACTIONS(3372), - [anon_sym_PLUS_PLUS] = ACTIONS(3372), - [anon_sym_DASH_DASH] = ACTIONS(3372), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3372), - [sym_number] = ACTIONS(3372), - [sym_private_property_identifier] = ACTIONS(3372), - [sym_this] = ACTIONS(3372), - [sym_super] = ACTIONS(3372), - [sym_true] = ACTIONS(3372), - [sym_false] = ACTIONS(3372), - [sym_null] = ACTIONS(3372), - [sym_undefined] = ACTIONS(3372), - [anon_sym_AT] = ACTIONS(3372), - [anon_sym_static] = ACTIONS(3372), - [anon_sym_readonly] = ACTIONS(3372), - [anon_sym_get] = ACTIONS(3372), - [anon_sym_set] = ACTIONS(3372), - [anon_sym_declare] = ACTIONS(3372), - [anon_sym_public] = ACTIONS(3372), - [anon_sym_private] = ACTIONS(3372), - [anon_sym_protected] = ACTIONS(3372), - [anon_sym_override] = ACTIONS(3372), - [anon_sym_module] = ACTIONS(3372), - [anon_sym_any] = ACTIONS(3372), - [anon_sym_number] = ACTIONS(3372), - [anon_sym_boolean] = ACTIONS(3372), - [anon_sym_string] = ACTIONS(3372), - [anon_sym_symbol] = ACTIONS(3372), - [anon_sym_object] = ACTIONS(3372), - [anon_sym_abstract] = ACTIONS(3372), - [anon_sym_interface] = ACTIONS(3372), - [anon_sym_enum] = ACTIONS(3372), - [sym_html_comment] = ACTIONS(5), - }, - [1573] = { - [sym_comment] = STATE(1573), - [ts_builtin_sym_end] = ACTIONS(2387), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym_html_comment] = ACTIONS(5), - }, - [1574] = { - [sym_comment] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(3378), - [sym_identifier] = ACTIONS(3282), - [anon_sym_export] = ACTIONS(3282), - [anon_sym_type] = ACTIONS(3282), - [anon_sym_namespace] = ACTIONS(3282), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_RBRACE] = ACTIONS(3282), - [anon_sym_typeof] = ACTIONS(3282), - [anon_sym_import] = ACTIONS(3282), - [anon_sym_with] = ACTIONS(3282), - [anon_sym_var] = ACTIONS(3282), - [anon_sym_let] = ACTIONS(3282), - [anon_sym_const] = ACTIONS(3282), - [anon_sym_BANG] = ACTIONS(3282), - [anon_sym_if] = ACTIONS(3282), - [anon_sym_switch] = ACTIONS(3282), - [anon_sym_for] = ACTIONS(3282), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_await] = ACTIONS(3282), - [anon_sym_while] = ACTIONS(3282), - [anon_sym_do] = ACTIONS(3282), - [anon_sym_try] = ACTIONS(3282), - [anon_sym_break] = ACTIONS(3282), - [anon_sym_continue] = ACTIONS(3282), - [anon_sym_debugger] = ACTIONS(3282), - [anon_sym_return] = ACTIONS(3282), - [anon_sym_throw] = ACTIONS(3282), - [anon_sym_SEMI] = ACTIONS(3282), - [anon_sym_yield] = ACTIONS(3282), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_LTtemplate_GT] = ACTIONS(3282), - [anon_sym_DQUOTE] = ACTIONS(3282), - [anon_sym_SQUOTE] = ACTIONS(3282), - [anon_sym_class] = ACTIONS(3282), - [anon_sym_async] = ACTIONS(3282), - [anon_sym_function] = ACTIONS(3282), - [anon_sym_new] = ACTIONS(3282), - [anon_sym_using] = ACTIONS(3282), - [anon_sym_PLUS] = ACTIONS(3282), - [anon_sym_DASH] = ACTIONS(3282), - [anon_sym_SLASH] = ACTIONS(3282), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_TILDE] = ACTIONS(3282), - [anon_sym_void] = ACTIONS(3282), - [anon_sym_delete] = ACTIONS(3282), - [anon_sym_PLUS_PLUS] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3282), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3282), - [sym_number] = ACTIONS(3282), - [sym_private_property_identifier] = ACTIONS(3282), - [sym_this] = ACTIONS(3282), - [sym_super] = ACTIONS(3282), - [sym_true] = ACTIONS(3282), - [sym_false] = ACTIONS(3282), - [sym_null] = ACTIONS(3282), - [sym_undefined] = ACTIONS(3282), - [anon_sym_AT] = ACTIONS(3282), - [anon_sym_static] = ACTIONS(3282), - [anon_sym_readonly] = ACTIONS(3282), - [anon_sym_get] = ACTIONS(3282), - [anon_sym_set] = ACTIONS(3282), - [anon_sym_declare] = ACTIONS(3282), - [anon_sym_public] = ACTIONS(3282), - [anon_sym_private] = ACTIONS(3282), - [anon_sym_protected] = ACTIONS(3282), - [anon_sym_override] = ACTIONS(3282), - [anon_sym_module] = ACTIONS(3282), - [anon_sym_any] = ACTIONS(3282), - [anon_sym_number] = ACTIONS(3282), - [anon_sym_boolean] = ACTIONS(3282), - [anon_sym_string] = ACTIONS(3282), - [anon_sym_symbol] = ACTIONS(3282), - [anon_sym_object] = ACTIONS(3282), - [anon_sym_abstract] = ACTIONS(3282), - [anon_sym_interface] = ACTIONS(3282), - [anon_sym_enum] = ACTIONS(3282), - [sym_html_comment] = ACTIONS(5), - }, - [1575] = { - [sym_comment] = STATE(1575), - [ts_builtin_sym_end] = ACTIONS(2387), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2167), - [anon_sym_RBRACE] = ACTIONS(2167), - [anon_sym_typeof] = ACTIONS(2167), - [anon_sym_import] = ACTIONS(2167), - [anon_sym_with] = ACTIONS(2167), - [anon_sym_var] = ACTIONS(2167), - [anon_sym_let] = ACTIONS(2167), - [anon_sym_const] = ACTIONS(2167), - [anon_sym_BANG] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2167), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_break] = ACTIONS(2167), - [anon_sym_continue] = ACTIONS(2167), - [anon_sym_debugger] = ACTIONS(2167), - [anon_sym_return] = ACTIONS(2167), - [anon_sym_throw] = ACTIONS(2167), - [anon_sym_SEMI] = ACTIONS(2167), - [anon_sym_yield] = ACTIONS(2167), - [anon_sym_LBRACK] = ACTIONS(2167), - [anon_sym_LTtemplate_GT] = ACTIONS(2167), - [anon_sym_DQUOTE] = ACTIONS(2167), - [anon_sym_SQUOTE] = ACTIONS(2167), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_using] = ACTIONS(2167), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_LT] = ACTIONS(2167), - [anon_sym_TILDE] = ACTIONS(2167), - [anon_sym_void] = ACTIONS(2167), - [anon_sym_delete] = ACTIONS(2167), - [anon_sym_PLUS_PLUS] = ACTIONS(2167), - [anon_sym_DASH_DASH] = ACTIONS(2167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2167), - [sym_number] = ACTIONS(2167), - [sym_private_property_identifier] = ACTIONS(2167), - [sym_this] = ACTIONS(2167), - [sym_super] = ACTIONS(2167), - [sym_true] = ACTIONS(2167), - [sym_false] = ACTIONS(2167), - [sym_null] = ACTIONS(2167), - [sym_undefined] = ACTIONS(2167), - [anon_sym_AT] = ACTIONS(2167), - [anon_sym_static] = ACTIONS(2167), - [anon_sym_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_override] = ACTIONS(2167), - [anon_sym_module] = ACTIONS(2167), - [anon_sym_any] = ACTIONS(2167), - [anon_sym_number] = ACTIONS(2167), - [anon_sym_boolean] = ACTIONS(2167), - [anon_sym_string] = ACTIONS(2167), - [anon_sym_symbol] = ACTIONS(2167), - [anon_sym_object] = ACTIONS(2167), - [anon_sym_abstract] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym_html_comment] = ACTIONS(5), - }, - [1576] = { - [sym_comment] = STATE(1576), - [ts_builtin_sym_end] = ACTIONS(3380), - [sym_identifier] = ACTIONS(3222), - [anon_sym_export] = ACTIONS(3222), - [anon_sym_type] = ACTIONS(3222), - [anon_sym_namespace] = ACTIONS(3222), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3222), - [anon_sym_import] = ACTIONS(3222), - [anon_sym_with] = ACTIONS(3222), - [anon_sym_var] = ACTIONS(3222), - [anon_sym_let] = ACTIONS(3222), - [anon_sym_const] = ACTIONS(3222), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_if] = ACTIONS(3222), - [anon_sym_switch] = ACTIONS(3222), - [anon_sym_for] = ACTIONS(3222), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3222), - [anon_sym_while] = ACTIONS(3222), - [anon_sym_do] = ACTIONS(3222), - [anon_sym_try] = ACTIONS(3222), - [anon_sym_break] = ACTIONS(3222), - [anon_sym_continue] = ACTIONS(3222), - [anon_sym_debugger] = ACTIONS(3222), - [anon_sym_return] = ACTIONS(3222), - [anon_sym_throw] = ACTIONS(3222), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_yield] = ACTIONS(3222), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LTtemplate_GT] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [anon_sym_class] = ACTIONS(3222), - [anon_sym_async] = ACTIONS(3222), - [anon_sym_function] = ACTIONS(3222), - [anon_sym_new] = ACTIONS(3222), - [anon_sym_using] = ACTIONS(3222), - [anon_sym_PLUS] = ACTIONS(3222), - [anon_sym_DASH] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3222), - [anon_sym_delete] = ACTIONS(3222), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_private_property_identifier] = ACTIONS(3222), - [sym_this] = ACTIONS(3222), - [sym_super] = ACTIONS(3222), - [sym_true] = ACTIONS(3222), - [sym_false] = ACTIONS(3222), - [sym_null] = ACTIONS(3222), - [sym_undefined] = ACTIONS(3222), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3222), - [anon_sym_readonly] = ACTIONS(3222), - [anon_sym_get] = ACTIONS(3222), - [anon_sym_set] = ACTIONS(3222), - [anon_sym_declare] = ACTIONS(3222), - [anon_sym_public] = ACTIONS(3222), - [anon_sym_private] = ACTIONS(3222), - [anon_sym_protected] = ACTIONS(3222), - [anon_sym_override] = ACTIONS(3222), - [anon_sym_module] = ACTIONS(3222), - [anon_sym_any] = ACTIONS(3222), - [anon_sym_number] = ACTIONS(3222), - [anon_sym_boolean] = ACTIONS(3222), - [anon_sym_string] = ACTIONS(3222), - [anon_sym_symbol] = ACTIONS(3222), - [anon_sym_object] = ACTIONS(3222), - [anon_sym_abstract] = ACTIONS(3222), - [anon_sym_interface] = ACTIONS(3222), - [anon_sym_enum] = ACTIONS(3222), - [sym_html_comment] = ACTIONS(5), - }, - [1577] = { - [sym_comment] = STATE(1577), - [ts_builtin_sym_end] = ACTIONS(3382), - [sym_identifier] = ACTIONS(3218), - [anon_sym_export] = ACTIONS(3218), - [anon_sym_type] = ACTIONS(3218), - [anon_sym_namespace] = ACTIONS(3218), - [anon_sym_LBRACE] = ACTIONS(3218), - [anon_sym_RBRACE] = ACTIONS(3218), - [anon_sym_typeof] = ACTIONS(3218), - [anon_sym_import] = ACTIONS(3218), - [anon_sym_with] = ACTIONS(3218), - [anon_sym_var] = ACTIONS(3218), - [anon_sym_let] = ACTIONS(3218), - [anon_sym_const] = ACTIONS(3218), - [anon_sym_BANG] = ACTIONS(3218), - [anon_sym_if] = ACTIONS(3218), - [anon_sym_switch] = ACTIONS(3218), - [anon_sym_for] = ACTIONS(3218), - [anon_sym_LPAREN] = ACTIONS(3218), - [anon_sym_await] = ACTIONS(3218), - [anon_sym_while] = ACTIONS(3218), - [anon_sym_do] = ACTIONS(3218), - [anon_sym_try] = ACTIONS(3218), - [anon_sym_break] = ACTIONS(3218), - [anon_sym_continue] = ACTIONS(3218), - [anon_sym_debugger] = ACTIONS(3218), - [anon_sym_return] = ACTIONS(3218), - [anon_sym_throw] = ACTIONS(3218), - [anon_sym_SEMI] = ACTIONS(3218), - [anon_sym_yield] = ACTIONS(3218), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_LTtemplate_GT] = ACTIONS(3218), - [anon_sym_DQUOTE] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3218), - [anon_sym_class] = ACTIONS(3218), - [anon_sym_async] = ACTIONS(3218), - [anon_sym_function] = ACTIONS(3218), - [anon_sym_new] = ACTIONS(3218), - [anon_sym_using] = ACTIONS(3218), - [anon_sym_PLUS] = ACTIONS(3218), - [anon_sym_DASH] = ACTIONS(3218), - [anon_sym_SLASH] = ACTIONS(3218), - [anon_sym_LT] = ACTIONS(3218), - [anon_sym_TILDE] = ACTIONS(3218), - [anon_sym_void] = ACTIONS(3218), - [anon_sym_delete] = ACTIONS(3218), - [anon_sym_PLUS_PLUS] = ACTIONS(3218), - [anon_sym_DASH_DASH] = ACTIONS(3218), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3218), - [sym_number] = ACTIONS(3218), - [sym_private_property_identifier] = ACTIONS(3218), - [sym_this] = ACTIONS(3218), - [sym_super] = ACTIONS(3218), - [sym_true] = ACTIONS(3218), - [sym_false] = ACTIONS(3218), - [sym_null] = ACTIONS(3218), - [sym_undefined] = ACTIONS(3218), - [anon_sym_AT] = ACTIONS(3218), - [anon_sym_static] = ACTIONS(3218), - [anon_sym_readonly] = ACTIONS(3218), - [anon_sym_get] = ACTIONS(3218), - [anon_sym_set] = ACTIONS(3218), - [anon_sym_declare] = ACTIONS(3218), - [anon_sym_public] = ACTIONS(3218), - [anon_sym_private] = ACTIONS(3218), - [anon_sym_protected] = ACTIONS(3218), - [anon_sym_override] = ACTIONS(3218), - [anon_sym_module] = ACTIONS(3218), - [anon_sym_any] = ACTIONS(3218), - [anon_sym_number] = ACTIONS(3218), - [anon_sym_boolean] = ACTIONS(3218), - [anon_sym_string] = ACTIONS(3218), - [anon_sym_symbol] = ACTIONS(3218), - [anon_sym_object] = ACTIONS(3218), - [anon_sym_abstract] = ACTIONS(3218), - [anon_sym_interface] = ACTIONS(3218), - [anon_sym_enum] = ACTIONS(3218), - [sym_html_comment] = ACTIONS(5), - }, - [1578] = { - [sym_comment] = STATE(1578), - [ts_builtin_sym_end] = ACTIONS(3384), - [sym_identifier] = ACTIONS(3214), - [anon_sym_export] = ACTIONS(3214), - [anon_sym_type] = ACTIONS(3214), - [anon_sym_namespace] = ACTIONS(3214), - [anon_sym_LBRACE] = ACTIONS(3214), - [anon_sym_RBRACE] = ACTIONS(3214), - [anon_sym_typeof] = ACTIONS(3214), - [anon_sym_import] = ACTIONS(3214), - [anon_sym_with] = ACTIONS(3214), - [anon_sym_var] = ACTIONS(3214), - [anon_sym_let] = ACTIONS(3214), - [anon_sym_const] = ACTIONS(3214), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_if] = ACTIONS(3214), - [anon_sym_switch] = ACTIONS(3214), - [anon_sym_for] = ACTIONS(3214), - [anon_sym_LPAREN] = ACTIONS(3214), - [anon_sym_await] = ACTIONS(3214), - [anon_sym_while] = ACTIONS(3214), - [anon_sym_do] = ACTIONS(3214), - [anon_sym_try] = ACTIONS(3214), - [anon_sym_break] = ACTIONS(3214), - [anon_sym_continue] = ACTIONS(3214), - [anon_sym_debugger] = ACTIONS(3214), - [anon_sym_return] = ACTIONS(3214), - [anon_sym_throw] = ACTIONS(3214), - [anon_sym_SEMI] = ACTIONS(3214), - [anon_sym_yield] = ACTIONS(3214), - [anon_sym_LBRACK] = ACTIONS(3214), - [anon_sym_LTtemplate_GT] = ACTIONS(3214), - [anon_sym_DQUOTE] = ACTIONS(3214), - [anon_sym_SQUOTE] = ACTIONS(3214), - [anon_sym_class] = ACTIONS(3214), - [anon_sym_async] = ACTIONS(3214), - [anon_sym_function] = ACTIONS(3214), - [anon_sym_new] = ACTIONS(3214), - [anon_sym_using] = ACTIONS(3214), - [anon_sym_PLUS] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_SLASH] = ACTIONS(3214), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_void] = ACTIONS(3214), - [anon_sym_delete] = ACTIONS(3214), - [anon_sym_PLUS_PLUS] = ACTIONS(3214), - [anon_sym_DASH_DASH] = ACTIONS(3214), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3214), - [sym_number] = ACTIONS(3214), - [sym_private_property_identifier] = ACTIONS(3214), - [sym_this] = ACTIONS(3214), - [sym_super] = ACTIONS(3214), - [sym_true] = ACTIONS(3214), - [sym_false] = ACTIONS(3214), - [sym_null] = ACTIONS(3214), - [sym_undefined] = ACTIONS(3214), - [anon_sym_AT] = ACTIONS(3214), - [anon_sym_static] = ACTIONS(3214), - [anon_sym_readonly] = ACTIONS(3214), - [anon_sym_get] = ACTIONS(3214), - [anon_sym_set] = ACTIONS(3214), - [anon_sym_declare] = ACTIONS(3214), - [anon_sym_public] = ACTIONS(3214), - [anon_sym_private] = ACTIONS(3214), - [anon_sym_protected] = ACTIONS(3214), - [anon_sym_override] = ACTIONS(3214), - [anon_sym_module] = ACTIONS(3214), - [anon_sym_any] = ACTIONS(3214), - [anon_sym_number] = ACTIONS(3214), - [anon_sym_boolean] = ACTIONS(3214), - [anon_sym_string] = ACTIONS(3214), - [anon_sym_symbol] = ACTIONS(3214), - [anon_sym_object] = ACTIONS(3214), - [anon_sym_abstract] = ACTIONS(3214), - [anon_sym_interface] = ACTIONS(3214), - [anon_sym_enum] = ACTIONS(3214), - [sym_html_comment] = ACTIONS(5), - }, - [1579] = { - [sym_comment] = STATE(1579), - [ts_builtin_sym_end] = ACTIONS(3386), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3212), - [anon_sym_RBRACE] = ACTIONS(3212), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3212), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3212), - [anon_sym_LTtemplate_GT] = ACTIONS(3212), - [anon_sym_DQUOTE] = ACTIONS(3212), - [anon_sym_SQUOTE] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_using] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_LT] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3212), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3212), - [anon_sym_DASH_DASH] = ACTIONS(3212), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3212), - [sym_number] = ACTIONS(3212), - [sym_private_property_identifier] = ACTIONS(3212), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3212), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_override] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_object] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), - [sym_html_comment] = ACTIONS(5), - }, - [1580] = { - [sym_comment] = STATE(1580), - [ts_builtin_sym_end] = ACTIONS(2205), - [sym_identifier] = ACTIONS(2203), - [anon_sym_export] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_namespace] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2203), - [anon_sym_RBRACE] = ACTIONS(2203), - [anon_sym_typeof] = ACTIONS(2203), - [anon_sym_import] = ACTIONS(2203), - [anon_sym_with] = ACTIONS(2203), - [anon_sym_var] = ACTIONS(2203), - [anon_sym_let] = ACTIONS(2203), - [anon_sym_const] = ACTIONS(2203), - [anon_sym_BANG] = ACTIONS(2203), - [anon_sym_if] = ACTIONS(2203), - [anon_sym_switch] = ACTIONS(2203), - [anon_sym_for] = ACTIONS(2203), - [anon_sym_LPAREN] = ACTIONS(2203), - [anon_sym_await] = ACTIONS(2203), - [anon_sym_while] = ACTIONS(2203), - [anon_sym_do] = ACTIONS(2203), - [anon_sym_try] = ACTIONS(2203), - [anon_sym_break] = ACTIONS(2203), - [anon_sym_continue] = ACTIONS(2203), - [anon_sym_debugger] = ACTIONS(2203), - [anon_sym_return] = ACTIONS(2203), - [anon_sym_throw] = ACTIONS(2203), - [anon_sym_SEMI] = ACTIONS(2203), - [anon_sym_yield] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2203), - [anon_sym_LTtemplate_GT] = ACTIONS(2203), - [anon_sym_DQUOTE] = ACTIONS(2203), - [anon_sym_SQUOTE] = ACTIONS(2203), - [anon_sym_class] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_function] = ACTIONS(2203), - [anon_sym_new] = ACTIONS(2203), - [anon_sym_using] = ACTIONS(2203), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), - [anon_sym_SLASH] = ACTIONS(2203), - [anon_sym_LT] = ACTIONS(2203), - [anon_sym_TILDE] = ACTIONS(2203), - [anon_sym_void] = ACTIONS(2203), - [anon_sym_delete] = ACTIONS(2203), - [anon_sym_PLUS_PLUS] = ACTIONS(2203), - [anon_sym_DASH_DASH] = ACTIONS(2203), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2203), - [sym_number] = ACTIONS(2203), - [sym_private_property_identifier] = ACTIONS(2203), - [sym_this] = ACTIONS(2203), - [sym_super] = ACTIONS(2203), - [sym_true] = ACTIONS(2203), - [sym_false] = ACTIONS(2203), - [sym_null] = ACTIONS(2203), - [sym_undefined] = ACTIONS(2203), - [anon_sym_AT] = ACTIONS(2203), - [anon_sym_static] = ACTIONS(2203), - [anon_sym_readonly] = ACTIONS(2203), - [anon_sym_get] = ACTIONS(2203), - [anon_sym_set] = ACTIONS(2203), - [anon_sym_declare] = ACTIONS(2203), - [anon_sym_public] = ACTIONS(2203), - [anon_sym_private] = ACTIONS(2203), - [anon_sym_protected] = ACTIONS(2203), - [anon_sym_override] = ACTIONS(2203), - [anon_sym_module] = ACTIONS(2203), - [anon_sym_any] = ACTIONS(2203), - [anon_sym_number] = ACTIONS(2203), - [anon_sym_boolean] = ACTIONS(2203), - [anon_sym_string] = ACTIONS(2203), - [anon_sym_symbol] = ACTIONS(2203), - [anon_sym_object] = ACTIONS(2203), - [anon_sym_abstract] = ACTIONS(2203), - [anon_sym_interface] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [sym_html_comment] = ACTIONS(5), - }, - [1581] = { - [sym_comment] = STATE(1581), - [ts_builtin_sym_end] = ACTIONS(3390), - [sym_identifier] = ACTIONS(3276), - [anon_sym_export] = ACTIONS(3276), - [anon_sym_type] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3276), - [anon_sym_RBRACE] = ACTIONS(3276), - [anon_sym_typeof] = ACTIONS(3276), - [anon_sym_import] = ACTIONS(3276), - [anon_sym_with] = ACTIONS(3276), - [anon_sym_var] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_const] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_switch] = ACTIONS(3276), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3276), - [anon_sym_await] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_debugger] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3276), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3276), - [anon_sym_LTtemplate_GT] = ACTIONS(3276), - [anon_sym_DQUOTE] = ACTIONS(3276), - [anon_sym_SQUOTE] = ACTIONS(3276), - [anon_sym_class] = ACTIONS(3276), - [anon_sym_async] = ACTIONS(3276), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_using] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_LT] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3276), - [anon_sym_void] = ACTIONS(3276), - [anon_sym_delete] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3276), - [anon_sym_DASH_DASH] = ACTIONS(3276), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3276), - [sym_number] = ACTIONS(3276), - [sym_private_property_identifier] = ACTIONS(3276), - [sym_this] = ACTIONS(3276), - [sym_super] = ACTIONS(3276), - [sym_true] = ACTIONS(3276), - [sym_false] = ACTIONS(3276), - [sym_null] = ACTIONS(3276), - [sym_undefined] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3276), - [anon_sym_static] = ACTIONS(3276), - [anon_sym_readonly] = ACTIONS(3276), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_declare] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_override] = ACTIONS(3276), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_any] = ACTIONS(3276), - [anon_sym_number] = ACTIONS(3276), - [anon_sym_boolean] = ACTIONS(3276), - [anon_sym_string] = ACTIONS(3276), - [anon_sym_symbol] = ACTIONS(3276), - [anon_sym_object] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_interface] = ACTIONS(3276), - [anon_sym_enum] = ACTIONS(3276), - [sym_html_comment] = ACTIONS(5), - }, - [1582] = { - [sym_comment] = STATE(1582), - [ts_builtin_sym_end] = ACTIONS(3542), - [sym_identifier] = ACTIONS(3328), - [anon_sym_export] = ACTIONS(3328), - [anon_sym_type] = ACTIONS(3328), - [anon_sym_namespace] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3328), - [anon_sym_RBRACE] = ACTIONS(3328), - [anon_sym_typeof] = ACTIONS(3328), - [anon_sym_import] = ACTIONS(3328), - [anon_sym_with] = ACTIONS(3328), - [anon_sym_var] = ACTIONS(3328), - [anon_sym_let] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_switch] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3328), - [anon_sym_await] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_try] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_debugger] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_throw] = ACTIONS(3328), - [anon_sym_SEMI] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3328), - [anon_sym_LTtemplate_GT] = ACTIONS(3328), - [anon_sym_DQUOTE] = ACTIONS(3328), - [anon_sym_SQUOTE] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3328), - [anon_sym_using] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_LT] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3328), - [anon_sym_void] = ACTIONS(3328), - [anon_sym_delete] = ACTIONS(3328), - [anon_sym_PLUS_PLUS] = ACTIONS(3328), - [anon_sym_DASH_DASH] = ACTIONS(3328), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3328), - [sym_number] = ACTIONS(3328), - [sym_private_property_identifier] = ACTIONS(3328), - [sym_this] = ACTIONS(3328), - [sym_super] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_null] = ACTIONS(3328), - [sym_undefined] = ACTIONS(3328), - [anon_sym_AT] = ACTIONS(3328), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_readonly] = ACTIONS(3328), - [anon_sym_get] = ACTIONS(3328), - [anon_sym_set] = ACTIONS(3328), - [anon_sym_declare] = ACTIONS(3328), - [anon_sym_public] = ACTIONS(3328), - [anon_sym_private] = ACTIONS(3328), - [anon_sym_protected] = ACTIONS(3328), - [anon_sym_override] = ACTIONS(3328), - [anon_sym_module] = ACTIONS(3328), - [anon_sym_any] = ACTIONS(3328), - [anon_sym_number] = ACTIONS(3328), - [anon_sym_boolean] = ACTIONS(3328), - [anon_sym_string] = ACTIONS(3328), - [anon_sym_symbol] = ACTIONS(3328), - [anon_sym_object] = ACTIONS(3328), - [anon_sym_abstract] = ACTIONS(3328), - [anon_sym_interface] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), - [sym_html_comment] = ACTIONS(5), - }, - [1583] = { - [sym_comment] = STATE(1583), - [ts_builtin_sym_end] = ACTIONS(3392), - [sym_identifier] = ACTIONS(3274), - [anon_sym_export] = ACTIONS(3274), - [anon_sym_type] = ACTIONS(3274), - [anon_sym_namespace] = ACTIONS(3274), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_RBRACE] = ACTIONS(3274), - [anon_sym_typeof] = ACTIONS(3274), - [anon_sym_import] = ACTIONS(3274), - [anon_sym_with] = ACTIONS(3274), - [anon_sym_var] = ACTIONS(3274), - [anon_sym_let] = ACTIONS(3274), - [anon_sym_const] = ACTIONS(3274), - [anon_sym_BANG] = ACTIONS(3274), - [anon_sym_if] = ACTIONS(3274), - [anon_sym_switch] = ACTIONS(3274), - [anon_sym_for] = ACTIONS(3274), - [anon_sym_LPAREN] = ACTIONS(3274), - [anon_sym_await] = ACTIONS(3274), - [anon_sym_while] = ACTIONS(3274), - [anon_sym_do] = ACTIONS(3274), - [anon_sym_try] = ACTIONS(3274), - [anon_sym_break] = ACTIONS(3274), - [anon_sym_continue] = ACTIONS(3274), - [anon_sym_debugger] = ACTIONS(3274), - [anon_sym_return] = ACTIONS(3274), - [anon_sym_throw] = ACTIONS(3274), - [anon_sym_SEMI] = ACTIONS(3274), - [anon_sym_yield] = ACTIONS(3274), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_LTtemplate_GT] = ACTIONS(3274), - [anon_sym_DQUOTE] = ACTIONS(3274), - [anon_sym_SQUOTE] = ACTIONS(3274), - [anon_sym_class] = ACTIONS(3274), - [anon_sym_async] = ACTIONS(3274), - [anon_sym_function] = ACTIONS(3274), - [anon_sym_new] = ACTIONS(3274), - [anon_sym_using] = ACTIONS(3274), - [anon_sym_PLUS] = ACTIONS(3274), - [anon_sym_DASH] = ACTIONS(3274), - [anon_sym_SLASH] = ACTIONS(3274), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_TILDE] = ACTIONS(3274), - [anon_sym_void] = ACTIONS(3274), - [anon_sym_delete] = ACTIONS(3274), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3274), - [sym_number] = ACTIONS(3274), - [sym_private_property_identifier] = ACTIONS(3274), - [sym_this] = ACTIONS(3274), - [sym_super] = ACTIONS(3274), - [sym_true] = ACTIONS(3274), - [sym_false] = ACTIONS(3274), - [sym_null] = ACTIONS(3274), - [sym_undefined] = ACTIONS(3274), - [anon_sym_AT] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3274), - [anon_sym_readonly] = ACTIONS(3274), - [anon_sym_get] = ACTIONS(3274), - [anon_sym_set] = ACTIONS(3274), - [anon_sym_declare] = ACTIONS(3274), - [anon_sym_public] = ACTIONS(3274), - [anon_sym_private] = ACTIONS(3274), - [anon_sym_protected] = ACTIONS(3274), - [anon_sym_override] = ACTIONS(3274), - [anon_sym_module] = ACTIONS(3274), - [anon_sym_any] = ACTIONS(3274), - [anon_sym_number] = ACTIONS(3274), - [anon_sym_boolean] = ACTIONS(3274), - [anon_sym_string] = ACTIONS(3274), - [anon_sym_symbol] = ACTIONS(3274), - [anon_sym_object] = ACTIONS(3274), - [anon_sym_abstract] = ACTIONS(3274), - [anon_sym_interface] = ACTIONS(3274), - [anon_sym_enum] = ACTIONS(3274), - [sym_html_comment] = ACTIONS(5), - }, - [1584] = { - [sym_comment] = STATE(1584), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1585] = { - [sym_comment] = STATE(1585), - [ts_builtin_sym_end] = ACTIONS(3396), - [sym_identifier] = ACTIONS(3156), - [anon_sym_export] = ACTIONS(3156), - [anon_sym_type] = ACTIONS(3156), - [anon_sym_namespace] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3156), - [anon_sym_typeof] = ACTIONS(3156), - [anon_sym_import] = ACTIONS(3156), - [anon_sym_with] = ACTIONS(3156), - [anon_sym_var] = ACTIONS(3156), - [anon_sym_let] = ACTIONS(3156), - [anon_sym_const] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_switch] = ACTIONS(3156), - [anon_sym_for] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_await] = ACTIONS(3156), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_do] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_debugger] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_SEMI] = ACTIONS(3156), - [anon_sym_yield] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3156), - [anon_sym_LTtemplate_GT] = ACTIONS(3156), - [anon_sym_DQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [anon_sym_class] = ACTIONS(3156), - [anon_sym_async] = ACTIONS(3156), - [anon_sym_function] = ACTIONS(3156), - [anon_sym_new] = ACTIONS(3156), - [anon_sym_using] = ACTIONS(3156), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_SLASH] = ACTIONS(3156), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3156), - [anon_sym_void] = ACTIONS(3156), - [anon_sym_delete] = ACTIONS(3156), - [anon_sym_PLUS_PLUS] = ACTIONS(3156), - [anon_sym_DASH_DASH] = ACTIONS(3156), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3156), - [sym_number] = ACTIONS(3156), - [sym_private_property_identifier] = ACTIONS(3156), - [sym_this] = ACTIONS(3156), - [sym_super] = ACTIONS(3156), - [sym_true] = ACTIONS(3156), - [sym_false] = ACTIONS(3156), - [sym_null] = ACTIONS(3156), - [sym_undefined] = ACTIONS(3156), - [anon_sym_AT] = ACTIONS(3156), - [anon_sym_static] = ACTIONS(3156), - [anon_sym_readonly] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(3156), - [anon_sym_set] = ACTIONS(3156), - [anon_sym_declare] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_override] = ACTIONS(3156), - [anon_sym_module] = ACTIONS(3156), - [anon_sym_any] = ACTIONS(3156), - [anon_sym_number] = ACTIONS(3156), - [anon_sym_boolean] = ACTIONS(3156), - [anon_sym_string] = ACTIONS(3156), - [anon_sym_symbol] = ACTIONS(3156), - [anon_sym_object] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_interface] = ACTIONS(3156), - [anon_sym_enum] = ACTIONS(3156), - [sym_html_comment] = ACTIONS(5), - }, - [1586] = { - [sym_comment] = STATE(1586), - [ts_builtin_sym_end] = ACTIONS(3398), - [sym_identifier] = ACTIONS(3270), - [anon_sym_export] = ACTIONS(3270), - [anon_sym_type] = ACTIONS(3270), - [anon_sym_namespace] = ACTIONS(3270), - [anon_sym_LBRACE] = ACTIONS(3270), - [anon_sym_RBRACE] = ACTIONS(3270), - [anon_sym_typeof] = ACTIONS(3270), - [anon_sym_import] = ACTIONS(3270), - [anon_sym_with] = ACTIONS(3270), - [anon_sym_var] = ACTIONS(3270), - [anon_sym_let] = ACTIONS(3270), - [anon_sym_const] = ACTIONS(3270), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_if] = ACTIONS(3270), - [anon_sym_switch] = ACTIONS(3270), - [anon_sym_for] = ACTIONS(3270), - [anon_sym_LPAREN] = ACTIONS(3270), - [anon_sym_await] = ACTIONS(3270), - [anon_sym_while] = ACTIONS(3270), - [anon_sym_do] = ACTIONS(3270), - [anon_sym_try] = ACTIONS(3270), - [anon_sym_break] = ACTIONS(3270), - [anon_sym_continue] = ACTIONS(3270), - [anon_sym_debugger] = ACTIONS(3270), - [anon_sym_return] = ACTIONS(3270), - [anon_sym_throw] = ACTIONS(3270), - [anon_sym_SEMI] = ACTIONS(3270), - [anon_sym_yield] = ACTIONS(3270), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_LTtemplate_GT] = ACTIONS(3270), - [anon_sym_DQUOTE] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3270), - [anon_sym_class] = ACTIONS(3270), - [anon_sym_async] = ACTIONS(3270), - [anon_sym_function] = ACTIONS(3270), - [anon_sym_new] = ACTIONS(3270), - [anon_sym_using] = ACTIONS(3270), - [anon_sym_PLUS] = ACTIONS(3270), - [anon_sym_DASH] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_TILDE] = ACTIONS(3270), - [anon_sym_void] = ACTIONS(3270), - [anon_sym_delete] = ACTIONS(3270), - [anon_sym_PLUS_PLUS] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3270), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3270), - [sym_number] = ACTIONS(3270), - [sym_private_property_identifier] = ACTIONS(3270), - [sym_this] = ACTIONS(3270), - [sym_super] = ACTIONS(3270), - [sym_true] = ACTIONS(3270), - [sym_false] = ACTIONS(3270), - [sym_null] = ACTIONS(3270), - [sym_undefined] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3270), - [anon_sym_readonly] = ACTIONS(3270), - [anon_sym_get] = ACTIONS(3270), - [anon_sym_set] = ACTIONS(3270), - [anon_sym_declare] = ACTIONS(3270), - [anon_sym_public] = ACTIONS(3270), - [anon_sym_private] = ACTIONS(3270), - [anon_sym_protected] = ACTIONS(3270), - [anon_sym_override] = ACTIONS(3270), - [anon_sym_module] = ACTIONS(3270), - [anon_sym_any] = ACTIONS(3270), - [anon_sym_number] = ACTIONS(3270), - [anon_sym_boolean] = ACTIONS(3270), - [anon_sym_string] = ACTIONS(3270), - [anon_sym_symbol] = ACTIONS(3270), - [anon_sym_object] = ACTIONS(3270), - [anon_sym_abstract] = ACTIONS(3270), - [anon_sym_interface] = ACTIONS(3270), - [anon_sym_enum] = ACTIONS(3270), - [sym_html_comment] = ACTIONS(5), - }, - [1587] = { - [sym_comment] = STATE(1587), - [ts_builtin_sym_end] = ACTIONS(3432), - [sym_identifier] = ACTIONS(3188), - [anon_sym_export] = ACTIONS(3188), - [anon_sym_type] = ACTIONS(3188), - [anon_sym_namespace] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(3188), - [anon_sym_RBRACE] = ACTIONS(3188), - [anon_sym_typeof] = ACTIONS(3188), - [anon_sym_import] = ACTIONS(3188), - [anon_sym_with] = ACTIONS(3188), - [anon_sym_var] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_const] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_switch] = ACTIONS(3188), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3188), - [anon_sym_await] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_debugger] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3188), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3188), - [anon_sym_LTtemplate_GT] = ACTIONS(3188), - [anon_sym_DQUOTE] = ACTIONS(3188), - [anon_sym_SQUOTE] = ACTIONS(3188), - [anon_sym_class] = ACTIONS(3188), - [anon_sym_async] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_using] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_SLASH] = ACTIONS(3188), - [anon_sym_LT] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3188), - [anon_sym_void] = ACTIONS(3188), - [anon_sym_delete] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3188), - [anon_sym_DASH_DASH] = ACTIONS(3188), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3188), - [sym_number] = ACTIONS(3188), - [sym_private_property_identifier] = ACTIONS(3188), - [sym_this] = ACTIONS(3188), - [sym_super] = ACTIONS(3188), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_undefined] = ACTIONS(3188), - [anon_sym_AT] = ACTIONS(3188), - [anon_sym_static] = ACTIONS(3188), - [anon_sym_readonly] = ACTIONS(3188), - [anon_sym_get] = ACTIONS(3188), - [anon_sym_set] = ACTIONS(3188), - [anon_sym_declare] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_override] = ACTIONS(3188), - [anon_sym_module] = ACTIONS(3188), - [anon_sym_any] = ACTIONS(3188), - [anon_sym_number] = ACTIONS(3188), - [anon_sym_boolean] = ACTIONS(3188), - [anon_sym_string] = ACTIONS(3188), - [anon_sym_symbol] = ACTIONS(3188), - [anon_sym_object] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_interface] = ACTIONS(3188), - [anon_sym_enum] = ACTIONS(3188), - [sym_html_comment] = ACTIONS(5), - }, - [1588] = { - [sym_comment] = STATE(1588), - [ts_builtin_sym_end] = ACTIONS(3388), - [sym_identifier] = ACTIONS(3278), - [anon_sym_export] = ACTIONS(3278), - [anon_sym_type] = ACTIONS(3278), - [anon_sym_namespace] = ACTIONS(3278), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_RBRACE] = ACTIONS(3278), - [anon_sym_typeof] = ACTIONS(3278), - [anon_sym_import] = ACTIONS(3278), - [anon_sym_with] = ACTIONS(3278), - [anon_sym_var] = ACTIONS(3278), - [anon_sym_let] = ACTIONS(3278), - [anon_sym_const] = ACTIONS(3278), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_if] = ACTIONS(3278), - [anon_sym_switch] = ACTIONS(3278), - [anon_sym_for] = ACTIONS(3278), - [anon_sym_LPAREN] = ACTIONS(3278), - [anon_sym_await] = ACTIONS(3278), - [anon_sym_while] = ACTIONS(3278), - [anon_sym_do] = ACTIONS(3278), - [anon_sym_try] = ACTIONS(3278), - [anon_sym_break] = ACTIONS(3278), - [anon_sym_continue] = ACTIONS(3278), - [anon_sym_debugger] = ACTIONS(3278), - [anon_sym_return] = ACTIONS(3278), - [anon_sym_throw] = ACTIONS(3278), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym_yield] = ACTIONS(3278), - [anon_sym_LBRACK] = ACTIONS(3278), - [anon_sym_LTtemplate_GT] = ACTIONS(3278), - [anon_sym_DQUOTE] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3278), - [anon_sym_class] = ACTIONS(3278), - [anon_sym_async] = ACTIONS(3278), - [anon_sym_function] = ACTIONS(3278), - [anon_sym_new] = ACTIONS(3278), - [anon_sym_using] = ACTIONS(3278), - [anon_sym_PLUS] = ACTIONS(3278), - [anon_sym_DASH] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3278), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_void] = ACTIONS(3278), - [anon_sym_delete] = ACTIONS(3278), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3278), - [sym_number] = ACTIONS(3278), - [sym_private_property_identifier] = ACTIONS(3278), - [sym_this] = ACTIONS(3278), - [sym_super] = ACTIONS(3278), - [sym_true] = ACTIONS(3278), - [sym_false] = ACTIONS(3278), - [sym_null] = ACTIONS(3278), - [sym_undefined] = ACTIONS(3278), - [anon_sym_AT] = ACTIONS(3278), - [anon_sym_static] = ACTIONS(3278), - [anon_sym_readonly] = ACTIONS(3278), - [anon_sym_get] = ACTIONS(3278), - [anon_sym_set] = ACTIONS(3278), - [anon_sym_declare] = ACTIONS(3278), - [anon_sym_public] = ACTIONS(3278), - [anon_sym_private] = ACTIONS(3278), - [anon_sym_protected] = ACTIONS(3278), - [anon_sym_override] = ACTIONS(3278), - [anon_sym_module] = ACTIONS(3278), - [anon_sym_any] = ACTIONS(3278), - [anon_sym_number] = ACTIONS(3278), - [anon_sym_boolean] = ACTIONS(3278), - [anon_sym_string] = ACTIONS(3278), - [anon_sym_symbol] = ACTIONS(3278), - [anon_sym_object] = ACTIONS(3278), - [anon_sym_abstract] = ACTIONS(3278), - [anon_sym_interface] = ACTIONS(3278), - [anon_sym_enum] = ACTIONS(3278), - [sym_html_comment] = ACTIONS(5), - }, - [1589] = { - [sym_comment] = STATE(1589), - [ts_builtin_sym_end] = ACTIONS(3434), - [sym_identifier] = ACTIONS(3192), - [anon_sym_export] = ACTIONS(3192), - [anon_sym_type] = ACTIONS(3192), - [anon_sym_namespace] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3192), - [anon_sym_RBRACE] = ACTIONS(3192), - [anon_sym_typeof] = ACTIONS(3192), - [anon_sym_import] = ACTIONS(3192), - [anon_sym_with] = ACTIONS(3192), - [anon_sym_var] = ACTIONS(3192), - [anon_sym_let] = ACTIONS(3192), - [anon_sym_const] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3192), - [anon_sym_if] = ACTIONS(3192), - [anon_sym_switch] = ACTIONS(3192), - [anon_sym_for] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3192), - [anon_sym_await] = ACTIONS(3192), - [anon_sym_while] = ACTIONS(3192), - [anon_sym_do] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3192), - [anon_sym_break] = ACTIONS(3192), - [anon_sym_continue] = ACTIONS(3192), - [anon_sym_debugger] = ACTIONS(3192), - [anon_sym_return] = ACTIONS(3192), - [anon_sym_throw] = ACTIONS(3192), - [anon_sym_SEMI] = ACTIONS(3192), - [anon_sym_yield] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3192), - [anon_sym_LTtemplate_GT] = ACTIONS(3192), - [anon_sym_DQUOTE] = ACTIONS(3192), - [anon_sym_SQUOTE] = ACTIONS(3192), - [anon_sym_class] = ACTIONS(3192), - [anon_sym_async] = ACTIONS(3192), - [anon_sym_function] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3192), - [anon_sym_using] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_SLASH] = ACTIONS(3192), - [anon_sym_LT] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3192), - [anon_sym_void] = ACTIONS(3192), - [anon_sym_delete] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3192), - [anon_sym_DASH_DASH] = ACTIONS(3192), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3192), - [sym_number] = ACTIONS(3192), - [sym_private_property_identifier] = ACTIONS(3192), - [sym_this] = ACTIONS(3192), - [sym_super] = ACTIONS(3192), - [sym_true] = ACTIONS(3192), - [sym_false] = ACTIONS(3192), - [sym_null] = ACTIONS(3192), - [sym_undefined] = ACTIONS(3192), - [anon_sym_AT] = ACTIONS(3192), - [anon_sym_static] = ACTIONS(3192), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_get] = ACTIONS(3192), - [anon_sym_set] = ACTIONS(3192), - [anon_sym_declare] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_override] = ACTIONS(3192), - [anon_sym_module] = ACTIONS(3192), - [anon_sym_any] = ACTIONS(3192), - [anon_sym_number] = ACTIONS(3192), - [anon_sym_boolean] = ACTIONS(3192), - [anon_sym_string] = ACTIONS(3192), - [anon_sym_symbol] = ACTIONS(3192), - [anon_sym_object] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_interface] = ACTIONS(3192), - [anon_sym_enum] = ACTIONS(3192), - [sym_html_comment] = ACTIONS(5), - }, - [1590] = { - [sym_comment] = STATE(1590), - [ts_builtin_sym_end] = ACTIONS(3436), - [sym_identifier] = ACTIONS(3196), - [anon_sym_export] = ACTIONS(3196), - [anon_sym_type] = ACTIONS(3196), - [anon_sym_namespace] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3196), - [anon_sym_RBRACE] = ACTIONS(3196), - [anon_sym_typeof] = ACTIONS(3196), - [anon_sym_import] = ACTIONS(3196), - [anon_sym_with] = ACTIONS(3196), - [anon_sym_var] = ACTIONS(3196), - [anon_sym_let] = ACTIONS(3196), - [anon_sym_const] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_switch] = ACTIONS(3196), - [anon_sym_for] = ACTIONS(3196), - [anon_sym_LPAREN] = ACTIONS(3196), - [anon_sym_await] = ACTIONS(3196), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_do] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_debugger] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3196), - [anon_sym_yield] = ACTIONS(3196), - [anon_sym_LBRACK] = ACTIONS(3196), - [anon_sym_LTtemplate_GT] = ACTIONS(3196), - [anon_sym_DQUOTE] = ACTIONS(3196), - [anon_sym_SQUOTE] = ACTIONS(3196), - [anon_sym_class] = ACTIONS(3196), - [anon_sym_async] = ACTIONS(3196), - [anon_sym_function] = ACTIONS(3196), - [anon_sym_new] = ACTIONS(3196), - [anon_sym_using] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_LT] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3196), - [anon_sym_void] = ACTIONS(3196), - [anon_sym_delete] = ACTIONS(3196), - [anon_sym_PLUS_PLUS] = ACTIONS(3196), - [anon_sym_DASH_DASH] = ACTIONS(3196), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3196), - [sym_number] = ACTIONS(3196), - [sym_private_property_identifier] = ACTIONS(3196), - [sym_this] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_true] = ACTIONS(3196), - [sym_false] = ACTIONS(3196), - [sym_null] = ACTIONS(3196), - [sym_undefined] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3196), - [anon_sym_static] = ACTIONS(3196), - [anon_sym_readonly] = ACTIONS(3196), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_declare] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_override] = ACTIONS(3196), - [anon_sym_module] = ACTIONS(3196), - [anon_sym_any] = ACTIONS(3196), - [anon_sym_number] = ACTIONS(3196), - [anon_sym_boolean] = ACTIONS(3196), - [anon_sym_string] = ACTIONS(3196), - [anon_sym_symbol] = ACTIONS(3196), - [anon_sym_object] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_interface] = ACTIONS(3196), - [anon_sym_enum] = ACTIONS(3196), - [sym_html_comment] = ACTIONS(5), - }, - [1591] = { - [sym_comment] = STATE(1591), - [ts_builtin_sym_end] = ACTIONS(3440), - [sym_identifier] = ACTIONS(3172), - [anon_sym_export] = ACTIONS(3172), - [anon_sym_type] = ACTIONS(3172), - [anon_sym_namespace] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3172), - [anon_sym_RBRACE] = ACTIONS(3172), - [anon_sym_typeof] = ACTIONS(3172), - [anon_sym_import] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3172), - [anon_sym_var] = ACTIONS(3172), - [anon_sym_let] = ACTIONS(3172), - [anon_sym_const] = ACTIONS(3172), - [anon_sym_BANG] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_switch] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3172), - [anon_sym_await] = ACTIONS(3172), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_do] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_debugger] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_SEMI] = ACTIONS(3172), - [anon_sym_yield] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3172), - [anon_sym_LTtemplate_GT] = ACTIONS(3172), - [anon_sym_DQUOTE] = ACTIONS(3172), - [anon_sym_SQUOTE] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3172), - [anon_sym_async] = ACTIONS(3172), - [anon_sym_function] = ACTIONS(3172), - [anon_sym_new] = ACTIONS(3172), - [anon_sym_using] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3172), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_LT] = ACTIONS(3172), - [anon_sym_TILDE] = ACTIONS(3172), - [anon_sym_void] = ACTIONS(3172), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_PLUS_PLUS] = ACTIONS(3172), - [anon_sym_DASH_DASH] = ACTIONS(3172), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3172), - [sym_number] = ACTIONS(3172), - [sym_private_property_identifier] = ACTIONS(3172), - [sym_this] = ACTIONS(3172), - [sym_super] = ACTIONS(3172), - [sym_true] = ACTIONS(3172), - [sym_false] = ACTIONS(3172), - [sym_null] = ACTIONS(3172), - [sym_undefined] = ACTIONS(3172), - [anon_sym_AT] = ACTIONS(3172), - [anon_sym_static] = ACTIONS(3172), - [anon_sym_readonly] = ACTIONS(3172), - [anon_sym_get] = ACTIONS(3172), - [anon_sym_set] = ACTIONS(3172), - [anon_sym_declare] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_override] = ACTIONS(3172), - [anon_sym_module] = ACTIONS(3172), - [anon_sym_any] = ACTIONS(3172), - [anon_sym_number] = ACTIONS(3172), - [anon_sym_boolean] = ACTIONS(3172), - [anon_sym_string] = ACTIONS(3172), - [anon_sym_symbol] = ACTIONS(3172), - [anon_sym_object] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_interface] = ACTIONS(3172), - [anon_sym_enum] = ACTIONS(3172), - [sym_html_comment] = ACTIONS(5), - }, - [1592] = { - [sym_comment] = STATE(1592), - [ts_builtin_sym_end] = ACTIONS(2147), - [sym_identifier] = ACTIONS(2145), - [anon_sym_export] = ACTIONS(2145), - [anon_sym_type] = ACTIONS(2145), - [anon_sym_namespace] = ACTIONS(2145), - [anon_sym_LBRACE] = ACTIONS(2145), - [anon_sym_RBRACE] = ACTIONS(2145), - [anon_sym_typeof] = ACTIONS(2145), - [anon_sym_import] = ACTIONS(2145), - [anon_sym_with] = ACTIONS(2145), - [anon_sym_var] = ACTIONS(2145), - [anon_sym_let] = ACTIONS(2145), - [anon_sym_const] = ACTIONS(2145), - [anon_sym_BANG] = ACTIONS(2145), - [anon_sym_if] = ACTIONS(2145), - [anon_sym_switch] = ACTIONS(2145), - [anon_sym_for] = ACTIONS(2145), - [anon_sym_LPAREN] = ACTIONS(2145), - [anon_sym_await] = ACTIONS(2145), - [anon_sym_while] = ACTIONS(2145), - [anon_sym_do] = ACTIONS(2145), - [anon_sym_try] = ACTIONS(2145), - [anon_sym_break] = ACTIONS(2145), - [anon_sym_continue] = ACTIONS(2145), - [anon_sym_debugger] = ACTIONS(2145), - [anon_sym_return] = ACTIONS(2145), - [anon_sym_throw] = ACTIONS(2145), - [anon_sym_SEMI] = ACTIONS(2145), - [anon_sym_yield] = ACTIONS(2145), - [anon_sym_LBRACK] = ACTIONS(2145), - [anon_sym_LTtemplate_GT] = ACTIONS(2145), - [anon_sym_DQUOTE] = ACTIONS(2145), - [anon_sym_SQUOTE] = ACTIONS(2145), - [anon_sym_class] = ACTIONS(2145), - [anon_sym_async] = ACTIONS(2145), - [anon_sym_function] = ACTIONS(2145), - [anon_sym_new] = ACTIONS(2145), - [anon_sym_using] = ACTIONS(2145), - [anon_sym_PLUS] = ACTIONS(2145), - [anon_sym_DASH] = ACTIONS(2145), - [anon_sym_SLASH] = ACTIONS(2145), - [anon_sym_LT] = ACTIONS(2145), - [anon_sym_TILDE] = ACTIONS(2145), - [anon_sym_void] = ACTIONS(2145), - [anon_sym_delete] = ACTIONS(2145), - [anon_sym_PLUS_PLUS] = ACTIONS(2145), - [anon_sym_DASH_DASH] = ACTIONS(2145), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2145), - [sym_number] = ACTIONS(2145), - [sym_private_property_identifier] = ACTIONS(2145), - [sym_this] = ACTIONS(2145), - [sym_super] = ACTIONS(2145), - [sym_true] = ACTIONS(2145), - [sym_false] = ACTIONS(2145), - [sym_null] = ACTIONS(2145), - [sym_undefined] = ACTIONS(2145), - [anon_sym_AT] = ACTIONS(2145), - [anon_sym_static] = ACTIONS(2145), - [anon_sym_readonly] = ACTIONS(2145), - [anon_sym_get] = ACTIONS(2145), - [anon_sym_set] = ACTIONS(2145), - [anon_sym_declare] = ACTIONS(2145), - [anon_sym_public] = ACTIONS(2145), - [anon_sym_private] = ACTIONS(2145), - [anon_sym_protected] = ACTIONS(2145), - [anon_sym_override] = ACTIONS(2145), - [anon_sym_module] = ACTIONS(2145), - [anon_sym_any] = ACTIONS(2145), - [anon_sym_number] = ACTIONS(2145), - [anon_sym_boolean] = ACTIONS(2145), - [anon_sym_string] = ACTIONS(2145), - [anon_sym_symbol] = ACTIONS(2145), - [anon_sym_object] = ACTIONS(2145), - [anon_sym_abstract] = ACTIONS(2145), - [anon_sym_interface] = ACTIONS(2145), - [anon_sym_enum] = ACTIONS(2145), - [sym_html_comment] = ACTIONS(5), - }, - [1593] = { - [sym_comment] = STATE(1593), - [ts_builtin_sym_end] = ACTIONS(3492), - [sym_identifier] = ACTIONS(3234), - [anon_sym_export] = ACTIONS(3234), - [anon_sym_type] = ACTIONS(3234), - [anon_sym_namespace] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_typeof] = ACTIONS(3234), - [anon_sym_import] = ACTIONS(3234), - [anon_sym_with] = ACTIONS(3234), - [anon_sym_var] = ACTIONS(3234), - [anon_sym_let] = ACTIONS(3234), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_await] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_debugger] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3234), - [anon_sym_yield] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_LTtemplate_GT] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_async] = ACTIONS(3234), - [anon_sym_function] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3234), - [anon_sym_TILDE] = ACTIONS(3234), - [anon_sym_void] = ACTIONS(3234), - [anon_sym_delete] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3234), - [sym_number] = ACTIONS(3234), - [sym_private_property_identifier] = ACTIONS(3234), - [sym_this] = ACTIONS(3234), - [sym_super] = ACTIONS(3234), - [sym_true] = ACTIONS(3234), - [sym_false] = ACTIONS(3234), - [sym_null] = ACTIONS(3234), - [sym_undefined] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_readonly] = ACTIONS(3234), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_declare] = ACTIONS(3234), - [anon_sym_public] = ACTIONS(3234), - [anon_sym_private] = ACTIONS(3234), - [anon_sym_protected] = ACTIONS(3234), - [anon_sym_override] = ACTIONS(3234), - [anon_sym_module] = ACTIONS(3234), - [anon_sym_any] = ACTIONS(3234), - [anon_sym_number] = ACTIONS(3234), - [anon_sym_boolean] = ACTIONS(3234), - [anon_sym_string] = ACTIONS(3234), - [anon_sym_symbol] = ACTIONS(3234), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_abstract] = ACTIONS(3234), - [anon_sym_interface] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), - [sym_html_comment] = ACTIONS(5), - }, - [1594] = { - [sym_comment] = STATE(1594), - [ts_builtin_sym_end] = ACTIONS(3492), - [sym_identifier] = ACTIONS(3234), - [anon_sym_export] = ACTIONS(3234), - [anon_sym_type] = ACTIONS(3234), - [anon_sym_namespace] = ACTIONS(3234), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_typeof] = ACTIONS(3234), - [anon_sym_import] = ACTIONS(3234), - [anon_sym_with] = ACTIONS(3234), - [anon_sym_var] = ACTIONS(3234), - [anon_sym_let] = ACTIONS(3234), - [anon_sym_const] = ACTIONS(3234), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_if] = ACTIONS(3234), - [anon_sym_switch] = ACTIONS(3234), - [anon_sym_for] = ACTIONS(3234), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_await] = ACTIONS(3234), - [anon_sym_while] = ACTIONS(3234), - [anon_sym_do] = ACTIONS(3234), - [anon_sym_try] = ACTIONS(3234), - [anon_sym_break] = ACTIONS(3234), - [anon_sym_continue] = ACTIONS(3234), - [anon_sym_debugger] = ACTIONS(3234), - [anon_sym_return] = ACTIONS(3234), - [anon_sym_throw] = ACTIONS(3234), - [anon_sym_SEMI] = ACTIONS(3234), - [anon_sym_yield] = ACTIONS(3234), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_LTtemplate_GT] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3234), - [anon_sym_class] = ACTIONS(3234), - [anon_sym_async] = ACTIONS(3234), - [anon_sym_function] = ACTIONS(3234), - [anon_sym_new] = ACTIONS(3234), - [anon_sym_using] = ACTIONS(3234), - [anon_sym_PLUS] = ACTIONS(3234), - [anon_sym_DASH] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3234), - [anon_sym_TILDE] = ACTIONS(3234), - [anon_sym_void] = ACTIONS(3234), - [anon_sym_delete] = ACTIONS(3234), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), + [1455] = { + [sym_comment] = STATE(1455), + [ts_builtin_sym_end] = ACTIONS(3548), + [sym_identifier] = ACTIONS(3284), + [anon_sym_export] = ACTIONS(3284), + [anon_sym_type] = ACTIONS(3284), + [anon_sym_namespace] = ACTIONS(3284), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_RBRACE] = ACTIONS(3284), + [anon_sym_typeof] = ACTIONS(3284), + [anon_sym_import] = ACTIONS(3284), + [anon_sym_with] = ACTIONS(3284), + [anon_sym_var] = ACTIONS(3284), + [anon_sym_let] = ACTIONS(3284), + [anon_sym_const] = ACTIONS(3284), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_if] = ACTIONS(3284), + [anon_sym_switch] = ACTIONS(3284), + [anon_sym_for] = ACTIONS(3284), + [anon_sym_LPAREN] = ACTIONS(3284), + [anon_sym_await] = ACTIONS(3284), + [anon_sym_while] = ACTIONS(3284), + [anon_sym_do] = ACTIONS(3284), + [anon_sym_try] = ACTIONS(3284), + [anon_sym_break] = ACTIONS(3284), + [anon_sym_continue] = ACTIONS(3284), + [anon_sym_debugger] = ACTIONS(3284), + [anon_sym_return] = ACTIONS(3284), + [anon_sym_throw] = ACTIONS(3284), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_yield] = ACTIONS(3284), + [anon_sym_LBRACK] = ACTIONS(3284), + [anon_sym_LTtemplate_GT] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3284), + [anon_sym_class] = ACTIONS(3284), + [anon_sym_async] = ACTIONS(3284), + [anon_sym_function] = ACTIONS(3284), + [anon_sym_new] = ACTIONS(3284), + [anon_sym_using] = ACTIONS(3284), + [anon_sym_PLUS] = ACTIONS(3284), + [anon_sym_DASH] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3284), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_void] = ACTIONS(3284), + [anon_sym_delete] = ACTIONS(3284), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_DASH_DASH] = ACTIONS(3284), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3234), - [sym_number] = ACTIONS(3234), - [sym_private_property_identifier] = ACTIONS(3234), - [sym_this] = ACTIONS(3234), - [sym_super] = ACTIONS(3234), - [sym_true] = ACTIONS(3234), - [sym_false] = ACTIONS(3234), - [sym_null] = ACTIONS(3234), - [sym_undefined] = ACTIONS(3234), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3234), - [anon_sym_readonly] = ACTIONS(3234), - [anon_sym_get] = ACTIONS(3234), - [anon_sym_set] = ACTIONS(3234), - [anon_sym_declare] = ACTIONS(3234), - [anon_sym_public] = ACTIONS(3234), - [anon_sym_private] = ACTIONS(3234), - [anon_sym_protected] = ACTIONS(3234), - [anon_sym_override] = ACTIONS(3234), - [anon_sym_module] = ACTIONS(3234), - [anon_sym_any] = ACTIONS(3234), - [anon_sym_number] = ACTIONS(3234), - [anon_sym_boolean] = ACTIONS(3234), - [anon_sym_string] = ACTIONS(3234), - [anon_sym_symbol] = ACTIONS(3234), - [anon_sym_object] = ACTIONS(3234), - [anon_sym_abstract] = ACTIONS(3234), - [anon_sym_interface] = ACTIONS(3234), - [anon_sym_enum] = ACTIONS(3234), + [anon_sym_BQUOTE] = ACTIONS(3284), + [sym_number] = ACTIONS(3284), + [sym_private_property_identifier] = ACTIONS(3284), + [sym_this] = ACTIONS(3284), + [sym_super] = ACTIONS(3284), + [sym_true] = ACTIONS(3284), + [sym_false] = ACTIONS(3284), + [sym_null] = ACTIONS(3284), + [sym_undefined] = ACTIONS(3284), + [anon_sym_AT] = ACTIONS(3284), + [anon_sym_static] = ACTIONS(3284), + [anon_sym_readonly] = ACTIONS(3284), + [anon_sym_get] = ACTIONS(3284), + [anon_sym_set] = ACTIONS(3284), + [anon_sym_declare] = ACTIONS(3284), + [anon_sym_public] = ACTIONS(3284), + [anon_sym_private] = ACTIONS(3284), + [anon_sym_protected] = ACTIONS(3284), + [anon_sym_override] = ACTIONS(3284), + [anon_sym_module] = ACTIONS(3284), + [anon_sym_any] = ACTIONS(3284), + [anon_sym_number] = ACTIONS(3284), + [anon_sym_boolean] = ACTIONS(3284), + [anon_sym_string] = ACTIONS(3284), + [anon_sym_symbol] = ACTIONS(3284), + [anon_sym_object] = ACTIONS(3284), + [anon_sym_abstract] = ACTIONS(3284), + [anon_sym_interface] = ACTIONS(3284), + [anon_sym_enum] = ACTIONS(3284), [sym_html_comment] = ACTIONS(5), }, - [1595] = { - [sym_comment] = STATE(1595), - [ts_builtin_sym_end] = ACTIONS(3490), - [sym_identifier] = ACTIONS(3236), - [anon_sym_export] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3236), - [anon_sym_namespace] = ACTIONS(3236), - [anon_sym_LBRACE] = ACTIONS(3236), - [anon_sym_RBRACE] = ACTIONS(3236), - [anon_sym_typeof] = ACTIONS(3236), - [anon_sym_import] = ACTIONS(3236), - [anon_sym_with] = ACTIONS(3236), - [anon_sym_var] = ACTIONS(3236), - [anon_sym_let] = ACTIONS(3236), - [anon_sym_const] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3236), - [anon_sym_if] = ACTIONS(3236), - [anon_sym_switch] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3236), - [anon_sym_await] = ACTIONS(3236), - [anon_sym_while] = ACTIONS(3236), - [anon_sym_do] = ACTIONS(3236), - [anon_sym_try] = ACTIONS(3236), - [anon_sym_break] = ACTIONS(3236), - [anon_sym_continue] = ACTIONS(3236), - [anon_sym_debugger] = ACTIONS(3236), - [anon_sym_return] = ACTIONS(3236), - [anon_sym_throw] = ACTIONS(3236), - [anon_sym_SEMI] = ACTIONS(3236), - [anon_sym_yield] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3236), - [anon_sym_LTtemplate_GT] = ACTIONS(3236), - [anon_sym_DQUOTE] = ACTIONS(3236), - [anon_sym_SQUOTE] = ACTIONS(3236), - [anon_sym_class] = ACTIONS(3236), - [anon_sym_async] = ACTIONS(3236), - [anon_sym_function] = ACTIONS(3236), - [anon_sym_new] = ACTIONS(3236), - [anon_sym_using] = ACTIONS(3236), - [anon_sym_PLUS] = ACTIONS(3236), - [anon_sym_DASH] = ACTIONS(3236), - [anon_sym_SLASH] = ACTIONS(3236), - [anon_sym_LT] = ACTIONS(3236), - [anon_sym_TILDE] = ACTIONS(3236), - [anon_sym_void] = ACTIONS(3236), - [anon_sym_delete] = ACTIONS(3236), - [anon_sym_PLUS_PLUS] = ACTIONS(3236), - [anon_sym_DASH_DASH] = ACTIONS(3236), + [1456] = { + [sym_comment] = STATE(1456), + [ts_builtin_sym_end] = ACTIONS(3474), + [sym_identifier] = ACTIONS(3184), + [anon_sym_export] = ACTIONS(3184), + [anon_sym_type] = ACTIONS(3184), + [anon_sym_namespace] = ACTIONS(3184), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3184), + [anon_sym_import] = ACTIONS(3184), + [anon_sym_with] = ACTIONS(3184), + [anon_sym_var] = ACTIONS(3184), + [anon_sym_let] = ACTIONS(3184), + [anon_sym_const] = ACTIONS(3184), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_if] = ACTIONS(3184), + [anon_sym_switch] = ACTIONS(3184), + [anon_sym_for] = ACTIONS(3184), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3184), + [anon_sym_while] = ACTIONS(3184), + [anon_sym_do] = ACTIONS(3184), + [anon_sym_try] = ACTIONS(3184), + [anon_sym_break] = ACTIONS(3184), + [anon_sym_continue] = ACTIONS(3184), + [anon_sym_debugger] = ACTIONS(3184), + [anon_sym_return] = ACTIONS(3184), + [anon_sym_throw] = ACTIONS(3184), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_yield] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LTtemplate_GT] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [anon_sym_class] = ACTIONS(3184), + [anon_sym_async] = ACTIONS(3184), + [anon_sym_function] = ACTIONS(3184), + [anon_sym_new] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3184), + [anon_sym_PLUS] = ACTIONS(3184), + [anon_sym_DASH] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3184), + [anon_sym_delete] = ACTIONS(3184), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3236), - [sym_number] = ACTIONS(3236), - [sym_private_property_identifier] = ACTIONS(3236), - [sym_this] = ACTIONS(3236), - [sym_super] = ACTIONS(3236), - [sym_true] = ACTIONS(3236), - [sym_false] = ACTIONS(3236), - [sym_null] = ACTIONS(3236), - [sym_undefined] = ACTIONS(3236), - [anon_sym_AT] = ACTIONS(3236), - [anon_sym_static] = ACTIONS(3236), - [anon_sym_readonly] = ACTIONS(3236), - [anon_sym_get] = ACTIONS(3236), - [anon_sym_set] = ACTIONS(3236), - [anon_sym_declare] = ACTIONS(3236), - [anon_sym_public] = ACTIONS(3236), - [anon_sym_private] = ACTIONS(3236), - [anon_sym_protected] = ACTIONS(3236), - [anon_sym_override] = ACTIONS(3236), - [anon_sym_module] = ACTIONS(3236), - [anon_sym_any] = ACTIONS(3236), - [anon_sym_number] = ACTIONS(3236), - [anon_sym_boolean] = ACTIONS(3236), - [anon_sym_string] = ACTIONS(3236), - [anon_sym_symbol] = ACTIONS(3236), - [anon_sym_object] = ACTIONS(3236), - [anon_sym_abstract] = ACTIONS(3236), - [anon_sym_interface] = ACTIONS(3236), - [anon_sym_enum] = ACTIONS(3236), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_private_property_identifier] = ACTIONS(3184), + [sym_this] = ACTIONS(3184), + [sym_super] = ACTIONS(3184), + [sym_true] = ACTIONS(3184), + [sym_false] = ACTIONS(3184), + [sym_null] = ACTIONS(3184), + [sym_undefined] = ACTIONS(3184), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3184), + [anon_sym_readonly] = ACTIONS(3184), + [anon_sym_get] = ACTIONS(3184), + [anon_sym_set] = ACTIONS(3184), + [anon_sym_declare] = ACTIONS(3184), + [anon_sym_public] = ACTIONS(3184), + [anon_sym_private] = ACTIONS(3184), + [anon_sym_protected] = ACTIONS(3184), + [anon_sym_override] = ACTIONS(3184), + [anon_sym_module] = ACTIONS(3184), + [anon_sym_any] = ACTIONS(3184), + [anon_sym_number] = ACTIONS(3184), + [anon_sym_boolean] = ACTIONS(3184), + [anon_sym_string] = ACTIONS(3184), + [anon_sym_symbol] = ACTIONS(3184), + [anon_sym_object] = ACTIONS(3184), + [anon_sym_abstract] = ACTIONS(3184), + [anon_sym_interface] = ACTIONS(3184), + [anon_sym_enum] = ACTIONS(3184), [sym_html_comment] = ACTIONS(5), }, - [1596] = { - [sym_comment] = STATE(1596), - [ts_builtin_sym_end] = ACTIONS(3400), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3128), - [anon_sym_RBRACE] = ACTIONS(3128), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3128), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3128), - [anon_sym_LTtemplate_GT] = ACTIONS(3128), - [anon_sym_DQUOTE] = ACTIONS(3128), - [anon_sym_SQUOTE] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_using] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_LT] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3128), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3128), - [anon_sym_DASH_DASH] = ACTIONS(3128), + [1457] = { + [sym_comment] = STATE(1457), + [ts_builtin_sym_end] = ACTIONS(3562), + [sym_identifier] = ACTIONS(3304), + [anon_sym_export] = ACTIONS(3304), + [anon_sym_type] = ACTIONS(3304), + [anon_sym_namespace] = ACTIONS(3304), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_RBRACE] = ACTIONS(3304), + [anon_sym_typeof] = ACTIONS(3304), + [anon_sym_import] = ACTIONS(3304), + [anon_sym_with] = ACTIONS(3304), + [anon_sym_var] = ACTIONS(3304), + [anon_sym_let] = ACTIONS(3304), + [anon_sym_const] = ACTIONS(3304), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_if] = ACTIONS(3304), + [anon_sym_switch] = ACTIONS(3304), + [anon_sym_for] = ACTIONS(3304), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_await] = ACTIONS(3304), + [anon_sym_while] = ACTIONS(3304), + [anon_sym_do] = ACTIONS(3304), + [anon_sym_try] = ACTIONS(3304), + [anon_sym_break] = ACTIONS(3304), + [anon_sym_continue] = ACTIONS(3304), + [anon_sym_debugger] = ACTIONS(3304), + [anon_sym_return] = ACTIONS(3304), + [anon_sym_throw] = ACTIONS(3304), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_yield] = ACTIONS(3304), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LTtemplate_GT] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [anon_sym_class] = ACTIONS(3304), + [anon_sym_async] = ACTIONS(3304), + [anon_sym_function] = ACTIONS(3304), + [anon_sym_new] = ACTIONS(3304), + [anon_sym_using] = ACTIONS(3304), + [anon_sym_PLUS] = ACTIONS(3304), + [anon_sym_DASH] = ACTIONS(3304), + [anon_sym_SLASH] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_void] = ACTIONS(3304), + [anon_sym_delete] = ACTIONS(3304), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3304), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3128), - [sym_number] = ACTIONS(3128), - [sym_private_property_identifier] = ACTIONS(3128), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3128), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_override] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_object] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [anon_sym_BQUOTE] = ACTIONS(3304), + [sym_number] = ACTIONS(3304), + [sym_private_property_identifier] = ACTIONS(3304), + [sym_this] = ACTIONS(3304), + [sym_super] = ACTIONS(3304), + [sym_true] = ACTIONS(3304), + [sym_false] = ACTIONS(3304), + [sym_null] = ACTIONS(3304), + [sym_undefined] = ACTIONS(3304), + [anon_sym_AT] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3304), + [anon_sym_readonly] = ACTIONS(3304), + [anon_sym_get] = ACTIONS(3304), + [anon_sym_set] = ACTIONS(3304), + [anon_sym_declare] = ACTIONS(3304), + [anon_sym_public] = ACTIONS(3304), + [anon_sym_private] = ACTIONS(3304), + [anon_sym_protected] = ACTIONS(3304), + [anon_sym_override] = ACTIONS(3304), + [anon_sym_module] = ACTIONS(3304), + [anon_sym_any] = ACTIONS(3304), + [anon_sym_number] = ACTIONS(3304), + [anon_sym_boolean] = ACTIONS(3304), + [anon_sym_string] = ACTIONS(3304), + [anon_sym_symbol] = ACTIONS(3304), + [anon_sym_object] = ACTIONS(3304), + [anon_sym_abstract] = ACTIONS(3304), + [anon_sym_interface] = ACTIONS(3304), + [anon_sym_enum] = ACTIONS(3304), [sym_html_comment] = ACTIONS(5), }, - [1597] = { - [sym_comment] = STATE(1597), - [ts_builtin_sym_end] = ACTIONS(3402), + [1458] = { + [sym_comment] = STATE(1458), + [ts_builtin_sym_end] = ACTIONS(3470), [sym_identifier] = ACTIONS(3134), [anon_sym_export] = ACTIONS(3134), [anon_sym_type] = ACTIONS(3134), @@ -194553,414 +182838,657 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3134), [sym_html_comment] = ACTIONS(5), }, - [1598] = { - [sym_comment] = STATE(1598), - [ts_builtin_sym_end] = ACTIONS(3404), - [sym_identifier] = ACTIONS(3136), - [anon_sym_export] = ACTIONS(3136), - [anon_sym_type] = ACTIONS(3136), - [anon_sym_namespace] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(3136), - [anon_sym_RBRACE] = ACTIONS(3136), - [anon_sym_typeof] = ACTIONS(3136), - [anon_sym_import] = ACTIONS(3136), - [anon_sym_with] = ACTIONS(3136), - [anon_sym_var] = ACTIONS(3136), - [anon_sym_let] = ACTIONS(3136), - [anon_sym_const] = ACTIONS(3136), - [anon_sym_BANG] = ACTIONS(3136), - [anon_sym_if] = ACTIONS(3136), - [anon_sym_switch] = ACTIONS(3136), - [anon_sym_for] = ACTIONS(3136), - [anon_sym_LPAREN] = ACTIONS(3136), - [anon_sym_await] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_do] = ACTIONS(3136), - [anon_sym_try] = ACTIONS(3136), - [anon_sym_break] = ACTIONS(3136), - [anon_sym_continue] = ACTIONS(3136), - [anon_sym_debugger] = ACTIONS(3136), - [anon_sym_return] = ACTIONS(3136), - [anon_sym_throw] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3136), - [anon_sym_yield] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3136), - [anon_sym_LTtemplate_GT] = ACTIONS(3136), - [anon_sym_DQUOTE] = ACTIONS(3136), - [anon_sym_SQUOTE] = ACTIONS(3136), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_async] = ACTIONS(3136), - [anon_sym_function] = ACTIONS(3136), - [anon_sym_new] = ACTIONS(3136), - [anon_sym_using] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_LT] = ACTIONS(3136), - [anon_sym_TILDE] = ACTIONS(3136), - [anon_sym_void] = ACTIONS(3136), - [anon_sym_delete] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3136), - [anon_sym_DASH_DASH] = ACTIONS(3136), + [1459] = { + [sym_comment] = STATE(1459), + [ts_builtin_sym_end] = ACTIONS(3384), + [sym_identifier] = ACTIONS(3278), + [anon_sym_export] = ACTIONS(3278), + [anon_sym_type] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3278), + [anon_sym_RBRACE] = ACTIONS(3278), + [anon_sym_typeof] = ACTIONS(3278), + [anon_sym_import] = ACTIONS(3278), + [anon_sym_with] = ACTIONS(3278), + [anon_sym_var] = ACTIONS(3278), + [anon_sym_let] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_BANG] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_LPAREN] = ACTIONS(3278), + [anon_sym_await] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_debugger] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3278), + [anon_sym_yield] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3278), + [anon_sym_LTtemplate_GT] = ACTIONS(3278), + [anon_sym_DQUOTE] = ACTIONS(3278), + [anon_sym_SQUOTE] = ACTIONS(3278), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_async] = ACTIONS(3278), + [anon_sym_function] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_using] = ACTIONS(3278), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_LT] = ACTIONS(3278), + [anon_sym_TILDE] = ACTIONS(3278), + [anon_sym_void] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_PLUS_PLUS] = ACTIONS(3278), + [anon_sym_DASH_DASH] = ACTIONS(3278), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3278), + [sym_number] = ACTIONS(3278), + [sym_private_property_identifier] = ACTIONS(3278), + [sym_this] = ACTIONS(3278), + [sym_super] = ACTIONS(3278), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [sym_null] = ACTIONS(3278), + [sym_undefined] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3278), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_readonly] = ACTIONS(3278), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_declare] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_override] = ACTIONS(3278), + [anon_sym_module] = ACTIONS(3278), + [anon_sym_any] = ACTIONS(3278), + [anon_sym_number] = ACTIONS(3278), + [anon_sym_boolean] = ACTIONS(3278), + [anon_sym_string] = ACTIONS(3278), + [anon_sym_symbol] = ACTIONS(3278), + [anon_sym_object] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_interface] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), + [sym_html_comment] = ACTIONS(5), + }, + [1460] = { + [sym_comment] = STATE(1460), + [ts_builtin_sym_end] = ACTIONS(3536), + [sym_identifier] = ACTIONS(3160), + [anon_sym_export] = ACTIONS(3160), + [anon_sym_type] = ACTIONS(3160), + [anon_sym_namespace] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3160), + [anon_sym_RBRACE] = ACTIONS(3160), + [anon_sym_typeof] = ACTIONS(3160), + [anon_sym_import] = ACTIONS(3160), + [anon_sym_with] = ACTIONS(3160), + [anon_sym_var] = ACTIONS(3160), + [anon_sym_let] = ACTIONS(3160), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_switch] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_await] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_do] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_debugger] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_yield] = ACTIONS(3160), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_LTtemplate_GT] = ACTIONS(3160), + [anon_sym_DQUOTE] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3160), + [anon_sym_class] = ACTIONS(3160), + [anon_sym_async] = ACTIONS(3160), + [anon_sym_function] = ACTIONS(3160), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_using] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_void] = ACTIONS(3160), + [anon_sym_delete] = ACTIONS(3160), + [anon_sym_PLUS_PLUS] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3160), + [sym_number] = ACTIONS(3160), + [sym_private_property_identifier] = ACTIONS(3160), + [sym_this] = ACTIONS(3160), + [sym_super] = ACTIONS(3160), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [sym_null] = ACTIONS(3160), + [sym_undefined] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3160), + [anon_sym_static] = ACTIONS(3160), + [anon_sym_readonly] = ACTIONS(3160), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_declare] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_override] = ACTIONS(3160), + [anon_sym_module] = ACTIONS(3160), + [anon_sym_any] = ACTIONS(3160), + [anon_sym_number] = ACTIONS(3160), + [anon_sym_boolean] = ACTIONS(3160), + [anon_sym_string] = ACTIONS(3160), + [anon_sym_symbol] = ACTIONS(3160), + [anon_sym_object] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_interface] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), + [sym_html_comment] = ACTIONS(5), + }, + [1461] = { + [sym_comment] = STATE(1461), + [ts_builtin_sym_end] = ACTIONS(3460), + [sym_identifier] = ACTIONS(3140), + [anon_sym_export] = ACTIONS(3140), + [anon_sym_type] = ACTIONS(3140), + [anon_sym_namespace] = ACTIONS(3140), + [anon_sym_LBRACE] = ACTIONS(3140), + [anon_sym_RBRACE] = ACTIONS(3140), + [anon_sym_typeof] = ACTIONS(3140), + [anon_sym_import] = ACTIONS(3140), + [anon_sym_with] = ACTIONS(3140), + [anon_sym_var] = ACTIONS(3140), + [anon_sym_let] = ACTIONS(3140), + [anon_sym_const] = ACTIONS(3140), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_if] = ACTIONS(3140), + [anon_sym_switch] = ACTIONS(3140), + [anon_sym_for] = ACTIONS(3140), + [anon_sym_LPAREN] = ACTIONS(3140), + [anon_sym_await] = ACTIONS(3140), + [anon_sym_while] = ACTIONS(3140), + [anon_sym_do] = ACTIONS(3140), + [anon_sym_try] = ACTIONS(3140), + [anon_sym_break] = ACTIONS(3140), + [anon_sym_continue] = ACTIONS(3140), + [anon_sym_debugger] = ACTIONS(3140), + [anon_sym_return] = ACTIONS(3140), + [anon_sym_throw] = ACTIONS(3140), + [anon_sym_SEMI] = ACTIONS(3140), + [anon_sym_yield] = ACTIONS(3140), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_LTtemplate_GT] = ACTIONS(3140), + [anon_sym_DQUOTE] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3140), + [anon_sym_class] = ACTIONS(3140), + [anon_sym_async] = ACTIONS(3140), + [anon_sym_function] = ACTIONS(3140), + [anon_sym_new] = ACTIONS(3140), + [anon_sym_using] = ACTIONS(3140), + [anon_sym_PLUS] = ACTIONS(3140), + [anon_sym_DASH] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3140), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_void] = ACTIONS(3140), + [anon_sym_delete] = ACTIONS(3140), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3140), + [sym_number] = ACTIONS(3140), + [sym_private_property_identifier] = ACTIONS(3140), + [sym_this] = ACTIONS(3140), + [sym_super] = ACTIONS(3140), + [sym_true] = ACTIONS(3140), + [sym_false] = ACTIONS(3140), + [sym_null] = ACTIONS(3140), + [sym_undefined] = ACTIONS(3140), + [anon_sym_AT] = ACTIONS(3140), + [anon_sym_static] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_get] = ACTIONS(3140), + [anon_sym_set] = ACTIONS(3140), + [anon_sym_declare] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_override] = ACTIONS(3140), + [anon_sym_module] = ACTIONS(3140), + [anon_sym_any] = ACTIONS(3140), + [anon_sym_number] = ACTIONS(3140), + [anon_sym_boolean] = ACTIONS(3140), + [anon_sym_string] = ACTIONS(3140), + [anon_sym_symbol] = ACTIONS(3140), + [anon_sym_object] = ACTIONS(3140), + [anon_sym_abstract] = ACTIONS(3140), + [anon_sym_interface] = ACTIONS(3140), + [anon_sym_enum] = ACTIONS(3140), + [sym_html_comment] = ACTIONS(5), + }, + [1462] = { + [sym_comment] = STATE(1462), + [ts_builtin_sym_end] = ACTIONS(3494), + [sym_identifier] = ACTIONS(3182), + [anon_sym_export] = ACTIONS(3182), + [anon_sym_type] = ACTIONS(3182), + [anon_sym_namespace] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3182), + [anon_sym_RBRACE] = ACTIONS(3182), + [anon_sym_typeof] = ACTIONS(3182), + [anon_sym_import] = ACTIONS(3182), + [anon_sym_with] = ACTIONS(3182), + [anon_sym_var] = ACTIONS(3182), + [anon_sym_let] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_switch] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3182), + [anon_sym_await] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_do] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_debugger] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3182), + [anon_sym_yield] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3182), + [anon_sym_LTtemplate_GT] = ACTIONS(3182), + [anon_sym_DQUOTE] = ACTIONS(3182), + [anon_sym_SQUOTE] = ACTIONS(3182), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_async] = ACTIONS(3182), + [anon_sym_function] = ACTIONS(3182), + [anon_sym_new] = ACTIONS(3182), + [anon_sym_using] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_LT] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3182), + [anon_sym_void] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3182), + [anon_sym_DASH_DASH] = ACTIONS(3182), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3136), - [sym_number] = ACTIONS(3136), - [sym_private_property_identifier] = ACTIONS(3136), - [sym_this] = ACTIONS(3136), - [sym_super] = ACTIONS(3136), - [sym_true] = ACTIONS(3136), - [sym_false] = ACTIONS(3136), - [sym_null] = ACTIONS(3136), - [sym_undefined] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3136), - [anon_sym_static] = ACTIONS(3136), - [anon_sym_readonly] = ACTIONS(3136), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_declare] = ACTIONS(3136), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [anon_sym_override] = ACTIONS(3136), - [anon_sym_module] = ACTIONS(3136), - [anon_sym_any] = ACTIONS(3136), - [anon_sym_number] = ACTIONS(3136), - [anon_sym_boolean] = ACTIONS(3136), - [anon_sym_string] = ACTIONS(3136), - [anon_sym_symbol] = ACTIONS(3136), - [anon_sym_object] = ACTIONS(3136), - [anon_sym_abstract] = ACTIONS(3136), - [anon_sym_interface] = ACTIONS(3136), - [anon_sym_enum] = ACTIONS(3136), + [anon_sym_BQUOTE] = ACTIONS(3182), + [sym_number] = ACTIONS(3182), + [sym_private_property_identifier] = ACTIONS(3182), + [sym_this] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_null] = ACTIONS(3182), + [sym_undefined] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3182), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_readonly] = ACTIONS(3182), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_declare] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_override] = ACTIONS(3182), + [anon_sym_module] = ACTIONS(3182), + [anon_sym_any] = ACTIONS(3182), + [anon_sym_number] = ACTIONS(3182), + [anon_sym_boolean] = ACTIONS(3182), + [anon_sym_string] = ACTIONS(3182), + [anon_sym_symbol] = ACTIONS(3182), + [anon_sym_object] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_interface] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), [sym_html_comment] = ACTIONS(5), }, - [1599] = { - [sym_comment] = STATE(1599), - [ts_builtin_sym_end] = ACTIONS(3498), - [sym_identifier] = ACTIONS(3358), - [anon_sym_export] = ACTIONS(3358), - [anon_sym_type] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_RBRACE] = ACTIONS(3358), - [anon_sym_typeof] = ACTIONS(3358), - [anon_sym_import] = ACTIONS(3358), - [anon_sym_with] = ACTIONS(3358), - [anon_sym_var] = ACTIONS(3358), - [anon_sym_let] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_await] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_debugger] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_LTtemplate_GT] = ACTIONS(3358), - [anon_sym_DQUOTE] = ACTIONS(3358), - [anon_sym_SQUOTE] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_async] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_void] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), + [1463] = { + [sym_comment] = STATE(1463), + [ts_builtin_sym_end] = ACTIONS(3458), + [sym_identifier] = ACTIONS(3138), + [anon_sym_export] = ACTIONS(3138), + [anon_sym_type] = ACTIONS(3138), + [anon_sym_namespace] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_typeof] = ACTIONS(3138), + [anon_sym_import] = ACTIONS(3138), + [anon_sym_with] = ACTIONS(3138), + [anon_sym_var] = ACTIONS(3138), + [anon_sym_let] = ACTIONS(3138), + [anon_sym_const] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3138), + [anon_sym_if] = ACTIONS(3138), + [anon_sym_switch] = ACTIONS(3138), + [anon_sym_for] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3138), + [anon_sym_await] = ACTIONS(3138), + [anon_sym_while] = ACTIONS(3138), + [anon_sym_do] = ACTIONS(3138), + [anon_sym_try] = ACTIONS(3138), + [anon_sym_break] = ACTIONS(3138), + [anon_sym_continue] = ACTIONS(3138), + [anon_sym_debugger] = ACTIONS(3138), + [anon_sym_return] = ACTIONS(3138), + [anon_sym_throw] = ACTIONS(3138), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_yield] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_LTtemplate_GT] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3138), + [anon_sym_SQUOTE] = ACTIONS(3138), + [anon_sym_class] = ACTIONS(3138), + [anon_sym_async] = ACTIONS(3138), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_new] = ACTIONS(3138), + [anon_sym_using] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_TILDE] = ACTIONS(3138), + [anon_sym_void] = ACTIONS(3138), + [anon_sym_delete] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3358), - [sym_number] = ACTIONS(3358), - [sym_private_property_identifier] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), - [sym_super] = ACTIONS(3358), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [sym_null] = ACTIONS(3358), - [sym_undefined] = ACTIONS(3358), - [anon_sym_AT] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3358), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_declare] = ACTIONS(3358), - [anon_sym_public] = ACTIONS(3358), - [anon_sym_private] = ACTIONS(3358), - [anon_sym_protected] = ACTIONS(3358), - [anon_sym_override] = ACTIONS(3358), - [anon_sym_module] = ACTIONS(3358), - [anon_sym_any] = ACTIONS(3358), - [anon_sym_number] = ACTIONS(3358), - [anon_sym_boolean] = ACTIONS(3358), - [anon_sym_string] = ACTIONS(3358), - [anon_sym_symbol] = ACTIONS(3358), - [anon_sym_object] = ACTIONS(3358), - [anon_sym_abstract] = ACTIONS(3358), - [anon_sym_interface] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), + [anon_sym_BQUOTE] = ACTIONS(3138), + [sym_number] = ACTIONS(3138), + [sym_private_property_identifier] = ACTIONS(3138), + [sym_this] = ACTIONS(3138), + [sym_super] = ACTIONS(3138), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_AT] = ACTIONS(3138), + [anon_sym_static] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3138), + [anon_sym_set] = ACTIONS(3138), + [anon_sym_declare] = ACTIONS(3138), + [anon_sym_public] = ACTIONS(3138), + [anon_sym_private] = ACTIONS(3138), + [anon_sym_protected] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3138), + [anon_sym_module] = ACTIONS(3138), + [anon_sym_any] = ACTIONS(3138), + [anon_sym_number] = ACTIONS(3138), + [anon_sym_boolean] = ACTIONS(3138), + [anon_sym_string] = ACTIONS(3138), + [anon_sym_symbol] = ACTIONS(3138), + [anon_sym_object] = ACTIONS(3138), + [anon_sym_abstract] = ACTIONS(3138), + [anon_sym_interface] = ACTIONS(3138), + [anon_sym_enum] = ACTIONS(3138), [sym_html_comment] = ACTIONS(5), }, - [1600] = { - [sym_comment] = STATE(1600), - [ts_builtin_sym_end] = ACTIONS(3498), - [sym_identifier] = ACTIONS(3358), - [anon_sym_export] = ACTIONS(3358), - [anon_sym_type] = ACTIONS(3358), - [anon_sym_namespace] = ACTIONS(3358), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_RBRACE] = ACTIONS(3358), - [anon_sym_typeof] = ACTIONS(3358), - [anon_sym_import] = ACTIONS(3358), - [anon_sym_with] = ACTIONS(3358), - [anon_sym_var] = ACTIONS(3358), - [anon_sym_let] = ACTIONS(3358), - [anon_sym_const] = ACTIONS(3358), - [anon_sym_BANG] = ACTIONS(3358), - [anon_sym_if] = ACTIONS(3358), - [anon_sym_switch] = ACTIONS(3358), - [anon_sym_for] = ACTIONS(3358), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_await] = ACTIONS(3358), - [anon_sym_while] = ACTIONS(3358), - [anon_sym_do] = ACTIONS(3358), - [anon_sym_try] = ACTIONS(3358), - [anon_sym_break] = ACTIONS(3358), - [anon_sym_continue] = ACTIONS(3358), - [anon_sym_debugger] = ACTIONS(3358), - [anon_sym_return] = ACTIONS(3358), - [anon_sym_throw] = ACTIONS(3358), - [anon_sym_SEMI] = ACTIONS(3358), - [anon_sym_yield] = ACTIONS(3358), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_LTtemplate_GT] = ACTIONS(3358), - [anon_sym_DQUOTE] = ACTIONS(3358), - [anon_sym_SQUOTE] = ACTIONS(3358), - [anon_sym_class] = ACTIONS(3358), - [anon_sym_async] = ACTIONS(3358), - [anon_sym_function] = ACTIONS(3358), - [anon_sym_new] = ACTIONS(3358), - [anon_sym_using] = ACTIONS(3358), - [anon_sym_PLUS] = ACTIONS(3358), - [anon_sym_DASH] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_void] = ACTIONS(3358), - [anon_sym_delete] = ACTIONS(3358), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), + [1464] = { + [sym_comment] = STATE(1464), + [ts_builtin_sym_end] = ACTIONS(3468), + [sym_identifier] = ACTIONS(3196), + [anon_sym_export] = ACTIONS(3196), + [anon_sym_type] = ACTIONS(3196), + [anon_sym_namespace] = ACTIONS(3196), + [anon_sym_LBRACE] = ACTIONS(3196), + [anon_sym_RBRACE] = ACTIONS(3196), + [anon_sym_typeof] = ACTIONS(3196), + [anon_sym_import] = ACTIONS(3196), + [anon_sym_with] = ACTIONS(3196), + [anon_sym_var] = ACTIONS(3196), + [anon_sym_let] = ACTIONS(3196), + [anon_sym_const] = ACTIONS(3196), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_if] = ACTIONS(3196), + [anon_sym_switch] = ACTIONS(3196), + [anon_sym_for] = ACTIONS(3196), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_await] = ACTIONS(3196), + [anon_sym_while] = ACTIONS(3196), + [anon_sym_do] = ACTIONS(3196), + [anon_sym_try] = ACTIONS(3196), + [anon_sym_break] = ACTIONS(3196), + [anon_sym_continue] = ACTIONS(3196), + [anon_sym_debugger] = ACTIONS(3196), + [anon_sym_return] = ACTIONS(3196), + [anon_sym_throw] = ACTIONS(3196), + [anon_sym_SEMI] = ACTIONS(3196), + [anon_sym_yield] = ACTIONS(3196), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_LTtemplate_GT] = ACTIONS(3196), + [anon_sym_DQUOTE] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3196), + [anon_sym_class] = ACTIONS(3196), + [anon_sym_async] = ACTIONS(3196), + [anon_sym_function] = ACTIONS(3196), + [anon_sym_new] = ACTIONS(3196), + [anon_sym_using] = ACTIONS(3196), + [anon_sym_PLUS] = ACTIONS(3196), + [anon_sym_DASH] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3196), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_TILDE] = ACTIONS(3196), + [anon_sym_void] = ACTIONS(3196), + [anon_sym_delete] = ACTIONS(3196), + [anon_sym_PLUS_PLUS] = ACTIONS(3196), + [anon_sym_DASH_DASH] = ACTIONS(3196), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3358), - [sym_number] = ACTIONS(3358), - [sym_private_property_identifier] = ACTIONS(3358), - [sym_this] = ACTIONS(3358), - [sym_super] = ACTIONS(3358), - [sym_true] = ACTIONS(3358), - [sym_false] = ACTIONS(3358), - [sym_null] = ACTIONS(3358), - [sym_undefined] = ACTIONS(3358), - [anon_sym_AT] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3358), - [anon_sym_readonly] = ACTIONS(3358), - [anon_sym_get] = ACTIONS(3358), - [anon_sym_set] = ACTIONS(3358), - [anon_sym_declare] = ACTIONS(3358), - [anon_sym_public] = ACTIONS(3358), - [anon_sym_private] = ACTIONS(3358), - [anon_sym_protected] = ACTIONS(3358), - [anon_sym_override] = ACTIONS(3358), - [anon_sym_module] = ACTIONS(3358), - [anon_sym_any] = ACTIONS(3358), - [anon_sym_number] = ACTIONS(3358), - [anon_sym_boolean] = ACTIONS(3358), - [anon_sym_string] = ACTIONS(3358), - [anon_sym_symbol] = ACTIONS(3358), - [anon_sym_object] = ACTIONS(3358), - [anon_sym_abstract] = ACTIONS(3358), - [anon_sym_interface] = ACTIONS(3358), - [anon_sym_enum] = ACTIONS(3358), + [anon_sym_BQUOTE] = ACTIONS(3196), + [sym_number] = ACTIONS(3196), + [sym_private_property_identifier] = ACTIONS(3196), + [sym_this] = ACTIONS(3196), + [sym_super] = ACTIONS(3196), + [sym_true] = ACTIONS(3196), + [sym_false] = ACTIONS(3196), + [sym_null] = ACTIONS(3196), + [sym_undefined] = ACTIONS(3196), + [anon_sym_AT] = ACTIONS(3196), + [anon_sym_static] = ACTIONS(3196), + [anon_sym_readonly] = ACTIONS(3196), + [anon_sym_get] = ACTIONS(3196), + [anon_sym_set] = ACTIONS(3196), + [anon_sym_declare] = ACTIONS(3196), + [anon_sym_public] = ACTIONS(3196), + [anon_sym_private] = ACTIONS(3196), + [anon_sym_protected] = ACTIONS(3196), + [anon_sym_override] = ACTIONS(3196), + [anon_sym_module] = ACTIONS(3196), + [anon_sym_any] = ACTIONS(3196), + [anon_sym_number] = ACTIONS(3196), + [anon_sym_boolean] = ACTIONS(3196), + [anon_sym_string] = ACTIONS(3196), + [anon_sym_symbol] = ACTIONS(3196), + [anon_sym_object] = ACTIONS(3196), + [anon_sym_abstract] = ACTIONS(3196), + [anon_sym_interface] = ACTIONS(3196), + [anon_sym_enum] = ACTIONS(3196), [sym_html_comment] = ACTIONS(5), }, - [1601] = { - [sym_comment] = STATE(1601), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym_identifier] = ACTIONS(2093), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_type] = ACTIONS(2093), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_typeof] = ACTIONS(2093), - [anon_sym_import] = ACTIONS(2093), - [anon_sym_with] = ACTIONS(2093), - [anon_sym_var] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [anon_sym_BANG] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_switch] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_await] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_debugger] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_throw] = ACTIONS(2093), - [anon_sym_SEMI] = ACTIONS(2093), - [anon_sym_yield] = ACTIONS(2093), - [anon_sym_LBRACK] = ACTIONS(2093), - [anon_sym_LTtemplate_GT] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [anon_sym_SQUOTE] = ACTIONS(2093), - [anon_sym_class] = ACTIONS(2093), - [anon_sym_async] = ACTIONS(2093), - [anon_sym_function] = ACTIONS(2093), - [anon_sym_new] = ACTIONS(2093), - [anon_sym_using] = ACTIONS(2093), - [anon_sym_PLUS] = ACTIONS(2093), - [anon_sym_DASH] = ACTIONS(2093), - [anon_sym_SLASH] = ACTIONS(2093), - [anon_sym_LT] = ACTIONS(2093), - [anon_sym_TILDE] = ACTIONS(2093), - [anon_sym_void] = ACTIONS(2093), - [anon_sym_delete] = ACTIONS(2093), - [anon_sym_PLUS_PLUS] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2093), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2093), - [sym_number] = ACTIONS(2093), - [sym_private_property_identifier] = ACTIONS(2093), - [sym_this] = ACTIONS(2093), - [sym_super] = ACTIONS(2093), - [sym_true] = ACTIONS(2093), - [sym_false] = ACTIONS(2093), - [sym_null] = ACTIONS(2093), - [sym_undefined] = ACTIONS(2093), - [anon_sym_AT] = ACTIONS(2093), - [anon_sym_static] = ACTIONS(2093), - [anon_sym_readonly] = ACTIONS(2093), - [anon_sym_get] = ACTIONS(2093), - [anon_sym_set] = ACTIONS(2093), - [anon_sym_declare] = ACTIONS(2093), - [anon_sym_public] = ACTIONS(2093), - [anon_sym_private] = ACTIONS(2093), - [anon_sym_protected] = ACTIONS(2093), - [anon_sym_override] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_any] = ACTIONS(2093), - [anon_sym_number] = ACTIONS(2093), - [anon_sym_boolean] = ACTIONS(2093), - [anon_sym_string] = ACTIONS(2093), - [anon_sym_symbol] = ACTIONS(2093), - [anon_sym_object] = ACTIONS(2093), - [anon_sym_abstract] = ACTIONS(2093), - [anon_sym_interface] = ACTIONS(2093), - [anon_sym_enum] = ACTIONS(2093), + [1465] = { + [sym_comment] = STATE(1465), + [ts_builtin_sym_end] = ACTIONS(3458), + [sym_identifier] = ACTIONS(3138), + [anon_sym_export] = ACTIONS(3138), + [anon_sym_type] = ACTIONS(3138), + [anon_sym_namespace] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_typeof] = ACTIONS(3138), + [anon_sym_import] = ACTIONS(3138), + [anon_sym_with] = ACTIONS(3138), + [anon_sym_var] = ACTIONS(3138), + [anon_sym_let] = ACTIONS(3138), + [anon_sym_const] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3138), + [anon_sym_if] = ACTIONS(3138), + [anon_sym_switch] = ACTIONS(3138), + [anon_sym_for] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3138), + [anon_sym_await] = ACTIONS(3138), + [anon_sym_while] = ACTIONS(3138), + [anon_sym_do] = ACTIONS(3138), + [anon_sym_try] = ACTIONS(3138), + [anon_sym_break] = ACTIONS(3138), + [anon_sym_continue] = ACTIONS(3138), + [anon_sym_debugger] = ACTIONS(3138), + [anon_sym_return] = ACTIONS(3138), + [anon_sym_throw] = ACTIONS(3138), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_yield] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_LTtemplate_GT] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3138), + [anon_sym_SQUOTE] = ACTIONS(3138), + [anon_sym_class] = ACTIONS(3138), + [anon_sym_async] = ACTIONS(3138), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_new] = ACTIONS(3138), + [anon_sym_using] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_TILDE] = ACTIONS(3138), + [anon_sym_void] = ACTIONS(3138), + [anon_sym_delete] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3138), + [sym_number] = ACTIONS(3138), + [sym_private_property_identifier] = ACTIONS(3138), + [sym_this] = ACTIONS(3138), + [sym_super] = ACTIONS(3138), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_AT] = ACTIONS(3138), + [anon_sym_static] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3138), + [anon_sym_set] = ACTIONS(3138), + [anon_sym_declare] = ACTIONS(3138), + [anon_sym_public] = ACTIONS(3138), + [anon_sym_private] = ACTIONS(3138), + [anon_sym_protected] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3138), + [anon_sym_module] = ACTIONS(3138), + [anon_sym_any] = ACTIONS(3138), + [anon_sym_number] = ACTIONS(3138), + [anon_sym_boolean] = ACTIONS(3138), + [anon_sym_string] = ACTIONS(3138), + [anon_sym_symbol] = ACTIONS(3138), + [anon_sym_object] = ACTIONS(3138), + [anon_sym_abstract] = ACTIONS(3138), + [anon_sym_interface] = ACTIONS(3138), + [anon_sym_enum] = ACTIONS(3138), [sym_html_comment] = ACTIONS(5), }, - [1602] = { - [sym_comment] = STATE(1602), - [ts_builtin_sym_end] = ACTIONS(3406), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3124), - [anon_sym_RBRACE] = ACTIONS(3124), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3124), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3124), - [anon_sym_LTtemplate_GT] = ACTIONS(3124), - [anon_sym_DQUOTE] = ACTIONS(3124), - [anon_sym_SQUOTE] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_using] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_LT] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3124), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3124), - [anon_sym_DASH_DASH] = ACTIONS(3124), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3124), - [sym_number] = ACTIONS(3124), - [sym_private_property_identifier] = ACTIONS(3124), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3124), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_override] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_object] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [1466] = { + [sym_comment] = STATE(1466), + [ts_builtin_sym_end] = ACTIONS(3458), + [sym_identifier] = ACTIONS(3138), + [anon_sym_export] = ACTIONS(3138), + [anon_sym_type] = ACTIONS(3138), + [anon_sym_namespace] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3138), + [anon_sym_RBRACE] = ACTIONS(3138), + [anon_sym_typeof] = ACTIONS(3138), + [anon_sym_import] = ACTIONS(3138), + [anon_sym_with] = ACTIONS(3138), + [anon_sym_var] = ACTIONS(3138), + [anon_sym_let] = ACTIONS(3138), + [anon_sym_const] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3138), + [anon_sym_if] = ACTIONS(3138), + [anon_sym_switch] = ACTIONS(3138), + [anon_sym_for] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3138), + [anon_sym_await] = ACTIONS(3138), + [anon_sym_while] = ACTIONS(3138), + [anon_sym_do] = ACTIONS(3138), + [anon_sym_try] = ACTIONS(3138), + [anon_sym_break] = ACTIONS(3138), + [anon_sym_continue] = ACTIONS(3138), + [anon_sym_debugger] = ACTIONS(3138), + [anon_sym_return] = ACTIONS(3138), + [anon_sym_throw] = ACTIONS(3138), + [anon_sym_SEMI] = ACTIONS(3138), + [anon_sym_yield] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3138), + [anon_sym_LTtemplate_GT] = ACTIONS(3138), + [anon_sym_DQUOTE] = ACTIONS(3138), + [anon_sym_SQUOTE] = ACTIONS(3138), + [anon_sym_class] = ACTIONS(3138), + [anon_sym_async] = ACTIONS(3138), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_new] = ACTIONS(3138), + [anon_sym_using] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_LT] = ACTIONS(3138), + [anon_sym_TILDE] = ACTIONS(3138), + [anon_sym_void] = ACTIONS(3138), + [anon_sym_delete] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3138), + [anon_sym_DASH_DASH] = ACTIONS(3138), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3138), + [sym_number] = ACTIONS(3138), + [sym_private_property_identifier] = ACTIONS(3138), + [sym_this] = ACTIONS(3138), + [sym_super] = ACTIONS(3138), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_AT] = ACTIONS(3138), + [anon_sym_static] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3138), + [anon_sym_set] = ACTIONS(3138), + [anon_sym_declare] = ACTIONS(3138), + [anon_sym_public] = ACTIONS(3138), + [anon_sym_private] = ACTIONS(3138), + [anon_sym_protected] = ACTIONS(3138), + [anon_sym_override] = ACTIONS(3138), + [anon_sym_module] = ACTIONS(3138), + [anon_sym_any] = ACTIONS(3138), + [anon_sym_number] = ACTIONS(3138), + [anon_sym_boolean] = ACTIONS(3138), + [anon_sym_string] = ACTIONS(3138), + [anon_sym_symbol] = ACTIONS(3138), + [anon_sym_object] = ACTIONS(3138), + [anon_sym_abstract] = ACTIONS(3138), + [anon_sym_interface] = ACTIONS(3138), + [anon_sym_enum] = ACTIONS(3138), [sym_html_comment] = ACTIONS(5), }, - [1603] = { - [sym_comment] = STATE(1603), - [ts_builtin_sym_end] = ACTIONS(3408), + [1467] = { + [sym_comment] = STATE(1467), + [ts_builtin_sym_end] = ACTIONS(3496), [sym_identifier] = ACTIONS(3168), [anon_sym_export] = ACTIONS(3168), [anon_sym_type] = ACTIONS(3168), @@ -195039,900 +183567,981 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3168), [sym_html_comment] = ACTIONS(5), }, - [1604] = { - [sym_comment] = STATE(1604), - [ts_builtin_sym_end] = ACTIONS(3410), - [sym_identifier] = ACTIONS(3140), - [anon_sym_export] = ACTIONS(3140), - [anon_sym_type] = ACTIONS(3140), - [anon_sym_namespace] = ACTIONS(3140), - [anon_sym_LBRACE] = ACTIONS(3140), - [anon_sym_RBRACE] = ACTIONS(3140), - [anon_sym_typeof] = ACTIONS(3140), - [anon_sym_import] = ACTIONS(3140), - [anon_sym_with] = ACTIONS(3140), - [anon_sym_var] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_const] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_switch] = ACTIONS(3140), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3140), - [anon_sym_await] = ACTIONS(3140), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_break] = ACTIONS(3140), - [anon_sym_continue] = ACTIONS(3140), - [anon_sym_debugger] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_throw] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3140), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_LBRACK] = ACTIONS(3140), - [anon_sym_LTtemplate_GT] = ACTIONS(3140), - [anon_sym_DQUOTE] = ACTIONS(3140), - [anon_sym_SQUOTE] = ACTIONS(3140), - [anon_sym_class] = ACTIONS(3140), - [anon_sym_async] = ACTIONS(3140), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_using] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_SLASH] = ACTIONS(3140), - [anon_sym_LT] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3140), - [anon_sym_void] = ACTIONS(3140), - [anon_sym_delete] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3140), - [anon_sym_DASH_DASH] = ACTIONS(3140), + [1468] = { + [sym_comment] = STATE(1468), + [ts_builtin_sym_end] = ACTIONS(3504), + [sym_identifier] = ACTIONS(3188), + [anon_sym_export] = ACTIONS(3188), + [anon_sym_type] = ACTIONS(3188), + [anon_sym_namespace] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_typeof] = ACTIONS(3188), + [anon_sym_import] = ACTIONS(3188), + [anon_sym_with] = ACTIONS(3188), + [anon_sym_var] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_await] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_break] = ACTIONS(3188), + [anon_sym_continue] = ACTIONS(3188), + [anon_sym_debugger] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_throw] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LTtemplate_GT] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_SQUOTE] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_async] = ACTIONS(3188), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_void] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3188), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3140), - [sym_number] = ACTIONS(3140), - [sym_private_property_identifier] = ACTIONS(3140), - [sym_this] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_undefined] = ACTIONS(3140), - [anon_sym_AT] = ACTIONS(3140), - [anon_sym_static] = ACTIONS(3140), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3140), - [anon_sym_set] = ACTIONS(3140), - [anon_sym_declare] = ACTIONS(3140), - [anon_sym_public] = ACTIONS(3140), - [anon_sym_private] = ACTIONS(3140), - [anon_sym_protected] = ACTIONS(3140), - [anon_sym_override] = ACTIONS(3140), - [anon_sym_module] = ACTIONS(3140), - [anon_sym_any] = ACTIONS(3140), - [anon_sym_number] = ACTIONS(3140), - [anon_sym_boolean] = ACTIONS(3140), - [anon_sym_string] = ACTIONS(3140), - [anon_sym_symbol] = ACTIONS(3140), - [anon_sym_object] = ACTIONS(3140), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_interface] = ACTIONS(3140), - [anon_sym_enum] = ACTIONS(3140), - [sym_html_comment] = ACTIONS(5), - }, - [1605] = { - [sym_comment] = STATE(1605), - [ts_builtin_sym_end] = ACTIONS(3538), - [sym_identifier] = ACTIONS(3186), - [anon_sym_export] = ACTIONS(3186), - [anon_sym_type] = ACTIONS(3186), - [anon_sym_namespace] = ACTIONS(3186), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_typeof] = ACTIONS(3186), - [anon_sym_import] = ACTIONS(3186), - [anon_sym_with] = ACTIONS(3186), - [anon_sym_var] = ACTIONS(3186), - [anon_sym_let] = ACTIONS(3186), - [anon_sym_const] = ACTIONS(3186), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_if] = ACTIONS(3186), - [anon_sym_switch] = ACTIONS(3186), - [anon_sym_for] = ACTIONS(3186), - [anon_sym_LPAREN] = ACTIONS(3186), - [anon_sym_await] = ACTIONS(3186), - [anon_sym_while] = ACTIONS(3186), - [anon_sym_do] = ACTIONS(3186), - [anon_sym_try] = ACTIONS(3186), - [anon_sym_break] = ACTIONS(3186), - [anon_sym_continue] = ACTIONS(3186), - [anon_sym_debugger] = ACTIONS(3186), - [anon_sym_return] = ACTIONS(3186), - [anon_sym_throw] = ACTIONS(3186), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_yield] = ACTIONS(3186), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_LTtemplate_GT] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3186), - [anon_sym_class] = ACTIONS(3186), - [anon_sym_async] = ACTIONS(3186), - [anon_sym_function] = ACTIONS(3186), - [anon_sym_new] = ACTIONS(3186), - [anon_sym_using] = ACTIONS(3186), - [anon_sym_PLUS] = ACTIONS(3186), - [anon_sym_DASH] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_TILDE] = ACTIONS(3186), - [anon_sym_void] = ACTIONS(3186), - [anon_sym_delete] = ACTIONS(3186), - [anon_sym_PLUS_PLUS] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3186), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3186), - [sym_number] = ACTIONS(3186), - [sym_private_property_identifier] = ACTIONS(3186), - [sym_this] = ACTIONS(3186), - [sym_super] = ACTIONS(3186), - [sym_true] = ACTIONS(3186), - [sym_false] = ACTIONS(3186), - [sym_null] = ACTIONS(3186), - [sym_undefined] = ACTIONS(3186), - [anon_sym_AT] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3186), - [anon_sym_readonly] = ACTIONS(3186), - [anon_sym_get] = ACTIONS(3186), - [anon_sym_set] = ACTIONS(3186), - [anon_sym_declare] = ACTIONS(3186), - [anon_sym_public] = ACTIONS(3186), - [anon_sym_private] = ACTIONS(3186), - [anon_sym_protected] = ACTIONS(3186), - [anon_sym_override] = ACTIONS(3186), - [anon_sym_module] = ACTIONS(3186), - [anon_sym_any] = ACTIONS(3186), - [anon_sym_number] = ACTIONS(3186), - [anon_sym_boolean] = ACTIONS(3186), - [anon_sym_string] = ACTIONS(3186), - [anon_sym_symbol] = ACTIONS(3186), - [anon_sym_object] = ACTIONS(3186), - [anon_sym_abstract] = ACTIONS(3186), - [anon_sym_interface] = ACTIONS(3186), - [anon_sym_enum] = ACTIONS(3186), + [anon_sym_BQUOTE] = ACTIONS(3188), + [sym_number] = ACTIONS(3188), + [sym_private_property_identifier] = ACTIONS(3188), + [sym_this] = ACTIONS(3188), + [sym_super] = ACTIONS(3188), + [sym_true] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [sym_null] = ACTIONS(3188), + [sym_undefined] = ACTIONS(3188), + [anon_sym_AT] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_readonly] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3188), + [anon_sym_set] = ACTIONS(3188), + [anon_sym_declare] = ACTIONS(3188), + [anon_sym_public] = ACTIONS(3188), + [anon_sym_private] = ACTIONS(3188), + [anon_sym_protected] = ACTIONS(3188), + [anon_sym_override] = ACTIONS(3188), + [anon_sym_module] = ACTIONS(3188), + [anon_sym_any] = ACTIONS(3188), + [anon_sym_number] = ACTIONS(3188), + [anon_sym_boolean] = ACTIONS(3188), + [anon_sym_string] = ACTIONS(3188), + [anon_sym_symbol] = ACTIONS(3188), + [anon_sym_object] = ACTIONS(3188), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_interface] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), [sym_html_comment] = ACTIONS(5), }, - [1606] = { - [sym_comment] = STATE(1606), - [ts_builtin_sym_end] = ACTIONS(3500), - [sym_identifier] = ACTIONS(3356), - [anon_sym_export] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_namespace] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3356), - [anon_sym_RBRACE] = ACTIONS(3356), - [anon_sym_typeof] = ACTIONS(3356), - [anon_sym_import] = ACTIONS(3356), - [anon_sym_with] = ACTIONS(3356), - [anon_sym_var] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_switch] = ACTIONS(3356), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3356), - [anon_sym_await] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_break] = ACTIONS(3356), - [anon_sym_continue] = ACTIONS(3356), - [anon_sym_debugger] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_throw] = ACTIONS(3356), - [anon_sym_SEMI] = ACTIONS(3356), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3356), - [anon_sym_LTtemplate_GT] = ACTIONS(3356), - [anon_sym_DQUOTE] = ACTIONS(3356), - [anon_sym_SQUOTE] = ACTIONS(3356), - [anon_sym_class] = ACTIONS(3356), - [anon_sym_async] = ACTIONS(3356), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_using] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_SLASH] = ACTIONS(3356), - [anon_sym_LT] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3356), - [anon_sym_void] = ACTIONS(3356), - [anon_sym_delete] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3356), - [anon_sym_DASH_DASH] = ACTIONS(3356), + [1469] = { + [sym_comment] = STATE(1469), + [ts_builtin_sym_end] = ACTIONS(3478), + [sym_identifier] = ACTIONS(3288), + [anon_sym_export] = ACTIONS(3288), + [anon_sym_type] = ACTIONS(3288), + [anon_sym_namespace] = ACTIONS(3288), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_typeof] = ACTIONS(3288), + [anon_sym_import] = ACTIONS(3288), + [anon_sym_with] = ACTIONS(3288), + [anon_sym_var] = ACTIONS(3288), + [anon_sym_let] = ACTIONS(3288), + [anon_sym_const] = ACTIONS(3288), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_if] = ACTIONS(3288), + [anon_sym_switch] = ACTIONS(3288), + [anon_sym_for] = ACTIONS(3288), + [anon_sym_LPAREN] = ACTIONS(3288), + [anon_sym_await] = ACTIONS(3288), + [anon_sym_while] = ACTIONS(3288), + [anon_sym_do] = ACTIONS(3288), + [anon_sym_try] = ACTIONS(3288), + [anon_sym_break] = ACTIONS(3288), + [anon_sym_continue] = ACTIONS(3288), + [anon_sym_debugger] = ACTIONS(3288), + [anon_sym_return] = ACTIONS(3288), + [anon_sym_throw] = ACTIONS(3288), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_yield] = ACTIONS(3288), + [anon_sym_LBRACK] = ACTIONS(3288), + [anon_sym_LTtemplate_GT] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [anon_sym_class] = ACTIONS(3288), + [anon_sym_async] = ACTIONS(3288), + [anon_sym_function] = ACTIONS(3288), + [anon_sym_new] = ACTIONS(3288), + [anon_sym_using] = ACTIONS(3288), + [anon_sym_PLUS] = ACTIONS(3288), + [anon_sym_DASH] = ACTIONS(3288), + [anon_sym_SLASH] = ACTIONS(3288), + [anon_sym_LT] = ACTIONS(3288), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_void] = ACTIONS(3288), + [anon_sym_delete] = ACTIONS(3288), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_DASH_DASH] = ACTIONS(3288), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3356), - [sym_number] = ACTIONS(3356), - [sym_private_property_identifier] = ACTIONS(3356), - [sym_this] = ACTIONS(3356), - [sym_super] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_null] = ACTIONS(3356), - [sym_undefined] = ACTIONS(3356), - [anon_sym_AT] = ACTIONS(3356), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3356), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3356), - [anon_sym_declare] = ACTIONS(3356), - [anon_sym_public] = ACTIONS(3356), - [anon_sym_private] = ACTIONS(3356), - [anon_sym_protected] = ACTIONS(3356), - [anon_sym_override] = ACTIONS(3356), - [anon_sym_module] = ACTIONS(3356), - [anon_sym_any] = ACTIONS(3356), - [anon_sym_number] = ACTIONS(3356), - [anon_sym_boolean] = ACTIONS(3356), - [anon_sym_string] = ACTIONS(3356), - [anon_sym_symbol] = ACTIONS(3356), - [anon_sym_object] = ACTIONS(3356), - [anon_sym_abstract] = ACTIONS(3356), - [anon_sym_interface] = ACTIONS(3356), - [anon_sym_enum] = ACTIONS(3356), + [anon_sym_BQUOTE] = ACTIONS(3288), + [sym_number] = ACTIONS(3288), + [sym_private_property_identifier] = ACTIONS(3288), + [sym_this] = ACTIONS(3288), + [sym_super] = ACTIONS(3288), + [sym_true] = ACTIONS(3288), + [sym_false] = ACTIONS(3288), + [sym_null] = ACTIONS(3288), + [sym_undefined] = ACTIONS(3288), + [anon_sym_AT] = ACTIONS(3288), + [anon_sym_static] = ACTIONS(3288), + [anon_sym_readonly] = ACTIONS(3288), + [anon_sym_get] = ACTIONS(3288), + [anon_sym_set] = ACTIONS(3288), + [anon_sym_declare] = ACTIONS(3288), + [anon_sym_public] = ACTIONS(3288), + [anon_sym_private] = ACTIONS(3288), + [anon_sym_protected] = ACTIONS(3288), + [anon_sym_override] = ACTIONS(3288), + [anon_sym_module] = ACTIONS(3288), + [anon_sym_any] = ACTIONS(3288), + [anon_sym_number] = ACTIONS(3288), + [anon_sym_boolean] = ACTIONS(3288), + [anon_sym_string] = ACTIONS(3288), + [anon_sym_symbol] = ACTIONS(3288), + [anon_sym_object] = ACTIONS(3288), + [anon_sym_abstract] = ACTIONS(3288), + [anon_sym_interface] = ACTIONS(3288), + [anon_sym_enum] = ACTIONS(3288), [sym_html_comment] = ACTIONS(5), }, - [1607] = { - [sym_comment] = STATE(1607), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [1470] = { + [sym_comment] = STATE(1470), + [ts_builtin_sym_end] = ACTIONS(3576), + [sym_identifier] = ACTIONS(3326), + [anon_sym_export] = ACTIONS(3326), + [anon_sym_type] = ACTIONS(3326), + [anon_sym_namespace] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3326), + [anon_sym_RBRACE] = ACTIONS(3326), + [anon_sym_typeof] = ACTIONS(3326), + [anon_sym_import] = ACTIONS(3326), + [anon_sym_with] = ACTIONS(3326), + [anon_sym_var] = ACTIONS(3326), + [anon_sym_let] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_switch] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3326), + [anon_sym_await] = ACTIONS(3326), + [anon_sym_while] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_try] = ACTIONS(3326), + [anon_sym_break] = ACTIONS(3326), + [anon_sym_continue] = ACTIONS(3326), + [anon_sym_debugger] = ACTIONS(3326), + [anon_sym_return] = ACTIONS(3326), + [anon_sym_throw] = ACTIONS(3326), + [anon_sym_SEMI] = ACTIONS(3326), + [anon_sym_yield] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3326), + [anon_sym_LTtemplate_GT] = ACTIONS(3326), + [anon_sym_DQUOTE] = ACTIONS(3326), + [anon_sym_SQUOTE] = ACTIONS(3326), + [anon_sym_class] = ACTIONS(3326), + [anon_sym_async] = ACTIONS(3326), + [anon_sym_function] = ACTIONS(3326), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_using] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_LT] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3326), + [anon_sym_void] = ACTIONS(3326), + [anon_sym_delete] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3326), + [anon_sym_DASH_DASH] = ACTIONS(3326), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3326), + [sym_number] = ACTIONS(3326), + [sym_private_property_identifier] = ACTIONS(3326), + [sym_this] = ACTIONS(3326), + [sym_super] = ACTIONS(3326), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [sym_null] = ACTIONS(3326), + [sym_undefined] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3326), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_readonly] = ACTIONS(3326), + [anon_sym_get] = ACTIONS(3326), + [anon_sym_set] = ACTIONS(3326), + [anon_sym_declare] = ACTIONS(3326), + [anon_sym_public] = ACTIONS(3326), + [anon_sym_private] = ACTIONS(3326), + [anon_sym_protected] = ACTIONS(3326), + [anon_sym_override] = ACTIONS(3326), + [anon_sym_module] = ACTIONS(3326), + [anon_sym_any] = ACTIONS(3326), + [anon_sym_number] = ACTIONS(3326), + [anon_sym_boolean] = ACTIONS(3326), + [anon_sym_string] = ACTIONS(3326), + [anon_sym_symbol] = ACTIONS(3326), + [anon_sym_object] = ACTIONS(3326), + [anon_sym_abstract] = ACTIONS(3326), + [anon_sym_interface] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), [sym_html_comment] = ACTIONS(5), }, - [1608] = { - [sym_comment] = STATE(1608), - [ts_builtin_sym_end] = ACTIONS(3536), - [sym_identifier] = ACTIONS(3190), - [anon_sym_export] = ACTIONS(3190), - [anon_sym_type] = ACTIONS(3190), - [anon_sym_namespace] = ACTIONS(3190), - [anon_sym_LBRACE] = ACTIONS(3190), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_typeof] = ACTIONS(3190), - [anon_sym_import] = ACTIONS(3190), - [anon_sym_with] = ACTIONS(3190), - [anon_sym_var] = ACTIONS(3190), - [anon_sym_let] = ACTIONS(3190), - [anon_sym_const] = ACTIONS(3190), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_if] = ACTIONS(3190), - [anon_sym_switch] = ACTIONS(3190), - [anon_sym_for] = ACTIONS(3190), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_await] = ACTIONS(3190), - [anon_sym_while] = ACTIONS(3190), - [anon_sym_do] = ACTIONS(3190), - [anon_sym_try] = ACTIONS(3190), - [anon_sym_break] = ACTIONS(3190), - [anon_sym_continue] = ACTIONS(3190), - [anon_sym_debugger] = ACTIONS(3190), - [anon_sym_return] = ACTIONS(3190), - [anon_sym_throw] = ACTIONS(3190), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_yield] = ACTIONS(3190), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_LTtemplate_GT] = ACTIONS(3190), - [anon_sym_DQUOTE] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3190), - [anon_sym_class] = ACTIONS(3190), - [anon_sym_async] = ACTIONS(3190), - [anon_sym_function] = ACTIONS(3190), - [anon_sym_new] = ACTIONS(3190), - [anon_sym_using] = ACTIONS(3190), - [anon_sym_PLUS] = ACTIONS(3190), - [anon_sym_DASH] = ACTIONS(3190), - [anon_sym_SLASH] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3190), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_void] = ACTIONS(3190), - [anon_sym_delete] = ACTIONS(3190), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3190), - [sym_number] = ACTIONS(3190), - [sym_private_property_identifier] = ACTIONS(3190), - [sym_this] = ACTIONS(3190), - [sym_super] = ACTIONS(3190), - [sym_true] = ACTIONS(3190), - [sym_false] = ACTIONS(3190), - [sym_null] = ACTIONS(3190), - [sym_undefined] = ACTIONS(3190), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_static] = ACTIONS(3190), - [anon_sym_readonly] = ACTIONS(3190), - [anon_sym_get] = ACTIONS(3190), - [anon_sym_set] = ACTIONS(3190), - [anon_sym_declare] = ACTIONS(3190), - [anon_sym_public] = ACTIONS(3190), - [anon_sym_private] = ACTIONS(3190), - [anon_sym_protected] = ACTIONS(3190), - [anon_sym_override] = ACTIONS(3190), - [anon_sym_module] = ACTIONS(3190), - [anon_sym_any] = ACTIONS(3190), - [anon_sym_number] = ACTIONS(3190), - [anon_sym_boolean] = ACTIONS(3190), - [anon_sym_string] = ACTIONS(3190), - [anon_sym_symbol] = ACTIONS(3190), - [anon_sym_object] = ACTIONS(3190), - [anon_sym_abstract] = ACTIONS(3190), - [anon_sym_interface] = ACTIONS(3190), - [anon_sym_enum] = ACTIONS(3190), + [1471] = { + [sym_comment] = STATE(1471), + [ts_builtin_sym_end] = ACTIONS(3378), + [sym_identifier] = ACTIONS(3254), + [anon_sym_export] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_namespace] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3254), + [anon_sym_RBRACE] = ACTIONS(3254), + [anon_sym_typeof] = ACTIONS(3254), + [anon_sym_import] = ACTIONS(3254), + [anon_sym_with] = ACTIONS(3254), + [anon_sym_var] = ACTIONS(3254), + [anon_sym_let] = ACTIONS(3254), + [anon_sym_const] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_switch] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3254), + [anon_sym_await] = ACTIONS(3254), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_do] = ACTIONS(3254), + [anon_sym_try] = ACTIONS(3254), + [anon_sym_break] = ACTIONS(3254), + [anon_sym_continue] = ACTIONS(3254), + [anon_sym_debugger] = ACTIONS(3254), + [anon_sym_return] = ACTIONS(3254), + [anon_sym_throw] = ACTIONS(3254), + [anon_sym_SEMI] = ACTIONS(3254), + [anon_sym_yield] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3254), + [anon_sym_LTtemplate_GT] = ACTIONS(3254), + [anon_sym_DQUOTE] = ACTIONS(3254), + [anon_sym_SQUOTE] = ACTIONS(3254), + [anon_sym_class] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_function] = ACTIONS(3254), + [anon_sym_new] = ACTIONS(3254), + [anon_sym_using] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_SLASH] = ACTIONS(3254), + [anon_sym_LT] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3254), + [anon_sym_void] = ACTIONS(3254), + [anon_sym_delete] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3254), + [anon_sym_DASH_DASH] = ACTIONS(3254), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3254), + [sym_number] = ACTIONS(3254), + [sym_private_property_identifier] = ACTIONS(3254), + [sym_this] = ACTIONS(3254), + [sym_super] = ACTIONS(3254), + [sym_true] = ACTIONS(3254), + [sym_false] = ACTIONS(3254), + [sym_null] = ACTIONS(3254), + [sym_undefined] = ACTIONS(3254), + [anon_sym_AT] = ACTIONS(3254), + [anon_sym_static] = ACTIONS(3254), + [anon_sym_readonly] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3254), + [anon_sym_set] = ACTIONS(3254), + [anon_sym_declare] = ACTIONS(3254), + [anon_sym_public] = ACTIONS(3254), + [anon_sym_private] = ACTIONS(3254), + [anon_sym_protected] = ACTIONS(3254), + [anon_sym_override] = ACTIONS(3254), + [anon_sym_module] = ACTIONS(3254), + [anon_sym_any] = ACTIONS(3254), + [anon_sym_number] = ACTIONS(3254), + [anon_sym_boolean] = ACTIONS(3254), + [anon_sym_string] = ACTIONS(3254), + [anon_sym_symbol] = ACTIONS(3254), + [anon_sym_object] = ACTIONS(3254), + [anon_sym_abstract] = ACTIONS(3254), + [anon_sym_interface] = ACTIONS(3254), + [anon_sym_enum] = ACTIONS(3254), [sym_html_comment] = ACTIONS(5), }, - [1609] = { - [sym_comment] = STATE(1609), - [ts_builtin_sym_end] = ACTIONS(3534), - [sym_identifier] = ACTIONS(3194), - [anon_sym_export] = ACTIONS(3194), - [anon_sym_type] = ACTIONS(3194), - [anon_sym_namespace] = ACTIONS(3194), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_typeof] = ACTIONS(3194), - [anon_sym_import] = ACTIONS(3194), - [anon_sym_with] = ACTIONS(3194), - [anon_sym_var] = ACTIONS(3194), - [anon_sym_let] = ACTIONS(3194), - [anon_sym_const] = ACTIONS(3194), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_if] = ACTIONS(3194), - [anon_sym_switch] = ACTIONS(3194), - [anon_sym_for] = ACTIONS(3194), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_await] = ACTIONS(3194), - [anon_sym_while] = ACTIONS(3194), - [anon_sym_do] = ACTIONS(3194), - [anon_sym_try] = ACTIONS(3194), - [anon_sym_break] = ACTIONS(3194), - [anon_sym_continue] = ACTIONS(3194), - [anon_sym_debugger] = ACTIONS(3194), - [anon_sym_return] = ACTIONS(3194), - [anon_sym_throw] = ACTIONS(3194), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_yield] = ACTIONS(3194), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_LTtemplate_GT] = ACTIONS(3194), - [anon_sym_DQUOTE] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3194), - [anon_sym_class] = ACTIONS(3194), - [anon_sym_async] = ACTIONS(3194), - [anon_sym_function] = ACTIONS(3194), - [anon_sym_new] = ACTIONS(3194), - [anon_sym_using] = ACTIONS(3194), - [anon_sym_PLUS] = ACTIONS(3194), - [anon_sym_DASH] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_TILDE] = ACTIONS(3194), - [anon_sym_void] = ACTIONS(3194), - [anon_sym_delete] = ACTIONS(3194), - [anon_sym_PLUS_PLUS] = ACTIONS(3194), - [anon_sym_DASH_DASH] = ACTIONS(3194), + [1472] = { + [sym_comment] = STATE(1472), + [ts_builtin_sym_end] = ACTIONS(3380), + [sym_identifier] = ACTIONS(3250), + [anon_sym_export] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_namespace] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_RBRACE] = ACTIONS(3250), + [anon_sym_typeof] = ACTIONS(3250), + [anon_sym_import] = ACTIONS(3250), + [anon_sym_with] = ACTIONS(3250), + [anon_sym_var] = ACTIONS(3250), + [anon_sym_let] = ACTIONS(3250), + [anon_sym_const] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_switch] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3250), + [anon_sym_await] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_do] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_debugger] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3250), + [anon_sym_yield] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3250), + [anon_sym_LTtemplate_GT] = ACTIONS(3250), + [anon_sym_DQUOTE] = ACTIONS(3250), + [anon_sym_SQUOTE] = ACTIONS(3250), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_function] = ACTIONS(3250), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_using] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_LT] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3250), + [anon_sym_void] = ACTIONS(3250), + [anon_sym_delete] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3250), + [anon_sym_DASH_DASH] = ACTIONS(3250), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3194), - [sym_number] = ACTIONS(3194), - [sym_private_property_identifier] = ACTIONS(3194), - [sym_this] = ACTIONS(3194), - [sym_super] = ACTIONS(3194), - [sym_true] = ACTIONS(3194), - [sym_false] = ACTIONS(3194), - [sym_null] = ACTIONS(3194), - [sym_undefined] = ACTIONS(3194), - [anon_sym_AT] = ACTIONS(3194), - [anon_sym_static] = ACTIONS(3194), - [anon_sym_readonly] = ACTIONS(3194), - [anon_sym_get] = ACTIONS(3194), - [anon_sym_set] = ACTIONS(3194), - [anon_sym_declare] = ACTIONS(3194), - [anon_sym_public] = ACTIONS(3194), - [anon_sym_private] = ACTIONS(3194), - [anon_sym_protected] = ACTIONS(3194), - [anon_sym_override] = ACTIONS(3194), - [anon_sym_module] = ACTIONS(3194), - [anon_sym_any] = ACTIONS(3194), - [anon_sym_number] = ACTIONS(3194), - [anon_sym_boolean] = ACTIONS(3194), - [anon_sym_string] = ACTIONS(3194), - [anon_sym_symbol] = ACTIONS(3194), - [anon_sym_object] = ACTIONS(3194), - [anon_sym_abstract] = ACTIONS(3194), - [anon_sym_interface] = ACTIONS(3194), - [anon_sym_enum] = ACTIONS(3194), + [anon_sym_BQUOTE] = ACTIONS(3250), + [sym_number] = ACTIONS(3250), + [sym_private_property_identifier] = ACTIONS(3250), + [sym_this] = ACTIONS(3250), + [sym_super] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_null] = ACTIONS(3250), + [sym_undefined] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3250), + [anon_sym_static] = ACTIONS(3250), + [anon_sym_readonly] = ACTIONS(3250), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_declare] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_override] = ACTIONS(3250), + [anon_sym_module] = ACTIONS(3250), + [anon_sym_any] = ACTIONS(3250), + [anon_sym_number] = ACTIONS(3250), + [anon_sym_boolean] = ACTIONS(3250), + [anon_sym_string] = ACTIONS(3250), + [anon_sym_symbol] = ACTIONS(3250), + [anon_sym_object] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_interface] = ACTIONS(3250), + [anon_sym_enum] = ACTIONS(3250), [sym_html_comment] = ACTIONS(5), }, - [1610] = { - [sym_comment] = STATE(1610), - [ts_builtin_sym_end] = ACTIONS(3568), - [sym_identifier] = ACTIONS(3304), - [anon_sym_export] = ACTIONS(3304), - [anon_sym_type] = ACTIONS(3304), - [anon_sym_namespace] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3304), - [anon_sym_RBRACE] = ACTIONS(3304), - [anon_sym_typeof] = ACTIONS(3304), - [anon_sym_import] = ACTIONS(3304), - [anon_sym_with] = ACTIONS(3304), - [anon_sym_var] = ACTIONS(3304), - [anon_sym_let] = ACTIONS(3304), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_BANG] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_switch] = ACTIONS(3304), - [anon_sym_for] = ACTIONS(3304), - [anon_sym_LPAREN] = ACTIONS(3304), - [anon_sym_await] = ACTIONS(3304), - [anon_sym_while] = ACTIONS(3304), - [anon_sym_do] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(3304), - [anon_sym_break] = ACTIONS(3304), - [anon_sym_continue] = ACTIONS(3304), - [anon_sym_debugger] = ACTIONS(3304), - [anon_sym_return] = ACTIONS(3304), - [anon_sym_throw] = ACTIONS(3304), - [anon_sym_SEMI] = ACTIONS(3304), - [anon_sym_yield] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3304), - [anon_sym_LTtemplate_GT] = ACTIONS(3304), - [anon_sym_DQUOTE] = ACTIONS(3304), - [anon_sym_SQUOTE] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_async] = ACTIONS(3304), - [anon_sym_function] = ACTIONS(3304), - [anon_sym_new] = ACTIONS(3304), - [anon_sym_using] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_SLASH] = ACTIONS(3304), - [anon_sym_LT] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3304), - [anon_sym_void] = ACTIONS(3304), - [anon_sym_delete] = ACTIONS(3304), - [anon_sym_PLUS_PLUS] = ACTIONS(3304), - [anon_sym_DASH_DASH] = ACTIONS(3304), + [1473] = { + [sym_comment] = STATE(1473), + [ts_builtin_sym_end] = ACTIONS(3580), + [sym_identifier] = ACTIONS(3210), + [anon_sym_export] = ACTIONS(3210), + [anon_sym_type] = ACTIONS(3210), + [anon_sym_namespace] = ACTIONS(3210), + [anon_sym_LBRACE] = ACTIONS(3210), + [anon_sym_RBRACE] = ACTIONS(3210), + [anon_sym_typeof] = ACTIONS(3210), + [anon_sym_import] = ACTIONS(3210), + [anon_sym_with] = ACTIONS(3210), + [anon_sym_var] = ACTIONS(3210), + [anon_sym_let] = ACTIONS(3210), + [anon_sym_const] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3210), + [anon_sym_if] = ACTIONS(3210), + [anon_sym_switch] = ACTIONS(3210), + [anon_sym_for] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3210), + [anon_sym_await] = ACTIONS(3210), + [anon_sym_while] = ACTIONS(3210), + [anon_sym_do] = ACTIONS(3210), + [anon_sym_try] = ACTIONS(3210), + [anon_sym_break] = ACTIONS(3210), + [anon_sym_continue] = ACTIONS(3210), + [anon_sym_debugger] = ACTIONS(3210), + [anon_sym_return] = ACTIONS(3210), + [anon_sym_throw] = ACTIONS(3210), + [anon_sym_SEMI] = ACTIONS(3210), + [anon_sym_yield] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3210), + [anon_sym_LTtemplate_GT] = ACTIONS(3210), + [anon_sym_DQUOTE] = ACTIONS(3210), + [anon_sym_SQUOTE] = ACTIONS(3210), + [anon_sym_class] = ACTIONS(3210), + [anon_sym_async] = ACTIONS(3210), + [anon_sym_function] = ACTIONS(3210), + [anon_sym_new] = ACTIONS(3210), + [anon_sym_using] = ACTIONS(3210), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3210), + [anon_sym_SLASH] = ACTIONS(3210), + [anon_sym_LT] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3210), + [anon_sym_void] = ACTIONS(3210), + [anon_sym_delete] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3210), + [anon_sym_DASH_DASH] = ACTIONS(3210), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3304), - [sym_number] = ACTIONS(3304), - [sym_private_property_identifier] = ACTIONS(3304), - [sym_this] = ACTIONS(3304), - [sym_super] = ACTIONS(3304), - [sym_true] = ACTIONS(3304), - [sym_false] = ACTIONS(3304), - [sym_null] = ACTIONS(3304), - [sym_undefined] = ACTIONS(3304), - [anon_sym_AT] = ACTIONS(3304), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3304), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_declare] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_protected] = ACTIONS(3304), - [anon_sym_override] = ACTIONS(3304), - [anon_sym_module] = ACTIONS(3304), - [anon_sym_any] = ACTIONS(3304), - [anon_sym_number] = ACTIONS(3304), - [anon_sym_boolean] = ACTIONS(3304), - [anon_sym_string] = ACTIONS(3304), - [anon_sym_symbol] = ACTIONS(3304), - [anon_sym_object] = ACTIONS(3304), - [anon_sym_abstract] = ACTIONS(3304), - [anon_sym_interface] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), + [anon_sym_BQUOTE] = ACTIONS(3210), + [sym_number] = ACTIONS(3210), + [sym_private_property_identifier] = ACTIONS(3210), + [sym_this] = ACTIONS(3210), + [sym_super] = ACTIONS(3210), + [sym_true] = ACTIONS(3210), + [sym_false] = ACTIONS(3210), + [sym_null] = ACTIONS(3210), + [sym_undefined] = ACTIONS(3210), + [anon_sym_AT] = ACTIONS(3210), + [anon_sym_static] = ACTIONS(3210), + [anon_sym_readonly] = ACTIONS(3210), + [anon_sym_get] = ACTIONS(3210), + [anon_sym_set] = ACTIONS(3210), + [anon_sym_declare] = ACTIONS(3210), + [anon_sym_public] = ACTIONS(3210), + [anon_sym_private] = ACTIONS(3210), + [anon_sym_protected] = ACTIONS(3210), + [anon_sym_override] = ACTIONS(3210), + [anon_sym_module] = ACTIONS(3210), + [anon_sym_any] = ACTIONS(3210), + [anon_sym_number] = ACTIONS(3210), + [anon_sym_boolean] = ACTIONS(3210), + [anon_sym_string] = ACTIONS(3210), + [anon_sym_symbol] = ACTIONS(3210), + [anon_sym_object] = ACTIONS(3210), + [anon_sym_abstract] = ACTIONS(3210), + [anon_sym_interface] = ACTIONS(3210), + [anon_sym_enum] = ACTIONS(3210), [sym_html_comment] = ACTIONS(5), }, - [1611] = { - [sym_comment] = STATE(1611), - [ts_builtin_sym_end] = ACTIONS(3502), - [sym_identifier] = ACTIONS(3354), - [anon_sym_export] = ACTIONS(3354), - [anon_sym_type] = ACTIONS(3354), - [anon_sym_namespace] = ACTIONS(3354), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_typeof] = ACTIONS(3354), - [anon_sym_import] = ACTIONS(3354), - [anon_sym_with] = ACTIONS(3354), - [anon_sym_var] = ACTIONS(3354), - [anon_sym_let] = ACTIONS(3354), - [anon_sym_const] = ACTIONS(3354), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_if] = ACTIONS(3354), - [anon_sym_switch] = ACTIONS(3354), - [anon_sym_for] = ACTIONS(3354), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_await] = ACTIONS(3354), - [anon_sym_while] = ACTIONS(3354), - [anon_sym_do] = ACTIONS(3354), - [anon_sym_try] = ACTIONS(3354), - [anon_sym_break] = ACTIONS(3354), - [anon_sym_continue] = ACTIONS(3354), - [anon_sym_debugger] = ACTIONS(3354), - [anon_sym_return] = ACTIONS(3354), - [anon_sym_throw] = ACTIONS(3354), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym_yield] = ACTIONS(3354), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_LTtemplate_GT] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [anon_sym_class] = ACTIONS(3354), - [anon_sym_async] = ACTIONS(3354), - [anon_sym_function] = ACTIONS(3354), - [anon_sym_new] = ACTIONS(3354), - [anon_sym_using] = ACTIONS(3354), - [anon_sym_PLUS] = ACTIONS(3354), - [anon_sym_DASH] = ACTIONS(3354), - [anon_sym_SLASH] = ACTIONS(3354), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_void] = ACTIONS(3354), - [anon_sym_delete] = ACTIONS(3354), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), + [1474] = { + [sym_comment] = STATE(1474), + [ts_builtin_sym_end] = ACTIONS(2185), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [anon_sym_typeof] = ACTIONS(2183), + [anon_sym_import] = ACTIONS(2183), + [anon_sym_with] = ACTIONS(2183), + [anon_sym_var] = ACTIONS(2183), + [anon_sym_let] = ACTIONS(2183), + [anon_sym_const] = ACTIONS(2183), + [anon_sym_BANG] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2183), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_while] = ACTIONS(2183), + [anon_sym_do] = ACTIONS(2183), + [anon_sym_try] = ACTIONS(2183), + [anon_sym_break] = ACTIONS(2183), + [anon_sym_continue] = ACTIONS(2183), + [anon_sym_debugger] = ACTIONS(2183), + [anon_sym_return] = ACTIONS(2183), + [anon_sym_throw] = ACTIONS(2183), + [anon_sym_SEMI] = ACTIONS(2183), + [anon_sym_yield] = ACTIONS(2183), + [anon_sym_LBRACK] = ACTIONS(2183), + [anon_sym_LTtemplate_GT] = ACTIONS(2183), + [anon_sym_DQUOTE] = ACTIONS(2183), + [anon_sym_SQUOTE] = ACTIONS(2183), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_using] = ACTIONS(2183), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_LT] = ACTIONS(2183), + [anon_sym_TILDE] = ACTIONS(2183), + [anon_sym_void] = ACTIONS(2183), + [anon_sym_delete] = ACTIONS(2183), + [anon_sym_PLUS_PLUS] = ACTIONS(2183), + [anon_sym_DASH_DASH] = ACTIONS(2183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2183), + [sym_number] = ACTIONS(2183), + [sym_private_property_identifier] = ACTIONS(2183), + [sym_this] = ACTIONS(2183), + [sym_super] = ACTIONS(2183), + [sym_true] = ACTIONS(2183), + [sym_false] = ACTIONS(2183), + [sym_null] = ACTIONS(2183), + [sym_undefined] = ACTIONS(2183), + [anon_sym_AT] = ACTIONS(2183), + [anon_sym_static] = ACTIONS(2183), + [anon_sym_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_override] = ACTIONS(2183), + [anon_sym_module] = ACTIONS(2183), + [anon_sym_any] = ACTIONS(2183), + [anon_sym_number] = ACTIONS(2183), + [anon_sym_boolean] = ACTIONS(2183), + [anon_sym_string] = ACTIONS(2183), + [anon_sym_symbol] = ACTIONS(2183), + [anon_sym_object] = ACTIONS(2183), + [anon_sym_abstract] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [sym_html_comment] = ACTIONS(5), + }, + [1475] = { + [sym_comment] = STATE(1475), + [ts_builtin_sym_end] = ACTIONS(3504), + [sym_identifier] = ACTIONS(3188), + [anon_sym_export] = ACTIONS(3188), + [anon_sym_type] = ACTIONS(3188), + [anon_sym_namespace] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_typeof] = ACTIONS(3188), + [anon_sym_import] = ACTIONS(3188), + [anon_sym_with] = ACTIONS(3188), + [anon_sym_var] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_await] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_break] = ACTIONS(3188), + [anon_sym_continue] = ACTIONS(3188), + [anon_sym_debugger] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_throw] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LTtemplate_GT] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_SQUOTE] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_async] = ACTIONS(3188), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_void] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3188), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3354), - [sym_number] = ACTIONS(3354), - [sym_private_property_identifier] = ACTIONS(3354), - [sym_this] = ACTIONS(3354), - [sym_super] = ACTIONS(3354), - [sym_true] = ACTIONS(3354), - [sym_false] = ACTIONS(3354), - [sym_null] = ACTIONS(3354), - [sym_undefined] = ACTIONS(3354), - [anon_sym_AT] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3354), - [anon_sym_readonly] = ACTIONS(3354), - [anon_sym_get] = ACTIONS(3354), - [anon_sym_set] = ACTIONS(3354), - [anon_sym_declare] = ACTIONS(3354), - [anon_sym_public] = ACTIONS(3354), - [anon_sym_private] = ACTIONS(3354), - [anon_sym_protected] = ACTIONS(3354), - [anon_sym_override] = ACTIONS(3354), - [anon_sym_module] = ACTIONS(3354), - [anon_sym_any] = ACTIONS(3354), - [anon_sym_number] = ACTIONS(3354), - [anon_sym_boolean] = ACTIONS(3354), - [anon_sym_string] = ACTIONS(3354), - [anon_sym_symbol] = ACTIONS(3354), - [anon_sym_object] = ACTIONS(3354), - [anon_sym_abstract] = ACTIONS(3354), - [anon_sym_interface] = ACTIONS(3354), - [anon_sym_enum] = ACTIONS(3354), + [anon_sym_BQUOTE] = ACTIONS(3188), + [sym_number] = ACTIONS(3188), + [sym_private_property_identifier] = ACTIONS(3188), + [sym_this] = ACTIONS(3188), + [sym_super] = ACTIONS(3188), + [sym_true] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [sym_null] = ACTIONS(3188), + [sym_undefined] = ACTIONS(3188), + [anon_sym_AT] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_readonly] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3188), + [anon_sym_set] = ACTIONS(3188), + [anon_sym_declare] = ACTIONS(3188), + [anon_sym_public] = ACTIONS(3188), + [anon_sym_private] = ACTIONS(3188), + [anon_sym_protected] = ACTIONS(3188), + [anon_sym_override] = ACTIONS(3188), + [anon_sym_module] = ACTIONS(3188), + [anon_sym_any] = ACTIONS(3188), + [anon_sym_number] = ACTIONS(3188), + [anon_sym_boolean] = ACTIONS(3188), + [anon_sym_string] = ACTIONS(3188), + [anon_sym_symbol] = ACTIONS(3188), + [anon_sym_object] = ACTIONS(3188), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_interface] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), [sym_html_comment] = ACTIONS(5), }, - [1612] = { - [sym_comment] = STATE(1612), + [1476] = { + [sym_comment] = STATE(1476), [ts_builtin_sym_end] = ACTIONS(3504), - [sym_identifier] = ACTIONS(3228), - [anon_sym_export] = ACTIONS(3228), - [anon_sym_type] = ACTIONS(3228), - [anon_sym_namespace] = ACTIONS(3228), - [anon_sym_LBRACE] = ACTIONS(3228), - [anon_sym_RBRACE] = ACTIONS(3228), - [anon_sym_typeof] = ACTIONS(3228), - [anon_sym_import] = ACTIONS(3228), - [anon_sym_with] = ACTIONS(3228), - [anon_sym_var] = ACTIONS(3228), - [anon_sym_let] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_BANG] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_LPAREN] = ACTIONS(3228), - [anon_sym_await] = ACTIONS(3228), - [anon_sym_while] = ACTIONS(3228), - [anon_sym_do] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3228), - [anon_sym_break] = ACTIONS(3228), - [anon_sym_continue] = ACTIONS(3228), - [anon_sym_debugger] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3228), - [anon_sym_throw] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3228), - [anon_sym_yield] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3228), - [anon_sym_LTtemplate_GT] = ACTIONS(3228), - [anon_sym_DQUOTE] = ACTIONS(3228), - [anon_sym_SQUOTE] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_async] = ACTIONS(3228), - [anon_sym_function] = ACTIONS(3228), - [anon_sym_new] = ACTIONS(3228), - [anon_sym_using] = ACTIONS(3228), - [anon_sym_PLUS] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(3228), - [anon_sym_SLASH] = ACTIONS(3228), - [anon_sym_LT] = ACTIONS(3228), - [anon_sym_TILDE] = ACTIONS(3228), - [anon_sym_void] = ACTIONS(3228), - [anon_sym_delete] = ACTIONS(3228), - [anon_sym_PLUS_PLUS] = ACTIONS(3228), - [anon_sym_DASH_DASH] = ACTIONS(3228), + [sym_identifier] = ACTIONS(3188), + [anon_sym_export] = ACTIONS(3188), + [anon_sym_type] = ACTIONS(3188), + [anon_sym_namespace] = ACTIONS(3188), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_typeof] = ACTIONS(3188), + [anon_sym_import] = ACTIONS(3188), + [anon_sym_with] = ACTIONS(3188), + [anon_sym_var] = ACTIONS(3188), + [anon_sym_let] = ACTIONS(3188), + [anon_sym_const] = ACTIONS(3188), + [anon_sym_BANG] = ACTIONS(3188), + [anon_sym_if] = ACTIONS(3188), + [anon_sym_switch] = ACTIONS(3188), + [anon_sym_for] = ACTIONS(3188), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_await] = ACTIONS(3188), + [anon_sym_while] = ACTIONS(3188), + [anon_sym_do] = ACTIONS(3188), + [anon_sym_try] = ACTIONS(3188), + [anon_sym_break] = ACTIONS(3188), + [anon_sym_continue] = ACTIONS(3188), + [anon_sym_debugger] = ACTIONS(3188), + [anon_sym_return] = ACTIONS(3188), + [anon_sym_throw] = ACTIONS(3188), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_yield] = ACTIONS(3188), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LTtemplate_GT] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_SQUOTE] = ACTIONS(3188), + [anon_sym_class] = ACTIONS(3188), + [anon_sym_async] = ACTIONS(3188), + [anon_sym_function] = ACTIONS(3188), + [anon_sym_new] = ACTIONS(3188), + [anon_sym_using] = ACTIONS(3188), + [anon_sym_PLUS] = ACTIONS(3188), + [anon_sym_DASH] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3188), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_void] = ACTIONS(3188), + [anon_sym_delete] = ACTIONS(3188), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3188), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3228), - [sym_number] = ACTIONS(3228), - [sym_private_property_identifier] = ACTIONS(3228), - [sym_this] = ACTIONS(3228), - [sym_super] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_null] = ACTIONS(3228), - [sym_undefined] = ACTIONS(3228), - [anon_sym_AT] = ACTIONS(3228), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_readonly] = ACTIONS(3228), - [anon_sym_get] = ACTIONS(3228), - [anon_sym_set] = ACTIONS(3228), - [anon_sym_declare] = ACTIONS(3228), - [anon_sym_public] = ACTIONS(3228), - [anon_sym_private] = ACTIONS(3228), - [anon_sym_protected] = ACTIONS(3228), - [anon_sym_override] = ACTIONS(3228), - [anon_sym_module] = ACTIONS(3228), - [anon_sym_any] = ACTIONS(3228), - [anon_sym_number] = ACTIONS(3228), - [anon_sym_boolean] = ACTIONS(3228), - [anon_sym_string] = ACTIONS(3228), - [anon_sym_symbol] = ACTIONS(3228), - [anon_sym_object] = ACTIONS(3228), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_interface] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), + [anon_sym_BQUOTE] = ACTIONS(3188), + [sym_number] = ACTIONS(3188), + [sym_private_property_identifier] = ACTIONS(3188), + [sym_this] = ACTIONS(3188), + [sym_super] = ACTIONS(3188), + [sym_true] = ACTIONS(3188), + [sym_false] = ACTIONS(3188), + [sym_null] = ACTIONS(3188), + [sym_undefined] = ACTIONS(3188), + [anon_sym_AT] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3188), + [anon_sym_readonly] = ACTIONS(3188), + [anon_sym_get] = ACTIONS(3188), + [anon_sym_set] = ACTIONS(3188), + [anon_sym_declare] = ACTIONS(3188), + [anon_sym_public] = ACTIONS(3188), + [anon_sym_private] = ACTIONS(3188), + [anon_sym_protected] = ACTIONS(3188), + [anon_sym_override] = ACTIONS(3188), + [anon_sym_module] = ACTIONS(3188), + [anon_sym_any] = ACTIONS(3188), + [anon_sym_number] = ACTIONS(3188), + [anon_sym_boolean] = ACTIONS(3188), + [anon_sym_string] = ACTIONS(3188), + [anon_sym_symbol] = ACTIONS(3188), + [anon_sym_object] = ACTIONS(3188), + [anon_sym_abstract] = ACTIONS(3188), + [anon_sym_interface] = ACTIONS(3188), + [anon_sym_enum] = ACTIONS(3188), [sym_html_comment] = ACTIONS(5), }, - [1613] = { - [sym_comment] = STATE(1613), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1477] = { + [sym_comment] = STATE(1477), + [ts_builtin_sym_end] = ACTIONS(3498), + [sym_identifier] = ACTIONS(3152), + [anon_sym_export] = ACTIONS(3152), + [anon_sym_type] = ACTIONS(3152), + [anon_sym_namespace] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_RBRACE] = ACTIONS(3152), + [anon_sym_typeof] = ACTIONS(3152), + [anon_sym_import] = ACTIONS(3152), + [anon_sym_with] = ACTIONS(3152), + [anon_sym_var] = ACTIONS(3152), + [anon_sym_let] = ACTIONS(3152), + [anon_sym_const] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_if] = ACTIONS(3152), + [anon_sym_switch] = ACTIONS(3152), + [anon_sym_for] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_await] = ACTIONS(3152), + [anon_sym_while] = ACTIONS(3152), + [anon_sym_do] = ACTIONS(3152), + [anon_sym_try] = ACTIONS(3152), + [anon_sym_break] = ACTIONS(3152), + [anon_sym_continue] = ACTIONS(3152), + [anon_sym_debugger] = ACTIONS(3152), + [anon_sym_return] = ACTIONS(3152), + [anon_sym_throw] = ACTIONS(3152), + [anon_sym_SEMI] = ACTIONS(3152), + [anon_sym_yield] = ACTIONS(3152), + [anon_sym_LBRACK] = ACTIONS(3152), + [anon_sym_LTtemplate_GT] = ACTIONS(3152), + [anon_sym_DQUOTE] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3152), + [anon_sym_class] = ACTIONS(3152), + [anon_sym_async] = ACTIONS(3152), + [anon_sym_function] = ACTIONS(3152), + [anon_sym_new] = ACTIONS(3152), + [anon_sym_using] = ACTIONS(3152), + [anon_sym_PLUS] = ACTIONS(3152), + [anon_sym_DASH] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(3152), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_void] = ACTIONS(3152), + [anon_sym_delete] = ACTIONS(3152), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_DASH_DASH] = ACTIONS(3152), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3152), + [sym_number] = ACTIONS(3152), + [sym_private_property_identifier] = ACTIONS(3152), + [sym_this] = ACTIONS(3152), + [sym_super] = ACTIONS(3152), + [sym_true] = ACTIONS(3152), + [sym_false] = ACTIONS(3152), + [sym_null] = ACTIONS(3152), + [sym_undefined] = ACTIONS(3152), + [anon_sym_AT] = ACTIONS(3152), + [anon_sym_static] = ACTIONS(3152), + [anon_sym_readonly] = ACTIONS(3152), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_declare] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_override] = ACTIONS(3152), + [anon_sym_module] = ACTIONS(3152), + [anon_sym_any] = ACTIONS(3152), + [anon_sym_number] = ACTIONS(3152), + [anon_sym_boolean] = ACTIONS(3152), + [anon_sym_string] = ACTIONS(3152), + [anon_sym_symbol] = ACTIONS(3152), + [anon_sym_object] = ACTIONS(3152), + [anon_sym_abstract] = ACTIONS(3152), + [anon_sym_interface] = ACTIONS(3152), + [anon_sym_enum] = ACTIONS(3152), [sym_html_comment] = ACTIONS(5), }, - [1614] = { - [sym_comment] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1478] = { + [sym_comment] = STATE(1478), + [ts_builtin_sym_end] = ACTIONS(3382), + [sym_identifier] = ACTIONS(3234), + [anon_sym_export] = ACTIONS(3234), + [anon_sym_type] = ACTIONS(3234), + [anon_sym_namespace] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3234), + [anon_sym_RBRACE] = ACTIONS(3234), + [anon_sym_typeof] = ACTIONS(3234), + [anon_sym_import] = ACTIONS(3234), + [anon_sym_with] = ACTIONS(3234), + [anon_sym_var] = ACTIONS(3234), + [anon_sym_let] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_BANG] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_LPAREN] = ACTIONS(3234), + [anon_sym_await] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_debugger] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3234), + [anon_sym_yield] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3234), + [anon_sym_LTtemplate_GT] = ACTIONS(3234), + [anon_sym_DQUOTE] = ACTIONS(3234), + [anon_sym_SQUOTE] = ACTIONS(3234), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_async] = ACTIONS(3234), + [anon_sym_function] = ACTIONS(3234), + [anon_sym_new] = ACTIONS(3234), + [anon_sym_using] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_LT] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3234), + [anon_sym_void] = ACTIONS(3234), + [anon_sym_delete] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3234), + [anon_sym_DASH_DASH] = ACTIONS(3234), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3234), + [sym_number] = ACTIONS(3234), + [sym_private_property_identifier] = ACTIONS(3234), + [sym_this] = ACTIONS(3234), + [sym_super] = ACTIONS(3234), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_null] = ACTIONS(3234), + [sym_undefined] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3234), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_readonly] = ACTIONS(3234), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_declare] = ACTIONS(3234), + [anon_sym_public] = ACTIONS(3234), + [anon_sym_private] = ACTIONS(3234), + [anon_sym_protected] = ACTIONS(3234), + [anon_sym_override] = ACTIONS(3234), + [anon_sym_module] = ACTIONS(3234), + [anon_sym_any] = ACTIONS(3234), + [anon_sym_number] = ACTIONS(3234), + [anon_sym_boolean] = ACTIONS(3234), + [anon_sym_string] = ACTIONS(3234), + [anon_sym_symbol] = ACTIONS(3234), + [anon_sym_object] = ACTIONS(3234), + [anon_sym_abstract] = ACTIONS(3234), + [anon_sym_interface] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), + [sym_html_comment] = ACTIONS(5), + }, + [1479] = { + [sym_comment] = STATE(1479), + [ts_builtin_sym_end] = ACTIONS(3542), + [sym_identifier] = ACTIONS(3290), + [anon_sym_export] = ACTIONS(3290), + [anon_sym_type] = ACTIONS(3290), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(3290), + [anon_sym_RBRACE] = ACTIONS(3290), + [anon_sym_typeof] = ACTIONS(3290), + [anon_sym_import] = ACTIONS(3290), + [anon_sym_with] = ACTIONS(3290), + [anon_sym_var] = ACTIONS(3290), + [anon_sym_let] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3290), + [anon_sym_await] = ACTIONS(3290), + [anon_sym_while] = ACTIONS(3290), + [anon_sym_do] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3290), + [anon_sym_break] = ACTIONS(3290), + [anon_sym_continue] = ACTIONS(3290), + [anon_sym_debugger] = ACTIONS(3290), + [anon_sym_return] = ACTIONS(3290), + [anon_sym_throw] = ACTIONS(3290), + [anon_sym_SEMI] = ACTIONS(3290), + [anon_sym_yield] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3290), + [anon_sym_LTtemplate_GT] = ACTIONS(3290), + [anon_sym_DQUOTE] = ACTIONS(3290), + [anon_sym_SQUOTE] = ACTIONS(3290), + [anon_sym_class] = ACTIONS(3290), + [anon_sym_async] = ACTIONS(3290), + [anon_sym_function] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_using] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_SLASH] = ACTIONS(3290), + [anon_sym_LT] = ACTIONS(3290), + [anon_sym_TILDE] = ACTIONS(3290), + [anon_sym_void] = ACTIONS(3290), + [anon_sym_delete] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3290), + [anon_sym_DASH_DASH] = ACTIONS(3290), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3290), + [sym_number] = ACTIONS(3290), + [sym_private_property_identifier] = ACTIONS(3290), + [sym_this] = ACTIONS(3290), + [sym_super] = ACTIONS(3290), + [sym_true] = ACTIONS(3290), + [sym_false] = ACTIONS(3290), + [sym_null] = ACTIONS(3290), + [sym_undefined] = ACTIONS(3290), + [anon_sym_AT] = ACTIONS(3290), + [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_abstract] = ACTIONS(3290), + [anon_sym_interface] = ACTIONS(3290), + [anon_sym_enum] = ACTIONS(3290), [sym_html_comment] = ACTIONS(5), }, - [1615] = { - [sym_comment] = STATE(1615), - [ts_builtin_sym_end] = ACTIONS(3532), + [1480] = { + [sym_comment] = STATE(1480), + [ts_builtin_sym_end] = ACTIONS(3522), [sym_identifier] = ACTIONS(3198), [anon_sym_export] = ACTIONS(3198), [anon_sym_type] = ACTIONS(3198), @@ -196011,9 +184620,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1616] = { - [sym_comment] = STATE(1616), - [ts_builtin_sym_end] = ACTIONS(3532), + [1481] = { + [sym_comment] = STATE(1481), + [ts_builtin_sym_end] = ACTIONS(3522), [sym_identifier] = ACTIONS(3198), [anon_sym_export] = ACTIONS(3198), [anon_sym_type] = ACTIONS(3198), @@ -196092,1953 +184701,1386 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1617] = { - [sym_comment] = STATE(1617), - [ts_builtin_sym_end] = ACTIONS(3506), - [sym_identifier] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3346), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_typeof] = ACTIONS(3346), - [anon_sym_import] = ACTIONS(3346), - [anon_sym_with] = ACTIONS(3346), - [anon_sym_var] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_await] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_debugger] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LTtemplate_GT] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_async] = ACTIONS(3346), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_void] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3346), - [sym_number] = ACTIONS(3346), - [sym_private_property_identifier] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - [sym_super] = ACTIONS(3346), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [sym_null] = ACTIONS(3346), - [sym_undefined] = ACTIONS(3346), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_readonly] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3346), - [anon_sym_set] = ACTIONS(3346), - [anon_sym_declare] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3346), - [anon_sym_private] = ACTIONS(3346), - [anon_sym_protected] = ACTIONS(3346), - [anon_sym_override] = ACTIONS(3346), - [anon_sym_module] = ACTIONS(3346), - [anon_sym_any] = ACTIONS(3346), - [anon_sym_number] = ACTIONS(3346), - [anon_sym_boolean] = ACTIONS(3346), - [anon_sym_string] = ACTIONS(3346), - [anon_sym_symbol] = ACTIONS(3346), - [anon_sym_object] = ACTIONS(3346), - [anon_sym_abstract] = ACTIONS(3346), - [anon_sym_interface] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), - [sym_html_comment] = ACTIONS(5), - }, - [1618] = { - [sym_comment] = STATE(1618), - [ts_builtin_sym_end] = ACTIONS(3506), - [sym_identifier] = ACTIONS(3346), - [anon_sym_export] = ACTIONS(3346), - [anon_sym_type] = ACTIONS(3346), - [anon_sym_namespace] = ACTIONS(3346), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_typeof] = ACTIONS(3346), - [anon_sym_import] = ACTIONS(3346), - [anon_sym_with] = ACTIONS(3346), - [anon_sym_var] = ACTIONS(3346), - [anon_sym_let] = ACTIONS(3346), - [anon_sym_const] = ACTIONS(3346), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_if] = ACTIONS(3346), - [anon_sym_switch] = ACTIONS(3346), - [anon_sym_for] = ACTIONS(3346), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_await] = ACTIONS(3346), - [anon_sym_while] = ACTIONS(3346), - [anon_sym_do] = ACTIONS(3346), - [anon_sym_try] = ACTIONS(3346), - [anon_sym_break] = ACTIONS(3346), - [anon_sym_continue] = ACTIONS(3346), - [anon_sym_debugger] = ACTIONS(3346), - [anon_sym_return] = ACTIONS(3346), - [anon_sym_throw] = ACTIONS(3346), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_yield] = ACTIONS(3346), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LTtemplate_GT] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [anon_sym_class] = ACTIONS(3346), - [anon_sym_async] = ACTIONS(3346), - [anon_sym_function] = ACTIONS(3346), - [anon_sym_new] = ACTIONS(3346), - [anon_sym_using] = ACTIONS(3346), - [anon_sym_PLUS] = ACTIONS(3346), - [anon_sym_DASH] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_void] = ACTIONS(3346), - [anon_sym_delete] = ACTIONS(3346), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3346), - [sym_number] = ACTIONS(3346), - [sym_private_property_identifier] = ACTIONS(3346), - [sym_this] = ACTIONS(3346), - [sym_super] = ACTIONS(3346), - [sym_true] = ACTIONS(3346), - [sym_false] = ACTIONS(3346), - [sym_null] = ACTIONS(3346), - [sym_undefined] = ACTIONS(3346), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3346), - [anon_sym_readonly] = ACTIONS(3346), - [anon_sym_get] = ACTIONS(3346), - [anon_sym_set] = ACTIONS(3346), - [anon_sym_declare] = ACTIONS(3346), - [anon_sym_public] = ACTIONS(3346), - [anon_sym_private] = ACTIONS(3346), - [anon_sym_protected] = ACTIONS(3346), - [anon_sym_override] = ACTIONS(3346), - [anon_sym_module] = ACTIONS(3346), - [anon_sym_any] = ACTIONS(3346), - [anon_sym_number] = ACTIONS(3346), - [anon_sym_boolean] = ACTIONS(3346), - [anon_sym_string] = ACTIONS(3346), - [anon_sym_symbol] = ACTIONS(3346), - [anon_sym_object] = ACTIONS(3346), - [anon_sym_abstract] = ACTIONS(3346), - [anon_sym_interface] = ACTIONS(3346), - [anon_sym_enum] = ACTIONS(3346), - [sym_html_comment] = ACTIONS(5), - }, - [1619] = { - [sym_comment] = STATE(1619), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1620] = { - [sym_comment] = STATE(1620), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1621] = { - [sym_comment] = STATE(1621), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1622] = { - [sym_comment] = STATE(1622), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1623] = { - [sym_comment] = STATE(1623), - [ts_builtin_sym_end] = ACTIONS(3508), - [sym_identifier] = ACTIONS(3344), - [anon_sym_export] = ACTIONS(3344), - [anon_sym_type] = ACTIONS(3344), - [anon_sym_namespace] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3344), - [anon_sym_RBRACE] = ACTIONS(3344), - [anon_sym_typeof] = ACTIONS(3344), - [anon_sym_import] = ACTIONS(3344), - [anon_sym_with] = ACTIONS(3344), - [anon_sym_var] = ACTIONS(3344), - [anon_sym_let] = ACTIONS(3344), - [anon_sym_const] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_switch] = ACTIONS(3344), - [anon_sym_for] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3344), - [anon_sym_await] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_do] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_debugger] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3344), - [anon_sym_yield] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3344), - [anon_sym_LTtemplate_GT] = ACTIONS(3344), - [anon_sym_DQUOTE] = ACTIONS(3344), - [anon_sym_SQUOTE] = ACTIONS(3344), - [anon_sym_class] = ACTIONS(3344), - [anon_sym_async] = ACTIONS(3344), - [anon_sym_function] = ACTIONS(3344), - [anon_sym_new] = ACTIONS(3344), - [anon_sym_using] = ACTIONS(3344), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_LT] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3344), - [anon_sym_void] = ACTIONS(3344), - [anon_sym_delete] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3344), - [anon_sym_DASH_DASH] = ACTIONS(3344), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3344), - [sym_number] = ACTIONS(3344), - [sym_private_property_identifier] = ACTIONS(3344), - [sym_this] = ACTIONS(3344), - [sym_super] = ACTIONS(3344), - [sym_true] = ACTIONS(3344), - [sym_false] = ACTIONS(3344), - [sym_null] = ACTIONS(3344), - [sym_undefined] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3344), - [anon_sym_static] = ACTIONS(3344), - [anon_sym_readonly] = ACTIONS(3344), - [anon_sym_get] = ACTIONS(3344), - [anon_sym_set] = ACTIONS(3344), - [anon_sym_declare] = ACTIONS(3344), - [anon_sym_public] = ACTIONS(3344), - [anon_sym_private] = ACTIONS(3344), - [anon_sym_protected] = ACTIONS(3344), - [anon_sym_override] = ACTIONS(3344), - [anon_sym_module] = ACTIONS(3344), - [anon_sym_any] = ACTIONS(3344), - [anon_sym_number] = ACTIONS(3344), - [anon_sym_boolean] = ACTIONS(3344), - [anon_sym_string] = ACTIONS(3344), - [anon_sym_symbol] = ACTIONS(3344), - [anon_sym_object] = ACTIONS(3344), - [anon_sym_abstract] = ACTIONS(3344), - [anon_sym_interface] = ACTIONS(3344), - [anon_sym_enum] = ACTIONS(3344), - [sym_html_comment] = ACTIONS(5), - }, - [1624] = { - [sym_comment] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(3510), - [sym_identifier] = ACTIONS(3342), - [anon_sym_export] = ACTIONS(3342), - [anon_sym_type] = ACTIONS(3342), - [anon_sym_namespace] = ACTIONS(3342), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_typeof] = ACTIONS(3342), - [anon_sym_import] = ACTIONS(3342), - [anon_sym_with] = ACTIONS(3342), - [anon_sym_var] = ACTIONS(3342), - [anon_sym_let] = ACTIONS(3342), - [anon_sym_const] = ACTIONS(3342), - [anon_sym_BANG] = ACTIONS(3342), - [anon_sym_if] = ACTIONS(3342), - [anon_sym_switch] = ACTIONS(3342), - [anon_sym_for] = ACTIONS(3342), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_await] = ACTIONS(3342), - [anon_sym_while] = ACTIONS(3342), - [anon_sym_do] = ACTIONS(3342), - [anon_sym_try] = ACTIONS(3342), - [anon_sym_break] = ACTIONS(3342), - [anon_sym_continue] = ACTIONS(3342), - [anon_sym_debugger] = ACTIONS(3342), - [anon_sym_return] = ACTIONS(3342), - [anon_sym_throw] = ACTIONS(3342), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_yield] = ACTIONS(3342), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_LTtemplate_GT] = ACTIONS(3342), - [anon_sym_DQUOTE] = ACTIONS(3342), - [anon_sym_SQUOTE] = ACTIONS(3342), - [anon_sym_class] = ACTIONS(3342), - [anon_sym_async] = ACTIONS(3342), - [anon_sym_function] = ACTIONS(3342), - [anon_sym_new] = ACTIONS(3342), - [anon_sym_using] = ACTIONS(3342), - [anon_sym_PLUS] = ACTIONS(3342), - [anon_sym_DASH] = ACTIONS(3342), - [anon_sym_SLASH] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3342), - [anon_sym_TILDE] = ACTIONS(3342), - [anon_sym_void] = ACTIONS(3342), - [anon_sym_delete] = ACTIONS(3342), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), + [1482] = { + [sym_comment] = STATE(1482), + [ts_builtin_sym_end] = ACTIONS(3390), + [sym_identifier] = ACTIONS(3226), + [anon_sym_export] = ACTIONS(3226), + [anon_sym_type] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3226), + [anon_sym_RBRACE] = ACTIONS(3226), + [anon_sym_typeof] = ACTIONS(3226), + [anon_sym_import] = ACTIONS(3226), + [anon_sym_with] = ACTIONS(3226), + [anon_sym_var] = ACTIONS(3226), + [anon_sym_let] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_switch] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3226), + [anon_sym_await] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_debugger] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3226), + [anon_sym_LTtemplate_GT] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(3226), + [anon_sym_SQUOTE] = ACTIONS(3226), + [anon_sym_class] = ACTIONS(3226), + [anon_sym_async] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3226), + [anon_sym_using] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_LT] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3226), + [anon_sym_void] = ACTIONS(3226), + [anon_sym_delete] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3226), + [anon_sym_DASH_DASH] = ACTIONS(3226), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3342), - [sym_number] = ACTIONS(3342), - [sym_private_property_identifier] = ACTIONS(3342), - [sym_this] = ACTIONS(3342), - [sym_super] = ACTIONS(3342), - [sym_true] = ACTIONS(3342), - [sym_false] = ACTIONS(3342), - [sym_null] = ACTIONS(3342), - [sym_undefined] = ACTIONS(3342), - [anon_sym_AT] = ACTIONS(3342), - [anon_sym_static] = ACTIONS(3342), - [anon_sym_readonly] = ACTIONS(3342), - [anon_sym_get] = ACTIONS(3342), - [anon_sym_set] = ACTIONS(3342), - [anon_sym_declare] = ACTIONS(3342), - [anon_sym_public] = ACTIONS(3342), - [anon_sym_private] = ACTIONS(3342), - [anon_sym_protected] = ACTIONS(3342), - [anon_sym_override] = ACTIONS(3342), - [anon_sym_module] = ACTIONS(3342), - [anon_sym_any] = ACTIONS(3342), - [anon_sym_number] = ACTIONS(3342), - [anon_sym_boolean] = ACTIONS(3342), - [anon_sym_string] = ACTIONS(3342), - [anon_sym_symbol] = ACTIONS(3342), - [anon_sym_object] = ACTIONS(3342), - [anon_sym_abstract] = ACTIONS(3342), - [anon_sym_interface] = ACTIONS(3342), - [anon_sym_enum] = ACTIONS(3342), + [anon_sym_BQUOTE] = ACTIONS(3226), + [sym_number] = ACTIONS(3226), + [sym_private_property_identifier] = ACTIONS(3226), + [sym_this] = ACTIONS(3226), + [sym_super] = ACTIONS(3226), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [sym_null] = ACTIONS(3226), + [sym_undefined] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3226), + [anon_sym_static] = ACTIONS(3226), + [anon_sym_readonly] = ACTIONS(3226), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_declare] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_override] = ACTIONS(3226), + [anon_sym_module] = ACTIONS(3226), + [anon_sym_any] = ACTIONS(3226), + [anon_sym_number] = ACTIONS(3226), + [anon_sym_boolean] = ACTIONS(3226), + [anon_sym_string] = ACTIONS(3226), + [anon_sym_symbol] = ACTIONS(3226), + [anon_sym_object] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_interface] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), [sym_html_comment] = ACTIONS(5), }, - [1625] = { - [sym_comment] = STATE(1625), - [ts_builtin_sym_end] = ACTIONS(3488), - [sym_identifier] = ACTIONS(3238), - [anon_sym_export] = ACTIONS(3238), - [anon_sym_type] = ACTIONS(3238), - [anon_sym_namespace] = ACTIONS(3238), - [anon_sym_LBRACE] = ACTIONS(3238), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3238), - [anon_sym_import] = ACTIONS(3238), - [anon_sym_with] = ACTIONS(3238), - [anon_sym_var] = ACTIONS(3238), - [anon_sym_let] = ACTIONS(3238), - [anon_sym_const] = ACTIONS(3238), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_if] = ACTIONS(3238), - [anon_sym_switch] = ACTIONS(3238), - [anon_sym_for] = ACTIONS(3238), - [anon_sym_LPAREN] = ACTIONS(3238), - [anon_sym_await] = ACTIONS(3238), - [anon_sym_while] = ACTIONS(3238), - [anon_sym_do] = ACTIONS(3238), - [anon_sym_try] = ACTIONS(3238), - [anon_sym_break] = ACTIONS(3238), - [anon_sym_continue] = ACTIONS(3238), - [anon_sym_debugger] = ACTIONS(3238), - [anon_sym_return] = ACTIONS(3238), - [anon_sym_throw] = ACTIONS(3238), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_yield] = ACTIONS(3238), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_LTtemplate_GT] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3238), - [anon_sym_class] = ACTIONS(3238), - [anon_sym_async] = ACTIONS(3238), - [anon_sym_function] = ACTIONS(3238), - [anon_sym_new] = ACTIONS(3238), - [anon_sym_using] = ACTIONS(3238), - [anon_sym_PLUS] = ACTIONS(3238), - [anon_sym_DASH] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_TILDE] = ACTIONS(3238), - [anon_sym_void] = ACTIONS(3238), - [anon_sym_delete] = ACTIONS(3238), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), + [1483] = { + [sym_comment] = STATE(1483), + [ts_builtin_sym_end] = ACTIONS(3500), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3150), + [anon_sym_RBRACE] = ACTIONS(3150), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3150), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3150), + [anon_sym_LTtemplate_GT] = ACTIONS(3150), + [anon_sym_DQUOTE] = ACTIONS(3150), + [anon_sym_SQUOTE] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_using] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_LT] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3150), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3150), + [anon_sym_DASH_DASH] = ACTIONS(3150), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3238), - [sym_number] = ACTIONS(3238), - [sym_private_property_identifier] = ACTIONS(3238), - [sym_this] = ACTIONS(3238), - [sym_super] = ACTIONS(3238), - [sym_true] = ACTIONS(3238), - [sym_false] = ACTIONS(3238), - [sym_null] = ACTIONS(3238), - [sym_undefined] = ACTIONS(3238), - [anon_sym_AT] = ACTIONS(3238), - [anon_sym_static] = ACTIONS(3238), - [anon_sym_readonly] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(3238), - [anon_sym_set] = ACTIONS(3238), - [anon_sym_declare] = ACTIONS(3238), - [anon_sym_public] = ACTIONS(3238), - [anon_sym_private] = ACTIONS(3238), - [anon_sym_protected] = ACTIONS(3238), - [anon_sym_override] = ACTIONS(3238), - [anon_sym_module] = ACTIONS(3238), - [anon_sym_any] = ACTIONS(3238), - [anon_sym_number] = ACTIONS(3238), - [anon_sym_boolean] = ACTIONS(3238), - [anon_sym_string] = ACTIONS(3238), - [anon_sym_symbol] = ACTIONS(3238), - [anon_sym_object] = ACTIONS(3238), - [anon_sym_abstract] = ACTIONS(3238), - [anon_sym_interface] = ACTIONS(3238), - [anon_sym_enum] = ACTIONS(3238), + [anon_sym_BQUOTE] = ACTIONS(3150), + [sym_number] = ACTIONS(3150), + [sym_private_property_identifier] = ACTIONS(3150), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3150), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_override] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_object] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), [sym_html_comment] = ACTIONS(5), }, - [1626] = { - [sym_comment] = STATE(1626), - [ts_builtin_sym_end] = ACTIONS(3486), - [sym_identifier] = ACTIONS(3240), - [anon_sym_export] = ACTIONS(3240), - [anon_sym_type] = ACTIONS(3240), - [anon_sym_namespace] = ACTIONS(3240), - [anon_sym_LBRACE] = ACTIONS(3240), - [anon_sym_RBRACE] = ACTIONS(3240), - [anon_sym_typeof] = ACTIONS(3240), - [anon_sym_import] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3240), - [anon_sym_var] = ACTIONS(3240), - [anon_sym_let] = ACTIONS(3240), - [anon_sym_const] = ACTIONS(3240), - [anon_sym_BANG] = ACTIONS(3240), - [anon_sym_if] = ACTIONS(3240), - [anon_sym_switch] = ACTIONS(3240), - [anon_sym_for] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3240), - [anon_sym_await] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3240), - [anon_sym_do] = ACTIONS(3240), - [anon_sym_try] = ACTIONS(3240), - [anon_sym_break] = ACTIONS(3240), - [anon_sym_continue] = ACTIONS(3240), - [anon_sym_debugger] = ACTIONS(3240), - [anon_sym_return] = ACTIONS(3240), - [anon_sym_throw] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3240), - [anon_sym_yield] = ACTIONS(3240), - [anon_sym_LBRACK] = ACTIONS(3240), - [anon_sym_LTtemplate_GT] = ACTIONS(3240), - [anon_sym_DQUOTE] = ACTIONS(3240), - [anon_sym_SQUOTE] = ACTIONS(3240), - [anon_sym_class] = ACTIONS(3240), - [anon_sym_async] = ACTIONS(3240), - [anon_sym_function] = ACTIONS(3240), - [anon_sym_new] = ACTIONS(3240), - [anon_sym_using] = ACTIONS(3240), - [anon_sym_PLUS] = ACTIONS(3240), - [anon_sym_DASH] = ACTIONS(3240), - [anon_sym_SLASH] = ACTIONS(3240), - [anon_sym_LT] = ACTIONS(3240), - [anon_sym_TILDE] = ACTIONS(3240), - [anon_sym_void] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3240), - [anon_sym_PLUS_PLUS] = ACTIONS(3240), - [anon_sym_DASH_DASH] = ACTIONS(3240), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3240), - [sym_number] = ACTIONS(3240), - [sym_private_property_identifier] = ACTIONS(3240), - [sym_this] = ACTIONS(3240), - [sym_super] = ACTIONS(3240), - [sym_true] = ACTIONS(3240), - [sym_false] = ACTIONS(3240), - [sym_null] = ACTIONS(3240), - [sym_undefined] = ACTIONS(3240), - [anon_sym_AT] = ACTIONS(3240), - [anon_sym_static] = ACTIONS(3240), - [anon_sym_readonly] = ACTIONS(3240), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3240), - [anon_sym_declare] = ACTIONS(3240), - [anon_sym_public] = ACTIONS(3240), - [anon_sym_private] = ACTIONS(3240), - [anon_sym_protected] = ACTIONS(3240), - [anon_sym_override] = ACTIONS(3240), - [anon_sym_module] = ACTIONS(3240), - [anon_sym_any] = ACTIONS(3240), - [anon_sym_number] = ACTIONS(3240), - [anon_sym_boolean] = ACTIONS(3240), - [anon_sym_string] = ACTIONS(3240), - [anon_sym_symbol] = ACTIONS(3240), - [anon_sym_object] = ACTIONS(3240), - [anon_sym_abstract] = ACTIONS(3240), - [anon_sym_interface] = ACTIONS(3240), - [anon_sym_enum] = ACTIONS(3240), + [1484] = { + [sym_comment] = STATE(1484), + [ts_builtin_sym_end] = ACTIONS(3398), + [sym_identifier] = ACTIONS(3128), + [anon_sym_export] = ACTIONS(3128), + [anon_sym_type] = ACTIONS(3128), + [anon_sym_namespace] = ACTIONS(3128), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_typeof] = ACTIONS(3128), + [anon_sym_import] = ACTIONS(3128), + [anon_sym_with] = ACTIONS(3128), + [anon_sym_var] = ACTIONS(3128), + [anon_sym_let] = ACTIONS(3128), + [anon_sym_const] = ACTIONS(3128), + [anon_sym_BANG] = ACTIONS(3128), + [anon_sym_if] = ACTIONS(3128), + [anon_sym_switch] = ACTIONS(3128), + [anon_sym_for] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3128), + [anon_sym_await] = ACTIONS(3128), + [anon_sym_while] = ACTIONS(3128), + [anon_sym_do] = ACTIONS(3128), + [anon_sym_try] = ACTIONS(3128), + [anon_sym_break] = ACTIONS(3128), + [anon_sym_continue] = ACTIONS(3128), + [anon_sym_debugger] = ACTIONS(3128), + [anon_sym_return] = ACTIONS(3128), + [anon_sym_throw] = ACTIONS(3128), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_yield] = ACTIONS(3128), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LTtemplate_GT] = ACTIONS(3128), + [anon_sym_DQUOTE] = ACTIONS(3128), + [anon_sym_SQUOTE] = ACTIONS(3128), + [anon_sym_class] = ACTIONS(3128), + [anon_sym_async] = ACTIONS(3128), + [anon_sym_function] = ACTIONS(3128), + [anon_sym_new] = ACTIONS(3128), + [anon_sym_using] = ACTIONS(3128), + [anon_sym_PLUS] = ACTIONS(3128), + [anon_sym_DASH] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_TILDE] = ACTIONS(3128), + [anon_sym_void] = ACTIONS(3128), + [anon_sym_delete] = ACTIONS(3128), + [anon_sym_PLUS_PLUS] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3128), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3128), + [sym_number] = ACTIONS(3128), + [sym_private_property_identifier] = ACTIONS(3128), + [sym_this] = ACTIONS(3128), + [sym_super] = ACTIONS(3128), + [sym_true] = ACTIONS(3128), + [sym_false] = ACTIONS(3128), + [sym_null] = ACTIONS(3128), + [sym_undefined] = ACTIONS(3128), + [anon_sym_AT] = ACTIONS(3128), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3128), + [anon_sym_set] = ACTIONS(3128), + [anon_sym_declare] = ACTIONS(3128), + [anon_sym_public] = ACTIONS(3128), + [anon_sym_private] = ACTIONS(3128), + [anon_sym_protected] = ACTIONS(3128), + [anon_sym_override] = ACTIONS(3128), + [anon_sym_module] = ACTIONS(3128), + [anon_sym_any] = ACTIONS(3128), + [anon_sym_number] = ACTIONS(3128), + [anon_sym_boolean] = ACTIONS(3128), + [anon_sym_string] = ACTIONS(3128), + [anon_sym_symbol] = ACTIONS(3128), + [anon_sym_object] = ACTIONS(3128), + [anon_sym_abstract] = ACTIONS(3128), + [anon_sym_interface] = ACTIONS(3128), + [anon_sym_enum] = ACTIONS(3128), [sym_html_comment] = ACTIONS(5), }, - [1627] = { - [sym_comment] = STATE(1627), - [ts_builtin_sym_end] = ACTIONS(3484), - [sym_identifier] = ACTIONS(3242), - [anon_sym_export] = ACTIONS(3242), - [anon_sym_type] = ACTIONS(3242), - [anon_sym_namespace] = ACTIONS(3242), - [anon_sym_LBRACE] = ACTIONS(3242), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_typeof] = ACTIONS(3242), - [anon_sym_import] = ACTIONS(3242), - [anon_sym_with] = ACTIONS(3242), - [anon_sym_var] = ACTIONS(3242), - [anon_sym_let] = ACTIONS(3242), - [anon_sym_const] = ACTIONS(3242), - [anon_sym_BANG] = ACTIONS(3242), - [anon_sym_if] = ACTIONS(3242), - [anon_sym_switch] = ACTIONS(3242), - [anon_sym_for] = ACTIONS(3242), - [anon_sym_LPAREN] = ACTIONS(3242), - [anon_sym_await] = ACTIONS(3242), - [anon_sym_while] = ACTIONS(3242), - [anon_sym_do] = ACTIONS(3242), - [anon_sym_try] = ACTIONS(3242), - [anon_sym_break] = ACTIONS(3242), - [anon_sym_continue] = ACTIONS(3242), - [anon_sym_debugger] = ACTIONS(3242), - [anon_sym_return] = ACTIONS(3242), - [anon_sym_throw] = ACTIONS(3242), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_yield] = ACTIONS(3242), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_LTtemplate_GT] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(3242), - [anon_sym_SQUOTE] = ACTIONS(3242), - [anon_sym_class] = ACTIONS(3242), - [anon_sym_async] = ACTIONS(3242), - [anon_sym_function] = ACTIONS(3242), - [anon_sym_new] = ACTIONS(3242), - [anon_sym_using] = ACTIONS(3242), - [anon_sym_PLUS] = ACTIONS(3242), - [anon_sym_DASH] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_TILDE] = ACTIONS(3242), - [anon_sym_void] = ACTIONS(3242), - [anon_sym_delete] = ACTIONS(3242), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3242), - [sym_number] = ACTIONS(3242), - [sym_private_property_identifier] = ACTIONS(3242), - [sym_this] = ACTIONS(3242), - [sym_super] = ACTIONS(3242), - [sym_true] = ACTIONS(3242), - [sym_false] = ACTIONS(3242), - [sym_null] = ACTIONS(3242), - [sym_undefined] = ACTIONS(3242), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3242), - [anon_sym_readonly] = ACTIONS(3242), - [anon_sym_get] = ACTIONS(3242), - [anon_sym_set] = ACTIONS(3242), - [anon_sym_declare] = ACTIONS(3242), - [anon_sym_public] = ACTIONS(3242), - [anon_sym_private] = ACTIONS(3242), - [anon_sym_protected] = ACTIONS(3242), - [anon_sym_override] = ACTIONS(3242), - [anon_sym_module] = ACTIONS(3242), - [anon_sym_any] = ACTIONS(3242), - [anon_sym_number] = ACTIONS(3242), - [anon_sym_boolean] = ACTIONS(3242), - [anon_sym_string] = ACTIONS(3242), - [anon_sym_symbol] = ACTIONS(3242), - [anon_sym_object] = ACTIONS(3242), - [anon_sym_abstract] = ACTIONS(3242), - [anon_sym_interface] = ACTIONS(3242), - [anon_sym_enum] = ACTIONS(3242), + [1485] = { + [sym_comment] = STATE(1485), + [ts_builtin_sym_end] = ACTIONS(3534), + [sym_identifier] = ACTIONS(3204), + [anon_sym_export] = ACTIONS(3204), + [anon_sym_type] = ACTIONS(3204), + [anon_sym_namespace] = ACTIONS(3204), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_RBRACE] = ACTIONS(3204), + [anon_sym_typeof] = ACTIONS(3204), + [anon_sym_import] = ACTIONS(3204), + [anon_sym_with] = ACTIONS(3204), + [anon_sym_var] = ACTIONS(3204), + [anon_sym_let] = ACTIONS(3204), + [anon_sym_const] = ACTIONS(3204), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_if] = ACTIONS(3204), + [anon_sym_switch] = ACTIONS(3204), + [anon_sym_for] = ACTIONS(3204), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_await] = ACTIONS(3204), + [anon_sym_while] = ACTIONS(3204), + [anon_sym_do] = ACTIONS(3204), + [anon_sym_try] = ACTIONS(3204), + [anon_sym_break] = ACTIONS(3204), + [anon_sym_continue] = ACTIONS(3204), + [anon_sym_debugger] = ACTIONS(3204), + [anon_sym_return] = ACTIONS(3204), + [anon_sym_throw] = ACTIONS(3204), + [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym_yield] = ACTIONS(3204), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_LTtemplate_GT] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3204), + [anon_sym_class] = ACTIONS(3204), + [anon_sym_async] = ACTIONS(3204), + [anon_sym_function] = ACTIONS(3204), + [anon_sym_new] = ACTIONS(3204), + [anon_sym_using] = ACTIONS(3204), + [anon_sym_PLUS] = ACTIONS(3204), + [anon_sym_DASH] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_void] = ACTIONS(3204), + [anon_sym_delete] = ACTIONS(3204), + [anon_sym_PLUS_PLUS] = ACTIONS(3204), + [anon_sym_DASH_DASH] = ACTIONS(3204), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3204), + [sym_number] = ACTIONS(3204), + [sym_private_property_identifier] = ACTIONS(3204), + [sym_this] = ACTIONS(3204), + [sym_super] = ACTIONS(3204), + [sym_true] = ACTIONS(3204), + [sym_false] = ACTIONS(3204), + [sym_null] = ACTIONS(3204), + [sym_undefined] = ACTIONS(3204), + [anon_sym_AT] = ACTIONS(3204), + [anon_sym_static] = ACTIONS(3204), + [anon_sym_readonly] = ACTIONS(3204), + [anon_sym_get] = ACTIONS(3204), + [anon_sym_set] = ACTIONS(3204), + [anon_sym_declare] = ACTIONS(3204), + [anon_sym_public] = ACTIONS(3204), + [anon_sym_private] = ACTIONS(3204), + [anon_sym_protected] = ACTIONS(3204), + [anon_sym_override] = ACTIONS(3204), + [anon_sym_module] = ACTIONS(3204), + [anon_sym_any] = ACTIONS(3204), + [anon_sym_number] = ACTIONS(3204), + [anon_sym_boolean] = ACTIONS(3204), + [anon_sym_string] = ACTIONS(3204), + [anon_sym_symbol] = ACTIONS(3204), + [anon_sym_object] = ACTIONS(3204), + [anon_sym_abstract] = ACTIONS(3204), + [anon_sym_interface] = ACTIONS(3204), + [anon_sym_enum] = ACTIONS(3204), [sym_html_comment] = ACTIONS(5), }, - [1628] = { - [sym_comment] = STATE(1628), - [ts_builtin_sym_end] = ACTIONS(3566), - [sym_identifier] = ACTIONS(3158), - [anon_sym_export] = ACTIONS(3158), - [anon_sym_type] = ACTIONS(3158), - [anon_sym_namespace] = ACTIONS(3158), - [anon_sym_LBRACE] = ACTIONS(3158), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_typeof] = ACTIONS(3158), - [anon_sym_import] = ACTIONS(3158), - [anon_sym_with] = ACTIONS(3158), - [anon_sym_var] = ACTIONS(3158), - [anon_sym_let] = ACTIONS(3158), - [anon_sym_const] = ACTIONS(3158), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_switch] = ACTIONS(3158), - [anon_sym_for] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_await] = ACTIONS(3158), - [anon_sym_while] = ACTIONS(3158), - [anon_sym_do] = ACTIONS(3158), - [anon_sym_try] = ACTIONS(3158), - [anon_sym_break] = ACTIONS(3158), - [anon_sym_continue] = ACTIONS(3158), - [anon_sym_debugger] = ACTIONS(3158), - [anon_sym_return] = ACTIONS(3158), - [anon_sym_throw] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_yield] = ACTIONS(3158), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_LTtemplate_GT] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_SQUOTE] = ACTIONS(3158), - [anon_sym_class] = ACTIONS(3158), - [anon_sym_async] = ACTIONS(3158), - [anon_sym_function] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3158), - [anon_sym_using] = ACTIONS(3158), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_SLASH] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3158), - [anon_sym_TILDE] = ACTIONS(3158), - [anon_sym_void] = ACTIONS(3158), - [anon_sym_delete] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_DASH_DASH] = ACTIONS(3158), + [1486] = { + [sym_comment] = STATE(1486), + [ts_builtin_sym_end] = ACTIONS(3530), + [sym_identifier] = ACTIONS(3202), + [anon_sym_export] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3202), + [anon_sym_RBRACE] = ACTIONS(3202), + [anon_sym_typeof] = ACTIONS(3202), + [anon_sym_import] = ACTIONS(3202), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_var] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3202), + [anon_sym_await] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_debugger] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_throw] = ACTIONS(3202), + [anon_sym_SEMI] = ACTIONS(3202), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3202), + [anon_sym_LTtemplate_GT] = ACTIONS(3202), + [anon_sym_DQUOTE] = ACTIONS(3202), + [anon_sym_SQUOTE] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_async] = ACTIONS(3202), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_using] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_LT] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3202), + [anon_sym_void] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3202), + [anon_sym_DASH_DASH] = ACTIONS(3202), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3158), - [sym_number] = ACTIONS(3158), - [sym_private_property_identifier] = ACTIONS(3158), - [sym_this] = ACTIONS(3158), - [sym_super] = ACTIONS(3158), - [sym_true] = ACTIONS(3158), - [sym_false] = ACTIONS(3158), - [sym_null] = ACTIONS(3158), - [sym_undefined] = ACTIONS(3158), - [anon_sym_AT] = ACTIONS(3158), - [anon_sym_static] = ACTIONS(3158), - [anon_sym_readonly] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3158), - [anon_sym_set] = ACTIONS(3158), - [anon_sym_declare] = ACTIONS(3158), - [anon_sym_public] = ACTIONS(3158), - [anon_sym_private] = ACTIONS(3158), - [anon_sym_protected] = ACTIONS(3158), - [anon_sym_override] = ACTIONS(3158), - [anon_sym_module] = ACTIONS(3158), - [anon_sym_any] = ACTIONS(3158), - [anon_sym_number] = ACTIONS(3158), - [anon_sym_boolean] = ACTIONS(3158), - [anon_sym_string] = ACTIONS(3158), - [anon_sym_symbol] = ACTIONS(3158), - [anon_sym_object] = ACTIONS(3158), - [anon_sym_abstract] = ACTIONS(3158), - [anon_sym_interface] = ACTIONS(3158), - [anon_sym_enum] = ACTIONS(3158), + [anon_sym_BQUOTE] = ACTIONS(3202), + [sym_number] = ACTIONS(3202), + [sym_private_property_identifier] = ACTIONS(3202), + [sym_this] = ACTIONS(3202), + [sym_super] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_null] = ACTIONS(3202), + [sym_undefined] = ACTIONS(3202), + [anon_sym_AT] = ACTIONS(3202), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_readonly] = ACTIONS(3202), + [anon_sym_get] = ACTIONS(3202), + [anon_sym_set] = ACTIONS(3202), + [anon_sym_declare] = ACTIONS(3202), + [anon_sym_public] = ACTIONS(3202), + [anon_sym_private] = ACTIONS(3202), + [anon_sym_protected] = ACTIONS(3202), + [anon_sym_override] = ACTIONS(3202), + [anon_sym_module] = ACTIONS(3202), + [anon_sym_any] = ACTIONS(3202), + [anon_sym_number] = ACTIONS(3202), + [anon_sym_boolean] = ACTIONS(3202), + [anon_sym_string] = ACTIONS(3202), + [anon_sym_symbol] = ACTIONS(3202), + [anon_sym_object] = ACTIONS(3202), + [anon_sym_abstract] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), [sym_html_comment] = ACTIONS(5), }, - [1629] = { - [sym_comment] = STATE(1629), - [ts_builtin_sym_end] = ACTIONS(3564), - [sym_identifier] = ACTIONS(3160), - [anon_sym_export] = ACTIONS(3160), - [anon_sym_type] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_RBRACE] = ACTIONS(3160), - [anon_sym_typeof] = ACTIONS(3160), - [anon_sym_import] = ACTIONS(3160), - [anon_sym_with] = ACTIONS(3160), - [anon_sym_var] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_BANG] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_await] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_debugger] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LTtemplate_GT] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_SQUOTE] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_async] = ACTIONS(3160), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_using] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_SLASH] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_void] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_PLUS_PLUS] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3160), + [1487] = { + [sym_comment] = STATE(1487), + [ts_builtin_sym_end] = ACTIONS(3456), + [sym_identifier] = ACTIONS(3180), + [anon_sym_export] = ACTIONS(3180), + [anon_sym_type] = ACTIONS(3180), + [anon_sym_namespace] = ACTIONS(3180), + [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_RBRACE] = ACTIONS(3180), + [anon_sym_typeof] = ACTIONS(3180), + [anon_sym_import] = ACTIONS(3180), + [anon_sym_with] = ACTIONS(3180), + [anon_sym_var] = ACTIONS(3180), + [anon_sym_let] = ACTIONS(3180), + [anon_sym_const] = ACTIONS(3180), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_if] = ACTIONS(3180), + [anon_sym_switch] = ACTIONS(3180), + [anon_sym_for] = ACTIONS(3180), + [anon_sym_LPAREN] = ACTIONS(3180), + [anon_sym_await] = ACTIONS(3180), + [anon_sym_while] = ACTIONS(3180), + [anon_sym_do] = ACTIONS(3180), + [anon_sym_try] = ACTIONS(3180), + [anon_sym_break] = ACTIONS(3180), + [anon_sym_continue] = ACTIONS(3180), + [anon_sym_debugger] = ACTIONS(3180), + [anon_sym_return] = ACTIONS(3180), + [anon_sym_throw] = ACTIONS(3180), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_yield] = ACTIONS(3180), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_LTtemplate_GT] = ACTIONS(3180), + [anon_sym_DQUOTE] = ACTIONS(3180), + [anon_sym_SQUOTE] = ACTIONS(3180), + [anon_sym_class] = ACTIONS(3180), + [anon_sym_async] = ACTIONS(3180), + [anon_sym_function] = ACTIONS(3180), + [anon_sym_new] = ACTIONS(3180), + [anon_sym_using] = ACTIONS(3180), + [anon_sym_PLUS] = ACTIONS(3180), + [anon_sym_DASH] = ACTIONS(3180), + [anon_sym_SLASH] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_TILDE] = ACTIONS(3180), + [anon_sym_void] = ACTIONS(3180), + [anon_sym_delete] = ACTIONS(3180), + [anon_sym_PLUS_PLUS] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3180), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3160), - [sym_number] = ACTIONS(3160), - [sym_private_property_identifier] = ACTIONS(3160), - [sym_this] = ACTIONS(3160), - [sym_super] = ACTIONS(3160), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [sym_null] = ACTIONS(3160), - [sym_undefined] = ACTIONS(3160), - [anon_sym_AT] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_readonly] = ACTIONS(3160), - [anon_sym_get] = ACTIONS(3160), - [anon_sym_set] = ACTIONS(3160), - [anon_sym_declare] = ACTIONS(3160), - [anon_sym_public] = ACTIONS(3160), - [anon_sym_private] = ACTIONS(3160), - [anon_sym_protected] = ACTIONS(3160), - [anon_sym_override] = ACTIONS(3160), - [anon_sym_module] = ACTIONS(3160), - [anon_sym_any] = ACTIONS(3160), - [anon_sym_number] = ACTIONS(3160), - [anon_sym_boolean] = ACTIONS(3160), - [anon_sym_string] = ACTIONS(3160), - [anon_sym_symbol] = ACTIONS(3160), - [anon_sym_object] = ACTIONS(3160), - [anon_sym_abstract] = ACTIONS(3160), - [anon_sym_interface] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), + [anon_sym_BQUOTE] = ACTIONS(3180), + [sym_number] = ACTIONS(3180), + [sym_private_property_identifier] = ACTIONS(3180), + [sym_this] = ACTIONS(3180), + [sym_super] = ACTIONS(3180), + [sym_true] = ACTIONS(3180), + [sym_false] = ACTIONS(3180), + [sym_null] = ACTIONS(3180), + [sym_undefined] = ACTIONS(3180), + [anon_sym_AT] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3180), + [anon_sym_readonly] = ACTIONS(3180), + [anon_sym_get] = ACTIONS(3180), + [anon_sym_set] = ACTIONS(3180), + [anon_sym_declare] = ACTIONS(3180), + [anon_sym_public] = ACTIONS(3180), + [anon_sym_private] = ACTIONS(3180), + [anon_sym_protected] = ACTIONS(3180), + [anon_sym_override] = ACTIONS(3180), + [anon_sym_module] = ACTIONS(3180), + [anon_sym_any] = ACTIONS(3180), + [anon_sym_number] = ACTIONS(3180), + [anon_sym_boolean] = ACTIONS(3180), + [anon_sym_string] = ACTIONS(3180), + [anon_sym_symbol] = ACTIONS(3180), + [anon_sym_object] = ACTIONS(3180), + [anon_sym_abstract] = ACTIONS(3180), + [anon_sym_interface] = ACTIONS(3180), + [anon_sym_enum] = ACTIONS(3180), [sym_html_comment] = ACTIONS(5), }, - [1630] = { - [sym_comment] = STATE(1630), - [ts_builtin_sym_end] = ACTIONS(3562), - [sym_identifier] = ACTIONS(3162), - [anon_sym_export] = ACTIONS(3162), - [anon_sym_type] = ACTIONS(3162), - [anon_sym_namespace] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3162), - [anon_sym_RBRACE] = ACTIONS(3162), - [anon_sym_typeof] = ACTIONS(3162), - [anon_sym_import] = ACTIONS(3162), - [anon_sym_with] = ACTIONS(3162), - [anon_sym_var] = ACTIONS(3162), - [anon_sym_let] = ACTIONS(3162), - [anon_sym_const] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_switch] = ACTIONS(3162), - [anon_sym_for] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3162), - [anon_sym_await] = ACTIONS(3162), - [anon_sym_while] = ACTIONS(3162), - [anon_sym_do] = ACTIONS(3162), - [anon_sym_try] = ACTIONS(3162), - [anon_sym_break] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(3162), - [anon_sym_debugger] = ACTIONS(3162), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_throw] = ACTIONS(3162), - [anon_sym_SEMI] = ACTIONS(3162), - [anon_sym_yield] = ACTIONS(3162), - [anon_sym_LBRACK] = ACTIONS(3162), - [anon_sym_LTtemplate_GT] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3162), - [anon_sym_class] = ACTIONS(3162), - [anon_sym_async] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3162), - [anon_sym_new] = ACTIONS(3162), - [anon_sym_using] = ACTIONS(3162), - [anon_sym_PLUS] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3162), - [anon_sym_SLASH] = ACTIONS(3162), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_void] = ACTIONS(3162), - [anon_sym_delete] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3162), - [anon_sym_DASH_DASH] = ACTIONS(3162), + [1488] = { + [sym_comment] = STATE(1488), + [ts_builtin_sym_end] = ACTIONS(3394), + [sym_identifier] = ACTIONS(3172), + [anon_sym_export] = ACTIONS(3172), + [anon_sym_type] = ACTIONS(3172), + [anon_sym_namespace] = ACTIONS(3172), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3172), + [anon_sym_typeof] = ACTIONS(3172), + [anon_sym_import] = ACTIONS(3172), + [anon_sym_with] = ACTIONS(3172), + [anon_sym_var] = ACTIONS(3172), + [anon_sym_let] = ACTIONS(3172), + [anon_sym_const] = ACTIONS(3172), + [anon_sym_BANG] = ACTIONS(3172), + [anon_sym_if] = ACTIONS(3172), + [anon_sym_switch] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_await] = ACTIONS(3172), + [anon_sym_while] = ACTIONS(3172), + [anon_sym_do] = ACTIONS(3172), + [anon_sym_try] = ACTIONS(3172), + [anon_sym_break] = ACTIONS(3172), + [anon_sym_continue] = ACTIONS(3172), + [anon_sym_debugger] = ACTIONS(3172), + [anon_sym_return] = ACTIONS(3172), + [anon_sym_throw] = ACTIONS(3172), + [anon_sym_SEMI] = ACTIONS(3172), + [anon_sym_yield] = ACTIONS(3172), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_LTtemplate_GT] = ACTIONS(3172), + [anon_sym_DQUOTE] = ACTIONS(3172), + [anon_sym_SQUOTE] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3172), + [anon_sym_async] = ACTIONS(3172), + [anon_sym_function] = ACTIONS(3172), + [anon_sym_new] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3172), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_void] = ACTIONS(3172), + [anon_sym_delete] = ACTIONS(3172), + [anon_sym_PLUS_PLUS] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3172), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3162), - [sym_number] = ACTIONS(3162), - [sym_private_property_identifier] = ACTIONS(3162), - [sym_this] = ACTIONS(3162), - [sym_super] = ACTIONS(3162), - [sym_true] = ACTIONS(3162), - [sym_false] = ACTIONS(3162), - [sym_null] = ACTIONS(3162), - [sym_undefined] = ACTIONS(3162), - [anon_sym_AT] = ACTIONS(3162), - [anon_sym_static] = ACTIONS(3162), - [anon_sym_readonly] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(3162), - [anon_sym_set] = ACTIONS(3162), - [anon_sym_declare] = ACTIONS(3162), - [anon_sym_public] = ACTIONS(3162), - [anon_sym_private] = ACTIONS(3162), - [anon_sym_protected] = ACTIONS(3162), - [anon_sym_override] = ACTIONS(3162), - [anon_sym_module] = ACTIONS(3162), - [anon_sym_any] = ACTIONS(3162), - [anon_sym_number] = ACTIONS(3162), - [anon_sym_boolean] = ACTIONS(3162), - [anon_sym_string] = ACTIONS(3162), - [anon_sym_symbol] = ACTIONS(3162), - [anon_sym_object] = ACTIONS(3162), - [anon_sym_abstract] = ACTIONS(3162), - [anon_sym_interface] = ACTIONS(3162), - [anon_sym_enum] = ACTIONS(3162), + [anon_sym_BQUOTE] = ACTIONS(3172), + [sym_number] = ACTIONS(3172), + [sym_private_property_identifier] = ACTIONS(3172), + [sym_this] = ACTIONS(3172), + [sym_super] = ACTIONS(3172), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [sym_null] = ACTIONS(3172), + [sym_undefined] = ACTIONS(3172), + [anon_sym_AT] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3172), + [anon_sym_readonly] = ACTIONS(3172), + [anon_sym_get] = ACTIONS(3172), + [anon_sym_set] = ACTIONS(3172), + [anon_sym_declare] = ACTIONS(3172), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_override] = ACTIONS(3172), + [anon_sym_module] = ACTIONS(3172), + [anon_sym_any] = ACTIONS(3172), + [anon_sym_number] = ACTIONS(3172), + [anon_sym_boolean] = ACTIONS(3172), + [anon_sym_string] = ACTIONS(3172), + [anon_sym_symbol] = ACTIONS(3172), + [anon_sym_object] = ACTIONS(3172), + [anon_sym_abstract] = ACTIONS(3172), + [anon_sym_interface] = ACTIONS(3172), + [anon_sym_enum] = ACTIONS(3172), [sym_html_comment] = ACTIONS(5), }, - [1631] = { - [sym_comment] = STATE(1631), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1489] = { + [sym_comment] = STATE(1489), + [ts_builtin_sym_end] = ACTIONS(3402), + [sym_identifier] = ACTIONS(3136), + [anon_sym_export] = ACTIONS(3136), + [anon_sym_type] = ACTIONS(3136), + [anon_sym_namespace] = ACTIONS(3136), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_RBRACE] = ACTIONS(3136), + [anon_sym_typeof] = ACTIONS(3136), + [anon_sym_import] = ACTIONS(3136), + [anon_sym_with] = ACTIONS(3136), + [anon_sym_var] = ACTIONS(3136), + [anon_sym_let] = ACTIONS(3136), + [anon_sym_const] = ACTIONS(3136), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_if] = ACTIONS(3136), + [anon_sym_switch] = ACTIONS(3136), + [anon_sym_for] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3136), + [anon_sym_await] = ACTIONS(3136), + [anon_sym_while] = ACTIONS(3136), + [anon_sym_do] = ACTIONS(3136), + [anon_sym_try] = ACTIONS(3136), + [anon_sym_break] = ACTIONS(3136), + [anon_sym_continue] = ACTIONS(3136), + [anon_sym_debugger] = ACTIONS(3136), + [anon_sym_return] = ACTIONS(3136), + [anon_sym_throw] = ACTIONS(3136), + [anon_sym_SEMI] = ACTIONS(3136), + [anon_sym_yield] = ACTIONS(3136), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_LTtemplate_GT] = ACTIONS(3136), + [anon_sym_DQUOTE] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3136), + [anon_sym_class] = ACTIONS(3136), + [anon_sym_async] = ACTIONS(3136), + [anon_sym_function] = ACTIONS(3136), + [anon_sym_new] = ACTIONS(3136), + [anon_sym_using] = ACTIONS(3136), + [anon_sym_PLUS] = ACTIONS(3136), + [anon_sym_DASH] = ACTIONS(3136), + [anon_sym_SLASH] = ACTIONS(3136), + [anon_sym_LT] = ACTIONS(3136), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_void] = ACTIONS(3136), + [anon_sym_delete] = ACTIONS(3136), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_DASH_DASH] = ACTIONS(3136), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3136), + [sym_number] = ACTIONS(3136), + [sym_private_property_identifier] = ACTIONS(3136), + [sym_this] = ACTIONS(3136), + [sym_super] = ACTIONS(3136), + [sym_true] = ACTIONS(3136), + [sym_false] = ACTIONS(3136), + [sym_null] = ACTIONS(3136), + [sym_undefined] = ACTIONS(3136), + [anon_sym_AT] = ACTIONS(3136), + [anon_sym_static] = ACTIONS(3136), + [anon_sym_readonly] = ACTIONS(3136), + [anon_sym_get] = ACTIONS(3136), + [anon_sym_set] = ACTIONS(3136), + [anon_sym_declare] = ACTIONS(3136), + [anon_sym_public] = ACTIONS(3136), + [anon_sym_private] = ACTIONS(3136), + [anon_sym_protected] = ACTIONS(3136), + [anon_sym_override] = ACTIONS(3136), + [anon_sym_module] = ACTIONS(3136), + [anon_sym_any] = ACTIONS(3136), + [anon_sym_number] = ACTIONS(3136), + [anon_sym_boolean] = ACTIONS(3136), + [anon_sym_string] = ACTIONS(3136), + [anon_sym_symbol] = ACTIONS(3136), + [anon_sym_object] = ACTIONS(3136), + [anon_sym_abstract] = ACTIONS(3136), + [anon_sym_interface] = ACTIONS(3136), + [anon_sym_enum] = ACTIONS(3136), [sym_html_comment] = ACTIONS(5), }, - [1632] = { - [sym_comment] = STATE(1632), - [ts_builtin_sym_end] = ACTIONS(3560), - [sym_identifier] = ACTIONS(3164), - [anon_sym_export] = ACTIONS(3164), - [anon_sym_type] = ACTIONS(3164), - [anon_sym_namespace] = ACTIONS(3164), - [anon_sym_LBRACE] = ACTIONS(3164), - [anon_sym_RBRACE] = ACTIONS(3164), - [anon_sym_typeof] = ACTIONS(3164), - [anon_sym_import] = ACTIONS(3164), - [anon_sym_with] = ACTIONS(3164), - [anon_sym_var] = ACTIONS(3164), - [anon_sym_let] = ACTIONS(3164), - [anon_sym_const] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_switch] = ACTIONS(3164), - [anon_sym_for] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3164), - [anon_sym_await] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_do] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_debugger] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3164), - [anon_sym_yield] = ACTIONS(3164), - [anon_sym_LBRACK] = ACTIONS(3164), - [anon_sym_LTtemplate_GT] = ACTIONS(3164), - [anon_sym_DQUOTE] = ACTIONS(3164), - [anon_sym_SQUOTE] = ACTIONS(3164), - [anon_sym_class] = ACTIONS(3164), - [anon_sym_async] = ACTIONS(3164), - [anon_sym_function] = ACTIONS(3164), - [anon_sym_new] = ACTIONS(3164), - [anon_sym_using] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_LT] = ACTIONS(3164), - [anon_sym_TILDE] = ACTIONS(3164), - [anon_sym_void] = ACTIONS(3164), - [anon_sym_delete] = ACTIONS(3164), - [anon_sym_PLUS_PLUS] = ACTIONS(3164), - [anon_sym_DASH_DASH] = ACTIONS(3164), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3164), - [sym_number] = ACTIONS(3164), - [sym_private_property_identifier] = ACTIONS(3164), - [sym_this] = ACTIONS(3164), - [sym_super] = ACTIONS(3164), - [sym_true] = ACTIONS(3164), - [sym_false] = ACTIONS(3164), - [sym_null] = ACTIONS(3164), - [sym_undefined] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3164), - [anon_sym_static] = ACTIONS(3164), - [anon_sym_readonly] = ACTIONS(3164), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_declare] = ACTIONS(3164), - [anon_sym_public] = ACTIONS(3164), - [anon_sym_private] = ACTIONS(3164), - [anon_sym_protected] = ACTIONS(3164), - [anon_sym_override] = ACTIONS(3164), - [anon_sym_module] = ACTIONS(3164), - [anon_sym_any] = ACTIONS(3164), - [anon_sym_number] = ACTIONS(3164), - [anon_sym_boolean] = ACTIONS(3164), - [anon_sym_string] = ACTIONS(3164), - [anon_sym_symbol] = ACTIONS(3164), - [anon_sym_object] = ACTIONS(3164), - [anon_sym_abstract] = ACTIONS(3164), - [anon_sym_interface] = ACTIONS(3164), - [anon_sym_enum] = ACTIONS(3164), + [1490] = { + [sym_comment] = STATE(1490), + [ts_builtin_sym_end] = ACTIONS(3486), + [sym_identifier] = ACTIONS(3306), + [anon_sym_export] = ACTIONS(3306), + [anon_sym_type] = ACTIONS(3306), + [anon_sym_namespace] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3306), + [anon_sym_RBRACE] = ACTIONS(3306), + [anon_sym_typeof] = ACTIONS(3306), + [anon_sym_import] = ACTIONS(3306), + [anon_sym_with] = ACTIONS(3306), + [anon_sym_var] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_switch] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3306), + [anon_sym_await] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_break] = ACTIONS(3306), + [anon_sym_continue] = ACTIONS(3306), + [anon_sym_debugger] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_throw] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3306), + [anon_sym_LTtemplate_GT] = ACTIONS(3306), + [anon_sym_DQUOTE] = ACTIONS(3306), + [anon_sym_SQUOTE] = ACTIONS(3306), + [anon_sym_class] = ACTIONS(3306), + [anon_sym_async] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_using] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_SLASH] = ACTIONS(3306), + [anon_sym_LT] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3306), + [anon_sym_void] = ACTIONS(3306), + [anon_sym_delete] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3306), + [anon_sym_DASH_DASH] = ACTIONS(3306), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3306), + [sym_number] = ACTIONS(3306), + [sym_private_property_identifier] = ACTIONS(3306), + [sym_this] = ACTIONS(3306), + [sym_super] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_null] = ACTIONS(3306), + [sym_undefined] = ACTIONS(3306), + [anon_sym_AT] = ACTIONS(3306), + [anon_sym_static] = ACTIONS(3306), + [anon_sym_readonly] = ACTIONS(3306), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3306), + [anon_sym_declare] = ACTIONS(3306), + [anon_sym_public] = ACTIONS(3306), + [anon_sym_private] = ACTIONS(3306), + [anon_sym_protected] = ACTIONS(3306), + [anon_sym_override] = ACTIONS(3306), + [anon_sym_module] = ACTIONS(3306), + [anon_sym_any] = ACTIONS(3306), + [anon_sym_number] = ACTIONS(3306), + [anon_sym_boolean] = ACTIONS(3306), + [anon_sym_string] = ACTIONS(3306), + [anon_sym_symbol] = ACTIONS(3306), + [anon_sym_object] = ACTIONS(3306), + [anon_sym_abstract] = ACTIONS(3306), + [anon_sym_interface] = ACTIONS(3306), + [anon_sym_enum] = ACTIONS(3306), [sym_html_comment] = ACTIONS(5), }, - [1633] = { - [sym_comment] = STATE(1633), - [ts_builtin_sym_end] = ACTIONS(2253), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_namespace] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2251), - [anon_sym_RBRACE] = ACTIONS(2251), - [anon_sym_typeof] = ACTIONS(2251), - [anon_sym_import] = ACTIONS(2251), - [anon_sym_with] = ACTIONS(2251), - [anon_sym_var] = ACTIONS(2251), - [anon_sym_let] = ACTIONS(2251), - [anon_sym_const] = ACTIONS(2251), - [anon_sym_BANG] = ACTIONS(2251), - [anon_sym_if] = ACTIONS(2251), - [anon_sym_switch] = ACTIONS(2251), - [anon_sym_for] = ACTIONS(2251), - [anon_sym_LPAREN] = ACTIONS(2251), - [anon_sym_await] = ACTIONS(2251), - [anon_sym_while] = ACTIONS(2251), - [anon_sym_do] = ACTIONS(2251), - [anon_sym_try] = ACTIONS(2251), - [anon_sym_break] = ACTIONS(2251), - [anon_sym_continue] = ACTIONS(2251), - [anon_sym_debugger] = ACTIONS(2251), - [anon_sym_return] = ACTIONS(2251), - [anon_sym_throw] = ACTIONS(2251), - [anon_sym_SEMI] = ACTIONS(2251), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2251), - [anon_sym_LTtemplate_GT] = ACTIONS(2251), - [anon_sym_DQUOTE] = ACTIONS(2251), - [anon_sym_SQUOTE] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(2251), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_using] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_LT] = ACTIONS(2251), - [anon_sym_TILDE] = ACTIONS(2251), - [anon_sym_void] = ACTIONS(2251), - [anon_sym_delete] = ACTIONS(2251), - [anon_sym_PLUS_PLUS] = ACTIONS(2251), - [anon_sym_DASH_DASH] = ACTIONS(2251), + [1491] = { + [sym_comment] = STATE(1491), + [ts_builtin_sym_end] = ACTIONS(3446), + [sym_identifier] = ACTIONS(3224), + [anon_sym_export] = ACTIONS(3224), + [anon_sym_type] = ACTIONS(3224), + [anon_sym_namespace] = ACTIONS(3224), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3224), + [anon_sym_import] = ACTIONS(3224), + [anon_sym_with] = ACTIONS(3224), + [anon_sym_var] = ACTIONS(3224), + [anon_sym_let] = ACTIONS(3224), + [anon_sym_const] = ACTIONS(3224), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_if] = ACTIONS(3224), + [anon_sym_switch] = ACTIONS(3224), + [anon_sym_for] = ACTIONS(3224), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3224), + [anon_sym_while] = ACTIONS(3224), + [anon_sym_do] = ACTIONS(3224), + [anon_sym_try] = ACTIONS(3224), + [anon_sym_break] = ACTIONS(3224), + [anon_sym_continue] = ACTIONS(3224), + [anon_sym_debugger] = ACTIONS(3224), + [anon_sym_return] = ACTIONS(3224), + [anon_sym_throw] = ACTIONS(3224), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_yield] = ACTIONS(3224), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LTtemplate_GT] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [anon_sym_class] = ACTIONS(3224), + [anon_sym_async] = ACTIONS(3224), + [anon_sym_function] = ACTIONS(3224), + [anon_sym_new] = ACTIONS(3224), + [anon_sym_using] = ACTIONS(3224), + [anon_sym_PLUS] = ACTIONS(3224), + [anon_sym_DASH] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3224), + [anon_sym_delete] = ACTIONS(3224), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2251), - [sym_number] = ACTIONS(2251), - [sym_private_property_identifier] = ACTIONS(2251), - [sym_this] = ACTIONS(2251), - [sym_super] = ACTIONS(2251), - [sym_true] = ACTIONS(2251), - [sym_false] = ACTIONS(2251), - [sym_null] = ACTIONS(2251), - [sym_undefined] = ACTIONS(2251), - [anon_sym_AT] = ACTIONS(2251), - [anon_sym_static] = ACTIONS(2251), - [anon_sym_readonly] = ACTIONS(2251), - [anon_sym_get] = ACTIONS(2251), - [anon_sym_set] = ACTIONS(2251), - [anon_sym_declare] = ACTIONS(2251), - [anon_sym_public] = ACTIONS(2251), - [anon_sym_private] = ACTIONS(2251), - [anon_sym_protected] = ACTIONS(2251), - [anon_sym_override] = ACTIONS(2251), - [anon_sym_module] = ACTIONS(2251), - [anon_sym_any] = ACTIONS(2251), - [anon_sym_number] = ACTIONS(2251), - [anon_sym_boolean] = ACTIONS(2251), - [anon_sym_string] = ACTIONS(2251), - [anon_sym_symbol] = ACTIONS(2251), - [anon_sym_object] = ACTIONS(2251), - [anon_sym_abstract] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_private_property_identifier] = ACTIONS(3224), + [sym_this] = ACTIONS(3224), + [sym_super] = ACTIONS(3224), + [sym_true] = ACTIONS(3224), + [sym_false] = ACTIONS(3224), + [sym_null] = ACTIONS(3224), + [sym_undefined] = ACTIONS(3224), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3224), + [anon_sym_readonly] = ACTIONS(3224), + [anon_sym_get] = ACTIONS(3224), + [anon_sym_set] = ACTIONS(3224), + [anon_sym_declare] = ACTIONS(3224), + [anon_sym_public] = ACTIONS(3224), + [anon_sym_private] = ACTIONS(3224), + [anon_sym_protected] = ACTIONS(3224), + [anon_sym_override] = ACTIONS(3224), + [anon_sym_module] = ACTIONS(3224), + [anon_sym_any] = ACTIONS(3224), + [anon_sym_number] = ACTIONS(3224), + [anon_sym_boolean] = ACTIONS(3224), + [anon_sym_string] = ACTIONS(3224), + [anon_sym_symbol] = ACTIONS(3224), + [anon_sym_object] = ACTIONS(3224), + [anon_sym_abstract] = ACTIONS(3224), + [anon_sym_interface] = ACTIONS(3224), + [anon_sym_enum] = ACTIONS(3224), [sym_html_comment] = ACTIONS(5), }, - [1634] = { - [sym_comment] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(2223), - [sym_identifier] = ACTIONS(2221), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_type] = ACTIONS(2221), - [anon_sym_namespace] = ACTIONS(2221), - [anon_sym_LBRACE] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_typeof] = ACTIONS(2221), - [anon_sym_import] = ACTIONS(2221), - [anon_sym_with] = ACTIONS(2221), - [anon_sym_var] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [anon_sym_BANG] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_switch] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_await] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_debugger] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_throw] = ACTIONS(2221), - [anon_sym_SEMI] = ACTIONS(2221), - [anon_sym_yield] = ACTIONS(2221), - [anon_sym_LBRACK] = ACTIONS(2221), - [anon_sym_LTtemplate_GT] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [anon_sym_SQUOTE] = ACTIONS(2221), - [anon_sym_class] = ACTIONS(2221), - [anon_sym_async] = ACTIONS(2221), - [anon_sym_function] = ACTIONS(2221), - [anon_sym_new] = ACTIONS(2221), - [anon_sym_using] = ACTIONS(2221), - [anon_sym_PLUS] = ACTIONS(2221), - [anon_sym_DASH] = ACTIONS(2221), - [anon_sym_SLASH] = ACTIONS(2221), - [anon_sym_LT] = ACTIONS(2221), - [anon_sym_TILDE] = ACTIONS(2221), - [anon_sym_void] = ACTIONS(2221), - [anon_sym_delete] = ACTIONS(2221), - [anon_sym_PLUS_PLUS] = ACTIONS(2221), - [anon_sym_DASH_DASH] = ACTIONS(2221), + [1492] = { + [sym_comment] = STATE(1492), + [ts_builtin_sym_end] = ACTIONS(3442), + [sym_identifier] = ACTIONS(3178), + [anon_sym_export] = ACTIONS(3178), + [anon_sym_type] = ACTIONS(3178), + [anon_sym_namespace] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3178), + [anon_sym_RBRACE] = ACTIONS(3178), + [anon_sym_typeof] = ACTIONS(3178), + [anon_sym_import] = ACTIONS(3178), + [anon_sym_with] = ACTIONS(3178), + [anon_sym_var] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_switch] = ACTIONS(3178), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3178), + [anon_sym_await] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_break] = ACTIONS(3178), + [anon_sym_continue] = ACTIONS(3178), + [anon_sym_debugger] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3178), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3178), + [anon_sym_LTtemplate_GT] = ACTIONS(3178), + [anon_sym_DQUOTE] = ACTIONS(3178), + [anon_sym_SQUOTE] = ACTIONS(3178), + [anon_sym_class] = ACTIONS(3178), + [anon_sym_async] = ACTIONS(3178), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_using] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3178), + [anon_sym_void] = ACTIONS(3178), + [anon_sym_delete] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3178), + [anon_sym_DASH_DASH] = ACTIONS(3178), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2221), - [sym_number] = ACTIONS(2221), - [sym_private_property_identifier] = ACTIONS(2221), - [sym_this] = ACTIONS(2221), - [sym_super] = ACTIONS(2221), - [sym_true] = ACTIONS(2221), - [sym_false] = ACTIONS(2221), - [sym_null] = ACTIONS(2221), - [sym_undefined] = ACTIONS(2221), - [anon_sym_AT] = ACTIONS(2221), - [anon_sym_static] = ACTIONS(2221), - [anon_sym_readonly] = ACTIONS(2221), - [anon_sym_get] = ACTIONS(2221), - [anon_sym_set] = ACTIONS(2221), - [anon_sym_declare] = ACTIONS(2221), - [anon_sym_public] = ACTIONS(2221), - [anon_sym_private] = ACTIONS(2221), - [anon_sym_protected] = ACTIONS(2221), - [anon_sym_override] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_any] = ACTIONS(2221), - [anon_sym_number] = ACTIONS(2221), - [anon_sym_boolean] = ACTIONS(2221), - [anon_sym_string] = ACTIONS(2221), - [anon_sym_symbol] = ACTIONS(2221), - [anon_sym_object] = ACTIONS(2221), - [anon_sym_abstract] = ACTIONS(2221), - [anon_sym_interface] = ACTIONS(2221), - [anon_sym_enum] = ACTIONS(2221), + [anon_sym_BQUOTE] = ACTIONS(3178), + [sym_number] = ACTIONS(3178), + [sym_private_property_identifier] = ACTIONS(3178), + [sym_this] = ACTIONS(3178), + [sym_super] = ACTIONS(3178), + [sym_true] = ACTIONS(3178), + [sym_false] = ACTIONS(3178), + [sym_null] = ACTIONS(3178), + [sym_undefined] = ACTIONS(3178), + [anon_sym_AT] = ACTIONS(3178), + [anon_sym_static] = ACTIONS(3178), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_get] = ACTIONS(3178), + [anon_sym_set] = ACTIONS(3178), + [anon_sym_declare] = ACTIONS(3178), + [anon_sym_public] = ACTIONS(3178), + [anon_sym_private] = ACTIONS(3178), + [anon_sym_protected] = ACTIONS(3178), + [anon_sym_override] = ACTIONS(3178), + [anon_sym_module] = ACTIONS(3178), + [anon_sym_any] = ACTIONS(3178), + [anon_sym_number] = ACTIONS(3178), + [anon_sym_boolean] = ACTIONS(3178), + [anon_sym_string] = ACTIONS(3178), + [anon_sym_symbol] = ACTIONS(3178), + [anon_sym_object] = ACTIONS(3178), + [anon_sym_abstract] = ACTIONS(3178), + [anon_sym_interface] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), [sym_html_comment] = ACTIONS(5), }, - [1635] = { - [sym_comment] = STATE(1635), - [ts_builtin_sym_end] = ACTIONS(3512), - [sym_identifier] = ACTIONS(3340), - [anon_sym_export] = ACTIONS(3340), - [anon_sym_type] = ACTIONS(3340), - [anon_sym_namespace] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3340), - [anon_sym_RBRACE] = ACTIONS(3340), - [anon_sym_typeof] = ACTIONS(3340), - [anon_sym_import] = ACTIONS(3340), - [anon_sym_with] = ACTIONS(3340), - [anon_sym_var] = ACTIONS(3340), - [anon_sym_let] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3340), - [anon_sym_await] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_do] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_debugger] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3340), - [anon_sym_yield] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3340), - [anon_sym_LTtemplate_GT] = ACTIONS(3340), - [anon_sym_DQUOTE] = ACTIONS(3340), - [anon_sym_SQUOTE] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3340), - [anon_sym_async] = ACTIONS(3340), - [anon_sym_function] = ACTIONS(3340), - [anon_sym_new] = ACTIONS(3340), - [anon_sym_using] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_LT] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3340), - [anon_sym_void] = ACTIONS(3340), - [anon_sym_delete] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3340), - [anon_sym_DASH_DASH] = ACTIONS(3340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3340), - [sym_number] = ACTIONS(3340), - [sym_private_property_identifier] = ACTIONS(3340), - [sym_this] = ACTIONS(3340), - [sym_super] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_null] = ACTIONS(3340), - [sym_undefined] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3340), - [anon_sym_static] = ACTIONS(3340), - [anon_sym_readonly] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3340), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_declare] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_protected] = ACTIONS(3340), - [anon_sym_override] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3340), - [anon_sym_any] = ACTIONS(3340), - [anon_sym_number] = ACTIONS(3340), - [anon_sym_boolean] = ACTIONS(3340), - [anon_sym_string] = ACTIONS(3340), - [anon_sym_symbol] = ACTIONS(3340), - [anon_sym_object] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), + [1493] = { + [sym_comment] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(3510), + [sym_identifier] = ACTIONS(3268), + [anon_sym_export] = ACTIONS(3268), + [anon_sym_type] = ACTIONS(3268), + [anon_sym_namespace] = ACTIONS(3268), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3268), + [anon_sym_import] = ACTIONS(3268), + [anon_sym_with] = ACTIONS(3268), + [anon_sym_var] = ACTIONS(3268), + [anon_sym_let] = ACTIONS(3268), + [anon_sym_const] = ACTIONS(3268), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_if] = ACTIONS(3268), + [anon_sym_switch] = ACTIONS(3268), + [anon_sym_for] = ACTIONS(3268), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3268), + [anon_sym_while] = ACTIONS(3268), + [anon_sym_do] = ACTIONS(3268), + [anon_sym_try] = ACTIONS(3268), + [anon_sym_break] = ACTIONS(3268), + [anon_sym_continue] = ACTIONS(3268), + [anon_sym_debugger] = ACTIONS(3268), + [anon_sym_return] = ACTIONS(3268), + [anon_sym_throw] = ACTIONS(3268), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_yield] = ACTIONS(3268), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LTtemplate_GT] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [anon_sym_class] = ACTIONS(3268), + [anon_sym_async] = ACTIONS(3268), + [anon_sym_function] = ACTIONS(3268), + [anon_sym_new] = ACTIONS(3268), + [anon_sym_using] = ACTIONS(3268), + [anon_sym_PLUS] = ACTIONS(3268), + [anon_sym_DASH] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3268), + [anon_sym_delete] = ACTIONS(3268), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_private_property_identifier] = ACTIONS(3268), + [sym_this] = ACTIONS(3268), + [sym_super] = ACTIONS(3268), + [sym_true] = ACTIONS(3268), + [sym_false] = ACTIONS(3268), + [sym_null] = ACTIONS(3268), + [sym_undefined] = ACTIONS(3268), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3268), + [anon_sym_readonly] = ACTIONS(3268), + [anon_sym_get] = ACTIONS(3268), + [anon_sym_set] = ACTIONS(3268), + [anon_sym_declare] = ACTIONS(3268), + [anon_sym_public] = ACTIONS(3268), + [anon_sym_private] = ACTIONS(3268), + [anon_sym_protected] = ACTIONS(3268), + [anon_sym_override] = ACTIONS(3268), + [anon_sym_module] = ACTIONS(3268), + [anon_sym_any] = ACTIONS(3268), + [anon_sym_number] = ACTIONS(3268), + [anon_sym_boolean] = ACTIONS(3268), + [anon_sym_string] = ACTIONS(3268), + [anon_sym_symbol] = ACTIONS(3268), + [anon_sym_object] = ACTIONS(3268), + [anon_sym_abstract] = ACTIONS(3268), + [anon_sym_interface] = ACTIONS(3268), + [anon_sym_enum] = ACTIONS(3268), [sym_html_comment] = ACTIONS(5), }, - [1636] = { - [sym_comment] = STATE(1636), - [ts_builtin_sym_end] = ACTIONS(3558), - [sym_identifier] = ACTIONS(3166), - [anon_sym_export] = ACTIONS(3166), - [anon_sym_type] = ACTIONS(3166), - [anon_sym_namespace] = ACTIONS(3166), - [anon_sym_LBRACE] = ACTIONS(3166), - [anon_sym_RBRACE] = ACTIONS(3166), - [anon_sym_typeof] = ACTIONS(3166), - [anon_sym_import] = ACTIONS(3166), - [anon_sym_with] = ACTIONS(3166), - [anon_sym_var] = ACTIONS(3166), - [anon_sym_let] = ACTIONS(3166), - [anon_sym_const] = ACTIONS(3166), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_if] = ACTIONS(3166), - [anon_sym_switch] = ACTIONS(3166), - [anon_sym_for] = ACTIONS(3166), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_await] = ACTIONS(3166), - [anon_sym_while] = ACTIONS(3166), - [anon_sym_do] = ACTIONS(3166), - [anon_sym_try] = ACTIONS(3166), - [anon_sym_break] = ACTIONS(3166), - [anon_sym_continue] = ACTIONS(3166), - [anon_sym_debugger] = ACTIONS(3166), - [anon_sym_return] = ACTIONS(3166), - [anon_sym_throw] = ACTIONS(3166), - [anon_sym_SEMI] = ACTIONS(3166), - [anon_sym_yield] = ACTIONS(3166), - [anon_sym_LBRACK] = ACTIONS(3166), - [anon_sym_LTtemplate_GT] = ACTIONS(3166), - [anon_sym_DQUOTE] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3166), - [anon_sym_class] = ACTIONS(3166), - [anon_sym_async] = ACTIONS(3166), - [anon_sym_function] = ACTIONS(3166), - [anon_sym_new] = ACTIONS(3166), - [anon_sym_using] = ACTIONS(3166), - [anon_sym_PLUS] = ACTIONS(3166), - [anon_sym_DASH] = ACTIONS(3166), - [anon_sym_SLASH] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(3166), - [anon_sym_TILDE] = ACTIONS(3166), - [anon_sym_void] = ACTIONS(3166), - [anon_sym_delete] = ACTIONS(3166), - [anon_sym_PLUS_PLUS] = ACTIONS(3166), - [anon_sym_DASH_DASH] = ACTIONS(3166), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3166), - [sym_number] = ACTIONS(3166), - [sym_private_property_identifier] = ACTIONS(3166), - [sym_this] = ACTIONS(3166), - [sym_super] = ACTIONS(3166), - [sym_true] = ACTIONS(3166), - [sym_false] = ACTIONS(3166), - [sym_null] = ACTIONS(3166), - [sym_undefined] = ACTIONS(3166), - [anon_sym_AT] = ACTIONS(3166), - [anon_sym_static] = ACTIONS(3166), - [anon_sym_readonly] = ACTIONS(3166), - [anon_sym_get] = ACTIONS(3166), - [anon_sym_set] = ACTIONS(3166), - [anon_sym_declare] = ACTIONS(3166), - [anon_sym_public] = ACTIONS(3166), - [anon_sym_private] = ACTIONS(3166), - [anon_sym_protected] = ACTIONS(3166), - [anon_sym_override] = ACTIONS(3166), - [anon_sym_module] = ACTIONS(3166), - [anon_sym_any] = ACTIONS(3166), - [anon_sym_number] = ACTIONS(3166), - [anon_sym_boolean] = ACTIONS(3166), - [anon_sym_string] = ACTIONS(3166), - [anon_sym_symbol] = ACTIONS(3166), - [anon_sym_object] = ACTIONS(3166), - [anon_sym_abstract] = ACTIONS(3166), - [anon_sym_interface] = ACTIONS(3166), - [anon_sym_enum] = ACTIONS(3166), + [1494] = { + [sym_comment] = STATE(1494), + [ts_builtin_sym_end] = ACTIONS(3564), + [sym_identifier] = ACTIONS(3312), + [anon_sym_export] = ACTIONS(3312), + [anon_sym_type] = ACTIONS(3312), + [anon_sym_namespace] = ACTIONS(3312), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_typeof] = ACTIONS(3312), + [anon_sym_import] = ACTIONS(3312), + [anon_sym_with] = ACTIONS(3312), + [anon_sym_var] = ACTIONS(3312), + [anon_sym_let] = ACTIONS(3312), + [anon_sym_const] = ACTIONS(3312), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_if] = ACTIONS(3312), + [anon_sym_switch] = ACTIONS(3312), + [anon_sym_for] = ACTIONS(3312), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_await] = ACTIONS(3312), + [anon_sym_while] = ACTIONS(3312), + [anon_sym_do] = ACTIONS(3312), + [anon_sym_try] = ACTIONS(3312), + [anon_sym_break] = ACTIONS(3312), + [anon_sym_continue] = ACTIONS(3312), + [anon_sym_debugger] = ACTIONS(3312), + [anon_sym_return] = ACTIONS(3312), + [anon_sym_throw] = ACTIONS(3312), + [anon_sym_SEMI] = ACTIONS(3312), + [anon_sym_yield] = ACTIONS(3312), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LTtemplate_GT] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [anon_sym_class] = ACTIONS(3312), + [anon_sym_async] = ACTIONS(3312), + [anon_sym_function] = ACTIONS(3312), + [anon_sym_new] = ACTIONS(3312), + [anon_sym_using] = ACTIONS(3312), + [anon_sym_PLUS] = ACTIONS(3312), + [anon_sym_DASH] = ACTIONS(3312), + [anon_sym_SLASH] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_void] = ACTIONS(3312), + [anon_sym_delete] = ACTIONS(3312), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3312), + [sym_number] = ACTIONS(3312), + [sym_private_property_identifier] = ACTIONS(3312), + [sym_this] = ACTIONS(3312), + [sym_super] = ACTIONS(3312), + [sym_true] = ACTIONS(3312), + [sym_false] = ACTIONS(3312), + [sym_null] = ACTIONS(3312), + [sym_undefined] = ACTIONS(3312), + [anon_sym_AT] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3312), + [anon_sym_readonly] = ACTIONS(3312), + [anon_sym_get] = ACTIONS(3312), + [anon_sym_set] = ACTIONS(3312), + [anon_sym_declare] = ACTIONS(3312), + [anon_sym_public] = ACTIONS(3312), + [anon_sym_private] = ACTIONS(3312), + [anon_sym_protected] = ACTIONS(3312), + [anon_sym_override] = ACTIONS(3312), + [anon_sym_module] = ACTIONS(3312), + [anon_sym_any] = ACTIONS(3312), + [anon_sym_number] = ACTIONS(3312), + [anon_sym_boolean] = ACTIONS(3312), + [anon_sym_string] = ACTIONS(3312), + [anon_sym_symbol] = ACTIONS(3312), + [anon_sym_object] = ACTIONS(3312), + [anon_sym_abstract] = ACTIONS(3312), + [anon_sym_interface] = ACTIONS(3312), + [anon_sym_enum] = ACTIONS(3312), [sym_html_comment] = ACTIONS(5), }, - [1637] = { - [sym_comment] = STATE(1637), - [ts_builtin_sym_end] = ACTIONS(3494), - [sym_identifier] = ACTIONS(3232), - [anon_sym_export] = ACTIONS(3232), - [anon_sym_type] = ACTIONS(3232), - [anon_sym_namespace] = ACTIONS(3232), - [anon_sym_LBRACE] = ACTIONS(3232), - [anon_sym_RBRACE] = ACTIONS(3232), - [anon_sym_typeof] = ACTIONS(3232), - [anon_sym_import] = ACTIONS(3232), - [anon_sym_with] = ACTIONS(3232), - [anon_sym_var] = ACTIONS(3232), - [anon_sym_let] = ACTIONS(3232), - [anon_sym_const] = ACTIONS(3232), - [anon_sym_BANG] = ACTIONS(3232), - [anon_sym_if] = ACTIONS(3232), - [anon_sym_switch] = ACTIONS(3232), - [anon_sym_for] = ACTIONS(3232), - [anon_sym_LPAREN] = ACTIONS(3232), - [anon_sym_await] = ACTIONS(3232), - [anon_sym_while] = ACTIONS(3232), - [anon_sym_do] = ACTIONS(3232), - [anon_sym_try] = ACTIONS(3232), - [anon_sym_break] = ACTIONS(3232), - [anon_sym_continue] = ACTIONS(3232), - [anon_sym_debugger] = ACTIONS(3232), - [anon_sym_return] = ACTIONS(3232), - [anon_sym_throw] = ACTIONS(3232), - [anon_sym_SEMI] = ACTIONS(3232), - [anon_sym_yield] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3232), - [anon_sym_LTtemplate_GT] = ACTIONS(3232), - [anon_sym_DQUOTE] = ACTIONS(3232), - [anon_sym_SQUOTE] = ACTIONS(3232), - [anon_sym_class] = ACTIONS(3232), - [anon_sym_async] = ACTIONS(3232), - [anon_sym_function] = ACTIONS(3232), - [anon_sym_new] = ACTIONS(3232), - [anon_sym_using] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3232), - [anon_sym_DASH] = ACTIONS(3232), - [anon_sym_SLASH] = ACTIONS(3232), - [anon_sym_LT] = ACTIONS(3232), - [anon_sym_TILDE] = ACTIONS(3232), - [anon_sym_void] = ACTIONS(3232), - [anon_sym_delete] = ACTIONS(3232), - [anon_sym_PLUS_PLUS] = ACTIONS(3232), - [anon_sym_DASH_DASH] = ACTIONS(3232), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3232), - [sym_number] = ACTIONS(3232), - [sym_private_property_identifier] = ACTIONS(3232), - [sym_this] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [sym_null] = ACTIONS(3232), - [sym_undefined] = ACTIONS(3232), - [anon_sym_AT] = ACTIONS(3232), - [anon_sym_static] = ACTIONS(3232), - [anon_sym_readonly] = ACTIONS(3232), - [anon_sym_get] = ACTIONS(3232), - [anon_sym_set] = ACTIONS(3232), - [anon_sym_declare] = ACTIONS(3232), - [anon_sym_public] = ACTIONS(3232), - [anon_sym_private] = ACTIONS(3232), - [anon_sym_protected] = ACTIONS(3232), - [anon_sym_override] = ACTIONS(3232), - [anon_sym_module] = ACTIONS(3232), - [anon_sym_any] = ACTIONS(3232), - [anon_sym_number] = ACTIONS(3232), - [anon_sym_boolean] = ACTIONS(3232), - [anon_sym_string] = ACTIONS(3232), - [anon_sym_symbol] = ACTIONS(3232), - [anon_sym_object] = ACTIONS(3232), - [anon_sym_abstract] = ACTIONS(3232), - [anon_sym_interface] = ACTIONS(3232), - [anon_sym_enum] = ACTIONS(3232), + [1495] = { + [sym_comment] = STATE(1495), + [ts_builtin_sym_end] = ACTIONS(3512), + [sym_identifier] = ACTIONS(3280), + [anon_sym_export] = ACTIONS(3280), + [anon_sym_type] = ACTIONS(3280), + [anon_sym_namespace] = ACTIONS(3280), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_typeof] = ACTIONS(3280), + [anon_sym_import] = ACTIONS(3280), + [anon_sym_with] = ACTIONS(3280), + [anon_sym_var] = ACTIONS(3280), + [anon_sym_let] = ACTIONS(3280), + [anon_sym_const] = ACTIONS(3280), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_if] = ACTIONS(3280), + [anon_sym_switch] = ACTIONS(3280), + [anon_sym_for] = ACTIONS(3280), + [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_await] = ACTIONS(3280), + [anon_sym_while] = ACTIONS(3280), + [anon_sym_do] = ACTIONS(3280), + [anon_sym_try] = ACTIONS(3280), + [anon_sym_break] = ACTIONS(3280), + [anon_sym_continue] = ACTIONS(3280), + [anon_sym_debugger] = ACTIONS(3280), + [anon_sym_return] = ACTIONS(3280), + [anon_sym_throw] = ACTIONS(3280), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_yield] = ACTIONS(3280), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_LTtemplate_GT] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [anon_sym_class] = ACTIONS(3280), + [anon_sym_async] = ACTIONS(3280), + [anon_sym_function] = ACTIONS(3280), + [anon_sym_new] = ACTIONS(3280), + [anon_sym_using] = ACTIONS(3280), + [anon_sym_PLUS] = ACTIONS(3280), + [anon_sym_DASH] = ACTIONS(3280), + [anon_sym_SLASH] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_void] = ACTIONS(3280), + [anon_sym_delete] = ACTIONS(3280), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3280), + [sym_number] = ACTIONS(3280), + [sym_private_property_identifier] = ACTIONS(3280), + [sym_this] = ACTIONS(3280), + [sym_super] = ACTIONS(3280), + [sym_true] = ACTIONS(3280), + [sym_false] = ACTIONS(3280), + [sym_null] = ACTIONS(3280), + [sym_undefined] = ACTIONS(3280), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_static] = ACTIONS(3280), + [anon_sym_readonly] = ACTIONS(3280), + [anon_sym_get] = ACTIONS(3280), + [anon_sym_set] = ACTIONS(3280), + [anon_sym_declare] = ACTIONS(3280), + [anon_sym_public] = ACTIONS(3280), + [anon_sym_private] = ACTIONS(3280), + [anon_sym_protected] = ACTIONS(3280), + [anon_sym_override] = ACTIONS(3280), + [anon_sym_module] = ACTIONS(3280), + [anon_sym_any] = ACTIONS(3280), + [anon_sym_number] = ACTIONS(3280), + [anon_sym_boolean] = ACTIONS(3280), + [anon_sym_string] = ACTIONS(3280), + [anon_sym_symbol] = ACTIONS(3280), + [anon_sym_object] = ACTIONS(3280), + [anon_sym_abstract] = ACTIONS(3280), + [anon_sym_interface] = ACTIONS(3280), + [anon_sym_enum] = ACTIONS(3280), [sym_html_comment] = ACTIONS(5), }, - [1638] = { - [sym_comment] = STATE(1638), - [ts_builtin_sym_end] = ACTIONS(3556), - [sym_identifier] = ACTIONS(3170), - [anon_sym_export] = ACTIONS(3170), - [anon_sym_type] = ACTIONS(3170), - [anon_sym_namespace] = ACTIONS(3170), - [anon_sym_LBRACE] = ACTIONS(3170), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_typeof] = ACTIONS(3170), - [anon_sym_import] = ACTIONS(3170), - [anon_sym_with] = ACTIONS(3170), - [anon_sym_var] = ACTIONS(3170), - [anon_sym_let] = ACTIONS(3170), - [anon_sym_const] = ACTIONS(3170), - [anon_sym_BANG] = ACTIONS(3170), - [anon_sym_if] = ACTIONS(3170), - [anon_sym_switch] = ACTIONS(3170), - [anon_sym_for] = ACTIONS(3170), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_await] = ACTIONS(3170), - [anon_sym_while] = ACTIONS(3170), - [anon_sym_do] = ACTIONS(3170), - [anon_sym_try] = ACTIONS(3170), - [anon_sym_break] = ACTIONS(3170), - [anon_sym_continue] = ACTIONS(3170), - [anon_sym_debugger] = ACTIONS(3170), - [anon_sym_return] = ACTIONS(3170), - [anon_sym_throw] = ACTIONS(3170), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_yield] = ACTIONS(3170), - [anon_sym_LBRACK] = ACTIONS(3170), - [anon_sym_LTtemplate_GT] = ACTIONS(3170), - [anon_sym_DQUOTE] = ACTIONS(3170), - [anon_sym_SQUOTE] = ACTIONS(3170), - [anon_sym_class] = ACTIONS(3170), - [anon_sym_async] = ACTIONS(3170), - [anon_sym_function] = ACTIONS(3170), - [anon_sym_new] = ACTIONS(3170), - [anon_sym_using] = ACTIONS(3170), - [anon_sym_PLUS] = ACTIONS(3170), - [anon_sym_DASH] = ACTIONS(3170), - [anon_sym_SLASH] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_TILDE] = ACTIONS(3170), - [anon_sym_void] = ACTIONS(3170), - [anon_sym_delete] = ACTIONS(3170), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_DASH_DASH] = ACTIONS(3170), + [1496] = { + [sym_comment] = STATE(1496), + [ts_builtin_sym_end] = ACTIONS(3578), + [sym_identifier] = ACTIONS(3328), + [anon_sym_export] = ACTIONS(3328), + [anon_sym_type] = ACTIONS(3328), + [anon_sym_namespace] = ACTIONS(3328), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_RBRACE] = ACTIONS(3328), + [anon_sym_typeof] = ACTIONS(3328), + [anon_sym_import] = ACTIONS(3328), + [anon_sym_with] = ACTIONS(3328), + [anon_sym_var] = ACTIONS(3328), + [anon_sym_let] = ACTIONS(3328), + [anon_sym_const] = ACTIONS(3328), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_if] = ACTIONS(3328), + [anon_sym_switch] = ACTIONS(3328), + [anon_sym_for] = ACTIONS(3328), + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym_await] = ACTIONS(3328), + [anon_sym_while] = ACTIONS(3328), + [anon_sym_do] = ACTIONS(3328), + [anon_sym_try] = ACTIONS(3328), + [anon_sym_break] = ACTIONS(3328), + [anon_sym_continue] = ACTIONS(3328), + [anon_sym_debugger] = ACTIONS(3328), + [anon_sym_return] = ACTIONS(3328), + [anon_sym_throw] = ACTIONS(3328), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym_yield] = ACTIONS(3328), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_LTtemplate_GT] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(3328), + [anon_sym_class] = ACTIONS(3328), + [anon_sym_async] = ACTIONS(3328), + [anon_sym_function] = ACTIONS(3328), + [anon_sym_new] = ACTIONS(3328), + [anon_sym_using] = ACTIONS(3328), + [anon_sym_PLUS] = ACTIONS(3328), + [anon_sym_DASH] = ACTIONS(3328), + [anon_sym_SLASH] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_void] = ACTIONS(3328), + [anon_sym_delete] = ACTIONS(3328), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3328), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3170), - [sym_private_property_identifier] = ACTIONS(3170), - [sym_this] = ACTIONS(3170), - [sym_super] = ACTIONS(3170), - [sym_true] = ACTIONS(3170), - [sym_false] = ACTIONS(3170), - [sym_null] = ACTIONS(3170), - [sym_undefined] = ACTIONS(3170), - [anon_sym_AT] = ACTIONS(3170), - [anon_sym_static] = ACTIONS(3170), - [anon_sym_readonly] = ACTIONS(3170), - [anon_sym_get] = ACTIONS(3170), - [anon_sym_set] = ACTIONS(3170), - [anon_sym_declare] = ACTIONS(3170), - [anon_sym_public] = ACTIONS(3170), - [anon_sym_private] = ACTIONS(3170), - [anon_sym_protected] = ACTIONS(3170), - [anon_sym_override] = ACTIONS(3170), - [anon_sym_module] = ACTIONS(3170), - [anon_sym_any] = ACTIONS(3170), - [anon_sym_number] = ACTIONS(3170), - [anon_sym_boolean] = ACTIONS(3170), - [anon_sym_string] = ACTIONS(3170), - [anon_sym_symbol] = ACTIONS(3170), - [anon_sym_object] = ACTIONS(3170), - [anon_sym_abstract] = ACTIONS(3170), - [anon_sym_interface] = ACTIONS(3170), - [anon_sym_enum] = ACTIONS(3170), + [anon_sym_BQUOTE] = ACTIONS(3328), + [sym_number] = ACTIONS(3328), + [sym_private_property_identifier] = ACTIONS(3328), + [sym_this] = ACTIONS(3328), + [sym_super] = ACTIONS(3328), + [sym_true] = ACTIONS(3328), + [sym_false] = ACTIONS(3328), + [sym_null] = ACTIONS(3328), + [sym_undefined] = ACTIONS(3328), + [anon_sym_AT] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3328), + [anon_sym_readonly] = ACTIONS(3328), + [anon_sym_get] = ACTIONS(3328), + [anon_sym_set] = ACTIONS(3328), + [anon_sym_declare] = ACTIONS(3328), + [anon_sym_public] = ACTIONS(3328), + [anon_sym_private] = ACTIONS(3328), + [anon_sym_protected] = ACTIONS(3328), + [anon_sym_override] = ACTIONS(3328), + [anon_sym_module] = ACTIONS(3328), + [anon_sym_any] = ACTIONS(3328), + [anon_sym_number] = ACTIONS(3328), + [anon_sym_boolean] = ACTIONS(3328), + [anon_sym_string] = ACTIONS(3328), + [anon_sym_symbol] = ACTIONS(3328), + [anon_sym_object] = ACTIONS(3328), + [anon_sym_abstract] = ACTIONS(3328), + [anon_sym_interface] = ACTIONS(3328), + [anon_sym_enum] = ACTIONS(3328), [sym_html_comment] = ACTIONS(5), }, - [1639] = { - [sym_comment] = STATE(1639), - [ts_builtin_sym_end] = ACTIONS(3482), - [sym_identifier] = ACTIONS(3244), - [anon_sym_export] = ACTIONS(3244), - [anon_sym_type] = ACTIONS(3244), - [anon_sym_namespace] = ACTIONS(3244), - [anon_sym_LBRACE] = ACTIONS(3244), - [anon_sym_RBRACE] = ACTIONS(3244), - [anon_sym_typeof] = ACTIONS(3244), - [anon_sym_import] = ACTIONS(3244), - [anon_sym_with] = ACTIONS(3244), - [anon_sym_var] = ACTIONS(3244), - [anon_sym_let] = ACTIONS(3244), - [anon_sym_const] = ACTIONS(3244), - [anon_sym_BANG] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_switch] = ACTIONS(3244), - [anon_sym_for] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3244), - [anon_sym_await] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3244), - [anon_sym_do] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_debugger] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_throw] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3244), - [anon_sym_yield] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3244), - [anon_sym_LTtemplate_GT] = ACTIONS(3244), - [anon_sym_DQUOTE] = ACTIONS(3244), - [anon_sym_SQUOTE] = ACTIONS(3244), - [anon_sym_class] = ACTIONS(3244), - [anon_sym_async] = ACTIONS(3244), - [anon_sym_function] = ACTIONS(3244), - [anon_sym_new] = ACTIONS(3244), - [anon_sym_using] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_LT] = ACTIONS(3244), - [anon_sym_TILDE] = ACTIONS(3244), - [anon_sym_void] = ACTIONS(3244), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3244), - [anon_sym_DASH_DASH] = ACTIONS(3244), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3244), - [sym_number] = ACTIONS(3244), - [sym_private_property_identifier] = ACTIONS(3244), - [sym_this] = ACTIONS(3244), - [sym_super] = ACTIONS(3244), - [sym_true] = ACTIONS(3244), - [sym_false] = ACTIONS(3244), - [sym_null] = ACTIONS(3244), - [sym_undefined] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3244), - [anon_sym_static] = ACTIONS(3244), - [anon_sym_readonly] = ACTIONS(3244), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_declare] = ACTIONS(3244), - [anon_sym_public] = ACTIONS(3244), - [anon_sym_private] = ACTIONS(3244), - [anon_sym_protected] = ACTIONS(3244), - [anon_sym_override] = ACTIONS(3244), - [anon_sym_module] = ACTIONS(3244), - [anon_sym_any] = ACTIONS(3244), - [anon_sym_number] = ACTIONS(3244), - [anon_sym_boolean] = ACTIONS(3244), - [anon_sym_string] = ACTIONS(3244), - [anon_sym_symbol] = ACTIONS(3244), - [anon_sym_object] = ACTIONS(3244), - [anon_sym_abstract] = ACTIONS(3244), - [anon_sym_interface] = ACTIONS(3244), - [anon_sym_enum] = ACTIONS(3244), + [1497] = { + [sym_comment] = STATE(1497), + [ts_builtin_sym_end] = ACTIONS(3450), + [sym_identifier] = ACTIONS(3264), + [anon_sym_export] = ACTIONS(3264), + [anon_sym_type] = ACTIONS(3264), + [anon_sym_namespace] = ACTIONS(3264), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_RBRACE] = ACTIONS(3264), + [anon_sym_typeof] = ACTIONS(3264), + [anon_sym_import] = ACTIONS(3264), + [anon_sym_with] = ACTIONS(3264), + [anon_sym_var] = ACTIONS(3264), + [anon_sym_let] = ACTIONS(3264), + [anon_sym_const] = ACTIONS(3264), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_if] = ACTIONS(3264), + [anon_sym_switch] = ACTIONS(3264), + [anon_sym_for] = ACTIONS(3264), + [anon_sym_LPAREN] = ACTIONS(3264), + [anon_sym_await] = ACTIONS(3264), + [anon_sym_while] = ACTIONS(3264), + [anon_sym_do] = ACTIONS(3264), + [anon_sym_try] = ACTIONS(3264), + [anon_sym_break] = ACTIONS(3264), + [anon_sym_continue] = ACTIONS(3264), + [anon_sym_debugger] = ACTIONS(3264), + [anon_sym_return] = ACTIONS(3264), + [anon_sym_throw] = ACTIONS(3264), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym_yield] = ACTIONS(3264), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_LTtemplate_GT] = ACTIONS(3264), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3264), + [anon_sym_class] = ACTIONS(3264), + [anon_sym_async] = ACTIONS(3264), + [anon_sym_function] = ACTIONS(3264), + [anon_sym_new] = ACTIONS(3264), + [anon_sym_using] = ACTIONS(3264), + [anon_sym_PLUS] = ACTIONS(3264), + [anon_sym_DASH] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_void] = ACTIONS(3264), + [anon_sym_delete] = ACTIONS(3264), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_DASH_DASH] = ACTIONS(3264), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3264), + [sym_number] = ACTIONS(3264), + [sym_private_property_identifier] = ACTIONS(3264), + [sym_this] = ACTIONS(3264), + [sym_super] = ACTIONS(3264), + [sym_true] = ACTIONS(3264), + [sym_false] = ACTIONS(3264), + [sym_null] = ACTIONS(3264), + [sym_undefined] = ACTIONS(3264), + [anon_sym_AT] = ACTIONS(3264), + [anon_sym_static] = ACTIONS(3264), + [anon_sym_readonly] = ACTIONS(3264), + [anon_sym_get] = ACTIONS(3264), + [anon_sym_set] = ACTIONS(3264), + [anon_sym_declare] = ACTIONS(3264), + [anon_sym_public] = ACTIONS(3264), + [anon_sym_private] = ACTIONS(3264), + [anon_sym_protected] = ACTIONS(3264), + [anon_sym_override] = ACTIONS(3264), + [anon_sym_module] = ACTIONS(3264), + [anon_sym_any] = ACTIONS(3264), + [anon_sym_number] = ACTIONS(3264), + [anon_sym_boolean] = ACTIONS(3264), + [anon_sym_string] = ACTIONS(3264), + [anon_sym_symbol] = ACTIONS(3264), + [anon_sym_object] = ACTIONS(3264), + [anon_sym_abstract] = ACTIONS(3264), + [anon_sym_interface] = ACTIONS(3264), + [anon_sym_enum] = ACTIONS(3264), [sym_html_comment] = ACTIONS(5), }, - [1640] = { - [sym_comment] = STATE(1640), - [ts_builtin_sym_end] = ACTIONS(3554), - [sym_identifier] = ACTIONS(3174), - [anon_sym_export] = ACTIONS(3174), - [anon_sym_type] = ACTIONS(3174), - [anon_sym_namespace] = ACTIONS(3174), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_typeof] = ACTIONS(3174), - [anon_sym_import] = ACTIONS(3174), - [anon_sym_with] = ACTIONS(3174), - [anon_sym_var] = ACTIONS(3174), - [anon_sym_let] = ACTIONS(3174), - [anon_sym_const] = ACTIONS(3174), - [anon_sym_BANG] = ACTIONS(3174), - [anon_sym_if] = ACTIONS(3174), - [anon_sym_switch] = ACTIONS(3174), - [anon_sym_for] = ACTIONS(3174), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_await] = ACTIONS(3174), - [anon_sym_while] = ACTIONS(3174), - [anon_sym_do] = ACTIONS(3174), - [anon_sym_try] = ACTIONS(3174), - [anon_sym_break] = ACTIONS(3174), - [anon_sym_continue] = ACTIONS(3174), - [anon_sym_debugger] = ACTIONS(3174), - [anon_sym_return] = ACTIONS(3174), - [anon_sym_throw] = ACTIONS(3174), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_yield] = ACTIONS(3174), - [anon_sym_LBRACK] = ACTIONS(3174), - [anon_sym_LTtemplate_GT] = ACTIONS(3174), - [anon_sym_DQUOTE] = ACTIONS(3174), - [anon_sym_SQUOTE] = ACTIONS(3174), - [anon_sym_class] = ACTIONS(3174), - [anon_sym_async] = ACTIONS(3174), - [anon_sym_function] = ACTIONS(3174), - [anon_sym_new] = ACTIONS(3174), - [anon_sym_using] = ACTIONS(3174), - [anon_sym_PLUS] = ACTIONS(3174), - [anon_sym_DASH] = ACTIONS(3174), - [anon_sym_SLASH] = ACTIONS(3174), - [anon_sym_LT] = ACTIONS(3174), - [anon_sym_TILDE] = ACTIONS(3174), - [anon_sym_void] = ACTIONS(3174), - [anon_sym_delete] = ACTIONS(3174), - [anon_sym_PLUS_PLUS] = ACTIONS(3174), - [anon_sym_DASH_DASH] = ACTIONS(3174), + [1498] = { + [sym_comment] = STATE(1498), + [ts_builtin_sym_end] = ACTIONS(3582), + [sym_identifier] = ACTIONS(3212), + [anon_sym_export] = ACTIONS(3212), + [anon_sym_type] = ACTIONS(3212), + [anon_sym_namespace] = ACTIONS(3212), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_RBRACE] = ACTIONS(3212), + [anon_sym_typeof] = ACTIONS(3212), + [anon_sym_import] = ACTIONS(3212), + [anon_sym_with] = ACTIONS(3212), + [anon_sym_var] = ACTIONS(3212), + [anon_sym_let] = ACTIONS(3212), + [anon_sym_const] = ACTIONS(3212), + [anon_sym_BANG] = ACTIONS(3212), + [anon_sym_if] = ACTIONS(3212), + [anon_sym_switch] = ACTIONS(3212), + [anon_sym_for] = ACTIONS(3212), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_await] = ACTIONS(3212), + [anon_sym_while] = ACTIONS(3212), + [anon_sym_do] = ACTIONS(3212), + [anon_sym_try] = ACTIONS(3212), + [anon_sym_break] = ACTIONS(3212), + [anon_sym_continue] = ACTIONS(3212), + [anon_sym_debugger] = ACTIONS(3212), + [anon_sym_return] = ACTIONS(3212), + [anon_sym_throw] = ACTIONS(3212), + [anon_sym_SEMI] = ACTIONS(3212), + [anon_sym_yield] = ACTIONS(3212), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LTtemplate_GT] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_SQUOTE] = ACTIONS(3212), + [anon_sym_class] = ACTIONS(3212), + [anon_sym_async] = ACTIONS(3212), + [anon_sym_function] = ACTIONS(3212), + [anon_sym_new] = ACTIONS(3212), + [anon_sym_using] = ACTIONS(3212), + [anon_sym_PLUS] = ACTIONS(3212), + [anon_sym_DASH] = ACTIONS(3212), + [anon_sym_SLASH] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3212), + [anon_sym_TILDE] = ACTIONS(3212), + [anon_sym_void] = ACTIONS(3212), + [anon_sym_delete] = ACTIONS(3212), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_DASH_DASH] = ACTIONS(3212), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3174), - [sym_number] = ACTIONS(3174), - [sym_private_property_identifier] = ACTIONS(3174), - [sym_this] = ACTIONS(3174), - [sym_super] = ACTIONS(3174), - [sym_true] = ACTIONS(3174), - [sym_false] = ACTIONS(3174), - [sym_null] = ACTIONS(3174), - [sym_undefined] = ACTIONS(3174), - [anon_sym_AT] = ACTIONS(3174), - [anon_sym_static] = ACTIONS(3174), - [anon_sym_readonly] = ACTIONS(3174), - [anon_sym_get] = ACTIONS(3174), - [anon_sym_set] = ACTIONS(3174), - [anon_sym_declare] = ACTIONS(3174), - [anon_sym_public] = ACTIONS(3174), - [anon_sym_private] = ACTIONS(3174), - [anon_sym_protected] = ACTIONS(3174), - [anon_sym_override] = ACTIONS(3174), - [anon_sym_module] = ACTIONS(3174), - [anon_sym_any] = ACTIONS(3174), - [anon_sym_number] = ACTIONS(3174), - [anon_sym_boolean] = ACTIONS(3174), - [anon_sym_string] = ACTIONS(3174), - [anon_sym_symbol] = ACTIONS(3174), - [anon_sym_object] = ACTIONS(3174), - [anon_sym_abstract] = ACTIONS(3174), - [anon_sym_interface] = ACTIONS(3174), - [anon_sym_enum] = ACTIONS(3174), + [anon_sym_BQUOTE] = ACTIONS(3212), + [sym_number] = ACTIONS(3212), + [sym_private_property_identifier] = ACTIONS(3212), + [sym_this] = ACTIONS(3212), + [sym_super] = ACTIONS(3212), + [sym_true] = ACTIONS(3212), + [sym_false] = ACTIONS(3212), + [sym_null] = ACTIONS(3212), + [sym_undefined] = ACTIONS(3212), + [anon_sym_AT] = ACTIONS(3212), + [anon_sym_static] = ACTIONS(3212), + [anon_sym_readonly] = ACTIONS(3212), + [anon_sym_get] = ACTIONS(3212), + [anon_sym_set] = ACTIONS(3212), + [anon_sym_declare] = ACTIONS(3212), + [anon_sym_public] = ACTIONS(3212), + [anon_sym_private] = ACTIONS(3212), + [anon_sym_protected] = ACTIONS(3212), + [anon_sym_override] = ACTIONS(3212), + [anon_sym_module] = ACTIONS(3212), + [anon_sym_any] = ACTIONS(3212), + [anon_sym_number] = ACTIONS(3212), + [anon_sym_boolean] = ACTIONS(3212), + [anon_sym_string] = ACTIONS(3212), + [anon_sym_symbol] = ACTIONS(3212), + [anon_sym_object] = ACTIONS(3212), + [anon_sym_abstract] = ACTIONS(3212), + [anon_sym_interface] = ACTIONS(3212), + [anon_sym_enum] = ACTIONS(3212), [sym_html_comment] = ACTIONS(5), }, - [1641] = { - [sym_comment] = STATE(1641), - [ts_builtin_sym_end] = ACTIONS(3552), + [1499] = { + [sym_comment] = STATE(1499), + [ts_builtin_sym_end] = ACTIONS(3438), [sym_identifier] = ACTIONS(3176), [anon_sym_export] = ACTIONS(3176), [anon_sym_type] = ACTIONS(3176), @@ -198117,1305 +186159,1224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3176), [sym_html_comment] = ACTIONS(5), }, - [1642] = { - [sym_comment] = STATE(1642), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), - [sym_html_comment] = ACTIONS(5), - }, - [1643] = { - [sym_comment] = STATE(1643), - [ts_builtin_sym_end] = ACTIONS(3480), - [sym_identifier] = ACTIONS(3246), - [anon_sym_export] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_namespace] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3246), - [anon_sym_typeof] = ACTIONS(3246), - [anon_sym_import] = ACTIONS(3246), - [anon_sym_with] = ACTIONS(3246), - [anon_sym_var] = ACTIONS(3246), - [anon_sym_let] = ACTIONS(3246), - [anon_sym_const] = ACTIONS(3246), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_switch] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(3246), - [anon_sym_await] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_do] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_debugger] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_yield] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_LTtemplate_GT] = ACTIONS(3246), - [anon_sym_DQUOTE] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3246), - [anon_sym_class] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_function] = ACTIONS(3246), - [anon_sym_new] = ACTIONS(3246), - [anon_sym_using] = ACTIONS(3246), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(3246), - [anon_sym_void] = ACTIONS(3246), - [anon_sym_delete] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3246), - [anon_sym_DASH_DASH] = ACTIONS(3246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3246), - [sym_number] = ACTIONS(3246), - [sym_private_property_identifier] = ACTIONS(3246), - [sym_this] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_true] = ACTIONS(3246), - [sym_false] = ACTIONS(3246), - [sym_null] = ACTIONS(3246), - [sym_undefined] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_static] = ACTIONS(3246), - [anon_sym_readonly] = ACTIONS(3246), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_declare] = ACTIONS(3246), - [anon_sym_public] = ACTIONS(3246), - [anon_sym_private] = ACTIONS(3246), - [anon_sym_protected] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3246), - [anon_sym_module] = ACTIONS(3246), - [anon_sym_any] = ACTIONS(3246), - [anon_sym_number] = ACTIONS(3246), - [anon_sym_boolean] = ACTIONS(3246), - [anon_sym_string] = ACTIONS(3246), - [anon_sym_symbol] = ACTIONS(3246), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_abstract] = ACTIONS(3246), - [anon_sym_interface] = ACTIONS(3246), - [anon_sym_enum] = ACTIONS(3246), - [sym_html_comment] = ACTIONS(5), - }, - [1644] = { - [sym_comment] = STATE(1644), - [ts_builtin_sym_end] = ACTIONS(3550), - [sym_identifier] = ACTIONS(3178), - [anon_sym_export] = ACTIONS(3178), - [anon_sym_type] = ACTIONS(3178), - [anon_sym_namespace] = ACTIONS(3178), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3178), - [anon_sym_typeof] = ACTIONS(3178), - [anon_sym_import] = ACTIONS(3178), - [anon_sym_with] = ACTIONS(3178), - [anon_sym_var] = ACTIONS(3178), - [anon_sym_let] = ACTIONS(3178), - [anon_sym_const] = ACTIONS(3178), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_if] = ACTIONS(3178), - [anon_sym_switch] = ACTIONS(3178), - [anon_sym_for] = ACTIONS(3178), - [anon_sym_LPAREN] = ACTIONS(3178), - [anon_sym_await] = ACTIONS(3178), - [anon_sym_while] = ACTIONS(3178), - [anon_sym_do] = ACTIONS(3178), - [anon_sym_try] = ACTIONS(3178), - [anon_sym_break] = ACTIONS(3178), - [anon_sym_continue] = ACTIONS(3178), - [anon_sym_debugger] = ACTIONS(3178), - [anon_sym_return] = ACTIONS(3178), - [anon_sym_throw] = ACTIONS(3178), - [anon_sym_SEMI] = ACTIONS(3178), - [anon_sym_yield] = ACTIONS(3178), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_LTtemplate_GT] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [anon_sym_SQUOTE] = ACTIONS(3178), - [anon_sym_class] = ACTIONS(3178), - [anon_sym_async] = ACTIONS(3178), - [anon_sym_function] = ACTIONS(3178), - [anon_sym_new] = ACTIONS(3178), - [anon_sym_using] = ACTIONS(3178), - [anon_sym_PLUS] = ACTIONS(3178), - [anon_sym_DASH] = ACTIONS(3178), - [anon_sym_SLASH] = ACTIONS(3178), - [anon_sym_LT] = ACTIONS(3178), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_void] = ACTIONS(3178), - [anon_sym_delete] = ACTIONS(3178), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3178), - [sym_number] = ACTIONS(3178), - [sym_private_property_identifier] = ACTIONS(3178), - [sym_this] = ACTIONS(3178), - [sym_super] = ACTIONS(3178), - [sym_true] = ACTIONS(3178), - [sym_false] = ACTIONS(3178), - [sym_null] = ACTIONS(3178), - [sym_undefined] = ACTIONS(3178), - [anon_sym_AT] = ACTIONS(3178), - [anon_sym_static] = ACTIONS(3178), - [anon_sym_readonly] = ACTIONS(3178), - [anon_sym_get] = ACTIONS(3178), - [anon_sym_set] = ACTIONS(3178), - [anon_sym_declare] = ACTIONS(3178), - [anon_sym_public] = ACTIONS(3178), - [anon_sym_private] = ACTIONS(3178), - [anon_sym_protected] = ACTIONS(3178), - [anon_sym_override] = ACTIONS(3178), - [anon_sym_module] = ACTIONS(3178), - [anon_sym_any] = ACTIONS(3178), - [anon_sym_number] = ACTIONS(3178), - [anon_sym_boolean] = ACTIONS(3178), - [anon_sym_string] = ACTIONS(3178), - [anon_sym_symbol] = ACTIONS(3178), - [anon_sym_object] = ACTIONS(3178), - [anon_sym_abstract] = ACTIONS(3178), - [anon_sym_interface] = ACTIONS(3178), - [anon_sym_enum] = ACTIONS(3178), - [sym_html_comment] = ACTIONS(5), - }, - [1645] = { - [sym_comment] = STATE(1645), - [ts_builtin_sym_end] = ACTIONS(3480), - [sym_identifier] = ACTIONS(3246), - [anon_sym_export] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_namespace] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3246), - [anon_sym_typeof] = ACTIONS(3246), - [anon_sym_import] = ACTIONS(3246), - [anon_sym_with] = ACTIONS(3246), - [anon_sym_var] = ACTIONS(3246), - [anon_sym_let] = ACTIONS(3246), - [anon_sym_const] = ACTIONS(3246), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_switch] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(3246), - [anon_sym_await] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_do] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_debugger] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_yield] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_LTtemplate_GT] = ACTIONS(3246), - [anon_sym_DQUOTE] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3246), - [anon_sym_class] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_function] = ACTIONS(3246), - [anon_sym_new] = ACTIONS(3246), - [anon_sym_using] = ACTIONS(3246), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(3246), - [anon_sym_void] = ACTIONS(3246), - [anon_sym_delete] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3246), - [anon_sym_DASH_DASH] = ACTIONS(3246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3246), - [sym_number] = ACTIONS(3246), - [sym_private_property_identifier] = ACTIONS(3246), - [sym_this] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_true] = ACTIONS(3246), - [sym_false] = ACTIONS(3246), - [sym_null] = ACTIONS(3246), - [sym_undefined] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_static] = ACTIONS(3246), - [anon_sym_readonly] = ACTIONS(3246), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_declare] = ACTIONS(3246), - [anon_sym_public] = ACTIONS(3246), - [anon_sym_private] = ACTIONS(3246), - [anon_sym_protected] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3246), - [anon_sym_module] = ACTIONS(3246), - [anon_sym_any] = ACTIONS(3246), - [anon_sym_number] = ACTIONS(3246), - [anon_sym_boolean] = ACTIONS(3246), - [anon_sym_string] = ACTIONS(3246), - [anon_sym_symbol] = ACTIONS(3246), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_abstract] = ACTIONS(3246), - [anon_sym_interface] = ACTIONS(3246), - [anon_sym_enum] = ACTIONS(3246), - [sym_html_comment] = ACTIONS(5), - }, - [1646] = { - [sym_comment] = STATE(1646), - [ts_builtin_sym_end] = ACTIONS(3480), - [sym_identifier] = ACTIONS(3246), - [anon_sym_export] = ACTIONS(3246), - [anon_sym_type] = ACTIONS(3246), - [anon_sym_namespace] = ACTIONS(3246), - [anon_sym_LBRACE] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3246), - [anon_sym_typeof] = ACTIONS(3246), - [anon_sym_import] = ACTIONS(3246), - [anon_sym_with] = ACTIONS(3246), - [anon_sym_var] = ACTIONS(3246), - [anon_sym_let] = ACTIONS(3246), - [anon_sym_const] = ACTIONS(3246), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_if] = ACTIONS(3246), - [anon_sym_switch] = ACTIONS(3246), - [anon_sym_for] = ACTIONS(3246), - [anon_sym_LPAREN] = ACTIONS(3246), - [anon_sym_await] = ACTIONS(3246), - [anon_sym_while] = ACTIONS(3246), - [anon_sym_do] = ACTIONS(3246), - [anon_sym_try] = ACTIONS(3246), - [anon_sym_break] = ACTIONS(3246), - [anon_sym_continue] = ACTIONS(3246), - [anon_sym_debugger] = ACTIONS(3246), - [anon_sym_return] = ACTIONS(3246), - [anon_sym_throw] = ACTIONS(3246), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_yield] = ACTIONS(3246), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_LTtemplate_GT] = ACTIONS(3246), - [anon_sym_DQUOTE] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3246), - [anon_sym_class] = ACTIONS(3246), - [anon_sym_async] = ACTIONS(3246), - [anon_sym_function] = ACTIONS(3246), - [anon_sym_new] = ACTIONS(3246), - [anon_sym_using] = ACTIONS(3246), - [anon_sym_PLUS] = ACTIONS(3246), - [anon_sym_DASH] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3246), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_TILDE] = ACTIONS(3246), - [anon_sym_void] = ACTIONS(3246), - [anon_sym_delete] = ACTIONS(3246), - [anon_sym_PLUS_PLUS] = ACTIONS(3246), - [anon_sym_DASH_DASH] = ACTIONS(3246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3246), - [sym_number] = ACTIONS(3246), - [sym_private_property_identifier] = ACTIONS(3246), - [sym_this] = ACTIONS(3246), - [sym_super] = ACTIONS(3246), - [sym_true] = ACTIONS(3246), - [sym_false] = ACTIONS(3246), - [sym_null] = ACTIONS(3246), - [sym_undefined] = ACTIONS(3246), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_static] = ACTIONS(3246), - [anon_sym_readonly] = ACTIONS(3246), - [anon_sym_get] = ACTIONS(3246), - [anon_sym_set] = ACTIONS(3246), - [anon_sym_declare] = ACTIONS(3246), - [anon_sym_public] = ACTIONS(3246), - [anon_sym_private] = ACTIONS(3246), - [anon_sym_protected] = ACTIONS(3246), - [anon_sym_override] = ACTIONS(3246), - [anon_sym_module] = ACTIONS(3246), - [anon_sym_any] = ACTIONS(3246), - [anon_sym_number] = ACTIONS(3246), - [anon_sym_boolean] = ACTIONS(3246), - [anon_sym_string] = ACTIONS(3246), - [anon_sym_symbol] = ACTIONS(3246), - [anon_sym_object] = ACTIONS(3246), - [anon_sym_abstract] = ACTIONS(3246), - [anon_sym_interface] = ACTIONS(3246), - [anon_sym_enum] = ACTIONS(3246), + [1500] = { + [sym_comment] = STATE(1500), + [ts_builtin_sym_end] = ACTIONS(3516), + [sym_identifier] = ACTIONS(3300), + [anon_sym_export] = ACTIONS(3300), + [anon_sym_type] = ACTIONS(3300), + [anon_sym_namespace] = ACTIONS(3300), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_typeof] = ACTIONS(3300), + [anon_sym_import] = ACTIONS(3300), + [anon_sym_with] = ACTIONS(3300), + [anon_sym_var] = ACTIONS(3300), + [anon_sym_let] = ACTIONS(3300), + [anon_sym_const] = ACTIONS(3300), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_if] = ACTIONS(3300), + [anon_sym_switch] = ACTIONS(3300), + [anon_sym_for] = ACTIONS(3300), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_await] = ACTIONS(3300), + [anon_sym_while] = ACTIONS(3300), + [anon_sym_do] = ACTIONS(3300), + [anon_sym_try] = ACTIONS(3300), + [anon_sym_break] = ACTIONS(3300), + [anon_sym_continue] = ACTIONS(3300), + [anon_sym_debugger] = ACTIONS(3300), + [anon_sym_return] = ACTIONS(3300), + [anon_sym_throw] = ACTIONS(3300), + [anon_sym_SEMI] = ACTIONS(3300), + [anon_sym_yield] = ACTIONS(3300), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LTtemplate_GT] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [anon_sym_class] = ACTIONS(3300), + [anon_sym_async] = ACTIONS(3300), + [anon_sym_function] = ACTIONS(3300), + [anon_sym_new] = ACTIONS(3300), + [anon_sym_using] = ACTIONS(3300), + [anon_sym_PLUS] = ACTIONS(3300), + [anon_sym_DASH] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3300), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_void] = ACTIONS(3300), + [anon_sym_delete] = ACTIONS(3300), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3300), + [sym_number] = ACTIONS(3300), + [sym_private_property_identifier] = ACTIONS(3300), + [sym_this] = ACTIONS(3300), + [sym_super] = ACTIONS(3300), + [sym_true] = ACTIONS(3300), + [sym_false] = ACTIONS(3300), + [sym_null] = ACTIONS(3300), + [sym_undefined] = ACTIONS(3300), + [anon_sym_AT] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3300), + [anon_sym_readonly] = ACTIONS(3300), + [anon_sym_get] = ACTIONS(3300), + [anon_sym_set] = ACTIONS(3300), + [anon_sym_declare] = ACTIONS(3300), + [anon_sym_public] = ACTIONS(3300), + [anon_sym_private] = ACTIONS(3300), + [anon_sym_protected] = ACTIONS(3300), + [anon_sym_override] = ACTIONS(3300), + [anon_sym_module] = ACTIONS(3300), + [anon_sym_any] = ACTIONS(3300), + [anon_sym_number] = ACTIONS(3300), + [anon_sym_boolean] = ACTIONS(3300), + [anon_sym_string] = ACTIONS(3300), + [anon_sym_symbol] = ACTIONS(3300), + [anon_sym_object] = ACTIONS(3300), + [anon_sym_abstract] = ACTIONS(3300), + [anon_sym_interface] = ACTIONS(3300), + [anon_sym_enum] = ACTIONS(3300), [sym_html_comment] = ACTIONS(5), }, - [1647] = { - [sym_comment] = STATE(1647), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1501] = { + [sym_comment] = STATE(1501), + [ts_builtin_sym_end] = ACTIONS(3584), + [sym_identifier] = ACTIONS(3216), + [anon_sym_export] = ACTIONS(3216), + [anon_sym_type] = ACTIONS(3216), + [anon_sym_namespace] = ACTIONS(3216), + [anon_sym_LBRACE] = ACTIONS(3216), + [anon_sym_RBRACE] = ACTIONS(3216), + [anon_sym_typeof] = ACTIONS(3216), + [anon_sym_import] = ACTIONS(3216), + [anon_sym_with] = ACTIONS(3216), + [anon_sym_var] = ACTIONS(3216), + [anon_sym_let] = ACTIONS(3216), + [anon_sym_const] = ACTIONS(3216), + [anon_sym_BANG] = ACTIONS(3216), + [anon_sym_if] = ACTIONS(3216), + [anon_sym_switch] = ACTIONS(3216), + [anon_sym_for] = ACTIONS(3216), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_await] = ACTIONS(3216), + [anon_sym_while] = ACTIONS(3216), + [anon_sym_do] = ACTIONS(3216), + [anon_sym_try] = ACTIONS(3216), + [anon_sym_break] = ACTIONS(3216), + [anon_sym_continue] = ACTIONS(3216), + [anon_sym_debugger] = ACTIONS(3216), + [anon_sym_return] = ACTIONS(3216), + [anon_sym_throw] = ACTIONS(3216), + [anon_sym_SEMI] = ACTIONS(3216), + [anon_sym_yield] = ACTIONS(3216), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_LTtemplate_GT] = ACTIONS(3216), + [anon_sym_DQUOTE] = ACTIONS(3216), + [anon_sym_SQUOTE] = ACTIONS(3216), + [anon_sym_class] = ACTIONS(3216), + [anon_sym_async] = ACTIONS(3216), + [anon_sym_function] = ACTIONS(3216), + [anon_sym_new] = ACTIONS(3216), + [anon_sym_using] = ACTIONS(3216), + [anon_sym_PLUS] = ACTIONS(3216), + [anon_sym_DASH] = ACTIONS(3216), + [anon_sym_SLASH] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(3216), + [anon_sym_TILDE] = ACTIONS(3216), + [anon_sym_void] = ACTIONS(3216), + [anon_sym_delete] = ACTIONS(3216), + [anon_sym_PLUS_PLUS] = ACTIONS(3216), + [anon_sym_DASH_DASH] = ACTIONS(3216), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3216), + [sym_number] = ACTIONS(3216), + [sym_private_property_identifier] = ACTIONS(3216), + [sym_this] = ACTIONS(3216), + [sym_super] = ACTIONS(3216), + [sym_true] = ACTIONS(3216), + [sym_false] = ACTIONS(3216), + [sym_null] = ACTIONS(3216), + [sym_undefined] = ACTIONS(3216), + [anon_sym_AT] = ACTIONS(3216), + [anon_sym_static] = ACTIONS(3216), + [anon_sym_readonly] = ACTIONS(3216), + [anon_sym_get] = ACTIONS(3216), + [anon_sym_set] = ACTIONS(3216), + [anon_sym_declare] = ACTIONS(3216), + [anon_sym_public] = ACTIONS(3216), + [anon_sym_private] = ACTIONS(3216), + [anon_sym_protected] = ACTIONS(3216), + [anon_sym_override] = ACTIONS(3216), + [anon_sym_module] = ACTIONS(3216), + [anon_sym_any] = ACTIONS(3216), + [anon_sym_number] = ACTIONS(3216), + [anon_sym_boolean] = ACTIONS(3216), + [anon_sym_string] = ACTIONS(3216), + [anon_sym_symbol] = ACTIONS(3216), + [anon_sym_object] = ACTIONS(3216), + [anon_sym_abstract] = ACTIONS(3216), + [anon_sym_interface] = ACTIONS(3216), + [anon_sym_enum] = ACTIONS(3216), [sym_html_comment] = ACTIONS(5), }, - [1648] = { - [sym_comment] = STATE(1648), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [1502] = { + [sym_comment] = STATE(1502), + [ts_builtin_sym_end] = ACTIONS(3560), + [sym_identifier] = ACTIONS(3370), + [anon_sym_export] = ACTIONS(3370), + [anon_sym_type] = ACTIONS(3370), + [anon_sym_namespace] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_RBRACE] = ACTIONS(3370), + [anon_sym_typeof] = ACTIONS(3370), + [anon_sym_import] = ACTIONS(3370), + [anon_sym_with] = ACTIONS(3370), + [anon_sym_var] = ACTIONS(3370), + [anon_sym_let] = ACTIONS(3370), + [anon_sym_const] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_switch] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3370), + [anon_sym_await] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_try] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_debugger] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_throw] = ACTIONS(3370), + [anon_sym_SEMI] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3370), + [anon_sym_LTtemplate_GT] = ACTIONS(3370), + [anon_sym_DQUOTE] = ACTIONS(3370), + [anon_sym_SQUOTE] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3370), + [anon_sym_async] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3370), + [anon_sym_using] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_LT] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3370), + [anon_sym_void] = ACTIONS(3370), + [anon_sym_delete] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3370), + [anon_sym_DASH_DASH] = ACTIONS(3370), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3370), + [sym_number] = ACTIONS(3370), + [sym_private_property_identifier] = ACTIONS(3370), + [sym_this] = ACTIONS(3370), + [sym_super] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_null] = ACTIONS(3370), + [sym_undefined] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3370), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_readonly] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3370), + [anon_sym_set] = ACTIONS(3370), + [anon_sym_declare] = ACTIONS(3370), + [anon_sym_public] = ACTIONS(3370), + [anon_sym_private] = ACTIONS(3370), + [anon_sym_protected] = ACTIONS(3370), + [anon_sym_override] = ACTIONS(3370), + [anon_sym_module] = ACTIONS(3370), + [anon_sym_any] = ACTIONS(3370), + [anon_sym_number] = ACTIONS(3370), + [anon_sym_boolean] = ACTIONS(3370), + [anon_sym_string] = ACTIONS(3370), + [anon_sym_symbol] = ACTIONS(3370), + [anon_sym_object] = ACTIONS(3370), + [anon_sym_abstract] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), [sym_html_comment] = ACTIONS(5), }, - [1649] = { - [sym_comment] = STATE(1649), - [ts_builtin_sym_end] = ACTIONS(3548), - [sym_identifier] = ACTIONS(3180), - [anon_sym_export] = ACTIONS(3180), - [anon_sym_type] = ACTIONS(3180), - [anon_sym_namespace] = ACTIONS(3180), - [anon_sym_LBRACE] = ACTIONS(3180), - [anon_sym_RBRACE] = ACTIONS(3180), - [anon_sym_typeof] = ACTIONS(3180), - [anon_sym_import] = ACTIONS(3180), - [anon_sym_with] = ACTIONS(3180), - [anon_sym_var] = ACTIONS(3180), - [anon_sym_let] = ACTIONS(3180), - [anon_sym_const] = ACTIONS(3180), - [anon_sym_BANG] = ACTIONS(3180), - [anon_sym_if] = ACTIONS(3180), - [anon_sym_switch] = ACTIONS(3180), - [anon_sym_for] = ACTIONS(3180), - [anon_sym_LPAREN] = ACTIONS(3180), - [anon_sym_await] = ACTIONS(3180), - [anon_sym_while] = ACTIONS(3180), - [anon_sym_do] = ACTIONS(3180), - [anon_sym_try] = ACTIONS(3180), - [anon_sym_break] = ACTIONS(3180), - [anon_sym_continue] = ACTIONS(3180), - [anon_sym_debugger] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3180), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_SEMI] = ACTIONS(3180), - [anon_sym_yield] = ACTIONS(3180), - [anon_sym_LBRACK] = ACTIONS(3180), - [anon_sym_LTtemplate_GT] = ACTIONS(3180), - [anon_sym_DQUOTE] = ACTIONS(3180), - [anon_sym_SQUOTE] = ACTIONS(3180), - [anon_sym_class] = ACTIONS(3180), - [anon_sym_async] = ACTIONS(3180), - [anon_sym_function] = ACTIONS(3180), - [anon_sym_new] = ACTIONS(3180), - [anon_sym_using] = ACTIONS(3180), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_SLASH] = ACTIONS(3180), - [anon_sym_LT] = ACTIONS(3180), - [anon_sym_TILDE] = ACTIONS(3180), - [anon_sym_void] = ACTIONS(3180), - [anon_sym_delete] = ACTIONS(3180), - [anon_sym_PLUS_PLUS] = ACTIONS(3180), - [anon_sym_DASH_DASH] = ACTIONS(3180), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3180), - [sym_number] = ACTIONS(3180), - [sym_private_property_identifier] = ACTIONS(3180), - [sym_this] = ACTIONS(3180), - [sym_super] = ACTIONS(3180), - [sym_true] = ACTIONS(3180), - [sym_false] = ACTIONS(3180), - [sym_null] = ACTIONS(3180), - [sym_undefined] = ACTIONS(3180), - [anon_sym_AT] = ACTIONS(3180), - [anon_sym_static] = ACTIONS(3180), - [anon_sym_readonly] = ACTIONS(3180), - [anon_sym_get] = ACTIONS(3180), - [anon_sym_set] = ACTIONS(3180), - [anon_sym_declare] = ACTIONS(3180), - [anon_sym_public] = ACTIONS(3180), - [anon_sym_private] = ACTIONS(3180), - [anon_sym_protected] = ACTIONS(3180), - [anon_sym_override] = ACTIONS(3180), - [anon_sym_module] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3180), - [anon_sym_number] = ACTIONS(3180), - [anon_sym_boolean] = ACTIONS(3180), - [anon_sym_string] = ACTIONS(3180), - [anon_sym_symbol] = ACTIONS(3180), - [anon_sym_object] = ACTIONS(3180), - [anon_sym_abstract] = ACTIONS(3180), - [anon_sym_interface] = ACTIONS(3180), - [anon_sym_enum] = ACTIONS(3180), + [1503] = { + [sym_comment] = STATE(1503), + [ts_builtin_sym_end] = ACTIONS(3566), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3314), + [anon_sym_RBRACE] = ACTIONS(3314), + [anon_sym_typeof] = ACTIONS(3314), + [anon_sym_import] = ACTIONS(3314), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_var] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_const] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_switch] = ACTIONS(3314), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3314), + [anon_sym_await] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_break] = ACTIONS(3314), + [anon_sym_continue] = ACTIONS(3314), + [anon_sym_debugger] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_throw] = ACTIONS(3314), + [anon_sym_SEMI] = ACTIONS(3314), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3314), + [anon_sym_LTtemplate_GT] = ACTIONS(3314), + [anon_sym_DQUOTE] = ACTIONS(3314), + [anon_sym_SQUOTE] = ACTIONS(3314), + [anon_sym_class] = ACTIONS(3314), + [anon_sym_async] = ACTIONS(3314), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_using] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_SLASH] = ACTIONS(3314), + [anon_sym_LT] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3314), + [anon_sym_void] = ACTIONS(3314), + [anon_sym_delete] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3314), + [anon_sym_DASH_DASH] = ACTIONS(3314), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3314), + [sym_number] = ACTIONS(3314), + [sym_private_property_identifier] = ACTIONS(3314), + [sym_this] = ACTIONS(3314), + [sym_super] = ACTIONS(3314), + [sym_true] = ACTIONS(3314), + [sym_false] = ACTIONS(3314), + [sym_null] = ACTIONS(3314), + [sym_undefined] = ACTIONS(3314), + [anon_sym_AT] = ACTIONS(3314), + [anon_sym_static] = ACTIONS(3314), + [anon_sym_readonly] = ACTIONS(3314), + [anon_sym_get] = ACTIONS(3314), + [anon_sym_set] = ACTIONS(3314), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3314), + [anon_sym_private] = ACTIONS(3314), + [anon_sym_protected] = ACTIONS(3314), + [anon_sym_override] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_any] = ACTIONS(3314), + [anon_sym_number] = ACTIONS(3314), + [anon_sym_boolean] = ACTIONS(3314), + [anon_sym_string] = ACTIONS(3314), + [anon_sym_symbol] = ACTIONS(3314), + [anon_sym_object] = ACTIONS(3314), + [anon_sym_abstract] = ACTIONS(3314), + [anon_sym_interface] = ACTIONS(3314), + [anon_sym_enum] = ACTIONS(3314), [sym_html_comment] = ACTIONS(5), }, - [1650] = { - [sym_comment] = STATE(1650), - [ts_builtin_sym_end] = ACTIONS(3430), - [sym_identifier] = ACTIONS(3258), - [anon_sym_export] = ACTIONS(3258), - [anon_sym_type] = ACTIONS(3258), - [anon_sym_namespace] = ACTIONS(3258), - [anon_sym_LBRACE] = ACTIONS(3258), - [anon_sym_RBRACE] = ACTIONS(3258), - [anon_sym_typeof] = ACTIONS(3258), - [anon_sym_import] = ACTIONS(3258), - [anon_sym_with] = ACTIONS(3258), - [anon_sym_var] = ACTIONS(3258), - [anon_sym_let] = ACTIONS(3258), - [anon_sym_const] = ACTIONS(3258), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_if] = ACTIONS(3258), - [anon_sym_switch] = ACTIONS(3258), - [anon_sym_for] = ACTIONS(3258), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_await] = ACTIONS(3258), - [anon_sym_while] = ACTIONS(3258), - [anon_sym_do] = ACTIONS(3258), - [anon_sym_try] = ACTIONS(3258), - [anon_sym_break] = ACTIONS(3258), - [anon_sym_continue] = ACTIONS(3258), - [anon_sym_debugger] = ACTIONS(3258), - [anon_sym_return] = ACTIONS(3258), - [anon_sym_throw] = ACTIONS(3258), - [anon_sym_SEMI] = ACTIONS(3258), - [anon_sym_yield] = ACTIONS(3258), - [anon_sym_LBRACK] = ACTIONS(3258), - [anon_sym_LTtemplate_GT] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_SQUOTE] = ACTIONS(3258), - [anon_sym_class] = ACTIONS(3258), - [anon_sym_async] = ACTIONS(3258), - [anon_sym_function] = ACTIONS(3258), - [anon_sym_new] = ACTIONS(3258), - [anon_sym_using] = ACTIONS(3258), - [anon_sym_PLUS] = ACTIONS(3258), - [anon_sym_DASH] = ACTIONS(3258), - [anon_sym_SLASH] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3258), - [anon_sym_TILDE] = ACTIONS(3258), - [anon_sym_void] = ACTIONS(3258), - [anon_sym_delete] = ACTIONS(3258), - [anon_sym_PLUS_PLUS] = ACTIONS(3258), - [anon_sym_DASH_DASH] = ACTIONS(3258), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3258), - [sym_number] = ACTIONS(3258), - [sym_private_property_identifier] = ACTIONS(3258), - [sym_this] = ACTIONS(3258), - [sym_super] = ACTIONS(3258), - [sym_true] = ACTIONS(3258), - [sym_false] = ACTIONS(3258), - [sym_null] = ACTIONS(3258), - [sym_undefined] = ACTIONS(3258), - [anon_sym_AT] = ACTIONS(3258), - [anon_sym_static] = ACTIONS(3258), - [anon_sym_readonly] = ACTIONS(3258), - [anon_sym_get] = ACTIONS(3258), - [anon_sym_set] = ACTIONS(3258), - [anon_sym_declare] = ACTIONS(3258), - [anon_sym_public] = ACTIONS(3258), - [anon_sym_private] = ACTIONS(3258), - [anon_sym_protected] = ACTIONS(3258), - [anon_sym_override] = ACTIONS(3258), - [anon_sym_module] = ACTIONS(3258), - [anon_sym_any] = ACTIONS(3258), - [anon_sym_number] = ACTIONS(3258), - [anon_sym_boolean] = ACTIONS(3258), - [anon_sym_string] = ACTIONS(3258), - [anon_sym_symbol] = ACTIONS(3258), - [anon_sym_object] = ACTIONS(3258), - [anon_sym_abstract] = ACTIONS(3258), - [anon_sym_interface] = ACTIONS(3258), - [anon_sym_enum] = ACTIONS(3258), + [1504] = { + [sym_comment] = STATE(1504), + [ts_builtin_sym_end] = ACTIONS(3568), + [sym_identifier] = ACTIONS(3318), + [anon_sym_export] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_namespace] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3318), + [anon_sym_RBRACE] = ACTIONS(3318), + [anon_sym_typeof] = ACTIONS(3318), + [anon_sym_import] = ACTIONS(3318), + [anon_sym_with] = ACTIONS(3318), + [anon_sym_var] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_const] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_switch] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3318), + [anon_sym_await] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_break] = ACTIONS(3318), + [anon_sym_continue] = ACTIONS(3318), + [anon_sym_debugger] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_throw] = ACTIONS(3318), + [anon_sym_SEMI] = ACTIONS(3318), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3318), + [anon_sym_LTtemplate_GT] = ACTIONS(3318), + [anon_sym_DQUOTE] = ACTIONS(3318), + [anon_sym_SQUOTE] = ACTIONS(3318), + [anon_sym_class] = ACTIONS(3318), + [anon_sym_async] = ACTIONS(3318), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_using] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_LT] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3318), + [anon_sym_void] = ACTIONS(3318), + [anon_sym_delete] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3318), + [anon_sym_DASH_DASH] = ACTIONS(3318), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3318), + [sym_number] = ACTIONS(3318), + [sym_private_property_identifier] = ACTIONS(3318), + [sym_this] = ACTIONS(3318), + [sym_super] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_null] = ACTIONS(3318), + [sym_undefined] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3318), + [anon_sym_static] = ACTIONS(3318), + [anon_sym_readonly] = ACTIONS(3318), + [anon_sym_get] = ACTIONS(3318), + [anon_sym_set] = ACTIONS(3318), + [anon_sym_declare] = ACTIONS(3318), + [anon_sym_public] = ACTIONS(3318), + [anon_sym_private] = ACTIONS(3318), + [anon_sym_protected] = ACTIONS(3318), + [anon_sym_override] = ACTIONS(3318), + [anon_sym_module] = ACTIONS(3318), + [anon_sym_any] = ACTIONS(3318), + [anon_sym_number] = ACTIONS(3318), + [anon_sym_boolean] = ACTIONS(3318), + [anon_sym_string] = ACTIONS(3318), + [anon_sym_symbol] = ACTIONS(3318), + [anon_sym_object] = ACTIONS(3318), + [anon_sym_abstract] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_enum] = ACTIONS(3318), [sym_html_comment] = ACTIONS(5), }, - [1651] = { - [sym_comment] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), + [1505] = { + [sym_comment] = STATE(1505), + [ts_builtin_sym_end] = ACTIONS(3558), + [sym_identifier] = ACTIONS(3364), + [anon_sym_export] = ACTIONS(3364), + [anon_sym_type] = ACTIONS(3364), + [anon_sym_namespace] = ACTIONS(3364), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_typeof] = ACTIONS(3364), + [anon_sym_import] = ACTIONS(3364), + [anon_sym_with] = ACTIONS(3364), + [anon_sym_var] = ACTIONS(3364), + [anon_sym_let] = ACTIONS(3364), + [anon_sym_const] = ACTIONS(3364), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_if] = ACTIONS(3364), + [anon_sym_switch] = ACTIONS(3364), + [anon_sym_for] = ACTIONS(3364), + [anon_sym_LPAREN] = ACTIONS(3364), + [anon_sym_await] = ACTIONS(3364), + [anon_sym_while] = ACTIONS(3364), + [anon_sym_do] = ACTIONS(3364), + [anon_sym_try] = ACTIONS(3364), + [anon_sym_break] = ACTIONS(3364), + [anon_sym_continue] = ACTIONS(3364), + [anon_sym_debugger] = ACTIONS(3364), + [anon_sym_return] = ACTIONS(3364), + [anon_sym_throw] = ACTIONS(3364), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_yield] = ACTIONS(3364), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_LTtemplate_GT] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(3364), + [anon_sym_class] = ACTIONS(3364), + [anon_sym_async] = ACTIONS(3364), + [anon_sym_function] = ACTIONS(3364), + [anon_sym_new] = ACTIONS(3364), + [anon_sym_using] = ACTIONS(3364), + [anon_sym_PLUS] = ACTIONS(3364), + [anon_sym_DASH] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_void] = ACTIONS(3364), + [anon_sym_delete] = ACTIONS(3364), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3364), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [anon_sym_BQUOTE] = ACTIONS(3364), + [sym_number] = ACTIONS(3364), + [sym_private_property_identifier] = ACTIONS(3364), + [sym_this] = ACTIONS(3364), + [sym_super] = ACTIONS(3364), + [sym_true] = ACTIONS(3364), + [sym_false] = ACTIONS(3364), + [sym_null] = ACTIONS(3364), + [sym_undefined] = ACTIONS(3364), + [anon_sym_AT] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3364), + [anon_sym_readonly] = ACTIONS(3364), + [anon_sym_get] = ACTIONS(3364), + [anon_sym_set] = ACTIONS(3364), + [anon_sym_declare] = ACTIONS(3364), + [anon_sym_public] = ACTIONS(3364), + [anon_sym_private] = ACTIONS(3364), + [anon_sym_protected] = ACTIONS(3364), + [anon_sym_override] = ACTIONS(3364), + [anon_sym_module] = ACTIONS(3364), + [anon_sym_any] = ACTIONS(3364), + [anon_sym_number] = ACTIONS(3364), + [anon_sym_boolean] = ACTIONS(3364), + [anon_sym_string] = ACTIONS(3364), + [anon_sym_symbol] = ACTIONS(3364), + [anon_sym_object] = ACTIONS(3364), + [anon_sym_abstract] = ACTIONS(3364), + [anon_sym_interface] = ACTIONS(3364), + [anon_sym_enum] = ACTIONS(3364), [sym_html_comment] = ACTIONS(5), }, - [1652] = { - [sym_comment] = STATE(1652), - [ts_builtin_sym_end] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), + [1506] = { + [sym_comment] = STATE(1506), + [ts_builtin_sym_end] = ACTIONS(3508), + [sym_identifier] = ACTIONS(3230), + [anon_sym_export] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_namespace] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3230), + [anon_sym_RBRACE] = ACTIONS(3230), + [anon_sym_typeof] = ACTIONS(3230), + [anon_sym_import] = ACTIONS(3230), + [anon_sym_with] = ACTIONS(3230), + [anon_sym_var] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_switch] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3230), + [anon_sym_await] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_debugger] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_throw] = ACTIONS(3230), + [anon_sym_SEMI] = ACTIONS(3230), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3230), + [anon_sym_LTtemplate_GT] = ACTIONS(3230), + [anon_sym_DQUOTE] = ACTIONS(3230), + [anon_sym_SQUOTE] = ACTIONS(3230), + [anon_sym_class] = ACTIONS(3230), + [anon_sym_async] = ACTIONS(3230), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_using] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_LT] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3230), + [anon_sym_void] = ACTIONS(3230), + [anon_sym_delete] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3230), + [anon_sym_DASH_DASH] = ACTIONS(3230), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [anon_sym_BQUOTE] = ACTIONS(3230), + [sym_number] = ACTIONS(3230), + [sym_private_property_identifier] = ACTIONS(3230), + [sym_this] = ACTIONS(3230), + [sym_super] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_null] = ACTIONS(3230), + [sym_undefined] = ACTIONS(3230), + [anon_sym_AT] = ACTIONS(3230), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_readonly] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3230), + [anon_sym_set] = ACTIONS(3230), + [anon_sym_declare] = ACTIONS(3230), + [anon_sym_public] = ACTIONS(3230), + [anon_sym_private] = ACTIONS(3230), + [anon_sym_protected] = ACTIONS(3230), + [anon_sym_override] = ACTIONS(3230), + [anon_sym_module] = ACTIONS(3230), + [anon_sym_any] = ACTIONS(3230), + [anon_sym_number] = ACTIONS(3230), + [anon_sym_boolean] = ACTIONS(3230), + [anon_sym_string] = ACTIONS(3230), + [anon_sym_symbol] = ACTIONS(3230), + [anon_sym_object] = ACTIONS(3230), + [anon_sym_abstract] = ACTIONS(3230), + [anon_sym_interface] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), [sym_html_comment] = ACTIONS(5), }, - [1653] = { - [sym_comment] = STATE(1653), - [ts_builtin_sym_end] = ACTIONS(3444), - [sym_identifier] = ACTIONS(3256), - [anon_sym_export] = ACTIONS(3256), - [anon_sym_type] = ACTIONS(3256), - [anon_sym_namespace] = ACTIONS(3256), - [anon_sym_LBRACE] = ACTIONS(3256), - [anon_sym_RBRACE] = ACTIONS(3256), - [anon_sym_typeof] = ACTIONS(3256), - [anon_sym_import] = ACTIONS(3256), - [anon_sym_with] = ACTIONS(3256), - [anon_sym_var] = ACTIONS(3256), - [anon_sym_let] = ACTIONS(3256), - [anon_sym_const] = ACTIONS(3256), - [anon_sym_BANG] = ACTIONS(3256), - [anon_sym_if] = ACTIONS(3256), - [anon_sym_switch] = ACTIONS(3256), - [anon_sym_for] = ACTIONS(3256), - [anon_sym_LPAREN] = ACTIONS(3256), - [anon_sym_await] = ACTIONS(3256), - [anon_sym_while] = ACTIONS(3256), - [anon_sym_do] = ACTIONS(3256), - [anon_sym_try] = ACTIONS(3256), - [anon_sym_break] = ACTIONS(3256), - [anon_sym_continue] = ACTIONS(3256), - [anon_sym_debugger] = ACTIONS(3256), - [anon_sym_return] = ACTIONS(3256), - [anon_sym_throw] = ACTIONS(3256), - [anon_sym_SEMI] = ACTIONS(3256), - [anon_sym_yield] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(3256), - [anon_sym_LTtemplate_GT] = ACTIONS(3256), - [anon_sym_DQUOTE] = ACTIONS(3256), - [anon_sym_SQUOTE] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3256), - [anon_sym_async] = ACTIONS(3256), - [anon_sym_function] = ACTIONS(3256), - [anon_sym_new] = ACTIONS(3256), - [anon_sym_using] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3256), - [anon_sym_DASH] = ACTIONS(3256), - [anon_sym_SLASH] = ACTIONS(3256), - [anon_sym_LT] = ACTIONS(3256), - [anon_sym_TILDE] = ACTIONS(3256), - [anon_sym_void] = ACTIONS(3256), - [anon_sym_delete] = ACTIONS(3256), - [anon_sym_PLUS_PLUS] = ACTIONS(3256), - [anon_sym_DASH_DASH] = ACTIONS(3256), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3256), - [sym_number] = ACTIONS(3256), - [sym_private_property_identifier] = ACTIONS(3256), - [sym_this] = ACTIONS(3256), - [sym_super] = ACTIONS(3256), - [sym_true] = ACTIONS(3256), - [sym_false] = ACTIONS(3256), - [sym_null] = ACTIONS(3256), - [sym_undefined] = ACTIONS(3256), - [anon_sym_AT] = ACTIONS(3256), - [anon_sym_static] = ACTIONS(3256), - [anon_sym_readonly] = ACTIONS(3256), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3256), - [anon_sym_declare] = ACTIONS(3256), - [anon_sym_public] = ACTIONS(3256), - [anon_sym_private] = ACTIONS(3256), - [anon_sym_protected] = ACTIONS(3256), - [anon_sym_override] = ACTIONS(3256), - [anon_sym_module] = ACTIONS(3256), - [anon_sym_any] = ACTIONS(3256), - [anon_sym_number] = ACTIONS(3256), - [anon_sym_boolean] = ACTIONS(3256), - [anon_sym_string] = ACTIONS(3256), - [anon_sym_symbol] = ACTIONS(3256), - [anon_sym_object] = ACTIONS(3256), - [anon_sym_abstract] = ACTIONS(3256), - [anon_sym_interface] = ACTIONS(3256), - [anon_sym_enum] = ACTIONS(3256), + [1507] = { + [sym_comment] = STATE(1507), + [ts_builtin_sym_end] = ACTIONS(3556), + [sym_identifier] = ACTIONS(3352), + [anon_sym_export] = ACTIONS(3352), + [anon_sym_type] = ACTIONS(3352), + [anon_sym_namespace] = ACTIONS(3352), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_RBRACE] = ACTIONS(3352), + [anon_sym_typeof] = ACTIONS(3352), + [anon_sym_import] = ACTIONS(3352), + [anon_sym_with] = ACTIONS(3352), + [anon_sym_var] = ACTIONS(3352), + [anon_sym_let] = ACTIONS(3352), + [anon_sym_const] = ACTIONS(3352), + [anon_sym_BANG] = ACTIONS(3352), + [anon_sym_if] = ACTIONS(3352), + [anon_sym_switch] = ACTIONS(3352), + [anon_sym_for] = ACTIONS(3352), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_await] = ACTIONS(3352), + [anon_sym_while] = ACTIONS(3352), + [anon_sym_do] = ACTIONS(3352), + [anon_sym_try] = ACTIONS(3352), + [anon_sym_break] = ACTIONS(3352), + [anon_sym_continue] = ACTIONS(3352), + [anon_sym_debugger] = ACTIONS(3352), + [anon_sym_return] = ACTIONS(3352), + [anon_sym_throw] = ACTIONS(3352), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_yield] = ACTIONS(3352), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_LTtemplate_GT] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [anon_sym_SQUOTE] = ACTIONS(3352), + [anon_sym_class] = ACTIONS(3352), + [anon_sym_async] = ACTIONS(3352), + [anon_sym_function] = ACTIONS(3352), + [anon_sym_new] = ACTIONS(3352), + [anon_sym_using] = ACTIONS(3352), + [anon_sym_PLUS] = ACTIONS(3352), + [anon_sym_DASH] = ACTIONS(3352), + [anon_sym_SLASH] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3352), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_void] = ACTIONS(3352), + [anon_sym_delete] = ACTIONS(3352), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3352), + [sym_number] = ACTIONS(3352), + [sym_private_property_identifier] = ACTIONS(3352), + [sym_this] = ACTIONS(3352), + [sym_super] = ACTIONS(3352), + [sym_true] = ACTIONS(3352), + [sym_false] = ACTIONS(3352), + [sym_null] = ACTIONS(3352), + [sym_undefined] = ACTIONS(3352), + [anon_sym_AT] = ACTIONS(3352), + [anon_sym_static] = ACTIONS(3352), + [anon_sym_readonly] = ACTIONS(3352), + [anon_sym_get] = ACTIONS(3352), + [anon_sym_set] = ACTIONS(3352), + [anon_sym_declare] = ACTIONS(3352), + [anon_sym_public] = ACTIONS(3352), + [anon_sym_private] = ACTIONS(3352), + [anon_sym_protected] = ACTIONS(3352), + [anon_sym_override] = ACTIONS(3352), + [anon_sym_module] = ACTIONS(3352), + [anon_sym_any] = ACTIONS(3352), + [anon_sym_number] = ACTIONS(3352), + [anon_sym_boolean] = ACTIONS(3352), + [anon_sym_string] = ACTIONS(3352), + [anon_sym_symbol] = ACTIONS(3352), + [anon_sym_object] = ACTIONS(3352), + [anon_sym_abstract] = ACTIONS(3352), + [anon_sym_interface] = ACTIONS(3352), + [anon_sym_enum] = ACTIONS(3352), [sym_html_comment] = ACTIONS(5), }, - [1654] = { - [sym_comment] = STATE(1654), - [ts_builtin_sym_end] = ACTIONS(3446), - [sym_identifier] = ACTIONS(3254), - [anon_sym_export] = ACTIONS(3254), - [anon_sym_type] = ACTIONS(3254), - [anon_sym_namespace] = ACTIONS(3254), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3254), - [anon_sym_typeof] = ACTIONS(3254), - [anon_sym_import] = ACTIONS(3254), - [anon_sym_with] = ACTIONS(3254), - [anon_sym_var] = ACTIONS(3254), - [anon_sym_let] = ACTIONS(3254), - [anon_sym_const] = ACTIONS(3254), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_if] = ACTIONS(3254), - [anon_sym_switch] = ACTIONS(3254), - [anon_sym_for] = ACTIONS(3254), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_await] = ACTIONS(3254), - [anon_sym_while] = ACTIONS(3254), - [anon_sym_do] = ACTIONS(3254), - [anon_sym_try] = ACTIONS(3254), - [anon_sym_break] = ACTIONS(3254), - [anon_sym_continue] = ACTIONS(3254), - [anon_sym_debugger] = ACTIONS(3254), - [anon_sym_return] = ACTIONS(3254), - [anon_sym_throw] = ACTIONS(3254), - [anon_sym_SEMI] = ACTIONS(3254), - [anon_sym_yield] = ACTIONS(3254), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_LTtemplate_GT] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(3254), - [anon_sym_class] = ACTIONS(3254), - [anon_sym_async] = ACTIONS(3254), - [anon_sym_function] = ACTIONS(3254), - [anon_sym_new] = ACTIONS(3254), - [anon_sym_using] = ACTIONS(3254), - [anon_sym_PLUS] = ACTIONS(3254), - [anon_sym_DASH] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_TILDE] = ACTIONS(3254), - [anon_sym_void] = ACTIONS(3254), - [anon_sym_delete] = ACTIONS(3254), - [anon_sym_PLUS_PLUS] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3254), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3254), - [sym_number] = ACTIONS(3254), - [sym_private_property_identifier] = ACTIONS(3254), - [sym_this] = ACTIONS(3254), - [sym_super] = ACTIONS(3254), - [sym_true] = ACTIONS(3254), - [sym_false] = ACTIONS(3254), - [sym_null] = ACTIONS(3254), - [sym_undefined] = ACTIONS(3254), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_static] = ACTIONS(3254), - [anon_sym_readonly] = ACTIONS(3254), - [anon_sym_get] = ACTIONS(3254), - [anon_sym_set] = ACTIONS(3254), - [anon_sym_declare] = ACTIONS(3254), - [anon_sym_public] = ACTIONS(3254), - [anon_sym_private] = ACTIONS(3254), - [anon_sym_protected] = ACTIONS(3254), - [anon_sym_override] = ACTIONS(3254), - [anon_sym_module] = ACTIONS(3254), - [anon_sym_any] = ACTIONS(3254), - [anon_sym_number] = ACTIONS(3254), - [anon_sym_boolean] = ACTIONS(3254), - [anon_sym_string] = ACTIONS(3254), - [anon_sym_symbol] = ACTIONS(3254), - [anon_sym_object] = ACTIONS(3254), - [anon_sym_abstract] = ACTIONS(3254), - [anon_sym_interface] = ACTIONS(3254), - [anon_sym_enum] = ACTIONS(3254), + [1508] = { + [sym_comment] = STATE(1508), + [ts_builtin_sym_end] = ACTIONS(3374), + [sym_identifier] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(3368), + [anon_sym_type] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_typeof] = ACTIONS(3368), + [anon_sym_import] = ACTIONS(3368), + [anon_sym_with] = ACTIONS(3368), + [anon_sym_var] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_await] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_debugger] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LTtemplate_GT] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3368), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_async] = ACTIONS(3368), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_void] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3368), + [sym_number] = ACTIONS(3368), + [sym_private_property_identifier] = ACTIONS(3368), + [sym_this] = ACTIONS(3368), + [sym_super] = ACTIONS(3368), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [sym_null] = ACTIONS(3368), + [sym_undefined] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_readonly] = ACTIONS(3368), + [anon_sym_get] = ACTIONS(3368), + [anon_sym_set] = ACTIONS(3368), + [anon_sym_declare] = ACTIONS(3368), + [anon_sym_public] = ACTIONS(3368), + [anon_sym_private] = ACTIONS(3368), + [anon_sym_protected] = ACTIONS(3368), + [anon_sym_override] = ACTIONS(3368), + [anon_sym_module] = ACTIONS(3368), + [anon_sym_any] = ACTIONS(3368), + [anon_sym_number] = ACTIONS(3368), + [anon_sym_boolean] = ACTIONS(3368), + [anon_sym_string] = ACTIONS(3368), + [anon_sym_symbol] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_abstract] = ACTIONS(3368), + [anon_sym_interface] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), [sym_html_comment] = ACTIONS(5), }, - [1655] = { - [sym_comment] = STATE(1655), - [ts_builtin_sym_end] = ACTIONS(3394), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3272), - [anon_sym_RBRACE] = ACTIONS(3272), - [anon_sym_typeof] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(3272), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_var] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_const] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_switch] = ACTIONS(3272), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3272), - [anon_sym_await] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_break] = ACTIONS(3272), - [anon_sym_continue] = ACTIONS(3272), - [anon_sym_debugger] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_throw] = ACTIONS(3272), - [anon_sym_SEMI] = ACTIONS(3272), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3272), - [anon_sym_LTtemplate_GT] = ACTIONS(3272), - [anon_sym_DQUOTE] = ACTIONS(3272), - [anon_sym_SQUOTE] = ACTIONS(3272), - [anon_sym_class] = ACTIONS(3272), - [anon_sym_async] = ACTIONS(3272), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_using] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_LT] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3272), - [anon_sym_void] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3272), - [anon_sym_DASH_DASH] = ACTIONS(3272), + [1509] = { + [sym_comment] = STATE(1509), + [ts_builtin_sym_end] = ACTIONS(3554), + [sym_identifier] = ACTIONS(3344), + [anon_sym_export] = ACTIONS(3344), + [anon_sym_type] = ACTIONS(3344), + [anon_sym_namespace] = ACTIONS(3344), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_RBRACE] = ACTIONS(3344), + [anon_sym_typeof] = ACTIONS(3344), + [anon_sym_import] = ACTIONS(3344), + [anon_sym_with] = ACTIONS(3344), + [anon_sym_var] = ACTIONS(3344), + [anon_sym_let] = ACTIONS(3344), + [anon_sym_const] = ACTIONS(3344), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_if] = ACTIONS(3344), + [anon_sym_switch] = ACTIONS(3344), + [anon_sym_for] = ACTIONS(3344), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_await] = ACTIONS(3344), + [anon_sym_while] = ACTIONS(3344), + [anon_sym_do] = ACTIONS(3344), + [anon_sym_try] = ACTIONS(3344), + [anon_sym_break] = ACTIONS(3344), + [anon_sym_continue] = ACTIONS(3344), + [anon_sym_debugger] = ACTIONS(3344), + [anon_sym_return] = ACTIONS(3344), + [anon_sym_throw] = ACTIONS(3344), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_yield] = ACTIONS(3344), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_LTtemplate_GT] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3344), + [anon_sym_class] = ACTIONS(3344), + [anon_sym_async] = ACTIONS(3344), + [anon_sym_function] = ACTIONS(3344), + [anon_sym_new] = ACTIONS(3344), + [anon_sym_using] = ACTIONS(3344), + [anon_sym_PLUS] = ACTIONS(3344), + [anon_sym_DASH] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3344), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_TILDE] = ACTIONS(3344), + [anon_sym_void] = ACTIONS(3344), + [anon_sym_delete] = ACTIONS(3344), + [anon_sym_PLUS_PLUS] = ACTIONS(3344), + [anon_sym_DASH_DASH] = ACTIONS(3344), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3272), - [sym_number] = ACTIONS(3272), - [sym_private_property_identifier] = ACTIONS(3272), - [sym_this] = ACTIONS(3272), - [sym_super] = ACTIONS(3272), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_undefined] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3272), - [anon_sym_static] = ACTIONS(3272), - [anon_sym_readonly] = ACTIONS(3272), - [anon_sym_get] = ACTIONS(3272), - [anon_sym_set] = ACTIONS(3272), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3272), - [anon_sym_private] = ACTIONS(3272), - [anon_sym_protected] = ACTIONS(3272), - [anon_sym_override] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_any] = ACTIONS(3272), - [anon_sym_number] = ACTIONS(3272), - [anon_sym_boolean] = ACTIONS(3272), - [anon_sym_string] = ACTIONS(3272), - [anon_sym_symbol] = ACTIONS(3272), - [anon_sym_object] = ACTIONS(3272), - [anon_sym_abstract] = ACTIONS(3272), - [anon_sym_interface] = ACTIONS(3272), - [anon_sym_enum] = ACTIONS(3272), + [anon_sym_BQUOTE] = ACTIONS(3344), + [sym_number] = ACTIONS(3344), + [sym_private_property_identifier] = ACTIONS(3344), + [sym_this] = ACTIONS(3344), + [sym_super] = ACTIONS(3344), + [sym_true] = ACTIONS(3344), + [sym_false] = ACTIONS(3344), + [sym_null] = ACTIONS(3344), + [sym_undefined] = ACTIONS(3344), + [anon_sym_AT] = ACTIONS(3344), + [anon_sym_static] = ACTIONS(3344), + [anon_sym_readonly] = ACTIONS(3344), + [anon_sym_get] = ACTIONS(3344), + [anon_sym_set] = ACTIONS(3344), + [anon_sym_declare] = ACTIONS(3344), + [anon_sym_public] = ACTIONS(3344), + [anon_sym_private] = ACTIONS(3344), + [anon_sym_protected] = ACTIONS(3344), + [anon_sym_override] = ACTIONS(3344), + [anon_sym_module] = ACTIONS(3344), + [anon_sym_any] = ACTIONS(3344), + [anon_sym_number] = ACTIONS(3344), + [anon_sym_boolean] = ACTIONS(3344), + [anon_sym_string] = ACTIONS(3344), + [anon_sym_symbol] = ACTIONS(3344), + [anon_sym_object] = ACTIONS(3344), + [anon_sym_abstract] = ACTIONS(3344), + [anon_sym_interface] = ACTIONS(3344), + [anon_sym_enum] = ACTIONS(3344), [sym_html_comment] = ACTIONS(5), }, - [1656] = { - [sym_comment] = STATE(1656), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1510] = { + [sym_comment] = STATE(1510), + [ts_builtin_sym_end] = ACTIONS(3374), + [sym_identifier] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(3368), + [anon_sym_type] = ACTIONS(3368), + [anon_sym_namespace] = ACTIONS(3368), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_typeof] = ACTIONS(3368), + [anon_sym_import] = ACTIONS(3368), + [anon_sym_with] = ACTIONS(3368), + [anon_sym_var] = ACTIONS(3368), + [anon_sym_let] = ACTIONS(3368), + [anon_sym_const] = ACTIONS(3368), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_if] = ACTIONS(3368), + [anon_sym_switch] = ACTIONS(3368), + [anon_sym_for] = ACTIONS(3368), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_await] = ACTIONS(3368), + [anon_sym_while] = ACTIONS(3368), + [anon_sym_do] = ACTIONS(3368), + [anon_sym_try] = ACTIONS(3368), + [anon_sym_break] = ACTIONS(3368), + [anon_sym_continue] = ACTIONS(3368), + [anon_sym_debugger] = ACTIONS(3368), + [anon_sym_return] = ACTIONS(3368), + [anon_sym_throw] = ACTIONS(3368), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_yield] = ACTIONS(3368), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LTtemplate_GT] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3368), + [anon_sym_class] = ACTIONS(3368), + [anon_sym_async] = ACTIONS(3368), + [anon_sym_function] = ACTIONS(3368), + [anon_sym_new] = ACTIONS(3368), + [anon_sym_using] = ACTIONS(3368), + [anon_sym_PLUS] = ACTIONS(3368), + [anon_sym_DASH] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_void] = ACTIONS(3368), + [anon_sym_delete] = ACTIONS(3368), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3368), + [sym_number] = ACTIONS(3368), + [sym_private_property_identifier] = ACTIONS(3368), + [sym_this] = ACTIONS(3368), + [sym_super] = ACTIONS(3368), + [sym_true] = ACTIONS(3368), + [sym_false] = ACTIONS(3368), + [sym_null] = ACTIONS(3368), + [sym_undefined] = ACTIONS(3368), + [anon_sym_AT] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3368), + [anon_sym_readonly] = ACTIONS(3368), + [anon_sym_get] = ACTIONS(3368), + [anon_sym_set] = ACTIONS(3368), + [anon_sym_declare] = ACTIONS(3368), + [anon_sym_public] = ACTIONS(3368), + [anon_sym_private] = ACTIONS(3368), + [anon_sym_protected] = ACTIONS(3368), + [anon_sym_override] = ACTIONS(3368), + [anon_sym_module] = ACTIONS(3368), + [anon_sym_any] = ACTIONS(3368), + [anon_sym_number] = ACTIONS(3368), + [anon_sym_boolean] = ACTIONS(3368), + [anon_sym_string] = ACTIONS(3368), + [anon_sym_symbol] = ACTIONS(3368), + [anon_sym_object] = ACTIONS(3368), + [anon_sym_abstract] = ACTIONS(3368), + [anon_sym_interface] = ACTIONS(3368), + [anon_sym_enum] = ACTIONS(3368), + [sym_html_comment] = ACTIONS(5), + }, + [1511] = { + [sym_comment] = STATE(1511), + [ts_builtin_sym_end] = ACTIONS(3552), + [sym_identifier] = ACTIONS(3342), + [anon_sym_export] = ACTIONS(3342), + [anon_sym_type] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3342), + [anon_sym_RBRACE] = ACTIONS(3342), + [anon_sym_typeof] = ACTIONS(3342), + [anon_sym_import] = ACTIONS(3342), + [anon_sym_with] = ACTIONS(3342), + [anon_sym_var] = ACTIONS(3342), + [anon_sym_let] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_switch] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3342), + [anon_sym_await] = ACTIONS(3342), + [anon_sym_while] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_debugger] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_throw] = ACTIONS(3342), + [anon_sym_SEMI] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3342), + [anon_sym_LTtemplate_GT] = ACTIONS(3342), + [anon_sym_DQUOTE] = ACTIONS(3342), + [anon_sym_SQUOTE] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_async] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3342), + [anon_sym_using] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_LT] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3342), + [anon_sym_void] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3342), + [anon_sym_DASH_DASH] = ACTIONS(3342), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3342), + [sym_number] = ACTIONS(3342), + [sym_private_property_identifier] = ACTIONS(3342), + [sym_this] = ACTIONS(3342), + [sym_super] = ACTIONS(3342), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [sym_null] = ACTIONS(3342), + [sym_undefined] = ACTIONS(3342), + [anon_sym_AT] = ACTIONS(3342), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_readonly] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_declare] = ACTIONS(3342), + [anon_sym_public] = ACTIONS(3342), + [anon_sym_private] = ACTIONS(3342), + [anon_sym_protected] = ACTIONS(3342), + [anon_sym_override] = ACTIONS(3342), + [anon_sym_module] = ACTIONS(3342), + [anon_sym_any] = ACTIONS(3342), + [anon_sym_number] = ACTIONS(3342), + [anon_sym_boolean] = ACTIONS(3342), + [anon_sym_string] = ACTIONS(3342), + [anon_sym_symbol] = ACTIONS(3342), + [anon_sym_object] = ACTIONS(3342), + [anon_sym_abstract] = ACTIONS(3342), + [anon_sym_interface] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), + [sym_html_comment] = ACTIONS(5), + }, + [1512] = { + [sym_comment] = STATE(1512), + [ts_builtin_sym_end] = ACTIONS(3524), + [sym_identifier] = ACTIONS(3308), + [anon_sym_export] = ACTIONS(3308), + [anon_sym_type] = ACTIONS(3308), + [anon_sym_namespace] = ACTIONS(3308), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_typeof] = ACTIONS(3308), + [anon_sym_import] = ACTIONS(3308), + [anon_sym_with] = ACTIONS(3308), + [anon_sym_var] = ACTIONS(3308), + [anon_sym_let] = ACTIONS(3308), + [anon_sym_const] = ACTIONS(3308), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_if] = ACTIONS(3308), + [anon_sym_switch] = ACTIONS(3308), + [anon_sym_for] = ACTIONS(3308), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_await] = ACTIONS(3308), + [anon_sym_while] = ACTIONS(3308), + [anon_sym_do] = ACTIONS(3308), + [anon_sym_try] = ACTIONS(3308), + [anon_sym_break] = ACTIONS(3308), + [anon_sym_continue] = ACTIONS(3308), + [anon_sym_debugger] = ACTIONS(3308), + [anon_sym_return] = ACTIONS(3308), + [anon_sym_throw] = ACTIONS(3308), + [anon_sym_SEMI] = ACTIONS(3308), + [anon_sym_yield] = ACTIONS(3308), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LTtemplate_GT] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [anon_sym_class] = ACTIONS(3308), + [anon_sym_async] = ACTIONS(3308), + [anon_sym_function] = ACTIONS(3308), + [anon_sym_new] = ACTIONS(3308), + [anon_sym_using] = ACTIONS(3308), + [anon_sym_PLUS] = ACTIONS(3308), + [anon_sym_DASH] = ACTIONS(3308), + [anon_sym_SLASH] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(3308), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_void] = ACTIONS(3308), + [anon_sym_delete] = ACTIONS(3308), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3308), + [sym_number] = ACTIONS(3308), + [sym_private_property_identifier] = ACTIONS(3308), + [sym_this] = ACTIONS(3308), + [sym_super] = ACTIONS(3308), + [sym_true] = ACTIONS(3308), + [sym_false] = ACTIONS(3308), + [sym_null] = ACTIONS(3308), + [sym_undefined] = ACTIONS(3308), + [anon_sym_AT] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3308), + [anon_sym_readonly] = ACTIONS(3308), + [anon_sym_get] = ACTIONS(3308), + [anon_sym_set] = ACTIONS(3308), + [anon_sym_declare] = ACTIONS(3308), + [anon_sym_public] = ACTIONS(3308), + [anon_sym_private] = ACTIONS(3308), + [anon_sym_protected] = ACTIONS(3308), + [anon_sym_override] = ACTIONS(3308), + [anon_sym_module] = ACTIONS(3308), + [anon_sym_any] = ACTIONS(3308), + [anon_sym_number] = ACTIONS(3308), + [anon_sym_boolean] = ACTIONS(3308), + [anon_sym_string] = ACTIONS(3308), + [anon_sym_symbol] = ACTIONS(3308), + [anon_sym_object] = ACTIONS(3308), + [anon_sym_abstract] = ACTIONS(3308), + [anon_sym_interface] = ACTIONS(3308), + [anon_sym_enum] = ACTIONS(3308), + [sym_html_comment] = ACTIONS(5), + }, + [1513] = { + [sym_comment] = STATE(1513), + [ts_builtin_sym_end] = ACTIONS(3394), + [sym_identifier] = ACTIONS(3172), + [anon_sym_export] = ACTIONS(3172), + [anon_sym_type] = ACTIONS(3172), + [anon_sym_namespace] = ACTIONS(3172), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3172), + [anon_sym_typeof] = ACTIONS(3172), + [anon_sym_import] = ACTIONS(3172), + [anon_sym_with] = ACTIONS(3172), + [anon_sym_var] = ACTIONS(3172), + [anon_sym_let] = ACTIONS(3172), + [anon_sym_const] = ACTIONS(3172), + [anon_sym_BANG] = ACTIONS(3172), + [anon_sym_if] = ACTIONS(3172), + [anon_sym_switch] = ACTIONS(3172), + [anon_sym_for] = ACTIONS(3172), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_await] = ACTIONS(3172), + [anon_sym_while] = ACTIONS(3172), + [anon_sym_do] = ACTIONS(3172), + [anon_sym_try] = ACTIONS(3172), + [anon_sym_break] = ACTIONS(3172), + [anon_sym_continue] = ACTIONS(3172), + [anon_sym_debugger] = ACTIONS(3172), + [anon_sym_return] = ACTIONS(3172), + [anon_sym_throw] = ACTIONS(3172), + [anon_sym_SEMI] = ACTIONS(3172), + [anon_sym_yield] = ACTIONS(3172), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_LTtemplate_GT] = ACTIONS(3172), + [anon_sym_DQUOTE] = ACTIONS(3172), + [anon_sym_SQUOTE] = ACTIONS(3172), + [anon_sym_class] = ACTIONS(3172), + [anon_sym_async] = ACTIONS(3172), + [anon_sym_function] = ACTIONS(3172), + [anon_sym_new] = ACTIONS(3172), + [anon_sym_using] = ACTIONS(3172), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_void] = ACTIONS(3172), + [anon_sym_delete] = ACTIONS(3172), + [anon_sym_PLUS_PLUS] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3172), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3172), + [sym_number] = ACTIONS(3172), + [sym_private_property_identifier] = ACTIONS(3172), + [sym_this] = ACTIONS(3172), + [sym_super] = ACTIONS(3172), + [sym_true] = ACTIONS(3172), + [sym_false] = ACTIONS(3172), + [sym_null] = ACTIONS(3172), + [sym_undefined] = ACTIONS(3172), + [anon_sym_AT] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3172), + [anon_sym_readonly] = ACTIONS(3172), + [anon_sym_get] = ACTIONS(3172), + [anon_sym_set] = ACTIONS(3172), + [anon_sym_declare] = ACTIONS(3172), + [anon_sym_public] = ACTIONS(3172), + [anon_sym_private] = ACTIONS(3172), + [anon_sym_protected] = ACTIONS(3172), + [anon_sym_override] = ACTIONS(3172), + [anon_sym_module] = ACTIONS(3172), + [anon_sym_any] = ACTIONS(3172), + [anon_sym_number] = ACTIONS(3172), + [anon_sym_boolean] = ACTIONS(3172), + [anon_sym_string] = ACTIONS(3172), + [anon_sym_symbol] = ACTIONS(3172), + [anon_sym_object] = ACTIONS(3172), + [anon_sym_abstract] = ACTIONS(3172), + [anon_sym_interface] = ACTIONS(3172), + [anon_sym_enum] = ACTIONS(3172), [sym_html_comment] = ACTIONS(5), }, - [1657] = { - [sym_comment] = STATE(1657), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [1514] = { + [sym_comment] = STATE(1514), + [ts_builtin_sym_end] = ACTIONS(3492), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3302), + [anon_sym_RBRACE] = ACTIONS(3302), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3302), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3302), + [anon_sym_LTtemplate_GT] = ACTIONS(3302), + [anon_sym_DQUOTE] = ACTIONS(3302), + [anon_sym_SQUOTE] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_using] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_LT] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3302), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3302), + [anon_sym_DASH_DASH] = ACTIONS(3302), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3302), + [sym_number] = ACTIONS(3302), + [sym_private_property_identifier] = ACTIONS(3302), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3302), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_override] = ACTIONS(3302), + [anon_sym_module] = ACTIONS(3302), + [anon_sym_any] = ACTIONS(3302), + [anon_sym_number] = ACTIONS(3302), + [anon_sym_boolean] = ACTIONS(3302), + [anon_sym_string] = ACTIONS(3302), + [anon_sym_symbol] = ACTIONS(3302), + [anon_sym_object] = ACTIONS(3302), + [anon_sym_abstract] = ACTIONS(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), [sym_html_comment] = ACTIONS(5), }, - [1658] = { - [sym_comment] = STATE(1658), - [ts_builtin_sym_end] = ACTIONS(3438), + [1515] = { + [sym_comment] = STATE(1515), + [ts_builtin_sym_end] = ACTIONS(3410), [sym_identifier] = ACTIONS(3252), [anon_sym_export] = ACTIONS(3252), [anon_sym_type] = ACTIONS(3252), @@ -199494,2925 +187455,3492 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3252), [sym_html_comment] = ACTIONS(5), }, - [1659] = { - [sym_comment] = STATE(1659), - [ts_builtin_sym_end] = ACTIONS(3530), - [sym_identifier] = ACTIONS(3200), - [anon_sym_export] = ACTIONS(3200), - [anon_sym_type] = ACTIONS(3200), - [anon_sym_namespace] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3200), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_typeof] = ACTIONS(3200), - [anon_sym_import] = ACTIONS(3200), - [anon_sym_with] = ACTIONS(3200), - [anon_sym_var] = ACTIONS(3200), - [anon_sym_let] = ACTIONS(3200), - [anon_sym_const] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_switch] = ACTIONS(3200), - [anon_sym_for] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3200), - [anon_sym_await] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_do] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_debugger] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3200), - [anon_sym_yield] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(3200), - [anon_sym_LTtemplate_GT] = ACTIONS(3200), - [anon_sym_DQUOTE] = ACTIONS(3200), - [anon_sym_SQUOTE] = ACTIONS(3200), - [anon_sym_class] = ACTIONS(3200), - [anon_sym_async] = ACTIONS(3200), - [anon_sym_function] = ACTIONS(3200), - [anon_sym_new] = ACTIONS(3200), - [anon_sym_using] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_LT] = ACTIONS(3200), - [anon_sym_TILDE] = ACTIONS(3200), - [anon_sym_void] = ACTIONS(3200), - [anon_sym_delete] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3200), - [anon_sym_DASH_DASH] = ACTIONS(3200), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3200), - [sym_number] = ACTIONS(3200), - [sym_private_property_identifier] = ACTIONS(3200), - [sym_this] = ACTIONS(3200), - [sym_super] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_null] = ACTIONS(3200), - [sym_undefined] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3200), - [anon_sym_static] = ACTIONS(3200), - [anon_sym_readonly] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_declare] = ACTIONS(3200), - [anon_sym_public] = ACTIONS(3200), - [anon_sym_private] = ACTIONS(3200), - [anon_sym_protected] = ACTIONS(3200), - [anon_sym_override] = ACTIONS(3200), - [anon_sym_module] = ACTIONS(3200), - [anon_sym_any] = ACTIONS(3200), - [anon_sym_number] = ACTIONS(3200), - [anon_sym_boolean] = ACTIONS(3200), - [anon_sym_string] = ACTIONS(3200), - [anon_sym_symbol] = ACTIONS(3200), - [anon_sym_object] = ACTIONS(3200), - [anon_sym_abstract] = ACTIONS(3200), - [anon_sym_interface] = ACTIONS(3200), - [anon_sym_enum] = ACTIONS(3200), + [1516] = { + [sym_comment] = STATE(1516), + [ts_builtin_sym_end] = ACTIONS(3572), + [sym_identifier] = ACTIONS(3320), + [anon_sym_export] = ACTIONS(3320), + [anon_sym_type] = ACTIONS(3320), + [anon_sym_namespace] = ACTIONS(3320), + [anon_sym_LBRACE] = ACTIONS(3320), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_typeof] = ACTIONS(3320), + [anon_sym_import] = ACTIONS(3320), + [anon_sym_with] = ACTIONS(3320), + [anon_sym_var] = ACTIONS(3320), + [anon_sym_let] = ACTIONS(3320), + [anon_sym_const] = ACTIONS(3320), + [anon_sym_BANG] = ACTIONS(3320), + [anon_sym_if] = ACTIONS(3320), + [anon_sym_switch] = ACTIONS(3320), + [anon_sym_for] = ACTIONS(3320), + [anon_sym_LPAREN] = ACTIONS(3320), + [anon_sym_await] = ACTIONS(3320), + [anon_sym_while] = ACTIONS(3320), + [anon_sym_do] = ACTIONS(3320), + [anon_sym_try] = ACTIONS(3320), + [anon_sym_break] = ACTIONS(3320), + [anon_sym_continue] = ACTIONS(3320), + [anon_sym_debugger] = ACTIONS(3320), + [anon_sym_return] = ACTIONS(3320), + [anon_sym_throw] = ACTIONS(3320), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_yield] = ACTIONS(3320), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_LTtemplate_GT] = ACTIONS(3320), + [anon_sym_DQUOTE] = ACTIONS(3320), + [anon_sym_SQUOTE] = ACTIONS(3320), + [anon_sym_class] = ACTIONS(3320), + [anon_sym_async] = ACTIONS(3320), + [anon_sym_function] = ACTIONS(3320), + [anon_sym_new] = ACTIONS(3320), + [anon_sym_using] = ACTIONS(3320), + [anon_sym_PLUS] = ACTIONS(3320), + [anon_sym_DASH] = ACTIONS(3320), + [anon_sym_SLASH] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_TILDE] = ACTIONS(3320), + [anon_sym_void] = ACTIONS(3320), + [anon_sym_delete] = ACTIONS(3320), + [anon_sym_PLUS_PLUS] = ACTIONS(3320), + [anon_sym_DASH_DASH] = ACTIONS(3320), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3320), + [sym_number] = ACTIONS(3320), + [sym_private_property_identifier] = ACTIONS(3320), + [sym_this] = ACTIONS(3320), + [sym_super] = ACTIONS(3320), + [sym_true] = ACTIONS(3320), + [sym_false] = ACTIONS(3320), + [sym_null] = ACTIONS(3320), + [sym_undefined] = ACTIONS(3320), + [anon_sym_AT] = ACTIONS(3320), + [anon_sym_static] = ACTIONS(3320), + [anon_sym_readonly] = ACTIONS(3320), + [anon_sym_get] = ACTIONS(3320), + [anon_sym_set] = ACTIONS(3320), + [anon_sym_declare] = ACTIONS(3320), + [anon_sym_public] = ACTIONS(3320), + [anon_sym_private] = ACTIONS(3320), + [anon_sym_protected] = ACTIONS(3320), + [anon_sym_override] = ACTIONS(3320), + [anon_sym_module] = ACTIONS(3320), + [anon_sym_any] = ACTIONS(3320), + [anon_sym_number] = ACTIONS(3320), + [anon_sym_boolean] = ACTIONS(3320), + [anon_sym_string] = ACTIONS(3320), + [anon_sym_symbol] = ACTIONS(3320), + [anon_sym_object] = ACTIONS(3320), + [anon_sym_abstract] = ACTIONS(3320), + [anon_sym_interface] = ACTIONS(3320), + [anon_sym_enum] = ACTIONS(3320), [sym_html_comment] = ACTIONS(5), }, - [1660] = { - [sym_comment] = STATE(1660), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1517] = { + [sym_comment] = STATE(1517), + [ts_builtin_sym_end] = ACTIONS(3490), + [sym_identifier] = ACTIONS(3298), + [anon_sym_export] = ACTIONS(3298), + [anon_sym_type] = ACTIONS(3298), + [anon_sym_namespace] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3298), + [anon_sym_RBRACE] = ACTIONS(3298), + [anon_sym_typeof] = ACTIONS(3298), + [anon_sym_import] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3298), + [anon_sym_var] = ACTIONS(3298), + [anon_sym_let] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_switch] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3298), + [anon_sym_await] = ACTIONS(3298), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_do] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3298), + [anon_sym_break] = ACTIONS(3298), + [anon_sym_continue] = ACTIONS(3298), + [anon_sym_debugger] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3298), + [anon_sym_throw] = ACTIONS(3298), + [anon_sym_SEMI] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3298), + [anon_sym_LTtemplate_GT] = ACTIONS(3298), + [anon_sym_DQUOTE] = ACTIONS(3298), + [anon_sym_SQUOTE] = ACTIONS(3298), + [anon_sym_class] = ACTIONS(3298), + [anon_sym_async] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3298), + [anon_sym_using] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_LT] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3298), + [anon_sym_void] = ACTIONS(3298), + [anon_sym_delete] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3298), + [anon_sym_DASH_DASH] = ACTIONS(3298), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3298), + [sym_number] = ACTIONS(3298), + [sym_private_property_identifier] = ACTIONS(3298), + [sym_this] = ACTIONS(3298), + [sym_super] = ACTIONS(3298), + [sym_true] = ACTIONS(3298), + [sym_false] = ACTIONS(3298), + [sym_null] = ACTIONS(3298), + [sym_undefined] = ACTIONS(3298), + [anon_sym_AT] = ACTIONS(3298), + [anon_sym_static] = ACTIONS(3298), + [anon_sym_readonly] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3298), + [anon_sym_set] = ACTIONS(3298), + [anon_sym_declare] = ACTIONS(3298), + [anon_sym_public] = ACTIONS(3298), + [anon_sym_private] = ACTIONS(3298), + [anon_sym_protected] = ACTIONS(3298), + [anon_sym_override] = ACTIONS(3298), + [anon_sym_module] = ACTIONS(3298), + [anon_sym_any] = ACTIONS(3298), + [anon_sym_number] = ACTIONS(3298), + [anon_sym_boolean] = ACTIONS(3298), + [anon_sym_string] = ACTIONS(3298), + [anon_sym_symbol] = ACTIONS(3298), + [anon_sym_object] = ACTIONS(3298), + [anon_sym_abstract] = ACTIONS(3298), + [anon_sym_interface] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), + [sym_html_comment] = ACTIONS(5), + }, + [1518] = { + [sym_comment] = STATE(1518), + [ts_builtin_sym_end] = ACTIONS(3376), + [sym_identifier] = ACTIONS(3366), + [anon_sym_export] = ACTIONS(3366), + [anon_sym_type] = ACTIONS(3366), + [anon_sym_namespace] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3366), + [anon_sym_RBRACE] = ACTIONS(3366), + [anon_sym_typeof] = ACTIONS(3366), + [anon_sym_import] = ACTIONS(3366), + [anon_sym_with] = ACTIONS(3366), + [anon_sym_var] = ACTIONS(3366), + [anon_sym_let] = ACTIONS(3366), + [anon_sym_const] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_switch] = ACTIONS(3366), + [anon_sym_for] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3366), + [anon_sym_await] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_do] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_debugger] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3366), + [anon_sym_yield] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3366), + [anon_sym_LTtemplate_GT] = ACTIONS(3366), + [anon_sym_DQUOTE] = ACTIONS(3366), + [anon_sym_SQUOTE] = ACTIONS(3366), + [anon_sym_class] = ACTIONS(3366), + [anon_sym_async] = ACTIONS(3366), + [anon_sym_function] = ACTIONS(3366), + [anon_sym_new] = ACTIONS(3366), + [anon_sym_using] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_LT] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3366), + [anon_sym_void] = ACTIONS(3366), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3366), + [anon_sym_DASH_DASH] = ACTIONS(3366), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3366), + [sym_number] = ACTIONS(3366), + [sym_private_property_identifier] = ACTIONS(3366), + [sym_this] = ACTIONS(3366), + [sym_super] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_null] = ACTIONS(3366), + [sym_undefined] = ACTIONS(3366), + [anon_sym_AT] = ACTIONS(3366), + [anon_sym_static] = ACTIONS(3366), + [anon_sym_readonly] = ACTIONS(3366), + [anon_sym_get] = ACTIONS(3366), + [anon_sym_set] = ACTIONS(3366), + [anon_sym_declare] = ACTIONS(3366), + [anon_sym_public] = ACTIONS(3366), + [anon_sym_private] = ACTIONS(3366), + [anon_sym_protected] = ACTIONS(3366), + [anon_sym_override] = ACTIONS(3366), + [anon_sym_module] = ACTIONS(3366), + [anon_sym_any] = ACTIONS(3366), + [anon_sym_number] = ACTIONS(3366), + [anon_sym_boolean] = ACTIONS(3366), + [anon_sym_string] = ACTIONS(3366), + [anon_sym_symbol] = ACTIONS(3366), + [anon_sym_object] = ACTIONS(3366), + [anon_sym_abstract] = ACTIONS(3366), + [anon_sym_interface] = ACTIONS(3366), + [anon_sym_enum] = ACTIONS(3366), [sym_html_comment] = ACTIONS(5), }, - [1661] = { - [sym_comment] = STATE(1661), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1519] = { + [sym_comment] = STATE(1519), + [ts_builtin_sym_end] = ACTIONS(3550), + [sym_identifier] = ACTIONS(3340), + [anon_sym_export] = ACTIONS(3340), + [anon_sym_type] = ACTIONS(3340), + [anon_sym_namespace] = ACTIONS(3340), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_typeof] = ACTIONS(3340), + [anon_sym_import] = ACTIONS(3340), + [anon_sym_with] = ACTIONS(3340), + [anon_sym_var] = ACTIONS(3340), + [anon_sym_let] = ACTIONS(3340), + [anon_sym_const] = ACTIONS(3340), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_if] = ACTIONS(3340), + [anon_sym_switch] = ACTIONS(3340), + [anon_sym_for] = ACTIONS(3340), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_await] = ACTIONS(3340), + [anon_sym_while] = ACTIONS(3340), + [anon_sym_do] = ACTIONS(3340), + [anon_sym_try] = ACTIONS(3340), + [anon_sym_break] = ACTIONS(3340), + [anon_sym_continue] = ACTIONS(3340), + [anon_sym_debugger] = ACTIONS(3340), + [anon_sym_return] = ACTIONS(3340), + [anon_sym_throw] = ACTIONS(3340), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_yield] = ACTIONS(3340), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LTtemplate_GT] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3340), + [anon_sym_class] = ACTIONS(3340), + [anon_sym_async] = ACTIONS(3340), + [anon_sym_function] = ACTIONS(3340), + [anon_sym_new] = ACTIONS(3340), + [anon_sym_using] = ACTIONS(3340), + [anon_sym_PLUS] = ACTIONS(3340), + [anon_sym_DASH] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_void] = ACTIONS(3340), + [anon_sym_delete] = ACTIONS(3340), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3340), + [sym_number] = ACTIONS(3340), + [sym_private_property_identifier] = ACTIONS(3340), + [sym_this] = ACTIONS(3340), + [sym_super] = ACTIONS(3340), + [sym_true] = ACTIONS(3340), + [sym_false] = ACTIONS(3340), + [sym_null] = ACTIONS(3340), + [sym_undefined] = ACTIONS(3340), + [anon_sym_AT] = ACTIONS(3340), + [anon_sym_static] = ACTIONS(3340), + [anon_sym_readonly] = ACTIONS(3340), + [anon_sym_get] = ACTIONS(3340), + [anon_sym_set] = ACTIONS(3340), + [anon_sym_declare] = ACTIONS(3340), + [anon_sym_public] = ACTIONS(3340), + [anon_sym_private] = ACTIONS(3340), + [anon_sym_protected] = ACTIONS(3340), + [anon_sym_override] = ACTIONS(3340), + [anon_sym_module] = ACTIONS(3340), + [anon_sym_any] = ACTIONS(3340), + [anon_sym_number] = ACTIONS(3340), + [anon_sym_boolean] = ACTIONS(3340), + [anon_sym_string] = ACTIONS(3340), + [anon_sym_symbol] = ACTIONS(3340), + [anon_sym_object] = ACTIONS(3340), + [anon_sym_abstract] = ACTIONS(3340), + [anon_sym_interface] = ACTIONS(3340), + [anon_sym_enum] = ACTIONS(3340), [sym_html_comment] = ACTIONS(5), }, - [1662] = { - [sym_comment] = STATE(1662), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1520] = { + [sym_comment] = STATE(1520), + [ts_builtin_sym_end] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2175), + [anon_sym_RBRACE] = ACTIONS(2175), + [anon_sym_typeof] = ACTIONS(2175), + [anon_sym_import] = ACTIONS(2175), + [anon_sym_with] = ACTIONS(2175), + [anon_sym_var] = ACTIONS(2175), + [anon_sym_let] = ACTIONS(2175), + [anon_sym_const] = ACTIONS(2175), + [anon_sym_BANG] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2175), + [anon_sym_await] = ACTIONS(2175), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_break] = ACTIONS(2175), + [anon_sym_continue] = ACTIONS(2175), + [anon_sym_debugger] = ACTIONS(2175), + [anon_sym_return] = ACTIONS(2175), + [anon_sym_throw] = ACTIONS(2175), + [anon_sym_SEMI] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2175), + [anon_sym_LTtemplate_GT] = ACTIONS(2175), + [anon_sym_DQUOTE] = ACTIONS(2175), + [anon_sym_SQUOTE] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_function] = ACTIONS(2175), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_using] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_LT] = ACTIONS(2175), + [anon_sym_TILDE] = ACTIONS(2175), + [anon_sym_void] = ACTIONS(2175), + [anon_sym_delete] = ACTIONS(2175), + [anon_sym_PLUS_PLUS] = ACTIONS(2175), + [anon_sym_DASH_DASH] = ACTIONS(2175), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2175), + [sym_number] = ACTIONS(2175), + [sym_private_property_identifier] = ACTIONS(2175), + [sym_this] = ACTIONS(2175), + [sym_super] = ACTIONS(2175), + [sym_true] = ACTIONS(2175), + [sym_false] = ACTIONS(2175), + [sym_null] = ACTIONS(2175), + [sym_undefined] = ACTIONS(2175), + [anon_sym_AT] = ACTIONS(2175), + [anon_sym_static] = ACTIONS(2175), + [anon_sym_readonly] = ACTIONS(2175), + [anon_sym_get] = ACTIONS(2175), + [anon_sym_set] = ACTIONS(2175), + [anon_sym_declare] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_override] = ACTIONS(2175), + [anon_sym_module] = ACTIONS(2175), + [anon_sym_any] = ACTIONS(2175), + [anon_sym_number] = ACTIONS(2175), + [anon_sym_boolean] = ACTIONS(2175), + [anon_sym_string] = ACTIONS(2175), + [anon_sym_symbol] = ACTIONS(2175), + [anon_sym_object] = ACTIONS(2175), + [anon_sym_abstract] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [sym_html_comment] = ACTIONS(5), + }, + [1521] = { + [sym_comment] = STATE(1521), + [ts_builtin_sym_end] = ACTIONS(3386), + [sym_identifier] = ACTIONS(3358), + [anon_sym_export] = ACTIONS(3358), + [anon_sym_type] = ACTIONS(3358), + [anon_sym_namespace] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3358), + [anon_sym_RBRACE] = ACTIONS(3358), + [anon_sym_typeof] = ACTIONS(3358), + [anon_sym_import] = ACTIONS(3358), + [anon_sym_with] = ACTIONS(3358), + [anon_sym_var] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3358), + [anon_sym_const] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_switch] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_LPAREN] = ACTIONS(3358), + [anon_sym_await] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_debugger] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3358), + [anon_sym_yield] = ACTIONS(3358), + [anon_sym_LBRACK] = ACTIONS(3358), + [anon_sym_LTtemplate_GT] = ACTIONS(3358), + [anon_sym_DQUOTE] = ACTIONS(3358), + [anon_sym_SQUOTE] = ACTIONS(3358), + [anon_sym_class] = ACTIONS(3358), + [anon_sym_async] = ACTIONS(3358), + [anon_sym_function] = ACTIONS(3358), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_using] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_LT] = ACTIONS(3358), + [anon_sym_TILDE] = ACTIONS(3358), + [anon_sym_void] = ACTIONS(3358), + [anon_sym_delete] = ACTIONS(3358), + [anon_sym_PLUS_PLUS] = ACTIONS(3358), + [anon_sym_DASH_DASH] = ACTIONS(3358), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3358), + [sym_number] = ACTIONS(3358), + [sym_private_property_identifier] = ACTIONS(3358), + [sym_this] = ACTIONS(3358), + [sym_super] = ACTIONS(3358), + [sym_true] = ACTIONS(3358), + [sym_false] = ACTIONS(3358), + [sym_null] = ACTIONS(3358), + [sym_undefined] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3358), + [anon_sym_static] = ACTIONS(3358), + [anon_sym_readonly] = ACTIONS(3358), + [anon_sym_get] = ACTIONS(3358), + [anon_sym_set] = ACTIONS(3358), + [anon_sym_declare] = ACTIONS(3358), + [anon_sym_public] = ACTIONS(3358), + [anon_sym_private] = ACTIONS(3358), + [anon_sym_protected] = ACTIONS(3358), + [anon_sym_override] = ACTIONS(3358), + [anon_sym_module] = ACTIONS(3358), + [anon_sym_any] = ACTIONS(3358), + [anon_sym_number] = ACTIONS(3358), + [anon_sym_boolean] = ACTIONS(3358), + [anon_sym_string] = ACTIONS(3358), + [anon_sym_symbol] = ACTIONS(3358), + [anon_sym_object] = ACTIONS(3358), + [anon_sym_abstract] = ACTIONS(3358), + [anon_sym_interface] = ACTIONS(3358), + [anon_sym_enum] = ACTIONS(3358), [sym_html_comment] = ACTIONS(5), }, - [1663] = { - [sym_comment] = STATE(1663), - [ts_builtin_sym_end] = ACTIONS(3528), - [sym_identifier] = ACTIONS(3202), - [anon_sym_export] = ACTIONS(3202), - [anon_sym_type] = ACTIONS(3202), - [anon_sym_namespace] = ACTIONS(3202), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_typeof] = ACTIONS(3202), - [anon_sym_import] = ACTIONS(3202), - [anon_sym_with] = ACTIONS(3202), - [anon_sym_var] = ACTIONS(3202), - [anon_sym_let] = ACTIONS(3202), - [anon_sym_const] = ACTIONS(3202), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_if] = ACTIONS(3202), - [anon_sym_switch] = ACTIONS(3202), - [anon_sym_for] = ACTIONS(3202), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_await] = ACTIONS(3202), - [anon_sym_while] = ACTIONS(3202), - [anon_sym_do] = ACTIONS(3202), - [anon_sym_try] = ACTIONS(3202), - [anon_sym_break] = ACTIONS(3202), - [anon_sym_continue] = ACTIONS(3202), - [anon_sym_debugger] = ACTIONS(3202), - [anon_sym_return] = ACTIONS(3202), - [anon_sym_throw] = ACTIONS(3202), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_yield] = ACTIONS(3202), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_LTtemplate_GT] = ACTIONS(3202), - [anon_sym_DQUOTE] = ACTIONS(3202), - [anon_sym_SQUOTE] = ACTIONS(3202), - [anon_sym_class] = ACTIONS(3202), - [anon_sym_async] = ACTIONS(3202), - [anon_sym_function] = ACTIONS(3202), - [anon_sym_new] = ACTIONS(3202), - [anon_sym_using] = ACTIONS(3202), - [anon_sym_PLUS] = ACTIONS(3202), - [anon_sym_DASH] = ACTIONS(3202), - [anon_sym_SLASH] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3202), - [anon_sym_TILDE] = ACTIONS(3202), - [anon_sym_void] = ACTIONS(3202), - [anon_sym_delete] = ACTIONS(3202), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), + [1522] = { + [sym_comment] = STATE(1522), + [ts_builtin_sym_end] = ACTIONS(3466), + [sym_identifier] = ACTIONS(3144), + [anon_sym_export] = ACTIONS(3144), + [anon_sym_type] = ACTIONS(3144), + [anon_sym_namespace] = ACTIONS(3144), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_RBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3144), + [anon_sym_import] = ACTIONS(3144), + [anon_sym_with] = ACTIONS(3144), + [anon_sym_var] = ACTIONS(3144), + [anon_sym_let] = ACTIONS(3144), + [anon_sym_const] = ACTIONS(3144), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_if] = ACTIONS(3144), + [anon_sym_switch] = ACTIONS(3144), + [anon_sym_for] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_await] = ACTIONS(3144), + [anon_sym_while] = ACTIONS(3144), + [anon_sym_do] = ACTIONS(3144), + [anon_sym_try] = ACTIONS(3144), + [anon_sym_break] = ACTIONS(3144), + [anon_sym_continue] = ACTIONS(3144), + [anon_sym_debugger] = ACTIONS(3144), + [anon_sym_return] = ACTIONS(3144), + [anon_sym_throw] = ACTIONS(3144), + [anon_sym_SEMI] = ACTIONS(3144), + [anon_sym_yield] = ACTIONS(3144), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_LTtemplate_GT] = ACTIONS(3144), + [anon_sym_DQUOTE] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3144), + [anon_sym_class] = ACTIONS(3144), + [anon_sym_async] = ACTIONS(3144), + [anon_sym_function] = ACTIONS(3144), + [anon_sym_new] = ACTIONS(3144), + [anon_sym_using] = ACTIONS(3144), + [anon_sym_PLUS] = ACTIONS(3144), + [anon_sym_DASH] = ACTIONS(3144), + [anon_sym_SLASH] = ACTIONS(3144), + [anon_sym_LT] = ACTIONS(3144), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_void] = ACTIONS(3144), + [anon_sym_delete] = ACTIONS(3144), + [anon_sym_PLUS_PLUS] = ACTIONS(3144), + [anon_sym_DASH_DASH] = ACTIONS(3144), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3202), - [sym_number] = ACTIONS(3202), - [sym_private_property_identifier] = ACTIONS(3202), - [sym_this] = ACTIONS(3202), - [sym_super] = ACTIONS(3202), - [sym_true] = ACTIONS(3202), - [sym_false] = ACTIONS(3202), - [sym_null] = ACTIONS(3202), - [sym_undefined] = ACTIONS(3202), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3202), - [anon_sym_readonly] = ACTIONS(3202), - [anon_sym_get] = ACTIONS(3202), - [anon_sym_set] = ACTIONS(3202), - [anon_sym_declare] = ACTIONS(3202), - [anon_sym_public] = ACTIONS(3202), - [anon_sym_private] = ACTIONS(3202), - [anon_sym_protected] = ACTIONS(3202), - [anon_sym_override] = ACTIONS(3202), - [anon_sym_module] = ACTIONS(3202), - [anon_sym_any] = ACTIONS(3202), - [anon_sym_number] = ACTIONS(3202), - [anon_sym_boolean] = ACTIONS(3202), - [anon_sym_string] = ACTIONS(3202), - [anon_sym_symbol] = ACTIONS(3202), - [anon_sym_object] = ACTIONS(3202), - [anon_sym_abstract] = ACTIONS(3202), - [anon_sym_interface] = ACTIONS(3202), - [anon_sym_enum] = ACTIONS(3202), + [anon_sym_BQUOTE] = ACTIONS(3144), + [sym_number] = ACTIONS(3144), + [sym_private_property_identifier] = ACTIONS(3144), + [sym_this] = ACTIONS(3144), + [sym_super] = ACTIONS(3144), + [sym_true] = ACTIONS(3144), + [sym_false] = ACTIONS(3144), + [sym_null] = ACTIONS(3144), + [sym_undefined] = ACTIONS(3144), + [anon_sym_AT] = ACTIONS(3144), + [anon_sym_static] = ACTIONS(3144), + [anon_sym_readonly] = ACTIONS(3144), + [anon_sym_get] = ACTIONS(3144), + [anon_sym_set] = ACTIONS(3144), + [anon_sym_declare] = ACTIONS(3144), + [anon_sym_public] = ACTIONS(3144), + [anon_sym_private] = ACTIONS(3144), + [anon_sym_protected] = ACTIONS(3144), + [anon_sym_override] = ACTIONS(3144), + [anon_sym_module] = ACTIONS(3144), + [anon_sym_any] = ACTIONS(3144), + [anon_sym_number] = ACTIONS(3144), + [anon_sym_boolean] = ACTIONS(3144), + [anon_sym_string] = ACTIONS(3144), + [anon_sym_symbol] = ACTIONS(3144), + [anon_sym_object] = ACTIONS(3144), + [anon_sym_abstract] = ACTIONS(3144), + [anon_sym_interface] = ACTIONS(3144), + [anon_sym_enum] = ACTIONS(3144), [sym_html_comment] = ACTIONS(5), }, - [1664] = { - [sym_comment] = STATE(1664), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1523] = { + [sym_comment] = STATE(1523), + [ts_builtin_sym_end] = ACTIONS(3546), + [sym_identifier] = ACTIONS(3338), + [anon_sym_export] = ACTIONS(3338), + [anon_sym_type] = ACTIONS(3338), + [anon_sym_namespace] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3338), + [anon_sym_RBRACE] = ACTIONS(3338), + [anon_sym_typeof] = ACTIONS(3338), + [anon_sym_import] = ACTIONS(3338), + [anon_sym_with] = ACTIONS(3338), + [anon_sym_var] = ACTIONS(3338), + [anon_sym_let] = ACTIONS(3338), + [anon_sym_const] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_switch] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3338), + [anon_sym_await] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_do] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_debugger] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3338), + [anon_sym_LTtemplate_GT] = ACTIONS(3338), + [anon_sym_DQUOTE] = ACTIONS(3338), + [anon_sym_SQUOTE] = ACTIONS(3338), + [anon_sym_class] = ACTIONS(3338), + [anon_sym_async] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3338), + [anon_sym_using] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_LT] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3338), + [anon_sym_void] = ACTIONS(3338), + [anon_sym_delete] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3338), + [anon_sym_DASH_DASH] = ACTIONS(3338), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3338), + [sym_number] = ACTIONS(3338), + [sym_private_property_identifier] = ACTIONS(3338), + [sym_this] = ACTIONS(3338), + [sym_super] = ACTIONS(3338), + [sym_true] = ACTIONS(3338), + [sym_false] = ACTIONS(3338), + [sym_null] = ACTIONS(3338), + [sym_undefined] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3338), + [anon_sym_static] = ACTIONS(3338), + [anon_sym_readonly] = ACTIONS(3338), + [anon_sym_get] = ACTIONS(3338), + [anon_sym_set] = ACTIONS(3338), + [anon_sym_declare] = ACTIONS(3338), + [anon_sym_public] = ACTIONS(3338), + [anon_sym_private] = ACTIONS(3338), + [anon_sym_protected] = ACTIONS(3338), + [anon_sym_override] = ACTIONS(3338), + [anon_sym_module] = ACTIONS(3338), + [anon_sym_any] = ACTIONS(3338), + [anon_sym_number] = ACTIONS(3338), + [anon_sym_boolean] = ACTIONS(3338), + [anon_sym_string] = ACTIONS(3338), + [anon_sym_symbol] = ACTIONS(3338), + [anon_sym_object] = ACTIONS(3338), + [anon_sym_abstract] = ACTIONS(3338), + [anon_sym_interface] = ACTIONS(3338), + [anon_sym_enum] = ACTIONS(3338), + [sym_html_comment] = ACTIONS(5), + }, + [1524] = { + [sym_comment] = STATE(1524), + [ts_builtin_sym_end] = ACTIONS(3488), + [sym_identifier] = ACTIONS(3296), + [anon_sym_export] = ACTIONS(3296), + [anon_sym_type] = ACTIONS(3296), + [anon_sym_namespace] = ACTIONS(3296), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_typeof] = ACTIONS(3296), + [anon_sym_import] = ACTIONS(3296), + [anon_sym_with] = ACTIONS(3296), + [anon_sym_var] = ACTIONS(3296), + [anon_sym_let] = ACTIONS(3296), + [anon_sym_const] = ACTIONS(3296), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_if] = ACTIONS(3296), + [anon_sym_switch] = ACTIONS(3296), + [anon_sym_for] = ACTIONS(3296), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_await] = ACTIONS(3296), + [anon_sym_while] = ACTIONS(3296), + [anon_sym_do] = ACTIONS(3296), + [anon_sym_try] = ACTIONS(3296), + [anon_sym_break] = ACTIONS(3296), + [anon_sym_continue] = ACTIONS(3296), + [anon_sym_debugger] = ACTIONS(3296), + [anon_sym_return] = ACTIONS(3296), + [anon_sym_throw] = ACTIONS(3296), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_yield] = ACTIONS(3296), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LTtemplate_GT] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [anon_sym_class] = ACTIONS(3296), + [anon_sym_async] = ACTIONS(3296), + [anon_sym_function] = ACTIONS(3296), + [anon_sym_new] = ACTIONS(3296), + [anon_sym_using] = ACTIONS(3296), + [anon_sym_PLUS] = ACTIONS(3296), + [anon_sym_DASH] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_void] = ACTIONS(3296), + [anon_sym_delete] = ACTIONS(3296), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DASH_DASH] = ACTIONS(3296), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3296), + [sym_number] = ACTIONS(3296), + [sym_private_property_identifier] = ACTIONS(3296), + [sym_this] = ACTIONS(3296), + [sym_super] = ACTIONS(3296), + [sym_true] = ACTIONS(3296), + [sym_false] = ACTIONS(3296), + [sym_null] = ACTIONS(3296), + [sym_undefined] = ACTIONS(3296), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_static] = ACTIONS(3296), + [anon_sym_readonly] = ACTIONS(3296), + [anon_sym_get] = ACTIONS(3296), + [anon_sym_set] = ACTIONS(3296), + [anon_sym_declare] = ACTIONS(3296), + [anon_sym_public] = ACTIONS(3296), + [anon_sym_private] = ACTIONS(3296), + [anon_sym_protected] = ACTIONS(3296), + [anon_sym_override] = ACTIONS(3296), + [anon_sym_module] = ACTIONS(3296), + [anon_sym_any] = ACTIONS(3296), + [anon_sym_number] = ACTIONS(3296), + [anon_sym_boolean] = ACTIONS(3296), + [anon_sym_string] = ACTIONS(3296), + [anon_sym_symbol] = ACTIONS(3296), + [anon_sym_object] = ACTIONS(3296), + [anon_sym_abstract] = ACTIONS(3296), + [anon_sym_interface] = ACTIONS(3296), + [anon_sym_enum] = ACTIONS(3296), + [sym_html_comment] = ACTIONS(5), + }, + [1525] = { + [sym_comment] = STATE(1525), + [ts_builtin_sym_end] = ACTIONS(3544), + [sym_identifier] = ACTIONS(3142), + [anon_sym_export] = ACTIONS(3142), + [anon_sym_type] = ACTIONS(3142), + [anon_sym_namespace] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3142), + [anon_sym_RBRACE] = ACTIONS(3142), + [anon_sym_typeof] = ACTIONS(3142), + [anon_sym_import] = ACTIONS(3142), + [anon_sym_with] = ACTIONS(3142), + [anon_sym_var] = ACTIONS(3142), + [anon_sym_let] = ACTIONS(3142), + [anon_sym_const] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3142), + [anon_sym_switch] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3142), + [anon_sym_await] = ACTIONS(3142), + [anon_sym_while] = ACTIONS(3142), + [anon_sym_do] = ACTIONS(3142), + [anon_sym_try] = ACTIONS(3142), + [anon_sym_break] = ACTIONS(3142), + [anon_sym_continue] = ACTIONS(3142), + [anon_sym_debugger] = ACTIONS(3142), + [anon_sym_return] = ACTIONS(3142), + [anon_sym_throw] = ACTIONS(3142), + [anon_sym_SEMI] = ACTIONS(3142), + [anon_sym_yield] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(3142), + [anon_sym_LTtemplate_GT] = ACTIONS(3142), + [anon_sym_DQUOTE] = ACTIONS(3142), + [anon_sym_SQUOTE] = ACTIONS(3142), + [anon_sym_class] = ACTIONS(3142), + [anon_sym_async] = ACTIONS(3142), + [anon_sym_function] = ACTIONS(3142), + [anon_sym_new] = ACTIONS(3142), + [anon_sym_using] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_SLASH] = ACTIONS(3142), + [anon_sym_LT] = ACTIONS(3142), + [anon_sym_TILDE] = ACTIONS(3142), + [anon_sym_void] = ACTIONS(3142), + [anon_sym_delete] = ACTIONS(3142), + [anon_sym_PLUS_PLUS] = ACTIONS(3142), + [anon_sym_DASH_DASH] = ACTIONS(3142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3142), + [sym_number] = ACTIONS(3142), + [sym_private_property_identifier] = ACTIONS(3142), + [sym_this] = ACTIONS(3142), + [sym_super] = ACTIONS(3142), + [sym_true] = ACTIONS(3142), + [sym_false] = ACTIONS(3142), + [sym_null] = ACTIONS(3142), + [sym_undefined] = ACTIONS(3142), + [anon_sym_AT] = ACTIONS(3142), + [anon_sym_static] = ACTIONS(3142), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3142), + [anon_sym_set] = ACTIONS(3142), + [anon_sym_declare] = ACTIONS(3142), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [anon_sym_override] = ACTIONS(3142), + [anon_sym_module] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3142), + [anon_sym_number] = ACTIONS(3142), + [anon_sym_boolean] = ACTIONS(3142), + [anon_sym_string] = ACTIONS(3142), + [anon_sym_symbol] = ACTIONS(3142), + [anon_sym_object] = ACTIONS(3142), + [anon_sym_abstract] = ACTIONS(3142), + [anon_sym_interface] = ACTIONS(3142), + [anon_sym_enum] = ACTIONS(3142), [sym_html_comment] = ACTIONS(5), }, - [1665] = { - [sym_comment] = STATE(1665), - [ts_builtin_sym_end] = ACTIONS(3526), - [sym_identifier] = ACTIONS(3204), - [anon_sym_export] = ACTIONS(3204), - [anon_sym_type] = ACTIONS(3204), - [anon_sym_namespace] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3204), - [anon_sym_RBRACE] = ACTIONS(3204), - [anon_sym_typeof] = ACTIONS(3204), - [anon_sym_import] = ACTIONS(3204), - [anon_sym_with] = ACTIONS(3204), - [anon_sym_var] = ACTIONS(3204), - [anon_sym_let] = ACTIONS(3204), - [anon_sym_const] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_switch] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(3204), - [anon_sym_LPAREN] = ACTIONS(3204), - [anon_sym_await] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_do] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_debugger] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3204), - [anon_sym_yield] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3204), - [anon_sym_LTtemplate_GT] = ACTIONS(3204), - [anon_sym_DQUOTE] = ACTIONS(3204), - [anon_sym_SQUOTE] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3204), - [anon_sym_async] = ACTIONS(3204), - [anon_sym_function] = ACTIONS(3204), - [anon_sym_new] = ACTIONS(3204), - [anon_sym_using] = ACTIONS(3204), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_LT] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3204), - [anon_sym_void] = ACTIONS(3204), - [anon_sym_delete] = ACTIONS(3204), - [anon_sym_PLUS_PLUS] = ACTIONS(3204), - [anon_sym_DASH_DASH] = ACTIONS(3204), + [1526] = { + [sym_comment] = STATE(1526), + [ts_builtin_sym_end] = ACTIONS(3514), + [sym_identifier] = ACTIONS(3346), + [anon_sym_export] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3346), + [anon_sym_namespace] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3346), + [anon_sym_RBRACE] = ACTIONS(3346), + [anon_sym_typeof] = ACTIONS(3346), + [anon_sym_import] = ACTIONS(3346), + [anon_sym_with] = ACTIONS(3346), + [anon_sym_var] = ACTIONS(3346), + [anon_sym_let] = ACTIONS(3346), + [anon_sym_const] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_switch] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3346), + [anon_sym_await] = ACTIONS(3346), + [anon_sym_while] = ACTIONS(3346), + [anon_sym_do] = ACTIONS(3346), + [anon_sym_try] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_debugger] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_throw] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3346), + [anon_sym_LTtemplate_GT] = ACTIONS(3346), + [anon_sym_DQUOTE] = ACTIONS(3346), + [anon_sym_SQUOTE] = ACTIONS(3346), + [anon_sym_class] = ACTIONS(3346), + [anon_sym_async] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3346), + [anon_sym_using] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_LT] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3346), + [anon_sym_void] = ACTIONS(3346), + [anon_sym_delete] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3346), + [anon_sym_DASH_DASH] = ACTIONS(3346), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3204), - [sym_number] = ACTIONS(3204), - [sym_private_property_identifier] = ACTIONS(3204), - [sym_this] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_true] = ACTIONS(3204), - [sym_false] = ACTIONS(3204), - [sym_null] = ACTIONS(3204), - [sym_undefined] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3204), - [anon_sym_static] = ACTIONS(3204), - [anon_sym_readonly] = ACTIONS(3204), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_declare] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_override] = ACTIONS(3204), - [anon_sym_module] = ACTIONS(3204), - [anon_sym_any] = ACTIONS(3204), - [anon_sym_number] = ACTIONS(3204), - [anon_sym_boolean] = ACTIONS(3204), - [anon_sym_string] = ACTIONS(3204), - [anon_sym_symbol] = ACTIONS(3204), - [anon_sym_object] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_interface] = ACTIONS(3204), - [anon_sym_enum] = ACTIONS(3204), + [anon_sym_BQUOTE] = ACTIONS(3346), + [sym_number] = ACTIONS(3346), + [sym_private_property_identifier] = ACTIONS(3346), + [sym_this] = ACTIONS(3346), + [sym_super] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_null] = ACTIONS(3346), + [sym_undefined] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3346), + [anon_sym_static] = ACTIONS(3346), + [anon_sym_readonly] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_declare] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_override] = ACTIONS(3346), + [anon_sym_module] = ACTIONS(3346), + [anon_sym_any] = ACTIONS(3346), + [anon_sym_number] = ACTIONS(3346), + [anon_sym_boolean] = ACTIONS(3346), + [anon_sym_string] = ACTIONS(3346), + [anon_sym_symbol] = ACTIONS(3346), + [anon_sym_object] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_interface] = ACTIONS(3346), + [anon_sym_enum] = ACTIONS(3346), [sym_html_comment] = ACTIONS(5), }, - [1666] = { - [sym_comment] = STATE(1666), - [ts_builtin_sym_end] = ACTIONS(3524), - [sym_identifier] = ACTIONS(3206), - [anon_sym_export] = ACTIONS(3206), - [anon_sym_type] = ACTIONS(3206), - [anon_sym_namespace] = ACTIONS(3206), - [anon_sym_LBRACE] = ACTIONS(3206), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_typeof] = ACTIONS(3206), - [anon_sym_import] = ACTIONS(3206), - [anon_sym_with] = ACTIONS(3206), - [anon_sym_var] = ACTIONS(3206), - [anon_sym_let] = ACTIONS(3206), - [anon_sym_const] = ACTIONS(3206), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_if] = ACTIONS(3206), - [anon_sym_switch] = ACTIONS(3206), - [anon_sym_for] = ACTIONS(3206), - [anon_sym_LPAREN] = ACTIONS(3206), - [anon_sym_await] = ACTIONS(3206), - [anon_sym_while] = ACTIONS(3206), - [anon_sym_do] = ACTIONS(3206), - [anon_sym_try] = ACTIONS(3206), - [anon_sym_break] = ACTIONS(3206), - [anon_sym_continue] = ACTIONS(3206), - [anon_sym_debugger] = ACTIONS(3206), - [anon_sym_return] = ACTIONS(3206), - [anon_sym_throw] = ACTIONS(3206), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_yield] = ACTIONS(3206), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_LTtemplate_GT] = ACTIONS(3206), - [anon_sym_DQUOTE] = ACTIONS(3206), - [anon_sym_SQUOTE] = ACTIONS(3206), - [anon_sym_class] = ACTIONS(3206), - [anon_sym_async] = ACTIONS(3206), - [anon_sym_function] = ACTIONS(3206), - [anon_sym_new] = ACTIONS(3206), - [anon_sym_using] = ACTIONS(3206), - [anon_sym_PLUS] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_SLASH] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3206), - [anon_sym_TILDE] = ACTIONS(3206), - [anon_sym_void] = ACTIONS(3206), - [anon_sym_delete] = ACTIONS(3206), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3206), - [sym_number] = ACTIONS(3206), - [sym_private_property_identifier] = ACTIONS(3206), - [sym_this] = ACTIONS(3206), - [sym_super] = ACTIONS(3206), - [sym_true] = ACTIONS(3206), - [sym_false] = ACTIONS(3206), - [sym_null] = ACTIONS(3206), - [sym_undefined] = ACTIONS(3206), - [anon_sym_AT] = ACTIONS(3206), - [anon_sym_static] = ACTIONS(3206), - [anon_sym_readonly] = ACTIONS(3206), - [anon_sym_get] = ACTIONS(3206), - [anon_sym_set] = ACTIONS(3206), - [anon_sym_declare] = ACTIONS(3206), - [anon_sym_public] = ACTIONS(3206), - [anon_sym_private] = ACTIONS(3206), - [anon_sym_protected] = ACTIONS(3206), - [anon_sym_override] = ACTIONS(3206), - [anon_sym_module] = ACTIONS(3206), - [anon_sym_any] = ACTIONS(3206), - [anon_sym_number] = ACTIONS(3206), - [anon_sym_boolean] = ACTIONS(3206), - [anon_sym_string] = ACTIONS(3206), - [anon_sym_symbol] = ACTIONS(3206), - [anon_sym_object] = ACTIONS(3206), - [anon_sym_abstract] = ACTIONS(3206), - [anon_sym_interface] = ACTIONS(3206), - [anon_sym_enum] = ACTIONS(3206), + [1527] = { + [sym_comment] = STATE(1527), + [ts_builtin_sym_end] = ACTIONS(3396), + [sym_identifier] = ACTIONS(3174), + [anon_sym_export] = ACTIONS(3174), + [anon_sym_type] = ACTIONS(3174), + [anon_sym_namespace] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3174), + [anon_sym_RBRACE] = ACTIONS(3174), + [anon_sym_typeof] = ACTIONS(3174), + [anon_sym_import] = ACTIONS(3174), + [anon_sym_with] = ACTIONS(3174), + [anon_sym_var] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_const] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_switch] = ACTIONS(3174), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3174), + [anon_sym_await] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_break] = ACTIONS(3174), + [anon_sym_continue] = ACTIONS(3174), + [anon_sym_debugger] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_throw] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3174), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3174), + [anon_sym_LTtemplate_GT] = ACTIONS(3174), + [anon_sym_DQUOTE] = ACTIONS(3174), + [anon_sym_SQUOTE] = ACTIONS(3174), + [anon_sym_class] = ACTIONS(3174), + [anon_sym_async] = ACTIONS(3174), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_using] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_SLASH] = ACTIONS(3174), + [anon_sym_LT] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3174), + [anon_sym_void] = ACTIONS(3174), + [anon_sym_delete] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3174), + [anon_sym_DASH_DASH] = ACTIONS(3174), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3174), + [sym_number] = ACTIONS(3174), + [sym_private_property_identifier] = ACTIONS(3174), + [sym_this] = ACTIONS(3174), + [sym_super] = ACTIONS(3174), + [sym_true] = ACTIONS(3174), + [sym_false] = ACTIONS(3174), + [sym_null] = ACTIONS(3174), + [sym_undefined] = ACTIONS(3174), + [anon_sym_AT] = ACTIONS(3174), + [anon_sym_static] = ACTIONS(3174), + [anon_sym_readonly] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(3174), + [anon_sym_set] = ACTIONS(3174), + [anon_sym_declare] = ACTIONS(3174), + [anon_sym_public] = ACTIONS(3174), + [anon_sym_private] = ACTIONS(3174), + [anon_sym_protected] = ACTIONS(3174), + [anon_sym_override] = ACTIONS(3174), + [anon_sym_module] = ACTIONS(3174), + [anon_sym_any] = ACTIONS(3174), + [anon_sym_number] = ACTIONS(3174), + [anon_sym_boolean] = ACTIONS(3174), + [anon_sym_string] = ACTIONS(3174), + [anon_sym_symbol] = ACTIONS(3174), + [anon_sym_object] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3174), + [anon_sym_interface] = ACTIONS(3174), + [anon_sym_enum] = ACTIONS(3174), [sym_html_comment] = ACTIONS(5), }, - [1667] = { - [sym_comment] = STATE(1667), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1528] = { + [sym_comment] = STATE(1528), + [ts_builtin_sym_end] = ACTIONS(3388), + [sym_identifier] = ACTIONS(3158), + [anon_sym_export] = ACTIONS(3158), + [anon_sym_type] = ACTIONS(3158), + [anon_sym_namespace] = ACTIONS(3158), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_typeof] = ACTIONS(3158), + [anon_sym_import] = ACTIONS(3158), + [anon_sym_with] = ACTIONS(3158), + [anon_sym_var] = ACTIONS(3158), + [anon_sym_let] = ACTIONS(3158), + [anon_sym_const] = ACTIONS(3158), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_if] = ACTIONS(3158), + [anon_sym_switch] = ACTIONS(3158), + [anon_sym_for] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3158), + [anon_sym_await] = ACTIONS(3158), + [anon_sym_while] = ACTIONS(3158), + [anon_sym_do] = ACTIONS(3158), + [anon_sym_try] = ACTIONS(3158), + [anon_sym_break] = ACTIONS(3158), + [anon_sym_continue] = ACTIONS(3158), + [anon_sym_debugger] = ACTIONS(3158), + [anon_sym_return] = ACTIONS(3158), + [anon_sym_throw] = ACTIONS(3158), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_yield] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_LTtemplate_GT] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(3158), + [anon_sym_SQUOTE] = ACTIONS(3158), + [anon_sym_class] = ACTIONS(3158), + [anon_sym_async] = ACTIONS(3158), + [anon_sym_function] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3158), + [anon_sym_using] = ACTIONS(3158), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_SLASH] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3158), + [anon_sym_TILDE] = ACTIONS(3158), + [anon_sym_void] = ACTIONS(3158), + [anon_sym_delete] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3158), + [anon_sym_DASH_DASH] = ACTIONS(3158), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3158), + [sym_number] = ACTIONS(3158), + [sym_private_property_identifier] = ACTIONS(3158), + [sym_this] = ACTIONS(3158), + [sym_super] = ACTIONS(3158), + [sym_true] = ACTIONS(3158), + [sym_false] = ACTIONS(3158), + [sym_null] = ACTIONS(3158), + [sym_undefined] = ACTIONS(3158), + [anon_sym_AT] = ACTIONS(3158), + [anon_sym_static] = ACTIONS(3158), + [anon_sym_readonly] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3158), + [anon_sym_set] = ACTIONS(3158), + [anon_sym_declare] = ACTIONS(3158), + [anon_sym_public] = ACTIONS(3158), + [anon_sym_private] = ACTIONS(3158), + [anon_sym_protected] = ACTIONS(3158), + [anon_sym_override] = ACTIONS(3158), + [anon_sym_module] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(3158), + [anon_sym_number] = ACTIONS(3158), + [anon_sym_boolean] = ACTIONS(3158), + [anon_sym_string] = ACTIONS(3158), + [anon_sym_symbol] = ACTIONS(3158), + [anon_sym_object] = ACTIONS(3158), + [anon_sym_abstract] = ACTIONS(3158), + [anon_sym_interface] = ACTIONS(3158), + [anon_sym_enum] = ACTIONS(3158), [sym_html_comment] = ACTIONS(5), }, - [1668] = { - [sym_comment] = STATE(1668), - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(3208), - [anon_sym_export] = ACTIONS(3208), - [anon_sym_type] = ACTIONS(3208), - [anon_sym_namespace] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3208), - [anon_sym_RBRACE] = ACTIONS(3208), - [anon_sym_typeof] = ACTIONS(3208), - [anon_sym_import] = ACTIONS(3208), - [anon_sym_with] = ACTIONS(3208), - [anon_sym_var] = ACTIONS(3208), - [anon_sym_let] = ACTIONS(3208), - [anon_sym_const] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3208), - [anon_sym_if] = ACTIONS(3208), - [anon_sym_switch] = ACTIONS(3208), - [anon_sym_for] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3208), - [anon_sym_await] = ACTIONS(3208), - [anon_sym_while] = ACTIONS(3208), - [anon_sym_do] = ACTIONS(3208), - [anon_sym_try] = ACTIONS(3208), - [anon_sym_break] = ACTIONS(3208), - [anon_sym_continue] = ACTIONS(3208), - [anon_sym_debugger] = ACTIONS(3208), - [anon_sym_return] = ACTIONS(3208), - [anon_sym_throw] = ACTIONS(3208), - [anon_sym_SEMI] = ACTIONS(3208), - [anon_sym_yield] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3208), - [anon_sym_LTtemplate_GT] = ACTIONS(3208), - [anon_sym_DQUOTE] = ACTIONS(3208), - [anon_sym_SQUOTE] = ACTIONS(3208), - [anon_sym_class] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3208), - [anon_sym_function] = ACTIONS(3208), - [anon_sym_new] = ACTIONS(3208), - [anon_sym_using] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_SLASH] = ACTIONS(3208), - [anon_sym_LT] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(3208), - [anon_sym_void] = ACTIONS(3208), - [anon_sym_delete] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3208), - [anon_sym_DASH_DASH] = ACTIONS(3208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3208), - [sym_number] = ACTIONS(3208), - [sym_private_property_identifier] = ACTIONS(3208), - [sym_this] = ACTIONS(3208), - [sym_super] = ACTIONS(3208), - [sym_true] = ACTIONS(3208), - [sym_false] = ACTIONS(3208), - [sym_null] = ACTIONS(3208), - [sym_undefined] = ACTIONS(3208), - [anon_sym_AT] = ACTIONS(3208), - [anon_sym_static] = ACTIONS(3208), - [anon_sym_readonly] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3208), - [anon_sym_set] = ACTIONS(3208), - [anon_sym_declare] = ACTIONS(3208), - [anon_sym_public] = ACTIONS(3208), - [anon_sym_private] = ACTIONS(3208), - [anon_sym_protected] = ACTIONS(3208), - [anon_sym_override] = ACTIONS(3208), - [anon_sym_module] = ACTIONS(3208), - [anon_sym_any] = ACTIONS(3208), - [anon_sym_number] = ACTIONS(3208), - [anon_sym_boolean] = ACTIONS(3208), - [anon_sym_string] = ACTIONS(3208), - [anon_sym_symbol] = ACTIONS(3208), - [anon_sym_object] = ACTIONS(3208), - [anon_sym_abstract] = ACTIONS(3208), - [anon_sym_interface] = ACTIONS(3208), - [anon_sym_enum] = ACTIONS(3208), + [1529] = { + [sym_comment] = STATE(1529), + [ts_builtin_sym_end] = ACTIONS(3526), + [sym_identifier] = ACTIONS(3334), + [anon_sym_export] = ACTIONS(3334), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_namespace] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_typeof] = ACTIONS(3334), + [anon_sym_import] = ACTIONS(3334), + [anon_sym_with] = ACTIONS(3334), + [anon_sym_var] = ACTIONS(3334), + [anon_sym_let] = ACTIONS(3334), + [anon_sym_const] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_switch] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_await] = ACTIONS(3334), + [anon_sym_while] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_try] = ACTIONS(3334), + [anon_sym_break] = ACTIONS(3334), + [anon_sym_continue] = ACTIONS(3334), + [anon_sym_debugger] = ACTIONS(3334), + [anon_sym_return] = ACTIONS(3334), + [anon_sym_throw] = ACTIONS(3334), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_yield] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_LTtemplate_GT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_class] = ACTIONS(3334), + [anon_sym_async] = ACTIONS(3334), + [anon_sym_function] = ACTIONS(3334), + [anon_sym_new] = ACTIONS(3334), + [anon_sym_using] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_void] = ACTIONS(3334), + [anon_sym_delete] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3334), + [sym_number] = ACTIONS(3334), + [sym_private_property_identifier] = ACTIONS(3334), + [sym_this] = ACTIONS(3334), + [sym_super] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_null] = ACTIONS(3334), + [sym_undefined] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_static] = ACTIONS(3334), + [anon_sym_readonly] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3334), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_declare] = ACTIONS(3334), + [anon_sym_public] = ACTIONS(3334), + [anon_sym_private] = ACTIONS(3334), + [anon_sym_protected] = ACTIONS(3334), + [anon_sym_override] = ACTIONS(3334), + [anon_sym_module] = ACTIONS(3334), + [anon_sym_any] = ACTIONS(3334), + [anon_sym_number] = ACTIONS(3334), + [anon_sym_boolean] = ACTIONS(3334), + [anon_sym_string] = ACTIONS(3334), + [anon_sym_symbol] = ACTIONS(3334), + [anon_sym_object] = ACTIONS(3334), + [anon_sym_abstract] = ACTIONS(3334), + [anon_sym_interface] = ACTIONS(3334), + [anon_sym_enum] = ACTIONS(3334), [sym_html_comment] = ACTIONS(5), }, - [1669] = { - [sym_comment] = STATE(1669), - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3154), - [anon_sym_export] = ACTIONS(3154), - [anon_sym_type] = ACTIONS(3154), - [anon_sym_namespace] = ACTIONS(3154), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3154), - [anon_sym_import] = ACTIONS(3154), - [anon_sym_with] = ACTIONS(3154), - [anon_sym_var] = ACTIONS(3154), - [anon_sym_let] = ACTIONS(3154), - [anon_sym_const] = ACTIONS(3154), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_if] = ACTIONS(3154), - [anon_sym_switch] = ACTIONS(3154), - [anon_sym_for] = ACTIONS(3154), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3154), - [anon_sym_while] = ACTIONS(3154), - [anon_sym_do] = ACTIONS(3154), - [anon_sym_try] = ACTIONS(3154), - [anon_sym_break] = ACTIONS(3154), - [anon_sym_continue] = ACTIONS(3154), - [anon_sym_debugger] = ACTIONS(3154), - [anon_sym_return] = ACTIONS(3154), - [anon_sym_throw] = ACTIONS(3154), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_yield] = ACTIONS(3154), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LTtemplate_GT] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [anon_sym_class] = ACTIONS(3154), - [anon_sym_async] = ACTIONS(3154), - [anon_sym_function] = ACTIONS(3154), - [anon_sym_new] = ACTIONS(3154), - [anon_sym_using] = ACTIONS(3154), - [anon_sym_PLUS] = ACTIONS(3154), - [anon_sym_DASH] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3154), - [anon_sym_delete] = ACTIONS(3154), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), + [1530] = { + [sym_comment] = STATE(1530), + [ts_builtin_sym_end] = ACTIONS(3526), + [sym_identifier] = ACTIONS(3334), + [anon_sym_export] = ACTIONS(3334), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_namespace] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3334), + [anon_sym_RBRACE] = ACTIONS(3334), + [anon_sym_typeof] = ACTIONS(3334), + [anon_sym_import] = ACTIONS(3334), + [anon_sym_with] = ACTIONS(3334), + [anon_sym_var] = ACTIONS(3334), + [anon_sym_let] = ACTIONS(3334), + [anon_sym_const] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_switch] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3334), + [anon_sym_await] = ACTIONS(3334), + [anon_sym_while] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_try] = ACTIONS(3334), + [anon_sym_break] = ACTIONS(3334), + [anon_sym_continue] = ACTIONS(3334), + [anon_sym_debugger] = ACTIONS(3334), + [anon_sym_return] = ACTIONS(3334), + [anon_sym_throw] = ACTIONS(3334), + [anon_sym_SEMI] = ACTIONS(3334), + [anon_sym_yield] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3334), + [anon_sym_LTtemplate_GT] = ACTIONS(3334), + [anon_sym_DQUOTE] = ACTIONS(3334), + [anon_sym_SQUOTE] = ACTIONS(3334), + [anon_sym_class] = ACTIONS(3334), + [anon_sym_async] = ACTIONS(3334), + [anon_sym_function] = ACTIONS(3334), + [anon_sym_new] = ACTIONS(3334), + [anon_sym_using] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_LT] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3334), + [anon_sym_void] = ACTIONS(3334), + [anon_sym_delete] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3334), + [anon_sym_DASH_DASH] = ACTIONS(3334), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_private_property_identifier] = ACTIONS(3154), - [sym_this] = ACTIONS(3154), - [sym_super] = ACTIONS(3154), - [sym_true] = ACTIONS(3154), - [sym_false] = ACTIONS(3154), - [sym_null] = ACTIONS(3154), - [sym_undefined] = ACTIONS(3154), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3154), - [anon_sym_readonly] = ACTIONS(3154), - [anon_sym_get] = ACTIONS(3154), - [anon_sym_set] = ACTIONS(3154), - [anon_sym_declare] = ACTIONS(3154), - [anon_sym_public] = ACTIONS(3154), - [anon_sym_private] = ACTIONS(3154), - [anon_sym_protected] = ACTIONS(3154), - [anon_sym_override] = ACTIONS(3154), - [anon_sym_module] = ACTIONS(3154), - [anon_sym_any] = ACTIONS(3154), - [anon_sym_number] = ACTIONS(3154), - [anon_sym_boolean] = ACTIONS(3154), - [anon_sym_string] = ACTIONS(3154), - [anon_sym_symbol] = ACTIONS(3154), - [anon_sym_object] = ACTIONS(3154), - [anon_sym_abstract] = ACTIONS(3154), - [anon_sym_interface] = ACTIONS(3154), - [anon_sym_enum] = ACTIONS(3154), + [anon_sym_BQUOTE] = ACTIONS(3334), + [sym_number] = ACTIONS(3334), + [sym_private_property_identifier] = ACTIONS(3334), + [sym_this] = ACTIONS(3334), + [sym_super] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_null] = ACTIONS(3334), + [sym_undefined] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3334), + [anon_sym_static] = ACTIONS(3334), + [anon_sym_readonly] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3334), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_declare] = ACTIONS(3334), + [anon_sym_public] = ACTIONS(3334), + [anon_sym_private] = ACTIONS(3334), + [anon_sym_protected] = ACTIONS(3334), + [anon_sym_override] = ACTIONS(3334), + [anon_sym_module] = ACTIONS(3334), + [anon_sym_any] = ACTIONS(3334), + [anon_sym_number] = ACTIONS(3334), + [anon_sym_boolean] = ACTIONS(3334), + [anon_sym_string] = ACTIONS(3334), + [anon_sym_symbol] = ACTIONS(3334), + [anon_sym_object] = ACTIONS(3334), + [anon_sym_abstract] = ACTIONS(3334), + [anon_sym_interface] = ACTIONS(3334), + [anon_sym_enum] = ACTIONS(3334), [sym_html_comment] = ACTIONS(5), }, - [1670] = { - [sym_comment] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(3520), - [sym_identifier] = ACTIONS(3210), - [anon_sym_export] = ACTIONS(3210), - [anon_sym_type] = ACTIONS(3210), - [anon_sym_namespace] = ACTIONS(3210), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3210), - [anon_sym_import] = ACTIONS(3210), - [anon_sym_with] = ACTIONS(3210), - [anon_sym_var] = ACTIONS(3210), - [anon_sym_let] = ACTIONS(3210), - [anon_sym_const] = ACTIONS(3210), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_if] = ACTIONS(3210), - [anon_sym_switch] = ACTIONS(3210), - [anon_sym_for] = ACTIONS(3210), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3210), - [anon_sym_while] = ACTIONS(3210), - [anon_sym_do] = ACTIONS(3210), - [anon_sym_try] = ACTIONS(3210), - [anon_sym_break] = ACTIONS(3210), - [anon_sym_continue] = ACTIONS(3210), - [anon_sym_debugger] = ACTIONS(3210), - [anon_sym_return] = ACTIONS(3210), - [anon_sym_throw] = ACTIONS(3210), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_yield] = ACTIONS(3210), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LTtemplate_GT] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [anon_sym_class] = ACTIONS(3210), - [anon_sym_async] = ACTIONS(3210), - [anon_sym_function] = ACTIONS(3210), - [anon_sym_new] = ACTIONS(3210), - [anon_sym_using] = ACTIONS(3210), - [anon_sym_PLUS] = ACTIONS(3210), - [anon_sym_DASH] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3210), - [anon_sym_delete] = ACTIONS(3210), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), + [1531] = { + [sym_comment] = STATE(1531), + [ts_builtin_sym_end] = ACTIONS(3400), + [sym_identifier] = ACTIONS(3356), + [anon_sym_export] = ACTIONS(3356), + [anon_sym_type] = ACTIONS(3356), + [anon_sym_namespace] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_typeof] = ACTIONS(3356), + [anon_sym_import] = ACTIONS(3356), + [anon_sym_with] = ACTIONS(3356), + [anon_sym_var] = ACTIONS(3356), + [anon_sym_let] = ACTIONS(3356), + [anon_sym_const] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_switch] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_await] = ACTIONS(3356), + [anon_sym_while] = ACTIONS(3356), + [anon_sym_do] = ACTIONS(3356), + [anon_sym_try] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_debugger] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_throw] = ACTIONS(3356), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LTtemplate_GT] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_class] = ACTIONS(3356), + [anon_sym_async] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3356), + [anon_sym_new] = ACTIONS(3356), + [anon_sym_using] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_void] = ACTIONS(3356), + [anon_sym_delete] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_private_property_identifier] = ACTIONS(3210), - [sym_this] = ACTIONS(3210), - [sym_super] = ACTIONS(3210), - [sym_true] = ACTIONS(3210), - [sym_false] = ACTIONS(3210), - [sym_null] = ACTIONS(3210), - [sym_undefined] = ACTIONS(3210), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3210), - [anon_sym_readonly] = ACTIONS(3210), - [anon_sym_get] = ACTIONS(3210), - [anon_sym_set] = ACTIONS(3210), - [anon_sym_declare] = ACTIONS(3210), - [anon_sym_public] = ACTIONS(3210), - [anon_sym_private] = ACTIONS(3210), - [anon_sym_protected] = ACTIONS(3210), - [anon_sym_override] = ACTIONS(3210), - [anon_sym_module] = ACTIONS(3210), - [anon_sym_any] = ACTIONS(3210), - [anon_sym_number] = ACTIONS(3210), - [anon_sym_boolean] = ACTIONS(3210), - [anon_sym_string] = ACTIONS(3210), - [anon_sym_symbol] = ACTIONS(3210), - [anon_sym_object] = ACTIONS(3210), - [anon_sym_abstract] = ACTIONS(3210), - [anon_sym_interface] = ACTIONS(3210), - [anon_sym_enum] = ACTIONS(3210), + [anon_sym_BQUOTE] = ACTIONS(3356), + [sym_number] = ACTIONS(3356), + [sym_private_property_identifier] = ACTIONS(3356), + [sym_this] = ACTIONS(3356), + [sym_super] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_null] = ACTIONS(3356), + [sym_undefined] = ACTIONS(3356), + [anon_sym_AT] = ACTIONS(3356), + [anon_sym_static] = ACTIONS(3356), + [anon_sym_readonly] = ACTIONS(3356), + [anon_sym_get] = ACTIONS(3356), + [anon_sym_set] = ACTIONS(3356), + [anon_sym_declare] = ACTIONS(3356), + [anon_sym_public] = ACTIONS(3356), + [anon_sym_private] = ACTIONS(3356), + [anon_sym_protected] = ACTIONS(3356), + [anon_sym_override] = ACTIONS(3356), + [anon_sym_module] = ACTIONS(3356), + [anon_sym_any] = ACTIONS(3356), + [anon_sym_number] = ACTIONS(3356), + [anon_sym_boolean] = ACTIONS(3356), + [anon_sym_string] = ACTIONS(3356), + [anon_sym_symbol] = ACTIONS(3356), + [anon_sym_object] = ACTIONS(3356), + [anon_sym_abstract] = ACTIONS(3356), + [anon_sym_interface] = ACTIONS(3356), + [anon_sym_enum] = ACTIONS(3356), [sym_html_comment] = ACTIONS(5), }, - [1671] = { - [sym_comment] = STATE(1671), - [ts_builtin_sym_end] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), + [1532] = { + [sym_comment] = STATE(1532), + [ts_builtin_sym_end] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), + [sym_html_comment] = ACTIONS(5), + }, + [1533] = { + [sym_comment] = STATE(1533), + [ts_builtin_sym_end] = ACTIONS(3418), + [sym_identifier] = ACTIONS(3238), + [anon_sym_export] = ACTIONS(3238), + [anon_sym_type] = ACTIONS(3238), + [anon_sym_namespace] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3238), + [anon_sym_RBRACE] = ACTIONS(3238), + [anon_sym_typeof] = ACTIONS(3238), + [anon_sym_import] = ACTIONS(3238), + [anon_sym_with] = ACTIONS(3238), + [anon_sym_var] = ACTIONS(3238), + [anon_sym_let] = ACTIONS(3238), + [anon_sym_const] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(3238), + [anon_sym_switch] = ACTIONS(3238), + [anon_sym_for] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3238), + [anon_sym_await] = ACTIONS(3238), + [anon_sym_while] = ACTIONS(3238), + [anon_sym_do] = ACTIONS(3238), + [anon_sym_try] = ACTIONS(3238), + [anon_sym_break] = ACTIONS(3238), + [anon_sym_continue] = ACTIONS(3238), + [anon_sym_debugger] = ACTIONS(3238), + [anon_sym_return] = ACTIONS(3238), + [anon_sym_throw] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3238), + [anon_sym_yield] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3238), + [anon_sym_LTtemplate_GT] = ACTIONS(3238), + [anon_sym_DQUOTE] = ACTIONS(3238), + [anon_sym_SQUOTE] = ACTIONS(3238), + [anon_sym_class] = ACTIONS(3238), + [anon_sym_async] = ACTIONS(3238), + [anon_sym_function] = ACTIONS(3238), + [anon_sym_new] = ACTIONS(3238), + [anon_sym_using] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3238), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_SLASH] = ACTIONS(3238), + [anon_sym_LT] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3238), + [anon_sym_void] = ACTIONS(3238), + [anon_sym_delete] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3238), + [anon_sym_DASH_DASH] = ACTIONS(3238), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3238), + [sym_number] = ACTIONS(3238), + [sym_private_property_identifier] = ACTIONS(3238), + [sym_this] = ACTIONS(3238), + [sym_super] = ACTIONS(3238), + [sym_true] = ACTIONS(3238), + [sym_false] = ACTIONS(3238), + [sym_null] = ACTIONS(3238), + [sym_undefined] = ACTIONS(3238), + [anon_sym_AT] = ACTIONS(3238), + [anon_sym_static] = ACTIONS(3238), + [anon_sym_readonly] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3238), + [anon_sym_set] = ACTIONS(3238), + [anon_sym_declare] = ACTIONS(3238), + [anon_sym_public] = ACTIONS(3238), + [anon_sym_private] = ACTIONS(3238), + [anon_sym_protected] = ACTIONS(3238), + [anon_sym_override] = ACTIONS(3238), + [anon_sym_module] = ACTIONS(3238), + [anon_sym_any] = ACTIONS(3238), + [anon_sym_number] = ACTIONS(3238), + [anon_sym_boolean] = ACTIONS(3238), + [anon_sym_string] = ACTIONS(3238), + [anon_sym_symbol] = ACTIONS(3238), + [anon_sym_object] = ACTIONS(3238), + [anon_sym_abstract] = ACTIONS(3238), + [anon_sym_interface] = ACTIONS(3238), + [anon_sym_enum] = ACTIONS(3238), [sym_html_comment] = ACTIONS(5), }, - [1672] = { - [sym_comment] = STATE(1672), - [ts_builtin_sym_end] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), + [1534] = { + [sym_comment] = STATE(1534), + [ts_builtin_sym_end] = ACTIONS(3400), + [sym_identifier] = ACTIONS(3356), + [anon_sym_export] = ACTIONS(3356), + [anon_sym_type] = ACTIONS(3356), + [anon_sym_namespace] = ACTIONS(3356), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_typeof] = ACTIONS(3356), + [anon_sym_import] = ACTIONS(3356), + [anon_sym_with] = ACTIONS(3356), + [anon_sym_var] = ACTIONS(3356), + [anon_sym_let] = ACTIONS(3356), + [anon_sym_const] = ACTIONS(3356), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_if] = ACTIONS(3356), + [anon_sym_switch] = ACTIONS(3356), + [anon_sym_for] = ACTIONS(3356), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_await] = ACTIONS(3356), + [anon_sym_while] = ACTIONS(3356), + [anon_sym_do] = ACTIONS(3356), + [anon_sym_try] = ACTIONS(3356), + [anon_sym_break] = ACTIONS(3356), + [anon_sym_continue] = ACTIONS(3356), + [anon_sym_debugger] = ACTIONS(3356), + [anon_sym_return] = ACTIONS(3356), + [anon_sym_throw] = ACTIONS(3356), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_yield] = ACTIONS(3356), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LTtemplate_GT] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [anon_sym_class] = ACTIONS(3356), + [anon_sym_async] = ACTIONS(3356), + [anon_sym_function] = ACTIONS(3356), + [anon_sym_new] = ACTIONS(3356), + [anon_sym_using] = ACTIONS(3356), + [anon_sym_PLUS] = ACTIONS(3356), + [anon_sym_DASH] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_void] = ACTIONS(3356), + [anon_sym_delete] = ACTIONS(3356), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [anon_sym_BQUOTE] = ACTIONS(3356), + [sym_number] = ACTIONS(3356), + [sym_private_property_identifier] = ACTIONS(3356), + [sym_this] = ACTIONS(3356), + [sym_super] = ACTIONS(3356), + [sym_true] = ACTIONS(3356), + [sym_false] = ACTIONS(3356), + [sym_null] = ACTIONS(3356), + [sym_undefined] = ACTIONS(3356), + [anon_sym_AT] = ACTIONS(3356), + [anon_sym_static] = ACTIONS(3356), + [anon_sym_readonly] = ACTIONS(3356), + [anon_sym_get] = ACTIONS(3356), + [anon_sym_set] = ACTIONS(3356), + [anon_sym_declare] = ACTIONS(3356), + [anon_sym_public] = ACTIONS(3356), + [anon_sym_private] = ACTIONS(3356), + [anon_sym_protected] = ACTIONS(3356), + [anon_sym_override] = ACTIONS(3356), + [anon_sym_module] = ACTIONS(3356), + [anon_sym_any] = ACTIONS(3356), + [anon_sym_number] = ACTIONS(3356), + [anon_sym_boolean] = ACTIONS(3356), + [anon_sym_string] = ACTIONS(3356), + [anon_sym_symbol] = ACTIONS(3356), + [anon_sym_object] = ACTIONS(3356), + [anon_sym_abstract] = ACTIONS(3356), + [anon_sym_interface] = ACTIONS(3356), + [anon_sym_enum] = ACTIONS(3356), [sym_html_comment] = ACTIONS(5), }, - [1673] = { - [sym_comment] = STATE(1673), - [ts_builtin_sym_end] = ACTIONS(3518), - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_with] = ACTIONS(3216), - [anon_sym_var] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_debugger] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_throw] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_LTtemplate_GT] = ACTIONS(3216), - [anon_sym_DQUOTE] = ACTIONS(3216), - [anon_sym_SQUOTE] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3216), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), + [1535] = { + [sym_comment] = STATE(1535), + [ts_builtin_sym_end] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3216), - [sym_number] = ACTIONS(3216), - [sym_private_property_identifier] = ACTIONS(3216), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_override] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_interface] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1674] = { - [sym_comment] = STATE(1674), - [ts_builtin_sym_end] = ACTIONS(3518), - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_with] = ACTIONS(3216), - [anon_sym_var] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_debugger] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_throw] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_LTtemplate_GT] = ACTIONS(3216), - [anon_sym_DQUOTE] = ACTIONS(3216), - [anon_sym_SQUOTE] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3216), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3216), - [sym_number] = ACTIONS(3216), - [sym_private_property_identifier] = ACTIONS(3216), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_override] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_interface] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), + [1536] = { + [sym_comment] = STATE(1536), + [ts_builtin_sym_end] = ACTIONS(3422), + [sym_identifier] = ACTIONS(3260), + [anon_sym_export] = ACTIONS(3260), + [anon_sym_type] = ACTIONS(3260), + [anon_sym_namespace] = ACTIONS(3260), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_RBRACE] = ACTIONS(3260), + [anon_sym_typeof] = ACTIONS(3260), + [anon_sym_import] = ACTIONS(3260), + [anon_sym_with] = ACTIONS(3260), + [anon_sym_var] = ACTIONS(3260), + [anon_sym_let] = ACTIONS(3260), + [anon_sym_const] = ACTIONS(3260), + [anon_sym_BANG] = ACTIONS(3260), + [anon_sym_if] = ACTIONS(3260), + [anon_sym_switch] = ACTIONS(3260), + [anon_sym_for] = ACTIONS(3260), + [anon_sym_LPAREN] = ACTIONS(3260), + [anon_sym_await] = ACTIONS(3260), + [anon_sym_while] = ACTIONS(3260), + [anon_sym_do] = ACTIONS(3260), + [anon_sym_try] = ACTIONS(3260), + [anon_sym_break] = ACTIONS(3260), + [anon_sym_continue] = ACTIONS(3260), + [anon_sym_debugger] = ACTIONS(3260), + [anon_sym_return] = ACTIONS(3260), + [anon_sym_throw] = ACTIONS(3260), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_yield] = ACTIONS(3260), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_LTtemplate_GT] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3260), + [anon_sym_class] = ACTIONS(3260), + [anon_sym_async] = ACTIONS(3260), + [anon_sym_function] = ACTIONS(3260), + [anon_sym_new] = ACTIONS(3260), + [anon_sym_using] = ACTIONS(3260), + [anon_sym_PLUS] = ACTIONS(3260), + [anon_sym_DASH] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_void] = ACTIONS(3260), + [anon_sym_delete] = ACTIONS(3260), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3260), + [sym_number] = ACTIONS(3260), + [sym_private_property_identifier] = ACTIONS(3260), + [sym_this] = ACTIONS(3260), + [sym_super] = ACTIONS(3260), + [sym_true] = ACTIONS(3260), + [sym_false] = ACTIONS(3260), + [sym_null] = ACTIONS(3260), + [sym_undefined] = ACTIONS(3260), + [anon_sym_AT] = ACTIONS(3260), + [anon_sym_static] = ACTIONS(3260), + [anon_sym_readonly] = ACTIONS(3260), + [anon_sym_get] = ACTIONS(3260), + [anon_sym_set] = ACTIONS(3260), + [anon_sym_declare] = ACTIONS(3260), + [anon_sym_public] = ACTIONS(3260), + [anon_sym_private] = ACTIONS(3260), + [anon_sym_protected] = ACTIONS(3260), + [anon_sym_override] = ACTIONS(3260), + [anon_sym_module] = ACTIONS(3260), + [anon_sym_any] = ACTIONS(3260), + [anon_sym_number] = ACTIONS(3260), + [anon_sym_boolean] = ACTIONS(3260), + [anon_sym_string] = ACTIONS(3260), + [anon_sym_symbol] = ACTIONS(3260), + [anon_sym_object] = ACTIONS(3260), + [anon_sym_abstract] = ACTIONS(3260), + [anon_sym_interface] = ACTIONS(3260), + [anon_sym_enum] = ACTIONS(3260), [sym_html_comment] = ACTIONS(5), }, - [1675] = { - [sym_comment] = STATE(1675), - [ts_builtin_sym_end] = ACTIONS(3518), - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3216), - [anon_sym_RBRACE] = ACTIONS(3216), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_with] = ACTIONS(3216), - [anon_sym_var] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3216), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_debugger] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_throw] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3216), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3216), - [anon_sym_LTtemplate_GT] = ACTIONS(3216), - [anon_sym_DQUOTE] = ACTIONS(3216), - [anon_sym_SQUOTE] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_using] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_LT] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3216), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3216), - [anon_sym_DASH_DASH] = ACTIONS(3216), + [1537] = { + [sym_comment] = STATE(1537), + [ts_builtin_sym_end] = ACTIONS(3414), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3354), + [anon_sym_RBRACE] = ACTIONS(3354), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3354), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3354), + [anon_sym_LTtemplate_GT] = ACTIONS(3354), + [anon_sym_DQUOTE] = ACTIONS(3354), + [anon_sym_SQUOTE] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_using] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_LT] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3354), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3354), + [anon_sym_DASH_DASH] = ACTIONS(3354), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3216), - [sym_number] = ACTIONS(3216), - [sym_private_property_identifier] = ACTIONS(3216), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3216), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_override] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_object] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_interface] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), + [anon_sym_BQUOTE] = ACTIONS(3354), + [sym_number] = ACTIONS(3354), + [sym_private_property_identifier] = ACTIONS(3354), + [sym_this] = ACTIONS(3354), + [sym_super] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_undefined] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3354), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_override] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_any] = ACTIONS(3354), + [anon_sym_number] = ACTIONS(3354), + [anon_sym_boolean] = ACTIONS(3354), + [anon_sym_string] = ACTIONS(3354), + [anon_sym_symbol] = ACTIONS(3354), + [anon_sym_object] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), [sym_html_comment] = ACTIONS(5), }, - [1676] = { - [sym_comment] = STATE(1676), - [ts_builtin_sym_end] = ACTIONS(3478), - [sym_identifier] = ACTIONS(3248), - [anon_sym_export] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_namespace] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3248), - [anon_sym_RBRACE] = ACTIONS(3248), - [anon_sym_typeof] = ACTIONS(3248), - [anon_sym_import] = ACTIONS(3248), - [anon_sym_with] = ACTIONS(3248), - [anon_sym_var] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_switch] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3248), - [anon_sym_await] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3248), - [anon_sym_do] = ACTIONS(3248), - [anon_sym_try] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_debugger] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_throw] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3248), - [anon_sym_yield] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3248), - [anon_sym_LTtemplate_GT] = ACTIONS(3248), - [anon_sym_DQUOTE] = ACTIONS(3248), - [anon_sym_SQUOTE] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_async] = ACTIONS(3248), - [anon_sym_function] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3248), - [anon_sym_using] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_LT] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3248), - [anon_sym_void] = ACTIONS(3248), - [anon_sym_delete] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3248), - [anon_sym_DASH_DASH] = ACTIONS(3248), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3248), - [sym_number] = ACTIONS(3248), - [sym_private_property_identifier] = ACTIONS(3248), - [sym_this] = ACTIONS(3248), - [sym_super] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_null] = ACTIONS(3248), - [sym_undefined] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3248), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_readonly] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3248), - [anon_sym_set] = ACTIONS(3248), - [anon_sym_declare] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_protected] = ACTIONS(3248), - [anon_sym_override] = ACTIONS(3248), - [anon_sym_module] = ACTIONS(3248), - [anon_sym_any] = ACTIONS(3248), - [anon_sym_number] = ACTIONS(3248), - [anon_sym_boolean] = ACTIONS(3248), - [anon_sym_string] = ACTIONS(3248), - [anon_sym_symbol] = ACTIONS(3248), - [anon_sym_object] = ACTIONS(3248), - [anon_sym_abstract] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), + [1538] = { + [sym_comment] = STATE(1538), + [ts_builtin_sym_end] = ACTIONS(2223), + [sym_identifier] = ACTIONS(2221), + [anon_sym_export] = ACTIONS(2221), + [anon_sym_type] = ACTIONS(2221), + [anon_sym_namespace] = ACTIONS(2221), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [anon_sym_typeof] = ACTIONS(2221), + [anon_sym_import] = ACTIONS(2221), + [anon_sym_with] = ACTIONS(2221), + [anon_sym_var] = ACTIONS(2221), + [anon_sym_let] = ACTIONS(2221), + [anon_sym_const] = ACTIONS(2221), + [anon_sym_BANG] = ACTIONS(2221), + [anon_sym_if] = ACTIONS(2221), + [anon_sym_switch] = ACTIONS(2221), + [anon_sym_for] = ACTIONS(2221), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_await] = ACTIONS(2221), + [anon_sym_while] = ACTIONS(2221), + [anon_sym_do] = ACTIONS(2221), + [anon_sym_try] = ACTIONS(2221), + [anon_sym_break] = ACTIONS(2221), + [anon_sym_continue] = ACTIONS(2221), + [anon_sym_debugger] = ACTIONS(2221), + [anon_sym_return] = ACTIONS(2221), + [anon_sym_throw] = ACTIONS(2221), + [anon_sym_SEMI] = ACTIONS(2221), + [anon_sym_yield] = ACTIONS(2221), + [anon_sym_LBRACK] = ACTIONS(2221), + [anon_sym_LTtemplate_GT] = ACTIONS(2221), + [anon_sym_DQUOTE] = ACTIONS(2221), + [anon_sym_SQUOTE] = ACTIONS(2221), + [anon_sym_class] = ACTIONS(2221), + [anon_sym_async] = ACTIONS(2221), + [anon_sym_function] = ACTIONS(2221), + [anon_sym_new] = ACTIONS(2221), + [anon_sym_using] = ACTIONS(2221), + [anon_sym_PLUS] = ACTIONS(2221), + [anon_sym_DASH] = ACTIONS(2221), + [anon_sym_SLASH] = ACTIONS(2221), + [anon_sym_LT] = ACTIONS(2221), + [anon_sym_TILDE] = ACTIONS(2221), + [anon_sym_void] = ACTIONS(2221), + [anon_sym_delete] = ACTIONS(2221), + [anon_sym_PLUS_PLUS] = ACTIONS(2221), + [anon_sym_DASH_DASH] = ACTIONS(2221), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2221), + [sym_number] = ACTIONS(2221), + [sym_private_property_identifier] = ACTIONS(2221), + [sym_this] = ACTIONS(2221), + [sym_super] = ACTIONS(2221), + [sym_true] = ACTIONS(2221), + [sym_false] = ACTIONS(2221), + [sym_null] = ACTIONS(2221), + [sym_undefined] = ACTIONS(2221), + [anon_sym_AT] = ACTIONS(2221), + [anon_sym_static] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_get] = ACTIONS(2221), + [anon_sym_set] = ACTIONS(2221), + [anon_sym_declare] = ACTIONS(2221), + [anon_sym_public] = ACTIONS(2221), + [anon_sym_private] = ACTIONS(2221), + [anon_sym_protected] = ACTIONS(2221), + [anon_sym_override] = ACTIONS(2221), + [anon_sym_module] = ACTIONS(2221), + [anon_sym_any] = ACTIONS(2221), + [anon_sym_number] = ACTIONS(2221), + [anon_sym_boolean] = ACTIONS(2221), + [anon_sym_string] = ACTIONS(2221), + [anon_sym_symbol] = ACTIONS(2221), + [anon_sym_object] = ACTIONS(2221), + [anon_sym_abstract] = ACTIONS(2221), + [anon_sym_interface] = ACTIONS(2221), + [anon_sym_enum] = ACTIONS(2221), [sym_html_comment] = ACTIONS(5), }, - [1677] = { - [sym_comment] = STATE(1677), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1539] = { + [sym_comment] = STATE(1539), + [ts_builtin_sym_end] = ACTIONS(3420), + [sym_identifier] = ACTIONS(3350), + [anon_sym_export] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3350), + [anon_sym_namespace] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3350), + [anon_sym_RBRACE] = ACTIONS(3350), + [anon_sym_typeof] = ACTIONS(3350), + [anon_sym_import] = ACTIONS(3350), + [anon_sym_with] = ACTIONS(3350), + [anon_sym_var] = ACTIONS(3350), + [anon_sym_let] = ACTIONS(3350), + [anon_sym_const] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_switch] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3350), + [anon_sym_await] = ACTIONS(3350), + [anon_sym_while] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_try] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_debugger] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_throw] = ACTIONS(3350), + [anon_sym_SEMI] = ACTIONS(3350), + [anon_sym_yield] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3350), + [anon_sym_LTtemplate_GT] = ACTIONS(3350), + [anon_sym_DQUOTE] = ACTIONS(3350), + [anon_sym_SQUOTE] = ACTIONS(3350), + [anon_sym_class] = ACTIONS(3350), + [anon_sym_async] = ACTIONS(3350), + [anon_sym_function] = ACTIONS(3350), + [anon_sym_new] = ACTIONS(3350), + [anon_sym_using] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_LT] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3350), + [anon_sym_void] = ACTIONS(3350), + [anon_sym_delete] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3350), + [anon_sym_DASH_DASH] = ACTIONS(3350), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3350), + [sym_number] = ACTIONS(3350), + [sym_private_property_identifier] = ACTIONS(3350), + [sym_this] = ACTIONS(3350), + [sym_super] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_null] = ACTIONS(3350), + [sym_undefined] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3350), + [anon_sym_static] = ACTIONS(3350), + [anon_sym_readonly] = ACTIONS(3350), + [anon_sym_get] = ACTIONS(3350), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_declare] = ACTIONS(3350), + [anon_sym_public] = ACTIONS(3350), + [anon_sym_private] = ACTIONS(3350), + [anon_sym_protected] = ACTIONS(3350), + [anon_sym_override] = ACTIONS(3350), + [anon_sym_module] = ACTIONS(3350), + [anon_sym_any] = ACTIONS(3350), + [anon_sym_number] = ACTIONS(3350), + [anon_sym_boolean] = ACTIONS(3350), + [anon_sym_string] = ACTIONS(3350), + [anon_sym_symbol] = ACTIONS(3350), + [anon_sym_object] = ACTIONS(3350), + [anon_sym_abstract] = ACTIONS(3350), + [anon_sym_interface] = ACTIONS(3350), + [anon_sym_enum] = ACTIONS(3350), [sym_html_comment] = ACTIONS(5), }, - [1678] = { - [sym_comment] = STATE(1678), - [ts_builtin_sym_end] = ACTIONS(3476), - [sym_identifier] = ACTIONS(3366), - [anon_sym_export] = ACTIONS(3366), - [anon_sym_type] = ACTIONS(3366), - [anon_sym_namespace] = ACTIONS(3366), - [anon_sym_LBRACE] = ACTIONS(3366), - [anon_sym_RBRACE] = ACTIONS(3366), - [anon_sym_typeof] = ACTIONS(3366), - [anon_sym_import] = ACTIONS(3366), - [anon_sym_with] = ACTIONS(3366), - [anon_sym_var] = ACTIONS(3366), - [anon_sym_let] = ACTIONS(3366), - [anon_sym_const] = ACTIONS(3366), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_if] = ACTIONS(3366), - [anon_sym_switch] = ACTIONS(3366), - [anon_sym_for] = ACTIONS(3366), - [anon_sym_LPAREN] = ACTIONS(3366), - [anon_sym_await] = ACTIONS(3366), - [anon_sym_while] = ACTIONS(3366), - [anon_sym_do] = ACTIONS(3366), - [anon_sym_try] = ACTIONS(3366), - [anon_sym_break] = ACTIONS(3366), - [anon_sym_continue] = ACTIONS(3366), - [anon_sym_debugger] = ACTIONS(3366), - [anon_sym_return] = ACTIONS(3366), - [anon_sym_throw] = ACTIONS(3366), - [anon_sym_SEMI] = ACTIONS(3366), - [anon_sym_yield] = ACTIONS(3366), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_LTtemplate_GT] = ACTIONS(3366), - [anon_sym_DQUOTE] = ACTIONS(3366), - [anon_sym_SQUOTE] = ACTIONS(3366), - [anon_sym_class] = ACTIONS(3366), - [anon_sym_async] = ACTIONS(3366), - [anon_sym_function] = ACTIONS(3366), - [anon_sym_new] = ACTIONS(3366), - [anon_sym_using] = ACTIONS(3366), - [anon_sym_PLUS] = ACTIONS(3366), - [anon_sym_DASH] = ACTIONS(3366), - [anon_sym_SLASH] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(3366), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_void] = ACTIONS(3366), - [anon_sym_delete] = ACTIONS(3366), - [anon_sym_PLUS_PLUS] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3366), + [1540] = { + [sym_comment] = STATE(1540), + [ts_builtin_sym_end] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3366), - [sym_number] = ACTIONS(3366), - [sym_private_property_identifier] = ACTIONS(3366), - [sym_this] = ACTIONS(3366), - [sym_super] = ACTIONS(3366), - [sym_true] = ACTIONS(3366), - [sym_false] = ACTIONS(3366), - [sym_null] = ACTIONS(3366), - [sym_undefined] = ACTIONS(3366), - [anon_sym_AT] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3366), - [anon_sym_readonly] = ACTIONS(3366), - [anon_sym_get] = ACTIONS(3366), - [anon_sym_set] = ACTIONS(3366), - [anon_sym_declare] = ACTIONS(3366), - [anon_sym_public] = ACTIONS(3366), - [anon_sym_private] = ACTIONS(3366), - [anon_sym_protected] = ACTIONS(3366), - [anon_sym_override] = ACTIONS(3366), - [anon_sym_module] = ACTIONS(3366), - [anon_sym_any] = ACTIONS(3366), - [anon_sym_number] = ACTIONS(3366), - [anon_sym_boolean] = ACTIONS(3366), - [anon_sym_string] = ACTIONS(3366), - [anon_sym_symbol] = ACTIONS(3366), - [anon_sym_object] = ACTIONS(3366), - [anon_sym_abstract] = ACTIONS(3366), - [anon_sym_interface] = ACTIONS(3366), - [anon_sym_enum] = ACTIONS(3366), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1679] = { - [sym_comment] = STATE(1679), - [ts_builtin_sym_end] = ACTIONS(3474), - [sym_identifier] = ACTIONS(3364), - [anon_sym_export] = ACTIONS(3364), - [anon_sym_type] = ACTIONS(3364), - [anon_sym_namespace] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_RBRACE] = ACTIONS(3364), - [anon_sym_typeof] = ACTIONS(3364), - [anon_sym_import] = ACTIONS(3364), - [anon_sym_with] = ACTIONS(3364), - [anon_sym_var] = ACTIONS(3364), - [anon_sym_let] = ACTIONS(3364), - [anon_sym_const] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3364), - [anon_sym_if] = ACTIONS(3364), - [anon_sym_switch] = ACTIONS(3364), - [anon_sym_for] = ACTIONS(3364), - [anon_sym_LPAREN] = ACTIONS(3364), - [anon_sym_await] = ACTIONS(3364), - [anon_sym_while] = ACTIONS(3364), - [anon_sym_do] = ACTIONS(3364), - [anon_sym_try] = ACTIONS(3364), - [anon_sym_break] = ACTIONS(3364), - [anon_sym_continue] = ACTIONS(3364), - [anon_sym_debugger] = ACTIONS(3364), - [anon_sym_return] = ACTIONS(3364), - [anon_sym_throw] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3364), - [anon_sym_yield] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3364), - [anon_sym_LTtemplate_GT] = ACTIONS(3364), - [anon_sym_DQUOTE] = ACTIONS(3364), - [anon_sym_SQUOTE] = ACTIONS(3364), - [anon_sym_class] = ACTIONS(3364), - [anon_sym_async] = ACTIONS(3364), - [anon_sym_function] = ACTIONS(3364), - [anon_sym_new] = ACTIONS(3364), - [anon_sym_using] = ACTIONS(3364), - [anon_sym_PLUS] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3364), - [anon_sym_SLASH] = ACTIONS(3364), - [anon_sym_LT] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3364), - [anon_sym_void] = ACTIONS(3364), - [anon_sym_delete] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3364), - [anon_sym_DASH_DASH] = ACTIONS(3364), + [1541] = { + [sym_comment] = STATE(1541), + [ts_builtin_sym_end] = ACTIONS(3424), + [sym_identifier] = ACTIONS(3148), + [anon_sym_export] = ACTIONS(3148), + [anon_sym_type] = ACTIONS(3148), + [anon_sym_namespace] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3148), + [anon_sym_import] = ACTIONS(3148), + [anon_sym_with] = ACTIONS(3148), + [anon_sym_var] = ACTIONS(3148), + [anon_sym_let] = ACTIONS(3148), + [anon_sym_const] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_switch] = ACTIONS(3148), + [anon_sym_for] = ACTIONS(3148), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_do] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_debugger] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_yield] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LTtemplate_GT] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_async] = ACTIONS(3148), + [anon_sym_function] = ACTIONS(3148), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_using] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3148), + [anon_sym_delete] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3364), - [sym_number] = ACTIONS(3364), - [sym_private_property_identifier] = ACTIONS(3364), - [sym_this] = ACTIONS(3364), - [sym_super] = ACTIONS(3364), - [sym_true] = ACTIONS(3364), - [sym_false] = ACTIONS(3364), - [sym_null] = ACTIONS(3364), - [sym_undefined] = ACTIONS(3364), - [anon_sym_AT] = ACTIONS(3364), - [anon_sym_static] = ACTIONS(3364), - [anon_sym_readonly] = ACTIONS(3364), - [anon_sym_get] = ACTIONS(3364), - [anon_sym_set] = ACTIONS(3364), - [anon_sym_declare] = ACTIONS(3364), - [anon_sym_public] = ACTIONS(3364), - [anon_sym_private] = ACTIONS(3364), - [anon_sym_protected] = ACTIONS(3364), - [anon_sym_override] = ACTIONS(3364), - [anon_sym_module] = ACTIONS(3364), - [anon_sym_any] = ACTIONS(3364), - [anon_sym_number] = ACTIONS(3364), - [anon_sym_boolean] = ACTIONS(3364), - [anon_sym_string] = ACTIONS(3364), - [anon_sym_symbol] = ACTIONS(3364), - [anon_sym_object] = ACTIONS(3364), - [anon_sym_abstract] = ACTIONS(3364), - [anon_sym_interface] = ACTIONS(3364), - [anon_sym_enum] = ACTIONS(3364), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_private_property_identifier] = ACTIONS(3148), + [sym_this] = ACTIONS(3148), + [sym_super] = ACTIONS(3148), + [sym_true] = ACTIONS(3148), + [sym_false] = ACTIONS(3148), + [sym_null] = ACTIONS(3148), + [sym_undefined] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3148), + [anon_sym_readonly] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_declare] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_override] = ACTIONS(3148), + [anon_sym_module] = ACTIONS(3148), + [anon_sym_any] = ACTIONS(3148), + [anon_sym_number] = ACTIONS(3148), + [anon_sym_boolean] = ACTIONS(3148), + [anon_sym_string] = ACTIONS(3148), + [anon_sym_symbol] = ACTIONS(3148), + [anon_sym_object] = ACTIONS(3148), + [anon_sym_abstract] = ACTIONS(3148), + [anon_sym_interface] = ACTIONS(3148), + [anon_sym_enum] = ACTIONS(3148), [sym_html_comment] = ACTIONS(5), }, - [1680] = { - [sym_comment] = STATE(1680), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1542] = { + [sym_comment] = STATE(1542), + [ts_builtin_sym_end] = ACTIONS(3518), + [sym_identifier] = ACTIONS(3228), + [anon_sym_export] = ACTIONS(3228), + [anon_sym_type] = ACTIONS(3228), + [anon_sym_namespace] = ACTIONS(3228), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_typeof] = ACTIONS(3228), + [anon_sym_import] = ACTIONS(3228), + [anon_sym_with] = ACTIONS(3228), + [anon_sym_var] = ACTIONS(3228), + [anon_sym_let] = ACTIONS(3228), + [anon_sym_const] = ACTIONS(3228), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_if] = ACTIONS(3228), + [anon_sym_switch] = ACTIONS(3228), + [anon_sym_for] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_await] = ACTIONS(3228), + [anon_sym_while] = ACTIONS(3228), + [anon_sym_do] = ACTIONS(3228), + [anon_sym_try] = ACTIONS(3228), + [anon_sym_break] = ACTIONS(3228), + [anon_sym_continue] = ACTIONS(3228), + [anon_sym_debugger] = ACTIONS(3228), + [anon_sym_return] = ACTIONS(3228), + [anon_sym_throw] = ACTIONS(3228), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_yield] = ACTIONS(3228), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LTtemplate_GT] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3228), + [anon_sym_class] = ACTIONS(3228), + [anon_sym_async] = ACTIONS(3228), + [anon_sym_function] = ACTIONS(3228), + [anon_sym_new] = ACTIONS(3228), + [anon_sym_using] = ACTIONS(3228), + [anon_sym_PLUS] = ACTIONS(3228), + [anon_sym_DASH] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_void] = ACTIONS(3228), + [anon_sym_delete] = ACTIONS(3228), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3228), + [sym_number] = ACTIONS(3228), + [sym_private_property_identifier] = ACTIONS(3228), + [sym_this] = ACTIONS(3228), + [sym_super] = ACTIONS(3228), + [sym_true] = ACTIONS(3228), + [sym_false] = ACTIONS(3228), + [sym_null] = ACTIONS(3228), + [sym_undefined] = ACTIONS(3228), + [anon_sym_AT] = ACTIONS(3228), + [anon_sym_static] = ACTIONS(3228), + [anon_sym_readonly] = ACTIONS(3228), + [anon_sym_get] = ACTIONS(3228), + [anon_sym_set] = ACTIONS(3228), + [anon_sym_declare] = ACTIONS(3228), + [anon_sym_public] = ACTIONS(3228), + [anon_sym_private] = ACTIONS(3228), + [anon_sym_protected] = ACTIONS(3228), + [anon_sym_override] = ACTIONS(3228), + [anon_sym_module] = ACTIONS(3228), + [anon_sym_any] = ACTIONS(3228), + [anon_sym_number] = ACTIONS(3228), + [anon_sym_boolean] = ACTIONS(3228), + [anon_sym_string] = ACTIONS(3228), + [anon_sym_symbol] = ACTIONS(3228), + [anon_sym_object] = ACTIONS(3228), + [anon_sym_abstract] = ACTIONS(3228), + [anon_sym_interface] = ACTIONS(3228), + [anon_sym_enum] = ACTIONS(3228), [sym_html_comment] = ACTIONS(5), }, - [1681] = { - [sym_comment] = STATE(1681), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1543] = { + [sym_comment] = STATE(1543), + [ts_builtin_sym_end] = ACTIONS(3428), + [sym_identifier] = ACTIONS(3162), + [anon_sym_export] = ACTIONS(3162), + [anon_sym_type] = ACTIONS(3162), + [anon_sym_namespace] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(3162), + [anon_sym_RBRACE] = ACTIONS(3162), + [anon_sym_typeof] = ACTIONS(3162), + [anon_sym_import] = ACTIONS(3162), + [anon_sym_with] = ACTIONS(3162), + [anon_sym_var] = ACTIONS(3162), + [anon_sym_let] = ACTIONS(3162), + [anon_sym_const] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_switch] = ACTIONS(3162), + [anon_sym_for] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3162), + [anon_sym_await] = ACTIONS(3162), + [anon_sym_while] = ACTIONS(3162), + [anon_sym_do] = ACTIONS(3162), + [anon_sym_try] = ACTIONS(3162), + [anon_sym_break] = ACTIONS(3162), + [anon_sym_continue] = ACTIONS(3162), + [anon_sym_debugger] = ACTIONS(3162), + [anon_sym_return] = ACTIONS(3162), + [anon_sym_throw] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3162), + [anon_sym_yield] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3162), + [anon_sym_LTtemplate_GT] = ACTIONS(3162), + [anon_sym_DQUOTE] = ACTIONS(3162), + [anon_sym_SQUOTE] = ACTIONS(3162), + [anon_sym_class] = ACTIONS(3162), + [anon_sym_async] = ACTIONS(3162), + [anon_sym_function] = ACTIONS(3162), + [anon_sym_new] = ACTIONS(3162), + [anon_sym_using] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_LT] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3162), + [anon_sym_void] = ACTIONS(3162), + [anon_sym_delete] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3162), + [anon_sym_DASH_DASH] = ACTIONS(3162), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3162), + [sym_number] = ACTIONS(3162), + [sym_private_property_identifier] = ACTIONS(3162), + [sym_this] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_true] = ACTIONS(3162), + [sym_false] = ACTIONS(3162), + [sym_null] = ACTIONS(3162), + [sym_undefined] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3162), + [anon_sym_static] = ACTIONS(3162), + [anon_sym_readonly] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_declare] = ACTIONS(3162), + [anon_sym_public] = ACTIONS(3162), + [anon_sym_private] = ACTIONS(3162), + [anon_sym_protected] = ACTIONS(3162), + [anon_sym_override] = ACTIONS(3162), + [anon_sym_module] = ACTIONS(3162), + [anon_sym_any] = ACTIONS(3162), + [anon_sym_number] = ACTIONS(3162), + [anon_sym_boolean] = ACTIONS(3162), + [anon_sym_string] = ACTIONS(3162), + [anon_sym_symbol] = ACTIONS(3162), + [anon_sym_object] = ACTIONS(3162), + [anon_sym_abstract] = ACTIONS(3162), + [anon_sym_interface] = ACTIONS(3162), + [anon_sym_enum] = ACTIONS(3162), [sym_html_comment] = ACTIONS(5), }, - [1682] = { - [sym_comment] = STATE(1682), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1544] = { + [sym_comment] = STATE(1544), + [ts_builtin_sym_end] = ACTIONS(3432), + [sym_identifier] = ACTIONS(3166), + [anon_sym_export] = ACTIONS(3166), + [anon_sym_type] = ACTIONS(3166), + [anon_sym_namespace] = ACTIONS(3166), + [anon_sym_LBRACE] = ACTIONS(3166), + [anon_sym_RBRACE] = ACTIONS(3166), + [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_import] = ACTIONS(3166), + [anon_sym_with] = ACTIONS(3166), + [anon_sym_var] = ACTIONS(3166), + [anon_sym_let] = ACTIONS(3166), + [anon_sym_const] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3166), + [anon_sym_if] = ACTIONS(3166), + [anon_sym_switch] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3166), + [anon_sym_await] = ACTIONS(3166), + [anon_sym_while] = ACTIONS(3166), + [anon_sym_do] = ACTIONS(3166), + [anon_sym_try] = ACTIONS(3166), + [anon_sym_break] = ACTIONS(3166), + [anon_sym_continue] = ACTIONS(3166), + [anon_sym_debugger] = ACTIONS(3166), + [anon_sym_return] = ACTIONS(3166), + [anon_sym_throw] = ACTIONS(3166), + [anon_sym_SEMI] = ACTIONS(3166), + [anon_sym_yield] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3166), + [anon_sym_LTtemplate_GT] = ACTIONS(3166), + [anon_sym_DQUOTE] = ACTIONS(3166), + [anon_sym_SQUOTE] = ACTIONS(3166), + [anon_sym_class] = ACTIONS(3166), + [anon_sym_async] = ACTIONS(3166), + [anon_sym_function] = ACTIONS(3166), + [anon_sym_new] = ACTIONS(3166), + [anon_sym_using] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), + [anon_sym_SLASH] = ACTIONS(3166), + [anon_sym_LT] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3166), + [anon_sym_void] = ACTIONS(3166), + [anon_sym_delete] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3166), + [anon_sym_DASH_DASH] = ACTIONS(3166), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3166), + [sym_number] = ACTIONS(3166), + [sym_private_property_identifier] = ACTIONS(3166), + [sym_this] = ACTIONS(3166), + [sym_super] = ACTIONS(3166), + [sym_true] = ACTIONS(3166), + [sym_false] = ACTIONS(3166), + [sym_null] = ACTIONS(3166), + [sym_undefined] = ACTIONS(3166), + [anon_sym_AT] = ACTIONS(3166), + [anon_sym_static] = ACTIONS(3166), + [anon_sym_readonly] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3166), + [anon_sym_set] = ACTIONS(3166), + [anon_sym_declare] = ACTIONS(3166), + [anon_sym_public] = ACTIONS(3166), + [anon_sym_private] = ACTIONS(3166), + [anon_sym_protected] = ACTIONS(3166), + [anon_sym_override] = ACTIONS(3166), + [anon_sym_module] = ACTIONS(3166), + [anon_sym_any] = ACTIONS(3166), + [anon_sym_number] = ACTIONS(3166), + [anon_sym_boolean] = ACTIONS(3166), + [anon_sym_string] = ACTIONS(3166), + [anon_sym_symbol] = ACTIONS(3166), + [anon_sym_object] = ACTIONS(3166), + [anon_sym_abstract] = ACTIONS(3166), + [anon_sym_interface] = ACTIONS(3166), + [anon_sym_enum] = ACTIONS(3166), [sym_html_comment] = ACTIONS(5), }, - [1683] = { - [sym_comment] = STATE(1683), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1545] = { + [sym_comment] = STATE(1545), + [ts_builtin_sym_end] = ACTIONS(3392), + [sym_identifier] = ACTIONS(3170), + [anon_sym_export] = ACTIONS(3170), + [anon_sym_type] = ACTIONS(3170), + [anon_sym_namespace] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3170), + [anon_sym_RBRACE] = ACTIONS(3170), + [anon_sym_typeof] = ACTIONS(3170), + [anon_sym_import] = ACTIONS(3170), + [anon_sym_with] = ACTIONS(3170), + [anon_sym_var] = ACTIONS(3170), + [anon_sym_let] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_switch] = ACTIONS(3170), + [anon_sym_for] = ACTIONS(3170), + [anon_sym_LPAREN] = ACTIONS(3170), + [anon_sym_await] = ACTIONS(3170), + [anon_sym_while] = ACTIONS(3170), + [anon_sym_do] = ACTIONS(3170), + [anon_sym_try] = ACTIONS(3170), + [anon_sym_break] = ACTIONS(3170), + [anon_sym_continue] = ACTIONS(3170), + [anon_sym_debugger] = ACTIONS(3170), + [anon_sym_return] = ACTIONS(3170), + [anon_sym_throw] = ACTIONS(3170), + [anon_sym_SEMI] = ACTIONS(3170), + [anon_sym_yield] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3170), + [anon_sym_LTtemplate_GT] = ACTIONS(3170), + [anon_sym_DQUOTE] = ACTIONS(3170), + [anon_sym_SQUOTE] = ACTIONS(3170), + [anon_sym_class] = ACTIONS(3170), + [anon_sym_async] = ACTIONS(3170), + [anon_sym_function] = ACTIONS(3170), + [anon_sym_new] = ACTIONS(3170), + [anon_sym_using] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_SLASH] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3170), + [anon_sym_void] = ACTIONS(3170), + [anon_sym_delete] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_DASH_DASH] = ACTIONS(3170), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3170), + [sym_number] = ACTIONS(3170), + [sym_private_property_identifier] = ACTIONS(3170), + [sym_this] = ACTIONS(3170), + [sym_super] = ACTIONS(3170), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [sym_null] = ACTIONS(3170), + [sym_undefined] = ACTIONS(3170), + [anon_sym_AT] = ACTIONS(3170), + [anon_sym_static] = ACTIONS(3170), + [anon_sym_readonly] = ACTIONS(3170), + [anon_sym_get] = ACTIONS(3170), + [anon_sym_set] = ACTIONS(3170), + [anon_sym_declare] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3170), + [anon_sym_private] = ACTIONS(3170), + [anon_sym_protected] = ACTIONS(3170), + [anon_sym_override] = ACTIONS(3170), + [anon_sym_module] = ACTIONS(3170), + [anon_sym_any] = ACTIONS(3170), + [anon_sym_number] = ACTIONS(3170), + [anon_sym_boolean] = ACTIONS(3170), + [anon_sym_string] = ACTIONS(3170), + [anon_sym_symbol] = ACTIONS(3170), + [anon_sym_object] = ACTIONS(3170), + [anon_sym_abstract] = ACTIONS(3170), + [anon_sym_interface] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), [sym_html_comment] = ACTIONS(5), }, - [1684] = { - [sym_comment] = STATE(1684), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1546] = { + [sym_comment] = STATE(1546), + [ts_builtin_sym_end] = ACTIONS(3574), + [sym_identifier] = ACTIONS(3322), + [anon_sym_export] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3322), + [anon_sym_RBRACE] = ACTIONS(3322), + [anon_sym_typeof] = ACTIONS(3322), + [anon_sym_import] = ACTIONS(3322), + [anon_sym_with] = ACTIONS(3322), + [anon_sym_var] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_switch] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3322), + [anon_sym_await] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_debugger] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_throw] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3322), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3322), + [anon_sym_LTtemplate_GT] = ACTIONS(3322), + [anon_sym_DQUOTE] = ACTIONS(3322), + [anon_sym_SQUOTE] = ACTIONS(3322), + [anon_sym_class] = ACTIONS(3322), + [anon_sym_async] = ACTIONS(3322), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_using] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_LT] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3322), + [anon_sym_void] = ACTIONS(3322), + [anon_sym_delete] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3322), + [anon_sym_DASH_DASH] = ACTIONS(3322), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3322), + [sym_number] = ACTIONS(3322), + [sym_private_property_identifier] = ACTIONS(3322), + [sym_this] = ACTIONS(3322), + [sym_super] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_null] = ACTIONS(3322), + [sym_undefined] = ACTIONS(3322), + [anon_sym_AT] = ACTIONS(3322), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_readonly] = ACTIONS(3322), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3322), + [anon_sym_declare] = ACTIONS(3322), + [anon_sym_public] = ACTIONS(3322), + [anon_sym_private] = ACTIONS(3322), + [anon_sym_protected] = ACTIONS(3322), + [anon_sym_override] = ACTIONS(3322), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_any] = ACTIONS(3322), + [anon_sym_number] = ACTIONS(3322), + [anon_sym_boolean] = ACTIONS(3322), + [anon_sym_string] = ACTIONS(3322), + [anon_sym_symbol] = ACTIONS(3322), + [anon_sym_object] = ACTIONS(3322), + [anon_sym_abstract] = ACTIONS(3322), + [anon_sym_interface] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), [sym_html_comment] = ACTIONS(5), }, - [1685] = { - [sym_comment] = STATE(1685), - [ts_builtin_sym_end] = ACTIONS(2079), - [sym_identifier] = ACTIONS(2077), - [anon_sym_export] = ACTIONS(2077), - [anon_sym_type] = ACTIONS(2077), - [anon_sym_namespace] = ACTIONS(2077), - [anon_sym_LBRACE] = ACTIONS(2077), - [anon_sym_RBRACE] = ACTIONS(2077), - [anon_sym_typeof] = ACTIONS(2077), - [anon_sym_import] = ACTIONS(2077), - [anon_sym_with] = ACTIONS(2077), - [anon_sym_var] = ACTIONS(2077), - [anon_sym_let] = ACTIONS(2077), - [anon_sym_const] = ACTIONS(2077), - [anon_sym_BANG] = ACTIONS(2077), - [anon_sym_if] = ACTIONS(2077), - [anon_sym_switch] = ACTIONS(2077), - [anon_sym_for] = ACTIONS(2077), - [anon_sym_LPAREN] = ACTIONS(2077), - [anon_sym_await] = ACTIONS(2077), - [anon_sym_while] = ACTIONS(2077), - [anon_sym_do] = ACTIONS(2077), - [anon_sym_try] = ACTIONS(2077), - [anon_sym_break] = ACTIONS(2077), - [anon_sym_continue] = ACTIONS(2077), - [anon_sym_debugger] = ACTIONS(2077), - [anon_sym_return] = ACTIONS(2077), - [anon_sym_throw] = ACTIONS(2077), - [anon_sym_SEMI] = ACTIONS(2077), - [anon_sym_yield] = ACTIONS(2077), - [anon_sym_LBRACK] = ACTIONS(2077), - [anon_sym_LTtemplate_GT] = ACTIONS(2077), - [anon_sym_DQUOTE] = ACTIONS(2077), - [anon_sym_SQUOTE] = ACTIONS(2077), - [anon_sym_class] = ACTIONS(2077), - [anon_sym_async] = ACTIONS(2077), - [anon_sym_function] = ACTIONS(2077), - [anon_sym_new] = ACTIONS(2077), - [anon_sym_using] = ACTIONS(2077), - [anon_sym_PLUS] = ACTIONS(2077), - [anon_sym_DASH] = ACTIONS(2077), - [anon_sym_SLASH] = ACTIONS(2077), - [anon_sym_LT] = ACTIONS(2077), - [anon_sym_TILDE] = ACTIONS(2077), - [anon_sym_void] = ACTIONS(2077), - [anon_sym_delete] = ACTIONS(2077), - [anon_sym_PLUS_PLUS] = ACTIONS(2077), - [anon_sym_DASH_DASH] = ACTIONS(2077), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2077), - [sym_number] = ACTIONS(2077), - [sym_private_property_identifier] = ACTIONS(2077), - [sym_this] = ACTIONS(2077), - [sym_super] = ACTIONS(2077), - [sym_true] = ACTIONS(2077), - [sym_false] = ACTIONS(2077), - [sym_null] = ACTIONS(2077), - [sym_undefined] = ACTIONS(2077), - [anon_sym_AT] = ACTIONS(2077), - [anon_sym_static] = ACTIONS(2077), - [anon_sym_readonly] = ACTIONS(2077), - [anon_sym_get] = ACTIONS(2077), - [anon_sym_set] = ACTIONS(2077), - [anon_sym_declare] = ACTIONS(2077), - [anon_sym_public] = ACTIONS(2077), - [anon_sym_private] = ACTIONS(2077), - [anon_sym_protected] = ACTIONS(2077), - [anon_sym_override] = ACTIONS(2077), - [anon_sym_module] = ACTIONS(2077), - [anon_sym_any] = ACTIONS(2077), - [anon_sym_number] = ACTIONS(2077), - [anon_sym_boolean] = ACTIONS(2077), - [anon_sym_string] = ACTIONS(2077), - [anon_sym_symbol] = ACTIONS(2077), - [anon_sym_object] = ACTIONS(2077), - [anon_sym_abstract] = ACTIONS(2077), - [anon_sym_interface] = ACTIONS(2077), - [anon_sym_enum] = ACTIONS(2077), + [1547] = { + [sym_comment] = STATE(1547), + [ts_builtin_sym_end] = ACTIONS(3528), + [sym_identifier] = ACTIONS(3332), + [anon_sym_export] = ACTIONS(3332), + [anon_sym_type] = ACTIONS(3332), + [anon_sym_namespace] = ACTIONS(3332), + [anon_sym_LBRACE] = ACTIONS(3332), + [anon_sym_RBRACE] = ACTIONS(3332), + [anon_sym_typeof] = ACTIONS(3332), + [anon_sym_import] = ACTIONS(3332), + [anon_sym_with] = ACTIONS(3332), + [anon_sym_var] = ACTIONS(3332), + [anon_sym_let] = ACTIONS(3332), + [anon_sym_const] = ACTIONS(3332), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_if] = ACTIONS(3332), + [anon_sym_switch] = ACTIONS(3332), + [anon_sym_for] = ACTIONS(3332), + [anon_sym_LPAREN] = ACTIONS(3332), + [anon_sym_await] = ACTIONS(3332), + [anon_sym_while] = ACTIONS(3332), + [anon_sym_do] = ACTIONS(3332), + [anon_sym_try] = ACTIONS(3332), + [anon_sym_break] = ACTIONS(3332), + [anon_sym_continue] = ACTIONS(3332), + [anon_sym_debugger] = ACTIONS(3332), + [anon_sym_return] = ACTIONS(3332), + [anon_sym_throw] = ACTIONS(3332), + [anon_sym_SEMI] = ACTIONS(3332), + [anon_sym_yield] = ACTIONS(3332), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_LTtemplate_GT] = ACTIONS(3332), + [anon_sym_DQUOTE] = ACTIONS(3332), + [anon_sym_SQUOTE] = ACTIONS(3332), + [anon_sym_class] = ACTIONS(3332), + [anon_sym_async] = ACTIONS(3332), + [anon_sym_function] = ACTIONS(3332), + [anon_sym_new] = ACTIONS(3332), + [anon_sym_using] = ACTIONS(3332), + [anon_sym_PLUS] = ACTIONS(3332), + [anon_sym_DASH] = ACTIONS(3332), + [anon_sym_SLASH] = ACTIONS(3332), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_TILDE] = ACTIONS(3332), + [anon_sym_void] = ACTIONS(3332), + [anon_sym_delete] = ACTIONS(3332), + [anon_sym_PLUS_PLUS] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3332), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3332), + [sym_number] = ACTIONS(3332), + [sym_private_property_identifier] = ACTIONS(3332), + [sym_this] = ACTIONS(3332), + [sym_super] = ACTIONS(3332), + [sym_true] = ACTIONS(3332), + [sym_false] = ACTIONS(3332), + [sym_null] = ACTIONS(3332), + [sym_undefined] = ACTIONS(3332), + [anon_sym_AT] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3332), + [anon_sym_readonly] = ACTIONS(3332), + [anon_sym_get] = ACTIONS(3332), + [anon_sym_set] = ACTIONS(3332), + [anon_sym_declare] = ACTIONS(3332), + [anon_sym_public] = ACTIONS(3332), + [anon_sym_private] = ACTIONS(3332), + [anon_sym_protected] = ACTIONS(3332), + [anon_sym_override] = ACTIONS(3332), + [anon_sym_module] = ACTIONS(3332), + [anon_sym_any] = ACTIONS(3332), + [anon_sym_number] = ACTIONS(3332), + [anon_sym_boolean] = ACTIONS(3332), + [anon_sym_string] = ACTIONS(3332), + [anon_sym_symbol] = ACTIONS(3332), + [anon_sym_object] = ACTIONS(3332), + [anon_sym_abstract] = ACTIONS(3332), + [anon_sym_interface] = ACTIONS(3332), + [anon_sym_enum] = ACTIONS(3332), [sym_html_comment] = ACTIONS(5), }, - [1686] = { - [sym_comment] = STATE(1686), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1548] = { + [sym_comment] = STATE(1548), + [ts_builtin_sym_end] = ACTIONS(3502), + [sym_identifier] = ACTIONS(3330), + [anon_sym_export] = ACTIONS(3330), + [anon_sym_type] = ACTIONS(3330), + [anon_sym_namespace] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3330), + [anon_sym_RBRACE] = ACTIONS(3330), + [anon_sym_typeof] = ACTIONS(3330), + [anon_sym_import] = ACTIONS(3330), + [anon_sym_with] = ACTIONS(3330), + [anon_sym_var] = ACTIONS(3330), + [anon_sym_let] = ACTIONS(3330), + [anon_sym_const] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3330), + [anon_sym_if] = ACTIONS(3330), + [anon_sym_switch] = ACTIONS(3330), + [anon_sym_for] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3330), + [anon_sym_await] = ACTIONS(3330), + [anon_sym_while] = ACTIONS(3330), + [anon_sym_do] = ACTIONS(3330), + [anon_sym_try] = ACTIONS(3330), + [anon_sym_break] = ACTIONS(3330), + [anon_sym_continue] = ACTIONS(3330), + [anon_sym_debugger] = ACTIONS(3330), + [anon_sym_return] = ACTIONS(3330), + [anon_sym_throw] = ACTIONS(3330), + [anon_sym_SEMI] = ACTIONS(3330), + [anon_sym_yield] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3330), + [anon_sym_LTtemplate_GT] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(3330), + [anon_sym_SQUOTE] = ACTIONS(3330), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_async] = ACTIONS(3330), + [anon_sym_function] = ACTIONS(3330), + [anon_sym_new] = ACTIONS(3330), + [anon_sym_using] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_LT] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3330), + [anon_sym_void] = ACTIONS(3330), + [anon_sym_delete] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3330), + [anon_sym_DASH_DASH] = ACTIONS(3330), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3330), + [sym_number] = ACTIONS(3330), + [sym_private_property_identifier] = ACTIONS(3330), + [sym_this] = ACTIONS(3330), + [sym_super] = ACTIONS(3330), + [sym_true] = ACTIONS(3330), + [sym_false] = ACTIONS(3330), + [sym_null] = ACTIONS(3330), + [sym_undefined] = ACTIONS(3330), + [anon_sym_AT] = ACTIONS(3330), + [anon_sym_static] = ACTIONS(3330), + [anon_sym_readonly] = ACTIONS(3330), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3330), + [anon_sym_declare] = ACTIONS(3330), + [anon_sym_public] = ACTIONS(3330), + [anon_sym_private] = ACTIONS(3330), + [anon_sym_protected] = ACTIONS(3330), + [anon_sym_override] = ACTIONS(3330), + [anon_sym_module] = ACTIONS(3330), + [anon_sym_any] = ACTIONS(3330), + [anon_sym_number] = ACTIONS(3330), + [anon_sym_boolean] = ACTIONS(3330), + [anon_sym_string] = ACTIONS(3330), + [anon_sym_symbol] = ACTIONS(3330), + [anon_sym_object] = ACTIONS(3330), + [anon_sym_abstract] = ACTIONS(3330), + [anon_sym_interface] = ACTIONS(3330), + [anon_sym_enum] = ACTIONS(3330), [sym_html_comment] = ACTIONS(5), }, - [1687] = { - [sym_comment] = STATE(1687), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1549] = { + [sym_comment] = STATE(1549), + [ts_builtin_sym_end] = ACTIONS(2127), + [sym_identifier] = ACTIONS(2125), + [anon_sym_export] = ACTIONS(2125), + [anon_sym_type] = ACTIONS(2125), + [anon_sym_namespace] = ACTIONS(2125), + [anon_sym_LBRACE] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2125), + [anon_sym_typeof] = ACTIONS(2125), + [anon_sym_import] = ACTIONS(2125), + [anon_sym_with] = ACTIONS(2125), + [anon_sym_var] = ACTIONS(2125), + [anon_sym_let] = ACTIONS(2125), + [anon_sym_const] = ACTIONS(2125), + [anon_sym_BANG] = ACTIONS(2125), + [anon_sym_if] = ACTIONS(2125), + [anon_sym_switch] = ACTIONS(2125), + [anon_sym_for] = ACTIONS(2125), + [anon_sym_LPAREN] = ACTIONS(2125), + [anon_sym_await] = ACTIONS(2125), + [anon_sym_while] = ACTIONS(2125), + [anon_sym_do] = ACTIONS(2125), + [anon_sym_try] = ACTIONS(2125), + [anon_sym_break] = ACTIONS(2125), + [anon_sym_continue] = ACTIONS(2125), + [anon_sym_debugger] = ACTIONS(2125), + [anon_sym_return] = ACTIONS(2125), + [anon_sym_throw] = ACTIONS(2125), + [anon_sym_SEMI] = ACTIONS(2125), + [anon_sym_yield] = ACTIONS(2125), + [anon_sym_LBRACK] = ACTIONS(2125), + [anon_sym_LTtemplate_GT] = ACTIONS(2125), + [anon_sym_DQUOTE] = ACTIONS(2125), + [anon_sym_SQUOTE] = ACTIONS(2125), + [anon_sym_class] = ACTIONS(2125), + [anon_sym_async] = ACTIONS(2125), + [anon_sym_function] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_using] = ACTIONS(2125), + [anon_sym_PLUS] = ACTIONS(2125), + [anon_sym_DASH] = ACTIONS(2125), + [anon_sym_SLASH] = ACTIONS(2125), + [anon_sym_LT] = ACTIONS(2125), + [anon_sym_TILDE] = ACTIONS(2125), + [anon_sym_void] = ACTIONS(2125), + [anon_sym_delete] = ACTIONS(2125), + [anon_sym_PLUS_PLUS] = ACTIONS(2125), + [anon_sym_DASH_DASH] = ACTIONS(2125), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2125), + [sym_number] = ACTIONS(2125), + [sym_private_property_identifier] = ACTIONS(2125), + [sym_this] = ACTIONS(2125), + [sym_super] = ACTIONS(2125), + [sym_true] = ACTIONS(2125), + [sym_false] = ACTIONS(2125), + [sym_null] = ACTIONS(2125), + [sym_undefined] = ACTIONS(2125), + [anon_sym_AT] = ACTIONS(2125), + [anon_sym_static] = ACTIONS(2125), + [anon_sym_readonly] = ACTIONS(2125), + [anon_sym_get] = ACTIONS(2125), + [anon_sym_set] = ACTIONS(2125), + [anon_sym_declare] = ACTIONS(2125), + [anon_sym_public] = ACTIONS(2125), + [anon_sym_private] = ACTIONS(2125), + [anon_sym_protected] = ACTIONS(2125), + [anon_sym_override] = ACTIONS(2125), + [anon_sym_module] = ACTIONS(2125), + [anon_sym_any] = ACTIONS(2125), + [anon_sym_number] = ACTIONS(2125), + [anon_sym_boolean] = ACTIONS(2125), + [anon_sym_string] = ACTIONS(2125), + [anon_sym_symbol] = ACTIONS(2125), + [anon_sym_object] = ACTIONS(2125), + [anon_sym_abstract] = ACTIONS(2125), + [anon_sym_interface] = ACTIONS(2125), + [anon_sym_enum] = ACTIONS(2125), [sym_html_comment] = ACTIONS(5), }, - [1688] = { - [sym_comment] = STATE(1688), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1550] = { + [sym_comment] = STATE(1550), + [ts_builtin_sym_end] = ACTIONS(3522), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3198), + [anon_sym_RBRACE] = ACTIONS(3198), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3198), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3198), + [anon_sym_LTtemplate_GT] = ACTIONS(3198), + [anon_sym_DQUOTE] = ACTIONS(3198), + [anon_sym_SQUOTE] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_using] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_LT] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3198), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3198), + [anon_sym_DASH_DASH] = ACTIONS(3198), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3198), + [sym_number] = ACTIONS(3198), + [sym_private_property_identifier] = ACTIONS(3198), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3198), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_override] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_object] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), [sym_html_comment] = ACTIONS(5), }, - [1689] = { - [sym_comment] = STATE(1689), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1551] = { + [sym_comment] = STATE(1551), + [ts_builtin_sym_end] = ACTIONS(3426), + [sym_identifier] = ACTIONS(3348), + [anon_sym_export] = ACTIONS(3348), + [anon_sym_type] = ACTIONS(3348), + [anon_sym_namespace] = ACTIONS(3348), + [anon_sym_LBRACE] = ACTIONS(3348), + [anon_sym_RBRACE] = ACTIONS(3348), + [anon_sym_typeof] = ACTIONS(3348), + [anon_sym_import] = ACTIONS(3348), + [anon_sym_with] = ACTIONS(3348), + [anon_sym_var] = ACTIONS(3348), + [anon_sym_let] = ACTIONS(3348), + [anon_sym_const] = ACTIONS(3348), + [anon_sym_BANG] = ACTIONS(3348), + [anon_sym_if] = ACTIONS(3348), + [anon_sym_switch] = ACTIONS(3348), + [anon_sym_for] = ACTIONS(3348), + [anon_sym_LPAREN] = ACTIONS(3348), + [anon_sym_await] = ACTIONS(3348), + [anon_sym_while] = ACTIONS(3348), + [anon_sym_do] = ACTIONS(3348), + [anon_sym_try] = ACTIONS(3348), + [anon_sym_break] = ACTIONS(3348), + [anon_sym_continue] = ACTIONS(3348), + [anon_sym_debugger] = ACTIONS(3348), + [anon_sym_return] = ACTIONS(3348), + [anon_sym_throw] = ACTIONS(3348), + [anon_sym_SEMI] = ACTIONS(3348), + [anon_sym_yield] = ACTIONS(3348), + [anon_sym_LBRACK] = ACTIONS(3348), + [anon_sym_LTtemplate_GT] = ACTIONS(3348), + [anon_sym_DQUOTE] = ACTIONS(3348), + [anon_sym_SQUOTE] = ACTIONS(3348), + [anon_sym_class] = ACTIONS(3348), + [anon_sym_async] = ACTIONS(3348), + [anon_sym_function] = ACTIONS(3348), + [anon_sym_new] = ACTIONS(3348), + [anon_sym_using] = ACTIONS(3348), + [anon_sym_PLUS] = ACTIONS(3348), + [anon_sym_DASH] = ACTIONS(3348), + [anon_sym_SLASH] = ACTIONS(3348), + [anon_sym_LT] = ACTIONS(3348), + [anon_sym_TILDE] = ACTIONS(3348), + [anon_sym_void] = ACTIONS(3348), + [anon_sym_delete] = ACTIONS(3348), + [anon_sym_PLUS_PLUS] = ACTIONS(3348), + [anon_sym_DASH_DASH] = ACTIONS(3348), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3348), + [sym_number] = ACTIONS(3348), + [sym_private_property_identifier] = ACTIONS(3348), + [sym_this] = ACTIONS(3348), + [sym_super] = ACTIONS(3348), + [sym_true] = ACTIONS(3348), + [sym_false] = ACTIONS(3348), + [sym_null] = ACTIONS(3348), + [sym_undefined] = ACTIONS(3348), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_static] = ACTIONS(3348), + [anon_sym_readonly] = ACTIONS(3348), + [anon_sym_get] = ACTIONS(3348), + [anon_sym_set] = ACTIONS(3348), + [anon_sym_declare] = ACTIONS(3348), + [anon_sym_public] = ACTIONS(3348), + [anon_sym_private] = ACTIONS(3348), + [anon_sym_protected] = ACTIONS(3348), + [anon_sym_override] = ACTIONS(3348), + [anon_sym_module] = ACTIONS(3348), + [anon_sym_any] = ACTIONS(3348), + [anon_sym_number] = ACTIONS(3348), + [anon_sym_boolean] = ACTIONS(3348), + [anon_sym_string] = ACTIONS(3348), + [anon_sym_symbol] = ACTIONS(3348), + [anon_sym_object] = ACTIONS(3348), + [anon_sym_abstract] = ACTIONS(3348), + [anon_sym_interface] = ACTIONS(3348), + [anon_sym_enum] = ACTIONS(3348), [sym_html_comment] = ACTIONS(5), }, - [1690] = { - [sym_comment] = STATE(1690), - [ts_builtin_sym_end] = ACTIONS(3422), - [sym_identifier] = ACTIONS(3296), - [anon_sym_export] = ACTIONS(3296), - [anon_sym_type] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3296), - [anon_sym_RBRACE] = ACTIONS(3296), - [anon_sym_typeof] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_with] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3296), - [anon_sym_await] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_debugger] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3296), - [anon_sym_yield] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3296), - [anon_sym_LTtemplate_GT] = ACTIONS(3296), - [anon_sym_DQUOTE] = ACTIONS(3296), - [anon_sym_SQUOTE] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_async] = ACTIONS(3296), - [anon_sym_function] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_using] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_LT] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3296), - [anon_sym_void] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3296), - [anon_sym_DASH_DASH] = ACTIONS(3296), + [1552] = { + [sym_comment] = STATE(1552), + [ts_builtin_sym_end] = ACTIONS(3532), + [sym_identifier] = ACTIONS(3324), + [anon_sym_export] = ACTIONS(3324), + [anon_sym_type] = ACTIONS(3324), + [anon_sym_namespace] = ACTIONS(3324), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_typeof] = ACTIONS(3324), + [anon_sym_import] = ACTIONS(3324), + [anon_sym_with] = ACTIONS(3324), + [anon_sym_var] = ACTIONS(3324), + [anon_sym_let] = ACTIONS(3324), + [anon_sym_const] = ACTIONS(3324), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_if] = ACTIONS(3324), + [anon_sym_switch] = ACTIONS(3324), + [anon_sym_for] = ACTIONS(3324), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_await] = ACTIONS(3324), + [anon_sym_while] = ACTIONS(3324), + [anon_sym_do] = ACTIONS(3324), + [anon_sym_try] = ACTIONS(3324), + [anon_sym_break] = ACTIONS(3324), + [anon_sym_continue] = ACTIONS(3324), + [anon_sym_debugger] = ACTIONS(3324), + [anon_sym_return] = ACTIONS(3324), + [anon_sym_throw] = ACTIONS(3324), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_yield] = ACTIONS(3324), + [anon_sym_LBRACK] = ACTIONS(3324), + [anon_sym_LTtemplate_GT] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [anon_sym_class] = ACTIONS(3324), + [anon_sym_async] = ACTIONS(3324), + [anon_sym_function] = ACTIONS(3324), + [anon_sym_new] = ACTIONS(3324), + [anon_sym_using] = ACTIONS(3324), + [anon_sym_PLUS] = ACTIONS(3324), + [anon_sym_DASH] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_void] = ACTIONS(3324), + [anon_sym_delete] = ACTIONS(3324), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_DASH_DASH] = ACTIONS(3324), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3296), - [sym_number] = ACTIONS(3296), - [sym_private_property_identifier] = ACTIONS(3296), - [sym_this] = ACTIONS(3296), - [sym_super] = ACTIONS(3296), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [sym_null] = ACTIONS(3296), - [sym_undefined] = ACTIONS(3296), - [anon_sym_AT] = ACTIONS(3296), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_readonly] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_override] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3296), - [anon_sym_any] = ACTIONS(3296), - [anon_sym_number] = ACTIONS(3296), - [anon_sym_boolean] = ACTIONS(3296), - [anon_sym_string] = ACTIONS(3296), - [anon_sym_symbol] = ACTIONS(3296), - [anon_sym_object] = ACTIONS(3296), - [anon_sym_abstract] = ACTIONS(3296), - [anon_sym_interface] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), + [anon_sym_BQUOTE] = ACTIONS(3324), + [sym_number] = ACTIONS(3324), + [sym_private_property_identifier] = ACTIONS(3324), + [sym_this] = ACTIONS(3324), + [sym_super] = ACTIONS(3324), + [sym_true] = ACTIONS(3324), + [sym_false] = ACTIONS(3324), + [sym_null] = ACTIONS(3324), + [sym_undefined] = ACTIONS(3324), + [anon_sym_AT] = ACTIONS(3324), + [anon_sym_static] = ACTIONS(3324), + [anon_sym_readonly] = ACTIONS(3324), + [anon_sym_get] = ACTIONS(3324), + [anon_sym_set] = ACTIONS(3324), + [anon_sym_declare] = ACTIONS(3324), + [anon_sym_public] = ACTIONS(3324), + [anon_sym_private] = ACTIONS(3324), + [anon_sym_protected] = ACTIONS(3324), + [anon_sym_override] = ACTIONS(3324), + [anon_sym_module] = ACTIONS(3324), + [anon_sym_any] = ACTIONS(3324), + [anon_sym_number] = ACTIONS(3324), + [anon_sym_boolean] = ACTIONS(3324), + [anon_sym_string] = ACTIONS(3324), + [anon_sym_symbol] = ACTIONS(3324), + [anon_sym_object] = ACTIONS(3324), + [anon_sym_abstract] = ACTIONS(3324), + [anon_sym_interface] = ACTIONS(3324), + [anon_sym_enum] = ACTIONS(3324), [sym_html_comment] = ACTIONS(5), }, - [1691] = { - [sym_comment] = STATE(1691), - [ts_builtin_sym_end] = ACTIONS(2107), - [sym_identifier] = ACTIONS(2105), - [anon_sym_export] = ACTIONS(2105), - [anon_sym_type] = ACTIONS(2105), - [anon_sym_namespace] = ACTIONS(2105), - [anon_sym_LBRACE] = ACTIONS(2105), - [anon_sym_RBRACE] = ACTIONS(2105), - [anon_sym_typeof] = ACTIONS(2105), - [anon_sym_import] = ACTIONS(2105), - [anon_sym_with] = ACTIONS(2105), - [anon_sym_var] = ACTIONS(2105), - [anon_sym_let] = ACTIONS(2105), - [anon_sym_const] = ACTIONS(2105), - [anon_sym_BANG] = ACTIONS(2105), - [anon_sym_if] = ACTIONS(2105), - [anon_sym_switch] = ACTIONS(2105), - [anon_sym_for] = ACTIONS(2105), - [anon_sym_LPAREN] = ACTIONS(2105), - [anon_sym_await] = ACTIONS(2105), - [anon_sym_while] = ACTIONS(2105), - [anon_sym_do] = ACTIONS(2105), - [anon_sym_try] = ACTIONS(2105), - [anon_sym_break] = ACTIONS(2105), - [anon_sym_continue] = ACTIONS(2105), - [anon_sym_debugger] = ACTIONS(2105), - [anon_sym_return] = ACTIONS(2105), - [anon_sym_throw] = ACTIONS(2105), - [anon_sym_SEMI] = ACTIONS(2105), - [anon_sym_yield] = ACTIONS(2105), - [anon_sym_LBRACK] = ACTIONS(2105), - [anon_sym_LTtemplate_GT] = ACTIONS(2105), - [anon_sym_DQUOTE] = ACTIONS(2105), - [anon_sym_SQUOTE] = ACTIONS(2105), - [anon_sym_class] = ACTIONS(2105), - [anon_sym_async] = ACTIONS(2105), - [anon_sym_function] = ACTIONS(2105), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(2105), - [anon_sym_PLUS] = ACTIONS(2105), - [anon_sym_DASH] = ACTIONS(2105), - [anon_sym_SLASH] = ACTIONS(2105), - [anon_sym_LT] = ACTIONS(2105), - [anon_sym_TILDE] = ACTIONS(2105), - [anon_sym_void] = ACTIONS(2105), - [anon_sym_delete] = ACTIONS(2105), - [anon_sym_PLUS_PLUS] = ACTIONS(2105), - [anon_sym_DASH_DASH] = ACTIONS(2105), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2105), - [sym_number] = ACTIONS(2105), - [sym_private_property_identifier] = ACTIONS(2105), - [sym_this] = ACTIONS(2105), - [sym_super] = ACTIONS(2105), - [sym_true] = ACTIONS(2105), - [sym_false] = ACTIONS(2105), - [sym_null] = ACTIONS(2105), - [sym_undefined] = ACTIONS(2105), - [anon_sym_AT] = ACTIONS(2105), - [anon_sym_static] = ACTIONS(2105), - [anon_sym_readonly] = ACTIONS(2105), - [anon_sym_get] = ACTIONS(2105), - [anon_sym_set] = ACTIONS(2105), - [anon_sym_declare] = ACTIONS(2105), - [anon_sym_public] = ACTIONS(2105), - [anon_sym_private] = ACTIONS(2105), - [anon_sym_protected] = ACTIONS(2105), - [anon_sym_override] = ACTIONS(2105), - [anon_sym_module] = ACTIONS(2105), - [anon_sym_any] = ACTIONS(2105), - [anon_sym_number] = ACTIONS(2105), - [anon_sym_boolean] = ACTIONS(2105), - [anon_sym_string] = ACTIONS(2105), - [anon_sym_symbol] = ACTIONS(2105), - [anon_sym_object] = ACTIONS(2105), - [anon_sym_abstract] = ACTIONS(2105), - [anon_sym_interface] = ACTIONS(2105), - [anon_sym_enum] = ACTIONS(2105), + [1553] = { + [sym_comment] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(3506), + [sym_identifier] = ACTIONS(3232), + [anon_sym_export] = ACTIONS(3232), + [anon_sym_type] = ACTIONS(3232), + [anon_sym_namespace] = ACTIONS(3232), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_typeof] = ACTIONS(3232), + [anon_sym_import] = ACTIONS(3232), + [anon_sym_with] = ACTIONS(3232), + [anon_sym_var] = ACTIONS(3232), + [anon_sym_let] = ACTIONS(3232), + [anon_sym_const] = ACTIONS(3232), + [anon_sym_BANG] = ACTIONS(3232), + [anon_sym_if] = ACTIONS(3232), + [anon_sym_switch] = ACTIONS(3232), + [anon_sym_for] = ACTIONS(3232), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_await] = ACTIONS(3232), + [anon_sym_while] = ACTIONS(3232), + [anon_sym_do] = ACTIONS(3232), + [anon_sym_try] = ACTIONS(3232), + [anon_sym_break] = ACTIONS(3232), + [anon_sym_continue] = ACTIONS(3232), + [anon_sym_debugger] = ACTIONS(3232), + [anon_sym_return] = ACTIONS(3232), + [anon_sym_throw] = ACTIONS(3232), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_yield] = ACTIONS(3232), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_LTtemplate_GT] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3232), + [anon_sym_class] = ACTIONS(3232), + [anon_sym_async] = ACTIONS(3232), + [anon_sym_function] = ACTIONS(3232), + [anon_sym_new] = ACTIONS(3232), + [anon_sym_using] = ACTIONS(3232), + [anon_sym_PLUS] = ACTIONS(3232), + [anon_sym_DASH] = ACTIONS(3232), + [anon_sym_SLASH] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_void] = ACTIONS(3232), + [anon_sym_delete] = ACTIONS(3232), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3232), + [sym_number] = ACTIONS(3232), + [sym_private_property_identifier] = ACTIONS(3232), + [sym_this] = ACTIONS(3232), + [sym_super] = ACTIONS(3232), + [sym_true] = ACTIONS(3232), + [sym_false] = ACTIONS(3232), + [sym_null] = ACTIONS(3232), + [sym_undefined] = ACTIONS(3232), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_static] = ACTIONS(3232), + [anon_sym_readonly] = ACTIONS(3232), + [anon_sym_get] = ACTIONS(3232), + [anon_sym_set] = ACTIONS(3232), + [anon_sym_declare] = ACTIONS(3232), + [anon_sym_public] = ACTIONS(3232), + [anon_sym_private] = ACTIONS(3232), + [anon_sym_protected] = ACTIONS(3232), + [anon_sym_override] = ACTIONS(3232), + [anon_sym_module] = ACTIONS(3232), + [anon_sym_any] = ACTIONS(3232), + [anon_sym_number] = ACTIONS(3232), + [anon_sym_boolean] = ACTIONS(3232), + [anon_sym_string] = ACTIONS(3232), + [anon_sym_symbol] = ACTIONS(3232), + [anon_sym_object] = ACTIONS(3232), + [anon_sym_abstract] = ACTIONS(3232), + [anon_sym_interface] = ACTIONS(3232), + [anon_sym_enum] = ACTIONS(3232), [sym_html_comment] = ACTIONS(5), }, - [1692] = { - [sym_comment] = STATE(1692), - [ts_builtin_sym_end] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3252), - [anon_sym_RBRACE] = ACTIONS(3252), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3252), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3252), - [anon_sym_LTtemplate_GT] = ACTIONS(3252), - [anon_sym_DQUOTE] = ACTIONS(3252), - [anon_sym_SQUOTE] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_using] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_LT] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3252), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3252), - [anon_sym_DASH_DASH] = ACTIONS(3252), + [1554] = { + [sym_comment] = STATE(1554), + [ts_builtin_sym_end] = ACTIONS(3586), + [sym_identifier] = ACTIONS(3132), + [anon_sym_export] = ACTIONS(3132), + [anon_sym_type] = ACTIONS(3132), + [anon_sym_namespace] = ACTIONS(3132), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_typeof] = ACTIONS(3132), + [anon_sym_import] = ACTIONS(3132), + [anon_sym_with] = ACTIONS(3132), + [anon_sym_var] = ACTIONS(3132), + [anon_sym_let] = ACTIONS(3132), + [anon_sym_const] = ACTIONS(3132), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_if] = ACTIONS(3132), + [anon_sym_switch] = ACTIONS(3132), + [anon_sym_for] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_await] = ACTIONS(3132), + [anon_sym_while] = ACTIONS(3132), + [anon_sym_do] = ACTIONS(3132), + [anon_sym_try] = ACTIONS(3132), + [anon_sym_break] = ACTIONS(3132), + [anon_sym_continue] = ACTIONS(3132), + [anon_sym_debugger] = ACTIONS(3132), + [anon_sym_return] = ACTIONS(3132), + [anon_sym_throw] = ACTIONS(3132), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_yield] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LTtemplate_GT] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3132), + [anon_sym_class] = ACTIONS(3132), + [anon_sym_async] = ACTIONS(3132), + [anon_sym_function] = ACTIONS(3132), + [anon_sym_new] = ACTIONS(3132), + [anon_sym_using] = ACTIONS(3132), + [anon_sym_PLUS] = ACTIONS(3132), + [anon_sym_DASH] = ACTIONS(3132), + [anon_sym_SLASH] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_void] = ACTIONS(3132), + [anon_sym_delete] = ACTIONS(3132), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3132), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3252), - [sym_number] = ACTIONS(3252), - [sym_private_property_identifier] = ACTIONS(3252), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3252), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_override] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_object] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3132), + [sym_private_property_identifier] = ACTIONS(3132), + [sym_this] = ACTIONS(3132), + [sym_super] = ACTIONS(3132), + [sym_true] = ACTIONS(3132), + [sym_false] = ACTIONS(3132), + [sym_null] = ACTIONS(3132), + [sym_undefined] = ACTIONS(3132), + [anon_sym_AT] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3132), + [anon_sym_readonly] = ACTIONS(3132), + [anon_sym_get] = ACTIONS(3132), + [anon_sym_set] = ACTIONS(3132), + [anon_sym_declare] = ACTIONS(3132), + [anon_sym_public] = ACTIONS(3132), + [anon_sym_private] = ACTIONS(3132), + [anon_sym_protected] = ACTIONS(3132), + [anon_sym_override] = ACTIONS(3132), + [anon_sym_module] = ACTIONS(3132), + [anon_sym_any] = ACTIONS(3132), + [anon_sym_number] = ACTIONS(3132), + [anon_sym_boolean] = ACTIONS(3132), + [anon_sym_string] = ACTIONS(3132), + [anon_sym_symbol] = ACTIONS(3132), + [anon_sym_object] = ACTIONS(3132), + [anon_sym_abstract] = ACTIONS(3132), + [anon_sym_interface] = ACTIONS(3132), + [anon_sym_enum] = ACTIONS(3132), [sym_html_comment] = ACTIONS(5), }, - [1693] = { - [sym_comment] = STATE(1693), - [ts_builtin_sym_end] = ACTIONS(3452), - [sym_identifier] = ACTIONS(3320), - [anon_sym_export] = ACTIONS(3320), - [anon_sym_type] = ACTIONS(3320), - [anon_sym_namespace] = ACTIONS(3320), - [anon_sym_LBRACE] = ACTIONS(3320), - [anon_sym_RBRACE] = ACTIONS(3320), - [anon_sym_typeof] = ACTIONS(3320), - [anon_sym_import] = ACTIONS(3320), - [anon_sym_with] = ACTIONS(3320), - [anon_sym_var] = ACTIONS(3320), - [anon_sym_let] = ACTIONS(3320), - [anon_sym_const] = ACTIONS(3320), - [anon_sym_BANG] = ACTIONS(3320), - [anon_sym_if] = ACTIONS(3320), - [anon_sym_switch] = ACTIONS(3320), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(3320), - [anon_sym_await] = ACTIONS(3320), - [anon_sym_while] = ACTIONS(3320), - [anon_sym_do] = ACTIONS(3320), - [anon_sym_try] = ACTIONS(3320), - [anon_sym_break] = ACTIONS(3320), - [anon_sym_continue] = ACTIONS(3320), - [anon_sym_debugger] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(3320), - [anon_sym_throw] = ACTIONS(3320), - [anon_sym_SEMI] = ACTIONS(3320), - [anon_sym_yield] = ACTIONS(3320), - [anon_sym_LBRACK] = ACTIONS(3320), - [anon_sym_LTtemplate_GT] = ACTIONS(3320), - [anon_sym_DQUOTE] = ACTIONS(3320), - [anon_sym_SQUOTE] = ACTIONS(3320), - [anon_sym_class] = ACTIONS(3320), - [anon_sym_async] = ACTIONS(3320), - [anon_sym_function] = ACTIONS(3320), - [anon_sym_new] = ACTIONS(3320), - [anon_sym_using] = ACTIONS(3320), - [anon_sym_PLUS] = ACTIONS(3320), - [anon_sym_DASH] = ACTIONS(3320), - [anon_sym_SLASH] = ACTIONS(3320), - [anon_sym_LT] = ACTIONS(3320), - [anon_sym_TILDE] = ACTIONS(3320), - [anon_sym_void] = ACTIONS(3320), - [anon_sym_delete] = ACTIONS(3320), - [anon_sym_PLUS_PLUS] = ACTIONS(3320), - [anon_sym_DASH_DASH] = ACTIONS(3320), + [1555] = { + [sym_comment] = STATE(1555), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2111), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2111), + [anon_sym_LBRACE] = ACTIONS(2111), + [anon_sym_RBRACE] = ACTIONS(2111), + [anon_sym_typeof] = ACTIONS(2111), + [anon_sym_import] = ACTIONS(2111), + [anon_sym_with] = ACTIONS(2111), + [anon_sym_var] = ACTIONS(2111), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_const] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(2111), + [anon_sym_if] = ACTIONS(2111), + [anon_sym_switch] = ACTIONS(2111), + [anon_sym_for] = ACTIONS(2111), + [anon_sym_LPAREN] = ACTIONS(2111), + [anon_sym_await] = ACTIONS(2111), + [anon_sym_while] = ACTIONS(2111), + [anon_sym_do] = ACTIONS(2111), + [anon_sym_try] = ACTIONS(2111), + [anon_sym_break] = ACTIONS(2111), + [anon_sym_continue] = ACTIONS(2111), + [anon_sym_debugger] = ACTIONS(2111), + [anon_sym_return] = ACTIONS(2111), + [anon_sym_throw] = ACTIONS(2111), + [anon_sym_SEMI] = ACTIONS(2111), + [anon_sym_yield] = ACTIONS(2111), + [anon_sym_LBRACK] = ACTIONS(2111), + [anon_sym_LTtemplate_GT] = ACTIONS(2111), + [anon_sym_DQUOTE] = ACTIONS(2111), + [anon_sym_SQUOTE] = ACTIONS(2111), + [anon_sym_class] = ACTIONS(2111), + [anon_sym_async] = ACTIONS(2111), + [anon_sym_function] = ACTIONS(2111), + [anon_sym_new] = ACTIONS(2111), + [anon_sym_using] = ACTIONS(2111), + [anon_sym_PLUS] = ACTIONS(2111), + [anon_sym_DASH] = ACTIONS(2111), + [anon_sym_SLASH] = ACTIONS(2111), + [anon_sym_LT] = ACTIONS(2111), + [anon_sym_TILDE] = ACTIONS(2111), + [anon_sym_void] = ACTIONS(2111), + [anon_sym_delete] = ACTIONS(2111), + [anon_sym_PLUS_PLUS] = ACTIONS(2111), + [anon_sym_DASH_DASH] = ACTIONS(2111), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2111), + [sym_number] = ACTIONS(2111), + [sym_private_property_identifier] = ACTIONS(2111), + [sym_this] = ACTIONS(2111), + [sym_super] = ACTIONS(2111), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [sym_null] = ACTIONS(2111), + [sym_undefined] = ACTIONS(2111), + [anon_sym_AT] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), + [anon_sym_abstract] = ACTIONS(2111), + [anon_sym_interface] = ACTIONS(2111), + [anon_sym_enum] = ACTIONS(2111), + [sym_html_comment] = ACTIONS(5), + }, + [1556] = { + [sym_comment] = STATE(1556), + [ts_builtin_sym_end] = ACTIONS(3588), + [sym_identifier] = ACTIONS(3434), + [anon_sym_export] = ACTIONS(3434), + [anon_sym_type] = ACTIONS(3434), + [anon_sym_namespace] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3434), + [anon_sym_RBRACE] = ACTIONS(3434), + [anon_sym_typeof] = ACTIONS(3434), + [anon_sym_import] = ACTIONS(3434), + [anon_sym_with] = ACTIONS(3434), + [anon_sym_var] = ACTIONS(3434), + [anon_sym_let] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_BANG] = ACTIONS(3434), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_LPAREN] = ACTIONS(3434), + [anon_sym_await] = ACTIONS(3434), + [anon_sym_while] = ACTIONS(3434), + [anon_sym_do] = ACTIONS(3434), + [anon_sym_try] = ACTIONS(3434), + [anon_sym_break] = ACTIONS(3434), + [anon_sym_continue] = ACTIONS(3434), + [anon_sym_debugger] = ACTIONS(3434), + [anon_sym_return] = ACTIONS(3434), + [anon_sym_throw] = ACTIONS(3434), + [anon_sym_SEMI] = ACTIONS(3434), + [anon_sym_yield] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3434), + [anon_sym_LTtemplate_GT] = ACTIONS(3434), + [anon_sym_DQUOTE] = ACTIONS(3434), + [anon_sym_SQUOTE] = ACTIONS(3434), + [anon_sym_class] = ACTIONS(3434), + [anon_sym_async] = ACTIONS(3434), + [anon_sym_function] = ACTIONS(3434), + [anon_sym_new] = ACTIONS(3434), + [anon_sym_using] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_SLASH] = ACTIONS(3434), + [anon_sym_LT] = ACTIONS(3434), + [anon_sym_TILDE] = ACTIONS(3434), + [anon_sym_void] = ACTIONS(3434), + [anon_sym_delete] = ACTIONS(3434), + [anon_sym_PLUS_PLUS] = ACTIONS(3434), + [anon_sym_DASH_DASH] = ACTIONS(3434), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3434), + [sym_number] = ACTIONS(3434), + [sym_private_property_identifier] = ACTIONS(3434), + [sym_this] = ACTIONS(3434), + [sym_super] = ACTIONS(3434), + [sym_true] = ACTIONS(3434), + [sym_false] = ACTIONS(3434), + [sym_null] = ACTIONS(3434), + [sym_undefined] = ACTIONS(3434), + [anon_sym_AT] = ACTIONS(3434), + [anon_sym_static] = ACTIONS(3434), + [anon_sym_readonly] = ACTIONS(3434), + [anon_sym_get] = ACTIONS(3434), + [anon_sym_set] = ACTIONS(3434), + [anon_sym_declare] = ACTIONS(3434), + [anon_sym_public] = ACTIONS(3434), + [anon_sym_private] = ACTIONS(3434), + [anon_sym_protected] = ACTIONS(3434), + [anon_sym_override] = ACTIONS(3434), + [anon_sym_module] = ACTIONS(3434), + [anon_sym_any] = ACTIONS(3434), + [anon_sym_number] = ACTIONS(3434), + [anon_sym_boolean] = ACTIONS(3434), + [anon_sym_string] = ACTIONS(3434), + [anon_sym_symbol] = ACTIONS(3434), + [anon_sym_object] = ACTIONS(3434), + [anon_sym_abstract] = ACTIONS(3434), + [anon_sym_interface] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), + [sym_html_comment] = ACTIONS(5), + }, + [1557] = { + [sym_comment] = STATE(1557), + [ts_builtin_sym_end] = ACTIONS(2351), + [sym_identifier] = ACTIONS(2149), + [anon_sym_export] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2149), + [anon_sym_typeof] = ACTIONS(2149), + [anon_sym_import] = ACTIONS(2149), + [anon_sym_with] = ACTIONS(2149), + [anon_sym_var] = ACTIONS(2149), + [anon_sym_let] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_switch] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [anon_sym_do] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_debugger] = ACTIONS(2149), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_throw] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_LTtemplate_GT] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(2149), + [anon_sym_class] = ACTIONS(2149), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_function] = ACTIONS(2149), + [anon_sym_new] = ACTIONS(2149), + [anon_sym_using] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_SLASH] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_TILDE] = ACTIONS(2149), + [anon_sym_void] = ACTIONS(2149), + [anon_sym_delete] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2149), + [anon_sym_DASH_DASH] = ACTIONS(2149), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3320), - [sym_number] = ACTIONS(3320), - [sym_private_property_identifier] = ACTIONS(3320), - [sym_this] = ACTIONS(3320), - [sym_super] = ACTIONS(3320), - [sym_true] = ACTIONS(3320), - [sym_false] = ACTIONS(3320), - [sym_null] = ACTIONS(3320), - [sym_undefined] = ACTIONS(3320), - [anon_sym_AT] = ACTIONS(3320), - [anon_sym_static] = ACTIONS(3320), - [anon_sym_readonly] = ACTIONS(3320), - [anon_sym_get] = ACTIONS(3320), - [anon_sym_set] = ACTIONS(3320), - [anon_sym_declare] = ACTIONS(3320), - [anon_sym_public] = ACTIONS(3320), - [anon_sym_private] = ACTIONS(3320), - [anon_sym_protected] = ACTIONS(3320), - [anon_sym_override] = ACTIONS(3320), - [anon_sym_module] = ACTIONS(3320), - [anon_sym_any] = ACTIONS(3320), - [anon_sym_number] = ACTIONS(3320), - [anon_sym_boolean] = ACTIONS(3320), - [anon_sym_string] = ACTIONS(3320), - [anon_sym_symbol] = ACTIONS(3320), - [anon_sym_object] = ACTIONS(3320), - [anon_sym_abstract] = ACTIONS(3320), - [anon_sym_interface] = ACTIONS(3320), - [anon_sym_enum] = ACTIONS(3320), + [anon_sym_BQUOTE] = ACTIONS(2149), + [sym_number] = ACTIONS(2149), + [sym_private_property_identifier] = ACTIONS(2149), + [sym_this] = ACTIONS(2149), + [sym_super] = ACTIONS(2149), + [sym_true] = ACTIONS(2149), + [sym_false] = ACTIONS(2149), + [sym_null] = ACTIONS(2149), + [sym_undefined] = ACTIONS(2149), + [anon_sym_AT] = ACTIONS(2149), + [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_abstract] = ACTIONS(2149), + [anon_sym_interface] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), [sym_html_comment] = ACTIONS(5), }, - [1694] = { - [sym_comment] = STATE(1694), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1558] = { + [sym_comment] = STATE(1558), + [ts_builtin_sym_end] = ACTIONS(2351), + [sym_identifier] = ACTIONS(2149), + [anon_sym_export] = ACTIONS(2149), + [anon_sym_type] = ACTIONS(2149), + [anon_sym_namespace] = ACTIONS(2149), + [anon_sym_LBRACE] = ACTIONS(2149), + [anon_sym_RBRACE] = ACTIONS(2149), + [anon_sym_typeof] = ACTIONS(2149), + [anon_sym_import] = ACTIONS(2149), + [anon_sym_with] = ACTIONS(2149), + [anon_sym_var] = ACTIONS(2149), + [anon_sym_let] = ACTIONS(2149), + [anon_sym_const] = ACTIONS(2149), + [anon_sym_BANG] = ACTIONS(2149), + [anon_sym_if] = ACTIONS(2149), + [anon_sym_switch] = ACTIONS(2149), + [anon_sym_for] = ACTIONS(2149), + [anon_sym_LPAREN] = ACTIONS(2149), + [anon_sym_await] = ACTIONS(2149), + [anon_sym_while] = ACTIONS(2149), + [anon_sym_do] = ACTIONS(2149), + [anon_sym_try] = ACTIONS(2149), + [anon_sym_break] = ACTIONS(2149), + [anon_sym_continue] = ACTIONS(2149), + [anon_sym_debugger] = ACTIONS(2149), + [anon_sym_return] = ACTIONS(2149), + [anon_sym_throw] = ACTIONS(2149), + [anon_sym_SEMI] = ACTIONS(2149), + [anon_sym_yield] = ACTIONS(2149), + [anon_sym_LBRACK] = ACTIONS(2149), + [anon_sym_LTtemplate_GT] = ACTIONS(2149), + [anon_sym_DQUOTE] = ACTIONS(2149), + [anon_sym_SQUOTE] = ACTIONS(2149), + [anon_sym_class] = ACTIONS(2149), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_function] = ACTIONS(2149), + [anon_sym_new] = ACTIONS(2149), + [anon_sym_using] = ACTIONS(2149), + [anon_sym_PLUS] = ACTIONS(2149), + [anon_sym_DASH] = ACTIONS(2149), + [anon_sym_SLASH] = ACTIONS(2149), + [anon_sym_LT] = ACTIONS(2149), + [anon_sym_TILDE] = ACTIONS(2149), + [anon_sym_void] = ACTIONS(2149), + [anon_sym_delete] = ACTIONS(2149), + [anon_sym_PLUS_PLUS] = ACTIONS(2149), + [anon_sym_DASH_DASH] = ACTIONS(2149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2149), + [sym_number] = ACTIONS(2149), + [sym_private_property_identifier] = ACTIONS(2149), + [sym_this] = ACTIONS(2149), + [sym_super] = ACTIONS(2149), + [sym_true] = ACTIONS(2149), + [sym_false] = ACTIONS(2149), + [sym_null] = ACTIONS(2149), + [sym_undefined] = ACTIONS(2149), + [anon_sym_AT] = ACTIONS(2149), + [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_abstract] = ACTIONS(2149), + [anon_sym_interface] = ACTIONS(2149), + [anon_sym_enum] = ACTIONS(2149), [sym_html_comment] = ACTIONS(5), }, - [1695] = { - [sym_comment] = STATE(1695), - [ts_builtin_sym_end] = ACTIONS(3420), + [1559] = { + [sym_comment] = STATE(1559), + [ts_builtin_sym_end] = ACTIONS(3452), [sym_identifier] = ACTIONS(3294), [anon_sym_export] = ACTIONS(3294), [anon_sym_type] = ACTIONS(3294), @@ -202491,495 +191019,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3294), [sym_html_comment] = ACTIONS(5), }, - [1696] = { - [sym_comment] = STATE(1696), - [ts_builtin_sym_end] = ACTIONS(3454), - [sym_identifier] = ACTIONS(3322), - [anon_sym_export] = ACTIONS(3322), - [anon_sym_type] = ACTIONS(3322), - [anon_sym_namespace] = ACTIONS(3322), - [anon_sym_LBRACE] = ACTIONS(3322), - [anon_sym_RBRACE] = ACTIONS(3322), - [anon_sym_typeof] = ACTIONS(3322), - [anon_sym_import] = ACTIONS(3322), - [anon_sym_with] = ACTIONS(3322), - [anon_sym_var] = ACTIONS(3322), - [anon_sym_let] = ACTIONS(3322), - [anon_sym_const] = ACTIONS(3322), - [anon_sym_BANG] = ACTIONS(3322), - [anon_sym_if] = ACTIONS(3322), - [anon_sym_switch] = ACTIONS(3322), - [anon_sym_for] = ACTIONS(3322), - [anon_sym_LPAREN] = ACTIONS(3322), - [anon_sym_await] = ACTIONS(3322), - [anon_sym_while] = ACTIONS(3322), - [anon_sym_do] = ACTIONS(3322), - [anon_sym_try] = ACTIONS(3322), - [anon_sym_break] = ACTIONS(3322), - [anon_sym_continue] = ACTIONS(3322), - [anon_sym_debugger] = ACTIONS(3322), - [anon_sym_return] = ACTIONS(3322), - [anon_sym_throw] = ACTIONS(3322), - [anon_sym_SEMI] = ACTIONS(3322), - [anon_sym_yield] = ACTIONS(3322), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_LTtemplate_GT] = ACTIONS(3322), - [anon_sym_DQUOTE] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3322), - [anon_sym_class] = ACTIONS(3322), - [anon_sym_async] = ACTIONS(3322), - [anon_sym_function] = ACTIONS(3322), - [anon_sym_new] = ACTIONS(3322), - [anon_sym_using] = ACTIONS(3322), - [anon_sym_PLUS] = ACTIONS(3322), - [anon_sym_DASH] = ACTIONS(3322), - [anon_sym_SLASH] = ACTIONS(3322), - [anon_sym_LT] = ACTIONS(3322), - [anon_sym_TILDE] = ACTIONS(3322), - [anon_sym_void] = ACTIONS(3322), - [anon_sym_delete] = ACTIONS(3322), - [anon_sym_PLUS_PLUS] = ACTIONS(3322), - [anon_sym_DASH_DASH] = ACTIONS(3322), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3322), - [sym_number] = ACTIONS(3322), - [sym_private_property_identifier] = ACTIONS(3322), - [sym_this] = ACTIONS(3322), - [sym_super] = ACTIONS(3322), - [sym_true] = ACTIONS(3322), - [sym_false] = ACTIONS(3322), - [sym_null] = ACTIONS(3322), - [sym_undefined] = ACTIONS(3322), - [anon_sym_AT] = ACTIONS(3322), - [anon_sym_static] = ACTIONS(3322), - [anon_sym_readonly] = ACTIONS(3322), - [anon_sym_get] = ACTIONS(3322), - [anon_sym_set] = ACTIONS(3322), - [anon_sym_declare] = ACTIONS(3322), - [anon_sym_public] = ACTIONS(3322), - [anon_sym_private] = ACTIONS(3322), - [anon_sym_protected] = ACTIONS(3322), - [anon_sym_override] = ACTIONS(3322), - [anon_sym_module] = ACTIONS(3322), - [anon_sym_any] = ACTIONS(3322), - [anon_sym_number] = ACTIONS(3322), - [anon_sym_boolean] = ACTIONS(3322), - [anon_sym_string] = ACTIONS(3322), - [anon_sym_symbol] = ACTIONS(3322), - [anon_sym_object] = ACTIONS(3322), - [anon_sym_abstract] = ACTIONS(3322), - [anon_sym_interface] = ACTIONS(3322), - [anon_sym_enum] = ACTIONS(3322), - [sym_html_comment] = ACTIONS(5), - }, - [1697] = { - [sym_comment] = STATE(1697), - [ts_builtin_sym_end] = ACTIONS(3456), - [sym_identifier] = ACTIONS(3324), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_type] = ACTIONS(3324), - [anon_sym_namespace] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_typeof] = ACTIONS(3324), - [anon_sym_import] = ACTIONS(3324), - [anon_sym_with] = ACTIONS(3324), - [anon_sym_var] = ACTIONS(3324), - [anon_sym_let] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_await] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_try] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_debugger] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_throw] = ACTIONS(3324), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_yield] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3324), - [anon_sym_LTtemplate_GT] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_class] = ACTIONS(3324), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_function] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_using] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_void] = ACTIONS(3324), - [anon_sym_delete] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3324), + [1560] = { + [sym_comment] = STATE(1560), + [ts_builtin_sym_end] = ACTIONS(3372), + [sym_identifier] = ACTIONS(3194), + [anon_sym_export] = ACTIONS(3194), + [anon_sym_type] = ACTIONS(3194), + [anon_sym_namespace] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3194), + [anon_sym_RBRACE] = ACTIONS(3194), + [anon_sym_typeof] = ACTIONS(3194), + [anon_sym_import] = ACTIONS(3194), + [anon_sym_with] = ACTIONS(3194), + [anon_sym_var] = ACTIONS(3194), + [anon_sym_let] = ACTIONS(3194), + [anon_sym_const] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_switch] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3194), + [anon_sym_await] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_do] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_debugger] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3194), + [anon_sym_yield] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3194), + [anon_sym_LTtemplate_GT] = ACTIONS(3194), + [anon_sym_DQUOTE] = ACTIONS(3194), + [anon_sym_SQUOTE] = ACTIONS(3194), + [anon_sym_class] = ACTIONS(3194), + [anon_sym_async] = ACTIONS(3194), + [anon_sym_function] = ACTIONS(3194), + [anon_sym_new] = ACTIONS(3194), + [anon_sym_using] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_LT] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3194), + [anon_sym_void] = ACTIONS(3194), + [anon_sym_delete] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3194), + [anon_sym_DASH_DASH] = ACTIONS(3194), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3324), - [sym_number] = ACTIONS(3324), - [sym_private_property_identifier] = ACTIONS(3324), - [sym_this] = ACTIONS(3324), - [sym_super] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_null] = ACTIONS(3324), - [sym_undefined] = ACTIONS(3324), - [anon_sym_AT] = ACTIONS(3324), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_readonly] = ACTIONS(3324), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3324), - [anon_sym_declare] = ACTIONS(3324), - [anon_sym_public] = ACTIONS(3324), - [anon_sym_private] = ACTIONS(3324), - [anon_sym_protected] = ACTIONS(3324), - [anon_sym_override] = ACTIONS(3324), - [anon_sym_module] = ACTIONS(3324), - [anon_sym_any] = ACTIONS(3324), - [anon_sym_number] = ACTIONS(3324), - [anon_sym_boolean] = ACTIONS(3324), - [anon_sym_string] = ACTIONS(3324), - [anon_sym_symbol] = ACTIONS(3324), - [anon_sym_object] = ACTIONS(3324), - [anon_sym_abstract] = ACTIONS(3324), - [anon_sym_interface] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), - [sym_html_comment] = ACTIONS(5), - }, - [1698] = { - [sym_comment] = STATE(1698), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1699] = { - [sym_comment] = STATE(1699), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1700] = { - [sym_comment] = STATE(1700), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [anon_sym_BQUOTE] = ACTIONS(3194), + [sym_number] = ACTIONS(3194), + [sym_private_property_identifier] = ACTIONS(3194), + [sym_this] = ACTIONS(3194), + [sym_super] = ACTIONS(3194), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_null] = ACTIONS(3194), + [sym_undefined] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3194), + [anon_sym_static] = ACTIONS(3194), + [anon_sym_readonly] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_declare] = ACTIONS(3194), + [anon_sym_public] = ACTIONS(3194), + [anon_sym_private] = ACTIONS(3194), + [anon_sym_protected] = ACTIONS(3194), + [anon_sym_override] = ACTIONS(3194), + [anon_sym_module] = ACTIONS(3194), + [anon_sym_any] = ACTIONS(3194), + [anon_sym_number] = ACTIONS(3194), + [anon_sym_boolean] = ACTIONS(3194), + [anon_sym_string] = ACTIONS(3194), + [anon_sym_symbol] = ACTIONS(3194), + [anon_sym_object] = ACTIONS(3194), + [anon_sym_abstract] = ACTIONS(3194), + [anon_sym_interface] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), [sym_html_comment] = ACTIONS(5), }, - [1701] = { - [sym_comment] = STATE(1701), - [ts_builtin_sym_end] = ACTIONS(3514), - [sym_identifier] = ACTIONS(3226), - [anon_sym_export] = ACTIONS(3226), - [anon_sym_type] = ACTIONS(3226), - [anon_sym_namespace] = ACTIONS(3226), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_RBRACE] = ACTIONS(3226), - [anon_sym_typeof] = ACTIONS(3226), - [anon_sym_import] = ACTIONS(3226), - [anon_sym_with] = ACTIONS(3226), - [anon_sym_var] = ACTIONS(3226), - [anon_sym_let] = ACTIONS(3226), - [anon_sym_const] = ACTIONS(3226), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_if] = ACTIONS(3226), - [anon_sym_switch] = ACTIONS(3226), - [anon_sym_for] = ACTIONS(3226), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_await] = ACTIONS(3226), - [anon_sym_while] = ACTIONS(3226), - [anon_sym_do] = ACTIONS(3226), - [anon_sym_try] = ACTIONS(3226), - [anon_sym_break] = ACTIONS(3226), - [anon_sym_continue] = ACTIONS(3226), - [anon_sym_debugger] = ACTIONS(3226), - [anon_sym_return] = ACTIONS(3226), - [anon_sym_throw] = ACTIONS(3226), - [anon_sym_SEMI] = ACTIONS(3226), - [anon_sym_yield] = ACTIONS(3226), - [anon_sym_LBRACK] = ACTIONS(3226), - [anon_sym_LTtemplate_GT] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [anon_sym_class] = ACTIONS(3226), - [anon_sym_async] = ACTIONS(3226), - [anon_sym_function] = ACTIONS(3226), - [anon_sym_new] = ACTIONS(3226), - [anon_sym_using] = ACTIONS(3226), - [anon_sym_PLUS] = ACTIONS(3226), - [anon_sym_DASH] = ACTIONS(3226), - [anon_sym_SLASH] = ACTIONS(3226), - [anon_sym_LT] = ACTIONS(3226), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_void] = ACTIONS(3226), - [anon_sym_delete] = ACTIONS(3226), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_DASH_DASH] = ACTIONS(3226), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3226), - [sym_number] = ACTIONS(3226), - [sym_private_property_identifier] = ACTIONS(3226), - [sym_this] = ACTIONS(3226), - [sym_super] = ACTIONS(3226), - [sym_true] = ACTIONS(3226), - [sym_false] = ACTIONS(3226), - [sym_null] = ACTIONS(3226), - [sym_undefined] = ACTIONS(3226), - [anon_sym_AT] = ACTIONS(3226), - [anon_sym_static] = ACTIONS(3226), - [anon_sym_readonly] = ACTIONS(3226), - [anon_sym_get] = ACTIONS(3226), - [anon_sym_set] = ACTIONS(3226), - [anon_sym_declare] = ACTIONS(3226), - [anon_sym_public] = ACTIONS(3226), - [anon_sym_private] = ACTIONS(3226), - [anon_sym_protected] = ACTIONS(3226), - [anon_sym_override] = ACTIONS(3226), - [anon_sym_module] = ACTIONS(3226), - [anon_sym_any] = ACTIONS(3226), - [anon_sym_number] = ACTIONS(3226), - [anon_sym_boolean] = ACTIONS(3226), - [anon_sym_string] = ACTIONS(3226), - [anon_sym_symbol] = ACTIONS(3226), - [anon_sym_object] = ACTIONS(3226), - [anon_sym_abstract] = ACTIONS(3226), - [anon_sym_interface] = ACTIONS(3226), - [anon_sym_enum] = ACTIONS(3226), + [1561] = { + [sym_comment] = STATE(1561), + [ts_builtin_sym_end] = ACTIONS(3538), + [sym_identifier] = ACTIONS(3316), + [anon_sym_export] = ACTIONS(3316), + [anon_sym_type] = ACTIONS(3316), + [anon_sym_namespace] = ACTIONS(3316), + [anon_sym_LBRACE] = ACTIONS(3316), + [anon_sym_RBRACE] = ACTIONS(3316), + [anon_sym_typeof] = ACTIONS(3316), + [anon_sym_import] = ACTIONS(3316), + [anon_sym_with] = ACTIONS(3316), + [anon_sym_var] = ACTIONS(3316), + [anon_sym_let] = ACTIONS(3316), + [anon_sym_const] = ACTIONS(3316), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_if] = ACTIONS(3316), + [anon_sym_switch] = ACTIONS(3316), + [anon_sym_for] = ACTIONS(3316), + [anon_sym_LPAREN] = ACTIONS(3316), + [anon_sym_await] = ACTIONS(3316), + [anon_sym_while] = ACTIONS(3316), + [anon_sym_do] = ACTIONS(3316), + [anon_sym_try] = ACTIONS(3316), + [anon_sym_break] = ACTIONS(3316), + [anon_sym_continue] = ACTIONS(3316), + [anon_sym_debugger] = ACTIONS(3316), + [anon_sym_return] = ACTIONS(3316), + [anon_sym_throw] = ACTIONS(3316), + [anon_sym_SEMI] = ACTIONS(3316), + [anon_sym_yield] = ACTIONS(3316), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_LTtemplate_GT] = ACTIONS(3316), + [anon_sym_DQUOTE] = ACTIONS(3316), + [anon_sym_SQUOTE] = ACTIONS(3316), + [anon_sym_class] = ACTIONS(3316), + [anon_sym_async] = ACTIONS(3316), + [anon_sym_function] = ACTIONS(3316), + [anon_sym_new] = ACTIONS(3316), + [anon_sym_using] = ACTIONS(3316), + [anon_sym_PLUS] = ACTIONS(3316), + [anon_sym_DASH] = ACTIONS(3316), + [anon_sym_SLASH] = ACTIONS(3316), + [anon_sym_LT] = ACTIONS(3316), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_void] = ACTIONS(3316), + [anon_sym_delete] = ACTIONS(3316), + [anon_sym_PLUS_PLUS] = ACTIONS(3316), + [anon_sym_DASH_DASH] = ACTIONS(3316), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3316), + [sym_number] = ACTIONS(3316), + [sym_private_property_identifier] = ACTIONS(3316), + [sym_this] = ACTIONS(3316), + [sym_super] = ACTIONS(3316), + [sym_true] = ACTIONS(3316), + [sym_false] = ACTIONS(3316), + [sym_null] = ACTIONS(3316), + [sym_undefined] = ACTIONS(3316), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_static] = ACTIONS(3316), + [anon_sym_readonly] = ACTIONS(3316), + [anon_sym_get] = ACTIONS(3316), + [anon_sym_set] = ACTIONS(3316), + [anon_sym_declare] = ACTIONS(3316), + [anon_sym_public] = ACTIONS(3316), + [anon_sym_private] = ACTIONS(3316), + [anon_sym_protected] = ACTIONS(3316), + [anon_sym_override] = ACTIONS(3316), + [anon_sym_module] = ACTIONS(3316), + [anon_sym_any] = ACTIONS(3316), + [anon_sym_number] = ACTIONS(3316), + [anon_sym_boolean] = ACTIONS(3316), + [anon_sym_string] = ACTIONS(3316), + [anon_sym_symbol] = ACTIONS(3316), + [anon_sym_object] = ACTIONS(3316), + [anon_sym_abstract] = ACTIONS(3316), + [anon_sym_interface] = ACTIONS(3316), + [anon_sym_enum] = ACTIONS(3316), [sym_html_comment] = ACTIONS(5), }, - [1702] = { - [sym_comment] = STATE(1702), - [ts_builtin_sym_end] = ACTIONS(3418), + [1562] = { + [sym_comment] = STATE(1562), + [ts_builtin_sym_end] = ACTIONS(3444), [sym_identifier] = ACTIONS(3292), [anon_sym_export] = ACTIONS(3292), [anon_sym_type] = ACTIONS(3292), @@ -203016,1555 +191220,907 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(3292), [anon_sym_function] = ACTIONS(3292), [anon_sym_new] = ACTIONS(3292), - [anon_sym_using] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_LT] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3292), - [anon_sym_void] = ACTIONS(3292), - [anon_sym_delete] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3292), - [anon_sym_DASH_DASH] = ACTIONS(3292), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3292), - [sym_number] = ACTIONS(3292), - [sym_private_property_identifier] = ACTIONS(3292), - [sym_this] = ACTIONS(3292), - [sym_super] = ACTIONS(3292), - [sym_true] = ACTIONS(3292), - [sym_false] = ACTIONS(3292), - [sym_null] = ACTIONS(3292), - [sym_undefined] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3292), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_readonly] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_declare] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_override] = ACTIONS(3292), - [anon_sym_module] = ACTIONS(3292), - [anon_sym_any] = ACTIONS(3292), - [anon_sym_number] = ACTIONS(3292), - [anon_sym_boolean] = ACTIONS(3292), - [anon_sym_string] = ACTIONS(3292), - [anon_sym_symbol] = ACTIONS(3292), - [anon_sym_object] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_interface] = ACTIONS(3292), - [anon_sym_enum] = ACTIONS(3292), - [sym_html_comment] = ACTIONS(5), - }, - [1703] = { - [sym_comment] = STATE(1703), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1704] = { - [sym_comment] = STATE(1704), - [ts_builtin_sym_end] = ACTIONS(3416), - [sym_identifier] = ACTIONS(3290), - [anon_sym_export] = ACTIONS(3290), - [anon_sym_type] = ACTIONS(3290), - [anon_sym_namespace] = ACTIONS(3290), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_RBRACE] = ACTIONS(3290), - [anon_sym_typeof] = ACTIONS(3290), - [anon_sym_import] = ACTIONS(3290), - [anon_sym_with] = ACTIONS(3290), - [anon_sym_var] = ACTIONS(3290), - [anon_sym_let] = ACTIONS(3290), - [anon_sym_const] = ACTIONS(3290), - [anon_sym_BANG] = ACTIONS(3290), - [anon_sym_if] = ACTIONS(3290), - [anon_sym_switch] = ACTIONS(3290), - [anon_sym_for] = ACTIONS(3290), - [anon_sym_LPAREN] = ACTIONS(3290), - [anon_sym_await] = ACTIONS(3290), - [anon_sym_while] = ACTIONS(3290), - [anon_sym_do] = ACTIONS(3290), - [anon_sym_try] = ACTIONS(3290), - [anon_sym_break] = ACTIONS(3290), - [anon_sym_continue] = ACTIONS(3290), - [anon_sym_debugger] = ACTIONS(3290), - [anon_sym_return] = ACTIONS(3290), - [anon_sym_throw] = ACTIONS(3290), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_yield] = ACTIONS(3290), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_LTtemplate_GT] = ACTIONS(3290), - [anon_sym_DQUOTE] = ACTIONS(3290), - [anon_sym_SQUOTE] = ACTIONS(3290), - [anon_sym_class] = ACTIONS(3290), - [anon_sym_async] = ACTIONS(3290), - [anon_sym_function] = ACTIONS(3290), - [anon_sym_new] = ACTIONS(3290), - [anon_sym_using] = ACTIONS(3290), - [anon_sym_PLUS] = ACTIONS(3290), - [anon_sym_DASH] = ACTIONS(3290), - [anon_sym_SLASH] = ACTIONS(3290), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_TILDE] = ACTIONS(3290), - [anon_sym_void] = ACTIONS(3290), - [anon_sym_delete] = ACTIONS(3290), - [anon_sym_PLUS_PLUS] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3290), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3290), - [sym_number] = ACTIONS(3290), - [sym_private_property_identifier] = ACTIONS(3290), - [sym_this] = ACTIONS(3290), - [sym_super] = ACTIONS(3290), - [sym_true] = ACTIONS(3290), - [sym_false] = ACTIONS(3290), - [sym_null] = ACTIONS(3290), - [sym_undefined] = ACTIONS(3290), - [anon_sym_AT] = ACTIONS(3290), - [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_abstract] = ACTIONS(3290), - [anon_sym_interface] = ACTIONS(3290), - [anon_sym_enum] = ACTIONS(3290), - [sym_html_comment] = ACTIONS(5), - }, - [1705] = { - [sym_comment] = STATE(1705), - [ts_builtin_sym_end] = ACTIONS(3414), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3288), - [anon_sym_RBRACE] = ACTIONS(3288), - [anon_sym_typeof] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3288), - [anon_sym_await] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_debugger] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3288), - [anon_sym_LTtemplate_GT] = ACTIONS(3288), - [anon_sym_DQUOTE] = ACTIONS(3288), - [anon_sym_SQUOTE] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_using] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_LT] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3288), - [anon_sym_void] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3288), - [anon_sym_DASH_DASH] = ACTIONS(3288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3288), - [sym_number] = ACTIONS(3288), - [sym_private_property_identifier] = ACTIONS(3288), - [sym_this] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_undefined] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3288), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_declare] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_override] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_any] = ACTIONS(3288), - [anon_sym_number] = ACTIONS(3288), - [anon_sym_boolean] = ACTIONS(3288), - [anon_sym_string] = ACTIONS(3288), - [anon_sym_symbol] = ACTIONS(3288), - [anon_sym_object] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), - [sym_html_comment] = ACTIONS(5), - }, - [1706] = { - [sym_comment] = STATE(1706), - [ts_builtin_sym_end] = ACTIONS(3516), - [sym_identifier] = ACTIONS(3220), - [anon_sym_export] = ACTIONS(3220), - [anon_sym_type] = ACTIONS(3220), - [anon_sym_namespace] = ACTIONS(3220), - [anon_sym_LBRACE] = ACTIONS(3220), - [anon_sym_RBRACE] = ACTIONS(3220), - [anon_sym_typeof] = ACTIONS(3220), - [anon_sym_import] = ACTIONS(3220), - [anon_sym_with] = ACTIONS(3220), - [anon_sym_var] = ACTIONS(3220), - [anon_sym_let] = ACTIONS(3220), - [anon_sym_const] = ACTIONS(3220), - [anon_sym_BANG] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3220), - [anon_sym_switch] = ACTIONS(3220), - [anon_sym_for] = ACTIONS(3220), - [anon_sym_LPAREN] = ACTIONS(3220), - [anon_sym_await] = ACTIONS(3220), - [anon_sym_while] = ACTIONS(3220), - [anon_sym_do] = ACTIONS(3220), - [anon_sym_try] = ACTIONS(3220), - [anon_sym_break] = ACTIONS(3220), - [anon_sym_continue] = ACTIONS(3220), - [anon_sym_debugger] = ACTIONS(3220), - [anon_sym_return] = ACTIONS(3220), - [anon_sym_throw] = ACTIONS(3220), - [anon_sym_SEMI] = ACTIONS(3220), - [anon_sym_yield] = ACTIONS(3220), - [anon_sym_LBRACK] = ACTIONS(3220), - [anon_sym_LTtemplate_GT] = ACTIONS(3220), - [anon_sym_DQUOTE] = ACTIONS(3220), - [anon_sym_SQUOTE] = ACTIONS(3220), - [anon_sym_class] = ACTIONS(3220), - [anon_sym_async] = ACTIONS(3220), - [anon_sym_function] = ACTIONS(3220), - [anon_sym_new] = ACTIONS(3220), - [anon_sym_using] = ACTIONS(3220), - [anon_sym_PLUS] = ACTIONS(3220), - [anon_sym_DASH] = ACTIONS(3220), - [anon_sym_SLASH] = ACTIONS(3220), - [anon_sym_LT] = ACTIONS(3220), - [anon_sym_TILDE] = ACTIONS(3220), - [anon_sym_void] = ACTIONS(3220), - [anon_sym_delete] = ACTIONS(3220), - [anon_sym_PLUS_PLUS] = ACTIONS(3220), - [anon_sym_DASH_DASH] = ACTIONS(3220), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3220), - [sym_number] = ACTIONS(3220), - [sym_private_property_identifier] = ACTIONS(3220), - [sym_this] = ACTIONS(3220), - [sym_super] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_null] = ACTIONS(3220), - [sym_undefined] = ACTIONS(3220), - [anon_sym_AT] = ACTIONS(3220), - [anon_sym_static] = ACTIONS(3220), - [anon_sym_readonly] = ACTIONS(3220), - [anon_sym_get] = ACTIONS(3220), - [anon_sym_set] = ACTIONS(3220), - [anon_sym_declare] = ACTIONS(3220), - [anon_sym_public] = ACTIONS(3220), - [anon_sym_private] = ACTIONS(3220), - [anon_sym_protected] = ACTIONS(3220), - [anon_sym_override] = ACTIONS(3220), - [anon_sym_module] = ACTIONS(3220), - [anon_sym_any] = ACTIONS(3220), - [anon_sym_number] = ACTIONS(3220), - [anon_sym_boolean] = ACTIONS(3220), - [anon_sym_string] = ACTIONS(3220), - [anon_sym_symbol] = ACTIONS(3220), - [anon_sym_object] = ACTIONS(3220), - [anon_sym_abstract] = ACTIONS(3220), - [anon_sym_interface] = ACTIONS(3220), - [anon_sym_enum] = ACTIONS(3220), - [sym_html_comment] = ACTIONS(5), - }, - [1707] = { - [sym_comment] = STATE(1707), - [ts_builtin_sym_end] = ACTIONS(3456), - [sym_identifier] = ACTIONS(3324), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_type] = ACTIONS(3324), - [anon_sym_namespace] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3324), - [anon_sym_RBRACE] = ACTIONS(3324), - [anon_sym_typeof] = ACTIONS(3324), - [anon_sym_import] = ACTIONS(3324), - [anon_sym_with] = ACTIONS(3324), - [anon_sym_var] = ACTIONS(3324), - [anon_sym_let] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3324), - [anon_sym_await] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_try] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_debugger] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_throw] = ACTIONS(3324), - [anon_sym_SEMI] = ACTIONS(3324), - [anon_sym_yield] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3324), - [anon_sym_LTtemplate_GT] = ACTIONS(3324), - [anon_sym_DQUOTE] = ACTIONS(3324), - [anon_sym_SQUOTE] = ACTIONS(3324), - [anon_sym_class] = ACTIONS(3324), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_function] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_using] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_LT] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3324), - [anon_sym_void] = ACTIONS(3324), - [anon_sym_delete] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3324), - [anon_sym_DASH_DASH] = ACTIONS(3324), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3324), - [sym_number] = ACTIONS(3324), - [sym_private_property_identifier] = ACTIONS(3324), - [sym_this] = ACTIONS(3324), - [sym_super] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_null] = ACTIONS(3324), - [sym_undefined] = ACTIONS(3324), - [anon_sym_AT] = ACTIONS(3324), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_readonly] = ACTIONS(3324), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3324), - [anon_sym_declare] = ACTIONS(3324), - [anon_sym_public] = ACTIONS(3324), - [anon_sym_private] = ACTIONS(3324), - [anon_sym_protected] = ACTIONS(3324), - [anon_sym_override] = ACTIONS(3324), - [anon_sym_module] = ACTIONS(3324), - [anon_sym_any] = ACTIONS(3324), - [anon_sym_number] = ACTIONS(3324), - [anon_sym_boolean] = ACTIONS(3324), - [anon_sym_string] = ACTIONS(3324), - [anon_sym_symbol] = ACTIONS(3324), - [anon_sym_object] = ACTIONS(3324), - [anon_sym_abstract] = ACTIONS(3324), - [anon_sym_interface] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), - [sym_html_comment] = ACTIONS(5), - }, - [1708] = { - [sym_comment] = STATE(1708), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), - [sym_html_comment] = ACTIONS(5), - }, - [1709] = { - [sym_comment] = STATE(1709), - [ts_builtin_sym_end] = ACTIONS(3544), - [sym_identifier] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3184), - [anon_sym_type] = ACTIONS(3184), - [anon_sym_namespace] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(3184), - [anon_sym_RBRACE] = ACTIONS(3184), - [anon_sym_typeof] = ACTIONS(3184), - [anon_sym_import] = ACTIONS(3184), - [anon_sym_with] = ACTIONS(3184), - [anon_sym_var] = ACTIONS(3184), - [anon_sym_let] = ACTIONS(3184), - [anon_sym_const] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3184), - [anon_sym_if] = ACTIONS(3184), - [anon_sym_switch] = ACTIONS(3184), - [anon_sym_for] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(3184), - [anon_sym_await] = ACTIONS(3184), - [anon_sym_while] = ACTIONS(3184), - [anon_sym_do] = ACTIONS(3184), - [anon_sym_try] = ACTIONS(3184), - [anon_sym_break] = ACTIONS(3184), - [anon_sym_continue] = ACTIONS(3184), - [anon_sym_debugger] = ACTIONS(3184), - [anon_sym_return] = ACTIONS(3184), - [anon_sym_throw] = ACTIONS(3184), - [anon_sym_SEMI] = ACTIONS(3184), - [anon_sym_yield] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3184), - [anon_sym_LTtemplate_GT] = ACTIONS(3184), - [anon_sym_DQUOTE] = ACTIONS(3184), - [anon_sym_SQUOTE] = ACTIONS(3184), - [anon_sym_class] = ACTIONS(3184), - [anon_sym_async] = ACTIONS(3184), - [anon_sym_function] = ACTIONS(3184), - [anon_sym_new] = ACTIONS(3184), - [anon_sym_using] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3184), - [anon_sym_SLASH] = ACTIONS(3184), - [anon_sym_LT] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3184), - [anon_sym_void] = ACTIONS(3184), - [anon_sym_delete] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3184), - [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_using] = ACTIONS(3292), + [anon_sym_PLUS] = ACTIONS(3292), + [anon_sym_DASH] = ACTIONS(3292), + [anon_sym_SLASH] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_void] = ACTIONS(3292), + [anon_sym_delete] = ACTIONS(3292), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_DASH_DASH] = ACTIONS(3292), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3184), - [sym_number] = ACTIONS(3184), - [sym_private_property_identifier] = ACTIONS(3184), - [sym_this] = ACTIONS(3184), - [sym_super] = ACTIONS(3184), - [sym_true] = ACTIONS(3184), - [sym_false] = ACTIONS(3184), - [sym_null] = ACTIONS(3184), - [sym_undefined] = ACTIONS(3184), - [anon_sym_AT] = ACTIONS(3184), - [anon_sym_static] = ACTIONS(3184), - [anon_sym_readonly] = ACTIONS(3184), - [anon_sym_get] = ACTIONS(3184), - [anon_sym_set] = ACTIONS(3184), - [anon_sym_declare] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_protected] = ACTIONS(3184), - [anon_sym_override] = ACTIONS(3184), - [anon_sym_module] = ACTIONS(3184), - [anon_sym_any] = ACTIONS(3184), - [anon_sym_number] = ACTIONS(3184), - [anon_sym_boolean] = ACTIONS(3184), - [anon_sym_string] = ACTIONS(3184), - [anon_sym_symbol] = ACTIONS(3184), - [anon_sym_object] = ACTIONS(3184), - [anon_sym_abstract] = ACTIONS(3184), - [anon_sym_interface] = ACTIONS(3184), - [anon_sym_enum] = ACTIONS(3184), + [anon_sym_BQUOTE] = ACTIONS(3292), + [sym_number] = ACTIONS(3292), + [sym_private_property_identifier] = ACTIONS(3292), + [sym_this] = ACTIONS(3292), + [sym_super] = ACTIONS(3292), + [sym_true] = ACTIONS(3292), + [sym_false] = ACTIONS(3292), + [sym_null] = ACTIONS(3292), + [sym_undefined] = ACTIONS(3292), + [anon_sym_AT] = ACTIONS(3292), + [anon_sym_static] = ACTIONS(3292), + [anon_sym_readonly] = ACTIONS(3292), + [anon_sym_get] = ACTIONS(3292), + [anon_sym_set] = ACTIONS(3292), + [anon_sym_declare] = ACTIONS(3292), + [anon_sym_public] = ACTIONS(3292), + [anon_sym_private] = ACTIONS(3292), + [anon_sym_protected] = ACTIONS(3292), + [anon_sym_override] = ACTIONS(3292), + [anon_sym_module] = ACTIONS(3292), + [anon_sym_any] = ACTIONS(3292), + [anon_sym_number] = ACTIONS(3292), + [anon_sym_boolean] = ACTIONS(3292), + [anon_sym_string] = ACTIONS(3292), + [anon_sym_symbol] = ACTIONS(3292), + [anon_sym_object] = ACTIONS(3292), + [anon_sym_abstract] = ACTIONS(3292), + [anon_sym_interface] = ACTIONS(3292), + [anon_sym_enum] = ACTIONS(3292), [sym_html_comment] = ACTIONS(5), }, - [1710] = { - [sym_comment] = STATE(1710), - [ts_builtin_sym_end] = ACTIONS(3412), - [sym_identifier] = ACTIONS(3286), - [anon_sym_export] = ACTIONS(3286), - [anon_sym_type] = ACTIONS(3286), - [anon_sym_namespace] = ACTIONS(3286), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_RBRACE] = ACTIONS(3286), - [anon_sym_typeof] = ACTIONS(3286), - [anon_sym_import] = ACTIONS(3286), - [anon_sym_with] = ACTIONS(3286), - [anon_sym_var] = ACTIONS(3286), - [anon_sym_let] = ACTIONS(3286), - [anon_sym_const] = ACTIONS(3286), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_if] = ACTIONS(3286), - [anon_sym_switch] = ACTIONS(3286), - [anon_sym_for] = ACTIONS(3286), - [anon_sym_LPAREN] = ACTIONS(3286), - [anon_sym_await] = ACTIONS(3286), - [anon_sym_while] = ACTIONS(3286), - [anon_sym_do] = ACTIONS(3286), - [anon_sym_try] = ACTIONS(3286), - [anon_sym_break] = ACTIONS(3286), - [anon_sym_continue] = ACTIONS(3286), - [anon_sym_debugger] = ACTIONS(3286), - [anon_sym_return] = ACTIONS(3286), - [anon_sym_throw] = ACTIONS(3286), - [anon_sym_SEMI] = ACTIONS(3286), - [anon_sym_yield] = ACTIONS(3286), - [anon_sym_LBRACK] = ACTIONS(3286), - [anon_sym_LTtemplate_GT] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [anon_sym_class] = ACTIONS(3286), - [anon_sym_async] = ACTIONS(3286), - [anon_sym_function] = ACTIONS(3286), - [anon_sym_new] = ACTIONS(3286), - [anon_sym_using] = ACTIONS(3286), - [anon_sym_PLUS] = ACTIONS(3286), - [anon_sym_DASH] = ACTIONS(3286), - [anon_sym_SLASH] = ACTIONS(3286), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_void] = ACTIONS(3286), - [anon_sym_delete] = ACTIONS(3286), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3286), - [sym_number] = ACTIONS(3286), - [sym_private_property_identifier] = ACTIONS(3286), - [sym_this] = ACTIONS(3286), - [sym_super] = ACTIONS(3286), - [sym_true] = ACTIONS(3286), - [sym_false] = ACTIONS(3286), - [sym_null] = ACTIONS(3286), - [sym_undefined] = ACTIONS(3286), - [anon_sym_AT] = ACTIONS(3286), - [anon_sym_static] = ACTIONS(3286), - [anon_sym_readonly] = ACTIONS(3286), - [anon_sym_get] = ACTIONS(3286), - [anon_sym_set] = ACTIONS(3286), - [anon_sym_declare] = ACTIONS(3286), - [anon_sym_public] = ACTIONS(3286), - [anon_sym_private] = ACTIONS(3286), - [anon_sym_protected] = ACTIONS(3286), - [anon_sym_override] = ACTIONS(3286), - [anon_sym_module] = ACTIONS(3286), - [anon_sym_any] = ACTIONS(3286), - [anon_sym_number] = ACTIONS(3286), - [anon_sym_boolean] = ACTIONS(3286), - [anon_sym_string] = ACTIONS(3286), - [anon_sym_symbol] = ACTIONS(3286), - [anon_sym_object] = ACTIONS(3286), - [anon_sym_abstract] = ACTIONS(3286), - [anon_sym_interface] = ACTIONS(3286), - [anon_sym_enum] = ACTIONS(3286), + [1563] = { + [sym_comment] = STATE(1563), + [ts_builtin_sym_end] = ACTIONS(2253), + [sym_identifier] = ACTIONS(2251), + [anon_sym_export] = ACTIONS(2251), + [anon_sym_type] = ACTIONS(2251), + [anon_sym_namespace] = ACTIONS(2251), + [anon_sym_LBRACE] = ACTIONS(2251), + [anon_sym_RBRACE] = ACTIONS(2251), + [anon_sym_typeof] = ACTIONS(2251), + [anon_sym_import] = ACTIONS(2251), + [anon_sym_with] = ACTIONS(2251), + [anon_sym_var] = ACTIONS(2251), + [anon_sym_let] = ACTIONS(2251), + [anon_sym_const] = ACTIONS(2251), + [anon_sym_BANG] = ACTIONS(2251), + [anon_sym_if] = ACTIONS(2251), + [anon_sym_switch] = ACTIONS(2251), + [anon_sym_for] = ACTIONS(2251), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_await] = ACTIONS(2251), + [anon_sym_while] = ACTIONS(2251), + [anon_sym_do] = ACTIONS(2251), + [anon_sym_try] = ACTIONS(2251), + [anon_sym_break] = ACTIONS(2251), + [anon_sym_continue] = ACTIONS(2251), + [anon_sym_debugger] = ACTIONS(2251), + [anon_sym_return] = ACTIONS(2251), + [anon_sym_throw] = ACTIONS(2251), + [anon_sym_SEMI] = ACTIONS(2251), + [anon_sym_yield] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(2251), + [anon_sym_LTtemplate_GT] = ACTIONS(2251), + [anon_sym_DQUOTE] = ACTIONS(2251), + [anon_sym_SQUOTE] = ACTIONS(2251), + [anon_sym_class] = ACTIONS(2251), + [anon_sym_async] = ACTIONS(2251), + [anon_sym_function] = ACTIONS(2251), + [anon_sym_new] = ACTIONS(2251), + [anon_sym_using] = ACTIONS(2251), + [anon_sym_PLUS] = ACTIONS(2251), + [anon_sym_DASH] = ACTIONS(2251), + [anon_sym_SLASH] = ACTIONS(2251), + [anon_sym_LT] = ACTIONS(2251), + [anon_sym_TILDE] = ACTIONS(2251), + [anon_sym_void] = ACTIONS(2251), + [anon_sym_delete] = ACTIONS(2251), + [anon_sym_PLUS_PLUS] = ACTIONS(2251), + [anon_sym_DASH_DASH] = ACTIONS(2251), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2251), + [sym_number] = ACTIONS(2251), + [sym_private_property_identifier] = ACTIONS(2251), + [sym_this] = ACTIONS(2251), + [sym_super] = ACTIONS(2251), + [sym_true] = ACTIONS(2251), + [sym_false] = ACTIONS(2251), + [sym_null] = ACTIONS(2251), + [sym_undefined] = ACTIONS(2251), + [anon_sym_AT] = ACTIONS(2251), + [anon_sym_static] = ACTIONS(2251), + [anon_sym_readonly] = ACTIONS(2251), + [anon_sym_get] = ACTIONS(2251), + [anon_sym_set] = ACTIONS(2251), + [anon_sym_declare] = ACTIONS(2251), + [anon_sym_public] = ACTIONS(2251), + [anon_sym_private] = ACTIONS(2251), + [anon_sym_protected] = ACTIONS(2251), + [anon_sym_override] = ACTIONS(2251), + [anon_sym_module] = ACTIONS(2251), + [anon_sym_any] = ACTIONS(2251), + [anon_sym_number] = ACTIONS(2251), + [anon_sym_boolean] = ACTIONS(2251), + [anon_sym_string] = ACTIONS(2251), + [anon_sym_symbol] = ACTIONS(2251), + [anon_sym_object] = ACTIONS(2251), + [anon_sym_abstract] = ACTIONS(2251), + [anon_sym_interface] = ACTIONS(2251), + [anon_sym_enum] = ACTIONS(2251), [sym_html_comment] = ACTIONS(5), }, - [1711] = { - [sym_comment] = STATE(1711), - [ts_builtin_sym_end] = ACTIONS(3458), - [sym_identifier] = ACTIONS(3326), - [anon_sym_export] = ACTIONS(3326), - [anon_sym_type] = ACTIONS(3326), - [anon_sym_namespace] = ACTIONS(3326), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_RBRACE] = ACTIONS(3326), - [anon_sym_typeof] = ACTIONS(3326), - [anon_sym_import] = ACTIONS(3326), - [anon_sym_with] = ACTIONS(3326), - [anon_sym_var] = ACTIONS(3326), - [anon_sym_let] = ACTIONS(3326), - [anon_sym_const] = ACTIONS(3326), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_if] = ACTIONS(3326), - [anon_sym_switch] = ACTIONS(3326), - [anon_sym_for] = ACTIONS(3326), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_await] = ACTIONS(3326), - [anon_sym_while] = ACTIONS(3326), - [anon_sym_do] = ACTIONS(3326), - [anon_sym_try] = ACTIONS(3326), - [anon_sym_break] = ACTIONS(3326), - [anon_sym_continue] = ACTIONS(3326), - [anon_sym_debugger] = ACTIONS(3326), - [anon_sym_return] = ACTIONS(3326), - [anon_sym_throw] = ACTIONS(3326), - [anon_sym_SEMI] = ACTIONS(3326), - [anon_sym_yield] = ACTIONS(3326), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LTtemplate_GT] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3326), - [anon_sym_class] = ACTIONS(3326), - [anon_sym_async] = ACTIONS(3326), - [anon_sym_function] = ACTIONS(3326), - [anon_sym_new] = ACTIONS(3326), - [anon_sym_using] = ACTIONS(3326), - [anon_sym_PLUS] = ACTIONS(3326), - [anon_sym_DASH] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_TILDE] = ACTIONS(3326), - [anon_sym_void] = ACTIONS(3326), - [anon_sym_delete] = ACTIONS(3326), - [anon_sym_PLUS_PLUS] = ACTIONS(3326), - [anon_sym_DASH_DASH] = ACTIONS(3326), + [1564] = { + [sym_comment] = STATE(1564), + [ts_builtin_sym_end] = ACTIONS(2147), + [sym_identifier] = ACTIONS(2145), + [anon_sym_export] = ACTIONS(2145), + [anon_sym_type] = ACTIONS(2145), + [anon_sym_namespace] = ACTIONS(2145), + [anon_sym_LBRACE] = ACTIONS(2145), + [anon_sym_RBRACE] = ACTIONS(2145), + [anon_sym_typeof] = ACTIONS(2145), + [anon_sym_import] = ACTIONS(2145), + [anon_sym_with] = ACTIONS(2145), + [anon_sym_var] = ACTIONS(2145), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [anon_sym_BANG] = ACTIONS(2145), + [anon_sym_if] = ACTIONS(2145), + [anon_sym_switch] = ACTIONS(2145), + [anon_sym_for] = ACTIONS(2145), + [anon_sym_LPAREN] = ACTIONS(2145), + [anon_sym_await] = ACTIONS(2145), + [anon_sym_while] = ACTIONS(2145), + [anon_sym_do] = ACTIONS(2145), + [anon_sym_try] = ACTIONS(2145), + [anon_sym_break] = ACTIONS(2145), + [anon_sym_continue] = ACTIONS(2145), + [anon_sym_debugger] = ACTIONS(2145), + [anon_sym_return] = ACTIONS(2145), + [anon_sym_throw] = ACTIONS(2145), + [anon_sym_SEMI] = ACTIONS(2145), + [anon_sym_yield] = ACTIONS(2145), + [anon_sym_LBRACK] = ACTIONS(2145), + [anon_sym_LTtemplate_GT] = ACTIONS(2145), + [anon_sym_DQUOTE] = ACTIONS(2145), + [anon_sym_SQUOTE] = ACTIONS(2145), + [anon_sym_class] = ACTIONS(2145), + [anon_sym_async] = ACTIONS(2145), + [anon_sym_function] = ACTIONS(2145), + [anon_sym_new] = ACTIONS(2145), + [anon_sym_using] = ACTIONS(2145), + [anon_sym_PLUS] = ACTIONS(2145), + [anon_sym_DASH] = ACTIONS(2145), + [anon_sym_SLASH] = ACTIONS(2145), + [anon_sym_LT] = ACTIONS(2145), + [anon_sym_TILDE] = ACTIONS(2145), + [anon_sym_void] = ACTIONS(2145), + [anon_sym_delete] = ACTIONS(2145), + [anon_sym_PLUS_PLUS] = ACTIONS(2145), + [anon_sym_DASH_DASH] = ACTIONS(2145), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3326), - [sym_number] = ACTIONS(3326), - [sym_private_property_identifier] = ACTIONS(3326), - [sym_this] = ACTIONS(3326), - [sym_super] = ACTIONS(3326), - [sym_true] = ACTIONS(3326), - [sym_false] = ACTIONS(3326), - [sym_null] = ACTIONS(3326), - [sym_undefined] = ACTIONS(3326), - [anon_sym_AT] = ACTIONS(3326), - [anon_sym_static] = ACTIONS(3326), - [anon_sym_readonly] = ACTIONS(3326), - [anon_sym_get] = ACTIONS(3326), - [anon_sym_set] = ACTIONS(3326), - [anon_sym_declare] = ACTIONS(3326), - [anon_sym_public] = ACTIONS(3326), - [anon_sym_private] = ACTIONS(3326), - [anon_sym_protected] = ACTIONS(3326), - [anon_sym_override] = ACTIONS(3326), - [anon_sym_module] = ACTIONS(3326), - [anon_sym_any] = ACTIONS(3326), - [anon_sym_number] = ACTIONS(3326), - [anon_sym_boolean] = ACTIONS(3326), - [anon_sym_string] = ACTIONS(3326), - [anon_sym_symbol] = ACTIONS(3326), - [anon_sym_object] = ACTIONS(3326), - [anon_sym_abstract] = ACTIONS(3326), - [anon_sym_interface] = ACTIONS(3326), - [anon_sym_enum] = ACTIONS(3326), + [anon_sym_BQUOTE] = ACTIONS(2145), + [sym_number] = ACTIONS(2145), + [sym_private_property_identifier] = ACTIONS(2145), + [sym_this] = ACTIONS(2145), + [sym_super] = ACTIONS(2145), + [sym_true] = ACTIONS(2145), + [sym_false] = ACTIONS(2145), + [sym_null] = ACTIONS(2145), + [sym_undefined] = ACTIONS(2145), + [anon_sym_AT] = ACTIONS(2145), + [anon_sym_static] = ACTIONS(2145), + [anon_sym_readonly] = ACTIONS(2145), + [anon_sym_get] = ACTIONS(2145), + [anon_sym_set] = ACTIONS(2145), + [anon_sym_declare] = ACTIONS(2145), + [anon_sym_public] = ACTIONS(2145), + [anon_sym_private] = ACTIONS(2145), + [anon_sym_protected] = ACTIONS(2145), + [anon_sym_override] = ACTIONS(2145), + [anon_sym_module] = ACTIONS(2145), + [anon_sym_any] = ACTIONS(2145), + [anon_sym_number] = ACTIONS(2145), + [anon_sym_boolean] = ACTIONS(2145), + [anon_sym_string] = ACTIONS(2145), + [anon_sym_symbol] = ACTIONS(2145), + [anon_sym_object] = ACTIONS(2145), + [anon_sym_abstract] = ACTIONS(2145), + [anon_sym_interface] = ACTIONS(2145), + [anon_sym_enum] = ACTIONS(2145), [sym_html_comment] = ACTIONS(5), }, - [1712] = { - [sym_comment] = STATE(1712), - [ts_builtin_sym_end] = ACTIONS(3460), - [sym_identifier] = ACTIONS(3138), - [anon_sym_export] = ACTIONS(3138), - [anon_sym_type] = ACTIONS(3138), - [anon_sym_namespace] = ACTIONS(3138), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_typeof] = ACTIONS(3138), - [anon_sym_import] = ACTIONS(3138), - [anon_sym_with] = ACTIONS(3138), - [anon_sym_var] = ACTIONS(3138), - [anon_sym_let] = ACTIONS(3138), - [anon_sym_const] = ACTIONS(3138), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_if] = ACTIONS(3138), - [anon_sym_switch] = ACTIONS(3138), - [anon_sym_for] = ACTIONS(3138), - [anon_sym_LPAREN] = ACTIONS(3138), - [anon_sym_await] = ACTIONS(3138), - [anon_sym_while] = ACTIONS(3138), - [anon_sym_do] = ACTIONS(3138), - [anon_sym_try] = ACTIONS(3138), - [anon_sym_break] = ACTIONS(3138), - [anon_sym_continue] = ACTIONS(3138), - [anon_sym_debugger] = ACTIONS(3138), - [anon_sym_return] = ACTIONS(3138), - [anon_sym_throw] = ACTIONS(3138), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_yield] = ACTIONS(3138), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_LTtemplate_GT] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [anon_sym_class] = ACTIONS(3138), - [anon_sym_async] = ACTIONS(3138), - [anon_sym_function] = ACTIONS(3138), - [anon_sym_new] = ACTIONS(3138), - [anon_sym_using] = ACTIONS(3138), - [anon_sym_PLUS] = ACTIONS(3138), - [anon_sym_DASH] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_void] = ACTIONS(3138), - [anon_sym_delete] = ACTIONS(3138), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_DASH_DASH] = ACTIONS(3138), + [1565] = { + [sym_comment] = STATE(1565), + [ts_builtin_sym_end] = ACTIONS(3472), + [sym_identifier] = ACTIONS(3214), + [anon_sym_export] = ACTIONS(3214), + [anon_sym_type] = ACTIONS(3214), + [anon_sym_namespace] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3214), + [anon_sym_RBRACE] = ACTIONS(3214), + [anon_sym_typeof] = ACTIONS(3214), + [anon_sym_import] = ACTIONS(3214), + [anon_sym_with] = ACTIONS(3214), + [anon_sym_var] = ACTIONS(3214), + [anon_sym_let] = ACTIONS(3214), + [anon_sym_const] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3214), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_switch] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3214), + [anon_sym_await] = ACTIONS(3214), + [anon_sym_while] = ACTIONS(3214), + [anon_sym_do] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_debugger] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_throw] = ACTIONS(3214), + [anon_sym_SEMI] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3214), + [anon_sym_LBRACK] = ACTIONS(3214), + [anon_sym_LTtemplate_GT] = ACTIONS(3214), + [anon_sym_DQUOTE] = ACTIONS(3214), + [anon_sym_SQUOTE] = ACTIONS(3214), + [anon_sym_class] = ACTIONS(3214), + [anon_sym_async] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3214), + [anon_sym_using] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_LT] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3214), + [anon_sym_void] = ACTIONS(3214), + [anon_sym_delete] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3214), + [anon_sym_DASH_DASH] = ACTIONS(3214), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3138), - [sym_number] = ACTIONS(3138), - [sym_private_property_identifier] = ACTIONS(3138), - [sym_this] = ACTIONS(3138), - [sym_super] = ACTIONS(3138), - [sym_true] = ACTIONS(3138), - [sym_false] = ACTIONS(3138), - [sym_null] = ACTIONS(3138), - [sym_undefined] = ACTIONS(3138), - [anon_sym_AT] = ACTIONS(3138), - [anon_sym_static] = ACTIONS(3138), - [anon_sym_readonly] = ACTIONS(3138), - [anon_sym_get] = ACTIONS(3138), - [anon_sym_set] = ACTIONS(3138), - [anon_sym_declare] = ACTIONS(3138), - [anon_sym_public] = ACTIONS(3138), - [anon_sym_private] = ACTIONS(3138), - [anon_sym_protected] = ACTIONS(3138), - [anon_sym_override] = ACTIONS(3138), - [anon_sym_module] = ACTIONS(3138), - [anon_sym_any] = ACTIONS(3138), - [anon_sym_number] = ACTIONS(3138), - [anon_sym_boolean] = ACTIONS(3138), - [anon_sym_string] = ACTIONS(3138), - [anon_sym_symbol] = ACTIONS(3138), - [anon_sym_object] = ACTIONS(3138), - [anon_sym_abstract] = ACTIONS(3138), - [anon_sym_interface] = ACTIONS(3138), - [anon_sym_enum] = ACTIONS(3138), + [anon_sym_BQUOTE] = ACTIONS(3214), + [sym_number] = ACTIONS(3214), + [sym_private_property_identifier] = ACTIONS(3214), + [sym_this] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_true] = ACTIONS(3214), + [sym_false] = ACTIONS(3214), + [sym_null] = ACTIONS(3214), + [sym_undefined] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3214), + [anon_sym_static] = ACTIONS(3214), + [anon_sym_readonly] = ACTIONS(3214), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_declare] = ACTIONS(3214), + [anon_sym_public] = ACTIONS(3214), + [anon_sym_private] = ACTIONS(3214), + [anon_sym_protected] = ACTIONS(3214), + [anon_sym_override] = ACTIONS(3214), + [anon_sym_module] = ACTIONS(3214), + [anon_sym_any] = ACTIONS(3214), + [anon_sym_number] = ACTIONS(3214), + [anon_sym_boolean] = ACTIONS(3214), + [anon_sym_string] = ACTIONS(3214), + [anon_sym_symbol] = ACTIONS(3214), + [anon_sym_object] = ACTIONS(3214), + [anon_sym_abstract] = ACTIONS(3214), + [anon_sym_interface] = ACTIONS(3214), + [anon_sym_enum] = ACTIONS(3214), [sym_html_comment] = ACTIONS(5), }, - [1713] = { - [sym_comment] = STATE(1713), - [ts_builtin_sym_end] = ACTIONS(3462), - [sym_identifier] = ACTIONS(3132), - [anon_sym_export] = ACTIONS(3132), - [anon_sym_type] = ACTIONS(3132), - [anon_sym_namespace] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3132), - [anon_sym_RBRACE] = ACTIONS(3132), - [anon_sym_typeof] = ACTIONS(3132), - [anon_sym_import] = ACTIONS(3132), - [anon_sym_with] = ACTIONS(3132), - [anon_sym_var] = ACTIONS(3132), - [anon_sym_let] = ACTIONS(3132), - [anon_sym_const] = ACTIONS(3132), - [anon_sym_BANG] = ACTIONS(3132), - [anon_sym_if] = ACTIONS(3132), - [anon_sym_switch] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3132), - [anon_sym_await] = ACTIONS(3132), - [anon_sym_while] = ACTIONS(3132), - [anon_sym_do] = ACTIONS(3132), - [anon_sym_try] = ACTIONS(3132), - [anon_sym_break] = ACTIONS(3132), - [anon_sym_continue] = ACTIONS(3132), - [anon_sym_debugger] = ACTIONS(3132), - [anon_sym_return] = ACTIONS(3132), - [anon_sym_throw] = ACTIONS(3132), - [anon_sym_SEMI] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3132), - [anon_sym_LTtemplate_GT] = ACTIONS(3132), - [anon_sym_DQUOTE] = ACTIONS(3132), - [anon_sym_SQUOTE] = ACTIONS(3132), - [anon_sym_class] = ACTIONS(3132), - [anon_sym_async] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3132), - [anon_sym_using] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_SLASH] = ACTIONS(3132), - [anon_sym_LT] = ACTIONS(3132), - [anon_sym_TILDE] = ACTIONS(3132), - [anon_sym_void] = ACTIONS(3132), - [anon_sym_delete] = ACTIONS(3132), - [anon_sym_PLUS_PLUS] = ACTIONS(3132), - [anon_sym_DASH_DASH] = ACTIONS(3132), + [1566] = { + [sym_comment] = STATE(1566), + [ts_builtin_sym_end] = ACTIONS(3540), + [sym_identifier] = ACTIONS(3222), + [anon_sym_export] = ACTIONS(3222), + [anon_sym_type] = ACTIONS(3222), + [anon_sym_namespace] = ACTIONS(3222), + [anon_sym_LBRACE] = ACTIONS(3222), + [anon_sym_RBRACE] = ACTIONS(3222), + [anon_sym_typeof] = ACTIONS(3222), + [anon_sym_import] = ACTIONS(3222), + [anon_sym_with] = ACTIONS(3222), + [anon_sym_var] = ACTIONS(3222), + [anon_sym_let] = ACTIONS(3222), + [anon_sym_const] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3222), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_switch] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3222), + [anon_sym_await] = ACTIONS(3222), + [anon_sym_while] = ACTIONS(3222), + [anon_sym_do] = ACTIONS(3222), + [anon_sym_try] = ACTIONS(3222), + [anon_sym_break] = ACTIONS(3222), + [anon_sym_continue] = ACTIONS(3222), + [anon_sym_debugger] = ACTIONS(3222), + [anon_sym_return] = ACTIONS(3222), + [anon_sym_throw] = ACTIONS(3222), + [anon_sym_SEMI] = ACTIONS(3222), + [anon_sym_yield] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3222), + [anon_sym_LTtemplate_GT] = ACTIONS(3222), + [anon_sym_DQUOTE] = ACTIONS(3222), + [anon_sym_SQUOTE] = ACTIONS(3222), + [anon_sym_class] = ACTIONS(3222), + [anon_sym_async] = ACTIONS(3222), + [anon_sym_function] = ACTIONS(3222), + [anon_sym_new] = ACTIONS(3222), + [anon_sym_using] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3222), + [anon_sym_DASH] = ACTIONS(3222), + [anon_sym_SLASH] = ACTIONS(3222), + [anon_sym_LT] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3222), + [anon_sym_void] = ACTIONS(3222), + [anon_sym_delete] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3222), + [anon_sym_DASH_DASH] = ACTIONS(3222), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3132), - [sym_number] = ACTIONS(3132), - [sym_private_property_identifier] = ACTIONS(3132), - [sym_this] = ACTIONS(3132), - [sym_super] = ACTIONS(3132), - [sym_true] = ACTIONS(3132), - [sym_false] = ACTIONS(3132), - [sym_null] = ACTIONS(3132), - [sym_undefined] = ACTIONS(3132), - [anon_sym_AT] = ACTIONS(3132), - [anon_sym_static] = ACTIONS(3132), - [anon_sym_readonly] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3132), - [anon_sym_set] = ACTIONS(3132), - [anon_sym_declare] = ACTIONS(3132), - [anon_sym_public] = ACTIONS(3132), - [anon_sym_private] = ACTIONS(3132), - [anon_sym_protected] = ACTIONS(3132), - [anon_sym_override] = ACTIONS(3132), - [anon_sym_module] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3132), - [anon_sym_number] = ACTIONS(3132), - [anon_sym_boolean] = ACTIONS(3132), - [anon_sym_string] = ACTIONS(3132), - [anon_sym_symbol] = ACTIONS(3132), - [anon_sym_object] = ACTIONS(3132), - [anon_sym_abstract] = ACTIONS(3132), - [anon_sym_interface] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3132), + [anon_sym_BQUOTE] = ACTIONS(3222), + [sym_number] = ACTIONS(3222), + [sym_private_property_identifier] = ACTIONS(3222), + [sym_this] = ACTIONS(3222), + [sym_super] = ACTIONS(3222), + [sym_true] = ACTIONS(3222), + [sym_false] = ACTIONS(3222), + [sym_null] = ACTIONS(3222), + [sym_undefined] = ACTIONS(3222), + [anon_sym_AT] = ACTIONS(3222), + [anon_sym_static] = ACTIONS(3222), + [anon_sym_readonly] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3222), + [anon_sym_set] = ACTIONS(3222), + [anon_sym_declare] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3222), + [anon_sym_private] = ACTIONS(3222), + [anon_sym_protected] = ACTIONS(3222), + [anon_sym_override] = ACTIONS(3222), + [anon_sym_module] = ACTIONS(3222), + [anon_sym_any] = ACTIONS(3222), + [anon_sym_number] = ACTIONS(3222), + [anon_sym_boolean] = ACTIONS(3222), + [anon_sym_string] = ACTIONS(3222), + [anon_sym_symbol] = ACTIONS(3222), + [anon_sym_object] = ACTIONS(3222), + [anon_sym_abstract] = ACTIONS(3222), + [anon_sym_interface] = ACTIONS(3222), + [anon_sym_enum] = ACTIONS(3222), [sym_html_comment] = ACTIONS(5), }, - [1714] = { - [sym_comment] = STATE(1714), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1567] = { + [sym_comment] = STATE(1567), + [ts_builtin_sym_end] = ACTIONS(3430), + [sym_identifier] = ACTIONS(3156), + [anon_sym_export] = ACTIONS(3156), + [anon_sym_type] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_typeof] = ACTIONS(3156), + [anon_sym_import] = ACTIONS(3156), + [anon_sym_with] = ACTIONS(3156), + [anon_sym_var] = ACTIONS(3156), + [anon_sym_let] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_switch] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_await] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_do] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_debugger] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_LTtemplate_GT] = ACTIONS(3156), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3156), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_async] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3156), + [anon_sym_using] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_SLASH] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_void] = ACTIONS(3156), + [anon_sym_delete] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3156), + [sym_number] = ACTIONS(3156), + [sym_private_property_identifier] = ACTIONS(3156), + [sym_this] = ACTIONS(3156), + [sym_super] = ACTIONS(3156), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [sym_null] = ACTIONS(3156), + [sym_undefined] = ACTIONS(3156), + [anon_sym_AT] = ACTIONS(3156), + [anon_sym_static] = ACTIONS(3156), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3156), + [anon_sym_set] = ACTIONS(3156), + [anon_sym_declare] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_override] = ACTIONS(3156), + [anon_sym_module] = ACTIONS(3156), + [anon_sym_any] = ACTIONS(3156), + [anon_sym_number] = ACTIONS(3156), + [anon_sym_boolean] = ACTIONS(3156), + [anon_sym_string] = ACTIONS(3156), + [anon_sym_symbol] = ACTIONS(3156), + [anon_sym_object] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_interface] = ACTIONS(3156), + [anon_sym_enum] = ACTIONS(3156), [sym_html_comment] = ACTIONS(5), }, - [1715] = { - [sym_comment] = STATE(1715), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1568] = { + [sym_comment] = STATE(1568), + [ts_builtin_sym_end] = ACTIONS(3436), + [sym_identifier] = ACTIONS(3154), + [anon_sym_export] = ACTIONS(3154), + [anon_sym_type] = ACTIONS(3154), + [anon_sym_namespace] = ACTIONS(3154), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_typeof] = ACTIONS(3154), + [anon_sym_import] = ACTIONS(3154), + [anon_sym_with] = ACTIONS(3154), + [anon_sym_var] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_await] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [anon_sym_debugger] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_throw] = ACTIONS(3154), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LTtemplate_GT] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_async] = ACTIONS(3154), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_using] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_SLASH] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3154), + [anon_sym_void] = ACTIONS(3154), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3154), + [sym_number] = ACTIONS(3154), + [sym_private_property_identifier] = ACTIONS(3154), + [sym_this] = ACTIONS(3154), + [sym_super] = ACTIONS(3154), + [sym_true] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [sym_undefined] = ACTIONS(3154), + [anon_sym_AT] = ACTIONS(3154), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_readonly] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3154), + [anon_sym_set] = ACTIONS(3154), + [anon_sym_declare] = ACTIONS(3154), + [anon_sym_public] = ACTIONS(3154), + [anon_sym_private] = ACTIONS(3154), + [anon_sym_protected] = ACTIONS(3154), + [anon_sym_override] = ACTIONS(3154), + [anon_sym_module] = ACTIONS(3154), + [anon_sym_any] = ACTIONS(3154), + [anon_sym_number] = ACTIONS(3154), + [anon_sym_boolean] = ACTIONS(3154), + [anon_sym_string] = ACTIONS(3154), + [anon_sym_symbol] = ACTIONS(3154), + [anon_sym_object] = ACTIONS(3154), + [anon_sym_abstract] = ACTIONS(3154), + [anon_sym_interface] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), [sym_html_comment] = ACTIONS(5), }, - [1716] = { - [sym_comment] = STATE(1716), + [1569] = { + [sym_comment] = STATE(1569), [ts_builtin_sym_end] = ACTIONS(3464), - [sym_identifier] = ACTIONS(3250), - [anon_sym_export] = ACTIONS(3250), - [anon_sym_type] = ACTIONS(3250), - [anon_sym_namespace] = ACTIONS(3250), - [anon_sym_LBRACE] = ACTIONS(3250), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_typeof] = ACTIONS(3250), - [anon_sym_import] = ACTIONS(3250), - [anon_sym_with] = ACTIONS(3250), - [anon_sym_var] = ACTIONS(3250), - [anon_sym_let] = ACTIONS(3250), - [anon_sym_const] = ACTIONS(3250), - [anon_sym_BANG] = ACTIONS(3250), - [anon_sym_if] = ACTIONS(3250), - [anon_sym_switch] = ACTIONS(3250), - [anon_sym_for] = ACTIONS(3250), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_await] = ACTIONS(3250), - [anon_sym_while] = ACTIONS(3250), - [anon_sym_do] = ACTIONS(3250), - [anon_sym_try] = ACTIONS(3250), - [anon_sym_break] = ACTIONS(3250), - [anon_sym_continue] = ACTIONS(3250), - [anon_sym_debugger] = ACTIONS(3250), - [anon_sym_return] = ACTIONS(3250), - [anon_sym_throw] = ACTIONS(3250), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_yield] = ACTIONS(3250), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_LTtemplate_GT] = ACTIONS(3250), - [anon_sym_DQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [anon_sym_class] = ACTIONS(3250), - [anon_sym_async] = ACTIONS(3250), - [anon_sym_function] = ACTIONS(3250), - [anon_sym_new] = ACTIONS(3250), - [anon_sym_using] = ACTIONS(3250), - [anon_sym_PLUS] = ACTIONS(3250), - [anon_sym_DASH] = ACTIONS(3250), - [anon_sym_SLASH] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_TILDE] = ACTIONS(3250), - [anon_sym_void] = ACTIONS(3250), - [anon_sym_delete] = ACTIONS(3250), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), + [sym_identifier] = ACTIONS(3218), + [anon_sym_export] = ACTIONS(3218), + [anon_sym_type] = ACTIONS(3218), + [anon_sym_namespace] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3218), + [anon_sym_RBRACE] = ACTIONS(3218), + [anon_sym_typeof] = ACTIONS(3218), + [anon_sym_import] = ACTIONS(3218), + [anon_sym_with] = ACTIONS(3218), + [anon_sym_var] = ACTIONS(3218), + [anon_sym_let] = ACTIONS(3218), + [anon_sym_const] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_switch] = ACTIONS(3218), + [anon_sym_for] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3218), + [anon_sym_await] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_do] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_debugger] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3218), + [anon_sym_yield] = ACTIONS(3218), + [anon_sym_LBRACK] = ACTIONS(3218), + [anon_sym_LTtemplate_GT] = ACTIONS(3218), + [anon_sym_DQUOTE] = ACTIONS(3218), + [anon_sym_SQUOTE] = ACTIONS(3218), + [anon_sym_class] = ACTIONS(3218), + [anon_sym_async] = ACTIONS(3218), + [anon_sym_function] = ACTIONS(3218), + [anon_sym_new] = ACTIONS(3218), + [anon_sym_using] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_LT] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3218), + [anon_sym_void] = ACTIONS(3218), + [anon_sym_delete] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3218), + [anon_sym_DASH_DASH] = ACTIONS(3218), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3250), - [sym_number] = ACTIONS(3250), - [sym_private_property_identifier] = ACTIONS(3250), - [sym_this] = ACTIONS(3250), - [sym_super] = ACTIONS(3250), - [sym_true] = ACTIONS(3250), - [sym_false] = ACTIONS(3250), - [sym_null] = ACTIONS(3250), - [sym_undefined] = ACTIONS(3250), - [anon_sym_AT] = ACTIONS(3250), - [anon_sym_static] = ACTIONS(3250), - [anon_sym_readonly] = ACTIONS(3250), - [anon_sym_get] = ACTIONS(3250), - [anon_sym_set] = ACTIONS(3250), - [anon_sym_declare] = ACTIONS(3250), - [anon_sym_public] = ACTIONS(3250), - [anon_sym_private] = ACTIONS(3250), - [anon_sym_protected] = ACTIONS(3250), - [anon_sym_override] = ACTIONS(3250), - [anon_sym_module] = ACTIONS(3250), - [anon_sym_any] = ACTIONS(3250), - [anon_sym_number] = ACTIONS(3250), - [anon_sym_boolean] = ACTIONS(3250), - [anon_sym_string] = ACTIONS(3250), - [anon_sym_symbol] = ACTIONS(3250), - [anon_sym_object] = ACTIONS(3250), - [anon_sym_abstract] = ACTIONS(3250), - [anon_sym_interface] = ACTIONS(3250), - [anon_sym_enum] = ACTIONS(3250), + [anon_sym_BQUOTE] = ACTIONS(3218), + [sym_number] = ACTIONS(3218), + [sym_private_property_identifier] = ACTIONS(3218), + [sym_this] = ACTIONS(3218), + [sym_super] = ACTIONS(3218), + [sym_true] = ACTIONS(3218), + [sym_false] = ACTIONS(3218), + [sym_null] = ACTIONS(3218), + [sym_undefined] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3218), + [anon_sym_static] = ACTIONS(3218), + [anon_sym_readonly] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_declare] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_override] = ACTIONS(3218), + [anon_sym_module] = ACTIONS(3218), + [anon_sym_any] = ACTIONS(3218), + [anon_sym_number] = ACTIONS(3218), + [anon_sym_boolean] = ACTIONS(3218), + [anon_sym_string] = ACTIONS(3218), + [anon_sym_symbol] = ACTIONS(3218), + [anon_sym_object] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_interface] = ACTIONS(3218), + [anon_sym_enum] = ACTIONS(3218), [sym_html_comment] = ACTIONS(5), }, - [1717] = { - [sym_comment] = STATE(1717), - [ts_builtin_sym_end] = ACTIONS(3466), - [sym_identifier] = ACTIONS(3332), - [anon_sym_export] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3332), - [anon_sym_RBRACE] = ACTIONS(3332), - [anon_sym_typeof] = ACTIONS(3332), - [anon_sym_import] = ACTIONS(3332), - [anon_sym_with] = ACTIONS(3332), - [anon_sym_var] = ACTIONS(3332), - [anon_sym_let] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3332), - [anon_sym_await] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_debugger] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3332), - [anon_sym_yield] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3332), - [anon_sym_LTtemplate_GT] = ACTIONS(3332), - [anon_sym_DQUOTE] = ACTIONS(3332), - [anon_sym_SQUOTE] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_async] = ACTIONS(3332), - [anon_sym_function] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_using] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_LT] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3332), - [anon_sym_void] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3332), - [anon_sym_DASH_DASH] = ACTIONS(3332), + [1570] = { + [sym_comment] = STATE(1570), + [ts_builtin_sym_end] = ACTIONS(3570), + [sym_identifier] = ACTIONS(3236), + [anon_sym_export] = ACTIONS(3236), + [anon_sym_type] = ACTIONS(3236), + [anon_sym_namespace] = ACTIONS(3236), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_RBRACE] = ACTIONS(3236), + [anon_sym_typeof] = ACTIONS(3236), + [anon_sym_import] = ACTIONS(3236), + [anon_sym_with] = ACTIONS(3236), + [anon_sym_var] = ACTIONS(3236), + [anon_sym_let] = ACTIONS(3236), + [anon_sym_const] = ACTIONS(3236), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_if] = ACTIONS(3236), + [anon_sym_switch] = ACTIONS(3236), + [anon_sym_for] = ACTIONS(3236), + [anon_sym_LPAREN] = ACTIONS(3236), + [anon_sym_await] = ACTIONS(3236), + [anon_sym_while] = ACTIONS(3236), + [anon_sym_do] = ACTIONS(3236), + [anon_sym_try] = ACTIONS(3236), + [anon_sym_break] = ACTIONS(3236), + [anon_sym_continue] = ACTIONS(3236), + [anon_sym_debugger] = ACTIONS(3236), + [anon_sym_return] = ACTIONS(3236), + [anon_sym_throw] = ACTIONS(3236), + [anon_sym_SEMI] = ACTIONS(3236), + [anon_sym_yield] = ACTIONS(3236), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_LTtemplate_GT] = ACTIONS(3236), + [anon_sym_DQUOTE] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3236), + [anon_sym_class] = ACTIONS(3236), + [anon_sym_async] = ACTIONS(3236), + [anon_sym_function] = ACTIONS(3236), + [anon_sym_new] = ACTIONS(3236), + [anon_sym_using] = ACTIONS(3236), + [anon_sym_PLUS] = ACTIONS(3236), + [anon_sym_DASH] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3236), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_TILDE] = ACTIONS(3236), + [anon_sym_void] = ACTIONS(3236), + [anon_sym_delete] = ACTIONS(3236), + [anon_sym_PLUS_PLUS] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3236), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3332), - [sym_number] = ACTIONS(3332), - [sym_private_property_identifier] = ACTIONS(3332), - [sym_this] = ACTIONS(3332), - [sym_super] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_null] = ACTIONS(3332), - [sym_undefined] = ACTIONS(3332), - [anon_sym_AT] = ACTIONS(3332), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3332), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3332), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_protected] = ACTIONS(3332), - [anon_sym_override] = ACTIONS(3332), - [anon_sym_module] = ACTIONS(3332), - [anon_sym_any] = ACTIONS(3332), - [anon_sym_number] = ACTIONS(3332), - [anon_sym_boolean] = ACTIONS(3332), - [anon_sym_string] = ACTIONS(3332), - [anon_sym_symbol] = ACTIONS(3332), - [anon_sym_object] = ACTIONS(3332), - [anon_sym_abstract] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), + [anon_sym_BQUOTE] = ACTIONS(3236), + [sym_number] = ACTIONS(3236), + [sym_private_property_identifier] = ACTIONS(3236), + [sym_this] = ACTIONS(3236), + [sym_super] = ACTIONS(3236), + [sym_true] = ACTIONS(3236), + [sym_false] = ACTIONS(3236), + [sym_null] = ACTIONS(3236), + [sym_undefined] = ACTIONS(3236), + [anon_sym_AT] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3236), + [anon_sym_readonly] = ACTIONS(3236), + [anon_sym_get] = ACTIONS(3236), + [anon_sym_set] = ACTIONS(3236), + [anon_sym_declare] = ACTIONS(3236), + [anon_sym_public] = ACTIONS(3236), + [anon_sym_private] = ACTIONS(3236), + [anon_sym_protected] = ACTIONS(3236), + [anon_sym_override] = ACTIONS(3236), + [anon_sym_module] = ACTIONS(3236), + [anon_sym_any] = ACTIONS(3236), + [anon_sym_number] = ACTIONS(3236), + [anon_sym_boolean] = ACTIONS(3236), + [anon_sym_string] = ACTIONS(3236), + [anon_sym_symbol] = ACTIONS(3236), + [anon_sym_object] = ACTIONS(3236), + [anon_sym_abstract] = ACTIONS(3236), + [anon_sym_interface] = ACTIONS(3236), + [anon_sym_enum] = ACTIONS(3236), [sym_html_comment] = ACTIONS(5), }, - [1718] = { - [sym_comment] = STATE(1718), - [ts_builtin_sym_end] = ACTIONS(3468), - [sym_identifier] = ACTIONS(3334), - [anon_sym_export] = ACTIONS(3334), - [anon_sym_type] = ACTIONS(3334), - [anon_sym_namespace] = ACTIONS(3334), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3334), - [anon_sym_typeof] = ACTIONS(3334), - [anon_sym_import] = ACTIONS(3334), - [anon_sym_with] = ACTIONS(3334), - [anon_sym_var] = ACTIONS(3334), - [anon_sym_let] = ACTIONS(3334), - [anon_sym_const] = ACTIONS(3334), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_if] = ACTIONS(3334), - [anon_sym_switch] = ACTIONS(3334), - [anon_sym_for] = ACTIONS(3334), - [anon_sym_LPAREN] = ACTIONS(3334), - [anon_sym_await] = ACTIONS(3334), - [anon_sym_while] = ACTIONS(3334), - [anon_sym_do] = ACTIONS(3334), - [anon_sym_try] = ACTIONS(3334), - [anon_sym_break] = ACTIONS(3334), - [anon_sym_continue] = ACTIONS(3334), - [anon_sym_debugger] = ACTIONS(3334), - [anon_sym_return] = ACTIONS(3334), - [anon_sym_throw] = ACTIONS(3334), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym_yield] = ACTIONS(3334), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_LTtemplate_GT] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [anon_sym_class] = ACTIONS(3334), - [anon_sym_async] = ACTIONS(3334), - [anon_sym_function] = ACTIONS(3334), - [anon_sym_new] = ACTIONS(3334), - [anon_sym_using] = ACTIONS(3334), - [anon_sym_PLUS] = ACTIONS(3334), - [anon_sym_DASH] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3334), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_void] = ACTIONS(3334), - [anon_sym_delete] = ACTIONS(3334), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3334), + [1571] = { + [sym_comment] = STATE(1571), + [ts_builtin_sym_end] = ACTIONS(3448), + [sym_identifier] = ACTIONS(3192), + [anon_sym_export] = ACTIONS(3192), + [anon_sym_type] = ACTIONS(3192), + [anon_sym_namespace] = ACTIONS(3192), + [anon_sym_LBRACE] = ACTIONS(3192), + [anon_sym_RBRACE] = ACTIONS(3192), + [anon_sym_typeof] = ACTIONS(3192), + [anon_sym_import] = ACTIONS(3192), + [anon_sym_with] = ACTIONS(3192), + [anon_sym_var] = ACTIONS(3192), + [anon_sym_let] = ACTIONS(3192), + [anon_sym_const] = ACTIONS(3192), + [anon_sym_BANG] = ACTIONS(3192), + [anon_sym_if] = ACTIONS(3192), + [anon_sym_switch] = ACTIONS(3192), + [anon_sym_for] = ACTIONS(3192), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_await] = ACTIONS(3192), + [anon_sym_while] = ACTIONS(3192), + [anon_sym_do] = ACTIONS(3192), + [anon_sym_try] = ACTIONS(3192), + [anon_sym_break] = ACTIONS(3192), + [anon_sym_continue] = ACTIONS(3192), + [anon_sym_debugger] = ACTIONS(3192), + [anon_sym_return] = ACTIONS(3192), + [anon_sym_throw] = ACTIONS(3192), + [anon_sym_SEMI] = ACTIONS(3192), + [anon_sym_yield] = ACTIONS(3192), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_LTtemplate_GT] = ACTIONS(3192), + [anon_sym_DQUOTE] = ACTIONS(3192), + [anon_sym_SQUOTE] = ACTIONS(3192), + [anon_sym_class] = ACTIONS(3192), + [anon_sym_async] = ACTIONS(3192), + [anon_sym_function] = ACTIONS(3192), + [anon_sym_new] = ACTIONS(3192), + [anon_sym_using] = ACTIONS(3192), + [anon_sym_PLUS] = ACTIONS(3192), + [anon_sym_DASH] = ACTIONS(3192), + [anon_sym_SLASH] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3192), + [anon_sym_TILDE] = ACTIONS(3192), + [anon_sym_void] = ACTIONS(3192), + [anon_sym_delete] = ACTIONS(3192), + [anon_sym_PLUS_PLUS] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3192), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3334), - [sym_number] = ACTIONS(3334), - [sym_private_property_identifier] = ACTIONS(3334), - [sym_this] = ACTIONS(3334), - [sym_super] = ACTIONS(3334), - [sym_true] = ACTIONS(3334), - [sym_false] = ACTIONS(3334), - [sym_null] = ACTIONS(3334), - [sym_undefined] = ACTIONS(3334), - [anon_sym_AT] = ACTIONS(3334), - [anon_sym_static] = ACTIONS(3334), - [anon_sym_readonly] = ACTIONS(3334), - [anon_sym_get] = ACTIONS(3334), - [anon_sym_set] = ACTIONS(3334), - [anon_sym_declare] = ACTIONS(3334), - [anon_sym_public] = ACTIONS(3334), - [anon_sym_private] = ACTIONS(3334), - [anon_sym_protected] = ACTIONS(3334), - [anon_sym_override] = ACTIONS(3334), - [anon_sym_module] = ACTIONS(3334), - [anon_sym_any] = ACTIONS(3334), - [anon_sym_number] = ACTIONS(3334), - [anon_sym_boolean] = ACTIONS(3334), - [anon_sym_string] = ACTIONS(3334), - [anon_sym_symbol] = ACTIONS(3334), - [anon_sym_object] = ACTIONS(3334), - [anon_sym_abstract] = ACTIONS(3334), - [anon_sym_interface] = ACTIONS(3334), - [anon_sym_enum] = ACTIONS(3334), - [sym_html_comment] = ACTIONS(5), - }, - [1719] = { - [sym_comment] = STATE(1719), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [anon_sym_BQUOTE] = ACTIONS(3192), + [sym_number] = ACTIONS(3192), + [sym_private_property_identifier] = ACTIONS(3192), + [sym_this] = ACTIONS(3192), + [sym_super] = ACTIONS(3192), + [sym_true] = ACTIONS(3192), + [sym_false] = ACTIONS(3192), + [sym_null] = ACTIONS(3192), + [sym_undefined] = ACTIONS(3192), + [anon_sym_AT] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3192), + [anon_sym_readonly] = ACTIONS(3192), + [anon_sym_get] = ACTIONS(3192), + [anon_sym_set] = ACTIONS(3192), + [anon_sym_declare] = ACTIONS(3192), + [anon_sym_public] = ACTIONS(3192), + [anon_sym_private] = ACTIONS(3192), + [anon_sym_protected] = ACTIONS(3192), + [anon_sym_override] = ACTIONS(3192), + [anon_sym_module] = ACTIONS(3192), + [anon_sym_any] = ACTIONS(3192), + [anon_sym_number] = ACTIONS(3192), + [anon_sym_boolean] = ACTIONS(3192), + [anon_sym_string] = ACTIONS(3192), + [anon_sym_symbol] = ACTIONS(3192), + [anon_sym_object] = ACTIONS(3192), + [anon_sym_abstract] = ACTIONS(3192), + [anon_sym_interface] = ACTIONS(3192), + [anon_sym_enum] = ACTIONS(3192), [sym_html_comment] = ACTIONS(5), }, - [1720] = { - [sym_comment] = STATE(1720), - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3336), - [anon_sym_RBRACE] = ACTIONS(3336), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3336), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3336), - [anon_sym_LTtemplate_GT] = ACTIONS(3336), - [anon_sym_DQUOTE] = ACTIONS(3336), - [anon_sym_SQUOTE] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_using] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_LT] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3336), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3336), - [anon_sym_DASH_DASH] = ACTIONS(3336), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3336), - [sym_number] = ACTIONS(3336), - [sym_private_property_identifier] = ACTIONS(3336), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3336), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_override] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_object] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [1572] = { + [sym_comment] = STATE(1572), + [ts_builtin_sym_end] = ACTIONS(3462), + [sym_identifier] = ACTIONS(3220), + [anon_sym_export] = ACTIONS(3220), + [anon_sym_type] = ACTIONS(3220), + [anon_sym_namespace] = ACTIONS(3220), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3220), + [anon_sym_typeof] = ACTIONS(3220), + [anon_sym_import] = ACTIONS(3220), + [anon_sym_with] = ACTIONS(3220), + [anon_sym_var] = ACTIONS(3220), + [anon_sym_let] = ACTIONS(3220), + [anon_sym_const] = ACTIONS(3220), + [anon_sym_BANG] = ACTIONS(3220), + [anon_sym_if] = ACTIONS(3220), + [anon_sym_switch] = ACTIONS(3220), + [anon_sym_for] = ACTIONS(3220), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_await] = ACTIONS(3220), + [anon_sym_while] = ACTIONS(3220), + [anon_sym_do] = ACTIONS(3220), + [anon_sym_try] = ACTIONS(3220), + [anon_sym_break] = ACTIONS(3220), + [anon_sym_continue] = ACTIONS(3220), + [anon_sym_debugger] = ACTIONS(3220), + [anon_sym_return] = ACTIONS(3220), + [anon_sym_throw] = ACTIONS(3220), + [anon_sym_SEMI] = ACTIONS(3220), + [anon_sym_yield] = ACTIONS(3220), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_LTtemplate_GT] = ACTIONS(3220), + [anon_sym_DQUOTE] = ACTIONS(3220), + [anon_sym_SQUOTE] = ACTIONS(3220), + [anon_sym_class] = ACTIONS(3220), + [anon_sym_async] = ACTIONS(3220), + [anon_sym_function] = ACTIONS(3220), + [anon_sym_new] = ACTIONS(3220), + [anon_sym_using] = ACTIONS(3220), + [anon_sym_PLUS] = ACTIONS(3220), + [anon_sym_DASH] = ACTIONS(3220), + [anon_sym_SLASH] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(3220), + [anon_sym_TILDE] = ACTIONS(3220), + [anon_sym_void] = ACTIONS(3220), + [anon_sym_delete] = ACTIONS(3220), + [anon_sym_PLUS_PLUS] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3220), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3220), + [sym_number] = ACTIONS(3220), + [sym_private_property_identifier] = ACTIONS(3220), + [sym_this] = ACTIONS(3220), + [sym_super] = ACTIONS(3220), + [sym_true] = ACTIONS(3220), + [sym_false] = ACTIONS(3220), + [sym_null] = ACTIONS(3220), + [sym_undefined] = ACTIONS(3220), + [anon_sym_AT] = ACTIONS(3220), + [anon_sym_static] = ACTIONS(3220), + [anon_sym_readonly] = ACTIONS(3220), + [anon_sym_get] = ACTIONS(3220), + [anon_sym_set] = ACTIONS(3220), + [anon_sym_declare] = ACTIONS(3220), + [anon_sym_public] = ACTIONS(3220), + [anon_sym_private] = ACTIONS(3220), + [anon_sym_protected] = ACTIONS(3220), + [anon_sym_override] = ACTIONS(3220), + [anon_sym_module] = ACTIONS(3220), + [anon_sym_any] = ACTIONS(3220), + [anon_sym_number] = ACTIONS(3220), + [anon_sym_boolean] = ACTIONS(3220), + [anon_sym_string] = ACTIONS(3220), + [anon_sym_symbol] = ACTIONS(3220), + [anon_sym_object] = ACTIONS(3220), + [anon_sym_abstract] = ACTIONS(3220), + [anon_sym_interface] = ACTIONS(3220), + [anon_sym_enum] = ACTIONS(3220), [sym_html_comment] = ACTIONS(5), }, - [1721] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1721), - [sym_formal_parameters] = STATE(7329), - [sym_rest_pattern] = STATE(6774), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(5889), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(3586), + [1573] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1573), + [sym_formal_parameters] = STATE(7012), + [sym_rest_pattern] = STATE(6668), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6245), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_COMMA] = ACTIONS(3588), + [anon_sym_COMMA] = ACTIONS(3592), [anon_sym_typeof] = ACTIONS(1888), [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3590), + [anon_sym_RBRACK] = ACTIONS(3594), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1900), @@ -204596,55 +192152,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1722] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1722), - [sym_formal_parameters] = STATE(7329), - [sym_rest_pattern] = STATE(6774), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6179), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(3586), + [1574] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1574), + [sym_formal_parameters] = STATE(7012), + [sym_rest_pattern] = STATE(6668), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6309), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_COMMA] = ACTIONS(3594), + [anon_sym_COMMA] = ACTIONS(3598), [anon_sym_typeof] = ACTIONS(1888), [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3596), + [anon_sym_RBRACK] = ACTIONS(3600), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1900), @@ -204676,55 +192232,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1723] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1723), - [sym_formal_parameters] = STATE(7329), - [sym_rest_pattern] = STATE(6774), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6241), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(3586), + [1575] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1575), + [sym_formal_parameters] = STATE(7012), + [sym_rest_pattern] = STATE(6668), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(5996), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_COMMA] = ACTIONS(3598), + [anon_sym_COMMA] = ACTIONS(3602), [anon_sym_typeof] = ACTIONS(1888), [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3600), + [anon_sym_RBRACK] = ACTIONS(3604), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1900), @@ -204756,55 +192312,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1724] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1724), - [sym_formal_parameters] = STATE(7329), - [sym_rest_pattern] = STATE(6774), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6175), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(3586), + [1576] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1576), + [sym_formal_parameters] = STATE(7012), + [sym_rest_pattern] = STATE(6668), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(5706), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_COMMA] = ACTIONS(3602), + [anon_sym_COMMA] = ACTIONS(3606), [anon_sym_typeof] = ACTIONS(1888), [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3604), + [anon_sym_RBRACK] = ACTIONS(3608), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1900), @@ -204836,55 +192392,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1725] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1725), - [sym_formal_parameters] = STATE(7329), - [sym_rest_pattern] = STATE(6774), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6428), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(3586), + [1577] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1577), + [sym_formal_parameters] = STATE(7012), + [sym_rest_pattern] = STATE(6668), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6160), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_COMMA] = ACTIONS(3606), + [anon_sym_COMMA] = ACTIONS(3610), [anon_sym_typeof] = ACTIONS(1888), [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3608), + [anon_sym_RBRACK] = ACTIONS(3612), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1900), @@ -204916,133 +192472,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1726] = { - [sym_comment] = STATE(1726), - [sym_identifier] = ACTIONS(3078), - [anon_sym_export] = ACTIONS(3078), - [anon_sym_type] = ACTIONS(3078), - [anon_sym_namespace] = ACTIONS(3078), - [anon_sym_LBRACE] = ACTIONS(3078), - [anon_sym_typeof] = ACTIONS(3078), - [anon_sym_import] = ACTIONS(3078), - [anon_sym_with] = ACTIONS(3078), - [anon_sym_var] = ACTIONS(3078), - [anon_sym_let] = ACTIONS(3078), - [anon_sym_const] = ACTIONS(3078), - [anon_sym_BANG] = ACTIONS(3078), - [anon_sym_if] = ACTIONS(3078), - [anon_sym_switch] = ACTIONS(3078), - [anon_sym_for] = ACTIONS(3078), - [anon_sym_LPAREN] = ACTIONS(3078), - [anon_sym_await] = ACTIONS(3078), - [anon_sym_while] = ACTIONS(3078), - [anon_sym_do] = ACTIONS(3078), - [anon_sym_try] = ACTIONS(3078), - [anon_sym_break] = ACTIONS(3078), - [anon_sym_continue] = ACTIONS(3078), - [anon_sym_debugger] = ACTIONS(3078), - [anon_sym_return] = ACTIONS(3078), - [anon_sym_throw] = ACTIONS(3078), - [anon_sym_SEMI] = ACTIONS(3078), - [anon_sym_yield] = ACTIONS(3078), - [anon_sym_LBRACK] = ACTIONS(3078), - [anon_sym_LTtemplate_GT] = ACTIONS(3078), - [anon_sym_DQUOTE] = ACTIONS(3078), - [anon_sym_SQUOTE] = ACTIONS(3078), - [anon_sym_class] = ACTIONS(3078), - [anon_sym_async] = ACTIONS(3078), - [anon_sym_function] = ACTIONS(3078), - [anon_sym_new] = ACTIONS(3078), - [anon_sym_using] = ACTIONS(3078), - [anon_sym_PLUS] = ACTIONS(3078), - [anon_sym_DASH] = ACTIONS(3078), - [anon_sym_SLASH] = ACTIONS(3078), - [anon_sym_LT] = ACTIONS(3078), - [anon_sym_TILDE] = ACTIONS(3078), - [anon_sym_void] = ACTIONS(3078), - [anon_sym_delete] = ACTIONS(3078), - [anon_sym_PLUS_PLUS] = ACTIONS(3078), - [anon_sym_DASH_DASH] = ACTIONS(3078), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3078), - [sym_number] = ACTIONS(3078), - [sym_private_property_identifier] = ACTIONS(3078), - [sym_this] = ACTIONS(3078), - [sym_super] = ACTIONS(3078), - [sym_true] = ACTIONS(3078), - [sym_false] = ACTIONS(3078), - [sym_null] = ACTIONS(3078), - [sym_undefined] = ACTIONS(3078), - [anon_sym_AT] = ACTIONS(3078), - [anon_sym_static] = ACTIONS(3078), - [anon_sym_readonly] = ACTIONS(3078), - [anon_sym_get] = ACTIONS(3078), - [anon_sym_set] = ACTIONS(3078), - [anon_sym_declare] = ACTIONS(3078), - [anon_sym_public] = ACTIONS(3078), - [anon_sym_private] = ACTIONS(3078), - [anon_sym_protected] = ACTIONS(3078), - [anon_sym_override] = ACTIONS(3078), - [anon_sym_module] = ACTIONS(3078), - [anon_sym_any] = ACTIONS(3078), - [anon_sym_number] = ACTIONS(3078), - [anon_sym_boolean] = ACTIONS(3078), - [anon_sym_string] = ACTIONS(3078), - [anon_sym_symbol] = ACTIONS(3078), - [anon_sym_object] = ACTIONS(3078), - [anon_sym_abstract] = ACTIONS(3078), - [anon_sym_interface] = ACTIONS(3078), - [anon_sym_enum] = ACTIONS(3078), - [sym_html_comment] = ACTIONS(5), - }, - [1727] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1727), - [sym_formal_parameters] = STATE(7329), - [sym_rest_pattern] = STATE(6774), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6520), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(3586), + [1578] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1578), + [sym_formal_parameters] = STATE(7012), + [sym_rest_pattern] = STATE(6668), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6690), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), [anon_sym_typeof] = ACTIONS(1888), [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3610), + [anon_sym_RBRACK] = ACTIONS(3614), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1900), @@ -205074,528 +192551,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1728] = { - [sym_comment] = STATE(1728), - [sym_identifier] = ACTIONS(3612), - [anon_sym_export] = ACTIONS(3612), - [anon_sym_type] = ACTIONS(3612), - [anon_sym_namespace] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_typeof] = ACTIONS(3612), - [anon_sym_import] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3612), - [anon_sym_var] = ACTIONS(3612), - [anon_sym_let] = ACTIONS(3612), - [anon_sym_const] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3612), - [anon_sym_if] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_await] = ACTIONS(3612), - [anon_sym_while] = ACTIONS(3612), - [anon_sym_do] = ACTIONS(3612), - [anon_sym_try] = ACTIONS(3612), - [anon_sym_break] = ACTIONS(3612), - [anon_sym_continue] = ACTIONS(3612), - [anon_sym_debugger] = ACTIONS(3612), - [anon_sym_return] = ACTIONS(3612), - [anon_sym_throw] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LTtemplate_GT] = ACTIONS(3612), - [anon_sym_DQUOTE] = ACTIONS(3612), - [anon_sym_SQUOTE] = ACTIONS(3612), - [anon_sym_class] = ACTIONS(3612), - [anon_sym_async] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3612), - [anon_sym_using] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3612), - [anon_sym_void] = ACTIONS(3612), - [anon_sym_delete] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3612), - [sym_number] = ACTIONS(3612), - [sym_private_property_identifier] = ACTIONS(3612), - [sym_this] = ACTIONS(3612), - [sym_super] = ACTIONS(3612), - [sym_true] = ACTIONS(3612), - [sym_false] = ACTIONS(3612), - [sym_null] = ACTIONS(3612), - [sym_undefined] = ACTIONS(3612), - [anon_sym_AT] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3612), - [anon_sym_readonly] = ACTIONS(3612), - [anon_sym_get] = ACTIONS(3612), - [anon_sym_set] = ACTIONS(3612), - [anon_sym_declare] = ACTIONS(3612), - [anon_sym_public] = ACTIONS(3612), - [anon_sym_private] = ACTIONS(3612), - [anon_sym_protected] = ACTIONS(3612), - [anon_sym_override] = ACTIONS(3612), - [anon_sym_module] = ACTIONS(3612), - [anon_sym_any] = ACTIONS(3612), - [anon_sym_number] = ACTIONS(3612), - [anon_sym_boolean] = ACTIONS(3612), - [anon_sym_string] = ACTIONS(3612), - [anon_sym_symbol] = ACTIONS(3612), - [anon_sym_object] = ACTIONS(3612), - [anon_sym_abstract] = ACTIONS(3612), - [anon_sym_interface] = ACTIONS(3612), - [anon_sym_enum] = ACTIONS(3612), - [sym_html_comment] = ACTIONS(5), - }, - [1729] = { - [sym_comment] = STATE(1729), - [sym_identifier] = ACTIONS(3612), - [anon_sym_export] = ACTIONS(3612), - [anon_sym_type] = ACTIONS(3612), - [anon_sym_namespace] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_typeof] = ACTIONS(3612), - [anon_sym_import] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3612), - [anon_sym_var] = ACTIONS(3612), - [anon_sym_let] = ACTIONS(3612), - [anon_sym_const] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3612), - [anon_sym_if] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_await] = ACTIONS(3612), - [anon_sym_while] = ACTIONS(3612), - [anon_sym_do] = ACTIONS(3612), - [anon_sym_try] = ACTIONS(3612), - [anon_sym_break] = ACTIONS(3612), - [anon_sym_continue] = ACTIONS(3612), - [anon_sym_debugger] = ACTIONS(3612), - [anon_sym_return] = ACTIONS(3612), - [anon_sym_throw] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LTtemplate_GT] = ACTIONS(3612), - [anon_sym_DQUOTE] = ACTIONS(3612), - [anon_sym_SQUOTE] = ACTIONS(3612), - [anon_sym_class] = ACTIONS(3612), - [anon_sym_async] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3612), - [anon_sym_using] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3612), - [anon_sym_void] = ACTIONS(3612), - [anon_sym_delete] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3612), - [sym_number] = ACTIONS(3612), - [sym_private_property_identifier] = ACTIONS(3612), - [sym_this] = ACTIONS(3612), - [sym_super] = ACTIONS(3612), - [sym_true] = ACTIONS(3612), - [sym_false] = ACTIONS(3612), - [sym_null] = ACTIONS(3612), - [sym_undefined] = ACTIONS(3612), - [anon_sym_AT] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3612), - [anon_sym_readonly] = ACTIONS(3612), - [anon_sym_get] = ACTIONS(3612), - [anon_sym_set] = ACTIONS(3612), - [anon_sym_declare] = ACTIONS(3612), - [anon_sym_public] = ACTIONS(3612), - [anon_sym_private] = ACTIONS(3612), - [anon_sym_protected] = ACTIONS(3612), - [anon_sym_override] = ACTIONS(3612), - [anon_sym_module] = ACTIONS(3612), - [anon_sym_any] = ACTIONS(3612), - [anon_sym_number] = ACTIONS(3612), - [anon_sym_boolean] = ACTIONS(3612), - [anon_sym_string] = ACTIONS(3612), - [anon_sym_symbol] = ACTIONS(3612), - [anon_sym_object] = ACTIONS(3612), - [anon_sym_abstract] = ACTIONS(3612), - [anon_sym_interface] = ACTIONS(3612), - [anon_sym_enum] = ACTIONS(3612), - [sym_html_comment] = ACTIONS(5), - }, - [1730] = { - [sym_comment] = STATE(1730), - [sym_identifier] = ACTIONS(3612), - [anon_sym_export] = ACTIONS(3612), - [anon_sym_type] = ACTIONS(3612), - [anon_sym_namespace] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_typeof] = ACTIONS(3612), - [anon_sym_import] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3612), - [anon_sym_var] = ACTIONS(3612), - [anon_sym_let] = ACTIONS(3612), - [anon_sym_const] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3612), - [anon_sym_if] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_await] = ACTIONS(3612), - [anon_sym_while] = ACTIONS(3612), - [anon_sym_do] = ACTIONS(3612), - [anon_sym_try] = ACTIONS(3612), - [anon_sym_break] = ACTIONS(3612), - [anon_sym_continue] = ACTIONS(3612), - [anon_sym_debugger] = ACTIONS(3612), - [anon_sym_return] = ACTIONS(3612), - [anon_sym_throw] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LTtemplate_GT] = ACTIONS(3612), - [anon_sym_DQUOTE] = ACTIONS(3612), - [anon_sym_SQUOTE] = ACTIONS(3612), - [anon_sym_class] = ACTIONS(3612), - [anon_sym_async] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3612), - [anon_sym_using] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3612), - [anon_sym_void] = ACTIONS(3612), - [anon_sym_delete] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3612), - [sym_number] = ACTIONS(3612), - [sym_private_property_identifier] = ACTIONS(3612), - [sym_this] = ACTIONS(3612), - [sym_super] = ACTIONS(3612), - [sym_true] = ACTIONS(3612), - [sym_false] = ACTIONS(3612), - [sym_null] = ACTIONS(3612), - [sym_undefined] = ACTIONS(3612), - [anon_sym_AT] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3612), - [anon_sym_readonly] = ACTIONS(3612), - [anon_sym_get] = ACTIONS(3612), - [anon_sym_set] = ACTIONS(3612), - [anon_sym_declare] = ACTIONS(3612), - [anon_sym_public] = ACTIONS(3612), - [anon_sym_private] = ACTIONS(3612), - [anon_sym_protected] = ACTIONS(3612), - [anon_sym_override] = ACTIONS(3612), - [anon_sym_module] = ACTIONS(3612), - [anon_sym_any] = ACTIONS(3612), - [anon_sym_number] = ACTIONS(3612), - [anon_sym_boolean] = ACTIONS(3612), - [anon_sym_string] = ACTIONS(3612), - [anon_sym_symbol] = ACTIONS(3612), - [anon_sym_object] = ACTIONS(3612), - [anon_sym_abstract] = ACTIONS(3612), - [anon_sym_interface] = ACTIONS(3612), - [anon_sym_enum] = ACTIONS(3612), - [sym_html_comment] = ACTIONS(5), - }, - [1731] = { - [sym_comment] = STATE(1731), - [sym_identifier] = ACTIONS(3612), - [anon_sym_export] = ACTIONS(3612), - [anon_sym_type] = ACTIONS(3612), - [anon_sym_namespace] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_typeof] = ACTIONS(3612), - [anon_sym_import] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3612), - [anon_sym_var] = ACTIONS(3612), - [anon_sym_let] = ACTIONS(3612), - [anon_sym_const] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3612), - [anon_sym_if] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_await] = ACTIONS(3612), - [anon_sym_while] = ACTIONS(3612), - [anon_sym_do] = ACTIONS(3612), - [anon_sym_try] = ACTIONS(3612), - [anon_sym_break] = ACTIONS(3612), - [anon_sym_continue] = ACTIONS(3612), - [anon_sym_debugger] = ACTIONS(3612), - [anon_sym_return] = ACTIONS(3612), - [anon_sym_throw] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LTtemplate_GT] = ACTIONS(3612), - [anon_sym_DQUOTE] = ACTIONS(3612), - [anon_sym_SQUOTE] = ACTIONS(3612), - [anon_sym_class] = ACTIONS(3612), - [anon_sym_async] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3612), - [anon_sym_using] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3612), - [anon_sym_void] = ACTIONS(3612), - [anon_sym_delete] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3612), - [sym_number] = ACTIONS(3612), - [sym_private_property_identifier] = ACTIONS(3612), - [sym_this] = ACTIONS(3612), - [sym_super] = ACTIONS(3612), - [sym_true] = ACTIONS(3612), - [sym_false] = ACTIONS(3612), - [sym_null] = ACTIONS(3612), - [sym_undefined] = ACTIONS(3612), - [anon_sym_AT] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3612), - [anon_sym_readonly] = ACTIONS(3612), - [anon_sym_get] = ACTIONS(3612), - [anon_sym_set] = ACTIONS(3612), - [anon_sym_declare] = ACTIONS(3612), - [anon_sym_public] = ACTIONS(3612), - [anon_sym_private] = ACTIONS(3612), - [anon_sym_protected] = ACTIONS(3612), - [anon_sym_override] = ACTIONS(3612), - [anon_sym_module] = ACTIONS(3612), - [anon_sym_any] = ACTIONS(3612), - [anon_sym_number] = ACTIONS(3612), - [anon_sym_boolean] = ACTIONS(3612), - [anon_sym_string] = ACTIONS(3612), - [anon_sym_symbol] = ACTIONS(3612), - [anon_sym_object] = ACTIONS(3612), - [anon_sym_abstract] = ACTIONS(3612), - [anon_sym_interface] = ACTIONS(3612), - [anon_sym_enum] = ACTIONS(3612), - [sym_html_comment] = ACTIONS(5), - }, - [1732] = { - [sym_comment] = STATE(1732), - [sym_identifier] = ACTIONS(3612), - [anon_sym_export] = ACTIONS(3612), - [anon_sym_type] = ACTIONS(3612), - [anon_sym_namespace] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_typeof] = ACTIONS(3612), - [anon_sym_import] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3612), - [anon_sym_var] = ACTIONS(3612), - [anon_sym_let] = ACTIONS(3612), - [anon_sym_const] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3612), - [anon_sym_if] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_await] = ACTIONS(3612), - [anon_sym_while] = ACTIONS(3612), - [anon_sym_do] = ACTIONS(3612), - [anon_sym_try] = ACTIONS(3612), - [anon_sym_break] = ACTIONS(3612), - [anon_sym_continue] = ACTIONS(3612), - [anon_sym_debugger] = ACTIONS(3612), - [anon_sym_return] = ACTIONS(3612), - [anon_sym_throw] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LTtemplate_GT] = ACTIONS(3612), - [anon_sym_DQUOTE] = ACTIONS(3612), - [anon_sym_SQUOTE] = ACTIONS(3612), - [anon_sym_class] = ACTIONS(3612), - [anon_sym_async] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3612), - [anon_sym_using] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3612), - [anon_sym_void] = ACTIONS(3612), - [anon_sym_delete] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3612), - [sym_number] = ACTIONS(3612), - [sym_private_property_identifier] = ACTIONS(3612), - [sym_this] = ACTIONS(3612), - [sym_super] = ACTIONS(3612), - [sym_true] = ACTIONS(3612), - [sym_false] = ACTIONS(3612), - [sym_null] = ACTIONS(3612), - [sym_undefined] = ACTIONS(3612), - [anon_sym_AT] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3612), - [anon_sym_readonly] = ACTIONS(3612), - [anon_sym_get] = ACTIONS(3612), - [anon_sym_set] = ACTIONS(3612), - [anon_sym_declare] = ACTIONS(3612), - [anon_sym_public] = ACTIONS(3612), - [anon_sym_private] = ACTIONS(3612), - [anon_sym_protected] = ACTIONS(3612), - [anon_sym_override] = ACTIONS(3612), - [anon_sym_module] = ACTIONS(3612), - [anon_sym_any] = ACTIONS(3612), - [anon_sym_number] = ACTIONS(3612), - [anon_sym_boolean] = ACTIONS(3612), - [anon_sym_string] = ACTIONS(3612), - [anon_sym_symbol] = ACTIONS(3612), - [anon_sym_object] = ACTIONS(3612), - [anon_sym_abstract] = ACTIONS(3612), - [anon_sym_interface] = ACTIONS(3612), - [anon_sym_enum] = ACTIONS(3612), - [sym_html_comment] = ACTIONS(5), - }, - [1733] = { - [sym_comment] = STATE(1733), - [sym_identifier] = ACTIONS(3612), - [anon_sym_export] = ACTIONS(3612), - [anon_sym_type] = ACTIONS(3612), - [anon_sym_namespace] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_typeof] = ACTIONS(3612), - [anon_sym_import] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3612), - [anon_sym_var] = ACTIONS(3612), - [anon_sym_let] = ACTIONS(3612), - [anon_sym_const] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3612), - [anon_sym_if] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_await] = ACTIONS(3612), - [anon_sym_while] = ACTIONS(3612), - [anon_sym_do] = ACTIONS(3612), - [anon_sym_try] = ACTIONS(3612), - [anon_sym_break] = ACTIONS(3612), - [anon_sym_continue] = ACTIONS(3612), - [anon_sym_debugger] = ACTIONS(3612), - [anon_sym_return] = ACTIONS(3612), - [anon_sym_throw] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LTtemplate_GT] = ACTIONS(3612), - [anon_sym_DQUOTE] = ACTIONS(3612), - [anon_sym_SQUOTE] = ACTIONS(3612), - [anon_sym_class] = ACTIONS(3612), - [anon_sym_async] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3612), - [anon_sym_using] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3612), - [anon_sym_void] = ACTIONS(3612), - [anon_sym_delete] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3612), - [sym_number] = ACTIONS(3612), - [sym_private_property_identifier] = ACTIONS(3612), - [sym_this] = ACTIONS(3612), - [sym_super] = ACTIONS(3612), - [sym_true] = ACTIONS(3612), - [sym_false] = ACTIONS(3612), - [sym_null] = ACTIONS(3612), - [sym_undefined] = ACTIONS(3612), - [anon_sym_AT] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3612), - [anon_sym_readonly] = ACTIONS(3612), - [anon_sym_get] = ACTIONS(3612), - [anon_sym_set] = ACTIONS(3612), - [anon_sym_declare] = ACTIONS(3612), - [anon_sym_public] = ACTIONS(3612), - [anon_sym_private] = ACTIONS(3612), - [anon_sym_protected] = ACTIONS(3612), - [anon_sym_override] = ACTIONS(3612), - [anon_sym_module] = ACTIONS(3612), - [anon_sym_any] = ACTIONS(3612), - [anon_sym_number] = ACTIONS(3612), - [anon_sym_boolean] = ACTIONS(3612), - [anon_sym_string] = ACTIONS(3612), - [anon_sym_symbol] = ACTIONS(3612), - [anon_sym_object] = ACTIONS(3612), - [anon_sym_abstract] = ACTIONS(3612), - [anon_sym_interface] = ACTIONS(3612), - [anon_sym_enum] = ACTIONS(3612), - [sym_html_comment] = ACTIONS(5), - }, - [1734] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1734), - [sym_formal_parameters] = STATE(7329), - [sym_rest_pattern] = STATE(6774), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6520), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(3586), + [1579] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1579), + [sym_formal_parameters] = STATE(7012), + [sym_rest_pattern] = STATE(6668), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6690), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), [anon_sym_typeof] = ACTIONS(1888), [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3614), + [anon_sym_RBRACK] = ACTIONS(3616), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1900), @@ -205627,54 +192630,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1735] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1735), - [sym_formal_parameters] = STATE(7329), - [sym_rest_pattern] = STATE(6774), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6520), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(3586), + [1580] = { + [sym_comment] = STATE(1580), + [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_typeof] = ACTIONS(3618), + [anon_sym_import] = 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_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_abstract] = ACTIONS(3618), + [anon_sym_interface] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [sym_html_comment] = ACTIONS(5), + }, + [1581] = { + [sym_comment] = STATE(1581), + [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_typeof] = ACTIONS(3618), + [anon_sym_import] = 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_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_abstract] = ACTIONS(3618), + [anon_sym_interface] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [sym_html_comment] = ACTIONS(5), + }, + [1582] = { + [sym_comment] = STATE(1582), + [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_typeof] = ACTIONS(3618), + [anon_sym_import] = 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_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_abstract] = ACTIONS(3618), + [anon_sym_interface] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [sym_html_comment] = ACTIONS(5), + }, + [1583] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1583), + [sym_formal_parameters] = STATE(7012), + [sym_rest_pattern] = STATE(6668), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6690), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), [anon_sym_typeof] = ACTIONS(1888), [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3616), + [anon_sym_RBRACK] = ACTIONS(3620), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1900), @@ -205706,87 +192946,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1736] = { - [sym_comment] = STATE(1736), - [sym_identifier] = ACTIONS(3612), - [anon_sym_export] = ACTIONS(3612), - [anon_sym_type] = ACTIONS(3612), - [anon_sym_namespace] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_typeof] = ACTIONS(3612), - [anon_sym_import] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3612), - [anon_sym_var] = ACTIONS(3612), - [anon_sym_let] = ACTIONS(3612), - [anon_sym_const] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3612), - [anon_sym_if] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_await] = ACTIONS(3612), - [anon_sym_while] = ACTIONS(3612), - [anon_sym_do] = ACTIONS(3612), - [anon_sym_try] = ACTIONS(3612), - [anon_sym_break] = ACTIONS(3612), - [anon_sym_continue] = ACTIONS(3612), - [anon_sym_debugger] = ACTIONS(3612), - [anon_sym_return] = ACTIONS(3612), - [anon_sym_throw] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LTtemplate_GT] = ACTIONS(3612), - [anon_sym_DQUOTE] = ACTIONS(3612), - [anon_sym_SQUOTE] = ACTIONS(3612), - [anon_sym_class] = ACTIONS(3612), - [anon_sym_async] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3612), - [anon_sym_using] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3612), - [anon_sym_void] = ACTIONS(3612), - [anon_sym_delete] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3612), - [sym_number] = ACTIONS(3612), - [sym_private_property_identifier] = ACTIONS(3612), - [sym_this] = ACTIONS(3612), - [sym_super] = ACTIONS(3612), - [sym_true] = ACTIONS(3612), - [sym_false] = ACTIONS(3612), - [sym_null] = ACTIONS(3612), - [sym_undefined] = ACTIONS(3612), - [anon_sym_AT] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3612), - [anon_sym_readonly] = ACTIONS(3612), - [anon_sym_get] = ACTIONS(3612), - [anon_sym_set] = ACTIONS(3612), - [anon_sym_declare] = ACTIONS(3612), - [anon_sym_public] = ACTIONS(3612), - [anon_sym_private] = ACTIONS(3612), - [anon_sym_protected] = ACTIONS(3612), - [anon_sym_override] = ACTIONS(3612), - [anon_sym_module] = ACTIONS(3612), - [anon_sym_any] = ACTIONS(3612), - [anon_sym_number] = ACTIONS(3612), - [anon_sym_boolean] = ACTIONS(3612), - [anon_sym_string] = ACTIONS(3612), - [anon_sym_symbol] = ACTIONS(3612), - [anon_sym_object] = ACTIONS(3612), - [anon_sym_abstract] = ACTIONS(3612), - [anon_sym_interface] = ACTIONS(3612), - [anon_sym_enum] = ACTIONS(3612), - [sym_html_comment] = ACTIONS(5), - }, - [1737] = { - [sym_comment] = STATE(1737), + [1584] = { + [sym_comment] = STATE(1584), [sym_identifier] = ACTIONS(3618), [anon_sym_export] = ACTIONS(3618), [anon_sym_type] = ACTIONS(3618), @@ -205864,166 +193025,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3618), [sym_html_comment] = ACTIONS(5), }, - [1738] = { - [sym_comment] = STATE(1738), - [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_typeof] = ACTIONS(3620), - [anon_sym_import] = 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_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_abstract] = ACTIONS(3620), - [anon_sym_interface] = ACTIONS(3620), - [anon_sym_enum] = ACTIONS(3620), - [sym_html_comment] = ACTIONS(5), - }, - [1739] = { - [sym_comment] = STATE(1739), - [sym_identifier] = ACTIONS(3612), - [anon_sym_export] = ACTIONS(3612), - [anon_sym_type] = ACTIONS(3612), - [anon_sym_namespace] = ACTIONS(3612), - [anon_sym_LBRACE] = ACTIONS(3612), - [anon_sym_typeof] = ACTIONS(3612), - [anon_sym_import] = ACTIONS(3612), - [anon_sym_with] = ACTIONS(3612), - [anon_sym_var] = ACTIONS(3612), - [anon_sym_let] = ACTIONS(3612), - [anon_sym_const] = ACTIONS(3612), - [anon_sym_BANG] = ACTIONS(3612), - [anon_sym_if] = ACTIONS(3612), - [anon_sym_switch] = ACTIONS(3612), - [anon_sym_for] = ACTIONS(3612), - [anon_sym_LPAREN] = ACTIONS(3612), - [anon_sym_await] = ACTIONS(3612), - [anon_sym_while] = ACTIONS(3612), - [anon_sym_do] = ACTIONS(3612), - [anon_sym_try] = ACTIONS(3612), - [anon_sym_break] = ACTIONS(3612), - [anon_sym_continue] = ACTIONS(3612), - [anon_sym_debugger] = ACTIONS(3612), - [anon_sym_return] = ACTIONS(3612), - [anon_sym_throw] = ACTIONS(3612), - [anon_sym_SEMI] = ACTIONS(3612), - [anon_sym_yield] = ACTIONS(3612), - [anon_sym_LBRACK] = ACTIONS(3612), - [anon_sym_LTtemplate_GT] = ACTIONS(3612), - [anon_sym_DQUOTE] = ACTIONS(3612), - [anon_sym_SQUOTE] = ACTIONS(3612), - [anon_sym_class] = ACTIONS(3612), - [anon_sym_async] = ACTIONS(3612), - [anon_sym_function] = ACTIONS(3612), - [anon_sym_new] = ACTIONS(3612), - [anon_sym_using] = ACTIONS(3612), - [anon_sym_PLUS] = ACTIONS(3612), - [anon_sym_DASH] = ACTIONS(3612), - [anon_sym_SLASH] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(3612), - [anon_sym_TILDE] = ACTIONS(3612), - [anon_sym_void] = ACTIONS(3612), - [anon_sym_delete] = ACTIONS(3612), - [anon_sym_PLUS_PLUS] = ACTIONS(3612), - [anon_sym_DASH_DASH] = ACTIONS(3612), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3612), - [sym_number] = ACTIONS(3612), - [sym_private_property_identifier] = ACTIONS(3612), - [sym_this] = ACTIONS(3612), - [sym_super] = ACTIONS(3612), - [sym_true] = ACTIONS(3612), - [sym_false] = ACTIONS(3612), - [sym_null] = ACTIONS(3612), - [sym_undefined] = ACTIONS(3612), - [anon_sym_AT] = ACTIONS(3612), - [anon_sym_static] = ACTIONS(3612), - [anon_sym_readonly] = ACTIONS(3612), - [anon_sym_get] = ACTIONS(3612), - [anon_sym_set] = ACTIONS(3612), - [anon_sym_declare] = ACTIONS(3612), - [anon_sym_public] = ACTIONS(3612), - [anon_sym_private] = ACTIONS(3612), - [anon_sym_protected] = ACTIONS(3612), - [anon_sym_override] = ACTIONS(3612), - [anon_sym_module] = ACTIONS(3612), - [anon_sym_any] = ACTIONS(3612), - [anon_sym_number] = ACTIONS(3612), - [anon_sym_boolean] = ACTIONS(3612), - [anon_sym_string] = ACTIONS(3612), - [anon_sym_symbol] = ACTIONS(3612), - [anon_sym_object] = ACTIONS(3612), - [anon_sym_abstract] = ACTIONS(3612), - [anon_sym_interface] = ACTIONS(3612), - [anon_sym_enum] = ACTIONS(3612), + [1585] = { + [sym_comment] = STATE(1585), + [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_typeof] = ACTIONS(3618), + [anon_sym_import] = 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_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_abstract] = ACTIONS(3618), + [anon_sym_interface] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), [sym_html_comment] = ACTIONS(5), }, - [1740] = { - [sym_comment] = STATE(1740), + [1586] = { + [sym_comment] = STATE(1586), [sym_identifier] = ACTIONS(3622), [anon_sym_export] = ACTIONS(3622), [anon_sym_type] = ACTIONS(3622), @@ -206101,43 +193183,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3622), [sym_html_comment] = ACTIONS(5), }, - [1741] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1741), - [sym_formal_parameters] = STATE(7329), - [sym_rest_pattern] = STATE(6774), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6520), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(3586), + [1587] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1587), + [sym_formal_parameters] = STATE(7012), + [sym_rest_pattern] = STATE(6668), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6690), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), [anon_sym_typeof] = ACTIONS(1888), @@ -206148,7 +193230,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1900), @@ -206180,43 +193262,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1742] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1742), - [sym_formal_parameters] = STATE(7329), - [sym_rest_pattern] = STATE(6774), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6520), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(3586), + [1588] = { + [sym_comment] = STATE(1588), + [sym_identifier] = ACTIONS(3082), + [anon_sym_export] = ACTIONS(3082), + [anon_sym_type] = ACTIONS(3082), + [anon_sym_namespace] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3082), + [anon_sym_typeof] = ACTIONS(3082), + [anon_sym_import] = ACTIONS(3082), + [anon_sym_with] = ACTIONS(3082), + [anon_sym_var] = ACTIONS(3082), + [anon_sym_let] = ACTIONS(3082), + [anon_sym_const] = ACTIONS(3082), + [anon_sym_BANG] = ACTIONS(3082), + [anon_sym_if] = ACTIONS(3082), + [anon_sym_switch] = ACTIONS(3082), + [anon_sym_for] = ACTIONS(3082), + [anon_sym_LPAREN] = ACTIONS(3082), + [anon_sym_await] = ACTIONS(3082), + [anon_sym_while] = ACTIONS(3082), + [anon_sym_do] = ACTIONS(3082), + [anon_sym_try] = ACTIONS(3082), + [anon_sym_break] = ACTIONS(3082), + [anon_sym_continue] = ACTIONS(3082), + [anon_sym_debugger] = ACTIONS(3082), + [anon_sym_return] = ACTIONS(3082), + [anon_sym_throw] = ACTIONS(3082), + [anon_sym_SEMI] = ACTIONS(3082), + [anon_sym_yield] = ACTIONS(3082), + [anon_sym_LBRACK] = ACTIONS(3082), + [anon_sym_LTtemplate_GT] = ACTIONS(3082), + [anon_sym_DQUOTE] = ACTIONS(3082), + [anon_sym_SQUOTE] = ACTIONS(3082), + [anon_sym_class] = ACTIONS(3082), + [anon_sym_async] = ACTIONS(3082), + [anon_sym_function] = ACTIONS(3082), + [anon_sym_new] = ACTIONS(3082), + [anon_sym_using] = ACTIONS(3082), + [anon_sym_PLUS] = ACTIONS(3082), + [anon_sym_DASH] = ACTIONS(3082), + [anon_sym_SLASH] = ACTIONS(3082), + [anon_sym_LT] = ACTIONS(3082), + [anon_sym_TILDE] = ACTIONS(3082), + [anon_sym_void] = ACTIONS(3082), + [anon_sym_delete] = ACTIONS(3082), + [anon_sym_PLUS_PLUS] = ACTIONS(3082), + [anon_sym_DASH_DASH] = ACTIONS(3082), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3082), + [sym_number] = ACTIONS(3082), + [sym_private_property_identifier] = ACTIONS(3082), + [sym_this] = ACTIONS(3082), + [sym_super] = ACTIONS(3082), + [sym_true] = ACTIONS(3082), + [sym_false] = ACTIONS(3082), + [sym_null] = ACTIONS(3082), + [sym_undefined] = ACTIONS(3082), + [anon_sym_AT] = ACTIONS(3082), + [anon_sym_static] = ACTIONS(3082), + [anon_sym_readonly] = ACTIONS(3082), + [anon_sym_get] = ACTIONS(3082), + [anon_sym_set] = ACTIONS(3082), + [anon_sym_declare] = ACTIONS(3082), + [anon_sym_public] = ACTIONS(3082), + [anon_sym_private] = ACTIONS(3082), + [anon_sym_protected] = ACTIONS(3082), + [anon_sym_override] = ACTIONS(3082), + [anon_sym_module] = ACTIONS(3082), + [anon_sym_any] = ACTIONS(3082), + [anon_sym_number] = ACTIONS(3082), + [anon_sym_boolean] = ACTIONS(3082), + [anon_sym_string] = ACTIONS(3082), + [anon_sym_symbol] = ACTIONS(3082), + [anon_sym_object] = ACTIONS(3082), + [anon_sym_abstract] = ACTIONS(3082), + [anon_sym_interface] = ACTIONS(3082), + [anon_sym_enum] = ACTIONS(3082), + [sym_html_comment] = ACTIONS(5), + }, + [1589] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1589), + [sym_formal_parameters] = STATE(7012), + [sym_rest_pattern] = STATE(6668), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6690), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), [anon_sym_typeof] = ACTIONS(1888), @@ -206227,7 +193388,560 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(207), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(207), + [anon_sym_number] = ACTIONS(207), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(203), + [anon_sym_unique] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [1590] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1590), + [sym_formal_parameters] = STATE(7012), + [sym_rest_pattern] = STATE(6668), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6690), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(3590), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(207), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(207), + [anon_sym_number] = ACTIONS(207), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(203), + [anon_sym_unique] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [1591] = { + [sym_comment] = STATE(1591), + [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_typeof] = ACTIONS(3618), + [anon_sym_import] = 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_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_abstract] = ACTIONS(3618), + [anon_sym_interface] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [sym_html_comment] = ACTIONS(5), + }, + [1592] = { + [sym_comment] = STATE(1592), + [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_typeof] = ACTIONS(3630), + [anon_sym_import] = 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_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_abstract] = ACTIONS(3630), + [anon_sym_interface] = ACTIONS(3630), + [anon_sym_enum] = ACTIONS(3630), + [sym_html_comment] = ACTIONS(5), + }, + [1593] = { + [sym_comment] = STATE(1593), + [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_typeof] = ACTIONS(3632), + [anon_sym_import] = 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_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_abstract] = ACTIONS(3632), + [anon_sym_interface] = ACTIONS(3632), + [anon_sym_enum] = ACTIONS(3632), + [sym_html_comment] = ACTIONS(5), + }, + [1594] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1594), + [sym_formal_parameters] = STATE(7012), + [sym_rest_pattern] = STATE(6668), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6690), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(3590), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(3634), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(207), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(207), + [anon_sym_number] = ACTIONS(207), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(203), + [anon_sym_unique] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [1595] = { + [sym_comment] = STATE(1595), + [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_typeof] = ACTIONS(3618), + [anon_sym_import] = 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_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_abstract] = ACTIONS(3618), + [anon_sym_interface] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), + [sym_html_comment] = ACTIONS(5), + }, + [1596] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1596), + [sym_formal_parameters] = STATE(7012), + [sym_rest_pattern] = STATE(6668), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6690), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(3590), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(3636), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1900), @@ -206259,133 +193973,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1743] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1743), - [sym_formal_parameters] = STATE(7329), - [sym_rest_pattern] = STATE(6774), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6520), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(3586), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3628), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3592), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [1597] = { + [sym_comment] = STATE(1597), + [sym_identifier] = ACTIONS(3116), + [anon_sym_export] = ACTIONS(3116), + [anon_sym_type] = ACTIONS(3116), + [anon_sym_namespace] = ACTIONS(3116), + [anon_sym_LBRACE] = ACTIONS(3116), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(3116), + [anon_sym_with] = ACTIONS(3116), + [anon_sym_var] = ACTIONS(3116), + [anon_sym_let] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(3116), + [anon_sym_if] = ACTIONS(3116), + [anon_sym_switch] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3116), + [anon_sym_await] = ACTIONS(3116), + [anon_sym_while] = ACTIONS(3116), + [anon_sym_do] = ACTIONS(3116), + [anon_sym_try] = ACTIONS(3116), + [anon_sym_break] = ACTIONS(3116), + [anon_sym_continue] = ACTIONS(3116), + [anon_sym_debugger] = ACTIONS(3116), + [anon_sym_return] = ACTIONS(3116), + [anon_sym_throw] = ACTIONS(3116), + [anon_sym_SEMI] = ACTIONS(3116), + [anon_sym_yield] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3116), + [anon_sym_LTtemplate_GT] = ACTIONS(3116), + [anon_sym_DQUOTE] = ACTIONS(3116), + [anon_sym_SQUOTE] = ACTIONS(3116), + [anon_sym_class] = ACTIONS(3116), + [anon_sym_async] = ACTIONS(3116), + [anon_sym_function] = ACTIONS(3116), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_using] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3116), + [anon_sym_SLASH] = ACTIONS(3116), + [anon_sym_LT] = ACTIONS(3116), + [anon_sym_TILDE] = ACTIONS(3116), + [anon_sym_void] = ACTIONS(3116), + [anon_sym_delete] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3116), + [anon_sym_DASH_DASH] = ACTIONS(3116), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3116), + [sym_number] = ACTIONS(3116), + [sym_private_property_identifier] = ACTIONS(3116), + [sym_this] = ACTIONS(3116), + [sym_super] = ACTIONS(3116), + [sym_true] = ACTIONS(3116), + [sym_false] = ACTIONS(3116), + [sym_null] = ACTIONS(3116), + [sym_undefined] = ACTIONS(3116), + [anon_sym_AT] = ACTIONS(3116), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_readonly] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3116), + [anon_sym_set] = ACTIONS(3116), + [anon_sym_declare] = ACTIONS(3116), + [anon_sym_public] = ACTIONS(3116), + [anon_sym_private] = ACTIONS(3116), + [anon_sym_protected] = ACTIONS(3116), + [anon_sym_override] = ACTIONS(3116), + [anon_sym_module] = ACTIONS(3116), + [anon_sym_any] = ACTIONS(3116), + [anon_sym_number] = ACTIONS(3116), + [anon_sym_boolean] = ACTIONS(3116), + [anon_sym_string] = ACTIONS(3116), + [anon_sym_symbol] = ACTIONS(3116), + [anon_sym_object] = ACTIONS(3116), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_interface] = ACTIONS(3116), + [anon_sym_enum] = ACTIONS(3116), [sym_html_comment] = ACTIONS(5), }, - [1744] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1744), - [sym_formal_parameters] = STATE(7329), - [sym_rest_pattern] = STATE(6774), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6520), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(3586), + [1598] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1598), + [sym_formal_parameters] = STATE(7012), + [sym_rest_pattern] = STATE(6668), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6690), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), [anon_sym_typeof] = ACTIONS(1888), [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3630), + [anon_sym_RBRACK] = ACTIONS(3638), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1900), @@ -206417,133 +194131,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1745] = { - [sym_comment] = STATE(1745), - [sym_identifier] = ACTIONS(3072), - [anon_sym_export] = ACTIONS(3072), - [anon_sym_type] = ACTIONS(3072), - [anon_sym_namespace] = ACTIONS(3072), - [anon_sym_LBRACE] = ACTIONS(3072), - [anon_sym_typeof] = ACTIONS(3072), - [anon_sym_import] = ACTIONS(3072), - [anon_sym_with] = ACTIONS(3072), - [anon_sym_var] = ACTIONS(3072), - [anon_sym_let] = ACTIONS(3072), - [anon_sym_const] = ACTIONS(3072), - [anon_sym_BANG] = ACTIONS(3072), - [anon_sym_if] = ACTIONS(3072), - [anon_sym_switch] = ACTIONS(3072), - [anon_sym_for] = ACTIONS(3072), - [anon_sym_LPAREN] = ACTIONS(3072), - [anon_sym_await] = ACTIONS(3072), - [anon_sym_while] = ACTIONS(3072), - [anon_sym_do] = ACTIONS(3072), - [anon_sym_try] = ACTIONS(3072), - [anon_sym_break] = ACTIONS(3072), - [anon_sym_continue] = ACTIONS(3072), - [anon_sym_debugger] = ACTIONS(3072), - [anon_sym_return] = ACTIONS(3072), - [anon_sym_throw] = ACTIONS(3072), - [anon_sym_SEMI] = ACTIONS(3072), - [anon_sym_yield] = ACTIONS(3072), - [anon_sym_LBRACK] = ACTIONS(3072), - [anon_sym_LTtemplate_GT] = ACTIONS(3072), - [anon_sym_DQUOTE] = ACTIONS(3072), - [anon_sym_SQUOTE] = ACTIONS(3072), - [anon_sym_class] = ACTIONS(3072), - [anon_sym_async] = ACTIONS(3072), - [anon_sym_function] = ACTIONS(3072), - [anon_sym_new] = ACTIONS(3072), - [anon_sym_using] = ACTIONS(3072), - [anon_sym_PLUS] = ACTIONS(3072), - [anon_sym_DASH] = ACTIONS(3072), - [anon_sym_SLASH] = ACTIONS(3072), - [anon_sym_LT] = ACTIONS(3072), - [anon_sym_TILDE] = ACTIONS(3072), - [anon_sym_void] = ACTIONS(3072), - [anon_sym_delete] = ACTIONS(3072), - [anon_sym_PLUS_PLUS] = ACTIONS(3072), - [anon_sym_DASH_DASH] = ACTIONS(3072), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3072), - [sym_number] = ACTIONS(3072), - [sym_private_property_identifier] = ACTIONS(3072), - [sym_this] = ACTIONS(3072), - [sym_super] = ACTIONS(3072), - [sym_true] = ACTIONS(3072), - [sym_false] = ACTIONS(3072), - [sym_null] = ACTIONS(3072), - [sym_undefined] = ACTIONS(3072), - [anon_sym_AT] = ACTIONS(3072), - [anon_sym_static] = ACTIONS(3072), - [anon_sym_readonly] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(3072), - [anon_sym_set] = ACTIONS(3072), - [anon_sym_declare] = ACTIONS(3072), - [anon_sym_public] = ACTIONS(3072), - [anon_sym_private] = ACTIONS(3072), - [anon_sym_protected] = ACTIONS(3072), - [anon_sym_override] = ACTIONS(3072), - [anon_sym_module] = ACTIONS(3072), - [anon_sym_any] = ACTIONS(3072), - [anon_sym_number] = ACTIONS(3072), - [anon_sym_boolean] = ACTIONS(3072), - [anon_sym_string] = ACTIONS(3072), - [anon_sym_symbol] = ACTIONS(3072), - [anon_sym_object] = ACTIONS(3072), - [anon_sym_abstract] = ACTIONS(3072), - [anon_sym_interface] = ACTIONS(3072), - [anon_sym_enum] = ACTIONS(3072), - [sym_html_comment] = ACTIONS(5), - }, - [1746] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1746), - [sym_formal_parameters] = STATE(7329), - [sym_rest_pattern] = STATE(6774), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6520), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(3586), + [1599] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1599), + [sym_formal_parameters] = STATE(7012), + [sym_rest_pattern] = STATE(6668), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6690), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), [anon_sym_typeof] = ACTIONS(1888), [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3632), + [anon_sym_RBRACK] = ACTIONS(3640), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3592), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1900), @@ -206575,133 +194210,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1747] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1747), - [sym_formal_parameters] = STATE(7329), - [sym_rest_pattern] = STATE(6774), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6520), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(3586), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3634), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3592), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), + [1600] = { + [sym_comment] = STATE(1600), + [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_typeof] = ACTIONS(3618), + [anon_sym_import] = 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_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(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [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_abstract] = ACTIONS(3618), + [anon_sym_interface] = ACTIONS(3618), + [anon_sym_enum] = ACTIONS(3618), [sym_html_comment] = ACTIONS(5), }, - [1748] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1748), - [sym_formal_parameters] = STATE(7329), - [sym_rest_pattern] = STATE(6774), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6520), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(3586), + [1601] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1601), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(4150), + [sym__type_query_call_expression_in_type_annotation] = STATE(4507), + [sym_asserts] = STATE(6812), + [sym__type] = STATE(4140), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_predicate] = STATE(6834), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3680), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(3642), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_import] = ACTIONS(128), [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(3636), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3592), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1900), @@ -206711,7 +194344,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), + [sym_this] = ACTIONS(3644), [sym_true] = ACTIONS(1906), [sym_false] = ACTIONS(1906), [sym_null] = ACTIONS(1906), @@ -206725,6 +194358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), [anon_sym_abstract] = ACTIONS(199), + [anon_sym_asserts] = ACTIONS(3646), [anon_sym_infer] = ACTIONS(201), [anon_sym_keyof] = ACTIONS(203), [anon_sym_unique] = ACTIONS(205), @@ -206733,130 +194367,131 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1749] = { - [sym_import] = STATE(6247), - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1749), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type_query_member_expression_in_type_annotation] = STATE(4193), - [sym__type_query_call_expression_in_type_annotation] = STATE(4477), - [sym_asserts] = STATE(4858), - [sym__type] = STATE(4194), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_predicate] = STATE(4855), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4090), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(3638), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), + [1602] = { + [sym_import] = STATE(5669), + [sym_nested_identifier] = STATE(7161), + [sym_string] = STATE(4286), + [sym_comment] = STATE(1602), + [sym_formal_parameters] = STATE(7313), + [sym_nested_type_identifier] = STATE(3987), + [sym__type_query_member_expression_in_type_annotation] = STATE(4310), + [sym__type_query_call_expression_in_type_annotation] = STATE(4714), + [sym_asserts] = STATE(5184), + [sym__type] = STATE(4309), + [sym_constructor_type] = STATE(4279), + [sym__primary_type] = STATE(4277), + [sym_template_literal_type] = STATE(4298), + [sym_infer_type] = STATE(4279), + [sym_conditional_type] = STATE(4298), + [sym_generic_type] = STATE(4298), + [sym_type_predicate] = STATE(5187), + [sym_type_query] = STATE(4298), + [sym_index_type_query] = STATE(4298), + [sym_lookup_type] = STATE(4298), + [sym_literal_type] = STATE(4298), + [sym__number] = STATE(4253), + [sym_existential_type] = STATE(4298), + [sym_flow_maybe_type] = STATE(4298), + [sym_parenthesized_type] = STATE(4298), + [sym_predefined_type] = STATE(4033), + [sym_object_type] = STATE(4298), + [sym_type_parameters] = STATE(6810), + [sym_array_type] = STATE(4298), + [sym_tuple_type] = STATE(4298), + [sym_readonly_type] = STATE(4279), + [sym_union_type] = STATE(4298), + [sym_intersection_type] = STATE(4298), + [sym_function_type] = STATE(4279), + [sym_identifier] = ACTIONS(3648), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3654), [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(3640), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_asserts] = ACTIONS(3642), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(3674), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3678), + [sym_this] = ACTIONS(3680), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [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_abstract] = ACTIONS(3686), + [anon_sym_asserts] = ACTIONS(3688), + [anon_sym_infer] = ACTIONS(3690), + [anon_sym_keyof] = ACTIONS(3692), + [anon_sym_unique] = ACTIONS(3694), + [anon_sym_unknown] = ACTIONS(3674), + [anon_sym_never] = ACTIONS(3674), + [anon_sym_LBRACE_PIPE] = ACTIONS(3652), [sym_html_comment] = ACTIONS(5), }, - [1750] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1750), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(4256), - [sym__type_query_call_expression_in_type_annotation] = STATE(4694), - [sym_asserts] = STATE(6528), - [sym__type] = STATE(4251), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_predicate] = STATE(6533), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3824), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(3644), + [1603] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1603), + [sym_formal_parameters] = STATE(7012), + [sym_rest_pattern] = STATE(6668), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4796), + [sym_tuple_parameter] = STATE(6666), + [sym_optional_tuple_parameter] = STATE(6666), + [sym_optional_type] = STATE(6666), + [sym_rest_type] = STATE(6666), + [sym__tuple_type_member] = STATE(6690), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(3590), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_import] = ACTIONS(128), [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3596), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1900), @@ -206866,7 +194501,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(3646), + [sym_this] = ACTIONS(1908), [sym_true] = ACTIONS(1906), [sym_false] = ACTIONS(1906), [sym_null] = ACTIONS(1906), @@ -206880,7 +194515,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), [anon_sym_abstract] = ACTIONS(199), - [anon_sym_asserts] = ACTIONS(3648), [anon_sym_infer] = ACTIONS(201), [anon_sym_keyof] = ACTIONS(203), [anon_sym_unique] = ACTIONS(205), @@ -206889,131 +194523,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1751] = { - [sym_import] = STATE(5852), - [sym_nested_identifier] = STATE(7344), - [sym_string] = STATE(4431), - [sym_comment] = STATE(1751), - [sym_formal_parameters] = STATE(7555), - [sym_nested_type_identifier] = STATE(4170), - [sym__type_query_member_expression_in_type_annotation] = STATE(4449), - [sym__type_query_call_expression_in_type_annotation] = STATE(4852), - [sym_asserts] = STATE(5505), - [sym__type] = STATE(4448), - [sym_constructor_type] = STATE(4427), - [sym__primary_type] = STATE(4425), - [sym_template_literal_type] = STATE(4437), - [sym_infer_type] = STATE(4427), - [sym_conditional_type] = STATE(4437), - [sym_generic_type] = STATE(4437), - [sym_type_predicate] = STATE(5506), - [sym_type_query] = STATE(4437), - [sym_index_type_query] = STATE(4437), - [sym_lookup_type] = STATE(4437), - [sym_literal_type] = STATE(4437), - [sym__number] = STATE(4424), - [sym_existential_type] = STATE(4437), - [sym_flow_maybe_type] = STATE(4437), - [sym_parenthesized_type] = STATE(4437), - [sym_predefined_type] = STATE(4197), - [sym_object_type] = STATE(4437), - [sym_type_parameters] = STATE(6962), - [sym_array_type] = STATE(4437), - [sym_tuple_type] = STATE(4437), - [sym_readonly_type] = STATE(4427), - [sym_union_type] = STATE(4437), - [sym_intersection_type] = STATE(4437), - [sym_function_type] = STATE(4427), - [sym_identifier] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3656), + [1604] = { + [sym_import] = STATE(6247), + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1604), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type_query_member_expression_in_type_annotation] = STATE(4039), + [sym__type_query_call_expression_in_type_annotation] = STATE(4322), + [sym_asserts] = STATE(4711), + [sym__type] = STATE(4035), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_predicate] = STATE(4705), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3938), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3676), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3680), - [sym_this] = ACTIONS(3682), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3686), - [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_abstract] = ACTIONS(3688), - [anon_sym_asserts] = ACTIONS(3690), - [anon_sym_infer] = ACTIONS(3692), - [anon_sym_keyof] = ACTIONS(3694), - [anon_sym_unique] = ACTIONS(3696), - [anon_sym_unknown] = ACTIONS(3676), - [anon_sym_never] = ACTIONS(3676), - [anon_sym_LBRACE_PIPE] = ACTIONS(3654), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(3698), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_asserts] = ACTIONS(3700), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), [sym_html_comment] = ACTIONS(5), }, - [1752] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1752), - [sym_formal_parameters] = STATE(7329), - [sym_rest_pattern] = STATE(6774), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4875), - [sym_tuple_parameter] = STATE(6776), - [sym_optional_tuple_parameter] = STATE(6776), - [sym_optional_type] = STATE(6776), - [sym_rest_type] = STATE(6776), - [sym__tuple_type_member] = STATE(6520), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(3586), + [1605] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1605), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_import] = ACTIONS(128), [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_GT] = ACTIONS(3702), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3592), [anon_sym_AMP] = ACTIONS(163), [anon_sym_PIPE] = ACTIONS(165), [anon_sym_PLUS] = ACTIONS(1900), @@ -207045,39 +194677,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1753] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1753), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1606] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1606), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -207086,7 +194718,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3698), + [anon_sym_GT] = ACTIONS(3704), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -207121,39 +194753,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1754] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1754), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1607] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1607), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -207162,7 +194794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3700), + [anon_sym_GT] = ACTIONS(3706), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -207197,39 +194829,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1755] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1755), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1608] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1608), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -207238,7 +194870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3702), + [anon_sym_GT] = ACTIONS(3708), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -207273,39 +194905,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1756] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1756), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1609] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1609), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -207314,7 +194946,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3704), + [anon_sym_GT] = ACTIONS(3710), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -207349,39 +194981,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1757] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1757), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1610] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1610), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -207390,7 +195022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3706), + [anon_sym_GT] = ACTIONS(3712), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -207425,39 +195057,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1758] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1758), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1611] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1611), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -207466,7 +195098,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3708), + [anon_sym_GT] = ACTIONS(3714), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -207501,39 +195133,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1759] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1759), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1612] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1612), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -207542,7 +195174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3710), + [anon_sym_GT] = ACTIONS(3716), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -207577,39 +195209,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1760] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1760), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1613] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1613), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -207618,7 +195250,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3712), + [anon_sym_GT] = ACTIONS(3718), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -207653,39 +195285,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1761] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1761), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1614] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1614), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -207694,7 +195326,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3714), + [anon_sym_GT] = ACTIONS(3720), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -207729,39 +195361,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1762] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1762), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1615] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1615), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -207770,7 +195402,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3716), + [anon_sym_GT] = ACTIONS(3722), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -207805,39 +195437,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1763] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1763), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1616] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1616), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -207846,7 +195478,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3718), + [anon_sym_GT] = ACTIONS(3724), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -207881,39 +195513,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1764] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1764), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1617] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1617), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -207922,7 +195554,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3720), + [anon_sym_GT] = ACTIONS(3726), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -207957,39 +195589,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1765] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1765), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1618] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1618), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -207998,7 +195630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3722), + [anon_sym_GT] = ACTIONS(3728), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -208033,39 +195665,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1766] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1766), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1619] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1619), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -208074,7 +195706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3724), + [anon_sym_GT] = ACTIONS(3730), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -208109,39 +195741,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1767] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1767), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1620] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1620), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -208150,7 +195782,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3726), + [anon_sym_GT] = ACTIONS(3732), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -208185,39 +195817,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1768] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1768), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1621] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1621), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -208226,7 +195858,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3728), + [anon_sym_GT] = ACTIONS(3734), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -208261,39 +195893,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1769] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1769), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1622] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1622), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -208302,7 +195934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3730), + [anon_sym_GT] = ACTIONS(3736), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -208337,39 +195969,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1770] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1770), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1623] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1623), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -208378,7 +196010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3732), + [anon_sym_GT] = ACTIONS(3738), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -208413,39 +196045,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1771] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1771), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1624] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1624), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -208454,7 +196086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3734), + [anon_sym_GT] = ACTIONS(3740), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -208489,39 +196121,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1772] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1772), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1625] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1625), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -208530,7 +196162,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3736), + [anon_sym_GT] = ACTIONS(3742), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -208565,39 +196197,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1773] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1773), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1626] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1626), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -208606,7 +196238,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3738), + [anon_sym_GT] = ACTIONS(3744), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -208641,39 +196273,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1774] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1774), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1627] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1627), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -208682,7 +196314,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3740), + [anon_sym_GT] = ACTIONS(3746), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -208717,39 +196349,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1775] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1775), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1628] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1628), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -208758,7 +196390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3742), + [anon_sym_GT] = ACTIONS(3748), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -208793,39 +196425,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1776] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1776), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1629] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1629), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -208834,7 +196466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3744), + [anon_sym_GT] = ACTIONS(3750), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -208869,39 +196501,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1777] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1777), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1630] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1630), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -208910,7 +196542,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3746), + [anon_sym_GT] = ACTIONS(3752), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -208945,39 +196577,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1778] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1778), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1631] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1631), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -208986,7 +196618,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3748), + [anon_sym_GT] = ACTIONS(3754), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -209021,39 +196653,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1779] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1779), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1632] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1632), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -209062,7 +196694,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3750), + [anon_sym_GT] = ACTIONS(3756), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -209097,39 +196729,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1780] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1780), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1633] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1633), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -209138,7 +196770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3752), + [anon_sym_GT] = ACTIONS(3758), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -209173,39 +196805,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1781] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1781), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1634] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1634), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -209214,7 +196846,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3754), + [anon_sym_GT] = ACTIONS(3760), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -209249,39 +196881,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1782] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1782), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1635] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1635), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -209290,7 +196922,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3756), + [anon_sym_GT] = ACTIONS(3762), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -209325,39 +196957,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1783] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1783), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1636] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1636), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -209366,7 +196998,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3758), + [anon_sym_GT] = ACTIONS(3764), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -209401,39 +197033,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1784] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1784), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1637] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1637), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -209442,7 +197074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3760), + [anon_sym_GT] = ACTIONS(3766), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -209477,39 +197109,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1785] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1785), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1638] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1638), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -209518,7 +197150,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3762), + [anon_sym_GT] = ACTIONS(3768), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -209553,39 +197185,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1786] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1786), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1639] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1639), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -209594,7 +197226,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3764), + [anon_sym_GT] = ACTIONS(3770), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -209629,39 +197261,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1787] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1787), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1640] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1640), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -209670,7 +197302,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3766), + [anon_sym_GT] = ACTIONS(3772), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -209705,39 +197337,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1788] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1788), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1641] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1641), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -209746,7 +197378,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3768), + [anon_sym_GT] = ACTIONS(3774), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -209781,39 +197413,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1789] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1789), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1642] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1642), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -209822,7 +197454,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3770), + [anon_sym_GT] = ACTIONS(3776), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -209857,39 +197489,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1790] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1790), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1643] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1643), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -209898,7 +197530,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3772), + [anon_sym_GT] = ACTIONS(3778), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -209933,39 +197565,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1791] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1791), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1644] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1644), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -209974,7 +197606,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3774), + [anon_sym_GT] = ACTIONS(3780), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -210009,39 +197641,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1792] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1792), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1645] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1645), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -210050,7 +197682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3776), + [anon_sym_GT] = ACTIONS(3782), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -210085,39 +197717,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1793] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1793), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1646] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1646), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -210126,7 +197758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3778), + [anon_sym_GT] = ACTIONS(3784), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -210161,39 +197793,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1794] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1794), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1647] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1647), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(5395), + [sym__type_query_call_expression_in_type_annotation] = STATE(6096), + [sym__type] = STATE(5389), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -210202,7 +197834,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_GT] = ACTIONS(3780), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -210237,114 +197868,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1795] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1795), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(4960), - [sym__type_query_call_expression_in_type_annotation] = STATE(5646), - [sym__type] = STATE(4958), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), + [1648] = { + [sym_import] = STATE(6247), + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1648), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type_query_member_expression_in_type_annotation] = STATE(4039), + [sym__type_query_call_expression_in_type_annotation] = STATE(4322), + [sym__type] = STATE(4035), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), [sym_html_comment] = ACTIONS(5), }, - [1796] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1796), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(4927), - [sym__type_query_call_expression_in_type_annotation] = STATE(5764), - [sym__type] = STATE(4928), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1649] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1649), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(4670), + [sym__type_query_call_expression_in_type_annotation] = STATE(5486), + [sym__type] = STATE(4671), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -210387,39 +198018,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1797] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1797), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(4256), - [sym__type_query_call_expression_in_type_annotation] = STATE(4694), - [sym__type] = STATE(4251), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1650] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1650), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(4830), + [sym__type_query_call_expression_in_type_annotation] = STATE(5610), + [sym__type] = STATE(4829), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -210462,39 +198093,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1798] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1798), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(4903), - [sym__type_query_call_expression_in_type_annotation] = STATE(5567), - [sym__type] = STATE(4902), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1651] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1651), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(4754), + [sym__type_query_call_expression_in_type_annotation] = STATE(5487), + [sym__type] = STATE(4756), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -210537,39 +198168,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1799] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1799), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(4859), - [sym__type_query_call_expression_in_type_annotation] = STATE(5590), - [sym__type] = STATE(4860), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1652] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1652), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(4621), + [sym__type_query_call_expression_in_type_annotation] = STATE(5624), + [sym__type] = STATE(4622), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -210612,39 +198243,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1800] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1800), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(5529), - [sym__type_query_call_expression_in_type_annotation] = STATE(5957), - [sym__type] = STATE(5461), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1653] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1653), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(4150), + [sym__type_query_call_expression_in_type_annotation] = STATE(4507), + [sym__type] = STATE(4140), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -210687,39 +198318,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1801] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1801), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(4827), - [sym__type_query_call_expression_in_type_annotation] = STATE(5711), - [sym__type] = STATE(4828), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1654] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1654), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(4752), + [sym__type_query_call_expression_in_type_annotation] = STATE(5480), + [sym__type] = STATE(4750), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -210762,39 +198393,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1802] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1802), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(4821), - [sym__type_query_call_expression_in_type_annotation] = STATE(5648), - [sym__type] = STATE(4820), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1655] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1655), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(4707), + [sym__type_query_call_expression_in_type_annotation] = STATE(5438), + [sym__type] = STATE(4708), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -210837,39 +198468,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1803] = { - [sym_import] = STATE(5933), - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1803), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type_query_member_expression_in_type_annotation] = STATE(4975), - [sym__type_query_call_expression_in_type_annotation] = STATE(5724), - [sym__type] = STATE(4974), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1656] = { + [sym_import] = STATE(6061), + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1656), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type_query_member_expression_in_type_annotation] = STATE(4738), + [sym__type_query_call_expression_in_type_annotation] = STATE(5468), + [sym__type] = STATE(4739), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -210912,336 +198543,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1804] = { - [sym_import] = STATE(6247), - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1804), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type_query_member_expression_in_type_annotation] = STATE(4193), - [sym__type_query_call_expression_in_type_annotation] = STATE(4477), - [sym__type] = STATE(4194), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_import] = ACTIONS(128), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1805] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1805), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym_asserts] = STATE(4122), - [sym__type] = STATE(4123), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_predicate] = STATE(4122), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4090), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(3638), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(3640), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_asserts] = ACTIONS(3642), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1806] = { - [sym_nested_identifier] = STATE(7311), - [sym_string] = STATE(2943), - [sym_comment] = STATE(1806), - [sym_formal_parameters] = STATE(7434), - [sym_nested_type_identifier] = STATE(2799), - [sym_asserts] = STATE(2903), - [sym__type] = STATE(2902), - [sym_constructor_type] = STATE(2950), - [sym__primary_type] = STATE(2951), - [sym_template_literal_type] = STATE(2939), - [sym_infer_type] = STATE(2950), - [sym_conditional_type] = STATE(2939), - [sym_generic_type] = STATE(2939), - [sym_type_predicate] = STATE(2903), - [sym_type_query] = STATE(2939), - [sym_index_type_query] = STATE(2939), - [sym_lookup_type] = STATE(2939), - [sym_literal_type] = STATE(2939), - [sym__number] = STATE(2952), - [sym_existential_type] = STATE(2939), - [sym_flow_maybe_type] = STATE(2939), - [sym_parenthesized_type] = STATE(2939), - [sym_predefined_type] = STATE(2771), - [sym_object_type] = STATE(2939), - [sym_type_parameters] = STATE(6909), - [sym_array_type] = STATE(2939), - [sym_tuple_type] = STATE(2939), - [sym_readonly_type] = STATE(2950), - [sym_union_type] = STATE(2939), - [sym_intersection_type] = STATE(2939), - [sym_function_type] = STATE(2950), - [sym_identifier] = ACTIONS(3782), - [anon_sym_STAR] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(3786), - [anon_sym_typeof] = ACTIONS(3788), - [anon_sym_const] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(3794), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3800), - [anon_sym_PLUS] = ACTIONS(3802), - [anon_sym_DASH] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3804), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3806), - [sym_number] = ACTIONS(3808), - [sym_this] = ACTIONS(3810), - [sym_true] = ACTIONS(3808), - [sym_false] = ACTIONS(3808), - [sym_null] = ACTIONS(3808), - [sym_undefined] = ACTIONS(3808), - [anon_sym_readonly] = ACTIONS(3812), - [anon_sym_QMARK] = ACTIONS(3814), - [anon_sym_any] = ACTIONS(3804), - [anon_sym_number] = ACTIONS(3804), - [anon_sym_boolean] = ACTIONS(3804), - [anon_sym_string] = ACTIONS(3804), - [anon_sym_symbol] = ACTIONS(3804), - [anon_sym_object] = ACTIONS(3804), - [anon_sym_abstract] = ACTIONS(3816), - [anon_sym_asserts] = ACTIONS(3818), - [anon_sym_infer] = ACTIONS(3820), - [anon_sym_keyof] = ACTIONS(3822), - [anon_sym_unique] = ACTIONS(3824), - [anon_sym_unknown] = ACTIONS(3804), - [anon_sym_never] = ACTIONS(3804), - [anon_sym_LBRACE_PIPE] = ACTIONS(3786), - [sym_html_comment] = ACTIONS(5), - }, - [1807] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1807), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym_asserts] = STATE(4169), - [sym__type] = STATE(4168), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_predicate] = STATE(4169), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4090), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(3638), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), + [1657] = { + [sym_nested_identifier] = STATE(7161), + [sym_string] = STATE(4286), + [sym_comment] = STATE(1657), + [sym_formal_parameters] = STATE(7313), + [sym_nested_type_identifier] = STATE(3987), + [sym_asserts] = STATE(4208), + [sym__type] = STATE(4209), + [sym_constructor_type] = STATE(4279), + [sym__primary_type] = STATE(4277), + [sym_template_literal_type] = STATE(4298), + [sym_infer_type] = STATE(4279), + [sym_conditional_type] = STATE(4298), + [sym_generic_type] = STATE(4298), + [sym_type_predicate] = STATE(4208), + [sym_type_query] = STATE(4298), + [sym_index_type_query] = STATE(4298), + [sym_lookup_type] = STATE(4298), + [sym_literal_type] = STATE(4298), + [sym__number] = STATE(4253), + [sym_existential_type] = STATE(4298), + [sym_flow_maybe_type] = STATE(4298), + [sym_parenthesized_type] = STATE(4298), + [sym_predefined_type] = STATE(4033), + [sym_object_type] = STATE(4298), + [sym_type_parameters] = STATE(6810), + [sym_array_type] = STATE(4298), + [sym_tuple_type] = STATE(4298), + [sym_readonly_type] = STATE(4279), + [sym_union_type] = STATE(4298), + [sym_intersection_type] = STATE(4298), + [sym_function_type] = STATE(4279), + [sym_identifier] = ACTIONS(3648), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(3640), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_asserts] = ACTIONS(3642), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(3674), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3678), + [sym_this] = ACTIONS(3680), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [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_abstract] = ACTIONS(3686), + [anon_sym_asserts] = ACTIONS(3688), + [anon_sym_infer] = ACTIONS(3690), + [anon_sym_keyof] = ACTIONS(3692), + [anon_sym_unique] = ACTIONS(3694), + [anon_sym_unknown] = ACTIONS(3674), + [anon_sym_never] = ACTIONS(3674), + [anon_sym_LBRACE_PIPE] = ACTIONS(3652), [sym_html_comment] = ACTIONS(5), }, - [1808] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1808), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym_asserts] = STATE(3887), - [sym__type] = STATE(3843), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_predicate] = STATE(3887), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3824), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(3644), + [1658] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1658), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym_asserts] = STATE(3684), + [sym__type] = STATE(3685), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_predicate] = STATE(3684), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3680), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(3642), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), [anon_sym_typeof] = ACTIONS(1888), @@ -211260,7 +198668,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(3646), + [sym_this] = ACTIONS(3644), [sym_true] = ACTIONS(1906), [sym_false] = ACTIONS(1906), [sym_null] = ACTIONS(1906), @@ -211274,7 +198682,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), [anon_sym_abstract] = ACTIONS(199), - [anon_sym_asserts] = ACTIONS(3648), + [anon_sym_asserts] = ACTIONS(3646), [anon_sym_infer] = ACTIONS(201), [anon_sym_keyof] = ACTIONS(203), [anon_sym_unique] = ACTIONS(205), @@ -211283,113 +198691,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1809] = { - [sym_nested_identifier] = STATE(7344), - [sym_string] = STATE(4431), - [sym_comment] = STATE(1809), - [sym_formal_parameters] = STATE(7555), - [sym_nested_type_identifier] = STATE(4170), - [sym_asserts] = STATE(4279), - [sym__type] = STATE(4278), - [sym_constructor_type] = STATE(4427), - [sym__primary_type] = STATE(4425), - [sym_template_literal_type] = STATE(4437), - [sym_infer_type] = STATE(4427), - [sym_conditional_type] = STATE(4437), - [sym_generic_type] = STATE(4437), - [sym_type_predicate] = STATE(4279), - [sym_type_query] = STATE(4437), - [sym_index_type_query] = STATE(4437), - [sym_lookup_type] = STATE(4437), - [sym_literal_type] = STATE(4437), - [sym__number] = STATE(4424), - [sym_existential_type] = STATE(4437), - [sym_flow_maybe_type] = STATE(4437), - [sym_parenthesized_type] = STATE(4437), - [sym_predefined_type] = STATE(4197), - [sym_object_type] = STATE(4437), - [sym_type_parameters] = STATE(6962), - [sym_array_type] = STATE(4437), - [sym_tuple_type] = STATE(4437), - [sym_readonly_type] = STATE(4427), - [sym_union_type] = STATE(4437), - [sym_intersection_type] = STATE(4437), - [sym_function_type] = STATE(4427), - [sym_identifier] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3676), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3680), - [sym_this] = ACTIONS(3682), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3686), - [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_abstract] = ACTIONS(3688), - [anon_sym_asserts] = ACTIONS(3690), - [anon_sym_infer] = ACTIONS(3692), - [anon_sym_keyof] = ACTIONS(3694), - [anon_sym_unique] = ACTIONS(3696), - [anon_sym_unknown] = ACTIONS(3676), - [anon_sym_never] = ACTIONS(3676), - [anon_sym_LBRACE_PIPE] = ACTIONS(3654), - [sym_html_comment] = ACTIONS(5), - }, - [1810] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1810), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym_asserts] = STATE(3917), - [sym__type] = STATE(3884), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_predicate] = STATE(3917), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3824), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(3644), + [1659] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1659), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym_asserts] = STATE(3730), + [sym__type] = STATE(3731), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_predicate] = STATE(3730), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3680), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(3642), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), [anon_sym_typeof] = ACTIONS(1888), @@ -211408,7 +198742,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1904), [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(3646), + [sym_this] = ACTIONS(3644), [sym_true] = ACTIONS(1906), [sym_false] = ACTIONS(1906), [sym_null] = ACTIONS(1906), @@ -211422,7 +198756,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(207), [anon_sym_object] = ACTIONS(207), [anon_sym_abstract] = ACTIONS(199), - [anon_sym_asserts] = ACTIONS(3648), + [anon_sym_asserts] = ACTIONS(3646), [anon_sym_infer] = ACTIONS(201), [anon_sym_keyof] = ACTIONS(203), [anon_sym_unique] = ACTIONS(205), @@ -211431,1202 +198765,1496 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1811] = { - [sym_nested_identifier] = STATE(7229), - [sym_string] = STATE(2505), - [sym_comment] = STATE(1811), - [sym_formal_parameters] = STATE(7316), - [sym_nested_type_identifier] = STATE(2360), - [sym_asserts] = STATE(2433), - [sym__type] = STATE(2432), - [sym_constructor_type] = STATE(2501), - [sym__primary_type] = STATE(2499), - [sym_template_literal_type] = STATE(2507), - [sym_infer_type] = STATE(2501), - [sym_conditional_type] = STATE(2507), - [sym_generic_type] = STATE(2507), - [sym_type_predicate] = STATE(2433), - [sym_type_query] = STATE(2507), - [sym_index_type_query] = STATE(2507), - [sym_lookup_type] = STATE(2507), - [sym_literal_type] = STATE(2507), - [sym__number] = STATE(2498), - [sym_existential_type] = STATE(2507), - [sym_flow_maybe_type] = STATE(2507), - [sym_parenthesized_type] = STATE(2507), - [sym_predefined_type] = STATE(2370), - [sym_object_type] = STATE(2507), - [sym_type_parameters] = STATE(7078), - [sym_array_type] = STATE(2507), - [sym_tuple_type] = STATE(2507), - [sym_readonly_type] = STATE(2501), - [sym_union_type] = STATE(2507), - [sym_intersection_type] = STATE(2507), - [sym_function_type] = STATE(2501), - [sym_identifier] = ACTIONS(3826), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3830), - [anon_sym_typeof] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3838), + [1660] = { + [sym_nested_identifier] = STATE(7046), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1660), + [sym_formal_parameters] = STATE(7001), + [sym_nested_type_identifier] = STATE(2222), + [sym_asserts] = STATE(2277), + [sym__type] = STATE(2273), + [sym_constructor_type] = STATE(2373), + [sym__primary_type] = STATE(2228), + [sym_template_literal_type] = STATE(2259), + [sym_infer_type] = STATE(2373), + [sym_conditional_type] = STATE(2259), + [sym_generic_type] = STATE(2259), + [sym_type_predicate] = STATE(2277), + [sym_type_query] = STATE(2259), + [sym_index_type_query] = STATE(2259), + [sym_lookup_type] = STATE(2259), + [sym_literal_type] = STATE(2259), + [sym__number] = STATE(2380), + [sym_existential_type] = STATE(2259), + [sym_flow_maybe_type] = STATE(2259), + [sym_parenthesized_type] = STATE(2259), + [sym_predefined_type] = STATE(2218), + [sym_object_type] = STATE(2259), + [sym_type_parameters] = STATE(6884), + [sym_array_type] = STATE(2259), + [sym_tuple_type] = STATE(2259), + [sym_readonly_type] = STATE(2373), + [sym_union_type] = STATE(2259), + [sym_intersection_type] = STATE(2259), + [sym_function_type] = STATE(2373), + [sym_identifier] = ACTIONS(3786), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3840), - [anon_sym_AMP] = ACTIONS(3842), - [anon_sym_PIPE] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3846), - [anon_sym_DASH] = ACTIONS(3846), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3848), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3850), - [sym_number] = ACTIONS(3852), - [sym_this] = ACTIONS(3854), - [sym_true] = ACTIONS(3852), - [sym_false] = ACTIONS(3852), - [sym_null] = ACTIONS(3852), - [sym_undefined] = ACTIONS(3852), - [anon_sym_readonly] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_number] = ACTIONS(3848), - [anon_sym_boolean] = ACTIONS(3848), - [anon_sym_string] = ACTIONS(3848), - [anon_sym_symbol] = ACTIONS(3848), - [anon_sym_object] = ACTIONS(3848), - [anon_sym_abstract] = ACTIONS(3860), - [anon_sym_asserts] = ACTIONS(3862), - [anon_sym_infer] = ACTIONS(3864), - [anon_sym_keyof] = ACTIONS(3866), - [anon_sym_unique] = ACTIONS(3868), - [anon_sym_unknown] = ACTIONS(3848), - [anon_sym_never] = ACTIONS(3848), - [anon_sym_LBRACE_PIPE] = ACTIONS(3830), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(3814), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_asserts] = ACTIONS(3822), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), [sym_html_comment] = ACTIONS(5), }, - [1812] = { - [sym_nested_identifier] = STATE(7344), - [sym_string] = STATE(4431), - [sym_comment] = STATE(1812), - [sym_formal_parameters] = STATE(7555), - [sym_nested_type_identifier] = STATE(4170), - [sym_asserts] = STATE(4240), - [sym__type] = STATE(4239), - [sym_constructor_type] = STATE(4427), - [sym__primary_type] = STATE(4425), - [sym_template_literal_type] = STATE(4437), - [sym_infer_type] = STATE(4427), - [sym_conditional_type] = STATE(4437), - [sym_generic_type] = STATE(4437), - [sym_type_predicate] = STATE(4240), - [sym_type_query] = STATE(4437), - [sym_index_type_query] = STATE(4437), - [sym_lookup_type] = STATE(4437), - [sym_literal_type] = STATE(4437), - [sym__number] = STATE(4424), - [sym_existential_type] = STATE(4437), - [sym_flow_maybe_type] = STATE(4437), - [sym_parenthesized_type] = STATE(4437), - [sym_predefined_type] = STATE(4197), - [sym_object_type] = STATE(4437), - [sym_type_parameters] = STATE(6962), - [sym_array_type] = STATE(4437), - [sym_tuple_type] = STATE(4437), - [sym_readonly_type] = STATE(4427), - [sym_union_type] = STATE(4437), - [sym_intersection_type] = STATE(4437), - [sym_function_type] = STATE(4427), - [sym_identifier] = ACTIONS(3650), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), + [1661] = { + [sym_nested_identifier] = STATE(7161), + [sym_string] = STATE(4286), + [sym_comment] = STATE(1661), + [sym_formal_parameters] = STATE(7313), + [sym_nested_type_identifier] = STATE(3987), + [sym_asserts] = STATE(4105), + [sym__type] = STATE(4103), + [sym_constructor_type] = STATE(4279), + [sym__primary_type] = STATE(4277), + [sym_template_literal_type] = STATE(4298), + [sym_infer_type] = STATE(4279), + [sym_conditional_type] = STATE(4298), + [sym_generic_type] = STATE(4298), + [sym_type_predicate] = STATE(4105), + [sym_type_query] = STATE(4298), + [sym_index_type_query] = STATE(4298), + [sym_lookup_type] = STATE(4298), + [sym_literal_type] = STATE(4298), + [sym__number] = STATE(4253), + [sym_existential_type] = STATE(4298), + [sym_flow_maybe_type] = STATE(4298), + [sym_parenthesized_type] = STATE(4298), + [sym_predefined_type] = STATE(4033), + [sym_object_type] = STATE(4298), + [sym_type_parameters] = STATE(6810), + [sym_array_type] = STATE(4298), + [sym_tuple_type] = STATE(4298), + [sym_readonly_type] = STATE(4279), + [sym_union_type] = STATE(4298), + [sym_intersection_type] = STATE(4298), + [sym_function_type] = STATE(4279), + [sym_identifier] = ACTIONS(3648), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3676), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3680), - [sym_this] = ACTIONS(3682), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3686), - [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_abstract] = ACTIONS(3688), - [anon_sym_asserts] = ACTIONS(3690), - [anon_sym_infer] = ACTIONS(3692), - [anon_sym_keyof] = ACTIONS(3694), - [anon_sym_unique] = ACTIONS(3696), - [anon_sym_unknown] = ACTIONS(3676), - [anon_sym_never] = ACTIONS(3676), - [anon_sym_LBRACE_PIPE] = ACTIONS(3654), + [anon_sym_void] = ACTIONS(3674), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3678), + [sym_this] = ACTIONS(3680), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [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_abstract] = ACTIONS(3686), + [anon_sym_asserts] = ACTIONS(3688), + [anon_sym_infer] = ACTIONS(3690), + [anon_sym_keyof] = ACTIONS(3692), + [anon_sym_unique] = ACTIONS(3694), + [anon_sym_unknown] = ACTIONS(3674), + [anon_sym_never] = ACTIONS(3674), + [anon_sym_LBRACE_PIPE] = ACTIONS(3652), [sym_html_comment] = ACTIONS(5), }, - [1813] = { - [sym_nested_identifier] = STATE(7311), - [sym_string] = STATE(2943), - [sym_comment] = STATE(1813), - [sym_formal_parameters] = STATE(7434), - [sym_nested_type_identifier] = STATE(2799), - [sym_asserts] = STATE(2844), - [sym__type] = STATE(2843), - [sym_constructor_type] = STATE(2950), - [sym__primary_type] = STATE(2951), - [sym_template_literal_type] = STATE(2939), - [sym_infer_type] = STATE(2950), - [sym_conditional_type] = STATE(2939), - [sym_generic_type] = STATE(2939), - [sym_type_predicate] = STATE(2844), - [sym_type_query] = STATE(2939), - [sym_index_type_query] = STATE(2939), - [sym_lookup_type] = STATE(2939), - [sym_literal_type] = STATE(2939), - [sym__number] = STATE(2952), - [sym_existential_type] = STATE(2939), - [sym_flow_maybe_type] = STATE(2939), - [sym_parenthesized_type] = STATE(2939), - [sym_predefined_type] = STATE(2771), - [sym_object_type] = STATE(2939), - [sym_type_parameters] = STATE(6909), - [sym_array_type] = STATE(2939), - [sym_tuple_type] = STATE(2939), - [sym_readonly_type] = STATE(2950), - [sym_union_type] = STATE(2939), - [sym_intersection_type] = STATE(2939), - [sym_function_type] = STATE(2950), - [sym_identifier] = ACTIONS(3782), - [anon_sym_STAR] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(3786), - [anon_sym_typeof] = ACTIONS(3788), - [anon_sym_const] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(3794), + [1662] = { + [sym_nested_identifier] = STATE(7046), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1662), + [sym_formal_parameters] = STATE(7001), + [sym_nested_type_identifier] = STATE(2222), + [sym_asserts] = STATE(2351), + [sym__type] = STATE(2359), + [sym_constructor_type] = STATE(2373), + [sym__primary_type] = STATE(2228), + [sym_template_literal_type] = STATE(2259), + [sym_infer_type] = STATE(2373), + [sym_conditional_type] = STATE(2259), + [sym_generic_type] = STATE(2259), + [sym_type_predicate] = STATE(2351), + [sym_type_query] = STATE(2259), + [sym_index_type_query] = STATE(2259), + [sym_lookup_type] = STATE(2259), + [sym_literal_type] = STATE(2259), + [sym__number] = STATE(2380), + [sym_existential_type] = STATE(2259), + [sym_flow_maybe_type] = STATE(2259), + [sym_parenthesized_type] = STATE(2259), + [sym_predefined_type] = STATE(2218), + [sym_object_type] = STATE(2259), + [sym_type_parameters] = STATE(6884), + [sym_array_type] = STATE(2259), + [sym_tuple_type] = STATE(2259), + [sym_readonly_type] = STATE(2373), + [sym_union_type] = STATE(2259), + [sym_intersection_type] = STATE(2259), + [sym_function_type] = STATE(2373), + [sym_identifier] = ACTIONS(3786), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(3814), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_asserts] = ACTIONS(3822), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1663] = { + [sym_nested_identifier] = STATE(7170), + [sym_string] = STATE(2890), + [sym_comment] = STATE(1663), + [sym_formal_parameters] = STATE(7340), + [sym_nested_type_identifier] = STATE(2590), + [sym_asserts] = STATE(2722), + [sym__type] = STATE(2721), + [sym_constructor_type] = STATE(2897), + [sym__primary_type] = STATE(2898), + [sym_template_literal_type] = STATE(2886), + [sym_infer_type] = STATE(2897), + [sym_conditional_type] = STATE(2886), + [sym_generic_type] = STATE(2886), + [sym_type_predicate] = STATE(2722), + [sym_type_query] = STATE(2886), + [sym_index_type_query] = STATE(2886), + [sym_lookup_type] = STATE(2886), + [sym_literal_type] = STATE(2886), + [sym__number] = STATE(2899), + [sym_existential_type] = STATE(2886), + [sym_flow_maybe_type] = STATE(2886), + [sym_parenthesized_type] = STATE(2886), + [sym_predefined_type] = STATE(2660), + [sym_object_type] = STATE(2886), + [sym_type_parameters] = STATE(6726), + [sym_array_type] = STATE(2886), + [sym_tuple_type] = STATE(2886), + [sym_readonly_type] = STATE(2897), + [sym_union_type] = STATE(2886), + [sym_intersection_type] = STATE(2886), + [sym_function_type] = STATE(2897), + [sym_identifier] = ACTIONS(3830), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3800), - [anon_sym_PLUS] = ACTIONS(3802), - [anon_sym_DASH] = ACTIONS(3802), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3804), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3806), - [sym_number] = ACTIONS(3808), - [sym_this] = ACTIONS(3810), - [sym_true] = ACTIONS(3808), - [sym_false] = ACTIONS(3808), - [sym_null] = ACTIONS(3808), - [sym_undefined] = ACTIONS(3808), - [anon_sym_readonly] = ACTIONS(3812), - [anon_sym_QMARK] = ACTIONS(3814), - [anon_sym_any] = ACTIONS(3804), - [anon_sym_number] = ACTIONS(3804), - [anon_sym_boolean] = ACTIONS(3804), - [anon_sym_string] = ACTIONS(3804), - [anon_sym_symbol] = ACTIONS(3804), - [anon_sym_object] = ACTIONS(3804), - [anon_sym_abstract] = ACTIONS(3816), - [anon_sym_asserts] = ACTIONS(3818), - [anon_sym_infer] = ACTIONS(3820), - [anon_sym_keyof] = ACTIONS(3822), - [anon_sym_unique] = ACTIONS(3824), - [anon_sym_unknown] = ACTIONS(3804), - [anon_sym_never] = ACTIONS(3804), - [anon_sym_LBRACE_PIPE] = ACTIONS(3786), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(3858), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_asserts] = ACTIONS(3866), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), [sym_html_comment] = ACTIONS(5), }, - [1814] = { - [sym_nested_identifier] = STATE(7229), - [sym_string] = STATE(2505), - [sym_comment] = STATE(1814), - [sym_formal_parameters] = STATE(7316), - [sym_nested_type_identifier] = STATE(2360), - [sym_asserts] = STATE(2515), - [sym__type] = STATE(2458), - [sym_constructor_type] = STATE(2501), - [sym__primary_type] = STATE(2499), - [sym_template_literal_type] = STATE(2507), - [sym_infer_type] = STATE(2501), - [sym_conditional_type] = STATE(2507), - [sym_generic_type] = STATE(2507), - [sym_type_predicate] = STATE(2515), - [sym_type_query] = STATE(2507), - [sym_index_type_query] = STATE(2507), - [sym_lookup_type] = STATE(2507), - [sym_literal_type] = STATE(2507), - [sym__number] = STATE(2498), - [sym_existential_type] = STATE(2507), - [sym_flow_maybe_type] = STATE(2507), - [sym_parenthesized_type] = STATE(2507), - [sym_predefined_type] = STATE(2370), - [sym_object_type] = STATE(2507), - [sym_type_parameters] = STATE(7078), - [sym_array_type] = STATE(2507), - [sym_tuple_type] = STATE(2507), - [sym_readonly_type] = STATE(2501), - [sym_union_type] = STATE(2507), - [sym_intersection_type] = STATE(2507), - [sym_function_type] = STATE(2501), - [sym_identifier] = ACTIONS(3826), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3830), - [anon_sym_typeof] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3838), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3840), - [anon_sym_AMP] = ACTIONS(3842), - [anon_sym_PIPE] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3846), - [anon_sym_DASH] = ACTIONS(3846), + [1664] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1664), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym_asserts] = STATE(3976), + [sym__type] = STATE(3973), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_predicate] = STATE(3976), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3938), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3848), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3850), - [sym_number] = ACTIONS(3852), - [sym_this] = ACTIONS(3854), - [sym_true] = ACTIONS(3852), - [sym_false] = ACTIONS(3852), - [sym_null] = ACTIONS(3852), - [sym_undefined] = ACTIONS(3852), - [anon_sym_readonly] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_number] = ACTIONS(3848), - [anon_sym_boolean] = ACTIONS(3848), - [anon_sym_string] = ACTIONS(3848), - [anon_sym_symbol] = ACTIONS(3848), - [anon_sym_object] = ACTIONS(3848), - [anon_sym_abstract] = ACTIONS(3860), - [anon_sym_asserts] = ACTIONS(3862), - [anon_sym_infer] = ACTIONS(3864), - [anon_sym_keyof] = ACTIONS(3866), - [anon_sym_unique] = ACTIONS(3868), - [anon_sym_unknown] = ACTIONS(3848), - [anon_sym_never] = ACTIONS(3848), - [anon_sym_LBRACE_PIPE] = ACTIONS(3830), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(3698), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_asserts] = ACTIONS(3700), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), [sym_html_comment] = ACTIONS(5), }, - [1815] = { - [sym_export_statement] = STATE(4905), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(5931), - [sym_array_pattern] = STATE(4283), - [sym__call_signature] = STATE(5071), - [sym__destructuring_pattern] = STATE(7361), - [sym_spread_element] = STATE(6446), - [sym_string] = STATE(4151), - [sym_comment] = STATE(1815), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4200), - [sym_rest_pattern] = STATE(5931), - [sym_method_definition] = STATE(6446), - [sym_pair] = STATE(6446), - [sym_pair_pattern] = STATE(5931), - [sym__property_name] = STATE(4034), - [sym_computed_property_name] = STATE(4151), - [sym_method_signature] = STATE(4905), - [sym_accessibility_modifier] = STATE(3627), - [sym_override_modifier] = STATE(3671), - [sym_call_signature] = STATE(4905), - [sym_property_signature] = STATE(4905), - [sym_type_parameters] = STATE(6630), - [sym_construct_signature] = STATE(4905), - [sym_index_signature] = STATE(4905), - [aux_sym_export_statement_repeat1] = STATE(5733), - [aux_sym_object_repeat1] = STATE(6441), - [aux_sym_object_pattern_repeat1] = STATE(5945), - [sym_identifier] = ACTIONS(3870), - [anon_sym_export] = ACTIONS(3872), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_type] = ACTIONS(3870), - [anon_sym_namespace] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(3876), - [anon_sym_COMMA] = ACTIONS(3878), - [anon_sym_RBRACE] = ACTIONS(3880), - [anon_sym_let] = ACTIONS(3870), - [anon_sym_LPAREN] = ACTIONS(3882), - [anon_sym_SEMI] = ACTIONS(3884), - [anon_sym_LBRACK] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3888), - [anon_sym_new] = ACTIONS(3890), + [1665] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1665), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym_asserts] = STATE(4010), + [sym__type] = STATE(4005), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_predicate] = STATE(4010), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3938), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(3696), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(3698), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_asserts] = ACTIONS(3700), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1666] = { + [sym_nested_identifier] = STATE(7170), + [sym_string] = STATE(2890), + [sym_comment] = STATE(1666), + [sym_formal_parameters] = STATE(7340), + [sym_nested_type_identifier] = STATE(2590), + [sym_asserts] = STATE(2749), + [sym__type] = STATE(2750), + [sym_constructor_type] = STATE(2897), + [sym__primary_type] = STATE(2898), + [sym_template_literal_type] = STATE(2886), + [sym_infer_type] = STATE(2897), + [sym_conditional_type] = STATE(2886), + [sym_generic_type] = STATE(2886), + [sym_type_predicate] = STATE(2749), + [sym_type_query] = STATE(2886), + [sym_index_type_query] = STATE(2886), + [sym_lookup_type] = STATE(2886), + [sym_literal_type] = STATE(2886), + [sym__number] = STATE(2899), + [sym_existential_type] = STATE(2886), + [sym_flow_maybe_type] = STATE(2886), + [sym_parenthesized_type] = STATE(2886), + [sym_predefined_type] = STATE(2660), + [sym_object_type] = STATE(2886), + [sym_type_parameters] = STATE(6726), + [sym_array_type] = STATE(2886), + [sym_tuple_type] = STATE(2886), + [sym_readonly_type] = STATE(2897), + [sym_union_type] = STATE(2886), + [sym_intersection_type] = STATE(2886), + [sym_function_type] = STATE(2897), + [sym_identifier] = ACTIONS(3830), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(3858), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_asserts] = ACTIONS(3866), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_html_comment] = ACTIONS(5), + }, + [1667] = { + [sym_export_statement] = STATE(4797), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(5739), + [sym_array_pattern] = STATE(4288), + [sym__call_signature] = STATE(5095), + [sym__destructuring_pattern] = STATE(7130), + [sym_spread_element] = STATE(5740), + [sym_string] = STATE(3980), + [sym_comment] = STATE(1667), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4055), + [sym_rest_pattern] = STATE(5739), + [sym_method_definition] = STATE(5740), + [sym_pair] = STATE(5740), + [sym_pair_pattern] = STATE(5739), + [sym__property_name] = STATE(3844), + [sym_computed_property_name] = STATE(3980), + [sym_method_signature] = STATE(4797), + [sym_accessibility_modifier] = STATE(3477), + [sym_override_modifier] = STATE(3526), + [sym_call_signature] = STATE(4797), + [sym_property_signature] = STATE(4797), + [sym_type_parameters] = STATE(6769), + [sym_construct_signature] = STATE(4797), + [sym_index_signature] = STATE(4797), + [aux_sym_export_statement_repeat1] = STATE(5563), + [aux_sym_object_repeat1] = STATE(5792), + [aux_sym_object_pattern_repeat1] = STATE(5743), + [sym_identifier] = ACTIONS(3874), + [anon_sym_export] = ACTIONS(3876), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_type] = ACTIONS(3874), + [anon_sym_namespace] = ACTIONS(3874), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3882), + [anon_sym_RBRACE] = ACTIONS(3884), + [anon_sym_let] = ACTIONS(3874), + [anon_sym_LPAREN] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(3892), + [anon_sym_new] = ACTIONS(3894), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3896), [anon_sym_LT] = ACTIONS(1902), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3894), - [sym_private_property_identifier] = ACTIONS(3894), + [sym_number] = ACTIONS(3898), + [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3896), - [anon_sym_readonly] = ACTIONS(3898), - [anon_sym_get] = ACTIONS(3900), - [anon_sym_set] = ACTIONS(3900), - [anon_sym_declare] = ACTIONS(3870), - [anon_sym_public] = ACTIONS(3902), - [anon_sym_private] = ACTIONS(3902), - [anon_sym_protected] = ACTIONS(3902), - [anon_sym_override] = ACTIONS(3904), - [anon_sym_module] = ACTIONS(3870), - [anon_sym_any] = ACTIONS(3870), - [anon_sym_number] = ACTIONS(3870), - [anon_sym_boolean] = ACTIONS(3870), - [anon_sym_string] = ACTIONS(3870), - [anon_sym_symbol] = ACTIONS(3870), - [anon_sym_object] = ACTIONS(3870), - [anon_sym_abstract] = ACTIONS(3906), - [anon_sym_PIPE_RBRACE] = ACTIONS(3908), + [anon_sym_static] = ACTIONS(3900), + [anon_sym_readonly] = ACTIONS(3902), + [anon_sym_get] = ACTIONS(3904), + [anon_sym_set] = ACTIONS(3904), + [anon_sym_declare] = ACTIONS(3874), + [anon_sym_public] = ACTIONS(3906), + [anon_sym_private] = ACTIONS(3906), + [anon_sym_protected] = ACTIONS(3906), + [anon_sym_override] = ACTIONS(3908), + [anon_sym_module] = ACTIONS(3874), + [anon_sym_any] = ACTIONS(3874), + [anon_sym_number] = ACTIONS(3874), + [anon_sym_boolean] = ACTIONS(3874), + [anon_sym_string] = ACTIONS(3874), + [anon_sym_symbol] = ACTIONS(3874), + [anon_sym_object] = ACTIONS(3874), + [anon_sym_abstract] = ACTIONS(3910), + [anon_sym_PIPE_RBRACE] = ACTIONS(3912), [sym_html_comment] = ACTIONS(5), }, - [1816] = { - [sym_export_statement] = STATE(4905), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(5931), - [sym_array_pattern] = STATE(4283), - [sym__call_signature] = STATE(5071), - [sym__destructuring_pattern] = STATE(7361), - [sym_spread_element] = STATE(6446), - [sym_string] = STATE(4151), - [sym_comment] = STATE(1816), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4200), - [sym_rest_pattern] = STATE(5931), - [sym_method_definition] = STATE(6446), - [sym_pair] = STATE(6446), - [sym_pair_pattern] = STATE(5931), - [sym__property_name] = STATE(4034), - [sym_computed_property_name] = STATE(4151), - [sym_method_signature] = STATE(4905), - [sym_accessibility_modifier] = STATE(3627), - [sym_override_modifier] = STATE(3671), - [sym_call_signature] = STATE(4905), - [sym_property_signature] = STATE(4905), - [sym_type_parameters] = STATE(6630), - [sym_construct_signature] = STATE(4905), - [sym_index_signature] = STATE(4905), - [aux_sym_export_statement_repeat1] = STATE(5733), - [aux_sym_object_repeat1] = STATE(6441), - [aux_sym_object_pattern_repeat1] = STATE(5945), - [sym_identifier] = ACTIONS(3910), - [anon_sym_export] = ACTIONS(3912), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_type] = ACTIONS(3910), - [anon_sym_namespace] = ACTIONS(3910), - [anon_sym_LBRACE] = ACTIONS(3876), - [anon_sym_COMMA] = ACTIONS(3878), - [anon_sym_RBRACE] = ACTIONS(3914), - [anon_sym_let] = ACTIONS(3910), - [anon_sym_LPAREN] = ACTIONS(3882), - [anon_sym_SEMI] = ACTIONS(3884), - [anon_sym_LBRACK] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3916), - [anon_sym_new] = ACTIONS(3918), + [1668] = { + [sym_export_statement] = STATE(4797), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(5739), + [sym_array_pattern] = STATE(4288), + [sym__call_signature] = STATE(5095), + [sym__destructuring_pattern] = STATE(7130), + [sym_spread_element] = STATE(6145), + [sym_string] = STATE(3980), + [sym_comment] = STATE(1668), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4055), + [sym_rest_pattern] = STATE(5739), + [sym_method_definition] = STATE(6145), + [sym_pair] = STATE(6145), + [sym_pair_pattern] = STATE(5739), + [sym__property_name] = STATE(3844), + [sym_computed_property_name] = STATE(3980), + [sym_method_signature] = STATE(4797), + [sym_accessibility_modifier] = STATE(3477), + [sym_override_modifier] = STATE(3526), + [sym_call_signature] = STATE(4797), + [sym_property_signature] = STATE(4797), + [sym_type_parameters] = STATE(6769), + [sym_construct_signature] = STATE(4797), + [sym_index_signature] = STATE(4797), + [aux_sym_export_statement_repeat1] = STATE(5563), + [aux_sym_object_repeat1] = STATE(6146), + [aux_sym_object_pattern_repeat1] = STATE(5743), + [sym_identifier] = ACTIONS(3914), + [anon_sym_export] = ACTIONS(3916), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_type] = ACTIONS(3914), + [anon_sym_namespace] = ACTIONS(3914), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3882), + [anon_sym_RBRACE] = ACTIONS(3918), + [anon_sym_let] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3896), [anon_sym_LT] = ACTIONS(1902), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3894), - [sym_private_property_identifier] = ACTIONS(3894), + [sym_number] = ACTIONS(3898), + [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3920), - [anon_sym_readonly] = ACTIONS(3922), - [anon_sym_get] = ACTIONS(3924), - [anon_sym_set] = ACTIONS(3924), - [anon_sym_declare] = ACTIONS(3910), - [anon_sym_public] = ACTIONS(3926), - [anon_sym_private] = ACTIONS(3926), - [anon_sym_protected] = ACTIONS(3926), - [anon_sym_override] = ACTIONS(3928), - [anon_sym_module] = ACTIONS(3910), - [anon_sym_any] = ACTIONS(3910), - [anon_sym_number] = ACTIONS(3910), - [anon_sym_boolean] = ACTIONS(3910), - [anon_sym_string] = ACTIONS(3910), - [anon_sym_symbol] = ACTIONS(3910), - [anon_sym_object] = ACTIONS(3910), - [anon_sym_abstract] = ACTIONS(3906), - [anon_sym_PIPE_RBRACE] = ACTIONS(3908), + [anon_sym_static] = ACTIONS(3924), + [anon_sym_readonly] = ACTIONS(3926), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_declare] = ACTIONS(3914), + [anon_sym_public] = ACTIONS(3930), + [anon_sym_private] = ACTIONS(3930), + [anon_sym_protected] = ACTIONS(3930), + [anon_sym_override] = ACTIONS(3932), + [anon_sym_module] = ACTIONS(3914), + [anon_sym_any] = ACTIONS(3914), + [anon_sym_number] = ACTIONS(3914), + [anon_sym_boolean] = ACTIONS(3914), + [anon_sym_string] = ACTIONS(3914), + [anon_sym_symbol] = ACTIONS(3914), + [anon_sym_object] = ACTIONS(3914), + [anon_sym_abstract] = ACTIONS(3910), + [anon_sym_PIPE_RBRACE] = ACTIONS(3912), [sym_html_comment] = ACTIONS(5), }, - [1817] = { - [sym_export_statement] = STATE(4905), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(5931), - [sym_array_pattern] = STATE(4283), - [sym__call_signature] = STATE(5071), - [sym__destructuring_pattern] = STATE(7361), - [sym_spread_element] = STATE(6446), - [sym_string] = STATE(4151), - [sym_comment] = STATE(1817), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4200), - [sym_rest_pattern] = STATE(5931), - [sym_method_definition] = STATE(6446), - [sym_pair] = STATE(6446), - [sym_pair_pattern] = STATE(5931), - [sym__property_name] = STATE(4034), - [sym_computed_property_name] = STATE(4151), - [sym_method_signature] = STATE(4905), - [sym_accessibility_modifier] = STATE(3627), - [sym_override_modifier] = STATE(3671), - [sym_call_signature] = STATE(4905), - [sym_property_signature] = STATE(4905), - [sym_type_parameters] = STATE(6630), - [sym_construct_signature] = STATE(4905), - [sym_index_signature] = STATE(4905), - [aux_sym_export_statement_repeat1] = STATE(5733), - [aux_sym_object_repeat1] = STATE(6441), - [aux_sym_object_pattern_repeat1] = STATE(5945), - [sym_identifier] = ACTIONS(3910), - [anon_sym_export] = ACTIONS(3912), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_type] = ACTIONS(3910), - [anon_sym_namespace] = ACTIONS(3910), - [anon_sym_LBRACE] = ACTIONS(3876), - [anon_sym_COMMA] = ACTIONS(3878), - [anon_sym_RBRACE] = ACTIONS(3930), - [anon_sym_let] = ACTIONS(3910), - [anon_sym_LPAREN] = ACTIONS(3882), - [anon_sym_SEMI] = ACTIONS(3884), - [anon_sym_LBRACK] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3916), - [anon_sym_new] = ACTIONS(3918), + [1669] = { + [sym_export_statement] = STATE(4797), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(5739), + [sym_array_pattern] = STATE(4288), + [sym__call_signature] = STATE(5095), + [sym__destructuring_pattern] = STATE(7130), + [sym_spread_element] = STATE(6145), + [sym_string] = STATE(3980), + [sym_comment] = STATE(1669), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4055), + [sym_rest_pattern] = STATE(5739), + [sym_method_definition] = STATE(6145), + [sym_pair] = STATE(6145), + [sym_pair_pattern] = STATE(5739), + [sym__property_name] = STATE(3844), + [sym_computed_property_name] = STATE(3980), + [sym_method_signature] = STATE(4797), + [sym_accessibility_modifier] = STATE(3477), + [sym_override_modifier] = STATE(3526), + [sym_call_signature] = STATE(4797), + [sym_property_signature] = STATE(4797), + [sym_type_parameters] = STATE(6769), + [sym_construct_signature] = STATE(4797), + [sym_index_signature] = STATE(4797), + [aux_sym_export_statement_repeat1] = STATE(5563), + [aux_sym_object_repeat1] = STATE(6146), + [aux_sym_object_pattern_repeat1] = STATE(5743), + [sym_identifier] = ACTIONS(3934), + [anon_sym_export] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_type] = ACTIONS(3934), + [anon_sym_namespace] = ACTIONS(3934), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3882), + [anon_sym_RBRACE] = ACTIONS(3938), + [anon_sym_let] = ACTIONS(3934), + [anon_sym_LPAREN] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3942), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3896), [anon_sym_LT] = ACTIONS(1902), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3894), - [sym_private_property_identifier] = ACTIONS(3894), + [sym_number] = ACTIONS(3898), + [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3920), - [anon_sym_readonly] = ACTIONS(3922), - [anon_sym_get] = ACTIONS(3924), - [anon_sym_set] = ACTIONS(3924), - [anon_sym_declare] = ACTIONS(3910), - [anon_sym_public] = ACTIONS(3926), - [anon_sym_private] = ACTIONS(3926), - [anon_sym_protected] = ACTIONS(3926), - [anon_sym_override] = ACTIONS(3928), - [anon_sym_module] = ACTIONS(3910), - [anon_sym_any] = ACTIONS(3910), - [anon_sym_number] = ACTIONS(3910), - [anon_sym_boolean] = ACTIONS(3910), - [anon_sym_string] = ACTIONS(3910), - [anon_sym_symbol] = ACTIONS(3910), - [anon_sym_object] = ACTIONS(3910), - [anon_sym_abstract] = ACTIONS(3906), - [anon_sym_PIPE_RBRACE] = ACTIONS(3908), + [anon_sym_static] = ACTIONS(3944), + [anon_sym_readonly] = ACTIONS(3946), + [anon_sym_get] = ACTIONS(3948), + [anon_sym_set] = ACTIONS(3948), + [anon_sym_declare] = ACTIONS(3934), + [anon_sym_public] = ACTIONS(3950), + [anon_sym_private] = ACTIONS(3950), + [anon_sym_protected] = ACTIONS(3950), + [anon_sym_override] = ACTIONS(3952), + [anon_sym_module] = ACTIONS(3934), + [anon_sym_any] = ACTIONS(3934), + [anon_sym_number] = ACTIONS(3934), + [anon_sym_boolean] = ACTIONS(3934), + [anon_sym_string] = ACTIONS(3934), + [anon_sym_symbol] = ACTIONS(3934), + [anon_sym_object] = ACTIONS(3934), + [anon_sym_abstract] = ACTIONS(3910), + [anon_sym_PIPE_RBRACE] = ACTIONS(3912), [sym_html_comment] = ACTIONS(5), }, - [1818] = { - [sym_export_statement] = STATE(4905), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(5931), - [sym_array_pattern] = STATE(4283), - [sym__call_signature] = STATE(5071), - [sym__destructuring_pattern] = STATE(7361), - [sym_spread_element] = STATE(6446), - [sym_string] = STATE(4151), - [sym_comment] = STATE(1818), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4200), - [sym_rest_pattern] = STATE(5931), - [sym_method_definition] = STATE(6446), - [sym_pair] = STATE(6446), - [sym_pair_pattern] = STATE(5931), - [sym__property_name] = STATE(4034), - [sym_computed_property_name] = STATE(4151), - [sym_method_signature] = STATE(4905), - [sym_accessibility_modifier] = STATE(3627), - [sym_override_modifier] = STATE(3671), - [sym_call_signature] = STATE(4905), - [sym_property_signature] = STATE(4905), - [sym_type_parameters] = STATE(6630), - [sym_construct_signature] = STATE(4905), - [sym_index_signature] = STATE(4905), - [aux_sym_export_statement_repeat1] = STATE(5733), - [aux_sym_object_repeat1] = STATE(6441), - [aux_sym_object_pattern_repeat1] = STATE(5945), - [sym_identifier] = ACTIONS(3870), - [anon_sym_export] = ACTIONS(3872), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_type] = ACTIONS(3870), - [anon_sym_namespace] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(3876), - [anon_sym_COMMA] = ACTIONS(3878), - [anon_sym_RBRACE] = ACTIONS(3932), - [anon_sym_let] = ACTIONS(3870), - [anon_sym_LPAREN] = ACTIONS(3882), - [anon_sym_SEMI] = ACTIONS(3884), - [anon_sym_LBRACK] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3888), - [anon_sym_new] = ACTIONS(3890), + [1670] = { + [sym_export_statement] = STATE(4797), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(5739), + [sym_array_pattern] = STATE(4288), + [sym__call_signature] = STATE(5095), + [sym__destructuring_pattern] = STATE(7130), + [sym_spread_element] = STATE(6145), + [sym_string] = STATE(3980), + [sym_comment] = STATE(1670), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4055), + [sym_rest_pattern] = STATE(5739), + [sym_method_definition] = STATE(6145), + [sym_pair] = STATE(6145), + [sym_pair_pattern] = STATE(5739), + [sym__property_name] = STATE(3844), + [sym_computed_property_name] = STATE(3980), + [sym_method_signature] = STATE(4797), + [sym_accessibility_modifier] = STATE(3477), + [sym_override_modifier] = STATE(3526), + [sym_call_signature] = STATE(4797), + [sym_property_signature] = STATE(4797), + [sym_type_parameters] = STATE(6769), + [sym_construct_signature] = STATE(4797), + [sym_index_signature] = STATE(4797), + [aux_sym_export_statement_repeat1] = STATE(5563), + [aux_sym_object_repeat1] = STATE(6146), + [aux_sym_object_pattern_repeat1] = STATE(5743), + [sym_identifier] = ACTIONS(3954), + [anon_sym_export] = ACTIONS(3956), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_type] = ACTIONS(3954), + [anon_sym_namespace] = ACTIONS(3954), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3882), + [anon_sym_RBRACE] = ACTIONS(3958), + [anon_sym_let] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(3960), + [anon_sym_new] = ACTIONS(3962), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3896), [anon_sym_LT] = ACTIONS(1902), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3894), - [sym_private_property_identifier] = ACTIONS(3894), + [sym_number] = ACTIONS(3898), + [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3896), - [anon_sym_readonly] = ACTIONS(3898), - [anon_sym_get] = ACTIONS(3900), - [anon_sym_set] = ACTIONS(3900), - [anon_sym_declare] = ACTIONS(3870), - [anon_sym_public] = ACTIONS(3902), - [anon_sym_private] = ACTIONS(3902), - [anon_sym_protected] = ACTIONS(3902), - [anon_sym_override] = ACTIONS(3904), - [anon_sym_module] = ACTIONS(3870), - [anon_sym_any] = ACTIONS(3870), - [anon_sym_number] = ACTIONS(3870), - [anon_sym_boolean] = ACTIONS(3870), - [anon_sym_string] = ACTIONS(3870), - [anon_sym_symbol] = ACTIONS(3870), - [anon_sym_object] = ACTIONS(3870), - [anon_sym_abstract] = ACTIONS(3906), - [anon_sym_PIPE_RBRACE] = ACTIONS(3908), + [anon_sym_static] = ACTIONS(3964), + [anon_sym_readonly] = ACTIONS(3966), + [anon_sym_get] = ACTIONS(3968), + [anon_sym_set] = ACTIONS(3968), + [anon_sym_declare] = ACTIONS(3954), + [anon_sym_public] = ACTIONS(3970), + [anon_sym_private] = ACTIONS(3970), + [anon_sym_protected] = ACTIONS(3970), + [anon_sym_override] = ACTIONS(3972), + [anon_sym_module] = ACTIONS(3954), + [anon_sym_any] = ACTIONS(3954), + [anon_sym_number] = ACTIONS(3954), + [anon_sym_boolean] = ACTIONS(3954), + [anon_sym_string] = ACTIONS(3954), + [anon_sym_symbol] = ACTIONS(3954), + [anon_sym_object] = ACTIONS(3954), + [anon_sym_abstract] = ACTIONS(3910), + [anon_sym_PIPE_RBRACE] = ACTIONS(3912), [sym_html_comment] = ACTIONS(5), }, - [1819] = { - [sym_export_statement] = STATE(4905), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(5931), - [sym_array_pattern] = STATE(4283), - [sym__call_signature] = STATE(5071), - [sym__destructuring_pattern] = STATE(7361), - [sym_spread_element] = STATE(6446), - [sym_string] = STATE(4151), - [sym_comment] = STATE(1819), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4200), - [sym_rest_pattern] = STATE(5931), - [sym_method_definition] = STATE(6446), - [sym_pair] = STATE(6446), - [sym_pair_pattern] = STATE(5931), - [sym__property_name] = STATE(4034), - [sym_computed_property_name] = STATE(4151), - [sym_method_signature] = STATE(4905), - [sym_accessibility_modifier] = STATE(3627), - [sym_override_modifier] = STATE(3671), - [sym_call_signature] = STATE(4905), - [sym_property_signature] = STATE(4905), - [sym_type_parameters] = STATE(6630), - [sym_construct_signature] = STATE(4905), - [sym_index_signature] = STATE(4905), - [aux_sym_export_statement_repeat1] = STATE(5733), - [aux_sym_object_repeat1] = STATE(6441), - [aux_sym_object_pattern_repeat1] = STATE(5945), - [sym_identifier] = ACTIONS(3910), - [anon_sym_export] = ACTIONS(3912), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_type] = ACTIONS(3910), - [anon_sym_namespace] = ACTIONS(3910), - [anon_sym_LBRACE] = ACTIONS(3876), - [anon_sym_COMMA] = ACTIONS(3878), - [anon_sym_RBRACE] = ACTIONS(3934), - [anon_sym_let] = ACTIONS(3910), - [anon_sym_LPAREN] = ACTIONS(3882), - [anon_sym_SEMI] = ACTIONS(3884), - [anon_sym_LBRACK] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3916), - [anon_sym_new] = ACTIONS(3918), + [1671] = { + [sym_export_statement] = STATE(4797), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(5739), + [sym_array_pattern] = STATE(4288), + [sym__call_signature] = STATE(5095), + [sym__destructuring_pattern] = STATE(7130), + [sym_spread_element] = STATE(6145), + [sym_string] = STATE(3980), + [sym_comment] = STATE(1671), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4055), + [sym_rest_pattern] = STATE(5739), + [sym_method_definition] = STATE(6145), + [sym_pair] = STATE(6145), + [sym_pair_pattern] = STATE(5739), + [sym__property_name] = STATE(3844), + [sym_computed_property_name] = STATE(3980), + [sym_method_signature] = STATE(4797), + [sym_accessibility_modifier] = STATE(3477), + [sym_override_modifier] = STATE(3526), + [sym_call_signature] = STATE(4797), + [sym_property_signature] = STATE(4797), + [sym_type_parameters] = STATE(6769), + [sym_construct_signature] = STATE(4797), + [sym_index_signature] = STATE(4797), + [aux_sym_export_statement_repeat1] = STATE(5563), + [aux_sym_object_repeat1] = STATE(6146), + [aux_sym_object_pattern_repeat1] = STATE(5743), + [sym_identifier] = ACTIONS(3934), + [anon_sym_export] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_type] = ACTIONS(3934), + [anon_sym_namespace] = ACTIONS(3934), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3882), + [anon_sym_RBRACE] = ACTIONS(3974), + [anon_sym_let] = ACTIONS(3934), + [anon_sym_LPAREN] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3942), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3896), [anon_sym_LT] = ACTIONS(1902), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3894), - [sym_private_property_identifier] = ACTIONS(3894), + [sym_number] = ACTIONS(3898), + [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3920), - [anon_sym_readonly] = ACTIONS(3922), - [anon_sym_get] = ACTIONS(3924), - [anon_sym_set] = ACTIONS(3924), - [anon_sym_declare] = ACTIONS(3910), - [anon_sym_public] = ACTIONS(3926), - [anon_sym_private] = ACTIONS(3926), - [anon_sym_protected] = ACTIONS(3926), - [anon_sym_override] = ACTIONS(3928), - [anon_sym_module] = ACTIONS(3910), - [anon_sym_any] = ACTIONS(3910), - [anon_sym_number] = ACTIONS(3910), - [anon_sym_boolean] = ACTIONS(3910), - [anon_sym_string] = ACTIONS(3910), - [anon_sym_symbol] = ACTIONS(3910), - [anon_sym_object] = ACTIONS(3910), - [anon_sym_abstract] = ACTIONS(3906), - [anon_sym_PIPE_RBRACE] = ACTIONS(3908), + [anon_sym_static] = ACTIONS(3944), + [anon_sym_readonly] = ACTIONS(3946), + [anon_sym_get] = ACTIONS(3948), + [anon_sym_set] = ACTIONS(3948), + [anon_sym_declare] = ACTIONS(3934), + [anon_sym_public] = ACTIONS(3950), + [anon_sym_private] = ACTIONS(3950), + [anon_sym_protected] = ACTIONS(3950), + [anon_sym_override] = ACTIONS(3952), + [anon_sym_module] = ACTIONS(3934), + [anon_sym_any] = ACTIONS(3934), + [anon_sym_number] = ACTIONS(3934), + [anon_sym_boolean] = ACTIONS(3934), + [anon_sym_string] = ACTIONS(3934), + [anon_sym_symbol] = ACTIONS(3934), + [anon_sym_object] = ACTIONS(3934), + [anon_sym_abstract] = ACTIONS(3910), + [anon_sym_PIPE_RBRACE] = ACTIONS(3912), [sym_html_comment] = ACTIONS(5), }, - [1820] = { - [sym_export_statement] = STATE(4905), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(5931), - [sym_array_pattern] = STATE(4283), - [sym__call_signature] = STATE(5071), - [sym__destructuring_pattern] = STATE(7361), - [sym_spread_element] = STATE(6446), - [sym_string] = STATE(4151), - [sym_comment] = STATE(1820), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4200), - [sym_rest_pattern] = STATE(5931), - [sym_method_definition] = STATE(6446), - [sym_pair] = STATE(6446), - [sym_pair_pattern] = STATE(5931), - [sym__property_name] = STATE(4034), - [sym_computed_property_name] = STATE(4151), - [sym_method_signature] = STATE(4905), - [sym_accessibility_modifier] = STATE(3627), - [sym_override_modifier] = STATE(3671), - [sym_call_signature] = STATE(4905), - [sym_property_signature] = STATE(4905), - [sym_type_parameters] = STATE(6630), - [sym_construct_signature] = STATE(4905), - [sym_index_signature] = STATE(4905), - [aux_sym_export_statement_repeat1] = STATE(5733), - [aux_sym_object_repeat1] = STATE(6441), - [aux_sym_object_pattern_repeat1] = STATE(5945), - [sym_identifier] = ACTIONS(3936), - [anon_sym_export] = ACTIONS(3938), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_type] = ACTIONS(3936), - [anon_sym_namespace] = ACTIONS(3936), - [anon_sym_LBRACE] = ACTIONS(3876), - [anon_sym_COMMA] = ACTIONS(3878), - [anon_sym_RBRACE] = ACTIONS(3940), - [anon_sym_let] = ACTIONS(3936), - [anon_sym_LPAREN] = ACTIONS(3882), - [anon_sym_SEMI] = ACTIONS(3884), - [anon_sym_LBRACK] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3942), - [anon_sym_new] = ACTIONS(3944), + [1672] = { + [sym_export_statement] = STATE(4797), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(5739), + [sym_array_pattern] = STATE(4288), + [sym__call_signature] = STATE(5095), + [sym__destructuring_pattern] = STATE(7130), + [sym_spread_element] = STATE(6145), + [sym_string] = STATE(3980), + [sym_comment] = STATE(1672), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4055), + [sym_rest_pattern] = STATE(5739), + [sym_method_definition] = STATE(6145), + [sym_pair] = STATE(6145), + [sym_pair_pattern] = STATE(5739), + [sym__property_name] = STATE(3844), + [sym_computed_property_name] = STATE(3980), + [sym_method_signature] = STATE(4797), + [sym_accessibility_modifier] = STATE(3477), + [sym_override_modifier] = STATE(3526), + [sym_call_signature] = STATE(4797), + [sym_property_signature] = STATE(4797), + [sym_type_parameters] = STATE(6769), + [sym_construct_signature] = STATE(4797), + [sym_index_signature] = STATE(4797), + [aux_sym_export_statement_repeat1] = STATE(5563), + [aux_sym_object_repeat1] = STATE(6146), + [aux_sym_object_pattern_repeat1] = STATE(5743), + [sym_identifier] = ACTIONS(3914), + [anon_sym_export] = ACTIONS(3916), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_type] = ACTIONS(3914), + [anon_sym_namespace] = ACTIONS(3914), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3882), + [anon_sym_RBRACE] = ACTIONS(3976), + [anon_sym_let] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3896), [anon_sym_LT] = ACTIONS(1902), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3894), - [sym_private_property_identifier] = ACTIONS(3894), + [sym_number] = ACTIONS(3898), + [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3946), - [anon_sym_readonly] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3950), - [anon_sym_set] = ACTIONS(3950), - [anon_sym_declare] = ACTIONS(3936), - [anon_sym_public] = ACTIONS(3952), - [anon_sym_private] = ACTIONS(3952), - [anon_sym_protected] = ACTIONS(3952), - [anon_sym_override] = ACTIONS(3954), - [anon_sym_module] = ACTIONS(3936), - [anon_sym_any] = ACTIONS(3936), - [anon_sym_number] = ACTIONS(3936), - [anon_sym_boolean] = ACTIONS(3936), - [anon_sym_string] = ACTIONS(3936), - [anon_sym_symbol] = ACTIONS(3936), - [anon_sym_object] = ACTIONS(3936), - [anon_sym_abstract] = ACTIONS(3906), - [anon_sym_PIPE_RBRACE] = ACTIONS(3908), + [anon_sym_static] = ACTIONS(3924), + [anon_sym_readonly] = ACTIONS(3926), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_declare] = ACTIONS(3914), + [anon_sym_public] = ACTIONS(3930), + [anon_sym_private] = ACTIONS(3930), + [anon_sym_protected] = ACTIONS(3930), + [anon_sym_override] = ACTIONS(3932), + [anon_sym_module] = ACTIONS(3914), + [anon_sym_any] = ACTIONS(3914), + [anon_sym_number] = ACTIONS(3914), + [anon_sym_boolean] = ACTIONS(3914), + [anon_sym_string] = ACTIONS(3914), + [anon_sym_symbol] = ACTIONS(3914), + [anon_sym_object] = ACTIONS(3914), + [anon_sym_abstract] = ACTIONS(3910), + [anon_sym_PIPE_RBRACE] = ACTIONS(3912), [sym_html_comment] = ACTIONS(5), }, - [1821] = { - [sym_export_statement] = STATE(4905), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(5931), - [sym_array_pattern] = STATE(4283), - [sym__call_signature] = STATE(5071), - [sym__destructuring_pattern] = STATE(7361), - [sym_spread_element] = STATE(6446), - [sym_string] = STATE(4151), - [sym_comment] = STATE(1821), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4200), - [sym_rest_pattern] = STATE(5931), - [sym_method_definition] = STATE(6446), - [sym_pair] = STATE(6446), - [sym_pair_pattern] = STATE(5931), - [sym__property_name] = STATE(4034), - [sym_computed_property_name] = STATE(4151), - [sym_method_signature] = STATE(4905), - [sym_accessibility_modifier] = STATE(3627), - [sym_override_modifier] = STATE(3671), - [sym_call_signature] = STATE(4905), - [sym_property_signature] = STATE(4905), - [sym_type_parameters] = STATE(6630), - [sym_construct_signature] = STATE(4905), - [sym_index_signature] = STATE(4905), - [aux_sym_export_statement_repeat1] = STATE(5733), - [aux_sym_object_repeat1] = STATE(6441), - [aux_sym_object_pattern_repeat1] = STATE(5945), - [sym_identifier] = ACTIONS(3936), - [anon_sym_export] = ACTIONS(3938), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_type] = ACTIONS(3936), - [anon_sym_namespace] = ACTIONS(3936), - [anon_sym_LBRACE] = ACTIONS(3876), - [anon_sym_COMMA] = ACTIONS(3878), - [anon_sym_RBRACE] = ACTIONS(3956), - [anon_sym_let] = ACTIONS(3936), - [anon_sym_LPAREN] = ACTIONS(3882), - [anon_sym_SEMI] = ACTIONS(3884), - [anon_sym_LBRACK] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3942), - [anon_sym_new] = ACTIONS(3944), + [1673] = { + [sym_export_statement] = STATE(4797), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(5739), + [sym_array_pattern] = STATE(4288), + [sym__call_signature] = STATE(5095), + [sym__destructuring_pattern] = STATE(7130), + [sym_spread_element] = STATE(6145), + [sym_string] = STATE(3980), + [sym_comment] = STATE(1673), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4055), + [sym_rest_pattern] = STATE(5739), + [sym_method_definition] = STATE(6145), + [sym_pair] = STATE(6145), + [sym_pair_pattern] = STATE(5739), + [sym__property_name] = STATE(3844), + [sym_computed_property_name] = STATE(3980), + [sym_method_signature] = STATE(4797), + [sym_accessibility_modifier] = STATE(3477), + [sym_override_modifier] = STATE(3526), + [sym_call_signature] = STATE(4797), + [sym_property_signature] = STATE(4797), + [sym_type_parameters] = STATE(6769), + [sym_construct_signature] = STATE(4797), + [sym_index_signature] = STATE(4797), + [aux_sym_export_statement_repeat1] = STATE(5563), + [aux_sym_object_repeat1] = STATE(6146), + [aux_sym_object_pattern_repeat1] = STATE(5743), + [sym_identifier] = ACTIONS(3954), + [anon_sym_export] = ACTIONS(3956), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_type] = ACTIONS(3954), + [anon_sym_namespace] = ACTIONS(3954), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3882), + [anon_sym_RBRACE] = ACTIONS(3978), + [anon_sym_let] = ACTIONS(3954), + [anon_sym_LPAREN] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(3960), + [anon_sym_new] = ACTIONS(3962), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3896), [anon_sym_LT] = ACTIONS(1902), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3894), - [sym_private_property_identifier] = ACTIONS(3894), + [sym_number] = ACTIONS(3898), + [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3946), - [anon_sym_readonly] = ACTIONS(3948), - [anon_sym_get] = ACTIONS(3950), - [anon_sym_set] = ACTIONS(3950), - [anon_sym_declare] = ACTIONS(3936), - [anon_sym_public] = ACTIONS(3952), - [anon_sym_private] = ACTIONS(3952), - [anon_sym_protected] = ACTIONS(3952), - [anon_sym_override] = ACTIONS(3954), - [anon_sym_module] = ACTIONS(3936), - [anon_sym_any] = ACTIONS(3936), - [anon_sym_number] = ACTIONS(3936), - [anon_sym_boolean] = ACTIONS(3936), - [anon_sym_string] = ACTIONS(3936), - [anon_sym_symbol] = ACTIONS(3936), - [anon_sym_object] = ACTIONS(3936), - [anon_sym_abstract] = ACTIONS(3906), - [anon_sym_PIPE_RBRACE] = ACTIONS(3908), + [anon_sym_static] = ACTIONS(3964), + [anon_sym_readonly] = ACTIONS(3966), + [anon_sym_get] = ACTIONS(3968), + [anon_sym_set] = ACTIONS(3968), + [anon_sym_declare] = ACTIONS(3954), + [anon_sym_public] = ACTIONS(3970), + [anon_sym_private] = ACTIONS(3970), + [anon_sym_protected] = ACTIONS(3970), + [anon_sym_override] = ACTIONS(3972), + [anon_sym_module] = ACTIONS(3954), + [anon_sym_any] = ACTIONS(3954), + [anon_sym_number] = ACTIONS(3954), + [anon_sym_boolean] = ACTIONS(3954), + [anon_sym_string] = ACTIONS(3954), + [anon_sym_symbol] = ACTIONS(3954), + [anon_sym_object] = ACTIONS(3954), + [anon_sym_abstract] = ACTIONS(3910), + [anon_sym_PIPE_RBRACE] = ACTIONS(3912), [sym_html_comment] = ACTIONS(5), }, - [1822] = { - [sym_export_statement] = STATE(4894), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(5931), - [sym_array_pattern] = STATE(4283), - [sym__call_signature] = STATE(5071), - [sym__destructuring_pattern] = STATE(7361), - [sym_spread_element] = STATE(6446), - [sym_string] = STATE(4151), - [sym_comment] = STATE(1822), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4200), - [sym_rest_pattern] = STATE(5931), - [sym_method_definition] = STATE(6446), - [sym_pair] = STATE(6446), - [sym_pair_pattern] = STATE(5931), - [sym__property_name] = STATE(4034), - [sym_computed_property_name] = STATE(4151), - [sym_method_signature] = STATE(4894), - [sym_accessibility_modifier] = STATE(3627), - [sym_override_modifier] = STATE(3671), - [sym_call_signature] = STATE(4894), - [sym_property_signature] = STATE(4894), - [sym_type_parameters] = STATE(6630), - [sym_construct_signature] = STATE(4894), - [sym_index_signature] = STATE(4894), - [aux_sym_export_statement_repeat1] = STATE(5733), - [aux_sym_object_repeat1] = STATE(6441), - [aux_sym_object_pattern_repeat1] = STATE(5945), - [sym_identifier] = ACTIONS(3870), - [anon_sym_export] = ACTIONS(3872), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_type] = ACTIONS(3870), - [anon_sym_namespace] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(3876), - [anon_sym_COMMA] = ACTIONS(3958), - [anon_sym_RBRACE] = ACTIONS(3960), - [anon_sym_let] = ACTIONS(3870), - [anon_sym_LPAREN] = ACTIONS(3882), - [anon_sym_SEMI] = ACTIONS(3962), - [anon_sym_LBRACK] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3888), - [anon_sym_new] = ACTIONS(3890), + [1674] = { + [sym_export_statement] = STATE(4797), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(5739), + [sym_array_pattern] = STATE(4288), + [sym__call_signature] = STATE(5095), + [sym__destructuring_pattern] = STATE(7130), + [sym_spread_element] = STATE(6145), + [sym_string] = STATE(3980), + [sym_comment] = STATE(1674), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4055), + [sym_rest_pattern] = STATE(5739), + [sym_method_definition] = STATE(6145), + [sym_pair] = STATE(6145), + [sym_pair_pattern] = STATE(5739), + [sym__property_name] = STATE(3844), + [sym_computed_property_name] = STATE(3980), + [sym_method_signature] = STATE(4797), + [sym_accessibility_modifier] = STATE(3477), + [sym_override_modifier] = STATE(3526), + [sym_call_signature] = STATE(4797), + [sym_property_signature] = STATE(4797), + [sym_type_parameters] = STATE(6769), + [sym_construct_signature] = STATE(4797), + [sym_index_signature] = STATE(4797), + [aux_sym_export_statement_repeat1] = STATE(5563), + [aux_sym_object_repeat1] = STATE(6146), + [aux_sym_object_pattern_repeat1] = STATE(5743), + [sym_identifier] = ACTIONS(3934), + [anon_sym_export] = ACTIONS(3936), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_type] = ACTIONS(3934), + [anon_sym_namespace] = ACTIONS(3934), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3882), + [anon_sym_RBRACE] = ACTIONS(3976), + [anon_sym_let] = ACTIONS(3934), + [anon_sym_LPAREN] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(3940), + [anon_sym_new] = ACTIONS(3942), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3896), [anon_sym_LT] = ACTIONS(1902), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3894), - [sym_private_property_identifier] = ACTIONS(3894), + [sym_number] = ACTIONS(3898), + [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3896), - [anon_sym_readonly] = ACTIONS(3898), - [anon_sym_get] = ACTIONS(3900), - [anon_sym_set] = ACTIONS(3900), - [anon_sym_declare] = ACTIONS(3870), - [anon_sym_public] = ACTIONS(3902), - [anon_sym_private] = ACTIONS(3902), - [anon_sym_protected] = ACTIONS(3902), - [anon_sym_override] = ACTIONS(3904), - [anon_sym_module] = ACTIONS(3870), - [anon_sym_any] = ACTIONS(3870), - [anon_sym_number] = ACTIONS(3870), - [anon_sym_boolean] = ACTIONS(3870), - [anon_sym_string] = ACTIONS(3870), - [anon_sym_symbol] = ACTIONS(3870), - [anon_sym_object] = ACTIONS(3870), - [anon_sym_abstract] = ACTIONS(3906), - [anon_sym_PIPE_RBRACE] = ACTIONS(3964), + [anon_sym_static] = ACTIONS(3944), + [anon_sym_readonly] = ACTIONS(3946), + [anon_sym_get] = ACTIONS(3948), + [anon_sym_set] = ACTIONS(3948), + [anon_sym_declare] = ACTIONS(3934), + [anon_sym_public] = ACTIONS(3950), + [anon_sym_private] = ACTIONS(3950), + [anon_sym_protected] = ACTIONS(3950), + [anon_sym_override] = ACTIONS(3952), + [anon_sym_module] = ACTIONS(3934), + [anon_sym_any] = ACTIONS(3934), + [anon_sym_number] = ACTIONS(3934), + [anon_sym_boolean] = ACTIONS(3934), + [anon_sym_string] = ACTIONS(3934), + [anon_sym_symbol] = ACTIONS(3934), + [anon_sym_object] = ACTIONS(3934), + [anon_sym_abstract] = ACTIONS(3910), + [anon_sym_PIPE_RBRACE] = ACTIONS(3912), [sym_html_comment] = ACTIONS(5), }, - [1823] = { - [sym_export_statement] = STATE(4905), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(5931), - [sym_array_pattern] = STATE(4283), - [sym__call_signature] = STATE(5071), - [sym__destructuring_pattern] = STATE(7361), - [sym_spread_element] = STATE(5935), - [sym_string] = STATE(4151), - [sym_comment] = STATE(1823), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4200), - [sym_rest_pattern] = STATE(5931), - [sym_method_definition] = STATE(5935), - [sym_pair] = STATE(5935), - [sym_pair_pattern] = STATE(5931), - [sym__property_name] = STATE(4034), - [sym_computed_property_name] = STATE(4151), - [sym_method_signature] = STATE(4905), - [sym_accessibility_modifier] = STATE(3627), - [sym_override_modifier] = STATE(3671), - [sym_call_signature] = STATE(4905), - [sym_property_signature] = STATE(4905), - [sym_type_parameters] = STATE(6630), - [sym_construct_signature] = STATE(4905), - [sym_index_signature] = STATE(4905), - [aux_sym_export_statement_repeat1] = STATE(5733), - [aux_sym_object_repeat1] = STATE(5939), - [aux_sym_object_pattern_repeat1] = STATE(5945), - [sym_identifier] = ACTIONS(3966), - [anon_sym_export] = ACTIONS(3968), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_type] = ACTIONS(3966), - [anon_sym_namespace] = ACTIONS(3966), - [anon_sym_LBRACE] = ACTIONS(3876), - [anon_sym_COMMA] = ACTIONS(3878), - [anon_sym_RBRACE] = ACTIONS(3970), - [anon_sym_let] = ACTIONS(3966), - [anon_sym_LPAREN] = ACTIONS(3882), - [anon_sym_SEMI] = ACTIONS(3884), - [anon_sym_LBRACK] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3972), - [anon_sym_new] = ACTIONS(3974), + [1675] = { + [sym_export_statement] = STATE(4797), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(5739), + [sym_array_pattern] = STATE(4288), + [sym__call_signature] = STATE(5095), + [sym__destructuring_pattern] = STATE(7130), + [sym_spread_element] = STATE(5740), + [sym_string] = STATE(3980), + [sym_comment] = STATE(1675), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4055), + [sym_rest_pattern] = STATE(5739), + [sym_method_definition] = STATE(5740), + [sym_pair] = STATE(5740), + [sym_pair_pattern] = STATE(5739), + [sym__property_name] = STATE(3844), + [sym_computed_property_name] = STATE(3980), + [sym_method_signature] = STATE(4797), + [sym_accessibility_modifier] = STATE(3477), + [sym_override_modifier] = STATE(3526), + [sym_call_signature] = STATE(4797), + [sym_property_signature] = STATE(4797), + [sym_type_parameters] = STATE(6769), + [sym_construct_signature] = STATE(4797), + [sym_index_signature] = STATE(4797), + [aux_sym_export_statement_repeat1] = STATE(5563), + [aux_sym_object_repeat1] = STATE(5792), + [aux_sym_object_pattern_repeat1] = STATE(5743), + [sym_identifier] = ACTIONS(3874), + [anon_sym_export] = ACTIONS(3876), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_type] = ACTIONS(3874), + [anon_sym_namespace] = ACTIONS(3874), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3882), + [anon_sym_RBRACE] = ACTIONS(3980), + [anon_sym_let] = ACTIONS(3874), + [anon_sym_LPAREN] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(3892), + [anon_sym_new] = ACTIONS(3894), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3896), [anon_sym_LT] = ACTIONS(1902), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3894), - [sym_private_property_identifier] = ACTIONS(3894), + [sym_number] = ACTIONS(3898), + [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3976), - [anon_sym_readonly] = ACTIONS(3978), - [anon_sym_get] = ACTIONS(3980), - [anon_sym_set] = ACTIONS(3980), - [anon_sym_declare] = ACTIONS(3966), - [anon_sym_public] = ACTIONS(3982), - [anon_sym_private] = ACTIONS(3982), - [anon_sym_protected] = ACTIONS(3982), - [anon_sym_override] = ACTIONS(3984), - [anon_sym_module] = ACTIONS(3966), - [anon_sym_any] = ACTIONS(3966), - [anon_sym_number] = ACTIONS(3966), - [anon_sym_boolean] = ACTIONS(3966), - [anon_sym_string] = ACTIONS(3966), - [anon_sym_symbol] = ACTIONS(3966), - [anon_sym_object] = ACTIONS(3966), - [anon_sym_abstract] = ACTIONS(3906), - [anon_sym_PIPE_RBRACE] = ACTIONS(3908), + [anon_sym_static] = ACTIONS(3900), + [anon_sym_readonly] = ACTIONS(3902), + [anon_sym_get] = ACTIONS(3904), + [anon_sym_set] = ACTIONS(3904), + [anon_sym_declare] = ACTIONS(3874), + [anon_sym_public] = ACTIONS(3906), + [anon_sym_private] = ACTIONS(3906), + [anon_sym_protected] = ACTIONS(3906), + [anon_sym_override] = ACTIONS(3908), + [anon_sym_module] = ACTIONS(3874), + [anon_sym_any] = ACTIONS(3874), + [anon_sym_number] = ACTIONS(3874), + [anon_sym_boolean] = ACTIONS(3874), + [anon_sym_string] = ACTIONS(3874), + [anon_sym_symbol] = ACTIONS(3874), + [anon_sym_object] = ACTIONS(3874), + [anon_sym_abstract] = ACTIONS(3910), + [anon_sym_PIPE_RBRACE] = ACTIONS(3912), [sym_html_comment] = ACTIONS(5), }, - [1824] = { - [sym_export_statement] = STATE(4905), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(5931), - [sym_array_pattern] = STATE(4283), - [sym__call_signature] = STATE(5071), - [sym__destructuring_pattern] = STATE(7361), - [sym_spread_element] = STATE(5935), - [sym_string] = STATE(4151), - [sym_comment] = STATE(1824), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4200), - [sym_rest_pattern] = STATE(5931), - [sym_method_definition] = STATE(5935), - [sym_pair] = STATE(5935), - [sym_pair_pattern] = STATE(5931), - [sym__property_name] = STATE(4034), - [sym_computed_property_name] = STATE(4151), - [sym_method_signature] = STATE(4905), - [sym_accessibility_modifier] = STATE(3627), - [sym_override_modifier] = STATE(3671), - [sym_call_signature] = STATE(4905), - [sym_property_signature] = STATE(4905), - [sym_type_parameters] = STATE(6630), - [sym_construct_signature] = STATE(4905), - [sym_index_signature] = STATE(4905), - [aux_sym_export_statement_repeat1] = STATE(5733), - [aux_sym_object_repeat1] = STATE(5939), - [aux_sym_object_pattern_repeat1] = STATE(5945), - [sym_identifier] = ACTIONS(3966), - [anon_sym_export] = ACTIONS(3968), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_type] = ACTIONS(3966), - [anon_sym_namespace] = ACTIONS(3966), - [anon_sym_LBRACE] = ACTIONS(3876), - [anon_sym_COMMA] = ACTIONS(3878), + [1676] = { + [sym_export_statement] = STATE(4797), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(5739), + [sym_array_pattern] = STATE(4288), + [sym__call_signature] = STATE(5095), + [sym__destructuring_pattern] = STATE(7130), + [sym_spread_element] = STATE(6145), + [sym_string] = STATE(3980), + [sym_comment] = STATE(1676), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4055), + [sym_rest_pattern] = STATE(5739), + [sym_method_definition] = STATE(6145), + [sym_pair] = STATE(6145), + [sym_pair_pattern] = STATE(5739), + [sym__property_name] = STATE(3844), + [sym_computed_property_name] = STATE(3980), + [sym_method_signature] = STATE(4797), + [sym_accessibility_modifier] = STATE(3477), + [sym_override_modifier] = STATE(3526), + [sym_call_signature] = STATE(4797), + [sym_property_signature] = STATE(4797), + [sym_type_parameters] = STATE(6769), + [sym_construct_signature] = STATE(4797), + [sym_index_signature] = STATE(4797), + [aux_sym_export_statement_repeat1] = STATE(5563), + [aux_sym_object_repeat1] = STATE(6146), + [aux_sym_object_pattern_repeat1] = STATE(5743), + [sym_identifier] = ACTIONS(3982), + [anon_sym_export] = ACTIONS(3984), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_type] = ACTIONS(3982), + [anon_sym_namespace] = ACTIONS(3982), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3882), [anon_sym_RBRACE] = ACTIONS(3986), - [anon_sym_let] = ACTIONS(3966), - [anon_sym_LPAREN] = ACTIONS(3882), - [anon_sym_SEMI] = ACTIONS(3884), - [anon_sym_LBRACK] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3972), - [anon_sym_new] = ACTIONS(3974), + [anon_sym_let] = ACTIONS(3982), + [anon_sym_LPAREN] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(3988), + [anon_sym_new] = ACTIONS(3990), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3896), [anon_sym_LT] = ACTIONS(1902), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3894), - [sym_private_property_identifier] = ACTIONS(3894), + [sym_number] = ACTIONS(3898), + [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3976), - [anon_sym_readonly] = ACTIONS(3978), - [anon_sym_get] = ACTIONS(3980), - [anon_sym_set] = ACTIONS(3980), - [anon_sym_declare] = ACTIONS(3966), - [anon_sym_public] = ACTIONS(3982), - [anon_sym_private] = ACTIONS(3982), - [anon_sym_protected] = ACTIONS(3982), - [anon_sym_override] = ACTIONS(3984), - [anon_sym_module] = ACTIONS(3966), - [anon_sym_any] = ACTIONS(3966), - [anon_sym_number] = ACTIONS(3966), - [anon_sym_boolean] = ACTIONS(3966), - [anon_sym_string] = ACTIONS(3966), - [anon_sym_symbol] = ACTIONS(3966), - [anon_sym_object] = ACTIONS(3966), - [anon_sym_abstract] = ACTIONS(3906), - [anon_sym_PIPE_RBRACE] = ACTIONS(3908), + [anon_sym_static] = ACTIONS(3992), + [anon_sym_readonly] = ACTIONS(3994), + [anon_sym_get] = ACTIONS(3996), + [anon_sym_set] = ACTIONS(3996), + [anon_sym_declare] = ACTIONS(3982), + [anon_sym_public] = ACTIONS(3998), + [anon_sym_private] = ACTIONS(3998), + [anon_sym_protected] = ACTIONS(3998), + [anon_sym_override] = ACTIONS(4000), + [anon_sym_module] = ACTIONS(3982), + [anon_sym_any] = ACTIONS(3982), + [anon_sym_number] = ACTIONS(3982), + [anon_sym_boolean] = ACTIONS(3982), + [anon_sym_string] = ACTIONS(3982), + [anon_sym_symbol] = ACTIONS(3982), + [anon_sym_object] = ACTIONS(3982), + [anon_sym_abstract] = ACTIONS(3910), + [anon_sym_PIPE_RBRACE] = ACTIONS(3912), [sym_html_comment] = ACTIONS(5), }, - [1825] = { - [sym_export_statement] = STATE(4905), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(5931), - [sym_array_pattern] = STATE(4283), - [sym__call_signature] = STATE(5071), - [sym__destructuring_pattern] = STATE(7361), - [sym_spread_element] = STATE(6446), - [sym_string] = STATE(4151), - [sym_comment] = STATE(1825), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4200), - [sym_rest_pattern] = STATE(5931), - [sym_method_definition] = STATE(6446), - [sym_pair] = STATE(6446), - [sym_pair_pattern] = STATE(5931), - [sym__property_name] = STATE(4034), - [sym_computed_property_name] = STATE(4151), - [sym_method_signature] = STATE(4905), - [sym_accessibility_modifier] = STATE(3627), - [sym_override_modifier] = STATE(3671), - [sym_call_signature] = STATE(4905), - [sym_property_signature] = STATE(4905), - [sym_type_parameters] = STATE(6630), - [sym_construct_signature] = STATE(4905), - [sym_index_signature] = STATE(4905), - [aux_sym_export_statement_repeat1] = STATE(5733), - [aux_sym_object_repeat1] = STATE(6441), - [aux_sym_object_pattern_repeat1] = STATE(5945), - [sym_identifier] = ACTIONS(3988), - [anon_sym_export] = ACTIONS(3990), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_type] = ACTIONS(3988), - [anon_sym_namespace] = ACTIONS(3988), - [anon_sym_LBRACE] = ACTIONS(3876), - [anon_sym_COMMA] = ACTIONS(3878), - [anon_sym_RBRACE] = ACTIONS(3932), - [anon_sym_let] = ACTIONS(3988), - [anon_sym_LPAREN] = ACTIONS(3882), - [anon_sym_SEMI] = ACTIONS(3884), - [anon_sym_LBRACK] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3992), - [anon_sym_new] = ACTIONS(3994), + [1677] = { + [sym_export_statement] = STATE(4797), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(5739), + [sym_array_pattern] = STATE(4288), + [sym__call_signature] = STATE(5095), + [sym__destructuring_pattern] = STATE(7130), + [sym_spread_element] = STATE(6145), + [sym_string] = STATE(3980), + [sym_comment] = STATE(1677), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4055), + [sym_rest_pattern] = STATE(5739), + [sym_method_definition] = STATE(6145), + [sym_pair] = STATE(6145), + [sym_pair_pattern] = STATE(5739), + [sym__property_name] = STATE(3844), + [sym_computed_property_name] = STATE(3980), + [sym_method_signature] = STATE(4797), + [sym_accessibility_modifier] = STATE(3477), + [sym_override_modifier] = STATE(3526), + [sym_call_signature] = STATE(4797), + [sym_property_signature] = STATE(4797), + [sym_type_parameters] = STATE(6769), + [sym_construct_signature] = STATE(4797), + [sym_index_signature] = STATE(4797), + [aux_sym_export_statement_repeat1] = STATE(5563), + [aux_sym_object_repeat1] = STATE(6146), + [aux_sym_object_pattern_repeat1] = STATE(5743), + [sym_identifier] = ACTIONS(3914), + [anon_sym_export] = ACTIONS(3916), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_type] = ACTIONS(3914), + [anon_sym_namespace] = ACTIONS(3914), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(3882), + [anon_sym_RBRACE] = ACTIONS(3986), + [anon_sym_let] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3888), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3896), [anon_sym_LT] = ACTIONS(1902), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3894), - [sym_private_property_identifier] = ACTIONS(3894), + [sym_number] = ACTIONS(3898), + [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3996), - [anon_sym_readonly] = ACTIONS(3998), - [anon_sym_get] = ACTIONS(4000), - [anon_sym_set] = ACTIONS(4000), - [anon_sym_declare] = ACTIONS(3988), - [anon_sym_public] = ACTIONS(4002), - [anon_sym_private] = ACTIONS(4002), - [anon_sym_protected] = ACTIONS(4002), - [anon_sym_override] = ACTIONS(4004), - [anon_sym_module] = ACTIONS(3988), - [anon_sym_any] = ACTIONS(3988), - [anon_sym_number] = ACTIONS(3988), - [anon_sym_boolean] = ACTIONS(3988), - [anon_sym_string] = ACTIONS(3988), - [anon_sym_symbol] = ACTIONS(3988), - [anon_sym_object] = ACTIONS(3988), - [anon_sym_abstract] = ACTIONS(3906), - [anon_sym_PIPE_RBRACE] = ACTIONS(3908), + [anon_sym_static] = ACTIONS(3924), + [anon_sym_readonly] = ACTIONS(3926), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_declare] = ACTIONS(3914), + [anon_sym_public] = ACTIONS(3930), + [anon_sym_private] = ACTIONS(3930), + [anon_sym_protected] = ACTIONS(3930), + [anon_sym_override] = ACTIONS(3932), + [anon_sym_module] = ACTIONS(3914), + [anon_sym_any] = ACTIONS(3914), + [anon_sym_number] = ACTIONS(3914), + [anon_sym_boolean] = ACTIONS(3914), + [anon_sym_string] = ACTIONS(3914), + [anon_sym_symbol] = ACTIONS(3914), + [anon_sym_object] = ACTIONS(3914), + [anon_sym_abstract] = ACTIONS(3910), + [anon_sym_PIPE_RBRACE] = ACTIONS(3912), [sym_html_comment] = ACTIONS(5), }, - [1826] = { - [sym_export_statement] = STATE(4905), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(5931), - [sym_array_pattern] = STATE(4283), - [sym__call_signature] = STATE(5071), - [sym__destructuring_pattern] = STATE(7361), - [sym_spread_element] = STATE(6446), - [sym_string] = STATE(4151), - [sym_comment] = STATE(1826), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4200), - [sym_rest_pattern] = STATE(5931), - [sym_method_definition] = STATE(6446), - [sym_pair] = STATE(6446), - [sym_pair_pattern] = STATE(5931), - [sym__property_name] = STATE(4034), - [sym_computed_property_name] = STATE(4151), - [sym_method_signature] = STATE(4905), - [sym_accessibility_modifier] = STATE(3627), - [sym_override_modifier] = STATE(3671), - [sym_call_signature] = STATE(4905), - [sym_property_signature] = STATE(4905), - [sym_type_parameters] = STATE(6630), - [sym_construct_signature] = STATE(4905), - [sym_index_signature] = STATE(4905), - [aux_sym_export_statement_repeat1] = STATE(5733), - [aux_sym_object_repeat1] = STATE(6441), - [aux_sym_object_pattern_repeat1] = STATE(5945), - [sym_identifier] = ACTIONS(3870), - [anon_sym_export] = ACTIONS(3872), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_type] = ACTIONS(3870), - [anon_sym_namespace] = ACTIONS(3870), - [anon_sym_LBRACE] = ACTIONS(3876), - [anon_sym_COMMA] = ACTIONS(3878), - [anon_sym_RBRACE] = ACTIONS(3934), - [anon_sym_let] = ACTIONS(3870), - [anon_sym_LPAREN] = ACTIONS(3882), - [anon_sym_SEMI] = ACTIONS(3884), - [anon_sym_LBRACK] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(3888), - [anon_sym_new] = ACTIONS(3890), + [1678] = { + [sym_export_statement] = STATE(4679), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(5739), + [sym_array_pattern] = STATE(4288), + [sym__call_signature] = STATE(5095), + [sym__destructuring_pattern] = STATE(7130), + [sym_spread_element] = STATE(6145), + [sym_string] = STATE(3980), + [sym_comment] = STATE(1678), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4055), + [sym_rest_pattern] = STATE(5739), + [sym_method_definition] = STATE(6145), + [sym_pair] = STATE(6145), + [sym_pair_pattern] = STATE(5739), + [sym__property_name] = STATE(3844), + [sym_computed_property_name] = STATE(3980), + [sym_method_signature] = STATE(4679), + [sym_accessibility_modifier] = STATE(3477), + [sym_override_modifier] = STATE(3526), + [sym_call_signature] = STATE(4679), + [sym_property_signature] = STATE(4679), + [sym_type_parameters] = STATE(6769), + [sym_construct_signature] = STATE(4679), + [sym_index_signature] = STATE(4679), + [aux_sym_export_statement_repeat1] = STATE(5563), + [aux_sym_object_repeat1] = STATE(6146), + [aux_sym_object_pattern_repeat1] = STATE(5743), + [sym_identifier] = ACTIONS(3914), + [anon_sym_export] = ACTIONS(3916), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_type] = ACTIONS(3914), + [anon_sym_namespace] = ACTIONS(3914), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(4002), + [anon_sym_RBRACE] = ACTIONS(4004), + [anon_sym_let] = ACTIONS(3914), + [anon_sym_LPAREN] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(4006), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(3920), + [anon_sym_new] = ACTIONS(3922), [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3892), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3896), [anon_sym_LT] = ACTIONS(1902), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3894), - [sym_private_property_identifier] = ACTIONS(3894), + [sym_number] = ACTIONS(3898), + [sym_private_property_identifier] = ACTIONS(3898), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3896), - [anon_sym_readonly] = ACTIONS(3898), - [anon_sym_get] = ACTIONS(3900), - [anon_sym_set] = ACTIONS(3900), - [anon_sym_declare] = ACTIONS(3870), - [anon_sym_public] = ACTIONS(3902), - [anon_sym_private] = ACTIONS(3902), - [anon_sym_protected] = ACTIONS(3902), - [anon_sym_override] = ACTIONS(3904), - [anon_sym_module] = ACTIONS(3870), - [anon_sym_any] = ACTIONS(3870), - [anon_sym_number] = ACTIONS(3870), - [anon_sym_boolean] = ACTIONS(3870), - [anon_sym_string] = ACTIONS(3870), - [anon_sym_symbol] = ACTIONS(3870), - [anon_sym_object] = ACTIONS(3870), - [anon_sym_abstract] = ACTIONS(3906), - [anon_sym_PIPE_RBRACE] = ACTIONS(3908), + [anon_sym_static] = ACTIONS(3924), + [anon_sym_readonly] = ACTIONS(3926), + [anon_sym_get] = ACTIONS(3928), + [anon_sym_set] = ACTIONS(3928), + [anon_sym_declare] = ACTIONS(3914), + [anon_sym_public] = ACTIONS(3930), + [anon_sym_private] = ACTIONS(3930), + [anon_sym_protected] = ACTIONS(3930), + [anon_sym_override] = ACTIONS(3932), + [anon_sym_module] = ACTIONS(3914), + [anon_sym_any] = ACTIONS(3914), + [anon_sym_number] = ACTIONS(3914), + [anon_sym_boolean] = ACTIONS(3914), + [anon_sym_string] = ACTIONS(3914), + [anon_sym_symbol] = ACTIONS(3914), + [anon_sym_object] = ACTIONS(3914), + [anon_sym_abstract] = ACTIONS(3910), + [anon_sym_PIPE_RBRACE] = ACTIONS(4008), [sym_html_comment] = ACTIONS(5), }, - [1827] = { - [sym_nested_identifier] = STATE(1194), - [sym_string] = STATE(1215), - [sym_comment] = STATE(1827), - [sym__module] = STATE(1581), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), - [sym_identifier] = ACTIONS(4006), + [1679] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1679), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5448), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(4010), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(207), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(207), + [anon_sym_number] = ACTIONS(207), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(203), + [anon_sym_unique] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [1680] = { + [sym_nested_identifier] = STATE(962), + [sym_string] = STATE(1161), + [sym_comment] = STATE(1680), + [sym__module] = STATE(1517), + [aux_sym_object_repeat1] = STATE(5868), + [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_identifier] = ACTIONS(4012), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(1041), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(968), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4008), - [anon_sym_SQUOTE] = ACTIONS(4010), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -212669,36 +200297,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1828] = { - [sym_nested_identifier] = STATE(407), - [sym_string] = STATE(406), - [sym_comment] = STATE(1828), - [sym__module] = STATE(456), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), + [1681] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1681), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5451), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(4018), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(207), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(207), + [anon_sym_number] = ACTIONS(207), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(203), + [anon_sym_unique] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [1682] = { + [sym_nested_identifier] = STATE(962), + [sym_string] = STATE(1161), + [sym_comment] = STATE(1682), + [sym__module] = STATE(1517), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), [sym_identifier] = ACTIONS(4012), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(966), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(968), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(4014), [anon_sym_SQUOTE] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -212741,36 +200441,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1829] = { - [sym_variable_declarator] = STATE(5725), - [sym_object_pattern] = STATE(4667), - [sym_array_pattern] = STATE(4667), - [sym__destructuring_pattern] = STATE(4584), - [sym_comment] = STATE(1829), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), - [sym_identifier] = ACTIONS(4018), + [1683] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1683), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5437), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_RBRACK] = ACTIONS(4020), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(207), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(207), + [anon_sym_number] = ACTIONS(207), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(203), + [anon_sym_unique] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [1684] = { + [sym_nested_identifier] = STATE(372), + [sym_string] = STATE(373), + [sym_comment] = STATE(1684), + [sym__module] = STATE(453), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_identifier] = ACTIONS(4022), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4020), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1043), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4024), + [anon_sym_SQUOTE] = ACTIONS(4026), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -212813,180 +200585,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1830] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1830), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5667), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(4024), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [1831] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1831), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5644), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(4026), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), - [sym_html_comment] = ACTIONS(5), - }, - [1832] = { - [sym_nested_identifier] = STATE(407), - [sym_string] = STATE(406), - [sym_comment] = STATE(1832), - [sym__module] = STATE(456), - [aux_sym_object_repeat1] = STATE(6165), - [aux_sym_object_pattern_repeat1] = STATE(6171), - [sym_identifier] = ACTIONS(4012), + [1685] = { + [sym_variable_declarator] = STATE(5443), + [sym_object_pattern] = STATE(4389), + [sym_array_pattern] = STATE(4389), + [sym__destructuring_pattern] = STATE(4574), + [sym_comment] = STATE(1685), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_identifier] = ACTIONS(4028), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4030), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1043), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(4032), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4014), - [anon_sym_SQUOTE] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -213029,50 +200657,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1833] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1833), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4794), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(4028), + [1686] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1686), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5412), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), [anon_sym_typeof] = ACTIONS(1888), [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [sym_jsx_identifier] = ACTIONS(4030), + [anon_sym_RBRACK] = ACTIONS(4034), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -213107,30 +200735,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1834] = { - [sym_variable_declarator] = STATE(5725), - [sym_object_pattern] = STATE(4667), - [sym_array_pattern] = STATE(4667), - [sym__destructuring_pattern] = STATE(4584), - [sym_comment] = STATE(1834), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), - [sym_identifier] = ACTIONS(4018), + [1687] = { + [sym_nested_identifier] = STATE(372), + [sym_string] = STATE(373), + [sym_comment] = STATE(1687), + [sym__module] = STATE(453), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_identifier] = ACTIONS(4022), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4020), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(966), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4024), + [anon_sym_SQUOTE] = ACTIONS(4026), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -213173,36 +200801,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1835] = { - [sym_nested_identifier] = STATE(1194), - [sym_string] = STATE(1215), - [sym_comment] = STATE(1835), - [sym__module] = STATE(1581), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), - [sym_identifier] = ACTIONS(4006), + [1688] = { + [sym_variable_declarator] = STATE(5443), + [sym_object_pattern] = STATE(4389), + [sym_array_pattern] = STATE(4389), + [sym__destructuring_pattern] = STATE(4574), + [sym_comment] = STATE(1688), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_identifier] = ACTIONS(4028), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4030), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(966), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(4032), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4008), - [anon_sym_SQUOTE] = ACTIONS(4010), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -213245,36 +200873,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1836] = { - [sym_nested_identifier] = STATE(407), - [sym_string] = STATE(406), - [sym_comment] = STATE(1836), - [sym__module] = STATE(456), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), + [1689] = { + [sym_nested_identifier] = STATE(962), + [sym_string] = STATE(1161), + [sym_comment] = STATE(1689), + [sym__module] = STATE(1517), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), [sym_identifier] = ACTIONS(4012), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(1043), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(968), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(4014), [anon_sym_SQUOTE] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -213317,42 +200945,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1837] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1837), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5557), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1690] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1690), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4791), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(4036), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [sym_jsx_identifier] = ACTIONS(4038), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(207), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(207), + [anon_sym_number] = ACTIONS(207), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(203), + [anon_sym_unique] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [1691] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1691), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5590), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -213360,7 +201060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(4032), + [anon_sym_RBRACK] = ACTIONS(4040), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -213395,30 +201095,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1838] = { - [sym_nested_identifier] = STATE(1194), - [sym_string] = STATE(1215), - [sym_comment] = STATE(1838), - [sym__module] = STATE(1581), - [aux_sym_object_repeat1] = STATE(6165), - [aux_sym_object_pattern_repeat1] = STATE(6171), - [sym_identifier] = ACTIONS(4006), + [1692] = { + [sym_variable_declarator] = STATE(5443), + [sym_object_pattern] = STATE(4389), + [sym_array_pattern] = STATE(4389), + [sym__destructuring_pattern] = STATE(4574), + [sym_comment] = STATE(1692), + [aux_sym_object_repeat1] = STATE(5868), + [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_identifier] = ACTIONS(4028), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4030), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1041), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(4032), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4008), - [anon_sym_SQUOTE] = ACTIONS(4010), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -213461,36 +201161,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1839] = { - [sym_variable_declarator] = STATE(5725), - [sym_object_pattern] = STATE(4667), - [sym_array_pattern] = STATE(4667), - [sym__destructuring_pattern] = STATE(4584), - [sym_comment] = STATE(1839), - [aux_sym_object_repeat1] = STATE(6165), - [aux_sym_object_pattern_repeat1] = STATE(6171), - [sym_identifier] = ACTIONS(4018), + [1693] = { + [sym_nested_identifier] = STATE(372), + [sym_string] = STATE(373), + [sym_comment] = STATE(1693), + [sym__module] = STATE(453), + [aux_sym_object_repeat1] = STATE(5868), + [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_identifier] = ACTIONS(4022), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4020), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_RBRACE] = ACTIONS(1041), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_COLON] = ACTIONS(968), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4024), + [anon_sym_SQUOTE] = ACTIONS(4026), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -213533,42 +201233,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1840] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1840), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5586), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1694] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1694), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3683), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -213576,7 +201276,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(4034), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -213611,36 +201310,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1841] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1841), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5748), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1695] = { + [sym_nested_identifier] = STATE(7161), + [sym_string] = STATE(4286), + [sym_comment] = STATE(1695), + [sym_formal_parameters] = STATE(7313), + [sym_nested_type_identifier] = STATE(3987), + [sym__type] = STATE(4293), + [sym_constructor_type] = STATE(4279), + [sym__primary_type] = STATE(4277), + [sym_template_literal_type] = STATE(4298), + [sym_infer_type] = STATE(4279), + [sym_conditional_type] = STATE(4298), + [sym_generic_type] = STATE(4298), + [sym_type_query] = STATE(4298), + [sym_index_type_query] = STATE(4298), + [sym_lookup_type] = STATE(4298), + [sym_literal_type] = STATE(4298), + [sym__number] = STATE(4253), + [sym_existential_type] = STATE(4298), + [sym_flow_maybe_type] = STATE(4298), + [sym_parenthesized_type] = STATE(4298), + [sym_predefined_type] = STATE(4298), + [sym_object_type] = STATE(4298), + [sym_type_parameters] = STATE(6810), + [sym_array_type] = STATE(4298), + [sym_tuple_type] = STATE(4298), + [sym_readonly_type] = STATE(4279), + [sym_union_type] = STATE(4298), + [sym_intersection_type] = STATE(4298), + [sym_function_type] = STATE(4279), + [sym_identifier] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3674), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3678), + [sym_this] = ACTIONS(4044), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [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_abstract] = ACTIONS(3686), + [anon_sym_infer] = ACTIONS(3690), + [anon_sym_keyof] = ACTIONS(3692), + [anon_sym_unique] = ACTIONS(3694), + [anon_sym_unknown] = ACTIONS(3674), + [anon_sym_never] = ACTIONS(3674), + [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [sym_html_comment] = ACTIONS(5), + }, + [1696] = { + [sym_nested_identifier] = STATE(7161), + [sym_string] = STATE(4286), + [sym_comment] = STATE(1696), + [sym_formal_parameters] = STATE(7313), + [sym_nested_type_identifier] = STATE(3987), + [sym__type] = STATE(4099), + [sym_constructor_type] = STATE(4279), + [sym__primary_type] = STATE(4277), + [sym_template_literal_type] = STATE(4298), + [sym_infer_type] = STATE(4279), + [sym_conditional_type] = STATE(4298), + [sym_generic_type] = STATE(4298), + [sym_type_query] = STATE(4298), + [sym_index_type_query] = STATE(4298), + [sym_lookup_type] = STATE(4298), + [sym_literal_type] = STATE(4298), + [sym__number] = STATE(4253), + [sym_existential_type] = STATE(4298), + [sym_flow_maybe_type] = STATE(4298), + [sym_parenthesized_type] = STATE(4298), + [sym_predefined_type] = STATE(4298), + [sym_object_type] = STATE(4298), + [sym_type_parameters] = STATE(6810), + [sym_array_type] = STATE(4298), + [sym_tuple_type] = STATE(4298), + [sym_readonly_type] = STATE(4279), + [sym_union_type] = STATE(4298), + [sym_intersection_type] = STATE(4298), + [sym_function_type] = STATE(4279), + [sym_identifier] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3674), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3678), + [sym_this] = ACTIONS(4044), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [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_abstract] = ACTIONS(3686), + [anon_sym_infer] = ACTIONS(3690), + [anon_sym_keyof] = ACTIONS(3692), + [anon_sym_unique] = ACTIONS(3694), + [anon_sym_unknown] = ACTIONS(3674), + [anon_sym_never] = ACTIONS(3674), + [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [sym_html_comment] = ACTIONS(5), + }, + [1697] = { + [sym_nested_identifier] = STATE(7161), + [sym_string] = STATE(4286), + [sym_comment] = STATE(1697), + [sym_formal_parameters] = STATE(7313), + [sym_nested_type_identifier] = STATE(3987), + [sym__type] = STATE(4097), + [sym_constructor_type] = STATE(4279), + [sym__primary_type] = STATE(4277), + [sym_template_literal_type] = STATE(4298), + [sym_infer_type] = STATE(4279), + [sym_conditional_type] = STATE(4298), + [sym_generic_type] = STATE(4298), + [sym_type_query] = STATE(4298), + [sym_index_type_query] = STATE(4298), + [sym_lookup_type] = STATE(4298), + [sym_literal_type] = STATE(4298), + [sym__number] = STATE(4253), + [sym_existential_type] = STATE(4298), + [sym_flow_maybe_type] = STATE(4298), + [sym_parenthesized_type] = STATE(4298), + [sym_predefined_type] = STATE(4298), + [sym_object_type] = STATE(4298), + [sym_type_parameters] = STATE(6810), + [sym_array_type] = STATE(4298), + [sym_tuple_type] = STATE(4298), + [sym_readonly_type] = STATE(4279), + [sym_union_type] = STATE(4298), + [sym_intersection_type] = STATE(4298), + [sym_function_type] = STATE(4279), + [sym_identifier] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3674), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3678), + [sym_this] = ACTIONS(4044), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [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_abstract] = ACTIONS(3686), + [anon_sym_infer] = ACTIONS(3690), + [anon_sym_keyof] = ACTIONS(3692), + [anon_sym_unique] = ACTIONS(3694), + [anon_sym_unknown] = ACTIONS(3674), + [anon_sym_never] = ACTIONS(3674), + [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [sym_html_comment] = ACTIONS(5), + }, + [1698] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1698), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5580), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -213648,7 +201560,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(130), [anon_sym_LPAREN] = ACTIONS(1890), [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_RBRACK] = ACTIONS(4036), [anon_sym_DQUOTE] = ACTIONS(1894), [anon_sym_SQUOTE] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1898), @@ -213683,36 +201594,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1842] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1842), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5632), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1699] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1699), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(6165), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3692), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -213754,107 +201665,817 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1843] = { - [sym_nested_identifier] = STATE(7311), - [sym_string] = STATE(2943), - [sym_comment] = STATE(1843), - [sym_formal_parameters] = STATE(7434), - [sym_nested_type_identifier] = STATE(2799), - [sym__type] = STATE(2895), - [sym_constructor_type] = STATE(2950), - [sym__primary_type] = STATE(2951), - [sym_template_literal_type] = STATE(2939), - [sym_infer_type] = STATE(2950), - [sym_conditional_type] = STATE(2939), - [sym_generic_type] = STATE(2939), - [sym_type_query] = STATE(2939), - [sym_index_type_query] = STATE(2939), - [sym_lookup_type] = STATE(2939), - [sym_literal_type] = STATE(2939), - [sym__number] = STATE(2952), - [sym_existential_type] = STATE(2939), - [sym_flow_maybe_type] = STATE(2939), - [sym_parenthesized_type] = STATE(2939), - [sym_predefined_type] = STATE(2939), - [sym_object_type] = STATE(2939), - [sym_type_parameters] = STATE(6909), - [sym_array_type] = STATE(2939), - [sym_tuple_type] = STATE(2939), - [sym_readonly_type] = STATE(2950), - [sym_union_type] = STATE(2939), - [sym_intersection_type] = STATE(2939), - [sym_function_type] = STATE(2950), - [sym_identifier] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(3786), - [anon_sym_typeof] = ACTIONS(3788), - [anon_sym_const] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(3794), + [1700] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1700), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(6165), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3699), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(209), + [anon_sym_typeof] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(130), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1892), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(163), + [anon_sym_PIPE] = ACTIONS(165), + [anon_sym_PLUS] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1900), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(207), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1904), + [sym_number] = ACTIONS(1906), + [sym_this] = ACTIONS(1908), + [sym_true] = ACTIONS(1906), + [sym_false] = ACTIONS(1906), + [sym_null] = ACTIONS(1906), + [sym_undefined] = ACTIONS(1906), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(195), + [anon_sym_any] = ACTIONS(207), + [anon_sym_number] = ACTIONS(207), + [anon_sym_boolean] = ACTIONS(207), + [anon_sym_string] = ACTIONS(207), + [anon_sym_symbol] = ACTIONS(207), + [anon_sym_object] = ACTIONS(207), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(203), + [anon_sym_unique] = ACTIONS(205), + [anon_sym_unknown] = ACTIONS(207), + [anon_sym_never] = ACTIONS(207), + [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [sym_html_comment] = ACTIONS(5), + }, + [1701] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1701), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(5383), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1702] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1702), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(5314), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1703] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1703), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(5227), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1704] = { + [sym_nested_identifier] = STATE(7046), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1704), + [sym_formal_parameters] = STATE(7001), + [sym_nested_type_identifier] = STATE(2222), + [sym__type] = STATE(2338), + [sym_constructor_type] = STATE(2373), + [sym__primary_type] = STATE(2228), + [sym_template_literal_type] = STATE(2259), + [sym_infer_type] = STATE(2373), + [sym_conditional_type] = STATE(2259), + [sym_generic_type] = STATE(2259), + [sym_type_query] = STATE(2259), + [sym_index_type_query] = STATE(2259), + [sym_lookup_type] = STATE(2259), + [sym_literal_type] = STATE(2259), + [sym__number] = STATE(2380), + [sym_existential_type] = STATE(2259), + [sym_flow_maybe_type] = STATE(2259), + [sym_parenthesized_type] = STATE(2259), + [sym_predefined_type] = STATE(2259), + [sym_object_type] = STATE(2259), + [sym_type_parameters] = STATE(6884), + [sym_array_type] = STATE(2259), + [sym_tuple_type] = STATE(2259), + [sym_readonly_type] = STATE(2373), + [sym_union_type] = STATE(2259), + [sym_intersection_type] = STATE(2259), + [sym_function_type] = STATE(2373), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(4048), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4050), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1705] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1705), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(5353), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1706] = { + [sym_nested_identifier] = STATE(7161), + [sym_string] = STATE(4286), + [sym_comment] = STATE(1706), + [sym_formal_parameters] = STATE(7313), + [sym_nested_type_identifier] = STATE(3987), + [sym__type] = STATE(4267), + [sym_constructor_type] = STATE(4279), + [sym__primary_type] = STATE(4277), + [sym_template_literal_type] = STATE(4298), + [sym_infer_type] = STATE(4279), + [sym_conditional_type] = STATE(4298), + [sym_generic_type] = STATE(4298), + [sym_type_query] = STATE(4298), + [sym_index_type_query] = STATE(4298), + [sym_lookup_type] = STATE(4298), + [sym_literal_type] = STATE(4298), + [sym__number] = STATE(4253), + [sym_existential_type] = STATE(4298), + [sym_flow_maybe_type] = STATE(4298), + [sym_parenthesized_type] = STATE(4298), + [sym_predefined_type] = STATE(4298), + [sym_object_type] = STATE(4298), + [sym_type_parameters] = STATE(6810), + [sym_array_type] = STATE(4298), + [sym_tuple_type] = STATE(4298), + [sym_readonly_type] = STATE(4279), + [sym_union_type] = STATE(4298), + [sym_intersection_type] = STATE(4298), + [sym_function_type] = STATE(4279), + [sym_identifier] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3674), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3678), + [sym_this] = ACTIONS(4044), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [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_abstract] = ACTIONS(3686), + [anon_sym_infer] = ACTIONS(3690), + [anon_sym_keyof] = ACTIONS(3692), + [anon_sym_unique] = ACTIONS(3694), + [anon_sym_unknown] = ACTIONS(3674), + [anon_sym_never] = ACTIONS(3674), + [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [sym_html_comment] = ACTIONS(5), + }, + [1707] = { + [sym_nested_identifier] = STATE(7161), + [sym_string] = STATE(4286), + [sym_comment] = STATE(1707), + [sym_formal_parameters] = STATE(7313), + [sym_nested_type_identifier] = STATE(3987), + [sym__type] = STATE(4271), + [sym_constructor_type] = STATE(4279), + [sym__primary_type] = STATE(4277), + [sym_template_literal_type] = STATE(4298), + [sym_infer_type] = STATE(4279), + [sym_conditional_type] = STATE(4298), + [sym_generic_type] = STATE(4298), + [sym_type_query] = STATE(4298), + [sym_index_type_query] = STATE(4298), + [sym_lookup_type] = STATE(4298), + [sym_literal_type] = STATE(4298), + [sym__number] = STATE(4253), + [sym_existential_type] = STATE(4298), + [sym_flow_maybe_type] = STATE(4298), + [sym_parenthesized_type] = STATE(4298), + [sym_predefined_type] = STATE(4298), + [sym_object_type] = STATE(4298), + [sym_type_parameters] = STATE(6810), + [sym_array_type] = STATE(4298), + [sym_tuple_type] = STATE(4298), + [sym_readonly_type] = STATE(4279), + [sym_union_type] = STATE(4298), + [sym_intersection_type] = STATE(4298), + [sym_function_type] = STATE(4279), + [sym_identifier] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3674), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3678), + [sym_this] = ACTIONS(4044), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [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_abstract] = ACTIONS(3686), + [anon_sym_infer] = ACTIONS(3690), + [anon_sym_keyof] = ACTIONS(3692), + [anon_sym_unique] = ACTIONS(3694), + [anon_sym_unknown] = ACTIONS(3674), + [anon_sym_never] = ACTIONS(3674), + [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [sym_html_comment] = ACTIONS(5), + }, + [1708] = { + [sym_nested_identifier] = STATE(7046), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1708), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(2222), + [sym__type] = STATE(6000), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(2296), + [sym_template_literal_type] = STATE(2259), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(2259), + [sym_generic_type] = STATE(2259), + [sym_type_query] = STATE(2259), + [sym_index_type_query] = STATE(2259), + [sym_lookup_type] = STATE(2259), + [sym_literal_type] = STATE(2259), + [sym__number] = STATE(2380), + [sym_existential_type] = STATE(2259), + [sym_flow_maybe_type] = STATE(2259), + [sym_parenthesized_type] = STATE(2259), + [sym_predefined_type] = STATE(2259), + [sym_object_type] = STATE(2259), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(2259), + [sym_tuple_type] = STATE(2259), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(2259), + [sym_intersection_type] = STATE(2259), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4050), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1709] = { + [sym_nested_identifier] = STATE(7170), + [sym_string] = STATE(2890), + [sym_comment] = STATE(1709), + [sym_formal_parameters] = STATE(7340), + [sym_nested_type_identifier] = STATE(2590), + [sym__type] = STATE(2829), + [sym_constructor_type] = STATE(2897), + [sym__primary_type] = STATE(2898), + [sym_template_literal_type] = STATE(2886), + [sym_infer_type] = STATE(2897), + [sym_conditional_type] = STATE(2886), + [sym_generic_type] = STATE(2886), + [sym_type_query] = STATE(2886), + [sym_index_type_query] = STATE(2886), + [sym_lookup_type] = STATE(2886), + [sym_literal_type] = STATE(2886), + [sym__number] = STATE(2899), + [sym_existential_type] = STATE(2886), + [sym_flow_maybe_type] = STATE(2886), + [sym_parenthesized_type] = STATE(2886), + [sym_predefined_type] = STATE(2886), + [sym_object_type] = STATE(2886), + [sym_type_parameters] = STATE(6726), + [sym_array_type] = STATE(2886), + [sym_tuple_type] = STATE(2886), + [sym_readonly_type] = STATE(2897), + [sym_union_type] = STATE(2886), + [sym_intersection_type] = STATE(2886), + [sym_function_type] = STATE(2897), + [sym_identifier] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3800), - [anon_sym_PLUS] = ACTIONS(3802), - [anon_sym_DASH] = ACTIONS(3802), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3804), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3806), - [sym_number] = ACTIONS(3808), - [sym_this] = ACTIONS(4040), - [sym_true] = ACTIONS(3808), - [sym_false] = ACTIONS(3808), - [sym_null] = ACTIONS(3808), - [sym_undefined] = ACTIONS(3808), - [anon_sym_readonly] = ACTIONS(3812), - [anon_sym_QMARK] = ACTIONS(3814), - [anon_sym_any] = ACTIONS(3804), - [anon_sym_number] = ACTIONS(3804), - [anon_sym_boolean] = ACTIONS(3804), - [anon_sym_string] = ACTIONS(3804), - [anon_sym_symbol] = ACTIONS(3804), - [anon_sym_object] = ACTIONS(3804), - [anon_sym_abstract] = ACTIONS(3816), - [anon_sym_infer] = ACTIONS(3820), - [anon_sym_keyof] = ACTIONS(3822), - [anon_sym_unique] = ACTIONS(3824), - [anon_sym_unknown] = ACTIONS(3804), - [anon_sym_never] = ACTIONS(3804), - [anon_sym_LBRACE_PIPE] = ACTIONS(3786), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4054), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), [sym_html_comment] = ACTIONS(5), }, - [1844] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1844), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3925), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1710] = { + [sym_nested_identifier] = STATE(7170), + [sym_string] = STATE(2890), + [sym_comment] = STATE(1710), + [sym_formal_parameters] = STATE(7340), + [sym_nested_type_identifier] = STATE(2590), + [sym__type] = STATE(2720), + [sym_constructor_type] = STATE(2897), + [sym__primary_type] = STATE(2898), + [sym_template_literal_type] = STATE(2886), + [sym_infer_type] = STATE(2897), + [sym_conditional_type] = STATE(2886), + [sym_generic_type] = STATE(2886), + [sym_type_query] = STATE(2886), + [sym_index_type_query] = STATE(2886), + [sym_lookup_type] = STATE(2886), + [sym_literal_type] = STATE(2886), + [sym__number] = STATE(2899), + [sym_existential_type] = STATE(2886), + [sym_flow_maybe_type] = STATE(2886), + [sym_parenthesized_type] = STATE(2886), + [sym_predefined_type] = STATE(2886), + [sym_object_type] = STATE(2886), + [sym_type_parameters] = STATE(6726), + [sym_array_type] = STATE(2886), + [sym_tuple_type] = STATE(2886), + [sym_readonly_type] = STATE(2897), + [sym_union_type] = STATE(2886), + [sym_intersection_type] = STATE(2886), + [sym_function_type] = STATE(2897), + [sym_identifier] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4054), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_html_comment] = ACTIONS(5), + }, + [1711] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1711), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3701), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -213896,36 +202517,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1845] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1845), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5634), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1712] = { + [sym_nested_identifier] = STATE(7170), + [sym_string] = STATE(2890), + [sym_comment] = STATE(1712), + [sym_formal_parameters] = STATE(7340), + [sym_nested_type_identifier] = STATE(2590), + [sym__type] = STATE(2832), + [sym_constructor_type] = STATE(2897), + [sym__primary_type] = STATE(2898), + [sym_template_literal_type] = STATE(2886), + [sym_infer_type] = STATE(2897), + [sym_conditional_type] = STATE(2886), + [sym_generic_type] = STATE(2886), + [sym_type_query] = STATE(2886), + [sym_index_type_query] = STATE(2886), + [sym_lookup_type] = STATE(2886), + [sym_literal_type] = STATE(2886), + [sym__number] = STATE(2899), + [sym_existential_type] = STATE(2886), + [sym_flow_maybe_type] = STATE(2886), + [sym_parenthesized_type] = STATE(2886), + [sym_predefined_type] = STATE(2886), + [sym_object_type] = STATE(2886), + [sym_type_parameters] = STATE(6726), + [sym_array_type] = STATE(2886), + [sym_tuple_type] = STATE(2886), + [sym_readonly_type] = STATE(2897), + [sym_union_type] = STATE(2886), + [sym_intersection_type] = STATE(2886), + [sym_function_type] = STATE(2897), + [sym_identifier] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4054), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_html_comment] = ACTIONS(5), + }, + [1713] = { + [sym_nested_identifier] = STATE(7046), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1713), + [sym_formal_parameters] = STATE(7001), + [sym_nested_type_identifier] = STATE(2222), + [sym__type] = STATE(2363), + [sym_constructor_type] = STATE(2373), + [sym__primary_type] = STATE(2228), + [sym_template_literal_type] = STATE(2259), + [sym_infer_type] = STATE(2373), + [sym_conditional_type] = STATE(2259), + [sym_generic_type] = STATE(2259), + [sym_type_query] = STATE(2259), + [sym_index_type_query] = STATE(2259), + [sym_lookup_type] = STATE(2259), + [sym_literal_type] = STATE(2259), + [sym__number] = STATE(2380), + [sym_existential_type] = STATE(2259), + [sym_flow_maybe_type] = STATE(2259), + [sym_parenthesized_type] = STATE(2259), + [sym_predefined_type] = STATE(2259), + [sym_object_type] = STATE(2259), + [sym_type_parameters] = STATE(6884), + [sym_array_type] = STATE(2259), + [sym_tuple_type] = STATE(2259), + [sym_readonly_type] = STATE(2373), + [sym_union_type] = STATE(2259), + [sym_intersection_type] = STATE(2259), + [sym_function_type] = STATE(2373), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4050), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1714] = { + [sym_nested_identifier] = STATE(7170), + [sym_string] = STATE(2890), + [sym_comment] = STATE(1714), + [sym_formal_parameters] = STATE(7340), + [sym_nested_type_identifier] = STATE(2590), + [sym__type] = STATE(2880), + [sym_constructor_type] = STATE(2897), + [sym__primary_type] = STATE(2898), + [sym_template_literal_type] = STATE(2886), + [sym_infer_type] = STATE(2897), + [sym_conditional_type] = STATE(2886), + [sym_generic_type] = STATE(2886), + [sym_type_query] = STATE(2886), + [sym_index_type_query] = STATE(2886), + [sym_lookup_type] = STATE(2886), + [sym_literal_type] = STATE(2886), + [sym__number] = STATE(2899), + [sym_existential_type] = STATE(2886), + [sym_flow_maybe_type] = STATE(2886), + [sym_parenthesized_type] = STATE(2886), + [sym_predefined_type] = STATE(2886), + [sym_object_type] = STATE(2886), + [sym_type_parameters] = STATE(6726), + [sym_array_type] = STATE(2886), + [sym_tuple_type] = STATE(2886), + [sym_readonly_type] = STATE(2897), + [sym_union_type] = STATE(2886), + [sym_intersection_type] = STATE(2886), + [sym_function_type] = STATE(2897), + [sym_identifier] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4054), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_html_comment] = ACTIONS(5), + }, + [1715] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1715), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5397), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -213967,36 +202801,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1846] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1846), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5593), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1716] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1716), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3732), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -214038,604 +202872,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1847] = { - [sym_nested_identifier] = STATE(7344), - [sym_string] = STATE(4431), - [sym_comment] = STATE(1847), - [sym_formal_parameters] = STATE(7555), - [sym_nested_type_identifier] = STATE(4170), - [sym__type] = STATE(4219), - [sym_constructor_type] = STATE(4427), - [sym__primary_type] = STATE(4425), - [sym_template_literal_type] = STATE(4437), - [sym_infer_type] = STATE(4427), - [sym_conditional_type] = STATE(4437), - [sym_generic_type] = STATE(4437), - [sym_type_query] = STATE(4437), - [sym_index_type_query] = STATE(4437), - [sym_lookup_type] = STATE(4437), - [sym_literal_type] = STATE(4437), - [sym__number] = STATE(4424), - [sym_existential_type] = STATE(4437), - [sym_flow_maybe_type] = STATE(4437), - [sym_parenthesized_type] = STATE(4437), - [sym_predefined_type] = STATE(4437), - [sym_object_type] = STATE(4437), - [sym_type_parameters] = STATE(6962), - [sym_array_type] = STATE(4437), - [sym_tuple_type] = STATE(4437), - [sym_readonly_type] = STATE(4427), - [sym_union_type] = STATE(4437), - [sym_intersection_type] = STATE(4437), - [sym_function_type] = STATE(4427), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3676), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3680), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3686), - [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_abstract] = ACTIONS(3688), - [anon_sym_infer] = ACTIONS(3692), - [anon_sym_keyof] = ACTIONS(3694), - [anon_sym_unique] = ACTIONS(3696), - [anon_sym_unknown] = ACTIONS(3676), - [anon_sym_never] = ACTIONS(3676), - [anon_sym_LBRACE_PIPE] = ACTIONS(3654), - [sym_html_comment] = ACTIONS(5), - }, - [1848] = { - [sym_nested_identifier] = STATE(7229), - [sym_string] = STATE(2505), - [sym_comment] = STATE(1848), - [sym_formal_parameters] = STATE(7316), - [sym_nested_type_identifier] = STATE(2360), - [sym__type] = STATE(2384), - [sym_constructor_type] = STATE(2501), - [sym__primary_type] = STATE(2499), - [sym_template_literal_type] = STATE(2507), - [sym_infer_type] = STATE(2501), - [sym_conditional_type] = STATE(2507), - [sym_generic_type] = STATE(2507), - [sym_type_query] = STATE(2507), - [sym_index_type_query] = STATE(2507), - [sym_lookup_type] = STATE(2507), - [sym_literal_type] = STATE(2507), - [sym__number] = STATE(2498), - [sym_existential_type] = STATE(2507), - [sym_flow_maybe_type] = STATE(2507), - [sym_parenthesized_type] = STATE(2507), - [sym_predefined_type] = STATE(2507), - [sym_object_type] = STATE(2507), - [sym_type_parameters] = STATE(7078), - [sym_array_type] = STATE(2507), - [sym_tuple_type] = STATE(2507), - [sym_readonly_type] = STATE(2501), - [sym_union_type] = STATE(2507), - [sym_intersection_type] = STATE(2507), - [sym_function_type] = STATE(2501), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3830), - [anon_sym_typeof] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3838), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3840), - [anon_sym_AMP] = ACTIONS(3842), - [anon_sym_PIPE] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3846), - [anon_sym_DASH] = ACTIONS(3846), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3848), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3850), - [sym_number] = ACTIONS(3852), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3852), - [sym_false] = ACTIONS(3852), - [sym_null] = ACTIONS(3852), - [sym_undefined] = ACTIONS(3852), - [anon_sym_readonly] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_number] = ACTIONS(3848), - [anon_sym_boolean] = ACTIONS(3848), - [anon_sym_string] = ACTIONS(3848), - [anon_sym_symbol] = ACTIONS(3848), - [anon_sym_object] = ACTIONS(3848), - [anon_sym_abstract] = ACTIONS(3860), - [anon_sym_infer] = ACTIONS(3864), - [anon_sym_keyof] = ACTIONS(3866), - [anon_sym_unique] = ACTIONS(3868), - [anon_sym_unknown] = ACTIONS(3848), - [anon_sym_never] = ACTIONS(3848), - [anon_sym_LBRACE_PIPE] = ACTIONS(3830), - [sym_html_comment] = ACTIONS(5), - }, - [1849] = { - [sym_nested_identifier] = STATE(7344), - [sym_string] = STATE(4431), - [sym_comment] = STATE(1849), - [sym_formal_parameters] = STATE(7555), - [sym_nested_type_identifier] = STATE(4170), - [sym__type] = STATE(4220), - [sym_constructor_type] = STATE(4427), - [sym__primary_type] = STATE(4425), - [sym_template_literal_type] = STATE(4437), - [sym_infer_type] = STATE(4427), - [sym_conditional_type] = STATE(4437), - [sym_generic_type] = STATE(4437), - [sym_type_query] = STATE(4437), - [sym_index_type_query] = STATE(4437), - [sym_lookup_type] = STATE(4437), - [sym_literal_type] = STATE(4437), - [sym__number] = STATE(4424), - [sym_existential_type] = STATE(4437), - [sym_flow_maybe_type] = STATE(4437), - [sym_parenthesized_type] = STATE(4437), - [sym_predefined_type] = STATE(4437), - [sym_object_type] = STATE(4437), - [sym_type_parameters] = STATE(6962), - [sym_array_type] = STATE(4437), - [sym_tuple_type] = STATE(4437), - [sym_readonly_type] = STATE(4427), - [sym_union_type] = STATE(4437), - [sym_intersection_type] = STATE(4437), - [sym_function_type] = STATE(4427), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3676), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3680), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3686), - [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_abstract] = ACTIONS(3688), - [anon_sym_infer] = ACTIONS(3692), - [anon_sym_keyof] = ACTIONS(3694), - [anon_sym_unique] = ACTIONS(3696), - [anon_sym_unknown] = ACTIONS(3676), - [anon_sym_never] = ACTIONS(3676), - [anon_sym_LBRACE_PIPE] = ACTIONS(3654), - [sym_html_comment] = ACTIONS(5), - }, - [1850] = { - [sym_nested_identifier] = STATE(7229), - [sym_string] = STATE(2505), - [sym_comment] = STATE(1850), - [sym_formal_parameters] = STATE(7316), - [sym_nested_type_identifier] = STATE(2360), - [sym__type] = STATE(2490), - [sym_constructor_type] = STATE(2501), - [sym__primary_type] = STATE(2499), - [sym_template_literal_type] = STATE(2507), - [sym_infer_type] = STATE(2501), - [sym_conditional_type] = STATE(2507), - [sym_generic_type] = STATE(2507), - [sym_type_query] = STATE(2507), - [sym_index_type_query] = STATE(2507), - [sym_lookup_type] = STATE(2507), - [sym_literal_type] = STATE(2507), - [sym__number] = STATE(2498), - [sym_existential_type] = STATE(2507), - [sym_flow_maybe_type] = STATE(2507), - [sym_parenthesized_type] = STATE(2507), - [sym_predefined_type] = STATE(2507), - [sym_object_type] = STATE(2507), - [sym_type_parameters] = STATE(7078), - [sym_array_type] = STATE(2507), - [sym_tuple_type] = STATE(2507), - [sym_readonly_type] = STATE(2501), - [sym_union_type] = STATE(2507), - [sym_intersection_type] = STATE(2507), - [sym_function_type] = STATE(2501), + [1717] = { + [sym_nested_identifier] = STATE(7046), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1717), + [sym_formal_parameters] = STATE(7001), + [sym_nested_type_identifier] = STATE(2222), + [sym__type] = STATE(2365), + [sym_constructor_type] = STATE(2373), + [sym__primary_type] = STATE(2228), + [sym_template_literal_type] = STATE(2259), + [sym_infer_type] = STATE(2373), + [sym_conditional_type] = STATE(2259), + [sym_generic_type] = STATE(2259), + [sym_type_query] = STATE(2259), + [sym_index_type_query] = STATE(2259), + [sym_lookup_type] = STATE(2259), + [sym_literal_type] = STATE(2259), + [sym__number] = STATE(2380), + [sym_existential_type] = STATE(2259), + [sym_flow_maybe_type] = STATE(2259), + [sym_parenthesized_type] = STATE(2259), + [sym_predefined_type] = STATE(2259), + [sym_object_type] = STATE(2259), + [sym_type_parameters] = STATE(6884), + [sym_array_type] = STATE(2259), + [sym_tuple_type] = STATE(2259), + [sym_readonly_type] = STATE(2373), + [sym_union_type] = STATE(2259), + [sym_intersection_type] = STATE(2259), + [sym_function_type] = STATE(2373), [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3830), - [anon_sym_typeof] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(4050), - [anon_sym_LPAREN] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3840), - [anon_sym_AMP] = ACTIONS(3842), - [anon_sym_PIPE] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3846), - [anon_sym_DASH] = ACTIONS(3846), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3848), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3850), - [sym_number] = ACTIONS(3852), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3852), - [sym_false] = ACTIONS(3852), - [sym_null] = ACTIONS(3852), - [sym_undefined] = ACTIONS(3852), - [anon_sym_readonly] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_number] = ACTIONS(3848), - [anon_sym_boolean] = ACTIONS(3848), - [anon_sym_string] = ACTIONS(3848), - [anon_sym_symbol] = ACTIONS(3848), - [anon_sym_object] = ACTIONS(3848), - [anon_sym_abstract] = ACTIONS(3860), - [anon_sym_infer] = ACTIONS(3864), - [anon_sym_keyof] = ACTIONS(3866), - [anon_sym_unique] = ACTIONS(3868), - [anon_sym_unknown] = ACTIONS(3848), - [anon_sym_never] = ACTIONS(3848), - [anon_sym_LBRACE_PIPE] = ACTIONS(3830), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4050), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), [sym_html_comment] = ACTIONS(5), }, - [1851] = { - [sym_nested_identifier] = STATE(7229), - [sym_string] = STATE(2505), - [sym_comment] = STATE(1851), - [sym_formal_parameters] = STATE(7316), - [sym_nested_type_identifier] = STATE(2360), - [sym__type] = STATE(2383), - [sym_constructor_type] = STATE(2501), - [sym__primary_type] = STATE(2499), - [sym_template_literal_type] = STATE(2507), - [sym_infer_type] = STATE(2501), - [sym_conditional_type] = STATE(2507), - [sym_generic_type] = STATE(2507), - [sym_type_query] = STATE(2507), - [sym_index_type_query] = STATE(2507), - [sym_lookup_type] = STATE(2507), - [sym_literal_type] = STATE(2507), - [sym__number] = STATE(2498), - [sym_existential_type] = STATE(2507), - [sym_flow_maybe_type] = STATE(2507), - [sym_parenthesized_type] = STATE(2507), - [sym_predefined_type] = STATE(2507), - [sym_object_type] = STATE(2507), - [sym_type_parameters] = STATE(7078), - [sym_array_type] = STATE(2507), - [sym_tuple_type] = STATE(2507), - [sym_readonly_type] = STATE(2501), - [sym_union_type] = STATE(2507), - [sym_intersection_type] = STATE(2507), - [sym_function_type] = STATE(2501), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3830), - [anon_sym_typeof] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3838), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3840), - [anon_sym_AMP] = ACTIONS(3842), - [anon_sym_PIPE] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3846), - [anon_sym_DASH] = ACTIONS(3846), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3848), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3850), - [sym_number] = ACTIONS(3852), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3852), - [sym_false] = ACTIONS(3852), - [sym_null] = ACTIONS(3852), - [sym_undefined] = ACTIONS(3852), - [anon_sym_readonly] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_number] = ACTIONS(3848), - [anon_sym_boolean] = ACTIONS(3848), - [anon_sym_string] = ACTIONS(3848), - [anon_sym_symbol] = ACTIONS(3848), - [anon_sym_object] = ACTIONS(3848), - [anon_sym_abstract] = ACTIONS(3860), - [anon_sym_infer] = ACTIONS(3864), - [anon_sym_keyof] = ACTIONS(3866), - [anon_sym_unique] = ACTIONS(3868), - [anon_sym_unknown] = ACTIONS(3848), - [anon_sym_never] = ACTIONS(3848), - [anon_sym_LBRACE_PIPE] = ACTIONS(3830), - [sym_html_comment] = ACTIONS(5), - }, - [1852] = { - [sym_nested_identifier] = STATE(7229), - [sym_string] = STATE(2505), - [sym_comment] = STATE(1852), - [sym_formal_parameters] = STATE(7316), - [sym_nested_type_identifier] = STATE(2360), - [sym__type] = STATE(2475), - [sym_constructor_type] = STATE(2501), - [sym__primary_type] = STATE(2499), - [sym_template_literal_type] = STATE(2507), - [sym_infer_type] = STATE(2501), - [sym_conditional_type] = STATE(2507), - [sym_generic_type] = STATE(2507), - [sym_type_query] = STATE(2507), - [sym_index_type_query] = STATE(2507), - [sym_lookup_type] = STATE(2507), - [sym_literal_type] = STATE(2507), - [sym__number] = STATE(2498), - [sym_existential_type] = STATE(2507), - [sym_flow_maybe_type] = STATE(2507), - [sym_parenthesized_type] = STATE(2507), - [sym_predefined_type] = STATE(2507), - [sym_object_type] = STATE(2507), - [sym_type_parameters] = STATE(7078), - [sym_array_type] = STATE(2507), - [sym_tuple_type] = STATE(2507), - [sym_readonly_type] = STATE(2501), - [sym_union_type] = STATE(2507), - [sym_intersection_type] = STATE(2507), - [sym_function_type] = STATE(2501), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3830), - [anon_sym_typeof] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3838), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3840), - [anon_sym_AMP] = ACTIONS(3842), - [anon_sym_PIPE] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3846), - [anon_sym_DASH] = ACTIONS(3846), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3848), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3850), - [sym_number] = ACTIONS(3852), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3852), - [sym_false] = ACTIONS(3852), - [sym_null] = ACTIONS(3852), - [sym_undefined] = ACTIONS(3852), - [anon_sym_readonly] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_number] = ACTIONS(3848), - [anon_sym_boolean] = ACTIONS(3848), - [anon_sym_string] = ACTIONS(3848), - [anon_sym_symbol] = ACTIONS(3848), - [anon_sym_object] = ACTIONS(3848), - [anon_sym_abstract] = ACTIONS(3860), - [anon_sym_infer] = ACTIONS(3864), - [anon_sym_keyof] = ACTIONS(3866), - [anon_sym_unique] = ACTIONS(3868), - [anon_sym_unknown] = ACTIONS(3848), - [anon_sym_never] = ACTIONS(3848), - [anon_sym_LBRACE_PIPE] = ACTIONS(3830), - [sym_html_comment] = ACTIONS(5), - }, - [1853] = { - [sym_nested_identifier] = STATE(7229), - [sym_string] = STATE(2505), - [sym_comment] = STATE(1853), - [sym_formal_parameters] = STATE(7316), - [sym_nested_type_identifier] = STATE(2360), - [sym__type] = STATE(2511), - [sym_constructor_type] = STATE(2501), - [sym__primary_type] = STATE(2499), - [sym_template_literal_type] = STATE(2507), - [sym_infer_type] = STATE(2501), - [sym_conditional_type] = STATE(2507), - [sym_generic_type] = STATE(2507), - [sym_type_query] = STATE(2507), - [sym_index_type_query] = STATE(2507), - [sym_lookup_type] = STATE(2507), - [sym_literal_type] = STATE(2507), - [sym__number] = STATE(2498), - [sym_existential_type] = STATE(2507), - [sym_flow_maybe_type] = STATE(2507), - [sym_parenthesized_type] = STATE(2507), - [sym_predefined_type] = STATE(2507), - [sym_object_type] = STATE(2507), - [sym_type_parameters] = STATE(7078), - [sym_array_type] = STATE(2507), - [sym_tuple_type] = STATE(2507), - [sym_readonly_type] = STATE(2501), - [sym_union_type] = STATE(2507), - [sym_intersection_type] = STATE(2507), - [sym_function_type] = STATE(2501), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3830), - [anon_sym_typeof] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3838), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3840), - [anon_sym_AMP] = ACTIONS(3842), - [anon_sym_PIPE] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3846), - [anon_sym_DASH] = ACTIONS(3846), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3848), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3850), - [sym_number] = ACTIONS(3852), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3852), - [sym_false] = ACTIONS(3852), - [sym_null] = ACTIONS(3852), - [sym_undefined] = ACTIONS(3852), - [anon_sym_readonly] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_number] = ACTIONS(3848), - [anon_sym_boolean] = ACTIONS(3848), - [anon_sym_string] = ACTIONS(3848), - [anon_sym_symbol] = ACTIONS(3848), - [anon_sym_object] = ACTIONS(3848), - [anon_sym_abstract] = ACTIONS(3860), - [anon_sym_infer] = ACTIONS(3864), - [anon_sym_keyof] = ACTIONS(3866), - [anon_sym_unique] = ACTIONS(3868), - [anon_sym_unknown] = ACTIONS(3848), - [anon_sym_never] = ACTIONS(3848), - [anon_sym_LBRACE_PIPE] = ACTIONS(3830), - [sym_html_comment] = ACTIONS(5), - }, - [1854] = { - [sym_nested_identifier] = STATE(7229), - [sym_string] = STATE(2505), - [sym_comment] = STATE(1854), - [sym_formal_parameters] = STATE(7316), - [sym_nested_type_identifier] = STATE(2360), - [sym__type] = STATE(2474), - [sym_constructor_type] = STATE(2501), - [sym__primary_type] = STATE(2499), - [sym_template_literal_type] = STATE(2507), - [sym_infer_type] = STATE(2501), - [sym_conditional_type] = STATE(2507), - [sym_generic_type] = STATE(2507), - [sym_type_query] = STATE(2507), - [sym_index_type_query] = STATE(2507), - [sym_lookup_type] = STATE(2507), - [sym_literal_type] = STATE(2507), - [sym__number] = STATE(2498), - [sym_existential_type] = STATE(2507), - [sym_flow_maybe_type] = STATE(2507), - [sym_parenthesized_type] = STATE(2507), - [sym_predefined_type] = STATE(2507), - [sym_object_type] = STATE(2507), - [sym_type_parameters] = STATE(7078), - [sym_array_type] = STATE(2507), - [sym_tuple_type] = STATE(2507), - [sym_readonly_type] = STATE(2501), - [sym_union_type] = STATE(2507), - [sym_intersection_type] = STATE(2507), - [sym_function_type] = STATE(2501), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3830), - [anon_sym_typeof] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3838), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3840), - [anon_sym_AMP] = ACTIONS(3842), - [anon_sym_PIPE] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3846), - [anon_sym_DASH] = ACTIONS(3846), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3848), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3850), - [sym_number] = ACTIONS(3852), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3852), - [sym_false] = ACTIONS(3852), - [sym_null] = ACTIONS(3852), - [sym_undefined] = ACTIONS(3852), - [anon_sym_readonly] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_number] = ACTIONS(3848), - [anon_sym_boolean] = ACTIONS(3848), - [anon_sym_string] = ACTIONS(3848), - [anon_sym_symbol] = ACTIONS(3848), - [anon_sym_object] = ACTIONS(3848), - [anon_sym_abstract] = ACTIONS(3860), - [anon_sym_infer] = ACTIONS(3864), - [anon_sym_keyof] = ACTIONS(3866), - [anon_sym_unique] = ACTIONS(3868), - [anon_sym_unknown] = ACTIONS(3848), - [anon_sym_never] = ACTIONS(3848), - [anon_sym_LBRACE_PIPE] = ACTIONS(3830), - [sym_html_comment] = ACTIONS(5), - }, - [1855] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1855), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3902), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1718] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1718), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3705), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -214677,36 +203014,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1856] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1856), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(6224), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(5157), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(5720), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1719] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1719), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(5334), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1720] = { + [sym_nested_identifier] = STATE(7161), + [sym_string] = STATE(4286), + [sym_comment] = STATE(1720), + [sym_formal_parameters] = STATE(7313), + [sym_nested_type_identifier] = STATE(3987), + [sym__type] = STATE(4069), + [sym_constructor_type] = STATE(4279), + [sym__primary_type] = STATE(4277), + [sym_template_literal_type] = STATE(4298), + [sym_infer_type] = STATE(4279), + [sym_conditional_type] = STATE(4298), + [sym_generic_type] = STATE(4298), + [sym_type_query] = STATE(4298), + [sym_index_type_query] = STATE(4298), + [sym_lookup_type] = STATE(4298), + [sym_literal_type] = STATE(4298), + [sym__number] = STATE(4253), + [sym_existential_type] = STATE(4298), + [sym_flow_maybe_type] = STATE(4298), + [sym_parenthesized_type] = STATE(4298), + [sym_predefined_type] = STATE(4298), + [sym_object_type] = STATE(4298), + [sym_type_parameters] = STATE(6810), + [sym_array_type] = STATE(4298), + [sym_tuple_type] = STATE(4298), + [sym_readonly_type] = STATE(4279), + [sym_union_type] = STATE(4298), + [sym_intersection_type] = STATE(4298), + [sym_function_type] = STATE(4279), + [sym_identifier] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3674), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3678), + [sym_this] = ACTIONS(4044), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [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_abstract] = ACTIONS(3686), + [anon_sym_infer] = ACTIONS(3690), + [anon_sym_keyof] = ACTIONS(3692), + [anon_sym_unique] = ACTIONS(3694), + [anon_sym_unknown] = ACTIONS(3674), + [anon_sym_never] = ACTIONS(3674), + [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [sym_html_comment] = ACTIONS(5), + }, + [1721] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1721), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3734), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -214748,36 +203227,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1857] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1857), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(6224), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3901), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1722] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1722), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3785), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -214819,249 +203298,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1858] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1858), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(4134), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), + [1723] = { + [sym_nested_identifier] = STATE(7046), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1723), + [sym_formal_parameters] = STATE(7001), + [sym_nested_type_identifier] = STATE(2222), + [sym__type] = STATE(2251), + [sym_constructor_type] = STATE(2373), + [sym__primary_type] = STATE(2228), + [sym_template_literal_type] = STATE(2259), + [sym_infer_type] = STATE(2373), + [sym_conditional_type] = STATE(2259), + [sym_generic_type] = STATE(2259), + [sym_type_query] = STATE(2259), + [sym_index_type_query] = STATE(2259), + [sym_lookup_type] = STATE(2259), + [sym_literal_type] = STATE(2259), + [sym__number] = STATE(2380), + [sym_existential_type] = STATE(2259), + [sym_flow_maybe_type] = STATE(2259), + [sym_parenthesized_type] = STATE(2259), + [sym_predefined_type] = STATE(2259), + [sym_object_type] = STATE(2259), + [sym_type_parameters] = STATE(6884), + [sym_array_type] = STATE(2259), + [sym_tuple_type] = STATE(2259), + [sym_readonly_type] = STATE(2373), + [sym_union_type] = STATE(2259), + [sym_intersection_type] = STATE(2259), + [sym_function_type] = STATE(2373), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1859] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1859), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(4128), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4050), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1724] = { + [sym_nested_identifier] = STATE(7170), + [sym_string] = STATE(2890), + [sym_comment] = STATE(1724), + [sym_formal_parameters] = STATE(7340), + [sym_nested_type_identifier] = STATE(2590), + [sym__type] = STATE(2858), + [sym_constructor_type] = STATE(2897), + [sym__primary_type] = STATE(2898), + [sym_template_literal_type] = STATE(2886), + [sym_infer_type] = STATE(2897), + [sym_conditional_type] = STATE(2886), + [sym_generic_type] = STATE(2886), + [sym_type_query] = STATE(2886), + [sym_index_type_query] = STATE(2886), + [sym_lookup_type] = STATE(2886), + [sym_literal_type] = STATE(2886), + [sym__number] = STATE(2899), + [sym_existential_type] = STATE(2886), + [sym_flow_maybe_type] = STATE(2886), + [sym_parenthesized_type] = STATE(2886), + [sym_predefined_type] = STATE(2886), + [sym_object_type] = STATE(2886), + [sym_type_parameters] = STATE(6726), + [sym_array_type] = STATE(2886), + [sym_tuple_type] = STATE(2886), + [sym_readonly_type] = STATE(2897), + [sym_union_type] = STATE(2886), + [sym_intersection_type] = STATE(2886), + [sym_function_type] = STATE(2897), + [sym_identifier] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1860] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1860), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(4138), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4054), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_html_comment] = ACTIONS(5), + }, + [1725] = { + [sym_nested_identifier] = STATE(7170), + [sym_string] = STATE(2890), + [sym_comment] = STATE(1725), + [sym_formal_parameters] = STATE(7340), + [sym_nested_type_identifier] = STATE(2590), + [sym__type] = STATE(2857), + [sym_constructor_type] = STATE(2897), + [sym__primary_type] = STATE(2898), + [sym_template_literal_type] = STATE(2886), + [sym_infer_type] = STATE(2897), + [sym_conditional_type] = STATE(2886), + [sym_generic_type] = STATE(2886), + [sym_type_query] = STATE(2886), + [sym_index_type_query] = STATE(2886), + [sym_lookup_type] = STATE(2886), + [sym_literal_type] = STATE(2886), + [sym__number] = STATE(2899), + [sym_existential_type] = STATE(2886), + [sym_flow_maybe_type] = STATE(2886), + [sym_parenthesized_type] = STATE(2886), + [sym_predefined_type] = STATE(2886), + [sym_object_type] = STATE(2886), + [sym_type_parameters] = STATE(6726), + [sym_array_type] = STATE(2886), + [sym_tuple_type] = STATE(2886), + [sym_readonly_type] = STATE(2897), + [sym_union_type] = STATE(2886), + [sym_intersection_type] = STATE(2886), + [sym_function_type] = STATE(2897), + [sym_identifier] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1861] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1861), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5614), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4054), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_html_comment] = ACTIONS(5), + }, + [1726] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1726), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5453), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -215103,36 +203582,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1862] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1862), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5613), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1727] = { + [sym_nested_identifier] = STATE(7170), + [sym_string] = STATE(2890), + [sym_comment] = STATE(1727), + [sym_formal_parameters] = STATE(7340), + [sym_nested_type_identifier] = STATE(2590), + [sym__type] = STATE(2847), + [sym_constructor_type] = STATE(2897), + [sym__primary_type] = STATE(2898), + [sym_template_literal_type] = STATE(2886), + [sym_infer_type] = STATE(2897), + [sym_conditional_type] = STATE(2886), + [sym_generic_type] = STATE(2886), + [sym_type_query] = STATE(2886), + [sym_index_type_query] = STATE(2886), + [sym_lookup_type] = STATE(2886), + [sym_literal_type] = STATE(2886), + [sym__number] = STATE(2899), + [sym_existential_type] = STATE(2886), + [sym_flow_maybe_type] = STATE(2886), + [sym_parenthesized_type] = STATE(2886), + [sym_predefined_type] = STATE(2886), + [sym_object_type] = STATE(2886), + [sym_type_parameters] = STATE(6726), + [sym_array_type] = STATE(2886), + [sym_tuple_type] = STATE(2886), + [sym_readonly_type] = STATE(2897), + [sym_union_type] = STATE(2886), + [sym_intersection_type] = STATE(2886), + [sym_function_type] = STATE(2897), + [sym_identifier] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4054), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_html_comment] = ACTIONS(5), + }, + [1728] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1728), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5592), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -215174,107 +203724,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1863] = { - [sym_nested_identifier] = STATE(7229), - [sym_string] = STATE(2505), - [sym_comment] = STATE(1863), - [sym_formal_parameters] = STATE(7316), - [sym_nested_type_identifier] = STATE(2360), - [sym__type] = STATE(2392), - [sym_constructor_type] = STATE(2501), - [sym__primary_type] = STATE(2499), - [sym_template_literal_type] = STATE(2507), - [sym_infer_type] = STATE(2501), - [sym_conditional_type] = STATE(2507), - [sym_generic_type] = STATE(2507), - [sym_type_query] = STATE(2507), - [sym_index_type_query] = STATE(2507), - [sym_lookup_type] = STATE(2507), - [sym_literal_type] = STATE(2507), - [sym__number] = STATE(2498), - [sym_existential_type] = STATE(2507), - [sym_flow_maybe_type] = STATE(2507), - [sym_parenthesized_type] = STATE(2507), - [sym_predefined_type] = STATE(2507), - [sym_object_type] = STATE(2507), - [sym_type_parameters] = STATE(7078), - [sym_array_type] = STATE(2507), - [sym_tuple_type] = STATE(2507), - [sym_readonly_type] = STATE(2501), - [sym_union_type] = STATE(2507), - [sym_intersection_type] = STATE(2507), - [sym_function_type] = STATE(2501), + [1729] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1729), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(3970), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1730] = { + [sym_nested_identifier] = STATE(7046), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1730), + [sym_formal_parameters] = STATE(7001), + [sym_nested_type_identifier] = STATE(2222), + [sym__type] = STATE(2255), + [sym_constructor_type] = STATE(2373), + [sym__primary_type] = STATE(2228), + [sym_template_literal_type] = STATE(2259), + [sym_infer_type] = STATE(2373), + [sym_conditional_type] = STATE(2259), + [sym_generic_type] = STATE(2259), + [sym_type_query] = STATE(2259), + [sym_index_type_query] = STATE(2259), + [sym_lookup_type] = STATE(2259), + [sym_literal_type] = STATE(2259), + [sym__number] = STATE(2380), + [sym_existential_type] = STATE(2259), + [sym_flow_maybe_type] = STATE(2259), + [sym_parenthesized_type] = STATE(2259), + [sym_predefined_type] = STATE(2259), + [sym_object_type] = STATE(2259), + [sym_type_parameters] = STATE(6884), + [sym_array_type] = STATE(2259), + [sym_tuple_type] = STATE(2259), + [sym_readonly_type] = STATE(2373), + [sym_union_type] = STATE(2259), + [sym_intersection_type] = STATE(2259), + [sym_function_type] = STATE(2373), [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3830), - [anon_sym_typeof] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3840), - [anon_sym_AMP] = ACTIONS(3842), - [anon_sym_PIPE] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3846), - [anon_sym_DASH] = ACTIONS(3846), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4050), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1731] = { + [sym_nested_identifier] = STATE(7161), + [sym_string] = STATE(4286), + [sym_comment] = STATE(1731), + [sym_formal_parameters] = STATE(7313), + [sym_nested_type_identifier] = STATE(3987), + [sym__type] = STATE(4200), + [sym_constructor_type] = STATE(4279), + [sym__primary_type] = STATE(4277), + [sym_template_literal_type] = STATE(4298), + [sym_infer_type] = STATE(4279), + [sym_conditional_type] = STATE(4298), + [sym_generic_type] = STATE(4298), + [sym_type_query] = STATE(4298), + [sym_index_type_query] = STATE(4298), + [sym_lookup_type] = STATE(4298), + [sym_literal_type] = STATE(4298), + [sym__number] = STATE(4253), + [sym_existential_type] = STATE(4298), + [sym_flow_maybe_type] = STATE(4298), + [sym_parenthesized_type] = STATE(4298), + [sym_predefined_type] = STATE(4298), + [sym_object_type] = STATE(4298), + [sym_type_parameters] = STATE(6810), + [sym_array_type] = STATE(4298), + [sym_tuple_type] = STATE(4298), + [sym_readonly_type] = STATE(4279), + [sym_union_type] = STATE(4298), + [sym_intersection_type] = STATE(4298), + [sym_function_type] = STATE(4279), + [sym_identifier] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3848), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3850), - [sym_number] = ACTIONS(3852), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3852), - [sym_false] = ACTIONS(3852), - [sym_null] = ACTIONS(3852), - [sym_undefined] = ACTIONS(3852), - [anon_sym_readonly] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_number] = ACTIONS(3848), - [anon_sym_boolean] = ACTIONS(3848), - [anon_sym_string] = ACTIONS(3848), - [anon_sym_symbol] = ACTIONS(3848), - [anon_sym_object] = ACTIONS(3848), - [anon_sym_abstract] = ACTIONS(3860), - [anon_sym_infer] = ACTIONS(3864), - [anon_sym_keyof] = ACTIONS(3866), - [anon_sym_unique] = ACTIONS(3868), - [anon_sym_unknown] = ACTIONS(3848), - [anon_sym_never] = ACTIONS(3848), - [anon_sym_LBRACE_PIPE] = ACTIONS(3830), - [sym_html_comment] = ACTIONS(5), - }, - [1864] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1864), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3879), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [anon_sym_void] = ACTIONS(3674), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3678), + [sym_this] = ACTIONS(4044), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [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_abstract] = ACTIONS(3686), + [anon_sym_infer] = ACTIONS(3690), + [anon_sym_keyof] = ACTIONS(3692), + [anon_sym_unique] = ACTIONS(3694), + [anon_sym_unknown] = ACTIONS(3674), + [anon_sym_never] = ACTIONS(3674), + [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [sym_html_comment] = ACTIONS(5), + }, + [1732] = { + [sym_nested_identifier] = STATE(7170), + [sym_string] = STATE(2890), + [sym_comment] = STATE(1732), + [sym_formal_parameters] = STATE(7340), + [sym_nested_type_identifier] = STATE(2590), + [sym__type] = STATE(2742), + [sym_constructor_type] = STATE(2897), + [sym__primary_type] = STATE(2898), + [sym_template_literal_type] = STATE(2886), + [sym_infer_type] = STATE(2897), + [sym_conditional_type] = STATE(2886), + [sym_generic_type] = STATE(2886), + [sym_type_query] = STATE(2886), + [sym_index_type_query] = STATE(2886), + [sym_lookup_type] = STATE(2886), + [sym_literal_type] = STATE(2886), + [sym__number] = STATE(2899), + [sym_existential_type] = STATE(2886), + [sym_flow_maybe_type] = STATE(2886), + [sym_parenthesized_type] = STATE(2886), + [sym_predefined_type] = STATE(2886), + [sym_object_type] = STATE(2886), + [sym_type_parameters] = STATE(6726), + [sym_array_type] = STATE(2886), + [sym_tuple_type] = STATE(2886), + [sym_readonly_type] = STATE(2897), + [sym_union_type] = STATE(2886), + [sym_intersection_type] = STATE(2886), + [sym_function_type] = STATE(2897), + [sym_identifier] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4054), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_html_comment] = ACTIONS(5), + }, + [1733] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1733), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3768), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -215316,36 +204079,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1865] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1865), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(6224), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3899), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1734] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1734), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(5406), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1735] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1735), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3769), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -215387,107 +204221,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1866] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1866), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(4136), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1867] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1867), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5747), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1736] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1736), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3784), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -215529,107 +204292,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1868] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1868), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(4133), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), + [1737] = { + [sym_nested_identifier] = STATE(7170), + [sym_string] = STATE(2890), + [sym_comment] = STATE(1737), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(2590), + [sym__type] = STATE(6311), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(2846), + [sym_template_literal_type] = STATE(2886), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(2886), + [sym_generic_type] = STATE(2886), + [sym_type_query] = STATE(2886), + [sym_index_type_query] = STATE(2886), + [sym_lookup_type] = STATE(2886), + [sym_literal_type] = STATE(2886), + [sym__number] = STATE(2899), + [sym_existential_type] = STATE(2886), + [sym_flow_maybe_type] = STATE(2886), + [sym_parenthesized_type] = STATE(2886), + [sym_predefined_type] = STATE(2886), + [sym_object_type] = STATE(2886), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(2886), + [sym_tuple_type] = STATE(2886), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(2886), + [sym_intersection_type] = STATE(2886), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1869] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1869), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4956), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4054), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_html_comment] = ACTIONS(5), + }, + [1738] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1738), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5574), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -215671,107 +204434,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1870] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1870), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(4132), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1871] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1871), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5685), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1739] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1739), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5122), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -215813,391 +204505,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1872] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1872), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(4468), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), + [1740] = { + [sym_nested_identifier] = STATE(7170), + [sym_string] = STATE(2890), + [sym_comment] = STATE(1740), + [sym_formal_parameters] = STATE(7340), + [sym_nested_type_identifier] = STATE(2590), + [sym__type] = STATE(2873), + [sym_constructor_type] = STATE(2897), + [sym__primary_type] = STATE(2898), + [sym_template_literal_type] = STATE(2886), + [sym_infer_type] = STATE(2897), + [sym_conditional_type] = STATE(2886), + [sym_generic_type] = STATE(2886), + [sym_type_query] = STATE(2886), + [sym_index_type_query] = STATE(2886), + [sym_lookup_type] = STATE(2886), + [sym_literal_type] = STATE(2886), + [sym__number] = STATE(2899), + [sym_existential_type] = STATE(2886), + [sym_flow_maybe_type] = STATE(2886), + [sym_parenthesized_type] = STATE(2886), + [sym_predefined_type] = STATE(2886), + [sym_object_type] = STATE(2886), + [sym_type_parameters] = STATE(6726), + [sym_array_type] = STATE(2886), + [sym_tuple_type] = STATE(2886), + [sym_readonly_type] = STATE(2897), + [sym_union_type] = STATE(2886), + [sym_intersection_type] = STATE(2886), + [sym_function_type] = STATE(2897), + [sym_identifier] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1873] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1873), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(5893), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(4155), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4054), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_html_comment] = ACTIONS(5), + }, + [1741] = { + [sym_nested_identifier] = STATE(7170), + [sym_string] = STATE(2890), + [sym_comment] = STATE(1741), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(2590), + [sym__type] = STATE(6311), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(2844), + [sym_template_literal_type] = STATE(2886), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(2886), + [sym_generic_type] = STATE(2886), + [sym_type_query] = STATE(2886), + [sym_index_type_query] = STATE(2886), + [sym_lookup_type] = STATE(2886), + [sym_literal_type] = STATE(2886), + [sym__number] = STATE(2899), + [sym_existential_type] = STATE(2886), + [sym_flow_maybe_type] = STATE(2886), + [sym_parenthesized_type] = STATE(2886), + [sym_predefined_type] = STATE(2886), + [sym_object_type] = STATE(2886), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(2886), + [sym_tuple_type] = STATE(2886), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(2886), + [sym_intersection_type] = STATE(2886), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4054), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), [anon_sym_abstract] = ACTIONS(199), [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1874] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1874), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(4450), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1875] = { - [sym_nested_identifier] = STATE(7344), - [sym_string] = STATE(4431), - [sym_comment] = STATE(1875), - [sym_formal_parameters] = STATE(7555), - [sym_nested_type_identifier] = STATE(4170), - [sym__type] = STATE(4242), - [sym_constructor_type] = STATE(4427), - [sym__primary_type] = STATE(4425), - [sym_template_literal_type] = STATE(4437), - [sym_infer_type] = STATE(4427), - [sym_conditional_type] = STATE(4437), - [sym_generic_type] = STATE(4437), - [sym_type_query] = STATE(4437), - [sym_index_type_query] = STATE(4437), - [sym_lookup_type] = STATE(4437), - [sym_literal_type] = STATE(4437), - [sym__number] = STATE(4424), - [sym_existential_type] = STATE(4437), - [sym_flow_maybe_type] = STATE(4437), - [sym_parenthesized_type] = STATE(4437), - [sym_predefined_type] = STATE(4437), - [sym_object_type] = STATE(4437), - [sym_type_parameters] = STATE(6962), - [sym_array_type] = STATE(4437), - [sym_tuple_type] = STATE(4437), - [sym_readonly_type] = STATE(4427), - [sym_union_type] = STATE(4437), - [sym_intersection_type] = STATE(4437), - [sym_function_type] = STATE(4427), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3676), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3680), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3686), - [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_abstract] = ACTIONS(3688), - [anon_sym_infer] = ACTIONS(3692), - [anon_sym_keyof] = ACTIONS(3694), - [anon_sym_unique] = ACTIONS(3696), - [anon_sym_unknown] = ACTIONS(3676), - [anon_sym_never] = ACTIONS(3676), - [anon_sym_LBRACE_PIPE] = ACTIONS(3654), - [sym_html_comment] = ACTIONS(5), - }, - [1876] = { - [sym_nested_identifier] = STATE(7344), - [sym_string] = STATE(4431), - [sym_comment] = STATE(1876), - [sym_formal_parameters] = STATE(7555), - [sym_nested_type_identifier] = STATE(4170), - [sym__type] = STATE(4244), - [sym_constructor_type] = STATE(4427), - [sym__primary_type] = STATE(4425), - [sym_template_literal_type] = STATE(4437), - [sym_infer_type] = STATE(4427), - [sym_conditional_type] = STATE(4437), - [sym_generic_type] = STATE(4437), - [sym_type_query] = STATE(4437), - [sym_index_type_query] = STATE(4437), - [sym_lookup_type] = STATE(4437), - [sym_literal_type] = STATE(4437), - [sym__number] = STATE(4424), - [sym_existential_type] = STATE(4437), - [sym_flow_maybe_type] = STATE(4437), - [sym_parenthesized_type] = STATE(4437), - [sym_predefined_type] = STATE(4437), - [sym_object_type] = STATE(4437), - [sym_type_parameters] = STATE(6962), - [sym_array_type] = STATE(4437), - [sym_tuple_type] = STATE(4437), - [sym_readonly_type] = STATE(4427), - [sym_union_type] = STATE(4437), - [sym_intersection_type] = STATE(4437), - [sym_function_type] = STATE(4427), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3676), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3680), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3686), - [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_abstract] = ACTIONS(3688), - [anon_sym_infer] = ACTIONS(3692), - [anon_sym_keyof] = ACTIONS(3694), - [anon_sym_unique] = ACTIONS(3696), - [anon_sym_unknown] = ACTIONS(3676), - [anon_sym_never] = ACTIONS(3676), - [anon_sym_LBRACE_PIPE] = ACTIONS(3654), - [sym_html_comment] = ACTIONS(5), - }, - [1877] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1877), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3834), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_html_comment] = ACTIONS(5), + }, + [1742] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1742), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5530), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -216239,36 +204718,533 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1878] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1878), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3836), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1743] = { + [sym_nested_identifier] = STATE(7170), + [sym_string] = STATE(2890), + [sym_comment] = STATE(1743), + [sym_formal_parameters] = STATE(7340), + [sym_nested_type_identifier] = STATE(2590), + [sym__type] = STATE(2753), + [sym_constructor_type] = STATE(2897), + [sym__primary_type] = STATE(2898), + [sym_template_literal_type] = STATE(2886), + [sym_infer_type] = STATE(2897), + [sym_conditional_type] = STATE(2886), + [sym_generic_type] = STATE(2886), + [sym_type_query] = STATE(2886), + [sym_index_type_query] = STATE(2886), + [sym_lookup_type] = STATE(2886), + [sym_literal_type] = STATE(2886), + [sym__number] = STATE(2899), + [sym_existential_type] = STATE(2886), + [sym_flow_maybe_type] = STATE(2886), + [sym_parenthesized_type] = STATE(2886), + [sym_predefined_type] = STATE(2886), + [sym_object_type] = STATE(2886), + [sym_type_parameters] = STATE(6726), + [sym_array_type] = STATE(2886), + [sym_tuple_type] = STATE(2886), + [sym_readonly_type] = STATE(2897), + [sym_union_type] = STATE(2886), + [sym_intersection_type] = STATE(2886), + [sym_function_type] = STATE(2897), + [sym_identifier] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(4056), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4054), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_html_comment] = ACTIONS(5), + }, + [1744] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1744), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(5320), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1745] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1745), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(3994), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1746] = { + [sym_nested_identifier] = STATE(7046), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1746), + [sym_formal_parameters] = STATE(7001), + [sym_nested_type_identifier] = STATE(2222), + [sym__type] = STATE(2282), + [sym_constructor_type] = STATE(2373), + [sym__primary_type] = STATE(2228), + [sym_template_literal_type] = STATE(2259), + [sym_infer_type] = STATE(2373), + [sym_conditional_type] = STATE(2259), + [sym_generic_type] = STATE(2259), + [sym_type_query] = STATE(2259), + [sym_index_type_query] = STATE(2259), + [sym_lookup_type] = STATE(2259), + [sym_literal_type] = STATE(2259), + [sym__number] = STATE(2380), + [sym_existential_type] = STATE(2259), + [sym_flow_maybe_type] = STATE(2259), + [sym_parenthesized_type] = STATE(2259), + [sym_predefined_type] = STATE(2259), + [sym_object_type] = STATE(2259), + [sym_type_parameters] = STATE(6884), + [sym_array_type] = STATE(2259), + [sym_tuple_type] = STATE(2259), + [sym_readonly_type] = STATE(2373), + [sym_union_type] = STATE(2259), + [sym_intersection_type] = STATE(2259), + [sym_function_type] = STATE(2373), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4050), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1747] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1747), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(3995), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1748] = { + [sym_nested_identifier] = STATE(7046), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1748), + [sym_formal_parameters] = STATE(7001), + [sym_nested_type_identifier] = STATE(2222), + [sym__type] = STATE(2337), + [sym_constructor_type] = STATE(2373), + [sym__primary_type] = STATE(2228), + [sym_template_literal_type] = STATE(2259), + [sym_infer_type] = STATE(2373), + [sym_conditional_type] = STATE(2259), + [sym_generic_type] = STATE(2259), + [sym_type_query] = STATE(2259), + [sym_index_type_query] = STATE(2259), + [sym_lookup_type] = STATE(2259), + [sym_literal_type] = STATE(2259), + [sym__number] = STATE(2380), + [sym_existential_type] = STATE(2259), + [sym_flow_maybe_type] = STATE(2259), + [sym_parenthesized_type] = STATE(2259), + [sym_predefined_type] = STATE(2259), + [sym_object_type] = STATE(2259), + [sym_type_parameters] = STATE(6884), + [sym_array_type] = STATE(2259), + [sym_tuple_type] = STATE(2259), + [sym_readonly_type] = STATE(2373), + [sym_union_type] = STATE(2259), + [sym_intersection_type] = STATE(2259), + [sym_function_type] = STATE(2373), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4050), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1749] = { + [sym_nested_identifier] = STATE(7161), + [sym_string] = STATE(4286), + [sym_comment] = STATE(1749), + [sym_formal_parameters] = STATE(7313), + [sym_nested_type_identifier] = STATE(3987), + [sym__type] = STATE(4294), + [sym_constructor_type] = STATE(4279), + [sym__primary_type] = STATE(4277), + [sym_template_literal_type] = STATE(4298), + [sym_infer_type] = STATE(4279), + [sym_conditional_type] = STATE(4298), + [sym_generic_type] = STATE(4298), + [sym_type_query] = STATE(4298), + [sym_index_type_query] = STATE(4298), + [sym_lookup_type] = STATE(4298), + [sym_literal_type] = STATE(4298), + [sym__number] = STATE(4253), + [sym_existential_type] = STATE(4298), + [sym_flow_maybe_type] = STATE(4298), + [sym_parenthesized_type] = STATE(4298), + [sym_predefined_type] = STATE(4298), + [sym_object_type] = STATE(4298), + [sym_type_parameters] = STATE(6810), + [sym_array_type] = STATE(4298), + [sym_tuple_type] = STATE(4298), + [sym_readonly_type] = STATE(4279), + [sym_union_type] = STATE(4298), + [sym_intersection_type] = STATE(4298), + [sym_function_type] = STATE(4279), + [sym_identifier] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3674), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3678), + [sym_this] = ACTIONS(4044), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [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_abstract] = ACTIONS(3686), + [anon_sym_infer] = ACTIONS(3690), + [anon_sym_keyof] = ACTIONS(3692), + [anon_sym_unique] = ACTIONS(3694), + [anon_sym_unknown] = ACTIONS(3674), + [anon_sym_never] = ACTIONS(3674), + [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [sym_html_comment] = ACTIONS(5), + }, + [1750] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1750), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5417), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -216310,107 +205286,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1879] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1879), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(5893), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(4141), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1880] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1880), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3881), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1751] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1751), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3727), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -216452,107 +205357,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1881] = { - [sym_nested_identifier] = STATE(7229), - [sym_string] = STATE(2505), - [sym_comment] = STATE(1881), - [sym_formal_parameters] = STATE(7316), - [sym_nested_type_identifier] = STATE(2360), - [sym__type] = STATE(2414), - [sym_constructor_type] = STATE(2501), - [sym__primary_type] = STATE(2499), - [sym_template_literal_type] = STATE(2507), - [sym_infer_type] = STATE(2501), - [sym_conditional_type] = STATE(2507), - [sym_generic_type] = STATE(2507), - [sym_type_query] = STATE(2507), - [sym_index_type_query] = STATE(2507), - [sym_lookup_type] = STATE(2507), - [sym_literal_type] = STATE(2507), - [sym__number] = STATE(2498), - [sym_existential_type] = STATE(2507), - [sym_flow_maybe_type] = STATE(2507), - [sym_parenthesized_type] = STATE(2507), - [sym_predefined_type] = STATE(2507), - [sym_object_type] = STATE(2507), - [sym_type_parameters] = STATE(7078), - [sym_array_type] = STATE(2507), - [sym_tuple_type] = STATE(2507), - [sym_readonly_type] = STATE(2501), - [sym_union_type] = STATE(2507), - [sym_intersection_type] = STATE(2507), - [sym_function_type] = STATE(2501), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3830), - [anon_sym_typeof] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3838), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3840), - [anon_sym_AMP] = ACTIONS(3842), - [anon_sym_PIPE] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3846), - [anon_sym_DASH] = ACTIONS(3846), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3848), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3850), - [sym_number] = ACTIONS(3852), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3852), - [sym_false] = ACTIONS(3852), - [sym_null] = ACTIONS(3852), - [sym_undefined] = ACTIONS(3852), - [anon_sym_readonly] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_number] = ACTIONS(3848), - [anon_sym_boolean] = ACTIONS(3848), - [anon_sym_string] = ACTIONS(3848), - [anon_sym_symbol] = ACTIONS(3848), - [anon_sym_object] = ACTIONS(3848), - [anon_sym_abstract] = ACTIONS(3860), - [anon_sym_infer] = ACTIONS(3864), - [anon_sym_keyof] = ACTIONS(3866), - [anon_sym_unique] = ACTIONS(3868), - [anon_sym_unknown] = ACTIONS(3848), - [anon_sym_never] = ACTIONS(3848), - [anon_sym_LBRACE_PIPE] = ACTIONS(3830), - [sym_html_comment] = ACTIONS(5), - }, - [1882] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1882), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5138), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1752] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1752), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(6165), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(5388), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(5427), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -216594,178 +205428,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1883] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1883), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(4119), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), + [1753] = { + [sym_nested_identifier] = STATE(7170), + [sym_string] = STATE(2890), + [sym_comment] = STATE(1753), + [sym_formal_parameters] = STATE(7340), + [sym_nested_type_identifier] = STATE(2590), + [sym__type] = STATE(2849), + [sym_constructor_type] = STATE(2897), + [sym__primary_type] = STATE(2898), + [sym_template_literal_type] = STATE(2886), + [sym_infer_type] = STATE(2897), + [sym_conditional_type] = STATE(2886), + [sym_generic_type] = STATE(2886), + [sym_type_query] = STATE(2886), + [sym_index_type_query] = STATE(2886), + [sym_lookup_type] = STATE(2886), + [sym_literal_type] = STATE(2886), + [sym__number] = STATE(2899), + [sym_existential_type] = STATE(2886), + [sym_flow_maybe_type] = STATE(2886), + [sym_parenthesized_type] = STATE(2886), + [sym_predefined_type] = STATE(2886), + [sym_object_type] = STATE(2886), + [sym_type_parameters] = STATE(6726), + [sym_array_type] = STATE(2886), + [sym_tuple_type] = STATE(2886), + [sym_readonly_type] = STATE(2897), + [sym_union_type] = STATE(2886), + [sym_intersection_type] = STATE(2886), + [sym_function_type] = STATE(2897), + [sym_identifier] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1884] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1884), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(4115), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4054), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_html_comment] = ACTIONS(5), + }, + [1754] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1754), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(4014), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1885] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1885), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3915), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1755] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1755), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5528), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -216807,36 +205641,249 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1886] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1886), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3919), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1756] = { + [sym_nested_identifier] = STATE(7046), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1756), + [sym_formal_parameters] = STATE(7001), + [sym_nested_type_identifier] = STATE(2222), + [sym__type] = STATE(2280), + [sym_constructor_type] = STATE(2373), + [sym__primary_type] = STATE(2228), + [sym_template_literal_type] = STATE(2259), + [sym_infer_type] = STATE(2373), + [sym_conditional_type] = STATE(2259), + [sym_generic_type] = STATE(2259), + [sym_type_query] = STATE(2259), + [sym_index_type_query] = STATE(2259), + [sym_lookup_type] = STATE(2259), + [sym_literal_type] = STATE(2259), + [sym__number] = STATE(2380), + [sym_existential_type] = STATE(2259), + [sym_flow_maybe_type] = STATE(2259), + [sym_parenthesized_type] = STATE(2259), + [sym_predefined_type] = STATE(2259), + [sym_object_type] = STATE(2259), + [sym_type_parameters] = STATE(6884), + [sym_array_type] = STATE(2259), + [sym_tuple_type] = STATE(2259), + [sym_readonly_type] = STATE(2373), + [sym_union_type] = STATE(2259), + [sym_intersection_type] = STATE(2259), + [sym_function_type] = STATE(2373), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4050), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1757] = { + [sym_nested_identifier] = STATE(7170), + [sym_string] = STATE(2890), + [sym_comment] = STATE(1757), + [sym_formal_parameters] = STATE(7340), + [sym_nested_type_identifier] = STATE(2590), + [sym__type] = STATE(2841), + [sym_constructor_type] = STATE(2897), + [sym__primary_type] = STATE(2898), + [sym_template_literal_type] = STATE(2886), + [sym_infer_type] = STATE(2897), + [sym_conditional_type] = STATE(2886), + [sym_generic_type] = STATE(2886), + [sym_type_query] = STATE(2886), + [sym_index_type_query] = STATE(2886), + [sym_lookup_type] = STATE(2886), + [sym_literal_type] = STATE(2886), + [sym__number] = STATE(2899), + [sym_existential_type] = STATE(2886), + [sym_flow_maybe_type] = STATE(2886), + [sym_parenthesized_type] = STATE(2886), + [sym_predefined_type] = STATE(2886), + [sym_object_type] = STATE(2886), + [sym_type_parameters] = STATE(6726), + [sym_array_type] = STATE(2886), + [sym_tuple_type] = STATE(2886), + [sym_readonly_type] = STATE(2897), + [sym_union_type] = STATE(2886), + [sym_intersection_type] = STATE(2886), + [sym_function_type] = STATE(2897), + [sym_identifier] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4054), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_html_comment] = ACTIONS(5), + }, + [1758] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1758), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(5268), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1759] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1759), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5428), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -216878,36 +205925,604 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1887] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1887), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5055), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1760] = { + [sym_nested_identifier] = STATE(7046), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1760), + [sym_formal_parameters] = STATE(7001), + [sym_nested_type_identifier] = STATE(2222), + [sym__type] = STATE(2236), + [sym_constructor_type] = STATE(2373), + [sym__primary_type] = STATE(2228), + [sym_template_literal_type] = STATE(2259), + [sym_infer_type] = STATE(2373), + [sym_conditional_type] = STATE(2259), + [sym_generic_type] = STATE(2259), + [sym_type_query] = STATE(2259), + [sym_index_type_query] = STATE(2259), + [sym_lookup_type] = STATE(2259), + [sym_literal_type] = STATE(2259), + [sym__number] = STATE(2380), + [sym_existential_type] = STATE(2259), + [sym_flow_maybe_type] = STATE(2259), + [sym_parenthesized_type] = STATE(2259), + [sym_predefined_type] = STATE(2259), + [sym_object_type] = STATE(2259), + [sym_type_parameters] = STATE(6884), + [sym_array_type] = STATE(2259), + [sym_tuple_type] = STATE(2259), + [sym_readonly_type] = STATE(2373), + [sym_union_type] = STATE(2259), + [sym_intersection_type] = STATE(2259), + [sym_function_type] = STATE(2373), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4050), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1761] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1761), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(4013), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1762] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1762), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(4982), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1763] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1763), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(4305), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1764] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1764), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(4304), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1765] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1765), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(4303), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1766] = { + [sym_nested_identifier] = STATE(7161), + [sym_string] = STATE(4286), + [sym_comment] = STATE(1766), + [sym_formal_parameters] = STATE(7313), + [sym_nested_type_identifier] = STATE(3987), + [sym__type] = STATE(4244), + [sym_constructor_type] = STATE(4279), + [sym__primary_type] = STATE(4277), + [sym_template_literal_type] = STATE(4298), + [sym_infer_type] = STATE(4279), + [sym_conditional_type] = STATE(4298), + [sym_generic_type] = STATE(4298), + [sym_type_query] = STATE(4298), + [sym_index_type_query] = STATE(4298), + [sym_lookup_type] = STATE(4298), + [sym_literal_type] = STATE(4298), + [sym__number] = STATE(4253), + [sym_existential_type] = STATE(4298), + [sym_flow_maybe_type] = STATE(4298), + [sym_parenthesized_type] = STATE(4298), + [sym_predefined_type] = STATE(4298), + [sym_object_type] = STATE(4298), + [sym_type_parameters] = STATE(6810), + [sym_array_type] = STATE(4298), + [sym_tuple_type] = STATE(4298), + [sym_readonly_type] = STATE(4279), + [sym_union_type] = STATE(4298), + [sym_intersection_type] = STATE(4298), + [sym_function_type] = STATE(4279), + [sym_identifier] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3674), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3678), + [sym_this] = ACTIONS(4044), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [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_abstract] = ACTIONS(3686), + [anon_sym_infer] = ACTIONS(3690), + [anon_sym_keyof] = ACTIONS(3692), + [anon_sym_unique] = ACTIONS(3694), + [anon_sym_unknown] = ACTIONS(3674), + [anon_sym_never] = ACTIONS(3674), + [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [sym_html_comment] = ACTIONS(5), + }, + [1767] = { + [sym_nested_identifier] = STATE(7161), + [sym_string] = STATE(4286), + [sym_comment] = STATE(1767), + [sym_formal_parameters] = STATE(7313), + [sym_nested_type_identifier] = STATE(3987), + [sym__type] = STATE(4241), + [sym_constructor_type] = STATE(4279), + [sym__primary_type] = STATE(4277), + [sym_template_literal_type] = STATE(4298), + [sym_infer_type] = STATE(4279), + [sym_conditional_type] = STATE(4298), + [sym_generic_type] = STATE(4298), + [sym_type_query] = STATE(4298), + [sym_index_type_query] = STATE(4298), + [sym_lookup_type] = STATE(4298), + [sym_literal_type] = STATE(4298), + [sym__number] = STATE(4253), + [sym_existential_type] = STATE(4298), + [sym_flow_maybe_type] = STATE(4298), + [sym_parenthesized_type] = STATE(4298), + [sym_predefined_type] = STATE(4298), + [sym_object_type] = STATE(4298), + [sym_type_parameters] = STATE(6810), + [sym_array_type] = STATE(4298), + [sym_tuple_type] = STATE(4298), + [sym_readonly_type] = STATE(4279), + [sym_union_type] = STATE(4298), + [sym_intersection_type] = STATE(4298), + [sym_function_type] = STATE(4279), + [sym_identifier] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3674), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3678), + [sym_this] = ACTIONS(4044), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [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_abstract] = ACTIONS(3686), + [anon_sym_infer] = ACTIONS(3690), + [anon_sym_keyof] = ACTIONS(3692), + [anon_sym_unique] = ACTIONS(3694), + [anon_sym_unknown] = ACTIONS(3674), + [anon_sym_never] = ACTIONS(3674), + [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [sym_html_comment] = ACTIONS(5), + }, + [1768] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1768), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5426), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -216949,746 +206564,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1888] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1888), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(5387), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1889] = { - [sym_nested_identifier] = STATE(7311), - [sym_string] = STATE(2943), - [sym_comment] = STATE(1889), - [sym_formal_parameters] = STATE(7434), - [sym_nested_type_identifier] = STATE(2799), - [sym__type] = STATE(2980), - [sym_constructor_type] = STATE(2950), - [sym__primary_type] = STATE(2951), - [sym_template_literal_type] = STATE(2939), - [sym_infer_type] = STATE(2950), - [sym_conditional_type] = STATE(2939), - [sym_generic_type] = STATE(2939), - [sym_type_query] = STATE(2939), - [sym_index_type_query] = STATE(2939), - [sym_lookup_type] = STATE(2939), - [sym_literal_type] = STATE(2939), - [sym__number] = STATE(2952), - [sym_existential_type] = STATE(2939), - [sym_flow_maybe_type] = STATE(2939), - [sym_parenthesized_type] = STATE(2939), - [sym_predefined_type] = STATE(2939), - [sym_object_type] = STATE(2939), - [sym_type_parameters] = STATE(6909), - [sym_array_type] = STATE(2939), - [sym_tuple_type] = STATE(2939), - [sym_readonly_type] = STATE(2950), - [sym_union_type] = STATE(2939), - [sym_intersection_type] = STATE(2939), - [sym_function_type] = STATE(2950), - [sym_identifier] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(3786), - [anon_sym_typeof] = ACTIONS(3788), - [anon_sym_const] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(3794), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3800), - [anon_sym_PLUS] = ACTIONS(3802), - [anon_sym_DASH] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3804), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3806), - [sym_number] = ACTIONS(3808), - [sym_this] = ACTIONS(4040), - [sym_true] = ACTIONS(3808), - [sym_false] = ACTIONS(3808), - [sym_null] = ACTIONS(3808), - [sym_undefined] = ACTIONS(3808), - [anon_sym_readonly] = ACTIONS(3812), - [anon_sym_QMARK] = ACTIONS(3814), - [anon_sym_any] = ACTIONS(3804), - [anon_sym_number] = ACTIONS(3804), - [anon_sym_boolean] = ACTIONS(3804), - [anon_sym_string] = ACTIONS(3804), - [anon_sym_symbol] = ACTIONS(3804), - [anon_sym_object] = ACTIONS(3804), - [anon_sym_abstract] = ACTIONS(3816), - [anon_sym_infer] = ACTIONS(3820), - [anon_sym_keyof] = ACTIONS(3822), - [anon_sym_unique] = ACTIONS(3824), - [anon_sym_unknown] = ACTIONS(3804), - [anon_sym_never] = ACTIONS(3804), - [anon_sym_LBRACE_PIPE] = ACTIONS(3786), - [sym_html_comment] = ACTIONS(5), - }, - [1890] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1890), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(4165), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1891] = { - [sym_nested_identifier] = STATE(7311), - [sym_string] = STATE(2943), - [sym_comment] = STATE(1891), - [sym_formal_parameters] = STATE(7434), - [sym_nested_type_identifier] = STATE(2799), - [sym__type] = STATE(2971), - [sym_constructor_type] = STATE(2950), - [sym__primary_type] = STATE(2951), - [sym_template_literal_type] = STATE(2939), - [sym_infer_type] = STATE(2950), - [sym_conditional_type] = STATE(2939), - [sym_generic_type] = STATE(2939), - [sym_type_query] = STATE(2939), - [sym_index_type_query] = STATE(2939), - [sym_lookup_type] = STATE(2939), - [sym_literal_type] = STATE(2939), - [sym__number] = STATE(2952), - [sym_existential_type] = STATE(2939), - [sym_flow_maybe_type] = STATE(2939), - [sym_parenthesized_type] = STATE(2939), - [sym_predefined_type] = STATE(2939), - [sym_object_type] = STATE(2939), - [sym_type_parameters] = STATE(6909), - [sym_array_type] = STATE(2939), - [sym_tuple_type] = STATE(2939), - [sym_readonly_type] = STATE(2950), - [sym_union_type] = STATE(2939), - [sym_intersection_type] = STATE(2939), - [sym_function_type] = STATE(2950), - [sym_identifier] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(3786), - [anon_sym_typeof] = ACTIONS(3788), - [anon_sym_const] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(3794), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3800), - [anon_sym_PLUS] = ACTIONS(3802), - [anon_sym_DASH] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3804), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3806), - [sym_number] = ACTIONS(3808), - [sym_this] = ACTIONS(4040), - [sym_true] = ACTIONS(3808), - [sym_false] = ACTIONS(3808), - [sym_null] = ACTIONS(3808), - [sym_undefined] = ACTIONS(3808), - [anon_sym_readonly] = ACTIONS(3812), - [anon_sym_QMARK] = ACTIONS(3814), - [anon_sym_any] = ACTIONS(3804), - [anon_sym_number] = ACTIONS(3804), - [anon_sym_boolean] = ACTIONS(3804), - [anon_sym_string] = ACTIONS(3804), - [anon_sym_symbol] = ACTIONS(3804), - [anon_sym_object] = ACTIONS(3804), - [anon_sym_abstract] = ACTIONS(3816), - [anon_sym_infer] = ACTIONS(3820), - [anon_sym_keyof] = ACTIONS(3822), - [anon_sym_unique] = ACTIONS(3824), - [anon_sym_unknown] = ACTIONS(3804), - [anon_sym_never] = ACTIONS(3804), - [anon_sym_LBRACE_PIPE] = ACTIONS(3786), - [sym_html_comment] = ACTIONS(5), - }, - [1892] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1892), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(4114), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1893] = { - [sym_nested_identifier] = STATE(7311), - [sym_string] = STATE(2943), - [sym_comment] = STATE(1893), - [sym_formal_parameters] = STATE(7434), - [sym_nested_type_identifier] = STATE(2799), - [sym__type] = STATE(2891), - [sym_constructor_type] = STATE(2950), - [sym__primary_type] = STATE(2951), - [sym_template_literal_type] = STATE(2939), - [sym_infer_type] = STATE(2950), - [sym_conditional_type] = STATE(2939), - [sym_generic_type] = STATE(2939), - [sym_type_query] = STATE(2939), - [sym_index_type_query] = STATE(2939), - [sym_lookup_type] = STATE(2939), - [sym_literal_type] = STATE(2939), - [sym__number] = STATE(2952), - [sym_existential_type] = STATE(2939), - [sym_flow_maybe_type] = STATE(2939), - [sym_parenthesized_type] = STATE(2939), - [sym_predefined_type] = STATE(2939), - [sym_object_type] = STATE(2939), - [sym_type_parameters] = STATE(6909), - [sym_array_type] = STATE(2939), - [sym_tuple_type] = STATE(2939), - [sym_readonly_type] = STATE(2950), - [sym_union_type] = STATE(2939), - [sym_intersection_type] = STATE(2939), - [sym_function_type] = STATE(2950), - [sym_identifier] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(3786), - [anon_sym_typeof] = ACTIONS(3788), - [anon_sym_const] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(3794), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3800), - [anon_sym_PLUS] = ACTIONS(3802), - [anon_sym_DASH] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3804), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3806), - [sym_number] = ACTIONS(3808), - [sym_this] = ACTIONS(4040), - [sym_true] = ACTIONS(3808), - [sym_false] = ACTIONS(3808), - [sym_null] = ACTIONS(3808), - [sym_undefined] = ACTIONS(3808), - [anon_sym_readonly] = ACTIONS(3812), - [anon_sym_QMARK] = ACTIONS(3814), - [anon_sym_any] = ACTIONS(3804), - [anon_sym_number] = ACTIONS(3804), - [anon_sym_boolean] = ACTIONS(3804), - [anon_sym_string] = ACTIONS(3804), - [anon_sym_symbol] = ACTIONS(3804), - [anon_sym_object] = ACTIONS(3804), - [anon_sym_abstract] = ACTIONS(3816), - [anon_sym_infer] = ACTIONS(3820), - [anon_sym_keyof] = ACTIONS(3822), - [anon_sym_unique] = ACTIONS(3824), - [anon_sym_unknown] = ACTIONS(3804), - [anon_sym_never] = ACTIONS(3804), - [anon_sym_LBRACE_PIPE] = ACTIONS(3786), - [sym_html_comment] = ACTIONS(5), - }, - [1894] = { - [sym_nested_identifier] = STATE(7311), - [sym_string] = STATE(2943), - [sym_comment] = STATE(1894), - [sym_formal_parameters] = STATE(7434), - [sym_nested_type_identifier] = STATE(2799), - [sym__type] = STATE(2876), - [sym_constructor_type] = STATE(2950), - [sym__primary_type] = STATE(2951), - [sym_template_literal_type] = STATE(2939), - [sym_infer_type] = STATE(2950), - [sym_conditional_type] = STATE(2939), - [sym_generic_type] = STATE(2939), - [sym_type_query] = STATE(2939), - [sym_index_type_query] = STATE(2939), - [sym_lookup_type] = STATE(2939), - [sym_literal_type] = STATE(2939), - [sym__number] = STATE(2952), - [sym_existential_type] = STATE(2939), - [sym_flow_maybe_type] = STATE(2939), - [sym_parenthesized_type] = STATE(2939), - [sym_predefined_type] = STATE(2939), - [sym_object_type] = STATE(2939), - [sym_type_parameters] = STATE(6909), - [sym_array_type] = STATE(2939), - [sym_tuple_type] = STATE(2939), - [sym_readonly_type] = STATE(2950), - [sym_union_type] = STATE(2939), - [sym_intersection_type] = STATE(2939), - [sym_function_type] = STATE(2950), - [sym_identifier] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(3786), - [anon_sym_typeof] = ACTIONS(3788), - [anon_sym_const] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(3794), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3800), - [anon_sym_PLUS] = ACTIONS(3802), - [anon_sym_DASH] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3804), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3806), - [sym_number] = ACTIONS(3808), - [sym_this] = ACTIONS(4040), - [sym_true] = ACTIONS(3808), - [sym_false] = ACTIONS(3808), - [sym_null] = ACTIONS(3808), - [sym_undefined] = ACTIONS(3808), - [anon_sym_readonly] = ACTIONS(3812), - [anon_sym_QMARK] = ACTIONS(3814), - [anon_sym_any] = ACTIONS(3804), - [anon_sym_number] = ACTIONS(3804), - [anon_sym_boolean] = ACTIONS(3804), - [anon_sym_string] = ACTIONS(3804), - [anon_sym_symbol] = ACTIONS(3804), - [anon_sym_object] = ACTIONS(3804), - [anon_sym_abstract] = ACTIONS(3816), - [anon_sym_infer] = ACTIONS(3820), - [anon_sym_keyof] = ACTIONS(3822), - [anon_sym_unique] = ACTIONS(3824), - [anon_sym_unknown] = ACTIONS(3804), - [anon_sym_never] = ACTIONS(3804), - [anon_sym_LBRACE_PIPE] = ACTIONS(3786), - [sym_html_comment] = ACTIONS(5), - }, - [1895] = { - [sym_nested_identifier] = STATE(7229), - [sym_string] = STATE(2505), - [sym_comment] = STATE(1895), - [sym_formal_parameters] = STATE(7316), - [sym_nested_type_identifier] = STATE(2360), - [sym__type] = STATE(2400), - [sym_constructor_type] = STATE(2501), - [sym__primary_type] = STATE(2499), - [sym_template_literal_type] = STATE(2507), - [sym_infer_type] = STATE(2501), - [sym_conditional_type] = STATE(2507), - [sym_generic_type] = STATE(2507), - [sym_type_query] = STATE(2507), - [sym_index_type_query] = STATE(2507), - [sym_lookup_type] = STATE(2507), - [sym_literal_type] = STATE(2507), - [sym__number] = STATE(2498), - [sym_existential_type] = STATE(2507), - [sym_flow_maybe_type] = STATE(2507), - [sym_parenthesized_type] = STATE(2507), - [sym_predefined_type] = STATE(2507), - [sym_object_type] = STATE(2507), - [sym_type_parameters] = STATE(7078), - [sym_array_type] = STATE(2507), - [sym_tuple_type] = STATE(2507), - [sym_readonly_type] = STATE(2501), - [sym_union_type] = STATE(2507), - [sym_intersection_type] = STATE(2507), - [sym_function_type] = STATE(2501), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3830), - [anon_sym_typeof] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3838), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3840), - [anon_sym_AMP] = ACTIONS(3842), - [anon_sym_PIPE] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3846), - [anon_sym_DASH] = ACTIONS(3846), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3848), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3850), - [sym_number] = ACTIONS(3852), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3852), - [sym_false] = ACTIONS(3852), - [sym_null] = ACTIONS(3852), - [sym_undefined] = ACTIONS(3852), - [anon_sym_readonly] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_number] = ACTIONS(3848), - [anon_sym_boolean] = ACTIONS(3848), - [anon_sym_string] = ACTIONS(3848), - [anon_sym_symbol] = ACTIONS(3848), - [anon_sym_object] = ACTIONS(3848), - [anon_sym_abstract] = ACTIONS(3860), - [anon_sym_infer] = ACTIONS(3864), - [anon_sym_keyof] = ACTIONS(3866), - [anon_sym_unique] = ACTIONS(3868), - [anon_sym_unknown] = ACTIONS(3848), - [anon_sym_never] = ACTIONS(3848), - [anon_sym_LBRACE_PIPE] = ACTIONS(3830), - [sym_html_comment] = ACTIONS(5), - }, - [1896] = { - [sym_nested_identifier] = STATE(7311), - [sym_string] = STATE(2943), - [sym_comment] = STATE(1896), - [sym_formal_parameters] = STATE(7434), - [sym_nested_type_identifier] = STATE(2799), - [sym__type] = STATE(2847), - [sym_constructor_type] = STATE(2950), - [sym__primary_type] = STATE(2951), - [sym_template_literal_type] = STATE(2939), - [sym_infer_type] = STATE(2950), - [sym_conditional_type] = STATE(2939), - [sym_generic_type] = STATE(2939), - [sym_type_query] = STATE(2939), - [sym_index_type_query] = STATE(2939), - [sym_lookup_type] = STATE(2939), - [sym_literal_type] = STATE(2939), - [sym__number] = STATE(2952), - [sym_existential_type] = STATE(2939), - [sym_flow_maybe_type] = STATE(2939), - [sym_parenthesized_type] = STATE(2939), - [sym_predefined_type] = STATE(2939), - [sym_object_type] = STATE(2939), - [sym_type_parameters] = STATE(6909), - [sym_array_type] = STATE(2939), - [sym_tuple_type] = STATE(2939), - [sym_readonly_type] = STATE(2950), - [sym_union_type] = STATE(2939), - [sym_intersection_type] = STATE(2939), - [sym_function_type] = STATE(2950), - [sym_identifier] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(3786), - [anon_sym_typeof] = ACTIONS(3788), - [anon_sym_const] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(3794), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3800), - [anon_sym_PLUS] = ACTIONS(3802), - [anon_sym_DASH] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3804), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3806), - [sym_number] = ACTIONS(3808), - [sym_this] = ACTIONS(4040), - [sym_true] = ACTIONS(3808), - [sym_false] = ACTIONS(3808), - [sym_null] = ACTIONS(3808), - [sym_undefined] = ACTIONS(3808), - [anon_sym_readonly] = ACTIONS(3812), - [anon_sym_QMARK] = ACTIONS(3814), - [anon_sym_any] = ACTIONS(3804), - [anon_sym_number] = ACTIONS(3804), - [anon_sym_boolean] = ACTIONS(3804), - [anon_sym_string] = ACTIONS(3804), - [anon_sym_symbol] = ACTIONS(3804), - [anon_sym_object] = ACTIONS(3804), - [anon_sym_abstract] = ACTIONS(3816), - [anon_sym_infer] = ACTIONS(3820), - [anon_sym_keyof] = ACTIONS(3822), - [anon_sym_unique] = ACTIONS(3824), - [anon_sym_unknown] = ACTIONS(3804), - [anon_sym_never] = ACTIONS(3804), - [anon_sym_LBRACE_PIPE] = ACTIONS(3786), - [sym_html_comment] = ACTIONS(5), - }, - [1897] = { - [sym_nested_identifier] = STATE(7311), - [sym_string] = STATE(2943), - [sym_comment] = STATE(1897), - [sym_formal_parameters] = STATE(7434), - [sym_nested_type_identifier] = STATE(2799), - [sym__type] = STATE(2849), - [sym_constructor_type] = STATE(2950), - [sym__primary_type] = STATE(2951), - [sym_template_literal_type] = STATE(2939), - [sym_infer_type] = STATE(2950), - [sym_conditional_type] = STATE(2939), - [sym_generic_type] = STATE(2939), - [sym_type_query] = STATE(2939), - [sym_index_type_query] = STATE(2939), - [sym_lookup_type] = STATE(2939), - [sym_literal_type] = STATE(2939), - [sym__number] = STATE(2952), - [sym_existential_type] = STATE(2939), - [sym_flow_maybe_type] = STATE(2939), - [sym_parenthesized_type] = STATE(2939), - [sym_predefined_type] = STATE(2939), - [sym_object_type] = STATE(2939), - [sym_type_parameters] = STATE(6909), - [sym_array_type] = STATE(2939), - [sym_tuple_type] = STATE(2939), - [sym_readonly_type] = STATE(2950), - [sym_union_type] = STATE(2939), - [sym_intersection_type] = STATE(2939), - [sym_function_type] = STATE(2950), - [sym_identifier] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(3786), - [anon_sym_typeof] = ACTIONS(3788), - [anon_sym_const] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(3794), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3800), - [anon_sym_PLUS] = ACTIONS(3802), - [anon_sym_DASH] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3804), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3806), - [sym_number] = ACTIONS(3808), - [sym_this] = ACTIONS(4040), - [sym_true] = ACTIONS(3808), - [sym_false] = ACTIONS(3808), - [sym_null] = ACTIONS(3808), - [sym_undefined] = ACTIONS(3808), - [anon_sym_readonly] = ACTIONS(3812), - [anon_sym_QMARK] = ACTIONS(3814), - [anon_sym_any] = ACTIONS(3804), - [anon_sym_number] = ACTIONS(3804), - [anon_sym_boolean] = ACTIONS(3804), - [anon_sym_string] = ACTIONS(3804), - [anon_sym_symbol] = ACTIONS(3804), - [anon_sym_object] = ACTIONS(3804), - [anon_sym_abstract] = ACTIONS(3816), - [anon_sym_infer] = ACTIONS(3820), - [anon_sym_keyof] = ACTIONS(3822), - [anon_sym_unique] = ACTIONS(3824), - [anon_sym_unknown] = ACTIONS(3804), - [anon_sym_never] = ACTIONS(3804), - [anon_sym_LBRACE_PIPE] = ACTIONS(3786), - [sym_html_comment] = ACTIONS(5), - }, - [1898] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1898), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3830), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1769] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1769), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5474), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -217730,36 +206635,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1899] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1899), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3871), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1770] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1770), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(3986), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1771] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1771), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5151), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -217801,249 +206777,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1900] = { - [sym_nested_identifier] = STATE(7344), - [sym_string] = STATE(4431), - [sym_comment] = STATE(1900), - [sym_formal_parameters] = STATE(7555), - [sym_nested_type_identifier] = STATE(4170), - [sym__type] = STATE(4446), - [sym_constructor_type] = STATE(4427), - [sym__primary_type] = STATE(4425), - [sym_template_literal_type] = STATE(4437), - [sym_infer_type] = STATE(4427), - [sym_conditional_type] = STATE(4437), - [sym_generic_type] = STATE(4437), - [sym_type_query] = STATE(4437), - [sym_index_type_query] = STATE(4437), - [sym_lookup_type] = STATE(4437), - [sym_literal_type] = STATE(4437), - [sym__number] = STATE(4424), - [sym_existential_type] = STATE(4437), - [sym_flow_maybe_type] = STATE(4437), - [sym_parenthesized_type] = STATE(4437), - [sym_predefined_type] = STATE(4437), - [sym_object_type] = STATE(4437), - [sym_type_parameters] = STATE(6962), - [sym_array_type] = STATE(4437), - [sym_tuple_type] = STATE(4437), - [sym_readonly_type] = STATE(4427), - [sym_union_type] = STATE(4437), - [sym_intersection_type] = STATE(4437), - [sym_function_type] = STATE(4427), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3676), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3680), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3686), - [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_abstract] = ACTIONS(3688), - [anon_sym_infer] = ACTIONS(3692), - [anon_sym_keyof] = ACTIONS(3694), - [anon_sym_unique] = ACTIONS(3696), - [anon_sym_unknown] = ACTIONS(3676), - [anon_sym_never] = ACTIONS(3676), - [anon_sym_LBRACE_PIPE] = ACTIONS(3654), - [sym_html_comment] = ACTIONS(5), - }, - [1901] = { - [sym_nested_identifier] = STATE(7344), - [sym_string] = STATE(4431), - [sym_comment] = STATE(1901), - [sym_formal_parameters] = STATE(7555), - [sym_nested_type_identifier] = STATE(4170), - [sym__type] = STATE(4445), - [sym_constructor_type] = STATE(4427), - [sym__primary_type] = STATE(4425), - [sym_template_literal_type] = STATE(4437), - [sym_infer_type] = STATE(4427), - [sym_conditional_type] = STATE(4437), - [sym_generic_type] = STATE(4437), - [sym_type_query] = STATE(4437), - [sym_index_type_query] = STATE(4437), - [sym_lookup_type] = STATE(4437), - [sym_literal_type] = STATE(4437), - [sym__number] = STATE(4424), - [sym_existential_type] = STATE(4437), - [sym_flow_maybe_type] = STATE(4437), - [sym_parenthesized_type] = STATE(4437), - [sym_predefined_type] = STATE(4437), - [sym_object_type] = STATE(4437), - [sym_type_parameters] = STATE(6962), - [sym_array_type] = STATE(4437), - [sym_tuple_type] = STATE(4437), - [sym_readonly_type] = STATE(4427), - [sym_union_type] = STATE(4437), - [sym_intersection_type] = STATE(4437), - [sym_function_type] = STATE(4427), + [1772] = { + [sym_nested_identifier] = STATE(7161), + [sym_string] = STATE(4286), + [sym_comment] = STATE(1772), + [sym_formal_parameters] = STATE(7313), + [sym_nested_type_identifier] = STATE(3987), + [sym__type] = STATE(4232), + [sym_constructor_type] = STATE(4279), + [sym__primary_type] = STATE(4277), + [sym_template_literal_type] = STATE(4298), + [sym_infer_type] = STATE(4279), + [sym_conditional_type] = STATE(4298), + [sym_generic_type] = STATE(4298), + [sym_type_query] = STATE(4298), + [sym_index_type_query] = STATE(4298), + [sym_lookup_type] = STATE(4298), + [sym_literal_type] = STATE(4298), + [sym__number] = STATE(4253), + [sym_existential_type] = STATE(4298), + [sym_flow_maybe_type] = STATE(4298), + [sym_parenthesized_type] = STATE(4298), + [sym_predefined_type] = STATE(4298), + [sym_object_type] = STATE(4298), + [sym_type_parameters] = STATE(6810), + [sym_array_type] = STATE(4298), + [sym_tuple_type] = STATE(4298), + [sym_readonly_type] = STATE(4279), + [sym_union_type] = STATE(4298), + [sym_intersection_type] = STATE(4298), + [sym_function_type] = STATE(4279), [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3676), + [anon_sym_void] = ACTIONS(3674), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3680), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3678), [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3686), - [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_abstract] = ACTIONS(3688), - [anon_sym_infer] = ACTIONS(3692), - [anon_sym_keyof] = ACTIONS(3694), - [anon_sym_unique] = ACTIONS(3696), - [anon_sym_unknown] = ACTIONS(3676), - [anon_sym_never] = ACTIONS(3676), - [anon_sym_LBRACE_PIPE] = ACTIONS(3654), - [sym_html_comment] = ACTIONS(5), - }, - [1902] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1902), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(4130), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1903] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1903), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5585), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [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_abstract] = ACTIONS(3686), + [anon_sym_infer] = ACTIONS(3690), + [anon_sym_keyof] = ACTIONS(3692), + [anon_sym_unique] = ACTIONS(3694), + [anon_sym_unknown] = ACTIONS(3674), + [anon_sym_never] = ACTIONS(3674), + [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [sym_html_comment] = ACTIONS(5), + }, + [1773] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1773), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5500), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -218085,604 +206919,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1904] = { - [sym_nested_identifier] = STATE(7311), - [sym_string] = STATE(2943), - [sym_comment] = STATE(1904), - [sym_formal_parameters] = STATE(7434), - [sym_nested_type_identifier] = STATE(2799), - [sym__type] = STATE(2900), - [sym_constructor_type] = STATE(2950), - [sym__primary_type] = STATE(2951), - [sym_template_literal_type] = STATE(2939), - [sym_infer_type] = STATE(2950), - [sym_conditional_type] = STATE(2939), - [sym_generic_type] = STATE(2939), - [sym_type_query] = STATE(2939), - [sym_index_type_query] = STATE(2939), - [sym_lookup_type] = STATE(2939), - [sym_literal_type] = STATE(2939), - [sym__number] = STATE(2952), - [sym_existential_type] = STATE(2939), - [sym_flow_maybe_type] = STATE(2939), - [sym_parenthesized_type] = STATE(2939), - [sym_predefined_type] = STATE(2939), - [sym_object_type] = STATE(2939), - [sym_type_parameters] = STATE(6909), - [sym_array_type] = STATE(2939), - [sym_tuple_type] = STATE(2939), - [sym_readonly_type] = STATE(2950), - [sym_union_type] = STATE(2939), - [sym_intersection_type] = STATE(2939), - [sym_function_type] = STATE(2950), - [sym_identifier] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(3786), - [anon_sym_typeof] = ACTIONS(3788), - [anon_sym_const] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(3794), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3800), - [anon_sym_PLUS] = ACTIONS(3802), - [anon_sym_DASH] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3804), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3806), - [sym_number] = ACTIONS(3808), - [sym_this] = ACTIONS(4040), - [sym_true] = ACTIONS(3808), - [sym_false] = ACTIONS(3808), - [sym_null] = ACTIONS(3808), - [sym_undefined] = ACTIONS(3808), - [anon_sym_readonly] = ACTIONS(3812), - [anon_sym_QMARK] = ACTIONS(3814), - [anon_sym_any] = ACTIONS(3804), - [anon_sym_number] = ACTIONS(3804), - [anon_sym_boolean] = ACTIONS(3804), - [anon_sym_string] = ACTIONS(3804), - [anon_sym_symbol] = ACTIONS(3804), - [anon_sym_object] = ACTIONS(3804), - [anon_sym_abstract] = ACTIONS(3816), - [anon_sym_infer] = ACTIONS(3820), - [anon_sym_keyof] = ACTIONS(3822), - [anon_sym_unique] = ACTIONS(3824), - [anon_sym_unknown] = ACTIONS(3804), - [anon_sym_never] = ACTIONS(3804), - [anon_sym_LBRACE_PIPE] = ACTIONS(3786), - [sym_html_comment] = ACTIONS(5), - }, - [1905] = { - [sym_nested_identifier] = STATE(7311), - [sym_string] = STATE(2943), - [sym_comment] = STATE(1905), - [sym_formal_parameters] = STATE(7434), - [sym_nested_type_identifier] = STATE(2799), - [sym__type] = STATE(2901), - [sym_constructor_type] = STATE(2950), - [sym__primary_type] = STATE(2951), - [sym_template_literal_type] = STATE(2939), - [sym_infer_type] = STATE(2950), - [sym_conditional_type] = STATE(2939), - [sym_generic_type] = STATE(2939), - [sym_type_query] = STATE(2939), - [sym_index_type_query] = STATE(2939), - [sym_lookup_type] = STATE(2939), - [sym_literal_type] = STATE(2939), - [sym__number] = STATE(2952), - [sym_existential_type] = STATE(2939), - [sym_flow_maybe_type] = STATE(2939), - [sym_parenthesized_type] = STATE(2939), - [sym_predefined_type] = STATE(2939), - [sym_object_type] = STATE(2939), - [sym_type_parameters] = STATE(6909), - [sym_array_type] = STATE(2939), - [sym_tuple_type] = STATE(2939), - [sym_readonly_type] = STATE(2950), - [sym_union_type] = STATE(2939), - [sym_intersection_type] = STATE(2939), - [sym_function_type] = STATE(2950), - [sym_identifier] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(3786), - [anon_sym_typeof] = ACTIONS(3788), - [anon_sym_const] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(3794), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3800), - [anon_sym_PLUS] = ACTIONS(3802), - [anon_sym_DASH] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3804), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3806), - [sym_number] = ACTIONS(3808), - [sym_this] = ACTIONS(4040), - [sym_true] = ACTIONS(3808), - [sym_false] = ACTIONS(3808), - [sym_null] = ACTIONS(3808), - [sym_undefined] = ACTIONS(3808), - [anon_sym_readonly] = ACTIONS(3812), - [anon_sym_QMARK] = ACTIONS(3814), - [anon_sym_any] = ACTIONS(3804), - [anon_sym_number] = ACTIONS(3804), - [anon_sym_boolean] = ACTIONS(3804), - [anon_sym_string] = ACTIONS(3804), - [anon_sym_symbol] = ACTIONS(3804), - [anon_sym_object] = ACTIONS(3804), - [anon_sym_abstract] = ACTIONS(3816), - [anon_sym_infer] = ACTIONS(3820), - [anon_sym_keyof] = ACTIONS(3822), - [anon_sym_unique] = ACTIONS(3824), - [anon_sym_unknown] = ACTIONS(3804), - [anon_sym_never] = ACTIONS(3804), - [anon_sym_LBRACE_PIPE] = ACTIONS(3786), - [sym_html_comment] = ACTIONS(5), - }, - [1906] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1906), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(4129), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1907] = { - [sym_nested_identifier] = STATE(7344), - [sym_string] = STATE(4431), - [sym_comment] = STATE(1907), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(4170), - [sym__type] = STATE(6432), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(4333), - [sym_template_literal_type] = STATE(4437), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(4437), - [sym_generic_type] = STATE(4437), - [sym_type_query] = STATE(4437), - [sym_index_type_query] = STATE(4437), - [sym_lookup_type] = STATE(4437), - [sym_literal_type] = STATE(4437), - [sym__number] = STATE(4424), - [sym_existential_type] = STATE(4437), - [sym_flow_maybe_type] = STATE(4437), - [sym_parenthesized_type] = STATE(4437), - [sym_predefined_type] = STATE(4437), - [sym_object_type] = STATE(4437), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(4437), - [sym_tuple_type] = STATE(4437), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(4437), - [sym_intersection_type] = STATE(4437), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3676), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3680), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(3686), - [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_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(3694), - [anon_sym_unique] = ACTIONS(3696), - [anon_sym_unknown] = ACTIONS(3676), - [anon_sym_never] = ACTIONS(3676), - [anon_sym_LBRACE_PIPE] = ACTIONS(3654), - [sym_html_comment] = ACTIONS(5), - }, - [1908] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1908), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(5164), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1909] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1909), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(5291), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1910] = { - [sym_nested_identifier] = STATE(7344), - [sym_string] = STATE(4431), - [sym_comment] = STATE(1910), - [sym_formal_parameters] = STATE(7555), - [sym_nested_type_identifier] = STATE(4170), - [sym__type] = STATE(4334), - [sym_constructor_type] = STATE(4427), - [sym__primary_type] = STATE(4425), - [sym_template_literal_type] = STATE(4437), - [sym_infer_type] = STATE(4427), - [sym_conditional_type] = STATE(4437), - [sym_generic_type] = STATE(4437), - [sym_type_query] = STATE(4437), - [sym_index_type_query] = STATE(4437), - [sym_lookup_type] = STATE(4437), - [sym_literal_type] = STATE(4437), - [sym__number] = STATE(4424), - [sym_existential_type] = STATE(4437), - [sym_flow_maybe_type] = STATE(4437), - [sym_parenthesized_type] = STATE(4437), - [sym_predefined_type] = STATE(4437), - [sym_object_type] = STATE(4437), - [sym_type_parameters] = STATE(6962), - [sym_array_type] = STATE(4437), - [sym_tuple_type] = STATE(4437), - [sym_readonly_type] = STATE(4427), - [sym_union_type] = STATE(4437), - [sym_intersection_type] = STATE(4437), - [sym_function_type] = STATE(4427), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), + [1774] = { + [sym_nested_identifier] = STATE(7046), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1774), + [sym_formal_parameters] = STATE(7001), + [sym_nested_type_identifier] = STATE(2222), + [sym__type] = STATE(2270), + [sym_constructor_type] = STATE(2373), + [sym__primary_type] = STATE(2228), + [sym_template_literal_type] = STATE(2259), + [sym_infer_type] = STATE(2373), + [sym_conditional_type] = STATE(2259), + [sym_generic_type] = STATE(2259), + [sym_type_query] = STATE(2259), + [sym_index_type_query] = STATE(2259), + [sym_lookup_type] = STATE(2259), + [sym_literal_type] = STATE(2259), + [sym__number] = STATE(2380), + [sym_existential_type] = STATE(2259), + [sym_flow_maybe_type] = STATE(2259), + [sym_parenthesized_type] = STATE(2259), + [sym_predefined_type] = STATE(2259), + [sym_object_type] = STATE(2259), + [sym_type_parameters] = STATE(6884), + [sym_array_type] = STATE(2259), + [sym_tuple_type] = STATE(2259), + [sym_readonly_type] = STATE(2373), + [sym_union_type] = STATE(2259), + [sym_intersection_type] = STATE(2259), + [sym_function_type] = STATE(2373), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3676), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3680), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3686), - [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_abstract] = ACTIONS(3688), - [anon_sym_infer] = ACTIONS(3692), - [anon_sym_keyof] = ACTIONS(3694), - [anon_sym_unique] = ACTIONS(3696), - [anon_sym_unknown] = ACTIONS(3676), - [anon_sym_never] = ACTIONS(3676), - [anon_sym_LBRACE_PIPE] = ACTIONS(3654), - [sym_html_comment] = ACTIONS(5), - }, - [1911] = { - [sym_nested_identifier] = STATE(7344), - [sym_string] = STATE(4431), - [sym_comment] = STATE(1911), - [sym_formal_parameters] = STATE(7555), - [sym_nested_type_identifier] = STATE(4170), - [sym__type] = STATE(4344), - [sym_constructor_type] = STATE(4427), - [sym__primary_type] = STATE(4425), - [sym_template_literal_type] = STATE(4437), - [sym_infer_type] = STATE(4427), - [sym_conditional_type] = STATE(4437), - [sym_generic_type] = STATE(4437), - [sym_type_query] = STATE(4437), - [sym_index_type_query] = STATE(4437), - [sym_lookup_type] = STATE(4437), - [sym_literal_type] = STATE(4437), - [sym__number] = STATE(4424), - [sym_existential_type] = STATE(4437), - [sym_flow_maybe_type] = STATE(4437), - [sym_parenthesized_type] = STATE(4437), - [sym_predefined_type] = STATE(4437), - [sym_object_type] = STATE(4437), - [sym_type_parameters] = STATE(6962), - [sym_array_type] = STATE(4437), - [sym_tuple_type] = STATE(4437), - [sym_readonly_type] = STATE(4427), - [sym_union_type] = STATE(4437), - [sym_intersection_type] = STATE(4437), - [sym_function_type] = STATE(4427), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4050), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1775] = { + [sym_nested_identifier] = STATE(7046), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1775), + [sym_formal_parameters] = STATE(7001), + [sym_nested_type_identifier] = STATE(2222), + [sym__type] = STATE(2271), + [sym_constructor_type] = STATE(2373), + [sym__primary_type] = STATE(2228), + [sym_template_literal_type] = STATE(2259), + [sym_infer_type] = STATE(2373), + [sym_conditional_type] = STATE(2259), + [sym_generic_type] = STATE(2259), + [sym_type_query] = STATE(2259), + [sym_index_type_query] = STATE(2259), + [sym_lookup_type] = STATE(2259), + [sym_literal_type] = STATE(2259), + [sym__number] = STATE(2380), + [sym_existential_type] = STATE(2259), + [sym_flow_maybe_type] = STATE(2259), + [sym_parenthesized_type] = STATE(2259), + [sym_predefined_type] = STATE(2259), + [sym_object_type] = STATE(2259), + [sym_type_parameters] = STATE(6884), + [sym_array_type] = STATE(2259), + [sym_tuple_type] = STATE(2259), + [sym_readonly_type] = STATE(2373), + [sym_union_type] = STATE(2259), + [sym_intersection_type] = STATE(2259), + [sym_function_type] = STATE(2373), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3676), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3680), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3686), - [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_abstract] = ACTIONS(3688), - [anon_sym_infer] = ACTIONS(3692), - [anon_sym_keyof] = ACTIONS(3694), - [anon_sym_unique] = ACTIONS(3696), - [anon_sym_unknown] = ACTIONS(3676), - [anon_sym_never] = ACTIONS(3676), - [anon_sym_LBRACE_PIPE] = ACTIONS(3654), - [sym_html_comment] = ACTIONS(5), - }, - [1912] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1912), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3837), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4050), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1776] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1776), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3688), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -218724,320 +207132,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1913] = { - [sym_nested_identifier] = STATE(7344), - [sym_string] = STATE(4431), - [sym_comment] = STATE(1913), - [sym_formal_parameters] = STATE(7555), - [sym_nested_type_identifier] = STATE(4170), - [sym__type] = STATE(4346), - [sym_constructor_type] = STATE(4427), - [sym__primary_type] = STATE(4425), - [sym_template_literal_type] = STATE(4437), - [sym_infer_type] = STATE(4427), - [sym_conditional_type] = STATE(4437), - [sym_generic_type] = STATE(4437), - [sym_type_query] = STATE(4437), - [sym_index_type_query] = STATE(4437), - [sym_lookup_type] = STATE(4437), - [sym_literal_type] = STATE(4437), - [sym__number] = STATE(4424), - [sym_existential_type] = STATE(4437), - [sym_flow_maybe_type] = STATE(4437), - [sym_parenthesized_type] = STATE(4437), - [sym_predefined_type] = STATE(4437), - [sym_object_type] = STATE(4437), - [sym_type_parameters] = STATE(6962), - [sym_array_type] = STATE(4437), - [sym_tuple_type] = STATE(4437), - [sym_readonly_type] = STATE(4427), - [sym_union_type] = STATE(4437), - [sym_intersection_type] = STATE(4437), - [sym_function_type] = STATE(4427), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3676), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3680), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3686), - [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_abstract] = ACTIONS(3688), - [anon_sym_infer] = ACTIONS(3692), - [anon_sym_keyof] = ACTIONS(3694), - [anon_sym_unique] = ACTIONS(3696), - [anon_sym_unknown] = ACTIONS(3676), - [anon_sym_never] = ACTIONS(3676), - [anon_sym_LBRACE_PIPE] = ACTIONS(3654), - [sym_html_comment] = ACTIONS(5), - }, - [1914] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1914), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(5451), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1915] = { - [sym_nested_identifier] = STATE(7344), - [sym_string] = STATE(4431), - [sym_comment] = STATE(1915), - [sym_formal_parameters] = STATE(7555), - [sym_nested_type_identifier] = STATE(4170), - [sym__type] = STATE(4243), - [sym_constructor_type] = STATE(4427), - [sym__primary_type] = STATE(4425), - [sym_template_literal_type] = STATE(4437), - [sym_infer_type] = STATE(4427), - [sym_conditional_type] = STATE(4437), - [sym_generic_type] = STATE(4437), - [sym_type_query] = STATE(4437), - [sym_index_type_query] = STATE(4437), - [sym_lookup_type] = STATE(4437), - [sym_literal_type] = STATE(4437), - [sym__number] = STATE(4424), - [sym_existential_type] = STATE(4437), - [sym_flow_maybe_type] = STATE(4437), - [sym_parenthesized_type] = STATE(4437), - [sym_predefined_type] = STATE(4437), - [sym_object_type] = STATE(4437), - [sym_type_parameters] = STATE(6962), - [sym_array_type] = STATE(4437), - [sym_tuple_type] = STATE(4437), - [sym_readonly_type] = STATE(4427), - [sym_union_type] = STATE(4437), - [sym_intersection_type] = STATE(4437), - [sym_function_type] = STATE(4427), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3676), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3680), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3686), - [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_abstract] = ACTIONS(3688), - [anon_sym_infer] = ACTIONS(3692), - [anon_sym_keyof] = ACTIONS(3694), - [anon_sym_unique] = ACTIONS(3696), - [anon_sym_unknown] = ACTIONS(3676), - [anon_sym_never] = ACTIONS(3676), - [anon_sym_LBRACE_PIPE] = ACTIONS(3654), - [sym_html_comment] = ACTIONS(5), - }, - [1916] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1916), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(5526), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), + [1777] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1777), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(4988), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1917] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1917), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3920), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1778] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1778), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3708), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -219079,178 +207274,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1918] = { - [sym_nested_identifier] = STATE(7344), - [sym_string] = STATE(4431), - [sym_comment] = STATE(1918), - [sym_formal_parameters] = STATE(7555), - [sym_nested_type_identifier] = STATE(4170), - [sym__type] = STATE(4273), - [sym_constructor_type] = STATE(4427), - [sym__primary_type] = STATE(4425), - [sym_template_literal_type] = STATE(4437), - [sym_infer_type] = STATE(4427), - [sym_conditional_type] = STATE(4437), - [sym_generic_type] = STATE(4437), - [sym_type_query] = STATE(4437), - [sym_index_type_query] = STATE(4437), - [sym_lookup_type] = STATE(4437), - [sym_literal_type] = STATE(4437), - [sym__number] = STATE(4424), - [sym_existential_type] = STATE(4437), - [sym_flow_maybe_type] = STATE(4437), - [sym_parenthesized_type] = STATE(4437), - [sym_predefined_type] = STATE(4437), - [sym_object_type] = STATE(4437), - [sym_type_parameters] = STATE(6962), - [sym_array_type] = STATE(4437), - [sym_tuple_type] = STATE(4437), - [sym_readonly_type] = STATE(4427), - [sym_union_type] = STATE(4437), - [sym_intersection_type] = STATE(4437), - [sym_function_type] = STATE(4427), + [1779] = { + [sym_nested_identifier] = STATE(7161), + [sym_string] = STATE(4286), + [sym_comment] = STATE(1779), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3987), + [sym__type] = STATE(6249), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(4231), + [sym_template_literal_type] = STATE(4298), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(4298), + [sym_generic_type] = STATE(4298), + [sym_type_query] = STATE(4298), + [sym_index_type_query] = STATE(4298), + [sym_lookup_type] = STATE(4298), + [sym_literal_type] = STATE(4298), + [sym__number] = STATE(4253), + [sym_existential_type] = STATE(4298), + [sym_flow_maybe_type] = STATE(4298), + [sym_parenthesized_type] = STATE(4298), + [sym_predefined_type] = STATE(4298), + [sym_object_type] = STATE(4298), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(4298), + [sym_tuple_type] = STATE(4298), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(4298), + [sym_intersection_type] = STATE(4298), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3676), + [anon_sym_void] = ACTIONS(3674), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3680), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3678), [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3686), - [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_abstract] = ACTIONS(3688), - [anon_sym_infer] = ACTIONS(3692), - [anon_sym_keyof] = ACTIONS(3694), - [anon_sym_unique] = ACTIONS(3696), - [anon_sym_unknown] = ACTIONS(3676), - [anon_sym_never] = ACTIONS(3676), - [anon_sym_LBRACE_PIPE] = ACTIONS(3654), - [sym_html_comment] = ACTIONS(5), - }, - [1919] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1919), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(4992), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1920] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1920), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5609), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(3684), + [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_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(3692), + [anon_sym_unique] = ACTIONS(3694), + [anon_sym_unknown] = ACTIONS(3674), + [anon_sym_never] = ACTIONS(3674), + [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [sym_html_comment] = ACTIONS(5), + }, + [1780] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1780), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5536), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -219292,746 +207416,604 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1921] = { - [sym_nested_identifier] = STATE(7344), - [sym_string] = STATE(4431), - [sym_comment] = STATE(1921), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(4170), - [sym__type] = STATE(6432), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(4331), - [sym_template_literal_type] = STATE(4437), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(4437), - [sym_generic_type] = STATE(4437), - [sym_type_query] = STATE(4437), - [sym_index_type_query] = STATE(4437), - [sym_lookup_type] = STATE(4437), - [sym_literal_type] = STATE(4437), - [sym__number] = STATE(4424), - [sym_existential_type] = STATE(4437), - [sym_flow_maybe_type] = STATE(4437), - [sym_parenthesized_type] = STATE(4437), - [sym_predefined_type] = STATE(4437), - [sym_object_type] = STATE(4437), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(4437), - [sym_tuple_type] = STATE(4437), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(4437), - [sym_intersection_type] = STATE(4437), - [sym_function_type] = STATE(3924), + [1781] = { + [sym_nested_identifier] = STATE(7161), + [sym_string] = STATE(4286), + [sym_comment] = STATE(1781), + [sym_formal_parameters] = STATE(7313), + [sym_nested_type_identifier] = STATE(3987), + [sym__type] = STATE(4162), + [sym_constructor_type] = STATE(4279), + [sym__primary_type] = STATE(4277), + [sym_template_literal_type] = STATE(4298), + [sym_infer_type] = STATE(4279), + [sym_conditional_type] = STATE(4298), + [sym_generic_type] = STATE(4298), + [sym_type_query] = STATE(4298), + [sym_index_type_query] = STATE(4298), + [sym_lookup_type] = STATE(4298), + [sym_literal_type] = STATE(4298), + [sym__number] = STATE(4253), + [sym_existential_type] = STATE(4298), + [sym_flow_maybe_type] = STATE(4298), + [sym_parenthesized_type] = STATE(4298), + [sym_predefined_type] = STATE(4298), + [sym_object_type] = STATE(4298), + [sym_type_parameters] = STATE(6810), + [sym_array_type] = STATE(4298), + [sym_tuple_type] = STATE(4298), + [sym_readonly_type] = STATE(4279), + [sym_union_type] = STATE(4298), + [sym_intersection_type] = STATE(4298), + [sym_function_type] = STATE(4279), [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3676), + [anon_sym_void] = ACTIONS(3674), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3680), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3678), [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(3686), - [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_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(3694), - [anon_sym_unique] = ACTIONS(3696), - [anon_sym_unknown] = ACTIONS(3676), - [anon_sym_never] = ACTIONS(3676), - [anon_sym_LBRACE_PIPE] = ACTIONS(3654), - [sym_html_comment] = ACTIONS(5), - }, - [1922] = { - [sym_nested_identifier] = STATE(7311), - [sym_string] = STATE(2943), - [sym_comment] = STATE(1922), - [sym_formal_parameters] = STATE(7434), - [sym_nested_type_identifier] = STATE(2799), - [sym__type] = STATE(2959), - [sym_constructor_type] = STATE(2950), - [sym__primary_type] = STATE(2951), - [sym_template_literal_type] = STATE(2939), - [sym_infer_type] = STATE(2950), - [sym_conditional_type] = STATE(2939), - [sym_generic_type] = STATE(2939), - [sym_type_query] = STATE(2939), - [sym_index_type_query] = STATE(2939), - [sym_lookup_type] = STATE(2939), - [sym_literal_type] = STATE(2939), - [sym__number] = STATE(2952), - [sym_existential_type] = STATE(2939), - [sym_flow_maybe_type] = STATE(2939), - [sym_parenthesized_type] = STATE(2939), - [sym_predefined_type] = STATE(2939), - [sym_object_type] = STATE(2939), - [sym_type_parameters] = STATE(6909), - [sym_array_type] = STATE(2939), - [sym_tuple_type] = STATE(2939), - [sym_readonly_type] = STATE(2950), - [sym_union_type] = STATE(2939), - [sym_intersection_type] = STATE(2939), - [sym_function_type] = STATE(2950), - [sym_identifier] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(3786), - [anon_sym_typeof] = ACTIONS(3788), - [anon_sym_const] = ACTIONS(4052), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(3794), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3800), - [anon_sym_PLUS] = ACTIONS(3802), - [anon_sym_DASH] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3804), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3806), - [sym_number] = ACTIONS(3808), - [sym_this] = ACTIONS(4040), - [sym_true] = ACTIONS(3808), - [sym_false] = ACTIONS(3808), - [sym_null] = ACTIONS(3808), - [sym_undefined] = ACTIONS(3808), - [anon_sym_readonly] = ACTIONS(3812), - [anon_sym_QMARK] = ACTIONS(3814), - [anon_sym_any] = ACTIONS(3804), - [anon_sym_number] = ACTIONS(3804), - [anon_sym_boolean] = ACTIONS(3804), - [anon_sym_string] = ACTIONS(3804), - [anon_sym_symbol] = ACTIONS(3804), - [anon_sym_object] = ACTIONS(3804), - [anon_sym_abstract] = ACTIONS(3816), - [anon_sym_infer] = ACTIONS(3820), - [anon_sym_keyof] = ACTIONS(3822), - [anon_sym_unique] = ACTIONS(3824), - [anon_sym_unknown] = ACTIONS(3804), - [anon_sym_never] = ACTIONS(3804), - [anon_sym_LBRACE_PIPE] = ACTIONS(3786), - [sym_html_comment] = ACTIONS(5), - }, - [1923] = { - [sym_nested_identifier] = STATE(7311), - [sym_string] = STATE(2943), - [sym_comment] = STATE(1923), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(2799), - [sym__type] = STATE(6166), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3023), - [sym_template_literal_type] = STATE(2939), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(2939), - [sym_generic_type] = STATE(2939), - [sym_type_query] = STATE(2939), - [sym_index_type_query] = STATE(2939), - [sym_lookup_type] = STATE(2939), - [sym_literal_type] = STATE(2939), - [sym__number] = STATE(2952), - [sym_existential_type] = STATE(2939), - [sym_flow_maybe_type] = STATE(2939), - [sym_parenthesized_type] = STATE(2939), - [sym_predefined_type] = STATE(2939), - [sym_object_type] = STATE(2939), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(2939), - [sym_tuple_type] = STATE(2939), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(2939), - [sym_intersection_type] = STATE(2939), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(3786), - [anon_sym_typeof] = ACTIONS(3788), - [anon_sym_const] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(3794), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [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_abstract] = ACTIONS(3686), + [anon_sym_infer] = ACTIONS(3690), + [anon_sym_keyof] = ACTIONS(3692), + [anon_sym_unique] = ACTIONS(3694), + [anon_sym_unknown] = ACTIONS(3674), + [anon_sym_never] = ACTIONS(3674), + [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [sym_html_comment] = ACTIONS(5), + }, + [1782] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1782), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(5710), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(4021), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3800), - [anon_sym_PLUS] = ACTIONS(3802), - [anon_sym_DASH] = ACTIONS(3802), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3804), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3806), - [sym_number] = ACTIONS(3808), - [sym_this] = ACTIONS(4040), - [sym_true] = ACTIONS(3808), - [sym_false] = ACTIONS(3808), - [sym_null] = ACTIONS(3808), - [sym_undefined] = ACTIONS(3808), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(3814), - [anon_sym_any] = ACTIONS(3804), - [anon_sym_number] = ACTIONS(3804), - [anon_sym_boolean] = ACTIONS(3804), - [anon_sym_string] = ACTIONS(3804), - [anon_sym_symbol] = ACTIONS(3804), - [anon_sym_object] = ACTIONS(3804), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), [anon_sym_abstract] = ACTIONS(199), [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(3822), - [anon_sym_unique] = ACTIONS(3824), - [anon_sym_unknown] = ACTIONS(3804), - [anon_sym_never] = ACTIONS(3804), - [anon_sym_LBRACE_PIPE] = ACTIONS(3786), - [sym_html_comment] = ACTIONS(5), - }, - [1924] = { - [sym_nested_identifier] = STATE(7311), - [sym_string] = STATE(2943), - [sym_comment] = STATE(1924), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(2799), - [sym__type] = STATE(6166), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3029), - [sym_template_literal_type] = STATE(2939), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(2939), - [sym_generic_type] = STATE(2939), - [sym_type_query] = STATE(2939), - [sym_index_type_query] = STATE(2939), - [sym_lookup_type] = STATE(2939), - [sym_literal_type] = STATE(2939), - [sym__number] = STATE(2952), - [sym_existential_type] = STATE(2939), - [sym_flow_maybe_type] = STATE(2939), - [sym_parenthesized_type] = STATE(2939), - [sym_predefined_type] = STATE(2939), - [sym_object_type] = STATE(2939), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(2939), - [sym_tuple_type] = STATE(2939), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(2939), - [sym_intersection_type] = STATE(2939), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(3786), - [anon_sym_typeof] = ACTIONS(3788), - [anon_sym_const] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(3794), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1783] = { + [sym_nested_identifier] = STATE(7161), + [sym_string] = STATE(4286), + [sym_comment] = STATE(1783), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3987), + [sym__type] = STATE(6249), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(4228), + [sym_template_literal_type] = STATE(4298), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(4298), + [sym_generic_type] = STATE(4298), + [sym_type_query] = STATE(4298), + [sym_index_type_query] = STATE(4298), + [sym_lookup_type] = STATE(4298), + [sym_literal_type] = STATE(4298), + [sym__number] = STATE(4253), + [sym_existential_type] = STATE(4298), + [sym_flow_maybe_type] = STATE(4298), + [sym_parenthesized_type] = STATE(4298), + [sym_predefined_type] = STATE(4298), + [sym_object_type] = STATE(4298), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(4298), + [sym_tuple_type] = STATE(4298), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(4298), + [sym_intersection_type] = STATE(4298), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3664), [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3800), - [anon_sym_PLUS] = ACTIONS(3802), - [anon_sym_DASH] = ACTIONS(3802), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3804), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3806), - [sym_number] = ACTIONS(3808), - [sym_this] = ACTIONS(4040), - [sym_true] = ACTIONS(3808), - [sym_false] = ACTIONS(3808), - [sym_null] = ACTIONS(3808), - [sym_undefined] = ACTIONS(3808), + [anon_sym_void] = ACTIONS(3674), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3678), + [sym_this] = ACTIONS(4044), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(3814), - [anon_sym_any] = ACTIONS(3804), - [anon_sym_number] = ACTIONS(3804), - [anon_sym_boolean] = ACTIONS(3804), - [anon_sym_string] = ACTIONS(3804), - [anon_sym_symbol] = ACTIONS(3804), - [anon_sym_object] = ACTIONS(3804), + [anon_sym_QMARK] = ACTIONS(3684), + [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_abstract] = ACTIONS(199), [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(3822), - [anon_sym_unique] = ACTIONS(3824), - [anon_sym_unknown] = ACTIONS(3804), - [anon_sym_never] = ACTIONS(3804), - [anon_sym_LBRACE_PIPE] = ACTIONS(3786), - [sym_html_comment] = ACTIONS(5), - }, - [1925] = { - [sym_nested_identifier] = STATE(7311), - [sym_string] = STATE(2943), - [sym_comment] = STATE(1925), - [sym_formal_parameters] = STATE(7434), - [sym_nested_type_identifier] = STATE(2799), - [sym__type] = STATE(3034), - [sym_constructor_type] = STATE(2950), - [sym__primary_type] = STATE(2951), - [sym_template_literal_type] = STATE(2939), - [sym_infer_type] = STATE(2950), - [sym_conditional_type] = STATE(2939), - [sym_generic_type] = STATE(2939), - [sym_type_query] = STATE(2939), - [sym_index_type_query] = STATE(2939), - [sym_lookup_type] = STATE(2939), - [sym_literal_type] = STATE(2939), - [sym__number] = STATE(2952), - [sym_existential_type] = STATE(2939), - [sym_flow_maybe_type] = STATE(2939), - [sym_parenthesized_type] = STATE(2939), - [sym_predefined_type] = STATE(2939), - [sym_object_type] = STATE(2939), - [sym_type_parameters] = STATE(6909), - [sym_array_type] = STATE(2939), - [sym_tuple_type] = STATE(2939), - [sym_readonly_type] = STATE(2950), - [sym_union_type] = STATE(2939), - [sym_intersection_type] = STATE(2939), - [sym_function_type] = STATE(2950), - [sym_identifier] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(3786), - [anon_sym_typeof] = ACTIONS(3788), - [anon_sym_const] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(3794), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3800), - [anon_sym_PLUS] = ACTIONS(3802), - [anon_sym_DASH] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3804), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3806), - [sym_number] = ACTIONS(3808), - [sym_this] = ACTIONS(4040), - [sym_true] = ACTIONS(3808), - [sym_false] = ACTIONS(3808), - [sym_null] = ACTIONS(3808), - [sym_undefined] = ACTIONS(3808), - [anon_sym_readonly] = ACTIONS(3812), - [anon_sym_QMARK] = ACTIONS(3814), - [anon_sym_any] = ACTIONS(3804), - [anon_sym_number] = ACTIONS(3804), - [anon_sym_boolean] = ACTIONS(3804), - [anon_sym_string] = ACTIONS(3804), - [anon_sym_symbol] = ACTIONS(3804), - [anon_sym_object] = ACTIONS(3804), - [anon_sym_abstract] = ACTIONS(3816), - [anon_sym_infer] = ACTIONS(3820), - [anon_sym_keyof] = ACTIONS(3822), - [anon_sym_unique] = ACTIONS(3824), - [anon_sym_unknown] = ACTIONS(3804), - [anon_sym_never] = ACTIONS(3804), - [anon_sym_LBRACE_PIPE] = ACTIONS(3786), - [sym_html_comment] = ACTIONS(5), - }, - [1926] = { - [sym_nested_identifier] = STATE(7311), - [sym_string] = STATE(2943), - [sym_comment] = STATE(1926), - [sym_formal_parameters] = STATE(7434), - [sym_nested_type_identifier] = STATE(2799), - [sym__type] = STATE(3046), - [sym_constructor_type] = STATE(2950), - [sym__primary_type] = STATE(2951), - [sym_template_literal_type] = STATE(2939), - [sym_infer_type] = STATE(2950), - [sym_conditional_type] = STATE(2939), - [sym_generic_type] = STATE(2939), - [sym_type_query] = STATE(2939), - [sym_index_type_query] = STATE(2939), - [sym_lookup_type] = STATE(2939), - [sym_literal_type] = STATE(2939), - [sym__number] = STATE(2952), - [sym_existential_type] = STATE(2939), - [sym_flow_maybe_type] = STATE(2939), - [sym_parenthesized_type] = STATE(2939), - [sym_predefined_type] = STATE(2939), - [sym_object_type] = STATE(2939), - [sym_type_parameters] = STATE(6909), - [sym_array_type] = STATE(2939), - [sym_tuple_type] = STATE(2939), - [sym_readonly_type] = STATE(2950), - [sym_union_type] = STATE(2939), - [sym_intersection_type] = STATE(2939), - [sym_function_type] = STATE(2950), - [sym_identifier] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(3786), - [anon_sym_typeof] = ACTIONS(3788), - [anon_sym_const] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(3794), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3800), - [anon_sym_PLUS] = ACTIONS(3802), - [anon_sym_DASH] = ACTIONS(3802), + [anon_sym_keyof] = ACTIONS(3692), + [anon_sym_unique] = ACTIONS(3694), + [anon_sym_unknown] = ACTIONS(3674), + [anon_sym_never] = ACTIONS(3674), + [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [sym_html_comment] = ACTIONS(5), + }, + [1784] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1784), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(3968), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3804), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3806), - [sym_number] = ACTIONS(3808), - [sym_this] = ACTIONS(4040), - [sym_true] = ACTIONS(3808), - [sym_false] = ACTIONS(3808), - [sym_null] = ACTIONS(3808), - [sym_undefined] = ACTIONS(3808), - [anon_sym_readonly] = ACTIONS(3812), - [anon_sym_QMARK] = ACTIONS(3814), - [anon_sym_any] = ACTIONS(3804), - [anon_sym_number] = ACTIONS(3804), - [anon_sym_boolean] = ACTIONS(3804), - [anon_sym_string] = ACTIONS(3804), - [anon_sym_symbol] = ACTIONS(3804), - [anon_sym_object] = ACTIONS(3804), - [anon_sym_abstract] = ACTIONS(3816), - [anon_sym_infer] = ACTIONS(3820), - [anon_sym_keyof] = ACTIONS(3822), - [anon_sym_unique] = ACTIONS(3824), - [anon_sym_unknown] = ACTIONS(3804), - [anon_sym_never] = ACTIONS(3804), - [anon_sym_LBRACE_PIPE] = ACTIONS(3786), - [sym_html_comment] = ACTIONS(5), - }, - [1927] = { - [sym_nested_identifier] = STATE(7311), - [sym_string] = STATE(2943), - [sym_comment] = STATE(1927), - [sym_formal_parameters] = STATE(7434), - [sym_nested_type_identifier] = STATE(2799), - [sym__type] = STATE(3058), - [sym_constructor_type] = STATE(2950), - [sym__primary_type] = STATE(2951), - [sym_template_literal_type] = STATE(2939), - [sym_infer_type] = STATE(2950), - [sym_conditional_type] = STATE(2939), - [sym_generic_type] = STATE(2939), - [sym_type_query] = STATE(2939), - [sym_index_type_query] = STATE(2939), - [sym_lookup_type] = STATE(2939), - [sym_literal_type] = STATE(2939), - [sym__number] = STATE(2952), - [sym_existential_type] = STATE(2939), - [sym_flow_maybe_type] = STATE(2939), - [sym_parenthesized_type] = STATE(2939), - [sym_predefined_type] = STATE(2939), - [sym_object_type] = STATE(2939), - [sym_type_parameters] = STATE(6909), - [sym_array_type] = STATE(2939), - [sym_tuple_type] = STATE(2939), - [sym_readonly_type] = STATE(2950), - [sym_union_type] = STATE(2939), - [sym_intersection_type] = STATE(2939), - [sym_function_type] = STATE(2950), - [sym_identifier] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(3786), - [anon_sym_typeof] = ACTIONS(3788), - [anon_sym_const] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(3794), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3800), - [anon_sym_PLUS] = ACTIONS(3802), - [anon_sym_DASH] = ACTIONS(3802), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1785] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1785), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(5259), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3804), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3806), - [sym_number] = ACTIONS(3808), - [sym_this] = ACTIONS(4040), - [sym_true] = ACTIONS(3808), - [sym_false] = ACTIONS(3808), - [sym_null] = ACTIONS(3808), - [sym_undefined] = ACTIONS(3808), - [anon_sym_readonly] = ACTIONS(3812), - [anon_sym_QMARK] = ACTIONS(3814), - [anon_sym_any] = ACTIONS(3804), - [anon_sym_number] = ACTIONS(3804), - [anon_sym_boolean] = ACTIONS(3804), - [anon_sym_string] = ACTIONS(3804), - [anon_sym_symbol] = ACTIONS(3804), - [anon_sym_object] = ACTIONS(3804), - [anon_sym_abstract] = ACTIONS(3816), - [anon_sym_infer] = ACTIONS(3820), - [anon_sym_keyof] = ACTIONS(3822), - [anon_sym_unique] = ACTIONS(3824), - [anon_sym_unknown] = ACTIONS(3804), - [anon_sym_never] = ACTIONS(3804), - [anon_sym_LBRACE_PIPE] = ACTIONS(3786), - [sym_html_comment] = ACTIONS(5), - }, - [1928] = { - [sym_nested_identifier] = STATE(7229), - [sym_string] = STATE(2505), - [sym_comment] = STATE(1928), - [sym_formal_parameters] = STATE(7316), - [sym_nested_type_identifier] = STATE(2360), - [sym__type] = STATE(2478), - [sym_constructor_type] = STATE(2501), - [sym__primary_type] = STATE(2499), - [sym_template_literal_type] = STATE(2507), - [sym_infer_type] = STATE(2501), - [sym_conditional_type] = STATE(2507), - [sym_generic_type] = STATE(2507), - [sym_type_query] = STATE(2507), - [sym_index_type_query] = STATE(2507), - [sym_lookup_type] = STATE(2507), - [sym_literal_type] = STATE(2507), - [sym__number] = STATE(2498), - [sym_existential_type] = STATE(2507), - [sym_flow_maybe_type] = STATE(2507), - [sym_parenthesized_type] = STATE(2507), - [sym_predefined_type] = STATE(2507), - [sym_object_type] = STATE(2507), - [sym_type_parameters] = STATE(7078), - [sym_array_type] = STATE(2507), - [sym_tuple_type] = STATE(2507), - [sym_readonly_type] = STATE(2501), - [sym_union_type] = STATE(2507), - [sym_intersection_type] = STATE(2507), - [sym_function_type] = STATE(2501), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3830), - [anon_sym_typeof] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3838), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3840), - [anon_sym_AMP] = ACTIONS(3842), - [anon_sym_PIPE] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3846), - [anon_sym_DASH] = ACTIONS(3846), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1786] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1786), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(5710), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(4019), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3848), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3850), - [sym_number] = ACTIONS(3852), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3852), - [sym_false] = ACTIONS(3852), - [sym_null] = ACTIONS(3852), - [sym_undefined] = ACTIONS(3852), - [anon_sym_readonly] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_number] = ACTIONS(3848), - [anon_sym_boolean] = ACTIONS(3848), - [anon_sym_string] = ACTIONS(3848), - [anon_sym_symbol] = ACTIONS(3848), - [anon_sym_object] = ACTIONS(3848), - [anon_sym_abstract] = ACTIONS(3860), - [anon_sym_infer] = ACTIONS(3864), - [anon_sym_keyof] = ACTIONS(3866), - [anon_sym_unique] = ACTIONS(3868), - [anon_sym_unknown] = ACTIONS(3848), - [anon_sym_never] = ACTIONS(3848), - [anon_sym_LBRACE_PIPE] = ACTIONS(3830), - [sym_html_comment] = ACTIONS(5), - }, - [1929] = { - [sym_nested_identifier] = STATE(7229), - [sym_string] = STATE(2505), - [sym_comment] = STATE(1929), - [sym_formal_parameters] = STATE(7316), - [sym_nested_type_identifier] = STATE(2360), - [sym__type] = STATE(2415), - [sym_constructor_type] = STATE(2501), - [sym__primary_type] = STATE(2499), - [sym_template_literal_type] = STATE(2507), - [sym_infer_type] = STATE(2501), - [sym_conditional_type] = STATE(2507), - [sym_generic_type] = STATE(2507), - [sym_type_query] = STATE(2507), - [sym_index_type_query] = STATE(2507), - [sym_lookup_type] = STATE(2507), - [sym_literal_type] = STATE(2507), - [sym__number] = STATE(2498), - [sym_existential_type] = STATE(2507), - [sym_flow_maybe_type] = STATE(2507), - [sym_parenthesized_type] = STATE(2507), - [sym_predefined_type] = STATE(2507), - [sym_object_type] = STATE(2507), - [sym_type_parameters] = STATE(7078), - [sym_array_type] = STATE(2507), - [sym_tuple_type] = STATE(2507), - [sym_readonly_type] = STATE(2501), - [sym_union_type] = STATE(2507), - [sym_intersection_type] = STATE(2507), - [sym_function_type] = STATE(2501), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3830), - [anon_sym_typeof] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3838), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3840), - [anon_sym_AMP] = ACTIONS(3842), - [anon_sym_PIPE] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3846), - [anon_sym_DASH] = ACTIONS(3846), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1787] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1787), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(3967), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3848), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3850), - [sym_number] = ACTIONS(3852), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3852), - [sym_false] = ACTIONS(3852), - [sym_null] = ACTIONS(3852), - [sym_undefined] = ACTIONS(3852), - [anon_sym_readonly] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_number] = ACTIONS(3848), - [anon_sym_boolean] = ACTIONS(3848), - [anon_sym_string] = ACTIONS(3848), - [anon_sym_symbol] = ACTIONS(3848), - [anon_sym_object] = ACTIONS(3848), - [anon_sym_abstract] = ACTIONS(3860), - [anon_sym_infer] = ACTIONS(3864), - [anon_sym_keyof] = ACTIONS(3866), - [anon_sym_unique] = ACTIONS(3868), - [anon_sym_unknown] = ACTIONS(3848), - [anon_sym_never] = ACTIONS(3848), - [anon_sym_LBRACE_PIPE] = ACTIONS(3830), - [sym_html_comment] = ACTIONS(5), - }, - [1930] = { - [sym_nested_identifier] = STATE(7229), - [sym_string] = STATE(2505), - [sym_comment] = STATE(1930), - [sym_formal_parameters] = STATE(7316), - [sym_nested_type_identifier] = STATE(2360), - [sym__type] = STATE(2431), - [sym_constructor_type] = STATE(2501), - [sym__primary_type] = STATE(2499), - [sym_template_literal_type] = STATE(2507), - [sym_infer_type] = STATE(2501), - [sym_conditional_type] = STATE(2507), - [sym_generic_type] = STATE(2507), - [sym_type_query] = STATE(2507), - [sym_index_type_query] = STATE(2507), - [sym_lookup_type] = STATE(2507), - [sym_literal_type] = STATE(2507), - [sym__number] = STATE(2498), - [sym_existential_type] = STATE(2507), - [sym_flow_maybe_type] = STATE(2507), - [sym_parenthesized_type] = STATE(2507), - [sym_predefined_type] = STATE(2507), - [sym_object_type] = STATE(2507), - [sym_type_parameters] = STATE(7078), - [sym_array_type] = STATE(2507), - [sym_tuple_type] = STATE(2507), - [sym_readonly_type] = STATE(2501), - [sym_union_type] = STATE(2507), - [sym_intersection_type] = STATE(2507), - [sym_function_type] = STATE(2501), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1788] = { + [sym_nested_identifier] = STATE(7046), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1788), + [sym_formal_parameters] = STATE(7001), + [sym_nested_type_identifier] = STATE(2222), + [sym__type] = STATE(2336), + [sym_constructor_type] = STATE(2373), + [sym__primary_type] = STATE(2228), + [sym_template_literal_type] = STATE(2259), + [sym_infer_type] = STATE(2373), + [sym_conditional_type] = STATE(2259), + [sym_generic_type] = STATE(2259), + [sym_type_query] = STATE(2259), + [sym_index_type_query] = STATE(2259), + [sym_lookup_type] = STATE(2259), + [sym_literal_type] = STATE(2259), + [sym__number] = STATE(2380), + [sym_existential_type] = STATE(2259), + [sym_flow_maybe_type] = STATE(2259), + [sym_parenthesized_type] = STATE(2259), + [sym_predefined_type] = STATE(2259), + [sym_object_type] = STATE(2259), + [sym_type_parameters] = STATE(6884), + [sym_array_type] = STATE(2259), + [sym_tuple_type] = STATE(2259), + [sym_readonly_type] = STATE(2373), + [sym_union_type] = STATE(2259), + [sym_intersection_type] = STATE(2259), + [sym_function_type] = STATE(2373), [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3830), - [anon_sym_typeof] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3838), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3840), - [anon_sym_AMP] = ACTIONS(3842), - [anon_sym_PIPE] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3846), - [anon_sym_DASH] = ACTIONS(3846), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3848), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3850), - [sym_number] = ACTIONS(3852), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3852), - [sym_false] = ACTIONS(3852), - [sym_null] = ACTIONS(3852), - [sym_undefined] = ACTIONS(3852), - [anon_sym_readonly] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_number] = ACTIONS(3848), - [anon_sym_boolean] = ACTIONS(3848), - [anon_sym_string] = ACTIONS(3848), - [anon_sym_symbol] = ACTIONS(3848), - [anon_sym_object] = ACTIONS(3848), - [anon_sym_abstract] = ACTIONS(3860), - [anon_sym_infer] = ACTIONS(3864), - [anon_sym_keyof] = ACTIONS(3866), - [anon_sym_unique] = ACTIONS(3868), - [anon_sym_unknown] = ACTIONS(3848), - [anon_sym_never] = ACTIONS(3848), - [anon_sym_LBRACE_PIPE] = ACTIONS(3830), - [sym_html_comment] = ACTIONS(5), - }, - [1931] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1931), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5630), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4050), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1789] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1789), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4791), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -220073,391 +208055,888 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1932] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1932), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(5087), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), + [1790] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1790), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(3974), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1933] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1933), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(4135), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1791] = { + [sym_nested_identifier] = STATE(7170), + [sym_string] = STATE(2890), + [sym_comment] = STATE(1791), + [sym_formal_parameters] = STATE(7340), + [sym_nested_type_identifier] = STATE(2590), + [sym__type] = STATE(2743), + [sym_constructor_type] = STATE(2897), + [sym__primary_type] = STATE(2898), + [sym_template_literal_type] = STATE(2886), + [sym_infer_type] = STATE(2897), + [sym_conditional_type] = STATE(2886), + [sym_generic_type] = STATE(2886), + [sym_type_query] = STATE(2886), + [sym_index_type_query] = STATE(2886), + [sym_lookup_type] = STATE(2886), + [sym_literal_type] = STATE(2886), + [sym__number] = STATE(2899), + [sym_existential_type] = STATE(2886), + [sym_flow_maybe_type] = STATE(2886), + [sym_parenthesized_type] = STATE(2886), + [sym_predefined_type] = STATE(2886), + [sym_object_type] = STATE(2886), + [sym_type_parameters] = STATE(6726), + [sym_array_type] = STATE(2886), + [sym_tuple_type] = STATE(2886), + [sym_readonly_type] = STATE(2897), + [sym_union_type] = STATE(2886), + [sym_intersection_type] = STATE(2886), + [sym_function_type] = STATE(2897), + [sym_identifier] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1934] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1934), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(4482), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4054), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_html_comment] = ACTIONS(5), + }, + [1792] = { + [sym_nested_identifier] = STATE(7046), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1792), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(2222), + [sym__type] = STATE(6000), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(2281), + [sym_template_literal_type] = STATE(2259), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(2259), + [sym_generic_type] = STATE(2259), + [sym_type_query] = STATE(2259), + [sym_index_type_query] = STATE(2259), + [sym_lookup_type] = STATE(2259), + [sym_literal_type] = STATE(2259), + [sym__number] = STATE(2380), + [sym_existential_type] = STATE(2259), + [sym_flow_maybe_type] = STATE(2259), + [sym_parenthesized_type] = STATE(2259), + [sym_predefined_type] = STATE(2259), + [sym_object_type] = STATE(2259), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(2259), + [sym_tuple_type] = STATE(2259), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(2259), + [sym_intersection_type] = STATE(2259), + [sym_function_type] = STATE(3763), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1935] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1935), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(5136), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4050), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(1910), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(199), + [anon_sym_infer] = ACTIONS(201), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1793] = { + [sym_nested_identifier] = STATE(7170), + [sym_string] = STATE(2890), + [sym_comment] = STATE(1793), + [sym_formal_parameters] = STATE(7340), + [sym_nested_type_identifier] = STATE(2590), + [sym__type] = STATE(2734), + [sym_constructor_type] = STATE(2897), + [sym__primary_type] = STATE(2898), + [sym_template_literal_type] = STATE(2886), + [sym_infer_type] = STATE(2897), + [sym_conditional_type] = STATE(2886), + [sym_generic_type] = STATE(2886), + [sym_type_query] = STATE(2886), + [sym_index_type_query] = STATE(2886), + [sym_lookup_type] = STATE(2886), + [sym_literal_type] = STATE(2886), + [sym__number] = STATE(2899), + [sym_existential_type] = STATE(2886), + [sym_flow_maybe_type] = STATE(2886), + [sym_parenthesized_type] = STATE(2886), + [sym_predefined_type] = STATE(2886), + [sym_object_type] = STATE(2886), + [sym_type_parameters] = STATE(6726), + [sym_array_type] = STATE(2886), + [sym_tuple_type] = STATE(2886), + [sym_readonly_type] = STATE(2897), + [sym_union_type] = STATE(2886), + [sym_intersection_type] = STATE(2886), + [sym_function_type] = STATE(2897), + [sym_identifier] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1936] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1936), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(5267), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4054), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_html_comment] = ACTIONS(5), + }, + [1794] = { + [sym_nested_identifier] = STATE(7161), + [sym_string] = STATE(4286), + [sym_comment] = STATE(1794), + [sym_formal_parameters] = STATE(7313), + [sym_nested_type_identifier] = STATE(3987), + [sym__type] = STATE(4157), + [sym_constructor_type] = STATE(4279), + [sym__primary_type] = STATE(4277), + [sym_template_literal_type] = STATE(4298), + [sym_infer_type] = STATE(4279), + [sym_conditional_type] = STATE(4298), + [sym_generic_type] = STATE(4298), + [sym_type_query] = STATE(4298), + [sym_index_type_query] = STATE(4298), + [sym_lookup_type] = STATE(4298), + [sym_literal_type] = STATE(4298), + [sym__number] = STATE(4253), + [sym_existential_type] = STATE(4298), + [sym_flow_maybe_type] = STATE(4298), + [sym_parenthesized_type] = STATE(4298), + [sym_predefined_type] = STATE(4298), + [sym_object_type] = STATE(4298), + [sym_type_parameters] = STATE(6810), + [sym_array_type] = STATE(4298), + [sym_tuple_type] = STATE(4298), + [sym_readonly_type] = STATE(4279), + [sym_union_type] = STATE(4298), + [sym_intersection_type] = STATE(4298), + [sym_function_type] = STATE(4279), + [sym_identifier] = ACTIONS(4042), + [anon_sym_STAR] = ACTIONS(3650), + [anon_sym_LBRACE] = ACTIONS(3652), + [anon_sym_typeof] = ACTIONS(3654), + [anon_sym_const] = ACTIONS(3656), + [anon_sym_LPAREN] = ACTIONS(3658), + [anon_sym_LBRACK] = ACTIONS(3660), + [anon_sym_DQUOTE] = ACTIONS(3662), + [anon_sym_SQUOTE] = ACTIONS(3664), + [anon_sym_new] = ACTIONS(3666), + [anon_sym_AMP] = ACTIONS(3668), + [anon_sym_PIPE] = ACTIONS(3670), + [anon_sym_PLUS] = ACTIONS(3672), + [anon_sym_DASH] = ACTIONS(3672), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1937] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1937), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5665), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [anon_sym_void] = ACTIONS(3674), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3676), + [sym_number] = ACTIONS(3678), + [sym_this] = ACTIONS(4044), + [sym_true] = ACTIONS(3678), + [sym_false] = ACTIONS(3678), + [sym_null] = ACTIONS(3678), + [sym_undefined] = ACTIONS(3678), + [anon_sym_readonly] = ACTIONS(3682), + [anon_sym_QMARK] = ACTIONS(3684), + [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_abstract] = ACTIONS(3686), + [anon_sym_infer] = ACTIONS(3690), + [anon_sym_keyof] = ACTIONS(3692), + [anon_sym_unique] = ACTIONS(3694), + [anon_sym_unknown] = ACTIONS(3674), + [anon_sym_never] = ACTIONS(3674), + [anon_sym_LBRACE_PIPE] = ACTIONS(3652), + [sym_html_comment] = ACTIONS(5), + }, + [1795] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1795), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(5244), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1796] = { + [sym_nested_identifier] = STATE(7046), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1796), + [sym_formal_parameters] = STATE(7001), + [sym_nested_type_identifier] = STATE(2222), + [sym__type] = STATE(2261), + [sym_constructor_type] = STATE(2373), + [sym__primary_type] = STATE(2228), + [sym_template_literal_type] = STATE(2259), + [sym_infer_type] = STATE(2373), + [sym_conditional_type] = STATE(2259), + [sym_generic_type] = STATE(2259), + [sym_type_query] = STATE(2259), + [sym_index_type_query] = STATE(2259), + [sym_lookup_type] = STATE(2259), + [sym_literal_type] = STATE(2259), + [sym__number] = STATE(2380), + [sym_existential_type] = STATE(2259), + [sym_flow_maybe_type] = STATE(2259), + [sym_parenthesized_type] = STATE(2259), + [sym_predefined_type] = STATE(2259), + [sym_object_type] = STATE(2259), + [sym_type_parameters] = STATE(6884), + [sym_array_type] = STATE(2259), + [sym_tuple_type] = STATE(2259), + [sym_readonly_type] = STATE(2373), + [sym_union_type] = STATE(2259), + [sym_intersection_type] = STATE(2259), + [sym_function_type] = STATE(2373), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4050), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1797] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1797), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(5233), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1798] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1798), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(5065), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1799] = { + [sym_nested_identifier] = STATE(7170), + [sym_string] = STATE(2890), + [sym_comment] = STATE(1799), + [sym_formal_parameters] = STATE(7340), + [sym_nested_type_identifier] = STATE(2590), + [sym__type] = STATE(2718), + [sym_constructor_type] = STATE(2897), + [sym__primary_type] = STATE(2898), + [sym_template_literal_type] = STATE(2886), + [sym_infer_type] = STATE(2897), + [sym_conditional_type] = STATE(2886), + [sym_generic_type] = STATE(2886), + [sym_type_query] = STATE(2886), + [sym_index_type_query] = STATE(2886), + [sym_lookup_type] = STATE(2886), + [sym_literal_type] = STATE(2886), + [sym__number] = STATE(2899), + [sym_existential_type] = STATE(2886), + [sym_flow_maybe_type] = STATE(2886), + [sym_parenthesized_type] = STATE(2886), + [sym_predefined_type] = STATE(2886), + [sym_object_type] = STATE(2886), + [sym_type_parameters] = STATE(6726), + [sym_array_type] = STATE(2886), + [sym_tuple_type] = STATE(2886), + [sym_readonly_type] = STATE(2897), + [sym_union_type] = STATE(2886), + [sym_intersection_type] = STATE(2886), + [sym_function_type] = STATE(2897), + [sym_identifier] = ACTIONS(4052), + [anon_sym_STAR] = ACTIONS(3832), + [anon_sym_LBRACE] = ACTIONS(3834), + [anon_sym_typeof] = ACTIONS(3836), + [anon_sym_const] = ACTIONS(3838), + [anon_sym_LPAREN] = ACTIONS(3840), + [anon_sym_LBRACK] = ACTIONS(3842), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3844), + [anon_sym_AMP] = ACTIONS(3846), + [anon_sym_PIPE] = ACTIONS(3848), + [anon_sym_PLUS] = ACTIONS(3850), + [anon_sym_DASH] = ACTIONS(3850), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(3852), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3854), + [sym_number] = ACTIONS(3856), + [sym_this] = ACTIONS(4054), + [sym_true] = ACTIONS(3856), + [sym_false] = ACTIONS(3856), + [sym_null] = ACTIONS(3856), + [sym_undefined] = ACTIONS(3856), + [anon_sym_readonly] = ACTIONS(3860), + [anon_sym_QMARK] = ACTIONS(3862), + [anon_sym_any] = ACTIONS(3852), + [anon_sym_number] = ACTIONS(3852), + [anon_sym_boolean] = ACTIONS(3852), + [anon_sym_string] = ACTIONS(3852), + [anon_sym_symbol] = ACTIONS(3852), + [anon_sym_object] = ACTIONS(3852), + [anon_sym_abstract] = ACTIONS(3864), + [anon_sym_infer] = ACTIONS(3868), + [anon_sym_keyof] = ACTIONS(3870), + [anon_sym_unique] = ACTIONS(3872), + [anon_sym_unknown] = ACTIONS(3852), + [anon_sym_never] = ACTIONS(3852), + [anon_sym_LBRACE_PIPE] = ACTIONS(3834), + [sym_html_comment] = ACTIONS(5), + }, + [1800] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1800), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(4000), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1801] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1801), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(3982), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1802] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1802), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5496), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -220499,178 +208978,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1938] = { - [sym_nested_identifier] = STATE(7229), - [sym_string] = STATE(2505), - [sym_comment] = STATE(1938), - [sym_formal_parameters] = STATE(7316), - [sym_nested_type_identifier] = STATE(2360), - [sym__type] = STATE(2476), - [sym_constructor_type] = STATE(2501), - [sym__primary_type] = STATE(2499), - [sym_template_literal_type] = STATE(2507), - [sym_infer_type] = STATE(2501), - [sym_conditional_type] = STATE(2507), - [sym_generic_type] = STATE(2507), - [sym_type_query] = STATE(2507), - [sym_index_type_query] = STATE(2507), - [sym_lookup_type] = STATE(2507), - [sym_literal_type] = STATE(2507), - [sym__number] = STATE(2498), - [sym_existential_type] = STATE(2507), - [sym_flow_maybe_type] = STATE(2507), - [sym_parenthesized_type] = STATE(2507), - [sym_predefined_type] = STATE(2507), - [sym_object_type] = STATE(2507), - [sym_type_parameters] = STATE(7078), - [sym_array_type] = STATE(2507), - [sym_tuple_type] = STATE(2507), - [sym_readonly_type] = STATE(2501), - [sym_union_type] = STATE(2507), - [sym_intersection_type] = STATE(2507), - [sym_function_type] = STATE(2501), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3830), - [anon_sym_typeof] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3838), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3840), - [anon_sym_AMP] = ACTIONS(3842), - [anon_sym_PIPE] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3846), - [anon_sym_DASH] = ACTIONS(3846), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3848), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3850), - [sym_number] = ACTIONS(3852), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3852), - [sym_false] = ACTIONS(3852), - [sym_null] = ACTIONS(3852), - [sym_undefined] = ACTIONS(3852), - [anon_sym_readonly] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_number] = ACTIONS(3848), - [anon_sym_boolean] = ACTIONS(3848), - [anon_sym_string] = ACTIONS(3848), - [anon_sym_symbol] = ACTIONS(3848), - [anon_sym_object] = ACTIONS(3848), - [anon_sym_abstract] = ACTIONS(3860), - [anon_sym_infer] = ACTIONS(3864), - [anon_sym_keyof] = ACTIONS(3866), - [anon_sym_unique] = ACTIONS(3868), - [anon_sym_unknown] = ACTIONS(3848), - [anon_sym_never] = ACTIONS(3848), - [anon_sym_LBRACE_PIPE] = ACTIONS(3830), - [sym_html_comment] = ACTIONS(5), - }, - [1939] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1939), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(5326), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1940] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1940), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5626), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1803] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1803), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5585), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -220712,249 +209049,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1941] = { - [sym_nested_identifier] = STATE(7229), - [sym_string] = STATE(2505), - [sym_comment] = STATE(1941), - [sym_formal_parameters] = STATE(7316), - [sym_nested_type_identifier] = STATE(2360), - [sym__type] = STATE(2465), - [sym_constructor_type] = STATE(2501), - [sym__primary_type] = STATE(2499), - [sym_template_literal_type] = STATE(2507), - [sym_infer_type] = STATE(2501), - [sym_conditional_type] = STATE(2507), - [sym_generic_type] = STATE(2507), - [sym_type_query] = STATE(2507), - [sym_index_type_query] = STATE(2507), - [sym_lookup_type] = STATE(2507), - [sym_literal_type] = STATE(2507), - [sym__number] = STATE(2498), - [sym_existential_type] = STATE(2507), - [sym_flow_maybe_type] = STATE(2507), - [sym_parenthesized_type] = STATE(2507), - [sym_predefined_type] = STATE(2507), - [sym_object_type] = STATE(2507), - [sym_type_parameters] = STATE(7078), - [sym_array_type] = STATE(2507), - [sym_tuple_type] = STATE(2507), - [sym_readonly_type] = STATE(2501), - [sym_union_type] = STATE(2507), - [sym_intersection_type] = STATE(2507), - [sym_function_type] = STATE(2501), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3830), - [anon_sym_typeof] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3838), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3840), - [anon_sym_AMP] = ACTIONS(3842), - [anon_sym_PIPE] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3846), - [anon_sym_DASH] = ACTIONS(3846), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3848), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3850), - [sym_number] = ACTIONS(3852), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3852), - [sym_false] = ACTIONS(3852), - [sym_null] = ACTIONS(3852), - [sym_undefined] = ACTIONS(3852), - [anon_sym_readonly] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_number] = ACTIONS(3848), - [anon_sym_boolean] = ACTIONS(3848), - [anon_sym_string] = ACTIONS(3848), - [anon_sym_symbol] = ACTIONS(3848), - [anon_sym_object] = ACTIONS(3848), - [anon_sym_abstract] = ACTIONS(3860), - [anon_sym_infer] = ACTIONS(3864), - [anon_sym_keyof] = ACTIONS(3866), - [anon_sym_unique] = ACTIONS(3868), - [anon_sym_unknown] = ACTIONS(3848), - [anon_sym_never] = ACTIONS(3848), - [anon_sym_LBRACE_PIPE] = ACTIONS(3830), - [sym_html_comment] = ACTIONS(5), - }, - [1942] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1942), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(4794), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), + [1804] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1804), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(5202), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), [sym_html_comment] = ACTIONS(5), }, - [1943] = { - [sym_nested_identifier] = STATE(7229), - [sym_string] = STATE(2505), - [sym_comment] = STATE(1943), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(2360), - [sym__type] = STATE(6183), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(2463), - [sym_template_literal_type] = STATE(2507), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(2507), - [sym_generic_type] = STATE(2507), - [sym_type_query] = STATE(2507), - [sym_index_type_query] = STATE(2507), - [sym_lookup_type] = STATE(2507), - [sym_literal_type] = STATE(2507), - [sym__number] = STATE(2498), - [sym_existential_type] = STATE(2507), - [sym_flow_maybe_type] = STATE(2507), - [sym_parenthesized_type] = STATE(2507), - [sym_predefined_type] = STATE(2507), - [sym_object_type] = STATE(2507), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(2507), - [sym_tuple_type] = STATE(2507), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(2507), - [sym_intersection_type] = STATE(2507), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3830), - [anon_sym_typeof] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3838), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(3842), - [anon_sym_PIPE] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3846), - [anon_sym_DASH] = ACTIONS(3846), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3848), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3850), - [sym_number] = ACTIONS(3852), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3852), - [sym_false] = ACTIONS(3852), - [sym_null] = ACTIONS(3852), - [sym_undefined] = ACTIONS(3852), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_number] = ACTIONS(3848), - [anon_sym_boolean] = ACTIONS(3848), - [anon_sym_string] = ACTIONS(3848), - [anon_sym_symbol] = ACTIONS(3848), - [anon_sym_object] = ACTIONS(3848), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(3866), - [anon_sym_unique] = ACTIONS(3868), - [anon_sym_unknown] = ACTIONS(3848), - [anon_sym_never] = ACTIONS(3848), - [anon_sym_LBRACE_PIPE] = ACTIONS(3830), - [sym_html_comment] = ACTIONS(5), - }, - [1944] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1944), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(3921), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1805] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1805), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5497), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -220996,462 +209191,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1945] = { - [sym_nested_identifier] = STATE(7344), - [sym_string] = STATE(4431), - [sym_comment] = STATE(1945), - [sym_formal_parameters] = STATE(7555), - [sym_nested_type_identifier] = STATE(4170), - [sym__type] = STATE(4274), - [sym_constructor_type] = STATE(4427), - [sym__primary_type] = STATE(4425), - [sym_template_literal_type] = STATE(4437), - [sym_infer_type] = STATE(4427), - [sym_conditional_type] = STATE(4437), - [sym_generic_type] = STATE(4437), - [sym_type_query] = STATE(4437), - [sym_index_type_query] = STATE(4437), - [sym_lookup_type] = STATE(4437), - [sym_literal_type] = STATE(4437), - [sym__number] = STATE(4424), - [sym_existential_type] = STATE(4437), - [sym_flow_maybe_type] = STATE(4437), - [sym_parenthesized_type] = STATE(4437), - [sym_predefined_type] = STATE(4437), - [sym_object_type] = STATE(4437), - [sym_type_parameters] = STATE(6962), - [sym_array_type] = STATE(4437), - [sym_tuple_type] = STATE(4437), - [sym_readonly_type] = STATE(4427), - [sym_union_type] = STATE(4437), - [sym_intersection_type] = STATE(4437), - [sym_function_type] = STATE(4427), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3676), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3680), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3686), - [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_abstract] = ACTIONS(3688), - [anon_sym_infer] = ACTIONS(3692), - [anon_sym_keyof] = ACTIONS(3694), - [anon_sym_unique] = ACTIONS(3696), - [anon_sym_unknown] = ACTIONS(3676), - [anon_sym_never] = ACTIONS(3676), - [anon_sym_LBRACE_PIPE] = ACTIONS(3654), - [sym_html_comment] = ACTIONS(5), - }, - [1946] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1946), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5671), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), + [1806] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1806), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(5343), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), [sym_html_comment] = ACTIONS(5), }, - [1947] = { - [sym_nested_identifier] = STATE(7311), - [sym_string] = STATE(2943), - [sym_comment] = STATE(1947), - [sym_formal_parameters] = STATE(7434), - [sym_nested_type_identifier] = STATE(2799), - [sym__type] = STATE(2833), - [sym_constructor_type] = STATE(2950), - [sym__primary_type] = STATE(2951), - [sym_template_literal_type] = STATE(2939), - [sym_infer_type] = STATE(2950), - [sym_conditional_type] = STATE(2939), - [sym_generic_type] = STATE(2939), - [sym_type_query] = STATE(2939), - [sym_index_type_query] = STATE(2939), - [sym_lookup_type] = STATE(2939), - [sym_literal_type] = STATE(2939), - [sym__number] = STATE(2952), - [sym_existential_type] = STATE(2939), - [sym_flow_maybe_type] = STATE(2939), - [sym_parenthesized_type] = STATE(2939), - [sym_predefined_type] = STATE(2939), - [sym_object_type] = STATE(2939), - [sym_type_parameters] = STATE(6909), - [sym_array_type] = STATE(2939), - [sym_tuple_type] = STATE(2939), - [sym_readonly_type] = STATE(2950), - [sym_union_type] = STATE(2939), - [sym_intersection_type] = STATE(2939), - [sym_function_type] = STATE(2950), - [sym_identifier] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(3786), - [anon_sym_typeof] = ACTIONS(3788), - [anon_sym_const] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(3794), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3800), - [anon_sym_PLUS] = ACTIONS(3802), - [anon_sym_DASH] = ACTIONS(3802), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3804), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3806), - [sym_number] = ACTIONS(3808), - [sym_this] = ACTIONS(4040), - [sym_true] = ACTIONS(3808), - [sym_false] = ACTIONS(3808), - [sym_null] = ACTIONS(3808), - [sym_undefined] = ACTIONS(3808), - [anon_sym_readonly] = ACTIONS(3812), - [anon_sym_QMARK] = ACTIONS(3814), - [anon_sym_any] = ACTIONS(3804), - [anon_sym_number] = ACTIONS(3804), - [anon_sym_boolean] = ACTIONS(3804), - [anon_sym_string] = ACTIONS(3804), - [anon_sym_symbol] = ACTIONS(3804), - [anon_sym_object] = ACTIONS(3804), - [anon_sym_abstract] = ACTIONS(3816), - [anon_sym_infer] = ACTIONS(3820), - [anon_sym_keyof] = ACTIONS(3822), - [anon_sym_unique] = ACTIONS(3824), - [anon_sym_unknown] = ACTIONS(3804), - [anon_sym_never] = ACTIONS(3804), - [anon_sym_LBRACE_PIPE] = ACTIONS(3786), - [sym_html_comment] = ACTIONS(5), - }, - [1948] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1948), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(5478), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1949] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1949), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(5435), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1950] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1950), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(5405), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), + [1807] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1807), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(3971), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1951] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1951), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5594), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1808] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1808), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5588), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -221493,36 +209404,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1952] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1952), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5199), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [1809] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1809), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(5589), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -221564,391 +209475,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1953] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1953), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(5269), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1954] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1954), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(5225), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1955] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1955), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(5198), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1956] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1956), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5675), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(1886), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(209), - [anon_sym_typeof] = ACTIONS(1888), - [anon_sym_const] = ACTIONS(130), - [anon_sym_LPAREN] = ACTIONS(1890), - [anon_sym_LBRACK] = ACTIONS(1892), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(163), - [anon_sym_PIPE] = ACTIONS(165), - [anon_sym_PLUS] = ACTIONS(1900), - [anon_sym_DASH] = ACTIONS(1900), + [1810] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1810), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(3990), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(207), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1904), - [sym_number] = ACTIONS(1906), - [sym_this] = ACTIONS(1908), - [sym_true] = ACTIONS(1906), - [sym_false] = ACTIONS(1906), - [sym_null] = ACTIONS(1906), - [sym_undefined] = ACTIONS(1906), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(195), - [anon_sym_any] = ACTIONS(207), - [anon_sym_number] = ACTIONS(207), - [anon_sym_boolean] = ACTIONS(207), - [anon_sym_string] = ACTIONS(207), - [anon_sym_symbol] = ACTIONS(207), - [anon_sym_object] = ACTIONS(207), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(203), - [anon_sym_unique] = ACTIONS(205), - [anon_sym_unknown] = ACTIONS(207), - [anon_sym_never] = ACTIONS(207), - [anon_sym_LBRACE_PIPE] = ACTIONS(209), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), [sym_html_comment] = ACTIONS(5), }, - [1957] = { - [sym_nested_identifier] = STATE(7311), - [sym_string] = STATE(2943), - [sym_comment] = STATE(1957), - [sym_formal_parameters] = STATE(7434), - [sym_nested_type_identifier] = STATE(2799), - [sym__type] = STATE(2831), - [sym_constructor_type] = STATE(2950), - [sym__primary_type] = STATE(2951), - [sym_template_literal_type] = STATE(2939), - [sym_infer_type] = STATE(2950), - [sym_conditional_type] = STATE(2939), - [sym_generic_type] = STATE(2939), - [sym_type_query] = STATE(2939), - [sym_index_type_query] = STATE(2939), - [sym_lookup_type] = STATE(2939), - [sym_literal_type] = STATE(2939), - [sym__number] = STATE(2952), - [sym_existential_type] = STATE(2939), - [sym_flow_maybe_type] = STATE(2939), - [sym_parenthesized_type] = STATE(2939), - [sym_predefined_type] = STATE(2939), - [sym_object_type] = STATE(2939), - [sym_type_parameters] = STATE(6909), - [sym_array_type] = STATE(2939), - [sym_tuple_type] = STATE(2939), - [sym_readonly_type] = STATE(2950), - [sym_union_type] = STATE(2939), - [sym_intersection_type] = STATE(2939), - [sym_function_type] = STATE(2950), - [sym_identifier] = ACTIONS(4038), - [anon_sym_STAR] = ACTIONS(3784), - [anon_sym_LBRACE] = ACTIONS(3786), - [anon_sym_typeof] = ACTIONS(3788), - [anon_sym_const] = ACTIONS(3790), - [anon_sym_LPAREN] = ACTIONS(3792), - [anon_sym_LBRACK] = ACTIONS(3794), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3796), - [anon_sym_AMP] = ACTIONS(3798), - [anon_sym_PIPE] = ACTIONS(3800), - [anon_sym_PLUS] = ACTIONS(3802), - [anon_sym_DASH] = ACTIONS(3802), + [1811] = { + [sym_nested_identifier] = STATE(7046), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1811), + [sym_formal_parameters] = STATE(7001), + [sym_nested_type_identifier] = STATE(2222), + [sym__type] = STATE(2279), + [sym_constructor_type] = STATE(2373), + [sym__primary_type] = STATE(2228), + [sym_template_literal_type] = STATE(2259), + [sym_infer_type] = STATE(2373), + [sym_conditional_type] = STATE(2259), + [sym_generic_type] = STATE(2259), + [sym_type_query] = STATE(2259), + [sym_index_type_query] = STATE(2259), + [sym_lookup_type] = STATE(2259), + [sym_literal_type] = STATE(2259), + [sym__number] = STATE(2380), + [sym_existential_type] = STATE(2259), + [sym_flow_maybe_type] = STATE(2259), + [sym_parenthesized_type] = STATE(2259), + [sym_predefined_type] = STATE(2259), + [sym_object_type] = STATE(2259), + [sym_type_parameters] = STATE(6884), + [sym_array_type] = STATE(2259), + [sym_tuple_type] = STATE(2259), + [sym_readonly_type] = STATE(2373), + [sym_union_type] = STATE(2259), + [sym_intersection_type] = STATE(2259), + [sym_function_type] = STATE(2373), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3804), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3806), - [sym_number] = ACTIONS(3808), - [sym_this] = ACTIONS(4040), - [sym_true] = ACTIONS(3808), - [sym_false] = ACTIONS(3808), - [sym_null] = ACTIONS(3808), - [sym_undefined] = ACTIONS(3808), - [anon_sym_readonly] = ACTIONS(3812), - [anon_sym_QMARK] = ACTIONS(3814), - [anon_sym_any] = ACTIONS(3804), - [anon_sym_number] = ACTIONS(3804), - [anon_sym_boolean] = ACTIONS(3804), - [anon_sym_string] = ACTIONS(3804), - [anon_sym_symbol] = ACTIONS(3804), - [anon_sym_object] = ACTIONS(3804), - [anon_sym_abstract] = ACTIONS(3816), - [anon_sym_infer] = ACTIONS(3820), - [anon_sym_keyof] = ACTIONS(3822), - [anon_sym_unique] = ACTIONS(3824), - [anon_sym_unknown] = ACTIONS(3804), - [anon_sym_never] = ACTIONS(3804), - [anon_sym_LBRACE_PIPE] = ACTIONS(3786), - [sym_html_comment] = ACTIONS(5), - }, - [1958] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1958), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5674), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4050), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1812] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1812), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(3783), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -221990,107 +209688,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1959] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1959), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(5105), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), + [1813] = { + [sym_nested_identifier] = STATE(7046), + [sym_string] = STATE(2318), + [sym_comment] = STATE(1813), + [sym_formal_parameters] = STATE(7001), + [sym_nested_type_identifier] = STATE(2222), + [sym__type] = STATE(2254), + [sym_constructor_type] = STATE(2373), + [sym__primary_type] = STATE(2228), + [sym_template_literal_type] = STATE(2259), + [sym_infer_type] = STATE(2373), + [sym_conditional_type] = STATE(2259), + [sym_generic_type] = STATE(2259), + [sym_type_query] = STATE(2259), + [sym_index_type_query] = STATE(2259), + [sym_lookup_type] = STATE(2259), + [sym_literal_type] = STATE(2259), + [sym__number] = STATE(2380), + [sym_existential_type] = STATE(2259), + [sym_flow_maybe_type] = STATE(2259), + [sym_parenthesized_type] = STATE(2259), + [sym_predefined_type] = STATE(2259), + [sym_object_type] = STATE(2259), + [sym_type_parameters] = STATE(6884), + [sym_array_type] = STATE(2259), + [sym_tuple_type] = STATE(2259), + [sym_readonly_type] = STATE(2373), + [sym_union_type] = STATE(2259), + [sym_intersection_type] = STATE(2259), + [sym_function_type] = STATE(2373), + [sym_identifier] = ACTIONS(4046), + [anon_sym_STAR] = ACTIONS(3788), + [anon_sym_LBRACE] = ACTIONS(3790), + [anon_sym_typeof] = ACTIONS(3792), + [anon_sym_const] = ACTIONS(3794), + [anon_sym_LPAREN] = ACTIONS(3796), + [anon_sym_LBRACK] = ACTIONS(3798), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_new] = ACTIONS(3800), + [anon_sym_AMP] = ACTIONS(3802), + [anon_sym_PIPE] = ACTIONS(3804), + [anon_sym_PLUS] = ACTIONS(3806), + [anon_sym_DASH] = ACTIONS(3806), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1960] = { - [sym_nested_identifier] = STATE(7283), - [sym_string] = STATE(3875), - [sym_comment] = STATE(1960), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(3821), - [sym__type] = STATE(5600), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(3930), - [sym_template_literal_type] = STATE(3873), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(3873), - [sym_generic_type] = STATE(3873), - [sym_type_query] = STATE(3873), - [sym_index_type_query] = STATE(3873), - [sym_lookup_type] = STATE(3873), - [sym_literal_type] = STATE(3873), - [sym__number] = STATE(3934), - [sym_existential_type] = STATE(3873), - [sym_flow_maybe_type] = STATE(3873), - [sym_parenthesized_type] = STATE(3873), - [sym_predefined_type] = STATE(3873), - [sym_object_type] = STATE(3873), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(3873), - [sym_tuple_type] = STATE(3873), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(3873), - [sym_intersection_type] = STATE(3873), - [sym_function_type] = STATE(3924), + [anon_sym_void] = ACTIONS(3808), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3810), + [sym_number] = ACTIONS(3812), + [sym_this] = ACTIONS(4050), + [sym_true] = ACTIONS(3812), + [sym_false] = ACTIONS(3812), + [sym_null] = ACTIONS(3812), + [sym_undefined] = ACTIONS(3812), + [anon_sym_readonly] = ACTIONS(3816), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_any] = ACTIONS(3808), + [anon_sym_number] = ACTIONS(3808), + [anon_sym_boolean] = ACTIONS(3808), + [anon_sym_string] = ACTIONS(3808), + [anon_sym_symbol] = ACTIONS(3808), + [anon_sym_object] = ACTIONS(3808), + [anon_sym_abstract] = ACTIONS(3820), + [anon_sym_infer] = ACTIONS(3824), + [anon_sym_keyof] = ACTIONS(3826), + [anon_sym_unique] = ACTIONS(3828), + [anon_sym_unknown] = ACTIONS(3808), + [anon_sym_never] = ACTIONS(3808), + [anon_sym_LBRACE_PIPE] = ACTIONS(3790), + [sym_html_comment] = ACTIONS(5), + }, + [1814] = { + [sym_nested_identifier] = STATE(7011), + [sym_string] = STATE(3758), + [sym_comment] = STATE(1814), + [sym_formal_parameters] = STATE(7012), + [sym_nested_type_identifier] = STATE(3662), + [sym__type] = STATE(4836), + [sym_constructor_type] = STATE(3763), + [sym__primary_type] = STATE(3681), + [sym_template_literal_type] = STATE(3753), + [sym_infer_type] = STATE(3763), + [sym_conditional_type] = STATE(3753), + [sym_generic_type] = STATE(3753), + [sym_type_query] = STATE(3753), + [sym_index_type_query] = STATE(3753), + [sym_lookup_type] = STATE(3753), + [sym_literal_type] = STATE(3753), + [sym__number] = STATE(3765), + [sym_existential_type] = STATE(3753), + [sym_flow_maybe_type] = STATE(3753), + [sym_parenthesized_type] = STATE(3753), + [sym_predefined_type] = STATE(3753), + [sym_object_type] = STATE(3753), + [sym_type_parameters] = STATE(6946), + [sym_array_type] = STATE(3753), + [sym_tuple_type] = STATE(3753), + [sym_readonly_type] = STATE(3763), + [sym_union_type] = STATE(3753), + [sym_intersection_type] = STATE(3753), + [sym_function_type] = STATE(3763), [sym_identifier] = ACTIONS(1886), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(209), @@ -222132,296 +209830,154 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(209), [sym_html_comment] = ACTIONS(5), }, - [1961] = { - [sym_nested_identifier] = STATE(7203), - [sym_string] = STATE(4142), - [sym_comment] = STATE(1961), - [sym_formal_parameters] = STATE(7533), - [sym_nested_type_identifier] = STATE(4018), - [sym__type] = STATE(5064), - [sym_constructor_type] = STATE(4150), - [sym__primary_type] = STATE(4152), - [sym_template_literal_type] = STATE(4126), - [sym_infer_type] = STATE(4150), - [sym_conditional_type] = STATE(4126), - [sym_generic_type] = STATE(4126), - [sym_type_query] = STATE(4126), - [sym_index_type_query] = STATE(4126), - [sym_lookup_type] = STATE(4126), - [sym_literal_type] = STATE(4126), - [sym__number] = STATE(4153), - [sym_existential_type] = STATE(4126), - [sym_flow_maybe_type] = STATE(4126), - [sym_parenthesized_type] = STATE(4126), - [sym_predefined_type] = STATE(4126), - [sym_object_type] = STATE(4126), - [sym_type_parameters] = STATE(7111), - [sym_array_type] = STATE(4126), - [sym_tuple_type] = STATE(4126), - [sym_readonly_type] = STATE(4150), - [sym_union_type] = STATE(4126), - [sym_intersection_type] = STATE(4126), - [sym_function_type] = STATE(4150), - [sym_identifier] = ACTIONS(1922), - [anon_sym_STAR] = ACTIONS(1296), - [anon_sym_LBRACE] = ACTIONS(1342), - [anon_sym_typeof] = ACTIONS(1924), - [anon_sym_const] = ACTIONS(1302), - [anon_sym_LPAREN] = ACTIONS(1926), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_new] = ACTIONS(1934), - [anon_sym_AMP] = ACTIONS(1310), - [anon_sym_PIPE] = ACTIONS(1312), - [anon_sym_PLUS] = ACTIONS(1936), - [anon_sym_DASH] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(1340), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1938), - [sym_number] = ACTIONS(1940), - [sym_this] = ACTIONS(1942), - [sym_true] = ACTIONS(1940), - [sym_false] = ACTIONS(1940), - [sym_null] = ACTIONS(1940), - [sym_undefined] = ACTIONS(1940), - [anon_sym_readonly] = ACTIONS(1944), - [anon_sym_QMARK] = ACTIONS(1328), - [anon_sym_any] = ACTIONS(1340), - [anon_sym_number] = ACTIONS(1340), - [anon_sym_boolean] = ACTIONS(1340), - [anon_sym_string] = ACTIONS(1340), - [anon_sym_symbol] = ACTIONS(1340), - [anon_sym_object] = ACTIONS(1340), - [anon_sym_abstract] = ACTIONS(1332), - [anon_sym_infer] = ACTIONS(1334), - [anon_sym_keyof] = ACTIONS(1336), - [anon_sym_unique] = ACTIONS(1338), - [anon_sym_unknown] = ACTIONS(1340), - [anon_sym_never] = ACTIONS(1340), - [anon_sym_LBRACE_PIPE] = ACTIONS(1342), - [sym_html_comment] = ACTIONS(5), - }, - [1962] = { - [sym_nested_identifier] = STATE(7229), - [sym_string] = STATE(2505), - [sym_comment] = STATE(1962), - [sym_formal_parameters] = STATE(7316), - [sym_nested_type_identifier] = STATE(2360), - [sym__type] = STATE(2430), - [sym_constructor_type] = STATE(2501), - [sym__primary_type] = STATE(2499), - [sym_template_literal_type] = STATE(2507), - [sym_infer_type] = STATE(2501), - [sym_conditional_type] = STATE(2507), - [sym_generic_type] = STATE(2507), - [sym_type_query] = STATE(2507), - [sym_index_type_query] = STATE(2507), - [sym_lookup_type] = STATE(2507), - [sym_literal_type] = STATE(2507), - [sym__number] = STATE(2498), - [sym_existential_type] = STATE(2507), - [sym_flow_maybe_type] = STATE(2507), - [sym_parenthesized_type] = STATE(2507), - [sym_predefined_type] = STATE(2507), - [sym_object_type] = STATE(2507), - [sym_type_parameters] = STATE(7078), - [sym_array_type] = STATE(2507), - [sym_tuple_type] = STATE(2507), - [sym_readonly_type] = STATE(2501), - [sym_union_type] = STATE(2507), - [sym_intersection_type] = STATE(2507), - [sym_function_type] = STATE(2501), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3830), - [anon_sym_typeof] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3838), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(3840), - [anon_sym_AMP] = ACTIONS(3842), - [anon_sym_PIPE] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3846), - [anon_sym_DASH] = ACTIONS(3846), - [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3848), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3850), - [sym_number] = ACTIONS(3852), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3852), - [sym_false] = ACTIONS(3852), - [sym_null] = ACTIONS(3852), - [sym_undefined] = ACTIONS(3852), - [anon_sym_readonly] = ACTIONS(3856), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_number] = ACTIONS(3848), - [anon_sym_boolean] = ACTIONS(3848), - [anon_sym_string] = ACTIONS(3848), - [anon_sym_symbol] = ACTIONS(3848), - [anon_sym_object] = ACTIONS(3848), - [anon_sym_abstract] = ACTIONS(3860), - [anon_sym_infer] = ACTIONS(3864), - [anon_sym_keyof] = ACTIONS(3866), - [anon_sym_unique] = ACTIONS(3868), - [anon_sym_unknown] = ACTIONS(3848), - [anon_sym_never] = ACTIONS(3848), - [anon_sym_LBRACE_PIPE] = ACTIONS(3830), - [sym_html_comment] = ACTIONS(5), - }, - [1963] = { - [sym_nested_identifier] = STATE(7344), - [sym_string] = STATE(4431), - [sym_comment] = STATE(1963), - [sym_formal_parameters] = STATE(7555), - [sym_nested_type_identifier] = STATE(4170), - [sym__type] = STATE(4246), - [sym_constructor_type] = STATE(4427), - [sym__primary_type] = STATE(4425), - [sym_template_literal_type] = STATE(4437), - [sym_infer_type] = STATE(4427), - [sym_conditional_type] = STATE(4437), - [sym_generic_type] = STATE(4437), - [sym_type_query] = STATE(4437), - [sym_index_type_query] = STATE(4437), - [sym_lookup_type] = STATE(4437), - [sym_literal_type] = STATE(4437), - [sym__number] = STATE(4424), - [sym_existential_type] = STATE(4437), - [sym_flow_maybe_type] = STATE(4437), - [sym_parenthesized_type] = STATE(4437), - [sym_predefined_type] = STATE(4437), - [sym_object_type] = STATE(4437), - [sym_type_parameters] = STATE(6962), - [sym_array_type] = STATE(4437), - [sym_tuple_type] = STATE(4437), - [sym_readonly_type] = STATE(4427), - [sym_union_type] = STATE(4437), - [sym_intersection_type] = STATE(4437), - [sym_function_type] = STATE(4427), - [sym_identifier] = ACTIONS(4042), - [anon_sym_STAR] = ACTIONS(3652), - [anon_sym_LBRACE] = ACTIONS(3654), - [anon_sym_typeof] = ACTIONS(3656), - [anon_sym_const] = ACTIONS(3658), - [anon_sym_LPAREN] = ACTIONS(3660), - [anon_sym_LBRACK] = ACTIONS(3662), - [anon_sym_DQUOTE] = ACTIONS(3664), - [anon_sym_SQUOTE] = ACTIONS(3666), - [anon_sym_new] = ACTIONS(3668), - [anon_sym_AMP] = ACTIONS(3670), - [anon_sym_PIPE] = ACTIONS(3672), - [anon_sym_PLUS] = ACTIONS(3674), - [anon_sym_DASH] = ACTIONS(3674), + [1815] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1815), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(5046), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3676), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3678), - [sym_number] = ACTIONS(3680), - [sym_this] = ACTIONS(4044), - [sym_true] = ACTIONS(3680), - [sym_false] = ACTIONS(3680), - [sym_null] = ACTIONS(3680), - [sym_undefined] = ACTIONS(3680), - [anon_sym_readonly] = ACTIONS(3684), - [anon_sym_QMARK] = ACTIONS(3686), - [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_abstract] = ACTIONS(3688), - [anon_sym_infer] = ACTIONS(3692), - [anon_sym_keyof] = ACTIONS(3694), - [anon_sym_unique] = ACTIONS(3696), - [anon_sym_unknown] = ACTIONS(3676), - [anon_sym_never] = ACTIONS(3676), - [anon_sym_LBRACE_PIPE] = ACTIONS(3654), - [sym_html_comment] = ACTIONS(5), - }, - [1964] = { - [sym_nested_identifier] = STATE(7229), - [sym_string] = STATE(2505), - [sym_comment] = STATE(1964), - [sym_formal_parameters] = STATE(7329), - [sym_nested_type_identifier] = STATE(2360), - [sym__type] = STATE(6183), - [sym_constructor_type] = STATE(3924), - [sym__primary_type] = STATE(2459), - [sym_template_literal_type] = STATE(2507), - [sym_infer_type] = STATE(3924), - [sym_conditional_type] = STATE(2507), - [sym_generic_type] = STATE(2507), - [sym_type_query] = STATE(2507), - [sym_index_type_query] = STATE(2507), - [sym_lookup_type] = STATE(2507), - [sym_literal_type] = STATE(2507), - [sym__number] = STATE(2498), - [sym_existential_type] = STATE(2507), - [sym_flow_maybe_type] = STATE(2507), - [sym_parenthesized_type] = STATE(2507), - [sym_predefined_type] = STATE(2507), - [sym_object_type] = STATE(2507), - [sym_type_parameters] = STATE(6758), - [sym_array_type] = STATE(2507), - [sym_tuple_type] = STATE(2507), - [sym_readonly_type] = STATE(3924), - [sym_union_type] = STATE(2507), - [sym_intersection_type] = STATE(2507), - [sym_function_type] = STATE(3924), - [sym_identifier] = ACTIONS(4046), - [anon_sym_STAR] = ACTIONS(3828), - [anon_sym_LBRACE] = ACTIONS(3830), - [anon_sym_typeof] = ACTIONS(3832), - [anon_sym_const] = ACTIONS(3834), - [anon_sym_LPAREN] = ACTIONS(3836), - [anon_sym_LBRACK] = ACTIONS(3838), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_new] = ACTIONS(1898), - [anon_sym_AMP] = ACTIONS(3842), - [anon_sym_PIPE] = ACTIONS(3844), - [anon_sym_PLUS] = ACTIONS(3846), - [anon_sym_DASH] = ACTIONS(3846), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1816] = { + [sym_nested_identifier] = STATE(7025), + [sym_string] = STATE(3992), + [sym_comment] = STATE(1816), + [sym_formal_parameters] = STATE(7448), + [sym_nested_type_identifier] = STATE(3882), + [sym__type] = STATE(5099), + [sym_constructor_type] = STATE(3996), + [sym__primary_type] = STATE(3997), + [sym_template_literal_type] = STATE(3991), + [sym_infer_type] = STATE(3996), + [sym_conditional_type] = STATE(3991), + [sym_generic_type] = STATE(3991), + [sym_type_query] = STATE(3991), + [sym_index_type_query] = STATE(3991), + [sym_lookup_type] = STATE(3991), + [sym_literal_type] = STATE(3991), + [sym__number] = STATE(3999), + [sym_existential_type] = STATE(3991), + [sym_flow_maybe_type] = STATE(3991), + [sym_parenthesized_type] = STATE(3991), + [sym_predefined_type] = STATE(3991), + [sym_object_type] = STATE(3991), + [sym_type_parameters] = STATE(6928), + [sym_array_type] = STATE(3991), + [sym_tuple_type] = STATE(3991), + [sym_readonly_type] = STATE(3996), + [sym_union_type] = STATE(3991), + [sym_intersection_type] = STATE(3991), + [sym_function_type] = STATE(3996), + [sym_identifier] = ACTIONS(1912), + [anon_sym_STAR] = ACTIONS(1298), + [anon_sym_LBRACE] = ACTIONS(1344), + [anon_sym_typeof] = ACTIONS(1914), + [anon_sym_const] = ACTIONS(1304), + [anon_sym_LPAREN] = ACTIONS(1916), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_new] = ACTIONS(1924), + [anon_sym_AMP] = ACTIONS(1312), + [anon_sym_PIPE] = ACTIONS(1314), + [anon_sym_PLUS] = ACTIONS(1926), + [anon_sym_DASH] = ACTIONS(1926), [anon_sym_LT] = ACTIONS(1902), - [anon_sym_void] = ACTIONS(3848), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3850), - [sym_number] = ACTIONS(3852), - [sym_this] = ACTIONS(4048), - [sym_true] = ACTIONS(3852), - [sym_false] = ACTIONS(3852), - [sym_null] = ACTIONS(3852), - [sym_undefined] = ACTIONS(3852), - [anon_sym_readonly] = ACTIONS(1910), - [anon_sym_QMARK] = ACTIONS(3858), - [anon_sym_any] = ACTIONS(3848), - [anon_sym_number] = ACTIONS(3848), - [anon_sym_boolean] = ACTIONS(3848), - [anon_sym_string] = ACTIONS(3848), - [anon_sym_symbol] = ACTIONS(3848), - [anon_sym_object] = ACTIONS(3848), - [anon_sym_abstract] = ACTIONS(199), - [anon_sym_infer] = ACTIONS(201), - [anon_sym_keyof] = ACTIONS(3866), - [anon_sym_unique] = ACTIONS(3868), - [anon_sym_unknown] = ACTIONS(3848), - [anon_sym_never] = ACTIONS(3848), - [anon_sym_LBRACE_PIPE] = ACTIONS(3830), - [sym_html_comment] = ACTIONS(5), - }, - [1965] = { - [sym_nested_identifier] = STATE(2519), - [sym_string] = STATE(2518), - [sym_comment] = STATE(1965), - [sym__module] = STATE(2555), - [sym_identifier] = ACTIONS(4054), + [anon_sym_void] = ACTIONS(1342), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1930), + [sym_this] = ACTIONS(1932), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1934), + [anon_sym_QMARK] = ACTIONS(1330), + [anon_sym_any] = ACTIONS(1342), + [anon_sym_number] = ACTIONS(1342), + [anon_sym_boolean] = ACTIONS(1342), + [anon_sym_string] = ACTIONS(1342), + [anon_sym_symbol] = ACTIONS(1342), + [anon_sym_object] = ACTIONS(1342), + [anon_sym_abstract] = ACTIONS(1334), + [anon_sym_infer] = ACTIONS(1336), + [anon_sym_keyof] = ACTIONS(1338), + [anon_sym_unique] = ACTIONS(1340), + [anon_sym_unknown] = ACTIONS(1342), + [anon_sym_never] = ACTIONS(1342), + [anon_sym_LBRACE_PIPE] = ACTIONS(1344), + [sym_html_comment] = ACTIONS(5), + }, + [1817] = { + [sym_nested_identifier] = STATE(2346), + [sym_string] = STATE(2345), + [sym_comment] = STATE(1817), + [sym__module] = STATE(2460), + [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), @@ -222486,12 +210042,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1966] = { - [sym_nested_identifier] = STATE(2519), - [sym_string] = STATE(2518), - [sym_comment] = STATE(1966), - [sym__module] = STATE(2555), - [sym_identifier] = ACTIONS(4054), + [1818] = { + [sym_nested_identifier] = STATE(2346), + [sym_string] = STATE(2345), + [sym_comment] = STATE(1818), + [sym__module] = STATE(2460), + [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), [anon_sym_EQ] = ACTIONS(213), [anon_sym_as] = ACTIONS(118), @@ -222556,24 +210112,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1967] = { - [sym_nested_identifier] = STATE(2519), - [sym_string] = STATE(2518), - [sym_comment] = STATE(1967), - [sym__module] = STATE(2555), - [sym_identifier] = ACTIONS(4054), + [1819] = { + [sym_nested_identifier] = STATE(2346), + [sym_string] = STATE(2345), + [sym_comment] = STATE(1819), + [sym__module] = STATE(2460), + [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(1119), - [anon_sym_RBRACE] = ACTIONS(1119), + [anon_sym_COMMA] = ACTIONS(1105), + [anon_sym_RBRACE] = ACTIONS(1105), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(1119), + [anon_sym_RPAREN] = ACTIONS(1105), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1119), + [anon_sym_COLON] = ACTIONS(1105), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1119), + [anon_sym_RBRACK] = ACTIONS(1105), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(143), @@ -222621,157 +210177,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1119), + [anon_sym_QMARK] = ACTIONS(1105), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1968] = { - [sym_export_statement] = STATE(4877), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(6763), - [sym_array_pattern] = STATE(4283), - [sym__call_signature] = STATE(5071), - [sym__destructuring_pattern] = STATE(7361), - [sym_spread_element] = STATE(6824), - [sym_string] = STATE(4151), - [sym_comment] = STATE(1968), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4200), - [sym_rest_pattern] = STATE(6763), - [sym_method_definition] = STATE(6824), - [sym_pair] = STATE(6824), - [sym_pair_pattern] = STATE(6763), - [sym__property_name] = STATE(4034), - [sym_computed_property_name] = STATE(4151), - [sym_method_signature] = STATE(4877), - [sym_accessibility_modifier] = STATE(3627), - [sym_override_modifier] = STATE(3671), - [sym_call_signature] = STATE(4877), - [sym_property_signature] = STATE(4877), - [sym_type_parameters] = STATE(6630), - [sym_construct_signature] = STATE(4877), - [sym_index_signature] = STATE(4877), - [aux_sym_export_statement_repeat1] = STATE(5733), - [sym_identifier] = ACTIONS(4056), - [anon_sym_export] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_type] = ACTIONS(4056), - [anon_sym_namespace] = ACTIONS(4056), - [anon_sym_LBRACE] = ACTIONS(3876), - [anon_sym_COMMA] = ACTIONS(4060), - [anon_sym_RBRACE] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(3882), - [anon_sym_LBRACK] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(4063), - [anon_sym_new] = ACTIONS(4065), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3892), - [anon_sym_LT] = ACTIONS(1902), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3894), - [sym_private_property_identifier] = ACTIONS(3894), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4067), - [anon_sym_readonly] = ACTIONS(4069), - [anon_sym_get] = ACTIONS(4071), - [anon_sym_set] = ACTIONS(4071), - [anon_sym_declare] = ACTIONS(4056), - [anon_sym_public] = ACTIONS(4073), - [anon_sym_private] = ACTIONS(4073), - [anon_sym_protected] = ACTIONS(4073), - [anon_sym_override] = ACTIONS(4075), - [anon_sym_module] = ACTIONS(4056), - [anon_sym_any] = ACTIONS(4056), - [anon_sym_number] = ACTIONS(4056), - [anon_sym_boolean] = ACTIONS(4056), - [anon_sym_string] = ACTIONS(4056), - [anon_sym_symbol] = ACTIONS(4056), - [anon_sym_object] = ACTIONS(4056), - [anon_sym_abstract] = ACTIONS(3906), - [sym_html_comment] = ACTIONS(5), - }, - [1969] = { - [sym_export_statement] = STATE(4893), - [sym_object_pattern] = STATE(4283), - [sym_object_assignment_pattern] = STATE(6763), - [sym_array_pattern] = STATE(4283), - [sym__call_signature] = STATE(5071), - [sym__destructuring_pattern] = STATE(7361), - [sym_spread_element] = STATE(6824), - [sym_string] = STATE(4151), - [sym_comment] = STATE(1969), - [sym_decorator] = STATE(5700), - [sym_formal_parameters] = STATE(4200), - [sym_rest_pattern] = STATE(6763), - [sym_method_definition] = STATE(6824), - [sym_pair] = STATE(6824), - [sym_pair_pattern] = STATE(6763), - [sym__property_name] = STATE(4034), - [sym_computed_property_name] = STATE(4151), - [sym_method_signature] = STATE(4893), - [sym_accessibility_modifier] = STATE(3627), - [sym_override_modifier] = STATE(3671), - [sym_call_signature] = STATE(4893), - [sym_property_signature] = STATE(4893), - [sym_type_parameters] = STATE(6630), - [sym_construct_signature] = STATE(4893), - [sym_index_signature] = STATE(4893), - [aux_sym_export_statement_repeat1] = STATE(5733), - [sym_identifier] = ACTIONS(4056), - [anon_sym_export] = ACTIONS(4058), - [anon_sym_STAR] = ACTIONS(3874), - [anon_sym_type] = ACTIONS(4056), - [anon_sym_namespace] = ACTIONS(4056), - [anon_sym_LBRACE] = ACTIONS(3876), - [anon_sym_COMMA] = ACTIONS(4060), - [anon_sym_RBRACE] = ACTIONS(4060), - [anon_sym_let] = ACTIONS(4056), - [anon_sym_LPAREN] = ACTIONS(3882), - [anon_sym_LBRACK] = ACTIONS(3886), - [anon_sym_DQUOTE] = ACTIONS(1930), - [anon_sym_SQUOTE] = ACTIONS(1932), - [anon_sym_async] = ACTIONS(4063), - [anon_sym_new] = ACTIONS(4065), - [anon_sym_DOT_DOT_DOT] = ACTIONS(243), - [anon_sym_PLUS] = ACTIONS(3892), - [anon_sym_DASH] = ACTIONS(3892), - [anon_sym_LT] = ACTIONS(1902), - [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3894), - [sym_private_property_identifier] = ACTIONS(3894), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4067), - [anon_sym_readonly] = ACTIONS(4069), - [anon_sym_get] = ACTIONS(4071), - [anon_sym_set] = ACTIONS(4071), - [anon_sym_declare] = ACTIONS(4056), - [anon_sym_public] = ACTIONS(4073), - [anon_sym_private] = ACTIONS(4073), - [anon_sym_protected] = ACTIONS(4073), - [anon_sym_override] = ACTIONS(4075), - [anon_sym_module] = ACTIONS(4056), - [anon_sym_any] = ACTIONS(4056), - [anon_sym_number] = ACTIONS(4056), - [anon_sym_boolean] = ACTIONS(4056), - [anon_sym_string] = ACTIONS(4056), - [anon_sym_symbol] = ACTIONS(4056), - [anon_sym_object] = ACTIONS(4056), - [anon_sym_abstract] = ACTIONS(3906), - [sym_html_comment] = ACTIONS(5), - }, - [1970] = { - [sym_nested_identifier] = STATE(2519), - [sym_string] = STATE(2518), - [sym_comment] = STATE(1970), - [sym__module] = STATE(2555), - [sym_identifier] = ACTIONS(4054), + [1820] = { + [sym_nested_identifier] = STATE(2346), + [sym_string] = STATE(2345), + [sym_comment] = STATE(1820), + [sym__module] = STATE(2460), + [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1165), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_RBRACE] = ACTIONS(118), @@ -222833,14 +210251,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1971] = { - [sym_nested_identifier] = STATE(2519), - [sym_string] = STATE(2518), - [sym_comment] = STATE(1971), - [sym__module] = STATE(2555), - [sym_identifier] = ACTIONS(4054), + [1821] = { + [sym_export_statement] = STATE(4680), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(6820), + [sym_array_pattern] = STATE(4288), + [sym__call_signature] = STATE(5095), + [sym__destructuring_pattern] = STATE(7130), + [sym_spread_element] = STATE(6775), + [sym_string] = STATE(3980), + [sym_comment] = STATE(1821), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4055), + [sym_rest_pattern] = STATE(6820), + [sym_method_definition] = STATE(6775), + [sym_pair] = STATE(6775), + [sym_pair_pattern] = STATE(6820), + [sym__property_name] = STATE(3844), + [sym_computed_property_name] = STATE(3980), + [sym_method_signature] = STATE(4680), + [sym_accessibility_modifier] = STATE(3477), + [sym_override_modifier] = STATE(3526), + [sym_call_signature] = STATE(4680), + [sym_property_signature] = STATE(4680), + [sym_type_parameters] = STATE(6769), + [sym_construct_signature] = STATE(4680), + [sym_index_signature] = STATE(4680), + [aux_sym_export_statement_repeat1] = STATE(5563), + [sym_identifier] = ACTIONS(4060), + [anon_sym_export] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_type] = ACTIONS(4060), + [anon_sym_namespace] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(4064), + [anon_sym_RBRACE] = ACTIONS(4064), + [anon_sym_let] = ACTIONS(4060), + [anon_sym_LPAREN] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(4067), + [anon_sym_new] = ACTIONS(4069), + [anon_sym_DOT_DOT_DOT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_LT] = ACTIONS(1902), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3898), + [sym_private_property_identifier] = ACTIONS(3898), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(4071), + [anon_sym_readonly] = ACTIONS(4073), + [anon_sym_get] = ACTIONS(4075), + [anon_sym_set] = ACTIONS(4075), + [anon_sym_declare] = ACTIONS(4060), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4079), + [anon_sym_module] = ACTIONS(4060), + [anon_sym_any] = ACTIONS(4060), + [anon_sym_number] = ACTIONS(4060), + [anon_sym_boolean] = ACTIONS(4060), + [anon_sym_string] = ACTIONS(4060), + [anon_sym_symbol] = ACTIONS(4060), + [anon_sym_object] = ACTIONS(4060), + [anon_sym_abstract] = ACTIONS(3910), + [sym_html_comment] = ACTIONS(5), + }, + [1822] = { + [sym_nested_identifier] = STATE(2346), + [sym_string] = STATE(2345), + [sym_comment] = STATE(1822), + [sym__module] = STATE(2460), + [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1135), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_RBRACE] = ACTIONS(118), @@ -222902,27 +210389,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1972] = { - [sym_nested_identifier] = STATE(407), - [sym_string] = STATE(406), - [sym_comment] = STATE(1972), - [sym__module] = STATE(456), - [sym_identifier] = ACTIONS(4012), + [1823] = { + [sym_export_statement] = STATE(4719), + [sym_object_pattern] = STATE(4288), + [sym_object_assignment_pattern] = STATE(6820), + [sym_array_pattern] = STATE(4288), + [sym__call_signature] = STATE(5095), + [sym__destructuring_pattern] = STATE(7130), + [sym_spread_element] = STATE(6775), + [sym_string] = STATE(3980), + [sym_comment] = STATE(1823), + [sym_decorator] = STATE(5410), + [sym_formal_parameters] = STATE(4055), + [sym_rest_pattern] = STATE(6820), + [sym_method_definition] = STATE(6775), + [sym_pair] = STATE(6775), + [sym_pair_pattern] = STATE(6820), + [sym__property_name] = STATE(3844), + [sym_computed_property_name] = STATE(3980), + [sym_method_signature] = STATE(4719), + [sym_accessibility_modifier] = STATE(3477), + [sym_override_modifier] = STATE(3526), + [sym_call_signature] = STATE(4719), + [sym_property_signature] = STATE(4719), + [sym_type_parameters] = STATE(6769), + [sym_construct_signature] = STATE(4719), + [sym_index_signature] = STATE(4719), + [aux_sym_export_statement_repeat1] = STATE(5563), + [sym_identifier] = ACTIONS(4060), + [anon_sym_export] = ACTIONS(4062), + [anon_sym_STAR] = ACTIONS(3878), + [anon_sym_type] = ACTIONS(4060), + [anon_sym_namespace] = ACTIONS(4060), + [anon_sym_LBRACE] = ACTIONS(3880), + [anon_sym_COMMA] = ACTIONS(4064), + [anon_sym_RBRACE] = ACTIONS(4064), + [anon_sym_let] = ACTIONS(4060), + [anon_sym_LPAREN] = ACTIONS(3886), + [anon_sym_LBRACK] = ACTIONS(3890), + [anon_sym_DQUOTE] = ACTIONS(1920), + [anon_sym_SQUOTE] = ACTIONS(1922), + [anon_sym_async] = ACTIONS(4067), + [anon_sym_new] = ACTIONS(4069), + [anon_sym_DOT_DOT_DOT] = ACTIONS(243), + [anon_sym_PLUS] = ACTIONS(3896), + [anon_sym_DASH] = ACTIONS(3896), + [anon_sym_LT] = ACTIONS(1902), + [aux_sym_comment_token1] = ACTIONS(3), + [sym_number] = ACTIONS(3898), + [sym_private_property_identifier] = ACTIONS(3898), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(4071), + [anon_sym_readonly] = ACTIONS(4073), + [anon_sym_get] = ACTIONS(4075), + [anon_sym_set] = ACTIONS(4075), + [anon_sym_declare] = ACTIONS(4060), + [anon_sym_public] = ACTIONS(4077), + [anon_sym_private] = ACTIONS(4077), + [anon_sym_protected] = ACTIONS(4077), + [anon_sym_override] = ACTIONS(4079), + [anon_sym_module] = ACTIONS(4060), + [anon_sym_any] = ACTIONS(4060), + [anon_sym_number] = ACTIONS(4060), + [anon_sym_boolean] = ACTIONS(4060), + [anon_sym_string] = ACTIONS(4060), + [anon_sym_symbol] = ACTIONS(4060), + [anon_sym_object] = ACTIONS(4060), + [anon_sym_abstract] = ACTIONS(3910), + [sym_html_comment] = ACTIONS(5), + }, + [1824] = { + [sym_nested_identifier] = STATE(308), + [sym_string] = STATE(307), + [sym_comment] = STATE(1824), + [sym__module] = STATE(408), + [sym_identifier] = ACTIONS(4081), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1197), + [anon_sym_COLON] = ACTIONS(1177), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4014), - [anon_sym_SQUOTE] = ACTIONS(4016), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4083), + [anon_sym_SQUOTE] = ACTIONS(4085), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -222970,27 +210526,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1973] = { - [sym_variable_declarator] = STATE(5759), - [sym_object_pattern] = STATE(4667), - [sym_array_pattern] = STATE(4667), - [sym__destructuring_pattern] = STATE(4584), - [sym_comment] = STATE(1973), - [sym_identifier] = ACTIONS(4018), + [1825] = { + [sym_nested_identifier] = STATE(5073), + [sym_string] = STATE(5616), + [sym_comment] = STATE(1825), + [sym__module] = STATE(6527), + [sym_identifier] = ACTIONS(4087), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4020), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1179), - [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_COLON] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -223038,14 +210594,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1974] = { - [sym_nested_identifier] = STATE(957), - [sym_string] = STATE(971), - [sym_comment] = STATE(1974), - [sym__module] = STATE(1237), - [sym_identifier] = ACTIONS(4077), + [1826] = { + [sym_nested_identifier] = STATE(293), + [sym_string] = STATE(291), + [sym_comment] = STATE(1826), + [sym__module] = STATE(319), + [sym_identifier] = ACTIONS(4089), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), @@ -223056,9 +210612,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4079), - [anon_sym_SQUOTE] = ACTIONS(4081), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4091), + [anon_sym_SQUOTE] = ACTIONS(4093), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -223106,27 +210662,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1975] = { - [sym_nested_identifier] = STATE(2519), - [sym_string] = STATE(2518), - [sym_comment] = STATE(1975), - [sym__module] = STATE(2555), - [sym_identifier] = ACTIONS(4054), + [1827] = { + [sym_variable_declarator] = STATE(5481), + [sym_object_pattern] = STATE(4389), + [sym_array_pattern] = STATE(4389), + [sym__destructuring_pattern] = STATE(4574), + [sym_comment] = STATE(1827), + [sym_identifier] = ACTIONS(4028), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4030), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1199), + [anon_sym_LBRACK] = ACTIONS(4032), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -223174,27 +210730,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1976] = { - [sym_variable_declarator] = STATE(5687), - [sym_object_pattern] = STATE(4667), - [sym_array_pattern] = STATE(4667), - [sym__destructuring_pattern] = STATE(4584), - [sym_comment] = STATE(1976), - [sym_identifier] = ACTIONS(4018), + [1828] = { + [sym_nested_identifier] = STATE(372), + [sym_string] = STATE(373), + [sym_comment] = STATE(1828), + [sym__module] = STATE(453), + [sym_identifier] = ACTIONS(4022), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4020), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_COLON] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4024), + [anon_sym_SQUOTE] = ACTIONS(4026), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -223242,27 +210798,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1977] = { - [sym_nested_identifier] = STATE(1194), - [sym_string] = STATE(1215), - [sym_comment] = STATE(1977), - [sym__module] = STATE(1581), - [sym_identifier] = ACTIONS(4006), + [1829] = { + [sym_variable_declarator] = STATE(5572), + [sym_object_pattern] = STATE(4389), + [sym_array_pattern] = STATE(4389), + [sym__destructuring_pattern] = STATE(4574), + [sym_comment] = STATE(1829), + [sym_identifier] = ACTIONS(4028), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4030), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1201), + [anon_sym_LBRACK] = ACTIONS(4032), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4008), - [anon_sym_SQUOTE] = ACTIONS(4010), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -223310,27 +210866,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1978] = { - [sym_variable_declarator] = STATE(5755), - [sym_object_pattern] = STATE(4667), - [sym_array_pattern] = STATE(4667), - [sym__destructuring_pattern] = STATE(4584), - [sym_comment] = STATE(1978), - [sym_identifier] = ACTIONS(4018), + [1830] = { + [sym_nested_identifier] = STATE(891), + [sym_string] = STATE(912), + [sym_comment] = STATE(1830), + [sym__module] = STATE(1083), + [sym_identifier] = ACTIONS(4095), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4020), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4097), + [anon_sym_SQUOTE] = ACTIONS(4099), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -223378,27 +210934,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1979] = { - [sym_variable_declarator] = STATE(5725), - [sym_object_pattern] = STATE(4667), - [sym_array_pattern] = STATE(4667), - [sym__destructuring_pattern] = STATE(4584), - [sym_comment] = STATE(1979), - [sym_identifier] = ACTIONS(4018), + [1831] = { + [sym_variable_declarator] = STATE(5443), + [sym_object_pattern] = STATE(4389), + [sym_array_pattern] = STATE(4389), + [sym__destructuring_pattern] = STATE(4574), + [sym_comment] = STATE(1831), + [sym_identifier] = ACTIONS(4028), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4030), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1197), - [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_COLON] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(4032), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -223446,27 +211002,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1980] = { - [sym_nested_identifier] = STATE(291), - [sym_string] = STATE(290), - [sym_comment] = STATE(1980), - [sym__module] = STATE(325), - [sym_identifier] = ACTIONS(4083), + [1832] = { + [sym_nested_identifier] = STATE(930), + [sym_string] = STATE(1068), + [sym_comment] = STATE(1832), + [sym__module] = STATE(1331), + [sym_identifier] = ACTIONS(4101), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1179), + [anon_sym_COLON] = ACTIONS(1201), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4085), - [anon_sym_SQUOTE] = ACTIONS(4087), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4103), + [anon_sym_SQUOTE] = ACTIONS(4105), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -223514,27 +211070,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1981] = { - [sym_nested_identifier] = STATE(925), - [sym_string] = STATE(1032), - [sym_comment] = STATE(1981), - [sym__module] = STATE(1357), - [sym_identifier] = ACTIONS(4089), + [1833] = { + [sym_nested_identifier] = STATE(2217), + [sym_string] = STATE(2221), + [sym_comment] = STATE(1833), + [sym__module] = STATE(2459), + [sym_identifier] = ACTIONS(4107), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1201), + [anon_sym_COLON] = ACTIONS(1197), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4091), - [anon_sym_SQUOTE] = ACTIONS(4093), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -223582,28 +211138,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1982] = { - [sym_nested_identifier] = STATE(2519), - [sym_string] = STATE(2518), - [sym_comment] = STATE(1982), - [sym__module] = STATE(2555), - [sym_identifier] = ACTIONS(4054), + [1834] = { + [sym_nested_identifier] = STATE(2217), + [sym_string] = STATE(2221), + [sym_comment] = STATE(1834), + [sym__module] = STATE(2459), + [sym_identifier] = ACTIONS(4107), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1135), + [anon_sym_EQ] = ACTIONS(1185), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(1208), - [anon_sym_RBRACE] = ACTIONS(1208), + [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1119), + [anon_sym_of] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1208), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(219), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(1179), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -223647,30 +211202,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1983] = { - [sym_nested_identifier] = STATE(341), - [sym_string] = STATE(337), - [sym_comment] = STATE(1983), - [sym__module] = STATE(381), - [sym_identifier] = ACTIONS(4095), + [1835] = { + [sym_variable_declarator] = STATE(5575), + [sym_object_pattern] = STATE(4389), + [sym_array_pattern] = STATE(4389), + [sym__destructuring_pattern] = STATE(4574), + [sym_comment] = STATE(1835), + [sym_identifier] = ACTIONS(4028), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4030), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1201), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1197), + [anon_sym_LBRACK] = ACTIONS(4032), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4097), - [anon_sym_SQUOTE] = ACTIONS(4099), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -223718,27 +211274,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1984] = { - [sym_nested_identifier] = STATE(343), - [sym_string] = STATE(321), - [sym_comment] = STATE(1984), - [sym__module] = STATE(418), - [sym_identifier] = ACTIONS(4101), + [1836] = { + [sym_nested_identifier] = STATE(2217), + [sym_string] = STATE(2221), + [sym_comment] = STATE(1836), + [sym__module] = STATE(2459), + [sym_identifier] = ACTIONS(4107), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1199), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4103), - [anon_sym_SQUOTE] = ACTIONS(4105), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -223786,27 +211342,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1985] = { - [sym_nested_identifier] = STATE(909), - [sym_string] = STATE(915), - [sym_comment] = STATE(1985), - [sym__module] = STATE(1093), - [sym_identifier] = ACTIONS(4107), + [1837] = { + [sym_nested_identifier] = STATE(947), + [sym_string] = STATE(1041), + [sym_comment] = STATE(1837), + [sym__module] = STATE(1375), + [sym_identifier] = ACTIONS(4109), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1179), + [anon_sym_COLON] = ACTIONS(1177), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4109), - [anon_sym_SQUOTE] = ACTIONS(4111), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4111), + [anon_sym_SQUOTE] = ACTIONS(4113), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -223854,27 +211410,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1986] = { - [sym_variable_declarator] = STATE(5658), - [sym_object_pattern] = STATE(4667), - [sym_array_pattern] = STATE(4667), - [sym__destructuring_pattern] = STATE(4584), - [sym_comment] = STATE(1986), - [sym_identifier] = ACTIONS(4018), + [1838] = { + [sym_variable_declarator] = STATE(5459), + [sym_object_pattern] = STATE(4389), + [sym_array_pattern] = STATE(4389), + [sym__destructuring_pattern] = STATE(4574), + [sym_comment] = STATE(1838), + [sym_identifier] = ACTIONS(4028), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4020), + [anon_sym_LBRACE] = ACTIONS(4030), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(1177), - [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_LBRACK] = ACTIONS(4032), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -223922,27 +211478,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1987] = { - [sym_nested_identifier] = STATE(2519), - [sym_string] = STATE(2518), - [sym_comment] = STATE(1987), - [sym__module] = STATE(2555), - [sym_identifier] = ACTIONS(4054), + [1839] = { + [sym_nested_identifier] = STATE(297), + [sym_string] = STATE(298), + [sym_comment] = STATE(1839), + [sym__module] = STATE(384), + [sym_identifier] = ACTIONS(4115), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1201), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(4117), + [anon_sym_SQUOTE] = ACTIONS(4119), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -223990,27 +211546,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1988] = { - [sym_nested_identifier] = STATE(5470), - [sym_string] = STATE(5576), - [sym_comment] = STATE(1988), - [sym__module] = STATE(6960), - [sym_identifier] = ACTIONS(4113), + [1840] = { + [sym_nested_identifier] = STATE(2346), + [sym_string] = STATE(2345), + [sym_comment] = STATE(1840), + [sym__module] = STATE(2460), + [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1177), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1894), - [anon_sym_SQUOTE] = ACTIONS(1896), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(1179), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -224058,27 +211614,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1989] = { - [sym_nested_identifier] = STATE(2361), - [sym_string] = STATE(2365), - [sym_comment] = STATE(1989), - [sym__module] = STATE(2548), - [sym_identifier] = ACTIONS(4115), + [1841] = { + [sym_nested_identifier] = STATE(2346), + [sym_string] = STATE(2345), + [sym_comment] = STATE(1841), + [sym__module] = STATE(2460), + [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1165), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(1208), + [anon_sym_RBRACE] = ACTIONS(1208), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1177), + [anon_sym_COLON] = ACTIONS(1105), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(1208), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(219), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -224122,31 +211679,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1990] = { - [sym_nested_identifier] = STATE(2361), - [sym_string] = STATE(2365), - [sym_comment] = STATE(1990), - [sym__module] = STATE(2548), - [sym_identifier] = ACTIONS(4115), + [1842] = { + [sym_nested_identifier] = STATE(2346), + [sym_string] = STATE(2345), + [sym_comment] = STATE(1842), + [sym__module] = STATE(2460), + [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1185), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(1191), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -224194,27 +211750,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1991] = { - [sym_nested_identifier] = STATE(2361), - [sym_string] = STATE(2365), - [sym_comment] = STATE(1991), - [sym__module] = STATE(2548), - [sym_identifier] = ACTIONS(4115), + [1843] = { + [sym_nested_identifier] = STATE(2217), + [sym_string] = STATE(2221), + [sym_comment] = STATE(1843), + [sym__module] = STATE(2459), + [sym_identifier] = ACTIONS(4107), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), + [anon_sym_in] = ACTIONS(1203), + [anon_sym_of] = ACTIONS(1206), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -224262,27 +211818,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1992] = { - [sym_nested_identifier] = STATE(2361), - [sym_string] = STATE(2365), - [sym_comment] = STATE(1992), - [sym__module] = STATE(2548), - [sym_identifier] = ACTIONS(4115), + [1844] = { + [sym_variable_declarator] = STATE(5540), + [sym_object_pattern] = STATE(4389), + [sym_array_pattern] = STATE(4389), + [sym__destructuring_pattern] = STATE(4072), + [sym_comment] = STATE(1844), + [sym_identifier] = ACTIONS(4121), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4030), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(1203), [anon_sym_of] = ACTIONS(1206), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(4032), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -224330,27 +211886,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1993] = { - [sym_variable_declarator] = STATE(5577), - [sym_object_pattern] = STATE(4667), - [sym_array_pattern] = STATE(4667), - [sym__destructuring_pattern] = STATE(4337), - [sym_comment] = STATE(1993), - [sym_identifier] = ACTIONS(4117), + [1845] = { + [sym_nested_identifier] = STATE(962), + [sym_string] = STATE(1161), + [sym_comment] = STATE(1845), + [sym__module] = STATE(1517), + [sym_identifier] = ACTIONS(4012), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1167), + [anon_sym_EQ] = ACTIONS(1175), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4020), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(1203), - [anon_sym_of] = ACTIONS(1206), + [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(4022), + [anon_sym_COLON] = ACTIONS(1195), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4014), + [anon_sym_SQUOTE] = ACTIONS(4016), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -224398,26 +211954,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1994] = { - [sym_nested_identifier] = STATE(2519), - [sym_string] = STATE(2518), - [sym_comment] = STATE(1994), - [sym__module] = STATE(2555), - [sym_identifier] = ACTIONS(4054), + [1846] = { + [sym_comment] = STATE(1846), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_identifier] = ACTIONS(4123), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1264), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(966), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(968), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(143), - [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(1270), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -224447,7 +212002,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2693), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -224460,30 +212015,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1995] = { - [sym_comment] = STATE(1995), - [aux_sym_object_repeat1] = STATE(6165), - [aux_sym_object_pattern_repeat1] = STATE(6171), - [sym_identifier] = ACTIONS(4119), + [1847] = { + [sym_nested_identifier] = STATE(2346), + [sym_string] = STATE(2345), + [sym_comment] = STATE(1847), + [sym__module] = STATE(2460), + [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(1260), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1051), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(143), + [anon_sym_SQUOTE] = ACTIONS(145), + [anon_sym_EQ_GT] = ACTIONS(1266), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -224513,7 +212070,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(118), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -224526,31 +212083,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(211), + [anon_sym_implements] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1996] = { - [sym_comment] = STATE(1996), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), - [sym_identifier] = ACTIONS(4119), + [1848] = { + [sym_comment] = STATE(1848), + [aux_sym_object_repeat1] = STATE(5868), + [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_identifier] = ACTIONS(4123), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1053), + [anon_sym_RBRACE] = ACTIONS(1041), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(968), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -224593,20 +212149,20 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1997] = { - [sym_nested_identifier] = STATE(2519), - [sym_string] = STATE(2518), - [sym_comment] = STATE(1997), - [sym__module] = STATE(2555), - [sym_identifier] = ACTIONS(4054), + [1849] = { + [sym_nested_identifier] = STATE(2346), + [sym_string] = STATE(2345), + [sym_comment] = STATE(1849), + [sym__module] = STATE(2460), + [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1117), + [anon_sym_EQ] = ACTIONS(1099), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), @@ -224618,7 +212174,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(143), [anon_sym_SQUOTE] = ACTIONS(145), - [anon_sym_EQ_GT] = ACTIONS(1270), + [anon_sym_EQ_GT] = ACTIONS(1266), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -224666,12 +212222,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1998] = { - [sym_nested_identifier] = STATE(2519), - [sym_string] = STATE(2518), - [sym_comment] = STATE(1998), - [sym__module] = STATE(2555), - [sym_identifier] = ACTIONS(4054), + [1850] = { + [sym_nested_identifier] = STATE(2346), + [sym_string] = STATE(2345), + [sym_comment] = STATE(1850), + [sym__module] = STATE(2460), + [sym_identifier] = ACTIONS(4058), [anon_sym_STAR] = ACTIONS(118), [anon_sym_EQ] = ACTIONS(1215), [anon_sym_as] = ACTIONS(118), @@ -224733,25 +212289,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(211), [sym_html_comment] = ACTIONS(5), }, - [1999] = { - [sym_comment] = STATE(1999), - [aux_sym_object_repeat1] = STATE(6333), - [aux_sym_object_pattern_repeat1] = STATE(6171), - [sym_identifier] = ACTIONS(4119), + [1851] = { + [sym_comment] = STATE(1851), + [aux_sym_object_repeat1] = STATE(6261), + [aux_sym_object_pattern_repeat1] = STATE(5869), + [sym_identifier] = ACTIONS(4123), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(960), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1043), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2693), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(968), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(979), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(159), [anon_sym_DASH_EQ] = ACTIONS(159), @@ -224794,7 +212350,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(987), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(211), [sym__ternary_qmark] = ACTIONS(211), @@ -224803,15 +212359,311 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }; static const uint16_t ts_small_parse_table[] = { - [0] = 15, + [0] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1016), 1, + ACTIONS(1232), 1, anon_sym_EQ, - ACTIONS(1043), 1, + ACTIONS(1238), 1, + anon_sym_EQ_GT, + ACTIONS(4109), 1, + sym_identifier, + ACTIONS(4111), 1, + anon_sym_DQUOTE, + ACTIONS(4113), 1, + anon_sym_SQUOTE, + STATE(947), 1, + sym_nested_identifier, + STATE(1041), 1, + sym_string, + STATE(1375), 1, + sym__module, + STATE(1852), 1, + sym_comment, + ACTIONS(211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(159), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 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, + [93] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(1853), 1, + sym_comment, + ACTIONS(4125), 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(2667), 1, + ACTIONS(4127), 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, + [168] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(1854), 1, + sym_comment, + ACTIONS(4129), 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(4131), 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, + [243] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1232), 1, + anon_sym_EQ, + ACTIONS(1238), 1, + anon_sym_EQ_GT, + ACTIONS(4095), 1, + sym_identifier, + ACTIONS(4097), 1, + anon_sym_DQUOTE, + ACTIONS(4099), 1, + anon_sym_SQUOTE, + STATE(891), 1, + sym_nested_identifier, + STATE(912), 1, + sym_string, + STATE(1083), 1, + sym__module, + STATE(1855), 1, + sym_comment, + ACTIONS(211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(159), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 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, + [336] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(960), 1, + anon_sym_EQ, + ACTIONS(987), 1, + anon_sym_QMARK, ACTIONS(2677), 1, anon_sym_LPAREN, ACTIONS(2680), 1, @@ -224822,11 +212674,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2000), 1, + ACTIONS(2710), 1, + anon_sym_RBRACE, + STATE(1856), 1, sym_comment, - STATE(6171), 1, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(6261), 1, aux_sym_object_repeat1, ACTIONS(2691), 15, anon_sym_PLUS_EQ, @@ -224883,54 +212737,423 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [95] = 16, + [431] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4123), 1, + STATE(1857), 1, + sym_comment, + ACTIONS(4133), 23, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(4129), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + 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(4135), 38, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4133), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4135), 1, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [506] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(143), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_SQUOTE, + ACTIONS(211), 1, + sym__ternary_qmark, + ACTIONS(1220), 1, + anon_sym_COLON, + ACTIONS(1224), 1, anon_sym_EQ_GT, - ACTIONS(4137), 1, + ACTIONS(1272), 1, + anon_sym_EQ, + ACTIONS(4058), 1, + sym_identifier, + STATE(1858), 1, + sym_comment, + STATE(2345), 1, + sym_string, + STATE(2346), 1, + sym_nested_identifier, + STATE(2460), 1, + sym__module, + ACTIONS(159), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 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, - ACTIONS(4141), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, - STATE(2001), 1, + 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, + [601] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1232), 1, + anon_sym_EQ, + ACTIONS(1238), 1, + anon_sym_EQ_GT, + ACTIONS(4022), 1, + sym_identifier, + ACTIONS(4024), 1, + anon_sym_DQUOTE, + ACTIONS(4026), 1, + anon_sym_SQUOTE, + STATE(372), 1, + sym_nested_identifier, + STATE(373), 1, + sym_string, + STATE(453), 1, + sym__module, + STATE(1859), 1, sym_comment, - STATE(3804), 1, - sym_arguments, - STATE(3877), 1, - sym_type_arguments, - ACTIONS(4127), 3, + ACTIONS(211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(159), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 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, + [694] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(124), 1, anon_sym_COMMA, + ACTIONS(143), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_SQUOTE, + ACTIONS(211), 1, + sym__ternary_qmark, + ACTIONS(216), 1, + anon_sym_RBRACK, + ACTIONS(1215), 1, + anon_sym_EQ, + ACTIONS(1224), 1, + anon_sym_EQ_GT, + ACTIONS(4058), 1, + sym_identifier, + STATE(1860), 1, + sym_comment, + STATE(2345), 1, + sym_string, + STATE(2346), 1, + sym_nested_identifier, + STATE(2460), 1, + sym__module, + ACTIONS(159), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 35, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_in, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4131), 3, 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, - ACTIONS(4125), 15, + 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, + [791] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1232), 1, + anon_sym_EQ, + ACTIONS(1238), 1, + anon_sym_EQ_GT, + ACTIONS(4028), 1, + sym_identifier, + ACTIONS(4030), 1, + anon_sym_LBRACE, + ACTIONS(4032), 1, + anon_sym_LBRACK, + STATE(1861), 1, + sym_comment, + STATE(4574), 1, + sym__destructuring_pattern, + STATE(5459), 1, + sym_variable_declarator, + ACTIONS(211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(4389), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(159), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 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, + [884] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1232), 1, + anon_sym_EQ, + ACTIONS(1238), 1, + anon_sym_EQ_GT, + ACTIONS(4028), 1, + sym_identifier, + ACTIONS(4030), 1, + anon_sym_LBRACE, + ACTIONS(4032), 1, + anon_sym_LBRACK, + STATE(1862), 1, + sym_comment, + STATE(4574), 1, + sym__destructuring_pattern, + STATE(5443), 1, + sym_variable_declarator, + ACTIONS(211), 2, + sym__automatic_semicolon, 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(4139), 15, + STATE(4389), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -224946,49 +213169,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 17, + ACTIONS(118), 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, - [192] = 14, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [977] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(1242), 1, - anon_sym_EQ_GT, - ACTIONS(1252), 1, + ACTIONS(1232), 1, anon_sym_EQ, - ACTIONS(4054), 1, + ACTIONS(1238), 1, + anon_sym_EQ_GT, + ACTIONS(4012), 1, sym_identifier, - STATE(2002), 1, - sym_comment, - STATE(2518), 1, - sym_string, - STATE(2519), 1, + ACTIONS(4014), 1, + anon_sym_DQUOTE, + ACTIONS(4016), 1, + anon_sym_SQUOTE, + STATE(962), 1, sym_nested_identifier, - STATE(2555), 1, + STATE(1161), 1, + sym_string, + STATE(1517), 1, sym__module, + STATE(1863), 1, + sym_comment, + ACTIONS(211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -225005,14 +213247,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 37, + ACTIONS(118), 36, anon_sym_STAR, anon_sym_as, - anon_sym_RBRACE, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -225043,51 +213284,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [285] = 5, + [1070] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2003), 1, - sym_comment, - ACTIONS(4143), 23, - anon_sym_STAR, + ACTIONS(4139), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4145), 1, + anon_sym_LPAREN, + ACTIONS(4149), 1, + anon_sym_DOT, + ACTIONS(4151), 1, + anon_sym_EQ_GT, + ACTIONS(4153), 1, + anon_sym_QMARK_DOT, + ACTIONS(4157), 1, + anon_sym_LT, + STATE(1864), 1, + sym_comment, + STATE(3666), 1, + sym_arguments, + STATE(3713), 1, + sym_type_arguments, + ACTIONS(4143), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4147), 3, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - 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(4145), 38, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, 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, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225103,87 +213347,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [360] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2004), 1, - sym_comment, - ACTIONS(4147), 23, + ACTIONS(4137), 17, 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(4149), 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, - [435] = 14, + [1167] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -225192,22 +213374,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1238), 1, anon_sym_EQ_GT, - ACTIONS(4018), 1, + ACTIONS(4028), 1, sym_identifier, - ACTIONS(4020), 1, + ACTIONS(4030), 1, anon_sym_LBRACE, - ACTIONS(4022), 1, + ACTIONS(4032), 1, anon_sym_LBRACK, - STATE(2005), 1, + STATE(1865), 1, sym_comment, - STATE(4584), 1, + STATE(4574), 1, sym__destructuring_pattern, - STATE(5759), 1, + STATE(5481), 1, sym_variable_declarator, ACTIONS(211), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4667), 2, + STATE(4389), 2, sym_object_pattern, sym_array_pattern, ACTIONS(159), 15, @@ -225262,51 +213444,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [528] = 5, + [1260] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2006), 1, - sym_comment, - ACTIONS(4151), 23, - anon_sym_STAR, + ACTIONS(4139), 1, 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, + ACTIONS(4151), 1, + anon_sym_EQ_GT, + ACTIONS(4159), 1, + anon_sym_LPAREN, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(4163), 1, + anon_sym_QMARK_DOT, + ACTIONS(4165), 1, + anon_sym_LT, + STATE(1866), 1, + sym_comment, + STATE(3879), 1, + sym_arguments, + STATE(4025), 1, + sym_type_arguments, + ACTIONS(4147), 2, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - 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(4153), 38, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4143), 7, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4141), 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(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225322,26 +213506,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [603] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2007), 1, - sym_comment, - ACTIONS(4155), 23, + ACTIONS(4137), 18, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -225350,59 +213516,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, 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(4157), 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, - [678] = 14, + [1357] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -225411,23 +213534,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1238), 1, anon_sym_EQ_GT, - ACTIONS(4083), 1, + ACTIONS(4028), 1, sym_identifier, - ACTIONS(4085), 1, - anon_sym_DQUOTE, - ACTIONS(4087), 1, - anon_sym_SQUOTE, - STATE(290), 1, - sym_string, - STATE(291), 1, - sym_nested_identifier, - STATE(325), 1, - sym__module, - STATE(2008), 1, + ACTIONS(4030), 1, + anon_sym_LBRACE, + ACTIONS(4032), 1, + anon_sym_LBRACK, + STATE(1867), 1, sym_comment, + STATE(4574), 1, + sym__destructuring_pattern, + STATE(5572), 1, + sym_variable_declarator, ACTIONS(211), 2, sym__automatic_semicolon, sym__ternary_qmark, + STATE(4389), 2, + sym_object_pattern, + sym_array_pattern, ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -225444,14 +213568,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(118), 35, 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, @@ -225481,34 +213604,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [771] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [1450] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(1220), 1, + ACTIONS(987), 1, + anon_sym_QMARK, + ACTIONS(2680), 1, anon_sym_COLON, - ACTIONS(1224), 1, - anon_sym_EQ_GT, - ACTIONS(1244), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2710), 1, + anon_sym_RBRACE, + ACTIONS(4167), 1, anon_sym_EQ, - ACTIONS(4054), 1, - sym_identifier, - STATE(2009), 1, + ACTIONS(4169), 1, + anon_sym_LPAREN, + ACTIONS(4172), 1, + anon_sym_EQ_GT, + ACTIONS(4174), 1, + anon_sym_LT, + STATE(1868), 1, sym_comment, - STATE(2518), 1, - sym_string, - STATE(2519), 1, - sym_nested_identifier, - STATE(2555), 1, - sym__module, - ACTIONS(159), 15, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -225524,17 +213645,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, - anon_sym_STAR, + ACTIONS(4141), 17, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4137), 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, @@ -225548,46 +213681,35 @@ static const uint16_t ts_small_parse_table[] = { 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, - [866] = 14, + [1545] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(143), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_SQUOTE, + ACTIONS(1099), 1, anon_sym_EQ, ACTIONS(1238), 1, anon_sym_EQ_GT, - ACTIONS(4018), 1, + ACTIONS(4058), 1, sym_identifier, - ACTIONS(4020), 1, - anon_sym_LBRACE, - ACTIONS(4022), 1, - anon_sym_LBRACK, - STATE(2010), 1, + STATE(1869), 1, sym_comment, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(5627), 1, - sym_variable_declarator, + STATE(2345), 1, + sym_string, + STATE(2346), 1, + sym_nested_identifier, + STATE(2460), 1, + sym__module, ACTIONS(211), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4667), 2, - sym_object_pattern, - sym_array_pattern, ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -225604,13 +213726,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(118), 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, @@ -225640,7 +213763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [959] = 14, + [1638] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -225649,20 +213772,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1238), 1, anon_sym_EQ_GT, - ACTIONS(1930), 1, + ACTIONS(4101), 1, + sym_identifier, + ACTIONS(4103), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(4105), 1, anon_sym_SQUOTE, - ACTIONS(4159), 1, - sym_identifier, - STATE(2011), 1, - sym_comment, - STATE(4467), 1, + STATE(930), 1, sym_nested_identifier, - STATE(4692), 1, + STATE(1068), 1, sym_string, - STATE(5250), 1, + STATE(1331), 1, sym__module, + STATE(1870), 1, + sym_comment, ACTIONS(211), 2, sym__automatic_semicolon, sym__ternary_qmark, @@ -225719,31 +213842,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1052] = 14, + [1731] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, + ACTIONS(67), 1, anon_sym_DQUOTE, - ACTIONS(145), 1, + ACTIONS(69), 1, anon_sym_SQUOTE, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(1117), 1, + ACTIONS(1232), 1, anon_sym_EQ, - ACTIONS(1242), 1, + ACTIONS(1238), 1, anon_sym_EQ_GT, - ACTIONS(4054), 1, + ACTIONS(4107), 1, sym_identifier, - STATE(2012), 1, + STATE(1871), 1, sym_comment, - STATE(2518), 1, - sym_string, - STATE(2519), 1, + STATE(2217), 1, sym_nested_identifier, - STATE(2555), 1, + STATE(2221), 1, + sym_string, + STATE(2459), 1, sym__module, + ACTIONS(211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -225760,14 +213884,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 37, + ACTIONS(118), 36, anon_sym_STAR, anon_sym_as, - anon_sym_RBRACE, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -225798,32 +213921,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1145] = 14, + [1824] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(143), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_SQUOTE, + ACTIONS(211), 1, + sym__ternary_qmark, + ACTIONS(1246), 1, anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(1252), 1, anon_sym_EQ_GT, - ACTIONS(4101), 1, + ACTIONS(4058), 1, sym_identifier, - ACTIONS(4103), 1, - anon_sym_DQUOTE, - ACTIONS(4105), 1, - anon_sym_SQUOTE, - STATE(321), 1, + STATE(1872), 1, + sym_comment, + STATE(2345), 1, sym_string, - STATE(343), 1, + STATE(2346), 1, sym_nested_identifier, - STATE(418), 1, + STATE(2460), 1, sym__module, - STATE(2013), 1, - sym_comment, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -225840,13 +213962,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(118), 37, anon_sym_STAR, anon_sym_as, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -225877,13 +214000,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1238] = 15, + [1917] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1016), 1, + ACTIONS(960), 1, anon_sym_EQ, - ACTIONS(1043), 1, + ACTIONS(987), 1, anon_sym_QMARK, + ACTIONS(2667), 1, + anon_sym_RBRACE, ACTIONS(2677), 1, anon_sym_LPAREN, ACTIONS(2680), 1, @@ -225894,14 +214019,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2712), 1, - anon_sym_RBRACE, - STATE(2014), 1, + STATE(1873), 1, sym_comment, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, + STATE(5869), 1, aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -225957,32 +214080,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1333] = 15, + [2012] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1043), 1, - anon_sym_QMARK, - ACTIONS(2680), 1, - anon_sym_COLON, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2712), 1, - anon_sym_RBRACE, - ACTIONS(4161), 1, + STATE(1874), 1, + sym_comment, + ACTIONS(4177), 23, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(4163), 1, - anon_sym_LPAREN, - ACTIONS(4166), 1, - anon_sym_EQ_GT, - ACTIONS(4168), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, - STATE(2015), 1, - sym_comment, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4139), 15, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(4179), 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, @@ -225998,15 +214140,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 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, @@ -226016,28 +214149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 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, - [1428] = 14, + anon_sym_implements, + [2087] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -226046,24 +214159,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1238), 1, anon_sym_EQ_GT, - ACTIONS(4018), 1, + ACTIONS(4089), 1, sym_identifier, - ACTIONS(4020), 1, - anon_sym_LBRACE, - ACTIONS(4022), 1, - anon_sym_LBRACK, - STATE(2016), 1, + ACTIONS(4091), 1, + anon_sym_DQUOTE, + ACTIONS(4093), 1, + anon_sym_SQUOTE, + STATE(291), 1, + sym_string, + STATE(293), 1, + sym_nested_identifier, + STATE(319), 1, + sym__module, + STATE(1875), 1, sym_comment, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(5687), 1, - sym_variable_declarator, ACTIONS(211), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4667), 2, - sym_object_pattern, - sym_array_pattern, ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -226080,13 +214192,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(118), 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, @@ -226116,33 +214229,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1521] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [2180] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, - anon_sym_EQ, - ACTIONS(1238), 1, - anon_sym_EQ_GT, - ACTIONS(4089), 1, - sym_identifier, - ACTIONS(4091), 1, - anon_sym_DQUOTE, - ACTIONS(4093), 1, - anon_sym_SQUOTE, - STATE(925), 1, - sym_nested_identifier, - STATE(1032), 1, - sym_string, - STATE(1357), 1, - sym__module, - STATE(2017), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(1876), 1, sym_comment, - ACTIONS(211), 2, - sym__automatic_semicolon, + ACTIONS(4181), 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(4183), 38, sym__ternary_qmark, - ACTIONS(159), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + 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, @@ -226158,17 +214289,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_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, + [2255] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(1877), 1, + sym_comment, + ACTIONS(4185), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, 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, @@ -226183,19 +214326,50 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(4187), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1614] = 14, + anon_sym_implements, + [2330] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -226204,20 +214378,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1238), 1, anon_sym_EQ_GT, - ACTIONS(4107), 1, - sym_identifier, - ACTIONS(4109), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(4111), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - STATE(909), 1, + ACTIONS(4189), 1, + sym_identifier, + STATE(1878), 1, + sym_comment, + STATE(4330), 1, sym_nested_identifier, - STATE(915), 1, + STATE(4500), 1, sym_string, - STATE(1093), 1, + STATE(5038), 1, sym__module, - STATE(2018), 1, - sym_comment, ACTIONS(211), 2, sym__automatic_semicolon, sym__ternary_qmark, @@ -226274,14 +214448,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1707] = 5, + [2423] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2019), 1, + STATE(1879), 1, sym_comment, - ACTIONS(4171), 23, + ACTIONS(4191), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -226305,7 +214479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(4173), 38, + ACTIONS(4193), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -226344,7 +214518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [1782] = 14, + [2498] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -226353,19 +214527,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1238), 1, anon_sym_EQ_GT, - ACTIONS(4077), 1, + ACTIONS(4115), 1, sym_identifier, - ACTIONS(4079), 1, + ACTIONS(4117), 1, anon_sym_DQUOTE, - ACTIONS(4081), 1, + ACTIONS(4119), 1, anon_sym_SQUOTE, - STATE(957), 1, + STATE(297), 1, sym_nested_identifier, - STATE(971), 1, + STATE(298), 1, sym_string, - STATE(1237), 1, + STATE(384), 1, sym__module, - STATE(2020), 1, + STATE(1880), 1, sym_comment, ACTIONS(211), 2, sym__automatic_semicolon, @@ -226423,7 +214597,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1875] = 14, + [2591] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(960), 1, + anon_sym_EQ, + ACTIONS(987), 1, + anon_sym_QMARK, + ACTIONS(2677), 1, + anon_sym_LPAREN, + ACTIONS(2680), 1, + anon_sym_COLON, + ACTIONS(2689), 1, + anon_sym_EQ_GT, + ACTIONS(2693), 1, + anon_sym_LT, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2712), 1, + anon_sym_RBRACE, + STATE(1881), 1, + sym_comment, + STATE(5868), 1, + aux_sym_object_repeat1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2691), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(211), 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(118), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + 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, + [2686] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -226432,22 +214686,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1238), 1, anon_sym_EQ_GT, - ACTIONS(4018), 1, + ACTIONS(4028), 1, sym_identifier, - ACTIONS(4020), 1, + ACTIONS(4030), 1, anon_sym_LBRACE, - ACTIONS(4022), 1, + ACTIONS(4032), 1, anon_sym_LBRACK, - STATE(2021), 1, + STATE(1882), 1, sym_comment, - STATE(4584), 1, + STATE(4574), 1, sym__destructuring_pattern, - STATE(5755), 1, + STATE(5575), 1, sym_variable_declarator, ACTIONS(211), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4667), 2, + STATE(4389), 2, sym_object_pattern, sym_array_pattern, ACTIONS(159), 15, @@ -226502,19 +214756,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1968] = 5, + [2779] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2022), 1, + ACTIONS(143), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_SQUOTE, + ACTIONS(211), 1, + sym__ternary_qmark, + ACTIONS(1224), 1, + anon_sym_EQ_GT, + ACTIONS(1272), 1, + anon_sym_EQ, + ACTIONS(1274), 1, + anon_sym_COLON, + ACTIONS(4058), 1, + sym_identifier, + STATE(1883), 1, sym_comment, - ACTIONS(4175), 23, + STATE(2345), 1, + sym_string, + STATE(2346), 1, + sym_nested_identifier, + STATE(2460), 1, + sym__module, + ACTIONS(159), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 36, anon_sym_STAR, - anon_sym_EQ, + 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, @@ -226529,75 +214824,44 @@ static const uint16_t ts_small_parse_table[] = { 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(4177), 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, 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, - anon_sym_implements, - [2043] = 15, + [2874] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1043), 1, + ACTIONS(987), 1, anon_sym_QMARK, + ACTIONS(2667), 1, + anon_sym_RBRACE, ACTIONS(2680), 1, anon_sym_COLON, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2710), 1, - anon_sym_RBRACE, - ACTIONS(4161), 1, + ACTIONS(4167), 1, anon_sym_EQ, - ACTIONS(4163), 1, + ACTIONS(4169), 1, anon_sym_LPAREN, - ACTIONS(4166), 1, + ACTIONS(4172), 1, anon_sym_EQ_GT, - ACTIONS(4168), 1, + ACTIONS(4174), 1, anon_sym_LT, - STATE(2023), 1, + STATE(1884), 1, sym_comment, - STATE(6171), 1, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(6261), 1, aux_sym_object_repeat1, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -226613,7 +214877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 17, + ACTIONS(4141), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -226631,7 +214895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 20, + ACTIONS(4137), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -226652,7 +214916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2138] = 14, + [2969] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -226661,20 +214925,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1238), 1, anon_sym_EQ_GT, - ACTIONS(4095), 1, - sym_identifier, - ACTIONS(4097), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(4099), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - STATE(337), 1, - sym_string, - STATE(341), 1, + ACTIONS(4087), 1, + sym_identifier, + STATE(1885), 1, + sym_comment, + STATE(5073), 1, sym_nested_identifier, - STATE(381), 1, + STATE(5616), 1, + sym_string, + STATE(6527), 1, sym__module, - STATE(2024), 1, - sym_comment, ACTIONS(211), 2, sym__automatic_semicolon, sym__ternary_qmark, @@ -226731,115 +214995,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2231] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1043), 1, - anon_sym_QMARK, - ACTIONS(2667), 1, - anon_sym_RBRACE, - ACTIONS(2680), 1, - anon_sym_COLON, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4161), 1, - anon_sym_EQ, - ACTIONS(4163), 1, - anon_sym_LPAREN, - ACTIONS(4166), 1, - anon_sym_EQ_GT, - ACTIONS(4168), 1, - anon_sym_LT, - STATE(2025), 1, - sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(4139), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 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(4121), 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, - [2326] = 16, + [3062] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(124), 1, - anon_sym_COMMA, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(216), 1, - anon_sym_RBRACK, - ACTIONS(1215), 1, + ACTIONS(1232), 1, anon_sym_EQ, - ACTIONS(1224), 1, - anon_sym_EQ_GT, - ACTIONS(4054), 1, - sym_identifier, - STATE(2026), 1, - sym_comment, - STATE(2518), 1, - sym_string, - STATE(2519), 1, - sym_nested_identifier, - STATE(2555), 1, - sym__module, + ACTIONS(1238), 1, + anon_sym_EQ_GT, + ACTIONS(4028), 1, + sym_identifier, + ACTIONS(4030), 1, + anon_sym_LBRACE, + ACTIONS(4032), 1, + anon_sym_LBRACK, + STATE(1886), 1, + sym_comment, + STATE(4574), 1, + sym__destructuring_pattern, + STATE(5416), 1, + sym_variable_declarator, + ACTIONS(211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(4389), 2, + sym_object_pattern, + sym_array_pattern, ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -226862,7 +215044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -226892,7 +215074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2423] = 15, + [3155] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -226903,21 +215085,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(211), 1, sym__ternary_qmark, - ACTIONS(1224), 1, - anon_sym_EQ_GT, - ACTIONS(1244), 1, + ACTIONS(1099), 1, anon_sym_EQ, - ACTIONS(1246), 1, - anon_sym_COLON, - ACTIONS(4054), 1, + ACTIONS(1252), 1, + anon_sym_EQ_GT, + ACTIONS(4058), 1, sym_identifier, - STATE(2027), 1, + STATE(1887), 1, sym_comment, - STATE(2518), 1, + STATE(2345), 1, sym_string, - STATE(2519), 1, + STATE(2346), 1, sym_nested_identifier, - STATE(2555), 1, + STATE(2460), 1, sym__module, ACTIONS(159), 15, anon_sym_PLUS_EQ, @@ -226935,14 +215115,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(118), 37, anon_sym_STAR, anon_sym_as, + anon_sym_RBRACE, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -226972,29 +215153,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2518] = 14, + [3248] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(67), 1, - anon_sym_DQUOTE, - ACTIONS(69), 1, - anon_sym_SQUOTE, ACTIONS(1232), 1, anon_sym_EQ, ACTIONS(1238), 1, anon_sym_EQ_GT, - ACTIONS(4115), 1, + ACTIONS(4081), 1, sym_identifier, - STATE(2028), 1, - sym_comment, - STATE(2361), 1, - sym_nested_identifier, - STATE(2365), 1, + ACTIONS(4083), 1, + anon_sym_DQUOTE, + ACTIONS(4085), 1, + anon_sym_SQUOTE, + STATE(307), 1, sym_string, - STATE(2548), 1, + STATE(308), 1, + sym_nested_identifier, + STATE(408), 1, sym__module, + STATE(1888), 1, + sym_comment, ACTIONS(211), 2, sym__automatic_semicolon, sym__ternary_qmark, @@ -227051,32 +215232,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2611] = 15, + [3341] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1016), 1, - anon_sym_EQ, - ACTIONS(1043), 1, + ACTIONS(987), 1, anon_sym_QMARK, - ACTIONS(2677), 1, - anon_sym_LPAREN, ACTIONS(2680), 1, anon_sym_COLON, - ACTIONS(2689), 1, - anon_sym_EQ_GT, - ACTIONS(2693), 1, - anon_sym_LT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2710), 1, + ACTIONS(2712), 1, anon_sym_RBRACE, - STATE(2029), 1, + ACTIONS(4167), 1, + anon_sym_EQ, + ACTIONS(4169), 1, + anon_sym_LPAREN, + ACTIONS(4172), 1, + anon_sym_EQ_GT, + ACTIONS(4174), 1, + anon_sym_LT, + STATE(1889), 1, sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(5868), 1, aux_sym_object_repeat1, - ACTIONS(2691), 15, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227092,7 +215273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 17, + ACTIONS(4141), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -227110,7 +215291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 20, + ACTIONS(4137), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227131,43 +215312,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2706] = 16, + [3436] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4123), 1, - anon_sym_EQ, - ACTIONS(4135), 1, + ACTIONS(4151), 1, anon_sym_EQ_GT, - ACTIONS(4179), 1, - anon_sym_LPAREN, - ACTIONS(4181), 1, + ACTIONS(4195), 1, + anon_sym_EQ, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4207), 1, anon_sym_DOT, - ACTIONS(4183), 1, - anon_sym_QMARK_DOT, - ACTIONS(4185), 1, + ACTIONS(4213), 1, anon_sym_LT, - STATE(2030), 1, + STATE(1890), 1, sym_comment, - STATE(4024), 1, - sym_arguments, - STATE(4171), 1, + STATE(4022), 1, sym_type_arguments, - ACTIONS(4131), 2, + ACTIONS(4198), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4210), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4127), 7, + ACTIONS(4202), 4, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4125), 11, + ACTIONS(4141), 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, @@ -227177,7 +215356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227193,7 +215372,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 18, + ACTIONS(4137), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227212,32 +215391,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2803] = 14, + [3530] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, - anon_sym_EQ, - ACTIONS(1238), 1, - anon_sym_EQ_GT, - ACTIONS(1894), 1, + ACTIONS(143), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(145), 1, anon_sym_SQUOTE, - ACTIONS(4113), 1, + ACTIONS(153), 1, + anon_sym_EQ_GT, + ACTIONS(211), 1, + sym__ternary_qmark, + ACTIONS(1099), 1, + anon_sym_EQ, + ACTIONS(1203), 1, + anon_sym_in, + ACTIONS(1206), 1, + anon_sym_of, + ACTIONS(4058), 1, sym_identifier, - STATE(2031), 1, + STATE(1891), 1, sym_comment, - STATE(5470), 1, - sym_nested_identifier, - STATE(5576), 1, + STATE(2345), 1, sym_string, - STATE(6960), 1, + STATE(2346), 1, + sym_nested_identifier, + STATE(2460), 1, sym__module, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -227254,13 +215436,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(118), 34, 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, @@ -227291,33 +215471,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2896] = 14, + [3626] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, - anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(143), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_SQUOTE, + ACTIONS(211), 1, + sym__ternary_qmark, + ACTIONS(1224), 1, anon_sym_EQ_GT, - ACTIONS(4018), 1, + ACTIONS(1272), 1, + anon_sym_EQ, + ACTIONS(4058), 1, sym_identifier, - ACTIONS(4020), 1, - anon_sym_LBRACE, - ACTIONS(4022), 1, - anon_sym_LBRACK, - STATE(2032), 1, + STATE(1892), 1, sym_comment, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(5658), 1, - sym_variable_declarator, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(4667), 2, - sym_object_pattern, - sym_array_pattern, + STATE(2345), 1, + sym_string, + STATE(2346), 1, + sym_nested_identifier, + STATE(2460), 1, + sym__module, ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -227334,13 +215512,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(118), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -227370,33 +215549,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2989] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [3718] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(1117), 1, - anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4145), 1, + anon_sym_LPAREN, + ACTIONS(4149), 1, + anon_sym_DOT, + ACTIONS(4153), 1, + anon_sym_QMARK_DOT, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4172), 1, anon_sym_EQ_GT, - ACTIONS(4054), 1, - sym_identifier, - STATE(2033), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + STATE(1893), 1, sym_comment, - STATE(2518), 1, - sym_string, - STATE(2519), 1, - sym_nested_identifier, - STATE(2555), 1, - sym__module, - ACTIONS(211), 2, + STATE(3666), 1, + sym_arguments, + STATE(3713), 1, + sym_type_arguments, + ACTIONS(4143), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4147), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4141), 14, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(159), 15, + 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(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227412,70 +215611,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(4137), 17, 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_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [3814] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4151), 1, + anon_sym_EQ_GT, + ACTIONS(4195), 1, + anon_sym_EQ, + ACTIONS(4202), 1, + anon_sym_extends, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4218), 1, + anon_sym_COLON, + ACTIONS(4220), 1, + anon_sym_DOT, + ACTIONS(4223), 1, anon_sym_LT, + ACTIONS(4226), 1, + anon_sym_QMARK, + STATE(1894), 1, + sym_comment, + STATE(3786), 1, + sym_type_arguments, + STATE(6658), 1, + sym_type_annotation, + ACTIONS(4198), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4210), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4141), 13, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, 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, - [3082] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1232), 1, - anon_sym_EQ, - ACTIONS(1238), 1, - anon_sym_EQ_GT, - ACTIONS(4012), 1, - sym_identifier, - ACTIONS(4014), 1, - anon_sym_DQUOTE, - ACTIONS(4016), 1, - anon_sym_SQUOTE, - STATE(406), 1, - sym_string, - STATE(407), 1, - sym_nested_identifier, - STATE(456), 1, - sym__module, - STATE(2034), 1, - sym_comment, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227491,88 +215692,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(4137), 18, 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, - [3175] = 5, + [3914] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2035), 1, - sym_comment, - ACTIONS(4187), 23, - anon_sym_STAR, + ACTIONS(4139), 1, 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, + ACTIONS(4145), 1, + anon_sym_LPAREN, + ACTIONS(4149), 1, + anon_sym_DOT, + ACTIONS(4151), 1, + anon_sym_EQ_GT, + ACTIONS(4153), 1, + anon_sym_QMARK_DOT, + ACTIONS(4157), 1, + anon_sym_LT, + STATE(1895), 1, + sym_comment, + STATE(3666), 1, + sym_arguments, + STATE(3713), 1, + sym_type_arguments, + ACTIONS(4147), 2, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - 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(4189), 38, + ACTIONS(4143), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4141), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227588,43 +215772,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [3250] = 14, + ACTIONS(4137), 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, + [4010] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(143), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_SQUOTE, + ACTIONS(211), 1, + sym__ternary_qmark, + ACTIONS(1099), 1, anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(1224), 1, anon_sym_EQ_GT, - ACTIONS(4018), 1, + ACTIONS(4058), 1, sym_identifier, - ACTIONS(4020), 1, - anon_sym_LBRACE, - ACTIONS(4022), 1, - anon_sym_LBRACK, - STATE(2036), 1, + STATE(1896), 1, sym_comment, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(5725), 1, - sym_variable_declarator, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(4667), 2, - sym_object_pattern, - sym_array_pattern, + STATE(2345), 1, + sym_string, + STATE(2346), 1, + sym_nested_identifier, + STATE(2460), 1, + sym__module, ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -227641,13 +215832,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(118), 36, anon_sym_STAR, anon_sym_as, anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -227677,32 +215869,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3343] = 14, + [4102] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, - anon_sym_EQ, - ACTIONS(1238), 1, - anon_sym_EQ_GT, - ACTIONS(4006), 1, - sym_identifier, - ACTIONS(4008), 1, + ACTIONS(143), 1, anon_sym_DQUOTE, - ACTIONS(4010), 1, + ACTIONS(145), 1, anon_sym_SQUOTE, - STATE(1194), 1, - sym_nested_identifier, - STATE(1215), 1, + ACTIONS(153), 1, + anon_sym_EQ_GT, + ACTIONS(211), 1, + sym__ternary_qmark, + ACTIONS(1099), 1, + anon_sym_EQ, + ACTIONS(1105), 1, + anon_sym_COLON, + ACTIONS(4058), 1, + sym_identifier, + STATE(1897), 1, + sym_comment, + STATE(2345), 1, sym_string, - STATE(1581), 1, + STATE(2346), 1, + sym_nested_identifier, + STATE(2460), 1, sym__module, - STATE(2037), 1, - sym_comment, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -227719,13 +215912,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(118), 35, 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, @@ -227756,7 +215948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3436] = 16, + [4196] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -227765,25 +215957,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(145), 1, anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, ACTIONS(211), 1, sym__ternary_qmark, - ACTIONS(1117), 1, + ACTIONS(1280), 1, anon_sym_EQ, - ACTIONS(1203), 1, - anon_sym_in, - ACTIONS(1206), 1, - anon_sym_of, - ACTIONS(4054), 1, + ACTIONS(1286), 1, + anon_sym_EQ_GT, + ACTIONS(4058), 1, sym_identifier, - STATE(2038), 1, + STATE(1898), 1, sym_comment, - STATE(2518), 1, + STATE(2345), 1, sym_string, - STATE(2519), 1, + STATE(2346), 1, sym_nested_identifier, - STATE(2555), 1, + STATE(2460), 1, sym__module, ACTIONS(159), 15, anon_sym_PLUS_EQ, @@ -227801,11 +215989,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 34, + ACTIONS(118), 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, @@ -227836,14 +216026,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3532] = 5, + [4288] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2039), 1, + STATE(1899), 1, sym_comment, - ACTIONS(3078), 22, + ACTIONS(3116), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -227866,7 +216056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3080), 38, + ACTIONS(3118), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -227905,33 +216095,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [3606] = 14, + [4362] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4123), 1, + ACTIONS(4229), 1, anon_sym_EQ, - ACTIONS(4135), 1, - anon_sym_EQ_GT, - ACTIONS(4197), 1, - anon_sym_DOT, - ACTIONS(4200), 1, - anon_sym_LT, - ACTIONS(4203), 1, - anon_sym_extends, - STATE(2040), 1, + STATE(1900), 1, sym_comment, - STATE(3913), 1, - sym_type_arguments, - ACTIONS(4191), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4194), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -227947,32 +216120,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 17, + ACTIONS(4137), 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(4125), 17, + ACTIONS(4141), 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, @@ -227983,32 +216165,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3698] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_implements, + [4440] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(1280), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4139), 1, anon_sym_EQ, - ACTIONS(1286), 1, + ACTIONS(4151), 1, anon_sym_EQ_GT, - ACTIONS(4054), 1, - sym_identifier, - STATE(2041), 1, + ACTIONS(4202), 1, + anon_sym_extends, + ACTIONS(4220), 1, + anon_sym_DOT, + ACTIONS(4223), 1, + anon_sym_LT, + STATE(1901), 1, sym_comment, - STATE(2518), 1, - sym_string, - STATE(2519), 1, - sym_nested_identifier, - STATE(2555), 1, - sym__module, - ACTIONS(159), 15, + STATE(3786), 1, + sym_type_arguments, + ACTIONS(4204), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4210), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228024,77 +216208,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(4137), 17, 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, - [3790] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4135), 1, - anon_sym_EQ_GT, - ACTIONS(4191), 1, - anon_sym_LBRACK, - ACTIONS(4205), 1, - anon_sym_EQ, - ACTIONS(4212), 1, - anon_sym_DOT, - ACTIONS(4215), 1, - anon_sym_LT, - STATE(2042), 1, - sym_comment, - STATE(4116), 1, - sym_type_arguments, - ACTIONS(4194), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4208), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4203), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4125), 13, + ACTIONS(4141), 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, @@ -228105,73 +216244,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 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, - [3884] = 16, + [4532] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, + ACTIONS(4145), 1, anon_sym_LPAREN, - ACTIONS(4133), 1, + ACTIONS(4149), 1, anon_sym_DOT, - ACTIONS(4137), 1, + ACTIONS(4153), 1, anon_sym_QMARK_DOT, - ACTIONS(4141), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4218), 1, + ACTIONS(4231), 1, anon_sym_EQ, - ACTIONS(4220), 1, + ACTIONS(4233), 1, anon_sym_EQ_GT, - STATE(2043), 1, + STATE(1902), 1, sym_comment, - STATE(3804), 1, + STATE(3666), 1, sym_arguments, - STATE(3877), 1, + STATE(3713), 1, sym_type_arguments, - ACTIONS(4127), 3, + ACTIONS(4143), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4131), 3, + ACTIONS(4147), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4125), 14, + ACTIONS(4141), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -228186,7 +216290,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228202,7 +216306,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 17, + ACTIONS(4137), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228220,7 +216324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3980] = 14, + [4628] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -228231,19 +216335,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(211), 1, sym__ternary_qmark, - ACTIONS(1117), 1, + ACTIONS(1099), 1, anon_sym_EQ, - ACTIONS(1224), 1, + ACTIONS(1286), 1, anon_sym_EQ_GT, - ACTIONS(4054), 1, + ACTIONS(4058), 1, sym_identifier, - STATE(2044), 1, + STATE(1903), 1, sym_comment, - STATE(2518), 1, + STATE(2345), 1, sym_string, - STATE(2519), 1, + STATE(2346), 1, sym_nested_identifier, - STATE(2555), 1, + STATE(2460), 1, sym__module, ACTIONS(159), 15, anon_sym_PLUS_EQ, @@ -228267,8 +216371,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, + anon_sym_of, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -228298,14 +216402,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4072] = 5, + [4720] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2045), 1, + STATE(1904), 1, sym_comment, - ACTIONS(3072), 22, + ACTIONS(3082), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -228328,7 +216432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3074), 38, + ACTIONS(3084), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -228367,34 +216471,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [4146] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [4794] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(153), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4145), 1, + anon_sym_LPAREN, + ACTIONS(4149), 1, + anon_sym_DOT, + ACTIONS(4153), 1, + anon_sym_QMARK_DOT, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4235), 1, + anon_sym_EQ, + ACTIONS(4237), 1, anon_sym_EQ_GT, - ACTIONS(211), 1, + STATE(1905), 1, + sym_comment, + STATE(3666), 1, + sym_arguments, + STATE(3713), 1, + sym_type_arguments, + ACTIONS(4143), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4147), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4141), 13, sym__ternary_qmark, - ACTIONS(1117), 1, - anon_sym_EQ, - ACTIONS(1119), 1, + anon_sym_as, + anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(4054), 1, - sym_identifier, - STATE(2046), 1, - sym_comment, - STATE(2518), 1, - sym_string, - STATE(2519), 1, - sym_nested_identifier, - STATE(2555), 1, - sym__module, - ACTIONS(159), 15, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228410,130 +216532,210 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(4137), 17, 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, + [4889] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4241), 1, + anon_sym_class, + ACTIONS(4244), 1, + anon_sym_AT, + STATE(1906), 1, + sym_comment, + STATE(1935), 1, + aux_sym_export_statement_repeat1, + STATE(2014), 1, + sym_decorator, + ACTIONS(4239), 55, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [4240] = 14, + sym_number, + sym_identifier, + sym_private_property_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, + [4968] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, + ACTIONS(4249), 1, + anon_sym_LPAREN, + ACTIONS(4251), 1, + anon_sym_DOT, + STATE(1907), 1, + sym_comment, + STATE(1966), 1, + sym_arguments, + ACTIONS(4247), 56, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, anon_sym_DQUOTE, - ACTIONS(145), 1, anon_sym_SQUOTE, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(1117), 1, - anon_sym_EQ, - ACTIONS(1286), 1, - anon_sym_EQ_GT, - ACTIONS(4054), 1, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, sym_identifier, - STATE(2047), 1, - sym_comment, - STATE(2518), 1, - sym_string, - STATE(2519), 1, - sym_nested_identifier, - STATE(2555), 1, - sym__module, - ACTIONS(159), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [5045] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4139), 1, + anon_sym_EQ, + ACTIONS(4145), 1, anon_sym_LPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_LBRACK, - anon_sym_GT, + ACTIONS(4149), 1, anon_sym_DOT, + ACTIONS(4151), 1, + anon_sym_EQ_GT, + ACTIONS(4153), 1, 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, + ACTIONS(4157), 1, + anon_sym_LT, + STATE(1908), 1, + sym_comment, + STATE(3666), 1, + sym_arguments, + STATE(3713), 1, + sym_type_arguments, + ACTIONS(4147), 3, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4143), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4141), 11, + sym__ternary_qmark, + anon_sym_as, 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, - [4332] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4222), 1, - anon_sym_EQ, - STATE(2048), 1, - sym_comment, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228549,7 +216751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228559,43 +216761,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4125), 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, - [4410] = 14, + [5140] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -228604,21 +216779,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(145), 1, anon_sym_SQUOTE, + ACTIONS(153), 1, + anon_sym_EQ_GT, ACTIONS(211), 1, sym__ternary_qmark, - ACTIONS(1224), 1, - anon_sym_EQ_GT, - ACTIONS(1244), 1, + ACTIONS(1350), 1, anon_sym_EQ, - ACTIONS(4054), 1, + ACTIONS(4058), 1, sym_identifier, - STATE(2049), 1, + STATE(1909), 1, sym_comment, - STATE(2518), 1, + STATE(2345), 1, sym_string, - STATE(2519), 1, + STATE(2346), 1, sym_nested_identifier, - STATE(2555), 1, + STATE(2460), 1, sym__module, ACTIONS(159), 15, anon_sym_PLUS_EQ, @@ -228636,14 +216811,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(118), 35, 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, @@ -228673,43 +216847,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4502] = 16, + [5231] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_DOT, - ACTIONS(4137), 1, - anon_sym_QMARK_DOT, - ACTIONS(4141), 1, - anon_sym_LT, - ACTIONS(4166), 1, - anon_sym_EQ_GT, - ACTIONS(4224), 1, + ACTIONS(4229), 1, anon_sym_EQ, - STATE(2050), 1, + ACTIONS(4255), 1, + anon_sym_EQ_GT, + ACTIONS(4257), 1, + anon_sym_QMARK, + STATE(1910), 1, sym_comment, - STATE(3804), 1, - sym_arguments, - STATE(3877), 1, - sym_type_arguments, - ACTIONS(4127), 3, + ACTIONS(4253), 5, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4131), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4125), 14, - sym__automatic_semicolon, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -228719,7 +216882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228735,70 +216898,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 17, + ACTIONS(4137), 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, - [4598] = 16, + [5314] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4123), 1, - anon_sym_EQ, - ACTIONS(4129), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_DOT, - ACTIONS(4135), 1, + ACTIONS(153), 1, anon_sym_EQ_GT, - ACTIONS(4137), 1, - anon_sym_QMARK_DOT, - ACTIONS(4141), 1, - anon_sym_LT, - STATE(2051), 1, - sym_comment, - STATE(3804), 1, - sym_arguments, - STATE(3877), 1, - sym_type_arguments, - ACTIONS(4131), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4127), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4125), 13, + ACTIONS(211), 1, 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(4139), 15, + ACTIONS(1099), 1, + anon_sym_EQ, + ACTIONS(1203), 1, + anon_sym_in, + ACTIONS(1206), 1, + anon_sym_of, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(4259), 1, + sym_identifier, + ACTIONS(4261), 1, + anon_sym_LBRACK, + STATE(1911), 1, + sym_comment, + STATE(6431), 1, + sym__destructuring_pattern, + STATE(4288), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228814,59 +216964,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 18, + ACTIONS(118), 33, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, - anon_sym_in, + 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, - [4694] = 18, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [5407] = 17, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4135), 1, + ACTIONS(4151), 1, anon_sym_EQ_GT, - ACTIONS(4191), 1, + ACTIONS(4195), 1, + anon_sym_EQ, + ACTIONS(4198), 1, + anon_sym_RPAREN, + ACTIONS(4202), 1, + anon_sym_extends, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4197), 1, + ACTIONS(4220), 1, anon_sym_DOT, - ACTIONS(4200), 1, + ACTIONS(4223), 1, anon_sym_LT, - ACTIONS(4203), 1, - anon_sym_extends, - ACTIONS(4205), 1, - anon_sym_EQ, - ACTIONS(4226), 1, - anon_sym_COLON, - ACTIONS(4228), 1, + ACTIONS(4267), 1, anon_sym_QMARK, - STATE(2052), 1, + STATE(1912), 1, sym_comment, - STATE(3913), 1, + STATE(3786), 1, sym_type_arguments, - STATE(7084), 1, - sym_type_annotation, - ACTIONS(4194), 2, + ACTIONS(4210), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4208), 2, + ACTIONS(4264), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4125), 13, + anon_sym_COLON, + ACTIONS(4141), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -228880,7 +217043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228896,7 +217059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 18, + ACTIONS(4137), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228915,7 +217078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4794] = 14, + [5504] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -228928,17 +217091,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(211), 1, sym__ternary_qmark, - ACTIONS(1358), 1, + ACTIONS(1294), 1, anon_sym_EQ, - ACTIONS(4054), 1, + ACTIONS(4058), 1, sym_identifier, - STATE(2053), 1, + STATE(1913), 1, sym_comment, - STATE(2518), 1, + STATE(2345), 1, sym_string, - STATE(2519), 1, + STATE(2346), 1, sym_nested_identifier, - STATE(2555), 1, + STATE(2460), 1, sym__module, ACTIONS(159), 15, anon_sym_PLUS_EQ, @@ -228992,96 +217155,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4885] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + [5595] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4233), 1, + ACTIONS(213), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4269), 1, + anon_sym_LBRACK, + ACTIONS(4272), 1, + anon_sym_EQ_GT, + STATE(1914), 1, + sym_comment, + ACTIONS(4274), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2030), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(211), 14, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4235), 1, anon_sym_DOT, - STATE(2054), 1, - sym_comment, - STATE(2114), 1, - sym_arguments, - ACTIONS(4231), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2691), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 19, + anon_sym_STAR, anon_sym_BANG, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_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_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [4962] = 10, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [5680] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(124), 1, - anon_sym_QMARK, - ACTIONS(213), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4240), 1, + ACTIONS(4151), 1, anon_sym_EQ_GT, - STATE(2055), 1, + ACTIONS(4195), 1, + anon_sym_EQ, + ACTIONS(4267), 1, + anon_sym_QMARK, + STATE(1915), 1, sym_comment, - ACTIONS(4237), 5, + ACTIONS(4264), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(211), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -229097,7 +217264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229113,7 +217280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229135,26 +217302,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5045] = 10, + [5763] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1099), 1, + anon_sym_EQ, + ACTIONS(1105), 1, + anon_sym_QMARK, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4222), 1, - anon_sym_EQ, - ACTIONS(4244), 1, + ACTIONS(4279), 1, anon_sym_EQ_GT, - ACTIONS(4246), 1, - anon_sym_QMARK, - STATE(2056), 1, + STATE(1916), 1, sym_comment, - ACTIONS(4242), 5, + ACTIONS(4277), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4125), 15, + ACTIONS(211), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -229170,7 +217337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229186,7 +217353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229208,7 +217375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5128] = 14, + [5846] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -229223,15 +217390,15 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1292), 1, anon_sym_EQ, - ACTIONS(4054), 1, + ACTIONS(4058), 1, sym_identifier, - STATE(2057), 1, + STATE(1917), 1, sym_comment, - STATE(2518), 1, + STATE(2345), 1, sym_string, - STATE(2519), 1, + STATE(2346), 1, sym_nested_identifier, - STATE(2555), 1, + STATE(2460), 1, sym__module, ACTIONS(159), 15, anon_sym_PLUS_EQ, @@ -229285,33 +217452,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5219] = 14, + [5937] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4166), 1, + ACTIONS(143), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_SQUOTE, + ACTIONS(153), 1, anon_sym_EQ_GT, - ACTIONS(4197), 1, - anon_sym_DOT, - ACTIONS(4200), 1, - anon_sym_LT, - ACTIONS(4203), 1, - anon_sym_extends, - ACTIONS(4224), 1, + ACTIONS(211), 1, + sym__ternary_qmark, + ACTIONS(1352), 1, anon_sym_EQ, - STATE(2058), 1, + ACTIONS(4058), 1, + sym_identifier, + STATE(1918), 1, sym_comment, - STATE(3913), 1, - sym_type_arguments, - ACTIONS(4191), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4194), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4139), 15, + STATE(2345), 1, + sym_string, + STATE(2346), 1, + sym_nested_identifier, + STATE(2460), 1, + sym__module, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229327,13 +217493,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 16, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(118), 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, + [6028] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(124), 1, + anon_sym_QMARK, + ACTIONS(213), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4272), 1, + anon_sym_EQ_GT, + STATE(1919), 1, + sym_comment, + ACTIONS(4281), 5, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(211), 15, + 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, @@ -229344,25 +217564,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 17, + ACTIONS(2691), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5310] = 14, + [6111] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -229375,17 +217615,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(211), 1, sym__ternary_qmark, - ACTIONS(1117), 1, + ACTIONS(1099), 1, anon_sym_EQ, - ACTIONS(4054), 1, + ACTIONS(4058), 1, sym_identifier, - STATE(2059), 1, + STATE(1920), 1, sym_comment, - STATE(2518), 1, + STATE(2345), 1, sym_string, - STATE(2519), 1, + STATE(2346), 1, sym_nested_identifier, - STATE(2555), 1, + STATE(2460), 1, sym__module, ACTIONS(159), 15, anon_sym_PLUS_EQ, @@ -229439,42 +217679,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5401] = 16, + [6202] = 17, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, + ACTIONS(4202), 1, + anon_sym_extends, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4220), 1, anon_sym_DOT, - ACTIONS(4137), 1, - anon_sym_QMARK_DOT, - ACTIONS(4141), 1, + ACTIONS(4223), 1, anon_sym_LT, - ACTIONS(4248), 1, - anon_sym_EQ, - ACTIONS(4250), 1, + ACTIONS(4255), 1, anon_sym_EQ_GT, - STATE(2060), 1, + ACTIONS(4267), 1, + anon_sym_QMARK, + ACTIONS(4284), 1, + anon_sym_EQ, + ACTIONS(4289), 1, + anon_sym_RPAREN, + STATE(1921), 1, sym_comment, - STATE(3804), 1, - sym_arguments, - STATE(3877), 1, + STATE(3786), 1, sym_type_arguments, - ACTIONS(4127), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4131), 3, - anon_sym_GT, + ACTIONS(4210), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4125), 13, + ACTIONS(4287), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4141), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -229484,7 +217724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229500,10 +217740,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 17, + ACTIONS(4137), 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, @@ -229518,26 +217759,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5496] = 10, + [6299] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4244), 1, + ACTIONS(4255), 1, anon_sym_EQ_GT, - ACTIONS(4252), 1, - anon_sym_EQ, - ACTIONS(4257), 1, + ACTIONS(4267), 1, anon_sym_QMARK, - STATE(2061), 1, + ACTIONS(4284), 1, + anon_sym_EQ, + STATE(1922), 1, sym_comment, - ACTIONS(4255), 5, + ACTIONS(4287), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4125), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -229553,7 +217794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229569,7 +217810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229591,52 +217832,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5579] = 17, + [6382] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4135), 1, + ACTIONS(143), 1, + anon_sym_DQUOTE, + ACTIONS(145), 1, + anon_sym_SQUOTE, + ACTIONS(153), 1, anon_sym_EQ_GT, - ACTIONS(4191), 1, - anon_sym_LBRACK, - ACTIONS(4197), 1, - anon_sym_DOT, - ACTIONS(4200), 1, - anon_sym_LT, - ACTIONS(4203), 1, - anon_sym_extends, - ACTIONS(4205), 1, + ACTIONS(211), 1, + sym__ternary_qmark, + ACTIONS(1358), 1, anon_sym_EQ, - ACTIONS(4208), 1, - anon_sym_RPAREN, - ACTIONS(4257), 1, - anon_sym_QMARK, - STATE(2062), 1, + ACTIONS(4058), 1, + sym_identifier, + STATE(1923), 1, sym_comment, - STATE(3913), 1, - sym_type_arguments, - ACTIONS(4194), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4259), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4125), 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(4139), 15, + STATE(2345), 1, + sym_string, + STATE(2346), 1, + sym_nested_identifier, + STATE(2460), 1, + sym__module, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229652,51 +217873,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 18, + ACTIONS(118), 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, - [5676] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [6473] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(1346), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4202), 1, + anon_sym_extends, + ACTIONS(4220), 1, + anon_sym_DOT, + ACTIONS(4223), 1, + anon_sym_LT, + ACTIONS(4231), 1, anon_sym_EQ, - ACTIONS(4054), 1, - sym_identifier, - STATE(2063), 1, + ACTIONS(4233), 1, + anon_sym_EQ_GT, + STATE(1924), 1, sym_comment, - STATE(2518), 1, - sym_string, - STATE(2519), 1, - sym_nested_identifier, - STATE(2555), 1, - sym__module, - ACTIONS(159), 15, + STATE(3786), 1, + sym_type_arguments, + ACTIONS(4204), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4210), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229712,43 +217951,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, - anon_sym_STAR, + ACTIONS(4141), 16, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, anon_sym_LPAREN, - anon_sym_in, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_DOT, + anon_sym_of, + anon_sym_SEMI, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4137), 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_AMP, anon_sym_CARET, - 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, - [5767] = 10, + [6564] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(115), 1, @@ -229757,11 +217995,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, + ACTIONS(4279), 1, anon_sym_EQ_GT, - STATE(2064), 1, + STATE(1925), 1, sym_comment, - ACTIONS(4262), 5, + ACTIONS(4292), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -229821,7 +218059,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5850] = 14, + [6647] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4172), 1, + anon_sym_EQ_GT, + ACTIONS(4202), 1, + anon_sym_extends, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4220), 1, + anon_sym_DOT, + ACTIONS(4223), 1, + anon_sym_LT, + STATE(1926), 1, + sym_comment, + STATE(3786), 1, + sym_type_arguments, + ACTIONS(4204), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4210), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4155), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4141), 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(4137), 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, + [6738] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -229834,17 +218149,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(211), 1, sym__ternary_qmark, - ACTIONS(1352), 1, + ACTIONS(1348), 1, anon_sym_EQ, - ACTIONS(4054), 1, + ACTIONS(4058), 1, sym_identifier, - STATE(2065), 1, + STATE(1927), 1, sym_comment, - STATE(2518), 1, + STATE(2345), 1, sym_string, - STATE(2519), 1, + STATE(2346), 1, sym_nested_identifier, - STATE(2555), 1, + STATE(2460), 1, sym__module, ACTIONS(159), 15, anon_sym_PLUS_EQ, @@ -229898,32 +218213,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5941] = 10, + [6829] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1117), 1, - anon_sym_EQ, - ACTIONS(1119), 1, - anon_sym_QMARK, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, + ACTIONS(4145), 1, + anon_sym_LPAREN, + ACTIONS(4149), 1, + anon_sym_DOT, + ACTIONS(4153), 1, + anon_sym_QMARK_DOT, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4294), 1, + anon_sym_EQ, + ACTIONS(4296), 1, anon_sym_EQ_GT, - STATE(2066), 1, + STATE(1928), 1, sym_comment, - ACTIONS(4266), 5, + STATE(3666), 1, + sym_arguments, + STATE(3713), 1, + sym_type_arguments, + ACTIONS(4143), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(211), 15, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4147), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4141), 13, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -229933,7 +218258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229949,63 +218274,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4137), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6024] = 16, + [6924] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4123), 1, - anon_sym_EQ, - ACTIONS(4129), 1, + ACTIONS(4145), 1, anon_sym_LPAREN, - ACTIONS(4133), 1, + ACTIONS(4149), 1, anon_sym_DOT, - ACTIONS(4135), 1, - anon_sym_EQ_GT, - ACTIONS(4137), 1, + ACTIONS(4153), 1, anon_sym_QMARK_DOT, - ACTIONS(4141), 1, + ACTIONS(4157), 1, anon_sym_LT, - STATE(2067), 1, + ACTIONS(4298), 1, + anon_sym_EQ, + ACTIONS(4300), 1, + anon_sym_EQ_GT, + STATE(1929), 1, sym_comment, - STATE(3804), 1, + STATE(3666), 1, sym_arguments, - STATE(3877), 1, + STATE(3713), 1, sym_type_arguments, - ACTIONS(4131), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4127), 4, + ACTIONS(4143), 3, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4125), 11, + ACTIONS(4147), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4141), 13, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -230015,7 +218336,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + anon_sym_implements, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230031,11 +218353,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 18, + ACTIONS(4137), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -230050,35 +218371,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6119] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [7019] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(1117), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(1930), 1, + sym_comment, + ACTIONS(4181), 22, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(1203), 1, + anon_sym_BANG, anon_sym_in, - ACTIONS(1206), 1, - anon_sym_of, - ACTIONS(3876), 1, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_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(4183), 37, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(4268), 1, - sym_identifier, - ACTIONS(4270), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - STATE(2068), 1, - sym_comment, - STATE(6989), 1, - sym__destructuring_pattern, - STATE(4283), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(159), 15, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230094,57 +218429,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 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, - [6212] = 11, + anon_sym_implements, + [7092] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1135), 1, + ACTIONS(1165), 1, anon_sym_EQ, ACTIONS(2030), 1, anon_sym_extends, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4240), 1, + ACTIONS(4272), 1, anon_sym_EQ_GT, - STATE(2069), 1, + STATE(1931), 1, sym_comment, - ACTIONS(4273), 2, + ACTIONS(4269), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4276), 3, + ACTIONS(4274), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, @@ -230202,84 +218513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [6297] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4197), 1, - anon_sym_DOT, - ACTIONS(4200), 1, - anon_sym_LT, - ACTIONS(4203), 1, - anon_sym_extends, - ACTIONS(4218), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_EQ_GT, - STATE(2070), 1, - sym_comment, - STATE(3913), 1, - sym_type_arguments, - ACTIONS(4191), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4194), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4139), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 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(4121), 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, - [6388] = 14, + [7177] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -230292,17 +218526,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(211), 1, sym__ternary_qmark, - ACTIONS(1344), 1, + ACTIONS(1354), 1, anon_sym_EQ, - ACTIONS(4054), 1, + ACTIONS(4058), 1, sym_identifier, - STATE(2071), 1, + STATE(1932), 1, sym_comment, - STATE(2518), 1, + STATE(2345), 1, sym_string, - STATE(2519), 1, + STATE(2346), 1, sym_nested_identifier, - STATE(2555), 1, + STATE(2460), 1, sym__module, ACTIONS(159), 15, anon_sym_PLUS_EQ, @@ -230356,62 +218590,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [6479] = 11, + [7268] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(213), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4240), 1, - anon_sym_EQ_GT, - ACTIONS(4273), 1, - anon_sym_LBRACK, - STATE(2072), 1, + STATE(1933), 1, sym_comment, - ACTIONS(4276), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2030), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(211), 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(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 19, + ACTIONS(4125), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -230420,7 +218608,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -230430,78 +218620,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6564] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4281), 1, - anon_sym_class, - ACTIONS(4284), 1, - anon_sym_AT, - STATE(2073), 1, - sym_comment, - STATE(2075), 1, - aux_sym_export_statement_repeat1, - STATE(2152), 1, - sym_decorator, - ACTIONS(4279), 55, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, + ACTIONS(4127), 37, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, + 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, - sym_number, - sym_identifier, - sym_private_property_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, - [6643] = 14, + anon_sym_satisfies, + anon_sym_implements, + [7341] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -230516,15 +218673,15 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1356), 1, anon_sym_EQ, - ACTIONS(4054), 1, + ACTIONS(4058), 1, sym_identifier, - STATE(2074), 1, + STATE(1934), 1, sym_comment, - STATE(2518), 1, + STATE(2345), 1, sym_string, - STATE(2519), 1, + STATE(2346), 1, sym_nested_identifier, - STATE(2555), 1, + STATE(2460), 1, sym__module, ACTIONS(159), 15, anon_sym_PLUS_EQ, @@ -230578,19 +218735,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [6734] = 6, + [7432] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4284), 1, + ACTIONS(4244), 1, anon_sym_AT, - STATE(2152), 1, + STATE(2014), 1, sym_decorator, - STATE(2075), 2, + STATE(1935), 2, sym_comment, aux_sym_export_statement_repeat1, - ACTIONS(4279), 56, + ACTIONS(4239), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -230647,7 +218804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [6809] = 14, + [7507] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -230660,17 +218817,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(211), 1, sym__ternary_qmark, - ACTIONS(1354), 1, + ACTIONS(1346), 1, anon_sym_EQ, - ACTIONS(4054), 1, + ACTIONS(4058), 1, sym_identifier, - STATE(2076), 1, + STATE(1936), 1, sym_comment, - STATE(2518), 1, + STATE(2345), 1, sym_string, - STATE(2519), 1, + STATE(2346), 1, sym_nested_identifier, - STATE(2555), 1, + STATE(2460), 1, sym__module, ACTIONS(159), 15, anon_sym_PLUS_EQ, @@ -230684,139 +218841,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_GT_GT_GT_EQ, anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 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, - [6900] = 17, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4191), 1, - anon_sym_LBRACK, - ACTIONS(4197), 1, - anon_sym_DOT, - ACTIONS(4200), 1, - anon_sym_LT, - ACTIONS(4203), 1, - anon_sym_extends, - ACTIONS(4244), 1, - anon_sym_EQ_GT, - ACTIONS(4252), 1, - anon_sym_EQ, - ACTIONS(4257), 1, - anon_sym_QMARK, - ACTIONS(4287), 1, - anon_sym_RPAREN, - STATE(2077), 1, - sym_comment, - STATE(3913), 1, - sym_type_arguments, - ACTIONS(4194), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4255), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4125), 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(4139), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 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, - [6997] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2078), 1, - sym_comment, - ACTIONS(4147), 22, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 35, anon_sym_STAR, - anon_sym_EQ, + 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, @@ -230831,83 +218869,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(4149), 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, 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, - anon_sym_implements, - [7070] = 16, + [7598] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, + ACTIONS(4145), 1, anon_sym_LPAREN, - ACTIONS(4133), 1, + ACTIONS(4149), 1, anon_sym_DOT, - ACTIONS(4137), 1, + ACTIONS(4153), 1, anon_sym_QMARK_DOT, - ACTIONS(4141), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4290), 1, + ACTIONS(4302), 1, anon_sym_EQ, - ACTIONS(4292), 1, + ACTIONS(4304), 1, anon_sym_EQ_GT, - STATE(2079), 1, + STATE(1937), 1, sym_comment, - STATE(3804), 1, + STATE(3666), 1, sym_arguments, - STATE(3877), 1, + STATE(3713), 1, sym_type_arguments, - ACTIONS(4127), 3, + ACTIONS(4143), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4131), 3, + ACTIONS(4147), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4125), 13, - sym__automatic_semicolon, + ACTIONS(4141), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -230917,7 +218925,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230933,7 +218941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 17, + ACTIONS(4137), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -230951,41 +218959,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7165] = 16, + [7692] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_DOT, - ACTIONS(4137), 1, - anon_sym_QMARK_DOT, - ACTIONS(4141), 1, - anon_sym_LT, - ACTIONS(4294), 1, + ACTIONS(4229), 1, anon_sym_EQ, - ACTIONS(4296), 1, - anon_sym_EQ_GT, - STATE(2080), 1, + ACTIONS(4257), 1, + anon_sym_QMARK, + STATE(1938), 1, sym_comment, - STATE(3804), 1, - sym_arguments, - STATE(3877), 1, - sym_type_arguments, - ACTIONS(4127), 3, + ACTIONS(4253), 5, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4131), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4125), 13, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -230995,8 +218992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231012,50 +219008,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 17, + ACTIONS(4137), 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, - [7260] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [7772] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(1348), 1, + ACTIONS(1099), 1, anon_sym_EQ, - ACTIONS(4054), 1, - sym_identifier, - STATE(2081), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4272), 1, + anon_sym_EQ_GT, + STATE(1939), 1, sym_comment, - STATE(2518), 1, - sym_string, - STATE(2519), 1, - sym_nested_identifier, - STATE(2555), 1, - sym__module, - ACTIONS(159), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231071,93 +219057,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, - anon_sym_STAR, + ACTIONS(211), 20, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_in, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_GT, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_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, - [7351] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(143), 1, - anon_sym_DQUOTE, - ACTIONS(145), 1, - anon_sym_SQUOTE, - ACTIONS(153), 1, - anon_sym_EQ_GT, - ACTIONS(211), 1, - sym__ternary_qmark, - ACTIONS(1350), 1, - anon_sym_EQ, - ACTIONS(4054), 1, - sym_identifier, - STATE(2082), 1, - sym_comment, - STATE(2518), 1, - sym_string, - STATE(2519), 1, - sym_nested_identifier, - STATE(2555), 1, - sym__module, - ACTIONS(159), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(118), 21, 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, @@ -231172,38 +219097,27 @@ static const uint16_t ts_small_parse_table[] = { 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, - [7442] = 10, + [7850] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4135), 1, - anon_sym_EQ_GT, - ACTIONS(4205), 1, - anon_sym_EQ, - ACTIONS(4257), 1, + ACTIONS(4267), 1, anon_sym_QMARK, - STATE(2083), 1, + ACTIONS(4284), 1, + anon_sym_EQ, + STATE(1940), 1, sym_comment, - ACTIONS(4259), 5, + ACTIONS(4287), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4125), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -231219,7 +219133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231235,38 +219149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 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, - [7525] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2084), 1, - sym_comment, - ACTIONS(4143), 22, + ACTIONS(4137), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -231287,58 +219171,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4145), 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, - [7598] = 10, + [7930] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1035), 1, + ACTIONS(979), 1, anon_sym_EQ_GT, - ACTIONS(1167), 1, + ACTIONS(1175), 1, anon_sym_EQ, - ACTIONS(1177), 1, + ACTIONS(1195), 1, anon_sym_COLON, - ACTIONS(4298), 1, + ACTIONS(4123), 1, sym_identifier, - STATE(2085), 1, + STATE(1941), 1, sym_comment, ACTIONS(211), 2, sym__automatic_semicolon, @@ -231397,41 +219243,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [7680] = 16, + [8012] = 13, ACTIONS(5), 1, sym_html_comment, + ACTIONS(124), 1, + anon_sym_QMARK, + ACTIONS(213), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_DOT, - ACTIONS(4137), 1, - anon_sym_QMARK_DOT, - ACTIONS(4141), 1, - anon_sym_LT, - ACTIONS(4300), 1, - anon_sym_EQ, - ACTIONS(4302), 1, + ACTIONS(4269), 1, + anon_sym_LBRACK, + ACTIONS(4272), 1, anon_sym_EQ_GT, - STATE(2086), 1, + STATE(1942), 1, sym_comment, - STATE(3804), 1, - sym_arguments, - STATE(3877), 1, - sym_type_arguments, - ACTIONS(4127), 3, - anon_sym_COMMA, - anon_sym_LBRACK, + ACTIONS(2030), 2, + anon_sym_RPAREN, anon_sym_extends, - ACTIONS(4131), 3, - anon_sym_GT, + ACTIONS(4274), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4125), 12, + ACTIONS(4281), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(211), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -231441,7 +219282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231457,10 +219298,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 17, + ACTIONS(118), 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, @@ -231472,53 +219314,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7774] = 11, + [8100] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1167), 1, - anon_sym_EQ, - ACTIONS(2030), 1, - anon_sym_extends, - ACTIONS(2689), 1, - anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2087), 1, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4220), 1, + anon_sym_DOT, + ACTIONS(4223), 1, + anon_sym_LT, + ACTIONS(4294), 1, + anon_sym_EQ, + ACTIONS(4296), 1, + anon_sym_EQ_GT, + STATE(1943), 1, sym_comment, - ACTIONS(4273), 2, + STATE(3786), 1, + sym_type_arguments, + ACTIONS(4202), 2, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4276), 3, + anon_sym_extends, + ACTIONS(4210), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 17, + ACTIONS(4141), 15, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -231529,7 +219360,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 18, + ACTIONS(4155), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4137), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231544,39 +219391,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7858] = 13, + [8190] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(115), 1, - anon_sym_EQ, - ACTIONS(124), 1, - anon_sym_QMARK, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, + ACTIONS(4139), 1, + anon_sym_EQ, + ACTIONS(4151), 1, anon_sym_EQ_GT, - ACTIONS(4273), 1, - anon_sym_LBRACK, - STATE(2088), 1, - sym_comment, - ACTIONS(2030), 2, - anon_sym_RPAREN, + ACTIONS(4202), 1, anon_sym_extends, - ACTIONS(4262), 2, - anon_sym_COMMA, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4220), 1, + anon_sym_DOT, + ACTIONS(4223), 1, + anon_sym_LT, + ACTIONS(4253), 1, anon_sym_COLON, - ACTIONS(4276), 2, + STATE(1944), 1, + sym_comment, + STATE(3786), 1, + sym_type_arguments, + ACTIONS(4210), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(211), 14, + ACTIONS(4306), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4141), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -231587,7 +219437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231603,7 +219453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 19, + ACTIONS(4137), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231619,53 +219469,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7946] = 15, + [8284] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4191), 1, - anon_sym_LBRACK, - ACTIONS(4197), 1, - anon_sym_DOT, - ACTIONS(4200), 1, - anon_sym_LT, - ACTIONS(4222), 1, + ACTIONS(979), 1, + anon_sym_EQ_GT, + ACTIONS(1175), 1, anon_sym_EQ, - ACTIONS(4242), 1, + ACTIONS(1201), 1, anon_sym_COLON, - ACTIONS(4244), 1, - anon_sym_EQ_GT, - STATE(2089), 1, + ACTIONS(4310), 1, + sym_identifier, + STATE(1945), 1, sym_comment, - STATE(3913), 1, - sym_type_arguments, - ACTIONS(4194), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4203), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4125), 13, + ACTIONS(211), 2, + sym__automatic_semicolon, 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(4139), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231681,33 +219506,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 18, + ACTIONS(118), 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, - [8038] = 4, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [8366] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2090), 1, + STATE(1946), 1, sym_comment, - ACTIONS(4304), 58, + ACTIONS(4312), 58, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -231766,20 +219610,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [8108] = 10, + [8436] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4151), 1, + anon_sym_EQ_GT, + ACTIONS(4229), 1, + anon_sym_EQ, + STATE(1947), 1, + sym_comment, + ACTIONS(4155), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4141), 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(4137), 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, + [8514] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1035), 1, + ACTIONS(979), 1, anon_sym_EQ_GT, - ACTIONS(1167), 1, + ACTIONS(1175), 1, anon_sym_EQ, ACTIONS(1199), 1, anon_sym_COLON, - ACTIONS(4306), 1, + ACTIONS(4314), 1, sym_identifier, - STATE(2091), 1, + STATE(1948), 1, sym_comment, ACTIONS(211), 2, sym__automatic_semicolon, @@ -231838,49 +219752,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [8190] = 14, + [8596] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1185), 1, + anon_sym_EQ, + ACTIONS(2030), 1, + anon_sym_extends, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4197), 1, - anon_sym_DOT, - ACTIONS(4200), 1, - anon_sym_LT, - ACTIONS(4203), 1, - anon_sym_extends, - ACTIONS(4294), 1, - anon_sym_EQ, - ACTIONS(4296), 1, + ACTIONS(4316), 1, anon_sym_EQ_GT, - STATE(2092), 1, + STATE(1949), 1, sym_comment, - STATE(3913), 1, - sym_type_arguments, - ACTIONS(4191), 2, + ACTIONS(4269), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4194), 3, + ACTIONS(4274), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4125), 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(4139), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231896,7 +219788,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 17, + ACTIONS(211), 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(118), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231911,41 +219821,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8280] = 14, + [8680] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4191), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - ACTIONS(4197), 1, + ACTIONS(4220), 1, anon_sym_DOT, - ACTIONS(4200), 1, + ACTIONS(4223), 1, anon_sym_LT, - ACTIONS(4290), 1, + ACTIONS(4235), 1, anon_sym_EQ, - ACTIONS(4292), 1, + ACTIONS(4237), 1, anon_sym_EQ_GT, - STATE(2093), 1, + STATE(1950), 1, sym_comment, - STATE(3913), 1, + STATE(3786), 1, sym_type_arguments, - ACTIONS(4203), 2, + ACTIONS(4202), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4194), 3, + ACTIONS(4210), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4125), 15, - sym__automatic_semicolon, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -231956,7 +219867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231972,7 +219883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 17, + ACTIONS(4137), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231990,18 +219901,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8370] = 8, + [8770] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4135), 1, + ACTIONS(979), 1, anon_sym_EQ_GT, - ACTIONS(4222), 1, + ACTIONS(1175), 1, anon_sym_EQ, - STATE(2094), 1, + ACTIONS(1177), 1, + anon_sym_COLON, + ACTIONS(4318), 1, + sym_identifier, + STATE(1951), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232017,32 +219935,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 20, - sym__ternary_qmark, + ACTIONS(118), 37, + anon_sym_STAR, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4121), 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, @@ -232057,28 +219961,39 @@ static const uint16_t ts_small_parse_table[] = { 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, - [8448] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [8852] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1035), 1, - anon_sym_EQ_GT, - ACTIONS(1167), 1, + ACTIONS(1175), 1, anon_sym_EQ, - ACTIONS(1179), 1, - anon_sym_COLON, - ACTIONS(4308), 1, - sym_identifier, - STATE(2095), 1, + ACTIONS(2030), 1, + anon_sym_extends, + ACTIONS(2689), 1, + anon_sym_EQ_GT, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(1952), 1, sym_comment, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(4269), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4274), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232094,77 +220009,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 37, - anon_sym_STAR, + ACTIONS(211), 17, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_in, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(118), 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_AMP, anon_sym_CARET, - 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, - [8530] = 14, + [8936] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4191), 1, - anon_sym_LBRACK, - ACTIONS(4197), 1, + ACTIONS(4145), 1, + anon_sym_LPAREN, + ACTIONS(4149), 1, anon_sym_DOT, - ACTIONS(4200), 1, + ACTIONS(4153), 1, + anon_sym_QMARK_DOT, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4248), 1, + ACTIONS(4320), 1, anon_sym_EQ, - ACTIONS(4250), 1, + ACTIONS(4322), 1, anon_sym_EQ_GT, - STATE(2096), 1, + STATE(1953), 1, sym_comment, - STATE(3913), 1, + STATE(3666), 1, + sym_arguments, + STATE(3713), 1, sym_type_arguments, - ACTIONS(4203), 2, + ACTIONS(4143), 3, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4194), 3, + ACTIONS(4147), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4125), 15, + ACTIONS(4141), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -232174,7 +220090,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232190,7 +220106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 17, + ACTIONS(4137), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232208,27 +220124,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8620] = 11, + [9030] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1185), 1, - anon_sym_EQ, - ACTIONS(2030), 1, - anon_sym_extends, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4310), 1, + ACTIONS(4139), 1, + anon_sym_EQ, + ACTIONS(4151), 1, anon_sym_EQ_GT, - STATE(2097), 1, + STATE(1954), 1, sym_comment, - ACTIONS(4273), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4276), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2691), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232244,13 +220151,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 17, - sym__automatic_semicolon, + ACTIONS(4141), 20, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -232262,16 +220172,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 18, + ACTIONS(4137), 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, @@ -232281,40 +220194,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8704] = 16, + [9108] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + STATE(1955), 1, + sym_comment, + ACTIONS(3320), 58, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_await, + anon_sym_SEMI, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [9178] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1956), 1, + sym_comment, + ACTIONS(3296), 58, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(4133), 1, + anon_sym_RPAREN, + anon_sym_await, + anon_sym_SEMI, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [9248] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4202), 1, + anon_sym_extends, + ACTIONS(4220), 1, anon_sym_DOT, - ACTIONS(4137), 1, - anon_sym_QMARK_DOT, - ACTIONS(4141), 1, + ACTIONS(4223), 1, anon_sym_LT, - ACTIONS(4222), 1, + ACTIONS(4298), 1, anon_sym_EQ, - ACTIONS(4244), 1, + ACTIONS(4300), 1, anon_sym_EQ_GT, - STATE(2098), 1, + STATE(1957), 1, sym_comment, - STATE(3804), 1, - sym_arguments, - STATE(3877), 1, + STATE(3786), 1, sym_type_arguments, - ACTIONS(4131), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4127), 4, + ACTIONS(4204), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4125), 11, + ACTIONS(4210), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4141), 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, @@ -232324,7 +220367,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + anon_sym_implements, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232340,11 +220384,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 18, + ACTIONS(4137), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -232359,40 +220402,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8798] = 16, + [9338] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4123), 1, - anon_sym_EQ, - ACTIONS(4135), 1, - anon_sym_EQ_GT, - ACTIONS(4191), 1, - anon_sym_LBRACK, - ACTIONS(4197), 1, + ACTIONS(4145), 1, + anon_sym_LPAREN, + ACTIONS(4149), 1, anon_sym_DOT, - ACTIONS(4200), 1, + ACTIONS(4153), 1, + anon_sym_QMARK_DOT, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(4203), 1, - anon_sym_extends, - ACTIONS(4242), 1, - anon_sym_COLON, - STATE(2099), 1, + ACTIONS(4229), 1, + anon_sym_EQ, + ACTIONS(4255), 1, + anon_sym_EQ_GT, + STATE(1958), 1, sym_comment, - STATE(3913), 1, + STATE(3666), 1, + sym_arguments, + STATE(3713), 1, sym_type_arguments, - ACTIONS(4194), 2, + ACTIONS(4147), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4312), 2, + ACTIONS(4143), 4, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(4125), 13, + anon_sym_extends, + ACTIONS(4141), 11, 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, @@ -232402,7 +220445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232418,7 +220461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 18, + ACTIONS(4137), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232437,90 +220480,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8892] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2100), 1, - sym_comment, - ACTIONS(3274), 58, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_await, - anon_sym_SEMI, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [8962] = 9, + [9432] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4205), 1, + ACTIONS(4195), 1, anon_sym_EQ, - ACTIONS(4257), 1, + ACTIONS(4267), 1, anon_sym_QMARK, - STATE(2101), 1, + STATE(1959), 1, sym_comment, - ACTIONS(4259), 5, + ACTIONS(4264), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4125), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -232536,7 +220513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232552,7 +220529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232574,17 +220551,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9042] = 8, + [9512] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1117), 1, + ACTIONS(115), 1, anon_sym_EQ, + ACTIONS(124), 1, + anon_sym_QMARK, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4240), 1, + ACTIONS(4269), 1, + anon_sym_LBRACK, + ACTIONS(4279), 1, anon_sym_EQ_GT, - STATE(2102), 1, + STATE(1960), 1, sym_comment, + ACTIONS(2030), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4274), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4292), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(211), 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(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -232601,17 +220606,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 20, + ACTIONS(118), 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, + [9600] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4220), 1, + anon_sym_DOT, + ACTIONS(4223), 1, + anon_sym_LT, + ACTIONS(4229), 1, + anon_sym_EQ, + ACTIONS(4253), 1, + anon_sym_COLON, + ACTIONS(4255), 1, + anon_sym_EQ_GT, + STATE(1961), 1, + sym_comment, + STATE(3786), 1, + sym_type_arguments, + ACTIONS(4210), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4202), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4141), 13, 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, @@ -232622,7 +220668,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4155), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4137), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232632,30 +220694,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9120] = 8, + [9692] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1165), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4123), 1, - anon_sym_EQ, - ACTIONS(4135), 1, + ACTIONS(4272), 1, anon_sym_EQ_GT, - STATE(2103), 1, + STATE(1962), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232671,7 +220730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 20, + ACTIONS(211), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -232692,7 +220751,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232714,20 +220773,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9198] = 10, + [9770] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1035), 1, + ACTIONS(979), 1, anon_sym_EQ_GT, - ACTIONS(1167), 1, + ACTIONS(1175), 1, anon_sym_EQ, - ACTIONS(1201), 1, + ACTIONS(1197), 1, anon_sym_COLON, - ACTIONS(4316), 1, + ACTIONS(4324), 1, sym_identifier, - STATE(2104), 1, + STATE(1963), 1, sym_comment, ACTIONS(211), 2, sym__automatic_semicolon, @@ -232786,18 +220845,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9280] = 8, + [9852] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1135), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4240), 1, + ACTIONS(2806), 1, + anon_sym_COLON, + ACTIONS(4172), 1, anon_sym_EQ_GT, - STATE(2105), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + STATE(1964), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232813,16 +220874,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 20, + ACTIONS(4141), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -232834,7 +220893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232856,35 +220915,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9358] = 13, + [9931] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(124), 1, - anon_sym_QMARK, - ACTIONS(213), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4240), 1, - anon_sym_EQ_GT, - ACTIONS(4273), 1, + ACTIONS(4204), 1, anon_sym_LBRACK, - STATE(2106), 1, + ACTIONS(4220), 1, + anon_sym_DOT, + ACTIONS(4223), 1, + anon_sym_LT, + ACTIONS(4302), 1, + anon_sym_EQ, + ACTIONS(4304), 1, + anon_sym_EQ_GT, + STATE(1965), 1, sym_comment, - ACTIONS(2030), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4237), 2, + STATE(3786), 1, + sym_type_arguments, + ACTIONS(4202), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4276), 2, + anon_sym_extends, + ACTIONS(4210), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(211), 14, + ACTIONS(4141), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_of, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -232895,61 +220956,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_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, - [9446] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1035), 1, - anon_sym_EQ_GT, - ACTIONS(1167), 1, - anon_sym_EQ, - ACTIONS(1197), 1, - anon_sym_COLON, - ACTIONS(4119), 1, - sym_identifier, - STATE(2107), 1, - sym_comment, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232965,52 +220972,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 37, + ACTIONS(4137), 17, 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, - [9528] = 4, + [10020] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2108), 1, + STATE(1966), 1, sym_comment, - ACTIONS(3284), 58, + ACTIONS(4326), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233020,9 +221007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_await, - anon_sym_SEMI, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -233033,6 +221018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_new, anon_sym_using, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -233069,29 +221055,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [9598] = 9, + [10089] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4222), 1, + ACTIONS(4139), 1, anon_sym_EQ, - ACTIONS(4246), 1, - anon_sym_QMARK, - STATE(2109), 1, + ACTIONS(4151), 1, + anon_sym_EQ_GT, + ACTIONS(4202), 1, + anon_sym_extends, + ACTIONS(4220), 1, + anon_sym_DOT, + ACTIONS(4223), 1, + anon_sym_LT, + STATE(1967), 1, sym_comment, - ACTIONS(4242), 5, - anon_sym_COMMA, + STATE(3786), 1, + sym_type_arguments, + ACTIONS(4204), 2, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4125), 15, + anon_sym_LBRACK, + ACTIONS(4210), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4141), 14, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -233102,7 +221095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233118,7 +221111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233128,63 +221121,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9678] = 16, + [10178] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_DOT, - ACTIONS(4137), 1, - anon_sym_QMARK_DOT, - ACTIONS(4141), 1, - anon_sym_LT, - ACTIONS(4318), 1, - anon_sym_EQ, - ACTIONS(4320), 1, + ACTIONS(2882), 1, + anon_sym_COLON, + ACTIONS(4172), 1, anon_sym_EQ_GT, - STATE(2110), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + STATE(1968), 1, sym_comment, - STATE(3804), 1, - sym_arguments, - STATE(3877), 1, - sym_type_arguments, - ACTIONS(4127), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4131), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4125), 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(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233200,45 +221159,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 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, - [9772] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4252), 1, - anon_sym_EQ, - ACTIONS(4257), 1, - anon_sym_QMARK, - STATE(2111), 1, - sym_comment, - ACTIONS(4255), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4125), 15, + ACTIONS(4141), 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, @@ -233251,23 +221178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233289,18 +221200,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9852] = 6, + [10257] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2112), 1, + ACTIONS(4328), 1, + anon_sym_COMMA, + STATE(1969), 1, sym_comment, - ACTIONS(4322), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(4143), 22, + ACTIONS(4125), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -233323,13 +221232,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4145), 32, + ACTIONS(4127), 34, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, 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, @@ -233356,79 +221267,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9925] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [10330] = 6, ACTIONS(5), 1, sym_html_comment, - STATE(2113), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4330), 1, + anon_sym_COMMA, + STATE(1970), 1, sym_comment, - ACTIONS(4324), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, + ACTIONS(4181), 22, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(4183), 34, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + 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, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [9994] = 4, + anon_sym_satisfies, + [10403] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2114), 1, + STATE(1971), 1, sym_comment, - ACTIONS(4326), 57, + ACTIONS(3140), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -233439,6 +221352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_await, + anon_sym_SEMI, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -233449,7 +221363,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_new, anon_sym_using, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -233486,89 +221399,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [10063] = 8, + [10472] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1260), 1, + anon_sym_EQ, + ACTIONS(2030), 1, + anon_sym_extends, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4166), 1, + ACTIONS(4332), 1, anon_sym_EQ_GT, - ACTIONS(4224), 1, - anon_sym_EQ, - STATE(2115), 1, + STATE(1972), 1, sym_comment, - ACTIONS(4139), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4269), 2, 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(4121), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4274), 3, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10140] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2878), 1, - anon_sym_COLON, - ACTIONS(4166), 1, - anon_sym_EQ_GT, - ACTIONS(4224), 1, - anon_sym_EQ, - STATE(2116), 1, - sym_comment, - ACTIONS(4139), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233584,14 +221435,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 18, - sym__automatic_semicolon, + ACTIONS(211), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -233603,19 +221451,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 21, + anon_sym_implements, + ACTIONS(118), 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_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -233625,18 +221471,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10219] = 9, + [10555] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1167), 1, + ACTIONS(1099), 1, anon_sym_EQ, - ACTIONS(2689), 1, - anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2878), 1, - anon_sym_COLON, - STATE(2117), 1, + ACTIONS(4316), 1, + anon_sym_EQ_GT, + STATE(1973), 1, sym_comment, ACTIONS(2691), 15, anon_sym_PLUS_EQ, @@ -233654,12 +221498,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 18, + ACTIONS(211), 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, @@ -233695,18 +221540,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10298] = 8, + [10632] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4220), 1, - anon_sym_EQ_GT, - ACTIONS(4222), 1, + ACTIONS(4229), 1, anon_sym_EQ, - STATE(2118), 1, + ACTIONS(4233), 1, + anon_sym_EQ_GT, + STATE(1974), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233722,7 +221567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 19, + ACTIONS(4141), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -233742,7 +221587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233764,37 +221609,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10375] = 14, + [10709] = 12, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1099), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4191), 1, + ACTIONS(4269), 1, anon_sym_LBRACK, - ACTIONS(4197), 1, - anon_sym_DOT, - ACTIONS(4200), 1, - anon_sym_LT, - ACTIONS(4300), 1, - anon_sym_EQ, - ACTIONS(4302), 1, + ACTIONS(4277), 1, + anon_sym_COLON, + ACTIONS(4279), 1, anon_sym_EQ_GT, - STATE(2119), 1, + STATE(1975), 1, sym_comment, - STATE(3913), 1, - sym_type_arguments, - ACTIONS(4203), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4194), 3, - anon_sym_GT, + ACTIONS(4274), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4125), 14, + ACTIONS(2030), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(211), 14, 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, @@ -233805,7 +221646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233821,10 +221662,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 17, + ACTIONS(118), 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, @@ -233836,23 +221678,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10464] = 9, + [10794] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2840), 1, - anon_sym_COLON, - ACTIONS(4166), 1, + ACTIONS(4172), 1, anon_sym_EQ_GT, - ACTIONS(4224), 1, + ACTIONS(4216), 1, anon_sym_EQ, - STATE(2120), 1, + STATE(1976), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233868,11 +221709,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 18, + ACTIONS(4141), 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, @@ -233887,7 +221729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233909,18 +221751,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10543] = 9, + [10871] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1167), 1, + ACTIONS(1175), 1, anon_sym_EQ, ACTIONS(2689), 1, anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2840), 1, - anon_sym_COLON, - STATE(2121), 1, + STATE(1977), 1, sym_comment, ACTIONS(2691), 15, anon_sym_PLUS_EQ, @@ -233938,11 +221778,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 18, + ACTIONS(211), 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, @@ -233979,88 +221820,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10622] = 5, + [10948] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2122), 1, + STATE(1978), 1, sym_comment, - ACTIONS(3078), 22, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(4247), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_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(3080), 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_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [10693] = 10, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [11017] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1175), 1, + anon_sym_EQ, + ACTIONS(2689), 1, + anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4166), 1, - anon_sym_EQ_GT, - ACTIONS(4224), 1, - anon_sym_EQ, - ACTIONS(4328), 1, - anon_sym_in, - ACTIONS(4331), 1, - anon_sym_of, - STATE(2123), 1, + ACTIONS(2882), 1, + anon_sym_COLON, + STATE(1979), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234076,7 +221914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 18, + ACTIONS(211), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -234095,9 +221933,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 20, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -234116,116 +221955,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10774] = 10, + [11096] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1167), 1, - anon_sym_EQ, - ACTIONS(1203), 1, - anon_sym_in, - ACTIONS(2689), 1, - anon_sym_EQ_GT, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4333), 1, - anon_sym_of, - STATE(2124), 1, + STATE(1980), 1, sym_comment, - ACTIONS(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3144), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_await, anon_sym_SEMI, + anon_sym_yield, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 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_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [10855] = 9, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [11165] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2898), 1, - anon_sym_COLON, - ACTIONS(4166), 1, - anon_sym_EQ_GT, - ACTIONS(4224), 1, + ACTIONS(4145), 1, + anon_sym_LPAREN, + ACTIONS(4149), 1, + anon_sym_DOT, + ACTIONS(4153), 1, + anon_sym_QMARK_DOT, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4229), 1, anon_sym_EQ, - STATE(2125), 1, + ACTIONS(4255), 1, + anon_sym_EQ_GT, + STATE(1981), 1, sym_comment, - ACTIONS(4139), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + STATE(3666), 1, + sym_arguments, + STATE(3713), 1, + sym_type_arguments, + ACTIONS(4143), 3, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_extends, + ACTIONS(4147), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4141), 11, + sym__ternary_qmark, + anon_sym_as, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -234235,40 +222063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 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, - [10934] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4218), 1, - anon_sym_EQ, - ACTIONS(4220), 1, - anon_sym_EQ_GT, - STATE(2126), 1, - sym_comment, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234284,98 +222079,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 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(4121), 21, + ACTIONS(4137), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11011] = 9, + [11258] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1167), 1, - anon_sym_EQ, - ACTIONS(2689), 1, - anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2764), 1, - anon_sym_COLON, - STATE(2127), 1, + STATE(1982), 1, sym_comment, - ACTIONS(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 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(118), 21, + ACTIONS(4177), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -234396,48 +222127,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11090] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4191), 1, - anon_sym_LBRACK, - ACTIONS(4197), 1, - anon_sym_DOT, - ACTIONS(4200), 1, - anon_sym_LT, - ACTIONS(4318), 1, - anon_sym_EQ, - ACTIONS(4320), 1, - anon_sym_EQ_GT, - STATE(2128), 1, - sym_comment, - STATE(3913), 1, - sym_type_arguments, - ACTIONS(4203), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4194), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4125), 14, + ACTIONS(4179), 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4139), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234453,34 +222154,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 17, - anon_sym_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [11329] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1983), 1, + sym_comment, + ACTIONS(3238), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, 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_LPAREN, + anon_sym_await, + anon_sym_SEMI, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11179] = 8, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [11398] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1167), 1, + ACTIONS(1175), 1, anon_sym_EQ, ACTIONS(2689), 1, anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2129), 1, + ACTIONS(2768), 1, + anon_sym_COLON, + STATE(1984), 1, sym_comment, ACTIONS(2691), 15, anon_sym_PLUS_EQ, @@ -234498,12 +222257,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 19, + ACTIONS(211), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -234536,52 +222294,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [11256] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2130), 1, - sym_comment, - ACTIONS(3072), 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(3074), 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_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [11477] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2768), 1, + anon_sym_COLON, + ACTIONS(4172), 1, + anon_sym_EQ_GT, + ACTIONS(4216), 1, + anon_sym_EQ, + STATE(1985), 1, + sym_comment, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234597,6 +222327,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(4141), 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, @@ -234606,29 +222346,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11327] = 13, + ACTIONS(4137), 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, + [11556] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1135), 1, + ACTIONS(213), 1, anon_sym_EQ, - ACTIONS(2030), 1, - anon_sym_extends, + ACTIONS(1972), 1, + anon_sym_QMARK, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4240), 1, - anon_sym_EQ_GT, - ACTIONS(4266), 1, - anon_sym_COLON, - ACTIONS(4273), 1, + ACTIONS(4269), 1, anon_sym_LBRACK, - STATE(2131), 1, + ACTIONS(4272), 1, + anon_sym_EQ_GT, + STATE(1986), 1, sym_comment, - ACTIONS(4276), 2, + ACTIONS(4274), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4335), 2, + ACTIONS(2030), 3, anon_sym_COMMA, anon_sym_RBRACK, + anon_sym_extends, ACTIONS(211), 14, sym__ternary_qmark, anon_sym_as, @@ -234680,49 +222441,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11414] = 6, + [11641] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1175), 1, + anon_sym_EQ, + ACTIONS(2689), 1, + anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2132), 1, + ACTIONS(2844), 1, + anon_sym_COLON, + STATE(1987), 1, sym_comment, - ACTIONS(4339), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(4147), 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(4149), 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, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234738,6 +222470,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(211), 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, @@ -234747,16 +222489,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11487] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2133), 1, - sym_comment, - ACTIONS(4147), 22, + ACTIONS(118), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -234777,18 +222511,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4149), 35, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + [11720] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1988), 1, + sym_comment, + ACTIONS(3260), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_of, + anon_sym_await, anon_sym_SEMI, + anon_sym_yield, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [11789] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1185), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4316), 1, + anon_sym_EQ_GT, + STATE(1989), 1, + sym_comment, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234804,41 +222603,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [11558] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1117), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4264), 1, - anon_sym_EQ_GT, - ACTIONS(4266), 1, - anon_sym_COLON, - ACTIONS(4273), 1, - anon_sym_LBRACK, - STATE(2134), 1, - sym_comment, - ACTIONS(4276), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2030), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(211), 14, + ACTIONS(211), 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, @@ -234850,23 +222623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 19, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234876,7 +222633,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -234886,48 +222645,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11643] = 5, + [11866] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2135), 1, - sym_comment, - ACTIONS(4143), 22, - anon_sym_STAR, + ACTIONS(2844), 1, + anon_sym_COLON, + ACTIONS(4172), 1, + anon_sym_EQ_GT, + ACTIONS(4216), 1, 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(4145), 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, + STATE(1990), 1, + sym_comment, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234943,6 +222674,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(4141), 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, @@ -234952,26 +222693,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11714] = 11, + ACTIONS(4137), 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, + [11945] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1252), 1, + ACTIONS(1175), 1, anon_sym_EQ, + ACTIONS(1203), 1, + anon_sym_in, + ACTIONS(2689), 1, + anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4273), 1, - anon_sym_LBRACK, - ACTIONS(4341), 1, - anon_sym_EQ_GT, - STATE(2136), 1, + ACTIONS(4334), 1, + anon_sym_of, + STATE(1991), 1, sym_comment, - ACTIONS(2030), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4276), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -234988,12 +222746,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 16, + ACTIONS(211), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -235005,16 +222765,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 18, + ACTIONS(118), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -235024,16 +222786,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11797] = 8, + [12026] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1117), 1, + ACTIONS(1175), 1, anon_sym_EQ, + ACTIONS(2689), 1, + anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4310), 1, - anon_sym_EQ_GT, - STATE(2137), 1, + ACTIONS(2806), 1, + anon_sym_COLON, + STATE(1992), 1, sym_comment, ACTIONS(2691), 15, anon_sym_PLUS_EQ, @@ -235051,13 +222815,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 19, + ACTIONS(211), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -235093,14 +222856,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11874] = 5, + [12105] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2138), 1, + STATE(1993), 1, sym_comment, - ACTIONS(4151), 22, + ACTIONS(4125), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -235123,7 +222886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4153), 35, + ACTIONS(4127), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -235159,27 +222922,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [11945] = 11, + [12176] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1264), 1, - anon_sym_EQ, - ACTIONS(2030), 1, - anon_sym_extends, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4343), 1, + ACTIONS(4172), 1, anon_sym_EQ_GT, - STATE(2139), 1, + ACTIONS(4229), 1, + anon_sym_EQ, + STATE(1994), 1, sym_comment, - ACTIONS(4273), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4276), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2691), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235195,11 +222949,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 16, + ACTIONS(4141), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -235211,17 +222969,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(118), 18, + ACTIONS(4137), 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, @@ -235231,14 +222991,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12028] = 5, + [12253] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2140), 1, + STATE(1995), 1, sym_comment, - ACTIONS(4147), 22, + ACTIONS(4133), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -235261,7 +223021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4149), 35, + ACTIONS(4135), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -235297,83 +223057,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12099] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2141), 1, - sym_comment, - ACTIONS(4345), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [12168] = 8, + [12324] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4166), 1, - anon_sym_EQ_GT, - ACTIONS(4222), 1, + ACTIONS(4229), 1, anon_sym_EQ, - STATE(2142), 1, + STATE(1996), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235389,13 +223082,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 19, + ACTIONS(4141), 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, @@ -235409,77 +223103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 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, - [12245] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2764), 1, - anon_sym_COLON, - ACTIONS(4166), 1, - anon_sym_EQ_GT, - ACTIONS(4224), 1, - anon_sym_EQ, - STATE(2143), 1, - sym_comment, - ACTIONS(4139), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 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(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -235501,14 +223125,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12324] = 5, + [12399] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2144), 1, + STATE(1997), 1, sym_comment, - ACTIONS(4175), 22, + ACTIONS(3116), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -235531,7 +223155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4177), 35, + ACTIONS(3118), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -235567,91 +223191,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12395] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2145), 1, - sym_comment, - ACTIONS(3168), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_SEMI, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [12464] = 11, + [12470] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(1165), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2934), 1, + ACTIONS(4272), 1, anon_sym_EQ_GT, - ACTIONS(4273), 1, - anon_sym_LBRACK, - STATE(2146), 1, + ACTIONS(4277), 1, + anon_sym_COLON, + STATE(1998), 1, sym_comment, - ACTIONS(2030), 2, + ACTIONS(4336), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4276), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(211), 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(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -235668,33 +223240,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 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(118), 18, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -235704,288 +223262,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12547] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2147), 1, - sym_comment, - ACTIONS(3124), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_SEMI, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [12616] = 16, + [12551] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_DOT, - ACTIONS(4137), 1, - anon_sym_QMARK_DOT, - ACTIONS(4141), 1, - anon_sym_LT, - ACTIONS(4222), 1, - anon_sym_EQ, - ACTIONS(4244), 1, - anon_sym_EQ_GT, - STATE(2148), 1, + STATE(1999), 1, sym_comment, - STATE(3804), 1, - sym_arguments, - STATE(3877), 1, - sym_type_arguments, - ACTIONS(4127), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4131), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4125), 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(4139), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 17, + ACTIONS(3082), 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, - [12709] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2149), 1, - sym_comment, - ACTIONS(3138), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_SEMI, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [12778] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2150), 1, - sym_comment, - ACTIONS(3132), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, + ACTIONS(3084), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_await, + anon_sym_of, anon_sym_SEMI, - anon_sym_yield, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [12847] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4123), 1, - anon_sym_EQ, - STATE(2151), 1, - sym_comment, - ACTIONS(4139), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236001,18 +223319,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 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, @@ -236022,8 +223328,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 21, + [12622] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2000), 1, + sym_comment, + ACTIONS(4181), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -236044,83 +223358,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12922] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2152), 1, - sym_comment, - ACTIONS(4347), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, + ACTIONS(4183), 35, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [12991] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1117), 1, - anon_sym_EQ, - ACTIONS(2689), 1, - anon_sym_EQ_GT, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2153), 1, - sym_comment, - ACTIONS(2691), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236136,17 +223385,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 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, @@ -236156,8 +223394,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + [12693] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2001), 1, + sym_comment, + ACTIONS(4330), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(4181), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -236178,28 +223428,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13068] = 10, + ACTIONS(4183), 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, + [12766] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1135), 1, + ACTIONS(1165), 1, anon_sym_EQ, + ACTIONS(2030), 1, + anon_sym_extends, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4240), 1, + ACTIONS(4269), 1, + anon_sym_LBRACK, + ACTIONS(4272), 1, anon_sym_EQ_GT, - ACTIONS(4266), 1, + ACTIONS(4277), 1, anon_sym_COLON, - STATE(2154), 1, + STATE(2002), 1, sym_comment, - ACTIONS(4349), 3, + ACTIONS(4274), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4339), 2, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(211), 15, + ACTIONS(211), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -236227,7 +223515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -236237,9 +223525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -236249,14 +223535,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13149] = 5, + [12853] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2155), 1, + STATE(2003), 1, sym_comment, - ACTIONS(4187), 22, + ACTIONS(4191), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -236279,7 +223565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4189), 35, + ACTIONS(4193), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -236315,56 +223601,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13220] = 9, + [12924] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2802), 1, - anon_sym_COLON, - ACTIONS(4166), 1, - anon_sym_EQ_GT, - ACTIONS(4224), 1, - anon_sym_EQ, - STATE(2156), 1, + STATE(2004), 1, sym_comment, - ACTIONS(4139), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 18, + ACTIONS(4328), 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4121), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(4125), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -236385,20 +223635,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13299] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1167), 1, - anon_sym_EQ, - ACTIONS(2689), 1, - anon_sym_EQ_GT, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2802), 1, - anon_sym_COLON, - STATE(2157), 1, - sym_comment, - ACTIONS(2691), 15, + ACTIONS(4127), 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, @@ -236414,16 +223659,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 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, @@ -236433,38 +223668,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [13378] = 7, + [12997] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1099), 1, + anon_sym_EQ, + ACTIONS(2689), 1, + anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4222), 1, - anon_sym_EQ, - STATE(2158), 1, + STATE(2005), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236480,14 +223695,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 20, + ACTIONS(211), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -236501,7 +223715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -236523,93 +223737,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13453] = 14, + [13074] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4123), 1, - anon_sym_EQ, - ACTIONS(4135), 1, + ACTIONS(2746), 1, + anon_sym_COLON, + ACTIONS(4172), 1, anon_sym_EQ_GT, - ACTIONS(4197), 1, - anon_sym_DOT, - ACTIONS(4200), 1, - anon_sym_LT, - ACTIONS(4203), 1, - anon_sym_extends, - STATE(2159), 1, - sym_comment, - STATE(3913), 1, - sym_type_arguments, - ACTIONS(4191), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4194), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4125), 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(4139), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 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, - [13542] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1185), 1, + ACTIONS(4216), 1, anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4310), 1, - anon_sym_EQ_GT, - STATE(2160), 1, + STATE(2006), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236625,13 +223766,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 19, + ACTIONS(4141), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -236645,7 +223785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -236667,14 +223807,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13619] = 4, + [13153] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2161), 1, + STATE(2007), 1, sym_comment, - ACTIONS(4352), 57, + ACTIONS(4343), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236732,14 +223872,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [13688] = 5, + [13222] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2162), 1, + STATE(2008), 1, sym_comment, - ACTIONS(4155), 22, + ACTIONS(4181), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -236762,7 +223902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4157), 35, + ACTIONS(4183), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -236798,18 +223938,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13759] = 6, + [13293] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1175), 1, + anon_sym_EQ, + ACTIONS(2689), 1, + anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4339), 1, - anon_sym_COMMA, - STATE(2163), 1, + ACTIONS(2746), 1, + anon_sym_COLON, + STATE(2009), 1, sym_comment, - ACTIONS(4147), 22, + ACTIONS(2691), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(211), 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(118), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -236830,17 +224008,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4149), 34, + [13372] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4220), 1, + anon_sym_DOT, + ACTIONS(4223), 1, + anon_sym_LT, + ACTIONS(4320), 1, + anon_sym_EQ, + ACTIONS(4322), 1, + anon_sym_EQ_GT, + STATE(2010), 1, + sym_comment, + STATE(3786), 1, + sym_type_arguments, + ACTIONS(4202), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4210), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4141), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - 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, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236856,25 +224065,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [13832] = 6, + ACTIONS(4137), 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, + [13461] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4322), 1, - anon_sym_COMMA, - STATE(2164), 1, + STATE(2011), 1, sym_comment, - ACTIONS(4143), 22, + ACTIONS(4125), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -236897,15 +224113,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4145), 34, + ACTIONS(4127), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, @@ -236932,44 +224149,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13905] = 12, + [13532] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(213), 1, - anon_sym_EQ, - ACTIONS(1978), 1, - anon_sym_QMARK, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4240), 1, - anon_sym_EQ_GT, - ACTIONS(4273), 1, - anon_sym_LBRACK, - STATE(2165), 1, + STATE(2012), 1, sym_comment, - ACTIONS(4276), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2030), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(211), 14, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4345), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, 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_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2691), 15, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [13601] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4139), 1, + anon_sym_EQ, + STATE(2013), 1, + sym_comment, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236985,7 +224239,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 19, + ACTIONS(4141), 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(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -236995,7 +224270,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -237005,14 +224282,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13990] = 4, + [13676] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2166), 1, + STATE(2014), 1, sym_comment, - ACTIONS(4231), 57, + ACTIONS(4347), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237070,66 +224347,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [14059] = 16, + [13745] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4129), 1, - anon_sym_LPAREN, - ACTIONS(4133), 1, - anon_sym_DOT, - ACTIONS(4137), 1, - anon_sym_QMARK_DOT, - ACTIONS(4141), 1, - anon_sym_LT, - ACTIONS(4222), 1, - anon_sym_EQ, - ACTIONS(4244), 1, - anon_sym_EQ_GT, - STATE(2167), 1, + STATE(2015), 1, sym_comment, - STATE(3804), 1, - sym_arguments, - STATE(3877), 1, - sym_type_arguments, - ACTIONS(4131), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4127), 3, - anon_sym_RPAREN, + ACTIONS(4349), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4125), 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_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4139), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 18, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [13814] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2016), 1, + sym_comment, + ACTIONS(4129), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -237138,23 +224430,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14152] = 5, + ACTIONS(4131), 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, + [13885] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2168), 1, + STATE(2017), 1, sym_comment, - ACTIONS(4171), 22, + ACTIONS(4185), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -237177,7 +224508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4173), 35, + ACTIONS(4187), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -237213,20 +224544,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14223] = 9, + [13956] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1167), 1, - anon_sym_EQ, - ACTIONS(2689), 1, - anon_sym_EQ_GT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2898), 1, - anon_sym_COLON, - STATE(2169), 1, + ACTIONS(4231), 1, + anon_sym_EQ, + ACTIONS(4233), 1, + anon_sym_EQ_GT, + STATE(2018), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237242,12 +224571,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 18, + ACTIONS(4141), 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, @@ -237261,7 +224591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -237283,27 +224613,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14302] = 5, + [14033] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1232), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2170), 1, + ACTIONS(2934), 1, + anon_sym_EQ_GT, + ACTIONS(4269), 1, + anon_sym_LBRACK, + STATE(2019), 1, sym_comment, - ACTIONS(4143), 22, + ACTIONS(2030), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4274), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2691), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(211), 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(118), 18, 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, @@ -237313,18 +224685,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4145), 35, + [14116] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4172), 1, + anon_sym_EQ_GT, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4351), 1, + anon_sym_in, + ACTIONS(4354), 1, + anon_sym_of, + STATE(2020), 1, + sym_comment, + ACTIONS(4155), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4141), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4137), 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, + [14197] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1246), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4269), 1, + anon_sym_LBRACK, + ACTIONS(4356), 1, + anon_sym_EQ_GT, + STATE(2021), 1, + sym_comment, + ACTIONS(2030), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4274), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237340,6 +224792,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(211), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -237349,28 +224809,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14373] = 9, + ACTIONS(118), 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, + [14280] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4123), 1, + ACTIONS(4145), 1, + anon_sym_LPAREN, + ACTIONS(4149), 1, + anon_sym_DOT, + ACTIONS(4153), 1, + anon_sym_QMARK_DOT, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(4229), 1, anon_sym_EQ, - ACTIONS(4135), 1, + ACTIONS(4255), 1, anon_sym_EQ_GT, - STATE(2171), 1, + STATE(2022), 1, sym_comment, - ACTIONS(4354), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4125), 15, + STATE(3666), 1, + sym_arguments, + STATE(3713), 1, + sym_type_arguments, + ACTIONS(4147), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4143), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4141), 11, 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, @@ -237380,7 +224870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237396,7 +224886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -237406,35 +224896,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14451] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [14373] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4229), 1, anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(4300), 1, anon_sym_EQ_GT, - ACTIONS(4298), 1, - sym_identifier, - STATE(2172), 1, + STATE(2023), 1, sym_comment, - ACTIONS(211), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(159), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237450,17 +224932,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, - anon_sym_STAR, + ACTIONS(4141), 18, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_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(4137), 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, @@ -237475,30 +224970,94 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_QMARK, + [14449] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1272), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4269), 1, + anon_sym_LBRACK, + ACTIONS(4358), 1, + anon_sym_EQ_GT, + STATE(2024), 1, + sym_comment, + ACTIONS(2030), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4274), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(211), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14529] = 8, + ACTIONS(2691), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 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, + [14531] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4222), 1, + ACTIONS(4216), 1, anon_sym_EQ, - ACTIONS(4296), 1, - anon_sym_EQ_GT, - STATE(2173), 1, + ACTIONS(4351), 1, + anon_sym_in, + ACTIONS(4354), 1, + anon_sym_of, + STATE(2025), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237514,12 +225073,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 18, + ACTIONS(4141), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -237532,11 +225092,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4121), 21, + ACTIONS(4137), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -237555,18 +225113,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14605] = 8, + [14609] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1117), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4343), 1, - anon_sym_EQ_GT, - STATE(2174), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + STATE(2026), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237582,12 +225138,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 18, + ACTIONS(4141), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -237600,8 +225158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(118), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -237623,16 +225180,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14681] = 7, + [14683] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1215), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, - anon_sym_EQ, - STATE(2175), 1, + ACTIONS(4281), 1, + anon_sym_RBRACK, + ACTIONS(4292), 1, + anon_sym_COMMA, + ACTIONS(4358), 1, + anon_sym_EQ_GT, + ACTIONS(4360), 1, + anon_sym_COLON, + STATE(2027), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(211), 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(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237648,15 +225229,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 19, + ACTIONS(118), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [14765] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1232), 1, + anon_sym_EQ, + ACTIONS(1238), 1, + anon_sym_EQ_GT, + ACTIONS(4362), 1, + sym_identifier, + STATE(2028), 1, + sym_comment, + ACTIONS(211), 2, sym__automatic_semicolon, sym__ternary_qmark, + ACTIONS(159), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 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, + [14843] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1280), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4269), 1, + anon_sym_LBRACK, + ACTIONS(4364), 1, + anon_sym_EQ_GT, + STATE(2029), 1, + sym_comment, + ACTIONS(2030), 2, anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4274), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(211), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -237668,19 +225356,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 21, + ACTIONS(2691), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 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_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -237690,7 +225391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14755] = 9, + [14925] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -237699,9 +225400,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1238), 1, anon_sym_EQ_GT, - ACTIONS(4308), 1, + ACTIONS(4310), 1, sym_identifier, - STATE(2176), 1, + STATE(2030), 1, sym_comment, ACTIONS(211), 2, sym__automatic_semicolon, @@ -237759,16 +225460,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14833] = 7, + [15003] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4224), 1, + ACTIONS(4139), 1, anon_sym_EQ, - STATE(2177), 1, + ACTIONS(4253), 1, + anon_sym_COLON, + STATE(2031), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4366), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4141), 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(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237784,14 +225507,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4137), 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, + [15081] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4139), 1, + anon_sym_EQ, + ACTIONS(4151), 1, + anon_sym_EQ_GT, + STATE(2032), 1, + sym_comment, + ACTIONS(4366), 3, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4141), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -237804,7 +225560,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 21, + ACTIONS(4155), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -237826,23 +225598,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14907] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [15159] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, - anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4264), 1, + anon_sym_RBRACK, + ACTIONS(4287), 1, + anon_sym_COMMA, + ACTIONS(4322), 1, anon_sym_EQ_GT, - ACTIONS(4119), 1, - sym_identifier, - STATE(2178), 1, + ACTIONS(4369), 1, + anon_sym_EQ, + ACTIONS(4372), 1, + anon_sym_in, + ACTIONS(4374), 1, + anon_sym_COLON, + STATE(2033), 1, sym_comment, - ACTIONS(211), 2, - sym__automatic_semicolon, + ACTIONS(4141), 15, sym__ternary_qmark, - ACTIONS(159), 15, + 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(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237858,17 +225649,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(4137), 20, 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, @@ -237883,41 +225667,39 @@ static const uint16_t ts_small_parse_table[] = { 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, - [14985] = 11, + [15243] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1215), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4237), 1, - anon_sym_RBRACK, - ACTIONS(4262), 1, - anon_sym_COMMA, - ACTIONS(4357), 1, - anon_sym_COLON, - ACTIONS(4359), 1, + ACTIONS(4204), 1, + anon_sym_LBRACK, + ACTIONS(4220), 1, + anon_sym_DOT, + ACTIONS(4223), 1, + anon_sym_LT, + ACTIONS(4229), 1, + anon_sym_EQ, + ACTIONS(4255), 1, anon_sym_EQ_GT, - STATE(2179), 1, + STATE(2034), 1, sym_comment, - ACTIONS(211), 15, + STATE(3786), 1, + sym_type_arguments, + ACTIONS(4202), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4210), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4141), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -237928,7 +225710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237944,29 +225726,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4137), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15067] = 9, + [15331] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -237975,9 +225753,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1238), 1, anon_sym_EQ_GT, - ACTIONS(4316), 1, + ACTIONS(4318), 1, sym_identifier, - STATE(2180), 1, + STATE(2035), 1, sym_comment, ACTIONS(211), 2, sym__automatic_semicolon, @@ -238035,28 +225813,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [15145] = 12, + [15409] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1260), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4255), 1, - anon_sym_COMMA, - ACTIONS(4259), 1, - anon_sym_RBRACK, - ACTIONS(4302), 1, + ACTIONS(4332), 1, anon_sym_EQ_GT, - ACTIONS(4361), 1, - anon_sym_EQ, - ACTIONS(4364), 1, - anon_sym_in, - ACTIONS(4366), 1, - anon_sym_COLON, - STATE(2181), 1, + STATE(2036), 1, sym_comment, - ACTIONS(4125), 15, + ACTIONS(2691), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(211), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -238070,7 +225858,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + anon_sym_implements, + ACTIONS(118), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [15485] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1232), 1, + anon_sym_EQ, + ACTIONS(1238), 1, + anon_sym_EQ_GT, + ACTIONS(4314), 1, + sym_identifier, + STATE(2037), 1, + sym_comment, + ACTIONS(211), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238086,10 +225913,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 20, + ACTIONS(118), 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, @@ -238104,21 +225938,28 @@ static const uint16_t ts_small_parse_table[] = { 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, - [15229] = 8, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [15563] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1264), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4343), 1, - anon_sym_EQ_GT, - STATE(2182), 1, + ACTIONS(4231), 1, + anon_sym_EQ, + STATE(2038), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238134,12 +225975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 18, + ACTIONS(4141), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -238152,8 +225995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(118), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238175,43 +226017,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15305] = 11, + [15637] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1280), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4273), 1, - anon_sym_LBRACK, - ACTIONS(4368), 1, + ACTIONS(4298), 1, + anon_sym_EQ, + ACTIONS(4300), 1, anon_sym_EQ_GT, - STATE(2183), 1, + STATE(2039), 1, sym_comment, - ACTIONS(2030), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4276), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(211), 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(2691), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238227,16 +226044,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 18, + ACTIONS(4141), 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(4137), 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, @@ -238246,20 +226085,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15387] = 9, + [15713] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1099), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4224), 1, - anon_sym_EQ, - ACTIONS(4328), 1, - anon_sym_in, - ACTIONS(4331), 1, - anon_sym_of, - STATE(2184), 1, + ACTIONS(4332), 1, + anon_sym_EQ_GT, + STATE(2040), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238275,13 +226112,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 18, - sym__automatic_semicolon, + ACTIONS(211), 18, 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, @@ -238294,9 +226130,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 20, + anon_sym_implements, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -238315,38 +226153,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15465] = 9, + [15789] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4123), 1, + ACTIONS(1232), 1, anon_sym_EQ, - ACTIONS(4242), 1, - anon_sym_COLON, - STATE(2185), 1, + ACTIONS(1238), 1, + anon_sym_EQ_GT, + ACTIONS(4123), 1, + sym_identifier, + STATE(2041), 1, sym_comment, - ACTIONS(4354), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4125), 15, + ACTIONS(211), 2, + sym__automatic_semicolon, 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(4139), 15, + ACTIONS(159), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238362,11 +226185,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(118), 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, @@ -238381,10 +226210,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [15543] = 9, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [15867] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -238393,9 +226231,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, ACTIONS(1238), 1, anon_sym_EQ_GT, - ACTIONS(4306), 1, + ACTIONS(4324), 1, sym_identifier, - STATE(2186), 1, + STATE(2042), 1, sym_comment, ACTIONS(211), 2, sym__automatic_semicolon, @@ -238453,36 +226291,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [15621] = 14, + [15945] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1165), 1, + anon_sym_EQ, + ACTIONS(2030), 1, + anon_sym_extends, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4191), 1, - anon_sym_LBRACK, - ACTIONS(4197), 1, - anon_sym_DOT, - ACTIONS(4200), 1, - anon_sym_LT, - ACTIONS(4222), 1, - anon_sym_EQ, - ACTIONS(4244), 1, + ACTIONS(4272), 1, anon_sym_EQ_GT, - STATE(2187), 1, + STATE(2043), 1, sym_comment, - STATE(3913), 1, - sym_type_arguments, - ACTIONS(4203), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4194), 3, - anon_sym_GT, + ACTIONS(4269), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4274), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4125), 13, + ACTIONS(211), 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, @@ -238493,7 +226326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238509,10 +226342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 17, + ACTIONS(118), 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, @@ -238524,26 +226358,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15709] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [16027] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1232), 1, + ACTIONS(1215), 1, anon_sym_EQ, - ACTIONS(1238), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4281), 1, + anon_sym_RBRACK, + ACTIONS(4292), 1, + anon_sym_COMMA, + ACTIONS(4358), 1, anon_sym_EQ_GT, - ACTIONS(4370), 1, - sym_identifier, - STATE(2188), 1, + STATE(2044), 1, sym_comment, - ACTIONS(211), 2, - sym__automatic_semicolon, + ACTIONS(211), 15, sym__ternary_qmark, - ACTIONS(159), 15, + 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(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238559,17 +226409,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(118), 21, 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, @@ -238584,54 +226428,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [15787] = 11, + [16106] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1135), 1, - anon_sym_EQ, - ACTIONS(2030), 1, - anon_sym_extends, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4240), 1, - anon_sym_EQ_GT, - STATE(2189), 1, + ACTIONS(4298), 1, + anon_sym_EQ, + STATE(2045), 1, sym_comment, - ACTIONS(4273), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4276), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(211), 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(2691), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238647,7 +226456,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 19, + ACTIONS(4141), 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(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238657,7 +226485,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -238667,42 +226497,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15869] = 11, + [16179] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1244), 1, + ACTIONS(1099), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4273), 1, - anon_sym_LBRACK, - ACTIONS(4359), 1, + ACTIONS(4356), 1, anon_sym_EQ_GT, - STATE(2190), 1, + STATE(2046), 1, sym_comment, - ACTIONS(2030), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4276), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(211), 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(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -238719,16 +226524,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 18, + ACTIONS(211), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -238738,18 +226564,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15951] = 8, + [16254] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1099), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4294), 1, - anon_sym_EQ, - ACTIONS(4296), 1, + ACTIONS(2934), 1, anon_sym_EQ_GT, - STATE(2191), 1, + STATE(2047), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238765,12 +226591,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 18, + ACTIONS(211), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -238783,8 +226609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4121), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238806,7 +226631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16027] = 34, + [16329] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -238815,78 +226640,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2192), 1, + STATE(2048), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4378), 2, + ACTIONS(4382), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4380), 2, + ACTIONS(4384), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4807), 6, + STATE(4630), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -238899,7 +226724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16154] = 34, + [16456] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -238908,78 +226733,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, + ACTIONS(4394), 1, + anon_sym_readonly, + ACTIONS(4400), 1, + anon_sym_override, + STATE(2049), 1, + sym_comment, + STATE(3508), 1, + sym_accessibility_modifier, + STATE(3515), 1, + sym_override_modifier, + STATE(3842), 1, + sym__property_name, + STATE(4055), 1, + sym_formal_parameters, + STATE(5095), 1, + sym__call_signature, + STATE(5410), 1, + sym_decorator, + STATE(5563), 1, + aux_sym_export_statement_repeat1, + STATE(6769), 1, + sym_type_parameters, + ACTIONS(3888), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3912), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4396), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4398), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4797), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4376), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [16583] = 34, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(3886), 1, + anon_sym_LPAREN, + ACTIONS(3910), 1, + anon_sym_abstract, + ACTIONS(4378), 1, + anon_sym_export, + ACTIONS(4380), 1, + anon_sym_STAR, + ACTIONS(4386), 1, + anon_sym_LBRACK, + ACTIONS(4388), 1, + anon_sym_async, ACTIONS(4390), 1, + anon_sym_new, + ACTIONS(4392), 1, + anon_sym_static, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2193), 1, + STATE(2050), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4398), 2, + ACTIONS(4402), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4400), 2, + ACTIONS(4404), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4837), 6, + STATE(4775), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -238992,42 +226910,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16281] = 11, + [16710] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1117), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, - anon_sym_EQ_GT, - ACTIONS(4273), 1, - anon_sym_LBRACK, - STATE(2194), 1, - sym_comment, - ACTIONS(2030), 2, + ACTIONS(4330), 1, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4276), 3, + STATE(2051), 1, + sym_comment, + ACTIONS(4181), 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, - ACTIONS(211), 14, + anon_sym_PLUS, + anon_sym_DASH, + anon_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(4183), 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239043,81 +226966,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 18, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [16781] = 34, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(3886), 1, + anon_sym_LPAREN, + ACTIONS(3910), 1, + anon_sym_abstract, + ACTIONS(4378), 1, + anon_sym_export, + ACTIONS(4380), 1, 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, + ACTIONS(4386), 1, + anon_sym_LBRACK, + ACTIONS(4388), 1, + anon_sym_async, + ACTIONS(4390), 1, + anon_sym_new, + ACTIONS(4392), 1, + anon_sym_static, + ACTIONS(4394), 1, + anon_sym_readonly, + ACTIONS(4400), 1, + anon_sym_override, + STATE(2052), 1, + sym_comment, + STATE(3508), 1, + sym_accessibility_modifier, + STATE(3515), 1, + sym_override_modifier, + STATE(3842), 1, + sym__property_name, + STATE(4055), 1, + sym_formal_parameters, + STATE(5095), 1, + sym__call_signature, + STATE(5410), 1, + sym_decorator, + STATE(5563), 1, + aux_sym_export_statement_repeat1, + STATE(6769), 1, + sym_type_parameters, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4396), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4406), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4408), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4398), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4718), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4376), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [16908] = 34, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1902), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [16362] = 6, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(3886), 1, + anon_sym_LPAREN, + ACTIONS(3910), 1, + anon_sym_abstract, + ACTIONS(4378), 1, + anon_sym_export, + ACTIONS(4380), 1, + anon_sym_STAR, + ACTIONS(4386), 1, + anon_sym_LBRACK, + ACTIONS(4388), 1, + anon_sym_async, + ACTIONS(4390), 1, + anon_sym_new, + ACTIONS(4392), 1, + anon_sym_static, + ACTIONS(4394), 1, + anon_sym_readonly, + ACTIONS(4400), 1, + anon_sym_override, + STATE(2053), 1, + sym_comment, + STATE(3508), 1, + sym_accessibility_modifier, + STATE(3515), 1, + sym_override_modifier, + STATE(3842), 1, + sym__property_name, + STATE(4055), 1, + sym_formal_parameters, + STATE(5095), 1, + sym__call_signature, + STATE(5410), 1, + sym_decorator, + STATE(5563), 1, + aux_sym_export_statement_repeat1, + STATE(6769), 1, + sym_type_parameters, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4396), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4410), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4412), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4398), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4757), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4376), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [17035] = 34, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(3886), 1, + anon_sym_LPAREN, + ACTIONS(3910), 1, + anon_sym_abstract, + ACTIONS(4378), 1, + anon_sym_export, + ACTIONS(4380), 1, + anon_sym_STAR, + ACTIONS(4386), 1, + anon_sym_LBRACK, + ACTIONS(4388), 1, + anon_sym_async, + ACTIONS(4390), 1, + anon_sym_new, + ACTIONS(4392), 1, + anon_sym_static, + ACTIONS(4394), 1, + anon_sym_readonly, + ACTIONS(4400), 1, + anon_sym_override, + STATE(2054), 1, + sym_comment, + STATE(3508), 1, + sym_accessibility_modifier, + STATE(3515), 1, + sym_override_modifier, + STATE(3842), 1, + sym__property_name, + STATE(4055), 1, + sym_formal_parameters, + STATE(5095), 1, + sym__call_signature, + STATE(5410), 1, + sym_decorator, + STATE(5563), 1, + aux_sym_export_statement_repeat1, + STATE(6769), 1, + sym_type_parameters, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4396), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4414), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4416), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4398), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4735), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4376), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [17162] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1099), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4339), 1, - anon_sym_COMMA, - STATE(2195), 1, + ACTIONS(4269), 1, + anon_sym_LBRACK, + ACTIONS(4279), 1, + anon_sym_EQ_GT, + STATE(2055), 1, sym_comment, - ACTIONS(4147), 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, + ACTIONS(2030), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4274), 3, + anon_sym_GT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_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(4149), 32, - sym__automatic_semicolon, + ACTIONS(211), 14, 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, @@ -239127,16 +227289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [16433] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4294), 1, - anon_sym_EQ, - STATE(2196), 1, - sym_comment, - ACTIONS(4139), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239152,38 +227305,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 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(4121), 21, + ACTIONS(118), 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_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -239193,22 +227324,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16506] = 10, + [17243] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4300), 1, + ACTIONS(4229), 1, anon_sym_EQ, - ACTIONS(4302), 1, + ACTIONS(4296), 1, anon_sym_EQ_GT, - ACTIONS(4364), 1, - anon_sym_in, - ACTIONS(4402), 1, - anon_sym_COLON, - STATE(2197), 1, + STATE(2056), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239224,12 +227351,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 16, + ACTIONS(4141), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -239241,9 +227369,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 20, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -239262,20 +227391,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16585] = 9, + [17318] = 34, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(3886), 1, + anon_sym_LPAREN, + ACTIONS(3910), 1, + anon_sym_abstract, + ACTIONS(4378), 1, + anon_sym_export, + ACTIONS(4380), 1, + anon_sym_STAR, + ACTIONS(4386), 1, + anon_sym_LBRACK, + ACTIONS(4388), 1, + anon_sym_async, + ACTIONS(4390), 1, + anon_sym_new, + ACTIONS(4392), 1, + anon_sym_static, + ACTIONS(4394), 1, + anon_sym_readonly, + ACTIONS(4400), 1, + anon_sym_override, + STATE(2057), 1, + sym_comment, + STATE(3508), 1, + sym_accessibility_modifier, + STATE(3515), 1, + sym_override_modifier, + STATE(3842), 1, + sym__property_name, + STATE(4055), 1, + sym_formal_parameters, + STATE(5095), 1, + sym__call_signature, + STATE(5410), 1, + sym_decorator, + STATE(5563), 1, + aux_sym_export_statement_repeat1, + STATE(6769), 1, + sym_type_parameters, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4396), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4418), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4420), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4398), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4740), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4376), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [17445] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1244), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4357), 1, - anon_sym_COLON, - ACTIONS(4359), 1, + ACTIONS(4229), 1, + anon_sym_EQ, + ACTIONS(4237), 1, anon_sym_EQ_GT, - STATE(2198), 1, + STATE(2058), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239291,12 +227511,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 16, + ACTIONS(4141), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -239308,7 +227529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239330,22 +227551,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16662] = 10, + [17520] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1232), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4300), 1, - anon_sym_EQ, - ACTIONS(4302), 1, + ACTIONS(2934), 1, anon_sym_EQ_GT, - ACTIONS(4364), 1, - anon_sym_in, - ACTIONS(4366), 1, - anon_sym_COLON, - STATE(2199), 1, + STATE(2059), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239361,12 +227578,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 16, + ACTIONS(211), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -239378,9 +227596,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 20, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -239399,62 +227618,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16741] = 6, + [17595] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4322), 1, + ACTIONS(4264), 1, + anon_sym_RBRACK, + ACTIONS(4287), 1, anon_sym_COMMA, - STATE(2200), 1, - sym_comment, - ACTIONS(4143), 22, - anon_sym_STAR, + ACTIONS(4322), 1, + anon_sym_EQ_GT, + ACTIONS(4369), 1, 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(4145), 32, - sym__automatic_semicolon, + STATE(2060), 1, + sym_comment, + ACTIONS(4141), 15, 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, @@ -239464,18 +227649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [16812] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4222), 1, - anon_sym_EQ, - ACTIONS(4250), 1, - anon_sym_EQ_GT, - STATE(2201), 1, - sym_comment, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239491,25 +227665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239531,16 +227687,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16887] = 8, + [17674] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1117), 1, + ACTIONS(1246), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4341), 1, + ACTIONS(4356), 1, anon_sym_EQ_GT, - STATE(2202), 1, + STATE(2061), 1, sym_comment, ACTIONS(2691), 15, anon_sym_PLUS_EQ, @@ -239598,53 +227754,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16962] = 8, + [17749] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1252), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4341), 1, - anon_sym_EQ_GT, - STATE(2203), 1, + ACTIONS(4328), 1, + anon_sym_COMMA, + STATE(2062), 1, sym_comment, - ACTIONS(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4125), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -239665,18 +227786,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17037] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1232), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2934), 1, - anon_sym_EQ_GT, - STATE(2204), 1, - sym_comment, - ACTIONS(2691), 15, + ACTIONS(4127), 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, @@ -239692,15 +227810,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 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, @@ -239710,40 +227819,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [17112] = 8, + [17820] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1272), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4290), 1, - anon_sym_EQ, - ACTIONS(4292), 1, + ACTIONS(4358), 1, anon_sym_EQ_GT, - STATE(2205), 1, + ACTIONS(4422), 1, + anon_sym_COLON, + STATE(2063), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239759,13 +227848,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 17, - sym__automatic_semicolon, + ACTIONS(211), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -239777,7 +227865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239799,18 +227887,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17187] = 8, + [17897] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4222), 1, + ACTIONS(4235), 1, anon_sym_EQ, - ACTIONS(4292), 1, + ACTIONS(4237), 1, anon_sym_EQ_GT, - STATE(2206), 1, + STATE(2064), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239826,12 +227914,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 17, - sym__automatic_semicolon, + ACTIONS(4141), 17, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -239844,7 +227932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239866,18 +227954,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17262] = 8, + [17972] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4248), 1, + ACTIONS(4294), 1, anon_sym_EQ, - ACTIONS(4250), 1, + ACTIONS(4296), 1, anon_sym_EQ_GT, - STATE(2207), 1, + STATE(2065), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239893,158 +227981,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 17, + ACTIONS(4141), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4121), 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, - [17337] = 34, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(3882), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, - anon_sym_abstract, - ACTIONS(4374), 1, - anon_sym_export, - ACTIONS(4376), 1, - anon_sym_STAR, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_async, - ACTIONS(4386), 1, - anon_sym_new, - ACTIONS(4388), 1, - anon_sym_static, - ACTIONS(4390), 1, - anon_sym_readonly, - ACTIONS(4396), 1, - anon_sym_override, - STATE(2208), 1, - sym_comment, - STATE(3635), 1, - sym_accessibility_modifier, - STATE(3674), 1, - sym_override_modifier, - STATE(4031), 1, - sym__property_name, - STATE(4200), 1, - sym_formal_parameters, - STATE(5071), 1, - sym__call_signature, - STATE(5700), 1, - sym_decorator, - STATE(5733), 1, - aux_sym_export_statement_repeat1, - STATE(6630), 1, - sym_type_parameters, - ACTIONS(3892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4392), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4404), 2, - anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4406), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4394), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4891), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4372), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [17464] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1215), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4237), 1, - anon_sym_RBRACK, - ACTIONS(4262), 1, - anon_sym_COMMA, - ACTIONS(4359), 1, - anon_sym_EQ_GT, - STATE(2209), 1, - sym_comment, - ACTIONS(211), 15, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -240057,23 +227999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240095,16 +228021,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17543] = 8, + [18047] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1117), 1, + ACTIONS(1272), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2934), 1, + ACTIONS(4358), 1, anon_sym_EQ_GT, - STATE(2210), 1, + ACTIONS(4360), 1, + anon_sym_COLON, + STATE(2066), 1, sym_comment, ACTIONS(2691), 15, anon_sym_PLUS_EQ, @@ -240122,13 +228050,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 17, - sym__automatic_semicolon, + ACTIONS(211), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -240162,20 +228089,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17618] = 9, + [18124] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1244), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4359), 1, + ACTIONS(4320), 1, + anon_sym_EQ, + ACTIONS(4322), 1, anon_sym_EQ_GT, - ACTIONS(4408), 1, + ACTIONS(4372), 1, + anon_sym_in, + ACTIONS(4424), 1, anon_sym_COLON, - STATE(2211), 1, + STATE(2067), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -240191,7 +228120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 16, + ACTIONS(4141), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -240208,10 +228137,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4137), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -240230,7 +228158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17695] = 34, + [18203] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -240239,78 +228167,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2212), 1, + STATE(2068), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4410), 2, + ACTIONS(4426), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4412), 2, + ACTIONS(4428), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4965), 6, + STATE(4769), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -240323,7 +228251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17822] = 34, + [18330] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -240332,78 +228260,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2213), 1, + STATE(2069), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(3962), 2, + ACTIONS(4006), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3964), 2, + ACTIONS(4008), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4894), 6, + STATE(4679), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -240416,38 +228344,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [17949] = 10, + [18457] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4255), 1, - anon_sym_COMMA, - ACTIONS(4259), 1, - anon_sym_RBRACK, - ACTIONS(4302), 1, - anon_sym_EQ_GT, - ACTIONS(4361), 1, + ACTIONS(4320), 1, anon_sym_EQ, - STATE(2214), 1, + ACTIONS(4322), 1, + anon_sym_EQ_GT, + ACTIONS(4372), 1, + anon_sym_in, + ACTIONS(4374), 1, + anon_sym_COLON, + STATE(2070), 1, sym_comment, - ACTIONS(4125), 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(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -240463,10 +228375,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4141), 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(4137), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -240485,390 +228413,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18028] = 34, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(3882), 1, - anon_sym_LPAREN, - ACTIONS(3906), 1, - anon_sym_abstract, - ACTIONS(4374), 1, - anon_sym_export, - ACTIONS(4376), 1, - anon_sym_STAR, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_async, - ACTIONS(4386), 1, - anon_sym_new, - ACTIONS(4388), 1, - anon_sym_static, - ACTIONS(4390), 1, - anon_sym_readonly, - ACTIONS(4396), 1, - anon_sym_override, - STATE(2215), 1, - sym_comment, - STATE(3635), 1, - sym_accessibility_modifier, - STATE(3674), 1, - sym_override_modifier, - STATE(4031), 1, - sym__property_name, - STATE(4200), 1, - sym_formal_parameters, - STATE(5071), 1, - sym__call_signature, - STATE(5700), 1, - sym_decorator, - STATE(5733), 1, - aux_sym_export_statement_repeat1, - STATE(6630), 1, - sym_type_parameters, - ACTIONS(3892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4392), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4414), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4416), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4394), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4933), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4372), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [18155] = 34, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(3882), 1, - anon_sym_LPAREN, - ACTIONS(3906), 1, - anon_sym_abstract, - ACTIONS(4374), 1, - anon_sym_export, - ACTIONS(4376), 1, - anon_sym_STAR, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_async, - ACTIONS(4386), 1, - anon_sym_new, - ACTIONS(4388), 1, - anon_sym_static, - ACTIONS(4390), 1, - anon_sym_readonly, - ACTIONS(4396), 1, - anon_sym_override, - STATE(2216), 1, - sym_comment, - STATE(3635), 1, - sym_accessibility_modifier, - STATE(3674), 1, - sym_override_modifier, - STATE(4031), 1, - sym__property_name, - STATE(4200), 1, - sym_formal_parameters, - STATE(5071), 1, - sym__call_signature, - STATE(5700), 1, - sym_decorator, - STATE(5733), 1, - aux_sym_export_statement_repeat1, - STATE(6630), 1, - sym_type_parameters, - ACTIONS(3892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4392), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4418), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4420), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4394), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4981), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4372), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [18282] = 34, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(3882), 1, - anon_sym_LPAREN, - ACTIONS(3906), 1, - anon_sym_abstract, - ACTIONS(4374), 1, - anon_sym_export, - ACTIONS(4376), 1, - anon_sym_STAR, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_async, - ACTIONS(4386), 1, - anon_sym_new, - ACTIONS(4388), 1, - anon_sym_static, - ACTIONS(4390), 1, - anon_sym_readonly, - ACTIONS(4396), 1, - anon_sym_override, - STATE(2217), 1, - sym_comment, - STATE(3635), 1, - sym_accessibility_modifier, - STATE(3674), 1, - sym_override_modifier, - STATE(4031), 1, - sym__property_name, - STATE(4200), 1, - sym_formal_parameters, - STATE(5071), 1, - sym__call_signature, - STATE(5700), 1, - sym_decorator, - STATE(5733), 1, - aux_sym_export_statement_repeat1, - STATE(6630), 1, - sym_type_parameters, - ACTIONS(3884), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3908), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4392), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4394), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4905), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4372), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [18409] = 34, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(3882), 1, - anon_sym_LPAREN, - ACTIONS(3906), 1, - anon_sym_abstract, - ACTIONS(4374), 1, - anon_sym_export, - ACTIONS(4376), 1, - anon_sym_STAR, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_async, - ACTIONS(4386), 1, - anon_sym_new, - ACTIONS(4388), 1, - anon_sym_static, - ACTIONS(4390), 1, - anon_sym_readonly, - ACTIONS(4396), 1, - anon_sym_override, - STATE(2218), 1, - sym_comment, - STATE(3635), 1, - sym_accessibility_modifier, - STATE(3674), 1, - sym_override_modifier, - STATE(4031), 1, - sym__property_name, - STATE(4200), 1, - sym_formal_parameters, - STATE(5071), 1, - sym__call_signature, - STATE(5700), 1, - sym_decorator, - STATE(5733), 1, - aux_sym_export_statement_repeat1, - STATE(6630), 1, - sym_type_parameters, - ACTIONS(3892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4392), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4422), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4424), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4394), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4936), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4372), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, [18536] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1244), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4359), 1, + ACTIONS(4229), 1, + anon_sym_EQ, + ACTIONS(4304), 1, anon_sym_EQ_GT, - STATE(2219), 1, + STATE(2071), 1, sym_comment, - ACTIONS(2691), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -240884,12 +228440,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 16, + ACTIONS(4141), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -240901,7 +228457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240923,18 +228479,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18610] = 8, + [18610] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4222), 1, + ACTIONS(4235), 1, anon_sym_EQ, - ACTIONS(4302), 1, - anon_sym_EQ_GT, - STATE(2220), 1, + STATE(2072), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -240950,12 +228504,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 16, + ACTIONS(4141), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4137), 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, + [18682] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1099), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4277), 1, + anon_sym_COLON, + ACTIONS(4279), 1, + anon_sym_EQ_GT, + STATE(2073), 1, + sym_comment, + ACTIONS(211), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -240967,7 +228573,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 21, + ACTIONS(2691), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240989,16 +228611,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18684] = 7, + [18758] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1099), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4290), 1, - anon_sym_EQ, - STATE(2221), 1, + ACTIONS(4358), 1, + anon_sym_EQ_GT, + STATE(2074), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -241014,13 +228638,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 17, - sym__automatic_semicolon, + ACTIONS(211), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -241032,7 +228655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241054,16 +228677,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18756] = 8, + [18832] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1117), 1, + ACTIONS(1272), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4359), 1, + ACTIONS(4358), 1, anon_sym_EQ_GT, - STATE(2222), 1, + STATE(2075), 1, sym_comment, ACTIONS(2691), 15, anon_sym_PLUS_EQ, @@ -241120,22 +228743,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18830] = 10, + [18906] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1117), 1, - anon_sym_EQ, - ACTIONS(1203), 1, - anon_sym_in, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(4264), 1, - anon_sym_EQ_GT, - ACTIONS(4333), 1, - anon_sym_of, - STATE(2223), 1, + anon_sym_RBRACK, + ACTIONS(4287), 1, + anon_sym_COMMA, + ACTIONS(4369), 1, + anon_sym_EQ, + STATE(2076), 1, sym_comment, - ACTIONS(211), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -241151,7 +228772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -241167,9 +228788,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 20, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -241188,18 +228810,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18908] = 8, + [18982] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1280), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4300), 1, - anon_sym_EQ, - ACTIONS(4302), 1, + ACTIONS(4364), 1, anon_sym_EQ_GT, - STATE(2224), 1, + STATE(2077), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -241215,12 +228837,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 16, + ACTIONS(211), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_of, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -241232,7 +228854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241254,18 +228876,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18982] = 8, + [19056] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4222), 1, - anon_sym_EQ, ACTIONS(4320), 1, + anon_sym_EQ, + ACTIONS(4322), 1, anon_sym_EQ_GT, - STATE(2225), 1, + STATE(2078), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -241281,12 +228903,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 16, + ACTIONS(4141), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -241298,7 +228920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241320,16 +228942,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19056] = 8, + [19130] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1117), 1, + ACTIONS(1099), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4368), 1, + ACTIONS(4364), 1, anon_sym_EQ_GT, - STATE(2226), 1, + STATE(2079), 1, sym_comment, ACTIONS(2691), 15, anon_sym_PLUS_EQ, @@ -241386,22 +229008,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19130] = 10, + [19204] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1099), 1, + anon_sym_EQ, + ACTIONS(1203), 1, + anon_sym_in, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4222), 1, - anon_sym_EQ, - ACTIONS(4244), 1, + ACTIONS(4279), 1, anon_sym_EQ_GT, - ACTIONS(4328), 1, - anon_sym_in, - ACTIONS(4331), 1, + ACTIONS(4334), 1, anon_sym_of, - STATE(2227), 1, + STATE(2080), 1, sym_comment, - ACTIONS(4125), 15, + ACTIONS(211), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -241417,7 +229039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -241433,7 +229055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 20, + ACTIONS(118), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -241454,20 +229076,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19208] = 9, + [19282] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4255), 1, - anon_sym_COMMA, - ACTIONS(4259), 1, + ACTIONS(4229), 1, + anon_sym_EQ, + ACTIONS(4322), 1, + anon_sym_EQ_GT, + STATE(2081), 1, + sym_comment, + ACTIONS(4155), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4141), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(4361), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4137), 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, + [19356] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4229), 1, anon_sym_EQ, - STATE(2228), 1, + ACTIONS(4255), 1, + anon_sym_EQ_GT, + ACTIONS(4351), 1, + anon_sym_in, + ACTIONS(4354), 1, + anon_sym_of, + STATE(2082), 1, sym_comment, - ACTIONS(4125), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -241483,7 +229173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -241499,7 +229189,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 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, + [19434] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4302), 1, + anon_sym_EQ, + ACTIONS(4304), 1, + anon_sym_EQ_GT, + STATE(2083), 1, + sym_comment, + ACTIONS(4155), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4141), 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(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241521,37 +229276,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19284] = 7, + [19508] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4248), 1, + ACTIONS(4294), 1, anon_sym_EQ, - STATE(2229), 1, + STATE(2084), 1, + sym_comment, + ACTIONS(4155), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4141), 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(4137), 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, + [19580] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1354), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4279), 1, + anon_sym_EQ_GT, + STATE(2085), 1, sym_comment, - ACTIONS(4139), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 17, + ACTIONS(211), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -241564,7 +229368,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 21, + ACTIONS(2691), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241586,20 +229406,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19356] = 9, + [19653] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1117), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, + ACTIONS(4255), 1, anon_sym_EQ_GT, - ACTIONS(4266), 1, - anon_sym_COLON, - STATE(2230), 1, + ACTIONS(4430), 1, + anon_sym_EQ, + STATE(2086), 1, sym_comment, - ACTIONS(211), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -241615,7 +229433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -241631,7 +229449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241653,18 +229471,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19432] = 8, + [19726] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4318), 1, - anon_sym_EQ, ACTIONS(4320), 1, - anon_sym_EQ_GT, - STATE(2231), 1, + anon_sym_EQ, + STATE(2087), 1, sym_comment, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -241680,12 +229496,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 16, + ACTIONS(4141), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -241697,7 +229513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241719,38 +229535,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19506] = 8, + [19797] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1280), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4368), 1, + ACTIONS(4255), 1, anon_sym_EQ_GT, - STATE(2232), 1, + ACTIONS(4432), 1, + anon_sym_EQ, + STATE(2088), 1, sym_comment, - ACTIONS(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(211), 16, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -241763,7 +229562,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4155), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241785,7 +229600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19580] = 33, + [19870] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -241794,75 +229609,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2233), 1, + STATE(2089), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4426), 2, + ACTIONS(4434), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -241875,7 +229690,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19703] = 33, + [19993] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -241884,75 +229699,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2234), 1, + STATE(2090), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4428), 2, + ACTIONS(4436), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -241965,16 +229780,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19826] = 8, + [20116] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1292), 1, + ACTIONS(1099), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, + ACTIONS(4279), 1, anon_sym_EQ_GT, - STATE(2235), 1, + STATE(2091), 1, sym_comment, ACTIONS(211), 15, sym__ternary_qmark, @@ -242030,7 +229845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19899] = 33, + [20189] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -242039,75 +229854,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2236), 1, + STATE(2092), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4430), 2, + ACTIONS(4438), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -242120,18 +229935,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20022] = 8, + [20312] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4244), 1, - anon_sym_EQ_GT, - ACTIONS(4432), 1, + ACTIONS(4229), 1, anon_sym_EQ, - STATE(2237), 1, + ACTIONS(4255), 1, + anon_sym_EQ_GT, + STATE(2093), 1, sym_comment, - ACTIONS(4125), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -242147,7 +229962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -242163,7 +229978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242185,20 +230000,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20095] = 9, + [20385] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1350), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4222), 1, - anon_sym_EQ, - ACTIONS(4328), 1, - anon_sym_in, - ACTIONS(4331), 1, - anon_sym_of, - STATE(2238), 1, + ACTIONS(4279), 1, + anon_sym_EQ_GT, + STATE(2094), 1, sym_comment, - ACTIONS(4125), 15, + ACTIONS(211), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -242214,53 +230027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 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, - [20170] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4318), 1, - anon_sym_EQ, - STATE(2239), 1, - sym_comment, - ACTIONS(4139), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -242276,24 +230043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 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(4121), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242315,7 +230065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20241] = 33, + [20458] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -242324,75 +230074,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2240), 1, + STATE(2095), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4434), 2, + ACTIONS(4440), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -242405,16 +230155,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20364] = 8, + [20581] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1344), 1, + ACTIONS(1294), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, + ACTIONS(4279), 1, anon_sym_EQ_GT, - STATE(2241), 1, + STATE(2096), 1, sym_comment, ACTIONS(211), 15, sym__ternary_qmark, @@ -242470,7 +230220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20437] = 33, + [20654] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -242479,75 +230229,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2242), 1, + STATE(2097), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4436), 2, + ACTIONS(4442), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -242560,7 +230310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20560] = 33, + [20777] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -242569,75 +230319,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2243), 1, + STATE(2098), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4438), 2, + ACTIONS(4444), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -242650,81 +230400,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [20683] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4244), 1, - anon_sym_EQ_GT, - ACTIONS(4440), 1, - anon_sym_EQ, - STATE(2244), 1, - sym_comment, - ACTIONS(4125), 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(4139), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 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, - [20756] = 8, + [20900] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1358), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, + ACTIONS(4279), 1, anon_sym_EQ_GT, - STATE(2245), 1, + STATE(2099), 1, sym_comment, ACTIONS(211), 15, sym__ternary_qmark, @@ -242780,108 +230465,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20829] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(3882), 1, - anon_sym_LPAREN, - ACTIONS(3906), 1, - anon_sym_abstract, - ACTIONS(4374), 1, - anon_sym_export, - ACTIONS(4376), 1, - anon_sym_STAR, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_async, - ACTIONS(4386), 1, - anon_sym_new, - ACTIONS(4388), 1, - anon_sym_static, - ACTIONS(4390), 1, - anon_sym_readonly, - ACTIONS(4396), 1, - anon_sym_override, - STATE(2246), 1, - sym_comment, - STATE(3635), 1, - sym_accessibility_modifier, - STATE(3674), 1, - sym_override_modifier, - STATE(4031), 1, - sym__property_name, - STATE(4200), 1, - sym_formal_parameters, - STATE(5071), 1, - sym__call_signature, - STATE(5700), 1, - sym_decorator, - STATE(5733), 1, - aux_sym_export_statement_repeat1, - STATE(6630), 1, - sym_type_parameters, - ACTIONS(3892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4392), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4442), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4394), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5296), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4372), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [20952] = 8, + [20973] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1348), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, + ACTIONS(4255), 1, anon_sym_EQ_GT, - STATE(2247), 1, + ACTIONS(4446), 1, + anon_sym_EQ, + STATE(2100), 1, sym_comment, - ACTIONS(211), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -242897,54 +230492,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [21025] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4300), 1, - anon_sym_EQ, - STATE(2248), 1, - sym_comment, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -242960,24 +230508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4125), 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(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242999,18 +230530,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21096] = 8, + [21046] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4244), 1, + ACTIONS(4255), 1, anon_sym_EQ_GT, - ACTIONS(4444), 1, + ACTIONS(4448), 1, anon_sym_EQ, - STATE(2249), 1, + STATE(2101), 1, sym_comment, - ACTIONS(4125), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -243026,7 +230557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -243042,7 +230573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243064,16 +230595,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21169] = 8, + [21119] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1352), 1, + ACTIONS(1356), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, + ACTIONS(4279), 1, anon_sym_EQ_GT, - STATE(2250), 1, + STATE(2102), 1, sym_comment, ACTIONS(211), 15, sym__ternary_qmark, @@ -243129,7 +230660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21242] = 33, + [21192] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -243138,75 +230669,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, + ACTIONS(4394), 1, + anon_sym_readonly, + ACTIONS(4400), 1, + anon_sym_override, + STATE(2103), 1, + sym_comment, + STATE(3508), 1, + sym_accessibility_modifier, + STATE(3515), 1, + sym_override_modifier, + STATE(3842), 1, + sym__property_name, + STATE(4055), 1, + sym_formal_parameters, + STATE(5095), 1, + sym__call_signature, + STATE(5410), 1, + sym_decorator, + STATE(5563), 1, + aux_sym_export_statement_repeat1, + STATE(6769), 1, + sym_type_parameters, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4396), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4450), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4398), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4943), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4376), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [21315] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(3886), 1, + anon_sym_LPAREN, + ACTIONS(3910), 1, + anon_sym_abstract, + ACTIONS(4378), 1, + anon_sym_export, + ACTIONS(4380), 1, + anon_sym_STAR, + ACTIONS(4386), 1, + anon_sym_LBRACK, + ACTIONS(4388), 1, + anon_sym_async, ACTIONS(4390), 1, + anon_sym_new, + ACTIONS(4392), 1, + anon_sym_static, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2251), 1, + STATE(2104), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4446), 2, + ACTIONS(4452), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -243219,7 +230840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21365] = 33, + [21438] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -243228,75 +230849,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, + ACTIONS(4390), 1, + anon_sym_new, + ACTIONS(4392), 1, + anon_sym_static, + ACTIONS(4394), 1, + anon_sym_readonly, + ACTIONS(4400), 1, + anon_sym_override, + STATE(2105), 1, + sym_comment, + STATE(3508), 1, + sym_accessibility_modifier, + STATE(3515), 1, + sym_override_modifier, + STATE(3842), 1, + sym__property_name, + STATE(4055), 1, + sym_formal_parameters, + STATE(5095), 1, + sym__call_signature, + STATE(5410), 1, + sym_decorator, + STATE(5563), 1, + aux_sym_export_statement_repeat1, + STATE(6769), 1, + sym_type_parameters, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4396), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4454), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4398), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4943), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4376), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [21561] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(3886), 1, + anon_sym_LPAREN, + ACTIONS(3910), 1, + anon_sym_abstract, + ACTIONS(4378), 1, + anon_sym_export, + ACTIONS(4380), 1, + anon_sym_STAR, ACTIONS(4386), 1, + anon_sym_LBRACK, + ACTIONS(4388), 1, + anon_sym_async, + ACTIONS(4390), 1, anon_sym_new, + ACTIONS(4392), 1, + anon_sym_static, + ACTIONS(4394), 1, + anon_sym_readonly, + ACTIONS(4400), 1, + anon_sym_override, + STATE(2106), 1, + sym_comment, + STATE(3508), 1, + sym_accessibility_modifier, + STATE(3515), 1, + sym_override_modifier, + STATE(3842), 1, + sym__property_name, + STATE(4055), 1, + sym_formal_parameters, + STATE(5095), 1, + sym__call_signature, + STATE(5410), 1, + sym_decorator, + STATE(5563), 1, + aux_sym_export_statement_repeat1, + STATE(6769), 1, + sym_type_parameters, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4396), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4456), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4398), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4943), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4376), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [21684] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(3886), 1, + anon_sym_LPAREN, + ACTIONS(3910), 1, + anon_sym_abstract, + ACTIONS(4378), 1, + anon_sym_export, + ACTIONS(4380), 1, + anon_sym_STAR, + ACTIONS(4386), 1, + anon_sym_LBRACK, ACTIONS(4388), 1, + anon_sym_async, + ACTIONS(4390), 1, + anon_sym_new, + ACTIONS(4392), 1, anon_sym_static, + ACTIONS(4394), 1, + anon_sym_readonly, + ACTIONS(4400), 1, + anon_sym_override, + STATE(2107), 1, + sym_comment, + STATE(3508), 1, + sym_accessibility_modifier, + STATE(3515), 1, + sym_override_modifier, + STATE(3842), 1, + sym__property_name, + STATE(4055), 1, + sym_formal_parameters, + STATE(5095), 1, + sym__call_signature, + STATE(5410), 1, + sym_decorator, + STATE(5563), 1, + aux_sym_export_statement_repeat1, + STATE(6769), 1, + sym_type_parameters, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4396), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4458), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4398), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4943), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4376), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [21807] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(3886), 1, + anon_sym_LPAREN, + ACTIONS(3910), 1, + anon_sym_abstract, + ACTIONS(4378), 1, + anon_sym_export, + ACTIONS(4380), 1, + anon_sym_STAR, + ACTIONS(4386), 1, + anon_sym_LBRACK, + ACTIONS(4388), 1, + anon_sym_async, ACTIONS(4390), 1, + anon_sym_new, + ACTIONS(4392), 1, + anon_sym_static, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2252), 1, + STATE(2108), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4448), 2, + ACTIONS(4460), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -243309,18 +231200,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21488] = 8, + [21930] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1348), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4244), 1, + ACTIONS(4279), 1, anon_sym_EQ_GT, - ACTIONS(4450), 1, - anon_sym_EQ, - STATE(2253), 1, + STATE(2109), 1, sym_comment, - ACTIONS(4125), 15, + ACTIONS(211), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -243336,7 +231227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(2691), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -243352,7 +231243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243374,18 +231265,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21561] = 8, + [22003] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4244), 1, + ACTIONS(4255), 1, anon_sym_EQ_GT, - ACTIONS(4452), 1, + ACTIONS(4462), 1, anon_sym_EQ, - STATE(2254), 1, + STATE(2110), 1, sym_comment, - ACTIONS(4125), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -243401,7 +231292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -243417,7 +231308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243439,18 +231330,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21634] = 8, + [22076] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4244), 1, - anon_sym_EQ_GT, - ACTIONS(4454), 1, + ACTIONS(4229), 1, anon_sym_EQ, - STATE(2255), 1, + ACTIONS(4253), 1, + anon_sym_COLON, + STATE(2111), 1, sym_comment, - ACTIONS(4125), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -243466,7 +231357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -243482,7 +231373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243504,97 +231395,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21707] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, + [22149] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4302), 1, + anon_sym_EQ, + STATE(2112), 1, + sym_comment, + ACTIONS(4155), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4141), 16, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3906), 1, - anon_sym_abstract, - ACTIONS(4374), 1, - anon_sym_export, - ACTIONS(4376), 1, - anon_sym_STAR, - ACTIONS(4382), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_async, - ACTIONS(4386), 1, - anon_sym_new, - ACTIONS(4388), 1, - anon_sym_static, - ACTIONS(4390), 1, - anon_sym_readonly, - ACTIONS(4396), 1, - anon_sym_override, - STATE(2256), 1, - sym_comment, - STATE(3635), 1, - sym_accessibility_modifier, - STATE(3674), 1, - sym_override_modifier, - STATE(4031), 1, - sym__property_name, - STATE(4200), 1, - sym_formal_parameters, - STATE(5071), 1, - sym__call_signature, - STATE(5700), 1, - sym_decorator, - STATE(5733), 1, - aux_sym_export_statement_repeat1, - STATE(6630), 1, - sym_type_parameters, - ACTIONS(3892), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4137), 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, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4392), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4456), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4394), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5296), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4372), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [21830] = 33, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [22220] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -243603,75 +231468,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2257), 1, + STATE(2113), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4458), 2, + ACTIONS(4464), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -243684,7 +231549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [21953] = 33, + [22343] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -243693,75 +231558,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2258), 1, + STATE(2114), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4460), 2, + ACTIONS(4466), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -243774,18 +231639,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22076] = 8, + [22466] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1117), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4255), 1, + anon_sym_EQ_GT, + ACTIONS(4468), 1, anon_sym_EQ, + STATE(2115), 1, + sym_comment, + ACTIONS(4141), 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(4155), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4137), 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, + [22539] = 8, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, + ACTIONS(4255), 1, anon_sym_EQ_GT, - STATE(2259), 1, + ACTIONS(4470), 1, + anon_sym_EQ, + STATE(2116), 1, sym_comment, - ACTIONS(211), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -243801,7 +231731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -243817,7 +231747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243839,7 +231769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22149] = 33, + [22612] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -243848,75 +231778,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2260), 1, + STATE(2117), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4462), 2, + ACTIONS(4472), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -243929,97 +231859,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22272] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, + [22735] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(1346), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4279), 1, + anon_sym_EQ_GT, + STATE(2118), 1, + sym_comment, + ACTIONS(211), 15, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(3906), 1, - anon_sym_abstract, - ACTIONS(4374), 1, - anon_sym_export, - ACTIONS(4376), 1, - anon_sym_STAR, - ACTIONS(4382), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_async, - ACTIONS(4386), 1, - anon_sym_new, - ACTIONS(4388), 1, - anon_sym_static, - ACTIONS(4390), 1, - anon_sym_readonly, - ACTIONS(4396), 1, - anon_sym_override, - STATE(2261), 1, - sym_comment, - STATE(3635), 1, - sym_accessibility_modifier, - STATE(3674), 1, - sym_override_modifier, - STATE(4031), 1, - sym__property_name, - STATE(4200), 1, - sym_formal_parameters, - STATE(5071), 1, - sym__call_signature, - STATE(5700), 1, - sym_decorator, - STATE(5733), 1, - aux_sym_export_statement_repeat1, - STATE(6630), 1, - sym_type_parameters, - ACTIONS(3892), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(2691), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4392), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4464), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4394), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5296), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4372), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [22395] = 33, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [22808] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -244028,75 +231933,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2262), 1, + STATE(2119), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4466), 2, + ACTIONS(4474), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -244109,7 +232014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22518] = 33, + [22931] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -244118,75 +232023,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2263), 1, + STATE(2120), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4468), 2, + ACTIONS(4476), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -244199,7 +232104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22641] = 33, + [23054] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -244208,75 +232113,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2264), 1, + STATE(2121), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4470), 2, + ACTIONS(4478), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -244289,18 +232194,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22764] = 8, + [23177] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1354), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, + ACTIONS(4255), 1, anon_sym_EQ_GT, - STATE(2265), 1, + ACTIONS(4480), 1, + anon_sym_EQ, + STATE(2122), 1, sym_comment, - ACTIONS(211), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -244316,7 +232221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2691), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -244332,7 +232237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244354,7 +232259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22837] = 33, + [23250] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -244363,75 +232268,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2266), 1, + STATE(2123), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4472), 2, + ACTIONS(4482), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -244444,7 +232349,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22960] = 33, + [23373] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4255), 1, + anon_sym_EQ_GT, + ACTIONS(4484), 1, + anon_sym_EQ, + STATE(2124), 1, + sym_comment, + ACTIONS(4141), 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(4155), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4137), 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, + [23446] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -244453,75 +232423,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2267), 1, + STATE(2125), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4474), 2, + ACTIONS(4486), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -244534,18 +232504,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23083] = 8, + [23569] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4244), 1, - anon_sym_EQ_GT, - ACTIONS(4476), 1, + ACTIONS(4229), 1, anon_sym_EQ, - STATE(2268), 1, + ACTIONS(4351), 1, + anon_sym_in, + ACTIONS(4354), 1, + anon_sym_of, + STATE(2126), 1, sym_comment, - ACTIONS(4125), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -244561,7 +232533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -244577,10 +232549,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -244599,7 +232570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23156] = 33, + [23644] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -244608,75 +232579,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2269), 1, + STATE(2127), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4478), 2, + ACTIONS(4488), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -244689,81 +232660,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23279] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4222), 1, - anon_sym_EQ, - ACTIONS(4242), 1, - anon_sym_COLON, - STATE(2270), 1, - sym_comment, - ACTIONS(4125), 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(4139), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 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, - [23352] = 8, + [23767] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1346), 1, + ACTIONS(1292), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, + ACTIONS(4279), 1, anon_sym_EQ_GT, - STATE(2271), 1, + STATE(2128), 1, sym_comment, ACTIONS(211), 15, sym__ternary_qmark, @@ -244819,7 +232725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23425] = 33, + [23840] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -244828,75 +232734,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2272), 1, + STATE(2129), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4480), 2, + ACTIONS(4490), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -244909,7 +232815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23548] = 33, + [23963] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -244918,75 +232824,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2273), 1, + STATE(2130), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4482), 2, + ACTIONS(4492), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -244999,7 +232905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23671] = 33, + [24086] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -245008,75 +232914,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2274), 1, + STATE(2131), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4484), 2, + ACTIONS(4494), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -245089,276 +232995,196 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23794] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [24209] = 33, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4244), 1, - anon_sym_EQ_GT, - ACTIONS(4486), 1, - anon_sym_EQ, - STATE(2275), 1, - sym_comment, - ACTIONS(4125), 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(4139), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 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, - [23867] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1350), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4264), 1, - anon_sym_EQ_GT, - STATE(2276), 1, - sym_comment, - ACTIONS(211), 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(2691), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1902), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [23940] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4222), 1, - anon_sym_EQ, - ACTIONS(4244), 1, - anon_sym_EQ_GT, - STATE(2277), 1, - sym_comment, - ACTIONS(4125), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(3886), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4139), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(3910), 1, + anon_sym_abstract, + ACTIONS(4378), 1, + anon_sym_export, + ACTIONS(4380), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(4386), 1, + anon_sym_LBRACK, + ACTIONS(4388), 1, + anon_sym_async, + ACTIONS(4390), 1, + anon_sym_new, + ACTIONS(4392), 1, + anon_sym_static, + ACTIONS(4394), 1, + anon_sym_readonly, + ACTIONS(4400), 1, + anon_sym_override, + STATE(2132), 1, + sym_comment, + STATE(3508), 1, + sym_accessibility_modifier, + STATE(3515), 1, + sym_override_modifier, + STATE(3842), 1, + sym__property_name, + STATE(4055), 1, + sym_formal_parameters, + STATE(5095), 1, + sym__call_signature, + STATE(5410), 1, + sym_decorator, + STATE(5563), 1, + aux_sym_export_statement_repeat1, + STATE(6769), 1, + sym_type_parameters, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [24013] = 8, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4396), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4496), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4398), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4943), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4376), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [24332] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4244), 1, - anon_sym_EQ_GT, - ACTIONS(4488), 1, - anon_sym_EQ, - STATE(2278), 1, - sym_comment, - ACTIONS(4125), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(3886), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4139), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(3910), 1, + anon_sym_abstract, + ACTIONS(4378), 1, + anon_sym_export, + ACTIONS(4380), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(4386), 1, + anon_sym_LBRACK, + ACTIONS(4388), 1, + anon_sym_async, + ACTIONS(4390), 1, + anon_sym_new, + ACTIONS(4392), 1, + anon_sym_static, + ACTIONS(4394), 1, + anon_sym_readonly, + ACTIONS(4400), 1, + anon_sym_override, + STATE(2133), 1, + sym_comment, + STATE(3508), 1, + sym_accessibility_modifier, + STATE(3515), 1, + sym_override_modifier, + STATE(3842), 1, + sym__property_name, + STATE(4055), 1, + sym_formal_parameters, + STATE(5095), 1, + sym__call_signature, + STATE(5410), 1, + sym_decorator, + STATE(5563), 1, + aux_sym_export_statement_repeat1, + STATE(6769), 1, + sym_type_parameters, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [24086] = 8, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4396), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4498), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4398), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4943), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4376), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [24455] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1356), 1, + ACTIONS(1352), 1, anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4264), 1, + ACTIONS(4279), 1, anon_sym_EQ_GT, - STATE(2279), 1, + STATE(2134), 1, sym_comment, ACTIONS(211), 15, sym__ternary_qmark, @@ -245414,7 +233240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24159] = 33, + [24528] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -245423,345 +233249,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_async, ACTIONS(4386), 1, - anon_sym_new, - ACTIONS(4388), 1, - anon_sym_static, - ACTIONS(4390), 1, - anon_sym_readonly, - ACTIONS(4396), 1, - anon_sym_override, - STATE(2280), 1, - sym_comment, - STATE(3635), 1, - sym_accessibility_modifier, - STATE(3674), 1, - sym_override_modifier, - STATE(4031), 1, - sym__property_name, - STATE(4200), 1, - sym_formal_parameters, - STATE(5071), 1, - sym__call_signature, - STATE(5700), 1, - sym_decorator, - STATE(5733), 1, - aux_sym_export_statement_repeat1, - STATE(6630), 1, - sym_type_parameters, - ACTIONS(3892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4392), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4490), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4394), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5296), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4372), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [24282] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(3882), 1, - anon_sym_LPAREN, - ACTIONS(3906), 1, - anon_sym_abstract, - ACTIONS(4374), 1, - anon_sym_export, - ACTIONS(4376), 1, - anon_sym_STAR, - ACTIONS(4382), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_async, - ACTIONS(4386), 1, - anon_sym_new, ACTIONS(4388), 1, - anon_sym_static, - ACTIONS(4390), 1, - anon_sym_readonly, - ACTIONS(4396), 1, - anon_sym_override, - STATE(2281), 1, - sym_comment, - STATE(3635), 1, - sym_accessibility_modifier, - STATE(3674), 1, - sym_override_modifier, - STATE(4031), 1, - sym__property_name, - STATE(4200), 1, - sym_formal_parameters, - STATE(5071), 1, - sym__call_signature, - STATE(5700), 1, - sym_decorator, - STATE(5733), 1, - aux_sym_export_statement_repeat1, - STATE(6630), 1, - sym_type_parameters, - ACTIONS(3892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4392), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4492), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4394), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5296), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4372), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [24405] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(3882), 1, - anon_sym_LPAREN, - ACTIONS(3906), 1, - anon_sym_abstract, - ACTIONS(4374), 1, - anon_sym_export, - ACTIONS(4376), 1, - anon_sym_STAR, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4384), 1, anon_sym_async, - ACTIONS(4386), 1, - anon_sym_new, - ACTIONS(4388), 1, - anon_sym_static, ACTIONS(4390), 1, - anon_sym_readonly, - ACTIONS(4396), 1, - anon_sym_override, - STATE(2282), 1, - sym_comment, - STATE(3635), 1, - sym_accessibility_modifier, - STATE(3674), 1, - sym_override_modifier, - STATE(4031), 1, - sym__property_name, - STATE(4200), 1, - sym_formal_parameters, - STATE(5071), 1, - sym__call_signature, - STATE(5700), 1, - sym_decorator, - STATE(5733), 1, - aux_sym_export_statement_repeat1, - STATE(6630), 1, - sym_type_parameters, - ACTIONS(3892), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4392), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4494), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4394), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5296), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4372), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [24528] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(3882), 1, - anon_sym_LPAREN, - ACTIONS(3906), 1, - anon_sym_abstract, - ACTIONS(4374), 1, - anon_sym_export, - ACTIONS(4376), 1, - anon_sym_STAR, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4384), 1, - anon_sym_async, - ACTIONS(4386), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2283), 1, + STATE(2135), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - ACTIONS(4496), 2, + ACTIONS(4500), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -245779,11 +233335,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4476), 1, + ACTIONS(4448), 1, anon_sym_EQ, - STATE(2284), 1, + STATE(2136), 1, sym_comment, - ACTIONS(4125), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -245799,7 +233355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -245815,7 +233371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245842,11 +233398,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4486), 1, + ACTIONS(4430), 1, anon_sym_EQ, - STATE(2285), 1, + STATE(2137), 1, sym_comment, - ACTIONS(4125), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -245862,7 +233418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -245878,7 +233434,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245905,11 +233461,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4444), 1, + ACTIONS(4470), 1, anon_sym_EQ, - STATE(2286), 1, + STATE(2138), 1, sym_comment, - ACTIONS(4125), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -245925,7 +233481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -245941,7 +233497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245968,11 +233524,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4450), 1, + ACTIONS(4480), 1, anon_sym_EQ, - STATE(2287), 1, + STATE(2139), 1, sym_comment, - ACTIONS(4125), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -245988,7 +233544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -246004,7 +233560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246031,11 +233587,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4452), 1, + ACTIONS(4468), 1, anon_sym_EQ, - STATE(2288), 1, + STATE(2140), 1, sym_comment, - ACTIONS(4125), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -246051,7 +233607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -246067,7 +233623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246094,11 +233650,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4432), 1, + ACTIONS(4484), 1, anon_sym_EQ, - STATE(2289), 1, + STATE(2141), 1, sym_comment, - ACTIONS(4125), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -246114,7 +233670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -246130,7 +233686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246157,11 +233713,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4454), 1, + ACTIONS(4432), 1, anon_sym_EQ, - STATE(2290), 1, + STATE(2142), 1, sym_comment, - ACTIONS(4125), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -246177,7 +233733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -246193,7 +233749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246220,11 +233776,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4440), 1, + ACTIONS(4446), 1, anon_sym_EQ, - STATE(2291), 1, + STATE(2143), 1, sym_comment, - ACTIONS(4125), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -246240,7 +233796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -246256,7 +233812,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246283,11 +233839,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4488), 1, + ACTIONS(4462), 1, anon_sym_EQ, - STATE(2292), 1, + STATE(2144), 1, sym_comment, - ACTIONS(4125), 15, + ACTIONS(4141), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -246303,7 +233859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4139), 15, + ACTIONS(4155), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -246319,7 +233875,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4121), 21, + ACTIONS(4137), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246350,72 +233906,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2293), 1, + STATE(2145), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4915), 6, + STATE(4719), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -246437,72 +233993,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2294), 1, + STATE(2146), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4877), 6, + STATE(4943), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -246524,72 +234080,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2295), 1, + STATE(2147), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4864), 6, + STATE(4742), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -246611,72 +234167,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2296), 1, + STATE(2148), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4893), 6, + STATE(4760), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -246698,72 +234254,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2297), 1, + STATE(2149), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4792), 6, + STATE(4770), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -246785,72 +234341,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2298), 1, + STATE(2150), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4935), 6, + STATE(4777), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -246872,72 +234428,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2299), 1, + STATE(2151), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4961), 6, + STATE(4722), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -246959,72 +234515,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2300), 1, + STATE(2152), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4980), 6, + STATE(4632), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -247046,72 +234602,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2301), 1, + STATE(2153), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4944), 6, + STATE(4680), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -247133,72 +234689,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3882), 1, + ACTIONS(3886), 1, anon_sym_LPAREN, - ACTIONS(3906), 1, + ACTIONS(3910), 1, anon_sym_abstract, - ACTIONS(4374), 1, + ACTIONS(4378), 1, anon_sym_export, - ACTIONS(4376), 1, + ACTIONS(4380), 1, anon_sym_STAR, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4384), 1, + ACTIONS(4388), 1, anon_sym_async, - ACTIONS(4386), 1, + ACTIONS(4390), 1, anon_sym_new, - ACTIONS(4388), 1, + ACTIONS(4392), 1, anon_sym_static, - ACTIONS(4390), 1, + ACTIONS(4394), 1, anon_sym_readonly, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - STATE(2302), 1, + STATE(2154), 1, sym_comment, - STATE(3635), 1, + STATE(3508), 1, sym_accessibility_modifier, - STATE(3674), 1, + STATE(3515), 1, sym_override_modifier, - STATE(4031), 1, + STATE(3842), 1, sym__property_name, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5071), 1, + STATE(5095), 1, sym__call_signature, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(5733), 1, + STATE(5563), 1, aux_sym_export_statement_repeat1, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4392), 2, + ACTIONS(4396), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4394), 3, + ACTIONS(4398), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5296), 6, + STATE(4713), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4372), 12, + ACTIONS(4376), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -247244,41 +234800,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2964), 1, anon_sym_enum, - ACTIONS(4498), 1, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4500), 1, + ACTIONS(4504), 1, anon_sym_default, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_type, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_EQ, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_as, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_COMMA, - ACTIONS(4511), 1, + ACTIONS(4515), 1, anon_sym_RBRACE, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_module, - STATE(2303), 1, + STATE(2155), 1, sym_comment, - STATE(5204), 1, - sym_declaration, - STATE(5206), 1, + STATE(4878), 1, sym_internal_module, - STATE(5375), 1, + STATE(5318), 1, + sym_declaration, + STATE(5382), 1, aux_sym_export_statement_repeat1, - STATE(5584), 1, - sym_export_clause, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(6171), 1, + STATE(5549), 1, + sym_export_clause, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(6261), 1, aux_sym_object_repeat1, - STATE(7103), 1, + STATE(6927), 1, sym_namespace_export, - ACTIONS(4514), 7, + ACTIONS(4518), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -247286,7 +234842,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5192), 13, + STATE(5171), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -247333,41 +234889,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2964), 1, anon_sym_enum, - ACTIONS(4498), 1, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4500), 1, + ACTIONS(4504), 1, anon_sym_default, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_type, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_EQ, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_as, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_COMMA, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_module, - ACTIONS(4518), 1, + ACTIONS(4522), 1, anon_sym_RBRACE, - STATE(2304), 1, + STATE(2156), 1, sym_comment, - STATE(5204), 1, - sym_declaration, - STATE(5206), 1, + STATE(4878), 1, sym_internal_module, - STATE(5375), 1, + STATE(5318), 1, + sym_declaration, + STATE(5382), 1, aux_sym_export_statement_repeat1, - STATE(5584), 1, - sym_export_clause, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(6171), 1, + STATE(5549), 1, + sym_export_clause, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(6261), 1, aux_sym_object_repeat1, - STATE(7103), 1, + STATE(6927), 1, sym_namespace_export, - ACTIONS(4514), 7, + ACTIONS(4518), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -247375,7 +234931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5192), 13, + STATE(5171), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -247422,41 +234978,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2964), 1, anon_sym_enum, - ACTIONS(4498), 1, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4500), 1, + ACTIONS(4504), 1, anon_sym_default, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_type, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_EQ, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_as, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_COMMA, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_module, - ACTIONS(4521), 1, + ACTIONS(4525), 1, anon_sym_RBRACE, - STATE(2305), 1, + STATE(2157), 1, sym_comment, - STATE(5204), 1, - sym_declaration, - STATE(5206), 1, + STATE(4878), 1, sym_internal_module, - STATE(5375), 1, + STATE(5318), 1, + sym_declaration, + STATE(5382), 1, aux_sym_export_statement_repeat1, - STATE(5584), 1, - sym_export_clause, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(6171), 1, + STATE(5549), 1, + sym_export_clause, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(6261), 1, aux_sym_object_repeat1, - STATE(7103), 1, + STATE(6927), 1, sym_namespace_export, - ACTIONS(4514), 7, + ACTIONS(4518), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -247464,7 +235020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5192), 13, + STATE(5171), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -247511,41 +235067,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2964), 1, anon_sym_enum, - ACTIONS(4498), 1, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4500), 1, + ACTIONS(4504), 1, anon_sym_default, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_type, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_EQ, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_as, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_COMMA, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_module, - ACTIONS(4524), 1, + ACTIONS(4528), 1, anon_sym_RBRACE, - STATE(2306), 1, + STATE(2158), 1, sym_comment, - STATE(5204), 1, - sym_declaration, - STATE(5206), 1, + STATE(4878), 1, sym_internal_module, - STATE(5375), 1, + STATE(5318), 1, + sym_declaration, + STATE(5382), 1, aux_sym_export_statement_repeat1, - STATE(5584), 1, - sym_export_clause, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(5549), 1, + sym_export_clause, + STATE(5868), 1, aux_sym_object_repeat1, - STATE(7103), 1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6927), 1, sym_namespace_export, - ACTIONS(4514), 7, + ACTIONS(4518), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -247553,7 +235109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5192), 13, + STATE(5171), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -247600,41 +235156,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2964), 1, anon_sym_enum, - ACTIONS(4498), 1, + ACTIONS(4502), 1, anon_sym_STAR, - ACTIONS(4500), 1, + ACTIONS(4504), 1, anon_sym_default, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_type, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_EQ, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_as, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_COMMA, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_module, - ACTIONS(4527), 1, + ACTIONS(4531), 1, anon_sym_RBRACE, - STATE(2307), 1, + STATE(2159), 1, sym_comment, - STATE(5204), 1, - sym_declaration, - STATE(5206), 1, + STATE(4878), 1, sym_internal_module, - STATE(5375), 1, + STATE(5318), 1, + sym_declaration, + STATE(5382), 1, aux_sym_export_statement_repeat1, - STATE(5584), 1, - sym_export_clause, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, + STATE(5549), 1, + sym_export_clause, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - STATE(7103), 1, + STATE(6261), 1, + aux_sym_object_repeat1, + STATE(6927), 1, sym_namespace_export, - ACTIONS(4514), 7, + ACTIONS(4518), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -247642,7 +235198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5192), 13, + STATE(5171), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -247656,78 +235212,162 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [27091] = 32, + [27091] = 31, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4537), 1, + anon_sym_STAR, + ACTIONS(4540), 1, + anon_sym_RBRACE, + ACTIONS(4542), 1, + anon_sym_SEMI, + ACTIONS(4545), 1, + anon_sym_LBRACK, + ACTIONS(4548), 1, + anon_sym_DQUOTE, + ACTIONS(4551), 1, + anon_sym_SQUOTE, + ACTIONS(4554), 1, + anon_sym_async, + ACTIONS(4563), 1, + anon_sym_AT, + ACTIONS(4566), 1, + anon_sym_static, + ACTIONS(4569), 1, + anon_sym_readonly, + ACTIONS(4575), 1, + anon_sym_declare, + ACTIONS(4581), 1, + anon_sym_override, + ACTIONS(4584), 1, + anon_sym_abstract, + STATE(3279), 1, + aux_sym_export_statement_repeat1, + STATE(3378), 1, + sym_method_definition, + STATE(3425), 1, + sym_class_static_block, + STATE(3463), 1, + sym_accessibility_modifier, + STATE(3528), 1, + sym_override_modifier, + STATE(3557), 1, + sym_decorator, + STATE(3792), 1, + sym__property_name, + STATE(5623), 1, + sym_method_signature, + ACTIONS(4557), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4560), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4572), 2, + anon_sym_get, + anon_sym_set, + STATE(2160), 2, + sym_comment, + aux_sym_class_body_repeat1, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4578), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5976), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4534), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [27206] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4532), 1, + ACTIONS(4589), 1, anon_sym_RBRACE, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - STATE(2308), 1, - sym_comment, - STATE(2310), 1, + STATE(2160), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(2161), 1, + sym_comment, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -247741,7 +235381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27208] = 29, + [27323] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -247756,59 +235396,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(3876), 1, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(4554), 1, + ACTIONS(4611), 1, anon_sym_RBRACE, - ACTIONS(4556), 1, + ACTIONS(4613), 1, anon_sym_LBRACK, - ACTIONS(4558), 1, + ACTIONS(4615), 1, anon_sym_async, - ACTIONS(4560), 1, + ACTIONS(4617), 1, anon_sym_static, - ACTIONS(4562), 1, + ACTIONS(4619), 1, anon_sym_readonly, - ACTIONS(4568), 1, + ACTIONS(4625), 1, anon_sym_override, - STATE(2309), 1, + STATE(2162), 1, sym_comment, - STATE(3651), 1, + STATE(3468), 1, sym_accessibility_modifier, - STATE(3663), 1, + STATE(3530), 1, sym_override_modifier, - STATE(4662), 1, + STATE(4583), 1, sym__property_name, - STATE(5945), 1, + STATE(5743), 1, aux_sym_object_pattern_repeat1, - STATE(6441), 1, + STATE(5792), 1, aux_sym_object_repeat1, - STATE(7361), 1, + STATE(7130), 1, sym__destructuring_pattern, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(4564), 2, + ACTIONS(4621), 2, anon_sym_get, anon_sym_set, - STATE(4283), 2, + STATE(4288), 2, sym_object_pattern, sym_array_pattern, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(4566), 3, + ACTIONS(4623), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5931), 3, + STATE(5739), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(6446), 3, + STATE(5740), 3, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(4552), 14, + ACTIONS(4609), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -247823,78 +235463,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27319] = 32, + [27434] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4570), 1, + ACTIONS(4627), 1, anon_sym_RBRACE, - STATE(2310), 1, + STATE(2163), 1, sym_comment, - STATE(2342), 1, + STATE(2181), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -247908,78 +235548,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27436] = 32, + [27551] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4572), 1, + ACTIONS(4629), 1, anon_sym_RBRACE, - STATE(2311), 1, - sym_comment, - STATE(2344), 1, + STATE(2160), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(2164), 1, + sym_comment, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -247993,78 +235633,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27553] = 32, + [27668] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4574), 1, + ACTIONS(4631), 1, anon_sym_RBRACE, - STATE(2312), 1, + STATE(2165), 1, sym_comment, - STATE(2342), 1, + STATE(2186), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -248078,7 +235718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27670] = 29, + [27785] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -248093,59 +235733,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(3876), 1, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4613), 1, anon_sym_LBRACK, - ACTIONS(4578), 1, + ACTIONS(4635), 1, anon_sym_RBRACE, - ACTIONS(4580), 1, + ACTIONS(4637), 1, anon_sym_async, - ACTIONS(4582), 1, + ACTIONS(4639), 1, anon_sym_static, - ACTIONS(4584), 1, + ACTIONS(4641), 1, anon_sym_readonly, - ACTIONS(4590), 1, + ACTIONS(4647), 1, anon_sym_override, - STATE(2313), 1, + STATE(2166), 1, sym_comment, - STATE(3651), 1, + STATE(3468), 1, sym_accessibility_modifier, - STATE(3663), 1, + STATE(3530), 1, sym_override_modifier, - STATE(4662), 1, + STATE(4583), 1, sym__property_name, - STATE(5939), 1, - aux_sym_object_repeat1, - STATE(5945), 1, + STATE(5743), 1, aux_sym_object_pattern_repeat1, - STATE(7361), 1, + STATE(5792), 1, + aux_sym_object_repeat1, + STATE(7130), 1, sym__destructuring_pattern, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(4586), 2, + ACTIONS(4643), 2, anon_sym_get, anon_sym_set, - STATE(4283), 2, + STATE(4288), 2, sym_object_pattern, sym_array_pattern, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(4588), 3, + ACTIONS(4645), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5931), 3, + STATE(5739), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5935), 3, + STATE(5740), 3, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(4576), 14, + ACTIONS(4633), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -248160,81 +235800,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27781] = 29, + [27896] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(225), 1, - anon_sym_STAR, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(243), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4594), 1, - anon_sym_RBRACE, - ACTIONS(4596), 1, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4587), 1, + anon_sym_STAR, + ACTIONS(4591), 1, + anon_sym_SEMI, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4598), 1, + ACTIONS(4595), 1, + anon_sym_AT, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4600), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4606), 1, - anon_sym_override, - STATE(2314), 1, + ACTIONS(4603), 1, + anon_sym_declare, + ACTIONS(4607), 1, + anon_sym_abstract, + ACTIONS(4649), 1, + anon_sym_RBRACE, + STATE(2160), 1, + aux_sym_class_body_repeat1, + STATE(2167), 1, sym_comment, - STATE(3651), 1, + STATE(3279), 1, + aux_sym_export_statement_repeat1, + STATE(3378), 1, + sym_method_definition, + STATE(3425), 1, + sym_class_static_block, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3663), 1, + STATE(3528), 1, sym_override_modifier, - STATE(4662), 1, + STATE(3557), 1, + sym_decorator, + STATE(3792), 1, sym__property_name, - STATE(5945), 1, - aux_sym_object_pattern_repeat1, - STATE(6441), 1, - aux_sym_object_repeat1, - STATE(7361), 1, - sym__destructuring_pattern, - ACTIONS(2734), 2, + STATE(5623), 1, + sym_method_signature, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4602), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4283), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4604), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5931), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(6446), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4592), 14, + STATE(5976), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -248242,81 +235885,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [27892] = 29, + [28013] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(225), 1, - anon_sym_STAR, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(243), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4610), 1, - anon_sym_RBRACE, - ACTIONS(4612), 1, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4587), 1, + anon_sym_STAR, + ACTIONS(4591), 1, + anon_sym_SEMI, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4614), 1, + ACTIONS(4595), 1, + anon_sym_AT, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4616), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4622), 1, - anon_sym_override, - STATE(2315), 1, + ACTIONS(4603), 1, + anon_sym_declare, + ACTIONS(4607), 1, + anon_sym_abstract, + ACTIONS(4651), 1, + anon_sym_RBRACE, + STATE(2168), 1, sym_comment, - STATE(3651), 1, + STATE(2170), 1, + aux_sym_class_body_repeat1, + STATE(3279), 1, + aux_sym_export_statement_repeat1, + STATE(3378), 1, + sym_method_definition, + STATE(3425), 1, + sym_class_static_block, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3663), 1, + STATE(3528), 1, sym_override_modifier, - STATE(4662), 1, + STATE(3557), 1, + sym_decorator, + STATE(3792), 1, sym__property_name, - STATE(5939), 1, - aux_sym_object_repeat1, - STATE(5945), 1, - aux_sym_object_pattern_repeat1, - STATE(7361), 1, - sym__destructuring_pattern, - ACTIONS(2734), 2, + STATE(5623), 1, + sym_method_signature, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4618), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4283), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4620), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5931), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5935), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4608), 14, + STATE(5976), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -248324,78 +235970,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28003] = 32, + [28130] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4624), 1, + ACTIONS(4653), 1, anon_sym_RBRACE, - STATE(2316), 1, - sym_comment, - STATE(2317), 1, + STATE(2160), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(2169), 1, + sym_comment, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -248409,78 +236055,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28120] = 32, + [28247] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4626), 1, + ACTIONS(4655), 1, anon_sym_RBRACE, - STATE(2317), 1, - sym_comment, - STATE(2342), 1, + STATE(2160), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(2170), 1, + sym_comment, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -248494,78 +236140,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28237] = 32, + [28364] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(225), 1, + anon_sym_STAR, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(4613), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4659), 1, + anon_sym_RBRACE, + ACTIONS(4661), 1, + anon_sym_async, + ACTIONS(4663), 1, + anon_sym_static, + ACTIONS(4665), 1, + anon_sym_readonly, + ACTIONS(4671), 1, anon_sym_override, - ACTIONS(4530), 1, + STATE(2171), 1, + sym_comment, + STATE(3468), 1, + sym_accessibility_modifier, + STATE(3530), 1, + sym_override_modifier, + STATE(4583), 1, + sym__property_name, + STATE(5743), 1, + aux_sym_object_pattern_repeat1, + STATE(6146), 1, + aux_sym_object_repeat1, + STATE(7130), 1, + sym__destructuring_pattern, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4667), 2, + anon_sym_get, + anon_sym_set, + STATE(4288), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4669), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5739), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(6145), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4657), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [28475] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4386), 1, + anon_sym_LBRACK, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4628), 1, + ACTIONS(4673), 1, anon_sym_RBRACE, - STATE(2318), 1, + STATE(2160), 1, + aux_sym_class_body_repeat1, + STATE(2172), 1, sym_comment, - STATE(2342), 1, + STATE(3279), 1, + aux_sym_export_statement_repeat1, + STATE(3378), 1, + sym_method_definition, + STATE(3425), 1, + sym_class_static_block, + STATE(3463), 1, + sym_accessibility_modifier, + STATE(3528), 1, + sym_override_modifier, + STATE(3557), 1, + sym_decorator, + STATE(3792), 1, + sym__property_name, + STATE(5623), 1, + sym_method_signature, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4601), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4605), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5976), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4376), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [28592] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4386), 1, + anon_sym_LBRACK, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4587), 1, + anon_sym_STAR, + ACTIONS(4591), 1, + anon_sym_SEMI, + ACTIONS(4593), 1, + anon_sym_async, + ACTIONS(4595), 1, + anon_sym_AT, + ACTIONS(4597), 1, + anon_sym_static, + ACTIONS(4599), 1, + anon_sym_readonly, + ACTIONS(4603), 1, + anon_sym_declare, + ACTIONS(4607), 1, + anon_sym_abstract, + ACTIONS(4675), 1, + anon_sym_RBRACE, + STATE(2160), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(2173), 1, + sym_comment, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -248579,78 +236392,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28354] = 32, + [28709] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4630), 1, + ACTIONS(4677), 1, anon_sym_RBRACE, - STATE(2319), 1, - sym_comment, - STATE(2320), 1, + STATE(2167), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(2174), 1, + sym_comment, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -248664,78 +236477,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28471] = 32, + [28826] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(225), 1, + anon_sym_STAR, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(4613), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4681), 1, + anon_sym_RBRACE, + ACTIONS(4683), 1, + anon_sym_async, + ACTIONS(4685), 1, + anon_sym_static, + ACTIONS(4687), 1, + anon_sym_readonly, + ACTIONS(4693), 1, anon_sym_override, - ACTIONS(4530), 1, + STATE(2175), 1, + sym_comment, + STATE(3468), 1, + sym_accessibility_modifier, + STATE(3530), 1, + sym_override_modifier, + STATE(4583), 1, + sym__property_name, + STATE(5743), 1, + aux_sym_object_pattern_repeat1, + STATE(6146), 1, + aux_sym_object_repeat1, + STATE(7130), 1, + sym__destructuring_pattern, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4689), 2, + anon_sym_get, + anon_sym_set, + STATE(4288), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4691), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5739), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(6145), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4679), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [28937] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4386), 1, + anon_sym_LBRACK, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4632), 1, + ACTIONS(4695), 1, anon_sym_RBRACE, - STATE(2320), 1, - sym_comment, - STATE(2342), 1, + STATE(2173), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(2176), 1, + sym_comment, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -248749,78 +236644,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28588] = 32, + [29054] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4634), 1, + ACTIONS(4697), 1, anon_sym_RBRACE, - STATE(2318), 1, - aux_sym_class_body_repeat1, - STATE(2321), 1, + STATE(2177), 1, sym_comment, - STATE(3436), 1, + STATE(2187), 1, + aux_sym_class_body_repeat1, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -248834,78 +236729,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28705] = 32, + [29171] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4636), 1, + ACTIONS(4699), 1, anon_sym_RBRACE, - STATE(2312), 1, + STATE(2160), 1, aux_sym_class_body_repeat1, - STATE(2322), 1, + STATE(2178), 1, sym_comment, - STATE(3436), 1, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -248919,78 +236814,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28822] = 32, + [29288] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4638), 1, + ACTIONS(4701), 1, anon_sym_RBRACE, - STATE(2323), 1, - sym_comment, - STATE(2325), 1, + STATE(2160), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(2179), 1, + sym_comment, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -249004,78 +236899,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [28939] = 32, + [29405] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4640), 1, + ACTIONS(4703), 1, anon_sym_RBRACE, - STATE(2324), 1, + STATE(2180), 1, sym_comment, - STATE(2342), 1, + STATE(2189), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -249089,78 +236984,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29056] = 32, + [29522] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4642), 1, + ACTIONS(4705), 1, anon_sym_RBRACE, - STATE(2325), 1, - sym_comment, - STATE(2342), 1, + STATE(2160), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(2181), 1, + sym_comment, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -249174,7 +237069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29173] = 29, + [29639] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -249189,59 +237084,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(3876), 1, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4613), 1, anon_sym_LBRACK, - ACTIONS(4646), 1, + ACTIONS(4709), 1, anon_sym_RBRACE, - ACTIONS(4648), 1, + ACTIONS(4711), 1, anon_sym_async, - ACTIONS(4650), 1, + ACTIONS(4713), 1, anon_sym_static, - ACTIONS(4652), 1, + ACTIONS(4715), 1, anon_sym_readonly, - ACTIONS(4658), 1, + ACTIONS(4721), 1, anon_sym_override, - STATE(2326), 1, + STATE(2182), 1, sym_comment, - STATE(3651), 1, + STATE(3468), 1, sym_accessibility_modifier, - STATE(3663), 1, + STATE(3530), 1, sym_override_modifier, - STATE(4662), 1, + STATE(4583), 1, sym__property_name, - STATE(5945), 1, + STATE(5743), 1, aux_sym_object_pattern_repeat1, - STATE(6441), 1, + STATE(6146), 1, aux_sym_object_repeat1, - STATE(7361), 1, + STATE(7130), 1, sym__destructuring_pattern, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(4654), 2, + ACTIONS(4717), 2, anon_sym_get, anon_sym_set, - STATE(4283), 2, + STATE(4288), 2, sym_object_pattern, sym_array_pattern, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(4656), 3, + ACTIONS(4719), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5931), 3, + STATE(5739), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(6446), 3, + STATE(6145), 3, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(4644), 14, + ACTIONS(4707), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -249256,81 +237151,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29284] = 29, + [29750] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, - sym_html_comment, - ACTIONS(225), 1, - anon_sym_STAR, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(243), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, + sym_html_comment, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4662), 1, - anon_sym_RBRACE, - ACTIONS(4664), 1, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4587), 1, + anon_sym_STAR, + ACTIONS(4591), 1, + anon_sym_SEMI, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4666), 1, + ACTIONS(4595), 1, + anon_sym_AT, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4668), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4674), 1, - anon_sym_override, - STATE(2327), 1, + ACTIONS(4603), 1, + anon_sym_declare, + ACTIONS(4607), 1, + anon_sym_abstract, + ACTIONS(4723), 1, + anon_sym_RBRACE, + STATE(2172), 1, + aux_sym_class_body_repeat1, + STATE(2183), 1, sym_comment, - STATE(3651), 1, + STATE(3279), 1, + aux_sym_export_statement_repeat1, + STATE(3378), 1, + sym_method_definition, + STATE(3425), 1, + sym_class_static_block, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3663), 1, + STATE(3528), 1, sym_override_modifier, - STATE(4662), 1, + STATE(3557), 1, + sym_decorator, + STATE(3792), 1, sym__property_name, - STATE(5945), 1, - aux_sym_object_pattern_repeat1, - STATE(6441), 1, - aux_sym_object_repeat1, - STATE(7361), 1, - sym__destructuring_pattern, - ACTIONS(2734), 2, + STATE(5623), 1, + sym_method_signature, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4670), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4283), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4672), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5931), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(6446), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4660), 14, + STATE(5976), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -249338,78 +237236,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29395] = 32, + [29867] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4676), 1, + ACTIONS(4725), 1, anon_sym_RBRACE, - STATE(2328), 1, - sym_comment, - STATE(2329), 1, + STATE(2169), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(2184), 1, + sym_comment, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -249423,78 +237321,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29512] = 32, + [29984] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4678), 1, + ACTIONS(4727), 1, anon_sym_RBRACE, - STATE(2329), 1, - sym_comment, - STATE(2342), 1, + STATE(2179), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(2185), 1, + sym_comment, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -249508,78 +237406,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29629] = 32, + [30101] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4680), 1, + ACTIONS(4729), 1, anon_sym_RBRACE, - STATE(2330), 1, - sym_comment, - STATE(2333), 1, + STATE(2160), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(2186), 1, + sym_comment, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -249593,78 +237491,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29746] = 32, + [30218] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4682), 1, + ACTIONS(4731), 1, anon_sym_RBRACE, - STATE(2324), 1, + STATE(2160), 1, aux_sym_class_body_repeat1, - STATE(2331), 1, + STATE(2187), 1, sym_comment, - STATE(3436), 1, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -249678,78 +237576,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29863] = 32, + [30335] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4684), 1, + ACTIONS(4733), 1, anon_sym_RBRACE, - STATE(2332), 1, - sym_comment, - STATE(2342), 1, + STATE(2164), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(2188), 1, + sym_comment, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -249763,78 +237661,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29980] = 32, + [30452] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4686), 1, + ACTIONS(4735), 1, anon_sym_RBRACE, - STATE(2333), 1, - sym_comment, - STATE(2342), 1, + STATE(2160), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(2189), 1, + sym_comment, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -249848,7 +237746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30097] = 29, + [30569] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -249863,59 +237761,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(3876), 1, + ACTIONS(3880), 1, anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(4613), 1, anon_sym_LBRACK, - ACTIONS(4690), 1, + ACTIONS(4739), 1, anon_sym_RBRACE, - ACTIONS(4692), 1, + ACTIONS(4741), 1, anon_sym_async, - ACTIONS(4694), 1, + ACTIONS(4743), 1, anon_sym_static, - ACTIONS(4696), 1, + ACTIONS(4745), 1, anon_sym_readonly, - ACTIONS(4702), 1, + ACTIONS(4751), 1, anon_sym_override, - STATE(2334), 1, + STATE(2190), 1, sym_comment, - STATE(3651), 1, + STATE(3468), 1, sym_accessibility_modifier, - STATE(3663), 1, + STATE(3530), 1, sym_override_modifier, - STATE(4662), 1, + STATE(4583), 1, sym__property_name, - STATE(5945), 1, + STATE(5743), 1, aux_sym_object_pattern_repeat1, - STATE(6441), 1, + STATE(6146), 1, aux_sym_object_repeat1, - STATE(7361), 1, + STATE(7130), 1, sym__destructuring_pattern, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(4698), 2, + ACTIONS(4747), 2, anon_sym_get, anon_sym_set, - STATE(4283), 2, + STATE(4288), 2, sym_object_pattern, sym_array_pattern, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(4700), 3, + ACTIONS(4749), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5931), 3, + STATE(5739), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(6446), 3, + STATE(6145), 3, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(4688), 14, + ACTIONS(4737), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -249930,78 +237828,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30208] = 32, + [30680] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4704), 1, + ACTIONS(4753), 1, anon_sym_RBRACE, - STATE(2335), 1, - sym_comment, - STATE(2336), 1, + STATE(2161), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(2191), 1, + sym_comment, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -250015,78 +237913,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30325] = 32, + [30797] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4706), 1, + ACTIONS(4755), 1, anon_sym_RBRACE, - STATE(2336), 1, - sym_comment, - STATE(2342), 1, + STATE(2178), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(2192), 1, + sym_comment, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -250100,84 +237998,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30442] = 32, + [30914] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4708), 1, + ACTIONS(4757), 1, anon_sym_RBRACE, - STATE(2337), 1, + STATE(2193), 1, sym_comment, - STATE(2338), 1, + STATE(2198), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [31031] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(225), 1, + anon_sym_STAR, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(4613), 1, + anon_sym_LBRACK, + ACTIONS(4761), 1, + anon_sym_RBRACE, + ACTIONS(4763), 1, + anon_sym_async, + ACTIONS(4765), 1, + anon_sym_static, + ACTIONS(4767), 1, + anon_sym_readonly, + ACTIONS(4773), 1, + anon_sym_override, + STATE(2194), 1, + sym_comment, + STATE(3468), 1, + sym_accessibility_modifier, + STATE(3530), 1, + sym_override_modifier, + STATE(4583), 1, + sym__property_name, + STATE(5743), 1, + aux_sym_object_pattern_repeat1, + STATE(6146), 1, + aux_sym_object_repeat1, + STATE(7130), 1, + sym__destructuring_pattern, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4769), 2, + anon_sym_get, + anon_sym_set, + STATE(4288), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4771), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5739), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(6145), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4759), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -250185,78 +238165,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30559] = 32, + [31142] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4710), 1, + ACTIONS(4775), 1, anon_sym_RBRACE, - STATE(2338), 1, - sym_comment, - STATE(2342), 1, + STATE(2160), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(2195), 1, + sym_comment, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -250270,78 +238250,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30676] = 32, + [31259] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4712), 1, + ACTIONS(4777), 1, anon_sym_RBRACE, - STATE(2339), 1, - sym_comment, - STATE(2340), 1, + STATE(2195), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(2196), 1, + sym_comment, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -250355,78 +238335,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30793] = 32, + [31376] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4714), 1, + ACTIONS(4779), 1, anon_sym_RBRACE, - STATE(2340), 1, - sym_comment, - STATE(2342), 1, + STATE(2160), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(2197), 1, + sym_comment, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -250440,78 +238420,163 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30910] = 32, + [31493] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(4386), 1, anon_sym_LBRACK, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(4587), 1, anon_sym_STAR, - ACTIONS(4534), 1, + ACTIONS(4591), 1, anon_sym_SEMI, - ACTIONS(4536), 1, + ACTIONS(4593), 1, anon_sym_async, - ACTIONS(4538), 1, + ACTIONS(4595), 1, anon_sym_AT, - ACTIONS(4540), 1, + ACTIONS(4597), 1, anon_sym_static, - ACTIONS(4542), 1, + ACTIONS(4599), 1, anon_sym_readonly, - ACTIONS(4546), 1, + ACTIONS(4603), 1, anon_sym_declare, - ACTIONS(4550), 1, + ACTIONS(4607), 1, anon_sym_abstract, - ACTIONS(4716), 1, + ACTIONS(4781), 1, anon_sym_RBRACE, - STATE(2341), 1, + STATE(2160), 1, + aux_sym_class_body_repeat1, + STATE(2198), 1, sym_comment, - STATE(2343), 1, + STATE(3279), 1, + aux_sym_export_statement_repeat1, + STATE(3378), 1, + sym_method_definition, + STATE(3425), 1, + sym_class_static_block, + STATE(3463), 1, + sym_accessibility_modifier, + STATE(3528), 1, + sym_override_modifier, + STATE(3557), 1, + sym_decorator, + STATE(3792), 1, + sym__property_name, + STATE(5623), 1, + sym_method_signature, + ACTIONS(3896), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4601), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4605), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5976), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4376), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [31610] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4386), 1, + anon_sym_LBRACK, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4587), 1, + anon_sym_STAR, + ACTIONS(4591), 1, + anon_sym_SEMI, + ACTIONS(4593), 1, + anon_sym_async, + ACTIONS(4595), 1, + anon_sym_AT, + ACTIONS(4597), 1, + anon_sym_static, + ACTIONS(4599), 1, + anon_sym_readonly, + ACTIONS(4603), 1, + anon_sym_declare, + ACTIONS(4607), 1, + anon_sym_abstract, + ACTIONS(4783), 1, + anon_sym_RBRACE, + STATE(2197), 1, aux_sym_class_body_repeat1, - STATE(3436), 1, + STATE(2199), 1, + sym_comment, + STATE(3279), 1, aux_sym_export_statement_repeat1, - STATE(3508), 1, + STATE(3378), 1, sym_method_definition, - STATE(3566), 1, + STATE(3425), 1, sym_class_static_block, - STATE(3582), 1, + STATE(3463), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3528), 1, sym_override_modifier, - STATE(3712), 1, + STATE(3557), 1, sym_decorator, - STATE(3975), 1, + STATE(3792), 1, sym__property_name, - STATE(5558), 1, + STATE(5623), 1, sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(3896), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4544), 2, + ACTIONS(4601), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4548), 3, + ACTIONS(4605), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, + STATE(5976), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4372), 13, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -250525,83 +238590,603 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31027] = 31, + [31727] = 31, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2665), 1, + anon_sym_LBRACE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(2938), 1, + anon_sym_namespace, + ACTIONS(2940), 1, + anon_sym_import, + ACTIONS(2942), 1, + anon_sym_var, + ACTIONS(2944), 1, + anon_sym_let, + ACTIONS(2946), 1, + anon_sym_const, + ACTIONS(2948), 1, + anon_sym_class, + ACTIONS(2950), 1, + anon_sym_async, + ACTIONS(2952), 1, + anon_sym_function, + ACTIONS(2954), 1, + anon_sym_declare, + ACTIONS(2958), 1, + anon_sym_abstract, + ACTIONS(2962), 1, + anon_sym_interface, + ACTIONS(2964), 1, + anon_sym_enum, + ACTIONS(4502), 1, + anon_sym_STAR, + ACTIONS(4504), 1, + anon_sym_default, + ACTIONS(4506), 1, + anon_sym_type, + ACTIONS(4510), 1, + anon_sym_as, + ACTIONS(4520), 1, + anon_sym_module, + ACTIONS(4785), 1, + anon_sym_EQ, + STATE(2200), 1, + sym_comment, + STATE(4878), 1, + sym_internal_module, + STATE(5318), 1, + sym_declaration, + STATE(5382), 1, + aux_sym_export_statement_repeat1, + STATE(5410), 1, + sym_decorator, + STATE(5549), 1, + sym_export_clause, + STATE(6927), 1, + sym_namespace_export, + ACTIONS(4518), 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(5171), 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, + [31841] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2201), 1, + sym_comment, + ACTIONS(2183), 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(2185), 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, + [31903] = 32, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2665), 1, + anon_sym_LBRACE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(2938), 1, + anon_sym_namespace, + ACTIONS(2940), 1, + anon_sym_import, + ACTIONS(2942), 1, + anon_sym_var, + ACTIONS(2944), 1, + anon_sym_let, + ACTIONS(2946), 1, + anon_sym_const, + ACTIONS(2948), 1, + anon_sym_class, + ACTIONS(2950), 1, + anon_sym_async, + ACTIONS(2952), 1, + anon_sym_function, + ACTIONS(2954), 1, + anon_sym_declare, + ACTIONS(2958), 1, + anon_sym_abstract, + ACTIONS(2962), 1, + anon_sym_interface, + ACTIONS(2964), 1, + anon_sym_enum, + ACTIONS(4502), 1, + anon_sym_STAR, + ACTIONS(4504), 1, + anon_sym_default, + ACTIONS(4506), 1, + anon_sym_type, + ACTIONS(4508), 1, + anon_sym_EQ, + ACTIONS(4510), 1, + anon_sym_as, + ACTIONS(4520), 1, + anon_sym_module, + STATE(2202), 1, + sym_comment, + STATE(4878), 1, + sym_internal_module, + STATE(5318), 1, + sym_declaration, + STATE(5382), 1, + aux_sym_export_statement_repeat1, + STATE(5410), 1, + sym_decorator, + STATE(5549), 1, + sym_export_clause, + STATE(6927), 1, + sym_namespace_export, + ACTIONS(4787), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4518), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(5171), 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, + [32019] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2203), 1, + sym_comment, + ACTIONS(2251), 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(2253), 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, + [32081] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4793), 1, + anon_sym_DOT, + ACTIONS(4795), 1, + anon_sym_LT, + STATE(2204), 1, + sym_comment, + STATE(2324), 1, + sym_arguments, + STATE(2325), 1, + sym_type_arguments, + ACTIONS(4147), 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(4143), 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, + [32152] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, + anon_sym_LT, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4805), 1, + anon_sym_QMARK_DOT, + STATE(2205), 1, + sym_comment, + STATE(2382), 1, + sym_type_arguments, + STATE(2391), 1, + sym_arguments, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4797), 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(4799), 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, + [32229] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4795), 1, + anon_sym_LT, + ACTIONS(4809), 1, + anon_sym_DOT, + ACTIONS(4811), 1, + anon_sym_is, + STATE(2206), 1, + sym_comment, + STATE(2276), 1, + sym_type_arguments, + ACTIONS(4807), 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(4202), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_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, + [32298] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, + anon_sym_LT, + ACTIONS(4817), 1, + anon_sym_DOT, + STATE(2207), 1, + sym_comment, + STATE(2334), 1, + sym_arguments, + STATE(2335), 1, + sym_type_arguments, + ACTIONS(4813), 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(4815), 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, + [32369] = 26, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4721), 1, + ACTIONS(225), 1, anon_sym_STAR, - ACTIONS(4724), 1, - anon_sym_RBRACE, - ACTIONS(4726), 1, - anon_sym_SEMI, - ACTIONS(4729), 1, - anon_sym_LBRACK, - ACTIONS(4732), 1, + ACTIONS(243), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(4735), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4738), 1, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(4613), 1, + anon_sym_LBRACK, + ACTIONS(4821), 1, anon_sym_async, - ACTIONS(4747), 1, - anon_sym_AT, - ACTIONS(4750), 1, + ACTIONS(4823), 1, anon_sym_static, - ACTIONS(4753), 1, + ACTIONS(4825), 1, anon_sym_readonly, - ACTIONS(4759), 1, - anon_sym_declare, - ACTIONS(4765), 1, + ACTIONS(4831), 1, anon_sym_override, - ACTIONS(4768), 1, - anon_sym_abstract, - STATE(3436), 1, - aux_sym_export_statement_repeat1, - STATE(3508), 1, - sym_method_definition, - STATE(3566), 1, - sym_class_static_block, - STATE(3582), 1, + STATE(2208), 1, + sym_comment, + STATE(3468), 1, sym_accessibility_modifier, - STATE(3667), 1, + STATE(3530), 1, sym_override_modifier, - STATE(3712), 1, - sym_decorator, - STATE(3975), 1, + STATE(4583), 1, sym__property_name, - STATE(5558), 1, - sym_method_signature, - ACTIONS(4741), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4744), 2, + STATE(7130), 1, + sym__destructuring_pattern, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(4756), 2, + ACTIONS(4064), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4827), 2, anon_sym_get, anon_sym_set, - STATE(2342), 2, - sym_comment, - aux_sym_class_body_repeat1, - STATE(4151), 2, + STATE(4288), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(4762), 3, + ACTIONS(4829), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6097), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4718), 13, + STATE(6775), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(6820), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(4819), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -250609,439 +239194,808 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31142] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + [32472] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4795), 1, + anon_sym_LT, + ACTIONS(4837), 1, + anon_sym_DOT, + STATE(2209), 1, + sym_comment, + STATE(2326), 1, + sym_arguments, + STATE(2331), 1, + sym_type_arguments, + ACTIONS(4833), 12, anon_sym_STAR, - ACTIONS(4534), 1, - anon_sym_SEMI, - ACTIONS(4536), 1, - anon_sym_async, - ACTIONS(4538), 1, - anon_sym_AT, - ACTIONS(4540), 1, - anon_sym_static, - ACTIONS(4542), 1, - anon_sym_readonly, - ACTIONS(4546), 1, - anon_sym_declare, - ACTIONS(4550), 1, - anon_sym_abstract, - ACTIONS(4771), 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(4835), 30, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2342), 1, - aux_sym_class_body_repeat1, - STATE(2343), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32543] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4795), 1, + anon_sym_LT, + ACTIONS(4809), 1, + anon_sym_DOT, + STATE(2210), 1, sym_comment, - STATE(3436), 1, - aux_sym_export_statement_repeat1, - STATE(3508), 1, - sym_method_definition, - STATE(3566), 1, - sym_class_static_block, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3667), 1, - sym_override_modifier, - STATE(3712), 1, - sym_decorator, - STATE(3975), 1, - sym__property_name, - STATE(5558), 1, - sym_method_signature, - ACTIONS(3892), 2, + STATE(2276), 1, + sym_type_arguments, + ACTIONS(4807), 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, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4544), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4548), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6097), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4372), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [31259] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4202), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_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, + [32609] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2211), 1, + sym_comment, + ACTIONS(4345), 14, anon_sym_STAR, - ACTIONS(4534), 1, - anon_sym_SEMI, - ACTIONS(4536), 1, - anon_sym_async, - ACTIONS(4538), 1, - anon_sym_AT, - ACTIONS(4540), 1, - anon_sym_static, - ACTIONS(4542), 1, - anon_sym_readonly, - ACTIONS(4546), 1, - anon_sym_declare, - ACTIONS(4550), 1, - anon_sym_abstract, - ACTIONS(4773), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + ACTIONS(4839), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2342), 1, - aux_sym_class_body_repeat1, - STATE(2344), 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, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32669] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2212), 1, sym_comment, - STATE(3436), 1, - aux_sym_export_statement_repeat1, - STATE(3508), 1, - sym_method_definition, - STATE(3566), 1, - sym_class_static_block, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3667), 1, - sym_override_modifier, - STATE(3712), 1, - sym_decorator, - STATE(3975), 1, - sym__property_name, - STATE(5558), 1, - sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(1972), 13, + anon_sym_STAR, + anon_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(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4544), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4548), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6097), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4372), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [31376] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2030), 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, + [32729] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4382), 1, - anon_sym_LBRACK, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4530), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2213), 1, + sym_comment, + ACTIONS(2251), 14, anon_sym_STAR, - ACTIONS(4534), 1, - anon_sym_SEMI, - ACTIONS(4536), 1, - anon_sym_async, - ACTIONS(4538), 1, - anon_sym_AT, - ACTIONS(4540), 1, - anon_sym_static, - ACTIONS(4542), 1, - anon_sym_readonly, - ACTIONS(4546), 1, - anon_sym_declare, - ACTIONS(4550), 1, - anon_sym_abstract, - ACTIONS(4775), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + ACTIONS(2253), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2345), 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, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [32789] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4811), 1, + anon_sym_is, + STATE(2214), 1, sym_comment, - STATE(2347), 1, - aux_sym_class_body_repeat1, - STATE(3436), 1, - aux_sym_export_statement_repeat1, - STATE(3508), 1, - sym_method_definition, - STATE(3566), 1, - sym_class_static_block, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3667), 1, - sym_override_modifier, - STATE(3712), 1, - sym_decorator, - STATE(3975), 1, - sym__property_name, - STATE(5558), 1, - sym_method_signature, - ACTIONS(3892), 2, + ACTIONS(4841), 13, + anon_sym_STAR, + anon_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(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4544), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4548), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6097), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4372), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [31493] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4843), 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, + [32851] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2215), 1, + sym_comment, + ACTIONS(4845), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4847), 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, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4530), 1, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + anon_sym_is, + [32911] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4849), 1, + anon_sym_LBRACE, + ACTIONS(4851), 1, + anon_sym_DOT, + STATE(2216), 1, + sym_comment, + STATE(2535), 1, + sym_statement_block, + ACTIONS(2057), 13, anon_sym_STAR, - ACTIONS(4534), 1, - anon_sym_SEMI, - ACTIONS(4536), 1, - anon_sym_async, - ACTIONS(4538), 1, - anon_sym_AT, - ACTIONS(4540), 1, - anon_sym_static, - ACTIONS(4542), 1, - anon_sym_readonly, - ACTIONS(4546), 1, - anon_sym_declare, - ACTIONS(4550), 1, - anon_sym_abstract, - ACTIONS(4777), 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(2061), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2332), 1, - aux_sym_class_body_repeat1, - STATE(2346), 1, + 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, + [32977] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4849), 1, + anon_sym_LBRACE, + ACTIONS(4853), 1, + anon_sym_DOT, + STATE(2217), 1, sym_comment, - STATE(3436), 1, - aux_sym_export_statement_repeat1, - STATE(3508), 1, - sym_method_definition, - STATE(3566), 1, - sym_class_static_block, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3667), 1, - sym_override_modifier, - STATE(3712), 1, - sym_decorator, - STATE(3975), 1, - sym__property_name, - STATE(5558), 1, - sym_method_signature, - ACTIONS(3892), 2, + STATE(2535), 1, + sym_statement_block, + ACTIONS(2057), 13, + anon_sym_STAR, + anon_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(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4544), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4548), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6097), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4372), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [31610] = 32, - ACTIONS(3), 1, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2061), 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, + [33043] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4859), 1, + anon_sym_is, + STATE(2218), 1, + sym_comment, + ACTIONS(4855), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4857), 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, + [33105] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4382), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2219), 1, + sym_comment, + ACTIONS(2183), 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(2185), 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, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4530), 1, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [33165] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + STATE(2220), 1, + sym_comment, + STATE(2458), 2, + sym_template_string, + sym_arguments, + ACTIONS(4861), 13, anon_sym_STAR, - ACTIONS(4534), 1, - anon_sym_SEMI, - ACTIONS(4536), 1, - anon_sym_async, - ACTIONS(4538), 1, - anon_sym_AT, - ACTIONS(4540), 1, - anon_sym_static, - ACTIONS(4542), 1, - anon_sym_readonly, - ACTIONS(4546), 1, - anon_sym_declare, - ACTIONS(4550), 1, - anon_sym_abstract, - ACTIONS(4779), 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(4863), 29, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(2342), 1, - aux_sym_class_body_repeat1, - STATE(2347), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + anon_sym_implements, + [33231] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4849), 1, + anon_sym_LBRACE, + STATE(2221), 1, sym_comment, - STATE(3436), 1, - aux_sym_export_statement_repeat1, - STATE(3508), 1, - sym_method_definition, - STATE(3566), 1, - sym_class_static_block, - STATE(3582), 1, - sym_accessibility_modifier, - STATE(3667), 1, - sym_override_modifier, - STATE(3712), 1, - sym_decorator, - STATE(3975), 1, - sym__property_name, - STATE(5558), 1, - sym_method_signature, - ACTIONS(3892), 2, + STATE(2535), 1, + sym_statement_block, + ACTIONS(2057), 13, + anon_sym_STAR, + anon_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(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4544), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4548), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6097), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4372), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [31727] = 5, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2061), 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, + [33295] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2348), 1, + ACTIONS(4795), 1, + anon_sym_LT, + STATE(2222), 1, + sym_comment, + STATE(2303), 1, + sym_type_arguments, + ACTIONS(4855), 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(4857), 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, + [33359] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2223), 1, sym_comment, - ACTIONS(2077), 14, + ACTIONS(4343), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251056,20 +240010,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(2079), 34, - sym__automatic_semicolon, + ACTIONS(4867), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -251090,15 +240042,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [31789] = 5, + anon_sym_implements, + [33419] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2349), 1, + STATE(2224), 1, sym_comment, - ACTIONS(2221), 14, + ACTIONS(4349), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251113,20 +240065,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(2223), 34, - sym__automatic_semicolon, + ACTIONS(4869), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -251147,192 +240097,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [31851] = 31, + anon_sym_implements, + [33479] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2665), 1, - anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2938), 1, - anon_sym_namespace, - ACTIONS(2940), 1, - anon_sym_import, - ACTIONS(2942), 1, - anon_sym_var, - ACTIONS(2944), 1, - anon_sym_let, - ACTIONS(2946), 1, - anon_sym_const, - ACTIONS(2948), 1, - anon_sym_class, - ACTIONS(2950), 1, - anon_sym_async, - ACTIONS(2952), 1, - anon_sym_function, - ACTIONS(2954), 1, - anon_sym_declare, - ACTIONS(2958), 1, - anon_sym_abstract, - ACTIONS(2962), 1, - anon_sym_interface, - ACTIONS(2964), 1, - anon_sym_enum, - ACTIONS(4498), 1, + ACTIONS(4811), 1, + anon_sym_is, + STATE(2225), 1, + sym_comment, + ACTIONS(4871), 13, anon_sym_STAR, - ACTIONS(4500), 1, - anon_sym_default, - ACTIONS(4502), 1, - anon_sym_type, - ACTIONS(4506), 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(4873), 32, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4516), 1, - anon_sym_module, - ACTIONS(4781), 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, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [33541] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2071), 1, anon_sym_EQ, - STATE(2350), 1, - sym_comment, - STATE(5204), 1, - sym_declaration, - STATE(5206), 1, - sym_internal_module, - STATE(5375), 1, - aux_sym_export_statement_repeat1, - STATE(5584), 1, - sym_export_clause, - STATE(5700), 1, - sym_decorator, - STATE(7103), 1, - sym_namespace_export, - ACTIONS(4514), 9, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4875), 1, sym__automatic_semicolon, + STATE(2226), 1, + sym_comment, + ACTIONS(2067), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2095), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(5192), 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, - [31965] = 32, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [33605] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2665), 1, - anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2938), 1, - anon_sym_namespace, - ACTIONS(2940), 1, - anon_sym_import, - ACTIONS(2942), 1, - anon_sym_var, - ACTIONS(2944), 1, - anon_sym_let, - ACTIONS(2946), 1, - anon_sym_const, - ACTIONS(2948), 1, - anon_sym_class, - ACTIONS(2950), 1, - anon_sym_async, - ACTIONS(2952), 1, - anon_sym_function, - ACTIONS(2954), 1, - anon_sym_declare, - ACTIONS(2958), 1, - anon_sym_abstract, - ACTIONS(2962), 1, - anon_sym_interface, - ACTIONS(2964), 1, - anon_sym_enum, - ACTIONS(4498), 1, + STATE(2227), 1, + sym_comment, + ACTIONS(4877), 13, anon_sym_STAR, - ACTIONS(4500), 1, - anon_sym_default, - ACTIONS(4502), 1, - anon_sym_type, - ACTIONS(4504), 1, - anon_sym_EQ, - ACTIONS(4506), 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(4879), 32, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4516), 1, - anon_sym_module, - STATE(2351), 1, - sym_comment, - STATE(5204), 1, - sym_declaration, - STATE(5206), 1, - sym_internal_module, - STATE(5375), 1, - aux_sym_export_statement_repeat1, - STATE(5584), 1, - sym_export_clause, - STATE(5700), 1, - sym_decorator, - STATE(7103), 1, - sym_namespace_export, - ACTIONS(4783), 2, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4514), 7, - sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(5192), 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, - [32081] = 10, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [33664] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4885), 1, + anon_sym_LBRACK, + STATE(2228), 1, + sym_comment, + ACTIONS(4881), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4883), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4789), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4791), 1, - anon_sym_LT, - STATE(2352), 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, + anon_sym_extends, + anon_sym_implements, + [33725] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2229), 1, sym_comment, - STATE(2450), 1, - sym_type_arguments, - STATE(2451), 1, - sym_arguments, - ACTIONS(4131), 12, + ACTIONS(4871), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251343,19 +240338,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4127), 30, + ACTIONS(4873), 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, @@ -251376,107 +240374,521 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32152] = 26, - ACTIONS(3), 1, - aux_sym_comment_token1, + [33784] = 38, ACTIONS(5), 1, sym_html_comment, - ACTIONS(225), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4218), 1, + anon_sym_COLON, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4895), 1, + anon_sym_RPAREN, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2230), 1, + sym_comment, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, + sym_optional_chain, + STATE(7328), 1, + sym_type_annotation, + ACTIONS(4887), 2, anon_sym_STAR, - ACTIONS(243), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(4556), 1, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [33909] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4795), 1, - anon_sym_async, - ACTIONS(4797), 1, - anon_sym_static, - ACTIONS(4799), 1, - anon_sym_readonly, - ACTIONS(4805), 1, - anon_sym_override, - STATE(2353), 1, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4941), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2231), 1, sym_comment, - STATE(3651), 1, - sym_accessibility_modifier, - STATE(3663), 1, - sym_override_modifier, - STATE(4662), 1, - sym__property_name, - STATE(7361), 1, - sym__destructuring_pattern, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4060), 2, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4937), 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(4939), 19, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4801), 2, - anon_sym_get, - anon_sym_set, - STATE(4283), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4803), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6763), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(6824), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4793), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [32255] = 13, + 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, + [33994] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4811), 1, + STATE(2220), 1, + sym_type_arguments, + STATE(2232), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4946), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4944), 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, + [34089] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4815), 1, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - STATE(2354), 1, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4946), 1, + anon_sym_BANG, + STATE(2220), 1, + sym_type_arguments, + STATE(2233), 1, sym_comment, - STATE(2397), 1, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 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, + [34198] = 38, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4218), 1, + anon_sym_COLON, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + ACTIONS(4948), 1, + anon_sym_RPAREN, + STATE(2220), 1, sym_type_arguments, - STATE(2686), 1, + STATE(2234), 1, + sym_comment, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, + sym_optional_chain, + STATE(7298), 1, + sym_type_annotation, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, sym_arguments, - STATE(6354), 1, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34323] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4805), 1, + anon_sym_QMARK_DOT, + STATE(2235), 1, + sym_comment, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4807), 12, + ACTIONS(2151), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2153), 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, + [34390] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4954), 1, + anon_sym_AMP, + ACTIONS(4956), 1, + anon_sym_PIPE, + ACTIONS(4958), 1, + anon_sym_extends, + STATE(2236), 1, + sym_comment, + ACTIONS(4950), 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(4952), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [34455] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2237), 1, + sym_comment, + ACTIONS(4877), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251487,18 +240899,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4809), 27, + ACTIONS(4879), 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, @@ -251509,30 +240926,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [34514] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2238), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4960), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [34631] = 38, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4218), 1, + anon_sym_COLON, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + ACTIONS(4962), 1, + anon_sym_RPAREN, + STATE(2220), 1, + sym_type_arguments, + STATE(2239), 1, + sym_comment, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, + sym_optional_chain, + STATE(7344), 1, + sym_type_annotation, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [32332] = 9, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [34756] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LT, - ACTIONS(4819), 1, - anon_sym_DOT, - ACTIONS(4821), 1, - anon_sym_is, - STATE(2355), 1, + STATE(2240), 1, sym_comment, - STATE(2466), 1, - sym_type_arguments, - ACTIONS(4817), 12, + ACTIONS(4964), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251543,9 +241123,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4203), 31, + ACTIONS(4966), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251557,6 +241138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -251577,85 +241159,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32401] = 10, + [34815] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, ACTIONS(4791), 1, - anon_sym_LT, - ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, anon_sym_DOT, - STATE(2356), 1, - sym_comment, - STATE(2442), 1, - sym_type_arguments, - STATE(2443), 1, - sym_arguments, - ACTIONS(4823), 12, - anon_sym_STAR, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, anon_sym_GT_GT, + ACTIONS(4909), 1, anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2241), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4825), 30, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4968), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [34932] = 38, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4218), 1, + anon_sym_COLON, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, + ACTIONS(4901), 1, anon_sym_AMP_AMP, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, anon_sym_PERCENT, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + ACTIONS(4970), 1, + anon_sym_RPAREN, + STATE(2220), 1, + sym_type_arguments, + STATE(2242), 1, + sym_comment, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, + sym_optional_chain, + STATE(7305), 1, + sym_type_annotation, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [32472] = 10, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [35057] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4791), 1, - anon_sym_LT, - ACTIONS(4833), 1, - anon_sym_DOT, - STATE(2357), 1, + STATE(2243), 1, sym_comment, - STATE(2444), 1, - sym_type_arguments, - STATE(2449), 1, - sym_arguments, - ACTIONS(4829), 12, + ACTIONS(3222), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251666,19 +241347,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4831), 30, + ACTIONS(3540), 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, @@ -251699,14 +241383,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32543] = 5, + [35116] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2358), 1, + STATE(2244), 1, sym_comment, - ACTIONS(1978), 13, + ACTIONS(4972), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251720,7 +241404,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2030), 33, + ACTIONS(4974), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -251753,21 +241437,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [32603] = 8, + [35175] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4791), 1, - anon_sym_LT, - ACTIONS(4819), 1, - anon_sym_DOT, - STATE(2359), 1, + STATE(2245), 1, sym_comment, - STATE(2466), 1, - sym_type_arguments, - ACTIONS(4817), 12, + ACTIONS(2233), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251778,20 +241455,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4203), 31, + ACTIONS(2235), 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_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -251810,79 +241490,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [32669] = 7, + anon_sym_PIPE_RBRACE, + [35234] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, anon_sym_LT, - STATE(2360), 1, - sym_comment, - STATE(2452), 1, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(2220), 1, sym_type_arguments, - ACTIONS(4835), 12, + STATE(2246), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4837), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4976), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [32733] = 8, + [35351] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4839), 1, - anon_sym_LBRACE, - ACTIONS(4841), 1, - anon_sym_DOT, - STATE(2361), 1, + STATE(2247), 1, sym_comment, - STATE(2540), 1, - sym_statement_block, - ACTIONS(2055), 13, + ACTIONS(2237), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251896,10 +241595,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2059), 30, + ACTIONS(2239), 32, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_else, @@ -251908,6 +241608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_while, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -251927,14 +241628,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [32799] = 5, + [35410] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2362), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4982), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2248), 1, sym_comment, - ACTIONS(4324), 14, + STATE(6178), 1, + sym_optional_chain, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4978), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251945,24 +241665,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(4843), 32, + ACTIONS(4980), 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, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -251978,73 +241690,100 @@ 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_extends, - anon_sym_implements, - [32859] = 5, + [35487] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2363), 1, - sym_comment, - ACTIONS(4352), 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(4845), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4791), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4801), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4803), 1, anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, + ACTIONS(4901), 1, anon_sym_AMP_AMP, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, anon_sym_PERCENT, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2249), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [32919] = 5, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4985), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [35604] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2364), 1, + ACTIONS(4991), 1, + anon_sym_DOT, + STATE(2250), 1, sym_comment, - ACTIONS(2077), 14, + ACTIONS(4987), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252058,8 +241797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(2079), 32, + ACTIONS(4989), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252071,7 +241809,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -252092,18 +241829,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [32979] = 7, + [35665] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4839), 1, - anon_sym_LBRACE, - STATE(2365), 1, + STATE(2251), 1, sym_comment, - STATE(2540), 1, - sym_statement_block, - ACTIONS(2055), 13, + ACTIONS(4993), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252117,18 +241850,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2059), 31, - sym__automatic_semicolon, + ACTIONS(4995), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -252148,17 +241881,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [33043] = 6, + anon_sym_extends, + anon_sym_implements, + [35724] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4821), 1, - anon_sym_is, - STATE(2366), 1, + STATE(2252), 1, sym_comment, - ACTIONS(4847), 13, + ACTIONS(4997), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252172,7 +241904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4849), 32, + ACTIONS(4999), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252205,14 +241937,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33105] = 5, + [35783] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2367), 1, + STATE(2253), 1, sym_comment, - ACTIONS(2221), 14, + ACTIONS(5001), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252226,8 +241958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(2223), 32, + ACTIONS(5003), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252260,14 +241991,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33165] = 5, + [35842] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2368), 1, + STATE(2254), 1, sym_comment, - ACTIONS(4851), 13, + ACTIONS(5005), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252281,7 +242012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4853), 33, + ACTIONS(5007), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252314,21 +242045,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [33225] = 8, + [35901] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4839), 1, - anon_sym_LBRACE, - ACTIONS(4855), 1, - anon_sym_DOT, - STATE(2369), 1, + STATE(2255), 1, sym_comment, - STATE(2540), 1, - sym_statement_block, - ACTIONS(2055), 13, + ACTIONS(5009), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252342,18 +242066,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2059), 30, - sym__automatic_semicolon, + ACTIONS(5011), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -252372,17 +242097,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [33291] = 6, + anon_sym_extends, + anon_sym_implements, + [35960] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4857), 1, - anon_sym_is, - STATE(2370), 1, + STATE(2256), 1, sym_comment, - ACTIONS(4835), 13, + ACTIONS(5013), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252396,7 +242120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4837), 32, + ACTIONS(5015), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252429,16 +242153,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33353] = 6, + [36019] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4821), 1, - anon_sym_is, - STATE(2371), 1, + STATE(2257), 1, sym_comment, - ACTIONS(4859), 13, + ACTIONS(5017), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252452,7 +242174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4861), 32, + ACTIONS(5019), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252485,21 +242207,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33415] = 8, + [36078] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - STATE(2372), 1, + STATE(2258), 1, sym_comment, - STATE(2680), 2, - sym_template_string, - sym_arguments, - ACTIONS(4863), 13, + ACTIONS(5017), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252513,12 +242228,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 29, + ACTIONS(5019), 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, @@ -252541,16 +242257,18 @@ 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_extends, anon_sym_implements, - [33481] = 5, + [36137] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2373), 1, + STATE(2259), 1, sym_comment, - ACTIONS(4345), 14, + ACTIONS(4855), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252564,8 +242282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(4869), 32, + ACTIONS(4857), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252598,18 +242315,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33541] = 7, + [36196] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4871), 1, - sym__automatic_semicolon, - STATE(2374), 1, + STATE(2260), 1, sym_comment, - ACTIONS(2067), 13, + ACTIONS(5021), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252623,7 +242336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 31, + ACTIONS(5023), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252654,21 +242367,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [33605] = 5, + [36255] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2375), 1, + ACTIONS(4954), 1, + anon_sym_AMP, + STATE(2261), 1, sym_comment, - ACTIONS(4873), 13, + ACTIONS(5025), 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, @@ -252676,7 +242391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4875), 32, + ACTIONS(5027), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252709,97 +242424,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33664] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(2376), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4881), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [33781] = 5, + [36316] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2377), 1, + STATE(2262), 1, sym_comment, - ACTIONS(4925), 13, + ACTIONS(5021), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252813,7 +242445,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 32, + ACTIONS(5023), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252846,14 +242478,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33840] = 5, + [36375] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2378), 1, + STATE(2263), 1, sym_comment, - ACTIONS(4929), 13, + ACTIONS(5029), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252867,7 +242499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4931), 32, + ACTIONS(5031), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252900,14 +242532,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33899] = 5, + [36434] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2379), 1, + STATE(2264), 1, sym_comment, - ACTIONS(4929), 13, + ACTIONS(5021), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252921,7 +242553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4931), 32, + ACTIONS(5023), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -252954,14 +242586,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [33958] = 5, + [36493] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2380), 1, + STATE(2265), 1, sym_comment, - ACTIONS(4933), 13, + ACTIONS(5033), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252975,7 +242607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4935), 32, + ACTIONS(5035), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253008,117 +242640,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34017] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4937), 1, - anon_sym_STAR, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, - anon_sym_COMMA, - ACTIONS(4944), 1, - anon_sym_RBRACE, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(4949), 1, - anon_sym_async, - ACTIONS(4951), 1, - anon_sym_readonly, - STATE(2381), 1, - sym_comment, - STATE(3670), 1, - sym_override_modifier, - STATE(4017), 1, - sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4953), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4372), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [34112] = 19, + [36552] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4959), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2382), 1, + STATE(2266), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 11, + ACTIONS(5033), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -253127,35 +242658,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 18, + ACTIONS(5035), 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, - [34199] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [36611] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2383), 1, + STATE(2267), 1, sym_comment, - ACTIONS(4962), 13, + ACTIONS(5033), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253169,7 +242715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 32, + ACTIONS(5035), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253202,14 +242748,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34258] = 5, + [36670] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2384), 1, + STATE(2268), 1, sym_comment, - ACTIONS(4966), 13, + ACTIONS(5037), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253223,7 +242769,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4968), 32, + ACTIONS(5039), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253256,43 +242802,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34317] = 18, + [36729] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4959), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2385), 1, + STATE(2269), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(5041), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -253301,428 +242819,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 19, + ACTIONS(5043), 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_LT_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, - [34402] = 21, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2386), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4957), 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, - [34493] = 27, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2387), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 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, - [34596] = 26, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2388), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 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, - [34697] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(2389), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4970), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [34814] = 25, + anon_sym_extends, + anon_sym_implements, + [36788] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2390), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4955), 3, - anon_sym_BANG, + ACTIONS(4954), 1, anon_sym_AMP, + ACTIONS(4956), 1, anon_sym_PIPE, - ACTIONS(4957), 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, - [34913] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2391), 1, + ACTIONS(4958), 1, + anon_sym_extends, + STATE(2270), 1, sym_comment, - ACTIONS(4972), 13, + ACTIONS(5045), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4974), 32, + ACTIONS(5047), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253753,22 +242912,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [34972] = 8, + [36853] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4980), 1, + ACTIONS(4954), 1, anon_sym_AMP, - ACTIONS(4982), 1, + ACTIONS(4956), 1, anon_sym_PIPE, - ACTIONS(4984), 1, + ACTIONS(4958), 1, anon_sym_extends, - STATE(2392), 1, + STATE(2271), 1, sym_comment, - ACTIONS(4976), 11, + ACTIONS(5049), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253780,7 +242938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4978), 31, + ACTIONS(5051), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253812,111 +242970,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [35037] = 34, + [36918] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, + anon_sym_QMARK_DOT, + ACTIONS(5057), 1, anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2393), 1, + STATE(2272), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5053), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4986), 5, + ACTIONS(5055), 21, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [35154] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [36997] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2394), 1, + ACTIONS(4954), 1, + anon_sym_AMP, + ACTIONS(4956), 1, + anon_sym_PIPE, + ACTIONS(4958), 1, + anon_sym_extends, + STATE(2273), 1, sym_comment, - ACTIONS(4988), 13, + ACTIONS(5060), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4990), 32, + ACTIONS(5062), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -253947,16 +243090,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [35213] = 5, + [37062] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2395), 1, + STATE(2274), 1, sym_comment, - ACTIONS(4992), 13, + ACTIONS(3236), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253970,7 +243112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4994), 32, + ACTIONS(3570), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254003,14 +243145,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35272] = 5, + [37121] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2396), 1, + ACTIONS(4218), 1, + anon_sym_COLON, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + ACTIONS(5064), 1, + anon_sym_RPAREN, + STATE(2220), 1, + sym_type_arguments, + STATE(2275), 1, sym_comment, - ACTIONS(4992), 13, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, + sym_optional_chain, + STATE(7412), 1, + sym_type_annotation, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37246] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2276), 1, + sym_comment, + ACTIONS(5066), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254024,7 +243253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4994), 32, + ACTIONS(5068), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254057,18 +243286,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35331] = 7, + [37305] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - STATE(2397), 1, + STATE(2277), 1, sym_comment, - STATE(2632), 1, - sym_arguments, - ACTIONS(4996), 13, + ACTIONS(5060), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254082,12 +243307,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4998), 30, + ACTIONS(5062), 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, @@ -254112,15 +243338,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [35394] = 5, + [37364] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2398), 1, + STATE(2278), 1, sym_comment, - ACTIONS(4992), 13, + ACTIONS(5070), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254134,7 +243361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4994), 32, + ACTIONS(5072), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254167,115 +243394,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35453] = 38, + [37423] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4226), 1, - anon_sym_COLON, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(4954), 1, anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(4956), 1, anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5002), 1, - anon_sym_RPAREN, - STATE(2372), 1, - sym_type_arguments, - STATE(2399), 1, + ACTIONS(4958), 1, + anon_sym_extends, + STATE(2279), 1, sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, - sym_optional_chain, - STATE(7557), 1, - sym_type_annotation, - ACTIONS(4877), 2, + ACTIONS(5074), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(5076), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [35578] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [37488] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2400), 1, + ACTIONS(4954), 1, + anon_sym_AMP, + ACTIONS(4956), 1, + anon_sym_PIPE, + ACTIONS(4958), 1, + anon_sym_extends, + STATE(2280), 1, sym_comment, - ACTIONS(5004), 13, + ACTIONS(5078), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5006), 32, + ACTIONS(5080), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254306,30 +243507,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, - [35637] = 5, + [37553] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2401), 1, + ACTIONS(4883), 1, + anon_sym_extends, + ACTIONS(4885), 1, + anon_sym_LBRACK, + STATE(2281), 1, sym_comment, - ACTIONS(5008), 13, + ACTIONS(4881), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5082), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5010), 32, + ACTIONS(5084), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254339,7 +243544,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -254360,16 +243564,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [35696] = 5, + [37618] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2402), 1, + STATE(2282), 1, sym_comment, - ACTIONS(5008), 13, + ACTIONS(5086), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254383,7 +243586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5010), 32, + ACTIONS(5088), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254416,14 +243619,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35755] = 5, + [37677] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2403), 1, + STATE(2283), 1, sym_comment, - ACTIONS(5012), 13, + ACTIONS(5090), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254437,7 +243640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5014), 32, + ACTIONS(5092), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254470,14 +243673,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35814] = 5, + [37736] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2404), 1, + STATE(2284), 1, sym_comment, - ACTIONS(4972), 13, + ACTIONS(5094), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254491,7 +243694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4974), 32, + ACTIONS(5096), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254524,14 +243727,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35873] = 5, + [37795] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2405), 1, + STATE(2285), 1, sym_comment, - ACTIONS(5008), 13, + ACTIONS(5098), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254545,7 +243748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5010), 32, + ACTIONS(5100), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254578,14 +243781,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35932] = 5, + [37854] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2406), 1, + STATE(2286), 1, sym_comment, - ACTIONS(5016), 13, + ACTIONS(5094), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254599,7 +243802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5018), 32, + ACTIONS(5096), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254632,14 +243835,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35991] = 5, + [37913] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2407), 1, + STATE(2287), 1, sym_comment, - ACTIONS(5020), 13, + ACTIONS(5098), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254653,7 +243856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5022), 32, + ACTIONS(5100), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254686,101 +243889,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36050] = 38, + [37972] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4226), 1, - anon_sym_COLON, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, + STATE(2288), 1, + sym_comment, + ACTIONS(5102), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4897), 1, anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5104), 32, sym__ternary_qmark, - ACTIONS(5000), 1, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5024), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - STATE(2372), 1, - sym_type_arguments, - STATE(2408), 1, - sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, - sym_optional_chain, - STATE(7483), 1, - sym_type_annotation, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [36175] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [38031] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2409), 1, + STATE(2289), 1, sym_comment, - ACTIONS(5020), 13, + ACTIONS(5106), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254794,7 +243964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5022), 32, + ACTIONS(5108), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254827,14 +243997,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36234] = 5, + [38090] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2410), 1, + STATE(2290), 1, sym_comment, - ACTIONS(5020), 13, + ACTIONS(5110), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254848,7 +244018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5022), 32, + ACTIONS(5112), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -254881,184 +244051,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36293] = 34, + [38149] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(2411), 1, + STATE(2291), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(5102), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5026), 5, + ACTIONS(5104), 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_RBRACK, - [36410] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4226), 1, - anon_sym_COLON, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5028), 1, - anon_sym_RPAREN, - STATE(2372), 1, - sym_type_arguments, - STATE(2412), 1, - sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, - sym_optional_chain, - STATE(7439), 1, - sym_type_annotation, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [36535] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [38208] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2413), 1, + STATE(2292), 1, sym_comment, - ACTIONS(5016), 13, + ACTIONS(5106), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255072,7 +244126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5018), 32, + ACTIONS(5108), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -255105,14 +244159,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36594] = 5, + [38267] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2414), 1, + ACTIONS(4875), 1, + sym__automatic_semicolon, + STATE(2293), 1, sym_comment, - ACTIONS(5030), 13, + ACTIONS(2067), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255126,7 +244182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5032), 32, + ACTIONS(2095), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -255157,34 +244213,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [36653] = 8, + [38328] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4980), 1, - anon_sym_AMP, - ACTIONS(4982), 1, - anon_sym_PIPE, - ACTIONS(4984), 1, - anon_sym_extends, - STATE(2415), 1, + STATE(2294), 1, sym_comment, - ACTIONS(5034), 11, + ACTIONS(5110), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5036), 31, + ACTIONS(5112), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -255215,272 +244266,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [36718] = 34, + [38387] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(2416), 1, + ACTIONS(5118), 1, + anon_sym_extends, + STATE(2295), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(5114), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5038), 5, + ACTIONS(5116), 31, + sym__ternary_qmark, + anon_sym_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, - [36835] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4226), 1, - anon_sym_COLON, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5040), 1, - anon_sym_RPAREN, - STATE(2372), 1, - sym_type_arguments, - STATE(2417), 1, - sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, - sym_optional_chain, - STATE(7576), 1, - sym_type_annotation, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [36960] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4226), 1, - anon_sym_COLON, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5042), 1, - anon_sym_RPAREN, - STATE(2372), 1, - sym_type_arguments, - STATE(2418), 1, - sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, - sym_optional_chain, - STATE(7426), 1, - sym_type_annotation, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [37085] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [38448] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2419), 1, + ACTIONS(4885), 1, + anon_sym_LBRACK, + STATE(2296), 1, sym_comment, - ACTIONS(5044), 13, + ACTIONS(5120), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255494,7 +244346,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5046), 32, + ACTIONS(5122), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -255504,7 +244356,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -255527,14 +244378,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37144] = 5, + [38509] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2420), 1, + STATE(2297), 1, sym_comment, - ACTIONS(5048), 13, + ACTIONS(5124), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255548,7 +244399,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 32, + ACTIONS(5126), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -255581,14 +244432,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37203] = 5, + [38568] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2421), 1, + STATE(2298), 1, sym_comment, - ACTIONS(5044), 13, + ACTIONS(5128), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255602,7 +244453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5046), 32, + ACTIONS(5130), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -255635,14 +244486,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37262] = 5, + [38627] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5132), 1, + anon_sym_STAR, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, + anon_sym_COMMA, + ACTIONS(5139), 1, + anon_sym_RBRACE, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_async, + ACTIONS(5146), 1, + anon_sym_readonly, + STATE(2299), 1, + sym_comment, + STATE(3516), 1, + sym_override_modifier, + STATE(3892), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5148), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4376), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [38722] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2422), 1, + STATE(2300), 1, sym_comment, - ACTIONS(5048), 13, + ACTIONS(3228), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255656,7 +244579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 32, + ACTIONS(3518), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -255689,14 +244612,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37321] = 5, + [38781] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2423), 1, + STATE(2301), 1, sym_comment, - ACTIONS(5052), 13, + ACTIONS(5124), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255710,7 +244633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5054), 32, + ACTIONS(5126), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -255743,14 +244666,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37380] = 5, + [38840] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2424), 1, + STATE(2302), 1, sym_comment, - ACTIONS(5056), 13, + ACTIONS(5128), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255764,7 +244687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5058), 32, + ACTIONS(5130), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -255797,14 +244720,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37439] = 5, + [38899] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2425), 1, + STATE(2303), 1, sym_comment, - ACTIONS(5052), 13, + ACTIONS(5150), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255818,7 +244741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5054), 32, + ACTIONS(5152), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -255851,14 +244774,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37498] = 5, + [38958] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2426), 1, + STATE(2304), 1, sym_comment, - ACTIONS(5056), 13, + ACTIONS(5154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255872,7 +244795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5058), 32, + ACTIONS(5156), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -255905,14 +244828,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37557] = 5, + [39017] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2427), 1, + STATE(2305), 1, sym_comment, - ACTIONS(5060), 13, + ACTIONS(5158), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255926,7 +244849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5062), 32, + ACTIONS(5160), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -255959,14 +244882,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37616] = 5, + [39076] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2428), 1, + STATE(2306), 1, sym_comment, - ACTIONS(5064), 13, + ACTIONS(5162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255980,7 +244903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5066), 32, + ACTIONS(5164), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -256013,14 +244936,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37675] = 5, + [39135] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2429), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2307), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4946), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4944), 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, + [39234] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2308), 1, sym_comment, - ACTIONS(5068), 13, + ACTIONS(5166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256034,7 +245031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5070), 32, + ACTIONS(5168), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -256067,21 +245064,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37734] = 6, + [39293] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4980), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, anon_sym_AMP, - STATE(2430), 1, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2309), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5170), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [39410] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5176), 1, + anon_sym_QMARK, + ACTIONS(5178), 1, + anon_sym_extends, + STATE(2310), 1, sym_comment, - ACTIONS(5072), 12, + ACTIONS(5172), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -256089,7 +245172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5074), 32, + ACTIONS(5174), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -256097,7 +245180,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -256120,16 +245202,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [37795] = 5, + [39473] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2431), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2311), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5180), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [39590] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5132), 1, + anon_sym_STAR, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, + anon_sym_COMMA, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_async, + ACTIONS(5146), 1, + anon_sym_readonly, + ACTIONS(5182), 1, + anon_sym_RBRACE, + STATE(2312), 1, + sym_comment, + STATE(3516), 1, + sym_override_modifier, + STATE(3892), 1, + sym__property_name, + STATE(5868), 1, + aux_sym_object_repeat1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5148), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4376), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [39685] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2313), 1, sym_comment, - ACTIONS(5076), 13, + ACTIONS(3230), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256143,7 +245379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5078), 32, + ACTIONS(3508), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -256176,32 +245412,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37854] = 8, + [39744] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4980), 1, - anon_sym_AMP, - ACTIONS(4982), 1, - anon_sym_PIPE, - ACTIONS(4984), 1, - anon_sym_extends, - STATE(2432), 1, + STATE(2314), 1, sym_comment, - ACTIONS(5080), 11, + ACTIONS(3232), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5082), 31, + ACTIONS(3506), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -256232,17 +245464,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [37919] = 5, + [39803] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2433), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5185), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2315), 1, sym_comment, - ACTIONS(5080), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -256251,53 +245513,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5082), 32, + ACTIONS(4944), 18, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [37978] = 6, + [39890] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, anon_sym_DOT, - STATE(2434), 1, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2316), 1, sym_comment, - ACTIONS(5084), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -256306,105 +245579,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5086), 31, + ACTIONS(4944), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [38039] = 6, + [39975] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5091), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, anon_sym_DOT, - STATE(2435), 1, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2317), 1, sym_comment, - ACTIONS(5084), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5086), 31, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4946), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [38100] = 5, + [40078] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2436), 1, + STATE(2318), 1, sym_comment, - ACTIONS(5094), 13, + ACTIONS(5188), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256418,7 +245698,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5096), 32, + ACTIONS(5190), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -256451,152 +245731,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38159] = 6, + [40137] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5098), 1, - sym__automatic_semicolon, - STATE(2437), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2319), 1, sym_comment, - ACTIONS(2093), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2095), 31, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4946), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [38220] = 34, + [40238] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4218), 1, + anon_sym_COLON, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(2372), 1, + ACTIONS(5192), 1, + anon_sym_RPAREN, + STATE(2220), 1, sym_type_arguments, - STATE(2438), 1, + STATE(2320), 1, sym_comment, - STATE(6354), 1, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + STATE(7443), 1, + sym_type_annotation, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5100), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [38337] = 5, + [40363] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2439), 1, + STATE(2321), 1, sym_comment, - ACTIONS(5102), 13, + ACTIONS(4841), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256610,7 +245914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5104), 32, + ACTIONS(4843), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -256643,165 +245947,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38396] = 34, + [40422] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2440), 1, + STATE(2322), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5106), 5, + ACTIONS(5194), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [38513] = 19, + [40539] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4218), 1, + anon_sym_COLON, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4921), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + ACTIONS(5196), 1, + anon_sym_RPAREN, + STATE(2220), 1, sym_type_arguments, - STATE(2441), 1, + STATE(2323), 1, sym_comment, - STATE(6354), 1, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + STATE(7014), 1, + sym_type_annotation, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4903), 2, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4919), 2, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 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(4957), 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, + ACTIONS(4923), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [38600] = 5, + [40664] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2442), 1, + STATE(2324), 1, sym_comment, - ACTIONS(5108), 13, + ACTIONS(5176), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256815,7 +246138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5110), 32, + ACTIONS(5178), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -256848,14 +246171,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38659] = 5, + [40723] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2443), 1, + STATE(2325), 1, sym_comment, - ACTIONS(5112), 13, + ACTIONS(5198), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256869,7 +246192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5114), 32, + ACTIONS(5200), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -256902,14 +246225,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38718] = 5, + [40782] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2444), 1, + STATE(2326), 1, sym_comment, - ACTIONS(5116), 13, + ACTIONS(5202), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256923,7 +246246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5118), 32, + ACTIONS(5204), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -256956,14 +246279,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38777] = 5, + [40841] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2445), 1, + STATE(2327), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5017), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256977,7 +246300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5122), 32, + ACTIONS(5019), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257010,14 +246333,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38836] = 5, + [40900] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2446), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4946), 1, + anon_sym_BANG, + STATE(2220), 1, + sym_type_arguments, + STATE(2328), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 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, + [41007] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2329), 1, sym_comment, - ACTIONS(4929), 13, + ACTIONS(5154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257031,7 +246432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4931), 32, + ACTIONS(5156), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257064,140 +246465,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38895] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4937), 1, - anon_sym_STAR, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, - anon_sym_COMMA, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(4949), 1, - anon_sym_async, - ACTIONS(4951), 1, - anon_sym_readonly, - ACTIONS(5124), 1, - anon_sym_RBRACE, - STATE(2447), 1, - sym_comment, - STATE(3670), 1, - sym_override_modifier, - STATE(4017), 1, - sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4953), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4372), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [38990] = 5, + [41066] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2448), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4946), 1, + anon_sym_BANG, + STATE(2220), 1, + sym_type_arguments, + STATE(2330), 1, sym_comment, - ACTIONS(5120), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5122), 32, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [39049] = 5, + [41171] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2449), 1, + STATE(2331), 1, sym_comment, - ACTIONS(5127), 13, + ACTIONS(5206), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257211,7 +246563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5129), 32, + ACTIONS(5208), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257244,14 +246596,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39108] = 5, + [41230] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2450), 1, + STATE(2332), 1, sym_comment, - ACTIONS(5131), 13, + ACTIONS(5210), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257265,7 +246617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5133), 32, + ACTIONS(5212), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257298,14 +246650,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39167] = 5, + [41289] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2451), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2333), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5214), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [41406] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2334), 1, sym_comment, - ACTIONS(5135), 13, + ACTIONS(5216), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257319,7 +246754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5137), 32, + ACTIONS(5218), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257352,14 +246787,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39226] = 5, + [41465] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2452), 1, + STATE(2335), 1, sym_comment, - ACTIONS(5139), 13, + ACTIONS(5220), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257373,7 +246808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5141), 32, + ACTIONS(5222), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257406,28 +246841,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39285] = 5, + [41524] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2453), 1, + ACTIONS(4954), 1, + anon_sym_AMP, + ACTIONS(4956), 1, + anon_sym_PIPE, + ACTIONS(4958), 1, + anon_sym_extends, + STATE(2336), 1, sym_comment, - ACTIONS(3188), 13, + ACTIONS(5224), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3432), 32, + ACTIONS(5226), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257458,35 +246897,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [39344] = 14, + [41589] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5147), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2454), 1, + STATE(2337), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(5143), 12, + ACTIONS(5228), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257497,16 +246916,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5145), 23, + ACTIONS(5230), 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, @@ -257522,29 +246948,36 @@ 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, - [39421] = 5, + anon_sym_extends, + anon_sym_implements, + [41648] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2455), 1, + ACTIONS(4954), 1, + anon_sym_AMP, + ACTIONS(4956), 1, + anon_sym_PIPE, + ACTIONS(4958), 1, + anon_sym_extends, + STATE(2338), 1, sym_comment, - ACTIONS(5150), 13, + ACTIONS(5232), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 32, + ACTIONS(5234), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257575,128 +247008,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [39480] = 34, + [41713] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(2456), 1, + ACTIONS(4857), 1, + anon_sym_extends, + STATE(2339), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(5232), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5154), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [39597] = 18, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5160), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2457), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(5156), 11, - anon_sym_STAR, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -257705,15 +247029,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5158), 19, + ACTIONS(5234), 31, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -257727,32 +247059,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [39682] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [41774] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4980), 1, - anon_sym_AMP, - ACTIONS(4982), 1, - anon_sym_PIPE, - ACTIONS(4984), 1, - anon_sym_extends, - STATE(2458), 1, + STATE(2340), 1, sym_comment, - ACTIONS(5163), 11, + ACTIONS(5236), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 31, + ACTIONS(5238), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257783,17 +247116,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [39747] = 6, + [41833] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5171), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, anon_sym_LBRACK, - STATE(2459), 1, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2341), 1, sym_comment, - ACTIONS(5167), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257804,51 +247160,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5169), 31, + ACTIONS(4944), 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_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [39808] = 6, + [41914] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5177), 1, - anon_sym_extends, - STATE(2460), 1, + STATE(2342), 1, sym_comment, - ACTIONS(5173), 13, + ACTIONS(5240), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257862,7 +247204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5175), 31, + ACTIONS(5242), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257893,98 +247235,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [39869] = 34, + [41973] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2461), 1, + STATE(2343), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5179), 5, + ACTIONS(5244), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [39986] = 5, + [42090] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2462), 1, + STATE(2344), 1, sym_comment, - ACTIONS(4847), 13, + ACTIONS(5246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257998,7 +247341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4849), 32, + ACTIONS(5248), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258031,42 +247374,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40045] = 8, + [42149] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5171), 1, - anon_sym_LBRACK, - ACTIONS(5187), 1, - anon_sym_extends, - STATE(2463), 1, + ACTIONS(5250), 1, + anon_sym_LBRACE, + STATE(2345), 1, sym_comment, - ACTIONS(5185), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5181), 11, + STATE(2540), 1, + sym_statement_block, + ACTIONS(2057), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5183), 30, + ACTIONS(2061), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -258088,36 +247430,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40110] = 15, + [42212] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(5252), 1, anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5193), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2464), 1, + STATE(2346), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(5189), 12, + STATE(2540), 1, + sym_statement_block, + ACTIONS(2057), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258128,16 +247454,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 21, + ACTIONS(2061), 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, @@ -258151,33 +247482,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [40189] = 8, + anon_sym_implements, + [42277] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4980), 1, - anon_sym_AMP, - ACTIONS(4982), 1, - anon_sym_PIPE, - ACTIONS(4984), 1, - anon_sym_extends, - STATE(2465), 1, + ACTIONS(5258), 1, + anon_sym_DOT, + STATE(2347), 1, sym_comment, - ACTIONS(5196), 11, + ACTIONS(5254), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5198), 31, + ACTIONS(5256), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258189,7 +247522,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -258208,15 +247540,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [40254] = 5, + [42338] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2466), 1, + ACTIONS(5261), 1, + anon_sym_DOT, + STATE(2348), 1, sym_comment, - ACTIONS(5200), 13, + ACTIONS(5254), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258230,7 +247565,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5202), 32, + ACTIONS(5256), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258242,7 +247577,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -258263,14 +247597,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40313] = 5, + [42399] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2467), 1, + STATE(2349), 1, sym_comment, - ACTIONS(3192), 13, + ACTIONS(4877), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258284,7 +247618,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3434), 32, + ACTIONS(4879), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258317,14 +247651,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40372] = 5, + [42458] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2468), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2350), 1, sym_comment, - ACTIONS(5204), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5264), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [42575] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2351), 1, + sym_comment, + ACTIONS(5266), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258338,7 +247755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5206), 32, + ACTIONS(5268), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258371,22 +247788,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40431] = 9, + [42634] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4811), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4815), 1, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - STATE(2469), 1, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2352), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(2169), 13, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5270), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [42751] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2353), 1, + sym_comment, + ACTIONS(5162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258400,7 +247892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2171), 28, + ACTIONS(5164), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258410,7 +247902,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -258428,15 +247923,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [40498] = 5, + [42810] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2470), 1, + STATE(2354), 1, sym_comment, - ACTIONS(5208), 13, + ACTIONS(5246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258450,7 +247946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5210), 32, + ACTIONS(5248), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258483,269 +247979,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40557] = 34, + [42869] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2355), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5272), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [42986] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2471), 1, + STATE(2356), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5212), 5, + ACTIONS(5274), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [40674] = 34, + [43103] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, + anon_sym_QMARK_DOT, ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - STATE(2372), 1, + anon_sym_LT, + STATE(2220), 1, sym_type_arguments, - STATE(2472), 1, + STATE(2357), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5214), 5, + ACTIONS(4946), 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(4944), 17, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [40791] = 34, + 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, + [43194] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2473), 1, + STATE(2358), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5216), 5, + ACTIONS(5276), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [40908] = 8, + [43311] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4980), 1, + ACTIONS(4954), 1, anon_sym_AMP, - ACTIONS(4982), 1, + ACTIONS(4956), 1, anon_sym_PIPE, - ACTIONS(4984), 1, + ACTIONS(4958), 1, anon_sym_extends, - STATE(2474), 1, + STATE(2359), 1, sym_comment, - ACTIONS(5218), 11, + ACTIONS(5266), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258757,7 +248323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5220), 31, + ACTIONS(5268), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258789,32 +248355,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [40973] = 8, + [43376] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4980), 1, - anon_sym_AMP, - ACTIONS(4982), 1, - anon_sym_PIPE, - ACTIONS(4984), 1, - anon_sym_extends, - STATE(2475), 1, + STATE(2360), 1, sym_comment, - ACTIONS(5222), 11, + ACTIONS(5246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5224), 31, + ACTIONS(5248), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258845,22 +248407,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [41038] = 6, + [43435] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4980), 1, - anon_sym_AMP, - STATE(2476), 1, + STATE(2361), 1, sym_comment, - ACTIONS(5226), 12, + ACTIONS(5278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -258868,7 +248430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5228), 32, + ACTIONS(5280), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258901,86 +248463,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41099] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4937), 1, - anon_sym_STAR, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, - anon_sym_COMMA, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(4949), 1, - anon_sym_async, - ACTIONS(4951), 1, - anon_sym_readonly, - ACTIONS(5230), 1, - anon_sym_RBRACE, - STATE(2477), 1, - sym_comment, - STATE(3670), 1, - sym_override_modifier, - STATE(4017), 1, - sym__property_name, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4953), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4372), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [41194] = 5, + [43494] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2478), 1, + STATE(2362), 1, sym_comment, - ACTIONS(5233), 13, + ACTIONS(5282), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258994,7 +248484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5235), 32, + ACTIONS(5284), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259027,14 +248517,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41253] = 5, + [43553] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2479), 1, + STATE(2363), 1, sym_comment, - ACTIONS(5237), 13, + ACTIONS(5286), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259048,7 +248538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5239), 32, + ACTIONS(5288), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259081,97 +248571,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41312] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(2480), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5241), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [41429] = 5, + [43612] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2481), 1, + STATE(2364), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5290), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259185,7 +248592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5122), 32, + ACTIONS(5292), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259218,20 +248625,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41488] = 5, + [43671] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2482), 1, + ACTIONS(4954), 1, + anon_sym_AMP, + STATE(2365), 1, sym_comment, - ACTIONS(3196), 13, + ACTIONS(5294), 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, @@ -259239,7 +248647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3436), 32, + ACTIONS(5296), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259272,14 +248680,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41547] = 5, + [43732] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2483), 1, + ACTIONS(5250), 1, + anon_sym_LBRACE, + ACTIONS(5298), 1, + anon_sym_DOT, + STATE(2366), 1, sym_comment, - ACTIONS(5243), 13, + STATE(2540), 1, + sym_statement_block, + ACTIONS(2057), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259293,10 +248707,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5245), 32, + ACTIONS(2061), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -259305,7 +248718,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -259324,158 +248736,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [41606] = 6, + [43797] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5251), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, anon_sym_DOT, - STATE(2484), 1, - sym_comment, - ACTIONS(5247), 13, - anon_sym_STAR, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, anon_sym_GT_GT, + ACTIONS(4909), 1, anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2367), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5249), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5300), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [41667] = 38, + [43914] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4226), 1, + ACTIONS(4218), 1, anon_sym_COLON, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5253), 1, + ACTIONS(5302), 1, anon_sym_RPAREN, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2485), 1, + STATE(2368), 1, sym_comment, - STATE(4803), 1, + STATE(4631), 1, aux_sym_sequence_expression_repeat1, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - STATE(7300), 1, + STATE(6997), 1, sym_type_annotation, - ACTIONS(4877), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [41792] = 5, + [44039] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2486), 1, + STATE(2369), 1, sym_comment, - ACTIONS(3172), 13, + ACTIONS(5304), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259489,7 +248928,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3440), 32, + ACTIONS(5306), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259522,14 +248961,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41851] = 5, + [44098] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2487), 1, + ACTIONS(4229), 1, + anon_sym_EQ, + STATE(2370), 1, sym_comment, - ACTIONS(3224), 13, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259543,7 +248984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3442), 32, + ACTIONS(4141), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259574,40 +249015,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [41910] = 16, + [44159] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4218), 1, + anon_sym_COLON, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4907), 1, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4959), 1, + ACTIONS(4921), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + ACTIONS(5308), 1, + anon_sym_RPAREN, + STATE(2220), 1, sym_type_arguments, - STATE(2488), 1, + STATE(2371), 1, sym_comment, - STATE(6354), 1, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + STATE(7293), 1, + sym_type_annotation, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 12, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [44284] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2372), 1, + sym_comment, + ACTIONS(5162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259618,39 +249121,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 20, + ACTIONS(5164), 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, - [41991] = 6, + anon_sym_extends, + anon_sym_implements, + [44343] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4837), 1, - anon_sym_extends, - STATE(2489), 1, + STATE(2373), 1, sym_comment, - ACTIONS(5255), 13, + ACTIONS(4881), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259664,7 +249178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5257), 31, + ACTIONS(4883), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259695,33 +249209,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [42052] = 8, + [44402] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4980), 1, - anon_sym_AMP, - ACTIONS(4982), 1, - anon_sym_PIPE, - ACTIONS(4984), 1, - anon_sym_extends, - STATE(2490), 1, + STATE(2374), 1, sym_comment, - ACTIONS(5255), 11, + ACTIONS(5310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5257), 31, + ACTIONS(5312), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259752,119 +249263,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [42117] = 9, + [44461] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3432), 1, - anon_sym_extends, - STATE(2491), 1, - sym_comment, - ACTIONS(5259), 2, - anon_sym_COMMA, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(5262), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2069), 10, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(5185), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2375), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 8, 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_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 28, + ACTIONS(4944), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [42184] = 23, + [44548] = 23, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4937), 1, + ACTIONS(5132), 1, anon_sym_STAR, - ACTIONS(4939), 1, + ACTIONS(5134), 1, anon_sym_EQ, - ACTIONS(4941), 1, + ACTIONS(5136), 1, anon_sym_COMMA, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(4949), 1, + ACTIONS(5144), 1, anon_sym_async, - ACTIONS(4951), 1, + ACTIONS(5146), 1, anon_sym_readonly, - ACTIONS(5265), 1, + ACTIONS(5314), 1, anon_sym_RBRACE, - STATE(2492), 1, + STATE(2376), 1, sym_comment, - STATE(3670), 1, + STATE(3516), 1, sym_override_modifier, - STATE(4017), 1, + STATE(3892), 1, sym__property_name, - STATE(6171), 1, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(6261), 1, aux_sym_object_repeat1, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4953), 2, + ACTIONS(5148), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(987), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4372), 18, + ACTIONS(4376), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -259883,332 +249405,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [42279] = 9, + [44643] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5239), 1, - anon_sym_extends, - ACTIONS(5270), 1, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5132), 1, + anon_sym_STAR, + ACTIONS(5134), 1, anon_sym_EQ, - STATE(2493), 1, - sym_comment, - ACTIONS(5274), 2, + ACTIONS(5136), 1, anon_sym_COMMA, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(5277), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5268), 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(5272), 28, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5144), 1, + anon_sym_async, + ACTIONS(5146), 1, + anon_sym_readonly, + ACTIONS(5317), 1, 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, - [42346] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2494), 1, + STATE(2377), 1, sym_comment, - ACTIONS(5208), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5210), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4121), 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(4125), 29, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, + STATE(3516), 1, + sym_override_modifier, + STATE(3892), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5148), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, anon_sym_LPAREN, - anon_sym_RPAREN, - 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, - anon_sym_implements, - [42409] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2495), 1, - sym_comment, - ACTIONS(2081), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2083), 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_QMARK, anon_sym_PIPE_RBRACE, - [42468] = 23, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2496), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4955), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4957), 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, - [42563] = 5, + ACTIONS(4376), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [44738] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2497), 1, + STATE(2378), 1, sym_comment, - ACTIONS(2195), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(5029), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2197), 32, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5031), 3, 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, - [42622] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2498), 1, - sym_comment, - ACTIONS(5280), 13, + anon_sym_extends, + ACTIONS(4137), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5282), 32, + ACTIONS(4141), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -260229,97 +249532,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [42681] = 6, + [44801] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5171), 1, - anon_sym_LBRACK, - STATE(2499), 1, + ACTIONS(5003), 1, + anon_sym_extends, + ACTIONS(5322), 1, + anon_sym_EQ, + STATE(2379), 1, sym_comment, - ACTIONS(5185), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(5326), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5329), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5187), 31, - sym__ternary_qmark, - anon_sym_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, - [42742] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4871), 1, - sym__automatic_semicolon, - STATE(2500), 1, - sym_comment, - ACTIONS(2067), 13, + ACTIONS(5320), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 31, + ACTIONS(5324), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -260341,14 +249591,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [42803] = 5, + [44868] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2501), 1, + STATE(2380), 1, sym_comment, - ACTIONS(5185), 13, + ACTIONS(5332), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260362,7 +249612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5187), 32, + ACTIONS(5334), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260395,93 +249645,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42862] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4955), 1, - anon_sym_BANG, - STATE(2372), 1, - sym_type_arguments, - STATE(2502), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 9, - sym__ternary_qmark, - anon_sym_as, + [44927] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5132), 1, + anon_sym_STAR, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, anon_sym_COMMA, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_async, + ACTIONS(5146), 1, + anon_sym_readonly, + ACTIONS(5336), 1, anon_sym_RBRACE, - anon_sym_RPAREN, + STATE(2381), 1, + sym_comment, + STATE(3516), 1, + sym_override_modifier, + STATE(3892), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5148), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [42971] = 5, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4376), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [45022] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2503), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + STATE(2382), 1, sym_comment, - ACTIONS(4859), 13, + STATE(2444), 1, + sym_arguments, + ACTIONS(5339), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260495,13 +249742,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4861), 32, + ACTIONS(5341), 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, @@ -260526,40 +249772,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [43030] = 5, + [45085] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2071), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2504), 1, + ACTIONS(3570), 1, + anon_sym_extends, + STATE(2383), 1, sym_comment, - ACTIONS(4925), 13, + ACTIONS(5343), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5346), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2069), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 32, + ACTIONS(2075), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -260580,16 +249830,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [43089] = 5, + [45152] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2505), 1, + STATE(2384), 1, sym_comment, - ACTIONS(5284), 13, + ACTIONS(5349), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260603,7 +249852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5286), 32, + ACTIONS(5351), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260636,14 +249885,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43148] = 5, + [45211] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2506), 1, + STATE(2385), 1, sym_comment, - ACTIONS(5288), 13, + ACTIONS(5353), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260657,7 +249906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5290), 32, + ACTIONS(5355), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260690,14 +249939,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43207] = 5, + [45270] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2507), 1, + STATE(2386), 1, sym_comment, - ACTIONS(4835), 13, + ACTIONS(5357), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260711,7 +249960,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4837), 32, + ACTIONS(5359), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260744,14 +249993,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43266] = 5, + [45329] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2508), 1, + ACTIONS(5361), 1, + sym__automatic_semicolon, + STATE(2387), 1, sym_comment, - ACTIONS(5292), 13, + ACTIONS(2111), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260765,7 +250016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5294), 32, + ACTIONS(2115), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260796,204 +250047,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [43325] = 34, + [45390] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(2509), 1, + STATE(2388), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(5363), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5296), 5, + ACTIONS(5365), 31, + sym__ternary_qmark, + anon_sym_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, - [43442] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4226), 1, - anon_sym_COLON, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5298), 1, - anon_sym_RPAREN, - STATE(2372), 1, - sym_type_arguments, - STATE(2510), 1, - sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, - sym_optional_chain, - STATE(7568), 1, - sym_type_annotation, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [43567] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [45448] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4980), 1, - anon_sym_AMP, - ACTIONS(4982), 1, - anon_sym_PIPE, - ACTIONS(4984), 1, - anon_sym_extends, - STATE(2511), 1, + STATE(2389), 1, sym_comment, - ACTIONS(5300), 11, + ACTIONS(5367), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 31, + ACTIONS(5369), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261025,14 +250154,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [43632] = 5, + [45506] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(5371), 1, + anon_sym_STAR, + ACTIONS(5373), 1, + anon_sym_LBRACE, + ACTIONS(5375), 1, + anon_sym_async, + ACTIONS(5377), 1, + anon_sym_readonly, + ACTIONS(5381), 1, + sym__automatic_semicolon, + STATE(2390), 1, + sym_comment, + STATE(3418), 1, + sym_statement_block, + STATE(3523), 1, + sym_override_modifier, + STATE(3819), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5379), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 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(4376), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [45594] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2512), 1, + STATE(2391), 1, sym_comment, - ACTIONS(4925), 13, + ACTIONS(5384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261046,7 +250243,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 32, + ACTIONS(5386), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261077,103 +250274,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [43691] = 34, + [45652] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(5402), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(5404), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(5406), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(5410), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(5412), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(5414), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(5418), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(5420), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(5422), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(5430), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(5438), 1, sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(2513), 1, + STATE(2392), 1, sym_comment, - STATE(6354), 1, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(5388), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(5396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(5408), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(5416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(5426), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(5428), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(5424), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5304), 5, + ACTIONS(5180), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [45768] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5132), 1, + anon_sym_STAR, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, anon_sym_COMMA, + ACTIONS(5336), 1, anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(2393), 1, + sym_comment, + STATE(4736), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5442), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, - [43808] = 7, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [45854] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5135), 1, - anon_sym_QMARK, - ACTIONS(5137), 1, - anon_sym_extends, - STATE(2514), 1, + STATE(2394), 1, sym_comment, - ACTIONS(5306), 13, + ACTIONS(2145), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261187,17 +250445,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 30, + ACTIONS(2147), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -261217,15 +250476,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [43871] = 5, + anon_sym_PIPE_RBRACE, + [45912] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5132), 1, + anon_sym_STAR, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, + anon_sym_COMMA, + ACTIONS(5144), 1, + anon_sym_async, + ACTIONS(5336), 1, + anon_sym_RBRACE, + ACTIONS(5444), 1, + anon_sym_LBRACK, + STATE(2395), 1, + sym_comment, + STATE(3892), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5148), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4376), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [46000] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2515), 1, + STATE(2396), 1, sym_comment, - ACTIONS(5163), 13, + ACTIONS(5446), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261239,7 +250566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 32, + ACTIONS(5448), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261270,18 +250597,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [43930] = 6, + [46058] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4222), 1, - anon_sym_EQ, - STATE(2516), 1, + STATE(2397), 1, sym_comment, - ACTIONS(4121), 13, + ACTIONS(5450), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261295,7 +250619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 31, + ACTIONS(5452), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261327,95 +250651,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [43991] = 28, + [46116] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4893), 1, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, + anon_sym_AMP_AMP, + ACTIONS(5460), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(4955), 1, - anon_sym_BANG, - STATE(2372), 1, - sym_type_arguments, - STATE(2517), 1, + ACTIONS(5486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5488), 1, + sym__ternary_qmark, + STATE(2398), 1, sym_comment, - STATE(6354), 1, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 11, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5276), 4, + sym__automatic_semicolon, 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, - [44096] = 7, + anon_sym_SEMI, + [46232] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5310), 1, - anon_sym_LBRACE, - STATE(2518), 1, + STATE(2399), 1, sym_comment, - STATE(2562), 1, - sym_statement_block, - ACTIONS(2055), 13, + ACTIONS(5490), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261429,9 +250754,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2059), 30, + ACTIONS(5492), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -261460,77 +250786,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [44159] = 8, + [46290] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5310), 1, - anon_sym_LBRACE, - ACTIONS(5312), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, anon_sym_DOT, - STATE(2519), 1, + ACTIONS(5406), 1, + anon_sym_GT_GT, + ACTIONS(5410), 1, + anon_sym_AMP, + ACTIONS(5412), 1, + anon_sym_CARET, + ACTIONS(5418), 1, + anon_sym_PERCENT, + ACTIONS(5420), 1, + anon_sym_STAR_STAR, + ACTIONS(5422), 1, + anon_sym_LT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + STATE(2400), 1, sym_comment, - STATE(2562), 1, - sym_statement_block, - ACTIONS(2055), 13, - anon_sym_STAR, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(4946), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5388), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5396), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5408), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5416), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5426), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2059), 29, + ACTIONS(5428), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5424), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 10, + sym__automatic_semicolon, 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_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, - anon_sym_implements, - [44224] = 8, + [46392] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5310), 1, - anon_sym_LBRACE, - ACTIONS(5314), 1, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, anon_sym_DOT, - STATE(2520), 1, + ACTIONS(5494), 1, + anon_sym_QMARK_DOT, + ACTIONS(5496), 1, + anon_sym_LT, + STATE(2401), 1, sym_comment, - STATE(2562), 1, - sym_statement_block, - ACTIONS(2055), 13, + STATE(2869), 1, + sym_type_arguments, + STATE(3016), 1, + sym_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(4797), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261541,21 +250895,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2059), 29, + ACTIONS(4799), 24, + sym__automatic_semicolon, 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_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -261573,123 +250922,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [44289] = 5, + [46466] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2521), 1, - sym_comment, - ACTIONS(5316), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5318), 32, - sym__ternary_qmark, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5398), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5400), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5462), 1, + anon_sym_GT_GT, + ACTIONS(5466), 1, + anon_sym_AMP, + ACTIONS(5468), 1, anon_sym_CARET, + ACTIONS(5470), 1, + anon_sym_PIPE, + ACTIONS(5474), 1, anon_sym_PERCENT, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5478), 1, + anon_sym_LT, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5488), 1, + sym__ternary_qmark, + ACTIONS(5498), 1, + anon_sym_COMMA, + STATE(2402), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5591), 1, + aux_sym_sequence_expression_repeat1, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [44348] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2522), 1, - sym_comment, - ACTIONS(5320), 13, + ACTIONS(5454), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5464), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5322), 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, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5500), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5480), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [44407] = 5, + [46586] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2523), 1, + STATE(2403), 1, sym_comment, - ACTIONS(5324), 13, + ACTIONS(5502), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261703,7 +251027,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5326), 32, + ACTIONS(5504), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261734,16 +251058,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [44466] = 5, + [46644] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2524), 1, + STATE(2404), 1, sym_comment, - ACTIONS(5328), 13, + ACTIONS(5506), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261757,7 +251080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5330), 32, + ACTIONS(5508), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261788,16 +251111,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [44525] = 5, + [46702] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2525), 1, + STATE(2405), 1, sym_comment, - ACTIONS(5332), 13, + ACTIONS(5510), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261811,7 +251133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5334), 32, + ACTIONS(5512), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261842,71 +251164,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [44584] = 5, + [46760] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2526), 1, - sym_comment, - ACTIONS(5332), 13, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5132), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5334), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, anon_sym_COMMA, + ACTIONS(5144), 1, + anon_sym_async, + ACTIONS(5317), 1, anon_sym_RBRACE, + ACTIONS(5444), 1, + anon_sym_LBRACK, + STATE(2406), 1, + sym_comment, + STATE(3892), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5148), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4376), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [46848] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5400), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5462), 1, + anon_sym_GT_GT, + ACTIONS(5466), 1, + anon_sym_AMP, + ACTIONS(5468), 1, anon_sym_CARET, + ACTIONS(5470), 1, + anon_sym_PIPE, + ACTIONS(5474), 1, anon_sym_PERCENT, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5478), 1, + anon_sym_LT, + ACTIONS(5486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5488), 1, + sym__ternary_qmark, + STATE(2407), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5456), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5464), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5472), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5482), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5480), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [44643] = 5, + ACTIONS(5270), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [46964] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2527), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5418), 1, + anon_sym_PERCENT, + ACTIONS(5420), 1, + anon_sym_STAR_STAR, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5514), 1, + anon_sym_LT, + STATE(2408), 1, sym_comment, - ACTIONS(5336), 13, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5388), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -261915,162 +251360,237 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5338), 32, + ACTIONS(4944), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [44702] = 5, + [47048] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2528), 1, - sym_comment, - ACTIONS(5336), 13, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5132), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5338), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, anon_sym_COMMA, + ACTIONS(5144), 1, + anon_sym_async, + ACTIONS(5314), 1, anon_sym_RBRACE, + ACTIONS(5444), 1, + anon_sym_LBRACK, + STATE(2409), 1, + sym_comment, + STATE(3892), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5148), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4376), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [47136] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5400), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, + ACTIONS(5462), 1, + anon_sym_GT_GT, + ACTIONS(5466), 1, + anon_sym_AMP, + ACTIONS(5468), 1, + anon_sym_CARET, + ACTIONS(5470), 1, + anon_sym_PIPE, + ACTIONS(5474), 1, + anon_sym_PERCENT, + ACTIONS(5476), 1, + anon_sym_STAR_STAR, + ACTIONS(5478), 1, + anon_sym_LT, + ACTIONS(5486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5488), 1, + sym__ternary_qmark, + STATE(2410), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5456), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5472), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5482), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5480), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [44761] = 23, + ACTIONS(4960), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [47252] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4937), 1, + ACTIONS(5132), 1, anon_sym_STAR, - ACTIONS(4939), 1, + ACTIONS(5134), 1, anon_sym_EQ, - ACTIONS(4941), 1, + ACTIONS(5136), 1, anon_sym_COMMA, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(4949), 1, - anon_sym_async, - ACTIONS(4951), 1, - anon_sym_readonly, - ACTIONS(5340), 1, + ACTIONS(5317), 1, anon_sym_RBRACE, - STATE(2529), 1, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(2411), 1, sym_comment, - STATE(3670), 1, - sym_override_modifier, - STATE(4017), 1, + STATE(4736), 1, sym__property_name, - STATE(6171), 1, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(6261), 1, aux_sym_object_repeat1, - ACTIONS(3894), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(4953), 2, + ACTIONS(5442), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(987), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4372), 18, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -262078,92 +251598,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [44856] = 5, + [47338] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2530), 1, - sym_comment, - ACTIONS(5343), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5345), 32, - sym__ternary_qmark, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5398), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5400), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5462), 1, + anon_sym_GT_GT, + ACTIONS(5466), 1, + anon_sym_AMP, + ACTIONS(5468), 1, anon_sym_CARET, + ACTIONS(5470), 1, + anon_sym_PIPE, + ACTIONS(5474), 1, anon_sym_PERCENT, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5478), 1, + anon_sym_LT, + ACTIONS(5486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5488), 1, + sym__ternary_qmark, + ACTIONS(5498), 1, + anon_sym_COMMA, + STATE(2412), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5591), 1, + aux_sym_sequence_expression_repeat1, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5456), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5464), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5472), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5482), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5517), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5480), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [44915] = 5, + [47458] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2531), 1, + ACTIONS(5043), 1, + anon_sym_extends, + STATE(2413), 1, sym_comment, - ACTIONS(5347), 13, + ACTIONS(5523), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5526), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5519), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5349), 32, + ACTIONS(5521), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -262184,16 +251737,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [44974] = 5, + [47522] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2532), 1, + STATE(2414), 1, sym_comment, - ACTIONS(5351), 13, + ACTIONS(5529), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262207,7 +251759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5353), 32, + ACTIONS(5531), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262238,474 +251790,265 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [45033] = 38, + [47580] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4226), 1, - anon_sym_COLON, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(5488), 1, sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5355), 1, - anon_sym_RPAREN, - STATE(2372), 1, - sym_type_arguments, - STATE(2533), 1, + STATE(2415), 1, sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, sym_optional_chain, - STATE(7461), 1, - sym_type_annotation, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [45158] = 29, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4955), 1, - anon_sym_BANG, - STATE(2372), 1, - sym_type_arguments, - STATE(2534), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 10, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5272), 4, + sym__automatic_semicolon, 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, - [45265] = 38, + anon_sym_SEMI, + [47696] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4226), 1, - anon_sym_COLON, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(5488), 1, sym__ternary_qmark, - ACTIONS(5000), 1, + ACTIONS(5498), 1, anon_sym_COMMA, - ACTIONS(5357), 1, - anon_sym_RPAREN, - STATE(2372), 1, - sym_type_arguments, - STATE(2535), 1, + STATE(2416), 1, sym_comment, - STATE(4803), 1, + STATE(2627), 1, + sym_type_arguments, + STATE(5591), 1, aux_sym_sequence_expression_repeat1, - STATE(6354), 1, + STATE(5804), 1, sym_optional_chain, - STATE(7507), 1, - sym_type_annotation, - ACTIONS(4877), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [45390] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(5533), 2, sym__automatic_semicolon, - ACTIONS(4937), 1, - anon_sym_STAR, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, - anon_sym_COMMA, - ACTIONS(4944), 1, - anon_sym_RBRACE, - ACTIONS(4949), 1, - anon_sym_async, - ACTIONS(5359), 1, - anon_sym_LBRACK, - STATE(2536), 1, - sym_comment, - STATE(4017), 1, - sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4953), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4372), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [45478] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2537), 1, - sym_comment, - ACTIONS(2169), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2171), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5480), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [45536] = 35, + [47816] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(5488), 1, sym__ternary_qmark, - STATE(2538), 1, + ACTIONS(5498), 1, + anon_sym_COMMA, + STATE(2417), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5591), 1, + aux_sym_sequence_expression_repeat1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5365), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5371), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5373), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5385), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, + ACTIONS(5535), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [45654] = 6, + [47936] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5419), 1, - anon_sym_EQ, - STATE(2539), 1, + STATE(2418), 1, sym_comment, - ACTIONS(5417), 13, + ACTIONS(5537), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262719,7 +252062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5421), 30, + ACTIONS(5539), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262727,6 +252070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -262750,14 +252094,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45714] = 5, + [47994] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2540), 1, + STATE(2419), 1, sym_comment, - ACTIONS(2203), 13, + ACTIONS(2145), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262771,18 +252115,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2205), 31, - sym__automatic_semicolon, + ACTIONS(2147), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -262802,17 +252146,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [45772] = 6, + anon_sym_implements, + [48052] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2541), 1, + STATE(2420), 1, sym_comment, - ACTIONS(2069), 13, + ACTIONS(5541), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262826,7 +252168,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 30, + ACTIONS(5543), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262834,6 +252176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -262857,16 +252200,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45832] = 6, + [48110] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5270), 1, - anon_sym_EQ, - STATE(2542), 1, + STATE(2421), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(5545), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262880,7 +252221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5272), 30, + ACTIONS(5547), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262888,6 +252229,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -262911,330 +252253,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45892] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5423), 1, - anon_sym_DOT, - ACTIONS(5425), 1, - anon_sym_LT, - ACTIONS(5427), 1, - anon_sym_is, - STATE(2543), 1, - sym_comment, - STATE(3035), 1, - sym_type_arguments, - ACTIONS(4817), 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(4203), 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, - [45958] = 35, + [48168] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5433), 1, - anon_sym_in, ACTIONS(5436), 1, - anon_sym_GT, - ACTIONS(5438), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(5440), 1, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5442), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5446), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5448), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(5450), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(5454), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5458), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(5466), 1, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - ACTIONS(5468), 1, + ACTIONS(5488), 1, sym__ternary_qmark, - STATE(2544), 1, + STATE(2422), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5429), 2, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5444), 2, + ACTIONS(5456), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5452), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5462), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5464), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5460), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5431), 4, + ACTIONS(5264), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [46076] = 36, + [48284] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, - anon_sym_GT_GT, - ACTIONS(5387), 1, - anon_sym_AMP, - ACTIONS(5389), 1, - anon_sym_CARET, - ACTIONS(5391), 1, - anon_sym_PIPE, - ACTIONS(5395), 1, - anon_sym_PERCENT, - ACTIONS(5397), 1, - anon_sym_STAR_STAR, - ACTIONS(5399), 1, - anon_sym_LT, - ACTIONS(5407), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5415), 1, - sym__ternary_qmark, - ACTIONS(5470), 1, - anon_sym_COMMA, - STATE(2545), 1, - sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(5598), 1, - aux_sym_sequence_expression_repeat1, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5371), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5385), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5393), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5403), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5405), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5472), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5401), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [46196] = 23, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5383), 1, - anon_sym_GT_GT, - ACTIONS(5395), 1, - anon_sym_PERCENT, - ACTIONS(5397), 1, - anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5549), 1, anon_sym_LT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - STATE(2546), 1, + STATE(2423), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5371), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5385), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5393), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5401), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4955), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4957), 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, - [46290] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5474), 1, - anon_sym_LT, - STATE(2547), 1, - sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5143), 12, + ACTIONS(4937), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -263245,12 +252382,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5145), 22, + ACTIONS(4939), 18, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -263265,17 +252401,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [46366] = 5, + [48368] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2548), 1, + STATE(2424), 1, sym_comment, - ACTIONS(2199), 13, + ACTIONS(5552), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263289,18 +252422,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2201), 31, - sym__automatic_semicolon, + ACTIONS(5554), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -263320,228 +252453,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [46424] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4937), 1, - anon_sym_STAR, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, - anon_sym_COMMA, - ACTIONS(5340), 1, - anon_sym_RBRACE, - ACTIONS(5477), 1, - anon_sym_LBRACK, - STATE(2549), 1, - sym_comment, - STATE(4890), 1, - sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5479), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [46510] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4937), 1, - anon_sym_STAR, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, - anon_sym_COMMA, - ACTIONS(4949), 1, - anon_sym_async, - ACTIONS(5340), 1, - anon_sym_RBRACE, - ACTIONS(5359), 1, - anon_sym_LBRACK, - STATE(2550), 1, - sym_comment, - STATE(4017), 1, - sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4953), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4372), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [46598] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, - anon_sym_GT_GT, - ACTIONS(5387), 1, - anon_sym_AMP, - ACTIONS(5389), 1, - anon_sym_CARET, - ACTIONS(5391), 1, - anon_sym_PIPE, - ACTIONS(5395), 1, - anon_sym_PERCENT, - ACTIONS(5397), 1, - anon_sym_STAR_STAR, - ACTIONS(5399), 1, - anon_sym_LT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - STATE(2551), 1, - sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5371), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5385), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5393), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5403), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5405), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5401), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 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, - [46706] = 5, + anon_sym_implements, + [48426] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2552), 1, + STATE(2425), 1, sym_comment, - ACTIONS(2259), 13, + ACTIONS(5556), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263555,7 +252475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2263), 31, + ACTIONS(5558), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -263587,14 +252507,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46764] = 5, + [48484] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2553), 1, + STATE(2426), 1, sym_comment, - ACTIONS(2215), 13, + ACTIONS(5560), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263608,7 +252528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2219), 31, + ACTIONS(5562), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -263640,80 +252560,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46822] = 18, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5395), 1, - anon_sym_PERCENT, - ACTIONS(5397), 1, - anon_sym_STAR_STAR, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5481), 1, - anon_sym_LT, - STATE(2554), 1, - sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4957), 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, - [46906] = 5, + [48542] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2555), 1, + STATE(2427), 1, sym_comment, - ACTIONS(2199), 13, + ACTIONS(5564), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263727,7 +252581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2201), 31, + ACTIONS(5566), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -263759,457 +252613,319 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46964] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, - anon_sym_AMP_AMP, - ACTIONS(5440), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5442), 1, - anon_sym_GT_GT, - ACTIONS(5446), 1, - anon_sym_AMP, - ACTIONS(5448), 1, - anon_sym_CARET, - ACTIONS(5450), 1, - anon_sym_PIPE, - ACTIONS(5454), 1, - anon_sym_PERCENT, - ACTIONS(5456), 1, - anon_sym_STAR_STAR, - ACTIONS(5458), 1, - anon_sym_LT, - ACTIONS(5466), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5468), 1, - sym__ternary_qmark, - STATE(2556), 1, - sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5429), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5444), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5452), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5462), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5464), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5460), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5106), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [47080] = 34, + [48600] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5438), 1, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(5440), 1, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5442), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5446), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5448), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(5450), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(5454), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5458), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(5466), 1, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - ACTIONS(5468), 1, + ACTIONS(5488), 1, sym__ternary_qmark, - STATE(2557), 1, + ACTIONS(5498), 1, + anon_sym_COMMA, + STATE(2428), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5591), 1, + aux_sym_sequence_expression_repeat1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5429), 2, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5436), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5444), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5452), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5462), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5464), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + ACTIONS(5568), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5460), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5100), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [47196] = 34, + [48720] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5438), 1, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(5440), 1, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5442), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5446), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5448), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(5450), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(5454), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5458), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(5466), 1, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - ACTIONS(5468), 1, + ACTIONS(5488), 1, sym__ternary_qmark, - STATE(2558), 1, + ACTIONS(5498), 1, + anon_sym_COMMA, + STATE(2429), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5591), 1, + aux_sym_sequence_expression_repeat1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5429), 2, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5436), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5444), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5452), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5462), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5464), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + ACTIONS(5570), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5460), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4881), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [47312] = 36, + [48840] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, + STATE(2430), 1, + sym_comment, + ACTIONS(5572), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(5387), 1, anon_sym_AMP, - ACTIONS(5389), 1, - anon_sym_CARET, - ACTIONS(5391), 1, anon_sym_PIPE, - ACTIONS(5395), 1, - anon_sym_PERCENT, - ACTIONS(5397), 1, - anon_sym_STAR_STAR, - ACTIONS(5399), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(5407), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5574), 31, sym__ternary_qmark, - ACTIONS(5470), 1, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(2559), 1, - sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(5598), 1, - aux_sym_sequence_expression_repeat1, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5371), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5385), 2, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5403), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5405), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5484), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5401), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [47432] = 36, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [48898] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(5488), 1, sym__ternary_qmark, - ACTIONS(5470), 1, - anon_sym_COMMA, - STATE(2560), 1, + STATE(2431), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(5598), 1, - aux_sym_sequence_expression_repeat1, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5486), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [47552] = 18, + ACTIONS(5244), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [49014] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5488), 1, - anon_sym_LT, - STATE(2561), 1, + STATE(2432), 1, sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5156), 11, + ACTIONS(5576), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -264218,14 +252934,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5158), 18, - sym__automatic_semicolon, + ACTIONS(5578), 31, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -264239,14 +252964,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [47636] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [49072] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2562), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5580), 1, + anon_sym_LT, + STATE(2433), 1, sym_comment, - ACTIONS(2203), 13, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(4978), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264257,23 +253006,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2205), 31, + ACTIONS(4980), 22, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -264289,17 +253030,82 @@ 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, - [47694] = 5, + [49148] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5132), 1, + anon_sym_STAR, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, + anon_sym_COMMA, + ACTIONS(5314), 1, + anon_sym_RBRACE, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(2434), 1, + sym_comment, + STATE(4736), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5442), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [49234] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2563), 1, + STATE(2435), 1, sym_comment, - ACTIONS(2093), 13, + ACTIONS(5552), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264313,18 +253119,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2095), 31, - sym__automatic_semicolon, + ACTIONS(5554), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -264344,15 +253150,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [47752] = 5, + anon_sym_implements, + [49292] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2564), 1, + STATE(2436), 1, sym_comment, - ACTIONS(2183), 13, + ACTIONS(5583), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264366,7 +253172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2187), 31, + ACTIONS(5194), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264398,36 +253204,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47810] = 15, + [49350] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5491), 1, + ACTIONS(5585), 1, anon_sym_LT, - STATE(2565), 1, + STATE(2437), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5189), 12, + ACTIONS(5053), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264440,12 +253246,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 20, + ACTIONS(5055), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -264461,14 +253267,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [47888] = 5, + [49428] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2566), 1, + STATE(2438), 1, sym_comment, - ACTIONS(2175), 13, + ACTIONS(5588), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264482,7 +253288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2179), 31, + ACTIONS(5590), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264514,44 +253320,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47946] = 19, + [49486] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5397), 1, + ACTIONS(5420), 1, anon_sym_STAR_STAR, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5481), 1, + ACTIONS(5514), 1, anon_sym_LT, - STATE(2567), 1, + STATE(2439), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 11, + ACTIONS(4946), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -264563,11 +253369,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 17, + ACTIONS(4944), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -264581,14 +253387,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [48032] = 5, + [49572] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2568), 1, + STATE(2440), 1, sym_comment, - ACTIONS(2129), 13, + ACTIONS(2237), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264602,7 +253408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2133), 31, + ACTIONS(2239), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264634,14 +253440,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48090] = 5, + [49630] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2569), 1, + STATE(2441), 1, sym_comment, - ACTIONS(2119), 13, + ACTIONS(5552), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264655,7 +253461,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2123), 31, + ACTIONS(5554), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264687,14 +253493,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48148] = 5, + [49688] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2570), 1, + STATE(2442), 1, sym_comment, - ACTIONS(2087), 13, + ACTIONS(5592), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264708,7 +253514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2091), 31, + ACTIONS(5594), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264740,16 +253546,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48206] = 6, + [49746] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5494), 1, - sym__automatic_semicolon, - STATE(2571), 1, + STATE(2443), 1, sym_comment, - ACTIONS(2093), 13, + ACTIONS(2233), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264763,17 +253567,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2095), 30, + ACTIONS(2235), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -264793,15 +253598,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [48266] = 5, + anon_sym_implements, + [49804] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2572), 1, + STATE(2444), 1, sym_comment, - ACTIONS(5496), 13, + ACTIONS(5596), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264815,7 +253620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5498), 31, + ACTIONS(5598), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264847,36 +253652,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48324] = 15, + [49862] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5500), 1, - anon_sym_LT, - STATE(2573), 1, + STATE(2445), 1, sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5189), 12, + ACTIONS(5600), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264887,15 +253670,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 20, - sym__automatic_semicolon, + ACTIONS(5602), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -264909,17 +253700,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [48402] = 6, + anon_sym_implements, + [49920] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5503), 1, - sym__automatic_semicolon, - STATE(2574), 1, + STATE(2446), 1, sym_comment, - ACTIONS(2067), 13, + ACTIONS(5604), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264933,17 +253726,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 30, + ACTIONS(5270), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -264963,263 +253757,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [48462] = 34, + anon_sym_implements, + [49978] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, - anon_sym_AMP_AMP, - ACTIONS(5440), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5442), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5446), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5448), 1, - anon_sym_CARET, - ACTIONS(5450), 1, - anon_sym_PIPE, - ACTIONS(5454), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5458), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(5466), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5468), 1, - sym__ternary_qmark, - STATE(2575), 1, + STATE(2447), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(4946), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5429), 2, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5436), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5444), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5452), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5462), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5464), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5460), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5038), 4, + ACTIONS(4944), 11, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [48578] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5379), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, - anon_sym_GT_GT, - ACTIONS(5387), 1, - anon_sym_AMP, - ACTIONS(5389), 1, anon_sym_CARET, - ACTIONS(5391), 1, - anon_sym_PIPE, - ACTIONS(5395), 1, - anon_sym_PERCENT, - ACTIONS(5397), 1, - anon_sym_STAR_STAR, - ACTIONS(5399), 1, - anon_sym_LT, - ACTIONS(5407), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, anon_sym_satisfies, - ACTIONS(5415), 1, - sym__ternary_qmark, - STATE(2576), 1, - sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5371), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5385), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5393), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5403), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5405), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5401), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5154), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [48694] = 36, + [50078] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(5488), 1, sym__ternary_qmark, - ACTIONS(5470), 1, + ACTIONS(5498), 1, anon_sym_COMMA, - STATE(2577), 1, + STATE(2448), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(5598), 1, + STATE(5591), 1, aux_sym_sequence_expression_repeat1, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5505), 2, + ACTIONS(5606), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [48814] = 5, + [50198] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2578), 1, + STATE(2449), 1, sym_comment, - ACTIONS(5507), 13, + ACTIONS(5608), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265233,7 +253937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5509), 31, + ACTIONS(5610), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -265265,96 +253969,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48872] = 34, + [50256] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, + STATE(2450), 1, + sym_comment, + ACTIONS(2215), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5369), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2219), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5375), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5377), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5379), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5381), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, - anon_sym_GT_GT, - ACTIONS(5387), 1, - anon_sym_AMP, - ACTIONS(5389), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5391), 1, - anon_sym_PIPE, - ACTIONS(5395), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, - anon_sym_LT, - ACTIONS(5407), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, - sym__ternary_qmark, - STATE(2579), 1, - sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5371), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5385), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5393), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5403), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5405), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5401), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5179), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [48988] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [50314] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2580), 1, + STATE(2451), 1, sym_comment, - ACTIONS(5511), 13, + ACTIONS(2227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265368,7 +254043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5513), 31, + ACTIONS(2231), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -265400,125 +254075,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [49046] = 34, + [50372] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, + STATE(2452), 1, + sym_comment, + ACTIONS(2243), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5369), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2247), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5375), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5377), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5379), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5381), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, - anon_sym_GT_GT, - ACTIONS(5387), 1, - anon_sym_AMP, - ACTIONS(5389), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5391), 1, - anon_sym_PIPE, - ACTIONS(5395), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, - anon_sym_LT, - ACTIONS(5407), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, - sym__ternary_qmark, - STATE(2581), 1, - sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5371), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5385), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5393), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5403), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5405), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5401), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5304), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [49162] = 18, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [50430] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5515), 1, - anon_sym_LT, - STATE(2582), 1, + STATE(2453), 1, sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5156), 11, + ACTIONS(5612), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -265527,14 +254146,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5158), 18, - sym__automatic_semicolon, + ACTIONS(5264), 31, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -265548,98 +254176,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [49246] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, - anon_sym_GT_GT, - ACTIONS(5387), 1, - anon_sym_AMP, - ACTIONS(5389), 1, - anon_sym_CARET, - ACTIONS(5391), 1, - anon_sym_PIPE, - ACTIONS(5395), 1, - anon_sym_PERCENT, - ACTIONS(5397), 1, - anon_sym_STAR_STAR, - ACTIONS(5399), 1, - anon_sym_LT, - ACTIONS(5407), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, - sym__ternary_qmark, - ACTIONS(5470), 1, - anon_sym_COMMA, - STATE(2583), 1, - sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(5598), 1, - aux_sym_sequence_expression_repeat1, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5371), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5385), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5393), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5403), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5405), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5401), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [49366] = 5, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [50488] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2584), 1, + STATE(2454), 1, sym_comment, - ACTIONS(5520), 13, + ACTIONS(2191), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265653,7 +254202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5522), 31, + ACTIONS(2195), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -265685,717 +254234,636 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [49424] = 36, + [50546] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(5488), 1, sym__ternary_qmark, - ACTIONS(5470), 1, - anon_sym_COMMA, - STATE(2585), 1, + STATE(2455), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(5598), 1, - aux_sym_sequence_expression_repeat1, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5524), 2, + ACTIONS(5614), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5616), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [49544] = 36, + [50664] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5365), 1, - anon_sym_RBRACE, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, - anon_sym_AMP, - ACTIONS(5389), 1, - anon_sym_CARET, - ACTIONS(5391), 1, - anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(5407), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, - sym__ternary_qmark, - ACTIONS(5526), 1, - anon_sym_COMMA, - STATE(2586), 1, + STATE(2456), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5529), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(4946), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [49664] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(4944), 11, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5379), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(5381), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, - anon_sym_GT_GT, - ACTIONS(5387), 1, - anon_sym_AMP, - ACTIONS(5389), 1, anon_sym_CARET, - ACTIONS(5391), 1, - anon_sym_PIPE, - ACTIONS(5395), 1, - anon_sym_PERCENT, - ACTIONS(5397), 1, - anon_sym_STAR_STAR, - ACTIONS(5399), 1, - anon_sym_LT, - ACTIONS(5407), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, anon_sym_satisfies, - ACTIONS(5415), 1, - sym__ternary_qmark, - STATE(2587), 1, + [50762] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2457), 1, sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5618), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5371), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5393), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5401), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4881), 4, - sym__automatic_semicolon, + ACTIONS(5620), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [49780] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5377), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5440), 1, anon_sym_PIPE_PIPE, - ACTIONS(5442), 1, - anon_sym_GT_GT, - ACTIONS(5446), 1, - anon_sym_AMP, - ACTIONS(5448), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5450), 1, - anon_sym_PIPE, - ACTIONS(5454), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, anon_sym_STAR_STAR, - ACTIONS(5458), 1, - anon_sym_LT, - ACTIONS(5466), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5468), 1, - sym__ternary_qmark, - STATE(2588), 1, - sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5429), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [50820] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2458), 1, + sym_comment, + ACTIONS(5622), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5444), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5452), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5462), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5464), 2, + ACTIONS(5624), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5460), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4986), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [49896] = 36, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [50878] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + STATE(2459), 1, + sym_comment, + ACTIONS(2163), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2165), 31, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5365), 1, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, + anon_sym_else, anon_sym_LPAREN, - ACTIONS(5375), 1, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5377), 1, anon_sym_DOT, - ACTIONS(5379), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5381), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, - anon_sym_GT_GT, - ACTIONS(5387), 1, - anon_sym_AMP, - ACTIONS(5389), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5391), 1, - anon_sym_PIPE, - ACTIONS(5395), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, - anon_sym_LT, - ACTIONS(5407), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(5413), 1, anon_sym_satisfies, - ACTIONS(5415), 1, - sym__ternary_qmark, - ACTIONS(5526), 1, - anon_sym_COMMA, - STATE(2589), 1, + anon_sym_PIPE_RBRACE, + [50936] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2460), 1, sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5100), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5361), 2, + ACTIONS(2163), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5371), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5393), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(2165), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5401), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [50016] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [50994] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, + ACTIONS(5402), 1, anon_sym_AMP_AMP, - ACTIONS(5440), 1, + ACTIONS(5404), 1, anon_sym_PIPE_PIPE, - ACTIONS(5442), 1, + ACTIONS(5406), 1, anon_sym_GT_GT, - ACTIONS(5446), 1, + ACTIONS(5410), 1, anon_sym_AMP, - ACTIONS(5448), 1, + ACTIONS(5412), 1, anon_sym_CARET, - ACTIONS(5450), 1, + ACTIONS(5414), 1, anon_sym_PIPE, - ACTIONS(5454), 1, + ACTIONS(5418), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, + ACTIONS(5420), 1, anon_sym_STAR_STAR, - ACTIONS(5458), 1, + ACTIONS(5422), 1, anon_sym_LT, - ACTIONS(5466), 1, + ACTIONS(5430), 1, anon_sym_QMARK_QMARK, - ACTIONS(5468), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5438), 1, sym__ternary_qmark, - STATE(2590), 1, + STATE(2461), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5429), 2, + ACTIONS(5388), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5436), 2, + ACTIONS(5396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5444), 2, + ACTIONS(5408), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5452), 2, + ACTIONS(5416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5462), 2, + ACTIONS(5426), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5464), 2, + ACTIONS(5428), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5460), 3, + ACTIONS(5424), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4970), 4, + ACTIONS(5300), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [50132] = 36, + [51110] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + STATE(2462), 1, + sym_comment, + ACTIONS(5626), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5628), 31, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5365), 1, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5377), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5379), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5381), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, - anon_sym_GT_GT, - ACTIONS(5387), 1, - anon_sym_AMP, - ACTIONS(5389), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5391), 1, - anon_sym_PIPE, - ACTIONS(5395), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, - anon_sym_LT, - ACTIONS(5407), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, - sym__ternary_qmark, - ACTIONS(5531), 1, - anon_sym_COMMA, - STATE(2591), 1, - sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(4986), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5371), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5385), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5393), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5403), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5405), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5401), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [50252] = 36, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [51168] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(5402), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(5404), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(5406), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5410), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(5412), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(5414), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5418), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5420), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5422), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(5430), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(5438), 1, sym__ternary_qmark, - ACTIONS(5534), 1, - anon_sym_COMMA, - ACTIONS(5537), 1, - anon_sym_RBRACE, - STATE(2592), 1, + STATE(2463), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4986), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5361), 2, + ACTIONS(5388), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5408), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5426), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5428), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(5424), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50372] = 21, + ACTIONS(5194), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [51284] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5442), 1, + ACTIONS(5406), 1, anon_sym_GT_GT, - ACTIONS(5454), 1, + ACTIONS(5418), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, + ACTIONS(5420), 1, anon_sym_STAR_STAR, - ACTIONS(5458), 1, + ACTIONS(5422), 1, anon_sym_LT, - STATE(2593), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + STATE(2464), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5429), 2, + ACTIONS(5388), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5444), 2, + ACTIONS(5408), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5452), 2, + ACTIONS(5416), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3121), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 7, + ACTIONS(4946), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -266403,7 +254871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 16, + ACTIONS(4944), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -266420,30 +254888,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [50462] = 13, + [51374] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5425), 1, - anon_sym_LT, - ACTIONS(5539), 1, - anon_sym_QMARK_DOT, - STATE(2594), 1, + ACTIONS(5632), 1, + anon_sym_EQ, + STATE(2465), 1, sym_comment, - STATE(2934), 1, - sym_type_arguments, - STATE(3181), 1, - sym_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(4807), 12, + ACTIONS(5630), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266454,16 +254908,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4809), 24, - sym__automatic_semicolon, + ACTIONS(5634), 30, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -266481,502 +254941,463 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [50536] = 16, + anon_sym_implements, + [51434] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5369), 1, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5456), 1, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, + anon_sym_AMP_AMP, + ACTIONS(5460), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5462), 1, + anon_sym_GT_GT, + ACTIONS(5466), 1, + anon_sym_AMP, + ACTIONS(5468), 1, + anon_sym_CARET, + ACTIONS(5470), 1, + anon_sym_PIPE, + ACTIONS(5474), 1, + anon_sym_PERCENT, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5541), 1, + ACTIONS(5478), 1, anon_sym_LT, - STATE(2595), 1, + ACTIONS(5486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5488), 1, + sym__ternary_qmark, + ACTIONS(5498), 1, + anon_sym_COMMA, + STATE(2466), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5591), 1, + aux_sym_sequence_expression_repeat1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 12, + ACTIONS(5454), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5464), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 19, + ACTIONS(5484), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5636), 2, 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, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5480), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [50616] = 28, + [51554] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5442), 1, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, + anon_sym_AMP_AMP, + ACTIONS(5460), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5446), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5448), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(5450), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(5454), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5458), 1, + ACTIONS(5478), 1, anon_sym_LT, - STATE(2596), 1, + ACTIONS(5486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5488), 1, + sym__ternary_qmark, + ACTIONS(5498), 1, + anon_sym_COMMA, + STATE(2467), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5591), 1, + aux_sym_sequence_expression_repeat1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5429), 2, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5436), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5444), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5452), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5462), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5464), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + ACTIONS(5638), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5460), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 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, - [50720] = 29, + [51674] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5438), 1, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(5442), 1, + ACTIONS(5460), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5446), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5448), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(5450), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(5454), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5458), 1, + ACTIONS(5478), 1, anon_sym_LT, - STATE(2597), 1, + ACTIONS(5486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5488), 1, + sym__ternary_qmark, + ACTIONS(5640), 1, + anon_sym_COMMA, + ACTIONS(5643), 1, + anon_sym_RBRACE, + STATE(2468), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(5300), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5429), 2, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5436), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5444), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5452), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5462), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5464), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5460), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 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, - [50826] = 19, + [51794] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5369), 1, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5454), 1, - anon_sym_PERCENT, - ACTIONS(5456), 1, - anon_sym_STAR_STAR, - ACTIONS(5541), 1, - anon_sym_LT, - STATE(2598), 1, - sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5429), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5452), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4957), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, + ACTIONS(5460), 1, 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, - [50912] = 25, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5442), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5454), 1, + ACTIONS(5466), 1, + anon_sym_AMP, + ACTIONS(5468), 1, + anon_sym_CARET, + ACTIONS(5470), 1, + anon_sym_PIPE, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5458), 1, + ACTIONS(5478), 1, anon_sym_LT, - STATE(2599), 1, + ACTIONS(5486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5488), 1, + sym__ternary_qmark, + ACTIONS(5614), 1, + anon_sym_RBRACE, + ACTIONS(5645), 1, + anon_sym_COMMA, + STATE(2469), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(5300), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5429), 2, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5436), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5444), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5452), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5462), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5464), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5460), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 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, - [51010] = 26, + [51914] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5442), 1, - anon_sym_GT_GT, - ACTIONS(5446), 1, - anon_sym_AMP, - ACTIONS(5454), 1, - anon_sym_PERCENT, - ACTIONS(5456), 1, - anon_sym_STAR_STAR, - ACTIONS(5458), 1, + ACTIONS(5496), 1, anon_sym_LT, - STATE(2600), 1, + ACTIONS(5648), 1, + anon_sym_DOT, + ACTIONS(5650), 1, + anon_sym_is, + STATE(2470), 1, sym_comment, - STATE(2739), 1, + STATE(2848), 1, sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5429), 2, + ACTIONS(4807), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5444), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5452), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5462), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5464), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5460), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 11, + ACTIONS(4202), 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, - [51110] = 27, + anon_sym_extends, + [51980] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5442), 1, + ACTIONS(5406), 1, anon_sym_GT_GT, - ACTIONS(5446), 1, + ACTIONS(5410), 1, anon_sym_AMP, - ACTIONS(5448), 1, - anon_sym_CARET, - ACTIONS(5454), 1, + ACTIONS(5418), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, + ACTIONS(5420), 1, anon_sym_STAR_STAR, - ACTIONS(5458), 1, + ACTIONS(5422), 1, anon_sym_LT, - STATE(2601), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + STATE(2471), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4955), 2, + ACTIONS(4946), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5429), 2, + ACTIONS(5388), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5436), 2, + ACTIONS(5396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5444), 2, + ACTIONS(5408), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5452), 2, + ACTIONS(5416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5462), 2, + ACTIONS(5426), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5464), 2, + ACTIONS(5428), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5460), 3, + ACTIONS(5424), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 10, + ACTIONS(4944), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -266985,82 +255406,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [51212] = 18, + [52080] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5369), 1, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5454), 1, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, + anon_sym_AMP_AMP, + ACTIONS(5460), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5462), 1, + anon_sym_GT_GT, + ACTIONS(5466), 1, + anon_sym_AMP, + ACTIONS(5468), 1, + anon_sym_CARET, + ACTIONS(5470), 1, + anon_sym_PIPE, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5541), 1, + ACTIONS(5478), 1, anon_sym_LT, - STATE(2602), 1, + ACTIONS(5486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5488), 1, + sym__ternary_qmark, + ACTIONS(5614), 1, + anon_sym_RBRACE, + ACTIONS(5652), 1, + anon_sym_COMMA, + STATE(2472), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(5170), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5429), 2, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 10, - anon_sym_BANG, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5464), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5480), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [51296] = 5, + [52200] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2603), 1, + STATE(2473), 1, sym_comment, - ACTIONS(2137), 13, + ACTIONS(5655), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267074,7 +255514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2141), 31, + ACTIONS(5244), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -267106,14 +255546,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [51354] = 5, + [52258] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2604), 1, + STATE(2474), 1, sym_comment, - ACTIONS(2151), 13, + ACTIONS(5632), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5657), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5630), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267127,18 +255576,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2155), 31, + ACTIONS(5634), 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, @@ -267158,15 +255601,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [51412] = 5, + [52320] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2605), 1, + STATE(2475), 1, sym_comment, - ACTIONS(2231), 13, + ACTIONS(5660), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267180,7 +255622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2235), 31, + ACTIONS(5662), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -267212,14 +255654,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [51470] = 5, + [52378] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2606), 1, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5496), 1, + anon_sym_LT, + ACTIONS(5664), 1, + anon_sym_DOT, + STATE(2476), 1, sym_comment, - ACTIONS(2239), 13, + STATE(2731), 1, + sym_type_arguments, + STATE(2732), 1, + sym_arguments, + ACTIONS(4813), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267230,22 +255682,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2243), 31, + ACTIONS(4815), 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_AMP_AMP, anon_sym_PIPE_PIPE, @@ -267264,470 +255711,766 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [51528] = 19, + anon_sym_extends, + [52446] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5456), 1, + ACTIONS(5458), 1, + anon_sym_AMP_AMP, + ACTIONS(5460), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5462), 1, + anon_sym_GT_GT, + ACTIONS(5466), 1, + anon_sym_AMP, + ACTIONS(5468), 1, + anon_sym_CARET, + ACTIONS(5470), 1, + anon_sym_PIPE, + ACTIONS(5474), 1, + anon_sym_PERCENT, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5541), 1, + ACTIONS(5478), 1, anon_sym_LT, - STATE(2607), 1, + ACTIONS(5486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5488), 1, + sym__ternary_qmark, + ACTIONS(5614), 1, + anon_sym_RBRACE, + ACTIONS(5652), 1, + anon_sym_COMMA, + STATE(2477), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 11, + ACTIONS(5454), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5464), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 17, + ACTIONS(5484), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5666), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_of, anon_sym_SEMI, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5480), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [52566] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5462), 1, + anon_sym_GT_GT, + ACTIONS(5466), 1, + anon_sym_AMP, + ACTIONS(5468), 1, anon_sym_CARET, + ACTIONS(5470), 1, + anon_sym_PIPE, + ACTIONS(5474), 1, anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(5476), 1, + anon_sym_STAR_STAR, + ACTIONS(5478), 1, + anon_sym_LT, + ACTIONS(5486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5488), 1, + sym__ternary_qmark, + ACTIONS(5498), 1, + anon_sym_COMMA, + STATE(2478), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5591), 1, + aux_sym_sequence_expression_repeat1, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5456), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5464), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5472), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5482), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5668), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5480), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [51614] = 23, + [52686] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5369), 1, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5442), 1, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, + anon_sym_AMP_AMP, + ACTIONS(5460), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5454), 1, + ACTIONS(5466), 1, + anon_sym_AMP, + ACTIONS(5468), 1, + anon_sym_CARET, + ACTIONS(5470), 1, + anon_sym_PIPE, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5458), 1, + ACTIONS(5478), 1, anon_sym_LT, - STATE(2608), 1, + ACTIONS(5486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5488), 1, + sym__ternary_qmark, + ACTIONS(5498), 1, + anon_sym_COMMA, + STATE(2479), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5591), 1, + aux_sym_sequence_expression_repeat1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5429), 2, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5436), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5444), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5452), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3121), 2, + ACTIONS(5482), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5484), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5670), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5460), 3, + ACTIONS(5480), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [52806] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2480), 1, + sym_comment, + ACTIONS(5672), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5674), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(4955), 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [52864] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2481), 1, + sym_comment, + ACTIONS(5676), 13, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 13, - sym__automatic_semicolon, + ACTIONS(5678), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [51708] = 30, + anon_sym_implements, + [52922] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5438), 1, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(5440), 1, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5442), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5446), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5448), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(5450), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(5454), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5458), 1, + ACTIONS(5478), 1, anon_sym_LT, - STATE(2609), 1, + ACTIONS(5486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5488), 1, + sym__ternary_qmark, + STATE(2482), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5429), 2, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5436), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5444), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5452), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5462), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5464), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5460), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 8, + ACTIONS(5274), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [51816] = 34, + [53038] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5438), 1, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(5440), 1, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5442), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5446), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5448), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(5450), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(5454), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5458), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(5466), 1, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - ACTIONS(5468), 1, + ACTIONS(5488), 1, sym__ternary_qmark, - STATE(2610), 1, + STATE(2483), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5429), 2, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5436), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5444), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5452), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5462), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5464), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5460), 3, + ACTIONS(5480), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5180), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [53154] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2484), 1, + sym_comment, + ACTIONS(2071), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5680), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2069), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2075), 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, - ACTIONS(5154), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [51932] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [53216] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5369), 1, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5383), 1, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5406), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5410), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(5412), 1, anon_sym_CARET, - ACTIONS(5395), 1, + ACTIONS(5414), 1, + anon_sym_PIPE, + ACTIONS(5418), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5420), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5422), 1, anon_sym_LT, - ACTIONS(5411), 1, + ACTIONS(5430), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5434), 1, anon_sym_BQUOTE, - STATE(2611), 1, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5438), 1, + sym__ternary_qmark, + STATE(2485), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5361), 2, + ACTIONS(5388), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5408), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5426), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5428), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(5424), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 10, + ACTIONS(5276), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [52034] = 34, + [53332] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, + ACTIONS(5402), 1, anon_sym_AMP_AMP, - ACTIONS(5440), 1, + ACTIONS(5404), 1, anon_sym_PIPE_PIPE, - ACTIONS(5442), 1, + ACTIONS(5406), 1, anon_sym_GT_GT, - ACTIONS(5446), 1, + ACTIONS(5410), 1, anon_sym_AMP, - ACTIONS(5448), 1, + ACTIONS(5412), 1, anon_sym_CARET, - ACTIONS(5450), 1, + ACTIONS(5414), 1, anon_sym_PIPE, - ACTIONS(5454), 1, + ACTIONS(5418), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, + ACTIONS(5420), 1, anon_sym_STAR_STAR, - ACTIONS(5458), 1, + ACTIONS(5422), 1, anon_sym_LT, - ACTIONS(5466), 1, + ACTIONS(5430), 1, anon_sym_QMARK_QMARK, - ACTIONS(5468), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5438), 1, sym__ternary_qmark, - STATE(2612), 1, + STATE(2486), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5429), 2, + ACTIONS(5388), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5436), 2, + ACTIONS(5396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5444), 2, + ACTIONS(5408), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5452), 2, + ACTIONS(5416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5462), 2, + ACTIONS(5426), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5464), 2, + ACTIONS(5428), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5460), 3, + ACTIONS(5424), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5179), 4, + ACTIONS(5274), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [52150] = 5, + [53448] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2613), 1, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5496), 1, + anon_sym_LT, + ACTIONS(5683), 1, + anon_sym_DOT, + STATE(2487), 1, sym_comment, - ACTIONS(5544), 13, + STATE(2735), 1, + sym_type_arguments, + STATE(2736), 1, + sym_arguments, + ACTIONS(4833), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267738,22 +256481,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5546), 31, + ACTIONS(4835), 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_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [53516] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5496), 1, + anon_sym_LT, + ACTIONS(5685), 1, anon_sym_DOT, + STATE(2488), 1, + sym_comment, + STATE(2737), 1, + sym_type_arguments, + STATE(2738), 1, + sym_arguments, + ACTIONS(4147), 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(4143), 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, @@ -267772,15 +256568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [52208] = 5, + anon_sym_extends, + [53584] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2614), 1, + STATE(2489), 1, sym_comment, - ACTIONS(5548), 13, + ACTIONS(2125), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267794,7 +256590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5550), 31, + ACTIONS(2127), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -267826,14 +256622,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [52266] = 5, + [53642] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2615), 1, + ACTIONS(5322), 1, + anon_sym_EQ, + STATE(2490), 1, sym_comment, - ACTIONS(2105), 13, + ACTIONS(5320), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267847,18 +256645,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2107), 31, - sym__automatic_semicolon, + ACTIONS(5324), 30, 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_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -267878,15 +256675,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [52324] = 5, + anon_sym_implements, + [53702] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2616), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5406), 1, + anon_sym_GT_GT, + ACTIONS(5418), 1, + anon_sym_PERCENT, + ACTIONS(5420), 1, + anon_sym_STAR_STAR, + ACTIONS(5422), 1, + anon_sym_LT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + STATE(2491), 1, sym_comment, - ACTIONS(5552), 13, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5388), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5408), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5416), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5426), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5428), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5424), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 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, + [53800] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5406), 1, + anon_sym_GT_GT, + ACTIONS(5410), 1, + anon_sym_AMP, + ACTIONS(5412), 1, + anon_sym_CARET, + ACTIONS(5414), 1, + anon_sym_PIPE, + ACTIONS(5418), 1, + anon_sym_PERCENT, + ACTIONS(5420), 1, + anon_sym_STAR_STAR, + ACTIONS(5422), 1, + anon_sym_LT, + ACTIONS(5430), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5438), 1, + sym__ternary_qmark, + STATE(2492), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5388), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5408), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5416), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5426), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5428), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5424), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5270), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [53916] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2493), 1, + sym_comment, + ACTIONS(5687), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267900,7 +256852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5554), 31, + ACTIONS(5689), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -267932,14 +256884,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [52382] = 5, + [53974] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2617), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5406), 1, + anon_sym_GT_GT, + ACTIONS(5410), 1, + anon_sym_AMP, + ACTIONS(5412), 1, + anon_sym_CARET, + ACTIONS(5414), 1, + anon_sym_PIPE, + ACTIONS(5418), 1, + anon_sym_PERCENT, + ACTIONS(5420), 1, + anon_sym_STAR_STAR, + ACTIONS(5422), 1, + anon_sym_LT, + ACTIONS(5430), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5438), 1, + sym__ternary_qmark, + STATE(2494), 1, sym_comment, - ACTIONS(5556), 13, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5388), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5408), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5416), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5426), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5428), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5424), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5264), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [54090] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2495), 1, + sym_comment, + ACTIONS(5691), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267953,7 +256987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5558), 31, + ACTIONS(4968), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -267985,14 +257019,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [52440] = 5, + [54148] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2618), 1, + STATE(2496), 1, sym_comment, - ACTIONS(5560), 13, + ACTIONS(5693), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268006,7 +257040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5562), 31, + ACTIONS(5695), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -268038,41 +257072,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [52498] = 8, + [54206] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5206), 1, - anon_sym_extends, - STATE(2619), 1, + STATE(2497), 1, sym_comment, - ACTIONS(5568), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5571), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5564), 10, + ACTIONS(5697), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5566), 28, + ACTIONS(5699), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -268094,296 +257125,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [52562] = 26, + [54264] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5369), 1, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5383), 1, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5406), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5410), 1, anon_sym_AMP, - ACTIONS(5395), 1, + ACTIONS(5412), 1, + anon_sym_CARET, + ACTIONS(5414), 1, + anon_sym_PIPE, + ACTIONS(5418), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5420), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5422), 1, anon_sym_LT, - ACTIONS(5411), 1, + ACTIONS(5430), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5434), 1, anon_sym_BQUOTE, - STATE(2620), 1, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5438), 1, + sym__ternary_qmark, + STATE(2498), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5361), 2, + ACTIONS(5388), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5408), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5426), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5428), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(5424), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 11, + ACTIONS(5244), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [52662] = 25, + [54380] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5369), 1, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5383), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, + anon_sym_AMP_AMP, + ACTIONS(5460), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5395), 1, + ACTIONS(5466), 1, + anon_sym_AMP, + ACTIONS(5468), 1, + anon_sym_CARET, + ACTIONS(5470), 1, + anon_sym_PIPE, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - STATE(2621), 1, + ACTIONS(5486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5488), 1, + sym__ternary_qmark, + STATE(2499), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5401), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 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, - [52760] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4937), 1, - anon_sym_STAR, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, - anon_sym_COMMA, - ACTIONS(4949), 1, - anon_sym_async, - ACTIONS(5265), 1, - anon_sym_RBRACE, - ACTIONS(5359), 1, - anon_sym_LBRACK, - STATE(2622), 1, - sym_comment, - STATE(4017), 1, - sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4953), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4372), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [52848] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4968), 4, sym__automatic_semicolon, - ACTIONS(4937), 1, - anon_sym_STAR, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, anon_sym_COMMA, - ACTIONS(5265), 1, anon_sym_RBRACE, - ACTIONS(5477), 1, - anon_sym_LBRACK, - STATE(2623), 1, - sym_comment, - STATE(4890), 1, - sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5479), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [52934] = 5, + [54496] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2624), 1, + ACTIONS(5701), 1, + sym__automatic_semicolon, + STATE(2500), 1, sym_comment, - ACTIONS(5574), 13, + ACTIONS(2067), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268397,18 +257312,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5576), 31, + ACTIONS(2095), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -268428,15 +257342,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [52992] = 5, + anon_sym_PIPE_RBRACE, + [54556] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2625), 1, + STATE(2501), 1, sym_comment, - ACTIONS(5578), 13, + ACTIONS(5703), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268450,7 +257364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5580), 31, + ACTIONS(5705), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -268482,14 +257396,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53050] = 5, + [54614] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2626), 1, + STATE(2502), 1, sym_comment, - ACTIONS(5582), 13, + ACTIONS(5707), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268503,7 +257417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5584), 31, + ACTIONS(5709), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -268535,173 +257449,412 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53108] = 5, + [54672] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2627), 1, - sym_comment, - ACTIONS(5574), 13, - anon_sym_STAR, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, + anon_sym_AMP_AMP, + ACTIONS(5460), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5462), 1, anon_sym_GT_GT, + ACTIONS(5466), 1, anon_sym_AMP, + ACTIONS(5468), 1, + anon_sym_CARET, + ACTIONS(5470), 1, anon_sym_PIPE, + ACTIONS(5474), 1, + anon_sym_PERCENT, + ACTIONS(5476), 1, + anon_sym_STAR_STAR, + ACTIONS(5478), 1, + anon_sym_LT, + ACTIONS(5486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5488), 1, + sym__ternary_qmark, + STATE(2503), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5456), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5464), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5576), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5484), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5480), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4985), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + [54788] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5398), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5400), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5462), 1, + anon_sym_GT_GT, + ACTIONS(5466), 1, + anon_sym_AMP, + ACTIONS(5468), 1, anon_sym_CARET, + ACTIONS(5470), 1, + anon_sym_PIPE, + ACTIONS(5474), 1, anon_sym_PERCENT, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5478), 1, + anon_sym_LT, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5488), 1, + sym__ternary_qmark, + STATE(2504), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [53166] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2628), 1, - sym_comment, - ACTIONS(5586), 13, + ACTIONS(5454), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5464), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5588), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5484), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5480), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4976), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + [54904] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5398), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5400), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5462), 1, + anon_sym_GT_GT, + ACTIONS(5466), 1, + anon_sym_AMP, + ACTIONS(5468), 1, anon_sym_CARET, + ACTIONS(5470), 1, + anon_sym_PIPE, + ACTIONS(5474), 1, anon_sym_PERCENT, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5478), 1, + anon_sym_LT, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5488), 1, + sym__ternary_qmark, + ACTIONS(5498), 1, + anon_sym_COMMA, + STATE(2505), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5591), 1, + aux_sym_sequence_expression_repeat1, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [53224] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2629), 1, - sym_comment, - ACTIONS(5574), 13, + ACTIONS(5454), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5464), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5576), 31, - sym__ternary_qmark, + ACTIONS(5484), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5711), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5480), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [55024] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5398), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5400), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5402), 1, anon_sym_AMP_AMP, + ACTIONS(5404), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5406), 1, + anon_sym_GT_GT, + ACTIONS(5410), 1, + anon_sym_AMP, + ACTIONS(5412), 1, anon_sym_CARET, + ACTIONS(5414), 1, + anon_sym_PIPE, + ACTIONS(5418), 1, anon_sym_PERCENT, + ACTIONS(5420), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5422), 1, + anon_sym_LT, + ACTIONS(5430), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5438), 1, + sym__ternary_qmark, + STATE(2506), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5388), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5408), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5416), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5426), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5428), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [53282] = 5, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5424), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5272), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [55140] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5132), 1, + anon_sym_STAR, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, + anon_sym_COMMA, + ACTIONS(5139), 1, + anon_sym_RBRACE, + ACTIONS(5144), 1, + anon_sym_async, + ACTIONS(5444), 1, + anon_sym_LBRACK, + STATE(2507), 1, + sym_comment, + STATE(3892), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5148), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4376), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [55228] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2630), 1, + STATE(2508), 1, sym_comment, - ACTIONS(5590), 13, + ACTIONS(5172), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268715,7 +257868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5592), 31, + ACTIONS(5174), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -268747,120 +257900,245 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53340] = 5, + [55286] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2631), 1, - sym_comment, - ACTIONS(2105), 13, - anon_sym_STAR, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, + anon_sym_AMP_AMP, + ACTIONS(5460), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5462), 1, anon_sym_GT_GT, + ACTIONS(5466), 1, anon_sym_AMP, + ACTIONS(5468), 1, + anon_sym_CARET, + ACTIONS(5470), 1, anon_sym_PIPE, + ACTIONS(5474), 1, + anon_sym_PERCENT, + ACTIONS(5476), 1, + anon_sym_STAR_STAR, + ACTIONS(5478), 1, + anon_sym_LT, + ACTIONS(5486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5488), 1, + sym__ternary_qmark, + STATE(2509), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5456), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5464), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2107), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5484), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5480), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5300), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [55402] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5132), 1, + anon_sym_STAR, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, anon_sym_COMMA, + ACTIONS(5139), 1, anon_sym_RBRACE, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(2510), 1, + sym_comment, + STATE(4736), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5442), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [55488] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5400), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5462), 1, + anon_sym_GT_GT, + ACTIONS(5466), 1, + anon_sym_AMP, + ACTIONS(5468), 1, anon_sym_CARET, + ACTIONS(5470), 1, + anon_sym_PIPE, + ACTIONS(5474), 1, anon_sym_PERCENT, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5478), 1, + anon_sym_LT, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5488), 1, + sym__ternary_qmark, + STATE(2511), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [53398] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2632), 1, - sym_comment, - ACTIONS(5594), 13, + ACTIONS(5454), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5464), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5596), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5480), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [53456] = 5, + ACTIONS(5170), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [55604] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2633), 1, + STATE(2512), 1, sym_comment, - ACTIONS(5598), 13, + ACTIONS(2105), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268874,7 +258152,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5600), 31, + ACTIONS(2109), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -268906,14 +258184,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53514] = 5, + [55662] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2634), 1, + STATE(2513), 1, sym_comment, - ACTIONS(5602), 13, + ACTIONS(5713), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268927,7 +258205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5216), 31, + ACTIONS(5715), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -268959,14 +258237,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53572] = 5, + [55720] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2635), 1, + STATE(2514), 1, sym_comment, - ACTIONS(5604), 13, + ACTIONS(2111), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268980,7 +258258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5214), 31, + ACTIONS(2115), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -269012,14 +258290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53630] = 5, + [55778] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2636), 1, + STATE(2515), 1, sym_comment, - ACTIONS(5606), 13, + ACTIONS(2199), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -269033,7 +258311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5608), 31, + ACTIONS(2203), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -269065,76 +258343,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53688] = 14, + [55836] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5369), 1, + ACTIONS(4946), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5610), 1, + ACTIONS(5458), 1, + anon_sym_AMP_AMP, + ACTIONS(5460), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5462), 1, + anon_sym_GT_GT, + ACTIONS(5466), 1, + anon_sym_AMP, + ACTIONS(5468), 1, + anon_sym_CARET, + ACTIONS(5470), 1, + anon_sym_PIPE, + ACTIONS(5474), 1, + anon_sym_PERCENT, + ACTIONS(5476), 1, + anon_sym_STAR_STAR, + ACTIONS(5478), 1, anon_sym_LT, - STATE(2637), 1, + STATE(2516), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5143), 12, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5464), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5145), 22, + ACTIONS(5484), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5480), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 8, 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, - [53764] = 5, + [55944] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2638), 1, + STATE(2517), 1, sym_comment, - ACTIONS(5613), 13, + ACTIONS(5717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -269148,7 +258442,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5212), 31, + ACTIONS(5719), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -269180,361 +258474,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53822] = 5, + [56002] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2639), 1, - sym_comment, - ACTIONS(5615), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5617), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5398), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5400), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(5406), 1, + anon_sym_GT_GT, + ACTIONS(5418), 1, anon_sym_PERCENT, + ACTIONS(5420), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [53880] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, + ACTIONS(5422), 1, anon_sym_LT, - ACTIONS(5619), 1, - anon_sym_DOT, - STATE(2640), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + STATE(2518), 1, sym_comment, - STATE(2911), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2912), 1, - sym_arguments, - ACTIONS(4823), 12, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5388), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5396), 2, anon_sym_in, 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(4825), 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, + ACTIONS(5408), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5416), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5424), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [53948] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2641), 1, - sym_comment, - ACTIONS(2093), 13, - anon_sym_STAR, + ACTIONS(4946), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2095), 31, + ACTIONS(4944), 13, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [54006] = 10, + [56096] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5369), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LT, - ACTIONS(5621), 1, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, anon_sym_DOT, - STATE(2642), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5462), 1, + anon_sym_GT_GT, + ACTIONS(5474), 1, + anon_sym_PERCENT, + ACTIONS(5476), 1, + anon_sym_STAR_STAR, + ACTIONS(5478), 1, + anon_sym_LT, + STATE(2519), 1, sym_comment, - STATE(2914), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2915), 1, - sym_arguments, - ACTIONS(4829), 12, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5456), 2, anon_sym_in, 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(4831), 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, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5472), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5480), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [54074] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5425), 1, - anon_sym_LT, - ACTIONS(5623), 1, - anon_sym_DOT, - STATE(2643), 1, - sym_comment, - STATE(2916), 1, - sym_type_arguments, - STATE(2917), 1, - sym_arguments, - ACTIONS(4131), 12, - anon_sym_STAR, + ACTIONS(4946), 5, anon_sym_BANG, - anon_sym_in, - 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(4127), 27, + ACTIONS(4944), 13, 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, - [54142] = 19, + [56190] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5369), 1, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5395), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, + anon_sym_AMP_AMP, + ACTIONS(5460), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5462), 1, + anon_sym_GT_GT, + ACTIONS(5466), 1, + anon_sym_AMP, + ACTIONS(5468), 1, + anon_sym_CARET, + ACTIONS(5470), 1, + anon_sym_PIPE, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5481), 1, + ACTIONS(5478), 1, anon_sym_LT, - STATE(2644), 1, + ACTIONS(5486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5488), 1, + sym__ternary_qmark, + STATE(2520), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5393), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 8, - anon_sym_BANG, + ACTIONS(5454), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4957), 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, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(5472), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5482), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5480), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [54228] = 5, + ACTIONS(5194), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [56306] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2645), 1, + STATE(2521), 1, sym_comment, - ACTIONS(2145), 13, + ACTIONS(2085), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -269548,7 +258719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2147), 31, + ACTIONS(2089), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -269580,14 +258751,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [54286] = 5, + [56364] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2646), 1, + STATE(2522), 1, sym_comment, - ACTIONS(5625), 13, + ACTIONS(2257), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -269601,7 +258772,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5627), 31, + ACTIONS(2261), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -269633,905 +258804,553 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [54344] = 29, + [56422] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(5383), 1, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - STATE(2647), 1, - sym_comment, - STATE(2739), 1, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(2220), 1, sym_type_arguments, - STATE(6093), 1, + STATE(2523), 1, + sym_comment, + STATE(6178), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3121), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5721), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [54450] = 34, + anon_sym_RPAREN, + anon_sym_RBRACK, + [56538] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(4946), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, + ACTIONS(5402), 1, anon_sym_AMP_AMP, - ACTIONS(5440), 1, + ACTIONS(5404), 1, anon_sym_PIPE_PIPE, - ACTIONS(5442), 1, + ACTIONS(5406), 1, anon_sym_GT_GT, - ACTIONS(5446), 1, + ACTIONS(5410), 1, anon_sym_AMP, - ACTIONS(5448), 1, + ACTIONS(5412), 1, anon_sym_CARET, - ACTIONS(5450), 1, + ACTIONS(5414), 1, anon_sym_PIPE, - ACTIONS(5454), 1, + ACTIONS(5418), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, + ACTIONS(5420), 1, anon_sym_STAR_STAR, - ACTIONS(5458), 1, + ACTIONS(5422), 1, anon_sym_LT, - ACTIONS(5466), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5468), 1, - sym__ternary_qmark, - STATE(2648), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + STATE(2524), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5429), 2, + ACTIONS(5388), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5436), 2, + ACTIONS(5396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5444), 2, + ACTIONS(5408), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5452), 2, + ACTIONS(5416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5462), 2, + ACTIONS(5426), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5464), 2, + ACTIONS(5428), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5460), 3, + ACTIONS(5424), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5212), 4, + ACTIONS(4944), 8, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [54566] = 34, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [56646] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, - anon_sym_AMP_AMP, - ACTIONS(5440), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5442), 1, - anon_sym_GT_GT, - ACTIONS(5446), 1, - anon_sym_AMP, - ACTIONS(5448), 1, - anon_sym_CARET, - ACTIONS(5450), 1, - anon_sym_PIPE, - ACTIONS(5454), 1, - anon_sym_PERCENT, - ACTIONS(5456), 1, - anon_sym_STAR_STAR, - ACTIONS(5458), 1, - anon_sym_LT, - ACTIONS(5466), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5468), 1, - sym__ternary_qmark, - STATE(2649), 1, + STATE(2525), 1, sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5429), 2, + ACTIONS(2125), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5444), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5452), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5462), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5464), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5460), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5214), 4, + ACTIONS(2127), 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, - [54682] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5440), 1, anon_sym_PIPE_PIPE, - ACTIONS(5442), 1, - anon_sym_GT_GT, - ACTIONS(5446), 1, - anon_sym_AMP, - ACTIONS(5448), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5450), 1, - anon_sym_PIPE, - ACTIONS(5454), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, anon_sym_STAR_STAR, - ACTIONS(5458), 1, - anon_sym_LT, - ACTIONS(5466), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5468), 1, - sym__ternary_qmark, - STATE(2650), 1, - sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5429), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5444), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5452), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5462), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5464), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5460), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5216), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [54798] = 28, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [56704] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5383), 1, - anon_sym_GT_GT, - ACTIONS(5387), 1, - anon_sym_AMP, - ACTIONS(5389), 1, - anon_sym_CARET, - ACTIONS(5391), 1, - anon_sym_PIPE, - ACTIONS(5395), 1, - anon_sym_PERCENT, - ACTIONS(5397), 1, - anon_sym_STAR_STAR, - ACTIONS(5399), 1, - anon_sym_LT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - STATE(2651), 1, + STATE(2526), 1, sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(2207), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5371), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5393), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5401), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 10, - sym__automatic_semicolon, + ACTIONS(2211), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [54902] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5377), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5440), 1, anon_sym_PIPE_PIPE, - ACTIONS(5442), 1, - anon_sym_GT_GT, - ACTIONS(5446), 1, - anon_sym_AMP, - ACTIONS(5448), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5450), 1, - anon_sym_PIPE, - ACTIONS(5454), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, anon_sym_STAR_STAR, - ACTIONS(5458), 1, - anon_sym_LT, - ACTIONS(5466), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5468), 1, - sym__ternary_qmark, - STATE(2652), 1, - sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5429), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5444), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5452), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5462), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5464), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5460), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5241), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [55018] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [56762] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, - anon_sym_AMP_AMP, - ACTIONS(5440), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5442), 1, - anon_sym_GT_GT, - ACTIONS(5446), 1, - anon_sym_AMP, - ACTIONS(5448), 1, - anon_sym_CARET, - ACTIONS(5450), 1, - anon_sym_PIPE, - ACTIONS(5454), 1, + ACTIONS(5418), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, + ACTIONS(5420), 1, anon_sym_STAR_STAR, - ACTIONS(5458), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5514), 1, anon_sym_LT, - ACTIONS(5466), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5468), 1, - sym__ternary_qmark, - STATE(2653), 1, + STATE(2527), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5429), 2, + ACTIONS(5388), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5444), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5452), 2, + ACTIONS(5416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5462), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5464), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5460), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5026), 4, + ACTIONS(4946), 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(4944), 18, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [55134] = 34, + 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, + [56848] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(4946), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(5402), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(5406), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5410), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(5412), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(5414), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5418), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5420), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5422), 1, anon_sym_LT, - ACTIONS(5407), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, - sym__ternary_qmark, - STATE(2654), 1, + STATE(2528), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5388), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5408), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5426), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5428), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(5424), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5106), 4, + ACTIONS(4944), 9, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [55250] = 34, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [56954] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, - anon_sym_GT_GT, - ACTIONS(5387), 1, - anon_sym_AMP, - ACTIONS(5389), 1, - anon_sym_CARET, - ACTIONS(5391), 1, - anon_sym_PIPE, - ACTIONS(5395), 1, - anon_sym_PERCENT, - ACTIONS(5397), 1, - anon_sym_STAR_STAR, - ACTIONS(5399), 1, - anon_sym_LT, - ACTIONS(5407), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, - sym__ternary_qmark, - STATE(2655), 1, + STATE(2529), 1, sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(2169), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5371), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5393), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5401), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5100), 4, - sym__automatic_semicolon, + ACTIONS(2173), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [55366] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5377), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5438), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5440), 1, anon_sym_PIPE_PIPE, - ACTIONS(5442), 1, - anon_sym_GT_GT, - ACTIONS(5446), 1, - anon_sym_AMP, - ACTIONS(5448), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5450), 1, - anon_sym_PIPE, - ACTIONS(5454), 1, anon_sym_PERCENT, - ACTIONS(5456), 1, anon_sym_STAR_STAR, - ACTIONS(5458), 1, - anon_sym_LT, - ACTIONS(5466), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5468), 1, - sym__ternary_qmark, - STATE(2656), 1, - sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5429), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5436), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5444), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5452), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5462), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5464), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5460), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5304), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [55482] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [57012] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4946), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(5406), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(5410), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(5412), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(5414), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(5418), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(5420), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(5422), 1, anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(2657), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + STATE(2530), 1, sym_comment, - STATE(6354), 1, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(5388), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(5396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(5408), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(5416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(5426), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(5428), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(5424), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5629), 4, + ACTIONS(4944), 10, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - [55598] = 5, + anon_sym_of, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [57116] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2658), 1, + STATE(2531), 1, sym_comment, - ACTIONS(2161), 13, + ACTIONS(5723), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270545,7 +259364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2165), 31, + ACTIONS(5725), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -270577,14 +259396,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [55656] = 5, + [57174] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2659), 1, + STATE(2532), 1, sym_comment, - ACTIONS(5631), 13, + ACTIONS(2221), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270598,7 +259417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5633), 31, + ACTIONS(2223), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -270630,151 +259449,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [55714] = 5, + [57232] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2660), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5462), 1, + anon_sym_GT_GT, + ACTIONS(5474), 1, + anon_sym_PERCENT, + ACTIONS(5476), 1, + anon_sym_STAR_STAR, + ACTIONS(5478), 1, + anon_sym_LT, + STATE(2533), 1, sym_comment, - ACTIONS(5635), 13, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5464), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5472), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5637), 31, + ACTIONS(4944), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [55772] = 36, + [57322] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(5402), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(5404), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(5406), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5410), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(5412), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(5414), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5418), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5420), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5422), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(5430), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(5438), 1, sym__ternary_qmark, - ACTIONS(5470), 1, - anon_sym_COMMA, - STATE(2661), 1, + STATE(2534), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(5598), 1, - aux_sym_sequence_expression_repeat1, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5388), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5408), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5426), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5428), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5639), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(5424), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55892] = 5, + ACTIONS(4976), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [57438] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2662), 1, + STATE(2535), 1, sym_comment, - ACTIONS(5641), 13, + ACTIONS(2175), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270788,18 +259621,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5643), 31, + ACTIONS(2177), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -270819,183 +259652,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [55950] = 36, + anon_sym_PIPE_RBRACE, + [57496] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(5402), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(5404), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(5406), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5410), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(5412), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(5414), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5418), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5420), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5422), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(5430), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(5438), 1, sym__ternary_qmark, - ACTIONS(5470), 1, - anon_sym_COMMA, - STATE(2663), 1, + STATE(2536), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(5598), 1, - aux_sym_sequence_expression_repeat1, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5388), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5408), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5426), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5428), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5645), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(5424), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56070] = 36, + ACTIONS(4968), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [57612] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(5402), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(5404), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(5406), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5410), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(5412), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(5414), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5418), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5420), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5422), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(5430), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(5438), 1, sym__ternary_qmark, - ACTIONS(5470), 1, - anon_sym_COMMA, - STATE(2664), 1, + STATE(2537), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(5598), 1, - aux_sym_sequence_expression_repeat1, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5388), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5408), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5426), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5428), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5647), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(5424), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [56190] = 5, + ACTIONS(5170), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [57728] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2665), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5727), 1, + anon_sym_LT, + STATE(2538), 1, sym_comment, - ACTIONS(5649), 13, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(4978), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271006,23 +259854,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5154), 31, + ACTIONS(4980), 22, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -271038,17 +259878,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_satisfies, + [57804] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5406), 1, + anon_sym_GT_GT, + ACTIONS(5410), 1, + anon_sym_AMP, + ACTIONS(5412), 1, + anon_sym_CARET, + ACTIONS(5414), 1, + anon_sym_PIPE, + ACTIONS(5418), 1, + anon_sym_PERCENT, + ACTIONS(5420), 1, + anon_sym_STAR_STAR, + ACTIONS(5422), 1, + anon_sym_LT, + ACTIONS(5430), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5434), 1, anon_sym_BQUOTE, + ACTIONS(5436), 1, anon_sym_satisfies, - anon_sym_implements, - [56248] = 5, + ACTIONS(5438), 1, + sym__ternary_qmark, + STATE(2539), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5388), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5396), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5408), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5416), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5426), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5428), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5424), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4985), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [57920] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2666), 1, + STATE(2540), 1, sym_comment, - ACTIONS(5651), 13, + ACTIONS(2175), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271062,7 +259982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5653), 31, + ACTIONS(2177), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -271094,14 +260014,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [56306] = 5, + [57978] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2667), 1, + STATE(2541), 1, sym_comment, - ACTIONS(5655), 13, + ACTIONS(5519), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271115,7 +260035,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5657), 31, + ACTIONS(5521), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -271147,98 +260067,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [56364] = 36, + [58036] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, - anon_sym_GT_GT, - ACTIONS(5387), 1, - anon_sym_AMP, - ACTIONS(5389), 1, - anon_sym_CARET, - ACTIONS(5391), 1, - anon_sym_PIPE, - ACTIONS(5395), 1, - anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5420), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, - anon_sym_LT, - ACTIONS(5407), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, - sym__ternary_qmark, - ACTIONS(5470), 1, - anon_sym_COMMA, - STATE(2668), 1, + ACTIONS(5514), 1, + anon_sym_LT, + STATE(2542), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(5598), 1, - aux_sym_sequence_expression_repeat1, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5371), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5393), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(4944), 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, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5659), 2, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [58116] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2543), 1, + sym_comment, + ACTIONS(2111), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2115), 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, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5401), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [56484] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [58174] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2669), 1, + ACTIONS(5730), 1, + sym__automatic_semicolon, + STATE(2544), 1, sym_comment, - ACTIONS(5661), 13, + ACTIONS(2111), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271252,18 +260207,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5663), 31, + ACTIONS(2115), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -271283,15 +260237,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [56542] = 5, + anon_sym_PIPE_RBRACE, + [58234] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2670), 1, + STATE(2545), 1, sym_comment, - ACTIONS(5665), 13, + ACTIONS(5732), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271305,7 +260259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5667), 31, + ACTIONS(5734), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -271337,96 +260291,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [56600] = 34, + [58292] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(5488), 1, sym__ternary_qmark, - STATE(2671), 1, + ACTIONS(5498), 1, + anon_sym_COMMA, + STATE(2546), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5591), 1, + aux_sym_sequence_expression_repeat1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, + ACTIONS(5736), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5038), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [56716] = 5, + [58412] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2672), 1, + STATE(2547), 1, sym_comment, - ACTIONS(2251), 13, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271440,18 +260396,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2253), 31, - sym__automatic_semicolon, + ACTIONS(4141), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -271471,42 +260427,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [56774] = 8, + anon_sym_implements, + [58470] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4861), 1, - anon_sym_extends, - STATE(2673), 1, + STATE(2548), 1, sym_comment, - ACTIONS(5669), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5672), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4121), 10, + ACTIONS(5738), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 28, + ACTIONS(4976), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -271528,41 +260481,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [56838] = 8, + [58528] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5286), 1, - anon_sym_extends, - STATE(2674), 1, + STATE(2549), 1, sym_comment, - ACTIONS(5675), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5678), 3, + ACTIONS(2221), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4121), 10, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2223), 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, + [58586] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2550), 1, + sym_comment, + ACTIONS(5740), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 28, + ACTIONS(5742), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -271584,67 +260587,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [56902] = 20, + [58644] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(5681), 1, + ACTIONS(5132), 1, anon_sym_STAR, - ACTIONS(5683), 1, - anon_sym_LBRACE, - ACTIONS(5685), 1, - anon_sym_async, - ACTIONS(5687), 1, - anon_sym_readonly, - STATE(2675), 1, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, + anon_sym_COMMA, + ACTIONS(5182), 1, + anon_sym_RBRACE, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(2551), 1, sym_comment, - STATE(3568), 1, - sym_statement_block, - STATE(3677), 1, - sym_override_modifier, - STATE(3951), 1, + STATE(4736), 1, sym__property_name, - ACTIONS(3894), 2, + STATE(5868), 1, + aux_sym_object_repeat1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(5689), 2, + ACTIONS(5442), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(987), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4372), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -271652,182 +260654,391 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [56990] = 36, + [58730] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, + STATE(2552), 1, + sym_comment, + ACTIONS(5322), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5744), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5320), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5369), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5324), 24, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5375), 1, + anon_sym_of, anon_sym_LBRACK, - ACTIONS(5377), 1, anon_sym_DOT, - ACTIONS(5379), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5381), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [58792] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2071), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2553), 1, + sym_comment, + ACTIONS(2069), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(5387), 1, anon_sym_AMP, - ACTIONS(5389), 1, - anon_sym_CARET, - ACTIONS(5391), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2075), 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, - ACTIONS(5397), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, - anon_sym_LT, - ACTIONS(5407), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(5413), 1, anon_sym_satisfies, - ACTIONS(5415), 1, + anon_sym_implements, + [58852] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2554), 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), 31, sym__ternary_qmark, - ACTIONS(5470), 1, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - STATE(2676), 1, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [58910] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5476), 1, + anon_sym_STAR_STAR, + ACTIONS(5751), 1, + anon_sym_LT, + STATE(2555), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(5598), 1, - aux_sym_sequence_expression_repeat1, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5371), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5393), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(4944), 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, - ACTIONS(5409), 2, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [58996] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5474), 1, + anon_sym_PERCENT, + ACTIONS(5476), 1, + anon_sym_STAR_STAR, + ACTIONS(5751), 1, + anon_sym_LT, + STATE(2556), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5691), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, + ACTIONS(5454), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(4946), 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(4944), 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, - [57110] = 36, + anon_sym_satisfies, + [59080] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(5402), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(5404), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(5406), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5410), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(5412), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(5414), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5418), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5420), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5422), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(5430), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(5438), 1, sym__ternary_qmark, - ACTIONS(5470), 1, - anon_sym_COMMA, - STATE(2677), 1, + STATE(2557), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(5598), 1, - aux_sym_sequence_expression_repeat1, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5388), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5396), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5408), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5416), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5426), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5428), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5693), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(5424), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57230] = 5, + ACTIONS(4960), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [59196] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2678), 1, + STATE(2558), 1, sym_comment, - ACTIONS(2145), 13, + ACTIONS(5754), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271841,18 +261052,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2147), 31, - sym__automatic_semicolon, + ACTIONS(5756), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -271872,99 +261083,90 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [57288] = 36, + anon_sym_implements, + [59254] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(5391), 1, - anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(5407), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, - sym__ternary_qmark, - ACTIONS(5470), 1, - anon_sym_COMMA, - STATE(2679), 1, + STATE(2559), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(5598), 1, - aux_sym_sequence_expression_repeat1, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(4946), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5695), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57408] = 5, + ACTIONS(4944), 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, + [59356] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2680), 1, + STATE(2560), 1, sym_comment, - ACTIONS(5697), 13, + ACTIONS(5758), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271978,7 +261180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5699), 31, + ACTIONS(5760), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -272010,81 +261212,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [57466] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, + [59414] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4937), 1, - anon_sym_STAR, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, - anon_sym_COMMA, - ACTIONS(4944), 1, - anon_sym_RBRACE, - ACTIONS(5477), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5396), 1, + anon_sym_GT, + ACTIONS(5398), 1, anon_sym_LBRACK, - STATE(2681), 1, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5402), 1, + anon_sym_AMP_AMP, + ACTIONS(5404), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5406), 1, + anon_sym_GT_GT, + ACTIONS(5410), 1, + anon_sym_AMP, + ACTIONS(5412), 1, + anon_sym_CARET, + ACTIONS(5414), 1, + anon_sym_PIPE, + ACTIONS(5418), 1, + anon_sym_PERCENT, + ACTIONS(5420), 1, + anon_sym_STAR_STAR, + ACTIONS(5422), 1, + anon_sym_LT, + ACTIONS(5430), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5438), 1, + sym__ternary_qmark, + ACTIONS(5764), 1, + anon_sym_in, + STATE(2561), 1, sym_comment, - STATE(4890), 1, - sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5479), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5388), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5408), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5416), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5426), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5428), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5424), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5762), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [57552] = 5, + [59532] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2682), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5476), 1, + anon_sym_STAR_STAR, + ACTIONS(5751), 1, + anon_sym_LT, + STATE(2562), 1, sym_comment, - ACTIONS(5701), 13, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272095,49 +261337,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4970), 31, + ACTIONS(4944), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [57610] = 5, + [59612] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2683), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5767), 1, + anon_sym_LT, + STATE(2563), 1, sym_comment, - ACTIONS(5703), 13, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5053), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272147,50 +261398,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5055), 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, + [59690] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4946), 1, + anon_sym_BANG, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5462), 1, + anon_sym_GT_GT, + ACTIONS(5466), 1, + anon_sym_AMP, + ACTIONS(5468), 1, + anon_sym_CARET, + ACTIONS(5470), 1, + anon_sym_PIPE, + ACTIONS(5474), 1, + anon_sym_PERCENT, + ACTIONS(5476), 1, + anon_sym_STAR_STAR, + ACTIONS(5478), 1, + anon_sym_LT, + STATE(2564), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5456), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5464), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5472), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5705), 31, + ACTIONS(5484), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5480), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 10, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [57668] = 5, + [59794] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2684), 1, + STATE(2565), 1, sym_comment, - ACTIONS(5707), 13, + ACTIONS(2139), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272204,7 +261519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5709), 31, + ACTIONS(2143), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -272236,14 +261551,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [57726] = 5, + [59852] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2685), 1, + STATE(2566), 1, sym_comment, - ACTIONS(5711), 13, + ACTIONS(2131), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272257,7 +261572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5713), 31, + ACTIONS(2135), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -272289,14 +261604,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [57784] = 5, + [59910] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5132), 1, + anon_sym_STAR, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, + anon_sym_COMMA, + ACTIONS(5144), 1, + anon_sym_async, + ACTIONS(5182), 1, + anon_sym_RBRACE, + ACTIONS(5444), 1, + anon_sym_LBRACK, + STATE(2567), 1, + sym_comment, + STATE(3892), 1, + sym__property_name, + STATE(5868), 1, + aux_sym_object_repeat1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5148), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4376), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [59998] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2686), 1, + STATE(2568), 1, sym_comment, - ACTIONS(5715), 13, + ACTIONS(2151), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272310,7 +261693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5717), 31, + ACTIONS(2153), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -272342,16 +261725,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [57842] = 5, + [60056] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2687), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5770), 1, + anon_sym_LT, + STATE(2569), 1, sym_comment, - ACTIONS(5719), 13, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(4937), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -272360,23 +261770,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5721), 31, + ACTIONS(4939), 18, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -272390,43 +261791,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [57900] = 5, + [60140] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2688), 1, + ACTIONS(4843), 1, + anon_sym_extends, + STATE(2570), 1, sym_comment, - ACTIONS(5723), 13, + ACTIONS(5773), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5776), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4137), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - 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), 31, + ACTIONS(4141), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -272448,91 +261847,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [57958] = 5, + [60204] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2689), 1, - sym_comment, - ACTIONS(5727), 13, - anon_sym_STAR, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4946), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5458), 1, + anon_sym_AMP_AMP, + ACTIONS(5462), 1, anon_sym_GT_GT, + ACTIONS(5466), 1, anon_sym_AMP, + ACTIONS(5468), 1, + anon_sym_CARET, + ACTIONS(5470), 1, anon_sym_PIPE, + ACTIONS(5474), 1, + anon_sym_PERCENT, + ACTIONS(5476), 1, + anon_sym_STAR_STAR, + ACTIONS(5478), 1, + anon_sym_LT, + STATE(2571), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5456), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5464), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5729), 31, + ACTIONS(5484), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5480), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 9, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [58016] = 5, + [60310] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2690), 1, + ACTIONS(5190), 1, + anon_sym_extends, + STATE(2572), 1, sym_comment, - ACTIONS(5731), 13, + ACTIONS(5779), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5782), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4137), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5733), 31, + ACTIONS(4141), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -272554,616 +261980,446 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [58074] = 36, + [60374] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(5488), 1, sym__ternary_qmark, - ACTIONS(5470), 1, + ACTIONS(5498), 1, anon_sym_COMMA, - STATE(2691), 1, + STATE(2573), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(5598), 1, + STATE(5591), 1, aux_sym_sequence_expression_repeat1, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5735), 2, + ACTIONS(5785), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58194] = 36, + [60494] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, - anon_sym_GT_GT, - ACTIONS(5387), 1, - anon_sym_AMP, - ACTIONS(5389), 1, - anon_sym_CARET, - ACTIONS(5391), 1, - anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5751), 1, anon_sym_LT, - ACTIONS(5407), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, - sym__ternary_qmark, - ACTIONS(5470), 1, - anon_sym_COMMA, - STATE(2692), 1, + STATE(2574), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(5598), 1, - aux_sym_sequence_expression_repeat1, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5385), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5405), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5737), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [58314] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2693), 1, - sym_comment, - ACTIONS(2251), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2253), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [58372] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2694), 1, - sym_comment, - ACTIONS(5739), 13, - anon_sym_STAR, + ACTIONS(4946), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5741), 31, + ACTIONS(4944), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [58430] = 36, + [60580] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(5488), 1, sym__ternary_qmark, - ACTIONS(5470), 1, + ACTIONS(5498), 1, anon_sym_COMMA, - STATE(2695), 1, + STATE(2575), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(5598), 1, + STATE(5591), 1, aux_sym_sequence_expression_repeat1, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5743), 2, + ACTIONS(5787), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [58550] = 34, + [60700] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(5488), 1, sym__ternary_qmark, - STATE(2696), 1, + ACTIONS(5498), 1, + anon_sym_COMMA, + STATE(2576), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5591), 1, + aux_sym_sequence_expression_repeat1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, + ACTIONS(5789), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4986), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [58666] = 7, + [60820] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2697), 1, - sym_comment, - ACTIONS(2071), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5745), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2069), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2075), 24, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4791), 1, anon_sym_LPAREN, - anon_sym_of, + ACTIONS(4801), 1, anon_sym_LBRACK, + ACTIONS(4803), 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, + ACTIONS(4865), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [58728] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(2698), 1, - sym_comment, - STATE(2739), 1, + ACTIONS(5791), 1, + anon_sym_RBRACK, + STATE(2220), 1, sym_type_arguments, - STATE(6093), 1, + STATE(2577), 1, + sym_comment, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3121), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5212), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [58844] = 5, + [60939] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2699), 1, + ACTIONS(5322), 1, + anon_sym_EQ, + ACTIONS(5326), 1, + anon_sym_LBRACK, + STATE(2578), 1, sym_comment, - ACTIONS(5748), 13, + ACTIONS(5329), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5793), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5003), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(5320), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5750), 31, + ACTIONS(5324), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -273183,339 +262439,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [58902] = 34, + [61006] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, - anon_sym_GT_GT, - ACTIONS(5387), 1, - anon_sym_AMP, - ACTIONS(5389), 1, - anon_sym_CARET, - ACTIONS(5391), 1, - anon_sym_PIPE, - ACTIONS(5395), 1, - anon_sym_PERCENT, - ACTIONS(5397), 1, - anon_sym_STAR_STAR, - ACTIONS(5399), 1, - anon_sym_LT, - ACTIONS(5407), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, - sym__ternary_qmark, - STATE(2700), 1, - sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5371), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5385), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5393), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5403), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5405), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5401), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4970), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [59018] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(2701), 1, - sym_comment, - STATE(2739), 1, + ACTIONS(5797), 1, + anon_sym_COMMA, + ACTIONS(5799), 1, + anon_sym_RBRACK, + STATE(2220), 1, sym_type_arguments, - STATE(6093), 1, + STATE(2579), 1, + sym_comment, + STATE(5970), 1, + aux_sym_array_repeat1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3121), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5214), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [59134] = 21, + [61125] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5383), 1, - anon_sym_GT_GT, - ACTIONS(5395), 1, - anon_sym_PERCENT, - ACTIONS(5397), 1, - anon_sym_STAR_STAR, - ACTIONS(5399), 1, - anon_sym_LT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - STATE(2702), 1, + ACTIONS(5801), 1, + anon_sym_static, + ACTIONS(5803), 1, + anon_sym_readonly, + ACTIONS(5805), 1, + anon_sym_abstract, + STATE(2580), 1, sym_comment, - STATE(2739), 1, - sym_type_arguments, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5361), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5385), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5393), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4957), 16, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + STATE(3494), 1, + sym_accessibility_modifier, + STATE(3567), 1, + sym_override_modifier, + STATE(4076), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4605), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(987), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, 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, - [59224] = 34, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4376), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [61210] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5170), 1, + anon_sym_COMMA, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(5488), 1, sym__ternary_qmark, - STATE(2703), 1, + STATE(2581), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, + ACTIONS(5666), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5216), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [59340] = 7, + [61327] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2704), 1, + STATE(2582), 1, sym_comment, - ACTIONS(5419), 2, + ACTIONS(2071), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5752), 5, + ACTIONS(5807), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(5417), 13, + ACTIONS(2069), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273529,11 +262700,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5421), 24, + ACTIONS(2075), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -273554,67 +262724,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [59402] = 5, + [61388] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2705), 1, + STATE(2583), 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(5106), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5632), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5809), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [59460] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2706), 1, - sym_comment, - ACTIONS(5757), 13, + ACTIONS(5630), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273628,18 +262754,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5759), 31, + ACTIONS(5634), 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, @@ -273659,213 +262778,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [59518] = 5, + [61449] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2707), 1, - sym_comment, - ACTIONS(5761), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - 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), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4791), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4801), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4803), 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, + ACTIONS(4865), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [59576] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2708), 1, - sym_comment, - ACTIONS(5765), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - 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), 31, - sym__ternary_qmark, + ACTIONS(4889), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5815), 1, anon_sym_AMP_AMP, + ACTIONS(5817), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5819), 1, + anon_sym_GT_GT, + ACTIONS(5823), 1, + anon_sym_AMP, + ACTIONS(5825), 1, anon_sym_CARET, + ACTIONS(5827), 1, + anon_sym_PIPE, + ACTIONS(5831), 1, anon_sym_PERCENT, + ACTIONS(5833), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5835), 1, + anon_sym_LT, + ACTIONS(5843), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5845), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2584), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [59634] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4937), 1, - anon_sym_STAR, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, - anon_sym_COMMA, - ACTIONS(4949), 1, - anon_sym_async, - ACTIONS(5124), 1, - anon_sym_RBRACE, - ACTIONS(5359), 1, - anon_sym_LBRACK, - STATE(2709), 1, - sym_comment, - STATE(4017), 1, - sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4953), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4372), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [59722] = 5, + ACTIONS(5811), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5813), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5821), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5829), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5839), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5841), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5170), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5837), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [61564] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2710), 1, + ACTIONS(4139), 1, + anon_sym_EQ, + ACTIONS(5190), 1, + anon_sym_extends, + STATE(2585), 1, sym_comment, - ACTIONS(5769), 13, + ACTIONS(5779), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5782), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4137), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - 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), 31, + ACTIONS(4141), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -273886,172 +262915,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [59780] = 34, + [61629] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5815), 1, + anon_sym_AMP_AMP, + ACTIONS(5817), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5819), 1, + anon_sym_GT_GT, + ACTIONS(5823), 1, + anon_sym_AMP, + ACTIONS(5825), 1, + anon_sym_CARET, + ACTIONS(5827), 1, + anon_sym_PIPE, + ACTIONS(5831), 1, + anon_sym_PERCENT, + ACTIONS(5833), 1, + anon_sym_STAR_STAR, + ACTIONS(5835), 1, + anon_sym_LT, + ACTIONS(5843), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5845), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2586), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5811), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5813), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5821), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5829), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5839), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5841), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4968), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5837), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [61744] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(2711), 1, - sym_comment, - STATE(2739), 1, + ACTIONS(5847), 1, + anon_sym_RPAREN, + STATE(2220), 1, sym_type_arguments, - STATE(6093), 1, + STATE(2587), 1, + sym_comment, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3121), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5241), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [59896] = 34, + [61863] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(2712), 1, - sym_comment, - STATE(2739), 1, + ACTIONS(5849), 1, + anon_sym_RPAREN, + STATE(2220), 1, sym_type_arguments, - STATE(6093), 1, + STATE(2588), 1, + sym_comment, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3121), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5026), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [60012] = 19, + [61982] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -274060,43 +263171,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4937), 1, - anon_sym_STAR, - ACTIONS(4939), 1, + ACTIONS(5134), 1, anon_sym_EQ, - ACTIONS(4941), 1, + ACTIONS(5136), 1, anon_sym_COMMA, - ACTIONS(5124), 1, + ACTIONS(5317), 1, anon_sym_RBRACE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(2713), 1, + STATE(2589), 1, sym_comment, - STATE(4890), 1, + STATE(4736), 1, sym__property_name, - STATE(6171), 1, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(6261), 1, aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(5479), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(987), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2900), 21, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -274106,6 +263212,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -274118,14 +263226,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [60098] = 5, + [62063] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2714), 1, + ACTIONS(5496), 1, + anon_sym_LT, + STATE(2590), 1, sym_comment, - ACTIONS(2195), 13, + STATE(2840), 1, + sym_type_arguments, + ACTIONS(4855), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274136,21 +263248,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2197), 31, + ACTIONS(4857), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -274170,227 +263279,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [60156] = 5, + anon_sym_extends, + [62124] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2715), 1, - sym_comment, - ACTIONS(2081), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2083), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5170), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5398), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5400), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5462), 1, + anon_sym_GT_GT, + ACTIONS(5466), 1, + anon_sym_AMP, + ACTIONS(5468), 1, anon_sym_CARET, + ACTIONS(5470), 1, + anon_sym_PIPE, + ACTIONS(5474), 1, anon_sym_PERCENT, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5478), 1, + anon_sym_LT, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5488), 1, + sym__ternary_qmark, + STATE(2591), 1, + sym_comment, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [60214] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2716), 1, - sym_comment, - ACTIONS(5306), 13, + ACTIONS(5454), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5464), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5851), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5480), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [60272] = 5, + [62241] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2717), 1, - sym_comment, - ACTIONS(5564), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5566), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4791), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4801), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4803), 1, anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5815), 1, anon_sym_AMP_AMP, + ACTIONS(5817), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5819), 1, + anon_sym_GT_GT, + ACTIONS(5823), 1, + anon_sym_AMP, + ACTIONS(5825), 1, anon_sym_CARET, + ACTIONS(5827), 1, + anon_sym_PIPE, + ACTIONS(5831), 1, anon_sym_PERCENT, + ACTIONS(5833), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5835), 1, + anon_sym_LT, + ACTIONS(5843), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5845), 1, + sym__ternary_qmark, + STATE(2592), 1, + sym_comment, + STATE(2921), 1, + sym_type_arguments, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [60330] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2718), 1, - sym_comment, - ACTIONS(5773), 13, + ACTIONS(5811), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5813), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5821), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5829), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5839), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5775), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5841), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5837), 3, + anon_sym_LT_EQ, anon_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(5853), 3, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_implements, - [60388] = 5, + [62356] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2719), 1, + ACTIONS(5496), 1, + anon_sym_LT, + ACTIONS(5648), 1, + anon_sym_DOT, + STATE(2593), 1, sym_comment, - ACTIONS(5777), 13, + STATE(2848), 1, + sym_type_arguments, + ACTIONS(4807), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274401,22 +263467,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5779), 31, + ACTIONS(4202), 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, @@ -274435,24 +263497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [60446] = 7, + anon_sym_extends, + [62419] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2720), 1, + STATE(2594), 1, sym_comment, - ACTIONS(5270), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5781), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5268), 13, + ACTIONS(1972), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274466,11 +263519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5272), 24, + ACTIONS(2030), 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, @@ -274491,116 +263548,140 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60508] = 16, + anon_sym_extends, + anon_sym_is, + [62476] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(5397), 1, - anon_sym_STAR_STAR, - ACTIONS(5411), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(5481), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, anon_sym_LT, - STATE(2721), 1, - sym_comment, - STATE(2739), 1, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + ACTIONS(5797), 1, + anon_sym_COMMA, + ACTIONS(5855), 1, + anon_sym_RPAREN, + STATE(2220), 1, sym_type_arguments, - STATE(6093), 1, + STATE(2595), 1, + sym_comment, + STATE(5723), 1, + aux_sym_array_repeat1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 12, + ACTIONS(4887), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 19, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [60588] = 19, + [62595] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4937), 1, - anon_sym_STAR, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, - anon_sym_COMMA, - ACTIONS(5230), 1, - anon_sym_RBRACE, - ACTIONS(5477), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(2722), 1, + ACTIONS(5857), 1, + anon_sym_static, + ACTIONS(5859), 1, + anon_sym_readonly, + ACTIONS(5861), 1, + anon_sym_abstract, + STATE(2596), 1, sym_comment, - STATE(4890), 1, + STATE(3480), 1, + sym_accessibility_modifier, + STATE(3554), 1, + sym_override_modifier, + STATE(4125), 1, sym__property_name, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(5479), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(4605), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(987), 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, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 21, + ACTIONS(4376), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -274608,13 +263689,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -274622,145 +263699,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [60674] = 5, + [62680] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2723), 1, - sym_comment, - ACTIONS(4121), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4125), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4791), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4801), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4803), 1, anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, + ACTIONS(4901), 1, anon_sym_AMP_AMP, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, anon_sym_PERCENT, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2597), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [60732] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4937), 1, - anon_sym_STAR, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5863), 3, anon_sym_COMMA, - ACTIONS(4949), 1, - anon_sym_async, - ACTIONS(5230), 1, anon_sym_RBRACE, - ACTIONS(5359), 1, - anon_sym_LBRACK, - STATE(2724), 1, - sym_comment, - STATE(4017), 1, - sym__property_name, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4953), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4372), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [60820] = 8, + anon_sym_RBRACK, + [62795] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4205), 1, - anon_sym_EQ, - ACTIONS(4257), 1, - anon_sym_QMARK, - STATE(2725), 1, + ACTIONS(5650), 1, + anon_sym_is, + STATE(2598), 1, sym_comment, - ACTIONS(4259), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4121), 13, + ACTIONS(4871), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274774,10 +263803,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(4873), 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, @@ -274798,267 +263832,464 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [60883] = 34, + anon_sym_extends, + [62854] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5790), 1, + ACTIONS(5815), 1, anon_sym_AMP_AMP, - ACTIONS(5792), 1, + ACTIONS(5817), 1, anon_sym_PIPE_PIPE, - ACTIONS(5794), 1, + ACTIONS(5819), 1, anon_sym_GT_GT, - ACTIONS(5798), 1, + ACTIONS(5823), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(5825), 1, anon_sym_CARET, - ACTIONS(5802), 1, + ACTIONS(5827), 1, anon_sym_PIPE, - ACTIONS(5806), 1, + ACTIONS(5831), 1, anon_sym_PERCENT, - ACTIONS(5808), 1, + ACTIONS(5833), 1, anon_sym_STAR_STAR, - ACTIONS(5810), 1, + ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(5818), 1, + ACTIONS(5843), 1, anon_sym_QMARK_QMARK, - ACTIONS(5820), 1, + ACTIONS(5845), 1, sym__ternary_qmark, - STATE(2726), 1, - sym_comment, - STATE(3123), 1, + STATE(2220), 1, sym_type_arguments, - STATE(6354), 1, + STATE(2599), 1, + sym_comment, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5784), 2, + ACTIONS(5811), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5788), 2, + ACTIONS(5813), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5796), 2, + ACTIONS(5821), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5804), 2, + ACTIONS(5829), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5814), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 2, + ACTIONS(5841), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5786), 3, + ACTIONS(5180), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5812), 3, + ACTIONS(5837), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60998] = 35, + [62969] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5100), 1, - anon_sym_COMMA, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(5488), 1, sym__ternary_qmark, - STATE(2727), 1, + STATE(2600), 1, sym_comment, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5822), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61115] = 36, + ACTIONS(5762), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [63084] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5824), 1, + ACTIONS(5865), 1, anon_sym_RPAREN, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2728), 1, + STATE(2601), 1, sym_comment, - STATE(4803), 1, + STATE(4631), 1, aux_sym_sequence_expression_repeat1, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61234] = 9, + [63203] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2602), 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(4867), 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, + [63260] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5259), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, anon_sym_LBRACK, - STATE(2729), 1, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5815), 1, + anon_sym_AMP_AMP, + ACTIONS(5817), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5819), 1, + anon_sym_GT_GT, + ACTIONS(5823), 1, + anon_sym_AMP, + ACTIONS(5825), 1, + anon_sym_CARET, + ACTIONS(5827), 1, + anon_sym_PIPE, + ACTIONS(5831), 1, + anon_sym_PERCENT, + ACTIONS(5833), 1, + anon_sym_STAR_STAR, + ACTIONS(5835), 1, + anon_sym_LT, + ACTIONS(5843), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5845), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2603), 1, sym_comment, - ACTIONS(3432), 2, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5811), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5813), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5821), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5829), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5839), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5841), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5272), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5837), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [63375] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, anon_sym_COMMA, + ACTIONS(5314), 1, + anon_sym_RBRACE, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(2604), 1, + sym_comment, + STATE(4736), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [63456] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2071), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(3570), 1, anon_sym_extends, - ACTIONS(5262), 3, + STATE(2605), 1, + sym_comment, + ACTIONS(5343), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5346), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, @@ -275074,13 +264305,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, ACTIONS(2075), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -275100,589 +264331,664 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61299] = 34, + [63521] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2730), 1, + STATE(2606), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5431), 3, + ACTIONS(5762), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, - [61414] = 34, + [63636] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, + anon_sym_COMMA, + ACTIONS(5182), 1, + anon_sym_RBRACE, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(2607), 1, + sym_comment, + STATE(4736), 1, + sym__property_name, + STATE(5868), 1, + aux_sym_object_repeat1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [63717] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5790), 1, + ACTIONS(5815), 1, anon_sym_AMP_AMP, - ACTIONS(5792), 1, + ACTIONS(5817), 1, anon_sym_PIPE_PIPE, - ACTIONS(5794), 1, + ACTIONS(5819), 1, anon_sym_GT_GT, - ACTIONS(5798), 1, + ACTIONS(5823), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(5825), 1, anon_sym_CARET, - ACTIONS(5802), 1, + ACTIONS(5827), 1, anon_sym_PIPE, - ACTIONS(5806), 1, + ACTIONS(5831), 1, anon_sym_PERCENT, - ACTIONS(5808), 1, + ACTIONS(5833), 1, anon_sym_STAR_STAR, - ACTIONS(5810), 1, + ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(5818), 1, + ACTIONS(5843), 1, anon_sym_QMARK_QMARK, - ACTIONS(5820), 1, + ACTIONS(5845), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2731), 1, + STATE(2608), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5784), 2, + ACTIONS(5811), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5788), 2, + ACTIONS(5813), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5796), 2, + ACTIONS(5821), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5804), 2, + ACTIONS(5829), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5814), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 2, + ACTIONS(5841), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5100), 3, + ACTIONS(5276), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5812), 3, + ACTIONS(5837), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61529] = 36, + [63832] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5815), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(5817), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(5819), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(5823), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(5825), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(5827), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(5831), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(5833), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(5843), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(5845), 1, sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5826), 1, - anon_sym_RPAREN, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2732), 1, + STATE(2609), 1, sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5811), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(5813), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(5821), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(5829), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(5841), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(5274), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5837), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61648] = 34, + [63947] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, + anon_sym_COMMA, + ACTIONS(5139), 1, + anon_sym_RBRACE, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(2610), 1, + sym_comment, + STATE(4736), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [64028] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5790), 1, + ACTIONS(5815), 1, anon_sym_AMP_AMP, - ACTIONS(5792), 1, + ACTIONS(5817), 1, anon_sym_PIPE_PIPE, - ACTIONS(5794), 1, + ACTIONS(5819), 1, anon_sym_GT_GT, - ACTIONS(5798), 1, + ACTIONS(5823), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(5825), 1, anon_sym_CARET, - ACTIONS(5802), 1, + ACTIONS(5827), 1, anon_sym_PIPE, - ACTIONS(5806), 1, + ACTIONS(5831), 1, anon_sym_PERCENT, - ACTIONS(5808), 1, + ACTIONS(5833), 1, anon_sym_STAR_STAR, - ACTIONS(5810), 1, + ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(5818), 1, + ACTIONS(5843), 1, anon_sym_QMARK_QMARK, - ACTIONS(5820), 1, + ACTIONS(5845), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2733), 1, + STATE(2611), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5784), 2, + ACTIONS(5811), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5788), 2, + ACTIONS(5813), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5796), 2, + ACTIONS(5821), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5804), 2, + ACTIONS(5829), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5814), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 2, + ACTIONS(5841), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5106), 3, + ACTIONS(5270), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5812), 3, + ACTIONS(5837), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61763] = 36, + [64143] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5815), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(5817), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(5819), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(5823), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(5825), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(5827), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(5831), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(5833), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(5843), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(5845), 1, sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5828), 1, - anon_sym_RPAREN, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2734), 1, + STATE(2612), 1, sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5811), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(5813), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(5821), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(5829), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(5841), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(5264), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5837), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [61882] = 36, + [64258] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5815), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(5817), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(5819), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(5823), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(5825), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(5827), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(5831), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(5833), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(5843), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(5845), 1, sym__ternary_qmark, - ACTIONS(5830), 1, - anon_sym_COMMA, - ACTIONS(5832), 1, - anon_sym_RBRACK, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2735), 1, + STATE(2613), 1, sym_comment, - STATE(6287), 1, - aux_sym_array_repeat1, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5811), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(5813), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(5821), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(5829), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(5841), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(5244), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5837), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62001] = 5, + [64373] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2736), 1, - sym_comment, - ACTIONS(4324), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4843), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4791), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4801), 1, anon_sym_LBRACK, + ACTIONS(4803), 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, + ACTIONS(4865), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [62058] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5270), 1, - anon_sym_EQ, - ACTIONS(5274), 1, - anon_sym_LBRACK, - STATE(2737), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5867), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2614), 1, sym_comment, - ACTIONS(5239), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5277), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5268), 10, + STATE(6178), 1, + sym_optional_chain, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4978), 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_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5272), 26, + ACTIONS(4980), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -275698,106 +265004,126 @@ 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, - [62123] = 34, + anon_sym_implements, + [64448] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5790), 1, + ACTIONS(5815), 1, anon_sym_AMP_AMP, - ACTIONS(5792), 1, + ACTIONS(5817), 1, anon_sym_PIPE_PIPE, - ACTIONS(5794), 1, + ACTIONS(5819), 1, anon_sym_GT_GT, - ACTIONS(5798), 1, + ACTIONS(5823), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(5825), 1, anon_sym_CARET, - ACTIONS(5802), 1, + ACTIONS(5827), 1, anon_sym_PIPE, - ACTIONS(5806), 1, + ACTIONS(5831), 1, anon_sym_PERCENT, - ACTIONS(5808), 1, + ACTIONS(5833), 1, anon_sym_STAR_STAR, - ACTIONS(5810), 1, + ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(5818), 1, + ACTIONS(5843), 1, anon_sym_QMARK_QMARK, - ACTIONS(5820), 1, + ACTIONS(5845), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2738), 1, + STATE(2615), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5784), 2, + ACTIONS(5811), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5788), 2, + ACTIONS(5813), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5796), 2, + ACTIONS(5821), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5804), 2, + ACTIONS(5829), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5814), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 2, + ACTIONS(5841), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5038), 3, + ACTIONS(4960), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5812), 3, + ACTIONS(5837), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62238] = 8, + [64563] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5369), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(5411), 1, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, anon_sym_BQUOTE, - STATE(2739), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5870), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2616), 1, sym_comment, - STATE(3080), 2, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4863), 13, + ACTIONS(4937), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -275806,20 +265132,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 26, - sym__automatic_semicolon, + ACTIONS(4939), 17, sym__ternary_qmark, - anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -275833,120 +265151,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [62301] = 34, + anon_sym_implements, + [64646] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5790), 1, - anon_sym_AMP_AMP, - ACTIONS(5792), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5794), 1, - anon_sym_GT_GT, - ACTIONS(5798), 1, - anon_sym_AMP, - ACTIONS(5800), 1, - anon_sym_CARET, - ACTIONS(5802), 1, - anon_sym_PIPE, - ACTIONS(5806), 1, - anon_sym_PERCENT, - ACTIONS(5808), 1, - anon_sym_STAR_STAR, - ACTIONS(5810), 1, + ACTIONS(5873), 1, anon_sym_LT, - ACTIONS(5818), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5820), 1, - sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2740), 1, + STATE(2617), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5784), 2, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5053), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5788), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5796), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5804), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5814), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4986), 3, + ACTIONS(5055), 19, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5812), 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, - [62416] = 15, + anon_sym_satisfies, + anon_sym_implements, + [64723] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5834), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2741), 1, + STATE(2618), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(5189), 12, + ACTIONS(5178), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(5172), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275957,13 +265237,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 19, + ACTIONS(5174), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -275977,27 +265263,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [62493] = 9, + [64782] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3432), 1, + ACTIONS(5003), 1, anon_sym_extends, - STATE(2742), 1, + ACTIONS(5322), 1, + anon_sym_EQ, + STATE(2619), 1, sym_comment, - ACTIONS(5259), 2, + ACTIONS(5326), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(5262), 3, + ACTIONS(5329), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2069), 10, + ACTIONS(5320), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -276008,7 +265296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 26, + ACTIONS(5324), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -276035,43 +265323,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [62558] = 18, + [64847] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5837), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2743), 1, + STATE(2620), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(5156), 11, + ACTIONS(4845), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -276080,12 +265341,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5158), 17, + ACTIONS(4847), 30, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -276099,338 +265369,296 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [62641] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, - anon_sym_COMMA, - ACTIONS(5230), 1, - anon_sym_RBRACE, - ACTIONS(5477), 1, - anon_sym_LBRACK, - STATE(2744), 1, - sym_comment, - STATE(4890), 1, - sym__property_name, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [62722] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_is, + [64904] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5790), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(5792), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(5794), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(5798), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(5802), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(5806), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(5808), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(5810), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(5818), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(5820), 1, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(2372), 1, + ACTIONS(5876), 1, + anon_sym_RPAREN, + STATE(2220), 1, sym_type_arguments, - STATE(2745), 1, + STATE(2621), 1, sym_comment, - STATE(6354), 1, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5784), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5788), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5796), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5804), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5814), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4970), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5812), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62837] = 34, + [65023] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5170), 1, + anon_sym_COMMA, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5790), 1, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(5792), 1, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5794), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5798), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(5802), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(5806), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5808), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5810), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(5818), 1, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - ACTIONS(5820), 1, + ACTIONS(5488), 1, sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(2746), 1, + STATE(2622), 1, sym_comment, - STATE(6354), 1, + STATE(2627), 1, + sym_type_arguments, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5784), 2, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5788), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5796), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5804), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5814), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + ACTIONS(5878), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(4881), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5812), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62952] = 21, + [65140] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5794), 1, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(5806), 1, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(5808), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(5810), 1, + ACTIONS(4921), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + ACTIONS(5880), 1, + anon_sym_RBRACK, + STATE(2220), 1, sym_type_arguments, - STATE(2747), 1, + STATE(2623), 1, sym_comment, - STATE(6354), 1, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5784), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5796), 2, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5804), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 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, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [63041] = 9, + [65259] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5239), 1, - anon_sym_extends, - ACTIONS(5270), 1, + ACTIONS(4229), 1, anon_sym_EQ, - STATE(2748), 1, + ACTIONS(4257), 1, + anon_sym_QMARK, + STATE(2624), 1, sym_comment, - ACTIONS(5274), 2, + ACTIONS(4253), 5, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5277), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5268), 10, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5272), 26, - sym__automatic_semicolon, + ACTIONS(4141), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -276450,918 +265678,893 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [63106] = 14, + [65322] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5840), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2749), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(5143), 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(5145), 21, - sym__ternary_qmark, + ACTIONS(4889), 1, 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, - [63181] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5808), 1, - anon_sym_STAR_STAR, - ACTIONS(5843), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2750), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 12, - anon_sym_STAR, + ACTIONS(4893), 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(4957), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, anon_sym_AMP_AMP, + ACTIONS(4903), 1, 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, - [63260] = 28, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5794), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(5798), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(5802), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(5806), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(5808), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(5810), 1, + ACTIONS(4921), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + ACTIONS(5797), 1, + anon_sym_COMMA, + ACTIONS(5882), 1, + anon_sym_RPAREN, + STATE(2220), 1, sym_type_arguments, - STATE(2751), 1, + STATE(2625), 1, sym_comment, - STATE(6354), 1, + STATE(6013), 1, + aux_sym_array_repeat1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5784), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5788), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5796), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5804), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5814), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5812), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 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, - [63363] = 29, + [65441] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5790), 1, - anon_sym_AMP_AMP, - ACTIONS(5794), 1, - anon_sym_GT_GT, - ACTIONS(5798), 1, - anon_sym_AMP, - ACTIONS(5800), 1, - anon_sym_CARET, - ACTIONS(5802), 1, - anon_sym_PIPE, - ACTIONS(5806), 1, - anon_sym_PERCENT, - ACTIONS(5808), 1, - anon_sym_STAR_STAR, - ACTIONS(5810), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2752), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5784), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5788), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5796), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5804), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5814), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5816), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(5812), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 8, - sym__ternary_qmark, + ACTIONS(4889), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [63468] = 35, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5100), 1, + ACTIONS(4891), 1, anon_sym_COMMA, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(2739), 1, + ACTIONS(5884), 1, + anon_sym_RPAREN, + STATE(2220), 1, sym_type_arguments, - STATE(2753), 1, + STATE(2626), 1, sym_comment, - STATE(6093), 1, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5529), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63585] = 19, + [65560] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5806), 1, - anon_sym_PERCENT, - ACTIONS(5808), 1, - anon_sym_STAR_STAR, - ACTIONS(5843), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2754), 1, + STATE(2627), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5784), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5804), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2716), 2, + STATE(3118), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 8, + ACTIONS(4861), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 17, + ACTIONS(4863), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_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, - [63670] = 36, + [65623] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - ACTIONS(5830), 1, - anon_sym_COMMA, - ACTIONS(5846), 1, + ACTIONS(5886), 1, anon_sym_RPAREN, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2755), 1, + STATE(2628), 1, sym_comment, - STATE(6354), 1, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, sym_optional_chain, - STATE(6398), 1, - aux_sym_array_repeat1, - ACTIONS(4877), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63789] = 25, + [65742] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5794), 1, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(5806), 1, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(5808), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(5810), 1, + ACTIONS(4921), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + ACTIONS(5888), 1, + anon_sym_RPAREN, + STATE(2220), 1, sym_type_arguments, - STATE(2756), 1, + STATE(2629), 1, sym_comment, - STATE(6354), 1, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5784), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5788), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5796), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5804), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5814), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5812), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 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, - [63886] = 26, + [65861] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5794), 1, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(5798), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(5806), 1, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(5808), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(5810), 1, + ACTIONS(4921), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + ACTIONS(5890), 1, + anon_sym_RBRACE, + STATE(2220), 1, sym_type_arguments, - STATE(2757), 1, + STATE(2630), 1, sym_comment, - STATE(6354), 1, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5784), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5788), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5796), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5804), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5814), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5812), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 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, - [63985] = 27, + [65980] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5794), 1, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(5798), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(5806), 1, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(5808), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(5810), 1, + ACTIONS(4921), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + ACTIONS(5892), 1, + anon_sym_RBRACE, + STATE(2220), 1, sym_type_arguments, - STATE(2758), 1, + STATE(2631), 1, sym_comment, - STATE(6354), 1, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5784), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5788), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5796), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5804), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5814), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5812), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 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, - [64086] = 18, + [66099] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5806), 1, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(5808), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(5843), 1, + ACTIONS(4921), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + ACTIONS(5894), 1, + anon_sym_RBRACK, + STATE(2220), 1, sym_type_arguments, - STATE(2759), 1, + STATE(2632), 1, sym_comment, - STATE(6354), 1, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5784), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 10, - anon_sym_BANG, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 17, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [64169] = 36, + [66218] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - ACTIONS(5000), 1, + ACTIONS(5797), 1, anon_sym_COMMA, - ACTIONS(5848), 1, + ACTIONS(5896), 1, anon_sym_RPAREN, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2760), 1, + STATE(2633), 1, sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + STATE(6324), 1, + aux_sym_array_repeat1, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64288] = 19, + [66337] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5170), 1, + anon_sym_COMMA, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5808), 1, + ACTIONS(5458), 1, + anon_sym_AMP_AMP, + ACTIONS(5460), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5462), 1, + anon_sym_GT_GT, + ACTIONS(5466), 1, + anon_sym_AMP, + ACTIONS(5468), 1, + anon_sym_CARET, + ACTIONS(5470), 1, + anon_sym_PIPE, + ACTIONS(5474), 1, + anon_sym_PERCENT, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5843), 1, + ACTIONS(5478), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(5486), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5488), 1, + sym__ternary_qmark, + STATE(2627), 1, sym_type_arguments, - STATE(2761), 1, + STATE(2634), 1, sym_comment, - STATE(6354), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + ACTIONS(5454), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5456), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5464), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5472), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5482), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5484), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5898), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 11, + ACTIONS(5480), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [66454] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5132), 1, + anon_sym_STAR, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_async, + ACTIONS(5146), 1, + anon_sym_readonly, + STATE(2635), 1, + sym_comment, + STATE(3516), 1, + sym_override_modifier, + STATE(3892), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5148), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5900), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4376), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [66541] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2636), 1, + sym_comment, + ACTIONS(5322), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5904), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5320), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -277370,263 +266573,373 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 16, + ACTIONS(5324), 23, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [64373] = 36, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66602] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - ACTIONS(5830), 1, - anon_sym_COMMA, - ACTIONS(5850), 1, - anon_sym_RPAREN, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2762), 1, + STATE(2637), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - STATE(6443), 1, - aux_sym_array_repeat1, - ACTIONS(4877), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64492] = 23, + ACTIONS(5906), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [66717] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, + anon_sym_COMMA, + ACTIONS(5336), 1, + anon_sym_RBRACE, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(2638), 1, + sym_comment, + STATE(4736), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [66798] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + STATE(2639), 1, + sym_comment, + ACTIONS(4349), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4869), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4811), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, anon_sym_QMARK_DOT, - ACTIONS(5794), 1, - anon_sym_GT_GT, - ACTIONS(5806), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5808), 1, anon_sym_STAR_STAR, - ACTIONS(5810), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2763), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5784), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [66855] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2640), 1, + sym_comment, + ACTIONS(5172), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5788), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5796), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5804), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(5812), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4955), 5, - anon_sym_BANG, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 12, + ACTIONS(5174), 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, - [64585] = 30, + [66912] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(5790), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(5792), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(5794), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(5798), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(5802), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(5806), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(5808), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(5810), 1, + ACTIONS(4921), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + ACTIONS(5797), 1, + anon_sym_COMMA, + ACTIONS(5908), 1, + anon_sym_RBRACK, + STATE(2220), 1, sym_type_arguments, - STATE(2764), 1, + STATE(2641), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5784), 2, + STATE(6206), 1, + aux_sym_array_repeat1, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5788), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5796), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5804), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5814), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5812), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [64692] = 5, + [67031] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2765), 1, + STATE(2642), 1, sym_comment, - ACTIONS(4851), 13, + ACTIONS(4345), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -277640,7 +266953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4853), 30, + ACTIONS(4839), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -277670,397 +266983,421 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_is, - [64749] = 34, + anon_sym_PIPE_RBRACE, + [67088] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5790), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(5792), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(5794), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(5798), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(5802), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(5806), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(5808), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(5810), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(5818), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(5820), 1, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(2372), 1, + ACTIONS(5797), 1, + anon_sym_COMMA, + ACTIONS(5910), 1, + anon_sym_RPAREN, + STATE(2220), 1, sym_type_arguments, - STATE(2766), 1, + STATE(2643), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5784), 2, + STATE(6189), 1, + aux_sym_array_repeat1, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5788), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5796), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5804), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5814), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5154), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5812), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64864] = 36, + [67207] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5815), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(5817), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(5819), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(5823), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(5825), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(5827), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(5831), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(5833), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(5843), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(5845), 1, sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5852), 1, - anon_sym_RBRACK, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2767), 1, + STATE(2644), 1, sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5811), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(5813), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(5821), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(5829), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(5841), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(5300), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5837), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64983] = 34, + [67322] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5790), 1, + ACTIONS(5815), 1, anon_sym_AMP_AMP, - ACTIONS(5792), 1, + ACTIONS(5817), 1, anon_sym_PIPE_PIPE, - ACTIONS(5794), 1, + ACTIONS(5819), 1, anon_sym_GT_GT, - ACTIONS(5798), 1, + ACTIONS(5823), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(5825), 1, anon_sym_CARET, - ACTIONS(5802), 1, + ACTIONS(5827), 1, anon_sym_PIPE, - ACTIONS(5806), 1, + ACTIONS(5831), 1, anon_sym_PERCENT, - ACTIONS(5808), 1, + ACTIONS(5833), 1, anon_sym_STAR_STAR, - ACTIONS(5810), 1, + ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(5818), 1, + ACTIONS(5843), 1, anon_sym_QMARK_QMARK, - ACTIONS(5820), 1, + ACTIONS(5845), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2768), 1, + STATE(2645), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5784), 2, + ACTIONS(5811), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5788), 2, + ACTIONS(5813), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5796), 2, + ACTIONS(5821), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5804), 2, + ACTIONS(5829), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5814), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 2, + ACTIONS(5841), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5179), 3, + ACTIONS(5194), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5812), 3, + ACTIONS(5837), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65098] = 35, + [67437] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5100), 1, - anon_sym_COMMA, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(2739), 1, + ACTIONS(5797), 1, + anon_sym_COMMA, + ACTIONS(5912), 1, + anon_sym_RPAREN, + STATE(2220), 1, sym_type_arguments, - STATE(2769), 1, + STATE(2646), 1, sym_comment, - STATE(6093), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(5361), 2, + STATE(6233), 1, + aux_sym_array_repeat1, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5854), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65215] = 6, + [67556] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5427), 1, - anon_sym_is, - STATE(2770), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5819), 1, + anon_sym_GT_GT, + ACTIONS(5831), 1, + anon_sym_PERCENT, + ACTIONS(5833), 1, + anon_sym_STAR_STAR, + ACTIONS(5835), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2647), 1, sym_comment, - ACTIONS(4859), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5811), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5821), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5829), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4861), 29, - sym__automatic_semicolon, + ACTIONS(4944), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [65274] = 6, + anon_sym_implements, + [67645] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5856), 1, - anon_sym_is, - STATE(2771), 1, + ACTIONS(4267), 1, + anon_sym_QMARK, + ACTIONS(4284), 1, + anon_sym_EQ, + STATE(2648), 1, sym_comment, - ACTIONS(4835), 13, + ACTIONS(4287), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278074,15 +267411,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4837), 29, - sym__automatic_semicolon, + ACTIONS(4141), 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, @@ -278103,1380 +267435,1181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [65333] = 36, + [67708] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - ACTIONS(5830), 1, - anon_sym_COMMA, - ACTIONS(5858), 1, - anon_sym_RPAREN, - STATE(2372), 1, - sym_type_arguments, - STATE(2772), 1, - sym_comment, - STATE(6148), 1, - aux_sym_array_repeat1, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [65452] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(5488), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2773), 1, + STATE(2649), 1, sym_comment, - STATE(6354), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(5214), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5860), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [65567] = 36, + [67823] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5862), 1, - anon_sym_RBRACE, - STATE(2372), 1, + ACTIONS(5914), 1, + anon_sym_RBRACK, + STATE(2220), 1, sym_type_arguments, - STATE(2774), 1, + STATE(2650), 1, sym_comment, - STATE(4803), 1, + STATE(4631), 1, aux_sym_sequence_expression_repeat1, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [65686] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4123), 1, - anon_sym_EQ, - ACTIONS(5286), 1, - anon_sym_extends, - STATE(2775), 1, - sym_comment, - ACTIONS(5675), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5678), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4121), 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(4125), 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, + ACTIONS(4923), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [65751] = 36, + [67942] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5864), 1, - anon_sym_RPAREN, - STATE(2372), 1, + ACTIONS(5916), 1, + anon_sym_COLON, + STATE(2220), 1, sym_type_arguments, - STATE(2776), 1, + STATE(2651), 1, sym_comment, - STATE(4803), 1, + STATE(4631), 1, aux_sym_sequence_expression_repeat1, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65870] = 9, + [68061] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4205), 1, - anon_sym_EQ, - ACTIONS(5675), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, anon_sym_LBRACK, - STATE(2777), 1, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5833), 1, + anon_sym_STAR_STAR, + ACTIONS(5918), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2652), 1, sym_comment, - ACTIONS(5678), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5286), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4121), 11, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 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_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 22, + ACTIONS(4944), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [65935] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(5866), 1, - anon_sym_static, - ACTIONS(5868), 1, - anon_sym_readonly, - ACTIONS(5870), 1, - anon_sym_abstract, - STATE(2778), 1, - sym_comment, - STATE(3622), 1, - sym_accessibility_modifier, - STATE(3717), 1, - sym_override_modifier, - STATE(4325), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4548), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - ACTIONS(1043), 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(4372), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [66020] = 36, + anon_sym_implements, + [68140] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - ACTIONS(5830), 1, - anon_sym_COMMA, - ACTIONS(5872), 1, + ACTIONS(5921), 1, anon_sym_RPAREN, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2779), 1, + STATE(2653), 1, sym_comment, - STATE(6196), 1, - aux_sym_array_repeat1, - STATE(6354), 1, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66139] = 34, + [68259] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5170), 1, + anon_sym_COMMA, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5790), 1, + ACTIONS(5458), 1, anon_sym_AMP_AMP, - ACTIONS(5792), 1, + ACTIONS(5460), 1, anon_sym_PIPE_PIPE, - ACTIONS(5794), 1, + ACTIONS(5462), 1, anon_sym_GT_GT, - ACTIONS(5798), 1, + ACTIONS(5466), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(5468), 1, anon_sym_CARET, - ACTIONS(5802), 1, + ACTIONS(5470), 1, anon_sym_PIPE, - ACTIONS(5806), 1, + ACTIONS(5474), 1, anon_sym_PERCENT, - ACTIONS(5808), 1, + ACTIONS(5476), 1, anon_sym_STAR_STAR, - ACTIONS(5810), 1, + ACTIONS(5478), 1, anon_sym_LT, - ACTIONS(5818), 1, + ACTIONS(5486), 1, anon_sym_QMARK_QMARK, - ACTIONS(5820), 1, + ACTIONS(5488), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2780), 1, + STATE(2654), 1, sym_comment, - STATE(6354), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5784), 2, + ACTIONS(5454), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5788), 2, + ACTIONS(5456), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5796), 2, + ACTIONS(5464), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5804), 2, + ACTIONS(5472), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5814), 2, + ACTIONS(5482), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 2, + ACTIONS(5484), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + ACTIONS(5923), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5212), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5812), 3, + ACTIONS(5480), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66254] = 34, + [68376] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5790), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(5792), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(5794), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(5798), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(5802), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(5806), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(5808), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(5810), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(5818), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(5820), 1, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(2372), 1, + ACTIONS(5925), 1, + anon_sym_RPAREN, + STATE(2220), 1, sym_type_arguments, - STATE(2781), 1, + STATE(2655), 1, sym_comment, - STATE(6354), 1, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5784), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5788), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5796), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5804), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5814), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5214), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5812), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66369] = 34, + [68495] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5790), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(5792), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(5794), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(5798), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(5802), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(5806), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(5808), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(5810), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(5818), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(5820), 1, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(2372), 1, + ACTIONS(5797), 1, + anon_sym_COMMA, + ACTIONS(5927), 1, + anon_sym_RPAREN, + STATE(2220), 1, sym_type_arguments, - STATE(2782), 1, + STATE(2656), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5784), 2, + STATE(6260), 1, + aux_sym_array_repeat1, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5788), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5796), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5804), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5814), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5216), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5812), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66484] = 34, + [68614] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5790), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(5792), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(5794), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(5798), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(5802), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(5806), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(5808), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(5810), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(5818), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(5820), 1, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, sym__ternary_qmark, - STATE(2372), 1, + ACTIONS(5929), 1, + anon_sym_RBRACE, + STATE(2220), 1, sym_type_arguments, - STATE(2783), 1, + STATE(2657), 1, sym_comment, - STATE(6354), 1, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5784), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5788), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5796), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5804), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5814), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5241), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5812), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66599] = 34, + [68733] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5790), 1, - anon_sym_AMP_AMP, - ACTIONS(5792), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5794), 1, + ACTIONS(4946), 1, + anon_sym_BANG, + ACTIONS(5819), 1, anon_sym_GT_GT, - ACTIONS(5798), 1, + ACTIONS(5823), 1, anon_sym_AMP, - ACTIONS(5800), 1, + ACTIONS(5825), 1, anon_sym_CARET, - ACTIONS(5802), 1, + ACTIONS(5827), 1, anon_sym_PIPE, - ACTIONS(5806), 1, + ACTIONS(5831), 1, anon_sym_PERCENT, - ACTIONS(5808), 1, + ACTIONS(5833), 1, anon_sym_STAR_STAR, - ACTIONS(5810), 1, + ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(5818), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5820), 1, - sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2784), 1, + STATE(2658), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5784), 2, + ACTIONS(5811), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5788), 2, + ACTIONS(5813), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5796), 2, + ACTIONS(5821), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5804), 2, + ACTIONS(5829), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5814), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 2, + ACTIONS(5841), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5026), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5812), 3, + ACTIONS(5837), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66714] = 35, + ACTIONS(4944), 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, + [68836] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2071), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5100), 1, + ACTIONS(5343), 1, + anon_sym_LBRACK, + STATE(2659), 1, + sym_comment, + ACTIONS(5346), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5931), 2, anon_sym_COMMA, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, + anon_sym_RBRACE, + ACTIONS(3570), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2069), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5369), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2075), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, anon_sym_DOT, - ACTIONS(5379), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5381), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, - anon_sym_GT_GT, - ACTIONS(5387), 1, - anon_sym_AMP, - ACTIONS(5389), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5391), 1, - anon_sym_PIPE, - ACTIONS(5395), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, - anon_sym_LT, - ACTIONS(5407), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(5413), 1, anon_sym_satisfies, - ACTIONS(5415), 1, - sym__ternary_qmark, - STATE(2739), 1, - sym_type_arguments, - STATE(2785), 1, + [68903] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5935), 1, + anon_sym_is, + STATE(2660), 1, sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(4855), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5371), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5393), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5874), 2, + ACTIONS(4857), 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, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5401), 3, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [66831] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(5876), 1, - anon_sym_static, - ACTIONS(5878), 1, - anon_sym_readonly, - ACTIONS(5880), 1, - anon_sym_abstract, - STATE(2786), 1, - sym_comment, - STATE(3617), 1, - sym_accessibility_modifier, - STATE(3741), 1, - sym_override_modifier, - STATE(4393), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4548), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - ACTIONS(1043), 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(4372), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [66916] = 36, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [68962] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5882), 1, - anon_sym_RBRACK, - STATE(2372), 1, + ACTIONS(5937), 1, + anon_sym_RPAREN, + STATE(2220), 1, sym_type_arguments, - STATE(2787), 1, + STATE(2661), 1, sym_comment, - STATE(4803), 1, + STATE(4631), 1, aux_sym_sequence_expression_repeat1, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67035] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, + [69081] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5650), 1, + anon_sym_is, + STATE(2662), 1, + sym_comment, + ACTIONS(4841), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4843), 29, sym__automatic_semicolon, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(4944), 1, anon_sym_RBRACE, - ACTIONS(5477), 1, - anon_sym_LBRACK, - STATE(2788), 1, - sym_comment, - STATE(4890), 1, - sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67116] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [69140] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4939), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5322), 1, anon_sym_EQ, - ACTIONS(4941), 1, + ACTIONS(5326), 1, + anon_sym_LBRACK, + STATE(2663), 1, + sym_comment, + ACTIONS(5003), 2, anon_sym_COMMA, - ACTIONS(5340), 1, + anon_sym_extends, + ACTIONS(5329), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5320), 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(5324), 26, + sym__ternary_qmark, + anon_sym_as, anon_sym_RBRACE, - ACTIONS(5477), 1, + 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, + [69205] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2071), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5343), 1, anon_sym_LBRACK, - STATE(2789), 1, + STATE(2664), 1, sym_comment, - STATE(4890), 1, - sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(3570), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5346), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2069), 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(2075), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67197] = 8, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [69270] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4252), 1, + ACTIONS(4195), 1, anon_sym_EQ, - ACTIONS(4257), 1, + ACTIONS(4267), 1, anon_sym_QMARK, - STATE(2790), 1, + STATE(2665), 1, sym_comment, - ACTIONS(4255), 5, + ACTIONS(4264), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4121), 13, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279490,7 +268623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(4141), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -279514,709 +268647,796 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67260] = 36, + [69333] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4946), 1, + anon_sym_BANG, + ACTIONS(5815), 1, + anon_sym_AMP_AMP, + ACTIONS(5819), 1, + anon_sym_GT_GT, + ACTIONS(5823), 1, + anon_sym_AMP, + ACTIONS(5825), 1, + anon_sym_CARET, + ACTIONS(5827), 1, + anon_sym_PIPE, + ACTIONS(5831), 1, + anon_sym_PERCENT, + ACTIONS(5833), 1, + anon_sym_STAR_STAR, + ACTIONS(5835), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2666), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5811), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5813), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5821), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5829), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5839), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5841), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5837), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 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, + [69438] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5815), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(5817), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(5819), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(5823), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(5825), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(5827), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(5831), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(5833), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(5843), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(5845), 1, sym__ternary_qmark, - ACTIONS(5000), 1, + STATE(2220), 1, + sym_type_arguments, + STATE(2667), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5811), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5813), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5821), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5829), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5839), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5841), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4976), 3, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5884), 1, - anon_sym_RPAREN, - STATE(2372), 1, + anon_sym_implements, + ACTIONS(5837), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69553] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5831), 1, + anon_sym_PERCENT, + ACTIONS(5833), 1, + anon_sym_STAR_STAR, + ACTIONS(5918), 1, + anon_sym_LT, + STATE(2220), 1, sym_type_arguments, - STATE(2791), 1, + STATE(2668), 1, sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5811), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(5829), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 8, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4944), 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, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [67379] = 34, + anon_sym_satisfies, + anon_sym_implements, + [69638] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(5379), 1, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5815), 1, anon_sym_AMP_AMP, - ACTIONS(5381), 1, + ACTIONS(5817), 1, anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(5819), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5823), 1, anon_sym_AMP, - ACTIONS(5389), 1, + ACTIONS(5825), 1, anon_sym_CARET, - ACTIONS(5391), 1, + ACTIONS(5827), 1, anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5831), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5833), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(5407), 1, + ACTIONS(5843), 1, anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, + ACTIONS(5845), 1, sym__ternary_qmark, - STATE(2739), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2792), 1, + STATE(2669), 1, sym_comment, - STATE(6093), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5811), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5813), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5821), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5829), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5841), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5296), 3, - sym__automatic_semicolon, + ACTIONS(4985), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(5401), 3, + anon_sym_implements, + ACTIONS(5837), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67494] = 36, + [69753] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - ACTIONS(5000), 1, + ACTIONS(5797), 1, anon_sym_COMMA, - ACTIONS(5886), 1, - anon_sym_RPAREN, - STATE(2372), 1, + ACTIONS(5939), 1, + anon_sym_RBRACK, + STATE(2220), 1, sym_type_arguments, - STATE(2793), 1, + STATE(2670), 1, sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, + STATE(5970), 1, + aux_sym_array_repeat1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67613] = 34, + [69872] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4946), 1, + anon_sym_BANG, + ACTIONS(5815), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(5817), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(5819), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(5823), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(5825), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(5827), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(5831), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(5833), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2794), 1, + STATE(2671), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5811), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(5813), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(5821), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(5829), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(5841), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(5837), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5888), 3, + ACTIONS(4944), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [67728] = 36, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [69979] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(5819), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(5831), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(5833), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - ACTIONS(5830), 1, - anon_sym_COMMA, - ACTIONS(5890), 1, - anon_sym_RPAREN, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2795), 1, + STATE(2672), 1, sym_comment, - STATE(6332), 1, - aux_sym_array_repeat1, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5811), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(5813), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(5821), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(5829), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(5841), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(4946), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5837), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67847] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, + ACTIONS(4944), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5265), 1, - anon_sym_RBRACE, - ACTIONS(5477), 1, - anon_sym_LBRACK, - STATE(2796), 1, - sym_comment, - STATE(4890), 1, - sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [67928] = 35, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [70076] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5100), 1, - anon_sym_COMMA, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5819), 1, anon_sym_GT_GT, - ACTIONS(5387), 1, + ACTIONS(5823), 1, anon_sym_AMP, - ACTIONS(5389), 1, - anon_sym_CARET, - ACTIONS(5391), 1, - anon_sym_PIPE, - ACTIONS(5395), 1, + ACTIONS(5831), 1, anon_sym_PERCENT, - ACTIONS(5397), 1, + ACTIONS(5833), 1, anon_sym_STAR_STAR, - ACTIONS(5399), 1, + ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(5407), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, - sym__ternary_qmark, - STATE(2739), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2797), 1, + STATE(2673), 1, sym_comment, - STATE(6093), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4946), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5811), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5371), 2, + ACTIONS(5813), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, + ACTIONS(5821), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5393), 2, + ACTIONS(5829), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, + ACTIONS(5841), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5892), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5401), 3, + ACTIONS(5837), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68045] = 36, + ACTIONS(4944), 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, + [70175] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(5819), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(5823), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(5825), 1, anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(5831), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(5833), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5894), 1, - anon_sym_RBRACK, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2798), 1, + STATE(2674), 1, sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4946), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5811), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(5813), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(5821), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(5829), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(5839), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(5841), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(5837), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68164] = 7, + ACTIONS(4944), 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, + [70276] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5425), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5819), 1, + anon_sym_GT_GT, + ACTIONS(5831), 1, + anon_sym_PERCENT, + ACTIONS(5833), 1, + anon_sym_STAR_STAR, + ACTIONS(5835), 1, anon_sym_LT, - STATE(2799), 1, - sym_comment, - STATE(3018), 1, + STATE(2220), 1, sym_type_arguments, - ACTIONS(4835), 12, + STATE(2675), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5811), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5813), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5821), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5829), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5837), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4946), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4837), 29, - sym__automatic_semicolon, + ACTIONS(4944), 12, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [68225] = 5, + anon_sym_implements, + [70369] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2800), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5831), 1, + anon_sym_PERCENT, + ACTIONS(5833), 1, + anon_sym_STAR_STAR, + ACTIONS(5918), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2676), 1, sym_comment, - ACTIONS(5306), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5811), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -280225,57 +269445,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 30, + ACTIONS(4944), 17, 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, - [68282] = 8, + [70452] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5423), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(5425), 1, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5833), 1, + anon_sym_STAR_STAR, + ACTIONS(5918), 1, anon_sym_LT, - STATE(2801), 1, - sym_comment, - STATE(3035), 1, + STATE(2220), 1, sym_type_arguments, - ACTIONS(4817), 12, + STATE(2677), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -280286,162 +269514,211 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4203), 28, - sym__automatic_semicolon, + ACTIONS(4944), 16, sym__ternary_qmark, - anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [68345] = 5, + anon_sym_implements, + [70537] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2802), 1, - sym_comment, - ACTIONS(1978), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2030), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4791), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4801), 1, anon_sym_LBRACK, + ACTIONS(4803), 1, anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, + ACTIONS(4901), 1, anon_sym_AMP_AMP, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, anon_sym_PERCENT, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4933), 1, anon_sym_satisfies, - anon_sym_extends, - anon_sym_is, - [68402] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2803), 1, + ACTIONS(4935), 1, + sym__ternary_qmark, + ACTIONS(5941), 1, + anon_sym_RPAREN, + STATE(2220), 1, + sym_type_arguments, + STATE(2678), 1, sym_comment, - ACTIONS(4352), 13, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4845), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70656] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4801), 1, anon_sym_LBRACK, + ACTIONS(4803), 1, anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4891), 1, + anon_sym_COMMA, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, + ACTIONS(4901), 1, anon_sym_AMP_AMP, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, anon_sym_PERCENT, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + ACTIONS(5943), 1, + anon_sym_RPAREN, + STATE(2220), 1, + sym_type_arguments, + STATE(2679), 1, + sym_comment, + STATE(4631), 1, + aux_sym_sequence_expression_repeat1, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [68459] = 10, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70775] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5259), 1, + ACTIONS(4195), 1, + anon_sym_EQ, + ACTIONS(5779), 1, anon_sym_LBRACK, - STATE(2804), 1, + STATE(2680), 1, sym_comment, - ACTIONS(5262), 2, + ACTIONS(5782), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5896), 2, + ACTIONS(5190), 6, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3432), 4, - sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(2069), 11, + ACTIONS(4137), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280453,7 +269730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 22, + ACTIONS(4141), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -280476,33 +269753,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68526] = 10, + [70840] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5270), 1, - anon_sym_EQ, - ACTIONS(5274), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, anon_sym_LBRACK, - STATE(2805), 1, - sym_comment, - ACTIONS(5277), 2, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(5900), 2, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + ACTIONS(5797), 1, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5239), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(5945), 1, + anon_sym_RPAREN, + STATE(2220), 1, + sym_type_arguments, + STATE(2681), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + STATE(6278), 1, + aux_sym_array_repeat1, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4925), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70959] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5190), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(5268), 11, + STATE(2682), 1, + sym_comment, + ACTIONS(5779), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5782), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4137), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -280510,10 +269863,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5272), 22, + ACTIONS(4141), 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, @@ -280533,16 +269890,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [68593] = 6, + [71021] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5427), 1, - anon_sym_is, - STATE(2806), 1, + STATE(2683), 1, sym_comment, - ACTIONS(4847), 13, + ACTIONS(5021), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280556,7 +269911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4849), 29, + ACTIONS(5023), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -280586,430 +269941,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [68652] = 34, + [71077] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5379), 1, - anon_sym_AMP_AMP, - ACTIONS(5381), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5383), 1, - anon_sym_GT_GT, - ACTIONS(5387), 1, - anon_sym_AMP, - ACTIONS(5389), 1, - anon_sym_CARET, - ACTIONS(5391), 1, - anon_sym_PIPE, - ACTIONS(5395), 1, - anon_sym_PERCENT, - ACTIONS(5397), 1, - anon_sym_STAR_STAR, - ACTIONS(5399), 1, - anon_sym_LT, - ACTIONS(5407), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5415), 1, - sym__ternary_qmark, - STATE(2739), 1, - sym_type_arguments, - STATE(2807), 1, + STATE(2684), 1, sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5361), 2, + ACTIONS(5102), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5371), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5385), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5393), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5403), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5405), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5401), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5431), 3, + ACTIONS(5104), 29, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, - [68767] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4811), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - ACTIONS(5830), 1, - anon_sym_COMMA, - ACTIONS(5904), 1, - anon_sym_RBRACK, - STATE(2372), 1, - sym_type_arguments, - STATE(2808), 1, - sym_comment, - STATE(6287), 1, - aux_sym_array_repeat1, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68886] = 36, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [71133] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5906), 1, - anon_sym_RBRACE, - STATE(2372), 1, - sym_type_arguments, - STATE(2809), 1, + STATE(2685), 1, sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(5110), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69005] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5790), 1, - anon_sym_AMP_AMP, - ACTIONS(5792), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5794), 1, anon_sym_GT_GT, - ACTIONS(5798), 1, anon_sym_AMP, - ACTIONS(5800), 1, - anon_sym_CARET, - ACTIONS(5802), 1, anon_sym_PIPE, - ACTIONS(5806), 1, - anon_sym_PERCENT, - ACTIONS(5808), 1, - anon_sym_STAR_STAR, - ACTIONS(5810), 1, - anon_sym_LT, - ACTIONS(5818), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5820), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(2810), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5784), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5788), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5796), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5804), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5814), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5816), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(5304), 3, - anon_sym_LBRACE, + ACTIONS(5112), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5812), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69120] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4811), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5908), 1, - anon_sym_RPAREN, - STATE(2372), 1, - sym_type_arguments, - STATE(2811), 1, - sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69239] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [71189] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2812), 1, + STATE(2686), 1, sym_comment, - ACTIONS(5137), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(5306), 13, + ACTIONS(5102), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281023,13 +270064,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 26, + ACTIONS(5104), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -281050,90 +270093,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69298] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4937), 1, - anon_sym_STAR, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(4949), 1, - anon_sym_async, - ACTIONS(4951), 1, - anon_sym_readonly, - STATE(2813), 1, - sym_comment, - STATE(3670), 1, - sym_override_modifier, - STATE(4017), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4953), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5910), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4372), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [69385] = 7, + anon_sym_extends, + [71245] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2814), 1, + STATE(2687), 1, sym_comment, - ACTIONS(2071), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5914), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2069), 13, + ACTIONS(5110), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281147,10 +270115,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 23, + ACTIONS(5112), 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, @@ -281171,189 +270144,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69446] = 36, + anon_sym_extends, + [71301] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5916), 1, - anon_sym_RBRACE, - STATE(2372), 1, - sym_type_arguments, - STATE(2815), 1, + STATE(2688), 1, sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(5124), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [69565] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(5126), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4811), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5918), 1, - anon_sym_RBRACK, - STATE(2372), 1, - sym_type_arguments, - STATE(2816), 1, - sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69684] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [71357] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2817), 1, + STATE(2689), 1, sym_comment, - ACTIONS(5419), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5920), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5417), 13, + ACTIONS(5128), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281367,10 +270217,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5421), 23, + ACTIONS(5130), 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, @@ -281391,107 +270246,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69745] = 36, + anon_sym_extends, + [71413] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, + STATE(2690), 1, + sym_comment, + ACTIONS(5124), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4897), 1, anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5126), 29, + sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(5830), 1, + anon_sym_as, anon_sym_COMMA, - ACTIONS(5922), 1, - anon_sym_RBRACK, - STATE(2372), 1, - sym_type_arguments, - STATE(2818), 1, - sym_comment, - STATE(6308), 1, - aux_sym_array_repeat1, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [69864] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [71469] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4222), 1, - anon_sym_EQ, - ACTIONS(4246), 1, - anon_sym_QMARK, - STATE(2819), 1, + STATE(2691), 1, sym_comment, - ACTIONS(4242), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4121), 13, + ACTIONS(5128), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281505,10 +270319,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(5130), 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, @@ -281529,14 +270348,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69927] = 5, + anon_sym_extends, + [71525] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2820), 1, + STATE(2692), 1, sym_comment, - ACTIONS(4345), 13, + ACTIONS(3232), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281550,7 +270370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4869), 30, + ACTIONS(3506), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -281580,107 +270400,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [69984] = 36, + [71581] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, + STATE(2693), 1, + sym_comment, + ACTIONS(5158), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(4897), 1, anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5160), 29, + sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(5830), 1, + anon_sym_as, anon_sym_COMMA, - ACTIONS(5924), 1, - anon_sym_RPAREN, - STATE(2372), 1, - sym_type_arguments, - STATE(2821), 1, - sym_comment, - STATE(6159), 1, - aux_sym_array_repeat1, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70103] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [71637] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2822), 1, + STATE(2694), 1, sym_comment, - ACTIONS(5270), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5926), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5268), 13, + ACTIONS(5166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281694,10 +270472,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5272), 23, + ACTIONS(5168), 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, @@ -281718,599 +270501,363 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [70164] = 36, + anon_sym_extends, + [71693] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(5983), 1, sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5928), 1, - anon_sym_RPAREN, - STATE(2372), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2823), 1, + STATE(2695), 1, sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(5951), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70283] = 36, + [71807] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5930), 1, - anon_sym_RPAREN, - STATE(2372), 1, - sym_type_arguments, - STATE(2824), 1, + ACTIONS(5322), 1, + anon_sym_EQ, + STATE(2696), 1, sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(5320), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70402] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(5324), 28, sym__automatic_semicolon, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(5124), 1, anon_sym_RBRACE, - ACTIONS(5477), 1, - anon_sym_LBRACK, - STATE(2825), 1, - sym_comment, - STATE(4890), 1, - sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [70483] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - ACTIONS(5830), 1, - anon_sym_COMMA, - ACTIONS(5932), 1, - anon_sym_RPAREN, - STATE(2372), 1, - sym_type_arguments, - STATE(2826), 1, - sym_comment, - STATE(5906), 1, - aux_sym_array_repeat1, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4913), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4915), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70602] = 36, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71865] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, + STATE(2697), 1, + sym_comment, + ACTIONS(5782), 2, anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - ACTIONS(5000), 1, + ACTIONS(5779), 3, anon_sym_COMMA, - ACTIONS(5934), 1, - anon_sym_RPAREN, - STATE(2372), 1, - sym_type_arguments, - STATE(2827), 1, - sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5190), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4137), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [70721] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4141), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, - anon_sym_LT, - ACTIONS(4917), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5936), 1, - anon_sym_RPAREN, - STATE(2372), 1, - sym_type_arguments, - STATE(2828), 1, + [71927] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4231), 1, + anon_sym_EQ, + ACTIONS(5190), 1, + anon_sym_extends, + STATE(2698), 1, sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(5779), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5782), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4137), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(4141), 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, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [70840] = 36, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [71991] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(4901), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(4903), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(4905), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(4909), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(4911), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(4913), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(4917), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(4919), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(4929), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(4935), 1, sym__ternary_qmark, - ACTIONS(5000), 1, - anon_sym_COMMA, - ACTIONS(5938), 1, - anon_sym_COLON, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2829), 1, + STATE(2699), 1, sym_comment, - STATE(4803), 1, - aux_sym_sequence_expression_repeat1, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(4887), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(4907), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(4927), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + ACTIONS(5614), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(4923), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70959] = 5, + [72105] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2830), 1, + ACTIONS(5773), 1, + anon_sym_LBRACK, + STATE(2700), 1, sym_comment, - ACTIONS(3196), 13, + ACTIONS(4843), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5776), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4137), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3436), 29, - sym__automatic_semicolon, + ACTIONS(4141), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -282330,21 +270877,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [71015] = 8, + [72167] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5940), 1, + STATE(2701), 1, + sym_comment, + ACTIONS(5526), 2, anon_sym_AMP, - ACTIONS(5942), 1, anon_sym_PIPE, - ACTIONS(5944), 1, + ACTIONS(5523), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5043), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_extends, - STATE(2831), 1, - sym_comment, - ACTIONS(5222), 11, + anon_sym_PIPE_RBRACE, + ACTIONS(5519), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282356,16 +270908,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5224), 28, - sym__automatic_semicolon, + ACTIONS(5521), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -282385,112 +270931,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71077] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5950), 1, - anon_sym_AMP_AMP, - ACTIONS(5952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, - anon_sym_AMP, - ACTIONS(5960), 1, - anon_sym_CARET, - ACTIONS(5962), 1, - anon_sym_PIPE, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - ACTIONS(5978), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, - sym__ternary_qmark, - STATE(2739), 1, - sym_type_arguments, - STATE(2832), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(4986), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5974), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5976), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [71191] = 8, + [72229] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5940), 1, - anon_sym_AMP, - ACTIONS(5942), 1, - anon_sym_PIPE, - ACTIONS(5944), 1, - anon_sym_extends, - STATE(2833), 1, + STATE(2702), 1, sym_comment, - ACTIONS(5218), 11, + ACTIONS(5210), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5220), 28, + ACTIONS(5212), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282519,14 +270981,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71253] = 5, + anon_sym_extends, + [72285] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2834), 1, + STATE(2703), 1, sym_comment, - ACTIONS(3172), 13, + ACTIONS(5154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282540,7 +271003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3440), 29, + ACTIONS(5156), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282570,14 +271033,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71309] = 5, + [72341] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(5985), 1, + anon_sym_STAR, + ACTIONS(5987), 1, + anon_sym_RBRACE, + STATE(2704), 1, + sym_comment, + STATE(3531), 1, + sym_override_modifier, + STATE(4808), 1, + sym__property_name, + STATE(5868), 1, + aux_sym_object_repeat1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [72431] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2835), 1, + STATE(2705), 1, sym_comment, - ACTIONS(3224), 13, + ACTIONS(5154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282591,7 +271122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3442), 29, + ACTIONS(5156), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282621,14 +271152,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71365] = 5, + [72487] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2836), 1, + STATE(2706), 1, sym_comment, - ACTIONS(5316), 13, + ACTIONS(5106), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282642,7 +271173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5318), 29, + ACTIONS(5108), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282672,14 +271203,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71421] = 5, + [72543] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2837), 1, + STATE(2707), 1, sym_comment, - ACTIONS(5288), 13, + ACTIONS(5106), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282693,7 +271224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5290), 29, + ACTIONS(5108), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282723,39 +271254,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71477] = 6, + [72599] = 12, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2071), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4837), 1, + ACTIONS(3236), 1, + anon_sym_QMARK, + ACTIONS(3570), 1, anon_sym_extends, - STATE(2838), 1, + ACTIONS(5343), 1, + anon_sym_LBRACK, + ACTIONS(5807), 1, + anon_sym_COLON, + STATE(2708), 1, sym_comment, - ACTIONS(5255), 13, + ACTIONS(5346), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5931), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2069), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5257), 28, - sym__automatic_semicolon, + ACTIONS(2075), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -282775,14 +271312,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71535] = 5, + [72669] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2839), 1, + STATE(2709), 1, sym_comment, - ACTIONS(5320), 13, + ACTIONS(5094), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282796,7 +271333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5322), 29, + ACTIONS(5096), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282826,37 +271363,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71591] = 5, + [72725] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2840), 1, + STATE(2710), 1, sym_comment, - ACTIONS(5324), 13, + ACTIONS(5029), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5031), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4137), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5326), 29, - sym__automatic_semicolon, + ACTIONS(4141), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -282876,90 +271416,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [71647] = 29, + [72785] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5523), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5950), 1, - anon_sym_AMP_AMP, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, + STATE(2711), 1, + sym_comment, + ACTIONS(5043), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5526), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(5960), 1, - anon_sym_CARET, - ACTIONS(5962), 1, anon_sym_PIPE, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - STATE(2739), 1, - sym_type_arguments, - STATE(2841), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, + ACTIONS(5519), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5974), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5976), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 7, - sym__automatic_semicolon, + ACTIONS(5521), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [71751] = 5, + [72847] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2842), 1, + STATE(2712), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5098), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282973,7 +271491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5122), 29, + ACTIONS(5100), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283003,20 +271521,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71807] = 8, + [72903] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5940), 1, + STATE(2713), 1, + sym_comment, + ACTIONS(5776), 2, anon_sym_AMP, - ACTIONS(5942), 1, anon_sym_PIPE, - ACTIONS(5944), 1, + ACTIONS(5773), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4843), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_extends, - STATE(2843), 1, - sym_comment, - ACTIONS(5163), 11, + anon_sym_PIPE_RBRACE, + ACTIONS(4137), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283028,16 +271552,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 28, - sym__automatic_semicolon, + ACTIONS(4141), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -283057,65 +271575,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [71869] = 5, + [72965] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2844), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2714), 1, sym_comment, - ACTIONS(5163), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5989), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5995), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5165), 29, - sym__automatic_semicolon, + ACTIONS(6009), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6005), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [71925] = 5, + [73061] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2845), 1, + STATE(2715), 1, sym_comment, - ACTIONS(5150), 13, + ACTIONS(5094), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283129,7 +271667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 29, + ACTIONS(5096), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283159,14 +271697,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [71981] = 5, + [73117] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6011), 1, + anon_sym_STAR, + ACTIONS(6013), 1, + anon_sym_async, + ACTIONS(6015), 1, + anon_sym_readonly, + STATE(2716), 1, + sym_comment, + STATE(3527), 1, + sym_override_modifier, + STATE(3809), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6017), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 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(4376), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [73199] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2846), 1, + STATE(2717), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(5304), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283180,7 +271782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5122), 29, + ACTIONS(5306), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283210,32 +271812,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72037] = 8, + [73255] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5940), 1, + ACTIONS(6019), 1, anon_sym_AMP, - ACTIONS(5942), 1, - anon_sym_PIPE, - ACTIONS(5944), 1, - anon_sym_extends, - STATE(2847), 1, + STATE(2718), 1, sym_comment, - ACTIONS(4976), 11, + ACTIONS(5294), 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(4978), 28, + ACTIONS(5296), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283264,14 +271863,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [72099] = 5, + anon_sym_extends, + [73313] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2848), 1, + ACTIONS(4139), 1, + anon_sym_EQ, + STATE(2719), 1, sym_comment, - ACTIONS(5120), 13, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283285,16 +271887,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5122), 29, - sym__automatic_semicolon, + ACTIONS(4141), 28, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -283314,15 +271916,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [72155] = 5, + [73371] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2849), 1, + STATE(2720), 1, sym_comment, - ACTIONS(5004), 13, + ACTIONS(5286), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283336,7 +271937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5006), 29, + ACTIONS(5288), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283366,79 +271967,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72211] = 5, + [73427] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2850), 1, - sym_comment, - ACTIONS(5012), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6019), 1, anon_sym_AMP, + ACTIONS(6021), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5014), 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, + ACTIONS(6023), 1, anon_sym_extends, - [72267] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2851), 1, + STATE(2721), 1, sym_comment, - ACTIONS(4972), 13, + ACTIONS(5266), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4974), 29, + ACTIONS(5268), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283467,15 +272021,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [72323] = 5, + [73489] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2852), 1, + STATE(2722), 1, sym_comment, - ACTIONS(5016), 13, + ACTIONS(5266), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283489,7 +272042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5018), 29, + ACTIONS(5268), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283519,14 +272072,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72379] = 5, + [73545] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2853), 1, + ACTIONS(5261), 1, + anon_sym_DOT, + STATE(2723), 1, sym_comment, - ACTIONS(4925), 13, + ACTIONS(5254), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283540,7 +272095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 29, + ACTIONS(5256), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283550,7 +272105,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -283570,65 +272124,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72435] = 5, + [73603] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2854), 1, - sym_comment, - ACTIONS(4972), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4974), 29, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6011), 1, + anon_sym_STAR, + ACTIONS(6013), 1, + anon_sym_async, + ACTIONS(6025), 1, + anon_sym_abstract, + STATE(2724), 1, + sym_comment, + STATE(3810), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6017), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [72491] = 5, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4376), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [73681] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2855), 1, + ACTIONS(5258), 1, + anon_sym_DOT, + STATE(2725), 1, sym_comment, - ACTIONS(5016), 13, + ACTIONS(5254), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283642,7 +272209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5018), 29, + ACTIONS(5256), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283652,7 +272219,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -283672,14 +272238,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72547] = 5, + [73739] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2856), 1, + STATE(2726), 1, sym_comment, - ACTIONS(5044), 13, + ACTIONS(5310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283693,7 +272259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5046), 29, + ACTIONS(5312), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283723,65 +272289,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72603] = 5, + [73795] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2857), 1, - sym_comment, - ACTIONS(5048), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5050), 29, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4518), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6027), 1, + anon_sym_static, + ACTIONS(6029), 1, + anon_sym_readonly, + ACTIONS(6031), 1, + anon_sym_abstract, + STATE(2727), 1, + sym_comment, + STATE(3577), 1, + sym_override_modifier, + STATE(4233), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [72659] = 5, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4376), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [73875] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2858), 1, + STATE(2728), 1, sym_comment, - ACTIONS(5044), 13, + ACTIONS(5090), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283795,7 +272373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5046), 29, + ACTIONS(5092), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283825,14 +272403,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72715] = 5, + [73931] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2859), 1, + STATE(2729), 1, sym_comment, - ACTIONS(5048), 13, + ACTIONS(5240), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283846,7 +272424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 29, + ACTIONS(5242), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283876,14 +272454,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72771] = 5, + [73987] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2860), 1, + STATE(2730), 1, sym_comment, - ACTIONS(5052), 13, + ACTIONS(5236), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283897,7 +272475,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5054), 29, + ACTIONS(5238), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283927,14 +272505,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72827] = 5, + [74043] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2861), 1, + STATE(2731), 1, sym_comment, - ACTIONS(4925), 13, + ACTIONS(5220), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283948,7 +272526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 29, + ACTIONS(5222), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -283978,14 +272556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72883] = 5, + [74099] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2862), 1, + STATE(2732), 1, sym_comment, - ACTIONS(5056), 13, + ACTIONS(5216), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283999,7 +272577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5058), 29, + ACTIONS(5218), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284029,14 +272607,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72939] = 5, + [74155] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2863), 1, + STATE(2733), 1, sym_comment, - ACTIONS(5052), 13, + ACTIONS(3230), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284050,7 +272628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5054), 29, + ACTIONS(3508), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284080,14 +272658,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [72995] = 5, + [74211] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2864), 1, + STATE(2734), 1, sym_comment, - ACTIONS(5056), 13, + ACTIONS(5086), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284101,7 +272679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5058), 29, + ACTIONS(5088), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284131,14 +272709,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73051] = 5, + [74267] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2865), 1, + STATE(2735), 1, sym_comment, - ACTIONS(5060), 13, + ACTIONS(5206), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284152,7 +272730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5062), 29, + ACTIONS(5208), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284182,14 +272760,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73107] = 5, + [74323] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2866), 1, + STATE(2736), 1, sym_comment, - ACTIONS(4925), 13, + ACTIONS(5202), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284203,7 +272781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4927), 29, + ACTIONS(5204), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284233,14 +272811,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73163] = 5, + [74379] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2867), 1, + STATE(2737), 1, sym_comment, - ACTIONS(5064), 13, + ACTIONS(5198), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284254,7 +272832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5066), 29, + ACTIONS(5200), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284284,14 +272862,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73219] = 5, + [74435] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2868), 1, + STATE(2738), 1, sym_comment, - ACTIONS(4929), 13, + ACTIONS(5176), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284305,7 +272883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4931), 29, + ACTIONS(5178), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284335,88 +272913,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [73275] = 28, + [74491] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2071), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, - anon_sym_AMP, - ACTIONS(5960), 1, - anon_sym_CARET, - ACTIONS(5962), 1, - anon_sym_PIPE, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - STATE(2739), 1, - sym_type_arguments, - STATE(2869), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5974), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5976), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 8, + ACTIONS(6033), 1, 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, - [73377] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2870), 1, + STATE(2739), 1, sym_comment, - ACTIONS(4929), 13, + ACTIONS(2095), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2069), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284430,14 +272941,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4931), 29, - sym__automatic_semicolon, + ACTIONS(2075), 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_DOT, @@ -284459,173 +272967,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [73433] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, + [74553] = 35, ACTIONS(5), 1, sym_html_comment, - ACTIONS(161), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(4556), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5984), 1, - anon_sym_COMMA, - ACTIONS(5986), 1, - anon_sym_RBRACE, - STATE(2871), 1, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, + anon_sym_AMP, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, + anon_sym_LT, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + ACTIONS(6035), 1, + anon_sym_SEMI, + ACTIONS(6037), 1, + sym__automatic_semicolon, + STATE(2627), 1, + sym_type_arguments, + STATE(2740), 1, sym_comment, - STATE(5945), 1, - aux_sym_object_pattern_repeat1, - STATE(7361), 1, - sym__destructuring_pattern, - STATE(7523), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4283), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - STATE(5931), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(5982), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [73515] = 34, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5947), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5949), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5977), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5979), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [74669] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5950), 1, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(5952), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(5958), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(5960), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(5962), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(5966), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(5968), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(5970), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(5978), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, + ACTIONS(5983), 1, sym__ternary_qmark, - STATE(2739), 1, + ACTIONS(6039), 1, + anon_sym_SEMI, + ACTIONS(6041), 1, + sym__automatic_semicolon, + STATE(2627), 1, sym_type_arguments, - STATE(2872), 1, + STATE(2741), 1, sym_comment, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5038), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5946), 2, + ACTIONS(5947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5948), 2, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5956), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5964), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5974), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5976), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5972), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73629] = 5, + [74785] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2873), 1, + ACTIONS(6019), 1, + anon_sym_AMP, + ACTIONS(6021), 1, + anon_sym_PIPE, + ACTIONS(6023), 1, + anon_sym_extends, + STATE(2742), 1, sym_comment, - ACTIONS(4929), 13, + ACTIONS(4950), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4931), 29, + ACTIONS(4952), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284654,100 +273183,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [73685] = 25, + [74847] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - STATE(2739), 1, - sym_type_arguments, - STATE(2874), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5974), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5976), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 3, - anon_sym_BANG, + ACTIONS(6019), 1, anon_sym_AMP, + ACTIONS(6021), 1, anon_sym_PIPE, - ACTIONS(5972), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 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, - [73781] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2875), 1, + ACTIONS(6023), 1, + anon_sym_extends, + STATE(2743), 1, sym_comment, - ACTIONS(4933), 13, + ACTIONS(5078), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4935), 29, + ACTIONS(5080), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -284776,38 +273237,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [73837] = 5, + [74909] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2876), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(5190), 1, + anon_sym_extends, + STATE(2744), 1, sym_comment, - ACTIONS(4962), 13, + ACTIONS(5779), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5782), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4137), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 29, + ACTIONS(4141), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -284827,125 +273292,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [73893] = 22, + [74973] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1053), 1, - anon_sym_RBRACE, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, + ACTIONS(6043), 1, anon_sym_STAR, - STATE(2877), 1, - sym_comment, - STATE(3665), 1, - sym_override_modifier, - STATE(4761), 1, - sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [73983] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, + ACTIONS(6045), 1, anon_sym_async, - ACTIONS(2904), 1, + ACTIONS(6047), 1, anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - ACTIONS(5990), 1, - anon_sym_RBRACE, - STATE(2878), 1, + STATE(2745), 1, sym_comment, - STATE(3665), 1, + STATE(3529), 1, sym_override_modifier, - STATE(4761), 1, + STATE(3872), 1, sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6049), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 8, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(4376), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -284964,81 +273356,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [74073] = 19, + [75055] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5992), 1, - anon_sym_LT, - STATE(2739), 1, - sym_type_arguments, - STATE(2879), 1, + ACTIONS(4843), 1, + anon_sym_extends, + STATE(2746), 1, sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, + ACTIONS(5773), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5776), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4137), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5964), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 8, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 16, + ACTIONS(4141), 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, - [74157] = 6, + [75117] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5137), 1, - anon_sym_extends, - STATE(2880), 1, + STATE(2747), 1, sym_comment, - ACTIONS(5306), 13, + ACTIONS(5070), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285052,7 +273431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 28, + ACTIONS(5072), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285081,14 +273460,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74215] = 5, + anon_sym_extends, + [75173] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2881), 1, + ACTIONS(4229), 1, + anon_sym_EQ, + STATE(2748), 1, sym_comment, - ACTIONS(5328), 13, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285102,7 +273484,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5330), 29, + ACTIONS(4141), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285131,15 +273513,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [74271] = 5, + [75231] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2882), 1, + STATE(2749), 1, sym_comment, - ACTIONS(5332), 13, + ACTIONS(5060), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285153,7 +273534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5334), 29, + ACTIONS(5062), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285183,92 +273564,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74327] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(5995), 1, - anon_sym_STAR, - ACTIONS(5997), 1, - anon_sym_async, - ACTIONS(5999), 1, - anon_sym_readonly, - STATE(2883), 1, - sym_comment, - STATE(3681), 1, - sym_override_modifier, - STATE(3998), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6001), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4372), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [74409] = 5, + [75287] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2884), 1, + ACTIONS(6019), 1, + anon_sym_AMP, + ACTIONS(6021), 1, + anon_sym_PIPE, + ACTIONS(6023), 1, + anon_sym_extends, + STATE(2750), 1, sym_comment, - ACTIONS(5332), 13, + ACTIONS(5060), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5334), 29, + ACTIONS(5062), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285297,15 +273618,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [74465] = 5, + [75349] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2885), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, + anon_sym_AMP, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, + anon_sym_LT, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + STATE(2627), 1, + sym_type_arguments, + STATE(2751), 1, + sym_comment, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5947), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5949), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5977), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5979), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6051), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [75463] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2752), 1, sym_comment, - ACTIONS(5336), 13, + ACTIONS(5357), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285319,7 +273719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5338), 29, + ACTIONS(5359), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285349,92 +273749,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74521] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(161), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(4556), 1, - anon_sym_LBRACK, - ACTIONS(5984), 1, - anon_sym_COMMA, - ACTIONS(6005), 1, - anon_sym_RBRACE, - STATE(2886), 1, - sym_comment, - STATE(6439), 1, - aux_sym_object_pattern_repeat1, - STATE(7361), 1, - sym__destructuring_pattern, - STATE(7523), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4283), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - STATE(6448), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(6003), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [74603] = 5, + [75519] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2887), 1, + ACTIONS(6019), 1, + anon_sym_AMP, + ACTIONS(6021), 1, + anon_sym_PIPE, + ACTIONS(6023), 1, + anon_sym_extends, + STATE(2753), 1, sym_comment, - ACTIONS(5336), 13, + ACTIONS(5232), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5338), 29, + ACTIONS(5234), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285463,42 +273803,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [74659] = 8, + [75581] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5286), 1, + ACTIONS(4857), 1, anon_sym_extends, - STATE(2888), 1, + STATE(2754), 1, sym_comment, - ACTIONS(5675), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5678), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4121), 10, + ACTIONS(5232), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 26, + ACTIONS(5234), 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, @@ -285518,157 +273855,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74721] = 34, + [75639] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(4843), 1, + anon_sym_extends, + ACTIONS(5773), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5950), 1, - anon_sym_AMP_AMP, - ACTIONS(5952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, + ACTIONS(6057), 1, + anon_sym_RPAREN, + STATE(2755), 1, + sym_comment, + ACTIONS(5776), 2, anon_sym_AMP, - ACTIONS(5960), 1, - anon_sym_CARET, - ACTIONS(5962), 1, anon_sym_PIPE, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - ACTIONS(5978), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, - sym__ternary_qmark, - STATE(2739), 1, - sym_type_arguments, - STATE(2889), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5100), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, + ACTIONS(6053), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6055), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4137), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5974), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5976), 2, + ACTIONS(4141), 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, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [74835] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4937), 1, - anon_sym_STAR, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4949), 1, - anon_sym_async, - ACTIONS(5359), 1, - anon_sym_LBRACK, - STATE(2890), 1, - sym_comment, - STATE(4017), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4953), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5910), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4372), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [74915] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [75707] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2891), 1, + STATE(2756), 1, sym_comment, - ACTIONS(4966), 13, + ACTIONS(5353), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285682,7 +273933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4968), 29, + ACTIONS(5355), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -285712,47 +273963,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [74971] = 16, + [75763] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(161), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4937), 1, - anon_sym_STAR, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(4613), 1, anon_sym_LBRACK, - STATE(2892), 1, + ACTIONS(6062), 1, + anon_sym_COMMA, + ACTIONS(6064), 1, + anon_sym_RBRACE, + STATE(2757), 1, sym_comment, - STATE(4890), 1, + STATE(5743), 1, + aux_sym_object_pattern_repeat1, + STATE(7005), 1, sym__property_name, + STATE(7130), 1, + sym__destructuring_pattern, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(5479), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5910), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4740), 2, + STATE(4288), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 21, + STATE(5739), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(6060), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -285762,79 +274013,13 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [75049] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - ACTIONS(6007), 1, - anon_sym_RBRACE, - STATE(2893), 1, - sym_comment, - STATE(3665), 1, - sym_override_modifier, - STATE(4761), 1, - sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -285842,277 +274027,414 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [75139] = 26, + [75845] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(5954), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5993), 1, anon_sym_GT_GT, - ACTIONS(5958), 1, - anon_sym_AMP, - ACTIONS(5966), 1, + ACTIONS(5999), 1, anon_sym_PERCENT, - ACTIONS(5968), 1, + ACTIONS(6001), 1, anon_sym_STAR_STAR, - ACTIONS(5970), 1, + ACTIONS(6003), 1, anon_sym_LT, - STATE(2739), 1, + ACTIONS(6066), 1, + anon_sym_AMP_AMP, + ACTIONS(6068), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6070), 1, + anon_sym_AMP, + ACTIONS(6072), 1, + anon_sym_CARET, + ACTIONS(6074), 1, + anon_sym_PIPE, + ACTIONS(6076), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6078), 1, + sym__ternary_qmark, + STATE(2220), 1, sym_type_arguments, - STATE(2894), 1, + STATE(2758), 1, sym_comment, - STATE(6093), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5409), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5946), 2, + ACTIONS(4968), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5948), 2, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5956), 2, + ACTIONS(5995), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5964), 2, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5974), 2, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5976), 2, + ACTIONS(6009), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5972), 3, + ACTIONS(6005), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 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, - [75237] = 8, + [75959] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5940), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6066), 1, + anon_sym_AMP_AMP, + ACTIONS(6068), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6070), 1, anon_sym_AMP, - ACTIONS(5942), 1, + ACTIONS(6072), 1, + anon_sym_CARET, + ACTIONS(6074), 1, anon_sym_PIPE, - ACTIONS(5944), 1, - anon_sym_extends, - STATE(2895), 1, + ACTIONS(6076), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6078), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2759), 1, sym_comment, - ACTIONS(5300), 11, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5170), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5989), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5995), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5302), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(6009), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6005), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76073] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4801), 1, anon_sym_LBRACK, + ACTIONS(4803), 1, anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6066), 1, anon_sym_AMP_AMP, + ACTIONS(6068), 1, anon_sym_PIPE_PIPE, + ACTIONS(6070), 1, + anon_sym_AMP, + ACTIONS(6072), 1, + anon_sym_CARET, + ACTIONS(6074), 1, + anon_sym_PIPE, + ACTIONS(6076), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6078), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2760), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5272), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5991), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5995), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5997), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6007), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6009), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6005), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [75299] = 27, + [76187] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(5954), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5993), 1, anon_sym_GT_GT, - ACTIONS(5958), 1, - anon_sym_AMP, - ACTIONS(5960), 1, - anon_sym_CARET, - ACTIONS(5966), 1, + ACTIONS(5999), 1, anon_sym_PERCENT, - ACTIONS(5968), 1, + ACTIONS(6001), 1, anon_sym_STAR_STAR, - ACTIONS(5970), 1, + ACTIONS(6003), 1, anon_sym_LT, - STATE(2739), 1, + ACTIONS(6066), 1, + anon_sym_AMP_AMP, + ACTIONS(6068), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6070), 1, + anon_sym_AMP, + ACTIONS(6072), 1, + anon_sym_CARET, + ACTIONS(6074), 1, + anon_sym_PIPE, + ACTIONS(6076), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6078), 1, + sym__ternary_qmark, + STATE(2220), 1, sym_type_arguments, - STATE(2896), 1, + STATE(2761), 1, sym_comment, - STATE(6093), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5409), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5946), 2, + ACTIONS(5300), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5948), 2, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5956), 2, + ACTIONS(5995), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5964), 2, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5974), 2, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5976), 2, + ACTIONS(6009), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5972), 3, + ACTIONS(6005), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 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, - [75399] = 18, + [76301] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(5966), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, anon_sym_PERCENT, - ACTIONS(5968), 1, + ACTIONS(6001), 1, anon_sym_STAR_STAR, - ACTIONS(5992), 1, + ACTIONS(6003), 1, anon_sym_LT, - STATE(2739), 1, + ACTIONS(6066), 1, + anon_sym_AMP_AMP, + ACTIONS(6068), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6070), 1, + anon_sym_AMP, + ACTIONS(6072), 1, + anon_sym_CARET, + ACTIONS(6074), 1, + anon_sym_PIPE, + ACTIONS(6076), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6078), 1, + sym__ternary_qmark, + STATE(2220), 1, sym_type_arguments, - STATE(2897), 1, + STATE(2762), 1, sym_comment, - STATE(6093), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5946), 2, + ACTIONS(5194), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5989), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 10, - anon_sym_BANG, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5995), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 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, + ACTIONS(6009), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6005), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [75481] = 5, + [76415] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2898), 1, + STATE(2763), 1, sym_comment, - ACTIONS(3192), 13, + ACTIONS(5349), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286126,7 +274448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3434), 29, + ACTIONS(5351), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -286156,222 +274478,377 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75537] = 5, + [76471] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2899), 1, - sym_comment, - ACTIONS(5068), 13, - anon_sym_STAR, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, anon_sym_GT_GT, + ACTIONS(4909), 1, anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2764), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(4897), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5070), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6080), 2, anon_sym_COMMA, anon_sym_RBRACE, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76585] = 21, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4801), 1, anon_sym_LBRACK, + ACTIONS(4803), 1, anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2765), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5995), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, + ACTIONS(5997), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 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(4944), 14, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [75593] = 6, + [76673] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5940), 1, - anon_sym_AMP, - STATE(2900), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6082), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2766), 1, sym_comment, - ACTIONS(5072), 12, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 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_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5074), 29, - sym__automatic_semicolon, + ACTIONS(4944), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_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, + [76751] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4901), 1, + anon_sym_AMP_AMP, + ACTIONS(4903), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4905), 1, + anon_sym_GT_GT, + ACTIONS(4909), 1, + anon_sym_AMP, + ACTIONS(4911), 1, + anon_sym_CARET, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(4917), 1, + anon_sym_PERCENT, + ACTIONS(4919), 1, + anon_sym_STAR_STAR, + ACTIONS(4921), 1, + anon_sym_LT, + ACTIONS(4929), 1, + anon_sym_QMARK_QMARK, + ACTIONS(4933), 1, anon_sym_satisfies, - anon_sym_extends, - [75651] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2901), 1, + ACTIONS(4935), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2767), 1, sym_comment, - ACTIONS(5076), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4887), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(4897), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4907), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(4915), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(4925), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5078), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4927), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5643), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4923), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [75707] = 8, + [76865] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5940), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4946), 1, + anon_sym_BANG, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6070), 1, anon_sym_AMP, - ACTIONS(5942), 1, + ACTIONS(6072), 1, + anon_sym_CARET, + ACTIONS(6074), 1, anon_sym_PIPE, - ACTIONS(5944), 1, - anon_sym_extends, - STATE(2902), 1, + STATE(2220), 1, + sym_type_arguments, + STATE(2768), 1, sym_comment, - ACTIONS(5080), 11, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5989), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5995), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5082), 28, - sym__automatic_semicolon, + ACTIONS(6009), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6005), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_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] = 5, + [76967] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2903), 1, + STATE(2769), 1, sym_comment, - ACTIONS(5080), 13, + ACTIONS(5037), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286385,7 +274862,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5082), 29, + ACTIONS(5039), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -286415,118 +274892,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75825] = 6, + [77023] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, anon_sym_DOT, - STATE(2904), 1, - sym_comment, - ACTIONS(5084), 13, - anon_sym_STAR, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4946), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5993), 1, anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6066), 1, + anon_sym_AMP_AMP, + ACTIONS(6070), 1, anon_sym_AMP, + ACTIONS(6072), 1, + anon_sym_CARET, + ACTIONS(6074), 1, anon_sym_PIPE, + STATE(2220), 1, + sym_type_arguments, + STATE(2770), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5991), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5995), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5086), 28, - sym__automatic_semicolon, + ACTIONS(6009), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6005), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 7, sym__ternary_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_COLON, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [75883] = 6, + [77127] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5091), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, anon_sym_DOT, - STATE(2905), 1, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6082), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2771), 1, sym_comment, - ACTIONS(5084), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5989), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5997), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5086), 28, - sym__automatic_semicolon, + ACTIONS(4944), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_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, - anon_sym_extends, - [75941] = 5, + [77211] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2906), 1, + STATE(2772), 1, sym_comment, - ACTIONS(5094), 13, + ACTIONS(5033), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286540,7 +275053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5096), 29, + ACTIONS(5035), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -286570,66 +275083,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75997] = 6, + [77267] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5270), 1, - anon_sym_EQ, - STATE(2907), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6070), 1, + anon_sym_AMP, + STATE(2220), 1, + sym_type_arguments, + STATE(2773), 1, sym_comment, - ACTIONS(5268), 13, - anon_sym_STAR, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4946), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5995), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5272), 28, - sym__automatic_semicolon, + ACTIONS(6009), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6005), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [76055] = 5, + [77365] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2908), 1, + STATE(2774), 1, sym_comment, - ACTIONS(4847), 13, + ACTIONS(5033), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286643,7 +275176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4849), 29, + ACTIONS(5035), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -286673,14 +275206,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [76111] = 5, + [77421] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2909), 1, + STATE(2775), 1, sym_comment, - ACTIONS(5102), 13, + ACTIONS(3236), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286694,7 +275227,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5104), 29, + ACTIONS(3570), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -286724,65 +275257,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [76167] = 5, + [77477] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2910), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6070), 1, + anon_sym_AMP, + ACTIONS(6072), 1, + anon_sym_CARET, + STATE(2220), 1, + sym_type_arguments, + STATE(2776), 1, sym_comment, - ACTIONS(4873), 13, - anon_sym_STAR, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4946), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5995), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4875), 29, - sym__automatic_semicolon, + ACTIONS(6009), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6005), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [76223] = 5, + [77577] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2911), 1, + STATE(2777), 1, sym_comment, - ACTIONS(5108), 13, + ACTIONS(5033), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286796,7 +275351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5110), 29, + ACTIONS(5035), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -286826,15 +275381,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [76279] = 5, + [77633] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2912), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6082), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2778), 1, sym_comment, - ACTIONS(5112), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5989), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -286843,101 +275426,144 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5114), 29, - sym__automatic_semicolon, + ACTIONS(4944), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [76335] = 22, + [77715] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, + ACTIONS(161), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(4613), 1, + anon_sym_LBRACK, + ACTIONS(6062), 1, + anon_sym_COMMA, + ACTIONS(6087), 1, + anon_sym_RBRACE, + STATE(2779), 1, + sym_comment, + STATE(6147), 1, + aux_sym_object_pattern_repeat1, + STATE(7005), 1, + sym__property_name, + STATE(7130), 1, + sym__destructuring_pattern, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4288), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + STATE(6143), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(6085), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - ACTIONS(2904), 1, + anon_sym_new, + sym_identifier, + anon_sym_static, anon_sym_readonly, - ACTIONS(2908), 1, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_override, - ACTIONS(4939), 1, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [77797] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5132), 1, + anon_sym_STAR, + ACTIONS(5134), 1, anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - ACTIONS(6009), 1, - anon_sym_RBRACE, - STATE(2913), 1, + STATE(2780), 1, sym_comment, - STATE(3665), 1, - sym_override_modifier, - STATE(4761), 1, + STATE(4736), 1, sym__property_name, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(5442), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + ACTIONS(5900), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -286945,14 +275571,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [76425] = 5, + [77875] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2914), 1, + STATE(2781), 1, sym_comment, - ACTIONS(5116), 13, + ACTIONS(5021), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286966,7 +275592,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5118), 29, + ACTIONS(5023), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -286996,139 +275622,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [76481] = 5, + [77931] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2915), 1, - sym_comment, - ACTIONS(5127), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5129), 29, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5398), 1, anon_sym_LBRACK, + ACTIONS(5400), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, anon_sym_AMP_AMP, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, + anon_sym_AMP, + ACTIONS(5963), 1, anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(5969), 1, anon_sym_PERCENT, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5973), 1, + anon_sym_LT, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5983), 1, + sym__ternary_qmark, + STATE(2627), 1, + sym_type_arguments, + STATE(2782), 1, + sym_comment, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [76537] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2916), 1, - sym_comment, - ACTIONS(5131), 13, + ACTIONS(5947), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5133), 29, + ACTIONS(5979), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6089), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [76593] = 5, + [78045] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2917), 1, + ACTIONS(5001), 1, + anon_sym_QMARK, + ACTIONS(5003), 1, + anon_sym_extends, + ACTIONS(5322), 1, + anon_sym_EQ, + ACTIONS(5326), 1, + anon_sym_LBRACK, + ACTIONS(5904), 1, + anon_sym_COLON, + STATE(2783), 1, sym_comment, - ACTIONS(5135), 13, + ACTIONS(5329), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5793), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5320), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5137), 29, - sym__automatic_semicolon, + ACTIONS(5324), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -287148,177 +275760,254 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [76649] = 14, + [78115] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6011), 1, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, + anon_sym_AMP, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + STATE(2627), 1, sym_type_arguments, - STATE(2918), 1, + STATE(2784), 1, sym_comment, - STATE(6354), 1, + STATE(5804), 1, sym_optional_chain, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(5143), 12, + ACTIONS(4968), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5947), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5145), 20, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [76723] = 34, + [78229] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(6018), 1, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(6026), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(6028), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(6030), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(6034), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(6036), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(6038), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(6046), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, + ACTIONS(5983), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2919), 1, + STATE(2785), 1, sym_comment, - STATE(6354), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4881), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(4919), 2, + ACTIONS(5170), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6014), 2, + ACTIONS(5947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6016), 2, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6032), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(6040), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76837] = 15, + [78343] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6050), 1, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, + anon_sym_AMP, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + STATE(2627), 1, sym_type_arguments, - STATE(2920), 1, + STATE(2786), 1, sym_comment, - STATE(6354), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(5272), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + ACTIONS(5947), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5949), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5977), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5979), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5189), 12, + ACTIONS(5975), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [78457] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2787), 1, + sym_comment, + ACTIONS(5290), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287329,13 +276018,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 18, + ACTIONS(5292), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -287349,44 +276046,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [76913] = 18, + anon_sym_extends, + [78513] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6053), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2921), 1, + STATE(2788), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(5156), 11, + ACTIONS(5282), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -287395,12 +276069,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5158), 16, + ACTIONS(5284), 29, + sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -287414,348 +276097,294 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [76995] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [78569] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(5983), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2922), 1, + STATE(2789), 1, sym_comment, - STATE(6354), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(5300), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6056), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2716), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77109] = 34, + [78683] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(4891), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(4897), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(4899), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(4901), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(4905), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(4907), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(4917), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, + ACTIONS(5983), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2923), 1, + STATE(2790), 1, sym_comment, - STATE(6354), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4877), 2, + ACTIONS(5194), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(4885), 2, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(4903), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5537), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2716), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77223] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, + [78797] = 21, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(6058), 1, - anon_sym_STAR, - ACTIONS(6060), 1, - anon_sym_async, - ACTIONS(6062), 1, - anon_sym_readonly, - STATE(2924), 1, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, + anon_sym_LT, + STATE(2627), 1, + sym_type_arguments, + STATE(2791), 1, sym_comment, - STATE(3678), 1, - sym_override_modifier, - STATE(3955), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6064), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, - anon_sym_COMMA, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5947), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 7, anon_sym_BANG, - anon_sym_LPAREN, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4944), 14, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4372), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [77305] = 16, + 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, + [78885] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6058), 1, + ACTIONS(5132), 1, anon_sym_STAR, - ACTIONS(6060), 1, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5144), 1, anon_sym_async, - ACTIONS(6066), 1, - anon_sym_abstract, - STATE(2925), 1, + ACTIONS(5444), 1, + anon_sym_LBRACK, + STATE(2792), 1, sym_comment, - STATE(3954), 1, + STATE(3892), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6064), 2, + ACTIONS(5148), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4372), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [77383] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6068), 1, - anon_sym_static, - ACTIONS(6070), 1, - anon_sym_readonly, - ACTIONS(6072), 1, - anon_sym_abstract, - STATE(2926), 1, - sym_comment, - STATE(3682), 1, - sym_override_modifier, - STATE(4286), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - STATE(4151), 2, + ACTIONS(5900), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(987), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4372), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(4376), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_get, - anon_sym_set, + anon_sym_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, @@ -287763,94 +276392,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77463] = 34, + [78965] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4889), 1, - anon_sym_AMP_AMP, - ACTIONS(4891), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4893), 1, - anon_sym_GT_GT, - ACTIONS(4897), 1, - anon_sym_AMP, - ACTIONS(4899), 1, - anon_sym_CARET, - ACTIONS(4901), 1, - anon_sym_PIPE, - ACTIONS(4905), 1, - anon_sym_PERCENT, - ACTIONS(4907), 1, - anon_sym_STAR_STAR, - ACTIONS(4909), 1, + ACTIONS(6091), 1, anon_sym_LT, - ACTIONS(4917), 1, - anon_sym_QMARK_QMARK, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4923), 1, - sym__ternary_qmark, - STATE(2372), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2927), 1, + STATE(2793), 1, sym_comment, - STATE(6354), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4877), 2, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(4978), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(4885), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(4895), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(4903), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4913), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4915), 2, + ACTIONS(4980), 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, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5365), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4911), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [77577] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [79039] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2928), 1, + STATE(2794), 1, sym_comment, - ACTIONS(4988), 13, + ACTIONS(5278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -287864,7 +276473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4990), 29, + ACTIONS(5280), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -287894,41 +276503,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77633] = 8, + [79095] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5675), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, anon_sym_LBRACK, - STATE(2929), 1, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(6094), 1, + anon_sym_LT, + STATE(2627), 1, + sym_type_arguments, + STATE(2795), 1, sym_comment, - ACTIONS(5286), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5678), 3, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4121), 10, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4944), 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, + [79173] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2796), 1, + sym_comment, + ACTIONS(5021), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 26, + ACTIONS(5023), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -287948,94 +276615,164 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77695] = 34, + anon_sym_extends, + [79229] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4946), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, + anon_sym_AMP, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, + anon_sym_LT, + STATE(2627), 1, + sym_type_arguments, + STATE(2797), 1, + sym_comment, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5947), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5949), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5977), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5979), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 8, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6018), 1, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(6020), 1, anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [79331] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4946), 1, + anon_sym_BANG, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(6026), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(6028), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(6030), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(6034), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(6036), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(6038), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(6046), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, - sym__ternary_qmark, - STATE(2372), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2930), 1, + STATE(2798), 1, sym_comment, - STATE(6354), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5304), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6014), 2, + ACTIONS(5947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6016), 2, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6032), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(6040), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [77809] = 5, + ACTIONS(4944), 7, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [79435] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2931), 1, + STATE(2799), 1, sym_comment, - ACTIONS(4992), 13, + ACTIONS(5098), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288049,7 +276786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4994), 29, + ACTIONS(5100), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288079,317 +276816,325 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77865] = 12, + [79491] = 19, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3188), 1, - anon_sym_QMARK, - ACTIONS(3432), 1, - anon_sym_extends, - ACTIONS(5259), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5914), 1, - anon_sym_COLON, - STATE(2932), 1, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(6094), 1, + anon_sym_LT, + STATE(2627), 1, + sym_type_arguments, + STATE(2800), 1, sym_comment, - ACTIONS(5262), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5896), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2069), 11, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5947), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5967), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 8, 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_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 22, + ACTIONS(4944), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [77935] = 34, + [79575] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(6026), 1, - anon_sym_AMP, - ACTIONS(6028), 1, - anon_sym_CARET, - ACTIONS(6030), 1, - anon_sym_PIPE, - ACTIONS(6034), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(6036), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(6038), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(6046), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, - sym__ternary_qmark, - STATE(2372), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2933), 1, + STATE(2801), 1, sym_comment, - STATE(6354), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5026), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6014), 2, + ACTIONS(5947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6016), 2, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6032), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(6040), 3, + ACTIONS(4946), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78049] = 7, + ACTIONS(4944), 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, + [79671] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5369), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, anon_sym_LPAREN, - STATE(2934), 1, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, + anon_sym_AMP, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, + anon_sym_LT, + STATE(2627), 1, + sym_type_arguments, + STATE(2802), 1, sym_comment, - STATE(3254), 1, - sym_arguments, - ACTIONS(4996), 13, - anon_sym_STAR, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(4946), 2, anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5947), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4998), 27, + ACTIONS(5979), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 9, 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, - [78109] = 35, + [79769] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5950), 1, - anon_sym_AMP_AMP, - ACTIONS(5952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(5958), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(5960), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(5962), 1, - anon_sym_PIPE, - ACTIONS(5966), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(5968), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(5970), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(5978), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, - sym__ternary_qmark, - ACTIONS(6074), 1, - anon_sym_SEMI, - ACTIONS(6076), 1, - sym__automatic_semicolon, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2935), 1, + STATE(2803), 1, sym_comment, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(4946), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5946), 2, + ACTIONS(5947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5948), 2, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5956), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5964), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5974), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5976), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5972), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78225] = 19, + ACTIONS(4944), 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, + [79869] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5968), 1, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(5992), 1, + ACTIONS(6094), 1, anon_sym_LT, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2936), 1, + STATE(2804), 1, sym_comment, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3121), 2, + ACTIONS(5947), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 11, - anon_sym_STAR, + ACTIONS(4946), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -288397,113 +277142,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 15, + ACTIONS(4944), 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_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, - [78309] = 34, + anon_sym_satisfies, + [79951] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6097), 1, + anon_sym_STAR, + ACTIONS(6099), 1, + anon_sym_async, + ACTIONS(6101), 1, + anon_sym_readonly, + STATE(2805), 1, + sym_comment, + STATE(3519), 1, + sym_override_modifier, + STATE(3909), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6103), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 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(4376), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [80033] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, - anon_sym_GT_GT, - ACTIONS(6026), 1, - anon_sym_AMP, - ACTIONS(6028), 1, - anon_sym_CARET, - ACTIONS(6030), 1, - anon_sym_PIPE, - ACTIONS(6034), 1, - anon_sym_PERCENT, - ACTIONS(6036), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(6038), 1, + ACTIONS(6094), 1, anon_sym_LT, - ACTIONS(6046), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, - sym__ternary_qmark, - STATE(2372), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2937), 1, + STATE(2806), 1, sym_comment, - STATE(6354), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5241), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6014), 2, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6016), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6032), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, + ACTIONS(4944), 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, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6040), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [78423] = 5, + [80117] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2938), 1, + STATE(2807), 1, sym_comment, - ACTIONS(5292), 13, + ACTIONS(3228), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288517,7 +277311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5294), 29, + ACTIONS(3518), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288547,14 +277341,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [78479] = 5, + [80173] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2939), 1, + ACTIONS(5178), 1, + anon_sym_extends, + STATE(2808), 1, sym_comment, - ACTIONS(4835), 13, + ACTIONS(5172), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288568,7 +277364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4837), 29, + ACTIONS(5174), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288597,306 +277393,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [78535] = 12, + [80231] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5237), 1, - anon_sym_QMARK, - ACTIONS(5239), 1, - anon_sym_extends, - ACTIONS(5270), 1, - anon_sym_EQ, - ACTIONS(5274), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(5926), 1, - anon_sym_COLON, - STATE(2940), 1, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6082), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2809), 1, sym_comment, - ACTIONS(5277), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5900), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5268), 11, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5272), 22, + ACTIONS(4944), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78605] = 34, + [80315] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(6026), 1, - anon_sym_AMP, - ACTIONS(6028), 1, - anon_sym_CARET, - ACTIONS(6030), 1, - anon_sym_PIPE, - ACTIONS(6034), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(6036), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(6038), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(6046), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, - sym__ternary_qmark, - STATE(2372), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2941), 1, + STATE(2810), 1, sym_comment, - STATE(6354), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5216), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6014), 2, + ACTIONS(5947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6016), 2, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6032), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6044), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(6040), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78719] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2942), 1, - sym_comment, - ACTIONS(4992), 13, - anon_sym_STAR, + ACTIONS(4946), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4994), 29, + ACTIONS(4944), 11, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [78775] = 5, + [80407] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2943), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2811), 1, sym_comment, - ACTIONS(5284), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5989), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5995), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6005), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4946), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5286), 29, - sym__automatic_semicolon, + ACTIONS(4944), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [78831] = 5, + [80499] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2944), 1, - sym_comment, - ACTIONS(4992), 13, - anon_sym_STAR, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4946), 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(4994), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5394), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5398), 1, anon_sym_LBRACK, + ACTIONS(5400), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5953), 1, anon_sym_AMP_AMP, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, + anon_sym_AMP, + ACTIONS(5963), 1, anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(5969), 1, anon_sym_PERCENT, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5973), 1, + anon_sym_LT, + STATE(2627), 1, + sym_type_arguments, + STATE(2812), 1, + sym_comment, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5947), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5949), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5977), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4944), 6, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - anon_sym_extends, - [78887] = 5, + [80605] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2945), 1, + STATE(2813), 1, sym_comment, - ACTIONS(4859), 13, + ACTIONS(5017), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -288910,7 +277693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4861), 29, + ACTIONS(5019), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -288940,379 +277723,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [78943] = 34, + [80661] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(6018), 1, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(6026), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(6028), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(6030), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(6034), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(6036), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(6038), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(6046), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, + ACTIONS(5983), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2946), 1, + STATE(2814), 1, sym_comment, - STATE(6354), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4976), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5214), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6014), 2, + ACTIONS(5947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6016), 2, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6032), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(6040), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79057] = 34, + [80775] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6018), 1, + ACTIONS(4946), 1, + anon_sym_BANG, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6066), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(6068), 1, anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, - anon_sym_GT_GT, - ACTIONS(6026), 1, + ACTIONS(6070), 1, anon_sym_AMP, - ACTIONS(6028), 1, + ACTIONS(6072), 1, anon_sym_CARET, - ACTIONS(6030), 1, + ACTIONS(6074), 1, anon_sym_PIPE, - ACTIONS(6034), 1, - anon_sym_PERCENT, - ACTIONS(6036), 1, - anon_sym_STAR_STAR, - ACTIONS(6038), 1, - anon_sym_LT, - ACTIONS(6046), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, - sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2947), 1, + STATE(2815), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5212), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6014), 2, + ACTIONS(5989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6016), 2, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, + ACTIONS(5995), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6032), 2, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, + ACTIONS(6009), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6040), 3, + ACTIONS(6005), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79171] = 5, + ACTIONS(4944), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [80881] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2948), 1, - sym_comment, - ACTIONS(5008), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5010), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4791), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4801), 1, anon_sym_LBRACK, + ACTIONS(4803), 1, anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6066), 1, anon_sym_AMP_AMP, + ACTIONS(6068), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6070), 1, + anon_sym_AMP, + ACTIONS(6072), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6074), 1, + anon_sym_PIPE, + ACTIONS(6076), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6078), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2816), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [79227] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(2949), 1, - sym_comment, - ACTIONS(5008), 13, + ACTIONS(4976), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5989), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5995), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5010), 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, + ACTIONS(6009), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6005), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [79283] = 5, + [80995] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2950), 1, - sym_comment, - ACTIONS(5185), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5187), 29, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5398), 1, anon_sym_LBRACK, + ACTIONS(5400), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, anon_sym_AMP_AMP, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, + anon_sym_AMP, + ACTIONS(5963), 1, anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(5969), 1, anon_sym_PERCENT, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5973), 1, + anon_sym_LT, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5983), 1, + sym__ternary_qmark, + STATE(2627), 1, + sym_type_arguments, + STATE(2817), 1, + sym_comment, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(4985), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [79339] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6078), 1, - anon_sym_LBRACK, - STATE(2951), 1, - sym_comment, - ACTIONS(5185), 13, + ACTIONS(5947), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5977), 2, anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5187), 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_BANG_EQ, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [79397] = 5, + [81109] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2952), 1, + STATE(2818), 1, sym_comment, - ACTIONS(5280), 13, + ACTIONS(5017), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289326,7 +278060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5282), 29, + ACTIONS(5019), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -289356,14 +278090,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79453] = 5, + [81165] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2953), 1, + STATE(2819), 1, sym_comment, - ACTIONS(5008), 13, + ACTIONS(5017), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289377,7 +278111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5010), 29, + ACTIONS(5019), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -289407,44 +278141,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79509] = 11, + [81221] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4252), 1, - anon_sym_EQ, - ACTIONS(4257), 1, - anon_sym_QMARK, - ACTIONS(5675), 1, - anon_sym_LBRACK, - STATE(2954), 1, + STATE(2820), 1, sym_comment, - ACTIONS(4255), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5286), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5678), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4121), 11, + ACTIONS(5013), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 22, + ACTIONS(5015), 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, @@ -289464,549 +278191,657 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79577] = 34, + anon_sym_extends, + [81277] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(6018), 1, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(6026), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(6028), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(6030), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(6034), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(6036), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(6038), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(6046), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, + ACTIONS(5983), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2955), 1, + STATE(2821), 1, sym_comment, - STATE(6354), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(5244), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5179), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6014), 2, + ACTIONS(5947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6016), 2, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6032), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(6040), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79691] = 34, + [81391] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5950), 1, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(5952), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(5958), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(5960), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(5962), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(5966), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(5968), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(5970), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(5978), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, + ACTIONS(5983), 1, sym__ternary_qmark, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2956), 1, + STATE(2822), 1, sym_comment, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(5264), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5946), 2, + ACTIONS(5947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5948), 2, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5956), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5964), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5974), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5976), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6080), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5972), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79805] = 5, + [81505] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2957), 1, - sym_comment, - ACTIONS(5020), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5022), 29, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5398), 1, anon_sym_LBRACK, + ACTIONS(5400), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, anon_sym_AMP_AMP, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, + anon_sym_AMP, + ACTIONS(5963), 1, anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(5969), 1, anon_sym_PERCENT, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5973), 1, + anon_sym_LT, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5983), 1, + sym__ternary_qmark, + STATE(2627), 1, + sym_type_arguments, + STATE(2823), 1, + sym_comment, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5270), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [79861] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4861), 1, - anon_sym_extends, - ACTIONS(5669), 1, - anon_sym_LBRACK, - ACTIONS(6086), 1, - anon_sym_RPAREN, - STATE(2958), 1, - sym_comment, - ACTIONS(5672), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6082), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6084), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4121), 11, + ACTIONS(5947), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 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, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79929] = 8, + [81619] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5940), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(5942), 1, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(5944), 1, - anon_sym_extends, - STATE(2959), 1, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, + anon_sym_LT, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + ACTIONS(6105), 1, + anon_sym_SEMI, + ACTIONS(6107), 1, + sym__automatic_semicolon, + STATE(2627), 1, + sym_type_arguments, + STATE(2824), 1, sym_comment, - ACTIONS(5255), 11, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5947), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5257), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [79991] = 34, + [81735] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(6018), 1, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6066), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(6068), 1, anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, - anon_sym_GT_GT, - ACTIONS(6026), 1, + ACTIONS(6070), 1, anon_sym_AMP, - ACTIONS(6028), 1, + ACTIONS(6072), 1, anon_sym_CARET, - ACTIONS(6030), 1, + ACTIONS(6074), 1, anon_sym_PIPE, - ACTIONS(6034), 1, - anon_sym_PERCENT, - ACTIONS(6036), 1, - anon_sym_STAR_STAR, - ACTIONS(6038), 1, - anon_sym_LT, - ACTIONS(6046), 1, + ACTIONS(6076), 1, anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, + ACTIONS(6078), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(2960), 1, + STATE(2825), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5154), 2, + ACTIONS(4985), 2, anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(6014), 2, + ACTIONS(5989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6016), 2, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, + ACTIONS(5995), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6032), 2, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, + ACTIONS(6009), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6040), 3, + ACTIONS(6005), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80105] = 30, + [81849] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6018), 1, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(6026), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(6028), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(6030), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(6034), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(6036), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(6038), 1, + ACTIONS(5973), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + STATE(2627), 1, sym_type_arguments, - STATE(2961), 1, + STATE(2826), 1, sym_comment, - STATE(6354), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(5274), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6014), 2, + ACTIONS(5947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6016), 2, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6032), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(6040), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [80211] = 11, + [81963] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3432), 1, - anon_sym_extends, - ACTIONS(5259), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5896), 1, - anon_sym_RPAREN, - STATE(2962), 1, - sym_comment, - ACTIONS(2071), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5262), 2, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, anon_sym_AMP, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(5745), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2069), 11, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, + anon_sym_LT, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + STATE(2627), 1, + sym_type_arguments, + STATE(2827), 1, + sym_comment, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5276), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5947), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 22, - sym__ternary_qmark, + ACTIONS(5979), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82077] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, anon_sym_AMP_AMP, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, + anon_sym_AMP, + ACTIONS(5963), 1, anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(5969), 1, anon_sym_PERCENT, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5973), 1, + anon_sym_LT, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + ACTIONS(6109), 1, + anon_sym_SEMI, + ACTIONS(6111), 1, + sym__automatic_semicolon, + STATE(2627), 1, + sym_type_arguments, + STATE(2828), 1, + sym_comment, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5947), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5949), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5977), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [80279] = 5, + [82193] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2963), 1, + STATE(2829), 1, sym_comment, - ACTIONS(5020), 13, + ACTIONS(5009), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290020,7 +278855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5022), 29, + ACTIONS(5011), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290050,135 +278885,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [80335] = 6, + [82249] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6093), 1, - sym_regex_flags, - STATE(2964), 1, - sym_comment, - ACTIONS(6089), 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(6091), 25, - sym__ternary_qmark, + ACTIONS(231), 1, anon_sym_COMMA, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(5985), 1, + anon_sym_STAR, + ACTIONS(6113), 1, anon_sym_RBRACE, + STATE(2830), 1, + sym_comment, + STATE(3531), 1, + sym_override_modifier, + STATE(4808), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 4, 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, - [80393] = 23, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [82339] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(6022), 1, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5993), 1, anon_sym_GT_GT, - ACTIONS(6034), 1, + ACTIONS(5999), 1, anon_sym_PERCENT, - ACTIONS(6036), 1, + ACTIONS(6001), 1, anon_sym_STAR_STAR, - ACTIONS(6038), 1, + ACTIONS(6003), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(6066), 1, + anon_sym_AMP_AMP, + ACTIONS(6068), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6070), 1, + anon_sym_AMP, + ACTIONS(6072), 1, + anon_sym_CARET, + ACTIONS(6074), 1, + anon_sym_PIPE, + ACTIONS(6076), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6078), 1, + sym__ternary_qmark, + STATE(2220), 1, sym_type_arguments, - STATE(2965), 1, + STATE(2831), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6014), 2, + ACTIONS(5244), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6016), 2, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, + ACTIONS(5995), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6032), 2, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2716), 2, + ACTIONS(6007), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6009), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6040), 3, + ACTIONS(6005), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4955), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4957), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [80485] = 5, + [82453] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2966), 1, + STATE(2832), 1, sym_comment, - ACTIONS(5020), 13, + ACTIONS(4993), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290192,7 +279054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5022), 29, + ACTIONS(4995), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290222,311 +279084,442 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [80541] = 19, + [82509] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(6036), 1, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, anon_sym_STAR_STAR, - ACTIONS(6095), 1, + ACTIONS(6003), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(6066), 1, + anon_sym_AMP_AMP, + ACTIONS(6068), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6070), 1, + anon_sym_AMP, + ACTIONS(6072), 1, + anon_sym_CARET, + ACTIONS(6074), 1, + anon_sym_PIPE, + ACTIONS(6076), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6078), 1, + sym__ternary_qmark, + STATE(2220), 1, sym_type_arguments, - STATE(2967), 1, + STATE(2833), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 11, + ACTIONS(5264), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5989), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5995), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 15, - sym__ternary_qmark, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(6009), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6005), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [80625] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, + [82623] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(6098), 1, - anon_sym_STAR, - ACTIONS(6100), 1, - anon_sym_async, - ACTIONS(6102), 1, - anon_sym_readonly, - STATE(2968), 1, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6066), 1, + anon_sym_AMP_AMP, + ACTIONS(6068), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6070), 1, + anon_sym_AMP, + ACTIONS(6072), 1, + anon_sym_CARET, + ACTIONS(6074), 1, + anon_sym_PIPE, + ACTIONS(6076), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6078), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2834), 1, sym_comment, - STATE(3679), 1, - sym_override_modifier, - STATE(4042), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6104), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_COMMA, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5270), 2, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4372), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [80707] = 35, + ACTIONS(5989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5991), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5995), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5997), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6007), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6009), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6005), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82737] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5950), 1, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(5952), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(5958), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(5960), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(5962), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(5966), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(5968), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(5970), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(5978), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, + ACTIONS(5983), 1, sym__ternary_qmark, - ACTIONS(6106), 1, + ACTIONS(6115), 1, anon_sym_SEMI, - ACTIONS(6108), 1, + ACTIONS(6117), 1, sym__automatic_semicolon, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(2969), 1, + STATE(2835), 1, sym_comment, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5946), 2, + ACTIONS(5947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5948), 2, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5956), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5964), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5974), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5976), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5972), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80823] = 18, + [82853] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6034), 1, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, + anon_sym_AMP, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(6036), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(6095), 1, + ACTIONS(5973), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + STATE(2627), 1, sym_type_arguments, - STATE(2970), 1, + STATE(2836), 1, sym_comment, - STATE(6354), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6014), 2, + ACTIONS(5947), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 10, - anon_sym_BANG, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 16, - sym__ternary_qmark, + ACTIONS(5979), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6119), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [82967] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, anon_sym_AMP_AMP, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, + anon_sym_AMP, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, + anon_sym_LT, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + STATE(2627), 1, + sym_type_arguments, + STATE(2837), 1, + sym_comment, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5180), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5947), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5949), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(5967), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5977), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [80905] = 5, + [83081] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2971), 1, + ACTIONS(5043), 1, + anon_sym_extends, + STATE(2838), 1, sym_comment, - ACTIONS(5030), 13, + ACTIONS(5523), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5526), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5519), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5032), 29, + ACTIONS(5521), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -290546,88 +279539,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [80961] = 27, + [83143] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(6022), 1, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5993), 1, anon_sym_GT_GT, - ACTIONS(6026), 1, - anon_sym_AMP, - ACTIONS(6028), 1, - anon_sym_CARET, - ACTIONS(6034), 1, + ACTIONS(5999), 1, anon_sym_PERCENT, - ACTIONS(6036), 1, + ACTIONS(6001), 1, anon_sym_STAR_STAR, - ACTIONS(6038), 1, + ACTIONS(6003), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(6066), 1, + anon_sym_AMP_AMP, + ACTIONS(6068), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6070), 1, + anon_sym_AMP, + ACTIONS(6072), 1, + anon_sym_CARET, + ACTIONS(6074), 1, + anon_sym_PIPE, + ACTIONS(6076), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6078), 1, + sym__ternary_qmark, + STATE(2220), 1, sym_type_arguments, - STATE(2972), 1, + STATE(2839), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6014), 2, + ACTIONS(5274), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6016), 2, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, + ACTIONS(5995), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6032), 2, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, + ACTIONS(6009), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6040), 3, + ACTIONS(6005), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [81061] = 5, + [83257] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2973), 1, + STATE(2840), 1, sym_comment, - ACTIONS(5343), 13, + ACTIONS(5150), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290641,7 +279640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5345), 29, + ACTIONS(5152), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290671,28 +279670,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [81117] = 5, + [83313] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2974), 1, + ACTIONS(6019), 1, + anon_sym_AMP, + ACTIONS(6021), 1, + anon_sym_PIPE, + ACTIONS(6023), 1, + anon_sym_extends, + STATE(2841), 1, sym_comment, - ACTIONS(5347), 13, + ACTIONS(5049), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5349), 29, + ACTIONS(5051), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290721,87 +279724,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [81173] = 26, + [83375] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6022), 1, - anon_sym_GT_GT, - ACTIONS(6026), 1, - anon_sym_AMP, - ACTIONS(6034), 1, - anon_sym_PERCENT, - ACTIONS(6036), 1, - anon_sym_STAR_STAR, - ACTIONS(6038), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2975), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6014), 2, + ACTIONS(5985), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6016), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6024), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6032), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6042), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6044), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6040), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 9, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(6121), 1, anon_sym_RBRACE, + STATE(2842), 1, + sym_comment, + STATE(3531), 1, + sym_override_modifier, + STATE(4808), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 4, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [81271] = 5, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [83465] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1043), 1, + anon_sym_RBRACE, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(5985), 1, + anon_sym_STAR, + STATE(2843), 1, + sym_comment, + STATE(3531), 1, + sym_override_modifier, + STATE(4808), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [83555] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(2976), 1, + ACTIONS(6123), 1, + anon_sym_LBRACK, + STATE(2844), 1, sym_comment, - ACTIONS(5351), 13, + ACTIONS(5120), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290815,7 +279883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5353), 29, + ACTIONS(5122), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290824,7 +279892,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -290845,115 +279912,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [81327] = 25, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6022), 1, - anon_sym_GT_GT, - ACTIONS(6034), 1, - anon_sym_PERCENT, - ACTIONS(6036), 1, - anon_sym_STAR_STAR, - ACTIONS(6038), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2977), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6014), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6016), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6024), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6032), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6042), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6044), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6040), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [81423] = 11, + [83613] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5239), 1, + ACTIONS(6125), 1, anon_sym_extends, - ACTIONS(5274), 1, - anon_sym_LBRACK, - ACTIONS(5900), 1, - anon_sym_RPAREN, - STATE(2978), 1, + STATE(2845), 1, sym_comment, - ACTIONS(5270), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5277), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5781), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5268), 11, + ACTIONS(5114), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5272), 22, + ACTIONS(5116), 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, @@ -290973,29 +279964,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81491] = 11, + [83671] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5239), 1, + ACTIONS(4883), 1, anon_sym_extends, - ACTIONS(5274), 1, + ACTIONS(6123), 1, anon_sym_LBRACK, - ACTIONS(6110), 1, - anon_sym_RPAREN, - STATE(2979), 1, + STATE(2846), 1, sym_comment, - ACTIONS(5270), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5277), 2, + ACTIONS(4881), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5926), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5268), 11, + ACTIONS(5082), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291007,10 +279990,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5272), 22, + ACTIONS(5084), 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, @@ -291030,20 +280018,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81559] = 8, + [83733] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5940), 1, + ACTIONS(6019), 1, anon_sym_AMP, - ACTIONS(5942), 1, + ACTIONS(6021), 1, anon_sym_PIPE, - ACTIONS(5944), 1, + ACTIONS(6023), 1, anon_sym_extends, - STATE(2980), 1, + STATE(2847), 1, sym_comment, - ACTIONS(5034), 11, + ACTIONS(5074), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291055,7 +280043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5036), 28, + ACTIONS(5076), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291084,647 +280072,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81621] = 34, + [83795] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5950), 1, - anon_sym_AMP_AMP, - ACTIONS(5952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, - anon_sym_AMP, - ACTIONS(5960), 1, - anon_sym_CARET, - ACTIONS(5962), 1, - anon_sym_PIPE, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - ACTIONS(5978), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, - sym__ternary_qmark, - STATE(2739), 1, - sym_type_arguments, - STATE(2981), 1, + STATE(2848), 1, sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5214), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, + ACTIONS(5066), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5974), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5976), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [81735] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5950), 1, - anon_sym_AMP_AMP, - ACTIONS(5952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, anon_sym_GT_GT, - ACTIONS(5958), 1, anon_sym_AMP, - ACTIONS(5960), 1, - anon_sym_CARET, - ACTIONS(5962), 1, anon_sym_PIPE, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - ACTIONS(5978), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, - sym__ternary_qmark, - STATE(2739), 1, - sym_type_arguments, - STATE(2982), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5106), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5974), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5976), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [81849] = 19, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6034), 1, - anon_sym_PERCENT, - ACTIONS(6036), 1, - anon_sym_STAR_STAR, - ACTIONS(6095), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2983), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6014), 2, - anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6032), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 16, + ACTIONS(5068), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [81933] = 29, + anon_sym_extends, + [83851] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6022), 1, - anon_sym_GT_GT, - ACTIONS(6026), 1, + ACTIONS(6019), 1, anon_sym_AMP, - ACTIONS(6028), 1, - anon_sym_CARET, - ACTIONS(6030), 1, + ACTIONS(6021), 1, anon_sym_PIPE, - ACTIONS(6034), 1, - anon_sym_PERCENT, - ACTIONS(6036), 1, - anon_sym_STAR_STAR, - ACTIONS(6038), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2984), 1, + ACTIONS(6023), 1, + anon_sym_extends, + STATE(2849), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6014), 2, + ACTIONS(5045), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6016), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6032), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6040), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 7, + ACTIONS(5047), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [82037] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5377), 1, anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5950), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5952), 1, anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, - anon_sym_AMP, - ACTIONS(5960), 1, - anon_sym_CARET, - ACTIONS(5962), 1, - anon_sym_PIPE, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - ACTIONS(5978), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, - sym__ternary_qmark, - STATE(2739), 1, - sym_type_arguments, - STATE(2985), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5026), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5956), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5964), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5974), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5976), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82151] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5950), 1, - anon_sym_AMP_AMP, - ACTIONS(5952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, - anon_sym_AMP, - ACTIONS(5960), 1, anon_sym_CARET, - ACTIONS(5962), 1, - anon_sym_PIPE, - ACTIONS(5966), 1, anon_sym_PERCENT, - ACTIONS(5968), 1, anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - ACTIONS(5978), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, - sym__ternary_qmark, - STATE(2739), 1, - sym_type_arguments, - STATE(2986), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(4970), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5974), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5976), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [82265] = 28, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6022), 1, - anon_sym_GT_GT, - ACTIONS(6026), 1, - anon_sym_AMP, - ACTIONS(6028), 1, - anon_sym_CARET, - ACTIONS(6030), 1, - anon_sym_PIPE, - ACTIONS(6034), 1, - anon_sym_PERCENT, - ACTIONS(6036), 1, - anon_sym_STAR_STAR, - ACTIONS(6038), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2987), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6014), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6016), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6024), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6032), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6042), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6044), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6040), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [82367] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, anon_sym_satisfies, - ACTIONS(5950), 1, - anon_sym_AMP_AMP, - ACTIONS(5952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, - anon_sym_AMP, - ACTIONS(5960), 1, - anon_sym_CARET, - ACTIONS(5962), 1, - anon_sym_PIPE, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - ACTIONS(5978), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, - sym__ternary_qmark, - STATE(2739), 1, - sym_type_arguments, - STATE(2988), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5974), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5976), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6113), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82481] = 11, + [83913] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3432), 1, - anon_sym_extends, - ACTIONS(5259), 1, - anon_sym_LBRACK, - ACTIONS(6115), 1, - anon_sym_RPAREN, - STATE(2989), 1, + STATE(2850), 1, sym_comment, - ACTIONS(2071), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5262), 2, + ACTIONS(5029), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5914), 2, + ACTIONS(5031), 3, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2069), 11, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4137), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -291732,10 +280203,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 22, + ACTIONS(4141), 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, @@ -291755,22 +280230,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82549] = 9, + [83973] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5539), 1, - anon_sym_QMARK_DOT, - STATE(2990), 1, + STATE(2851), 1, sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(2169), 13, + ACTIONS(5041), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291784,7 +280251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2171), 25, + ACTIONS(5043), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291793,6 +280260,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -291810,38 +280280,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82613] = 16, + anon_sym_extends, + [84029] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6036), 1, - anon_sym_STAR_STAR, - ACTIONS(6095), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2991), 1, + STATE(2852), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 12, + ACTIONS(4964), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291852,105 +280299,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 17, + ACTIONS(4966), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [82691] = 21, + anon_sym_extends, + [84085] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6022), 1, - anon_sym_GT_GT, - ACTIONS(6034), 1, - anon_sym_PERCENT, - ACTIONS(6036), 1, - anon_sym_STAR_STAR, - ACTIONS(6038), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(2992), 1, + STATE(2853), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6014), 2, + ACTIONS(4877), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6024), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6032), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 14, + ACTIONS(4879), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [82779] = 7, + anon_sym_extends, + [84141] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5503), 1, - sym__automatic_semicolon, - STATE(2993), 1, + STATE(2854), 1, sym_comment, - ACTIONS(2067), 13, + ACTIONS(4877), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291964,7 +280404,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2103), 27, + ACTIONS(4879), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -291992,580 +280433,169 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82839] = 34, + anon_sym_extends, + [84197] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, - anon_sym_GT_GT, - ACTIONS(6026), 1, - anon_sym_AMP, - ACTIONS(6028), 1, - anon_sym_CARET, - ACTIONS(6030), 1, - anon_sym_PIPE, - ACTIONS(6034), 1, - anon_sym_PERCENT, - ACTIONS(6036), 1, - anon_sym_STAR_STAR, - ACTIONS(6038), 1, - anon_sym_LT, - ACTIONS(6046), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(2994), 1, + STATE(2855), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4970), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6014), 2, + ACTIONS(4877), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6016), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6032), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6040), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82953] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4879), 29, sym__automatic_semicolon, - ACTIONS(5359), 1, - anon_sym_LBRACK, - ACTIONS(5681), 1, - anon_sym_STAR, - ACTIONS(5685), 1, - anon_sym_async, - ACTIONS(6118), 1, - anon_sym_abstract, - STATE(2995), 1, - sym_comment, - STATE(3951), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5689), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4372), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [83031] = 21, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - STATE(2739), 1, - sym_type_arguments, - STATE(2996), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4957), 14, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [83119] = 23, + anon_sym_extends, + [84253] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - STATE(2739), 1, - sym_type_arguments, - STATE(2997), 1, + STATE(2856), 1, sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, + ACTIONS(5029), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4955), 5, - anon_sym_BANG, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 11, + ACTIONS(5031), 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, - [83211] = 35, + anon_sym_extends, + [84309] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5950), 1, - anon_sym_AMP_AMP, - ACTIONS(5952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, + ACTIONS(6019), 1, anon_sym_AMP, - ACTIONS(5960), 1, - anon_sym_CARET, - ACTIONS(5962), 1, - anon_sym_PIPE, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - ACTIONS(5978), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, - sym__ternary_qmark, - ACTIONS(6120), 1, - anon_sym_SEMI, - ACTIONS(6122), 1, - sym__automatic_semicolon, - STATE(2739), 1, - sym_type_arguments, - STATE(2998), 1, + STATE(2857), 1, sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, + ACTIONS(5025), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, + anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5974), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5976), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83327] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(5027), 29, sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6124), 1, - anon_sym_STAR, - ACTIONS(6126), 1, - anon_sym_async, - ACTIONS(6130), 1, - anon_sym_abstract, - STATE(2999), 1, - sym_comment, - STATE(3959), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6128), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4372), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [83405] = 35, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5950), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5952), 1, anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, - anon_sym_AMP, - ACTIONS(5960), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5962), 1, - anon_sym_PIPE, - ACTIONS(5966), 1, anon_sym_PERCENT, - ACTIONS(5968), 1, anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - ACTIONS(5978), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, - sym__ternary_qmark, - ACTIONS(6132), 1, - anon_sym_SEMI, - ACTIONS(6134), 1, - sym__automatic_semicolon, - STATE(2739), 1, - sym_type_arguments, - STATE(3000), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5974), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5976), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [83521] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6124), 1, - anon_sym_STAR, - ACTIONS(6126), 1, - anon_sym_async, - ACTIONS(6136), 1, - anon_sym_readonly, - STATE(3001), 1, - sym_comment, - STATE(3675), 1, - sym_override_modifier, - STATE(3963), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6128), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4372), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [83603] = 5, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [84367] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3002), 1, + STATE(2858), 1, sym_comment, - ACTIONS(3188), 13, + ACTIONS(5005), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292579,7 +280609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3432), 29, + ACTIONS(5007), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -292609,337 +280639,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [83659] = 30, + [84423] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5950), 1, - anon_sym_AMP_AMP, - ACTIONS(5952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, - anon_sym_AMP, - ACTIONS(5960), 1, - anon_sym_CARET, - ACTIONS(5962), 1, - anon_sym_PIPE, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - STATE(2739), 1, - sym_type_arguments, - STATE(3003), 1, + STATE(2859), 1, sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, + ACTIONS(5001), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5974), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5976), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 6, + ACTIONS(5003), 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, - [83765] = 34, + anon_sym_extends, + [84479] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5950), 1, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6066), 1, anon_sym_AMP_AMP, - ACTIONS(5952), 1, + ACTIONS(6068), 1, anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, + ACTIONS(6070), 1, anon_sym_AMP, - ACTIONS(5960), 1, + ACTIONS(6072), 1, anon_sym_CARET, - ACTIONS(5962), 1, + ACTIONS(6074), 1, anon_sym_PIPE, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - ACTIONS(5978), 1, + ACTIONS(6076), 1, anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, + ACTIONS(6078), 1, sym__ternary_qmark, - STATE(2739), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3004), 1, + STATE(2860), 1, sym_comment, - STATE(6093), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(5373), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5409), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5946), 2, + ACTIONS(5276), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5948), 2, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5956), 2, + ACTIONS(5995), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5964), 2, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5974), 2, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5976), 2, + ACTIONS(6009), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5972), 3, + ACTIONS(6005), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83879] = 34, + [84593] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(6018), 1, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6066), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(6068), 1, anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, - anon_sym_GT_GT, - ACTIONS(6026), 1, + ACTIONS(6070), 1, anon_sym_AMP, - ACTIONS(6028), 1, + ACTIONS(6072), 1, anon_sym_CARET, - ACTIONS(6030), 1, + ACTIONS(6074), 1, anon_sym_PIPE, - ACTIONS(6034), 1, - anon_sym_PERCENT, - ACTIONS(6036), 1, - anon_sym_STAR_STAR, - ACTIONS(6038), 1, - anon_sym_LT, - ACTIONS(6046), 1, + ACTIONS(6076), 1, anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, + ACTIONS(6078), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3005), 1, + STATE(2861), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4986), 2, + ACTIONS(5180), 2, anon_sym_RBRACE, anon_sym_COLON, - ACTIONS(6014), 2, + ACTIONS(5989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6016), 2, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, + ACTIONS(5995), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6032), 2, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, + ACTIONS(6009), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6040), 3, + ACTIONS(6005), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [83993] = 34, + [84707] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(4195), 1, + anon_sym_EQ, + ACTIONS(4267), 1, + anon_sym_QMARK, + ACTIONS(5779), 1, + anon_sym_LBRACK, + STATE(2862), 1, + sym_comment, + ACTIONS(4264), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5190), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5782), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4137), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5369), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4141), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5950), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5952), 1, anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, - anon_sym_AMP, - ACTIONS(5960), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5962), 1, - anon_sym_PIPE, - ACTIONS(5966), 1, anon_sym_PERCENT, - ACTIONS(5968), 1, anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - ACTIONS(5978), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, - sym__ternary_qmark, - STATE(2739), 1, - sym_type_arguments, - STATE(3006), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5154), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5409), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5946), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84775] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4843), 1, + anon_sym_extends, + ACTIONS(5773), 1, + anon_sym_LBRACK, + ACTIONS(6132), 1, + anon_sym_RPAREN, + STATE(2863), 1, + sym_comment, + ACTIONS(5776), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6127), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6129), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4137), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5974), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5976), 2, + ACTIONS(4141), 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, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [84107] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [84843] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6138), 1, - sym__automatic_semicolon, - STATE(3007), 1, + STATE(2864), 1, sym_comment, - ACTIONS(2103), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2069), 13, + ACTIONS(5162), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292953,11 +280985,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 25, + ACTIONS(5164), 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, @@ -292979,630 +281014,347 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84169] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_extends, + [84899] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6140), 1, - anon_sym_static, - ACTIONS(6142), 1, - anon_sym_readonly, - ACTIONS(6144), 1, - anon_sym_abstract, - STATE(3008), 1, - sym_comment, - STATE(3683), 1, - sym_override_modifier, - STATE(4436), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4372), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [84249] = 16, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6146), 1, - anon_sym_STAR, - ACTIONS(6148), 1, - anon_sym_async, - ACTIONS(6152), 1, - anon_sym_abstract, - STATE(3009), 1, + STATE(2865), 1, sym_comment, - STATE(3972), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6150), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(4997), 13, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_in, + anon_sym_GT, + 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, - ACTIONS(4372), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [84327] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4514), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4999), 29, sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6146), 1, - anon_sym_STAR, - ACTIONS(6148), 1, - anon_sym_async, - ACTIONS(6154), 1, - anon_sym_readonly, - STATE(3010), 1, - sym_comment, - STATE(3672), 1, - sym_override_modifier, - STATE(3972), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6150), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4372), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [84409] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5950), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5952), 1, anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, - anon_sym_AMP, - ACTIONS(5960), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5962), 1, - anon_sym_PIPE, - ACTIONS(5966), 1, anon_sym_PERCENT, - ACTIONS(5968), 1, anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - ACTIONS(5978), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, - sym__ternary_qmark, - STATE(2739), 1, - sym_type_arguments, - STATE(3011), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5241), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5409), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5946), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [84955] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(6136), 1, + anon_sym_DOT, + STATE(2866), 1, + sym_comment, + ACTIONS(4987), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5974), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5976), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84523] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4989), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4811), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6018), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, - anon_sym_GT_GT, - ACTIONS(6026), 1, - anon_sym_AMP, - ACTIONS(6028), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6030), 1, - anon_sym_PIPE, - ACTIONS(6034), 1, anon_sym_PERCENT, - ACTIONS(6036), 1, anon_sym_STAR_STAR, - ACTIONS(6038), 1, - anon_sym_LT, - ACTIONS(6046), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(3012), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5038), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6014), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [85013] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2867), 1, + sym_comment, + ACTIONS(5162), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6016), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6032), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6040), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84637] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(5164), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4811), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6018), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, - anon_sym_GT_GT, - ACTIONS(6026), 1, - anon_sym_AMP, - ACTIONS(6028), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6030), 1, - anon_sym_PIPE, - ACTIONS(6034), 1, anon_sym_PERCENT, - ACTIONS(6036), 1, anon_sym_STAR_STAR, - ACTIONS(6038), 1, - anon_sym_LT, - ACTIONS(6046), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(3013), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5100), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6014), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [85069] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2868), 1, + sym_comment, + ACTIONS(5162), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6016), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6032), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6040), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84751] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5164), 29, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5375), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5377), 1, anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5950), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5952), 1, anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, - anon_sym_AMP, - ACTIONS(5960), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5962), 1, - anon_sym_PIPE, - ACTIONS(5966), 1, anon_sym_PERCENT, - ACTIONS(5968), 1, anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - ACTIONS(5978), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, - sym__ternary_qmark, - STATE(2739), 1, - sym_type_arguments, - STATE(3014), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5179), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5409), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5946), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [85125] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5394), 1, + anon_sym_LPAREN, + STATE(2869), 1, + sym_comment, + STATE(2975), 1, + sym_arguments, + ACTIONS(5339), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5974), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5976), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84865] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5341), 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, - ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6018), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, - anon_sym_GT_GT, - ACTIONS(6026), 1, - anon_sym_AMP, - ACTIONS(6028), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6030), 1, - anon_sym_PIPE, - ACTIONS(6034), 1, anon_sym_PERCENT, - ACTIONS(6036), 1, anon_sym_STAR_STAR, - ACTIONS(6038), 1, - anon_sym_LT, - ACTIONS(6046), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(3015), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5106), 2, - anon_sym_RBRACE, - anon_sym_COLON, - ACTIONS(6014), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [85185] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2870), 1, + sym_comment, + ACTIONS(5246), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6016), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6032), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, + ACTIONS(5248), 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, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6040), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [84979] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [85241] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3016), 1, + STATE(2871), 1, sym_comment, - ACTIONS(5672), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5669), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4861), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4121), 11, + ACTIONS(5246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 22, + ACTIONS(5248), 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, @@ -293622,16 +281374,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85041] = 6, + anon_sym_extends, + [85297] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4222), 1, - anon_sym_EQ, - STATE(3017), 1, + STATE(2872), 1, sym_comment, - ACTIONS(4121), 13, + ACTIONS(5246), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -293645,7 +281396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 28, + ACTIONS(5248), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -293674,14 +281425,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85099] = 5, + anon_sym_extends, + [85353] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3018), 1, + STATE(2873), 1, sym_comment, - ACTIONS(5139), 13, + ACTIONS(5228), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -293695,7 +281447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5141), 29, + ACTIONS(5230), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -293725,105 +281477,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [85155] = 34, + [85409] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5950), 1, - anon_sym_AMP_AMP, - ACTIONS(5952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6138), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2874), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5053), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(5958), 1, anon_sym_AMP, - ACTIONS(5960), 1, - anon_sym_CARET, - ACTIONS(5962), 1, anon_sym_PIPE, - ACTIONS(5966), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5055), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5968), 1, anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - ACTIONS(5978), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, + anon_sym_instanceof, + anon_sym_satisfies, + [85485] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(3570), 1, + anon_sym_extends, + ACTIONS(5343), 1, + anon_sym_LBRACK, + ACTIONS(6141), 1, + anon_sym_RPAREN, + STATE(2875), 1, + sym_comment, + ACTIONS(2071), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5346), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5807), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2069), 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(2075), 22, sym__ternary_qmark, - STATE(2739), 1, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [85553] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(6144), 1, + anon_sym_LT, + STATE(2220), 1, sym_type_arguments, - STATE(3019), 1, + STATE(2876), 1, sym_comment, - STATE(6093), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5946), 2, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4937), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5974), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5976), 2, + ACTIONS(4939), 16, + sym__ternary_qmark, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6156), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [85269] = 9, + [85635] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4224), 1, - anon_sym_EQ, - ACTIONS(5286), 1, - anon_sym_extends, - STATE(3020), 1, + ACTIONS(5779), 1, + anon_sym_LBRACK, + STATE(2877), 1, sym_comment, - ACTIONS(5675), 2, + ACTIONS(5190), 2, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5678), 3, + anon_sym_extends, + ACTIONS(5782), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4121), 10, + ACTIONS(4137), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -293834,13 +281686,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 25, - sym__automatic_semicolon, + ACTIONS(4141), 26, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -293860,26 +281713,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85333] = 8, + [85697] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5206), 1, - anon_sym_extends, - STATE(3021), 1, - sym_comment, - ACTIONS(5568), 2, - anon_sym_COMMA, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(5571), 3, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6066), 1, + anon_sym_AMP_AMP, + ACTIONS(6068), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6070), 1, + anon_sym_AMP, + ACTIONS(6072), 1, + anon_sym_CARET, + ACTIONS(6074), 1, + anon_sym_PIPE, + ACTIONS(6076), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6078), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2878), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4960), 2, + anon_sym_RBRACE, + anon_sym_COLON, + ACTIONS(5989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5991), 2, + anon_sym_in, anon_sym_GT, + ACTIONS(5995), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5997), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6007), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6009), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6005), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [85811] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5003), 1, + anon_sym_extends, + ACTIONS(5326), 1, + anon_sym_LBRACK, + ACTIONS(6147), 1, + anon_sym_RPAREN, + STATE(2879), 1, + sym_comment, + ACTIONS(5322), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5329), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5564), 10, + ACTIONS(5904), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5320), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -293887,14 +281827,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5566), 26, - sym__automatic_semicolon, + ACTIONS(5324), 22, 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, @@ -293914,26 +281850,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85395] = 8, + [85879] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5669), 1, - anon_sym_LBRACK, - STATE(3022), 1, - sym_comment, - ACTIONS(4861), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5672), 3, - anon_sym_GT, + ACTIONS(6019), 1, anon_sym_AMP, + ACTIONS(6021), 1, anon_sym_PIPE, - ACTIONS(4121), 10, + ACTIONS(6023), 1, + anon_sym_extends, + STATE(2880), 1, + sym_comment, + ACTIONS(5224), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -293941,14 +281875,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 26, + ACTIONS(5226), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -293968,16 +281904,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85457] = 6, + [85941] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6078), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - STATE(3023), 1, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5494), 1, + anon_sym_QMARK_DOT, + STATE(2881), 1, sym_comment, - ACTIONS(5167), 13, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(2151), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -293991,7 +281933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5169), 28, + ACTIONS(2153), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -294000,8 +281942,6 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -294019,124 +281959,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [85515] = 35, + [86005] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5950), 1, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(5952), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(5958), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(5960), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(5962), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(5966), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(5968), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(5970), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(5978), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, + ACTIONS(5983), 1, sym__ternary_qmark, - ACTIONS(6158), 1, + ACTIONS(6150), 1, anon_sym_SEMI, - ACTIONS(6160), 1, + ACTIONS(6152), 1, sym__automatic_semicolon, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(3024), 1, + STATE(2882), 1, sym_comment, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5946), 2, + ACTIONS(5947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5948), 2, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5956), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5964), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5974), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5976), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5972), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85631] = 7, + [86121] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3025), 1, - sym_comment, - ACTIONS(5208), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5210), 3, - anon_sym_COMMA, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4121), 10, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6154), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(2883), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4978), 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_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 26, - sym__automatic_semicolon, + ACTIONS(4980), 20, 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_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -294152,18 +282099,20 @@ 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, - [85691] = 6, + [86195] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6162), 1, - anon_sym_extends, - STATE(3026), 1, + STATE(2884), 1, sym_comment, - ACTIONS(5173), 13, + ACTIONS(5178), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(5172), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -294177,15 +282126,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5175), 28, - sym__automatic_semicolon, + ACTIONS(5174), 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_DOT, anon_sym_QMARK_DOT, @@ -294206,165 +282152,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85749] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6164), 1, - anon_sym_STAR, - ACTIONS(6166), 1, - anon_sym_async, - ACTIONS(6168), 1, - anon_sym_readonly, - STATE(3027), 1, - sym_comment, - STATE(3668), 1, - sym_override_modifier, - STATE(4050), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6170), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4372), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [85831] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - ACTIONS(6172), 1, - anon_sym_RBRACE, - STATE(3028), 1, - sym_comment, - STATE(3665), 1, - sym_override_modifier, - STATE(4761), 1, - sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [85921] = 8, + [86253] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5187), 1, - anon_sym_extends, - ACTIONS(6078), 1, - anon_sym_LBRACK, - STATE(3029), 1, + STATE(2885), 1, sym_comment, - ACTIONS(5185), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5181), 11, + ACTIONS(4972), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5183), 27, + ACTIONS(4974), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -294373,6 +282182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -294392,96 +282202,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85983] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5950), 1, - anon_sym_AMP_AMP, - ACTIONS(5952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, - anon_sym_AMP, - ACTIONS(5960), 1, - anon_sym_CARET, - ACTIONS(5962), 1, - anon_sym_PIPE, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - ACTIONS(5978), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, - sym__ternary_qmark, - STATE(2739), 1, - sym_type_arguments, - STATE(3030), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5974), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5976), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6174), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86097] = 6, + anon_sym_extends, + [86309] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4123), 1, - anon_sym_EQ, - STATE(3031), 1, + STATE(2886), 1, sym_comment, - ACTIONS(4121), 13, + ACTIONS(4855), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -294495,16 +282224,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 28, + ACTIONS(4857), 29, + 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, @@ -294524,182 +282253,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86155] = 35, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5950), 1, - anon_sym_AMP_AMP, - ACTIONS(5952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, - anon_sym_AMP, - ACTIONS(5960), 1, - anon_sym_CARET, - ACTIONS(5962), 1, - anon_sym_PIPE, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - ACTIONS(5978), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, - sym__ternary_qmark, - ACTIONS(6176), 1, - anon_sym_SEMI, - ACTIONS(6178), 1, - sym__automatic_semicolon, - STATE(2739), 1, - sym_type_arguments, - STATE(3032), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5974), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5976), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86271] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_extends, + [86365] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1051), 1, - anon_sym_RBRACE, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(4939), 1, + ACTIONS(2071), 1, anon_sym_EQ, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - STATE(3033), 1, - sym_comment, - STATE(3665), 1, - sym_override_modifier, - STATE(4761), 1, - sym__property_name, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [86361] = 8, - ACTIONS(5), 1, - sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5940), 1, - anon_sym_AMP, - ACTIONS(5942), 1, - anon_sym_PIPE, - ACTIONS(5944), 1, - anon_sym_extends, - STATE(3034), 1, + ACTIONS(5701), 1, + sym__automatic_semicolon, + STATE(2887), 1, sym_comment, - ACTIONS(5196), 11, + ACTIONS(2067), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5198), 28, - sym__automatic_semicolon, + ACTIONS(2095), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -294727,14 +282307,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86423] = 5, + [86425] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3035), 1, + STATE(2888), 1, sym_comment, - ACTIONS(5200), 13, + ACTIONS(4871), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -294748,7 +282328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5202), 29, + ACTIONS(4873), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -294778,14 +282358,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [86479] = 5, + [86481] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6157), 1, + anon_sym_STAR, + ACTIONS(6159), 1, + anon_sym_async, + ACTIONS(6163), 1, + anon_sym_abstract, + STATE(2889), 1, + sym_comment, + STATE(3803), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6161), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 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(4376), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86559] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3036), 1, + STATE(2890), 1, sym_comment, - ACTIONS(5204), 13, + ACTIONS(5188), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -294799,7 +282441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5206), 29, + ACTIONS(5190), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -294829,37 +282471,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [86535] = 5, + [86615] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3037), 1, + ACTIONS(4267), 1, + anon_sym_QMARK, + ACTIONS(4284), 1, + anon_sym_EQ, + ACTIONS(5779), 1, + anon_sym_LBRACK, + STATE(2891), 1, sym_comment, - ACTIONS(5208), 13, + ACTIONS(4287), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5190), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5782), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4137), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5210), 29, - sym__automatic_semicolon, + ACTIONS(4141), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -294879,100 +282528,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [86591] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5950), 1, - anon_sym_AMP_AMP, - ACTIONS(5952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, - anon_sym_AMP, - ACTIONS(5960), 1, - anon_sym_CARET, - ACTIONS(5962), 1, - anon_sym_PIPE, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - ACTIONS(5978), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, - sym__ternary_qmark, - STATE(2739), 1, - sym_type_arguments, - STATE(3038), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5212), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5974), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5976), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [86705] = 6, + [86683] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3039), 1, + STATE(2892), 1, sym_comment, - ACTIONS(5137), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(5306), 13, + ACTIONS(4841), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -294986,12 +282549,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 25, + ACTIONS(4843), 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, @@ -295012,29 +282578,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86763] = 11, + anon_sym_extends, + [86739] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4861), 1, + ACTIONS(4843), 1, anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(5773), 1, anon_sym_LBRACK, - ACTIONS(6183), 1, + ACTIONS(6167), 1, anon_sym_RPAREN, - STATE(3040), 1, + STATE(2893), 1, sym_comment, - ACTIONS(5672), 2, + ACTIONS(5776), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6082), 2, + ACTIONS(6127), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(6180), 2, + ACTIONS(6165), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4121), 11, + ACTIONS(4137), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -295046,7 +282613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 22, + ACTIONS(4141), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -295069,124 +282636,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [86831] = 34, + [86807] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6157), 1, + anon_sym_STAR, + ACTIONS(6159), 1, + anon_sym_async, + ACTIONS(6170), 1, + anon_sym_readonly, + STATE(2894), 1, + sym_comment, + STATE(3524), 1, + sym_override_modifier, + STATE(3797), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6161), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 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(4376), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [86889] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5950), 1, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(5952), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(5958), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(5960), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(5962), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(5966), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(5968), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(5970), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(5978), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, + ACTIONS(5983), 1, sym__ternary_qmark, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(3041), 1, + STATE(2895), 1, sym_comment, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5946), 2, + ACTIONS(5947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5948), 2, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5956), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5964), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5974), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5976), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6187), 2, + ACTIONS(6172), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5972), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [86945] = 11, + [87003] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4205), 1, - anon_sym_EQ, - ACTIONS(4257), 1, - anon_sym_QMARK, - ACTIONS(5675), 1, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3042), 1, + ACTIONS(6174), 1, + anon_sym_static, + ACTIONS(6176), 1, + anon_sym_readonly, + ACTIONS(6178), 1, + anon_sym_abstract, + STATE(2896), 1, sym_comment, - ACTIONS(4259), 2, + STATE(3582), 1, + sym_override_modifier, + STATE(4122), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 8, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(5286), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5678), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4121), 11, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4376), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87083] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2897), 1, + sym_comment, + ACTIONS(4881), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 22, + ACTIONS(4883), 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, @@ -295206,44 +282893,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [87013] = 11, + anon_sym_extends, + [87139] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4861), 1, - anon_sym_extends, - ACTIONS(5669), 1, + ACTIONS(6123), 1, anon_sym_LBRACK, - ACTIONS(6193), 1, - anon_sym_RPAREN, - STATE(3043), 1, + STATE(2898), 1, sym_comment, - ACTIONS(5672), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6189), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6191), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4121), 11, + ACTIONS(4881), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 22, + ACTIONS(4883), 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, @@ -295263,16 +282945,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [87081] = 6, + anon_sym_extends, + [87197] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3044), 1, + STATE(2899), 1, sym_comment, - ACTIONS(2069), 13, + ACTIONS(5332), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -295286,7 +282967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 28, + ACTIONS(5334), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -295315,43 +282996,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [87139] = 8, + anon_sym_extends, + [87253] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3045), 1, - sym_comment, - ACTIONS(5571), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5568), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5206), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(5564), 11, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(6180), 1, + anon_sym_LT, + STATE(2627), 1, + sym_type_arguments, + STATE(2900), 1, + sym_comment, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5053), 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_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5566), 22, + ACTIONS(5055), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -295365,154 +283057,386 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [87201] = 6, + [87329] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5940), 1, - anon_sym_AMP, - STATE(3046), 1, - sym_comment, - ACTIONS(5226), 12, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6183), 1, anon_sym_STAR, + ACTIONS(6185), 1, + anon_sym_async, + ACTIONS(6189), 1, + anon_sym_abstract, + STATE(2901), 1, + sym_comment, + STATE(3794), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6187), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 8, + anon_sym_EQ, + anon_sym_COMMA, 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_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5228), 29, - sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_QMARK, + ACTIONS(4376), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87407] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5398), 1, anon_sym_LBRACK, + ACTIONS(5400), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, anon_sym_AMP_AMP, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, + anon_sym_AMP, + ACTIONS(5963), 1, anon_sym_CARET, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(5969), 1, anon_sym_PERCENT, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5973), 1, + anon_sym_LT, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + STATE(2627), 1, + sym_type_arguments, + STATE(2902), 1, + sym_comment, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5947), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5949), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5977), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(6191), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [87259] = 34, + [87521] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6183), 1, + anon_sym_STAR, + ACTIONS(6185), 1, + anon_sym_async, + ACTIONS(6193), 1, + anon_sym_readonly, + STATE(2903), 1, + sym_comment, + STATE(3517), 1, + sym_override_modifier, + STATE(3794), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6187), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 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(4376), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87603] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(966), 1, + anon_sym_RBRACE, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(5985), 1, + anon_sym_STAR, + STATE(2904), 1, + sym_comment, + STATE(3531), 1, + sym_override_modifier, + STATE(4808), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87693] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(5985), 1, + anon_sym_STAR, + ACTIONS(6195), 1, + anon_sym_RBRACE, + STATE(2905), 1, + sym_comment, + STATE(3531), 1, + sym_override_modifier, + STATE(4808), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87783] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5950), 1, - anon_sym_AMP_AMP, - ACTIONS(5952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, - anon_sym_AMP, - ACTIONS(5960), 1, - anon_sym_CARET, - ACTIONS(5962), 1, - anon_sym_PIPE, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5970), 1, + ACTIONS(6197), 1, anon_sym_LT, - ACTIONS(5978), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, - sym__ternary_qmark, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(3047), 1, + STATE(2906), 1, sym_comment, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5304), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5946), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5974), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5976), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [87373] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6196), 1, - anon_sym_DOT, - STATE(3048), 1, - sym_comment, - ACTIONS(5247), 13, + ACTIONS(4937), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -295521,20 +283445,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5249), 28, + ACTIONS(4939), 16, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -295548,31 +283464,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [87431] = 8, + [87865] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5568), 1, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3049), 1, + ACTIONS(6200), 1, + anon_sym_STAR, + ACTIONS(6202), 1, + anon_sym_async, + ACTIONS(6204), 1, + anon_sym_readonly, + STATE(2907), 1, sym_comment, - ACTIONS(5206), 2, + STATE(3534), 1, + sym_override_modifier, + STATE(3863), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6206), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 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(4376), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87947] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(3570), 1, anon_sym_extends, - ACTIONS(5571), 3, - anon_sym_GT, + ACTIONS(5343), 1, + anon_sym_LBRACK, + ACTIONS(5931), 1, + anon_sym_RPAREN, + STATE(2908), 1, + sym_comment, + ACTIONS(2071), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5346), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5564), 10, + ACTIONS(5680), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2069), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -295580,14 +283562,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5566), 26, + ACTIONS(2075), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -295607,40 +283585,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [87493] = 7, + [88015] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2071), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3050), 1, + STATE(2909), 1, sym_comment, - ACTIONS(5208), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5210), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4121), 11, + ACTIONS(2069), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 22, + ACTIONS(2075), 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, @@ -295660,69 +283637,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [87553] = 8, + [88073] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4861), 1, - anon_sym_extends, - STATE(3051), 1, - sym_comment, - ACTIONS(5669), 2, - anon_sym_COMMA, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5390), 1, + anon_sym_as, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5672), 3, - anon_sym_GT, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(5436), 1, + anon_sym_satisfies, + ACTIONS(5953), 1, + anon_sym_AMP_AMP, + ACTIONS(5955), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5957), 1, + anon_sym_GT_GT, + ACTIONS(5961), 1, anon_sym_AMP, + ACTIONS(5963), 1, + anon_sym_CARET, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(4121), 10, + ACTIONS(5969), 1, + anon_sym_PERCENT, + ACTIONS(5971), 1, + anon_sym_STAR_STAR, + ACTIONS(5973), 1, + anon_sym_LT, + ACTIONS(5981), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5983), 1, + sym__ternary_qmark, + STATE(2627), 1, + sym_type_arguments, + STATE(2910), 1, + sym_comment, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(5432), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5616), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5947), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5949), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5959), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 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, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(5975), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87615] = 5, + [88187] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3052), 1, + ACTIONS(6212), 1, + sym_regex_flags, + STATE(2911), 1, sym_comment, - ACTIONS(5243), 13, + ACTIONS(6208), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -295735,16 +283741,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5245), 29, - sym__automatic_semicolon, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6210), 25, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -295759,100 +283766,97 @@ 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, - [87671] = 34, + [88245] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5363), 1, + ACTIONS(5390), 1, anon_sym_as, - ACTIONS(5367), 1, + ACTIONS(5392), 1, anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5398), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(5400), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(5434), 1, anon_sym_BQUOTE, - ACTIONS(5413), 1, + ACTIONS(5436), 1, anon_sym_satisfies, - ACTIONS(5950), 1, + ACTIONS(5953), 1, anon_sym_AMP_AMP, - ACTIONS(5952), 1, + ACTIONS(5955), 1, anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, + ACTIONS(5957), 1, anon_sym_GT_GT, - ACTIONS(5958), 1, + ACTIONS(5961), 1, anon_sym_AMP, - ACTIONS(5960), 1, + ACTIONS(5963), 1, anon_sym_CARET, - ACTIONS(5962), 1, + ACTIONS(5965), 1, anon_sym_PIPE, - ACTIONS(5966), 1, + ACTIONS(5969), 1, anon_sym_PERCENT, - ACTIONS(5968), 1, + ACTIONS(5971), 1, anon_sym_STAR_STAR, - ACTIONS(5970), 1, + ACTIONS(5973), 1, anon_sym_LT, - ACTIONS(5978), 1, + ACTIONS(5981), 1, anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, + ACTIONS(5983), 1, sym__ternary_qmark, - STATE(2739), 1, + STATE(2627), 1, sym_type_arguments, - STATE(3053), 1, + STATE(2912), 1, sym_comment, - STATE(6093), 1, + STATE(5804), 1, sym_optional_chain, - ACTIONS(5216), 2, + ACTIONS(4960), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(5409), 2, + ACTIONS(5432), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5946), 2, + ACTIONS(5947), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5948), 2, + ACTIONS(5949), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5956), 2, + ACTIONS(5959), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5964), 2, + ACTIONS(5967), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5974), 2, + ACTIONS(5977), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5976), 2, + ACTIONS(5979), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3121), 2, + STATE(3075), 2, sym_template_string, sym_arguments, - ACTIONS(5972), 3, + ACTIONS(5975), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [87785] = 22, + [88359] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(1022), 1, + ACTIONS(1041), 1, anon_sym_RBRACE, ACTIONS(1894), 1, anon_sym_DQUOTE, @@ -295864,32 +283868,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2908), 1, anon_sym_override, - ACTIONS(4939), 1, + ACTIONS(5134), 1, anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, + ACTIONS(5985), 1, anon_sym_STAR, - STATE(3054), 1, + STATE(2913), 1, sym_comment, - STATE(3665), 1, + STATE(3531), 1, sym_override_modifier, - STATE(4761), 1, + STATE(4808), 1, sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(5868), 1, aux_sym_object_repeat1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -295913,38 +283917,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [87875] = 16, + [88449] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5992), 1, - anon_sym_LT, - STATE(2739), 1, - sym_type_arguments, - STATE(3055), 1, + STATE(2914), 1, sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 12, + ACTIONS(3222), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -295955,137 +283935,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 17, + ACTIONS(3540), 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, - [87953] = 34, + anon_sym_extends, + [88505] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5003), 1, + anon_sym_extends, + ACTIONS(5326), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5950), 1, - anon_sym_AMP_AMP, - ACTIONS(5952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, + ACTIONS(5793), 1, + anon_sym_RPAREN, + STATE(2915), 1, + sym_comment, + ACTIONS(5322), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5329), 2, anon_sym_AMP, - ACTIONS(5960), 1, - anon_sym_CARET, - ACTIONS(5962), 1, anon_sym_PIPE, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - ACTIONS(5978), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, - sym__ternary_qmark, - STATE(2739), 1, - sym_type_arguments, - STATE(3056), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5974), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5976), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6198), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88067] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3057), 1, - sym_comment, - ACTIONS(5237), 13, + ACTIONS(5744), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5320), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5239), 29, - sym__automatic_semicolon, + ACTIONS(5324), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -296105,15 +284025,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [88123] = 5, + [88573] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3058), 1, + ACTIONS(5632), 1, + anon_sym_EQ, + STATE(2916), 1, sym_comment, - ACTIONS(5233), 13, + ACTIONS(5630), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296127,7 +284048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5235), 29, + ACTIONS(5634), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -296156,29 +284077,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [88179] = 9, + [88631] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5371), 1, + anon_sym_STAR, + ACTIONS(5375), 1, + anon_sym_async, + ACTIONS(5444), 1, + anon_sym_LBRACK, + ACTIONS(6214), 1, + anon_sym_abstract, + STATE(2917), 1, + sym_comment, + STATE(3819), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5379), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 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(4376), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88709] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, - anon_sym_EQ, - ACTIONS(5286), 1, + ACTIONS(5043), 1, anon_sym_extends, - STATE(3059), 1, + STATE(2918), 1, sym_comment, - ACTIONS(5675), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5678), 3, - anon_sym_GT, + ACTIONS(5526), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4121), 10, + ACTIONS(5523), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(5519), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -296186,13 +284167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 25, - sym__automatic_semicolon, + ACTIONS(5521), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -296212,36 +284192,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88243] = 15, + [88770] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(5985), 1, + anon_sym_STAR, + ACTIONS(6113), 1, + anon_sym_RBRACE, + STATE(2919), 1, + sym_comment, + STATE(4808), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88851] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(6216), 1, + anon_sym_STAR, + STATE(2920), 1, + sym_comment, + STATE(4810), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6218), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 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(2900), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [88924] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(6200), 1, - anon_sym_LT, - STATE(2739), 1, - sym_type_arguments, - STATE(3060), 1, + STATE(2921), 1, sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, + STATE(2458), 2, sym_template_string, sym_arguments, - ACTIONS(5189), 12, + ACTIONS(6220), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4861), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296252,13 +284343,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 18, - sym__automatic_semicolon, + ACTIONS(4863), 21, 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, @@ -296272,17 +284365,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_satisfies, - [88319] = 6, + [88987] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5419), 1, - anon_sym_EQ, - STATE(3061), 1, + STATE(2922), 1, sym_comment, - ACTIONS(5417), 13, + ACTIONS(2275), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2191), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296296,15 +284395,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5421), 28, - sym__automatic_semicolon, + ACTIONS(2195), 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, @@ -296325,245 +284419,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88377] = 18, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [89044] = 14, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(6203), 1, - anon_sym_LT, - STATE(2739), 1, - sym_type_arguments, - STATE(3062), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5156), 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(5158), 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, - [88459] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5363), 1, - anon_sym_as, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, - anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(5413), 1, - anon_sym_satisfies, - ACTIONS(5950), 1, - anon_sym_AMP_AMP, - ACTIONS(5952), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5954), 1, - anon_sym_GT_GT, - ACTIONS(5958), 1, - anon_sym_AMP, - ACTIONS(5960), 1, - anon_sym_CARET, - ACTIONS(5962), 1, - anon_sym_PIPE, - ACTIONS(5966), 1, - anon_sym_PERCENT, - ACTIONS(5968), 1, - anon_sym_STAR_STAR, - ACTIONS(5970), 1, - anon_sym_LT, - ACTIONS(5978), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5980), 1, - sym__ternary_qmark, - STATE(2739), 1, - sym_type_arguments, - STATE(3063), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - ACTIONS(4881), 2, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5409), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5946), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5948), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5956), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5964), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5974), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5976), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5972), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88573] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(6206), 1, - anon_sym_LT, - STATE(2739), 1, - sym_type_arguments, - STATE(3064), 1, - sym_comment, - STATE(6093), 1, - sym_optional_chain, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(5143), 12, + ACTIONS(6200), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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(5145), 20, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + STATE(2923), 1, + sym_comment, + STATE(4720), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6222), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 8, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [88647] = 8, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [89117] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3065), 1, + STATE(2924), 1, sym_comment, - ACTIONS(5678), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5675), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5286), 4, + ACTIONS(6224), 3, sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(4121), 11, + ACTIONS(5172), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 22, + ACTIONS(5174), 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, @@ -296583,14 +284529,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88709] = 5, + [89174] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3066), 1, + STATE(2925), 1, sym_comment, - ACTIONS(2129), 13, + ACTIONS(5691), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296604,7 +284550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2133), 28, + ACTIONS(4968), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -296633,93 +284579,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88764] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5038), 1, - anon_sym_RBRACK, - ACTIONS(6213), 1, - anon_sym_AMP_AMP, - ACTIONS(6215), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6217), 1, - anon_sym_GT_GT, - ACTIONS(6221), 1, - anon_sym_AMP, - ACTIONS(6223), 1, - anon_sym_CARET, - ACTIONS(6225), 1, - anon_sym_PIPE, - ACTIONS(6229), 1, - anon_sym_PERCENT, - ACTIONS(6231), 1, - anon_sym_STAR_STAR, - ACTIONS(6233), 1, - anon_sym_LT, - ACTIONS(6241), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6243), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(3067), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6209), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6211), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6219), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6237), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6239), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6235), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [88877] = 19, + [89229] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(1051), 1, + ACTIONS(966), 1, anon_sym_RBRACE, ACTIONS(1894), 1, anon_sym_DQUOTE, @@ -296727,30 +284594,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2902), 1, anon_sym_async, - ACTIONS(4939), 1, + ACTIONS(5134), 1, anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, + ACTIONS(5985), 1, anon_sym_STAR, - STATE(3068), 1, + STATE(2926), 1, sym_comment, - STATE(4761), 1, + STATE(4808), 1, sym__property_name, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, + STATE(5869), 1, aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -296776,103 +284643,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [88960] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3069), 1, - sym_comment, - ACTIONS(5586), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5588), 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, - [89015] = 18, + [89312] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1051), 1, - anon_sym_RBRACE, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5444), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, + ACTIONS(6200), 1, anon_sym_STAR, - STATE(3070), 1, + ACTIONS(6202), 1, + anon_sym_async, + STATE(2927), 1, sym_comment, - STATE(4761), 1, + STATE(3863), 1, sym__property_name, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6206), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 8, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(4376), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -296889,14 +284703,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89096] = 5, + [89387] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3071), 1, + STATE(2928), 1, sym_comment, - ACTIONS(5574), 13, + ACTIONS(2343), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2199), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296910,15 +284730,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5576), 28, - sym__automatic_semicolon, + ACTIONS(2203), 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, @@ -296939,73 +284754,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89151] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [89444] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(6226), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(6245), 1, - anon_sym_STAR, - STATE(3072), 1, + STATE(2929), 1, sym_comment, - STATE(4826), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6247), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, + ACTIONS(2365), 4, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89224] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3073), 1, - sym_comment, - ACTIONS(5582), 13, + anon_sym_PIPE_RBRACE, + ACTIONS(2085), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297019,15 +284782,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5584), 28, - sym__automatic_semicolon, + ACTIONS(2089), 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, @@ -297048,14 +284806,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89279] = 5, + [89503] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3074), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5276), 1, + anon_sym_of, + ACTIONS(6232), 1, + anon_sym_AMP_AMP, + ACTIONS(6234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6236), 1, + anon_sym_GT_GT, + ACTIONS(6240), 1, + anon_sym_AMP, + ACTIONS(6242), 1, + anon_sym_CARET, + ACTIONS(6244), 1, + anon_sym_PIPE, + ACTIONS(6248), 1, + anon_sym_PERCENT, + ACTIONS(6250), 1, + anon_sym_STAR_STAR, + ACTIONS(6252), 1, + anon_sym_LT, + ACTIONS(6260), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6262), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2930), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6228), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6230), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6256), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6258), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6254), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [89616] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4231), 1, + anon_sym_EQ, + STATE(2931), 1, sym_comment, - ACTIONS(5748), 13, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297069,12 +284908,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5750), 28, + ACTIONS(4141), 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, @@ -297098,14 +284936,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89334] = 5, + [89673] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3075), 1, + STATE(2932), 1, sym_comment, - ACTIONS(5578), 13, + ACTIONS(2131), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297119,7 +284957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5580), 28, + ACTIONS(2135), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -297148,14 +284986,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89389] = 5, + [89728] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3076), 1, + STATE(2933), 1, sym_comment, - ACTIONS(5574), 13, + ACTIONS(2139), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297169,7 +285007,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5576), 28, + ACTIONS(2143), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -297198,190 +285036,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89444] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(161), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(4556), 1, - anon_sym_LBRACK, - STATE(3077), 1, - sym_comment, - STATE(7361), 1, - sym__destructuring_pattern, - STATE(7523), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6251), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4283), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - STATE(6763), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(6249), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89521] = 34, + [89783] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(6018), 1, + ACTIONS(5274), 1, + anon_sym_of, + ACTIONS(6232), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(6234), 1, anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, + ACTIONS(6236), 1, anon_sym_GT_GT, - ACTIONS(6026), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(6028), 1, + ACTIONS(6242), 1, anon_sym_CARET, - ACTIONS(6030), 1, + ACTIONS(6244), 1, anon_sym_PIPE, - ACTIONS(6034), 1, + ACTIONS(6248), 1, anon_sym_PERCENT, - ACTIONS(6036), 1, + ACTIONS(6250), 1, anon_sym_STAR_STAR, - ACTIONS(6038), 1, + ACTIONS(6252), 1, anon_sym_LT, - ACTIONS(6046), 1, + ACTIONS(6260), 1, anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, + ACTIONS(6262), 1, sym__ternary_qmark, - ACTIONS(6253), 1, - anon_sym_COLON, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3078), 1, + STATE(2934), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6014), 2, + ACTIONS(6228), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6016), 2, + ACTIONS(6230), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, + ACTIONS(6238), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6032), 2, + ACTIONS(6246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + ACTIONS(6256), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, + ACTIONS(6258), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6040), 3, + ACTIONS(6254), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89634] = 15, + [89896] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(966), 1, + anon_sym_RBRACE, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6255), 1, + ACTIONS(5985), 1, anon_sym_STAR, - ACTIONS(6257), 1, - anon_sym_async, - STATE(3079), 1, + STATE(2935), 1, sym_comment, - STATE(4015), 1, + STATE(4808), 1, sym__property_name, - ACTIONS(3894), 2, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6259), 2, + ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(987), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4372), 20, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -297398,14 +285178,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89709] = 5, + [89977] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3080), 1, + ACTIONS(6264), 1, + sym__automatic_semicolon, + STATE(2936), 1, sym_comment, - ACTIONS(5697), 13, + ACTIONS(2329), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2243), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297419,15 +285206,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5699), 28, - sym__automatic_semicolon, + ACTIONS(2247), 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, @@ -297448,14 +285230,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89764] = 5, + [90036] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3081), 1, + ACTIONS(6266), 1, + sym__automatic_semicolon, + STATE(2937), 1, sym_comment, - ACTIONS(2215), 13, + ACTIONS(2357), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2257), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297469,15 +285258,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2219), 28, - sym__automatic_semicolon, + ACTIONS(2261), 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, @@ -297498,54 +285282,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89819] = 19, + [90095] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1022), 1, - anon_sym_RBRACE, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, + ACTIONS(6157), 1, anon_sym_STAR, - STATE(3082), 1, + STATE(2938), 1, sym_comment, - STATE(4761), 1, + STATE(4801), 1, sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6268), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 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(2900), 20, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -297562,20 +285341,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89902] = 6, + [90168] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3083), 1, - sym_comment, - ACTIONS(2347), 5, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, sym__automatic_semicolon, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6270), 1, + anon_sym_STAR, + ACTIONS(6272), 1, + anon_sym_async, + STATE(2939), 1, + sym_comment, + STATE(3838), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6274), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 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(2259), 13, + ACTIONS(4376), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [90243] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2940), 1, + sym_comment, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297589,10 +285422,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2263), 23, + ACTIONS(4141), 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, @@ -297613,48 +285451,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89959] = 18, + [90298] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5270), 1, + anon_sym_of, + ACTIONS(6232), 1, + anon_sym_AMP_AMP, + ACTIONS(6234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6236), 1, + anon_sym_GT_GT, + ACTIONS(6240), 1, + anon_sym_AMP, + ACTIONS(6242), 1, + anon_sym_CARET, + ACTIONS(6244), 1, + anon_sym_PIPE, + ACTIONS(6248), 1, + anon_sym_PERCENT, + ACTIONS(6250), 1, + anon_sym_STAR_STAR, + ACTIONS(6252), 1, + anon_sym_LT, + ACTIONS(6260), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6262), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2941), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6228), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6230), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6256), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6258), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6254), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90411] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1022), 1, - anon_sym_RBRACE, + ACTIONS(161), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(4613), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - STATE(3084), 1, + STATE(2942), 1, sym_comment, - STATE(4761), 1, + STATE(7005), 1, sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, + STATE(7130), 1, + sym__destructuring_pattern, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, + ACTIONS(6278), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4288), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 21, + STATE(6820), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(6276), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297664,6 +285577,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -297676,14 +285591,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90040] = 5, + [90488] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3085), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5264), 1, + anon_sym_of, + ACTIONS(6232), 1, + anon_sym_AMP_AMP, + ACTIONS(6234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6236), 1, + anon_sym_GT_GT, + ACTIONS(6240), 1, + anon_sym_AMP, + ACTIONS(6242), 1, + anon_sym_CARET, + ACTIONS(6244), 1, + anon_sym_PIPE, + ACTIONS(6248), 1, + anon_sym_PERCENT, + ACTIONS(6250), 1, + anon_sym_STAR_STAR, + ACTIONS(6252), 1, + anon_sym_LT, + ACTIONS(6260), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6262), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2943), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6228), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6230), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6256), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6258), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6254), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [90601] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2944), 1, sym_comment, - ACTIONS(5755), 13, + ACTIONS(5660), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297697,7 +285691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5106), 28, + ACTIONS(5662), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -297726,122 +285720,126 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90095] = 34, + [90656] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5629), 1, - anon_sym_RBRACE, - ACTIONS(6018), 1, + ACTIONS(5244), 1, + anon_sym_of, + ACTIONS(6232), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(6234), 1, anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, + ACTIONS(6236), 1, anon_sym_GT_GT, - ACTIONS(6026), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(6028), 1, + ACTIONS(6242), 1, anon_sym_CARET, - ACTIONS(6030), 1, + ACTIONS(6244), 1, anon_sym_PIPE, - ACTIONS(6034), 1, + ACTIONS(6248), 1, anon_sym_PERCENT, - ACTIONS(6036), 1, + ACTIONS(6250), 1, anon_sym_STAR_STAR, - ACTIONS(6038), 1, + ACTIONS(6252), 1, anon_sym_LT, - ACTIONS(6046), 1, + ACTIONS(6260), 1, anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, + ACTIONS(6262), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3086), 1, + STATE(2945), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6014), 2, + ACTIONS(6228), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6016), 2, + ACTIONS(6230), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, + ACTIONS(6238), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6032), 2, + ACTIONS(6246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + ACTIONS(6256), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, + ACTIONS(6258), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6040), 3, + ACTIONS(6254), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [90208] = 14, + [90769] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1041), 1, + anon_sym_RBRACE, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5995), 1, + ACTIONS(5985), 1, anon_sym_STAR, - STATE(3087), 1, + STATE(2946), 1, sym_comment, - STATE(4914), 1, + STATE(4808), 1, sym__property_name, + STATE(5868), 1, + aux_sym_object_repeat1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6261), 2, + ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(987), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2900), 21, anon_sym_export, anon_sym_type, @@ -297864,49 +285862,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90281] = 14, + [90850] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1041), 1, + anon_sym_RBRACE, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6255), 1, + ACTIONS(5985), 1, anon_sym_STAR, - STATE(3088), 1, + STATE(2947), 1, sym_comment, - STATE(4925), 1, + STATE(4808), 1, sym__property_name, + STATE(5868), 1, + aux_sym_object_repeat1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6263), 2, + ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(987), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 21, + ACTIONS(2900), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -297923,69 +285926,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90354] = 10, + [90933] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4222), 1, + ACTIONS(4216), 1, anon_sym_EQ, - ACTIONS(4242), 1, - anon_sym_COLON, - ACTIONS(5675), 1, - anon_sym_LBRACK, - STATE(3089), 1, - sym_comment, - ACTIONS(5678), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5286), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4121), 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(4125), 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, - [90419] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3090), 1, + STATE(2948), 1, sym_comment, - ACTIONS(5757), 13, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297999,14 +285949,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5759), 28, + ACTIONS(4141), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -298028,59 +285977,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90474] = 7, + [90990] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6265), 1, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, sym__automatic_semicolon, - STATE(3091), 1, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6183), 1, + anon_sym_STAR, + ACTIONS(6185), 1, + anon_sym_async, + STATE(2949), 1, sym_comment, - ACTIONS(2267), 4, + STATE(3794), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6187), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - 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(2219), 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, - [90533] = 14, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4376), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [91065] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -298089,34 +286046,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6267), 1, + ACTIONS(6183), 1, anon_sym_STAR, - STATE(3092), 1, + STATE(2950), 1, sym_comment, - STATE(4946), 1, + STATE(4731), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6269), 2, + ACTIONS(6280), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 8, + 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(2900), 21, anon_sym_export, anon_sym_type, @@ -298139,43 +286096,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90606] = 14, + [91138] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6271), 1, + ACTIONS(5985), 1, anon_sym_STAR, - STATE(3093), 1, + ACTIONS(6195), 1, + anon_sym_RBRACE, + STATE(2951), 1, sym_comment, - STATE(4948), 1, + STATE(4808), 1, sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6273), 2, + ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(987), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2900), 21, anon_sym_export, anon_sym_type, @@ -298198,309 +286159,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [90679] = 5, + [91219] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3094), 1, - sym_comment, - ACTIONS(2259), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2263), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4791), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4801), 1, anon_sym_LBRACK, + ACTIONS(4803), 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, + ACTIONS(4865), 1, anon_sym_BQUOTE, - anon_sym_satisfies, - [90734] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3095), 1, - sym_comment, - ACTIONS(2311), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2183), 13, - anon_sym_STAR, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5993), 1, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2187), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(6066), 1, anon_sym_AMP_AMP, + ACTIONS(6068), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6070), 1, + anon_sym_AMP, + ACTIONS(6072), 1, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6074), 1, + anon_sym_PIPE, + ACTIONS(6076), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6078), 1, + sym__ternary_qmark, + ACTIONS(6282), 1, + anon_sym_COLON, + STATE(2220), 1, + sym_type_arguments, + STATE(2952), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [90791] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3096), 1, - sym_comment, - ACTIONS(2307), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2175), 13, + ACTIONS(5989), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2179), 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, + ACTIONS(5995), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [90848] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5259), 1, - anon_sym_LBRACK, - STATE(3097), 1, - sym_comment, - ACTIONS(3432), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5262), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2069), 10, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT_GT, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 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, + ACTIONS(6009), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6005), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [90911] = 34, + [91332] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5304), 1, - anon_sym_of, - ACTIONS(6279), 1, + ACTIONS(6288), 1, + anon_sym_RBRACK, + ACTIONS(6290), 1, anon_sym_AMP_AMP, - ACTIONS(6281), 1, + ACTIONS(6292), 1, anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, + ACTIONS(6294), 1, anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6298), 1, anon_sym_AMP, - ACTIONS(6289), 1, + ACTIONS(6300), 1, anon_sym_CARET, - ACTIONS(6291), 1, + ACTIONS(6302), 1, anon_sym_PIPE, - ACTIONS(6295), 1, + ACTIONS(6306), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6308), 1, anon_sym_STAR_STAR, - ACTIONS(6299), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6307), 1, + ACTIONS(6318), 1, anon_sym_QMARK_QMARK, - ACTIONS(6309), 1, + ACTIONS(6320), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3098), 1, + STATE(2953), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6275), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6277), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, + ACTIONS(6296), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(6304), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6303), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6305), 2, + ACTIONS(6316), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6301), 3, + ACTIONS(6312), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [91024] = 7, + [91445] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6311), 1, - sym__automatic_semicolon, - STATE(3099), 1, + ACTIONS(4216), 1, + anon_sym_EQ, + ACTIONS(4351), 1, + anon_sym_in, + ACTIONS(4354), 1, + anon_sym_of, + STATE(2954), 1, sym_comment, - ACTIONS(2301), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2129), 13, + ACTIONS(4137), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -298511,10 +286343,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2133), 23, + ACTIONS(4141), 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, @@ -298535,14 +286370,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91083] = 5, + [91506] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3100), 1, + STATE(2955), 1, sym_comment, - ACTIONS(5765), 13, + ACTIONS(6053), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6055), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -298556,15 +286398,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5767), 28, - sym__automatic_semicolon, + ACTIONS(4141), 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, @@ -298585,41 +286422,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91138] = 9, + [91565] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5270), 1, - anon_sym_EQ, - ACTIONS(5274), 1, - anon_sym_LBRACK, - STATE(3101), 1, + STATE(2956), 1, sym_comment, - ACTIONS(5239), 2, + ACTIONS(6322), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6324), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5277), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5268), 10, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5272), 24, - sym__automatic_semicolon, + ACTIONS(4141), 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, @@ -298639,19 +286474,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91201] = 7, + [91624] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6313), 1, - sym__automatic_semicolon, - STATE(3102), 1, + STATE(2957), 1, sym_comment, - ACTIONS(2289), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2239), 13, + ACTIONS(5576), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -298665,11 +286495,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2243), 25, + ACTIONS(5578), 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, @@ -298691,73 +286524,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91260] = 9, + [91679] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5284), 1, - anon_sym_QMARK, - STATE(3103), 1, - sym_comment, - ACTIONS(5286), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5678), 2, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5180), 1, + anon_sym_of, + ACTIONS(6232), 1, + anon_sym_AMP_AMP, + ACTIONS(6234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6236), 1, + anon_sym_GT_GT, + ACTIONS(6240), 1, anon_sym_AMP, + ACTIONS(6242), 1, + anon_sym_CARET, + ACTIONS(6244), 1, anon_sym_PIPE, - ACTIONS(5675), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4121), 11, + ACTIONS(6248), 1, + anon_sym_PERCENT, + ACTIONS(6250), 1, + anon_sym_STAR_STAR, + ACTIONS(6252), 1, + anon_sym_LT, + ACTIONS(6260), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6262), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2958), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6228), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6230), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6246), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6256), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 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, + ACTIONS(6258), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6254), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [91323] = 7, + [91792] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5371), 1, + anon_sym_STAR, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(2959), 1, + sym_comment, + STATE(4799), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6326), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 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(2900), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [91865] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6315), 1, - sym__automatic_semicolon, - STATE(3104), 1, + STATE(2960), 1, sym_comment, - ACTIONS(2283), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2231), 13, + ACTIONS(5687), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -298771,11 +286683,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2235), 25, + ACTIONS(5689), 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, @@ -298797,17 +286712,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91382] = 6, + [91920] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3105), 1, + STATE(2961), 1, sym_comment, - ACTIONS(2387), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2169), 13, + ACTIONS(6328), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6330), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -298821,13 +286740,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2171), 26, - sym__automatic_semicolon, + ACTIONS(4141), 23, 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, @@ -298848,46 +286764,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91439] = 15, + [91979] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6146), 1, + ACTIONS(6332), 1, anon_sym_STAR, - ACTIONS(6148), 1, + ACTIONS(6334), 1, anon_sym_async, - STATE(3106), 1, + STATE(2962), 1, sym_comment, - STATE(3972), 1, + STATE(3861), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6150), 2, + ACTIONS(6336), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, + ACTIONS(987), 8, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4372), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(4376), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298908,100 +286824,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91514] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, - anon_sym_GT_GT, - ACTIONS(6026), 1, - anon_sym_AMP, - ACTIONS(6028), 1, - anon_sym_CARET, - ACTIONS(6030), 1, - anon_sym_PIPE, - ACTIONS(6034), 1, - anon_sym_PERCENT, - ACTIONS(6036), 1, - anon_sym_STAR_STAR, - ACTIONS(6038), 1, - anon_sym_LT, - ACTIONS(6046), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, - sym__ternary_qmark, - ACTIONS(6317), 1, - anon_sym_COLON, - STATE(2372), 1, - sym_type_arguments, - STATE(3107), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6014), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6016), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6024), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6032), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6042), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6044), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6040), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91627] = 7, + [92054] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6319), 1, - sym__automatic_semicolon, - STATE(3108), 1, + STATE(2963), 1, sym_comment, - ACTIONS(2297), 4, + ACTIONS(6328), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6330), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2119), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299015,7 +286852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2123), 23, + ACTIONS(4141), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -299039,14 +286876,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91686] = 5, + [92113] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3109), 1, + STATE(2964), 1, sym_comment, - ACTIONS(5306), 13, + ACTIONS(6328), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6330), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299060,15 +286904,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 28, - sym__automatic_semicolon, + ACTIONS(4141), 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, @@ -299089,14 +286928,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91741] = 5, + [92172] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(6332), 1, + anon_sym_STAR, + STATE(2965), 1, + sym_comment, + STATE(4784), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6338), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 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(2900), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [92245] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3110), 1, + STATE(2966), 1, sym_comment, - ACTIONS(5560), 13, + ACTIONS(5626), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299110,7 +287008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5562), 28, + ACTIONS(5628), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299139,20 +287037,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91796] = 6, + [92300] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3111), 1, + STATE(2967), 1, sym_comment, - ACTIONS(2341), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2087), 13, + ACTIONS(5655), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299166,10 +287058,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2091), 23, + ACTIONS(5244), 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, @@ -299190,14 +287087,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91853] = 5, + [92355] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3112), 1, + STATE(2968), 1, sym_comment, - ACTIONS(5556), 13, + ACTIONS(5618), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299211,7 +287108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5558), 28, + ACTIONS(5620), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299240,14 +287137,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91908] = 5, + [92410] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3113), 1, + STATE(2969), 1, sym_comment, - ACTIONS(4121), 13, + ACTIONS(5612), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299261,7 +287158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 28, + ACTIONS(5264), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299290,93 +287187,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91963] = 34, + [92465] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(6018), 1, + ACTIONS(5721), 1, + anon_sym_RBRACE, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6066), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(6068), 1, anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, - anon_sym_GT_GT, - ACTIONS(6026), 1, + ACTIONS(6070), 1, anon_sym_AMP, - ACTIONS(6028), 1, + ACTIONS(6072), 1, anon_sym_CARET, - ACTIONS(6030), 1, + ACTIONS(6074), 1, anon_sym_PIPE, - ACTIONS(6034), 1, + ACTIONS(6076), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6078), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(2970), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5991), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5995), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5997), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6007), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6009), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6005), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [92578] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, anon_sym_PERCENT, - ACTIONS(6036), 1, + ACTIONS(6001), 1, anon_sym_STAR_STAR, - ACTIONS(6038), 1, + ACTIONS(6003), 1, anon_sym_LT, - ACTIONS(6046), 1, + ACTIONS(6066), 1, + anon_sym_AMP_AMP, + ACTIONS(6068), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6070), 1, + anon_sym_AMP, + ACTIONS(6072), 1, + anon_sym_CARET, + ACTIONS(6074), 1, + anon_sym_PIPE, + ACTIONS(6076), 1, anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, + ACTIONS(6078), 1, sym__ternary_qmark, - ACTIONS(6321), 1, + ACTIONS(6340), 1, anon_sym_COLON, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3114), 1, + STATE(2971), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6014), 2, + ACTIONS(5989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6016), 2, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, + ACTIONS(5995), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6032), 2, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, + ACTIONS(6009), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6040), 3, + ACTIONS(6005), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92076] = 5, + [92691] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3115), 1, + STATE(2972), 1, sym_comment, - ACTIONS(5761), 13, + ACTIONS(5600), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299390,7 +287366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5763), 28, + ACTIONS(5602), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299419,7 +287395,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92131] = 19, + [92746] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(6342), 1, + sym__automatic_semicolon, + STATE(2973), 1, + sym_comment, + ACTIONS(2271), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2105), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2109), 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, + [92805] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -299432,21 +287460,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2902), 1, anon_sym_async, - ACTIONS(4939), 1, + ACTIONS(5134), 1, anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, + ACTIONS(5985), 1, anon_sym_STAR, - ACTIONS(6172), 1, + ACTIONS(6195), 1, anon_sym_RBRACE, - STATE(3116), 1, + STATE(2974), 1, sym_comment, - STATE(4761), 1, + STATE(4808), 1, sym__property_name, - STATE(6171), 1, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(6261), 1, aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, @@ -299454,10 +287482,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -299483,22 +287511,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92214] = 8, + [92888] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4224), 1, - anon_sym_EQ, - ACTIONS(4328), 1, - anon_sym_in, - ACTIONS(4331), 1, - anon_sym_of, - STATE(3117), 1, + STATE(2975), 1, sym_comment, - ACTIONS(4121), 12, + ACTIONS(5596), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -299509,12 +287532,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 26, + ACTIONS(5598), 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, @@ -299536,93 +287561,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92275] = 34, + [92943] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(6344), 1, + anon_sym_STAR, + ACTIONS(6346), 1, + anon_sym_async, + STATE(2976), 1, + sym_comment, + STATE(3806), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6348), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 8, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, - anon_sym_GT_GT, - ACTIONS(6026), 1, - anon_sym_AMP, - ACTIONS(6028), 1, - anon_sym_CARET, - ACTIONS(6030), 1, - anon_sym_PIPE, - ACTIONS(6034), 1, - anon_sym_PERCENT, - ACTIONS(6036), 1, - anon_sym_STAR_STAR, - ACTIONS(6038), 1, - anon_sym_LT, - ACTIONS(6046), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, - sym__ternary_qmark, - ACTIONS(6323), 1, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - STATE(2372), 1, - sym_type_arguments, - STATE(3118), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6014), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6016), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6024), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6032), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6042), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6044), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6040), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [92388] = 5, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4376), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [93018] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3119), 1, + STATE(2977), 1, sym_comment, - ACTIONS(5769), 13, + ACTIONS(5592), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299636,7 +287642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5771), 28, + ACTIONS(5594), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299665,21 +287671,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92443] = 7, + [93073] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3120), 1, + STATE(2978), 1, sym_comment, - ACTIONS(6189), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6191), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4121), 13, + ACTIONS(5552), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299693,10 +287692,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(5554), 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, @@ -299717,14 +287721,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92502] = 5, + [93128] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3121), 1, + ACTIONS(6224), 1, + anon_sym_COMMA, + STATE(2979), 1, sym_comment, - ACTIONS(5306), 13, + ACTIONS(5172), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299738,16 +287744,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 28, - sym__automatic_semicolon, + ACTIONS(5174), 27, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -299767,14 +287772,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92557] = 5, + [93185] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3122), 1, + STATE(2980), 1, sym_comment, - ACTIONS(5564), 13, + ACTIONS(6350), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6352), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299788,15 +287800,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5566), 28, - sym__automatic_semicolon, + ACTIONS(4141), 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, @@ -299817,42 +287824,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92612] = 9, + [93244] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - STATE(3123), 1, + ACTIONS(5041), 1, + anon_sym_QMARK, + STATE(2981), 1, sym_comment, - STATE(2680), 2, - sym_template_string, - sym_arguments, - ACTIONS(6325), 3, - anon_sym_LBRACE, + ACTIONS(5043), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5526), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5523), 3, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4863), 13, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(5519), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 21, + ACTIONS(5521), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -299870,15 +287876,16 @@ 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, - [92675] = 5, + [93307] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3124), 1, + STATE(2982), 1, sym_comment, - ACTIONS(5552), 13, + ACTIONS(2151), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299892,7 +287899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5554), 28, + ACTIONS(2153), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299921,212 +287928,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92730] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [93362] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6327), 1, - anon_sym_STAR, - ACTIONS(6329), 1, - anon_sym_async, - STATE(3125), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2983), 1, sym_comment, - STATE(3987), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6331), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(5588), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + 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(4372), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [92805] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5590), 28, sym__automatic_semicolon, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(6327), 1, - anon_sym_STAR, - STATE(3126), 1, - sym_comment, - STATE(4969), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6333), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [92878] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6213), 1, anon_sym_AMP_AMP, - ACTIONS(6215), 1, anon_sym_PIPE_PIPE, - ACTIONS(6217), 1, - anon_sym_GT_GT, - ACTIONS(6221), 1, - anon_sym_AMP, - ACTIONS(6223), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6225), 1, - anon_sym_PIPE, - ACTIONS(6229), 1, anon_sym_PERCENT, - ACTIONS(6231), 1, anon_sym_STAR_STAR, - ACTIONS(6233), 1, - anon_sym_LT, - ACTIONS(6241), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6243), 1, - sym__ternary_qmark, - ACTIONS(6335), 1, - anon_sym_RBRACK, - STATE(2372), 1, - sym_type_arguments, - STATE(3127), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6209), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93417] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(2984), 1, + sym_comment, + ACTIONS(5029), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5031), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4137), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6211), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6219), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6227), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6237), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6239), 2, + ACTIONS(4141), 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, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6235), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [92991] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93476] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3128), 1, + STATE(2985), 1, sym_comment, - ACTIONS(5773), 13, + ACTIONS(5552), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300140,7 +288051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5775), 28, + ACTIONS(5554), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -300169,21 +288080,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93046] = 7, + [93531] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3129), 1, + STATE(2986), 1, sym_comment, - ACTIONS(6337), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6339), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4121), 13, + ACTIONS(5560), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300197,10 +288101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(5562), 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, @@ -300221,16 +288130,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93105] = 6, + [93586] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4224), 1, - anon_sym_EQ, - STATE(3130), 1, + STATE(2987), 1, sym_comment, - ACTIONS(4121), 13, + ACTIONS(5556), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300244,13 +288151,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 27, + ACTIONS(5558), 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, @@ -300272,49 +288180,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93162] = 14, + [93641] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6341), 1, + ACTIONS(6344), 1, anon_sym_STAR, - STATE(3131), 1, + ACTIONS(6346), 1, + anon_sym_async, + STATE(2988), 1, sym_comment, - STATE(4844), 1, + STATE(3818), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6343), 2, + ACTIONS(6348), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 8, + 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(2900), 21, + ACTIONS(4376), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -300331,14 +288240,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93235] = 5, + [93716] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3132), 1, + STATE(2989), 1, sym_comment, - ACTIONS(5548), 13, + ACTIONS(5552), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300352,7 +288261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5550), 28, + ACTIONS(5554), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -300381,123 +288290,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93290] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, - anon_sym_GT_GT, - ACTIONS(6026), 1, - anon_sym_AMP, - ACTIONS(6028), 1, - anon_sym_CARET, - ACTIONS(6030), 1, - anon_sym_PIPE, - ACTIONS(6034), 1, - anon_sym_PERCENT, - ACTIONS(6036), 1, - anon_sym_STAR_STAR, - ACTIONS(6038), 1, - anon_sym_LT, - ACTIONS(6046), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, - sym__ternary_qmark, - ACTIONS(6345), 1, - anon_sym_COLON, - STATE(2372), 1, - sym_type_arguments, - STATE(3133), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6014), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6016), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6024), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6032), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6042), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6044), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6040), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [93403] = 18, + [93771] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, + ACTIONS(6344), 1, anon_sym_STAR, - ACTIONS(6172), 1, - anon_sym_RBRACE, - STATE(3134), 1, + STATE(2990), 1, sym_comment, - STATE(4761), 1, + STATE(4820), 1, sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6354), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 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, @@ -300523,66 +288349,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93484] = 7, + [93844] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6347), 1, - sym__automatic_semicolon, - STATE(3135), 1, + STATE(2991), 1, sym_comment, - ACTIONS(2279), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2151), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2155), 25, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(2325), 5, + sym__automatic_semicolon, 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_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [93543] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3136), 1, - sym_comment, - ACTIONS(5544), 13, + anon_sym_PIPE_RBRACE, + ACTIONS(2227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300596,15 +288376,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5546), 28, - sym__automatic_semicolon, + ACTIONS(2231), 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, @@ -300625,7 +288400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93598] = 14, + [93901] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -300634,87 +288409,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6146), 1, + ACTIONS(6097), 1, anon_sym_STAR, - STATE(3137), 1, + STATE(2992), 1, sym_comment, - STATE(4862), 1, + STATE(4715), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6349), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [93671] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6341), 1, - anon_sym_STAR, - ACTIONS(6351), 1, - anon_sym_async, - STATE(3138), 1, - sym_comment, - STATE(4053), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6353), 2, + ACTIONS(6356), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -300723,11 +288437,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4372), 20, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -300744,17 +288459,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93746] = 5, + [93974] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3139), 1, + ACTIONS(6358), 1, + sym_regex_flags, + STATE(2993), 1, sym_comment, - ACTIONS(2169), 13, + ACTIONS(6208), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -300765,14 +288484,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2171), 28, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6210), 23, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -300789,19 +288507,23 @@ 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, - [93801] = 5, + [94031] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3140), 1, + STATE(2994), 1, sym_comment, - ACTIONS(5739), 13, + ACTIONS(2387), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2215), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300815,15 +288537,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5741), 28, - sym__automatic_semicolon, + ACTIONS(2219), 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, @@ -300844,117 +288561,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93856] = 14, + [94088] = 24, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(225), 1, + anon_sym_STAR, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(2081), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6355), 1, - anon_sym_STAR, - STATE(3141), 1, - sym_comment, - STATE(4806), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6357), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(6362), 1, anon_sym_COMMA, + ACTIONS(6364), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, + ACTIONS(6366), 1, anon_sym_async, - anon_sym_new, - sym_identifier, + ACTIONS(6368), 1, anon_sym_static, + ACTIONS(6370), 1, anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, + ACTIONS(6376), 1, anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [93929] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(6124), 1, - anon_sym_STAR, - STATE(3142), 1, + STATE(2995), 1, sym_comment, - STATE(4782), 1, + STATE(3468), 1, + sym_accessibility_modifier, + STATE(3530), 1, + sym_override_modifier, + STATE(4504), 1, sym__property_name, + STATE(5847), 1, + aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6359), 2, + ACTIONS(6372), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 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(2900), 21, + ACTIONS(6374), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5848), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(6360), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -300962,42 +288630,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94002] = 10, + [94181] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5259), 1, - anon_sym_LBRACK, - ACTIONS(5914), 1, - anon_sym_COLON, - STATE(3143), 1, + STATE(2996), 1, sym_comment, - ACTIONS(5262), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3432), 3, + ACTIONS(2381), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2069), 11, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2207), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 22, + ACTIONS(2211), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -301017,7 +288681,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94067] = 14, + [94238] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -301026,34 +288690,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5681), 1, + ACTIONS(6270), 1, anon_sym_STAR, - STATE(3144), 1, + STATE(2997), 1, sym_comment, - STATE(4926), 1, + STATE(4701), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6361), 2, + ACTIONS(6378), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, + ACTIONS(987), 8, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2900), 21, anon_sym_export, anon_sym_type, @@ -301076,42 +288740,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94140] = 10, + [94311] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5270), 1, - anon_sym_EQ, - ACTIONS(5274), 1, - anon_sym_LBRACK, - ACTIONS(5926), 1, - anon_sym_COLON, - STATE(3145), 1, + STATE(2998), 1, sym_comment, - ACTIONS(5277), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5239), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(5268), 11, + ACTIONS(5506), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5272), 22, + ACTIONS(5508), 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, @@ -301131,33 +288790,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94205] = 14, + [94366] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6363), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3146), 1, + STATE(2999), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(5143), 12, + ACTIONS(2373), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2169), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -301168,12 +288814,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5145), 19, + ACTIONS(2173), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -301189,181 +288839,41 @@ 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, - [94278] = 34, + [94423] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4881), 1, - anon_sym_RBRACK, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6213), 1, - anon_sym_AMP_AMP, - ACTIONS(6215), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6217), 1, - anon_sym_GT_GT, - ACTIONS(6221), 1, - anon_sym_AMP, - ACTIONS(6223), 1, - anon_sym_CARET, - ACTIONS(6225), 1, - anon_sym_PIPE, - ACTIONS(6229), 1, - anon_sym_PERCENT, - ACTIONS(6231), 1, - anon_sym_STAR_STAR, - ACTIONS(6233), 1, - anon_sym_LT, - ACTIONS(6241), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6243), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(3147), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6209), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6211), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6219), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6237), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6239), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6235), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [94391] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(6380), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(6366), 1, - anon_sym_STAR, - STATE(3148), 1, + STATE(3000), 1, sym_comment, - STATE(4920), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6368), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, + ACTIONS(2287), 4, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94464] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4205), 1, - anon_sym_EQ, - ACTIONS(5284), 1, - anon_sym_QMARK, - ACTIONS(5675), 1, - anon_sym_LBRACK, - STATE(3149), 1, - sym_comment, - ACTIONS(5678), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5286), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4121), 11, + anon_sym_PIPE_RBRACE, + ACTIONS(2139), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 22, + ACTIONS(2143), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -301383,43 +288893,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94529] = 18, + [94482] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6370), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3150), 1, + STATE(3001), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(5156), 11, + ACTIONS(2313), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2131), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -301428,11 +288917,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5158), 15, + ACTIONS(2135), 23, sym__ternary_qmark, - anon_sym_RBRACK, + 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, @@ -301446,129 +288940,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [94610] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, - anon_sym_GT_GT, - ACTIONS(6026), 1, - anon_sym_AMP, - ACTIONS(6028), 1, - anon_sym_CARET, - ACTIONS(6030), 1, - anon_sym_PIPE, - ACTIONS(6034), 1, - anon_sym_PERCENT, - ACTIONS(6036), 1, - anon_sym_STAR_STAR, - ACTIONS(6038), 1, - anon_sym_LT, - ACTIONS(6046), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, - sym__ternary_qmark, - ACTIONS(6373), 1, - anon_sym_COLON, - STATE(2372), 1, - sym_type_arguments, - STATE(3151), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6014), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6016), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6024), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6032), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6042), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6044), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6040), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [94723] = 15, + anon_sym_BQUOTE, + anon_sym_satisfies, + [94539] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6245), 1, + ACTIONS(6382), 1, anon_sym_STAR, - ACTIONS(6375), 1, - anon_sym_async, - STATE(3152), 1, + STATE(3002), 1, sym_comment, - STATE(3943), 1, + STATE(4696), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6377), 2, + ACTIONS(6384), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, + ACTIONS(987), 8, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4372), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -301585,20 +289003,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94798] = 6, + [94612] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3153), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6386), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3003), 1, sym_comment, - ACTIONS(2275), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2137), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5053), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -301609,16 +289043,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2141), 23, + ACTIONS(5055), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -301632,20 +289062,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [94855] = 5, + [94687] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3154), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(6389), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3004), 1, sym_comment, - ACTIONS(5703), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4937), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -301654,21 +289108,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5705), 28, - sym__automatic_semicolon, + ACTIONS(4939), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -301682,53 +289126,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [94910] = 14, + [94768] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4294), 1, + anon_sym_EQ, + ACTIONS(5779), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6379), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3155), 1, + STATE(3005), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(5143), 12, + ACTIONS(5190), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5782), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4137), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5145), 19, + ACTIONS(4141), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + 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, @@ -301744,164 +289178,95 @@ 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, - [94983] = 34, + [94831] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4881), 1, - anon_sym_of, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(6279), 1, + ACTIONS(4960), 1, + anon_sym_of, + ACTIONS(6232), 1, anon_sym_AMP_AMP, - ACTIONS(6281), 1, + ACTIONS(6234), 1, anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, + ACTIONS(6236), 1, anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(6289), 1, + ACTIONS(6242), 1, anon_sym_CARET, - ACTIONS(6291), 1, + ACTIONS(6244), 1, anon_sym_PIPE, - ACTIONS(6295), 1, + ACTIONS(6248), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6250), 1, anon_sym_STAR_STAR, - ACTIONS(6299), 1, + ACTIONS(6252), 1, anon_sym_LT, - ACTIONS(6307), 1, + ACTIONS(6260), 1, anon_sym_QMARK_QMARK, - ACTIONS(6309), 1, + ACTIONS(6262), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3156), 1, + STATE(3006), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6275), 2, + ACTIONS(6228), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6277), 2, + ACTIONS(6230), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, + ACTIONS(6238), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(6246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6303), 2, + ACTIONS(6256), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6305), 2, + ACTIONS(6258), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6301), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [95096] = 18, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6382), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3157), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5156), 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(5158), 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, + ACTIONS(6254), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [95177] = 7, + [94944] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3158), 1, + STATE(3007), 1, sym_comment, - ACTIONS(6385), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6387), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4121), 13, + ACTIONS(5502), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -301915,10 +289280,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(5504), 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, @@ -301939,14 +289309,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95236] = 5, + [94999] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3159), 1, + STATE(3008), 1, sym_comment, - ACTIONS(5520), 13, + ACTIONS(5450), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -301960,7 +289330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5522), 28, + ACTIONS(5452), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -301989,36 +289359,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95291] = 15, + [95054] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(6389), 1, + ACTIONS(6392), 1, anon_sym_LT, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3160), 1, + STATE(3009), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5189), 12, + ACTIONS(4978), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302031,7 +289398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 17, + ACTIONS(4980), 19, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -302048,51 +289415,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_satisfies, - [95366] = 15, + [95127] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6392), 1, + ACTIONS(5985), 1, anon_sym_STAR, - ACTIONS(6394), 1, - anon_sym_async, - STATE(3161), 1, + ACTIONS(6121), 1, + anon_sym_RBRACE, + STATE(3010), 1, sym_comment, - STATE(3966), 1, + STATE(4808), 1, sym__property_name, - ACTIONS(3894), 2, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6396), 2, + ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(987), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4372), 20, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -302109,49 +289481,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95441] = 14, + [95208] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6098), 1, + ACTIONS(5985), 1, anon_sym_STAR, - STATE(3162), 1, + ACTIONS(6121), 1, + anon_sym_RBRACE, + STATE(3011), 1, sym_comment, - STATE(4892), 1, + STATE(4808), 1, sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6398), 2, + ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(987), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 21, + ACTIONS(2900), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -302168,64 +289545,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95514] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3163), 1, - sym_comment, - ACTIONS(5731), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5733), 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, - [95569] = 5, + [95291] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3164), 1, + STATE(3012), 1, sym_comment, - ACTIONS(5511), 13, + ACTIONS(5172), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302239,7 +289566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5513), 28, + ACTIONS(5174), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -302268,54 +289595,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95624] = 15, + [95346] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5359), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6098), 1, + ACTIONS(6344), 1, anon_sym_STAR, - ACTIONS(6100), 1, + ACTIONS(6346), 1, anon_sym_async, - STATE(3165), 1, + STATE(3013), 1, sym_comment, - STATE(4042), 1, + STATE(3825), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6104), 2, + ACTIONS(6348), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 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(4376), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [95421] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, anon_sym_COMMA, + ACTIONS(5182), 1, anon_sym_RBRACE, + STATE(3014), 1, + sym_comment, + STATE(5868), 1, + aux_sym_object_repeat1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(987), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4372), 20, + ACTIONS(2403), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -302328,14 +289711,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95699] = 5, + [95488] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3166), 1, + STATE(3015), 1, sym_comment, - ACTIONS(5625), 13, + ACTIONS(5446), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302349,7 +289732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5627), 28, + ACTIONS(5448), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -302378,36 +289761,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95754] = 15, + [95543] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6400), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3167), 1, + STATE(3016), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(5189), 12, + ACTIONS(5384), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302418,12 +289779,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 17, + ACTIONS(5386), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -302437,94 +289807,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [95829] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6018), 1, - anon_sym_AMP_AMP, - ACTIONS(6020), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, - anon_sym_GT_GT, - ACTIONS(6026), 1, - anon_sym_AMP, - ACTIONS(6028), 1, - anon_sym_CARET, - ACTIONS(6030), 1, - anon_sym_PIPE, - ACTIONS(6034), 1, - anon_sym_PERCENT, - ACTIONS(6036), 1, - anon_sym_STAR_STAR, - ACTIONS(6038), 1, - anon_sym_LT, - ACTIONS(6046), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, - sym__ternary_qmark, - ACTIONS(6403), 1, - anon_sym_COLON, - STATE(2372), 1, - sym_type_arguments, - STATE(3168), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6014), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6016), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6024), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6032), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6042), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6044), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6040), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [95942] = 5, + anon_sym_BQUOTE, + anon_sym_satisfies, + [95598] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3169), 1, + STATE(3017), 1, sym_comment, - ACTIONS(5727), 13, + ACTIONS(5604), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302538,7 +289832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5729), 28, + ACTIONS(5270), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -302567,15 +289861,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95997] = 5, + [95653] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(6395), 1, + anon_sym_STAR, + STATE(3018), 1, + sym_comment, + STATE(4692), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6397), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 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(2900), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [95726] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6399), 1, + anon_sym_STAR, + ACTIONS(6401), 1, + anon_sym_async, + STATE(3019), 1, + sym_comment, + STATE(3828), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6403), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 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(4376), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [95801] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3170), 1, + ACTIONS(6358), 1, + sym_regex_flags, + STATE(3020), 1, sym_comment, - ACTIONS(5507), 13, + ACTIONS(6208), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -302588,14 +290004,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5509), 28, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6210), 24, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -302612,105 +290028,22 @@ 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, - [96052] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5304), 1, - anon_sym_RBRACK, - ACTIONS(6213), 1, - anon_sym_AMP_AMP, - ACTIONS(6215), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6217), 1, - anon_sym_GT_GT, - ACTIONS(6221), 1, - anon_sym_AMP, - ACTIONS(6223), 1, - anon_sym_CARET, - ACTIONS(6225), 1, - anon_sym_PIPE, - ACTIONS(6229), 1, - anon_sym_PERCENT, - ACTIONS(6231), 1, - anon_sym_STAR_STAR, - ACTIONS(6233), 1, - anon_sym_LT, - ACTIONS(6241), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6243), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(3171), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6209), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6211), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6219), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6237), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6239), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6235), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [96165] = 7, + [95858] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3172), 1, + ACTIONS(6405), 1, + sym__automatic_semicolon, + STATE(3021), 1, sym_comment, - ACTIONS(6405), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6407), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4121), 13, + ACTIONS(2387), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2215), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302724,10 +290057,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(2219), 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, @@ -302748,14 +290083,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96224] = 5, + [95917] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3173), 1, + STATE(3022), 1, sym_comment, - ACTIONS(5723), 13, + ACTIONS(5541), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302769,7 +290104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5725), 28, + ACTIONS(5543), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -302798,21 +290133,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96279] = 7, + [95972] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3174), 1, + ACTIONS(6407), 1, + sym__automatic_semicolon, + STATE(3023), 1, sym_comment, - ACTIONS(6405), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6407), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4121), 13, + ACTIONS(2325), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302826,10 +290159,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(2231), 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, @@ -302850,100 +290185,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96338] = 34, + [96031] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5026), 1, - anon_sym_RBRACK, - ACTIONS(6213), 1, - anon_sym_AMP_AMP, - ACTIONS(6215), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6217), 1, - anon_sym_GT_GT, - ACTIONS(6221), 1, - anon_sym_AMP, - ACTIONS(6223), 1, - anon_sym_CARET, - ACTIONS(6225), 1, - anon_sym_PIPE, - ACTIONS(6229), 1, - anon_sym_PERCENT, - ACTIONS(6231), 1, - anon_sym_STAR_STAR, - ACTIONS(6233), 1, - anon_sym_LT, - ACTIONS(6241), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6243), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(3175), 1, + STATE(3024), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6209), 2, + ACTIONS(5545), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6211), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6219), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6227), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6237), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6239), 2, + ACTIONS(5547), 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, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6235), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [96451] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [96086] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3176), 1, + STATE(3025), 1, sym_comment, - ACTIONS(6405), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6407), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4121), 13, + ACTIONS(2105), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302957,10 +290256,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(2109), 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, @@ -302981,33 +290285,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96510] = 11, + [96141] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4514), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4939), 1, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(6399), 1, + anon_sym_STAR, + STATE(3026), 1, + sym_comment, + STATE(4662), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6409), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 8, anon_sym_EQ, - ACTIONS(4941), 1, anon_sym_COMMA, - ACTIONS(5265), 1, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [96214] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, + anon_sym_COMMA, + ACTIONS(5182), 1, anon_sym_RBRACE, - STATE(3177), 1, + STATE(3027), 1, sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(5868), 1, aux_sym_object_repeat1, - ACTIONS(1043), 6, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(987), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2419), 29, + ACTIONS(2405), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -303037,14 +290400,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96577] = 5, + [96281] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3178), 1, + STATE(3028), 1, sym_comment, - ACTIONS(5719), 13, + ACTIONS(5564), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303058,7 +290421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5721), 28, + ACTIONS(5566), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -303087,150 +290450,147 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96632] = 35, + [96336] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5431), 1, - anon_sym_of, - ACTIONS(6277), 1, - anon_sym_GT, - ACTIONS(6279), 1, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6066), 1, anon_sym_AMP_AMP, - ACTIONS(6281), 1, + ACTIONS(6068), 1, anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6070), 1, anon_sym_AMP, - ACTIONS(6289), 1, + ACTIONS(6072), 1, anon_sym_CARET, - ACTIONS(6291), 1, + ACTIONS(6074), 1, anon_sym_PIPE, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_STAR_STAR, - ACTIONS(6299), 1, - anon_sym_LT, - ACTIONS(6307), 1, + ACTIONS(6076), 1, anon_sym_QMARK_QMARK, - ACTIONS(6309), 1, + ACTIONS(6078), 1, sym__ternary_qmark, - ACTIONS(6409), 1, - anon_sym_in, - STATE(2372), 1, + ACTIONS(6411), 1, + anon_sym_COLON, + STATE(2220), 1, sym_type_arguments, - STATE(3179), 1, + STATE(3029), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6275), 2, + ACTIONS(5989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6285), 2, + ACTIONS(5991), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5995), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6303), 2, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6305), 2, + ACTIONS(6009), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6301), 3, + ACTIONS(6005), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96747] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + [96449] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, - anon_sym_COMMA, - ACTIONS(5265), 1, - anon_sym_RBRACE, - STATE(3180), 1, - sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(1043), 6, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(6413), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(6416), 1, anon_sym_COLON, + ACTIONS(6418), 1, anon_sym_LT, + ACTIONS(6421), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2431), 29, - anon_sym_export, + STATE(3030), 1, + sym_comment, + ACTIONS(4137), 12, anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, + anon_sym_BANG, + anon_sym_in, + 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(4141), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, 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, - [96814] = 5, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [96512] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3181), 1, + STATE(3031), 1, sym_comment, - ACTIONS(5715), 13, + ACTIONS(5490), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303244,7 +290604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5717), 28, + ACTIONS(5492), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -303273,149 +290633,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96869] = 34, + [96567] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5241), 1, - anon_sym_RBRACK, - ACTIONS(6213), 1, + ACTIONS(4985), 1, + anon_sym_of, + ACTIONS(6232), 1, anon_sym_AMP_AMP, - ACTIONS(6215), 1, + ACTIONS(6234), 1, anon_sym_PIPE_PIPE, - ACTIONS(6217), 1, + ACTIONS(6236), 1, anon_sym_GT_GT, - ACTIONS(6221), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(6223), 1, + ACTIONS(6242), 1, anon_sym_CARET, - ACTIONS(6225), 1, + ACTIONS(6244), 1, anon_sym_PIPE, - ACTIONS(6229), 1, + ACTIONS(6248), 1, anon_sym_PERCENT, - ACTIONS(6231), 1, + ACTIONS(6250), 1, anon_sym_STAR_STAR, - ACTIONS(6233), 1, + ACTIONS(6252), 1, anon_sym_LT, - ACTIONS(6241), 1, + ACTIONS(6260), 1, anon_sym_QMARK_QMARK, - ACTIONS(6243), 1, + ACTIONS(6262), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3182), 1, + STATE(3032), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6209), 2, + ACTIONS(6228), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6211), 2, + ACTIONS(6230), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6219), 2, + ACTIONS(6238), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6227), 2, + ACTIONS(6246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6237), 2, + ACTIONS(6256), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6239), 2, + ACTIONS(6258), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6235), 3, + ACTIONS(6254), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [96982] = 7, + [96680] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6412), 1, - sym__automatic_semicolon, - STATE(3183), 1, - sym_comment, - ACTIONS(2275), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2137), 13, - anon_sym_STAR, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4976), 1, + anon_sym_of, + ACTIONS(6232), 1, + anon_sym_AMP_AMP, + ACTIONS(6234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6236), 1, anon_sym_GT_GT, + ACTIONS(6240), 1, anon_sym_AMP, + ACTIONS(6242), 1, + anon_sym_CARET, + ACTIONS(6244), 1, anon_sym_PIPE, + ACTIONS(6248), 1, + anon_sym_PERCENT, + ACTIONS(6250), 1, + anon_sym_STAR_STAR, + ACTIONS(6252), 1, + anon_sym_LT, + ACTIONS(6260), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6262), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(3033), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6228), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6230), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6246), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6256), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2141), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(6258), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6254), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [96793] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4801), 1, anon_sym_LBRACK, + ACTIONS(4803), 1, anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, + ACTIONS(4946), 1, + anon_sym_BANG, + ACTIONS(6232), 1, anon_sym_AMP_AMP, + ACTIONS(6234), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6236), 1, + anon_sym_GT_GT, + ACTIONS(6240), 1, + anon_sym_AMP, + ACTIONS(6242), 1, anon_sym_CARET, + ACTIONS(6244), 1, + anon_sym_PIPE, + ACTIONS(6248), 1, anon_sym_PERCENT, + ACTIONS(6250), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6252), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3034), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6228), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6230), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6256), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6258), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6254), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4944), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [97041] = 6, + [96898] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3184), 1, + STATE(3035), 1, sym_comment, - ACTIONS(6414), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(5306), 13, + ACTIONS(5572), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303429,12 +290887,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 25, + ACTIONS(5574), 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, @@ -303455,21 +290916,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97098] = 7, + [96953] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3185), 1, + STATE(3036), 1, sym_comment, - ACTIONS(6416), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6418), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4121), 13, + ACTIONS(5529), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303483,10 +290937,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(5531), 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, @@ -303507,151 +290966,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97157] = 8, + [97008] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5206), 1, - anon_sym_extends, - STATE(3186), 1, - sym_comment, - ACTIONS(5571), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5568), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(5564), 11, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6236), 1, + anon_sym_GT_GT, + ACTIONS(6248), 1, + anon_sym_PERCENT, + ACTIONS(6250), 1, + anon_sym_STAR_STAR, + ACTIONS(6252), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3037), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6228), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6230), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6246), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6254), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4946), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5566), 24, + ACTIONS(4944), 10, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [97218] = 34, + [97099] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5216), 1, - anon_sym_RBRACK, - ACTIONS(6213), 1, + ACTIONS(5762), 1, + anon_sym_of, + ACTIONS(6230), 1, + anon_sym_GT, + ACTIONS(6232), 1, anon_sym_AMP_AMP, - ACTIONS(6215), 1, + ACTIONS(6234), 1, anon_sym_PIPE_PIPE, - ACTIONS(6217), 1, + ACTIONS(6236), 1, anon_sym_GT_GT, - ACTIONS(6221), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(6223), 1, + ACTIONS(6242), 1, anon_sym_CARET, - ACTIONS(6225), 1, + ACTIONS(6244), 1, anon_sym_PIPE, - ACTIONS(6229), 1, + ACTIONS(6248), 1, anon_sym_PERCENT, - ACTIONS(6231), 1, + ACTIONS(6250), 1, anon_sym_STAR_STAR, - ACTIONS(6233), 1, + ACTIONS(6252), 1, anon_sym_LT, - ACTIONS(6241), 1, + ACTIONS(6260), 1, anon_sym_QMARK_QMARK, - ACTIONS(6243), 1, + ACTIONS(6262), 1, sym__ternary_qmark, - STATE(2372), 1, + ACTIONS(6423), 1, + anon_sym_in, + STATE(2220), 1, sym_type_arguments, - STATE(3187), 1, + STATE(3038), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6209), 2, + ACTIONS(6228), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6211), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6219), 2, + ACTIONS(6238), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6227), 2, + ACTIONS(6246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6237), 2, + ACTIONS(6256), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6239), 2, + ACTIONS(6258), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6235), 3, + ACTIONS(6254), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [97331] = 7, + [97214] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6420), 1, - sym__automatic_semicolon, - STATE(3188), 1, + STATE(3039), 1, sym_comment, - ACTIONS(2315), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2161), 13, + ACTIONS(5713), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303665,11 +291135,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2165), 25, + ACTIONS(5715), 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, @@ -303691,77 +291164,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97390] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + [97269] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4514), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3040), 1, + sym_comment, + ACTIONS(2351), 5, sym__automatic_semicolon, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, anon_sym_COMMA, - ACTIONS(5124), 1, anon_sym_RBRACE, - STATE(3189), 1, - sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(1043), 6, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2419), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - 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, - [97457] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3190), 1, - sym_comment, - ACTIONS(6082), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6084), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4121), 13, + ACTIONS(2151), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303775,7 +291191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(2153), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -303799,85 +291215,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97516] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6164), 1, - anon_sym_STAR, - ACTIONS(6166), 1, - anon_sym_async, - STATE(3191), 1, - sym_comment, - STATE(4050), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6170), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4372), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [97591] = 9, + [97326] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4290), 1, + ACTIONS(4298), 1, anon_sym_EQ, - ACTIONS(5675), 1, - anon_sym_LBRACK, - STATE(3192), 1, + ACTIONS(5190), 1, + anon_sym_extends, + STATE(3041), 1, sym_comment, - ACTIONS(5286), 2, + ACTIONS(5779), 2, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5678), 3, + anon_sym_LBRACK, + ACTIONS(5782), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4121), 10, + ACTIONS(4137), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303888,12 +291244,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 24, - sym__automatic_semicolon, + ACTIONS(4141), 24, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -303913,97 +291268,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97654] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5214), 1, - anon_sym_RBRACK, - ACTIONS(6213), 1, - anon_sym_AMP_AMP, - ACTIONS(6215), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6217), 1, - anon_sym_GT_GT, - ACTIONS(6221), 1, - anon_sym_AMP, - ACTIONS(6223), 1, - anon_sym_CARET, - ACTIONS(6225), 1, - anon_sym_PIPE, - ACTIONS(6229), 1, - anon_sym_PERCENT, - ACTIONS(6231), 1, - anon_sym_STAR_STAR, - ACTIONS(6233), 1, - anon_sym_LT, - ACTIONS(6241), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6243), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(3193), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6209), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6211), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6219), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6237), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6239), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6235), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [97767] = 6, + anon_sym_implements, + [97389] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6422), 1, - sym_regex_flags, - STATE(3194), 1, + STATE(3042), 1, sym_comment, - ACTIONS(6089), 16, + ACTIONS(2215), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -304016,14 +291290,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(6091), 24, + ACTIONS(2219), 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, @@ -304040,101 +291314,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [97824] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(6164), 1, - anon_sym_STAR, - STATE(3195), 1, - sym_comment, - STATE(4805), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6424), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [97897] = 7, + anon_sym_satisfies, + [97444] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3196), 1, + STATE(3043), 1, sym_comment, - ACTIONS(5208), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5210), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4121), 11, + ACTIONS(2227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 24, + ACTIONS(2231), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -304154,135 +291369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97956] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(6392), 1, - anon_sym_STAR, - STATE(3197), 1, - sym_comment, - STATE(4838), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6426), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [98029] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, - anon_sym_COMMA, - ACTIONS(5124), 1, - anon_sym_RBRACE, - STATE(3198), 1, - sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2431), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - 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, - [98096] = 6, + [97499] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3199), 1, + STATE(3044), 1, sym_comment, - ACTIONS(2387), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2169), 13, + ACTIONS(2243), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304296,10 +291390,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2171), 23, + ACTIONS(2247), 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, @@ -304320,14 +291419,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98153] = 5, + [97554] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3200), 1, + STATE(3045), 1, sym_comment, - ACTIONS(5711), 13, + ACTIONS(2191), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304341,7 +291440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5713), 28, + ACTIONS(2195), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -304370,179 +291469,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98208] = 15, + [97609] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6058), 1, - anon_sym_STAR, - ACTIONS(6060), 1, - anon_sym_async, - STATE(3201), 1, - sym_comment, - STATE(3945), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6064), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, + ACTIONS(231), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4372), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [98283] = 24, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(225), 1, - anon_sym_STAR, + ACTIONS(1043), 1, + anon_sym_RBRACE, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(2115), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(6430), 1, - anon_sym_COMMA, - ACTIONS(6432), 1, - anon_sym_RBRACE, - ACTIONS(6434), 1, + ACTIONS(2902), 1, anon_sym_async, - ACTIONS(6436), 1, - anon_sym_static, - ACTIONS(6438), 1, - anon_sym_readonly, - ACTIONS(6444), 1, - anon_sym_override, - STATE(3202), 1, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(5985), 1, + anon_sym_STAR, + STATE(3046), 1, sym_comment, - STATE(3651), 1, - sym_accessibility_modifier, - STATE(3663), 1, - sym_override_modifier, - STATE(4669), 1, + STATE(4808), 1, sym__property_name, - STATE(5841), 1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6440), 2, + ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(6442), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5842), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(6428), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [98376] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, - anon_sym_COMMA, - ACTIONS(5340), 1, - anon_sym_RBRACE, - STATE(3203), 1, - sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(1043), 6, + ACTIONS(987), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2419), 29, + ACTIONS(2900), 20, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -304555,162 +291533,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98443] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + [97692] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4514), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(6426), 1, sym__automatic_semicolon, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, - anon_sym_COMMA, - ACTIONS(5340), 1, - anon_sym_RBRACE, - STATE(3204), 1, + STATE(3047), 1, sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(1043), 6, + ACTIONS(2313), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2131), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2135), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2431), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, 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, - [98510] = 11, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [97751] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, + ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(4944), 1, + ACTIONS(1043), 1, anon_sym_RBRACE, - STATE(3205), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(5985), 1, + anon_sym_STAR, + STATE(3048), 1, sym_comment, - STATE(6171), 1, + STATE(4808), 1, + sym__property_name, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(6261), 1, aux_sym_object_repeat1, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2419), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, + ACTIONS(2734), 2, sym_number, - sym_identifier, sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [98577] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, - anon_sym_COMMA, - ACTIONS(4944), 1, - anon_sym_RBRACE, - STATE(3206), 1, - sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(1043), 6, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2431), 29, + ACTIONS(2900), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -304723,14 +291648,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98644] = 5, + [97832] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3207), 1, + STATE(3049), 1, sym_comment, - ACTIONS(2161), 13, + ACTIONS(6428), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6430), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304744,15 +291676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2165), 28, - sym__automatic_semicolon, + ACTIONS(4141), 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, @@ -304773,40 +291700,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98699] = 8, + [97891] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5270), 1, - anon_sym_EQ, - ACTIONS(5926), 1, - anon_sym_of, - ACTIONS(6446), 1, - anon_sym_in, - STATE(3208), 1, + ACTIONS(5190), 1, + anon_sym_extends, + STATE(3050), 1, sym_comment, - ACTIONS(5268), 12, + ACTIONS(5782), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5779), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4137), 11, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5272), 26, - sym__automatic_semicolon, + ACTIONS(4141), 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, @@ -304826,37 +291753,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98760] = 5, + [97952] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2071), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3209), 1, + ACTIONS(5343), 1, + anon_sym_LBRACK, + STATE(3051), 1, sym_comment, - ACTIONS(5631), 13, + ACTIONS(3570), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5346), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2069), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5633), 28, + ACTIONS(2075), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -304876,41 +291807,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98815] = 9, + [98015] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5204), 1, - anon_sym_QMARK, - STATE(3210), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(6250), 1, + anon_sym_STAR_STAR, + ACTIONS(6432), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3052), 1, sym_comment, - ACTIONS(5206), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5571), 2, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5568), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(5564), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4944), 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, + [98098] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3053), 1, + sym_comment, + ACTIONS(5693), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5566), 22, + ACTIONS(5695), 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, @@ -304930,16 +291921,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98878] = 6, + [98153] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6414), 1, - anon_sym_COMMA, - STATE(3211), 1, + ACTIONS(6435), 1, + sym__automatic_semicolon, + STATE(3054), 1, sym_comment, - ACTIONS(5306), 13, + ACTIONS(2287), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2139), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304953,15 +291947,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 27, + ACTIONS(2143), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - 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, @@ -304981,180 +291973,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98935] = 34, + [98212] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5026), 1, - anon_sym_of, - ACTIONS(6279), 1, - anon_sym_AMP_AMP, - ACTIONS(6281), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, - anon_sym_AMP, - ACTIONS(6289), 1, - anon_sym_CARET, - ACTIONS(6291), 1, - anon_sym_PIPE, - ACTIONS(6295), 1, + ACTIONS(6248), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6250), 1, anon_sym_STAR_STAR, - ACTIONS(6299), 1, + ACTIONS(6432), 1, anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6309), 1, - sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3212), 1, + STATE(3055), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6275), 2, + ACTIONS(6228), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6277), 2, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6303), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6305), 2, + ACTIONS(4944), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6301), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [99048] = 34, + anon_sym_satisfies, + [98293] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5241), 1, - anon_sym_of, - ACTIONS(6279), 1, - anon_sym_AMP_AMP, - ACTIONS(6281), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, + ACTIONS(6236), 1, anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(6289), 1, + ACTIONS(6242), 1, anon_sym_CARET, - ACTIONS(6291), 1, - anon_sym_PIPE, - ACTIONS(6295), 1, + ACTIONS(6248), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6250), 1, anon_sym_STAR_STAR, - ACTIONS(6299), 1, + ACTIONS(6252), 1, anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6309), 1, - sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3213), 1, + STATE(3056), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6275), 2, + ACTIONS(4946), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6228), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6277), 2, + ACTIONS(6230), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, + ACTIONS(6238), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(6246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6303), 2, + ACTIONS(6256), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6305), 2, + ACTIONS(6258), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6301), 3, + ACTIONS(6254), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99161] = 9, + ACTIONS(4944), 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, + [98392] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6449), 1, - anon_sym_LPAREN, - ACTIONS(6452), 1, - anon_sym_COLON, - ACTIONS(6454), 1, - anon_sym_LT, - ACTIONS(6457), 1, - anon_sym_QMARK, - STATE(3214), 1, + STATE(3057), 1, sym_comment, - ACTIONS(5739), 12, + ACTIONS(2169), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305165,13 +292126,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5741), 25, + ACTIONS(2173), 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, @@ -305193,21 +292158,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99224] = 6, + [98447] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6422), 1, - sym_regex_flags, - STATE(3215), 1, + STATE(3058), 1, sym_comment, - ACTIONS(6089), 17, + ACTIONS(2207), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_of, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -305218,13 +292179,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(6091), 23, + ACTIONS(2211), 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, @@ -305241,24 +292203,19 @@ 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, - [99281] = 7, + anon_sym_satisfies, + [98502] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6459), 1, - sym__automatic_semicolon, - STATE(3216), 1, + STATE(3059), 1, sym_comment, - ACTIONS(2279), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2151), 13, + ACTIONS(2257), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305272,10 +292229,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2155), 23, + ACTIONS(2261), 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, @@ -305296,322 +292258,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99340] = 34, + [98557] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5216), 1, - anon_sym_of, - ACTIONS(6279), 1, - anon_sym_AMP_AMP, - ACTIONS(6281), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, - anon_sym_AMP, - ACTIONS(6289), 1, - anon_sym_CARET, - ACTIONS(6291), 1, - anon_sym_PIPE, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_STAR_STAR, - ACTIONS(6299), 1, - anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6309), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(3217), 1, + STATE(3060), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6275), 2, + ACTIONS(2085), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6277), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6303), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6305), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6301), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [99453] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5214), 1, - anon_sym_of, - ACTIONS(6279), 1, - anon_sym_AMP_AMP, - ACTIONS(6281), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, anon_sym_GT_GT, - ACTIONS(6287), 1, anon_sym_AMP, - ACTIONS(6289), 1, - anon_sym_CARET, - ACTIONS(6291), 1, anon_sym_PIPE, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_STAR_STAR, - ACTIONS(6299), 1, - anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6309), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(3218), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6275), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6277), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6303), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6305), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6301), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [99566] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(2089), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4811), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5212), 1, - anon_sym_of, - ACTIONS(6279), 1, anon_sym_AMP_AMP, - ACTIONS(6281), 1, anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, - anon_sym_AMP, - ACTIONS(6289), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6291), 1, - anon_sym_PIPE, - ACTIONS(6295), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, anon_sym_STAR_STAR, - ACTIONS(6299), 1, - anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6309), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(3219), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6275), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6277), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6303), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6305), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6301), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [99679] = 21, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98612] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, + anon_sym_COMMA, + ACTIONS(5314), 1, + anon_sym_RBRACE, + STATE(3061), 1, + sym_comment, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(987), 6, anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6217), 1, - anon_sym_GT_GT, - ACTIONS(6229), 1, - anon_sym_PERCENT, - ACTIONS(6231), 1, - anon_sym_STAR_STAR, - ACTIONS(6233), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3220), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6209), 2, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2403), 29, + anon_sym_export, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6219), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6227), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4957), 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, - [99766] = 7, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [98679] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6461), 1, - sym__automatic_semicolon, - STATE(3221), 1, + STATE(3062), 1, sym_comment, - ACTIONS(2341), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2087), 13, + ACTIONS(2199), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305625,11 +292385,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2091), 25, + ACTIONS(2203), 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, @@ -305651,14 +292414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99825] = 5, + [98734] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3222), 1, + ACTIONS(6437), 1, + sym__automatic_semicolon, + STATE(3063), 1, sym_comment, - ACTIONS(5602), 13, + ACTIONS(2329), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2243), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305672,14 +292440,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5216), 28, - sym__automatic_semicolon, + ACTIONS(2247), 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_DOT, @@ -305701,44 +292466,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99880] = 18, + [98793] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, + ACTIONS(6011), 1, anon_sym_STAR, - ACTIONS(6007), 1, - anon_sym_RBRACE, - STATE(3223), 1, + STATE(3064), 1, sym_comment, - STATE(4761), 1, + STATE(4816), 1, sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6439), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 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, @@ -305764,240 +292525,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [99961] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [98866] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6058), 1, - anon_sym_STAR, - ACTIONS(6060), 1, - anon_sym_async, - STATE(3224), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3065), 1, sym_comment, - STATE(3976), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6064), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(5510), 13, + anon_sym_STAR, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5512), 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_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4372), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [100036] = 34, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98921] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5106), 1, - anon_sym_of, - ACTIONS(6279), 1, - anon_sym_AMP_AMP, - ACTIONS(6281), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, + ACTIONS(6236), 1, anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(6289), 1, - anon_sym_CARET, - ACTIONS(6291), 1, - anon_sym_PIPE, - ACTIONS(6295), 1, + ACTIONS(6248), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6250), 1, anon_sym_STAR_STAR, - ACTIONS(6299), 1, + ACTIONS(6252), 1, anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6309), 1, - sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3225), 1, + STATE(3066), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6275), 2, + ACTIONS(4946), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6228), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6277), 2, + ACTIONS(6230), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, + ACTIONS(6238), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(6246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6303), 2, + ACTIONS(6256), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6305), 2, + ACTIONS(6258), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6301), 3, + ACTIONS(6254), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100149] = 34, + ACTIONS(4944), 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, + [99018] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + STATE(3067), 1, + sym_comment, + ACTIONS(5697), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + 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, - ACTIONS(4811), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(4867), 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, + [99073] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5100), 1, - anon_sym_of, - ACTIONS(6279), 1, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6066), 1, anon_sym_AMP_AMP, - ACTIONS(6281), 1, + ACTIONS(6068), 1, anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6070), 1, anon_sym_AMP, - ACTIONS(6289), 1, + ACTIONS(6072), 1, anon_sym_CARET, - ACTIONS(6291), 1, + ACTIONS(6074), 1, anon_sym_PIPE, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_STAR_STAR, - ACTIONS(6299), 1, - anon_sym_LT, - ACTIONS(6307), 1, + ACTIONS(6076), 1, anon_sym_QMARK_QMARK, - ACTIONS(6309), 1, + ACTIONS(6078), 1, sym__ternary_qmark, - STATE(2372), 1, + ACTIONS(6441), 1, + anon_sym_COLON, + STATE(2220), 1, sym_type_arguments, - STATE(3226), 1, + STATE(3068), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6275), 2, + ACTIONS(5989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6277), 2, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, + ACTIONS(5995), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6303), 2, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6305), 2, + ACTIONS(6009), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6301), 3, + ACTIONS(6005), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100262] = 8, + [99186] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5419), 1, - anon_sym_EQ, - ACTIONS(5920), 1, - anon_sym_of, - ACTIONS(6463), 1, - anon_sym_in, - STATE(3227), 1, + STATE(3069), 1, sym_comment, - ACTIONS(5417), 12, + ACTIONS(5703), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -306008,12 +292796,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5421), 26, + ACTIONS(5705), 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, @@ -306035,22 +292825,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100323] = 8, + [99241] = 25, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5914), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6236), 1, + anon_sym_GT_GT, + ACTIONS(6248), 1, + anon_sym_PERCENT, + ACTIONS(6250), 1, + anon_sym_STAR_STAR, + ACTIONS(6252), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3070), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6228), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6230), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6256), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6258), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6254), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 8, + sym__ternary_qmark, + anon_sym_as, anon_sym_of, - ACTIONS(6466), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [99336] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6248), 1, + anon_sym_PERCENT, + ACTIONS(6250), 1, + anon_sym_STAR_STAR, + ACTIONS(6432), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3071), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6228), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6246), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 8, + anon_sym_BANG, anon_sym_in, - STATE(3228), 1, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4944), 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, + [99419] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3072), 1, sym_comment, - ACTIONS(2069), 12, + ACTIONS(5608), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -306061,12 +292980,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 26, + ACTIONS(5610), 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, @@ -306088,164 +293009,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100384] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, + [99474] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - ACTIONS(6009), 1, - anon_sym_RBRACE, - STATE(3229), 1, - sym_comment, - STATE(4761), 1, - sym__property_name, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [100465] = 19, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - ACTIONS(6009), 1, - anon_sym_RBRACE, - STATE(3230), 1, + STATE(3073), 1, sym_comment, - STATE(4761), 1, - sym__property_name, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(5707), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + 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, - ACTIONS(2900), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [100548] = 15, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5709), 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, + [99529] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6245), 1, + ACTIONS(6443), 1, anon_sym_STAR, - ACTIONS(6375), 1, + ACTIONS(6445), 1, anon_sym_async, - STATE(3231), 1, + STATE(3074), 1, sym_comment, - STATE(3939), 1, + STATE(3823), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6377), 2, + ACTIONS(6447), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -306254,7 +293098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4372), 20, + ACTIONS(4376), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -306275,93 +293119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100623] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5212), 1, - anon_sym_RBRACK, - ACTIONS(6213), 1, - anon_sym_AMP_AMP, - ACTIONS(6215), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6217), 1, - anon_sym_GT_GT, - ACTIONS(6221), 1, - anon_sym_AMP, - ACTIONS(6223), 1, - anon_sym_CARET, - ACTIONS(6225), 1, - anon_sym_PIPE, - ACTIONS(6229), 1, - anon_sym_PERCENT, - ACTIONS(6231), 1, - anon_sym_STAR_STAR, - ACTIONS(6233), 1, - anon_sym_LT, - ACTIONS(6241), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6243), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(3232), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6209), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6211), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6219), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6237), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6239), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6235), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [100736] = 5, + [99604] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3233), 1, + STATE(3075), 1, sym_comment, - ACTIONS(5777), 13, + ACTIONS(5172), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306375,7 +293140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5779), 28, + ACTIONS(5174), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -306404,43 +293169,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100791] = 11, + [99659] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4123), 1, + ACTIONS(5322), 1, anon_sym_EQ, - ACTIONS(4242), 1, - anon_sym_COLON, - ACTIONS(5286), 1, - anon_sym_extends, - ACTIONS(5675), 1, - anon_sym_LBRACK, - STATE(3234), 1, + ACTIONS(5904), 1, + anon_sym_of, + ACTIONS(6449), 1, + anon_sym_in, + STATE(3076), 1, sym_comment, - ACTIONS(5678), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6469), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4121), 11, + ACTIONS(5320), 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_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 22, + ACTIONS(5324), 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, @@ -306460,394 +293222,578 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100858] = 34, + [99720] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5179), 1, - anon_sym_RBRACK, - ACTIONS(6213), 1, + ACTIONS(6290), 1, anon_sym_AMP_AMP, - ACTIONS(6215), 1, + ACTIONS(6292), 1, anon_sym_PIPE_PIPE, - ACTIONS(6217), 1, + ACTIONS(6294), 1, anon_sym_GT_GT, - ACTIONS(6221), 1, + ACTIONS(6298), 1, anon_sym_AMP, - ACTIONS(6223), 1, + ACTIONS(6300), 1, anon_sym_CARET, - ACTIONS(6225), 1, + ACTIONS(6302), 1, anon_sym_PIPE, - ACTIONS(6229), 1, + ACTIONS(6306), 1, anon_sym_PERCENT, - ACTIONS(6231), 1, + ACTIONS(6308), 1, anon_sym_STAR_STAR, - ACTIONS(6233), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6241), 1, + ACTIONS(6318), 1, anon_sym_QMARK_QMARK, - ACTIONS(6243), 1, + ACTIONS(6320), 1, sym__ternary_qmark, - STATE(2372), 1, + ACTIONS(6452), 1, + anon_sym_RBRACK, + STATE(2220), 1, sym_type_arguments, - STATE(3235), 1, + STATE(3077), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6209), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6211), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6219), 2, + ACTIONS(6296), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6227), 2, + ACTIONS(6304), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6237), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6239), 2, + ACTIONS(6316), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6235), 3, + ACTIONS(6312), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100971] = 34, + [99833] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5154), 1, - anon_sym_RBRACK, - ACTIONS(6213), 1, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6066), 1, anon_sym_AMP_AMP, - ACTIONS(6215), 1, + ACTIONS(6068), 1, anon_sym_PIPE_PIPE, - ACTIONS(6217), 1, - anon_sym_GT_GT, - ACTIONS(6221), 1, + ACTIONS(6070), 1, anon_sym_AMP, - ACTIONS(6223), 1, + ACTIONS(6072), 1, anon_sym_CARET, - ACTIONS(6225), 1, + ACTIONS(6074), 1, anon_sym_PIPE, - ACTIONS(6229), 1, - anon_sym_PERCENT, - ACTIONS(6231), 1, - anon_sym_STAR_STAR, - ACTIONS(6233), 1, - anon_sym_LT, - ACTIONS(6241), 1, + ACTIONS(6076), 1, anon_sym_QMARK_QMARK, - ACTIONS(6243), 1, + ACTIONS(6078), 1, sym__ternary_qmark, - STATE(2372), 1, + ACTIONS(6454), 1, + anon_sym_COLON, + STATE(2220), 1, sym_type_arguments, - STATE(3236), 1, + STATE(3078), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6209), 2, + ACTIONS(5989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6211), 2, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6219), 2, + ACTIONS(5995), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6227), 2, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6237), 2, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6239), 2, + ACTIONS(6009), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6235), 3, + ACTIONS(6005), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101084] = 30, + [99946] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(4946), 1, anon_sym_BANG, - ACTIONS(6213), 1, + ACTIONS(6232), 1, anon_sym_AMP_AMP, - ACTIONS(6215), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6217), 1, + ACTIONS(6236), 1, anon_sym_GT_GT, - ACTIONS(6221), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(6223), 1, + ACTIONS(6242), 1, anon_sym_CARET, - ACTIONS(6225), 1, + ACTIONS(6244), 1, anon_sym_PIPE, - ACTIONS(6229), 1, + ACTIONS(6248), 1, anon_sym_PERCENT, - ACTIONS(6231), 1, + ACTIONS(6250), 1, anon_sym_STAR_STAR, - ACTIONS(6233), 1, + ACTIONS(6252), 1, anon_sym_LT, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3237), 1, + STATE(3079), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6209), 2, + ACTIONS(6228), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6211), 2, + ACTIONS(6230), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6219), 2, + ACTIONS(6238), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6227), 2, + ACTIONS(6246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6237), 2, + ACTIONS(6256), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6239), 2, + ACTIONS(6258), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6235), 3, + ACTIONS(6254), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 5, + ACTIONS(4944), 6, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [101189] = 23, + [100049] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(6217), 1, + ACTIONS(4946), 1, + anon_sym_BANG, + ACTIONS(6236), 1, anon_sym_GT_GT, - ACTIONS(6229), 1, + ACTIONS(6240), 1, + anon_sym_AMP, + ACTIONS(6242), 1, + anon_sym_CARET, + ACTIONS(6244), 1, + anon_sym_PIPE, + ACTIONS(6248), 1, anon_sym_PERCENT, - ACTIONS(6231), 1, + ACTIONS(6250), 1, anon_sym_STAR_STAR, - ACTIONS(6233), 1, + ACTIONS(6252), 1, anon_sym_LT, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3238), 1, + STATE(3080), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6209), 2, + ACTIONS(6228), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6211), 2, + ACTIONS(6230), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6219), 2, + ACTIONS(6238), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6227), 2, + ACTIONS(6246), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2716), 2, + ACTIONS(6256), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6258), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6235), 3, + ACTIONS(6254), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4955), 5, + ACTIONS(4944), 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, + [100150] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6097), 1, + anon_sym_STAR, + ACTIONS(6099), 1, + anon_sym_async, + STATE(3081), 1, + sym_comment, + STATE(3909), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6103), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 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(4376), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [100225] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(3082), 1, + sym_comment, + STATE(4736), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5900), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [100298] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6250), 1, + anon_sym_STAR_STAR, + ACTIONS(6432), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3083), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 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(4957), 10, + ACTIONS(4944), 16, sym__ternary_qmark, anon_sym_as, - 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_LT_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, - [101280] = 34, + [100375] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(6213), 1, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6066), 1, anon_sym_AMP_AMP, - ACTIONS(6215), 1, + ACTIONS(6068), 1, anon_sym_PIPE_PIPE, - ACTIONS(6217), 1, - anon_sym_GT_GT, - ACTIONS(6221), 1, + ACTIONS(6070), 1, anon_sym_AMP, - ACTIONS(6223), 1, + ACTIONS(6072), 1, anon_sym_CARET, - ACTIONS(6225), 1, + ACTIONS(6074), 1, anon_sym_PIPE, - ACTIONS(6229), 1, - anon_sym_PERCENT, - ACTIONS(6231), 1, - anon_sym_STAR_STAR, - ACTIONS(6233), 1, - anon_sym_LT, - ACTIONS(6241), 1, + ACTIONS(6076), 1, anon_sym_QMARK_QMARK, - ACTIONS(6243), 1, + ACTIONS(6078), 1, sym__ternary_qmark, - ACTIONS(6473), 1, - anon_sym_RBRACK, - STATE(2372), 1, + ACTIONS(6456), 1, + anon_sym_COLON, + STATE(2220), 1, sym_type_arguments, - STATE(3239), 1, + STATE(3084), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6209), 2, + ACTIONS(5989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6211), 2, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6219), 2, + ACTIONS(5995), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6227), 2, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6237), 2, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6239), 2, + ACTIONS(6009), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6235), 3, + ACTIONS(6005), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101393] = 5, + [100488] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3240), 1, + STATE(3085), 1, sym_comment, - ACTIONS(5707), 13, + ACTIONS(5519), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306861,7 +293807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5709), 28, + ACTIONS(5521), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -306890,14 +293836,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101448] = 5, + [100543] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3241), 1, + STATE(3086), 1, sym_comment, - ACTIONS(5615), 13, + ACTIONS(6127), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6129), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306911,15 +293864,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5617), 28, - sym__automatic_semicolon, + ACTIONS(4141), 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, @@ -306940,16 +293888,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101503] = 6, + [100602] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4218), 1, - anon_sym_EQ, - STATE(3242), 1, + STATE(3087), 1, sym_comment, - ACTIONS(4121), 13, + ACTIONS(5732), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306963,11 +293909,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 27, + ACTIONS(5734), 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, @@ -306991,235 +293938,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101560] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [100657] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6475), 1, - anon_sym_STAR, - ACTIONS(6477), 1, - anon_sym_async, - STATE(3243), 1, - sym_comment, - STATE(3977), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6479), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4372), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [101635] = 14, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(4235), 1, + anon_sym_EQ, + ACTIONS(5779), 1, anon_sym_LBRACK, - ACTIONS(6475), 1, - anon_sym_STAR, - STATE(3244), 1, + STATE(3088), 1, sym_comment, - STATE(4774), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6481), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, + ACTIONS(5190), 2, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [101708] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5038), 1, - anon_sym_of, - ACTIONS(6279), 1, - anon_sym_AMP_AMP, - ACTIONS(6281), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, + anon_sym_extends, + ACTIONS(5782), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(6289), 1, - anon_sym_CARET, - ACTIONS(6291), 1, anon_sym_PIPE, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_STAR_STAR, - ACTIONS(6299), 1, - anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6309), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(3245), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6275), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6277), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6303), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6305), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6301), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [101821] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3246), 1, - sym_comment, - ACTIONS(5635), 13, + ACTIONS(4137), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5637), 28, - sym__automatic_semicolon, + ACTIONS(4141), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -307239,37 +293992,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101876] = 5, + [100720] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3247), 1, + ACTIONS(4195), 1, + anon_sym_EQ, + ACTIONS(5188), 1, + anon_sym_QMARK, + ACTIONS(5779), 1, + anon_sym_LBRACK, + STATE(3089), 1, sym_comment, - ACTIONS(5649), 13, + ACTIONS(5782), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5190), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4137), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5154), 28, - sym__automatic_semicolon, + ACTIONS(4141), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -307289,14 +294047,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101931] = 5, + [100785] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3248), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6458), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3090), 1, sym_comment, - ACTIONS(5641), 13, + STATE(6178), 1, + sym_optional_chain, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4978), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307307,21 +294084,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5643), 28, - sym__automatic_semicolon, + ACTIONS(4980), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -307337,74 +294105,239 @@ 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, - [101986] = 7, + [100858] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3249), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6236), 1, + anon_sym_GT_GT, + ACTIONS(6248), 1, + anon_sym_PERCENT, + ACTIONS(6250), 1, + anon_sym_STAR_STAR, + ACTIONS(6252), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3091), 1, sym_comment, - ACTIONS(6483), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6485), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4121), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6228), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6246), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(4944), 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, + [100945] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, anon_sym_LPAREN, + ACTIONS(4801), 1, anon_sym_LBRACK, + ACTIONS(4803), 1, anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5194), 1, + anon_sym_of, + ACTIONS(6232), 1, anon_sym_AMP_AMP, + ACTIONS(6234), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6236), 1, + anon_sym_GT_GT, + ACTIONS(6240), 1, + anon_sym_AMP, + ACTIONS(6242), 1, anon_sym_CARET, + ACTIONS(6244), 1, + anon_sym_PIPE, + ACTIONS(6248), 1, anon_sym_PERCENT, + ACTIONS(6250), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6252), 1, + anon_sym_LT, + ACTIONS(6260), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6262), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(3092), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6228), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6230), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6256), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6258), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6254), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + [101058] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, anon_sym_satisfies, - [102045] = 6, + ACTIONS(4968), 1, + anon_sym_RBRACK, + ACTIONS(6290), 1, + anon_sym_AMP_AMP, + ACTIONS(6292), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6294), 1, + anon_sym_GT_GT, + ACTIONS(6298), 1, + anon_sym_AMP, + ACTIONS(6300), 1, + anon_sym_CARET, + ACTIONS(6302), 1, + anon_sym_PIPE, + ACTIONS(6306), 1, + anon_sym_PERCENT, + ACTIONS(6308), 1, + anon_sym_STAR_STAR, + ACTIONS(6310), 1, + anon_sym_LT, + ACTIONS(6318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6320), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(3093), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6286), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6296), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6314), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6316), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6312), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101171] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3250), 1, + STATE(3094), 1, sym_comment, - ACTIONS(2283), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2231), 13, + ACTIONS(5583), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307418,10 +294351,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2235), 23, + ACTIONS(5194), 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, @@ -307442,19 +294380,152 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102102] = 7, + [101226] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6487), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5300), 1, + anon_sym_of, + ACTIONS(6232), 1, + anon_sym_AMP_AMP, + ACTIONS(6234), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6236), 1, + anon_sym_GT_GT, + ACTIONS(6240), 1, + anon_sym_AMP, + ACTIONS(6242), 1, + anon_sym_CARET, + ACTIONS(6244), 1, + anon_sym_PIPE, + ACTIONS(6248), 1, + anon_sym_PERCENT, + ACTIONS(6250), 1, + anon_sym_STAR_STAR, + ACTIONS(6252), 1, + anon_sym_LT, + ACTIONS(6260), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6262), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(3095), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6228), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6230), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6238), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6246), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6256), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6258), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6254), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101339] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, sym__automatic_semicolon, - STATE(3251), 1, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(6461), 1, + anon_sym_STAR, + STATE(3096), 1, sym_comment, - ACTIONS(2297), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2119), 13, + STATE(4779), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6463), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 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(2900), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [101412] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3097), 1, + sym_comment, + ACTIONS(5537), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307468,11 +294539,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2123), 25, + ACTIONS(5539), 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, @@ -307494,130 +294568,311 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102161] = 7, + [101467] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6489), 1, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, sym__automatic_semicolon, - STATE(3252), 1, - sym_comment, - ACTIONS(2301), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2129), 13, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6461), 1, anon_sym_STAR, + ACTIONS(6465), 1, + anon_sym_async, + STATE(3098), 1, + sym_comment, + STATE(3837), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6467), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 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(4376), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [101542] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5170), 1, + anon_sym_RBRACK, + ACTIONS(6290), 1, + anon_sym_AMP_AMP, + ACTIONS(6292), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6294), 1, anon_sym_GT_GT, + ACTIONS(6298), 1, anon_sym_AMP, + ACTIONS(6300), 1, + anon_sym_CARET, + ACTIONS(6302), 1, anon_sym_PIPE, + ACTIONS(6306), 1, + anon_sym_PERCENT, + ACTIONS(6308), 1, + anon_sym_STAR_STAR, + ACTIONS(6310), 1, + anon_sym_LT, + ACTIONS(6318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6320), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(3099), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6286), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6296), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6304), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6314), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2133), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(6316), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6312), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [101655] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4801), 1, anon_sym_LBRACK, + ACTIONS(4803), 1, anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4960), 1, + anon_sym_RBRACK, + ACTIONS(6290), 1, anon_sym_AMP_AMP, + ACTIONS(6292), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6294), 1, + anon_sym_GT_GT, + ACTIONS(6298), 1, + anon_sym_AMP, + ACTIONS(6300), 1, anon_sym_CARET, + ACTIONS(6302), 1, + anon_sym_PIPE, + ACTIONS(6306), 1, anon_sym_PERCENT, + ACTIONS(6308), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6310), 1, + anon_sym_LT, + ACTIONS(6318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6320), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(3100), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6286), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6296), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6314), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6316), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6312), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [102220] = 19, + [101768] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(6231), 1, + ACTIONS(5272), 1, + anon_sym_RBRACK, + ACTIONS(6290), 1, + anon_sym_AMP_AMP, + ACTIONS(6292), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6294), 1, + anon_sym_GT_GT, + ACTIONS(6298), 1, + anon_sym_AMP, + ACTIONS(6300), 1, + anon_sym_CARET, + ACTIONS(6302), 1, + anon_sym_PIPE, + ACTIONS(6306), 1, + anon_sym_PERCENT, + ACTIONS(6308), 1, anon_sym_STAR_STAR, - ACTIONS(6491), 1, + ACTIONS(6310), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(6318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6320), 1, + sym__ternary_qmark, + STATE(2220), 1, sym_type_arguments, - STATE(3253), 1, + STATE(3101), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 11, + ACTIONS(6284), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6296), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6304), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6314), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 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, + ACTIONS(6316), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6312), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [102303] = 5, + [101881] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3254), 1, + STATE(3102), 1, sym_comment, - ACTIONS(5594), 13, + ACTIONS(5363), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307631,7 +294886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5596), 28, + ACTIONS(5365), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -307660,20 +294915,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102358] = 6, + [101936] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3255), 1, + STATE(3103), 1, sym_comment, - ACTIONS(2315), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2161), 13, + ACTIONS(5676), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307687,10 +294936,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2165), 23, + ACTIONS(5678), 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, @@ -307711,20 +294965,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102415] = 6, + [101991] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3256), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5300), 1, + anon_sym_RBRACK, + ACTIONS(6290), 1, + anon_sym_AMP_AMP, + ACTIONS(6292), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6294), 1, + anon_sym_GT_GT, + ACTIONS(6298), 1, + anon_sym_AMP, + ACTIONS(6300), 1, + anon_sym_CARET, + ACTIONS(6302), 1, + anon_sym_PIPE, + ACTIONS(6306), 1, + anon_sym_PERCENT, + ACTIONS(6308), 1, + anon_sym_STAR_STAR, + ACTIONS(6310), 1, + anon_sym_LT, + ACTIONS(6318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6320), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(3104), 1, sym_comment, - ACTIONS(2289), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2239), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6286), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6296), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6314), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6316), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6312), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [102104] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3105), 1, + sym_comment, + ACTIONS(5672), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307738,10 +295065,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2243), 23, + ACTIONS(5674), 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, @@ -307762,143 +295094,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102472] = 34, + [102159] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(6018), 1, + ACTIONS(5194), 1, + anon_sym_RBRACK, + ACTIONS(6290), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(6292), 1, anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, + ACTIONS(6294), 1, anon_sym_GT_GT, - ACTIONS(6026), 1, + ACTIONS(6298), 1, anon_sym_AMP, - ACTIONS(6028), 1, + ACTIONS(6300), 1, anon_sym_CARET, - ACTIONS(6030), 1, + ACTIONS(6302), 1, anon_sym_PIPE, - ACTIONS(6034), 1, + ACTIONS(6306), 1, anon_sym_PERCENT, - ACTIONS(6036), 1, + ACTIONS(6308), 1, anon_sym_STAR_STAR, - ACTIONS(6038), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6046), 1, + ACTIONS(6318), 1, anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, + ACTIONS(6320), 1, sym__ternary_qmark, - ACTIONS(6494), 1, - anon_sym_COLON, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3257), 1, + STATE(3106), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6014), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6016), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, + ACTIONS(6296), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6032), 2, + ACTIONS(6304), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, + ACTIONS(6316), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6040), 3, + ACTIONS(6312), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102585] = 5, + [102272] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3258), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6294), 1, + anon_sym_GT_GT, + ACTIONS(6306), 1, + anon_sym_PERCENT, + ACTIONS(6308), 1, + anon_sym_STAR_STAR, + ACTIONS(6310), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3107), 1, sym_comment, - ACTIONS(5613), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6296), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6304), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5212), 28, - sym__automatic_semicolon, + ACTIONS(4944), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_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, - [102640] = 5, + [102359] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3259), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6308), 1, + anon_sym_STAR_STAR, + ACTIONS(6469), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3108), 1, sym_comment, - ACTIONS(5701), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307909,164 +295281,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4970), 28, - sym__automatic_semicolon, + ACTIONS(4944), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_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, - [102695] = 7, + [102436] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3260), 1, - sym_comment, - ACTIONS(6385), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6387), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4121), 13, - anon_sym_STAR, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4946), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(6294), 1, anon_sym_GT_GT, + ACTIONS(6298), 1, anon_sym_AMP, + ACTIONS(6300), 1, + anon_sym_CARET, + ACTIONS(6302), 1, anon_sym_PIPE, + ACTIONS(6306), 1, + anon_sym_PERCENT, + ACTIONS(6308), 1, + anon_sym_STAR_STAR, + ACTIONS(6310), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3109), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6286), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6296), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6304), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6314), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(6316), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6312), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 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, + [102537] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, anon_sym_LPAREN, + ACTIONS(4801), 1, anon_sym_LBRACK, + ACTIONS(4803), 1, anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, + ACTIONS(4946), 1, + anon_sym_BANG, + ACTIONS(6290), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6294), 1, + anon_sym_GT_GT, + ACTIONS(6298), 1, + anon_sym_AMP, + ACTIONS(6300), 1, anon_sym_CARET, + ACTIONS(6302), 1, + anon_sym_PIPE, + ACTIONS(6306), 1, anon_sym_PERCENT, + ACTIONS(6308), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6310), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3110), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6286), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6296), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6314), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6316), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6312), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4944), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [102754] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, - anon_sym_LBRACK, - STATE(3261), 1, - sym_comment, - STATE(4890), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5910), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102827] = 7, + [102640] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3262), 1, + ACTIONS(6472), 1, + sym__automatic_semicolon, + STATE(3111), 1, sym_comment, - ACTIONS(6385), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6387), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4121), 13, + ACTIONS(2275), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2191), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308080,10 +295473,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(2195), 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, @@ -308104,14 +295499,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102886] = 5, + [102699] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3263), 1, + STATE(3112), 1, sym_comment, - ACTIONS(2239), 13, + ACTIONS(5367), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308125,7 +295520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2243), 28, + ACTIONS(5369), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -308154,118 +295549,248 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102941] = 7, + [102754] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3264), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6306), 1, + anon_sym_PERCENT, + ACTIONS(6308), 1, + anon_sym_STAR_STAR, + ACTIONS(6469), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3113), 1, sym_comment, - ACTIONS(6082), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6180), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4121), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6304), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(4944), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [103000] = 5, + [102837] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3265), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6294), 1, + anon_sym_GT_GT, + ACTIONS(6306), 1, + anon_sym_PERCENT, + ACTIONS(6308), 1, + anon_sym_STAR_STAR, + ACTIONS(6310), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3114), 1, sym_comment, - ACTIONS(2231), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6296), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6304), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6314), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2235), 28, - sym__automatic_semicolon, + ACTIONS(6316), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6312), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [102932] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4801), 1, anon_sym_LBRACK, + ACTIONS(4803), 1, anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, + ACTIONS(6294), 1, + anon_sym_GT_GT, + ACTIONS(6298), 1, + anon_sym_AMP, + ACTIONS(6306), 1, anon_sym_PERCENT, + ACTIONS(6308), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6310), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3115), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4946), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6286), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6296), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6314), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6316), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6312), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4944), 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, - [103055] = 5, + [103029] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3266), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(6474), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3116), 1, sym_comment, - ACTIONS(2151), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4937), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -308274,21 +295799,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2155), 28, - sym__automatic_semicolon, + ACTIONS(4939), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -308302,41 +295817,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [103110] = 5, + [103110] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3267), 1, + ACTIONS(4229), 1, + anon_sym_EQ, + ACTIONS(4253), 1, + anon_sym_COLON, + ACTIONS(5779), 1, + anon_sym_LBRACK, + STATE(3117), 1, sym_comment, - ACTIONS(5651), 13, + ACTIONS(5782), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5190), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4137), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5653), 28, - sym__automatic_semicolon, + ACTIONS(4141), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -308356,14 +295872,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103165] = 5, + [103175] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3268), 1, + STATE(3118), 1, sym_comment, - ACTIONS(2137), 13, + ACTIONS(5622), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308377,7 +295893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2141), 28, + ACTIONS(5624), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -308406,323 +295922,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103220] = 34, + [103230] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4986), 1, - anon_sym_of, - ACTIONS(6279), 1, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6066), 1, anon_sym_AMP_AMP, - ACTIONS(6281), 1, + ACTIONS(6068), 1, anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6070), 1, anon_sym_AMP, - ACTIONS(6289), 1, + ACTIONS(6072), 1, anon_sym_CARET, - ACTIONS(6291), 1, + ACTIONS(6074), 1, anon_sym_PIPE, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_STAR_STAR, - ACTIONS(6299), 1, - anon_sym_LT, - ACTIONS(6307), 1, + ACTIONS(6076), 1, anon_sym_QMARK_QMARK, - ACTIONS(6309), 1, + ACTIONS(6078), 1, sym__ternary_qmark, - STATE(2372), 1, + ACTIONS(6477), 1, + anon_sym_COLON, + STATE(2220), 1, sym_type_arguments, - STATE(3269), 1, + STATE(3119), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6275), 2, + ACTIONS(5989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6277), 2, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, + ACTIONS(5995), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6303), 2, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6305), 2, + ACTIONS(6009), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6301), 3, + ACTIONS(6005), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [103333] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(5995), 1, - anon_sym_STAR, - ACTIONS(5997), 1, - anon_sym_async, - STATE(3270), 1, - sym_comment, - STATE(3998), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6001), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4372), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [103408] = 34, + [103343] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(4970), 1, - anon_sym_of, - ACTIONS(6279), 1, - anon_sym_AMP_AMP, - ACTIONS(6281), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, + ACTIONS(6294), 1, anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6298), 1, anon_sym_AMP, - ACTIONS(6289), 1, + ACTIONS(6300), 1, anon_sym_CARET, - ACTIONS(6291), 1, - anon_sym_PIPE, - ACTIONS(6295), 1, + ACTIONS(6306), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6308), 1, anon_sym_STAR_STAR, - ACTIONS(6299), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6307), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6309), 1, - sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3271), 1, + STATE(3120), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6275), 2, + ACTIONS(4946), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6277), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, + ACTIONS(6296), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(6304), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6303), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6305), 2, + ACTIONS(6316), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6301), 3, + ACTIONS(6312), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [103521] = 21, + ACTIONS(4944), 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, + [103442] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_STAR_STAR, - ACTIONS(6299), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3272), 1, + STATE(3121), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6275), 2, + ACTIONS(6127), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6165), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4137), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 13, + ACTIONS(4141), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_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, - [103608] = 16, + [103501] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(6297), 1, + ACTIONS(6306), 1, + anon_sym_PERCENT, + ACTIONS(6308), 1, anon_sym_STAR_STAR, - ACTIONS(6496), 1, + ACTIONS(6469), 1, anon_sym_LT, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3273), 1, + STATE(3122), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + ACTIONS(6284), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 12, - anon_sym_STAR, + ACTIONS(4946), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -308731,19 +296170,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 16, + ACTIONS(4944), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + 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, @@ -308751,43 +296188,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [103685] = 18, + [103582] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(6229), 1, - anon_sym_PERCENT, - ACTIONS(6231), 1, - anon_sym_STAR_STAR, - ACTIONS(6491), 1, + ACTIONS(6479), 1, anon_sym_LT, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3274), 1, + STATE(3123), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6209), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 10, + ACTIONS(5053), 12, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -308796,9 +296227,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 15, + ACTIONS(5055), 17, sym__ternary_qmark, anon_sym_as, anon_sym_RBRACK, @@ -308807,6 +296239,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -308814,207 +296248,114 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [103766] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, - anon_sym_COMMA, - ACTIONS(5230), 1, - anon_sym_RBRACE, - STATE(3275), 1, - sym_comment, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2419), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - 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, - [103833] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6245), 1, - anon_sym_STAR, - ACTIONS(6375), 1, - anon_sym_async, - STATE(3276), 1, - sym_comment, - STATE(3979), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6377), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4372), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [103908] = 9, + [103657] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6499), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, - anon_sym_COLON, - ACTIONS(6504), 1, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5180), 1, + anon_sym_RBRACK, + ACTIONS(6290), 1, + anon_sym_AMP_AMP, + ACTIONS(6292), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6294), 1, + anon_sym_GT_GT, + ACTIONS(6298), 1, + anon_sym_AMP, + ACTIONS(6300), 1, + anon_sym_CARET, + ACTIONS(6302), 1, + anon_sym_PIPE, + ACTIONS(6306), 1, + anon_sym_PERCENT, + ACTIONS(6308), 1, + anon_sym_STAR_STAR, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6507), 1, - anon_sym_QMARK, - STATE(3277), 1, + ACTIONS(6318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6320), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(3124), 1, sym_comment, - ACTIONS(4121), 12, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6296), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6304), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6314), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 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, + ACTIONS(6316), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6312), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [103971] = 15, + [103770] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6509), 1, + ACTIONS(6443), 1, anon_sym_STAR, - ACTIONS(6511), 1, - anon_sym_async, - STATE(3278), 1, + STATE(3125), 1, sym_comment, - STATE(3947), 1, + STATE(4821), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6513), 2, + ACTIONS(6482), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -309023,11 +296364,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4372), 20, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -309044,116 +296386,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104046] = 34, + [103843] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(6018), 1, + ACTIONS(5276), 1, + anon_sym_RBRACK, + ACTIONS(6290), 1, anon_sym_AMP_AMP, - ACTIONS(6020), 1, + ACTIONS(6292), 1, anon_sym_PIPE_PIPE, - ACTIONS(6022), 1, + ACTIONS(6294), 1, anon_sym_GT_GT, - ACTIONS(6026), 1, + ACTIONS(6298), 1, anon_sym_AMP, - ACTIONS(6028), 1, + ACTIONS(6300), 1, anon_sym_CARET, - ACTIONS(6030), 1, + ACTIONS(6302), 1, anon_sym_PIPE, - ACTIONS(6034), 1, + ACTIONS(6306), 1, anon_sym_PERCENT, - ACTIONS(6036), 1, + ACTIONS(6308), 1, anon_sym_STAR_STAR, - ACTIONS(6038), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6046), 1, + ACTIONS(6318), 1, anon_sym_QMARK_QMARK, - ACTIONS(6048), 1, + ACTIONS(6320), 1, sym__ternary_qmark, - ACTIONS(6515), 1, - anon_sym_COLON, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3279), 1, + STATE(3126), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6014), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6016), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6024), 2, + ACTIONS(6296), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6032), 2, + ACTIONS(6304), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6042), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6044), 2, + ACTIONS(6316), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6040), 3, + ACTIONS(6312), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104159] = 15, + [103956] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6267), 1, + ACTIONS(6382), 1, anon_sym_STAR, - ACTIONS(6517), 1, + ACTIONS(6484), 1, anon_sym_async, - STATE(3280), 1, + STATE(3127), 1, sym_comment, - STATE(4026), 1, + STATE(3839), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6519), 2, + ACTIONS(6486), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -309162,7 +296504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4372), 20, + ACTIONS(4376), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -309183,204 +296525,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104234] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4248), 1, - anon_sym_EQ, - ACTIONS(5675), 1, - anon_sym_LBRACK, - STATE(3281), 1, - sym_comment, - ACTIONS(5286), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5678), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4121), 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(4125), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [104297] = 34, + [104031] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5106), 1, + ACTIONS(5274), 1, anon_sym_RBRACK, - ACTIONS(6213), 1, + ACTIONS(6290), 1, anon_sym_AMP_AMP, - ACTIONS(6215), 1, + ACTIONS(6292), 1, anon_sym_PIPE_PIPE, - ACTIONS(6217), 1, + ACTIONS(6294), 1, anon_sym_GT_GT, - ACTIONS(6221), 1, + ACTIONS(6298), 1, anon_sym_AMP, - ACTIONS(6223), 1, + ACTIONS(6300), 1, anon_sym_CARET, - ACTIONS(6225), 1, + ACTIONS(6302), 1, anon_sym_PIPE, - ACTIONS(6229), 1, + ACTIONS(6306), 1, anon_sym_PERCENT, - ACTIONS(6231), 1, + ACTIONS(6308), 1, anon_sym_STAR_STAR, - ACTIONS(6233), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6241), 1, + ACTIONS(6318), 1, anon_sym_QMARK_QMARK, - ACTIONS(6243), 1, + ACTIONS(6320), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3282), 1, + STATE(3128), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6209), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6211), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6219), 2, + ACTIONS(6296), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6227), 2, + ACTIONS(6304), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6237), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6239), 2, + ACTIONS(6316), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6235), 3, + ACTIONS(6312), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104410] = 5, + [104144] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3283), 1, - sym_comment, - ACTIONS(5496), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5498), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4791), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4801), 1, anon_sym_LBRACK, + ACTIONS(4803), 1, anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(6308), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6469), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3129), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [104465] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6521), 1, - sym__automatic_semicolon, - STATE(3284), 1, - sym_comment, - ACTIONS(2307), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2175), 13, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -309389,478 +296651,451 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2179), 25, + ACTIONS(4944), 14, 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_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, - [104524] = 34, + [104227] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5100), 1, - anon_sym_RBRACK, - ACTIONS(6213), 1, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6066), 1, anon_sym_AMP_AMP, - ACTIONS(6215), 1, + ACTIONS(6068), 1, anon_sym_PIPE_PIPE, - ACTIONS(6217), 1, - anon_sym_GT_GT, - ACTIONS(6221), 1, + ACTIONS(6070), 1, anon_sym_AMP, - ACTIONS(6223), 1, + ACTIONS(6072), 1, anon_sym_CARET, - ACTIONS(6225), 1, + ACTIONS(6074), 1, anon_sym_PIPE, - ACTIONS(6229), 1, - anon_sym_PERCENT, - ACTIONS(6231), 1, - anon_sym_STAR_STAR, - ACTIONS(6233), 1, - anon_sym_LT, - ACTIONS(6241), 1, + ACTIONS(6076), 1, anon_sym_QMARK_QMARK, - ACTIONS(6243), 1, + ACTIONS(6078), 1, sym__ternary_qmark, - STATE(2372), 1, + ACTIONS(6488), 1, + anon_sym_COLON, + STATE(2220), 1, sym_type_arguments, - STATE(3285), 1, + STATE(3130), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6209), 2, + ACTIONS(5989), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6211), 2, + ACTIONS(5991), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6219), 2, + ACTIONS(5995), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6227), 2, + ACTIONS(5997), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6237), 2, + ACTIONS(6007), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6239), 2, + ACTIONS(6009), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6235), 3, + ACTIONS(6005), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104637] = 7, + [104340] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6523), 1, - sym__automatic_semicolon, - STATE(3286), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6294), 1, + anon_sym_GT_GT, + ACTIONS(6306), 1, + anon_sym_PERCENT, + ACTIONS(6308), 1, + anon_sym_STAR_STAR, + ACTIONS(6310), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3131), 1, sym_comment, - ACTIONS(2311), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2183), 13, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6296), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6304), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6312), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4946), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2187), 25, + ACTIONS(4944), 10, 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_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, - [104696] = 27, + [104431] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(6217), 1, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5270), 1, + anon_sym_RBRACK, + ACTIONS(6290), 1, + anon_sym_AMP_AMP, + ACTIONS(6292), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6294), 1, anon_sym_GT_GT, - ACTIONS(6221), 1, + ACTIONS(6298), 1, anon_sym_AMP, - ACTIONS(6223), 1, + ACTIONS(6300), 1, anon_sym_CARET, - ACTIONS(6229), 1, + ACTIONS(6302), 1, + anon_sym_PIPE, + ACTIONS(6306), 1, anon_sym_PERCENT, - ACTIONS(6231), 1, + ACTIONS(6308), 1, anon_sym_STAR_STAR, - ACTIONS(6233), 1, + ACTIONS(6310), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(6318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6320), 1, + sym__ternary_qmark, + STATE(2220), 1, sym_type_arguments, - STATE(3287), 1, + STATE(3132), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6209), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6211), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6219), 2, + ACTIONS(6296), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6227), 2, + ACTIONS(6304), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6237), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6239), 2, + ACTIONS(6316), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6235), 3, + ACTIONS(6312), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 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, - [104795] = 26, + [104544] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(6217), 1, + ACTIONS(4946), 1, + anon_sym_BANG, + ACTIONS(6290), 1, + anon_sym_AMP_AMP, + ACTIONS(6292), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6294), 1, anon_sym_GT_GT, - ACTIONS(6221), 1, + ACTIONS(6298), 1, anon_sym_AMP, - ACTIONS(6229), 1, + ACTIONS(6300), 1, + anon_sym_CARET, + ACTIONS(6302), 1, + anon_sym_PIPE, + ACTIONS(6306), 1, anon_sym_PERCENT, - ACTIONS(6231), 1, + ACTIONS(6308), 1, anon_sym_STAR_STAR, - ACTIONS(6233), 1, + ACTIONS(6310), 1, anon_sym_LT, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3288), 1, + STATE(3133), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6209), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6211), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6219), 2, + ACTIONS(6296), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6227), 2, + ACTIONS(6304), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6237), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6239), 2, + ACTIONS(6316), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6235), 3, + ACTIONS(6312), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 8, + ACTIONS(4944), 5, 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, - [104892] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(4941), 1, - anon_sym_COMMA, - ACTIONS(5230), 1, - anon_sym_RBRACE, - STATE(3289), 1, - sym_comment, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2431), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - 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, - [104959] = 25, + [104649] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(6217), 1, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(4976), 1, + anon_sym_RBRACK, + ACTIONS(6290), 1, + anon_sym_AMP_AMP, + ACTIONS(6292), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6294), 1, anon_sym_GT_GT, - ACTIONS(6229), 1, + ACTIONS(6298), 1, + anon_sym_AMP, + ACTIONS(6300), 1, + anon_sym_CARET, + ACTIONS(6302), 1, + anon_sym_PIPE, + ACTIONS(6306), 1, anon_sym_PERCENT, - ACTIONS(6231), 1, + ACTIONS(6308), 1, anon_sym_STAR_STAR, - ACTIONS(6233), 1, + ACTIONS(6310), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(6318), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6320), 1, + sym__ternary_qmark, + STATE(2220), 1, sym_type_arguments, - STATE(3290), 1, + STATE(3134), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6209), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6211), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6219), 2, + ACTIONS(6296), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6227), 2, + ACTIONS(6304), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6237), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6239), 2, + ACTIONS(6316), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6235), 3, + ACTIONS(6312), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 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, - [105054] = 14, + [104762] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6509), 1, + ACTIONS(5985), 1, anon_sym_STAR, - STATE(3291), 1, + ACTIONS(6113), 1, + anon_sym_RBRACE, + STATE(3135), 1, sym_comment, - STATE(4898), 1, + STATE(4808), 1, sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6525), 2, + ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(987), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(2900), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -309877,54 +297112,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105127] = 19, + [104845] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, + ACTIONS(6490), 1, anon_sym_STAR, - ACTIONS(5990), 1, - anon_sym_RBRACE, - STATE(3292), 1, + STATE(3136), 1, sym_comment, - STATE(4761), 1, + STATE(4843), 1, sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6492), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 8, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -309941,14 +297171,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105210] = 5, + [104918] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3293), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5993), 1, + anon_sym_GT_GT, + ACTIONS(5999), 1, + anon_sym_PERCENT, + ACTIONS(6001), 1, + anon_sym_STAR_STAR, + ACTIONS(6003), 1, + anon_sym_LT, + ACTIONS(6066), 1, + anon_sym_AMP_AMP, + ACTIONS(6068), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6070), 1, + anon_sym_AMP, + ACTIONS(6072), 1, + anon_sym_CARET, + ACTIONS(6074), 1, + anon_sym_PIPE, + ACTIONS(6076), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6078), 1, + sym__ternary_qmark, + ACTIONS(6494), 1, + anon_sym_COLON, + STATE(2220), 1, + sym_type_arguments, + STATE(3137), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5989), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5991), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5995), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5997), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6007), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6009), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6005), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [105031] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3138), 1, sym_comment, - ACTIONS(5590), 13, + ACTIONS(6496), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6498), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -309962,15 +297278,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5592), 28, - sym__automatic_semicolon, + ACTIONS(4141), 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, @@ -309991,141 +297302,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105265] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - ACTIONS(5990), 1, - anon_sym_RBRACE, - STATE(3294), 1, - sym_comment, - STATE(4761), 1, - sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [105346] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1053), 1, - anon_sym_RBRACE, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - STATE(3295), 1, - sym_comment, - STATE(4761), 1, - sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [105429] = 5, + [105090] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3296), 1, + STATE(3139), 1, sym_comment, - ACTIONS(5655), 13, + ACTIONS(2271), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2105), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -310139,15 +297329,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5657), 28, - sym__automatic_semicolon, + ACTIONS(2109), 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, @@ -310168,113 +297353,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105484] = 19, + [105147] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6229), 1, - anon_sym_PERCENT, - ACTIONS(6231), 1, - anon_sym_STAR_STAR, - ACTIONS(6491), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3297), 1, + STATE(3140), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6209), 2, + ACTIONS(5758), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6227), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 15, + ACTIONS(5760), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [105567] = 14, + [105202] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6527), 1, + ACTIONS(6043), 1, anon_sym_STAR, - STATE(3298), 1, + ACTIONS(6045), 1, + anon_sym_async, + STATE(3141), 1, sym_comment, - STATE(4843), 1, + STATE(3872), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6529), 2, + ACTIONS(6049), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, + ACTIONS(987), 8, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(4376), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -310291,47 +297463,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [105640] = 18, + [105277] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1053), 1, - anon_sym_RBRACE, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, + ACTIONS(6043), 1, anon_sym_STAR, - STATE(3299), 1, + STATE(3142), 1, sym_comment, - STATE(4761), 1, + STATE(4618), 1, sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6500), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 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(2900), 21, anon_sym_export, anon_sym_type, @@ -310340,389 +297508,28 @@ static const uint16_t ts_small_parse_table[] = { 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, - [105721] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3300), 1, - sym_comment, - ACTIONS(5606), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5608), 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, - [105776] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3301), 1, - sym_comment, - ACTIONS(5661), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5663), 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, - [105831] = 28, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, - anon_sym_AMP, - ACTIONS(6289), 1, - anon_sym_CARET, - ACTIONS(6291), 1, - anon_sym_PIPE, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_STAR_STAR, - ACTIONS(6299), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3302), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6275), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6277), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6303), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6305), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6301), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 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, - [105932] = 29, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6279), 1, - anon_sym_AMP_AMP, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, - anon_sym_AMP, - ACTIONS(6289), 1, - anon_sym_CARET, - ACTIONS(6291), 1, - anon_sym_PIPE, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_STAR_STAR, - ACTIONS(6299), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3303), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6275), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6277), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6303), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6305), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6301), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [106035] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3304), 1, - sym_comment, - ACTIONS(5604), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5214), 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, - [106090] = 19, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_STAR_STAR, - ACTIONS(6496), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3305), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6275), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6293), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4957), 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, - [106173] = 5, + 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, + [105350] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3306), 1, + STATE(3143), 1, sym_comment, - ACTIONS(5665), 13, + ACTIONS(5754), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -310736,7 +297543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5667), 28, + ACTIONS(5756), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -310765,161 +297572,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106228] = 29, + [105405] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(6213), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5272), 1, + anon_sym_of, + ACTIONS(6232), 1, anon_sym_AMP_AMP, - ACTIONS(6217), 1, - anon_sym_GT_GT, - ACTIONS(6221), 1, - anon_sym_AMP, - ACTIONS(6223), 1, - anon_sym_CARET, - ACTIONS(6225), 1, - anon_sym_PIPE, - ACTIONS(6229), 1, - anon_sym_PERCENT, - ACTIONS(6231), 1, - anon_sym_STAR_STAR, - ACTIONS(6233), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3307), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6209), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6211), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6219), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6227), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6237), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6239), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6235), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, + ACTIONS(6234), 1, anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [106331] = 28, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6217), 1, + ACTIONS(6236), 1, anon_sym_GT_GT, - ACTIONS(6221), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(6223), 1, + ACTIONS(6242), 1, anon_sym_CARET, - ACTIONS(6225), 1, + ACTIONS(6244), 1, anon_sym_PIPE, - ACTIONS(6229), 1, + ACTIONS(6248), 1, anon_sym_PERCENT, - ACTIONS(6231), 1, + ACTIONS(6250), 1, anon_sym_STAR_STAR, - ACTIONS(6233), 1, + ACTIONS(6252), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(6260), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6262), 1, + sym__ternary_qmark, + STATE(2220), 1, sym_type_arguments, - STATE(3308), 1, + STATE(3144), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6209), 2, + ACTIONS(6228), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6211), 2, + ACTIONS(6230), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6219), 2, + ACTIONS(6238), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6227), 2, + ACTIONS(6246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6237), 2, + ACTIONS(6256), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6239), 2, + ACTIONS(6258), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6235), 3, + ACTIONS(6254), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 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, - [106432] = 5, + [105518] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3309), 1, + STATE(3145), 1, sym_comment, - ACTIONS(2087), 13, + ACTIONS(6502), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6504), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -310933,15 +297679,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2091), 28, - sym__automatic_semicolon, + ACTIONS(4141), 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, @@ -310962,19 +297703,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106487] = 7, + [105577] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6531), 1, - sym__automatic_semicolon, - STATE(3310), 1, + STATE(3146), 1, sym_comment, - ACTIONS(2347), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2259), 13, + ACTIONS(6502), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6504), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -310988,12 +297731,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2263), 25, + ACTIONS(4141), 23, 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, @@ -311014,14 +297755,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106546] = 5, + [105636] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3311), 1, + STATE(3147), 1, sym_comment, - ACTIONS(2119), 13, + ACTIONS(6502), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6504), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -311035,15 +297783,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2123), 28, - sym__automatic_semicolon, + ACTIONS(4141), 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, @@ -311064,14 +297807,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106601] = 5, + [105695] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3312), 1, + STATE(3148), 1, sym_comment, - ACTIONS(5574), 13, + ACTIONS(5747), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -311085,7 +297828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5576), 28, + ACTIONS(5749), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -311114,14 +297857,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106656] = 5, + [105750] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3313), 1, + ACTIONS(6506), 1, + sym__automatic_semicolon, + STATE(3149), 1, sym_comment, - ACTIONS(2175), 13, + ACTIONS(2343), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2199), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -311135,14 +297883,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2179), 28, - sym__automatic_semicolon, + ACTIONS(2203), 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_DOT, @@ -311164,167 +297909,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106711] = 5, + [105809] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3314), 1, - sym_comment, - ACTIONS(2183), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2187), 28, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6011), 1, + anon_sym_STAR, + ACTIONS(6013), 1, + anon_sym_async, + STATE(3150), 1, + sym_comment, + STATE(3814), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6017), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [106766] = 34, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4376), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [105884] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4986), 1, + ACTIONS(5264), 1, anon_sym_RBRACK, - ACTIONS(6213), 1, + ACTIONS(6290), 1, anon_sym_AMP_AMP, - ACTIONS(6215), 1, + ACTIONS(6292), 1, anon_sym_PIPE_PIPE, - ACTIONS(6217), 1, + ACTIONS(6294), 1, anon_sym_GT_GT, - ACTIONS(6221), 1, + ACTIONS(6298), 1, anon_sym_AMP, - ACTIONS(6223), 1, + ACTIONS(6300), 1, anon_sym_CARET, - ACTIONS(6225), 1, + ACTIONS(6302), 1, anon_sym_PIPE, - ACTIONS(6229), 1, + ACTIONS(6306), 1, anon_sym_PERCENT, - ACTIONS(6231), 1, + ACTIONS(6308), 1, anon_sym_STAR_STAR, - ACTIONS(6233), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6241), 1, + ACTIONS(6318), 1, anon_sym_QMARK_QMARK, - ACTIONS(6243), 1, + ACTIONS(6320), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3315), 1, + STATE(3151), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6209), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6211), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6219), 2, + ACTIONS(6296), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6227), 2, + ACTIONS(6304), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6237), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6239), 2, + ACTIONS(6316), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6235), 3, + ACTIONS(6312), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [106879] = 16, + [105997] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6231), 1, - anon_sym_STAR_STAR, - ACTIONS(6491), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3316), 1, + STATE(3152), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 12, + ACTIONS(5740), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -311335,26 +298066,207 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 16, + ACTIONS(5742), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [106956] = 14, + [106052] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, + anon_sym_COMMA, + ACTIONS(5139), 1, + anon_sym_RBRACE, + STATE(3153), 1, + sym_comment, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2405), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [106119] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, + anon_sym_COMMA, + ACTIONS(5139), 1, + anon_sym_RBRACE, + STATE(3154), 1, + sym_comment, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2403), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [106186] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, + anon_sym_COMMA, + ACTIONS(5314), 1, + anon_sym_RBRACE, + STATE(3155), 1, + sym_comment, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2405), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [106253] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -311363,26 +298275,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6058), 1, + ACTIONS(6508), 1, anon_sym_STAR, - STATE(3317), 1, + STATE(3156), 1, sym_comment, - STATE(4811), 1, + STATE(4822), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6533), 2, + ACTIONS(6510), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -311413,93 +298325,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107029] = 34, + [106326] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, + anon_sym_COMMA, + ACTIONS(5317), 1, + anon_sym_RBRACE, + STATE(3157), 1, + sym_comment, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2405), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [106393] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, + anon_sym_COMMA, + ACTIONS(5317), 1, + anon_sym_RBRACE, + STATE(3158), 1, + sym_comment, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2403), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [106460] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5179), 1, - anon_sym_of, - ACTIONS(6279), 1, + ACTIONS(4985), 1, + anon_sym_RBRACK, + ACTIONS(6290), 1, anon_sym_AMP_AMP, - ACTIONS(6281), 1, + ACTIONS(6292), 1, anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, + ACTIONS(6294), 1, anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6298), 1, anon_sym_AMP, - ACTIONS(6289), 1, + ACTIONS(6300), 1, anon_sym_CARET, - ACTIONS(6291), 1, + ACTIONS(6302), 1, anon_sym_PIPE, - ACTIONS(6295), 1, + ACTIONS(6306), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6308), 1, anon_sym_STAR_STAR, - ACTIONS(6299), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6307), 1, + ACTIONS(6318), 1, anon_sym_QMARK_QMARK, - ACTIONS(6309), 1, + ACTIONS(6320), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3318), 1, + STATE(3159), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6275), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6277), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, + ACTIONS(6296), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(6304), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6303), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6305), 2, + ACTIONS(6316), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6301), 3, + ACTIONS(6312), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [107142] = 5, + [106573] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3319), 1, + STATE(3160), 1, sym_comment, - ACTIONS(5598), 13, + ACTIONS(5738), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -311513,7 +298537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5600), 28, + ACTIONS(4976), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -311542,256 +298566,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107197] = 25, + [106628] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4139), 1, + anon_sym_EQ, + ACTIONS(4253), 1, + anon_sym_COLON, + ACTIONS(5190), 1, + anon_sym_extends, + ACTIONS(5779), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_STAR_STAR, - ACTIONS(6299), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3320), 1, + STATE(3161), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6275), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6277), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6303), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6305), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6301), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 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, - [107292] = 26, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(5782), 2, anon_sym_AMP, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_STAR_STAR, - ACTIONS(6299), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3321), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, anon_sym_PIPE, - ACTIONS(6275), 2, + ACTIONS(6512), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4137), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6277), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6303), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6305), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6301), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 8, + ACTIONS(4141), 22, 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, - [107389] = 27, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, anon_sym_QMARK_DOT, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, - anon_sym_AMP, - ACTIONS(6289), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6295), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, anon_sym_STAR_STAR, - ACTIONS(6299), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3322), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6275), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6277), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6303), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6305), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6301), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [107488] = 18, + [106695] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_STAR_STAR, - ACTIONS(6496), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3323), 1, + STATE(3162), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6275), 2, + ACTIONS(2351), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2151), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -311800,136 +298642,264 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 15, + ACTIONS(2153), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [107569] = 34, + [106752] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(5154), 1, - anon_sym_of, - ACTIONS(6279), 1, + ACTIONS(5244), 1, + anon_sym_RBRACK, + ACTIONS(6290), 1, anon_sym_AMP_AMP, - ACTIONS(6281), 1, + ACTIONS(6292), 1, anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, + ACTIONS(6294), 1, anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(6298), 1, anon_sym_AMP, - ACTIONS(6289), 1, + ACTIONS(6300), 1, anon_sym_CARET, - ACTIONS(6291), 1, + ACTIONS(6302), 1, anon_sym_PIPE, - ACTIONS(6295), 1, + ACTIONS(6306), 1, anon_sym_PERCENT, - ACTIONS(6297), 1, + ACTIONS(6308), 1, anon_sym_STAR_STAR, - ACTIONS(6299), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6307), 1, + ACTIONS(6318), 1, anon_sym_QMARK_QMARK, - ACTIONS(6309), 1, + ACTIONS(6320), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3324), 1, + STATE(3163), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6275), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6277), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, + ACTIONS(6296), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6293), 2, + ACTIONS(6304), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6303), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6305), 2, + ACTIONS(6316), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6301), 3, + ACTIONS(6312), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [107682] = 7, + [106865] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3325), 1, - sym_comment, - ACTIONS(6535), 2, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5134), 1, anon_sym_EQ, + ACTIONS(5136), 1, + anon_sym_COMMA, + ACTIONS(5336), 1, + anon_sym_RBRACE, + STATE(3164), 1, + sym_comment, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(6537), 3, + anon_sym_PIPE_RBRACE, + ACTIONS(2405), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [106932] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5136), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5336), 1, + anon_sym_RBRACE, + STATE(3165), 1, + sym_comment, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(987), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2403), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [106999] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5322), 1, + anon_sym_EQ, + ACTIONS(5326), 1, + anon_sym_LBRACK, + ACTIONS(5904), 1, anon_sym_COLON, - ACTIONS(4121), 13, + STATE(3166), 1, + sym_comment, + ACTIONS(5329), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5003), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(5320), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(5324), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -311949,45 +298919,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107741] = 19, + [107064] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6297), 1, - anon_sym_STAR_STAR, - ACTIONS(6496), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3326), 1, + STATE(3167), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 11, + ACTIONS(5723), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -311996,57 +298937,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 14, + ACTIONS(5725), 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, - [107824] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [107119] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5286), 1, - anon_sym_extends, - STATE(3327), 1, + STATE(3168), 1, sym_comment, - ACTIONS(5678), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5675), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(4121), 11, + ACTIONS(5717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 24, + ACTIONS(5719), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -312066,158 +299019,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107885] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, + [107174] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(4939), 1, + ACTIONS(2071), 1, anon_sym_EQ, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - ACTIONS(6007), 1, - anon_sym_RBRACE, - STATE(3328), 1, - sym_comment, - STATE(4761), 1, - sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [107968] = 30, - ACTIONS(5), 1, - sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5343), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6279), 1, - anon_sym_AMP_AMP, - ACTIONS(6281), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6287), 1, + ACTIONS(5807), 1, + anon_sym_COLON, + STATE(3169), 1, + sym_comment, + ACTIONS(5346), 2, anon_sym_AMP, - ACTIONS(6289), 1, - anon_sym_CARET, - ACTIONS(6291), 1, anon_sym_PIPE, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_STAR_STAR, - ACTIONS(6299), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3329), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6275), 2, + ACTIONS(3570), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(2069), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6277), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6303), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6305), 2, + ACTIONS(2075), 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, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6301), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [108073] = 7, + [107239] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6539), 1, + ACTIONS(6516), 1, sym__automatic_semicolon, - STATE(3330), 1, + STATE(3170), 1, sym_comment, - ACTIONS(2267), 2, + ACTIONS(2365), 2, anon_sym_else, anon_sym_while, - ACTIONS(2215), 13, + ACTIONS(2085), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -312231,7 +299100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2219), 25, + ACTIONS(2089), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -312257,108 +299126,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [108132] = 23, + [107298] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6283), 1, - anon_sym_GT_GT, - ACTIONS(6295), 1, - anon_sym_PERCENT, - ACTIONS(6297), 1, - anon_sym_STAR_STAR, - ACTIONS(6299), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3331), 1, + ACTIONS(6518), 1, + sym__automatic_semicolon, + STATE(3171), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6275), 2, + ACTIONS(2357), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2257), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6277), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6285), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6293), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6301), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4955), 5, - anon_sym_BANG, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 10, + ACTIONS(2261), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [108223] = 9, + [107357] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4294), 1, - anon_sym_EQ, - ACTIONS(5286), 1, - anon_sym_extends, - STATE(3332), 1, + ACTIONS(6520), 1, + anon_sym_LPAREN, + ACTIONS(6523), 1, + anon_sym_COLON, + ACTIONS(6525), 1, + anon_sym_LT, + ACTIONS(6528), 1, + anon_sym_QMARK, + STATE(3172), 1, sym_comment, - ACTIONS(5675), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5678), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4121), 10, + ACTIONS(5576), 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_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 24, + ACTIONS(5578), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -312378,324 +299232,312 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [108286] = 34, + [107420] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(4970), 1, - anon_sym_RBRACK, - ACTIONS(6213), 1, + ACTIONS(4968), 1, + anon_sym_of, + ACTIONS(6232), 1, anon_sym_AMP_AMP, - ACTIONS(6215), 1, + ACTIONS(6234), 1, anon_sym_PIPE_PIPE, - ACTIONS(6217), 1, + ACTIONS(6236), 1, anon_sym_GT_GT, - ACTIONS(6221), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(6223), 1, + ACTIONS(6242), 1, anon_sym_CARET, - ACTIONS(6225), 1, + ACTIONS(6244), 1, anon_sym_PIPE, - ACTIONS(6229), 1, + ACTIONS(6248), 1, anon_sym_PERCENT, - ACTIONS(6231), 1, + ACTIONS(6250), 1, anon_sym_STAR_STAR, - ACTIONS(6233), 1, + ACTIONS(6252), 1, anon_sym_LT, - ACTIONS(6241), 1, + ACTIONS(6260), 1, anon_sym_QMARK_QMARK, - ACTIONS(6243), 1, + ACTIONS(6262), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3333), 1, + STATE(3173), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6209), 2, + ACTIONS(6228), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6211), 2, + ACTIONS(6230), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6219), 2, + ACTIONS(6238), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6227), 2, + ACTIONS(6246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6237), 2, + ACTIONS(6256), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6239), 2, + ACTIONS(6258), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6235), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [108399] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3334), 1, - sym_comment, - ACTIONS(5208), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(5210), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4121), 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(4125), 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, + ACTIONS(6254), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [108457] = 33, + [107533] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(6545), 1, + ACTIONS(5170), 1, + anon_sym_of, + ACTIONS(6232), 1, anon_sym_AMP_AMP, - ACTIONS(6547), 1, + ACTIONS(6234), 1, anon_sym_PIPE_PIPE, - ACTIONS(6549), 1, + ACTIONS(6236), 1, anon_sym_GT_GT, - ACTIONS(6553), 1, + ACTIONS(6240), 1, anon_sym_AMP, - ACTIONS(6555), 1, + ACTIONS(6242), 1, anon_sym_CARET, - ACTIONS(6557), 1, + ACTIONS(6244), 1, anon_sym_PIPE, - ACTIONS(6561), 1, + ACTIONS(6248), 1, anon_sym_PERCENT, - ACTIONS(6563), 1, + ACTIONS(6250), 1, anon_sym_STAR_STAR, - ACTIONS(6565), 1, + ACTIONS(6252), 1, anon_sym_LT, - ACTIONS(6573), 1, + ACTIONS(6260), 1, anon_sym_QMARK_QMARK, - ACTIONS(6575), 1, + ACTIONS(6262), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3335), 1, + STATE(3174), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6541), 2, + ACTIONS(6228), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6543), 2, + ACTIONS(6230), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6551), 2, + ACTIONS(6238), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6559), 2, + ACTIONS(6246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6569), 2, + ACTIONS(6256), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6571), 2, + ACTIONS(6258), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6567), 3, + ACTIONS(6254), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [108567] = 33, + [107646] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(5632), 1, + anon_sym_EQ, + ACTIONS(5809), 1, + anon_sym_of, + ACTIONS(6530), 1, + anon_sym_in, + STATE(3175), 1, + sym_comment, + ACTIONS(5630), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5634), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4811), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6545), 1, anon_sym_AMP_AMP, - ACTIONS(6547), 1, anon_sym_PIPE_PIPE, - ACTIONS(6549), 1, - anon_sym_GT_GT, - ACTIONS(6553), 1, - anon_sym_AMP, - ACTIONS(6555), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6557), 1, - anon_sym_PIPE, - ACTIONS(6561), 1, anon_sym_PERCENT, - ACTIONS(6563), 1, anon_sym_STAR_STAR, - ACTIONS(6565), 1, - anon_sym_LT, - ACTIONS(6573), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6575), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(3336), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6541), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6543), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [107707] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2071), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5807), 1, + anon_sym_of, + ACTIONS(6533), 1, anon_sym_in, + STATE(3176), 1, + sym_comment, + ACTIONS(2069), 12, + anon_sym_STAR, + anon_sym_BANG, anon_sym_GT, - ACTIONS(6551), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6559), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6569), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6571), 2, + ACTIONS(2075), 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, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6567), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [108677] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [107768] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3337), 1, + ACTIONS(5985), 1, + anon_sym_STAR, + ACTIONS(5987), 1, + anon_sym_RBRACE, + STATE(3177), 1, sym_comment, - STATE(4925), 1, + STATE(4808), 1, sym__property_name, + STATE(5868), 1, + aux_sym_object_repeat1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(987), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 23, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -312705,8 +299547,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -312719,50 +299559,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108745] = 12, + [107849] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3338), 1, + ACTIONS(5985), 1, + anon_sym_STAR, + ACTIONS(5987), 1, + anon_sym_RBRACE, + STATE(3178), 1, sym_comment, - STATE(4946), 1, + STATE(4808), 1, sym__property_name, + STATE(5868), 1, + aux_sym_object_repeat1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(987), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2900), 23, + ACTIONS(2900), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -312775,50 +299623,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108813] = 12, + [107932] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3339), 1, + ACTIONS(6011), 1, + anon_sym_STAR, + ACTIONS(6013), 1, + anon_sym_async, + STATE(3179), 1, sym_comment, - STATE(4948), 1, + STATE(3798), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + ACTIONS(6017), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 8, + 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(2900), 23, + ACTIONS(4376), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -312831,54 +299683,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108881] = 16, - ACTIONS(3), 1, + [108007] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5188), 1, + anon_sym_QMARK, + STATE(3180), 1, + sym_comment, + ACTIONS(5190), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5782), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5779), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4137), 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(4141), 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, + [108070] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(6536), 1, + sym__automatic_semicolon, + STATE(3181), 1, + sym_comment, + ACTIONS(2381), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2207), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2211), 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, + [108129] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(6538), 1, + sym__automatic_semicolon, + STATE(3182), 1, + sym_comment, + ACTIONS(2373), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2169), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2173), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(1894), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [108188] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5322), 1, + anon_sym_EQ, + ACTIONS(5326), 1, + anon_sym_LBRACK, + STATE(3183), 1, + sym_comment, + ACTIONS(5003), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5329), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5320), 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(5324), 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, + [108251] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6172), 1, - anon_sym_RBRACE, - STATE(3340), 1, + ACTIONS(6540), 1, + anon_sym_STAR, + ACTIONS(6542), 1, + anon_sym_async, + STATE(3184), 1, sym_comment, - STATE(4761), 1, + STATE(3799), 1, sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + ACTIONS(6544), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 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(2900), 23, + ACTIONS(4376), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -312891,7 +299955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [108957] = 12, + [108326] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -312900,21 +299964,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3341), 1, + ACTIONS(6540), 1, + anon_sym_STAR, + STATE(3185), 1, sym_comment, - STATE(4826), 1, + STATE(4651), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + ACTIONS(6546), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -312923,7 +299992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -312933,8 +300002,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -312947,96 +300014,160 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109025] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, + [108399] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(225), 1, + ACTIONS(2071), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(3570), 1, + anon_sym_extends, + STATE(3186), 1, + sym_comment, + ACTIONS(5343), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5346), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2069), 11, anon_sym_STAR, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2115), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5477), 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(2075), 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, + [108461] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(6581), 1, - anon_sym_async, - ACTIONS(6583), 1, - anon_sym_static, - ACTIONS(6585), 1, - anon_sym_readonly, - ACTIONS(6591), 1, - anon_sym_override, - STATE(3342), 1, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(6552), 1, + anon_sym_AMP_AMP, + ACTIONS(6554), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6556), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, + anon_sym_AMP, + ACTIONS(6562), 1, + anon_sym_CARET, + ACTIONS(6564), 1, + anon_sym_PIPE, + ACTIONS(6568), 1, + anon_sym_PERCENT, + ACTIONS(6570), 1, + anon_sym_STAR_STAR, + ACTIONS(6572), 1, + anon_sym_LT, + ACTIONS(6580), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6582), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(3187), 1, sym_comment, - STATE(3651), 1, - sym_accessibility_modifier, - STATE(3663), 1, - sym_override_modifier, - STATE(4669), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6579), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6587), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(6589), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6824), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(6577), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [109113] = 12, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6548), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6550), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6558), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6576), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6578), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6574), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [108571] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3343), 1, + STATE(3188), 1, sym_comment, - STATE(4436), 1, + STATE(4122), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -313045,7 +300176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4372), 23, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -313069,38 +300200,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109181] = 7, + [108639] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4123), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(6552), 1, + anon_sym_AMP_AMP, + ACTIONS(6554), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6556), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, + anon_sym_AMP, + ACTIONS(6562), 1, + anon_sym_CARET, + ACTIONS(6564), 1, + anon_sym_PIPE, + ACTIONS(6568), 1, + anon_sym_PERCENT, + ACTIONS(6570), 1, + anon_sym_STAR_STAR, + ACTIONS(6572), 1, + anon_sym_LT, + ACTIONS(6580), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6582), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(3189), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6548), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6550), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6558), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6576), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6578), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6574), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [108749] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4139), 1, anon_sym_EQ, - STATE(3344), 1, + ACTIONS(5190), 1, + anon_sym_extends, + STATE(3190), 1, sym_comment, - ACTIONS(4354), 3, - anon_sym_COMMA, + ACTIONS(5779), 2, anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4121), 13, + anon_sym_LBRACK, + ACTIONS(5782), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4137), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(4141), 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, @@ -313120,37 +300330,116 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109239] = 6, + [108811] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3345), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(6552), 1, + anon_sym_AMP_AMP, + ACTIONS(6554), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6556), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, + anon_sym_AMP, + ACTIONS(6562), 1, + anon_sym_CARET, + ACTIONS(6564), 1, + anon_sym_PIPE, + ACTIONS(6568), 1, + anon_sym_PERCENT, + ACTIONS(6570), 1, + anon_sym_STAR_STAR, + ACTIONS(6572), 1, + anon_sym_LT, + ACTIONS(6580), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6582), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(3191), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6548), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6550), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6558), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6576), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6578), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6574), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [108921] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5523), 1, + anon_sym_LBRACK, + STATE(3192), 1, sym_comment, - ACTIONS(5137), 2, + ACTIONS(5043), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(5306), 13, + ACTIONS(5526), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5519), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 25, + ACTIONS(5521), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -313170,84 +300459,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109295] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1022), 1, - anon_sym_RBRACE, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, - anon_sym_LBRACK, - STATE(3346), 1, - sym_comment, - STATE(4761), 1, - sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [109371] = 9, + [108981] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4123), 1, - anon_sym_EQ, - ACTIONS(5286), 1, + ACTIONS(5003), 1, anon_sym_extends, - STATE(3347), 1, + ACTIONS(5322), 1, + anon_sym_EQ, + STATE(3193), 1, sym_comment, - ACTIONS(5675), 2, + ACTIONS(5326), 2, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(5678), 2, + ACTIONS(5329), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4121), 11, + ACTIONS(5320), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313259,7 +300488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(5324), 23, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -313283,30 +300512,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [109433] = 12, + [109043] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3348), 1, + STATE(3194), 1, sym_comment, - STATE(4782), 1, + STATE(4068), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -313315,7 +300544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -313339,7 +300568,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109501] = 19, + [109111] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5773), 1, + anon_sym_LBRACK, + STATE(3195), 1, + sym_comment, + ACTIONS(4843), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5776), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4137), 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(4141), 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, + [109171] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -313348,53 +300629,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - STATE(3349), 1, + STATE(3196), 1, sym_comment, - STATE(3665), 1, - sym_override_modifier, - STATE(4761), 1, + STATE(4696), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6593), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 8, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 18, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -313402,7 +300676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109583] = 12, + [109239] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -313411,21 +300685,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3350), 1, + STATE(3197), 1, sym_comment, - STATE(4969), 1, + STATE(4701), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -313458,7 +300732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109651] = 12, + [109307] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -313467,29 +300741,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3351), 1, + STATE(3198), 1, sym_comment, - STATE(4898), 1, + STATE(4692), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, + ACTIONS(987), 8, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2900), 23, anon_sym_export, anon_sym_type, @@ -313514,7 +300788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109719] = 12, + [109375] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -313523,21 +300797,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3352), 1, + STATE(3199), 1, sym_comment, - STATE(4811), 1, + STATE(4726), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -313570,40 +300844,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109787] = 6, + [109443] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4514), 1, - sym__automatic_semicolon, - STATE(3353), 1, - sym_comment, - ACTIONS(1043), 10, - anon_sym_EQ, + ACTIONS(231), 1, anon_sym_COMMA, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(5987), 1, anon_sym_RBRACE, - anon_sym_BANG, + STATE(3200), 1, + sym_comment, + STATE(4808), 1, + sym__property_name, + STATE(5868), 1, + aux_sym_object_repeat1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2431), 29, + ACTIONS(2900), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -313620,35 +300904,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109843] = 12, + [109519] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(966), 1, + anon_sym_RBRACE, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3354), 1, + STATE(3201), 1, sym_comment, - STATE(4843), 1, + STATE(4808), 1, sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(987), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -313676,94 +300964,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109911] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5675), 1, - anon_sym_LBRACK, - STATE(3355), 1, - sym_comment, - ACTIONS(5286), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5678), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4121), 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(4125), 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, - [109971] = 16, + [109595] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1053), 1, - anon_sym_RBRACE, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3356), 1, + STATE(3202), 1, sym_comment, - STATE(4761), 1, + STATE(4720), 1, sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 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(2900), 23, anon_sym_export, anon_sym_type, @@ -313788,42 +301020,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110047] = 16, + [109663] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(6552), 1, + anon_sym_AMP_AMP, + ACTIONS(6554), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6556), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, + anon_sym_AMP, + ACTIONS(6562), 1, + anon_sym_CARET, + ACTIONS(6564), 1, + anon_sym_PIPE, + ACTIONS(6568), 1, + anon_sym_PERCENT, + ACTIONS(6570), 1, + anon_sym_STAR_STAR, + ACTIONS(6572), 1, + anon_sym_LT, + ACTIONS(6580), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6582), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(3203), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6548), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6550), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6558), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6576), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6578), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6574), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [109773] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5990), 1, - anon_sym_RBRACE, - STATE(3357), 1, + STATE(3204), 1, sym_comment, - STATE(4761), 1, + STATE(4779), 1, sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 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(2900), 23, anon_sym_export, anon_sym_type, @@ -313848,16 +301153,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110123] = 6, + [109841] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4294), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(6552), 1, + anon_sym_AMP_AMP, + ACTIONS(6554), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6556), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, + anon_sym_AMP, + ACTIONS(6562), 1, + anon_sym_CARET, + ACTIONS(6564), 1, + anon_sym_PIPE, + ACTIONS(6568), 1, + anon_sym_PERCENT, + ACTIONS(6570), 1, + anon_sym_STAR_STAR, + ACTIONS(6572), 1, + anon_sym_LT, + ACTIONS(6580), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6582), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(3205), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6548), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6550), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6558), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6576), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6578), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6574), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [109951] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5632), 1, anon_sym_EQ, - STATE(3358), 1, + ACTIONS(5809), 1, + anon_sym_COLON, + STATE(3206), 1, sym_comment, - ACTIONS(4121), 13, + ACTIONS(5657), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5630), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313871,11 +301258,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 26, + ACTIONS(5634), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -313897,97 +301282,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [110179] = 33, + [110011] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(6545), 1, - anon_sym_AMP_AMP, - ACTIONS(6547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6549), 1, - anon_sym_GT_GT, - ACTIONS(6553), 1, - anon_sym_AMP, - ACTIONS(6555), 1, - anon_sym_CARET, - ACTIONS(6557), 1, - anon_sym_PIPE, - ACTIONS(6561), 1, - anon_sym_PERCENT, - ACTIONS(6563), 1, - anon_sym_STAR_STAR, - ACTIONS(6565), 1, + ACTIONS(6584), 1, anon_sym_LT, - ACTIONS(6573), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6575), 1, - sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3359), 1, + STATE(3207), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6541), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6543), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6551), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6559), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6569), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6571), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6567), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [110289] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6093), 1, - sym_regex_flags, - STATE(3360), 1, - sym_comment, - ACTIONS(6089), 17, + ACTIONS(4937), 11, anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -313996,20 +301327,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(6091), 22, + ACTIONS(4939), 14, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -314022,62 +301343,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [110345] = 16, + anon_sym_instanceof, + [110091] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1051), 1, - anon_sym_RBRACE, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4939), 1, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5134), 1, anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3361), 1, + ACTIONS(5985), 1, + anon_sym_STAR, + STATE(3208), 1, sym_comment, - STATE(4761), 1, + STATE(3531), 1, + sym_override_modifier, + STATE(4808), 1, sym__property_name, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6587), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2900), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -314085,469 +301407,679 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110421] = 33, + [110173] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6545), 1, - anon_sym_AMP_AMP, - ACTIONS(6547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6549), 1, - anon_sym_GT_GT, - ACTIONS(6553), 1, - anon_sym_AMP, - ACTIONS(6555), 1, - anon_sym_CARET, - ACTIONS(6557), 1, - anon_sym_PIPE, - ACTIONS(6561), 1, - anon_sym_PERCENT, - ACTIONS(6563), 1, - anon_sym_STAR_STAR, - ACTIONS(6565), 1, + ACTIONS(6590), 1, anon_sym_LT, - ACTIONS(6573), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6575), 1, - sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3362), 1, + STATE(3209), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6541), 2, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5053), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6543), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6551), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6559), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6569), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6571), 2, + ACTIONS(5055), 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, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6567), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [110531] = 33, + anon_sym_satisfies, + [110247] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(6545), 1, + ACTIONS(6552), 1, anon_sym_AMP_AMP, - ACTIONS(6547), 1, + ACTIONS(6554), 1, anon_sym_PIPE_PIPE, - ACTIONS(6549), 1, + ACTIONS(6556), 1, anon_sym_GT_GT, - ACTIONS(6553), 1, + ACTIONS(6560), 1, anon_sym_AMP, - ACTIONS(6555), 1, + ACTIONS(6562), 1, anon_sym_CARET, - ACTIONS(6557), 1, + ACTIONS(6564), 1, anon_sym_PIPE, - ACTIONS(6561), 1, + ACTIONS(6568), 1, anon_sym_PERCENT, - ACTIONS(6563), 1, + ACTIONS(6570), 1, anon_sym_STAR_STAR, - ACTIONS(6565), 1, + ACTIONS(6572), 1, anon_sym_LT, - ACTIONS(6573), 1, + ACTIONS(6580), 1, anon_sym_QMARK_QMARK, - ACTIONS(6575), 1, + ACTIONS(6582), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3363), 1, + STATE(3210), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6541), 2, + ACTIONS(6548), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6543), 2, + ACTIONS(6550), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6551), 2, + ACTIONS(6558), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6559), 2, + ACTIONS(6566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6569), 2, + ACTIONS(6576), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6571), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6567), 3, + ACTIONS(6574), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [110641] = 33, + [110357] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(3211), 1, + sym_comment, + STATE(4810), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 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(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [110425] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(5367), 1, - anon_sym_BANG, - ACTIONS(5369), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(5375), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(5377), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(6545), 1, - anon_sym_AMP_AMP, - ACTIONS(6547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6549), 1, - anon_sym_GT_GT, - ACTIONS(6553), 1, - anon_sym_AMP, - ACTIONS(6555), 1, - anon_sym_CARET, - ACTIONS(6557), 1, - anon_sym_PIPE, - ACTIONS(6561), 1, - anon_sym_PERCENT, - ACTIONS(6563), 1, - anon_sym_STAR_STAR, - ACTIONS(6565), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6593), 1, anon_sym_LT, - ACTIONS(6573), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6575), 1, - sym__ternary_qmark, - STATE(3364), 1, - sym_comment, - STATE(3483), 1, + STATE(2220), 1, sym_type_arguments, - STATE(6093), 1, + STATE(3212), 1, + sym_comment, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6541), 2, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4978), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6543), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6551), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6559), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6569), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6571), 2, + ACTIONS(4980), 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, - STATE(3121), 2, - sym_template_string, - sym_arguments, - ACTIONS(6567), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [110751] = 33, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [110497] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(6545), 1, + ACTIONS(6552), 1, anon_sym_AMP_AMP, - ACTIONS(6547), 1, + ACTIONS(6554), 1, anon_sym_PIPE_PIPE, - ACTIONS(6549), 1, + ACTIONS(6556), 1, anon_sym_GT_GT, - ACTIONS(6553), 1, + ACTIONS(6560), 1, anon_sym_AMP, - ACTIONS(6555), 1, + ACTIONS(6562), 1, anon_sym_CARET, - ACTIONS(6557), 1, + ACTIONS(6564), 1, anon_sym_PIPE, - ACTIONS(6561), 1, + ACTIONS(6568), 1, anon_sym_PERCENT, - ACTIONS(6563), 1, + ACTIONS(6570), 1, anon_sym_STAR_STAR, - ACTIONS(6565), 1, + ACTIONS(6572), 1, anon_sym_LT, - ACTIONS(6573), 1, + ACTIONS(6580), 1, anon_sym_QMARK_QMARK, - ACTIONS(6575), 1, + ACTIONS(6582), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3365), 1, + STATE(3213), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6541), 2, + ACTIONS(6548), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6543), 2, + ACTIONS(6550), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6551), 2, + ACTIONS(6558), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6559), 2, + ACTIONS(6566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6569), 2, + ACTIONS(6576), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6571), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6567), 3, + ACTIONS(6574), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [110861] = 33, + [110607] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6545), 1, - anon_sym_AMP_AMP, - ACTIONS(6547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6549), 1, + ACTIONS(6556), 1, anon_sym_GT_GT, - ACTIONS(6553), 1, - anon_sym_AMP, - ACTIONS(6555), 1, - anon_sym_CARET, - ACTIONS(6557), 1, - anon_sym_PIPE, - ACTIONS(6561), 1, + ACTIONS(6568), 1, anon_sym_PERCENT, - ACTIONS(6563), 1, + ACTIONS(6570), 1, anon_sym_STAR_STAR, - ACTIONS(6565), 1, + ACTIONS(6572), 1, anon_sym_LT, - ACTIONS(6573), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6575), 1, - sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3366), 1, + STATE(3214), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6541), 2, + ACTIONS(6548), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6543), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6551), 2, + ACTIONS(6558), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6559), 2, + ACTIONS(6566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6569), 2, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 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(6571), 2, + ACTIONS(4944), 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, - STATE(2716), 2, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [110693] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6570), 1, + anon_sym_STAR_STAR, + ACTIONS(6596), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3215), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6567), 3, + ACTIONS(4946), 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(4944), 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, - [110971] = 33, + anon_sym_satisfies, + [110769] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4139), 1, + anon_sym_EQ, + STATE(3216), 1, + sym_comment, + ACTIONS(4366), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4137), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4141), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4811), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(4867), 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, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, + anon_sym_satisfies, + [110827] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4302), 1, + anon_sym_EQ, + ACTIONS(5779), 1, + anon_sym_LBRACK, + STATE(3217), 1, + sym_comment, + ACTIONS(5190), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5782), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4137), 10, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4887), 1, + 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(4141), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6545), 1, anon_sym_AMP_AMP, - ACTIONS(6547), 1, anon_sym_PIPE_PIPE, - ACTIONS(6549), 1, - anon_sym_GT_GT, - ACTIONS(6553), 1, - anon_sym_AMP, - ACTIONS(6555), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6557), 1, - anon_sym_PIPE, - ACTIONS(6561), 1, anon_sym_PERCENT, - ACTIONS(6563), 1, anon_sym_STAR_STAR, - ACTIONS(6565), 1, - anon_sym_LT, - ACTIONS(6573), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6575), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(3367), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6541), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [110889] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(225), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6543), 2, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2081), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(6603), 1, + anon_sym_async, + ACTIONS(6605), 1, + anon_sym_static, + ACTIONS(6607), 1, + anon_sym_readonly, + ACTIONS(6613), 1, + anon_sym_override, + STATE(3218), 1, + sym_comment, + STATE(3468), 1, + sym_accessibility_modifier, + STATE(3530), 1, + sym_override_modifier, + STATE(4504), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6601), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6609), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(6611), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6775), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(6599), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [110977] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4298), 1, + anon_sym_EQ, + STATE(3219), 1, + sym_comment, + ACTIONS(4137), 13, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6551), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6559), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6569), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6571), 2, + ACTIONS(4141), 26, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6567), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [111081] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [111033] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314556,21 +302088,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3368), 1, + STATE(3220), 1, sym_comment, - STATE(4920), 1, + STATE(4816), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -314603,38 +302135,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111149] = 16, + [111101] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(6212), 1, + sym_regex_flags, + STATE(3221), 1, + sym_comment, + ACTIONS(6208), 17, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_instanceof, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(6210), 22, + sym__ternary_qmark, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [111157] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, + ACTIONS(1041), 1, + anon_sym_RBRACE, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4939), 1, + ACTIONS(5134), 1, anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6007), 1, - anon_sym_RBRACE, - STATE(3369), 1, + STATE(3222), 1, sym_comment, - STATE(4761), 1, + STATE(4808), 1, sym__property_name, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(5868), 1, aux_sym_object_repeat1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -314663,72 +302245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111225] = 21, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6549), 1, - anon_sym_GT_GT, - ACTIONS(6561), 1, - anon_sym_PERCENT, - ACTIONS(6563), 1, - anon_sym_STAR_STAR, - ACTIONS(6565), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3370), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6541), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6551), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6559), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4957), 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, - [111311] = 12, + [111233] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314737,29 +302254,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3371), 1, + STATE(3223), 1, sym_comment, - STATE(4844), 1, + STATE(4801), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 8, + 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(2900), 23, anon_sym_export, anon_sym_type, @@ -314784,7 +302301,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111379] = 12, + [111301] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4946), 1, + anon_sym_BANG, + ACTIONS(6552), 1, + anon_sym_AMP_AMP, + ACTIONS(6556), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, + anon_sym_AMP, + ACTIONS(6562), 1, + anon_sym_CARET, + ACTIONS(6564), 1, + anon_sym_PIPE, + ACTIONS(6568), 1, + anon_sym_PERCENT, + ACTIONS(6570), 1, + anon_sym_STAR_STAR, + ACTIONS(6572), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3224), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6548), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6550), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6558), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6576), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6578), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6574), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [111403] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314793,21 +302383,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3372), 1, + STATE(3225), 1, sym_comment, - STATE(4862), 1, + STATE(4822), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -314840,51 +302430,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111447] = 15, + [111471] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6596), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3373), 1, + STATE(3226), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(5189), 12, + ACTIONS(5029), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(5031), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4137), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 16, + ACTIONS(4141), 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, @@ -314898,8 +302477,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [111521] = 20, + [111529] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314908,54 +302490,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5477), 1, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - ACTIONS(6430), 1, - anon_sym_COMMA, - ACTIONS(6599), 1, - anon_sym_RBRACE, - STATE(3374), 1, + STATE(3227), 1, sym_comment, - STATE(3665), 1, - sym_override_modifier, - STATE(4761), 1, + STATE(4799), 1, sym__property_name, - STATE(5814), 1, - aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 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(2900), 18, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -314963,670 +302537,594 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111605] = 33, + [111597] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(6545), 1, + ACTIONS(6552), 1, anon_sym_AMP_AMP, - ACTIONS(6547), 1, + ACTIONS(6554), 1, anon_sym_PIPE_PIPE, - ACTIONS(6549), 1, + ACTIONS(6556), 1, anon_sym_GT_GT, - ACTIONS(6553), 1, + ACTIONS(6560), 1, anon_sym_AMP, - ACTIONS(6555), 1, + ACTIONS(6562), 1, anon_sym_CARET, - ACTIONS(6557), 1, + ACTIONS(6564), 1, anon_sym_PIPE, - ACTIONS(6561), 1, + ACTIONS(6568), 1, anon_sym_PERCENT, - ACTIONS(6563), 1, + ACTIONS(6570), 1, anon_sym_STAR_STAR, - ACTIONS(6565), 1, + ACTIONS(6572), 1, anon_sym_LT, - ACTIONS(6573), 1, + ACTIONS(6580), 1, anon_sym_QMARK_QMARK, - ACTIONS(6575), 1, + ACTIONS(6582), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3375), 1, + STATE(3228), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6541), 2, + ACTIONS(6548), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6543), 2, + ACTIONS(6550), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6551), 2, + ACTIONS(6558), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6559), 2, + ACTIONS(6566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6569), 2, + ACTIONS(6576), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6571), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6567), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [111715] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4300), 1, - anon_sym_EQ, - ACTIONS(5675), 1, - anon_sym_LBRACK, - STATE(3376), 1, - sym_comment, - ACTIONS(5286), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5678), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4121), 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(4125), 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, + ACTIONS(6574), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [111777] = 18, + [111707] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6601), 1, + ACTIONS(6568), 1, + anon_sym_PERCENT, + ACTIONS(6570), 1, + anon_sym_STAR_STAR, + ACTIONS(6596), 1, anon_sym_LT, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3377), 1, + STATE(3229), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + ACTIONS(6548), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6566), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5156), 11, - anon_sym_STAR, + ACTIONS(4946), 8, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5158), 14, + ACTIONS(4944), 14, sym__ternary_qmark, + anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [111857] = 8, + anon_sym_satisfies, + [111789] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5669), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3378), 1, + STATE(3230), 1, sym_comment, - ACTIONS(4861), 2, + STATE(4618), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 8, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5672), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4121), 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(4125), 24, - 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, - [111917] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5419), 1, - anon_sym_EQ, - ACTIONS(5920), 1, anon_sym_COLON, - STATE(3379), 1, - sym_comment, - ACTIONS(5752), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5417), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5421), 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, - [111977] = 33, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111857] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6545), 1, - anon_sym_AMP_AMP, - ACTIONS(6547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6549), 1, + ACTIONS(4946), 1, + anon_sym_BANG, + ACTIONS(6556), 1, anon_sym_GT_GT, - ACTIONS(6553), 1, + ACTIONS(6560), 1, anon_sym_AMP, - ACTIONS(6555), 1, + ACTIONS(6562), 1, anon_sym_CARET, - ACTIONS(6557), 1, + ACTIONS(6564), 1, anon_sym_PIPE, - ACTIONS(6561), 1, + ACTIONS(6568), 1, anon_sym_PERCENT, - ACTIONS(6563), 1, + ACTIONS(6570), 1, anon_sym_STAR_STAR, - ACTIONS(6565), 1, + ACTIONS(6572), 1, anon_sym_LT, - ACTIONS(6573), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6575), 1, - sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3380), 1, + STATE(3231), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6541), 2, + ACTIONS(6548), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6543), 2, + ACTIONS(6550), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6551), 2, + ACTIONS(6558), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6559), 2, + ACTIONS(6566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6569), 2, + ACTIONS(6576), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6571), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6567), 3, + ACTIONS(6574), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [112087] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6563), 1, - anon_sym_STAR_STAR, - ACTIONS(6604), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3381), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 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(4957), 15, + ACTIONS(4944), 6, 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, - [112163] = 33, + [111957] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(3232), 1, + sym_comment, + STATE(4641), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 8, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(4811), 1, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112025] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, + STATE(3233), 1, + sym_comment, + STATE(4731), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 8, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6545), 1, - anon_sym_AMP_AMP, - ACTIONS(6547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6549), 1, - anon_sym_GT_GT, - ACTIONS(6553), 1, - anon_sym_AMP, - ACTIONS(6555), 1, - anon_sym_CARET, - ACTIONS(6557), 1, - anon_sym_PIPE, - ACTIONS(6561), 1, - anon_sym_PERCENT, - ACTIONS(6563), 1, - anon_sym_STAR_STAR, - ACTIONS(6565), 1, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(6573), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6575), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(3382), 1, + anon_sym_QMARK, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112093] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1043), 1, + anon_sym_RBRACE, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(3234), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6541), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6543), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6551), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6559), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6569), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6571), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6567), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [112273] = 33, + STATE(4808), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112169] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6545), 1, - anon_sym_AMP_AMP, - ACTIONS(6547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6549), 1, + ACTIONS(6556), 1, anon_sym_GT_GT, - ACTIONS(6553), 1, - anon_sym_AMP, - ACTIONS(6555), 1, - anon_sym_CARET, - ACTIONS(6557), 1, - anon_sym_PIPE, - ACTIONS(6561), 1, + ACTIONS(6568), 1, anon_sym_PERCENT, - ACTIONS(6563), 1, + ACTIONS(6570), 1, anon_sym_STAR_STAR, - ACTIONS(6565), 1, + ACTIONS(6572), 1, anon_sym_LT, - ACTIONS(6573), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6575), 1, - sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3383), 1, + STATE(3235), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6541), 2, + ACTIONS(6548), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6543), 2, + ACTIONS(6550), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6551), 2, + ACTIONS(6558), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6559), 2, + ACTIONS(6566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6569), 2, + ACTIONS(6576), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6571), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6567), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [112383] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6607), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3384), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5143), 12, - anon_sym_STAR, + ACTIONS(4946), 3, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5145), 18, + ACTIONS(6574), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4944), 7, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_satisfies, - [112455] = 9, + [112263] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(6121), 1, + anon_sym_RBRACE, + STATE(3236), 1, + sym_comment, + STATE(4808), 1, + sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112339] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4318), 1, + ACTIONS(4320), 1, anon_sym_EQ, - ACTIONS(5675), 1, + ACTIONS(5779), 1, anon_sym_LBRACK, - STATE(3385), 1, + STATE(3237), 1, sym_comment, - ACTIONS(5286), 2, + ACTIONS(5190), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(5678), 3, + ACTIONS(5782), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4121), 10, + ACTIONS(4137), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -315637,11 +303135,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(4141), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -315661,179 +303159,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [112517] = 28, + [112401] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(3238), 1, + sym_comment, + STATE(4662), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 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(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112469] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6549), 1, + ACTIONS(6556), 1, anon_sym_GT_GT, - ACTIONS(6553), 1, + ACTIONS(6560), 1, anon_sym_AMP, - ACTIONS(6555), 1, - anon_sym_CARET, - ACTIONS(6557), 1, - anon_sym_PIPE, - ACTIONS(6561), 1, + ACTIONS(6568), 1, anon_sym_PERCENT, - ACTIONS(6563), 1, + ACTIONS(6570), 1, anon_sym_STAR_STAR, - ACTIONS(6565), 1, + ACTIONS(6572), 1, anon_sym_LT, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3386), 1, + STATE(3239), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6541), 2, + ACTIONS(4946), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6548), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6543), 2, + ACTIONS(6550), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6551), 2, + ACTIONS(6558), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6559), 2, + ACTIONS(6566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6569), 2, + ACTIONS(6576), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6571), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6567), 3, + ACTIONS(6574), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 6, + ACTIONS(4944), 7, sym__ternary_qmark, anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [112617] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6545), 1, - anon_sym_AMP_AMP, - ACTIONS(6547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6549), 1, - anon_sym_GT_GT, - ACTIONS(6553), 1, - anon_sym_AMP, - ACTIONS(6555), 1, anon_sym_CARET, - ACTIONS(6557), 1, - anon_sym_PIPE, - ACTIONS(6561), 1, - anon_sym_PERCENT, - ACTIONS(6563), 1, - anon_sym_STAR_STAR, - ACTIONS(6565), 1, - anon_sym_LT, - ACTIONS(6573), 1, anon_sym_QMARK_QMARK, - ACTIONS(6575), 1, - sym__ternary_qmark, - STATE(2372), 1, - sym_type_arguments, - STATE(3387), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6541), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6543), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6551), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6559), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6569), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6571), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6567), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [112727] = 12, + anon_sym_satisfies, + [112565] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3388), 1, + STATE(3240), 1, sym_comment, - STATE(4227), 1, + STATE(4651), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -315842,7 +303317,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4372), 23, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -315866,199 +303341,232 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112795] = 29, + [112633] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6545), 1, - anon_sym_AMP_AMP, - ACTIONS(6549), 1, + ACTIONS(6556), 1, anon_sym_GT_GT, - ACTIONS(6553), 1, + ACTIONS(6560), 1, anon_sym_AMP, - ACTIONS(6555), 1, + ACTIONS(6562), 1, anon_sym_CARET, - ACTIONS(6557), 1, - anon_sym_PIPE, - ACTIONS(6561), 1, + ACTIONS(6568), 1, anon_sym_PERCENT, - ACTIONS(6563), 1, + ACTIONS(6570), 1, anon_sym_STAR_STAR, - ACTIONS(6565), 1, + ACTIONS(6572), 1, anon_sym_LT, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3389), 1, + STATE(3241), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6541), 2, + ACTIONS(4946), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6548), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6543), 2, + ACTIONS(6550), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6551), 2, + ACTIONS(6558), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6559), 2, + ACTIONS(6566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6569), 2, + ACTIONS(6576), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6571), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6567), 3, + ACTIONS(6574), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 5, + ACTIONS(4944), 6, sym__ternary_qmark, anon_sym_as, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [112897] = 19, + [112731] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(6561), 1, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(6552), 1, + anon_sym_AMP_AMP, + ACTIONS(6554), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6556), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, + anon_sym_AMP, + ACTIONS(6562), 1, + anon_sym_CARET, + ACTIONS(6564), 1, + anon_sym_PIPE, + ACTIONS(6568), 1, anon_sym_PERCENT, - ACTIONS(6563), 1, + ACTIONS(6570), 1, anon_sym_STAR_STAR, - ACTIONS(6604), 1, + ACTIONS(6572), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(6580), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6582), 1, + sym__ternary_qmark, + STATE(2220), 1, sym_type_arguments, - STATE(3390), 1, + STATE(3242), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6541), 2, + ACTIONS(6548), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6559), 2, + ACTIONS(6550), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6558), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6566), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2716), 2, + ACTIONS(6576), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6578), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 8, + ACTIONS(6574), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [112841] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(6552), 1, + anon_sym_AMP_AMP, + ACTIONS(6554), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6556), 1, anon_sym_GT_GT, + ACTIONS(6560), 1, anon_sym_AMP, + ACTIONS(6562), 1, + anon_sym_CARET, + ACTIONS(6564), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4957), 14, + ACTIONS(6568), 1, + anon_sym_PERCENT, + ACTIONS(6570), 1, + anon_sym_STAR_STAR, + ACTIONS(6572), 1, + anon_sym_LT, + ACTIONS(6580), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6582), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(2220), 1, + sym_type_arguments, + STATE(3243), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6548), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6550), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6558), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(6566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6576), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6578), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6574), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [112979] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(5477), 1, - anon_sym_LBRACK, - STATE(3391), 1, - sym_comment, - STATE(4870), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [113047] = 12, + [112951] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -316067,29 +303575,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3392), 1, + STATE(3244), 1, sym_comment, - STATE(4926), 1, + STATE(4784), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, + ACTIONS(987), 8, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2900), 23, anon_sym_export, anon_sym_type, @@ -316114,177 +303622,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113115] = 25, + [113019] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(5779), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6549), 1, - anon_sym_GT_GT, - ACTIONS(6561), 1, - anon_sym_PERCENT, - ACTIONS(6563), 1, - anon_sym_STAR_STAR, - ACTIONS(6565), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3393), 1, + STATE(3245), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6541), 2, + ACTIONS(5190), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5782), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4137), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6543), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(6551), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6559), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6569), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6571), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6567), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 7, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4141), 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, - [113209] = 26, + [113079] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(6549), 1, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(6552), 1, + anon_sym_AMP_AMP, + ACTIONS(6554), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6556), 1, anon_sym_GT_GT, - ACTIONS(6553), 1, + ACTIONS(6560), 1, anon_sym_AMP, - ACTIONS(6561), 1, + ACTIONS(6562), 1, + anon_sym_CARET, + ACTIONS(6564), 1, + anon_sym_PIPE, + ACTIONS(6568), 1, anon_sym_PERCENT, - ACTIONS(6563), 1, + ACTIONS(6570), 1, anon_sym_STAR_STAR, - ACTIONS(6565), 1, + ACTIONS(6572), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(6580), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6582), 1, + sym__ternary_qmark, + STATE(2220), 1, sym_type_arguments, - STATE(3394), 1, + STATE(3246), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6541), 2, + ACTIONS(6548), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6543), 2, + ACTIONS(6550), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6551), 2, + ACTIONS(6558), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6559), 2, + ACTIONS(6566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6569), 2, + ACTIONS(6576), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6571), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6567), 3, + ACTIONS(6574), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 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, - [113305] = 12, + [113189] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3395), 1, + ACTIONS(6195), 1, + anon_sym_RBRACE, + STATE(3247), 1, sym_comment, - STATE(4914), 1, + STATE(4808), 1, sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(987), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, ACTIONS(2900), 23, anon_sym_export, anon_sym_type, @@ -316309,78 +303811,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113373] = 27, + [113265] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(6549), 1, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(6552), 1, + anon_sym_AMP_AMP, + ACTIONS(6554), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6556), 1, anon_sym_GT_GT, - ACTIONS(6553), 1, + ACTIONS(6560), 1, anon_sym_AMP, - ACTIONS(6555), 1, + ACTIONS(6562), 1, anon_sym_CARET, - ACTIONS(6561), 1, + ACTIONS(6564), 1, + anon_sym_PIPE, + ACTIONS(6568), 1, anon_sym_PERCENT, - ACTIONS(6563), 1, + ACTIONS(6570), 1, anon_sym_STAR_STAR, - ACTIONS(6565), 1, + ACTIONS(6572), 1, anon_sym_LT, - STATE(2372), 1, + ACTIONS(6580), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6582), 1, + sym__ternary_qmark, + STATE(2220), 1, sym_type_arguments, - STATE(3396), 1, + STATE(3248), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4955), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6541), 2, + ACTIONS(6548), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6543), 2, + ACTIONS(6550), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6551), 2, + ACTIONS(6558), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6559), 2, + ACTIONS(6566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6569), 2, + ACTIONS(6576), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6571), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6567), 3, + ACTIONS(6574), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4957), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [113471] = 12, + [113375] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -316389,29 +303897,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3397), 1, + STATE(3249), 1, sym_comment, - STATE(4892), 1, + STATE(4821), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 8, + 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(2900), 23, anon_sym_export, anon_sym_type, @@ -316436,94 +303944,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113539] = 8, + [113443] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5568), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3398), 1, - sym_comment, - ACTIONS(5206), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5571), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5564), 10, + ACTIONS(5985), 1, 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(5566), 24, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(6362), 1, + anon_sym_COMMA, + ACTIONS(6615), 1, + anon_sym_RBRACE, + STATE(3250), 1, + sym_comment, + STATE(3531), 1, + sym_override_modifier, + STATE(4808), 1, + sym__property_name, + STATE(5670), 1, + aux_sym_object_repeat1, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 4, 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, - [113599] = 16, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113527] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6009), 1, - anon_sym_RBRACE, - STATE(3399), 1, + STATE(3251), 1, sym_comment, - STATE(4761), 1, + STATE(4843), 1, sym__property_name, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 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(2900), 23, anon_sym_export, anon_sym_type, @@ -316548,7 +304064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113675] = 12, + [113595] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -316557,21 +304073,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3400), 1, + STATE(3252), 1, sym_comment, - STATE(4805), 1, + STATE(4715), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -316604,84 +304120,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113743] = 33, + [113663] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(6545), 1, + ACTIONS(6552), 1, anon_sym_AMP_AMP, - ACTIONS(6547), 1, + ACTIONS(6554), 1, anon_sym_PIPE_PIPE, - ACTIONS(6549), 1, + ACTIONS(6556), 1, anon_sym_GT_GT, - ACTIONS(6553), 1, + ACTIONS(6560), 1, anon_sym_AMP, - ACTIONS(6555), 1, + ACTIONS(6562), 1, anon_sym_CARET, - ACTIONS(6557), 1, + ACTIONS(6564), 1, anon_sym_PIPE, - ACTIONS(6561), 1, + ACTIONS(6568), 1, anon_sym_PERCENT, - ACTIONS(6563), 1, + ACTIONS(6570), 1, anon_sym_STAR_STAR, - ACTIONS(6565), 1, + ACTIONS(6572), 1, anon_sym_LT, - ACTIONS(6573), 1, + ACTIONS(6580), 1, anon_sym_QMARK_QMARK, - ACTIONS(6575), 1, + ACTIONS(6582), 1, sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3401), 1, + STATE(3253), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6548), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6550), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6558), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6576), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6578), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6574), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [113773] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(6552), 1, + anon_sym_AMP_AMP, + ACTIONS(6554), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6556), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, + anon_sym_AMP, + ACTIONS(6562), 1, + anon_sym_CARET, + ACTIONS(6564), 1, + anon_sym_PIPE, + ACTIONS(6568), 1, + anon_sym_PERCENT, + ACTIONS(6570), 1, + anon_sym_STAR_STAR, + ACTIONS(6572), 1, + anon_sym_LT, + ACTIONS(6580), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6582), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(3254), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6548), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6550), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6558), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6576), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6578), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6574), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [113883] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(5392), 1, + anon_sym_BANG, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5398), 1, + anon_sym_LBRACK, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(6552), 1, + anon_sym_AMP_AMP, + ACTIONS(6554), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6556), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, + anon_sym_AMP, + ACTIONS(6562), 1, + anon_sym_CARET, + ACTIONS(6564), 1, + anon_sym_PIPE, + ACTIONS(6568), 1, + anon_sym_PERCENT, + ACTIONS(6570), 1, + anon_sym_STAR_STAR, + ACTIONS(6572), 1, + anon_sym_LT, + ACTIONS(6580), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6582), 1, + sym__ternary_qmark, + STATE(3255), 1, + sym_comment, + STATE(3314), 1, + sym_type_arguments, + STATE(5804), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6548), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6550), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6558), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6566), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6576), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6578), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3075), 2, + sym_template_string, + sym_arguments, + ACTIONS(6574), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [113993] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, + anon_sym_LBRACK, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4889), 1, + anon_sym_as, + ACTIONS(4893), 1, + anon_sym_BANG, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4933), 1, + anon_sym_satisfies, + ACTIONS(6552), 1, + anon_sym_AMP_AMP, + ACTIONS(6554), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6556), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, + anon_sym_AMP, + ACTIONS(6562), 1, + anon_sym_CARET, + ACTIONS(6564), 1, + anon_sym_PIPE, + ACTIONS(6568), 1, + anon_sym_PERCENT, + ACTIONS(6570), 1, + anon_sym_STAR_STAR, + ACTIONS(6572), 1, + anon_sym_LT, + ACTIONS(6580), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6582), 1, + sym__ternary_qmark, + STATE(2220), 1, + sym_type_arguments, + STATE(3256), 1, + sym_comment, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6541), 2, + ACTIONS(6548), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6543), 2, + ACTIONS(6550), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6551), 2, + ACTIONS(6558), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6559), 2, + ACTIONS(6566), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6569), 2, + ACTIONS(6576), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6571), 2, + ACTIONS(6578), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6567), 3, + ACTIONS(6574), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [113853] = 12, + [114103] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -316690,29 +304437,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3402), 1, + STATE(3257), 1, sym_comment, - STATE(4806), 1, + STATE(4820), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 8, + 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(2900), 23, anon_sym_export, anon_sym_type, @@ -316737,280 +304484,346 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113921] = 9, + [114171] = 30, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3432), 1, - anon_sym_extends, - STATE(3403), 1, - sym_comment, - ACTIONS(5259), 2, - anon_sym_RBRACE, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(5262), 2, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(4946), 1, + anon_sym_BANG, + ACTIONS(6552), 1, + anon_sym_AMP_AMP, + ACTIONS(6554), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6556), 1, + anon_sym_GT_GT, + ACTIONS(6560), 1, anon_sym_AMP, + ACTIONS(6562), 1, + anon_sym_CARET, + ACTIONS(6564), 1, anon_sym_PIPE, - ACTIONS(2069), 11, + ACTIONS(6568), 1, + anon_sym_PERCENT, + ACTIONS(6570), 1, + anon_sym_STAR_STAR, + ACTIONS(6572), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3258), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6548), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6550), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6558), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6566), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6576), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 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, + ACTIONS(6578), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6574), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(4944), 4, + sym__ternary_qmark, + anon_sym_as, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [113983] = 9, + [114275] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5239), 1, - anon_sym_extends, - ACTIONS(5270), 1, - anon_sym_EQ, - STATE(3404), 1, - sym_comment, - ACTIONS(5274), 2, - anon_sym_RBRACE, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(5277), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5268), 11, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6556), 1, + anon_sym_GT_GT, + ACTIONS(6568), 1, + anon_sym_PERCENT, + ACTIONS(6570), 1, + anon_sym_STAR_STAR, + ACTIONS(6572), 1, + anon_sym_LT, + STATE(2220), 1, + sym_type_arguments, + STATE(3259), 1, + sym_comment, + STATE(6178), 1, + sym_optional_chain, + ACTIONS(4931), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6548), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6550), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6558), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6566), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6574), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4946), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5272), 23, + ACTIONS(4944), 9, 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, - [114045] = 33, + [114365] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, + ACTIONS(4889), 1, anon_sym_as, - ACTIONS(4883), 1, + ACTIONS(4893), 1, anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4933), 1, anon_sym_satisfies, - ACTIONS(6545), 1, - anon_sym_AMP_AMP, - ACTIONS(6547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6549), 1, - anon_sym_GT_GT, - ACTIONS(6553), 1, - anon_sym_AMP, - ACTIONS(6555), 1, - anon_sym_CARET, - ACTIONS(6557), 1, - anon_sym_PIPE, - ACTIONS(6561), 1, - anon_sym_PERCENT, - ACTIONS(6563), 1, + ACTIONS(6570), 1, anon_sym_STAR_STAR, - ACTIONS(6565), 1, + ACTIONS(6596), 1, anon_sym_LT, - ACTIONS(6573), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6575), 1, - sym__ternary_qmark, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3405), 1, + STATE(3260), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6541), 2, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4946), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6543), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6551), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6559), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6569), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6571), 2, + ACTIONS(4944), 13, + sym__ternary_qmark, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6567), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [114155] = 18, + [114447] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + STATE(3261), 1, + sym_comment, + ACTIONS(5178), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5172), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5174), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4811), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4813), 1, anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, anon_sym_QMARK_DOT, - ACTIONS(6561), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6563), 1, anon_sym_STAR_STAR, - ACTIONS(6604), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3406), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6541), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [114503] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4841), 1, + anon_sym_QMARK, + ACTIONS(4843), 1, + anon_sym_extends, + STATE(3262), 1, + sym_comment, + ACTIONS(5776), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5773), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4137), 11, anon_sym_STAR, - anon_sym_SLASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(4955), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 14, + ACTIONS(4141), 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, - [114235] = 12, + [114565] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, ACTIONS(1894), 1, anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3407), 1, + ACTIONS(6113), 1, + anon_sym_RBRACE, + STATE(3263), 1, sym_comment, - STATE(4765), 1, + STATE(4808), 1, sym__property_name, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(987), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -317038,45 +304851,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114303] = 19, + [114641] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4811), 1, + ACTIONS(4801), 1, anon_sym_LBRACK, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4879), 1, - anon_sym_as, - ACTIONS(4883), 1, - anon_sym_BANG, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_satisfies, - ACTIONS(6563), 1, + ACTIONS(6568), 1, + anon_sym_PERCENT, + ACTIONS(6570), 1, anon_sym_STAR_STAR, - ACTIONS(6604), 1, + ACTIONS(6596), 1, anon_sym_LT, - STATE(2372), 1, + STATE(2220), 1, sym_type_arguments, - STATE(3408), 1, + STATE(3264), 1, sym_comment, - STATE(6354), 1, + STATE(6178), 1, sym_optional_chain, - ACTIONS(4919), 2, + ACTIONS(4931), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2716), 2, + ACTIONS(6548), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4955), 11, - anon_sym_STAR, + ACTIONS(4946), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -317084,63 +304896,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 13, + ACTIONS(4944), 14, sym__ternary_qmark, + anon_sym_as, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [114385] = 12, + anon_sym_satisfies, + [114721] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(5477), 1, - anon_sym_LBRACK, - STATE(3409), 1, + STATE(3265), 1, sym_comment, - STATE(4774), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 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, - ACTIONS(2900), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2405), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -317157,60 +304963,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114453] = 9, + [114777] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4859), 1, - anon_sym_QMARK, - ACTIONS(4861), 1, - anon_sym_extends, - STATE(3410), 1, + ACTIONS(4518), 1, + sym__automatic_semicolon, + STATE(3266), 1, sym_comment, - ACTIONS(5672), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5669), 3, + ACTIONS(987), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4121), 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(4125), 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, - [114515] = 12, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2403), 30, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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_abstract, + [114832] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -317219,37 +305021,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3411), 1, + ACTIONS(5985), 1, + anon_sym_STAR, + ACTIONS(6362), 1, + anon_sym_COMMA, + ACTIONS(6615), 1, + anon_sym_RBRACE, + STATE(3267), 1, sym_comment, - STATE(4838), 1, + STATE(4808), 1, sym__property_name, + STATE(5670), 1, + aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(987), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114907] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5134), 1, anon_sym_EQ, + STATE(3268), 1, + sym_comment, + ACTIONS(5900), 2, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, + ACTIONS(987), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2405), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -317266,159 +305122,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114583] = 30, + [114966] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5134), 1, + anon_sym_EQ, + STATE(3269), 1, + sym_comment, + ACTIONS(5900), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(987), 6, anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6545), 1, - anon_sym_AMP_AMP, - ACTIONS(6547), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6549), 1, - anon_sym_GT_GT, - ACTIONS(6553), 1, - anon_sym_AMP, - ACTIONS(6555), 1, - anon_sym_CARET, - ACTIONS(6557), 1, - anon_sym_PIPE, - ACTIONS(6561), 1, - anon_sym_PERCENT, - ACTIONS(6563), 1, - anon_sym_STAR_STAR, - ACTIONS(6565), 1, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3412), 1, - sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6541), 2, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2403), 29, + anon_sym_export, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6543), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6551), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6559), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6569), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6571), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6567), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4957), 4, - sym__ternary_qmark, - anon_sym_as, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [114687] = 23, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [115025] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4811), 1, - anon_sym_LBRACK, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6549), 1, - anon_sym_GT_GT, - ACTIONS(6561), 1, - anon_sym_PERCENT, - ACTIONS(6563), 1, - anon_sym_STAR_STAR, - ACTIONS(6565), 1, - anon_sym_LT, - STATE(2372), 1, - sym_type_arguments, - STATE(3413), 1, + STATE(3270), 1, sym_comment, - STATE(6354), 1, - sym_optional_chain, - ACTIONS(4919), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6541), 2, + ACTIONS(2211), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6617), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6543), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6551), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6559), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2716), 2, - sym_template_string, - sym_arguments, - ACTIONS(6567), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4955), 5, - anon_sym_BANG, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4957), 9, + ACTIONS(6620), 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, - [114777] = 6, + [115080] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3414), 1, - sym_comment, - ACTIONS(2141), 3, + ACTIONS(5322), 1, + anon_sym_EQ, + ACTIONS(5744), 1, + anon_sym_RBRACK, + ACTIONS(5904), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6610), 13, + STATE(3271), 1, + sym_comment, + ACTIONS(5320), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -317432,7 +305249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6613), 23, + ACTIONS(5324), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -317456,20 +305273,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [114832] = 8, + [115139] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4255), 1, - anon_sym_COMMA, - ACTIONS(4259), 1, - anon_sym_RBRACK, - ACTIONS(4361), 1, + ACTIONS(4235), 1, anon_sym_EQ, - STATE(3415), 1, + STATE(3272), 1, sym_comment, - ACTIONS(4121), 13, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -317483,10 +305296,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(4141), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -317507,18 +305322,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [114891] = 6, + [115194] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3416), 1, - sym_comment, - ACTIONS(2179), 3, + ACTIONS(5632), 1, + anon_sym_EQ, + ACTIONS(5657), 1, + anon_sym_RBRACK, + ACTIONS(5809), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6616), 13, + STATE(3273), 1, + sym_comment, + ACTIONS(5630), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -317532,7 +305349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6619), 23, + ACTIONS(5634), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -317556,7 +305373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [114946] = 18, + [115253] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -317567,38 +305384,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2902), 1, anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, + ACTIONS(5985), 1, anon_sym_STAR, - STATE(3417), 1, + ACTIONS(6362), 1, + anon_sym_COMMA, + ACTIONS(6615), 1, + anon_sym_RBRACE, + STATE(3274), 1, sym_comment, - STATE(3665), 1, - sym_override_modifier, - STATE(4761), 1, + STATE(4808), 1, sym__property_name, + STATE(5670), 1, + aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - ACTIONS(6622), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 18, + ACTIONS(2900), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -317606,68 +305420,12 @@ static const uint16_t ts_small_parse_table[] = { 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, - [115025] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6624), 1, anon_sym_readonly, - STATE(3418), 1, - sym_comment, - STATE(3689), 1, - sym_override_modifier, - STATE(4282), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4372), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -317675,69 +305433,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115098] = 8, + [115330] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2071), 1, + anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5270), 1, - anon_sym_EQ, - ACTIONS(5781), 1, + ACTIONS(5680), 1, anon_sym_RBRACK, - ACTIONS(5926), 1, + ACTIONS(5807), 1, anon_sym_COMMA, - STATE(3419), 1, - sym_comment, - ACTIONS(5268), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5272), 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, - [115157] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3420), 1, + STATE(3275), 1, sym_comment, - ACTIONS(2187), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6626), 13, + ACTIONS(2069), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -317751,7 +305460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6629), 23, + ACTIONS(2075), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -317775,39 +305484,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115212] = 13, + [115389] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6632), 1, - anon_sym_abstract, - STATE(3421), 1, + ACTIONS(6623), 1, + anon_sym_readonly, + STATE(3276), 1, sym_comment, - STATE(4263), 1, + STATE(3574), 1, + sym_override_modifier, + STATE(4143), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(987), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4372), 23, + ACTIONS(4376), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -317816,14 +305529,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -317831,18 +305542,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115281] = 6, + [115462] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3422), 1, + STATE(3277), 1, sym_comment, - ACTIONS(5498), 3, + ACTIONS(2173), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6634), 13, + ACTIONS(6625), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -317856,7 +305567,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6637), 23, + ACTIONS(6628), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -317880,90 +305591,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115336] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4939), 1, - anon_sym_EQ, - STATE(3423), 1, - sym_comment, - ACTIONS(5910), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2419), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - 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, - [115395] = 13, + [115517] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6640), 1, + ACTIONS(6631), 1, anon_sym_abstract, - STATE(3424), 1, + STATE(3278), 1, sym_comment, - STATE(4378), 1, + STATE(4164), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(987), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4372), 23, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -317987,57 +305647,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115464] = 15, + [115586] = 25, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(4595), 1, + anon_sym_AT, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6642), 1, + ACTIONS(6633), 1, + anon_sym_STAR, + ACTIONS(6635), 1, + anon_sym_async, + ACTIONS(6637), 1, + anon_sym_static, + ACTIONS(6639), 1, anon_sym_readonly, - STATE(3425), 1, + ACTIONS(6643), 1, + anon_sym_declare, + ACTIONS(6645), 1, + anon_sym_abstract, + STATE(3279), 1, sym_comment, - STATE(3720), 1, + STATE(3400), 1, + sym_method_definition, + STATE(3436), 1, + sym_accessibility_modifier, + STATE(3496), 1, + aux_sym_export_statement_repeat1, + STATE(3521), 1, sym_override_modifier, - STATE(4372), 1, + STATE(3557), 1, + sym_decorator, + STATE(3807), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + ACTIONS(6641), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4372), 21, + ACTIONS(4605), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(4376), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, @@ -318045,18 +305715,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115537] = 6, + [115679] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3426), 1, + STATE(3280), 1, sym_comment, - ACTIONS(5643), 3, + ACTIONS(5574), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6644), 13, + ACTIONS(6647), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -318070,7 +305740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6647), 23, + ACTIONS(6650), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -318094,20 +305764,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115592] = 8, + [115734] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5745), 1, - anon_sym_RBRACK, - ACTIONS(5914), 1, - anon_sym_COMMA, - STATE(3427), 1, + STATE(3281), 1, sym_comment, - ACTIONS(2069), 13, + ACTIONS(5725), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6653), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -318121,7 +305789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 23, + ACTIONS(6656), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -318145,18 +305813,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115651] = 6, + [115789] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3428), 1, + STATE(3282), 1, sym_comment, - ACTIONS(2263), 3, + ACTIONS(2195), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6650), 13, + ACTIONS(6659), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -318170,7 +305838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6653), 23, + ACTIONS(6662), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -318194,17 +305862,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115706] = 6, + [115844] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3429), 1, + STATE(3283), 1, sym_comment, - ACTIONS(5137), 2, + ACTIONS(5566), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5306), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6665), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -318218,12 +305887,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 24, + ACTIONS(6668), 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_AMP_AMP, @@ -318243,50 +305911,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115761] = 8, + [115899] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4514), 1, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4939), 1, - anon_sym_EQ, - STATE(3430), 1, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6671), 1, + anon_sym_readonly, + STATE(3284), 1, sym_comment, - ACTIONS(5910), 2, + STATE(3561), 1, + sym_override_modifier, + STATE(4210), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1043), 6, - anon_sym_LPAREN, + anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2431), 29, + ACTIONS(4376), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -318294,38 +305969,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115820] = 8, + [115972] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5669), 1, - anon_sym_LBRACK, - STATE(3431), 1, + ACTIONS(4294), 1, + anon_sym_EQ, + STATE(3285), 1, sym_comment, - ACTIONS(5672), 2, + ACTIONS(4137), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4861), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4141), 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, + [116027] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(6224), 1, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4121), 11, + STATE(3286), 1, + sym_comment, + ACTIONS(5172), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 22, + ACTIONS(5174), 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, @@ -318345,99 +306067,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115879] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, + [116082] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4843), 1, + anon_sym_extends, + STATE(3287), 1, + sym_comment, + ACTIONS(5773), 2, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(6656), 1, - anon_sym_abstract, - STATE(3432), 1, + ACTIONS(5776), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4137), 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(4141), 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, + [116141] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3288), 1, sym_comment, - STATE(4410), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_EQ, + ACTIONS(5610), 3, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4372), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [115948] = 15, + ACTIONS(6673), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6676), 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, + [116196] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6658), 1, + ACTIONS(6679), 1, anon_sym_readonly, - STATE(3433), 1, + STATE(3289), 1, sym_comment, - STATE(3710), 1, + STATE(3582), 1, sym_override_modifier, - STATE(4421), 1, + STATE(4122), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(987), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4372), 21, + ACTIONS(4376), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318459,221 +306225,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116021] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - STATE(3434), 1, - sym_comment, - STATE(4761), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6593), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [116096] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [116269] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - STATE(3435), 1, - sym_comment, - STATE(4761), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6593), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [116169] = 25, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4538), 1, - anon_sym_AT, - ACTIONS(4947), 1, + ACTIONS(5779), 1, anon_sym_LBRACK, - ACTIONS(6660), 1, - anon_sym_STAR, - ACTIONS(6662), 1, - anon_sym_async, - ACTIONS(6664), 1, - anon_sym_static, - ACTIONS(6666), 1, - anon_sym_readonly, - ACTIONS(6670), 1, - anon_sym_declare, - ACTIONS(6672), 1, - anon_sym_abstract, - STATE(3436), 1, + STATE(3290), 1, sym_comment, - STATE(3535), 1, - sym_method_definition, - STATE(3603), 1, - sym_accessibility_modifier, - STATE(3656), 1, - aux_sym_export_statement_repeat1, - STATE(3676), 1, - sym_override_modifier, - STATE(3712), 1, - sym_decorator, - STATE(3961), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6668), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4548), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - ACTIONS(4372), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [116262] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6414), 1, + ACTIONS(5782), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5190), 3, anon_sym_COMMA, - STATE(3437), 1, - sym_comment, - ACTIONS(5306), 13, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4137), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 25, - sym__automatic_semicolon, + ACTIONS(4141), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -318693,38 +306276,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [116317] = 6, + [116328] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4514), 1, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, sym__automatic_semicolon, - STATE(3438), 1, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6681), 1, + anon_sym_abstract, + STATE(3291), 1, sym_comment, - ACTIONS(1043), 8, + STATE(4202), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, 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(2419), 30, + ACTIONS(4376), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -318741,39 +306332,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [116372] = 8, + [116397] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4861), 1, - anon_sym_extends, - STATE(3439), 1, + ACTIONS(4264), 1, + anon_sym_RBRACK, + ACTIONS(4287), 1, + anon_sym_COMMA, + ACTIONS(4369), 1, + anon_sym_EQ, + STATE(3292), 1, sym_comment, - ACTIONS(5669), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5672), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4121), 11, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(4141), 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, @@ -318793,55 +306383,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [116431] = 13, + [116456] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6152), 1, - anon_sym_abstract, - STATE(3440), 1, + ACTIONS(5985), 1, + anon_sym_STAR, + STATE(3293), 1, sym_comment, - STATE(4436), 1, + STATE(3531), 1, + sym_override_modifier, + STATE(4808), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6683), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(987), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4372), 23, + ACTIONS(2900), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -318849,43 +306444,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116500] = 15, + [116535] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6674), 1, - anon_sym_readonly, - STATE(3441), 1, + ACTIONS(6189), 1, + anon_sym_abstract, + STATE(3294), 1, sym_comment, - STATE(3683), 1, - sym_override_modifier, - STATE(4436), 1, + STATE(4122), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(987), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4372), 21, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -318894,12 +306485,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -318907,107 +306500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116573] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5568), 1, - anon_sym_LBRACK, - STATE(3442), 1, - sym_comment, - ACTIONS(5571), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5206), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(5564), 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(5566), 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, - [116632] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4290), 1, - anon_sym_EQ, - STATE(3443), 1, - sym_comment, - ACTIONS(4121), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4125), 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, - [116687] = 17, + [116604] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -319018,30 +306511,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2902), 1, anon_sym_async, - ACTIONS(5477), 1, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, + ACTIONS(5985), 1, anon_sym_STAR, - ACTIONS(6430), 1, - anon_sym_COMMA, - ACTIONS(6599), 1, - anon_sym_RBRACE, - STATE(3444), 1, + STATE(3295), 1, sym_comment, - STATE(4761), 1, + STATE(4808), 1, sym__property_name, - STATE(5814), 1, - aux_sym_object_repeat1, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + ACTIONS(6587), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -319067,44 +306559,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116764] = 16, + [116679] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - ACTIONS(6430), 1, - anon_sym_COMMA, - ACTIONS(6599), 1, - anon_sym_RBRACE, - STATE(3445), 1, + ACTIONS(6685), 1, + anon_sym_readonly, + STATE(3296), 1, sym_comment, - STATE(4761), 1, + STATE(3585), 1, + sym_override_modifier, + STATE(4068), 1, sym__property_name, - STATE(5814), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, + ACTIONS(987), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(4376), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319113,12 +306604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -319126,39 +306617,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116839] = 13, + [116752] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6676), 1, + ACTIONS(6687), 1, anon_sym_abstract, - STATE(3446), 1, + STATE(3297), 1, sym_comment, - STATE(4227), 1, + STATE(4068), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(987), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4372), 23, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319182,139 +306673,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116908] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5419), 1, - anon_sym_EQ, - ACTIONS(5752), 1, - anon_sym_RBRACK, - ACTIONS(5920), 1, - anon_sym_COMMA, - STATE(3447), 1, - sym_comment, - ACTIONS(5417), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5421), 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, - [116967] = 9, + [116821] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4222), 1, + ACTIONS(4229), 1, anon_sym_EQ, - ACTIONS(5675), 1, + ACTIONS(5779), 1, anon_sym_LBRACK, - STATE(3448), 1, + STATE(3298), 1, sym_comment, - ACTIONS(5286), 2, + ACTIONS(5190), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(5678), 3, + ACTIONS(5782), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4121), 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(4125), 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, - [117028] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4248), 1, - anon_sym_EQ, - STATE(3449), 1, - sym_comment, - ACTIONS(4121), 13, + ACTIONS(4137), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 25, + ACTIONS(4141), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -319334,43 +306725,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [117083] = 15, + [116882] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6678), 1, - anon_sym_readonly, - STATE(3450), 1, + ACTIONS(5985), 1, + anon_sym_STAR, + STATE(3299), 1, sym_comment, - STATE(3700), 1, - sym_override_modifier, - STATE(4227), 1, + STATE(4808), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6587), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(987), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4372), 21, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319379,12 +306770,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -319392,18 +306783,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117156] = 6, + [116955] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3451), 1, + STATE(3300), 1, sym_comment, - ACTIONS(5550), 3, + ACTIONS(2135), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6680), 13, + ACTIONS(6689), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -319417,7 +306808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6683), 23, + ACTIONS(6692), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -319441,18 +306832,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [117211] = 6, + [117010] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3452), 1, + STATE(3301), 1, sym_comment, - ACTIONS(5546), 3, + ACTIONS(5178), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6686), 13, + anon_sym_extends, + ACTIONS(5172), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -319466,11 +306856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6689), 23, + ACTIONS(5174), 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, @@ -319490,23 +306881,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [117266] = 8, + [117065] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6695), 1, + anon_sym_readonly, + STATE(3302), 1, + sym_comment, + STATE(3541), 1, + sym_override_modifier, + STATE(4219), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4376), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [117138] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5675), 1, + ACTIONS(5523), 1, anon_sym_LBRACK, - STATE(3453), 1, + STATE(3303), 1, sym_comment, - ACTIONS(5678), 2, + ACTIONS(5526), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5286), 3, + ACTIONS(5043), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4121), 11, + ACTIONS(5519), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -319518,7 +306967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 22, + ACTIONS(5521), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -319541,37 +306990,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [117325] = 12, + [117197] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3454), 1, + ACTIONS(6697), 1, + anon_sym_abstract, + STATE(3304), 1, sym_comment, - STATE(4351), 1, + STATE(4220), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(987), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4372), 23, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319595,37 +307046,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117391] = 12, + [117266] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5773), 1, + anon_sym_LBRACK, + STATE(3305), 1, + sym_comment, + ACTIONS(5776), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4843), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4137), 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(4141), 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, + [117325] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3455), 1, + STATE(3306), 1, sym_comment, - STATE(4269), 1, + STATE(4161), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(987), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4372), 23, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -319649,51 +307151,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117457] = 15, + [117391] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(5988), 1, - anon_sym_STAR, - STATE(3456), 1, - sym_comment, - STATE(4761), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2906), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6622), 2, + ACTIONS(231), 1, anon_sym_COMMA, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(6195), 1, anon_sym_RBRACE, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, + STATE(3307), 1, + sym_comment, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 20, + ACTIONS(2403), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -319706,29 +307203,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117529] = 10, + [117453] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4229), 1, + anon_sym_EQ, + ACTIONS(4351), 1, + anon_sym_in, + ACTIONS(4354), 1, + anon_sym_of, + STATE(3308), 1, + sym_comment, + ACTIONS(4137), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4141), 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, + [117511] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(6172), 1, + ACTIONS(966), 1, anon_sym_RBRACE, - STATE(3457), 1, + ACTIONS(5134), 1, + anon_sym_EQ, + STATE(3309), 1, sym_comment, - STATE(6171), 1, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(6261), 1, aux_sym_object_repeat1, - ACTIONS(1043), 4, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2431), 29, + ACTIONS(2405), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319758,29 +307305,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117591] = 10, + [117573] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(6172), 1, + ACTIONS(966), 1, anon_sym_RBRACE, - STATE(3458), 1, + ACTIONS(5134), 1, + anon_sym_EQ, + STATE(3310), 1, sym_comment, - STATE(6171), 1, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(6261), 1, aux_sym_object_repeat1, - ACTIONS(1043), 4, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2419), 29, + ACTIONS(2403), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319810,44 +307357,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117653] = 12, + [117635] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - STATE(3459), 1, - sym_comment, - STATE(4409), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_EQ, + ACTIONS(231), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(6113), 1, + anon_sym_RBRACE, + STATE(3311), 1, + sym_comment, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(987), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4372), 23, + ACTIONS(2405), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -319864,29 +307409,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117719] = 10, + [117697] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(1051), 1, - anon_sym_RBRACE, - ACTIONS(4939), 1, + ACTIONS(5134), 1, anon_sym_EQ, - STATE(3460), 1, + ACTIONS(6113), 1, + anon_sym_RBRACE, + STATE(3312), 1, sym_comment, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1043), 4, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2431), 29, + ACTIONS(2403), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319916,29 +307461,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117781] = 10, + [117759] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(1051), 1, - anon_sym_RBRACE, - ACTIONS(4939), 1, + ACTIONS(5134), 1, anon_sym_EQ, - STATE(3461), 1, + ACTIONS(5987), 1, + anon_sym_RBRACE, + STATE(3313), 1, sym_comment, - STATE(6165), 1, + STATE(5868), 1, aux_sym_object_repeat1, - STATE(6171), 1, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1043), 4, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2419), 29, + ACTIONS(2403), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -319968,38 +307513,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117843] = 6, + [117821] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + STATE(3314), 1, + sym_comment, + STATE(3118), 2, + sym_template_string, + sym_arguments, + ACTIONS(4861), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4863), 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, + [117879] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4514), 1, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, sym__automatic_semicolon, - STATE(3462), 1, + ACTIONS(5142), 1, + anon_sym_LBRACK, + STATE(3315), 1, sym_comment, - ACTIONS(1043), 8, + STATE(4190), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2419), 29, + ACTIONS(4376), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -320016,29 +307617,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117897] = 10, + [117945] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(4939), 1, + ACTIONS(5134), 1, anon_sym_EQ, - ACTIONS(6007), 1, + ACTIONS(5987), 1, anon_sym_RBRACE, - STATE(3463), 1, + STATE(3316), 1, sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(5868), 1, aux_sym_object_repeat1, - ACTIONS(1043), 4, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2419), 29, + ACTIONS(2405), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -320068,37 +307669,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117959] = 12, + [118007] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3464), 1, + STATE(3317), 1, sym_comment, - STATE(4252), 1, + STATE(4160), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(987), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4372), 23, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320122,37 +307723,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118025] = 12, + [118073] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3465), 1, + STATE(3318), 1, sym_comment, - STATE(4435), 1, + STATE(4289), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(987), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4372), 23, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320176,44 +307777,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118091] = 12, + [118139] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - STATE(3466), 1, - sym_comment, - STATE(4447), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_EQ, + ACTIONS(231), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(1043), 1, + anon_sym_RBRACE, + ACTIONS(5134), 1, + anon_sym_EQ, + STATE(3319), 1, + sym_comment, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(987), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4372), 23, + ACTIONS(2405), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -320230,7 +307829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118157] = 14, + [118201] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320239,13 +307838,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, + ACTIONS(5985), 1, anon_sym_STAR, - STATE(3467), 1, + STATE(3320), 1, sym_comment, - STATE(4761), 1, + STATE(4808), 1, sym__property_name, ACTIONS(2734), 2, sym_number, @@ -320253,13 +307852,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2906), 2, anon_sym_get, anon_sym_set, - ACTIONS(6622), 2, + ACTIONS(6683), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -320286,87 +307885,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118227] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4222), 1, - anon_sym_EQ, - ACTIONS(4328), 1, - anon_sym_in, - ACTIONS(4331), 1, - anon_sym_of, - STATE(3468), 1, - sym_comment, - ACTIONS(4121), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4125), 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, - [118285] = 12, + [118271] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3469), 1, + STATE(3321), 1, sym_comment, - STATE(4233), 1, + STATE(4226), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(987), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4372), 23, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320390,37 +307939,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118351] = 12, + [118337] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5134), 1, + anon_sym_EQ, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3470), 1, + STATE(3322), 1, sym_comment, - STATE(4402), 1, + STATE(4808), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + ACTIONS(6587), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(987), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4372), 23, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320444,22 +307994,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118417] = 8, + [118405] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2071), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5914), 1, - anon_sym_of, - ACTIONS(6466), 1, - anon_sym_in, - STATE(3471), 1, + ACTIONS(4320), 1, + anon_sym_EQ, + STATE(3323), 1, sym_comment, - ACTIONS(2069), 12, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -320470,11 +308017,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2075), 23, + ACTIONS(4141), 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, @@ -320494,68 +308042,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [118475] = 6, + [118459] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6093), 1, - sym_regex_flags, - STATE(3472), 1, - sym_comment, - ACTIONS(6089), 17, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(5985), 1, anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_of, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + STATE(3324), 1, + sym_comment, + STATE(4808), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6683), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(6091), 20, - sym__ternary_qmark, + anon_sym_QMARK, + ACTIONS(2900), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [118531] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(231), 1, + anon_sym_COMMA, + ACTIONS(1041), 1, + anon_sym_RBRACE, + ACTIONS(5134), 1, + anon_sym_EQ, + STATE(3325), 1, + sym_comment, + STATE(5868), 1, + aux_sym_object_repeat1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(987), 4, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2403), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - 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, - [118529] = 8, + 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, + [118593] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5419), 1, + ACTIONS(5322), 1, anon_sym_EQ, - ACTIONS(5920), 1, + ACTIONS(5904), 1, anon_sym_of, - ACTIONS(6463), 1, + ACTIONS(6449), 1, anon_sym_in, - STATE(3473), 1, + STATE(3326), 1, sym_comment, - ACTIONS(5417), 12, + ACTIONS(5320), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -320568,7 +308177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5421), 23, + ACTIONS(5324), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -320592,29 +308201,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [118587] = 10, + [118651] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(6007), 1, + ACTIONS(1041), 1, anon_sym_RBRACE, - STATE(3474), 1, + ACTIONS(5134), 1, + anon_sym_EQ, + STATE(3327), 1, sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(5868), 1, aux_sym_object_repeat1, - ACTIONS(1043), 4, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2431), 29, + ACTIONS(2405), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -320644,98 +308253,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118649] = 14, + [118713] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6430), 1, - anon_sym_COMMA, - ACTIONS(6599), 1, - anon_sym_RBRACE, - STATE(3475), 1, + STATE(3328), 1, sym_comment, - STATE(4761), 1, + STATE(4296), 1, sym__property_name, - STATE(5814), 1, - aux_sym_object_repeat1, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [118719] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(4939), 1, + ACTIONS(987), 6, anon_sym_EQ, - ACTIONS(6009), 1, - anon_sym_RBRACE, - STATE(3476), 1, - sym_comment, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1043), 4, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2431), 29, + ACTIONS(4376), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -320752,37 +308307,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118781] = 12, + [118779] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3477), 1, + STATE(3329), 1, sym_comment, - STATE(4302), 1, + STATE(4218), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(987), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4372), 23, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320806,29 +308361,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118847] = 10, + [118845] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(1053), 1, + ACTIONS(1043), 1, anon_sym_RBRACE, - ACTIONS(4939), 1, + ACTIONS(5134), 1, anon_sym_EQ, - STATE(3478), 1, + STATE(3330), 1, sym_comment, - STATE(6171), 1, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(6261), 1, aux_sym_object_repeat1, - ACTIONS(1043), 4, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2431), 29, + ACTIONS(2403), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -320858,19 +308413,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118909] = 6, + [118907] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4300), 1, + ACTIONS(5632), 1, anon_sym_EQ, - STATE(3479), 1, + ACTIONS(5809), 1, + anon_sym_of, + ACTIONS(6530), 1, + anon_sym_in, + STATE(3331), 1, sym_comment, - ACTIONS(4121), 13, + ACTIONS(5630), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -320881,12 +308439,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 24, + ACTIONS(5634), 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_AMP_AMP, @@ -320906,91 +308463,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [118963] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - STATE(3480), 1, - sym_comment, - STATE(4221), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4372), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [119029] = 12, + [118965] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3481), 1, + STATE(3332), 1, sym_comment, - STATE(4383), 1, + STATE(4295), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(987), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4372), 23, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321014,124 +308517,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119095] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [119031] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, - sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - STATE(3482), 1, - sym_comment, - STATE(4260), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(2071), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4372), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [119161] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - STATE(3483), 1, - sym_comment, - STATE(3080), 2, - sym_template_string, - sym_arguments, - ACTIONS(4863), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4865), 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, - [119219] = 8, - ACTIONS(5), 1, - sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5270), 1, - anon_sym_EQ, - ACTIONS(5926), 1, + ACTIONS(5807), 1, anon_sym_of, - ACTIONS(6446), 1, + ACTIONS(6533), 1, anon_sym_in, - STATE(3484), 1, + STATE(3333), 1, sym_comment, - ACTIONS(5268), 12, + ACTIONS(2069), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_GT, @@ -321144,7 +308543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5272), 23, + ACTIONS(2075), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -321168,29 +308567,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [119277] = 10, + [119089] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(4939), 1, + ACTIONS(5134), 1, anon_sym_EQ, - ACTIONS(6009), 1, + ACTIONS(6121), 1, anon_sym_RBRACE, - STATE(3485), 1, + STATE(3334), 1, sym_comment, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1043), 4, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2419), 29, + ACTIONS(2405), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -321220,42 +308619,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119339] = 10, + [119151] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(6362), 1, anon_sym_COMMA, - ACTIONS(1053), 1, + ACTIONS(6615), 1, anon_sym_RBRACE, - ACTIONS(4939), 1, - anon_sym_EQ, - STATE(3486), 1, + STATE(3335), 1, sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(4808), 1, + sym__property_name, + STATE(5670), 1, aux_sym_object_repeat1, - ACTIONS(1043), 4, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2419), 29, + ACTIONS(2900), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -321272,29 +308675,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119401] = 10, + [119221] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(4939), 1, + ACTIONS(5134), 1, anon_sym_EQ, - ACTIONS(5990), 1, + ACTIONS(6121), 1, anon_sym_RBRACE, - STATE(3487), 1, + STATE(3336), 1, sym_comment, - STATE(6171), 1, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(6261), 1, aux_sym_object_repeat1, - ACTIONS(1043), 4, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2431), 29, + ACTIONS(2403), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -321324,37 +308727,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119463] = 12, + [119283] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3488), 1, + STATE(3337), 1, sym_comment, - STATE(4418), 1, + STATE(4109), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(987), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4372), 23, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321378,44 +308781,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119529] = 12, + [119349] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, - anon_sym_LBRACK, - STATE(3489), 1, + STATE(3338), 1, sym_comment, - STATE(4335), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_EQ, + ACTIONS(987), 8, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4372), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2403), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -321432,37 +308829,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119595] = 12, + [119403] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4302), 1, + anon_sym_EQ, + STATE(3339), 1, + sym_comment, + ACTIONS(4137), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4141), 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, + [119457] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3490), 1, + STATE(3340), 1, sym_comment, - STATE(4313), 1, + STATE(4149), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(987), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4372), 23, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321486,42 +308931,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119661] = 10, + [119523] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5990), 1, - anon_sym_RBRACE, - STATE(3491), 1, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, + anon_sym_LBRACK, + STATE(3341), 1, sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(1043), 4, - anon_sym_LPAREN, + STATE(4198), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2419), 29, + ACTIONS(4376), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -321538,19 +308985,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119723] = 6, + [119589] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4318), 1, - anon_sym_EQ, - STATE(3492), 1, + ACTIONS(6212), 1, + sym_regex_flags, + STATE(3342), 1, sym_comment, - ACTIONS(4121), 13, + ACTIONS(6208), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -321561,11 +309010,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 24, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6210), 20, sym__ternary_qmark, - anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -321581,42 +309030,94 @@ 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, - [119777] = 12, + [119643] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4514), 1, + ACTIONS(4518), 1, sym__automatic_semicolon, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3493), 1, + STATE(3343), 1, sym_comment, - STATE(4353), 1, + STATE(4285), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4376), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [119709] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, + anon_sym_LBRACK, + STATE(3344), 1, + sym_comment, + STATE(4077), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(987), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4372), 23, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321640,42 +309141,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119843] = 10, + [119775] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(231), 1, - anon_sym_COMMA, - ACTIONS(1022), 1, - anon_sym_RBRACE, - ACTIONS(4939), 1, - anon_sym_EQ, - STATE(3494), 1, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, + anon_sym_LBRACK, + STATE(3345), 1, sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(1043), 4, - anon_sym_LPAREN, + STATE(4147), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2419), 29, + ACTIONS(4376), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [119841] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, anon_sym_DQUOTE, + ACTIONS(1922), 1, anon_sym_SQUOTE, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, + anon_sym_LBRACK, + STATE(3346), 1, + sym_comment, + STATE(4085), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4376), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, anon_sym_new, - sym_number, sym_identifier, - sym_private_property_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -321692,29 +309249,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119905] = 10, + [119907] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(231), 1, anon_sym_COMMA, - ACTIONS(1022), 1, - anon_sym_RBRACE, - ACTIONS(4939), 1, + ACTIONS(5134), 1, anon_sym_EQ, - STATE(3495), 1, + ACTIONS(6195), 1, + anon_sym_RBRACE, + STATE(3347), 1, sym_comment, - STATE(6171), 1, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(6261), 1, aux_sym_object_repeat1, - ACTIONS(1043), 4, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2431), 29, + ACTIONS(2405), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -321744,38 +309301,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119967] = 13, + [119969] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4939), 1, - anon_sym_EQ, - ACTIONS(5477), 1, + ACTIONS(4518), 1, + sym__automatic_semicolon, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3496), 1, + STATE(3348), 1, sym_comment, - STATE(4761), 1, + STATE(4170), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6593), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, + ACTIONS(987), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321804,11 +309360,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4450), 1, + ACTIONS(4446), 1, anon_sym_EQ, - STATE(3497), 1, + STATE(3349), 1, sym_comment, - ACTIONS(4121), 13, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -321822,7 +309378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(4141), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -321851,11 +309407,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4488), 1, + ACTIONS(4484), 1, anon_sym_EQ, - STATE(3498), 1, + STATE(3350), 1, sym_comment, - ACTIONS(4121), 13, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -321869,7 +309425,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(4141), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -321898,11 +309454,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4444), 1, + ACTIONS(4480), 1, anon_sym_EQ, - STATE(3499), 1, + STATE(3351), 1, sym_comment, - ACTIONS(4121), 13, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -321916,7 +309472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(4141), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -321945,11 +309501,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4486), 1, + ACTIONS(4432), 1, anon_sym_EQ, - STATE(3500), 1, + STATE(3352), 1, sym_comment, - ACTIONS(4121), 13, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -321963,7 +309519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(4141), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -321987,16 +309543,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120247] = 6, + [120247] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(3353), 1, + sym_comment, + STATE(4808), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6683), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [120312] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4454), 1, + ACTIONS(4448), 1, anon_sym_EQ, - STATE(3501), 1, + STATE(3354), 1, sym_comment, - ACTIONS(4121), 13, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -322010,7 +309619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(4141), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -322034,16 +309643,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120300] = 6, + [120365] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4476), 1, + ACTIONS(4468), 1, anon_sym_EQ, - STATE(3502), 1, + STATE(3355), 1, sym_comment, - ACTIONS(4121), 13, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -322057,7 +309666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(4141), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -322081,16 +309690,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120353] = 6, + [120418] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4440), 1, + ACTIONS(4462), 1, anon_sym_EQ, - STATE(3503), 1, + STATE(3356), 1, sym_comment, - ACTIONS(4121), 13, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -322104,7 +309713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(4141), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -322128,16 +309737,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120406] = 6, + [120471] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4452), 1, + ACTIONS(4430), 1, anon_sym_EQ, - STATE(3504), 1, + STATE(3357), 1, sym_comment, - ACTIONS(4121), 13, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -322151,7 +309760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(4141), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -322175,69 +309784,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120459] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5477), 1, - anon_sym_LBRACK, - STATE(3505), 1, - sym_comment, - STATE(4761), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6622), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, [120524] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4432), 1, + ACTIONS(4470), 1, anon_sym_EQ, - STATE(3506), 1, + STATE(3358), 1, sym_comment, - ACTIONS(4121), 13, + ACTIONS(4137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -322251,7 +309807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4125), 23, + ACTIONS(4141), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -322280,11 +309836,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6694), 1, + ACTIONS(6701), 1, sym__automatic_semicolon, - STATE(3507), 1, + STATE(3359), 1, sym_comment, - ACTIONS(6692), 35, + ACTIONS(6699), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -322320,24 +309876,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [120627] = 6, + [120627] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6698), 1, - anon_sym_SEMI, - ACTIONS(6701), 1, + ACTIONS(6705), 1, sym__automatic_semicolon, - STATE(3508), 1, + STATE(3360), 1, sym_comment, - ACTIONS(6696), 34, + ACTIONS(6703), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -322366,16 +309921,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [120679] = 5, + [120677] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6705), 1, + ACTIONS(6709), 1, sym__automatic_semicolon, - STATE(3509), 1, + STATE(3361), 1, sym_comment, - ACTIONS(6703), 35, + ACTIONS(6707), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -322411,16 +309966,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [120729] = 5, + [120727] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6709), 1, + ACTIONS(6713), 1, sym__automatic_semicolon, - STATE(3510), 1, + STATE(3362), 1, sym_comment, - ACTIONS(6707), 35, + ACTIONS(6711), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -322456,16 +310011,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [120779] = 5, + [120777] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6713), 1, + ACTIONS(6717), 1, sym__automatic_semicolon, - STATE(3511), 1, + STATE(3363), 1, sym_comment, - ACTIONS(6711), 35, + ACTIONS(6715), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -322501,16 +310056,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [120829] = 5, + [120827] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6717), 1, + ACTIONS(6721), 1, sym__automatic_semicolon, - STATE(3512), 1, + STATE(3364), 1, sym_comment, - ACTIONS(6715), 35, + ACTIONS(6719), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -322546,16 +310101,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [120879] = 5, + [120877] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2107), 1, + ACTIONS(6701), 1, sym__automatic_semicolon, - STATE(3513), 1, + STATE(3365), 1, sym_comment, - ACTIONS(2105), 35, + ACTIONS(6699), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -322591,16 +310146,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [120929] = 5, + [120927] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2095), 1, + ACTIONS(6701), 1, sym__automatic_semicolon, - STATE(3514), 1, + STATE(3366), 1, sym_comment, - ACTIONS(2093), 35, + ACTIONS(6699), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -322636,14 +310191,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [120979] = 5, + [120977] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(6717), 1, sym__automatic_semicolon, - STATE(3515), 1, + STATE(3367), 1, sym_comment, ACTIONS(6715), 35, anon_sym_export, @@ -322681,16 +310236,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121029] = 5, + [121027] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6717), 1, + ACTIONS(6725), 1, sym__automatic_semicolon, - STATE(3516), 1, + STATE(3368), 1, sym_comment, - ACTIONS(6715), 35, + ACTIONS(6723), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -322726,16 +310281,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121079] = 5, + [121077] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6721), 1, + ACTIONS(6729), 1, sym__automatic_semicolon, - STATE(3517), 1, + STATE(3369), 1, sym_comment, - ACTIONS(6719), 35, + ACTIONS(6727), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -322771,16 +310326,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121129] = 5, + [121127] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6723), 1, + ACTIONS(6721), 1, sym__automatic_semicolon, - STATE(3518), 1, + STATE(3370), 1, sym_comment, - ACTIONS(2067), 35, + ACTIONS(6719), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -322816,16 +310371,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121179] = 5, + [121177] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6725), 1, + ACTIONS(6733), 1, sym__automatic_semicolon, - STATE(3519), 1, + STATE(3371), 1, sym_comment, - ACTIONS(2093), 35, + ACTIONS(6731), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -322861,34 +310416,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121229] = 5, + [121227] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6729), 1, - sym__automatic_semicolon, - STATE(3520), 1, + ACTIONS(6362), 1, + anon_sym_COMMA, + ACTIONS(6615), 1, + anon_sym_RBRACE, + STATE(3372), 1, sym_comment, - ACTIONS(6727), 35, + STATE(5670), 1, + aux_sym_object_repeat1, + ACTIONS(987), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2405), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -322905,17 +310464,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [121279] = 5, + [121283] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6729), 1, + ACTIONS(6737), 1, sym__automatic_semicolon, - STATE(3521), 1, + STATE(3373), 1, sym_comment, - ACTIONS(6727), 35, + ACTIONS(6735), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -322951,16 +310509,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121329] = 5, + [121333] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6729), 1, + ACTIONS(6705), 1, sym__automatic_semicolon, - STATE(3522), 1, + STATE(3374), 1, sym_comment, - ACTIONS(6727), 35, + ACTIONS(6703), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -322996,16 +310554,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121379] = 5, + [121383] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6705), 1, + ACTIONS(6741), 1, sym__automatic_semicolon, - STATE(3523), 1, + STATE(3375), 1, sym_comment, - ACTIONS(6703), 35, + ACTIONS(6739), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -323041,16 +310599,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121429] = 5, + [121433] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6731), 1, + ACTIONS(2223), 1, sym__automatic_semicolon, - STATE(3524), 1, + STATE(3376), 1, sym_comment, - ACTIONS(2067), 35, + ACTIONS(2221), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -323086,16 +310644,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121479] = 5, + [121483] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6735), 1, + ACTIONS(6717), 1, sym__automatic_semicolon, - STATE(3525), 1, + STATE(3377), 1, sym_comment, - ACTIONS(6733), 35, + ACTIONS(6715), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -323131,23 +310689,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121529] = 5, + [121533] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6737), 1, + ACTIONS(6745), 1, + anon_sym_SEMI, + ACTIONS(6748), 1, sym__automatic_semicolon, - STATE(3526), 1, + STATE(3378), 1, sym_comment, - ACTIONS(2093), 35, + ACTIONS(6743), 34, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -323176,16 +310735,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121579] = 5, + [121585] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6741), 1, + ACTIONS(2115), 1, sym__automatic_semicolon, - STATE(3527), 1, + STATE(3379), 1, sym_comment, - ACTIONS(6739), 35, + ACTIONS(2111), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -323221,34 +310780,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121629] = 5, + [121635] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6745), 1, - sym__automatic_semicolon, - STATE(3528), 1, + ACTIONS(6362), 1, + anon_sym_COMMA, + ACTIONS(6615), 1, + anon_sym_RBRACE, + STATE(3380), 1, sym_comment, - ACTIONS(6743), 35, + STATE(5670), 1, + aux_sym_object_repeat1, + ACTIONS(987), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2403), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -323265,17 +310828,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [121679] = 5, + [121691] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6729), 1, + ACTIONS(6737), 1, sym__automatic_semicolon, - STATE(3529), 1, + STATE(3381), 1, sym_comment, - ACTIONS(6727), 35, + ACTIONS(6735), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -323311,14 +310873,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121729] = 5, + [121741] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(6741), 1, sym__automatic_semicolon, - STATE(3530), 1, + STATE(3382), 1, sym_comment, ACTIONS(6739), 35, anon_sym_export, @@ -323356,16 +310918,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121779] = 5, + [121791] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6749), 1, + ACTIONS(6721), 1, sym__automatic_semicolon, - STATE(3531), 1, + STATE(3383), 1, sym_comment, - ACTIONS(6747), 35, + ACTIONS(6719), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -323401,16 +310963,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121829] = 5, + [121841] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6753), 1, + ACTIONS(6741), 1, sym__automatic_semicolon, - STATE(3532), 1, + STATE(3384), 1, sym_comment, - ACTIONS(6751), 35, + ACTIONS(6739), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -323446,16 +311008,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121879] = 5, + [121891] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6735), 1, + ACTIONS(6737), 1, sym__automatic_semicolon, - STATE(3533), 1, + STATE(3385), 1, sym_comment, - ACTIONS(6733), 35, + ACTIONS(6735), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -323491,16 +311053,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121929] = 5, + [121941] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6709), 1, + ACTIONS(6705), 1, sym__automatic_semicolon, - STATE(3534), 1, + STATE(3386), 1, sym_comment, - ACTIONS(6707), 35, + ACTIONS(6703), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -323536,24 +311098,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [121979] = 6, + [121991] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6757), 1, - anon_sym_SEMI, - ACTIONS(6760), 1, + ACTIONS(6741), 1, sym__automatic_semicolon, - STATE(3535), 1, + STATE(3387), 1, sym_comment, - ACTIONS(6755), 34, + ACTIONS(6739), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -323582,16 +311143,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122031] = 5, + [122041] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6705), 1, + ACTIONS(6752), 1, sym__automatic_semicolon, - STATE(3536), 1, + STATE(3388), 1, sym_comment, - ACTIONS(6703), 35, + ACTIONS(6750), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -323627,43 +311188,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122081] = 5, + [122091] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6729), 1, - sym__automatic_semicolon, - STATE(3537), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(6754), 1, + anon_sym_STAR, + ACTIONS(6756), 1, + anon_sym_async, + ACTIONS(6758), 1, + anon_sym_readonly, + STATE(3389), 1, sym_comment, - ACTIONS(6727), 35, + STATE(3525), 1, + sym_override_modifier, + STATE(4826), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6760), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 18, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -323671,17 +311245,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [122131] = 5, + [122165] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6735), 1, + ACTIONS(6705), 1, sym__automatic_semicolon, - STATE(3538), 1, + STATE(3390), 1, sym_comment, - ACTIONS(6733), 35, + ACTIONS(6703), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -323717,16 +311290,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122181] = 5, + [122215] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6717), 1, + ACTIONS(6764), 1, sym__automatic_semicolon, - STATE(3539), 1, + STATE(3391), 1, sym_comment, - ACTIONS(6715), 35, + ACTIONS(6762), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -323762,25 +311335,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122231] = 8, + [122265] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6430), 1, + ACTIONS(5134), 1, + anon_sym_EQ, + STATE(3392), 1, + sym_comment, + ACTIONS(6587), 2, anon_sym_COMMA, - ACTIONS(6599), 1, anon_sym_RBRACE, - STATE(3540), 1, - sym_comment, - STATE(5814), 1, - aux_sym_object_repeat1, - ACTIONS(1043), 4, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2431), 29, + ACTIONS(2405), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -323810,16 +311382,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122287] = 5, + [122319] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6721), 1, + ACTIONS(6766), 1, sym__automatic_semicolon, - STATE(3541), 1, + STATE(3393), 1, sym_comment, - ACTIONS(6719), 35, + ACTIONS(2111), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -323855,16 +311427,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122337] = 5, + [122369] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6735), 1, + ACTIONS(6717), 1, sym__automatic_semicolon, - STATE(3542), 1, + STATE(3394), 1, sym_comment, - ACTIONS(6733), 35, + ACTIONS(6715), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -323900,16 +311472,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122387] = 5, + [122419] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6717), 1, + ACTIONS(5134), 1, + anon_sym_EQ, + STATE(3395), 1, + sym_comment, + ACTIONS(6587), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(987), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2403), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [122473] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6701), 1, sym__automatic_semicolon, - STATE(3543), 1, + STATE(3396), 1, sym_comment, - ACTIONS(6715), 35, + ACTIONS(6699), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -323945,16 +311564,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122437] = 5, + [122523] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6717), 1, + ACTIONS(6737), 1, sym__automatic_semicolon, - STATE(3544), 1, + STATE(3397), 1, sym_comment, - ACTIONS(6715), 35, + ACTIONS(6735), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -323990,16 +311609,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122487] = 5, + [122573] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6729), 1, + ACTIONS(6770), 1, sym__automatic_semicolon, - STATE(3545), 1, + STATE(3398), 1, sym_comment, - ACTIONS(6727), 35, + ACTIONS(6768), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -324035,16 +311654,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122537] = 5, + [122623] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6735), 1, + ACTIONS(6717), 1, sym__automatic_semicolon, - STATE(3546), 1, + STATE(3399), 1, sym_comment, - ACTIONS(6733), 35, + ACTIONS(6715), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -324080,23 +311699,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122587] = 5, + [122673] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6721), 1, + ACTIONS(6774), 1, + anon_sym_SEMI, + ACTIONS(6777), 1, sym__automatic_semicolon, - STATE(3547), 1, + STATE(3400), 1, sym_comment, - ACTIONS(6719), 35, + ACTIONS(6772), 34, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -324125,16 +311745,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122637] = 5, + [122725] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6721), 1, + ACTIONS(6779), 1, sym__automatic_semicolon, - STATE(3548), 1, + STATE(3401), 1, sym_comment, - ACTIONS(6719), 35, + ACTIONS(2067), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -324170,37 +311790,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122687] = 7, + [122775] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4939), 1, - anon_sym_EQ, - STATE(3549), 1, + ACTIONS(6721), 1, + sym__automatic_semicolon, + STATE(3402), 1, sym_comment, - ACTIONS(6593), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2419), 29, + ACTIONS(6719), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -324217,37 +311834,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122741] = 7, + anon_sym_abstract, + [122825] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4939), 1, - anon_sym_EQ, - STATE(3550), 1, + ACTIONS(6781), 1, + sym__automatic_semicolon, + STATE(3403), 1, sym_comment, - ACTIONS(6593), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2431), 29, + ACTIONS(2111), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -324264,16 +311879,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122795] = 5, + anon_sym_abstract, + [122875] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6741), 1, + ACTIONS(6705), 1, sym__automatic_semicolon, - STATE(3551), 1, + STATE(3404), 1, sym_comment, - ACTIONS(6739), 35, + ACTIONS(6703), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -324309,16 +311925,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122845] = 5, + [122925] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6741), 1, + ACTIONS(6717), 1, sym__automatic_semicolon, - STATE(3552), 1, + STATE(3405), 1, sym_comment, - ACTIONS(6739), 35, + ACTIONS(6715), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -324354,16 +311970,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122895] = 5, + [122975] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6729), 1, + ACTIONS(6741), 1, sym__automatic_semicolon, - STATE(3553), 1, + STATE(3406), 1, sym_comment, - ACTIONS(6727), 35, + ACTIONS(6739), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -324399,16 +312015,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122945] = 5, + [123025] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6764), 1, + ACTIONS(6725), 1, sym__automatic_semicolon, - STATE(3554), 1, + STATE(3407), 1, sym_comment, - ACTIONS(6762), 35, + ACTIONS(6723), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -324444,16 +312060,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [122995] = 5, + [123075] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6705), 1, + ACTIONS(6701), 1, sym__automatic_semicolon, - STATE(3555), 1, + STATE(3408), 1, sym_comment, - ACTIONS(6703), 35, + ACTIONS(6699), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -324489,16 +312105,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123045] = 5, + [123125] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6721), 1, + ACTIONS(6705), 1, sym__automatic_semicolon, - STATE(3556), 1, + STATE(3409), 1, sym_comment, - ACTIONS(6719), 35, + ACTIONS(6703), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -324534,16 +312150,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123095] = 5, + [123175] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6717), 1, + ACTIONS(6721), 1, sym__automatic_semicolon, - STATE(3557), 1, + STATE(3410), 1, sym_comment, - ACTIONS(6715), 35, + ACTIONS(6719), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -324579,56 +312195,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123145] = 17, + [123225] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(2908), 1, - anon_sym_override, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(6766), 1, - anon_sym_STAR, - ACTIONS(6768), 1, - anon_sym_async, - ACTIONS(6770), 1, - anon_sym_readonly, - STATE(3558), 1, + ACTIONS(6783), 1, + sym__automatic_semicolon, + STATE(3411), 1, sym_comment, - STATE(3662), 1, - sym_override_modifier, - STATE(4766), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6772), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 18, + ACTIONS(2067), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -324636,14 +312239,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123219] = 5, + anon_sym_abstract, + [123275] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(6705), 1, sym__automatic_semicolon, - STATE(3559), 1, + STATE(3412), 1, sym_comment, ACTIONS(6703), 35, anon_sym_export, @@ -324681,16 +312285,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123269] = 5, + [123325] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6776), 1, + ACTIONS(6770), 1, sym__automatic_semicolon, - STATE(3560), 1, + STATE(3413), 1, sym_comment, - ACTIONS(6774), 35, + ACTIONS(6768), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -324726,16 +312330,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123319] = 5, + [123375] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6741), 1, + ACTIONS(6737), 1, sym__automatic_semicolon, - STATE(3561), 1, + STATE(3414), 1, sym_comment, - ACTIONS(6739), 35, + ACTIONS(6735), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -324771,16 +312375,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123369] = 5, + [123425] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6764), 1, + ACTIONS(6717), 1, sym__automatic_semicolon, - STATE(3562), 1, + STATE(3415), 1, sym_comment, - ACTIONS(6762), 35, + ACTIONS(6715), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -324816,25 +312420,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123419] = 8, + [123475] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(6785), 1, + anon_sym_STAR, + ACTIONS(6787), 1, + anon_sym_async, + STATE(3416), 1, + sym_comment, + STATE(4758), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6789), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [123542] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6430), 1, + STATE(3417), 1, + sym_comment, + ACTIONS(6683), 2, anon_sym_COMMA, - ACTIONS(6599), 1, anon_sym_RBRACE, - STATE(3563), 1, - sym_comment, - STATE(5814), 1, - aux_sym_object_repeat1, - ACTIONS(1043), 4, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2419), 29, + ACTIONS(2403), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -324864,47 +312518,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123475] = 14, + [123593] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, - anon_sym_STAR, - ACTIONS(6780), 1, - anon_sym_async, - STATE(3564), 1, + STATE(3418), 1, sym_comment, - STATE(4822), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6782), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 20, + ACTIONS(6791), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -324917,14 +312560,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123542] = 4, + anon_sym_abstract, + [123640] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3565), 1, + STATE(3419), 1, sym_comment, - ACTIONS(2105), 35, + ACTIONS(6793), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -324960,14 +312604,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123589] = 4, + [123687] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3566), 1, + STATE(3420), 1, sym_comment, - ACTIONS(6696), 35, + ACTIONS(6793), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -325003,79 +312647,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123636] = 4, + [123734] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3567), 1, - sym_comment, - ACTIONS(6784), 35, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_let, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(1894), 1, anon_sym_DQUOTE, + ACTIONS(1896), 1, anon_sym_SQUOTE, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(6754), 1, + anon_sym_STAR, + ACTIONS(6756), 1, anon_sym_async, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, + STATE(3421), 1, + sym_comment, + STATE(4826), 1, + sym__property_name, + ACTIONS(2734), 2, sym_number, - sym_identifier, sym_private_property_identifier, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, + ACTIONS(6760), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_abstract, - [123683] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3568), 1, - sym_comment, - ACTIONS(6786), 35, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 20, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -325088,8 +312700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [123730] = 13, + [123801] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325098,24 +312709,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6778), 1, + ACTIONS(6754), 1, anon_sym_STAR, - STATE(3569), 1, + STATE(3422), 1, sym_comment, - STATE(4822), 1, + STATE(4826), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6782), 2, + ACTIONS(6760), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -325141,14 +312752,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123795] = 4, + [123866] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3570), 1, + STATE(3423), 1, sym_comment, - ACTIONS(6784), 35, + ACTIONS(2111), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -325184,14 +312795,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123842] = 4, + [123913] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3571), 1, + STATE(3424), 1, sym_comment, - ACTIONS(2093), 35, + ACTIONS(2221), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -325227,14 +312838,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123889] = 4, + [123960] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3572), 1, + STATE(3425), 1, sym_comment, - ACTIONS(6788), 35, + ACTIONS(6743), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -325270,7 +312881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [123936] = 13, + [124007] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325279,24 +312890,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6790), 1, + ACTIONS(6785), 1, anon_sym_STAR, - STATE(3573), 1, + STATE(3426), 1, sym_comment, - STATE(4833), 1, + STATE(4758), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6792), 2, + ACTIONS(6789), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -325322,7 +312933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124001] = 14, + [124072] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325331,38 +312942,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6790), 1, - anon_sym_STAR, - ACTIONS(6794), 1, + ACTIONS(6795), 1, + anon_sym_EQ_GT, + STATE(3427), 1, + sym_comment, + STATE(4826), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - STATE(3574), 1, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124135] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(6797), 1, + anon_sym_STAR, + STATE(3428), 1, sym_comment, - STATE(4833), 1, + STATE(4675), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6792), 2, + ACTIONS(6799), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 20, + ACTIONS(2900), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124200] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3429), 1, + sym_comment, + ACTIONS(6801), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -325375,7 +313078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124068] = 14, + anon_sym_abstract, + [124247] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325384,26 +313088,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6766), 1, + ACTIONS(6797), 1, anon_sym_STAR, - ACTIONS(6768), 1, + ACTIONS(6803), 1, anon_sym_async, - STATE(3575), 1, + STATE(3430), 1, sym_comment, - STATE(4766), 1, + STATE(4675), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6772), 2, + ACTIONS(6799), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -325428,35 +313132,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124135] = 6, + [124314] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3576), 1, + STATE(3431), 1, sym_comment, - ACTIONS(6622), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2419), 29, + ACTIONS(6805), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -325473,7 +313174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124186] = 13, + anon_sym_abstract, + [124361] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325482,24 +313184,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6766), 1, + ACTIONS(6807), 1, anon_sym_STAR, - STATE(3577), 1, + STATE(3432), 1, sym_comment, - STATE(4766), 1, + STATE(4653), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6772), 2, + ACTIONS(6809), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -325525,22 +313227,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124251] = 6, + [124426] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3578), 1, + STATE(3433), 1, sym_comment, - ACTIONS(6622), 2, + ACTIONS(6683), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1043), 4, + ACTIONS(987), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2431), 29, + ACTIONS(2405), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -325570,7 +313272,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124302] = 12, + [124477] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(3434), 1, + sym_comment, + STATE(4662), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124537] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325579,21 +313330,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6796), 1, - anon_sym_EQ_GT, - STATE(3579), 1, + STATE(3435), 1, sym_comment, - STATE(4766), 1, + STATE(4803), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -325621,37 +313370,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124365] = 13, + [124597] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6798), 1, + ACTIONS(6157), 1, anon_sym_STAR, - STATE(3580), 1, + ACTIONS(6159), 1, + anon_sym_async, + ACTIONS(6811), 1, + anon_sym_static, + ACTIONS(6813), 1, + anon_sym_readonly, + ACTIONS(6815), 1, + anon_sym_declare, + ACTIONS(6817), 1, + anon_sym_abstract, + STATE(3436), 1, sym_comment, - STATE(4917), 1, + STATE(3533), 1, + sym_override_modifier, + STATE(3831), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6800), 2, + ACTIONS(6161), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(4376), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124673] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(3437), 1, + sym_comment, + STATE(4823), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2900), 21, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325661,6 +313462,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -325673,7 +313476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124430] = 11, + [124733] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325682,19 +313485,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3581), 1, + STATE(3438), 1, sym_comment, - STATE(4830), 1, + STATE(4821), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -325722,56 +313525,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124490] = 19, + [124793] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4947), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5681), 1, - anon_sym_STAR, - ACTIONS(5685), 1, + STATE(3439), 1, + sym_comment, + STATE(4701), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_async, - ACTIONS(6802), 1, + anon_sym_new, + sym_identifier, anon_sym_static, - ACTIONS(6804), 1, anon_sym_readonly, - ACTIONS(6806), 1, + anon_sym_get, + anon_sym_set, anon_sym_declare, - ACTIONS(6808), 1, - anon_sym_abstract, - STATE(3582), 1, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124853] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(3440), 1, sym_comment, - STATE(3677), 1, - sym_override_modifier, - STATE(3951), 1, + STATE(4702), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(5689), 2, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(4151), 2, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [124913] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(3441), 1, + sym_comment, + STATE(4779), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 16, + ACTIONS(987), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -325779,7 +313672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124566] = 11, + [124973] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325788,19 +313681,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3583), 1, + STATE(3442), 1, sym_comment, - STATE(4805), 1, + STATE(4820), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -325828,7 +313721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124626] = 11, + [125033] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325837,19 +313730,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3584), 1, + STATE(3443), 1, sym_comment, - STATE(4969), 1, + STATE(4816), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -325877,7 +313770,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124686] = 11, + [125093] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6819), 1, + anon_sym_LPAREN, + ACTIONS(6821), 1, + anon_sym_DOT, + STATE(3444), 1, + sym_comment, + STATE(3594), 1, + sym_arguments, + ACTIONS(4247), 31, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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_abstract, + [125145] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325886,19 +313824,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3585), 1, + STATE(3445), 1, sym_comment, - STATE(4950), 1, + STATE(4675), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -325926,7 +313864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124746] = 11, + [125205] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325935,19 +313873,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3586), 1, + STATE(3446), 1, sym_comment, - STATE(4835), 1, + STATE(4673), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -325975,7 +313913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124806] = 11, + [125265] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325984,19 +313922,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3587), 1, + STATE(3447), 1, sym_comment, - STATE(4948), 1, + STATE(4690), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -326024,7 +313962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124866] = 11, + [125325] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326033,19 +313971,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3588), 1, + STATE(3448), 1, sym_comment, - STATE(4774), 1, + STATE(4692), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -326073,7 +314011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124926] = 11, + [125385] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326082,19 +314020,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3589), 1, + STATE(3449), 1, sym_comment, - STATE(4766), 1, + STATE(4653), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -326122,7 +314060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124986] = 11, + [125445] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326131,19 +314069,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3590), 1, + STATE(3450), 1, sym_comment, - STATE(4914), 1, + STATE(4810), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -326171,7 +314109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125046] = 11, + [125505] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326180,19 +314118,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3591), 1, + STATE(3451), 1, sym_comment, - STATE(4898), 1, + STATE(4696), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -326220,7 +314158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125106] = 11, + [125565] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326229,19 +314167,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3592), 1, + STATE(3452), 1, sym_comment, - STATE(4946), 1, + STATE(4731), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -326269,7 +314207,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125166] = 11, + [125625] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326278,19 +314216,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3593), 1, + STATE(3453), 1, sym_comment, - STATE(4811), 1, + STATE(4822), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -326318,7 +314256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125226] = 11, + [125685] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326327,19 +314265,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3594), 1, + STATE(3454), 1, sym_comment, - STATE(4765), 1, + STATE(4618), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -326367,7 +314305,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125286] = 11, + [125745] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326376,19 +314314,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3595), 1, + STATE(3455), 1, sym_comment, - STATE(4817), 1, + STATE(4784), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -326416,7 +314354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125346] = 11, + [125805] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326425,19 +314363,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3596), 1, + STATE(3456), 1, sym_comment, - STATE(4833), 1, + STATE(4651), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -326465,7 +314403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125406] = 11, + [125865] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326474,19 +314412,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3597), 1, + STATE(3457), 1, sym_comment, - STATE(4826), 1, + STATE(4641), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -326514,34 +314452,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125466] = 7, + [125925] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6810), 1, - anon_sym_LPAREN, - ACTIONS(6812), 1, - anon_sym_DOT, - STATE(3598), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5440), 1, + anon_sym_LBRACK, + STATE(3458), 1, sym_comment, - STATE(3732), 1, - sym_arguments, - ACTIONS(4231), 31, + STATE(4749), 1, + sym__property_name, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(987), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2900), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -326558,8 +314501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [125518] = 11, + [125985] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326568,19 +314510,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3599), 1, + STATE(3459), 1, sym_comment, - STATE(4838), 1, + STATE(4843), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -326608,7 +314550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125578] = 11, + [126045] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326617,19 +314559,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3600), 1, + STATE(3460), 1, sym_comment, - STATE(4862), 1, + STATE(4826), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -326657,7 +314599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125638] = 11, + [126105] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326666,19 +314608,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3601), 1, + STATE(3461), 1, sym_comment, - STATE(4822), 1, + STATE(4758), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -326706,7 +314648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125698] = 11, + [126165] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326715,19 +314657,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3602), 1, + STATE(3462), 1, sym_comment, - STATE(4925), 1, + STATE(4715), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(987), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -326755,47 +314697,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125758] = 19, + [126225] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6124), 1, + ACTIONS(5371), 1, anon_sym_STAR, - ACTIONS(6126), 1, + ACTIONS(5375), 1, anon_sym_async, - ACTIONS(6814), 1, + ACTIONS(6823), 1, anon_sym_static, - ACTIONS(6816), 1, + ACTIONS(6825), 1, anon_sym_readonly, - ACTIONS(6818), 1, + ACTIONS(6827), 1, anon_sym_declare, - ACTIONS(6820), 1, + ACTIONS(6829), 1, anon_sym_abstract, - STATE(3603), 1, + STATE(3463), 1, sym_comment, - STATE(3666), 1, + STATE(3523), 1, sym_override_modifier, - STATE(3949), 1, + STATE(3819), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6128), 2, + ACTIONS(5379), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 16, + ACTIONS(4376), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326812,7 +314754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125834] = 11, + [126301] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326821,22 +314763,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3604), 1, + ACTIONS(6831), 1, + anon_sym_RBRACE, + STATE(3464), 1, sym_comment, - STATE(4843), 1, + STATE(5037), 1, sym__property_name, + STATE(5722), 1, + sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, ACTIONS(2900), 23, anon_sym_export, anon_sym_type, @@ -326861,7 +314803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125894] = 11, + [126362] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326870,22 +314812,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3605), 1, + ACTIONS(6833), 1, + anon_sym_RBRACE, + STATE(3465), 1, sym_comment, - STATE(4845), 1, + STATE(5555), 1, sym__property_name, + STATE(6757), 1, + sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, ACTIONS(2900), 23, anon_sym_export, anon_sym_type, @@ -326910,7 +314852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125954] = 11, + [126423] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326919,22 +314861,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3606), 1, + ACTIONS(6835), 1, + anon_sym_RBRACE, + STATE(3466), 1, sym_comment, - STATE(4806), 1, + STATE(5555), 1, sym__property_name, + STATE(6757), 1, + sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, ACTIONS(2900), 23, anon_sym_export, anon_sym_type, @@ -326959,7 +314901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126014] = 11, + [126484] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326968,22 +314910,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3607), 1, + ACTIONS(6837), 1, + anon_sym_RBRACE, + STATE(3467), 1, sym_comment, - STATE(4931), 1, + STATE(5555), 1, sym__property_name, + STATE(6757), 1, + sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, ACTIONS(2900), 23, anon_sym_export, anon_sym_type, @@ -327008,7 +314950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126074] = 11, + [126545] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327017,39 +314959,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(2908), 1, + anon_sym_override, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3608), 1, + ACTIONS(5985), 1, + anon_sym_STAR, + ACTIONS(6839), 1, + anon_sym_static, + STATE(3468), 1, sym_comment, - STATE(4920), 1, + STATE(3531), 1, + sym_override_modifier, + STATE(4808), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2900), 23, + ACTIONS(2900), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -327057,7 +315004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126134] = 11, + [126616] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327066,22 +315013,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3609), 1, + ACTIONS(6841), 1, + anon_sym_RBRACE, + STATE(3469), 1, sym_comment, - STATE(4844), 1, + STATE(5555), 1, sym__property_name, + STATE(6757), 1, + sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, ACTIONS(2900), 23, anon_sym_export, anon_sym_type, @@ -327106,7 +315053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126194] = 11, + [126677] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327115,22 +315062,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3610), 1, + ACTIONS(6843), 1, + anon_sym_RBRACE, + STATE(3470), 1, sym_comment, - STATE(4917), 1, + STATE(5252), 1, sym__property_name, + STATE(6280), 1, + sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, ACTIONS(2900), 23, anon_sym_export, anon_sym_type, @@ -327155,7 +315102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126254] = 12, + [126738] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327164,20 +315111,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6822), 1, + ACTIONS(6845), 1, anon_sym_RBRACE, - STATE(3611), 1, + STATE(3471), 1, sym_comment, - STATE(5161), 1, + STATE(5555), 1, sym__property_name, - STATE(6167), 1, + STATE(6757), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -327204,88 +315151,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126315] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [126799] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(6824), 1, - anon_sym_RBRACE, - STATE(3612), 1, - sym_comment, - STATE(5625), 1, - sym__property_name, - STATE(6506), 1, - sym_enum_assignment, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(2872), 1, anon_sym_namespace, + ACTIONS(2874), 1, + anon_sym_import, + ACTIONS(2876), 1, + anon_sym_var, + ACTIONS(2878), 1, anon_sym_let, + ACTIONS(2880), 1, + anon_sym_const, + ACTIONS(2884), 1, + anon_sym_class, + ACTIONS(2886), 1, anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, + ACTIONS(2888), 1, + anon_sym_function, + ACTIONS(2890), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, + ACTIONS(2892), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [126376] = 15, + ACTIONS(2894), 1, + anon_sym_abstract, + ACTIONS(2896), 1, + anon_sym_interface, + ACTIONS(2898), 1, + anon_sym_enum, + ACTIONS(2910), 1, + anon_sym_type, + ACTIONS(6847), 1, + anon_sym_default, + STATE(1399), 1, + sym_internal_module, + STATE(1439), 1, + sym_declaration, + STATE(3472), 1, + sym_comment, + STATE(5232), 1, + aux_sym_export_statement_repeat1, + STATE(5410), 1, + sym_decorator, + STATE(1444), 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, + [126884] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6674), 1, - anon_sym_readonly, - ACTIONS(6826), 1, + ACTIONS(6849), 1, anon_sym_STAR, - STATE(3613), 1, + ACTIONS(6851), 1, + anon_sym_readonly, + STATE(3473), 1, sym_comment, - STATE(3673), 1, + STATE(3522), 1, sym_override_modifier, - STATE(3965), 1, + STATE(3812), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6828), 2, + ACTIONS(6853), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 19, + ACTIONS(4376), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327305,7 +315264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126443] = 12, + [126951] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327314,20 +315273,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6830), 1, + ACTIONS(6855), 1, anon_sym_RBRACE, - STATE(3614), 1, + STATE(3474), 1, sym_comment, - STATE(5625), 1, + STATE(5344), 1, sym__property_name, - STATE(6506), 1, + STATE(6259), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -327354,48 +315313,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126504] = 12, + [127012] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2663), 1, + anon_sym_namespace, + ACTIONS(2669), 1, + anon_sym_import, + ACTIONS(2671), 1, + anon_sym_var, + ACTIONS(2673), 1, + anon_sym_let, + ACTIONS(2675), 1, + anon_sym_const, + ACTIONS(2683), 1, + anon_sym_class, + ACTIONS(2685), 1, + anon_sym_async, + ACTIONS(2687), 1, + anon_sym_function, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(2700), 1, + anon_sym_declare, + ACTIONS(2704), 1, + anon_sym_abstract, + ACTIONS(2706), 1, + anon_sym_interface, + ACTIONS(2708), 1, + anon_sym_enum, + ACTIONS(2738), 1, + anon_sym_type, + ACTIONS(2740), 1, + anon_sym_module, + ACTIONS(2742), 1, + anon_sym_global, + STATE(1514), 1, + sym_declaration, + STATE(1557), 1, + sym_internal_module, + STATE(3475), 1, + sym_comment, + STATE(5398), 1, + aux_sym_export_statement_repeat1, + STATE(5410), 1, + sym_decorator, + STATE(1558), 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, + [127097] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(2872), 1, + anon_sym_namespace, + ACTIONS(2874), 1, + anon_sym_import, + ACTIONS(2876), 1, + anon_sym_var, + ACTIONS(2878), 1, + anon_sym_let, + ACTIONS(2880), 1, + anon_sym_const, + ACTIONS(2884), 1, + anon_sym_class, + ACTIONS(2886), 1, + anon_sym_async, + ACTIONS(2888), 1, + anon_sym_function, + ACTIONS(2890), 1, + anon_sym_declare, + ACTIONS(2894), 1, + anon_sym_abstract, + ACTIONS(2896), 1, + anon_sym_interface, + ACTIONS(2898), 1, + anon_sym_enum, + ACTIONS(2910), 1, + anon_sym_type, + ACTIONS(2912), 1, + anon_sym_module, + ACTIONS(2914), 1, + anon_sym_global, + STATE(1332), 1, + sym_declaration, + STATE(1399), 1, + sym_internal_module, + STATE(3476), 1, + sym_comment, + STATE(5232), 1, + aux_sym_export_statement_repeat1, + STATE(5410), 1, + sym_decorator, + STATE(1444), 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, + [127182] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(5132), 1, + anon_sym_STAR, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6832), 1, - anon_sym_RBRACE, - STATE(3615), 1, + ACTIONS(5144), 1, + anon_sym_async, + ACTIONS(5146), 1, + anon_sym_readonly, + ACTIONS(6857), 1, + anon_sym_static, + STATE(3477), 1, sym_comment, - STATE(5625), 1, + STATE(3516), 1, + sym_override_modifier, + STATE(3892), 1, sym__property_name, - STATE(6506), 1, - sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + ACTIONS(5148), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4376), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -327403,7 +315489,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126565] = 12, + [127253] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(2936), 1, + anon_sym_type, + ACTIONS(2938), 1, + anon_sym_namespace, + ACTIONS(2940), 1, + anon_sym_import, + ACTIONS(2942), 1, + anon_sym_var, + ACTIONS(2944), 1, + anon_sym_let, + ACTIONS(2946), 1, + anon_sym_const, + ACTIONS(2948), 1, + anon_sym_class, + ACTIONS(2950), 1, + anon_sym_async, + ACTIONS(2952), 1, + anon_sym_function, + ACTIONS(2954), 1, + anon_sym_declare, + ACTIONS(2958), 1, + anon_sym_abstract, + ACTIONS(2962), 1, + anon_sym_interface, + ACTIONS(2964), 1, + anon_sym_enum, + ACTIONS(4520), 1, + anon_sym_module, + ACTIONS(6859), 1, + anon_sym_default, + STATE(3478), 1, + sym_comment, + STATE(4878), 1, + sym_internal_module, + STATE(5051), 1, + sym_declaration, + STATE(5382), 1, + aux_sym_export_statement_repeat1, + STATE(5410), 1, + sym_decorator, + STATE(5171), 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, + [127338] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327412,20 +315559,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6834), 1, + ACTIONS(6861), 1, anon_sym_RBRACE, - STATE(3616), 1, + STATE(3479), 1, sym_comment, - STATE(5625), 1, + STATE(5555), 1, sym__property_name, - STATE(6506), 1, + STATE(6757), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -327452,38 +315599,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126626] = 15, + [127399] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6836), 1, + ACTIONS(6863), 1, anon_sym_static, - ACTIONS(6838), 1, + ACTIONS(6865), 1, anon_sym_readonly, - ACTIONS(6840), 1, + ACTIONS(6867), 1, anon_sym_abstract, - STATE(3617), 1, + STATE(3480), 1, sym_comment, - STATE(3738), 1, + STATE(3590), 1, sym_override_modifier, - STATE(4217), 1, + STATE(4224), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 20, + ACTIONS(4376), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327504,68 +315651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126693] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2754), 1, - anon_sym_namespace, - ACTIONS(2756), 1, - anon_sym_import, - ACTIONS(2758), 1, - anon_sym_var, - ACTIONS(2760), 1, - anon_sym_let, - ACTIONS(2762), 1, - anon_sym_const, - ACTIONS(2766), 1, - anon_sym_class, - ACTIONS(2768), 1, - anon_sym_async, - ACTIONS(2770), 1, - anon_sym_function, - ACTIONS(2772), 1, - anon_sym_declare, - ACTIONS(2774), 1, - anon_sym_module, - ACTIONS(2776), 1, - anon_sym_abstract, - ACTIONS(2778), 1, - anon_sym_interface, - ACTIONS(2780), 1, - anon_sym_enum, - ACTIONS(2928), 1, - anon_sym_type, - ACTIONS(6842), 1, - anon_sym_default, - STATE(1224), 1, - sym_internal_module, - STATE(1327), 1, - sym_declaration, - STATE(3618), 1, - sym_comment, - STATE(5213), 1, - aux_sym_export_statement_repeat1, - STATE(5700), 1, - sym_decorator, - STATE(1220), 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, - [126778] = 12, + [127466] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327574,20 +315660,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6869), 1, anon_sym_RBRACE, - STATE(3619), 1, + STATE(3481), 1, sym_comment, - STATE(5496), 1, + STATE(5555), 1, sym__property_name, - STATE(6149), 1, + STATE(6757), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -327614,7 +315700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126839] = 12, + [127527] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327623,20 +315709,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6846), 1, + ACTIONS(6871), 1, anon_sym_RBRACE, - STATE(3620), 1, + STATE(3482), 1, sym_comment, - STATE(5625), 1, + STATE(5555), 1, sym__property_name, - STATE(6506), 1, + STATE(6757), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -327663,7 +315749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126900] = 12, + [127588] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327672,20 +315758,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6848), 1, + ACTIONS(6873), 1, anon_sym_RBRACE, - STATE(3621), 1, + STATE(3483), 1, sym_comment, - STATE(5625), 1, + STATE(5555), 1, sym__property_name, - STATE(6506), 1, + STATE(6757), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -327712,38 +315798,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [126961] = 15, + [127649] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(2758), 1, + anon_sym_namespace, + ACTIONS(2760), 1, + anon_sym_import, + ACTIONS(2762), 1, + anon_sym_var, + ACTIONS(2764), 1, + anon_sym_let, + ACTIONS(2766), 1, + anon_sym_const, + ACTIONS(2770), 1, + anon_sym_class, + ACTIONS(2772), 1, + anon_sym_async, + ACTIONS(2774), 1, + anon_sym_function, + ACTIONS(2776), 1, + anon_sym_declare, + ACTIONS(2778), 1, + anon_sym_module, + ACTIONS(2780), 1, + anon_sym_abstract, + ACTIONS(2782), 1, + anon_sym_interface, + ACTIONS(2784), 1, + anon_sym_enum, + ACTIONS(2922), 1, + anon_sym_type, + ACTIONS(6875), 1, + anon_sym_default, + STATE(1348), 1, + sym_internal_module, + STATE(1403), 1, + sym_declaration, + STATE(3484), 1, + sym_comment, + STATE(5102), 1, + aux_sym_export_statement_repeat1, + STATE(5410), 1, + sym_decorator, + STATE(1327), 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, + [127734] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4947), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6140), 1, - anon_sym_static, - ACTIONS(6142), 1, - anon_sym_readonly, - ACTIONS(6144), 1, - anon_sym_abstract, - STATE(3622), 1, + ACTIONS(6877), 1, + anon_sym_RBRACE, + STATE(3485), 1, sym_comment, - STATE(3683), 1, - sym_override_modifier, - STATE(4436), 1, + STATE(5555), 1, sym__property_name, - ACTIONS(3894), 2, + STATE(6757), 1, + sym_enum_assignment, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 20, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327751,12 +315892,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -327764,7 +315908,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127028] = 12, + [127795] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2663), 1, + anon_sym_namespace, + ACTIONS(2669), 1, + anon_sym_import, + ACTIONS(2671), 1, + anon_sym_var, + ACTIONS(2673), 1, + anon_sym_let, + ACTIONS(2675), 1, + anon_sym_const, + ACTIONS(2683), 1, + anon_sym_class, + ACTIONS(2685), 1, + anon_sym_async, + ACTIONS(2687), 1, + anon_sym_function, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(2700), 1, + anon_sym_declare, + ACTIONS(2702), 1, + anon_sym_module, + ACTIONS(2704), 1, + anon_sym_abstract, + ACTIONS(2706), 1, + anon_sym_interface, + ACTIONS(2708), 1, + anon_sym_enum, + ACTIONS(2738), 1, + anon_sym_type, + ACTIONS(6879), 1, + anon_sym_default, + STATE(1473), 1, + sym_declaration, + STATE(1557), 1, + sym_internal_module, + STATE(3486), 1, + sym_comment, + STATE(5398), 1, + aux_sym_export_statement_repeat1, + STATE(5410), 1, + sym_decorator, + STATE(1558), 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, + [127880] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327773,20 +315978,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6850), 1, + ACTIONS(6881), 1, anon_sym_RBRACE, - STATE(3623), 1, + STATE(3487), 1, sym_comment, - STATE(5625), 1, + STATE(5555), 1, sym__property_name, - STATE(6506), 1, + STATE(6757), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -327813,7 +316018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127089] = 12, + [127941] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327822,20 +316027,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6852), 1, + ACTIONS(6883), 1, anon_sym_RBRACE, - STATE(3624), 1, + STATE(3488), 1, sym_comment, - STATE(5625), 1, + STATE(5154), 1, sym__property_name, - STATE(6506), 1, + STATE(6188), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -327862,39 +316067,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127150] = 12, + [128002] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(6854), 1, - anon_sym_RBRACE, - STATE(3625), 1, + STATE(3489), 1, sym_comment, - STATE(5625), 1, - sym__property_name, - STATE(6506), 1, - sym_enum_assignment, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4312), 33, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + 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, @@ -327911,54 +316107,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127211] = 24, + anon_sym_abstract, + [128047] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2830), 1, + ACTIONS(2758), 1, anon_sym_namespace, - ACTIONS(2832), 1, + ACTIONS(2760), 1, anon_sym_import, - ACTIONS(2834), 1, + ACTIONS(2762), 1, anon_sym_var, - ACTIONS(2836), 1, + ACTIONS(2764), 1, anon_sym_let, - ACTIONS(2838), 1, + ACTIONS(2766), 1, anon_sym_const, - ACTIONS(2842), 1, + ACTIONS(2770), 1, anon_sym_class, - ACTIONS(2844), 1, + ACTIONS(2772), 1, anon_sym_async, - ACTIONS(2846), 1, + ACTIONS(2774), 1, anon_sym_function, - ACTIONS(2848), 1, + ACTIONS(2776), 1, anon_sym_declare, - ACTIONS(2852), 1, + ACTIONS(2780), 1, anon_sym_abstract, - ACTIONS(2854), 1, + ACTIONS(2782), 1, anon_sym_interface, - ACTIONS(2856), 1, + ACTIONS(2784), 1, anon_sym_enum, - ACTIONS(2916), 1, + ACTIONS(2922), 1, anon_sym_type, - ACTIONS(2918), 1, + ACTIONS(2924), 1, anon_sym_module, - ACTIONS(2920), 1, + ACTIONS(2926), 1, anon_sym_global, - STATE(1094), 1, - sym_declaration, - STATE(1102), 1, + STATE(1348), 1, sym_internal_module, - STATE(3626), 1, + STATE(1377), 1, + sym_declaration, + STATE(3490), 1, sym_comment, - STATE(5341), 1, + STATE(5102), 1, aux_sym_export_statement_repeat1, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(1105), 13, + STATE(1327), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -327972,61 +316169,68 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [127296] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, + [128132] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4937), 1, - anon_sym_STAR, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(4949), 1, - anon_sym_async, - ACTIONS(4951), 1, - anon_sym_readonly, - ACTIONS(6856), 1, - anon_sym_static, - STATE(3627), 1, - sym_comment, - STATE(3670), 1, - sym_override_modifier, - STATE(4017), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4953), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4372), 17, - anon_sym_export, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(2936), 1, anon_sym_type, + ACTIONS(2938), 1, anon_sym_namespace, + ACTIONS(2940), 1, + anon_sym_import, + ACTIONS(2942), 1, + anon_sym_var, + ACTIONS(2944), 1, anon_sym_let, - anon_sym_new, - sym_identifier, + ACTIONS(2946), 1, + anon_sym_const, + ACTIONS(2948), 1, + anon_sym_class, + ACTIONS(2950), 1, + anon_sym_async, + ACTIONS(2952), 1, + anon_sym_function, + ACTIONS(2954), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, + ACTIONS(2956), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [127367] = 12, + ACTIONS(2958), 1, + anon_sym_abstract, + ACTIONS(2960), 1, + anon_sym_global, + ACTIONS(2962), 1, + anon_sym_interface, + ACTIONS(2964), 1, + anon_sym_enum, + STATE(3491), 1, + sym_comment, + STATE(4878), 1, + sym_internal_module, + STATE(4945), 1, + sym_declaration, + STATE(5382), 1, + aux_sym_export_statement_repeat1, + STATE(5410), 1, + sym_decorator, + STATE(5171), 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, + [128217] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -328035,20 +316239,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6858), 1, + ACTIONS(6885), 1, anon_sym_RBRACE, - STATE(3628), 1, + STATE(3492), 1, sym_comment, - STATE(5625), 1, + STATE(5555), 1, sym__property_name, - STATE(6506), 1, + STATE(6757), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -328075,7 +316279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127428] = 12, + [128278] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -328084,20 +316288,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6860), 1, + ACTIONS(6887), 1, anon_sym_RBRACE, - STATE(3629), 1, + STATE(3493), 1, sym_comment, - STATE(5625), 1, + STATE(5555), 1, sym__property_name, - STATE(6506), 1, + STATE(6757), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -328124,93 +316328,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127489] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2663), 1, - anon_sym_namespace, - ACTIONS(2669), 1, - anon_sym_import, - ACTIONS(2671), 1, - anon_sym_var, - ACTIONS(2673), 1, - anon_sym_let, - ACTIONS(2675), 1, - anon_sym_const, - ACTIONS(2683), 1, - anon_sym_class, - ACTIONS(2685), 1, - anon_sym_async, - ACTIONS(2687), 1, - anon_sym_function, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, - anon_sym_declare, - ACTIONS(2704), 1, - anon_sym_abstract, - ACTIONS(2706), 1, - anon_sym_interface, - ACTIONS(2708), 1, - anon_sym_enum, - ACTIONS(2738), 1, - anon_sym_type, - ACTIONS(2740), 1, - anon_sym_module, - ACTIONS(2742), 1, - anon_sym_global, - STATE(1575), 1, - sym_internal_module, - STATE(1588), 1, - sym_declaration, - STATE(3630), 1, - sym_comment, - STATE(5414), 1, - aux_sym_export_statement_repeat1, - STATE(5700), 1, - sym_decorator, - STATE(1573), 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, - [127574] = 12, + [128339] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(4400), 1, + anon_sym_override, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6862), 1, - anon_sym_RBRACE, - STATE(3631), 1, + ACTIONS(6174), 1, + anon_sym_static, + ACTIONS(6176), 1, + anon_sym_readonly, + ACTIONS(6178), 1, + anon_sym_abstract, + STATE(3494), 1, sym_comment, - STATE(5625), 1, + STATE(3582), 1, + sym_override_modifier, + STATE(4122), 1, sym__property_name, - STATE(6506), 1, - sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4376), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -328218,15 +316367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -328234,7 +316380,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127635] = 12, + [128406] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -328243,20 +316389,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6864), 1, + ACTIONS(6889), 1, anon_sym_RBRACE, - STATE(3632), 1, + STATE(3495), 1, sym_comment, - STATE(5625), 1, + STATE(5555), 1, sym__property_name, - STATE(6506), 1, + STATE(6757), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -328283,100 +316429,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127696] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2868), 1, - anon_sym_namespace, - ACTIONS(2870), 1, - anon_sym_import, - ACTIONS(2872), 1, - anon_sym_var, - ACTIONS(2874), 1, - anon_sym_let, - ACTIONS(2876), 1, - anon_sym_const, - ACTIONS(2880), 1, - anon_sym_class, - ACTIONS(2882), 1, - anon_sym_async, - ACTIONS(2884), 1, - anon_sym_function, - ACTIONS(2886), 1, - anon_sym_declare, - ACTIONS(2890), 1, - anon_sym_abstract, - ACTIONS(2892), 1, - anon_sym_interface, - ACTIONS(2894), 1, - anon_sym_enum, - ACTIONS(2910), 1, - anon_sym_type, - ACTIONS(2912), 1, - anon_sym_module, - ACTIONS(2914), 1, - anon_sym_global, - STATE(1358), 1, - sym_declaration, - STATE(1379), 1, - sym_internal_module, - STATE(3633), 1, - sym_comment, - STATE(5403), 1, - aux_sym_export_statement_repeat1, - STATE(5700), 1, - sym_decorator, - STATE(1382), 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, - [127781] = 12, + [128467] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5477), 1, - anon_sym_LBRACK, - ACTIONS(6866), 1, - anon_sym_RBRACE, - STATE(3634), 1, + ACTIONS(6891), 1, + anon_sym_AT, + STATE(3557), 1, + sym_decorator, + STATE(3496), 2, sym_comment, - STATE(5625), 1, - sym__property_name, - STATE(6506), 1, - sym_enum_assignment, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2900), 23, + aux_sym_export_statement_repeat1, + ACTIONS(4239), 30, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -328393,49 +316471,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127842] = 17, + anon_sym_abstract, + [128516] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4396), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6098), 1, - anon_sym_STAR, - ACTIONS(6100), 1, - anon_sym_async, - ACTIONS(6102), 1, + ACTIONS(6679), 1, anon_sym_readonly, - ACTIONS(6868), 1, - anon_sym_static, - STATE(3635), 1, + ACTIONS(6894), 1, + anon_sym_STAR, + STATE(3497), 1, sym_comment, - STATE(3679), 1, + STATE(3520), 1, sym_override_modifier, - STATE(4042), 1, + STATE(3796), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6104), 2, + ACTIONS(6896), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 17, + ACTIONS(4376), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -328447,7 +316524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127913] = 12, + [128583] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -328456,20 +316533,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6870), 1, + ACTIONS(6898), 1, anon_sym_RBRACE, - STATE(3636), 1, + STATE(3498), 1, sym_comment, - STATE(5625), 1, + STATE(5555), 1, sym__property_name, - STATE(6506), 1, + STATE(6757), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -328496,7 +316573,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127974] = 12, + [128644] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(2796), 1, + anon_sym_namespace, + ACTIONS(2798), 1, + anon_sym_import, + ACTIONS(2800), 1, + anon_sym_var, + ACTIONS(2802), 1, + anon_sym_let, + ACTIONS(2804), 1, + anon_sym_const, + ACTIONS(2808), 1, + anon_sym_class, + ACTIONS(2810), 1, + anon_sym_async, + ACTIONS(2812), 1, + anon_sym_function, + ACTIONS(2814), 1, + anon_sym_declare, + ACTIONS(2818), 1, + anon_sym_abstract, + ACTIONS(2820), 1, + anon_sym_interface, + ACTIONS(2822), 1, + anon_sym_enum, + ACTIONS(2928), 1, + anon_sym_type, + ACTIONS(2930), 1, + anon_sym_module, + ACTIONS(2932), 1, + anon_sym_global, + STATE(3499), 1, + sym_comment, + STATE(5201), 1, + aux_sym_export_statement_repeat1, + STATE(5410), 1, + sym_decorator, + STATE(6385), 1, + sym_internal_module, + STATE(6491), 1, + sym_declaration, + STATE(6360), 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, + [128729] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -328505,20 +316643,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6872), 1, + ACTIONS(6900), 1, anon_sym_RBRACE, - STATE(3637), 1, + STATE(3500), 1, sym_comment, - STATE(5190), 1, + STATE(5555), 1, sym__property_name, - STATE(5905), 1, + STATE(6757), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -328545,48 +316683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128035] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(3638), 1, - sym_comment, - ACTIONS(4304), 33, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - 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_abstract, - [128080] = 12, + [128790] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -328595,20 +316692,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6874), 1, + ACTIONS(6902), 1, anon_sym_RBRACE, - STATE(3639), 1, + STATE(3501), 1, sym_comment, - STATE(5625), 1, + STATE(5555), 1, sym__property_name, - STATE(6506), 1, + STATE(6757), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -328635,7 +316732,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128141] = 12, + [128851] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -328644,20 +316741,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6876), 1, + ACTIONS(6904), 1, anon_sym_RBRACE, - STATE(3640), 1, + STATE(3502), 1, sym_comment, - STATE(5625), 1, + STATE(5555), 1, sym__property_name, - STATE(6506), 1, + STATE(6757), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -328684,7 +316781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128202] = 12, + [128912] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -328693,20 +316790,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6878), 1, + ACTIONS(6906), 1, anon_sym_RBRACE, - STATE(3641), 1, + STATE(3503), 1, sym_comment, - STATE(5625), 1, + STATE(5279), 1, sym__property_name, - STATE(6506), 1, + STATE(6012), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -328733,115 +316830,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128263] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2792), 1, - anon_sym_namespace, - ACTIONS(2794), 1, - anon_sym_import, - ACTIONS(2796), 1, - anon_sym_var, - ACTIONS(2798), 1, - anon_sym_let, - ACTIONS(2800), 1, - anon_sym_const, - ACTIONS(2804), 1, - anon_sym_class, - ACTIONS(2806), 1, - anon_sym_async, - ACTIONS(2808), 1, - anon_sym_function, - ACTIONS(2810), 1, - anon_sym_declare, - ACTIONS(2814), 1, - anon_sym_abstract, - ACTIONS(2816), 1, - anon_sym_interface, - ACTIONS(2818), 1, - anon_sym_enum, - ACTIONS(2922), 1, - anon_sym_type, - ACTIONS(2924), 1, - anon_sym_module, - ACTIONS(2926), 1, - anon_sym_global, - STATE(3642), 1, - sym_comment, - STATE(5327), 1, - aux_sym_export_statement_repeat1, - STATE(5700), 1, - sym_decorator, - STATE(6915), 1, - sym_internal_module, - STATE(6956), 1, - sym_declaration, - STATE(6895), 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, - [128348] = 24, + [128973] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2792), 1, + ACTIONS(2834), 1, anon_sym_namespace, - ACTIONS(2794), 1, + ACTIONS(2836), 1, anon_sym_import, - ACTIONS(2796), 1, + ACTIONS(2838), 1, anon_sym_var, - ACTIONS(2798), 1, + ACTIONS(2840), 1, anon_sym_let, - ACTIONS(2800), 1, + ACTIONS(2842), 1, anon_sym_const, - ACTIONS(2804), 1, + ACTIONS(2846), 1, anon_sym_class, - ACTIONS(2806), 1, + ACTIONS(2848), 1, anon_sym_async, - ACTIONS(2808), 1, + ACTIONS(2850), 1, anon_sym_function, - ACTIONS(2810), 1, + ACTIONS(2852), 1, anon_sym_declare, - ACTIONS(2812), 1, + ACTIONS(2854), 1, anon_sym_module, - ACTIONS(2814), 1, + ACTIONS(2856), 1, anon_sym_abstract, - ACTIONS(2816), 1, + ACTIONS(2858), 1, anon_sym_interface, - ACTIONS(2818), 1, + ACTIONS(2860), 1, anon_sym_enum, - ACTIONS(2922), 1, + ACTIONS(2916), 1, anon_sym_type, - ACTIONS(6880), 1, + ACTIONS(6908), 1, anon_sym_default, - STATE(3643), 1, + STATE(1022), 1, + sym_declaration, + STATE(1094), 1, + sym_internal_module, + STATE(3504), 1, sym_comment, - STATE(5327), 1, + STATE(4991), 1, aux_sym_export_statement_repeat1, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(6915), 1, - sym_internal_module, - STATE(7122), 1, - sym_declaration, - STATE(6895), 13, + STATE(1100), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -328855,7 +316891,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [128433] = 12, + [129058] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -328864,20 +316900,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6882), 1, + ACTIONS(6910), 1, anon_sym_RBRACE, - STATE(3644), 1, + STATE(3505), 1, sym_comment, - STATE(5625), 1, + STATE(5313), 1, sym__property_name, - STATE(6506), 1, + STATE(6323), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -328904,298 +316940,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128494] = 24, + [129119] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(2936), 1, - anon_sym_type, - ACTIONS(2938), 1, - anon_sym_namespace, - ACTIONS(2940), 1, - anon_sym_import, - ACTIONS(2942), 1, - anon_sym_var, - ACTIONS(2944), 1, - anon_sym_let, - ACTIONS(2946), 1, - anon_sym_const, - ACTIONS(2948), 1, - anon_sym_class, - ACTIONS(2950), 1, - anon_sym_async, - ACTIONS(2952), 1, - anon_sym_function, - ACTIONS(2954), 1, - anon_sym_declare, - ACTIONS(2956), 1, - anon_sym_module, - ACTIONS(2958), 1, - anon_sym_abstract, - ACTIONS(2960), 1, - anon_sym_global, - ACTIONS(2962), 1, - anon_sym_interface, - ACTIONS(2964), 1, - anon_sym_enum, - STATE(3645), 1, - sym_comment, - STATE(5206), 1, - sym_internal_module, - STATE(5248), 1, - sym_declaration, - STATE(5375), 1, - aux_sym_export_statement_repeat1, - STATE(5700), 1, - sym_decorator, - STATE(5192), 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, - [128579] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2663), 1, + ACTIONS(2796), 1, anon_sym_namespace, - ACTIONS(2669), 1, + ACTIONS(2798), 1, anon_sym_import, - ACTIONS(2671), 1, + ACTIONS(2800), 1, anon_sym_var, - ACTIONS(2673), 1, + ACTIONS(2802), 1, anon_sym_let, - ACTIONS(2675), 1, + ACTIONS(2804), 1, anon_sym_const, - ACTIONS(2683), 1, + ACTIONS(2808), 1, anon_sym_class, - ACTIONS(2685), 1, + ACTIONS(2810), 1, anon_sym_async, - ACTIONS(2687), 1, + ACTIONS(2812), 1, anon_sym_function, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2700), 1, + ACTIONS(2814), 1, anon_sym_declare, - ACTIONS(2702), 1, + ACTIONS(2816), 1, anon_sym_module, - ACTIONS(2704), 1, - anon_sym_abstract, - ACTIONS(2706), 1, - anon_sym_interface, - ACTIONS(2708), 1, - anon_sym_enum, - ACTIONS(2738), 1, - anon_sym_type, - ACTIONS(6884), 1, - anon_sym_default, - STATE(1575), 1, - sym_internal_module, - STATE(1650), 1, - sym_declaration, - STATE(3646), 1, - sym_comment, - STATE(5414), 1, - aux_sym_export_statement_repeat1, - STATE(5700), 1, - sym_decorator, - STATE(1573), 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, - [128664] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2754), 1, - anon_sym_namespace, - ACTIONS(2756), 1, - anon_sym_import, - ACTIONS(2758), 1, - anon_sym_var, - ACTIONS(2760), 1, - anon_sym_let, - ACTIONS(2762), 1, - anon_sym_const, - ACTIONS(2766), 1, - anon_sym_class, - ACTIONS(2768), 1, - anon_sym_async, - ACTIONS(2770), 1, - anon_sym_function, - ACTIONS(2772), 1, - anon_sym_declare, - ACTIONS(2776), 1, + ACTIONS(2818), 1, anon_sym_abstract, - ACTIONS(2778), 1, + ACTIONS(2820), 1, anon_sym_interface, - ACTIONS(2780), 1, + ACTIONS(2822), 1, anon_sym_enum, ACTIONS(2928), 1, anon_sym_type, - ACTIONS(2930), 1, - anon_sym_module, - ACTIONS(2932), 1, - anon_sym_global, - STATE(1224), 1, - sym_internal_module, - STATE(1232), 1, - sym_declaration, - STATE(3647), 1, - sym_comment, - STATE(5213), 1, - aux_sym_export_statement_repeat1, - STATE(5700), 1, - sym_decorator, - STATE(1220), 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, - [128749] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2868), 1, - anon_sym_namespace, - ACTIONS(2870), 1, - anon_sym_import, - ACTIONS(2872), 1, - anon_sym_var, - ACTIONS(2874), 1, - anon_sym_let, - ACTIONS(2876), 1, - anon_sym_const, - ACTIONS(2880), 1, - anon_sym_class, - ACTIONS(2882), 1, - anon_sym_async, - ACTIONS(2884), 1, - anon_sym_function, - ACTIONS(2886), 1, - anon_sym_declare, - ACTIONS(2888), 1, - anon_sym_module, - ACTIONS(2890), 1, - anon_sym_abstract, - ACTIONS(2892), 1, - anon_sym_interface, - ACTIONS(2894), 1, - anon_sym_enum, - ACTIONS(2910), 1, - anon_sym_type, - ACTIONS(6886), 1, + ACTIONS(6912), 1, anon_sym_default, - STATE(1274), 1, - sym_declaration, - STATE(1379), 1, - sym_internal_module, - STATE(3648), 1, + STATE(3506), 1, sym_comment, - STATE(5403), 1, + STATE(5201), 1, aux_sym_export_statement_repeat1, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - STATE(1382), 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, - [128834] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2830), 1, - anon_sym_namespace, - ACTIONS(2832), 1, - anon_sym_import, - ACTIONS(2834), 1, - anon_sym_var, - ACTIONS(2836), 1, - anon_sym_let, - ACTIONS(2838), 1, - anon_sym_const, - ACTIONS(2842), 1, - anon_sym_class, - ACTIONS(2844), 1, - anon_sym_async, - ACTIONS(2846), 1, - anon_sym_function, - ACTIONS(2848), 1, - anon_sym_declare, - ACTIONS(2850), 1, - anon_sym_module, - ACTIONS(2852), 1, - anon_sym_abstract, - ACTIONS(2854), 1, - anon_sym_interface, - ACTIONS(2856), 1, - anon_sym_enum, - ACTIONS(2916), 1, - anon_sym_type, - ACTIONS(6888), 1, - anon_sym_default, - STATE(1073), 1, - sym_declaration, - STATE(1102), 1, + STATE(6385), 1, sym_internal_module, - STATE(3649), 1, - sym_comment, - STATE(5341), 1, - aux_sym_export_statement_repeat1, - STATE(5700), 1, - sym_decorator, - STATE(1105), 13, + STATE(6982), 1, + sym_declaration, + STATE(6360), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -329209,7 +317001,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [128919] = 12, + [129204] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -329218,20 +317010,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6890), 1, + ACTIONS(6914), 1, anon_sym_RBRACE, - STATE(3650), 1, + STATE(3507), 1, sym_comment, - STATE(5625), 1, + STATE(5555), 1, sym__property_name, - STATE(6506), 1, + STATE(6757), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -329258,43 +317050,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128980] = 17, + [129265] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(2908), 1, + ACTIONS(4400), 1, anon_sym_override, - ACTIONS(5477), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, + ACTIONS(6200), 1, anon_sym_STAR, - ACTIONS(6892), 1, + ACTIONS(6202), 1, + anon_sym_async, + ACTIONS(6204), 1, + anon_sym_readonly, + ACTIONS(6916), 1, anon_sym_static, - STATE(3651), 1, + STATE(3508), 1, sym_comment, - STATE(3665), 1, + STATE(3534), 1, sym_override_modifier, - STATE(4761), 1, + STATE(3863), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6206), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 17, + ACTIONS(4376), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -329312,7 +317104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129051] = 12, + [129336] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -329321,20 +317113,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6894), 1, + ACTIONS(6918), 1, anon_sym_RBRACE, - STATE(3652), 1, + STATE(3509), 1, sym_comment, - STATE(5625), 1, + STATE(5555), 1, sym__property_name, - STATE(6506), 1, + STATE(6757), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -329361,39 +317153,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129112] = 15, + [129397] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(2834), 1, + anon_sym_namespace, + ACTIONS(2836), 1, + anon_sym_import, + ACTIONS(2838), 1, + anon_sym_var, + ACTIONS(2840), 1, + anon_sym_let, + ACTIONS(2842), 1, + anon_sym_const, + ACTIONS(2846), 1, + anon_sym_class, + ACTIONS(2848), 1, + anon_sym_async, + ACTIONS(2850), 1, + anon_sym_function, + ACTIONS(2852), 1, + anon_sym_declare, + ACTIONS(2856), 1, + anon_sym_abstract, + ACTIONS(2858), 1, + anon_sym_interface, + ACTIONS(2860), 1, + anon_sym_enum, + ACTIONS(2916), 1, + anon_sym_type, + ACTIONS(2918), 1, + anon_sym_module, + ACTIONS(2920), 1, + anon_sym_global, + STATE(1086), 1, + sym_declaration, + STATE(1094), 1, + sym_internal_module, + STATE(3510), 1, + sym_comment, + STATE(4991), 1, + aux_sym_export_statement_repeat1, + STATE(5410), 1, + sym_decorator, + STATE(1100), 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, + [129482] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4396), 1, - anon_sym_override, - ACTIONS(4947), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6896), 1, - anon_sym_STAR, - ACTIONS(6898), 1, - anon_sym_readonly, - STATE(3653), 1, + ACTIONS(6920), 1, + anon_sym_RBRACE, + STATE(3511), 1, sym_comment, - STATE(3680), 1, - sym_override_modifier, - STATE(3953), 1, + STATE(5555), 1, sym__property_name, - ACTIONS(3894), 2, + STATE(6757), 1, + sym_enum_assignment, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6900), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 19, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -329402,10 +317248,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -329413,7 +317263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129179] = 12, + [129543] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -329422,20 +317272,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6902), 1, + ACTIONS(6922), 1, anon_sym_RBRACE, - STATE(3654), 1, + STATE(3512), 1, sym_comment, - STATE(5625), 1, + STATE(5555), 1, sym__property_name, - STATE(6506), 1, + STATE(6757), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -329462,7 +317312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129240] = 12, + [129604] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -329471,20 +317321,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6904), 1, + ACTIONS(6924), 1, anon_sym_RBRACE, - STATE(3655), 1, + STATE(3513), 1, sym_comment, - STATE(5246), 1, + STATE(5555), 1, sym__property_name, - STATE(6442), 1, + STATE(6757), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -329511,32 +317361,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129301] = 6, + [129665] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6906), 1, - anon_sym_AT, - STATE(3712), 1, - sym_decorator, - STATE(3656), 2, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(5440), 1, + anon_sym_LBRACK, + ACTIONS(6926), 1, + anon_sym_RBRACE, + STATE(3514), 1, sym_comment, - aux_sym_export_statement_repeat1, - ACTIONS(4279), 30, + STATE(5555), 1, + sym__property_name, + STATE(6757), 1, + sym_enum_assignment, + ACTIONS(2734), 2, + sym_number, + sym_private_property_identifier, + STATE(4582), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2900), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -329553,44 +317410,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [129350] = 12, + [129726] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6909), 1, - anon_sym_RBRACE, - STATE(3657), 1, + ACTIONS(6200), 1, + anon_sym_STAR, + ACTIONS(6202), 1, + anon_sym_async, + ACTIONS(6204), 1, + anon_sym_readonly, + STATE(3515), 1, sym_comment, - STATE(5625), 1, + STATE(3863), 1, sym__property_name, - STATE(6506), 1, - sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + ACTIONS(6206), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4376), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129790] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6097), 1, + anon_sym_STAR, + ACTIONS(6099), 1, + anon_sym_async, + ACTIONS(6101), 1, anon_sym_readonly, + STATE(3516), 1, + sym_comment, + STATE(3909), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6103), 2, anon_sym_get, anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4376), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -329603,68 +317510,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129411] = 24, + [129854] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(2936), 1, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6540), 1, + anon_sym_STAR, + ACTIONS(6542), 1, + anon_sym_async, + ACTIONS(6928), 1, + anon_sym_readonly, + STATE(3517), 1, + sym_comment, + STATE(3799), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6544), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4376), 19, + anon_sym_export, anon_sym_type, - ACTIONS(2938), 1, anon_sym_namespace, - ACTIONS(2940), 1, - anon_sym_import, - ACTIONS(2942), 1, - anon_sym_var, - ACTIONS(2944), 1, anon_sym_let, - ACTIONS(2946), 1, - anon_sym_const, - ACTIONS(2948), 1, - anon_sym_class, - ACTIONS(2950), 1, - anon_sym_async, - ACTIONS(2952), 1, - anon_sym_function, - ACTIONS(2954), 1, + anon_sym_new, + sym_identifier, + anon_sym_static, anon_sym_declare, - ACTIONS(2958), 1, - anon_sym_abstract, - ACTIONS(2962), 1, - anon_sym_interface, - ACTIONS(2964), 1, - anon_sym_enum, - ACTIONS(4516), 1, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, anon_sym_module, - ACTIONS(6911), 1, - anon_sym_default, - STATE(3658), 1, - sym_comment, - STATE(5083), 1, - sym_declaration, - STATE(5206), 1, - sym_internal_module, - STATE(5375), 1, - aux_sym_export_statement_repeat1, - STATE(5700), 1, - sym_decorator, - STATE(5192), 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, - [129496] = 12, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129918] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -329673,20 +317569,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6913), 1, - anon_sym_RBRACE, - STATE(3659), 1, + STATE(3518), 1, sym_comment, - STATE(5100), 1, + STATE(5555), 1, sym__property_name, - STATE(6399), 1, + STATE(6757), 1, sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -329713,43 +317607,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129557] = 12, + [129976] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6915), 1, - anon_sym_RBRACE, - STATE(3660), 1, + ACTIONS(6270), 1, + anon_sym_STAR, + ACTIONS(6272), 1, + anon_sym_async, + ACTIONS(6930), 1, + anon_sym_readonly, + STATE(3519), 1, sym_comment, - STATE(5625), 1, + STATE(3838), 1, sym__property_name, - STATE(6506), 1, - sym_enum_assignment, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + ACTIONS(6274), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4376), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -329762,7 +317657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129618] = 12, + [130040] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -329771,23 +317666,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6917), 1, - anon_sym_RBRACE, - STATE(3661), 1, + ACTIONS(6932), 1, + anon_sym_STAR, + STATE(3520), 1, sym_comment, - STATE(5455), 1, + STATE(4641), 1, sym__property_name, - STATE(6195), 1, - sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + ACTIONS(6934), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -329797,8 +317693,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -329811,37 +317705,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129679] = 14, + [130100] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6790), 1, + ACTIONS(6157), 1, anon_sym_STAR, - ACTIONS(6794), 1, + ACTIONS(6159), 1, anon_sym_async, - ACTIONS(6919), 1, + ACTIONS(6936), 1, anon_sym_readonly, - STATE(3662), 1, + STATE(3521), 1, sym_comment, - STATE(4833), 1, + STATE(3826), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6792), 2, + ACTIONS(6161), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 19, + ACTIONS(4376), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -329861,7 +317755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129743] = 14, + [130164] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -329870,35 +317764,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(2902), 1, - anon_sym_async, - ACTIONS(2904), 1, - anon_sym_readonly, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5988), 1, + ACTIONS(6894), 1, anon_sym_STAR, - STATE(3663), 1, + STATE(3522), 1, sym_comment, - STATE(4761), 1, + STATE(4726), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(2906), 2, + ACTIONS(6938), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 19, + ACTIONS(2900), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -329911,35 +317803,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129807] = 5, + [130224] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3664), 1, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6183), 1, + anon_sym_STAR, + ACTIONS(6185), 1, + anon_sym_async, + ACTIONS(6193), 1, + anon_sym_readonly, + STATE(3523), 1, sym_comment, - ACTIONS(1043), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2431), 29, + STATE(3794), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6187), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4376), 19, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, + 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, + [130288] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, anon_sym_DQUOTE, + ACTIONS(1922), 1, anon_sym_SQUOTE, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6011), 1, + anon_sym_STAR, + ACTIONS(6013), 1, anon_sym_async, - anon_sym_new, + ACTIONS(6940), 1, + anon_sym_readonly, + STATE(3524), 1, + sym_comment, + STATE(3795), 1, + sym__property_name, + ACTIONS(3898), 2, sym_number, - sym_identifier, sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(6017), 2, anon_sym_get, anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4376), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -329952,7 +317903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129853] = 14, + [130352] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -329961,25 +317912,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6766), 1, + ACTIONS(6785), 1, anon_sym_STAR, - ACTIONS(6768), 1, + ACTIONS(6787), 1, anon_sym_async, - ACTIONS(6770), 1, + ACTIONS(6942), 1, anon_sym_readonly, - STATE(3665), 1, + STATE(3525), 1, sym_comment, - STATE(4766), 1, + STATE(4758), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6772), 2, + ACTIONS(6789), 2, anon_sym_get, anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 19, @@ -330002,37 +317953,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129917] = 14, + [130416] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(5132), 1, + anon_sym_STAR, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(5144), 1, + anon_sym_async, + ACTIONS(5146), 1, + anon_sym_readonly, + STATE(3526), 1, + sym_comment, + STATE(3892), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5148), 2, + anon_sym_get, + anon_sym_set, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4376), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [130480] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6058), 1, + ACTIONS(6344), 1, anon_sym_STAR, - ACTIONS(6060), 1, + ACTIONS(6346), 1, anon_sym_async, - ACTIONS(6921), 1, + ACTIONS(6944), 1, anon_sym_readonly, - STATE(3666), 1, + STATE(3527), 1, sym_comment, - STATE(3967), 1, + STATE(3815), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6064), 2, + ACTIONS(6348), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 19, + ACTIONS(4376), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -330052,37 +318053,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129981] = 14, + [130544] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(5681), 1, + ACTIONS(5371), 1, anon_sym_STAR, - ACTIONS(5685), 1, + ACTIONS(5375), 1, anon_sym_async, - ACTIONS(5687), 1, + ACTIONS(5377), 1, anon_sym_readonly, - STATE(3667), 1, + STATE(3528), 1, sym_comment, - STATE(3951), 1, + STATE(3819), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(5689), 2, + ACTIONS(5379), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 19, + ACTIONS(4376), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -330102,37 +318103,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130045] = 14, + [130608] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6327), 1, + ACTIONS(6332), 1, anon_sym_STAR, - ACTIONS(6329), 1, + ACTIONS(6334), 1, anon_sym_async, - ACTIONS(6923), 1, + ACTIONS(6946), 1, anon_sym_readonly, - STATE(3668), 1, + STATE(3529), 1, sym_comment, - STATE(3987), 1, + STATE(3861), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6331), 2, + ACTIONS(6336), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 19, + ACTIONS(4376), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -330152,7 +318153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130109] = 11, + [130672] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -330161,32 +318162,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(2902), 1, + anon_sym_async, + ACTIONS(2904), 1, + anon_sym_readonly, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3669), 1, + ACTIONS(5985), 1, + anon_sym_STAR, + STATE(3530), 1, sym_comment, - STATE(5625), 1, + STATE(4808), 1, sym__property_name, - STATE(6506), 1, - sym_enum_assignment, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + ACTIONS(2906), 2, + anon_sym_get, + anon_sym_set, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(2900), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -330199,37 +318203,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130167] = 14, + [130736] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(5995), 1, + ACTIONS(6754), 1, anon_sym_STAR, - ACTIONS(5997), 1, + ACTIONS(6756), 1, anon_sym_async, - ACTIONS(5999), 1, + ACTIONS(6758), 1, anon_sym_readonly, - STATE(3670), 1, + STATE(3531), 1, sym_comment, - STATE(3998), 1, + STATE(4826), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6001), 2, + ACTIONS(6760), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 19, + ACTIONS(2900), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -330249,37 +318253,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130231] = 14, + [130800] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + STATE(3532), 1, + sym_comment, + ACTIONS(987), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2405), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1932), 1, anon_sym_SQUOTE, - ACTIONS(4937), 1, - anon_sym_STAR, - ACTIONS(4947), 1, + 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, + [130846] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(4949), 1, + ACTIONS(6011), 1, + anon_sym_STAR, + ACTIONS(6013), 1, anon_sym_async, - ACTIONS(4951), 1, + ACTIONS(6948), 1, anon_sym_readonly, - STATE(3671), 1, + STATE(3533), 1, sym_comment, - STATE(4017), 1, + STATE(3813), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(4953), 2, + ACTIONS(6017), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 19, + ACTIONS(4376), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -330299,37 +318344,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130295] = 14, + [130910] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6475), 1, + ACTIONS(6043), 1, anon_sym_STAR, - ACTIONS(6477), 1, + ACTIONS(6045), 1, anon_sym_async, - ACTIONS(6925), 1, + ACTIONS(6047), 1, anon_sym_readonly, - STATE(3672), 1, + STATE(3534), 1, sym_comment, - STATE(3977), 1, + STATE(3872), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6479), 2, + ACTIONS(6049), 2, anon_sym_get, anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 19, + ACTIONS(4376), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -330349,7 +318394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130359] = 12, + [130974] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -330358,24 +318403,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6927), 1, - anon_sym_STAR, - STATE(3673), 1, + STATE(3535), 1, sym_comment, - STATE(4765), 1, + STATE(4820), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6929), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 21, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -330385,6 +318425,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -330397,44 +318439,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130419] = 14, + [131029] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6098), 1, - anon_sym_STAR, - ACTIONS(6100), 1, - anon_sym_async, - ACTIONS(6102), 1, - anon_sym_readonly, - STATE(3674), 1, + STATE(3536), 1, sym_comment, - STATE(4042), 1, + STATE(4821), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6104), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 19, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -330447,44 +318484,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130483] = 14, + [131084] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6058), 1, - anon_sym_STAR, - ACTIONS(6060), 1, - anon_sym_async, - ACTIONS(6931), 1, - anon_sym_readonly, - STATE(3675), 1, + STATE(3537), 1, sym_comment, - STATE(3964), 1, + STATE(4702), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6064), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 19, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -330497,44 +318529,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130547] = 14, + [131139] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6124), 1, - anon_sym_STAR, - ACTIONS(6126), 1, - anon_sym_async, - ACTIONS(6933), 1, - anon_sym_readonly, - STATE(3676), 1, + STATE(3538), 1, sym_comment, - STATE(3948), 1, + STATE(4715), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6128), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 19, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -330547,44 +318574,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130611] = 14, + [131194] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6146), 1, - anon_sym_STAR, - ACTIONS(6148), 1, - anon_sym_async, - ACTIONS(6154), 1, - anon_sym_readonly, - STATE(3677), 1, + STATE(3539), 1, sym_comment, - STATE(3972), 1, + STATE(4736), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6150), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 19, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -330597,44 +318619,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130675] = 14, + [131249] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6245), 1, - anon_sym_STAR, - ACTIONS(6375), 1, - anon_sym_async, - ACTIONS(6935), 1, + ACTIONS(6950), 1, anon_sym_readonly, - STATE(3678), 1, + STATE(3540), 1, sym_comment, - STATE(3958), 1, + STATE(4236), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6377), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 19, + ACTIONS(4376), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -330647,44 +318665,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130739] = 14, + [131306] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6164), 1, - anon_sym_STAR, - ACTIONS(6166), 1, - anon_sym_async, - ACTIONS(6168), 1, + ACTIONS(6952), 1, anon_sym_readonly, - STATE(3679), 1, + STATE(3541), 1, sym_comment, - STATE(4050), 1, + STATE(4283), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - ACTIONS(6170), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 19, + ACTIONS(4376), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -330697,7 +318711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130803] = 12, + [131363] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -330706,24 +318720,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6826), 1, - anon_sym_STAR, - STATE(3680), 1, + STATE(3542), 1, sym_comment, - STATE(4870), 1, + STATE(4675), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - ACTIONS(6937), 2, - anon_sym_get, - anon_sym_set, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 21, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -330733,6 +318742,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -330745,44 +318756,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130863] = 14, + [131418] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6255), 1, - anon_sym_STAR, - ACTIONS(6257), 1, - anon_sym_async, - ACTIONS(6939), 1, - anon_sym_readonly, - STATE(3681), 1, + STATE(3543), 1, sym_comment, - STATE(4015), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6259), 2, - anon_sym_get, - anon_sym_set, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4372), 19, + ACTIONS(4345), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -330795,30 +318794,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130927] = 11, + anon_sym_abstract, + [131461] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6941), 1, - anon_sym_readonly, - STATE(3682), 1, + STATE(3544), 1, sym_comment, - STATE(4322), 1, + STATE(4618), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 22, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -330827,6 +318825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -330841,38 +318840,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130984] = 11, + [131516] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6678), 1, - anon_sym_readonly, - STATE(3683), 1, + STATE(3545), 1, sym_comment, - STATE(4227), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4372), 22, + ACTIONS(4343), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -330887,7 +318878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131041] = 10, + anon_sym_abstract, + [131559] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -330896,16 +318888,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3684), 1, + STATE(3546), 1, sym_comment, - STATE(4917), 1, + STATE(4673), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -330932,28 +318924,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131096] = 10, + [131614] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3685), 1, + STATE(3547), 1, sym_comment, - STATE(4761), 1, + STATE(4068), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -330977,7 +318969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131151] = 10, + [131669] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -330986,16 +318978,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3686), 1, + STATE(3548), 1, sym_comment, - STATE(4811), 1, + STATE(4803), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -331022,7 +319014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131206] = 10, + [131724] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -331031,16 +319023,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3687), 1, + STATE(3549), 1, sym_comment, - STATE(4914), 1, + STATE(4808), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -331067,7 +319059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131261] = 10, + [131779] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -331076,16 +319068,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3688), 1, + STATE(3550), 1, sym_comment, - STATE(4817), 1, + STATE(4810), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -331112,38 +319104,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131316] = 11, + [131834] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6943), 1, - anon_sym_readonly, - STATE(3689), 1, + STATE(3551), 1, sym_comment, - STATE(4396), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4372), 22, + ACTIONS(4349), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -331158,7 +319142,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131373] = 10, + anon_sym_abstract, + [131877] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -331167,16 +319152,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3690), 1, + STATE(3552), 1, sym_comment, STATE(4826), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -331203,28 +319188,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131428] = 10, + [131932] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3691), 1, + STATE(3553), 1, sym_comment, - STATE(4408), 1, + STATE(4801), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 23, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -331248,28 +319233,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131483] = 10, + [131987] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3692), 1, + ACTIONS(6954), 1, + anon_sym_readonly, + STATE(3554), 1, sym_comment, - STATE(4838), 1, + STATE(4225), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4376), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -331278,7 +319265,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -331293,7 +319279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131538] = 10, + [132044] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -331302,16 +319288,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3693), 1, + STATE(3555), 1, sym_comment, - STATE(4833), 1, + STATE(4799), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -331338,7 +319324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131593] = 10, + [132099] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -331347,16 +319333,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3694), 1, + STATE(3556), 1, sym_comment, - STATE(4843), 1, + STATE(4701), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -331383,35 +319369,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131648] = 10, + [132154] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5477), 1, - anon_sym_LBRACK, - STATE(3695), 1, + STATE(3557), 1, sym_comment, - STATE(4845), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4347), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -331428,7 +319407,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131703] = 10, + anon_sym_abstract, + [132197] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -331437,16 +319417,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3696), 1, + STATE(3558), 1, sym_comment, - STATE(4890), 1, + STATE(4784), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -331473,7 +319453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131758] = 10, + [132252] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -331482,16 +319462,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3697), 1, + STATE(3559), 1, sym_comment, - STATE(4898), 1, + STATE(4731), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -331518,7 +319498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131813] = 10, + [132307] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -331527,16 +319507,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3698), 1, + STATE(3560), 1, sym_comment, - STATE(4822), 1, + STATE(4696), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -331563,28 +319543,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131868] = 10, + [132362] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3699), 1, + ACTIONS(6956), 1, + anon_sym_readonly, + STATE(3561), 1, sym_comment, - STATE(4946), 1, + STATE(4159), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4376), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -331593,7 +319575,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -331608,30 +319589,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131923] = 11, + [132419] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6945), 1, - anon_sym_readonly, - STATE(3700), 1, + STATE(3562), 1, sym_comment, - STATE(4260), 1, + STATE(4158), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 22, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -331640,6 +319619,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -331654,28 +319634,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131980] = 10, + [132474] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3701), 1, + ACTIONS(6958), 1, + anon_sym_readonly, + STATE(3563), 1, sym_comment, - STATE(4260), 1, + STATE(4221), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 23, + ACTIONS(4376), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -331684,7 +319666,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -331699,28 +319680,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132035] = 10, + [132531] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3702), 1, + STATE(3564), 1, sym_comment, - STATE(4969), 1, + STATE(4122), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -331744,7 +319725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132090] = 10, + [132586] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -331753,16 +319734,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3703), 1, + STATE(3565), 1, sym_comment, - STATE(4830), 1, + STATE(4816), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -331789,28 +319770,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132145] = 10, + [132641] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3704), 1, + STATE(3566), 1, sym_comment, - STATE(4782), 1, + STATE(4216), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -331834,28 +319815,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132200] = 10, + [132696] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3705), 1, + ACTIONS(6679), 1, + anon_sym_readonly, + STATE(3567), 1, sym_comment, - STATE(4805), 1, + STATE(4122), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4376), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -331864,7 +319847,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -331879,7 +319861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132255] = 10, + [132753] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -331888,16 +319870,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3706), 1, + STATE(3568), 1, sym_comment, - STATE(4948), 1, + STATE(4726), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -331924,7 +319906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132310] = 10, + [132808] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -331933,16 +319915,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3707), 1, + STATE(3569), 1, sym_comment, - STATE(4835), 1, + STATE(4758), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -331969,28 +319951,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132365] = 10, + [132863] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3708), 1, + STATE(3570), 1, sym_comment, - STATE(4950), 1, + STATE(4282), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -332014,28 +319996,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132420] = 10, + [132918] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3709), 1, + ACTIONS(6960), 1, + anon_sym_readonly, + STATE(3571), 1, sym_comment, - STATE(4405), 1, + STATE(4191), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 23, + ACTIONS(4376), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -332044,7 +320028,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -332059,30 +320042,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132475] = 11, + [132975] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6947), 1, - anon_sym_readonly, - STATE(3710), 1, + STATE(3572), 1, sym_comment, - STATE(4415), 1, + STATE(4822), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 22, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -332091,6 +320072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -332105,28 +320087,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132532] = 10, + [133030] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3711), 1, + STATE(3573), 1, sym_comment, - STATE(4298), 1, + STATE(4117), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 23, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -332150,30 +320132,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132587] = 4, + [133085] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3712), 1, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6962), 1, + anon_sym_readonly, + STATE(3574), 1, sym_comment, - ACTIONS(4347), 31, + STATE(4094), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4376), 22, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -332188,31 +320178,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [132630] = 11, + [133142] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6949), 1, - anon_sym_readonly, - STATE(3713), 1, + STATE(3575), 1, sym_comment, - STATE(4428), 1, + STATE(4092), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 22, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -332221,6 +320208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -332235,7 +320223,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132687] = 10, + [133197] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -332244,16 +320232,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3714), 1, + STATE(3576), 1, sym_comment, - STATE(4774), 1, + STATE(4641), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -332280,30 +320268,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132742] = 11, + [133252] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6951), 1, + ACTIONS(6964), 1, anon_sym_readonly, - STATE(3715), 1, + STATE(3577), 1, sym_comment, - STATE(4296), 1, + STATE(4194), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 22, + ACTIONS(4376), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -332326,7 +320314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132799] = 10, + [133309] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -332335,16 +320323,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3716), 1, + STATE(3578), 1, sym_comment, - STATE(4766), 1, + STATE(4823), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -332371,30 +320359,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132854] = 11, + [133364] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6674), 1, - anon_sym_readonly, - STATE(3717), 1, + STATE(3579), 1, sym_comment, - STATE(4436), 1, + STATE(4692), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 22, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -332403,6 +320389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -332417,28 +320404,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132911] = 10, + [133419] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3718), 1, + ACTIONS(6966), 1, + anon_sym_readonly, + STATE(3580), 1, sym_comment, - STATE(4348), 1, + STATE(4126), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 23, + ACTIONS(4376), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -332447,7 +320436,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -332462,30 +320450,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132966] = 11, + [133476] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6953), 1, - anon_sym_readonly, - STATE(3719), 1, + STATE(3581), 1, sym_comment, - STATE(4389), 1, + STATE(4289), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 22, + ACTIONS(4376), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -332494,6 +320480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -332508,30 +320495,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133023] = 11, + [133531] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - ACTIONS(6955), 1, + ACTIONS(6685), 1, anon_sym_readonly, - STATE(3720), 1, + STATE(3582), 1, sym_comment, - STATE(4336), 1, + STATE(4068), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 22, + ACTIONS(4376), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -332554,28 +320541,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133080] = 10, + [133588] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3721), 1, + STATE(3583), 1, sym_comment, - STATE(4215), 1, + STATE(4843), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 23, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -332599,7 +320586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133135] = 10, + [133643] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -332608,16 +320595,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3722), 1, + STATE(3584), 1, sym_comment, - STATE(4920), 1, + STATE(4690), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -332644,28 +320631,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133190] = 10, + [133698] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5142), 1, anon_sym_LBRACK, - STATE(3723), 1, + ACTIONS(6968), 1, + anon_sym_readonly, + STATE(3585), 1, sym_comment, - STATE(4925), 1, + STATE(4289), 1, sym__property_name, - ACTIONS(2734), 2, + ACTIONS(3898), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(3980), 2, sym_string, sym_computed_property_name, - ACTIONS(2900), 23, + ACTIONS(4376), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -332674,7 +320663,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -332689,30 +320677,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133245] = 4, + [133755] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3724), 1, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6970), 1, + anon_sym_readonly, + STATE(3586), 1, sym_comment, - ACTIONS(4345), 31, + STATE(4201), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4376), 22, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -332727,29 +320723,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [133288] = 10, + [133812] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3725), 1, + STATE(3587), 1, sym_comment, - STATE(4227), 1, + STATE(4653), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 23, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -332773,7 +320768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133343] = 10, + [133867] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -332782,16 +320777,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3726), 1, + STATE(3588), 1, sym_comment, - STATE(4862), 1, + STATE(4749), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -332818,7 +320813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133398] = 10, + [133922] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -332827,16 +320822,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3727), 1, + STATE(3589), 1, sym_comment, - STATE(4892), 1, + STATE(4651), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -332863,30 +320858,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133453] = 4, + [133977] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3728), 1, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(5142), 1, + anon_sym_LBRACK, + ACTIONS(6972), 1, + anon_sym_readonly, + STATE(3590), 1, sym_comment, - ACTIONS(4231), 31, + STATE(4189), 1, + sym__property_name, + ACTIONS(3898), 2, + sym_number, + sym_private_property_identifier, + STATE(3980), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4376), 22, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -332901,8 +320904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [133496] = 10, + [134034] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -332911,16 +320913,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3729), 1, + STATE(3591), 1, sym_comment, - STATE(4765), 1, + STATE(4720), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -332947,7 +320949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133551] = 10, + [134089] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -332956,16 +320958,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - STATE(3730), 1, + STATE(3592), 1, sym_comment, - STATE(4806), 1, + STATE(4662), 1, sym__property_name, ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4740), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, ACTIONS(2900), 23, @@ -332992,30 +320994,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133606] = 11, + [134144] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(4947), 1, + ACTIONS(5440), 1, anon_sym_LBRACK, - ACTIONS(6957), 1, - anon_sym_readonly, - STATE(3731), 1, + STATE(3593), 1, sym_comment, - STATE(4371), 1, + STATE(4779), 1, sym__property_name, - ACTIONS(3894), 2, + ACTIONS(2734), 2, sym_number, sym_private_property_identifier, - STATE(4151), 2, + STATE(4582), 2, sym_string, sym_computed_property_name, - ACTIONS(4372), 22, + ACTIONS(2900), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -333024,6 +321024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -333038,12 +321039,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133663] = 4, + [134199] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3732), 1, + STATE(3594), 1, sym_comment, ACTIONS(4326), 31, anon_sym_export, @@ -333077,35 +321078,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [133706] = 10, + [134242] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + STATE(3595), 1, + sym_comment, + ACTIONS(4247), 31, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(5477), 1, - anon_sym_LBRACK, - STATE(3733), 1, - sym_comment, - STATE(4931), 1, - sym__property_name, - ACTIONS(2734), 2, + anon_sym_async, + anon_sym_new, sym_number, + sym_identifier, sym_private_property_identifier, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2900), 23, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [134285] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6974), 1, + sym_identifier, + STATE(3596), 1, + sym_comment, + STATE(7124), 1, + sym_mapped_type_clause, + ACTIONS(6976), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_async, anon_sym_new, - sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -333122,703 +321151,1117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133761] = 10, - ACTIONS(3), 1, + [134325] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3597), 1, + sym_comment, + ACTIONS(4345), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4839), 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, + anon_sym_PIPE, + anon_sym_AT, + anon_sym_abstract, + anon_sym_extends, + [134360] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4145), 1, + anon_sym_LPAREN, + ACTIONS(4149), 1, + anon_sym_DOT, + ACTIONS(4153), 1, + anon_sym_QMARK_DOT, + ACTIONS(6978), 1, + anon_sym_LT, + STATE(3598), 1, + sym_comment, + STATE(3666), 1, + sym_arguments, + STATE(3713), 1, + sym_type_arguments, + ACTIONS(4147), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4143), 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, + [134407] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4145), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + anon_sym_LT, + ACTIONS(6980), 1, + anon_sym_DOT, + ACTIONS(6982), 1, + anon_sym_QMARK_DOT, + STATE(3599), 1, + sym_comment, + STATE(3649), 1, + sym_arguments, + STATE(3718), 1, + sym_type_arguments, + ACTIONS(4833), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4835), 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, + [134454] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4145), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + anon_sym_LT, + ACTIONS(6984), 1, + anon_sym_DOT, + ACTIONS(6986), 1, + anon_sym_QMARK_DOT, + STATE(3600), 1, + sym_comment, + STATE(3659), 1, + sym_arguments, + STATE(3720), 1, + sym_type_arguments, + ACTIONS(4813), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4815), 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, + [134501] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3601), 1, + sym_comment, + ACTIONS(4349), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4869), 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, + anon_sym_PIPE, + anon_sym_AT, + anon_sym_abstract, + anon_sym_extends, + [134536] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3602), 1, + sym_comment, + ACTIONS(4343), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4867), 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, + anon_sym_PIPE, + anon_sym_AT, + anon_sym_abstract, + anon_sym_extends, + [134571] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2251), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3603), 1, + sym_comment, + ACTIONS(2253), 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_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + [134605] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2183), 1, + anon_sym_EQ, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3604), 1, + sym_comment, + ACTIONS(2185), 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_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + [134639] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3605), 1, + sym_comment, + ACTIONS(5021), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5023), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [134672] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3606), 1, + sym_comment, + ACTIONS(4877), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4879), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [134705] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3607), 1, + sym_comment, + ACTIONS(5021), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5023), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [134738] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4807), 1, + anon_sym_EQ, + ACTIONS(6978), 1, + anon_sym_LT, + ACTIONS(6988), 1, + anon_sym_DOT, + ACTIONS(6990), 1, + anon_sym_is, + STATE(3608), 1, + sym_comment, + STATE(3786), 1, + sym_type_arguments, + ACTIONS(4202), 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, + [134779] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3609), 1, + sym_comment, + ACTIONS(5033), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5035), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [134812] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3610), 1, + sym_comment, + ACTIONS(5094), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5096), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [134845] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3611), 1, + sym_comment, + ACTIONS(5033), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5035), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [134878] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4947), 1, - anon_sym_LBRACK, - STATE(3734), 1, - sym_comment, - STATE(4436), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4372), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [133816] = 10, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(3612), 1, + sym_comment, + ACTIONS(5033), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5035), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [134911] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5477), 1, - anon_sym_LBRACK, - STATE(3735), 1, - sym_comment, - STATE(4926), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [133871] = 4, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(3613), 1, + sym_comment, + ACTIONS(5037), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5039), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [134944] = 5, ACTIONS(5), 1, sym_html_comment, - STATE(3736), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3614), 1, sym_comment, - ACTIONS(4352), 31, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, + ACTIONS(5098), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5100), 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_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_abstract, - [133914] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [134977] = 5, ACTIONS(5), 1, sym_html_comment, - STATE(3737), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3615), 1, sym_comment, - ACTIONS(4324), 31, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, + ACTIONS(5094), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5096), 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_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_abstract, - [133957] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [135010] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6959), 1, - anon_sym_readonly, - STATE(3738), 1, - sym_comment, - STATE(4385), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4372), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [134014] = 10, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(3616), 1, + sym_comment, + ACTIONS(5098), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5100), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [135043] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5477), 1, - anon_sym_LBRACK, - STATE(3739), 1, - sym_comment, - STATE(4844), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [134069] = 10, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(3617), 1, + sym_comment, + ACTIONS(5017), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5019), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [135076] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(5477), 1, - anon_sym_LBRACK, - STATE(3740), 1, - sym_comment, - STATE(4870), 1, - sym__property_name, - ACTIONS(2734), 2, - sym_number, - sym_private_property_identifier, - STATE(4740), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2900), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [134124] = 11, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(3618), 1, + sym_comment, + ACTIONS(5102), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5104), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [135109] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6961), 1, - anon_sym_readonly, - STATE(3741), 1, - sym_comment, - STATE(4366), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4372), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [134181] = 11, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(3619), 1, + sym_comment, + ACTIONS(5017), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5019), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [135142] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(4947), 1, - anon_sym_LBRACK, - ACTIONS(6963), 1, - anon_sym_readonly, - STATE(3742), 1, - sym_comment, - STATE(4401), 1, - sym__property_name, - ACTIONS(3894), 2, - sym_number, - sym_private_property_identifier, - STATE(4151), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4372), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [134238] = 6, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(3620), 1, + sym_comment, + ACTIONS(5017), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5019), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [135175] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6965), 1, - sym_identifier, - STATE(3743), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3621), 1, sym_comment, - STATE(7407), 1, - sym_mapped_type_clause, - ACTIONS(6967), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [134278] = 11, + ACTIONS(5110), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5112), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [135208] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, + STATE(3622), 1, + sym_comment, + ACTIONS(5102), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5104), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6969), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(6971), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(6973), 1, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - STATE(3744), 1, + anon_sym_extends, + [135241] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3623), 1, sym_comment, - STATE(3818), 1, - sym_arguments, - STATE(3933), 1, - sym_type_arguments, - ACTIONS(4823), 2, + ACTIONS(5110), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4825), 13, + ACTIONS(5112), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [134325] = 11, + [135274] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, + STATE(3624), 1, + sym_comment, + ACTIONS(5124), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5126), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(6973), 1, - anon_sym_LT, - ACTIONS(6975), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(6977), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - STATE(3745), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [135307] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3625), 1, sym_comment, - STATE(3814), 1, - sym_arguments, - STATE(3839), 1, - sym_type_arguments, - ACTIONS(4829), 2, + ACTIONS(5128), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4831), 13, + ACTIONS(5130), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [134372] = 5, + [135340] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3746), 1, + STATE(3626), 1, sym_comment, - ACTIONS(4345), 2, + ACTIONS(5021), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4869), 19, - anon_sym_export, + ACTIONS(5023), 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_class, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_AT, - anon_sym_abstract, + anon_sym_LT, anon_sym_extends, - [134407] = 11, + [135373] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, + STATE(3627), 1, + sym_comment, + ACTIONS(5124), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5126), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4133), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4137), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(6973), 1, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - STATE(3747), 1, + anon_sym_extends, + [135406] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3628), 1, sym_comment, - STATE(3804), 1, - sym_arguments, - STATE(3877), 1, - sym_type_arguments, - ACTIONS(4131), 2, + ACTIONS(5128), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4127), 13, + ACTIONS(5130), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [134454] = 5, + [135439] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3748), 1, + STATE(3629), 1, sym_comment, - ACTIONS(4352), 2, + ACTIONS(5246), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4845), 19, - anon_sym_export, + ACTIONS(5248), 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_class, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_AT, - anon_sym_abstract, + anon_sym_LT, anon_sym_extends, - [134489] = 5, + [135472] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3749), 1, + STATE(3630), 1, sym_comment, - ACTIONS(4324), 2, + ACTIONS(5158), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4843), 19, - anon_sym_export, + ACTIONS(5160), 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_class, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_AT, - anon_sym_abstract, + anon_sym_LT, anon_sym_extends, - [134524] = 5, + [135505] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2221), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3750), 1, + STATE(3631), 1, sym_comment, - ACTIONS(2223), 19, + ACTIONS(5166), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5168), 17, 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_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, - anon_sym_QMARK, anon_sym_extends, - [134558] = 5, + [135538] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2077), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3632), 1, + sym_comment, + ACTIONS(5246), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5248), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [135571] = 5, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3751), 1, + STATE(3633), 1, sym_comment, - ACTIONS(2079), 19, + ACTIONS(5246), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5248), 17, 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_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_extends, + [135604] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3634), 1, + sym_comment, + ACTIONS(5162), 2, + anon_sym_EQ, anon_sym_QMARK, + ACTIONS(5164), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [134592] = 5, + [135637] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3752), 1, + STATE(3635), 1, sym_comment, - ACTIONS(5008), 2, + ACTIONS(5162), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5010), 17, + ACTIONS(5164), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333836,17 +322279,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [134625] = 5, + [135670] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3753), 1, + STATE(3636), 1, sym_comment, - ACTIONS(5020), 2, + ACTIONS(4964), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5022), 17, + ACTIONS(4966), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333864,17 +322307,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [134658] = 5, + [135703] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3754), 1, + STATE(3637), 1, sym_comment, - ACTIONS(5056), 2, + ACTIONS(5162), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5058), 17, + ACTIONS(5164), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333892,17 +322335,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [134691] = 5, + [135736] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3755), 1, + STATE(3638), 1, sym_comment, - ACTIONS(5052), 2, + ACTIONS(4877), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5054), 17, + ACTIONS(4879), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333920,17 +322363,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [134724] = 5, + [135769] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3756), 1, + STATE(3639), 1, sym_comment, - ACTIONS(5120), 2, + ACTIONS(4877), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5122), 17, + ACTIONS(4879), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333948,22 +322391,355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [134757] = 5, + [135802] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(6992), 1, + sym_identifier, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6996), 1, + anon_sym_type, + ACTIONS(6998), 1, + anon_sym_LBRACE, + ACTIONS(7000), 1, + anon_sym_typeof, + STATE(3640), 1, + sym_comment, + STATE(5578), 1, + sym_import_require_clause, + STATE(5579), 1, + sym_string, + STATE(6559), 1, + sym__import_identifier, + STATE(6676), 1, + sym_import_clause, + STATE(7302), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(7002), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [135856] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6998), 1, + anon_sym_LBRACE, + ACTIONS(7004), 1, + sym_identifier, + ACTIONS(7006), 1, + anon_sym_type, + ACTIONS(7008), 1, + anon_sym_typeof, + STATE(3641), 1, + sym_comment, + STATE(5436), 1, + sym_string, + STATE(5439), 1, + sym_import_require_clause, + STATE(6558), 1, + sym_import_clause, + STATE(6559), 1, + sym__import_identifier, + STATE(7302), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(7002), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [135910] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7012), 1, + anon_sym_EQ, + ACTIONS(7014), 1, + anon_sym_LBRACE, + ACTIONS(7016), 1, + anon_sym_COMMA, + ACTIONS(7018), 1, + anon_sym_COLON, + ACTIONS(7020), 1, + anon_sym_GT, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7025), 1, + anon_sym_SLASH_GT, + ACTIONS(7027), 1, + anon_sym_LT, + ACTIONS(7029), 1, + anon_sym_extends, + STATE(3642), 1, + sym_comment, + STATE(4281), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4300), 1, + sym_type_arguments, + STATE(4832), 1, + sym_jsx_namespace_name, + STATE(5617), 1, + sym_constraint, + STATE(6886), 1, + sym_default_type, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [135970] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6998), 1, + anon_sym_LBRACE, + ACTIONS(7031), 1, + sym_identifier, + ACTIONS(7033), 1, + anon_sym_type, + ACTIONS(7035), 1, + anon_sym_typeof, + STATE(3643), 1, + sym_comment, + STATE(5413), 1, + sym_string, + STATE(5414), 1, + sym_import_require_clause, + STATE(6559), 1, + sym__import_identifier, + STATE(6821), 1, + sym_import_clause, + STATE(7302), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(7002), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [136024] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4807), 1, + anon_sym_EQ, + ACTIONS(6978), 1, + anon_sym_LT, + ACTIONS(6988), 1, + anon_sym_DOT, + STATE(3644), 1, + sym_comment, + STATE(3786), 1, + sym_type_arguments, + ACTIONS(4202), 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, + [136062] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6998), 1, + anon_sym_LBRACE, + ACTIONS(7037), 1, + sym_identifier, + ACTIONS(7039), 1, + anon_sym_type, + ACTIONS(7041), 1, + anon_sym_typeof, + STATE(3645), 1, + sym_comment, + STATE(5542), 1, + sym_import_require_clause, + STATE(5545), 1, + sym_string, + STATE(6559), 1, + sym__import_identifier, + STATE(6918), 1, + sym_import_clause, + STATE(7302), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(7002), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [136116] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6998), 1, + anon_sym_LBRACE, + ACTIONS(7043), 1, + sym_identifier, + ACTIONS(7045), 1, + anon_sym_type, + ACTIONS(7047), 1, + anon_sym_typeof, + STATE(3646), 1, + sym_comment, + STATE(5526), 1, + sym_import_require_clause, + STATE(5569), 1, + sym_string, + STATE(6559), 1, + sym__import_identifier, + STATE(6808), 1, + sym_import_clause, + STATE(7302), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(7002), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [136170] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7012), 1, + anon_sym_EQ, + ACTIONS(7014), 1, + anon_sym_LBRACE, + ACTIONS(7016), 1, + anon_sym_COMMA, + ACTIONS(7018), 1, + anon_sym_COLON, + ACTIONS(7020), 1, + anon_sym_GT, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7027), 1, + anon_sym_LT, + ACTIONS(7029), 1, + anon_sym_extends, + ACTIONS(7049), 1, + anon_sym_SLASH_GT, + STATE(3647), 1, + sym_comment, + STATE(4172), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4176), 1, + sym_type_arguments, + STATE(4832), 1, + sym_jsx_namespace_name, + STATE(5617), 1, + sym_constraint, + STATE(6886), 1, + sym_default_type, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [136230] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4159), 1, + anon_sym_LPAREN, + ACTIONS(4813), 1, + anon_sym_PIPE, + ACTIONS(7051), 1, + anon_sym_DOT, + ACTIONS(7053), 1, + anon_sym_QMARK_DOT, + ACTIONS(7055), 1, + anon_sym_LT, + STATE(3648), 1, + sym_comment, + STATE(3874), 1, + sym_arguments, + STATE(4028), 1, + sym_type_arguments, + ACTIONS(4815), 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, + [136273] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3757), 1, + STATE(3649), 1, sym_comment, - ACTIONS(5120), 2, + ACTIONS(5202), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5122), 17, + ACTIONS(5204), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -333974,19 +322750,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [134790] = 5, + [136304] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3758), 1, - sym_comment, - ACTIONS(4992), 2, + ACTIONS(5290), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4994), 17, + STATE(3650), 1, + sym_comment, + ACTIONS(5292), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -333997,24 +322771,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [134823] = 5, + [136335] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3759), 1, - sym_comment, - ACTIONS(5056), 2, + ACTIONS(5282), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5058), 17, + STATE(3651), 1, + sym_comment, + ACTIONS(5284), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -334025,24 +322797,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [134856] = 5, + [136366] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3760), 1, - sym_comment, - ACTIONS(5052), 2, + ACTIONS(5106), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5054), 17, + STATE(3652), 1, + sym_comment, + ACTIONS(5108), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -334053,24 +322823,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [134889] = 5, + [136397] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3761), 1, - sym_comment, - ACTIONS(5064), 2, + ACTIONS(5154), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5066), 17, + STATE(3653), 1, + sym_comment, + ACTIONS(5156), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -334081,24 +322849,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [134922] = 5, + [136428] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3762), 1, - sym_comment, - ACTIONS(5048), 2, + ACTIONS(5278), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5050), 17, + STATE(3654), 1, + sym_comment, + ACTIONS(5280), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -334109,24 +322875,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [134955] = 5, + [136459] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3763), 1, - sym_comment, - ACTIONS(5044), 2, + ACTIONS(5154), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5046), 17, + STATE(3655), 1, + sym_comment, + ACTIONS(5156), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -334137,52 +322901,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [134988] = 5, + [136490] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3764), 1, + ACTIONS(7057), 1, + anon_sym_DOT, + ACTIONS(7059), 1, + anon_sym_QMARK_DOT, + STATE(3656), 1, sym_comment, - ACTIONS(4925), 2, + ACTIONS(4987), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4927), 17, + ACTIONS(4989), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [135021] = 5, + [136525] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3765), 1, - sym_comment, - ACTIONS(5048), 2, + ACTIONS(5210), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5050), 17, + STATE(3657), 1, + sym_comment, + ACTIONS(5212), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -334193,57 +322955,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [135054] = 5, + [136556] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3766), 1, - sym_comment, - ACTIONS(5044), 2, + ACTIONS(3232), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5046), 17, + STATE(3658), 1, + sym_comment, + ACTIONS(3506), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_else, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [135087] = 5, + [136587] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3767), 1, + STATE(3659), 1, sym_comment, - ACTIONS(4925), 2, + ACTIONS(5216), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4927), 17, + ACTIONS(5218), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -334254,47 +323012,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [135120] = 5, + [136618] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2183), 1, + anon_sym_PIPE, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3768), 1, + STATE(3660), 1, sym_comment, - ACTIONS(5060), 2, + ACTIONS(2185), 16, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5062), 17, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_with, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [135153] = 5, + anon_sym_PIPE_RBRACE, + [136649] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3769), 1, - sym_comment, - ACTIONS(4988), 2, + ACTIONS(5106), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4990), 17, + STATE(3661), 1, + sym_comment, + ACTIONS(5108), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -334305,141 +323059,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [135186] = 5, + [136680] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3770), 1, - sym_comment, - ACTIONS(4992), 2, + ACTIONS(4855), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4994), 17, + ACTIONS(6978), 1, + anon_sym_LT, + STATE(3662), 1, + sym_comment, + STATE(3690), 1, + sym_type_arguments, + ACTIONS(4857), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [135219] = 5, + [136715] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2239), 1, + anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3771), 1, - sym_comment, - ACTIONS(4992), 2, + ACTIONS(5254), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4994), 17, + STATE(3663), 1, + sym_comment, + ACTIONS(5256), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [135252] = 5, + [136748] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2235), 1, + anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3772), 1, - sym_comment, - ACTIONS(5008), 2, + ACTIONS(5254), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5010), 17, + STATE(3664), 1, + sym_comment, + ACTIONS(5256), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [135285] = 5, + [136781] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3773), 1, + ACTIONS(4159), 1, + anon_sym_LPAREN, + ACTIONS(4833), 1, + anon_sym_PIPE, + ACTIONS(7055), 1, + anon_sym_LT, + ACTIONS(7061), 1, + anon_sym_DOT, + ACTIONS(7063), 1, + anon_sym_QMARK_DOT, + STATE(3665), 1, sym_comment, - ACTIONS(4925), 2, + STATE(3877), 1, + sym_arguments, + STATE(4026), 1, + sym_type_arguments, + ACTIONS(4835), 10, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4927), 17, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [135318] = 5, + anon_sym_PIPE_RBRACE, + [136824] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3774), 1, + STATE(3666), 1, sym_comment, - ACTIONS(5008), 2, + ACTIONS(5176), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5010), 17, + ACTIONS(5178), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -334450,47 +323204,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [135351] = 5, + [136855] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3775), 1, - sym_comment, - ACTIONS(5120), 2, + ACTIONS(3228), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5122), 17, + STATE(3667), 1, + sym_comment, + ACTIONS(3518), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_else, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [135384] = 5, + [136886] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3776), 1, - sym_comment, - ACTIONS(4929), 2, + ACTIONS(5349), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4931), 17, + STATE(3668), 1, + sym_comment, + ACTIONS(5351), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -334501,52 +323251,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [135417] = 5, + [136917] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3777), 1, - sym_comment, - ACTIONS(4929), 2, + ACTIONS(3230), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4931), 17, + STATE(3669), 1, + sym_comment, + ACTIONS(3508), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_else, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [135450] = 5, + [136948] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3778), 1, - sym_comment, - ACTIONS(5288), 2, + ACTIONS(5353), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5290), 17, + STATE(3670), 1, + sym_comment, + ACTIONS(5355), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -334557,24 +323303,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [135483] = 5, + [136979] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3779), 1, - sym_comment, - ACTIONS(5020), 2, + ACTIONS(5357), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5022), 17, + STATE(3671), 1, + sym_comment, + ACTIONS(5359), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -334585,143 +323329,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [135516] = 5, + [137010] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3780), 1, + ACTIONS(4147), 1, + anon_sym_PIPE, + ACTIONS(4159), 1, + anon_sym_LPAREN, + ACTIONS(4161), 1, + anon_sym_DOT, + ACTIONS(4163), 1, + anon_sym_QMARK_DOT, + ACTIONS(7055), 1, + anon_sym_LT, + STATE(3672), 1, sym_comment, - ACTIONS(4972), 2, + STATE(3879), 1, + sym_arguments, + STATE(4025), 1, + sym_type_arguments, + ACTIONS(4143), 10, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4974), 17, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [135549] = 5, + anon_sym_PIPE_RBRACE, + [137053] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3781), 1, - sym_comment, - ACTIONS(5016), 2, + ACTIONS(3222), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5018), 17, + STATE(3673), 1, + sym_comment, + ACTIONS(3540), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_else, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [135582] = 5, + [137084] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2251), 1, + anon_sym_PIPE, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3782), 1, + STATE(3674), 1, sym_comment, - ACTIONS(4972), 2, + ACTIONS(2253), 16, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4974), 17, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_with, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [135615] = 5, + anon_sym_PIPE_RBRACE, + [137115] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3783), 1, - sym_comment, - ACTIONS(4929), 2, + ACTIONS(3236), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(4931), 17, + STATE(3675), 1, + sym_comment, + ACTIONS(3570), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_else, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [135648] = 9, + [137146] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4817), 1, + ACTIONS(4841), 1, anon_sym_EQ, - ACTIONS(6973), 1, - anon_sym_LT, - ACTIONS(6979), 1, - anon_sym_DOT, - ACTIONS(6981), 1, + ACTIONS(6990), 1, anon_sym_is, - STATE(3784), 1, + STATE(3676), 1, sym_comment, - STATE(3913), 1, - sym_type_arguments, - ACTIONS(4203), 14, + ACTIONS(4843), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -334736,350 +323471,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [135689] = 5, + [137178] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3785), 1, - sym_comment, - ACTIONS(5020), 2, + ACTIONS(4845), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5022), 17, + STATE(3677), 1, + sym_comment, + ACTIONS(4847), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [135722] = 5, + anon_sym_is, + [137208] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3786), 1, - sym_comment, - ACTIONS(5016), 2, + ACTIONS(4871), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5018), 17, + ACTIONS(6990), 1, + anon_sym_is, + STATE(3678), 1, + sym_comment, + ACTIONS(4873), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [135755] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(6983), 1, - sym_identifier, - ACTIONS(6985), 1, - anon_sym_STAR, - ACTIONS(6987), 1, - anon_sym_type, - ACTIONS(6989), 1, - anon_sym_LBRACE, - ACTIONS(6991), 1, - anon_sym_typeof, - STATE(3787), 1, - sym_comment, - STATE(5579), 1, - sym_import_require_clause, - STATE(5580), 1, - sym_string, - STATE(7025), 1, - sym__import_identifier, - STATE(7097), 1, - sym_import_clause, - STATE(7185), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(6993), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [135809] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(6985), 1, - anon_sym_STAR, - ACTIONS(6989), 1, - anon_sym_LBRACE, - ACTIONS(6995), 1, - sym_identifier, - ACTIONS(6997), 1, - anon_sym_type, - ACTIONS(6999), 1, - anon_sym_typeof, - STATE(3788), 1, - sym_comment, - STATE(5752), 1, - sym_string, - STATE(5753), 1, - sym_import_require_clause, - STATE(7025), 1, - sym__import_identifier, - STATE(7091), 1, - sym_import_clause, - STATE(7185), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(6993), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [135863] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(6985), 1, - anon_sym_STAR, - ACTIONS(6989), 1, - anon_sym_LBRACE, - ACTIONS(7001), 1, - sym_identifier, - ACTIONS(7003), 1, - anon_sym_type, - ACTIONS(7005), 1, - anon_sym_typeof, - STATE(3789), 1, - sym_comment, - STATE(5743), 1, - sym_import_require_clause, - STATE(5744), 1, - sym_string, - STATE(6981), 1, - sym_import_clause, - STATE(7025), 1, - sym__import_identifier, - STATE(7185), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(6993), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [135917] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, + [137240] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7009), 1, + ACTIONS(1972), 1, anon_sym_EQ, - ACTIONS(7011), 1, - anon_sym_LBRACE, - ACTIONS(7013), 1, - anon_sym_COMMA, - ACTIONS(7015), 1, - anon_sym_COLON, - ACTIONS(7017), 1, - anon_sym_GT, - ACTIONS(7020), 1, - anon_sym_DOT, - ACTIONS(7022), 1, - anon_sym_SLASH_GT, - ACTIONS(7024), 1, - anon_sym_LT, - ACTIONS(7026), 1, - anon_sym_extends, - STATE(3790), 1, - sym_comment, - STATE(4330), 1, - sym_type_arguments, - STATE(4364), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, - sym_jsx_namespace_name, - STATE(5735), 1, - sym_constraint, - STATE(6626), 1, - sym_default_type, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [135977] = 16, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(6985), 1, - anon_sym_STAR, - ACTIONS(6989), 1, - anon_sym_LBRACE, - ACTIONS(7028), 1, - sym_identifier, - ACTIONS(7030), 1, - anon_sym_type, - ACTIONS(7032), 1, - anon_sym_typeof, - STATE(3791), 1, + STATE(3679), 1, sym_comment, - STATE(5660), 1, - sym_import_require_clause, - STATE(5661), 1, - sym_string, - STATE(6859), 1, - sym_import_clause, - STATE(7025), 1, - sym__import_identifier, - STATE(7185), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(6993), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [136031] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7009), 1, - anon_sym_EQ, - ACTIONS(7011), 1, + ACTIONS(2030), 15, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(7013), 1, anon_sym_COMMA, - ACTIONS(7015), 1, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(7017), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, - ACTIONS(7020), 1, - anon_sym_DOT, - ACTIONS(7024), 1, - anon_sym_LT, - ACTIONS(7026), 1, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - ACTIONS(7034), 1, - anon_sym_SLASH_GT, - STATE(3792), 1, - sym_comment, - STATE(4216), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4412), 1, - sym_type_arguments, - STATE(4982), 1, - sym_jsx_namespace_name, - STATE(5735), 1, - sym_constraint, - STATE(6626), 1, - sym_default_type, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [136091] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(6985), 1, - anon_sym_STAR, - ACTIONS(6989), 1, - anon_sym_LBRACE, - ACTIONS(7036), 1, - sym_identifier, - ACTIONS(7038), 1, - anon_sym_type, - ACTIONS(7040), 1, - anon_sym_typeof, - STATE(3793), 1, - sym_comment, - STATE(5618), 1, - sym_string, - STATE(5619), 1, - sym_import_require_clause, - STATE(7006), 1, - sym_import_clause, - STATE(7025), 1, - sym__import_identifier, - STATE(7185), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(6993), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [136145] = 8, + anon_sym_is, + [137270] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4817), 1, + ACTIONS(4855), 1, anon_sym_EQ, - ACTIONS(6973), 1, - anon_sym_LT, - ACTIONS(6979), 1, - anon_sym_DOT, - STATE(3794), 1, + ACTIONS(7065), 1, + anon_sym_is, + STATE(3680), 1, sym_comment, - STATE(3913), 1, - sym_type_arguments, - ACTIONS(4203), 14, + ACTIONS(4857), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -335094,25 +323573,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [136183] = 5, + [137302] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3188), 1, + ACTIONS(4881), 1, anon_sym_EQ, - STATE(3795), 1, + ACTIONS(7067), 1, + anon_sym_LBRACK, + STATE(3681), 1, sym_comment, - ACTIONS(3432), 16, + ACTIONS(4883), 13, 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_EQ_GT, @@ -335120,47 +323598,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [136214] = 5, + [137333] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2221), 1, - anon_sym_PIPE, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3796), 1, + ACTIONS(5166), 1, + anon_sym_PIPE, + STATE(3682), 1, sym_comment, - ACTIONS(2223), 16, + ACTIONS(5168), 14, sym__automatic_semicolon, anon_sym_EQ, 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, anon_sym_LT, - anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [136245] = 5, + [137362] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5316), 1, + ACTIONS(5005), 1, anon_sym_EQ, - STATE(3797), 1, + STATE(3683), 1, sym_comment, - ACTIONS(5318), 16, + ACTIONS(5007), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -335169,24 +323644,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [136276] = 5, + [137391] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5320), 1, + ACTIONS(5060), 1, anon_sym_EQ, - STATE(3798), 1, + STATE(3684), 1, sym_comment, - ACTIONS(5322), 16, + ACTIONS(5062), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -335195,102 +323668,107 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [136307] = 5, + [137420] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3196), 1, + ACTIONS(5060), 1, anon_sym_EQ, - STATE(3799), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + STATE(3685), 1, sym_comment, - ACTIONS(3436), 16, + ACTIONS(5062), 11, 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_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [136338] = 5, + [137455] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5324), 1, - anon_sym_EQ, - STATE(3800), 1, + ACTIONS(7075), 1, + anon_sym_LPAREN, + ACTIONS(7077), 1, + anon_sym_DOT, + ACTIONS(7079), 1, + anon_sym_QMARK_DOT, + ACTIONS(7081), 1, + anon_sym_LT, + STATE(3686), 1, sym_comment, - ACTIONS(5326), 16, - anon_sym_as, + STATE(4001), 1, + sym_arguments, + STATE(4124), 1, + sym_type_arguments, + ACTIONS(4815), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, - anon_sym_QMARK, anon_sym_extends, - [136369] = 5, + [137494] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5343), 1, - anon_sym_EQ, - STATE(3801), 1, + ACTIONS(7075), 1, + anon_sym_LPAREN, + ACTIONS(7081), 1, + anon_sym_LT, + ACTIONS(7083), 1, + anon_sym_DOT, + ACTIONS(7085), 1, + anon_sym_QMARK_DOT, + STATE(3687), 1, sym_comment, - ACTIONS(5345), 16, - anon_sym_as, + STATE(4007), 1, + sym_arguments, + STATE(4129), 1, + sym_type_arguments, + ACTIONS(4835), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, - anon_sym_QMARK, anon_sym_extends, - [136400] = 5, + [137533] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5347), 1, + ACTIONS(5086), 1, anon_sym_EQ, - STATE(3802), 1, + STATE(3688), 1, sym_comment, - ACTIONS(5349), 16, + ACTIONS(5088), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -335299,24 +323777,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [136431] = 5, + [137562] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5351), 1, + ACTIONS(5090), 1, anon_sym_EQ, - STATE(3803), 1, + STATE(3689), 1, sym_comment, - ACTIONS(5353), 16, + ACTIONS(5092), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -335325,20 +323801,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [136462] = 5, + [137591] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3804), 1, - sym_comment, - ACTIONS(5135), 2, + ACTIONS(5150), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5137), 15, + STATE(3690), 1, + sym_comment, + ACTIONS(5152), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -335348,76 +323822,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [136493] = 5, + [137620] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5336), 1, - anon_sym_EQ, - STATE(3805), 1, + ACTIONS(7087), 1, + anon_sym_DQUOTE, + ACTIONS(7089), 1, + anon_sym_SQUOTE, + ACTIONS(7093), 1, + sym_number, + ACTIONS(7095), 1, + anon_sym_unique, + STATE(3691), 1, sym_comment, - ACTIONS(5338), 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, - [136524] = 5, + STATE(7179), 1, + sym_predefined_type, + STATE(7183), 1, + sym_string, + ACTIONS(7091), 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, + [137659] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5332), 1, + ACTIONS(5120), 1, anon_sym_EQ, - STATE(3806), 1, + ACTIONS(7067), 1, + anon_sym_LBRACK, + STATE(3692), 1, sym_comment, - ACTIONS(5334), 16, + ACTIONS(5122), 13, anon_sym_as, anon_sym_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, - [136555] = 6, + [137690] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2083), 1, - anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5084), 1, + ACTIONS(5114), 1, anon_sym_EQ, - STATE(3807), 1, + ACTIONS(7097), 1, + anon_sym_extends, + STATE(3693), 1, sym_comment, - ACTIONS(5086), 15, + ACTIONS(5116), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -335430,190 +323905,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_QMARK, - anon_sym_extends, - [136588] = 5, + [137721] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3192), 1, - anon_sym_EQ, - STATE(3808), 1, + ACTIONS(7087), 1, + anon_sym_DQUOTE, + ACTIONS(7089), 1, + anon_sym_SQUOTE, + ACTIONS(7095), 1, + anon_sym_unique, + ACTIONS(7099), 1, + sym_number, + STATE(3694), 1, sym_comment, - ACTIONS(3434), 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_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [136619] = 11, + STATE(7470), 1, + sym_predefined_type, + STATE(7473), 1, + sym_string, + ACTIONS(7091), 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, + [137760] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4131), 1, - anon_sym_PIPE, - ACTIONS(4179), 1, - anon_sym_LPAREN, - ACTIONS(4181), 1, - anon_sym_DOT, - ACTIONS(4183), 1, - anon_sym_QMARK_DOT, - ACTIONS(7042), 1, - anon_sym_LT, - STATE(3809), 1, + ACTIONS(7087), 1, + anon_sym_DQUOTE, + ACTIONS(7089), 1, + anon_sym_SQUOTE, + ACTIONS(7095), 1, + anon_sym_unique, + ACTIONS(7101), 1, + sym_number, + STATE(3695), 1, sym_comment, - STATE(4024), 1, - sym_arguments, - STATE(4171), 1, - sym_type_arguments, - ACTIONS(4127), 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, - [136662] = 5, + STATE(7115), 1, + sym_string, + STATE(7117), 1, + sym_predefined_type, + ACTIONS(7091), 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, + [137799] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5328), 1, - anon_sym_EQ, - STATE(3810), 1, + ACTIONS(7087), 1, + anon_sym_DQUOTE, + ACTIONS(7089), 1, + anon_sym_SQUOTE, + ACTIONS(7095), 1, + anon_sym_unique, + ACTIONS(7103), 1, + sym_number, + STATE(3696), 1, sym_comment, - ACTIONS(5330), 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, - [136693] = 11, + STATE(7047), 2, + sym_string, + sym_predefined_type, + ACTIONS(7091), 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, + [137836] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4179), 1, - anon_sym_LPAREN, - ACTIONS(4823), 1, - anon_sym_PIPE, - ACTIONS(7042), 1, - anon_sym_LT, - ACTIONS(7044), 1, - anon_sym_DOT, - ACTIONS(7046), 1, - anon_sym_QMARK_DOT, - STATE(3811), 1, + ACTIONS(7087), 1, + anon_sym_DQUOTE, + ACTIONS(7089), 1, + anon_sym_SQUOTE, + ACTIONS(7095), 1, + anon_sym_unique, + ACTIONS(7105), 1, + sym_number, + STATE(3697), 1, sym_comment, - STATE(4022), 1, - sym_arguments, - STATE(4174), 1, - sym_type_arguments, - ACTIONS(4825), 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, - [136736] = 5, + STATE(7110), 1, + sym_string, + STATE(7111), 1, + sym_predefined_type, + ACTIONS(7091), 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, + [137875] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2077), 1, - anon_sym_PIPE, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3812), 1, + ACTIONS(7087), 1, + anon_sym_DQUOTE, + ACTIONS(7089), 1, + anon_sym_SQUOTE, + ACTIONS(7095), 1, + anon_sym_unique, + ACTIONS(7107), 1, + sym_number, + STATE(3698), 1, sym_comment, - ACTIONS(2079), 16, - sym__automatic_semicolon, - anon_sym_EQ, - 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_AMP, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [136767] = 7, + STATE(7072), 1, + sym_string, + STATE(7107), 1, + sym_predefined_type, + ACTIONS(7091), 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, + [137914] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7048), 1, - anon_sym_DOT, - ACTIONS(7050), 1, - anon_sym_QMARK_DOT, - STATE(3813), 1, - sym_comment, - ACTIONS(5247), 2, + ACTIONS(5082), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5249), 13, + ACTIONS(7067), 1, + anon_sym_LBRACK, + STATE(3699), 1, + sym_comment, + ACTIONS(4883), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(5084), 10, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [136802] = 5, + anon_sym_QMARK, + [137947] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3814), 1, + ACTIONS(7087), 1, + anon_sym_DQUOTE, + ACTIONS(7089), 1, + anon_sym_SQUOTE, + ACTIONS(7095), 1, + anon_sym_unique, + ACTIONS(7109), 1, + sym_number, + STATE(3700), 1, sym_comment, - ACTIONS(5127), 2, + STATE(7188), 1, + sym_predefined_type, + STATE(7190), 1, + sym_string, + ACTIONS(7091), 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, + [137986] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5074), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5129), 15, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + STATE(3701), 1, + sym_comment, + ACTIONS(5076), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -335623,24 +324130,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [136833] = 6, + anon_sym_QMARK, + [138021] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3702), 1, + sym_comment, + ACTIONS(7111), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [138048] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7087), 1, + anon_sym_DQUOTE, + ACTIONS(7089), 1, + anon_sym_SQUOTE, + ACTIONS(7095), 1, + anon_sym_unique, + ACTIONS(7113), 1, + sym_number, + STATE(3703), 1, + sym_comment, + STATE(7093), 2, + sym_string, + sym_predefined_type, + ACTIONS(7091), 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, + [138085] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7087), 1, + anon_sym_DQUOTE, + ACTIONS(7089), 1, + anon_sym_SQUOTE, + ACTIONS(7095), 1, + anon_sym_unique, + ACTIONS(7115), 1, + sym_number, + STATE(3704), 1, + sym_comment, + STATE(7374), 1, + sym_string, + STATE(7478), 1, + sym_predefined_type, + ACTIONS(7091), 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, + [138124] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2197), 1, - anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5084), 1, + ACTIONS(5025), 1, anon_sym_EQ, - STATE(3815), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + STATE(3705), 1, sym_comment, - ACTIONS(5086), 15, + ACTIONS(5027), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -335651,161 +324234,127 @@ static const uint16_t ts_small_parse_table[] = { 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, - [136866] = 5, + [138155] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5332), 1, - anon_sym_EQ, - STATE(3816), 1, + ACTIONS(7087), 1, + anon_sym_DQUOTE, + ACTIONS(7089), 1, + anon_sym_SQUOTE, + ACTIONS(7095), 1, + anon_sym_unique, + ACTIONS(7117), 1, + sym_number, + STATE(3706), 1, sym_comment, - ACTIONS(5334), 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, - [136897] = 11, + STATE(7460), 1, + sym_predefined_type, + STATE(7463), 1, + sym_string, + ACTIONS(7091), 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, + [138194] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4179), 1, + ACTIONS(7075), 1, anon_sym_LPAREN, - ACTIONS(4829), 1, - anon_sym_PIPE, - ACTIONS(7042), 1, + ACTIONS(7081), 1, anon_sym_LT, - ACTIONS(7052), 1, + ACTIONS(7119), 1, anon_sym_DOT, - ACTIONS(7054), 1, + ACTIONS(7121), 1, anon_sym_QMARK_DOT, - STATE(3817), 1, + STATE(3707), 1, sym_comment, - STATE(4023), 1, + STATE(4009), 1, sym_arguments, - STATE(4172), 1, + STATE(4133), 1, sym_type_arguments, - ACTIONS(4831), 10, + ACTIONS(4143), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [136940] = 5, + [138233] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3818), 1, - sym_comment, - ACTIONS(5112), 2, + ACTIONS(5078), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5114), 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, + ACTIONS(7069), 1, anon_sym_AMP, + ACTIONS(7071), 1, anon_sym_PIPE, + ACTIONS(7073), 1, anon_sym_extends, - [136971] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(3224), 1, - anon_sym_EQ, - STATE(3819), 1, + STATE(3708), 1, sym_comment, - ACTIONS(3442), 16, + ACTIONS(5080), 11, 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_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [137002] = 5, + [138268] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5336), 1, - anon_sym_EQ, - STATE(3820), 1, + STATE(3709), 1, sym_comment, - ACTIONS(5338), 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, - [137033] = 7, + ACTIONS(7123), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [138295] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4835), 1, + ACTIONS(5041), 1, anon_sym_EQ, - ACTIONS(6973), 1, - anon_sym_LT, - STATE(3821), 1, + STATE(3710), 1, sym_comment, - STATE(3898), 1, - sym_type_arguments, - ACTIONS(4837), 14, + ACTIONS(5043), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -335820,42 +324369,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137068] = 5, + [138324] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3172), 1, - anon_sym_EQ, - STATE(3822), 1, + STATE(3711), 1, sym_comment, - ACTIONS(3440), 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_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [137099] = 5, + ACTIONS(7125), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [138351] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4851), 1, + STATE(3712), 1, + sym_comment, + ACTIONS(7127), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [138378] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5198), 1, anon_sym_EQ, - STATE(3823), 1, + STATE(3713), 1, sym_comment, - ACTIONS(4853), 15, + ACTIONS(5200), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -335870,19 +324439,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [137129] = 6, + [138407] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3714), 1, + sym_comment, + ACTIONS(7129), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [138434] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7087), 1, + anon_sym_DQUOTE, + ACTIONS(7089), 1, + anon_sym_SQUOTE, + ACTIONS(7095), 1, + anon_sym_unique, + ACTIONS(7131), 1, + sym_number, + STATE(3715), 1, + sym_comment, + STATE(7199), 1, + sym_predefined_type, + STATE(7212), 1, + sym_string, + ACTIONS(7091), 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, + [138473] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7087), 1, + anon_sym_DQUOTE, + ACTIONS(7089), 1, + anon_sym_SQUOTE, + ACTIONS(7095), 1, + anon_sym_unique, + ACTIONS(7133), 1, + sym_number, + STATE(3716), 1, + sym_comment, + STATE(7257), 2, + sym_string, + sym_predefined_type, + ACTIONS(7091), 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, + [138510] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4835), 1, + ACTIONS(5001), 1, anon_sym_EQ, - ACTIONS(7056), 1, - anon_sym_is, - STATE(3824), 1, + STATE(3717), 1, sym_comment, - ACTIONS(4837), 14, + ACTIONS(5003), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -335897,16 +324543,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137161] = 5, + [138539] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1978), 1, - anon_sym_EQ, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3825), 1, + ACTIONS(5206), 1, + anon_sym_EQ, + STATE(3718), 1, sym_comment, - ACTIONS(2030), 15, + ACTIONS(5208), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -335921,19 +324567,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - anon_sym_is, - [137191] = 6, + [138568] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4859), 1, + ACTIONS(5070), 1, anon_sym_EQ, - ACTIONS(6981), 1, - anon_sym_is, - STATE(3826), 1, + STATE(3719), 1, sym_comment, - ACTIONS(4861), 14, + ACTIONS(5072), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -335948,18 +324591,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137223] = 6, + [138597] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, + ACTIONS(5220), 1, anon_sym_EQ, - ACTIONS(6981), 1, - anon_sym_is, - STATE(3827), 1, + STATE(3720), 1, sym_comment, - ACTIONS(4849), 14, + ACTIONS(5222), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -335974,69 +324615,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137255] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5064), 1, - anon_sym_PIPE, - STATE(3828), 1, - sym_comment, - ACTIONS(5066), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [137284] = 10, + [138626] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7058), 1, - anon_sym_LPAREN, - ACTIONS(7060), 1, - anon_sym_DOT, - ACTIONS(7062), 1, - anon_sym_QMARK_DOT, - ACTIONS(7064), 1, - anon_sym_LT, - STATE(3829), 1, + STATE(3721), 1, sym_comment, - STATE(4149), 1, - sym_arguments, - STATE(4293), 1, - sym_type_arguments, - ACTIONS(4127), 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, - [137323] = 5, + ACTIONS(7135), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [138653] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5004), 1, + ACTIONS(4997), 1, anon_sym_EQ, - STATE(3830), 1, + STATE(3722), 1, sym_comment, - ACTIONS(5006), 14, + ACTIONS(4999), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -336051,53 +324662,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137352] = 9, + [138682] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4817), 1, - anon_sym_PIPE, - ACTIONS(7042), 1, - anon_sym_LT, - ACTIONS(7066), 1, - anon_sym_DOT, - ACTIONS(7068), 1, - anon_sym_is, - STATE(3831), 1, + ACTIONS(7087), 1, + anon_sym_DQUOTE, + ACTIONS(7089), 1, + anon_sym_SQUOTE, + ACTIONS(7095), 1, + anon_sym_unique, + ACTIONS(7137), 1, + sym_number, + STATE(3723), 1, sym_comment, - STATE(4116), 1, - sym_type_arguments, - ACTIONS(4203), 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, - [137389] = 9, + STATE(7141), 2, + sym_string, + sym_predefined_type, + ACTIONS(7091), 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, + [138719] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7070), 1, + ACTIONS(7087), 1, anon_sym_DQUOTE, - ACTIONS(7072), 1, + ACTIONS(7089), 1, anon_sym_SQUOTE, - ACTIONS(7076), 1, - sym_number, - ACTIONS(7078), 1, + ACTIONS(7095), 1, anon_sym_unique, - STATE(3832), 1, + ACTIONS(7139), 1, + sym_number, + STATE(3724), 1, sym_comment, - STATE(7491), 2, - sym_string, + STATE(7134), 1, sym_predefined_type, - ACTIONS(7074), 9, + STATE(7139), 1, + sym_string, + ACTIONS(7091), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -336107,16 +324719,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [137426] = 5, + [138758] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5094), 1, + ACTIONS(5236), 1, anon_sym_EQ, - STATE(3833), 1, + STATE(3725), 1, sym_comment, - ACTIONS(5096), 14, + ACTIONS(5238), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -336131,22 +324743,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137455] = 8, + [138787] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5218), 1, + ACTIONS(5240), 1, anon_sym_EQ, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - STATE(3834), 1, + STATE(3726), 1, sym_comment, - ACTIONS(5220), 11, + ACTIONS(5242), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -336157,46 +324763,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - [137490] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3835), 1, - sym_comment, - ACTIONS(7086), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [137517] = 8, + anon_sym_extends, + [138816] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5222), 1, + ACTIONS(5228), 1, anon_sym_EQ, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - STATE(3836), 1, + STATE(3727), 1, sym_comment, - ACTIONS(5224), 11, + ACTIONS(5230), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -336207,23 +324787,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - [137552] = 8, + anon_sym_extends, + [138845] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4976), 1, + ACTIONS(5310), 1, anon_sym_EQ, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - STATE(3837), 1, + STATE(3728), 1, sym_comment, - ACTIONS(4978), 11, + ACTIONS(5312), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -336234,17 +324811,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - [137587] = 5, + anon_sym_extends, + [138874] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5150), 1, + ACTIONS(5029), 1, anon_sym_EQ, - STATE(3838), 1, + STATE(3729), 1, sym_comment, - ACTIONS(5152), 14, + ACTIONS(5031), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -336259,16 +324839,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137616] = 5, + [138903] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5116), 1, + ACTIONS(5266), 1, anon_sym_EQ, - STATE(3839), 1, + STATE(3730), 1, sym_comment, - ACTIONS(5118), 14, + ACTIONS(5268), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -336283,83 +324863,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [137645] = 10, + [138932] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7070), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, - anon_sym_SQUOTE, - ACTIONS(7078), 1, - anon_sym_unique, - ACTIONS(7088), 1, - sym_number, - STATE(3840), 1, + ACTIONS(5266), 1, + anon_sym_EQ, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + STATE(3731), 1, sym_comment, - STATE(7328), 1, - sym_predefined_type, - STATE(7587), 1, - sym_string, - ACTIONS(7074), 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, - [137684] = 10, + ACTIONS(5268), 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, + [138967] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7070), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, - anon_sym_SQUOTE, - ACTIONS(7078), 1, - anon_sym_unique, - ACTIONS(7090), 1, - sym_number, - STATE(3841), 1, + ACTIONS(5286), 1, + anon_sym_EQ, + STATE(3732), 1, sym_comment, - STATE(7422), 1, - sym_string, - STATE(7424), 1, - sym_predefined_type, - ACTIONS(7074), 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, - [137723] = 9, + ACTIONS(5288), 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, + [138996] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7070), 1, + ACTIONS(7087), 1, anon_sym_DQUOTE, - ACTIONS(7072), 1, + ACTIONS(7089), 1, anon_sym_SQUOTE, - ACTIONS(7078), 1, + ACTIONS(7095), 1, anon_sym_unique, - ACTIONS(7092), 1, + ACTIONS(7141), 1, sym_number, - STATE(3842), 1, + STATE(3733), 1, sym_comment, - STATE(7606), 2, - sym_string, + STATE(7125), 1, sym_predefined_type, - ACTIONS(7074), 9, + STATE(7132), 1, + sym_string, + ACTIONS(7091), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -336369,22 +324943,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [137760] = 8, + [139035] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5163), 1, + ACTIONS(5294), 1, anon_sym_EQ, - ACTIONS(7080), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - STATE(3843), 1, + STATE(3734), 1, sym_comment, - ACTIONS(5165), 11, + ACTIONS(5296), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -336395,69 +324965,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_PIPE, anon_sym_QMARK, - [137795] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3844), 1, - sym_comment, - ACTIONS(7094), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [137822] = 10, + anon_sym_extends, + [139066] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7070), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, - anon_sym_SQUOTE, - ACTIONS(7078), 1, - anon_sym_unique, - ACTIONS(7096), 1, - sym_number, - STATE(3845), 1, + ACTIONS(5304), 1, + anon_sym_EQ, + STATE(3735), 1, sym_comment, - STATE(7180), 1, - sym_predefined_type, - STATE(7181), 1, - sym_string, - ACTIONS(7074), 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, - [137861] = 5, + ACTIONS(5306), 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, + [139095] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5060), 1, + ACTIONS(5162), 1, anon_sym_PIPE, - STATE(3846), 1, + STATE(3736), 1, sym_comment, - ACTIONS(5062), 14, + ACTIONS(5164), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -336472,16 +325016,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [137890] = 5, + [139124] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5056), 1, + ACTIONS(5158), 1, anon_sym_PIPE, - STATE(3847), 1, + STATE(3737), 1, sym_comment, - ACTIONS(5058), 14, + ACTIONS(5160), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -336496,16 +325040,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [137919] = 5, + [139153] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5052), 1, + ACTIONS(5128), 1, anon_sym_PIPE, - STATE(3848), 1, + STATE(3738), 1, sym_comment, - ACTIONS(5054), 14, + ACTIONS(5130), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -336520,16 +325064,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [137948] = 5, + [139182] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5056), 1, + ACTIONS(5124), 1, anon_sym_PIPE, - STATE(3849), 1, + STATE(3739), 1, sym_comment, - ACTIONS(5058), 14, + ACTIONS(5126), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -336544,16 +325088,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [137977] = 5, + [139211] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5052), 1, + ACTIONS(5128), 1, anon_sym_PIPE, - STATE(3850), 1, + STATE(3740), 1, sym_comment, - ACTIONS(5054), 14, + ACTIONS(5130), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -336568,16 +325112,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [138006] = 5, + [139240] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5048), 1, + ACTIONS(5124), 1, anon_sym_PIPE, - STATE(3851), 1, + STATE(3741), 1, sym_comment, - ACTIONS(5050), 14, + ACTIONS(5126), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -336592,16 +325136,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [138035] = 5, + [139269] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5044), 1, + ACTIONS(5110), 1, anon_sym_PIPE, - STATE(3852), 1, + STATE(3742), 1, sym_comment, - ACTIONS(5046), 14, + ACTIONS(5112), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -336616,16 +325160,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [138064] = 5, + [139298] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5048), 1, + ACTIONS(5102), 1, anon_sym_PIPE, - STATE(3853), 1, + STATE(3743), 1, sym_comment, - ACTIONS(5050), 14, + ACTIONS(5104), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -336640,16 +325184,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [138093] = 5, + [139327] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5044), 1, + ACTIONS(5110), 1, anon_sym_PIPE, - STATE(3854), 1, + STATE(3744), 1, sym_comment, - ACTIONS(5046), 14, + ACTIONS(5112), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -336664,16 +325208,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [138122] = 5, + [139356] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5016), 1, + ACTIONS(5102), 1, anon_sym_PIPE, - STATE(3855), 1, + STATE(3745), 1, sym_comment, - ACTIONS(5018), 14, + ACTIONS(5104), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -336688,16 +325232,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [138151] = 5, + [139385] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4972), 1, + ACTIONS(5098), 1, anon_sym_PIPE, - STATE(3856), 1, + STATE(3746), 1, sym_comment, - ACTIONS(4974), 14, + ACTIONS(5100), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -336712,16 +325256,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [138180] = 5, + [139414] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5016), 1, + ACTIONS(5094), 1, anon_sym_PIPE, - STATE(3857), 1, + STATE(3747), 1, sym_comment, - ACTIONS(5018), 14, + ACTIONS(5096), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -336736,16 +325280,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [138209] = 5, + [139443] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4972), 1, + ACTIONS(5098), 1, anon_sym_PIPE, - STATE(3858), 1, + STATE(3748), 1, sym_comment, - ACTIONS(4974), 14, + ACTIONS(5100), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -336760,207 +325304,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [138238] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7070), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, - anon_sym_SQUOTE, - ACTIONS(7078), 1, - anon_sym_unique, - ACTIONS(7098), 1, - sym_number, - STATE(3859), 1, - sym_comment, - STATE(7184), 1, - sym_predefined_type, - STATE(7186), 1, - sym_string, - ACTIONS(7074), 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, - [138277] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3860), 1, - sym_comment, - ACTIONS(7100), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [138304] = 10, + [139472] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7070), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, - anon_sym_SQUOTE, - ACTIONS(7078), 1, - anon_sym_unique, - ACTIONS(7102), 1, - sym_number, - STATE(3861), 1, + ACTIONS(5094), 1, + anon_sym_PIPE, + STATE(3749), 1, sym_comment, - STATE(7464), 1, - sym_predefined_type, - STATE(7467), 1, - sym_string, - ACTIONS(7074), 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, - [138343] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5068), 1, + ACTIONS(5096), 14, + sym__automatic_semicolon, anon_sym_EQ, - STATE(3862), 1, - sym_comment, - ACTIONS(5070), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [138372] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7070), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, - anon_sym_SQUOTE, - ACTIONS(7078), 1, - anon_sym_unique, - ACTIONS(7104), 1, - sym_number, - STATE(3863), 1, - sym_comment, - STATE(7189), 1, - sym_predefined_type, - STATE(7190), 1, - sym_string, - ACTIONS(7074), 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, - [138411] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7070), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, - anon_sym_SQUOTE, - ACTIONS(7078), 1, - anon_sym_unique, - ACTIONS(7106), 1, - sym_number, - STATE(3864), 1, - sym_comment, - STATE(7417), 1, - sym_predefined_type, - STATE(7603), 1, - sym_string, - ACTIONS(7074), 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, - [138450] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7070), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, - anon_sym_SQUOTE, - ACTIONS(7078), 1, - anon_sym_unique, - ACTIONS(7108), 1, - sym_number, - STATE(3865), 1, - sym_comment, - STATE(7196), 2, - sym_string, - sym_predefined_type, - ACTIONS(7074), 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, - [138487] = 5, + anon_sym_PIPE_RBRACE, + [139501] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5102), 1, + ACTIONS(4972), 1, anon_sym_EQ, - STATE(3866), 1, + STATE(3750), 1, sym_comment, - ACTIONS(5104), 14, + ACTIONS(4974), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -336975,55 +325352,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138516] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7070), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, - anon_sym_SQUOTE, - ACTIONS(7078), 1, - anon_sym_unique, - ACTIONS(7110), 1, - sym_number, - STATE(3867), 1, - sym_comment, - STATE(7429), 1, - sym_string, - STATE(7430), 1, - sym_predefined_type, - ACTIONS(7074), 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, - [138555] = 10, + [139530] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7070), 1, + ACTIONS(7087), 1, anon_sym_DQUOTE, - ACTIONS(7072), 1, + ACTIONS(7089), 1, anon_sym_SQUOTE, - ACTIONS(7078), 1, + ACTIONS(7095), 1, anon_sym_unique, - ACTIONS(7112), 1, + ACTIONS(7143), 1, sym_number, - STATE(3868), 1, + STATE(3751), 1, sym_comment, - STATE(7597), 1, + STATE(7118), 1, sym_predefined_type, - STATE(7598), 1, + STATE(7119), 1, sym_string, - ACTIONS(7074), 9, + ACTIONS(7091), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -337033,75 +325381,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [138594] = 10, + [139569] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7070), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, - anon_sym_SQUOTE, - ACTIONS(7078), 1, - anon_sym_unique, - ACTIONS(7114), 1, - sym_number, - STATE(3869), 1, + ACTIONS(5246), 1, + anon_sym_PIPE, + STATE(3752), 1, sym_comment, - STATE(7590), 1, - sym_predefined_type, - STATE(7594), 1, - sym_string, - ACTIONS(7074), 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, - [138633] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5292), 1, + ACTIONS(5248), 14, + sym__automatic_semicolon, anon_sym_EQ, - STATE(3870), 1, - sym_comment, - ACTIONS(5294), 14, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [138662] = 8, + anon_sym_PIPE_RBRACE, + [139598] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5034), 1, + ACTIONS(4855), 1, anon_sym_EQ, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - STATE(3871), 1, + STATE(3753), 1, sym_comment, - ACTIONS(5036), 11, + ACTIONS(4857), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -337112,113 +325425,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - [138697] = 5, + anon_sym_extends, + [139627] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5012), 1, - anon_sym_EQ, - STATE(3872), 1, + ACTIONS(5246), 1, + anon_sym_PIPE, + STATE(3754), 1, sym_comment, - ACTIONS(5014), 14, - anon_sym_as, + ACTIONS(5248), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [138726] = 5, + anon_sym_PIPE_RBRACE, + [139656] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4835), 1, - anon_sym_EQ, - STATE(3873), 1, + ACTIONS(5246), 1, + anon_sym_PIPE, + STATE(3755), 1, sym_comment, - ACTIONS(4837), 14, - anon_sym_as, + ACTIONS(5248), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [138755] = 5, + anon_sym_PIPE_RBRACE, + [139685] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4873), 1, - anon_sym_EQ, - STATE(3874), 1, + ACTIONS(5162), 1, + anon_sym_PIPE, + STATE(3756), 1, sym_comment, - ACTIONS(4875), 14, - anon_sym_as, + ACTIONS(5164), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [138784] = 5, + anon_sym_PIPE_RBRACE, + [139714] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5284), 1, - anon_sym_EQ, - STATE(3875), 1, + ACTIONS(4807), 1, + anon_sym_PIPE, + ACTIONS(7055), 1, + anon_sym_LT, + ACTIONS(7145), 1, + anon_sym_DOT, + ACTIONS(7147), 1, + anon_sym_is, + STATE(3757), 1, sym_comment, - ACTIONS(5286), 14, - anon_sym_as, + STATE(4022), 1, + sym_type_arguments, + ACTIONS(4202), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [138813] = 5, + anon_sym_PIPE_RBRACE, + [139751] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4933), 1, + ACTIONS(5188), 1, anon_sym_EQ, - STATE(3876), 1, + STATE(3758), 1, sym_comment, - ACTIONS(4935), 14, + ACTIONS(5190), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -337233,16 +325553,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138842] = 5, + [139780] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5131), 1, + ACTIONS(4841), 1, anon_sym_EQ, - STATE(3877), 1, + STATE(3759), 1, sym_comment, - ACTIONS(5133), 14, + ACTIONS(4843), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -337257,63 +325577,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138871] = 4, + [139809] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3878), 1, + ACTIONS(7087), 1, + anon_sym_DQUOTE, + ACTIONS(7089), 1, + anon_sym_SQUOTE, + ACTIONS(7095), 1, + anon_sym_unique, + ACTIONS(7149), 1, + sym_number, + STATE(3760), 1, sym_comment, - ACTIONS(7116), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [138898] = 5, + STATE(7210), 1, + sym_predefined_type, + STATE(7213), 1, + sym_string, + ACTIONS(7091), 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, + [139848] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4962), 1, - anon_sym_EQ, - STATE(3879), 1, + ACTIONS(7087), 1, + anon_sym_DQUOTE, + ACTIONS(7089), 1, + anon_sym_SQUOTE, + ACTIONS(7095), 1, + anon_sym_unique, + ACTIONS(7151), 1, + sym_number, + STATE(3761), 1, sym_comment, - ACTIONS(4964), 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, - [138927] = 5, + STATE(7219), 1, + sym_predefined_type, + STATE(7224), 1, + sym_string, + ACTIONS(7091), 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, + [139887] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4859), 1, + ACTIONS(7087), 1, + anon_sym_DQUOTE, + ACTIONS(7089), 1, + anon_sym_SQUOTE, + ACTIONS(7095), 1, + anon_sym_unique, + ACTIONS(7153), 1, + sym_number, + STATE(3762), 1, + sym_comment, + STATE(7226), 1, + sym_predefined_type, + STATE(7228), 1, + sym_string, + ACTIONS(7091), 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, + [139926] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4881), 1, anon_sym_EQ, - STATE(3880), 1, + STATE(3763), 1, sym_comment, - ACTIONS(4861), 14, + ACTIONS(4883), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -337328,16 +325688,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138956] = 5, + [139955] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4966), 1, + ACTIONS(4871), 1, anon_sym_EQ, - STATE(3881), 1, + STATE(3764), 1, sym_comment, - ACTIONS(4968), 14, + ACTIONS(4873), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -337352,16 +325712,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [138985] = 5, + [139984] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5237), 1, + ACTIONS(5332), 1, anon_sym_EQ, - STATE(3882), 1, + STATE(3765), 1, sym_comment, - ACTIONS(5239), 14, + ACTIONS(5334), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -337376,25 +325736,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [139014] = 9, + [140013] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7070), 1, + ACTIONS(7087), 1, anon_sym_DQUOTE, - ACTIONS(7072), 1, + ACTIONS(7089), 1, anon_sym_SQUOTE, - ACTIONS(7078), 1, + ACTIONS(7095), 1, anon_sym_unique, - ACTIONS(7118), 1, + ACTIONS(7155), 1, sym_number, - STATE(3883), 1, + STATE(3766), 1, sym_comment, - STATE(7412), 2, + STATE(7232), 2, sym_string, sym_predefined_type, - ACTIONS(7074), 9, + ACTIONS(7091), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -337404,22 +325764,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [139051] = 8, + [140050] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5080), 1, + ACTIONS(5013), 1, anon_sym_EQ, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - STATE(3884), 1, + STATE(3767), 1, sym_comment, - ACTIONS(5082), 11, + ACTIONS(5015), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -337430,75 +325784,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_QMARK, - [139086] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7058), 1, - anon_sym_LPAREN, - ACTIONS(7064), 1, - anon_sym_LT, - ACTIONS(7120), 1, - anon_sym_DOT, - ACTIONS(7122), 1, - anon_sym_QMARK_DOT, - STATE(3885), 1, - sym_comment, - STATE(4148), 1, - sym_arguments, - STATE(4292), 1, - sym_type_arguments, - ACTIONS(4831), 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_QMARK, anon_sym_extends, - [139125] = 10, + [140079] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7058), 1, - anon_sym_LPAREN, - ACTIONS(7064), 1, - anon_sym_LT, - ACTIONS(7124), 1, - anon_sym_DOT, - ACTIONS(7126), 1, - anon_sym_QMARK_DOT, - STATE(3886), 1, + ACTIONS(5009), 1, + anon_sym_EQ, + STATE(3768), 1, sym_comment, - STATE(4146), 1, - sym_arguments, - STATE(4290), 1, - sym_type_arguments, - ACTIONS(4825), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5011), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, + 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, - [139164] = 5, + [140108] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5163), 1, + ACTIONS(4993), 1, anon_sym_EQ, - STATE(3887), 1, + STATE(3769), 1, sym_comment, - ACTIONS(5165), 14, + ACTIONS(4995), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -337513,16 +325836,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [139193] = 5, + [140137] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3770), 1, + sym_comment, + ACTIONS(7157), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [140164] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3771), 1, + sym_comment, + ACTIONS(7159), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [140191] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5288), 1, + ACTIONS(5037), 1, anon_sym_PIPE, - STATE(3888), 1, + STATE(3772), 1, sym_comment, - ACTIONS(5290), 14, + ACTIONS(5039), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337537,16 +325906,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139222] = 5, + [140220] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5120), 1, + ACTIONS(5033), 1, anon_sym_PIPE, - STATE(3889), 1, + STATE(3773), 1, sym_comment, - ACTIONS(5122), 14, + ACTIONS(5035), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337561,16 +325930,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139251] = 5, + [140249] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5120), 1, + ACTIONS(5033), 1, anon_sym_PIPE, - STATE(3890), 1, + STATE(3774), 1, sym_comment, - ACTIONS(5122), 14, + ACTIONS(5035), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337585,16 +325954,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139280] = 5, + [140278] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5120), 1, + ACTIONS(5033), 1, anon_sym_PIPE, - STATE(3891), 1, + STATE(3775), 1, sym_comment, - ACTIONS(5122), 14, + ACTIONS(5035), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337609,16 +325978,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139309] = 5, + [140307] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4925), 1, + ACTIONS(5021), 1, anon_sym_PIPE, - STATE(3892), 1, + STATE(3776), 1, sym_comment, - ACTIONS(4927), 14, + ACTIONS(5023), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337633,16 +326002,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139338] = 5, + [140336] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4925), 1, + ACTIONS(5021), 1, anon_sym_PIPE, - STATE(3893), 1, + STATE(3777), 1, sym_comment, - ACTIONS(4927), 14, + ACTIONS(5023), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337657,16 +326026,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139367] = 5, + [140365] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4925), 1, + ACTIONS(5021), 1, anon_sym_PIPE, - STATE(3894), 1, + STATE(3778), 1, sym_comment, - ACTIONS(4927), 14, + ACTIONS(5023), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337681,16 +326050,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139396] = 5, + [140394] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4929), 1, + ACTIONS(5017), 1, anon_sym_PIPE, - STATE(3895), 1, + STATE(3779), 1, sym_comment, - ACTIONS(4931), 14, + ACTIONS(5019), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337705,16 +326074,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139425] = 5, + [140423] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4929), 1, + ACTIONS(5017), 1, anon_sym_PIPE, - STATE(3896), 1, + STATE(3780), 1, sym_comment, - ACTIONS(4931), 14, + ACTIONS(5019), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337729,16 +326098,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139454] = 5, + [140452] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4929), 1, + ACTIONS(5017), 1, anon_sym_PIPE, - STATE(3897), 1, + STATE(3781), 1, sym_comment, - ACTIONS(4931), 14, + ACTIONS(5019), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337753,67 +326122,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139483] = 5, + [140481] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5139), 1, - anon_sym_EQ, - STATE(3898), 1, + STATE(3782), 1, sym_comment, - ACTIONS(5141), 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, - [139512] = 6, + ACTIONS(7161), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [140508] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5167), 1, + ACTIONS(5224), 1, anon_sym_EQ, - ACTIONS(7128), 1, - anon_sym_LBRACK, - STATE(3899), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + STATE(3783), 1, sym_comment, - ACTIONS(5169), 13, + ACTIONS(5226), 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_AMP, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [139543] = 6, + [140543] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5173), 1, + ACTIONS(5049), 1, anon_sym_EQ, - ACTIONS(7130), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, anon_sym_extends, - STATE(3900), 1, + STATE(3784), 1, sym_comment, - ACTIONS(5175), 13, + ACTIONS(5051), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -337824,51 +326198,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_QMARK, - [139574] = 7, + [140578] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5181), 1, + ACTIONS(5045), 1, anon_sym_EQ, - ACTIONS(7128), 1, - anon_sym_LBRACK, - STATE(3901), 1, - sym_comment, - ACTIONS(5187), 3, + ACTIONS(7069), 1, anon_sym_AMP, + ACTIONS(7071), 1, anon_sym_PIPE, + ACTIONS(7073), 1, anon_sym_extends, - ACTIONS(5183), 10, + STATE(3785), 1, + sym_comment, + ACTIONS(5047), 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, - [139607] = 8, + [140613] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5196), 1, + ACTIONS(5066), 1, anon_sym_EQ, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - STATE(3902), 1, + STATE(3786), 1, sym_comment, - ACTIONS(5198), 11, + ACTIONS(5068), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -337879,17 +326246,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - [139642] = 5, + anon_sym_extends, + [140642] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4988), 1, + ACTIONS(4964), 1, anon_sym_PIPE, - STATE(3903), 1, + STATE(3787), 1, sym_comment, - ACTIONS(4990), 14, + ACTIONS(4966), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337904,16 +326274,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139671] = 5, + [140671] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4992), 1, + ACTIONS(4877), 1, anon_sym_PIPE, - STATE(3904), 1, + STATE(3788), 1, sym_comment, - ACTIONS(4994), 14, + ACTIONS(4879), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337928,16 +326298,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139700] = 5, + [140700] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4992), 1, + ACTIONS(4877), 1, anon_sym_PIPE, - STATE(3905), 1, + STATE(3789), 1, sym_comment, - ACTIONS(4994), 14, + ACTIONS(4879), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337952,16 +326322,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139729] = 5, + [140729] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4992), 1, + ACTIONS(4877), 1, anon_sym_PIPE, - STATE(3906), 1, + STATE(3790), 1, sym_comment, - ACTIONS(4994), 14, + ACTIONS(4879), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -337976,16 +326346,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139758] = 5, + [140758] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5008), 1, + ACTIONS(5162), 1, anon_sym_PIPE, - STATE(3907), 1, + STATE(3791), 1, sym_comment, - ACTIONS(5010), 14, + ACTIONS(5164), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -338000,392 +326370,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [139787] = 5, + [140787] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5008), 1, - anon_sym_PIPE, - STATE(3908), 1, - sym_comment, - ACTIONS(5010), 14, - sym__automatic_semicolon, + ACTIONS(7163), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(7167), 1, + anon_sym_BANG, + ACTIONS(7169), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7173), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [139816] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5008), 1, - anon_sym_PIPE, - STATE(3909), 1, + ACTIONS(7175), 1, + anon_sym_QMARK, + STATE(3792), 1, sym_comment, - ACTIONS(5010), 14, + STATE(4255), 1, + sym_formal_parameters, + STATE(4798), 1, + sym__call_signature, + STATE(5090), 1, + sym_type_annotation, + STATE(6152), 1, + sym__initializer, + STATE(6732), 1, + sym_type_parameters, + ACTIONS(7165), 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_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [139845] = 5, + [140835] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5020), 1, - anon_sym_PIPE, - STATE(3910), 1, - sym_comment, - ACTIONS(5022), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6998), 1, anon_sym_LBRACE, + ACTIONS(7177), 1, + sym_identifier, + ACTIONS(7179), 1, + anon_sym_type, + STATE(3793), 1, + sym_comment, + STATE(5505), 1, + sym_import_require_clause, + STATE(5506), 1, + sym_string, + STATE(6559), 1, + sym__import_identifier, + STATE(6719), 1, + sym_import_clause, + ACTIONS(7181), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [139874] = 5, + anon_sym_from, + STATE(7302), 2, + sym_namespace_import, + sym_named_imports, + [140883] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5020), 1, - anon_sym_PIPE, - STATE(3911), 1, - sym_comment, - ACTIONS(5022), 14, - sym__automatic_semicolon, + ACTIONS(7163), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(7169), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7173), 1, anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [139903] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5020), 1, - anon_sym_PIPE, - STATE(3912), 1, + ACTIONS(7185), 1, + anon_sym_BANG, + ACTIONS(7187), 1, + anon_sym_QMARK, + STATE(3794), 1, sym_comment, - ACTIONS(5022), 14, + STATE(4255), 1, + sym_formal_parameters, + STATE(4648), 1, + sym__call_signature, + STATE(5112), 1, + sym_type_annotation, + STATE(5865), 1, + sym__initializer, + STATE(6732), 1, + sym_type_parameters, + ACTIONS(7183), 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_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [139932] = 5, + [140931] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5200), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(3913), 1, - sym_comment, - ACTIONS(5202), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(7171), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7191), 1, + anon_sym_BANG, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(7195), 1, anon_sym_QMARK, - anon_sym_extends, - [139961] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5204), 1, - anon_sym_EQ, - STATE(3914), 1, + STATE(3795), 1, sym_comment, - ACTIONS(5206), 14, - anon_sym_as, - anon_sym_LBRACE, + STATE(4683), 1, + sym_formal_parameters, + STATE(5276), 1, + sym_type_annotation, + STATE(6009), 1, + sym__initializer, + STATE(6493), 1, + sym_type_parameters, + STATE(6923), 1, + sym__call_signature, + ACTIONS(7189), 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, - [139990] = 6, + anon_sym_SEMI, + [140979] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5072), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7080), 1, - anon_sym_AMP, - STATE(3915), 1, - sym_comment, - ACTIONS(5074), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(7171), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_PIPE, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7185), 1, + anon_sym_BANG, + ACTIONS(7197), 1, + anon_sym_LPAREN, + ACTIONS(7199), 1, anon_sym_QMARK, - anon_sym_extends, - [140021] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5208), 1, - anon_sym_EQ, - STATE(3916), 1, + STATE(3796), 1, sym_comment, - ACTIONS(5210), 14, - anon_sym_as, - anon_sym_LBRACE, + STATE(4055), 1, + sym_formal_parameters, + STATE(5112), 1, + sym_type_annotation, + STATE(5830), 1, + sym__initializer, + STATE(5831), 1, + sym__call_signature, + STATE(6769), 1, + sym_type_parameters, + ACTIONS(7183), 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, - [140050] = 5, + anon_sym_SEMI, + [141027] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5080), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(3917), 1, - sym_comment, - ACTIONS(5082), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(7171), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(7203), 1, + anon_sym_BANG, + ACTIONS(7205), 1, anon_sym_QMARK, - anon_sym_extends, - [140079] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3918), 1, + STATE(3797), 1, sym_comment, - ACTIONS(7132), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [140106] = 5, + STATE(4683), 1, + sym_formal_parameters, + STATE(5078), 1, + sym_type_annotation, + STATE(5826), 1, + sym__initializer, + STATE(6493), 1, + sym_type_parameters, + STATE(6704), 1, + sym__call_signature, + ACTIONS(7201), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141075] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5076), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(3919), 1, - sym_comment, - ACTIONS(5078), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(7171), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(7207), 1, + anon_sym_BANG, + ACTIONS(7209), 1, anon_sym_QMARK, - anon_sym_extends, - [140135] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5226), 1, - anon_sym_EQ, - ACTIONS(7080), 1, - anon_sym_AMP, - STATE(3920), 1, + STATE(3798), 1, sym_comment, - ACTIONS(5228), 13, - anon_sym_as, - anon_sym_LBRACE, + STATE(4683), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_annotation, + STATE(5983), 1, + sym__initializer, + STATE(6493), 1, + sym_type_parameters, + STATE(6953), 1, + sym__call_signature, + ACTIONS(7189), 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_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [140166] = 5, + anon_sym_SEMI, + [141123] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5233), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(3921), 1, - sym_comment, - ACTIONS(5235), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7171), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7213), 1, + anon_sym_BANG, + ACTIONS(7215), 1, anon_sym_QMARK, - anon_sym_extends, - [140195] = 10, + STATE(3799), 1, + sym_comment, + STATE(4255), 1, + sym_formal_parameters, + STATE(4669), 1, + sym__call_signature, + STATE(5185), 1, + sym_type_annotation, + STATE(5950), 1, + sym__initializer, + STATE(6732), 1, + sym_type_parameters, + ACTIONS(7211), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141171] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7070), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(7072), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(7078), 1, - anon_sym_unique, - ACTIONS(7134), 1, - sym_number, - STATE(3922), 1, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6998), 1, + anon_sym_LBRACE, + ACTIONS(7177), 1, + sym_identifier, + ACTIONS(7179), 1, + anon_sym_type, + STATE(3800), 1, sym_comment, - STATE(7217), 1, - sym_predefined_type, - STATE(7225), 1, + STATE(5409), 1, + sym_import_require_clause, + STATE(5628), 1, sym_string, - ACTIONS(7074), 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, - [140234] = 10, + STATE(6559), 1, + sym__import_identifier, + STATE(6922), 1, + sym_import_clause, + ACTIONS(7181), 2, + anon_sym_COMMA, + anon_sym_from, + STATE(7302), 2, + sym_namespace_import, + sym_named_imports, + [141219] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7070), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, - anon_sym_SQUOTE, - ACTIONS(7078), 1, + ACTIONS(205), 1, anon_sym_unique, - ACTIONS(7136), 1, - sym_number, - STATE(3923), 1, + STATE(3801), 1, sym_comment, - STATE(7238), 1, + STATE(3985), 1, + sym_type_predicate, + STATE(7041), 1, sym_predefined_type, - STATE(7242), 1, - sym_string, - ACTIONS(7074), 9, + ACTIONS(7217), 2, + sym_identifier, + sym_this, + ACTIONS(207), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -338395,554 +326693,476 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [140273] = 5, + [141253] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5185), 1, - anon_sym_EQ, - STATE(3924), 1, - sym_comment, - ACTIONS(5187), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4512), 1, anon_sym_COMMA, + ACTIONS(4525), 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, - [140302] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5030), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + ACTIONS(7219), 1, anon_sym_EQ, - STATE(3925), 1, + STATE(3802), 1, sym_comment, - ACTIONS(5032), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + STATE(4457), 1, + sym_formal_parameters, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + STATE(6477), 1, + sym_type_parameters, + ACTIONS(4518), 5, + sym__automatic_semicolon, + anon_sym_SEMI, 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, - [140331] = 5, + anon_sym_PIPE_RBRACE, + [141297] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5243), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(3926), 1, - sym_comment, - ACTIONS(5245), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(7171), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(7221), 1, + anon_sym_BANG, + ACTIONS(7223), 1, anon_sym_QMARK, - anon_sym_extends, - [140360] = 10, + STATE(3803), 1, + sym_comment, + STATE(4683), 1, + sym_formal_parameters, + STATE(5077), 1, + sym_type_annotation, + STATE(5820), 1, + sym__initializer, + STATE(6493), 1, + sym_type_parameters, + STATE(6698), 1, + sym__call_signature, + ACTIONS(7201), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141345] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7070), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(7072), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(7078), 1, - anon_sym_unique, - ACTIONS(7138), 1, - sym_number, - STATE(3927), 1, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6998), 1, + anon_sym_LBRACE, + ACTIONS(7177), 1, + sym_identifier, + ACTIONS(7179), 1, + anon_sym_type, + STATE(3804), 1, sym_comment, - STATE(7245), 1, - sym_predefined_type, - STATE(7250), 1, + STATE(5431), 1, sym_string, - ACTIONS(7074), 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, - [140399] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3928), 1, - sym_comment, - ACTIONS(7140), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [140426] = 5, + STATE(5432), 1, + sym_import_require_clause, + STATE(6559), 1, + sym__import_identifier, + STATE(6816), 1, + sym_import_clause, + ACTIONS(7181), 2, + anon_sym_COMMA, + anon_sym_from, + STATE(7302), 2, + sym_namespace_import, + sym_named_imports, + [141393] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, - anon_sym_EQ, - STATE(3929), 1, - sym_comment, - ACTIONS(4849), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4512), 1, anon_sym_COMMA, + ACTIONS(4522), 1, anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + ACTIONS(7219), 1, + anon_sym_EQ, + STATE(3805), 1, + sym_comment, + STATE(4457), 1, + sym_formal_parameters, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + STATE(6477), 1, + sym_type_parameters, + ACTIONS(4518), 5, + sym__automatic_semicolon, + anon_sym_SEMI, 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, - [140455] = 6, + anon_sym_PIPE_RBRACE, + [141437] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5185), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7128), 1, - anon_sym_LBRACK, - STATE(3930), 1, - sym_comment, - ACTIONS(5187), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(7171), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(7227), 1, + anon_sym_BANG, + ACTIONS(7229), 1, anon_sym_QMARK, - anon_sym_extends, - [140486] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7070), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, - anon_sym_SQUOTE, - ACTIONS(7078), 1, - anon_sym_unique, - ACTIONS(7142), 1, - sym_number, - STATE(3931), 1, + STATE(3806), 1, sym_comment, - STATE(7255), 2, - sym_string, - sym_predefined_type, - ACTIONS(7074), 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, - [140523] = 10, + STATE(4683), 1, + sym_formal_parameters, + STATE(4884), 1, + sym_type_annotation, + STATE(5881), 1, + sym__initializer, + STATE(6493), 1, + sym_type_parameters, + STATE(6811), 1, + sym__call_signature, + ACTIONS(7225), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141485] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7070), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, - anon_sym_SQUOTE, - ACTIONS(7078), 1, - anon_sym_unique, - ACTIONS(7144), 1, - sym_number, - STATE(3932), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(7233), 1, + anon_sym_BANG, + ACTIONS(7235), 1, + anon_sym_QMARK, + STATE(3807), 1, sym_comment, - STATE(7452), 1, - sym_predefined_type, - STATE(7453), 1, - sym_string, - ACTIONS(7074), 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, - [140562] = 5, + STATE(4683), 1, + sym_formal_parameters, + STATE(5331), 1, + sym_type_annotation, + STATE(6294), 1, + sym__initializer, + STATE(6493), 1, + sym_type_parameters, + STATE(6574), 1, + sym__call_signature, + ACTIONS(7231), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141533] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5108), 1, - anon_sym_EQ, - STATE(3933), 1, - sym_comment, - ACTIONS(5110), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4512), 1, anon_sym_COMMA, + ACTIONS(4531), 1, anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + ACTIONS(7219), 1, + anon_sym_EQ, + STATE(3808), 1, + sym_comment, + STATE(4457), 1, + sym_formal_parameters, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + STATE(6477), 1, + sym_type_parameters, + ACTIONS(4518), 5, + sym__automatic_semicolon, + anon_sym_SEMI, 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, - [140591] = 5, + anon_sym_PIPE_RBRACE, + [141577] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5280), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(3934), 1, - sym_comment, - ACTIONS(5282), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(7171), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(7237), 1, + anon_sym_BANG, + ACTIONS(7239), 1, anon_sym_QMARK, - anon_sym_extends, - [140620] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3935), 1, - sym_comment, - ACTIONS(7146), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [140647] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3936), 1, - sym_comment, - ACTIONS(7148), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [140674] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7070), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, - anon_sym_SQUOTE, - ACTIONS(7078), 1, - anon_sym_unique, - ACTIONS(7150), 1, - sym_number, - STATE(3937), 1, - sym_comment, - STATE(7458), 1, - sym_predefined_type, - STATE(7459), 1, - sym_string, - ACTIONS(7074), 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, - [140713] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3938), 1, + STATE(3809), 1, sym_comment, - ACTIONS(7152), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [140740] = 15, + STATE(4683), 1, + sym_formal_parameters, + STATE(5258), 1, + sym_type_annotation, + STATE(6297), 1, + sym__initializer, + STATE(6381), 1, + sym__call_signature, + STATE(6493), 1, + sym_type_parameters, + ACTIONS(7189), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141625] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7158), 1, - anon_sym_BANG, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7166), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(7241), 1, + anon_sym_BANG, + ACTIONS(7243), 1, anon_sym_QMARK, - STATE(3939), 1, + STATE(3810), 1, sym_comment, - STATE(4790), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(5118), 1, + STATE(5242), 1, sym_type_annotation, - STATE(6209), 1, + STATE(6271), 1, sym__initializer, - STATE(6683), 1, - sym_type_parameters, - STATE(6815), 1, + STATE(6446), 1, sym__call_signature, - ACTIONS(7156), 3, + STATE(6493), 1, + sym_type_parameters, + ACTIONS(7189), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140788] = 15, + [141673] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(6985), 1, + ACTIONS(6994), 1, anon_sym_STAR, - ACTIONS(6989), 1, + ACTIONS(6998), 1, anon_sym_LBRACE, - ACTIONS(7168), 1, + ACTIONS(7177), 1, sym_identifier, - ACTIONS(7170), 1, + ACTIONS(7179), 1, anon_sym_type, - STATE(3940), 1, + STATE(3811), 1, sym_comment, - STATE(5623), 1, + STATE(5639), 1, sym_import_require_clause, - STATE(5624), 1, + STATE(5640), 1, sym_string, - STATE(6902), 1, - sym_import_clause, - STATE(7025), 1, + STATE(6559), 1, sym__import_identifier, - ACTIONS(7172), 2, + STATE(6851), 1, + sym_import_clause, + ACTIONS(7181), 2, anon_sym_COMMA, anon_sym_from, - STATE(7185), 2, + STATE(7302), 2, sym_namespace_import, sym_named_imports, - [140836] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [141721] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(6985), 1, - anon_sym_STAR, - ACTIONS(6989), 1, - anon_sym_LBRACE, - ACTIONS(7168), 1, - sym_identifier, - ACTIONS(7170), 1, - anon_sym_type, - STATE(3941), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + ACTIONS(7247), 1, + anon_sym_BANG, + ACTIONS(7249), 1, + anon_sym_QMARK, + STATE(3812), 1, sym_comment, - STATE(5562), 1, - sym_string, - STATE(5563), 1, - sym_import_require_clause, - STATE(7025), 1, - sym__import_identifier, - STATE(7081), 1, - sym_import_clause, - ACTIONS(7172), 2, + STATE(4055), 1, + sym_formal_parameters, + STATE(5321), 1, + sym_type_annotation, + STATE(6331), 1, + sym__call_signature, + STATE(6333), 1, + sym__initializer, + STATE(6769), 1, + sym_type_parameters, + ACTIONS(7245), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - STATE(7185), 2, - sym_namespace_import, - sym_named_imports, - [140884] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_SEMI, + [141769] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(205), 1, - anon_sym_unique, - STATE(3942), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(7251), 1, + anon_sym_BANG, + ACTIONS(7253), 1, + anon_sym_QMARK, + STATE(3813), 1, sym_comment, - STATE(4218), 1, - sym_type_predicate, - STATE(7317), 1, - sym_predefined_type, - ACTIONS(7174), 2, - sym_identifier, - sym_this, - ACTIONS(207), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [140918] = 15, + STATE(4683), 1, + sym_formal_parameters, + STATE(5178), 1, + sym_type_annotation, + STATE(6203), 1, + sym__initializer, + STATE(6493), 1, + sym_type_parameters, + STATE(6553), 1, + sym__call_signature, + ACTIONS(7189), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141817] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7176), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(7255), 1, anon_sym_BANG, - ACTIONS(7178), 1, + ACTIONS(7257), 1, anon_sym_QMARK, - STATE(3943), 1, + STATE(3814), 1, sym_comment, - STATE(4790), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(5223), 1, + STATE(5152), 1, sym_type_annotation, - STATE(6475), 1, + STATE(6187), 1, sym__initializer, - STATE(6491), 1, + STATE(6493), 1, + sym_type_parameters, + STATE(6593), 1, sym__call_signature, - STATE(6683), 1, + ACTIONS(7189), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [141865] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(7259), 1, + anon_sym_BANG, + ACTIONS(7261), 1, + anon_sym_QMARK, + STATE(3815), 1, + sym_comment, + STATE(4683), 1, + sym_formal_parameters, + STATE(4883), 1, + sym_type_annotation, + STATE(5930), 1, + sym__initializer, + STATE(6493), 1, sym_type_parameters, - ACTIONS(7156), 3, + STATE(6935), 1, + sym__call_signature, + ACTIONS(7225), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [140966] = 8, + [141913] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(205), 1, anon_sym_unique, - STATE(2462), 1, + STATE(2888), 1, sym_type_predicate, - STATE(3944), 1, + STATE(3816), 1, sym_comment, - STATE(7570), 1, + STATE(7327), 1, sym_predefined_type, - ACTIONS(7180), 2, + ACTIONS(7263), 2, sym_identifier, sym_this, ACTIONS(207), 9, @@ -338955,53 +327175,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [141000] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7184), 1, - anon_sym_BANG, - ACTIONS(7186), 1, - anon_sym_QMARK, - STATE(3945), 1, - sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(5441), 1, - sym_type_annotation, - STATE(5816), 1, - sym__initializer, - STATE(6540), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - ACTIONS(7182), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141048] = 8, + [141947] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(205), 1, anon_sym_unique, - STATE(3929), 1, - sym_type_predicate, - STATE(3946), 1, + STATE(3817), 1, sym_comment, - STATE(7301), 1, + STATE(4100), 1, + sym_type_predicate, + STATE(7403), 1, sym_predefined_type, - ACTIONS(7188), 2, + ACTIONS(7265), 2, sym_identifier, sym_this, ACTIONS(207), 9, @@ -339014,443 +327201,357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [141082] = 15, + [141981] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7192), 1, - anon_sym_BANG, - ACTIONS(7194), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - ACTIONS(7196), 1, + ACTIONS(7267), 1, + anon_sym_BANG, + ACTIONS(7269), 1, anon_sym_QMARK, - STATE(3947), 1, + STATE(3818), 1, sym_comment, - STATE(4266), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(4951), 1, - sym__call_signature, - STATE(5317), 1, + STATE(4894), 1, sym_type_annotation, - STATE(6004), 1, + STATE(5946), 1, sym__initializer, - STATE(6530), 1, + STATE(6493), 1, sym_type_parameters, - ACTIONS(7190), 3, + STATE(6983), 1, + sym__call_signature, + ACTIONS(7225), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141130] = 15, + [142029] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7160), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7200), 1, + ACTIONS(7247), 1, anon_sym_BANG, - ACTIONS(7202), 1, + ACTIONS(7271), 1, anon_sym_QMARK, - STATE(3948), 1, + STATE(3819), 1, sym_comment, - STATE(4790), 1, + STATE(4255), 1, sym_formal_parameters, - STATE(5217), 1, + STATE(4729), 1, + sym__call_signature, + STATE(5321), 1, sym_type_annotation, - STATE(5862), 1, + STATE(6321), 1, sym__initializer, - STATE(6588), 1, - sym__call_signature, - STATE(6683), 1, + STATE(6732), 1, sym_type_parameters, - ACTIONS(7198), 3, + ACTIONS(7245), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141178] = 15, + [142077] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7160), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7204), 1, - anon_sym_BANG, - ACTIONS(7206), 1, - anon_sym_QMARK, - STATE(3949), 1, - sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(5127), 1, - sym_type_annotation, - STATE(5843), 1, - sym__initializer, - STATE(6614), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - ACTIONS(7198), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141226] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(6985), 1, - anon_sym_STAR, - ACTIONS(6989), 1, - anon_sym_LBRACE, - ACTIONS(7168), 1, - sym_identifier, - ACTIONS(7170), 1, - anon_sym_type, - STATE(3950), 1, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + STATE(3820), 1, sym_comment, - STATE(5777), 1, - sym_string, - STATE(5778), 1, - sym_import_require_clause, - STATE(7025), 1, - sym__import_identifier, - STATE(7105), 1, - sym_import_clause, - ACTIONS(7172), 2, + STATE(2458), 2, + sym_template_string, + sym_arguments, + ACTIONS(5200), 10, anon_sym_COMMA, - anon_sym_from, - STATE(7185), 2, - sym_namespace_import, - sym_named_imports, - [141274] = 15, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [142109] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(4807), 1, + anon_sym_PIPE, + ACTIONS(7055), 1, anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - ACTIONS(7210), 1, - anon_sym_BANG, - ACTIONS(7212), 1, - anon_sym_QMARK, - STATE(3951), 1, + ACTIONS(7145), 1, + anon_sym_DOT, + STATE(3821), 1, sym_comment, - STATE(4266), 1, - sym_formal_parameters, - STATE(4866), 1, - sym__call_signature, - STATE(5419), 1, - sym_type_annotation, - STATE(6075), 1, - sym__initializer, - STATE(6530), 1, - sym_type_parameters, - ACTIONS(7208), 3, + STATE(4022), 1, + sym_type_arguments, + ACTIONS(4202), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [141322] = 13, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142143] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_COMMA, - ACTIONS(4511), 1, + ACTIONS(4528), 1, anon_sym_RBRACE, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7214), 1, - anon_sym_EQ, - ACTIONS(7216), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - STATE(3952), 1, + ACTIONS(7219), 1, + anon_sym_EQ, + STATE(3822), 1, sym_comment, - STATE(4561), 1, + STATE(4457), 1, sym_formal_parameters, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(5868), 1, aux_sym_object_repeat1, - STATE(7104), 1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6477), 1, sym_type_parameters, - ACTIONS(4514), 5, + ACTIONS(4518), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [141366] = 15, + [142187] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7210), 1, - anon_sym_BANG, - ACTIONS(7216), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - ACTIONS(7218), 1, + ACTIONS(7275), 1, + anon_sym_BANG, + ACTIONS(7277), 1, anon_sym_QMARK, - STATE(3953), 1, + STATE(3823), 1, sym_comment, - STATE(4200), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(5419), 1, + STATE(4902), 1, sym_type_annotation, - STATE(6065), 1, + STATE(5650), 1, sym__initializer, - STATE(6066), 1, + STATE(6347), 1, sym__call_signature, - STATE(6630), 1, + STATE(6493), 1, sym_type_parameters, - ACTIONS(7208), 3, + ACTIONS(7273), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141414] = 15, + [142235] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(205), 1, + anon_sym_unique, + STATE(2229), 1, + sym_type_predicate, + STATE(3824), 1, + sym_comment, + STATE(7384), 1, + sym_predefined_type, + ACTIONS(7279), 2, + sym_identifier, + sym_this, + ACTIONS(207), 9, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_unknown, + anon_sym_never, + [142269] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7220), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(7281), 1, anon_sym_BANG, - ACTIONS(7222), 1, + ACTIONS(7283), 1, anon_sym_QMARK, - STATE(3954), 1, + STATE(3825), 1, sym_comment, - STATE(4790), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(5300), 1, + STATE(4994), 1, sym_type_annotation, - STATE(6116), 1, + STATE(6097), 1, sym__initializer, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - STATE(6924), 1, + STATE(6797), 1, sym__call_signature, - ACTIONS(7182), 3, + ACTIONS(7225), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141462] = 15, + [142317] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7224), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(7285), 1, anon_sym_BANG, - ACTIONS(7226), 1, + ACTIONS(7287), 1, anon_sym_QMARK, - STATE(3955), 1, + STATE(3826), 1, sym_comment, - STATE(4790), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(5271), 1, + STATE(4940), 1, sym_type_annotation, - STATE(6113), 1, + STATE(5676), 1, sym__initializer, - STATE(6683), 1, - sym_type_parameters, - STATE(6936), 1, + STATE(6405), 1, sym__call_signature, - ACTIONS(7182), 3, + STATE(6493), 1, + sym_type_parameters, + ACTIONS(7201), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141510] = 13, + [142365] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_COMMA, - ACTIONS(4518), 1, + ACTIONS(4515), 1, anon_sym_RBRACE, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7214), 1, - anon_sym_EQ, - ACTIONS(7216), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - STATE(3956), 1, - sym_comment, - STATE(4561), 1, - sym_formal_parameters, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - STATE(7104), 1, - sym_type_parameters, - ACTIONS(4514), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [141554] = 13, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4508), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_RBRACE, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7214), 1, + ACTIONS(7219), 1, anon_sym_EQ, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(3957), 1, + STATE(3827), 1, sym_comment, - STATE(4561), 1, + STATE(4457), 1, sym_formal_parameters, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - STATE(7104), 1, + STATE(6261), 1, + aux_sym_object_repeat1, + STATE(6477), 1, sym_type_parameters, - ACTIONS(4514), 5, + ACTIONS(4518), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [141598] = 15, + [142409] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7160), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7228), 1, + ACTIONS(7291), 1, anon_sym_BANG, - ACTIONS(7230), 1, + ACTIONS(7293), 1, anon_sym_QMARK, - STATE(3958), 1, + STATE(3828), 1, sym_comment, - STATE(4790), 1, + STATE(4255), 1, sym_formal_parameters, - STATE(5080), 1, - sym_type_annotation, - STATE(6232), 1, - sym__initializer, - STATE(6683), 1, - sym_type_parameters, - STATE(6785), 1, + STATE(4819), 1, sym__call_signature, - ACTIONS(7156), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [141646] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7232), 1, - anon_sym_BANG, - ACTIONS(7234), 1, - anon_sym_QMARK, - STATE(3959), 1, - sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(5101), 1, + STATE(5025), 1, sym_type_annotation, - STATE(5867), 1, + STATE(6114), 1, sym__initializer, - STATE(6650), 1, - sym__call_signature, - STATE(6683), 1, + STATE(6732), 1, sym_type_parameters, - ACTIONS(7198), 3, + ACTIONS(7289), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141694] = 8, + [142457] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(205), 1, anon_sym_unique, - STATE(2908), 1, + STATE(3764), 1, sym_type_predicate, - STATE(3960), 1, + STATE(3829), 1, sym_comment, - STATE(7268), 1, + STATE(7311), 1, sym_predefined_type, - ACTIONS(7236), 2, + ACTIONS(7295), 2, sym_identifier, sym_this, ACTIONS(207), 9, @@ -339463,677 +327564,675 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [141728] = 15, + [142491] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(7299), 1, + anon_sym_GT, + ACTIONS(7302), 1, + anon_sym_DOT, + STATE(3786), 1, + sym_type_arguments, + STATE(3830), 1, + sym_comment, + ACTIONS(7297), 4, + anon_sym_LBRACE, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + ACTIONS(4807), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [142527] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7240), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(7304), 1, anon_sym_BANG, - ACTIONS(7242), 1, + ACTIONS(7306), 1, anon_sym_QMARK, - STATE(3961), 1, + STATE(3831), 1, sym_comment, - STATE(4790), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(5458), 1, + STATE(5023), 1, sym_type_annotation, - STATE(6043), 1, + STATE(5725), 1, sym__initializer, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - STATE(6698), 1, + STATE(6525), 1, sym__call_signature, - ACTIONS(7238), 3, + ACTIONS(7201), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [141776] = 15, + [142575] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(6985), 1, + ACTIONS(6994), 1, anon_sym_STAR, - ACTIONS(6989), 1, + ACTIONS(6998), 1, anon_sym_LBRACE, - ACTIONS(7168), 1, + ACTIONS(7177), 1, sym_identifier, - ACTIONS(7170), 1, + ACTIONS(7179), 1, anon_sym_type, - STATE(3962), 1, + STATE(3832), 1, sym_comment, - STATE(5640), 1, - sym_string, - STATE(5641), 1, + STATE(5516), 1, sym_import_require_clause, - STATE(6976), 1, - sym_import_clause, - STATE(7025), 1, + STATE(5517), 1, + sym_string, + STATE(6559), 1, sym__import_identifier, - ACTIONS(7172), 2, + STATE(6898), 1, + sym_import_clause, + ACTIONS(7181), 2, anon_sym_COMMA, anon_sym_from, - STATE(7185), 2, + STATE(7302), 2, sym_namespace_import, sym_named_imports, - [141824] = 15, + [142623] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7308), 1, + anon_sym_LBRACE, + ACTIONS(7312), 1, + sym_html_character_reference, + ACTIONS(7314), 1, + anon_sym_LT_SLASH, + ACTIONS(7316), 1, + anon_sym_LT, + STATE(3833), 1, + sym_comment, + STATE(3883), 1, + sym_jsx_opening_element, + STATE(3924), 1, + aux_sym_jsx_element_repeat1, + STATE(4717), 1, + sym_jsx_closing_element, + ACTIONS(7310), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(4763), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [142664] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7244), 1, - anon_sym_BANG, - ACTIONS(7246), 1, - anon_sym_QMARK, - STATE(3963), 1, + STATE(3834), 1, sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(5151), 1, - sym_type_annotation, - STATE(5870), 1, - sym__initializer, - STATE(6683), 1, - sym_type_parameters, - STATE(6687), 1, - sym__call_signature, - ACTIONS(7198), 3, + ACTIONS(5019), 13, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [141872] = 15, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [142689] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7308), 1, + anon_sym_LBRACE, + ACTIONS(7312), 1, + sym_html_character_reference, + ACTIONS(7316), 1, + anon_sym_LT, + ACTIONS(7318), 1, + anon_sym_LT_SLASH, + STATE(3835), 1, + sym_comment, + STATE(3865), 1, + aux_sym_jsx_element_repeat1, + STATE(3883), 1, + sym_jsx_opening_element, + STATE(5127), 1, + sym_jsx_closing_element, + ACTIONS(7310), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(4763), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [142730] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7248), 1, - anon_sym_BANG, - ACTIONS(7250), 1, - anon_sym_QMARK, - STATE(3964), 1, + ACTIONS(5154), 1, + anon_sym_PIPE, + STATE(3836), 1, sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(5548), 1, - sym_type_annotation, - STATE(5948), 1, - sym__initializer, - STATE(6683), 1, - sym_type_parameters, - STATE(6863), 1, - sym__call_signature, - ACTIONS(7182), 3, + ACTIONS(5156), 12, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - [141920] = 15, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142757] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_BANG, - ACTIONS(7256), 1, + ACTIONS(7322), 1, anon_sym_QMARK, - STATE(3965), 1, + STATE(3837), 1, sym_comment, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5171), 1, - sym_type_annotation, - STATE(5871), 1, - sym__initializer, - STATE(5874), 1, + STATE(4859), 1, sym__call_signature, - STATE(6630), 1, + STATE(4862), 1, + sym_type_annotation, + STATE(6769), 1, sym_type_parameters, - ACTIONS(7252), 3, + ACTIONS(7320), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [141968] = 15, + anon_sym_PIPE_RBRACE, + [142798] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7260), 1, - anon_sym_BANG, - ACTIONS(7262), 1, + ACTIONS(7197), 1, + anon_sym_LPAREN, + ACTIONS(7326), 1, anon_sym_QMARK, - STATE(3966), 1, + STATE(3838), 1, sym_comment, - STATE(4790), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5391), 1, + STATE(4534), 1, + sym__call_signature, + STATE(5188), 1, sym_type_annotation, - STATE(6158), 1, - sym__initializer, - STATE(6683), 1, + STATE(6769), 1, sym_type_parameters, - STATE(7143), 1, - sym__call_signature, - ACTIONS(7258), 3, + ACTIONS(7324), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [142016] = 15, + anon_sym_PIPE_RBRACE, + [142839] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7264), 1, - anon_sym_BANG, - ACTIONS(7266), 1, + ACTIONS(7197), 1, + anon_sym_LPAREN, + ACTIONS(7328), 1, anon_sym_QMARK, - STATE(3967), 1, + STATE(3839), 1, sym_comment, - STATE(4790), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5378), 1, - sym_type_annotation, - STATE(5792), 1, - sym__initializer, - STATE(6503), 1, + STATE(4548), 1, sym__call_signature, - STATE(6683), 1, + STATE(4862), 1, + sym_type_annotation, + STATE(6769), 1, sym_type_parameters, - ACTIONS(7182), 3, + ACTIONS(7320), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [142064] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(205), 1, - anon_sym_unique, - STATE(3968), 1, - sym_comment, - STATE(4154), 1, - sym_type_predicate, - STATE(7362), 1, - sym_predefined_type, - ACTIONS(7268), 2, - sym_identifier, - sym_this, - ACTIONS(207), 9, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - anon_sym_unknown, - anon_sym_never, - [142098] = 13, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4508), 1, - anon_sym_COMMA, - ACTIONS(4524), 1, anon_sym_RBRACE, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7214), 1, - anon_sym_EQ, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(3969), 1, - sym_comment, - STATE(4561), 1, - sym_formal_parameters, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - STATE(7104), 1, - sym_type_parameters, - ACTIONS(4514), 5, - sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [142142] = 7, + [142880] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - STATE(3970), 1, + ACTIONS(5210), 1, + anon_sym_PIPE, + STATE(3840), 1, sym_comment, - STATE(2680), 2, - sym_template_string, - sym_arguments, - ACTIONS(5133), 10, + ACTIONS(5212), 12, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_BQUOTE, anon_sym_extends, - [142174] = 8, + anon_sym_PIPE_RBRACE, + [142907] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4817), 1, + ACTIONS(5357), 1, anon_sym_PIPE, - ACTIONS(7042), 1, - anon_sym_LT, - ACTIONS(7066), 1, - anon_sym_DOT, - STATE(3971), 1, + STATE(3841), 1, sym_comment, - STATE(4116), 1, - sym_type_arguments, - ACTIONS(4203), 10, + ACTIONS(5359), 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, - [142208] = 15, + [142934] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - ACTIONS(7254), 1, - anon_sym_BANG, - ACTIONS(7270), 1, + ACTIONS(7332), 1, anon_sym_QMARK, - STATE(3972), 1, + STATE(3842), 1, sym_comment, - STATE(4266), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(4773), 1, + STATE(5363), 1, sym__call_signature, - STATE(5171), 1, + STATE(5368), 1, sym_type_annotation, - STATE(5890), 1, - sym__initializer, - STATE(6530), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(7252), 3, + ACTIONS(7330), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [142256] = 13, + anon_sym_PIPE_RBRACE, + [142975] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4508), 1, - anon_sym_COMMA, - ACTIONS(4521), 1, - anon_sym_RBRACE, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7214), 1, - anon_sym_EQ, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(3973), 1, + ACTIONS(5353), 1, + anon_sym_PIPE, + STATE(3843), 1, sym_comment, - STATE(4561), 1, - sym_formal_parameters, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - STATE(7104), 1, - sym_type_parameters, - ACTIONS(4514), 5, + ACTIONS(5355), 12, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [142300] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4141), 1, - anon_sym_LT, - ACTIONS(7274), 1, - anon_sym_GT, - ACTIONS(7277), 1, - anon_sym_DOT, - STATE(3913), 1, - sym_type_arguments, - STATE(3974), 1, - sym_comment, - ACTIONS(7272), 4, - anon_sym_LBRACE, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - ACTIONS(4817), 6, 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_PIPE, + anon_sym_BQUOTE, anon_sym_extends, - [142336] = 15, + anon_sym_PIPE_RBRACE, + [143002] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - ACTIONS(7281), 1, - anon_sym_BANG, - ACTIONS(7283), 1, + ACTIONS(7334), 1, + anon_sym_COLON, + ACTIONS(7336), 1, anon_sym_QMARK, - STATE(3975), 1, + STATE(3844), 1, sym_comment, - STATE(4266), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(4941), 1, + STATE(4455), 1, sym__call_signature, - STATE(5018), 1, + STATE(5368), 1, sym_type_annotation, - STATE(6268), 1, - sym__initializer, - STATE(6530), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(7279), 3, + ACTIONS(7330), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [142384] = 15, + anon_sym_PIPE_RBRACE, + [143043] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(5349), 1, + anon_sym_PIPE, + STATE(3845), 1, + sym_comment, + ACTIONS(5351), 12, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(7160), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7285), 1, - anon_sym_BANG, - ACTIONS(7287), 1, - anon_sym_QMARK, - STATE(3976), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [143070] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4349), 1, + anon_sym_PIPE, + STATE(3846), 1, sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(5128), 1, - sym_type_annotation, - STATE(5844), 1, - sym__initializer, - STATE(6615), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - ACTIONS(7182), 3, + ACTIONS(4869), 12, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [142432] = 15, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [143097] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(5154), 1, + anon_sym_PIPE, + STATE(3847), 1, + sym_comment, + ACTIONS(5156), 12, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(7291), 1, - anon_sym_BANG, - ACTIONS(7293), 1, - anon_sym_QMARK, - STATE(3977), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [143124] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5106), 1, + anon_sym_PIPE, + STATE(3848), 1, sym_comment, - STATE(4266), 1, - sym_formal_parameters, - STATE(4869), 1, - sym__call_signature, - STATE(5417), 1, - sym_type_annotation, - STATE(5820), 1, - sym__initializer, - STATE(6530), 1, - sym_type_parameters, - ACTIONS(7289), 3, + ACTIONS(5108), 12, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - [142480] = 15, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [143151] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(6985), 1, - anon_sym_STAR, - ACTIONS(6989), 1, + ACTIONS(7308), 1, anon_sym_LBRACE, - ACTIONS(7168), 1, - sym_identifier, - ACTIONS(7170), 1, - anon_sym_type, - STATE(3978), 1, + ACTIONS(7312), 1, + sym_html_character_reference, + ACTIONS(7316), 1, + anon_sym_LT, + ACTIONS(7338), 1, + anon_sym_LT_SLASH, + STATE(2496), 1, + sym_jsx_closing_element, + STATE(3849), 1, sym_comment, - STATE(5766), 1, - sym_import_require_clause, - STATE(5773), 1, - sym_string, - STATE(6700), 1, - sym_import_clause, - STATE(7025), 1, - sym__import_identifier, - ACTIONS(7172), 2, - anon_sym_COMMA, - anon_sym_from, - STATE(7185), 2, - sym_namespace_import, - sym_named_imports, - [142528] = 15, + STATE(3883), 1, + sym_jsx_opening_element, + STATE(3900), 1, + aux_sym_jsx_element_repeat1, + ACTIONS(7310), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(4763), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [143192] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7014), 1, + anon_sym_LBRACE, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7027), 1, + anon_sym_LT, + ACTIONS(7340), 1, + anon_sym_COLON, + ACTIONS(7342), 1, + anon_sym_GT, + ACTIONS(7344), 1, + anon_sym_SLASH_GT, + STATE(3850), 1, + sym_comment, + STATE(4185), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4186), 1, + sym_type_arguments, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [143237] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7160), 1, + STATE(3851), 1, + sym_comment, + ACTIONS(5039), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(7295), 1, - anon_sym_BANG, - ACTIONS(7297), 1, - anon_sym_QMARK, - STATE(3979), 1, + anon_sym_extends, + [143262] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(3852), 1, sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(5551), 1, - sym_type_annotation, - STATE(6028), 1, - sym__initializer, - STATE(6683), 1, - sym_type_parameters, - STATE(7140), 1, - sym__call_signature, - ACTIONS(7156), 3, + ACTIONS(5035), 13, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [142576] = 4, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [143287] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3980), 1, + ACTIONS(4345), 1, + anon_sym_PIPE, + STATE(3853), 1, sym_comment, - ACTIONS(5050), 13, + ACTIONS(4839), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [142601] = 6, + anon_sym_PIPE_RBRACE, + [143314] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2083), 1, - anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5084), 1, - anon_sym_PIPE, - STATE(3981), 1, + STATE(3854), 1, sym_comment, - ACTIONS(5086), 11, + ACTIONS(5035), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [142630] = 5, + [143339] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5320), 1, - anon_sym_PIPE, - STATE(3982), 1, + STATE(3855), 1, sym_comment, - ACTIONS(5322), 12, + ACTIONS(5035), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [142657] = 5, + [143364] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5316), 1, + ACTIONS(5106), 1, anon_sym_PIPE, - STATE(3983), 1, + STATE(3856), 1, sym_comment, - ACTIONS(5318), 12, + ACTIONS(5108), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -340146,14 +328245,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [142684] = 4, + [143391] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7308), 1, + anon_sym_LBRACE, + ACTIONS(7312), 1, + sym_html_character_reference, + ACTIONS(7316), 1, + anon_sym_LT, + ACTIONS(7346), 1, + anon_sym_LT_SLASH, + STATE(3152), 1, + sym_jsx_closing_element, + STATE(3857), 1, + sym_comment, + STATE(3883), 1, + sym_jsx_opening_element, + STATE(3924), 1, + aux_sym_jsx_element_repeat1, + ACTIONS(7310), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(4763), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [143432] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3984), 1, + STATE(3858), 1, sym_comment, - ACTIONS(5290), 13, + ACTIONS(5023), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -340167,35 +328295,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [142709] = 4, + [143457] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3985), 1, + ACTIONS(7081), 1, + anon_sym_LT, + ACTIONS(7348), 1, + anon_sym_DOT, + ACTIONS(7350), 1, + anon_sym_is, + STATE(3859), 1, sym_comment, - ACTIONS(5122), 13, + STATE(4078), 1, + sym_type_arguments, + ACTIONS(4202), 9, 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, - [142734] = 4, + [143490] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3986), 1, + STATE(3860), 1, sym_comment, - ACTIONS(5122), 13, + ACTIONS(5023), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -340209,43 +328341,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [142759] = 12, + [143515] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - ACTIONS(7301), 1, + ACTIONS(7352), 1, anon_sym_QMARK, - STATE(3987), 1, + STATE(3861), 1, sym_comment, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5377), 1, + STATE(5183), 1, sym__call_signature, - STATE(5381), 1, + STATE(5188), 1, sym_type_annotation, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(7299), 5, + ACTIONS(7324), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [142800] = 4, + [143556] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3988), 1, + STATE(3862), 1, sym_comment, - ACTIONS(4927), 13, + ACTIONS(5023), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -340259,35 +328391,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [142825] = 4, + [143581] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3989), 1, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + ACTIONS(7356), 1, + anon_sym_QMARK, + STATE(3863), 1, sym_comment, - ACTIONS(4927), 13, + STATE(4055), 1, + sym_formal_parameters, + STATE(4915), 1, + sym__call_signature, + STATE(4926), 1, + sym_type_annotation, + STATE(6769), 1, + sym_type_parameters, + ACTIONS(7354), 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_LT, - anon_sym_extends, - [142850] = 4, + anon_sym_PIPE_RBRACE, + [143622] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3990), 1, + STATE(3864), 1, sym_comment, - ACTIONS(4927), 13, + ACTIONS(5019), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -340301,56 +328441,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [142875] = 4, + [143647] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3991), 1, - sym_comment, - ACTIONS(4931), 13, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7308), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7312), 1, + sym_html_character_reference, + ACTIONS(7316), 1, anon_sym_LT, - anon_sym_extends, - [142900] = 4, + ACTIONS(7318), 1, + anon_sym_LT_SLASH, + STATE(3865), 1, + sym_comment, + STATE(3883), 1, + sym_jsx_opening_element, + STATE(3924), 1, + aux_sym_jsx_element_repeat1, + STATE(5058), 1, + sym_jsx_closing_element, + ACTIONS(7310), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(4763), 4, + sym_jsx_element, + sym_jsx_text, + sym_jsx_expression, + sym_jsx_self_closing_element, + [143688] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2235), 1, + anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3992), 1, + ACTIONS(5254), 1, + anon_sym_PIPE, + STATE(3866), 1, sym_comment, - ACTIONS(4931), 13, + ACTIONS(5256), 11, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [142925] = 4, + anon_sym_PIPE_RBRACE, + [143717] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3993), 1, + STATE(3867), 1, sym_comment, - ACTIONS(4931), 13, + ACTIONS(5019), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -340364,35 +328514,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [142950] = 4, + [143742] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2239), 1, + anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3994), 1, + ACTIONS(5254), 1, + anon_sym_PIPE, + STATE(3868), 1, sym_comment, - ACTIONS(4990), 13, + ACTIONS(5256), 11, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [142975] = 4, + anon_sym_PIPE_RBRACE, + [143771] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3995), 1, + STATE(3869), 1, sym_comment, - ACTIONS(4994), 13, + ACTIONS(5096), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -340406,14 +328558,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143000] = 4, + [143796] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3996), 1, + STATE(3870), 1, sym_comment, - ACTIONS(4994), 13, + ACTIONS(5248), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -340427,14 +328579,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143025] = 4, + [143821] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(3997), 1, + STATE(3871), 1, sym_comment, - ACTIONS(4994), 13, + ACTIONS(5100), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -340448,64 +328600,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143050] = 12, + [143846] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - ACTIONS(7305), 1, + ACTIONS(7360), 1, anon_sym_QMARK, - STATE(3998), 1, + STATE(3872), 1, sym_comment, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(4601), 1, - sym__call_signature, - STATE(5036), 1, + STATE(5117), 1, sym_type_annotation, - STATE(6630), 1, + STATE(5121), 1, + sym__call_signature, + STATE(6769), 1, sym_type_parameters, - ACTIONS(7303), 5, + ACTIONS(7358), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143091] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(3999), 1, - sym_comment, - ACTIONS(5010), 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, - [143116] = 4, + [143887] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4000), 1, + STATE(3873), 1, sym_comment, - ACTIONS(5010), 13, + ACTIONS(5096), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -340519,16 +328650,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143141] = 5, + [143912] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4345), 1, + ACTIONS(5216), 1, anon_sym_PIPE, - STATE(4001), 1, + STATE(3874), 1, sym_comment, - ACTIONS(4869), 12, + ACTIONS(5218), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -340541,36 +328672,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143168] = 5, + [143939] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5336), 1, - anon_sym_PIPE, - STATE(4002), 1, + STATE(3875), 1, sym_comment, - ACTIONS(5338), 12, + ACTIONS(5100), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [143195] = 4, + [143964] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4003), 1, + STATE(3876), 1, sym_comment, - ACTIONS(5010), 13, + ACTIONS(5104), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -340584,56 +328714,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143220] = 4, + [143989] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4004), 1, + ACTIONS(5202), 1, + anon_sym_PIPE, + STATE(3877), 1, sym_comment, - ACTIONS(5022), 13, + ACTIONS(5204), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [143245] = 4, + anon_sym_PIPE_RBRACE, + [144016] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7014), 1, + anon_sym_LBRACE, + ACTIONS(7023), 1, + anon_sym_DOT, + ACTIONS(7027), 1, + anon_sym_LT, + ACTIONS(7340), 1, + anon_sym_COLON, + ACTIONS(7342), 1, + anon_sym_GT, + ACTIONS(7362), 1, + anon_sym_SLASH_GT, + STATE(3878), 1, + sym_comment, + STATE(4260), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4261), 1, + sym_type_arguments, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [144061] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4005), 1, + ACTIONS(5176), 1, + anon_sym_PIPE, + STATE(3879), 1, sym_comment, - ACTIONS(5022), 13, + ACTIONS(5178), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [143270] = 4, + anon_sym_PIPE_RBRACE, + [144088] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4006), 1, + STATE(3880), 1, sym_comment, - ACTIONS(5022), 13, + ACTIONS(5248), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -340647,14 +328810,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143295] = 4, + [144113] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4007), 1, + STATE(3881), 1, sym_comment, - ACTIONS(5122), 13, + ACTIONS(5248), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -340668,436 +328831,221 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143320] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7307), 1, - anon_sym_LBRACE, - ACTIONS(7311), 1, - sym_html_character_reference, - ACTIONS(7313), 1, - anon_sym_LT_SLASH, - ACTIONS(7315), 1, - anon_sym_LT, - STATE(3090), 1, - sym_jsx_closing_element, - STATE(4008), 1, - sym_comment, - STATE(4012), 1, - aux_sym_jsx_element_repeat1, - STATE(4037), 1, - sym_jsx_opening_element, - ACTIONS(7309), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(4849), 4, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - [143361] = 5, + [144138] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5332), 1, + ACTIONS(4855), 1, anon_sym_PIPE, - STATE(4009), 1, + ACTIONS(7055), 1, + anon_sym_LT, + STATE(3882), 1, sym_comment, - ACTIONS(5334), 12, + STATE(4023), 1, + sym_type_arguments, + ACTIONS(4857), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143388] = 12, + [144169] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7307), 1, + ACTIONS(7308), 1, anon_sym_LBRACE, - ACTIONS(7311), 1, + ACTIONS(7312), 1, sym_html_character_reference, - ACTIONS(7315), 1, - anon_sym_LT, - ACTIONS(7317), 1, + ACTIONS(7314), 1, anon_sym_LT_SLASH, - STATE(4010), 1, - sym_comment, - STATE(4020), 1, + ACTIONS(7316), 1, + anon_sym_LT, + STATE(3833), 1, aux_sym_jsx_element_repeat1, - STATE(4037), 1, - sym_jsx_opening_element, - STATE(5281), 1, + STATE(4753), 1, sym_jsx_closing_element, - ACTIONS(7309), 2, + ACTIONS(7310), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(4849), 4, + STATE(3883), 2, + sym_jsx_opening_element, + sym_comment, + STATE(4763), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - [143429] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5332), 1, - anon_sym_PIPE, - STATE(4011), 1, - sym_comment, - ACTIONS(5334), 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, - [143456] = 12, + [144208] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7307), 1, + ACTIONS(7308), 1, anon_sym_LBRACE, - ACTIONS(7311), 1, + ACTIONS(7312), 1, sym_html_character_reference, - ACTIONS(7313), 1, - anon_sym_LT_SLASH, - ACTIONS(7315), 1, + ACTIONS(7316), 1, anon_sym_LT, - STATE(3267), 1, + ACTIONS(7346), 1, + anon_sym_LT_SLASH, + STATE(3053), 1, sym_jsx_closing_element, - STATE(4012), 1, - sym_comment, - STATE(4037), 1, - sym_jsx_opening_element, - STATE(4065), 1, + STATE(3857), 1, aux_sym_jsx_element_repeat1, - ACTIONS(7309), 2, + STATE(3883), 1, + sym_jsx_opening_element, + STATE(3884), 1, + sym_comment, + ACTIONS(7310), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(4849), 4, + STATE(4763), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - [143497] = 5, + [144249] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5328), 1, - anon_sym_PIPE, - STATE(4013), 1, + STATE(3885), 1, sym_comment, - ACTIONS(5330), 12, + ACTIONS(5164), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [143524] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(5131), 1, anon_sym_PIPE, - STATE(4014), 1, - sym_comment, - STATE(2680), 2, - sym_template_string, - sym_arguments, - ACTIONS(5133), 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, - [143557] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(7319), 1, - anon_sym_QMARK, - STATE(4015), 1, - sym_comment, - STATE(4200), 1, - sym_formal_parameters, - STATE(4679), 1, - sym__call_signature, - STATE(5381), 1, - sym_type_annotation, - STATE(6630), 1, - sym_type_parameters, - ACTIONS(7299), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143598] = 5, + anon_sym_extends, + [144274] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4324), 1, - anon_sym_PIPE, - STATE(4016), 1, + STATE(3886), 1, sym_comment, - ACTIONS(4843), 12, + ACTIONS(5164), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [143625] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(7323), 1, - anon_sym_QMARK, - STATE(4017), 1, - sym_comment, - STATE(4200), 1, - sym_formal_parameters, - STATE(4559), 1, - sym__call_signature, - STATE(5276), 1, - sym_type_annotation, - STATE(6630), 1, - sym_type_parameters, - ACTIONS(7321), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [143666] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4835), 1, anon_sym_PIPE, - ACTIONS(7042), 1, anon_sym_LT, - STATE(4018), 1, - sym_comment, - STATE(4143), 1, - sym_type_arguments, - ACTIONS(4837), 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, - [143697] = 5, + [144299] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5324), 1, - anon_sym_PIPE, - STATE(4019), 1, + STATE(3887), 1, sym_comment, - ACTIONS(5326), 12, + ACTIONS(5112), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [143724] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7307), 1, - anon_sym_LBRACE, - ACTIONS(7311), 1, - sym_html_character_reference, - ACTIONS(7315), 1, - anon_sym_LT, - ACTIONS(7317), 1, - anon_sym_LT_SLASH, - STATE(4020), 1, - sym_comment, - STATE(4037), 1, - sym_jsx_opening_element, - STATE(4065), 1, - aux_sym_jsx_element_repeat1, - STATE(5311), 1, - sym_jsx_closing_element, - ACTIONS(7309), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(4849), 4, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - [143765] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2197), 1, anon_sym_DOT, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5084), 1, - anon_sym_PIPE, - STATE(4021), 1, - sym_comment, - ACTIONS(5086), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [143794] = 5, + [144324] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5112), 1, - anon_sym_PIPE, - STATE(4022), 1, + STATE(3888), 1, sym_comment, - ACTIONS(5114), 12, + ACTIONS(5164), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [143821] = 5, + [144349] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5127), 1, - anon_sym_PIPE, - STATE(4023), 1, + STATE(3889), 1, sym_comment, - ACTIONS(5129), 12, + ACTIONS(4879), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [143848] = 5, + [144374] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5135), 1, - anon_sym_PIPE, - STATE(4024), 1, + STATE(3890), 1, sym_comment, - ACTIONS(5137), 12, + ACTIONS(4879), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [143875] = 4, + [144399] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4025), 1, + STATE(3891), 1, sym_comment, - ACTIONS(5018), 13, + ACTIONS(5104), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341111,87 +329059,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [143900] = 12, + [144424] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - ACTIONS(7327), 1, + ACTIONS(7364), 1, anon_sym_QMARK, - STATE(4026), 1, + STATE(3892), 1, sym_comment, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(4690), 1, + STATE(4487), 1, sym__call_signature, - STATE(5239), 1, + STATE(4926), 1, sym_type_annotation, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(7325), 5, + ACTIONS(7354), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [143941] = 5, + [144465] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5351), 1, - anon_sym_PIPE, - STATE(4027), 1, - sym_comment, - ACTIONS(5353), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4791), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + ACTIONS(4865), 1, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [143968] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5347), 1, + ACTIONS(5198), 1, anon_sym_PIPE, - STATE(4028), 1, + STATE(3893), 1, sym_comment, - ACTIONS(5349), 12, + STATE(2458), 2, + sym_template_string, + sym_arguments, + ACTIONS(5200), 8, 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, - [143995] = 4, + [144498] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4029), 1, + STATE(3894), 1, sym_comment, - ACTIONS(5046), 13, + ACTIONS(5112), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341205,74 +329134,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144020] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7307), 1, - anon_sym_LBRACE, - ACTIONS(7311), 1, - sym_html_character_reference, - ACTIONS(7315), 1, - anon_sym_LT, - ACTIONS(7329), 1, - anon_sym_LT_SLASH, - STATE(2666), 1, - sym_jsx_closing_element, - STATE(4030), 1, - sym_comment, - STATE(4037), 1, - sym_jsx_opening_element, - STATE(4065), 1, - aux_sym_jsx_element_repeat1, - ACTIONS(7309), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(4849), 4, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - [144061] = 12, + [144523] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(7333), 1, - anon_sym_QMARK, - STATE(4031), 1, + ACTIONS(5290), 1, + anon_sym_PIPE, + STATE(3895), 1, sym_comment, - STATE(4200), 1, - sym_formal_parameters, - STATE(5465), 1, - sym__call_signature, - STATE(5540), 1, - sym_type_annotation, - STATE(6630), 1, - sym_type_parameters, - ACTIONS(7331), 5, + ACTIONS(5292), 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, - [144102] = 5, + [144550] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5343), 1, + ACTIONS(5282), 1, anon_sym_PIPE, - STATE(4032), 1, + STATE(3896), 1, sym_comment, - ACTIONS(5345), 12, + ACTIONS(5284), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -341285,14 +329178,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144129] = 4, + [144577] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4033), 1, + STATE(3897), 1, sym_comment, - ACTIONS(5018), 13, + ACTIONS(4879), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341306,113 +329199,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144154] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(7335), 1, - anon_sym_COLON, - ACTIONS(7337), 1, - anon_sym_QMARK, - STATE(4034), 1, - sym_comment, - STATE(4200), 1, - sym_formal_parameters, - STATE(4534), 1, - sym__call_signature, - STATE(5540), 1, - sym_type_annotation, - STATE(6630), 1, - sym_type_parameters, - ACTIONS(7331), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144195] = 4, + [144602] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4035), 1, + ACTIONS(5278), 1, + anon_sym_PIPE, + STATE(3898), 1, sym_comment, - ACTIONS(5066), 13, + ACTIONS(5280), 12, sym__automatic_semicolon, - sym__function_signature_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_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, anon_sym_extends, - [144220] = 4, + anon_sym_PIPE_RBRACE, + [144629] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4036), 1, + ACTIONS(4343), 1, + anon_sym_PIPE, + STATE(3899), 1, sym_comment, - ACTIONS(5062), 13, + ACTIONS(4867), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [144245] = 11, + anon_sym_PIPE_RBRACE, + [144656] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7307), 1, + ACTIONS(7308), 1, anon_sym_LBRACE, - ACTIONS(7311), 1, + ACTIONS(7312), 1, sym_html_character_reference, - ACTIONS(7315), 1, + ACTIONS(7316), 1, anon_sym_LT, - ACTIONS(7339), 1, + ACTIONS(7338), 1, anon_sym_LT_SLASH, - STATE(4055), 1, - aux_sym_jsx_element_repeat1, - STATE(4940), 1, + STATE(2550), 1, sym_jsx_closing_element, - ACTIONS(7309), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(4037), 2, + STATE(3883), 1, sym_jsx_opening_element, + STATE(3900), 1, sym_comment, - STATE(4849), 4, + STATE(3924), 1, + aux_sym_jsx_element_repeat1, + ACTIONS(7310), 2, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + STATE(4763), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - [144284] = 4, + [144697] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4038), 1, + STATE(3901), 1, sym_comment, - ACTIONS(5058), 13, + ACTIONS(5126), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341426,14 +329293,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144309] = 4, + [144722] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4039), 1, + STATE(3902), 1, sym_comment, - ACTIONS(5054), 13, + ACTIONS(5168), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341447,14 +329314,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144334] = 4, + [144747] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4040), 1, + STATE(3903), 1, sym_comment, - ACTIONS(5058), 13, + ACTIONS(5160), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341468,89 +329335,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144359] = 4, + [144772] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4041), 1, + ACTIONS(4987), 1, + anon_sym_PIPE, + ACTIONS(7366), 1, + anon_sym_DOT, + ACTIONS(7368), 1, + anon_sym_QMARK_DOT, + STATE(3904), 1, sym_comment, - ACTIONS(4974), 13, + ACTIONS(4989), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [144384] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(7341), 1, - anon_sym_QMARK, - STATE(4042), 1, - sym_comment, - STATE(4200), 1, - sym_formal_parameters, - STATE(5149), 1, - sym__call_signature, - STATE(5276), 1, - sym_type_annotation, - STATE(6630), 1, - sym_type_parameters, - ACTIONS(7321), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144425] = 8, + [144803] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7064), 1, - anon_sym_LT, - ACTIONS(7343), 1, - anon_sym_DOT, - ACTIONS(7345), 1, - anon_sym_is, - STATE(4043), 1, + STATE(3905), 1, sym_comment, - STATE(4382), 1, - sym_type_arguments, - ACTIONS(4203), 9, + ACTIONS(4966), 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, - [144458] = 4, + [144828] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4044), 1, + STATE(3906), 1, sym_comment, - ACTIONS(5054), 13, + ACTIONS(5130), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341564,38 +329401,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144483] = 7, + [144853] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5247), 1, - anon_sym_PIPE, - ACTIONS(7347), 1, - anon_sym_DOT, - ACTIONS(7349), 1, - anon_sym_QMARK_DOT, - STATE(4045), 1, + STATE(3907), 1, sym_comment, - ACTIONS(5249), 10, + ACTIONS(5126), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [144514] = 4, + [144878] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4046), 1, + STATE(3908), 1, sym_comment, - ACTIONS(5050), 13, + ACTIONS(5130), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -341609,698 +329443,571 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [144539] = 5, + [144903] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4352), 1, - anon_sym_PIPE, - STATE(4047), 1, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + ACTIONS(7370), 1, + anon_sym_QMARK, + STATE(3909), 1, sym_comment, - ACTIONS(4845), 12, + STATE(4055), 1, + sym_formal_parameters, + STATE(4515), 1, + sym__call_signature, + STATE(5117), 1, + sym_type_annotation, + STATE(6769), 1, + sym_type_parameters, + ACTIONS(7358), 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, - [144566] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7307), 1, - anon_sym_LBRACE, - ACTIONS(7311), 1, - sym_html_character_reference, - ACTIONS(7315), 1, - anon_sym_LT, - ACTIONS(7329), 1, - anon_sym_LT_SLASH, - STATE(2706), 1, - sym_jsx_closing_element, - STATE(4030), 1, - aux_sym_jsx_element_repeat1, - STATE(4037), 1, - sym_jsx_opening_element, - STATE(4048), 1, - sym_comment, - ACTIONS(7309), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(4849), 4, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - [144607] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7011), 1, - anon_sym_LBRACE, - ACTIONS(7020), 1, - anon_sym_DOT, - ACTIONS(7024), 1, - anon_sym_LT, - ACTIONS(7351), 1, - anon_sym_COLON, - ACTIONS(7353), 1, - anon_sym_GT, - ACTIONS(7355), 1, - anon_sym_SLASH_GT, - STATE(4049), 1, - sym_comment, - STATE(4248), 1, - sym_type_arguments, - STATE(4249), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [144652] = 12, + [144944] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - ACTIONS(7357), 1, - anon_sym_QMARK, - STATE(4050), 1, + STATE(3910), 1, sym_comment, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5026), 1, + STATE(5392), 1, sym__call_signature, - STATE(5036), 1, + STATE(5404), 1, sym_type_annotation, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(7303), 5, + ACTIONS(7372), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [144693] = 5, + [144982] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5336), 1, - anon_sym_PIPE, - STATE(4051), 1, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(3911), 1, sym_comment, - ACTIONS(5338), 12, + STATE(4055), 1, + sym_formal_parameters, + STATE(4532), 1, + sym__call_signature, + STATE(5179), 1, + sym_type_annotation, + STATE(6769), 1, + sym_type_parameters, + ACTIONS(7374), 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_AMP, - anon_sym_BQUOTE, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [144720] = 4, + [145020] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6998), 1, + anon_sym_LBRACE, + ACTIONS(7177), 1, + sym_identifier, + ACTIONS(7179), 1, + anon_sym_type, + STATE(3912), 1, + sym_comment, + STATE(5409), 1, + sym_import_require_clause, + STATE(5628), 1, + sym_string, + STATE(6559), 1, + sym__import_identifier, + STATE(6922), 1, + sym_import_clause, + STATE(7302), 2, + sym_namespace_import, + sym_named_imports, + [145064] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4052), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(3913), 1, sym_comment, - ACTIONS(5046), 13, + STATE(4683), 1, + sym_formal_parameters, + STATE(5145), 1, + sym_type_annotation, + STATE(6182), 1, + sym__initializer, + STATE(6493), 1, + sym_type_parameters, + STATE(6603), 1, + sym__call_signature, + ACTIONS(7376), 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_LT, - anon_sym_extends, - [144745] = 12, + [145106] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(7359), 1, - anon_sym_QMARK, - STATE(4053), 1, + STATE(3914), 1, sym_comment, - STATE(4200), 1, + STATE(4255), 1, sym_formal_parameters, - STATE(5239), 1, - sym_type_annotation, - STATE(5241), 1, + STATE(4748), 1, sym__call_signature, - STATE(6630), 1, + STATE(5225), 1, + sym_type_annotation, + STATE(5799), 1, + sym__initializer, + STATE(6732), 1, sym_type_parameters, - ACTIONS(7325), 5, + ACTIONS(7378), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [144786] = 14, + [145148] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7020), 1, - anon_sym_DOT, - ACTIONS(7024), 1, + ACTIONS(7027), 1, anon_sym_LT, - ACTIONS(7351), 1, - anon_sym_COLON, - ACTIONS(7353), 1, + ACTIONS(7380), 1, anon_sym_GT, - ACTIONS(7361), 1, + ACTIONS(7382), 1, + anon_sym_DOT, + ACTIONS(7384), 1, anon_sym_SLASH_GT, - STATE(4054), 1, + STATE(3915), 1, sym_comment, - STATE(4315), 1, - sym_type_arguments, - STATE(4316), 1, + STATE(4258), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, + STATE(4259), 1, + sym_type_arguments, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [144831] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7307), 1, - anon_sym_LBRACE, - ACTIONS(7311), 1, - sym_html_character_reference, - ACTIONS(7315), 1, - anon_sym_LT, - ACTIONS(7339), 1, - anon_sym_LT_SLASH, - STATE(4037), 1, - sym_jsx_opening_element, - STATE(4055), 1, - sym_comment, - STATE(4065), 1, - aux_sym_jsx_element_repeat1, - STATE(4876), 1, - sym_jsx_closing_element, - ACTIONS(7309), 2, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - STATE(4849), 4, - sym_jsx_element, - sym_jsx_text, - sym_jsx_expression, - sym_jsx_self_closing_element, - [144872] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4056), 1, - sym_comment, - ACTIONS(4974), 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, - [144897] = 10, + [145190] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4226), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(6973), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(6979), 1, - anon_sym_DOT, - ACTIONS(7363), 1, - anon_sym_QMARK, - STATE(3913), 1, - sym_type_arguments, - STATE(4057), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(3916), 1, sym_comment, - STATE(7084), 1, + STATE(4683), 1, + sym_formal_parameters, + STATE(5270), 1, sym_type_annotation, - ACTIONS(4203), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [144933] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4508), 1, - anon_sym_COMMA, - ACTIONS(4518), 1, - anon_sym_RBRACE, - ACTIONS(7214), 1, - anon_sym_EQ, - STATE(4058), 1, - sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(4514), 7, + STATE(5793), 1, + sym__initializer, + STATE(6493), 1, + sym_type_parameters, + STATE(6646), 1, + sym__call_signature, + ACTIONS(7386), 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, - [144967] = 13, + [145232] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - STATE(4059), 1, + STATE(3917), 1, sym_comment, - STATE(4266), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(4879), 1, + STATE(5177), 1, sym__call_signature, - STATE(5439), 1, + STATE(5179), 1, sym_type_annotation, - STATE(6050), 1, - sym__initializer, - STATE(6530), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(7366), 3, + ACTIONS(7374), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145009] = 9, + anon_sym_PIPE_RBRACE, + [145270] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4508), 1, - anon_sym_COMMA, - ACTIONS(4524), 1, - anon_sym_RBRACE, - ACTIONS(7214), 1, - anon_sym_EQ, - STATE(4060), 1, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(3918), 1, sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(4514), 7, + STATE(4055), 1, + sym_formal_parameters, + STATE(5115), 1, + sym_type_annotation, + STATE(5116), 1, + sym__call_signature, + STATE(6769), 1, + sym_type_parameters, + ACTIONS(7388), 5, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [145043] = 13, + [145308] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4061), 1, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(3919), 1, sym_comment, - STATE(4790), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5368), 1, - sym_type_annotation, - STATE(5829), 1, - sym__initializer, - STATE(6570), 1, + STATE(4488), 1, sym__call_signature, - STATE(6683), 1, + STATE(4948), 1, + sym_type_annotation, + STATE(6769), 1, sym_type_parameters, - ACTIONS(7368), 3, + ACTIONS(7390), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145085] = 13, + anon_sym_PIPE_RBRACE, + [145346] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4062), 1, + ACTIONS(7197), 1, + anon_sym_LPAREN, + ACTIONS(7219), 1, + anon_sym_EQ, + STATE(3920), 1, sym_comment, - STATE(4790), 1, + STATE(4457), 1, sym_formal_parameters, - STATE(5295), 1, - sym_type_annotation, - STATE(6386), 1, - sym__initializer, - STATE(6632), 1, - sym__call_signature, - STATE(6683), 1, + STATE(6477), 1, sym_type_parameters, - ACTIONS(7370), 3, + ACTIONS(4787), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4518), 5, sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [145382] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4512), 1, anon_sym_COMMA, + ACTIONS(4525), 1, + anon_sym_RBRACE, + ACTIONS(7219), 1, + anon_sym_EQ, + STATE(3921), 1, + sym_comment, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(4518), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - [145127] = 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [145416] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7160), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4063), 1, + STATE(3922), 1, sym_comment, - STATE(4790), 1, + STATE(4255), 1, sym_formal_parameters, - STATE(5357), 1, + STATE(4815), 1, + sym__call_signature, + STATE(5042), 1, sym_type_annotation, - STATE(6005), 1, + STATE(6136), 1, sym__initializer, - STATE(6683), 1, + STATE(6732), 1, sym_type_parameters, - STATE(7157), 1, - sym__call_signature, - ACTIONS(7370), 3, + ACTIONS(7392), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145169] = 13, + [145458] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4064), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(3923), 1, sym_comment, - STATE(4790), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(5183), 1, + STATE(5001), 1, sym_type_annotation, - STATE(5896), 1, + STATE(5828), 1, sym__initializer, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - STATE(6716), 1, + STATE(6722), 1, sym__call_signature, - ACTIONS(7368), 3, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145211] = 10, + [145500] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7372), 1, + ACTIONS(7396), 1, anon_sym_LBRACE, - ACTIONS(7378), 1, + ACTIONS(7402), 1, sym_html_character_reference, - ACTIONS(7381), 1, + ACTIONS(7405), 1, anon_sym_LT_SLASH, - ACTIONS(7383), 1, + ACTIONS(7407), 1, anon_sym_LT, - STATE(4037), 1, + STATE(3883), 1, sym_jsx_opening_element, - ACTIONS(7375), 2, + ACTIONS(7399), 2, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, - STATE(4065), 2, + STATE(3924), 2, sym_comment, aux_sym_jsx_element_repeat1, - STATE(4849), 4, + STATE(4763), 4, sym_jsx_element, sym_jsx_text, sym_jsx_expression, sym_jsx_self_closing_element, - [145247] = 11, + [145536] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1972), 1, + anon_sym_PIPE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(4066), 1, + STATE(3925), 1, sym_comment, - STATE(4200), 1, - sym_formal_parameters, - STATE(4696), 1, - sym__call_signature, - STATE(5115), 1, - sym_type_annotation, - STATE(6630), 1, - sym_type_parameters, - ACTIONS(7386), 5, + ACTIONS(2030), 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, - [145285] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(6985), 1, - anon_sym_STAR, - ACTIONS(6989), 1, - anon_sym_LBRACE, - ACTIONS(7168), 1, - sym_identifier, - ACTIONS(7170), 1, - anon_sym_type, - STATE(4067), 1, - sym_comment, - STATE(5777), 1, - sym_string, - STATE(5778), 1, - sym_import_require_clause, - STATE(7025), 1, - sym__import_identifier, - STATE(7105), 1, - sym_import_clause, - STATE(7185), 2, - sym_namespace_import, - sym_named_imports, - [145329] = 11, + [145562] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(4068), 1, - sym_comment, - STATE(4200), 1, - sym_formal_parameters, - STATE(5112), 1, - sym__call_signature, - STATE(5115), 1, - sym_type_annotation, - STATE(6630), 1, - sym_type_parameters, - ACTIONS(7386), 5, - sym__automatic_semicolon, + ACTIONS(4512), 1, anon_sym_COMMA, + ACTIONS(4522), 1, anon_sym_RBRACE, + ACTIONS(7219), 1, + anon_sym_EQ, + STATE(3926), 1, + sym_comment, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(4518), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [145367] = 11, + [145596] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - STATE(4069), 1, + STATE(3927), 1, sym_comment, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5360), 1, + STATE(4946), 1, sym__call_signature, - STATE(5370), 1, + STATE(4948), 1, sym_type_annotation, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(7388), 5, + ACTIONS(7390), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [145405] = 11, + [145634] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(4070), 1, + STATE(3928), 1, sym_comment, - STATE(4200), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(5046), 1, - sym__call_signature, - STATE(5062), 1, + STATE(5019), 1, sym_type_annotation, - STATE(6630), 1, + STATE(5661), 1, + sym__initializer, + STATE(6358), 1, + sym__call_signature, + STATE(6493), 1, sym_type_parameters, - ACTIONS(7390), 5, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145443] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4508), 1, - anon_sym_COMMA, - ACTIONS(4511), 1, - anon_sym_RBRACE, - ACTIONS(7214), 1, - anon_sym_EQ, - STATE(4071), 1, - sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(4514), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [145477] = 9, + [145676] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_COMMA, - ACTIONS(4521), 1, + ACTIONS(4515), 1, anon_sym_RBRACE, - ACTIONS(7214), 1, + ACTIONS(7219), 1, anon_sym_EQ, - STATE(4072), 1, + STATE(3929), 1, sym_comment, - STATE(6171), 1, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - STATE(6333), 1, + STATE(6261), 1, aux_sym_object_repeat1, - ACTIONS(4514), 7, + ACTIONS(4518), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -342308,481 +330015,467 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [145511] = 13, + [145710] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7024), 1, + ACTIONS(7027), 1, anon_sym_LT, - ACTIONS(7392), 1, + ACTIONS(7380), 1, anon_sym_GT, - ACTIONS(7394), 1, + ACTIONS(7382), 1, anon_sym_DOT, - ACTIONS(7396), 1, + ACTIONS(7410), 1, anon_sym_SLASH_GT, - STATE(4073), 1, + STATE(3930), 1, sym_comment, - STATE(4416), 1, - sym_type_arguments, - STATE(4417), 1, + STATE(4222), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [145553] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7011), 1, - anon_sym_LBRACE, - ACTIONS(7024), 1, - anon_sym_LT, - ACTIONS(7392), 1, - anon_sym_GT, - ACTIONS(7394), 1, - anon_sym_DOT, - ACTIONS(7398), 1, - anon_sym_SLASH_GT, - STATE(4074), 1, - sym_comment, - STATE(4254), 1, + STATE(4227), 1, sym_type_arguments, - STATE(4255), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [145595] = 11, + [145752] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(4075), 1, + STATE(3931), 1, sym_comment, - STATE(4200), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(5251), 1, + STATE(5002), 1, sym_type_annotation, - STATE(5253), 1, - sym__call_signature, - STATE(6630), 1, + STATE(6106), 1, + sym__initializer, + STATE(6493), 1, sym_type_parameters, - ACTIONS(7400), 5, + STATE(6790), 1, + sym__call_signature, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145633] = 13, + [145794] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(4076), 1, + STATE(3932), 1, sym_comment, - STATE(4266), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(4888), 1, - sym__call_signature, - STATE(5487), 1, + STATE(4898), 1, sym_type_annotation, - STATE(6035), 1, + STATE(5646), 1, sym__initializer, - STATE(6530), 1, + STATE(6340), 1, + sym__call_signature, + STATE(6493), 1, sym_type_parameters, - ACTIONS(7402), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145675] = 13, + [145836] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7160), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4077), 1, + STATE(3933), 1, sym_comment, - STATE(4790), 1, + STATE(4255), 1, sym_formal_parameters, - STATE(5539), 1, + STATE(4667), 1, + sym__call_signature, + STATE(5166), 1, sym_type_annotation, - STATE(6010), 1, + STATE(5940), 1, sym__initializer, - STATE(6683), 1, + STATE(6732), 1, sym_type_parameters, - STATE(7165), 1, - sym__call_signature, - ACTIONS(7404), 3, + ACTIONS(7412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145717] = 13, + [145878] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(4078), 1, + STATE(3934), 1, sym_comment, - STATE(4266), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(4984), 1, - sym__call_signature, - STATE(5477), 1, + STATE(4989), 1, sym_type_annotation, - STATE(5981), 1, + STATE(6094), 1, sym__initializer, - STATE(6530), 1, + STATE(6493), 1, sym_type_parameters, - ACTIONS(7406), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145759] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4851), 1, - anon_sym_PIPE, - STATE(4079), 1, - sym_comment, - ACTIONS(4853), 11, + STATE(6805), 1, + sym__call_signature, + ACTIONS(7394), 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, - anon_sym_extends, - anon_sym_is, - anon_sym_PIPE_RBRACE, - [145785] = 13, + [145920] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4080), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(3935), 1, sym_comment, - STATE(4790), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(5034), 1, + STATE(5053), 1, sym_type_annotation, - STATE(5855), 1, + STATE(5769), 1, sym__initializer, - STATE(6683), 1, - sym_type_parameters, - STATE(6827), 1, + STATE(6403), 1, sym__call_signature, - ACTIONS(7408), 3, + STATE(6493), 1, + sym_type_parameters, + ACTIONS(7414), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145827] = 11, + [145962] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6998), 1, + anon_sym_LBRACE, + ACTIONS(7177), 1, + sym_identifier, + ACTIONS(7179), 1, + anon_sym_type, + STATE(3936), 1, + sym_comment, + STATE(5639), 1, + sym_import_require_clause, + STATE(5640), 1, + sym_string, + STATE(6559), 1, + sym__import_identifier, + STATE(6851), 1, + sym_import_clause, + STATE(7302), 2, + sym_namespace_import, + sym_named_imports, + [146006] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - STATE(4081), 1, + STATE(3937), 1, sym_comment, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(4549), 1, - sym__call_signature, - STATE(5251), 1, + STATE(5103), 1, sym_type_annotation, - STATE(6630), 1, + STATE(5837), 1, + sym__initializer, + STATE(5843), 1, + sym__call_signature, + STATE(6769), 1, sym_type_parameters, - ACTIONS(7400), 5, + ACTIONS(7416), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [145865] = 13, + [146048] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4082), 1, + ACTIONS(4855), 1, + anon_sym_PIPE, + ACTIONS(7418), 1, + anon_sym_is, + STATE(3938), 1, sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(5457), 1, - sym_type_annotation, - STATE(6041), 1, - sym__initializer, - STATE(6683), 1, - sym_type_parameters, - STATE(7119), 1, - sym__call_signature, - ACTIONS(7404), 3, + ACTIONS(4857), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145907] = 14, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [146076] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(6985), 1, - anon_sym_STAR, - ACTIONS(6989), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7168), 1, - sym_identifier, - ACTIONS(7170), 1, - anon_sym_type, - STATE(4083), 1, + ACTIONS(7027), 1, + anon_sym_LT, + ACTIONS(7380), 1, + anon_sym_GT, + ACTIONS(7382), 1, + anon_sym_DOT, + ACTIONS(7420), 1, + anon_sym_SLASH_GT, + STATE(3939), 1, sym_comment, - STATE(5562), 1, - sym_string, - STATE(5563), 1, - sym_import_require_clause, - STATE(7025), 1, - sym__import_identifier, - STATE(7081), 1, - sym_import_clause, - STATE(7185), 2, - sym_namespace_import, - sym_named_imports, - [145951] = 13, + STATE(4168), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4171), 1, + sym_type_arguments, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [146118] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4084), 1, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(3940), 1, sym_comment, - STATE(4790), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5331), 1, - sym_type_annotation, - STATE(6357), 1, - sym__initializer, - STATE(6669), 1, + STATE(4553), 1, sym__call_signature, - STATE(6683), 1, + STATE(5404), 1, + sym_type_annotation, + STATE(6769), 1, sym_type_parameters, - ACTIONS(7404), 3, + ACTIONS(7372), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145993] = 11, + anon_sym_PIPE_RBRACE, + [146156] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(4085), 1, + STATE(3941), 1, sym_comment, - STATE(4200), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(5305), 1, - sym__call_signature, - STATE(5318), 1, + STATE(5066), 1, sym_type_annotation, - STATE(6630), 1, + STATE(5879), 1, + sym__initializer, + STATE(6493), 1, sym_type_parameters, - ACTIONS(7410), 5, + STATE(6791), 1, + sym__call_signature, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146031] = 6, + [146198] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, - anon_sym_PIPE, - ACTIONS(7068), 1, - anon_sym_is, - STATE(4086), 1, + ACTIONS(7081), 1, + anon_sym_LT, + ACTIONS(7348), 1, + anon_sym_DOT, + STATE(3942), 1, sym_comment, - ACTIONS(4849), 10, + STATE(4078), 1, + sym_type_arguments, + ACTIONS(4202), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [146059] = 13, + [146228] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6998), 1, + anon_sym_LBRACE, + ACTIONS(7177), 1, + sym_identifier, + ACTIONS(7179), 1, + anon_sym_type, + STATE(3943), 1, + sym_comment, + STATE(5516), 1, + sym_import_require_clause, + STATE(5517), 1, + sym_string, + STATE(6559), 1, + sym__import_identifier, + STATE(6898), 1, + sym_import_clause, + STATE(7302), 2, + sym_namespace_import, + sym_named_imports, + [146272] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(4087), 1, + STATE(3944), 1, sym_comment, - STATE(4266), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(4895), 1, - sym__call_signature, - STATE(5485), 1, + STATE(5030), 1, sym_type_annotation, - STATE(5813), 1, + STATE(5877), 1, sym__initializer, - STATE(6530), 1, + STATE(6493), 1, sym_type_parameters, - ACTIONS(7412), 3, + STATE(6780), 1, + sym__call_signature, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146101] = 10, + [146314] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7214), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7216), 1, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(4088), 1, + STATE(3945), 1, sym_comment, - STATE(4561), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(7104), 1, + STATE(4874), 1, + sym_type_annotation, + STATE(5924), 1, + sym__initializer, + STATE(6493), 1, sym_type_parameters, - ACTIONS(4783), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4514), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [146137] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4859), 1, - anon_sym_PIPE, - ACTIONS(7068), 1, - anon_sym_is, - STATE(4089), 1, - sym_comment, - ACTIONS(4861), 10, + STATE(6904), 1, + sym__call_signature, + ACTIONS(7394), 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, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [146165] = 6, + [146356] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4835), 1, + ACTIONS(4845), 1, anon_sym_PIPE, - ACTIONS(7414), 1, - anon_sym_is, - STATE(4090), 1, + STATE(3946), 1, sym_comment, - ACTIONS(4837), 10, + ACTIONS(4847), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -342792,160 +330485,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, + anon_sym_is, anon_sym_PIPE_RBRACE, - [146193] = 13, + [146382] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7024), 1, + ACTIONS(7027), 1, anon_sym_LT, - ACTIONS(7392), 1, + ACTIONS(7380), 1, anon_sym_GT, - ACTIONS(7394), 1, + ACTIONS(7382), 1, anon_sym_DOT, - ACTIONS(7416), 1, + ACTIONS(7422), 1, anon_sym_SLASH_GT, - STATE(4091), 1, + STATE(3947), 1, sym_comment, - STATE(4319), 1, - sym_type_arguments, - STATE(4321), 1, + STATE(4183), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, + STATE(4184), 1, + sym_type_arguments, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [146235] = 13, + [146424] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - STATE(4092), 1, + STATE(3948), 1, sym_comment, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5162), 1, - sym_type_annotation, - STATE(5876), 1, - sym__initializer, - STATE(5877), 1, + STATE(4546), 1, sym__call_signature, - STATE(6630), 1, + STATE(4858), 1, + sym_type_annotation, + STATE(6769), 1, sym_type_parameters, - ACTIONS(7418), 3, + ACTIONS(7424), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146277] = 13, + anon_sym_PIPE_RBRACE, + [146462] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4093), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(3949), 1, sym_comment, - STATE(4790), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(5546), 1, + STATE(5213), 1, sym_type_annotation, - STATE(6080), 1, + STATE(6234), 1, sym__initializer, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - STATE(7018), 1, + STATE(6501), 1, sym__call_signature, - ACTIONS(7370), 3, + ACTIONS(7376), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146319] = 11, + [146504] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - STATE(4094), 1, + STATE(3950), 1, sym_comment, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(4542), 1, + STATE(4857), 1, sym__call_signature, - STATE(5318), 1, + STATE(4858), 1, sym_type_annotation, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - ACTIONS(7410), 5, + ACTIONS(7424), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146357] = 13, + [146542] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4095), 1, - sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(5070), 1, - sym_type_annotation, - STATE(5984), 1, - sym__initializer, - STATE(6683), 1, - sym_type_parameters, - STATE(7036), 1, - sym__call_signature, - ACTIONS(7368), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146399] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1978), 1, + ACTIONS(4871), 1, anon_sym_PIPE, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4096), 1, + ACTIONS(7147), 1, + anon_sym_is, + STATE(3951), 1, sym_comment, - ACTIONS(2030), 11, + ACTIONS(4873), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -342955,469 +330620,403 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, - anon_sym_is, anon_sym_PIPE_RBRACE, - [146425] = 13, + [146570] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(4097), 1, + STATE(3952), 1, sym_comment, - STATE(4266), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(4763), 1, - sym__call_signature, - STATE(5162), 1, + STATE(5189), 1, sym_type_annotation, - STATE(5886), 1, + STATE(6139), 1, sym__initializer, - STATE(6530), 1, + STATE(6493), 1, sym_type_parameters, - ACTIONS(7418), 3, + STATE(6571), 1, + sym__call_signature, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146467] = 13, + [146612] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7160), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4098), 1, + STATE(3953), 1, sym_comment, - STATE(4790), 1, + STATE(4255), 1, sym_formal_parameters, - STATE(5340), 1, + STATE(4706), 1, + sym__call_signature, + STATE(5319), 1, sym_type_annotation, - STATE(5982), 1, + STATE(6314), 1, sym__initializer, - STATE(6683), 1, + STATE(6732), 1, sym_type_parameters, - STATE(7017), 1, - sym__call_signature, - ACTIONS(7370), 3, + ACTIONS(7428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146509] = 9, + [146654] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(6994), 1, + anon_sym_STAR, + ACTIONS(6998), 1, + anon_sym_LBRACE, + ACTIONS(7177), 1, + sym_identifier, + ACTIONS(7179), 1, + anon_sym_type, + STATE(3954), 1, + sym_comment, + STATE(5505), 1, + sym_import_require_clause, + STATE(5506), 1, + sym_string, + STATE(6559), 1, + sym__import_identifier, + STATE(6719), 1, + sym_import_clause, + STATE(7302), 2, + sym_namespace_import, + sym_named_imports, + [146698] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4508), 1, - anon_sym_COMMA, - ACTIONS(4527), 1, - anon_sym_RBRACE, - ACTIONS(7214), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(4099), 1, - sym_comment, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4514), 7, - sym__automatic_semicolon, + ACTIONS(7169), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(7171), 1, anon_sym_COLON, + ACTIONS(7173), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [146543] = 13, + STATE(3955), 1, + sym_comment, + STATE(4255), 1, + sym_formal_parameters, + STATE(4643), 1, + sym__call_signature, + STATE(5103), 1, + sym_type_annotation, + STATE(5853), 1, + sym__initializer, + STATE(6732), 1, + sym_type_parameters, + ACTIONS(7416), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146740] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4100), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(3956), 1, sym_comment, - STATE(4790), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(4999), 1, + STATE(5303), 1, sym_type_annotation, - STATE(6298), 1, + STATE(6028), 1, sym__initializer, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - STATE(6722), 1, + STATE(6899), 1, sym__call_signature, - ACTIONS(7420), 3, + ACTIONS(7376), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146585] = 7, + [146782] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7064), 1, - anon_sym_LT, - ACTIONS(7343), 1, - anon_sym_DOT, - STATE(4101), 1, + ACTIONS(4841), 1, + anon_sym_PIPE, + ACTIONS(7147), 1, + anon_sym_is, + STATE(3957), 1, sym_comment, - STATE(4382), 1, - sym_type_arguments, - ACTIONS(4203), 9, + ACTIONS(4843), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [146615] = 13, + anon_sym_PIPE_RBRACE, + [146810] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4102), 1, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(3958), 1, sym_comment, - STATE(4790), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5265), 1, - sym_type_annotation, - STATE(5901), 1, - sym__initializer, - STATE(6678), 1, + STATE(4516), 1, sym__call_signature, - STATE(6683), 1, + STATE(5115), 1, + sym_type_annotation, + STATE(6769), 1, sym_type_parameters, - ACTIONS(7368), 3, + ACTIONS(7388), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [146657] = 13, + anon_sym_PIPE_RBRACE, + [146848] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(4103), 1, + STATE(3959), 1, sym_comment, - STATE(4200), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(5485), 1, + STATE(5251), 1, sym_type_annotation, - STATE(5808), 1, - sym__call_signature, - STATE(5838), 1, + STATE(5993), 1, sym__initializer, - STATE(6630), 1, + STATE(6493), 1, sym_type_parameters, - ACTIONS(7412), 3, + STATE(6936), 1, + sym__call_signature, + ACTIONS(7376), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146699] = 11, + [146890] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(4104), 1, + STATE(3960), 1, sym_comment, - STATE(4200), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(4603), 1, - sym__call_signature, - STATE(5062), 1, + STATE(4889), 1, sym_type_annotation, - STATE(6630), 1, + STATE(5943), 1, + sym__initializer, + STATE(6493), 1, sym_type_parameters, - ACTIONS(7390), 5, + STATE(6988), 1, + sym__call_signature, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146737] = 13, + [146932] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(4512), 1, + anon_sym_COMMA, + ACTIONS(4528), 1, + anon_sym_RBRACE, + ACTIONS(7219), 1, anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4105), 1, + STATE(3961), 1, sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(5288), 1, - sym_type_annotation, - STATE(6401), 1, - sym__initializer, - STATE(6559), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - ACTIONS(7404), 3, + STATE(5868), 1, + aux_sym_object_repeat1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4518), 7, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [146779] = 14, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [146966] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(1932), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(6985), 1, + ACTIONS(6994), 1, anon_sym_STAR, - ACTIONS(6989), 1, + ACTIONS(6998), 1, anon_sym_LBRACE, - ACTIONS(7168), 1, + ACTIONS(7177), 1, sym_identifier, - ACTIONS(7170), 1, + ACTIONS(7179), 1, anon_sym_type, - STATE(4106), 1, + STATE(3962), 1, sym_comment, - STATE(5766), 1, - sym_import_require_clause, - STATE(5773), 1, + STATE(5431), 1, sym_string, - STATE(6700), 1, - sym_import_clause, - STATE(7025), 1, - sym__import_identifier, - STATE(7185), 2, - sym_namespace_import, - sym_named_imports, - [146823] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(6985), 1, - anon_sym_STAR, - ACTIONS(6989), 1, - anon_sym_LBRACE, - ACTIONS(7168), 1, - sym_identifier, - ACTIONS(7170), 1, - anon_sym_type, - STATE(4107), 1, - sym_comment, - STATE(5623), 1, + STATE(5432), 1, sym_import_require_clause, - STATE(5624), 1, - sym_string, - STATE(6902), 1, - sym_import_clause, - STATE(7025), 1, + STATE(6559), 1, sym__import_identifier, - STATE(7185), 2, + STATE(6816), 1, + sym_import_clause, + STATE(7302), 2, sym_namespace_import, sym_named_imports, - [146867] = 11, + [147010] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, + ACTIONS(4218), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(6978), 1, anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(4108), 1, + ACTIONS(6988), 1, + anon_sym_DOT, + ACTIONS(7430), 1, + anon_sym_QMARK, + STATE(3786), 1, + sym_type_arguments, + STATE(3963), 1, sym_comment, - STATE(4200), 1, - sym_formal_parameters, - STATE(4758), 1, - sym__call_signature, - STATE(5370), 1, + STATE(6658), 1, sym_type_annotation, - STATE(6630), 1, - sym_type_parameters, - ACTIONS(7388), 5, - sym__automatic_semicolon, + ACTIONS(4202), 6, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146905] = 13, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [147046] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4109), 1, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(3964), 1, sym_comment, - STATE(4790), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5116), 1, + STATE(5166), 1, sym_type_annotation, - STATE(6220), 1, + STATE(5964), 1, + sym__call_signature, + STATE(5965), 1, sym__initializer, - STATE(6683), 1, + STATE(6769), 1, sym_type_parameters, - STATE(6804), 1, - sym__call_signature, - ACTIONS(7404), 3, + ACTIONS(7412), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146947] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(6985), 1, - anon_sym_STAR, - ACTIONS(6989), 1, - anon_sym_LBRACE, - ACTIONS(7168), 1, - sym_identifier, - ACTIONS(7170), 1, - anon_sym_type, - STATE(4110), 1, - sym_comment, - STATE(5640), 1, - sym_string, - STATE(5641), 1, - sym_import_require_clause, - STATE(6976), 1, - sym_import_clause, - STATE(7025), 1, - sym__import_identifier, - STATE(7185), 2, - sym_namespace_import, - sym_named_imports, - [146991] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7011), 1, - anon_sym_LBRACE, - ACTIONS(7024), 1, - anon_sym_LT, - ACTIONS(7392), 1, - anon_sym_GT, - ACTIONS(7394), 1, - anon_sym_DOT, - ACTIONS(7422), 1, - anon_sym_SLASH_GT, - STATE(4111), 1, - sym_comment, - STATE(4367), 1, - sym_type_arguments, - STATE(4386), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [147033] = 13, + [147088] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(4512), 1, + anon_sym_COMMA, + ACTIONS(4531), 1, + anon_sym_RBRACE, + ACTIONS(7219), 1, anon_sym_EQ, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4112), 1, + STATE(3965), 1, sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(5024), 1, - sym_type_annotation, - STATE(6258), 1, - sym__initializer, - STATE(6683), 1, - sym_type_parameters, - STATE(6755), 1, - sym__call_signature, - ACTIONS(7404), 3, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(4518), 7, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [147075] = 4, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [147122] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4113), 1, + STATE(3966), 1, sym_comment, - ACTIONS(6452), 11, + ACTIONS(4518), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -343429,18 +331028,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [147098] = 6, + [147145] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5072), 1, - anon_sym_PIPE, - ACTIONS(7424), 1, + ACTIONS(7433), 1, anon_sym_AMP, - STATE(4114), 1, + ACTIONS(7435), 1, + anon_sym_PIPE, + ACTIONS(7437), 1, + anon_sym_extends, + STATE(3967), 1, sym_comment, - ACTIONS(5074), 9, + ACTIONS(5076), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343448,18 +331049,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [147125] = 5, + [147174] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5004), 1, + ACTIONS(4993), 1, anon_sym_PIPE, - STATE(4115), 1, + STATE(3968), 1, sym_comment, - ACTIONS(5006), 10, + ACTIONS(4995), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343470,16 +331070,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147150] = 5, + [147199] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5200), 1, + ACTIONS(5013), 1, anon_sym_PIPE, - STATE(4116), 1, + STATE(3969), 1, sym_comment, - ACTIONS(5202), 10, + ACTIONS(5015), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343490,45 +331090,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147175] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7426), 1, - sym_identifier, - ACTIONS(7428), 1, - anon_sym_type, - ACTIONS(7430), 1, - anon_sym_COMMA, - ACTIONS(7432), 1, - anon_sym_RBRACE, - ACTIONS(7434), 1, - anon_sym_typeof, - STATE(4117), 1, - sym_comment, - STATE(5681), 1, - sym_string, - STATE(6364), 1, - sym_import_specifier, - STATE(6658), 1, - sym__import_identifier, - STATE(7488), 1, - sym__module_export_name, - [147218] = 5, + [147224] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3192), 1, + ACTIONS(5228), 1, anon_sym_PIPE, - STATE(4118), 1, + STATE(3970), 1, sym_comment, - ACTIONS(3434), 10, + ACTIONS(5230), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343539,20 +331110,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147243] = 7, + [147249] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7436), 1, + ACTIONS(5009), 1, anon_sym_PIPE, - ACTIONS(7438), 1, - anon_sym_extends, - STATE(4119), 1, + STATE(3971), 1, sym_comment, - ACTIONS(4978), 8, + ACTIONS(5011), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343560,17 +331127,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [147272] = 5, + [147274] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5292), 1, + ACTIONS(5090), 1, anon_sym_PIPE, - STATE(4120), 1, + STATE(3972), 1, sym_comment, - ACTIONS(5294), 10, + ACTIONS(5092), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343581,16 +331150,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147297] = 5, + [147299] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5150), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7435), 1, anon_sym_PIPE, - STATE(4121), 1, + ACTIONS(7437), 1, + anon_sym_extends, + STATE(3973), 1, sym_comment, - ACTIONS(5152), 10, + ACTIONS(5062), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343598,19 +331171,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [147322] = 5, + [147328] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5163), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7435), 1, anon_sym_PIPE, - STATE(4122), 1, + ACTIONS(7437), 1, + anon_sym_extends, + STATE(3974), 1, sym_comment, - ACTIONS(5165), 10, + ACTIONS(5226), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343618,41 +331193,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [147347] = 7, + [147357] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7436), 1, - anon_sym_PIPE, - ACTIONS(7438), 1, - anon_sym_extends, - STATE(4123), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(3975), 1, sym_comment, - ACTIONS(5165), 8, + STATE(4457), 1, + sym_formal_parameters, + STATE(6477), 1, + sym_type_parameters, + ACTIONS(4518), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [147376] = 5, + [147388] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5204), 1, + ACTIONS(5060), 1, anon_sym_PIPE, - STATE(4124), 1, + STATE(3976), 1, sym_comment, - ACTIONS(5206), 10, + ACTIONS(5062), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343663,16 +331237,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147401] = 5, + [147413] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5208), 1, + ACTIONS(3222), 1, anon_sym_PIPE, - STATE(4125), 1, + STATE(3977), 1, sym_comment, - ACTIONS(5210), 10, + ACTIONS(3540), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343683,16 +331257,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147426] = 5, + [147438] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4835), 1, + ACTIONS(5070), 1, anon_sym_PIPE, - STATE(4126), 1, + STATE(3978), 1, sym_comment, - ACTIONS(4837), 10, + ACTIONS(5072), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343703,78 +331277,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147451] = 5, + [147463] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5012), 1, - anon_sym_PIPE, - STATE(4127), 1, + STATE(3979), 1, sym_comment, - ACTIONS(5014), 10, + ACTIONS(6523), 11, sym__automatic_semicolon, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [147476] = 7, + [147486] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7436), 1, - anon_sym_PIPE, - ACTIONS(7438), 1, - anon_sym_extends, - STATE(4128), 1, + STATE(3980), 1, sym_comment, - ACTIONS(5220), 8, + ACTIONS(6416), 11, sym__automatic_semicolon, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [147505] = 5, + [147509] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4962), 1, - anon_sym_PIPE, - STATE(4129), 1, + ACTIONS(7439), 1, + anon_sym_DOT, + ACTIONS(7441), 1, + anon_sym_QMARK_DOT, + STATE(3981), 1, sym_comment, - ACTIONS(4964), 10, + ACTIONS(4989), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [147530] = 5, + [147536] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4966), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7435), 1, anon_sym_PIPE, - STATE(4130), 1, + ACTIONS(7437), 1, + anon_sym_extends, + STATE(3982), 1, sym_comment, - ACTIONS(4968), 10, + ACTIONS(5080), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343782,17 +331357,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [147555] = 4, + [147565] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4131), 1, + STATE(3983), 1, sym_comment, - ACTIONS(4845), 11, + ACTIONS(4839), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -343804,20 +331377,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [147578] = 7, + [147588] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7436), 1, + ACTIONS(3232), 1, anon_sym_PIPE, - ACTIONS(7438), 1, - anon_sym_extends, - STATE(4132), 1, + STATE(3984), 1, sym_comment, - ACTIONS(5198), 8, + ACTIONS(3506), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343825,19 +331394,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [147607] = 6, + [147613] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5226), 1, + ACTIONS(4871), 1, anon_sym_PIPE, - ACTIONS(7424), 1, - anon_sym_AMP, - STATE(4133), 1, + STATE(3985), 1, sym_comment, - ACTIONS(5228), 9, + ACTIONS(4873), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343845,18 +331414,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147634] = 5, + [147638] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5030), 1, + ACTIONS(5086), 1, anon_sym_PIPE, - STATE(4134), 1, + STATE(3986), 1, sym_comment, - ACTIONS(5032), 10, + ACTIONS(5088), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343867,40 +331437,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147659] = 5, + [147663] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5233), 1, - anon_sym_PIPE, - STATE(4135), 1, + ACTIONS(7081), 1, + anon_sym_LT, + STATE(3987), 1, sym_comment, - ACTIONS(5235), 10, + STATE(4093), 1, + sym_type_arguments, + ACTIONS(4857), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [147684] = 7, + [147690] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7436), 1, + ACTIONS(5304), 1, anon_sym_PIPE, - ACTIONS(7438), 1, - anon_sym_extends, - STATE(4136), 1, + STATE(3988), 1, sym_comment, - ACTIONS(5036), 8, + ACTIONS(5306), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343908,17 +331475,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [147713] = 5, + [147715] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5237), 1, + ACTIONS(4972), 1, anon_sym_PIPE, - STATE(4137), 1, + STATE(3989), 1, sym_comment, - ACTIONS(5239), 10, + ACTIONS(4974), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343929,20 +331498,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147738] = 7, + [147740] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7436), 1, + ACTIONS(5294), 1, anon_sym_PIPE, - ACTIONS(7438), 1, - anon_sym_extends, - STATE(4138), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + STATE(3990), 1, sym_comment, - ACTIONS(5224), 8, + ACTIONS(5296), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343950,19 +331517,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [147767] = 6, + [147767] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5173), 1, + ACTIONS(4855), 1, anon_sym_PIPE, - ACTIONS(7440), 1, - anon_sym_extends, - STATE(4139), 1, + STATE(3991), 1, sym_comment, - ACTIONS(5175), 9, + ACTIONS(4857), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343971,17 +331537,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [147794] = 5, + [147792] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5243), 1, + ACTIONS(5188), 1, anon_sym_PIPE, - STATE(4140), 1, + STATE(3992), 1, sym_comment, - ACTIONS(5245), 10, + ACTIONS(5190), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343992,37 +331559,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147819] = 6, + [147817] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5167), 1, + ACTIONS(4841), 1, anon_sym_PIPE, - ACTIONS(7442), 1, - anon_sym_LBRACK, - STATE(4141), 1, + STATE(3993), 1, sym_comment, - ACTIONS(5169), 9, + ACTIONS(4843), 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, - [147846] = 5, + [147842] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5284), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7435), 1, anon_sym_PIPE, - STATE(4142), 1, + ACTIONS(7437), 1, + anon_sym_extends, + STATE(3994), 1, sym_comment, - ACTIONS(5286), 10, + ACTIONS(5047), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -344030,19 +331600,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [147871] = 5, + [147871] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5139), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7435), 1, anon_sym_PIPE, - STATE(4143), 1, + ACTIONS(7437), 1, + anon_sym_extends, + STATE(3995), 1, sym_comment, - ACTIONS(5141), 10, + ACTIONS(5051), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -344050,19 +331622,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [147896] = 5, + [147900] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3188), 1, + ACTIONS(4881), 1, anon_sym_PIPE, - STATE(4144), 1, + STATE(3996), 1, sym_comment, - ACTIONS(3432), 10, + ACTIONS(4883), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -344073,55 +331643,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147921] = 5, + [147925] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4933), 1, + ACTIONS(4881), 1, anon_sym_PIPE, - STATE(4145), 1, + ACTIONS(7443), 1, + anon_sym_LBRACK, + STATE(3997), 1, sym_comment, - ACTIONS(4935), 10, + ACTIONS(4883), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147946] = 4, + [147952] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4146), 1, + ACTIONS(3236), 1, + anon_sym_PIPE, + STATE(3998), 1, sym_comment, - ACTIONS(5114), 11, + ACTIONS(3570), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [147969] = 5, + anon_sym_PIPE_RBRACE, + [147977] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4859), 1, + ACTIONS(5332), 1, anon_sym_PIPE, - STATE(4147), 1, + STATE(3999), 1, sym_comment, - ACTIONS(4861), 10, + ACTIONS(5334), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -344132,33 +331704,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147994] = 4, + [148002] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4148), 1, + ACTIONS(5286), 1, + anon_sym_PIPE, + STATE(4000), 1, sym_comment, - ACTIONS(5129), 11, + ACTIONS(5288), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [148017] = 4, + anon_sym_PIPE_RBRACE, + [148027] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4149), 1, + STATE(4001), 1, sym_comment, - ACTIONS(5137), 11, + ACTIONS(5218), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -344170,76 +331743,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [148040] = 5, + [148050] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2235), 1, + anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5185), 1, - anon_sym_PIPE, - STATE(4150), 1, + STATE(4002), 1, sym_comment, - ACTIONS(5187), 10, + ACTIONS(5256), 10, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [148065] = 4, + [148075] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4151), 1, - sym_comment, - ACTIONS(6502), 11, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(7445), 1, + sym_identifier, + ACTIONS(7447), 1, + anon_sym_type, + ACTIONS(7449), 1, anon_sym_COMMA, + ACTIONS(7451), 1, 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, - [148088] = 6, + ACTIONS(7453), 1, + anon_sym_typeof, + STATE(4003), 1, + sym_comment, + STATE(5551), 1, + sym_string, + STATE(5923), 1, + sym_import_specifier, + STATE(6907), 1, + sym__import_identifier, + STATE(7043), 1, + sym__module_export_name, + [148118] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2239), 1, + anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5185), 1, - anon_sym_PIPE, - ACTIONS(7442), 1, - anon_sym_LBRACK, - STATE(4152), 1, + STATE(4004), 1, sym_comment, - ACTIONS(5187), 9, + ACTIONS(5256), 10, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [148115] = 5, + [148143] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5280), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7435), 1, anon_sym_PIPE, - STATE(4153), 1, + ACTIONS(7437), 1, + anon_sym_extends, + STATE(4005), 1, sym_comment, - ACTIONS(5282), 10, + ACTIONS(5268), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -344247,19 +331833,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [148140] = 5, + [148172] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4847), 1, + ACTIONS(4997), 1, anon_sym_PIPE, - STATE(4154), 1, + STATE(4006), 1, sym_comment, - ACTIONS(4849), 10, + ACTIONS(4999), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -344270,102 +331854,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148165] = 7, + [148197] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5185), 1, - anon_sym_PIPE, - ACTIONS(7442), 1, - anon_sym_LBRACK, - STATE(4155), 1, + STATE(4007), 1, sym_comment, - ACTIONS(5187), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(5183), 7, + ACTIONS(5204), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148194] = 5, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [148220] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3196), 1, - anon_sym_PIPE, - STATE(4156), 1, + STATE(4008), 1, sym_comment, - ACTIONS(3436), 10, + ACTIONS(4867), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [148219] = 6, + [148243] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7444), 1, - anon_sym_DOT, - ACTIONS(7446), 1, - anon_sym_QMARK_DOT, - STATE(4157), 1, + STATE(4009), 1, sym_comment, - ACTIONS(5249), 9, + ACTIONS(5178), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [148246] = 8, + [148266] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(4158), 1, + ACTIONS(5266), 1, + anon_sym_PIPE, + STATE(4010), 1, sym_comment, - STATE(4561), 1, - sym_formal_parameters, - STATE(7104), 1, - sym_type_parameters, - ACTIONS(4514), 7, + ACTIONS(5268), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [148277] = 5, + [148291] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3172), 1, + ACTIONS(3230), 1, anon_sym_PIPE, - STATE(4159), 1, + STATE(4011), 1, sym_comment, - ACTIONS(3440), 10, + ACTIONS(3508), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -344376,35 +331951,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148302] = 4, + [148316] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4160), 1, + ACTIONS(5001), 1, + anon_sym_PIPE, + STATE(4012), 1, sym_comment, - ACTIONS(4843), 11, + ACTIONS(5003), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [148325] = 5, + anon_sym_PIPE_RBRACE, + [148341] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3224), 1, + ACTIONS(5005), 1, anon_sym_PIPE, - STATE(4161), 1, + STATE(4013), 1, sym_comment, - ACTIONS(3442), 10, + ACTIONS(5007), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -344415,35 +331991,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148350] = 4, + [148366] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4162), 1, + ACTIONS(5025), 1, + anon_sym_PIPE, + ACTIONS(7433), 1, + anon_sym_AMP, + STATE(4014), 1, sym_comment, - ACTIONS(4869), 11, + ACTIONS(5027), 9, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [148373] = 5, + anon_sym_PIPE_RBRACE, + [148393] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5068), 1, + ACTIONS(5029), 1, anon_sym_PIPE, - STATE(4163), 1, + STATE(4015), 1, sym_comment, - ACTIONS(5070), 10, + ACTIONS(5031), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -344454,36 +332032,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148398] = 5, + [148418] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2083), 1, - anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4164), 1, + ACTIONS(5041), 1, + anon_sym_PIPE, + STATE(4016), 1, sym_comment, - ACTIONS(5086), 10, + ACTIONS(5043), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [148423] = 5, + anon_sym_PIPE_RBRACE, + [148443] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5076), 1, + ACTIONS(3228), 1, anon_sym_PIPE, - STATE(4165), 1, + STATE(4017), 1, sym_comment, - ACTIONS(5078), 10, + ACTIONS(3518), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -344494,59 +332072,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148448] = 4, + [148468] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4166), 1, + ACTIONS(5310), 1, + anon_sym_PIPE, + STATE(4018), 1, sym_comment, - ACTIONS(4514), 11, + ACTIONS(5312), 10, sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [148471] = 5, + [148493] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2197), 1, - anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4167), 1, + ACTIONS(4881), 1, + anon_sym_PIPE, + ACTIONS(7443), 1, + anon_sym_LBRACK, + STATE(4019), 1, sym_comment, - ACTIONS(5086), 10, + ACTIONS(4883), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(5084), 7, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_extends, - [148496] = 7, + anon_sym_PIPE_RBRACE, + [148522] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7436), 1, + ACTIONS(5114), 1, anon_sym_PIPE, - ACTIONS(7438), 1, + ACTIONS(7455), 1, anon_sym_extends, - STATE(4168), 1, + STATE(4020), 1, sym_comment, - ACTIONS(5082), 8, + ACTIONS(5116), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -344554,58 +332133,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_PIPE_RBRACE, - [148525] = 5, + [148549] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5080), 1, + ACTIONS(5120), 1, anon_sym_PIPE, - STATE(4169), 1, + ACTIONS(7443), 1, + anon_sym_LBRACK, + STATE(4021), 1, sym_comment, - ACTIONS(5082), 10, + ACTIONS(5122), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148550] = 6, + [148576] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7064), 1, - anon_sym_LT, - STATE(4170), 1, + ACTIONS(5066), 1, + anon_sym_PIPE, + STATE(4022), 1, sym_comment, - STATE(4384), 1, - sym_type_arguments, - ACTIONS(4837), 9, + ACTIONS(5068), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [148577] = 5, + anon_sym_PIPE_RBRACE, + [148601] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5131), 1, + ACTIONS(5150), 1, anon_sym_PIPE, - STATE(4171), 1, + STATE(4023), 1, sym_comment, - ACTIONS(5133), 10, + ACTIONS(5152), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -344616,16 +332196,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148602] = 5, + [148626] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5116), 1, + ACTIONS(5240), 1, anon_sym_PIPE, - STATE(4172), 1, + STATE(4024), 1, sym_comment, - ACTIONS(5118), 10, + ACTIONS(5242), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -344636,16 +332216,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148627] = 5, + [148651] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5094), 1, + ACTIONS(5198), 1, anon_sym_PIPE, - STATE(4173), 1, + STATE(4025), 1, sym_comment, - ACTIONS(5096), 10, + ACTIONS(5200), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -344656,16 +332236,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148652] = 5, + [148676] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5108), 1, + ACTIONS(5206), 1, anon_sym_PIPE, - STATE(4174), 1, + STATE(4026), 1, sym_comment, - ACTIONS(5110), 10, + ACTIONS(5208), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -344676,36 +332256,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148677] = 5, + [148701] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4873), 1, - anon_sym_PIPE, - STATE(4175), 1, + STATE(4027), 1, sym_comment, - ACTIONS(4875), 10, + ACTIONS(4869), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [148702] = 5, + [148724] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5102), 1, + ACTIONS(5220), 1, anon_sym_PIPE, - STATE(4176), 1, + STATE(4028), 1, sym_comment, - ACTIONS(5104), 10, + ACTIONS(5222), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -344716,348 +332295,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148727] = 7, + [148749] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - STATE(4177), 1, + ACTIONS(5236), 1, + anon_sym_PIPE, + STATE(4029), 1, sym_comment, - STATE(3080), 2, - sym_template_string, - sym_arguments, - ACTIONS(5133), 6, + ACTIONS(5238), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_GT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [148755] = 11, + anon_sym_PIPE_RBRACE, + [148774] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, - anon_sym_LBRACE, - ACTIONS(7022), 1, - anon_sym_SLASH_GT, - ACTIONS(7351), 1, - anon_sym_COLON, - ACTIONS(7353), 1, - anon_sym_GT, - STATE(4178), 1, - sym_comment, - STATE(4235), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(7457), 1, sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [148791] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7450), 1, - anon_sym_COLON, - STATE(4179), 1, - sym_comment, - STATE(4854), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7448), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(7461), 1, anon_sym_COMMA, + ACTIONS(7463), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148817] = 4, + STATE(4030), 1, + sym_comment, + STATE(5551), 1, + sym_string, + STATE(5829), 1, + sym_export_specifier, + STATE(5832), 1, + sym__module_export_name, + ACTIONS(7459), 2, + anon_sym_type, + anon_sym_typeof, + [148812] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4180), 1, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + STATE(4031), 1, sym_comment, - ACTIONS(2030), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + STATE(3118), 2, + sym_template_string, + sym_arguments, + ACTIONS(5200), 6, anon_sym_COMMA, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - anon_sym_is, - [148839] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7214), 1, - anon_sym_EQ, - STATE(4181), 1, - sym_comment, - ACTIONS(4783), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4514), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [148865] = 13, + [148840] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7452), 1, + ACTIONS(7465), 1, sym_identifier, - ACTIONS(7454), 1, + ACTIONS(7467), 1, anon_sym_LBRACE, - ACTIONS(7456), 1, + ACTIONS(7469), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7471), 1, anon_sym_implements, - STATE(3233), 1, + STATE(3167), 1, sym_class_body, - STATE(4182), 1, + STATE(4032), 1, sym_comment, - STATE(4639), 1, + STATE(4506), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(7141), 1, + STATE(6831), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [148905] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, + [148880] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7454), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7473), 1, + anon_sym_is, + STATE(4033), 1, + sym_comment, + ACTIONS(4857), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7456), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(7458), 1, - anon_sym_implements, - ACTIONS(7460), 1, - sym_identifier, - STATE(3248), 1, - sym_class_body, - STATE(4183), 1, - sym_comment, - STATE(4707), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(6535), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [148945] = 13, + [148904] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7454), 1, + ACTIONS(7467), 1, anon_sym_LBRACE, - ACTIONS(7456), 1, + ACTIONS(7469), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7471), 1, anon_sym_implements, - ACTIONS(7462), 1, + ACTIONS(7475), 1, sym_identifier, - STATE(3233), 1, + STATE(3112), 1, sym_class_body, - STATE(4184), 1, + STATE(4034), 1, sym_comment, - STATE(4639), 1, + STATE(4570), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(7141), 1, + STATE(6641), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [148985] = 10, + [148944] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7464), 1, - anon_sym_EQ, - ACTIONS(7468), 1, - anon_sym_BANG, - STATE(4185), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7435), 1, + anon_sym_PIPE, + ACTIONS(7437), 1, + anon_sym_extends, + STATE(4035), 1, sym_comment, - STATE(5145), 1, - sym_type_annotation, - STATE(5372), 1, - sym__initializer, - ACTIONS(7470), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7466), 3, + ACTIONS(7477), 7, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149019] = 13, + anon_sym_PIPE_RBRACE, + [148972] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7454), 1, + ACTIONS(7467), 1, anon_sym_LBRACE, - ACTIONS(7456), 1, + ACTIONS(7469), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7471), 1, anon_sym_implements, - ACTIONS(7472), 1, + ACTIONS(7479), 1, sym_identifier, - STATE(3233), 1, + STATE(3112), 1, sym_class_body, - STATE(4186), 1, + STATE(4036), 1, sym_comment, - STATE(4639), 1, + STATE(4570), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(7141), 1, + STATE(6641), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [149059] = 13, + [149012] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7454), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7456), 1, - anon_sym_extends, - ACTIONS(7458), 1, - anon_sym_implements, - ACTIONS(7474), 1, - sym_identifier, - STATE(3248), 1, - sym_class_body, - STATE(4187), 1, + ACTIONS(7340), 1, + anon_sym_COLON, + ACTIONS(7342), 1, + anon_sym_GT, + ACTIONS(7362), 1, + anon_sym_SLASH_GT, + STATE(4037), 1, sym_comment, - STATE(4707), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(6535), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [149099] = 13, + STATE(4262), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [149048] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7456), 1, + ACTIONS(7467), 1, + anon_sym_LBRACE, + ACTIONS(7469), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7471), 1, anon_sym_implements, - ACTIONS(7476), 1, + ACTIONS(7481), 1, sym_identifier, - ACTIONS(7478), 1, - anon_sym_LBRACE, - STATE(2662), 1, + STATE(3167), 1, sym_class_body, - STATE(4188), 1, + STATE(4038), 1, sym_comment, - STATE(4509), 1, + STATE(4506), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6813), 1, + STATE(6831), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [149139] = 10, + [149088] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7468), 1, - anon_sym_BANG, - STATE(4189), 1, + ACTIONS(4159), 1, + anon_sym_LPAREN, + ACTIONS(7485), 1, + anon_sym_DOT, + STATE(4039), 1, sym_comment, - STATE(5145), 1, - sym_type_annotation, - STATE(6437), 1, - sym__initializer, - ACTIONS(7470), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7466), 3, + STATE(4332), 1, + sym_arguments, + ACTIONS(7483), 7, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149173] = 13, + anon_sym_PIPE_RBRACE, + [149116] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7454), 1, - anon_sym_LBRACE, - ACTIONS(7456), 1, + ACTIONS(7469), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7471), 1, anon_sym_implements, - ACTIONS(7480), 1, + ACTIONS(7487), 1, sym_identifier, - STATE(3233), 1, + ACTIONS(7489), 1, + anon_sym_LBRACE, + STATE(3281), 1, sym_class_body, - STATE(4190), 1, + STATE(4040), 1, sym_comment, - STATE(4639), 1, + STATE(4499), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(7141), 1, + STATE(6706), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [149213] = 13, + [149156] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -345066,113 +332592,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(7426), 1, + ACTIONS(7445), 1, sym_identifier, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_type, - ACTIONS(7434), 1, + ACTIONS(7453), 1, anon_sym_typeof, - ACTIONS(7482), 1, + ACTIONS(7491), 1, anon_sym_RBRACE, - STATE(4191), 1, + STATE(4041), 1, sym_comment, - STATE(5681), 1, + STATE(5551), 1, sym_string, - STATE(6658), 1, - sym__import_identifier, - STATE(6911), 1, + STATE(6472), 1, sym_import_specifier, - STATE(7488), 1, + STATE(6907), 1, + sym__import_identifier, + STATE(7043), 1, sym__module_export_name, - [149253] = 5, + [149196] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7014), 1, + anon_sym_LBRACE, + ACTIONS(7049), 1, + anon_sym_SLASH_GT, + ACTIONS(7340), 1, + anon_sym_COLON, + ACTIONS(7342), 1, + anon_sym_GT, + STATE(4042), 1, + sym_comment, + STATE(4178), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [149232] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7345), 1, - anon_sym_is, - STATE(4192), 1, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7493), 1, + anon_sym_EQ, + ACTIONS(7497), 1, + anon_sym_BANG, + STATE(4043), 1, sym_comment, - ACTIONS(4861), 9, + STATE(4888), 1, + sym_type_annotation, + STATE(5311), 1, + sym__initializer, + ACTIONS(7499), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7495), 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, - [149277] = 7, + [149266] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4179), 1, - anon_sym_LPAREN, - ACTIONS(7486), 1, - anon_sym_DOT, - STATE(4193), 1, + ACTIONS(7350), 1, + anon_sym_is, + STATE(4044), 1, sym_comment, - STATE(4464), 1, - sym_arguments, - ACTIONS(7484), 7, + ACTIONS(4873), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149305] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7424), 1, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(7436), 1, anon_sym_PIPE, - ACTIONS(7438), 1, anon_sym_extends, - STATE(4194), 1, - sym_comment, - ACTIONS(7488), 7, - sym__automatic_semicolon, - anon_sym_EQ, + [149290] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7014), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149333] = 13, + ACTIONS(7025), 1, + anon_sym_SLASH_GT, + ACTIONS(7340), 1, + anon_sym_COLON, + ACTIONS(7342), 1, + anon_sym_GT, + STATE(4045), 1, + sym_comment, + STATE(4299), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [149326] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7456), 1, + ACTIONS(7467), 1, + anon_sym_LBRACE, + ACTIONS(7469), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7471), 1, anon_sym_implements, - ACTIONS(7478), 1, - anon_sym_LBRACE, - ACTIONS(7490), 1, + ACTIONS(7501), 1, sym_identifier, - STATE(3426), 1, + STATE(3112), 1, sym_class_body, - STATE(4195), 1, + STATE(4046), 1, sym_comment, - STATE(4653), 1, + STATE(4570), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6659), 1, + STATE(6641), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [149373] = 13, + [149366] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -345181,51 +332739,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(7426), 1, + ACTIONS(7445), 1, sym_identifier, - ACTIONS(7428), 1, + ACTIONS(7447), 1, anon_sym_type, - ACTIONS(7434), 1, + ACTIONS(7453), 1, anon_sym_typeof, - ACTIONS(7492), 1, + ACTIONS(7503), 1, anon_sym_RBRACE, - STATE(4196), 1, + STATE(4047), 1, sym_comment, - STATE(5681), 1, + STATE(5551), 1, sym_string, - STATE(6658), 1, - sym__import_identifier, - STATE(6911), 1, + STATE(6472), 1, sym_import_specifier, - STATE(7488), 1, + STATE(6907), 1, + sym__import_identifier, + STATE(7043), 1, sym__module_export_name, - [149413] = 5, + [149406] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7494), 1, - anon_sym_is, - STATE(4197), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7497), 1, + anon_sym_BANG, + STATE(4048), 1, sym_comment, - ACTIONS(4837), 9, + STATE(4888), 1, + sym_type_annotation, + STATE(5942), 1, + sym__initializer, + ACTIONS(7499), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7495), 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, + [149440] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(7469), 1, anon_sym_extends, - [149437] = 4, + ACTIONS(7471), 1, + anon_sym_implements, + ACTIONS(7489), 1, + anon_sym_LBRACE, + ACTIONS(7505), 1, + sym_identifier, + STATE(2531), 1, + sym_class_body, + STATE(4049), 1, + sym_comment, + STATE(4348), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6416), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [149480] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4198), 1, + STATE(4050), 1, sym_comment, - ACTIONS(4853), 10, + ACTIONS(2030), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -345236,744 +332826,669 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_extends, anon_sym_is, - [149459] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7011), 1, - anon_sym_LBRACE, - ACTIONS(7034), 1, - anon_sym_SLASH_GT, - ACTIONS(7351), 1, - anon_sym_COLON, - ACTIONS(7353), 1, - anon_sym_GT, - STATE(4199), 1, - sym_comment, - STATE(4403), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [149495] = 6, + [149502] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7450), 1, + ACTIONS(7509), 1, anon_sym_COLON, - STATE(4200), 1, + STATE(4051), 1, sym_comment, - STATE(4972), 3, + STATE(4704), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - ACTIONS(7496), 6, + ACTIONS(7507), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149521] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7011), 1, - anon_sym_LBRACE, - ACTIONS(7351), 1, - anon_sym_COLON, - ACTIONS(7353), 1, - anon_sym_GT, - ACTIONS(7361), 1, - anon_sym_SLASH_GT, - STATE(4201), 1, - sym_comment, - STATE(4314), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [149557] = 13, + [149528] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7454), 1, + ACTIONS(7467), 1, anon_sym_LBRACE, - ACTIONS(7456), 1, + ACTIONS(7469), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7471), 1, anon_sym_implements, - ACTIONS(7498), 1, + ACTIONS(7511), 1, sym_identifier, - STATE(3233), 1, + STATE(3167), 1, sym_class_body, - STATE(4202), 1, + STATE(4052), 1, sym_comment, - STATE(4639), 1, + STATE(4506), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(7141), 1, + STATE(6831), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [149597] = 13, + [149568] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7350), 1, + anon_sym_is, + STATE(4053), 1, + sym_comment, + ACTIONS(4843), 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, + [149592] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7456), 1, + ACTIONS(7467), 1, + anon_sym_LBRACE, + ACTIONS(7469), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7471), 1, anon_sym_implements, - ACTIONS(7478), 1, - anon_sym_LBRACE, - ACTIONS(7500), 1, + ACTIONS(7513), 1, sym_identifier, - STATE(2719), 1, + STATE(3112), 1, sym_class_body, - STATE(4203), 1, + STATE(4054), 1, sym_comment, - STATE(4593), 1, + STATE(4570), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6613), 1, + STATE(6641), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [149637] = 13, + [149632] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7509), 1, + anon_sym_COLON, + STATE(4055), 1, + sym_comment, + STATE(4751), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7515), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149658] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7454), 1, + ACTIONS(7467), 1, anon_sym_LBRACE, - ACTIONS(7456), 1, + ACTIONS(7469), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7471), 1, anon_sym_implements, - ACTIONS(7502), 1, + ACTIONS(7517), 1, sym_identifier, - STATE(3248), 1, + STATE(3167), 1, sym_class_body, - STATE(4204), 1, + STATE(4056), 1, sym_comment, - STATE(4707), 1, + STATE(4506), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6535), 1, + STATE(6831), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [149677] = 13, + [149698] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7014), 1, + anon_sym_LBRACE, + ACTIONS(7340), 1, + anon_sym_COLON, + ACTIONS(7342), 1, + anon_sym_GT, + ACTIONS(7344), 1, + anon_sym_SLASH_GT, + STATE(4057), 1, + sym_comment, + STATE(4188), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [149734] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(7445), 1, + sym_identifier, + ACTIONS(7519), 1, + anon_sym_type, + ACTIONS(7521), 1, + anon_sym_as, + STATE(4058), 1, + sym_comment, + STATE(5551), 1, + sym_string, + STATE(6778), 1, + sym__import_identifier, + STATE(7126), 1, + sym__module_export_name, + ACTIONS(7181), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [149772] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7454), 1, + ACTIONS(7467), 1, anon_sym_LBRACE, - ACTIONS(7456), 1, + ACTIONS(7469), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7471), 1, anon_sym_implements, - ACTIONS(7504), 1, + ACTIONS(7523), 1, sym_identifier, - STATE(3233), 1, + STATE(3167), 1, sym_class_body, - STATE(4205), 1, + STATE(4059), 1, sym_comment, - STATE(4639), 1, + STATE(4506), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(7141), 1, + STATE(6831), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [149717] = 13, + [149812] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7454), 1, + ACTIONS(7467), 1, anon_sym_LBRACE, - ACTIONS(7456), 1, + ACTIONS(7469), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7471), 1, anon_sym_implements, - ACTIONS(7506), 1, + ACTIONS(7525), 1, sym_identifier, - STATE(3233), 1, + STATE(3167), 1, sym_class_body, - STATE(4206), 1, + STATE(4060), 1, sym_comment, - STATE(4639), 1, + STATE(4506), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(7141), 1, + STATE(6831), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [149757] = 13, + [149852] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7454), 1, - anon_sym_LBRACE, - ACTIONS(7456), 1, + ACTIONS(7469), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7471), 1, anon_sym_implements, - ACTIONS(7508), 1, + ACTIONS(7489), 1, + anon_sym_LBRACE, + ACTIONS(7527), 1, sym_identifier, - STATE(3248), 1, + STATE(2389), 1, sym_class_body, - STATE(4207), 1, + STATE(4061), 1, sym_comment, - STATE(4707), 1, + STATE(4395), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6535), 1, + STATE(6673), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [149797] = 13, + [149892] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7454), 1, + ACTIONS(7467), 1, anon_sym_LBRACE, - ACTIONS(7456), 1, + ACTIONS(7469), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7471), 1, anon_sym_implements, - ACTIONS(7510), 1, + ACTIONS(7529), 1, sym_identifier, - STATE(3248), 1, + STATE(3167), 1, sym_class_body, - STATE(4208), 1, + STATE(4062), 1, sym_comment, - STATE(4707), 1, + STATE(4506), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6535), 1, + STATE(6831), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [149837] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7426), 1, - sym_identifier, - ACTIONS(7512), 1, - anon_sym_type, - ACTIONS(7514), 1, - anon_sym_as, - STATE(4209), 1, - sym_comment, - STATE(5681), 1, - sym_string, - STATE(6598), 1, - sym__import_identifier, - STATE(7531), 1, - sym__module_export_name, - ACTIONS(7172), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [149875] = 12, + [149932] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7516), 1, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(7467), 1, + anon_sym_LBRACE, + ACTIONS(7469), 1, + anon_sym_extends, + ACTIONS(7471), 1, + anon_sym_implements, + ACTIONS(7531), 1, sym_identifier, - ACTIONS(7520), 1, - anon_sym_COMMA, - ACTIONS(7522), 1, - anon_sym_RBRACE, - STATE(4210), 1, + STATE(3112), 1, + sym_class_body, + STATE(4063), 1, sym_comment, - STATE(5681), 1, - sym_string, - STATE(6151), 1, - sym_export_specifier, - STATE(6152), 1, - sym__module_export_name, - ACTIONS(7518), 2, - anon_sym_type, - anon_sym_typeof, - [149913] = 5, + STATE(4570), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6641), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [149972] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7345), 1, - anon_sym_is, - STATE(4211), 1, + ACTIONS(7219), 1, + anon_sym_EQ, + STATE(4064), 1, sym_comment, - ACTIONS(4849), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(4787), 2, anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4518), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [149937] = 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [149998] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7454), 1, + ACTIONS(7467), 1, anon_sym_LBRACE, - ACTIONS(7456), 1, + ACTIONS(7469), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7471), 1, anon_sym_implements, - ACTIONS(7524), 1, + ACTIONS(7533), 1, sym_identifier, - STATE(3248), 1, + STATE(3112), 1, sym_class_body, - STATE(4212), 1, + STATE(4065), 1, sym_comment, - STATE(4707), 1, + STATE(4570), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6535), 1, + STATE(6641), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [149977] = 13, + [150038] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7454), 1, + ACTIONS(7467), 1, anon_sym_LBRACE, - ACTIONS(7456), 1, + ACTIONS(7469), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7471), 1, anon_sym_implements, - ACTIONS(7526), 1, + ACTIONS(7535), 1, sym_identifier, - STATE(3248), 1, + STATE(3112), 1, sym_class_body, - STATE(4213), 1, + STATE(4066), 1, sym_comment, - STATE(4707), 1, + STATE(4570), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6535), 1, + STATE(6641), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [150017] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7011), 1, - anon_sym_LBRACE, - ACTIONS(7351), 1, - anon_sym_COLON, - ACTIONS(7353), 1, - anon_sym_GT, - ACTIONS(7355), 1, - anon_sym_SLASH_GT, - STATE(4214), 1, - sym_comment, - STATE(4232), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [150053] = 10, + [150078] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7528), 1, - anon_sym_BANG, - ACTIONS(7530), 1, - anon_sym_QMARK, - STATE(4215), 1, + STATE(4067), 1, sym_comment, - STATE(5052), 1, - sym_type_annotation, - STATE(5973), 1, - sym__initializer, - ACTIONS(7182), 3, + ACTIONS(4847), 10, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [150086] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7011), 1, - anon_sym_LBRACE, - ACTIONS(7532), 1, - anon_sym_GT, - ACTIONS(7534), 1, - anon_sym_SLASH_GT, - STATE(4216), 1, - sym_comment, - STATE(4268), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [150119] = 10, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_is, + [150100] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7536), 1, - anon_sym_BANG, - ACTIONS(7538), 1, - anon_sym_QMARK, - STATE(4217), 1, + STATE(4068), 1, sym_comment, - STATE(5374), 1, + STATE(5185), 1, sym_type_annotation, - STATE(6096), 1, + STATE(5951), 1, sym__initializer, - ACTIONS(7182), 3, + ACTIONS(7213), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7211), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150152] = 4, + [150131] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4218), 1, - sym_comment, - ACTIONS(4849), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(7537), 1, anon_sym_AMP, + ACTIONS(7539), 1, anon_sym_PIPE, + ACTIONS(7541), 1, anon_sym_extends, - [150173] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4219), 1, + STATE(4069), 1, sym_comment, - ACTIONS(4968), 9, + ACTIONS(5080), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [150194] = 4, + [150158] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4220), 1, + STATE(4070), 1, sym_comment, - ACTIONS(4964), 9, + ACTIONS(4330), 9, sym__automatic_semicolon, - sym__function_signature_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_PIPE, - anon_sym_extends, - [150215] = 10, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [150179] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7540), 1, - anon_sym_BANG, - ACTIONS(7542), 1, - anon_sym_QMARK, - STATE(4221), 1, + ACTIONS(7493), 1, + anon_sym_EQ, + STATE(4071), 1, sym_comment, - STATE(5412), 1, + STATE(4888), 1, sym_type_annotation, - STATE(6242), 1, + STATE(5239), 1, sym__initializer, - ACTIONS(7258), 3, + ACTIONS(7499), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7495), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150248] = 4, + [150210] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4222), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4072), 1, sym_comment, - ACTIONS(3436), 9, + STATE(4888), 1, + sym_type_annotation, + STATE(5944), 1, + sym__initializer, + ACTIONS(7499), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7495), 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, - [150269] = 12, + [150241] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7544), 1, + ACTIONS(7543), 1, anon_sym_LBRACE, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - STATE(3207), 1, + STATE(1173), 1, sym_class_body, - STATE(4223), 1, + STATE(4073), 1, sym_comment, - STATE(4617), 1, + STATE(4481), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6579), 1, + STATE(6521), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [150306] = 4, + [150278] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4224), 1, - sym_comment, - ACTIONS(4935), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(7219), 1, + anon_sym_EQ, + ACTIONS(7549), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [150327] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7550), 1, - anon_sym_LBRACE, - STATE(371), 1, - sym_class_body, - STATE(4225), 1, + ACTIONS(7551), 1, + anon_sym_RBRACE, + STATE(4074), 1, sym_comment, - STATE(4727), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(6565), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [150364] = 12, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(4518), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [150309] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7552), 1, + ACTIONS(7553), 1, anon_sym_LBRACE, - STATE(1186), 1, + STATE(3282), 1, sym_class_body, - STATE(4226), 1, + STATE(4075), 1, sym_comment, - STATE(4515), 1, + STATE(4468), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6686), 1, + STATE(6399), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [150401] = 9, + [150346] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4227), 1, + STATE(4076), 1, sym_comment, - STATE(5417), 1, + STATE(5321), 1, sym_type_annotation, - STATE(5831), 1, + STATE(6325), 1, sym__initializer, - ACTIONS(7291), 2, + ACTIONS(7247), 2, anon_sym_BANG, anon_sym_QMARK, - ACTIONS(7289), 3, + ACTIONS(7245), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150432] = 12, + [150377] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7554), 1, - anon_sym_LBRACE, - STATE(313), 1, - sym_class_body, - STATE(4228), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7555), 1, + anon_sym_BANG, + ACTIONS(7557), 1, + anon_sym_QMARK, + STATE(4077), 1, sym_comment, - STATE(4646), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(6575), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [150469] = 9, + STATE(5193), 1, + sym_type_annotation, + STATE(5809), 1, + sym__initializer, + ACTIONS(7273), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150410] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7214), 1, - anon_sym_EQ, - ACTIONS(7556), 1, - anon_sym_COMMA, - ACTIONS(7558), 1, - anon_sym_RBRACE, - STATE(4229), 1, + STATE(4078), 1, sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(4514), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [150500] = 4, + ACTIONS(5068), 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, + [150431] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4230), 1, + STATE(4079), 1, sym_comment, - ACTIONS(7560), 9, + ACTIONS(7559), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -345983,156 +333498,268 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [150521] = 12, + [150452] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7561), 1, + anon_sym_LBRACE, + ACTIONS(7563), 1, + anon_sym_DQUOTE, + ACTIONS(7565), 1, + anon_sym_SQUOTE, + ACTIONS(7567), 1, anon_sym_LT, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7562), 1, + STATE(3835), 1, + sym_jsx_opening_element, + STATE(4080), 1, + sym_comment, + STATE(5405), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [150483] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7561), 1, anon_sym_LBRACE, - STATE(1209), 1, - sym_class_body, - STATE(4231), 1, + ACTIONS(7563), 1, + anon_sym_DQUOTE, + ACTIONS(7565), 1, + anon_sym_SQUOTE, + ACTIONS(7567), 1, + anon_sym_LT, + STATE(3835), 1, + sym_jsx_opening_element, + STATE(4081), 1, sym_comment, - STATE(4597), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(6940), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [150558] = 10, + STATE(5403), 4, + sym_jsx_element, + sym_jsx_expression, + sym_jsx_self_closing_element, + sym__jsx_string, + [150514] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7572), 1, anon_sym_LBRACE, - ACTIONS(7564), 1, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7569), 2, + sym_jsx_identifier, + sym_identifier, + ACTIONS(7575), 2, anon_sym_GT, - ACTIONS(7566), 1, anon_sym_SLASH_GT, - STATE(4232), 1, + STATE(4082), 2, sym_comment, - STATE(4268), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [150543] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7014), 1, + anon_sym_LBRACE, + ACTIONS(7577), 1, + anon_sym_GT, + ACTIONS(7579), 1, + anon_sym_SLASH_GT, + STATE(4082), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4083), 1, + sym_comment, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [150576] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7014), 1, + anon_sym_LBRACE, + ACTIONS(7581), 1, + anon_sym_GT, + ACTIONS(7583), 1, + anon_sym_SLASH_GT, + STATE(4082), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4084), 1, + sym_comment, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [150591] = 9, + [150609] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4233), 1, + ACTIONS(7585), 1, + anon_sym_BANG, + ACTIONS(7587), 1, + anon_sym_QMARK, + STATE(4085), 1, sym_comment, - STATE(5467), 1, + STATE(5341), 1, sym_type_annotation, - STATE(6051), 1, + STATE(5754), 1, sym__initializer, - ACTIONS(7570), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7568), 3, + ACTIONS(7273), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150622] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, + [150642] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7516), 1, - sym_identifier, - ACTIONS(7572), 1, - anon_sym_RBRACE, - STATE(4234), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7589), 1, + anon_sym_LBRACE, + STATE(3111), 1, + sym_class_body, + STATE(4086), 1, sym_comment, - STATE(5681), 1, - sym_string, - STATE(6152), 1, - sym__module_export_name, - STATE(6931), 1, - sym_export_specifier, - ACTIONS(7518), 2, - anon_sym_type, - anon_sym_typeof, - [150657] = 10, + STATE(4341), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6423), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [150679] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7564), 1, + ACTIONS(7577), 1, anon_sym_GT, - ACTIONS(7574), 1, + ACTIONS(7591), 1, anon_sym_SLASH_GT, - STATE(4235), 1, - sym_comment, - STATE(4268), 1, + STATE(4082), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, + STATE(4087), 1, + sym_comment, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [150690] = 12, + [150712] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(6978), 1, anon_sym_LT, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7562), 1, + STATE(2808), 1, + sym_arguments, + STATE(3075), 1, + sym_template_string, + STATE(4031), 1, + sym_type_arguments, + STATE(4088), 1, + sym_comment, + STATE(6667), 1, + sym_optional_chain, + [150749] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7014), 1, anon_sym_LBRACE, - STATE(1471), 1, - sym_class_body, - STATE(4236), 1, + ACTIONS(7581), 1, + anon_sym_GT, + ACTIONS(7593), 1, + anon_sym_SLASH_GT, + STATE(4082), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4089), 1, sym_comment, - STATE(4729), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(6550), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [150727] = 4, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [150782] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(7457), 1, + sym_identifier, + ACTIONS(7595), 1, + anon_sym_RBRACE, + STATE(4090), 1, + sym_comment, + STATE(5551), 1, + sym_string, + STATE(5832), 1, + sym__module_export_name, + STATE(6537), 1, + sym_export_specifier, + ACTIONS(7459), 2, + anon_sym_type, + anon_sym_typeof, + [150817] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4237), 1, + STATE(4091), 1, sym_comment, - ACTIONS(3434), 9, + ACTIONS(2185), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -346142,73 +333769,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [150748] = 9, + [150838] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7214), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7556), 1, - anon_sym_COMMA, - ACTIONS(7576), 1, - anon_sym_RBRACE, - STATE(4238), 1, - sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(4514), 4, - anon_sym_LPAREN, + ACTIONS(7171), 1, anon_sym_COLON, - anon_sym_LT, + ACTIONS(7597), 1, + anon_sym_BANG, + ACTIONS(7599), 1, anon_sym_QMARK, - [150779] = 7, + STATE(4092), 1, + sym_comment, + STATE(5399), 1, + sym_type_annotation, + STATE(5733), 1, + sym__initializer, + ACTIONS(7273), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150871] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7578), 1, - anon_sym_AMP, - ACTIONS(7580), 1, - anon_sym_PIPE, - ACTIONS(7582), 1, - anon_sym_extends, - STATE(4239), 1, + STATE(4093), 1, sym_comment, - ACTIONS(5165), 6, + ACTIONS(5152), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [150806] = 4, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [150892] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4240), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7601), 1, + anon_sym_BANG, + ACTIONS(7603), 1, + anon_sym_QMARK, + STATE(4094), 1, sym_comment, - ACTIONS(5165), 9, + STATE(5384), 1, + sym_type_annotation, + STATE(5719), 1, + sym__initializer, + ACTIONS(7273), 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, - [150827] = 4, + [150925] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4241), 1, + STATE(4095), 1, sym_comment, - ACTIONS(5152), 9, + ACTIONS(5306), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -346218,51 +333849,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [150848] = 7, + [150946] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7578), 1, - anon_sym_AMP, - ACTIONS(7580), 1, - anon_sym_PIPE, - ACTIONS(7582), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7545), 1, anon_sym_extends, - STATE(4242), 1, - sym_comment, - ACTIONS(4978), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7605), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [150875] = 4, + STATE(1500), 1, + sym_class_body, + STATE(4096), 1, + sym_comment, + STATE(4422), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6878), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [150983] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4243), 1, + ACTIONS(7537), 1, + anon_sym_AMP, + STATE(4097), 1, sym_comment, - ACTIONS(5032), 9, + ACTIONS(5296), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [150896] = 4, + [151006] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4244), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7607), 1, + anon_sym_LBRACE, + STATE(1085), 1, + sym_class_body, + STATE(4098), 1, + sym_comment, + STATE(4475), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6461), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [151043] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4099), 1, sym_comment, - ACTIONS(5006), 9, + ACTIONS(5288), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -346272,14 +333934,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [150917] = 4, + [151064] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4245), 1, + STATE(4100), 1, sym_comment, - ACTIONS(5014), 9, + ACTIONS(4873), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -346289,166 +333951,224 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [150938] = 7, + [151085] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7589), 1, + anon_sym_LBRACE, + STATE(3025), 1, + sym_class_body, + STATE(4101), 1, + sym_comment, + STATE(4503), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6798), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [151122] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(7055), 1, + anon_sym_LT, + STATE(2508), 1, + sym_template_string, + STATE(2884), 1, + sym_arguments, + STATE(3893), 1, + sym_type_arguments, + STATE(4102), 1, + sym_comment, + STATE(6617), 1, + sym_optional_chain, + [151159] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7578), 1, + ACTIONS(7537), 1, anon_sym_AMP, - ACTIONS(7580), 1, + ACTIONS(7539), 1, anon_sym_PIPE, - ACTIONS(7582), 1, + ACTIONS(7541), 1, anon_sym_extends, - STATE(4246), 1, + STATE(4103), 1, sym_comment, - ACTIONS(5036), 6, + ACTIONS(5268), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [150965] = 12, + [151186] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7584), 1, + ACTIONS(7609), 1, anon_sym_LBRACE, - STATE(452), 1, + STATE(960), 1, sym_class_body, - STATE(4247), 1, + STATE(4104), 1, sym_comment, - STATE(4626), 1, + STATE(4472), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6928), 1, + STATE(6445), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [151002] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [151223] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, - anon_sym_LBRACE, - ACTIONS(7586), 1, - anon_sym_GT, - ACTIONS(7588), 1, - anon_sym_SLASH_GT, - STATE(4248), 1, - sym_comment, - STATE(4328), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [151035] = 10, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(4105), 1, + sym_comment, + ACTIONS(5268), 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, + [151244] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7611), 1, anon_sym_LBRACE, - ACTIONS(7532), 1, - anon_sym_GT, - ACTIONS(7590), 1, - anon_sym_SLASH_GT, - STATE(4249), 1, + STATE(327), 1, + sym_class_body, + STATE(4106), 1, sym_comment, - STATE(4268), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [151068] = 4, + STATE(4471), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6439), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [151281] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4250), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6978), 1, + anon_sym_LT, + STATE(2310), 1, + sym_arguments, + STATE(2508), 1, + sym_template_string, + STATE(3820), 1, + sym_type_arguments, + STATE(4107), 1, sym_comment, - ACTIONS(7592), 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, - [151089] = 8, + STATE(6617), 1, + sym_optional_chain, + [151318] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7594), 1, - anon_sym_EQ, - STATE(4251), 1, - sym_comment, - ACTIONS(7488), 5, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7607), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [151118] = 10, + STATE(996), 1, + sym_class_body, + STATE(4108), 1, + sym_comment, + STATE(4470), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6425), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [151355] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7596), 1, + ACTIONS(7613), 1, anon_sym_BANG, - ACTIONS(7598), 1, + ACTIONS(7615), 1, anon_sym_QMARK, - STATE(4252), 1, + STATE(4109), 1, sym_comment, - STATE(5425), 1, + STATE(5222), 1, sym_type_annotation, - STATE(6157), 1, + STATE(5701), 1, sym__initializer, - ACTIONS(7258), 3, + ACTIONS(7273), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151151] = 4, + [151388] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4253), 1, + STATE(4110), 1, sym_comment, - ACTIONS(3440), 9, + ACTIONS(2253), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -346458,418 +334178,374 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [151172] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [151409] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7609), 1, anon_sym_LBRACE, - ACTIONS(7600), 1, - anon_sym_GT, - ACTIONS(7602), 1, - anon_sym_SLASH_GT, - STATE(4254), 1, + STATE(953), 1, + sym_class_body, + STATE(4111), 1, sym_comment, - STATE(4324), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [151205] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(4469), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6412), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [151446] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, - anon_sym_LBRACE, - ACTIONS(7604), 1, - anon_sym_GT, - ACTIONS(7606), 1, - anon_sym_SLASH_GT, - STATE(4255), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4112), 1, sym_comment, - STATE(4268), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [151238] = 8, + ACTIONS(5312), 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, + [151467] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, - anon_sym_LPAREN, - ACTIONS(7608), 1, - anon_sym_EQ, - ACTIONS(7610), 1, - anon_sym_DOT, - STATE(4256), 1, + STATE(4113), 1, sym_comment, - STATE(4458), 1, - sym_arguments, - ACTIONS(7484), 5, + ACTIONS(5242), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [151267] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151488] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7611), 1, anon_sym_LBRACE, - ACTIONS(7612), 1, - anon_sym_GT, - ACTIONS(7614), 1, - anon_sym_SLASH_GT, - STATE(4257), 1, + STATE(303), 1, + sym_class_body, + STATE(4114), 1, sym_comment, - STATE(4268), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [151300] = 12, + STATE(4467), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6392), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [151525] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(6973), 1, - anon_sym_LT, - STATE(2880), 1, - sym_arguments, - STATE(3121), 1, - sym_template_string, - STATE(4177), 1, - sym_type_arguments, - STATE(4258), 1, + STATE(4115), 1, sym_comment, - STATE(6998), 1, - sym_optional_chain, - [151337] = 11, + ACTIONS(5280), 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, + [151546] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6973), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4259), 1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7617), 1, + anon_sym_LBRACE, + STATE(4116), 1, sym_comment, - STATE(5636), 1, - sym_type_arguments, - STATE(6668), 1, - sym_optional_chain, - STATE(2716), 2, - sym_template_string, - sym_arguments, - [151372] = 9, + STATE(4351), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6219), 1, + sym_class_body, + STATE(6448), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [151583] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4260), 1, + ACTIONS(7619), 1, + anon_sym_BANG, + ACTIONS(7621), 1, + anon_sym_QMARK, + STATE(4117), 1, sym_comment, - STATE(5317), 1, + STATE(4879), 1, sym_type_annotation, - STATE(5992), 1, + STATE(5928), 1, sym__initializer, - ACTIONS(7192), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7190), 3, + ACTIONS(7225), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151403] = 4, + [151616] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4261), 1, + STATE(4118), 1, + sym_comment, + ACTIONS(5238), 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, + [151637] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4119), 1, sym_comment, - ACTIONS(7616), 9, + ACTIONS(7623), 9, + sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [151424] = 4, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [151658] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7625), 1, + anon_sym_LBRACE, + STATE(4120), 1, + sym_comment, + STATE(4363), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6595), 1, + sym_class_heritage, + STATE(6880), 1, + sym_class_body, + STATE(7265), 1, + sym_implements_clause, + [151695] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4262), 1, + STATE(4121), 1, sym_comment, - ACTIONS(2079), 9, + ACTIONS(7627), 9, sym__automatic_semicolon, - sym__function_signature_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_PIPE, - anon_sym_extends, - [151445] = 10, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [151716] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7618), 1, - anon_sym_BANG, - ACTIONS(7620), 1, - anon_sym_QMARK, - STATE(4263), 1, + STATE(4122), 1, sym_comment, - STATE(5002), 1, + STATE(5112), 1, sym_type_annotation, - STATE(6304), 1, + STATE(5849), 1, sym__initializer, - ACTIONS(7156), 3, + ACTIONS(7185), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7183), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151478] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7011), 1, - anon_sym_LBRACE, - ACTIONS(7622), 1, - anon_sym_GT, - ACTIONS(7624), 1, - anon_sym_SLASH_GT, - STATE(4264), 1, - sym_comment, - STATE(4268), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [151511] = 12, + [151747] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7626), 1, + ACTIONS(7589), 1, anon_sym_LBRACE, - STATE(379), 1, + STATE(3045), 1, sym_class_body, - STATE(4265), 1, + STATE(4123), 1, sym_comment, - STATE(4615), 1, + STATE(4477), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6916), 1, + STATE(6488), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [151548] = 6, + [151784] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7628), 1, - anon_sym_COLON, - STATE(4266), 1, + STATE(4124), 1, sym_comment, - STATE(5385), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7496), 5, + ACTIONS(5222), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [151573] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7546), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7630), 1, - anon_sym_LBRACE, - STATE(1249), 1, - sym_class_body, - STATE(4267), 1, - sym_comment, - STATE(4686), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(6493), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [151610] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7635), 1, - anon_sym_LBRACE, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7632), 2, - sym_jsx_identifier, - sym_identifier, - ACTIONS(7638), 2, - anon_sym_GT, - anon_sym_SLASH_GT, - STATE(4268), 2, - sym_comment, - aux_sym__jsx_start_opening_element_repeat1, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [151639] = 10, + [151805] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7640), 1, + ACTIONS(7629), 1, anon_sym_BANG, - ACTIONS(7642), 1, + ACTIONS(7631), 1, anon_sym_QMARK, - STATE(4269), 1, + STATE(4125), 1, sym_comment, - STATE(5268), 1, + STATE(5008), 1, sym_type_annotation, - STATE(5932), 1, + STATE(5813), 1, sym__initializer, - ACTIONS(7258), 3, + ACTIONS(7201), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [151672] = 12, + [151838] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7644), 1, - anon_sym_LBRACE, - STATE(922), 1, - sym_class_body, - STATE(4270), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7633), 1, + anon_sym_BANG, + ACTIONS(7635), 1, + anon_sym_QMARK, + STATE(4126), 1, sym_comment, - STATE(4564), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(6595), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [151709] = 12, + STATE(5056), 1, + sym_type_annotation, + STATE(5780), 1, + sym__initializer, + ACTIONS(7201), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [151871] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6978), 1, anon_sym_LT, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7646), 1, - anon_sym_LBRACE, - STATE(1491), 1, - sym_class_body, - STATE(4271), 1, + ACTIONS(7637), 1, + anon_sym_DOT, + STATE(2508), 1, + sym_template_string, + STATE(2640), 1, + sym_arguments, + STATE(4127), 1, sym_comment, - STATE(4744), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(6877), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [151746] = 4, + STATE(5544), 1, + sym_type_arguments, + STATE(6617), 1, + sym_optional_chain, + [151908] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4272), 1, + STATE(4128), 1, sym_comment, - ACTIONS(5070), 9, + ACTIONS(3506), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -346879,74 +334555,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [151767] = 5, + [151929] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7578), 1, - anon_sym_AMP, - STATE(4273), 1, + STATE(4129), 1, sym_comment, - ACTIONS(5074), 8, + ACTIONS(5208), 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, - [151790] = 4, + [151950] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4274), 1, - sym_comment, - ACTIONS(5078), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7639), 1, anon_sym_LBRACE, + STATE(1265), 1, + sym_class_body, + STATE(4130), 1, + sym_comment, + STATE(4461), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6378), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [151987] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4131), 1, + sym_comment, + ACTIONS(7641), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [151811] = 12, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [152008] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(4813), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(6973), 1, + ACTIONS(6978), 1, anon_sym_LT, - STATE(2716), 1, + STATE(2508), 1, sym_template_string, - STATE(2812), 1, + STATE(3301), 1, sym_arguments, - STATE(3970), 1, + STATE(3820), 1, sym_type_arguments, - STATE(4275), 1, + STATE(4132), 1, sym_comment, - STATE(6668), 1, + STATE(6617), 1, sym_optional_chain, - [151848] = 4, + [152045] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4276), 1, + STATE(4133), 1, sym_comment, - ACTIONS(5318), 9, + ACTIONS(5200), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -346956,14 +334656,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [151869] = 4, + [152066] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4277), 1, + STATE(4134), 1, + sym_comment, + ACTIONS(7643), 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, + [152087] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4135), 1, sym_comment, - ACTIONS(5322), 9, + ACTIONS(3508), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -346973,34 +334690,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [151890] = 7, + [152108] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7578), 1, - anon_sym_AMP, - ACTIONS(7580), 1, - anon_sym_PIPE, - ACTIONS(7582), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7545), 1, anon_sym_extends, - STATE(4278), 1, - sym_comment, - ACTIONS(5082), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7645), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [151917] = 4, + STATE(1152), 1, + sym_class_body, + STATE(4136), 1, + sym_comment, + STATE(4459), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6432), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [152145] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(7457), 1, + sym_identifier, + ACTIONS(7647), 1, + anon_sym_RBRACE, + STATE(4137), 1, + sym_comment, + STATE(5551), 1, + sym_string, + STATE(5832), 1, + sym__module_export_name, + STATE(6537), 1, + sym_export_specifier, + ACTIONS(7459), 2, + anon_sym_type, + anon_sym_typeof, + [152180] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4279), 1, + STATE(4138), 1, sym_comment, - ACTIONS(5082), 9, + ACTIONS(3518), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -347010,294 +334756,383 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [151938] = 4, + [152201] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4280), 1, - sym_comment, - ACTIONS(5326), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7649), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + STATE(454), 1, + sym_class_body, + STATE(4139), 1, + sym_comment, + STATE(4482), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6550), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [152238] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7069), 1, anon_sym_AMP, + ACTIONS(7071), 1, anon_sym_PIPE, + ACTIONS(7073), 1, anon_sym_extends, - [151959] = 12, + ACTIONS(7651), 1, + anon_sym_EQ, + STATE(4140), 1, + sym_comment, + ACTIONS(7477), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [152267] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7589), 1, + anon_sym_LBRACE, + STATE(2922), 1, + sym_class_body, + STATE(4141), 1, + sym_comment, + STATE(4458), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6447), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [152304] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(6973), 1, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, anon_sym_LT, - STATE(2716), 1, + ACTIONS(7653), 1, + anon_sym_DOT, + STATE(2508), 1, sym_template_string, - STATE(3429), 1, + STATE(2924), 1, sym_arguments, - STATE(3970), 1, - sym_type_arguments, - STATE(4281), 1, + STATE(4142), 1, sym_comment, - STATE(6668), 1, + STATE(5544), 1, + sym_type_arguments, + STATE(6617), 1, sym_optional_chain, - [151996] = 10, + [152341] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7648), 1, + ACTIONS(7655), 1, anon_sym_BANG, - ACTIONS(7650), 1, + ACTIONS(7657), 1, anon_sym_QMARK, - STATE(4282), 1, + STATE(4143), 1, sym_comment, - STATE(4993), 1, + STATE(4867), 1, sym_type_annotation, - STATE(6273), 1, + STATE(5916), 1, sym__initializer, - ACTIONS(7156), 3, + ACTIONS(7225), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152029] = 4, + [152374] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4283), 1, + STATE(4144), 1, sym_comment, - ACTIONS(7652), 9, + ACTIONS(7659), 9, + sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [152050] = 12, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [152395] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7584), 1, + ACTIONS(7639), 1, anon_sym_LBRACE, - STATE(444), 1, + STATE(1236), 1, sym_class_body, - STATE(4284), 1, + STATE(4145), 1, sym_comment, - STATE(4699), 1, + STATE(4456), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(7086), 1, + STATE(6468), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [152087] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [152432] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, - anon_sym_LBRACE, - ACTIONS(7353), 1, - anon_sym_GT, - ACTIONS(7361), 1, - anon_sym_SLASH_GT, - STATE(4285), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4146), 1, sym_comment, - STATE(4323), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [152120] = 10, + ACTIONS(7661), 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, + [152453] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7654), 1, + ACTIONS(7663), 1, anon_sym_BANG, - ACTIONS(7656), 1, + ACTIONS(7665), 1, anon_sym_QMARK, - STATE(4286), 1, + STATE(4147), 1, sym_comment, - STATE(5322), 1, + STATE(5133), 1, sym_type_annotation, - STATE(5918), 1, + STATE(5683), 1, sym__initializer, - ACTIONS(7182), 3, + ACTIONS(7273), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152153] = 4, + [152486] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4287), 1, - sym_comment, - ACTIONS(5096), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7545), 1, anon_sym_extends, - [152174] = 4, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7645), 1, + anon_sym_LBRACE, + STATE(961), 1, + sym_class_body, + STATE(4148), 1, + sym_comment, + STATE(4452), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6512), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [152523] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4288), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7667), 1, + anon_sym_BANG, + ACTIONS(7669), 1, + anon_sym_QMARK, + STATE(4149), 1, sym_comment, - ACTIONS(5104), 9, + STATE(5163), 1, + sym_type_annotation, + STATE(5691), 1, + sym__initializer, + ACTIONS(7273), 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, - [152195] = 4, + [152556] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4289), 1, + ACTIONS(4145), 1, + anon_sym_LPAREN, + ACTIONS(7671), 1, + anon_sym_EQ, + ACTIONS(7673), 1, + anon_sym_DOT, + STATE(4150), 1, sym_comment, - ACTIONS(4875), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(4337), 1, + sym_arguments, + ACTIONS(7483), 5, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [152585] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7545), 1, anon_sym_extends, - [152216] = 4, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7589), 1, + anon_sym_LBRACE, + STATE(3139), 1, + sym_class_body, + STATE(4151), 1, + sym_comment, + STATE(4448), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6579), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [152622] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4290), 1, + ACTIONS(7675), 1, + anon_sym_EQ, + STATE(4152), 1, sym_comment, - ACTIONS(5110), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4330), 8, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [152237] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [152645] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7677), 1, + anon_sym_EQ, + STATE(4153), 1, + sym_comment, + ACTIONS(4328), 8, anon_sym_LBRACE, - ACTIONS(7658), 1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_GT, - ACTIONS(7660), 1, - anon_sym_SLASH_GT, - STATE(4268), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4291), 1, - sym_comment, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [152270] = 4, + anon_sym_DOT, + anon_sym_EQ_GT, + [152668] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4292), 1, + ACTIONS(7679), 1, + anon_sym_EQ, + STATE(4154), 1, sym_comment, - ACTIONS(5118), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7623), 8, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [152291] = 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [152691] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4293), 1, + ACTIONS(7681), 1, + anon_sym_EQ, + STATE(4155), 1, sym_comment, - ACTIONS(5133), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7627), 8, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [152312] = 5, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [152714] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7662), 1, + ACTIONS(7683), 1, anon_sym_EQ, - STATE(4294), 1, + STATE(4156), 1, sym_comment, - ACTIONS(4339), 8, + ACTIONS(7659), 8, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -347306,1026 +335141,816 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, - [152335] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [152737] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, - anon_sym_LBRACE, - ACTIONS(7353), 1, - anon_sym_GT, - ACTIONS(7355), 1, - anon_sym_SLASH_GT, - STATE(4291), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4295), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7537), 1, + anon_sym_AMP, + ACTIONS(7539), 1, + anon_sym_PIPE, + ACTIONS(7541), 1, + anon_sym_extends, + STATE(4157), 1, sym_comment, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [152368] = 10, + ACTIONS(5047), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [152764] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7664), 1, + ACTIONS(7685), 1, anon_sym_BANG, - ACTIONS(7666), 1, + ACTIONS(7687), 1, anon_sym_QMARK, - STATE(4296), 1, + STATE(4158), 1, sym_comment, - STATE(5226), 1, + STATE(5218), 1, sym_type_annotation, - STATE(5909), 1, + STATE(5711), 1, sym__initializer, - ACTIONS(7182), 3, + ACTIONS(7273), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152401] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [152797] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7426), 1, - sym_identifier, - ACTIONS(7428), 1, - anon_sym_type, - ACTIONS(7434), 1, - anon_sym_typeof, - STATE(4297), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7689), 1, + anon_sym_BANG, + ACTIONS(7691), 1, + anon_sym_QMARK, + STATE(4159), 1, sym_comment, - STATE(5681), 1, - sym_string, - STATE(6658), 1, - sym__import_identifier, - STATE(6911), 1, - sym_import_specifier, - STATE(7488), 1, - sym__module_export_name, - [152438] = 10, + STATE(5236), 1, + sym_type_annotation, + STATE(5717), 1, + sym__initializer, + ACTIONS(7273), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152830] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7668), 1, + ACTIONS(7693), 1, anon_sym_BANG, - ACTIONS(7670), 1, + ACTIONS(7695), 1, anon_sym_QMARK, - STATE(4298), 1, + STATE(4160), 1, sym_comment, - STATE(5066), 1, + STATE(5376), 1, sym_type_annotation, - STATE(6266), 1, + STATE(5731), 1, sym__initializer, - ACTIONS(7156), 3, + ACTIONS(7273), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152471] = 4, + [152863] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4299), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7697), 1, + anon_sym_BANG, + ACTIONS(7699), 1, + anon_sym_QMARK, + STATE(4161), 1, sym_comment, - ACTIONS(2223), 9, + STATE(5342), 1, + sym_type_annotation, + STATE(5765), 1, + sym__initializer, + ACTIONS(7273), 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, - [152492] = 12, + [152896] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7546), 1, + ACTIONS(7537), 1, + anon_sym_AMP, + ACTIONS(7539), 1, + anon_sym_PIPE, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7672), 1, - anon_sym_LBRACE, - STATE(1608), 1, - sym_class_body, - STATE(4300), 1, + STATE(4162), 1, sym_comment, - STATE(4497), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(6826), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [152529] = 12, + ACTIONS(5051), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [152923] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(6978), 1, anon_sym_LT, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7674), 1, - anon_sym_LBRACE, - STATE(3414), 1, - sym_class_body, - STATE(4301), 1, + ACTIONS(7701), 1, + anon_sym_DOT, + STATE(3012), 1, + sym_arguments, + STATE(3075), 1, + sym_template_string, + STATE(4163), 1, sym_comment, - STATE(4585), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(7002), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [152566] = 10, + STATE(5479), 1, + sym_type_arguments, + STATE(6667), 1, + sym_optional_chain, + [152960] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7676), 1, + ACTIONS(7703), 1, anon_sym_BANG, - ACTIONS(7678), 1, + ACTIONS(7705), 1, anon_sym_QMARK, - STATE(4302), 1, + STATE(4164), 1, sym_comment, - STATE(5348), 1, + STATE(4860), 1, sym_type_annotation, - STATE(6462), 1, + STATE(5914), 1, sym__initializer, - ACTIONS(7258), 3, + ACTIONS(7225), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152599] = 12, + [152993] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7680), 1, + ACTIONS(7605), 1, anon_sym_LBRACE, - STATE(1044), 1, + STATE(1456), 1, sym_class_body, - STATE(4303), 1, - sym_comment, - STATE(4555), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(6608), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [152636] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7682), 1, - anon_sym_LBRACE, - STATE(4304), 1, + STATE(4165), 1, sym_comment, - STATE(4565), 1, + STATE(4476), 1, sym_type_parameters, - STATE(5069), 1, - sym_class_body, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6867), 1, + STATE(6610), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [152673] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7684), 1, - anon_sym_LBRACE, - ACTIONS(7686), 1, - anon_sym_DQUOTE, - ACTIONS(7688), 1, - anon_sym_SQUOTE, - ACTIONS(7690), 1, - anon_sym_LT, - STATE(4010), 1, - sym_jsx_opening_element, - STATE(4305), 1, - sym_comment, - STATE(5048), 4, - sym_jsx_element, - sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [152704] = 11, + [153030] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7516), 1, - sym_identifier, - ACTIONS(7692), 1, - anon_sym_RBRACE, - STATE(4306), 1, - sym_comment, - STATE(5681), 1, - sym_string, - STATE(6152), 1, - sym__module_export_name, - STATE(6931), 1, - sym_export_specifier, - ACTIONS(7518), 2, - anon_sym_type, - anon_sym_typeof, - [152739] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7684), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7686), 1, - anon_sym_DQUOTE, - ACTIONS(7688), 1, - anon_sym_SQUOTE, - ACTIONS(7690), 1, - anon_sym_LT, - STATE(4010), 1, - sym_jsx_opening_element, - STATE(4307), 1, + ACTIONS(7707), 1, + anon_sym_GT, + ACTIONS(7709), 1, + anon_sym_SLASH_GT, + STATE(4082), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4166), 1, sym_comment, - STATE(5049), 4, - sym_jsx_element, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - sym__jsx_string, - [152770] = 12, + sym_jsx_attribute, + [153063] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7694), 1, + ACTIONS(7617), 1, anon_sym_LBRACE, - STATE(1190), 1, - sym_class_body, - STATE(4308), 1, + STATE(4167), 1, sym_comment, - STATE(4666), 1, + STATE(4434), 1, sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(6543), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [152807] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7544), 1, - anon_sym_LBRACE, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - STATE(3268), 1, + STATE(5324), 1, sym_class_body, - STATE(4309), 1, - sym_comment, - STATE(4550), 1, - sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6966), 1, + STATE(6867), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [152844] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [153100] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7696), 1, - anon_sym_LBRACE, - STATE(4310), 1, - sym_comment, - STATE(4661), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(6806), 1, - sym_class_body, - STATE(7021), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [152881] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7544), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - STATE(3153), 1, - sym_class_body, - STATE(4311), 1, + ACTIONS(7711), 1, + anon_sym_GT, + ACTIONS(7713), 1, + anon_sym_SLASH_GT, + STATE(4082), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4168), 1, sym_comment, - STATE(4656), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(6552), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [152918] = 12, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153133] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, + ACTIONS(4899), 1, anon_sym_QMARK_DOT, - ACTIONS(5369), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(6973), 1, - anon_sym_LT, - ACTIONS(7698), 1, + ACTIONS(5400), 1, anon_sym_DOT, - STATE(2716), 1, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(6978), 1, + anon_sym_LT, + STATE(3075), 1, sym_template_string, - STATE(3184), 1, + STATE(3261), 1, sym_arguments, - STATE(4312), 1, - sym_comment, - STATE(5636), 1, + STATE(4031), 1, sym_type_arguments, - STATE(6668), 1, + STATE(4169), 1, + sym_comment, + STATE(6667), 1, sym_optional_chain, - [152955] = 10, + [153170] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7700), 1, + ACTIONS(7715), 1, anon_sym_BANG, - ACTIONS(7702), 1, + ACTIONS(7717), 1, anon_sym_QMARK, - STATE(4313), 1, + STATE(4170), 1, sym_comment, - STATE(5140), 1, + STATE(4912), 1, sym_type_annotation, - STATE(6430), 1, + STATE(5984), 1, sym__initializer, - ACTIONS(7156), 3, + ACTIONS(7225), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [152988] = 10, + [153203] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7564), 1, + ACTIONS(7719), 1, anon_sym_GT, - ACTIONS(7704), 1, + ACTIONS(7721), 1, anon_sym_SLASH_GT, - STATE(4268), 1, + STATE(4084), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4314), 1, + STATE(4171), 1, sym_comment, - STATE(4982), 1, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [153021] = 10, + [153236] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7586), 1, + ACTIONS(7723), 1, anon_sym_GT, - ACTIONS(7706), 1, + ACTIONS(7725), 1, anon_sym_SLASH_GT, - STATE(4315), 1, + STATE(4082), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4172), 1, sym_comment, - STATE(4373), 1, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153269] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7014), 1, + anon_sym_LBRACE, + ACTIONS(7581), 1, + anon_sym_GT, + ACTIONS(7727), 1, + anon_sym_SLASH_GT, + STATE(4082), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, + STATE(4173), 1, + sym_comment, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [153054] = 10, + [153302] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7532), 1, + ACTIONS(7577), 1, anon_sym_GT, - ACTIONS(7708), 1, + ACTIONS(7729), 1, anon_sym_SLASH_GT, - STATE(4268), 1, + STATE(4082), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4316), 1, + STATE(4174), 1, sym_comment, - STATE(4982), 1, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [153087] = 12, + [153335] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7544), 1, - anon_sym_LBRACE, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - STATE(3188), 1, - sym_class_body, - STATE(4317), 1, + ACTIONS(7617), 1, + anon_sym_LBRACE, + STATE(4175), 1, sym_comment, - STATE(4522), 1, + STATE(4421), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5098), 1, + sym_class_body, + STATE(5785), 1, sym_extends_clause, - STATE(6719), 1, + STATE(6888), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [153124] = 12, + [153372] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7014), 1, + anon_sym_LBRACE, + ACTIONS(7731), 1, + anon_sym_GT, + ACTIONS(7733), 1, + anon_sym_SLASH_GT, + STATE(4083), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4176), 1, + sym_comment, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153405] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6973), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(2514), 1, - sym_arguments, - STATE(2716), 1, - sym_template_string, - STATE(3970), 1, - sym_type_arguments, - STATE(4318), 1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7735), 1, + anon_sym_LBRACE, + STATE(391), 1, + sym_class_body, + STATE(4177), 1, sym_comment, - STATE(6668), 1, - sym_optional_chain, - [153161] = 10, + STATE(4420), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6900), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [153442] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7600), 1, + ACTIONS(7737), 1, anon_sym_GT, - ACTIONS(7710), 1, + ACTIONS(7739), 1, anon_sym_SLASH_GT, - STATE(4319), 1, + STATE(4082), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4178), 1, + sym_comment, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153475] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(6978), 1, + anon_sym_LT, + ACTIONS(7741), 1, + anon_sym_DOT, + STATE(3075), 1, + sym_template_string, + STATE(3286), 1, + sym_arguments, + STATE(4179), 1, + sym_comment, + STATE(5479), 1, + sym_type_arguments, + STATE(6667), 1, + sym_optional_chain, + [153512] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4180), 1, sym_comment, - STATE(4374), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [153194] = 12, + ACTIONS(5284), 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, + [153533] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7630), 1, + ACTIONS(7617), 1, anon_sym_LBRACE, - STATE(1208), 1, - sym_class_body, - STATE(4320), 1, + STATE(4181), 1, sym_comment, - STATE(4629), 1, + STATE(4418), 1, sym_type_parameters, - STATE(6029), 1, + STATE(4983), 1, + sym_class_body, + STATE(5785), 1, sym_extends_clause, - STATE(6561), 1, + STATE(6917), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [153231] = 10, + [153570] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7604), 1, + ACTIONS(7707), 1, anon_sym_GT, - ACTIONS(7712), 1, + ACTIONS(7743), 1, anon_sym_SLASH_GT, - STATE(4268), 1, + STATE(4082), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4321), 1, + STATE(4182), 1, sym_comment, - STATE(4982), 1, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [153264] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7714), 1, - anon_sym_BANG, - ACTIONS(7716), 1, - anon_sym_QMARK, - STATE(4322), 1, - sym_comment, - STATE(5094), 1, - sym_type_annotation, - STATE(6383), 1, - sym__initializer, - ACTIONS(7156), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153297] = 10, + [153603] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7658), 1, + ACTIONS(7711), 1, anon_sym_GT, - ACTIONS(7718), 1, + ACTIONS(7745), 1, anon_sym_SLASH_GT, - STATE(4268), 1, + STATE(4082), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4323), 1, + STATE(4183), 1, sym_comment, - STATE(4982), 1, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [153330] = 10, + [153636] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7612), 1, + ACTIONS(7719), 1, anon_sym_GT, - ACTIONS(7720), 1, + ACTIONS(7747), 1, anon_sym_SLASH_GT, - STATE(4268), 1, + STATE(4173), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4324), 1, + STATE(4184), 1, sym_comment, - STATE(4982), 1, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [153363] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4325), 1, - sym_comment, - STATE(5419), 1, - sym_type_annotation, - STATE(6069), 1, - sym__initializer, - ACTIONS(7210), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7208), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153394] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7682), 1, - anon_sym_LBRACE, - STATE(4326), 1, - sym_comment, - STATE(4531), 1, - sym_type_parameters, - STATE(5131), 1, - sym_class_body, - STATE(6029), 1, - sym_extends_clause, - STATE(6833), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [153431] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7646), 1, - anon_sym_LBRACE, - STATE(1423), 1, - sym_class_body, - STATE(4327), 1, - sym_comment, - STATE(4616), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(6743), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [153468] = 10, + [153669] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7622), 1, + ACTIONS(7723), 1, anon_sym_GT, - ACTIONS(7722), 1, + ACTIONS(7749), 1, anon_sym_SLASH_GT, - STATE(4268), 1, + STATE(4082), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4328), 1, + STATE(4185), 1, sym_comment, - STATE(4982), 1, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [153501] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7672), 1, - anon_sym_LBRACE, - STATE(1639), 1, - sym_class_body, - STATE(4329), 1, - sym_comment, - STATE(4752), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(6856), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [153538] = 10, + [153702] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7586), 1, + ACTIONS(7731), 1, anon_sym_GT, - ACTIONS(7724), 1, + ACTIONS(7751), 1, anon_sym_SLASH_GT, - STATE(4264), 1, + STATE(4174), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4330), 1, + STATE(4186), 1, sym_comment, - STATE(4982), 1, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [153571] = 5, + [153735] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7726), 1, - anon_sym_LBRACK, - STATE(4331), 1, + STATE(4187), 1, sym_comment, - ACTIONS(5169), 8, + ACTIONS(3540), 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, - [153594] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [153756] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7728), 1, - anon_sym_extends, - STATE(4332), 1, - sym_comment, - ACTIONS(5175), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [153617] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7726), 1, - anon_sym_LBRACK, - STATE(4333), 1, - sym_comment, - ACTIONS(5187), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(5183), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7014), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - [153642] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7578), 1, - anon_sym_AMP, - ACTIONS(7580), 1, - anon_sym_PIPE, - ACTIONS(7582), 1, - anon_sym_extends, - STATE(4334), 1, + ACTIONS(7737), 1, + anon_sym_GT, + ACTIONS(7753), 1, + anon_sym_SLASH_GT, + STATE(4082), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4188), 1, sym_comment, - ACTIONS(5198), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [153669] = 10, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [153789] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7730), 1, + ACTIONS(7755), 1, anon_sym_BANG, - ACTIONS(7732), 1, + ACTIONS(7757), 1, anon_sym_QMARK, - STATE(4335), 1, + STATE(4189), 1, sym_comment, - STATE(5329), 1, + STATE(4917), 1, sym_type_annotation, - STATE(6103), 1, + STATE(5991), 1, sym__initializer, - ACTIONS(7182), 3, + ACTIONS(7225), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153702] = 10, + [153822] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7734), 1, - anon_sym_BANG, - ACTIONS(7736), 1, - anon_sym_QMARK, - STATE(4336), 1, + STATE(4190), 1, sym_comment, - STATE(5433), 1, + STATE(5234), 1, sym_type_annotation, - STATE(6063), 1, + STATE(5800), 1, sym__initializer, - ACTIONS(7156), 3, + ACTIONS(7761), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7759), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153735] = 9, + [153853] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4337), 1, + ACTIONS(7763), 1, + anon_sym_BANG, + ACTIONS(7765), 1, + anon_sym_QMARK, + STATE(4191), 1, sym_comment, - STATE(5145), 1, + STATE(4855), 1, sym_type_annotation, - STATE(6463), 1, + STATE(5912), 1, sym__initializer, - ACTIONS(7470), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7466), 3, + ACTIONS(7225), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [153766] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4338), 1, - sym_comment, - ACTIONS(7738), 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, - [153787] = 4, + [153886] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4339), 1, + STATE(4192), 1, sym_comment, - ACTIONS(5206), 9, + ACTIONS(3570), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -348335,199 +335960,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [153808] = 4, + [153907] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4340), 1, + ACTIONS(7767), 1, + anon_sym_EQ, + STATE(4193), 1, sym_comment, - ACTIONS(5330), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7661), 8, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [153829] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7011), 1, - anon_sym_LBRACE, - ACTIONS(7612), 1, - anon_sym_GT, - ACTIONS(7740), 1, - anon_sym_SLASH_GT, - STATE(4268), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4341), 1, - sym_comment, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [153862] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7011), 1, - anon_sym_LBRACE, - ACTIONS(7622), 1, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_GT, - ACTIONS(7742), 1, - anon_sym_SLASH_GT, - STATE(4268), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4342), 1, - sym_comment, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [153895] = 4, + anon_sym_DOT, + anon_sym_EQ_GT, + [153930] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4343), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7769), 1, + anon_sym_BANG, + ACTIONS(7771), 1, + anon_sym_QMARK, + STATE(4194), 1, sym_comment, - ACTIONS(5210), 9, + STATE(4846), 1, + sym_type_annotation, + STATE(5903), 1, + sym__initializer, + ACTIONS(7225), 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, - [153916] = 5, + [153963] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7578), 1, - anon_sym_AMP, - STATE(4344), 1, - sym_comment, - ACTIONS(5228), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7545), 1, anon_sym_extends, - [153939] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2710), 1, - anon_sym_RBRACE, - ACTIONS(7214), 1, - anon_sym_EQ, - ACTIONS(7556), 1, - anon_sym_COMMA, - STATE(4345), 1, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7617), 1, + anon_sym_LBRACE, + STATE(4195), 1, sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(4514), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [153970] = 4, + STATE(4415), 1, + sym_type_parameters, + STATE(4935), 1, + sym_class_body, + STATE(5785), 1, + sym_extends_clause, + STATE(6960), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [154000] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4346), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(7445), 1, + sym_identifier, + ACTIONS(7447), 1, + anon_sym_type, + ACTIONS(7453), 1, + anon_sym_typeof, + STATE(4196), 1, sym_comment, - ACTIONS(5235), 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, - [153991] = 12, + STATE(5551), 1, + sym_string, + STATE(6472), 1, + sym_import_specifier, + STATE(6907), 1, + sym__import_identifier, + STATE(7043), 1, + sym__module_export_name, + [154037] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(6973), 1, - anon_sym_LT, - ACTIONS(7744), 1, - anon_sym_DOT, - STATE(3121), 1, - sym_template_string, - STATE(3437), 1, - sym_arguments, - STATE(4347), 1, + STATE(4197), 1, sym_comment, - STATE(5595), 1, - sym_type_arguments, - STATE(6998), 1, - sym_optional_chain, - [154028] = 10, + ACTIONS(7773), 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, + [154058] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7746), 1, + ACTIONS(7775), 1, anon_sym_BANG, - ACTIONS(7748), 1, + ACTIONS(7777), 1, anon_sym_QMARK, - STATE(4348), 1, + STATE(4198), 1, sym_comment, - STATE(5430), 1, + STATE(4897), 1, sym_type_annotation, - STATE(6067), 1, + STATE(5900), 1, sym__initializer, - ACTIONS(7156), 3, + ACTIONS(7225), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154061] = 4, + [154091] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4349), 1, + STATE(4199), 1, sym_comment, - ACTIONS(5239), 9, + ACTIONS(5092), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -348537,14 +336108,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [154082] = 4, + [154112] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4350), 1, + STATE(4200), 1, sym_comment, - ACTIONS(5245), 9, + ACTIONS(5088), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -348554,133 +336125,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [154103] = 10, + [154133] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7750), 1, + ACTIONS(7779), 1, anon_sym_BANG, - ACTIONS(7752), 1, + ACTIONS(7781), 1, anon_sym_QMARK, - STATE(4351), 1, + STATE(4201), 1, sym_comment, - STATE(5438), 1, + STATE(4927), 1, sym_type_annotation, - STATE(6058), 1, + STATE(6003), 1, sym__initializer, - ACTIONS(7156), 3, + ACTIONS(7225), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154136] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7626), 1, - anon_sym_LBRACE, - STATE(400), 1, - sym_class_body, - STATE(4352), 1, - sym_comment, - STATE(4514), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(6819), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [154173] = 10, + [154166] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7754), 1, + ACTIONS(7783), 1, anon_sym_BANG, - ACTIONS(7756), 1, + ACTIONS(7785), 1, anon_sym_QMARK, - STATE(4353), 1, + STATE(4202), 1, sym_comment, - STATE(5424), 1, + STATE(4932), 1, sym_type_annotation, - STATE(6072), 1, + STATE(6014), 1, sym__initializer, - ACTIONS(7156), 3, + ACTIONS(7225), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154206] = 10, + [154199] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7034), 1, - anon_sym_SLASH_GT, - ACTIONS(7353), 1, + ACTIONS(7342), 1, anon_sym_GT, - STATE(4354), 1, - sym_comment, - STATE(4419), 1, + ACTIONS(7344), 1, + anon_sym_SLASH_GT, + STATE(4182), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4982), 1, + STATE(4203), 1, + sym_comment, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [154239] = 12, + [154232] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7694), 1, - anon_sym_LBRACE, - STATE(1133), 1, - sym_class_body, - STATE(4355), 1, + STATE(4204), 1, sym_comment, - STATE(4612), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(6609), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [154276] = 4, + ACTIONS(4328), 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, + [154253] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4356), 1, + STATE(4205), 1, sym_comment, - ACTIONS(5334), 9, + ACTIONS(5072), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -348690,64 +336228,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [154297] = 12, + [154274] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7554), 1, + ACTIONS(7735), 1, anon_sym_LBRACE, - STATE(308), 1, + STATE(356), 1, sym_class_body, - STATE(4357), 1, + STATE(4206), 1, sym_comment, - STATE(4492), 1, + STATE(4412), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6622), 1, + STATE(6952), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [154334] = 12, + [154311] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4803), 1, + anon_sym_DOT, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6978), 1, anon_sym_LT, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7682), 1, - anon_sym_LBRACE, - STATE(4358), 1, + STATE(4207), 1, sym_comment, - STATE(4499), 1, - sym_type_parameters, - STATE(5260), 1, - sym_class_body, - STATE(6029), 1, - sym_extends_clause, - STATE(6811), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [154371] = 4, + STATE(5544), 1, + sym_type_arguments, + STATE(6617), 1, + sym_optional_chain, + STATE(2508), 2, + sym_template_string, + sym_arguments, + [154346] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4359), 1, + STATE(4208), 1, sym_comment, - ACTIONS(5334), 9, + ACTIONS(5062), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -348757,777 +336294,591 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [154392] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7644), 1, - anon_sym_LBRACE, - STATE(949), 1, - sym_class_body, - STATE(4360), 1, - sym_comment, - STATE(4756), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(6628), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [154429] = 4, + [154367] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4361), 1, - sym_comment, - ACTIONS(5338), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(7537), 1, anon_sym_AMP, + ACTIONS(7539), 1, anon_sym_PIPE, + ACTIONS(7541), 1, anon_sym_extends, - [154450] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(6973), 1, - anon_sym_LT, - ACTIONS(7758), 1, - anon_sym_DOT, - STATE(3109), 1, - sym_arguments, - STATE(3121), 1, - sym_template_string, - STATE(4362), 1, - sym_comment, - STATE(5595), 1, - sym_type_arguments, - STATE(6998), 1, - sym_optional_chain, - [154487] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4363), 1, + STATE(4209), 1, sym_comment, - ACTIONS(5338), 9, + ACTIONS(5062), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [154508] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7011), 1, - anon_sym_LBRACE, - ACTIONS(7532), 1, - anon_sym_GT, - ACTIONS(7760), 1, - anon_sym_SLASH_GT, - STATE(4268), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4364), 1, - sym_comment, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [154541] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7214), 1, - anon_sym_EQ, - ACTIONS(7556), 1, - anon_sym_COMMA, - ACTIONS(7762), 1, - anon_sym_RBRACE, - STATE(4365), 1, - sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(4514), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [154572] = 10, + [154394] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7764), 1, + ACTIONS(7787), 1, anon_sym_BANG, - ACTIONS(7766), 1, + ACTIONS(7789), 1, anon_sym_QMARK, - STATE(4366), 1, + STATE(4210), 1, sym_comment, - STATE(5365), 1, + STATE(4939), 1, sym_type_annotation, - STATE(6098), 1, + STATE(6029), 1, sym__initializer, - ACTIONS(7182), 3, + ACTIONS(7225), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154605] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7011), 1, - anon_sym_LBRACE, - ACTIONS(7600), 1, - anon_sym_GT, - ACTIONS(7768), 1, - anon_sym_SLASH_GT, - STATE(4257), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4367), 1, - sym_comment, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [154638] = 12, + [154427] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7682), 1, + ACTIONS(7625), 1, anon_sym_LBRACE, - STATE(4368), 1, + STATE(4211), 1, sym_comment, - STATE(4516), 1, + STATE(4344), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6031), 1, - sym_class_body, - STATE(6820), 1, + STATE(6357), 1, sym_class_heritage, - STATE(7191), 1, + STATE(6376), 1, + sym_class_body, + STATE(7265), 1, sym_implements_clause, - [154675] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5377), 1, - anon_sym_DOT, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - ACTIONS(6973), 1, - anon_sym_LT, - STATE(4369), 1, - sym_comment, - STATE(5595), 1, - sym_type_arguments, - STATE(6998), 1, - sym_optional_chain, - STATE(3121), 2, - sym_template_string, - sym_arguments, - [154710] = 12, + [154464] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7544), 1, - anon_sym_LBRACE, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - STATE(3255), 1, + ACTIONS(7553), 1, + anon_sym_LBRACE, + STATE(2454), 1, sym_class_body, - STATE(4370), 1, + STATE(4212), 1, sym_comment, - STATE(4588), 1, + STATE(4352), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6637), 1, + STATE(6496), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [154747] = 10, + [154501] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(2712), 1, + anon_sym_RBRACE, + ACTIONS(7219), 1, anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7770), 1, - anon_sym_BANG, - ACTIONS(7772), 1, - anon_sym_QMARK, - STATE(4371), 1, - sym_comment, - STATE(5027), 1, - sym_type_annotation, - STATE(6324), 1, - sym__initializer, - ACTIONS(7156), 3, - sym__automatic_semicolon, + ACTIONS(7549), 1, anon_sym_COMMA, - anon_sym_SEMI, - [154780] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, + STATE(4213), 1, + sym_comment, + STATE(5868), 1, + aux_sym_object_repeat1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4518), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(7774), 1, - anon_sym_BANG, - ACTIONS(7776), 1, + anon_sym_LT, anon_sym_QMARK, - STATE(4372), 1, - sym_comment, - STATE(5500), 1, - sym_type_annotation, - STATE(6034), 1, - sym__initializer, - ACTIONS(7182), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [154813] = 10, + [154532] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7622), 1, + ACTIONS(7707), 1, anon_sym_GT, - ACTIONS(7778), 1, + ACTIONS(7791), 1, anon_sym_SLASH_GT, - STATE(4268), 1, + STATE(4082), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4373), 1, + STATE(4214), 1, sym_comment, - STATE(4982), 1, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [154846] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [154565] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, - anon_sym_LBRACE, - ACTIONS(7612), 1, - anon_sym_GT, - ACTIONS(7780), 1, - anon_sym_SLASH_GT, - STATE(4268), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4374), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4215), 1, sym_comment, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [154879] = 5, + ACTIONS(7793), 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, + [154586] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7782), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(4375), 1, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7795), 1, + anon_sym_BANG, + ACTIONS(7797), 1, + anon_sym_QMARK, + STATE(4216), 1, sym_comment, - ACTIONS(7784), 8, - anon_sym_LBRACE, + STATE(5288), 1, + sym_type_annotation, + STATE(6020), 1, + sym__initializer, + ACTIONS(7189), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [154902] = 5, + anon_sym_SEMI, + [154619] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7786), 1, + ACTIONS(7219), 1, anon_sym_EQ, - STATE(4376), 1, - sym_comment, - ACTIONS(7788), 8, - anon_sym_LBRACE, + ACTIONS(7549), 1, anon_sym_COMMA, + ACTIONS(7799), 1, + anon_sym_RBRACE, + STATE(4217), 1, + sym_comment, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(4518), 4, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [154925] = 4, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [154650] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4377), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7801), 1, + anon_sym_BANG, + ACTIONS(7803), 1, + anon_sym_QMARK, + STATE(4218), 1, sym_comment, - ACTIONS(3432), 9, + STATE(4951), 1, + sym_type_annotation, + STATE(6057), 1, + sym__initializer, + ACTIONS(7225), 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, - [154946] = 10, + [154683] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7790), 1, + ACTIONS(7805), 1, anon_sym_BANG, - ACTIONS(7792), 1, + ACTIONS(7807), 1, anon_sym_QMARK, - STATE(4378), 1, + STATE(4219), 1, sym_comment, - STATE(5486), 1, + STATE(5322), 1, sym_type_annotation, - STATE(6042), 1, + STATE(6037), 1, sym__initializer, - ACTIONS(7182), 3, + ACTIONS(7189), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154979] = 4, + [154716] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4379), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7809), 1, + anon_sym_BANG, + ACTIONS(7811), 1, + anon_sym_QMARK, + STATE(4220), 1, sym_comment, - ACTIONS(7784), 9, + STATE(5348), 1, + sym_type_annotation, + STATE(6055), 1, + sym__initializer, + ACTIONS(7189), 3, 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, - [155000] = 12, + [154749] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7674), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7813), 1, + anon_sym_BANG, + ACTIONS(7815), 1, + anon_sym_QMARK, + STATE(4221), 1, + sym_comment, + STATE(5360), 1, + sym_type_annotation, + STATE(6059), 1, + sym__initializer, + ACTIONS(7189), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154782] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7014), 1, anon_sym_LBRACE, - STATE(2658), 1, - sym_class_body, - STATE(4380), 1, + ACTIONS(7711), 1, + anon_sym_GT, + ACTIONS(7817), 1, + anon_sym_SLASH_GT, + STATE(4082), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4222), 1, sym_comment, - STATE(4530), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(6828), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [155037] = 12, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [154815] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7674), 1, + ACTIONS(7589), 1, anon_sym_LBRACE, - STATE(2603), 1, + STATE(2973), 1, sym_class_body, - STATE(4381), 1, + STATE(4223), 1, sym_comment, - STATE(4620), 1, + STATE(4372), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6953), 1, + STATE(6545), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [155074] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4382), 1, - sym_comment, - ACTIONS(5202), 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, - [155095] = 10, + [154852] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7794), 1, + ACTIONS(7819), 1, anon_sym_BANG, - ACTIONS(7796), 1, + ACTIONS(7821), 1, anon_sym_QMARK, - STATE(4383), 1, + STATE(4224), 1, sym_comment, - STATE(5170), 1, + STATE(5375), 1, sym_type_annotation, - STATE(6156), 1, + STATE(6191), 1, sym__initializer, - ACTIONS(7156), 3, + ACTIONS(7189), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155128] = 4, + [154885] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4384), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7823), 1, + anon_sym_BANG, + ACTIONS(7825), 1, + anon_sym_QMARK, + STATE(4225), 1, sym_comment, - ACTIONS(5141), 9, + STATE(5352), 1, + sym_type_annotation, + STATE(6231), 1, + sym__initializer, + ACTIONS(7189), 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, - [155149] = 10, + [154918] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7798), 1, + ACTIONS(7827), 1, anon_sym_BANG, - ACTIONS(7800), 1, + ACTIONS(7829), 1, anon_sym_QMARK, - STATE(4385), 1, + STATE(4226), 1, sym_comment, - STATE(5067), 1, + STATE(5323), 1, sym_type_annotation, - STATE(6129), 1, + STATE(6306), 1, sym__initializer, - ACTIONS(7156), 3, + ACTIONS(7189), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155182] = 10, + [154951] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7604), 1, + ACTIONS(7719), 1, anon_sym_GT, - ACTIONS(7802), 1, + ACTIONS(7831), 1, anon_sym_SLASH_GT, - STATE(4268), 1, + STATE(4089), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4386), 1, + STATE(4227), 1, sym_comment, - STATE(4982), 1, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [155215] = 9, + [154984] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7464), 1, - anon_sym_EQ, - STATE(4387), 1, + ACTIONS(7833), 1, + anon_sym_LBRACK, + STATE(4228), 1, sym_comment, - STATE(5145), 1, - sym_type_annotation, - STATE(5373), 1, - sym__initializer, - ACTIONS(7470), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7466), 3, + ACTIONS(5122), 8, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155246] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7804), 1, - anon_sym_EQ, - STATE(4388), 1, - sym_comment, - ACTIONS(7806), 8, + sym__function_signature_automatic_semicolon, 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, - [155269] = 10, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155007] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7808), 1, - anon_sym_BANG, - ACTIONS(7810), 1, - anon_sym_QMARK, - STATE(4389), 1, + ACTIONS(7835), 1, + anon_sym_extends, + STATE(4229), 1, sym_comment, - STATE(5058), 1, - sym_type_annotation, - STATE(5861), 1, - sym__initializer, - ACTIONS(7198), 3, + ACTIONS(5116), 8, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [155302] = 9, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [155030] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2667), 1, + anon_sym_RBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2712), 1, - anon_sym_RBRACE, - ACTIONS(7214), 1, + ACTIONS(7219), 1, anon_sym_EQ, - ACTIONS(7556), 1, + ACTIONS(7549), 1, anon_sym_COMMA, - STATE(4390), 1, + STATE(4230), 1, sym_comment, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4514), 4, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(4518), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [155333] = 12, + [155061] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4813), 1, - anon_sym_DOT, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(7042), 1, - anon_sym_LT, - STATE(2716), 1, - sym_template_string, - STATE(3039), 1, - sym_arguments, - STATE(4014), 1, - sym_type_arguments, - STATE(4391), 1, + ACTIONS(7833), 1, + anon_sym_LBRACK, + STATE(4231), 1, sym_comment, - STATE(6668), 1, - sym_optional_chain, - [155370] = 12, + ACTIONS(4883), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(5084), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [155086] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7546), 1, + ACTIONS(7537), 1, + anon_sym_AMP, + ACTIONS(7539), 1, + anon_sym_PIPE, + ACTIONS(7541), 1, anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7682), 1, - anon_sym_LBRACE, - STATE(4392), 1, + STATE(4232), 1, sym_comment, - STATE(4618), 1, - sym_type_parameters, - STATE(5965), 1, - sym_class_body, - STATE(6029), 1, - sym_extends_clause, - STATE(6910), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [155407] = 10, + ACTIONS(5076), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [155113] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7812), 1, + ACTIONS(7837), 1, anon_sym_BANG, - ACTIONS(7814), 1, + ACTIONS(7839), 1, anon_sym_QMARK, - STATE(4393), 1, + STATE(4233), 1, sym_comment, - STATE(5137), 1, + STATE(5235), 1, sym_type_annotation, - STATE(5864), 1, + STATE(6258), 1, sym__initializer, - ACTIONS(7198), 3, + ACTIONS(7189), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155440] = 5, + [155146] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7816), 1, - anon_sym_EQ, - STATE(4394), 1, - sym_comment, - ACTIONS(7818), 8, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7543), 1, 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, - [155463] = 4, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + STATE(1404), 1, + sym_class_body, + STATE(4234), 1, + sym_comment, + STATE(4505), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6818), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [155183] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4395), 1, + STATE(4235), 1, sym_comment, - ACTIONS(3442), 9, + ACTIONS(5351), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -349537,641 +336888,811 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155484] = 10, + [155204] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7820), 1, + ACTIONS(7841), 1, anon_sym_BANG, - ACTIONS(7822), 1, + ACTIONS(7843), 1, anon_sym_QMARK, - STATE(4396), 1, + STATE(4236), 1, sym_comment, - STATE(5429), 1, + STATE(5228), 1, sym_type_annotation, - STATE(6230), 1, + STATE(6250), 1, sym__initializer, - ACTIONS(7258), 3, + ACTIONS(7189), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155237] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4237), 1, + sym_comment, + ACTIONS(5043), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [155517] = 12, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155258] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7552), 1, + ACTIONS(7845), 1, anon_sym_LBRACE, - STATE(1150), 1, + STATE(1368), 1, sym_class_body, - STATE(4397), 1, + STATE(4238), 1, sym_comment, - STATE(4658), 1, + STATE(4399), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6790), 1, + STATE(6611), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [155554] = 4, + [155295] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4398), 1, + ACTIONS(7847), 1, + anon_sym_COLON, + STATE(4239), 1, sym_comment, - ACTIONS(7824), 9, - anon_sym_EQ, + STATE(5194), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7507), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [155575] = 12, + anon_sym_SEMI, + [155320] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(5369), 1, + STATE(4240), 1, + sym_comment, + ACTIONS(5031), 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, + [155341] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7537), 1, + anon_sym_AMP, + STATE(4241), 1, + sym_comment, + ACTIONS(5027), 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, + [155364] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(5377), 1, + ACTIONS(4803), 1, anon_sym_DOT, - ACTIONS(5411), 1, + ACTIONS(4865), 1, anon_sym_BQUOTE, - ACTIONS(6973), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6978), 1, anon_sym_LT, - STATE(3121), 1, + STATE(2508), 1, sym_template_string, - STATE(3345), 1, + STATE(2618), 1, sym_arguments, - STATE(4177), 1, + STATE(3820), 1, sym_type_arguments, - STATE(4399), 1, + STATE(4242), 1, sym_comment, - STATE(6998), 1, + STATE(6617), 1, sym_optional_chain, - [155612] = 6, + [155401] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7628), 1, - anon_sym_COLON, - STATE(4400), 1, + STATE(4243), 1, sym_comment, - STATE(5533), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7448), 5, + ACTIONS(5355), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [155637] = 10, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155422] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7826), 1, - anon_sym_BANG, - ACTIONS(7828), 1, - anon_sym_QMARK, - STATE(4401), 1, + STATE(4244), 1, sym_comment, - STATE(5320), 1, - sym_type_annotation, - STATE(6104), 1, - sym__initializer, - ACTIONS(7156), 3, + ACTIONS(5007), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [155670] = 10, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155443] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7830), 1, - anon_sym_BANG, - ACTIONS(7832), 1, - anon_sym_QMARK, - STATE(4402), 1, + ACTIONS(7014), 1, + anon_sym_LBRACE, + ACTIONS(7581), 1, + anon_sym_GT, + ACTIONS(7849), 1, + anon_sym_SLASH_GT, + STATE(4082), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4245), 1, sym_comment, - STATE(5224), 1, - sym_type_annotation, - STATE(5916), 1, - sym__initializer, - ACTIONS(7258), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [155703] = 10, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [155476] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7564), 1, + ACTIONS(7577), 1, anon_sym_GT, - ACTIONS(7834), 1, + ACTIONS(7851), 1, anon_sym_SLASH_GT, - STATE(4268), 1, + STATE(4082), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4403), 1, + STATE(4246), 1, sym_comment, - STATE(4982), 1, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [155736] = 12, + [155509] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4247), 1, + sym_comment, + ACTIONS(5003), 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, + [155530] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7550), 1, + ACTIONS(7853), 1, anon_sym_LBRACE, - STATE(350), 1, + STATE(1072), 1, sym_class_body, - STATE(4404), 1, + STATE(4248), 1, sym_comment, - STATE(4654), 1, + STATE(4396), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6783), 1, + STATE(6548), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [155773] = 10, + [155567] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7836), 1, - anon_sym_BANG, - ACTIONS(7838), 1, - anon_sym_QMARK, - STATE(4405), 1, + STATE(4249), 1, sym_comment, - STATE(5169), 1, - sym_type_annotation, - STATE(5887), 1, - sym__initializer, - ACTIONS(7258), 3, + ACTIONS(4999), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [155806] = 12, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155588] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7682), 1, + ACTIONS(7855), 1, anon_sym_LBRACE, - STATE(4406), 1, + STATE(352), 1, + sym_class_body, + STATE(4250), 1, sym_comment, - STATE(4746), 1, + STATE(4394), 1, sym_type_parameters, - STATE(5530), 1, - sym_class_body, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6778), 1, + STATE(6534), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [155843] = 12, + [155625] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(6978), 1, anon_sym_LT, - ACTIONS(7544), 1, - anon_sym_LBRACE, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - STATE(3183), 1, - sym_class_body, - STATE(4407), 1, + ACTIONS(7857), 1, + anon_sym_DOT, + STATE(2508), 1, + sym_template_string, + STATE(2979), 1, + sym_arguments, + STATE(4251), 1, sym_comment, - STATE(4605), 1, - sym_type_parameters, - STATE(6029), 1, - sym_extends_clause, - STATE(7019), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [155880] = 10, + STATE(5544), 1, + sym_type_arguments, + STATE(6617), 1, + sym_optional_chain, + [155662] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7840), 1, - anon_sym_BANG, - ACTIONS(7842), 1, - anon_sym_QMARK, - STATE(4408), 1, + STATE(4252), 1, sym_comment, - STATE(5422), 1, - sym_type_annotation, - STATE(6233), 1, - sym__initializer, - ACTIONS(7258), 3, + ACTIONS(5359), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [155913] = 10, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155683] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7846), 1, - anon_sym_BANG, - ACTIONS(7848), 1, - anon_sym_QMARK, - STATE(4409), 1, + STATE(4253), 1, sym_comment, - STATE(5014), 1, - sym_type_annotation, - STATE(6272), 1, - sym__initializer, - ACTIONS(7844), 3, + ACTIONS(5334), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [155946] = 10, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155704] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7845), 1, + anon_sym_LBRACE, + STATE(1307), 1, + sym_class_body, + STATE(4254), 1, + sym_comment, + STATE(4392), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6490), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [155741] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7847), 1, anon_sym_COLON, - ACTIONS(7850), 1, - anon_sym_BANG, - ACTIONS(7852), 1, - anon_sym_QMARK, - STATE(4410), 1, + STATE(4255), 1, sym_comment, - STATE(5388), 1, + STATE(5039), 3, sym_type_annotation, - STATE(6095), 1, - sym__initializer, - ACTIONS(7156), 3, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7515), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [155979] = 5, + [155766] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7854), 1, - anon_sym_EQ, - STATE(4411), 1, + STATE(4256), 1, sym_comment, - ACTIONS(4322), 8, + ACTIONS(5212), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, 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, - [156002] = 10, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155787] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7586), 1, + ACTIONS(7707), 1, anon_sym_GT, - ACTIONS(7856), 1, + ACTIONS(7859), 1, anon_sym_SLASH_GT, - STATE(4342), 1, + STATE(4082), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4412), 1, + STATE(4257), 1, sym_comment, - STATE(4982), 1, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [156035] = 9, + [155820] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2667), 1, - anon_sym_RBRACE, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7214), 1, - anon_sym_EQ, - ACTIONS(7556), 1, - anon_sym_COMMA, - STATE(4413), 1, + ACTIONS(7014), 1, + anon_sym_LBRACE, + ACTIONS(7711), 1, + anon_sym_GT, + ACTIONS(7861), 1, + anon_sym_SLASH_GT, + STATE(4082), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4258), 1, sym_comment, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - STATE(6333), 1, - aux_sym_object_repeat1, - ACTIONS(4514), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [156066] = 9, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [155853] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7214), 1, - anon_sym_EQ, - ACTIONS(7556), 1, - anon_sym_COMMA, - ACTIONS(7858), 1, - anon_sym_RBRACE, - STATE(4414), 1, + ACTIONS(7014), 1, + anon_sym_LBRACE, + ACTIONS(7719), 1, + anon_sym_GT, + ACTIONS(7863), 1, + anon_sym_SLASH_GT, + STATE(4245), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4259), 1, sym_comment, - STATE(6165), 1, - aux_sym_object_repeat1, - STATE(6171), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4514), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [156097] = 10, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [155886] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7860), 1, - anon_sym_BANG, - ACTIONS(7862), 1, - anon_sym_QMARK, - STATE(4415), 1, + ACTIONS(7014), 1, + anon_sym_LBRACE, + ACTIONS(7723), 1, + anon_sym_GT, + ACTIONS(7865), 1, + anon_sym_SLASH_GT, + STATE(4082), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4260), 1, sym_comment, - STATE(5156), 1, - sym_type_annotation, - STATE(5881), 1, - sym__initializer, - ACTIONS(7258), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156130] = 10, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [155919] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7600), 1, + ACTIONS(7731), 1, anon_sym_GT, - ACTIONS(7864), 1, + ACTIONS(7867), 1, anon_sym_SLASH_GT, - STATE(4341), 1, + STATE(4246), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4416), 1, + STATE(4261), 1, sym_comment, - STATE(4982), 1, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [156163] = 10, + [155952] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7604), 1, + ACTIONS(7737), 1, anon_sym_GT, - ACTIONS(7866), 1, + ACTIONS(7869), 1, anon_sym_SLASH_GT, - STATE(4268), 1, + STATE(4082), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4417), 1, + STATE(4262), 1, sym_comment, - STATE(4982), 1, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [156196] = 10, + [155985] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7868), 1, - anon_sym_BANG, - ACTIONS(7870), 1, - anon_sym_QMARK, - STATE(4418), 1, + STATE(4263), 1, sym_comment, - STATE(5035), 1, - sym_type_annotation, - STATE(5849), 1, - sym__initializer, - ACTIONS(7258), 3, + ACTIONS(5156), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [156229] = 10, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156006] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2710), 1, + anon_sym_RBRACE, + ACTIONS(7219), 1, + anon_sym_EQ, + ACTIONS(7549), 1, + anon_sym_COMMA, + STATE(4264), 1, + sym_comment, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(4518), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [156037] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7658), 1, - anon_sym_GT, - ACTIONS(7872), 1, + ACTIONS(7049), 1, anon_sym_SLASH_GT, - STATE(4268), 1, + ACTIONS(7342), 1, + anon_sym_GT, + STATE(4166), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4419), 1, + STATE(4265), 1, sym_comment, - STATE(4982), 1, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [156262] = 12, + [156070] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4266), 1, + sym_comment, + ACTIONS(5015), 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, + [156091] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4267), 1, + sym_comment, + ACTIONS(5011), 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, + [156112] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7696), 1, + ACTIONS(7853), 1, anon_sym_LBRACE, - STATE(4420), 1, + STATE(1007), 1, + sym_class_body, + STATE(4268), 1, sym_comment, - STATE(4577), 1, + STATE(4390), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6886), 1, + STATE(6420), 1, sym_class_heritage, - STATE(7030), 1, - sym_class_body, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [156299] = 10, + [156149] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7219), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7549), 1, + anon_sym_COMMA, + ACTIONS(7871), 1, + anon_sym_RBRACE, + STATE(4269), 1, + sym_comment, + STATE(5868), 1, + aux_sym_object_repeat1, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4518), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(7874), 1, - anon_sym_BANG, - ACTIONS(7876), 1, + anon_sym_LT, anon_sym_QMARK, - STATE(4421), 1, + [156180] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7014), 1, + anon_sym_LBRACE, + ACTIONS(7025), 1, + anon_sym_SLASH_GT, + ACTIONS(7342), 1, + anon_sym_GT, + STATE(4214), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4270), 1, sym_comment, - STATE(5392), 1, - sym_type_annotation, - STATE(6090), 1, - sym__initializer, - ACTIONS(7156), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156332] = 4, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [156213] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4422), 1, + STATE(4271), 1, sym_comment, - ACTIONS(4322), 9, + ACTIONS(4995), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [156353] = 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156234] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4423), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7649), 1, + anon_sym_LBRACE, + STATE(448), 1, + sym_class_body, + STATE(4272), 1, sym_comment, - ACTIONS(4339), 9, - sym__automatic_semicolon, - anon_sym_EQ, + STATE(4521), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6959), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [156271] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7014), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [156374] = 4, + ACTIONS(7342), 1, + anon_sym_GT, + ACTIONS(7362), 1, + anon_sym_SLASH_GT, + STATE(4257), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4273), 1, + sym_comment, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [156304] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4424), 1, + STATE(4274), 1, sym_comment, - ACTIONS(5282), 9, + ACTIONS(5156), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -350181,97 +337702,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [156395] = 5, + [156325] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7726), 1, - anon_sym_LBRACK, - STATE(4425), 1, + STATE(4275), 1, sym_comment, - ACTIONS(5187), 8, + ACTIONS(5108), 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, - [156418] = 12, + [156346] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6973), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7878), 1, - anon_sym_DOT, - STATE(2716), 1, - sym_template_string, - STATE(3211), 1, - sym_arguments, - STATE(4426), 1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7855), 1, + anon_sym_LBRACE, + STATE(351), 1, + sym_class_body, + STATE(4276), 1, sym_comment, - STATE(5636), 1, - sym_type_arguments, - STATE(6668), 1, - sym_optional_chain, - [156455] = 4, + STATE(4385), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(6336), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [156383] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4427), 1, + ACTIONS(7833), 1, + anon_sym_LBRACK, + STATE(4277), 1, sym_comment, - ACTIONS(5187), 9, + ACTIONS(4883), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [156476] = 10, + [156406] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7880), 1, - anon_sym_BANG, - ACTIONS(7882), 1, - anon_sym_QMARK, - STATE(4428), 1, + STATE(4278), 1, sym_comment, - STATE(5482), 1, - sym_type_annotation, - STATE(6037), 1, - sym__initializer, - ACTIONS(7182), 3, + ACTIONS(5108), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [156509] = 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156427] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4429), 1, + STATE(4279), 1, sym_comment, - ACTIONS(4861), 9, + ACTIONS(4883), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -350281,39 +337796,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [156530] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - ACTIONS(4887), 1, - anon_sym_QMARK_DOT, - ACTIONS(6973), 1, - anon_sym_LT, - ACTIONS(7884), 1, - anon_sym_DOT, - STATE(2716), 1, - sym_template_string, - STATE(2800), 1, - sym_arguments, - STATE(4430), 1, - sym_comment, - STATE(5636), 1, - sym_type_arguments, - STATE(6668), 1, - sym_optional_chain, - [156567] = 4, + [156448] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4431), 1, + STATE(4280), 1, sym_comment, - ACTIONS(5286), 9, + ACTIONS(5292), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -350323,116 +337813,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [156588] = 10, + [156469] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7011), 1, + ACTIONS(7014), 1, anon_sym_LBRACE, - ACTIONS(7658), 1, + ACTIONS(7723), 1, anon_sym_GT, - ACTIONS(7886), 1, + ACTIONS(7873), 1, anon_sym_SLASH_GT, - STATE(4268), 1, + STATE(4082), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4432), 1, + STATE(4281), 1, sym_comment, - STATE(4982), 1, + STATE(4832), 1, sym_jsx_namespace_name, - ACTIONS(7007), 2, + ACTIONS(7010), 2, sym_jsx_identifier, sym_identifier, - STATE(5057), 2, + STATE(4937), 2, sym_jsx_expression, sym_jsx_attribute, - [156621] = 4, + [156502] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4433), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7875), 1, + anon_sym_BANG, + ACTIONS(7877), 1, + anon_sym_QMARK, + STATE(4282), 1, sym_comment, - ACTIONS(7788), 9, + STATE(4961), 1, + sym_type_annotation, + STATE(6068), 1, + sym__initializer, + ACTIONS(7225), 3, 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, - [156642] = 4, + [156535] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4434), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7879), 1, + anon_sym_BANG, + ACTIONS(7881), 1, + anon_sym_QMARK, + STATE(4283), 1, sym_comment, - ACTIONS(7806), 9, + STATE(4966), 1, + sym_type_annotation, + STATE(6102), 1, + sym__initializer, + ACTIONS(7225), 3, 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, - [156663] = 10, + [156568] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7888), 1, - anon_sym_BANG, - ACTIONS(7890), 1, - anon_sym_QMARK, - STATE(4435), 1, + STATE(4284), 1, sym_comment, - STATE(5354), 1, - sym_type_annotation, - STATE(5840), 1, - sym__initializer, - ACTIONS(7258), 3, + ACTIONS(4843), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [156696] = 9, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156589] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4436), 1, + ACTIONS(7885), 1, + anon_sym_BANG, + ACTIONS(7887), 1, + anon_sym_QMARK, + STATE(4285), 1, sym_comment, - STATE(5171), 1, + STATE(5238), 1, sym_type_annotation, - STATE(5882), 1, + STATE(6283), 1, sym__initializer, - ACTIONS(7254), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7252), 3, + ACTIONS(7883), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156727] = 4, + [156622] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4437), 1, + STATE(4286), 1, sym_comment, - ACTIONS(4837), 9, + ACTIONS(5190), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -350442,2228 +337939,2429 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [156748] = 4, + [156643] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4438), 1, - sym_comment, - ACTIONS(5294), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7545), 1, anon_sym_extends, - [156769] = 4, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7617), 1, + anon_sym_LBRACE, + STATE(4287), 1, + sym_comment, + STATE(4347), 1, + sym_type_parameters, + STATE(5785), 1, + sym_extends_clause, + STATE(5969), 1, + sym_class_body, + STATE(6409), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [156680] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4439), 1, + STATE(4288), 1, sym_comment, - ACTIONS(7818), 9, - sym__automatic_semicolon, + ACTIONS(7889), 9, 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, - [156790] = 4, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [156701] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4440), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4289), 1, sym_comment, - ACTIONS(5353), 9, + STATE(5025), 1, + sym_type_annotation, + STATE(6125), 1, + sym__initializer, + ACTIONS(7291), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7289), 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, - [156811] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7011), 1, - anon_sym_LBRACE, - ACTIONS(7022), 1, - anon_sym_SLASH_GT, - ACTIONS(7353), 1, - anon_sym_GT, - STATE(4432), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4441), 1, - sym_comment, - STATE(4982), 1, - sym_jsx_namespace_name, - ACTIONS(7007), 2, - sym_jsx_identifier, - sym_identifier, - STATE(5057), 2, - sym_jsx_expression, - sym_jsx_attribute, - [156844] = 4, + [156732] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4442), 1, + ACTIONS(4899), 1, + anon_sym_QMARK_DOT, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5400), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + ACTIONS(6978), 1, + anon_sym_LT, + STATE(4290), 1, sym_comment, - ACTIONS(5349), 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, - [156865] = 4, + STATE(5479), 1, + sym_type_arguments, + STATE(6667), 1, + sym_optional_chain, + STATE(3075), 2, + sym_template_string, + sym_arguments, + [156767] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4443), 1, - sym_comment, - ACTIONS(5345), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(7219), 1, + anon_sym_EQ, + ACTIONS(7549), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [156886] = 12, + ACTIONS(7891), 1, + anon_sym_RBRACE, + STATE(4291), 1, + sym_comment, + STATE(5869), 1, + aux_sym_object_pattern_repeat1, + STATE(6261), 1, + aux_sym_object_repeat1, + ACTIONS(4518), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [156798] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7680), 1, + ACTIONS(7553), 1, anon_sym_LBRACE, - STATE(1006), 1, + STATE(2512), 1, sym_class_body, - STATE(4444), 1, + STATE(4292), 1, sym_comment, - STATE(4602), 1, + STATE(4346), 1, sym_type_parameters, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6644), 1, + STATE(6398), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [156923] = 7, + [156835] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7578), 1, + ACTIONS(7537), 1, anon_sym_AMP, - ACTIONS(7580), 1, + ACTIONS(7539), 1, anon_sym_PIPE, - ACTIONS(7582), 1, + ACTIONS(7541), 1, anon_sym_extends, - STATE(4445), 1, + STATE(4293), 1, sym_comment, - ACTIONS(5220), 6, + ACTIONS(5226), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [156950] = 7, + [156862] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7578), 1, - anon_sym_AMP, - ACTIONS(7580), 1, - anon_sym_PIPE, - ACTIONS(7582), 1, - anon_sym_extends, - STATE(4446), 1, + STATE(4294), 1, sym_comment, - ACTIONS(5224), 6, + ACTIONS(5230), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [156977] = 10, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156883] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7892), 1, + ACTIONS(7893), 1, anon_sym_BANG, - ACTIONS(7894), 1, + ACTIONS(7895), 1, anon_sym_QMARK, - STATE(4447), 1, + STATE(4295), 1, sym_comment, - STATE(5063), 1, + STATE(4965), 1, sym_type_annotation, - STATE(6369), 1, + STATE(6072), 1, sym__initializer, - ACTIONS(7844), 3, + ACTIONS(7883), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157010] = 7, + [156916] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7578), 1, - anon_sym_AMP, - ACTIONS(7580), 1, - anon_sym_PIPE, - ACTIONS(7582), 1, - anon_sym_extends, - STATE(4448), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7897), 1, + anon_sym_BANG, + ACTIONS(7899), 1, + anon_sym_QMARK, + STATE(4296), 1, sym_comment, - ACTIONS(7488), 5, + STATE(4977), 1, + sym_type_annotation, + STATE(6085), 1, + sym__initializer, + ACTIONS(7225), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [157036] = 7, + [156949] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7058), 1, - anon_sym_LPAREN, - ACTIONS(7896), 1, - anon_sym_DOT, - STATE(4449), 1, + STATE(4297), 1, sym_comment, - STATE(4938), 1, - sym_arguments, - ACTIONS(7484), 5, + ACTIONS(4974), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [157062] = 7, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156970] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7436), 1, - anon_sym_PIPE, - ACTIONS(7438), 1, - anon_sym_extends, - STATE(4450), 1, + STATE(4298), 1, sym_comment, - ACTIONS(7898), 5, + ACTIONS(4857), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [157088] = 10, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156991] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7014), 1, + anon_sym_LBRACE, + ACTIONS(7737), 1, + anon_sym_GT, + ACTIONS(7901), 1, + anon_sym_SLASH_GT, + STATE(4082), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4299), 1, + sym_comment, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [157024] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7014), 1, + anon_sym_LBRACE, + ACTIONS(7731), 1, + anon_sym_GT, + ACTIONS(7903), 1, + anon_sym_SLASH_GT, + STATE(4087), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4300), 1, + sym_comment, + STATE(4832), 1, + sym_jsx_namespace_name, + ACTIONS(7010), 2, + sym_jsx_identifier, + sym_identifier, + STATE(4937), 2, + sym_jsx_expression, + sym_jsx_attribute, + [157057] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7905), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7907), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7909), 1, + anon_sym_QMARK_COLON, + STATE(4301), 1, + sym_comment, + STATE(5216), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [157085] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4018), 1, + ACTIONS(4028), 1, sym_identifier, - ACTIONS(4020), 1, + ACTIONS(4030), 1, anon_sym_LBRACE, - ACTIONS(4022), 1, + ACTIONS(4032), 1, anon_sym_LBRACK, - ACTIONS(7900), 1, + ACTIONS(7911), 1, anon_sym_enum, - STATE(4451), 1, + STATE(4302), 1, sym_comment, - STATE(4584), 1, + STATE(4574), 1, sym__destructuring_pattern, - STATE(5725), 1, + STATE(5459), 1, sym_variable_declarator, - STATE(4667), 2, + STATE(4389), 2, sym_object_pattern, sym_array_pattern, - [157120] = 8, + [157117] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7902), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7904), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7906), 1, - anon_sym_QMARK_COLON, - STATE(4452), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7435), 1, + anon_sym_PIPE, + ACTIONS(7437), 1, + anon_sym_extends, + STATE(4303), 1, sym_comment, - STATE(5492), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [157148] = 8, + ACTIONS(7913), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [157143] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7902), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7904), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7906), 1, - anon_sym_QMARK_COLON, - STATE(4453), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7435), 1, + anon_sym_PIPE, + ACTIONS(7437), 1, + anon_sym_extends, + STATE(4304), 1, sym_comment, - STATE(5193), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [157176] = 8, + ACTIONS(7915), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [157169] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7435), 1, + anon_sym_PIPE, + ACTIONS(7437), 1, + anon_sym_extends, + STATE(4305), 1, + sym_comment, + ACTIONS(7917), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [157195] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7902), 1, + ACTIONS(7905), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7904), 1, + ACTIONS(7907), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7906), 1, + ACTIONS(7909), 1, anon_sym_QMARK_COLON, - STATE(4454), 1, + STATE(4306), 1, sym_comment, - STATE(5350), 4, + STATE(5055), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [157204] = 8, + [157223] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7902), 1, + ACTIONS(7905), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7904), 1, + ACTIONS(7907), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7906), 1, + ACTIONS(7909), 1, anon_sym_QMARK_COLON, - STATE(4455), 1, + STATE(4307), 1, sym_comment, - STATE(5289), 4, + STATE(5044), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [157232] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4018), 1, - sym_identifier, - ACTIONS(4020), 1, - anon_sym_LBRACE, - ACTIONS(4022), 1, - anon_sym_LBRACK, - ACTIONS(7908), 1, - anon_sym_enum, - STATE(4456), 1, - sym_comment, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(5627), 1, - sym_variable_declarator, - STATE(4667), 2, - sym_object_pattern, - sym_array_pattern, - [157264] = 5, + [157251] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7910), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(4457), 1, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7497), 1, + anon_sym_BANG, + STATE(4308), 1, sym_comment, - ACTIONS(6414), 7, - anon_sym_LBRACE, + STATE(4888), 1, + sym_type_annotation, + STATE(5942), 1, + sym__initializer, + ACTIONS(7495), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [157286] = 5, + anon_sym_SEMI, + [157281] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7912), 1, - anon_sym_EQ, - STATE(4458), 1, + ACTIONS(7537), 1, + anon_sym_AMP, + ACTIONS(7539), 1, + anon_sym_PIPE, + ACTIONS(7541), 1, + anon_sym_extends, + STATE(4309), 1, sym_comment, - ACTIONS(7914), 7, + ACTIONS(7477), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_DOT, - anon_sym_EQ_GT, - [157308] = 4, + anon_sym_SEMI, + [157307] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4459), 1, + ACTIONS(7075), 1, + anon_sym_LPAREN, + ACTIONS(7919), 1, + anon_sym_DOT, + STATE(4310), 1, sym_comment, - ACTIONS(6414), 8, + STATE(4665), 1, + sym_arguments, + ACTIONS(7483), 5, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [157328] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7916), 1, - sym_identifier, - ACTIONS(7918), 1, - anon_sym_const, - ACTIONS(7920), 1, - anon_sym_GT, - ACTIONS(7922), 1, - sym_jsx_identifier, - ACTIONS(7924), 1, - anon_sym_SLASH_GT, - STATE(4073), 1, - sym_nested_identifier, - STATE(4354), 1, - sym_jsx_namespace_name, - STATE(4460), 1, - sym_comment, - STATE(6085), 1, - sym_type_parameter, - [157362] = 11, + [157333] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7926), 1, + ACTIONS(7921), 1, sym_escape_sequence, - ACTIONS(7928), 1, + ACTIONS(7923), 1, anon_sym_BQUOTE, - ACTIONS(7930), 1, + ACTIONS(7925), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7932), 1, + ACTIONS(7927), 1, sym__template_chars, - STATE(4461), 1, + STATE(4311), 1, sym_comment, - STATE(4831), 1, + STATE(4788), 1, aux_sym_template_string_repeat1, - STATE(5085), 1, + STATE(5108), 1, aux_sym_template_literal_type_repeat1, - STATE(5588), 1, + STATE(5469), 1, sym_template_substitution, - STATE(6239), 1, + STATE(6164), 1, sym_template_type, - [157396] = 11, + [157367] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7926), 1, - sym_escape_sequence, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7932), 1, - sym__template_chars, - ACTIONS(7934), 1, - anon_sym_BQUOTE, - STATE(4462), 1, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7905), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7907), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7909), 1, + anon_sym_QMARK_COLON, + STATE(4312), 1, sym_comment, - STATE(4831), 1, - aux_sym_template_string_repeat1, - STATE(5085), 1, - aux_sym_template_literal_type_repeat1, - STATE(5588), 1, - sym_template_substitution, - STATE(6239), 1, - sym_template_type, - [157430] = 10, + STATE(4868), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [157395] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7905), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7907), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7909), 1, + anon_sym_QMARK_COLON, + STATE(4313), 1, + sym_comment, + STATE(4866), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [157423] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4018), 1, + ACTIONS(4028), 1, sym_identifier, - ACTIONS(4020), 1, + ACTIONS(4030), 1, anon_sym_LBRACE, - ACTIONS(4022), 1, + ACTIONS(4032), 1, anon_sym_LBRACK, - ACTIONS(7936), 1, + ACTIONS(7929), 1, anon_sym_enum, - STATE(4463), 1, + STATE(4314), 1, sym_comment, - STATE(4584), 1, + STATE(4574), 1, sym__destructuring_pattern, - STATE(5658), 1, + STATE(5481), 1, sym_variable_declarator, - STATE(4667), 2, + STATE(4389), 2, sym_object_pattern, sym_array_pattern, - [157462] = 4, + [157455] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4464), 1, - sym_comment, - ACTIONS(7914), 8, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4028), 1, + sym_identifier, + ACTIONS(4030), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [157482] = 8, + ACTIONS(4032), 1, + anon_sym_LBRACK, + ACTIONS(7931), 1, + anon_sym_enum, + STATE(4315), 1, + sym_comment, + STATE(4574), 1, + sym__destructuring_pattern, + STATE(5443), 1, + sym_variable_declarator, + STATE(4389), 2, + sym_object_pattern, + sym_array_pattern, + [157487] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7902), 1, + ACTIONS(7905), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7904), 1, + ACTIONS(7907), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7906), 1, + ACTIONS(7909), 1, anon_sym_QMARK_COLON, - STATE(4465), 1, + STATE(4316), 1, sym_comment, - STATE(5499), 4, + STATE(5186), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [157510] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7926), 1, - sym_escape_sequence, - ACTIONS(7930), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7932), 1, - sym__template_chars, - ACTIONS(7938), 1, - anon_sym_BQUOTE, - STATE(4466), 1, - sym_comment, - STATE(4831), 1, - aux_sym_template_string_repeat1, - STATE(5085), 1, - aux_sym_template_literal_type_repeat1, - STATE(5588), 1, - sym_template_substitution, - STATE(6239), 1, - sym_template_type, - [157544] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7940), 1, - anon_sym_LBRACE, - ACTIONS(7942), 1, - anon_sym_DOT, - STATE(4467), 1, - sym_comment, - STATE(5010), 1, - sym_statement_block, - ACTIONS(2059), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [157570] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7436), 1, - anon_sym_PIPE, - ACTIONS(7438), 1, - anon_sym_extends, - STATE(4468), 1, - sym_comment, - ACTIONS(7944), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [157596] = 10, + [157515] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4018), 1, + ACTIONS(4028), 1, sym_identifier, - ACTIONS(4020), 1, + ACTIONS(4030), 1, anon_sym_LBRACE, - ACTIONS(4022), 1, + ACTIONS(4032), 1, anon_sym_LBRACK, - ACTIONS(7946), 1, + ACTIONS(7933), 1, anon_sym_enum, - STATE(4469), 1, + STATE(4317), 1, sym_comment, - STATE(4584), 1, + STATE(4574), 1, sym__destructuring_pattern, - STATE(5687), 1, + STATE(5416), 1, sym_variable_declarator, - STATE(4667), 2, + STATE(4389), 2, sym_object_pattern, sym_array_pattern, - [157628] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7516), 1, - sym_identifier, - STATE(4470), 1, - sym_comment, - STATE(5681), 1, - sym_string, - STATE(6152), 1, - sym__module_export_name, - STATE(6931), 1, - sym_export_specifier, - ACTIONS(7518), 2, - anon_sym_type, - anon_sym_typeof, - [157660] = 8, + [157547] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7902), 1, + ACTIONS(7905), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7904), 1, + ACTIONS(7907), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7906), 1, + ACTIONS(7909), 1, anon_sym_QMARK_COLON, - STATE(4471), 1, + STATE(4318), 1, sym_comment, STATE(5214), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [157688] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7468), 1, - anon_sym_BANG, - STATE(4472), 1, - sym_comment, - STATE(5145), 1, - sym_type_annotation, - STATE(6437), 1, - sym__initializer, - ACTIONS(7466), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157718] = 8, + [157575] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - ACTIONS(7902), 1, + ACTIONS(7905), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7904), 1, + ACTIONS(7907), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7906), 1, + ACTIONS(7909), 1, anon_sym_QMARK_COLON, - STATE(4473), 1, + STATE(4319), 1, sym_comment, - STATE(5216), 4, + STATE(5052), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [157746] = 11, + [157603] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7918), 1, + ACTIONS(7935), 1, + sym_identifier, + ACTIONS(7937), 1, anon_sym_const, - ACTIONS(7920), 1, + ACTIONS(7939), 1, anon_sym_GT, - ACTIONS(7948), 1, - sym_identifier, - ACTIONS(7950), 1, + ACTIONS(7941), 1, sym_jsx_identifier, - ACTIONS(7952), 1, + ACTIONS(7943), 1, anon_sym_SLASH_GT, - STATE(4111), 1, + STATE(3939), 1, sym_nested_identifier, - STATE(4441), 1, + STATE(4265), 1, sym_jsx_namespace_name, - STATE(4474), 1, + STATE(4320), 1, sym_comment, - STATE(6085), 1, + STATE(5794), 1, sym_type_parameter, - [157780] = 11, + [157637] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7926), 1, + ACTIONS(7921), 1, sym_escape_sequence, - ACTIONS(7930), 1, + ACTIONS(7925), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7932), 1, + ACTIONS(7927), 1, sym__template_chars, - ACTIONS(7954), 1, + ACTIONS(7945), 1, anon_sym_BQUOTE, - STATE(4475), 1, + STATE(4321), 1, sym_comment, - STATE(4831), 1, + STATE(4788), 1, aux_sym_template_string_repeat1, - STATE(5085), 1, + STATE(5108), 1, aux_sym_template_literal_type_repeat1, - STATE(5588), 1, + STATE(5469), 1, sym_template_substitution, - STATE(6239), 1, + STATE(6164), 1, sym_template_type, - [157814] = 10, + [157671] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7949), 1, + anon_sym_DOT, + STATE(4322), 1, + sym_comment, + ACTIONS(7947), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [157693] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4018), 1, + ACTIONS(4028), 1, sym_identifier, - ACTIONS(4020), 1, + ACTIONS(4030), 1, anon_sym_LBRACE, - ACTIONS(4022), 1, + ACTIONS(4032), 1, anon_sym_LBRACK, - ACTIONS(7956), 1, + ACTIONS(7951), 1, anon_sym_enum, - STATE(4476), 1, + STATE(4323), 1, sym_comment, - STATE(4584), 1, + STATE(4574), 1, sym__destructuring_pattern, - STATE(5759), 1, + STATE(5572), 1, sym_variable_declarator, - STATE(4667), 2, + STATE(4389), 2, sym_object_pattern, sym_array_pattern, - [157846] = 5, + [157725] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7960), 1, - anon_sym_DOT, - STATE(4477), 1, + ACTIONS(7937), 1, + anon_sym_const, + ACTIONS(7939), 1, + anon_sym_GT, + ACTIONS(7953), 1, + sym_identifier, + ACTIONS(7955), 1, + sym_jsx_identifier, + ACTIONS(7957), 1, + anon_sym_SLASH_GT, + STATE(3930), 1, + sym_nested_identifier, + STATE(4270), 1, + sym_jsx_namespace_name, + STATE(4324), 1, sym_comment, - ACTIONS(7958), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [157868] = 8, + STATE(5794), 1, + sym_type_parameter, + [157759] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7902), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7904), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7906), 1, - anon_sym_QMARK_COLON, - STATE(4478), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(7457), 1, + sym_identifier, + STATE(4325), 1, sym_comment, - STATE(5390), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [157896] = 8, + STATE(5551), 1, + sym_string, + STATE(5832), 1, + sym__module_export_name, + STATE(6537), 1, + sym_export_specifier, + ACTIONS(7459), 2, + anon_sym_type, + anon_sym_typeof, + [157791] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, - anon_sym_COLON, - ACTIONS(7902), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7904), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7906), 1, - anon_sym_QMARK_COLON, - STATE(4479), 1, + ACTIONS(7921), 1, + sym_escape_sequence, + ACTIONS(7925), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7927), 1, + sym__template_chars, + ACTIONS(7959), 1, + anon_sym_BQUOTE, + STATE(4326), 1, sym_comment, - STATE(5332), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [157924] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(4741), 1, + aux_sym_template_string_repeat1, + STATE(5108), 1, + aux_sym_template_literal_type_repeat1, + STATE(5469), 1, + sym_template_substitution, + STATE(6164), 1, + sym_template_type, + [157825] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4018), 1, - sym_identifier, - ACTIONS(4020), 1, - anon_sym_LBRACE, - ACTIONS(4022), 1, - anon_sym_LBRACK, - ACTIONS(7962), 1, - anon_sym_enum, - STATE(4480), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7921), 1, + sym_escape_sequence, + ACTIONS(7925), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7927), 1, + sym__template_chars, + ACTIONS(7961), 1, + anon_sym_BQUOTE, + STATE(4327), 1, sym_comment, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(5755), 1, - sym_variable_declarator, - STATE(4667), 2, - sym_object_pattern, - sym_array_pattern, - [157956] = 11, + STATE(4788), 1, + aux_sym_template_string_repeat1, + STATE(5108), 1, + aux_sym_template_literal_type_repeat1, + STATE(5469), 1, + sym_template_substitution, + STATE(6164), 1, + sym_template_type, + [157859] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7926), 1, + ACTIONS(7921), 1, sym_escape_sequence, - ACTIONS(7930), 1, + ACTIONS(7925), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7932), 1, + ACTIONS(7927), 1, sym__template_chars, - ACTIONS(7964), 1, + ACTIONS(7963), 1, anon_sym_BQUOTE, - STATE(4481), 1, + STATE(4328), 1, sym_comment, - STATE(4856), 1, + STATE(4788), 1, aux_sym_template_string_repeat1, - STATE(5085), 1, + STATE(5108), 1, aux_sym_template_literal_type_repeat1, - STATE(5588), 1, + STATE(5469), 1, sym_template_substitution, - STATE(6239), 1, + STATE(6164), 1, sym_template_type, - [157990] = 7, + [157893] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7436), 1, - anon_sym_PIPE, - ACTIONS(7438), 1, - anon_sym_extends, - STATE(4482), 1, + ACTIONS(7965), 1, + anon_sym_LBRACE, + ACTIONS(7967), 1, + anon_sym_DOT, + STATE(4329), 1, sym_comment, - ACTIONS(7966), 5, + STATE(4996), 1, + sym_statement_block, + ACTIONS(2061), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [158016] = 7, + [157919] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7940), 1, + ACTIONS(7965), 1, anon_sym_LBRACE, - ACTIONS(7968), 1, + ACTIONS(7969), 1, anon_sym_DOT, - STATE(4483), 1, + STATE(4330), 1, sym_comment, - STATE(5010), 1, + STATE(4996), 1, sym_statement_block, - ACTIONS(2059), 5, + ACTIONS(2061), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [157945] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4331), 1, + sym_comment, + ACTIONS(6224), 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, + [157965] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4332), 1, + sym_comment, + ACTIONS(7971), 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, - [158042] = 11, + [157985] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7171), 1, + anon_sym_COLON, + ACTIONS(7905), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7907), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7909), 1, + anon_sym_QMARK_COLON, + STATE(4333), 1, + sym_comment, + STATE(5150), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [158013] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7926), 1, + ACTIONS(7921), 1, sym_escape_sequence, - ACTIONS(7930), 1, + ACTIONS(7925), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7932), 1, + ACTIONS(7927), 1, sym__template_chars, - ACTIONS(7970), 1, + ACTIONS(7973), 1, anon_sym_BQUOTE, - STATE(4484), 1, + STATE(4334), 1, sym_comment, - STATE(4831), 1, + STATE(4741), 1, aux_sym_template_string_repeat1, - STATE(5174), 1, + STATE(5108), 1, aux_sym_template_literal_type_repeat1, - STATE(5588), 1, + STATE(5469), 1, sym_template_substitution, - STATE(6239), 1, + STATE(6164), 1, sym_template_type, - [158076] = 11, + [158047] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7926), 1, + ACTIONS(7921), 1, sym_escape_sequence, - ACTIONS(7930), 1, + ACTIONS(7925), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7932), 1, + ACTIONS(7927), 1, sym__template_chars, - ACTIONS(7972), 1, + ACTIONS(7975), 1, anon_sym_BQUOTE, - STATE(4485), 1, + STATE(4335), 1, sym_comment, - STATE(4831), 1, + STATE(4788), 1, aux_sym_template_string_repeat1, - STATE(5085), 1, + STATE(5108), 1, aux_sym_template_literal_type_repeat1, - STATE(5588), 1, + STATE(5469), 1, sym_template_substitution, - STATE(6239), 1, + STATE(6164), 1, sym_template_type, - [158110] = 11, + [158081] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7926), 1, + ACTIONS(7921), 1, sym_escape_sequence, - ACTIONS(7930), 1, + ACTIONS(7925), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7932), 1, + ACTIONS(7927), 1, sym__template_chars, - ACTIONS(7974), 1, + ACTIONS(7977), 1, anon_sym_BQUOTE, - STATE(4486), 1, + STATE(4336), 1, sym_comment, - STATE(4856), 1, + STATE(4788), 1, aux_sym_template_string_repeat1, - STATE(5085), 1, + STATE(5020), 1, aux_sym_template_literal_type_repeat1, - STATE(5588), 1, + STATE(5469), 1, sym_template_substitution, - STATE(6239), 1, + STATE(6164), 1, sym_template_type, - [158144] = 8, + [158115] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7979), 1, anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4487), 1, + STATE(4337), 1, sym_comment, - STATE(5158), 1, - sym_type_annotation, - STATE(6436), 1, - sym__initializer, - ACTIONS(7404), 3, - sym__automatic_semicolon, + ACTIONS(7971), 7, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [158171] = 8, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [158137] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7981), 1, anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4488), 1, + STATE(4338), 1, sym_comment, - STATE(5005), 1, - sym_type_annotation, - STATE(5800), 1, - sym__initializer, - ACTIONS(7370), 3, - sym__automatic_semicolon, + ACTIONS(6224), 7, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [158198] = 8, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [158159] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4028), 1, + sym_identifier, + ACTIONS(4030), 1, + anon_sym_LBRACE, + ACTIONS(4032), 1, + anon_sym_LBRACK, + ACTIONS(7983), 1, + anon_sym_enum, + STATE(4339), 1, + sym_comment, + STATE(4574), 1, + sym__destructuring_pattern, + STATE(5575), 1, + sym_variable_declarator, + STATE(4389), 2, + sym_object_pattern, + sym_array_pattern, + [158191] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4489), 1, + STATE(4340), 1, sym_comment, - STATE(5074), 1, + STATE(5365), 1, sym_type_annotation, - STATE(5848), 1, + STATE(6063), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7376), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158225] = 8, + [158218] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7589), 1, + anon_sym_LBRACE, + STATE(3182), 1, + sym_class_body, + STATE(4341), 1, + sym_comment, + STATE(5785), 1, + sym_extends_clause, + STATE(6592), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [158249] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4490), 1, + STATE(4342), 1, sym_comment, - STATE(5019), 1, + STATE(4905), 1, sym_type_annotation, - STATE(6270), 1, + STATE(5978), 1, sym__initializer, - ACTIONS(7420), 3, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158252] = 8, + [158276] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4491), 1, + STATE(4343), 1, sym_comment, - STATE(5004), 1, + STATE(4903), 1, sym_type_annotation, - STATE(5809), 1, + STATE(5977), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158279] = 10, + [158303] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7554), 1, + ACTIONS(7625), 1, anon_sym_LBRACE, - STATE(317), 1, - sym_class_body, - STATE(4492), 1, + STATE(4344), 1, sym_comment, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6643), 1, + STATE(6542), 1, sym_class_heritage, - STATE(7191), 1, + STATE(6733), 1, + sym_class_body, + STATE(7265), 1, sym_implements_clause, - [158310] = 8, + [158334] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4493), 1, + STATE(4345), 1, sym_comment, - STATE(5025), 1, + STATE(4892), 1, sym_type_annotation, - STATE(5826), 1, + STATE(5945), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158337] = 8, + [158361] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4494), 1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7553), 1, + anon_sym_LBRACE, + STATE(2451), 1, + sym_class_body, + STATE(4346), 1, sym_comment, - STATE(5093), 1, - sym_type_annotation, - STATE(5858), 1, - sym__initializer, - ACTIONS(7370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158364] = 8, + STATE(5785), 1, + sym_extends_clause, + STATE(6475), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [158392] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7617), 1, + anon_sym_LBRACE, + STATE(4347), 1, + sym_comment, + STATE(5785), 1, + sym_extends_clause, + STATE(6223), 1, + sym_class_body, + STATE(6436), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [158423] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7553), 1, + anon_sym_LBRACE, + STATE(2430), 1, + sym_class_body, + STATE(4348), 1, + sym_comment, + STATE(5785), 1, + sym_extends_clause, + STATE(6430), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [158454] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4495), 1, + STATE(4349), 1, sym_comment, - STATE(5535), 1, + STATE(4877), 1, sym_type_annotation, - STATE(6100), 1, + STATE(5927), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158391] = 8, + [158481] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4496), 1, + STATE(4350), 1, sym_comment, - STATE(5238), 1, + STATE(4923), 1, sym_type_annotation, - STATE(6464), 1, + STATE(6001), 1, sym__initializer, - ACTIONS(7404), 3, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158418] = 10, + [158508] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7617), 1, + anon_sym_LBRACE, + STATE(4351), 1, + sym_comment, + STATE(5785), 1, + sym_extends_clause, + STATE(6030), 1, + sym_class_body, + STATE(6599), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [158539] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7672), 1, + ACTIONS(7553), 1, anon_sym_LBRACE, - STATE(1628), 1, + STATE(2529), 1, sym_class_body, - STATE(4497), 1, + STATE(4352), 1, sym_comment, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6504), 1, + STATE(6642), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [158449] = 8, + [158570] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4498), 1, + STATE(4353), 1, sym_comment, - STATE(5397), 1, + STATE(4908), 1, sym_type_annotation, - STATE(6277), 1, + STATE(5981), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158476] = 10, + [158597] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7682), 1, - anon_sym_LBRACE, - STATE(4499), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4354), 1, sym_comment, - STATE(5553), 1, - sym_class_body, - STATE(6029), 1, - sym_extends_clause, - STATE(6775), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [158507] = 8, + STATE(4910), 1, + sym_type_annotation, + STATE(5982), 1, + sym__initializer, + ACTIONS(7394), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158624] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4500), 1, + STATE(4355), 1, sym_comment, - STATE(5277), 1, + STATE(4853), 1, sym_type_annotation, - STATE(5963), 1, + STATE(5911), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158534] = 5, + [158651] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7976), 1, - sym__automatic_semicolon, - STATE(4501), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4356), 1, sym_comment, - ACTIONS(2095), 6, + STATE(4851), 1, + sym_type_annotation, + STATE(5905), 1, + sym__initializer, + ACTIONS(7394), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [158555] = 4, + anon_sym_SEMI, + [158678] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4502), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4357), 1, sym_comment, - ACTIONS(7738), 7, + STATE(5120), 1, + sym_type_annotation, + STATE(6168), 1, + sym__initializer, + ACTIONS(7426), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [158574] = 8, + [158705] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4503), 1, + STATE(4358), 1, sym_comment, - STATE(5477), 1, + STATE(5125), 1, sym_type_annotation, - STATE(5960), 1, + STATE(5908), 1, sym__initializer, - ACTIONS(7406), 3, + ACTIONS(7985), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158601] = 8, + [158732] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4504), 1, + STATE(4359), 1, sym_comment, - STATE(5342), 1, + STATE(5155), 1, sym_type_annotation, - STATE(5994), 1, + STATE(5909), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7985), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158628] = 8, + [158759] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4505), 1, + STATE(4360), 1, sym_comment, - STATE(5016), 1, + STATE(4925), 1, sym_type_annotation, - STATE(6271), 1, + STATE(6002), 1, sym__initializer, - ACTIONS(7420), 3, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158655] = 6, + [158786] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(4506), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4361), 1, sym_comment, - STATE(6756), 1, - sym_statement_block, - ACTIONS(7980), 5, + STATE(4911), 1, + sym_type_annotation, + STATE(5896), 1, + sym__initializer, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [158678] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [158813] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4020), 1, - anon_sym_LBRACE, - ACTIONS(4022), 1, - anon_sym_LBRACK, - ACTIONS(7982), 1, - sym_identifier, - STATE(4507), 1, - sym_comment, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(5754), 1, - sym_variable_declarator, - STATE(4667), 2, - sym_object_pattern, - sym_array_pattern, - [158707] = 9, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4141), 1, - anon_sym_LT, - ACTIONS(7984), 1, - sym_identifier, - ACTIONS(7986), 1, - anon_sym_LPAREN, - STATE(3306), 1, - sym_arguments, - STATE(4508), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4362), 1, sym_comment, - STATE(6563), 1, - sym_type_arguments, - ACTIONS(7988), 2, - anon_sym_LBRACK, - sym_private_property_identifier, - [158736] = 10, + STATE(4936), 1, + sym_type_annotation, + STATE(5894), 1, + sym__initializer, + ACTIONS(7394), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158840] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7674), 1, + ACTIONS(7625), 1, anon_sym_LBRACE, - STATE(2613), 1, - sym_class_body, - STATE(4509), 1, + STATE(4363), 1, sym_comment, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6904), 1, + STATE(6750), 1, sym_class_heritage, - STATE(7191), 1, + STATE(6954), 1, + sym_class_body, + STATE(7265), 1, sym_implements_clause, - [158767] = 8, + [158871] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4510), 1, + STATE(4364), 1, sym_comment, - STATE(5185), 1, + STATE(4947), 1, sym_type_annotation, - STATE(5900), 1, + STATE(6048), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158794] = 4, + [158898] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4511), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4365), 1, sym_comment, - ACTIONS(7616), 7, + STATE(4949), 1, + sym_type_annotation, + STATE(6049), 1, + sym__initializer, + ACTIONS(7394), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [158813] = 8, + [158925] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4512), 1, + STATE(4366), 1, sym_comment, - STATE(5194), 1, + STATE(4957), 1, sym_type_annotation, - STATE(5902), 1, + STATE(6066), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158840] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7990), 1, - sym_identifier, - ACTIONS(7992), 1, - anon_sym_STAR, - ACTIONS(7994), 1, - anon_sym_LPAREN, - STATE(4513), 1, - sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(6573), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - [158871] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7626), 1, - anon_sym_LBRACE, - STATE(390), 1, - sym_class_body, - STATE(4514), 1, - sym_comment, - STATE(6029), 1, - sym_extends_clause, - STATE(6781), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [158902] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7552), 1, - anon_sym_LBRACE, - STATE(1157), 1, - sym_class_body, - STATE(4515), 1, - sym_comment, - STATE(6029), 1, - sym_extends_clause, - STATE(6784), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [158933] = 10, + [158952] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7682), 1, - anon_sym_LBRACE, - STATE(4516), 1, + ACTIONS(7987), 1, + sym__automatic_semicolon, + STATE(4367), 1, sym_comment, - STATE(5967), 1, - sym_class_body, - STATE(6029), 1, - sym_extends_clause, - STATE(6905), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [158964] = 8, + ACTIONS(2115), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [158973] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4517), 1, + STATE(4368), 1, sym_comment, - STATE(5294), 1, + STATE(4959), 1, sym_type_annotation, - STATE(6106), 1, + STATE(6067), 1, sym__initializer, - ACTIONS(7404), 3, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158991] = 8, + [159000] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4518), 1, + STATE(4369), 1, sym_comment, - STATE(5285), 1, + STATE(4973), 1, sym_type_annotation, - STATE(6112), 1, + STATE(6078), 1, sym__initializer, - ACTIONS(7404), 3, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159018] = 10, + [159027] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(128), 1, anon_sym_import, - ACTIONS(7996), 1, + ACTIONS(7989), 1, sym_identifier, - STATE(2640), 1, + STATE(2476), 1, sym__type_query_subscript_expression, - STATE(2642), 1, + STATE(2487), 1, sym__type_query_member_expression, - STATE(3048), 1, - sym__type_query_call_expression, - STATE(3052), 1, + STATE(2865), 1, sym__type_query_instantiation_expression, - STATE(4519), 1, + STATE(2866), 1, + sym__type_query_call_expression, + STATE(4370), 1, sym_comment, - STATE(5574), 1, + STATE(5463), 1, sym_import, - [159049] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4520), 1, - sym_comment, - STATE(5549), 1, - sym_type_annotation, - STATE(6030), 1, - sym__initializer, - ACTIONS(7404), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159076] = 8, + [159058] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4521), 1, + STATE(4371), 1, sym_comment, - STATE(5229), 1, + STATE(5010), 1, sym_type_annotation, - STATE(5921), 1, + STATE(5880), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159103] = 10, + [159085] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7544), 1, - anon_sym_LBRACE, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - STATE(3104), 1, + ACTIONS(7589), 1, + anon_sym_LBRACE, + STATE(3023), 1, sym_class_body, - STATE(4522), 1, + STATE(4372), 1, sym_comment, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6850), 1, + STATE(6380), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [159134] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7994), 1, - anon_sym_LPAREN, - ACTIONS(7998), 1, - sym_identifier, - ACTIONS(8000), 1, - anon_sym_STAR, - STATE(4523), 1, - sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(6683), 1, - sym_type_parameters, - STATE(7098), 1, - sym__call_signature, - [159165] = 8, + [159116] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4524), 1, + STATE(4373), 1, sym_comment, - STATE(5073), 1, + STATE(4975), 1, sym_type_annotation, - STATE(6255), 1, + STATE(6083), 1, sym__initializer, - ACTIONS(7420), 3, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159192] = 8, + [159143] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4525), 1, + STATE(4374), 1, sym_comment, - STATE(5076), 1, + STATE(4984), 1, sym_type_annotation, - STATE(6248), 1, + STATE(6091), 1, sym__initializer, - ACTIONS(7420), 3, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159219] = 8, + [159170] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4526), 1, + STATE(4375), 1, sym_comment, - STATE(5038), 1, + STATE(4986), 1, sym_type_annotation, - STATE(5856), 1, + STATE(6092), 1, sym__initializer, - ACTIONS(7408), 3, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159246] = 8, + [159197] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4527), 1, + STATE(4376), 1, sym_comment, - STATE(5513), 1, + STATE(4992), 1, sym_type_annotation, - STATE(6131), 1, + STATE(6095), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159273] = 6, + [159224] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(4528), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4377), 1, sym_comment, - STATE(6618), 1, - sym_statement_block, - ACTIONS(8002), 5, + STATE(5005), 1, + sym_type_annotation, + STATE(6107), 1, + sym__initializer, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159296] = 8, + [159251] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4529), 1, + STATE(4378), 1, sym_comment, - STATE(5504), 1, + STATE(5042), 1, sym_type_annotation, - STATE(6047), 1, + STATE(5992), 1, sym__initializer, - ACTIONS(7368), 3, + ACTIONS(7392), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159323] = 10, + [159278] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(4157), 1, + anon_sym_LT, + ACTIONS(7991), 1, + sym_identifier, + ACTIONS(7993), 1, + anon_sym_LPAREN, + STATE(2560), 1, + sym_arguments, + STATE(4379), 1, + sym_comment, + STATE(6443), 1, + sym_type_arguments, + ACTIONS(7995), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [159307] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(209), 1, + anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7997), 1, + anon_sym_LT, + ACTIONS(7999), 1, anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7674), 1, - anon_sym_LBRACE, - STATE(2605), 1, - sym_class_body, - STATE(4530), 1, + ACTIONS(8001), 1, + anon_sym_LBRACE_PIPE, + STATE(4380), 1, sym_comment, - STATE(6029), 1, - sym_extends_clause, - STATE(6948), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [159354] = 10, + STATE(5219), 1, + sym_type_parameters, + STATE(6242), 1, + sym_extends_type_clause, + STATE(6838), 1, + sym_object_type, + [159338] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(8003), 1, + sym_identifier, + ACTIONS(8005), 1, + anon_sym_DOT, + STATE(4381), 1, + sym_comment, + STATE(5073), 1, + sym_nested_identifier, + STATE(5616), 1, + sym_string, + STATE(6527), 1, + sym__module, + [159369] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4103), 1, + anon_sym_DQUOTE, + ACTIONS(4105), 1, + anon_sym_SQUOTE, + ACTIONS(8007), 1, + sym_identifier, + ACTIONS(8009), 1, + anon_sym_DOT, + STATE(930), 1, + sym_nested_identifier, + STATE(1068), 1, + sym_string, + STATE(1331), 1, + sym__module, + STATE(4382), 1, + sym_comment, + [159400] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7997), 1, + anon_sym_LT, + ACTIONS(7999), 1, anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7682), 1, + ACTIONS(8011), 1, anon_sym_LBRACE, - STATE(4531), 1, + ACTIONS(8013), 1, + anon_sym_LBRACE_PIPE, + STATE(1298), 1, + sym_object_type, + STATE(4383), 1, sym_comment, - STATE(5398), 1, - sym_class_body, - STATE(6029), 1, - sym_extends_clause, - STATE(6787), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [159385] = 8, + STATE(4891), 1, + sym_type_parameters, + STATE(5663), 1, + sym_extends_type_clause, + [159431] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4532), 1, + STATE(4384), 1, sym_comment, - STATE(5163), 1, + STATE(5113), 1, sym_type_annotation, - STATE(6161), 1, - sym__initializer, - ACTIONS(7404), 3, + ACTIONS(8015), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [159412] = 8, + anon_sym_PIPE_RBRACE, + [159454] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7855), 1, + anon_sym_LBRACE, + STATE(382), 1, + sym_class_body, + STATE(4385), 1, + sym_comment, + STATE(5785), 1, + sym_extends_clause, + STATE(6473), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [159485] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4533), 1, + STATE(4386), 1, sym_comment, - STATE(5148), 1, + STATE(5135), 1, sym_type_annotation, - STATE(6164), 1, - sym__initializer, - ACTIONS(7404), 3, + ACTIONS(8017), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [159439] = 6, + anon_sym_PIPE_RBRACE, + [159508] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(4534), 1, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4387), 1, sym_comment, - STATE(6578), 1, - sym_statement_block, - ACTIONS(8004), 5, + STATE(5190), 1, + sym_type_annotation, + ACTIONS(8019), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [159462] = 8, + [159531] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(128), 1, + anon_sym_import, + ACTIONS(8021), 1, + sym_identifier, + STATE(3648), 1, + sym__type_query_subscript_expression, + STATE(3665), 1, + sym__type_query_member_expression, + STATE(3904), 1, + sym__type_query_call_expression, + STATE(4006), 1, + sym__type_query_instantiation_expression, + STATE(4388), 1, + sym_comment, + STATE(5603), 1, + sym_import, + [159562] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4535), 1, + STATE(4389), 1, sym_comment, - STATE(5012), 1, - sym_type_annotation, - STATE(6264), 1, - sym__initializer, - ACTIONS(7420), 3, + ACTIONS(7889), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [159489] = 8, + anon_sym_COLON, + [159581] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7853), 1, + anon_sym_LBRACE, + STATE(1111), 1, + sym_class_body, + STATE(4390), 1, + sym_comment, + STATE(5785), 1, + sym_extends_clause, + STATE(6538), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [159612] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4536), 1, + STATE(4391), 1, sym_comment, - STATE(5144), 1, + STATE(5149), 1, sym_type_annotation, - STATE(6176), 1, + STATE(6183), 1, sym__initializer, - ACTIONS(7404), 3, + ACTIONS(7376), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159516] = 8, + [159639] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7845), 1, + anon_sym_LBRACE, + STATE(1209), 1, + sym_class_body, + STATE(4392), 1, + sym_comment, + STATE(5785), 1, + sym_extends_clause, + STATE(6587), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [159670] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4537), 1, + STATE(4393), 1, sym_comment, - STATE(5142), 1, + STATE(5220), 1, sym_type_annotation, - STATE(6180), 1, + STATE(6243), 1, sym__initializer, - ACTIONS(7404), 3, + ACTIONS(7376), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159543] = 6, + [159697] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7855), 1, anon_sym_LBRACE, - STATE(4538), 1, + STATE(409), 1, + sym_class_body, + STATE(4394), 1, sym_comment, - STATE(6748), 1, - sym_statement_block, - ACTIONS(8006), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159566] = 4, + STATE(5785), 1, + sym_extends_clause, + STATE(6608), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [159728] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4539), 1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7553), 1, + anon_sym_LBRACE, + STATE(2403), 1, + sym_class_body, + STATE(4395), 1, sym_comment, - ACTIONS(2147), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159585] = 7, + STATE(5785), 1, + sym_extends_clause, + STATE(6524), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [159759] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8008), 1, - anon_sym_COMMA, - ACTIONS(8010), 1, - anon_sym_RBRACE, - STATE(4540), 1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7853), 1, + anon_sym_LBRACE, + STATE(1090), 1, + sym_class_body, + STATE(4396), 1, sym_comment, - STATE(5814), 1, - aux_sym_object_repeat1, - ACTIONS(4514), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [159610] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5785), 1, + sym_extends_clause, + STATE(6631), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [159790] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4020), 1, - anon_sym_LBRACE, - ACTIONS(4022), 1, - anon_sym_LBRACK, - ACTIONS(7982), 1, - sym_identifier, - STATE(4541), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4397), 1, sym_comment, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(5755), 1, - sym_variable_declarator, - STATE(4667), 2, - sym_object_pattern, - sym_array_pattern, - [159639] = 6, + ACTIONS(7793), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [159809] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(4542), 1, - sym_comment, - STATE(6958), 1, - sym_statement_block, - ACTIONS(8012), 5, + ACTIONS(8023), 1, sym__automatic_semicolon, + STATE(4398), 1, + sym_comment, + ACTIONS(2115), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159662] = 8, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [159830] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7845), 1, + anon_sym_LBRACE, + STATE(1438), 1, + sym_class_body, + STATE(4399), 1, + sym_comment, + STATE(5785), 1, + sym_extends_clause, + STATE(6653), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [159861] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4543), 1, + STATE(4400), 1, sym_comment, - STATE(5043), 1, + STATE(5305), 1, sym_type_annotation, - STATE(6360), 1, + STATE(6317), 1, sym__initializer, - ACTIONS(7420), 3, + ACTIONS(7376), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159689] = 8, + [159888] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4544), 1, + STATE(4401), 1, sym_comment, - STATE(5236), 1, + STATE(5302), 1, sym_type_annotation, - STATE(5922), 1, + STATE(6329), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7376), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159716] = 8, + [159915] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4545), 1, + STATE(4402), 1, sym_comment, - STATE(5040), 1, + STATE(5400), 1, sym_type_annotation, - STATE(6359), 1, + STATE(6327), 1, sym__initializer, - ACTIONS(7420), 3, + ACTIONS(7376), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159743] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [159942] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7994), 1, - anon_sym_LPAREN, - ACTIONS(8014), 1, - sym_identifier, - ACTIONS(8016), 1, - anon_sym_STAR, - STATE(4546), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8025), 1, + anon_sym_COMMA, + ACTIONS(8027), 1, + anon_sym_RBRACE, + STATE(4403), 1, sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(6683), 1, - sym_type_parameters, - STATE(7098), 1, - sym__call_signature, - [159774] = 8, + STATE(5670), 1, + aux_sym_object_repeat1, + ACTIONS(4518), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [159967] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4547), 1, + STATE(4404), 1, sym_comment, - STATE(5469), 1, + STATE(5297), 1, sym_type_annotation, - STATE(6045), 1, + STATE(6025), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7376), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159801] = 4, + [159994] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4548), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4405), 1, sym_comment, - ACTIONS(8018), 7, + STATE(5089), 1, + sym_type_annotation, + STATE(5850), 1, + sym__initializer, + ACTIONS(7394), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [159820] = 6, + [160021] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(4549), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4406), 1, sym_comment, - STATE(6624), 1, - sym_statement_block, - ACTIONS(8006), 5, + STATE(5231), 1, + sym_type_annotation, + STATE(5989), 1, + sym__initializer, + ACTIONS(7376), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159843] = 10, + [160048] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7544), 1, - anon_sym_LBRACE, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - STATE(3314), 1, - sym_class_body, - STATE(4550), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4407), 1, sym_comment, - STATE(6029), 1, - sym_extends_clause, - STATE(6762), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [159874] = 4, + STATE(5166), 1, + sym_type_annotation, + STATE(5939), 1, + sym__initializer, + ACTIONS(7412), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160075] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4551), 1, + STATE(4408), 1, sym_comment, - ACTIONS(5914), 7, + ACTIONS(7773), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -352671,2193 +340369,1809 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [159893] = 10, + [160094] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4091), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(4093), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(8020), 1, + ACTIONS(8029), 1, sym_identifier, - ACTIONS(8022), 1, + ACTIONS(8031), 1, anon_sym_DOT, - STATE(925), 1, + STATE(4330), 1, sym_nested_identifier, - STATE(1032), 1, + STATE(4409), 1, + sym_comment, + STATE(4500), 1, sym_string, - STATE(1357), 1, + STATE(5038), 1, sym__module, - STATE(4552), 1, - sym_comment, - [159924] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8024), 1, - anon_sym_LBRACE, - ACTIONS(8026), 1, - anon_sym_LT, - ACTIONS(8028), 1, - anon_sym_extends, - ACTIONS(8030), 1, - anon_sym_LBRACE_PIPE, - STATE(1283), 1, - sym_object_type, - STATE(4553), 1, - sym_comment, - STATE(5290), 1, - sym_type_parameters, - STATE(6392), 1, - sym_extends_type_clause, - [159955] = 8, + [160125] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4554), 1, + STATE(4410), 1, sym_comment, - STATE(5037), 1, + STATE(5225), 1, sym_type_annotation, - STATE(6355), 1, + STATE(5892), 1, sym__initializer, - ACTIONS(7404), 3, + ACTIONS(7378), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159982] = 10, + [160152] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1344), 1, + anon_sym_LBRACE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7997), 1, + anon_sym_LT, + ACTIONS(7999), 1, + anon_sym_extends, + ACTIONS(8033), 1, + anon_sym_LBRACE_PIPE, + STATE(4411), 1, + sym_comment, + STATE(5195), 1, + sym_type_parameters, + STATE(5285), 1, + sym_object_type, + STATE(5956), 1, + sym_extends_type_clause, + [160183] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7680), 1, + ACTIONS(7735), 1, anon_sym_LBRACE, - STATE(1015), 1, + STATE(368), 1, sym_class_body, - STATE(4555), 1, + STATE(4412), 1, sym_comment, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6635), 1, + STATE(6938), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [160013] = 9, + [160214] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4141), 1, - anon_sym_LT, - ACTIONS(7984), 1, + ACTIONS(128), 1, + anon_sym_import, + ACTIONS(8035), 1, sym_identifier, - ACTIONS(8032), 1, - anon_sym_LPAREN, - STATE(2670), 1, - sym_arguments, - STATE(4556), 1, + STATE(2207), 1, + sym__type_query_subscript_expression, + STATE(2209), 1, + sym__type_query_member_expression, + STATE(2250), 1, + sym__type_query_call_expression, + STATE(2252), 1, + sym__type_query_instantiation_expression, + STATE(4413), 1, sym_comment, - STATE(6803), 1, - sym_type_arguments, - ACTIONS(7988), 2, - anon_sym_LBRACK, - sym_private_property_identifier, - [160042] = 8, + STATE(5472), 1, + sym_import, + [160245] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4557), 1, + STATE(4414), 1, sym_comment, - STATE(5119), 1, + STATE(5237), 1, sym_type_annotation, - STATE(6211), 1, + STATE(5805), 1, sym__initializer, - ACTIONS(8034), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160069] = 4, + [160272] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4558), 1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7617), 1, + anon_sym_LBRACE, + STATE(4415), 1, sym_comment, - ACTIONS(2253), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160088] = 6, + STATE(5092), 1, + sym_class_body, + STATE(5785), 1, + sym_extends_clause, + STATE(6895), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [160303] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(4559), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4416), 1, sym_comment, - STATE(6766), 1, - sym_statement_block, - ACTIONS(8036), 5, + STATE(5310), 1, + sym_type_annotation, + STATE(5784), 1, + sym__initializer, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160111] = 5, + [160330] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8038), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(4560), 1, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4417), 1, sym_comment, - ACTIONS(4255), 6, + STATE(5316), 1, + sym_type_annotation, + STATE(5782), 1, + sym__initializer, + ACTIONS(7386), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [160132] = 6, + anon_sym_SEMI, + [160357] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4561), 1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7617), 1, + anon_sym_LBRACE, + STATE(4418), 1, sym_comment, - STATE(5247), 1, - sym_type_annotation, - ACTIONS(8041), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160155] = 10, + STATE(5262), 1, + sym_class_body, + STATE(5785), 1, + sym_extends_clause, + STATE(6870), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [160388] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + STATE(4419), 1, + sym_comment, + ACTIONS(2237), 7, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, anon_sym_LT, - ACTIONS(7994), 1, - anon_sym_LPAREN, - ACTIONS(8043), 1, sym_identifier, - ACTIONS(8045), 1, - anon_sym_STAR, - STATE(4562), 1, - sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(6573), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - [160186] = 4, + [160407] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4563), 1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7735), 1, + anon_sym_LBRACE, + STATE(422), 1, + sym_class_body, + STATE(4420), 1, sym_comment, - ACTIONS(7824), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [160205] = 10, + STATE(5785), 1, + sym_extends_clause, + STATE(6868), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [160438] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7644), 1, + ACTIONS(7617), 1, anon_sym_LBRACE, - STATE(945), 1, - sym_class_body, - STATE(4564), 1, + STATE(4421), 1, sym_comment, - STATE(6029), 1, + STATE(5337), 1, + sym_class_body, + STATE(5785), 1, sym_extends_clause, - STATE(6625), 1, + STATE(6865), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [160236] = 10, + [160469] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7682), 1, + ACTIONS(7605), 1, anon_sym_LBRACE, - STATE(4565), 1, - sym_comment, - STATE(5352), 1, + STATE(1496), 1, sym_class_body, - STATE(6029), 1, + STATE(4422), 1, + sym_comment, + STATE(5785), 1, sym_extends_clause, - STATE(6814), 1, + STATE(6758), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [160267] = 8, + [160500] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4566), 1, + STATE(4423), 1, sym_comment, - STATE(5205), 1, + STATE(5350), 1, sym_type_annotation, - STATE(6074), 1, + STATE(5764), 1, sym__initializer, - ACTIONS(7404), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160294] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(209), 1, - anon_sym_LBRACE, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8026), 1, - anon_sym_LT, - ACTIONS(8028), 1, - anon_sym_extends, - ACTIONS(8047), 1, - anon_sym_LBRACE_PIPE, - STATE(4567), 1, - sym_comment, - STATE(5402), 1, - sym_type_parameters, - STATE(6262), 1, - sym_extends_type_clause, - STATE(7116), 1, - sym_object_type, - [160325] = 6, + [160527] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(4568), 1, + STATE(4424), 1, sym_comment, - STATE(6796), 1, - sym_statement_block, - ACTIONS(8049), 5, + ACTIONS(2223), 7, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [160348] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [160546] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(8051), 1, - sym_identifier, - ACTIONS(8053), 1, - anon_sym_DOT, - STATE(4569), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4425), 1, sym_comment, - STATE(5470), 1, - sym_nested_identifier, - STATE(5576), 1, - sym_string, - STATE(6960), 1, - sym__module, - [160379] = 4, + STATE(5355), 1, + sym_type_annotation, + STATE(5758), 1, + sym__initializer, + ACTIONS(7386), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160573] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4570), 1, + STATE(4426), 1, sym_comment, - ACTIONS(5926), 7, + ACTIONS(2115), 7, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - anon_sym_COLON, - [160398] = 6, + anon_sym_PIPE_RBRACE, + [160592] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(4571), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4427), 1, sym_comment, - STATE(6794), 1, - sym_statement_block, - ACTIONS(8055), 5, + STATE(5366), 1, + sym_type_annotation, + STATE(5749), 1, + sym__initializer, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160421] = 8, + [160619] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4572), 1, + STATE(4428), 1, sym_comment, - STATE(5421), 1, + STATE(5373), 1, sym_type_annotation, - STATE(6073), 1, + STATE(5747), 1, sym__initializer, - ACTIONS(7404), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160448] = 8, + [160646] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4573), 1, + STATE(4429), 1, sym_comment, - STATE(5426), 1, + STATE(5312), 1, sym_type_annotation, - STATE(6070), 1, + STATE(6036), 1, sym__initializer, - ACTIONS(7404), 3, + ACTIONS(7985), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160475] = 8, + [160673] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4574), 1, + STATE(4430), 1, sym_comment, - STATE(5427), 1, + STATE(5328), 1, sym_type_annotation, - STATE(6068), 1, + STATE(6038), 1, sym__initializer, - ACTIONS(7404), 3, + ACTIONS(7985), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160700] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8037), 1, sym__automatic_semicolon, + STATE(4431), 1, + sym_comment, + ACTIONS(2095), 6, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [160502] = 8, + anon_sym_PIPE_RBRACE, + [160721] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4575), 1, + STATE(4432), 1, sym_comment, - STATE(4994), 1, + STATE(5393), 1, sym_type_annotation, - STATE(6280), 1, + STATE(5742), 1, sym__initializer, - ACTIONS(7420), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160529] = 8, + [160748] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4576), 1, + STATE(4433), 1, sym_comment, - STATE(4996), 1, + STATE(5407), 1, sym_type_annotation, - STATE(6282), 1, + STATE(5741), 1, sym__initializer, - ACTIONS(7420), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160556] = 10, + [160775] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7696), 1, + ACTIONS(7617), 1, anon_sym_LBRACE, - STATE(4577), 1, + STATE(4434), 1, sym_comment, - STATE(6029), 1, - sym_extends_clause, - STATE(6846), 1, + STATE(5278), 1, sym_class_body, - STATE(7014), 1, + STATE(5785), 1, + sym_extends_clause, + STATE(6827), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [160587] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7994), 1, - anon_sym_LPAREN, - ACTIONS(8057), 1, - sym_identifier, - ACTIONS(8059), 1, - anon_sym_STAR, - STATE(4578), 1, - sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(6683), 1, - sym_type_parameters, - STATE(7098), 1, - sym__call_signature, - [160618] = 8, + [160806] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4579), 1, + STATE(4435), 1, sym_comment, - STATE(5312), 1, + STATE(5367), 1, sym_type_annotation, - STATE(6105), 1, + STATE(5729), 1, sym__initializer, - ACTIONS(7368), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160645] = 8, + [160833] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4580), 1, + STATE(4436), 1, sym_comment, - STATE(5434), 1, + STATE(5356), 1, sym_type_annotation, - STATE(6061), 1, + STATE(5728), 1, sym__initializer, - ACTIONS(7404), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160672] = 6, + [160860] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4437), 1, + sym_comment, + ACTIONS(2233), 7, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + anon_sym_SLASH_GT, + anon_sym_LT, + sym_identifier, + [160879] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(4581), 1, + STATE(4438), 1, sym_comment, - STATE(6490), 1, - sym_statement_block, - ACTIONS(8061), 5, + ACTIONS(7643), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160695] = 8, + anon_sym_COLON, + [160898] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4582), 1, + STATE(4439), 1, sym_comment, - STATE(5141), 1, + STATE(5211), 1, sym_type_annotation, - STATE(6435), 1, + STATE(5709), 1, sym__initializer, - ACTIONS(7420), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [160722] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(4583), 1, - sym_comment, - STATE(6995), 1, - sym_statement_block, - ACTIONS(8036), 5, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160745] = 8, + [160925] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4584), 1, + STATE(4440), 1, sym_comment, - STATE(5145), 1, + STATE(5168), 1, sym_type_annotation, - STATE(6463), 1, + STATE(5707), 1, sym__initializer, - ACTIONS(7466), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160772] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7674), 1, - anon_sym_LBRACE, - STATE(3420), 1, - sym_class_body, - STATE(4585), 1, - sym_comment, - STATE(6029), 1, - sym_extends_clause, - STATE(6741), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [160803] = 8, + [160952] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4586), 1, + STATE(4441), 1, sym_comment, - STATE(5330), 1, - sym_type_annotation, - STATE(6349), 1, - sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7641), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [160830] = 10, + anon_sym_COLON, + [160971] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4008), 1, + ACTIONS(4111), 1, anon_sym_DQUOTE, - ACTIONS(4010), 1, + ACTIONS(4113), 1, anon_sym_SQUOTE, - ACTIONS(8063), 1, + ACTIONS(8039), 1, sym_identifier, - ACTIONS(8065), 1, + ACTIONS(8041), 1, anon_sym_DOT, - STATE(1194), 1, + STATE(947), 1, sym_nested_identifier, - STATE(1215), 1, + STATE(1041), 1, sym_string, - STATE(1581), 1, + STATE(1375), 1, sym__module, - STATE(4587), 1, + STATE(4442), 1, sym_comment, - [160861] = 10, + [161002] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7544), 1, - anon_sym_LBRACE, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - STATE(3250), 1, - sym_class_body, - STATE(4588), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4443), 1, sym_comment, - STATE(6029), 1, - sym_extends_clause, - STATE(6585), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [160892] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5059), 1, + sym_type_annotation, + STATE(5690), 1, + sym__initializer, + ACTIONS(7386), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161029] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(128), 1, - anon_sym_import, - ACTIONS(8067), 1, - sym_identifier, - STATE(3885), 1, - sym__type_query_member_expression, - STATE(3886), 1, - sym__type_query_subscript_expression, - STATE(4157), 1, - sym__type_query_call_expression, - STATE(4350), 1, - sym__type_query_instantiation_expression, - STATE(4589), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4444), 1, sym_comment, - STATE(5656), 1, - sym_import, - [160923] = 6, + STATE(5153), 1, + sym_type_annotation, + STATE(5688), 1, + sym__initializer, + ACTIONS(7386), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161056] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7997), 1, + anon_sym_LT, + ACTIONS(7999), 1, + anon_sym_extends, + ACTIONS(8043), 1, + anon_sym_LBRACE, + ACTIONS(8045), 1, + anon_sym_LBRACE_PIPE, + STATE(1334), 1, + sym_object_type, + STATE(4445), 1, + sym_comment, + STATE(5369), 1, + sym_type_parameters, + STATE(6209), 1, + sym_extends_type_clause, + [161087] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4590), 1, + STATE(4446), 1, sym_comment, - STATE(5075), 1, + STATE(5129), 1, sym_type_annotation, - ACTIONS(8069), 5, + STATE(5682), 1, + sym__initializer, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160946] = 8, + [161114] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4591), 1, + STATE(4447), 1, sym_comment, - STATE(5303), 1, + STATE(5110), 1, sym_type_annotation, - STATE(6108), 1, + STATE(5681), 1, sym__initializer, - ACTIONS(7368), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160973] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4592), 1, - sym_comment, - ACTIONS(6452), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [160992] = 10, + [161141] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7674), 1, + ACTIONS(7589), 1, anon_sym_LBRACE, - STATE(2689), 1, + STATE(2991), 1, sym_class_body, - STATE(4593), 1, + STATE(4448), 1, sym_comment, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6731), 1, + STATE(6497), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [161023] = 6, + [161172] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4594), 1, + STATE(4449), 1, sym_comment, - STATE(5384), 1, + STATE(5091), 1, sym_type_annotation, - ACTIONS(8071), 5, + STATE(5673), 1, + sym__initializer, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [161046] = 8, + [161199] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4595), 1, + STATE(4450), 1, sym_comment, - STATE(5059), 1, + STATE(5048), 1, sym_type_annotation, - STATE(5983), 1, + STATE(5662), 1, sym__initializer, - ACTIONS(7368), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161073] = 8, + [161226] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4596), 1, + ACTIONS(128), 1, + anon_sym_import, + ACTIONS(8047), 1, + sym_identifier, + STATE(3686), 1, + sym__type_query_subscript_expression, + STATE(3687), 1, + sym__type_query_member_expression, + STATE(3981), 1, + sym__type_query_call_expression, + STATE(4249), 1, + sym__type_query_instantiation_expression, + STATE(4451), 1, sym_comment, - STATE(5129), 1, - sym_type_annotation, - STATE(6210), 1, - sym__initializer, - ACTIONS(8034), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [161100] = 10, + STATE(5445), 1, + sym_import, + [161257] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7562), 1, + ACTIONS(7645), 1, anon_sym_LBRACE, - STATE(1546), 1, + STATE(1156), 1, sym_class_body, - STATE(4597), 1, + STATE(4452), 1, sym_comment, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6482), 1, + STATE(6434), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [161131] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4020), 1, - anon_sym_LBRACE, - ACTIONS(4022), 1, - anon_sym_LBRACK, - ACTIONS(7982), 1, - sym_identifier, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(4598), 1, - sym_comment, - STATE(5725), 1, - sym_variable_declarator, - STATE(4667), 2, - sym_object_pattern, - sym_array_pattern, - [161160] = 4, + [161288] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4599), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4453), 1, sym_comment, - ACTIONS(4322), 7, + STATE(4901), 1, + sym_type_annotation, + STATE(5649), 1, + sym__initializer, + ACTIONS(7386), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - [161179] = 4, + [161315] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4600), 1, + STATE(4454), 1, sym_comment, - ACTIONS(2083), 7, + ACTIONS(7559), 7, sym__automatic_semicolon, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [161198] = 6, + anon_sym_COLON, + [161334] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, + ACTIONS(8049), 1, anon_sym_LBRACE, - STATE(4601), 1, + STATE(4455), 1, sym_comment, - STATE(6690), 1, + STATE(6799), 1, sym_statement_block, - ACTIONS(8055), 5, + ACTIONS(8051), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [161221] = 10, + [161357] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7680), 1, + ACTIONS(7639), 1, anon_sym_LBRACE, - STATE(983), 1, + STATE(1244), 1, sym_class_body, - STATE(4602), 1, + STATE(4456), 1, sym_comment, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6653), 1, + STATE(6401), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [161252] = 6, + [161388] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(4603), 1, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4457), 1, sym_comment, - STATE(6684), 1, - sym_statement_block, - ACTIONS(8049), 5, + STATE(4870), 1, + sym_type_annotation, + ACTIONS(8053), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [161275] = 8, + [161411] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4604), 1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7589), 1, + anon_sym_LBRACE, + STATE(2999), 1, + sym_class_body, + STATE(4458), 1, sym_comment, - STATE(5364), 1, - sym_type_annotation, - STATE(6009), 1, - sym__initializer, - ACTIONS(7370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [161302] = 10, + STATE(5785), 1, + sym_extends_clause, + STATE(6387), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [161442] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7544), 1, - anon_sym_LBRACE, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - STATE(3286), 1, + ACTIONS(7645), 1, + anon_sym_LBRACE, + STATE(1124), 1, sym_class_body, - STATE(4605), 1, + STATE(4459), 1, sym_comment, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(7110), 1, + STATE(6369), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [161333] = 8, + [161473] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4606), 1, + STATE(4460), 1, sym_comment, - STATE(5003), 1, + STATE(5054), 1, sym_type_annotation, - STATE(5805), 1, + STATE(5772), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7414), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161360] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(128), 1, - anon_sym_import, - ACTIONS(8073), 1, - sym_identifier, - STATE(2356), 1, - sym__type_query_subscript_expression, - STATE(2357), 1, - sym__type_query_member_expression, - STATE(2483), 1, - sym__type_query_instantiation_expression, - STATE(2484), 1, - sym__type_query_call_expression, - STATE(4607), 1, - sym_comment, - STATE(5575), 1, - sym_import, - [161391] = 8, + [161500] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4608), 1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7639), 1, + anon_sym_LBRACE, + STATE(1305), 1, + sym_class_body, + STATE(4461), 1, sym_comment, - STATE(5176), 1, - sym_type_annotation, - STATE(6454), 1, - sym__initializer, - ACTIONS(7404), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [161418] = 8, + STATE(5785), 1, + sym_extends_clause, + STATE(6345), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [161531] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4609), 1, + STATE(4462), 1, sym_comment, - STATE(5117), 1, + STATE(5103), 1, sym_type_annotation, - STATE(6216), 1, + STATE(5860), 1, sym__initializer, - ACTIONS(7404), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [161445] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4610), 1, - sym_comment, - ACTIONS(4339), 7, + ACTIONS(7416), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - [161464] = 8, + [161558] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4611), 1, + STATE(4463), 1, sym_comment, - STATE(5420), 1, + STATE(5164), 1, sym_type_annotation, - STATE(6235), 1, + STATE(5644), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161491] = 10, + [161585] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7694), 1, - anon_sym_LBRACE, - STATE(1195), 1, - sym_class_body, - STATE(4612), 1, + ACTIONS(4097), 1, + anon_sym_DQUOTE, + ACTIONS(4099), 1, + anon_sym_SQUOTE, + ACTIONS(8055), 1, + sym_identifier, + ACTIONS(8057), 1, + anon_sym_DOT, + STATE(891), 1, + sym_nested_identifier, + STATE(912), 1, + sym_string, + STATE(1083), 1, + sym__module, + STATE(4464), 1, sym_comment, - STATE(6029), 1, - sym_extends_clause, - STATE(6546), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [161522] = 8, + [161616] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4613), 1, + STATE(4465), 1, sym_comment, - STATE(5337), 1, + STATE(5021), 1, sym_type_annotation, - STATE(6336), 1, + STATE(5713), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161549] = 4, + [161643] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4614), 1, - sym_comment, - ACTIONS(7784), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7997), 1, + anon_sym_LT, + ACTIONS(7999), 1, + anon_sym_extends, + ACTIONS(8059), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - [161568] = 10, + ACTIONS(8061), 1, + anon_sym_LBRACE_PIPE, + STATE(1029), 1, + sym_object_type, + STATE(4466), 1, + sym_comment, + STATE(5271), 1, + sym_type_parameters, + STATE(6301), 1, + sym_extends_type_clause, + [161674] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7626), 1, + ACTIONS(7611), 1, anon_sym_LBRACE, - STATE(405), 1, + STATE(332), 1, sym_class_body, - STATE(4615), 1, + STATE(4467), 1, sym_comment, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6751), 1, + STATE(6419), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [161599] = 10, + [161705] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7646), 1, + ACTIONS(7553), 1, anon_sym_LBRACE, - STATE(1484), 1, + STATE(3277), 1, sym_class_body, - STATE(4616), 1, + STATE(4468), 1, sym_comment, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6865), 1, + STATE(6852), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [161630] = 10, + [161736] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7544), 1, - anon_sym_LBRACE, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - STATE(3265), 1, + ACTIONS(7609), 1, + anon_sym_LBRACE, + STATE(951), 1, sym_class_body, - STATE(4617), 1, + STATE(4469), 1, sym_comment, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6961), 1, + STATE(6442), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [161661] = 10, + [161767] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7682), 1, + ACTIONS(7607), 1, anon_sym_LBRACE, - STATE(4618), 1, - sym_comment, - STATE(5912), 1, + STATE(1060), 1, sym_class_body, - STATE(6029), 1, + STATE(4470), 1, + sym_comment, + STATE(5785), 1, sym_extends_clause, - STATE(7041), 1, + STATE(6452), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [161692] = 6, + [161798] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7611), 1, anon_sym_LBRACE, - STATE(4619), 1, + STATE(320), 1, + sym_class_body, + STATE(4471), 1, sym_comment, - STATE(6805), 1, - sym_statement_block, - ACTIONS(8075), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [161715] = 10, + STATE(5785), 1, + sym_extends_clause, + STATE(6460), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [161829] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7674), 1, + ACTIONS(7609), 1, anon_sym_LBRACE, - STATE(2564), 1, + STATE(920), 1, sym_class_body, - STATE(4620), 1, + STATE(4472), 1, sym_comment, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(7049), 1, + STATE(6464), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [161746] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4621), 1, - sym_comment, - ACTIONS(7788), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - [161765] = 8, + [161860] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4622), 1, + STATE(4473), 1, sym_comment, - STATE(5051), 1, + STATE(5223), 1, sym_type_annotation, - STATE(6376), 1, + STATE(5712), 1, sym__initializer, - ACTIONS(7420), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161792] = 8, + [161887] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4623), 1, + STATE(4474), 1, sym_comment, - STATE(5328), 1, + STATE(5332), 1, sym_type_annotation, - STATE(5978), 1, + STATE(5795), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161819] = 10, + [161914] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8026), 1, - anon_sym_LT, - ACTIONS(8028), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(8077), 1, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7607), 1, anon_sym_LBRACE, - ACTIONS(8079), 1, - anon_sym_LBRACE_PIPE, - STATE(1567), 1, - sym_object_type, - STATE(4624), 1, - sym_comment, - STATE(5179), 1, - sym_type_parameters, - STATE(5899), 1, - sym_extends_type_clause, - [161850] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7994), 1, - anon_sym_LPAREN, - ACTIONS(8081), 1, - sym_identifier, - ACTIONS(8083), 1, - anon_sym_STAR, - STATE(4625), 1, + STATE(1114), 1, + sym_class_body, + STATE(4475), 1, sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(6573), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - [161881] = 10, + STATE(5785), 1, + sym_extends_clause, + STATE(6470), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [161945] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7584), 1, + ACTIONS(7605), 1, anon_sym_LBRACE, - STATE(450), 1, + STATE(1451), 1, sym_class_body, - STATE(4626), 1, + STATE(4476), 1, sym_comment, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6839), 1, + STATE(6770), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [161912] = 6, + [161976] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4627), 1, - sym_comment, - STATE(5008), 1, - sym_type_annotation, - ACTIONS(8085), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [161935] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4628), 1, - sym_comment, - STATE(5050), 1, - sym_type_annotation, - STATE(6253), 1, - sym__initializer, - ACTIONS(7404), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [161962] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7630), 1, + ACTIONS(7589), 1, anon_sym_LBRACE, - STATE(1242), 1, + STATE(3057), 1, sym_class_body, - STATE(4629), 1, + STATE(4477), 1, sym_comment, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6488), 1, + STATE(6976), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [161993] = 4, + [162007] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4630), 1, + STATE(4478), 1, sym_comment, - ACTIONS(7806), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - [162012] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8087), 1, + ACTIONS(6523), 7, anon_sym_EQ, - STATE(4631), 1, - sym_comment, - ACTIONS(4242), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LT, anon_sym_QMARK, - [162033] = 8, + [162026] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4632), 1, + STATE(4479), 1, sym_comment, - STATE(5162), 1, + STATE(5362), 1, sym_type_annotation, - STATE(5888), 1, + STATE(5736), 1, sym__initializer, - ACTIONS(7418), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162060] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7994), 1, - anon_sym_LPAREN, - ACTIONS(8089), 1, - sym_identifier, - ACTIONS(8091), 1, - anon_sym_STAR, - STATE(4633), 1, - sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(6573), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - [162091] = 8, + [162053] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4634), 1, + STATE(4480), 1, sym_comment, - STATE(5323), 1, + STATE(5361), 1, sym_type_annotation, - STATE(6353), 1, + STATE(5751), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162118] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1342), 1, - anon_sym_LBRACE, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8026), 1, - anon_sym_LT, - ACTIONS(8028), 1, - anon_sym_extends, - ACTIONS(8093), 1, - anon_sym_LBRACE_PIPE, - STATE(4635), 1, - sym_comment, - STATE(5502), 1, - sym_type_parameters, - STATE(5544), 1, - sym_object_type, - STATE(6139), 1, - sym_extends_type_clause, - [162149] = 4, + [162080] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4636), 1, - sym_comment, - ACTIONS(7818), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - [162168] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4020), 1, - anon_sym_LBRACE, - ACTIONS(4022), 1, - anon_sym_LBRACK, - ACTIONS(8095), 1, - sym_identifier, - STATE(4337), 1, - sym__destructuring_pattern, - STATE(4637), 1, - sym_comment, - STATE(5577), 1, - sym_variable_declarator, - STATE(4667), 2, - sym_object_pattern, - sym_array_pattern, - [162197] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4020), 1, + ACTIONS(7543), 1, anon_sym_LBRACE, - ACTIONS(4022), 1, - anon_sym_LBRACK, - ACTIONS(7982), 1, - sym_identifier, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(4638), 1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + STATE(1374), 1, + sym_class_body, + STATE(4481), 1, sym_comment, - STATE(5686), 1, - sym_variable_declarator, - STATE(4667), 2, - sym_object_pattern, - sym_array_pattern, - [162226] = 10, + STATE(5785), 1, + sym_extends_clause, + STATE(6915), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [162111] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7544), 1, - anon_sym_LBRACE, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - STATE(3169), 1, + ACTIONS(7649), 1, + anon_sym_LBRACE, + STATE(444), 1, sym_class_body, - STATE(4639), 1, + STATE(4482), 1, sym_comment, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6764), 1, + STATE(6869), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [162257] = 7, + [162142] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, - anon_sym_LPAREN, - ACTIONS(8099), 1, - anon_sym_DOT, - STATE(4640), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4483), 1, sym_comment, - STATE(5689), 1, - sym_arguments, - ACTIONS(8097), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [162282] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5287), 1, + sym_type_annotation, + STATE(5766), 1, + sym__initializer, + ACTIONS(7386), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162169] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(8101), 1, - sym_identifier, - ACTIONS(8103), 1, - anon_sym_DOT, - STATE(4467), 1, - sym_nested_identifier, - STATE(4641), 1, - sym_comment, - STATE(4692), 1, - sym_string, - STATE(5250), 1, - sym__module, - [162313] = 4, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(4642), 1, - sym_comment, - ACTIONS(2195), 7, + ACTIONS(8063), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, + ACTIONS(8065), 1, + anon_sym_COMMA, + ACTIONS(8067), 1, anon_sym_DOT, - anon_sym_SLASH_GT, + ACTIONS(8069), 1, anon_sym_LT, - sym_identifier, - [162332] = 4, + ACTIONS(8071), 1, + anon_sym_LBRACE_PIPE, + STATE(4484), 1, + sym_comment, + STATE(5422), 1, + aux_sym_extends_type_clause_repeat1, + STATE(6167), 1, + sym_type_arguments, + [162200] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4643), 1, - sym_comment, - ACTIONS(2081), 7, + ACTIONS(4030), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - anon_sym_SLASH_GT, - anon_sym_LT, + ACTIONS(4032), 1, + anon_sym_LBRACK, + ACTIONS(8073), 1, sym_identifier, - [162351] = 4, + STATE(4485), 1, + sym_comment, + STATE(4574), 1, + sym__destructuring_pattern, + STATE(5459), 1, + sym_variable_declarator, + STATE(4389), 2, + sym_object_pattern, + sym_array_pattern, + [162229] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4644), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(4486), 1, sym_comment, - ACTIONS(7560), 7, + STATE(6514), 1, + sym_statement_block, + ACTIONS(8075), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [162370] = 4, + anon_sym_PIPE_RBRACE, + [162252] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4645), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(4487), 1, sym_comment, - ACTIONS(7592), 7, + STATE(6903), 1, + sym_statement_block, + ACTIONS(8075), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [162389] = 10, + anon_sym_PIPE_RBRACE, + [162275] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7554), 1, + ACTIONS(8049), 1, anon_sym_LBRACE, - STATE(336), 1, - sym_class_body, - STATE(4646), 1, + STATE(4488), 1, sym_comment, - STATE(6029), 1, - sym_extends_clause, - STATE(6602), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [162420] = 9, + STATE(6503), 1, + sym_statement_block, + ACTIONS(8077), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162298] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4020), 1, + ACTIONS(4030), 1, anon_sym_LBRACE, - ACTIONS(4022), 1, + ACTIONS(4032), 1, anon_sym_LBRACK, - ACTIONS(7982), 1, + ACTIONS(8073), 1, sym_identifier, - STATE(4584), 1, + STATE(4489), 1, + sym_comment, + STATE(4574), 1, sym__destructuring_pattern, - STATE(4647), 1, + STATE(5576), 1, + sym_variable_declarator, + STATE(4389), 2, + sym_object_pattern, + sym_array_pattern, + [162327] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4030), 1, + anon_sym_LBRACE, + ACTIONS(4032), 1, + anon_sym_LBRACK, + ACTIONS(8073), 1, + sym_identifier, + STATE(4490), 1, sym_comment, - STATE(5758), 1, + STATE(4574), 1, + sym__destructuring_pattern, + STATE(5575), 1, sym_variable_declarator, - STATE(4667), 2, + STATE(4389), 2, sym_object_pattern, sym_array_pattern, - [162449] = 8, + [162356] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4648), 1, + STATE(4491), 1, sym_comment, - STATE(5031), 1, + STATE(5282), 1, sym_type_annotation, - STATE(6350), 1, + STATE(5791), 1, sym__initializer, - ACTIONS(7420), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162476] = 10, + [162383] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7994), 1, - anon_sym_LPAREN, - ACTIONS(8105), 1, + ACTIONS(8079), 1, sym_identifier, - ACTIONS(8107), 1, + ACTIONS(8081), 1, anon_sym_STAR, - STATE(4649), 1, + ACTIONS(8083), 1, + anon_sym_LPAREN, + STATE(4492), 1, sym_comment, - STATE(4790), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - STATE(7098), 1, + STATE(6657), 1, sym__call_signature, - [162507] = 8, + [162414] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4650), 1, + STATE(4493), 1, sym_comment, - STATE(5029), 1, + STATE(5180), 1, sym_type_annotation, - STATE(6348), 1, + STATE(5814), 1, sym__initializer, - ACTIONS(7420), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162534] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4020), 1, - anon_sym_LBRACE, - ACTIONS(4022), 1, - anon_sym_LBRACK, - ACTIONS(7982), 1, - sym_identifier, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(4651), 1, - sym_comment, - STATE(5740), 1, - sym_variable_declarator, - STATE(4667), 2, - sym_object_pattern, - sym_array_pattern, - [162563] = 8, + [162441] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4652), 1, + STATE(4494), 1, sym_comment, - STATE(5314), 1, + STATE(5174), 1, sym_type_annotation, - STATE(6265), 1, + STATE(6005), 1, sym__initializer, - ACTIONS(7404), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162590] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7674), 1, - anon_sym_LBRACE, - STATE(3452), 1, - sym_class_body, - STATE(4653), 1, - sym_comment, - STATE(6029), 1, - sym_extends_clause, - STATE(7008), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [162621] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7550), 1, - anon_sym_LBRACE, - STATE(370), 1, - sym_class_body, - STATE(4654), 1, - sym_comment, - STATE(6029), 1, - sym_extends_clause, - STATE(6874), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [162652] = 4, + [162468] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4655), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4495), 1, sym_comment, - ACTIONS(5920), 7, + STATE(5126), 1, + sym_type_annotation, + STATE(5825), 1, + sym__initializer, + ACTIONS(7386), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [162671] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7544), 1, - anon_sym_LBRACE, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - STATE(3095), 1, - sym_class_body, - STATE(4656), 1, - sym_comment, - STATE(6029), 1, - sym_extends_clause, - STATE(6492), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [162702] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4020), 1, - anon_sym_LBRACE, - ACTIONS(4022), 1, - anon_sym_LBRACK, - ACTIONS(7982), 1, - sym_identifier, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(4657), 1, - sym_comment, - STATE(5759), 1, - sym_variable_declarator, - STATE(4667), 2, - sym_object_pattern, - sym_array_pattern, - [162731] = 10, + [162495] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7552), 1, - anon_sym_LBRACE, - STATE(1132), 1, - sym_class_body, - STATE(4658), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4496), 1, sym_comment, - STATE(6029), 1, - sym_extends_clause, - STATE(6897), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [162762] = 8, + STATE(5118), 1, + sym_type_annotation, + STATE(5834), 1, + sym__initializer, + ACTIONS(7386), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162522] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4659), 1, + STATE(4497), 1, sym_comment, - STATE(5282), 1, + STATE(5040), 1, sym_type_annotation, - STATE(5934), 1, + STATE(5872), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162789] = 8, + [162549] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4660), 1, + STATE(4498), 1, sym_comment, - STATE(5053), 1, + STATE(5319), 1, sym_type_annotation, - STATE(6367), 1, + STATE(6330), 1, sym__initializer, - ACTIONS(7420), 3, + ACTIONS(7428), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162816] = 10, + [162576] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7696), 1, + ACTIONS(7553), 1, anon_sym_LBRACE, - STATE(4661), 1, + STATE(3280), 1, + sym_class_body, + STATE(4499), 1, sym_comment, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6717), 1, - sym_class_body, - STATE(7106), 1, + STATE(6391), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [162847] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(8109), 1, - anon_sym_COLON, - ACTIONS(8111), 1, - anon_sym_QMARK, - STATE(4662), 1, - sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(6683), 1, - sym_type_parameters, - STATE(6786), 1, - sym__call_signature, - [162878] = 8, + [162607] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4663), 1, - sym_comment, - STATE(5022), 1, - sym_type_annotation, - STATE(6335), 1, - sym__initializer, - ACTIONS(7420), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [162905] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4664), 1, + ACTIONS(7965), 1, + anon_sym_LBRACE, + STATE(4500), 1, sym_comment, - ACTIONS(8113), 7, + STATE(4996), 1, + sym_statement_block, + ACTIONS(2061), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [162924] = 10, + [162630] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7994), 1, + ACTIONS(8083), 1, anon_sym_LPAREN, - ACTIONS(8115), 1, + ACTIONS(8085), 1, sym_identifier, - ACTIONS(8117), 1, + ACTIONS(8087), 1, anon_sym_STAR, - STATE(4665), 1, + STATE(4501), 1, sym_comment, - STATE(4790), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(6573), 1, - sym__call_signature, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - [162955] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7694), 1, - anon_sym_LBRACE, - STATE(1148), 1, - sym_class_body, - STATE(4666), 1, - sym_comment, - STATE(6029), 1, - sym_extends_clause, - STATE(6495), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [162986] = 4, + STATE(6523), 1, + sym__call_signature, + [162661] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4667), 1, + STATE(4502), 1, sym_comment, - ACTIONS(7652), 7, + ACTIONS(5809), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -354865,1373 +342179,1463 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [163005] = 8, + [162680] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4668), 1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7589), 1, + anon_sym_LBRACE, + STATE(3043), 1, + sym_class_body, + STATE(4503), 1, sym_comment, - STATE(5023), 1, - sym_type_annotation, - STATE(6263), 1, - sym__initializer, - ACTIONS(7420), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [163032] = 10, + STATE(5785), 1, + sym_extends_clause, + STATE(6502), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [162711] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(8111), 1, - anon_sym_QMARK, - ACTIONS(8119), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(8089), 1, anon_sym_COLON, - STATE(4669), 1, + ACTIONS(8091), 1, + anon_sym_QMARK, + STATE(4504), 1, sym_comment, - STATE(4790), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - STATE(6786), 1, + STATE(6975), 1, sym__call_signature, - [163063] = 4, + [162742] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4670), 1, + ACTIONS(7543), 1, + anon_sym_LBRACE, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + STATE(1168), 1, + sym_class_body, + STATE(4505), 1, sym_comment, - ACTIONS(8121), 7, - sym__automatic_semicolon, + STATE(5785), 1, + sym_extends_clause, + STATE(6528), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [162773] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7545), 1, + anon_sym_extends, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(7589), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [163082] = 5, + STATE(3035), 1, + sym_class_body, + STATE(4506), 1, + sym_comment, + STATE(5785), 1, + sym_extends_clause, + STATE(6546), 1, + sym_class_heritage, + STATE(7265), 1, + sym_implements_clause, + [162804] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8123), 1, - sym__automatic_semicolon, - STATE(4671), 1, + ACTIONS(8093), 1, + anon_sym_EQ, + ACTIONS(8095), 1, + anon_sym_DOT, + STATE(4507), 1, sym_comment, - ACTIONS(2103), 6, + ACTIONS(7947), 5, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163103] = 9, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [162827] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4020), 1, + ACTIONS(4030), 1, anon_sym_LBRACE, - ACTIONS(4022), 1, + ACTIONS(4032), 1, anon_sym_LBRACK, - ACTIONS(7982), 1, + ACTIONS(8073), 1, sym_identifier, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(4672), 1, + STATE(4508), 1, sym_comment, - STATE(5659), 1, + STATE(4574), 1, + sym__destructuring_pattern, + STATE(5571), 1, sym_variable_declarator, - STATE(4667), 2, + STATE(4389), 2, sym_object_pattern, sym_array_pattern, - [163132] = 9, + [162856] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4226), 1, - anon_sym_COLON, - ACTIONS(8125), 1, - anon_sym_EQ, - ACTIONS(8129), 1, - anon_sym_QMARK, - STATE(4673), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(4509), 1, sym_comment, - STATE(5637), 1, - sym_type_annotation, - STATE(6753), 1, - sym__initializer, - ACTIONS(8127), 2, + STATE(6929), 1, + sym_statement_block, + ACTIONS(8097), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [163161] = 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [162879] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4674), 1, + STATE(4510), 1, sym_comment, - STATE(5284), 1, - sym_type_annotation, - STATE(5943), 1, - sym__initializer, - ACTIONS(7370), 3, + ACTIONS(2127), 7, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [163188] = 8, + anon_sym_PIPE_RBRACE, + [162898] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4675), 1, + STATE(4511), 1, sym_comment, - STATE(5187), 1, + STATE(5100), 1, sym_type_annotation, - STATE(6471), 1, + STATE(5674), 1, sym__initializer, - ACTIONS(8131), 3, + ACTIONS(7386), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163215] = 8, + [162925] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4676), 1, + STATE(4512), 1, sym_comment, - STATE(5013), 1, - sym_type_annotation, - STATE(5796), 1, - sym__initializer, - ACTIONS(7370), 3, + ACTIONS(2235), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [163242] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(7426), 1, - sym_identifier, - ACTIONS(7512), 1, - anon_sym_type, - STATE(4677), 1, - sym_comment, - STATE(5681), 1, - sym_string, - STATE(6598), 1, - sym__import_identifier, - STATE(7531), 1, - sym__module_export_name, - [163273] = 8, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [162944] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8133), 1, - anon_sym_EQ, - STATE(4678), 1, + STATE(4513), 1, sym_comment, - STATE(5735), 1, - sym_constraint, - STATE(6626), 1, - sym_default_type, - ACTIONS(8135), 2, + ACTIONS(2239), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - ACTIONS(8137), 2, - anon_sym_COLON, - anon_sym_extends, - [163300] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [162963] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, + ACTIONS(8049), 1, anon_sym_LBRACE, - STATE(4679), 1, + STATE(4514), 1, sym_comment, - STATE(6640), 1, + STATE(6966), 1, sym_statement_block, - ACTIONS(8139), 5, + ACTIONS(8099), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [163323] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [162986] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7351), 1, - anon_sym_COLON, - ACTIONS(8143), 1, - anon_sym_EQ, - STATE(4680), 1, - sym_comment, - ACTIONS(8141), 5, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8049), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [163346] = 4, + STATE(4515), 1, + sym_comment, + STATE(6920), 1, + sym_statement_block, + ACTIONS(8099), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [163009] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4681), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(4516), 1, sym_comment, - ACTIONS(2197), 7, + STATE(6906), 1, + sym_statement_block, + ACTIONS(8097), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, anon_sym_PIPE_RBRACE, - [163365] = 10, + [163032] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7994), 1, - anon_sym_LPAREN, - ACTIONS(8145), 1, - sym_identifier, - ACTIONS(8147), 1, - anon_sym_STAR, - STATE(4682), 1, + ACTIONS(7340), 1, + anon_sym_COLON, + ACTIONS(8103), 1, + anon_sym_EQ, + STATE(4517), 1, sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(6683), 1, - sym_type_parameters, - STATE(7098), 1, - sym__call_signature, - [163396] = 9, + ACTIONS(8101), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [163055] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4020), 1, + ACTIONS(4030), 1, anon_sym_LBRACE, - ACTIONS(4022), 1, + ACTIONS(4032), 1, anon_sym_LBRACK, - ACTIONS(7982), 1, + ACTIONS(8073), 1, sym_identifier, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(4683), 1, + STATE(4518), 1, sym_comment, - STATE(5687), 1, + STATE(4574), 1, + sym__destructuring_pattern, + STATE(5572), 1, sym_variable_declarator, - STATE(4667), 2, + STATE(4389), 2, sym_object_pattern, sym_array_pattern, - [163425] = 8, + [163084] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(8105), 1, anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4684), 1, + STATE(4519), 1, sym_comment, - STATE(5371), 1, - sym_type_annotation, - STATE(5827), 1, - sym__initializer, - ACTIONS(7368), 3, - sym__automatic_semicolon, + STATE(5553), 1, + sym_constraint, + STATE(6636), 1, + sym_default_type, + ACTIONS(8107), 2, anon_sym_COMMA, - anon_sym_SEMI, - [163452] = 10, + anon_sym_GT, + ACTIONS(8109), 2, + anon_sym_COLON, + anon_sym_extends, + [163111] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7994), 1, - anon_sym_LPAREN, - ACTIONS(8149), 1, + ACTIONS(128), 1, + anon_sym_import, + ACTIONS(8111), 1, sym_identifier, - ACTIONS(8151), 1, - anon_sym_STAR, - STATE(4685), 1, + STATE(3599), 1, + sym__type_query_member_expression, + STATE(3600), 1, + sym__type_query_subscript_expression, + STATE(3656), 1, + sym__type_query_call_expression, + STATE(3722), 1, + sym__type_query_instantiation_expression, + STATE(4520), 1, sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(6683), 1, - sym_type_parameters, - STATE(6732), 1, - sym__call_signature, - [163483] = 10, + STATE(5558), 1, + sym_import, + [163142] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7630), 1, + ACTIONS(7649), 1, anon_sym_LBRACE, - STATE(1286), 1, + STATE(460), 1, sym_class_body, - STATE(4686), 1, + STATE(4521), 1, sym_comment, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6514), 1, + STATE(6688), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [163514] = 8, + [163173] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(8105), 1, anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4687), 1, + STATE(4522), 1, sym_comment, - STATE(5298), 1, - sym_type_annotation, - STATE(6371), 1, - sym__initializer, - ACTIONS(7370), 3, - sym__automatic_semicolon, + STATE(5617), 1, + sym_constraint, + STATE(6886), 1, + sym_default_type, + ACTIONS(8109), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(8113), 2, anon_sym_COMMA, - anon_sym_SEMI, - [163541] = 9, + anon_sym_GT, + [163200] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4020), 1, + ACTIONS(4030), 1, anon_sym_LBRACE, - ACTIONS(4022), 1, + ACTIONS(4032), 1, anon_sym_LBRACK, - ACTIONS(7982), 1, + ACTIONS(8115), 1, sym_identifier, - STATE(4584), 1, + STATE(4072), 1, sym__destructuring_pattern, - STATE(4688), 1, + STATE(4523), 1, sym_comment, - STATE(5658), 1, + STATE(5540), 1, + sym_variable_declarator, + STATE(4389), 2, + sym_object_pattern, + sym_array_pattern, + [163229] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4030), 1, + anon_sym_LBRACE, + ACTIONS(4032), 1, + anon_sym_LBRACK, + ACTIONS(8117), 1, + sym_identifier, + STATE(4071), 1, + sym__destructuring_pattern, + STATE(4524), 1, + sym_comment, + STATE(5541), 1, + sym_variable_declarator, + STATE(4389), 2, + sym_object_pattern, + sym_array_pattern, + [163258] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4030), 1, + anon_sym_LBRACE, + ACTIONS(4032), 1, + anon_sym_LBRACK, + ACTIONS(8073), 1, + sym_identifier, + STATE(4525), 1, + sym_comment, + STATE(4574), 1, + sym__destructuring_pattern, + STATE(6135), 1, sym_variable_declarator, - STATE(4667), 2, + STATE(4389), 2, sym_object_pattern, sym_array_pattern, - [163570] = 8, + [163287] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4689), 1, + STATE(4526), 1, sym_comment, - STATE(5021), 1, - sym_type_annotation, - STATE(5791), 1, - sym__initializer, - ACTIONS(7370), 3, + ACTIONS(5904), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [163597] = 6, + anon_sym_COLON, + [163306] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(4690), 1, + STATE(4527), 1, sym_comment, - STATE(6620), 1, - sym_statement_block, - ACTIONS(7980), 5, + ACTIONS(5807), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163620] = 10, + anon_sym_COLON, + [163325] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7994), 1, - anon_sym_LPAREN, - ACTIONS(8153), 1, + ACTIONS(4030), 1, + anon_sym_LBRACE, + ACTIONS(4032), 1, + anon_sym_LBRACK, + ACTIONS(8073), 1, sym_identifier, - ACTIONS(8155), 1, - anon_sym_STAR, - STATE(4691), 1, + STATE(4528), 1, sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(6683), 1, - sym_type_parameters, - STATE(7098), 1, - sym__call_signature, - [163651] = 6, + STATE(4574), 1, + sym__destructuring_pattern, + STATE(5415), 1, + sym_variable_declarator, + STATE(4389), 2, + sym_object_pattern, + sym_array_pattern, + [163354] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7940), 1, + ACTIONS(8049), 1, anon_sym_LBRACE, - STATE(4692), 1, + STATE(4529), 1, sym_comment, - STATE(5010), 1, + STATE(6763), 1, sym_statement_block, - ACTIONS(2059), 5, + ACTIONS(8119), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [163674] = 4, + [163377] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4693), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(4530), 1, sym_comment, - ACTIONS(4255), 7, - anon_sym_EQ, + STATE(6768), 1, + sym_statement_block, + ACTIONS(8121), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [163693] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8157), 1, - anon_sym_EQ, - ACTIONS(8159), 1, - anon_sym_DOT, - STATE(4694), 1, - sym_comment, - ACTIONS(7958), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [163716] = 8, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [163400] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4695), 1, + STATE(4531), 1, sym_comment, - STATE(5020), 1, - sym_type_annotation, - STATE(6334), 1, - sym__initializer, - ACTIONS(7420), 3, + ACTIONS(2147), 7, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [163743] = 6, + anon_sym_PIPE_RBRACE, + [163419] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, + ACTIONS(8049), 1, anon_sym_LBRACE, - STATE(4696), 1, + STATE(4532), 1, sym_comment, - STATE(6617), 1, + STATE(6716), 1, sym_statement_block, - ACTIONS(8161), 5, + ACTIONS(8119), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [163766] = 8, + [163442] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4030), 1, + anon_sym_LBRACE, + ACTIONS(4032), 1, + anon_sym_LBRACK, + ACTIONS(8073), 1, + sym_identifier, + STATE(4533), 1, + sym_comment, + STATE(4574), 1, + sym__destructuring_pattern, + STATE(5416), 1, + sym_variable_declarator, + STATE(4389), 2, + sym_object_pattern, + sym_array_pattern, + [163471] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4697), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(4534), 1, sym_comment, - STATE(5333), 1, - sym_type_annotation, - STATE(6345), 1, - sym__initializer, - ACTIONS(7370), 3, + STATE(6697), 1, + sym_statement_block, + ACTIONS(8121), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [163793] = 8, + anon_sym_PIPE_RBRACE, + [163494] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8133), 1, - anon_sym_EQ, - STATE(4698), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(7445), 1, + sym_identifier, + ACTIONS(7519), 1, + anon_sym_type, + STATE(4535), 1, sym_comment, - STATE(5710), 1, - sym_constraint, - STATE(6816), 1, - sym_default_type, - ACTIONS(8137), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(8163), 2, - anon_sym_COMMA, - anon_sym_GT, - [163820] = 10, + STATE(5551), 1, + sym_string, + STATE(6778), 1, + sym__import_identifier, + STATE(7126), 1, + sym__module_export_name, + [163525] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7584), 1, - anon_sym_LBRACE, - STATE(429), 1, - sym_class_body, - STATE(4699), 1, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8083), 1, + anon_sym_LPAREN, + ACTIONS(8123), 1, + sym_identifier, + ACTIONS(8125), 1, + anon_sym_STAR, + STATE(4536), 1, sym_comment, - STATE(6029), 1, - sym_extends_clause, - STATE(6757), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [163851] = 9, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, + sym_type_parameters, + STATE(6925), 1, + sym__call_signature, + [163556] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4020), 1, + ACTIONS(4030), 1, anon_sym_LBRACE, - ACTIONS(4022), 1, + ACTIONS(4032), 1, anon_sym_LBRACK, - ACTIONS(8165), 1, + ACTIONS(8073), 1, sym_identifier, - STATE(4387), 1, - sym__destructuring_pattern, - STATE(4700), 1, + STATE(4537), 1, sym_comment, - STATE(5578), 1, + STATE(4574), 1, + sym__destructuring_pattern, + STATE(5458), 1, sym_variable_declarator, - STATE(4667), 2, + STATE(4389), 2, sym_object_pattern, sym_array_pattern, - [163880] = 8, + [163585] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4701), 1, + ACTIONS(4030), 1, + anon_sym_LBRACE, + ACTIONS(4032), 1, + anon_sym_LBRACK, + ACTIONS(8073), 1, + sym_identifier, + STATE(4538), 1, sym_comment, - STATE(5480), 1, - sym_type_annotation, - STATE(6163), 1, - sym__initializer, - ACTIONS(7370), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [163907] = 6, + STATE(4574), 1, + sym__destructuring_pattern, + STATE(5442), 1, + sym_variable_declarator, + STATE(4389), 2, + sym_object_pattern, + sym_array_pattern, + [163614] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7214), 1, + ACTIONS(7219), 1, anon_sym_EQ, - STATE(4702), 1, + STATE(4539), 1, sym_comment, - ACTIONS(8167), 2, + ACTIONS(8127), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4514), 4, + ACTIONS(4518), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [163930] = 8, + [163637] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4030), 1, + anon_sym_LBRACE, + ACTIONS(4032), 1, + anon_sym_LBRACK, + ACTIONS(8073), 1, + sym_identifier, + STATE(4540), 1, + sym_comment, + STATE(4574), 1, + sym__destructuring_pattern, + STATE(5478), 1, + sym_variable_declarator, + STATE(4389), 2, + sym_object_pattern, + sym_array_pattern, + [163666] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4703), 1, + STATE(4541), 1, sym_comment, - STATE(5439), 1, + STATE(5333), 1, sym_type_annotation, - STATE(6057), 1, + STATE(6298), 1, sym__initializer, - ACTIONS(7366), 3, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163957] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(128), 1, - anon_sym_import, - ACTIONS(8170), 1, - sym_identifier, - STATE(3744), 1, - sym__type_query_subscript_expression, - STATE(3745), 1, - sym__type_query_member_expression, - STATE(3813), 1, - sym__type_query_call_expression, - STATE(3926), 1, - sym__type_query_instantiation_expression, - STATE(4704), 1, - sym_comment, - STATE(5732), 1, - sym_import, - [163988] = 8, + [163693] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4705), 1, + STATE(4542), 1, sym_comment, - STATE(5089), 1, + STATE(5325), 1, sym_type_annotation, - STATE(6388), 1, + STATE(6320), 1, sym__initializer, - ACTIONS(7420), 3, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164015] = 6, + [163720] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, + ACTIONS(8049), 1, anon_sym_LBRACE, - STATE(4706), 1, + STATE(4543), 1, sym_comment, - STATE(6890), 1, + STATE(6714), 1, sym_statement_block, - ACTIONS(8161), 5, + ACTIONS(8130), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [164038] = 10, + [163743] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7544), 1, + ACTIONS(8049), 1, anon_sym_LBRACE, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - STATE(3136), 1, - sym_class_body, - STATE(4707), 1, - sym_comment, - STATE(6029), 1, - sym_extends_clause, - STATE(6929), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [164069] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4708), 1, + STATE(4544), 1, sym_comment, - STATE(5466), 1, - sym_type_annotation, - STATE(6181), 1, - sym__initializer, - ACTIONS(7370), 3, + STATE(6724), 1, + sym_statement_block, + ACTIONS(8132), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [164096] = 4, + anon_sym_PIPE_RBRACE, + [163766] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4030), 1, + anon_sym_LBRACE, + ACTIONS(4032), 1, + anon_sym_LBRACK, + ACTIONS(8073), 1, + sym_identifier, + STATE(4545), 1, + sym_comment, + STATE(4574), 1, + sym__destructuring_pattern, + STATE(5481), 1, + sym_variable_declarator, + STATE(4389), 2, + sym_object_pattern, + sym_array_pattern, + [163795] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4709), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(4546), 1, sym_comment, - ACTIONS(2095), 7, + STATE(6681), 1, + sym_statement_block, + ACTIONS(8130), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [164115] = 8, + [163818] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4710), 1, + STATE(4547), 1, sym_comment, - STATE(5485), 1, + STATE(4881), 1, sym_type_annotation, - STATE(5812), 1, + STATE(5973), 1, sym__initializer, - ACTIONS(7412), 3, + ACTIONS(8134), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164142] = 5, + [163845] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6138), 1, - sym__automatic_semicolon, - STATE(4711), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(4548), 1, sym_comment, - ACTIONS(2103), 6, + STATE(6680), 1, + sym_statement_block, + ACTIONS(8132), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [164163] = 6, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [163868] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8083), 1, + anon_sym_LPAREN, + ACTIONS(8136), 1, + sym_identifier, + ACTIONS(8138), 1, + anon_sym_STAR, + STATE(4549), 1, + sym_comment, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, + sym_type_parameters, + STATE(6643), 1, + sym__call_signature, + [163899] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, + ACTIONS(8049), 1, anon_sym_LBRACE, - STATE(4712), 1, + STATE(4550), 1, sym_comment, - STATE(6918), 1, + STATE(6675), 1, sym_statement_block, - ACTIONS(8172), 5, + ACTIONS(8140), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [164186] = 8, + [163922] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4713), 1, + STATE(4551), 1, sym_comment, - STATE(5095), 1, + STATE(4920), 1, sym_type_annotation, - STATE(6319), 1, + STATE(5995), 1, sym__initializer, - ACTIONS(7420), 3, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164213] = 4, + [163949] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4714), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4552), 1, sym_comment, - ACTIONS(8174), 7, + STATE(4929), 1, + sym_type_annotation, + STATE(5997), 1, + sym__initializer, + ACTIONS(7426), 3, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163976] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8049), 1, anon_sym_LBRACE, + STATE(4553), 1, + sym_comment, + STATE(6677), 1, + sym_statement_block, + ACTIONS(8142), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [164232] = 8, + [163999] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8144), 1, + anon_sym_EQ, + STATE(4554), 1, + sym_comment, + ACTIONS(4287), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [164020] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4715), 1, + STATE(4555), 1, sym_comment, - STATE(5471), 1, + STATE(5284), 1, sym_type_annotation, - STATE(6008), 1, + STATE(6303), 1, sym__initializer, - ACTIONS(7404), 3, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164259] = 8, + [164047] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4716), 1, + STATE(4556), 1, sym_comment, - STATE(5000), 1, + STATE(5273), 1, sym_type_annotation, - STATE(6299), 1, + STATE(6296), 1, sym__initializer, - ACTIONS(7420), 3, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164286] = 5, + [164074] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8176), 1, - anon_sym_EQ, - STATE(4717), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(4557), 1, sym_comment, - ACTIONS(4255), 6, + STATE(6861), 1, + sym_statement_block, + ACTIONS(8147), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [164307] = 8, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [164097] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4718), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(4558), 1, sym_comment, - STATE(5443), 1, - sym_type_annotation, - STATE(6052), 1, - sym__initializer, - ACTIONS(7404), 3, + STATE(6701), 1, + sym_statement_block, + ACTIONS(8149), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [164334] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4079), 1, - anon_sym_DQUOTE, - ACTIONS(4081), 1, - anon_sym_SQUOTE, - ACTIONS(8179), 1, - sym_identifier, - ACTIONS(8181), 1, - anon_sym_DOT, - STATE(957), 1, - sym_nested_identifier, - STATE(971), 1, - sym_string, - STATE(1237), 1, - sym__module, - STATE(4719), 1, - sym_comment, - [164365] = 10, + anon_sym_PIPE_RBRACE, + [164120] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7994), 1, + ACTIONS(8083), 1, anon_sym_LPAREN, - ACTIONS(8183), 1, + ACTIONS(8151), 1, sym_identifier, - ACTIONS(8185), 1, + ACTIONS(8153), 1, anon_sym_STAR, - STATE(4720), 1, + STATE(4559), 1, sym_comment, - STATE(4790), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - STATE(7098), 1, + STATE(6925), 1, sym__call_signature, - [164396] = 5, + [164151] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8187), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(4560), 1, + sym_comment, + STATE(6748), 1, + sym_statement_block, + ACTIONS(8155), 5, sym__automatic_semicolon, - STATE(4721), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [164174] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4561), 1, sym_comment, - ACTIONS(2095), 6, + ACTIONS(8157), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [164417] = 10, + [164193] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(4157), 1, anon_sym_LT, - ACTIONS(7994), 1, - anon_sym_LPAREN, - ACTIONS(8189), 1, + ACTIONS(7991), 1, sym_identifier, - ACTIONS(8191), 1, - anon_sym_STAR, - STATE(4722), 1, + ACTIONS(8159), 1, + anon_sym_LPAREN, + STATE(3140), 1, + sym_arguments, + STATE(4562), 1, sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(6573), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - [164448] = 8, + STATE(6854), 1, + sym_type_arguments, + ACTIONS(7995), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [164222] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(8161), 1, anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4723), 1, + STATE(4563), 1, sym_comment, - STATE(5302), 1, - sym_type_annotation, - STATE(5950), 1, - sym__initializer, - ACTIONS(7370), 3, - sym__automatic_semicolon, + ACTIONS(4253), 6, anon_sym_COMMA, - anon_sym_SEMI, - [164475] = 8, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [164243] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4724), 1, + ACTIONS(7997), 1, + anon_sym_LT, + ACTIONS(7999), 1, + anon_sym_extends, + ACTIONS(8163), 1, + anon_sym_LBRACE, + ACTIONS(8165), 1, + anon_sym_LBRACE_PIPE, + STATE(1569), 1, + sym_object_type, + STATE(4564), 1, sym_comment, - STATE(5252), 1, - sym_type_annotation, - STATE(6038), 1, - sym__initializer, - ACTIONS(7368), 3, + STATE(4950), 1, + sym_type_parameters, + STATE(6050), 1, + sym_extends_type_clause, + [164274] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4014), 1, + anon_sym_DQUOTE, + ACTIONS(4016), 1, + anon_sym_SQUOTE, + ACTIONS(8167), 1, + sym_identifier, + ACTIONS(8169), 1, + anon_sym_DOT, + STATE(962), 1, + sym_nested_identifier, + STATE(1161), 1, + sym_string, + STATE(1517), 1, + sym__module, + STATE(4565), 1, + sym_comment, + [164305] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4145), 1, + anon_sym_LPAREN, + ACTIONS(8173), 1, + anon_sym_DOT, + STATE(4566), 1, + sym_comment, + STATE(5612), 1, + sym_arguments, + ACTIONS(8171), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [164330] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4567), 1, + sym_comment, + ACTIONS(8175), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [164502] = 8, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [164349] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4725), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(4568), 1, sym_comment, - STATE(5308), 1, - sym_type_annotation, - STATE(5952), 1, - sym__initializer, - ACTIONS(7370), 3, + STATE(6682), 1, + sym_statement_block, + ACTIONS(8142), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [164529] = 10, + anon_sym_PIPE_RBRACE, + [164372] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(128), 1, - anon_sym_import, - ACTIONS(8193), 1, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8083), 1, + anon_sym_LPAREN, + ACTIONS(8177), 1, sym_identifier, - STATE(3811), 1, - sym__type_query_subscript_expression, - STATE(3817), 1, - sym__type_query_member_expression, - STATE(4045), 1, - sym__type_query_call_expression, - STATE(4140), 1, - sym__type_query_instantiation_expression, - STATE(4726), 1, + ACTIONS(8179), 1, + anon_sym_STAR, + STATE(4569), 1, sym_comment, - STATE(5692), 1, - sym_import, - [164560] = 10, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, + sym_type_parameters, + STATE(6925), 1, + sym__call_signature, + [164403] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, + ACTIONS(7545), 1, anon_sym_extends, - ACTIONS(7548), 1, + ACTIONS(7547), 1, anon_sym_implements, - ACTIONS(7550), 1, + ACTIONS(7589), 1, anon_sym_LBRACE, - STATE(353), 1, + STATE(3007), 1, sym_class_body, - STATE(4727), 1, + STATE(4570), 1, sym_comment, - STATE(6029), 1, + STATE(5785), 1, sym_extends_clause, - STATE(6708), 1, + STATE(6943), 1, sym_class_heritage, - STATE(7191), 1, + STATE(7265), 1, sym_implements_clause, - [164591] = 9, - ACTIONS(3), 1, + [164434] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(4218), 1, + anon_sym_COLON, + ACTIONS(8181), 1, + anon_sym_EQ, + ACTIONS(8185), 1, + anon_sym_QMARK, + STATE(4571), 1, + sym_comment, + STATE(5627), 1, + sym_type_annotation, + STATE(6979), 1, + sym__initializer, + ACTIONS(8183), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [164463] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4020), 1, - anon_sym_LBRACE, - ACTIONS(4022), 1, - anon_sym_LBRACK, - ACTIONS(7982), 1, - sym_identifier, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(4728), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4572), 1, sym_comment, - STATE(6380), 1, - sym_variable_declarator, - STATE(4667), 2, - sym_object_pattern, - sym_array_pattern, - [164620] = 10, + ACTIONS(4287), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [164482] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7562), 1, - anon_sym_LBRACE, - STATE(1203), 1, - sym_class_body, - STATE(4729), 1, + ACTIONS(8187), 1, + anon_sym_EQ, + STATE(4573), 1, sym_comment, - STATE(6029), 1, - sym_extends_clause, - STATE(6934), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [164651] = 8, + ACTIONS(4287), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [164503] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4730), 1, + STATE(4574), 1, sym_comment, - STATE(5054), 1, + STATE(4888), 1, sym_type_annotation, - STATE(6365), 1, + STATE(5944), 1, sym__initializer, - ACTIONS(7420), 3, + ACTIONS(7495), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164678] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4020), 1, - anon_sym_LBRACE, - ACTIONS(4022), 1, - anon_sym_LBRACK, - ACTIONS(7982), 1, - sym_identifier, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(4731), 1, - sym_comment, - STATE(5620), 1, - sym_variable_declarator, - STATE(4667), 2, - sym_object_pattern, - sym_array_pattern, - [164707] = 8, + [164530] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4732), 1, + STATE(4575), 1, sym_comment, - STATE(5418), 1, + STATE(4942), 1, sym_type_annotation, - STATE(6237), 1, + STATE(6034), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164734] = 10, + [164557] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8026), 1, - anon_sym_LT, - ACTIONS(8028), 1, - anon_sym_extends, - ACTIONS(8195), 1, - anon_sym_LBRACE, - ACTIONS(8197), 1, - anon_sym_LBRACE_PIPE, - STATE(1325), 1, - sym_object_type, - STATE(4733), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4576), 1, sym_comment, - STATE(5068), 1, - sym_type_parameters, - STATE(5846), 1, - sym_extends_type_clause, - [164765] = 8, + STATE(4953), 1, + sym_type_annotation, + STATE(6039), 1, + sym__initializer, + ACTIONS(7426), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [164584] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4734), 1, + STATE(4577), 1, sym_comment, - STATE(5143), 1, + STATE(5257), 1, sym_type_annotation, - STATE(6438), 1, + STATE(6328), 1, sym__initializer, - ACTIONS(7420), 3, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164792] = 8, + [164611] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4735), 1, + STATE(4578), 1, sym_comment, - STATE(5155), 1, + STATE(5255), 1, sym_type_annotation, - STATE(6173), 1, + STATE(6200), 1, sym__initializer, - ACTIONS(8034), 3, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164819] = 10, + [164638] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4111), 1, - anon_sym_SQUOTE, - ACTIONS(8199), 1, - sym_identifier, - ACTIONS(8201), 1, - anon_sym_DOT, - STATE(909), 1, - sym_nested_identifier, - STATE(915), 1, - sym_string, - STATE(1093), 1, - sym__module, - STATE(4736), 1, - sym_comment, - [164850] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8026), 1, + ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(8028), 1, - anon_sym_extends, - ACTIONS(8203), 1, - anon_sym_LBRACE, - ACTIONS(8205), 1, - anon_sym_LBRACE_PIPE, - STATE(1080), 1, - sym_object_type, - STATE(4737), 1, + ACTIONS(8083), 1, + anon_sym_LPAREN, + ACTIONS(8190), 1, + sym_identifier, + ACTIONS(8192), 1, + anon_sym_STAR, + STATE(4579), 1, sym_comment, - STATE(5120), 1, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, sym_type_parameters, - STATE(6427), 1, - sym_extends_type_clause, - [164881] = 8, + STATE(6643), 1, + sym__call_signature, + [164669] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4738), 1, + STATE(4580), 1, sym_comment, - STATE(5028), 1, - sym_type_annotation, - STATE(6347), 1, - sym__initializer, - ACTIONS(7404), 3, + ACTIONS(8194), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [164908] = 6, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [164688] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(4739), 1, - sym_comment, - STATE(6502), 1, - sym_statement_block, - ACTIONS(8207), 5, + ACTIONS(6033), 1, sym__automatic_semicolon, + STATE(4581), 1, + sym_comment, + ACTIONS(2095), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [164931] = 4, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [164709] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4740), 1, + STATE(4582), 1, sym_comment, - ACTIONS(6502), 7, + ACTIONS(6416), 7, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -356239,11146 +343643,10823 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [164950] = 9, + [164728] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(8091), 1, + anon_sym_QMARK, + ACTIONS(8196), 1, + anon_sym_COLON, + STATE(4583), 1, + sym_comment, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, + sym_type_parameters, + STATE(6975), 1, + sym__call_signature, + [164759] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4020), 1, + ACTIONS(4030), 1, anon_sym_LBRACE, - ACTIONS(4022), 1, + ACTIONS(4032), 1, anon_sym_LBRACK, - ACTIONS(7982), 1, + ACTIONS(8073), 1, sym_identifier, - STATE(4584), 1, + STATE(4574), 1, sym__destructuring_pattern, - STATE(4741), 1, + STATE(4584), 1, sym_comment, - STATE(5627), 1, + STATE(5443), 1, sym_variable_declarator, - STATE(4667), 2, + STATE(4389), 2, sym_object_pattern, sym_array_pattern, - [164979] = 6, + [164788] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8083), 1, + anon_sym_LPAREN, + ACTIONS(8198), 1, + sym_identifier, + ACTIONS(8200), 1, + anon_sym_STAR, + STATE(4585), 1, + sym_comment, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, + sym_type_parameters, + STATE(6643), 1, + sym__call_signature, + [164819] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8083), 1, + anon_sym_LPAREN, + ACTIONS(8202), 1, + sym_identifier, + ACTIONS(8204), 1, + anon_sym_STAR, + STATE(4586), 1, + sym_comment, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, + sym_type_parameters, + STATE(6925), 1, + sym__call_signature, + [164850] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8083), 1, + anon_sym_LPAREN, + ACTIONS(8206), 1, + sym_identifier, + ACTIONS(8208), 1, + anon_sym_STAR, + STATE(4587), 1, + sym_comment, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, + sym_type_parameters, + STATE(6643), 1, + sym__call_signature, + [164881] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(4742), 1, + STATE(4588), 1, sym_comment, - STATE(6497), 1, - sym_statement_block, - ACTIONS(8139), 5, + ACTIONS(8210), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [165002] = 8, + [164900] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8083), 1, + anon_sym_LPAREN, + ACTIONS(8212), 1, + sym_identifier, + ACTIONS(8214), 1, + anon_sym_STAR, + STATE(4589), 1, + sym_comment, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, + sym_type_parameters, + STATE(6925), 1, + sym__call_signature, + [164931] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8083), 1, + anon_sym_LPAREN, + ACTIONS(8216), 1, + sym_identifier, + ACTIONS(8218), 1, + anon_sym_STAR, + STATE(4590), 1, + sym_comment, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, + sym_type_parameters, + STATE(6643), 1, + sym__call_signature, + [164962] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8083), 1, + anon_sym_LPAREN, + ACTIONS(8220), 1, + sym_identifier, + ACTIONS(8222), 1, + anon_sym_STAR, + STATE(4591), 1, + sym_comment, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, + sym_type_parameters, + STATE(6643), 1, + sym__call_signature, + [164993] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4743), 1, + STATE(4592), 1, sym_comment, - STATE(5146), 1, + STATE(4969), 1, sym_type_annotation, - STATE(6177), 1, + STATE(6075), 1, sym__initializer, - ACTIONS(8034), 3, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165029] = 10, + [165020] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7646), 1, - anon_sym_LBRACE, - STATE(1528), 1, - sym_class_body, - STATE(4744), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4593), 1, sym_comment, - STATE(6029), 1, - sym_extends_clause, - STATE(7136), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [165060] = 8, + STATE(4845), 1, + sym_type_annotation, + STATE(6269), 1, + sym__initializer, + ACTIONS(7426), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165047] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4745), 1, + STATE(4594), 1, sym_comment, - STATE(5404), 1, + STATE(5240), 1, sym_type_annotation, - STATE(6246), 1, + STATE(6268), 1, sym__initializer, - ACTIONS(7370), 3, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165087] = 10, + [165074] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7682), 1, - anon_sym_LBRACE, - STATE(4746), 1, + STATE(4595), 1, sym_comment, - STATE(5508), 1, - sym_class_body, - STATE(6029), 1, - sym_extends_clause, - STATE(6720), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [165118] = 8, + ACTIONS(4330), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + [165093] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4747), 1, + STATE(4596), 1, sym_comment, - STATE(5442), 1, + STATE(4971), 1, sym_type_annotation, - STATE(6053), 1, + STATE(6076), 1, sym__initializer, - ACTIONS(7404), 3, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165145] = 8, + [165120] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4748), 1, + STATE(4597), 1, sym_comment, - STATE(5487), 1, + STATE(4997), 1, sym_type_annotation, - STATE(6064), 1, + STATE(6087), 1, sym__initializer, - ACTIONS(7402), 3, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165172] = 8, + [165147] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4749), 1, + STATE(4598), 1, sym_comment, - STATE(5060), 1, + STATE(5018), 1, sym_type_annotation, - STATE(6254), 1, + STATE(6099), 1, sym__initializer, - ACTIONS(7420), 3, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165199] = 8, + [165174] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(4750), 1, + STATE(4599), 1, sym_comment, - STATE(5436), 1, - sym_type_annotation, - STATE(6060), 1, - sym__initializer, - ACTIONS(7404), 3, + ACTIONS(4328), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [165226] = 10, + anon_sym_DOT, + [165193] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8209), 1, + STATE(4600), 1, + sym_comment, + ACTIONS(7623), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(8211), 1, anon_sym_COMMA, - ACTIONS(8213), 1, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(8215), 1, - anon_sym_LT, - ACTIONS(8217), 1, - anon_sym_LBRACE_PIPE, - STATE(4751), 1, - sym_comment, - STATE(5772), 1, - aux_sym_extends_type_clause_repeat1, - STATE(6107), 1, - sym_type_arguments, - [165257] = 10, + [165212] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7672), 1, - anon_sym_LBRACE, - STATE(1666), 1, - sym_class_body, - STATE(4752), 1, + STATE(4601), 1, sym_comment, - STATE(6029), 1, - sym_extends_clause, - STATE(6980), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [165288] = 4, + ACTIONS(7627), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + [165231] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4753), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4602), 1, sym_comment, - ACTIONS(2107), 7, + STATE(5031), 1, + sym_type_annotation, + STATE(6130), 1, + sym__initializer, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [165307] = 10, - ACTIONS(3), 1, + [165258] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4603), 1, + sym_comment, + STATE(5036), 1, + sym_type_annotation, + STATE(6132), 1, + sym__initializer, + ACTIONS(7426), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165285] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7994), 1, - anon_sym_LPAREN, - ACTIONS(8219), 1, - sym_identifier, - ACTIONS(8221), 1, - anon_sym_STAR, - STATE(4754), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4604), 1, sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(6619), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - [165338] = 8, + STATE(5230), 1, + sym_type_annotation, + STATE(6238), 1, + sym__initializer, + ACTIONS(7426), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165312] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4755), 1, + STATE(4605), 1, sym_comment, STATE(5210), 1, sym_type_annotation, - STATE(5897), 1, + STATE(6228), 1, sym__initializer, - ACTIONS(7368), 3, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165365] = 10, + [165339] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7546), 1, - anon_sym_extends, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(7644), 1, + STATE(4606), 1, + sym_comment, + ACTIONS(7659), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(917), 1, - sym_class_body, - STATE(4756), 1, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + [165358] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4607), 1, sym_comment, - STATE(6029), 1, - sym_extends_clause, - STATE(6647), 1, - sym_class_heritage, - STATE(7191), 1, - sym_implements_clause, - [165396] = 10, + ACTIONS(7661), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + [165377] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7994), 1, + ACTIONS(8083), 1, anon_sym_LPAREN, - ACTIONS(8223), 1, + ACTIONS(8224), 1, sym_identifier, - ACTIONS(8225), 1, + ACTIONS(8226), 1, anon_sym_STAR, - STATE(4757), 1, + STATE(4608), 1, sym_comment, - STATE(4790), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(6573), 1, + STATE(6493), 1, + sym_type_parameters, + STATE(6925), 1, sym__call_signature, - STATE(6683), 1, + [165408] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8083), 1, + anon_sym_LPAREN, + ACTIONS(8228), 1, + sym_identifier, + ACTIONS(8230), 1, + anon_sym_STAR, + STATE(4609), 1, + sym_comment, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, sym_type_parameters, - [165427] = 6, + STATE(6643), 1, + sym__call_signature, + [165439] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(4758), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(4610), 1, sym_comment, - STATE(6714), 1, - sym_statement_block, - ACTIONS(8207), 5, + STATE(5165), 1, + sym_type_annotation, + STATE(6186), 1, + sym__initializer, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [165450] = 8, + [165466] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(7162), 1, + ACTIONS(7171), 1, anon_sym_COLON, - STATE(4759), 1, + STATE(4611), 1, sym_comment, - STATE(5139), 1, + STATE(5104), 1, sym_type_annotation, - STATE(5853), 1, + STATE(6150), 1, sym__initializer, - ACTIONS(7368), 3, + ACTIONS(7426), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165477] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [165493] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8227), 1, - anon_sym_COMMA, - STATE(4760), 2, - sym_comment, - aux_sym_sequence_expression_repeat1, - ACTIONS(5296), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [165497] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(8230), 1, - anon_sym_QMARK, - STATE(4761), 1, + ACTIONS(8083), 1, + anon_sym_LPAREN, + ACTIONS(8232), 1, + sym_identifier, + ACTIONS(8234), 1, + anon_sym_STAR, + STATE(4612), 1, sym_comment, - STATE(4790), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(6553), 1, - sym__call_signature, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - [165525] = 9, + STATE(6925), 1, + sym__call_signature, + [165524] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8211), 1, - anon_sym_COMMA, - ACTIONS(8215), 1, - anon_sym_LT, - ACTIONS(8232), 1, - anon_sym_LBRACE, - ACTIONS(8234), 1, - anon_sym_LBRACE_PIPE, - STATE(4762), 1, + STATE(4613), 1, sym_comment, - STATE(5774), 1, - aux_sym_extends_type_clause_repeat1, - STATE(6110), 1, - sym_type_arguments, - [165553] = 6, + STATE(4628), 1, + aux_sym_object_type_repeat1, + ACTIONS(8238), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8236), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165546] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3536), 1, + STATE(3391), 1, sym_statement_block, - STATE(4763), 1, + STATE(4614), 1, sym_comment, - ACTIONS(8049), 4, + ACTIONS(8147), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165575] = 4, + [165568] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8242), 1, + sym_identifier, + STATE(4615), 1, + sym_comment, + ACTIONS(7002), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [165588] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4764), 1, + ACTIONS(8244), 1, + anon_sym_default, + ACTIONS(8246), 1, + anon_sym_RBRACE, + ACTIONS(8248), 1, + anon_sym_case, + STATE(4616), 1, sym_comment, - ACTIONS(8238), 6, - anon_sym_export, + STATE(4629), 1, + aux_sym_switch_body_repeat1, + STATE(6137), 2, + sym_switch_case, + sym_switch_default, + [165614] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8250), 1, + sym_identifier, + STATE(4617), 1, + sym_comment, + ACTIONS(7002), 5, anon_sym_LPAREN, anon_sym_DOT, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [165593] = 9, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [165634] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - ACTIONS(8240), 1, + ACTIONS(8252), 1, anon_sym_QMARK, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(4765), 1, + STATE(4618), 1, sym_comment, - STATE(5837), 1, + STATE(5136), 1, sym__call_signature, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - [165621] = 9, + [165662] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(8242), 1, - anon_sym_QMARK, - STATE(4766), 1, + STATE(4619), 1, sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(6683), 1, - sym_type_parameters, - STATE(6957), 1, - sym__call_signature, - [165649] = 4, + STATE(4628), 1, + aux_sym_object_type_repeat1, + ACTIONS(8256), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8254), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165684] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4767), 1, + ACTIONS(8258), 1, + sym_identifier, + STATE(4620), 1, sym_comment, - ACTIONS(4514), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(7002), 5, anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT, - anon_sym_QMARK, - [165667] = 6, + anon_sym_BQUOTE, + [165704] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8246), 1, - anon_sym_AT, - STATE(5700), 1, - sym_decorator, - STATE(4768), 2, + ACTIONS(4145), 1, + anon_sym_LPAREN, + ACTIONS(7673), 1, + anon_sym_DOT, + ACTIONS(8260), 1, + anon_sym_COMMA, + ACTIONS(8262), 1, + anon_sym_GT, + STATE(4337), 1, + sym_arguments, + STATE(4621), 1, sym_comment, - aux_sym_export_statement_repeat1, - ACTIONS(8244), 3, - anon_sym_export, - anon_sym_class, - anon_sym_abstract, - [165689] = 6, + STATE(5727), 1, + aux_sym_type_arguments_repeat1, + [165732] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3531), 1, - sym_statement_block, - STATE(4769), 1, - sym_comment, - ACTIONS(8061), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(8264), 1, anon_sym_COMMA, - anon_sym_SEMI, - [165711] = 9, + ACTIONS(8266), 1, + anon_sym_GT, + STATE(4622), 1, + sym_comment, + STATE(5732), 1, + aux_sym_type_arguments_repeat1, + [165760] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4008), 1, - anon_sym_DQUOTE, - ACTIONS(4010), 1, - anon_sym_SQUOTE, - ACTIONS(8063), 1, + ACTIONS(8268), 1, sym_identifier, - STATE(1194), 1, - sym_nested_identifier, - STATE(1215), 1, - sym_string, - STATE(1571), 1, - sym__module, - STATE(4770), 1, + STATE(4623), 1, sym_comment, - [165739] = 9, + ACTIONS(7002), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [165780] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8249), 1, - anon_sym_export, - ACTIONS(8251), 1, - anon_sym_class, - ACTIONS(8253), 1, - anon_sym_abstract, - STATE(4768), 1, - aux_sym_export_statement_repeat1, - STATE(4771), 1, + ACTIONS(8270), 1, + anon_sym_catch, + ACTIONS(8272), 1, + anon_sym_finally, + STATE(4624), 1, sym_comment, - STATE(5700), 1, - sym_decorator, - [165767] = 9, + STATE(5562), 1, + sym_catch_clause, + STATE(6744), 1, + sym_finally_clause, + ACTIONS(3028), 2, + anon_sym_else, + anon_sym_while, + [165806] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4111), 1, - anon_sym_SQUOTE, - ACTIONS(8199), 1, + ACTIONS(8274), 1, sym_identifier, - STATE(909), 1, - sym_nested_identifier, - STATE(915), 1, - sym_string, - STATE(1093), 1, - sym__module, - STATE(4772), 1, + STATE(4625), 1, sym_comment, - [165795] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(7002), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [165826] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3537), 1, - sym_statement_block, - STATE(4773), 1, - sym_comment, - ACTIONS(8055), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [165817] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(8083), 1, anon_sym_LPAREN, - ACTIONS(8255), 1, - anon_sym_QMARK, - STATE(4266), 1, - sym_formal_parameters, - STATE(4774), 1, + ACTIONS(8276), 1, + sym_identifier, + STATE(4626), 1, sym_comment, - STATE(4901), 1, - sym__call_signature, - STATE(6530), 1, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, sym_type_parameters, - [165845] = 9, + STATE(6639), 1, + sym__call_signature, + [165854] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4109), 1, - anon_sym_DQUOTE, - ACTIONS(4111), 1, - anon_sym_SQUOTE, - ACTIONS(8199), 1, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8083), 1, + anon_sym_LPAREN, + ACTIONS(8278), 1, sym_identifier, - STATE(909), 1, - sym_nested_identifier, - STATE(915), 1, - sym_string, - STATE(1058), 1, - sym__module, - STATE(4775), 1, + STATE(4627), 1, sym_comment, - [165873] = 6, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, + sym_type_parameters, + STATE(6921), 1, + sym__call_signature, + [165882] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3553), 1, - sym_statement_block, - STATE(4776), 1, + ACTIONS(8283), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4628), 2, sym_comment, - ACTIONS(8055), 4, + aux_sym_object_type_repeat1, + ACTIONS(8280), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165895] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4777), 1, - sym_comment, - ACTIONS(8257), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4514), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [165915] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(4778), 1, - sym_comment, - ACTIONS(8259), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [165933] = 8, + [165902] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8261), 1, + ACTIONS(8244), 1, anon_sym_default, - ACTIONS(8263), 1, - anon_sym_RBRACE, - ACTIONS(8265), 1, + ACTIONS(8248), 1, anon_sym_case, - STATE(4779), 1, + ACTIONS(8285), 1, + anon_sym_RBRACE, + STATE(4629), 1, sym_comment, - STATE(4872), 1, + STATE(4744), 1, aux_sym_switch_body_repeat1, - STATE(6459), 2, + STATE(6137), 2, sym_switch_case, sym_switch_default, - [165959] = 4, - ACTIONS(3), 1, + [165928] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(4630), 1, + sym_comment, + STATE(4633), 1, + aux_sym_object_type_repeat1, + ACTIONS(8289), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8287), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165950] = 6, ACTIONS(5), 1, sym_html_comment, - STATE(4780), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4891), 1, + anon_sym_COMMA, + STATE(4631), 1, sym_comment, - ACTIONS(8267), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [165977] = 6, + STATE(4686), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(8291), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [165972] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4781), 1, + STATE(4632), 1, sym_comment, - STATE(4829), 1, + STATE(4636), 1, aux_sym_object_type_repeat1, - ACTIONS(8271), 2, + ACTIONS(8295), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8269), 3, + ACTIONS(8293), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165999] = 9, + [165994] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(8273), 1, - anon_sym_QMARK, - STATE(4782), 1, + STATE(4628), 1, + aux_sym_object_type_repeat1, + STATE(4633), 1, sym_comment, - STATE(4790), 1, - sym_formal_parameters, - STATE(6683), 1, - sym_type_parameters, - STATE(6823), 1, - sym__call_signature, - [166027] = 9, + ACTIONS(8295), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8293), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [166016] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8275), 1, - anon_sym_export, - ACTIONS(8277), 1, - anon_sym_class, - ACTIONS(8279), 1, - anon_sym_abstract, - STATE(4768), 1, - aux_sym_export_statement_repeat1, - STATE(4783), 1, + STATE(4634), 1, sym_comment, - STATE(5700), 1, - sym_decorator, - [166055] = 4, + ACTIONS(2115), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [166034] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4784), 1, - sym_comment, - ACTIONS(8281), 6, + ACTIONS(3880), 1, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, + ACTIONS(8297), 1, + sym_identifier, + ACTIONS(8299), 1, + anon_sym_LBRACK, + STATE(4635), 1, + sym_comment, + STATE(5874), 1, + sym__destructuring_pattern, + STATE(4288), 2, + sym_object_pattern, + sym_array_pattern, + [166060] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4628), 1, + aux_sym_object_type_repeat1, + STATE(4636), 1, + sym_comment, + ACTIONS(8303), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8301), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [166082] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, anon_sym_LT, - [166073] = 8, + ACTIONS(8083), 1, + anon_sym_LPAREN, + ACTIONS(8305), 1, + sym_identifier, + STATE(4637), 1, + sym_comment, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, + sym_type_parameters, + STATE(6639), 1, + sym__call_signature, + [166110] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8283), 1, - anon_sym_BQUOTE, - ACTIONS(8285), 1, - anon_sym_DOLLAR_LBRACE, - STATE(4785), 1, + STATE(4638), 1, sym_comment, - STATE(4831), 1, - aux_sym_template_string_repeat1, - STATE(5588), 1, - sym_template_substitution, - ACTIONS(7926), 2, - sym__template_chars, - sym_escape_sequence, - [166099] = 9, + ACTIONS(8175), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [166128] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7994), 1, + ACTIONS(8083), 1, anon_sym_LPAREN, - ACTIONS(8287), 1, + ACTIONS(8307), 1, sym_identifier, - STATE(4786), 1, + STATE(4639), 1, sym_comment, - STATE(4790), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - STATE(6733), 1, + STATE(6921), 1, sym__call_signature, - [166127] = 4, + [166156] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4787), 1, + STATE(4640), 1, sym_comment, - ACTIONS(8259), 6, + ACTIONS(5363), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [166145] = 6, + [166174] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3532), 1, - sym_statement_block, - STATE(4788), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + ACTIONS(8309), 1, + anon_sym_QMARK, + STATE(4055), 1, + sym_formal_parameters, + STATE(4641), 1, sym_comment, - ACTIONS(8002), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [166167] = 6, + STATE(5963), 1, + sym__call_signature, + STATE(6769), 1, + sym_type_parameters, + [166202] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(8067), 1, + anon_sym_DOT, + ACTIONS(8069), 1, + anon_sym_LT, + ACTIONS(8311), 1, anon_sym_LBRACE, - STATE(3555), 1, - sym_statement_block, - STATE(4789), 1, + STATE(4642), 1, sym_comment, - ACTIONS(8049), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(6167), 1, + sym_type_arguments, + ACTIONS(8313), 2, anon_sym_COMMA, - anon_sym_SEMI, - [166189] = 6, + anon_sym_LBRACE_PIPE, + [166228] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8289), 1, - anon_sym_COLON, - STATE(4790), 1, - sym_comment, - ACTIONS(7496), 2, + ACTIONS(8240), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6942), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [166211] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4791), 1, + STATE(3406), 1, + sym_statement_block, + STATE(4643), 1, sym_comment, - STATE(4829), 1, - aux_sym_object_type_repeat1, - ACTIONS(8293), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8291), 3, + ACTIONS(8097), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166233] = 6, + [166250] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4781), 1, - aux_sym_object_type_repeat1, - STATE(4792), 1, + ACTIONS(1920), 1, + anon_sym_DQUOTE, + ACTIONS(1922), 1, + anon_sym_SQUOTE, + ACTIONS(8029), 1, + sym_identifier, + STATE(4330), 1, + sym_nested_identifier, + STATE(4500), 1, + sym_string, + STATE(4644), 1, sym_comment, - ACTIONS(8293), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8291), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [166255] = 4, + STATE(5024), 1, + sym__module, + [166278] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4793), 1, + STATE(4645), 1, sym_comment, - ACTIONS(8295), 6, + ACTIONS(5676), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [166273] = 7, + [166296] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - STATE(4794), 1, + STATE(4646), 1, sym_comment, - ACTIONS(8297), 3, - anon_sym_EQ, + ACTIONS(8157), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - [166297] = 9, + anon_sym_SEMI, + anon_sym_COLON, + [166314] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4008), 1, + ACTIONS(1920), 1, anon_sym_DQUOTE, - ACTIONS(4010), 1, + ACTIONS(1922), 1, anon_sym_SQUOTE, - ACTIONS(8063), 1, + ACTIONS(8029), 1, sym_identifier, - STATE(1194), 1, + STATE(4330), 1, sym_nested_identifier, - STATE(1215), 1, + STATE(4500), 1, sym_string, - STATE(1581), 1, + STATE(4647), 1, + sym_comment, + STATE(5038), 1, sym__module, - STATE(4795), 1, + [166342] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3404), 1, + sym_statement_block, + STATE(4648), 1, sym_comment, - [166325] = 9, + ACTIONS(8099), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [166364] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(4103), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(4105), 1, anon_sym_SQUOTE, - ACTIONS(8051), 1, + ACTIONS(8007), 1, sym_identifier, - STATE(4796), 1, - sym_comment, - STATE(5470), 1, + STATE(930), 1, sym_nested_identifier, - STATE(5576), 1, + STATE(1068), 1, sym_string, - STATE(6844), 1, + STATE(1331), 1, sym__module, - [166353] = 9, + STATE(4649), 1, + sym_comment, + [166392] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, + ACTIONS(4103), 1, anon_sym_DQUOTE, - ACTIONS(1896), 1, + ACTIONS(4105), 1, anon_sym_SQUOTE, - ACTIONS(8051), 1, + ACTIONS(8007), 1, sym_identifier, - STATE(4797), 1, - sym_comment, - STATE(5470), 1, + STATE(930), 1, sym_nested_identifier, - STATE(5576), 1, + STATE(1068), 1, sym_string, - STATE(6960), 1, + STATE(1357), 1, sym__module, - [166381] = 8, + STATE(4650), 1, + sym_comment, + [166420] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(8315), 1, + anon_sym_QMARK, + STATE(4255), 1, + sym_formal_parameters, + STATE(4651), 1, + sym_comment, + STATE(4658), 1, + sym__call_signature, + STATE(6732), 1, + sym_type_parameters, + [166448] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3386), 1, + sym_statement_block, + STATE(4652), 1, + sym_comment, + ACTIONS(8099), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [166470] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(8317), 1, + anon_sym_QMARK, + STATE(4653), 1, + sym_comment, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, + sym_type_parameters, + STATE(6728), 1, + sym__call_signature, + [166498] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3387), 1, + sym_statement_block, + STATE(4654), 1, + sym_comment, + ACTIONS(8097), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [166520] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3876), 1, + ACTIONS(3880), 1, anon_sym_LBRACE, ACTIONS(8299), 1, - sym_identifier, - ACTIONS(8301), 1, anon_sym_LBRACK, - STATE(4798), 1, + ACTIONS(8319), 1, + sym_identifier, + STATE(4655), 1, sym_comment, - STATE(6109), 1, + STATE(5913), 1, sym__destructuring_pattern, - STATE(4283), 2, + STATE(4288), 2, sym_object_pattern, sym_array_pattern, - [166407] = 9, + [166546] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7994), 1, + ACTIONS(8083), 1, anon_sym_LPAREN, - ACTIONS(8303), 1, + ACTIONS(8321), 1, sym_identifier, - STATE(4790), 1, - sym_formal_parameters, - STATE(4799), 1, + STATE(4656), 1, sym_comment, - STATE(6683), 1, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, sym_type_parameters, - STATE(6800), 1, + STATE(6639), 1, sym__call_signature, - [166435] = 6, + [166574] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4800), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3394), 1, + sym_statement_block, + STATE(4657), 1, sym_comment, - STATE(4829), 1, - aux_sym_object_type_repeat1, - ACTIONS(8307), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8305), 3, + ACTIONS(8119), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166457] = 4, - ACTIONS(3), 1, + [166596] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3397), 1, + sym_statement_block, + STATE(4658), 1, + sym_comment, + ACTIONS(8121), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [166618] = 8, ACTIONS(5), 1, sym_html_comment, - STATE(4801), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8323), 1, + anon_sym_BQUOTE, + ACTIONS(8325), 1, + anon_sym_DOLLAR_LBRACE, + STATE(4659), 1, sym_comment, - ACTIONS(8309), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [166475] = 5, + STATE(4741), 1, + aux_sym_template_string_repeat1, + STATE(5469), 1, + sym_template_substitution, + ACTIONS(7921), 2, + sym__template_chars, + sym_escape_sequence, + [166644] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8311), 1, - sym_identifier, - STATE(4802), 1, - sym_comment, - ACTIONS(6993), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1902), 1, anon_sym_LT, - anon_sym_BQUOTE, - [166495] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5000), 1, - anon_sym_COMMA, - STATE(4760), 1, - aux_sym_sequence_expression_repeat1, - STATE(4803), 1, + ACTIONS(8083), 1, + anon_sym_LPAREN, + ACTIONS(8327), 1, + sym_identifier, + STATE(4660), 1, sym_comment, - ACTIONS(8313), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [166517] = 4, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, + sym_type_parameters, + STATE(6921), 1, + sym__call_signature, + [166672] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4804), 1, + STATE(4661), 1, sym_comment, - ACTIONS(8315), 6, + ACTIONS(5545), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [166535] = 9, + [166690] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - ACTIONS(8317), 1, - anon_sym_QMARK, - STATE(4200), 1, - sym_formal_parameters, - STATE(4805), 1, - sym_comment, - STATE(5009), 1, - sym__call_signature, - STATE(6630), 1, - sym_type_parameters, - [166563] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(8319), 1, + ACTIONS(8329), 1, anon_sym_QMARK, - STATE(4200), 1, + STATE(4255), 1, sym_formal_parameters, - STATE(4806), 1, + STATE(4662), 1, sym_comment, - STATE(5111), 1, + STATE(4805), 1, sym__call_signature, - STATE(6630), 1, + STATE(6732), 1, sym_type_parameters, - [166591] = 6, + [166718] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4791), 1, - aux_sym_object_type_repeat1, - STATE(4807), 1, - sym_comment, - ACTIONS(8323), 2, + ACTIONS(8244), 1, + anon_sym_default, + ACTIONS(8248), 1, + anon_sym_case, + ACTIONS(8331), 1, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8321), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [166613] = 4, + STATE(4663), 1, + sym_comment, + STATE(4678), 1, + aux_sym_switch_body_repeat1, + STATE(6137), 2, + sym_switch_case, + sym_switch_default, + [166744] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4808), 1, + STATE(4664), 1, sym_comment, - ACTIONS(8259), 6, + ACTIONS(5541), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [166631] = 6, + [166762] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8289), 1, - anon_sym_COLON, - STATE(4809), 1, + STATE(4665), 1, sym_comment, - ACTIONS(7448), 2, + ACTIONS(7971), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6534), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [166653] = 8, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DOT, + [166780] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8261), 1, - anon_sym_default, - ACTIONS(8265), 1, - anon_sym_case, - ACTIONS(8325), 1, - anon_sym_RBRACE, - STATE(4810), 1, + STATE(4666), 1, sym_comment, - STATE(4850), 1, - aux_sym_switch_body_repeat1, - STATE(6459), 2, - sym_switch_case, - sym_switch_default, - [166679] = 9, + ACTIONS(6224), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DOT, + [166798] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(8327), 1, - anon_sym_QMARK, - STATE(4790), 1, - sym_formal_parameters, - STATE(4811), 1, - sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6938), 1, - sym__call_signature, - [166707] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7994), 1, - anon_sym_LPAREN, - ACTIONS(8329), 1, - sym_identifier, - STATE(4790), 1, - sym_formal_parameters, - STATE(4812), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3399), 1, + sym_statement_block, + STATE(4667), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6866), 1, - sym__call_signature, - [166735] = 4, + ACTIONS(8119), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [166820] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4813), 1, + STATE(4668), 1, sym_comment, - ACTIONS(7272), 6, - anon_sym_EQ, + ACTIONS(5552), 6, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [166753] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7994), 1, - anon_sym_LPAREN, - ACTIONS(8331), 1, - sym_identifier, - STATE(4790), 1, - sym_formal_parameters, - STATE(4814), 1, - sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6800), 1, - sym__call_signature, - [166781] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, - ACTIONS(7994), 1, - anon_sym_LPAREN, - ACTIONS(8333), 1, - sym_identifier, - STATE(4790), 1, - sym_formal_parameters, - STATE(4815), 1, - sym_comment, - STATE(6519), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - [166809] = 4, + [166838] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4816), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3373), 1, + sym_statement_block, + STATE(4669), 1, sym_comment, - ACTIONS(8113), 6, + ACTIONS(8121), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [166827] = 9, + [166860] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, + ACTIONS(4145), 1, anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, + ACTIONS(7673), 1, + anon_sym_DOT, + ACTIONS(8333), 1, + anon_sym_COMMA, ACTIONS(8335), 1, - anon_sym_QMARK, - STATE(4790), 1, - sym_formal_parameters, - STATE(4817), 1, + anon_sym_GT, + STATE(4337), 1, + sym_arguments, + STATE(4670), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6978), 1, - sym__call_signature, - [166855] = 8, + STATE(6015), 1, + aux_sym_type_arguments_repeat1, + [166888] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, ACTIONS(8337), 1, - anon_sym_catch, + anon_sym_COMMA, ACTIONS(8339), 1, - anon_sym_finally, - STATE(4818), 1, + anon_sym_GT, + STATE(4671), 1, sym_comment, - STATE(5582), 1, - sym_catch_clause, - STATE(7089), 1, - sym_finally_clause, - ACTIONS(3030), 2, - anon_sym_else, - anon_sym_while, - [166881] = 8, + STATE(6019), 1, + aux_sym_type_arguments_repeat1, + [166916] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4226), 1, - anon_sym_COLON, - ACTIONS(8125), 1, - anon_sym_EQ, - STATE(4819), 1, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(8299), 1, + anon_sym_LBRACK, + ACTIONS(8341), 1, + sym_identifier, + STATE(4672), 1, sym_comment, - STATE(5739), 1, - sym_type_annotation, - STATE(6654), 1, - sym__initializer, - ACTIONS(8341), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [166907] = 9, + STATE(5985), 1, + sym__destructuring_pattern, + STATE(4288), 2, + sym_object_pattern, + sym_array_pattern, + [166942] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, ACTIONS(8343), 1, - anon_sym_COMMA, - ACTIONS(8345), 1, - anon_sym_GT, - STATE(4820), 1, + anon_sym_QMARK, + STATE(4055), 1, + sym_formal_parameters, + STATE(4673), 1, sym_comment, - STATE(6449), 1, - aux_sym_type_arguments_repeat1, - [166935] = 9, + STATE(6108), 1, + sym__call_signature, + STATE(6769), 1, + sym_type_parameters, + [166970] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4129), 1, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8083), 1, anon_sym_LPAREN, - ACTIONS(7610), 1, - anon_sym_DOT, - ACTIONS(8347), 1, - anon_sym_COMMA, - ACTIONS(8349), 1, - anon_sym_GT, - STATE(4458), 1, - sym_arguments, - STATE(4821), 1, + ACTIONS(8345), 1, + sym_identifier, + STATE(4674), 1, sym_comment, - STATE(6445), 1, - aux_sym_type_arguments_repeat1, - [166963] = 9, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, + sym_type_parameters, + STATE(6639), 1, + sym__call_signature, + [166998] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(8351), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(8347), 1, anon_sym_QMARK, - STATE(4790), 1, - sym_formal_parameters, - STATE(4822), 1, + STATE(4675), 1, sym_comment, - STATE(6489), 1, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, + sym_type_parameters, + STATE(6814), 1, sym__call_signature, - STATE(6683), 1, + [167026] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8083), 1, + anon_sym_LPAREN, + ACTIONS(8349), 1, + sym_identifier, + STATE(4676), 1, + sym_comment, + STATE(4683), 1, + sym_formal_parameters, + STATE(6493), 1, sym_type_parameters, - [166991] = 4, + STATE(6921), 1, + sym__call_signature, + [167054] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4823), 1, + STATE(4677), 1, sym_comment, - ACTIONS(5507), 6, + ACTIONS(5556), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [167009] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3528), 1, - sym_statement_block, - STATE(4824), 1, - sym_comment, - ACTIONS(8075), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [167031] = 8, + [167072] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8261), 1, + ACTIONS(8244), 1, anon_sym_default, - ACTIONS(8265), 1, + ACTIONS(8248), 1, anon_sym_case, - ACTIONS(8353), 1, + ACTIONS(8351), 1, anon_sym_RBRACE, - STATE(4810), 1, - aux_sym_switch_body_repeat1, - STATE(4825), 1, + STATE(4678), 1, sym_comment, - STATE(6459), 2, + STATE(4744), 1, + aux_sym_switch_body_repeat1, + STATE(6137), 2, sym_switch_case, sym_switch_default, - [167057] = 9, + [167098] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(8355), 1, - anon_sym_QMARK, - STATE(4790), 1, - sym_formal_parameters, - STATE(4826), 1, + STATE(4679), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(7044), 1, - sym__call_signature, - [167085] = 9, + STATE(4681), 1, + aux_sym_object_type_repeat1, + ACTIONS(8355), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8353), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167120] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, - anon_sym_LPAREN, - ACTIONS(7610), 1, - anon_sym_DOT, - ACTIONS(8357), 1, - anon_sym_COMMA, - ACTIONS(8359), 1, - anon_sym_GT, - STATE(4458), 1, - sym_arguments, - STATE(4827), 1, + STATE(4680), 1, sym_comment, - STATE(6395), 1, - aux_sym_type_arguments_repeat1, - [167113] = 9, + STATE(4688), 1, + aux_sym_object_type_repeat1, + ACTIONS(8359), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8357), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167142] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(8361), 1, - anon_sym_COMMA, - ACTIONS(8363), 1, - anon_sym_GT, - STATE(4828), 1, + STATE(4628), 1, + aux_sym_object_type_repeat1, + STATE(4681), 1, sym_comment, - STATE(6391), 1, - aux_sym_type_arguments_repeat1, - [167141] = 5, + ACTIONS(8359), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8357), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167164] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8368), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4829), 2, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3362), 1, + sym_statement_block, + STATE(4682), 1, sym_comment, - aux_sym_object_type_repeat1, - ACTIONS(8365), 3, + ACTIONS(8155), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167161] = 9, + [167186] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(8370), 1, - anon_sym_QMARK, - STATE(4200), 1, - sym_formal_parameters, - STATE(4830), 1, + ACTIONS(8361), 1, + anon_sym_COLON, + STATE(4683), 1, sym_comment, - STATE(5211), 1, - sym__call_signature, - STATE(6630), 1, - sym_type_parameters, - [167189] = 8, + ACTIONS(7515), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6678), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [167208] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8285), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8372), 1, - anon_sym_BQUOTE, - STATE(4831), 1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8363), 1, + anon_sym_export, + ACTIONS(8365), 1, + anon_sym_class, + ACTIONS(8367), 1, + anon_sym_abstract, + STATE(4684), 1, sym_comment, - STATE(4966), 1, - aux_sym_template_string_repeat1, - STATE(5588), 1, - sym_template_substitution, - ACTIONS(7926), 2, - sym__template_chars, - sym_escape_sequence, - [167215] = 9, + STATE(4771), 1, + aux_sym_export_statement_repeat1, + STATE(5410), 1, + sym_decorator, + [167236] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7920), 1, - anon_sym_GT, - ACTIONS(8374), 1, + ACTIONS(4014), 1, + anon_sym_DQUOTE, + ACTIONS(4016), 1, + anon_sym_SQUOTE, + ACTIONS(8167), 1, sym_identifier, - ACTIONS(8376), 1, - sym_jsx_identifier, - ACTIONS(8378), 1, - anon_sym_SLASH_GT, - STATE(4074), 1, + STATE(962), 1, sym_nested_identifier, - STATE(4295), 1, - sym_jsx_namespace_name, - STATE(4832), 1, + STATE(1161), 1, + sym_string, + STATE(1450), 1, + sym__module, + STATE(4685), 1, sym_comment, - [167243] = 9, + [167264] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(8380), 1, - anon_sym_QMARK, - STATE(4790), 1, - sym_formal_parameters, - STATE(4833), 1, + ACTIONS(8369), 1, + anon_sym_COMMA, + STATE(4686), 2, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6768), 1, - sym__call_signature, - [167271] = 4, + aux_sym_sequence_expression_repeat1, + ACTIONS(5214), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + [167284] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4834), 1, + STATE(4687), 1, sym_comment, - ACTIONS(5511), 6, + ACTIONS(5552), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [167289] = 9, + [167302] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(8382), 1, - anon_sym_QMARK, - STATE(4200), 1, - sym_formal_parameters, - STATE(4835), 1, + STATE(4628), 1, + aux_sym_object_type_repeat1, + STATE(4688), 1, sym_comment, - STATE(6007), 1, - sym__call_signature, - STATE(6630), 1, - sym_type_parameters, - [167317] = 9, + ACTIONS(8374), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8372), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167324] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, + STATE(4689), 1, + sym_comment, + ACTIONS(5588), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [167342] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7994), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - ACTIONS(8384), 1, - sym_identifier, - STATE(4790), 1, + ACTIONS(8376), 1, + anon_sym_QMARK, + STATE(4055), 1, sym_formal_parameters, - STATE(4836), 1, - sym_comment, - STATE(6519), 1, + STATE(4558), 1, sym__call_signature, - STATE(6683), 1, + STATE(4690), 1, + sym_comment, + STATE(6769), 1, sym_type_parameters, - [167345] = 6, + [167370] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4837), 1, + STATE(4691), 1, sym_comment, - STATE(4865), 1, - aux_sym_object_type_repeat1, - ACTIONS(8388), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8386), 3, - sym__automatic_semicolon, + ACTIONS(2223), 6, anon_sym_COMMA, - anon_sym_SEMI, - [167367] = 9, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [167388] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(8390), 1, + ACTIONS(7197), 1, + anon_sym_LPAREN, + ACTIONS(8378), 1, anon_sym_QMARK, - STATE(4790), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(4838), 1, + STATE(4550), 1, + sym__call_signature, + STATE(4692), 1, sym_comment, - STATE(6683), 1, + STATE(6769), 1, sym_type_parameters, - STATE(7112), 1, - sym__call_signature, - [167395] = 9, + [167416] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7920), 1, - anon_sym_GT, - ACTIONS(8392), 1, + ACTIONS(4014), 1, + anon_sym_DQUOTE, + ACTIONS(4016), 1, + anon_sym_SQUOTE, + ACTIONS(8167), 1, sym_identifier, - ACTIONS(8394), 1, - sym_jsx_identifier, - ACTIONS(8396), 1, - anon_sym_SLASH_GT, - STATE(4091), 1, + STATE(962), 1, sym_nested_identifier, - STATE(4285), 1, - sym_jsx_namespace_name, - STATE(4839), 1, + STATE(1161), 1, + sym_string, + STATE(1517), 1, + sym__module, + STATE(4693), 1, sym_comment, - [167423] = 9, + [167444] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7994), 1, - anon_sym_LPAREN, - ACTIONS(8398), 1, - sym_identifier, - STATE(4790), 1, - sym_formal_parameters, - STATE(4840), 1, - sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6800), 1, - sym__call_signature, - [167451] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8285), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8400), 1, - anon_sym_BQUOTE, - STATE(4841), 1, + STATE(4694), 1, sym_comment, - STATE(4856), 1, - aux_sym_template_string_repeat1, - STATE(5588), 1, - sym_template_substitution, - ACTIONS(7926), 2, - sym__template_chars, - sym_escape_sequence, - [167477] = 8, + ACTIONS(8380), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [167462] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(8301), 1, - anon_sym_LBRACK, - ACTIONS(8402), 1, - sym_identifier, - STATE(4842), 1, + STATE(4695), 1, sym_comment, - STATE(6033), 1, - sym__destructuring_pattern, - STATE(4283), 2, - sym_object_pattern, - sym_array_pattern, - [167503] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(8382), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, - ACTIONS(8404), 1, - anon_sym_QMARK, - STATE(4790), 1, - sym_formal_parameters, - STATE(4843), 1, - sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(7161), 1, - sym__call_signature, - [167531] = 9, + [167480] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - ACTIONS(8406), 1, + ACTIONS(8384), 1, anon_sym_QMARK, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(4844), 1, - sym_comment, - STATE(5257), 1, + STATE(4544), 1, sym__call_signature, - STATE(6630), 1, - sym_type_parameters, - [167559] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(8408), 1, - anon_sym_QMARK, - STATE(4790), 1, - sym_formal_parameters, - STATE(4845), 1, + STATE(4696), 1, sym_comment, - STATE(6683), 1, + STATE(6769), 1, sym_type_parameters, - STATE(7171), 1, - sym__call_signature, - [167587] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8261), 1, - anon_sym_default, - ACTIONS(8265), 1, - anon_sym_case, - ACTIONS(8410), 1, - anon_sym_RBRACE, - STATE(4846), 1, - sym_comment, - STATE(4889), 1, - aux_sym_switch_body_repeat1, - STATE(6459), 2, - sym_switch_case, - sym_switch_default, - [167613] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4091), 1, - anon_sym_DQUOTE, - ACTIONS(4093), 1, - anon_sym_SQUOTE, - ACTIONS(8020), 1, - sym_identifier, - STATE(925), 1, - sym_nested_identifier, - STATE(1032), 1, - sym_string, - STATE(1357), 1, - sym__module, - STATE(4847), 1, - sym_comment, - [167641] = 9, + [167508] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4091), 1, + ACTIONS(4111), 1, anon_sym_DQUOTE, - ACTIONS(4093), 1, + ACTIONS(4113), 1, anon_sym_SQUOTE, - ACTIONS(8020), 1, + ACTIONS(8039), 1, sym_identifier, - STATE(925), 1, + STATE(947), 1, sym_nested_identifier, - STATE(1032), 1, + STATE(1041), 1, sym_string, - STATE(1384), 1, + STATE(1220), 1, sym__module, - STATE(4848), 1, + STATE(4697), 1, sym_comment, - [167669] = 4, + [167536] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4849), 1, + STATE(4698), 1, sym_comment, - ACTIONS(8412), 6, + ACTIONS(5552), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [167687] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8414), 1, - anon_sym_default, - ACTIONS(8417), 1, - anon_sym_RBRACE, - ACTIONS(8419), 1, - anon_sym_case, - STATE(4850), 2, - sym_comment, - aux_sym_switch_body_repeat1, - STATE(6459), 2, - sym_switch_case, - sym_switch_default, - [167711] = 4, + [167554] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4851), 1, + ACTIONS(4111), 1, + anon_sym_DQUOTE, + ACTIONS(4113), 1, + anon_sym_SQUOTE, + ACTIONS(8039), 1, + sym_identifier, + STATE(947), 1, + sym_nested_identifier, + STATE(1041), 1, + sym_string, + STATE(1375), 1, + sym__module, + STATE(4699), 1, sym_comment, - ACTIONS(8422), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [167729] = 5, + [167582] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8424), 1, - anon_sym_DOT, - STATE(4852), 1, + STATE(4628), 1, + aux_sym_object_type_repeat1, + STATE(4700), 1, sym_comment, - ACTIONS(7958), 5, + ACTIONS(8388), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8386), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [167749] = 4, + [167604] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4853), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + ACTIONS(8390), 1, + anon_sym_QMARK, + STATE(4055), 1, + sym_formal_parameters, + STATE(4530), 1, + sym__call_signature, + STATE(4701), 1, sym_comment, - ACTIONS(2095), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [167767] = 4, + STATE(6769), 1, + sym_type_parameters, + [167632] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4854), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + ACTIONS(8392), 1, + anon_sym_QMARK, + STATE(4055), 1, + sym_formal_parameters, + STATE(4702), 1, sym_comment, - ACTIONS(8426), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, + STATE(4852), 1, + sym__call_signature, + STATE(6769), 1, + sym_type_parameters, + [167660] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8244), 1, + anon_sym_default, + ACTIONS(8248), 1, + anon_sym_case, + ACTIONS(8394), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [167785] = 4, + STATE(4703), 1, + sym_comment, + STATE(4716), 1, + aux_sym_switch_body_repeat1, + STATE(6137), 2, + sym_switch_case, + sym_switch_default, + [167686] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4855), 1, + STATE(4704), 1, sym_comment, - ACTIONS(8428), 6, + ACTIONS(8396), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [167803] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8285), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8430), 1, - anon_sym_BQUOTE, - STATE(4856), 1, - sym_comment, - STATE(4966), 1, - aux_sym_template_string_repeat1, - STATE(5588), 1, - sym_template_substitution, - ACTIONS(7926), 2, - sym__template_chars, - sym_escape_sequence, - [167829] = 6, + [167704] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4829), 1, - aux_sym_object_type_repeat1, - STATE(4857), 1, + STATE(4705), 1, sym_comment, - ACTIONS(8434), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8432), 3, + ACTIONS(8398), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [167851] = 4, + anon_sym_PIPE_RBRACE, + [167722] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4858), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3371), 1, + sym_statement_block, + STATE(4706), 1, sym_comment, - ACTIONS(8436), 6, + ACTIONS(8077), 4, sym__automatic_semicolon, - anon_sym_LBRACE, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [167869] = 9, + [167744] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, + ACTIONS(4145), 1, anon_sym_LPAREN, - ACTIONS(7610), 1, + ACTIONS(7673), 1, anon_sym_DOT, - ACTIONS(8438), 1, + ACTIONS(8400), 1, anon_sym_COMMA, - ACTIONS(8440), 1, + ACTIONS(8402), 1, anon_sym_GT, - STATE(4458), 1, + STATE(4337), 1, sym_arguments, - STATE(4859), 1, + STATE(4707), 1, sym_comment, - STATE(6141), 1, + STATE(6262), 1, aux_sym_type_arguments_repeat1, - [167897] = 9, + [167772] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7082), 1, + ACTIONS(7071), 1, anon_sym_PIPE, - ACTIONS(7084), 1, + ACTIONS(7073), 1, anon_sym_extends, - ACTIONS(8442), 1, + ACTIONS(8404), 1, anon_sym_COMMA, - ACTIONS(8444), 1, + ACTIONS(8406), 1, anon_sym_GT, - STATE(4860), 1, + STATE(4708), 1, sym_comment, - STATE(6136), 1, + STATE(6266), 1, aux_sym_type_arguments_repeat1, - [167925] = 6, + [167800] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3533), 1, - sym_statement_block, - STATE(4861), 1, + STATE(4628), 1, + aux_sym_object_type_repeat1, + STATE(4709), 1, sym_comment, - ACTIONS(8036), 4, + ACTIONS(8410), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8408), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167947] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - ACTIONS(8446), 1, - anon_sym_QMARK, - STATE(4266), 1, - sym_formal_parameters, - STATE(4776), 1, - sym__call_signature, - STATE(4862), 1, - sym_comment, - STATE(6530), 1, - sym_type_parameters, - [167975] = 9, + [167822] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8448), 1, - anon_sym_export, - ACTIONS(8450), 1, - anon_sym_class, - ACTIONS(8452), 1, - anon_sym_abstract, - STATE(4768), 1, - aux_sym_export_statement_repeat1, - STATE(4863), 1, + STATE(4710), 1, sym_comment, - STATE(5700), 1, - sym_decorator, - [168003] = 6, + ACTIONS(8194), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [167840] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4864), 1, + STATE(4711), 1, sym_comment, - STATE(4909), 1, - aux_sym_object_type_repeat1, - ACTIONS(8456), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8454), 3, + ACTIONS(8412), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [168025] = 6, + anon_sym_PIPE_RBRACE, + [167858] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4829), 1, + STATE(4628), 1, aux_sym_object_type_repeat1, - STATE(4865), 1, + STATE(4712), 1, sym_comment, - ACTIONS(8456), 2, + ACTIONS(8416), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8454), 3, + ACTIONS(8414), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168047] = 6, + [167880] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3546), 1, - sym_statement_block, - STATE(4866), 1, + STATE(4700), 1, + aux_sym_object_type_repeat1, + STATE(4713), 1, sym_comment, - ACTIONS(8036), 4, + ACTIONS(8416), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8414), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168069] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(4867), 1, - sym_comment, - ACTIONS(8458), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [168087] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7994), 1, - anon_sym_LPAREN, - ACTIONS(8460), 1, - sym_identifier, - STATE(4790), 1, - sym_formal_parameters, - STATE(4868), 1, - sym_comment, - STATE(6519), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - [168115] = 6, + [167902] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3547), 1, - sym_statement_block, - STATE(4869), 1, + ACTIONS(8418), 1, + anon_sym_DOT, + STATE(4714), 1, sym_comment, - ACTIONS(8139), 4, + ACTIONS(7947), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [168137] = 9, + [167922] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - ACTIONS(8462), 1, + ACTIONS(8420), 1, anon_sym_QMARK, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(4870), 1, - sym_comment, - STATE(5880), 1, + STATE(4514), 1, sym__call_signature, - STATE(6630), 1, - sym_type_parameters, - [168165] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4829), 1, - aux_sym_object_type_repeat1, - STATE(4871), 1, + STATE(4715), 1, sym_comment, - ACTIONS(8466), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8464), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168187] = 8, + STATE(6769), 1, + sym_type_parameters, + [167950] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8261), 1, + ACTIONS(8244), 1, anon_sym_default, - ACTIONS(8265), 1, + ACTIONS(8248), 1, anon_sym_case, - ACTIONS(8468), 1, + ACTIONS(8422), 1, anon_sym_RBRACE, - STATE(4850), 1, - aux_sym_switch_body_repeat1, - STATE(4872), 1, + STATE(4716), 1, sym_comment, - STATE(6459), 2, + STATE(4744), 1, + aux_sym_switch_body_repeat1, + STATE(6137), 2, sym_switch_case, sym_switch_default, - [168213] = 4, + [167976] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4873), 1, + STATE(4717), 1, sym_comment, - ACTIONS(5574), 6, + ACTIONS(5740), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [168231] = 4, - ACTIONS(3), 1, + [167994] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(4718), 1, + sym_comment, + STATE(4724), 1, + aux_sym_object_type_repeat1, + ACTIONS(8426), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8424), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168016] = 6, ACTIONS(5), 1, sym_html_comment, - STATE(4874), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4619), 1, + aux_sym_object_type_repeat1, + STATE(4719), 1, sym_comment, - ACTIONS(5586), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [168249] = 8, + ACTIONS(8410), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8408), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168038] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(8472), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + ACTIONS(8428), 1, anon_sym_QMARK, - STATE(4875), 1, + STATE(4055), 1, + sym_formal_parameters, + STATE(4720), 1, sym_comment, - ACTIONS(8470), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [168275] = 4, + STATE(4906), 1, + sym__call_signature, + STATE(6769), 1, + sym_type_parameters, + [168066] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4876), 1, + STATE(4721), 1, sym_comment, - ACTIONS(5651), 6, + ACTIONS(5747), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [168293] = 6, + [168084] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4857), 1, - aux_sym_object_type_repeat1, - STATE(4877), 1, + STATE(4722), 1, sym_comment, - ACTIONS(8466), 2, + STATE(4725), 1, + aux_sym_object_type_repeat1, + ACTIONS(8432), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8464), 3, + ACTIONS(8430), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168315] = 4, + [168106] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4878), 1, + STATE(4723), 1, sym_comment, - ACTIONS(5655), 6, + ACTIONS(5510), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [168333] = 6, + [168124] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3560), 1, - sym_statement_block, - STATE(4879), 1, + STATE(4628), 1, + aux_sym_object_type_repeat1, + STATE(4724), 1, sym_comment, - ACTIONS(8012), 4, + ACTIONS(8432), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8430), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168355] = 6, + [168146] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3551), 1, - sym_statement_block, - STATE(4880), 1, + STATE(4628), 1, + aux_sym_object_type_repeat1, + STATE(4725), 1, sym_comment, - ACTIONS(8006), 4, + ACTIONS(8436), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8434), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168377] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [168168] = 9, ACTIONS(5), 1, sym_html_comment, - STATE(4881), 1, - sym_comment, - ACTIONS(5574), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, anon_sym_LT, - [168395] = 4, + ACTIONS(7197), 1, + anon_sym_LPAREN, + ACTIONS(8438), 1, + anon_sym_QMARK, + STATE(4055), 1, + sym_formal_parameters, + STATE(4726), 1, + sym_comment, + STATE(5844), 1, + sym__call_signature, + STATE(6769), 1, + sym_type_parameters, + [168196] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4882), 1, + ACTIONS(4097), 1, + anon_sym_DQUOTE, + ACTIONS(4099), 1, + anon_sym_SQUOTE, + ACTIONS(8055), 1, + sym_identifier, + STATE(891), 1, + sym_nested_identifier, + STATE(912), 1, + sym_string, + STATE(1155), 1, + sym__module, + STATE(4727), 1, sym_comment, - ACTIONS(5773), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [168413] = 4, + [168224] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4883), 1, + STATE(4728), 1, sym_comment, - ACTIONS(5582), 6, + ACTIONS(5490), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [168431] = 4, + [168242] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4884), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3408), 1, + sym_statement_block, + STATE(4729), 1, sym_comment, - ACTIONS(8174), 6, + ACTIONS(8075), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [168449] = 6, + [168264] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4097), 1, + anon_sym_DQUOTE, + ACTIONS(4099), 1, + anon_sym_SQUOTE, + ACTIONS(8055), 1, + sym_identifier, + STATE(891), 1, + sym_nested_identifier, + STATE(912), 1, + sym_string, + STATE(1083), 1, + sym__module, + STATE(4730), 1, + sym_comment, + [168292] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3562), 1, - sym_statement_block, - STATE(4885), 1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(8440), 1, + anon_sym_QMARK, + STATE(4255), 1, + sym_formal_parameters, + STATE(4652), 1, + sym__call_signature, + STATE(4731), 1, sym_comment, - ACTIONS(7980), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168471] = 9, + STATE(6732), 1, + sym_type_parameters, + [168320] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7994), 1, + ACTIONS(8083), 1, anon_sym_LPAREN, - ACTIONS(8474), 1, + ACTIONS(8442), 1, sym_identifier, - STATE(4790), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(4886), 1, + STATE(4732), 1, sym_comment, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - STATE(6800), 1, + STATE(6921), 1, sym__call_signature, - [168499] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(8301), 1, - anon_sym_LBRACK, - ACTIONS(8476), 1, - sym_identifier, - STATE(4887), 1, - sym_comment, - STATE(5986), 1, - sym__destructuring_pattern, - STATE(4283), 2, - sym_object_pattern, - sym_array_pattern, - [168525] = 6, + [168348] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3510), 1, + STATE(3359), 1, sym_statement_block, - STATE(4888), 1, + STATE(4733), 1, sym_comment, - ACTIONS(8161), 4, + ACTIONS(8075), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168547] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [168370] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8261), 1, - anon_sym_default, - ACTIONS(8265), 1, - anon_sym_case, - ACTIONS(8478), 1, - anon_sym_RBRACE, - STATE(4850), 1, - aux_sym_switch_body_repeat1, - STATE(4889), 1, - sym_comment, - STATE(6459), 2, - sym_switch_case, - sym_switch_default, - [168573] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(8480), 1, - anon_sym_QMARK, - STATE(4200), 1, - sym_formal_parameters, - STATE(4583), 1, - sym__call_signature, - STATE(4890), 1, + STATE(4734), 1, sym_comment, - STATE(6630), 1, - sym_type_parameters, - [168601] = 6, + ACTIONS(8444), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [168388] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4891), 1, - sym_comment, - STATE(4916), 1, + STATE(4712), 1, aux_sym_object_type_repeat1, - ACTIONS(8484), 2, + STATE(4735), 1, + sym_comment, + ACTIONS(8448), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8482), 3, + ACTIONS(8446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168623] = 9, + [168410] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - ACTIONS(8486), 1, + ACTIONS(8450), 1, anon_sym_QMARK, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(4892), 1, - sym_comment, - STATE(5232), 1, + STATE(4486), 1, sym__call_signature, - STATE(6630), 1, - sym_type_parameters, - [168651] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4800), 1, - aux_sym_object_type_repeat1, - STATE(4893), 1, - sym_comment, - ACTIONS(8490), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8488), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168673] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4871), 1, - aux_sym_object_type_repeat1, - STATE(4894), 1, - sym_comment, - ACTIONS(8494), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8492), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168695] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3512), 1, - sym_statement_block, - STATE(4895), 1, + STATE(4736), 1, sym_comment, - ACTIONS(8207), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168717] = 8, + STATE(6769), 1, + sym_type_parameters, + [168438] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8261), 1, + ACTIONS(8244), 1, anon_sym_default, - ACTIONS(8265), 1, + ACTIONS(8248), 1, anon_sym_case, - ACTIONS(8496), 1, + ACTIONS(8452), 1, anon_sym_RBRACE, - STATE(4850), 1, - aux_sym_switch_body_repeat1, - STATE(4896), 1, + STATE(4737), 1, sym_comment, - STATE(6459), 2, + STATE(4744), 1, + aux_sym_switch_body_repeat1, + STATE(6137), 2, sym_switch_case, sym_switch_default, - [168743] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7994), 1, - anon_sym_LPAREN, - ACTIONS(8498), 1, - sym_identifier, - STATE(4790), 1, - sym_formal_parameters, - STATE(4897), 1, - sym_comment, - STATE(6519), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - [168771] = 9, + [168464] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(4145), 1, anon_sym_LPAREN, - ACTIONS(8500), 1, - anon_sym_QMARK, - STATE(4266), 1, - sym_formal_parameters, - STATE(4885), 1, - sym__call_signature, - STATE(4898), 1, - sym_comment, - STATE(6530), 1, - sym_type_parameters, - [168799] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4899), 1, - sym_comment, - ACTIONS(6414), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(7673), 1, anon_sym_DOT, - [168817] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(8301), 1, - anon_sym_LBRACK, - ACTIONS(8502), 1, - sym_identifier, - STATE(4900), 1, - sym_comment, - STATE(5652), 1, - sym__destructuring_pattern, - STATE(4283), 2, - sym_object_pattern, - sym_array_pattern, - [168843] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3548), 1, - sym_statement_block, - STATE(4901), 1, - sym_comment, - ACTIONS(8139), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(8454), 1, anon_sym_COMMA, - anon_sym_SEMI, - [168865] = 9, + ACTIONS(8456), 1, + anon_sym_GT, + STATE(4337), 1, + sym_arguments, + STATE(4738), 1, + sym_comment, + STATE(6277), 1, + aux_sym_type_arguments_repeat1, + [168492] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7082), 1, + ACTIONS(7071), 1, anon_sym_PIPE, - ACTIONS(7084), 1, + ACTIONS(7073), 1, anon_sym_extends, - ACTIONS(8504), 1, + ACTIONS(8458), 1, anon_sym_COMMA, - ACTIONS(8506), 1, + ACTIONS(8460), 1, anon_sym_GT, - STATE(4902), 1, + STATE(4739), 1, sym_comment, - STATE(6202), 1, + STATE(6273), 1, aux_sym_type_arguments_repeat1, - [168893] = 9, + [168520] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, - anon_sym_LPAREN, - ACTIONS(7610), 1, - anon_sym_DOT, - ACTIONS(8508), 1, - anon_sym_COMMA, - ACTIONS(8510), 1, - anon_sym_GT, - STATE(4458), 1, - sym_arguments, - STATE(4903), 1, + STATE(4740), 1, sym_comment, - STATE(6198), 1, - aux_sym_type_arguments_repeat1, - [168921] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4829), 1, + STATE(4743), 1, aux_sym_object_type_repeat1, - STATE(4904), 1, - sym_comment, - ACTIONS(8490), 2, + ACTIONS(8464), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8488), 3, + ACTIONS(8462), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168943] = 6, + [168542] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4904), 1, - aux_sym_object_type_repeat1, - STATE(4905), 1, - sym_comment, - ACTIONS(8514), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8512), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168965] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(8301), 1, - anon_sym_LBRACK, - ACTIONS(8516), 1, - sym_identifier, - STATE(4906), 1, + ACTIONS(8325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8466), 1, + anon_sym_BQUOTE, + STATE(4741), 1, sym_comment, - STATE(6989), 1, - sym__destructuring_pattern, - STATE(4283), 2, - sym_object_pattern, - sym_array_pattern, - [168991] = 4, + STATE(4827), 1, + aux_sym_template_string_repeat1, + STATE(5469), 1, + sym_template_substitution, + ACTIONS(7921), 2, + sym__template_chars, + sym_escape_sequence, + [168568] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4907), 1, + STATE(4742), 1, sym_comment, - ACTIONS(8018), 6, + STATE(4745), 1, + aux_sym_object_type_repeat1, + ACTIONS(8470), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8468), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [169009] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(4908), 1, - sym_comment, - ACTIONS(5707), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [169027] = 6, + [168590] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4829), 1, + STATE(4628), 1, aux_sym_object_type_repeat1, - STATE(4909), 1, + STATE(4743), 1, sym_comment, - ACTIONS(8520), 2, + ACTIONS(8470), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8518), 3, + ACTIONS(8468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169049] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(4910), 1, - sym_comment, - ACTIONS(5711), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [169067] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(4911), 1, - sym_comment, - ACTIONS(5578), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [169085] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(4912), 1, - sym_comment, - ACTIONS(5574), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [169103] = 8, + [168612] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8261), 1, + ACTIONS(8472), 1, anon_sym_default, - ACTIONS(8265), 1, - anon_sym_case, - ACTIONS(8522), 1, + ACTIONS(8475), 1, anon_sym_RBRACE, - STATE(4896), 1, - aux_sym_switch_body_repeat1, - STATE(4913), 1, + ACTIONS(8477), 1, + anon_sym_case, + STATE(4744), 2, sym_comment, - STATE(6459), 2, + aux_sym_switch_body_repeat1, + STATE(6137), 2, sym_switch_case, sym_switch_default, - [169129] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(8524), 1, - anon_sym_QMARK, - STATE(4200), 1, - sym_formal_parameters, - STATE(4571), 1, - sym__call_signature, - STATE(4914), 1, - sym_comment, - STATE(6630), 1, - sym_type_parameters, - [169157] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4915), 1, - sym_comment, - STATE(4930), 1, - aux_sym_object_type_repeat1, - ACTIONS(8528), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8526), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169179] = 6, + [168636] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4829), 1, + STATE(4628), 1, aux_sym_object_type_repeat1, - STATE(4916), 1, + STATE(4745), 1, sym_comment, - ACTIONS(8528), 2, + ACTIONS(8482), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8526), 3, + ACTIONS(8480), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169201] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [168658] = 8, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(8530), 1, - anon_sym_QMARK, - STATE(4790), 1, - sym_formal_parameters, - STATE(4917), 1, - sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6761), 1, - sym__call_signature, - [169229] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4918), 1, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(8299), 1, + anon_sym_LBRACK, + ACTIONS(8484), 1, + sym_identifier, + STATE(4746), 1, sym_comment, - ACTIONS(2107), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [169247] = 9, + STATE(6119), 1, + sym__destructuring_pattern, + STATE(4288), 2, + sym_object_pattern, + sym_array_pattern, + [168684] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7994), 1, + ACTIONS(8083), 1, anon_sym_LPAREN, - ACTIONS(8532), 1, + ACTIONS(8486), 1, sym_identifier, - STATE(4790), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(4919), 1, + STATE(4747), 1, sym_comment, - STATE(6519), 1, - sym__call_signature, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - [169275] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - ACTIONS(8534), 1, - anon_sym_QMARK, - STATE(4266), 1, - sym_formal_parameters, - STATE(4920), 1, - sym_comment, - STATE(4923), 1, + STATE(6639), 1, sym__call_signature, - STATE(6530), 1, - sym_type_parameters, - [169303] = 6, + [168712] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3534), 1, + STATE(3407), 1, sym_statement_block, - STATE(4921), 1, + STATE(4748), 1, sym_comment, - ACTIONS(8161), 4, + ACTIONS(8142), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169325] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [168734] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7994), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7169), 1, anon_sym_LPAREN, - ACTIONS(8536), 1, - sym_identifier, - STATE(4790), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(8488), 1, + anon_sym_QMARK, + STATE(4255), 1, sym_formal_parameters, - STATE(4922), 1, + STATE(4749), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6800), 1, + STATE(4839), 1, sym__call_signature, - [169353] = 6, + STATE(6732), 1, + sym_type_parameters, + [168762] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3507), 1, - sym_statement_block, - STATE(4923), 1, - sym_comment, - ACTIONS(8172), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(8490), 1, anon_sym_COMMA, - anon_sym_SEMI, - [169375] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(8301), 1, - anon_sym_LBRACK, - ACTIONS(8538), 1, - sym_identifier, - STATE(4924), 1, + ACTIONS(8492), 1, + anon_sym_GT, + STATE(4750), 1, sym_comment, - STATE(6077), 1, - sym__destructuring_pattern, - STATE(4283), 2, - sym_object_pattern, - sym_array_pattern, - [169401] = 9, + STATE(6315), 1, + aux_sym_type_arguments_repeat1, + [168790] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(8540), 1, - anon_sym_QMARK, - STATE(4200), 1, - sym_formal_parameters, - STATE(4742), 1, - sym__call_signature, - STATE(4925), 1, + STATE(4751), 1, sym_comment, - STATE(6630), 1, - sym_type_parameters, - [169429] = 9, + ACTIONS(8494), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [168808] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(4145), 1, anon_sym_LPAREN, - ACTIONS(8542), 1, - anon_sym_QMARK, - STATE(4266), 1, - sym_formal_parameters, - STATE(4861), 1, - sym__call_signature, - STATE(4926), 1, + ACTIONS(7673), 1, + anon_sym_DOT, + ACTIONS(8496), 1, + anon_sym_COMMA, + ACTIONS(8498), 1, + anon_sym_GT, + STATE(4337), 1, + sym_arguments, + STATE(4752), 1, sym_comment, - STATE(6530), 1, - sym_type_parameters, - [169457] = 9, + STATE(6332), 1, + aux_sym_type_arguments_repeat1, + [168836] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4753), 1, + sym_comment, + ACTIONS(5693), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [168854] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, + ACTIONS(4145), 1, anon_sym_LPAREN, - ACTIONS(7610), 1, + ACTIONS(7673), 1, anon_sym_DOT, - ACTIONS(8544), 1, + ACTIONS(8500), 1, anon_sym_COMMA, - ACTIONS(8546), 1, + ACTIONS(8502), 1, anon_sym_GT, - STATE(4458), 1, + STATE(4337), 1, sym_arguments, - STATE(4927), 1, + STATE(4754), 1, sym_comment, - STATE(6330), 1, + STATE(6230), 1, aux_sym_type_arguments_repeat1, - [169485] = 9, + [168882] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4755), 1, + sym_comment, + ACTIONS(5560), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [168900] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7082), 1, + ACTIONS(7071), 1, anon_sym_PIPE, - ACTIONS(7084), 1, + ACTIONS(7073), 1, anon_sym_extends, - ACTIONS(8548), 1, + ACTIONS(8504), 1, anon_sym_COMMA, - ACTIONS(8550), 1, + ACTIONS(8506), 1, anon_sym_GT, - STATE(4928), 1, + STATE(4756), 1, sym_comment, - STATE(6325), 1, + STATE(6227), 1, aux_sym_type_arguments_repeat1, - [169513] = 6, + [168928] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4829), 1, - aux_sym_object_type_repeat1, - STATE(4929), 1, + STATE(4757), 1, sym_comment, - ACTIONS(8554), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8552), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169535] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4829), 1, + STATE(4764), 1, aux_sym_object_type_repeat1, - STATE(4930), 1, - sym_comment, - ACTIONS(8558), 2, + ACTIONS(8510), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8556), 3, + ACTIONS(8508), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169557] = 9, + [168950] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - ACTIONS(8560), 1, + ACTIONS(8512), 1, anon_sym_QMARK, - STATE(4266), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(4769), 1, - sym__call_signature, - STATE(4931), 1, + STATE(4758), 1, sym_comment, - STATE(6530), 1, + STATE(6493), 1, sym_type_parameters, - [169585] = 6, + STATE(6971), 1, + sym__call_signature, + [168978] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4829), 1, - aux_sym_object_type_repeat1, - STATE(4932), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3369), 1, + sym_statement_block, + STATE(4759), 1, sym_comment, - ACTIONS(8564), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8562), 3, + ACTIONS(8140), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169607] = 6, + [169000] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4933), 1, + STATE(4760), 1, sym_comment, - STATE(4949), 1, + STATE(4765), 1, aux_sym_object_type_repeat1, - ACTIONS(8568), 2, + ACTIONS(8516), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8566), 3, + ACTIONS(8514), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169022] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3368), 1, + sym_statement_block, + STATE(4761), 1, + sym_comment, + ACTIONS(8142), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169629] = 9, + [169044] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(8101), 1, - sym_identifier, - STATE(4467), 1, - sym_nested_identifier, - STATE(4692), 1, - sym_string, - STATE(4934), 1, + STATE(4762), 1, sym_comment, - STATE(5250), 1, - sym__module, - [169657] = 6, + ACTIONS(8518), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [169062] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4763), 1, + sym_comment, + ACTIONS(8520), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [169080] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4929), 1, + STATE(4628), 1, aux_sym_object_type_repeat1, - STATE(4935), 1, + STATE(4764), 1, sym_comment, - ACTIONS(8564), 2, + ACTIONS(8516), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8562), 3, + ACTIONS(8514), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169679] = 6, + [169102] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4932), 1, + STATE(4628), 1, aux_sym_object_type_repeat1, - STATE(4936), 1, + STATE(4765), 1, sym_comment, - ACTIONS(8572), 2, + ACTIONS(8524), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8570), 3, + ACTIONS(8522), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169701] = 8, + [169124] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3876), 1, - anon_sym_LBRACE, - ACTIONS(8301), 1, - anon_sym_LBRACK, - ACTIONS(8574), 1, + ACTIONS(7939), 1, + anon_sym_GT, + ACTIONS(8526), 1, sym_identifier, - STATE(4937), 1, - sym_comment, - STATE(5962), 1, - sym__destructuring_pattern, - STATE(4283), 2, - sym_object_pattern, - sym_array_pattern, - [169727] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(4938), 1, + ACTIONS(8528), 1, + sym_jsx_identifier, + ACTIONS(8530), 1, + anon_sym_SLASH_GT, + STATE(3915), 1, + sym_nested_identifier, + STATE(4273), 1, + sym_jsx_namespace_name, + STATE(4766), 1, sym_comment, - ACTIONS(7914), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_DOT, - [169745] = 9, + [169152] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1930), 1, - anon_sym_DQUOTE, - ACTIONS(1932), 1, - anon_sym_SQUOTE, - ACTIONS(8101), 1, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8083), 1, + anon_sym_LPAREN, + ACTIONS(8532), 1, sym_identifier, - STATE(4467), 1, - sym_nested_identifier, - STATE(4692), 1, - sym_string, - STATE(4939), 1, + STATE(4683), 1, + sym_formal_parameters, + STATE(4767), 1, sym_comment, - STATE(5007), 1, - sym__module, - [169773] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6493), 1, + sym_type_parameters, + STATE(6921), 1, + sym__call_signature, + [169180] = 6, ACTIONS(5), 1, sym_html_comment, - STATE(4940), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8361), 1, + anon_sym_COLON, + STATE(4768), 1, sym_comment, - ACTIONS(5757), 6, + ACTIONS(7507), 2, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [169791] = 6, + anon_sym_EQ_GT, + STATE(6833), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [169202] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(4769), 1, + sym_comment, + STATE(4772), 1, + aux_sym_object_type_repeat1, + ACTIONS(8536), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8534), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169224] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3511), 1, - sym_statement_block, - STATE(4941), 1, + STATE(4770), 1, sym_comment, - ACTIONS(8004), 4, + STATE(4773), 1, + aux_sym_object_type_repeat1, + ACTIONS(8540), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8538), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169813] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [169246] = 6, ACTIONS(5), 1, sym_html_comment, - STATE(4942), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8544), 1, + anon_sym_AT, + STATE(5410), 1, + sym_decorator, + STATE(4771), 2, sym_comment, - ACTIONS(5552), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [169831] = 6, + aux_sym_export_statement_repeat1, + ACTIONS(8542), 3, + anon_sym_export, + anon_sym_class, + anon_sym_abstract, + [169268] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3539), 1, - sym_statement_block, - STATE(4943), 1, + STATE(4628), 1, + aux_sym_object_type_repeat1, + STATE(4772), 1, sym_comment, - ACTIONS(8207), 4, + ACTIONS(8540), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8538), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169853] = 6, + [169290] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4944), 1, - sym_comment, - STATE(4989), 1, + STATE(4628), 1, aux_sym_object_type_repeat1, - ACTIONS(8578), 2, + STATE(4773), 1, + sym_comment, + ACTIONS(8549), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8576), 3, + ACTIONS(8547), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169875] = 4, + [169312] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4945), 1, + STATE(4774), 1, sym_comment, - ACTIONS(5556), 6, + ACTIONS(8551), 6, anon_sym_LBRACE, aux_sym_jsx_text_token1, aux_sym_jsx_text_token2, sym_html_character_reference, anon_sym_LT_SLASH, anon_sym_LT, - [169893] = 9, + [169330] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(8580), 1, - anon_sym_QMARK, - STATE(4200), 1, - sym_formal_parameters, - STATE(4506), 1, - sym__call_signature, - STATE(4946), 1, + STATE(4775), 1, sym_comment, - STATE(6630), 1, - sym_type_parameters, - [169921] = 8, + STATE(4778), 1, + aux_sym_object_type_repeat1, + ACTIONS(8555), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8553), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169352] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8213), 1, - anon_sym_DOT, - ACTIONS(8215), 1, - anon_sym_LT, - ACTIONS(8582), 1, - anon_sym_LBRACE, - STATE(4947), 1, + ACTIONS(8244), 1, + anon_sym_default, + ACTIONS(8248), 1, + anon_sym_case, + ACTIONS(8557), 1, + anon_sym_RBRACE, + STATE(4737), 1, + aux_sym_switch_body_repeat1, + STATE(4776), 1, sym_comment, - STATE(6107), 1, - sym_type_arguments, - ACTIONS(8584), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [169947] = 9, + STATE(6137), 2, + sym_switch_case, + sym_switch_default, + [169378] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - ACTIONS(8586), 1, - anon_sym_QMARK, - STATE(4200), 1, - sym_formal_parameters, - STATE(4712), 1, - sym__call_signature, - STATE(4948), 1, + STATE(4613), 1, + aux_sym_object_type_repeat1, + STATE(4777), 1, sym_comment, - STATE(6630), 1, - sym_type_parameters, - [169975] = 6, + ACTIONS(8561), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8559), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169400] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4829), 1, + STATE(4628), 1, aux_sym_object_type_repeat1, - STATE(4949), 1, + STATE(4778), 1, sym_comment, - ACTIONS(8578), 2, + ACTIONS(8561), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8576), 3, + ACTIONS(8559), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169997] = 9, + [169422] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - ACTIONS(8588), 1, + ACTIONS(8563), 1, anon_sym_QMARK, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(4581), 1, - sym__call_signature, - STATE(4950), 1, + STATE(4779), 1, sym_comment, - STATE(6630), 1, + STATE(4849), 1, + sym__call_signature, + STATE(6769), 1, sym_type_parameters, - [170025] = 6, + [169450] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8565), 1, + sym_identifier, + STATE(4780), 1, + sym_comment, + ACTIONS(7002), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [169470] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(8065), 1, + anon_sym_COMMA, + ACTIONS(8069), 1, + anon_sym_LT, + ACTIONS(8567), 1, anon_sym_LBRACE, - STATE(3554), 1, - sym_statement_block, - STATE(4951), 1, + ACTIONS(8569), 1, + anon_sym_LBRACE_PIPE, + STATE(4781), 1, sym_comment, - ACTIONS(7980), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [170047] = 9, + STATE(5423), 1, + aux_sym_extends_type_clause_repeat1, + STATE(6159), 1, + sym_type_arguments, + [169498] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1902), 1, - anon_sym_LT, - ACTIONS(7994), 1, - anon_sym_LPAREN, - ACTIONS(8590), 1, + ACTIONS(7939), 1, + anon_sym_GT, + ACTIONS(8571), 1, sym_identifier, - STATE(4790), 1, - sym_formal_parameters, - STATE(4952), 1, + ACTIONS(8573), 1, + sym_jsx_identifier, + ACTIONS(8575), 1, + anon_sym_SLASH_GT, + STATE(3947), 1, + sym_nested_identifier, + STATE(4203), 1, + sym_jsx_namespace_name, + STATE(4782), 1, sym_comment, - STATE(6519), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - [170075] = 9, + [169526] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8592), 1, + STATE(4783), 1, + sym_comment, + ACTIONS(8577), 6, anon_sym_export, - ACTIONS(8594), 1, + anon_sym_LPAREN, + anon_sym_DOT, anon_sym_class, - ACTIONS(8596), 1, + anon_sym_AT, anon_sym_abstract, - STATE(4768), 1, - aux_sym_export_statement_repeat1, - STATE(4953), 1, - sym_comment, - STATE(5700), 1, - sym_decorator, - [170103] = 6, + [169544] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4829), 1, - aux_sym_object_type_repeat1, - STATE(4954), 1, - sym_comment, - ACTIONS(8600), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8598), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [170125] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1902), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7994), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - ACTIONS(8602), 1, - sym_identifier, - STATE(4790), 1, + ACTIONS(8579), 1, + anon_sym_QMARK, + STATE(4055), 1, sym_formal_parameters, - STATE(4955), 1, + STATE(4784), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6800), 1, + STATE(5147), 1, sym__call_signature, - [170153] = 9, + STATE(6769), 1, + sym_type_parameters, + [169572] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(8604), 1, + STATE(4785), 1, + sym_comment, + ACTIONS(8581), 6, anon_sym_LBRACE, - ACTIONS(8606), 1, - anon_sym_COMMA, - STATE(4956), 1, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [169590] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4786), 1, sym_comment, - STATE(6147), 1, - aux_sym_implements_clause_repeat1, - [170181] = 5, + ACTIONS(8583), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [169608] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8608), 1, - sym_identifier, - STATE(4957), 1, + STATE(4787), 1, sym_comment, - ACTIONS(6993), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(8585), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, - anon_sym_BQUOTE, - [170201] = 9, + [169626] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(8610), 1, - anon_sym_COMMA, - ACTIONS(8612), 1, - anon_sym_GT, - STATE(4958), 1, + ACTIONS(8325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8587), 1, + anon_sym_BQUOTE, + STATE(4788), 1, sym_comment, - STATE(6140), 1, - aux_sym_type_arguments_repeat1, - [170229] = 6, + STATE(4827), 1, + aux_sym_template_string_repeat1, + STATE(5469), 1, + sym_template_substitution, + ACTIONS(7921), 2, + sym__template_chars, + sym_escape_sequence, + [169652] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + STATE(4789), 1, + sym_comment, + ACTIONS(8581), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [169670] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(4829), 1, - aux_sym_object_type_repeat1, - STATE(4959), 1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4790), 1, sym_comment, - ACTIONS(8616), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8614), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [170251] = 9, + ACTIONS(8589), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [169688] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, - anon_sym_LPAREN, - ACTIONS(7610), 1, - anon_sym_DOT, - ACTIONS(8618), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + STATE(4791), 1, + sym_comment, + ACTIONS(8591), 3, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(8620), 1, anon_sym_GT, - STATE(4458), 1, - sym_arguments, - STATE(4960), 1, - sym_comment, - STATE(6153), 1, - aux_sym_type_arguments_repeat1, - [170279] = 6, + [169712] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4954), 1, - aux_sym_object_type_repeat1, - STATE(4961), 1, + STATE(4792), 1, sym_comment, - ACTIONS(8616), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8614), 3, + ACTIONS(8210), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [170301] = 5, + anon_sym_COLON, + [169730] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8622), 1, - sym_identifier, - STATE(4962), 1, + STATE(4793), 1, sym_comment, - ACTIONS(6993), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(8581), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, anon_sym_LT, - anon_sym_BQUOTE, - [170321] = 5, + [169748] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8624), 1, - sym_identifier, - STATE(4963), 1, + STATE(4794), 1, sym_comment, - ACTIONS(6993), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [170341] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8626), 1, + ACTIONS(7297), 6, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, sym_identifier, - STATE(4964), 1, - sym_comment, - ACTIONS(6993), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [170361] = 6, + [169766] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4959), 1, - aux_sym_object_type_repeat1, - STATE(4965), 1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8593), 1, + anon_sym_export, + ACTIONS(8595), 1, + anon_sym_class, + ACTIONS(8597), 1, + anon_sym_abstract, + STATE(4771), 1, + aux_sym_export_statement_repeat1, + STATE(4795), 1, sym_comment, - ACTIONS(8630), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8628), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [170383] = 7, + STATE(5410), 1, + sym_decorator, + [169794] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8635), 1, - anon_sym_BQUOTE, - ACTIONS(8637), 1, - anon_sym_DOLLAR_LBRACE, - STATE(5588), 1, - sym_template_substitution, - ACTIONS(8632), 2, - sym__template_chars, - sym_escape_sequence, - STATE(4966), 2, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(8601), 1, + anon_sym_QMARK, + STATE(4796), 1, sym_comment, - aux_sym_template_string_repeat1, - [170407] = 4, + ACTIONS(8599), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [169820] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4967), 1, + STATE(4709), 1, + aux_sym_object_type_repeat1, + STATE(4797), 1, sym_comment, - ACTIONS(8121), 6, + ACTIONS(8605), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8603), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [170425] = 6, + [169842] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4829), 1, - aux_sym_object_type_repeat1, - STATE(4968), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3361), 1, + sym_statement_block, + STATE(4798), 1, sym_comment, - ACTIONS(8642), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8640), 3, + ACTIONS(8051), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170447] = 9, + [169864] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - ACTIONS(8644), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(8607), 1, anon_sym_QMARK, - STATE(4200), 1, + STATE(4255), 1, sym_formal_parameters, - STATE(4969), 1, - sym_comment, - STATE(5345), 1, + STATE(4733), 1, sym__call_signature, - STATE(6630), 1, + STATE(4799), 1, + sym_comment, + STATE(6732), 1, sym_type_parameters, - [170475] = 8, + [169892] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(8299), 1, + anon_sym_LBRACK, + ACTIONS(8609), 1, + sym_identifier, + STATE(4800), 1, + sym_comment, + STATE(6310), 1, + sym__destructuring_pattern, + STATE(4288), 2, + sym_object_pattern, + sym_array_pattern, + [169918] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8261), 1, - anon_sym_default, - ACTIONS(8265), 1, - anon_sym_case, - ACTIONS(8646), 1, - anon_sym_RBRACE, - STATE(4850), 1, - aux_sym_switch_body_repeat1, - STATE(4970), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(8611), 1, + anon_sym_QMARK, + STATE(4683), 1, + sym_formal_parameters, + STATE(4801), 1, sym_comment, - STATE(6459), 2, - sym_switch_case, - sym_switch_default, - [170501] = 9, + STATE(6404), 1, + sym__call_signature, + STATE(6493), 1, + sym_type_parameters, + [169946] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7994), 1, + ACTIONS(8083), 1, anon_sym_LPAREN, - ACTIONS(8648), 1, + ACTIONS(8613), 1, sym_identifier, - STATE(4790), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(4971), 1, + STATE(4802), 1, sym_comment, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - STATE(6800), 1, + STATE(6520), 1, sym__call_signature, - [170529] = 4, + [169974] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4972), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(8615), 1, + anon_sym_QMARK, + STATE(4683), 1, + sym_formal_parameters, + STATE(4803), 1, sym_comment, - ACTIONS(8650), 6, - sym__automatic_semicolon, + STATE(6493), 1, + sym_type_parameters, + STATE(6672), 1, + sym__call_signature, + [170002] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, anon_sym_LBRACE, + STATE(3402), 1, + sym_statement_block, + STATE(4804), 1, + sym_comment, + ACTIONS(8130), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [170547] = 6, + [170024] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4829), 1, - aux_sym_object_type_repeat1, - STATE(4973), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3398), 1, + sym_statement_block, + STATE(4805), 1, sym_comment, - ACTIONS(8654), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8652), 3, + ACTIONS(8132), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170569] = 9, + [170046] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3880), 1, + anon_sym_LBRACE, + ACTIONS(8299), 1, + anon_sym_LBRACK, + ACTIONS(8617), 1, + sym_identifier, + STATE(4806), 1, + sym_comment, + STATE(6431), 1, + sym__destructuring_pattern, + STATE(4288), 2, + sym_object_pattern, + sym_array_pattern, + [170072] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(8656), 1, - anon_sym_COMMA, - ACTIONS(8658), 1, - anon_sym_GT, - STATE(4974), 1, + STATE(4807), 1, sym_comment, - STATE(5915), 1, - aux_sym_type_arguments_repeat1, - [170597] = 9, + ACTIONS(4518), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [170090] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, anon_sym_LPAREN, - ACTIONS(7610), 1, - anon_sym_DOT, - ACTIONS(8660), 1, - anon_sym_COMMA, - ACTIONS(8662), 1, - anon_sym_GT, - STATE(4458), 1, - sym_arguments, - STATE(4975), 1, + ACTIONS(8619), 1, + anon_sym_QMARK, + STATE(4683), 1, + sym_formal_parameters, + STATE(4808), 1, sym_comment, - STATE(5910), 1, - aux_sym_type_arguments_repeat1, - [170625] = 9, + STATE(6493), 1, + sym_type_parameters, + STATE(6908), 1, + sym__call_signature, + [170118] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4079), 1, - anon_sym_DQUOTE, - ACTIONS(4081), 1, - anon_sym_SQUOTE, - ACTIONS(8179), 1, - sym_identifier, - STATE(957), 1, - sym_nested_identifier, - STATE(971), 1, - sym_string, - STATE(1335), 1, - sym__module, - STATE(4976), 1, + STATE(4809), 1, + sym_comment, + ACTIONS(5732), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170136] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(8621), 1, + anon_sym_QMARK, + STATE(4255), 1, + sym_formal_parameters, + STATE(4759), 1, + sym__call_signature, + STATE(4810), 1, sym_comment, - [170653] = 5, + STATE(6732), 1, + sym_type_parameters, + [170164] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8664), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(8003), 1, sym_identifier, - STATE(4977), 1, + STATE(4811), 1, sym_comment, - ACTIONS(6993), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [170673] = 9, + STATE(5073), 1, + sym_nested_identifier, + STATE(5616), 1, + sym_string, + STATE(6527), 1, + sym__module, + [170192] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4079), 1, + ACTIONS(1894), 1, anon_sym_DQUOTE, - ACTIONS(4081), 1, + ACTIONS(1896), 1, anon_sym_SQUOTE, - ACTIONS(8179), 1, + ACTIONS(8003), 1, sym_identifier, - STATE(957), 1, + STATE(4812), 1, + sym_comment, + STATE(5073), 1, sym_nested_identifier, - STATE(971), 1, + STATE(5616), 1, sym_string, - STATE(1237), 1, + STATE(6481), 1, sym__module, - STATE(4978), 1, - sym_comment, - [170701] = 4, + [170220] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4979), 1, - sym_comment, - ACTIONS(8666), 6, + ACTIONS(3880), 1, anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [170719] = 6, + ACTIONS(8299), 1, + anon_sym_LBRACK, + ACTIONS(8623), 1, + sym_identifier, + STATE(4813), 1, + sym_comment, + STATE(5473), 1, + sym__destructuring_pattern, + STATE(4288), 2, + sym_object_pattern, + sym_array_pattern, + [170246] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4968), 1, - aux_sym_object_type_repeat1, - STATE(4980), 1, - sym_comment, - ACTIONS(8654), 2, + ACTIONS(8244), 1, + anon_sym_default, + ACTIONS(8248), 1, + anon_sym_case, + ACTIONS(8625), 1, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8652), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [170741] = 6, + STATE(4744), 1, + aux_sym_switch_body_repeat1, + STATE(4814), 1, + sym_comment, + STATE(6137), 2, + sym_switch_case, + sym_switch_default, + [170272] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4973), 1, - aux_sym_object_type_repeat1, - STATE(4981), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3410), 1, + sym_statement_block, + STATE(4815), 1, sym_comment, - ACTIONS(8670), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8668), 3, + ACTIONS(8130), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170763] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [170294] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8674), 1, - anon_sym_EQ, - STATE(4982), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(8627), 1, + anon_sym_QMARK, + STATE(4683), 1, + sym_formal_parameters, + STATE(4816), 1, sym_comment, - ACTIONS(8672), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [170783] = 9, + STATE(6466), 1, + sym__call_signature, + STATE(6493), 1, + sym_type_parameters, + [170322] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1902), 1, anon_sym_LT, - ACTIONS(7994), 1, + ACTIONS(8083), 1, anon_sym_LPAREN, - ACTIONS(8676), 1, + ACTIONS(8629), 1, sym_identifier, - STATE(4790), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(4983), 1, + STATE(4817), 1, sym_comment, - STATE(6519), 1, + STATE(6364), 1, sym__call_signature, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - [170811] = 6, + [170350] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8325), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8631), 1, + anon_sym_BQUOTE, + STATE(4788), 1, + aux_sym_template_string_repeat1, + STATE(4818), 1, + sym_comment, + STATE(5469), 1, + sym_template_substitution, + ACTIONS(7921), 2, + sym__template_chars, + sym_escape_sequence, + [170376] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3561), 1, + STATE(3413), 1, sym_statement_block, - STATE(4984), 1, + STATE(4819), 1, sym_comment, - ACTIONS(8006), 4, + ACTIONS(8132), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170833] = 9, + [170398] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8678), 1, - anon_sym_export, - ACTIONS(8680), 1, - anon_sym_class, - ACTIONS(8682), 1, - anon_sym_abstract, - STATE(4768), 1, - aux_sym_export_statement_repeat1, - STATE(4985), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(8633), 1, + anon_sym_QMARK, + STATE(4683), 1, + sym_formal_parameters, + STATE(4820), 1, sym_comment, - STATE(5700), 1, - sym_decorator, - [170861] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6493), 1, + sym_type_parameters, + STATE(6621), 1, + sym__call_signature, + [170426] = 9, ACTIONS(5), 1, sym_html_comment, - STATE(4986), 1, - sym_comment, - ACTIONS(8684), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, - anon_sym_LT, - [170879] = 4, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(8635), 1, + anon_sym_QMARK, + STATE(4683), 1, + sym_formal_parameters, + STATE(4821), 1, + sym_comment, + STATE(6493), 1, + sym_type_parameters, + STATE(6754), 1, + sym__call_signature, + [170454] = 9, ACTIONS(5), 1, sym_html_comment, - STATE(4987), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(8637), 1, + anon_sym_QMARK, + STATE(4683), 1, + sym_formal_parameters, + STATE(4822), 1, sym_comment, - ACTIONS(8686), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, + STATE(6493), 1, + sym_type_parameters, + STATE(6804), 1, + sym__call_signature, + [170482] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, anon_sym_LT, - [170897] = 4, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(8639), 1, + anon_sym_QMARK, + STATE(4683), 1, + sym_formal_parameters, + STATE(4823), 1, + sym_comment, + STATE(6493), 1, + sym_type_parameters, + STATE(6830), 1, + sym__call_signature, + [170510] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(4988), 1, - sym_comment, - ACTIONS(8688), 6, - anon_sym_LBRACE, - aux_sym_jsx_text_token1, - aux_sym_jsx_text_token2, - sym_html_character_reference, - anon_sym_LT_SLASH, + ACTIONS(1902), 1, anon_sym_LT, - [170915] = 6, + ACTIONS(8083), 1, + anon_sym_LPAREN, + ACTIONS(8641), 1, + sym_identifier, + STATE(4683), 1, + sym_formal_parameters, + STATE(4824), 1, + sym_comment, + STATE(6493), 1, + sym_type_parameters, + STATE(6639), 1, + sym__call_signature, + [170538] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4829), 1, - aux_sym_object_type_repeat1, - STATE(4989), 1, + STATE(4825), 1, sym_comment, - ACTIONS(8692), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8690), 3, - sym__automatic_semicolon, + ACTIONS(8643), 2, anon_sym_COMMA, - anon_sym_SEMI, - [170937] = 8, + anon_sym_RBRACE, + ACTIONS(4518), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [170558] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8261), 1, - anon_sym_default, - ACTIONS(8265), 1, - anon_sym_case, - ACTIONS(8694), 1, - anon_sym_RBRACE, - STATE(4970), 1, - aux_sym_switch_body_repeat1, - STATE(4990), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + ACTIONS(8645), 1, + anon_sym_QMARK, + STATE(4683), 1, + sym_formal_parameters, + STATE(4826), 1, sym_comment, - STATE(6459), 2, - sym_switch_case, - sym_switch_default, - [170963] = 4, + STATE(6493), 1, + sym_type_parameters, + STATE(6509), 1, + sym__call_signature, + [170586] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(4991), 1, + ACTIONS(8650), 1, + anon_sym_BQUOTE, + ACTIONS(8652), 1, + anon_sym_DOLLAR_LBRACE, + STATE(5469), 1, + sym_template_substitution, + ACTIONS(8647), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4827), 2, sym_comment, - ACTIONS(3460), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [170980] = 7, + aux_sym_template_string_repeat1, + [170610] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4828), 1, + sym_comment, + ACTIONS(8655), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170628] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7438), 1, - anon_sym_extends, - ACTIONS(8698), 1, + ACTIONS(7071), 1, anon_sym_PIPE, - STATE(4992), 1, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(8657), 1, + anon_sym_COMMA, + ACTIONS(8659), 1, + anon_sym_GT, + STATE(4829), 1, sym_comment, - ACTIONS(8696), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [171003] = 6, + STATE(6198), 1, + aux_sym_type_arguments_repeat1, + [170656] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(4993), 1, - sym_comment, - STATE(6203), 1, - sym__initializer, - ACTIONS(8700), 3, - sym__automatic_semicolon, + ACTIONS(4145), 1, + anon_sym_LPAREN, + ACTIONS(7673), 1, + anon_sym_DOT, + ACTIONS(8661), 1, anon_sym_COMMA, - anon_sym_SEMI, - [171024] = 6, + ACTIONS(8663), 1, + anon_sym_GT, + STATE(4337), 1, + sym_arguments, + STATE(4830), 1, + sym_comment, + STATE(6193), 1, + aux_sym_type_arguments_repeat1, + [170684] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + STATE(4831), 1, + sym_comment, + ACTIONS(8665), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170702] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8669), 1, anon_sym_EQ, - STATE(4994), 1, + STATE(4832), 1, sym_comment, - STATE(6178), 1, - sym__initializer, - ACTIONS(8702), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171045] = 8, + ACTIONS(8667), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [170722] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(8680), 1, + ACTIONS(8671), 1, + anon_sym_export, + ACTIONS(8673), 1, anon_sym_class, - ACTIONS(8682), 1, + ACTIONS(8675), 1, anon_sym_abstract, - STATE(4768), 1, + STATE(4771), 1, aux_sym_export_statement_repeat1, - STATE(4995), 1, + STATE(4833), 1, sym_comment, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - [171070] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(4996), 1, - sym_comment, - STATE(6185), 1, - sym__initializer, - ACTIONS(8702), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171091] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - STATE(4266), 1, - sym_formal_parameters, - STATE(4997), 1, - sym_comment, - STATE(5272), 1, - sym__call_signature, - STATE(6530), 1, - sym_type_parameters, - [171116] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [170750] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(4998), 1, - sym_comment, - ACTIONS(3464), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171133] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(4999), 1, + STATE(4834), 1, sym_comment, - STATE(6186), 1, - sym__initializer, - ACTIONS(8702), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171154] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(8677), 6, + anon_sym_LBRACE, + aux_sym_jsx_text_token1, + aux_sym_jsx_text_token2, + sym_html_character_reference, + anon_sym_LT_SLASH, + anon_sym_LT, + [170768] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5000), 1, - sym_comment, - STATE(6190), 1, - sym__initializer, - ACTIONS(8702), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171175] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(1902), 1, anon_sym_LT, - STATE(4790), 1, + ACTIONS(8083), 1, + anon_sym_LPAREN, + ACTIONS(8679), 1, + sym_identifier, + STATE(4683), 1, sym_formal_parameters, - STATE(5001), 1, + STATE(4835), 1, sym_comment, - STATE(6582), 1, - sym__call_signature, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - [171200] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5002), 1, - sym_comment, - STATE(6238), 1, - sym__initializer, - ACTIONS(8700), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171221] = 6, + STATE(6639), 1, + sym__call_signature, + [170796] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5003), 1, - sym_comment, - STATE(6426), 1, - sym__initializer, - ACTIONS(8704), 3, - sym__automatic_semicolon, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(8681), 1, + anon_sym_LBRACE, + ACTIONS(8683), 1, anon_sym_COMMA, - anon_sym_SEMI, - [171242] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5004), 1, + STATE(4836), 1, sym_comment, - STATE(6431), 1, - sym__initializer, - ACTIONS(8704), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171263] = 6, + STATE(6166), 1, + aux_sym_implements_clause_repeat1, + [170824] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(4218), 1, + anon_sym_COLON, + ACTIONS(8181), 1, anon_sym_EQ, - STATE(5005), 1, + STATE(4837), 1, sym_comment, - STATE(6424), 1, + STATE(5582), 1, + sym_type_annotation, + STATE(6721), 1, sym__initializer, - ACTIONS(8704), 3, - sym__automatic_semicolon, + ACTIONS(8685), 2, anon_sym_COMMA, - anon_sym_SEMI, - [171284] = 8, + anon_sym_RPAREN, + [170850] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8706), 1, - anon_sym_LBRACE, - ACTIONS(8708), 1, - anon_sym_SEMI, - ACTIONS(8710), 1, - sym__automatic_semicolon, - ACTIONS(8712), 1, - sym__function_signature_automatic_semicolon, - STATE(449), 1, - sym_statement_block, - STATE(5006), 1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8687), 1, + anon_sym_export, + ACTIONS(8689), 1, + anon_sym_class, + ACTIONS(8691), 1, + anon_sym_abstract, + STATE(4771), 1, + aux_sym_export_statement_repeat1, + STATE(4838), 1, sym_comment, - [171309] = 4, + STATE(5410), 1, + sym_decorator, + [170878] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5007), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3388), 1, + sym_statement_block, + STATE(4839), 1, sym_comment, - ACTIONS(2201), 5, + ACTIONS(8149), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171326] = 4, + [170900] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5008), 1, - sym_comment, - ACTIONS(8714), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(8244), 1, + anon_sym_default, + ACTIONS(8248), 1, + anon_sym_case, + ACTIONS(8693), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171343] = 4, + STATE(4814), 1, + aux_sym_switch_body_repeat1, + STATE(4840), 1, + sym_comment, + STATE(6137), 2, + sym_switch_case, + sym_switch_default, + [170926] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5009), 1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8695), 1, + anon_sym_export, + ACTIONS(8697), 1, + anon_sym_class, + ACTIONS(8699), 1, + anon_sym_abstract, + STATE(4771), 1, + aux_sym_export_statement_repeat1, + STATE(4841), 1, sym_comment, - ACTIONS(8055), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171360] = 4, + STATE(5410), 1, + sym_decorator, + [170954] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1902), 1, + anon_sym_LT, + ACTIONS(8083), 1, + anon_sym_LPAREN, + ACTIONS(8701), 1, + sym_identifier, + STATE(4683), 1, + sym_formal_parameters, + STATE(4842), 1, + sym_comment, + STATE(6493), 1, + sym_type_parameters, + STATE(6921), 1, + sym__call_signature, + [170982] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5010), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + ACTIONS(8703), 1, + anon_sym_QMARK, + STATE(4055), 1, + sym_formal_parameters, + STATE(4843), 1, sym_comment, - ACTIONS(2205), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171377] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5378), 1, + sym__call_signature, + STATE(6769), 1, + sym_type_parameters, + [171010] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8716), 1, - sym_identifier, - ACTIONS(8718), 1, - anon_sym_GT, - ACTIONS(8720), 1, - sym_jsx_identifier, - STATE(5011), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, + sym_formal_parameters, + STATE(4844), 1, sym_comment, - STATE(6641), 1, - sym_nested_identifier, - STATE(7500), 1, - sym_jsx_namespace_name, - [171402] = 6, + STATE(5267), 1, + sym__call_signature, + STATE(6732), 1, + sym_type_parameters, + [171035] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5012), 1, + STATE(4845), 1, sym_comment, - STATE(6134), 1, + STATE(5750), 1, sym__initializer, - ACTIONS(8702), 3, + ACTIONS(8705), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171423] = 6, + [171056] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5013), 1, + STATE(4846), 1, sym_comment, - STATE(6417), 1, + STATE(5700), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171444] = 6, + [171077] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5014), 1, + STATE(4847), 1, sym_comment, - STATE(6162), 1, - sym__initializer, - ACTIONS(8722), 3, + ACTIONS(3522), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [171465] = 8, + anon_sym_PIPE_RBRACE, + [171094] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8594), 1, - anon_sym_class, - ACTIONS(8596), 1, - anon_sym_abstract, - STATE(4768), 1, - aux_sym_export_statement_repeat1, - STATE(5015), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(4055), 1, + sym_formal_parameters, + STATE(4848), 1, sym_comment, - STATE(5700), 1, - sym_decorator, - [171490] = 6, + STATE(5374), 1, + sym__call_signature, + STATE(6769), 1, + sym_type_parameters, + [171119] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5016), 1, + STATE(4849), 1, sym_comment, - STATE(6155), 1, - sym__initializer, - ACTIONS(8702), 3, + ACTIONS(8132), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [171511] = 8, + anon_sym_PIPE_RBRACE, + [171136] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(4200), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(5017), 1, + STATE(4850), 1, sym_comment, - STATE(5343), 1, - sym__call_signature, - STATE(6630), 1, + STATE(6493), 1, sym_type_parameters, - [171536] = 6, + STATE(6792), 1, + sym__call_signature, + [171161] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5018), 1, + STATE(4851), 1, sym_comment, - STATE(6049), 1, + STATE(5808), 1, sym__initializer, - ACTIONS(8724), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171557] = 6, + [171182] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5019), 1, + STATE(4852), 1, sym_comment, - STATE(6117), 1, - sym__initializer, - ACTIONS(8702), 3, + ACTIONS(8149), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [171578] = 6, + anon_sym_PIPE_RBRACE, + [171199] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5020), 1, + STATE(4853), 1, sym_comment, - STATE(6191), 1, + STATE(5807), 1, sym__initializer, - ACTIONS(8702), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171599] = 6, + [171220] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5021), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(4055), 1, + sym_formal_parameters, + STATE(4854), 1, sym_comment, - STATE(6394), 1, - sym__initializer, - ACTIONS(8704), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171620] = 6, + STATE(4890), 1, + sym__call_signature, + STATE(6769), 1, + sym_type_parameters, + [171245] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5022), 1, + STATE(4855), 1, sym_comment, - STATE(6249), 1, + STATE(5801), 1, sym__initializer, - ACTIONS(8702), 3, + ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171641] = 6, + [171266] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5023), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(4856), 1, sym_comment, - STATE(6133), 1, - sym__initializer, - ACTIONS(8702), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171662] = 6, + STATE(6493), 1, + sym_type_parameters, + STATE(6866), 1, + sym__call_signature, + [171291] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5024), 1, + STATE(4857), 1, sym_comment, - STATE(6146), 1, - sym__initializer, - ACTIONS(8726), 3, + ACTIONS(8130), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [171683] = 6, + anon_sym_PIPE_RBRACE, + [171308] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5025), 1, + STATE(4858), 1, sym_comment, - STATE(6433), 1, - sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8711), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [171704] = 4, + anon_sym_PIPE_RBRACE, + [171325] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5026), 1, + STATE(4859), 1, sym_comment, - ACTIONS(8055), 5, + ACTIONS(8132), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [171721] = 6, + [171342] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5027), 1, + STATE(4860), 1, sym_comment, - STATE(6278), 1, + STATE(5752), 1, sym__initializer, - ACTIONS(8700), 3, + ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171742] = 6, + [171363] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5028), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(4861), 1, sym_comment, - STATE(6301), 1, - sym__initializer, - ACTIONS(8726), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171763] = 6, + STATE(6493), 1, + sym_type_parameters, + STATE(6873), 1, + sym__call_signature, + [171388] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5029), 1, + STATE(4862), 1, sym_comment, - STATE(6194), 1, - sym__initializer, - ACTIONS(8702), 3, + ACTIONS(8713), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [171784] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(5030), 1, - sym_comment, - ACTIONS(8728), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [171801] = 6, + anon_sym_PIPE_RBRACE, + [171405] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5031), 1, + STATE(4863), 1, sym_comment, - STATE(6197), 1, - sym__initializer, - ACTIONS(8702), 3, + ACTIONS(8147), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [171822] = 8, + anon_sym_PIPE_RBRACE, + [171422] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4790), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, sym_formal_parameters, - STATE(5032), 1, + STATE(4864), 1, sym_comment, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - STATE(6802), 1, + STATE(6893), 1, sym__call_signature, - [171847] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [171447] = 8, ACTIONS(5), 1, sym_html_comment, - STATE(5033), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, + sym_formal_parameters, + STATE(4865), 1, sym_comment, - ACTIONS(8315), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [171864] = 6, + STATE(5306), 1, + sym__call_signature, + STATE(6732), 1, + sym_type_parameters, + [171472] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5034), 1, + STATE(4866), 1, sym_comment, - STATE(6121), 1, - sym__initializer, - ACTIONS(8730), 3, + ACTIONS(8715), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [171885] = 6, + anon_sym_PIPE_RBRACE, + [171489] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5035), 1, + STATE(4867), 1, sym_comment, - STATE(6434), 1, + STATE(5718), 1, sym__initializer, - ACTIONS(8732), 3, + ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171906] = 4, + [171510] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5036), 1, + STATE(4868), 1, sym_comment, - ACTIONS(8734), 5, + ACTIONS(8717), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [171923] = 6, + [171527] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5037), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(4869), 1, sym_comment, - STATE(6303), 1, - sym__initializer, - ACTIONS(8726), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171944] = 6, + STATE(6493), 1, + sym_type_parameters, + STATE(6924), 1, + sym__call_signature, + [171552] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5038), 1, + STATE(4870), 1, sym_comment, - STATE(6111), 1, - sym__initializer, - ACTIONS(8730), 3, + ACTIONS(8719), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [171965] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(5039), 1, - sym_comment, - ACTIONS(6407), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [171982] = 6, + anon_sym_PIPE_RBRACE, + [171569] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5040), 1, + ACTIONS(8721), 1, + anon_sym_BQUOTE, + ACTIONS(8723), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8725), 1, + sym__template_chars, + STATE(4871), 1, sym_comment, - STATE(6201), 1, - sym__initializer, - ACTIONS(8702), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [172003] = 4, + STATE(5020), 1, + aux_sym_template_literal_type_repeat1, + STATE(6164), 1, + sym_template_type, + [171594] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2235), 1, + anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5041), 1, + ACTIONS(5254), 1, + anon_sym_LBRACE, + STATE(4872), 1, sym_comment, - ACTIONS(6407), 5, - anon_sym_EQ, + ACTIONS(5256), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [172020] = 8, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [171615] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - STATE(4266), 1, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, sym_formal_parameters, - STATE(5042), 1, + STATE(4873), 1, sym_comment, - STATE(5292), 1, + STATE(5226), 1, sym__call_signature, - STATE(6530), 1, + STATE(6732), 1, sym_type_parameters, - [172045] = 6, + [171640] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5043), 1, + STATE(4874), 1, sym_comment, - STATE(6204), 1, + STATE(5689), 1, sym__initializer, - ACTIONS(8702), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172066] = 8, + [171661] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8736), 1, - anon_sym_BQUOTE, - ACTIONS(8738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8740), 1, - sym__template_chars, - STATE(5044), 1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8727), 1, + anon_sym_class, + ACTIONS(8729), 1, + anon_sym_abstract, + STATE(4771), 1, + aux_sym_export_statement_repeat1, + STATE(4875), 1, sym_comment, - STATE(5174), 1, - aux_sym_template_literal_type_repeat1, - STATE(6239), 1, - sym_template_type, - [172091] = 4, + STATE(5410), 1, + sym_decorator, + [171686] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5045), 1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, + sym_formal_parameters, + STATE(4876), 1, sym_comment, - ACTIONS(6407), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [172108] = 4, + STATE(5181), 1, + sym__call_signature, + STATE(6732), 1, + sym_type_parameters, + [171711] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5046), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(4877), 1, sym_comment, - ACTIONS(8049), 5, + STATE(5699), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172125] = 8, + [171732] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8742), 1, - anon_sym_LBRACE, - ACTIONS(8744), 1, - anon_sym_SEMI, - ACTIONS(8746), 1, - sym__automatic_semicolon, - ACTIONS(8748), 1, - sym__function_signature_automatic_semicolon, - STATE(352), 1, - sym_statement_block, - STATE(5047), 1, - sym_comment, - [172150] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5048), 1, - sym_comment, - ACTIONS(8750), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [172167] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5049), 1, + STATE(4878), 1, sym_comment, - ACTIONS(8752), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [172184] = 6, + ACTIONS(2351), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [171749] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5050), 1, + STATE(4879), 1, sym_comment, - STATE(6137), 1, + STATE(5697), 1, sym__initializer, - ACTIONS(8726), 3, + ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172205] = 6, + [171770] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5051), 1, + STATE(4880), 1, sym_comment, - STATE(6205), 1, - sym__initializer, - ACTIONS(8702), 3, + ACTIONS(3468), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172226] = 6, + anon_sym_PIPE_RBRACE, + [171787] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5052), 1, + STATE(4881), 1, sym_comment, - STATE(6054), 1, + STATE(6312), 1, sym__initializer, - ACTIONS(8754), 3, + ACTIONS(8731), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172247] = 6, + [171808] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2239), 1, + anon_sym_DOT, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5254), 1, + anon_sym_LBRACE, + STATE(4882), 1, + sym_comment, + ACTIONS(5256), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [171829] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5053), 1, + STATE(4883), 1, sym_comment, - STATE(6206), 1, + STATE(5645), 1, sym__initializer, - ACTIONS(8702), 3, + ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172268] = 6, + [171850] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5054), 1, + STATE(4884), 1, sym_comment, - STATE(6192), 1, + STATE(5878), 1, sym__initializer, - ACTIONS(8702), 3, + ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172289] = 7, + [171871] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - STATE(5055), 1, - sym_comment, - ACTIONS(8756), 2, + ACTIONS(8733), 1, anon_sym_LBRACE, - anon_sym_COMMA, - [172312] = 4, + ACTIONS(8735), 1, + anon_sym_SEMI, + ACTIONS(8737), 1, + sym__automatic_semicolon, + ACTIONS(8739), 1, + sym__function_signature_automatic_semicolon, + STATE(383), 1, + sym_statement_block, + STATE(4885), 1, + sym_comment, + [171896] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5056), 1, - sym_comment, - ACTIONS(3438), 5, - sym__automatic_semicolon, + ACTIONS(4518), 1, + anon_sym_COLON, + ACTIONS(7219), 1, + anon_sym_EQ, + ACTIONS(8741), 1, anon_sym_COMMA, + ACTIONS(8743), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172329] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5057), 1, + STATE(4886), 1, sym_comment, - ACTIONS(8758), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [172346] = 6, + STATE(6192), 1, + aux_sym_object_pattern_repeat1, + [171921] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5058), 1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, + sym_formal_parameters, + STATE(4682), 1, + sym__call_signature, + STATE(4887), 1, sym_comment, - STATE(6083), 1, - sym__initializer, - ACTIONS(8760), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [172367] = 6, + STATE(6732), 1, + sym_type_parameters, + [171946] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5059), 1, + STATE(4888), 1, sym_comment, - STATE(6055), 1, + STATE(6127), 1, sym__initializer, - ACTIONS(8762), 3, + ACTIONS(8745), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172388] = 6, + [171967] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5060), 1, + STATE(4889), 1, sym_comment, - STATE(6132), 1, + STATE(5653), 1, sym__initializer, - ACTIONS(8702), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172409] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(5061), 1, - sym_comment, - ACTIONS(6418), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [172426] = 4, + [171988] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5062), 1, + STATE(4890), 1, sym_comment, - ACTIONS(8764), 5, + ACTIONS(8155), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172443] = 6, + [172005] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5063), 1, + ACTIONS(7999), 1, + anon_sym_extends, + ACTIONS(8011), 1, + anon_sym_LBRACE, + ACTIONS(8013), 1, + anon_sym_LBRACE_PIPE, + STATE(1255), 1, + sym_object_type, + STATE(4891), 1, sym_comment, - STATE(6208), 1, - sym__initializer, - ACTIONS(8722), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [172464] = 7, + STATE(5720), 1, + sym_extends_type_clause, + [172030] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7438), 1, - anon_sym_extends, - ACTIONS(8698), 1, - anon_sym_PIPE, - STATE(5064), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(4892), 1, sym_comment, - ACTIONS(8766), 2, + STATE(5658), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [172487] = 4, + [172051] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5065), 1, + STATE(4893), 1, sym_comment, - ACTIONS(3438), 5, + ACTIONS(3522), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172504] = 6, + [172068] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5066), 1, + STATE(4894), 1, sym_comment, - STATE(6135), 1, + STATE(5659), 1, sym__initializer, - ACTIONS(8700), 3, + ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172525] = 6, + [172089] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5067), 1, + STATE(4895), 1, sym_comment, - STATE(5947), 1, - sym__initializer, - ACTIONS(8700), 3, + ACTIONS(3522), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172546] = 8, + anon_sym_PIPE_RBRACE, + [172106] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8028), 1, - anon_sym_extends, - ACTIONS(8195), 1, - anon_sym_LBRACE, - ACTIONS(8197), 1, - anon_sym_LBRACE_PIPE, - STATE(1425), 1, - sym_object_type, - STATE(5068), 1, + STATE(4896), 1, sym_comment, - STATE(5903), 1, - sym_extends_type_clause, - [172571] = 4, + ACTIONS(6055), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [172123] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5069), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(4897), 1, sym_comment, - ACTIONS(2315), 5, + STATE(5838), 1, + sym__initializer, + ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172588] = 6, + [172144] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5070), 1, + STATE(4898), 1, sym_comment, - STATE(6056), 1, + STATE(6215), 1, sym__initializer, - ACTIONS(8762), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172609] = 4, + [172165] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5071), 1, + STATE(4899), 1, sym_comment, - ACTIONS(8768), 5, - sym__automatic_semicolon, + ACTIONS(6324), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172626] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [172182] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4900), 1, + sym_comment, + ACTIONS(5732), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [172199] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5072), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(4901), 1, sym_comment, - ACTIONS(3446), 5, + STATE(6212), 1, + sym__initializer, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172643] = 6, + [172220] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5073), 1, + STATE(4902), 1, sym_comment, - STATE(6130), 1, + STATE(6211), 1, sym__initializer, - ACTIONS(8702), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172664] = 6, + [172241] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5074), 1, + STATE(4903), 1, sym_comment, - STATE(6374), 1, + STATE(5817), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172685] = 4, + [172262] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5075), 1, + STATE(4904), 1, sym_comment, - ACTIONS(8770), 5, + ACTIONS(3522), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172702] = 6, + [172279] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5076), 1, + STATE(4905), 1, sym_comment, - STATE(6128), 1, + STATE(5664), 1, sym__initializer, - ACTIONS(8702), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172723] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(5077), 1, - sym_comment, - ACTIONS(8772), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [172740] = 4, + [172300] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5078), 1, + STATE(4906), 1, sym_comment, - ACTIONS(3444), 5, + ACTIONS(8075), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172757] = 4, + [172317] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5079), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(4055), 1, + sym_formal_parameters, + STATE(4907), 1, sym_comment, - ACTIONS(3438), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172774] = 6, + STATE(5140), 1, + sym__call_signature, + STATE(6769), 1, + sym_type_parameters, + [172342] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5080), 1, + STATE(4908), 1, sym_comment, - STATE(6092), 1, + STATE(5665), 1, sym__initializer, - ACTIONS(8700), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172795] = 7, + [172363] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8774), 1, - anon_sym_BQUOTE, - ACTIONS(8776), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8779), 1, + ACTIONS(8725), 1, sym__template_chars, - STATE(6239), 1, - sym_template_type, - STATE(5081), 2, + ACTIONS(8751), 1, + anon_sym_BQUOTE, + STATE(4909), 1, sym_comment, + STATE(5108), 1, aux_sym_template_literal_type_repeat1, - [172818] = 4, + STATE(6164), 1, + sym_template_type, + [172388] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5082), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(4910), 1, sym_comment, - ACTIONS(3438), 5, + STATE(5671), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172835] = 4, + [172409] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5083), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(4911), 1, sym_comment, - ACTIONS(3430), 5, + STATE(5855), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172852] = 4, + [172430] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5084), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(4912), 1, sym_comment, - ACTIONS(3480), 5, + STATE(5672), 1, + sym__initializer, + ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172869] = 8, + [172451] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8740), 1, - sym__template_chars, - ACTIONS(8782), 1, - anon_sym_BQUOTE, - STATE(5081), 1, - aux_sym_template_literal_type_repeat1, - STATE(5085), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(4913), 1, sym_comment, - STATE(6239), 1, - sym_template_type, - [172894] = 4, + STATE(6493), 1, + sym_type_parameters, + STATE(6613), 1, + sym__call_signature, + [172476] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5086), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(4914), 1, sym_comment, - ACTIONS(3480), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [172911] = 7, + STATE(6493), 1, + sym_type_parameters, + STATE(6586), 1, + sym__call_signature, + [172501] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7438), 1, - anon_sym_extends, - ACTIONS(8698), 1, - anon_sym_PIPE, - STATE(5087), 1, + STATE(4915), 1, sym_comment, - ACTIONS(8784), 2, + ACTIONS(8075), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172934] = 4, + anon_sym_PIPE_RBRACE, + [172518] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5088), 1, + STATE(4916), 1, sym_comment, - ACTIONS(3480), 5, + ACTIONS(3522), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172951] = 6, + [172535] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5089), 1, + STATE(4917), 1, sym_comment, - STATE(6212), 1, + STATE(5679), 1, sym__initializer, - ACTIONS(8702), 3, + ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172972] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8786), 1, - anon_sym_LBRACE, - ACTIONS(8788), 1, - anon_sym_SEMI, - ACTIONS(8790), 1, - sym__automatic_semicolon, - ACTIONS(8792), 1, - sym__function_signature_automatic_semicolon, - STATE(948), 1, - sym_statement_block, - STATE(5090), 1, - sym_comment, - [172997] = 8, + [172556] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - STATE(4266), 1, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, sym_formal_parameters, - STATE(5091), 1, + STATE(4918), 1, sym_comment, - STATE(5109), 1, + STATE(5111), 1, sym__call_signature, - STATE(6530), 1, + STATE(6732), 1, sym_type_parameters, - [173022] = 8, + [172581] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4790), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, sym_formal_parameters, - STATE(5092), 1, + STATE(4919), 1, sym_comment, - STATE(6577), 1, - sym__call_signature, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - [173047] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5093), 1, - sym_comment, - STATE(6373), 1, - sym__initializer, - ACTIONS(8704), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [173068] = 6, + STATE(6540), 1, + sym__call_signature, + [172606] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5094), 1, + STATE(4920), 1, sym_comment, - STATE(6346), 1, + STATE(6056), 1, sym__initializer, - ACTIONS(8700), 3, + ACTIONS(8705), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173089] = 6, + [172627] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5095), 1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, + sym_formal_parameters, + STATE(4921), 1, sym_comment, - STATE(6213), 1, - sym__initializer, - ACTIONS(8702), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [173110] = 8, + STATE(5043), 1, + sym__call_signature, + STATE(6732), 1, + sym_type_parameters, + [172652] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4790), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, sym_formal_parameters, - STATE(5096), 1, + STATE(4922), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6777), 1, + STATE(6482), 1, sym__call_signature, - [173135] = 8, + STATE(6493), 1, + sym_type_parameters, + [172677] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4514), 1, - anon_sym_COLON, - ACTIONS(7214), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(8794), 1, - anon_sym_COMMA, - ACTIONS(8796), 1, - anon_sym_RBRACE, - STATE(5097), 1, - sym_comment, - STATE(6331), 1, - aux_sym_object_pattern_repeat1, - [173160] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5098), 1, - sym_comment, - ACTIONS(5574), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [173177] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5099), 1, + STATE(4923), 1, sym_comment, - ACTIONS(5586), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [173194] = 8, + STATE(5685), 1, + sym__initializer, + ACTIONS(8709), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172698] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8125), 1, - anon_sym_EQ, - ACTIONS(8798), 1, - anon_sym_COMMA, - ACTIONS(8800), 1, - anon_sym_RBRACE, - STATE(5100), 1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, + sym_formal_parameters, + STATE(4924), 1, sym_comment, - STATE(6378), 1, - aux_sym_enum_body_repeat1, - STATE(6979), 1, - sym__initializer, - [173219] = 6, + STATE(5035), 1, + sym__call_signature, + STATE(6732), 1, + sym_type_parameters, + [172723] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5101), 1, + STATE(4925), 1, sym_comment, - STATE(5987), 1, + STATE(5686), 1, sym__initializer, - ACTIONS(8760), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173240] = 8, + [172744] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8788), 1, - anon_sym_SEMI, - ACTIONS(8790), 1, - sym__automatic_semicolon, - ACTIONS(8792), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(8802), 1, - anon_sym_LBRACE, - STATE(305), 1, - sym_statement_block, - STATE(5102), 1, + STATE(4926), 1, sym_comment, - [173265] = 4, + ACTIONS(8753), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172761] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5103), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(4927), 1, sym_comment, - ACTIONS(8161), 5, + STATE(5687), 1, + sym__initializer, + ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173282] = 8, + [172782] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4790), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, sym_formal_parameters, - STATE(5104), 1, + STATE(4928), 1, sym_comment, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - STATE(7003), 1, + STATE(6637), 1, sym__call_signature, - [173307] = 7, + [172807] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7438), 1, - anon_sym_extends, - ACTIONS(8698), 1, - anon_sym_PIPE, - STATE(5105), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(4929), 1, sym_comment, - ACTIONS(8804), 2, + STATE(6054), 1, + sym__initializer, + ACTIONS(8705), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [173330] = 4, + [172828] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5106), 1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, + sym_formal_parameters, + STATE(4930), 1, sym_comment, - ACTIONS(2083), 5, - anon_sym_LBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_GT, - anon_sym_DOT, - [173347] = 8, + STATE(4960), 1, + sym__call_signature, + STATE(6732), 1, + sym_type_parameters, + [172853] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8786), 1, - anon_sym_LBRACE, - ACTIONS(8806), 1, - anon_sym_SEMI, - ACTIONS(8808), 1, - sym__automatic_semicolon, - ACTIONS(8810), 1, - sym__function_signature_automatic_semicolon, - STATE(939), 1, - sym_statement_block, - STATE(5107), 1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8673), 1, + anon_sym_class, + ACTIONS(8675), 1, + anon_sym_abstract, + STATE(4771), 1, + aux_sym_export_statement_repeat1, + STATE(4931), 1, sym_comment, - [173372] = 4, + STATE(5410), 1, + sym_decorator, + [172878] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5108), 1, - sym_comment, - ACTIONS(2197), 5, - anon_sym_LBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_GT, - anon_sym_DOT, - [173389] = 8, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(4932), 1, + sym_comment, + STATE(5705), 1, + sym__initializer, + ACTIONS(8707), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172899] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8706), 1, + ACTIONS(8755), 1, anon_sym_LBRACE, - ACTIONS(8812), 1, + ACTIONS(8757), 1, anon_sym_SEMI, - ACTIONS(8814), 1, + ACTIONS(8759), 1, sym__automatic_semicolon, - ACTIONS(8816), 1, + ACTIONS(8761), 1, sym__function_signature_automatic_semicolon, - STATE(430), 1, + STATE(428), 1, sym_statement_block, - STATE(5109), 1, + STATE(4933), 1, sym_comment, - [173414] = 8, + [172924] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - STATE(4200), 1, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, sym_formal_parameters, - STATE(5110), 1, - sym_comment, - STATE(5207), 1, + STATE(4885), 1, sym__call_signature, - STATE(6630), 1, + STATE(4934), 1, + sym_comment, + STATE(6732), 1, sym_type_parameters, - [173439] = 4, + [172949] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5111), 1, + STATE(4935), 1, sym_comment, - ACTIONS(8172), 5, + ACTIONS(2271), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173456] = 4, + [172966] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5112), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(4936), 1, sym_comment, - ACTIONS(8161), 5, + STATE(5856), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173473] = 4, + [172987] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(5113), 1, + STATE(4937), 1, sym_comment, - ACTIONS(5574), 5, + ACTIONS(8763), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [173490] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [173004] = 8, ACTIONS(5), 1, sym_html_comment, - STATE(5114), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, + sym_formal_parameters, + STATE(4938), 1, sym_comment, - ACTIONS(5582), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [173507] = 4, + STATE(5370), 1, + sym__call_signature, + STATE(6732), 1, + sym_type_parameters, + [173029] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5115), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(4939), 1, sym_comment, - ACTIONS(8818), 5, + STATE(5721), 1, + sym__initializer, + ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173524] = 6, + [173050] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5116), 1, + STATE(4940), 1, sym_comment, - STATE(6001), 1, + STATE(6181), 1, sym__initializer, - ACTIONS(8726), 3, + ACTIONS(8765), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173545] = 6, + [173071] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5117), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(4941), 1, sym_comment, - STATE(5891), 1, - sym__initializer, - ACTIONS(8726), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [173566] = 6, + STATE(6493), 1, + sym_type_parameters, + STATE(6800), 1, + sym__call_signature, + [173096] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5118), 1, + STATE(4942), 1, sym_comment, - STATE(5993), 1, + STATE(6052), 1, sym__initializer, - ACTIONS(8700), 3, + ACTIONS(8705), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173587] = 6, + [173117] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5119), 1, + STATE(4943), 1, sym_comment, - STATE(6126), 1, - sym__initializer, - ACTIONS(8820), 3, + ACTIONS(8283), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173608] = 8, + anon_sym_PIPE_RBRACE, + [173134] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8028), 1, - anon_sym_extends, - ACTIONS(8203), 1, - anon_sym_LBRACE, - ACTIONS(8205), 1, - anon_sym_LBRACE_PIPE, - STATE(1042), 1, - sym_object_type, - STATE(5120), 1, + STATE(4944), 1, sym_comment, - STATE(6408), 1, - sym_extends_type_clause, - [173633] = 8, + ACTIONS(8767), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [173151] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5121), 1, + STATE(4945), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6965), 1, - sym__call_signature, - [173658] = 8, + ACTIONS(3492), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173168] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5122), 1, + STATE(4946), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6964), 1, - sym__call_signature, - [173683] = 5, + ACTIONS(8077), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173185] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8822), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5123), 1, + STATE(4947), 1, sym_comment, - ACTIONS(4242), 4, + STATE(5734), 1, + sym__initializer, + ACTIONS(8709), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [173702] = 4, + anon_sym_SEMI, + [173206] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5124), 1, + STATE(4948), 1, sym_comment, - ACTIONS(8824), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [173719] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(8769), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173223] = 6, ACTIONS(5), 1, sym_html_comment, - STATE(5125), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(4949), 1, sym_comment, - ACTIONS(5578), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [173736] = 8, + STATE(5735), 1, + sym__initializer, + ACTIONS(8709), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [173244] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8802), 1, + ACTIONS(7999), 1, + anon_sym_extends, + ACTIONS(8163), 1, anon_sym_LBRACE, - ACTIONS(8806), 1, - anon_sym_SEMI, - ACTIONS(8808), 1, - sym__automatic_semicolon, - ACTIONS(8810), 1, - sym__function_signature_automatic_semicolon, - STATE(311), 1, - sym_statement_block, - STATE(5126), 1, + ACTIONS(8165), 1, + anon_sym_LBRACE_PIPE, + STATE(1492), 1, + sym_object_type, + STATE(4950), 1, sym_comment, - [173761] = 6, + STATE(6184), 1, + sym_extends_type_clause, + [173269] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5127), 1, + STATE(4951), 1, sym_comment, - STATE(5847), 1, + STATE(5738), 1, sym__initializer, - ACTIONS(8760), 3, + ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173782] = 6, + [173290] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5128), 1, + STATE(4952), 1, sym_comment, - STATE(6012), 1, - sym__initializer, - ACTIONS(8754), 3, + ACTIONS(3530), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173803] = 6, + anon_sym_PIPE_RBRACE, + [173307] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5129), 1, + STATE(4953), 1, sym_comment, - STATE(6124), 1, + STATE(6047), 1, sym__initializer, - ACTIONS(8820), 3, + ACTIONS(8705), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173824] = 4, + [173328] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(5130), 1, - sym_comment, - ACTIONS(5574), 5, - anon_sym_LBRACE, + ACTIONS(8771), 1, + sym_identifier, + ACTIONS(8773), 1, anon_sym_GT, + ACTIONS(8775), 1, sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [173841] = 4, + STATE(4954), 1, + sym_comment, + STATE(6397), 1, + sym_nested_identifier, + STATE(7407), 1, + sym_jsx_namespace_name, + [173353] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5131), 1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8697), 1, + anon_sym_class, + ACTIONS(8699), 1, + anon_sym_abstract, + STATE(4771), 1, + aux_sym_export_statement_repeat1, + STATE(4955), 1, sym_comment, - ACTIONS(3482), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173858] = 4, + STATE(5410), 1, + sym_decorator, + [173378] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5132), 1, + STATE(4956), 1, sym_comment, - ACTIONS(3484), 5, + ACTIONS(3504), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173875] = 4, + [173395] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5133), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(4957), 1, sym_comment, - ACTIONS(3486), 5, + STATE(5744), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173892] = 8, + [173416] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8744), 1, - anon_sym_SEMI, - ACTIONS(8746), 1, - sym__automatic_semicolon, - ACTIONS(8748), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(8826), 1, - anon_sym_LBRACE, - STATE(1151), 1, - sym_statement_block, - STATE(5134), 1, + ACTIONS(8361), 1, + anon_sym_COLON, + ACTIONS(8777), 1, + anon_sym_EQ_GT, + STATE(4958), 1, sym_comment, - [173917] = 4, + STATE(6678), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [173437] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5135), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(4959), 1, sym_comment, - ACTIONS(3488), 5, + STATE(5745), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173934] = 7, + [173458] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7438), 1, - anon_sym_extends, - ACTIONS(8698), 1, - anon_sym_PIPE, - STATE(5136), 1, - sym_comment, - ACTIONS(8828), 2, - sym__automatic_semicolon, + ACTIONS(8735), 1, anon_sym_SEMI, - [173957] = 6, + ACTIONS(8737), 1, + sym__automatic_semicolon, + ACTIONS(8739), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(8780), 1, + anon_sym_LBRACE, + STATE(1070), 1, + sym_statement_block, + STATE(4960), 1, + sym_comment, + [173483] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5137), 1, + STATE(4961), 1, sym_comment, - STATE(6087), 1, + STATE(5746), 1, sym__initializer, - ACTIONS(8760), 3, + ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173978] = 7, + [173504] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - STATE(5138), 1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, + sym_formal_parameters, + STATE(4962), 1, sym_comment, - ACTIONS(8830), 2, - anon_sym_COMMA, - anon_sym_GT, - [174001] = 6, + STATE(5357), 1, + sym__call_signature, + STATE(6732), 1, + sym_type_parameters, + [173529] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5139), 1, + STATE(4963), 1, sym_comment, - STATE(6014), 1, - sym__initializer, - ACTIONS(8762), 3, + ACTIONS(3504), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [174022] = 6, + anon_sym_PIPE_RBRACE, + [173546] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5140), 1, + STATE(4964), 1, sym_comment, - STATE(6361), 1, - sym__initializer, - ACTIONS(8700), 3, + ACTIONS(3504), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [174043] = 6, + anon_sym_PIPE_RBRACE, + [173563] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5141), 1, + STATE(4965), 1, sym_comment, - STATE(6214), 1, + STATE(6032), 1, sym__initializer, - ACTIONS(8702), 3, + ACTIONS(8782), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174064] = 6, + [173584] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5142), 1, + STATE(4966), 1, sym_comment, - STATE(5977), 1, + STATE(5756), 1, sym__initializer, - ACTIONS(8726), 3, + ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174085] = 6, + [173605] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5143), 1, + STATE(4967), 1, sym_comment, - STATE(6215), 1, - sym__initializer, - ACTIONS(8702), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [174106] = 6, + ACTIONS(5552), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [173622] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5144), 1, + STATE(4968), 1, sym_comment, - STATE(5964), 1, - sym__initializer, - ACTIONS(8726), 3, + ACTIONS(3534), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [174127] = 6, + anon_sym_PIPE_RBRACE, + [173639] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5145), 1, + STATE(4969), 1, sym_comment, - STATE(6384), 1, + STATE(6018), 1, sym__initializer, - ACTIONS(8832), 3, + ACTIONS(8705), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174148] = 6, + [173660] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4970), 1, + sym_comment, + ACTIONS(5588), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [173677] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5146), 1, + STATE(4971), 1, sym_comment, - STATE(6123), 1, + STATE(6011), 1, sym__initializer, - ACTIONS(8820), 3, + ACTIONS(8705), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174169] = 4, + [173698] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(5147), 1, + STATE(4972), 1, sym_comment, - ACTIONS(5351), 5, + ACTIONS(5560), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [174186] = 6, + [173715] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5148), 1, + STATE(4973), 1, sym_comment, - STATE(5959), 1, + STATE(5767), 1, sym__initializer, - ACTIONS(8726), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174207] = 4, + [173736] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(4974), 1, + sym_comment, + ACTIONS(5556), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [173753] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5149), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(4975), 1, sym_comment, - ACTIONS(8036), 5, + STATE(5775), 1, + sym__initializer, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174224] = 4, + [173774] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(5150), 1, - sym_comment, - ACTIONS(5347), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(8784), 1, sym_identifier, - [174241] = 6, + STATE(4976), 1, + sym_comment, + STATE(5551), 1, + sym_string, + STATE(6531), 1, + sym__module_export_name, + [173799] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5151), 1, + STATE(4977), 1, sym_comment, - STATE(5937), 1, + STATE(5779), 1, sym__initializer, - ACTIONS(8760), 3, + ACTIONS(8707), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174262] = 4, + [173820] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(5152), 1, + STATE(4978), 1, sym_comment, - ACTIONS(5343), 5, + ACTIONS(5552), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [174279] = 8, + [173837] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - STATE(4266), 1, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, sym_formal_parameters, - STATE(5153), 1, + STATE(4979), 1, sym_comment, - STATE(5522), 1, + STATE(5198), 1, sym__call_signature, - STATE(6530), 1, + STATE(6732), 1, sym_type_parameters, - [174304] = 8, + [173862] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(4200), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(5154), 1, + STATE(4980), 1, sym_comment, - STATE(5836), 1, - sym__call_signature, - STATE(6630), 1, + STATE(6493), 1, sym_type_parameters, - [174329] = 6, + STATE(6522), 1, + sym__call_signature, + [173887] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5155), 1, - sym_comment, - STATE(6122), 1, - sym__initializer, - ACTIONS(8820), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(8757), 1, anon_sym_SEMI, - [174350] = 6, + ACTIONS(8759), 1, + sym__automatic_semicolon, + ACTIONS(8761), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(8786), 1, + anon_sym_LBRACE, + STATE(1171), 1, + sym_statement_block, + STATE(4981), 1, + sym_comment, + [173912] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5156), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7437), 1, + anon_sym_extends, + ACTIONS(8790), 1, + anon_sym_PIPE, + STATE(4982), 1, sym_comment, - STATE(6362), 1, - sym__initializer, - ACTIONS(8732), 3, + ACTIONS(8788), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [174371] = 6, + [173935] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7128), 1, - anon_sym_LBRACK, - ACTIONS(8834), 1, - anon_sym_RBRACE, - STATE(5157), 1, + STATE(4983), 1, sym_comment, - ACTIONS(5187), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [174392] = 6, + ACTIONS(3474), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173952] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5158), 1, + STATE(4984), 1, sym_comment, - STATE(6368), 1, + STATE(5786), 1, sym__initializer, - ACTIONS(8726), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174413] = 8, + [173973] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4790), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, sym_formal_parameters, - STATE(5159), 1, + STATE(4985), 1, sym_comment, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - STATE(6946), 1, + STATE(6516), 1, sym__call_signature, - [174438] = 8, + [173998] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5160), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(4986), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6788), 1, - sym__call_signature, - [174463] = 8, + STATE(5787), 1, + sym__initializer, + ACTIONS(8709), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174019] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8125), 1, + ACTIONS(8792), 1, anon_sym_EQ, - ACTIONS(8836), 1, + STATE(4987), 1, + sym_comment, + ACTIONS(4253), 4, anon_sym_COMMA, - ACTIONS(8838), 1, anon_sym_RBRACE, - STATE(5161), 1, - sym_comment, - STATE(5970), 1, - aux_sym_enum_body_repeat1, - STATE(6979), 1, - sym__initializer, - [174488] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + [174038] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5162), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7437), 1, + anon_sym_extends, + ACTIONS(8790), 1, + anon_sym_PIPE, + STATE(4988), 1, sym_comment, - STATE(5818), 1, - sym__initializer, - ACTIONS(8840), 3, + ACTIONS(8794), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [174509] = 6, + [174061] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5163), 1, + STATE(4989), 1, sym_comment, - STATE(5955), 1, + STATE(5788), 1, sym__initializer, - ACTIONS(8726), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174530] = 7, + [174082] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7438), 1, - anon_sym_extends, - ACTIONS(8698), 1, - anon_sym_PIPE, - STATE(5164), 1, + STATE(4990), 1, sym_comment, - ACTIONS(8842), 2, + ACTIONS(3456), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [174553] = 8, + anon_sym_PIPE_RBRACE, + [174099] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - STATE(4266), 1, - sym_formal_parameters, - STATE(5165), 1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8691), 1, + anon_sym_abstract, + ACTIONS(8796), 1, + anon_sym_class, + STATE(4771), 1, + aux_sym_export_statement_repeat1, + STATE(4991), 1, sym_comment, - STATE(5386), 1, - sym__call_signature, - STATE(6530), 1, - sym_type_parameters, - [174578] = 8, + STATE(5410), 1, + sym_decorator, + [174124] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8708), 1, - anon_sym_SEMI, - ACTIONS(8710), 1, - sym__automatic_semicolon, - ACTIONS(8712), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(8844), 1, - anon_sym_LBRACE, - STATE(1207), 1, - sym_statement_block, - STATE(5166), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(4992), 1, sym_comment, - [174603] = 8, + STATE(5789), 1, + sym__initializer, + ACTIONS(8709), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174145] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5167), 1, + STATE(4993), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6937), 1, - sym__call_signature, - [174628] = 8, + ACTIONS(3442), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [174162] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - STATE(4266), 1, - sym_formal_parameters, - STATE(5168), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(4994), 1, sym_comment, - STATE(5280), 1, - sym__call_signature, - STATE(6530), 1, - sym_type_parameters, - [174653] = 6, + STATE(5790), 1, + sym__initializer, + ACTIONS(8707), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174183] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5169), 1, + STATE(4995), 1, sym_comment, - STATE(6358), 1, - sym__initializer, - ACTIONS(8732), 3, + ACTIONS(3438), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [174674] = 6, + anon_sym_PIPE_RBRACE, + [174200] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5170), 1, + STATE(4996), 1, sym_comment, - STATE(5954), 1, - sym__initializer, - ACTIONS(8700), 3, + ACTIONS(2177), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [174695] = 6, + anon_sym_PIPE_RBRACE, + [174217] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5171), 1, + STATE(4997), 1, sym_comment, - STATE(5817), 1, + STATE(6004), 1, sym__initializer, - ACTIONS(8846), 3, + ACTIONS(8705), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174716] = 8, + [174238] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4790), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, sym_formal_parameters, - STATE(5172), 1, + STATE(4998), 1, sym_comment, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - STATE(6812), 1, + STATE(6495), 1, sym__call_signature, - [174741] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(8848), 1, - sym_identifier, - STATE(5173), 1, - sym_comment, - STATE(5681), 1, - sym_string, - STATE(6933), 1, - sym__module_export_name, - [174766] = 8, + [174263] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8740), 1, - sym__template_chars, - ACTIONS(8850), 1, - anon_sym_BQUOTE, - STATE(5081), 1, - aux_sym_template_literal_type_repeat1, - STATE(5174), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(4999), 1, sym_comment, - STATE(6239), 1, - sym_template_type, - [174791] = 8, + STATE(6493), 1, + sym_type_parameters, + STATE(6987), 1, + sym__call_signature, + [174288] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(4266), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(5175), 1, + STATE(5000), 1, sym_comment, - STATE(5437), 1, - sym__call_signature, - STATE(6530), 1, + STATE(6493), 1, sym_type_parameters, - [174816] = 6, + STATE(6494), 1, + sym__call_signature, + [174313] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5176), 1, + STATE(5001), 1, sym_comment, - STATE(6381), 1, + STATE(5902), 1, sym__initializer, - ACTIONS(8726), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174837] = 8, + [174334] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8742), 1, - anon_sym_LBRACE, - ACTIONS(8852), 1, - anon_sym_SEMI, - ACTIONS(8854), 1, - sym__automatic_semicolon, - ACTIONS(8856), 1, - sym__function_signature_automatic_semicolon, - STATE(365), 1, - sym_statement_block, - STATE(5177), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5002), 1, sym_comment, - [174862] = 8, + STATE(5796), 1, + sym__initializer, + ACTIONS(8709), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174355] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(4266), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(4824), 1, - sym__call_signature, - STATE(5178), 1, + STATE(5003), 1, sym_comment, - STATE(6530), 1, + STATE(6493), 1, sym_type_parameters, - [174887] = 8, + STATE(6807), 1, + sym__call_signature, + [174380] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(5004), 1, + sym_comment, + ACTIONS(5278), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [174397] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8028), 1, - anon_sym_extends, - ACTIONS(8077), 1, - anon_sym_LBRACE, - ACTIONS(8079), 1, - anon_sym_LBRACE_PIPE, - STATE(1626), 1, - sym_object_type, - STATE(5179), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5005), 1, sym_comment, - STATE(6168), 1, - sym_extends_type_clause, - [174912] = 8, + STATE(5797), 1, + sym__initializer, + ACTIONS(8709), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174418] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - STATE(4266), 1, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, sym_formal_parameters, - STATE(5166), 1, - sym__call_signature, - STATE(5180), 1, + STATE(5006), 1, sym_comment, - STATE(6530), 1, + STATE(5345), 1, + sym__call_signature, + STATE(6732), 1, sym_type_parameters, - [174937] = 8, + [174443] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4790), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, sym_formal_parameters, - STATE(5181), 1, + STATE(5007), 1, sym_comment, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - STATE(6836), 1, + STATE(6803), 1, sym__call_signature, - [174962] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(8848), 1, - sym_identifier, - STATE(5182), 1, - sym_comment, - STATE(5681), 1, - sym_string, - STATE(6458), 1, - sym__module_export_name, - [174987] = 6, + [174468] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5183), 1, + STATE(5008), 1, sym_comment, - STATE(6379), 1, + STATE(6131), 1, sym__initializer, - ACTIONS(8762), 3, + ACTIONS(8765), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175008] = 8, + [174489] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - STATE(4266), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(5184), 1, + STATE(5009), 1, sym_comment, - STATE(5462), 1, + STATE(5798), 1, sym__call_signature, - STATE(6530), 1, + STATE(6769), 1, sym_type_parameters, - [175033] = 6, + [174514] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5185), 1, + STATE(5010), 1, sym_comment, - STATE(6356), 1, + STATE(5882), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175054] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5186), 1, - sym_comment, - ACTIONS(8858), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [175071] = 6, + [174535] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5187), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(5011), 1, sym_comment, - STATE(6218), 1, - sym__initializer, - ACTIONS(8860), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175092] = 4, + STATE(6493), 1, + sym_type_parameters, + STATE(6751), 1, + sym__call_signature, + [174560] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(5188), 1, + STATE(5012), 1, sym_comment, - ACTIONS(5556), 5, + ACTIONS(5282), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [175109] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [174577] = 8, ACTIONS(5), 1, sym_html_comment, - STATE(5189), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(5013), 1, sym_comment, - ACTIONS(5552), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [175126] = 8, + STATE(6493), 1, + sym_type_parameters, + STATE(6628), 1, + sym__call_signature, + [174602] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8125), 1, - anon_sym_EQ, - ACTIONS(8862), 1, - anon_sym_COMMA, - ACTIONS(8864), 1, - anon_sym_RBRACE, - STATE(5190), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(5014), 1, sym_comment, - STATE(5951), 1, - aux_sym_enum_body_repeat1, - STATE(6979), 1, - sym__initializer, - [175151] = 8, + STATE(6469), 1, + sym__call_signature, + STATE(6493), 1, + sym_type_parameters, + [174627] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(4266), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(4943), 1, + STATE(5015), 1, + sym_comment, + STATE(6493), 1, + sym_type_parameters, + STATE(6602), 1, sym__call_signature, - STATE(5191), 1, + [174652] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(5016), 1, sym_comment, - STATE(6530), 1, + STATE(6493), 1, sym_type_parameters, - [175176] = 4, + STATE(6835), 1, + sym__call_signature, + [174677] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5192), 1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, + sym_formal_parameters, + STATE(5017), 1, sym_comment, - ACTIONS(2387), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175193] = 4, + STATE(5336), 1, + sym__call_signature, + STATE(6732), 1, + sym_type_parameters, + [174702] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5193), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5018), 1, sym_comment, - ACTIONS(8866), 5, + STATE(5998), 1, + sym__initializer, + ACTIONS(8705), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175210] = 6, + [174723] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5194), 1, + STATE(5019), 1, sym_comment, - STATE(6351), 1, + STATE(6180), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175231] = 8, + [174744] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - STATE(4266), 1, - sym_formal_parameters, - STATE(5195), 1, + ACTIONS(8723), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8725), 1, + sym__template_chars, + ACTIONS(8798), 1, + anon_sym_BQUOTE, + STATE(5020), 1, sym_comment, - STATE(5249), 1, - sym__call_signature, - STATE(6530), 1, - sym_type_parameters, - [175256] = 4, + STATE(5394), 1, + aux_sym_template_literal_type_repeat1, + STATE(6164), 1, + sym_template_type, + [174769] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5196), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5021), 1, sym_comment, - ACTIONS(8049), 5, + STATE(6226), 1, + sym__initializer, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175273] = 8, + [174790] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(4200), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(5197), 1, + STATE(5022), 1, sym_comment, - STATE(6003), 1, - sym__call_signature, - STATE(6630), 1, + STATE(6493), 1, sym_type_parameters, - [175298] = 7, + STATE(6541), 1, + sym__call_signature, + [174815] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7438), 1, - anon_sym_extends, - ACTIONS(8698), 1, - anon_sym_PIPE, - STATE(5198), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5023), 1, sym_comment, - ACTIONS(8868), 2, + STATE(6216), 1, + sym__initializer, + ACTIONS(8765), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [175321] = 8, + [174836] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(8870), 1, - anon_sym_as, - ACTIONS(8872), 1, - anon_sym_RBRACK, - STATE(5199), 1, + STATE(5024), 1, sym_comment, - [175346] = 8, + ACTIONS(2165), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [174853] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8277), 1, - anon_sym_class, - ACTIONS(8279), 1, - anon_sym_abstract, - STATE(4768), 1, - aux_sym_export_statement_repeat1, - STATE(5200), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5025), 1, sym_comment, - STATE(5700), 1, - sym_decorator, - [175371] = 8, + STATE(5803), 1, + sym__initializer, + ACTIONS(8800), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [174874] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(5026), 1, + sym_comment, + ACTIONS(5290), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [174891] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(4266), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(5201), 1, + STATE(5027), 1, sym_comment, - STATE(5449), 1, + STATE(6492), 1, sym__call_signature, - STATE(6530), 1, + STATE(6493), 1, sym_type_parameters, - [175396] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(6265), 1, - sym__automatic_semicolon, - STATE(5202), 1, - sym_comment, - ACTIONS(2267), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175415] = 4, + [174916] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5203), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(5028), 1, sym_comment, - ACTIONS(3490), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175432] = 4, + STATE(6485), 1, + sym__call_signature, + STATE(6493), 1, + sym_type_parameters, + [174941] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5204), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(5029), 1, sym_comment, - ACTIONS(3378), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175449] = 6, + STATE(6433), 1, + sym__call_signature, + STATE(6493), 1, + sym_type_parameters, + [174966] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5205), 1, + STATE(5030), 1, sym_comment, - STATE(5839), 1, + STATE(6185), 1, sym__initializer, - ACTIONS(8726), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175470] = 4, + [174987] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5206), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5031), 1, sym_comment, - ACTIONS(2387), 5, + STATE(5980), 1, + sym__initializer, + ACTIONS(8705), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175487] = 4, + [175008] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5207), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(5032), 1, sym_comment, - ACTIONS(8002), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175504] = 8, + STATE(6456), 1, + sym__call_signature, + STATE(6493), 1, + sym_type_parameters, + [175033] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(4200), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(5208), 1, + STATE(5033), 1, sym_comment, - STATE(5219), 1, + STATE(6441), 1, sym__call_signature, - STATE(6630), 1, + STATE(6493), 1, sym_type_parameters, - [175529] = 5, + [175058] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6311), 1, - sym__automatic_semicolon, - STATE(5209), 1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, + sym_formal_parameters, + STATE(5034), 1, sym_comment, - ACTIONS(2301), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175548] = 6, + STATE(5339), 1, + sym__call_signature, + STATE(6732), 1, + sym_type_parameters, + [175083] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5210), 1, - sym_comment, - STATE(6466), 1, - sym__initializer, - ACTIONS(8762), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(8733), 1, + anon_sym_LBRACE, + ACTIONS(8802), 1, anon_sym_SEMI, - [175569] = 4, + ACTIONS(8804), 1, + sym__automatic_semicolon, + ACTIONS(8806), 1, + sym__function_signature_automatic_semicolon, + STATE(406), 1, + sym_statement_block, + STATE(5035), 1, + sym_comment, + [175108] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5211), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5036), 1, sym_comment, - ACTIONS(8061), 5, + STATE(5967), 1, + sym__initializer, + ACTIONS(8705), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175586] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5212), 1, - sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6829), 1, - sym__call_signature, - [175611] = 8, + [175129] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8452), 1, - anon_sym_abstract, - ACTIONS(8874), 1, - anon_sym_class, - STATE(4768), 1, - aux_sym_export_statement_repeat1, - STATE(5213), 1, + ACTIONS(8181), 1, + anon_sym_EQ, + ACTIONS(8808), 1, + anon_sym_COMMA, + ACTIONS(8810), 1, + anon_sym_RBRACE, + STATE(5037), 1, sym_comment, - STATE(5700), 1, - sym_decorator, - [175636] = 4, + STATE(5768), 1, + aux_sym_enum_body_repeat1, + STATE(6795), 1, + sym__initializer, + [175154] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5214), 1, + STATE(5038), 1, sym_comment, - ACTIONS(8876), 5, + ACTIONS(3490), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175653] = 5, + [175171] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6319), 1, - sym__automatic_semicolon, - STATE(5215), 1, + STATE(5039), 1, sym_comment, - ACTIONS(2297), 4, + ACTIONS(8494), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175672] = 4, + [175188] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5216), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5040), 1, sym_comment, - ACTIONS(8878), 5, + STATE(6210), 1, + sym__initializer, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175689] = 6, + [175209] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5217), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(5041), 1, sym_comment, - STATE(5907), 1, - sym__initializer, - ACTIONS(8760), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175710] = 4, + STATE(6362), 1, + sym__call_signature, + STATE(6493), 1, + sym_type_parameters, + [175234] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5218), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5042), 1, sym_comment, - ACTIONS(3492), 5, + STATE(5806), 1, + sym__initializer, + ACTIONS(8812), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175727] = 4, + [175255] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5219), 1, - sym_comment, - ACTIONS(8075), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(8780), 1, + anon_sym_LBRACE, + ACTIONS(8802), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175744] = 5, + ACTIONS(8804), 1, + sym__automatic_semicolon, + ACTIONS(8806), 1, + sym__function_signature_automatic_semicolon, + STATE(1120), 1, + sym_statement_block, + STATE(5043), 1, + sym_comment, + [175280] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6459), 1, - sym__automatic_semicolon, - STATE(5220), 1, + STATE(5044), 1, sym_comment, - ACTIONS(2279), 4, + ACTIONS(8814), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175763] = 8, + [175297] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(4200), 1, + STATE(4683), 1, sym_formal_parameters, - STATE(5196), 1, - sym__call_signature, - STATE(5221), 1, + STATE(5045), 1, sym_comment, - STATE(6630), 1, + STATE(6402), 1, + sym__call_signature, + STATE(6493), 1, sym_type_parameters, - [175788] = 8, + [175322] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8251), 1, - anon_sym_class, - ACTIONS(8253), 1, - anon_sym_abstract, - STATE(4768), 1, - aux_sym_export_statement_repeat1, - STATE(5222), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7437), 1, + anon_sym_extends, + ACTIONS(8790), 1, + anon_sym_PIPE, + STATE(5046), 1, sym_comment, - STATE(5700), 1, - sym_decorator, - [175813] = 6, + ACTIONS(8816), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [175345] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5223), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(5047), 1, sym_comment, - STATE(6390), 1, - sym__initializer, - ACTIONS(8700), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175834] = 6, + STATE(6371), 1, + sym__call_signature, + STATE(6493), 1, + sym_type_parameters, + [175370] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5224), 1, + STATE(5048), 1, sym_comment, - STATE(6339), 1, + STATE(6179), 1, sym__initializer, - ACTIONS(8732), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175855] = 7, + [175391] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7438), 1, - anon_sym_extends, - ACTIONS(8698), 1, - anon_sym_PIPE, - STATE(5225), 1, + STATE(5049), 1, sym_comment, - ACTIONS(8880), 2, + ACTIONS(3522), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [175878] = 6, + anon_sym_PIPE_RBRACE, + [175408] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5226), 1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, + sym_formal_parameters, + STATE(4761), 1, + sym__call_signature, + STATE(5050), 1, sym_comment, - STATE(6465), 1, - sym__initializer, - ACTIONS(8754), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175899] = 4, + STATE(6732), 1, + sym_type_parameters, + [175433] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5227), 1, + STATE(5051), 1, sym_comment, - ACTIONS(6537), 5, - anon_sym_EQ, + ACTIONS(3580), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [175916] = 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [175450] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5228), 1, + STATE(5052), 1, sym_comment, - ACTIONS(3492), 5, + ACTIONS(8818), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [175933] = 6, + [175467] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5229), 1, + STATE(5053), 1, sym_comment, - STATE(6338), 1, + STATE(6313), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8820), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175954] = 4, + [175488] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5230), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5054), 1, sym_comment, - ACTIONS(3494), 5, + STATE(6202), 1, + sym__initializer, + ACTIONS(8820), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175971] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4226), 1, - anon_sym_COLON, - STATE(5231), 1, - sym_comment, - STATE(7084), 1, - sym_type_annotation, - ACTIONS(4255), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACK, - [175992] = 4, + [175509] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5232), 1, + STATE(5055), 1, sym_comment, - ACTIONS(8036), 5, + ACTIONS(8822), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [176009] = 6, + [175526] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8289), 1, - anon_sym_COLON, - ACTIONS(8882), 1, - anon_sym_EQ_GT, - STATE(5233), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5056), 1, sym_comment, - STATE(6942), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [176030] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8885), 1, - anon_sym_LBRACE, - ACTIONS(8887), 1, - anon_sym_SEMI, - ACTIONS(8889), 1, + STATE(6316), 1, + sym__initializer, + ACTIONS(8765), 3, sym__automatic_semicolon, - ACTIONS(8891), 1, - sym__function_signature_automatic_semicolon, - STATE(1050), 1, - sym_statement_block, - STATE(5234), 1, - sym_comment, - [176055] = 8, + anon_sym_COMMA, + anon_sym_SEMI, + [175547] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - STATE(4266), 1, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, sym_formal_parameters, - STATE(5235), 1, + STATE(5057), 1, sym_comment, - STATE(5484), 1, + STATE(5301), 1, sym__call_signature, - STATE(6530), 1, + STATE(6732), 1, sym_type_parameters, - [176080] = 6, + [175572] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(5058), 1, + sym_comment, + ACTIONS(5740), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [175589] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5236), 1, + STATE(5059), 1, sym_comment, - STATE(6337), 1, + STATE(6174), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176101] = 8, + [175610] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4790), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, sym_formal_parameters, - STATE(5237), 1, + STATE(5060), 1, sym_comment, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - STATE(6885), 1, + STATE(6679), 1, sym__call_signature, - [176126] = 6, + [175635] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5238), 1, + STATE(5061), 1, sym_comment, - STATE(6400), 1, - sym__initializer, - ACTIONS(8726), 3, - sym__automatic_semicolon, + ACTIONS(6352), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [176147] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [175652] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5239), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(5062), 1, sym_comment, - ACTIONS(8893), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176164] = 6, + STATE(6396), 1, + sym__call_signature, + STATE(6493), 1, + sym_type_parameters, + [175677] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8289), 1, - anon_sym_COLON, - ACTIONS(8895), 1, - anon_sym_EQ_GT, - STATE(5240), 1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, + sym_formal_parameters, + STATE(5063), 1, sym_comment, - STATE(6534), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [176185] = 4, + STATE(5274), 1, + sym__call_signature, + STATE(6732), 1, + sym_type_parameters, + [175702] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(5241), 1, + STATE(5064), 1, sym_comment, - ACTIONS(7980), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176202] = 6, + ACTIONS(5541), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [175719] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2083), 1, - anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5084), 1, - anon_sym_LBRACE, - STATE(5242), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7437), 1, + anon_sym_extends, + ACTIONS(8790), 1, + anon_sym_PIPE, + STATE(5065), 1, sym_comment, - ACTIONS(5086), 3, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [176223] = 6, + ACTIONS(8824), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [175742] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2197), 1, - anon_sym_DOT, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5084), 1, - anon_sym_LBRACE, - STATE(5243), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5066), 1, sym_comment, - ACTIONS(5086), 3, + STATE(5883), 1, + sym__initializer, + ACTIONS(8709), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [176244] = 8, + anon_sym_SEMI, + [175763] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(8848), 1, - sym_identifier, - STATE(5244), 1, + STATE(5067), 1, sym_comment, - STATE(5681), 1, - sym_string, - STATE(7174), 1, - sym__module_export_name, - [176269] = 4, + ACTIONS(5545), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [175780] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5245), 1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, + sym_formal_parameters, + STATE(5068), 1, sym_comment, - ACTIONS(6191), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [176286] = 8, + STATE(5266), 1, + sym__call_signature, + STATE(6732), 1, + sym_type_parameters, + [175805] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8125), 1, - anon_sym_EQ, - ACTIONS(8898), 1, - anon_sym_COMMA, - ACTIONS(8900), 1, - anon_sym_RBRACE, - STATE(5246), 1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8595), 1, + anon_sym_class, + ACTIONS(8597), 1, + anon_sym_abstract, + STATE(4771), 1, + aux_sym_export_statement_repeat1, + STATE(5069), 1, sym_comment, - STATE(6480), 1, - aux_sym_enum_body_repeat1, - STATE(6979), 1, - sym__initializer, - [176311] = 4, + STATE(5410), 1, + sym_decorator, + [175830] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5247), 1, + STATE(5070), 1, sym_comment, - ACTIONS(8902), 5, + ACTIONS(3396), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [176328] = 4, + [175847] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5248), 1, + STATE(5071), 1, sym_comment, - ACTIONS(3388), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176345] = 8, + ACTIONS(5807), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [175864] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5072), 1, + sym_comment, + ACTIONS(5904), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [175881] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4839), 1, + ACTIONS(8049), 1, anon_sym_LBRACE, - ACTIONS(8904), 1, - anon_sym_SEMI, - ACTIONS(8906), 1, - sym__automatic_semicolon, - ACTIONS(8908), 1, - sym__function_signature_automatic_semicolon, - STATE(3108), 1, - sym_statement_block, - STATE(5249), 1, + ACTIONS(8826), 1, + anon_sym_DOT, + STATE(5073), 1, sym_comment, - [176370] = 4, + STATE(6339), 1, + sym_statement_block, + ACTIONS(2061), 2, + anon_sym_else, + anon_sym_while, + [175904] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5250), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + ACTIONS(8828), 1, + anon_sym_DOT, + STATE(5074), 1, sym_comment, - ACTIONS(3390), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176387] = 4, + STATE(6339), 1, + sym_statement_block, + ACTIONS(2061), 2, + anon_sym_else, + anon_sym_while, + [175927] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(5075), 1, + sym_comment, + ACTIONS(8830), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [175944] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5251), 1, + STATE(5076), 1, sym_comment, - ACTIONS(8910), 5, + ACTIONS(3566), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [176404] = 6, + [175961] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5252), 1, + STATE(5077), 1, sym_comment, - STATE(6079), 1, + STATE(6031), 1, sym__initializer, - ACTIONS(8762), 3, + ACTIONS(8765), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176425] = 4, + [175982] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5253), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5078), 1, sym_comment, - ACTIONS(8006), 5, + STATE(5994), 1, + sym__initializer, + ACTIONS(8765), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176442] = 8, + [176003] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5254), 1, + STATE(5079), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6906), 1, - sym__call_signature, - [176467] = 4, + ACTIONS(5552), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [176020] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5255), 1, + STATE(5080), 1, sym_comment, - ACTIONS(2289), 5, - sym__automatic_semicolon, + ACTIONS(6330), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176484] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [176037] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5256), 1, + STATE(5081), 1, sym_comment, - ACTIONS(3438), 5, - sym__automatic_semicolon, + ACTIONS(6330), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176501] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [176054] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5257), 1, + STATE(5082), 1, sym_comment, - ACTIONS(7980), 5, - sym__automatic_semicolon, + ACTIONS(6330), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176518] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [176071] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8740), 1, - sym__template_chars, - ACTIONS(8912), 1, - anon_sym_BQUOTE, - STATE(5081), 1, - aux_sym_template_literal_type_repeat1, - STATE(5258), 1, - sym_comment, - STATE(6239), 1, - sym_template_type, - [176543] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8826), 1, - anon_sym_LBRACE, - ACTIONS(8852), 1, - anon_sym_SEMI, - ACTIONS(8854), 1, - sym__automatic_semicolon, - ACTIONS(8856), 1, - sym__function_signature_automatic_semicolon, - STATE(1141), 1, - sym_statement_block, - STATE(5259), 1, + STATE(5083), 1, sym_comment, - [176568] = 4, + ACTIONS(5747), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [176088] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5260), 1, + STATE(5084), 1, sym_comment, - ACTIONS(2275), 5, + ACTIONS(3394), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [176585] = 8, + [176105] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - STATE(4200), 1, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, sym_formal_parameters, - STATE(5103), 1, - sym__call_signature, - STATE(5261), 1, + STATE(5085), 1, sym_comment, - STATE(6630), 1, + STATE(5261), 1, + sym__call_signature, + STATE(6732), 1, sym_type_parameters, - [176610] = 4, + [176130] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5262), 1, + STATE(5086), 1, sym_comment, - ACTIONS(3496), 5, + ACTIONS(3394), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [176627] = 8, + [176147] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - STATE(4266), 1, - sym_formal_parameters, - STATE(5263), 1, + STATE(5087), 1, sym_comment, - STATE(5481), 1, - sym__call_signature, - STATE(6530), 1, - sym_type_parameters, - [176652] = 4, + ACTIONS(3392), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176164] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5264), 1, + STATE(5088), 1, sym_comment, - ACTIONS(8006), 5, + ACTIONS(2387), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [176669] = 6, + [176181] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5265), 1, + STATE(5089), 1, sym_comment, - STATE(6015), 1, + STATE(5887), 1, sym__initializer, - ACTIONS(8762), 3, + ACTIONS(8709), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176690] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1894), 1, - anon_sym_DQUOTE, - ACTIONS(1896), 1, - anon_sym_SQUOTE, - ACTIONS(8848), 1, - sym_identifier, - STATE(5266), 1, - sym_comment, - STATE(5681), 1, - sym_string, - STATE(6825), 1, - sym__module_export_name, - [176715] = 7, + [176202] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7438), 1, - anon_sym_extends, - ACTIONS(8698), 1, - anon_sym_PIPE, - STATE(5267), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5090), 1, sym_comment, - ACTIONS(8914), 2, + STATE(6307), 1, + sym__initializer, + ACTIONS(8832), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [176738] = 6, + [176223] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5268), 1, + STATE(5091), 1, sym_comment, - STATE(6328), 1, + STATE(6176), 1, sym__initializer, - ACTIONS(8732), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176759] = 7, + [176244] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7438), 1, - anon_sym_extends, - ACTIONS(8698), 1, - anon_sym_PIPE, - STATE(5269), 1, + STATE(5092), 1, sym_comment, - ACTIONS(8916), 2, + ACTIONS(2325), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [176782] = 8, + anon_sym_PIPE_RBRACE, + [176261] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4790), 1, + STATE(4255), 1, sym_formal_parameters, - STATE(5270), 1, + STATE(5093), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6932), 1, + STATE(5203), 1, sym__call_signature, - [176807] = 6, + STATE(6732), 1, + sym_type_parameters, + [176286] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5271), 1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, + sym_formal_parameters, + STATE(4981), 1, + sym__call_signature, + STATE(5094), 1, sym_comment, - STATE(6223), 1, - sym__initializer, - ACTIONS(8754), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [176828] = 8, + STATE(6732), 1, + sym_type_parameters, + [176311] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8885), 1, - anon_sym_LBRACE, - ACTIONS(8918), 1, - anon_sym_SEMI, - ACTIONS(8920), 1, - sym__automatic_semicolon, - ACTIONS(8922), 1, - sym__function_signature_automatic_semicolon, - STATE(1059), 1, - sym_statement_block, - STATE(5272), 1, + STATE(5095), 1, sym_comment, - [176853] = 8, + ACTIONS(8834), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176328] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5273), 1, + STATE(5096), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6951), 1, - sym__call_signature, - [176878] = 8, + ACTIONS(8836), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [176345] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4790), 1, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(4055), 1, sym_formal_parameters, - STATE(5274), 1, + STATE(5097), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6952), 1, + STATE(5962), 1, sym__call_signature, - [176903] = 8, + STATE(6769), 1, + sym_type_parameters, + [176370] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8924), 1, - anon_sym_class, - ACTIONS(8926), 1, - anon_sym_abstract, - STATE(4768), 1, - aux_sym_export_statement_repeat1, - STATE(5275), 1, + STATE(5098), 1, sym_comment, - STATE(5700), 1, - sym_decorator, - [176928] = 4, + ACTIONS(2275), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [176387] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5276), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7437), 1, + anon_sym_extends, + ACTIONS(8790), 1, + anon_sym_PIPE, + STATE(5099), 1, sym_comment, - ACTIONS(8928), 5, + ACTIONS(8838), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176945] = 6, + [176410] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5277), 1, + STATE(5100), 1, sym_comment, - STATE(6444), 1, + STATE(6190), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176966] = 8, + [176431] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(8069), 1, anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5278), 1, - sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6821), 1, - sym__call_signature, - [176991] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - STATE(5279), 1, + ACTIONS(8840), 1, + anon_sym_LBRACE, + STATE(5101), 1, sym_comment, - ACTIONS(8930), 2, + STATE(6159), 1, + sym_type_arguments, + ACTIONS(8842), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [177014] = 8, + anon_sym_LBRACE_PIPE, + [176454] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8812), 1, - anon_sym_SEMI, - ACTIONS(8814), 1, - sym__automatic_semicolon, - ACTIONS(8816), 1, - sym__function_signature_automatic_semicolon, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8699), 1, + anon_sym_abstract, ACTIONS(8844), 1, - anon_sym_LBRACE, - STATE(1542), 1, - sym_statement_block, - STATE(5280), 1, - sym_comment, - [177039] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5281), 1, + anon_sym_class, + STATE(4771), 1, + aux_sym_export_statement_repeat1, + STATE(5102), 1, sym_comment, - ACTIONS(5757), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [177056] = 6, + STATE(5410), 1, + sym_decorator, + [176479] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5282), 1, + STATE(5103), 1, sym_comment, - STATE(6323), 1, + STATE(5932), 1, sym__initializer, - ACTIONS(8704), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177077] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(5283), 1, - sym_comment, - ACTIONS(3504), 5, + ACTIONS(8846), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177094] = 6, + [176500] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5284), 1, + STATE(5104), 1, sym_comment, - STATE(6322), 1, + STATE(5957), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8705), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177115] = 6, + [176521] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5285), 1, + STATE(5105), 1, sym_comment, - STATE(5928), 1, - sym__initializer, - ACTIONS(8726), 3, + ACTIONS(3536), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [177136] = 8, + anon_sym_PIPE_RBRACE, + [176538] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - STATE(4266), 1, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, sym_formal_parameters, - STATE(5286), 1, + STATE(5106), 1, sym_comment, - STATE(5515), 1, + STATE(5254), 1, sym__call_signature, - STATE(6530), 1, + STATE(6732), 1, sym_type_parameters, - [177161] = 8, + [176563] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4790), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, sym_formal_parameters, - STATE(5287), 1, + STATE(5107), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(7013), 1, + STATE(6424), 1, sym__call_signature, - [177186] = 6, + STATE(6493), 1, + sym_type_parameters, + [176588] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5288), 1, + ACTIONS(8723), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8725), 1, + sym__template_chars, + ACTIONS(8848), 1, + anon_sym_BQUOTE, + STATE(5108), 1, sym_comment, - STATE(6407), 1, - sym__initializer, - ACTIONS(8726), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177207] = 4, + STATE(5394), 1, + aux_sym_template_literal_type_repeat1, + STATE(6164), 1, + sym_template_type, + [176613] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5289), 1, + STATE(5109), 1, sym_comment, - ACTIONS(8932), 5, + ACTIONS(3388), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177224] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8024), 1, - anon_sym_LBRACE, - ACTIONS(8028), 1, - anon_sym_extends, - ACTIONS(8030), 1, - anon_sym_LBRACE_PIPE, - STATE(1205), 1, - sym_object_type, - STATE(5290), 1, - sym_comment, - STATE(6440), 1, - sym_extends_type_clause, - [177249] = 7, + [176630] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7438), 1, - anon_sym_extends, - ACTIONS(8698), 1, - anon_sym_PIPE, - STATE(5291), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5110), 1, sym_comment, - ACTIONS(8934), 2, + STATE(6172), 1, + sym__initializer, + ACTIONS(8747), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [177272] = 8, + [176651] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4839), 1, + ACTIONS(8755), 1, anon_sym_LBRACE, - ACTIONS(8936), 1, + ACTIONS(8850), 1, anon_sym_SEMI, - ACTIONS(8938), 1, + ACTIONS(8852), 1, sym__automatic_semicolon, - ACTIONS(8940), 1, + ACTIONS(8854), 1, sym__function_signature_automatic_semicolon, - STATE(3216), 1, + STATE(451), 1, sym_statement_block, - STATE(5292), 1, - sym_comment, - [177297] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8740), 1, - sym__template_chars, - ACTIONS(8942), 1, - anon_sym_BQUOTE, - STATE(5258), 1, - aux_sym_template_literal_type_repeat1, - STATE(5293), 1, - sym_comment, - STATE(6239), 1, - sym_template_type, - [177322] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5294), 1, + STATE(5111), 1, sym_comment, - STATE(5927), 1, - sym__initializer, - ACTIONS(8726), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177343] = 6, + [176676] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5295), 1, + STATE(5112), 1, sym_comment, - STATE(6222), 1, + STATE(5941), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8856), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177364] = 4, + [176697] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5296), 1, + STATE(5113), 1, sym_comment, - ACTIONS(8368), 5, + ACTIONS(8858), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177381] = 8, + [176714] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4790), 1, + STATE(4255), 1, sym_formal_parameters, - STATE(5297), 1, + STATE(5114), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(7022), 1, + STATE(5247), 1, sym__call_signature, - [177406] = 6, + STATE(6732), 1, + sym_type_parameters, + [176739] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5298), 1, + STATE(5115), 1, sym_comment, - STATE(6142), 1, - sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8860), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [177427] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5299), 1, - sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(7043), 1, - sym__call_signature, - [177452] = 6, + anon_sym_PIPE_RBRACE, + [176756] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5300), 1, + STATE(5116), 1, sym_comment, - STATE(6269), 1, - sym__initializer, - ACTIONS(8754), 3, + ACTIONS(8097), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [177473] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5301), 1, - sym_comment, - STATE(6562), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - [177498] = 6, + anon_sym_PIPE_RBRACE, + [176773] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5302), 1, + STATE(5117), 1, sym_comment, - STATE(6320), 1, - sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8862), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [177519] = 6, + anon_sym_PIPE_RBRACE, + [176790] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5303), 1, + STATE(5118), 1, sym_comment, - STATE(6207), 1, + STATE(6220), 1, sym__initializer, - ACTIONS(8762), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177540] = 8, + [176811] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4790), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, sym_formal_parameters, - STATE(5304), 1, + STATE(5119), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(7046), 1, + STATE(6444), 1, sym__call_signature, - [177565] = 4, + STATE(6493), 1, + sym_type_parameters, + [176836] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5305), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5120), 1, sym_comment, - ACTIONS(8012), 5, + STATE(5949), 1, + sym__initializer, + ACTIONS(8705), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177582] = 4, + [176857] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5306), 1, + STATE(5121), 1, sym_comment, - ACTIONS(3394), 5, + ACTIONS(8099), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177599] = 8, + [176874] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5307), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + STATE(5122), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6752), 1, - sym__call_signature, - [177624] = 6, + ACTIONS(8864), 2, + anon_sym_COMMA, + anon_sym_GT, + [176897] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5308), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(5123), 1, sym_comment, - STATE(6289), 1, - sym__initializer, - ACTIONS(8704), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177645] = 8, + STATE(6451), 1, + sym__call_signature, + STATE(6493), 1, + sym_type_parameters, + [176922] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4790), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, sym_formal_parameters, - STATE(5309), 1, + STATE(5124), 1, sym_comment, - STATE(6499), 1, + STATE(6463), 1, sym__call_signature, - STATE(6683), 1, + STATE(6493), 1, sym_type_parameters, - [177670] = 4, + [176947] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5310), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5125), 1, sym_comment, - ACTIONS(3398), 5, + STATE(5657), 1, + sym__initializer, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177687] = 4, + [176968] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5126), 1, + sym_comment, + STATE(6241), 1, + sym__initializer, + ACTIONS(8747), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [176989] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(5311), 1, + STATE(5127), 1, sym_comment, - ACTIONS(5651), 5, + ACTIONS(5693), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [177704] = 6, + [177006] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(8784), 1, + sym_identifier, + STATE(5128), 1, + sym_comment, + STATE(5551), 1, + sym_string, + STATE(6081), 1, + sym__module_export_name, + [177031] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5312), 1, + STATE(5129), 1, sym_comment, - STATE(6199), 1, + STATE(6170), 1, sym__initializer, - ACTIONS(8762), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177725] = 8, + [177052] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5313), 1, + STATE(5130), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6795), 1, - sym__call_signature, - [177750] = 6, + ACTIONS(8868), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [177069] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5314), 1, - sym_comment, - STATE(6412), 1, - sym__initializer, - ACTIONS(8726), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177771] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5315), 1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8365), 1, + anon_sym_class, + ACTIONS(8367), 1, + anon_sym_abstract, + STATE(4771), 1, + aux_sym_export_statement_repeat1, + STATE(5131), 1, sym_comment, - ACTIONS(5655), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [177788] = 8, + STATE(5410), 1, + sym_decorator, + [177094] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - STATE(4266), 1, - sym_formal_parameters, - STATE(5234), 1, - sym__call_signature, - STATE(5316), 1, + STATE(5132), 1, sym_comment, - STATE(6530), 1, - sym_type_parameters, - [177813] = 6, + ACTIONS(3452), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [177111] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5317), 1, + STATE(5133), 1, sym_comment, - STATE(6059), 1, + STATE(6169), 1, sym__initializer, - ACTIONS(8944), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177834] = 4, + [177132] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5318), 1, + STATE(5134), 1, sym_comment, - ACTIONS(8946), 5, + ACTIONS(3444), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [177851] = 6, + [177149] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8289), 1, - anon_sym_COLON, - ACTIONS(8948), 1, - anon_sym_EQ_GT, - STATE(5319), 1, + STATE(5135), 1, sym_comment, - STATE(6942), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [177872] = 6, + ACTIONS(8870), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [177166] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5320), 1, + STATE(5136), 1, sym_comment, - STATE(5924), 1, - sym__initializer, - ACTIONS(8700), 3, + ACTIONS(8099), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [177893] = 8, + anon_sym_PIPE_RBRACE, + [177183] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4790), 1, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(4055), 1, sym_formal_parameters, - STATE(5321), 1, + STATE(5137), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(7109), 1, + STATE(5138), 1, sym__call_signature, - [177918] = 6, + STATE(6769), 1, + sym_type_parameters, + [177208] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5322), 1, + STATE(5138), 1, sym_comment, - STATE(6363), 1, - sym__initializer, - ACTIONS(8754), 3, + ACTIONS(8119), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [177939] = 6, + anon_sym_PIPE_RBRACE, + [177225] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5323), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(5139), 1, sym_comment, - STATE(6228), 1, - sym__initializer, - ACTIONS(8704), 3, + STATE(6493), 1, + sym_type_parameters, + STATE(6717), 1, + sym__call_signature, + [177250] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5140), 1, + sym_comment, + ACTIONS(8097), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [177960] = 8, + anon_sym_PIPE_RBRACE, + [177267] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8951), 1, + ACTIONS(8872), 1, sym_identifier, - ACTIONS(8953), 1, + ACTIONS(8874), 1, anon_sym_GT, - ACTIONS(8955), 1, + ACTIONS(8876), 1, sym_jsx_identifier, - STATE(5324), 1, + STATE(5141), 1, sym_comment, - STATE(6809), 1, + STATE(6428), 1, sym_nested_identifier, - STATE(7364), 1, + STATE(7393), 1, sym_jsx_namespace_name, - [177985] = 8, + [177292] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(4790), 1, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(4055), 1, sym_formal_parameters, - STATE(5325), 1, + STATE(5142), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6767), 1, + STATE(5243), 1, sym__call_signature, - [178010] = 7, + STATE(6769), 1, + sym_type_parameters, + [177317] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7438), 1, - anon_sym_extends, - ACTIONS(8698), 1, - anon_sym_PIPE, - STATE(5326), 1, + STATE(5143), 1, sym_comment, - ACTIONS(8957), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [178033] = 8, + ACTIONS(2239), 5, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_GT, + anon_sym_DOT, + [177334] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8279), 1, - anon_sym_abstract, - ACTIONS(8959), 1, - anon_sym_class, - STATE(4768), 1, - aux_sym_export_statement_repeat1, - STATE(5327), 1, + STATE(5144), 1, sym_comment, - STATE(5700), 1, - sym_decorator, - [178058] = 6, + ACTIONS(2235), 5, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_GT, + anon_sym_DOT, + [177351] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5328), 1, + STATE(5145), 1, sym_comment, - STATE(6318), 1, + STATE(5821), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8878), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178079] = 6, + [177372] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5329), 1, + STATE(5146), 1, sym_comment, - STATE(6188), 1, - sym__initializer, - ACTIONS(8754), 3, + ACTIONS(3418), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [178100] = 6, + anon_sym_PIPE_RBRACE, + [177389] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5330), 1, + STATE(5147), 1, sym_comment, - STATE(6229), 1, - sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8121), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [178121] = 6, + anon_sym_PIPE_RBRACE, + [177406] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, + sym_formal_parameters, + STATE(4657), 1, + sym__call_signature, + STATE(5148), 1, + sym_comment, + STATE(6732), 1, + sym_type_parameters, + [177431] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5331), 1, + STATE(5149), 1, sym_comment, - STATE(6421), 1, + STATE(5823), 1, sym__initializer, - ACTIONS(8726), 3, + ACTIONS(8878), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178142] = 4, + [177452] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5332), 1, + STATE(5150), 1, sym_comment, - ACTIONS(8961), 5, + ACTIONS(8880), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178159] = 6, + [177469] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(8882), 1, + anon_sym_as, + ACTIONS(8884), 1, + anon_sym_RBRACK, + STATE(5151), 1, + sym_comment, + [177494] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5333), 1, + STATE(5152), 1, sym_comment, - STATE(6231), 1, + STATE(5812), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8886), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178180] = 8, + [177515] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5334), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5153), 1, sym_comment, - STATE(6544), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - [178205] = 4, + STATE(5948), 1, + sym__initializer, + ACTIONS(8747), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177536] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5335), 1, - sym_comment, - ACTIONS(6339), 5, + ACTIONS(8181), 1, anon_sym_EQ, + ACTIONS(8888), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [178222] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5336), 1, + ACTIONS(8890), 1, + anon_sym_RBRACE, + STATE(5154), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(7108), 1, - sym__call_signature, - [178247] = 6, + STATE(6101), 1, + aux_sym_enum_body_repeat1, + STATE(6795), 1, + sym__initializer, + [177561] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5337), 1, + STATE(5155), 1, sym_comment, - STATE(6244), 1, + STATE(5656), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178268] = 8, + [177582] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5156), 1, + sym_comment, + ACTIONS(6430), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [177599] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8963), 1, + ACTIONS(8892), 1, sym_identifier, - ACTIONS(8965), 1, + ACTIONS(8894), 1, anon_sym_GT, - ACTIONS(8967), 1, + ACTIONS(8896), 1, sym_jsx_identifier, - STATE(5338), 1, + STATE(5157), 1, sym_comment, - STATE(6545), 1, + STATE(6967), 1, sym_nested_identifier, - STATE(7586), 1, + STATE(6998), 1, sym_jsx_namespace_name, - [178293] = 8, + [177624] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5339), 1, + STATE(5158), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(7159), 1, - sym__call_signature, - [178318] = 6, + ACTIONS(8655), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [177641] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5340), 1, + STATE(5159), 1, sym_comment, - STATE(6316), 1, - sym__initializer, - ACTIONS(8704), 3, + ACTIONS(3548), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [178339] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8682), 1, - anon_sym_abstract, - ACTIONS(8969), 1, - anon_sym_class, - STATE(4768), 1, - aux_sym_export_statement_repeat1, - STATE(5341), 1, - sym_comment, - STATE(5700), 1, - sym_decorator, - [178364] = 6, + anon_sym_PIPE_RBRACE, + [177658] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5342), 1, + STATE(5160), 1, sym_comment, - STATE(6451), 1, - sym__initializer, - ACTIONS(8704), 3, + ACTIONS(3564), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [178385] = 4, + anon_sym_PIPE_RBRACE, + [177675] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5343), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(5161), 1, sym_comment, - ACTIONS(8207), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178402] = 8, + STATE(6493), 1, + sym_type_parameters, + STATE(6837), 1, + sym__call_signature, + [177700] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - STATE(4200), 1, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, sym_formal_parameters, - STATE(5264), 1, + STATE(4804), 1, sym__call_signature, - STATE(5344), 1, + STATE(5162), 1, sym_comment, - STATE(6630), 1, + STATE(6732), 1, sym_type_parameters, - [178427] = 4, + [177725] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5345), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5163), 1, sym_comment, - ACTIONS(8139), 5, + STATE(5988), 1, + sym__initializer, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178444] = 5, + [177746] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5401), 1, - anon_sym_in, - STATE(5346), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5164), 1, sym_comment, - ACTIONS(6502), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [178463] = 8, + STATE(6225), 1, + sym__initializer, + ACTIONS(8747), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177767] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5347), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5165), 1, sym_comment, - STATE(6487), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - [178488] = 6, + STATE(5708), 1, + sym__initializer, + ACTIONS(8705), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177788] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5348), 1, + STATE(5166), 1, sym_comment, - STATE(6245), 1, + STATE(6138), 1, sym__initializer, - ACTIONS(8732), 3, + ACTIONS(8898), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178509] = 8, + [177809] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5349), 1, + ACTIONS(4218), 1, + anon_sym_COLON, + STATE(5167), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(7168), 1, - sym__call_signature, - [178534] = 4, + STATE(6658), 1, + sym_type_annotation, + ACTIONS(4287), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACK, + [177830] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5350), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5168), 1, sym_comment, - ACTIONS(8971), 5, + STATE(6129), 1, + sym__initializer, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178551] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(4200), 1, - sym_formal_parameters, - STATE(5351), 1, - sym_comment, - STATE(6032), 1, - sym__call_signature, - STATE(6630), 1, - sym_type_parameters, - [178576] = 4, + [177851] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5352), 1, + STATE(5169), 1, sym_comment, - ACTIONS(2283), 5, + ACTIONS(3544), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178593] = 4, + [177868] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5353), 1, + STATE(5170), 1, sym_comment, - ACTIONS(3518), 5, + ACTIONS(3568), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178610] = 6, + [177885] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5354), 1, + STATE(5171), 1, sym_comment, - STATE(6385), 1, - sym__initializer, - ACTIONS(8732), 3, + ACTIONS(2351), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [178631] = 8, + anon_sym_PIPE_RBRACE, + [177902] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(4200), 1, - sym_formal_parameters, - STATE(4619), 1, - sym__call_signature, - STATE(5355), 1, + ACTIONS(8361), 1, + anon_sym_COLON, + ACTIONS(8900), 1, + anon_sym_EQ_GT, + STATE(5172), 1, sym_comment, - STATE(6630), 1, - sym_type_parameters, - [178656] = 8, + STATE(6678), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [177923] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4514), 1, + ACTIONS(4518), 1, anon_sym_COLON, - ACTIONS(7214), 1, + ACTIONS(7219), 1, anon_sym_EQ, - ACTIONS(8794), 1, + ACTIONS(8741), 1, anon_sym_COMMA, - ACTIONS(8973), 1, + ACTIONS(8903), 1, anon_sym_RBRACE, - STATE(5356), 1, + STATE(5173), 1, sym_comment, - STATE(6171), 1, + STATE(5869), 1, aux_sym_object_pattern_repeat1, - [178681] = 6, + [177948] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5357), 1, + STATE(5174), 1, sym_comment, - STATE(6452), 1, + STATE(6265), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178702] = 4, + [177969] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5358), 1, + STATE(5175), 1, sym_comment, - ACTIONS(3518), 5, + ACTIONS(3574), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178719] = 8, + [177986] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(4200), 1, - sym_formal_parameters, - STATE(4528), 1, - sym__call_signature, - STATE(5359), 1, + ACTIONS(8723), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8725), 1, + sym__template_chars, + ACTIONS(8905), 1, + anon_sym_BQUOTE, + STATE(5176), 1, sym_comment, - STATE(6630), 1, - sym_type_parameters, - [178744] = 4, + STATE(5256), 1, + aux_sym_template_literal_type_repeat1, + STATE(6164), 1, + sym_template_type, + [178011] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5360), 1, + STATE(5177), 1, sym_comment, - ACTIONS(8207), 5, + ACTIONS(8119), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178761] = 4, + [178028] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5361), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5178), 1, sym_comment, - ACTIONS(3462), 5, + STATE(5851), 1, + sym__initializer, + ACTIONS(8886), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178778] = 4, + [178049] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5362), 1, + STATE(5179), 1, sym_comment, - ACTIONS(3438), 5, + ACTIONS(8907), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178795] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5363), 1, - sym_comment, - STATE(6494), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - [178820] = 6, + [178066] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5364), 1, + STATE(5180), 1, sym_comment, - STATE(6453), 1, + STATE(6275), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178841] = 6, + [178087] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5365), 1, - sym_comment, - STATE(6174), 1, - sym__initializer, - ACTIONS(8754), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(8909), 1, + anon_sym_LBRACE, + ACTIONS(8911), 1, anon_sym_SEMI, - [178862] = 8, + ACTIONS(8913), 1, + sym__automatic_semicolon, + ACTIONS(8915), 1, + sym__function_signature_automatic_semicolon, + STATE(344), 1, + sym_statement_block, + STATE(5181), 1, + sym_comment, + [178112] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5366), 1, + ACTIONS(8361), 1, + anon_sym_COLON, + ACTIONS(8917), 1, + anon_sym_EQ_GT, + STATE(5182), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(7156), 1, - sym__call_signature, - [178887] = 4, + STATE(6833), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [178133] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5367), 1, + STATE(5183), 1, sym_comment, - ACTIONS(6084), 5, - anon_sym_EQ, + ACTIONS(8121), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [178904] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178150] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5368), 1, + STATE(5184), 1, sym_comment, - STATE(6340), 1, - sym__initializer, - ACTIONS(8762), 3, + ACTIONS(8412), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [178925] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5369), 1, - sym_comment, - ACTIONS(5773), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [178942] = 4, + [178167] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5370), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5185), 1, sym_comment, - ACTIONS(8975), 5, + STATE(6134), 1, + sym__initializer, + ACTIONS(8920), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178959] = 6, + [178188] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5371), 1, + STATE(5186), 1, sym_comment, - STATE(6343), 1, - sym__initializer, - ACTIONS(8762), 3, + ACTIONS(8922), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [178980] = 6, + anon_sym_PIPE_RBRACE, + [178205] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8979), 1, - anon_sym_in, - ACTIONS(8981), 1, - anon_sym_of, - STATE(5372), 1, + STATE(5187), 1, sym_comment, - ACTIONS(8977), 3, + ACTIONS(8398), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [179001] = 6, + [178222] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8983), 1, - anon_sym_in, - ACTIONS(8985), 1, - anon_sym_of, - STATE(5373), 1, + STATE(5188), 1, sym_comment, - ACTIONS(8977), 3, + ACTIONS(8924), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179022] = 6, + anon_sym_PIPE_RBRACE, + [178239] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5374), 1, + STATE(5189), 1, sym_comment, - STATE(6120), 1, + STATE(5815), 1, sym__initializer, - ACTIONS(8754), 3, + ACTIONS(8705), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179043] = 8, + [178260] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8926), 1, - anon_sym_abstract, - ACTIONS(8987), 1, - anon_sym_class, - STATE(4768), 1, - aux_sym_export_statement_repeat1, - STATE(5375), 1, + STATE(5190), 1, sym_comment, - STATE(5700), 1, - sym_decorator, - [179068] = 8, + ACTIONS(8926), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178277] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(8784), 1, + sym_identifier, + STATE(5191), 1, + sym_comment, + STATE(5551), 1, + sym_string, + STATE(6885), 1, + sym__module_export_name, + [178302] = 8, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(4200), 1, - sym_formal_parameters, - STATE(4706), 1, - sym__call_signature, - STATE(5376), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1894), 1, + anon_sym_DQUOTE, + ACTIONS(1896), 1, + anon_sym_SQUOTE, + ACTIONS(8784), 1, + sym_identifier, + STATE(5192), 1, sym_comment, - STATE(6630), 1, - sym_type_parameters, - [179093] = 4, + STATE(5551), 1, + sym_string, + STATE(7090), 1, + sym__module_export_name, + [178327] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5377), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5193), 1, sym_comment, - ACTIONS(8139), 5, + STATE(6279), 1, + sym__initializer, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179110] = 6, + [178348] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5378), 1, + STATE(5194), 1, sym_comment, - STATE(6382), 1, - sym__initializer, - ACTIONS(8754), 3, + ACTIONS(8396), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [179131] = 8, + [178365] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1344), 1, + anon_sym_LBRACE, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7999), 1, + anon_sym_extends, + ACTIONS(8033), 1, + anon_sym_LBRACE_PIPE, + STATE(4993), 1, + sym_object_type, + STATE(5195), 1, + sym_comment, + STATE(6010), 1, + sym_extends_type_clause, + [178390] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8738), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8740), 1, + ACTIONS(8725), 1, sym__template_chars, - ACTIONS(8989), 1, + ACTIONS(8928), 1, anon_sym_BQUOTE, - STATE(5379), 1, + STATE(5196), 1, sym_comment, - STATE(5476), 1, + STATE(5293), 1, aux_sym_template_literal_type_repeat1, - STATE(6239), 1, + STATE(6164), 1, sym_template_type, - [179156] = 7, + [178415] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8215), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(8991), 1, - anon_sym_LBRACE, - STATE(5380), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(5197), 1, sym_comment, - STATE(6110), 1, - sym_type_arguments, - ACTIONS(8993), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [179179] = 4, + STATE(6493), 1, + sym_type_parameters, + STATE(6912), 1, + sym__call_signature, + [178440] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5381), 1, - sym_comment, - ACTIONS(8995), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(8786), 1, + anon_sym_LBRACE, + ACTIONS(8850), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179196] = 4, + ACTIONS(8852), 1, + sym__automatic_semicolon, + ACTIONS(8854), 1, + sym__function_signature_automatic_semicolon, + STATE(1386), 1, + sym_statement_block, + STATE(5198), 1, + sym_comment, + [178465] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5382), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(4055), 1, + sym_formal_parameters, + STATE(5199), 1, sym_comment, - ACTIONS(3520), 5, + STATE(6122), 1, + sym__call_signature, + STATE(6769), 1, + sym_type_parameters, + [178490] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(6380), 1, sym__automatic_semicolon, + STATE(5200), 1, + sym_comment, + ACTIONS(2287), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [179213] = 8, + [178509] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8740), 1, - sym__template_chars, - ACTIONS(8997), 1, - anon_sym_BQUOTE, - STATE(5085), 1, - aux_sym_template_literal_type_repeat1, - STATE(5383), 1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8597), 1, + anon_sym_abstract, + ACTIONS(8930), 1, + anon_sym_class, + STATE(4771), 1, + aux_sym_export_statement_repeat1, + STATE(5201), 1, sym_comment, - STATE(6239), 1, - sym_template_type, - [179238] = 4, + STATE(5410), 1, + sym_decorator, + [178534] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5384), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7437), 1, + anon_sym_extends, + ACTIONS(8790), 1, + anon_sym_PIPE, + STATE(5202), 1, sym_comment, - ACTIONS(8999), 5, + ACTIONS(8932), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179255] = 4, + [178557] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5385), 1, - sym_comment, - ACTIONS(8650), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4849), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(8934), 1, anon_sym_SEMI, - [179272] = 8, + ACTIONS(8936), 1, + sym__automatic_semicolon, + ACTIONS(8938), 1, + sym__function_signature_automatic_semicolon, + STATE(3063), 1, + sym_statement_block, + STATE(5203), 1, + sym_comment, + [178582] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4839), 1, - anon_sym_LBRACE, - ACTIONS(9001), 1, - anon_sym_SEMI, - ACTIONS(9003), 1, - sym__automatic_semicolon, - ACTIONS(9005), 1, - sym__function_signature_automatic_semicolon, - STATE(3135), 1, - sym_statement_block, - STATE(5386), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(5204), 1, sym_comment, - [179297] = 7, + STATE(6493), 1, + sym_type_parameters, + STATE(6862), 1, + sym__call_signature, + [178607] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7438), 1, - anon_sym_extends, - ACTIONS(8698), 1, - anon_sym_PIPE, - STATE(5387), 1, + STATE(5205), 1, sym_comment, - ACTIONS(9007), 2, + ACTIONS(3466), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179320] = 6, + anon_sym_PIPE_RBRACE, + [178624] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5388), 1, + STATE(5206), 1, sym_comment, - STATE(5914), 1, - sym__initializer, - ACTIONS(8700), 3, + ACTIONS(3460), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179341] = 4, + anon_sym_PIPE_RBRACE, + [178641] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(5389), 1, + ACTIONS(8940), 1, + sym_identifier, + ACTIONS(8942), 1, + anon_sym_GT, + ACTIONS(8944), 1, + sym_jsx_identifier, + STATE(5207), 1, + sym_comment, + STATE(6842), 1, + sym_nested_identifier, + STATE(7077), 1, + sym_jsx_namespace_name, + [178666] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(5208), 1, sym_comment, - ACTIONS(5511), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [179358] = 4, + STATE(6493), 1, + sym_type_parameters, + STATE(6939), 1, + sym__call_signature, + [178691] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5390), 1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, + sym_formal_parameters, + STATE(4614), 1, + sym__call_signature, + STATE(5209), 1, sym_comment, - ACTIONS(9009), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179375] = 6, + STATE(6732), 1, + sym_type_parameters, + [178716] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5391), 1, + STATE(5210), 1, sym_comment, - STATE(6290), 1, + STATE(5926), 1, sym__initializer, - ACTIONS(8732), 3, + ACTIONS(8705), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179396] = 6, + [178737] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5392), 1, + STATE(5211), 1, sym_comment, - STATE(5859), 1, + STATE(6124), 1, sym__initializer, - ACTIONS(8700), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179417] = 4, + [178758] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5393), 1, + ACTIONS(6266), 1, + sym__automatic_semicolon, + STATE(5212), 1, sym_comment, - ACTIONS(6485), 5, - anon_sym_EQ, + ACTIONS(2357), 4, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [179434] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5394), 1, - sym_comment, - ACTIONS(5507), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [179451] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(4200), 1, - sym_formal_parameters, - STATE(4538), 1, - sym__call_signature, - STATE(5395), 1, - sym_comment, - STATE(6630), 1, - sym_type_parameters, - [179476] = 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178777] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5396), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5213), 1, sym_comment, - ACTIONS(3522), 5, + STATE(5888), 1, + sym__initializer, + ACTIONS(8878), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179493] = 6, + [178798] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5397), 1, + STATE(5214), 1, sym_comment, - STATE(6250), 1, - sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8946), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179514] = 4, + anon_sym_PIPE_RBRACE, + [178815] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5398), 1, - sym_comment, - ACTIONS(3524), 5, + ACTIONS(6226), 1, sym__automatic_semicolon, + STATE(5215), 1, + sym_comment, + ACTIONS(2365), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [179531] = 4, + [178834] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5399), 1, + STATE(5216), 1, sym_comment, - ACTIONS(3526), 5, + ACTIONS(8948), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [179548] = 4, + [178851] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5400), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(5217), 1, sym_comment, - ACTIONS(5914), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [179565] = 4, + STATE(6493), 1, + sym_type_parameters, + STATE(6974), 1, + sym__call_signature, + [178876] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5401), 1, - sym_comment, - ACTIONS(5926), 5, + ACTIONS(7163), 1, anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [179582] = 8, + STATE(5218), 1, + sym_comment, + STATE(6123), 1, + sym__initializer, + ACTIONS(8749), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178897] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(209), 1, anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8028), 1, + ACTIONS(7999), 1, anon_sym_extends, - ACTIONS(8047), 1, + ACTIONS(8001), 1, anon_sym_LBRACE_PIPE, - STATE(5402), 1, + STATE(5219), 1, sym_comment, - STATE(6150), 1, + STATE(6322), 1, sym_extends_type_clause, - STATE(7026), 1, + STATE(6361), 1, sym_object_type, - [179607] = 8, + [178922] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8596), 1, - anon_sym_abstract, - ACTIONS(9011), 1, - anon_sym_class, - STATE(4768), 1, - aux_sym_export_statement_repeat1, - STATE(5403), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5220), 1, sym_comment, - STATE(5700), 1, - sym_decorator, - [179632] = 6, + STATE(5889), 1, + sym__initializer, + ACTIONS(8878), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178943] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(6264), 1, + sym__automatic_semicolon, + STATE(5221), 1, + sym_comment, + ACTIONS(2329), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178962] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5404), 1, + STATE(5222), 1, sym_comment, STATE(6251), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179653] = 7, + [178983] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7438), 1, - anon_sym_extends, - ACTIONS(8698), 1, - anon_sym_PIPE, - STATE(5405), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5223), 1, sym_comment, - ACTIONS(9013), 2, + STATE(6252), 1, + sym__initializer, + ACTIONS(8747), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [179676] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [179004] = 8, ACTIONS(5), 1, sym_html_comment, - STATE(5406), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4683), 1, + sym_formal_parameters, + STATE(5224), 1, sym_comment, - ACTIONS(9015), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [179693] = 4, + STATE(6493), 1, + sym_type_parameters, + STATE(6767), 1, + sym__call_signature, + [179029] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5407), 1, - sym_comment, - ACTIONS(6387), 5, + ACTIONS(7163), 1, anon_sym_EQ, + STATE(5225), 1, + sym_comment, + STATE(5917), 1, + sym__initializer, + ACTIONS(8950), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [179710] = 4, + anon_sym_SEMI, + [179050] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5408), 1, + ACTIONS(7965), 1, + anon_sym_LBRACE, + ACTIONS(8952), 1, + anon_sym_SEMI, + ACTIONS(8954), 1, + sym__automatic_semicolon, + ACTIONS(8956), 1, + sym__function_signature_automatic_semicolon, + STATE(5221), 1, + sym_statement_block, + STATE(5226), 1, sym_comment, - ACTIONS(6387), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [179727] = 4, + [179075] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5409), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7437), 1, + anon_sym_extends, + ACTIONS(8790), 1, + anon_sym_PIPE, + STATE(5227), 1, sym_comment, - ACTIONS(3528), 5, + ACTIONS(8958), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179744] = 4, + [179098] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5410), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5228), 1, sym_comment, - ACTIONS(3530), 5, + STATE(5891), 1, + sym__initializer, + ACTIONS(8886), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179761] = 4, + [179119] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5411), 1, - sym_comment, - ACTIONS(6387), 5, + ACTIONS(7163), 1, anon_sym_EQ, + STATE(5229), 1, + sym_comment, + STATE(6104), 1, + sym__initializer, + ACTIONS(8886), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [179778] = 6, + anon_sym_SEMI, + [179140] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5412), 1, + STATE(5230), 1, sym_comment, - STATE(6252), 1, + STATE(5910), 1, sym__initializer, - ACTIONS(8732), 3, + ACTIONS(8705), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179799] = 8, + [179161] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - STATE(4266), 1, - sym_formal_parameters, - STATE(4789), 1, - sym__call_signature, - STATE(5413), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5231), 1, sym_comment, - STATE(6530), 1, - sym_type_parameters, - [179824] = 8, + STATE(6103), 1, + sym__initializer, + ACTIONS(8878), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179182] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, ACTIONS(2698), 1, anon_sym_AT, - ACTIONS(8253), 1, + ACTIONS(8675), 1, anon_sym_abstract, - ACTIONS(9017), 1, + ACTIONS(8960), 1, anon_sym_class, - STATE(4768), 1, + STATE(4771), 1, aux_sym_export_statement_repeat1, - STATE(5414), 1, + STATE(5232), 1, sym_comment, - STATE(5700), 1, + STATE(5410), 1, sym_decorator, - [179849] = 6, + [179207] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8289), 1, - anon_sym_COLON, - ACTIONS(9019), 1, - anon_sym_EQ_GT, - STATE(5415), 1, - sym_comment, - STATE(6534), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [179870] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5416), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7437), 1, + anon_sym_extends, + ACTIONS(8790), 1, + anon_sym_PIPE, + STATE(5233), 1, sym_comment, - ACTIONS(5336), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [179887] = 6, + ACTIONS(8962), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [179230] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5417), 1, + STATE(5234), 1, sym_comment, - STATE(5988), 1, + STATE(5933), 1, sym__initializer, - ACTIONS(9022), 3, + ACTIONS(8964), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179908] = 6, + [179251] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5418), 1, + STATE(5235), 1, sym_comment, - STATE(6256), 1, + STATE(5904), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8886), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179929] = 6, + [179272] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5419), 1, + STATE(5236), 1, sym_comment, - STATE(5884), 1, + STATE(6086), 1, sym__initializer, - ACTIONS(9024), 3, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179950] = 6, + [179293] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5420), 1, + STATE(5237), 1, sym_comment, - STATE(6257), 1, + STATE(5954), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179971] = 6, + [179314] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5421), 1, + STATE(5238), 1, sym_comment, - STATE(5833), 1, + STATE(5861), 1, sym__initializer, - ACTIONS(8726), 3, + ACTIONS(8782), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179992] = 6, + [179335] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5422), 1, + ACTIONS(8968), 1, + anon_sym_in, + ACTIONS(8970), 1, + anon_sym_of, + STATE(5239), 1, sym_comment, - STATE(6259), 1, - sym__initializer, - ACTIONS(8732), 3, + ACTIONS(8966), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180013] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5423), 1, - sym_comment, - ACTIONS(5336), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [180030] = 6, + [179356] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5424), 1, + STATE(5240), 1, sym_comment, - STATE(5828), 1, + STATE(5771), 1, sym__initializer, - ACTIONS(8700), 3, + ACTIONS(8705), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180051] = 6, + [179377] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5425), 1, + STATE(5241), 1, sym_comment, - STATE(6276), 1, - sym__initializer, - ACTIONS(8732), 3, + ACTIONS(3472), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [180072] = 6, + anon_sym_PIPE_RBRACE, + [179394] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5426), 1, + STATE(5242), 1, sym_comment, - STATE(5797), 1, + STATE(5920), 1, sym__initializer, - ACTIONS(8726), 3, + ACTIONS(8886), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180093] = 6, + [179415] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5427), 1, + STATE(5243), 1, sym_comment, - STATE(5798), 1, - sym__initializer, - ACTIONS(8726), 3, + ACTIONS(8130), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179432] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7437), 1, + anon_sym_extends, + ACTIONS(8790), 1, + anon_sym_PIPE, + STATE(5244), 1, + sym_comment, + ACTIONS(8972), 2, + sym__automatic_semicolon, anon_sym_SEMI, - [180114] = 6, + [179455] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8289), 1, + ACTIONS(8361), 1, anon_sym_COLON, - ACTIONS(9026), 1, + ACTIONS(8974), 1, anon_sym_EQ_GT, - STATE(5428), 1, + STATE(5245), 1, sym_comment, - STATE(6942), 3, + STATE(6678), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [180135] = 6, + [179476] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5429), 1, + STATE(5246), 1, sym_comment, - STATE(6267), 1, - sym__initializer, - ACTIONS(8732), 3, + ACTIONS(3458), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [180156] = 6, + anon_sym_PIPE_RBRACE, + [179493] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5430), 1, - sym_comment, - STATE(5799), 1, - sym__initializer, - ACTIONS(8700), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(8977), 1, + anon_sym_LBRACE, + ACTIONS(8979), 1, anon_sym_SEMI, - [180177] = 4, + ACTIONS(8981), 1, + sym__automatic_semicolon, + ACTIONS(8983), 1, + sym__function_signature_automatic_semicolon, + STATE(952), 1, + sym_statement_block, + STATE(5247), 1, + sym_comment, + [179518] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5431), 1, + STATE(5248), 1, sym_comment, - ACTIONS(3408), 5, + ACTIONS(3458), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [180194] = 4, + [179535] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5432), 1, + STATE(5249), 1, sym_comment, - ACTIONS(3406), 5, + ACTIONS(3470), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [180211] = 6, + [179552] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(5250), 1, + sym_comment, + ACTIONS(5676), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [179569] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5433), 1, + STATE(5251), 1, sym_comment, - STATE(5807), 1, + STATE(6148), 1, sym__initializer, - ACTIONS(8700), 3, + ACTIONS(8878), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180232] = 6, + [179590] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(8181), 1, anon_sym_EQ, - STATE(5434), 1, + ACTIONS(8985), 1, + anon_sym_COMMA, + ACTIONS(8987), 1, + anon_sym_RBRACE, + STATE(5252), 1, sym_comment, - STATE(5845), 1, + STATE(6267), 1, + aux_sym_enum_body_repeat1, + STATE(6795), 1, sym__initializer, - ACTIONS(8726), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [180253] = 7, + [179615] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(5253), 1, + sym_comment, + ACTIONS(5363), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [179632] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7438), 1, - anon_sym_extends, - ACTIONS(8698), 1, - anon_sym_PIPE, - STATE(5435), 1, - sym_comment, - ACTIONS(9029), 2, - sym__automatic_semicolon, + ACTIONS(8979), 1, anon_sym_SEMI, - [180276] = 6, + ACTIONS(8981), 1, + sym__automatic_semicolon, + ACTIONS(8983), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(8989), 1, + anon_sym_LBRACE, + STATE(296), 1, + sym_statement_block, + STATE(5254), 1, + sym_comment, + [179657] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5436), 1, + STATE(5255), 1, sym_comment, - STATE(5919), 1, + STATE(5704), 1, sym__initializer, - ACTIONS(8726), 3, + ACTIONS(8705), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180297] = 8, + [179678] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7940), 1, - anon_sym_LBRACE, - ACTIONS(8904), 1, - anon_sym_SEMI, - ACTIONS(8906), 1, - sym__automatic_semicolon, - ACTIONS(8908), 1, - sym__function_signature_automatic_semicolon, - STATE(5215), 1, - sym_statement_block, - STATE(5437), 1, + ACTIONS(8723), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8725), 1, + sym__template_chars, + ACTIONS(8991), 1, + anon_sym_BQUOTE, + STATE(5256), 1, sym_comment, - [180322] = 6, + STATE(5394), 1, + aux_sym_template_literal_type_repeat1, + STATE(6164), 1, + sym_template_type, + [179703] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5438), 1, + STATE(5257), 1, sym_comment, - STATE(5930), 1, + STATE(5703), 1, sym__initializer, - ACTIONS(8700), 3, + ACTIONS(8705), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180343] = 6, + [179724] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5439), 1, + STATE(5258), 1, sym_comment, - STATE(5875), 1, + STATE(5937), 1, sym__initializer, - ACTIONS(9031), 3, + ACTIONS(8886), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180364] = 8, + [179745] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5440), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7437), 1, + anon_sym_extends, + ACTIONS(8790), 1, + anon_sym_PIPE, + STATE(5259), 1, sym_comment, - STATE(6646), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - [180389] = 6, + ACTIONS(8993), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [179768] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5441), 1, + STATE(5260), 1, sym_comment, - STATE(6344), 1, - sym__initializer, - ACTIONS(8754), 3, + ACTIONS(3476), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [180410] = 6, + anon_sym_PIPE_RBRACE, + [179785] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5442), 1, - sym_comment, - STATE(5895), 1, - sym__initializer, - ACTIONS(8726), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(8977), 1, + anon_sym_LBRACE, + ACTIONS(8995), 1, anon_sym_SEMI, - [180431] = 6, + ACTIONS(8997), 1, + sym__automatic_semicolon, + ACTIONS(8999), 1, + sym__function_signature_automatic_semicolon, + STATE(926), 1, + sym_statement_block, + STATE(5261), 1, + sym_comment, + [179810] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5443), 1, + STATE(5262), 1, sym_comment, - STATE(5995), 1, - sym__initializer, - ACTIONS(8726), 3, + ACTIONS(3408), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [180452] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5444), 1, - sym_comment, - STATE(6634), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - [180477] = 8, + anon_sym_PIPE_RBRACE, + [179827] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5445), 1, + STATE(5263), 1, sym_comment, - STATE(6627), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - [180502] = 8, + ACTIONS(3480), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179844] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - STATE(4266), 1, - sym_formal_parameters, - STATE(5090), 1, - sym__call_signature, - STATE(5446), 1, + STATE(5264), 1, sym_comment, - STATE(6530), 1, - sym_type_parameters, - [180527] = 8, + ACTIONS(3482), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179861] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5447), 1, + STATE(5265), 1, sym_comment, - STATE(6607), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - [180552] = 8, + ACTIONS(6498), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [179878] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - STATE(4266), 1, - sym_formal_parameters, - STATE(5102), 1, - sym__call_signature, - STATE(5448), 1, + ACTIONS(7965), 1, + anon_sym_LBRACE, + ACTIONS(8934), 1, + anon_sym_SEMI, + ACTIONS(8936), 1, + sym__automatic_semicolon, + ACTIONS(8938), 1, + sym__function_signature_automatic_semicolon, + STATE(5266), 1, sym_comment, - STATE(6530), 1, - sym_type_parameters, - [180577] = 8, + STATE(6222), 1, + sym_statement_block, + [179903] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7940), 1, + ACTIONS(8909), 1, anon_sym_LBRACE, ACTIONS(9001), 1, anon_sym_SEMI, @@ -367386,36125 +354467,36254 @@ static const uint16_t ts_small_parse_table[] = { sym__automatic_semicolon, ACTIONS(9005), 1, sym__function_signature_automatic_semicolon, - STATE(5449), 1, - sym_comment, - STATE(5966), 1, + STATE(375), 1, sym_statement_block, - [180602] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - STATE(4266), 1, - sym_formal_parameters, - STATE(5107), 1, - sym__call_signature, - STATE(5450), 1, + STATE(5267), 1, sym_comment, - STATE(6530), 1, - sym_type_parameters, - [180627] = 7, + [179928] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, + ACTIONS(7433), 1, anon_sym_AMP, - ACTIONS(7438), 1, + ACTIONS(7437), 1, anon_sym_extends, - ACTIONS(8698), 1, + ACTIONS(8790), 1, anon_sym_PIPE, - STATE(5451), 1, + STATE(5268), 1, sym_comment, - ACTIONS(9033), 2, + ACTIONS(9007), 2, sym__automatic_semicolon, anon_sym_SEMI, - [180650] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - STATE(4266), 1, - sym_formal_parameters, - STATE(4921), 1, - sym__call_signature, - STATE(5452), 1, - sym_comment, - STATE(6530), 1, - sym_type_parameters, - [180675] = 8, + [179951] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - STATE(4266), 1, - sym_formal_parameters, - STATE(5126), 1, - sym__call_signature, - STATE(5453), 1, - sym_comment, - STATE(6530), 1, - sym_type_parameters, - [180700] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5454), 1, + STATE(5269), 1, sym_comment, - ACTIONS(5332), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [180717] = 8, + ACTIONS(2313), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [179968] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8125), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(9035), 1, - anon_sym_COMMA, - ACTIONS(9037), 1, - anon_sym_RBRACE, - STATE(5455), 1, + STATE(5270), 1, sym_comment, - STATE(6234), 1, - aux_sym_enum_body_repeat1, - STATE(6979), 1, + STATE(5955), 1, sym__initializer, - [180742] = 4, + ACTIONS(8747), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [179989] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5456), 1, + ACTIONS(7999), 1, + anon_sym_extends, + ACTIONS(8059), 1, + anon_sym_LBRACE, + ACTIONS(8061), 1, + anon_sym_LBRACE_PIPE, + STATE(992), 1, + sym_object_type, + STATE(5271), 1, sym_comment, - ACTIONS(9039), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [180759] = 6, + STATE(6282), 1, + sym_extends_type_clause, + [180014] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5457), 1, + STATE(5272), 1, sym_comment, - STATE(5997), 1, - sym__initializer, - ACTIONS(8726), 3, + ACTIONS(3484), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [180780] = 6, + anon_sym_PIPE_RBRACE, + [180031] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5458), 1, + STATE(5273), 1, sym_comment, - STATE(5854), 1, + STATE(5702), 1, sym__initializer, - ACTIONS(9041), 3, + ACTIONS(8705), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180801] = 4, + [180052] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8989), 1, + anon_sym_LBRACE, + ACTIONS(8995), 1, + anon_sym_SEMI, + ACTIONS(8997), 1, + sym__automatic_semicolon, + ACTIONS(8999), 1, + sym__function_signature_automatic_semicolon, + STATE(337), 1, + sym_statement_block, + STATE(5274), 1, + sym_comment, + [180077] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(5459), 1, + STATE(5275), 1, sym_comment, - ACTIONS(5332), 5, + ACTIONS(8551), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [180818] = 4, + [180094] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5276), 1, + sym_comment, + STATE(6093), 1, + sym__initializer, + ACTIONS(8886), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180115] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(5460), 1, + STATE(5277), 1, sym_comment, - ACTIONS(5328), 5, + ACTIONS(5106), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [180835] = 7, + [180132] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - STATE(5461), 1, + STATE(5278), 1, sym_comment, - ACTIONS(9043), 2, + ACTIONS(3578), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [180858] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8887), 1, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(8889), 1, - sym__automatic_semicolon, - ACTIONS(8891), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(9045), 1, - anon_sym_LBRACE, - STATE(377), 1, - sym_statement_block, - STATE(5462), 1, - sym_comment, - [180883] = 8, + anon_sym_PIPE_RBRACE, + [180149] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - STATE(4266), 1, - sym_formal_parameters, - STATE(5047), 1, - sym__call_signature, - STATE(5463), 1, + ACTIONS(8181), 1, + anon_sym_EQ, + ACTIONS(9009), 1, + anon_sym_COMMA, + ACTIONS(9011), 1, + anon_sym_RBRACE, + STATE(5279), 1, sym_comment, - STATE(6530), 1, - sym_type_parameters, - [180908] = 8, + STATE(6051), 1, + aux_sym_enum_body_repeat1, + STATE(6795), 1, + sym__initializer, + [180174] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8740), 1, - sym__template_chars, - ACTIONS(9047), 1, - anon_sym_BQUOTE, - STATE(5081), 1, - aux_sym_template_literal_type_repeat1, - STATE(5464), 1, + STATE(5280), 1, sym_comment, - STATE(6239), 1, - sym_template_type, - [180933] = 4, + ACTIONS(5106), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [180191] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5465), 1, + STATE(5281), 1, sym_comment, - ACTIONS(8004), 5, + ACTIONS(3582), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [180950] = 6, + [180208] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5466), 1, + STATE(5282), 1, sym_comment, - STATE(6274), 1, + STATE(6319), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180971] = 6, + [180229] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5467), 1, + STATE(5283), 1, sym_comment, - STATE(6461), 1, - sym__initializer, - ACTIONS(9049), 3, - sym__automatic_semicolon, + ACTIONS(6504), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [180992] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [180246] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5468), 1, - sym_comment, - ACTIONS(5920), 5, + ACTIONS(7163), 1, anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [181009] = 6, + STATE(5284), 1, + sym_comment, + STATE(5698), 1, + sym__initializer, + ACTIONS(8705), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180267] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5469), 1, + STATE(5285), 1, sym_comment, - STATE(6225), 1, - sym__initializer, - ACTIONS(8704), 3, + ACTIONS(3464), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [181030] = 7, + anon_sym_PIPE_RBRACE, + [180284] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - ACTIONS(9051), 1, - anon_sym_DOT, - STATE(5470), 1, + STATE(5286), 1, sym_comment, - STATE(7024), 1, - sym_statement_block, - ACTIONS(2059), 2, - anon_sym_else, - anon_sym_while, - [181053] = 6, + ACTIONS(6504), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [180301] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5471), 1, + STATE(5287), 1, sym_comment, - STATE(6027), 1, + STATE(6318), 1, sym__initializer, - ACTIONS(8726), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181074] = 8, + [180322] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(4200), 1, - sym_formal_parameters, - STATE(4739), 1, - sym__call_signature, - STATE(5472), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5288), 1, sym_comment, - STATE(6630), 1, - sym_type_parameters, - [181099] = 7, + STATE(6090), 1, + sym__initializer, + ACTIONS(8886), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180343] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - ACTIONS(9053), 1, - anon_sym_DOT, - STATE(5473), 1, + STATE(5289), 1, sym_comment, - STATE(7024), 1, - sym_statement_block, - ACTIONS(2059), 2, - anon_sym_else, - anon_sym_while, - [181122] = 8, + ACTIONS(5349), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [180360] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(8450), 1, - anon_sym_class, - ACTIONS(8452), 1, - anon_sym_abstract, - STATE(4768), 1, - aux_sym_export_statement_repeat1, - STATE(5474), 1, + STATE(5290), 1, sym_comment, - STATE(5700), 1, - sym_decorator, - [181147] = 8, + ACTIONS(6504), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [180377] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, + ACTIONS(7169), 1, anon_sym_LPAREN, - STATE(4266), 1, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, sym_formal_parameters, - STATE(5134), 1, + STATE(4654), 1, sym__call_signature, - STATE(5475), 1, + STATE(5291), 1, sym_comment, - STATE(6530), 1, + STATE(6732), 1, sym_type_parameters, - [181172] = 8, + [180402] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(5292), 1, + sym_comment, + ACTIONS(5154), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [180419] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8738), 1, + ACTIONS(8723), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8740), 1, + ACTIONS(8725), 1, sym__template_chars, - ACTIONS(9055), 1, + ACTIONS(9013), 1, anon_sym_BQUOTE, - STATE(5081), 1, - aux_sym_template_literal_type_repeat1, - STATE(5476), 1, + STATE(5293), 1, sym_comment, - STATE(6239), 1, + STATE(5394), 1, + aux_sym_template_literal_type_repeat1, + STATE(6164), 1, sym_template_type, - [181197] = 6, + [180444] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5477), 1, + STATE(5294), 1, sym_comment, - STATE(6076), 1, - sym__initializer, - ACTIONS(9057), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [181218] = 7, + ACTIONS(5154), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [180461] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7424), 1, - anon_sym_AMP, - ACTIONS(7438), 1, - anon_sym_extends, - ACTIONS(8698), 1, - anon_sym_PIPE, - STATE(5478), 1, + STATE(5295), 1, sym_comment, - ACTIONS(9059), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [181241] = 8, + ACTIONS(5210), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [180478] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - STATE(4266), 1, - sym_formal_parameters, - STATE(5006), 1, - sym__call_signature, - STATE(5479), 1, + STATE(5296), 1, sym_comment, - STATE(6530), 1, - sym_type_parameters, - [181266] = 6, + ACTIONS(3462), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [180495] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5480), 1, + STATE(5297), 1, sym_comment, - STATE(6275), 1, + STATE(6089), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8878), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181287] = 8, + [180516] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7940), 1, - anon_sym_LBRACE, - ACTIONS(8936), 1, - anon_sym_SEMI, - ACTIONS(8938), 1, - sym__automatic_semicolon, - ACTIONS(8940), 1, - sym__function_signature_automatic_semicolon, - STATE(5220), 1, - sym_statement_block, - STATE(5481), 1, + STATE(5298), 1, sym_comment, - [181312] = 6, + ACTIONS(5353), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [180533] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5482), 1, - sym_comment, - STATE(6078), 1, - sym__initializer, - ACTIONS(8754), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [181333] = 4, + ACTIONS(7169), 1, + anon_sym_LPAREN, + ACTIONS(7173), 1, + anon_sym_LT, + STATE(4255), 1, + sym_formal_parameters, + STATE(4933), 1, + sym__call_signature, + STATE(5299), 1, + sym_comment, + STATE(6732), 1, + sym_type_parameters, + [180558] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(5483), 1, + STATE(5300), 1, sym_comment, - ACTIONS(5711), 5, + ACTIONS(5357), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [181350] = 8, + [180575] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4839), 1, + ACTIONS(4849), 1, anon_sym_LBRACE, - ACTIONS(9061), 1, + ACTIONS(9015), 1, anon_sym_SEMI, - ACTIONS(9063), 1, + ACTIONS(9017), 1, sym__automatic_semicolon, - ACTIONS(9065), 1, + ACTIONS(9019), 1, sym__function_signature_automatic_semicolon, - STATE(3251), 1, + STATE(3170), 1, sym_statement_block, - STATE(5484), 1, + STATE(5301), 1, sym_comment, - [181375] = 6, + [180600] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5485), 1, + STATE(5302), 1, sym_comment, - STATE(5958), 1, + STATE(6073), 1, sym__initializer, - ACTIONS(9067), 3, + ACTIONS(8878), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181396] = 6, + [180621] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5486), 1, + STATE(5303), 1, sym_comment, - STATE(6071), 1, + STATE(6088), 1, sym__initializer, - ACTIONS(8754), 3, + ACTIONS(8878), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180642] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5304), 1, + sym_comment, + ACTIONS(3510), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [181417] = 6, + anon_sym_PIPE_RBRACE, + [180659] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5487), 1, + STATE(5305), 1, sym_comment, - STATE(6479), 1, + STATE(5958), 1, sym__initializer, - ACTIONS(9069), 3, + ACTIONS(8878), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181438] = 8, + [180680] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - STATE(4266), 1, - sym_formal_parameters, - STATE(5177), 1, - sym__call_signature, - STATE(5488), 1, + ACTIONS(7965), 1, + anon_sym_LBRACE, + ACTIONS(9021), 1, + anon_sym_SEMI, + ACTIONS(9023), 1, + sym__automatic_semicolon, + ACTIONS(9025), 1, + sym__function_signature_automatic_semicolon, + STATE(5215), 1, + sym_statement_block, + STATE(5306), 1, sym_comment, - STATE(6530), 1, - sym_type_parameters, - [181463] = 4, + [180705] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(5489), 1, + STATE(5307), 1, sym_comment, - ACTIONS(5707), 5, + ACTIONS(5510), 5, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, anon_sym_SLASH_GT, sym_identifier, - [181480] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [180722] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(5490), 1, - sym_comment, - ACTIONS(3582), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181497] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(5491), 1, + STATE(5308), 1, sym_comment, - ACTIONS(3578), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181514] = 4, + ACTIONS(5490), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [180739] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5492), 1, + STATE(5309), 1, sym_comment, - ACTIONS(9071), 5, + ACTIONS(3558), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181531] = 4, + [180756] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5493), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5310), 1, sym_comment, - ACTIONS(3576), 5, + STATE(5915), 1, + sym__initializer, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181548] = 4, + [180777] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5494), 1, + ACTIONS(9027), 1, + anon_sym_in, + ACTIONS(9029), 1, + anon_sym_of, + STATE(5311), 1, sym_comment, - ACTIONS(3574), 5, + ACTIONS(8966), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181565] = 4, + [180798] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5495), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5312), 1, sym_comment, - ACTIONS(3570), 5, + STATE(5655), 1, + sym__initializer, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181582] = 8, + [180819] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8125), 1, + ACTIONS(8181), 1, anon_sym_EQ, - ACTIONS(9073), 1, + ACTIONS(9031), 1, anon_sym_COMMA, - ACTIONS(9075), 1, + ACTIONS(9033), 1, anon_sym_RBRACE, - STATE(5496), 1, + STATE(5313), 1, sym_comment, - STATE(6084), 1, + STATE(6207), 1, aux_sym_enum_body_repeat1, - STATE(6979), 1, + STATE(6795), 1, sym__initializer, - [181607] = 8, + [180844] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5497), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7437), 1, + anon_sym_extends, + ACTIONS(8790), 1, + anon_sym_PIPE, + STATE(5314), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6734), 1, - sym__call_signature, - [181632] = 8, + ACTIONS(9035), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [180867] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - STATE(4266), 1, - sym_formal_parameters, - STATE(5259), 1, - sym__call_signature, - STATE(5498), 1, + STATE(5315), 1, sym_comment, - STATE(6530), 1, - sym_type_parameters, - [181657] = 4, + ACTIONS(3510), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [180884] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5499), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5316), 1, sym_comment, - ACTIONS(9077), 5, + STATE(5990), 1, + sym__initializer, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181674] = 6, + [180905] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5500), 1, + STATE(5317), 1, sym_comment, - STATE(6062), 1, - sym__initializer, - ACTIONS(8754), 3, + ACTIONS(3458), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [181695] = 8, + anon_sym_PIPE_RBRACE, + [180922] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - STATE(4266), 1, - sym_formal_parameters, - STATE(4880), 1, - sym__call_signature, - STATE(5501), 1, + STATE(5318), 1, sym_comment, - STATE(6530), 1, - sym_type_parameters, - [181720] = 8, + ACTIONS(3538), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [180939] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1342), 1, - anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8028), 1, - anon_sym_extends, - ACTIONS(8093), 1, - anon_sym_LBRACE_PIPE, - STATE(5133), 1, - sym_object_type, - STATE(5502), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5319), 1, sym_comment, - STATE(6193), 1, - sym_extends_type_clause, - [181745] = 8, + STATE(5833), 1, + sym__initializer, + ACTIONS(9037), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180960] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5503), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7437), 1, + anon_sym_extends, + ACTIONS(8790), 1, + anon_sym_PIPE, + STATE(5320), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6789), 1, - sym__call_signature, - [181770] = 6, + ACTIONS(9039), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [180983] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5504), 1, + STATE(5321), 1, sym_comment, - STATE(6086), 1, + STATE(5852), 1, sym__initializer, - ACTIONS(8762), 3, + ACTIONS(9041), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181791] = 4, + [181004] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5505), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5322), 1, sym_comment, - ACTIONS(8436), 5, + STATE(6077), 1, + sym__initializer, + ACTIONS(8886), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [181808] = 4, + [181025] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5506), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5323), 1, sym_comment, - ACTIONS(8428), 5, + STATE(5975), 1, + sym__initializer, + ACTIONS(8886), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [181825] = 4, + [181046] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5507), 1, + STATE(5324), 1, sym_comment, - ACTIONS(2347), 5, + ACTIONS(3516), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181842] = 4, + [181063] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5508), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5325), 1, sym_comment, - ACTIONS(3566), 5, + STATE(5684), 1, + sym__initializer, + ACTIONS(8705), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [181859] = 4, + [181084] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5509), 1, + STATE(5326), 1, sym_comment, - ACTIONS(3564), 5, + ACTIONS(2343), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181876] = 6, + [181101] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8289), 1, + ACTIONS(8361), 1, anon_sym_COLON, - ACTIONS(9079), 1, + ACTIONS(9043), 1, anon_sym_EQ_GT, - STATE(5510), 1, + STATE(5327), 1, sym_comment, - STATE(6942), 3, + STATE(6678), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [181897] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [181122] = 6, ACTIONS(5), 1, sym_html_comment, - STATE(5511), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5328), 1, sym_comment, - ACTIONS(5316), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [181914] = 6, + STATE(5647), 1, + sym__initializer, + ACTIONS(8866), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181143] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8289), 1, + ACTIONS(8361), 1, anon_sym_COLON, - ACTIONS(9082), 1, + ACTIONS(9046), 1, anon_sym_EQ_GT, - STATE(5512), 1, + STATE(5329), 1, sym_comment, - STATE(6534), 3, + STATE(6833), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - [181935] = 6, + [181164] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5513), 1, + STATE(5330), 1, sym_comment, - STATE(6283), 1, - sym__initializer, - ACTIONS(8704), 3, + ACTIONS(3556), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [181956] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_PIPE_RBRACE, + [181181] = 6, ACTIONS(5), 1, sym_html_comment, - STATE(5514), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5331), 1, sym_comment, - ACTIONS(5320), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [181973] = 8, + STATE(5760), 1, + sym__initializer, + ACTIONS(9049), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181202] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8918), 1, - anon_sym_SEMI, - ACTIONS(8920), 1, - sym__automatic_semicolon, - ACTIONS(8922), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(9045), 1, - anon_sym_LBRACE, - STATE(404), 1, - sym_statement_block, - STATE(5515), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5332), 1, sym_comment, - [181998] = 8, + STATE(6256), 1, + sym__initializer, + ACTIONS(8747), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181223] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8738), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8740), 1, - sym__template_chars, - ACTIONS(9085), 1, - anon_sym_BQUOTE, - STATE(5464), 1, - aux_sym_template_literal_type_repeat1, - STATE(5516), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5333), 1, sym_comment, - STATE(6239), 1, - sym_template_type, - [182023] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5675), 1, + sym__initializer, + ACTIONS(8705), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181244] = 7, ACTIONS(5), 1, sym_html_comment, - STATE(5517), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7437), 1, + anon_sym_extends, + ACTIONS(8790), 1, + anon_sym_PIPE, + STATE(5334), 1, sym_comment, - ACTIONS(5324), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [182040] = 4, + ACTIONS(9051), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [181267] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5518), 1, + STATE(5335), 1, sym_comment, - ACTIONS(3558), 5, + ACTIONS(2381), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [182057] = 4, + [181284] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5519), 1, - sym_comment, - ACTIONS(3556), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(9001), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182074] = 4, + ACTIONS(9003), 1, + sym__automatic_semicolon, + ACTIONS(9005), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(9053), 1, + anon_sym_LBRACE, + STATE(1023), 1, + sym_statement_block, + STATE(5336), 1, + sym_comment, + [181309] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5520), 1, + STATE(5337), 1, sym_comment, - ACTIONS(3554), 5, + ACTIONS(2373), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [182091] = 4, + [181326] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5521), 1, + STATE(5338), 1, sym_comment, - ACTIONS(3552), 5, + ACTIONS(3524), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [182108] = 8, + [181343] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7940), 1, + ACTIONS(7965), 1, anon_sym_LBRACE, - ACTIONS(9061), 1, + ACTIONS(9015), 1, anon_sym_SEMI, - ACTIONS(9063), 1, + ACTIONS(9017), 1, sym__automatic_semicolon, - ACTIONS(9065), 1, + ACTIONS(9019), 1, sym__function_signature_automatic_semicolon, - STATE(5522), 1, + STATE(5339), 1, sym_comment, - STATE(5926), 1, + STATE(6040), 1, sym_statement_block, - [182133] = 4, + [181368] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5523), 1, + ACTIONS(8361), 1, + anon_sym_COLON, + ACTIONS(9055), 1, + anon_sym_EQ_GT, + STATE(5340), 1, sym_comment, - ACTIONS(3550), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182150] = 4, + STATE(6833), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [181389] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5524), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5341), 1, sym_comment, - ACTIONS(3548), 5, + STATE(6272), 1, + sym__initializer, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182167] = 4, + [181410] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5525), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5342), 1, sym_comment, - ACTIONS(3546), 5, + STATE(6149), 1, + sym__initializer, + ACTIONS(8749), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182184] = 7, + [181431] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, + ACTIONS(7433), 1, anon_sym_AMP, - ACTIONS(7438), 1, + ACTIONS(7437), 1, anon_sym_extends, - ACTIONS(8698), 1, + ACTIONS(8790), 1, anon_sym_PIPE, - STATE(5526), 1, + STATE(5343), 1, sym_comment, - ACTIONS(9087), 2, + ACTIONS(9058), 2, sym__automatic_semicolon, anon_sym_SEMI, - [182207] = 4, + [181454] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5527), 1, - sym_comment, - ACTIONS(3532), 5, - sym__automatic_semicolon, + ACTIONS(8181), 1, + anon_sym_EQ, + ACTIONS(9060), 1, anon_sym_COMMA, + ACTIONS(9062), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182224] = 4, + STATE(5344), 1, + sym_comment, + STATE(6302), 1, + aux_sym_enum_body_repeat1, + STATE(6795), 1, + sym__initializer, + [181479] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5528), 1, - sym_comment, - ACTIONS(3532), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4849), 1, + anon_sym_LBRACE, + ACTIONS(9021), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182241] = 7, + ACTIONS(9023), 1, + sym__automatic_semicolon, + ACTIONS(9025), 1, + sym__function_signature_automatic_semicolon, + STATE(2929), 1, + sym_statement_block, + STATE(5345), 1, + sym_comment, + [181504] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, - anon_sym_LPAREN, - ACTIONS(7610), 1, - anon_sym_DOT, - STATE(4458), 1, - sym_arguments, - STATE(5529), 1, + ACTIONS(8723), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8725), 1, + sym__template_chars, + ACTIONS(9064), 1, + anon_sym_BQUOTE, + STATE(5346), 1, sym_comment, - ACTIONS(9089), 2, - anon_sym_COMMA, - anon_sym_GT, - [182264] = 4, + STATE(5394), 1, + aux_sym_template_literal_type_repeat1, + STATE(6164), 1, + sym_template_type, + [181529] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5530), 1, + STATE(5347), 1, sym_comment, - ACTIONS(3536), 5, + ACTIONS(3554), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [182281] = 6, + [181546] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8289), 1, - anon_sym_COLON, - ACTIONS(9091), 1, - anon_sym_EQ_GT, - STATE(5531), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5348), 1, sym_comment, - STATE(6534), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [182302] = 4, + STATE(6065), 1, + sym__initializer, + ACTIONS(8886), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181567] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5532), 1, + STATE(5349), 1, sym_comment, - ACTIONS(3518), 5, - sym__automatic_semicolon, + ACTIONS(6165), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182319] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [181584] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5533), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5350), 1, sym_comment, - ACTIONS(8426), 5, + STATE(6007), 1, + sym__initializer, + ACTIONS(8747), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [182336] = 8, + [181605] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5534), 1, + STATE(5351), 1, sym_comment, - STATE(6536), 1, - sym__call_signature, - STATE(6683), 1, - sym_type_parameters, - [182361] = 6, + ACTIONS(3552), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [181622] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5535), 1, + STATE(5352), 1, sym_comment, - STATE(6285), 1, + STATE(5979), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8886), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182382] = 4, + [181643] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5536), 1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7437), 1, + anon_sym_extends, + ACTIONS(8790), 1, + anon_sym_PIPE, + STATE(5353), 1, sym_comment, - ACTIONS(2341), 5, + ACTIONS(9066), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182399] = 8, + [181666] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(7216), 1, + ACTIONS(7197), 1, anon_sym_LPAREN, - STATE(4200), 1, + STATE(4055), 1, sym_formal_parameters, - STATE(4568), 1, + STATE(4509), 1, sym__call_signature, - STATE(5537), 1, + STATE(5354), 1, sym_comment, - STATE(6630), 1, + STATE(6769), 1, sym_type_parameters, - [182424] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(5538), 1, - sym_comment, - ACTIONS(8309), 5, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_SLASH_GT, - sym_identifier, - [182441] = 6, + [181691] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5539), 1, + STATE(5355), 1, sym_comment, - STATE(6013), 1, + STATE(6008), 1, sym__initializer, - ACTIONS(8726), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182462] = 4, + [181712] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5540), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5356), 1, sym_comment, - ACTIONS(9094), 5, + STATE(6070), 1, + sym__initializer, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182479] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5541), 1, - sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6864), 1, - sym__call_signature, - [182504] = 8, + [181733] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(4790), 1, - sym_formal_parameters, - STATE(5542), 1, + ACTIONS(8911), 1, + anon_sym_SEMI, + ACTIONS(8913), 1, + sym__automatic_semicolon, + ACTIONS(8915), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(9053), 1, + anon_sym_LBRACE, + STATE(1107), 1, + sym_statement_block, + STATE(5357), 1, sym_comment, - STATE(6683), 1, - sym_type_parameters, - STATE(6888), 1, - sym__call_signature, - [182529] = 4, + [181758] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5543), 1, + STATE(5358), 1, sym_comment, - ACTIONS(3424), 5, + ACTIONS(3422), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [182546] = 4, + [181775] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5544), 1, + STATE(5359), 1, sym_comment, - ACTIONS(3426), 5, + ACTIONS(3550), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [182563] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9096), 1, - sym_identifier, - ACTIONS(9098), 1, - anon_sym_GT, - ACTIONS(9100), 1, - sym_jsx_identifier, - STATE(5545), 1, - sym_comment, - STATE(6852), 1, - sym_nested_identifier, - STATE(7325), 1, - sym_jsx_namespace_name, - [182588] = 6, + [181792] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5546), 1, + STATE(5360), 1, sym_comment, - STATE(6286), 1, + STATE(6046), 1, sym__initializer, - ACTIONS(8704), 3, + ACTIONS(8886), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182609] = 4, + [181813] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5547), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5361), 1, sym_comment, - ACTIONS(3428), 5, + STATE(6290), 1, + sym__initializer, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182626] = 6, + [181834] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5548), 1, + STATE(5362), 1, sym_comment, - STATE(6048), 1, + STATE(6288), 1, sym__initializer, - ACTIONS(8754), 3, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182647] = 6, + [181855] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, - anon_sym_EQ, - STATE(5549), 1, + STATE(5363), 1, sym_comment, - STATE(5999), 1, - sym__initializer, - ACTIONS(8726), 3, + ACTIONS(8051), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [182668] = 4, + anon_sym_PIPE_RBRACE, + [181872] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5550), 1, + STATE(5364), 1, sym_comment, - ACTIONS(2307), 5, + ACTIONS(3546), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [182685] = 6, + [181889] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7154), 1, + ACTIONS(7163), 1, anon_sym_EQ, - STATE(5551), 1, + STATE(5365), 1, sym_comment, - STATE(6000), 1, + STATE(6043), 1, sym__initializer, - ACTIONS(8700), 3, + ACTIONS(8878), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182706] = 8, + [181910] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7194), 1, - anon_sym_LPAREN, - STATE(4266), 1, - sym_formal_parameters, - STATE(4788), 1, - sym__call_signature, - STATE(5552), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5366), 1, sym_comment, - STATE(6530), 1, - sym_type_parameters, - [182731] = 4, + STATE(6016), 1, + sym__initializer, + ACTIONS(8747), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181931] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5553), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5367), 1, sym_comment, - ACTIONS(2311), 5, + STATE(6064), 1, + sym__initializer, + ACTIONS(8747), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182748] = 4, + [181952] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5554), 1, + STATE(5368), 1, sym_comment, - ACTIONS(3538), 5, + ACTIONS(9068), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [182765] = 7, + [181969] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(9102), 1, - anon_sym_class, - STATE(4768), 1, - aux_sym_export_statement_repeat1, - STATE(5555), 1, - sym_comment, - STATE(5700), 1, - sym_decorator, - [182787] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9104), 1, - anon_sym_SQUOTE, - STATE(5556), 1, + ACTIONS(7999), 1, + anon_sym_extends, + ACTIONS(8043), 1, + anon_sym_LBRACE, + ACTIONS(8045), 1, + anon_sym_LBRACE_PIPE, + STATE(1211), 1, + sym_object_type, + STATE(5369), 1, sym_comment, - STATE(5596), 1, - aux_sym_string_repeat2, - ACTIONS(9106), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [182807] = 7, + STATE(6257), 1, + sym_extends_type_clause, + [181994] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(9108), 1, - anon_sym_RBRACK, - STATE(5557), 1, + ACTIONS(4849), 1, + anon_sym_LBRACE, + ACTIONS(8952), 1, + anon_sym_SEMI, + ACTIONS(8954), 1, + sym__automatic_semicolon, + ACTIONS(8956), 1, + sym__function_signature_automatic_semicolon, + STATE(2936), 1, + sym_statement_block, + STATE(5370), 1, sym_comment, - [182829] = 4, + [182019] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5558), 1, + ACTIONS(8723), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8725), 1, + sym__template_chars, + ACTIONS(9070), 1, + anon_sym_BQUOTE, + STATE(5346), 1, + aux_sym_template_literal_type_repeat1, + STATE(5371), 1, sym_comment, - ACTIONS(6701), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [182845] = 7, + STATE(6164), 1, + sym_template_type, + [182044] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(5559), 1, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(4055), 1, + sym_formal_parameters, + STATE(4560), 1, + sym__call_signature, + STATE(5372), 1, sym_comment, - STATE(7125), 1, + STATE(6769), 1, sym_type_parameters, - STATE(7343), 1, - sym_formal_parameters, - [182867] = 7, + [182069] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9110), 1, + ACTIONS(7163), 1, anon_sym_EQ, - ACTIONS(9112), 1, - anon_sym_COMMA, - ACTIONS(9114), 1, - anon_sym_RBRACK, - STATE(5560), 1, + STATE(5373), 1, sym_comment, - STATE(6284), 1, - aux_sym_array_pattern_repeat1, - [182889] = 6, + STATE(6021), 1, + sym__initializer, + ACTIONS(8747), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182090] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(5561), 1, + STATE(5374), 1, sym_comment, - STATE(6872), 1, - sym__from_clause, - ACTIONS(5373), 2, + ACTIONS(8142), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [182909] = 6, + anon_sym_PIPE_RBRACE, + [182107] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - STATE(5562), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5375), 1, sym_comment, - STATE(6860), 1, - sym_import_attribute, - ACTIONS(9120), 2, + STATE(5999), 1, + sym__initializer, + ACTIONS(8886), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [182929] = 6, + [182128] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - STATE(5563), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5376), 1, sym_comment, - STATE(6858), 1, - sym_import_attribute, - ACTIONS(9122), 2, + STATE(6062), 1, + sym__initializer, + ACTIONS(8749), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [182949] = 7, + [182149] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - ACTIONS(9124), 1, - anon_sym_SEMI, - ACTIONS(9126), 1, - sym__automatic_semicolon, - STATE(5564), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(4055), 1, + sym_formal_parameters, + STATE(4863), 1, + sym__call_signature, + STATE(5377), 1, sym_comment, - STATE(6857), 1, - sym_import_attribute, - [182971] = 6, + STATE(6769), 1, + sym_type_parameters, + [182174] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, - anon_sym_COMMA, - STATE(5565), 1, + STATE(5378), 1, sym_comment, - STATE(5723), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9130), 2, + ACTIONS(8140), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [182991] = 6, + anon_sym_PIPE_RBRACE, + [182191] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, - anon_sym_COMMA, - STATE(5566), 1, + ACTIONS(8361), 1, + anon_sym_COLON, + ACTIONS(9072), 1, + anon_sym_EQ_GT, + STATE(5379), 1, sym_comment, - STATE(5723), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9132), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [183011] = 7, + STATE(6833), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [182212] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8159), 1, - anon_sym_DOT, - ACTIONS(9134), 1, - anon_sym_COMMA, - ACTIONS(9136), 1, - anon_sym_GT, - STATE(5567), 1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8689), 1, + anon_sym_class, + ACTIONS(8691), 1, + anon_sym_abstract, + STATE(4771), 1, + aux_sym_export_statement_repeat1, + STATE(5380), 1, sym_comment, - STATE(6200), 1, - aux_sym_type_arguments_repeat1, - [183033] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5410), 1, + sym_decorator, + [182237] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9138), 1, - anon_sym_SQUOTE, - STATE(5568), 1, - sym_comment, - STATE(5596), 1, - aux_sym_string_repeat2, - ACTIONS(9106), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [183053] = 6, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(4055), 1, + sym_formal_parameters, + STATE(4557), 1, + sym__call_signature, + STATE(5381), 1, + sym_comment, + STATE(6769), 1, + sym_type_parameters, + [182262] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9138), 1, - anon_sym_DQUOTE, - STATE(5569), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8729), 1, + anon_sym_abstract, + ACTIONS(9075), 1, + anon_sym_class, + STATE(4771), 1, + aux_sym_export_statement_repeat1, + STATE(5382), 1, sym_comment, - STATE(5606), 1, - aux_sym_string_repeat1, - ACTIONS(9140), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [183073] = 7, - ACTIONS(3), 1, + STATE(5410), 1, + sym_decorator, + [182287] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7433), 1, + anon_sym_AMP, + ACTIONS(7437), 1, + anon_sym_extends, + ACTIONS(8790), 1, + anon_sym_PIPE, + STATE(5383), 1, + sym_comment, + ACTIONS(9077), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [182310] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7918), 1, - anon_sym_const, - ACTIONS(9142), 1, - sym_identifier, - ACTIONS(9144), 1, - anon_sym_GT, - STATE(5570), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5384), 1, sym_comment, - STATE(6849), 1, - sym_type_parameter, - [183095] = 7, + STATE(6270), 1, + sym__initializer, + ACTIONS(8749), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182331] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(5571), 1, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(4055), 1, + sym_formal_parameters, + STATE(4568), 1, + sym__call_signature, + STATE(5385), 1, sym_comment, - STATE(7120), 1, + STATE(6769), 1, sym_type_parameters, - STATE(7448), 1, - sym_formal_parameters, - [183117] = 7, + [182356] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - ACTIONS(9146), 1, - anon_sym_SEMI, - ACTIONS(9148), 1, - sym__automatic_semicolon, - STATE(5572), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + STATE(5386), 1, sym_comment, - STATE(6808), 1, - sym_import_attribute, - [183139] = 7, + ACTIONS(9079), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [182379] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5387), 1, + sym_comment, + ACTIONS(5809), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [182396] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7067), 1, + anon_sym_LBRACK, + ACTIONS(9081), 1, + anon_sym_RBRACE, + STATE(5388), 1, + sym_comment, + ACTIONS(4883), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [182417] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7082), 1, + ACTIONS(7071), 1, anon_sym_PIPE, - ACTIONS(7084), 1, + ACTIONS(7073), 1, anon_sym_extends, - ACTIONS(9150), 1, - anon_sym_RPAREN, - STATE(5573), 1, + STATE(5389), 1, sym_comment, - [183161] = 7, + ACTIONS(9083), 2, + anon_sym_COMMA, + anon_sym_GT, + [182440] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(9152), 1, + ACTIONS(7173), 1, anon_sym_LT, - STATE(2916), 1, - sym_type_arguments, - STATE(2917), 1, - sym_arguments, - STATE(5574), 1, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(4055), 1, + sym_formal_parameters, + STATE(4529), 1, + sym__call_signature, + STATE(5390), 1, sym_comment, - [183183] = 7, + STATE(6769), 1, + sym_type_parameters, + [182465] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + STATE(5391), 1, + sym_comment, + ACTIONS(9085), 5, anon_sym_LPAREN, - ACTIONS(9154), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT, - STATE(2450), 1, - sym_type_arguments, - STATE(2451), 1, - sym_arguments, - STATE(5575), 1, - sym_comment, - [183205] = 6, + anon_sym_BQUOTE, + [182482] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(5576), 1, + STATE(5392), 1, sym_comment, - STATE(7024), 1, - sym_statement_block, - ACTIONS(2059), 2, - anon_sym_else, - anon_sym_while, - [183225] = 6, + ACTIONS(8142), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [182499] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, - anon_sym_COMMA, - STATE(5566), 1, - aux_sym_variable_declaration_repeat1, - STATE(5577), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5393), 1, sym_comment, - ACTIONS(9156), 2, + STATE(6026), 1, + sym__initializer, + ACTIONS(8747), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [183245] = 6, + [182520] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9087), 1, + anon_sym_BQUOTE, + ACTIONS(9089), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(9092), 1, + sym__template_chars, + STATE(6164), 1, + sym_template_type, + STATE(5394), 2, + sym_comment, + aux_sym_template_literal_type_repeat1, + [182543] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, + ACTIONS(4145), 1, + anon_sym_LPAREN, + ACTIONS(7673), 1, + anon_sym_DOT, + STATE(4337), 1, + sym_arguments, + STATE(5395), 1, + sym_comment, + ACTIONS(9095), 2, anon_sym_COMMA, - STATE(5565), 1, - aux_sym_variable_declaration_repeat1, - STATE(5578), 1, + anon_sym_GT, + [182566] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5396), 1, sym_comment, - ACTIONS(9158), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [183265] = 6, + ACTIONS(9097), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [182583] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - STATE(5579), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + STATE(5397), 1, sym_comment, - STATE(6949), 1, - sym_import_attribute, - ACTIONS(9160), 2, + ACTIONS(9099), 2, + anon_sym_LBRACE, + anon_sym_COMMA, + [182606] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(8367), 1, + anon_sym_abstract, + ACTIONS(9101), 1, + anon_sym_class, + STATE(4771), 1, + aux_sym_export_statement_repeat1, + STATE(5398), 1, + sym_comment, + STATE(5410), 1, + sym_decorator, + [182631] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5399), 1, + sym_comment, + STATE(6284), 1, + sym__initializer, + ACTIONS(8749), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [183285] = 6, + [182652] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - STATE(5580), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5400), 1, sym_comment, - STATE(6950), 1, - sym_import_attribute, - ACTIONS(9162), 2, + STATE(6042), 1, + sym__initializer, + ACTIONS(8878), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [183305] = 7, + [182673] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(9164), 1, - anon_sym_RPAREN, - STATE(5581), 1, + ACTIONS(5480), 1, + anon_sym_in, + STATE(5401), 1, sym_comment, - [183327] = 6, + ACTIONS(6416), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [182692] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8339), 1, - anon_sym_finally, - STATE(5582), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(4055), 1, + sym_formal_parameters, + STATE(4543), 1, + sym__call_signature, + STATE(5402), 1, sym_comment, - STATE(7039), 1, - sym_finally_clause, - ACTIONS(3098), 2, - anon_sym_else, - anon_sym_while, - [183347] = 7, + STATE(6769), 1, + sym_type_parameters, + [182717] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - ACTIONS(9166), 1, - anon_sym_SEMI, - ACTIONS(9168), 1, - sym__automatic_semicolon, - STATE(5583), 1, + STATE(5403), 1, sym_comment, - STATE(6975), 1, - sym_import_attribute, - [183369] = 6, + ACTIONS(9103), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [182734] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(5584), 1, + STATE(5404), 1, sym_comment, - STATE(6967), 1, - sym__from_clause, - ACTIONS(9170), 2, + ACTIONS(9105), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [183389] = 7, + anon_sym_PIPE_RBRACE, + [182751] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(9172), 1, - anon_sym_QMARK, - STATE(5585), 1, + STATE(5405), 1, sym_comment, - [183411] = 7, + ACTIONS(9107), 5, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_SLASH_GT, + sym_identifier, + [182768] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, + ACTIONS(7433), 1, anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, + ACTIONS(7437), 1, anon_sym_extends, - ACTIONS(9174), 1, - anon_sym_RBRACK, - STATE(5586), 1, - sym_comment, - [183433] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9104), 1, - anon_sym_DQUOTE, - STATE(5587), 1, + ACTIONS(8790), 1, + anon_sym_PIPE, + STATE(5406), 1, sym_comment, - STATE(5606), 1, - aux_sym_string_repeat1, - ACTIONS(9140), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [183453] = 4, + ACTIONS(9109), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [182791] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5588), 1, + ACTIONS(7163), 1, + anon_sym_EQ, + STATE(5407), 1, sym_comment, - ACTIONS(9176), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [183469] = 6, + STATE(6027), 1, + sym__initializer, + ACTIONS(8747), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182812] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9178), 1, + ACTIONS(9111), 1, anon_sym_DQUOTE, - STATE(5589), 1, + STATE(5408), 1, sym_comment, - STATE(5606), 1, + STATE(5586), 1, aux_sym_string_repeat1, - ACTIONS(9140), 2, + ACTIONS(9113), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [183489] = 7, + [182832] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8159), 1, - anon_sym_DOT, - ACTIONS(9180), 1, - anon_sym_COMMA, - ACTIONS(9182), 1, - anon_sym_GT, - STATE(5590), 1, + ACTIONS(9115), 1, + anon_sym_with, + STATE(5409), 1, sym_comment, - STATE(6138), 1, - aux_sym_type_arguments_repeat1, - [183511] = 5, + STATE(6438), 1, + sym_import_attribute, + ACTIONS(9117), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [182852] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9186), 1, - anon_sym_COMMA, - ACTIONS(9184), 2, - anon_sym_LBRACE, - anon_sym_implements, - STATE(5591), 2, - sym_comment, - aux_sym_extends_clause_repeat1, - [183529] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9189), 1, - sym_html_character_reference, - ACTIONS(9191), 1, - anon_sym_DQUOTE, - ACTIONS(9193), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(5592), 1, + STATE(5410), 1, sym_comment, - STATE(5677), 1, - aux_sym__jsx_string_repeat1, - [183551] = 7, + ACTIONS(9119), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [182868] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(9195), 1, - anon_sym_RBRACK, - STATE(5593), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(5411), 1, sym_comment, - [183573] = 7, + STATE(6609), 1, + sym__from_clause, + ACTIONS(9123), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [182888] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7082), 1, + ACTIONS(7071), 1, anon_sym_PIPE, - ACTIONS(7084), 1, + ACTIONS(7073), 1, anon_sym_extends, - ACTIONS(9197), 1, - anon_sym_COLON, - STATE(5594), 1, + ACTIONS(9125), 1, + anon_sym_RBRACK, + STATE(5412), 1, sym_comment, - [183595] = 6, + [182910] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5369), 1, - anon_sym_LPAREN, - ACTIONS(5411), 1, - anon_sym_BQUOTE, - STATE(5595), 1, + ACTIONS(9115), 1, + anon_sym_with, + STATE(5413), 1, sym_comment, - STATE(3080), 2, - sym_template_string, - sym_arguments, - [183615] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6598), 1, + sym_import_attribute, + ACTIONS(9127), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [182930] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9199), 1, - anon_sym_SQUOTE, - ACTIONS(9201), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - STATE(5596), 2, - sym_comment, - aux_sym_string_repeat2, - [183633] = 7, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7918), 1, - anon_sym_const, - ACTIONS(9142), 1, - sym_identifier, - ACTIONS(9204), 1, - anon_sym_GT, - STATE(5597), 1, + ACTIONS(9115), 1, + anon_sym_with, + STATE(5414), 1, sym_comment, - STATE(6849), 1, - sym_type_parameter, - [183655] = 6, + STATE(6597), 1, + sym_import_attribute, + ACTIONS(9129), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [182950] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5470), 1, + ACTIONS(9131), 1, anon_sym_COMMA, - STATE(5598), 1, + STATE(5415), 1, sym_comment, - STATE(5654), 1, - aux_sym_sequence_expression_repeat1, - ACTIONS(8313), 2, + STATE(5434), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9133), 2, sym__automatic_semicolon, anon_sym_SEMI, - [183675] = 6, + [182970] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9208), 1, + ACTIONS(9131), 1, anon_sym_COMMA, - STATE(5599), 1, + STATE(5416), 1, sym_comment, - STATE(5745), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(9206), 2, - anon_sym_LBRACE, - anon_sym_implements, - [183695] = 7, + STATE(5435), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9135), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [182990] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7082), 1, + ACTIONS(7071), 1, anon_sym_PIPE, - ACTIONS(7084), 1, + ACTIONS(7073), 1, anon_sym_extends, - ACTIONS(9210), 1, + ACTIONS(9137), 1, anon_sym_QMARK, - STATE(5600), 1, + STATE(5417), 1, sym_comment, - [183717] = 6, + [183012] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9212), 1, + ACTIONS(9139), 1, + anon_sym_DQUOTE, + STATE(5418), 1, + sym_comment, + STATE(5625), 1, + aux_sym_string_repeat1, + ACTIONS(9113), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [183032] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9141), 1, anon_sym_SQUOTE, - STATE(5568), 1, - aux_sym_string_repeat2, - STATE(5601), 1, + STATE(5419), 1, sym_comment, - ACTIONS(9106), 2, + STATE(5425), 1, + aux_sym_string_repeat2, + ACTIONS(9143), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [183737] = 6, + [183052] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9212), 1, + ACTIONS(9141), 1, anon_sym_DQUOTE, - STATE(5569), 1, + STATE(5418), 1, aux_sym_string_repeat1, - STATE(5602), 1, + STATE(5420), 1, sym_comment, - ACTIONS(9140), 2, + ACTIONS(9113), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [183757] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(5603), 1, - sym_comment, - ACTIONS(8097), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [183773] = 7, + [183072] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9191), 1, - anon_sym_SQUOTE, - ACTIONS(9214), 1, - sym_html_character_reference, - ACTIONS(9216), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(5604), 1, + ACTIONS(9145), 1, + sym_identifier, + STATE(5101), 1, + sym_nested_type_identifier, + STATE(5421), 1, sym_comment, - STATE(5676), 1, - aux_sym__jsx_string_repeat2, - [183795] = 7, + STATE(5857), 1, + sym_generic_type, + STATE(7112), 1, + sym_nested_identifier, + [183094] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(5605), 1, - sym_comment, - STATE(6780), 1, - sym_type_parameters, - STATE(7384), 1, - sym_formal_parameters, - [183817] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9218), 1, - anon_sym_DQUOTE, - ACTIONS(9220), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - STATE(5606), 2, + ACTIONS(8065), 1, + anon_sym_COMMA, + ACTIONS(9147), 1, + anon_sym_LBRACE, + ACTIONS(9149), 1, + anon_sym_LBRACE_PIPE, + STATE(5422), 1, sym_comment, - aux_sym_string_repeat1, - [183835] = 5, + STATE(5534), 1, + aux_sym_extends_type_clause_repeat1, + [183116] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9223), 1, + ACTIONS(8065), 1, anon_sym_COMMA, - ACTIONS(5860), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(5607), 2, - sym_comment, - aux_sym_array_repeat1, - [183853] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9226), 1, - sym__glimmer_template_content, - ACTIONS(9228), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(2669), 1, - sym_glimmer_closing_tag, - STATE(5608), 1, + ACTIONS(9151), 1, + anon_sym_LBRACE, + ACTIONS(9153), 1, + anon_sym_LBRACE_PIPE, + STATE(5423), 1, sym_comment, - STATE(6450), 1, - aux_sym_glimmer_template_repeat1, - [183875] = 7, + STATE(5534), 1, + aux_sym_extends_type_clause_repeat1, + [183138] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(9230), 1, - anon_sym_COLON, - STATE(5609), 1, - sym_comment, - [183897] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9232), 1, - anon_sym_DQUOTE, - STATE(5610), 1, + ACTIONS(8065), 1, + anon_sym_COMMA, + ACTIONS(9151), 1, + anon_sym_LBRACE, + ACTIONS(9153), 1, + anon_sym_LBRACE_PIPE, + STATE(5424), 1, sym_comment, - STATE(5628), 1, - aux_sym_string_repeat1, - ACTIONS(9140), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [183917] = 6, + STATE(5534), 1, + aux_sym_extends_type_clause_repeat1, + [183160] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9232), 1, + ACTIONS(9139), 1, anon_sym_SQUOTE, - STATE(5611), 1, + STATE(5425), 1, sym_comment, - STATE(5629), 1, + STATE(5614), 1, aux_sym_string_repeat2, - ACTIONS(9106), 2, + ACTIONS(9143), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [183937] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + [183180] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9226), 1, - sym__glimmer_template_content, - ACTIONS(9234), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(3301), 1, - sym_glimmer_closing_tag, - STATE(5612), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(9155), 1, + anon_sym_COLON, + STATE(5426), 1, sym_comment, - STATE(6450), 1, - aux_sym_glimmer_template_repeat1, - [183959] = 7, + [183202] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, + ACTIONS(9081), 1, + anon_sym_RBRACE, + STATE(5427), 1, + sym_comment, + ACTIONS(4883), 3, anon_sym_AMP, - ACTIONS(7082), 1, anon_sym_PIPE, - ACTIONS(7084), 1, anon_sym_extends, - ACTIONS(9236), 1, - anon_sym_RBRACK, - STATE(5613), 1, - sym_comment, - [183981] = 7, + [183220] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7082), 1, + ACTIONS(7071), 1, anon_sym_PIPE, - ACTIONS(7084), 1, + ACTIONS(7073), 1, anon_sym_extends, - ACTIONS(9238), 1, - anon_sym_RBRACK, - STATE(5614), 1, + ACTIONS(9157), 1, + anon_sym_COLON, + STATE(5428), 1, sym_comment, - [184003] = 6, + [183242] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, + ACTIONS(9121), 1, anon_sym_from, - STATE(5615), 1, + STATE(5429), 1, sym_comment, - STATE(6663), 1, + STATE(6515), 1, sym__from_clause, - ACTIONS(9240), 2, + ACTIONS(5878), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184023] = 6, + [183262] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, - anon_sym_COMMA, - STATE(5616), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(5430), 1, sym_comment, - STATE(5723), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9242), 2, + STATE(6747), 1, + sym__from_clause, + ACTIONS(9159), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184043] = 6, + [183282] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, - anon_sym_COMMA, - STATE(5617), 1, + ACTIONS(9115), 1, + anon_sym_with, + STATE(5431), 1, sym_comment, - STATE(5723), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9244), 2, + STATE(6506), 1, + sym_import_attribute, + ACTIONS(9161), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184063] = 6, + [183302] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, + ACTIONS(9115), 1, anon_sym_with, - STATE(5618), 1, + STATE(5432), 1, sym_comment, - STATE(6652), 1, + STATE(6505), 1, sym_import_attribute, - ACTIONS(9246), 2, + ACTIONS(9163), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184083] = 6, + [183322] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, + ACTIONS(9115), 1, anon_sym_with, - STATE(5619), 1, + ACTIONS(9165), 1, + anon_sym_SEMI, + ACTIONS(9167), 1, + sym__automatic_semicolon, + STATE(5433), 1, sym_comment, - STATE(6651), 1, + STATE(6504), 1, sym_import_attribute, - ACTIONS(9248), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184103] = 6, + [183344] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, + ACTIONS(9131), 1, anon_sym_COMMA, - STATE(5620), 1, + STATE(5434), 1, sym_comment, - STATE(5643), 1, + STATE(5598), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9250), 2, + ACTIONS(9169), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184123] = 6, + [183364] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9252), 1, - anon_sym_LBRACE, - ACTIONS(9254), 1, + ACTIONS(9131), 1, anon_sym_COMMA, - ACTIONS(9257), 1, - anon_sym_LBRACE_PIPE, - STATE(5621), 2, + STATE(5435), 1, sym_comment, - aux_sym_extends_type_clause_repeat1, - [184143] = 7, + STATE(5598), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9171), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183384] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, + ACTIONS(9115), 1, anon_sym_with, - ACTIONS(9259), 1, - anon_sym_SEMI, - ACTIONS(9261), 1, - sym__automatic_semicolon, - STATE(5622), 1, + STATE(5436), 1, sym_comment, - STATE(6841), 1, + STATE(6931), 1, sym_import_attribute, - [184165] = 6, + ACTIONS(9173), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183404] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(9175), 1, + anon_sym_RBRACK, + STATE(5437), 1, + sym_comment, + [183426] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8095), 1, + anon_sym_DOT, + ACTIONS(9177), 1, + anon_sym_COMMA, + ACTIONS(9179), 1, + anon_sym_GT, + STATE(5438), 1, + sym_comment, + STATE(6264), 1, + aux_sym_type_arguments_repeat1, + [183448] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, + ACTIONS(9115), 1, anon_sym_with, - STATE(5623), 1, + STATE(5439), 1, sym_comment, - STATE(6834), 1, + STATE(6945), 1, sym_import_attribute, - ACTIONS(9263), 2, + ACTIONS(9181), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184185] = 6, + [183468] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - STATE(5624), 1, + STATE(5440), 1, sym_comment, - STATE(6830), 1, - sym_import_attribute, - ACTIONS(9265), 2, + ACTIONS(3242), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(9183), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184205] = 6, + [183486] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8125), 1, - anon_sym_EQ, - STATE(5625), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(4384), 1, + sym_formal_parameters, + STATE(5441), 1, sym_comment, - STATE(6979), 1, - sym__initializer, - ACTIONS(9267), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [184225] = 7, + STATE(6341), 1, + sym_type_parameters, + [183508] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(9269), 1, - anon_sym_COLON, - STATE(5626), 1, + ACTIONS(9131), 1, + anon_sym_COMMA, + STATE(5442), 1, sym_comment, - [184247] = 6, + STATE(5632), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9185), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183528] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, + ACTIONS(9131), 1, anon_sym_COMMA, - STATE(5627), 1, + STATE(5443), 1, sym_comment, - STATE(5645), 1, + STATE(5631), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9271), 2, + ACTIONS(9187), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184267] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [183548] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9273), 1, - anon_sym_DQUOTE, - STATE(5606), 1, - aux_sym_string_repeat1, - STATE(5628), 1, - sym_comment, - ACTIONS(9140), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [184287] = 6, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9115), 1, + anon_sym_with, + ACTIONS(9189), 1, + anon_sym_SEMI, + ACTIONS(9191), 1, + sym__automatic_semicolon, + STATE(5444), 1, + sym_comment, + STATE(6429), 1, + sym_import_attribute, + [183570] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9273), 1, - anon_sym_SQUOTE, - STATE(5596), 1, - aux_sym_string_repeat2, - STATE(5629), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7075), 1, + anon_sym_LPAREN, + ACTIONS(7081), 1, + anon_sym_LT, + STATE(4009), 1, + sym_arguments, + STATE(4133), 1, + sym_type_arguments, + STATE(5445), 1, sym_comment, - ACTIONS(9106), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [184307] = 7, + [183592] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7082), 1, + ACTIONS(7071), 1, anon_sym_PIPE, - ACTIONS(7084), 1, + ACTIONS(7073), 1, anon_sym_extends, - ACTIONS(9275), 1, - anon_sym_QMARK, - STATE(5630), 1, + ACTIONS(9193), 1, + anon_sym_RPAREN, + STATE(5446), 1, sym_comment, - [184329] = 7, + [183614] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(5631), 1, + ACTIONS(9197), 1, + anon_sym_COMMA, + ACTIONS(9195), 2, + anon_sym_LBRACE, + anon_sym_implements, + STATE(5447), 2, sym_comment, - STATE(6919), 1, - sym_type_parameters, - STATE(7648), 1, - sym_formal_parameters, - [184351] = 7, + aux_sym_extends_clause_repeat1, + [183632] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7082), 1, + ACTIONS(7071), 1, anon_sym_PIPE, - ACTIONS(7084), 1, + ACTIONS(7073), 1, anon_sym_extends, - ACTIONS(9277), 1, + ACTIONS(9200), 1, anon_sym_RBRACK, - STATE(5632), 1, + STATE(5448), 1, sym_comment, - [184373] = 6, + [183654] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(5633), 1, + ACTIONS(9202), 1, + anon_sym_EQ, + ACTIONS(9204), 1, + anon_sym_COMMA, + ACTIONS(9206), 1, + anon_sym_RBRACK, + STATE(5449), 1, sym_comment, - STATE(6817), 1, - sym__from_clause, - ACTIONS(5822), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184393] = 7, + STATE(5972), 1, + aux_sym_array_pattern_repeat1, + [183676] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9208), 1, + anon_sym_DQUOTE, + STATE(5450), 1, + sym_comment, + STATE(5625), 1, + aux_sym_string_repeat1, + ACTIONS(9113), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [183696] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7082), 1, + ACTIONS(7071), 1, anon_sym_PIPE, - ACTIONS(7084), 1, + ACTIONS(7073), 1, anon_sym_extends, - ACTIONS(9279), 1, + ACTIONS(9210), 1, anon_sym_RBRACK, - STATE(5634), 1, + STATE(5451), 1, sym_comment, - [184415] = 6, + [183718] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9281), 1, + ACTIONS(9208), 1, anon_sym_SQUOTE, - STATE(5556), 1, - aux_sym_string_repeat2, - STATE(5635), 1, + STATE(5452), 1, sym_comment, - ACTIONS(9106), 2, + STATE(5614), 1, + aux_sym_string_repeat2, + ACTIONS(9143), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184435] = 6, + [183738] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, - anon_sym_LPAREN, - ACTIONS(4867), 1, - anon_sym_BQUOTE, - STATE(5636), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(9212), 1, + anon_sym_COLON, + STATE(5453), 1, sym_comment, - STATE(2680), 2, - sym_template_string, - sym_arguments, - [184455] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [183760] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8125), 1, - anon_sym_EQ, - STATE(5637), 1, - sym_comment, - STATE(6656), 1, - sym__initializer, - ACTIONS(9283), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [184475] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(5638), 1, + ACTIONS(9214), 1, + anon_sym_DQUOTE, + STATE(5454), 1, sym_comment, - STATE(6612), 1, - sym__from_clause, - ACTIONS(5874), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184495] = 7, + STATE(5460), 1, + aux_sym_string_repeat1, + ACTIONS(9113), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [183780] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(4590), 1, - sym_formal_parameters, - STATE(5639), 1, + ACTIONS(9214), 1, + anon_sym_SQUOTE, + STATE(5455), 1, sym_comment, - STATE(6587), 1, - sym_type_parameters, - [184517] = 6, + STATE(5461), 1, + aux_sym_string_repeat2, + ACTIONS(9143), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [183800] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - STATE(5640), 1, + ACTIONS(7937), 1, + anon_sym_const, + ACTIONS(9216), 1, + sym_identifier, + ACTIONS(9218), 1, + anon_sym_GT, + STATE(5456), 1, sym_comment, - STATE(6596), 1, - sym_import_attribute, - ACTIONS(9285), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184537] = 6, + STATE(6618), 1, + sym_type_parameter, + [183822] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - STATE(5641), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(5457), 1, sym_comment, - STATE(6592), 1, - sym_import_attribute, - ACTIONS(9287), 2, + STATE(6384), 1, + sym__from_clause, + ACTIONS(9220), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184557] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - ACTIONS(9289), 1, - anon_sym_SEMI, - ACTIONS(9291), 1, - sym__automatic_semicolon, - STATE(5642), 1, - sym_comment, - STATE(6586), 1, - sym_import_attribute, - [184579] = 6, + [183842] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, + ACTIONS(9131), 1, anon_sym_COMMA, - STATE(5643), 1, + STATE(5458), 1, sym_comment, - STATE(5723), 1, + STATE(5465), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9293), 2, + ACTIONS(9222), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184599] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(9295), 1, - anon_sym_RBRACK, - STATE(5644), 1, - sym_comment, - [184621] = 6, + [183862] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, + ACTIONS(9131), 1, anon_sym_COMMA, - STATE(5645), 1, + STATE(5459), 1, sym_comment, - STATE(5723), 1, + STATE(5466), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9297), 2, + ACTIONS(9224), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184641] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8159), 1, - anon_sym_DOT, - ACTIONS(9299), 1, - anon_sym_COMMA, - ACTIONS(9301), 1, - anon_sym_GT, - STATE(5646), 1, - sym_comment, - STATE(6127), 1, - aux_sym_type_arguments_repeat1, - [184663] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(5647), 1, - sym_comment, - STATE(6955), 1, - sym_type_parameters, - STATE(7273), 1, - sym_formal_parameters, - [184685] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8159), 1, - anon_sym_DOT, - ACTIONS(9303), 1, - anon_sym_COMMA, - ACTIONS(9305), 1, - anon_sym_GT, - STATE(5648), 1, - sym_comment, - STATE(6447), 1, - aux_sym_type_arguments_repeat1, - [184707] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9307), 1, - anon_sym_SQUOTE, - STATE(5596), 1, - aux_sym_string_repeat2, - STATE(5649), 1, - sym_comment, - ACTIONS(9106), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [184727] = 6, + [183882] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9307), 1, + ACTIONS(9226), 1, anon_sym_DQUOTE, - STATE(5606), 1, - aux_sym_string_repeat1, - STATE(5650), 1, + STATE(5460), 1, sym_comment, - ACTIONS(9140), 2, + STATE(5625), 1, + aux_sym_string_repeat1, + ACTIONS(9113), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184747] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9110), 1, - anon_sym_EQ, - ACTIONS(9112), 1, - anon_sym_COMMA, - ACTIONS(9309), 1, - anon_sym_RBRACK, - STATE(5651), 1, - sym_comment, - STATE(6306), 1, - aux_sym_array_pattern_repeat1, - [184769] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9311), 1, - anon_sym_EQ, - STATE(5652), 1, - sym_comment, - STATE(6680), 1, - sym__initializer, - ACTIONS(7470), 2, - anon_sym_in, - anon_sym_of, - [184789] = 6, + [183902] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9281), 1, - anon_sym_DQUOTE, - STATE(5587), 1, - aux_sym_string_repeat1, - STATE(5653), 1, + ACTIONS(9226), 1, + anon_sym_SQUOTE, + STATE(5461), 1, sym_comment, - ACTIONS(9140), 2, - sym_unescaped_double_string_fragment, + STATE(5614), 1, + aux_sym_string_repeat2, + ACTIONS(9143), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [184809] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9313), 1, - anon_sym_COMMA, - ACTIONS(5296), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(5654), 2, - sym_comment, - aux_sym_sequence_expression_repeat1, - [184827] = 7, + [183922] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - ACTIONS(9316), 1, - anon_sym_SEMI, - ACTIONS(9318), 1, - sym__automatic_semicolon, - STATE(5655), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(9228), 1, + anon_sym_RPAREN, + STATE(5462), 1, sym_comment, - STATE(6539), 1, - sym_import_attribute, - [184849] = 7, + [183944] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7058), 1, + ACTIONS(5394), 1, anon_sym_LPAREN, - ACTIONS(7064), 1, + ACTIONS(9230), 1, anon_sym_LT, - STATE(4149), 1, - sym_arguments, - STATE(4293), 1, + STATE(2737), 1, sym_type_arguments, - STATE(5656), 1, + STATE(2738), 1, + sym_arguments, + STATE(5463), 1, sym_comment, - [184871] = 7, + [183966] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(9320), 1, - anon_sym_RPAREN, - STATE(5657), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(5464), 1, sym_comment, - [184893] = 6, + STATE(6410), 1, + sym__from_clause, + ACTIONS(5923), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183986] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, + ACTIONS(9131), 1, anon_sym_COMMA, - STATE(5616), 1, - aux_sym_variable_declaration_repeat1, - STATE(5658), 1, + STATE(5465), 1, sym_comment, - ACTIONS(9322), 2, + STATE(5598), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9232), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184913] = 6, + [184006] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, + ACTIONS(9131), 1, anon_sym_COMMA, - STATE(5617), 1, - aux_sym_variable_declaration_repeat1, - STATE(5659), 1, + STATE(5466), 1, sym_comment, - ACTIONS(9324), 2, + STATE(5598), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9234), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184933] = 6, + [184026] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, + ACTIONS(9115), 1, anon_sym_with, - STATE(5660), 1, + ACTIONS(9236), 1, + anon_sym_SEMI, + ACTIONS(9238), 1, + sym__automatic_semicolon, + STATE(5467), 1, sym_comment, - STATE(6703), 1, + STATE(6499), 1, sym_import_attribute, - ACTIONS(9326), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184953] = 6, + [184048] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - STATE(5661), 1, + ACTIONS(8095), 1, + anon_sym_DOT, + ACTIONS(9240), 1, + anon_sym_COMMA, + ACTIONS(9242), 1, + anon_sym_GT, + STATE(5468), 1, sym_comment, - STATE(6702), 1, - sym_import_attribute, - ACTIONS(9328), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184973] = 5, + STATE(6274), 1, + aux_sym_type_arguments_repeat1, + [184070] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9176), 1, - sym_escape_sequence, - STATE(5662), 1, + STATE(5469), 1, sym_comment, - ACTIONS(9330), 3, + ACTIONS(9244), 4, sym__template_chars, + sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR_LBRACE, - [184991] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(5663), 1, - sym_comment, - STATE(6875), 1, - sym__from_clause, - ACTIONS(9333), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185011] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(5664), 1, - sym_comment, - STATE(6682), 1, - sym__from_clause, - ACTIONS(9335), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185031] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(9337), 1, - anon_sym_QMARK, - STATE(5665), 1, - sym_comment, - [185053] = 7, + [184086] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(5666), 1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(9246), 1, + anon_sym_class, + STATE(4771), 1, + aux_sym_export_statement_repeat1, + STATE(5410), 1, + sym_decorator, + STATE(5470), 1, sym_comment, - STATE(6939), 1, - sym_type_parameters, - STATE(7348), 1, - sym_formal_parameters, - [185075] = 7, + [184108] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7082), 1, + ACTIONS(7071), 1, anon_sym_PIPE, - ACTIONS(7084), 1, + ACTIONS(7073), 1, anon_sym_extends, - ACTIONS(9339), 1, - anon_sym_RBRACK, - STATE(5667), 1, - sym_comment, - [185097] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9226), 1, - sym__glimmer_template_content, - ACTIONS(9228), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(2707), 1, - sym_glimmer_closing_tag, - STATE(5608), 1, - aux_sym_glimmer_template_repeat1, - STATE(5668), 1, + ACTIONS(9248), 1, + anon_sym_RPAREN, + STATE(5471), 1, sym_comment, - [185119] = 7, + [184130] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, + ACTIONS(4791), 1, anon_sym_LPAREN, - ACTIONS(7164), 1, + ACTIONS(9250), 1, anon_sym_LT, - STATE(5669), 1, + STATE(2324), 1, + sym_arguments, + STATE(2325), 1, + sym_type_arguments, + STATE(5472), 1, sym_comment, - STATE(7068), 1, - sym_type_parameters, - STATE(7352), 1, - sym_formal_parameters, - [185141] = 6, + [184152] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(5670), 1, + ACTIONS(9252), 1, + anon_sym_EQ, + STATE(5473), 1, sym_comment, - STATE(6511), 1, - sym__from_clause, - ACTIONS(5529), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185161] = 7, + STATE(6858), 1, + sym__initializer, + ACTIONS(7499), 2, + anon_sym_in, + anon_sym_of, + [184172] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7082), 1, + ACTIONS(7071), 1, anon_sym_PIPE, - ACTIONS(7084), 1, + ACTIONS(7073), 1, anon_sym_extends, - ACTIONS(9341), 1, - anon_sym_RBRACK, - STATE(5671), 1, + ACTIONS(9254), 1, + anon_sym_QMARK, + STATE(5474), 1, sym_comment, - [185183] = 6, + [184194] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9343), 1, - anon_sym_SQUOTE, - STATE(5649), 1, - aux_sym_string_repeat2, - STATE(5672), 1, + ACTIONS(9256), 1, + anon_sym_DQUOTE, + STATE(5475), 1, sym_comment, - ACTIONS(9106), 2, - sym_unescaped_single_string_fragment, + STATE(5482), 1, + aux_sym_string_repeat1, + ACTIONS(9113), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [185203] = 6, + [184214] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9343), 1, - anon_sym_DQUOTE, - STATE(5650), 1, - aux_sym_string_repeat1, - STATE(5673), 1, + ACTIONS(9256), 1, + anon_sym_SQUOTE, + STATE(5476), 1, sym_comment, - ACTIONS(9140), 2, - sym_unescaped_double_string_fragment, + STATE(5483), 1, + aux_sym_string_repeat2, + ACTIONS(9143), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [185223] = 7, + [184234] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(9345), 1, - anon_sym_RBRACK, - STATE(5674), 1, + ACTIONS(9115), 1, + anon_sym_with, + ACTIONS(9258), 1, + anon_sym_SEMI, + ACTIONS(9260), 1, + sym__automatic_semicolon, + STATE(5477), 1, sym_comment, - [185245] = 7, + STATE(6887), 1, + sym_import_attribute, + [184256] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(9347), 1, - anon_sym_COLON, - STATE(5675), 1, + ACTIONS(9131), 1, + anon_sym_COMMA, + STATE(5478), 1, sym_comment, - [185267] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5484), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9262), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184276] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9349), 1, - sym_html_character_reference, - ACTIONS(9352), 1, - anon_sym_SQUOTE, - ACTIONS(9354), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(5676), 2, - sym_comment, - aux_sym__jsx_string_repeat2, - [185287] = 6, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5394), 1, + anon_sym_LPAREN, + ACTIONS(5434), 1, + anon_sym_BQUOTE, + STATE(5479), 1, + sym_comment, + STATE(3118), 2, + sym_template_string, + sym_arguments, + [184296] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9357), 1, - sym_html_character_reference, - ACTIONS(9360), 1, - anon_sym_DQUOTE, - ACTIONS(9362), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(5677), 2, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8095), 1, + anon_sym_DOT, + ACTIONS(9264), 1, + anon_sym_COMMA, + ACTIONS(9266), 1, + anon_sym_GT, + STATE(5480), 1, sym_comment, - aux_sym__jsx_string_repeat1, - [185307] = 6, + STATE(6326), 1, + aux_sym_type_arguments_repeat1, + [184318] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, + ACTIONS(9131), 1, anon_sym_COMMA, - STATE(5678), 1, + STATE(5481), 1, sym_comment, - STATE(5723), 1, + STATE(5485), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9365), 2, + ACTIONS(9268), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185327] = 6, + [184338] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9367), 1, + ACTIONS(9270), 1, anon_sym_DQUOTE, - STATE(5679), 1, + STATE(5482), 1, sym_comment, - STATE(5691), 1, + STATE(5625), 1, aux_sym_string_repeat1, - ACTIONS(9140), 2, + ACTIONS(9113), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [185347] = 6, + [184358] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9367), 1, + ACTIONS(9270), 1, anon_sym_SQUOTE, - STATE(5680), 1, + STATE(5483), 1, sym_comment, - STATE(5693), 1, + STATE(5614), 1, aux_sym_string_repeat2, - ACTIONS(9106), 2, + ACTIONS(9143), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [185367] = 4, + [184378] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5681), 1, - sym_comment, - ACTIONS(9369), 4, - anon_sym_as, + ACTIONS(9131), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - [185383] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(5682), 1, + STATE(5484), 1, sym_comment, - STATE(6567), 1, - sym__from_clause, - ACTIONS(9371), 2, + STATE(5598), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9272), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185403] = 6, + [184398] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, + ACTIONS(9131), 1, anon_sym_COMMA, - STATE(5683), 1, + STATE(5485), 1, sym_comment, - STATE(5723), 1, + STATE(5598), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9373), 2, + ACTIONS(9274), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185423] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9375), 1, - sym_identifier, - STATE(4762), 1, - sym_nested_type_identifier, - STATE(5684), 1, - sym_comment, - STATE(5695), 1, - sym_generic_type, - STATE(7295), 1, - sym_nested_identifier, - [185445] = 7, + [184418] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(9377), 1, - anon_sym_COLON, - STATE(5685), 1, + ACTIONS(8095), 1, + anon_sym_DOT, + ACTIONS(9276), 1, + anon_sym_COMMA, + ACTIONS(9278), 1, + anon_sym_GT, + STATE(5486), 1, sym_comment, - [185467] = 6, + STATE(6017), 1, + aux_sym_type_arguments_repeat1, + [184440] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, + ACTIONS(8095), 1, + anon_sym_DOT, + ACTIONS(9280), 1, anon_sym_COMMA, - STATE(5686), 1, + ACTIONS(9282), 1, + anon_sym_GT, + STATE(5487), 1, sym_comment, - STATE(5704), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9379), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185487] = 6, + STATE(6229), 1, + aux_sym_type_arguments_repeat1, + [184462] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9128), 1, - anon_sym_COMMA, - STATE(5687), 1, + ACTIONS(9284), 1, + sym__glimmer_template_content, + ACTIONS(9286), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(3143), 1, + sym_glimmer_closing_tag, + STATE(5488), 1, sym_comment, - STATE(5705), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9381), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185507] = 7, + STATE(6069), 1, + aux_sym_glimmer_template_repeat1, + [184484] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(5688), 1, + ACTIONS(7937), 1, + anon_sym_const, + ACTIONS(9216), 1, + sym_identifier, + ACTIONS(9288), 1, + anon_sym_GT, + STATE(5489), 1, sym_comment, - STATE(7060), 1, - sym_type_parameters, - STATE(7380), 1, - sym_formal_parameters, - [185529] = 4, + STATE(6618), 1, + sym_type_parameter, + [184506] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(5689), 1, + ACTIONS(9290), 1, + anon_sym_DQUOTE, + STATE(5490), 1, sym_comment, - ACTIONS(9383), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [185545] = 7, + STATE(5492), 1, + aux_sym_string_repeat1, + ACTIONS(9113), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184526] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(9385), 1, - anon_sym_RPAREN, - STATE(5690), 1, + ACTIONS(9290), 1, + anon_sym_SQUOTE, + STATE(5491), 1, sym_comment, - [185567] = 6, + STATE(5493), 1, + aux_sym_string_repeat2, + ACTIONS(9143), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184546] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9387), 1, + ACTIONS(9292), 1, anon_sym_DQUOTE, - STATE(5606), 1, - aux_sym_string_repeat1, - STATE(5691), 1, + STATE(5492), 1, sym_comment, - ACTIONS(9140), 2, + STATE(5625), 1, + aux_sym_string_repeat1, + ACTIONS(9113), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [185587] = 7, + [184566] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(9292), 1, + anon_sym_SQUOTE, + STATE(5493), 1, + sym_comment, + STATE(5614), 1, + aux_sym_string_repeat2, + ACTIONS(9143), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184586] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4179), 1, - anon_sym_LPAREN, - ACTIONS(7042), 1, - anon_sym_LT, - STATE(4024), 1, - sym_arguments, - STATE(4171), 1, - sym_type_arguments, - STATE(5692), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9294), 1, + anon_sym_DQUOTE, + STATE(5494), 1, sym_comment, - [185609] = 6, + STATE(5498), 1, + aux_sym_string_repeat1, + ACTIONS(9113), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184606] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9387), 1, + ACTIONS(9294), 1, anon_sym_SQUOTE, - STATE(5596), 1, - aux_sym_string_repeat2, - STATE(5693), 1, + STATE(5495), 1, sym_comment, - ACTIONS(9106), 2, + STATE(5499), 1, + aux_sym_string_repeat2, + ACTIONS(9143), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [185629] = 7, + [184626] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(9389), 1, - anon_sym_class, - STATE(4768), 1, - aux_sym_export_statement_repeat1, - STATE(5694), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(9296), 1, + anon_sym_RBRACK, + STATE(5496), 1, sym_comment, - STATE(5700), 1, - sym_decorator, - [185651] = 7, + [184648] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8211), 1, - anon_sym_COMMA, - ACTIONS(8232), 1, - anon_sym_LBRACE, - ACTIONS(8234), 1, - anon_sym_LBRACE_PIPE, - STATE(5695), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(9298), 1, + anon_sym_RBRACK, + STATE(5497), 1, sym_comment, - STATE(5776), 1, - aux_sym_extends_type_clause_repeat1, - [185673] = 4, + [184670] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(5696), 1, + ACTIONS(9300), 1, + anon_sym_DQUOTE, + STATE(5498), 1, sym_comment, - ACTIONS(9391), 4, - sym__template_chars, + STATE(5625), 1, + aux_sym_string_repeat1, + ACTIONS(9113), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [185689] = 7, + [184690] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7918), 1, - anon_sym_const, - ACTIONS(9142), 1, - sym_identifier, - ACTIONS(9393), 1, - anon_sym_GT, - STATE(5697), 1, + ACTIONS(9300), 1, + anon_sym_SQUOTE, + STATE(5499), 1, sym_comment, - STATE(6849), 1, - sym_type_parameter, - [185711] = 6, + STATE(5614), 1, + aux_sym_string_repeat2, + ACTIONS(9143), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184710] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4514), 1, - anon_sym_COLON, - ACTIONS(7214), 1, - anon_sym_EQ, - STATE(5698), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(9302), 1, + anon_sym_QMARK, + STATE(5500), 1, sym_comment, - ACTIONS(9395), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [185731] = 7, + [184732] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - ACTIONS(9397), 1, - anon_sym_SEMI, - ACTIONS(9399), 1, - sym__automatic_semicolon, - STATE(5699), 1, + ACTIONS(9244), 1, + sym_escape_sequence, + STATE(5501), 1, sym_comment, - STATE(6792), 1, - sym_import_attribute, - [185753] = 4, + ACTIONS(9304), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [184750] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5700), 1, + ACTIONS(9131), 1, + anon_sym_COMMA, + STATE(5502), 1, sym_comment, - ACTIONS(9401), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [185769] = 6, + STATE(5598), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9307), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184770] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(5701), 1, + ACTIONS(9131), 1, + anon_sym_COMMA, + STATE(5503), 1, sym_comment, - STATE(6593), 1, - sym__from_clause, - ACTIONS(5854), 2, + STATE(5598), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9309), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185789] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9226), 1, - sym__glimmer_template_content, - ACTIONS(9234), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(3115), 1, - sym_glimmer_closing_tag, - STATE(5612), 1, - aux_sym_glimmer_template_repeat1, - STATE(5702), 1, - sym_comment, - [185811] = 5, + [184790] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9403), 1, - anon_sym_EQ_GT, - STATE(5703), 1, + ACTIONS(9115), 1, + anon_sym_with, + ACTIONS(9311), 1, + anon_sym_SEMI, + ACTIONS(9313), 1, + sym__automatic_semicolon, + STATE(5504), 1, sym_comment, - ACTIONS(4514), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [185829] = 6, + STATE(6382), 1, + sym_import_attribute, + [184812] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, - anon_sym_COMMA, - STATE(5704), 1, + ACTIONS(9115), 1, + anon_sym_with, + STATE(5505), 1, sym_comment, - STATE(5723), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9405), 2, + STATE(6393), 1, + sym_import_attribute, + ACTIONS(9315), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185849] = 6, + [184832] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, - anon_sym_COMMA, - STATE(5705), 1, + ACTIONS(9115), 1, + anon_sym_with, + STATE(5506), 1, sym_comment, - STATE(5723), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9407), 2, + STATE(6394), 1, + sym_import_attribute, + ACTIONS(9317), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185869] = 5, + [184852] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(9319), 1, + anon_sym_DQUOTE, + STATE(5507), 1, + sym_comment, + STATE(5510), 1, + aux_sym_string_repeat1, + ACTIONS(9113), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184872] = 7, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9409), 1, - anon_sym_EQ_GT, - STATE(5706), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9284), 1, + sym__glimmer_template_content, + ACTIONS(9286), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(3067), 1, + sym_glimmer_closing_tag, + STATE(5488), 1, + aux_sym_glimmer_template_repeat1, + STATE(5508), 1, sym_comment, - ACTIONS(4514), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [185887] = 6, + [184894] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9319), 1, + anon_sym_SQUOTE, + STATE(5509), 1, + sym_comment, + STATE(5511), 1, + aux_sym_string_repeat2, + ACTIONS(9143), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184914] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9411), 1, + ACTIONS(9321), 1, anon_sym_DQUOTE, - STATE(5707), 1, + STATE(5510), 1, sym_comment, - STATE(5769), 1, + STATE(5625), 1, aux_sym_string_repeat1, - ACTIONS(9140), 2, + ACTIONS(9113), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [185907] = 6, + [184934] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9411), 1, + ACTIONS(9321), 1, anon_sym_SQUOTE, - STATE(5708), 1, + STATE(5511), 1, sym_comment, - STATE(5770), 1, + STATE(5614), 1, aux_sym_string_repeat2, - ACTIONS(9106), 2, + ACTIONS(9143), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [185927] = 4, + [184954] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5709), 1, + ACTIONS(9131), 1, + anon_sym_COMMA, + STATE(5512), 1, sym_comment, - ACTIONS(3080), 4, + STATE(5598), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9323), 2, sym__automatic_semicolon, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, - [185943] = 6, + [184974] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8133), 1, - anon_sym_EQ, - STATE(5710), 1, - sym_comment, - STATE(7033), 1, - sym_default_type, - ACTIONS(9413), 2, + ACTIONS(9131), 1, anon_sym_COMMA, - anon_sym_GT, - [185963] = 7, + STATE(5513), 1, + sym_comment, + STATE(5598), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9325), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184994] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8159), 1, - anon_sym_DOT, - ACTIONS(9415), 1, - anon_sym_COMMA, - ACTIONS(9417), 1, - anon_sym_GT, - STATE(5711), 1, + STATE(5514), 1, sym_comment, - STATE(6393), 1, - aux_sym_type_arguments_repeat1, - [185985] = 7, + ACTIONS(3118), 4, + sym__automatic_semicolon, + anon_sym_else, + anon_sym_while, + anon_sym_SEMI, + [185010] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, + ACTIONS(9115), 1, anon_sym_with, - ACTIONS(9419), 1, + ACTIONS(9327), 1, anon_sym_SEMI, - ACTIONS(9421), 1, + ACTIONS(9329), 1, sym__automatic_semicolon, - STATE(5712), 1, + STATE(5515), 1, sym_comment, - STATE(6968), 1, + STATE(6940), 1, sym_import_attribute, - [186007] = 4, + [185032] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5713), 1, + ACTIONS(9115), 1, + anon_sym_with, + STATE(5516), 1, sym_comment, - ACTIONS(3074), 4, + STATE(6941), 1, + sym_import_attribute, + ACTIONS(9331), 2, sym__automatic_semicolon, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, - [186023] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(5714), 1, - sym_comment, - STATE(7009), 1, - sym_type_parameters, - STATE(7271), 1, - sym_formal_parameters, - [186045] = 5, + [185052] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5715), 1, + ACTIONS(9115), 1, + anon_sym_with, + STATE(5517), 1, sym_comment, - ACTIONS(3348), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(9423), 2, + STATE(6947), 1, + sym_import_attribute, + ACTIONS(9333), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186063] = 7, + [185072] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7918), 1, - anon_sym_const, - ACTIONS(9142), 1, - sym_identifier, - ACTIONS(9425), 1, - anon_sym_GT, - STATE(5716), 1, + ACTIONS(9335), 1, + anon_sym_DQUOTE, + STATE(5518), 1, sym_comment, - STATE(6849), 1, - sym_type_parameter, - [186085] = 6, + STATE(5521), 1, + aux_sym_string_repeat1, + ACTIONS(9113), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [185092] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9427), 1, + ACTIONS(9335), 1, anon_sym_SQUOTE, - STATE(5596), 1, - aux_sym_string_repeat2, - STATE(5717), 1, + STATE(5519), 1, sym_comment, - ACTIONS(9106), 2, + STATE(5522), 1, + aux_sym_string_repeat2, + ACTIONS(9143), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [186105] = 6, + [185112] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(5520), 1, + sym_comment, + STATE(6962), 1, + sym__from_clause, + ACTIONS(5616), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185132] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9427), 1, + ACTIONS(9337), 1, anon_sym_DQUOTE, - STATE(5606), 1, - aux_sym_string_repeat1, - STATE(5718), 1, + STATE(5521), 1, sym_comment, - ACTIONS(9140), 2, + STATE(5625), 1, + aux_sym_string_repeat1, + ACTIONS(9113), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [186125] = 6, + [185152] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9429), 1, + ACTIONS(9337), 1, anon_sym_SQUOTE, - STATE(5717), 1, - aux_sym_string_repeat2, - STATE(5719), 1, + STATE(5522), 1, sym_comment, - ACTIONS(9106), 2, + STATE(5614), 1, + aux_sym_string_repeat2, + ACTIONS(9143), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [186145] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8834), 1, - anon_sym_RBRACE, - STATE(5720), 1, - sym_comment, - ACTIONS(5187), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [186163] = 6, + [185172] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9429), 1, + ACTIONS(9339), 1, anon_sym_DQUOTE, - STATE(5718), 1, - aux_sym_string_repeat1, - STATE(5721), 1, + STATE(5523), 1, sym_comment, - ACTIONS(9140), 2, + STATE(5527), 1, + aux_sym_string_repeat1, + ACTIONS(9113), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [186183] = 6, + [185192] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9431), 1, + ACTIONS(9341), 1, + sym_html_character_reference, + ACTIONS(9343), 1, anon_sym_SQUOTE, - STATE(5596), 1, - aux_sym_string_repeat2, - STATE(5722), 1, + ACTIONS(9345), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(5524), 1, sym_comment, - ACTIONS(9106), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [186203] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + STATE(5561), 1, + aux_sym__jsx_string_repeat2, + [185214] = 7, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9433), 1, - anon_sym_COMMA, - ACTIONS(9436), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(5723), 2, - sym_comment, - aux_sym_variable_declaration_repeat1, - [186221] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8159), 1, - anon_sym_DOT, - ACTIONS(9438), 1, - anon_sym_COMMA, - ACTIONS(9440), 1, - anon_sym_GT, - STATE(5724), 1, + ACTIONS(9343), 1, + anon_sym_DQUOTE, + ACTIONS(9347), 1, + sym_html_character_reference, + ACTIONS(9349), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(5525), 1, sym_comment, - STATE(5913), 1, - aux_sym_type_arguments_repeat1, - [186243] = 6, + STATE(5564), 1, + aux_sym__jsx_string_repeat1, + [185236] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, - anon_sym_COMMA, - STATE(5678), 1, - aux_sym_variable_declaration_repeat1, - STATE(5725), 1, + ACTIONS(9115), 1, + anon_sym_with, + STATE(5526), 1, sym_comment, - ACTIONS(9442), 2, + STATE(6363), 1, + sym_import_attribute, + ACTIONS(9351), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186263] = 6, + [185256] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9431), 1, + ACTIONS(9353), 1, anon_sym_DQUOTE, - STATE(5606), 1, - aux_sym_string_repeat1, - STATE(5726), 1, - sym_comment, - ACTIONS(9140), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [186283] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9444), 1, - anon_sym_SQUOTE, - STATE(5722), 1, - aux_sym_string_repeat2, - STATE(5727), 1, + STATE(5527), 1, sym_comment, - ACTIONS(9106), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [186303] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9444), 1, - anon_sym_DQUOTE, - STATE(5726), 1, + STATE(5625), 1, aux_sym_string_repeat1, - STATE(5728), 1, - sym_comment, - ACTIONS(9140), 2, + ACTIONS(9113), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [186323] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [185276] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9446), 1, - anon_sym_SQUOTE, - STATE(5596), 1, - aux_sym_string_repeat2, - STATE(5729), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(9355), 1, + anon_sym_RBRACK, + STATE(5528), 1, sym_comment, - ACTIONS(9106), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [186343] = 6, + [185298] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, + ACTIONS(9121), 1, anon_sym_from, - STATE(5730), 1, + STATE(5529), 1, sym_comment, - STATE(6523), 1, + STATE(6414), 1, sym__from_clause, - ACTIONS(9448), 2, + ACTIONS(5898), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186363] = 7, + [185318] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, + ACTIONS(7069), 1, anon_sym_AMP, - ACTIONS(7082), 1, + ACTIONS(7071), 1, anon_sym_PIPE, - ACTIONS(7084), 1, + ACTIONS(7073), 1, anon_sym_extends, - ACTIONS(9450), 1, - anon_sym_RPAREN, - STATE(5731), 1, + ACTIONS(9357), 1, + anon_sym_RBRACK, + STATE(5530), 1, sym_comment, - [186385] = 7, + [185340] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4129), 1, - anon_sym_LPAREN, - ACTIONS(6973), 1, - anon_sym_LT, - STATE(3804), 1, - sym_arguments, - STATE(3877), 1, - sym_type_arguments, - STATE(5732), 1, + ACTIONS(9353), 1, + anon_sym_SQUOTE, + STATE(5531), 1, sym_comment, - [186407] = 7, + STATE(5614), 1, + aux_sym_string_repeat2, + ACTIONS(9143), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [185360] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(2698), 1, - anon_sym_AT, - ACTIONS(9452), 1, - anon_sym_export, - STATE(4768), 1, - aux_sym_export_statement_repeat1, - STATE(5700), 1, - sym_decorator, - STATE(5733), 1, + ACTIONS(8065), 1, + anon_sym_COMMA, + ACTIONS(8567), 1, + anon_sym_LBRACE, + ACTIONS(8569), 1, + anon_sym_LBRACE_PIPE, + STATE(5424), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5532), 1, sym_comment, - [186429] = 6, + [185382] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9454), 1, + ACTIONS(9359), 1, anon_sym_SQUOTE, - STATE(5729), 1, - aux_sym_string_repeat2, - STATE(5734), 1, + STATE(5533), 1, sym_comment, - ACTIONS(9106), 2, + STATE(5614), 1, + aux_sym_string_repeat2, + ACTIONS(9143), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [186449] = 6, + [185402] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8133), 1, - anon_sym_EQ, - STATE(5735), 1, - sym_comment, - STATE(6835), 1, - sym_default_type, - ACTIONS(9456), 2, + ACTIONS(9361), 1, + anon_sym_LBRACE, + ACTIONS(9363), 1, anon_sym_COMMA, - anon_sym_GT, - [186469] = 6, + ACTIONS(9366), 1, + anon_sym_LBRACE_PIPE, + STATE(5534), 2, + sym_comment, + aux_sym_extends_type_clause_repeat1, + [185422] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9454), 1, + ACTIONS(9359), 1, anon_sym_DQUOTE, - STATE(5736), 1, + STATE(5535), 1, sym_comment, - STATE(5765), 1, + STATE(5625), 1, aux_sym_string_repeat1, - ACTIONS(9140), 2, + ACTIONS(9113), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [186489] = 6, + [185442] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9458), 1, - anon_sym_STAR, - ACTIONS(9460), 1, - anon_sym_LBRACE, - STATE(5737), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(9368), 1, + anon_sym_QMARK, + STATE(5536), 1, sym_comment, - STATE(7517), 2, - sym_namespace_import, - sym_named_imports, - [186509] = 6, + [185464] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9462), 1, - anon_sym_SQUOTE, - STATE(5596), 1, - aux_sym_string_repeat2, - STATE(5738), 1, + ACTIONS(9370), 1, + anon_sym_DQUOTE, + STATE(5537), 1, sym_comment, - ACTIONS(9106), 2, - sym_unescaped_single_string_fragment, + STATE(5539), 1, + aux_sym_string_repeat1, + ACTIONS(9113), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [186529] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [185484] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8125), 1, - anon_sym_EQ, - STATE(5739), 1, - sym_comment, - STATE(6996), 1, - sym__initializer, - ACTIONS(9464), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [186549] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9128), 1, - anon_sym_COMMA, - STATE(5683), 1, - aux_sym_variable_declaration_repeat1, - STATE(5740), 1, + ACTIONS(9370), 1, + anon_sym_SQUOTE, + STATE(5538), 1, sym_comment, - ACTIONS(9466), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186569] = 6, + STATE(5543), 1, + aux_sym_string_repeat2, + ACTIONS(9143), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [185504] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9462), 1, + ACTIONS(9372), 1, anon_sym_DQUOTE, - STATE(5606), 1, - aux_sym_string_repeat1, - STATE(5741), 1, + STATE(5539), 1, sym_comment, - ACTIONS(9140), 2, + STATE(5625), 1, + aux_sym_string_repeat1, + ACTIONS(9113), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [186589] = 7, + [185524] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - ACTIONS(9468), 1, - anon_sym_SEMI, - ACTIONS(9470), 1, - sym__automatic_semicolon, - STATE(5742), 1, + ACTIONS(9131), 1, + anon_sym_COMMA, + STATE(5512), 1, + aux_sym_variable_declaration_repeat1, + STATE(5540), 1, sym_comment, - STATE(6621), 1, - sym_import_attribute, - [186611] = 6, + ACTIONS(9374), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185544] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - STATE(5743), 1, + ACTIONS(9131), 1, + anon_sym_COMMA, + STATE(5513), 1, + aux_sym_variable_declaration_repeat1, + STATE(5541), 1, sym_comment, - STATE(6509), 1, - sym_import_attribute, - ACTIONS(9472), 2, + ACTIONS(9376), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186631] = 6, + [185564] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, + ACTIONS(9115), 1, anon_sym_with, - STATE(5744), 1, + STATE(5542), 1, sym_comment, - STATE(6642), 1, + STATE(6913), 1, sym_import_attribute, - ACTIONS(9474), 2, + ACTIONS(9378), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186651] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9208), 1, - anon_sym_COMMA, - STATE(5591), 1, - aux_sym_extends_clause_repeat1, - STATE(5745), 1, - sym_comment, - ACTIONS(9476), 2, - anon_sym_LBRACE, - anon_sym_implements, - [186671] = 6, + [185584] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9478), 1, - anon_sym_DQUOTE, - STATE(5746), 1, + ACTIONS(9372), 1, + anon_sym_SQUOTE, + STATE(5543), 1, sym_comment, - STATE(5760), 1, - aux_sym_string_repeat1, - ACTIONS(9140), 2, - sym_unescaped_double_string_fragment, + STATE(5614), 1, + aux_sym_string_repeat2, + ACTIONS(9143), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [186691] = 7, + [185604] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(9480), 1, - anon_sym_QMARK, - STATE(5747), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + ACTIONS(4865), 1, + anon_sym_BQUOTE, + STATE(5544), 1, sym_comment, - [186713] = 7, + STATE(2458), 2, + sym_template_string, + sym_arguments, + [185624] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - ACTIONS(9482), 1, - anon_sym_RBRACK, - STATE(5748), 1, + ACTIONS(9115), 1, + anon_sym_with, + STATE(5545), 1, sym_comment, - [186735] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6911), 1, + sym_import_attribute, + ACTIONS(9380), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185644] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9189), 1, - sym_html_character_reference, - ACTIONS(9193), 1, - sym_unescaped_double_jsx_string_fragment, - ACTIONS(9484), 1, - anon_sym_DQUOTE, - STATE(5592), 1, - aux_sym__jsx_string_repeat1, - STATE(5749), 1, - sym_comment, - [186757] = 7, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(5546), 1, + sym_comment, + ACTIONS(9382), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [185660] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9214), 1, - sym_html_character_reference, - ACTIONS(9216), 1, - sym_unescaped_single_jsx_string_fragment, - ACTIONS(9484), 1, - anon_sym_SQUOTE, - STATE(5604), 1, - aux_sym__jsx_string_repeat2, - STATE(5750), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(5547), 1, sym_comment, - [186779] = 6, + STATE(6373), 1, + sym__from_clause, + ACTIONS(9384), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185680] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9486), 1, - anon_sym_SQUOTE, - STATE(5738), 1, - aux_sym_string_repeat2, - STATE(5751), 1, + ACTIONS(7937), 1, + anon_sym_const, + ACTIONS(9216), 1, + sym_identifier, + ACTIONS(9386), 1, + anon_sym_GT, + STATE(5548), 1, sym_comment, - ACTIONS(9106), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [186799] = 6, + STATE(6618), 1, + sym_type_parameter, + [185702] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - STATE(5752), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(5549), 1, sym_comment, - STATE(6538), 1, - sym_import_attribute, - ACTIONS(9488), 2, + STATE(6897), 1, + sym__from_clause, + ACTIONS(9388), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186819] = 6, + [185722] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - STATE(5753), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(5550), 1, sym_comment, - STATE(6541), 1, - sym_import_attribute, - ACTIONS(9490), 2, + STATE(6826), 1, + sym__from_clause, + ACTIONS(5666), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186839] = 6, + [185742] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, - anon_sym_COMMA, - STATE(5754), 1, + STATE(5551), 1, sym_comment, - STATE(5783), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9492), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186859] = 6, + ACTIONS(9390), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + [185758] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, - anon_sym_COMMA, - STATE(5755), 1, + STATE(5552), 1, sym_comment, - STATE(5768), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9494), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186879] = 6, - ACTIONS(3), 1, + ACTIONS(8171), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [185774] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8105), 1, + anon_sym_EQ, + STATE(5553), 1, + sym_comment, + STATE(6749), 1, + sym_default_type, + ACTIONS(9392), 2, + anon_sym_COMMA, + anon_sym_GT, + [185794] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9486), 1, - anon_sym_DQUOTE, - STATE(5741), 1, - aux_sym_string_repeat1, - STATE(5756), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(5554), 1, sym_comment, - ACTIONS(9140), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [186899] = 6, - ACTIONS(3), 1, + STATE(6712), 1, + sym_type_parameters, + STATE(7192), 1, + sym_formal_parameters, + [185816] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8181), 1, + anon_sym_EQ, + STATE(5555), 1, + sym_comment, + STATE(6795), 1, + sym__initializer, + ACTIONS(9394), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [185836] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9478), 1, - anon_sym_SQUOTE, - STATE(5757), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(9396), 1, + anon_sym_RPAREN, + STATE(5556), 1, sym_comment, - STATE(5761), 1, - aux_sym_string_repeat2, - ACTIONS(9106), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [186919] = 6, + [185858] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, - anon_sym_COMMA, - STATE(5758), 1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(9398), 1, + anon_sym_class, + STATE(4771), 1, + aux_sym_export_statement_repeat1, + STATE(5410), 1, + sym_decorator, + STATE(5557), 1, sym_comment, - STATE(5762), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9496), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186939] = 6, + [185880] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, - anon_sym_COMMA, - STATE(5759), 1, + ACTIONS(4145), 1, + anon_sym_LPAREN, + ACTIONS(6978), 1, + anon_sym_LT, + STATE(3666), 1, + sym_arguments, + STATE(3713), 1, + sym_type_arguments, + STATE(5558), 1, sym_comment, - STATE(5763), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9498), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186959] = 6, + [185902] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9500), 1, - anon_sym_DQUOTE, - STATE(5606), 1, - aux_sym_string_repeat1, - STATE(5760), 1, + ACTIONS(9400), 1, + anon_sym_SQUOTE, + STATE(5559), 1, sym_comment, - ACTIONS(9140), 2, - sym_unescaped_double_string_fragment, + STATE(5614), 1, + aux_sym_string_repeat2, + ACTIONS(9143), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [186979] = 6, + [185922] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9500), 1, - anon_sym_SQUOTE, - STATE(5596), 1, - aux_sym_string_repeat2, - STATE(5761), 1, + ACTIONS(9400), 1, + anon_sym_DQUOTE, + STATE(5560), 1, sym_comment, - ACTIONS(9106), 2, - sym_unescaped_single_string_fragment, + STATE(5625), 1, + aux_sym_string_repeat1, + ACTIONS(9113), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [186999] = 6, + [185942] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9128), 1, - anon_sym_COMMA, - STATE(5723), 1, - aux_sym_variable_declaration_repeat1, - STATE(5762), 1, + ACTIONS(9341), 1, + sym_html_character_reference, + ACTIONS(9345), 1, + sym_unescaped_single_jsx_string_fragment, + ACTIONS(9402), 1, + anon_sym_SQUOTE, + STATE(5561), 1, sym_comment, - ACTIONS(9502), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187019] = 6, + STATE(5581), 1, + aux_sym__jsx_string_repeat2, + [185964] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, - anon_sym_COMMA, - STATE(5723), 1, - aux_sym_variable_declaration_repeat1, - STATE(5763), 1, + ACTIONS(8272), 1, + anon_sym_finally, + STATE(5562), 1, sym_comment, - ACTIONS(9504), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187039] = 7, + STATE(6508), 1, + sym_finally_clause, + ACTIONS(3120), 2, + anon_sym_else, + anon_sym_while, + [185984] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8159), 1, - anon_sym_DOT, - ACTIONS(9506), 1, - anon_sym_COMMA, - ACTIONS(9508), 1, - anon_sym_GT, - STATE(5764), 1, + ACTIONS(2698), 1, + anon_sym_AT, + ACTIONS(9404), 1, + anon_sym_export, + STATE(4771), 1, + aux_sym_export_statement_repeat1, + STATE(5410), 1, + sym_decorator, + STATE(5563), 1, sym_comment, - STATE(6327), 1, - aux_sym_type_arguments_repeat1, - [187061] = 6, + [186006] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9446), 1, + ACTIONS(9347), 1, + sym_html_character_reference, + ACTIONS(9349), 1, + sym_unescaped_double_jsx_string_fragment, + ACTIONS(9402), 1, anon_sym_DQUOTE, - STATE(5606), 1, - aux_sym_string_repeat1, - STATE(5765), 1, - sym_comment, - ACTIONS(9140), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [187081] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - STATE(5766), 1, + STATE(5564), 1, sym_comment, - STATE(6591), 1, - sym_import_attribute, - ACTIONS(9510), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187101] = 7, + STATE(5577), 1, + aux_sym__jsx_string_repeat1, + [186028] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9512), 1, - sym_identifier, - STATE(5380), 1, - sym_nested_type_identifier, - STATE(5767), 1, + ACTIONS(9406), 1, + anon_sym_SQUOTE, + STATE(5533), 1, + aux_sym_string_repeat2, + STATE(5565), 1, sym_comment, - STATE(5795), 1, - sym_generic_type, - STATE(7295), 1, - sym_nested_identifier, - [187123] = 6, + ACTIONS(9143), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [186048] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, + ACTIONS(9202), 1, + anon_sym_EQ, + ACTIONS(9204), 1, anon_sym_COMMA, - STATE(5723), 1, - aux_sym_variable_declaration_repeat1, - STATE(5768), 1, + ACTIONS(9408), 1, + anon_sym_RBRACK, + STATE(5566), 1, sym_comment, - ACTIONS(9514), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187143] = 6, + STATE(6208), 1, + aux_sym_array_pattern_repeat1, + [186070] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9516), 1, + ACTIONS(9406), 1, anon_sym_DQUOTE, - STATE(5606), 1, + STATE(5535), 1, aux_sym_string_repeat1, - STATE(5769), 1, + STATE(5567), 1, sym_comment, - ACTIONS(9140), 2, + ACTIONS(9113), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [187163] = 6, + [186090] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9516), 1, + ACTIONS(9410), 1, anon_sym_SQUOTE, - STATE(5596), 1, + STATE(5452), 1, aux_sym_string_repeat2, - STATE(5770), 1, + STATE(5568), 1, sym_comment, - ACTIONS(9106), 2, + ACTIONS(9143), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [187183] = 6, + [186110] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9115), 1, + anon_sym_with, + STATE(5569), 1, + sym_comment, + STATE(6365), 1, + sym_import_attribute, + ACTIONS(9412), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186130] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9178), 1, + ACTIONS(9339), 1, anon_sym_SQUOTE, - STATE(5596), 1, + STATE(5531), 1, aux_sym_string_repeat2, - STATE(5771), 1, + STATE(5570), 1, sym_comment, - ACTIONS(9106), 2, + ACTIONS(9143), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [187203] = 7, + [186150] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8211), 1, + ACTIONS(9131), 1, anon_sym_COMMA, - ACTIONS(9518), 1, - anon_sym_LBRACE, - ACTIONS(9520), 1, - anon_sym_LBRACE_PIPE, - STATE(5621), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5772), 1, + STATE(5571), 1, sym_comment, - [187225] = 6, + STATE(5633), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9414), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186170] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - STATE(5773), 1, + ACTIONS(9131), 1, + anon_sym_COMMA, + STATE(5572), 1, sym_comment, - STATE(6590), 1, - sym_import_attribute, - ACTIONS(9522), 2, + STATE(5634), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9416), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187245] = 7, + [186190] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8211), 1, + ACTIONS(9420), 1, anon_sym_COMMA, - ACTIONS(9524), 1, - anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_LBRACE_PIPE, - STATE(5621), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5774), 1, + STATE(5447), 1, + aux_sym_extends_clause_repeat1, + STATE(5573), 1, sym_comment, - [187267] = 6, - ACTIONS(3), 1, + ACTIONS(9418), 2, + anon_sym_LBRACE, + anon_sym_implements, + [186210] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(9422), 1, + anon_sym_COLON, + STATE(5574), 1, + sym_comment, + [186232] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9528), 1, - anon_sym_DQUOTE, - STATE(5775), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9131), 1, + anon_sym_COMMA, + STATE(5502), 1, + aux_sym_variable_declaration_repeat1, + STATE(5575), 1, sym_comment, - STATE(5781), 1, - aux_sym_string_repeat1, - ACTIONS(9140), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [187287] = 7, + ACTIONS(9424), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186252] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8211), 1, + ACTIONS(9131), 1, anon_sym_COMMA, - ACTIONS(9524), 1, - anon_sym_LBRACE, - ACTIONS(9526), 1, - anon_sym_LBRACE_PIPE, - STATE(5621), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5776), 1, + STATE(5503), 1, + aux_sym_variable_declaration_repeat1, + STATE(5576), 1, + sym_comment, + ACTIONS(9426), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186272] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9428), 1, + sym_html_character_reference, + ACTIONS(9431), 1, + anon_sym_DQUOTE, + ACTIONS(9433), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(5577), 2, sym_comment, - [187309] = 6, + aux_sym__jsx_string_repeat1, + [186292] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, + ACTIONS(9115), 1, anon_sym_with, - STATE(5777), 1, + STATE(5578), 1, sym_comment, - STATE(6697), 1, + STATE(6568), 1, sym_import_attribute, - ACTIONS(9530), 2, + ACTIONS(9436), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187329] = 6, + [186312] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, + ACTIONS(9115), 1, anon_sym_with, - STATE(5778), 1, + STATE(5579), 1, sym_comment, - STATE(6704), 1, + STATE(6569), 1, sym_import_attribute, - ACTIONS(9532), 2, + ACTIONS(9438), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187349] = 7, + [186332] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9118), 1, - anon_sym_with, - ACTIONS(9534), 1, - anon_sym_SEMI, - ACTIONS(9536), 1, - sym__automatic_semicolon, - STATE(5779), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(9440), 1, + anon_sym_COLON, + STATE(5580), 1, sym_comment, - STATE(6706), 1, - sym_import_attribute, - [187371] = 6, + [186354] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9528), 1, + ACTIONS(9442), 1, + sym_html_character_reference, + ACTIONS(9445), 1, anon_sym_SQUOTE, - STATE(5780), 1, + ACTIONS(9447), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(5581), 2, sym_comment, - STATE(5782), 1, - aux_sym_string_repeat2, - ACTIONS(9106), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [187391] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + aux_sym__jsx_string_repeat2, + [186374] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9538), 1, - anon_sym_DQUOTE, - STATE(5606), 1, - aux_sym_string_repeat1, - STATE(5781), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8181), 1, + anon_sym_EQ, + STATE(5582), 1, sym_comment, - ACTIONS(9140), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [187411] = 6, + STATE(6400), 1, + sym__initializer, + ACTIONS(9450), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [186394] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9538), 1, - anon_sym_SQUOTE, - STATE(5596), 1, - aux_sym_string_repeat2, - STATE(5782), 1, + ACTIONS(9410), 1, + anon_sym_DQUOTE, + STATE(5450), 1, + aux_sym_string_repeat1, + STATE(5583), 1, sym_comment, - ACTIONS(9106), 2, - sym_unescaped_single_string_fragment, + ACTIONS(9113), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [187431] = 6, + [186414] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9128), 1, - anon_sym_COMMA, - STATE(5723), 1, - aux_sym_variable_declaration_repeat1, - STATE(5783), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(5584), 1, sym_comment, - ACTIONS(9540), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187451] = 6, + STATE(6756), 1, + sym_type_parameters, + STATE(7416), 1, + sym_formal_parameters, + [186436] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(5784), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(9452), 1, + anon_sym_RBRACK, + STATE(5585), 1, sym_comment, - STATE(6645), 1, - sym__from_clause, - ACTIONS(5892), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187471] = 6, + [186458] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9542), 1, + ACTIONS(9454), 1, anon_sym_DQUOTE, - STATE(5589), 1, - aux_sym_string_repeat1, - STATE(5785), 1, + STATE(5586), 1, sym_comment, - ACTIONS(9140), 2, + STATE(5625), 1, + aux_sym_string_repeat1, + ACTIONS(9113), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [187491] = 6, + [186478] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9542), 1, + ACTIONS(9454), 1, anon_sym_SQUOTE, - STATE(5771), 1, - aux_sym_string_repeat2, - STATE(5786), 1, + STATE(5587), 1, sym_comment, - ACTIONS(9106), 2, + STATE(5614), 1, + aux_sym_string_repeat2, + ACTIONS(9143), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [187511] = 7, + [186498] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - ACTIONS(7164), 1, - anon_sym_LT, - STATE(5787), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(9456), 1, + anon_sym_RBRACK, + STATE(5588), 1, sym_comment, - STATE(6925), 1, - sym_type_parameters, - STATE(7554), 1, - sym_formal_parameters, - [187533] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [186520] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7170), 1, - anon_sym_type, - ACTIONS(9544), 1, - sym_identifier, - STATE(5788), 1, - sym_comment, - STATE(6754), 1, - sym__import_identifier, - [187552] = 6, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(9458), 1, + anon_sym_RBRACK, + STATE(5589), 1, + sym_comment, + [186542] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9546), 1, - sym_identifier, - STATE(2054), 1, - sym_decorator_member_expression, - STATE(2166), 1, - sym_decorator_call_expression, - STATE(5789), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(9460), 1, + anon_sym_RBRACK, + STATE(5590), 1, sym_comment, - [187571] = 4, + [186564] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5790), 1, + ACTIONS(5498), 1, + anon_sym_COMMA, + STATE(5591), 1, sym_comment, - ACTIONS(9548), 3, + STATE(5609), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(8291), 2, sym__automatic_semicolon, - anon_sym_with, anon_sym_SEMI, - [187586] = 4, + [186584] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5791), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(9462), 1, + anon_sym_QMARK, + STATE(5592), 1, sym_comment, - ACTIONS(9550), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187601] = 4, + [186606] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5792), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(5593), 1, sym_comment, - ACTIONS(9552), 3, + STATE(6594), 1, + sym__from_clause, + ACTIONS(9464), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [187616] = 5, + [186626] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9554), 1, - anon_sym_COMMA, - ACTIONS(9557), 1, - anon_sym_RBRACE, - STATE(5793), 2, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(5594), 1, sym_comment, - aux_sym_enum_body_repeat1, - [187633] = 6, + STATE(6776), 1, + sym_type_parameters, + STATE(7408), 1, + sym_formal_parameters, + [186648] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(9466), 1, + anon_sym_EQ_GT, + STATE(5595), 1, + sym_comment, + ACTIONS(4518), 3, + anon_sym_LPAREN, anon_sym_LT, - ACTIONS(9559), 1, - anon_sym_EQ, - STATE(5794), 1, + anon_sym_QMARK, + [186666] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9284), 1, + sym__glimmer_template_content, + ACTIONS(9468), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(2558), 1, + sym_glimmer_closing_tag, + STATE(5596), 1, sym_comment, - STATE(7630), 1, - sym_type_parameters, - [187652] = 5, + STATE(6069), 1, + aux_sym_glimmer_template_repeat1, + [186688] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8991), 1, - anon_sym_LBRACE, - STATE(5795), 1, + ACTIONS(9470), 1, + anon_sym_EQ_GT, + STATE(5597), 1, sym_comment, - ACTIONS(8993), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [187669] = 4, + ACTIONS(4518), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [186706] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5796), 1, - sym_comment, - ACTIONS(9550), 3, - sym__automatic_semicolon, + ACTIONS(9472), 1, anon_sym_COMMA, + ACTIONS(9475), 2, + sym__automatic_semicolon, anon_sym_SEMI, - [187684] = 4, + STATE(5598), 2, + sym_comment, + aux_sym_variable_declaration_repeat1, + [186724] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(5797), 1, + ACTIONS(9284), 1, + sym__glimmer_template_content, + ACTIONS(9468), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(2497), 1, + sym_glimmer_closing_tag, + STATE(5596), 1, + aux_sym_glimmer_template_repeat1, + STATE(5599), 1, sym_comment, - ACTIONS(9561), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187699] = 4, + [186746] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5798), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(5600), 1, sym_comment, - ACTIONS(9561), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187714] = 4, + STATE(6772), 1, + sym_type_parameters, + STATE(7316), 1, + sym_formal_parameters, + [186768] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9477), 1, + anon_sym_SQUOTE, + STATE(5559), 1, + aux_sym_string_repeat2, + STATE(5601), 1, + sym_comment, + ACTIONS(9143), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [186788] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5799), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + ACTIONS(9479), 1, + anon_sym_RPAREN, + STATE(5602), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187729] = 4, + [186810] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5800), 1, + ACTIONS(4159), 1, + anon_sym_LPAREN, + ACTIONS(7055), 1, + anon_sym_LT, + STATE(3879), 1, + sym_arguments, + STATE(4025), 1, + sym_type_arguments, + STATE(5603), 1, sym_comment, - ACTIONS(9550), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187744] = 5, + [186832] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9567), 1, - sym_unescaped_single_jsx_string_fragment, - STATE(5801), 1, + ACTIONS(9477), 1, + anon_sym_DQUOTE, + STATE(5560), 1, + aux_sym_string_repeat1, + STATE(5604), 1, sym_comment, - ACTIONS(9565), 2, - sym_html_character_reference, - anon_sym_SQUOTE, - [187761] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9113), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [186852] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9571), 1, - sym_unescaped_double_jsx_string_fragment, - STATE(5802), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9115), 1, + anon_sym_with, + ACTIONS(9481), 1, + anon_sym_SEMI, + ACTIONS(9483), 1, + sym__automatic_semicolon, + STATE(5605), 1, sym_comment, - ACTIONS(9569), 2, - sym_html_character_reference, - anon_sym_DQUOTE, - [187778] = 4, + STATE(6484), 1, + sym_import_attribute, + [186874] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5803), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(5606), 1, sym_comment, - ACTIONS(9573), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [187793] = 6, + STATE(6781), 1, + sym_type_parameters, + STATE(7350), 1, + sym_formal_parameters, + [186896] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9575), 1, - anon_sym_LPAREN, - ACTIONS(9577), 1, - anon_sym_await, - STATE(94), 1, - sym__for_header, - STATE(5804), 1, + ACTIONS(9115), 1, + anon_sym_with, + ACTIONS(9485), 1, + anon_sym_SEMI, + ACTIONS(9487), 1, + sym__automatic_semicolon, + STATE(5607), 1, sym_comment, - [187812] = 4, + STATE(6556), 1, + sym_import_attribute, + [186918] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5805), 1, + ACTIONS(4518), 1, + anon_sym_COLON, + ACTIONS(7219), 1, + anon_sym_EQ, + STATE(5608), 1, sym_comment, - ACTIONS(9550), 3, - sym__automatic_semicolon, + ACTIONS(9489), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [186938] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9491), 1, anon_sym_COMMA, + ACTIONS(5214), 2, + sym__automatic_semicolon, anon_sym_SEMI, - [187827] = 5, + STATE(5609), 2, + sym_comment, + aux_sym_sequence_expression_repeat1, + [186956] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9579), 1, + ACTIONS(8095), 1, + anon_sym_DOT, + ACTIONS(9494), 1, anon_sym_COMMA, - ACTIONS(9582), 1, - anon_sym_RBRACK, - STATE(5806), 2, + ACTIONS(9496), 1, + anon_sym_GT, + STATE(5610), 1, sym_comment, - aux_sym_tuple_type_repeat1, - [187844] = 4, + STATE(6197), 1, + aux_sym_type_arguments_repeat1, + [186978] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9498), 1, + sym_identifier, + STATE(4781), 1, + sym_nested_type_identifier, + STATE(5532), 1, + sym_generic_type, + STATE(5611), 1, + sym_comment, + STATE(7112), 1, + sym_nested_identifier, + [187000] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5807), 1, + STATE(5612), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187859] = 4, + ACTIONS(9500), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [187016] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5808), 1, + STATE(5613), 1, sym_comment, - ACTIONS(9584), 3, + ACTIONS(3084), 4, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [187874] = 4, + [187032] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9502), 1, + anon_sym_SQUOTE, + ACTIONS(9504), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + STATE(5614), 2, + sym_comment, + aux_sym_string_repeat2, + [187050] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7937), 1, + anon_sym_const, + ACTIONS(9216), 1, + sym_identifier, + ACTIONS(9507), 1, + anon_sym_GT, + STATE(5615), 1, + sym_comment, + STATE(6618), 1, + sym_type_parameter, + [187072] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5809), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(5616), 1, sym_comment, - ACTIONS(9550), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187889] = 5, + STATE(6339), 1, + sym_statement_block, + ACTIONS(2061), 2, + anon_sym_else, + anon_sym_while, + [187092] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9586), 1, + ACTIONS(8105), 1, anon_sym_EQ, - STATE(5810), 1, + STATE(5617), 1, sym_comment, - ACTIONS(9588), 2, + STATE(6625), 1, + sym_default_type, + ACTIONS(9509), 2, anon_sym_COMMA, - anon_sym_from, - [187906] = 6, + anon_sym_GT, + [187112] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(9590), 1, - anon_sym_EQ, - STATE(5811), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(5618), 1, sym_comment, - STATE(7608), 1, + STATE(6937), 1, sym_type_parameters, - [187925] = 4, + STATE(7371), 1, + sym_formal_parameters, + [187134] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5812), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(5619), 1, sym_comment, - ACTIONS(9592), 3, + STATE(6406), 1, + sym__from_clause, + ACTIONS(5851), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [187940] = 4, + [187154] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5813), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(5620), 1, sym_comment, - ACTIONS(9592), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [187955] = 6, + STATE(6942), 1, + sym_type_parameters, + STATE(7290), 1, + sym_formal_parameters, + [187176] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8008), 1, - anon_sym_COMMA, - ACTIONS(9594), 1, - anon_sym_RBRACE, - STATE(5814), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(5621), 1, sym_comment, - STATE(6240), 1, - aux_sym_object_repeat1, - [187974] = 6, + STATE(6660), 1, + sym_type_parameters, + STATE(6991), 1, + sym_formal_parameters, + [187198] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8008), 1, + ACTIONS(9420), 1, anon_sym_COMMA, - ACTIONS(9596), 1, - anon_sym_RBRACE, - STATE(5815), 1, + STATE(5573), 1, + aux_sym_extends_clause_repeat1, + STATE(5622), 1, sym_comment, - STATE(6240), 1, - aux_sym_object_repeat1, - [187993] = 4, + ACTIONS(9511), 2, + anon_sym_LBRACE, + anon_sym_implements, + [187218] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5816), 1, + STATE(5623), 1, sym_comment, - ACTIONS(9552), 3, + ACTIONS(6748), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188008] = 4, + [187234] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5817), 1, + ACTIONS(8095), 1, + anon_sym_DOT, + ACTIONS(9513), 1, + anon_sym_COMMA, + ACTIONS(9515), 1, + anon_sym_GT, + STATE(5624), 1, sym_comment, - ACTIONS(9598), 3, - sym__automatic_semicolon, + STATE(5730), 1, + aux_sym_type_arguments_repeat1, + [187256] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9517), 1, + anon_sym_DQUOTE, + ACTIONS(9519), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + STATE(5625), 2, + sym_comment, + aux_sym_string_repeat1, + [187274] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9522), 1, anon_sym_COMMA, - anon_sym_SEMI, - [188023] = 4, + ACTIONS(5906), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(5626), 2, + sym_comment, + aux_sym_array_repeat1, + [187292] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5818), 1, + ACTIONS(8181), 1, + anon_sym_EQ, + STATE(5627), 1, sym_comment, - ACTIONS(9600), 3, - sym__automatic_semicolon, + STATE(6713), 1, + sym__initializer, + ACTIONS(9525), 2, anon_sym_COMMA, + anon_sym_RPAREN, + [187312] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9115), 1, + anon_sym_with, + STATE(5628), 1, + sym_comment, + STATE(6435), 1, + sym_import_attribute, + ACTIONS(9527), 2, + sym__automatic_semicolon, anon_sym_SEMI, - [188038] = 6, + [187332] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9602), 1, - sym_identifier, - ACTIONS(9604), 1, + ACTIONS(9111), 1, + anon_sym_SQUOTE, + STATE(5587), 1, + aux_sym_string_repeat2, + STATE(5629), 1, + sym_comment, + ACTIONS(9143), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [187352] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9115), 1, + anon_sym_with, + ACTIONS(9529), 1, anon_sym_SEMI, - ACTIONS(9606), 1, + ACTIONS(9531), 1, sym__automatic_semicolon, - STATE(5819), 1, + STATE(5630), 1, sym_comment, - [188057] = 4, + STATE(6440), 1, + sym_import_attribute, + [187374] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5820), 1, + ACTIONS(9131), 1, + anon_sym_COMMA, + STATE(5598), 1, + aux_sym_variable_declaration_repeat1, + STATE(5631), 1, sym_comment, - ACTIONS(9608), 3, + ACTIONS(9533), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [188072] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [187394] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9610), 1, - sym_identifier, - ACTIONS(9612), 1, - anon_sym_SEMI, - ACTIONS(9614), 1, - sym__automatic_semicolon, - STATE(5821), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9131), 1, + anon_sym_COMMA, + STATE(5598), 1, + aux_sym_variable_declaration_repeat1, + STATE(5632), 1, sym_comment, - [188091] = 6, + ACTIONS(9535), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187414] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9616), 1, + ACTIONS(9131), 1, anon_sym_COMMA, - ACTIONS(9618), 1, - anon_sym_RPAREN, - STATE(5822), 1, + STATE(5598), 1, + aux_sym_variable_declaration_repeat1, + STATE(5633), 1, sym_comment, - STATE(6370), 1, - aux_sym_formal_parameters_repeat1, - [188110] = 5, + ACTIONS(9537), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187434] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9620), 1, - anon_sym_EQ, - STATE(5823), 1, - sym_comment, - ACTIONS(9588), 2, + ACTIONS(9131), 1, anon_sym_COMMA, - anon_sym_from, - [188127] = 6, + STATE(5598), 1, + aux_sym_variable_declaration_repeat1, + STATE(5634), 1, + sym_comment, + ACTIONS(9539), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187454] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9622), 1, + ACTIONS(9541), 1, + anon_sym_STAR, + ACTIONS(9543), 1, anon_sym_LBRACE, - ACTIONS(9624), 1, - anon_sym_LPAREN, - STATE(1127), 1, - sym_statement_block, - STATE(5824), 1, + STATE(5635), 1, + sym_comment, + STATE(7149), 2, + sym_namespace_import, + sym_named_imports, + [187474] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9115), 1, + anon_sym_with, + ACTIONS(9545), 1, + anon_sym_SEMI, + ACTIONS(9547), 1, + sym__automatic_semicolon, + STATE(5636), 1, sym_comment, - [188146] = 6, + STATE(6760), 1, + sym_import_attribute, + [187496] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, + ACTIONS(7173), 1, anon_sym_LT, - ACTIONS(9626), 1, - anon_sym_EQ, - STATE(5825), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(5637), 1, sym_comment, - STATE(7580), 1, + STATE(6863), 1, sym_type_parameters, - [188165] = 4, + STATE(7020), 1, + sym_formal_parameters, + [187518] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5826), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(5638), 1, sym_comment, - ACTIONS(9550), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188180] = 4, + STATE(6857), 1, + sym_type_parameters, + STATE(7053), 1, + sym_formal_parameters, + [187540] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5827), 1, + ACTIONS(9115), 1, + anon_sym_with, + STATE(5639), 1, sym_comment, - ACTIONS(9628), 3, + STATE(6782), 1, + sym_import_attribute, + ACTIONS(9549), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [188195] = 4, + [187560] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5828), 1, + ACTIONS(9115), 1, + anon_sym_with, + STATE(5640), 1, sym_comment, - ACTIONS(9563), 3, + STATE(6783), 1, + sym_import_attribute, + ACTIONS(9551), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [188210] = 4, + [187580] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5829), 1, + ACTIONS(7969), 1, + anon_sym_DOT, + STATE(5641), 1, sym_comment, - ACTIONS(9628), 3, + ACTIONS(9553), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [188225] = 6, + [187597] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9555), 1, + sym_identifier, + ACTIONS(9557), 1, + anon_sym_LBRACE, + STATE(5520), 1, + sym_export_clause, + STATE(5642), 1, + sym_comment, + [187616] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9630), 1, + ACTIONS(9559), 1, anon_sym_COMMA, - ACTIONS(9632), 1, + ACTIONS(9561), 1, anon_sym_RPAREN, - STATE(5822), 1, - aux_sym_formal_parameters_repeat1, - STATE(5830), 1, + STATE(5643), 1, sym_comment, - [188244] = 4, + STATE(6142), 1, + aux_sym_formal_parameters_repeat1, + [187635] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5831), 1, + STATE(5644), 1, sym_comment, - ACTIONS(9608), 3, + ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188259] = 5, + [187650] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9634), 1, - anon_sym_EQ, - STATE(5832), 1, + STATE(5645), 1, sym_comment, - ACTIONS(4255), 2, + ACTIONS(9565), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [188276] = 4, + anon_sym_SEMI, + [187665] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5833), 1, + STATE(5646), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188291] = 5, + [187680] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9637), 1, - anon_sym_EQ, - STATE(5834), 1, + STATE(5647), 1, sym_comment, - ACTIONS(9588), 2, + ACTIONS(9567), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [188308] = 6, + anon_sym_SEMI, + [187695] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(9639), 1, - anon_sym_EQ, - STATE(5835), 1, + ACTIONS(9569), 1, + anon_sym_LBRACE, + ACTIONS(9571), 1, + anon_sym_LPAREN, + STATE(1045), 1, + sym_statement_block, + STATE(5648), 1, sym_comment, - STATE(7546), 1, - sym_type_parameters, - [188327] = 4, + [187714] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5836), 1, + STATE(5649), 1, sym_comment, - ACTIONS(9584), 3, + ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188342] = 4, + [187729] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5837), 1, + STATE(5650), 1, sym_comment, - ACTIONS(9641), 3, + ACTIONS(9573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188357] = 4, + [187744] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5838), 1, + ACTIONS(9575), 1, + anon_sym_LPAREN, + ACTIONS(9577), 1, + anon_sym_await, + STATE(78), 1, + sym__for_header, + STATE(5651), 1, + sym_comment, + [187763] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9579), 1, + sym_identifier, + ACTIONS(9581), 1, + anon_sym_SEMI, + ACTIONS(9583), 1, + sym__automatic_semicolon, + STATE(5652), 1, + sym_comment, + [187782] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5653), 1, sym_comment, - ACTIONS(9592), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188372] = 4, + [187797] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9587), 1, + sym_identifier, + ACTIONS(9589), 1, + anon_sym_SEMI, + ACTIONS(9591), 1, + sym__automatic_semicolon, + STATE(5654), 1, + sym_comment, + [187816] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5839), 1, + STATE(5655), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9567), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188387] = 4, + [187831] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5840), 1, + STATE(5656), 1, sym_comment, - ACTIONS(9643), 3, + ACTIONS(9567), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188402] = 6, + [187846] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8008), 1, - anon_sym_COMMA, - ACTIONS(9645), 1, - anon_sym_RBRACE, - STATE(5841), 1, + STATE(5657), 1, sym_comment, - STATE(6240), 1, - aux_sym_object_repeat1, - [188421] = 6, + ACTIONS(9567), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187861] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8008), 1, - anon_sym_COMMA, - ACTIONS(9645), 1, - anon_sym_RBRACE, - STATE(5815), 1, - aux_sym_object_repeat1, - STATE(5842), 1, + STATE(5658), 1, sym_comment, - [188440] = 4, + ACTIONS(9585), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [187876] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5843), 1, + STATE(5659), 1, sym_comment, - ACTIONS(9647), 3, + ACTIONS(9565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188455] = 4, + [187891] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5844), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(9593), 1, + anon_sym_EQ, + STATE(5660), 1, + sym_comment, + STATE(7447), 1, + sym_type_parameters, + [187910] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5661), 1, sym_comment, - ACTIONS(9552), 3, + ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188470] = 4, + [187925] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5845), 1, + STATE(5662), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188485] = 6, + [187940] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8195), 1, + ACTIONS(8011), 1, anon_sym_LBRACE, - ACTIONS(8197), 1, + ACTIONS(8013), 1, anon_sym_LBRACE_PIPE, - STATE(1424), 1, + STATE(1277), 1, sym_object_type, - STATE(5846), 1, + STATE(5663), 1, sym_comment, - [188504] = 4, + [187959] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5847), 1, + STATE(5664), 1, sym_comment, - ACTIONS(9649), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188519] = 4, + [187974] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5848), 1, + STATE(5665), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188534] = 4, + [187989] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5849), 1, - sym_comment, - ACTIONS(9643), 3, - sym__automatic_semicolon, + ACTIONS(8025), 1, anon_sym_COMMA, - anon_sym_SEMI, - [188549] = 6, + ACTIONS(9595), 1, + anon_sym_RBRACE, + STATE(5666), 1, + sym_comment, + STATE(5895), 1, + aux_sym_object_repeat1, + [188008] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, + ACTIONS(5797), 1, anon_sym_COMMA, - ACTIONS(5932), 1, + ACTIONS(5855), 1, anon_sym_RPAREN, - STATE(5850), 1, + STATE(5667), 1, sym_comment, - STATE(5906), 1, + STATE(5723), 1, aux_sym_array_repeat1, - [188568] = 6, + [188027] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, + ACTIONS(5797), 1, anon_sym_COMMA, - ACTIONS(5932), 1, + ACTIONS(5855), 1, anon_sym_RPAREN, - STATE(5607), 1, + STATE(5626), 1, aux_sym_array_repeat1, - STATE(5851), 1, + STATE(5668), 1, sym_comment, - [188587] = 6, + [188046] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7058), 1, + ACTIONS(7075), 1, anon_sym_LPAREN, - ACTIONS(9651), 1, + ACTIONS(9597), 1, anon_sym_DOT, - STATE(4899), 1, + STATE(4666), 1, sym_arguments, - STATE(5852), 1, + STATE(5669), 1, sym_comment, - [188606] = 4, + [188065] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5853), 1, - sym_comment, - ACTIONS(9628), 3, - sym__automatic_semicolon, + ACTIONS(8025), 1, anon_sym_COMMA, - anon_sym_SEMI, - [188621] = 4, + ACTIONS(9599), 1, + anon_sym_RBRACE, + STATE(5670), 1, + sym_comment, + STATE(5895), 1, + aux_sym_object_repeat1, + [188084] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5854), 1, + STATE(5671), 1, sym_comment, - ACTIONS(9653), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188636] = 4, + [188099] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5855), 1, + STATE(5672), 1, sym_comment, - ACTIONS(9655), 3, + ACTIONS(9565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188651] = 4, + [188114] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5856), 1, + STATE(5673), 1, sym_comment, - ACTIONS(9655), 3, + ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188666] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [188129] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9657), 1, - sym_identifier, - STATE(4640), 1, - sym_decorator_member_expression, - STATE(5603), 1, - sym_decorator_call_expression, - STATE(5857), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5674), 1, sym_comment, - [188685] = 4, + ACTIONS(9563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188144] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5858), 1, + STATE(5675), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188700] = 4, + [188159] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5859), 1, + STATE(5676), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188715] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [188174] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9659), 1, - sym_identifier, - STATE(3598), 1, - sym_decorator_member_expression, - STATE(3728), 1, - sym_decorator_call_expression, - STATE(5860), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9605), 1, + anon_sym_EQ, + STATE(5677), 1, sym_comment, - [188734] = 4, + ACTIONS(9607), 2, + anon_sym_COMMA, + anon_sym_from, + [188191] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5861), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(9609), 1, + anon_sym_EQ, + STATE(5678), 1, sym_comment, - ACTIONS(9647), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188749] = 4, + STATE(7425), 1, + sym_type_parameters, + [188210] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5862), 1, + STATE(5679), 1, sym_comment, - ACTIONS(9647), 3, + ACTIONS(9565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188764] = 6, + [188225] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9053), 1, + ACTIONS(8828), 1, anon_sym_DOT, - ACTIONS(9661), 1, + ACTIONS(9611), 1, anon_sym_COLON, - ACTIONS(9663), 1, + ACTIONS(9613), 1, anon_sym_GT, - STATE(5863), 1, + STATE(5680), 1, sym_comment, - [188783] = 4, + [188244] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5864), 1, + STATE(5681), 1, sym_comment, - ACTIONS(9647), 3, + ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188798] = 4, + [188259] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5865), 1, + STATE(5682), 1, sym_comment, - ACTIONS(3316), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [188813] = 6, + ACTIONS(9563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188274] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9665), 1, - anon_sym_COMMA, - ACTIONS(9667), 1, - anon_sym_GT, - STATE(5866), 1, + STATE(5683), 1, sym_comment, - STATE(6172), 1, - aux_sym_type_parameters_repeat1, - [188832] = 4, + ACTIONS(9573), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188289] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5867), 1, + STATE(5684), 1, sym_comment, - ACTIONS(9647), 3, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188847] = 6, + [188304] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - ACTIONS(9669), 1, - anon_sym_as, - STATE(5868), 1, - sym_comment, - STATE(6917), 1, - sym__from_clause, - [188866] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9671), 1, - sym_identifier, - ACTIONS(9673), 1, - anon_sym_LBRACE, - STATE(5670), 1, - sym_export_clause, - STATE(5869), 1, + STATE(5685), 1, sym_comment, - [188885] = 4, + ACTIONS(9585), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188319] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5870), 1, + STATE(5686), 1, sym_comment, - ACTIONS(9647), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188900] = 4, + [188334] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5871), 1, + STATE(5687), 1, sym_comment, - ACTIONS(9675), 3, + ACTIONS(9565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188915] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [188349] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9677), 1, - sym_identifier, - ACTIONS(9679), 1, - anon_sym_SEMI, - ACTIONS(9681), 1, - sym__automatic_semicolon, - STATE(5872), 1, - sym_comment, - [188934] = 6, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9683), 1, - sym_identifier, - ACTIONS(9685), 1, - anon_sym_SEMI, - ACTIONS(9687), 1, - sym__automatic_semicolon, - STATE(5873), 1, + STATE(5688), 1, sym_comment, - [188953] = 4, + ACTIONS(9563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188364] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5874), 1, + STATE(5689), 1, sym_comment, - ACTIONS(9689), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188968] = 4, + [188379] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5875), 1, + STATE(5690), 1, sym_comment, - ACTIONS(9691), 3, + ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188983] = 4, + [188394] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5876), 1, + STATE(5691), 1, sym_comment, - ACTIONS(9693), 3, + ACTIONS(9573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188998] = 4, + [188409] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9615), 1, + sym_identifier, + STATE(4566), 1, + sym_decorator_member_expression, + STATE(5552), 1, + sym_decorator_call_expression, + STATE(5692), 1, + sym_comment, + [188428] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5877), 1, + ACTIONS(9617), 1, + anon_sym_EQ, + STATE(5693), 1, sym_comment, - ACTIONS(9695), 3, - sym__automatic_semicolon, + ACTIONS(9607), 2, anon_sym_COMMA, - anon_sym_SEMI, - [189013] = 5, + anon_sym_from, + [188445] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(9619), 1, + anon_sym_EQ, + STATE(5694), 1, + sym_comment, + STATE(7397), 1, + sym_type_parameters, + [188464] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7968), 1, + ACTIONS(7967), 1, anon_sym_DOT, - STATE(5878), 1, + STATE(5695), 1, sym_comment, - ACTIONS(9697), 2, + ACTIONS(9621), 2, sym__automatic_semicolon, anon_sym_SEMI, - [189030] = 5, + [188481] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7942), 1, + ACTIONS(7969), 1, anon_sym_DOT, - STATE(5879), 1, + STATE(5696), 1, sym_comment, - ACTIONS(9697), 2, + ACTIONS(9621), 2, sym__automatic_semicolon, anon_sym_SEMI, - [189047] = 4, + [188498] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5880), 1, + STATE(5697), 1, sym_comment, - ACTIONS(9689), 3, + ACTIONS(9565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189062] = 4, + [188513] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5881), 1, + STATE(5698), 1, sym_comment, - ACTIONS(9643), 3, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189077] = 4, + [188528] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5882), 1, + STATE(5699), 1, sym_comment, - ACTIONS(9675), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189092] = 4, + [188543] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5883), 1, + STATE(5700), 1, sym_comment, - ACTIONS(3318), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [189107] = 4, + ACTIONS(9565), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188558] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5884), 1, + STATE(5701), 1, sym_comment, - ACTIONS(9699), 3, + ACTIONS(9573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189122] = 6, + [188573] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9701), 1, - anon_sym_LPAREN, - ACTIONS(9703), 1, - anon_sym_await, - STATE(85), 1, - sym__for_header, - STATE(5885), 1, + STATE(5702), 1, sym_comment, - [189141] = 4, + ACTIONS(9601), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188588] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5886), 1, + STATE(5703), 1, sym_comment, - ACTIONS(9693), 3, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189156] = 4, + [188603] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5887), 1, + STATE(5704), 1, sym_comment, - ACTIONS(9643), 3, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189171] = 4, + [188618] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5888), 1, + STATE(5705), 1, sym_comment, - ACTIONS(9693), 3, + ACTIONS(9565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189186] = 6, + [188633] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9705), 1, + ACTIONS(9623), 1, anon_sym_COMMA, - ACTIONS(9707), 1, + ACTIONS(9625), 1, anon_sym_RBRACK, - STATE(5889), 1, + STATE(5706), 1, sym_comment, - STATE(5944), 1, + STATE(5761), 1, aux_sym_tuple_type_repeat1, - [189205] = 4, + [188652] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5890), 1, + STATE(5707), 1, sym_comment, - ACTIONS(9675), 3, + ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189220] = 4, + [188667] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5891), 1, + STATE(5708), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189235] = 5, + [188682] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6531), 1, - sym__automatic_semicolon, - STATE(5892), 1, + STATE(5709), 1, sym_comment, - ACTIONS(2347), 2, - anon_sym_else, - anon_sym_while, - [189252] = 6, + ACTIONS(9563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188697] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7424), 1, + ACTIONS(7433), 1, anon_sym_AMP, - ACTIONS(7438), 1, + ACTIONS(7437), 1, anon_sym_extends, - ACTIONS(8698), 1, + ACTIONS(8790), 1, anon_sym_PIPE, - STATE(5893), 1, + STATE(5710), 1, sym_comment, - [189271] = 5, + [188716] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6539), 1, - sym__automatic_semicolon, - STATE(5894), 1, + STATE(5711), 1, sym_comment, - ACTIONS(2267), 2, - anon_sym_else, - anon_sym_while, - [189288] = 4, + ACTIONS(9573), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188731] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5895), 1, + STATE(5712), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189303] = 4, + [188746] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5896), 1, + STATE(5713), 1, sym_comment, - ACTIONS(9628), 3, + ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189318] = 4, + [188761] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5897), 1, + ACTIONS(9627), 1, + anon_sym_EQ, + STATE(5714), 1, sym_comment, - ACTIONS(9628), 3, - sym__automatic_semicolon, + ACTIONS(4287), 2, anon_sym_COMMA, - anon_sym_SEMI, - [189333] = 4, + anon_sym_RBRACK, + [188778] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5898), 1, + ACTIONS(9630), 1, + anon_sym_EQ, + STATE(5715), 1, sym_comment, - ACTIONS(9709), 3, - sym__automatic_semicolon, + ACTIONS(9607), 2, + anon_sym_COMMA, anon_sym_from, - anon_sym_SEMI, - [189348] = 6, + [188795] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8077), 1, - anon_sym_LBRACE, - ACTIONS(8079), 1, - anon_sym_LBRACE_PIPE, - STATE(1627), 1, - sym_object_type, - STATE(5899), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(9632), 1, + anon_sym_EQ, + STATE(5716), 1, sym_comment, - [189367] = 4, + STATE(7363), 1, + sym_type_parameters, + [188814] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5900), 1, + STATE(5717), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189382] = 4, + [188829] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5901), 1, + STATE(5718), 1, sym_comment, - ACTIONS(9628), 3, + ACTIONS(9565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189397] = 4, + [188844] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5902), 1, + STATE(5719), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189412] = 6, + [188859] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8195), 1, + ACTIONS(8011), 1, anon_sym_LBRACE, - ACTIONS(8197), 1, + ACTIONS(8013), 1, anon_sym_LBRACE_PIPE, - STATE(1485), 1, + STATE(1314), 1, sym_object_type, - STATE(5903), 1, + STATE(5720), 1, sym_comment, - [189431] = 6, + [188878] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, - anon_sym_COMMA, - ACTIONS(5924), 1, - anon_sym_RPAREN, - STATE(5904), 1, + STATE(5721), 1, sym_comment, - STATE(6159), 1, - aux_sym_array_repeat1, - [189450] = 6, + ACTIONS(9565), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [188893] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9711), 1, + ACTIONS(9634), 1, anon_sym_COMMA, - ACTIONS(9713), 1, + ACTIONS(9636), 1, anon_sym_RBRACE, - STATE(5905), 1, + STATE(5722), 1, sym_comment, - STATE(5953), 1, + STATE(5770), 1, aux_sym_enum_body_repeat1, - [189469] = 6, + [188912] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, + ACTIONS(5797), 1, anon_sym_COMMA, - ACTIONS(9715), 1, + ACTIONS(9638), 1, anon_sym_RPAREN, - STATE(5607), 1, + STATE(5626), 1, aux_sym_array_repeat1, - STATE(5906), 1, - sym_comment, - [189488] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(5907), 1, + STATE(5723), 1, sym_comment, - ACTIONS(9649), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189503] = 6, + [188931] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(9717), 1, - anon_sym_EQ, - STATE(5908), 1, + ACTIONS(9121), 1, + anon_sym_from, + ACTIONS(9640), 1, + anon_sym_as, + STATE(5724), 1, sym_comment, - STATE(7332), 1, - sym_type_parameters, - [189522] = 4, + STATE(6694), 1, + sym__from_clause, + [188950] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5909), 1, + STATE(5725), 1, sym_comment, - ACTIONS(9552), 3, + ACTIONS(9603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189537] = 6, + [188965] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9557), 1, + anon_sym_LBRACE, + ACTIONS(9642), 1, + sym_identifier, + STATE(5550), 1, + sym_export_clause, + STATE(5726), 1, + sym_comment, + [188984] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9719), 1, + ACTIONS(9644), 1, anon_sym_COMMA, - ACTIONS(9721), 1, + ACTIONS(9646), 1, anon_sym_GT, - STATE(5910), 1, + STATE(5727), 1, sym_comment, - STATE(5946), 1, + STATE(6079), 1, aux_sym_type_arguments_repeat1, - [189556] = 6, + [189003] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, - anon_sym_COMMA, - ACTIONS(5924), 1, - anon_sym_RPAREN, - STATE(5607), 1, - aux_sym_array_repeat1, - STATE(5911), 1, + STATE(5728), 1, sym_comment, - [189575] = 5, + ACTIONS(9563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189018] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6523), 1, - sym__automatic_semicolon, - STATE(5912), 1, + STATE(5729), 1, sym_comment, - ACTIONS(2311), 2, - anon_sym_else, - anon_sym_while, - [189592] = 6, + ACTIONS(9563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189033] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9723), 1, + ACTIONS(9648), 1, anon_sym_COMMA, - ACTIONS(9725), 1, + ACTIONS(9650), 1, anon_sym_GT, - STATE(5913), 1, + STATE(5730), 1, sym_comment, - STATE(5946), 1, + STATE(6079), 1, aux_sym_type_arguments_repeat1, - [189611] = 4, + [189052] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5914), 1, + STATE(5731), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189626] = 6, + [189067] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9727), 1, + ACTIONS(9652), 1, anon_sym_COMMA, - ACTIONS(9729), 1, + ACTIONS(9654), 1, anon_sym_GT, - STATE(5915), 1, + STATE(5732), 1, sym_comment, - STATE(5946), 1, + STATE(6079), 1, aux_sym_type_arguments_repeat1, - [189645] = 4, + [189086] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5916), 1, + STATE(5733), 1, sym_comment, - ACTIONS(9643), 3, + ACTIONS(9573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189660] = 5, + [189101] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9731), 1, - anon_sym_EQ, - STATE(5917), 1, + STATE(5734), 1, sym_comment, - ACTIONS(9588), 2, + ACTIONS(9585), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [189677] = 4, + anon_sym_SEMI, + [189116] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5918), 1, + STATE(5735), 1, sym_comment, - ACTIONS(9552), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189692] = 4, + [189131] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5919), 1, + STATE(5736), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189707] = 5, + [189146] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6521), 1, - sym__automatic_semicolon, - STATE(5920), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(9656), 1, + anon_sym_EQ, + STATE(5737), 1, sym_comment, - ACTIONS(2307), 2, - anon_sym_else, - anon_sym_while, - [189724] = 4, + STATE(7142), 1, + sym_type_parameters, + [189165] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5921), 1, + STATE(5738), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189739] = 4, + [189180] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5922), 1, - sym_comment, - ACTIONS(9550), 3, - sym__automatic_semicolon, + ACTIONS(8741), 1, anon_sym_COMMA, - anon_sym_SEMI, - [189754] = 6, + ACTIONS(9658), 1, + anon_sym_RBRACE, + STATE(5739), 1, + sym_comment, + STATE(5885), 1, + aux_sym_object_pattern_repeat1, + [189199] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7164), 1, - anon_sym_LT, - ACTIONS(9733), 1, - anon_sym_EQ, - STATE(5923), 1, + ACTIONS(8025), 1, + anon_sym_COMMA, + ACTIONS(9660), 1, + anon_sym_RBRACE, + STATE(5740), 1, sym_comment, - STATE(7406), 1, - sym_type_parameters, - [189773] = 4, + STATE(5890), 1, + aux_sym_object_repeat1, + [189218] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5924), 1, + STATE(5741), 1, sym_comment, ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189788] = 5, + [189233] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6489), 1, - sym__automatic_semicolon, - STATE(5925), 1, + STATE(5742), 1, sym_comment, - ACTIONS(2301), 2, - anon_sym_else, - anon_sym_while, - [189805] = 5, + ACTIONS(9563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189248] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6487), 1, - sym__automatic_semicolon, - STATE(5926), 1, + ACTIONS(8741), 1, + anon_sym_COMMA, + ACTIONS(9658), 1, + anon_sym_RBRACE, + STATE(5743), 1, sym_comment, - ACTIONS(2297), 2, - anon_sym_else, - anon_sym_while, - [189822] = 4, + STATE(5897), 1, + aux_sym_object_pattern_repeat1, + [189267] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5927), 1, + STATE(5744), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189837] = 4, + [189282] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5928), 1, + STATE(5745), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189852] = 5, + [189297] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6461), 1, - sym__automatic_semicolon, - STATE(5929), 1, + STATE(5746), 1, sym_comment, - ACTIONS(2341), 2, - anon_sym_else, - anon_sym_while, - [189869] = 4, + ACTIONS(9565), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189312] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5930), 1, + STATE(5747), 1, sym_comment, ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189884] = 6, + [189327] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8794), 1, - anon_sym_COMMA, - ACTIONS(9735), 1, - anon_sym_RBRACE, - STATE(5931), 1, + ACTIONS(9662), 1, + anon_sym_EQ, + STATE(5748), 1, sym_comment, - STATE(6221), 1, - aux_sym_object_pattern_repeat1, - [189903] = 4, + ACTIONS(9607), 2, + anon_sym_COMMA, + anon_sym_from, + [189344] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5932), 1, + STATE(5749), 1, sym_comment, - ACTIONS(9643), 3, + ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189918] = 6, + [189359] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4129), 1, - anon_sym_LPAREN, - ACTIONS(9737), 1, - anon_sym_DOT, - STATE(4457), 1, - sym_arguments, - STATE(5933), 1, + STATE(5750), 1, sym_comment, - [189937] = 4, + ACTIONS(9601), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189374] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5934), 1, + STATE(5751), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189952] = 6, + [189389] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8008), 1, - anon_sym_COMMA, - ACTIONS(9739), 1, - anon_sym_RBRACE, - STATE(5935), 1, + STATE(5752), 1, sym_comment, - STATE(6226), 1, - aux_sym_object_repeat1, - [189971] = 6, + ACTIONS(9565), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189404] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9741), 1, + ACTIONS(9664), 1, sym_identifier, - ACTIONS(9743), 1, + ACTIONS(9666), 1, anon_sym_LBRACK, - ACTIONS(9745), 1, + ACTIONS(9668), 1, sym_private_property_identifier, - STATE(5936), 1, + STATE(5753), 1, sym_comment, - [189990] = 4, + [189423] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5937), 1, + STATE(5754), 1, sym_comment, - ACTIONS(9649), 3, + ACTIONS(9573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190005] = 6, + [189438] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9747), 1, + ACTIONS(9670), 1, sym_identifier, - ACTIONS(9749), 1, + ACTIONS(9672), 1, anon_sym_LBRACK, - ACTIONS(9751), 1, + ACTIONS(9674), 1, sym_private_property_identifier, - STATE(5938), 1, + STATE(5755), 1, sym_comment, - [190024] = 6, + [189457] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8008), 1, - anon_sym_COMMA, - ACTIONS(9739), 1, - anon_sym_RBRACE, - STATE(5939), 1, + STATE(5756), 1, sym_comment, - STATE(6240), 1, - aux_sym_object_repeat1, - [190043] = 6, + ACTIONS(9565), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189472] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9753), 1, + ACTIONS(9676), 1, sym_identifier, - ACTIONS(9755), 1, + ACTIONS(9678), 1, anon_sym_LBRACK, - ACTIONS(9757), 1, + ACTIONS(9680), 1, sym_private_property_identifier, - STATE(5940), 1, + STATE(5757), 1, sym_comment, - [190062] = 5, + [189491] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9759), 1, - anon_sym_LBRACE, - STATE(5941), 1, + STATE(5758), 1, sym_comment, - ACTIONS(8728), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [190079] = 6, + ACTIONS(9563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189506] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9761), 1, + ACTIONS(9682), 1, sym_identifier, - ACTIONS(9763), 1, + ACTIONS(9684), 1, anon_sym_LBRACK, - ACTIONS(9765), 1, + ACTIONS(9686), 1, sym_private_property_identifier, - STATE(5942), 1, + STATE(5759), 1, sym_comment, - [190098] = 4, + [189525] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5943), 1, + STATE(5760), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9688), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190113] = 6, + [189540] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9767), 1, + ACTIONS(9690), 1, anon_sym_COMMA, - ACTIONS(9769), 1, + ACTIONS(9692), 1, anon_sym_RBRACK, - STATE(5806), 1, - aux_sym_tuple_type_repeat1, - STATE(5944), 1, + STATE(5761), 1, sym_comment, - [190132] = 6, + STATE(5819), 1, + aux_sym_tuple_type_repeat1, + [189559] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8794), 1, - anon_sym_COMMA, - ACTIONS(9735), 1, - anon_sym_RBRACE, - STATE(5945), 1, + STATE(5762), 1, sym_comment, - STATE(6243), 1, - aux_sym_object_pattern_repeat1, - [190151] = 5, + ACTIONS(8157), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [189574] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9043), 1, - anon_sym_GT, - ACTIONS(9771), 1, + ACTIONS(9694), 1, anon_sym_COMMA, - STATE(5946), 2, + ACTIONS(9696), 1, + anon_sym_RPAREN, + STATE(5763), 1, sym_comment, - aux_sym_type_arguments_repeat1, - [190168] = 4, + STATE(5953), 1, + aux_sym_formal_parameters_repeat1, + [189593] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5947), 1, + STATE(5764), 1, sym_comment, ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190183] = 4, + [189608] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5948), 1, + STATE(5765), 1, sym_comment, - ACTIONS(9552), 3, + ACTIONS(9573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190198] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [189623] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9673), 1, - anon_sym_LBRACE, - ACTIONS(9774), 1, - sym_identifier, - STATE(5701), 1, - sym_export_clause, - STATE(5949), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5766), 1, sym_comment, - [190217] = 4, + ACTIONS(9563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189638] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5950), 1, + STATE(5767), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190232] = 6, + [189653] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9776), 1, + ACTIONS(9698), 1, anon_sym_COMMA, - ACTIONS(9778), 1, + ACTIONS(9700), 1, anon_sym_RBRACE, - STATE(5793), 1, - aux_sym_enum_body_repeat1, - STATE(5951), 1, + STATE(5768), 1, sym_comment, - [190251] = 4, + STATE(5863), 1, + aux_sym_enum_body_repeat1, + [189672] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5952), 1, + STATE(5769), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9702), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190266] = 6, + [189687] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9780), 1, + ACTIONS(9704), 1, anon_sym_COMMA, - ACTIONS(9782), 1, + ACTIONS(9706), 1, anon_sym_RBRACE, - STATE(5793), 1, - aux_sym_enum_body_repeat1, - STATE(5953), 1, + STATE(5770), 1, sym_comment, - [190285] = 4, + STATE(5863), 1, + aux_sym_enum_body_repeat1, + [189706] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5954), 1, + STATE(5771), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190300] = 4, + [189721] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5955), 1, + STATE(5772), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9702), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190315] = 6, + [189736] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - ACTIONS(9669), 1, - anon_sym_as, - STATE(5956), 1, + ACTIONS(9204), 1, + anon_sym_COMMA, + ACTIONS(9206), 1, + anon_sym_RBRACK, + STATE(5773), 1, sym_comment, - STATE(6560), 1, - sym__from_clause, - [190334] = 5, + STATE(5972), 1, + aux_sym_array_pattern_repeat1, + [189755] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8159), 1, - anon_sym_DOT, - STATE(5957), 1, - sym_comment, - ACTIONS(9784), 2, + ACTIONS(5797), 1, anon_sym_COMMA, - anon_sym_GT, - [190351] = 4, + ACTIONS(5939), 1, + anon_sym_RBRACK, + STATE(5774), 1, + sym_comment, + STATE(5970), 1, + aux_sym_array_repeat1, + [189774] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5958), 1, + STATE(5775), 1, sym_comment, - ACTIONS(9786), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190366] = 4, + [189789] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5959), 1, + ACTIONS(5797), 1, + anon_sym_COMMA, + ACTIONS(5939), 1, + anon_sym_RBRACK, + STATE(5626), 1, + aux_sym_array_repeat1, + STATE(5776), 1, + sym_comment, + [189808] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9204), 1, + anon_sym_COMMA, + ACTIONS(9206), 1, + anon_sym_RBRACK, + STATE(5777), 1, + sym_comment, + STATE(5974), 1, + aux_sym_array_pattern_repeat1, + [189827] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9708), 1, + anon_sym_DQUOTE, + STATE(5778), 1, + sym_comment, + ACTIONS(9710), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [189844] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5779), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190381] = 4, + [189859] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5960), 1, + STATE(5780), 1, sym_comment, - ACTIONS(9788), 3, + ACTIONS(9603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190396] = 6, + [189874] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9712), 1, + anon_sym_SQUOTE, + STATE(5781), 1, + sym_comment, + ACTIONS(9714), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [189891] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9790), 1, + STATE(5782), 1, + sym_comment, + ACTIONS(9563), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9792), 1, - anon_sym_RBRACK, - STATE(5806), 1, - aux_sym_tuple_type_repeat1, - STATE(5961), 1, + anon_sym_SEMI, + [189906] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7937), 1, + anon_sym_const, + ACTIONS(9216), 1, + sym_identifier, + STATE(5783), 1, sym_comment, - [190415] = 6, + STATE(5794), 1, + sym_type_parameter, + [189925] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4226), 1, - anon_sym_COLON, - ACTIONS(9794), 1, - anon_sym_RPAREN, - STATE(5962), 1, + STATE(5784), 1, sym_comment, - STATE(7312), 1, - sym_type_annotation, - [190434] = 4, + ACTIONS(9563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189940] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5963), 1, + ACTIONS(7547), 1, + anon_sym_implements, + ACTIONS(9716), 1, + anon_sym_LBRACE, + STATE(5785), 1, + sym_comment, + STATE(7013), 1, + sym_implements_clause, + [189959] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5786), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190449] = 4, + [189974] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5964), 1, + STATE(5787), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190464] = 5, + [189989] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6412), 1, - sym__automatic_semicolon, - STATE(5965), 1, + STATE(5788), 1, sym_comment, - ACTIONS(2275), 2, - anon_sym_else, - anon_sym_while, - [190481] = 5, + ACTIONS(9585), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190004] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6347), 1, - sym__automatic_semicolon, - STATE(5966), 1, + STATE(5789), 1, sym_comment, - ACTIONS(2279), 2, - anon_sym_else, - anon_sym_while, - [190498] = 5, + ACTIONS(9585), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190019] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6315), 1, - sym__automatic_semicolon, - STATE(5967), 1, + STATE(5790), 1, sym_comment, - ACTIONS(2283), 2, - anon_sym_else, - anon_sym_while, - [190515] = 5, + ACTIONS(9565), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190034] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6313), 1, - sym__automatic_semicolon, - STATE(5968), 1, + STATE(5791), 1, sym_comment, - ACTIONS(2289), 2, - anon_sym_else, - anon_sym_while, - [190532] = 6, + ACTIONS(9563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190049] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9796), 1, + ACTIONS(8025), 1, anon_sym_COMMA, - ACTIONS(9798), 1, + ACTIONS(9660), 1, anon_sym_RBRACE, - STATE(5793), 1, - aux_sym_enum_body_repeat1, - STATE(5969), 1, + STATE(5792), 1, sym_comment, - [190551] = 6, + STATE(5895), 1, + aux_sym_object_repeat1, + [190068] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9800), 1, - anon_sym_COMMA, - ACTIONS(9802), 1, - anon_sym_RBRACE, STATE(5793), 1, - aux_sym_enum_body_repeat1, - STATE(5970), 1, sym_comment, - [190570] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190083] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9804), 1, - sym_identifier, - ACTIONS(9806), 1, - anon_sym_require, - STATE(5971), 1, - sym_comment, - STATE(6413), 1, - sym_nested_identifier, - [190589] = 6, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(9718), 1, + anon_sym_COMMA, + ACTIONS(9720), 1, + anon_sym_GT, + STATE(5794), 1, + sym_comment, + STATE(6045), 1, + aux_sym_type_parameters_repeat1, + [190102] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7918), 1, - anon_sym_const, - ACTIONS(9142), 1, - sym_identifier, - STATE(5972), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5795), 1, sym_comment, - STATE(6849), 1, - sym_type_parameter, - [190608] = 4, + ACTIONS(9563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190117] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5973), 1, + STATE(5796), 1, sym_comment, - ACTIONS(9552), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190623] = 5, + [190132] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9808), 1, - anon_sym_EQ, - STATE(5974), 1, + STATE(5797), 1, sym_comment, - ACTIONS(9588), 2, + ACTIONS(9585), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [190640] = 5, + anon_sym_SEMI, + [190147] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8756), 1, - anon_sym_LBRACE, - ACTIONS(9810), 1, - anon_sym_COMMA, - STATE(5975), 2, + STATE(5798), 1, sym_comment, - aux_sym_implements_clause_repeat1, - [190657] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9722), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190162] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9673), 1, - anon_sym_LBRACE, - ACTIONS(9813), 1, - sym_identifier, - STATE(5638), 1, - sym_export_clause, - STATE(5976), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5799), 1, sym_comment, - [190676] = 4, + ACTIONS(9724), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190177] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5977), 1, + STATE(5800), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9726), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190691] = 4, + [190192] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5978), 1, + STATE(5801), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190706] = 6, + [190207] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7991), 1, + sym_identifier, + STATE(5802), 1, + sym_comment, + ACTIONS(7995), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [190224] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - ACTIONS(9669), 1, - anon_sym_as, - STATE(5979), 1, + STATE(5803), 1, sym_comment, - STATE(6671), 1, - sym__from_clause, - [190725] = 5, + ACTIONS(9728), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190239] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9730), 1, + sym_identifier, + ACTIONS(9732), 1, + anon_sym_LBRACK, + ACTIONS(9734), 1, + sym_private_property_identifier, + STATE(5804), 1, + sym_comment, + [190258] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9815), 1, - anon_sym_LBRACE, - STATE(5980), 1, + STATE(5805), 1, sym_comment, - ACTIONS(8772), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [190742] = 4, + ACTIONS(9563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190273] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5981), 1, + STATE(5806), 1, sym_comment, - ACTIONS(9788), 3, + ACTIONS(9736), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190757] = 4, + [190288] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5982), 1, + STATE(5807), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190772] = 4, + [190303] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5983), 1, + STATE(5808), 1, sym_comment, - ACTIONS(9628), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190787] = 4, + [190318] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5984), 1, + STATE(5809), 1, sym_comment, - ACTIONS(9628), 3, + ACTIONS(9573), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190802] = 4, + [190333] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5985), 1, + ACTIONS(9738), 1, + anon_sym_EQ, + STATE(5810), 1, sym_comment, - ACTIONS(3314), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [190817] = 6, + ACTIONS(9607), 2, + anon_sym_COMMA, + anon_sym_from, + [190350] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4226), 1, - anon_sym_COLON, - ACTIONS(9817), 1, - anon_sym_RPAREN, - STATE(5986), 1, + ACTIONS(7173), 1, + anon_sym_LT, + ACTIONS(9740), 1, + anon_sym_EQ, + STATE(5811), 1, sym_comment, - STATE(7246), 1, - sym_type_annotation, - [190836] = 4, + STATE(7223), 1, + sym_type_parameters, + [190369] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5987), 1, + STATE(5812), 1, sym_comment, - ACTIONS(9649), 3, + ACTIONS(9742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190851] = 4, + [190384] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5988), 1, + STATE(5813), 1, sym_comment, - ACTIONS(9819), 3, + ACTIONS(9603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190866] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [190399] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9821), 1, - sym_identifier, - ACTIONS(9823), 1, - anon_sym_LBRACK, - ACTIONS(9825), 1, - sym_private_property_identifier, - STATE(5989), 1, - sym_comment, - [190885] = 6, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(5814), 1, + sym_comment, + ACTIONS(9563), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190414] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9806), 1, - anon_sym_require, - ACTIONS(9827), 1, - sym_identifier, - STATE(5990), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5815), 1, sym_comment, - STATE(6419), 1, - sym_nested_identifier, - [190904] = 4, + ACTIONS(9601), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190429] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5991), 1, + ACTIONS(9744), 1, + anon_sym_COMMA, + ACTIONS(9746), 1, + anon_sym_RPAREN, + STATE(5643), 1, + aux_sym_formal_parameters_repeat1, + STATE(5816), 1, sym_comment, - ACTIONS(8113), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [190919] = 4, + [190448] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5992), 1, + STATE(5817), 1, sym_comment, - ACTIONS(9829), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190934] = 4, + [190463] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5993), 1, + ACTIONS(9748), 1, + anon_sym_DQUOTE, + ACTIONS(9750), 1, + anon_sym_SQUOTE, + STATE(5818), 1, sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, + STATE(6080), 1, + sym_string, + [190482] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9752), 1, anon_sym_COMMA, - anon_sym_SEMI, - [190949] = 4, + ACTIONS(9755), 1, + anon_sym_RBRACK, + STATE(5819), 2, + sym_comment, + aux_sym_tuple_type_repeat1, + [190499] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5994), 1, + STATE(5820), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190964] = 4, + [190514] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5995), 1, + STATE(5821), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190979] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [190529] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9673), 1, - anon_sym_LBRACE, - ACTIONS(9831), 1, - sym_identifier, - STATE(5561), 1, - sym_export_clause, - STATE(5996), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(3206), 1, + anon_sym_while, + ACTIONS(9759), 1, + anon_sym_else, + STATE(5822), 1, sym_comment, - [190998] = 4, + STATE(6570), 1, + sym_else_clause, + [190548] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5997), 1, + STATE(5823), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191013] = 6, + [190563] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - ACTIONS(9669), 1, - anon_sym_as, - STATE(5998), 1, + ACTIONS(8161), 1, + anon_sym_EQ, + STATE(5824), 1, sym_comment, - STATE(6990), 1, - sym__from_clause, - [191032] = 4, + ACTIONS(4354), 2, + anon_sym_in, + anon_sym_of, + [190580] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(5999), 1, + STATE(5825), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191047] = 4, + [190595] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6000), 1, + STATE(5826), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9603), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191062] = 4, + [190610] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6001), 1, + STATE(5827), 1, + sym_comment, + ACTIONS(9761), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [190625] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5828), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191077] = 6, + [190640] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9833), 1, + ACTIONS(9765), 1, anon_sym_COMMA, - ACTIONS(9835), 1, - anon_sym_RPAREN, - STATE(6002), 1, + ACTIONS(9767), 1, + anon_sym_RBRACE, + STATE(5829), 1, sym_comment, - STATE(6403), 1, - aux_sym_formal_parameters_repeat1, - [191096] = 4, + STATE(6084), 1, + aux_sym_export_clause_repeat1, + [190659] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6003), 1, + STATE(5830), 1, sym_comment, - ACTIONS(9837), 3, + ACTIONS(9769), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191111] = 4, + [190674] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6004), 1, + STATE(5831), 1, sym_comment, - ACTIONS(9829), 3, + ACTIONS(9771), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191126] = 4, + [190689] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6005), 1, + ACTIONS(9773), 1, + anon_sym_as, + STATE(5832), 1, sym_comment, - ACTIONS(9550), 3, - sym__automatic_semicolon, + ACTIONS(9775), 2, anon_sym_COMMA, - anon_sym_SEMI, - [191141] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_RBRACE, + [190706] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9839), 1, - sym_identifier, - ACTIONS(9841), 1, - anon_sym_LBRACK, - ACTIONS(9843), 1, - sym_private_property_identifier, - STATE(6006), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5833), 1, sym_comment, - [191160] = 4, + ACTIONS(9777), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190721] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6007), 1, + STATE(5834), 1, sym_comment, - ACTIONS(9845), 3, + ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191175] = 4, + [190736] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6008), 1, + STATE(5835), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(9779), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [190751] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9781), 1, + anon_sym_LPAREN, + ACTIONS(9783), 1, + anon_sym_await, + STATE(107), 1, + sym__for_header, + STATE(5836), 1, + sym_comment, + [190770] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5837), 1, + sym_comment, + ACTIONS(9785), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191190] = 4, + [190785] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6009), 1, + STATE(5838), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191205] = 4, + [190800] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6010), 1, + ACTIONS(5278), 1, + anon_sym_LBRACE, + STATE(5839), 1, sym_comment, - ACTIONS(9847), 3, - sym__automatic_semicolon, + ACTIONS(5280), 2, anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [190817] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9787), 1, + sym_identifier, + ACTIONS(9789), 1, anon_sym_SEMI, - [191220] = 6, + ACTIONS(9791), 1, + sym__automatic_semicolon, + STATE(5840), 1, + sym_comment, + [190836] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9849), 1, + ACTIONS(9793), 1, sym_identifier, - ACTIONS(9851), 1, - anon_sym_LBRACK, - ACTIONS(9853), 1, - sym_private_property_identifier, - STATE(6011), 1, + ACTIONS(9795), 1, + anon_sym_SEMI, + ACTIONS(9797), 1, + sym__automatic_semicolon, + STATE(5841), 1, sym_comment, - [191239] = 4, + [190855] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6012), 1, + ACTIONS(5282), 1, + anon_sym_LBRACE, + STATE(5842), 1, sym_comment, - ACTIONS(9855), 3, - sym__automatic_semicolon, + ACTIONS(5284), 2, anon_sym_COMMA, - anon_sym_SEMI, - [191254] = 4, + anon_sym_LBRACE_PIPE, + [190872] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6013), 1, + STATE(5843), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9799), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191269] = 4, + [190887] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6014), 1, + STATE(5844), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9771), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191284] = 4, + [190902] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6015), 1, + ACTIONS(5290), 1, + anon_sym_LBRACE, + STATE(5845), 1, sym_comment, - ACTIONS(9857), 3, - sym__automatic_semicolon, + ACTIONS(5292), 2, anon_sym_COMMA, - anon_sym_SEMI, - [191299] = 6, + anon_sym_LBRACE_PIPE, + [190919] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9803), 1, + sym_unescaped_double_jsx_string_fragment, + STATE(5846), 1, + sym_comment, + ACTIONS(9801), 2, + sym_html_character_reference, + anon_sym_DQUOTE, + [190936] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9112), 1, + ACTIONS(8025), 1, anon_sym_COMMA, - ACTIONS(9114), 1, - anon_sym_RBRACK, - STATE(6016), 1, + ACTIONS(9805), 1, + anon_sym_RBRACE, + STATE(5847), 1, sym_comment, - STATE(6284), 1, - aux_sym_array_pattern_repeat1, - [191318] = 6, + STATE(5895), 1, + aux_sym_object_repeat1, + [190955] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, + ACTIONS(8025), 1, anon_sym_COMMA, - ACTIONS(5904), 1, - anon_sym_RBRACK, - STATE(6017), 1, + ACTIONS(9805), 1, + anon_sym_RBRACE, + STATE(5666), 1, + aux_sym_object_repeat1, + STATE(5848), 1, sym_comment, - STATE(6287), 1, - aux_sym_array_repeat1, - [191337] = 6, + [190974] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, - anon_sym_COMMA, - ACTIONS(5904), 1, - anon_sym_RBRACK, - STATE(5607), 1, - aux_sym_array_repeat1, - STATE(6018), 1, + STATE(5849), 1, sym_comment, - [191356] = 6, + ACTIONS(9769), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [190989] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9859), 1, - anon_sym_LPAREN, - ACTIONS(9861), 1, - anon_sym_await, - STATE(116), 1, - sym__for_header, - STATE(6019), 1, + STATE(5850), 1, sym_comment, - [191375] = 6, + ACTIONS(9763), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191004] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9112), 1, - anon_sym_COMMA, - ACTIONS(9114), 1, - anon_sym_RBRACK, - STATE(6020), 1, + STATE(5851), 1, sym_comment, - STATE(6281), 1, - aux_sym_array_pattern_repeat1, - [191394] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9742), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191019] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9863), 1, - sym_identifier, - ACTIONS(9865), 1, - anon_sym_LBRACK, - ACTIONS(9867), 1, - sym_private_property_identifier, - STATE(6021), 1, - sym_comment, - [191413] = 5, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(5852), 1, + sym_comment, + ACTIONS(9807), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191034] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9869), 1, - anon_sym_DQUOTE, - STATE(6022), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5853), 1, sym_comment, - ACTIONS(9871), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [191430] = 6, + ACTIONS(9785), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191049] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9873), 1, - sym_identifier, - ACTIONS(9875), 1, - anon_sym_SEMI, - ACTIONS(9877), 1, - sym__automatic_semicolon, - STATE(6023), 1, + ACTIONS(9811), 1, + sym_unescaped_single_jsx_string_fragment, + STATE(5854), 1, sym_comment, - [191449] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9809), 2, + sym_html_character_reference, + anon_sym_SQUOTE, + [191066] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9879), 1, - sym_identifier, - ACTIONS(9881), 1, - anon_sym_SEMI, - ACTIONS(9883), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5855), 1, + sym_comment, + ACTIONS(9585), 3, sym__automatic_semicolon, - STATE(6024), 1, + anon_sym_COMMA, + anon_sym_SEMI, + [191081] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5856), 1, sym_comment, - [191468] = 5, - ACTIONS(3), 1, + ACTIONS(9585), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191096] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(8840), 1, + anon_sym_LBRACE, + STATE(5857), 1, + sym_comment, + ACTIONS(8842), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [191113] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9885), 1, - anon_sym_SQUOTE, - STATE(6025), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5106), 1, + anon_sym_LBRACE, + STATE(5858), 1, sym_comment, - ACTIONS(9887), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [191485] = 6, + ACTIONS(5108), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [191130] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7918), 1, - anon_sym_const, - ACTIONS(9142), 1, + ACTIONS(9557), 1, + anon_sym_LBRACE, + ACTIONS(9813), 1, sym_identifier, - STATE(6026), 1, + STATE(5464), 1, + sym_export_clause, + STATE(5859), 1, sym_comment, - STATE(6085), 1, - sym_type_parameter, - [191504] = 4, + [191149] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6027), 1, + STATE(5860), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9785), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191519] = 4, + [191164] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6028), 1, + STATE(5861), 1, sym_comment, - ACTIONS(9889), 3, + ACTIONS(9815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191534] = 6, + [191179] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7548), 1, - anon_sym_implements, - ACTIONS(9891), 1, - anon_sym_LBRACE, - STATE(6029), 1, + ACTIONS(9121), 1, + anon_sym_from, + ACTIONS(9640), 1, + anon_sym_as, + STATE(5862), 1, sym_comment, - STATE(7456), 1, - sym_implements_clause, - [191553] = 4, + STATE(6377), 1, + sym__from_clause, + [191198] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6030), 1, - sym_comment, - ACTIONS(9847), 3, - sym__automatic_semicolon, + ACTIONS(9817), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191568] = 5, + ACTIONS(9820), 1, + anon_sym_RBRACE, + STATE(5863), 2, + sym_comment, + aux_sym_enum_body_repeat1, + [191215] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6420), 1, - sym__automatic_semicolon, - STATE(6031), 1, + STATE(5864), 1, sym_comment, - ACTIONS(2315), 2, + ACTIONS(3200), 3, anon_sym_else, anon_sym_while, - [191585] = 4, + anon_sym_finally, + [191230] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6032), 1, + STATE(5865), 1, sym_comment, - ACTIONS(9893), 3, + ACTIONS(9769), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191600] = 6, + [191245] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4226), 1, - anon_sym_COLON, - ACTIONS(9895), 1, - anon_sym_RPAREN, - STATE(6033), 1, + ACTIONS(5106), 1, + anon_sym_LBRACE, + STATE(5866), 1, sym_comment, - STATE(7194), 1, - sym_type_annotation, - [191619] = 4, + ACTIONS(5108), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [191262] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6034), 1, + ACTIONS(5154), 1, + anon_sym_LBRACE, + STATE(5867), 1, sym_comment, - ACTIONS(9552), 3, - sym__automatic_semicolon, + ACTIONS(5156), 2, anon_sym_COMMA, - anon_sym_SEMI, - [191634] = 4, + anon_sym_LBRACE_PIPE, + [191279] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6035), 1, + ACTIONS(8025), 1, + anon_sym_COMMA, + ACTIONS(9822), 1, + anon_sym_RBRACE, + STATE(5868), 1, sym_comment, - ACTIONS(9897), 3, - sym__automatic_semicolon, + STATE(5895), 1, + aux_sym_object_repeat1, + [191298] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8741), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191649] = 5, + ACTIONS(9824), 1, + anon_sym_RBRACE, + STATE(5869), 1, + sym_comment, + STATE(5897), 1, + aux_sym_object_pattern_repeat1, + [191317] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9899), 1, + ACTIONS(5154), 1, anon_sym_LBRACE, - STATE(6036), 1, + STATE(5870), 1, sym_comment, - ACTIONS(8824), 2, - anon_sym_extends, + ACTIONS(5156), 2, + anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [191666] = 4, + [191334] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6037), 1, + ACTIONS(5210), 1, + anon_sym_LBRACE, + STATE(5871), 1, sym_comment, - ACTIONS(9552), 3, - sym__automatic_semicolon, + ACTIONS(5212), 2, anon_sym_COMMA, - anon_sym_SEMI, - [191681] = 4, + anon_sym_LBRACE_PIPE, + [191351] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6038), 1, + STATE(5872), 1, sym_comment, - ACTIONS(9628), 3, + ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191696] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [191366] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9806), 1, - anon_sym_require, - ACTIONS(9901), 1, - sym_identifier, - STATE(5879), 1, - sym_nested_identifier, - STATE(6039), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5357), 1, + anon_sym_LBRACE, + STATE(5873), 1, sym_comment, - [191715] = 4, + ACTIONS(5359), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [191383] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6040), 1, + ACTIONS(4218), 1, + anon_sym_COLON, + ACTIONS(9826), 1, + anon_sym_RPAREN, + STATE(5874), 1, sym_comment, - ACTIONS(9903), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [191730] = 4, + STATE(7129), 1, + sym_type_annotation, + [191402] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6041), 1, + ACTIONS(5353), 1, + anon_sym_LBRACE, + STATE(5875), 1, sym_comment, - ACTIONS(9847), 3, - sym__automatic_semicolon, + ACTIONS(5355), 2, anon_sym_COMMA, - anon_sym_SEMI, - [191745] = 4, + anon_sym_LBRACE_PIPE, + [191419] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6042), 1, + ACTIONS(5349), 1, + anon_sym_LBRACE, + STATE(5876), 1, sym_comment, - ACTIONS(9552), 3, - sym__automatic_semicolon, + ACTIONS(5351), 2, anon_sym_COMMA, - anon_sym_SEMI, - [191760] = 4, + anon_sym_LBRACE_PIPE, + [191436] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6043), 1, + STATE(5877), 1, sym_comment, - ACTIONS(9905), 3, + ACTIONS(9563), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191775] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9673), 1, - anon_sym_LBRACE, - ACTIONS(9907), 1, - sym_identifier, - STATE(5784), 1, - sym_export_clause, - STATE(6044), 1, - sym_comment, - [191794] = 4, + [191451] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6045), 1, + STATE(5878), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9565), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191809] = 6, + [191466] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - ACTIONS(9669), 1, - anon_sym_as, - STATE(6046), 1, + STATE(5879), 1, sym_comment, - STATE(6518), 1, - sym__from_clause, - [191828] = 4, + ACTIONS(9763), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [191481] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6047), 1, + STATE(5880), 1, sym_comment, - ACTIONS(9628), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191843] = 4, + [191496] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6048), 1, + STATE(5881), 1, sym_comment, - ACTIONS(9855), 3, + ACTIONS(9828), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191858] = 4, + [191511] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6049), 1, + STATE(5882), 1, sym_comment, - ACTIONS(9909), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191873] = 4, + [191526] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6050), 1, + STATE(5883), 1, sym_comment, - ACTIONS(9911), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191888] = 4, + [191541] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9830), 1, + sym_identifier, + ACTIONS(9832), 1, + anon_sym_require, + STATE(5884), 1, + sym_comment, + STATE(6285), 1, + sym_nested_identifier, + [191560] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6051), 1, - sym_comment, - ACTIONS(9913), 3, - sym__automatic_semicolon, + ACTIONS(8741), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191903] = 4, + ACTIONS(9834), 1, + anon_sym_RBRACE, + STATE(5885), 1, + sym_comment, + STATE(5897), 1, + aux_sym_object_pattern_repeat1, + [191579] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6052), 1, + STATE(5886), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(9836), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_with, anon_sym_SEMI, - [191918] = 4, + [191594] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6053), 1, + STATE(5887), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191933] = 4, + [191609] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6054), 1, + STATE(5888), 1, sym_comment, - ACTIONS(9855), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191948] = 4, + [191624] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6055), 1, + STATE(5889), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191963] = 4, + [191639] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6056), 1, - sym_comment, - ACTIONS(9857), 3, - sym__automatic_semicolon, + ACTIONS(8025), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191978] = 4, + ACTIONS(9838), 1, + anon_sym_RBRACE, + STATE(5890), 1, + sym_comment, + STATE(5895), 1, + aux_sym_object_repeat1, + [191658] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6057), 1, + STATE(5891), 1, sym_comment, - ACTIONS(9911), 3, + ACTIONS(9742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191993] = 4, + [191673] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6058), 1, + STATE(5892), 1, sym_comment, - ACTIONS(9889), 3, + ACTIONS(9724), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192008] = 4, + [191688] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9840), 1, + sym_identifier, + STATE(3444), 1, + sym_decorator_member_expression, + STATE(3595), 1, + sym_decorator_call_expression, + STATE(5893), 1, + sym_comment, + [191707] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6059), 1, + STATE(5894), 1, sym_comment, - ACTIONS(9915), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192023] = 4, + [191722] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6060), 1, - sym_comment, - ACTIONS(9847), 3, - sym__automatic_semicolon, + ACTIONS(9842), 1, anon_sym_COMMA, - anon_sym_SEMI, - [192038] = 4, + ACTIONS(9845), 1, + anon_sym_RBRACE, + STATE(5895), 2, + sym_comment, + aux_sym_object_repeat1, + [191739] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6061), 1, + STATE(5896), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192053] = 4, + [191754] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6062), 1, - sym_comment, - ACTIONS(9855), 3, - sym__automatic_semicolon, + ACTIONS(9847), 1, anon_sym_COMMA, - anon_sym_SEMI, - [192068] = 4, + ACTIONS(9850), 1, + anon_sym_RBRACE, + STATE(5897), 2, + sym_comment, + aux_sym_object_pattern_repeat1, + [191771] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9557), 1, + anon_sym_LBRACE, + ACTIONS(9852), 1, + sym_identifier, + STATE(5429), 1, + sym_export_clause, + STATE(5898), 1, + sym_comment, + [191790] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6063), 1, + ACTIONS(9121), 1, + anon_sym_from, + ACTIONS(9640), 1, + anon_sym_as, + STATE(5899), 1, sym_comment, - ACTIONS(9889), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192083] = 4, + STATE(6627), 1, + sym__from_clause, + [191809] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6064), 1, + STATE(5900), 1, sym_comment, - ACTIONS(9897), 3, + ACTIONS(9828), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192098] = 4, + [191824] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6065), 1, + ACTIONS(9854), 1, + anon_sym_LBRACE, + STATE(5901), 1, sym_comment, - ACTIONS(9917), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192113] = 4, + ACTIONS(8767), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [191841] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6066), 1, + STATE(5902), 1, sym_comment, - ACTIONS(9919), 3, + ACTIONS(9585), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192128] = 4, + [191856] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6067), 1, + STATE(5903), 1, sym_comment, - ACTIONS(9889), 3, + ACTIONS(9828), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192143] = 4, + [191871] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6068), 1, + STATE(5904), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(9742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192158] = 4, + [191886] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6069), 1, + STATE(5905), 1, sym_comment, - ACTIONS(9917), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192173] = 4, + [191901] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6070), 1, + STATE(5906), 1, sym_comment, - ACTIONS(9847), 3, - sym__automatic_semicolon, + ACTIONS(9856), 3, anon_sym_COMMA, - anon_sym_SEMI, - [192188] = 4, + anon_sym_RBRACE, + anon_sym_from, + [191916] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6071), 1, + ACTIONS(9858), 1, + anon_sym_EQ, + STATE(5907), 1, sym_comment, - ACTIONS(9855), 3, - sym__automatic_semicolon, + ACTIONS(9607), 2, anon_sym_COMMA, - anon_sym_SEMI, - [192203] = 4, + anon_sym_from, + [191933] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6072), 1, + STATE(5908), 1, sym_comment, - ACTIONS(9889), 3, + ACTIONS(9860), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192218] = 4, + [191948] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6073), 1, + STATE(5909), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(9860), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192233] = 4, + [191963] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6074), 1, + STATE(5910), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192248] = 4, + [191978] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6075), 1, + STATE(5911), 1, sym_comment, - ACTIONS(9917), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192263] = 4, + [191993] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6076), 1, + STATE(5912), 1, sym_comment, - ACTIONS(9921), 3, + ACTIONS(9828), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192278] = 6, + [192008] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4226), 1, + ACTIONS(4218), 1, anon_sym_COLON, - ACTIONS(9923), 1, + ACTIONS(9862), 1, anon_sym_RPAREN, - STATE(6077), 1, + STATE(5913), 1, sym_comment, - STATE(7432), 1, + STATE(7063), 1, sym_type_annotation, - [192297] = 4, + [192027] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6078), 1, + STATE(5914), 1, sym_comment, - ACTIONS(9855), 3, + ACTIONS(9828), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192312] = 4, + [192042] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6079), 1, + STATE(5915), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192327] = 4, + [192057] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6080), 1, + STATE(5916), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9828), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192342] = 6, + [192072] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9925), 1, - anon_sym_COMMA, - ACTIONS(9927), 1, - anon_sym_RBRACE, - STATE(5793), 1, - aux_sym_enum_body_repeat1, - STATE(6081), 1, + STATE(5917), 1, sym_comment, - [192361] = 5, + ACTIONS(9866), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192087] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(9868), 1, + sym_identifier, + ACTIONS(9870), 1, + anon_sym_SEMI, + ACTIONS(9872), 1, + sym__automatic_semicolon, + STATE(5918), 1, + sym_comment, + [192106] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8087), 1, - anon_sym_EQ, - STATE(6082), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9874), 1, + sym_identifier, + ACTIONS(9876), 1, + anon_sym_SEMI, + ACTIONS(9878), 1, + sym__automatic_semicolon, + STATE(5919), 1, sym_comment, - ACTIONS(4331), 2, - anon_sym_in, - anon_sym_of, - [192378] = 4, + [192125] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6083), 1, + STATE(5920), 1, sym_comment, - ACTIONS(9649), 3, + ACTIONS(9742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192393] = 6, + [192140] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9929), 1, + ACTIONS(9390), 1, + anon_sym_as, + STATE(5921), 1, + sym_comment, + ACTIONS(9607), 2, anon_sym_COMMA, - ACTIONS(9931), 1, anon_sym_RBRACE, - STATE(5793), 1, - aux_sym_enum_body_repeat1, - STATE(6084), 1, - sym_comment, - [192412] = 6, + [192157] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9933), 1, - anon_sym_COMMA, - ACTIONS(9935), 1, - anon_sym_GT, - STATE(5866), 1, - aux_sym_type_parameters_repeat1, - STATE(6085), 1, + ACTIONS(9832), 1, + anon_sym_require, + ACTIONS(9880), 1, + sym_identifier, + STATE(5922), 1, sym_comment, - [192431] = 4, + STATE(6236), 1, + sym_nested_identifier, + [192176] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6086), 1, - sym_comment, - ACTIONS(9857), 3, - sym__automatic_semicolon, + ACTIONS(9882), 1, anon_sym_COMMA, - anon_sym_SEMI, - [192446] = 4, + ACTIONS(9884), 1, + anon_sym_RBRACE, + STATE(5923), 1, + sym_comment, + STATE(6116), 1, + aux_sym_named_imports_repeat1, + [192195] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6087), 1, + STATE(5924), 1, sym_comment, - ACTIONS(9649), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192461] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(3308), 1, - anon_sym_while, - ACTIONS(9937), 1, - anon_sym_else, - STATE(6088), 1, - sym_comment, - STATE(7151), 1, - sym_else_clause, - [192480] = 5, + [192210] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7984), 1, + ACTIONS(9832), 1, + anon_sym_require, + ACTIONS(9886), 1, sym_identifier, - STATE(6089), 1, + STATE(5641), 1, + sym_nested_identifier, + STATE(5925), 1, sym_comment, - ACTIONS(7988), 2, - anon_sym_LBRACK, - sym_private_property_identifier, - [192497] = 4, + [192229] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6090), 1, + STATE(5926), 1, sym_comment, - ACTIONS(9889), 3, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192512] = 6, + [192244] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9939), 1, - anon_sym_COMMA, - ACTIONS(9941), 1, - anon_sym_RBRACK, - STATE(5806), 1, - aux_sym_tuple_type_repeat1, - STATE(6091), 1, + STATE(5927), 1, sym_comment, - [192531] = 4, + ACTIONS(9763), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192259] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6092), 1, + STATE(5928), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9828), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192546] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9943), 1, - sym_identifier, - ACTIONS(9945), 1, - anon_sym_LBRACK, - ACTIONS(9947), 1, - sym_private_property_identifier, - STATE(6093), 1, - sym_comment, - [192565] = 4, + [192274] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6094), 1, + ACTIONS(9888), 1, + anon_sym_LPAREN, + ACTIONS(9890), 1, + anon_sym_await, + STATE(112), 1, + sym__for_header, + STATE(5929), 1, sym_comment, - ACTIONS(8018), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [192580] = 4, + [192293] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6095), 1, + STATE(5930), 1, sym_comment, - ACTIONS(9889), 3, + ACTIONS(9828), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192595] = 4, + [192308] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6096), 1, + ACTIONS(9121), 1, + anon_sym_from, + ACTIONS(9640), 1, + anon_sym_as, + STATE(5931), 1, sym_comment, - ACTIONS(9552), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192610] = 4, + STATE(6853), 1, + sym__from_clause, + [192327] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6097), 1, + STATE(5932), 1, sym_comment, - ACTIONS(6701), 3, + ACTIONS(9892), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192625] = 4, + [192342] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6098), 1, + STATE(5933), 1, sym_comment, - ACTIONS(9552), 3, + ACTIONS(9894), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192640] = 6, + [192357] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7070), 1, - anon_sym_DQUOTE, - ACTIONS(7072), 1, - anon_sym_SQUOTE, - STATE(6099), 1, + STATE(5934), 1, sym_comment, - STATE(7415), 1, - sym_string, - [192659] = 4, + ACTIONS(3186), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [192372] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6100), 1, + ACTIONS(9896), 1, + anon_sym_LBRACE, + ACTIONS(9898), 1, + anon_sym_LPAREN, + STATE(1142), 1, + sym_statement_block, + STATE(5935), 1, sym_comment, - ACTIONS(9550), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192674] = 5, + [192391] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9949), 1, - anon_sym_COMMA, - ACTIONS(9952), 1, - anon_sym_RBRACE, - STATE(6101), 2, - sym_comment, - aux_sym_named_imports_repeat1, - [192691] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7170), 1, - anon_sym_type, - ACTIONS(9544), 1, - sym_identifier, - STATE(6102), 1, + ACTIONS(6426), 1, + sym__automatic_semicolon, + STATE(5936), 1, sym_comment, - STATE(6749), 1, - sym__import_identifier, - [192710] = 4, + ACTIONS(2313), 2, + anon_sym_else, + anon_sym_while, + [192408] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6103), 1, + STATE(5937), 1, sym_comment, - ACTIONS(9552), 3, + ACTIONS(9742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192725] = 4, + [192423] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6104), 1, - sym_comment, - ACTIONS(9889), 3, + ACTIONS(6435), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192740] = 4, + STATE(5938), 1, + sym_comment, + ACTIONS(2287), 2, + anon_sym_else, + anon_sym_while, + [192440] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6105), 1, + STATE(5939), 1, sym_comment, - ACTIONS(9628), 3, + ACTIONS(9900), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192755] = 4, + [192455] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6106), 1, + STATE(5940), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(9900), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192770] = 5, + [192470] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5200), 1, - anon_sym_LBRACE, - STATE(6107), 1, + STATE(5941), 1, sym_comment, - ACTIONS(5202), 2, + ACTIONS(9902), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [192787] = 4, + anon_sym_SEMI, + [192485] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6108), 1, + STATE(5942), 1, sym_comment, - ACTIONS(9628), 3, + ACTIONS(8966), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192802] = 6, + [192500] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4226), 1, - anon_sym_COLON, - ACTIONS(9954), 1, - anon_sym_RPAREN, - STATE(6109), 1, + STATE(5943), 1, sym_comment, - STATE(7297), 1, - sym_type_annotation, - [192821] = 5, + ACTIONS(9763), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192515] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5139), 1, - anon_sym_LBRACE, - STATE(6110), 1, + STATE(5944), 1, sym_comment, - ACTIONS(5141), 2, + ACTIONS(8966), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [192838] = 4, + anon_sym_SEMI, + [192530] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6111), 1, + STATE(5945), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192853] = 4, + [192545] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6112), 1, + STATE(5946), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(9828), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192868] = 4, + [192560] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6113), 1, + ACTIONS(9904), 1, + anon_sym_EQ, + STATE(5947), 1, sym_comment, - ACTIONS(9552), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192883] = 5, + ACTIONS(4354), 2, + anon_sym_in, + anon_sym_of, + [192577] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9958), 1, - anon_sym_COMMA, - ACTIONS(9961), 1, - anon_sym_RBRACE, - STATE(6114), 2, + STATE(5948), 1, sym_comment, - aux_sym_export_clause_repeat1, - [192900] = 4, + ACTIONS(9864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192592] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6115), 1, + STATE(5949), 1, sym_comment, - ACTIONS(9963), 3, + ACTIONS(9601), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [192915] = 4, + [192607] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6116), 1, + STATE(5950), 1, sym_comment, - ACTIONS(9552), 3, + ACTIONS(9906), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192930] = 4, + [192622] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6117), 1, + STATE(5951), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9906), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192945] = 6, + [192637] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9967), 1, - anon_sym_LBRACE, - ACTIONS(9969), 1, - anon_sym_LPAREN, - STATE(1109), 1, - sym_statement_block, - STATE(6118), 1, + STATE(5952), 1, sym_comment, - [192964] = 6, + ACTIONS(8175), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [192652] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9971), 1, - anon_sym_DQUOTE, - ACTIONS(9973), 1, - anon_sym_SQUOTE, - STATE(6119), 1, + ACTIONS(9908), 1, + anon_sym_COMMA, + ACTIONS(9910), 1, + anon_sym_RPAREN, + STATE(5953), 1, sym_comment, - STATE(6460), 1, - sym_string, - [192983] = 4, + STATE(6142), 1, + aux_sym_formal_parameters_repeat1, + [192671] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6120), 1, + STATE(5954), 1, sym_comment, - ACTIONS(9855), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192998] = 4, + [192686] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6121), 1, + STATE(5955), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193013] = 4, + [192701] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1344), 1, + anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6122), 1, + ACTIONS(8033), 1, + anon_sym_LBRACE_PIPE, + STATE(4990), 1, + sym_object_type, + STATE(5956), 1, sym_comment, - ACTIONS(9975), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193028] = 4, + [192720] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6123), 1, + STATE(5957), 1, sym_comment, - ACTIONS(9975), 3, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193043] = 4, + [192735] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6124), 1, + STATE(5958), 1, sym_comment, - ACTIONS(9975), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193058] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [192750] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9806), 1, - anon_sym_require, - ACTIONS(9977), 1, - sym_identifier, - STATE(6125), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9912), 1, + anon_sym_LBRACE, + ACTIONS(9914), 1, + anon_sym_LPAREN, + STATE(1205), 1, + sym_statement_block, + STATE(5959), 1, sym_comment, - STATE(6187), 1, - sym_nested_identifier, - [193077] = 4, + [192769] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6126), 1, - sym_comment, - ACTIONS(9975), 3, - sym__automatic_semicolon, + ACTIONS(5797), 1, anon_sym_COMMA, - anon_sym_SEMI, - [193092] = 6, + ACTIONS(5882), 1, + anon_sym_RPAREN, + STATE(5960), 1, + sym_comment, + STATE(6013), 1, + aux_sym_array_repeat1, + [192788] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9979), 1, + ACTIONS(5797), 1, anon_sym_COMMA, - ACTIONS(9981), 1, - anon_sym_GT, - STATE(5946), 1, - aux_sym_type_arguments_repeat1, - STATE(6127), 1, + ACTIONS(5882), 1, + anon_sym_RPAREN, + STATE(5626), 1, + aux_sym_array_repeat1, + STATE(5961), 1, sym_comment, - [193111] = 4, + [192807] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6128), 1, + STATE(5962), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9916), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193126] = 4, + [192822] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6129), 1, + STATE(5963), 1, sym_comment, - ACTIONS(9889), 3, + ACTIONS(9918), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193141] = 4, + [192837] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6130), 1, + STATE(5964), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9916), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193156] = 4, + [192852] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6131), 1, + STATE(5965), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9900), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193171] = 4, + [192867] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6132), 1, + STATE(5966), 1, sym_comment, - ACTIONS(9965), 3, - sym__automatic_semicolon, + ACTIONS(5906), 3, anon_sym_COMMA, - anon_sym_SEMI, - [193186] = 4, + anon_sym_RPAREN, + anon_sym_RBRACK, + [192882] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6133), 1, + STATE(5967), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193201] = 4, + [192897] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6134), 1, + ACTIONS(9202), 1, + anon_sym_EQ, + STATE(5968), 1, sym_comment, - ACTIONS(9965), 3, - sym__automatic_semicolon, + ACTIONS(9920), 2, anon_sym_COMMA, - anon_sym_SEMI, - [193216] = 4, + anon_sym_RBRACK, + [192914] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6135), 1, - sym_comment, - ACTIONS(9563), 3, + ACTIONS(6342), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193231] = 6, + STATE(5969), 1, + sym_comment, + ACTIONS(2271), 2, + anon_sym_else, + anon_sym_while, + [192931] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9983), 1, + ACTIONS(5797), 1, anon_sym_COMMA, - ACTIONS(9985), 1, + ACTIONS(9922), 1, + anon_sym_RBRACK, + STATE(5626), 1, + aux_sym_array_repeat1, + STATE(5970), 1, + sym_comment, + [192950] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8828), 1, + anon_sym_DOT, + ACTIONS(9611), 1, + anon_sym_COLON, + ACTIONS(9924), 1, anon_sym_GT, - STATE(5946), 1, - aux_sym_type_arguments_repeat1, - STATE(6136), 1, + STATE(5971), 1, sym_comment, - [193250] = 4, + [192969] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6137), 1, + ACTIONS(9204), 1, + anon_sym_COMMA, + ACTIONS(9926), 1, + anon_sym_RBRACK, + STATE(5972), 1, + sym_comment, + STATE(5974), 1, + aux_sym_array_pattern_repeat1, + [192988] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5973), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9928), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193265] = 6, + [193003] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9987), 1, + ACTIONS(9920), 1, + anon_sym_RBRACK, + ACTIONS(9930), 1, anon_sym_COMMA, - ACTIONS(9989), 1, - anon_sym_GT, - STATE(5946), 1, - aux_sym_type_arguments_repeat1, - STATE(6138), 1, + STATE(5974), 2, sym_comment, - [193284] = 6, + aux_sym_array_pattern_repeat1, + [193020] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1342), 1, - anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8093), 1, - anon_sym_LBRACE_PIPE, - STATE(5132), 1, - sym_object_type, - STATE(6139), 1, + STATE(5975), 1, sym_comment, - [193303] = 6, + ACTIONS(9742), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193035] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9991), 1, - anon_sym_COMMA, - ACTIONS(9993), 1, - anon_sym_GT, - STATE(5946), 1, - aux_sym_type_arguments_repeat1, - STATE(6140), 1, + STATE(5976), 1, sym_comment, - [193322] = 6, + ACTIONS(6748), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193050] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9995), 1, - anon_sym_COMMA, - ACTIONS(9997), 1, - anon_sym_GT, - STATE(5946), 1, - aux_sym_type_arguments_repeat1, - STATE(6141), 1, + STATE(5977), 1, sym_comment, - [193341] = 4, + ACTIONS(9763), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193065] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6142), 1, + STATE(5978), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193356] = 6, + [193080] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, - anon_sym_COMMA, - ACTIONS(5872), 1, - anon_sym_RPAREN, - STATE(6143), 1, + STATE(5979), 1, sym_comment, - STATE(6196), 1, - aux_sym_array_repeat1, - [193375] = 6, + ACTIONS(9742), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193095] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, - anon_sym_COMMA, - ACTIONS(5872), 1, - anon_sym_RPAREN, - STATE(5607), 1, - aux_sym_array_repeat1, - STATE(6144), 1, + STATE(5980), 1, sym_comment, - [193394] = 4, + ACTIONS(9601), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193110] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6145), 1, + STATE(5981), 1, sym_comment, - ACTIONS(10001), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [193409] = 4, + [193125] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6146), 1, + STATE(5982), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193424] = 6, + [193140] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8606), 1, - anon_sym_COMMA, - ACTIONS(10003), 1, - anon_sym_LBRACE, - STATE(5975), 1, - aux_sym_implements_clause_repeat1, - STATE(6147), 1, + STATE(5983), 1, sym_comment, - [193443] = 6, + ACTIONS(9933), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193155] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, + STATE(5984), 1, + sym_comment, + ACTIONS(9828), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(10005), 1, + anon_sym_SEMI, + [193170] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4218), 1, + anon_sym_COLON, + ACTIONS(9935), 1, anon_sym_RPAREN, - STATE(5607), 1, - aux_sym_array_repeat1, - STATE(6148), 1, + STATE(5985), 1, sym_comment, - [193462] = 6, + STATE(7018), 1, + sym_type_annotation, + [193189] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10007), 1, - anon_sym_COMMA, - ACTIONS(10009), 1, - anon_sym_RBRACE, - STATE(6081), 1, - aux_sym_enum_body_repeat1, - STATE(6149), 1, + ACTIONS(7967), 1, + anon_sym_DOT, + STATE(5986), 1, sym_comment, - [193481] = 6, + ACTIONS(9937), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [193206] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(209), 1, - anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8047), 1, - anon_sym_LBRACE_PIPE, - STATE(6150), 1, + ACTIONS(7969), 1, + anon_sym_DOT, + STATE(5987), 1, sym_comment, - STATE(6988), 1, - sym_object_type, - [193500] = 6, + ACTIONS(9937), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [193223] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10011), 1, - anon_sym_COMMA, - ACTIONS(10013), 1, - anon_sym_RBRACE, - STATE(6151), 1, + STATE(5988), 1, sym_comment, - STATE(6455), 1, - aux_sym_export_clause_repeat1, - [193519] = 5, + ACTIONS(9939), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193238] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10015), 1, - anon_sym_as, - STATE(6152), 1, + STATE(5989), 1, sym_comment, - ACTIONS(10017), 2, + ACTIONS(9941), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [193536] = 6, + anon_sym_SEMI, + [193253] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10019), 1, - anon_sym_COMMA, - ACTIONS(10021), 1, - anon_sym_GT, - STATE(5946), 1, - aux_sym_type_arguments_repeat1, - STATE(6153), 1, + STATE(5990), 1, sym_comment, - [193555] = 6, + ACTIONS(9864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193268] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9053), 1, - anon_sym_DOT, - ACTIONS(9661), 1, - anon_sym_COLON, - ACTIONS(10023), 1, - anon_sym_GT, - STATE(6154), 1, + STATE(5991), 1, sym_comment, - [193574] = 4, + ACTIONS(9828), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193283] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6155), 1, + STATE(5992), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9943), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193589] = 4, + [193298] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6156), 1, + STATE(5993), 1, sym_comment, - ACTIONS(9889), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193604] = 4, + [193313] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6157), 1, + STATE(5994), 1, sym_comment, - ACTIONS(9643), 3, + ACTIONS(9945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193619] = 4, + [193328] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6158), 1, + STATE(5995), 1, sym_comment, - ACTIONS(9643), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193634] = 6, + [193343] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, + ACTIONS(9949), 1, anon_sym_COMMA, - ACTIONS(10025), 1, - anon_sym_RPAREN, - STATE(5607), 1, - aux_sym_array_repeat1, - STATE(6159), 1, + ACTIONS(9951), 1, + anon_sym_RBRACK, + STATE(5996), 1, sym_comment, - [193653] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6044), 1, + aux_sym_tuple_type_repeat1, + [193362] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7918), 1, - anon_sym_const, - ACTIONS(9142), 1, - sym_identifier, - STATE(6160), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(5997), 1, sym_comment, - STATE(6260), 1, - sym_type_parameter, - [193672] = 4, + ACTIONS(9947), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193377] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6161), 1, + STATE(5998), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193687] = 4, + [193392] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6162), 1, + STATE(5999), 1, sym_comment, - ACTIONS(10027), 3, + ACTIONS(9742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193702] = 4, + [193407] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6163), 1, + ACTIONS(4958), 1, + anon_sym_extends, + ACTIONS(9953), 1, + anon_sym_AMP, + ACTIONS(9955), 1, + anon_sym_PIPE, + STATE(6000), 1, + sym_comment, + [193426] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(6001), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193717] = 4, + [193441] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6164), 1, + STATE(6002), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193732] = 6, + [193456] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8008), 1, - anon_sym_COMMA, - ACTIONS(10029), 1, - anon_sym_RBRACE, - STATE(6165), 1, + STATE(6003), 1, sym_comment, - STATE(6240), 1, - aux_sym_object_repeat1, - [193751] = 6, + ACTIONS(9828), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193471] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5944), 1, - anon_sym_extends, - ACTIONS(10031), 1, - anon_sym_AMP, - ACTIONS(10033), 1, - anon_sym_PIPE, - STATE(6166), 1, + STATE(6004), 1, sym_comment, - [193770] = 6, + ACTIONS(9601), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193486] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10035), 1, + STATE(6005), 1, + sym_comment, + ACTIONS(9563), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(10037), 1, - anon_sym_RBRACE, - STATE(5969), 1, - aux_sym_enum_body_repeat1, - STATE(6167), 1, + anon_sym_SEMI, + [193501] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9832), 1, + anon_sym_require, + ACTIONS(9957), 1, + sym_identifier, + STATE(5696), 1, + sym_nested_identifier, + STATE(6006), 1, sym_comment, - [193789] = 6, + [193520] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8077), 1, - anon_sym_LBRACE, - ACTIONS(8079), 1, - anon_sym_LBRACE_PIPE, - STATE(1665), 1, - sym_object_type, - STATE(6168), 1, + STATE(6007), 1, sym_comment, - [193808] = 5, + ACTIONS(9864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193535] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7968), 1, - anon_sym_DOT, - STATE(6169), 1, + STATE(6008), 1, sym_comment, - ACTIONS(10039), 2, + ACTIONS(9864), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [193825] = 5, + [193550] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7942), 1, - anon_sym_DOT, - STATE(6170), 1, + STATE(6009), 1, sym_comment, - ACTIONS(10039), 2, + ACTIONS(9933), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [193842] = 6, + [193565] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1344), 1, + anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8794), 1, - anon_sym_COMMA, - ACTIONS(10041), 1, - anon_sym_RBRACE, - STATE(6171), 1, + ACTIONS(8033), 1, + anon_sym_LBRACE_PIPE, + STATE(5263), 1, + sym_object_type, + STATE(6010), 1, sym_comment, - STATE(6243), 1, - aux_sym_object_pattern_repeat1, - [193861] = 5, + [193584] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10043), 1, - anon_sym_COMMA, - ACTIONS(10046), 1, - anon_sym_GT, - STATE(6172), 2, + STATE(6011), 1, sym_comment, - aux_sym_type_parameters_repeat1, - [193878] = 4, + ACTIONS(9601), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [193599] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6173), 1, + ACTIONS(9959), 1, + anon_sym_COMMA, + ACTIONS(9961), 1, + anon_sym_RBRACE, + STATE(6012), 1, sym_comment, - ACTIONS(10048), 3, - sym__automatic_semicolon, + STATE(6053), 1, + aux_sym_enum_body_repeat1, + [193618] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5797), 1, anon_sym_COMMA, - anon_sym_SEMI, - [193893] = 4, + ACTIONS(9963), 1, + anon_sym_RPAREN, + STATE(5626), 1, + aux_sym_array_repeat1, + STATE(6013), 1, + sym_comment, + [193637] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6174), 1, + STATE(6014), 1, sym_comment, - ACTIONS(9855), 3, + ACTIONS(9828), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193908] = 6, + [193652] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10050), 1, + ACTIONS(9965), 1, anon_sym_COMMA, - ACTIONS(10052), 1, - anon_sym_RBRACK, - STATE(6091), 1, - aux_sym_tuple_type_repeat1, - STATE(6175), 1, + ACTIONS(9967), 1, + anon_sym_GT, + STATE(6015), 1, sym_comment, - [193927] = 4, + STATE(6079), 1, + aux_sym_type_arguments_repeat1, + [193671] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6176), 1, + STATE(6016), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193942] = 4, + [193686] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6177), 1, - sym_comment, - ACTIONS(10048), 3, - sym__automatic_semicolon, + ACTIONS(9969), 1, anon_sym_COMMA, - anon_sym_SEMI, - [193957] = 4, + ACTIONS(9971), 1, + anon_sym_GT, + STATE(6017), 1, + sym_comment, + STATE(6079), 1, + aux_sym_type_arguments_repeat1, + [193705] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6178), 1, + STATE(6018), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193972] = 6, + [193720] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10054), 1, + ACTIONS(9973), 1, anon_sym_COMMA, - ACTIONS(10056), 1, - anon_sym_RBRACK, - STATE(6179), 1, + ACTIONS(9975), 1, + anon_sym_GT, + STATE(6019), 1, sym_comment, - STATE(6227), 1, - aux_sym_tuple_type_repeat1, - [193991] = 4, + STATE(6079), 1, + aux_sym_type_arguments_repeat1, + [193739] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6180), 1, + STATE(6020), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(9933), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194006] = 4, + [193754] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6181), 1, + STATE(6021), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194021] = 6, + [193769] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9673), 1, + ACTIONS(9557), 1, anon_sym_LBRACE, - ACTIONS(10058), 1, + ACTIONS(9977), 1, sym_identifier, - STATE(5633), 1, + STATE(5619), 1, sym_export_clause, - STATE(6182), 1, + STATE(6022), 1, sym_comment, - [194040] = 6, + [193788] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4984), 1, - anon_sym_extends, - ACTIONS(10060), 1, - anon_sym_AMP, - ACTIONS(10062), 1, - anon_sym_PIPE, - STATE(6183), 1, + STATE(6023), 1, sym_comment, - [194059] = 6, + ACTIONS(9979), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [193803] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, + ACTIONS(9121), 1, anon_sym_from, - ACTIONS(9669), 1, + ACTIONS(9640), 1, anon_sym_as, - STATE(6184), 1, + STATE(6024), 1, sym_comment, - STATE(6675), 1, + STATE(6422), 1, sym__from_clause, - [194078] = 4, + [193822] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6185), 1, + STATE(6025), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194093] = 4, + [193837] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6186), 1, + STATE(6026), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194108] = 5, + [193852] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7942), 1, - anon_sym_DOT, - STATE(6187), 1, + STATE(6027), 1, sym_comment, - ACTIONS(10064), 2, + ACTIONS(9864), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [194125] = 4, + [193867] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6188), 1, + STATE(6028), 1, sym_comment, - ACTIONS(9855), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194140] = 5, + [193882] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7968), 1, - anon_sym_DOT, - STATE(6189), 1, + STATE(6029), 1, sym_comment, - ACTIONS(10064), 2, + ACTIONS(9828), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [194157] = 4, + [193897] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6190), 1, - sym_comment, - ACTIONS(9965), 3, + ACTIONS(6538), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194172] = 4, + STATE(6030), 1, + sym_comment, + ACTIONS(2373), 2, + anon_sym_else, + anon_sym_while, + [193914] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6191), 1, + STATE(6031), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194187] = 4, + [193929] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6192), 1, + STATE(6032), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9815), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194202] = 6, + [193944] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1342), 1, - anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8093), 1, - anon_sym_LBRACE_PIPE, - STATE(5399), 1, - sym_object_type, - STATE(6193), 1, + ACTIONS(6536), 1, + sym__automatic_semicolon, + STATE(6033), 1, sym_comment, - [194221] = 4, + ACTIONS(2381), 2, + anon_sym_else, + anon_sym_while, + [193961] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6194), 1, + STATE(6034), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194236] = 6, + [193976] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10066), 1, - anon_sym_COMMA, - ACTIONS(10068), 1, - anon_sym_RBRACE, - STATE(6195), 1, + ACTIONS(6518), 1, + sym__automatic_semicolon, + STATE(6035), 1, sym_comment, - STATE(6236), 1, - aux_sym_enum_body_repeat1, - [194255] = 6, + ACTIONS(2357), 2, + anon_sym_else, + anon_sym_while, + [193993] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, - anon_sym_COMMA, - ACTIONS(10070), 1, - anon_sym_RPAREN, - STATE(5607), 1, - aux_sym_array_repeat1, - STATE(6196), 1, + STATE(6036), 1, sym_comment, - [194274] = 4, + ACTIONS(9860), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194008] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6197), 1, + STATE(6037), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9933), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194289] = 6, + [194023] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10072), 1, - anon_sym_COMMA, - ACTIONS(10074), 1, - anon_sym_GT, - STATE(5946), 1, - aux_sym_type_arguments_repeat1, - STATE(6198), 1, + STATE(6038), 1, sym_comment, - [194308] = 4, + ACTIONS(9860), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194038] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6199), 1, + STATE(6039), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194323] = 6, + [194053] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10076), 1, - anon_sym_COMMA, - ACTIONS(10078), 1, - anon_sym_GT, - STATE(5946), 1, - aux_sym_type_arguments_repeat1, - STATE(6200), 1, + ACTIONS(6516), 1, + sym__automatic_semicolon, + STATE(6040), 1, sym_comment, - [194342] = 4, + ACTIONS(2365), 2, + anon_sym_else, + anon_sym_while, + [194070] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6201), 1, - sym_comment, - ACTIONS(9965), 3, + ACTIONS(6506), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194357] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10080), 1, - anon_sym_COMMA, - ACTIONS(10082), 1, - anon_sym_GT, - STATE(5946), 1, - aux_sym_type_arguments_repeat1, - STATE(6202), 1, + STATE(6041), 1, sym_comment, - [194376] = 4, + ACTIONS(2343), 2, + anon_sym_else, + anon_sym_while, + [194087] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6203), 1, + STATE(6042), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194391] = 4, + [194102] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6204), 1, + STATE(6043), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194406] = 4, + [194117] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6205), 1, - sym_comment, - ACTIONS(9965), 3, - sym__automatic_semicolon, + ACTIONS(9981), 1, anon_sym_COMMA, - anon_sym_SEMI, - [194421] = 4, + ACTIONS(9983), 1, + anon_sym_RBRACK, + STATE(5819), 1, + aux_sym_tuple_type_repeat1, + STATE(6044), 1, + sym_comment, + [194136] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6206), 1, - sym_comment, - ACTIONS(9965), 3, - sym__automatic_semicolon, + ACTIONS(9985), 1, anon_sym_COMMA, - anon_sym_SEMI, - [194436] = 4, + ACTIONS(9987), 1, + anon_sym_GT, + STATE(6045), 1, + sym_comment, + STATE(6177), 1, + aux_sym_type_parameters_repeat1, + [194155] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6207), 1, + STATE(6046), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194451] = 4, + [194170] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6208), 1, + STATE(6047), 1, sym_comment, - ACTIONS(10027), 3, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194466] = 4, + [194185] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6209), 1, + STATE(6048), 1, sym_comment, - ACTIONS(9889), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194481] = 4, + [194200] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6210), 1, + STATE(6049), 1, sym_comment, - ACTIONS(10048), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194496] = 4, + [194215] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6211), 1, + ACTIONS(8163), 1, + anon_sym_LBRACE, + ACTIONS(8165), 1, + anon_sym_LBRACE_PIPE, + STATE(1487), 1, + sym_object_type, + STATE(6050), 1, sym_comment, - ACTIONS(10048), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194511] = 4, + [194234] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6212), 1, - sym_comment, - ACTIONS(9965), 3, - sym__automatic_semicolon, + ACTIONS(9989), 1, anon_sym_COMMA, - anon_sym_SEMI, - [194526] = 4, + ACTIONS(9991), 1, + anon_sym_RBRACE, + STATE(5863), 1, + aux_sym_enum_body_repeat1, + STATE(6051), 1, + sym_comment, + [194253] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6213), 1, + STATE(6052), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194541] = 4, + [194268] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6214), 1, - sym_comment, - ACTIONS(9965), 3, - sym__automatic_semicolon, + ACTIONS(9993), 1, anon_sym_COMMA, - anon_sym_SEMI, - [194556] = 4, + ACTIONS(9995), 1, + anon_sym_RBRACE, + STATE(5863), 1, + aux_sym_enum_body_repeat1, + STATE(6053), 1, + sym_comment, + [194287] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6215), 1, + STATE(6054), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9601), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194571] = 4, + [194302] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6216), 1, + STATE(6055), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(9933), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194586] = 6, + [194317] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9053), 1, - anon_sym_DOT, - ACTIONS(9661), 1, - anon_sym_COLON, - ACTIONS(10084), 1, - anon_sym_GT, - STATE(6217), 1, + STATE(6056), 1, sym_comment, - [194605] = 4, + ACTIONS(9601), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194332] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6218), 1, + STATE(6057), 1, sym_comment, - ACTIONS(10086), 3, + ACTIONS(9828), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194620] = 6, + [194347] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, + ACTIONS(5797), 1, anon_sym_COMMA, - ACTIONS(5858), 1, + ACTIONS(5910), 1, anon_sym_RPAREN, - STATE(5607), 1, - aux_sym_array_repeat1, - STATE(6219), 1, + STATE(6058), 1, sym_comment, - [194639] = 4, + STATE(6189), 1, + aux_sym_array_repeat1, + [194366] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6220), 1, + STATE(6059), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(9933), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194654] = 6, + [194381] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8794), 1, + ACTIONS(5797), 1, anon_sym_COMMA, - ACTIONS(10088), 1, - anon_sym_RBRACE, - STATE(6221), 1, + ACTIONS(5910), 1, + anon_sym_RPAREN, + STATE(5626), 1, + aux_sym_array_repeat1, + STATE(6060), 1, sym_comment, - STATE(6243), 1, - aux_sym_object_pattern_repeat1, - [194673] = 4, + [194400] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6222), 1, + ACTIONS(4145), 1, + anon_sym_LPAREN, + ACTIONS(9997), 1, + anon_sym_DOT, + STATE(4338), 1, + sym_arguments, + STATE(6061), 1, sym_comment, - ACTIONS(9999), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194688] = 4, + [194419] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6223), 1, + STATE(6062), 1, sym_comment, - ACTIONS(9855), 3, + ACTIONS(9939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194703] = 6, + [194434] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7080), 1, - anon_sym_AMP, - ACTIONS(7082), 1, - anon_sym_PIPE, - ACTIONS(7084), 1, - anon_sym_extends, - STATE(6224), 1, + STATE(6063), 1, sym_comment, - [194722] = 4, + ACTIONS(9941), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194449] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6225), 1, + STATE(6064), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194737] = 6, + [194464] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8008), 1, - anon_sym_COMMA, - ACTIONS(10090), 1, - anon_sym_RBRACE, - STATE(6226), 1, + STATE(6065), 1, sym_comment, - STATE(6240), 1, - aux_sym_object_repeat1, - [194756] = 6, + ACTIONS(9742), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194479] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10092), 1, - anon_sym_COMMA, - ACTIONS(10094), 1, - anon_sym_RBRACK, - STATE(5806), 1, - aux_sym_tuple_type_repeat1, - STATE(6227), 1, + STATE(6066), 1, sym_comment, - [194775] = 4, + ACTIONS(9763), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194494] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6228), 1, + STATE(6067), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194790] = 4, + [194509] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6229), 1, + STATE(6068), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9828), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194805] = 4, + [194524] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9999), 1, + sym__glimmer_template_content, + ACTIONS(10002), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(6069), 2, + sym_comment, + aux_sym_glimmer_template_repeat1, + [194541] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6230), 1, + STATE(6070), 1, sym_comment, - ACTIONS(9643), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194820] = 4, + [194556] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6231), 1, + ACTIONS(8828), 1, + anon_sym_DOT, + ACTIONS(9611), 1, + anon_sym_COLON, + ACTIONS(10004), 1, + anon_sym_GT, + STATE(6071), 1, sym_comment, - ACTIONS(9999), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [194835] = 4, + [194575] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6232), 1, + STATE(6072), 1, sym_comment, - ACTIONS(9889), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194850] = 4, + [194590] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6233), 1, + STATE(6073), 1, sym_comment, - ACTIONS(9643), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194865] = 6, + [194605] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10096), 1, - anon_sym_COMMA, - ACTIONS(10098), 1, - anon_sym_RBRACE, - STATE(5793), 1, - aux_sym_enum_body_repeat1, - STATE(6234), 1, + ACTIONS(10008), 1, + anon_sym_LBRACE, + STATE(6074), 1, sym_comment, - [194884] = 4, + ACTIONS(8868), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [194622] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6235), 1, + STATE(6075), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194899] = 6, + [194637] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10100), 1, - anon_sym_COMMA, - ACTIONS(10102), 1, - anon_sym_RBRACE, - STATE(5793), 1, - aux_sym_enum_body_repeat1, - STATE(6236), 1, + STATE(6076), 1, sym_comment, - [194918] = 4, + ACTIONS(9947), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194652] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6237), 1, + STATE(6077), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194933] = 4, + [194667] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6238), 1, + STATE(6078), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194948] = 4, + [194682] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6239), 1, + ACTIONS(9083), 1, + anon_sym_GT, + ACTIONS(10010), 1, + anon_sym_COMMA, + STATE(6079), 2, sym_comment, - ACTIONS(10104), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [194963] = 5, + aux_sym_type_arguments_repeat1, + [194699] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10106), 1, - anon_sym_COMMA, - ACTIONS(10109), 1, - anon_sym_RBRACE, - STATE(6240), 2, + STATE(6080), 1, sym_comment, - aux_sym_object_repeat1, - [194980] = 6, + ACTIONS(10013), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [194714] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10111), 1, + ACTIONS(10015), 1, + anon_sym_as, + STATE(6081), 1, + sym_comment, + ACTIONS(10017), 2, anon_sym_COMMA, - ACTIONS(10113), 1, - anon_sym_RBRACK, - STATE(5961), 1, - aux_sym_tuple_type_repeat1, - STATE(6241), 1, + anon_sym_RBRACE, + [194731] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(6082), 1, sym_comment, - [194999] = 4, + ACTIONS(10019), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [194746] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6242), 1, + STATE(6083), 1, sym_comment, - ACTIONS(9643), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195014] = 5, + [194761] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10115), 1, + ACTIONS(10021), 1, anon_sym_COMMA, - ACTIONS(10118), 1, + ACTIONS(10023), 1, anon_sym_RBRACE, - STATE(6243), 2, + STATE(6084), 1, sym_comment, - aux_sym_object_pattern_repeat1, - [195031] = 4, + STATE(6221), 1, + aux_sym_export_clause_repeat1, + [194780] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6244), 1, + STATE(6085), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9828), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195046] = 4, + [194795] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6245), 1, + STATE(6086), 1, sym_comment, - ACTIONS(10120), 3, + ACTIONS(9939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195061] = 4, + [194810] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6246), 1, + STATE(6087), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195076] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4179), 1, - anon_sym_LPAREN, - ACTIONS(10122), 1, - anon_sym_DOT, - STATE(4459), 1, - sym_arguments, - STATE(6247), 1, - sym_comment, - [195095] = 4, + [194825] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6248), 1, + STATE(6088), 1, sym_comment, - ACTIONS(10124), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195110] = 4, + [194840] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6249), 1, + STATE(6089), 1, sym_comment, - ACTIONS(9965), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195125] = 4, + [194855] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6250), 1, + STATE(6090), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195140] = 4, + [194870] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6251), 1, + STATE(6091), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195155] = 4, + [194885] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6252), 1, + STATE(6092), 1, sym_comment, - ACTIONS(10120), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195170] = 4, + [194900] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6253), 1, + STATE(6093), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(9742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195185] = 4, + [194915] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6254), 1, + STATE(6094), 1, sym_comment, - ACTIONS(10124), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195200] = 4, + [194930] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6255), 1, + STATE(6095), 1, sym_comment, - ACTIONS(10124), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195215] = 4, + [194945] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6256), 1, + ACTIONS(8095), 1, + anon_sym_DOT, + STATE(6096), 1, sym_comment, - ACTIONS(9999), 3, - sym__automatic_semicolon, + ACTIONS(10025), 2, anon_sym_COMMA, - anon_sym_SEMI, - [195230] = 4, + anon_sym_GT, + [194962] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6257), 1, + STATE(6097), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9828), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195245] = 4, + [194977] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6258), 1, + ACTIONS(9202), 1, + anon_sym_EQ, + STATE(6098), 1, sym_comment, - ACTIONS(9847), 3, - sym__automatic_semicolon, + ACTIONS(10027), 2, anon_sym_COMMA, - anon_sym_SEMI, - [195260] = 4, + anon_sym_RBRACE, + [194994] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6259), 1, + STATE(6099), 1, sym_comment, - ACTIONS(10120), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195275] = 6, + [195009] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10126), 1, + ACTIONS(10029), 1, anon_sym_COMMA, - ACTIONS(10128), 1, - anon_sym_GT, - STATE(6260), 1, + ACTIONS(10031), 1, + anon_sym_RBRACE, + STATE(5863), 1, + aux_sym_enum_body_repeat1, + STATE(6100), 1, sym_comment, - STATE(6279), 1, - aux_sym_type_parameters_repeat1, - [195294] = 6, + [195028] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, + ACTIONS(10033), 1, anon_sym_COMMA, - ACTIONS(5858), 1, - anon_sym_RPAREN, - STATE(6148), 1, - aux_sym_array_repeat1, - STATE(6261), 1, + ACTIONS(10035), 1, + anon_sym_RBRACE, + STATE(5863), 1, + aux_sym_enum_body_repeat1, + STATE(6101), 1, sym_comment, - [195313] = 6, + [195047] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(209), 1, - anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8047), 1, - anon_sym_LBRACE_PIPE, - STATE(6262), 1, + STATE(6102), 1, sym_comment, - STATE(7027), 1, - sym_object_type, - [195332] = 4, + ACTIONS(9828), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195062] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6263), 1, + STATE(6103), 1, sym_comment, - ACTIONS(10124), 3, + ACTIONS(9757), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195347] = 4, + [195077] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6264), 1, + STATE(6104), 1, sym_comment, - ACTIONS(10124), 3, + ACTIONS(9742), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195362] = 4, + [195092] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6265), 1, + ACTIONS(10037), 1, + anon_sym_LPAREN, + ACTIONS(10039), 1, + anon_sym_await, + STATE(79), 1, + sym__for_header, + STATE(6105), 1, sym_comment, - ACTIONS(9847), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195377] = 4, + [195111] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6266), 1, + STATE(6106), 1, sym_comment, - ACTIONS(9889), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195392] = 4, + [195126] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6267), 1, + STATE(6107), 1, sym_comment, - ACTIONS(10120), 3, + ACTIONS(9763), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195407] = 4, + [195141] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6268), 1, + STATE(6108), 1, sym_comment, - ACTIONS(10130), 3, + ACTIONS(10041), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195422] = 4, + [195156] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10043), 1, + sym_identifier, + ACTIONS(10045), 1, + anon_sym_SEMI, + ACTIONS(10047), 1, + sym__automatic_semicolon, + STATE(6109), 1, + sym_comment, + [195175] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10049), 1, + sym_identifier, + ACTIONS(10051), 1, + anon_sym_SEMI, + ACTIONS(10053), 1, + sym__automatic_semicolon, + STATE(6110), 1, + sym_comment, + [195194] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6269), 1, + ACTIONS(10055), 1, + anon_sym_LPAREN, + ACTIONS(10057), 1, + anon_sym_await, + STATE(86), 1, + sym__for_header, + STATE(6111), 1, sym_comment, - ACTIONS(9855), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195437] = 4, + [195213] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6270), 1, + ACTIONS(10059), 1, + anon_sym_as, + STATE(6112), 1, sym_comment, - ACTIONS(10124), 3, - sym__automatic_semicolon, + ACTIONS(9856), 2, anon_sym_COMMA, - anon_sym_SEMI, - [195452] = 4, + anon_sym_RBRACE, + [195230] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7179), 1, + anon_sym_type, + ACTIONS(10061), 1, + sym_identifier, + STATE(6113), 1, + sym_comment, + STATE(6478), 1, + sym__import_identifier, + [195249] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6271), 1, + STATE(6114), 1, sym_comment, - ACTIONS(10124), 3, + ACTIONS(10063), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195467] = 4, + [195264] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7179), 1, + anon_sym_type, + ACTIONS(10061), 1, + sym_identifier, + STATE(6115), 1, + sym_comment, + STATE(6474), 1, + sym__import_identifier, + [195283] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6272), 1, + ACTIONS(10065), 1, + anon_sym_COMMA, + ACTIONS(10067), 1, + anon_sym_RBRACE, + STATE(6116), 1, + sym_comment, + STATE(6254), 1, + aux_sym_named_imports_repeat1, + [195302] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7937), 1, + anon_sym_const, + ACTIONS(9216), 1, + sym_identifier, + STATE(6117), 1, + sym_comment, + STATE(6618), 1, + sym_type_parameter, + [195321] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7967), 1, + anon_sym_DOT, + STATE(6118), 1, sym_comment, - ACTIONS(10132), 3, + ACTIONS(9553), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [195482] = 4, + [195338] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6273), 1, + ACTIONS(4218), 1, + anon_sym_COLON, + ACTIONS(10069), 1, + anon_sym_RPAREN, + STATE(6119), 1, sym_comment, - ACTIONS(9889), 3, + STATE(7128), 1, + sym_type_annotation, + [195357] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10071), 1, + sym_identifier, + ACTIONS(10073), 1, + anon_sym_SEMI, + ACTIONS(10075), 1, sym__automatic_semicolon, - anon_sym_COMMA, + STATE(6120), 1, + sym_comment, + [195376] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10077), 1, + sym_identifier, + ACTIONS(10079), 1, anon_sym_SEMI, - [195497] = 4, + ACTIONS(10081), 1, + sym__automatic_semicolon, + STATE(6121), 1, + sym_comment, + [195395] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6274), 1, + STATE(6122), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(10083), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195512] = 4, + [195410] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6275), 1, + STATE(6123), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195527] = 4, + [195425] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6276), 1, + STATE(6124), 1, sym_comment, - ACTIONS(10120), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195542] = 4, + [195440] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6277), 1, + STATE(6125), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(10063), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195557] = 4, + [195455] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6278), 1, + STATE(6126), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(10085), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195572] = 6, + [195470] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10134), 1, + STATE(6127), 1, + sym_comment, + ACTIONS(10087), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(10136), 1, - anon_sym_GT, - STATE(6172), 1, - aux_sym_type_parameters_repeat1, - STATE(6279), 1, + anon_sym_SEMI, + [195485] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10089), 1, + sym_identifier, + STATE(1907), 1, + sym_decorator_member_expression, + STATE(1978), 1, + sym_decorator_call_expression, + STATE(6128), 1, sym_comment, - [195591] = 4, + [195504] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6280), 1, + STATE(6129), 1, sym_comment, - ACTIONS(10124), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195606] = 5, + [195519] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10138), 1, - anon_sym_COMMA, - ACTIONS(10141), 1, - anon_sym_RBRACK, - STATE(6281), 2, + STATE(6130), 1, sym_comment, - aux_sym_array_pattern_repeat1, - [195623] = 4, + ACTIONS(9947), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195534] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6282), 1, + STATE(6131), 1, sym_comment, - ACTIONS(10124), 3, + ACTIONS(9945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195638] = 4, + [195549] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6283), 1, + STATE(6132), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195653] = 6, + [195564] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9112), 1, - anon_sym_COMMA, - ACTIONS(10143), 1, - anon_sym_RBRACK, - STATE(6281), 1, - aux_sym_array_pattern_repeat1, - STATE(6284), 1, + ACTIONS(10091), 1, + sym_identifier, + ACTIONS(10093), 1, + anon_sym_LBRACK, + ACTIONS(10095), 1, + sym_private_property_identifier, + STATE(6133), 1, sym_comment, - [195672] = 4, + [195583] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6285), 1, + STATE(6134), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(10097), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195687] = 4, + [195598] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6286), 1, + STATE(6135), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9475), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195702] = 6, + [195613] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, - anon_sym_COMMA, - ACTIONS(10145), 1, - anon_sym_RBRACK, - STATE(5607), 1, - aux_sym_array_repeat1, - STATE(6287), 1, + STATE(6136), 1, sym_comment, - [195721] = 6, + ACTIONS(9943), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195628] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10147), 1, - anon_sym_LPAREN, - ACTIONS(10149), 1, - anon_sym_await, - STATE(104), 1, - sym__for_header, - STATE(6288), 1, + STATE(6137), 1, sym_comment, - [195740] = 4, + ACTIONS(10099), 3, + anon_sym_default, + anon_sym_RBRACE, + anon_sym_case, + [195643] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6289), 1, + STATE(6138), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(10101), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195755] = 4, + [195658] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6290), 1, + STATE(6139), 1, sym_comment, - ACTIONS(10120), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195770] = 5, + [195673] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5351), 1, - anon_sym_LBRACE, - STATE(6291), 1, + STATE(6140), 1, sym_comment, - ACTIONS(5353), 2, + ACTIONS(8194), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [195688] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9099), 1, + anon_sym_LBRACE, + ACTIONS(10103), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [195787] = 6, - ACTIONS(3), 1, + STATE(6141), 2, + sym_comment, + aux_sym_implements_clause_repeat1, + [195705] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10106), 1, + anon_sym_COMMA, + ACTIONS(10109), 1, + anon_sym_RPAREN, + STATE(6142), 2, + sym_comment, + aux_sym_formal_parameters_repeat1, + [195722] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10151), 1, - sym_identifier, - ACTIONS(10153), 1, - anon_sym_SEMI, - ACTIONS(10155), 1, - sym__automatic_semicolon, - STATE(6292), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8741), 1, + anon_sym_COMMA, + ACTIONS(10111), 1, + anon_sym_RBRACE, + STATE(6143), 1, sym_comment, - [195806] = 6, + STATE(6195), 1, + aux_sym_object_pattern_repeat1, + [195741] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10157), 1, + ACTIONS(9832), 1, + anon_sym_require, + ACTIONS(10113), 1, sym_identifier, - ACTIONS(10159), 1, - anon_sym_SEMI, - ACTIONS(10161), 1, - sym__automatic_semicolon, - STATE(6293), 1, + STATE(6144), 1, sym_comment, - [195825] = 5, + STATE(6308), 1, + sym_nested_identifier, + [195760] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5347), 1, - anon_sym_LBRACE, - STATE(6294), 1, - sym_comment, - ACTIONS(5349), 2, + ACTIONS(8025), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [195842] = 5, + ACTIONS(10115), 1, + anon_sym_RBRACE, + STATE(6145), 1, + sym_comment, + STATE(6199), 1, + aux_sym_object_repeat1, + [195779] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9110), 1, - anon_sym_EQ, - STATE(6295), 1, - sym_comment, - ACTIONS(10141), 2, + ACTIONS(8025), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [195859] = 4, + ACTIONS(10115), 1, + anon_sym_RBRACE, + STATE(5895), 1, + aux_sym_object_repeat1, + STATE(6146), 1, + sym_comment, + [195798] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6296), 1, - sym_comment, - ACTIONS(5860), 3, + ACTIONS(8741), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [195874] = 5, + ACTIONS(10111), 1, + anon_sym_RBRACE, + STATE(5897), 1, + aux_sym_object_pattern_repeat1, + STATE(6147), 1, + sym_comment, + [195817] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5343), 1, - anon_sym_LBRACE, - STATE(6297), 1, + STATE(6148), 1, sym_comment, - ACTIONS(5345), 2, + ACTIONS(9757), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [195891] = 4, + anon_sym_SEMI, + [195832] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6298), 1, + STATE(6149), 1, sym_comment, - ACTIONS(10124), 3, + ACTIONS(9939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195906] = 4, + [195847] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6299), 1, + STATE(6150), 1, sym_comment, - ACTIONS(10124), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195921] = 5, + [195862] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5336), 1, - anon_sym_LBRACE, - STATE(6300), 1, - sym_comment, - ACTIONS(5338), 2, + ACTIONS(10117), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [195938] = 4, + ACTIONS(10119), 1, + anon_sym_RPAREN, + STATE(6151), 1, + sym_comment, + STATE(6204), 1, + aux_sym_formal_parameters_repeat1, + [195881] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6301), 1, + STATE(6152), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(10121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195953] = 5, + [195896] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5336), 1, - anon_sym_LBRACE, - STATE(6302), 1, - sym_comment, - ACTIONS(5338), 2, + ACTIONS(9204), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [195970] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(6303), 1, + ACTIONS(9408), 1, + anon_sym_RBRACK, + STATE(6153), 1, sym_comment, - ACTIONS(9561), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [195985] = 4, + STATE(6208), 1, + aux_sym_array_pattern_repeat1, + [195915] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(6304), 1, + ACTIONS(7937), 1, + anon_sym_const, + ACTIONS(9216), 1, + sym_identifier, + STATE(6154), 1, sym_comment, - ACTIONS(9889), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196000] = 5, + STATE(6171), 1, + sym_type_parameter, + [195934] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5332), 1, - anon_sym_LBRACE, - STATE(6305), 1, - sym_comment, - ACTIONS(5334), 2, + ACTIONS(5797), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [196017] = 6, + ACTIONS(5908), 1, + anon_sym_RBRACK, + STATE(6155), 1, + sym_comment, + STATE(6206), 1, + aux_sym_array_repeat1, + [195953] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9112), 1, + ACTIONS(5797), 1, anon_sym_COMMA, - ACTIONS(10163), 1, + ACTIONS(5908), 1, anon_sym_RBRACK, - STATE(6281), 1, - aux_sym_array_pattern_repeat1, - STATE(6306), 1, + STATE(5626), 1, + aux_sym_array_repeat1, + STATE(6156), 1, sym_comment, - [196036] = 5, + [195972] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5332), 1, + ACTIONS(10123), 1, anon_sym_LBRACE, - STATE(6307), 1, + STATE(6157), 1, sym_comment, - ACTIONS(5334), 2, - anon_sym_COMMA, + ACTIONS(9097), 2, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [196053] = 6, + [195989] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, + ACTIONS(9204), 1, anon_sym_COMMA, - ACTIONS(10165), 1, + ACTIONS(9408), 1, anon_sym_RBRACK, - STATE(5607), 1, - aux_sym_array_repeat1, - STATE(6308), 1, + STATE(5974), 1, + aux_sym_array_pattern_repeat1, + STATE(6158), 1, sym_comment, - [196072] = 5, + [196008] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5328), 1, + ACTIONS(5150), 1, anon_sym_LBRACE, - STATE(6309), 1, + STATE(6159), 1, sym_comment, - ACTIONS(5330), 2, + ACTIONS(5152), 2, anon_sym_COMMA, anon_sym_LBRACE_PIPE, - [196089] = 5, + [196025] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5324), 1, - anon_sym_LBRACE, - STATE(6310), 1, - sym_comment, - ACTIONS(5326), 2, + ACTIONS(10125), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [196106] = 6, + ACTIONS(10127), 1, + anon_sym_RBRACK, + STATE(6160), 1, + sym_comment, + STATE(6161), 1, + aux_sym_tuple_type_repeat1, + [196044] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10167), 1, - anon_sym_LBRACE, - ACTIONS(10169), 1, - anon_sym_LPAREN, - STATE(1349), 1, - sym_statement_block, - STATE(6311), 1, + ACTIONS(10129), 1, + anon_sym_COMMA, + ACTIONS(10131), 1, + anon_sym_RBRACK, + STATE(5819), 1, + aux_sym_tuple_type_repeat1, + STATE(6161), 1, sym_comment, - [196125] = 5, + [196063] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5320), 1, + ACTIONS(9557), 1, anon_sym_LBRACE, - STATE(6312), 1, + ACTIONS(10133), 1, + sym_identifier, + STATE(5529), 1, + sym_export_clause, + STATE(6162), 1, sym_comment, - ACTIONS(5322), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [196142] = 6, + [196082] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - ACTIONS(10171), 1, - anon_sym_LPAREN, - STATE(5985), 1, - sym_statement_block, - STATE(6313), 1, + ACTIONS(9121), 1, + anon_sym_from, + ACTIONS(9640), 1, + anon_sym_as, + STATE(6163), 1, sym_comment, - [196161] = 5, + STATE(6605), 1, + sym__from_clause, + [196101] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5316), 1, - anon_sym_LBRACE, - STATE(6314), 1, + STATE(6164), 1, sym_comment, - ACTIONS(5318), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [196178] = 6, + ACTIONS(10135), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [196116] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10173), 1, - anon_sym_COMMA, - ACTIONS(10175), 1, - anon_sym_RPAREN, - STATE(6315), 1, + ACTIONS(7069), 1, + anon_sym_AMP, + ACTIONS(7071), 1, + anon_sym_PIPE, + ACTIONS(7073), 1, + anon_sym_extends, + STATE(6165), 1, sym_comment, - STATE(6370), 1, - aux_sym_formal_parameters_repeat1, - [196197] = 4, + [196135] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6316), 1, - sym_comment, - ACTIONS(9999), 3, - sym__automatic_semicolon, + ACTIONS(8683), 1, anon_sym_COMMA, - anon_sym_SEMI, - [196212] = 4, + ACTIONS(10137), 1, + anon_sym_LBRACE, + STATE(6141), 1, + aux_sym_implements_clause_repeat1, + STATE(6166), 1, + sym_comment, + [196154] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6317), 1, + ACTIONS(5066), 1, + anon_sym_LBRACE, + STATE(6167), 1, sym_comment, - ACTIONS(10177), 3, + ACTIONS(5068), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - [196227] = 4, + anon_sym_LBRACE_PIPE, + [196171] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6318), 1, + STATE(6168), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196242] = 4, + [196186] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6319), 1, + STATE(6169), 1, sym_comment, - ACTIONS(10124), 3, + ACTIONS(9939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196257] = 4, + [196201] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6320), 1, + STATE(6170), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196272] = 5, + [196216] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10179), 1, - anon_sym_EQ, - STATE(6321), 1, - sym_comment, - ACTIONS(9588), 2, + ACTIONS(10139), 1, anon_sym_COMMA, - anon_sym_from, - [196289] = 4, + ACTIONS(10141), 1, + anon_sym_GT, + STATE(6171), 1, + sym_comment, + STATE(6232), 1, + aux_sym_type_parameters_repeat1, + [196235] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6322), 1, + STATE(6172), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196304] = 4, + [196250] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(6323), 1, + ACTIONS(10143), 1, + sym_identifier, + ACTIONS(10145), 1, + anon_sym_LBRACK, + ACTIONS(10147), 1, + sym_private_property_identifier, + STATE(6173), 1, sym_comment, - ACTIONS(9999), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196319] = 4, + [196269] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6324), 1, + STATE(6174), 1, sym_comment, - ACTIONS(9889), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196334] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10181), 1, - anon_sym_COMMA, - ACTIONS(10183), 1, - anon_sym_GT, - STATE(5946), 1, - aux_sym_type_arguments_repeat1, - STATE(6325), 1, - sym_comment, - [196353] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [196284] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8008), 1, - anon_sym_COMMA, - ACTIONS(10185), 1, - anon_sym_RBRACE, - STATE(6240), 1, - aux_sym_object_repeat1, - STATE(6326), 1, - sym_comment, - [196372] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10187), 1, - anon_sym_COMMA, - ACTIONS(10189), 1, - anon_sym_GT, - STATE(5946), 1, - aux_sym_type_arguments_repeat1, - STATE(6327), 1, + ACTIONS(10149), 1, + sym_identifier, + ACTIONS(10151), 1, + anon_sym_LBRACK, + ACTIONS(10153), 1, + sym_private_property_identifier, + STATE(6175), 1, sym_comment, - [196391] = 4, + [196303] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6328), 1, + STATE(6176), 1, sym_comment, - ACTIONS(10120), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196406] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8794), 1, - anon_sym_COMMA, - ACTIONS(10191), 1, - anon_sym_RBRACE, - STATE(6243), 1, - aux_sym_object_pattern_repeat1, - STATE(6329), 1, - sym_comment, - [196425] = 6, + [196318] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10193), 1, + ACTIONS(10155), 1, anon_sym_COMMA, - ACTIONS(10195), 1, + ACTIONS(10158), 1, anon_sym_GT, - STATE(5946), 1, - aux_sym_type_arguments_repeat1, - STATE(6330), 1, + STATE(6177), 2, sym_comment, - [196444] = 6, + aux_sym_type_parameters_repeat1, + [196335] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8794), 1, - anon_sym_COMMA, - ACTIONS(10197), 1, - anon_sym_RBRACE, - STATE(6243), 1, - aux_sym_object_pattern_repeat1, - STATE(6331), 1, + ACTIONS(10160), 1, + sym_identifier, + ACTIONS(10162), 1, + anon_sym_LBRACK, + ACTIONS(10164), 1, + sym_private_property_identifier, + STATE(6178), 1, sym_comment, - [196463] = 6, + [196354] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, - anon_sym_COMMA, - ACTIONS(10199), 1, - anon_sym_RPAREN, - STATE(5607), 1, - aux_sym_array_repeat1, - STATE(6332), 1, + STATE(6179), 1, sym_comment, - [196482] = 6, + ACTIONS(9864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196369] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8008), 1, - anon_sym_COMMA, - ACTIONS(10201), 1, - anon_sym_RBRACE, - STATE(6240), 1, - aux_sym_object_repeat1, - STATE(6333), 1, + STATE(6180), 1, sym_comment, - [196501] = 4, + ACTIONS(9864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196384] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6334), 1, + STATE(6181), 1, sym_comment, - ACTIONS(10124), 3, + ACTIONS(9945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196516] = 4, + [196399] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6335), 1, + STATE(6182), 1, sym_comment, - ACTIONS(10124), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196531] = 4, + [196414] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6336), 1, + STATE(6183), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196546] = 4, + [196429] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6337), 1, + ACTIONS(8163), 1, + anon_sym_LBRACE, + ACTIONS(8165), 1, + anon_sym_LBRACE_PIPE, + STATE(1449), 1, + sym_object_type, + STATE(6184), 1, sym_comment, - ACTIONS(9999), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196561] = 4, + [196448] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6338), 1, + STATE(6185), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196576] = 4, + [196463] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6339), 1, + STATE(6186), 1, sym_comment, - ACTIONS(10120), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196591] = 4, + [196478] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6340), 1, + STATE(6187), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9933), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196606] = 6, + [196493] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, + ACTIONS(10166), 1, anon_sym_COMMA, - ACTIONS(5890), 1, - anon_sym_RPAREN, - STATE(5607), 1, - aux_sym_array_repeat1, - STATE(6341), 1, + ACTIONS(10168), 1, + anon_sym_RBRACE, + STATE(6100), 1, + aux_sym_enum_body_repeat1, + STATE(6188), 1, sym_comment, - [196625] = 6, + [196512] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, + ACTIONS(5797), 1, anon_sym_COMMA, - ACTIONS(5890), 1, + ACTIONS(10170), 1, anon_sym_RPAREN, - STATE(6332), 1, + STATE(5626), 1, aux_sym_array_repeat1, - STATE(6342), 1, + STATE(6189), 1, sym_comment, - [196644] = 4, + [196531] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6343), 1, + STATE(6190), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196659] = 4, + [196546] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6344), 1, + STATE(6191), 1, sym_comment, - ACTIONS(9855), 3, + ACTIONS(9933), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196674] = 4, + [196561] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6345), 1, - sym_comment, - ACTIONS(9550), 3, - sym__automatic_semicolon, + ACTIONS(8741), 1, anon_sym_COMMA, - anon_sym_SEMI, - [196689] = 4, + ACTIONS(10172), 1, + anon_sym_RBRACE, + STATE(5897), 1, + aux_sym_object_pattern_repeat1, + STATE(6192), 1, + sym_comment, + [196580] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6346), 1, - sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, + ACTIONS(10174), 1, anon_sym_COMMA, - anon_sym_SEMI, - [196704] = 4, + ACTIONS(10176), 1, + anon_sym_GT, + STATE(6079), 1, + aux_sym_type_arguments_repeat1, + STATE(6193), 1, + sym_comment, + [196599] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6347), 1, + ACTIONS(10178), 1, + anon_sym_LBRACE, + ACTIONS(10180), 1, + anon_sym_LPAREN, + STATE(940), 1, + sym_statement_block, + STATE(6194), 1, sym_comment, - ACTIONS(9847), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196719] = 4, + [196618] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6348), 1, - sym_comment, - ACTIONS(10124), 3, - sym__automatic_semicolon, + ACTIONS(8741), 1, anon_sym_COMMA, - anon_sym_SEMI, - [196734] = 4, + ACTIONS(10182), 1, + anon_sym_RBRACE, + STATE(5897), 1, + aux_sym_object_pattern_repeat1, + STATE(6195), 1, + sym_comment, + [196637] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6349), 1, - sym_comment, - ACTIONS(9550), 3, - sym__automatic_semicolon, + ACTIONS(10184), 1, anon_sym_COMMA, - anon_sym_SEMI, - [196749] = 4, + ACTIONS(10186), 1, + anon_sym_RBRACE, + STATE(5863), 1, + aux_sym_enum_body_repeat1, + STATE(6196), 1, + sym_comment, + [196656] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6350), 1, - sym_comment, - ACTIONS(10124), 3, - sym__automatic_semicolon, + ACTIONS(10188), 1, anon_sym_COMMA, - anon_sym_SEMI, - [196764] = 4, + ACTIONS(10190), 1, + anon_sym_GT, + STATE(6079), 1, + aux_sym_type_arguments_repeat1, + STATE(6197), 1, + sym_comment, + [196675] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6351), 1, - sym_comment, - ACTIONS(9999), 3, - sym__automatic_semicolon, + ACTIONS(10192), 1, anon_sym_COMMA, - anon_sym_SEMI, - [196779] = 5, + ACTIONS(10194), 1, + anon_sym_GT, + STATE(6079), 1, + aux_sym_type_arguments_repeat1, + STATE(6198), 1, + sym_comment, + [196694] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9369), 1, - anon_sym_as, - STATE(6352), 1, - sym_comment, - ACTIONS(9588), 2, + ACTIONS(8025), 1, anon_sym_COMMA, + ACTIONS(10196), 1, anon_sym_RBRACE, - [196796] = 4, + STATE(5895), 1, + aux_sym_object_repeat1, + STATE(6199), 1, + sym_comment, + [196713] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6353), 1, + STATE(6200), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196811] = 6, + [196728] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10203), 1, + ACTIONS(10198), 1, sym_identifier, - ACTIONS(10205), 1, + ACTIONS(10200), 1, anon_sym_LBRACK, - ACTIONS(10207), 1, + ACTIONS(10202), 1, sym_private_property_identifier, - STATE(6354), 1, + STATE(6201), 1, sym_comment, - [196830] = 4, + [196747] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6355), 1, + STATE(6202), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(10204), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196845] = 4, + [196762] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6356), 1, + STATE(6203), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9933), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196860] = 4, + [196777] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6357), 1, - sym_comment, - ACTIONS(9847), 3, - sym__automatic_semicolon, + ACTIONS(10206), 1, anon_sym_COMMA, - anon_sym_SEMI, - [196875] = 4, + ACTIONS(10208), 1, + anon_sym_RPAREN, + STATE(6142), 1, + aux_sym_formal_parameters_repeat1, + STATE(6204), 1, + sym_comment, + [196796] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6358), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + ACTIONS(10210), 1, + anon_sym_LPAREN, + STATE(6205), 1, sym_comment, - ACTIONS(10120), 3, - sym__automatic_semicolon, + STATE(6224), 1, + sym_statement_block, + [196815] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5797), 1, anon_sym_COMMA, - anon_sym_SEMI, - [196890] = 4, + ACTIONS(10212), 1, + anon_sym_RBRACK, + STATE(5626), 1, + aux_sym_array_repeat1, + STATE(6206), 1, + sym_comment, + [196834] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6359), 1, + ACTIONS(10214), 1, + anon_sym_COMMA, + ACTIONS(10216), 1, + anon_sym_RBRACE, + STATE(5863), 1, + aux_sym_enum_body_repeat1, + STATE(6207), 1, sym_comment, - ACTIONS(10124), 3, - sym__automatic_semicolon, + [196853] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9204), 1, anon_sym_COMMA, - anon_sym_SEMI, - [196905] = 4, + ACTIONS(10218), 1, + anon_sym_RBRACK, + STATE(5974), 1, + aux_sym_array_pattern_repeat1, + STATE(6208), 1, + sym_comment, + [196872] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6360), 1, + ACTIONS(8043), 1, + anon_sym_LBRACE, + ACTIONS(8045), 1, + anon_sym_LBRACE_PIPE, + STATE(1235), 1, + sym_object_type, + STATE(6209), 1, sym_comment, - ACTIONS(10124), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [196920] = 4, + [196891] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6361), 1, + STATE(6210), 1, sym_comment, - ACTIONS(9563), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196935] = 4, + [196906] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6362), 1, + STATE(6211), 1, sym_comment, - ACTIONS(10120), 3, + ACTIONS(9939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196950] = 4, + [196921] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6363), 1, + STATE(6212), 1, sym_comment, - ACTIONS(9855), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196965] = 6, + [196936] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10209), 1, + ACTIONS(5797), 1, anon_sym_COMMA, - ACTIONS(10211), 1, - anon_sym_RBRACE, - STATE(6364), 1, + ACTIONS(5927), 1, + anon_sym_RPAREN, + STATE(6213), 1, sym_comment, - STATE(6410), 1, - aux_sym_named_imports_repeat1, - [196984] = 4, + STATE(6260), 1, + aux_sym_array_repeat1, + [196955] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6365), 1, - sym_comment, - ACTIONS(10124), 3, - sym__automatic_semicolon, + ACTIONS(5797), 1, anon_sym_COMMA, - anon_sym_SEMI, - [196999] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9806), 1, - anon_sym_require, - ACTIONS(10213), 1, - sym_identifier, - STATE(6366), 1, + ACTIONS(5927), 1, + anon_sym_RPAREN, + STATE(5626), 1, + aux_sym_array_repeat1, + STATE(6214), 1, sym_comment, - STATE(6389), 1, - sym_nested_identifier, - [197018] = 4, + [196974] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6367), 1, + STATE(6215), 1, sym_comment, - ACTIONS(10124), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197033] = 4, + [196989] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6368), 1, + STATE(6216), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197048] = 4, + [197004] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6369), 1, + STATE(6217), 1, sym_comment, - ACTIONS(10132), 3, + ACTIONS(10220), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [197063] = 5, + [197019] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10215), 1, + ACTIONS(10222), 1, anon_sym_COMMA, - ACTIONS(10218), 1, - anon_sym_RPAREN, - STATE(6370), 2, + ACTIONS(10224), 1, + anon_sym_RBRACK, + STATE(5819), 1, + aux_sym_tuple_type_repeat1, + STATE(6218), 1, sym_comment, - aux_sym_formal_parameters_repeat1, - [197080] = 4, + [197038] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6371), 1, + ACTIONS(6472), 1, + sym__automatic_semicolon, + STATE(6219), 1, + sym_comment, + ACTIONS(2275), 2, + anon_sym_else, + anon_sym_while, + [197055] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(6220), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197095] = 4, + [197070] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6372), 1, + ACTIONS(10226), 1, + anon_sym_COMMA, + ACTIONS(10229), 1, + anon_sym_RBRACE, + STATE(6221), 2, sym_comment, - ACTIONS(8121), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [197110] = 4, + aux_sym_export_clause_repeat1, + [197087] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6373), 1, - sym_comment, - ACTIONS(9999), 3, + ACTIONS(6437), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197125] = 4, + STATE(6222), 1, + sym_comment, + ACTIONS(2329), 2, + anon_sym_else, + anon_sym_while, + [197104] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6374), 1, - sym_comment, - ACTIONS(9999), 3, + ACTIONS(6407), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197140] = 6, + STATE(6223), 1, + sym_comment, + ACTIONS(2325), 2, + anon_sym_else, + anon_sym_while, + [197121] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10220), 1, - anon_sym_COMMA, - ACTIONS(10222), 1, - anon_sym_RBRACE, - STATE(5793), 1, - aux_sym_enum_body_repeat1, - STATE(6375), 1, + STATE(6224), 1, sym_comment, - [197159] = 4, + ACTIONS(3248), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [197136] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6376), 1, + STATE(6225), 1, sym_comment, - ACTIONS(10124), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197174] = 6, + [197151] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10224), 1, - anon_sym_LBRACE, - ACTIONS(10226), 1, - anon_sym_LPAREN, - STATE(927), 1, - sym_statement_block, - STATE(6377), 1, + STATE(6226), 1, sym_comment, - [197193] = 6, + ACTIONS(9864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197166] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10228), 1, + ACTIONS(10231), 1, anon_sym_COMMA, - ACTIONS(10230), 1, - anon_sym_RBRACE, - STATE(5793), 1, - aux_sym_enum_body_repeat1, - STATE(6378), 1, + ACTIONS(10233), 1, + anon_sym_GT, + STATE(6079), 1, + aux_sym_type_arguments_repeat1, + STATE(6227), 1, sym_comment, - [197212] = 4, + [197185] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6379), 1, + STATE(6228), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197227] = 4, + [197200] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6380), 1, - sym_comment, - ACTIONS(9436), 3, - sym__automatic_semicolon, + ACTIONS(10235), 1, anon_sym_COMMA, - anon_sym_SEMI, - [197242] = 4, + ACTIONS(10237), 1, + anon_sym_GT, + STATE(6079), 1, + aux_sym_type_arguments_repeat1, + STATE(6229), 1, + sym_comment, + [197219] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6381), 1, - sym_comment, - ACTIONS(9561), 3, - sym__automatic_semicolon, + ACTIONS(10239), 1, anon_sym_COMMA, - anon_sym_SEMI, - [197257] = 4, + ACTIONS(10241), 1, + anon_sym_GT, + STATE(6079), 1, + aux_sym_type_arguments_repeat1, + STATE(6230), 1, + sym_comment, + [197238] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6382), 1, + STATE(6231), 1, sym_comment, - ACTIONS(9855), 3, + ACTIONS(9933), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197272] = 4, + [197253] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6383), 1, - sym_comment, - ACTIONS(9889), 3, - sym__automatic_semicolon, + ACTIONS(10243), 1, anon_sym_COMMA, - anon_sym_SEMI, - [197287] = 4, + ACTIONS(10245), 1, + anon_sym_GT, + STATE(6177), 1, + aux_sym_type_parameters_repeat1, + STATE(6232), 1, + sym_comment, + [197272] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6384), 1, - sym_comment, - ACTIONS(10232), 3, - sym__automatic_semicolon, + ACTIONS(5797), 1, anon_sym_COMMA, - anon_sym_SEMI, - [197302] = 4, + ACTIONS(10247), 1, + anon_sym_RPAREN, + STATE(5626), 1, + aux_sym_array_repeat1, + STATE(6233), 1, + sym_comment, + [197291] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6385), 1, + STATE(6234), 1, sym_comment, - ACTIONS(10120), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197317] = 4, + [197306] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6386), 1, + ACTIONS(7967), 1, + anon_sym_DOT, + STATE(6235), 1, sym_comment, - ACTIONS(9550), 3, + ACTIONS(10249), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [197332] = 4, + [197323] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6387), 1, + ACTIONS(7969), 1, + anon_sym_DOT, + STATE(6236), 1, sym_comment, - ACTIONS(10234), 3, + ACTIONS(10249), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [197347] = 4, + [197340] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6388), 1, - sym_comment, - ACTIONS(10124), 3, + ACTIONS(6405), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [197362] = 5, + STATE(6237), 1, + sym_comment, + ACTIONS(2387), 2, + anon_sym_else, + anon_sym_while, + [197357] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7942), 1, - anon_sym_DOT, - STATE(6389), 1, + STATE(6238), 1, sym_comment, - ACTIONS(10236), 2, + ACTIONS(9947), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [197379] = 4, + [197372] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6390), 1, - sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, + ACTIONS(5797), 1, anon_sym_COMMA, - anon_sym_SEMI, - [197394] = 6, + ACTIONS(5912), 1, + anon_sym_RPAREN, + STATE(5626), 1, + aux_sym_array_repeat1, + STATE(6239), 1, + sym_comment, + [197391] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10238), 1, + ACTIONS(5797), 1, anon_sym_COMMA, - ACTIONS(10240), 1, - anon_sym_GT, - STATE(5946), 1, - aux_sym_type_arguments_repeat1, - STATE(6391), 1, + ACTIONS(5912), 1, + anon_sym_RPAREN, + STATE(6233), 1, + aux_sym_array_repeat1, + STATE(6240), 1, sym_comment, - [197413] = 6, + [197410] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8024), 1, - anon_sym_LBRACE, - ACTIONS(8030), 1, - anon_sym_LBRACE_PIPE, - STATE(1206), 1, - sym_object_type, - STATE(6392), 1, + STATE(6241), 1, sym_comment, - [197432] = 6, + ACTIONS(9864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197425] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(209), 1, + anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10242), 1, - anon_sym_COMMA, - ACTIONS(10244), 1, - anon_sym_GT, - STATE(5946), 1, - aux_sym_type_arguments_repeat1, - STATE(6393), 1, + ACTIONS(8001), 1, + anon_sym_LBRACE_PIPE, + STATE(6242), 1, sym_comment, - [197451] = 4, + STATE(6576), 1, + sym_object_type, + [197444] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6394), 1, + STATE(6243), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197466] = 6, + [197459] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10246), 1, + ACTIONS(5797), 1, anon_sym_COMMA, - ACTIONS(10248), 1, - anon_sym_GT, - STATE(5946), 1, - aux_sym_type_arguments_repeat1, - STATE(6395), 1, + ACTIONS(5896), 1, + anon_sym_RPAREN, + STATE(6244), 1, sym_comment, - [197485] = 6, + STATE(6324), 1, + aux_sym_array_repeat1, + [197478] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, + ACTIONS(10251), 1, anon_sym_COMMA, - ACTIONS(5850), 1, - anon_sym_RPAREN, - STATE(6396), 1, + ACTIONS(10253), 1, + anon_sym_RBRACK, + STATE(6245), 1, sym_comment, - STATE(6443), 1, - aux_sym_array_repeat1, - [197504] = 6, + STATE(6295), 1, + aux_sym_tuple_type_repeat1, + [197497] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, + ACTIONS(5797), 1, anon_sym_COMMA, - ACTIONS(5850), 1, + ACTIONS(5896), 1, anon_sym_RPAREN, - STATE(5607), 1, + STATE(5626), 1, aux_sym_array_repeat1, - STATE(6397), 1, + STATE(6246), 1, sym_comment, - [197523] = 6, + [197516] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, - anon_sym_COMMA, - ACTIONS(10250), 1, - anon_sym_RPAREN, - STATE(5607), 1, - aux_sym_array_repeat1, - STATE(6398), 1, + ACTIONS(4159), 1, + anon_sym_LPAREN, + ACTIONS(10255), 1, + anon_sym_DOT, + STATE(4331), 1, + sym_arguments, + STATE(6247), 1, + sym_comment, + [197535] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7179), 1, + anon_sym_type, + ACTIONS(10061), 1, + sym_identifier, + STATE(6248), 1, sym_comment, - [197542] = 6, + STATE(6661), 1, + sym__import_identifier, + [197554] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10252), 1, - anon_sym_COMMA, - ACTIONS(10254), 1, - anon_sym_RBRACE, - STATE(6375), 1, - aux_sym_enum_body_repeat1, - STATE(6399), 1, + ACTIONS(7537), 1, + anon_sym_AMP, + ACTIONS(7539), 1, + anon_sym_PIPE, + ACTIONS(7541), 1, + anon_sym_extends, + STATE(6249), 1, sym_comment, - [197561] = 4, + [197573] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6400), 1, + STATE(6250), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9933), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197576] = 4, + [197588] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6401), 1, + STATE(6251), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(9939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197591] = 6, + [197603] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9112), 1, - anon_sym_COMMA, - ACTIONS(9309), 1, - anon_sym_RBRACK, - STATE(6281), 1, - aux_sym_array_pattern_repeat1, - STATE(6402), 1, + STATE(6252), 1, sym_comment, - [197610] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10256), 1, + ACTIONS(9864), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(10258), 1, - anon_sym_RPAREN, - STATE(6370), 1, - aux_sym_formal_parameters_repeat1, - STATE(6403), 1, - sym_comment, - [197629] = 6, + anon_sym_SEMI, + [197618] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5830), 1, - anon_sym_COMMA, - ACTIONS(5922), 1, - anon_sym_RBRACK, - STATE(5607), 1, - aux_sym_array_repeat1, - STATE(6404), 1, + ACTIONS(7179), 1, + anon_sym_type, + ACTIONS(10061), 1, + sym_identifier, + STATE(6253), 1, sym_comment, - [197648] = 6, + STATE(6859), 1, + sym__import_identifier, + [197637] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, + ACTIONS(10257), 1, anon_sym_COMMA, - ACTIONS(5922), 1, - anon_sym_RBRACK, - STATE(6308), 1, - aux_sym_array_repeat1, - STATE(6405), 1, + ACTIONS(10260), 1, + anon_sym_RBRACE, + STATE(6254), 2, sym_comment, - [197667] = 6, + aux_sym_named_imports_repeat1, + [197654] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9112), 1, - anon_sym_COMMA, - ACTIONS(9309), 1, - anon_sym_RBRACK, - STATE(6306), 1, - aux_sym_array_pattern_repeat1, - STATE(6406), 1, + ACTIONS(7087), 1, + anon_sym_DQUOTE, + ACTIONS(7089), 1, + anon_sym_SQUOTE, + STATE(6255), 1, sym_comment, - [197686] = 4, + STATE(7052), 1, + sym_string, + [197673] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6407), 1, + STATE(6256), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197701] = 6, + [197688] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8203), 1, + ACTIONS(8043), 1, anon_sym_LBRACE, - ACTIONS(8205), 1, + ACTIONS(8045), 1, anon_sym_LBRACE_PIPE, - STATE(1014), 1, + STATE(1246), 1, sym_object_type, - STATE(6408), 1, + STATE(6257), 1, sym_comment, - [197720] = 5, + [197707] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7968), 1, - anon_sym_DOT, - STATE(6409), 1, + STATE(6258), 1, sym_comment, - ACTIONS(10236), 2, + ACTIONS(9933), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [197737] = 6, + [197722] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10260), 1, - anon_sym_COMMA, ACTIONS(10262), 1, + anon_sym_COMMA, + ACTIONS(10264), 1, anon_sym_RBRACE, - STATE(6101), 1, - aux_sym_named_imports_repeat1, - STATE(6410), 1, + STATE(6259), 1, sym_comment, - [197756] = 6, - ACTIONS(3), 1, + STATE(6304), 1, + aux_sym_enum_body_repeat1, + [197741] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(5797), 1, + anon_sym_COMMA, + ACTIONS(10266), 1, + anon_sym_RPAREN, + STATE(5626), 1, + aux_sym_array_repeat1, + STATE(6260), 1, + sym_comment, + [197760] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7170), 1, - anon_sym_type, - ACTIONS(9544), 1, - sym_identifier, - STATE(6411), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8025), 1, + anon_sym_COMMA, + ACTIONS(10268), 1, + anon_sym_RBRACE, + STATE(5895), 1, + aux_sym_object_repeat1, + STATE(6261), 1, sym_comment, - STATE(6972), 1, - sym__import_identifier, - [197775] = 4, + [197779] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6412), 1, + ACTIONS(10270), 1, + anon_sym_COMMA, + ACTIONS(10272), 1, + anon_sym_GT, + STATE(6079), 1, + aux_sym_type_arguments_repeat1, + STATE(6262), 1, sym_comment, - ACTIONS(9561), 3, - sym__automatic_semicolon, + [197798] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10274), 1, anon_sym_COMMA, - anon_sym_SEMI, - [197790] = 5, + ACTIONS(10276), 1, + anon_sym_RBRACE, + STATE(5863), 1, + aux_sym_enum_body_repeat1, + STATE(6263), 1, + sym_comment, + [197817] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7942), 1, - anon_sym_DOT, - STATE(6413), 1, + ACTIONS(10278), 1, + anon_sym_COMMA, + ACTIONS(10280), 1, + anon_sym_GT, + STATE(6079), 1, + aux_sym_type_arguments_repeat1, + STATE(6264), 1, sym_comment, - ACTIONS(10264), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [197807] = 5, + [197836] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7968), 1, - anon_sym_DOT, - STATE(6414), 1, + STATE(6265), 1, sym_comment, - ACTIONS(10264), 2, + ACTIONS(9864), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [197824] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [197851] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7170), 1, - anon_sym_type, - ACTIONS(9544), 1, - sym_identifier, - STATE(6415), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10282), 1, + anon_sym_COMMA, + ACTIONS(10284), 1, + anon_sym_GT, + STATE(6079), 1, + aux_sym_type_arguments_repeat1, + STATE(6266), 1, sym_comment, - STATE(6970), 1, - sym__import_identifier, - [197843] = 5, + [197870] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10266), 1, - anon_sym_as, - STATE(6416), 1, - sym_comment, - ACTIONS(10177), 2, + ACTIONS(10286), 1, anon_sym_COMMA, + ACTIONS(10288), 1, anon_sym_RBRACE, - [197860] = 4, + STATE(5863), 1, + aux_sym_enum_body_repeat1, + STATE(6267), 1, + sym_comment, + [197889] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6417), 1, + STATE(6268), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197875] = 5, + [197904] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7968), 1, - anon_sym_DOT, - STATE(6418), 1, + STATE(6269), 1, sym_comment, - ACTIONS(10268), 2, + ACTIONS(9947), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [197892] = 5, + [197919] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7942), 1, - anon_sym_DOT, - STATE(6419), 1, + STATE(6270), 1, sym_comment, - ACTIONS(10268), 2, + ACTIONS(9939), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [197909] = 6, + [197934] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, - anon_sym_COMMA, - ACTIONS(5846), 1, - anon_sym_RPAREN, - STATE(5607), 1, - aux_sym_array_repeat1, - STATE(6420), 1, + STATE(6271), 1, sym_comment, - [197928] = 4, + ACTIONS(9933), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197949] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6421), 1, + STATE(6272), 1, sym_comment, - ACTIONS(9561), 3, + ACTIONS(9939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197943] = 4, + [197964] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6422), 1, + ACTIONS(10290), 1, + anon_sym_COMMA, + ACTIONS(10292), 1, + anon_sym_GT, + STATE(6079), 1, + aux_sym_type_arguments_repeat1, + STATE(6273), 1, sym_comment, - ACTIONS(8174), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [197958] = 6, + [197983] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, + ACTIONS(10294), 1, anon_sym_COMMA, - ACTIONS(5846), 1, - anon_sym_RPAREN, - STATE(6398), 1, - aux_sym_array_repeat1, - STATE(6423), 1, + ACTIONS(10296), 1, + anon_sym_GT, + STATE(6079), 1, + aux_sym_type_arguments_repeat1, + STATE(6274), 1, sym_comment, - [197977] = 4, + [198002] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6424), 1, + STATE(6275), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197992] = 6, + [198017] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10270), 1, - anon_sym_COMMA, - ACTIONS(10272), 1, - anon_sym_RPAREN, - STATE(6315), 1, - aux_sym_formal_parameters_repeat1, - STATE(6425), 1, + ACTIONS(8828), 1, + anon_sym_DOT, + ACTIONS(9611), 1, + anon_sym_COLON, + ACTIONS(10298), 1, + anon_sym_GT, + STATE(6276), 1, sym_comment, - [198011] = 4, + [198036] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6426), 1, - sym_comment, - ACTIONS(9999), 3, - sym__automatic_semicolon, + ACTIONS(10300), 1, anon_sym_COMMA, - anon_sym_SEMI, - [198026] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8203), 1, - anon_sym_LBRACE, - ACTIONS(8205), 1, - anon_sym_LBRACE_PIPE, - STATE(1043), 1, - sym_object_type, - STATE(6427), 1, + ACTIONS(10302), 1, + anon_sym_GT, + STATE(6079), 1, + aux_sym_type_arguments_repeat1, + STATE(6277), 1, sym_comment, - [198045] = 6, + [198055] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10274), 1, + ACTIONS(5797), 1, anon_sym_COMMA, - ACTIONS(10276), 1, - anon_sym_RBRACK, - STATE(6428), 1, + ACTIONS(10304), 1, + anon_sym_RPAREN, + STATE(5626), 1, + aux_sym_array_repeat1, + STATE(6278), 1, sym_comment, - STATE(6478), 1, - aux_sym_tuple_type_repeat1, - [198064] = 5, + [198074] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9110), 1, - anon_sym_EQ, - STATE(6429), 1, + STATE(6279), 1, sym_comment, - ACTIONS(10278), 2, + ACTIONS(9939), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [198081] = 4, + anon_sym_SEMI, + [198089] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6430), 1, - sym_comment, - ACTIONS(9889), 3, - sym__automatic_semicolon, + ACTIONS(10306), 1, anon_sym_COMMA, - anon_sym_SEMI, - [198096] = 4, + ACTIONS(10308), 1, + anon_sym_RBRACE, + STATE(6263), 1, + aux_sym_enum_body_repeat1, + STATE(6280), 1, + sym_comment, + [198108] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6431), 1, + STATE(6281), 1, sym_comment, - ACTIONS(9999), 3, - sym__automatic_semicolon, + ACTIONS(10310), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [198111] = 6, + anon_sym_implements, + [198123] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7578), 1, - anon_sym_AMP, - ACTIONS(7580), 1, - anon_sym_PIPE, - ACTIONS(7582), 1, - anon_sym_extends, - STATE(6432), 1, + ACTIONS(8059), 1, + anon_sym_LBRACE, + ACTIONS(8061), 1, + anon_sym_LBRACE_PIPE, + STATE(1050), 1, + sym_object_type, + STATE(6282), 1, sym_comment, - [198130] = 4, + [198142] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6433), 1, + STATE(6283), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(10006), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198145] = 4, + [198157] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6434), 1, + STATE(6284), 1, sym_comment, - ACTIONS(10120), 3, + ACTIONS(9939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198160] = 4, + [198172] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6435), 1, + ACTIONS(7969), 1, + anon_sym_DOT, + STATE(6285), 1, sym_comment, - ACTIONS(10124), 3, + ACTIONS(10312), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [198175] = 4, + [198189] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6436), 1, + ACTIONS(7967), 1, + anon_sym_DOT, + STATE(6286), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(10312), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [198190] = 4, + [198206] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10314), 1, + sym_identifier, + ACTIONS(10316), 1, + anon_sym_LBRACK, + ACTIONS(10318), 1, + sym_private_property_identifier, + STATE(6287), 1, + sym_comment, + [198225] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6437), 1, + STATE(6288), 1, sym_comment, - ACTIONS(8977), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198205] = 4, + [198240] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10320), 1, + sym_identifier, + ACTIONS(10322), 1, + anon_sym_LBRACK, + ACTIONS(10324), 1, + sym_private_property_identifier, + STATE(6289), 1, + sym_comment, + [198259] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6438), 1, + STATE(6290), 1, sym_comment, - ACTIONS(10124), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198220] = 6, + [198274] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8794), 1, - anon_sym_COMMA, - ACTIONS(10280), 1, - anon_sym_RBRACE, - STATE(6243), 1, - aux_sym_object_pattern_repeat1, - STATE(6439), 1, + ACTIONS(10326), 1, + sym_identifier, + ACTIONS(10328), 1, + anon_sym_LBRACK, + ACTIONS(10330), 1, + sym_private_property_identifier, + STATE(6291), 1, sym_comment, - [198239] = 6, + [198293] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8024), 1, + STATE(6292), 1, + sym_comment, + ACTIONS(8210), 3, anon_sym_LBRACE, - ACTIONS(8030), 1, - anon_sym_LBRACE_PIPE, - STATE(1243), 1, - sym_object_type, - STATE(6440), 1, + anon_sym_COLON, + anon_sym_EQ_GT, + [198308] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10332), 1, + sym_identifier, + ACTIONS(10334), 1, + anon_sym_LBRACK, + ACTIONS(10336), 1, + sym_private_property_identifier, + STATE(6293), 1, sym_comment, - [198258] = 6, + [198327] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8008), 1, - anon_sym_COMMA, - ACTIONS(10282), 1, - anon_sym_RBRACE, - STATE(6240), 1, - aux_sym_object_repeat1, - STATE(6441), 1, + STATE(6294), 1, sym_comment, - [198277] = 6, + ACTIONS(10338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198342] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10284), 1, + ACTIONS(10340), 1, anon_sym_COMMA, - ACTIONS(10286), 1, - anon_sym_RBRACE, - STATE(6442), 1, + ACTIONS(10342), 1, + anon_sym_RBRACK, + STATE(5819), 1, + aux_sym_tuple_type_repeat1, + STATE(6295), 1, sym_comment, - STATE(6473), 1, - aux_sym_enum_body_repeat1, - [198296] = 6, + [198361] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5830), 1, + STATE(6296), 1, + sym_comment, + ACTIONS(9947), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(10288), 1, - anon_sym_RPAREN, - STATE(5607), 1, - aux_sym_array_repeat1, - STATE(6443), 1, + anon_sym_SEMI, + [198376] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(6297), 1, sym_comment, - [198315] = 4, + ACTIONS(9933), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198391] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6444), 1, + STATE(6298), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198330] = 6, + [198406] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10290), 1, + ACTIONS(5797), 1, anon_sym_COMMA, - ACTIONS(10292), 1, - anon_sym_GT, - STATE(5946), 1, - aux_sym_type_arguments_repeat1, - STATE(6445), 1, + ACTIONS(5945), 1, + anon_sym_RPAREN, + STATE(5626), 1, + aux_sym_array_repeat1, + STATE(6299), 1, sym_comment, - [198349] = 6, + [198425] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8008), 1, + ACTIONS(5797), 1, anon_sym_COMMA, - ACTIONS(10282), 1, - anon_sym_RBRACE, - STATE(6326), 1, - aux_sym_object_repeat1, - STATE(6446), 1, + ACTIONS(5945), 1, + anon_sym_RPAREN, + STATE(6278), 1, + aux_sym_array_repeat1, + STATE(6300), 1, sym_comment, - [198368] = 6, + [198444] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10294), 1, - anon_sym_COMMA, - ACTIONS(10296), 1, - anon_sym_GT, - STATE(5946), 1, - aux_sym_type_arguments_repeat1, - STATE(6447), 1, + ACTIONS(8059), 1, + anon_sym_LBRACE, + ACTIONS(8061), 1, + anon_sym_LBRACE_PIPE, + STATE(993), 1, + sym_object_type, + STATE(6301), 1, sym_comment, - [198387] = 6, + [198463] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8794), 1, + ACTIONS(10344), 1, anon_sym_COMMA, - ACTIONS(10280), 1, + ACTIONS(10346), 1, anon_sym_RBRACE, - STATE(6329), 1, - aux_sym_object_pattern_repeat1, - STATE(6448), 1, + STATE(5863), 1, + aux_sym_enum_body_repeat1, + STATE(6302), 1, sym_comment, - [198406] = 6, + [198482] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10298), 1, - anon_sym_COMMA, - ACTIONS(10300), 1, - anon_sym_GT, - STATE(5946), 1, - aux_sym_type_arguments_repeat1, - STATE(6449), 1, + STATE(6303), 1, sym_comment, - [198425] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9947), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198497] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10302), 1, - sym__glimmer_template_content, - ACTIONS(10305), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(6450), 2, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10348), 1, + anon_sym_COMMA, + ACTIONS(10350), 1, + anon_sym_RBRACE, + STATE(5863), 1, + aux_sym_enum_body_repeat1, + STATE(6304), 1, sym_comment, - aux_sym_glimmer_template_repeat1, - [198442] = 4, + [198516] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6451), 1, + ACTIONS(7967), 1, + anon_sym_DOT, + STATE(6305), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(10352), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [198457] = 4, + [198533] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6452), 1, + STATE(6306), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(9933), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198472] = 4, + [198548] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6453), 1, + STATE(6307), 1, sym_comment, - ACTIONS(9999), 3, + ACTIONS(10354), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198487] = 4, + [198563] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6454), 1, + ACTIONS(7969), 1, + anon_sym_DOT, + STATE(6308), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(10352), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [198502] = 6, + [198580] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10307), 1, + ACTIONS(10356), 1, anon_sym_COMMA, - ACTIONS(10309), 1, - anon_sym_RBRACE, - STATE(6114), 1, - aux_sym_export_clause_repeat1, - STATE(6455), 1, + ACTIONS(10358), 1, + anon_sym_RBRACK, + STATE(6218), 1, + aux_sym_tuple_type_repeat1, + STATE(6309), 1, sym_comment, - [198521] = 6, + [198599] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9053), 1, - anon_sym_DOT, - ACTIONS(9661), 1, + ACTIONS(4218), 1, anon_sym_COLON, - ACTIONS(10311), 1, - anon_sym_GT, - STATE(6456), 1, + ACTIONS(10360), 1, + anon_sym_RPAREN, + STATE(6310), 1, sym_comment, - [198540] = 4, + STATE(7087), 1, + sym_type_annotation, + [198618] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6457), 1, + ACTIONS(6023), 1, + anon_sym_extends, + ACTIONS(10362), 1, + anon_sym_AMP, + ACTIONS(10364), 1, + anon_sym_PIPE, + STATE(6311), 1, sym_comment, - ACTIONS(10313), 3, - sym__automatic_semicolon, - anon_sym_from, - anon_sym_SEMI, - [198555] = 5, + [198637] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10315), 1, - anon_sym_as, - STATE(6458), 1, + STATE(6312), 1, sym_comment, - ACTIONS(10317), 2, + ACTIONS(10366), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [198572] = 4, + anon_sym_SEMI, + [198652] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6459), 1, + STATE(6313), 1, sym_comment, - ACTIONS(10319), 3, - anon_sym_default, - anon_sym_RBRACE, - anon_sym_case, - [198587] = 4, + ACTIONS(10204), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198667] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6460), 1, + STATE(6314), 1, sym_comment, - ACTIONS(10321), 3, + ACTIONS(10368), 3, sym__automatic_semicolon, - anon_sym_with, + anon_sym_COMMA, anon_sym_SEMI, - [198602] = 4, + [198682] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6461), 1, + ACTIONS(10370), 1, + anon_sym_COMMA, + ACTIONS(10372), 1, + anon_sym_GT, + STATE(6079), 1, + aux_sym_type_arguments_repeat1, + STATE(6315), 1, sym_comment, - ACTIONS(10323), 3, + [198701] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(6316), 1, + sym_comment, + ACTIONS(9945), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198617] = 4, + [198716] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6462), 1, + STATE(6317), 1, sym_comment, - ACTIONS(9643), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198632] = 4, + [198731] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6463), 1, + STATE(6318), 1, sym_comment, - ACTIONS(8977), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198647] = 4, + [198746] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6464), 1, + STATE(6319), 1, sym_comment, - ACTIONS(9847), 3, + ACTIONS(9864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198662] = 4, + [198761] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6465), 1, + STATE(6320), 1, sym_comment, - ACTIONS(9855), 3, + ACTIONS(9947), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198677] = 4, + [198776] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6466), 1, + STATE(6321), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(10374), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198692] = 6, + [198791] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(209), 1, + anon_sym_LBRACE, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10325), 1, - anon_sym_LPAREN, - ACTIONS(10327), 1, - anon_sym_await, - STATE(98), 1, - sym__for_header, - STATE(6467), 1, + ACTIONS(8001), 1, + anon_sym_LBRACE_PIPE, + STATE(6322), 1, sym_comment, - [198711] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6734), 1, + sym_object_type, + [198810] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10329), 1, - sym_identifier, - ACTIONS(10331), 1, - anon_sym_SEMI, - ACTIONS(10333), 1, - sym__automatic_semicolon, - STATE(6468), 1, - sym_comment, - [198730] = 6, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10335), 1, - sym_identifier, - ACTIONS(10337), 1, - anon_sym_SEMI, - ACTIONS(10339), 1, - sym__automatic_semicolon, - STATE(6469), 1, + ACTIONS(10376), 1, + anon_sym_COMMA, + ACTIONS(10378), 1, + anon_sym_RBRACE, + STATE(6196), 1, + aux_sym_enum_body_repeat1, + STATE(6323), 1, sym_comment, - [198749] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [198829] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10341), 1, - sym_identifier, - ACTIONS(10343), 1, - anon_sym_LBRACK, - ACTIONS(10345), 1, - sym_private_property_identifier, - STATE(6470), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5797), 1, + anon_sym_COMMA, + ACTIONS(10380), 1, + anon_sym_RPAREN, + STATE(5626), 1, + aux_sym_array_repeat1, + STATE(6324), 1, sym_comment, - [198768] = 4, + [198848] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6471), 1, + STATE(6325), 1, sym_comment, - ACTIONS(10347), 3, + ACTIONS(10374), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198783] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [198863] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10349), 1, - sym_identifier, - ACTIONS(10351), 1, - anon_sym_LBRACK, - ACTIONS(10353), 1, - sym_private_property_identifier, - STATE(6472), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10382), 1, + anon_sym_COMMA, + ACTIONS(10384), 1, + anon_sym_GT, + STATE(6079), 1, + aux_sym_type_arguments_repeat1, + STATE(6326), 1, sym_comment, - [198802] = 6, + [198882] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10355), 1, - anon_sym_COMMA, - ACTIONS(10357), 1, - anon_sym_RBRACE, - STATE(5793), 1, - aux_sym_enum_body_repeat1, - STATE(6473), 1, + STATE(6327), 1, sym_comment, - [198821] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9941), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198897] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10359), 1, - sym_identifier, - ACTIONS(10361), 1, - anon_sym_LBRACK, - ACTIONS(10363), 1, - sym_private_property_identifier, - STATE(6474), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(6328), 1, sym_comment, - [198840] = 4, + ACTIONS(9947), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198912] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6475), 1, + STATE(6329), 1, sym_comment, - ACTIONS(9889), 3, + ACTIONS(9941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198855] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [198927] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10365), 1, - sym_identifier, - ACTIONS(10367), 1, - anon_sym_LBRACK, - ACTIONS(10369), 1, - sym_private_property_identifier, - STATE(6476), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(6330), 1, sym_comment, - [198874] = 5, + ACTIONS(10368), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198942] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10371), 1, - anon_sym_EQ, - STATE(6477), 1, + STATE(6331), 1, sym_comment, - ACTIONS(4331), 2, - anon_sym_in, - anon_sym_of, - [198891] = 6, + ACTIONS(10386), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198957] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10373), 1, + ACTIONS(10388), 1, anon_sym_COMMA, - ACTIONS(10375), 1, - anon_sym_RBRACK, - STATE(5806), 1, - aux_sym_tuple_type_repeat1, - STATE(6478), 1, + ACTIONS(10390), 1, + anon_sym_GT, + STATE(6079), 1, + aux_sym_type_arguments_repeat1, + STATE(6332), 1, sym_comment, - [198910] = 4, + [198976] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6479), 1, + STATE(6333), 1, sym_comment, - ACTIONS(10377), 3, + ACTIONS(10374), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198925] = 6, + [198991] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10379), 1, - anon_sym_COMMA, - ACTIONS(10381), 1, - anon_sym_RBRACE, - STATE(5793), 1, - aux_sym_enum_body_repeat1, - STATE(6480), 1, + ACTIONS(10392), 1, + sym_identifier, + ACTIONS(10394), 1, + sym_private_property_identifier, + STATE(6334), 1, sym_comment, - [198944] = 5, + [199007] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10383), 1, - anon_sym_LPAREN, - STATE(121), 1, - sym_parenthesized_expression, - STATE(6481), 1, + STATE(6335), 1, sym_comment, - [198960] = 5, + ACTIONS(3458), 2, + anon_sym_else, + anon_sym_while, + [199021] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7562), 1, + ACTIONS(7855), 1, anon_sym_LBRACE, - STATE(1288), 1, + STATE(419), 1, sym_class_body, - STATE(6482), 1, - sym_comment, - [198976] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10385), 1, - sym_identifier, - ACTIONS(10387), 1, - sym_private_property_identifier, - STATE(6483), 1, + STATE(6336), 1, sym_comment, - [198992] = 4, + [199037] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6484), 1, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(90), 1, + sym_parenthesized_expression, + STATE(6337), 1, sym_comment, - ACTIONS(5750), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199006] = 5, + [199053] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10383), 1, + ACTIONS(10398), 1, anon_sym_LPAREN, - STATE(73), 1, + STATE(1044), 1, sym_parenthesized_expression, - STATE(6485), 1, + STATE(6338), 1, sym_comment, - [199022] = 4, + [199069] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6486), 1, + STATE(6339), 1, sym_comment, - ACTIONS(5735), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199036] = 5, + ACTIONS(2177), 2, + anon_sym_else, + anon_sym_while, + [199083] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4839), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3091), 1, + STATE(3383), 1, sym_statement_block, - STATE(6487), 1, + STATE(6340), 1, sym_comment, - [199052] = 5, + [199099] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7630), 1, - anon_sym_LBRACE, - STATE(1271), 1, - sym_class_body, - STATE(6488), 1, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(4387), 1, + sym_formal_parameters, + STATE(6341), 1, sym_comment, - [199068] = 5, + [199115] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(6489), 1, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(80), 1, + sym_parenthesized_expression, + STATE(6342), 1, sym_comment, - STATE(6756), 1, - sym_statement_block, - [199084] = 4, + [199131] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6490), 1, + ACTIONS(10400), 1, + anon_sym_LPAREN, + STATE(6343), 1, sym_comment, - ACTIONS(6749), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [199098] = 5, + STATE(6578), 1, + sym_parenthesized_expression, + [199147] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(10178), 1, anon_sym_LBRACE, - STATE(3517), 1, + STATE(937), 1, sym_statement_block, - STATE(6491), 1, + STATE(6344), 1, sym_comment, - [199114] = 5, + [199163] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7544), 1, + ACTIONS(7639), 1, anon_sym_LBRACE, - STATE(3083), 1, + STATE(1321), 1, sym_class_body, - STATE(6492), 1, + STATE(6345), 1, sym_comment, - [199130] = 5, + [199179] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7630), 1, - anon_sym_LBRACE, - STATE(1285), 1, - sym_class_body, - STATE(6493), 1, + ACTIONS(10402), 1, + sym_identifier, + ACTIONS(10404), 1, + sym_private_property_identifier, + STATE(6346), 1, sym_comment, - [199146] = 5, + [199195] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8885), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(1038), 1, + STATE(3413), 1, sym_statement_block, - STATE(6494), 1, + STATE(6347), 1, sym_comment, - [199162] = 5, + [199211] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7694), 1, - anon_sym_LBRACE, - STATE(1120), 1, - sym_class_body, - STATE(6495), 1, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(97), 1, + sym_parenthesized_expression, + STATE(6348), 1, + sym_comment, + [199227] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10406), 1, + sym_identifier, + ACTIONS(10408), 1, + sym_private_property_identifier, + STATE(6349), 1, sym_comment, - [199178] = 5, + [199243] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10224), 1, + ACTIONS(10410), 1, anon_sym_LBRACE, - STATE(912), 1, + STATE(894), 1, sym_statement_block, - STATE(6496), 1, + STATE(6350), 1, sym_comment, - [199194] = 4, + [199259] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(6497), 1, + ACTIONS(10412), 1, + sym_identifier, + ACTIONS(10414), 1, + anon_sym_STAR, + STATE(6351), 1, sym_comment, - ACTIONS(6721), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [199208] = 5, + [199275] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10389), 1, + ACTIONS(10416), 1, anon_sym_LBRACE, - STATE(6498), 1, + STATE(1302), 1, + sym_enum_body, + STATE(6352), 1, sym_comment, - STATE(7010), 1, - sym_switch_body, - [199224] = 5, + [199291] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(6499), 1, + STATE(6353), 1, sym_comment, - STATE(6748), 1, - sym_statement_block, - [199240] = 5, + ACTIONS(3572), 2, + anon_sym_else, + anon_sym_while, + [199305] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10383), 1, - anon_sym_LPAREN, - STATE(78), 1, - sym_parenthesized_expression, - STATE(6500), 1, + STATE(6354), 1, sym_comment, - [199256] = 5, + ACTIONS(5711), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [199319] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10391), 1, - anon_sym_LPAREN, - STATE(6501), 1, + STATE(6355), 1, sym_comment, - STATE(7079), 1, - sym_parenthesized_expression, - [199272] = 4, + ACTIONS(3586), 2, + anon_sym_else, + anon_sym_while, + [199333] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(6502), 1, + ACTIONS(10418), 1, + sym_identifier, + ACTIONS(10420), 1, + anon_sym_STAR, + STATE(6356), 1, sym_comment, - ACTIONS(6717), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [199286] = 5, + [199349] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(7625), 1, anon_sym_LBRACE, - STATE(3520), 1, - sym_statement_block, - STATE(6503), 1, + STATE(6357), 1, sym_comment, - [199302] = 5, + STATE(6584), 1, + sym_class_body, + [199365] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7672), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(1563), 1, - sym_class_body, - STATE(6504), 1, + STATE(3370), 1, + sym_statement_block, + STATE(6358), 1, sym_comment, - [199318] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [199381] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10393), 1, - sym_identifier, - ACTIONS(10395), 1, - anon_sym_STAR, - STATE(6505), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(6359), 1, sym_comment, - [199334] = 4, + ACTIONS(10422), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [199395] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6506), 1, + STATE(6360), 1, sym_comment, - ACTIONS(10397), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [199348] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(2351), 2, + anon_sym_else, + anon_sym_while, + [199409] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10399), 1, - sym_identifier, - ACTIONS(10401), 1, - anon_sym_STAR, - STATE(6507), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(6361), 1, sym_comment, - [199364] = 5, + ACTIONS(3442), 2, + anon_sym_else, + anon_sym_while, + [199423] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10403), 1, + ACTIONS(4849), 1, anon_sym_LBRACE, - STATE(1324), 1, + STATE(3171), 1, sym_statement_block, - STATE(6508), 1, + STATE(6362), 1, sym_comment, - [199380] = 4, + [199439] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6509), 1, + STATE(6363), 1, sym_comment, - ACTIONS(9510), 2, + ACTIONS(9117), 2, sym__automatic_semicolon, anon_sym_SEMI, - [199394] = 5, + [199453] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10405), 1, + ACTIONS(5250), 1, anon_sym_LBRACE, - STATE(1326), 1, - sym_enum_body, - STATE(6510), 1, + STATE(2480), 1, + sym_statement_block, + STATE(6364), 1, sym_comment, - [199410] = 5, + [199469] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10407), 1, - anon_sym_SEMI, - ACTIONS(10409), 1, - sym__automatic_semicolon, - STATE(6511), 1, + STATE(6365), 1, sym_comment, - [199426] = 5, - ACTIONS(3), 1, + ACTIONS(10424), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [199483] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(6366), 1, + sym_comment, + ACTIONS(3438), 2, + anon_sym_else, + anon_sym_while, + [199497] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10411), 1, - sym_identifier, - ACTIONS(10413), 1, - sym_private_property_identifier, - STATE(6512), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10178), 1, + anon_sym_LBRACE, + STATE(929), 1, + sym_statement_block, + STATE(6367), 1, sym_comment, - [199442] = 5, + [199513] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10341), 1, + ACTIONS(10426), 1, sym_identifier, - ACTIONS(10345), 1, - sym_private_property_identifier, - STATE(6513), 1, + ACTIONS(10428), 1, + anon_sym_STAR, + STATE(6368), 1, sym_comment, - [199458] = 5, + [199529] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7630), 1, + ACTIONS(7645), 1, anon_sym_LBRACE, - STATE(1309), 1, + STATE(1113), 1, sym_class_body, - STATE(6514), 1, + STATE(6369), 1, + sym_comment, + [199545] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(6370), 1, sym_comment, - [199474] = 5, + ACTIONS(10430), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [199559] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10224), 1, + ACTIONS(9053), 1, anon_sym_LBRACE, - STATE(941), 1, + STATE(1056), 1, sym_statement_block, - STATE(6515), 1, + STATE(6371), 1, sym_comment, - [199490] = 5, + [199575] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, + ACTIONS(10432), 1, anon_sym_LBRACE, - STATE(4818), 1, + STATE(1030), 1, sym_statement_block, - STATE(6516), 1, - sym_comment, - [199506] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10415), 1, - sym_identifier, - ACTIONS(10417), 1, - anon_sym_STAR, - STATE(6517), 1, + STATE(6372), 1, sym_comment, - [199522] = 5, + [199591] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10419), 1, + ACTIONS(10434), 1, anon_sym_SEMI, - ACTIONS(10421), 1, + ACTIONS(10436), 1, sym__automatic_semicolon, - STATE(6518), 1, + STATE(6373), 1, sym_comment, - [199538] = 5, + [199607] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4839), 1, + ACTIONS(10438), 1, anon_sym_LBRACE, - STATE(3319), 1, - sym_statement_block, - STATE(6519), 1, - sym_comment, - [199554] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(6520), 1, + STATE(1026), 1, + sym_enum_body, + STATE(6374), 1, sym_comment, - ACTIONS(9582), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [199568] = 5, + [199623] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10423), 1, + ACTIONS(10440), 1, anon_sym_SEMI, - ACTIONS(10425), 1, + ACTIONS(10442), 1, sym__automatic_semicolon, - STATE(6521), 1, + STATE(6375), 1, sym_comment, - [199584] = 5, + [199639] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10383), 1, - anon_sym_LPAREN, - STATE(100), 1, - sym_parenthesized_expression, - STATE(6522), 1, + STATE(6376), 1, sym_comment, - [199600] = 5, + ACTIONS(3474), 2, + anon_sym_else, + anon_sym_while, + [199653] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10427), 1, + ACTIONS(10444), 1, anon_sym_SEMI, - ACTIONS(10429), 1, + ACTIONS(10446), 1, sym__automatic_semicolon, - STATE(6523), 1, + STATE(6377), 1, sym_comment, - [199616] = 4, + [199669] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6524), 1, + ACTIONS(7639), 1, + anon_sym_LBRACE, + STATE(1300), 1, + sym_class_body, + STATE(6378), 1, sym_comment, - ACTIONS(10431), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [199630] = 5, - ACTIONS(3), 1, + [199685] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + STATE(6379), 1, + sym_comment, + ACTIONS(3538), 2, + anon_sym_else, + anon_sym_while, + [199699] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10433), 1, - sym_identifier, - ACTIONS(10435), 1, - anon_sym_STAR, - STATE(6525), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7589), 1, + anon_sym_LBRACE, + STATE(3149), 1, + sym_class_body, + STATE(6380), 1, sym_comment, - [199646] = 5, + [199715] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10437), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(896), 1, + STATE(3409), 1, sym_statement_block, - STATE(6526), 1, + STATE(6381), 1, sym_comment, - [199662] = 5, + [199731] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10383), 1, - anon_sym_LPAREN, - STATE(117), 1, - sym_parenthesized_expression, - STATE(6527), 1, + ACTIONS(10448), 1, + anon_sym_SEMI, + ACTIONS(10450), 1, + sym__automatic_semicolon, + STATE(6382), 1, sym_comment, - [199678] = 4, + [199747] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6528), 1, + ACTIONS(10452), 1, + anon_sym_SEMI, + ACTIONS(10454), 1, + sym__automatic_semicolon, + STATE(6383), 1, sym_comment, - ACTIONS(8436), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [199692] = 4, + [199763] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6529), 1, - sym_comment, - ACTIONS(5505), 2, - sym__automatic_semicolon, + ACTIONS(10456), 1, anon_sym_SEMI, - [199706] = 5, + ACTIONS(10458), 1, + sym__automatic_semicolon, + STATE(6384), 1, + sym_comment, + [199779] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7194), 1, - anon_sym_LPAREN, - STATE(4400), 1, - sym_formal_parameters, - STATE(6530), 1, + STATE(6385), 1, sym_comment, - [199722] = 5, + ACTIONS(2351), 2, + anon_sym_else, + anon_sym_while, + [199793] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10383), 1, - anon_sym_LPAREN, - STATE(83), 1, - sym_parenthesized_expression, - STATE(6531), 1, + ACTIONS(9611), 1, + anon_sym_COLON, + ACTIONS(9613), 1, + anon_sym_GT, + STATE(6386), 1, sym_comment, - [199738] = 5, + [199809] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10439), 1, + ACTIONS(7589), 1, anon_sym_LBRACE, - STATE(1716), 1, - sym_enum_body, - STATE(6532), 1, + STATE(3001), 1, + sym_class_body, + STATE(6387), 1, sym_comment, - [199754] = 4, + [199825] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(6533), 1, + ACTIONS(10460), 1, + sym_identifier, + ACTIONS(10462), 1, + sym_private_property_identifier, + STATE(6388), 1, sym_comment, - ACTIONS(8428), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [199768] = 4, + [199841] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6534), 1, - sym_comment, - ACTIONS(8426), 2, + ACTIONS(10438), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [199782] = 5, + STATE(1008), 1, + sym_enum_body, + STATE(6389), 1, + sym_comment, + [199857] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10464), 1, + sym_identifier, + ACTIONS(10466), 1, + anon_sym_STAR, + STATE(6390), 1, + sym_comment, + [199873] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7544), 1, + ACTIONS(7553), 1, anon_sym_LBRACE, - STATE(3132), 1, + STATE(3288), 1, sym_class_body, - STATE(6535), 1, + STATE(6391), 1, sym_comment, - [199798] = 5, + [199889] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, + ACTIONS(7611), 1, anon_sym_LBRACE, - STATE(6536), 1, + STATE(330), 1, + sym_class_body, + STATE(6392), 1, sym_comment, - STATE(6805), 1, - sym_statement_block, - [199814] = 4, + [199905] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6537), 1, + STATE(6393), 1, sym_comment, - ACTIONS(5639), 2, + ACTIONS(10468), 2, sym__automatic_semicolon, anon_sym_SEMI, - [199828] = 4, + [199919] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6538), 1, + STATE(6394), 1, sym_comment, - ACTIONS(10441), 2, + ACTIONS(10470), 2, sym__automatic_semicolon, anon_sym_SEMI, - [199842] = 5, + [199933] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10443), 1, - anon_sym_SEMI, - ACTIONS(10445), 1, - sym__automatic_semicolon, - STATE(6539), 1, + STATE(6395), 1, sym_comment, - [199858] = 5, + ACTIONS(3468), 2, + anon_sym_else, + anon_sym_while, + [199947] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(5250), 1, anon_sym_LBRACE, - STATE(3522), 1, + STATE(2452), 1, sym_statement_block, - STATE(6540), 1, + STATE(6396), 1, sym_comment, - [199874] = 4, + [199963] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6541), 1, + ACTIONS(8826), 1, + anon_sym_DOT, + ACTIONS(10472), 1, + anon_sym_GT, + STATE(6397), 1, sym_comment, - ACTIONS(9532), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199888] = 5, + [199979] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10405), 1, + ACTIONS(7553), 1, anon_sym_LBRACE, - STATE(1368), 1, - sym_enum_body, - STATE(6542), 1, + STATE(2450), 1, + sym_class_body, + STATE(6398), 1, sym_comment, - [199904] = 5, + [199995] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7694), 1, + ACTIONS(7553), 1, anon_sym_LBRACE, - STATE(1149), 1, + STATE(3270), 1, sym_class_body, - STATE(6543), 1, + STATE(6399), 1, sym_comment, - [199920] = 5, + [200011] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8885), 1, - anon_sym_LBRACE, - STATE(1045), 1, - sym_statement_block, - STATE(6544), 1, + STATE(6400), 1, sym_comment, - [199936] = 5, + ACTIONS(10474), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [200025] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9051), 1, - anon_sym_DOT, - ACTIONS(10447), 1, - anon_sym_GT, - STATE(6545), 1, + ACTIONS(7639), 1, + anon_sym_LBRACE, + STATE(1287), 1, + sym_class_body, + STATE(6401), 1, sym_comment, - [199952] = 5, + [200041] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7694), 1, + ACTIONS(4849), 1, anon_sym_LBRACE, - STATE(1152), 1, - sym_class_body, - STATE(6546), 1, + STATE(3000), 1, + sym_statement_block, + STATE(6402), 1, sym_comment, - [199968] = 5, + [200057] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9661), 1, - anon_sym_COLON, - ACTIONS(10311), 1, - anon_sym_GT, - STATE(6547), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3371), 1, + sym_statement_block, + STATE(6403), 1, sym_comment, - [199984] = 4, + [200073] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6548), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3359), 1, + sym_statement_block, + STATE(6404), 1, sym_comment, - ACTIONS(10449), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199998] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [200089] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10451), 1, - sym_identifier, - STATE(6389), 1, - sym_nested_identifier, - STATE(6549), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3366), 1, + sym_statement_block, + STATE(6405), 1, sym_comment, - [200014] = 5, + [200105] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7562), 1, - anon_sym_LBRACE, - STATE(1202), 1, - sym_class_body, - STATE(6550), 1, + ACTIONS(10476), 1, + anon_sym_SEMI, + ACTIONS(10478), 1, + sym__automatic_semicolon, + STATE(6406), 1, sym_comment, - [200030] = 5, + [200121] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10453), 1, + ACTIONS(10480), 1, sym_identifier, - ACTIONS(10455), 1, - anon_sym_STAR, - STATE(6551), 1, + ACTIONS(10482), 1, + sym_private_property_identifier, + STATE(6407), 1, + sym_comment, + [200137] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10484), 1, + sym_identifier, + ACTIONS(10486), 1, + sym_private_property_identifier, + STATE(6408), 1, sym_comment, - [200046] = 5, + [200153] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7544), 1, + ACTIONS(7617), 1, anon_sym_LBRACE, - STATE(3096), 1, + STATE(6237), 1, sym_class_body, - STATE(6552), 1, + STATE(6409), 1, sym_comment, - [200062] = 5, + [200169] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(6553), 1, + ACTIONS(10488), 1, + anon_sym_SEMI, + ACTIONS(10490), 1, + sym__automatic_semicolon, + STATE(6410), 1, sym_comment, - STATE(6995), 1, - sym_statement_block, - [200078] = 4, + [200185] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6554), 1, + STATE(6411), 1, sym_comment, - ACTIONS(10457), 2, + ACTIONS(10492), 2, sym__automatic_semicolon, anon_sym_SEMI, - [200092] = 5, + [200199] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10459), 1, + ACTIONS(7609), 1, anon_sym_LBRACE, - STATE(1081), 1, - sym_statement_block, - STATE(6555), 1, + STATE(955), 1, + sym_class_body, + STATE(6412), 1, sym_comment, - [200108] = 5, + [200215] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10461), 1, - anon_sym_LPAREN, - STATE(1182), 1, - sym_parenthesized_expression, - STATE(6556), 1, + STATE(6413), 1, sym_comment, - [200124] = 5, + ACTIONS(10494), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [200229] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10463), 1, - anon_sym_LBRACE, - STATE(1079), 1, - sym_enum_body, - STATE(6557), 1, + ACTIONS(10496), 1, + anon_sym_SEMI, + ACTIONS(10498), 1, + sym__automatic_semicolon, + STATE(6414), 1, sym_comment, - [200140] = 5, + [200245] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10465), 1, + ACTIONS(10500), 1, sym_identifier, - ACTIONS(10467), 1, + ACTIONS(10502), 1, sym_private_property_identifier, - STATE(6558), 1, + STATE(6415), 1, sym_comment, - [200156] = 5, + [200261] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(7553), 1, anon_sym_LBRACE, - STATE(3516), 1, - sym_statement_block, - STATE(6559), 1, + STATE(2427), 1, + sym_class_body, + STATE(6416), 1, + sym_comment, + [200277] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10314), 1, + sym_identifier, + ACTIONS(10318), 1, + sym_private_property_identifier, + STATE(6417), 1, sym_comment, - [200172] = 5, + [200293] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10469), 1, - anon_sym_SEMI, - ACTIONS(10471), 1, - sym__automatic_semicolon, - STATE(6560), 1, + STATE(6418), 1, sym_comment, - [200188] = 5, + ACTIONS(10504), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [200307] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7630), 1, + ACTIONS(7611), 1, anon_sym_LBRACE, - STATE(1239), 1, + STATE(328), 1, sym_class_body, - STATE(6561), 1, + STATE(6419), 1, sym_comment, - [200204] = 5, + [200323] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4839), 1, + ACTIONS(7853), 1, anon_sym_LBRACE, - STATE(3099), 1, - sym_statement_block, - STATE(6562), 1, + STATE(1034), 1, + sym_class_body, + STATE(6420), 1, + sym_comment, + [200339] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10506), 1, + sym_identifier, + ACTIONS(10508), 1, + anon_sym_STAR, + STATE(6421), 1, sym_comment, - [200220] = 5, + [200355] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5369), 1, - anon_sym_LPAREN, - STATE(3110), 1, - sym_arguments, - STATE(6563), 1, + ACTIONS(10510), 1, + anon_sym_SEMI, + ACTIONS(10512), 1, + sym__automatic_semicolon, + STATE(6422), 1, + sym_comment, + [200371] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7589), 1, + anon_sym_LBRACE, + STATE(3181), 1, + sym_class_body, + STATE(6423), 1, sym_comment, - [200236] = 5, + [200387] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10403), 1, + ACTIONS(8989), 1, anon_sym_LBRACE, - STATE(1405), 1, + STATE(340), 1, sym_statement_block, - STATE(6564), 1, + STATE(6424), 1, sym_comment, - [200252] = 5, + [200403] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7550), 1, + ACTIONS(7607), 1, anon_sym_LBRACE, - STATE(358), 1, + STATE(964), 1, sym_class_body, - STATE(6565), 1, + STATE(6425), 1, sym_comment, - [200268] = 5, + [200419] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10473), 1, - anon_sym_SEMI, - ACTIONS(10475), 1, - sym__automatic_semicolon, - STATE(6566), 1, + STATE(6426), 1, sym_comment, - [200284] = 5, + ACTIONS(3500), 2, + anon_sym_else, + anon_sym_while, + [200433] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10477), 1, - anon_sym_SEMI, - ACTIONS(10479), 1, - sym__automatic_semicolon, - STATE(6567), 1, + ACTIONS(10416), 1, + anon_sym_LBRACE, + STATE(1306), 1, + sym_enum_body, + STATE(6427), 1, sym_comment, - [200300] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [200449] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10481), 1, - sym_identifier, - ACTIONS(10483), 1, - anon_sym_STAR, - STATE(6568), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8826), 1, + anon_sym_DOT, + ACTIONS(10514), 1, + anon_sym_GT, + STATE(6428), 1, sym_comment, - [200316] = 4, + [200465] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6569), 1, - sym_comment, - ACTIONS(10485), 2, - sym__automatic_semicolon, + ACTIONS(10516), 1, anon_sym_SEMI, - [200330] = 5, + ACTIONS(10518), 1, + sym__automatic_semicolon, + STATE(6429), 1, + sym_comment, + [200481] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(7553), 1, anon_sym_LBRACE, - STATE(3523), 1, - sym_statement_block, - STATE(6570), 1, + STATE(2449), 1, + sym_class_body, + STATE(6430), 1, sym_comment, - [200346] = 4, + [200497] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6571), 1, + STATE(6431), 1, sym_comment, - ACTIONS(10278), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [200360] = 5, + ACTIONS(7499), 2, + anon_sym_in, + anon_sym_of, + [200511] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10463), 1, + ACTIONS(7645), 1, anon_sym_LBRACE, - STATE(1060), 1, - sym_enum_body, - STATE(6572), 1, + STATE(1125), 1, + sym_class_body, + STATE(6432), 1, sym_comment, - [200376] = 5, + [200527] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4839), 1, + ACTIONS(9053), 1, anon_sym_LBRACE, - STATE(3300), 1, + STATE(1020), 1, sym_statement_block, - STATE(6573), 1, + STATE(6433), 1, sym_comment, - [200392] = 4, + [200543] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6574), 1, + ACTIONS(7645), 1, + anon_sym_LBRACE, + STATE(1132), 1, + sym_class_body, + STATE(6434), 1, + sym_comment, + [200559] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(6435), 1, sym_comment, - ACTIONS(5637), 2, + ACTIONS(10520), 2, sym__automatic_semicolon, anon_sym_SEMI, - [200406] = 5, + [200573] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7554), 1, + ACTIONS(7617), 1, anon_sym_LBRACE, - STATE(338), 1, + STATE(6041), 1, sym_class_body, - STATE(6575), 1, + STATE(6436), 1, sym_comment, - [200422] = 4, + [200589] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6576), 1, + ACTIONS(9611), 1, + anon_sym_COLON, + ACTIONS(10298), 1, + anon_sym_GT, + STATE(6437), 1, sym_comment, - ACTIONS(5633), 2, + [200605] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(6438), 1, + sym_comment, + ACTIONS(10522), 2, sym__automatic_semicolon, anon_sym_SEMI, - [200436] = 5, + [200619] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, + ACTIONS(7611), 1, anon_sym_LBRACE, - STATE(6577), 1, + STATE(329), 1, + sym_class_body, + STATE(6439), 1, sym_comment, - STATE(6958), 1, - sym_statement_block, - [200452] = 4, + [200635] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6578), 1, + ACTIONS(10524), 1, + anon_sym_SEMI, + ACTIONS(10526), 1, + sym__automatic_semicolon, + STATE(6440), 1, sym_comment, - ACTIONS(6713), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [200466] = 5, + [200651] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7544), 1, + ACTIONS(7965), 1, anon_sym_LBRACE, - STATE(3263), 1, - sym_class_body, - STATE(6579), 1, + STATE(6035), 1, + sym_statement_block, + STATE(6441), 1, sym_comment, - [200482] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [200667] = 5, ACTIONS(5), 1, sym_html_comment, - STATE(6580), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7609), 1, + anon_sym_LBRACE, + STATE(922), 1, + sym_class_body, + STATE(6442), 1, sym_comment, - ACTIONS(10487), 2, - sym__glimmer_template_content, - anon_sym_LT_SLASHtemplate_GT, - [200496] = 5, + [200683] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10167), 1, - anon_sym_LBRACE, - STATE(1211), 1, - sym_statement_block, - STATE(6581), 1, + ACTIONS(4791), 1, + anon_sym_LPAREN, + STATE(2414), 1, + sym_arguments, + STATE(6443), 1, sym_comment, - [200512] = 5, + [200699] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4839), 1, + ACTIONS(8977), 1, anon_sym_LBRACE, - STATE(3266), 1, + STATE(949), 1, sym_statement_block, - STATE(6582), 1, + STATE(6444), 1, sym_comment, - [200528] = 5, + [200715] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10489), 1, - anon_sym_LPAREN, - STATE(107), 1, - sym__for_header, - STATE(6583), 1, + ACTIONS(7609), 1, + anon_sym_LBRACE, + STATE(921), 1, + sym_class_body, + STATE(6445), 1, sym_comment, - [200544] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [200731] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10491), 1, - sym_identifier, - ACTIONS(10493), 1, - anon_sym_STAR, - STATE(6584), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3412), 1, + sym_statement_block, + STATE(6446), 1, sym_comment, - [200560] = 5, + [200747] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7544), 1, + ACTIONS(7589), 1, anon_sym_LBRACE, - STATE(3111), 1, + STATE(2996), 1, sym_class_body, - STATE(6585), 1, + STATE(6447), 1, sym_comment, - [200576] = 5, + [200763] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10495), 1, - anon_sym_SEMI, - ACTIONS(10497), 1, - sym__automatic_semicolon, - STATE(6586), 1, + ACTIONS(7617), 1, + anon_sym_LBRACE, + STATE(6033), 1, + sym_class_body, + STATE(6448), 1, sym_comment, - [200592] = 5, + [200779] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(10528), 1, + sym_identifier, + ACTIONS(10530), 1, + anon_sym_STAR, + STATE(6449), 1, + sym_comment, + [200795] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(4594), 1, - sym_formal_parameters, - STATE(6587), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10532), 1, + sym_identifier, + ACTIONS(10534), 1, + sym_private_property_identifier, + STATE(6450), 1, sym_comment, - [200608] = 5, + [200811] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(8989), 1, anon_sym_LBRACE, - STATE(3525), 1, + STATE(312), 1, sym_statement_block, - STATE(6588), 1, + STATE(6451), 1, sym_comment, - [200624] = 5, + [200827] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7162), 1, - anon_sym_COLON, - STATE(6387), 1, - sym_type_annotation, - STATE(6589), 1, + ACTIONS(7607), 1, + anon_sym_LBRACE, + STATE(1126), 1, + sym_class_body, + STATE(6452), 1, sym_comment, - [200640] = 4, + [200843] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6590), 1, + STATE(6453), 1, sym_comment, - ACTIONS(10499), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200654] = 4, + ACTIONS(3394), 2, + anon_sym_else, + anon_sym_while, + [200857] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6591), 1, + STATE(6454), 1, sym_comment, - ACTIONS(10501), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200668] = 4, + ACTIONS(3504), 2, + anon_sym_else, + anon_sym_while, + [200871] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6592), 1, + STATE(6455), 1, sym_comment, - ACTIONS(10503), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200682] = 5, + ACTIONS(3498), 2, + anon_sym_else, + anon_sym_while, + [200885] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10505), 1, - anon_sym_SEMI, - ACTIONS(10507), 1, - sym__automatic_semicolon, - STATE(6593), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3387), 1, + sym_statement_block, + STATE(6456), 1, sym_comment, - [200698] = 4, + [200901] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6594), 1, + STATE(6457), 1, sym_comment, - ACTIONS(10509), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200712] = 5, + ACTIONS(3504), 2, + anon_sym_else, + anon_sym_while, + [200915] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7644), 1, + ACTIONS(10536), 1, anon_sym_LBRACE, - STATE(933), 1, - sym_class_body, - STATE(6595), 1, + STATE(1294), 1, + sym_statement_block, + STATE(6458), 1, sym_comment, - [200728] = 4, + [200931] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6596), 1, + STATE(6459), 1, sym_comment, - ACTIONS(10511), 2, + ACTIONS(2075), 2, sym__automatic_semicolon, anon_sym_SEMI, - [200742] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10513), 1, - sym_identifier, - ACTIONS(10515), 1, - anon_sym_STAR, - STATE(6597), 1, - sym_comment, - [200758] = 4, + [200945] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6598), 1, + ACTIONS(7611), 1, + anon_sym_LBRACE, + STATE(311), 1, + sym_class_body, + STATE(6460), 1, sym_comment, - ACTIONS(10517), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [200772] = 5, + [200961] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10489), 1, - anon_sym_LPAREN, - STATE(111), 1, - sym__for_header, - STATE(6599), 1, + ACTIONS(7607), 1, + anon_sym_LBRACE, + STATE(1025), 1, + sym_class_body, + STATE(6461), 1, sym_comment, - [200788] = 4, + [200977] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6600), 1, + STATE(6462), 1, sym_comment, - ACTIONS(10519), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200802] = 4, + ACTIONS(3396), 2, + anon_sym_else, + anon_sym_while, + [200991] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6601), 1, + ACTIONS(8977), 1, + anon_sym_LBRACE, + STATE(939), 1, + sym_statement_block, + STATE(6463), 1, sym_comment, - ACTIONS(10521), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200816] = 5, + [201007] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7554), 1, + ACTIONS(7609), 1, anon_sym_LBRACE, - STATE(297), 1, + STATE(914), 1, sym_class_body, - STATE(6602), 1, + STATE(6464), 1, sym_comment, - [200832] = 4, + [201023] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6603), 1, + STATE(6465), 1, sym_comment, - ACTIONS(5486), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200846] = 5, + ACTIONS(3394), 2, + anon_sym_else, + anon_sym_while, + [201037] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10523), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(1259), 1, - sym_switch_body, - STATE(6604), 1, + STATE(3386), 1, + sym_statement_block, + STATE(6466), 1, sym_comment, - [200862] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [201053] = 4, ACTIONS(5), 1, sym_html_comment, - STATE(6605), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(6467), 1, sym_comment, - ACTIONS(4030), 2, - sym_jsx_identifier, - sym_identifier, - [200876] = 4, + ACTIONS(3504), 2, + anon_sym_else, + anon_sym_while, + [201067] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6606), 1, + ACTIONS(7639), 1, + anon_sym_LBRACE, + STATE(1240), 1, + sym_class_body, + STATE(6468), 1, sym_comment, - ACTIONS(5484), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200890] = 5, + [201083] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8802), 1, + ACTIONS(4849), 1, anon_sym_LBRACE, - STATE(307), 1, + STATE(2937), 1, sym_statement_block, - STATE(6607), 1, + STATE(6469), 1, sym_comment, - [200906] = 5, + [201099] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7680), 1, + ACTIONS(7607), 1, anon_sym_LBRACE, - STATE(1016), 1, + STATE(1073), 1, sym_class_body, - STATE(6608), 1, + STATE(6470), 1, sym_comment, - [200922] = 5, + [201115] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7694), 1, - anon_sym_LBRACE, - STATE(1131), 1, - sym_class_body, - STATE(6609), 1, + STATE(6471), 1, sym_comment, - [200938] = 4, + ACTIONS(3386), 2, + anon_sym_else, + anon_sym_while, + [201129] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6610), 1, + STATE(6472), 1, sym_comment, - ACTIONS(10525), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200952] = 4, + ACTIONS(10260), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201143] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6611), 1, + ACTIONS(7855), 1, + anon_sym_LBRACE, + STATE(393), 1, + sym_class_body, + STATE(6473), 1, sym_comment, - ACTIONS(10527), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200966] = 5, + [201159] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10529), 1, - anon_sym_SEMI, - ACTIONS(10531), 1, - sym__automatic_semicolon, - STATE(6612), 1, + STATE(6474), 1, sym_comment, - [200982] = 5, + ACTIONS(10538), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201173] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7674), 1, + ACTIONS(7553), 1, anon_sym_LBRACE, - STATE(2690), 1, + STATE(2515), 1, sym_class_body, - STATE(6613), 1, + STATE(6475), 1, sym_comment, - [200998] = 5, + [201189] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3542), 1, - sym_statement_block, - STATE(6614), 1, + ACTIONS(10540), 1, + sym_identifier, + ACTIONS(10542), 1, + anon_sym_STAR, + STATE(6476), 1, sym_comment, - [201014] = 5, + [201205] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3537), 1, - sym_statement_block, - STATE(6615), 1, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(4386), 1, + sym_formal_parameters, + STATE(6477), 1, sym_comment, - [201030] = 4, + [201221] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6616), 1, + STATE(6478), 1, sym_comment, - ACTIONS(5737), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201044] = 4, + ACTIONS(10544), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201235] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6617), 1, + STATE(6479), 1, sym_comment, - ACTIONS(6709), 2, + ACTIONS(9607), 2, anon_sym_COMMA, anon_sym_RBRACE, - [201058] = 4, + [201249] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6618), 1, + STATE(6480), 1, sym_comment, - ACTIONS(6753), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201072] = 5, + ACTIONS(5670), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201263] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5310), 1, + STATE(6481), 1, + sym_comment, + ACTIONS(2165), 2, + anon_sym_else, + anon_sym_while, + [201277] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8733), 1, anon_sym_LBRACE, - STATE(2688), 1, + STATE(401), 1, sym_statement_block, - STATE(6619), 1, + STATE(6482), 1, sym_comment, - [201088] = 4, + [201293] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6620), 1, + STATE(6483), 1, sym_comment, - ACTIONS(6764), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201102] = 5, + ACTIONS(3496), 2, + anon_sym_else, + anon_sym_while, + [201307] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10533), 1, + ACTIONS(10546), 1, anon_sym_SEMI, - ACTIONS(10535), 1, + ACTIONS(10548), 1, sym__automatic_semicolon, - STATE(6621), 1, + STATE(6484), 1, sym_comment, - [201118] = 5, + [201323] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7554), 1, + ACTIONS(5250), 1, anon_sym_LBRACE, - STATE(316), 1, - sym_class_body, - STATE(6622), 1, + STATE(2521), 1, + sym_statement_block, + STATE(6485), 1, sym_comment, - [201134] = 4, + [201339] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6623), 1, + STATE(6486), 1, sym_comment, - ACTIONS(10537), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201148] = 4, + ACTIONS(3494), 2, + anon_sym_else, + anon_sym_while, + [201353] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6624), 1, + STATE(6487), 1, sym_comment, - ACTIONS(6741), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201162] = 5, + ACTIONS(3392), 2, + anon_sym_else, + anon_sym_while, + [201367] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7644), 1, + ACTIONS(7589), 1, anon_sym_LBRACE, - STATE(914), 1, + STATE(3058), 1, sym_class_body, - STATE(6625), 1, + STATE(6488), 1, sym_comment, - [201178] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [201383] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(6626), 1, - sym_comment, - ACTIONS(10539), 2, - anon_sym_COMMA, - anon_sym_GT, - [201192] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8786), 1, - anon_sym_LBRACE, - STATE(946), 1, - sym_statement_block, - STATE(6627), 1, + ACTIONS(10550), 1, + sym_identifier, + ACTIONS(10552), 1, + anon_sym_STAR, + STATE(6489), 1, sym_comment, - [201208] = 5, + [201399] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7644), 1, + ACTIONS(7845), 1, anon_sym_LBRACE, - STATE(916), 1, + STATE(1309), 1, sym_class_body, - STATE(6628), 1, + STATE(6490), 1, sym_comment, - [201224] = 4, + [201415] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6629), 1, + STATE(6491), 1, sym_comment, - ACTIONS(3580), 2, + ACTIONS(3492), 2, anon_sym_else, anon_sym_while, - [201238] = 5, + [201429] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(4179), 1, - sym_formal_parameters, - STATE(6630), 1, + ACTIONS(5250), 1, + anon_sym_LBRACE, + STATE(2522), 1, + sym_statement_block, + STATE(6492), 1, sym_comment, - [201254] = 4, + [201445] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6631), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(4768), 1, + sym_formal_parameters, + STATE(6493), 1, sym_comment, - ACTIONS(5743), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201268] = 5, + [201461] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(4849), 1, anon_sym_LBRACE, - STATE(3552), 1, + STATE(3059), 1, sym_statement_block, - STATE(6632), 1, + STATE(6494), 1, sym_comment, - [201284] = 4, + [201477] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6633), 1, + ACTIONS(4849), 1, + anon_sym_LBRACE, + STATE(3060), 1, + sym_statement_block, + STATE(6495), 1, sym_comment, - ACTIONS(10541), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201298] = 5, + [201493] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8802), 1, + ACTIONS(7553), 1, anon_sym_LBRACE, - STATE(331), 1, - sym_statement_block, - STATE(6634), 1, + STATE(2526), 1, + sym_class_body, + STATE(6496), 1, sym_comment, - [201314] = 5, + [201509] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7680), 1, + ACTIONS(7589), 1, anon_sym_LBRACE, - STATE(996), 1, + STATE(2928), 1, sym_class_body, - STATE(6635), 1, + STATE(6497), 1, sym_comment, - [201330] = 5, + [201525] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9661), 1, - anon_sym_COLON, - ACTIONS(9663), 1, - anon_sym_GT, - STATE(6636), 1, + STATE(6498), 1, sym_comment, - [201346] = 5, + ACTIONS(3372), 2, + anon_sym_else, + anon_sym_while, + [201539] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7544), 1, - anon_sym_LBRACE, - STATE(3256), 1, - sym_class_body, - STATE(6637), 1, + ACTIONS(10554), 1, + anon_sym_SEMI, + ACTIONS(10556), 1, + sym__automatic_semicolon, + STATE(6499), 1, + sym_comment, + [201555] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10558), 1, + sym_identifier, + ACTIONS(10560), 1, + sym_private_property_identifier, + STATE(6500), 1, sym_comment, - [201362] = 5, + [201571] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10459), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(1192), 1, + STATE(3382), 1, sym_statement_block, - STATE(6638), 1, + STATE(6501), 1, sym_comment, - [201378] = 5, + [201587] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10543), 1, - anon_sym_LPAREN, - STATE(940), 1, - sym_parenthesized_expression, - STATE(6639), 1, + ACTIONS(7589), 1, + anon_sym_LBRACE, + STATE(3062), 1, + sym_class_body, + STATE(6502), 1, sym_comment, - [201394] = 4, + [201603] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6640), 1, + STATE(6503), 1, sym_comment, - ACTIONS(6721), 2, + ACTIONS(6733), 2, anon_sym_COMMA, anon_sym_RBRACE, - [201408] = 5, + [201617] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9051), 1, - anon_sym_DOT, - ACTIONS(10545), 1, - anon_sym_GT, - STATE(6641), 1, + ACTIONS(10562), 1, + anon_sym_SEMI, + ACTIONS(10564), 1, + sym__automatic_semicolon, + STATE(6504), 1, sym_comment, - [201424] = 4, + [201633] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6642), 1, + STATE(6505), 1, sym_comment, - ACTIONS(10547), 2, + ACTIONS(10566), 2, sym__automatic_semicolon, anon_sym_SEMI, - [201438] = 5, + [201647] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7554), 1, - anon_sym_LBRACE, - STATE(342), 1, - sym_class_body, - STATE(6643), 1, + STATE(6506), 1, sym_comment, - [201454] = 5, + ACTIONS(10568), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201661] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7680), 1, - anon_sym_LBRACE, - STATE(984), 1, - sym_class_body, - STATE(6644), 1, + ACTIONS(10570), 1, + sym_identifier, + ACTIONS(10572), 1, + sym_private_property_identifier, + STATE(6507), 1, sym_comment, - [201470] = 5, + [201677] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10549), 1, - anon_sym_SEMI, - ACTIONS(10551), 1, - sym__automatic_semicolon, - STATE(6645), 1, + STATE(6508), 1, sym_comment, - [201486] = 5, + ACTIONS(3514), 2, + anon_sym_else, + anon_sym_while, + [201691] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8786), 1, + ACTIONS(8049), 1, anon_sym_LBRACE, - STATE(921), 1, + STATE(6509), 1, + sym_comment, + STATE(6966), 1, sym_statement_block, - STATE(6646), 1, + [201707] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10574), 1, + sym_identifier, + ACTIONS(10576), 1, + sym_private_property_identifier, + STATE(6510), 1, sym_comment, - [201502] = 5, + [201723] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7644), 1, - anon_sym_LBRACE, - STATE(959), 1, - sym_class_body, - STATE(6647), 1, + STATE(6511), 1, sym_comment, - [201518] = 5, + ACTIONS(3502), 2, + anon_sym_else, + anon_sym_while, + [201737] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10553), 1, + ACTIONS(7645), 1, anon_sym_LBRACE, - STATE(1252), 1, - sym_enum_body, - STATE(6648), 1, + STATE(1157), 1, + sym_class_body, + STATE(6512), 1, sym_comment, - [201534] = 4, + [201753] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6649), 1, + STATE(6513), 1, sym_comment, - ACTIONS(10218), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [201548] = 5, + ACTIONS(10578), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [201767] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3538), 1, - sym_statement_block, - STATE(6650), 1, + STATE(6514), 1, sym_comment, - [201564] = 4, + ACTIONS(6701), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201781] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6651), 1, - sym_comment, - ACTIONS(9287), 2, - sym__automatic_semicolon, + ACTIONS(10580), 1, anon_sym_SEMI, - [201578] = 4, + ACTIONS(10582), 1, + sym__automatic_semicolon, + STATE(6515), 1, + sym_comment, + [201797] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6652), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(6516), 1, sym_comment, - ACTIONS(10555), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201592] = 5, + STATE(6929), 1, + sym_statement_block, + [201813] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7680), 1, - anon_sym_LBRACE, - STATE(975), 1, - sym_class_body, - STATE(6653), 1, + ACTIONS(10584), 1, + sym_identifier, + ACTIONS(10586), 1, + sym_private_property_identifier, + STATE(6517), 1, sym_comment, - [201608] = 4, + [201829] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + STATE(6518), 1, + sym_comment, + ACTIONS(10588), 2, + sym_jsx_identifier, + sym_identifier, + [201843] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(6654), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10590), 1, + sym_identifier, + ACTIONS(10592), 1, + sym_private_property_identifier, + STATE(6519), 1, sym_comment, - ACTIONS(10557), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [201622] = 5, + [201859] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10559), 1, + ACTIONS(5250), 1, anon_sym_LBRACE, - STATE(6623), 1, - sym_object, - STATE(6655), 1, + STATE(2445), 1, + sym_statement_block, + STATE(6520), 1, sym_comment, - [201638] = 4, + [201875] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6656), 1, + ACTIONS(7543), 1, + anon_sym_LBRACE, + STATE(1376), 1, + sym_class_body, + STATE(6521), 1, sym_comment, - ACTIONS(10561), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [201652] = 5, + [201891] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, + ACTIONS(8786), 1, anon_sym_LBRACE, - STATE(6657), 1, - sym_comment, - STATE(7113), 1, + STATE(1380), 1, sym_statement_block, - [201668] = 4, + STATE(6522), 1, + sym_comment, + [201907] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6658), 1, + ACTIONS(5250), 1, + anon_sym_LBRACE, + STATE(2457), 1, + sym_statement_block, + STATE(6523), 1, sym_comment, - ACTIONS(10563), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201682] = 5, + [201923] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7674), 1, + ACTIONS(7553), 1, anon_sym_LBRACE, - STATE(3451), 1, + STATE(2462), 1, sym_class_body, - STATE(6659), 1, + STATE(6524), 1, sym_comment, - [201698] = 5, + [201939] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10565), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(6660), 1, + STATE(3365), 1, + sym_statement_block, + STATE(6525), 1, sym_comment, - STATE(7117), 1, - sym_enum_body, - [201714] = 4, + [201955] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10594), 1, + sym_identifier, + ACTIONS(10596), 1, + sym_private_property_identifier, + STATE(6526), 1, + sym_comment, + [201971] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6661), 1, + STATE(6527), 1, sym_comment, - ACTIONS(3582), 2, + ACTIONS(3490), 2, anon_sym_else, anon_sym_while, - [201728] = 4, + [201985] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6662), 1, + ACTIONS(7543), 1, + anon_sym_LBRACE, + STATE(1387), 1, + sym_class_body, + STATE(6528), 1, sym_comment, - ACTIONS(3548), 2, - anon_sym_else, - anon_sym_while, - [201742] = 5, + [202001] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10567), 1, - anon_sym_SEMI, - ACTIONS(10569), 1, - sym__automatic_semicolon, - STATE(6663), 1, + STATE(6529), 1, + sym_comment, + ACTIONS(3488), 2, + anon_sym_else, + anon_sym_while, + [202015] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10598), 1, + sym_identifier, + ACTIONS(10600), 1, + anon_sym_STAR, + STATE(6530), 1, sym_comment, - [201758] = 5, + [202031] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10571), 1, - anon_sym_SEMI, - ACTIONS(10573), 1, - sym__automatic_semicolon, - STATE(6664), 1, + STATE(6531), 1, sym_comment, - [201774] = 5, + ACTIONS(10602), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202045] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10575), 1, + ACTIONS(10604), 1, sym_identifier, - ACTIONS(10577), 1, + ACTIONS(10606), 1, sym_private_property_identifier, - STATE(6665), 1, + STATE(6532), 1, sym_comment, - [201790] = 4, + [202061] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6666), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(6533), 1, sym_comment, - ACTIONS(3578), 2, - anon_sym_else, - anon_sym_while, - [201804] = 4, + STATE(6746), 1, + sym__from_clause, + [202077] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6667), 1, + ACTIONS(7855), 1, + anon_sym_LBRACE, + STATE(415), 1, + sym_class_body, + STATE(6534), 1, sym_comment, - ACTIONS(3576), 2, - anon_sym_else, - anon_sym_while, - [201818] = 5, + [202093] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10203), 1, + ACTIONS(10608), 1, sym_identifier, - ACTIONS(10207), 1, + ACTIONS(10610), 1, sym_private_property_identifier, - STATE(6668), 1, + STATE(6535), 1, sym_comment, - [201834] = 5, + [202109] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3515), 1, - sym_statement_block, - STATE(6669), 1, + STATE(6536), 1, sym_comment, - [201850] = 5, + ACTIONS(3486), 2, + anon_sym_else, + anon_sym_while, + [202123] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - STATE(5240), 1, - sym_formal_parameters, - STATE(6670), 1, + STATE(6537), 1, sym_comment, - [201866] = 5, + ACTIONS(10229), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [202137] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10579), 1, - anon_sym_SEMI, - ACTIONS(10581), 1, - sym__automatic_semicolon, - STATE(6671), 1, + ACTIONS(7853), 1, + anon_sym_LBRACE, + STATE(1131), 1, + sym_class_body, + STATE(6538), 1, sym_comment, - [201882] = 4, + [202153] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6672), 1, + STATE(6539), 1, sym_comment, - ACTIONS(3574), 2, + ACTIONS(3536), 2, anon_sym_else, anon_sym_while, - [201896] = 4, + [202167] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6673), 1, + ACTIONS(8780), 1, + anon_sym_LBRACE, + STATE(1103), 1, + sym_statement_block, + STATE(6540), 1, sym_comment, - ACTIONS(3570), 2, - anon_sym_else, - anon_sym_while, - [201910] = 5, + [202183] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10553), 1, + ACTIONS(4849), 1, anon_sym_LBRACE, - STATE(1281), 1, - sym_enum_body, - STATE(6674), 1, + STATE(3054), 1, + sym_statement_block, + STATE(6541), 1, sym_comment, - [201926] = 5, + [202199] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10583), 1, - anon_sym_SEMI, - ACTIONS(10585), 1, - sym__automatic_semicolon, - STATE(6675), 1, + ACTIONS(7625), 1, + anon_sym_LBRACE, + STATE(6542), 1, sym_comment, - [201942] = 4, + STATE(6956), 1, + sym_class_body, + [202215] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(10198), 1, + sym_identifier, + ACTIONS(10202), 1, + sym_private_property_identifier, + STATE(6543), 1, + sym_comment, + [202231] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(6676), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10612), 1, + sym_identifier, + ACTIONS(10614), 1, + sym_private_property_identifier, + STATE(6544), 1, sym_comment, - ACTIONS(5472), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201956] = 5, + [202247] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10587), 1, + ACTIONS(7589), 1, anon_sym_LBRACE, - STATE(1284), 1, - sym_statement_block, - STATE(6677), 1, + STATE(3021), 1, + sym_class_body, + STATE(6545), 1, sym_comment, - [201972] = 5, + [202263] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(7589), 1, anon_sym_LBRACE, - STATE(3536), 1, - sym_statement_block, - STATE(6678), 1, + STATE(3072), 1, + sym_class_body, + STATE(6546), 1, sym_comment, - [201988] = 4, + [202279] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6679), 1, + STATE(6547), 1, sym_comment, - ACTIONS(2147), 2, + ACTIONS(3542), 2, anon_sym_else, anon_sym_while, - [202002] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8979), 1, - anon_sym_in, - ACTIONS(8981), 1, - anon_sym_of, - STATE(6680), 1, - sym_comment, - [202018] = 5, + [202293] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10589), 1, - anon_sym_SEMI, - ACTIONS(10591), 1, - sym__automatic_semicolon, - STATE(6681), 1, + ACTIONS(7853), 1, + anon_sym_LBRACE, + STATE(1095), 1, + sym_class_body, + STATE(6548), 1, sym_comment, - [202034] = 5, + [202309] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10593), 1, - anon_sym_SEMI, - ACTIONS(10595), 1, - sym__automatic_semicolon, - STATE(6682), 1, + STATE(6549), 1, sym_comment, - [202050] = 5, + ACTIONS(3374), 2, + anon_sym_else, + anon_sym_while, + [202323] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - STATE(4809), 1, - sym_formal_parameters, - STATE(6683), 1, + ACTIONS(7649), 1, + anon_sym_LBRACE, + STATE(425), 1, + sym_class_body, + STATE(6550), 1, sym_comment, - [202066] = 4, + [202339] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6684), 1, + STATE(6551), 1, sym_comment, - ACTIONS(6705), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [202080] = 4, + ACTIONS(3452), 2, + anon_sym_else, + anon_sym_while, + [202353] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6685), 1, + STATE(6552), 1, sym_comment, - ACTIONS(10597), 2, + ACTIONS(5715), 2, sym__automatic_semicolon, anon_sym_SEMI, - [202094] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7552), 1, - anon_sym_LBRACE, - STATE(1159), 1, - sym_class_body, - STATE(6686), 1, - sym_comment, - [202110] = 5, + [202367] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3546), 1, + STATE(3390), 1, sym_statement_block, - STATE(6687), 1, + STATE(6553), 1, sym_comment, - [202126] = 5, + [202383] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10599), 1, + ACTIONS(8049), 1, anon_sym_LBRACE, - STATE(884), 1, + STATE(6511), 1, sym_statement_block, - STATE(6688), 1, + STATE(6554), 1, sym_comment, - [202142] = 5, + [202399] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10383), 1, - anon_sym_LPAREN, - STATE(79), 1, - sym_parenthesized_expression, - STATE(6689), 1, + STATE(6555), 1, sym_comment, - [202158] = 4, + ACTIONS(5719), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202413] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6690), 1, + ACTIONS(10616), 1, + anon_sym_SEMI, + ACTIONS(10618), 1, + sym__automatic_semicolon, + STATE(6556), 1, sym_comment, - ACTIONS(6729), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [202172] = 4, + [202429] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6691), 1, + STATE(6557), 1, sym_comment, - ACTIONS(5645), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202186] = 4, + ACTIONS(3448), 2, + anon_sym_else, + anon_sym_while, + [202443] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6692), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(5636), 1, + sym__from_clause, + STATE(6558), 1, sym_comment, - ACTIONS(5647), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202200] = 4, + [202459] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6693), 1, + ACTIONS(10620), 1, + anon_sym_COMMA, + ACTIONS(10622), 1, + anon_sym_from, + STATE(6559), 1, sym_comment, - ACTIONS(10601), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202214] = 4, + [202475] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6694), 1, + ACTIONS(10624), 1, + anon_sym_LPAREN, + STATE(5440), 1, + sym_parenthesized_expression, + STATE(6560), 1, sym_comment, - ACTIONS(2253), 2, - anon_sym_else, - anon_sym_while, - [202228] = 4, + [202491] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(6695), 1, + ACTIONS(10626), 1, + sym_identifier, + ACTIONS(10628), 1, + sym_private_property_identifier, + STATE(6561), 1, sym_comment, - ACTIONS(10603), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202242] = 5, + [202507] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10605), 1, + ACTIONS(9664), 1, sym_identifier, - ACTIONS(10607), 1, - anon_sym_STAR, - STATE(6696), 1, + ACTIONS(9668), 1, + sym_private_property_identifier, + STATE(6562), 1, sym_comment, - [202258] = 4, + [202523] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(6697), 1, + ACTIONS(10630), 1, + sym_identifier, + ACTIONS(10632), 1, + sym_private_property_identifier, + STATE(6563), 1, sym_comment, - ACTIONS(10609), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202272] = 5, + [202539] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3511), 1, - sym_statement_block, - STATE(6698), 1, + ACTIONS(10634), 1, + sym_identifier, + ACTIONS(10636), 1, + sym_private_property_identifier, + STATE(6564), 1, sym_comment, - [202288] = 5, + [202555] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10489), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(75), 1, - sym__for_header, - STATE(6699), 1, + STATE(5340), 1, + sym_formal_parameters, + STATE(6565), 1, sym_comment, - [202304] = 5, + [202571] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(5712), 1, - sym__from_clause, - STATE(6700), 1, + ACTIONS(10638), 1, + anon_sym_LBRACE, + STATE(6395), 1, + sym_enum_body, + STATE(6566), 1, sym_comment, - [202320] = 5, + [202587] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10611), 1, - anon_sym_LBRACE, - STATE(974), 1, - sym_switch_body, - STATE(6701), 1, + ACTIONS(10640), 1, + sym_identifier, + ACTIONS(10642), 1, + sym_private_property_identifier, + STATE(6567), 1, sym_comment, - [202336] = 4, + [202603] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6702), 1, + STATE(6568), 1, sym_comment, - ACTIONS(10613), 2, + ACTIONS(9315), 2, sym__automatic_semicolon, anon_sym_SEMI, - [202350] = 4, + [202617] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6703), 1, + STATE(6569), 1, sym_comment, - ACTIONS(9263), 2, + ACTIONS(10644), 2, sym__automatic_semicolon, anon_sym_SEMI, - [202364] = 4, + [202631] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6704), 1, + STATE(6570), 1, sym_comment, - ACTIONS(10615), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202378] = 5, + ACTIONS(3478), 2, + anon_sym_else, + anon_sym_while, + [202645] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10565), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(6705), 1, + STATE(3407), 1, + sym_statement_block, + STATE(6571), 1, sym_comment, - STATE(7153), 1, - sym_enum_body, - [202394] = 5, + [202661] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10617), 1, - anon_sym_SEMI, - ACTIONS(10619), 1, - sym__automatic_semicolon, - STATE(6706), 1, + STATE(6572), 1, sym_comment, - [202410] = 5, + ACTIONS(3374), 2, + anon_sym_else, + anon_sym_while, + [202675] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10621), 1, - anon_sym_LPAREN, - STATE(1351), 1, - sym_parenthesized_expression, - STATE(6707), 1, + STATE(6573), 1, sym_comment, - [202426] = 5, + ACTIONS(3376), 2, + anon_sym_else, + anon_sym_while, + [202689] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7550), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(387), 1, - sym_class_body, - STATE(6708), 1, + STATE(3361), 1, + sym_statement_block, + STATE(6574), 1, sym_comment, - [202442] = 5, + [202705] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10623), 1, - anon_sym_LPAREN, - STATE(5715), 1, - sym_parenthesized_expression, - STATE(6709), 1, + ACTIONS(10646), 1, + sym_identifier, + ACTIONS(10648), 1, + sym_private_property_identifier, + STATE(6575), 1, sym_comment, - [202458] = 4, + [202721] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6710), 1, + STATE(6576), 1, sym_comment, - ACTIONS(3568), 2, + ACTIONS(3456), 2, anon_sym_else, anon_sym_while, - [202472] = 5, + [202735] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10650), 1, + sym_identifier, + ACTIONS(10652), 1, + sym_private_property_identifier, + STATE(6577), 1, + sym_comment, + [202751] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, + ACTIONS(10654), 1, anon_sym_LBRACE, - STATE(6711), 1, + STATE(1446), 1, + sym_switch_body, + STATE(6578), 1, sym_comment, - STATE(7042), 1, - sym_statement_block, - [202488] = 4, + [202767] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6712), 1, + ACTIONS(7589), 1, + anon_sym_LBRACE, + STATE(2994), 1, + sym_class_body, + STATE(6579), 1, sym_comment, - ACTIONS(5659), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202502] = 5, + [202783] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10383), 1, - anon_sym_LPAREN, - STATE(86), 1, - sym_parenthesized_expression, - STATE(6713), 1, + ACTIONS(10432), 1, + anon_sym_LBRACE, + STATE(1117), 1, + sym_statement_block, + STATE(6580), 1, sym_comment, - [202518] = 4, + [202799] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6714), 1, + ACTIONS(10656), 1, + anon_sym_LPAREN, + STATE(919), 1, + sym_parenthesized_expression, + STATE(6581), 1, sym_comment, - ACTIONS(6717), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [202532] = 5, + [202815] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10625), 1, - anon_sym_in, - ACTIONS(10627), 1, - anon_sym_COLON, - STATE(6715), 1, + ACTIONS(10658), 1, + anon_sym_LPAREN, + STATE(117), 1, + sym__for_header, + STATE(6582), 1, sym_comment, - [202548] = 5, + [202831] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(10660), 1, anon_sym_LBRACE, - STATE(3509), 1, - sym_statement_block, - STATE(6716), 1, + STATE(1369), 1, + sym_enum_body, + STATE(6583), 1, sym_comment, - [202564] = 4, + [202847] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6717), 1, + STATE(6584), 1, sym_comment, - ACTIONS(3566), 2, + ACTIONS(3476), 2, anon_sym_else, anon_sym_while, - [202578] = 5, + [202861] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10629), 1, - anon_sym_LBRACE, - STATE(1679), 1, - sym_statement_block, - STATE(6718), 1, + ACTIONS(10662), 1, + sym_identifier, + ACTIONS(10664), 1, + sym_private_property_identifier, + STATE(6585), 1, sym_comment, - [202594] = 5, + [202877] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7544), 1, + ACTIONS(8733), 1, anon_sym_LBRACE, - STATE(3102), 1, - sym_class_body, - STATE(6719), 1, + STATE(360), 1, + sym_statement_block, + STATE(6586), 1, sym_comment, - [202610] = 5, + [202893] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7682), 1, + ACTIONS(7845), 1, anon_sym_LBRACE, - STATE(5490), 1, + STATE(1412), 1, sym_class_body, - STATE(6720), 1, + STATE(6587), 1, sym_comment, - [202626] = 4, + [202909] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6721), 1, + STATE(6588), 1, sym_comment, - ACTIONS(3564), 2, + ACTIONS(3388), 2, anon_sym_else, anon_sym_while, - [202640] = 5, + [202923] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3510), 1, - sym_statement_block, - STATE(6722), 1, + STATE(6589), 1, sym_comment, - [202656] = 4, + ACTIONS(10666), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [202937] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6723), 1, + STATE(6590), 1, sym_comment, - ACTIONS(10141), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [202670] = 4, + ACTIONS(10668), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202951] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10670), 1, + sym_identifier, + ACTIONS(10672), 1, + sym_private_property_identifier, + STATE(6591), 1, + sym_comment, + [202967] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6724), 1, + ACTIONS(7589), 1, + anon_sym_LBRACE, + STATE(3047), 1, + sym_class_body, + STATE(6592), 1, sym_comment, - ACTIONS(3562), 2, - anon_sym_else, - anon_sym_while, - [202684] = 4, + [202983] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6725), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3360), 1, + sym_statement_block, + STATE(6593), 1, sym_comment, - ACTIONS(3560), 2, - anon_sym_else, - anon_sym_while, - [202698] = 4, + [202999] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6726), 1, - sym_comment, - ACTIONS(10631), 2, - sym__automatic_semicolon, + ACTIONS(10674), 1, anon_sym_SEMI, - [202712] = 5, + ACTIONS(10676), 1, + sym__automatic_semicolon, + STATE(6594), 1, + sym_comment, + [203015] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10633), 1, + ACTIONS(7625), 1, anon_sym_LBRACE, - STATE(876), 1, - sym_statement_block, - STATE(6727), 1, + STATE(6595), 1, sym_comment, - [202728] = 5, + STATE(6989), 1, + sym_class_body, + [203031] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10383), 1, - anon_sym_LPAREN, - STATE(108), 1, - sym_parenthesized_expression, - STATE(6728), 1, + ACTIONS(10678), 1, + anon_sym_SEMI, + ACTIONS(10680), 1, + sym__automatic_semicolon, + STATE(6596), 1, sym_comment, - [202744] = 4, + [203047] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6729), 1, + STATE(6597), 1, sym_comment, - ACTIONS(3558), 2, - anon_sym_else, - anon_sym_while, - [202758] = 5, + ACTIONS(9163), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203061] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10383), 1, - anon_sym_LPAREN, - STATE(110), 1, - sym_parenthesized_expression, - STATE(6730), 1, + STATE(6598), 1, sym_comment, - [202774] = 5, + ACTIONS(10682), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203075] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7674), 1, + ACTIONS(7617), 1, anon_sym_LBRACE, - STATE(2639), 1, + STATE(5936), 1, sym_class_body, - STATE(6731), 1, + STATE(6599), 1, sym_comment, - [202790] = 5, + [203091] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5310), 1, - anon_sym_LBRACE, - STATE(2636), 1, - sym_statement_block, - STATE(6732), 1, + STATE(6600), 1, sym_comment, - [202806] = 5, + ACTIONS(10684), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203105] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5310), 1, - anon_sym_LBRACE, - STATE(2633), 1, - sym_statement_block, - STATE(6733), 1, + STATE(6601), 1, sym_comment, - [202822] = 5, + ACTIONS(5535), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203119] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8742), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(366), 1, + STATE(3394), 1, sym_statement_block, - STATE(6734), 1, - sym_comment, - [202838] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(6735), 1, + STATE(6602), 1, sym_comment, - ACTIONS(10635), 2, - sym_jsx_identifier, - sym_identifier, - [202852] = 5, + [203135] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10167), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(1240), 1, + STATE(3384), 1, sym_statement_block, - STATE(6736), 1, + STATE(6603), 1, sym_comment, - [202868] = 5, + [203151] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(6737), 1, + STATE(6604), 1, sym_comment, - STATE(6876), 1, - sym__from_clause, - [202884] = 4, + ACTIONS(5517), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203165] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6738), 1, + ACTIONS(10686), 1, + anon_sym_SEMI, + ACTIONS(10688), 1, + sym__automatic_semicolon, + STATE(6605), 1, sym_comment, - ACTIONS(3556), 2, - anon_sym_else, - anon_sym_while, - [202898] = 4, + [203181] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6739), 1, + STATE(6606), 1, sym_comment, - ACTIONS(3554), 2, + ACTIONS(3400), 2, anon_sym_else, anon_sym_while, - [202912] = 4, + [203195] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6740), 1, + STATE(6607), 1, sym_comment, - ACTIONS(3552), 2, + ACTIONS(3400), 2, anon_sym_else, anon_sym_while, - [202926] = 5, + [203209] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7674), 1, + ACTIONS(7855), 1, anon_sym_LBRACE, - STATE(3428), 1, + STATE(376), 1, sym_class_body, - STATE(6741), 1, + STATE(6608), 1, sym_comment, - [202942] = 4, + [203225] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6742), 1, + ACTIONS(10690), 1, + anon_sym_SEMI, + ACTIONS(10692), 1, + sym__automatic_semicolon, + STATE(6609), 1, sym_comment, - ACTIONS(3550), 2, - anon_sym_else, - anon_sym_while, - [202956] = 5, + [203241] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7646), 1, + ACTIONS(7605), 1, anon_sym_LBRACE, - STATE(1483), 1, + STATE(1453), 1, sym_class_body, - STATE(6743), 1, + STATE(6610), 1, sym_comment, - [202972] = 4, + [203257] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6744), 1, + ACTIONS(7845), 1, + anon_sym_LBRACE, + STATE(1440), 1, + sym_class_body, + STATE(6611), 1, sym_comment, - ACTIONS(3532), 2, - anon_sym_else, - anon_sym_while, - [202986] = 4, + [203273] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6745), 1, + STATE(6612), 1, sym_comment, - ACTIONS(5421), 2, + ACTIONS(5785), 2, sym__automatic_semicolon, anon_sym_SEMI, - [203000] = 4, + [203287] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6746), 1, - sym_comment, - ACTIONS(3546), 2, - anon_sym_else, - anon_sym_while, - [203014] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10637), 1, - sym_identifier, - ACTIONS(10639), 1, - sym_private_property_identifier, - STATE(6747), 1, + ACTIONS(8780), 1, + anon_sym_LBRACE, + STATE(995), 1, + sym_statement_block, + STATE(6613), 1, sym_comment, - [203030] = 4, + [203303] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6748), 1, + ACTIONS(10694), 1, + anon_sym_SEMI, + ACTIONS(10696), 1, + sym__automatic_semicolon, + STATE(6614), 1, sym_comment, - ACTIONS(6741), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203044] = 4, + [203319] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6749), 1, + STATE(6615), 1, sym_comment, - ACTIONS(10641), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203058] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(3466), 2, + anon_sym_else, + anon_sym_while, + [203333] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9967), 1, - anon_sym_LBRACE, - STATE(1033), 1, - sym_statement_block, - STATE(6750), 1, - sym_comment, - [203074] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7626), 1, - anon_sym_LBRACE, - STATE(375), 1, - sym_class_body, - STATE(6751), 1, + ACTIONS(10698), 1, + sym_identifier, + ACTIONS(10700), 1, + sym_private_property_identifier, + STATE(6616), 1, sym_comment, - [203090] = 5, + [203349] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(6752), 1, + ACTIONS(10160), 1, + sym_identifier, + ACTIONS(10164), 1, + sym_private_property_identifier, + STATE(6617), 1, sym_comment, - STATE(6890), 1, - sym_statement_block, - [203106] = 4, + [203365] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6753), 1, + STATE(6618), 1, sym_comment, - ACTIONS(10643), 2, + ACTIONS(10158), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [203120] = 4, + anon_sym_GT, + [203379] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(6754), 1, + ACTIONS(10702), 1, + sym_identifier, + ACTIONS(10704), 1, + sym_private_property_identifier, + STATE(6619), 1, sym_comment, - ACTIONS(10645), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203134] = 5, + [203395] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(10638), 1, anon_sym_LBRACE, - STATE(3557), 1, - sym_statement_block, - STATE(6755), 1, + STATE(6620), 1, sym_comment, - [203150] = 4, + STATE(6845), 1, + sym_enum_body, + [203411] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6756), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3397), 1, + sym_statement_block, + STATE(6621), 1, sym_comment, - ACTIONS(6764), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203164] = 5, + [203427] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7584), 1, - anon_sym_LBRACE, - STATE(438), 1, - sym_class_body, - STATE(6757), 1, + STATE(6622), 1, sym_comment, - [203180] = 5, + ACTIONS(3414), 2, + anon_sym_else, + anon_sym_while, + [203441] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - STATE(6758), 1, - sym_comment, - STATE(7368), 1, - sym_formal_parameters, - [203196] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10647), 1, - sym_identifier, - ACTIONS(10649), 1, - anon_sym_STAR, - STATE(6759), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(6623), 1, sym_comment, - [203212] = 5, + STATE(6836), 1, + sym_statement_block, + [203457] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10651), 1, + ACTIONS(10706), 1, sym_identifier, - ACTIONS(10653), 1, + ACTIONS(10708), 1, sym_private_property_identifier, - STATE(6760), 1, - sym_comment, - [203228] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(6761), 1, - sym_comment, - STATE(6918), 1, - sym_statement_block, - [203244] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7544), 1, - anon_sym_LBRACE, - STATE(3094), 1, - sym_class_body, - STATE(6762), 1, + STATE(6624), 1, sym_comment, - [203260] = 4, + [203473] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6763), 1, + STATE(6625), 1, sym_comment, - ACTIONS(10118), 2, + ACTIONS(10710), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [203274] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7544), 1, - anon_sym_LBRACE, - STATE(3241), 1, - sym_class_body, - STATE(6764), 1, - sym_comment, - [203290] = 4, + anon_sym_GT, + [203487] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6765), 1, + STATE(6626), 1, sym_comment, - ACTIONS(3544), 2, + ACTIONS(3420), 2, anon_sym_else, anon_sym_while, - [203304] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(6766), 1, - sym_comment, - ACTIONS(6735), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203318] = 5, + [203501] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4839), 1, - anon_sym_LBRACE, - STATE(3081), 1, - sym_statement_block, - STATE(6767), 1, + ACTIONS(10712), 1, + anon_sym_SEMI, + ACTIONS(10714), 1, + sym__automatic_semicolon, + STATE(6627), 1, sym_comment, - [203334] = 5, + [203517] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, + ACTIONS(5250), 1, anon_sym_LBRACE, - STATE(6497), 1, + STATE(2565), 1, sym_statement_block, - STATE(6768), 1, + STATE(6628), 1, sym_comment, - [203350] = 4, + [203533] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6769), 1, + ACTIONS(4218), 1, + anon_sym_COLON, + STATE(6629), 1, sym_comment, - ACTIONS(3542), 2, - anon_sym_else, - anon_sym_while, - [203364] = 5, + STATE(6656), 1, + sym_type_annotation, + [203549] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9967), 1, + ACTIONS(10660), 1, anon_sym_LBRACE, - STATE(1034), 1, - sym_statement_block, - STATE(6770), 1, + STATE(1342), 1, + sym_enum_body, + STATE(6630), 1, sym_comment, - [203380] = 4, + [203565] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6771), 1, + ACTIONS(7853), 1, + anon_sym_LBRACE, + STATE(997), 1, + sym_class_body, + STATE(6631), 1, sym_comment, - ACTIONS(3540), 2, - anon_sym_else, - anon_sym_while, - [203394] = 4, + [203581] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6772), 1, + STATE(6632), 1, sym_comment, - ACTIONS(3540), 2, + ACTIONS(3426), 2, anon_sym_else, anon_sym_while, - [203408] = 4, + [203595] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6773), 1, + STATE(6633), 1, sym_comment, - ACTIONS(3538), 2, + ACTIONS(3430), 2, anon_sym_else, anon_sym_while, - [203422] = 5, + [203609] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4226), 1, - anon_sym_COLON, - STATE(6774), 1, + ACTIONS(9569), 1, + anon_sym_LBRACE, + STATE(998), 1, + sym_statement_block, + STATE(6634), 1, sym_comment, - STATE(7084), 1, - sym_type_annotation, - [203438] = 5, + [203625] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7682), 1, - anon_sym_LBRACE, - STATE(5507), 1, - sym_class_body, - STATE(6775), 1, + STATE(6635), 1, sym_comment, - [203454] = 4, + ACTIONS(3460), 2, + anon_sym_else, + anon_sym_while, + [203639] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6776), 1, + STATE(6636), 1, sym_comment, - ACTIONS(8470), 2, + ACTIONS(10716), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [203468] = 5, + anon_sym_GT, + [203653] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7940), 1, + ACTIONS(8755), 1, anon_sym_LBRACE, - STATE(5202), 1, + STATE(449), 1, sym_statement_block, - STATE(6777), 1, - sym_comment, - [203484] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7682), 1, - anon_sym_LBRACE, - STATE(5509), 1, - sym_class_body, - STATE(6778), 1, - sym_comment, - [203500] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10655), 1, - sym_identifier, - ACTIONS(10657), 1, - sym_private_property_identifier, - STATE(6779), 1, + STATE(6637), 1, sym_comment, - [203516] = 5, + [203669] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - STATE(6780), 1, + ACTIONS(10718), 1, + anon_sym_LBRACE, + STATE(1333), 1, + sym_statement_block, + STATE(6638), 1, sym_comment, - STATE(7231), 1, - sym_formal_parameters, - [203532] = 5, + [203685] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7626), 1, + ACTIONS(4849), 1, anon_sym_LBRACE, - STATE(410), 1, - sym_class_body, - STATE(6781), 1, + STATE(3105), 1, + sym_statement_block, + STATE(6639), 1, sym_comment, - [203548] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [203701] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10659), 1, - sym_identifier, - ACTIONS(10661), 1, - sym_private_property_identifier, - STATE(6782), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(6640), 1, sym_comment, - [203564] = 5, + ACTIONS(3436), 2, + anon_sym_else, + anon_sym_while, + [203715] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7550), 1, + ACTIONS(7589), 1, anon_sym_LBRACE, - STATE(369), 1, + STATE(2998), 1, sym_class_body, - STATE(6783), 1, + STATE(6641), 1, sym_comment, - [203580] = 5, + [203731] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7552), 1, + ACTIONS(7553), 1, anon_sym_LBRACE, - STATE(1146), 1, + STATE(2566), 1, sym_class_body, - STATE(6784), 1, + STATE(6642), 1, sym_comment, - [203596] = 5, + [203747] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(4849), 1, anon_sym_LBRACE, - STATE(3556), 1, + STATE(3008), 1, sym_statement_block, - STATE(6785), 1, + STATE(6643), 1, sym_comment, - [203612] = 5, + [203763] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(6578), 1, - sym_statement_block, - STATE(6786), 1, + STATE(6644), 1, sym_comment, - [203628] = 5, + ACTIONS(3432), 2, + anon_sym_else, + anon_sym_while, + [203777] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7682), 1, - anon_sym_LBRACE, - STATE(5523), 1, - sym_class_body, - STATE(6787), 1, + STATE(6645), 1, sym_comment, - [203644] = 5, + ACTIONS(5500), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203791] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9045), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(409), 1, + STATE(3410), 1, sym_statement_block, - STATE(6788), 1, + STATE(6646), 1, sym_comment, - [203660] = 5, + [203807] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8826), 1, - anon_sym_LBRACE, - STATE(1135), 1, - sym_statement_block, - STATE(6789), 1, + STATE(6647), 1, sym_comment, - [203676] = 5, + ACTIONS(3458), 2, + anon_sym_else, + anon_sym_while, + [203821] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7552), 1, - anon_sym_LBRACE, - STATE(1134), 1, - sym_class_body, - STATE(6790), 1, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(115), 1, + sym_parenthesized_expression, + STATE(6648), 1, sym_comment, - [203692] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [203837] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10663), 1, - sym_identifier, - ACTIONS(10665), 1, - anon_sym_STAR, - STATE(6791), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10400), 1, + anon_sym_LPAREN, + STATE(6649), 1, sym_comment, - [203708] = 5, + STATE(6707), 1, + sym_parenthesized_expression, + [203853] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10667), 1, - anon_sym_SEMI, - ACTIONS(10669), 1, - sym__automatic_semicolon, - STATE(6792), 1, + STATE(6650), 1, sym_comment, - [203724] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3428), 2, + anon_sym_else, + anon_sym_while, + [203867] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10671), 1, - sym_identifier, - ACTIONS(10673), 1, - sym_private_property_identifier, - STATE(6793), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(6651), 1, sym_comment, - [203740] = 4, + ACTIONS(3424), 2, + anon_sym_else, + anon_sym_while, + [203881] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6794), 1, + STATE(6652), 1, sym_comment, - ACTIONS(6729), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203754] = 5, + ACTIONS(3458), 2, + anon_sym_else, + anon_sym_while, + [203895] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, + ACTIONS(7845), 1, anon_sym_LBRACE, - STATE(6502), 1, - sym_statement_block, - STATE(6795), 1, + STATE(1411), 1, + sym_class_body, + STATE(6653), 1, sym_comment, - [203770] = 4, + [203911] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6796), 1, + ACTIONS(9569), 1, + anon_sym_LBRACE, + STATE(1013), 1, + sym_statement_block, + STATE(6654), 1, sym_comment, - ACTIONS(6705), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203784] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [203927] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10675), 1, - sym_identifier, - ACTIONS(10677), 1, - sym_private_property_identifier, - STATE(6797), 1, - sym_comment, - [203800] = 5, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10679), 1, - sym_identifier, - ACTIONS(10681), 1, - sym_private_property_identifier, - STATE(6798), 1, + ACTIONS(10720), 1, + anon_sym_LBRACE, + STATE(1572), 1, + sym_statement_block, + STATE(6655), 1, sym_comment, - [203816] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [203943] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10683), 1, - sym_identifier, - ACTIONS(10685), 1, - sym_private_property_identifier, - STATE(6799), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(6656), 1, sym_comment, - [203832] = 5, + ACTIONS(10722), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [203957] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4839), 1, + ACTIONS(5250), 1, anon_sym_LBRACE, - STATE(3159), 1, + STATE(2397), 1, sym_statement_block, - STATE(6800), 1, + STATE(6657), 1, sym_comment, - [203848] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [203973] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10687), 1, - sym_identifier, - ACTIONS(10689), 1, - sym_private_property_identifier, - STATE(6801), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(6658), 1, sym_comment, - [203864] = 5, + ACTIONS(10724), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [203987] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8706), 1, - anon_sym_LBRACE, - STATE(436), 1, - sym_statement_block, - STATE(6802), 1, + STATE(6659), 1, sym_comment, - [203880] = 5, + ACTIONS(10726), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [204001] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4787), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(2618), 1, - sym_arguments, - STATE(6803), 1, + STATE(6660), 1, sym_comment, - [203896] = 5, + STATE(7233), 1, + sym_formal_parameters, + [204017] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3543), 1, - sym_statement_block, - STATE(6804), 1, + STATE(6661), 1, sym_comment, - [203912] = 4, + ACTIONS(10728), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [204031] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6805), 1, + STATE(6662), 1, sym_comment, - ACTIONS(6745), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203926] = 4, + ACTIONS(5662), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204045] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6806), 1, + ACTIONS(10730), 1, + anon_sym_LBRACE, + STATE(1565), 1, + sym_enum_body, + STATE(6663), 1, sym_comment, - ACTIONS(3536), 2, - anon_sym_else, - anon_sym_while, - [203940] = 5, + [204061] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(6596), 1, + sym__from_clause, + STATE(6664), 1, + sym_comment, + [204077] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9741), 1, + ACTIONS(10732), 1, sym_identifier, - ACTIONS(9745), 1, + ACTIONS(10734), 1, sym_private_property_identifier, - STATE(6807), 1, + STATE(6665), 1, sym_comment, - [203956] = 5, + [204093] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10691), 1, - anon_sym_SEMI, - ACTIONS(10693), 1, - sym__automatic_semicolon, - STATE(6808), 1, + STATE(6666), 1, sym_comment, - [203972] = 5, + ACTIONS(8599), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [204107] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9051), 1, - anon_sym_DOT, - ACTIONS(10695), 1, - anon_sym_GT, - STATE(6809), 1, + ACTIONS(9730), 1, + sym_identifier, + ACTIONS(9734), 1, + sym_private_property_identifier, + STATE(6667), 1, sym_comment, - [203988] = 5, + [204123] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10383), 1, - anon_sym_LPAREN, - STATE(109), 1, - sym_parenthesized_expression, - STATE(6810), 1, + ACTIONS(4218), 1, + anon_sym_COLON, + STATE(6658), 1, + sym_type_annotation, + STATE(6668), 1, sym_comment, - [204004] = 5, + [204139] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7682), 1, - anon_sym_LBRACE, - STATE(5550), 1, - sym_class_body, - STATE(6811), 1, + STATE(6669), 1, sym_comment, - [204020] = 5, + ACTIONS(3470), 2, + anon_sym_else, + anon_sym_while, + [204153] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(10736), 1, + sym_identifier, + ACTIONS(10738), 1, + anon_sym_STAR, + STATE(6670), 1, + sym_comment, + [204169] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7940), 1, - anon_sym_LBRACE, - STATE(5209), 1, - sym_statement_block, - STATE(6812), 1, + ACTIONS(5), 1, + sym_html_comment, + STATE(6671), 1, sym_comment, - [204036] = 5, + ACTIONS(10740), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [204183] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7674), 1, + ACTIONS(8049), 1, anon_sym_LBRACE, - STATE(2614), 1, - sym_class_body, - STATE(6813), 1, + STATE(6672), 1, sym_comment, - [204052] = 5, + STATE(6701), 1, + sym_statement_block, + [204199] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7682), 1, + ACTIONS(7553), 1, anon_sym_LBRACE, - STATE(5536), 1, + STATE(2404), 1, sym_class_body, - STATE(6814), 1, + STATE(6673), 1, sym_comment, - [204068] = 5, + [204215] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(8049), 1, anon_sym_LBRACE, - STATE(3541), 1, + STATE(5934), 1, sym_statement_block, - STATE(6815), 1, + STATE(6674), 1, sym_comment, - [204084] = 4, + [204231] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6816), 1, + STATE(6675), 1, sym_comment, - ACTIONS(10697), 2, + ACTIONS(6729), 2, anon_sym_COMMA, - anon_sym_GT, - [204098] = 5, + anon_sym_RBRACE, + [204245] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10699), 1, - anon_sym_SEMI, - ACTIONS(10701), 1, - sym__automatic_semicolon, - STATE(6817), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(5504), 1, + sym__from_clause, + STATE(6676), 1, sym_comment, - [204114] = 4, + [204261] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6818), 1, + STATE(6677), 1, sym_comment, - ACTIONS(10703), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204128] = 5, + ACTIONS(6725), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [204275] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7626), 1, - anon_sym_LBRACE, - STATE(386), 1, - sym_class_body, - STATE(6819), 1, + STATE(6678), 1, sym_comment, - [204144] = 5, + ACTIONS(8494), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [204289] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7682), 1, + ACTIONS(8049), 1, anon_sym_LBRACE, - STATE(5968), 1, - sym_class_body, - STATE(6820), 1, + STATE(6679), 1, sym_comment, - [204160] = 5, + STATE(6861), 1, + sym_statement_block, + [204305] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8844), 1, - anon_sym_LBRACE, - STATE(1289), 1, - sym_statement_block, - STATE(6821), 1, - sym_comment, - [204176] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10705), 1, - sym_identifier, - ACTIONS(10707), 1, - sym_private_property_identifier, - STATE(6822), 1, + STATE(6680), 1, sym_comment, - [204192] = 5, + ACTIONS(6770), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [204319] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3533), 1, - sym_statement_block, - STATE(6823), 1, + STATE(6681), 1, sym_comment, - [204208] = 4, + ACTIONS(6721), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [204333] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6824), 1, + STATE(6682), 1, sym_comment, - ACTIONS(10109), 2, + ACTIONS(6725), 2, anon_sym_COMMA, anon_sym_RBRACE, - [204222] = 4, + [204347] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6825), 1, + STATE(6683), 1, sym_comment, - ACTIONS(10709), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [204236] = 5, + ACTIONS(10742), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204361] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7672), 1, - anon_sym_LBRACE, - STATE(1629), 1, - sym_class_body, - STATE(6826), 1, + STATE(6684), 1, sym_comment, - [204252] = 5, + ACTIONS(3510), 2, + anon_sym_else, + anon_sym_while, + [204375] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3560), 1, - sym_statement_block, - STATE(6827), 1, + STATE(6685), 1, sym_comment, - [204268] = 5, + ACTIONS(3384), 2, + anon_sym_else, + anon_sym_while, + [204389] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7674), 1, - anon_sym_LBRACE, - STATE(2606), 1, - sym_class_body, - STATE(6828), 1, + STATE(6686), 1, + sym_comment, + ACTIONS(10744), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204403] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10746), 1, + sym_identifier, + ACTIONS(10748), 1, + anon_sym_STAR, + STATE(6687), 1, sym_comment, - [204284] = 5, + [204419] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5310), 1, + ACTIONS(7649), 1, anon_sym_LBRACE, - STATE(2604), 1, - sym_statement_block, - STATE(6829), 1, + STATE(435), 1, + sym_class_body, + STATE(6688), 1, sym_comment, - [204300] = 4, + [204435] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6830), 1, + STATE(6689), 1, sym_comment, - ACTIONS(10711), 2, + ACTIONS(5789), 2, sym__automatic_semicolon, anon_sym_SEMI, - [204314] = 5, + [204449] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10383), 1, - anon_sym_LPAREN, - STATE(101), 1, - sym_parenthesized_expression, - STATE(6831), 1, + STATE(6690), 1, sym_comment, - [204330] = 5, + ACTIONS(9755), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [204463] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10391), 1, - anon_sym_LPAREN, - STATE(6498), 1, - sym_parenthesized_expression, - STATE(6832), 1, + STATE(6691), 1, sym_comment, - [204346] = 5, + ACTIONS(3422), 2, + anon_sym_else, + anon_sym_while, + [204477] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7682), 1, - anon_sym_LBRACE, - STATE(5396), 1, - sym_class_body, - STATE(6833), 1, + STATE(6692), 1, sym_comment, - [204362] = 4, + ACTIONS(3418), 2, + anon_sym_else, + anon_sym_while, + [204491] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6834), 1, + STATE(6693), 1, sym_comment, - ACTIONS(10713), 2, + ACTIONS(5787), 2, sym__automatic_semicolon, anon_sym_SEMI, - [204376] = 4, + [204505] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6835), 1, + ACTIONS(10750), 1, + anon_sym_SEMI, + ACTIONS(10752), 1, + sym__automatic_semicolon, + STATE(6694), 1, sym_comment, - ACTIONS(10715), 2, - anon_sym_COMMA, - anon_sym_GT, - [204390] = 5, + [204521] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9045), 1, - anon_sym_LBRACE, - STATE(384), 1, - sym_statement_block, - STATE(6836), 1, - sym_comment, - [204406] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10717), 1, - sym_identifier, - ACTIONS(10719), 1, - sym_private_property_identifier, - STATE(6837), 1, + STATE(6695), 1, sym_comment, - [204422] = 4, + ACTIONS(10754), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204535] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6838), 1, + ACTIONS(10756), 1, + anon_sym_LBRACE, + STATE(3429), 1, + sym_statement_block, + STATE(6696), 1, sym_comment, - ACTIONS(3534), 2, - anon_sym_else, - anon_sym_while, - [204436] = 5, + [204551] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7584), 1, - anon_sym_LBRACE, - STATE(448), 1, - sym_class_body, - STATE(6839), 1, + STATE(6697), 1, sym_comment, - [204452] = 4, + ACTIONS(6737), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [204565] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6840), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3396), 1, + sym_statement_block, + STATE(6698), 1, sym_comment, - ACTIONS(3532), 2, - anon_sym_else, - anon_sym_while, - [204466] = 5, + [204581] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10721), 1, - anon_sym_SEMI, - ACTIONS(10723), 1, - sym__automatic_semicolon, - STATE(6841), 1, + STATE(6699), 1, sym_comment, - [204482] = 4, + ACTIONS(10758), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204595] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6842), 1, + STATE(6700), 1, sym_comment, - ACTIONS(3530), 2, + ACTIONS(3416), 2, anon_sym_else, anon_sym_while, - [204496] = 4, + [204609] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6843), 1, + STATE(6701), 1, sym_comment, - ACTIONS(3528), 2, - anon_sym_else, - anon_sym_while, - [204510] = 4, + ACTIONS(6752), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [204623] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6844), 1, - sym_comment, - ACTIONS(2201), 2, - anon_sym_else, - anon_sym_while, - [204524] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10725), 1, - sym_identifier, - ACTIONS(10727), 1, - sym_private_property_identifier, - STATE(6845), 1, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(87), 1, + sym_parenthesized_expression, + STATE(6702), 1, sym_comment, - [204540] = 4, + [204639] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6846), 1, + ACTIONS(10658), 1, + anon_sym_LPAREN, + STATE(102), 1, + sym__for_header, + STATE(6703), 1, sym_comment, - ACTIONS(3524), 2, - anon_sym_else, - anon_sym_while, - [204554] = 5, + [204655] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(6681), 1, - sym__from_clause, - STATE(6847), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3408), 1, + sym_statement_block, + STATE(6704), 1, sym_comment, - [204570] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [204671] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10729), 1, - sym_identifier, - ACTIONS(10731), 1, - sym_private_property_identifier, - STATE(6848), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10658), 1, + anon_sym_LPAREN, + STATE(121), 1, + sym__for_header, + STATE(6705), 1, sym_comment, - [204586] = 4, + [204687] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6849), 1, + ACTIONS(7553), 1, + anon_sym_LBRACE, + STATE(3283), 1, + sym_class_body, + STATE(6706), 1, sym_comment, - ACTIONS(10046), 2, - anon_sym_COMMA, - anon_sym_GT, - [204600] = 5, + [204703] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7544), 1, + ACTIONS(10760), 1, anon_sym_LBRACE, - STATE(3221), 1, - sym_class_body, - STATE(6850), 1, + STATE(6700), 1, + sym_switch_body, + STATE(6707), 1, sym_comment, - [204616] = 4, + [204719] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6851), 1, + STATE(6708), 1, sym_comment, - ACTIONS(3522), 2, + ACTIONS(3410), 2, anon_sym_else, anon_sym_while, - [204630] = 5, + [204733] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9051), 1, - anon_sym_DOT, - ACTIONS(10733), 1, - anon_sym_GT, - STATE(6852), 1, - sym_comment, - [204646] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10735), 1, - sym_identifier, - STATE(6413), 1, - sym_nested_identifier, - STATE(6853), 1, + ACTIONS(10762), 1, + anon_sym_LBRACE, + STATE(1224), 1, + sym_switch_body, + STATE(6709), 1, sym_comment, - [204662] = 4, + [204749] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6854), 1, + STATE(6710), 1, sym_comment, - ACTIONS(3520), 2, - anon_sym_else, - anon_sym_while, - [204676] = 4, + ACTIONS(5570), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204763] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6855), 1, + STATE(6711), 1, sym_comment, - ACTIONS(3518), 2, + ACTIONS(3402), 2, anon_sym_else, anon_sym_while, - [204690] = 5, + [204777] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7672), 1, - anon_sym_LBRACE, - STATE(1668), 1, - sym_class_body, - STATE(6856), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(6712), 1, sym_comment, - [204706] = 5, + STATE(7162), 1, + sym_formal_parameters, + [204793] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10737), 1, - anon_sym_SEMI, - ACTIONS(10739), 1, - sym__automatic_semicolon, - STATE(6857), 1, + STATE(6713), 1, sym_comment, - [204722] = 4, + ACTIONS(10764), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [204807] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6858), 1, + STATE(6714), 1, sym_comment, - ACTIONS(10741), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204736] = 5, + ACTIONS(6721), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [204821] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(5622), 1, - sym__from_clause, - STATE(6859), 1, + STATE(6715), 1, sym_comment, - [204752] = 4, + ACTIONS(5568), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204835] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6860), 1, + STATE(6716), 1, sym_comment, - ACTIONS(10743), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204766] = 4, + ACTIONS(6717), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [204849] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6861), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(6682), 1, + sym_statement_block, + STATE(6717), 1, sym_comment, - ACTIONS(3518), 2, - anon_sym_else, - anon_sym_while, - [204780] = 4, + [204865] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6862), 1, + STATE(6718), 1, sym_comment, - ACTIONS(3518), 2, - anon_sym_else, - anon_sym_while, - [204794] = 5, + ACTIONS(10766), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204879] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3529), 1, - sym_statement_block, - STATE(6863), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(5467), 1, + sym__from_clause, + STATE(6719), 1, sym_comment, - [204810] = 5, + [204895] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8742), 1, - anon_sym_LBRACE, - STATE(344), 1, - sym_statement_block, - STATE(6864), 1, + STATE(6720), 1, sym_comment, - [204826] = 5, + ACTIONS(10768), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204909] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7646), 1, - anon_sym_LBRACE, - STATE(1500), 1, - sym_class_body, - STATE(6865), 1, + STATE(6721), 1, sym_comment, - [204842] = 5, + ACTIONS(10770), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [204923] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5310), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(2584), 1, + STATE(3363), 1, sym_statement_block, - STATE(6866), 1, + STATE(6722), 1, sym_comment, - [204858] = 5, + [204939] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7682), 1, - anon_sym_LBRACE, - STATE(5255), 1, - sym_class_body, - STATE(6867), 1, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(105), 1, + sym_parenthesized_expression, + STATE(6723), 1, sym_comment, - [204874] = 4, + [204955] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6868), 1, + STATE(6724), 1, sym_comment, - ACTIONS(10745), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204888] = 5, + ACTIONS(6770), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [204969] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10747), 1, + ACTIONS(10772), 1, sym_identifier, - ACTIONS(10749), 1, - sym_private_property_identifier, - STATE(6869), 1, + ACTIONS(10774), 1, + anon_sym_STAR, + STATE(6725), 1, sym_comment, - [204904] = 4, + [204985] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6870), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(6726), 1, sym_comment, - ACTIONS(3516), 2, - anon_sym_else, - anon_sym_while, - [204918] = 5, + STATE(7427), 1, + sym_formal_parameters, + [205001] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(6566), 1, - sym__from_clause, - STATE(6871), 1, + STATE(6727), 1, sym_comment, - [204934] = 5, + ACTIONS(10109), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [205015] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10751), 1, - anon_sym_SEMI, - ACTIONS(10753), 1, - sym__automatic_semicolon, - STATE(6872), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(6675), 1, + sym_statement_block, + STATE(6728), 1, sym_comment, - [204950] = 4, + [205031] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6873), 1, + ACTIONS(10658), 1, + anon_sym_LPAREN, + STATE(98), 1, + sym__for_header, + STATE(6729), 1, sym_comment, - ACTIONS(3514), 2, - anon_sym_else, - anon_sym_while, - [204964] = 5, + [205047] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7550), 1, + ACTIONS(10776), 1, anon_sym_LBRACE, - STATE(389), 1, - sym_class_body, - STATE(6874), 1, + STATE(974), 1, + sym_switch_body, + STATE(6730), 1, sym_comment, - [204980] = 5, + [205063] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10755), 1, - anon_sym_SEMI, - ACTIONS(10757), 1, - sym__automatic_semicolon, - STATE(6875), 1, + STATE(6731), 1, sym_comment, - [204996] = 5, + ACTIONS(3532), 2, + anon_sym_else, + anon_sym_while, + [205077] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10759), 1, - anon_sym_SEMI, - ACTIONS(10761), 1, - sym__automatic_semicolon, - STATE(6876), 1, + ACTIONS(7169), 1, + anon_sym_LPAREN, + STATE(4239), 1, + sym_formal_parameters, + STATE(6732), 1, sym_comment, - [205012] = 5, + [205093] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7646), 1, - anon_sym_LBRACE, - STATE(1527), 1, - sym_class_body, - STATE(6877), 1, - sym_comment, - [205028] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10763), 1, - sym_identifier, - ACTIONS(10765), 1, - sym_private_property_identifier, - STATE(6878), 1, + STATE(6733), 1, sym_comment, - [205044] = 4, + ACTIONS(3408), 2, + anon_sym_else, + anon_sym_while, + [205107] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6879), 1, + STATE(6734), 1, sym_comment, - ACTIONS(3512), 2, + ACTIONS(3480), 2, anon_sym_else, anon_sym_while, - [205058] = 4, + [205121] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6880), 1, + STATE(6735), 1, sym_comment, - ACTIONS(3510), 2, + ACTIONS(3482), 2, anon_sym_else, anon_sym_while, - [205072] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [205135] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10767), 1, - sym_identifier, - ACTIONS(10769), 1, - anon_sym_STAR, - STATE(6881), 1, - sym_comment, - [205088] = 5, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10771), 1, - sym_identifier, - ACTIONS(10773), 1, - sym_private_property_identifier, - STATE(6882), 1, + STATE(6736), 1, sym_comment, - [205104] = 4, + ACTIONS(3484), 2, + anon_sym_else, + anon_sym_while, + [205149] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6883), 1, + STATE(6737), 1, sym_comment, - ACTIONS(3508), 2, - anon_sym_else, - anon_sym_while, - [205118] = 5, + ACTIONS(5736), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205163] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9661), 1, - anon_sym_COLON, - ACTIONS(10023), 1, - anon_sym_GT, - STATE(6884), 1, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(119), 1, + sym_parenthesized_expression, + STATE(6738), 1, sym_comment, - [205134] = 5, + [205179] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4839), 1, + ACTIONS(10778), 1, anon_sym_LBRACE, - STATE(3252), 1, + STATE(881), 1, sym_statement_block, - STATE(6885), 1, + STATE(6739), 1, sym_comment, - [205150] = 5, + [205195] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7696), 1, - anon_sym_LBRACE, - STATE(6851), 1, - sym_class_body, - STATE(6886), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(5329), 1, + sym_formal_parameters, + STATE(6740), 1, sym_comment, - [205166] = 5, + [205211] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10775), 1, + ACTIONS(10780), 1, sym_identifier, - ACTIONS(10777), 1, - sym_private_property_identifier, - STATE(6887), 1, + STATE(6285), 1, + sym_nested_identifier, + STATE(6741), 1, sym_comment, - [205182] = 5, + [205227] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8826), 1, - anon_sym_LBRACE, - STATE(961), 1, - sym_statement_block, - STATE(6888), 1, + STATE(6742), 1, sym_comment, - [205198] = 5, + ACTIONS(10782), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205241] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10779), 1, + ACTIONS(10784), 1, sym_identifier, - ACTIONS(10781), 1, - sym_private_property_identifier, - STATE(6889), 1, + STATE(6308), 1, + sym_nested_identifier, + STATE(6743), 1, sym_comment, - [205214] = 4, + [205257] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6890), 1, - sym_comment, - ACTIONS(6709), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205228] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10783), 1, - sym_identifier, - ACTIONS(10785), 1, - sym_private_property_identifier, - STATE(6891), 1, + STATE(6744), 1, sym_comment, - [205244] = 4, + ACTIONS(3398), 2, + anon_sym_else, + anon_sym_while, + [205271] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6892), 1, + STATE(6745), 1, sym_comment, - ACTIONS(3506), 2, + ACTIONS(3390), 2, anon_sym_else, anon_sym_while, - [205258] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [205285] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10787), 1, - sym_identifier, - ACTIONS(10789), 1, - sym_private_property_identifier, - STATE(6893), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10786), 1, + anon_sym_SEMI, + ACTIONS(10788), 1, + sym__automatic_semicolon, + STATE(6746), 1, sym_comment, - [205274] = 4, + [205301] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6894), 1, + ACTIONS(10790), 1, + anon_sym_SEMI, + ACTIONS(10792), 1, + sym__automatic_semicolon, + STATE(6747), 1, sym_comment, - ACTIONS(3506), 2, - anon_sym_else, - anon_sym_while, - [205288] = 4, + [205317] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6895), 1, + STATE(6748), 1, sym_comment, - ACTIONS(2387), 2, - anon_sym_else, - anon_sym_while, - [205302] = 4, + ACTIONS(6713), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205331] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6896), 1, + STATE(6749), 1, sym_comment, - ACTIONS(3504), 2, - anon_sym_else, - anon_sym_while, - [205316] = 5, + ACTIONS(10794), 2, + anon_sym_COMMA, + anon_sym_GT, + [205345] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7552), 1, + ACTIONS(7625), 1, anon_sym_LBRACE, - STATE(1130), 1, - sym_class_body, - STATE(6897), 1, + STATE(6750), 1, sym_comment, - [205332] = 4, + STATE(6841), 1, + sym_class_body, + [205361] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6898), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3402), 1, + sym_statement_block, + STATE(6751), 1, sym_comment, - ACTIONS(3502), 2, - anon_sym_else, - anon_sym_while, - [205346] = 4, + [205377] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6899), 1, + STATE(6752), 1, sym_comment, - ACTIONS(3500), 2, - anon_sym_else, - anon_sym_while, - [205360] = 4, + ACTIONS(5533), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205391] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6900), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(6383), 1, + sym__from_clause, + STATE(6753), 1, sym_comment, - ACTIONS(3498), 2, - anon_sym_else, - anon_sym_while, - [205374] = 5, + [205407] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9661), 1, - anon_sym_COLON, - ACTIONS(10084), 1, - anon_sym_GT, - STATE(6901), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3398), 1, + sym_statement_block, + STATE(6754), 1, sym_comment, - [205390] = 5, + [205423] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(5583), 1, - sym__from_clause, - STATE(6902), 1, + STATE(6755), 1, sym_comment, - [205406] = 4, + ACTIONS(5668), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205437] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6903), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(6756), 1, sym_comment, - ACTIONS(3498), 2, - anon_sym_else, - anon_sym_while, - [205420] = 5, + STATE(7325), 1, + sym_formal_parameters, + [205453] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7674), 1, - anon_sym_LBRACE, - STATE(2572), 1, - sym_class_body, - STATE(6904), 1, + STATE(6757), 1, sym_comment, - [205436] = 5, + ACTIONS(10796), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205467] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7682), 1, + ACTIONS(7605), 1, anon_sym_LBRACE, - STATE(5929), 1, + STATE(1455), 1, sym_class_body, - STATE(6905), 1, + STATE(6758), 1, sym_comment, - [205452] = 5, + [205483] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7940), 1, - anon_sym_LBRACE, - STATE(5925), 1, - sym_statement_block, - STATE(6906), 1, + STATE(6759), 1, sym_comment, - [205468] = 4, + ACTIONS(10798), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205497] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6907), 1, + ACTIONS(10800), 1, + anon_sym_SEMI, + ACTIONS(10802), 1, + sym__automatic_semicolon, + STATE(6760), 1, sym_comment, - ACTIONS(3376), 2, - anon_sym_else, - anon_sym_while, - [205482] = 5, + [205513] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9622), 1, + ACTIONS(8049), 1, anon_sym_LBRACE, - STATE(1129), 1, + STATE(5864), 1, sym_statement_block, - STATE(6908), 1, + STATE(6761), 1, sym_comment, - [205498] = 5, + [205529] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(6909), 1, - sym_comment, - STATE(7338), 1, + STATE(5379), 1, sym_formal_parameters, - [205514] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7682), 1, - anon_sym_LBRACE, - STATE(5920), 1, - sym_class_body, - STATE(6910), 1, + STATE(6762), 1, sym_comment, - [205530] = 4, + [205545] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6911), 1, + STATE(6763), 1, sym_comment, - ACTIONS(9952), 2, + ACTIONS(6717), 2, anon_sym_COMMA, anon_sym_RBRACE, - [205544] = 5, + [205559] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - STATE(5415), 1, - sym_formal_parameters, - STATE(6912), 1, + STATE(6764), 1, sym_comment, - [205560] = 4, + ACTIONS(10804), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205573] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6913), 1, + STATE(6765), 1, sym_comment, - ACTIONS(3378), 2, + ACTIONS(3382), 2, anon_sym_else, anon_sym_while, - [205574] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10791), 1, - sym_identifier, - ACTIONS(10793), 1, - sym_private_property_identifier, - STATE(6914), 1, - sym_comment, - [205590] = 4, + [205587] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6915), 1, + STATE(6766), 1, sym_comment, - ACTIONS(2387), 2, + ACTIONS(3380), 2, anon_sym_else, anon_sym_while, - [205604] = 5, + [205601] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7626), 1, + ACTIONS(8049), 1, anon_sym_LBRACE, - STATE(397), 1, - sym_class_body, - STATE(6916), 1, + STATE(6714), 1, + sym_statement_block, + STATE(6767), 1, sym_comment, - [205620] = 5, + [205617] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10795), 1, - anon_sym_SEMI, - ACTIONS(10797), 1, - sym__automatic_semicolon, - STATE(6917), 1, + STATE(6768), 1, sym_comment, - [205636] = 4, + ACTIONS(6737), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205631] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6918), 1, + ACTIONS(7197), 1, + anon_sym_LPAREN, + STATE(4051), 1, + sym_formal_parameters, + STATE(6769), 1, sym_comment, - ACTIONS(6694), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205650] = 5, + [205647] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - STATE(6919), 1, + ACTIONS(7605), 1, + anon_sym_LBRACE, + STATE(1519), 1, + sym_class_body, + STATE(6770), 1, sym_comment, - STATE(7610), 1, - sym_formal_parameters, - [205666] = 5, + [205663] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10587), 1, + ACTIONS(8049), 1, anon_sym_LBRACE, - STATE(1436), 1, + STATE(4624), 1, sym_statement_block, - STATE(6920), 1, + STATE(6771), 1, sym_comment, - [205682] = 4, + [205679] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6921), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(6772), 1, sym_comment, - ACTIONS(3496), 2, - anon_sym_else, - anon_sym_while, - [205696] = 5, + STATE(7155), 1, + sym_formal_parameters, + [205695] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10799), 1, - anon_sym_LPAREN, - STATE(1115), 1, - sym_parenthesized_expression, - STATE(6922), 1, + STATE(6773), 1, sym_comment, - [205712] = 5, + ACTIONS(5606), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205709] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, + ACTIONS(10396), 1, anon_sym_LPAREN, - STATE(5512), 1, - sym_formal_parameters, - STATE(6923), 1, + STATE(122), 1, + sym_parenthesized_expression, + STATE(6774), 1, sym_comment, - [205728] = 5, + [205725] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3521), 1, - sym_statement_block, - STATE(6924), 1, + STATE(6775), 1, sym_comment, - [205744] = 5, + ACTIONS(9845), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205739] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, + ACTIONS(7193), 1, anon_sym_LPAREN, - STATE(6925), 1, + STATE(6776), 1, sym_comment, - STATE(7656), 1, + STATE(7459), 1, sym_formal_parameters, - [205760] = 5, - ACTIONS(3), 1, + [205755] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(10806), 1, + anon_sym_LBRACE, + STATE(1356), 1, + sym_switch_body, + STATE(6777), 1, + sym_comment, + [205771] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10801), 1, - sym_identifier, - STATE(6187), 1, - sym_nested_identifier, - STATE(6926), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(6778), 1, sym_comment, - [205776] = 4, + ACTIONS(10808), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205785] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6927), 1, + ACTIONS(10658), 1, + anon_sym_LPAREN, + STATE(91), 1, + sym__for_header, + STATE(6779), 1, sym_comment, - ACTIONS(3494), 2, - anon_sym_else, - anon_sym_while, - [205790] = 5, + [205801] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7584), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(454), 1, - sym_class_body, - STATE(6928), 1, + STATE(3364), 1, + sym_statement_block, + STATE(6780), 1, + sym_comment, + [205817] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(6781), 1, + sym_comment, + STATE(7406), 1, + sym_formal_parameters, + [205833] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(6782), 1, sym_comment, - [205806] = 5, + ACTIONS(10810), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205847] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7544), 1, - anon_sym_LBRACE, - STATE(3283), 1, - sym_class_body, - STATE(6929), 1, + STATE(6783), 1, sym_comment, - [205822] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10812), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205861] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10803), 1, - sym_identifier, - STATE(6419), 1, - sym_nested_identifier, - STATE(6930), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(6784), 1, sym_comment, - [205838] = 4, + ACTIONS(10814), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205875] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6931), 1, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym_parenthesized_expression, + STATE(6785), 1, sym_comment, - ACTIONS(9961), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205852] = 5, + [205891] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(10816), 1, anon_sym_LBRACE, - STATE(3555), 1, + STATE(867), 1, sym_statement_block, - STATE(6932), 1, + STATE(6786), 1, sym_comment, - [205868] = 4, + [205907] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6933), 1, + ACTIONS(10818), 1, + anon_sym_in, + ACTIONS(10820), 1, + anon_sym_COLON, + STATE(6787), 1, sym_comment, - ACTIONS(10805), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205882] = 5, + [205923] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7562), 1, - anon_sym_LBRACE, - STATE(1540), 1, - sym_class_body, - STATE(6934), 1, + STATE(6788), 1, sym_comment, - [205898] = 5, + ACTIONS(10822), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205937] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10807), 1, - anon_sym_LBRACE, - STATE(4998), 1, - sym_enum_body, - STATE(6935), 1, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(75), 1, + sym_parenthesized_expression, + STATE(6789), 1, sym_comment, - [205914] = 5, + [205953] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3545), 1, + STATE(3399), 1, sym_statement_block, - STATE(6936), 1, + STATE(6790), 1, sym_comment, - [205930] = 5, + [205969] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8844), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(1543), 1, + STATE(3415), 1, sym_statement_block, - STATE(6937), 1, + STATE(6791), 1, sym_comment, - [205946] = 5, + [205985] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(4849), 1, anon_sym_LBRACE, - STATE(3553), 1, + STATE(3044), 1, sym_statement_block, - STATE(6938), 1, + STATE(6792), 1, sym_comment, - [205962] = 5, + [206001] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10824), 1, + sym_identifier, + STATE(6236), 1, + sym_nested_identifier, + STATE(6793), 1, + sym_comment, + [206017] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, + ACTIONS(10396), 1, anon_sym_LPAREN, - STATE(6939), 1, + STATE(81), 1, + sym_parenthesized_expression, + STATE(6794), 1, sym_comment, - STATE(7324), 1, - sym_formal_parameters, - [205978] = 5, + [206033] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7562), 1, - anon_sym_LBRACE, - STATE(1544), 1, - sym_class_body, - STATE(6940), 1, + STATE(6795), 1, sym_comment, - [205994] = 4, + ACTIONS(10826), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [206047] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6941), 1, + STATE(6796), 1, sym_comment, - ACTIONS(3380), 2, + ACTIONS(3440), 2, anon_sym_else, anon_sym_while, - [206008] = 4, + [206061] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6942), 1, - sym_comment, - ACTIONS(8650), 2, + ACTIONS(8240), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [206022] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(6943), 1, + STATE(3373), 1, + sym_statement_block, + STATE(6797), 1, sym_comment, - ACTIONS(3382), 2, - anon_sym_else, - anon_sym_while, - [206036] = 4, + [206077] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6944), 1, + ACTIONS(7589), 1, + anon_sym_LBRACE, + STATE(3042), 1, + sym_class_body, + STATE(6798), 1, sym_comment, - ACTIONS(3384), 2, - anon_sym_else, - anon_sym_while, - [206050] = 5, + [206093] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - STATE(5531), 1, - sym_formal_parameters, - STATE(6945), 1, + STATE(6799), 1, sym_comment, - [206066] = 5, + ACTIONS(6709), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [206107] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, + ACTIONS(8049), 1, anon_sym_LBRACE, - STATE(6796), 1, + STATE(6503), 1, sym_statement_block, - STATE(6946), 1, + STATE(6800), 1, sym_comment, - [206082] = 4, + [206123] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6947), 1, + STATE(6801), 1, sym_comment, - ACTIONS(3386), 2, + ACTIONS(3440), 2, anon_sym_else, anon_sym_while, - [206096] = 5, + [206137] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7674), 1, - anon_sym_LBRACE, - STATE(2570), 1, - sym_class_body, - STATE(6948), 1, + STATE(6802), 1, sym_comment, - [206112] = 4, + ACTIONS(10027), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [206151] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6949), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3368), 1, + sym_statement_block, + STATE(6803), 1, sym_comment, - ACTIONS(9122), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206126] = 4, + [206167] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6950), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3369), 1, + sym_statement_block, + STATE(6804), 1, sym_comment, - ACTIONS(10809), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206140] = 5, + [206183] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5310), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(2569), 1, + STATE(3367), 1, sym_statement_block, - STATE(6951), 1, + STATE(6805), 1, sym_comment, - [206156] = 5, + [206199] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5310), 1, - anon_sym_LBRACE, - STATE(2568), 1, - sym_statement_block, - STATE(6952), 1, + STATE(6806), 1, sym_comment, - [206172] = 5, + ACTIONS(3446), 2, + anon_sym_else, + anon_sym_while, + [206213] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7674), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(2566), 1, - sym_class_body, - STATE(6953), 1, + STATE(3391), 1, + sym_statement_block, + STATE(6807), 1, sym_comment, - [206188] = 4, + [206229] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6954), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(5630), 1, + sym__from_clause, + STATE(6808), 1, sym_comment, - ACTIONS(3492), 2, - anon_sym_else, - anon_sym_while, - [206202] = 5, + [206245] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - STATE(6955), 1, + STATE(6809), 1, sym_comment, - STATE(7219), 1, - sym_formal_parameters, - [206218] = 4, + ACTIONS(10828), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206259] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6956), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(6810), 1, sym_comment, - ACTIONS(3388), 2, - anon_sym_else, - anon_sym_while, - [206232] = 5, + STATE(7373), 1, + sym_formal_parameters, + [206275] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(6794), 1, + STATE(3385), 1, sym_statement_block, - STATE(6957), 1, + STATE(6811), 1, sym_comment, - [206248] = 4, + [206291] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6958), 1, + STATE(6812), 1, sym_comment, - ACTIONS(6776), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [206262] = 4, + ACTIONS(8412), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [206305] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6959), 1, + STATE(6813), 1, sym_comment, - ACTIONS(3492), 2, - anon_sym_else, - anon_sym_while, - [206276] = 4, + ACTIONS(5638), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206319] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6960), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(6724), 1, + sym_statement_block, + STATE(6814), 1, sym_comment, - ACTIONS(3390), 2, - anon_sym_else, - anon_sym_while, - [206290] = 5, + [206335] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7544), 1, - anon_sym_LBRACE, - STATE(3309), 1, - sym_class_body, - STATE(6961), 1, + STATE(6815), 1, sym_comment, - [206306] = 5, + ACTIONS(5636), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206349] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - STATE(6962), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(5444), 1, + sym__from_clause, + STATE(6816), 1, sym_comment, - STATE(7569), 1, - sym_formal_parameters, - [206322] = 4, + [206365] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6963), 1, + STATE(6817), 1, sym_comment, - ACTIONS(3392), 2, + ACTIONS(3378), 2, anon_sym_else, anon_sym_while, - [206336] = 5, + [206379] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4839), 1, + ACTIONS(7543), 1, anon_sym_LBRACE, - STATE(3311), 1, - sym_statement_block, - STATE(6964), 1, + STATE(1166), 1, + sym_class_body, + STATE(6818), 1, + sym_comment, + [206395] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10830), 1, + sym_identifier, + STATE(5641), 1, + sym_nested_identifier, + STATE(6819), 1, sym_comment, - [206352] = 5, + [206411] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4839), 1, - anon_sym_LBRACE, - STATE(3066), 1, - sym_statement_block, - STATE(6965), 1, + STATE(6820), 1, sym_comment, - [206368] = 5, + ACTIONS(9850), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [206425] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7544), 1, - anon_sym_LBRACE, - STATE(3313), 1, - sym_class_body, - STATE(6966), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(5433), 1, + sym__from_clause, + STATE(6821), 1, sym_comment, - [206384] = 5, + [206441] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10811), 1, - anon_sym_SEMI, - ACTIONS(10813), 1, - sym__automatic_semicolon, - STATE(6967), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(6614), 1, + sym__from_clause, + STATE(6822), 1, sym_comment, - [206400] = 5, + [206457] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10815), 1, - anon_sym_SEMI, - ACTIONS(10817), 1, - sym__automatic_semicolon, - STATE(6968), 1, + STATE(6823), 1, sym_comment, - [206416] = 4, + ACTIONS(3450), 2, + anon_sym_else, + anon_sym_while, + [206471] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6969), 1, + ACTIONS(9896), 1, + anon_sym_LBRACE, + STATE(1084), 1, + sym_statement_block, + STATE(6824), 1, sym_comment, - ACTIONS(9588), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [206430] = 4, + [206487] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6970), 1, + STATE(6825), 1, sym_comment, - ACTIONS(10819), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [206444] = 5, + ACTIONS(10832), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206501] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10821), 1, + ACTIONS(10834), 1, anon_sym_SEMI, - ACTIONS(10823), 1, + ACTIONS(10836), 1, sym__automatic_semicolon, - STATE(6971), 1, + STATE(6826), 1, sym_comment, - [206460] = 4, + [206517] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6972), 1, + ACTIONS(7617), 1, + anon_sym_LBRACE, + STATE(5159), 1, + sym_class_body, + STATE(6827), 1, sym_comment, - ACTIONS(10825), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [206474] = 4, + [206533] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6973), 1, + ACTIONS(9912), 1, + anon_sym_LBRACE, + STATE(1330), 1, + sym_statement_block, + STATE(6828), 1, sym_comment, - ACTIONS(3490), 2, - anon_sym_else, - anon_sym_while, - [206488] = 4, + [206549] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6974), 1, + ACTIONS(9912), 1, + anon_sym_LBRACE, + STATE(1177), 1, + sym_statement_block, + STATE(6829), 1, sym_comment, - ACTIONS(3370), 2, - anon_sym_else, - anon_sym_while, - [206502] = 5, + [206565] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10827), 1, - anon_sym_SEMI, - ACTIONS(10829), 1, - sym__automatic_semicolon, - STATE(6975), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3388), 1, + sym_statement_block, + STATE(6830), 1, sym_comment, - [206518] = 5, + [206581] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(5655), 1, - sym__from_clause, - STATE(6976), 1, + ACTIONS(7589), 1, + anon_sym_LBRACE, + STATE(3028), 1, + sym_class_body, + STATE(6831), 1, sym_comment, - [206534] = 4, + [206597] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6977), 1, + STATE(6832), 1, sym_comment, - ACTIONS(2075), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206548] = 5, + ACTIONS(3554), 2, + anon_sym_else, + anon_sym_while, + [206611] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(6490), 1, - sym_statement_block, - STATE(6978), 1, + STATE(6833), 1, sym_comment, - [206564] = 4, + ACTIONS(8396), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [206625] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6979), 1, + STATE(6834), 1, sym_comment, - ACTIONS(10831), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [206578] = 5, + ACTIONS(8398), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [206639] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7672), 1, + ACTIONS(7965), 1, anon_sym_LBRACE, - STATE(1644), 1, - sym_class_body, - STATE(6980), 1, + STATE(5938), 1, + sym_statement_block, + STATE(6835), 1, sym_comment, - [206594] = 5, + [206655] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(5742), 1, - sym__from_clause, - STATE(6981), 1, + STATE(6836), 1, sym_comment, - [206610] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3462), 2, + anon_sym_else, + anon_sym_while, + [206669] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10833), 1, - sym_identifier, - ACTIONS(10835), 1, - sym_private_property_identifier, - STATE(6982), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8755), 1, + anon_sym_LBRACE, + STATE(438), 1, + sym_statement_block, + STATE(6837), 1, sym_comment, - [206626] = 4, + [206685] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6983), 1, + STATE(6838), 1, sym_comment, - ACTIONS(3394), 2, + ACTIONS(3464), 2, anon_sym_else, anon_sym_while, - [206640] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10837), 1, - sym_identifier, - ACTIONS(10839), 1, - sym_private_property_identifier, - STATE(6984), 1, - sym_comment, - [206656] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(6985), 1, - sym_comment, - ACTIONS(10841), 2, - sym__glimmer_template_content, - anon_sym_LT_SLASHtemplate_GT, - [206670] = 4, + [206699] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6986), 1, + STATE(6839), 1, sym_comment, - ACTIONS(3396), 2, + ACTIONS(2127), 2, anon_sym_else, anon_sym_while, - [206684] = 4, + [206713] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6987), 1, + ACTIONS(10400), 1, + anon_sym_LPAREN, + STATE(6730), 1, + sym_parenthesized_expression, + STATE(6840), 1, sym_comment, - ACTIONS(3398), 2, - anon_sym_else, - anon_sym_while, - [206698] = 4, + [206729] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6988), 1, + STATE(6841), 1, sym_comment, - ACTIONS(3526), 2, + ACTIONS(3548), 2, anon_sym_else, anon_sym_while, - [206712] = 4, + [206743] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6989), 1, + ACTIONS(8826), 1, + anon_sym_DOT, + ACTIONS(10838), 1, + anon_sym_GT, + STATE(6842), 1, sym_comment, - ACTIONS(7470), 2, - anon_sym_in, - anon_sym_of, - [206726] = 5, + [206759] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10843), 1, - anon_sym_SEMI, - ACTIONS(10845), 1, - sym__automatic_semicolon, - STATE(6990), 1, + STATE(6843), 1, sym_comment, - [206742] = 4, + ACTIONS(3562), 2, + anon_sym_else, + anon_sym_while, + [206773] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6991), 1, + STATE(6844), 1, sym_comment, - ACTIONS(3400), 2, + ACTIONS(3564), 2, anon_sym_else, anon_sym_while, - [206756] = 4, + [206787] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6992), 1, + STATE(6845), 1, sym_comment, - ACTIONS(3402), 2, + ACTIONS(3472), 2, anon_sym_else, anon_sym_while, - [206770] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [206801] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10847), 1, - sym_identifier, - ACTIONS(10849), 1, - sym_private_property_identifier, - STATE(6993), 1, - sym_comment, - [206786] = 5, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10851), 1, - sym_identifier, - ACTIONS(10853), 1, - sym_private_property_identifier, - STATE(6994), 1, + ACTIONS(9611), 1, + anon_sym_COLON, + ACTIONS(10004), 1, + anon_sym_GT, + STATE(6846), 1, sym_comment, - [206802] = 4, + [206817] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6995), 1, + ACTIONS(7965), 1, + anon_sym_LBRACE, + STATE(5296), 1, + sym_statement_block, + STATE(6847), 1, sym_comment, - ACTIONS(6735), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [206816] = 4, + [206833] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6996), 1, + STATE(6848), 1, sym_comment, - ACTIONS(10855), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [206830] = 4, + ACTIONS(3566), 2, + anon_sym_else, + anon_sym_while, + [206847] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(6997), 1, + STATE(6849), 1, sym_comment, - ACTIONS(3404), 2, + ACTIONS(3444), 2, anon_sym_else, anon_sym_while, - [206844] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9943), 1, - sym_identifier, - ACTIONS(9947), 1, - sym_private_property_identifier, - STATE(6998), 1, - sym_comment, - [206860] = 5, + [206861] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10807), 1, + ACTIONS(10840), 1, anon_sym_LBRACE, - STATE(5547), 1, + STATE(5241), 1, sym_enum_body, - STATE(6999), 1, - sym_comment, - [206876] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10857), 1, - sym_identifier, - ACTIONS(10859), 1, - sym_private_property_identifier, - STATE(7000), 1, + STATE(6850), 1, sym_comment, - [206892] = 5, + [206877] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10439), 1, - anon_sym_LBRACE, - STATE(1566), 1, - sym_enum_body, - STATE(7001), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(5605), 1, + sym__from_clause, + STATE(6851), 1, sym_comment, - [206908] = 5, + [206893] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7674), 1, + ACTIONS(7553), 1, anon_sym_LBRACE, - STATE(3416), 1, + STATE(3300), 1, sym_class_body, - STATE(7002), 1, + STATE(6852), 1, sym_comment, - [206924] = 5, + [206909] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8706), 1, - anon_sym_LBRACE, - STATE(443), 1, - sym_statement_block, - STATE(7003), 1, + ACTIONS(10842), 1, + anon_sym_SEMI, + ACTIONS(10844), 1, + sym__automatic_semicolon, + STATE(6853), 1, sym_comment, - [206940] = 5, + [206925] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10629), 1, - anon_sym_LBRACE, - STATE(1568), 1, - sym_statement_block, - STATE(7004), 1, + ACTIONS(5394), 1, + anon_sym_LPAREN, + STATE(3036), 1, + sym_arguments, + STATE(6854), 1, sym_comment, - [206956] = 4, + [206941] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7005), 1, + STATE(6855), 1, sym_comment, - ACTIONS(3406), 2, + ACTIONS(3568), 2, anon_sym_else, anon_sym_while, - [206970] = 5, + [206955] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(5642), 1, - sym__from_clause, - STATE(7006), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(5182), 1, + sym_formal_parameters, + STATE(6856), 1, sym_comment, - [206986] = 4, + [206971] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7007), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(6857), 1, sym_comment, - ACTIONS(3408), 2, - anon_sym_else, - anon_sym_while, - [207000] = 5, + STATE(7086), 1, + sym_formal_parameters, + [206987] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7674), 1, - anon_sym_LBRACE, - STATE(3422), 1, - sym_class_body, - STATE(7008), 1, + ACTIONS(9027), 1, + anon_sym_in, + ACTIONS(9029), 1, + anon_sym_of, + STATE(6858), 1, sym_comment, - [207016] = 5, + [207003] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - STATE(7009), 1, + STATE(6859), 1, sym_comment, - STATE(7612), 1, - sym_formal_parameters, - [207032] = 4, + ACTIONS(10846), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207017] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7010), 1, + STATE(6860), 1, sym_comment, - ACTIONS(3410), 2, + ACTIONS(3510), 2, anon_sym_else, anon_sym_while, - [207046] = 5, + [207031] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + STATE(6861), 1, + sym_comment, + ACTIONS(6764), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207045] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7940), 1, + ACTIONS(8049), 1, anon_sym_LBRACE, - STATE(5543), 1, + STATE(6748), 1, sym_statement_block, - STATE(7011), 1, + STATE(6862), 1, sym_comment, - [207062] = 5, + [207061] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(6664), 1, - sym__from_clause, - STATE(7012), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(6863), 1, sym_comment, - [207078] = 5, + STATE(7049), 1, + sym_formal_parameters, + [207077] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4839), 1, + ACTIONS(9896), 1, anon_sym_LBRACE, - STATE(3330), 1, + STATE(1058), 1, sym_statement_block, - STATE(7013), 1, + STATE(6864), 1, sym_comment, - [207094] = 5, + [207093] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7696), 1, + ACTIONS(7617), 1, anon_sym_LBRACE, - STATE(6742), 1, + STATE(5269), 1, sym_class_body, - STATE(7014), 1, + STATE(6865), 1, sym_comment, - [207110] = 4, + [207109] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7015), 1, + ACTIONS(7965), 1, + anon_sym_LBRACE, + STATE(5200), 1, + sym_statement_block, + STATE(6866), 1, sym_comment, - ACTIONS(3470), 2, - anon_sym_else, - anon_sym_while, - [207124] = 4, + [207125] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7016), 1, + ACTIONS(7617), 1, + anon_sym_LBRACE, + STATE(5281), 1, + sym_class_body, + STATE(6867), 1, sym_comment, - ACTIONS(3370), 2, - anon_sym_else, - anon_sym_while, - [207138] = 5, + [207141] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(7735), 1, anon_sym_LBRACE, - STATE(3527), 1, - sym_statement_block, - STATE(7017), 1, + STATE(353), 1, + sym_class_body, + STATE(6868), 1, sym_comment, - [207154] = 5, + [207157] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(7649), 1, anon_sym_LBRACE, - STATE(3530), 1, - sym_statement_block, - STATE(7018), 1, + STATE(458), 1, + sym_class_body, + STATE(6869), 1, sym_comment, - [207170] = 5, + [207173] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7544), 1, + ACTIONS(7617), 1, anon_sym_LBRACE, - STATE(3284), 1, + STATE(5359), 1, sym_class_body, - STATE(7019), 1, + STATE(6870), 1, sym_comment, - [207186] = 4, + [207189] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7020), 1, + STATE(6871), 1, sym_comment, - ACTIONS(3370), 2, + ACTIONS(3512), 2, anon_sym_else, anon_sym_while, - [207200] = 5, + [207203] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7696), 1, - anon_sym_LBRACE, - STATE(6721), 1, - sym_class_body, - STATE(7021), 1, + STATE(6872), 1, sym_comment, - [207216] = 5, + ACTIONS(3574), 2, + anon_sym_else, + anon_sym_while, + [207217] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7940), 1, + ACTIONS(8909), 1, anon_sym_LBRACE, - STATE(5894), 1, + STATE(354), 1, sym_statement_block, - STATE(7022), 1, + STATE(6873), 1, sym_comment, - [207232] = 4, + [207233] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7023), 1, + STATE(6874), 1, sym_comment, - ACTIONS(3488), 2, - anon_sym_else, - anon_sym_while, - [207246] = 4, + ACTIONS(5634), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207247] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(7024), 1, + ACTIONS(10848), 1, + sym_identifier, + STATE(5987), 1, + sym_nested_identifier, + STATE(6875), 1, sym_comment, - ACTIONS(2205), 2, - anon_sym_else, - anon_sym_while, - [207260] = 5, + [207263] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10861), 1, - anon_sym_COMMA, - ACTIONS(10863), 1, - anon_sym_from, - STATE(7025), 1, + STATE(6876), 1, sym_comment, - [207276] = 4, + ACTIONS(10850), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207277] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7026), 1, + STATE(6877), 1, sym_comment, - ACTIONS(3486), 2, + ACTIONS(2147), 2, anon_sym_else, anon_sym_while, - [207290] = 4, + [207291] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7027), 1, + ACTIONS(7605), 1, + anon_sym_LBRACE, + STATE(1498), 1, + sym_class_body, + STATE(6878), 1, sym_comment, - ACTIONS(3484), 2, - anon_sym_else, - anon_sym_while, - [207304] = 5, + [207307] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10391), 1, - anon_sym_LPAREN, - STATE(6701), 1, - sym_parenthesized_expression, - STATE(7028), 1, + ACTIONS(10852), 1, + sym_identifier, + ACTIONS(10854), 1, + sym_private_property_identifier, + STATE(6879), 1, sym_comment, - [207320] = 4, + [207323] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7029), 1, + STATE(6880), 1, sym_comment, - ACTIONS(3370), 2, + ACTIONS(3516), 2, anon_sym_else, anon_sym_while, - [207334] = 4, + [207337] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(7030), 1, + ACTIONS(10856), 1, + sym_identifier, + ACTIONS(10858), 1, + sym_private_property_identifier, + STATE(6881), 1, sym_comment, - ACTIONS(3482), 2, - anon_sym_else, - anon_sym_while, - [207348] = 5, + [207353] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(10860), 1, + sym_identifier, + ACTIONS(10862), 1, + sym_private_property_identifier, + STATE(6882), 1, + sym_comment, + [207369] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9622), 1, - anon_sym_LBRACE, - STATE(1128), 1, - sym_statement_block, - STATE(7031), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10864), 1, + sym_identifier, + ACTIONS(10866), 1, + sym_private_property_identifier, + STATE(6883), 1, sym_comment, - [207364] = 4, + [207385] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7032), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(6884), 1, sym_comment, - ACTIONS(3480), 2, - anon_sym_else, - anon_sym_while, - [207378] = 4, + STATE(7026), 1, + sym_formal_parameters, + [207401] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7033), 1, + STATE(6885), 1, sym_comment, - ACTIONS(10865), 2, + ACTIONS(10868), 2, anon_sym_COMMA, - anon_sym_GT, - [207392] = 4, + anon_sym_RBRACE, + [207415] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7034), 1, + STATE(6886), 1, sym_comment, - ACTIONS(3480), 2, - anon_sym_else, - anon_sym_while, - [207406] = 4, + ACTIONS(10870), 2, + anon_sym_COMMA, + anon_sym_GT, + [207429] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7035), 1, + ACTIONS(10872), 1, + anon_sym_SEMI, + ACTIONS(10874), 1, + sym__automatic_semicolon, + STATE(6887), 1, sym_comment, - ACTIONS(3370), 2, - anon_sym_else, - anon_sym_while, - [207420] = 5, + [207445] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(7617), 1, anon_sym_LBRACE, - STATE(3559), 1, - sym_statement_block, - STATE(7036), 1, + STATE(5335), 1, + sym_class_body, + STATE(6888), 1, sym_comment, - [207436] = 4, + [207461] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7037), 1, + STATE(6889), 1, sym_comment, - ACTIONS(3370), 2, + ACTIONS(3524), 2, anon_sym_else, anon_sym_while, - [207450] = 4, + [207475] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7038), 1, + STATE(6890), 1, sym_comment, - ACTIONS(3478), 2, + ACTIONS(3526), 2, anon_sym_else, anon_sym_while, - [207464] = 4, + [207489] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7039), 1, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(99), 1, + sym_parenthesized_expression, + STATE(6891), 1, sym_comment, - ACTIONS(3476), 2, - anon_sym_else, - anon_sym_while, - [207478] = 4, + [207505] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7040), 1, + ACTIONS(10400), 1, + anon_sym_LPAREN, + STATE(6709), 1, + sym_parenthesized_expression, + STATE(6892), 1, sym_comment, - ACTIONS(3370), 2, - anon_sym_else, - anon_sym_while, - [207492] = 5, + [207521] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7682), 1, + ACTIONS(7965), 1, anon_sym_LBRACE, - STATE(5892), 1, - sym_class_body, - STATE(7041), 1, + STATE(5212), 1, + sym_statement_block, + STATE(6893), 1, sym_comment, - [207508] = 4, + [207537] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7042), 1, + STATE(6894), 1, sym_comment, - ACTIONS(3474), 2, + ACTIONS(3526), 2, anon_sym_else, anon_sym_while, - [207522] = 5, + [207551] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(7617), 1, anon_sym_LBRACE, - STATE(3539), 1, - sym_statement_block, - STATE(7043), 1, + STATE(5326), 1, + sym_class_body, + STATE(6895), 1, + sym_comment, + [207567] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10876), 1, + anon_sym_SEMI, + ACTIONS(10878), 1, + sym__automatic_semicolon, + STATE(6896), 1, sym_comment, - [207538] = 5, + [207583] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(10880), 1, + anon_sym_SEMI, + ACTIONS(10882), 1, + sym__automatic_semicolon, + STATE(6897), 1, + sym_comment, + [207599] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(5477), 1, + sym__from_clause, + STATE(6898), 1, + sym_comment, + [207615] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3548), 1, + STATE(3375), 1, sym_statement_block, - STATE(7044), 1, + STATE(6899), 1, sym_comment, - [207554] = 4, + [207631] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7045), 1, + ACTIONS(7735), 1, + anon_sym_LBRACE, + STATE(420), 1, + sym_class_body, + STATE(6900), 1, sym_comment, - ACTIONS(3370), 2, - anon_sym_else, - anon_sym_while, - [207568] = 5, + [207647] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5310), 1, + ACTIONS(10884), 1, anon_sym_LBRACE, - STATE(2553), 1, + STATE(883), 1, sym_statement_block, - STATE(7046), 1, + STATE(6901), 1, sym_comment, - [207584] = 4, + [207663] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7047), 1, + STATE(6902), 1, sym_comment, - ACTIONS(3370), 2, + ACTIONS(3528), 2, anon_sym_else, anon_sym_while, - [207598] = 4, + [207677] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7048), 1, + STATE(6903), 1, sym_comment, - ACTIONS(5691), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207612] = 5, + ACTIONS(6701), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207691] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7674), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(2552), 1, - sym_class_body, - STATE(7049), 1, + STATE(3377), 1, + sym_statement_block, + STATE(6904), 1, sym_comment, - [207628] = 4, + [207707] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7050), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(6375), 1, + sym__from_clause, + STATE(6905), 1, sym_comment, - ACTIONS(5693), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207642] = 4, + [207723] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7051), 1, + STATE(6906), 1, sym_comment, - ACTIONS(3370), 2, - anon_sym_else, - anon_sym_while, - [207656] = 4, + ACTIONS(6741), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207737] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7052), 1, + STATE(6907), 1, sym_comment, - ACTIONS(3370), 2, - anon_sym_else, - anon_sym_while, - [207670] = 4, + ACTIONS(10886), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207751] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7053), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(6514), 1, + sym_statement_block, + STATE(6908), 1, sym_comment, - ACTIONS(3370), 2, - anon_sym_else, - anon_sym_while, - [207684] = 4, + [207767] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(7054), 1, + STATE(6909), 1, sym_comment, - ACTIONS(10867), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [207698] = 4, + ACTIONS(4038), 2, + sym_jsx_identifier, + sym_identifier, + [207781] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7055), 1, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(92), 1, + sym_parenthesized_expression, + STATE(6910), 1, sym_comment, - ACTIONS(3370), 2, - anon_sym_else, - anon_sym_while, - [207712] = 4, + [207797] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7056), 1, + STATE(6911), 1, sym_comment, - ACTIONS(10869), 2, + ACTIONS(10888), 2, sym__automatic_semicolon, anon_sym_SEMI, - [207726] = 4, + [207811] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7057), 1, + ACTIONS(8786), 1, + anon_sym_LBRACE, + STATE(1186), 1, + sym_statement_block, + STATE(6912), 1, sym_comment, - ACTIONS(3370), 2, - anon_sym_else, - anon_sym_while, - [207740] = 5, + [207827] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(5883), 1, - sym_statement_block, - STATE(7058), 1, + STATE(6913), 1, sym_comment, - [207756] = 4, + ACTIONS(9331), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207841] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7059), 1, + STATE(6914), 1, sym_comment, - ACTIONS(3370), 2, + ACTIONS(3544), 2, anon_sym_else, anon_sym_while, - [207770] = 5, + [207855] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - STATE(7060), 1, + ACTIONS(7543), 1, + anon_sym_LBRACE, + STATE(1185), 1, + sym_class_body, + STATE(6915), 1, sym_comment, - STATE(7411), 1, - sym_formal_parameters, - [207786] = 4, + [207871] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7061), 1, + STATE(6916), 1, sym_comment, - ACTIONS(3370), 2, + ACTIONS(3546), 2, anon_sym_else, anon_sym_while, - [207800] = 5, + [207885] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10489), 1, - anon_sym_LPAREN, - STATE(114), 1, - sym__for_header, - STATE(7062), 1, + ACTIONS(7617), 1, + anon_sym_LBRACE, + STATE(5260), 1, + sym_class_body, + STATE(6917), 1, sym_comment, - [207816] = 5, + [207901] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10871), 1, - anon_sym_LBRACE, - STATE(1539), 1, - sym_switch_body, - STATE(7063), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(5515), 1, + sym__from_clause, + STATE(6918), 1, sym_comment, - [207832] = 4, + [207917] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7064), 1, + STATE(6919), 1, sym_comment, - ACTIONS(3370), 2, + ACTIONS(3522), 2, anon_sym_else, anon_sym_while, - [207846] = 4, + [207931] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7065), 1, + STATE(6920), 1, sym_comment, - ACTIONS(3470), 2, - anon_sym_else, - anon_sym_while, - [207860] = 4, + ACTIONS(6705), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207945] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7066), 1, + ACTIONS(4849), 1, + anon_sym_LBRACE, + STATE(2972), 1, + sym_statement_block, + STATE(6921), 1, sym_comment, - ACTIONS(3470), 2, - anon_sym_else, - anon_sym_while, - [207874] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [207961] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9863), 1, - sym_identifier, - ACTIONS(9867), 1, - sym_private_property_identifier, - STATE(7067), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(5607), 1, + sym__from_clause, + STATE(6922), 1, sym_comment, - [207890] = 5, + [207977] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - STATE(7068), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3374), 1, + sym_statement_block, + STATE(6923), 1, sym_comment, - STATE(7379), 1, - sym_formal_parameters, - [207906] = 4, + [207993] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7069), 1, + ACTIONS(8909), 1, + anon_sym_LBRACE, + STATE(386), 1, + sym_statement_block, + STATE(6924), 1, sym_comment, - ACTIONS(3370), 2, - anon_sym_else, - anon_sym_while, - [207920] = 4, + [208009] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7070), 1, + ACTIONS(4849), 1, + anon_sym_LBRACE, + STATE(2968), 1, + sym_statement_block, + STATE(6925), 1, sym_comment, - ACTIONS(3470), 2, - anon_sym_else, - anon_sym_while, - [207934] = 4, + [208025] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7071), 1, + ACTIONS(10890), 1, + anon_sym_LBRACE, + STATE(6759), 1, + sym_object, + STATE(6926), 1, sym_comment, - ACTIONS(3370), 2, - anon_sym_else, - anon_sym_while, - [207948] = 4, + [208041] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7072), 1, + ACTIONS(9121), 1, + anon_sym_from, + STATE(6896), 1, + sym__from_clause, + STATE(6927), 1, sym_comment, - ACTIONS(3470), 2, - anon_sym_else, - anon_sym_while, - [207962] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [208057] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10873), 1, - sym_identifier, - STATE(6170), 1, - sym_nested_identifier, - STATE(7073), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(6928), 1, sym_comment, - [207978] = 5, + STATE(7353), 1, + sym_formal_parameters, + [208073] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10383), 1, - anon_sym_LPAREN, - STATE(88), 1, - sym_parenthesized_expression, - STATE(7074), 1, + STATE(6929), 1, sym_comment, - [207994] = 5, + ACTIONS(6741), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [208087] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10391), 1, + ACTIONS(10396), 1, anon_sym_LPAREN, - STATE(6604), 1, + STATE(111), 1, sym_parenthesized_expression, - STATE(7075), 1, + STATE(6930), 1, sym_comment, - [208010] = 4, + [208103] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7076), 1, + STATE(6931), 1, sym_comment, - ACTIONS(3470), 2, - anon_sym_else, - anon_sym_while, - [208024] = 4, + ACTIONS(10892), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208117] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(7077), 1, + ACTIONS(10894), 1, + sym_identifier, + STATE(5696), 1, + sym_nested_identifier, + STATE(6932), 1, sym_comment, - ACTIONS(3370), 2, - anon_sym_else, - anon_sym_while, - [208038] = 5, + [208133] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - STATE(7078), 1, + ACTIONS(10536), 1, + anon_sym_LBRACE, + STATE(1349), 1, + sym_statement_block, + STATE(6933), 1, sym_comment, - STATE(7356), 1, - sym_formal_parameters, - [208054] = 5, + [208149] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10875), 1, - anon_sym_LBRACE, - STATE(1604), 1, - sym_switch_body, - STATE(7079), 1, + ACTIONS(10840), 1, + anon_sym_LBRACE, + STATE(4880), 1, + sym_enum_body, + STATE(6934), 1, sym_comment, - [208070] = 5, + [208165] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10489), 1, - anon_sym_LPAREN, - STATE(120), 1, - sym__for_header, - STATE(7080), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3381), 1, + sym_statement_block, + STATE(6935), 1, sym_comment, - [208086] = 5, + [208181] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(5572), 1, - sym__from_clause, - STATE(7081), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3406), 1, + sym_statement_block, + STATE(6936), 1, sym_comment, - [208102] = 4, + [208197] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7082), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(6937), 1, sym_comment, - ACTIONS(3412), 2, - anon_sym_else, - anon_sym_while, - [208116] = 4, + STATE(7291), 1, + sym_formal_parameters, + [208213] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7083), 1, + ACTIONS(7735), 1, + anon_sym_LBRACE, + STATE(417), 1, + sym_class_body, + STATE(6938), 1, sym_comment, - ACTIONS(10877), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [208130] = 4, + [208229] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7084), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(6763), 1, + sym_statement_block, + STATE(6939), 1, sym_comment, - ACTIONS(10879), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [208144] = 5, + [208245] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4226), 1, - anon_sym_COLON, - STATE(6524), 1, - sym_type_annotation, - STATE(7085), 1, + ACTIONS(10896), 1, + anon_sym_SEMI, + ACTIONS(10898), 1, + sym__automatic_semicolon, + STATE(6940), 1, sym_comment, - [208160] = 5, + [208261] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7584), 1, - anon_sym_LBRACE, - STATE(459), 1, - sym_class_body, - STATE(7086), 1, + STATE(6941), 1, sym_comment, - [208176] = 4, + ACTIONS(10900), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208275] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7087), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(6942), 1, sym_comment, - ACTIONS(3470), 2, - anon_sym_else, - anon_sym_while, - [208190] = 5, + STATE(7248), 1, + sym_formal_parameters, + [208291] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(6521), 1, - sym__from_clause, - STATE(7088), 1, + ACTIONS(7589), 1, + anon_sym_LBRACE, + STATE(2966), 1, + sym_class_body, + STATE(6943), 1, sym_comment, - [208206] = 4, + [208307] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7089), 1, + ACTIONS(10902), 1, + anon_sym_LPAREN, + STATE(1143), 1, + sym_parenthesized_expression, + STATE(6944), 1, sym_comment, - ACTIONS(3414), 2, - anon_sym_else, - anon_sym_while, - [208220] = 4, + [208323] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7090), 1, + STATE(6945), 1, sym_comment, - ACTIONS(3416), 2, - anon_sym_else, - anon_sym_while, - [208234] = 5, + ACTIONS(9549), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208337] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(5779), 1, - sym__from_clause, - STATE(7091), 1, + ACTIONS(7193), 1, + anon_sym_LPAREN, + STATE(6946), 1, sym_comment, - [208250] = 4, + STATE(7272), 1, + sym_formal_parameters, + [208353] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7092), 1, + STATE(6947), 1, sym_comment, - ACTIONS(5695), 2, + ACTIONS(10904), 2, sym__automatic_semicolon, anon_sym_SEMI, - [208264] = 4, + [208367] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7093), 1, + ACTIONS(10400), 1, + anon_sym_LPAREN, + STATE(6777), 1, + sym_parenthesized_expression, + STATE(6948), 1, sym_comment, - ACTIONS(3470), 2, - anon_sym_else, - anon_sym_while, - [208278] = 4, + [208383] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7094), 1, + ACTIONS(10396), 1, + anon_sym_LPAREN, + STATE(108), 1, + sym_parenthesized_expression, + STATE(6949), 1, sym_comment, - ACTIONS(3470), 2, - anon_sym_else, - anon_sym_while, - [208292] = 4, + [208399] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7095), 1, + STATE(6950), 1, sym_comment, - ACTIONS(3418), 2, + ACTIONS(3576), 2, anon_sym_else, anon_sym_while, - [208306] = 4, + [208413] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7096), 1, + ACTIONS(10718), 1, + anon_sym_LBRACE, + STATE(1221), 1, + sym_statement_block, + STATE(6951), 1, sym_comment, - ACTIONS(3470), 2, - anon_sym_else, - anon_sym_while, - [208320] = 5, + [208429] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(5564), 1, - sym__from_clause, - STATE(7097), 1, + ACTIONS(7735), 1, + anon_sym_LBRACE, + STATE(387), 1, + sym_class_body, + STATE(6952), 1, sym_comment, - [208336] = 5, + [208445] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(4839), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(3173), 1, + STATE(3404), 1, sym_statement_block, - STATE(7098), 1, + STATE(6953), 1, sym_comment, - [208352] = 4, + [208461] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7099), 1, + STATE(6954), 1, sym_comment, - ACTIONS(3420), 2, + ACTIONS(3578), 2, anon_sym_else, anon_sym_while, - [208366] = 4, + [208475] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7100), 1, + STATE(6955), 1, sym_comment, - ACTIONS(3470), 2, + ACTIONS(3522), 2, anon_sym_else, anon_sym_while, - [208380] = 4, + [208489] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7101), 1, + STATE(6956), 1, sym_comment, - ACTIONS(3470), 2, + ACTIONS(3550), 2, anon_sym_else, anon_sym_while, - [208394] = 4, + [208503] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7102), 1, + STATE(6957), 1, sym_comment, - ACTIONS(3422), 2, + ACTIONS(3522), 2, anon_sym_else, anon_sym_while, - [208408] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(6971), 1, - sym__from_clause, - STATE(7103), 1, - sym_comment, - [208424] = 5, + [208517] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7216), 1, - anon_sym_LPAREN, - STATE(4627), 1, - sym_formal_parameters, - STATE(7104), 1, + STATE(6958), 1, sym_comment, - [208440] = 5, + ACTIONS(3552), 2, + anon_sym_else, + anon_sym_while, + [208531] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9116), 1, - anon_sym_from, - STATE(5699), 1, - sym__from_clause, - STATE(7105), 1, + ACTIONS(7649), 1, + anon_sym_LBRACE, + STATE(437), 1, + sym_class_body, + STATE(6959), 1, sym_comment, - [208456] = 5, + [208547] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7696), 1, + ACTIONS(7617), 1, anon_sym_LBRACE, - STATE(6661), 1, + STATE(5088), 1, sym_class_body, - STATE(7106), 1, + STATE(6960), 1, sym_comment, - [208472] = 4, + [208563] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7107), 1, + STATE(6961), 1, sym_comment, - ACTIONS(3470), 2, - anon_sym_else, - anon_sym_while, - [208486] = 5, + ACTIONS(10906), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208577] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, - anon_sym_LBRACE, - STATE(6618), 1, - sym_statement_block, - STATE(7108), 1, + ACTIONS(10908), 1, + anon_sym_SEMI, + ACTIONS(10910), 1, + sym__automatic_semicolon, + STATE(6962), 1, sym_comment, - [208502] = 5, + [208593] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3551), 1, - sym_statement_block, - STATE(7109), 1, + ACTIONS(7171), 1, + anon_sym_COLON, + STATE(6126), 1, + sym_type_annotation, + STATE(6963), 1, sym_comment, - [208518] = 5, + [208609] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7544), 1, - anon_sym_LBRACE, - STATE(3310), 1, - sym_class_body, - STATE(7110), 1, + ACTIONS(10912), 1, + anon_sym_LPAREN, + STATE(1204), 1, + sym_parenthesized_expression, + STATE(6964), 1, sym_comment, - [208534] = 5, + [208625] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - STATE(7111), 1, + STATE(6965), 1, sym_comment, - STATE(7442), 1, - sym_formal_parameters, - [208550] = 5, + ACTIONS(3522), 2, + anon_sym_else, + anon_sym_while, + [208639] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3562), 1, - sym_statement_block, - STATE(7112), 1, + STATE(6966), 1, sym_comment, - [208566] = 4, + ACTIONS(6705), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [208653] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7113), 1, + ACTIONS(8826), 1, + anon_sym_DOT, + ACTIONS(10914), 1, + anon_sym_GT, + STATE(6967), 1, sym_comment, - ACTIONS(3424), 2, - anon_sym_else, - anon_sym_while, - [208580] = 4, + [208669] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7114), 1, + STATE(6968), 1, sym_comment, - ACTIONS(3470), 2, + ACTIONS(3556), 2, anon_sym_else, anon_sym_while, - [208594] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [208683] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10881), 1, - sym_identifier, - STATE(5879), 1, - sym_nested_identifier, - STATE(7115), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9611), 1, + anon_sym_COLON, + ACTIONS(9924), 1, + anon_sym_GT, + STATE(6969), 1, sym_comment, - [208610] = 4, + [208699] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7116), 1, + STATE(6970), 1, sym_comment, - ACTIONS(3426), 2, + ACTIONS(3530), 2, anon_sym_else, anon_sym_while, - [208624] = 4, + [208713] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7117), 1, + ACTIONS(8049), 1, + anon_sym_LBRACE, + STATE(6768), 1, + sym_statement_block, + STATE(6971), 1, sym_comment, - ACTIONS(3428), 2, - anon_sym_else, - anon_sym_while, - [208638] = 4, + [208729] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7118), 1, + STATE(6972), 1, sym_comment, - ACTIONS(3470), 2, - anon_sym_else, - anon_sym_while, - [208652] = 5, + ACTIONS(9920), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [208743] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(10720), 1, anon_sym_LBRACE, - STATE(3544), 1, + STATE(1548), 1, sym_statement_block, - STATE(7119), 1, + STATE(6973), 1, sym_comment, - [208668] = 5, + [208759] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - STATE(7120), 1, + ACTIONS(4849), 1, + anon_sym_LBRACE, + STATE(2933), 1, + sym_statement_block, + STATE(6974), 1, sym_comment, - STATE(7349), 1, - sym_formal_parameters, - [208684] = 5, + [208775] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7978), 1, + ACTIONS(8049), 1, anon_sym_LBRACE, - STATE(5865), 1, + STATE(6799), 1, sym_statement_block, - STATE(7121), 1, + STATE(6975), 1, sym_comment, - [208700] = 4, + [208791] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7122), 1, + ACTIONS(7589), 1, + anon_sym_LBRACE, + STATE(2932), 1, + sym_class_body, + STATE(6976), 1, sym_comment, - ACTIONS(3430), 2, - anon_sym_else, - anon_sym_while, - [208714] = 4, + [208807] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7123), 1, + STATE(6977), 1, sym_comment, - ACTIONS(3438), 2, + ACTIONS(3558), 2, anon_sym_else, anon_sym_while, - [208728] = 4, + [208821] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7124), 1, + STATE(6978), 1, sym_comment, - ACTIONS(3470), 2, + ACTIONS(3534), 2, anon_sym_else, anon_sym_while, - [208742] = 5, + [208835] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7160), 1, - anon_sym_LPAREN, - STATE(7125), 1, + STATE(6979), 1, sym_comment, - STATE(7275), 1, - sym_formal_parameters, - [208758] = 4, + ACTIONS(10916), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [208849] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7126), 1, + STATE(6980), 1, sym_comment, - ACTIONS(3438), 2, + ACTIONS(3522), 2, anon_sym_else, anon_sym_while, - [208772] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10391), 1, - anon_sym_LPAREN, - STATE(7063), 1, - sym_parenthesized_expression, - STATE(7127), 1, - sym_comment, - [208788] = 4, + [208863] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7128), 1, + STATE(6981), 1, sym_comment, - ACTIONS(3444), 2, + ACTIONS(3522), 2, anon_sym_else, anon_sym_while, - [208802] = 4, + [208877] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7129), 1, + STATE(6982), 1, sym_comment, - ACTIONS(3446), 2, + ACTIONS(3580), 2, anon_sym_else, anon_sym_while, - [208816] = 4, + [208891] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7130), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3414), 1, + sym_statement_block, + STATE(6983), 1, sym_comment, - ACTIONS(10883), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208830] = 4, + [208907] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7131), 1, + STATE(6984), 1, sym_comment, - ACTIONS(3438), 2, + ACTIONS(3560), 2, anon_sym_else, anon_sym_while, - [208844] = 4, + [208921] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7132), 1, + STATE(6985), 1, sym_comment, - ACTIONS(3470), 2, + ACTIONS(3584), 2, anon_sym_else, anon_sym_while, - [208858] = 4, + [208935] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7133), 1, - sym_comment, - ACTIONS(3438), 2, - anon_sym_else, - anon_sym_while, - [208872] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10885), 1, - sym_identifier, - ACTIONS(10887), 1, - sym_private_property_identifier, - STATE(7134), 1, + ACTIONS(10730), 1, + anon_sym_LBRACE, + STATE(1464), 1, + sym_enum_body, + STATE(6986), 1, sym_comment, - [208888] = 4, + [208951] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7135), 1, + ACTIONS(8240), 1, + anon_sym_LBRACE, + STATE(3362), 1, + sym_statement_block, + STATE(6987), 1, sym_comment, - ACTIONS(3438), 2, - anon_sym_else, - anon_sym_while, - [208902] = 5, + [208967] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7646), 1, + ACTIONS(8240), 1, anon_sym_LBRACE, - STATE(1551), 1, - sym_class_body, - STATE(7136), 1, + STATE(3405), 1, + sym_statement_block, + STATE(6988), 1, sym_comment, - [208918] = 4, + [208983] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7137), 1, + STATE(6989), 1, sym_comment, - ACTIONS(3470), 2, + ACTIONS(3582), 2, anon_sym_else, anon_sym_while, - [208932] = 4, + [208997] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(7138), 1, + ACTIONS(10918), 1, + sym_regex_pattern, + STATE(6990), 1, sym_comment, - ACTIONS(3438), 2, - anon_sym_else, - anon_sym_while, - [208946] = 4, + [209010] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7139), 1, + ACTIONS(10920), 1, + anon_sym_EQ_GT, + STATE(6991), 1, sym_comment, - ACTIONS(3470), 2, - anon_sym_else, - anon_sym_while, - [208960] = 5, + [209023] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3547), 1, - sym_statement_block, - STATE(7140), 1, + ACTIONS(10922), 1, + anon_sym_EQ_GT, + STATE(6992), 1, sym_comment, - [208976] = 5, + [209036] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7544), 1, - anon_sym_LBRACE, - STATE(3163), 1, - sym_class_body, - STATE(7141), 1, + ACTIONS(10924), 1, + sym_identifier, + STATE(6993), 1, sym_comment, - [208992] = 4, + [209049] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7142), 1, + ACTIONS(10926), 1, + anon_sym_EQ_GT, + STATE(6994), 1, sym_comment, - ACTIONS(3452), 2, - anon_sym_else, - anon_sym_while, - [209006] = 5, + [209062] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3554), 1, - sym_statement_block, - STATE(7143), 1, + ACTIONS(10928), 1, + anon_sym_EQ_GT, + STATE(6995), 1, sym_comment, - [209022] = 4, + [209075] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7144), 1, + ACTIONS(10930), 1, + anon_sym_EQ_GT, + STATE(6996), 1, sym_comment, - ACTIONS(3454), 2, - anon_sym_else, - anon_sym_while, - [209036] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209088] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10889), 1, - sym_identifier, - ACTIONS(10891), 1, - sym_private_property_identifier, - STATE(7145), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10932), 1, + anon_sym_RPAREN, + STATE(6997), 1, sym_comment, - [209052] = 4, + [209101] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7146), 1, + ACTIONS(9924), 1, + anon_sym_GT, + STATE(6998), 1, sym_comment, - ACTIONS(3470), 2, - anon_sym_else, - anon_sym_while, - [209066] = 4, + [209114] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7147), 1, + ACTIONS(10934), 1, + anon_sym_symbol, + STATE(6999), 1, sym_comment, - ACTIONS(3468), 2, - anon_sym_else, - anon_sym_while, - [209080] = 4, + [209127] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7148), 1, + ACTIONS(10936), 1, + sym_number, + STATE(7000), 1, sym_comment, - ACTIONS(10893), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [209094] = 5, + [209140] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10895), 1, - anon_sym_LBRACE, - STATE(889), 1, - sym_statement_block, - STATE(7149), 1, + ACTIONS(10938), 1, + anon_sym_EQ_GT, + STATE(7001), 1, sym_comment, - [209110] = 5, + [209153] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10383), 1, - anon_sym_LPAREN, - STATE(113), 1, - sym_parenthesized_expression, - STATE(7150), 1, + ACTIONS(5929), 1, + anon_sym_RBRACE, + STATE(7002), 1, sym_comment, - [209126] = 4, + [209166] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7151), 1, + ACTIONS(10940), 1, + anon_sym_readonly, + STATE(7003), 1, sym_comment, - ACTIONS(3466), 2, - anon_sym_else, - anon_sym_while, - [209140] = 4, + [209179] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7152), 1, + ACTIONS(10942), 1, + anon_sym_EQ, + STATE(7004), 1, sym_comment, - ACTIONS(3480), 2, - anon_sym_else, - anon_sym_while, - [209154] = 4, + [209192] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7153), 1, + ACTIONS(10944), 1, + anon_sym_COLON, + STATE(7005), 1, sym_comment, - ACTIONS(3464), 2, - anon_sym_else, - anon_sym_while, - [209168] = 5, + [209205] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10383), 1, - anon_sym_LPAREN, - STATE(112), 1, - sym_parenthesized_expression, - STATE(7154), 1, + ACTIONS(10946), 1, + sym_number, + STATE(7006), 1, sym_comment, - [209184] = 4, + [209218] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7155), 1, + ACTIONS(10948), 1, + anon_sym_from, + STATE(7007), 1, sym_comment, - ACTIONS(3462), 2, - anon_sym_else, - anon_sym_while, - [209198] = 5, + [209231] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3528), 1, - sym_statement_block, - STATE(7156), 1, + ACTIONS(10950), 1, + anon_sym_new, + STATE(7008), 1, sym_comment, - [209214] = 5, + [209244] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3561), 1, - sym_statement_block, - STATE(7157), 1, + ACTIONS(10952), 1, + sym_identifier, + STATE(7009), 1, sym_comment, - [209230] = 4, + [209257] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7158), 1, + ACTIONS(10954), 1, + anon_sym_symbol, + STATE(7010), 1, sym_comment, - ACTIONS(5524), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [209244] = 5, + [209270] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3534), 1, - sym_statement_block, - STATE(7159), 1, + ACTIONS(10956), 1, + anon_sym_DOT, + STATE(7011), 1, sym_comment, - [209260] = 4, + [209283] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7160), 1, + ACTIONS(10958), 1, + anon_sym_EQ_GT, + STATE(7012), 1, sym_comment, - ACTIONS(5518), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [209274] = 5, + [209296] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, + ACTIONS(10960), 1, anon_sym_LBRACE, - STATE(3507), 1, - sym_statement_block, - STATE(7161), 1, + STATE(7013), 1, sym_comment, - [209290] = 4, + [209309] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7162), 1, + ACTIONS(10962), 1, + anon_sym_RPAREN, + STATE(7014), 1, sym_comment, - ACTIONS(10897), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [209304] = 4, + [209322] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(7163), 1, + ACTIONS(10964), 1, + sym_regex_pattern, + STATE(7015), 1, sym_comment, - ACTIONS(10899), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [209318] = 5, + [209335] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10901), 1, + ACTIONS(10966), 1, sym_identifier, - ACTIONS(10903), 1, - sym_private_property_identifier, - STATE(7164), 1, + STATE(7016), 1, sym_comment, - [209334] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [209348] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3512), 1, - sym_statement_block, - STATE(7165), 1, - sym_comment, - [209350] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(7166), 1, + ACTIONS(10968), 1, + sym_identifier, + STATE(7017), 1, sym_comment, - ACTIONS(3456), 2, - anon_sym_else, - anon_sym_while, - [209364] = 4, + [209361] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7167), 1, + ACTIONS(10970), 1, + anon_sym_RPAREN, + STATE(7018), 1, sym_comment, - ACTIONS(3456), 2, - anon_sym_else, - anon_sym_while, - [209378] = 5, + [209374] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3532), 1, - sym_statement_block, - STATE(7168), 1, + ACTIONS(9951), 1, + anon_sym_RBRACK, + STATE(7019), 1, sym_comment, - [209394] = 4, + [209387] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - STATE(7169), 1, + ACTIONS(10972), 1, + anon_sym_EQ_GT, + STATE(7020), 1, sym_comment, - ACTIONS(10905), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [209408] = 4, + [209400] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(7170), 1, + ACTIONS(10974), 1, + sym_identifier, + STATE(7021), 1, sym_comment, - ACTIONS(3458), 2, - anon_sym_else, - anon_sym_while, - [209422] = 5, + [209413] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8236), 1, - anon_sym_LBRACE, - STATE(3531), 1, - sym_statement_block, - STATE(7171), 1, + ACTIONS(10976), 1, + sym_identifier, + STATE(7022), 1, sym_comment, - [209438] = 4, + [209426] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - STATE(7172), 1, + ACTIONS(10978), 1, + sym_identifier, + STATE(7023), 1, sym_comment, - ACTIONS(3460), 2, - anon_sym_else, - anon_sym_while, - [209452] = 4, + [209439] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10907), 1, + ACTIONS(10980), 1, sym_identifier, - STATE(7173), 1, + STATE(7024), 1, sym_comment, - [209465] = 4, + [209452] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10909), 1, - anon_sym_from, - STATE(7174), 1, + ACTIONS(10982), 1, + anon_sym_DOT, + STATE(7025), 1, sym_comment, - [209478] = 4, + [209465] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10911), 1, + ACTIONS(10984), 1, anon_sym_EQ_GT, - STATE(7175), 1, + STATE(7026), 1, sym_comment, - [209491] = 4, + [209478] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(10986), 1, + sym_identifier, + STATE(7027), 1, + sym_comment, + [209491] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(10913), 1, - anon_sym_while, - STATE(7176), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10988), 1, + sym_identifier, + STATE(7028), 1, sym_comment, [209504] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10915), 1, - anon_sym_EQ_GT, - STATE(7177), 1, + ACTIONS(10990), 1, + sym_identifier, + STATE(7029), 1, sym_comment, [209517] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10917), 1, - anon_sym_EQ_GT, - STATE(7178), 1, + ACTIONS(10992), 1, + anon_sym_while, + STATE(7030), 1, sym_comment, [209530] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10919), 1, - anon_sym_EQ_GT, - STATE(7179), 1, + ACTIONS(10994), 1, + sym_identifier, + STATE(7031), 1, sym_comment, [209543] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10921), 1, - anon_sym_RBRACK, - STATE(7180), 1, + ACTIONS(10996), 1, + sym_identifier, + STATE(7032), 1, sym_comment, [209556] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10923), 1, - anon_sym_RBRACK, - STATE(7181), 1, + ACTIONS(10998), 1, + anon_sym_while, + STATE(7033), 1, sym_comment, [209569] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10925), 1, - sym_number, - STATE(7182), 1, + ACTIONS(11000), 1, + sym_identifier, + STATE(7034), 1, sym_comment, [209582] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10927), 1, + ACTIONS(11002), 1, anon_sym_RBRACK, - STATE(7183), 1, + STATE(7035), 1, sym_comment, [209595] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10929), 1, + ACTIONS(11004), 1, anon_sym_RBRACK, - STATE(7184), 1, + STATE(7036), 1, sym_comment, [209608] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10863), 1, - anon_sym_from, - STATE(7185), 1, + ACTIONS(11006), 1, + sym_identifier, + STATE(7037), 1, sym_comment, [209621] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10931), 1, - anon_sym_RBRACK, - STATE(7186), 1, + ACTIONS(11008), 1, + sym_identifier, + STATE(7038), 1, sym_comment, [209634] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10933), 1, - anon_sym_EQ, - STATE(7187), 1, + ACTIONS(11010), 1, + sym_identifier, + STATE(7039), 1, sym_comment, [209647] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10935), 1, - anon_sym_RBRACK, - STATE(7188), 1, + ACTIONS(11012), 1, + sym_identifier, + STATE(7040), 1, sym_comment, [209660] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10937), 1, - anon_sym_RBRACK, - STATE(7189), 1, + ACTIONS(7418), 1, + anon_sym_is, + STATE(7041), 1, sym_comment, [209673] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10939), 1, - anon_sym_RBRACK, - STATE(7190), 1, + ACTIONS(11014), 1, + sym_identifier, + STATE(7042), 1, sym_comment, [209686] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9891), 1, - anon_sym_LBRACE, - STATE(7191), 1, + ACTIONS(11016), 1, + anon_sym_as, + STATE(7043), 1, sym_comment, [209699] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(9403), 1, - anon_sym_EQ_GT, - STATE(7192), 1, + ACTIONS(11018), 1, + sym_identifier, + STATE(7044), 1, sym_comment, [209712] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5460), 1, - anon_sym_in, - STATE(7193), 1, + ACTIONS(11020), 1, + sym_identifier, + STATE(7045), 1, sym_comment, [209725] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10941), 1, - anon_sym_RPAREN, - STATE(7194), 1, + ACTIONS(11022), 1, + anon_sym_DOT, + STATE(7046), 1, sym_comment, [209738] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10943), 1, - anon_sym_new, - STATE(7195), 1, + ACTIONS(11024), 1, + anon_sym_RBRACK, + STATE(7047), 1, sym_comment, [209751] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10945), 1, - anon_sym_RBRACK, - STATE(7196), 1, + ACTIONS(5888), 1, + anon_sym_RPAREN, + STATE(7048), 1, sym_comment, [209764] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9409), 1, + ACTIONS(11026), 1, anon_sym_EQ_GT, - STATE(7197), 1, + STATE(7049), 1, sym_comment, [209777] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10947), 1, - sym_regex_pattern, - STATE(7198), 1, + ACTIONS(11028), 1, + sym_identifier, + STATE(7050), 1, sym_comment, [209790] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10949), 1, - sym_identifier, - STATE(7199), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5892), 1, + anon_sym_RBRACE, + STATE(7051), 1, sym_comment, [209803] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10951), 1, - sym_identifier, - STATE(7200), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11030), 1, + anon_sym_RPAREN, + STATE(7052), 1, sym_comment, [209816] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10953), 1, - sym_identifier, - STATE(7201), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11032), 1, + anon_sym_EQ_GT, + STATE(7053), 1, sym_comment, [209829] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10955), 1, + ACTIONS(11034), 1, sym_identifier, - STATE(7202), 1, + STATE(7054), 1, sym_comment, [209842] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10957), 1, - anon_sym_DOT, - STATE(7203), 1, + ACTIONS(11036), 1, + anon_sym_from, + STATE(7055), 1, sym_comment, [209855] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10959), 1, - anon_sym_EQ_GT, - STATE(7204), 1, + ACTIONS(11038), 1, + sym_identifier, + STATE(7056), 1, sym_comment, [209868] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10961), 1, - anon_sym_EQ_GT, - STATE(7205), 1, + ACTIONS(11040), 1, + anon_sym_RPAREN, + STATE(7057), 1, sym_comment, [209881] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10963), 1, - sym_identifier, - STATE(7206), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11042), 1, + anon_sym_RBRACK, + STATE(7058), 1, sym_comment, [209894] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10965), 1, - sym_identifier, - STATE(7207), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5914), 1, + anon_sym_RBRACK, + STATE(7059), 1, sym_comment, [209907] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10967), 1, - sym_identifier, - STATE(7208), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11044), 1, + anon_sym_EQ, + STATE(7060), 1, sym_comment, [209920] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10969), 1, - anon_sym_EQ, - STATE(7209), 1, + ACTIONS(11046), 1, + anon_sym_RBRACK, + STATE(7061), 1, sym_comment, [209933] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10971), 1, - anon_sym_target, - STATE(7210), 1, + ACTIONS(9884), 1, + anon_sym_RBRACE, + STATE(7062), 1, sym_comment, [209946] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10973), 1, - sym_identifier, - STATE(7211), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11048), 1, + anon_sym_RPAREN, + STATE(7063), 1, sym_comment, [209959] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10975), 1, - sym_identifier, - STATE(7212), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11050), 1, + anon_sym_RBRACK, + STATE(7064), 1, sym_comment, [209972] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10977), 1, - anon_sym_while, - STATE(7213), 1, + ACTIONS(11052), 1, + anon_sym_RBRACK, + STATE(7065), 1, sym_comment, [209985] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10979), 1, - anon_sym_while, - STATE(7214), 1, + ACTIONS(11054), 1, + anon_sym_RBRACK, + STATE(7066), 1, sym_comment, [209998] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10981), 1, - sym_identifier, - STATE(7215), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11056), 1, + anon_sym_RBRACK, + STATE(7067), 1, sym_comment, [210011] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10983), 1, - sym_identifier, - STATE(7216), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11058), 1, + anon_sym_EQ_GT, + STATE(7068), 1, sym_comment, [210024] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10985), 1, - anon_sym_RBRACK, - STATE(7217), 1, + ACTIONS(11060), 1, + anon_sym_EQ_GT, + STATE(7069), 1, sym_comment, [210037] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10987), 1, + ACTIONS(11062), 1, sym_identifier, - STATE(7218), 1, + STATE(7070), 1, sym_comment, [210050] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10989), 1, + ACTIONS(11064), 1, anon_sym_EQ_GT, - STATE(7219), 1, + STATE(7071), 1, sym_comment, [210063] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10991), 1, - sym_identifier, - STATE(7220), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11066), 1, + anon_sym_RBRACK, + STATE(7072), 1, sym_comment, [210076] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10993), 1, - anon_sym_RBRACK, - STATE(7221), 1, + ACTIONS(8792), 1, + anon_sym_EQ, + STATE(7073), 1, sym_comment, [210089] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10995), 1, - sym_identifier, - STATE(7222), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11068), 1, + anon_sym_EQ_GT, + STATE(7074), 1, sym_comment, [210102] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10997), 1, - anon_sym_RBRACK, - STATE(7223), 1, + ACTIONS(6574), 1, + anon_sym_in, + STATE(7075), 1, sym_comment, [210115] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10999), 1, - sym_identifier, - STATE(7224), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11070), 1, + anon_sym_RBRACK, + STATE(7076), 1, sym_comment, [210128] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11001), 1, - anon_sym_RBRACK, - STATE(7225), 1, + ACTIONS(10004), 1, + anon_sym_GT, + STATE(7077), 1, sym_comment, [210141] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11003), 1, - sym_identifier, - STATE(7226), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11072), 1, + anon_sym_RBRACK, + STATE(7078), 1, sym_comment, [210154] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11005), 1, - sym_regex_pattern, - STATE(7227), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11074), 1, + anon_sym_RBRACK, + STATE(7079), 1, sym_comment, [210167] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11007), 1, + ACTIONS(11076), 1, anon_sym_RBRACK, - STATE(7228), 1, + STATE(7080), 1, sym_comment, [210180] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11009), 1, - anon_sym_DOT, - STATE(7229), 1, + ACTIONS(11078), 1, + sym_regex_pattern, + STATE(7081), 1, sym_comment, [210193] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11011), 1, - anon_sym_RBRACK, - STATE(7230), 1, + ACTIONS(11080), 1, + sym_identifier, + STATE(7082), 1, sym_comment, [210206] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11013), 1, - anon_sym_EQ_GT, - STATE(7231), 1, + ACTIONS(11082), 1, + sym_identifier, + STATE(7083), 1, sym_comment, [210219] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11015), 1, - anon_sym_RBRACK, - STATE(7232), 1, + ACTIONS(11084), 1, + anon_sym_SLASH2, + STATE(7084), 1, sym_comment, [210232] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11017), 1, - sym_identifier, - STATE(7233), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11086), 1, + anon_sym_EQ, + STATE(7085), 1, sym_comment, [210245] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11019), 1, - anon_sym_RBRACK, - STATE(7234), 1, + ACTIONS(11088), 1, + anon_sym_EQ_GT, + STATE(7086), 1, sym_comment, [210258] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11021), 1, - anon_sym_RBRACK, - STATE(7235), 1, + ACTIONS(11090), 1, + anon_sym_RPAREN, + STATE(7087), 1, sym_comment, [210271] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11023), 1, - anon_sym_RBRACK, - STATE(7236), 1, + ACTIONS(11092), 1, + sym_identifier, + STATE(7088), 1, sym_comment, [210284] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11025), 1, + ACTIONS(11094), 1, sym_identifier, - STATE(7237), 1, + STATE(7089), 1, sym_comment, [210297] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11027), 1, - anon_sym_RBRACK, - STATE(7238), 1, + ACTIONS(11096), 1, + anon_sym_from, + STATE(7090), 1, sym_comment, [210310] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11029), 1, - anon_sym_RBRACK, - STATE(7239), 1, + ACTIONS(5837), 1, + anon_sym_in, + STATE(7091), 1, sym_comment, [210323] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11031), 1, - anon_sym_RBRACK, - STATE(7240), 1, + ACTIONS(11098), 1, + anon_sym_RPAREN, + STATE(7092), 1, sym_comment, [210336] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11033), 1, + ACTIONS(11100), 1, anon_sym_RBRACK, - STATE(7241), 1, + STATE(7093), 1, sym_comment, [210349] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11035), 1, + ACTIONS(11102), 1, anon_sym_RBRACK, - STATE(7242), 1, + STATE(7094), 1, sym_comment, [210362] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(11037), 1, - anon_sym_RBRACK, - STATE(7243), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11104), 1, + sym_identifier, + STATE(7095), 1, sym_comment, [210375] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5253), 1, - anon_sym_RPAREN, - STATE(7244), 1, + ACTIONS(11106), 1, + anon_sym_while, + STATE(7096), 1, sym_comment, [210388] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11039), 1, - anon_sym_RBRACK, - STATE(7245), 1, + ACTIONS(11108), 1, + anon_sym_RPAREN, + STATE(7097), 1, sym_comment, [210401] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11041), 1, - anon_sym_RPAREN, - STATE(7246), 1, + ACTIONS(11110), 1, + sym_identifier, + STATE(7098), 1, sym_comment, [210414] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11043), 1, - anon_sym_EQ, - STATE(7247), 1, + ACTIONS(11112), 1, + anon_sym_EQ_GT, + STATE(7099), 1, sym_comment, [210427] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11045), 1, + ACTIONS(11114), 1, anon_sym_EQ_GT, - STATE(7248), 1, + STATE(7100), 1, sym_comment, [210440] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11047), 1, - anon_sym_RBRACK, - STATE(7249), 1, + ACTIONS(11116), 1, + anon_sym_EQ_GT, + STATE(7101), 1, sym_comment, [210453] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11049), 1, + ACTIONS(11118), 1, anon_sym_RBRACK, - STATE(7250), 1, + STATE(7102), 1, sym_comment, [210466] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11051), 1, - anon_sym_EQ_GT, - STATE(7251), 1, + ACTIONS(11120), 1, + sym_identifier, + STATE(7103), 1, sym_comment, [210479] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11053), 1, - anon_sym_RBRACK, - STATE(7252), 1, + ACTIONS(11122), 1, + anon_sym_RPAREN, + STATE(7104), 1, sym_comment, [210492] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11055), 1, - anon_sym_EQ_GT, - STATE(7253), 1, + ACTIONS(11124), 1, + sym_identifier, + STATE(7105), 1, sym_comment, [210505] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11057), 1, + ACTIONS(11126), 1, anon_sym_EQ_GT, - STATE(7254), 1, + STATE(7106), 1, sym_comment, [210518] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11059), 1, + ACTIONS(11128), 1, anon_sym_RBRACK, - STATE(7255), 1, + STATE(7107), 1, sym_comment, [210531] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11061), 1, - anon_sym_EQ_GT, - STATE(7256), 1, + ACTIONS(11130), 1, + sym_identifier, + STATE(7108), 1, sym_comment, [210544] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11063), 1, - anon_sym_GT, - STATE(7257), 1, + ACTIONS(11132), 1, + anon_sym_RBRACK, + STATE(7109), 1, sym_comment, [210557] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11065), 1, - anon_sym_EQ_GT, - STATE(7258), 1, + ACTIONS(11134), 1, + anon_sym_RBRACK, + STATE(7110), 1, sym_comment, [210570] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(8822), 1, - anon_sym_EQ, - STATE(7259), 1, + ACTIONS(11136), 1, + anon_sym_RBRACK, + STATE(7111), 1, sym_comment, [210583] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11067), 1, - anon_sym_EQ_GT, - STATE(7260), 1, + ACTIONS(11138), 1, + anon_sym_DOT, + STATE(7112), 1, sym_comment, [210596] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6567), 1, - anon_sym_in, - STATE(7261), 1, + ACTIONS(11140), 1, + anon_sym_RBRACK, + STATE(7113), 1, sym_comment, [210609] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11069), 1, - anon_sym_EQ, - STATE(7262), 1, + ACTIONS(11142), 1, + anon_sym_COLON, + STATE(7114), 1, sym_comment, [210622] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11071), 1, - anon_sym_SLASH2, - STATE(7263), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11144), 1, + anon_sym_RBRACK, + STATE(7115), 1, sym_comment, [210635] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11073), 1, - sym_regex_pattern, - STATE(7264), 1, + ACTIONS(11146), 1, + sym_identifier, + STATE(7116), 1, sym_comment, [210648] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11075), 1, - sym_identifier, - STATE(7265), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11148), 1, + anon_sym_RBRACK, + STATE(7117), 1, sym_comment, [210661] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11077), 1, - sym_identifier, - STATE(7266), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11150), 1, + anon_sym_RBRACK, + STATE(7118), 1, sym_comment, [210674] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11079), 1, - sym_identifier, - STATE(7267), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11152), 1, + anon_sym_RBRACK, + STATE(7119), 1, sym_comment, [210687] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5856), 1, - anon_sym_is, - STATE(7268), 1, + ACTIONS(11154), 1, + anon_sym_from, + STATE(7120), 1, sym_comment, [210700] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11081), 1, - anon_sym_EQ, - STATE(7269), 1, + ACTIONS(5196), 1, + anon_sym_RPAREN, + STATE(7121), 1, sym_comment, [210713] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11083), 1, - anon_sym_SLASH2, - STATE(7270), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11156), 1, + anon_sym_require, + STATE(7122), 1, sym_comment, [210726] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11085), 1, - anon_sym_EQ_GT, - STATE(7271), 1, + ACTIONS(11158), 1, + anon_sym_RBRACK, + STATE(7123), 1, sym_comment, [210739] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11087), 1, - sym_identifier, - STATE(7272), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11160), 1, + anon_sym_RBRACK, + STATE(7124), 1, sym_comment, [210752] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11089), 1, - anon_sym_EQ_GT, - STATE(7273), 1, + ACTIONS(11162), 1, + anon_sym_RBRACK, + STATE(7125), 1, sym_comment, [210765] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11091), 1, - anon_sym_RBRACK, - STATE(7274), 1, + ACTIONS(11164), 1, + anon_sym_as, + STATE(7126), 1, sym_comment, [210778] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11093), 1, - anon_sym_EQ_GT, - STATE(7275), 1, + ACTIONS(11166), 1, + anon_sym_from, + STATE(7127), 1, sym_comment, [210791] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9671), 1, - sym_identifier, - STATE(7276), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11168), 1, + anon_sym_RPAREN, + STATE(7128), 1, sym_comment, [210804] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11095), 1, - sym_identifier, - STATE(7277), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11170), 1, + anon_sym_RPAREN, + STATE(7129), 1, sym_comment, [210817] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11097), 1, - sym_identifier, - STATE(7278), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11172), 1, + anon_sym_EQ, + STATE(7130), 1, sym_comment, [210830] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11099), 1, - anon_sym_while, - STATE(7279), 1, + ACTIONS(11174), 1, + anon_sym_EQ, + STATE(7131), 1, sym_comment, [210843] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5928), 1, - anon_sym_RPAREN, - STATE(7280), 1, + ACTIONS(11176), 1, + anon_sym_RBRACK, + STATE(7132), 1, sym_comment, [210856] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11101), 1, - sym_identifier, - STATE(7281), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11178), 1, + anon_sym_RBRACK, + STATE(7133), 1, sym_comment, [210869] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5934), 1, - anon_sym_RPAREN, - STATE(7282), 1, + ACTIONS(11180), 1, + anon_sym_RBRACK, + STATE(7134), 1, sym_comment, [210882] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11103), 1, - anon_sym_DOT, - STATE(7283), 1, + ACTIONS(11182), 1, + anon_sym_LPAREN, + STATE(7135), 1, sym_comment, [210895] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11105), 1, - anon_sym_RBRACK, - STATE(7284), 1, + ACTIONS(6254), 1, + anon_sym_in, + STATE(7136), 1, sym_comment, [210908] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11107), 1, - anon_sym_RBRACK, - STATE(7285), 1, + ACTIONS(11184), 1, + sym_identifier, + STATE(7137), 1, sym_comment, [210921] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11109), 1, + ACTIONS(11186), 1, sym_identifier, - STATE(7286), 1, + STATE(7138), 1, sym_comment, [210934] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5936), 1, - anon_sym_RPAREN, - STATE(7287), 1, + ACTIONS(11188), 1, + anon_sym_RBRACK, + STATE(7139), 1, sym_comment, [210947] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11111), 1, - sym_identifier, - STATE(7288), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11190), 1, + anon_sym_RBRACK, + STATE(7140), 1, sym_comment, [210960] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5938), 1, - anon_sym_COLON, - STATE(7289), 1, + ACTIONS(11192), 1, + anon_sym_RBRACK, + STATE(7141), 1, sym_comment, [210973] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5908), 1, - anon_sym_RPAREN, - STATE(7290), 1, + ACTIONS(11194), 1, + anon_sym_EQ, + STATE(7142), 1, sym_comment, [210986] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11113), 1, - anon_sym_RBRACK, - STATE(7291), 1, + ACTIONS(11196), 1, + sym_identifier, + STATE(7143), 1, sym_comment, [210999] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11115), 1, - anon_sym_RBRACK, - STATE(7292), 1, + ACTIONS(11198), 1, + sym_identifier, + STATE(7144), 1, sym_comment, [211012] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11117), 1, - anon_sym_RBRACK, - STATE(7293), 1, + ACTIONS(11200), 1, + anon_sym_EQ_GT, + STATE(7145), 1, sym_comment, [211025] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11119), 1, - anon_sym_from, - STATE(7294), 1, + ACTIONS(4923), 1, + anon_sym_in, + STATE(7146), 1, sym_comment, [211038] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11121), 1, - anon_sym_DOT, - STATE(7295), 1, + ACTIONS(11202), 1, + anon_sym_EQ, + STATE(7147), 1, sym_comment, [211051] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11123), 1, + ACTIONS(11204), 1, sym_identifier, - STATE(7296), 1, + STATE(7148), 1, sym_comment, [211064] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11125), 1, - anon_sym_RPAREN, - STATE(7297), 1, + ACTIONS(11206), 1, + anon_sym_from, + STATE(7149), 1, sym_comment, [211077] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11127), 1, + ACTIONS(11208), 1, sym_identifier, - STATE(7298), 1, + STATE(7150), 1, sym_comment, [211090] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11129), 1, + ACTIONS(11210), 1, sym_identifier, - STATE(7299), 1, + STATE(7151), 1, sym_comment, [211103] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11131), 1, - anon_sym_RPAREN, - STATE(7300), 1, + ACTIONS(11212), 1, + anon_sym_EQ_GT, + STATE(7152), 1, sym_comment, [211116] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(7056), 1, - anon_sym_is, - STATE(7301), 1, + ACTIONS(11214), 1, + sym_identifier, + STATE(7153), 1, sym_comment, [211129] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11133), 1, - anon_sym_RBRACK, - STATE(7302), 1, + ACTIONS(11216), 1, + anon_sym_EQ, + STATE(7154), 1, sym_comment, [211142] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11135), 1, - anon_sym_as, - STATE(7303), 1, + ACTIONS(11218), 1, + anon_sym_EQ_GT, + STATE(7155), 1, sym_comment, [211155] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11137), 1, + ACTIONS(11220), 1, anon_sym_RBRACK, - STATE(7304), 1, + STATE(7156), 1, sym_comment, [211168] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11139), 1, + ACTIONS(11222), 1, sym_identifier, - STATE(7305), 1, + STATE(7157), 1, sym_comment, [211181] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11141), 1, + ACTIONS(11224), 1, anon_sym_RBRACK, - STATE(7306), 1, + STATE(7158), 1, sym_comment, [211194] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11143), 1, - anon_sym_RBRACK, - STATE(7307), 1, + ACTIONS(11226), 1, + sym_identifier, + STATE(7159), 1, sym_comment, [211207] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11145), 1, - anon_sym_class, - STATE(7308), 1, + ACTIONS(5424), 1, + anon_sym_in, + STATE(7160), 1, sym_comment, [211220] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11147), 1, - anon_sym_RBRACK, - STATE(7309), 1, + ACTIONS(11228), 1, + anon_sym_DOT, + STATE(7161), 1, sym_comment, [211233] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5852), 1, - anon_sym_RBRACK, - STATE(7310), 1, + ACTIONS(11230), 1, + anon_sym_EQ_GT, + STATE(7162), 1, sym_comment, [211246] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11149), 1, - anon_sym_DOT, - STATE(7311), 1, + ACTIONS(11232), 1, + anon_sym_EQ_GT, + STATE(7163), 1, sym_comment, [211259] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11151), 1, - anon_sym_RPAREN, - STATE(7312), 1, + ACTIONS(11234), 1, + sym_identifier, + STATE(7164), 1, sym_comment, [211272] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11153), 1, - sym_number, - STATE(7313), 1, + ACTIONS(11236), 1, + sym_identifier, + STATE(7165), 1, sym_comment, [211285] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11155), 1, - sym_identifier, - STATE(7314), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(8161), 1, + anon_sym_EQ, + STATE(7166), 1, sym_comment, [211298] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11157), 1, - anon_sym_symbol, - STATE(7315), 1, + ACTIONS(11238), 1, + anon_sym_COLON, + STATE(7167), 1, sym_comment, [211311] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11159), 1, - anon_sym_EQ_GT, - STATE(7316), 1, + ACTIONS(11240), 1, + sym_identifier, + STATE(7168), 1, sym_comment, [211324] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7494), 1, - anon_sym_is, - STATE(7317), 1, + ACTIONS(11242), 1, + anon_sym_RBRACK, + STATE(7169), 1, sym_comment, [211337] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5894), 1, - anon_sym_RBRACK, - STATE(7318), 1, + ACTIONS(11244), 1, + anon_sym_DOT, + STATE(7170), 1, sym_comment, [211350] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11161), 1, - sym_identifier, - STATE(7319), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5308), 1, + anon_sym_RPAREN, + STATE(7171), 1, sym_comment, [211363] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11163), 1, - sym_identifier, - STATE(7320), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11246), 1, + anon_sym_EQ_GT, + STATE(7172), 1, sym_comment, [211376] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10013), 1, - anon_sym_RBRACE, - STATE(7321), 1, + ACTIONS(11248), 1, + anon_sym_EQ, + STATE(7173), 1, sym_comment, [211389] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11165), 1, - anon_sym_EQ, - STATE(7322), 1, + ACTIONS(11250), 1, + anon_sym_RBRACK, + STATE(7174), 1, sym_comment, [211402] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11167), 1, + ACTIONS(11252), 1, sym_identifier, - STATE(7323), 1, + STATE(7175), 1, sym_comment, [211415] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11169), 1, - anon_sym_EQ_GT, - STATE(7324), 1, + ACTIONS(11254), 1, + sym_identifier, + STATE(7176), 1, sym_comment, [211428] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10023), 1, - anon_sym_GT, - STATE(7325), 1, + ACTIONS(11256), 1, + anon_sym_RBRACK, + STATE(7177), 1, sym_comment, [211441] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11171), 1, - sym_identifier, - STATE(7326), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(9767), 1, + anon_sym_RBRACE, + STATE(7178), 1, sym_comment, [211454] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11173), 1, - sym_identifier, - STATE(7327), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11258), 1, + anon_sym_RBRACK, + STATE(7179), 1, sym_comment, [211467] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11175), 1, - anon_sym_RBRACK, - STATE(7328), 1, + ACTIONS(11260), 1, + sym_identifier, + STATE(7180), 1, sym_comment, [211480] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11177), 1, - anon_sym_EQ_GT, - STATE(7329), 1, + ACTIONS(11262), 1, + anon_sym_RBRACK, + STATE(7181), 1, sym_comment, [211493] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11179), 1, - sym_identifier, - STATE(7330), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4948), 1, + anon_sym_RPAREN, + STATE(7182), 1, sym_comment, [211506] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11181), 1, - sym_identifier, - STATE(7331), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11264), 1, + anon_sym_RBRACK, + STATE(7183), 1, sym_comment, [211519] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11183), 1, - anon_sym_EQ, - STATE(7332), 1, + ACTIONS(11266), 1, + anon_sym_RBRACK, + STATE(7184), 1, sym_comment, [211532] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11185), 1, - sym_identifier, - STATE(7333), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11268), 1, + anon_sym_RBRACK, + STATE(7185), 1, sym_comment, [211545] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11187), 1, - sym_identifier, - STATE(7334), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11270), 1, + anon_sym_LBRACK, + STATE(7186), 1, sym_comment, [211558] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11189), 1, - sym_identifier, - STATE(7335), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5975), 1, + anon_sym_in, + STATE(7187), 1, sym_comment, [211571] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11191), 1, - sym_identifier, - STATE(7336), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11272), 1, + anon_sym_RBRACK, + STATE(7188), 1, sym_comment, [211584] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11193), 1, - anon_sym_while, - STATE(7337), 1, + ACTIONS(11274), 1, + anon_sym_class, + STATE(7189), 1, sym_comment, [211597] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11195), 1, - anon_sym_EQ_GT, - STATE(7338), 1, + ACTIONS(11276), 1, + anon_sym_RBRACK, + STATE(7190), 1, sym_comment, [211610] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11197), 1, - sym_identifier, - STATE(7339), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11278), 1, + anon_sym_EQ_GT, + STATE(7191), 1, sym_comment, [211623] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11199), 1, - sym_identifier, - STATE(7340), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11280), 1, + anon_sym_EQ_GT, + STATE(7192), 1, sym_comment, [211636] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11201), 1, - sym_identifier, - STATE(7341), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11282), 1, + anon_sym_EQ, + STATE(7193), 1, sym_comment, [211649] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11203), 1, - sym_identifier, - STATE(7342), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11284), 1, + anon_sym_namespace, + STATE(7194), 1, sym_comment, [211662] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11205), 1, - anon_sym_EQ_GT, - STATE(7343), 1, + ACTIONS(11286), 1, + sym_identifier, + STATE(7195), 1, sym_comment, [211675] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11207), 1, - anon_sym_DOT, - STATE(7344), 1, + ACTIONS(5876), 1, + anon_sym_RPAREN, + STATE(7196), 1, sym_comment, [211688] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11209), 1, - anon_sym_COLON, - STATE(7345), 1, + ACTIONS(11288), 1, + anon_sym_RBRACK, + STATE(7197), 1, sym_comment, [211701] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11211), 1, - sym_identifier, - STATE(7346), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11290), 1, + anon_sym_class, + STATE(7198), 1, sym_comment, [211714] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11213), 1, - sym_identifier, - STATE(7347), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11292), 1, + anon_sym_RBRACK, + STATE(7199), 1, sym_comment, [211727] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11215), 1, + ACTIONS(11294), 1, anon_sym_EQ_GT, - STATE(7348), 1, + STATE(7200), 1, sym_comment, [211740] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11217), 1, - anon_sym_EQ_GT, - STATE(7349), 1, + ACTIONS(11296), 1, + anon_sym_new, + STATE(7201), 1, sym_comment, [211753] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10052), 1, - anon_sym_RBRACK, - STATE(7350), 1, + ACTIONS(11298), 1, + anon_sym_EQ_GT, + STATE(7202), 1, sym_comment, [211766] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10056), 1, - anon_sym_RBRACK, - STATE(7351), 1, + ACTIONS(11300), 1, + anon_sym_EQ_GT, + STATE(7203), 1, sym_comment, [211779] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11219), 1, - anon_sym_EQ_GT, - STATE(7352), 1, + ACTIONS(11302), 1, + anon_sym_while, + STATE(7204), 1, sym_comment, [211792] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11221), 1, - sym_identifier, - STATE(7353), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11304), 1, + anon_sym_EQ_GT, + STATE(7205), 1, sym_comment, [211805] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11223), 1, - sym_identifier, - STATE(7354), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11306), 1, + anon_sym_EQ_GT, + STATE(7206), 1, sym_comment, [211818] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11225), 1, - sym_identifier, - STATE(7355), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11308), 1, + anon_sym_EQ_GT, + STATE(7207), 1, sym_comment, [211831] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11227), 1, - anon_sym_EQ_GT, - STATE(7356), 1, + ACTIONS(11310), 1, + anon_sym_RBRACK, + STATE(7208), 1, sym_comment, [211844] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11229), 1, + ACTIONS(11312), 1, sym_identifier, - STATE(7357), 1, + STATE(7209), 1, sym_comment, [211857] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11231), 1, - sym_identifier, - STATE(7358), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11314), 1, + anon_sym_RBRACK, + STATE(7210), 1, sym_comment, [211870] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11233), 1, - sym_regex_pattern, - STATE(7359), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11316), 1, + anon_sym_RBRACK, + STATE(7211), 1, sym_comment, [211883] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11235), 1, - sym_identifier, - STATE(7360), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11318), 1, + anon_sym_RBRACK, + STATE(7212), 1, sym_comment, [211896] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11237), 1, - anon_sym_EQ, - STATE(7361), 1, + ACTIONS(11320), 1, + anon_sym_RBRACK, + STATE(7213), 1, sym_comment, [211909] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(7414), 1, - anon_sym_is, - STATE(7362), 1, + ACTIONS(11322), 1, + anon_sym_RBRACK, + STATE(7214), 1, sym_comment, [211922] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11239), 1, + ACTIONS(11324), 1, anon_sym_EQ, - STATE(7363), 1, + STATE(7215), 1, sym_comment, [211935] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10084), 1, - anon_sym_GT, - STATE(7364), 1, + ACTIONS(10133), 1, + sym_identifier, + STATE(7216), 1, sym_comment, [211948] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5864), 1, - anon_sym_RPAREN, - STATE(7365), 1, + ACTIONS(11326), 1, + anon_sym_class, + STATE(7217), 1, sym_comment, [211961] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5862), 1, - anon_sym_RBRACE, - STATE(7366), 1, + ACTIONS(11328), 1, + anon_sym_EQ_GT, + STATE(7218), 1, sym_comment, [211974] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5886), 1, - anon_sym_RPAREN, - STATE(7367), 1, + ACTIONS(11330), 1, + anon_sym_RBRACK, + STATE(7219), 1, sym_comment, [211987] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11241), 1, - anon_sym_EQ_GT, - STATE(7368), 1, + ACTIONS(11332), 1, + anon_sym_EQ, + STATE(7220), 1, sym_comment, [212000] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11243), 1, - sym_identifier, - STATE(7369), 1, - sym_comment, - [212013] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5972), 1, - anon_sym_in, - STATE(7370), 1, + ACTIONS(10127), 1, + anon_sym_RBRACK, + STATE(7221), 1, sym_comment, - [212026] = 4, + [212013] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11245), 1, + ACTIONS(11334), 1, sym_identifier, - STATE(7371), 1, + STATE(7222), 1, + sym_comment, + [212026] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11336), 1, + anon_sym_EQ, + STATE(7223), 1, sym_comment, [212039] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11247), 1, - anon_sym_class, - STATE(7372), 1, + ACTIONS(11338), 1, + anon_sym_RBRACK, + STATE(7224), 1, sym_comment, [212052] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11249), 1, - sym_identifier, - STATE(7373), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11340), 1, + anon_sym_RBRACK, + STATE(7225), 1, sym_comment, [212065] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11251), 1, - anon_sym_EQ_GT, - STATE(7374), 1, + ACTIONS(11342), 1, + anon_sym_RBRACK, + STATE(7226), 1, sym_comment, [212078] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11253), 1, + ACTIONS(11344), 1, sym_identifier, - STATE(7375), 1, + STATE(7227), 1, sym_comment, [212091] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11255), 1, - anon_sym_EQ, - STATE(7376), 1, + ACTIONS(11346), 1, + anon_sym_RBRACK, + STATE(7228), 1, sym_comment, [212104] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11257), 1, - anon_sym_namespace, - STATE(7377), 1, + ACTIONS(11348), 1, + anon_sym_RBRACK, + STATE(7229), 1, sym_comment, [212117] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11259), 1, - anon_sym_readonly, - STATE(7378), 1, + ACTIONS(11350), 1, + anon_sym_EQ_GT, + STATE(7230), 1, sym_comment, [212130] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11261), 1, - anon_sym_EQ_GT, - STATE(7379), 1, + ACTIONS(11352), 1, + anon_sym_new, + STATE(7231), 1, sym_comment, [212143] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11263), 1, - anon_sym_EQ_GT, - STATE(7380), 1, + ACTIONS(11354), 1, + anon_sym_RBRACK, + STATE(7232), 1, sym_comment, [212156] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11265), 1, - sym_identifier, - STATE(7381), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11356), 1, + anon_sym_EQ_GT, + STATE(7233), 1, sym_comment, [212169] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11267), 1, + ACTIONS(11358), 1, sym_identifier, - STATE(7382), 1, + STATE(7234), 1, sym_comment, [212182] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5918), 1, - anon_sym_RBRACK, - STATE(7383), 1, + ACTIONS(6005), 1, + anon_sym_in, + STATE(7235), 1, sym_comment, [212195] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11269), 1, - anon_sym_EQ_GT, - STATE(7384), 1, + ACTIONS(11360), 1, + sym_identifier, + STATE(7236), 1, sym_comment, [212208] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11271), 1, + ACTIONS(11362), 1, sym_identifier, - STATE(7385), 1, + STATE(7237), 1, sym_comment, [212221] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11273), 1, - anon_sym_EQ_GT, - STATE(7386), 1, + ACTIONS(11364), 1, + anon_sym_COLON, + STATE(7238), 1, sym_comment, [212234] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11275), 1, + ACTIONS(11366), 1, sym_identifier, - STATE(7387), 1, + STATE(7239), 1, sym_comment, [212247] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11277), 1, - anon_sym_EQ_GT, - STATE(7388), 1, + ACTIONS(3084), 1, + anon_sym_LBRACE, + STATE(7240), 1, sym_comment, [212260] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11279), 1, - anon_sym_EQ_GT, - STATE(7389), 1, + ACTIONS(9642), 1, + sym_identifier, + STATE(7241), 1, sym_comment, [212273] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10113), 1, - anon_sym_RBRACK, - STATE(7390), 1, + ACTIONS(11368), 1, + sym_identifier, + STATE(7242), 1, sym_comment, [212286] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11281), 1, - anon_sym_RBRACK, - STATE(7391), 1, + ACTIONS(11370), 1, + sym_regex_pattern, + STATE(7243), 1, sym_comment, [212299] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11283), 1, - anon_sym_RBRACK, - STATE(7392), 1, + ACTIONS(11372), 1, + anon_sym_EQ, + STATE(7244), 1, sym_comment, [212312] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11285), 1, - anon_sym_new, - STATE(7393), 1, + ACTIONS(11374), 1, + anon_sym_target, + STATE(7245), 1, sym_comment, [212325] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11287), 1, - anon_sym_RBRACK, - STATE(7394), 1, + ACTIONS(11376), 1, + sym_identifier, + STATE(7246), 1, sym_comment, [212338] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11289), 1, + ACTIONS(11378), 1, anon_sym_RBRACK, - STATE(7395), 1, + STATE(7247), 1, sym_comment, [212351] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11291), 1, - anon_sym_RBRACK, - STATE(7396), 1, + ACTIONS(11380), 1, + anon_sym_EQ_GT, + STATE(7248), 1, sym_comment, [212364] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11293), 1, - anon_sym_RBRACK, - STATE(7397), 1, + ACTIONS(11382), 1, + anon_sym_SLASH2, + STATE(7249), 1, sym_comment, [212377] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11295), 1, - anon_sym_EQ, - STATE(7398), 1, + ACTIONS(11384), 1, + anon_sym_RBRACK, + STATE(7250), 1, sym_comment, [212390] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10058), 1, - sym_identifier, - STATE(7399), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11386), 1, + anon_sym_RBRACK, + STATE(7251), 1, sym_comment, [212403] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11297), 1, - anon_sym_class, - STATE(7400), 1, + ACTIONS(11388), 1, + sym_identifier, + STATE(7252), 1, sym_comment, [212416] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11299), 1, - sym_identifier, - STATE(7401), 1, + ACTIONS(11390), 1, + anon_sym_SLASH2, + STATE(7253), 1, sym_comment, [212429] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11301), 1, - sym_identifier, - STATE(7402), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11392), 1, + anon_sym_EQ, + STATE(7254), 1, sym_comment, [212442] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11303), 1, + ACTIONS(11394), 1, anon_sym_EQ, - STATE(7403), 1, + STATE(7255), 1, sym_comment, [212455] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11305), 1, - anon_sym_RBRACK, - STATE(7404), 1, + ACTIONS(11396), 1, + anon_sym_target, + STATE(7256), 1, sym_comment, [212468] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11307), 1, - sym_identifier, - STATE(7405), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11398), 1, + anon_sym_RBRACK, + STATE(7257), 1, sym_comment, [212481] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11309), 1, - anon_sym_EQ, - STATE(7406), 1, + ACTIONS(11400), 1, + anon_sym_RBRACK, + STATE(7258), 1, sym_comment, [212494] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11311), 1, + ACTIONS(11402), 1, anon_sym_RBRACK, - STATE(7407), 1, + STATE(7259), 1, sym_comment, [212507] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11313), 1, - anon_sym_RBRACK, - STATE(7408), 1, + ACTIONS(11404), 1, + anon_sym_EQ_GT, + STATE(7260), 1, sym_comment, [212520] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11315), 1, - anon_sym_RBRACK, - STATE(7409), 1, + ACTIONS(9470), 1, + anon_sym_EQ_GT, + STATE(7261), 1, sym_comment, [212533] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11317), 1, + ACTIONS(11406), 1, anon_sym_RBRACK, - STATE(7410), 1, + STATE(7262), 1, sym_comment, [212546] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11319), 1, + ACTIONS(9466), 1, anon_sym_EQ_GT, - STATE(7411), 1, + STATE(7263), 1, sym_comment, [212559] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11321), 1, + ACTIONS(11408), 1, anon_sym_RBRACK, - STATE(7412), 1, + STATE(7264), 1, sym_comment, [212572] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11323), 1, - anon_sym_from, - STATE(7413), 1, + ACTIONS(9716), 1, + anon_sym_LBRACE, + STATE(7265), 1, sym_comment, [212585] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11325), 1, - anon_sym_new, - STATE(7414), 1, + ACTIONS(11410), 1, + anon_sym_RBRACK, + STATE(7266), 1, sym_comment, [212598] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11327), 1, - anon_sym_RPAREN, - STATE(7415), 1, + ACTIONS(11412), 1, + sym_identifier, + STATE(7267), 1, sym_comment, [212611] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11329), 1, + ACTIONS(11414), 1, anon_sym_RBRACK, - STATE(7416), 1, + STATE(7268), 1, sym_comment, [212624] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11331), 1, + ACTIONS(11416), 1, anon_sym_RBRACK, - STATE(7417), 1, + STATE(7269), 1, sym_comment, [212637] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6040), 1, - anon_sym_in, - STATE(7418), 1, + ACTIONS(11418), 1, + anon_sym_RBRACK, + STATE(7270), 1, sym_comment, [212650] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11333), 1, - sym_identifier, - STATE(7419), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11420), 1, + anon_sym_RBRACK, + STATE(7271), 1, sym_comment, [212663] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11335), 1, - anon_sym_RBRACK, - STATE(7420), 1, + ACTIONS(11422), 1, + anon_sym_EQ_GT, + STATE(7272), 1, sym_comment, [212676] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11337), 1, - anon_sym_COLON, - STATE(7421), 1, + ACTIONS(11424), 1, + anon_sym_EQ, + STATE(7273), 1, sym_comment, [212689] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11339), 1, - anon_sym_RBRACK, - STATE(7422), 1, + ACTIONS(11426), 1, + anon_sym_SLASH2, + STATE(7274), 1, sym_comment, [212702] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5930), 1, - anon_sym_RPAREN, - STATE(7423), 1, + ACTIONS(11428), 1, + anon_sym_COLON, + STATE(7275), 1, sym_comment, [212715] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11341), 1, - anon_sym_RBRACK, - STATE(7424), 1, + ACTIONS(11430), 1, + sym_identifier, + STATE(7276), 1, sym_comment, [212728] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11343), 1, - anon_sym_RBRACK, - STATE(7425), 1, + ACTIONS(11432), 1, + sym_identifier, + STATE(7277), 1, sym_comment, [212741] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11345), 1, - anon_sym_RPAREN, - STATE(7426), 1, + ACTIONS(11434), 1, + anon_sym_RBRACK, + STATE(7278), 1, sym_comment, [212754] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11347), 1, + ACTIONS(11436), 1, sym_identifier, - STATE(7427), 1, + STATE(7279), 1, sym_comment, [212767] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11349), 1, + ACTIONS(11438), 1, sym_identifier, - STATE(7428), 1, + STATE(7280), 1, sym_comment, [212780] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11351), 1, - anon_sym_RBRACK, - STATE(7429), 1, + ACTIONS(11440), 1, + sym_identifier, + STATE(7281), 1, sym_comment, [212793] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11353), 1, - anon_sym_RBRACK, - STATE(7430), 1, + ACTIONS(4962), 1, + anon_sym_RPAREN, + STATE(7282), 1, sym_comment, [212806] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11355), 1, - sym_identifier, - STATE(7431), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11442), 1, + anon_sym_while, + STATE(7283), 1, sym_comment, [212819] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11357), 1, - anon_sym_RPAREN, - STATE(7432), 1, + ACTIONS(11444), 1, + anon_sym_EQ_GT, + STATE(7284), 1, sym_comment, [212832] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5042), 1, - anon_sym_RPAREN, - STATE(7433), 1, + ACTIONS(11446), 1, + sym_identifier, + STATE(7285), 1, sym_comment, [212845] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(11359), 1, - anon_sym_EQ_GT, - STATE(7434), 1, - sym_comment, - [212858] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11361), 1, - anon_sym_symbol, - STATE(7435), 1, + ACTIONS(11448), 1, + sym_identifier, + STATE(7286), 1, sym_comment, - [212871] = 4, + [212858] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11363), 1, + ACTIONS(11450), 1, sym_identifier, - STATE(7436), 1, + STATE(7287), 1, + sym_comment, + [212871] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5302), 1, + anon_sym_RPAREN, + STATE(7288), 1, sym_comment, [212884] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11365), 1, - sym_number, - STATE(7437), 1, + ACTIONS(11452), 1, + anon_sym_EQ_GT, + STATE(7289), 1, sym_comment, [212897] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11367), 1, - anon_sym_EQ, - STATE(7438), 1, + ACTIONS(11454), 1, + anon_sym_EQ_GT, + STATE(7290), 1, sym_comment, [212910] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11369), 1, - anon_sym_RPAREN, - STATE(7439), 1, + ACTIONS(11456), 1, + anon_sym_EQ_GT, + STATE(7291), 1, sym_comment, [212923] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11371), 1, + ACTIONS(11458), 1, sym_identifier, - STATE(7440), 1, + STATE(7292), 1, sym_comment, [212936] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11373), 1, - sym_identifier, - STATE(7441), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11460), 1, + anon_sym_RPAREN, + STATE(7293), 1, sym_comment, [212949] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11375), 1, - anon_sym_EQ_GT, - STATE(7442), 1, + ACTIONS(11462), 1, + sym_identifier, + STATE(7294), 1, sym_comment, [212962] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11377), 1, - anon_sym_COLON, - STATE(7443), 1, + ACTIONS(11464), 1, + sym_identifier, + STATE(7295), 1, sym_comment, [212975] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11379), 1, + ACTIONS(11466), 1, sym_identifier, - STATE(7444), 1, + STATE(7296), 1, sym_comment, [212988] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11381), 1, - sym_identifier, - STATE(7445), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11468), 1, + sym_number, + STATE(7297), 1, sym_comment, [213001] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11383), 1, - anon_sym_EQ_GT, - STATE(7446), 1, + ACTIONS(11470), 1, + anon_sym_RPAREN, + STATE(7298), 1, sym_comment, [213014] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11385), 1, - sym_identifier, - STATE(7447), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11472), 1, + anon_sym_EQ_GT, + STATE(7299), 1, sym_comment, [213027] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11387), 1, - anon_sym_EQ_GT, - STATE(7448), 1, + ACTIONS(11474), 1, + sym_identifier, + STATE(7300), 1, sym_comment, [213040] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9707), 1, + ACTIONS(11476), 1, anon_sym_RBRACK, - STATE(7449), 1, + STATE(7301), 1, sym_comment, [213053] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11389), 1, - anon_sym_EQ, - STATE(7450), 1, + ACTIONS(10622), 1, + anon_sym_from, + STATE(7302), 1, sym_comment, [213066] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5028), 1, - anon_sym_RPAREN, - STATE(7451), 1, + ACTIONS(5880), 1, + anon_sym_RBRACK, + STATE(7303), 1, sym_comment, [213079] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11391), 1, - anon_sym_RBRACK, - STATE(7452), 1, + ACTIONS(5865), 1, + anon_sym_RPAREN, + STATE(7304), 1, sym_comment, [213092] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11393), 1, - anon_sym_RBRACK, - STATE(7453), 1, + ACTIONS(11478), 1, + anon_sym_RPAREN, + STATE(7305), 1, sym_comment, [213105] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11395), 1, - anon_sym_RBRACK, - STATE(7454), 1, + ACTIONS(11480), 1, + sym_identifier, + STATE(7306), 1, sym_comment, [213118] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11397), 1, - sym_identifier, - STATE(7455), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11482), 1, + anon_sym_as, + STATE(7307), 1, sym_comment, [213131] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11399), 1, - anon_sym_LBRACE, - STATE(7456), 1, + ACTIONS(11484), 1, + anon_sym_RBRACK, + STATE(7308), 1, sym_comment, [213144] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11401), 1, - anon_sym_symbol, - STATE(7457), 1, + ACTIONS(11486), 1, + sym_identifier, + STATE(7309), 1, sym_comment, [213157] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11403), 1, - anon_sym_RBRACK, - STATE(7458), 1, + ACTIONS(11488), 1, + anon_sym_symbol, + STATE(7310), 1, sym_comment, [213170] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11405), 1, - anon_sym_RBRACK, - STATE(7459), 1, + ACTIONS(7065), 1, + anon_sym_is, + STATE(7311), 1, sym_comment, [213183] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11407), 1, - anon_sym_RBRACK, - STATE(7460), 1, + ACTIONS(4970), 1, + anon_sym_RPAREN, + STATE(7312), 1, sym_comment, [213196] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11409), 1, - anon_sym_RPAREN, - STATE(7461), 1, + ACTIONS(11490), 1, + anon_sym_EQ_GT, + STATE(7313), 1, sym_comment, [213209] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5882), 1, - anon_sym_RBRACK, - STATE(7462), 1, + ACTIONS(3118), 1, + anon_sym_LBRACE, + STATE(7314), 1, sym_comment, [213222] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5357), 1, - anon_sym_RPAREN, - STATE(7463), 1, + ACTIONS(11492), 1, + anon_sym_RBRACK, + STATE(7315), 1, sym_comment, [213235] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11411), 1, - anon_sym_RBRACK, - STATE(7464), 1, + ACTIONS(11494), 1, + anon_sym_EQ_GT, + STATE(7316), 1, sym_comment, [213248] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11413), 1, - anon_sym_LBRACK, - STATE(7465), 1, + ACTIONS(11496), 1, + anon_sym_EQ, + STATE(7317), 1, sym_comment, [213261] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11415), 1, - anon_sym_function, - STATE(7466), 1, + ACTIONS(6312), 1, + anon_sym_in, + STATE(7318), 1, sym_comment, [213274] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11417), 1, - anon_sym_RBRACK, - STATE(7467), 1, + ACTIONS(11498), 1, + anon_sym_EQ_GT, + STATE(7319), 1, sym_comment, [213287] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11419), 1, + ACTIONS(11500), 1, anon_sym_RBRACK, - STATE(7468), 1, + STATE(7320), 1, sym_comment, [213300] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11421), 1, - sym_identifier, - STATE(7469), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11502), 1, + anon_sym_EQ_GT, + STATE(7321), 1, sym_comment, [213313] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10211), 1, - anon_sym_RBRACE, - STATE(7470), 1, + ACTIONS(11504), 1, + anon_sym_EQ_GT, + STATE(7322), 1, sym_comment, [213326] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11423), 1, - sym_identifier, - STATE(7471), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11506), 1, + anon_sym_EQ_GT, + STATE(7323), 1, sym_comment, [213339] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11425), 1, - sym_identifier, - STATE(7472), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11508), 1, + anon_sym_RBRACK, + STATE(7324), 1, sym_comment, [213352] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8311), 1, - sym_identifier, - STATE(7473), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11510), 1, + anon_sym_EQ_GT, + STATE(7325), 1, sym_comment, [213365] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11427), 1, - anon_sym_EQ_GT, - STATE(7474), 1, + ACTIONS(11512), 1, + anon_sym_RBRACK, + STATE(7326), 1, sym_comment, [213378] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11429), 1, - sym_identifier, - STATE(7475), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(5935), 1, + anon_sym_is, + STATE(7327), 1, sym_comment, [213391] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11431), 1, - anon_sym_namespace, - STATE(7476), 1, + ACTIONS(11514), 1, + anon_sym_RPAREN, + STATE(7328), 1, sym_comment, [213404] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11433), 1, - anon_sym_from, - STATE(7477), 1, + ACTIONS(11516), 1, + sym_identifier, + STATE(7329), 1, sym_comment, [213417] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11435), 1, - anon_sym_RBRACK, - STATE(7478), 1, + ACTIONS(11518), 1, + sym_identifier, + STATE(7330), 1, sym_comment, [213430] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11437), 1, - anon_sym_EQ_GT, - STATE(7479), 1, + ACTIONS(11520), 1, + anon_sym_EQ, + STATE(7331), 1, sym_comment, [213443] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11439), 1, - anon_sym_EQ_GT, - STATE(7480), 1, + ACTIONS(11522), 1, + anon_sym_function, + STATE(7332), 1, sym_comment, [213456] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11441), 1, - anon_sym_EQ, - STATE(7481), 1, + ACTIONS(11524), 1, + sym_number, + STATE(7333), 1, sym_comment, [213469] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11443), 1, - anon_sym_SLASH2, - STATE(7482), 1, + ACTIONS(11526), 1, + sym_identifier, + STATE(7334), 1, sym_comment, [213482] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11445), 1, - anon_sym_RPAREN, - STATE(7483), 1, + ACTIONS(11528), 1, + sym_identifier, + STATE(7335), 1, sym_comment, [213495] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10371), 1, - anon_sym_EQ, - STATE(7484), 1, + ACTIONS(8565), 1, + sym_identifier, + STATE(7336), 1, sym_comment, [213508] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11447), 1, - sym_identifier, - STATE(7485), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(4895), 1, + anon_sym_RPAREN, + STATE(7337), 1, sym_comment, [213521] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11449), 1, - anon_sym_EQ_GT, - STATE(7486), 1, + ACTIONS(11530), 1, + anon_sym_symbol, + STATE(7338), 1, sym_comment, [213534] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11451), 1, - sym_identifier, - STATE(7487), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11532), 1, + anon_sym_namespace, + STATE(7339), 1, sym_comment, [213547] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11453), 1, - anon_sym_as, - STATE(7488), 1, + ACTIONS(11534), 1, + anon_sym_EQ_GT, + STATE(7340), 1, sym_comment, [213560] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5024), 1, + ACTIONS(5884), 1, anon_sym_RPAREN, - STATE(7489), 1, + STATE(7341), 1, sym_comment, [213573] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11455), 1, - sym_identifier, - STATE(7490), 1, - sym_comment, - [213586] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11457), 1, + ACTIONS(11536), 1, anon_sym_RBRACK, - STATE(7491), 1, + STATE(7342), 1, sym_comment, - [213599] = 4, + [213586] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11459), 1, + ACTIONS(11538), 1, sym_identifier, - STATE(7492), 1, + STATE(7343), 1, sym_comment, - [213612] = 4, - ACTIONS(3), 1, + [213599] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2696), 1, aux_sym_comment_token1, + ACTIONS(11540), 1, + anon_sym_RPAREN, + STATE(7344), 1, + sym_comment, + [213612] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11461), 1, - anon_sym_SLASH2, - STATE(7493), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(10253), 1, + anon_sym_RBRACK, + STATE(7345), 1, sym_comment, [213625] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11463), 1, - anon_sym_LPAREN, - STATE(7494), 1, + ACTIONS(11542), 1, + anon_sym_class, + STATE(7346), 1, sym_comment, [213638] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11465), 1, - ts_builtin_sym_end, - STATE(7495), 1, + ACTIONS(11544), 1, + anon_sym_namespace, + STATE(7347), 1, sym_comment, [213651] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11467), 1, + ACTIONS(11546), 1, sym_identifier, - STATE(7496), 1, + STATE(7348), 1, sym_comment, [213664] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11469), 1, + ACTIONS(11548), 1, sym_identifier, - STATE(7497), 1, + STATE(7349), 1, sym_comment, [213677] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5906), 1, - anon_sym_RBRACE, - STATE(7498), 1, + ACTIONS(11550), 1, + anon_sym_EQ_GT, + STATE(7350), 1, sym_comment, [213690] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11471), 1, - anon_sym_class, - STATE(7499), 1, + ACTIONS(11552), 1, + anon_sym_from, + STATE(7351), 1, sym_comment, [213703] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(9663), 1, - anon_sym_GT, - STATE(7500), 1, + ACTIONS(11554), 1, + anon_sym_EQ, + STATE(7352), 1, sym_comment, [213716] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6235), 1, - anon_sym_in, - STATE(7501), 1, + ACTIONS(11556), 1, + anon_sym_EQ_GT, + STATE(7353), 1, sym_comment, [213729] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11473), 1, - anon_sym_EQ_GT, - STATE(7502), 1, + ACTIONS(11558), 1, + sym_identifier, + STATE(7354), 1, sym_comment, [213742] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11475), 1, - anon_sym_EQ, - STATE(7503), 1, + ACTIONS(9977), 1, + sym_identifier, + STATE(7355), 1, sym_comment, [213755] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11477), 1, - anon_sym_EQ_GT, - STATE(7504), 1, + ACTIONS(11560), 1, + anon_sym_class, + STATE(7356), 1, sym_comment, [213768] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11479), 1, - anon_sym_EQ_GT, - STATE(7505), 1, + ACTIONS(11562), 1, + sym_identifier, + STATE(7357), 1, sym_comment, [213781] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11481), 1, - anon_sym_EQ_GT, - STATE(7506), 1, + ACTIONS(11564), 1, + sym_identifier, + STATE(7358), 1, sym_comment, [213794] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11483), 1, - anon_sym_RPAREN, - STATE(7507), 1, + ACTIONS(9904), 1, + anon_sym_EQ, + STATE(7359), 1, sym_comment, [213807] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11485), 1, - anon_sym_COLON, - STATE(7508), 1, + ACTIONS(11566), 1, + anon_sym_EQ, + STATE(7360), 1, sym_comment, [213820] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5812), 1, - anon_sym_in, - STATE(7509), 1, + ACTIONS(5894), 1, + anon_sym_RBRACK, + STATE(7361), 1, sym_comment, [213833] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11487), 1, - anon_sym_EQ_GT, - STATE(7510), 1, + ACTIONS(11568), 1, + sym_identifier, + STATE(7362), 1, sym_comment, [213846] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11489), 1, + ACTIONS(11570), 1, anon_sym_EQ, - STATE(7511), 1, + STATE(7363), 1, sym_comment, [213859] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11491), 1, - sym_number, - STATE(7512), 1, + ACTIONS(11572), 1, + anon_sym_new, + STATE(7364), 1, sym_comment, [213872] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11493), 1, - sym_identifier, - STATE(7513), 1, + ACTIONS(11574), 1, + anon_sym_SLASH2, + STATE(7365), 1, sym_comment, [213885] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11495), 1, - anon_sym_EQ, - STATE(7514), 1, + ACTIONS(11576), 1, + sym_identifier, + STATE(7366), 1, sym_comment, [213898] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11497), 1, - anon_sym_symbol, - STATE(7515), 1, + ACTIONS(11578), 1, + sym_identifier, + STATE(7367), 1, sym_comment, [213911] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(6301), 1, - anon_sym_in, - STATE(7516), 1, + ACTIONS(11580), 1, + anon_sym_COLON, + STATE(7368), 1, sym_comment, [213924] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11499), 1, - anon_sym_from, - STATE(7517), 1, + ACTIONS(11582), 1, + sym_identifier, + STATE(7369), 1, sym_comment, [213937] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5401), 1, - anon_sym_in, - STATE(7518), 1, + ACTIONS(11584), 1, + anon_sym_EQ_GT, + STATE(7370), 1, sym_comment, [213950] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11501), 1, - anon_sym_target, - STATE(7519), 1, + ACTIONS(11586), 1, + anon_sym_EQ_GT, + STATE(7371), 1, sym_comment, [213963] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11503), 1, - anon_sym_EQ_GT, - STATE(7520), 1, + ACTIONS(9625), 1, + anon_sym_RBRACK, + STATE(7372), 1, sym_comment, [213976] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11505), 1, + ACTIONS(11588), 1, anon_sym_EQ_GT, - STATE(7521), 1, + STATE(7373), 1, sym_comment, [213989] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11507), 1, - anon_sym_EQ_GT, - STATE(7522), 1, + ACTIONS(11590), 1, + anon_sym_RBRACK, + STATE(7374), 1, sym_comment, [214002] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11509), 1, - anon_sym_COLON, - STATE(7523), 1, + ACTIONS(11592), 1, + ts_builtin_sym_end, + STATE(7375), 1, sym_comment, [214015] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11511), 1, + ACTIONS(11594), 1, sym_identifier, - STATE(7524), 1, + STATE(7376), 1, sym_comment, [214028] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11513), 1, - sym_regex_pattern, - STATE(7525), 1, + ACTIONS(11596), 1, + sym_identifier, + STATE(7377), 1, sym_comment, [214041] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11515), 1, - sym_identifier, - STATE(7526), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11598), 1, + anon_sym_EQ, + STATE(7378), 1, sym_comment, [214054] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11517), 1, - sym_identifier, - STATE(7527), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11600), 1, + anon_sym_class, + STATE(7379), 1, sym_comment, [214067] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11519), 1, - anon_sym_from, - STATE(7528), 1, + ACTIONS(5916), 1, + anon_sym_COLON, + STATE(7380), 1, sym_comment, [214080] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11521), 1, + ACTIONS(11602), 1, anon_sym_class, - STATE(7529), 1, + STATE(7381), 1, sym_comment, [214093] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11523), 1, + ACTIONS(11604), 1, anon_sym_namespace, - STATE(7530), 1, + STATE(7382), 1, sym_comment, [214106] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11525), 1, - anon_sym_as, - STATE(7531), 1, + ACTIONS(5921), 1, + anon_sym_RPAREN, + STATE(7383), 1, sym_comment, [214119] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11527), 1, - anon_sym_require, - STATE(7532), 1, + ACTIONS(4859), 1, + anon_sym_is, + STATE(7384), 1, sym_comment, [214132] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11529), 1, - anon_sym_EQ_GT, - STATE(7533), 1, + ACTIONS(5890), 1, + anon_sym_RBRACE, + STATE(7385), 1, sym_comment, [214145] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11531), 1, - anon_sym_symbol, - STATE(7534), 1, + ACTIONS(5941), 1, + anon_sym_RPAREN, + STATE(7386), 1, sym_comment, [214158] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11533), 1, - sym_identifier, - STATE(7535), 1, - sym_comment, - [214171] = 4, - ACTIONS(3), 1, + ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11535), 1, - sym_identifier, - STATE(7536), 1, + ACTIONS(5943), 1, + anon_sym_RPAREN, + STATE(7387), 1, sym_comment, - [214184] = 4, + [214171] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11537), 1, + ACTIONS(11606), 1, anon_sym_RBRACK, - STATE(7537), 1, + STATE(7388), 1, sym_comment, - [214197] = 4, + [214184] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(3074), 1, - anon_sym_LBRACE, - STATE(7538), 1, + ACTIONS(5937), 1, + anon_sym_RPAREN, + STATE(7389), 1, sym_comment, - [214210] = 4, + [214197] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9907), 1, + ACTIONS(9555), 1, sym_identifier, - STATE(7539), 1, + STATE(7390), 1, sym_comment, - [214223] = 4, + [214210] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11539), 1, + ACTIONS(11608), 1, anon_sym_class, - STATE(7540), 1, + STATE(7391), 1, sym_comment, - [214236] = 4, + [214223] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11541), 1, - sym_number, - STATE(7541), 1, + ACTIONS(5480), 1, + anon_sym_in, + STATE(7392), 1, sym_comment, - [214249] = 4, + [214236] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11543), 1, - anon_sym_from, - STATE(7542), 1, + ACTIONS(10298), 1, + anon_sym_GT, + STATE(7393), 1, sym_comment, - [214262] = 4, + [214249] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11545), 1, + ACTIONS(11610), 1, anon_sym_EQ, - STATE(7543), 1, + STATE(7394), 1, sym_comment, - [214275] = 4, + [214262] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5355), 1, - anon_sym_RPAREN, - STATE(7544), 1, + ACTIONS(11612), 1, + sym_identifier, + STATE(7395), 1, sym_comment, - [214288] = 4, + [214275] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11547), 1, + ACTIONS(11614), 1, sym_identifier, - STATE(7545), 1, + STATE(7396), 1, sym_comment, - [214301] = 4, + [214288] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11549), 1, + ACTIONS(11616), 1, anon_sym_EQ, - STATE(7546), 1, + STATE(7397), 1, sym_comment, - [214314] = 4, + [214301] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11551), 1, + ACTIONS(11618), 1, anon_sym_new, - STATE(7547), 1, + STATE(7398), 1, sym_comment, - [214327] = 4, + [214314] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11553), 1, - anon_sym_RBRACK, - STATE(7548), 1, + ACTIONS(5192), 1, + anon_sym_RPAREN, + STATE(7399), 1, + sym_comment, + [214327] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11620), 1, + sym_identifier, + STATE(7400), 1, sym_comment, [214340] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11555), 1, + ACTIONS(11622), 1, sym_identifier, - STATE(7549), 1, + STATE(7401), 1, sym_comment, [214353] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11557), 1, - anon_sym_RBRACK, - STATE(7550), 1, + ACTIONS(11624), 1, + anon_sym_COLON, + STATE(7402), 1, sym_comment, [214366] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11559), 1, - anon_sym_COLON, - STATE(7551), 1, + ACTIONS(7473), 1, + anon_sym_is, + STATE(7403), 1, sym_comment, [214379] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(10276), 1, + ACTIONS(5791), 1, anon_sym_RBRACK, - STATE(7552), 1, + STATE(7404), 1, sym_comment, [214392] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11561), 1, - anon_sym_RBRACK, - STATE(7553), 1, + ACTIONS(11626), 1, + sym_regex_pattern, + STATE(7405), 1, sym_comment, [214405] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11563), 1, + ACTIONS(11628), 1, anon_sym_EQ_GT, - STATE(7554), 1, + STATE(7406), 1, sym_comment, [214418] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11565), 1, - anon_sym_EQ_GT, - STATE(7555), 1, + ACTIONS(9613), 1, + anon_sym_GT, + STATE(7407), 1, sym_comment, [214431] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11567), 1, - sym_identifier, - STATE(7556), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11630), 1, + anon_sym_EQ_GT, + STATE(7408), 1, sym_comment, [214444] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11569), 1, - anon_sym_RPAREN, - STATE(7557), 1, + ACTIONS(11632), 1, + anon_sym_class, + STATE(7409), 1, sym_comment, [214457] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11571), 1, - sym_identifier, - STATE(7558), 1, + ACTIONS(2696), 1, + aux_sym_comment_token1, + ACTIONS(11634), 1, + anon_sym_namespace, + STATE(7410), 1, sym_comment, [214470] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11573), 1, - anon_sym_RBRACK, - STATE(7559), 1, + ACTIONS(11636), 1, + anon_sym_GT, + STATE(7411), 1, sym_comment, [214483] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5040), 1, + ACTIONS(11638), 1, anon_sym_RPAREN, - STATE(7560), 1, + STATE(7412), 1, sym_comment, [214496] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11575), 1, - anon_sym_EQ, - STATE(7561), 1, + ACTIONS(11640), 1, + sym_identifier, + STATE(7413), 1, sym_comment, [214509] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11577), 1, + ACTIONS(11642), 1, sym_identifier, - STATE(7562), 1, + STATE(7414), 1, sym_comment, [214522] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11579), 1, + ACTIONS(10358), 1, anon_sym_RBRACK, - STATE(7563), 1, + STATE(7415), 1, sym_comment, [214535] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11581), 1, - anon_sym_class, - STATE(7564), 1, + ACTIONS(11644), 1, + anon_sym_EQ_GT, + STATE(7416), 1, sym_comment, [214548] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11583), 1, - anon_sym_namespace, - STATE(7565), 1, + ACTIONS(11646), 1, + sym_identifier, + STATE(7417), 1, sym_comment, [214561] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11585), 1, + ACTIONS(9852), 1, sym_identifier, - STATE(7566), 1, + STATE(7418), 1, sym_comment, [214574] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11587), 1, - anon_sym_RBRACK, - STATE(7567), 1, + ACTIONS(11648), 1, + anon_sym_class, + STATE(7419), 1, sym_comment, [214587] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11589), 1, - anon_sym_RPAREN, - STATE(7568), 1, - sym_comment, - [214600] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11591), 1, - anon_sym_EQ_GT, - STATE(7569), 1, - sym_comment, - [214613] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4857), 1, - anon_sym_is, - STATE(7570), 1, - sym_comment, - [214626] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11593), 1, - anon_sym_RBRACK, - STATE(7571), 1, - sym_comment, - [214639] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11595), 1, - anon_sym_RBRACK, - STATE(7572), 1, - sym_comment, - [214652] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9831), 1, + ACTIONS(11650), 1, sym_identifier, - STATE(7573), 1, - sym_comment, - [214665] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11597), 1, - anon_sym_class, - STATE(7574), 1, + STATE(7420), 1, sym_comment, - [214678] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, + [214600] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(5916), 1, - anon_sym_RBRACE, - STATE(7575), 1, - sym_comment, - [214691] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11599), 1, - anon_sym_RPAREN, - STATE(7576), 1, + ACTIONS(11652), 1, + sym_identifier, + STATE(7421), 1, sym_comment, - [214704] = 4, + [214613] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11601), 1, + ACTIONS(11654), 1, anon_sym_EQ, - STATE(7577), 1, + STATE(7422), 1, sym_comment, - [214717] = 4, + [214626] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11603), 1, + ACTIONS(11656), 1, sym_identifier, - STATE(7578), 1, + STATE(7423), 1, sym_comment, - [214730] = 4, + [214639] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11605), 1, + ACTIONS(11658), 1, sym_identifier, - STATE(7579), 1, + STATE(7424), 1, sym_comment, - [214743] = 4, + [214652] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11607), 1, + ACTIONS(11660), 1, anon_sym_EQ, - STATE(7580), 1, + STATE(7425), 1, sym_comment, - [214756] = 4, + [214665] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11609), 1, + ACTIONS(11662), 1, anon_sym_new, - STATE(7581), 1, + STATE(7426), 1, sym_comment, - [214769] = 4, + [214678] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11611), 1, - anon_sym_RBRACK, - STATE(7582), 1, + ACTIONS(11664), 1, + anon_sym_EQ_GT, + STATE(7427), 1, sym_comment, - [214782] = 4, + [214691] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11613), 1, + ACTIONS(11666), 1, sym_identifier, - STATE(7583), 1, + STATE(7428), 1, sym_comment, - [214795] = 4, + [214704] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5002), 1, + ACTIONS(5064), 1, anon_sym_RPAREN, - STATE(7584), 1, + STATE(7429), 1, sym_comment, - [214808] = 4, + [214717] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11615), 1, + ACTIONS(11668), 1, anon_sym_COLON, - STATE(7585), 1, - sym_comment, - [214821] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(10311), 1, - anon_sym_GT, - STATE(7586), 1, + STATE(7430), 1, sym_comment, - [214834] = 4, + [214730] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11617), 1, + ACTIONS(11670), 1, anon_sym_RBRACK, - STATE(7587), 1, - sym_comment, - [214847] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11619), 1, - sym_identifier, - STATE(7588), 1, + STATE(7431), 1, sym_comment, - [214860] = 4, + [214743] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(5848), 1, - anon_sym_RPAREN, - STATE(7589), 1, + ACTIONS(11672), 1, + anon_sym_RBRACK, + STATE(7432), 1, sym_comment, - [214873] = 4, + [214756] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11621), 1, + ACTIONS(11674), 1, anon_sym_RBRACK, - STATE(7590), 1, - sym_comment, - [214886] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11623), 1, - sym_identifier, - STATE(7591), 1, + STATE(7433), 1, sym_comment, - [214899] = 4, + [214769] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11625), 1, + ACTIONS(11676), 1, anon_sym_class, - STATE(7592), 1, + STATE(7434), 1, sym_comment, - [214912] = 4, + [214782] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11627), 1, + ACTIONS(11678), 1, anon_sym_namespace, - STATE(7593), 1, - sym_comment, - [214925] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11629), 1, - anon_sym_RBRACK, - STATE(7594), 1, + STATE(7435), 1, sym_comment, - [214938] = 4, + [214795] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11631), 1, + ACTIONS(11680), 1, anon_sym_RBRACK, - STATE(7595), 1, + STATE(7436), 1, sym_comment, - [214951] = 4, + [214808] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11633), 1, + ACTIONS(11682), 1, sym_identifier, - STATE(7596), 1, + STATE(7437), 1, sym_comment, - [214964] = 4, + [214821] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11635), 1, + ACTIONS(11684), 1, anon_sym_RBRACK, - STATE(7597), 1, + STATE(7438), 1, sym_comment, - [214977] = 4, + [214834] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11637), 1, + ACTIONS(11686), 1, anon_sym_RBRACK, - STATE(7598), 1, + STATE(7439), 1, sym_comment, - [214990] = 4, + [214847] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11639), 1, + ACTIONS(11688), 1, anon_sym_RBRACK, - STATE(7599), 1, - sym_comment, - [215003] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(5298), 1, - anon_sym_RPAREN, - STATE(7600), 1, + STATE(7440), 1, sym_comment, - [215016] = 4, + [214860] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(9813), 1, sym_identifier, - STATE(7601), 1, + STATE(7441), 1, sym_comment, - [215029] = 4, + [214873] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11641), 1, + ACTIONS(11690), 1, anon_sym_class, - STATE(7602), 1, - sym_comment, - [215042] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11643), 1, - anon_sym_RBRACK, - STATE(7603), 1, + STATE(7442), 1, sym_comment, - [215055] = 4, + [214886] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11645), 1, - anon_sym_RBRACK, - STATE(7604), 1, + ACTIONS(11692), 1, + anon_sym_RPAREN, + STATE(7443), 1, sym_comment, - [215068] = 4, + [214899] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11647), 1, + ACTIONS(11694), 1, anon_sym_EQ, - STATE(7605), 1, + STATE(7444), 1, sym_comment, - [215081] = 4, + [214912] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11649), 1, + ACTIONS(11696), 1, anon_sym_RBRACK, - STATE(7606), 1, + STATE(7445), 1, sym_comment, - [215094] = 4, + [214925] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11651), 1, + ACTIONS(11698), 1, sym_identifier, - STATE(7607), 1, + STATE(7446), 1, sym_comment, - [215107] = 4, + [214938] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11653), 1, + ACTIONS(11700), 1, anon_sym_EQ, - STATE(7608), 1, - sym_comment, - [215120] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11655), 1, - anon_sym_new, - STATE(7609), 1, + STATE(7447), 1, sym_comment, - [215133] = 4, + [214951] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11657), 1, + ACTIONS(11702), 1, anon_sym_EQ_GT, - STATE(7610), 1, + STATE(7448), 1, sym_comment, - [215146] = 4, + [214964] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11659), 1, + ACTIONS(11704), 1, sym_identifier, - STATE(7611), 1, - sym_comment, - [215159] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11661), 1, - anon_sym_EQ_GT, - STATE(7612), 1, + STATE(7449), 1, sym_comment, - [215172] = 4, + [214977] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11663), 1, + ACTIONS(11706), 1, anon_sym_COLON, - STATE(7613), 1, - sym_comment, - [215185] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11665), 1, - anon_sym_RBRACK, - STATE(7614), 1, - sym_comment, - [215198] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11667), 1, - anon_sym_SLASH2, - STATE(7615), 1, - sym_comment, - [215211] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11669), 1, - anon_sym_EQ, - STATE(7616), 1, - sym_comment, - [215224] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11671), 1, - anon_sym_class, - STATE(7617), 1, + STATE(7450), 1, sym_comment, - [215237] = 4, + [214990] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11673), 1, - anon_sym_namespace, - STATE(7618), 1, + ACTIONS(11708), 1, + anon_sym_symbol, + STATE(7451), 1, sym_comment, - [215250] = 4, + [215003] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11675), 1, + ACTIONS(11710), 1, anon_sym_RBRACK, - STATE(7619), 1, - sym_comment, - [215263] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(3080), 1, - anon_sym_LBRACE, - STATE(7620), 1, - sym_comment, - [215276] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11677), 1, - anon_sym_EQ_GT, - STATE(7621), 1, + STATE(7452), 1, sym_comment, - [215289] = 4, + [215016] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11679), 1, + ACTIONS(11712), 1, anon_sym_RBRACK, - STATE(7622), 1, - sym_comment, - [215302] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11681), 1, - anon_sym_EQ_GT, - STATE(7623), 1, + STATE(7453), 1, sym_comment, - [215315] = 4, + [215029] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9774), 1, + ACTIONS(8274), 1, sym_identifier, - STATE(7624), 1, - sym_comment, - [215328] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11683), 1, - anon_sym_class, - STATE(7625), 1, - sym_comment, - [215341] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11685), 1, - anon_sym_EQ_GT, - STATE(7626), 1, - sym_comment, - [215354] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11687), 1, - anon_sym_EQ, - STATE(7627), 1, + STATE(7454), 1, sym_comment, - [215367] = 4, + [215042] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11689), 1, - anon_sym_RBRACK, - STATE(7628), 1, + ACTIONS(11714), 1, + anon_sym_function, + STATE(7455), 1, sym_comment, - [215380] = 4, + [215055] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11691), 1, + ACTIONS(11716), 1, sym_identifier, - STATE(7629), 1, - sym_comment, - [215393] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11693), 1, - anon_sym_EQ, - STATE(7630), 1, + STATE(7456), 1, sym_comment, - [215406] = 4, + [215068] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11695), 1, + ACTIONS(11718), 1, anon_sym_RBRACK, - STATE(7631), 1, + STATE(7457), 1, sym_comment, - [215419] = 4, + [215081] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11697), 1, + ACTIONS(11720), 1, sym_identifier, - STATE(7632), 1, - sym_comment, - [215432] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11699), 1, - anon_sym_COLON, - STATE(7633), 1, - sym_comment, - [215445] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11701), 1, - anon_sym_RBRACK, - STATE(7634), 1, + STATE(7458), 1, sym_comment, - [215458] = 4, + [215094] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11703), 1, - anon_sym_RBRACK, - STATE(7635), 1, + ACTIONS(11722), 1, + anon_sym_EQ_GT, + STATE(7459), 1, sym_comment, - [215471] = 4, + [215107] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11705), 1, + ACTIONS(11724), 1, anon_sym_RBRACK, - STATE(7636), 1, + STATE(7460), 1, sym_comment, - [215484] = 4, + [215120] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8608), 1, + ACTIONS(8268), 1, sym_identifier, - STATE(7637), 1, + STATE(7461), 1, sym_comment, - [215497] = 4, + [215133] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11707), 1, + ACTIONS(11726), 1, anon_sym_function, - STATE(7638), 1, - sym_comment, - [215510] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11709), 1, - anon_sym_RBRACK, - STATE(7639), 1, + STATE(7462), 1, sym_comment, - [215523] = 4, + [215146] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11711), 1, + ACTIONS(11728), 1, anon_sym_RBRACK, - STATE(7640), 1, - sym_comment, - [215536] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11713), 1, - sym_identifier, - STATE(7641), 1, - sym_comment, - [215549] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(4911), 1, - anon_sym_in, - STATE(7642), 1, - sym_comment, - [215562] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11715), 1, - anon_sym_EQ_GT, - STATE(7643), 1, - sym_comment, - [215575] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8622), 1, - sym_identifier, - STATE(7644), 1, - sym_comment, - [215588] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(11717), 1, - anon_sym_function, - STATE(7645), 1, - sym_comment, - [215601] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2696), 1, - aux_sym_comment_token1, - ACTIONS(8087), 1, - anon_sym_EQ, - STATE(7646), 1, + STATE(7463), 1, sym_comment, - [215614] = 4, + [215159] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11719), 1, + ACTIONS(11730), 1, sym_identifier, - STATE(7647), 1, + STATE(7464), 1, sym_comment, - [215627] = 4, + [215172] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11721), 1, - anon_sym_EQ_GT, - STATE(7648), 1, + ACTIONS(11732), 1, + sym_number, + STATE(7465), 1, sym_comment, - [215640] = 4, + [215185] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8624), 1, + ACTIONS(8258), 1, sym_identifier, - STATE(7649), 1, + STATE(7466), 1, sym_comment, - [215653] = 4, + [215198] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11723), 1, + ACTIONS(11734), 1, anon_sym_function, - STATE(7650), 1, + STATE(7467), 1, sym_comment, - [215666] = 4, + [215211] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11725), 1, - anon_sym_RPAREN, - STATE(7651), 1, + ACTIONS(11736), 1, + anon_sym_RBRACK, + STATE(7468), 1, sym_comment, - [215679] = 4, + [215224] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11727), 1, + ACTIONS(11738), 1, sym_identifier, - STATE(7652), 1, + STATE(7469), 1, sym_comment, - [215692] = 4, + [215237] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11729), 1, - anon_sym_RPAREN, - STATE(7653), 1, + ACTIONS(11740), 1, + anon_sym_RBRACK, + STATE(7470), 1, sym_comment, - [215705] = 4, + [215250] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8626), 1, + ACTIONS(8250), 1, sym_identifier, - STATE(7654), 1, + STATE(7471), 1, sym_comment, - [215718] = 4, + [215263] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11731), 1, + ACTIONS(11742), 1, anon_sym_function, - STATE(7655), 1, + STATE(7472), 1, sym_comment, - [215731] = 4, + [215276] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11733), 1, - anon_sym_EQ_GT, - STATE(7656), 1, + ACTIONS(11744), 1, + anon_sym_RBRACK, + STATE(7473), 1, sym_comment, - [215744] = 4, + [215289] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11735), 1, + ACTIONS(11746), 1, sym_identifier, - STATE(7657), 1, + STATE(7474), 1, sym_comment, - [215757] = 4, + [215302] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11737), 1, - anon_sym_RPAREN, - STATE(7658), 1, + ACTIONS(11748), 1, + anon_sym_RBRACK, + STATE(7475), 1, sym_comment, - [215770] = 4, + [215315] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8664), 1, + ACTIONS(8242), 1, sym_identifier, - STATE(7659), 1, + STATE(7476), 1, sym_comment, - [215783] = 4, + [215328] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11739), 1, + ACTIONS(11750), 1, anon_sym_function, - STATE(7660), 1, + STATE(7477), 1, sym_comment, - [215796] = 4, + [215341] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2696), 1, aux_sym_comment_token1, - ACTIONS(11741), 1, - anon_sym_RPAREN, - STATE(7661), 1, + ACTIONS(11752), 1, + anon_sym_RBRACK, + STATE(7478), 1, sym_comment, - [215809] = 1, - ACTIONS(11743), 1, + [215354] = 1, + ACTIONS(11754), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(2000)] = 0, - [SMALL_STATE(2001)] = 95, - [SMALL_STATE(2002)] = 192, - [SMALL_STATE(2003)] = 285, - [SMALL_STATE(2004)] = 360, - [SMALL_STATE(2005)] = 435, - [SMALL_STATE(2006)] = 528, - [SMALL_STATE(2007)] = 603, - [SMALL_STATE(2008)] = 678, - [SMALL_STATE(2009)] = 771, - [SMALL_STATE(2010)] = 866, - [SMALL_STATE(2011)] = 959, - [SMALL_STATE(2012)] = 1052, - [SMALL_STATE(2013)] = 1145, - [SMALL_STATE(2014)] = 1238, - [SMALL_STATE(2015)] = 1333, - [SMALL_STATE(2016)] = 1428, - [SMALL_STATE(2017)] = 1521, - [SMALL_STATE(2018)] = 1614, - [SMALL_STATE(2019)] = 1707, - [SMALL_STATE(2020)] = 1782, - [SMALL_STATE(2021)] = 1875, - [SMALL_STATE(2022)] = 1968, - [SMALL_STATE(2023)] = 2043, - [SMALL_STATE(2024)] = 2138, - [SMALL_STATE(2025)] = 2231, - [SMALL_STATE(2026)] = 2326, - [SMALL_STATE(2027)] = 2423, - [SMALL_STATE(2028)] = 2518, - [SMALL_STATE(2029)] = 2611, - [SMALL_STATE(2030)] = 2706, - [SMALL_STATE(2031)] = 2803, - [SMALL_STATE(2032)] = 2896, - [SMALL_STATE(2033)] = 2989, - [SMALL_STATE(2034)] = 3082, - [SMALL_STATE(2035)] = 3175, - [SMALL_STATE(2036)] = 3250, - [SMALL_STATE(2037)] = 3343, - [SMALL_STATE(2038)] = 3436, - [SMALL_STATE(2039)] = 3532, - [SMALL_STATE(2040)] = 3606, - [SMALL_STATE(2041)] = 3698, - [SMALL_STATE(2042)] = 3790, - [SMALL_STATE(2043)] = 3884, - [SMALL_STATE(2044)] = 3980, - [SMALL_STATE(2045)] = 4072, - [SMALL_STATE(2046)] = 4146, - [SMALL_STATE(2047)] = 4240, - [SMALL_STATE(2048)] = 4332, - [SMALL_STATE(2049)] = 4410, - [SMALL_STATE(2050)] = 4502, - [SMALL_STATE(2051)] = 4598, - [SMALL_STATE(2052)] = 4694, - [SMALL_STATE(2053)] = 4794, - [SMALL_STATE(2054)] = 4885, - [SMALL_STATE(2055)] = 4962, - [SMALL_STATE(2056)] = 5045, - [SMALL_STATE(2057)] = 5128, - [SMALL_STATE(2058)] = 5219, - [SMALL_STATE(2059)] = 5310, - [SMALL_STATE(2060)] = 5401, - [SMALL_STATE(2061)] = 5496, - [SMALL_STATE(2062)] = 5579, - [SMALL_STATE(2063)] = 5676, - [SMALL_STATE(2064)] = 5767, - [SMALL_STATE(2065)] = 5850, - [SMALL_STATE(2066)] = 5941, - [SMALL_STATE(2067)] = 6024, - [SMALL_STATE(2068)] = 6119, - [SMALL_STATE(2069)] = 6212, - [SMALL_STATE(2070)] = 6297, - [SMALL_STATE(2071)] = 6388, - [SMALL_STATE(2072)] = 6479, - [SMALL_STATE(2073)] = 6564, - [SMALL_STATE(2074)] = 6643, - [SMALL_STATE(2075)] = 6734, - [SMALL_STATE(2076)] = 6809, - [SMALL_STATE(2077)] = 6900, - [SMALL_STATE(2078)] = 6997, - [SMALL_STATE(2079)] = 7070, - [SMALL_STATE(2080)] = 7165, - [SMALL_STATE(2081)] = 7260, - [SMALL_STATE(2082)] = 7351, - [SMALL_STATE(2083)] = 7442, - [SMALL_STATE(2084)] = 7525, - [SMALL_STATE(2085)] = 7598, - [SMALL_STATE(2086)] = 7680, - [SMALL_STATE(2087)] = 7774, - [SMALL_STATE(2088)] = 7858, - [SMALL_STATE(2089)] = 7946, - [SMALL_STATE(2090)] = 8038, - [SMALL_STATE(2091)] = 8108, - [SMALL_STATE(2092)] = 8190, - [SMALL_STATE(2093)] = 8280, - [SMALL_STATE(2094)] = 8370, - [SMALL_STATE(2095)] = 8448, - [SMALL_STATE(2096)] = 8530, - [SMALL_STATE(2097)] = 8620, - [SMALL_STATE(2098)] = 8704, - [SMALL_STATE(2099)] = 8798, - [SMALL_STATE(2100)] = 8892, - [SMALL_STATE(2101)] = 8962, - [SMALL_STATE(2102)] = 9042, - [SMALL_STATE(2103)] = 9120, - [SMALL_STATE(2104)] = 9198, - [SMALL_STATE(2105)] = 9280, - [SMALL_STATE(2106)] = 9358, - [SMALL_STATE(2107)] = 9446, - [SMALL_STATE(2108)] = 9528, - [SMALL_STATE(2109)] = 9598, - [SMALL_STATE(2110)] = 9678, - [SMALL_STATE(2111)] = 9772, - [SMALL_STATE(2112)] = 9852, - [SMALL_STATE(2113)] = 9925, - [SMALL_STATE(2114)] = 9994, - [SMALL_STATE(2115)] = 10063, - [SMALL_STATE(2116)] = 10140, - [SMALL_STATE(2117)] = 10219, - [SMALL_STATE(2118)] = 10298, - [SMALL_STATE(2119)] = 10375, - [SMALL_STATE(2120)] = 10464, - [SMALL_STATE(2121)] = 10543, - [SMALL_STATE(2122)] = 10622, - [SMALL_STATE(2123)] = 10693, - [SMALL_STATE(2124)] = 10774, - [SMALL_STATE(2125)] = 10855, - [SMALL_STATE(2126)] = 10934, - [SMALL_STATE(2127)] = 11011, - [SMALL_STATE(2128)] = 11090, - [SMALL_STATE(2129)] = 11179, - [SMALL_STATE(2130)] = 11256, - [SMALL_STATE(2131)] = 11327, - [SMALL_STATE(2132)] = 11414, - [SMALL_STATE(2133)] = 11487, - [SMALL_STATE(2134)] = 11558, - [SMALL_STATE(2135)] = 11643, - [SMALL_STATE(2136)] = 11714, - [SMALL_STATE(2137)] = 11797, - [SMALL_STATE(2138)] = 11874, - [SMALL_STATE(2139)] = 11945, - [SMALL_STATE(2140)] = 12028, - [SMALL_STATE(2141)] = 12099, - [SMALL_STATE(2142)] = 12168, - [SMALL_STATE(2143)] = 12245, - [SMALL_STATE(2144)] = 12324, - [SMALL_STATE(2145)] = 12395, - [SMALL_STATE(2146)] = 12464, - [SMALL_STATE(2147)] = 12547, - [SMALL_STATE(2148)] = 12616, - [SMALL_STATE(2149)] = 12709, - [SMALL_STATE(2150)] = 12778, - [SMALL_STATE(2151)] = 12847, - [SMALL_STATE(2152)] = 12922, - [SMALL_STATE(2153)] = 12991, - [SMALL_STATE(2154)] = 13068, - [SMALL_STATE(2155)] = 13149, - [SMALL_STATE(2156)] = 13220, - [SMALL_STATE(2157)] = 13299, - [SMALL_STATE(2158)] = 13378, - [SMALL_STATE(2159)] = 13453, - [SMALL_STATE(2160)] = 13542, - [SMALL_STATE(2161)] = 13619, - [SMALL_STATE(2162)] = 13688, - [SMALL_STATE(2163)] = 13759, - [SMALL_STATE(2164)] = 13832, - [SMALL_STATE(2165)] = 13905, - [SMALL_STATE(2166)] = 13990, - [SMALL_STATE(2167)] = 14059, - [SMALL_STATE(2168)] = 14152, - [SMALL_STATE(2169)] = 14223, - [SMALL_STATE(2170)] = 14302, - [SMALL_STATE(2171)] = 14373, - [SMALL_STATE(2172)] = 14451, - [SMALL_STATE(2173)] = 14529, - [SMALL_STATE(2174)] = 14605, - [SMALL_STATE(2175)] = 14681, - [SMALL_STATE(2176)] = 14755, - [SMALL_STATE(2177)] = 14833, - [SMALL_STATE(2178)] = 14907, - [SMALL_STATE(2179)] = 14985, - [SMALL_STATE(2180)] = 15067, - [SMALL_STATE(2181)] = 15145, - [SMALL_STATE(2182)] = 15229, - [SMALL_STATE(2183)] = 15305, - [SMALL_STATE(2184)] = 15387, - [SMALL_STATE(2185)] = 15465, - [SMALL_STATE(2186)] = 15543, - [SMALL_STATE(2187)] = 15621, - [SMALL_STATE(2188)] = 15709, - [SMALL_STATE(2189)] = 15787, - [SMALL_STATE(2190)] = 15869, - [SMALL_STATE(2191)] = 15951, - [SMALL_STATE(2192)] = 16027, - [SMALL_STATE(2193)] = 16154, - [SMALL_STATE(2194)] = 16281, - [SMALL_STATE(2195)] = 16362, - [SMALL_STATE(2196)] = 16433, - [SMALL_STATE(2197)] = 16506, - [SMALL_STATE(2198)] = 16585, - [SMALL_STATE(2199)] = 16662, - [SMALL_STATE(2200)] = 16741, - [SMALL_STATE(2201)] = 16812, - [SMALL_STATE(2202)] = 16887, - [SMALL_STATE(2203)] = 16962, - [SMALL_STATE(2204)] = 17037, - [SMALL_STATE(2205)] = 17112, - [SMALL_STATE(2206)] = 17187, - [SMALL_STATE(2207)] = 17262, - [SMALL_STATE(2208)] = 17337, - [SMALL_STATE(2209)] = 17464, - [SMALL_STATE(2210)] = 17543, - [SMALL_STATE(2211)] = 17618, - [SMALL_STATE(2212)] = 17695, - [SMALL_STATE(2213)] = 17822, - [SMALL_STATE(2214)] = 17949, - [SMALL_STATE(2215)] = 18028, - [SMALL_STATE(2216)] = 18155, - [SMALL_STATE(2217)] = 18282, - [SMALL_STATE(2218)] = 18409, - [SMALL_STATE(2219)] = 18536, - [SMALL_STATE(2220)] = 18610, - [SMALL_STATE(2221)] = 18684, - [SMALL_STATE(2222)] = 18756, - [SMALL_STATE(2223)] = 18830, - [SMALL_STATE(2224)] = 18908, - [SMALL_STATE(2225)] = 18982, - [SMALL_STATE(2226)] = 19056, - [SMALL_STATE(2227)] = 19130, - [SMALL_STATE(2228)] = 19208, - [SMALL_STATE(2229)] = 19284, - [SMALL_STATE(2230)] = 19356, - [SMALL_STATE(2231)] = 19432, - [SMALL_STATE(2232)] = 19506, - [SMALL_STATE(2233)] = 19580, - [SMALL_STATE(2234)] = 19703, - [SMALL_STATE(2235)] = 19826, - [SMALL_STATE(2236)] = 19899, - [SMALL_STATE(2237)] = 20022, - [SMALL_STATE(2238)] = 20095, - [SMALL_STATE(2239)] = 20170, - [SMALL_STATE(2240)] = 20241, - [SMALL_STATE(2241)] = 20364, - [SMALL_STATE(2242)] = 20437, - [SMALL_STATE(2243)] = 20560, - [SMALL_STATE(2244)] = 20683, - [SMALL_STATE(2245)] = 20756, - [SMALL_STATE(2246)] = 20829, - [SMALL_STATE(2247)] = 20952, - [SMALL_STATE(2248)] = 21025, - [SMALL_STATE(2249)] = 21096, - [SMALL_STATE(2250)] = 21169, - [SMALL_STATE(2251)] = 21242, - [SMALL_STATE(2252)] = 21365, - [SMALL_STATE(2253)] = 21488, - [SMALL_STATE(2254)] = 21561, - [SMALL_STATE(2255)] = 21634, - [SMALL_STATE(2256)] = 21707, - [SMALL_STATE(2257)] = 21830, - [SMALL_STATE(2258)] = 21953, - [SMALL_STATE(2259)] = 22076, - [SMALL_STATE(2260)] = 22149, - [SMALL_STATE(2261)] = 22272, - [SMALL_STATE(2262)] = 22395, - [SMALL_STATE(2263)] = 22518, - [SMALL_STATE(2264)] = 22641, - [SMALL_STATE(2265)] = 22764, - [SMALL_STATE(2266)] = 22837, - [SMALL_STATE(2267)] = 22960, - [SMALL_STATE(2268)] = 23083, - [SMALL_STATE(2269)] = 23156, - [SMALL_STATE(2270)] = 23279, - [SMALL_STATE(2271)] = 23352, - [SMALL_STATE(2272)] = 23425, - [SMALL_STATE(2273)] = 23548, - [SMALL_STATE(2274)] = 23671, - [SMALL_STATE(2275)] = 23794, - [SMALL_STATE(2276)] = 23867, - [SMALL_STATE(2277)] = 23940, - [SMALL_STATE(2278)] = 24013, - [SMALL_STATE(2279)] = 24086, - [SMALL_STATE(2280)] = 24159, - [SMALL_STATE(2281)] = 24282, - [SMALL_STATE(2282)] = 24405, - [SMALL_STATE(2283)] = 24528, - [SMALL_STATE(2284)] = 24651, - [SMALL_STATE(2285)] = 24721, - [SMALL_STATE(2286)] = 24791, - [SMALL_STATE(2287)] = 24861, - [SMALL_STATE(2288)] = 24931, - [SMALL_STATE(2289)] = 25001, - [SMALL_STATE(2290)] = 25071, - [SMALL_STATE(2291)] = 25141, - [SMALL_STATE(2292)] = 25211, - [SMALL_STATE(2293)] = 25281, - [SMALL_STATE(2294)] = 25400, - [SMALL_STATE(2295)] = 25519, - [SMALL_STATE(2296)] = 25638, - [SMALL_STATE(2297)] = 25757, - [SMALL_STATE(2298)] = 25876, - [SMALL_STATE(2299)] = 25995, - [SMALL_STATE(2300)] = 26114, - [SMALL_STATE(2301)] = 26233, - [SMALL_STATE(2302)] = 26352, - [SMALL_STATE(2303)] = 26471, - [SMALL_STATE(2304)] = 26595, - [SMALL_STATE(2305)] = 26719, - [SMALL_STATE(2306)] = 26843, - [SMALL_STATE(2307)] = 26967, - [SMALL_STATE(2308)] = 27091, - [SMALL_STATE(2309)] = 27208, - [SMALL_STATE(2310)] = 27319, - [SMALL_STATE(2311)] = 27436, - [SMALL_STATE(2312)] = 27553, - [SMALL_STATE(2313)] = 27670, - [SMALL_STATE(2314)] = 27781, - [SMALL_STATE(2315)] = 27892, - [SMALL_STATE(2316)] = 28003, - [SMALL_STATE(2317)] = 28120, - [SMALL_STATE(2318)] = 28237, - [SMALL_STATE(2319)] = 28354, - [SMALL_STATE(2320)] = 28471, - [SMALL_STATE(2321)] = 28588, - [SMALL_STATE(2322)] = 28705, - [SMALL_STATE(2323)] = 28822, - [SMALL_STATE(2324)] = 28939, - [SMALL_STATE(2325)] = 29056, - [SMALL_STATE(2326)] = 29173, - [SMALL_STATE(2327)] = 29284, - [SMALL_STATE(2328)] = 29395, - [SMALL_STATE(2329)] = 29512, - [SMALL_STATE(2330)] = 29629, - [SMALL_STATE(2331)] = 29746, - [SMALL_STATE(2332)] = 29863, - [SMALL_STATE(2333)] = 29980, - [SMALL_STATE(2334)] = 30097, - [SMALL_STATE(2335)] = 30208, - [SMALL_STATE(2336)] = 30325, - [SMALL_STATE(2337)] = 30442, - [SMALL_STATE(2338)] = 30559, - [SMALL_STATE(2339)] = 30676, - [SMALL_STATE(2340)] = 30793, - [SMALL_STATE(2341)] = 30910, - [SMALL_STATE(2342)] = 31027, - [SMALL_STATE(2343)] = 31142, - [SMALL_STATE(2344)] = 31259, - [SMALL_STATE(2345)] = 31376, - [SMALL_STATE(2346)] = 31493, - [SMALL_STATE(2347)] = 31610, - [SMALL_STATE(2348)] = 31727, - [SMALL_STATE(2349)] = 31789, - [SMALL_STATE(2350)] = 31851, - [SMALL_STATE(2351)] = 31965, - [SMALL_STATE(2352)] = 32081, - [SMALL_STATE(2353)] = 32152, - [SMALL_STATE(2354)] = 32255, - [SMALL_STATE(2355)] = 32332, - [SMALL_STATE(2356)] = 32401, - [SMALL_STATE(2357)] = 32472, - [SMALL_STATE(2358)] = 32543, - [SMALL_STATE(2359)] = 32603, - [SMALL_STATE(2360)] = 32669, - [SMALL_STATE(2361)] = 32733, - [SMALL_STATE(2362)] = 32799, - [SMALL_STATE(2363)] = 32859, - [SMALL_STATE(2364)] = 32919, - [SMALL_STATE(2365)] = 32979, - [SMALL_STATE(2366)] = 33043, - [SMALL_STATE(2367)] = 33105, - [SMALL_STATE(2368)] = 33165, - [SMALL_STATE(2369)] = 33225, - [SMALL_STATE(2370)] = 33291, - [SMALL_STATE(2371)] = 33353, - [SMALL_STATE(2372)] = 33415, - [SMALL_STATE(2373)] = 33481, - [SMALL_STATE(2374)] = 33541, - [SMALL_STATE(2375)] = 33605, - [SMALL_STATE(2376)] = 33664, - [SMALL_STATE(2377)] = 33781, - [SMALL_STATE(2378)] = 33840, - [SMALL_STATE(2379)] = 33899, - [SMALL_STATE(2380)] = 33958, - [SMALL_STATE(2381)] = 34017, - [SMALL_STATE(2382)] = 34112, - [SMALL_STATE(2383)] = 34199, - [SMALL_STATE(2384)] = 34258, - [SMALL_STATE(2385)] = 34317, - [SMALL_STATE(2386)] = 34402, - [SMALL_STATE(2387)] = 34493, - [SMALL_STATE(2388)] = 34596, - [SMALL_STATE(2389)] = 34697, - [SMALL_STATE(2390)] = 34814, - [SMALL_STATE(2391)] = 34913, - [SMALL_STATE(2392)] = 34972, - [SMALL_STATE(2393)] = 35037, - [SMALL_STATE(2394)] = 35154, - [SMALL_STATE(2395)] = 35213, - [SMALL_STATE(2396)] = 35272, - [SMALL_STATE(2397)] = 35331, - [SMALL_STATE(2398)] = 35394, - [SMALL_STATE(2399)] = 35453, - [SMALL_STATE(2400)] = 35578, - [SMALL_STATE(2401)] = 35637, - [SMALL_STATE(2402)] = 35696, - [SMALL_STATE(2403)] = 35755, - [SMALL_STATE(2404)] = 35814, - [SMALL_STATE(2405)] = 35873, - [SMALL_STATE(2406)] = 35932, - [SMALL_STATE(2407)] = 35991, - [SMALL_STATE(2408)] = 36050, - [SMALL_STATE(2409)] = 36175, - [SMALL_STATE(2410)] = 36234, - [SMALL_STATE(2411)] = 36293, - [SMALL_STATE(2412)] = 36410, - [SMALL_STATE(2413)] = 36535, - [SMALL_STATE(2414)] = 36594, - [SMALL_STATE(2415)] = 36653, - [SMALL_STATE(2416)] = 36718, - [SMALL_STATE(2417)] = 36835, - [SMALL_STATE(2418)] = 36960, - [SMALL_STATE(2419)] = 37085, - [SMALL_STATE(2420)] = 37144, - [SMALL_STATE(2421)] = 37203, - [SMALL_STATE(2422)] = 37262, - [SMALL_STATE(2423)] = 37321, - [SMALL_STATE(2424)] = 37380, - [SMALL_STATE(2425)] = 37439, - [SMALL_STATE(2426)] = 37498, - [SMALL_STATE(2427)] = 37557, - [SMALL_STATE(2428)] = 37616, - [SMALL_STATE(2429)] = 37675, - [SMALL_STATE(2430)] = 37734, - [SMALL_STATE(2431)] = 37795, - [SMALL_STATE(2432)] = 37854, - [SMALL_STATE(2433)] = 37919, - [SMALL_STATE(2434)] = 37978, - [SMALL_STATE(2435)] = 38039, - [SMALL_STATE(2436)] = 38100, - [SMALL_STATE(2437)] = 38159, - [SMALL_STATE(2438)] = 38220, - [SMALL_STATE(2439)] = 38337, - [SMALL_STATE(2440)] = 38396, - [SMALL_STATE(2441)] = 38513, - [SMALL_STATE(2442)] = 38600, - [SMALL_STATE(2443)] = 38659, - [SMALL_STATE(2444)] = 38718, - [SMALL_STATE(2445)] = 38777, - [SMALL_STATE(2446)] = 38836, - [SMALL_STATE(2447)] = 38895, - [SMALL_STATE(2448)] = 38990, - [SMALL_STATE(2449)] = 39049, - [SMALL_STATE(2450)] = 39108, - [SMALL_STATE(2451)] = 39167, - [SMALL_STATE(2452)] = 39226, - [SMALL_STATE(2453)] = 39285, - [SMALL_STATE(2454)] = 39344, - [SMALL_STATE(2455)] = 39421, - [SMALL_STATE(2456)] = 39480, - [SMALL_STATE(2457)] = 39597, - [SMALL_STATE(2458)] = 39682, - [SMALL_STATE(2459)] = 39747, - [SMALL_STATE(2460)] = 39808, - [SMALL_STATE(2461)] = 39869, - [SMALL_STATE(2462)] = 39986, - [SMALL_STATE(2463)] = 40045, - [SMALL_STATE(2464)] = 40110, - [SMALL_STATE(2465)] = 40189, - [SMALL_STATE(2466)] = 40254, - [SMALL_STATE(2467)] = 40313, - [SMALL_STATE(2468)] = 40372, - [SMALL_STATE(2469)] = 40431, - [SMALL_STATE(2470)] = 40498, - [SMALL_STATE(2471)] = 40557, - [SMALL_STATE(2472)] = 40674, - [SMALL_STATE(2473)] = 40791, - [SMALL_STATE(2474)] = 40908, - [SMALL_STATE(2475)] = 40973, - [SMALL_STATE(2476)] = 41038, - [SMALL_STATE(2477)] = 41099, - [SMALL_STATE(2478)] = 41194, - [SMALL_STATE(2479)] = 41253, - [SMALL_STATE(2480)] = 41312, - [SMALL_STATE(2481)] = 41429, - [SMALL_STATE(2482)] = 41488, - [SMALL_STATE(2483)] = 41547, - [SMALL_STATE(2484)] = 41606, - [SMALL_STATE(2485)] = 41667, - [SMALL_STATE(2486)] = 41792, - [SMALL_STATE(2487)] = 41851, - [SMALL_STATE(2488)] = 41910, - [SMALL_STATE(2489)] = 41991, - [SMALL_STATE(2490)] = 42052, - [SMALL_STATE(2491)] = 42117, - [SMALL_STATE(2492)] = 42184, - [SMALL_STATE(2493)] = 42279, - [SMALL_STATE(2494)] = 42346, - [SMALL_STATE(2495)] = 42409, - [SMALL_STATE(2496)] = 42468, - [SMALL_STATE(2497)] = 42563, - [SMALL_STATE(2498)] = 42622, - [SMALL_STATE(2499)] = 42681, - [SMALL_STATE(2500)] = 42742, - [SMALL_STATE(2501)] = 42803, - [SMALL_STATE(2502)] = 42862, - [SMALL_STATE(2503)] = 42971, - [SMALL_STATE(2504)] = 43030, - [SMALL_STATE(2505)] = 43089, - [SMALL_STATE(2506)] = 43148, - [SMALL_STATE(2507)] = 43207, - [SMALL_STATE(2508)] = 43266, - [SMALL_STATE(2509)] = 43325, - [SMALL_STATE(2510)] = 43442, - [SMALL_STATE(2511)] = 43567, - [SMALL_STATE(2512)] = 43632, - [SMALL_STATE(2513)] = 43691, - [SMALL_STATE(2514)] = 43808, - [SMALL_STATE(2515)] = 43871, - [SMALL_STATE(2516)] = 43930, - [SMALL_STATE(2517)] = 43991, - [SMALL_STATE(2518)] = 44096, - [SMALL_STATE(2519)] = 44159, - [SMALL_STATE(2520)] = 44224, - [SMALL_STATE(2521)] = 44289, - [SMALL_STATE(2522)] = 44348, - [SMALL_STATE(2523)] = 44407, - [SMALL_STATE(2524)] = 44466, - [SMALL_STATE(2525)] = 44525, - [SMALL_STATE(2526)] = 44584, - [SMALL_STATE(2527)] = 44643, - [SMALL_STATE(2528)] = 44702, - [SMALL_STATE(2529)] = 44761, - [SMALL_STATE(2530)] = 44856, - [SMALL_STATE(2531)] = 44915, - [SMALL_STATE(2532)] = 44974, - [SMALL_STATE(2533)] = 45033, - [SMALL_STATE(2534)] = 45158, - [SMALL_STATE(2535)] = 45265, - [SMALL_STATE(2536)] = 45390, - [SMALL_STATE(2537)] = 45478, - [SMALL_STATE(2538)] = 45536, - [SMALL_STATE(2539)] = 45654, - [SMALL_STATE(2540)] = 45714, - [SMALL_STATE(2541)] = 45772, - [SMALL_STATE(2542)] = 45832, - [SMALL_STATE(2543)] = 45892, - [SMALL_STATE(2544)] = 45958, - [SMALL_STATE(2545)] = 46076, - [SMALL_STATE(2546)] = 46196, - [SMALL_STATE(2547)] = 46290, - [SMALL_STATE(2548)] = 46366, - [SMALL_STATE(2549)] = 46424, - [SMALL_STATE(2550)] = 46510, - [SMALL_STATE(2551)] = 46598, - [SMALL_STATE(2552)] = 46706, - [SMALL_STATE(2553)] = 46764, - [SMALL_STATE(2554)] = 46822, - [SMALL_STATE(2555)] = 46906, - [SMALL_STATE(2556)] = 46964, - [SMALL_STATE(2557)] = 47080, - [SMALL_STATE(2558)] = 47196, - [SMALL_STATE(2559)] = 47312, - [SMALL_STATE(2560)] = 47432, - [SMALL_STATE(2561)] = 47552, - [SMALL_STATE(2562)] = 47636, - [SMALL_STATE(2563)] = 47694, - [SMALL_STATE(2564)] = 47752, - [SMALL_STATE(2565)] = 47810, - [SMALL_STATE(2566)] = 47888, - [SMALL_STATE(2567)] = 47946, - [SMALL_STATE(2568)] = 48032, - [SMALL_STATE(2569)] = 48090, - [SMALL_STATE(2570)] = 48148, - [SMALL_STATE(2571)] = 48206, - [SMALL_STATE(2572)] = 48266, - [SMALL_STATE(2573)] = 48324, - [SMALL_STATE(2574)] = 48402, - [SMALL_STATE(2575)] = 48462, - [SMALL_STATE(2576)] = 48578, - [SMALL_STATE(2577)] = 48694, - [SMALL_STATE(2578)] = 48814, - [SMALL_STATE(2579)] = 48872, - [SMALL_STATE(2580)] = 48988, - [SMALL_STATE(2581)] = 49046, - [SMALL_STATE(2582)] = 49162, - [SMALL_STATE(2583)] = 49246, - [SMALL_STATE(2584)] = 49366, - [SMALL_STATE(2585)] = 49424, - [SMALL_STATE(2586)] = 49544, - [SMALL_STATE(2587)] = 49664, - [SMALL_STATE(2588)] = 49780, - [SMALL_STATE(2589)] = 49896, - [SMALL_STATE(2590)] = 50016, - [SMALL_STATE(2591)] = 50132, - [SMALL_STATE(2592)] = 50252, - [SMALL_STATE(2593)] = 50372, - [SMALL_STATE(2594)] = 50462, - [SMALL_STATE(2595)] = 50536, - [SMALL_STATE(2596)] = 50616, - [SMALL_STATE(2597)] = 50720, - [SMALL_STATE(2598)] = 50826, - [SMALL_STATE(2599)] = 50912, - [SMALL_STATE(2600)] = 51010, - [SMALL_STATE(2601)] = 51110, - [SMALL_STATE(2602)] = 51212, - [SMALL_STATE(2603)] = 51296, - [SMALL_STATE(2604)] = 51354, - [SMALL_STATE(2605)] = 51412, - [SMALL_STATE(2606)] = 51470, - [SMALL_STATE(2607)] = 51528, - [SMALL_STATE(2608)] = 51614, - [SMALL_STATE(2609)] = 51708, - [SMALL_STATE(2610)] = 51816, - [SMALL_STATE(2611)] = 51932, - [SMALL_STATE(2612)] = 52034, - [SMALL_STATE(2613)] = 52150, - [SMALL_STATE(2614)] = 52208, - [SMALL_STATE(2615)] = 52266, - [SMALL_STATE(2616)] = 52324, - [SMALL_STATE(2617)] = 52382, - [SMALL_STATE(2618)] = 52440, - [SMALL_STATE(2619)] = 52498, - [SMALL_STATE(2620)] = 52562, - [SMALL_STATE(2621)] = 52662, - [SMALL_STATE(2622)] = 52760, - [SMALL_STATE(2623)] = 52848, - [SMALL_STATE(2624)] = 52934, - [SMALL_STATE(2625)] = 52992, - [SMALL_STATE(2626)] = 53050, - [SMALL_STATE(2627)] = 53108, - [SMALL_STATE(2628)] = 53166, - [SMALL_STATE(2629)] = 53224, - [SMALL_STATE(2630)] = 53282, - [SMALL_STATE(2631)] = 53340, - [SMALL_STATE(2632)] = 53398, - [SMALL_STATE(2633)] = 53456, - [SMALL_STATE(2634)] = 53514, - [SMALL_STATE(2635)] = 53572, - [SMALL_STATE(2636)] = 53630, - [SMALL_STATE(2637)] = 53688, - [SMALL_STATE(2638)] = 53764, - [SMALL_STATE(2639)] = 53822, - [SMALL_STATE(2640)] = 53880, - [SMALL_STATE(2641)] = 53948, - [SMALL_STATE(2642)] = 54006, - [SMALL_STATE(2643)] = 54074, - [SMALL_STATE(2644)] = 54142, - [SMALL_STATE(2645)] = 54228, - [SMALL_STATE(2646)] = 54286, - [SMALL_STATE(2647)] = 54344, - [SMALL_STATE(2648)] = 54450, - [SMALL_STATE(2649)] = 54566, - [SMALL_STATE(2650)] = 54682, - [SMALL_STATE(2651)] = 54798, - [SMALL_STATE(2652)] = 54902, - [SMALL_STATE(2653)] = 55018, - [SMALL_STATE(2654)] = 55134, - [SMALL_STATE(2655)] = 55250, - [SMALL_STATE(2656)] = 55366, - [SMALL_STATE(2657)] = 55482, - [SMALL_STATE(2658)] = 55598, - [SMALL_STATE(2659)] = 55656, - [SMALL_STATE(2660)] = 55714, - [SMALL_STATE(2661)] = 55772, - [SMALL_STATE(2662)] = 55892, - [SMALL_STATE(2663)] = 55950, - [SMALL_STATE(2664)] = 56070, - [SMALL_STATE(2665)] = 56190, - [SMALL_STATE(2666)] = 56248, - [SMALL_STATE(2667)] = 56306, - [SMALL_STATE(2668)] = 56364, - [SMALL_STATE(2669)] = 56484, - [SMALL_STATE(2670)] = 56542, - [SMALL_STATE(2671)] = 56600, - [SMALL_STATE(2672)] = 56716, - [SMALL_STATE(2673)] = 56774, - [SMALL_STATE(2674)] = 56838, - [SMALL_STATE(2675)] = 56902, - [SMALL_STATE(2676)] = 56990, - [SMALL_STATE(2677)] = 57110, - [SMALL_STATE(2678)] = 57230, - [SMALL_STATE(2679)] = 57288, - [SMALL_STATE(2680)] = 57408, - [SMALL_STATE(2681)] = 57466, - [SMALL_STATE(2682)] = 57552, - [SMALL_STATE(2683)] = 57610, - [SMALL_STATE(2684)] = 57668, - [SMALL_STATE(2685)] = 57726, - [SMALL_STATE(2686)] = 57784, - [SMALL_STATE(2687)] = 57842, - [SMALL_STATE(2688)] = 57900, - [SMALL_STATE(2689)] = 57958, - [SMALL_STATE(2690)] = 58016, - [SMALL_STATE(2691)] = 58074, - [SMALL_STATE(2692)] = 58194, - [SMALL_STATE(2693)] = 58314, - [SMALL_STATE(2694)] = 58372, - [SMALL_STATE(2695)] = 58430, - [SMALL_STATE(2696)] = 58550, - [SMALL_STATE(2697)] = 58666, - [SMALL_STATE(2698)] = 58728, - [SMALL_STATE(2699)] = 58844, - [SMALL_STATE(2700)] = 58902, - [SMALL_STATE(2701)] = 59018, - [SMALL_STATE(2702)] = 59134, - [SMALL_STATE(2703)] = 59224, - [SMALL_STATE(2704)] = 59340, - [SMALL_STATE(2705)] = 59402, - [SMALL_STATE(2706)] = 59460, - [SMALL_STATE(2707)] = 59518, - [SMALL_STATE(2708)] = 59576, - [SMALL_STATE(2709)] = 59634, - [SMALL_STATE(2710)] = 59722, - [SMALL_STATE(2711)] = 59780, - [SMALL_STATE(2712)] = 59896, - [SMALL_STATE(2713)] = 60012, - [SMALL_STATE(2714)] = 60098, - [SMALL_STATE(2715)] = 60156, - [SMALL_STATE(2716)] = 60214, - [SMALL_STATE(2717)] = 60272, - [SMALL_STATE(2718)] = 60330, - [SMALL_STATE(2719)] = 60388, - [SMALL_STATE(2720)] = 60446, - [SMALL_STATE(2721)] = 60508, - [SMALL_STATE(2722)] = 60588, - [SMALL_STATE(2723)] = 60674, - [SMALL_STATE(2724)] = 60732, - [SMALL_STATE(2725)] = 60820, - [SMALL_STATE(2726)] = 60883, - [SMALL_STATE(2727)] = 60998, - [SMALL_STATE(2728)] = 61115, - [SMALL_STATE(2729)] = 61234, - [SMALL_STATE(2730)] = 61299, - [SMALL_STATE(2731)] = 61414, - [SMALL_STATE(2732)] = 61529, - [SMALL_STATE(2733)] = 61648, - [SMALL_STATE(2734)] = 61763, - [SMALL_STATE(2735)] = 61882, - [SMALL_STATE(2736)] = 62001, - [SMALL_STATE(2737)] = 62058, - [SMALL_STATE(2738)] = 62123, - [SMALL_STATE(2739)] = 62238, - [SMALL_STATE(2740)] = 62301, - [SMALL_STATE(2741)] = 62416, - [SMALL_STATE(2742)] = 62493, - [SMALL_STATE(2743)] = 62558, - [SMALL_STATE(2744)] = 62641, - [SMALL_STATE(2745)] = 62722, - [SMALL_STATE(2746)] = 62837, - [SMALL_STATE(2747)] = 62952, - [SMALL_STATE(2748)] = 63041, - [SMALL_STATE(2749)] = 63106, - [SMALL_STATE(2750)] = 63181, - [SMALL_STATE(2751)] = 63260, - [SMALL_STATE(2752)] = 63363, - [SMALL_STATE(2753)] = 63468, - [SMALL_STATE(2754)] = 63585, - [SMALL_STATE(2755)] = 63670, - [SMALL_STATE(2756)] = 63789, - [SMALL_STATE(2757)] = 63886, - [SMALL_STATE(2758)] = 63985, - [SMALL_STATE(2759)] = 64086, - [SMALL_STATE(2760)] = 64169, - [SMALL_STATE(2761)] = 64288, - [SMALL_STATE(2762)] = 64373, - [SMALL_STATE(2763)] = 64492, - [SMALL_STATE(2764)] = 64585, - [SMALL_STATE(2765)] = 64692, - [SMALL_STATE(2766)] = 64749, - [SMALL_STATE(2767)] = 64864, - [SMALL_STATE(2768)] = 64983, - [SMALL_STATE(2769)] = 65098, - [SMALL_STATE(2770)] = 65215, - [SMALL_STATE(2771)] = 65274, - [SMALL_STATE(2772)] = 65333, - [SMALL_STATE(2773)] = 65452, - [SMALL_STATE(2774)] = 65567, - [SMALL_STATE(2775)] = 65686, - [SMALL_STATE(2776)] = 65751, - [SMALL_STATE(2777)] = 65870, - [SMALL_STATE(2778)] = 65935, - [SMALL_STATE(2779)] = 66020, - [SMALL_STATE(2780)] = 66139, - [SMALL_STATE(2781)] = 66254, - [SMALL_STATE(2782)] = 66369, - [SMALL_STATE(2783)] = 66484, - [SMALL_STATE(2784)] = 66599, - [SMALL_STATE(2785)] = 66714, - [SMALL_STATE(2786)] = 66831, - [SMALL_STATE(2787)] = 66916, - [SMALL_STATE(2788)] = 67035, - [SMALL_STATE(2789)] = 67116, - [SMALL_STATE(2790)] = 67197, - [SMALL_STATE(2791)] = 67260, - [SMALL_STATE(2792)] = 67379, - [SMALL_STATE(2793)] = 67494, - [SMALL_STATE(2794)] = 67613, - [SMALL_STATE(2795)] = 67728, - [SMALL_STATE(2796)] = 67847, - [SMALL_STATE(2797)] = 67928, - [SMALL_STATE(2798)] = 68045, - [SMALL_STATE(2799)] = 68164, - [SMALL_STATE(2800)] = 68225, - [SMALL_STATE(2801)] = 68282, - [SMALL_STATE(2802)] = 68345, - [SMALL_STATE(2803)] = 68402, - [SMALL_STATE(2804)] = 68459, - [SMALL_STATE(2805)] = 68526, - [SMALL_STATE(2806)] = 68593, - [SMALL_STATE(2807)] = 68652, - [SMALL_STATE(2808)] = 68767, - [SMALL_STATE(2809)] = 68886, - [SMALL_STATE(2810)] = 69005, - [SMALL_STATE(2811)] = 69120, - [SMALL_STATE(2812)] = 69239, - [SMALL_STATE(2813)] = 69298, - [SMALL_STATE(2814)] = 69385, - [SMALL_STATE(2815)] = 69446, - [SMALL_STATE(2816)] = 69565, - [SMALL_STATE(2817)] = 69684, - [SMALL_STATE(2818)] = 69745, - [SMALL_STATE(2819)] = 69864, - [SMALL_STATE(2820)] = 69927, - [SMALL_STATE(2821)] = 69984, - [SMALL_STATE(2822)] = 70103, - [SMALL_STATE(2823)] = 70164, - [SMALL_STATE(2824)] = 70283, - [SMALL_STATE(2825)] = 70402, - [SMALL_STATE(2826)] = 70483, - [SMALL_STATE(2827)] = 70602, - [SMALL_STATE(2828)] = 70721, - [SMALL_STATE(2829)] = 70840, - [SMALL_STATE(2830)] = 70959, - [SMALL_STATE(2831)] = 71015, - [SMALL_STATE(2832)] = 71077, - [SMALL_STATE(2833)] = 71191, - [SMALL_STATE(2834)] = 71253, - [SMALL_STATE(2835)] = 71309, - [SMALL_STATE(2836)] = 71365, - [SMALL_STATE(2837)] = 71421, - [SMALL_STATE(2838)] = 71477, - [SMALL_STATE(2839)] = 71535, - [SMALL_STATE(2840)] = 71591, - [SMALL_STATE(2841)] = 71647, - [SMALL_STATE(2842)] = 71751, - [SMALL_STATE(2843)] = 71807, - [SMALL_STATE(2844)] = 71869, - [SMALL_STATE(2845)] = 71925, - [SMALL_STATE(2846)] = 71981, - [SMALL_STATE(2847)] = 72037, - [SMALL_STATE(2848)] = 72099, - [SMALL_STATE(2849)] = 72155, - [SMALL_STATE(2850)] = 72211, - [SMALL_STATE(2851)] = 72267, - [SMALL_STATE(2852)] = 72323, - [SMALL_STATE(2853)] = 72379, - [SMALL_STATE(2854)] = 72435, - [SMALL_STATE(2855)] = 72491, - [SMALL_STATE(2856)] = 72547, - [SMALL_STATE(2857)] = 72603, - [SMALL_STATE(2858)] = 72659, - [SMALL_STATE(2859)] = 72715, - [SMALL_STATE(2860)] = 72771, - [SMALL_STATE(2861)] = 72827, - [SMALL_STATE(2862)] = 72883, - [SMALL_STATE(2863)] = 72939, - [SMALL_STATE(2864)] = 72995, - [SMALL_STATE(2865)] = 73051, - [SMALL_STATE(2866)] = 73107, - [SMALL_STATE(2867)] = 73163, - [SMALL_STATE(2868)] = 73219, - [SMALL_STATE(2869)] = 73275, - [SMALL_STATE(2870)] = 73377, - [SMALL_STATE(2871)] = 73433, - [SMALL_STATE(2872)] = 73515, - [SMALL_STATE(2873)] = 73629, - [SMALL_STATE(2874)] = 73685, - [SMALL_STATE(2875)] = 73781, - [SMALL_STATE(2876)] = 73837, - [SMALL_STATE(2877)] = 73893, - [SMALL_STATE(2878)] = 73983, - [SMALL_STATE(2879)] = 74073, - [SMALL_STATE(2880)] = 74157, - [SMALL_STATE(2881)] = 74215, - [SMALL_STATE(2882)] = 74271, - [SMALL_STATE(2883)] = 74327, - [SMALL_STATE(2884)] = 74409, - [SMALL_STATE(2885)] = 74465, - [SMALL_STATE(2886)] = 74521, - [SMALL_STATE(2887)] = 74603, - [SMALL_STATE(2888)] = 74659, - [SMALL_STATE(2889)] = 74721, - [SMALL_STATE(2890)] = 74835, - [SMALL_STATE(2891)] = 74915, - [SMALL_STATE(2892)] = 74971, - [SMALL_STATE(2893)] = 75049, - [SMALL_STATE(2894)] = 75139, - [SMALL_STATE(2895)] = 75237, - [SMALL_STATE(2896)] = 75299, - [SMALL_STATE(2897)] = 75399, - [SMALL_STATE(2898)] = 75481, - [SMALL_STATE(2899)] = 75537, - [SMALL_STATE(2900)] = 75593, - [SMALL_STATE(2901)] = 75651, - [SMALL_STATE(2902)] = 75707, - [SMALL_STATE(2903)] = 75769, - [SMALL_STATE(2904)] = 75825, - [SMALL_STATE(2905)] = 75883, - [SMALL_STATE(2906)] = 75941, - [SMALL_STATE(2907)] = 75997, - [SMALL_STATE(2908)] = 76055, - [SMALL_STATE(2909)] = 76111, - [SMALL_STATE(2910)] = 76167, - [SMALL_STATE(2911)] = 76223, - [SMALL_STATE(2912)] = 76279, - [SMALL_STATE(2913)] = 76335, - [SMALL_STATE(2914)] = 76425, - [SMALL_STATE(2915)] = 76481, - [SMALL_STATE(2916)] = 76537, - [SMALL_STATE(2917)] = 76593, - [SMALL_STATE(2918)] = 76649, - [SMALL_STATE(2919)] = 76723, - [SMALL_STATE(2920)] = 76837, - [SMALL_STATE(2921)] = 76913, - [SMALL_STATE(2922)] = 76995, - [SMALL_STATE(2923)] = 77109, - [SMALL_STATE(2924)] = 77223, - [SMALL_STATE(2925)] = 77305, - [SMALL_STATE(2926)] = 77383, - [SMALL_STATE(2927)] = 77463, - [SMALL_STATE(2928)] = 77577, - [SMALL_STATE(2929)] = 77633, - [SMALL_STATE(2930)] = 77695, - [SMALL_STATE(2931)] = 77809, - [SMALL_STATE(2932)] = 77865, - [SMALL_STATE(2933)] = 77935, - [SMALL_STATE(2934)] = 78049, - [SMALL_STATE(2935)] = 78109, - [SMALL_STATE(2936)] = 78225, - [SMALL_STATE(2937)] = 78309, - [SMALL_STATE(2938)] = 78423, - [SMALL_STATE(2939)] = 78479, - [SMALL_STATE(2940)] = 78535, - [SMALL_STATE(2941)] = 78605, - [SMALL_STATE(2942)] = 78719, - [SMALL_STATE(2943)] = 78775, - [SMALL_STATE(2944)] = 78831, - [SMALL_STATE(2945)] = 78887, - [SMALL_STATE(2946)] = 78943, - [SMALL_STATE(2947)] = 79057, - [SMALL_STATE(2948)] = 79171, - [SMALL_STATE(2949)] = 79227, - [SMALL_STATE(2950)] = 79283, - [SMALL_STATE(2951)] = 79339, - [SMALL_STATE(2952)] = 79397, - [SMALL_STATE(2953)] = 79453, - [SMALL_STATE(2954)] = 79509, - [SMALL_STATE(2955)] = 79577, - [SMALL_STATE(2956)] = 79691, - [SMALL_STATE(2957)] = 79805, - [SMALL_STATE(2958)] = 79861, - [SMALL_STATE(2959)] = 79929, - [SMALL_STATE(2960)] = 79991, - [SMALL_STATE(2961)] = 80105, - [SMALL_STATE(2962)] = 80211, - [SMALL_STATE(2963)] = 80279, - [SMALL_STATE(2964)] = 80335, - [SMALL_STATE(2965)] = 80393, - [SMALL_STATE(2966)] = 80485, - [SMALL_STATE(2967)] = 80541, - [SMALL_STATE(2968)] = 80625, - [SMALL_STATE(2969)] = 80707, - [SMALL_STATE(2970)] = 80823, - [SMALL_STATE(2971)] = 80905, - [SMALL_STATE(2972)] = 80961, - [SMALL_STATE(2973)] = 81061, - [SMALL_STATE(2974)] = 81117, - [SMALL_STATE(2975)] = 81173, - [SMALL_STATE(2976)] = 81271, - [SMALL_STATE(2977)] = 81327, - [SMALL_STATE(2978)] = 81423, - [SMALL_STATE(2979)] = 81491, - [SMALL_STATE(2980)] = 81559, - [SMALL_STATE(2981)] = 81621, - [SMALL_STATE(2982)] = 81735, - [SMALL_STATE(2983)] = 81849, - [SMALL_STATE(2984)] = 81933, - [SMALL_STATE(2985)] = 82037, - [SMALL_STATE(2986)] = 82151, - [SMALL_STATE(2987)] = 82265, - [SMALL_STATE(2988)] = 82367, - [SMALL_STATE(2989)] = 82481, - [SMALL_STATE(2990)] = 82549, - [SMALL_STATE(2991)] = 82613, - [SMALL_STATE(2992)] = 82691, - [SMALL_STATE(2993)] = 82779, - [SMALL_STATE(2994)] = 82839, - [SMALL_STATE(2995)] = 82953, - [SMALL_STATE(2996)] = 83031, - [SMALL_STATE(2997)] = 83119, - [SMALL_STATE(2998)] = 83211, - [SMALL_STATE(2999)] = 83327, - [SMALL_STATE(3000)] = 83405, - [SMALL_STATE(3001)] = 83521, - [SMALL_STATE(3002)] = 83603, - [SMALL_STATE(3003)] = 83659, - [SMALL_STATE(3004)] = 83765, - [SMALL_STATE(3005)] = 83879, - [SMALL_STATE(3006)] = 83993, - [SMALL_STATE(3007)] = 84107, - [SMALL_STATE(3008)] = 84169, - [SMALL_STATE(3009)] = 84249, - [SMALL_STATE(3010)] = 84327, - [SMALL_STATE(3011)] = 84409, - [SMALL_STATE(3012)] = 84523, - [SMALL_STATE(3013)] = 84637, - [SMALL_STATE(3014)] = 84751, - [SMALL_STATE(3015)] = 84865, - [SMALL_STATE(3016)] = 84979, - [SMALL_STATE(3017)] = 85041, - [SMALL_STATE(3018)] = 85099, - [SMALL_STATE(3019)] = 85155, - [SMALL_STATE(3020)] = 85269, - [SMALL_STATE(3021)] = 85333, - [SMALL_STATE(3022)] = 85395, - [SMALL_STATE(3023)] = 85457, - [SMALL_STATE(3024)] = 85515, - [SMALL_STATE(3025)] = 85631, - [SMALL_STATE(3026)] = 85691, - [SMALL_STATE(3027)] = 85749, - [SMALL_STATE(3028)] = 85831, - [SMALL_STATE(3029)] = 85921, - [SMALL_STATE(3030)] = 85983, - [SMALL_STATE(3031)] = 86097, - [SMALL_STATE(3032)] = 86155, - [SMALL_STATE(3033)] = 86271, - [SMALL_STATE(3034)] = 86361, - [SMALL_STATE(3035)] = 86423, - [SMALL_STATE(3036)] = 86479, - [SMALL_STATE(3037)] = 86535, - [SMALL_STATE(3038)] = 86591, - [SMALL_STATE(3039)] = 86705, - [SMALL_STATE(3040)] = 86763, - [SMALL_STATE(3041)] = 86831, - [SMALL_STATE(3042)] = 86945, - [SMALL_STATE(3043)] = 87013, - [SMALL_STATE(3044)] = 87081, - [SMALL_STATE(3045)] = 87139, - [SMALL_STATE(3046)] = 87201, - [SMALL_STATE(3047)] = 87259, - [SMALL_STATE(3048)] = 87373, - [SMALL_STATE(3049)] = 87431, - [SMALL_STATE(3050)] = 87493, - [SMALL_STATE(3051)] = 87553, - [SMALL_STATE(3052)] = 87615, - [SMALL_STATE(3053)] = 87671, - [SMALL_STATE(3054)] = 87785, - [SMALL_STATE(3055)] = 87875, - [SMALL_STATE(3056)] = 87953, - [SMALL_STATE(3057)] = 88067, - [SMALL_STATE(3058)] = 88123, - [SMALL_STATE(3059)] = 88179, - [SMALL_STATE(3060)] = 88243, - [SMALL_STATE(3061)] = 88319, - [SMALL_STATE(3062)] = 88377, - [SMALL_STATE(3063)] = 88459, - [SMALL_STATE(3064)] = 88573, - [SMALL_STATE(3065)] = 88647, - [SMALL_STATE(3066)] = 88709, - [SMALL_STATE(3067)] = 88764, - [SMALL_STATE(3068)] = 88877, - [SMALL_STATE(3069)] = 88960, - [SMALL_STATE(3070)] = 89015, - [SMALL_STATE(3071)] = 89096, - [SMALL_STATE(3072)] = 89151, - [SMALL_STATE(3073)] = 89224, - [SMALL_STATE(3074)] = 89279, - [SMALL_STATE(3075)] = 89334, - [SMALL_STATE(3076)] = 89389, - [SMALL_STATE(3077)] = 89444, - [SMALL_STATE(3078)] = 89521, - [SMALL_STATE(3079)] = 89634, - [SMALL_STATE(3080)] = 89709, - [SMALL_STATE(3081)] = 89764, - [SMALL_STATE(3082)] = 89819, - [SMALL_STATE(3083)] = 89902, - [SMALL_STATE(3084)] = 89959, - [SMALL_STATE(3085)] = 90040, - [SMALL_STATE(3086)] = 90095, - [SMALL_STATE(3087)] = 90208, - [SMALL_STATE(3088)] = 90281, - [SMALL_STATE(3089)] = 90354, - [SMALL_STATE(3090)] = 90419, - [SMALL_STATE(3091)] = 90474, - [SMALL_STATE(3092)] = 90533, - [SMALL_STATE(3093)] = 90606, - [SMALL_STATE(3094)] = 90679, - [SMALL_STATE(3095)] = 90734, - [SMALL_STATE(3096)] = 90791, - [SMALL_STATE(3097)] = 90848, - [SMALL_STATE(3098)] = 90911, - [SMALL_STATE(3099)] = 91024, - [SMALL_STATE(3100)] = 91083, - [SMALL_STATE(3101)] = 91138, - [SMALL_STATE(3102)] = 91201, - [SMALL_STATE(3103)] = 91260, - [SMALL_STATE(3104)] = 91323, - [SMALL_STATE(3105)] = 91382, - [SMALL_STATE(3106)] = 91439, - [SMALL_STATE(3107)] = 91514, - [SMALL_STATE(3108)] = 91627, - [SMALL_STATE(3109)] = 91686, - [SMALL_STATE(3110)] = 91741, - [SMALL_STATE(3111)] = 91796, - [SMALL_STATE(3112)] = 91853, - [SMALL_STATE(3113)] = 91908, - [SMALL_STATE(3114)] = 91963, - [SMALL_STATE(3115)] = 92076, - [SMALL_STATE(3116)] = 92131, - [SMALL_STATE(3117)] = 92214, - [SMALL_STATE(3118)] = 92275, - [SMALL_STATE(3119)] = 92388, - [SMALL_STATE(3120)] = 92443, - [SMALL_STATE(3121)] = 92502, - [SMALL_STATE(3122)] = 92557, - [SMALL_STATE(3123)] = 92612, - [SMALL_STATE(3124)] = 92675, - [SMALL_STATE(3125)] = 92730, - [SMALL_STATE(3126)] = 92805, - [SMALL_STATE(3127)] = 92878, - [SMALL_STATE(3128)] = 92991, - [SMALL_STATE(3129)] = 93046, - [SMALL_STATE(3130)] = 93105, - [SMALL_STATE(3131)] = 93162, - [SMALL_STATE(3132)] = 93235, - [SMALL_STATE(3133)] = 93290, - [SMALL_STATE(3134)] = 93403, - [SMALL_STATE(3135)] = 93484, - [SMALL_STATE(3136)] = 93543, - [SMALL_STATE(3137)] = 93598, - [SMALL_STATE(3138)] = 93671, - [SMALL_STATE(3139)] = 93746, - [SMALL_STATE(3140)] = 93801, - [SMALL_STATE(3141)] = 93856, - [SMALL_STATE(3142)] = 93929, - [SMALL_STATE(3143)] = 94002, - [SMALL_STATE(3144)] = 94067, - [SMALL_STATE(3145)] = 94140, - [SMALL_STATE(3146)] = 94205, - [SMALL_STATE(3147)] = 94278, - [SMALL_STATE(3148)] = 94391, - [SMALL_STATE(3149)] = 94464, - [SMALL_STATE(3150)] = 94529, - [SMALL_STATE(3151)] = 94610, - [SMALL_STATE(3152)] = 94723, - [SMALL_STATE(3153)] = 94798, - [SMALL_STATE(3154)] = 94855, - [SMALL_STATE(3155)] = 94910, - [SMALL_STATE(3156)] = 94983, - [SMALL_STATE(3157)] = 95096, - [SMALL_STATE(3158)] = 95177, - [SMALL_STATE(3159)] = 95236, - [SMALL_STATE(3160)] = 95291, - [SMALL_STATE(3161)] = 95366, - [SMALL_STATE(3162)] = 95441, - [SMALL_STATE(3163)] = 95514, - [SMALL_STATE(3164)] = 95569, - [SMALL_STATE(3165)] = 95624, - [SMALL_STATE(3166)] = 95699, - [SMALL_STATE(3167)] = 95754, - [SMALL_STATE(3168)] = 95829, - [SMALL_STATE(3169)] = 95942, - [SMALL_STATE(3170)] = 95997, - [SMALL_STATE(3171)] = 96052, - [SMALL_STATE(3172)] = 96165, - [SMALL_STATE(3173)] = 96224, - [SMALL_STATE(3174)] = 96279, - [SMALL_STATE(3175)] = 96338, - [SMALL_STATE(3176)] = 96451, - [SMALL_STATE(3177)] = 96510, - [SMALL_STATE(3178)] = 96577, - [SMALL_STATE(3179)] = 96632, - [SMALL_STATE(3180)] = 96747, - [SMALL_STATE(3181)] = 96814, - [SMALL_STATE(3182)] = 96869, - [SMALL_STATE(3183)] = 96982, - [SMALL_STATE(3184)] = 97041, - [SMALL_STATE(3185)] = 97098, - [SMALL_STATE(3186)] = 97157, - [SMALL_STATE(3187)] = 97218, - [SMALL_STATE(3188)] = 97331, - [SMALL_STATE(3189)] = 97390, - [SMALL_STATE(3190)] = 97457, - [SMALL_STATE(3191)] = 97516, - [SMALL_STATE(3192)] = 97591, - [SMALL_STATE(3193)] = 97654, - [SMALL_STATE(3194)] = 97767, - [SMALL_STATE(3195)] = 97824, - [SMALL_STATE(3196)] = 97897, - [SMALL_STATE(3197)] = 97956, - [SMALL_STATE(3198)] = 98029, - [SMALL_STATE(3199)] = 98096, - [SMALL_STATE(3200)] = 98153, - [SMALL_STATE(3201)] = 98208, - [SMALL_STATE(3202)] = 98283, - [SMALL_STATE(3203)] = 98376, - [SMALL_STATE(3204)] = 98443, - [SMALL_STATE(3205)] = 98510, - [SMALL_STATE(3206)] = 98577, - [SMALL_STATE(3207)] = 98644, - [SMALL_STATE(3208)] = 98699, - [SMALL_STATE(3209)] = 98760, - [SMALL_STATE(3210)] = 98815, - [SMALL_STATE(3211)] = 98878, - [SMALL_STATE(3212)] = 98935, - [SMALL_STATE(3213)] = 99048, - [SMALL_STATE(3214)] = 99161, - [SMALL_STATE(3215)] = 99224, - [SMALL_STATE(3216)] = 99281, - [SMALL_STATE(3217)] = 99340, - [SMALL_STATE(3218)] = 99453, - [SMALL_STATE(3219)] = 99566, - [SMALL_STATE(3220)] = 99679, - [SMALL_STATE(3221)] = 99766, - [SMALL_STATE(3222)] = 99825, - [SMALL_STATE(3223)] = 99880, - [SMALL_STATE(3224)] = 99961, - [SMALL_STATE(3225)] = 100036, - [SMALL_STATE(3226)] = 100149, - [SMALL_STATE(3227)] = 100262, - [SMALL_STATE(3228)] = 100323, - [SMALL_STATE(3229)] = 100384, - [SMALL_STATE(3230)] = 100465, - [SMALL_STATE(3231)] = 100548, - [SMALL_STATE(3232)] = 100623, - [SMALL_STATE(3233)] = 100736, - [SMALL_STATE(3234)] = 100791, - [SMALL_STATE(3235)] = 100858, - [SMALL_STATE(3236)] = 100971, - [SMALL_STATE(3237)] = 101084, - [SMALL_STATE(3238)] = 101189, - [SMALL_STATE(3239)] = 101280, - [SMALL_STATE(3240)] = 101393, - [SMALL_STATE(3241)] = 101448, - [SMALL_STATE(3242)] = 101503, - [SMALL_STATE(3243)] = 101560, - [SMALL_STATE(3244)] = 101635, - [SMALL_STATE(3245)] = 101708, - [SMALL_STATE(3246)] = 101821, - [SMALL_STATE(3247)] = 101876, - [SMALL_STATE(3248)] = 101931, - [SMALL_STATE(3249)] = 101986, - [SMALL_STATE(3250)] = 102045, - [SMALL_STATE(3251)] = 102102, - [SMALL_STATE(3252)] = 102161, - [SMALL_STATE(3253)] = 102220, - [SMALL_STATE(3254)] = 102303, - [SMALL_STATE(3255)] = 102358, - [SMALL_STATE(3256)] = 102415, - [SMALL_STATE(3257)] = 102472, - [SMALL_STATE(3258)] = 102585, - [SMALL_STATE(3259)] = 102640, - [SMALL_STATE(3260)] = 102695, - [SMALL_STATE(3261)] = 102754, - [SMALL_STATE(3262)] = 102827, - [SMALL_STATE(3263)] = 102886, - [SMALL_STATE(3264)] = 102941, - [SMALL_STATE(3265)] = 103000, - [SMALL_STATE(3266)] = 103055, - [SMALL_STATE(3267)] = 103110, - [SMALL_STATE(3268)] = 103165, - [SMALL_STATE(3269)] = 103220, - [SMALL_STATE(3270)] = 103333, - [SMALL_STATE(3271)] = 103408, - [SMALL_STATE(3272)] = 103521, - [SMALL_STATE(3273)] = 103608, - [SMALL_STATE(3274)] = 103685, - [SMALL_STATE(3275)] = 103766, - [SMALL_STATE(3276)] = 103833, - [SMALL_STATE(3277)] = 103908, - [SMALL_STATE(3278)] = 103971, - [SMALL_STATE(3279)] = 104046, - [SMALL_STATE(3280)] = 104159, - [SMALL_STATE(3281)] = 104234, - [SMALL_STATE(3282)] = 104297, - [SMALL_STATE(3283)] = 104410, - [SMALL_STATE(3284)] = 104465, - [SMALL_STATE(3285)] = 104524, - [SMALL_STATE(3286)] = 104637, - [SMALL_STATE(3287)] = 104696, - [SMALL_STATE(3288)] = 104795, - [SMALL_STATE(3289)] = 104892, - [SMALL_STATE(3290)] = 104959, - [SMALL_STATE(3291)] = 105054, - [SMALL_STATE(3292)] = 105127, - [SMALL_STATE(3293)] = 105210, - [SMALL_STATE(3294)] = 105265, - [SMALL_STATE(3295)] = 105346, - [SMALL_STATE(3296)] = 105429, - [SMALL_STATE(3297)] = 105484, - [SMALL_STATE(3298)] = 105567, - [SMALL_STATE(3299)] = 105640, - [SMALL_STATE(3300)] = 105721, - [SMALL_STATE(3301)] = 105776, - [SMALL_STATE(3302)] = 105831, - [SMALL_STATE(3303)] = 105932, - [SMALL_STATE(3304)] = 106035, - [SMALL_STATE(3305)] = 106090, - [SMALL_STATE(3306)] = 106173, - [SMALL_STATE(3307)] = 106228, - [SMALL_STATE(3308)] = 106331, - [SMALL_STATE(3309)] = 106432, - [SMALL_STATE(3310)] = 106487, - [SMALL_STATE(3311)] = 106546, - [SMALL_STATE(3312)] = 106601, - [SMALL_STATE(3313)] = 106656, - [SMALL_STATE(3314)] = 106711, - [SMALL_STATE(3315)] = 106766, - [SMALL_STATE(3316)] = 106879, - [SMALL_STATE(3317)] = 106956, - [SMALL_STATE(3318)] = 107029, - [SMALL_STATE(3319)] = 107142, - [SMALL_STATE(3320)] = 107197, - [SMALL_STATE(3321)] = 107292, - [SMALL_STATE(3322)] = 107389, - [SMALL_STATE(3323)] = 107488, - [SMALL_STATE(3324)] = 107569, - [SMALL_STATE(3325)] = 107682, - [SMALL_STATE(3326)] = 107741, - [SMALL_STATE(3327)] = 107824, - [SMALL_STATE(3328)] = 107885, - [SMALL_STATE(3329)] = 107968, - [SMALL_STATE(3330)] = 108073, - [SMALL_STATE(3331)] = 108132, - [SMALL_STATE(3332)] = 108223, - [SMALL_STATE(3333)] = 108286, - [SMALL_STATE(3334)] = 108399, - [SMALL_STATE(3335)] = 108457, - [SMALL_STATE(3336)] = 108567, - [SMALL_STATE(3337)] = 108677, - [SMALL_STATE(3338)] = 108745, - [SMALL_STATE(3339)] = 108813, - [SMALL_STATE(3340)] = 108881, - [SMALL_STATE(3341)] = 108957, - [SMALL_STATE(3342)] = 109025, - [SMALL_STATE(3343)] = 109113, - [SMALL_STATE(3344)] = 109181, - [SMALL_STATE(3345)] = 109239, - [SMALL_STATE(3346)] = 109295, - [SMALL_STATE(3347)] = 109371, - [SMALL_STATE(3348)] = 109433, - [SMALL_STATE(3349)] = 109501, - [SMALL_STATE(3350)] = 109583, - [SMALL_STATE(3351)] = 109651, - [SMALL_STATE(3352)] = 109719, - [SMALL_STATE(3353)] = 109787, - [SMALL_STATE(3354)] = 109843, - [SMALL_STATE(3355)] = 109911, - [SMALL_STATE(3356)] = 109971, - [SMALL_STATE(3357)] = 110047, - [SMALL_STATE(3358)] = 110123, - [SMALL_STATE(3359)] = 110179, - [SMALL_STATE(3360)] = 110289, - [SMALL_STATE(3361)] = 110345, - [SMALL_STATE(3362)] = 110421, - [SMALL_STATE(3363)] = 110531, - [SMALL_STATE(3364)] = 110641, - [SMALL_STATE(3365)] = 110751, - [SMALL_STATE(3366)] = 110861, - [SMALL_STATE(3367)] = 110971, - [SMALL_STATE(3368)] = 111081, - [SMALL_STATE(3369)] = 111149, - [SMALL_STATE(3370)] = 111225, - [SMALL_STATE(3371)] = 111311, - [SMALL_STATE(3372)] = 111379, - [SMALL_STATE(3373)] = 111447, - [SMALL_STATE(3374)] = 111521, - [SMALL_STATE(3375)] = 111605, - [SMALL_STATE(3376)] = 111715, - [SMALL_STATE(3377)] = 111777, - [SMALL_STATE(3378)] = 111857, - [SMALL_STATE(3379)] = 111917, - [SMALL_STATE(3380)] = 111977, - [SMALL_STATE(3381)] = 112087, - [SMALL_STATE(3382)] = 112163, - [SMALL_STATE(3383)] = 112273, - [SMALL_STATE(3384)] = 112383, - [SMALL_STATE(3385)] = 112455, - [SMALL_STATE(3386)] = 112517, - [SMALL_STATE(3387)] = 112617, - [SMALL_STATE(3388)] = 112727, - [SMALL_STATE(3389)] = 112795, - [SMALL_STATE(3390)] = 112897, - [SMALL_STATE(3391)] = 112979, - [SMALL_STATE(3392)] = 113047, - [SMALL_STATE(3393)] = 113115, - [SMALL_STATE(3394)] = 113209, - [SMALL_STATE(3395)] = 113305, - [SMALL_STATE(3396)] = 113373, - [SMALL_STATE(3397)] = 113471, - [SMALL_STATE(3398)] = 113539, - [SMALL_STATE(3399)] = 113599, - [SMALL_STATE(3400)] = 113675, - [SMALL_STATE(3401)] = 113743, - [SMALL_STATE(3402)] = 113853, - [SMALL_STATE(3403)] = 113921, - [SMALL_STATE(3404)] = 113983, - [SMALL_STATE(3405)] = 114045, - [SMALL_STATE(3406)] = 114155, - [SMALL_STATE(3407)] = 114235, - [SMALL_STATE(3408)] = 114303, - [SMALL_STATE(3409)] = 114385, - [SMALL_STATE(3410)] = 114453, - [SMALL_STATE(3411)] = 114515, - [SMALL_STATE(3412)] = 114583, - [SMALL_STATE(3413)] = 114687, - [SMALL_STATE(3414)] = 114777, - [SMALL_STATE(3415)] = 114832, - [SMALL_STATE(3416)] = 114891, - [SMALL_STATE(3417)] = 114946, - [SMALL_STATE(3418)] = 115025, - [SMALL_STATE(3419)] = 115098, - [SMALL_STATE(3420)] = 115157, - [SMALL_STATE(3421)] = 115212, - [SMALL_STATE(3422)] = 115281, - [SMALL_STATE(3423)] = 115336, - [SMALL_STATE(3424)] = 115395, - [SMALL_STATE(3425)] = 115464, - [SMALL_STATE(3426)] = 115537, - [SMALL_STATE(3427)] = 115592, - [SMALL_STATE(3428)] = 115651, - [SMALL_STATE(3429)] = 115706, - [SMALL_STATE(3430)] = 115761, - [SMALL_STATE(3431)] = 115820, - [SMALL_STATE(3432)] = 115879, - [SMALL_STATE(3433)] = 115948, - [SMALL_STATE(3434)] = 116021, - [SMALL_STATE(3435)] = 116096, - [SMALL_STATE(3436)] = 116169, - [SMALL_STATE(3437)] = 116262, - [SMALL_STATE(3438)] = 116317, - [SMALL_STATE(3439)] = 116372, - [SMALL_STATE(3440)] = 116431, - [SMALL_STATE(3441)] = 116500, - [SMALL_STATE(3442)] = 116573, - [SMALL_STATE(3443)] = 116632, - [SMALL_STATE(3444)] = 116687, - [SMALL_STATE(3445)] = 116764, - [SMALL_STATE(3446)] = 116839, - [SMALL_STATE(3447)] = 116908, - [SMALL_STATE(3448)] = 116967, - [SMALL_STATE(3449)] = 117028, - [SMALL_STATE(3450)] = 117083, - [SMALL_STATE(3451)] = 117156, - [SMALL_STATE(3452)] = 117211, - [SMALL_STATE(3453)] = 117266, - [SMALL_STATE(3454)] = 117325, - [SMALL_STATE(3455)] = 117391, - [SMALL_STATE(3456)] = 117457, - [SMALL_STATE(3457)] = 117529, - [SMALL_STATE(3458)] = 117591, - [SMALL_STATE(3459)] = 117653, - [SMALL_STATE(3460)] = 117719, - [SMALL_STATE(3461)] = 117781, - [SMALL_STATE(3462)] = 117843, - [SMALL_STATE(3463)] = 117897, - [SMALL_STATE(3464)] = 117959, - [SMALL_STATE(3465)] = 118025, - [SMALL_STATE(3466)] = 118091, - [SMALL_STATE(3467)] = 118157, - [SMALL_STATE(3468)] = 118227, - [SMALL_STATE(3469)] = 118285, - [SMALL_STATE(3470)] = 118351, - [SMALL_STATE(3471)] = 118417, - [SMALL_STATE(3472)] = 118475, - [SMALL_STATE(3473)] = 118529, - [SMALL_STATE(3474)] = 118587, - [SMALL_STATE(3475)] = 118649, - [SMALL_STATE(3476)] = 118719, - [SMALL_STATE(3477)] = 118781, - [SMALL_STATE(3478)] = 118847, - [SMALL_STATE(3479)] = 118909, - [SMALL_STATE(3480)] = 118963, - [SMALL_STATE(3481)] = 119029, - [SMALL_STATE(3482)] = 119095, - [SMALL_STATE(3483)] = 119161, - [SMALL_STATE(3484)] = 119219, - [SMALL_STATE(3485)] = 119277, - [SMALL_STATE(3486)] = 119339, - [SMALL_STATE(3487)] = 119401, - [SMALL_STATE(3488)] = 119463, - [SMALL_STATE(3489)] = 119529, - [SMALL_STATE(3490)] = 119595, - [SMALL_STATE(3491)] = 119661, - [SMALL_STATE(3492)] = 119723, - [SMALL_STATE(3493)] = 119777, - [SMALL_STATE(3494)] = 119843, - [SMALL_STATE(3495)] = 119905, - [SMALL_STATE(3496)] = 119967, - [SMALL_STATE(3497)] = 120035, - [SMALL_STATE(3498)] = 120088, - [SMALL_STATE(3499)] = 120141, - [SMALL_STATE(3500)] = 120194, - [SMALL_STATE(3501)] = 120247, - [SMALL_STATE(3502)] = 120300, - [SMALL_STATE(3503)] = 120353, - [SMALL_STATE(3504)] = 120406, - [SMALL_STATE(3505)] = 120459, - [SMALL_STATE(3506)] = 120524, - [SMALL_STATE(3507)] = 120577, - [SMALL_STATE(3508)] = 120627, - [SMALL_STATE(3509)] = 120679, - [SMALL_STATE(3510)] = 120729, - [SMALL_STATE(3511)] = 120779, - [SMALL_STATE(3512)] = 120829, - [SMALL_STATE(3513)] = 120879, - [SMALL_STATE(3514)] = 120929, - [SMALL_STATE(3515)] = 120979, - [SMALL_STATE(3516)] = 121029, - [SMALL_STATE(3517)] = 121079, - [SMALL_STATE(3518)] = 121129, - [SMALL_STATE(3519)] = 121179, - [SMALL_STATE(3520)] = 121229, - [SMALL_STATE(3521)] = 121279, - [SMALL_STATE(3522)] = 121329, - [SMALL_STATE(3523)] = 121379, - [SMALL_STATE(3524)] = 121429, - [SMALL_STATE(3525)] = 121479, - [SMALL_STATE(3526)] = 121529, - [SMALL_STATE(3527)] = 121579, - [SMALL_STATE(3528)] = 121629, - [SMALL_STATE(3529)] = 121679, - [SMALL_STATE(3530)] = 121729, - [SMALL_STATE(3531)] = 121779, - [SMALL_STATE(3532)] = 121829, - [SMALL_STATE(3533)] = 121879, - [SMALL_STATE(3534)] = 121929, - [SMALL_STATE(3535)] = 121979, - [SMALL_STATE(3536)] = 122031, - [SMALL_STATE(3537)] = 122081, - [SMALL_STATE(3538)] = 122131, - [SMALL_STATE(3539)] = 122181, - [SMALL_STATE(3540)] = 122231, - [SMALL_STATE(3541)] = 122287, - [SMALL_STATE(3542)] = 122337, - [SMALL_STATE(3543)] = 122387, - [SMALL_STATE(3544)] = 122437, - [SMALL_STATE(3545)] = 122487, - [SMALL_STATE(3546)] = 122537, - [SMALL_STATE(3547)] = 122587, - [SMALL_STATE(3548)] = 122637, - [SMALL_STATE(3549)] = 122687, - [SMALL_STATE(3550)] = 122741, - [SMALL_STATE(3551)] = 122795, - [SMALL_STATE(3552)] = 122845, - [SMALL_STATE(3553)] = 122895, - [SMALL_STATE(3554)] = 122945, - [SMALL_STATE(3555)] = 122995, - [SMALL_STATE(3556)] = 123045, - [SMALL_STATE(3557)] = 123095, - [SMALL_STATE(3558)] = 123145, - [SMALL_STATE(3559)] = 123219, - [SMALL_STATE(3560)] = 123269, - [SMALL_STATE(3561)] = 123319, - [SMALL_STATE(3562)] = 123369, - [SMALL_STATE(3563)] = 123419, - [SMALL_STATE(3564)] = 123475, - [SMALL_STATE(3565)] = 123542, - [SMALL_STATE(3566)] = 123589, - [SMALL_STATE(3567)] = 123636, - [SMALL_STATE(3568)] = 123683, - [SMALL_STATE(3569)] = 123730, - [SMALL_STATE(3570)] = 123795, - [SMALL_STATE(3571)] = 123842, - [SMALL_STATE(3572)] = 123889, - [SMALL_STATE(3573)] = 123936, - [SMALL_STATE(3574)] = 124001, - [SMALL_STATE(3575)] = 124068, - [SMALL_STATE(3576)] = 124135, - [SMALL_STATE(3577)] = 124186, - [SMALL_STATE(3578)] = 124251, - [SMALL_STATE(3579)] = 124302, - [SMALL_STATE(3580)] = 124365, - [SMALL_STATE(3581)] = 124430, - [SMALL_STATE(3582)] = 124490, - [SMALL_STATE(3583)] = 124566, - [SMALL_STATE(3584)] = 124626, - [SMALL_STATE(3585)] = 124686, - [SMALL_STATE(3586)] = 124746, - [SMALL_STATE(3587)] = 124806, - [SMALL_STATE(3588)] = 124866, - [SMALL_STATE(3589)] = 124926, - [SMALL_STATE(3590)] = 124986, - [SMALL_STATE(3591)] = 125046, - [SMALL_STATE(3592)] = 125106, - [SMALL_STATE(3593)] = 125166, - [SMALL_STATE(3594)] = 125226, - [SMALL_STATE(3595)] = 125286, - [SMALL_STATE(3596)] = 125346, - [SMALL_STATE(3597)] = 125406, - [SMALL_STATE(3598)] = 125466, - [SMALL_STATE(3599)] = 125518, - [SMALL_STATE(3600)] = 125578, - [SMALL_STATE(3601)] = 125638, - [SMALL_STATE(3602)] = 125698, - [SMALL_STATE(3603)] = 125758, - [SMALL_STATE(3604)] = 125834, - [SMALL_STATE(3605)] = 125894, - [SMALL_STATE(3606)] = 125954, - [SMALL_STATE(3607)] = 126014, - [SMALL_STATE(3608)] = 126074, - [SMALL_STATE(3609)] = 126134, - [SMALL_STATE(3610)] = 126194, - [SMALL_STATE(3611)] = 126254, - [SMALL_STATE(3612)] = 126315, - [SMALL_STATE(3613)] = 126376, - [SMALL_STATE(3614)] = 126443, - [SMALL_STATE(3615)] = 126504, - [SMALL_STATE(3616)] = 126565, - [SMALL_STATE(3617)] = 126626, - [SMALL_STATE(3618)] = 126693, - [SMALL_STATE(3619)] = 126778, - [SMALL_STATE(3620)] = 126839, - [SMALL_STATE(3621)] = 126900, - [SMALL_STATE(3622)] = 126961, - [SMALL_STATE(3623)] = 127028, - [SMALL_STATE(3624)] = 127089, - [SMALL_STATE(3625)] = 127150, - [SMALL_STATE(3626)] = 127211, - [SMALL_STATE(3627)] = 127296, - [SMALL_STATE(3628)] = 127367, - [SMALL_STATE(3629)] = 127428, - [SMALL_STATE(3630)] = 127489, - [SMALL_STATE(3631)] = 127574, - [SMALL_STATE(3632)] = 127635, - [SMALL_STATE(3633)] = 127696, - [SMALL_STATE(3634)] = 127781, - [SMALL_STATE(3635)] = 127842, - [SMALL_STATE(3636)] = 127913, - [SMALL_STATE(3637)] = 127974, - [SMALL_STATE(3638)] = 128035, - [SMALL_STATE(3639)] = 128080, - [SMALL_STATE(3640)] = 128141, - [SMALL_STATE(3641)] = 128202, - [SMALL_STATE(3642)] = 128263, - [SMALL_STATE(3643)] = 128348, - [SMALL_STATE(3644)] = 128433, - [SMALL_STATE(3645)] = 128494, - [SMALL_STATE(3646)] = 128579, - [SMALL_STATE(3647)] = 128664, - [SMALL_STATE(3648)] = 128749, - [SMALL_STATE(3649)] = 128834, - [SMALL_STATE(3650)] = 128919, - [SMALL_STATE(3651)] = 128980, - [SMALL_STATE(3652)] = 129051, - [SMALL_STATE(3653)] = 129112, - [SMALL_STATE(3654)] = 129179, - [SMALL_STATE(3655)] = 129240, - [SMALL_STATE(3656)] = 129301, - [SMALL_STATE(3657)] = 129350, - [SMALL_STATE(3658)] = 129411, - [SMALL_STATE(3659)] = 129496, - [SMALL_STATE(3660)] = 129557, - [SMALL_STATE(3661)] = 129618, - [SMALL_STATE(3662)] = 129679, - [SMALL_STATE(3663)] = 129743, - [SMALL_STATE(3664)] = 129807, - [SMALL_STATE(3665)] = 129853, - [SMALL_STATE(3666)] = 129917, - [SMALL_STATE(3667)] = 129981, - [SMALL_STATE(3668)] = 130045, - [SMALL_STATE(3669)] = 130109, - [SMALL_STATE(3670)] = 130167, - [SMALL_STATE(3671)] = 130231, - [SMALL_STATE(3672)] = 130295, - [SMALL_STATE(3673)] = 130359, - [SMALL_STATE(3674)] = 130419, - [SMALL_STATE(3675)] = 130483, - [SMALL_STATE(3676)] = 130547, - [SMALL_STATE(3677)] = 130611, - [SMALL_STATE(3678)] = 130675, - [SMALL_STATE(3679)] = 130739, - [SMALL_STATE(3680)] = 130803, - [SMALL_STATE(3681)] = 130863, - [SMALL_STATE(3682)] = 130927, - [SMALL_STATE(3683)] = 130984, - [SMALL_STATE(3684)] = 131041, - [SMALL_STATE(3685)] = 131096, - [SMALL_STATE(3686)] = 131151, - [SMALL_STATE(3687)] = 131206, - [SMALL_STATE(3688)] = 131261, - [SMALL_STATE(3689)] = 131316, - [SMALL_STATE(3690)] = 131373, - [SMALL_STATE(3691)] = 131428, - [SMALL_STATE(3692)] = 131483, - [SMALL_STATE(3693)] = 131538, - [SMALL_STATE(3694)] = 131593, - [SMALL_STATE(3695)] = 131648, - [SMALL_STATE(3696)] = 131703, - [SMALL_STATE(3697)] = 131758, - [SMALL_STATE(3698)] = 131813, - [SMALL_STATE(3699)] = 131868, - [SMALL_STATE(3700)] = 131923, - [SMALL_STATE(3701)] = 131980, - [SMALL_STATE(3702)] = 132035, - [SMALL_STATE(3703)] = 132090, - [SMALL_STATE(3704)] = 132145, - [SMALL_STATE(3705)] = 132200, - [SMALL_STATE(3706)] = 132255, - [SMALL_STATE(3707)] = 132310, - [SMALL_STATE(3708)] = 132365, - [SMALL_STATE(3709)] = 132420, - [SMALL_STATE(3710)] = 132475, - [SMALL_STATE(3711)] = 132532, - [SMALL_STATE(3712)] = 132587, - [SMALL_STATE(3713)] = 132630, - [SMALL_STATE(3714)] = 132687, - [SMALL_STATE(3715)] = 132742, - [SMALL_STATE(3716)] = 132799, - [SMALL_STATE(3717)] = 132854, - [SMALL_STATE(3718)] = 132911, - [SMALL_STATE(3719)] = 132966, - [SMALL_STATE(3720)] = 133023, - [SMALL_STATE(3721)] = 133080, - [SMALL_STATE(3722)] = 133135, - [SMALL_STATE(3723)] = 133190, - [SMALL_STATE(3724)] = 133245, - [SMALL_STATE(3725)] = 133288, - [SMALL_STATE(3726)] = 133343, - [SMALL_STATE(3727)] = 133398, - [SMALL_STATE(3728)] = 133453, - [SMALL_STATE(3729)] = 133496, - [SMALL_STATE(3730)] = 133551, - [SMALL_STATE(3731)] = 133606, - [SMALL_STATE(3732)] = 133663, - [SMALL_STATE(3733)] = 133706, - [SMALL_STATE(3734)] = 133761, - [SMALL_STATE(3735)] = 133816, - [SMALL_STATE(3736)] = 133871, - [SMALL_STATE(3737)] = 133914, - [SMALL_STATE(3738)] = 133957, - [SMALL_STATE(3739)] = 134014, - [SMALL_STATE(3740)] = 134069, - [SMALL_STATE(3741)] = 134124, - [SMALL_STATE(3742)] = 134181, - [SMALL_STATE(3743)] = 134238, - [SMALL_STATE(3744)] = 134278, - [SMALL_STATE(3745)] = 134325, - [SMALL_STATE(3746)] = 134372, - [SMALL_STATE(3747)] = 134407, - [SMALL_STATE(3748)] = 134454, - [SMALL_STATE(3749)] = 134489, - [SMALL_STATE(3750)] = 134524, - [SMALL_STATE(3751)] = 134558, - [SMALL_STATE(3752)] = 134592, - [SMALL_STATE(3753)] = 134625, - [SMALL_STATE(3754)] = 134658, - [SMALL_STATE(3755)] = 134691, - [SMALL_STATE(3756)] = 134724, - [SMALL_STATE(3757)] = 134757, - [SMALL_STATE(3758)] = 134790, - [SMALL_STATE(3759)] = 134823, - [SMALL_STATE(3760)] = 134856, - [SMALL_STATE(3761)] = 134889, - [SMALL_STATE(3762)] = 134922, - [SMALL_STATE(3763)] = 134955, - [SMALL_STATE(3764)] = 134988, - [SMALL_STATE(3765)] = 135021, - [SMALL_STATE(3766)] = 135054, - [SMALL_STATE(3767)] = 135087, - [SMALL_STATE(3768)] = 135120, - [SMALL_STATE(3769)] = 135153, - [SMALL_STATE(3770)] = 135186, - [SMALL_STATE(3771)] = 135219, - [SMALL_STATE(3772)] = 135252, - [SMALL_STATE(3773)] = 135285, - [SMALL_STATE(3774)] = 135318, - [SMALL_STATE(3775)] = 135351, - [SMALL_STATE(3776)] = 135384, - [SMALL_STATE(3777)] = 135417, - [SMALL_STATE(3778)] = 135450, - [SMALL_STATE(3779)] = 135483, - [SMALL_STATE(3780)] = 135516, - [SMALL_STATE(3781)] = 135549, - [SMALL_STATE(3782)] = 135582, - [SMALL_STATE(3783)] = 135615, - [SMALL_STATE(3784)] = 135648, - [SMALL_STATE(3785)] = 135689, - [SMALL_STATE(3786)] = 135722, - [SMALL_STATE(3787)] = 135755, - [SMALL_STATE(3788)] = 135809, - [SMALL_STATE(3789)] = 135863, - [SMALL_STATE(3790)] = 135917, - [SMALL_STATE(3791)] = 135977, - [SMALL_STATE(3792)] = 136031, - [SMALL_STATE(3793)] = 136091, - [SMALL_STATE(3794)] = 136145, - [SMALL_STATE(3795)] = 136183, - [SMALL_STATE(3796)] = 136214, - [SMALL_STATE(3797)] = 136245, - [SMALL_STATE(3798)] = 136276, - [SMALL_STATE(3799)] = 136307, - [SMALL_STATE(3800)] = 136338, - [SMALL_STATE(3801)] = 136369, - [SMALL_STATE(3802)] = 136400, - [SMALL_STATE(3803)] = 136431, - [SMALL_STATE(3804)] = 136462, - [SMALL_STATE(3805)] = 136493, - [SMALL_STATE(3806)] = 136524, - [SMALL_STATE(3807)] = 136555, - [SMALL_STATE(3808)] = 136588, - [SMALL_STATE(3809)] = 136619, - [SMALL_STATE(3810)] = 136662, - [SMALL_STATE(3811)] = 136693, - [SMALL_STATE(3812)] = 136736, - [SMALL_STATE(3813)] = 136767, - [SMALL_STATE(3814)] = 136802, - [SMALL_STATE(3815)] = 136833, - [SMALL_STATE(3816)] = 136866, - [SMALL_STATE(3817)] = 136897, - [SMALL_STATE(3818)] = 136940, - [SMALL_STATE(3819)] = 136971, - [SMALL_STATE(3820)] = 137002, - [SMALL_STATE(3821)] = 137033, - [SMALL_STATE(3822)] = 137068, - [SMALL_STATE(3823)] = 137099, - [SMALL_STATE(3824)] = 137129, - [SMALL_STATE(3825)] = 137161, - [SMALL_STATE(3826)] = 137191, - [SMALL_STATE(3827)] = 137223, - [SMALL_STATE(3828)] = 137255, - [SMALL_STATE(3829)] = 137284, - [SMALL_STATE(3830)] = 137323, - [SMALL_STATE(3831)] = 137352, - [SMALL_STATE(3832)] = 137389, - [SMALL_STATE(3833)] = 137426, - [SMALL_STATE(3834)] = 137455, - [SMALL_STATE(3835)] = 137490, - [SMALL_STATE(3836)] = 137517, - [SMALL_STATE(3837)] = 137552, - [SMALL_STATE(3838)] = 137587, - [SMALL_STATE(3839)] = 137616, - [SMALL_STATE(3840)] = 137645, - [SMALL_STATE(3841)] = 137684, - [SMALL_STATE(3842)] = 137723, - [SMALL_STATE(3843)] = 137760, - [SMALL_STATE(3844)] = 137795, - [SMALL_STATE(3845)] = 137822, - [SMALL_STATE(3846)] = 137861, - [SMALL_STATE(3847)] = 137890, - [SMALL_STATE(3848)] = 137919, - [SMALL_STATE(3849)] = 137948, - [SMALL_STATE(3850)] = 137977, - [SMALL_STATE(3851)] = 138006, - [SMALL_STATE(3852)] = 138035, - [SMALL_STATE(3853)] = 138064, - [SMALL_STATE(3854)] = 138093, - [SMALL_STATE(3855)] = 138122, - [SMALL_STATE(3856)] = 138151, - [SMALL_STATE(3857)] = 138180, - [SMALL_STATE(3858)] = 138209, - [SMALL_STATE(3859)] = 138238, - [SMALL_STATE(3860)] = 138277, - [SMALL_STATE(3861)] = 138304, - [SMALL_STATE(3862)] = 138343, - [SMALL_STATE(3863)] = 138372, - [SMALL_STATE(3864)] = 138411, - [SMALL_STATE(3865)] = 138450, - [SMALL_STATE(3866)] = 138487, - [SMALL_STATE(3867)] = 138516, - [SMALL_STATE(3868)] = 138555, - [SMALL_STATE(3869)] = 138594, - [SMALL_STATE(3870)] = 138633, - [SMALL_STATE(3871)] = 138662, - [SMALL_STATE(3872)] = 138697, - [SMALL_STATE(3873)] = 138726, - [SMALL_STATE(3874)] = 138755, - [SMALL_STATE(3875)] = 138784, - [SMALL_STATE(3876)] = 138813, - [SMALL_STATE(3877)] = 138842, - [SMALL_STATE(3878)] = 138871, - [SMALL_STATE(3879)] = 138898, - [SMALL_STATE(3880)] = 138927, - [SMALL_STATE(3881)] = 138956, - [SMALL_STATE(3882)] = 138985, - [SMALL_STATE(3883)] = 139014, - [SMALL_STATE(3884)] = 139051, - [SMALL_STATE(3885)] = 139086, - [SMALL_STATE(3886)] = 139125, - [SMALL_STATE(3887)] = 139164, - [SMALL_STATE(3888)] = 139193, - [SMALL_STATE(3889)] = 139222, - [SMALL_STATE(3890)] = 139251, - [SMALL_STATE(3891)] = 139280, - [SMALL_STATE(3892)] = 139309, - [SMALL_STATE(3893)] = 139338, - [SMALL_STATE(3894)] = 139367, - [SMALL_STATE(3895)] = 139396, - [SMALL_STATE(3896)] = 139425, - [SMALL_STATE(3897)] = 139454, - [SMALL_STATE(3898)] = 139483, - [SMALL_STATE(3899)] = 139512, - [SMALL_STATE(3900)] = 139543, - [SMALL_STATE(3901)] = 139574, - [SMALL_STATE(3902)] = 139607, - [SMALL_STATE(3903)] = 139642, - [SMALL_STATE(3904)] = 139671, - [SMALL_STATE(3905)] = 139700, - [SMALL_STATE(3906)] = 139729, - [SMALL_STATE(3907)] = 139758, - [SMALL_STATE(3908)] = 139787, - [SMALL_STATE(3909)] = 139816, - [SMALL_STATE(3910)] = 139845, - [SMALL_STATE(3911)] = 139874, - [SMALL_STATE(3912)] = 139903, - [SMALL_STATE(3913)] = 139932, - [SMALL_STATE(3914)] = 139961, - [SMALL_STATE(3915)] = 139990, - [SMALL_STATE(3916)] = 140021, - [SMALL_STATE(3917)] = 140050, - [SMALL_STATE(3918)] = 140079, - [SMALL_STATE(3919)] = 140106, - [SMALL_STATE(3920)] = 140135, - [SMALL_STATE(3921)] = 140166, - [SMALL_STATE(3922)] = 140195, - [SMALL_STATE(3923)] = 140234, - [SMALL_STATE(3924)] = 140273, - [SMALL_STATE(3925)] = 140302, - [SMALL_STATE(3926)] = 140331, - [SMALL_STATE(3927)] = 140360, - [SMALL_STATE(3928)] = 140399, - [SMALL_STATE(3929)] = 140426, - [SMALL_STATE(3930)] = 140455, - [SMALL_STATE(3931)] = 140486, - [SMALL_STATE(3932)] = 140523, - [SMALL_STATE(3933)] = 140562, - [SMALL_STATE(3934)] = 140591, - [SMALL_STATE(3935)] = 140620, - [SMALL_STATE(3936)] = 140647, - [SMALL_STATE(3937)] = 140674, - [SMALL_STATE(3938)] = 140713, - [SMALL_STATE(3939)] = 140740, - [SMALL_STATE(3940)] = 140788, - [SMALL_STATE(3941)] = 140836, - [SMALL_STATE(3942)] = 140884, - [SMALL_STATE(3943)] = 140918, - [SMALL_STATE(3944)] = 140966, - [SMALL_STATE(3945)] = 141000, - [SMALL_STATE(3946)] = 141048, - [SMALL_STATE(3947)] = 141082, - [SMALL_STATE(3948)] = 141130, - [SMALL_STATE(3949)] = 141178, - [SMALL_STATE(3950)] = 141226, - [SMALL_STATE(3951)] = 141274, - [SMALL_STATE(3952)] = 141322, - [SMALL_STATE(3953)] = 141366, - [SMALL_STATE(3954)] = 141414, - [SMALL_STATE(3955)] = 141462, - [SMALL_STATE(3956)] = 141510, - [SMALL_STATE(3957)] = 141554, - [SMALL_STATE(3958)] = 141598, - [SMALL_STATE(3959)] = 141646, - [SMALL_STATE(3960)] = 141694, - [SMALL_STATE(3961)] = 141728, - [SMALL_STATE(3962)] = 141776, - [SMALL_STATE(3963)] = 141824, - [SMALL_STATE(3964)] = 141872, - [SMALL_STATE(3965)] = 141920, - [SMALL_STATE(3966)] = 141968, - [SMALL_STATE(3967)] = 142016, - [SMALL_STATE(3968)] = 142064, - [SMALL_STATE(3969)] = 142098, - [SMALL_STATE(3970)] = 142142, - [SMALL_STATE(3971)] = 142174, - [SMALL_STATE(3972)] = 142208, - [SMALL_STATE(3973)] = 142256, - [SMALL_STATE(3974)] = 142300, - [SMALL_STATE(3975)] = 142336, - [SMALL_STATE(3976)] = 142384, - [SMALL_STATE(3977)] = 142432, - [SMALL_STATE(3978)] = 142480, - [SMALL_STATE(3979)] = 142528, - [SMALL_STATE(3980)] = 142576, - [SMALL_STATE(3981)] = 142601, - [SMALL_STATE(3982)] = 142630, - [SMALL_STATE(3983)] = 142657, - [SMALL_STATE(3984)] = 142684, - [SMALL_STATE(3985)] = 142709, - [SMALL_STATE(3986)] = 142734, - [SMALL_STATE(3987)] = 142759, - [SMALL_STATE(3988)] = 142800, - [SMALL_STATE(3989)] = 142825, - [SMALL_STATE(3990)] = 142850, - [SMALL_STATE(3991)] = 142875, - [SMALL_STATE(3992)] = 142900, - [SMALL_STATE(3993)] = 142925, - [SMALL_STATE(3994)] = 142950, - [SMALL_STATE(3995)] = 142975, - [SMALL_STATE(3996)] = 143000, - [SMALL_STATE(3997)] = 143025, - [SMALL_STATE(3998)] = 143050, - [SMALL_STATE(3999)] = 143091, - [SMALL_STATE(4000)] = 143116, - [SMALL_STATE(4001)] = 143141, - [SMALL_STATE(4002)] = 143168, - [SMALL_STATE(4003)] = 143195, - [SMALL_STATE(4004)] = 143220, - [SMALL_STATE(4005)] = 143245, - [SMALL_STATE(4006)] = 143270, - [SMALL_STATE(4007)] = 143295, - [SMALL_STATE(4008)] = 143320, - [SMALL_STATE(4009)] = 143361, - [SMALL_STATE(4010)] = 143388, - [SMALL_STATE(4011)] = 143429, - [SMALL_STATE(4012)] = 143456, - [SMALL_STATE(4013)] = 143497, - [SMALL_STATE(4014)] = 143524, - [SMALL_STATE(4015)] = 143557, - [SMALL_STATE(4016)] = 143598, - [SMALL_STATE(4017)] = 143625, - [SMALL_STATE(4018)] = 143666, - [SMALL_STATE(4019)] = 143697, - [SMALL_STATE(4020)] = 143724, - [SMALL_STATE(4021)] = 143765, - [SMALL_STATE(4022)] = 143794, - [SMALL_STATE(4023)] = 143821, - [SMALL_STATE(4024)] = 143848, - [SMALL_STATE(4025)] = 143875, - [SMALL_STATE(4026)] = 143900, - [SMALL_STATE(4027)] = 143941, - [SMALL_STATE(4028)] = 143968, - [SMALL_STATE(4029)] = 143995, - [SMALL_STATE(4030)] = 144020, - [SMALL_STATE(4031)] = 144061, - [SMALL_STATE(4032)] = 144102, - [SMALL_STATE(4033)] = 144129, - [SMALL_STATE(4034)] = 144154, - [SMALL_STATE(4035)] = 144195, - [SMALL_STATE(4036)] = 144220, - [SMALL_STATE(4037)] = 144245, - [SMALL_STATE(4038)] = 144284, - [SMALL_STATE(4039)] = 144309, - [SMALL_STATE(4040)] = 144334, - [SMALL_STATE(4041)] = 144359, - [SMALL_STATE(4042)] = 144384, - [SMALL_STATE(4043)] = 144425, - [SMALL_STATE(4044)] = 144458, - [SMALL_STATE(4045)] = 144483, - [SMALL_STATE(4046)] = 144514, - [SMALL_STATE(4047)] = 144539, - [SMALL_STATE(4048)] = 144566, - [SMALL_STATE(4049)] = 144607, - [SMALL_STATE(4050)] = 144652, - [SMALL_STATE(4051)] = 144693, - [SMALL_STATE(4052)] = 144720, - [SMALL_STATE(4053)] = 144745, - [SMALL_STATE(4054)] = 144786, - [SMALL_STATE(4055)] = 144831, - [SMALL_STATE(4056)] = 144872, - [SMALL_STATE(4057)] = 144897, - [SMALL_STATE(4058)] = 144933, - [SMALL_STATE(4059)] = 144967, - [SMALL_STATE(4060)] = 145009, - [SMALL_STATE(4061)] = 145043, - [SMALL_STATE(4062)] = 145085, - [SMALL_STATE(4063)] = 145127, - [SMALL_STATE(4064)] = 145169, - [SMALL_STATE(4065)] = 145211, - [SMALL_STATE(4066)] = 145247, - [SMALL_STATE(4067)] = 145285, - [SMALL_STATE(4068)] = 145329, - [SMALL_STATE(4069)] = 145367, - [SMALL_STATE(4070)] = 145405, - [SMALL_STATE(4071)] = 145443, - [SMALL_STATE(4072)] = 145477, - [SMALL_STATE(4073)] = 145511, - [SMALL_STATE(4074)] = 145553, - [SMALL_STATE(4075)] = 145595, - [SMALL_STATE(4076)] = 145633, - [SMALL_STATE(4077)] = 145675, - [SMALL_STATE(4078)] = 145717, - [SMALL_STATE(4079)] = 145759, - [SMALL_STATE(4080)] = 145785, - [SMALL_STATE(4081)] = 145827, - [SMALL_STATE(4082)] = 145865, - [SMALL_STATE(4083)] = 145907, - [SMALL_STATE(4084)] = 145951, - [SMALL_STATE(4085)] = 145993, - [SMALL_STATE(4086)] = 146031, - [SMALL_STATE(4087)] = 146059, - [SMALL_STATE(4088)] = 146101, - [SMALL_STATE(4089)] = 146137, - [SMALL_STATE(4090)] = 146165, - [SMALL_STATE(4091)] = 146193, - [SMALL_STATE(4092)] = 146235, - [SMALL_STATE(4093)] = 146277, - [SMALL_STATE(4094)] = 146319, - [SMALL_STATE(4095)] = 146357, - [SMALL_STATE(4096)] = 146399, - [SMALL_STATE(4097)] = 146425, - [SMALL_STATE(4098)] = 146467, - [SMALL_STATE(4099)] = 146509, - [SMALL_STATE(4100)] = 146543, - [SMALL_STATE(4101)] = 146585, - [SMALL_STATE(4102)] = 146615, - [SMALL_STATE(4103)] = 146657, - [SMALL_STATE(4104)] = 146699, - [SMALL_STATE(4105)] = 146737, - [SMALL_STATE(4106)] = 146779, - [SMALL_STATE(4107)] = 146823, - [SMALL_STATE(4108)] = 146867, - [SMALL_STATE(4109)] = 146905, - [SMALL_STATE(4110)] = 146947, - [SMALL_STATE(4111)] = 146991, - [SMALL_STATE(4112)] = 147033, - [SMALL_STATE(4113)] = 147075, - [SMALL_STATE(4114)] = 147098, - [SMALL_STATE(4115)] = 147125, - [SMALL_STATE(4116)] = 147150, - [SMALL_STATE(4117)] = 147175, - [SMALL_STATE(4118)] = 147218, - [SMALL_STATE(4119)] = 147243, - [SMALL_STATE(4120)] = 147272, - [SMALL_STATE(4121)] = 147297, - [SMALL_STATE(4122)] = 147322, - [SMALL_STATE(4123)] = 147347, - [SMALL_STATE(4124)] = 147376, - [SMALL_STATE(4125)] = 147401, - [SMALL_STATE(4126)] = 147426, - [SMALL_STATE(4127)] = 147451, - [SMALL_STATE(4128)] = 147476, - [SMALL_STATE(4129)] = 147505, - [SMALL_STATE(4130)] = 147530, - [SMALL_STATE(4131)] = 147555, - [SMALL_STATE(4132)] = 147578, - [SMALL_STATE(4133)] = 147607, - [SMALL_STATE(4134)] = 147634, - [SMALL_STATE(4135)] = 147659, - [SMALL_STATE(4136)] = 147684, - [SMALL_STATE(4137)] = 147713, - [SMALL_STATE(4138)] = 147738, - [SMALL_STATE(4139)] = 147767, - [SMALL_STATE(4140)] = 147794, - [SMALL_STATE(4141)] = 147819, - [SMALL_STATE(4142)] = 147846, - [SMALL_STATE(4143)] = 147871, - [SMALL_STATE(4144)] = 147896, - [SMALL_STATE(4145)] = 147921, - [SMALL_STATE(4146)] = 147946, - [SMALL_STATE(4147)] = 147969, - [SMALL_STATE(4148)] = 147994, - [SMALL_STATE(4149)] = 148017, - [SMALL_STATE(4150)] = 148040, - [SMALL_STATE(4151)] = 148065, - [SMALL_STATE(4152)] = 148088, - [SMALL_STATE(4153)] = 148115, - [SMALL_STATE(4154)] = 148140, - [SMALL_STATE(4155)] = 148165, - [SMALL_STATE(4156)] = 148194, - [SMALL_STATE(4157)] = 148219, - [SMALL_STATE(4158)] = 148246, - [SMALL_STATE(4159)] = 148277, - [SMALL_STATE(4160)] = 148302, - [SMALL_STATE(4161)] = 148325, - [SMALL_STATE(4162)] = 148350, - [SMALL_STATE(4163)] = 148373, - [SMALL_STATE(4164)] = 148398, - [SMALL_STATE(4165)] = 148423, - [SMALL_STATE(4166)] = 148448, - [SMALL_STATE(4167)] = 148471, - [SMALL_STATE(4168)] = 148496, - [SMALL_STATE(4169)] = 148525, - [SMALL_STATE(4170)] = 148550, - [SMALL_STATE(4171)] = 148577, - [SMALL_STATE(4172)] = 148602, - [SMALL_STATE(4173)] = 148627, - [SMALL_STATE(4174)] = 148652, - [SMALL_STATE(4175)] = 148677, - [SMALL_STATE(4176)] = 148702, - [SMALL_STATE(4177)] = 148727, - [SMALL_STATE(4178)] = 148755, - [SMALL_STATE(4179)] = 148791, - [SMALL_STATE(4180)] = 148817, - [SMALL_STATE(4181)] = 148839, - [SMALL_STATE(4182)] = 148865, - [SMALL_STATE(4183)] = 148905, - [SMALL_STATE(4184)] = 148945, - [SMALL_STATE(4185)] = 148985, - [SMALL_STATE(4186)] = 149019, - [SMALL_STATE(4187)] = 149059, - [SMALL_STATE(4188)] = 149099, - [SMALL_STATE(4189)] = 149139, - [SMALL_STATE(4190)] = 149173, - [SMALL_STATE(4191)] = 149213, - [SMALL_STATE(4192)] = 149253, - [SMALL_STATE(4193)] = 149277, - [SMALL_STATE(4194)] = 149305, - [SMALL_STATE(4195)] = 149333, - [SMALL_STATE(4196)] = 149373, - [SMALL_STATE(4197)] = 149413, - [SMALL_STATE(4198)] = 149437, - [SMALL_STATE(4199)] = 149459, - [SMALL_STATE(4200)] = 149495, - [SMALL_STATE(4201)] = 149521, - [SMALL_STATE(4202)] = 149557, - [SMALL_STATE(4203)] = 149597, - [SMALL_STATE(4204)] = 149637, - [SMALL_STATE(4205)] = 149677, - [SMALL_STATE(4206)] = 149717, - [SMALL_STATE(4207)] = 149757, - [SMALL_STATE(4208)] = 149797, - [SMALL_STATE(4209)] = 149837, - [SMALL_STATE(4210)] = 149875, - [SMALL_STATE(4211)] = 149913, - [SMALL_STATE(4212)] = 149937, - [SMALL_STATE(4213)] = 149977, - [SMALL_STATE(4214)] = 150017, - [SMALL_STATE(4215)] = 150053, - [SMALL_STATE(4216)] = 150086, - [SMALL_STATE(4217)] = 150119, - [SMALL_STATE(4218)] = 150152, - [SMALL_STATE(4219)] = 150173, - [SMALL_STATE(4220)] = 150194, - [SMALL_STATE(4221)] = 150215, - [SMALL_STATE(4222)] = 150248, - [SMALL_STATE(4223)] = 150269, - [SMALL_STATE(4224)] = 150306, - [SMALL_STATE(4225)] = 150327, - [SMALL_STATE(4226)] = 150364, - [SMALL_STATE(4227)] = 150401, - [SMALL_STATE(4228)] = 150432, - [SMALL_STATE(4229)] = 150469, - [SMALL_STATE(4230)] = 150500, - [SMALL_STATE(4231)] = 150521, - [SMALL_STATE(4232)] = 150558, - [SMALL_STATE(4233)] = 150591, - [SMALL_STATE(4234)] = 150622, - [SMALL_STATE(4235)] = 150657, - [SMALL_STATE(4236)] = 150690, - [SMALL_STATE(4237)] = 150727, - [SMALL_STATE(4238)] = 150748, - [SMALL_STATE(4239)] = 150779, - [SMALL_STATE(4240)] = 150806, - [SMALL_STATE(4241)] = 150827, - [SMALL_STATE(4242)] = 150848, - [SMALL_STATE(4243)] = 150875, - [SMALL_STATE(4244)] = 150896, - [SMALL_STATE(4245)] = 150917, - [SMALL_STATE(4246)] = 150938, - [SMALL_STATE(4247)] = 150965, - [SMALL_STATE(4248)] = 151002, - [SMALL_STATE(4249)] = 151035, - [SMALL_STATE(4250)] = 151068, - [SMALL_STATE(4251)] = 151089, - [SMALL_STATE(4252)] = 151118, - [SMALL_STATE(4253)] = 151151, - [SMALL_STATE(4254)] = 151172, - [SMALL_STATE(4255)] = 151205, - [SMALL_STATE(4256)] = 151238, - [SMALL_STATE(4257)] = 151267, - [SMALL_STATE(4258)] = 151300, - [SMALL_STATE(4259)] = 151337, - [SMALL_STATE(4260)] = 151372, - [SMALL_STATE(4261)] = 151403, - [SMALL_STATE(4262)] = 151424, - [SMALL_STATE(4263)] = 151445, - [SMALL_STATE(4264)] = 151478, - [SMALL_STATE(4265)] = 151511, - [SMALL_STATE(4266)] = 151548, - [SMALL_STATE(4267)] = 151573, - [SMALL_STATE(4268)] = 151610, - [SMALL_STATE(4269)] = 151639, - [SMALL_STATE(4270)] = 151672, - [SMALL_STATE(4271)] = 151709, - [SMALL_STATE(4272)] = 151746, - [SMALL_STATE(4273)] = 151767, - [SMALL_STATE(4274)] = 151790, - [SMALL_STATE(4275)] = 151811, - [SMALL_STATE(4276)] = 151848, - [SMALL_STATE(4277)] = 151869, - [SMALL_STATE(4278)] = 151890, - [SMALL_STATE(4279)] = 151917, - [SMALL_STATE(4280)] = 151938, - [SMALL_STATE(4281)] = 151959, - [SMALL_STATE(4282)] = 151996, - [SMALL_STATE(4283)] = 152029, - [SMALL_STATE(4284)] = 152050, - [SMALL_STATE(4285)] = 152087, - [SMALL_STATE(4286)] = 152120, - [SMALL_STATE(4287)] = 152153, - [SMALL_STATE(4288)] = 152174, - [SMALL_STATE(4289)] = 152195, - [SMALL_STATE(4290)] = 152216, - [SMALL_STATE(4291)] = 152237, - [SMALL_STATE(4292)] = 152270, - [SMALL_STATE(4293)] = 152291, - [SMALL_STATE(4294)] = 152312, - [SMALL_STATE(4295)] = 152335, - [SMALL_STATE(4296)] = 152368, - [SMALL_STATE(4297)] = 152401, - [SMALL_STATE(4298)] = 152438, - [SMALL_STATE(4299)] = 152471, - [SMALL_STATE(4300)] = 152492, - [SMALL_STATE(4301)] = 152529, - [SMALL_STATE(4302)] = 152566, - [SMALL_STATE(4303)] = 152599, - [SMALL_STATE(4304)] = 152636, - [SMALL_STATE(4305)] = 152673, - [SMALL_STATE(4306)] = 152704, - [SMALL_STATE(4307)] = 152739, - [SMALL_STATE(4308)] = 152770, - [SMALL_STATE(4309)] = 152807, - [SMALL_STATE(4310)] = 152844, - [SMALL_STATE(4311)] = 152881, - [SMALL_STATE(4312)] = 152918, - [SMALL_STATE(4313)] = 152955, - [SMALL_STATE(4314)] = 152988, - [SMALL_STATE(4315)] = 153021, - [SMALL_STATE(4316)] = 153054, - [SMALL_STATE(4317)] = 153087, - [SMALL_STATE(4318)] = 153124, - [SMALL_STATE(4319)] = 153161, - [SMALL_STATE(4320)] = 153194, - [SMALL_STATE(4321)] = 153231, - [SMALL_STATE(4322)] = 153264, - [SMALL_STATE(4323)] = 153297, - [SMALL_STATE(4324)] = 153330, - [SMALL_STATE(4325)] = 153363, - [SMALL_STATE(4326)] = 153394, - [SMALL_STATE(4327)] = 153431, - [SMALL_STATE(4328)] = 153468, - [SMALL_STATE(4329)] = 153501, - [SMALL_STATE(4330)] = 153538, - [SMALL_STATE(4331)] = 153571, - [SMALL_STATE(4332)] = 153594, - [SMALL_STATE(4333)] = 153617, - [SMALL_STATE(4334)] = 153642, - [SMALL_STATE(4335)] = 153669, - [SMALL_STATE(4336)] = 153702, - [SMALL_STATE(4337)] = 153735, - [SMALL_STATE(4338)] = 153766, - [SMALL_STATE(4339)] = 153787, - [SMALL_STATE(4340)] = 153808, - [SMALL_STATE(4341)] = 153829, - [SMALL_STATE(4342)] = 153862, - [SMALL_STATE(4343)] = 153895, - [SMALL_STATE(4344)] = 153916, - [SMALL_STATE(4345)] = 153939, - [SMALL_STATE(4346)] = 153970, - [SMALL_STATE(4347)] = 153991, - [SMALL_STATE(4348)] = 154028, - [SMALL_STATE(4349)] = 154061, - [SMALL_STATE(4350)] = 154082, - [SMALL_STATE(4351)] = 154103, - [SMALL_STATE(4352)] = 154136, - [SMALL_STATE(4353)] = 154173, - [SMALL_STATE(4354)] = 154206, - [SMALL_STATE(4355)] = 154239, - [SMALL_STATE(4356)] = 154276, - [SMALL_STATE(4357)] = 154297, - [SMALL_STATE(4358)] = 154334, - [SMALL_STATE(4359)] = 154371, - [SMALL_STATE(4360)] = 154392, - [SMALL_STATE(4361)] = 154429, - [SMALL_STATE(4362)] = 154450, - [SMALL_STATE(4363)] = 154487, - [SMALL_STATE(4364)] = 154508, - [SMALL_STATE(4365)] = 154541, - [SMALL_STATE(4366)] = 154572, - [SMALL_STATE(4367)] = 154605, - [SMALL_STATE(4368)] = 154638, - [SMALL_STATE(4369)] = 154675, - [SMALL_STATE(4370)] = 154710, - [SMALL_STATE(4371)] = 154747, - [SMALL_STATE(4372)] = 154780, - [SMALL_STATE(4373)] = 154813, - [SMALL_STATE(4374)] = 154846, - [SMALL_STATE(4375)] = 154879, - [SMALL_STATE(4376)] = 154902, - [SMALL_STATE(4377)] = 154925, - [SMALL_STATE(4378)] = 154946, - [SMALL_STATE(4379)] = 154979, - [SMALL_STATE(4380)] = 155000, - [SMALL_STATE(4381)] = 155037, - [SMALL_STATE(4382)] = 155074, - [SMALL_STATE(4383)] = 155095, - [SMALL_STATE(4384)] = 155128, - [SMALL_STATE(4385)] = 155149, - [SMALL_STATE(4386)] = 155182, - [SMALL_STATE(4387)] = 155215, - [SMALL_STATE(4388)] = 155246, - [SMALL_STATE(4389)] = 155269, - [SMALL_STATE(4390)] = 155302, - [SMALL_STATE(4391)] = 155333, - [SMALL_STATE(4392)] = 155370, - [SMALL_STATE(4393)] = 155407, - [SMALL_STATE(4394)] = 155440, - [SMALL_STATE(4395)] = 155463, - [SMALL_STATE(4396)] = 155484, - [SMALL_STATE(4397)] = 155517, - [SMALL_STATE(4398)] = 155554, - [SMALL_STATE(4399)] = 155575, - [SMALL_STATE(4400)] = 155612, - [SMALL_STATE(4401)] = 155637, - [SMALL_STATE(4402)] = 155670, - [SMALL_STATE(4403)] = 155703, - [SMALL_STATE(4404)] = 155736, - [SMALL_STATE(4405)] = 155773, - [SMALL_STATE(4406)] = 155806, - [SMALL_STATE(4407)] = 155843, - [SMALL_STATE(4408)] = 155880, - [SMALL_STATE(4409)] = 155913, - [SMALL_STATE(4410)] = 155946, - [SMALL_STATE(4411)] = 155979, - [SMALL_STATE(4412)] = 156002, - [SMALL_STATE(4413)] = 156035, - [SMALL_STATE(4414)] = 156066, - [SMALL_STATE(4415)] = 156097, - [SMALL_STATE(4416)] = 156130, - [SMALL_STATE(4417)] = 156163, - [SMALL_STATE(4418)] = 156196, - [SMALL_STATE(4419)] = 156229, - [SMALL_STATE(4420)] = 156262, - [SMALL_STATE(4421)] = 156299, - [SMALL_STATE(4422)] = 156332, - [SMALL_STATE(4423)] = 156353, - [SMALL_STATE(4424)] = 156374, - [SMALL_STATE(4425)] = 156395, - [SMALL_STATE(4426)] = 156418, - [SMALL_STATE(4427)] = 156455, - [SMALL_STATE(4428)] = 156476, - [SMALL_STATE(4429)] = 156509, - [SMALL_STATE(4430)] = 156530, - [SMALL_STATE(4431)] = 156567, - [SMALL_STATE(4432)] = 156588, - [SMALL_STATE(4433)] = 156621, - [SMALL_STATE(4434)] = 156642, - [SMALL_STATE(4435)] = 156663, - [SMALL_STATE(4436)] = 156696, - [SMALL_STATE(4437)] = 156727, - [SMALL_STATE(4438)] = 156748, - [SMALL_STATE(4439)] = 156769, - [SMALL_STATE(4440)] = 156790, - [SMALL_STATE(4441)] = 156811, - [SMALL_STATE(4442)] = 156844, - [SMALL_STATE(4443)] = 156865, - [SMALL_STATE(4444)] = 156886, - [SMALL_STATE(4445)] = 156923, - [SMALL_STATE(4446)] = 156950, - [SMALL_STATE(4447)] = 156977, - [SMALL_STATE(4448)] = 157010, - [SMALL_STATE(4449)] = 157036, - [SMALL_STATE(4450)] = 157062, - [SMALL_STATE(4451)] = 157088, - [SMALL_STATE(4452)] = 157120, - [SMALL_STATE(4453)] = 157148, - [SMALL_STATE(4454)] = 157176, - [SMALL_STATE(4455)] = 157204, - [SMALL_STATE(4456)] = 157232, - [SMALL_STATE(4457)] = 157264, - [SMALL_STATE(4458)] = 157286, - [SMALL_STATE(4459)] = 157308, - [SMALL_STATE(4460)] = 157328, - [SMALL_STATE(4461)] = 157362, - [SMALL_STATE(4462)] = 157396, - [SMALL_STATE(4463)] = 157430, - [SMALL_STATE(4464)] = 157462, - [SMALL_STATE(4465)] = 157482, - [SMALL_STATE(4466)] = 157510, - [SMALL_STATE(4467)] = 157544, - [SMALL_STATE(4468)] = 157570, - [SMALL_STATE(4469)] = 157596, - [SMALL_STATE(4470)] = 157628, - [SMALL_STATE(4471)] = 157660, - [SMALL_STATE(4472)] = 157688, - [SMALL_STATE(4473)] = 157718, - [SMALL_STATE(4474)] = 157746, - [SMALL_STATE(4475)] = 157780, - [SMALL_STATE(4476)] = 157814, - [SMALL_STATE(4477)] = 157846, - [SMALL_STATE(4478)] = 157868, - [SMALL_STATE(4479)] = 157896, - [SMALL_STATE(4480)] = 157924, - [SMALL_STATE(4481)] = 157956, - [SMALL_STATE(4482)] = 157990, - [SMALL_STATE(4483)] = 158016, - [SMALL_STATE(4484)] = 158042, - [SMALL_STATE(4485)] = 158076, - [SMALL_STATE(4486)] = 158110, - [SMALL_STATE(4487)] = 158144, - [SMALL_STATE(4488)] = 158171, - [SMALL_STATE(4489)] = 158198, - [SMALL_STATE(4490)] = 158225, - [SMALL_STATE(4491)] = 158252, - [SMALL_STATE(4492)] = 158279, - [SMALL_STATE(4493)] = 158310, - [SMALL_STATE(4494)] = 158337, - [SMALL_STATE(4495)] = 158364, - [SMALL_STATE(4496)] = 158391, - [SMALL_STATE(4497)] = 158418, - [SMALL_STATE(4498)] = 158449, - [SMALL_STATE(4499)] = 158476, - [SMALL_STATE(4500)] = 158507, - [SMALL_STATE(4501)] = 158534, - [SMALL_STATE(4502)] = 158555, - [SMALL_STATE(4503)] = 158574, - [SMALL_STATE(4504)] = 158601, - [SMALL_STATE(4505)] = 158628, - [SMALL_STATE(4506)] = 158655, - [SMALL_STATE(4507)] = 158678, - [SMALL_STATE(4508)] = 158707, - [SMALL_STATE(4509)] = 158736, - [SMALL_STATE(4510)] = 158767, - [SMALL_STATE(4511)] = 158794, - [SMALL_STATE(4512)] = 158813, - [SMALL_STATE(4513)] = 158840, - [SMALL_STATE(4514)] = 158871, - [SMALL_STATE(4515)] = 158902, - [SMALL_STATE(4516)] = 158933, - [SMALL_STATE(4517)] = 158964, - [SMALL_STATE(4518)] = 158991, - [SMALL_STATE(4519)] = 159018, - [SMALL_STATE(4520)] = 159049, - [SMALL_STATE(4521)] = 159076, - [SMALL_STATE(4522)] = 159103, - [SMALL_STATE(4523)] = 159134, - [SMALL_STATE(4524)] = 159165, - [SMALL_STATE(4525)] = 159192, - [SMALL_STATE(4526)] = 159219, - [SMALL_STATE(4527)] = 159246, - [SMALL_STATE(4528)] = 159273, - [SMALL_STATE(4529)] = 159296, - [SMALL_STATE(4530)] = 159323, - [SMALL_STATE(4531)] = 159354, - [SMALL_STATE(4532)] = 159385, - [SMALL_STATE(4533)] = 159412, - [SMALL_STATE(4534)] = 159439, - [SMALL_STATE(4535)] = 159462, - [SMALL_STATE(4536)] = 159489, - [SMALL_STATE(4537)] = 159516, - [SMALL_STATE(4538)] = 159543, - [SMALL_STATE(4539)] = 159566, - [SMALL_STATE(4540)] = 159585, - [SMALL_STATE(4541)] = 159610, - [SMALL_STATE(4542)] = 159639, - [SMALL_STATE(4543)] = 159662, - [SMALL_STATE(4544)] = 159689, - [SMALL_STATE(4545)] = 159716, - [SMALL_STATE(4546)] = 159743, - [SMALL_STATE(4547)] = 159774, - [SMALL_STATE(4548)] = 159801, - [SMALL_STATE(4549)] = 159820, - [SMALL_STATE(4550)] = 159843, - [SMALL_STATE(4551)] = 159874, - [SMALL_STATE(4552)] = 159893, - [SMALL_STATE(4553)] = 159924, - [SMALL_STATE(4554)] = 159955, - [SMALL_STATE(4555)] = 159982, - [SMALL_STATE(4556)] = 160013, - [SMALL_STATE(4557)] = 160042, - [SMALL_STATE(4558)] = 160069, - [SMALL_STATE(4559)] = 160088, - [SMALL_STATE(4560)] = 160111, - [SMALL_STATE(4561)] = 160132, - [SMALL_STATE(4562)] = 160155, - [SMALL_STATE(4563)] = 160186, - [SMALL_STATE(4564)] = 160205, - [SMALL_STATE(4565)] = 160236, - [SMALL_STATE(4566)] = 160267, - [SMALL_STATE(4567)] = 160294, - [SMALL_STATE(4568)] = 160325, - [SMALL_STATE(4569)] = 160348, - [SMALL_STATE(4570)] = 160379, - [SMALL_STATE(4571)] = 160398, - [SMALL_STATE(4572)] = 160421, - [SMALL_STATE(4573)] = 160448, - [SMALL_STATE(4574)] = 160475, - [SMALL_STATE(4575)] = 160502, - [SMALL_STATE(4576)] = 160529, - [SMALL_STATE(4577)] = 160556, - [SMALL_STATE(4578)] = 160587, - [SMALL_STATE(4579)] = 160618, - [SMALL_STATE(4580)] = 160645, - [SMALL_STATE(4581)] = 160672, - [SMALL_STATE(4582)] = 160695, - [SMALL_STATE(4583)] = 160722, - [SMALL_STATE(4584)] = 160745, - [SMALL_STATE(4585)] = 160772, - [SMALL_STATE(4586)] = 160803, - [SMALL_STATE(4587)] = 160830, - [SMALL_STATE(4588)] = 160861, - [SMALL_STATE(4589)] = 160892, - [SMALL_STATE(4590)] = 160923, - [SMALL_STATE(4591)] = 160946, - [SMALL_STATE(4592)] = 160973, - [SMALL_STATE(4593)] = 160992, - [SMALL_STATE(4594)] = 161023, - [SMALL_STATE(4595)] = 161046, - [SMALL_STATE(4596)] = 161073, - [SMALL_STATE(4597)] = 161100, - [SMALL_STATE(4598)] = 161131, - [SMALL_STATE(4599)] = 161160, - [SMALL_STATE(4600)] = 161179, - [SMALL_STATE(4601)] = 161198, - [SMALL_STATE(4602)] = 161221, - [SMALL_STATE(4603)] = 161252, - [SMALL_STATE(4604)] = 161275, - [SMALL_STATE(4605)] = 161302, - [SMALL_STATE(4606)] = 161333, - [SMALL_STATE(4607)] = 161360, - [SMALL_STATE(4608)] = 161391, - [SMALL_STATE(4609)] = 161418, - [SMALL_STATE(4610)] = 161445, - [SMALL_STATE(4611)] = 161464, - [SMALL_STATE(4612)] = 161491, - [SMALL_STATE(4613)] = 161522, - [SMALL_STATE(4614)] = 161549, - [SMALL_STATE(4615)] = 161568, - [SMALL_STATE(4616)] = 161599, - [SMALL_STATE(4617)] = 161630, - [SMALL_STATE(4618)] = 161661, - [SMALL_STATE(4619)] = 161692, - [SMALL_STATE(4620)] = 161715, - [SMALL_STATE(4621)] = 161746, - [SMALL_STATE(4622)] = 161765, - [SMALL_STATE(4623)] = 161792, - [SMALL_STATE(4624)] = 161819, - [SMALL_STATE(4625)] = 161850, - [SMALL_STATE(4626)] = 161881, - [SMALL_STATE(4627)] = 161912, - [SMALL_STATE(4628)] = 161935, - [SMALL_STATE(4629)] = 161962, - [SMALL_STATE(4630)] = 161993, - [SMALL_STATE(4631)] = 162012, - [SMALL_STATE(4632)] = 162033, - [SMALL_STATE(4633)] = 162060, - [SMALL_STATE(4634)] = 162091, - [SMALL_STATE(4635)] = 162118, - [SMALL_STATE(4636)] = 162149, - [SMALL_STATE(4637)] = 162168, - [SMALL_STATE(4638)] = 162197, - [SMALL_STATE(4639)] = 162226, - [SMALL_STATE(4640)] = 162257, - [SMALL_STATE(4641)] = 162282, - [SMALL_STATE(4642)] = 162313, - [SMALL_STATE(4643)] = 162332, - [SMALL_STATE(4644)] = 162351, - [SMALL_STATE(4645)] = 162370, - [SMALL_STATE(4646)] = 162389, - [SMALL_STATE(4647)] = 162420, - [SMALL_STATE(4648)] = 162449, - [SMALL_STATE(4649)] = 162476, - [SMALL_STATE(4650)] = 162507, - [SMALL_STATE(4651)] = 162534, - [SMALL_STATE(4652)] = 162563, - [SMALL_STATE(4653)] = 162590, - [SMALL_STATE(4654)] = 162621, - [SMALL_STATE(4655)] = 162652, - [SMALL_STATE(4656)] = 162671, - [SMALL_STATE(4657)] = 162702, - [SMALL_STATE(4658)] = 162731, - [SMALL_STATE(4659)] = 162762, - [SMALL_STATE(4660)] = 162789, - [SMALL_STATE(4661)] = 162816, - [SMALL_STATE(4662)] = 162847, - [SMALL_STATE(4663)] = 162878, - [SMALL_STATE(4664)] = 162905, - [SMALL_STATE(4665)] = 162924, - [SMALL_STATE(4666)] = 162955, - [SMALL_STATE(4667)] = 162986, - [SMALL_STATE(4668)] = 163005, - [SMALL_STATE(4669)] = 163032, - [SMALL_STATE(4670)] = 163063, - [SMALL_STATE(4671)] = 163082, - [SMALL_STATE(4672)] = 163103, - [SMALL_STATE(4673)] = 163132, - [SMALL_STATE(4674)] = 163161, - [SMALL_STATE(4675)] = 163188, - [SMALL_STATE(4676)] = 163215, - [SMALL_STATE(4677)] = 163242, - [SMALL_STATE(4678)] = 163273, - [SMALL_STATE(4679)] = 163300, - [SMALL_STATE(4680)] = 163323, - [SMALL_STATE(4681)] = 163346, - [SMALL_STATE(4682)] = 163365, - [SMALL_STATE(4683)] = 163396, - [SMALL_STATE(4684)] = 163425, - [SMALL_STATE(4685)] = 163452, - [SMALL_STATE(4686)] = 163483, - [SMALL_STATE(4687)] = 163514, - [SMALL_STATE(4688)] = 163541, - [SMALL_STATE(4689)] = 163570, - [SMALL_STATE(4690)] = 163597, - [SMALL_STATE(4691)] = 163620, - [SMALL_STATE(4692)] = 163651, - [SMALL_STATE(4693)] = 163674, - [SMALL_STATE(4694)] = 163693, - [SMALL_STATE(4695)] = 163716, - [SMALL_STATE(4696)] = 163743, - [SMALL_STATE(4697)] = 163766, - [SMALL_STATE(4698)] = 163793, - [SMALL_STATE(4699)] = 163820, - [SMALL_STATE(4700)] = 163851, - [SMALL_STATE(4701)] = 163880, - [SMALL_STATE(4702)] = 163907, - [SMALL_STATE(4703)] = 163930, - [SMALL_STATE(4704)] = 163957, - [SMALL_STATE(4705)] = 163988, - [SMALL_STATE(4706)] = 164015, - [SMALL_STATE(4707)] = 164038, - [SMALL_STATE(4708)] = 164069, - [SMALL_STATE(4709)] = 164096, - [SMALL_STATE(4710)] = 164115, - [SMALL_STATE(4711)] = 164142, - [SMALL_STATE(4712)] = 164163, - [SMALL_STATE(4713)] = 164186, - [SMALL_STATE(4714)] = 164213, - [SMALL_STATE(4715)] = 164232, - [SMALL_STATE(4716)] = 164259, - [SMALL_STATE(4717)] = 164286, - [SMALL_STATE(4718)] = 164307, - [SMALL_STATE(4719)] = 164334, - [SMALL_STATE(4720)] = 164365, - [SMALL_STATE(4721)] = 164396, - [SMALL_STATE(4722)] = 164417, - [SMALL_STATE(4723)] = 164448, - [SMALL_STATE(4724)] = 164475, - [SMALL_STATE(4725)] = 164502, - [SMALL_STATE(4726)] = 164529, - [SMALL_STATE(4727)] = 164560, - [SMALL_STATE(4728)] = 164591, - [SMALL_STATE(4729)] = 164620, - [SMALL_STATE(4730)] = 164651, - [SMALL_STATE(4731)] = 164678, - [SMALL_STATE(4732)] = 164707, - [SMALL_STATE(4733)] = 164734, - [SMALL_STATE(4734)] = 164765, - [SMALL_STATE(4735)] = 164792, - [SMALL_STATE(4736)] = 164819, - [SMALL_STATE(4737)] = 164850, - [SMALL_STATE(4738)] = 164881, - [SMALL_STATE(4739)] = 164908, - [SMALL_STATE(4740)] = 164931, - [SMALL_STATE(4741)] = 164950, - [SMALL_STATE(4742)] = 164979, - [SMALL_STATE(4743)] = 165002, - [SMALL_STATE(4744)] = 165029, - [SMALL_STATE(4745)] = 165060, - [SMALL_STATE(4746)] = 165087, - [SMALL_STATE(4747)] = 165118, - [SMALL_STATE(4748)] = 165145, - [SMALL_STATE(4749)] = 165172, - [SMALL_STATE(4750)] = 165199, - [SMALL_STATE(4751)] = 165226, - [SMALL_STATE(4752)] = 165257, - [SMALL_STATE(4753)] = 165288, - [SMALL_STATE(4754)] = 165307, - [SMALL_STATE(4755)] = 165338, - [SMALL_STATE(4756)] = 165365, - [SMALL_STATE(4757)] = 165396, - [SMALL_STATE(4758)] = 165427, - [SMALL_STATE(4759)] = 165450, - [SMALL_STATE(4760)] = 165477, - [SMALL_STATE(4761)] = 165497, - [SMALL_STATE(4762)] = 165525, - [SMALL_STATE(4763)] = 165553, - [SMALL_STATE(4764)] = 165575, - [SMALL_STATE(4765)] = 165593, - [SMALL_STATE(4766)] = 165621, - [SMALL_STATE(4767)] = 165649, - [SMALL_STATE(4768)] = 165667, - [SMALL_STATE(4769)] = 165689, - [SMALL_STATE(4770)] = 165711, - [SMALL_STATE(4771)] = 165739, - [SMALL_STATE(4772)] = 165767, - [SMALL_STATE(4773)] = 165795, - [SMALL_STATE(4774)] = 165817, - [SMALL_STATE(4775)] = 165845, - [SMALL_STATE(4776)] = 165873, - [SMALL_STATE(4777)] = 165895, - [SMALL_STATE(4778)] = 165915, - [SMALL_STATE(4779)] = 165933, - [SMALL_STATE(4780)] = 165959, - [SMALL_STATE(4781)] = 165977, - [SMALL_STATE(4782)] = 165999, - [SMALL_STATE(4783)] = 166027, - [SMALL_STATE(4784)] = 166055, - [SMALL_STATE(4785)] = 166073, - [SMALL_STATE(4786)] = 166099, - [SMALL_STATE(4787)] = 166127, - [SMALL_STATE(4788)] = 166145, - [SMALL_STATE(4789)] = 166167, - [SMALL_STATE(4790)] = 166189, - [SMALL_STATE(4791)] = 166211, - [SMALL_STATE(4792)] = 166233, - [SMALL_STATE(4793)] = 166255, - [SMALL_STATE(4794)] = 166273, - [SMALL_STATE(4795)] = 166297, - [SMALL_STATE(4796)] = 166325, - [SMALL_STATE(4797)] = 166353, - [SMALL_STATE(4798)] = 166381, - [SMALL_STATE(4799)] = 166407, - [SMALL_STATE(4800)] = 166435, - [SMALL_STATE(4801)] = 166457, - [SMALL_STATE(4802)] = 166475, - [SMALL_STATE(4803)] = 166495, - [SMALL_STATE(4804)] = 166517, - [SMALL_STATE(4805)] = 166535, - [SMALL_STATE(4806)] = 166563, - [SMALL_STATE(4807)] = 166591, - [SMALL_STATE(4808)] = 166613, - [SMALL_STATE(4809)] = 166631, - [SMALL_STATE(4810)] = 166653, - [SMALL_STATE(4811)] = 166679, - [SMALL_STATE(4812)] = 166707, - [SMALL_STATE(4813)] = 166735, - [SMALL_STATE(4814)] = 166753, - [SMALL_STATE(4815)] = 166781, - [SMALL_STATE(4816)] = 166809, - [SMALL_STATE(4817)] = 166827, - [SMALL_STATE(4818)] = 166855, - [SMALL_STATE(4819)] = 166881, - [SMALL_STATE(4820)] = 166907, - [SMALL_STATE(4821)] = 166935, - [SMALL_STATE(4822)] = 166963, - [SMALL_STATE(4823)] = 166991, - [SMALL_STATE(4824)] = 167009, - [SMALL_STATE(4825)] = 167031, - [SMALL_STATE(4826)] = 167057, - [SMALL_STATE(4827)] = 167085, - [SMALL_STATE(4828)] = 167113, - [SMALL_STATE(4829)] = 167141, - [SMALL_STATE(4830)] = 167161, - [SMALL_STATE(4831)] = 167189, - [SMALL_STATE(4832)] = 167215, - [SMALL_STATE(4833)] = 167243, - [SMALL_STATE(4834)] = 167271, - [SMALL_STATE(4835)] = 167289, - [SMALL_STATE(4836)] = 167317, - [SMALL_STATE(4837)] = 167345, - [SMALL_STATE(4838)] = 167367, - [SMALL_STATE(4839)] = 167395, - [SMALL_STATE(4840)] = 167423, - [SMALL_STATE(4841)] = 167451, - [SMALL_STATE(4842)] = 167477, - [SMALL_STATE(4843)] = 167503, - [SMALL_STATE(4844)] = 167531, - [SMALL_STATE(4845)] = 167559, - [SMALL_STATE(4846)] = 167587, - [SMALL_STATE(4847)] = 167613, - [SMALL_STATE(4848)] = 167641, - [SMALL_STATE(4849)] = 167669, - [SMALL_STATE(4850)] = 167687, - [SMALL_STATE(4851)] = 167711, - [SMALL_STATE(4852)] = 167729, - [SMALL_STATE(4853)] = 167749, - [SMALL_STATE(4854)] = 167767, - [SMALL_STATE(4855)] = 167785, - [SMALL_STATE(4856)] = 167803, - [SMALL_STATE(4857)] = 167829, - [SMALL_STATE(4858)] = 167851, - [SMALL_STATE(4859)] = 167869, - [SMALL_STATE(4860)] = 167897, - [SMALL_STATE(4861)] = 167925, - [SMALL_STATE(4862)] = 167947, - [SMALL_STATE(4863)] = 167975, - [SMALL_STATE(4864)] = 168003, - [SMALL_STATE(4865)] = 168025, - [SMALL_STATE(4866)] = 168047, - [SMALL_STATE(4867)] = 168069, - [SMALL_STATE(4868)] = 168087, - [SMALL_STATE(4869)] = 168115, - [SMALL_STATE(4870)] = 168137, - [SMALL_STATE(4871)] = 168165, - [SMALL_STATE(4872)] = 168187, - [SMALL_STATE(4873)] = 168213, - [SMALL_STATE(4874)] = 168231, - [SMALL_STATE(4875)] = 168249, - [SMALL_STATE(4876)] = 168275, - [SMALL_STATE(4877)] = 168293, - [SMALL_STATE(4878)] = 168315, - [SMALL_STATE(4879)] = 168333, - [SMALL_STATE(4880)] = 168355, - [SMALL_STATE(4881)] = 168377, - [SMALL_STATE(4882)] = 168395, - [SMALL_STATE(4883)] = 168413, - [SMALL_STATE(4884)] = 168431, - [SMALL_STATE(4885)] = 168449, - [SMALL_STATE(4886)] = 168471, - [SMALL_STATE(4887)] = 168499, - [SMALL_STATE(4888)] = 168525, - [SMALL_STATE(4889)] = 168547, - [SMALL_STATE(4890)] = 168573, - [SMALL_STATE(4891)] = 168601, - [SMALL_STATE(4892)] = 168623, - [SMALL_STATE(4893)] = 168651, - [SMALL_STATE(4894)] = 168673, - [SMALL_STATE(4895)] = 168695, - [SMALL_STATE(4896)] = 168717, - [SMALL_STATE(4897)] = 168743, - [SMALL_STATE(4898)] = 168771, - [SMALL_STATE(4899)] = 168799, - [SMALL_STATE(4900)] = 168817, - [SMALL_STATE(4901)] = 168843, - [SMALL_STATE(4902)] = 168865, - [SMALL_STATE(4903)] = 168893, - [SMALL_STATE(4904)] = 168921, - [SMALL_STATE(4905)] = 168943, - [SMALL_STATE(4906)] = 168965, - [SMALL_STATE(4907)] = 168991, - [SMALL_STATE(4908)] = 169009, - [SMALL_STATE(4909)] = 169027, - [SMALL_STATE(4910)] = 169049, - [SMALL_STATE(4911)] = 169067, - [SMALL_STATE(4912)] = 169085, - [SMALL_STATE(4913)] = 169103, - [SMALL_STATE(4914)] = 169129, - [SMALL_STATE(4915)] = 169157, - [SMALL_STATE(4916)] = 169179, - [SMALL_STATE(4917)] = 169201, - [SMALL_STATE(4918)] = 169229, - [SMALL_STATE(4919)] = 169247, - [SMALL_STATE(4920)] = 169275, - [SMALL_STATE(4921)] = 169303, - [SMALL_STATE(4922)] = 169325, - [SMALL_STATE(4923)] = 169353, - [SMALL_STATE(4924)] = 169375, - [SMALL_STATE(4925)] = 169401, - [SMALL_STATE(4926)] = 169429, - [SMALL_STATE(4927)] = 169457, - [SMALL_STATE(4928)] = 169485, - [SMALL_STATE(4929)] = 169513, - [SMALL_STATE(4930)] = 169535, - [SMALL_STATE(4931)] = 169557, - [SMALL_STATE(4932)] = 169585, - [SMALL_STATE(4933)] = 169607, - [SMALL_STATE(4934)] = 169629, - [SMALL_STATE(4935)] = 169657, - [SMALL_STATE(4936)] = 169679, - [SMALL_STATE(4937)] = 169701, - [SMALL_STATE(4938)] = 169727, - [SMALL_STATE(4939)] = 169745, - [SMALL_STATE(4940)] = 169773, - [SMALL_STATE(4941)] = 169791, - [SMALL_STATE(4942)] = 169813, - [SMALL_STATE(4943)] = 169831, - [SMALL_STATE(4944)] = 169853, - [SMALL_STATE(4945)] = 169875, - [SMALL_STATE(4946)] = 169893, - [SMALL_STATE(4947)] = 169921, - [SMALL_STATE(4948)] = 169947, - [SMALL_STATE(4949)] = 169975, - [SMALL_STATE(4950)] = 169997, - [SMALL_STATE(4951)] = 170025, - [SMALL_STATE(4952)] = 170047, - [SMALL_STATE(4953)] = 170075, - [SMALL_STATE(4954)] = 170103, - [SMALL_STATE(4955)] = 170125, - [SMALL_STATE(4956)] = 170153, - [SMALL_STATE(4957)] = 170181, - [SMALL_STATE(4958)] = 170201, - [SMALL_STATE(4959)] = 170229, - [SMALL_STATE(4960)] = 170251, - [SMALL_STATE(4961)] = 170279, - [SMALL_STATE(4962)] = 170301, - [SMALL_STATE(4963)] = 170321, - [SMALL_STATE(4964)] = 170341, - [SMALL_STATE(4965)] = 170361, - [SMALL_STATE(4966)] = 170383, - [SMALL_STATE(4967)] = 170407, - [SMALL_STATE(4968)] = 170425, - [SMALL_STATE(4969)] = 170447, - [SMALL_STATE(4970)] = 170475, - [SMALL_STATE(4971)] = 170501, - [SMALL_STATE(4972)] = 170529, - [SMALL_STATE(4973)] = 170547, - [SMALL_STATE(4974)] = 170569, - [SMALL_STATE(4975)] = 170597, - [SMALL_STATE(4976)] = 170625, - [SMALL_STATE(4977)] = 170653, - [SMALL_STATE(4978)] = 170673, - [SMALL_STATE(4979)] = 170701, - [SMALL_STATE(4980)] = 170719, - [SMALL_STATE(4981)] = 170741, - [SMALL_STATE(4982)] = 170763, - [SMALL_STATE(4983)] = 170783, - [SMALL_STATE(4984)] = 170811, - [SMALL_STATE(4985)] = 170833, - [SMALL_STATE(4986)] = 170861, - [SMALL_STATE(4987)] = 170879, - [SMALL_STATE(4988)] = 170897, - [SMALL_STATE(4989)] = 170915, - [SMALL_STATE(4990)] = 170937, - [SMALL_STATE(4991)] = 170963, - [SMALL_STATE(4992)] = 170980, - [SMALL_STATE(4993)] = 171003, - [SMALL_STATE(4994)] = 171024, - [SMALL_STATE(4995)] = 171045, - [SMALL_STATE(4996)] = 171070, - [SMALL_STATE(4997)] = 171091, - [SMALL_STATE(4998)] = 171116, - [SMALL_STATE(4999)] = 171133, - [SMALL_STATE(5000)] = 171154, - [SMALL_STATE(5001)] = 171175, - [SMALL_STATE(5002)] = 171200, - [SMALL_STATE(5003)] = 171221, - [SMALL_STATE(5004)] = 171242, - [SMALL_STATE(5005)] = 171263, - [SMALL_STATE(5006)] = 171284, - [SMALL_STATE(5007)] = 171309, - [SMALL_STATE(5008)] = 171326, - [SMALL_STATE(5009)] = 171343, - [SMALL_STATE(5010)] = 171360, - [SMALL_STATE(5011)] = 171377, - [SMALL_STATE(5012)] = 171402, - [SMALL_STATE(5013)] = 171423, - [SMALL_STATE(5014)] = 171444, - [SMALL_STATE(5015)] = 171465, - [SMALL_STATE(5016)] = 171490, - [SMALL_STATE(5017)] = 171511, - [SMALL_STATE(5018)] = 171536, - [SMALL_STATE(5019)] = 171557, - [SMALL_STATE(5020)] = 171578, - [SMALL_STATE(5021)] = 171599, - [SMALL_STATE(5022)] = 171620, - [SMALL_STATE(5023)] = 171641, - [SMALL_STATE(5024)] = 171662, - [SMALL_STATE(5025)] = 171683, - [SMALL_STATE(5026)] = 171704, - [SMALL_STATE(5027)] = 171721, - [SMALL_STATE(5028)] = 171742, - [SMALL_STATE(5029)] = 171763, - [SMALL_STATE(5030)] = 171784, - [SMALL_STATE(5031)] = 171801, - [SMALL_STATE(5032)] = 171822, - [SMALL_STATE(5033)] = 171847, - [SMALL_STATE(5034)] = 171864, - [SMALL_STATE(5035)] = 171885, - [SMALL_STATE(5036)] = 171906, - [SMALL_STATE(5037)] = 171923, - [SMALL_STATE(5038)] = 171944, - [SMALL_STATE(5039)] = 171965, - [SMALL_STATE(5040)] = 171982, - [SMALL_STATE(5041)] = 172003, - [SMALL_STATE(5042)] = 172020, - [SMALL_STATE(5043)] = 172045, - [SMALL_STATE(5044)] = 172066, - [SMALL_STATE(5045)] = 172091, - [SMALL_STATE(5046)] = 172108, - [SMALL_STATE(5047)] = 172125, - [SMALL_STATE(5048)] = 172150, - [SMALL_STATE(5049)] = 172167, - [SMALL_STATE(5050)] = 172184, - [SMALL_STATE(5051)] = 172205, - [SMALL_STATE(5052)] = 172226, - [SMALL_STATE(5053)] = 172247, - [SMALL_STATE(5054)] = 172268, - [SMALL_STATE(5055)] = 172289, - [SMALL_STATE(5056)] = 172312, - [SMALL_STATE(5057)] = 172329, - [SMALL_STATE(5058)] = 172346, - [SMALL_STATE(5059)] = 172367, - [SMALL_STATE(5060)] = 172388, - [SMALL_STATE(5061)] = 172409, - [SMALL_STATE(5062)] = 172426, - [SMALL_STATE(5063)] = 172443, - [SMALL_STATE(5064)] = 172464, - [SMALL_STATE(5065)] = 172487, - [SMALL_STATE(5066)] = 172504, - [SMALL_STATE(5067)] = 172525, - [SMALL_STATE(5068)] = 172546, - [SMALL_STATE(5069)] = 172571, - [SMALL_STATE(5070)] = 172588, - [SMALL_STATE(5071)] = 172609, - [SMALL_STATE(5072)] = 172626, - [SMALL_STATE(5073)] = 172643, - [SMALL_STATE(5074)] = 172664, - [SMALL_STATE(5075)] = 172685, - [SMALL_STATE(5076)] = 172702, - [SMALL_STATE(5077)] = 172723, - [SMALL_STATE(5078)] = 172740, - [SMALL_STATE(5079)] = 172757, - [SMALL_STATE(5080)] = 172774, - [SMALL_STATE(5081)] = 172795, - [SMALL_STATE(5082)] = 172818, - [SMALL_STATE(5083)] = 172835, - [SMALL_STATE(5084)] = 172852, - [SMALL_STATE(5085)] = 172869, - [SMALL_STATE(5086)] = 172894, - [SMALL_STATE(5087)] = 172911, - [SMALL_STATE(5088)] = 172934, - [SMALL_STATE(5089)] = 172951, - [SMALL_STATE(5090)] = 172972, - [SMALL_STATE(5091)] = 172997, - [SMALL_STATE(5092)] = 173022, - [SMALL_STATE(5093)] = 173047, - [SMALL_STATE(5094)] = 173068, - [SMALL_STATE(5095)] = 173089, - [SMALL_STATE(5096)] = 173110, - [SMALL_STATE(5097)] = 173135, - [SMALL_STATE(5098)] = 173160, - [SMALL_STATE(5099)] = 173177, - [SMALL_STATE(5100)] = 173194, - [SMALL_STATE(5101)] = 173219, - [SMALL_STATE(5102)] = 173240, - [SMALL_STATE(5103)] = 173265, - [SMALL_STATE(5104)] = 173282, - [SMALL_STATE(5105)] = 173307, - [SMALL_STATE(5106)] = 173330, - [SMALL_STATE(5107)] = 173347, - [SMALL_STATE(5108)] = 173372, - [SMALL_STATE(5109)] = 173389, - [SMALL_STATE(5110)] = 173414, - [SMALL_STATE(5111)] = 173439, - [SMALL_STATE(5112)] = 173456, - [SMALL_STATE(5113)] = 173473, - [SMALL_STATE(5114)] = 173490, - [SMALL_STATE(5115)] = 173507, - [SMALL_STATE(5116)] = 173524, - [SMALL_STATE(5117)] = 173545, - [SMALL_STATE(5118)] = 173566, - [SMALL_STATE(5119)] = 173587, - [SMALL_STATE(5120)] = 173608, - [SMALL_STATE(5121)] = 173633, - [SMALL_STATE(5122)] = 173658, - [SMALL_STATE(5123)] = 173683, - [SMALL_STATE(5124)] = 173702, - [SMALL_STATE(5125)] = 173719, - [SMALL_STATE(5126)] = 173736, - [SMALL_STATE(5127)] = 173761, - [SMALL_STATE(5128)] = 173782, - [SMALL_STATE(5129)] = 173803, - [SMALL_STATE(5130)] = 173824, - [SMALL_STATE(5131)] = 173841, - [SMALL_STATE(5132)] = 173858, - [SMALL_STATE(5133)] = 173875, - [SMALL_STATE(5134)] = 173892, - [SMALL_STATE(5135)] = 173917, - [SMALL_STATE(5136)] = 173934, - [SMALL_STATE(5137)] = 173957, - [SMALL_STATE(5138)] = 173978, - [SMALL_STATE(5139)] = 174001, - [SMALL_STATE(5140)] = 174022, - [SMALL_STATE(5141)] = 174043, - [SMALL_STATE(5142)] = 174064, - [SMALL_STATE(5143)] = 174085, - [SMALL_STATE(5144)] = 174106, - [SMALL_STATE(5145)] = 174127, - [SMALL_STATE(5146)] = 174148, - [SMALL_STATE(5147)] = 174169, - [SMALL_STATE(5148)] = 174186, - [SMALL_STATE(5149)] = 174207, - [SMALL_STATE(5150)] = 174224, - [SMALL_STATE(5151)] = 174241, - [SMALL_STATE(5152)] = 174262, - [SMALL_STATE(5153)] = 174279, - [SMALL_STATE(5154)] = 174304, - [SMALL_STATE(5155)] = 174329, - [SMALL_STATE(5156)] = 174350, - [SMALL_STATE(5157)] = 174371, - [SMALL_STATE(5158)] = 174392, - [SMALL_STATE(5159)] = 174413, - [SMALL_STATE(5160)] = 174438, - [SMALL_STATE(5161)] = 174463, - [SMALL_STATE(5162)] = 174488, - [SMALL_STATE(5163)] = 174509, - [SMALL_STATE(5164)] = 174530, - [SMALL_STATE(5165)] = 174553, - [SMALL_STATE(5166)] = 174578, - [SMALL_STATE(5167)] = 174603, - [SMALL_STATE(5168)] = 174628, - [SMALL_STATE(5169)] = 174653, - [SMALL_STATE(5170)] = 174674, - [SMALL_STATE(5171)] = 174695, - [SMALL_STATE(5172)] = 174716, - [SMALL_STATE(5173)] = 174741, - [SMALL_STATE(5174)] = 174766, - [SMALL_STATE(5175)] = 174791, - [SMALL_STATE(5176)] = 174816, - [SMALL_STATE(5177)] = 174837, - [SMALL_STATE(5178)] = 174862, - [SMALL_STATE(5179)] = 174887, - [SMALL_STATE(5180)] = 174912, - [SMALL_STATE(5181)] = 174937, - [SMALL_STATE(5182)] = 174962, - [SMALL_STATE(5183)] = 174987, - [SMALL_STATE(5184)] = 175008, - [SMALL_STATE(5185)] = 175033, - [SMALL_STATE(5186)] = 175054, - [SMALL_STATE(5187)] = 175071, - [SMALL_STATE(5188)] = 175092, - [SMALL_STATE(5189)] = 175109, - [SMALL_STATE(5190)] = 175126, - [SMALL_STATE(5191)] = 175151, - [SMALL_STATE(5192)] = 175176, - [SMALL_STATE(5193)] = 175193, - [SMALL_STATE(5194)] = 175210, - [SMALL_STATE(5195)] = 175231, - [SMALL_STATE(5196)] = 175256, - [SMALL_STATE(5197)] = 175273, - [SMALL_STATE(5198)] = 175298, - [SMALL_STATE(5199)] = 175321, - [SMALL_STATE(5200)] = 175346, - [SMALL_STATE(5201)] = 175371, - [SMALL_STATE(5202)] = 175396, - [SMALL_STATE(5203)] = 175415, - [SMALL_STATE(5204)] = 175432, - [SMALL_STATE(5205)] = 175449, - [SMALL_STATE(5206)] = 175470, - [SMALL_STATE(5207)] = 175487, - [SMALL_STATE(5208)] = 175504, - [SMALL_STATE(5209)] = 175529, - [SMALL_STATE(5210)] = 175548, - [SMALL_STATE(5211)] = 175569, - [SMALL_STATE(5212)] = 175586, - [SMALL_STATE(5213)] = 175611, - [SMALL_STATE(5214)] = 175636, - [SMALL_STATE(5215)] = 175653, - [SMALL_STATE(5216)] = 175672, - [SMALL_STATE(5217)] = 175689, - [SMALL_STATE(5218)] = 175710, - [SMALL_STATE(5219)] = 175727, - [SMALL_STATE(5220)] = 175744, - [SMALL_STATE(5221)] = 175763, - [SMALL_STATE(5222)] = 175788, - [SMALL_STATE(5223)] = 175813, - [SMALL_STATE(5224)] = 175834, - [SMALL_STATE(5225)] = 175855, - [SMALL_STATE(5226)] = 175878, - [SMALL_STATE(5227)] = 175899, - [SMALL_STATE(5228)] = 175916, - [SMALL_STATE(5229)] = 175933, - [SMALL_STATE(5230)] = 175954, - [SMALL_STATE(5231)] = 175971, - [SMALL_STATE(5232)] = 175992, - [SMALL_STATE(5233)] = 176009, - [SMALL_STATE(5234)] = 176030, - [SMALL_STATE(5235)] = 176055, - [SMALL_STATE(5236)] = 176080, - [SMALL_STATE(5237)] = 176101, - [SMALL_STATE(5238)] = 176126, - [SMALL_STATE(5239)] = 176147, - [SMALL_STATE(5240)] = 176164, - [SMALL_STATE(5241)] = 176185, - [SMALL_STATE(5242)] = 176202, - [SMALL_STATE(5243)] = 176223, - [SMALL_STATE(5244)] = 176244, - [SMALL_STATE(5245)] = 176269, - [SMALL_STATE(5246)] = 176286, - [SMALL_STATE(5247)] = 176311, - [SMALL_STATE(5248)] = 176328, - [SMALL_STATE(5249)] = 176345, - [SMALL_STATE(5250)] = 176370, - [SMALL_STATE(5251)] = 176387, - [SMALL_STATE(5252)] = 176404, - [SMALL_STATE(5253)] = 176425, - [SMALL_STATE(5254)] = 176442, - [SMALL_STATE(5255)] = 176467, - [SMALL_STATE(5256)] = 176484, - [SMALL_STATE(5257)] = 176501, - [SMALL_STATE(5258)] = 176518, - [SMALL_STATE(5259)] = 176543, - [SMALL_STATE(5260)] = 176568, - [SMALL_STATE(5261)] = 176585, - [SMALL_STATE(5262)] = 176610, - [SMALL_STATE(5263)] = 176627, - [SMALL_STATE(5264)] = 176652, - [SMALL_STATE(5265)] = 176669, - [SMALL_STATE(5266)] = 176690, - [SMALL_STATE(5267)] = 176715, - [SMALL_STATE(5268)] = 176738, - [SMALL_STATE(5269)] = 176759, - [SMALL_STATE(5270)] = 176782, - [SMALL_STATE(5271)] = 176807, - [SMALL_STATE(5272)] = 176828, - [SMALL_STATE(5273)] = 176853, - [SMALL_STATE(5274)] = 176878, - [SMALL_STATE(5275)] = 176903, - [SMALL_STATE(5276)] = 176928, - [SMALL_STATE(5277)] = 176945, - [SMALL_STATE(5278)] = 176966, - [SMALL_STATE(5279)] = 176991, - [SMALL_STATE(5280)] = 177014, - [SMALL_STATE(5281)] = 177039, - [SMALL_STATE(5282)] = 177056, - [SMALL_STATE(5283)] = 177077, - [SMALL_STATE(5284)] = 177094, - [SMALL_STATE(5285)] = 177115, - [SMALL_STATE(5286)] = 177136, - [SMALL_STATE(5287)] = 177161, - [SMALL_STATE(5288)] = 177186, - [SMALL_STATE(5289)] = 177207, - [SMALL_STATE(5290)] = 177224, - [SMALL_STATE(5291)] = 177249, - [SMALL_STATE(5292)] = 177272, - [SMALL_STATE(5293)] = 177297, - [SMALL_STATE(5294)] = 177322, - [SMALL_STATE(5295)] = 177343, - [SMALL_STATE(5296)] = 177364, - [SMALL_STATE(5297)] = 177381, - [SMALL_STATE(5298)] = 177406, - [SMALL_STATE(5299)] = 177427, - [SMALL_STATE(5300)] = 177452, - [SMALL_STATE(5301)] = 177473, - [SMALL_STATE(5302)] = 177498, - [SMALL_STATE(5303)] = 177519, - [SMALL_STATE(5304)] = 177540, - [SMALL_STATE(5305)] = 177565, - [SMALL_STATE(5306)] = 177582, - [SMALL_STATE(5307)] = 177599, - [SMALL_STATE(5308)] = 177624, - [SMALL_STATE(5309)] = 177645, - [SMALL_STATE(5310)] = 177670, - [SMALL_STATE(5311)] = 177687, - [SMALL_STATE(5312)] = 177704, - [SMALL_STATE(5313)] = 177725, - [SMALL_STATE(5314)] = 177750, - [SMALL_STATE(5315)] = 177771, - [SMALL_STATE(5316)] = 177788, - [SMALL_STATE(5317)] = 177813, - [SMALL_STATE(5318)] = 177834, - [SMALL_STATE(5319)] = 177851, - [SMALL_STATE(5320)] = 177872, - [SMALL_STATE(5321)] = 177893, - [SMALL_STATE(5322)] = 177918, - [SMALL_STATE(5323)] = 177939, - [SMALL_STATE(5324)] = 177960, - [SMALL_STATE(5325)] = 177985, - [SMALL_STATE(5326)] = 178010, - [SMALL_STATE(5327)] = 178033, - [SMALL_STATE(5328)] = 178058, - [SMALL_STATE(5329)] = 178079, - [SMALL_STATE(5330)] = 178100, - [SMALL_STATE(5331)] = 178121, - [SMALL_STATE(5332)] = 178142, - [SMALL_STATE(5333)] = 178159, - [SMALL_STATE(5334)] = 178180, - [SMALL_STATE(5335)] = 178205, - [SMALL_STATE(5336)] = 178222, - [SMALL_STATE(5337)] = 178247, - [SMALL_STATE(5338)] = 178268, - [SMALL_STATE(5339)] = 178293, - [SMALL_STATE(5340)] = 178318, - [SMALL_STATE(5341)] = 178339, - [SMALL_STATE(5342)] = 178364, - [SMALL_STATE(5343)] = 178385, - [SMALL_STATE(5344)] = 178402, - [SMALL_STATE(5345)] = 178427, - [SMALL_STATE(5346)] = 178444, - [SMALL_STATE(5347)] = 178463, - [SMALL_STATE(5348)] = 178488, - [SMALL_STATE(5349)] = 178509, - [SMALL_STATE(5350)] = 178534, - [SMALL_STATE(5351)] = 178551, - [SMALL_STATE(5352)] = 178576, - [SMALL_STATE(5353)] = 178593, - [SMALL_STATE(5354)] = 178610, - [SMALL_STATE(5355)] = 178631, - [SMALL_STATE(5356)] = 178656, - [SMALL_STATE(5357)] = 178681, - [SMALL_STATE(5358)] = 178702, - [SMALL_STATE(5359)] = 178719, - [SMALL_STATE(5360)] = 178744, - [SMALL_STATE(5361)] = 178761, - [SMALL_STATE(5362)] = 178778, - [SMALL_STATE(5363)] = 178795, - [SMALL_STATE(5364)] = 178820, - [SMALL_STATE(5365)] = 178841, - [SMALL_STATE(5366)] = 178862, - [SMALL_STATE(5367)] = 178887, - [SMALL_STATE(5368)] = 178904, - [SMALL_STATE(5369)] = 178925, - [SMALL_STATE(5370)] = 178942, - [SMALL_STATE(5371)] = 178959, - [SMALL_STATE(5372)] = 178980, - [SMALL_STATE(5373)] = 179001, - [SMALL_STATE(5374)] = 179022, - [SMALL_STATE(5375)] = 179043, - [SMALL_STATE(5376)] = 179068, - [SMALL_STATE(5377)] = 179093, - [SMALL_STATE(5378)] = 179110, - [SMALL_STATE(5379)] = 179131, - [SMALL_STATE(5380)] = 179156, - [SMALL_STATE(5381)] = 179179, - [SMALL_STATE(5382)] = 179196, - [SMALL_STATE(5383)] = 179213, - [SMALL_STATE(5384)] = 179238, - [SMALL_STATE(5385)] = 179255, - [SMALL_STATE(5386)] = 179272, - [SMALL_STATE(5387)] = 179297, - [SMALL_STATE(5388)] = 179320, - [SMALL_STATE(5389)] = 179341, - [SMALL_STATE(5390)] = 179358, - [SMALL_STATE(5391)] = 179375, - [SMALL_STATE(5392)] = 179396, - [SMALL_STATE(5393)] = 179417, - [SMALL_STATE(5394)] = 179434, - [SMALL_STATE(5395)] = 179451, - [SMALL_STATE(5396)] = 179476, - [SMALL_STATE(5397)] = 179493, - [SMALL_STATE(5398)] = 179514, - [SMALL_STATE(5399)] = 179531, - [SMALL_STATE(5400)] = 179548, - [SMALL_STATE(5401)] = 179565, - [SMALL_STATE(5402)] = 179582, - [SMALL_STATE(5403)] = 179607, - [SMALL_STATE(5404)] = 179632, - [SMALL_STATE(5405)] = 179653, - [SMALL_STATE(5406)] = 179676, - [SMALL_STATE(5407)] = 179693, - [SMALL_STATE(5408)] = 179710, - [SMALL_STATE(5409)] = 179727, - [SMALL_STATE(5410)] = 179744, - [SMALL_STATE(5411)] = 179761, - [SMALL_STATE(5412)] = 179778, - [SMALL_STATE(5413)] = 179799, - [SMALL_STATE(5414)] = 179824, - [SMALL_STATE(5415)] = 179849, - [SMALL_STATE(5416)] = 179870, - [SMALL_STATE(5417)] = 179887, - [SMALL_STATE(5418)] = 179908, - [SMALL_STATE(5419)] = 179929, - [SMALL_STATE(5420)] = 179950, - [SMALL_STATE(5421)] = 179971, - [SMALL_STATE(5422)] = 179992, - [SMALL_STATE(5423)] = 180013, - [SMALL_STATE(5424)] = 180030, - [SMALL_STATE(5425)] = 180051, - [SMALL_STATE(5426)] = 180072, - [SMALL_STATE(5427)] = 180093, - [SMALL_STATE(5428)] = 180114, - [SMALL_STATE(5429)] = 180135, - [SMALL_STATE(5430)] = 180156, - [SMALL_STATE(5431)] = 180177, - [SMALL_STATE(5432)] = 180194, - [SMALL_STATE(5433)] = 180211, - [SMALL_STATE(5434)] = 180232, - [SMALL_STATE(5435)] = 180253, - [SMALL_STATE(5436)] = 180276, - [SMALL_STATE(5437)] = 180297, - [SMALL_STATE(5438)] = 180322, - [SMALL_STATE(5439)] = 180343, - [SMALL_STATE(5440)] = 180364, - [SMALL_STATE(5441)] = 180389, - [SMALL_STATE(5442)] = 180410, - [SMALL_STATE(5443)] = 180431, - [SMALL_STATE(5444)] = 180452, - [SMALL_STATE(5445)] = 180477, - [SMALL_STATE(5446)] = 180502, - [SMALL_STATE(5447)] = 180527, - [SMALL_STATE(5448)] = 180552, - [SMALL_STATE(5449)] = 180577, - [SMALL_STATE(5450)] = 180602, - [SMALL_STATE(5451)] = 180627, - [SMALL_STATE(5452)] = 180650, - [SMALL_STATE(5453)] = 180675, - [SMALL_STATE(5454)] = 180700, - [SMALL_STATE(5455)] = 180717, - [SMALL_STATE(5456)] = 180742, - [SMALL_STATE(5457)] = 180759, - [SMALL_STATE(5458)] = 180780, - [SMALL_STATE(5459)] = 180801, - [SMALL_STATE(5460)] = 180818, - [SMALL_STATE(5461)] = 180835, - [SMALL_STATE(5462)] = 180858, - [SMALL_STATE(5463)] = 180883, - [SMALL_STATE(5464)] = 180908, - [SMALL_STATE(5465)] = 180933, - [SMALL_STATE(5466)] = 180950, - [SMALL_STATE(5467)] = 180971, - [SMALL_STATE(5468)] = 180992, - [SMALL_STATE(5469)] = 181009, - [SMALL_STATE(5470)] = 181030, - [SMALL_STATE(5471)] = 181053, - [SMALL_STATE(5472)] = 181074, - [SMALL_STATE(5473)] = 181099, - [SMALL_STATE(5474)] = 181122, - [SMALL_STATE(5475)] = 181147, - [SMALL_STATE(5476)] = 181172, - [SMALL_STATE(5477)] = 181197, - [SMALL_STATE(5478)] = 181218, - [SMALL_STATE(5479)] = 181241, - [SMALL_STATE(5480)] = 181266, - [SMALL_STATE(5481)] = 181287, - [SMALL_STATE(5482)] = 181312, - [SMALL_STATE(5483)] = 181333, - [SMALL_STATE(5484)] = 181350, - [SMALL_STATE(5485)] = 181375, - [SMALL_STATE(5486)] = 181396, - [SMALL_STATE(5487)] = 181417, - [SMALL_STATE(5488)] = 181438, - [SMALL_STATE(5489)] = 181463, - [SMALL_STATE(5490)] = 181480, - [SMALL_STATE(5491)] = 181497, - [SMALL_STATE(5492)] = 181514, - [SMALL_STATE(5493)] = 181531, - [SMALL_STATE(5494)] = 181548, - [SMALL_STATE(5495)] = 181565, - [SMALL_STATE(5496)] = 181582, - [SMALL_STATE(5497)] = 181607, - [SMALL_STATE(5498)] = 181632, - [SMALL_STATE(5499)] = 181657, - [SMALL_STATE(5500)] = 181674, - [SMALL_STATE(5501)] = 181695, - [SMALL_STATE(5502)] = 181720, - [SMALL_STATE(5503)] = 181745, - [SMALL_STATE(5504)] = 181770, - [SMALL_STATE(5505)] = 181791, - [SMALL_STATE(5506)] = 181808, - [SMALL_STATE(5507)] = 181825, - [SMALL_STATE(5508)] = 181842, - [SMALL_STATE(5509)] = 181859, - [SMALL_STATE(5510)] = 181876, - [SMALL_STATE(5511)] = 181897, - [SMALL_STATE(5512)] = 181914, - [SMALL_STATE(5513)] = 181935, - [SMALL_STATE(5514)] = 181956, - [SMALL_STATE(5515)] = 181973, - [SMALL_STATE(5516)] = 181998, - [SMALL_STATE(5517)] = 182023, - [SMALL_STATE(5518)] = 182040, - [SMALL_STATE(5519)] = 182057, - [SMALL_STATE(5520)] = 182074, - [SMALL_STATE(5521)] = 182091, - [SMALL_STATE(5522)] = 182108, - [SMALL_STATE(5523)] = 182133, - [SMALL_STATE(5524)] = 182150, - [SMALL_STATE(5525)] = 182167, - [SMALL_STATE(5526)] = 182184, - [SMALL_STATE(5527)] = 182207, - [SMALL_STATE(5528)] = 182224, - [SMALL_STATE(5529)] = 182241, - [SMALL_STATE(5530)] = 182264, - [SMALL_STATE(5531)] = 182281, - [SMALL_STATE(5532)] = 182302, - [SMALL_STATE(5533)] = 182319, - [SMALL_STATE(5534)] = 182336, - [SMALL_STATE(5535)] = 182361, - [SMALL_STATE(5536)] = 182382, - [SMALL_STATE(5537)] = 182399, - [SMALL_STATE(5538)] = 182424, - [SMALL_STATE(5539)] = 182441, - [SMALL_STATE(5540)] = 182462, - [SMALL_STATE(5541)] = 182479, - [SMALL_STATE(5542)] = 182504, - [SMALL_STATE(5543)] = 182529, - [SMALL_STATE(5544)] = 182546, - [SMALL_STATE(5545)] = 182563, - [SMALL_STATE(5546)] = 182588, - [SMALL_STATE(5547)] = 182609, - [SMALL_STATE(5548)] = 182626, - [SMALL_STATE(5549)] = 182647, - [SMALL_STATE(5550)] = 182668, - [SMALL_STATE(5551)] = 182685, - [SMALL_STATE(5552)] = 182706, - [SMALL_STATE(5553)] = 182731, - [SMALL_STATE(5554)] = 182748, - [SMALL_STATE(5555)] = 182765, - [SMALL_STATE(5556)] = 182787, - [SMALL_STATE(5557)] = 182807, - [SMALL_STATE(5558)] = 182829, - [SMALL_STATE(5559)] = 182845, - [SMALL_STATE(5560)] = 182867, - [SMALL_STATE(5561)] = 182889, - [SMALL_STATE(5562)] = 182909, - [SMALL_STATE(5563)] = 182929, - [SMALL_STATE(5564)] = 182949, - [SMALL_STATE(5565)] = 182971, - [SMALL_STATE(5566)] = 182991, - [SMALL_STATE(5567)] = 183011, - [SMALL_STATE(5568)] = 183033, - [SMALL_STATE(5569)] = 183053, - [SMALL_STATE(5570)] = 183073, - [SMALL_STATE(5571)] = 183095, - [SMALL_STATE(5572)] = 183117, - [SMALL_STATE(5573)] = 183139, - [SMALL_STATE(5574)] = 183161, - [SMALL_STATE(5575)] = 183183, - [SMALL_STATE(5576)] = 183205, - [SMALL_STATE(5577)] = 183225, - [SMALL_STATE(5578)] = 183245, - [SMALL_STATE(5579)] = 183265, - [SMALL_STATE(5580)] = 183285, - [SMALL_STATE(5581)] = 183305, - [SMALL_STATE(5582)] = 183327, - [SMALL_STATE(5583)] = 183347, - [SMALL_STATE(5584)] = 183369, - [SMALL_STATE(5585)] = 183389, - [SMALL_STATE(5586)] = 183411, - [SMALL_STATE(5587)] = 183433, - [SMALL_STATE(5588)] = 183453, - [SMALL_STATE(5589)] = 183469, - [SMALL_STATE(5590)] = 183489, - [SMALL_STATE(5591)] = 183511, - [SMALL_STATE(5592)] = 183529, - [SMALL_STATE(5593)] = 183551, - [SMALL_STATE(5594)] = 183573, - [SMALL_STATE(5595)] = 183595, - [SMALL_STATE(5596)] = 183615, - [SMALL_STATE(5597)] = 183633, - [SMALL_STATE(5598)] = 183655, - [SMALL_STATE(5599)] = 183675, - [SMALL_STATE(5600)] = 183695, - [SMALL_STATE(5601)] = 183717, - [SMALL_STATE(5602)] = 183737, - [SMALL_STATE(5603)] = 183757, - [SMALL_STATE(5604)] = 183773, - [SMALL_STATE(5605)] = 183795, - [SMALL_STATE(5606)] = 183817, - [SMALL_STATE(5607)] = 183835, - [SMALL_STATE(5608)] = 183853, - [SMALL_STATE(5609)] = 183875, - [SMALL_STATE(5610)] = 183897, - [SMALL_STATE(5611)] = 183917, - [SMALL_STATE(5612)] = 183937, - [SMALL_STATE(5613)] = 183959, - [SMALL_STATE(5614)] = 183981, - [SMALL_STATE(5615)] = 184003, - [SMALL_STATE(5616)] = 184023, - [SMALL_STATE(5617)] = 184043, - [SMALL_STATE(5618)] = 184063, - [SMALL_STATE(5619)] = 184083, - [SMALL_STATE(5620)] = 184103, - [SMALL_STATE(5621)] = 184123, - [SMALL_STATE(5622)] = 184143, - [SMALL_STATE(5623)] = 184165, - [SMALL_STATE(5624)] = 184185, - [SMALL_STATE(5625)] = 184205, - [SMALL_STATE(5626)] = 184225, - [SMALL_STATE(5627)] = 184247, - [SMALL_STATE(5628)] = 184267, - [SMALL_STATE(5629)] = 184287, - [SMALL_STATE(5630)] = 184307, - [SMALL_STATE(5631)] = 184329, - [SMALL_STATE(5632)] = 184351, - [SMALL_STATE(5633)] = 184373, - [SMALL_STATE(5634)] = 184393, - [SMALL_STATE(5635)] = 184415, - [SMALL_STATE(5636)] = 184435, - [SMALL_STATE(5637)] = 184455, - [SMALL_STATE(5638)] = 184475, - [SMALL_STATE(5639)] = 184495, - [SMALL_STATE(5640)] = 184517, - [SMALL_STATE(5641)] = 184537, - [SMALL_STATE(5642)] = 184557, - [SMALL_STATE(5643)] = 184579, - [SMALL_STATE(5644)] = 184599, - [SMALL_STATE(5645)] = 184621, - [SMALL_STATE(5646)] = 184641, - [SMALL_STATE(5647)] = 184663, - [SMALL_STATE(5648)] = 184685, - [SMALL_STATE(5649)] = 184707, - [SMALL_STATE(5650)] = 184727, - [SMALL_STATE(5651)] = 184747, - [SMALL_STATE(5652)] = 184769, - [SMALL_STATE(5653)] = 184789, - [SMALL_STATE(5654)] = 184809, - [SMALL_STATE(5655)] = 184827, - [SMALL_STATE(5656)] = 184849, - [SMALL_STATE(5657)] = 184871, - [SMALL_STATE(5658)] = 184893, - [SMALL_STATE(5659)] = 184913, - [SMALL_STATE(5660)] = 184933, - [SMALL_STATE(5661)] = 184953, - [SMALL_STATE(5662)] = 184973, - [SMALL_STATE(5663)] = 184991, - [SMALL_STATE(5664)] = 185011, - [SMALL_STATE(5665)] = 185031, - [SMALL_STATE(5666)] = 185053, - [SMALL_STATE(5667)] = 185075, - [SMALL_STATE(5668)] = 185097, - [SMALL_STATE(5669)] = 185119, - [SMALL_STATE(5670)] = 185141, - [SMALL_STATE(5671)] = 185161, - [SMALL_STATE(5672)] = 185183, - [SMALL_STATE(5673)] = 185203, - [SMALL_STATE(5674)] = 185223, - [SMALL_STATE(5675)] = 185245, - [SMALL_STATE(5676)] = 185267, - [SMALL_STATE(5677)] = 185287, - [SMALL_STATE(5678)] = 185307, - [SMALL_STATE(5679)] = 185327, - [SMALL_STATE(5680)] = 185347, - [SMALL_STATE(5681)] = 185367, - [SMALL_STATE(5682)] = 185383, - [SMALL_STATE(5683)] = 185403, - [SMALL_STATE(5684)] = 185423, - [SMALL_STATE(5685)] = 185445, - [SMALL_STATE(5686)] = 185467, - [SMALL_STATE(5687)] = 185487, - [SMALL_STATE(5688)] = 185507, - [SMALL_STATE(5689)] = 185529, - [SMALL_STATE(5690)] = 185545, - [SMALL_STATE(5691)] = 185567, - [SMALL_STATE(5692)] = 185587, - [SMALL_STATE(5693)] = 185609, - [SMALL_STATE(5694)] = 185629, - [SMALL_STATE(5695)] = 185651, - [SMALL_STATE(5696)] = 185673, - [SMALL_STATE(5697)] = 185689, - [SMALL_STATE(5698)] = 185711, - [SMALL_STATE(5699)] = 185731, - [SMALL_STATE(5700)] = 185753, - [SMALL_STATE(5701)] = 185769, - [SMALL_STATE(5702)] = 185789, - [SMALL_STATE(5703)] = 185811, - [SMALL_STATE(5704)] = 185829, - [SMALL_STATE(5705)] = 185849, - [SMALL_STATE(5706)] = 185869, - [SMALL_STATE(5707)] = 185887, - [SMALL_STATE(5708)] = 185907, - [SMALL_STATE(5709)] = 185927, - [SMALL_STATE(5710)] = 185943, - [SMALL_STATE(5711)] = 185963, - [SMALL_STATE(5712)] = 185985, - [SMALL_STATE(5713)] = 186007, - [SMALL_STATE(5714)] = 186023, - [SMALL_STATE(5715)] = 186045, - [SMALL_STATE(5716)] = 186063, - [SMALL_STATE(5717)] = 186085, - [SMALL_STATE(5718)] = 186105, - [SMALL_STATE(5719)] = 186125, - [SMALL_STATE(5720)] = 186145, - [SMALL_STATE(5721)] = 186163, - [SMALL_STATE(5722)] = 186183, - [SMALL_STATE(5723)] = 186203, - [SMALL_STATE(5724)] = 186221, - [SMALL_STATE(5725)] = 186243, - [SMALL_STATE(5726)] = 186263, - [SMALL_STATE(5727)] = 186283, - [SMALL_STATE(5728)] = 186303, - [SMALL_STATE(5729)] = 186323, - [SMALL_STATE(5730)] = 186343, - [SMALL_STATE(5731)] = 186363, - [SMALL_STATE(5732)] = 186385, - [SMALL_STATE(5733)] = 186407, - [SMALL_STATE(5734)] = 186429, - [SMALL_STATE(5735)] = 186449, - [SMALL_STATE(5736)] = 186469, - [SMALL_STATE(5737)] = 186489, - [SMALL_STATE(5738)] = 186509, - [SMALL_STATE(5739)] = 186529, - [SMALL_STATE(5740)] = 186549, - [SMALL_STATE(5741)] = 186569, - [SMALL_STATE(5742)] = 186589, - [SMALL_STATE(5743)] = 186611, - [SMALL_STATE(5744)] = 186631, - [SMALL_STATE(5745)] = 186651, - [SMALL_STATE(5746)] = 186671, - [SMALL_STATE(5747)] = 186691, - [SMALL_STATE(5748)] = 186713, - [SMALL_STATE(5749)] = 186735, - [SMALL_STATE(5750)] = 186757, - [SMALL_STATE(5751)] = 186779, - [SMALL_STATE(5752)] = 186799, - [SMALL_STATE(5753)] = 186819, - [SMALL_STATE(5754)] = 186839, - [SMALL_STATE(5755)] = 186859, - [SMALL_STATE(5756)] = 186879, - [SMALL_STATE(5757)] = 186899, - [SMALL_STATE(5758)] = 186919, - [SMALL_STATE(5759)] = 186939, - [SMALL_STATE(5760)] = 186959, - [SMALL_STATE(5761)] = 186979, - [SMALL_STATE(5762)] = 186999, - [SMALL_STATE(5763)] = 187019, - [SMALL_STATE(5764)] = 187039, - [SMALL_STATE(5765)] = 187061, - [SMALL_STATE(5766)] = 187081, - [SMALL_STATE(5767)] = 187101, - [SMALL_STATE(5768)] = 187123, - [SMALL_STATE(5769)] = 187143, - [SMALL_STATE(5770)] = 187163, - [SMALL_STATE(5771)] = 187183, - [SMALL_STATE(5772)] = 187203, - [SMALL_STATE(5773)] = 187225, - [SMALL_STATE(5774)] = 187245, - [SMALL_STATE(5775)] = 187267, - [SMALL_STATE(5776)] = 187287, - [SMALL_STATE(5777)] = 187309, - [SMALL_STATE(5778)] = 187329, - [SMALL_STATE(5779)] = 187349, - [SMALL_STATE(5780)] = 187371, - [SMALL_STATE(5781)] = 187391, - [SMALL_STATE(5782)] = 187411, - [SMALL_STATE(5783)] = 187431, - [SMALL_STATE(5784)] = 187451, - [SMALL_STATE(5785)] = 187471, - [SMALL_STATE(5786)] = 187491, - [SMALL_STATE(5787)] = 187511, - [SMALL_STATE(5788)] = 187533, - [SMALL_STATE(5789)] = 187552, - [SMALL_STATE(5790)] = 187571, - [SMALL_STATE(5791)] = 187586, - [SMALL_STATE(5792)] = 187601, - [SMALL_STATE(5793)] = 187616, - [SMALL_STATE(5794)] = 187633, - [SMALL_STATE(5795)] = 187652, - [SMALL_STATE(5796)] = 187669, - [SMALL_STATE(5797)] = 187684, - [SMALL_STATE(5798)] = 187699, - [SMALL_STATE(5799)] = 187714, - [SMALL_STATE(5800)] = 187729, - [SMALL_STATE(5801)] = 187744, - [SMALL_STATE(5802)] = 187761, - [SMALL_STATE(5803)] = 187778, - [SMALL_STATE(5804)] = 187793, - [SMALL_STATE(5805)] = 187812, - [SMALL_STATE(5806)] = 187827, - [SMALL_STATE(5807)] = 187844, - [SMALL_STATE(5808)] = 187859, - [SMALL_STATE(5809)] = 187874, - [SMALL_STATE(5810)] = 187889, - [SMALL_STATE(5811)] = 187906, - [SMALL_STATE(5812)] = 187925, - [SMALL_STATE(5813)] = 187940, - [SMALL_STATE(5814)] = 187955, - [SMALL_STATE(5815)] = 187974, - [SMALL_STATE(5816)] = 187993, - [SMALL_STATE(5817)] = 188008, - [SMALL_STATE(5818)] = 188023, - [SMALL_STATE(5819)] = 188038, - [SMALL_STATE(5820)] = 188057, - [SMALL_STATE(5821)] = 188072, - [SMALL_STATE(5822)] = 188091, - [SMALL_STATE(5823)] = 188110, - [SMALL_STATE(5824)] = 188127, - [SMALL_STATE(5825)] = 188146, - [SMALL_STATE(5826)] = 188165, - [SMALL_STATE(5827)] = 188180, - [SMALL_STATE(5828)] = 188195, - [SMALL_STATE(5829)] = 188210, - [SMALL_STATE(5830)] = 188225, - [SMALL_STATE(5831)] = 188244, - [SMALL_STATE(5832)] = 188259, - [SMALL_STATE(5833)] = 188276, - [SMALL_STATE(5834)] = 188291, - [SMALL_STATE(5835)] = 188308, - [SMALL_STATE(5836)] = 188327, - [SMALL_STATE(5837)] = 188342, - [SMALL_STATE(5838)] = 188357, - [SMALL_STATE(5839)] = 188372, - [SMALL_STATE(5840)] = 188387, - [SMALL_STATE(5841)] = 188402, - [SMALL_STATE(5842)] = 188421, - [SMALL_STATE(5843)] = 188440, - [SMALL_STATE(5844)] = 188455, - [SMALL_STATE(5845)] = 188470, - [SMALL_STATE(5846)] = 188485, - [SMALL_STATE(5847)] = 188504, - [SMALL_STATE(5848)] = 188519, - [SMALL_STATE(5849)] = 188534, - [SMALL_STATE(5850)] = 188549, - [SMALL_STATE(5851)] = 188568, - [SMALL_STATE(5852)] = 188587, - [SMALL_STATE(5853)] = 188606, - [SMALL_STATE(5854)] = 188621, - [SMALL_STATE(5855)] = 188636, - [SMALL_STATE(5856)] = 188651, - [SMALL_STATE(5857)] = 188666, - [SMALL_STATE(5858)] = 188685, - [SMALL_STATE(5859)] = 188700, - [SMALL_STATE(5860)] = 188715, - [SMALL_STATE(5861)] = 188734, - [SMALL_STATE(5862)] = 188749, - [SMALL_STATE(5863)] = 188764, - [SMALL_STATE(5864)] = 188783, - [SMALL_STATE(5865)] = 188798, - [SMALL_STATE(5866)] = 188813, - [SMALL_STATE(5867)] = 188832, - [SMALL_STATE(5868)] = 188847, - [SMALL_STATE(5869)] = 188866, - [SMALL_STATE(5870)] = 188885, - [SMALL_STATE(5871)] = 188900, - [SMALL_STATE(5872)] = 188915, - [SMALL_STATE(5873)] = 188934, - [SMALL_STATE(5874)] = 188953, - [SMALL_STATE(5875)] = 188968, - [SMALL_STATE(5876)] = 188983, - [SMALL_STATE(5877)] = 188998, - [SMALL_STATE(5878)] = 189013, - [SMALL_STATE(5879)] = 189030, - [SMALL_STATE(5880)] = 189047, - [SMALL_STATE(5881)] = 189062, - [SMALL_STATE(5882)] = 189077, - [SMALL_STATE(5883)] = 189092, - [SMALL_STATE(5884)] = 189107, - [SMALL_STATE(5885)] = 189122, - [SMALL_STATE(5886)] = 189141, - [SMALL_STATE(5887)] = 189156, - [SMALL_STATE(5888)] = 189171, - [SMALL_STATE(5889)] = 189186, - [SMALL_STATE(5890)] = 189205, - [SMALL_STATE(5891)] = 189220, - [SMALL_STATE(5892)] = 189235, - [SMALL_STATE(5893)] = 189252, - [SMALL_STATE(5894)] = 189271, - [SMALL_STATE(5895)] = 189288, - [SMALL_STATE(5896)] = 189303, - [SMALL_STATE(5897)] = 189318, - [SMALL_STATE(5898)] = 189333, - [SMALL_STATE(5899)] = 189348, - [SMALL_STATE(5900)] = 189367, - [SMALL_STATE(5901)] = 189382, - [SMALL_STATE(5902)] = 189397, - [SMALL_STATE(5903)] = 189412, - [SMALL_STATE(5904)] = 189431, - [SMALL_STATE(5905)] = 189450, - [SMALL_STATE(5906)] = 189469, - [SMALL_STATE(5907)] = 189488, - [SMALL_STATE(5908)] = 189503, - [SMALL_STATE(5909)] = 189522, - [SMALL_STATE(5910)] = 189537, - [SMALL_STATE(5911)] = 189556, - [SMALL_STATE(5912)] = 189575, - [SMALL_STATE(5913)] = 189592, - [SMALL_STATE(5914)] = 189611, - [SMALL_STATE(5915)] = 189626, - [SMALL_STATE(5916)] = 189645, - [SMALL_STATE(5917)] = 189660, - [SMALL_STATE(5918)] = 189677, - [SMALL_STATE(5919)] = 189692, - [SMALL_STATE(5920)] = 189707, - [SMALL_STATE(5921)] = 189724, - [SMALL_STATE(5922)] = 189739, - [SMALL_STATE(5923)] = 189754, - [SMALL_STATE(5924)] = 189773, - [SMALL_STATE(5925)] = 189788, - [SMALL_STATE(5926)] = 189805, - [SMALL_STATE(5927)] = 189822, - [SMALL_STATE(5928)] = 189837, - [SMALL_STATE(5929)] = 189852, - [SMALL_STATE(5930)] = 189869, - [SMALL_STATE(5931)] = 189884, - [SMALL_STATE(5932)] = 189903, - [SMALL_STATE(5933)] = 189918, - [SMALL_STATE(5934)] = 189937, - [SMALL_STATE(5935)] = 189952, - [SMALL_STATE(5936)] = 189971, - [SMALL_STATE(5937)] = 189990, - [SMALL_STATE(5938)] = 190005, - [SMALL_STATE(5939)] = 190024, - [SMALL_STATE(5940)] = 190043, - [SMALL_STATE(5941)] = 190062, - [SMALL_STATE(5942)] = 190079, - [SMALL_STATE(5943)] = 190098, - [SMALL_STATE(5944)] = 190113, - [SMALL_STATE(5945)] = 190132, - [SMALL_STATE(5946)] = 190151, - [SMALL_STATE(5947)] = 190168, - [SMALL_STATE(5948)] = 190183, - [SMALL_STATE(5949)] = 190198, - [SMALL_STATE(5950)] = 190217, - [SMALL_STATE(5951)] = 190232, - [SMALL_STATE(5952)] = 190251, - [SMALL_STATE(5953)] = 190266, - [SMALL_STATE(5954)] = 190285, - [SMALL_STATE(5955)] = 190300, - [SMALL_STATE(5956)] = 190315, - [SMALL_STATE(5957)] = 190334, - [SMALL_STATE(5958)] = 190351, - [SMALL_STATE(5959)] = 190366, - [SMALL_STATE(5960)] = 190381, - [SMALL_STATE(5961)] = 190396, - [SMALL_STATE(5962)] = 190415, - [SMALL_STATE(5963)] = 190434, - [SMALL_STATE(5964)] = 190449, - [SMALL_STATE(5965)] = 190464, - [SMALL_STATE(5966)] = 190481, - [SMALL_STATE(5967)] = 190498, - [SMALL_STATE(5968)] = 190515, - [SMALL_STATE(5969)] = 190532, - [SMALL_STATE(5970)] = 190551, - [SMALL_STATE(5971)] = 190570, - [SMALL_STATE(5972)] = 190589, - [SMALL_STATE(5973)] = 190608, - [SMALL_STATE(5974)] = 190623, - [SMALL_STATE(5975)] = 190640, - [SMALL_STATE(5976)] = 190657, - [SMALL_STATE(5977)] = 190676, - [SMALL_STATE(5978)] = 190691, - [SMALL_STATE(5979)] = 190706, - [SMALL_STATE(5980)] = 190725, - [SMALL_STATE(5981)] = 190742, - [SMALL_STATE(5982)] = 190757, - [SMALL_STATE(5983)] = 190772, - [SMALL_STATE(5984)] = 190787, - [SMALL_STATE(5985)] = 190802, - [SMALL_STATE(5986)] = 190817, - [SMALL_STATE(5987)] = 190836, - [SMALL_STATE(5988)] = 190851, - [SMALL_STATE(5989)] = 190866, - [SMALL_STATE(5990)] = 190885, - [SMALL_STATE(5991)] = 190904, - [SMALL_STATE(5992)] = 190919, - [SMALL_STATE(5993)] = 190934, - [SMALL_STATE(5994)] = 190949, - [SMALL_STATE(5995)] = 190964, - [SMALL_STATE(5996)] = 190979, - [SMALL_STATE(5997)] = 190998, - [SMALL_STATE(5998)] = 191013, - [SMALL_STATE(5999)] = 191032, - [SMALL_STATE(6000)] = 191047, - [SMALL_STATE(6001)] = 191062, - [SMALL_STATE(6002)] = 191077, - [SMALL_STATE(6003)] = 191096, - [SMALL_STATE(6004)] = 191111, - [SMALL_STATE(6005)] = 191126, - [SMALL_STATE(6006)] = 191141, - [SMALL_STATE(6007)] = 191160, - [SMALL_STATE(6008)] = 191175, - [SMALL_STATE(6009)] = 191190, - [SMALL_STATE(6010)] = 191205, - [SMALL_STATE(6011)] = 191220, - [SMALL_STATE(6012)] = 191239, - [SMALL_STATE(6013)] = 191254, - [SMALL_STATE(6014)] = 191269, - [SMALL_STATE(6015)] = 191284, - [SMALL_STATE(6016)] = 191299, - [SMALL_STATE(6017)] = 191318, - [SMALL_STATE(6018)] = 191337, - [SMALL_STATE(6019)] = 191356, - [SMALL_STATE(6020)] = 191375, - [SMALL_STATE(6021)] = 191394, - [SMALL_STATE(6022)] = 191413, - [SMALL_STATE(6023)] = 191430, - [SMALL_STATE(6024)] = 191449, - [SMALL_STATE(6025)] = 191468, - [SMALL_STATE(6026)] = 191485, - [SMALL_STATE(6027)] = 191504, - [SMALL_STATE(6028)] = 191519, - [SMALL_STATE(6029)] = 191534, - [SMALL_STATE(6030)] = 191553, - [SMALL_STATE(6031)] = 191568, - [SMALL_STATE(6032)] = 191585, - [SMALL_STATE(6033)] = 191600, - [SMALL_STATE(6034)] = 191619, - [SMALL_STATE(6035)] = 191634, - [SMALL_STATE(6036)] = 191649, - [SMALL_STATE(6037)] = 191666, - [SMALL_STATE(6038)] = 191681, - [SMALL_STATE(6039)] = 191696, - [SMALL_STATE(6040)] = 191715, - [SMALL_STATE(6041)] = 191730, - [SMALL_STATE(6042)] = 191745, - [SMALL_STATE(6043)] = 191760, - [SMALL_STATE(6044)] = 191775, - [SMALL_STATE(6045)] = 191794, - [SMALL_STATE(6046)] = 191809, - [SMALL_STATE(6047)] = 191828, - [SMALL_STATE(6048)] = 191843, - [SMALL_STATE(6049)] = 191858, - [SMALL_STATE(6050)] = 191873, - [SMALL_STATE(6051)] = 191888, - [SMALL_STATE(6052)] = 191903, - [SMALL_STATE(6053)] = 191918, - [SMALL_STATE(6054)] = 191933, - [SMALL_STATE(6055)] = 191948, - [SMALL_STATE(6056)] = 191963, - [SMALL_STATE(6057)] = 191978, - [SMALL_STATE(6058)] = 191993, - [SMALL_STATE(6059)] = 192008, - [SMALL_STATE(6060)] = 192023, - [SMALL_STATE(6061)] = 192038, - [SMALL_STATE(6062)] = 192053, - [SMALL_STATE(6063)] = 192068, - [SMALL_STATE(6064)] = 192083, - [SMALL_STATE(6065)] = 192098, - [SMALL_STATE(6066)] = 192113, - [SMALL_STATE(6067)] = 192128, - [SMALL_STATE(6068)] = 192143, - [SMALL_STATE(6069)] = 192158, - [SMALL_STATE(6070)] = 192173, - [SMALL_STATE(6071)] = 192188, - [SMALL_STATE(6072)] = 192203, - [SMALL_STATE(6073)] = 192218, - [SMALL_STATE(6074)] = 192233, - [SMALL_STATE(6075)] = 192248, - [SMALL_STATE(6076)] = 192263, - [SMALL_STATE(6077)] = 192278, - [SMALL_STATE(6078)] = 192297, - [SMALL_STATE(6079)] = 192312, - [SMALL_STATE(6080)] = 192327, - [SMALL_STATE(6081)] = 192342, - [SMALL_STATE(6082)] = 192361, - [SMALL_STATE(6083)] = 192378, - [SMALL_STATE(6084)] = 192393, - [SMALL_STATE(6085)] = 192412, - [SMALL_STATE(6086)] = 192431, - [SMALL_STATE(6087)] = 192446, - [SMALL_STATE(6088)] = 192461, - [SMALL_STATE(6089)] = 192480, - [SMALL_STATE(6090)] = 192497, - [SMALL_STATE(6091)] = 192512, - [SMALL_STATE(6092)] = 192531, - [SMALL_STATE(6093)] = 192546, - [SMALL_STATE(6094)] = 192565, - [SMALL_STATE(6095)] = 192580, - [SMALL_STATE(6096)] = 192595, - [SMALL_STATE(6097)] = 192610, - [SMALL_STATE(6098)] = 192625, - [SMALL_STATE(6099)] = 192640, - [SMALL_STATE(6100)] = 192659, - [SMALL_STATE(6101)] = 192674, - [SMALL_STATE(6102)] = 192691, - [SMALL_STATE(6103)] = 192710, - [SMALL_STATE(6104)] = 192725, - [SMALL_STATE(6105)] = 192740, - [SMALL_STATE(6106)] = 192755, - [SMALL_STATE(6107)] = 192770, - [SMALL_STATE(6108)] = 192787, - [SMALL_STATE(6109)] = 192802, - [SMALL_STATE(6110)] = 192821, - [SMALL_STATE(6111)] = 192838, - [SMALL_STATE(6112)] = 192853, - [SMALL_STATE(6113)] = 192868, - [SMALL_STATE(6114)] = 192883, - [SMALL_STATE(6115)] = 192900, - [SMALL_STATE(6116)] = 192915, - [SMALL_STATE(6117)] = 192930, - [SMALL_STATE(6118)] = 192945, - [SMALL_STATE(6119)] = 192964, - [SMALL_STATE(6120)] = 192983, - [SMALL_STATE(6121)] = 192998, - [SMALL_STATE(6122)] = 193013, - [SMALL_STATE(6123)] = 193028, - [SMALL_STATE(6124)] = 193043, - [SMALL_STATE(6125)] = 193058, - [SMALL_STATE(6126)] = 193077, - [SMALL_STATE(6127)] = 193092, - [SMALL_STATE(6128)] = 193111, - [SMALL_STATE(6129)] = 193126, - [SMALL_STATE(6130)] = 193141, - [SMALL_STATE(6131)] = 193156, - [SMALL_STATE(6132)] = 193171, - [SMALL_STATE(6133)] = 193186, - [SMALL_STATE(6134)] = 193201, - [SMALL_STATE(6135)] = 193216, - [SMALL_STATE(6136)] = 193231, - [SMALL_STATE(6137)] = 193250, - [SMALL_STATE(6138)] = 193265, - [SMALL_STATE(6139)] = 193284, - [SMALL_STATE(6140)] = 193303, - [SMALL_STATE(6141)] = 193322, - [SMALL_STATE(6142)] = 193341, - [SMALL_STATE(6143)] = 193356, - [SMALL_STATE(6144)] = 193375, - [SMALL_STATE(6145)] = 193394, - [SMALL_STATE(6146)] = 193409, - [SMALL_STATE(6147)] = 193424, - [SMALL_STATE(6148)] = 193443, - [SMALL_STATE(6149)] = 193462, - [SMALL_STATE(6150)] = 193481, - [SMALL_STATE(6151)] = 193500, - [SMALL_STATE(6152)] = 193519, - [SMALL_STATE(6153)] = 193536, - [SMALL_STATE(6154)] = 193555, - [SMALL_STATE(6155)] = 193574, - [SMALL_STATE(6156)] = 193589, - [SMALL_STATE(6157)] = 193604, - [SMALL_STATE(6158)] = 193619, - [SMALL_STATE(6159)] = 193634, - [SMALL_STATE(6160)] = 193653, - [SMALL_STATE(6161)] = 193672, - [SMALL_STATE(6162)] = 193687, - [SMALL_STATE(6163)] = 193702, - [SMALL_STATE(6164)] = 193717, - [SMALL_STATE(6165)] = 193732, - [SMALL_STATE(6166)] = 193751, - [SMALL_STATE(6167)] = 193770, - [SMALL_STATE(6168)] = 193789, - [SMALL_STATE(6169)] = 193808, - [SMALL_STATE(6170)] = 193825, - [SMALL_STATE(6171)] = 193842, - [SMALL_STATE(6172)] = 193861, - [SMALL_STATE(6173)] = 193878, - [SMALL_STATE(6174)] = 193893, - [SMALL_STATE(6175)] = 193908, - [SMALL_STATE(6176)] = 193927, - [SMALL_STATE(6177)] = 193942, - [SMALL_STATE(6178)] = 193957, - [SMALL_STATE(6179)] = 193972, - [SMALL_STATE(6180)] = 193991, - [SMALL_STATE(6181)] = 194006, - [SMALL_STATE(6182)] = 194021, - [SMALL_STATE(6183)] = 194040, - [SMALL_STATE(6184)] = 194059, - [SMALL_STATE(6185)] = 194078, - [SMALL_STATE(6186)] = 194093, - [SMALL_STATE(6187)] = 194108, - [SMALL_STATE(6188)] = 194125, - [SMALL_STATE(6189)] = 194140, - [SMALL_STATE(6190)] = 194157, - [SMALL_STATE(6191)] = 194172, - [SMALL_STATE(6192)] = 194187, - [SMALL_STATE(6193)] = 194202, - [SMALL_STATE(6194)] = 194221, - [SMALL_STATE(6195)] = 194236, - [SMALL_STATE(6196)] = 194255, - [SMALL_STATE(6197)] = 194274, - [SMALL_STATE(6198)] = 194289, - [SMALL_STATE(6199)] = 194308, - [SMALL_STATE(6200)] = 194323, - [SMALL_STATE(6201)] = 194342, - [SMALL_STATE(6202)] = 194357, - [SMALL_STATE(6203)] = 194376, - [SMALL_STATE(6204)] = 194391, - [SMALL_STATE(6205)] = 194406, - [SMALL_STATE(6206)] = 194421, - [SMALL_STATE(6207)] = 194436, - [SMALL_STATE(6208)] = 194451, - [SMALL_STATE(6209)] = 194466, - [SMALL_STATE(6210)] = 194481, - [SMALL_STATE(6211)] = 194496, - [SMALL_STATE(6212)] = 194511, - [SMALL_STATE(6213)] = 194526, - [SMALL_STATE(6214)] = 194541, - [SMALL_STATE(6215)] = 194556, - [SMALL_STATE(6216)] = 194571, - [SMALL_STATE(6217)] = 194586, - [SMALL_STATE(6218)] = 194605, - [SMALL_STATE(6219)] = 194620, - [SMALL_STATE(6220)] = 194639, - [SMALL_STATE(6221)] = 194654, - [SMALL_STATE(6222)] = 194673, - [SMALL_STATE(6223)] = 194688, - [SMALL_STATE(6224)] = 194703, - [SMALL_STATE(6225)] = 194722, - [SMALL_STATE(6226)] = 194737, - [SMALL_STATE(6227)] = 194756, - [SMALL_STATE(6228)] = 194775, - [SMALL_STATE(6229)] = 194790, - [SMALL_STATE(6230)] = 194805, - [SMALL_STATE(6231)] = 194820, - [SMALL_STATE(6232)] = 194835, - [SMALL_STATE(6233)] = 194850, - [SMALL_STATE(6234)] = 194865, - [SMALL_STATE(6235)] = 194884, - [SMALL_STATE(6236)] = 194899, - [SMALL_STATE(6237)] = 194918, - [SMALL_STATE(6238)] = 194933, - [SMALL_STATE(6239)] = 194948, - [SMALL_STATE(6240)] = 194963, - [SMALL_STATE(6241)] = 194980, - [SMALL_STATE(6242)] = 194999, - [SMALL_STATE(6243)] = 195014, - [SMALL_STATE(6244)] = 195031, - [SMALL_STATE(6245)] = 195046, - [SMALL_STATE(6246)] = 195061, - [SMALL_STATE(6247)] = 195076, - [SMALL_STATE(6248)] = 195095, - [SMALL_STATE(6249)] = 195110, - [SMALL_STATE(6250)] = 195125, - [SMALL_STATE(6251)] = 195140, - [SMALL_STATE(6252)] = 195155, - [SMALL_STATE(6253)] = 195170, - [SMALL_STATE(6254)] = 195185, - [SMALL_STATE(6255)] = 195200, - [SMALL_STATE(6256)] = 195215, - [SMALL_STATE(6257)] = 195230, - [SMALL_STATE(6258)] = 195245, - [SMALL_STATE(6259)] = 195260, - [SMALL_STATE(6260)] = 195275, - [SMALL_STATE(6261)] = 195294, - [SMALL_STATE(6262)] = 195313, - [SMALL_STATE(6263)] = 195332, - [SMALL_STATE(6264)] = 195347, - [SMALL_STATE(6265)] = 195362, - [SMALL_STATE(6266)] = 195377, - [SMALL_STATE(6267)] = 195392, - [SMALL_STATE(6268)] = 195407, - [SMALL_STATE(6269)] = 195422, - [SMALL_STATE(6270)] = 195437, - [SMALL_STATE(6271)] = 195452, - [SMALL_STATE(6272)] = 195467, - [SMALL_STATE(6273)] = 195482, - [SMALL_STATE(6274)] = 195497, - [SMALL_STATE(6275)] = 195512, - [SMALL_STATE(6276)] = 195527, - [SMALL_STATE(6277)] = 195542, - [SMALL_STATE(6278)] = 195557, - [SMALL_STATE(6279)] = 195572, - [SMALL_STATE(6280)] = 195591, - [SMALL_STATE(6281)] = 195606, - [SMALL_STATE(6282)] = 195623, - [SMALL_STATE(6283)] = 195638, - [SMALL_STATE(6284)] = 195653, - [SMALL_STATE(6285)] = 195672, - [SMALL_STATE(6286)] = 195687, - [SMALL_STATE(6287)] = 195702, - [SMALL_STATE(6288)] = 195721, - [SMALL_STATE(6289)] = 195740, - [SMALL_STATE(6290)] = 195755, - [SMALL_STATE(6291)] = 195770, - [SMALL_STATE(6292)] = 195787, - [SMALL_STATE(6293)] = 195806, - [SMALL_STATE(6294)] = 195825, - [SMALL_STATE(6295)] = 195842, - [SMALL_STATE(6296)] = 195859, - [SMALL_STATE(6297)] = 195874, - [SMALL_STATE(6298)] = 195891, - [SMALL_STATE(6299)] = 195906, - [SMALL_STATE(6300)] = 195921, - [SMALL_STATE(6301)] = 195938, - [SMALL_STATE(6302)] = 195953, - [SMALL_STATE(6303)] = 195970, - [SMALL_STATE(6304)] = 195985, - [SMALL_STATE(6305)] = 196000, - [SMALL_STATE(6306)] = 196017, - [SMALL_STATE(6307)] = 196036, - [SMALL_STATE(6308)] = 196053, - [SMALL_STATE(6309)] = 196072, - [SMALL_STATE(6310)] = 196089, - [SMALL_STATE(6311)] = 196106, - [SMALL_STATE(6312)] = 196125, - [SMALL_STATE(6313)] = 196142, - [SMALL_STATE(6314)] = 196161, - [SMALL_STATE(6315)] = 196178, - [SMALL_STATE(6316)] = 196197, - [SMALL_STATE(6317)] = 196212, - [SMALL_STATE(6318)] = 196227, - [SMALL_STATE(6319)] = 196242, - [SMALL_STATE(6320)] = 196257, - [SMALL_STATE(6321)] = 196272, - [SMALL_STATE(6322)] = 196289, - [SMALL_STATE(6323)] = 196304, - [SMALL_STATE(6324)] = 196319, - [SMALL_STATE(6325)] = 196334, - [SMALL_STATE(6326)] = 196353, - [SMALL_STATE(6327)] = 196372, - [SMALL_STATE(6328)] = 196391, - [SMALL_STATE(6329)] = 196406, - [SMALL_STATE(6330)] = 196425, - [SMALL_STATE(6331)] = 196444, - [SMALL_STATE(6332)] = 196463, - [SMALL_STATE(6333)] = 196482, - [SMALL_STATE(6334)] = 196501, - [SMALL_STATE(6335)] = 196516, - [SMALL_STATE(6336)] = 196531, - [SMALL_STATE(6337)] = 196546, - [SMALL_STATE(6338)] = 196561, - [SMALL_STATE(6339)] = 196576, - [SMALL_STATE(6340)] = 196591, - [SMALL_STATE(6341)] = 196606, - [SMALL_STATE(6342)] = 196625, - [SMALL_STATE(6343)] = 196644, - [SMALL_STATE(6344)] = 196659, - [SMALL_STATE(6345)] = 196674, - [SMALL_STATE(6346)] = 196689, - [SMALL_STATE(6347)] = 196704, - [SMALL_STATE(6348)] = 196719, - [SMALL_STATE(6349)] = 196734, - [SMALL_STATE(6350)] = 196749, - [SMALL_STATE(6351)] = 196764, - [SMALL_STATE(6352)] = 196779, - [SMALL_STATE(6353)] = 196796, - [SMALL_STATE(6354)] = 196811, - [SMALL_STATE(6355)] = 196830, - [SMALL_STATE(6356)] = 196845, - [SMALL_STATE(6357)] = 196860, - [SMALL_STATE(6358)] = 196875, - [SMALL_STATE(6359)] = 196890, - [SMALL_STATE(6360)] = 196905, - [SMALL_STATE(6361)] = 196920, - [SMALL_STATE(6362)] = 196935, - [SMALL_STATE(6363)] = 196950, - [SMALL_STATE(6364)] = 196965, - [SMALL_STATE(6365)] = 196984, - [SMALL_STATE(6366)] = 196999, - [SMALL_STATE(6367)] = 197018, - [SMALL_STATE(6368)] = 197033, - [SMALL_STATE(6369)] = 197048, - [SMALL_STATE(6370)] = 197063, - [SMALL_STATE(6371)] = 197080, - [SMALL_STATE(6372)] = 197095, - [SMALL_STATE(6373)] = 197110, - [SMALL_STATE(6374)] = 197125, - [SMALL_STATE(6375)] = 197140, - [SMALL_STATE(6376)] = 197159, - [SMALL_STATE(6377)] = 197174, - [SMALL_STATE(6378)] = 197193, - [SMALL_STATE(6379)] = 197212, - [SMALL_STATE(6380)] = 197227, - [SMALL_STATE(6381)] = 197242, - [SMALL_STATE(6382)] = 197257, - [SMALL_STATE(6383)] = 197272, - [SMALL_STATE(6384)] = 197287, - [SMALL_STATE(6385)] = 197302, - [SMALL_STATE(6386)] = 197317, - [SMALL_STATE(6387)] = 197332, - [SMALL_STATE(6388)] = 197347, - [SMALL_STATE(6389)] = 197362, - [SMALL_STATE(6390)] = 197379, - [SMALL_STATE(6391)] = 197394, - [SMALL_STATE(6392)] = 197413, - [SMALL_STATE(6393)] = 197432, - [SMALL_STATE(6394)] = 197451, - [SMALL_STATE(6395)] = 197466, - [SMALL_STATE(6396)] = 197485, - [SMALL_STATE(6397)] = 197504, - [SMALL_STATE(6398)] = 197523, - [SMALL_STATE(6399)] = 197542, - [SMALL_STATE(6400)] = 197561, - [SMALL_STATE(6401)] = 197576, - [SMALL_STATE(6402)] = 197591, - [SMALL_STATE(6403)] = 197610, - [SMALL_STATE(6404)] = 197629, - [SMALL_STATE(6405)] = 197648, - [SMALL_STATE(6406)] = 197667, - [SMALL_STATE(6407)] = 197686, - [SMALL_STATE(6408)] = 197701, - [SMALL_STATE(6409)] = 197720, - [SMALL_STATE(6410)] = 197737, - [SMALL_STATE(6411)] = 197756, - [SMALL_STATE(6412)] = 197775, - [SMALL_STATE(6413)] = 197790, - [SMALL_STATE(6414)] = 197807, - [SMALL_STATE(6415)] = 197824, - [SMALL_STATE(6416)] = 197843, - [SMALL_STATE(6417)] = 197860, - [SMALL_STATE(6418)] = 197875, - [SMALL_STATE(6419)] = 197892, - [SMALL_STATE(6420)] = 197909, - [SMALL_STATE(6421)] = 197928, - [SMALL_STATE(6422)] = 197943, - [SMALL_STATE(6423)] = 197958, - [SMALL_STATE(6424)] = 197977, - [SMALL_STATE(6425)] = 197992, - [SMALL_STATE(6426)] = 198011, - [SMALL_STATE(6427)] = 198026, - [SMALL_STATE(6428)] = 198045, - [SMALL_STATE(6429)] = 198064, - [SMALL_STATE(6430)] = 198081, - [SMALL_STATE(6431)] = 198096, - [SMALL_STATE(6432)] = 198111, - [SMALL_STATE(6433)] = 198130, - [SMALL_STATE(6434)] = 198145, - [SMALL_STATE(6435)] = 198160, - [SMALL_STATE(6436)] = 198175, - [SMALL_STATE(6437)] = 198190, - [SMALL_STATE(6438)] = 198205, - [SMALL_STATE(6439)] = 198220, - [SMALL_STATE(6440)] = 198239, - [SMALL_STATE(6441)] = 198258, - [SMALL_STATE(6442)] = 198277, - [SMALL_STATE(6443)] = 198296, - [SMALL_STATE(6444)] = 198315, - [SMALL_STATE(6445)] = 198330, - [SMALL_STATE(6446)] = 198349, - [SMALL_STATE(6447)] = 198368, - [SMALL_STATE(6448)] = 198387, - [SMALL_STATE(6449)] = 198406, - [SMALL_STATE(6450)] = 198425, - [SMALL_STATE(6451)] = 198442, - [SMALL_STATE(6452)] = 198457, - [SMALL_STATE(6453)] = 198472, - [SMALL_STATE(6454)] = 198487, - [SMALL_STATE(6455)] = 198502, - [SMALL_STATE(6456)] = 198521, - [SMALL_STATE(6457)] = 198540, - [SMALL_STATE(6458)] = 198555, - [SMALL_STATE(6459)] = 198572, - [SMALL_STATE(6460)] = 198587, - [SMALL_STATE(6461)] = 198602, - [SMALL_STATE(6462)] = 198617, - [SMALL_STATE(6463)] = 198632, - [SMALL_STATE(6464)] = 198647, - [SMALL_STATE(6465)] = 198662, - [SMALL_STATE(6466)] = 198677, - [SMALL_STATE(6467)] = 198692, - [SMALL_STATE(6468)] = 198711, - [SMALL_STATE(6469)] = 198730, - [SMALL_STATE(6470)] = 198749, - [SMALL_STATE(6471)] = 198768, - [SMALL_STATE(6472)] = 198783, - [SMALL_STATE(6473)] = 198802, - [SMALL_STATE(6474)] = 198821, - [SMALL_STATE(6475)] = 198840, - [SMALL_STATE(6476)] = 198855, - [SMALL_STATE(6477)] = 198874, - [SMALL_STATE(6478)] = 198891, - [SMALL_STATE(6479)] = 198910, - [SMALL_STATE(6480)] = 198925, - [SMALL_STATE(6481)] = 198944, - [SMALL_STATE(6482)] = 198960, - [SMALL_STATE(6483)] = 198976, - [SMALL_STATE(6484)] = 198992, - [SMALL_STATE(6485)] = 199006, - [SMALL_STATE(6486)] = 199022, - [SMALL_STATE(6487)] = 199036, - [SMALL_STATE(6488)] = 199052, - [SMALL_STATE(6489)] = 199068, - [SMALL_STATE(6490)] = 199084, - [SMALL_STATE(6491)] = 199098, - [SMALL_STATE(6492)] = 199114, - [SMALL_STATE(6493)] = 199130, - [SMALL_STATE(6494)] = 199146, - [SMALL_STATE(6495)] = 199162, - [SMALL_STATE(6496)] = 199178, - [SMALL_STATE(6497)] = 199194, - [SMALL_STATE(6498)] = 199208, - [SMALL_STATE(6499)] = 199224, - [SMALL_STATE(6500)] = 199240, - [SMALL_STATE(6501)] = 199256, - [SMALL_STATE(6502)] = 199272, - [SMALL_STATE(6503)] = 199286, - [SMALL_STATE(6504)] = 199302, - [SMALL_STATE(6505)] = 199318, - [SMALL_STATE(6506)] = 199334, - [SMALL_STATE(6507)] = 199348, - [SMALL_STATE(6508)] = 199364, - [SMALL_STATE(6509)] = 199380, - [SMALL_STATE(6510)] = 199394, - [SMALL_STATE(6511)] = 199410, - [SMALL_STATE(6512)] = 199426, - [SMALL_STATE(6513)] = 199442, - [SMALL_STATE(6514)] = 199458, - [SMALL_STATE(6515)] = 199474, - [SMALL_STATE(6516)] = 199490, - [SMALL_STATE(6517)] = 199506, - [SMALL_STATE(6518)] = 199522, - [SMALL_STATE(6519)] = 199538, - [SMALL_STATE(6520)] = 199554, - [SMALL_STATE(6521)] = 199568, - [SMALL_STATE(6522)] = 199584, - [SMALL_STATE(6523)] = 199600, - [SMALL_STATE(6524)] = 199616, - [SMALL_STATE(6525)] = 199630, - [SMALL_STATE(6526)] = 199646, - [SMALL_STATE(6527)] = 199662, - [SMALL_STATE(6528)] = 199678, - [SMALL_STATE(6529)] = 199692, - [SMALL_STATE(6530)] = 199706, - [SMALL_STATE(6531)] = 199722, - [SMALL_STATE(6532)] = 199738, - [SMALL_STATE(6533)] = 199754, - [SMALL_STATE(6534)] = 199768, - [SMALL_STATE(6535)] = 199782, - [SMALL_STATE(6536)] = 199798, - [SMALL_STATE(6537)] = 199814, - [SMALL_STATE(6538)] = 199828, - [SMALL_STATE(6539)] = 199842, - [SMALL_STATE(6540)] = 199858, - [SMALL_STATE(6541)] = 199874, - [SMALL_STATE(6542)] = 199888, - [SMALL_STATE(6543)] = 199904, - [SMALL_STATE(6544)] = 199920, - [SMALL_STATE(6545)] = 199936, - [SMALL_STATE(6546)] = 199952, - [SMALL_STATE(6547)] = 199968, - [SMALL_STATE(6548)] = 199984, - [SMALL_STATE(6549)] = 199998, - [SMALL_STATE(6550)] = 200014, - [SMALL_STATE(6551)] = 200030, - [SMALL_STATE(6552)] = 200046, - [SMALL_STATE(6553)] = 200062, - [SMALL_STATE(6554)] = 200078, - [SMALL_STATE(6555)] = 200092, - [SMALL_STATE(6556)] = 200108, - [SMALL_STATE(6557)] = 200124, - [SMALL_STATE(6558)] = 200140, - [SMALL_STATE(6559)] = 200156, - [SMALL_STATE(6560)] = 200172, - [SMALL_STATE(6561)] = 200188, - [SMALL_STATE(6562)] = 200204, - [SMALL_STATE(6563)] = 200220, - [SMALL_STATE(6564)] = 200236, - [SMALL_STATE(6565)] = 200252, - [SMALL_STATE(6566)] = 200268, - [SMALL_STATE(6567)] = 200284, - [SMALL_STATE(6568)] = 200300, - [SMALL_STATE(6569)] = 200316, - [SMALL_STATE(6570)] = 200330, - [SMALL_STATE(6571)] = 200346, - [SMALL_STATE(6572)] = 200360, - [SMALL_STATE(6573)] = 200376, - [SMALL_STATE(6574)] = 200392, - [SMALL_STATE(6575)] = 200406, - [SMALL_STATE(6576)] = 200422, - [SMALL_STATE(6577)] = 200436, - [SMALL_STATE(6578)] = 200452, - [SMALL_STATE(6579)] = 200466, - [SMALL_STATE(6580)] = 200482, - [SMALL_STATE(6581)] = 200496, - [SMALL_STATE(6582)] = 200512, - [SMALL_STATE(6583)] = 200528, - [SMALL_STATE(6584)] = 200544, - [SMALL_STATE(6585)] = 200560, - [SMALL_STATE(6586)] = 200576, - [SMALL_STATE(6587)] = 200592, - [SMALL_STATE(6588)] = 200608, - [SMALL_STATE(6589)] = 200624, - [SMALL_STATE(6590)] = 200640, - [SMALL_STATE(6591)] = 200654, - [SMALL_STATE(6592)] = 200668, - [SMALL_STATE(6593)] = 200682, - [SMALL_STATE(6594)] = 200698, - [SMALL_STATE(6595)] = 200712, - [SMALL_STATE(6596)] = 200728, - [SMALL_STATE(6597)] = 200742, - [SMALL_STATE(6598)] = 200758, - [SMALL_STATE(6599)] = 200772, - [SMALL_STATE(6600)] = 200788, - [SMALL_STATE(6601)] = 200802, - [SMALL_STATE(6602)] = 200816, - [SMALL_STATE(6603)] = 200832, - [SMALL_STATE(6604)] = 200846, - [SMALL_STATE(6605)] = 200862, - [SMALL_STATE(6606)] = 200876, - [SMALL_STATE(6607)] = 200890, - [SMALL_STATE(6608)] = 200906, - [SMALL_STATE(6609)] = 200922, - [SMALL_STATE(6610)] = 200938, - [SMALL_STATE(6611)] = 200952, - [SMALL_STATE(6612)] = 200966, - [SMALL_STATE(6613)] = 200982, - [SMALL_STATE(6614)] = 200998, - [SMALL_STATE(6615)] = 201014, - [SMALL_STATE(6616)] = 201030, - [SMALL_STATE(6617)] = 201044, - [SMALL_STATE(6618)] = 201058, - [SMALL_STATE(6619)] = 201072, - [SMALL_STATE(6620)] = 201088, - [SMALL_STATE(6621)] = 201102, - [SMALL_STATE(6622)] = 201118, - [SMALL_STATE(6623)] = 201134, - [SMALL_STATE(6624)] = 201148, - [SMALL_STATE(6625)] = 201162, - [SMALL_STATE(6626)] = 201178, - [SMALL_STATE(6627)] = 201192, - [SMALL_STATE(6628)] = 201208, - [SMALL_STATE(6629)] = 201224, - [SMALL_STATE(6630)] = 201238, - [SMALL_STATE(6631)] = 201254, - [SMALL_STATE(6632)] = 201268, - [SMALL_STATE(6633)] = 201284, - [SMALL_STATE(6634)] = 201298, - [SMALL_STATE(6635)] = 201314, - [SMALL_STATE(6636)] = 201330, - [SMALL_STATE(6637)] = 201346, - [SMALL_STATE(6638)] = 201362, - [SMALL_STATE(6639)] = 201378, - [SMALL_STATE(6640)] = 201394, - [SMALL_STATE(6641)] = 201408, - [SMALL_STATE(6642)] = 201424, - [SMALL_STATE(6643)] = 201438, - [SMALL_STATE(6644)] = 201454, - [SMALL_STATE(6645)] = 201470, - [SMALL_STATE(6646)] = 201486, - [SMALL_STATE(6647)] = 201502, - [SMALL_STATE(6648)] = 201518, - [SMALL_STATE(6649)] = 201534, - [SMALL_STATE(6650)] = 201548, - [SMALL_STATE(6651)] = 201564, - [SMALL_STATE(6652)] = 201578, - [SMALL_STATE(6653)] = 201592, - [SMALL_STATE(6654)] = 201608, - [SMALL_STATE(6655)] = 201622, - [SMALL_STATE(6656)] = 201638, - [SMALL_STATE(6657)] = 201652, - [SMALL_STATE(6658)] = 201668, - [SMALL_STATE(6659)] = 201682, - [SMALL_STATE(6660)] = 201698, - [SMALL_STATE(6661)] = 201714, - [SMALL_STATE(6662)] = 201728, - [SMALL_STATE(6663)] = 201742, - [SMALL_STATE(6664)] = 201758, - [SMALL_STATE(6665)] = 201774, - [SMALL_STATE(6666)] = 201790, - [SMALL_STATE(6667)] = 201804, - [SMALL_STATE(6668)] = 201818, - [SMALL_STATE(6669)] = 201834, - [SMALL_STATE(6670)] = 201850, - [SMALL_STATE(6671)] = 201866, - [SMALL_STATE(6672)] = 201882, - [SMALL_STATE(6673)] = 201896, - [SMALL_STATE(6674)] = 201910, - [SMALL_STATE(6675)] = 201926, - [SMALL_STATE(6676)] = 201942, - [SMALL_STATE(6677)] = 201956, - [SMALL_STATE(6678)] = 201972, - [SMALL_STATE(6679)] = 201988, - [SMALL_STATE(6680)] = 202002, - [SMALL_STATE(6681)] = 202018, - [SMALL_STATE(6682)] = 202034, - [SMALL_STATE(6683)] = 202050, - [SMALL_STATE(6684)] = 202066, - [SMALL_STATE(6685)] = 202080, - [SMALL_STATE(6686)] = 202094, - [SMALL_STATE(6687)] = 202110, - [SMALL_STATE(6688)] = 202126, - [SMALL_STATE(6689)] = 202142, - [SMALL_STATE(6690)] = 202158, - [SMALL_STATE(6691)] = 202172, - [SMALL_STATE(6692)] = 202186, - [SMALL_STATE(6693)] = 202200, - [SMALL_STATE(6694)] = 202214, - [SMALL_STATE(6695)] = 202228, - [SMALL_STATE(6696)] = 202242, - [SMALL_STATE(6697)] = 202258, - [SMALL_STATE(6698)] = 202272, - [SMALL_STATE(6699)] = 202288, - [SMALL_STATE(6700)] = 202304, - [SMALL_STATE(6701)] = 202320, - [SMALL_STATE(6702)] = 202336, - [SMALL_STATE(6703)] = 202350, - [SMALL_STATE(6704)] = 202364, - [SMALL_STATE(6705)] = 202378, - [SMALL_STATE(6706)] = 202394, - [SMALL_STATE(6707)] = 202410, - [SMALL_STATE(6708)] = 202426, - [SMALL_STATE(6709)] = 202442, - [SMALL_STATE(6710)] = 202458, - [SMALL_STATE(6711)] = 202472, - [SMALL_STATE(6712)] = 202488, - [SMALL_STATE(6713)] = 202502, - [SMALL_STATE(6714)] = 202518, - [SMALL_STATE(6715)] = 202532, - [SMALL_STATE(6716)] = 202548, - [SMALL_STATE(6717)] = 202564, - [SMALL_STATE(6718)] = 202578, - [SMALL_STATE(6719)] = 202594, - [SMALL_STATE(6720)] = 202610, - [SMALL_STATE(6721)] = 202626, - [SMALL_STATE(6722)] = 202640, - [SMALL_STATE(6723)] = 202656, - [SMALL_STATE(6724)] = 202670, - [SMALL_STATE(6725)] = 202684, - [SMALL_STATE(6726)] = 202698, - [SMALL_STATE(6727)] = 202712, - [SMALL_STATE(6728)] = 202728, - [SMALL_STATE(6729)] = 202744, - [SMALL_STATE(6730)] = 202758, - [SMALL_STATE(6731)] = 202774, - [SMALL_STATE(6732)] = 202790, - [SMALL_STATE(6733)] = 202806, - [SMALL_STATE(6734)] = 202822, - [SMALL_STATE(6735)] = 202838, - [SMALL_STATE(6736)] = 202852, - [SMALL_STATE(6737)] = 202868, - [SMALL_STATE(6738)] = 202884, - [SMALL_STATE(6739)] = 202898, - [SMALL_STATE(6740)] = 202912, - [SMALL_STATE(6741)] = 202926, - [SMALL_STATE(6742)] = 202942, - [SMALL_STATE(6743)] = 202956, - [SMALL_STATE(6744)] = 202972, - [SMALL_STATE(6745)] = 202986, - [SMALL_STATE(6746)] = 203000, - [SMALL_STATE(6747)] = 203014, - [SMALL_STATE(6748)] = 203030, - [SMALL_STATE(6749)] = 203044, - [SMALL_STATE(6750)] = 203058, - [SMALL_STATE(6751)] = 203074, - [SMALL_STATE(6752)] = 203090, - [SMALL_STATE(6753)] = 203106, - [SMALL_STATE(6754)] = 203120, - [SMALL_STATE(6755)] = 203134, - [SMALL_STATE(6756)] = 203150, - [SMALL_STATE(6757)] = 203164, - [SMALL_STATE(6758)] = 203180, - [SMALL_STATE(6759)] = 203196, - [SMALL_STATE(6760)] = 203212, - [SMALL_STATE(6761)] = 203228, - [SMALL_STATE(6762)] = 203244, - [SMALL_STATE(6763)] = 203260, - [SMALL_STATE(6764)] = 203274, - [SMALL_STATE(6765)] = 203290, - [SMALL_STATE(6766)] = 203304, - [SMALL_STATE(6767)] = 203318, - [SMALL_STATE(6768)] = 203334, - [SMALL_STATE(6769)] = 203350, - [SMALL_STATE(6770)] = 203364, - [SMALL_STATE(6771)] = 203380, - [SMALL_STATE(6772)] = 203394, - [SMALL_STATE(6773)] = 203408, - [SMALL_STATE(6774)] = 203422, - [SMALL_STATE(6775)] = 203438, - [SMALL_STATE(6776)] = 203454, - [SMALL_STATE(6777)] = 203468, - [SMALL_STATE(6778)] = 203484, - [SMALL_STATE(6779)] = 203500, - [SMALL_STATE(6780)] = 203516, - [SMALL_STATE(6781)] = 203532, - [SMALL_STATE(6782)] = 203548, - [SMALL_STATE(6783)] = 203564, - [SMALL_STATE(6784)] = 203580, - [SMALL_STATE(6785)] = 203596, - [SMALL_STATE(6786)] = 203612, - [SMALL_STATE(6787)] = 203628, - [SMALL_STATE(6788)] = 203644, - [SMALL_STATE(6789)] = 203660, - [SMALL_STATE(6790)] = 203676, - [SMALL_STATE(6791)] = 203692, - [SMALL_STATE(6792)] = 203708, - [SMALL_STATE(6793)] = 203724, - [SMALL_STATE(6794)] = 203740, - [SMALL_STATE(6795)] = 203754, - [SMALL_STATE(6796)] = 203770, - [SMALL_STATE(6797)] = 203784, - [SMALL_STATE(6798)] = 203800, - [SMALL_STATE(6799)] = 203816, - [SMALL_STATE(6800)] = 203832, - [SMALL_STATE(6801)] = 203848, - [SMALL_STATE(6802)] = 203864, - [SMALL_STATE(6803)] = 203880, - [SMALL_STATE(6804)] = 203896, - [SMALL_STATE(6805)] = 203912, - [SMALL_STATE(6806)] = 203926, - [SMALL_STATE(6807)] = 203940, - [SMALL_STATE(6808)] = 203956, - [SMALL_STATE(6809)] = 203972, - [SMALL_STATE(6810)] = 203988, - [SMALL_STATE(6811)] = 204004, - [SMALL_STATE(6812)] = 204020, - [SMALL_STATE(6813)] = 204036, - [SMALL_STATE(6814)] = 204052, - [SMALL_STATE(6815)] = 204068, - [SMALL_STATE(6816)] = 204084, - [SMALL_STATE(6817)] = 204098, - [SMALL_STATE(6818)] = 204114, - [SMALL_STATE(6819)] = 204128, - [SMALL_STATE(6820)] = 204144, - [SMALL_STATE(6821)] = 204160, - [SMALL_STATE(6822)] = 204176, - [SMALL_STATE(6823)] = 204192, - [SMALL_STATE(6824)] = 204208, - [SMALL_STATE(6825)] = 204222, - [SMALL_STATE(6826)] = 204236, - [SMALL_STATE(6827)] = 204252, - [SMALL_STATE(6828)] = 204268, - [SMALL_STATE(6829)] = 204284, - [SMALL_STATE(6830)] = 204300, - [SMALL_STATE(6831)] = 204314, - [SMALL_STATE(6832)] = 204330, - [SMALL_STATE(6833)] = 204346, - [SMALL_STATE(6834)] = 204362, - [SMALL_STATE(6835)] = 204376, - [SMALL_STATE(6836)] = 204390, - [SMALL_STATE(6837)] = 204406, - [SMALL_STATE(6838)] = 204422, - [SMALL_STATE(6839)] = 204436, - [SMALL_STATE(6840)] = 204452, - [SMALL_STATE(6841)] = 204466, - [SMALL_STATE(6842)] = 204482, - [SMALL_STATE(6843)] = 204496, - [SMALL_STATE(6844)] = 204510, - [SMALL_STATE(6845)] = 204524, - [SMALL_STATE(6846)] = 204540, - [SMALL_STATE(6847)] = 204554, - [SMALL_STATE(6848)] = 204570, - [SMALL_STATE(6849)] = 204586, - [SMALL_STATE(6850)] = 204600, - [SMALL_STATE(6851)] = 204616, - [SMALL_STATE(6852)] = 204630, - [SMALL_STATE(6853)] = 204646, - [SMALL_STATE(6854)] = 204662, - [SMALL_STATE(6855)] = 204676, - [SMALL_STATE(6856)] = 204690, - [SMALL_STATE(6857)] = 204706, - [SMALL_STATE(6858)] = 204722, - [SMALL_STATE(6859)] = 204736, - [SMALL_STATE(6860)] = 204752, - [SMALL_STATE(6861)] = 204766, - [SMALL_STATE(6862)] = 204780, - [SMALL_STATE(6863)] = 204794, - [SMALL_STATE(6864)] = 204810, - [SMALL_STATE(6865)] = 204826, - [SMALL_STATE(6866)] = 204842, - [SMALL_STATE(6867)] = 204858, - [SMALL_STATE(6868)] = 204874, - [SMALL_STATE(6869)] = 204888, - [SMALL_STATE(6870)] = 204904, - [SMALL_STATE(6871)] = 204918, - [SMALL_STATE(6872)] = 204934, - [SMALL_STATE(6873)] = 204950, - [SMALL_STATE(6874)] = 204964, - [SMALL_STATE(6875)] = 204980, - [SMALL_STATE(6876)] = 204996, - [SMALL_STATE(6877)] = 205012, - [SMALL_STATE(6878)] = 205028, - [SMALL_STATE(6879)] = 205044, - [SMALL_STATE(6880)] = 205058, - [SMALL_STATE(6881)] = 205072, - [SMALL_STATE(6882)] = 205088, - [SMALL_STATE(6883)] = 205104, - [SMALL_STATE(6884)] = 205118, - [SMALL_STATE(6885)] = 205134, - [SMALL_STATE(6886)] = 205150, - [SMALL_STATE(6887)] = 205166, - [SMALL_STATE(6888)] = 205182, - [SMALL_STATE(6889)] = 205198, - [SMALL_STATE(6890)] = 205214, - [SMALL_STATE(6891)] = 205228, - [SMALL_STATE(6892)] = 205244, - [SMALL_STATE(6893)] = 205258, - [SMALL_STATE(6894)] = 205274, - [SMALL_STATE(6895)] = 205288, - [SMALL_STATE(6896)] = 205302, - [SMALL_STATE(6897)] = 205316, - [SMALL_STATE(6898)] = 205332, - [SMALL_STATE(6899)] = 205346, - [SMALL_STATE(6900)] = 205360, - [SMALL_STATE(6901)] = 205374, - [SMALL_STATE(6902)] = 205390, - [SMALL_STATE(6903)] = 205406, - [SMALL_STATE(6904)] = 205420, - [SMALL_STATE(6905)] = 205436, - [SMALL_STATE(6906)] = 205452, - [SMALL_STATE(6907)] = 205468, - [SMALL_STATE(6908)] = 205482, - [SMALL_STATE(6909)] = 205498, - [SMALL_STATE(6910)] = 205514, - [SMALL_STATE(6911)] = 205530, - [SMALL_STATE(6912)] = 205544, - [SMALL_STATE(6913)] = 205560, - [SMALL_STATE(6914)] = 205574, - [SMALL_STATE(6915)] = 205590, - [SMALL_STATE(6916)] = 205604, - [SMALL_STATE(6917)] = 205620, - [SMALL_STATE(6918)] = 205636, - [SMALL_STATE(6919)] = 205650, - [SMALL_STATE(6920)] = 205666, - [SMALL_STATE(6921)] = 205682, - [SMALL_STATE(6922)] = 205696, - [SMALL_STATE(6923)] = 205712, - [SMALL_STATE(6924)] = 205728, - [SMALL_STATE(6925)] = 205744, - [SMALL_STATE(6926)] = 205760, - [SMALL_STATE(6927)] = 205776, - [SMALL_STATE(6928)] = 205790, - [SMALL_STATE(6929)] = 205806, - [SMALL_STATE(6930)] = 205822, - [SMALL_STATE(6931)] = 205838, - [SMALL_STATE(6932)] = 205852, - [SMALL_STATE(6933)] = 205868, - [SMALL_STATE(6934)] = 205882, - [SMALL_STATE(6935)] = 205898, - [SMALL_STATE(6936)] = 205914, - [SMALL_STATE(6937)] = 205930, - [SMALL_STATE(6938)] = 205946, - [SMALL_STATE(6939)] = 205962, - [SMALL_STATE(6940)] = 205978, - [SMALL_STATE(6941)] = 205994, - [SMALL_STATE(6942)] = 206008, - [SMALL_STATE(6943)] = 206022, - [SMALL_STATE(6944)] = 206036, - [SMALL_STATE(6945)] = 206050, - [SMALL_STATE(6946)] = 206066, - [SMALL_STATE(6947)] = 206082, - [SMALL_STATE(6948)] = 206096, - [SMALL_STATE(6949)] = 206112, - [SMALL_STATE(6950)] = 206126, - [SMALL_STATE(6951)] = 206140, - [SMALL_STATE(6952)] = 206156, - [SMALL_STATE(6953)] = 206172, - [SMALL_STATE(6954)] = 206188, - [SMALL_STATE(6955)] = 206202, - [SMALL_STATE(6956)] = 206218, - [SMALL_STATE(6957)] = 206232, - [SMALL_STATE(6958)] = 206248, - [SMALL_STATE(6959)] = 206262, - [SMALL_STATE(6960)] = 206276, - [SMALL_STATE(6961)] = 206290, - [SMALL_STATE(6962)] = 206306, - [SMALL_STATE(6963)] = 206322, - [SMALL_STATE(6964)] = 206336, - [SMALL_STATE(6965)] = 206352, - [SMALL_STATE(6966)] = 206368, - [SMALL_STATE(6967)] = 206384, - [SMALL_STATE(6968)] = 206400, - [SMALL_STATE(6969)] = 206416, - [SMALL_STATE(6970)] = 206430, - [SMALL_STATE(6971)] = 206444, - [SMALL_STATE(6972)] = 206460, - [SMALL_STATE(6973)] = 206474, - [SMALL_STATE(6974)] = 206488, - [SMALL_STATE(6975)] = 206502, - [SMALL_STATE(6976)] = 206518, - [SMALL_STATE(6977)] = 206534, - [SMALL_STATE(6978)] = 206548, - [SMALL_STATE(6979)] = 206564, - [SMALL_STATE(6980)] = 206578, - [SMALL_STATE(6981)] = 206594, - [SMALL_STATE(6982)] = 206610, - [SMALL_STATE(6983)] = 206626, - [SMALL_STATE(6984)] = 206640, - [SMALL_STATE(6985)] = 206656, - [SMALL_STATE(6986)] = 206670, - [SMALL_STATE(6987)] = 206684, - [SMALL_STATE(6988)] = 206698, - [SMALL_STATE(6989)] = 206712, - [SMALL_STATE(6990)] = 206726, - [SMALL_STATE(6991)] = 206742, - [SMALL_STATE(6992)] = 206756, - [SMALL_STATE(6993)] = 206770, - [SMALL_STATE(6994)] = 206786, - [SMALL_STATE(6995)] = 206802, - [SMALL_STATE(6996)] = 206816, - [SMALL_STATE(6997)] = 206830, - [SMALL_STATE(6998)] = 206844, - [SMALL_STATE(6999)] = 206860, - [SMALL_STATE(7000)] = 206876, - [SMALL_STATE(7001)] = 206892, - [SMALL_STATE(7002)] = 206908, - [SMALL_STATE(7003)] = 206924, - [SMALL_STATE(7004)] = 206940, - [SMALL_STATE(7005)] = 206956, - [SMALL_STATE(7006)] = 206970, - [SMALL_STATE(7007)] = 206986, - [SMALL_STATE(7008)] = 207000, - [SMALL_STATE(7009)] = 207016, - [SMALL_STATE(7010)] = 207032, - [SMALL_STATE(7011)] = 207046, - [SMALL_STATE(7012)] = 207062, - [SMALL_STATE(7013)] = 207078, - [SMALL_STATE(7014)] = 207094, - [SMALL_STATE(7015)] = 207110, - [SMALL_STATE(7016)] = 207124, - [SMALL_STATE(7017)] = 207138, - [SMALL_STATE(7018)] = 207154, - [SMALL_STATE(7019)] = 207170, - [SMALL_STATE(7020)] = 207186, - [SMALL_STATE(7021)] = 207200, - [SMALL_STATE(7022)] = 207216, - [SMALL_STATE(7023)] = 207232, - [SMALL_STATE(7024)] = 207246, - [SMALL_STATE(7025)] = 207260, - [SMALL_STATE(7026)] = 207276, - [SMALL_STATE(7027)] = 207290, - [SMALL_STATE(7028)] = 207304, - [SMALL_STATE(7029)] = 207320, - [SMALL_STATE(7030)] = 207334, - [SMALL_STATE(7031)] = 207348, - [SMALL_STATE(7032)] = 207364, - [SMALL_STATE(7033)] = 207378, - [SMALL_STATE(7034)] = 207392, - [SMALL_STATE(7035)] = 207406, - [SMALL_STATE(7036)] = 207420, - [SMALL_STATE(7037)] = 207436, - [SMALL_STATE(7038)] = 207450, - [SMALL_STATE(7039)] = 207464, - [SMALL_STATE(7040)] = 207478, - [SMALL_STATE(7041)] = 207492, - [SMALL_STATE(7042)] = 207508, - [SMALL_STATE(7043)] = 207522, - [SMALL_STATE(7044)] = 207538, - [SMALL_STATE(7045)] = 207554, - [SMALL_STATE(7046)] = 207568, - [SMALL_STATE(7047)] = 207584, - [SMALL_STATE(7048)] = 207598, - [SMALL_STATE(7049)] = 207612, - [SMALL_STATE(7050)] = 207628, - [SMALL_STATE(7051)] = 207642, - [SMALL_STATE(7052)] = 207656, - [SMALL_STATE(7053)] = 207670, - [SMALL_STATE(7054)] = 207684, - [SMALL_STATE(7055)] = 207698, - [SMALL_STATE(7056)] = 207712, - [SMALL_STATE(7057)] = 207726, - [SMALL_STATE(7058)] = 207740, - [SMALL_STATE(7059)] = 207756, - [SMALL_STATE(7060)] = 207770, - [SMALL_STATE(7061)] = 207786, - [SMALL_STATE(7062)] = 207800, - [SMALL_STATE(7063)] = 207816, - [SMALL_STATE(7064)] = 207832, - [SMALL_STATE(7065)] = 207846, - [SMALL_STATE(7066)] = 207860, - [SMALL_STATE(7067)] = 207874, - [SMALL_STATE(7068)] = 207890, - [SMALL_STATE(7069)] = 207906, - [SMALL_STATE(7070)] = 207920, - [SMALL_STATE(7071)] = 207934, - [SMALL_STATE(7072)] = 207948, - [SMALL_STATE(7073)] = 207962, - [SMALL_STATE(7074)] = 207978, - [SMALL_STATE(7075)] = 207994, - [SMALL_STATE(7076)] = 208010, - [SMALL_STATE(7077)] = 208024, - [SMALL_STATE(7078)] = 208038, - [SMALL_STATE(7079)] = 208054, - [SMALL_STATE(7080)] = 208070, - [SMALL_STATE(7081)] = 208086, - [SMALL_STATE(7082)] = 208102, - [SMALL_STATE(7083)] = 208116, - [SMALL_STATE(7084)] = 208130, - [SMALL_STATE(7085)] = 208144, - [SMALL_STATE(7086)] = 208160, - [SMALL_STATE(7087)] = 208176, - [SMALL_STATE(7088)] = 208190, - [SMALL_STATE(7089)] = 208206, - [SMALL_STATE(7090)] = 208220, - [SMALL_STATE(7091)] = 208234, - [SMALL_STATE(7092)] = 208250, - [SMALL_STATE(7093)] = 208264, - [SMALL_STATE(7094)] = 208278, - [SMALL_STATE(7095)] = 208292, - [SMALL_STATE(7096)] = 208306, - [SMALL_STATE(7097)] = 208320, - [SMALL_STATE(7098)] = 208336, - [SMALL_STATE(7099)] = 208352, - [SMALL_STATE(7100)] = 208366, - [SMALL_STATE(7101)] = 208380, - [SMALL_STATE(7102)] = 208394, - [SMALL_STATE(7103)] = 208408, - [SMALL_STATE(7104)] = 208424, - [SMALL_STATE(7105)] = 208440, - [SMALL_STATE(7106)] = 208456, - [SMALL_STATE(7107)] = 208472, - [SMALL_STATE(7108)] = 208486, - [SMALL_STATE(7109)] = 208502, - [SMALL_STATE(7110)] = 208518, - [SMALL_STATE(7111)] = 208534, - [SMALL_STATE(7112)] = 208550, - [SMALL_STATE(7113)] = 208566, - [SMALL_STATE(7114)] = 208580, - [SMALL_STATE(7115)] = 208594, - [SMALL_STATE(7116)] = 208610, - [SMALL_STATE(7117)] = 208624, - [SMALL_STATE(7118)] = 208638, - [SMALL_STATE(7119)] = 208652, - [SMALL_STATE(7120)] = 208668, - [SMALL_STATE(7121)] = 208684, - [SMALL_STATE(7122)] = 208700, - [SMALL_STATE(7123)] = 208714, - [SMALL_STATE(7124)] = 208728, - [SMALL_STATE(7125)] = 208742, - [SMALL_STATE(7126)] = 208758, - [SMALL_STATE(7127)] = 208772, - [SMALL_STATE(7128)] = 208788, - [SMALL_STATE(7129)] = 208802, - [SMALL_STATE(7130)] = 208816, - [SMALL_STATE(7131)] = 208830, - [SMALL_STATE(7132)] = 208844, - [SMALL_STATE(7133)] = 208858, - [SMALL_STATE(7134)] = 208872, - [SMALL_STATE(7135)] = 208888, - [SMALL_STATE(7136)] = 208902, - [SMALL_STATE(7137)] = 208918, - [SMALL_STATE(7138)] = 208932, - [SMALL_STATE(7139)] = 208946, - [SMALL_STATE(7140)] = 208960, - [SMALL_STATE(7141)] = 208976, - [SMALL_STATE(7142)] = 208992, - [SMALL_STATE(7143)] = 209006, - [SMALL_STATE(7144)] = 209022, - [SMALL_STATE(7145)] = 209036, - [SMALL_STATE(7146)] = 209052, - [SMALL_STATE(7147)] = 209066, - [SMALL_STATE(7148)] = 209080, - [SMALL_STATE(7149)] = 209094, - [SMALL_STATE(7150)] = 209110, - [SMALL_STATE(7151)] = 209126, - [SMALL_STATE(7152)] = 209140, - [SMALL_STATE(7153)] = 209154, - [SMALL_STATE(7154)] = 209168, - [SMALL_STATE(7155)] = 209184, - [SMALL_STATE(7156)] = 209198, - [SMALL_STATE(7157)] = 209214, - [SMALL_STATE(7158)] = 209230, - [SMALL_STATE(7159)] = 209244, - [SMALL_STATE(7160)] = 209260, - [SMALL_STATE(7161)] = 209274, - [SMALL_STATE(7162)] = 209290, - [SMALL_STATE(7163)] = 209304, - [SMALL_STATE(7164)] = 209318, - [SMALL_STATE(7165)] = 209334, - [SMALL_STATE(7166)] = 209350, - [SMALL_STATE(7167)] = 209364, - [SMALL_STATE(7168)] = 209378, - [SMALL_STATE(7169)] = 209394, - [SMALL_STATE(7170)] = 209408, - [SMALL_STATE(7171)] = 209422, - [SMALL_STATE(7172)] = 209438, - [SMALL_STATE(7173)] = 209452, - [SMALL_STATE(7174)] = 209465, - [SMALL_STATE(7175)] = 209478, - [SMALL_STATE(7176)] = 209491, - [SMALL_STATE(7177)] = 209504, - [SMALL_STATE(7178)] = 209517, - [SMALL_STATE(7179)] = 209530, - [SMALL_STATE(7180)] = 209543, - [SMALL_STATE(7181)] = 209556, - [SMALL_STATE(7182)] = 209569, - [SMALL_STATE(7183)] = 209582, - [SMALL_STATE(7184)] = 209595, - [SMALL_STATE(7185)] = 209608, - [SMALL_STATE(7186)] = 209621, - [SMALL_STATE(7187)] = 209634, - [SMALL_STATE(7188)] = 209647, - [SMALL_STATE(7189)] = 209660, - [SMALL_STATE(7190)] = 209673, - [SMALL_STATE(7191)] = 209686, - [SMALL_STATE(7192)] = 209699, - [SMALL_STATE(7193)] = 209712, - [SMALL_STATE(7194)] = 209725, - [SMALL_STATE(7195)] = 209738, - [SMALL_STATE(7196)] = 209751, - [SMALL_STATE(7197)] = 209764, - [SMALL_STATE(7198)] = 209777, - [SMALL_STATE(7199)] = 209790, - [SMALL_STATE(7200)] = 209803, - [SMALL_STATE(7201)] = 209816, - [SMALL_STATE(7202)] = 209829, - [SMALL_STATE(7203)] = 209842, - [SMALL_STATE(7204)] = 209855, - [SMALL_STATE(7205)] = 209868, - [SMALL_STATE(7206)] = 209881, - [SMALL_STATE(7207)] = 209894, - [SMALL_STATE(7208)] = 209907, - [SMALL_STATE(7209)] = 209920, - [SMALL_STATE(7210)] = 209933, - [SMALL_STATE(7211)] = 209946, - [SMALL_STATE(7212)] = 209959, - [SMALL_STATE(7213)] = 209972, - [SMALL_STATE(7214)] = 209985, - [SMALL_STATE(7215)] = 209998, - [SMALL_STATE(7216)] = 210011, - [SMALL_STATE(7217)] = 210024, - [SMALL_STATE(7218)] = 210037, - [SMALL_STATE(7219)] = 210050, - [SMALL_STATE(7220)] = 210063, - [SMALL_STATE(7221)] = 210076, - [SMALL_STATE(7222)] = 210089, - [SMALL_STATE(7223)] = 210102, - [SMALL_STATE(7224)] = 210115, - [SMALL_STATE(7225)] = 210128, - [SMALL_STATE(7226)] = 210141, - [SMALL_STATE(7227)] = 210154, - [SMALL_STATE(7228)] = 210167, - [SMALL_STATE(7229)] = 210180, - [SMALL_STATE(7230)] = 210193, - [SMALL_STATE(7231)] = 210206, - [SMALL_STATE(7232)] = 210219, - [SMALL_STATE(7233)] = 210232, - [SMALL_STATE(7234)] = 210245, - [SMALL_STATE(7235)] = 210258, - [SMALL_STATE(7236)] = 210271, - [SMALL_STATE(7237)] = 210284, - [SMALL_STATE(7238)] = 210297, - [SMALL_STATE(7239)] = 210310, - [SMALL_STATE(7240)] = 210323, - [SMALL_STATE(7241)] = 210336, - [SMALL_STATE(7242)] = 210349, - [SMALL_STATE(7243)] = 210362, - [SMALL_STATE(7244)] = 210375, - [SMALL_STATE(7245)] = 210388, - [SMALL_STATE(7246)] = 210401, - [SMALL_STATE(7247)] = 210414, - [SMALL_STATE(7248)] = 210427, - [SMALL_STATE(7249)] = 210440, - [SMALL_STATE(7250)] = 210453, - [SMALL_STATE(7251)] = 210466, - [SMALL_STATE(7252)] = 210479, - [SMALL_STATE(7253)] = 210492, - [SMALL_STATE(7254)] = 210505, - [SMALL_STATE(7255)] = 210518, - [SMALL_STATE(7256)] = 210531, - [SMALL_STATE(7257)] = 210544, - [SMALL_STATE(7258)] = 210557, - [SMALL_STATE(7259)] = 210570, - [SMALL_STATE(7260)] = 210583, - [SMALL_STATE(7261)] = 210596, - [SMALL_STATE(7262)] = 210609, - [SMALL_STATE(7263)] = 210622, - [SMALL_STATE(7264)] = 210635, - [SMALL_STATE(7265)] = 210648, - [SMALL_STATE(7266)] = 210661, - [SMALL_STATE(7267)] = 210674, - [SMALL_STATE(7268)] = 210687, - [SMALL_STATE(7269)] = 210700, - [SMALL_STATE(7270)] = 210713, - [SMALL_STATE(7271)] = 210726, - [SMALL_STATE(7272)] = 210739, - [SMALL_STATE(7273)] = 210752, - [SMALL_STATE(7274)] = 210765, - [SMALL_STATE(7275)] = 210778, - [SMALL_STATE(7276)] = 210791, - [SMALL_STATE(7277)] = 210804, - [SMALL_STATE(7278)] = 210817, - [SMALL_STATE(7279)] = 210830, - [SMALL_STATE(7280)] = 210843, - [SMALL_STATE(7281)] = 210856, - [SMALL_STATE(7282)] = 210869, - [SMALL_STATE(7283)] = 210882, - [SMALL_STATE(7284)] = 210895, - [SMALL_STATE(7285)] = 210908, - [SMALL_STATE(7286)] = 210921, - [SMALL_STATE(7287)] = 210934, - [SMALL_STATE(7288)] = 210947, - [SMALL_STATE(7289)] = 210960, - [SMALL_STATE(7290)] = 210973, - [SMALL_STATE(7291)] = 210986, - [SMALL_STATE(7292)] = 210999, - [SMALL_STATE(7293)] = 211012, - [SMALL_STATE(7294)] = 211025, - [SMALL_STATE(7295)] = 211038, - [SMALL_STATE(7296)] = 211051, - [SMALL_STATE(7297)] = 211064, - [SMALL_STATE(7298)] = 211077, - [SMALL_STATE(7299)] = 211090, - [SMALL_STATE(7300)] = 211103, - [SMALL_STATE(7301)] = 211116, - [SMALL_STATE(7302)] = 211129, - [SMALL_STATE(7303)] = 211142, - [SMALL_STATE(7304)] = 211155, - [SMALL_STATE(7305)] = 211168, - [SMALL_STATE(7306)] = 211181, - [SMALL_STATE(7307)] = 211194, - [SMALL_STATE(7308)] = 211207, - [SMALL_STATE(7309)] = 211220, - [SMALL_STATE(7310)] = 211233, - [SMALL_STATE(7311)] = 211246, - [SMALL_STATE(7312)] = 211259, - [SMALL_STATE(7313)] = 211272, - [SMALL_STATE(7314)] = 211285, - [SMALL_STATE(7315)] = 211298, - [SMALL_STATE(7316)] = 211311, - [SMALL_STATE(7317)] = 211324, - [SMALL_STATE(7318)] = 211337, - [SMALL_STATE(7319)] = 211350, - [SMALL_STATE(7320)] = 211363, - [SMALL_STATE(7321)] = 211376, - [SMALL_STATE(7322)] = 211389, - [SMALL_STATE(7323)] = 211402, - [SMALL_STATE(7324)] = 211415, - [SMALL_STATE(7325)] = 211428, - [SMALL_STATE(7326)] = 211441, - [SMALL_STATE(7327)] = 211454, - [SMALL_STATE(7328)] = 211467, - [SMALL_STATE(7329)] = 211480, - [SMALL_STATE(7330)] = 211493, - [SMALL_STATE(7331)] = 211506, - [SMALL_STATE(7332)] = 211519, - [SMALL_STATE(7333)] = 211532, - [SMALL_STATE(7334)] = 211545, - [SMALL_STATE(7335)] = 211558, - [SMALL_STATE(7336)] = 211571, - [SMALL_STATE(7337)] = 211584, - [SMALL_STATE(7338)] = 211597, - [SMALL_STATE(7339)] = 211610, - [SMALL_STATE(7340)] = 211623, - [SMALL_STATE(7341)] = 211636, - [SMALL_STATE(7342)] = 211649, - [SMALL_STATE(7343)] = 211662, - [SMALL_STATE(7344)] = 211675, - [SMALL_STATE(7345)] = 211688, - [SMALL_STATE(7346)] = 211701, - [SMALL_STATE(7347)] = 211714, - [SMALL_STATE(7348)] = 211727, - [SMALL_STATE(7349)] = 211740, - [SMALL_STATE(7350)] = 211753, - [SMALL_STATE(7351)] = 211766, - [SMALL_STATE(7352)] = 211779, - [SMALL_STATE(7353)] = 211792, - [SMALL_STATE(7354)] = 211805, - [SMALL_STATE(7355)] = 211818, - [SMALL_STATE(7356)] = 211831, - [SMALL_STATE(7357)] = 211844, - [SMALL_STATE(7358)] = 211857, - [SMALL_STATE(7359)] = 211870, - [SMALL_STATE(7360)] = 211883, - [SMALL_STATE(7361)] = 211896, - [SMALL_STATE(7362)] = 211909, - [SMALL_STATE(7363)] = 211922, - [SMALL_STATE(7364)] = 211935, - [SMALL_STATE(7365)] = 211948, - [SMALL_STATE(7366)] = 211961, - [SMALL_STATE(7367)] = 211974, - [SMALL_STATE(7368)] = 211987, - [SMALL_STATE(7369)] = 212000, - [SMALL_STATE(7370)] = 212013, - [SMALL_STATE(7371)] = 212026, - [SMALL_STATE(7372)] = 212039, - [SMALL_STATE(7373)] = 212052, - [SMALL_STATE(7374)] = 212065, - [SMALL_STATE(7375)] = 212078, - [SMALL_STATE(7376)] = 212091, - [SMALL_STATE(7377)] = 212104, - [SMALL_STATE(7378)] = 212117, - [SMALL_STATE(7379)] = 212130, - [SMALL_STATE(7380)] = 212143, - [SMALL_STATE(7381)] = 212156, - [SMALL_STATE(7382)] = 212169, - [SMALL_STATE(7383)] = 212182, - [SMALL_STATE(7384)] = 212195, - [SMALL_STATE(7385)] = 212208, - [SMALL_STATE(7386)] = 212221, - [SMALL_STATE(7387)] = 212234, - [SMALL_STATE(7388)] = 212247, - [SMALL_STATE(7389)] = 212260, - [SMALL_STATE(7390)] = 212273, - [SMALL_STATE(7391)] = 212286, - [SMALL_STATE(7392)] = 212299, - [SMALL_STATE(7393)] = 212312, - [SMALL_STATE(7394)] = 212325, - [SMALL_STATE(7395)] = 212338, - [SMALL_STATE(7396)] = 212351, - [SMALL_STATE(7397)] = 212364, - [SMALL_STATE(7398)] = 212377, - [SMALL_STATE(7399)] = 212390, - [SMALL_STATE(7400)] = 212403, - [SMALL_STATE(7401)] = 212416, - [SMALL_STATE(7402)] = 212429, - [SMALL_STATE(7403)] = 212442, - [SMALL_STATE(7404)] = 212455, - [SMALL_STATE(7405)] = 212468, - [SMALL_STATE(7406)] = 212481, - [SMALL_STATE(7407)] = 212494, - [SMALL_STATE(7408)] = 212507, - [SMALL_STATE(7409)] = 212520, - [SMALL_STATE(7410)] = 212533, - [SMALL_STATE(7411)] = 212546, - [SMALL_STATE(7412)] = 212559, - [SMALL_STATE(7413)] = 212572, - [SMALL_STATE(7414)] = 212585, - [SMALL_STATE(7415)] = 212598, - [SMALL_STATE(7416)] = 212611, - [SMALL_STATE(7417)] = 212624, - [SMALL_STATE(7418)] = 212637, - [SMALL_STATE(7419)] = 212650, - [SMALL_STATE(7420)] = 212663, - [SMALL_STATE(7421)] = 212676, - [SMALL_STATE(7422)] = 212689, - [SMALL_STATE(7423)] = 212702, - [SMALL_STATE(7424)] = 212715, - [SMALL_STATE(7425)] = 212728, - [SMALL_STATE(7426)] = 212741, - [SMALL_STATE(7427)] = 212754, - [SMALL_STATE(7428)] = 212767, - [SMALL_STATE(7429)] = 212780, - [SMALL_STATE(7430)] = 212793, - [SMALL_STATE(7431)] = 212806, - [SMALL_STATE(7432)] = 212819, - [SMALL_STATE(7433)] = 212832, - [SMALL_STATE(7434)] = 212845, - [SMALL_STATE(7435)] = 212858, - [SMALL_STATE(7436)] = 212871, - [SMALL_STATE(7437)] = 212884, - [SMALL_STATE(7438)] = 212897, - [SMALL_STATE(7439)] = 212910, - [SMALL_STATE(7440)] = 212923, - [SMALL_STATE(7441)] = 212936, - [SMALL_STATE(7442)] = 212949, - [SMALL_STATE(7443)] = 212962, - [SMALL_STATE(7444)] = 212975, - [SMALL_STATE(7445)] = 212988, - [SMALL_STATE(7446)] = 213001, - [SMALL_STATE(7447)] = 213014, - [SMALL_STATE(7448)] = 213027, - [SMALL_STATE(7449)] = 213040, - [SMALL_STATE(7450)] = 213053, - [SMALL_STATE(7451)] = 213066, - [SMALL_STATE(7452)] = 213079, - [SMALL_STATE(7453)] = 213092, - [SMALL_STATE(7454)] = 213105, - [SMALL_STATE(7455)] = 213118, - [SMALL_STATE(7456)] = 213131, - [SMALL_STATE(7457)] = 213144, - [SMALL_STATE(7458)] = 213157, - [SMALL_STATE(7459)] = 213170, - [SMALL_STATE(7460)] = 213183, - [SMALL_STATE(7461)] = 213196, - [SMALL_STATE(7462)] = 213209, - [SMALL_STATE(7463)] = 213222, - [SMALL_STATE(7464)] = 213235, - [SMALL_STATE(7465)] = 213248, - [SMALL_STATE(7466)] = 213261, - [SMALL_STATE(7467)] = 213274, - [SMALL_STATE(7468)] = 213287, - [SMALL_STATE(7469)] = 213300, - [SMALL_STATE(7470)] = 213313, - [SMALL_STATE(7471)] = 213326, - [SMALL_STATE(7472)] = 213339, - [SMALL_STATE(7473)] = 213352, - [SMALL_STATE(7474)] = 213365, - [SMALL_STATE(7475)] = 213378, - [SMALL_STATE(7476)] = 213391, - [SMALL_STATE(7477)] = 213404, - [SMALL_STATE(7478)] = 213417, - [SMALL_STATE(7479)] = 213430, - [SMALL_STATE(7480)] = 213443, - [SMALL_STATE(7481)] = 213456, - [SMALL_STATE(7482)] = 213469, - [SMALL_STATE(7483)] = 213482, - [SMALL_STATE(7484)] = 213495, - [SMALL_STATE(7485)] = 213508, - [SMALL_STATE(7486)] = 213521, - [SMALL_STATE(7487)] = 213534, - [SMALL_STATE(7488)] = 213547, - [SMALL_STATE(7489)] = 213560, - [SMALL_STATE(7490)] = 213573, - [SMALL_STATE(7491)] = 213586, - [SMALL_STATE(7492)] = 213599, - [SMALL_STATE(7493)] = 213612, - [SMALL_STATE(7494)] = 213625, - [SMALL_STATE(7495)] = 213638, - [SMALL_STATE(7496)] = 213651, - [SMALL_STATE(7497)] = 213664, - [SMALL_STATE(7498)] = 213677, - [SMALL_STATE(7499)] = 213690, - [SMALL_STATE(7500)] = 213703, - [SMALL_STATE(7501)] = 213716, - [SMALL_STATE(7502)] = 213729, - [SMALL_STATE(7503)] = 213742, - [SMALL_STATE(7504)] = 213755, - [SMALL_STATE(7505)] = 213768, - [SMALL_STATE(7506)] = 213781, - [SMALL_STATE(7507)] = 213794, - [SMALL_STATE(7508)] = 213807, - [SMALL_STATE(7509)] = 213820, - [SMALL_STATE(7510)] = 213833, - [SMALL_STATE(7511)] = 213846, - [SMALL_STATE(7512)] = 213859, - [SMALL_STATE(7513)] = 213872, - [SMALL_STATE(7514)] = 213885, - [SMALL_STATE(7515)] = 213898, - [SMALL_STATE(7516)] = 213911, - [SMALL_STATE(7517)] = 213924, - [SMALL_STATE(7518)] = 213937, - [SMALL_STATE(7519)] = 213950, - [SMALL_STATE(7520)] = 213963, - [SMALL_STATE(7521)] = 213976, - [SMALL_STATE(7522)] = 213989, - [SMALL_STATE(7523)] = 214002, - [SMALL_STATE(7524)] = 214015, - [SMALL_STATE(7525)] = 214028, - [SMALL_STATE(7526)] = 214041, - [SMALL_STATE(7527)] = 214054, - [SMALL_STATE(7528)] = 214067, - [SMALL_STATE(7529)] = 214080, - [SMALL_STATE(7530)] = 214093, - [SMALL_STATE(7531)] = 214106, - [SMALL_STATE(7532)] = 214119, - [SMALL_STATE(7533)] = 214132, - [SMALL_STATE(7534)] = 214145, - [SMALL_STATE(7535)] = 214158, - [SMALL_STATE(7536)] = 214171, - [SMALL_STATE(7537)] = 214184, - [SMALL_STATE(7538)] = 214197, - [SMALL_STATE(7539)] = 214210, - [SMALL_STATE(7540)] = 214223, - [SMALL_STATE(7541)] = 214236, - [SMALL_STATE(7542)] = 214249, - [SMALL_STATE(7543)] = 214262, - [SMALL_STATE(7544)] = 214275, - [SMALL_STATE(7545)] = 214288, - [SMALL_STATE(7546)] = 214301, - [SMALL_STATE(7547)] = 214314, - [SMALL_STATE(7548)] = 214327, - [SMALL_STATE(7549)] = 214340, - [SMALL_STATE(7550)] = 214353, - [SMALL_STATE(7551)] = 214366, - [SMALL_STATE(7552)] = 214379, - [SMALL_STATE(7553)] = 214392, - [SMALL_STATE(7554)] = 214405, - [SMALL_STATE(7555)] = 214418, - [SMALL_STATE(7556)] = 214431, - [SMALL_STATE(7557)] = 214444, - [SMALL_STATE(7558)] = 214457, - [SMALL_STATE(7559)] = 214470, - [SMALL_STATE(7560)] = 214483, - [SMALL_STATE(7561)] = 214496, - [SMALL_STATE(7562)] = 214509, - [SMALL_STATE(7563)] = 214522, - [SMALL_STATE(7564)] = 214535, - [SMALL_STATE(7565)] = 214548, - [SMALL_STATE(7566)] = 214561, - [SMALL_STATE(7567)] = 214574, - [SMALL_STATE(7568)] = 214587, - [SMALL_STATE(7569)] = 214600, - [SMALL_STATE(7570)] = 214613, - [SMALL_STATE(7571)] = 214626, - [SMALL_STATE(7572)] = 214639, - [SMALL_STATE(7573)] = 214652, - [SMALL_STATE(7574)] = 214665, - [SMALL_STATE(7575)] = 214678, - [SMALL_STATE(7576)] = 214691, - [SMALL_STATE(7577)] = 214704, - [SMALL_STATE(7578)] = 214717, - [SMALL_STATE(7579)] = 214730, - [SMALL_STATE(7580)] = 214743, - [SMALL_STATE(7581)] = 214756, - [SMALL_STATE(7582)] = 214769, - [SMALL_STATE(7583)] = 214782, - [SMALL_STATE(7584)] = 214795, - [SMALL_STATE(7585)] = 214808, - [SMALL_STATE(7586)] = 214821, - [SMALL_STATE(7587)] = 214834, - [SMALL_STATE(7588)] = 214847, - [SMALL_STATE(7589)] = 214860, - [SMALL_STATE(7590)] = 214873, - [SMALL_STATE(7591)] = 214886, - [SMALL_STATE(7592)] = 214899, - [SMALL_STATE(7593)] = 214912, - [SMALL_STATE(7594)] = 214925, - [SMALL_STATE(7595)] = 214938, - [SMALL_STATE(7596)] = 214951, - [SMALL_STATE(7597)] = 214964, - [SMALL_STATE(7598)] = 214977, - [SMALL_STATE(7599)] = 214990, - [SMALL_STATE(7600)] = 215003, - [SMALL_STATE(7601)] = 215016, - [SMALL_STATE(7602)] = 215029, - [SMALL_STATE(7603)] = 215042, - [SMALL_STATE(7604)] = 215055, - [SMALL_STATE(7605)] = 215068, - [SMALL_STATE(7606)] = 215081, - [SMALL_STATE(7607)] = 215094, - [SMALL_STATE(7608)] = 215107, - [SMALL_STATE(7609)] = 215120, - [SMALL_STATE(7610)] = 215133, - [SMALL_STATE(7611)] = 215146, - [SMALL_STATE(7612)] = 215159, - [SMALL_STATE(7613)] = 215172, - [SMALL_STATE(7614)] = 215185, - [SMALL_STATE(7615)] = 215198, - [SMALL_STATE(7616)] = 215211, - [SMALL_STATE(7617)] = 215224, - [SMALL_STATE(7618)] = 215237, - [SMALL_STATE(7619)] = 215250, - [SMALL_STATE(7620)] = 215263, - [SMALL_STATE(7621)] = 215276, - [SMALL_STATE(7622)] = 215289, - [SMALL_STATE(7623)] = 215302, - [SMALL_STATE(7624)] = 215315, - [SMALL_STATE(7625)] = 215328, - [SMALL_STATE(7626)] = 215341, - [SMALL_STATE(7627)] = 215354, - [SMALL_STATE(7628)] = 215367, - [SMALL_STATE(7629)] = 215380, - [SMALL_STATE(7630)] = 215393, - [SMALL_STATE(7631)] = 215406, - [SMALL_STATE(7632)] = 215419, - [SMALL_STATE(7633)] = 215432, - [SMALL_STATE(7634)] = 215445, - [SMALL_STATE(7635)] = 215458, - [SMALL_STATE(7636)] = 215471, - [SMALL_STATE(7637)] = 215484, - [SMALL_STATE(7638)] = 215497, - [SMALL_STATE(7639)] = 215510, - [SMALL_STATE(7640)] = 215523, - [SMALL_STATE(7641)] = 215536, - [SMALL_STATE(7642)] = 215549, - [SMALL_STATE(7643)] = 215562, - [SMALL_STATE(7644)] = 215575, - [SMALL_STATE(7645)] = 215588, - [SMALL_STATE(7646)] = 215601, - [SMALL_STATE(7647)] = 215614, - [SMALL_STATE(7648)] = 215627, - [SMALL_STATE(7649)] = 215640, - [SMALL_STATE(7650)] = 215653, - [SMALL_STATE(7651)] = 215666, - [SMALL_STATE(7652)] = 215679, - [SMALL_STATE(7653)] = 215692, - [SMALL_STATE(7654)] = 215705, - [SMALL_STATE(7655)] = 215718, - [SMALL_STATE(7656)] = 215731, - [SMALL_STATE(7657)] = 215744, - [SMALL_STATE(7658)] = 215757, - [SMALL_STATE(7659)] = 215770, - [SMALL_STATE(7660)] = 215783, - [SMALL_STATE(7661)] = 215796, - [SMALL_STATE(7662)] = 215809, + [SMALL_STATE(1852)] = 0, + [SMALL_STATE(1853)] = 93, + [SMALL_STATE(1854)] = 168, + [SMALL_STATE(1855)] = 243, + [SMALL_STATE(1856)] = 336, + [SMALL_STATE(1857)] = 431, + [SMALL_STATE(1858)] = 506, + [SMALL_STATE(1859)] = 601, + [SMALL_STATE(1860)] = 694, + [SMALL_STATE(1861)] = 791, + [SMALL_STATE(1862)] = 884, + [SMALL_STATE(1863)] = 977, + [SMALL_STATE(1864)] = 1070, + [SMALL_STATE(1865)] = 1167, + [SMALL_STATE(1866)] = 1260, + [SMALL_STATE(1867)] = 1357, + [SMALL_STATE(1868)] = 1450, + [SMALL_STATE(1869)] = 1545, + [SMALL_STATE(1870)] = 1638, + [SMALL_STATE(1871)] = 1731, + [SMALL_STATE(1872)] = 1824, + [SMALL_STATE(1873)] = 1917, + [SMALL_STATE(1874)] = 2012, + [SMALL_STATE(1875)] = 2087, + [SMALL_STATE(1876)] = 2180, + [SMALL_STATE(1877)] = 2255, + [SMALL_STATE(1878)] = 2330, + [SMALL_STATE(1879)] = 2423, + [SMALL_STATE(1880)] = 2498, + [SMALL_STATE(1881)] = 2591, + [SMALL_STATE(1882)] = 2686, + [SMALL_STATE(1883)] = 2779, + [SMALL_STATE(1884)] = 2874, + [SMALL_STATE(1885)] = 2969, + [SMALL_STATE(1886)] = 3062, + [SMALL_STATE(1887)] = 3155, + [SMALL_STATE(1888)] = 3248, + [SMALL_STATE(1889)] = 3341, + [SMALL_STATE(1890)] = 3436, + [SMALL_STATE(1891)] = 3530, + [SMALL_STATE(1892)] = 3626, + [SMALL_STATE(1893)] = 3718, + [SMALL_STATE(1894)] = 3814, + [SMALL_STATE(1895)] = 3914, + [SMALL_STATE(1896)] = 4010, + [SMALL_STATE(1897)] = 4102, + [SMALL_STATE(1898)] = 4196, + [SMALL_STATE(1899)] = 4288, + [SMALL_STATE(1900)] = 4362, + [SMALL_STATE(1901)] = 4440, + [SMALL_STATE(1902)] = 4532, + [SMALL_STATE(1903)] = 4628, + [SMALL_STATE(1904)] = 4720, + [SMALL_STATE(1905)] = 4794, + [SMALL_STATE(1906)] = 4889, + [SMALL_STATE(1907)] = 4968, + [SMALL_STATE(1908)] = 5045, + [SMALL_STATE(1909)] = 5140, + [SMALL_STATE(1910)] = 5231, + [SMALL_STATE(1911)] = 5314, + [SMALL_STATE(1912)] = 5407, + [SMALL_STATE(1913)] = 5504, + [SMALL_STATE(1914)] = 5595, + [SMALL_STATE(1915)] = 5680, + [SMALL_STATE(1916)] = 5763, + [SMALL_STATE(1917)] = 5846, + [SMALL_STATE(1918)] = 5937, + [SMALL_STATE(1919)] = 6028, + [SMALL_STATE(1920)] = 6111, + [SMALL_STATE(1921)] = 6202, + [SMALL_STATE(1922)] = 6299, + [SMALL_STATE(1923)] = 6382, + [SMALL_STATE(1924)] = 6473, + [SMALL_STATE(1925)] = 6564, + [SMALL_STATE(1926)] = 6647, + [SMALL_STATE(1927)] = 6738, + [SMALL_STATE(1928)] = 6829, + [SMALL_STATE(1929)] = 6924, + [SMALL_STATE(1930)] = 7019, + [SMALL_STATE(1931)] = 7092, + [SMALL_STATE(1932)] = 7177, + [SMALL_STATE(1933)] = 7268, + [SMALL_STATE(1934)] = 7341, + [SMALL_STATE(1935)] = 7432, + [SMALL_STATE(1936)] = 7507, + [SMALL_STATE(1937)] = 7598, + [SMALL_STATE(1938)] = 7692, + [SMALL_STATE(1939)] = 7772, + [SMALL_STATE(1940)] = 7850, + [SMALL_STATE(1941)] = 7930, + [SMALL_STATE(1942)] = 8012, + [SMALL_STATE(1943)] = 8100, + [SMALL_STATE(1944)] = 8190, + [SMALL_STATE(1945)] = 8284, + [SMALL_STATE(1946)] = 8366, + [SMALL_STATE(1947)] = 8436, + [SMALL_STATE(1948)] = 8514, + [SMALL_STATE(1949)] = 8596, + [SMALL_STATE(1950)] = 8680, + [SMALL_STATE(1951)] = 8770, + [SMALL_STATE(1952)] = 8852, + [SMALL_STATE(1953)] = 8936, + [SMALL_STATE(1954)] = 9030, + [SMALL_STATE(1955)] = 9108, + [SMALL_STATE(1956)] = 9178, + [SMALL_STATE(1957)] = 9248, + [SMALL_STATE(1958)] = 9338, + [SMALL_STATE(1959)] = 9432, + [SMALL_STATE(1960)] = 9512, + [SMALL_STATE(1961)] = 9600, + [SMALL_STATE(1962)] = 9692, + [SMALL_STATE(1963)] = 9770, + [SMALL_STATE(1964)] = 9852, + [SMALL_STATE(1965)] = 9931, + [SMALL_STATE(1966)] = 10020, + [SMALL_STATE(1967)] = 10089, + [SMALL_STATE(1968)] = 10178, + [SMALL_STATE(1969)] = 10257, + [SMALL_STATE(1970)] = 10330, + [SMALL_STATE(1971)] = 10403, + [SMALL_STATE(1972)] = 10472, + [SMALL_STATE(1973)] = 10555, + [SMALL_STATE(1974)] = 10632, + [SMALL_STATE(1975)] = 10709, + [SMALL_STATE(1976)] = 10794, + [SMALL_STATE(1977)] = 10871, + [SMALL_STATE(1978)] = 10948, + [SMALL_STATE(1979)] = 11017, + [SMALL_STATE(1980)] = 11096, + [SMALL_STATE(1981)] = 11165, + [SMALL_STATE(1982)] = 11258, + [SMALL_STATE(1983)] = 11329, + [SMALL_STATE(1984)] = 11398, + [SMALL_STATE(1985)] = 11477, + [SMALL_STATE(1986)] = 11556, + [SMALL_STATE(1987)] = 11641, + [SMALL_STATE(1988)] = 11720, + [SMALL_STATE(1989)] = 11789, + [SMALL_STATE(1990)] = 11866, + [SMALL_STATE(1991)] = 11945, + [SMALL_STATE(1992)] = 12026, + [SMALL_STATE(1993)] = 12105, + [SMALL_STATE(1994)] = 12176, + [SMALL_STATE(1995)] = 12253, + [SMALL_STATE(1996)] = 12324, + [SMALL_STATE(1997)] = 12399, + [SMALL_STATE(1998)] = 12470, + [SMALL_STATE(1999)] = 12551, + [SMALL_STATE(2000)] = 12622, + [SMALL_STATE(2001)] = 12693, + [SMALL_STATE(2002)] = 12766, + [SMALL_STATE(2003)] = 12853, + [SMALL_STATE(2004)] = 12924, + [SMALL_STATE(2005)] = 12997, + [SMALL_STATE(2006)] = 13074, + [SMALL_STATE(2007)] = 13153, + [SMALL_STATE(2008)] = 13222, + [SMALL_STATE(2009)] = 13293, + [SMALL_STATE(2010)] = 13372, + [SMALL_STATE(2011)] = 13461, + [SMALL_STATE(2012)] = 13532, + [SMALL_STATE(2013)] = 13601, + [SMALL_STATE(2014)] = 13676, + [SMALL_STATE(2015)] = 13745, + [SMALL_STATE(2016)] = 13814, + [SMALL_STATE(2017)] = 13885, + [SMALL_STATE(2018)] = 13956, + [SMALL_STATE(2019)] = 14033, + [SMALL_STATE(2020)] = 14116, + [SMALL_STATE(2021)] = 14197, + [SMALL_STATE(2022)] = 14280, + [SMALL_STATE(2023)] = 14373, + [SMALL_STATE(2024)] = 14449, + [SMALL_STATE(2025)] = 14531, + [SMALL_STATE(2026)] = 14609, + [SMALL_STATE(2027)] = 14683, + [SMALL_STATE(2028)] = 14765, + [SMALL_STATE(2029)] = 14843, + [SMALL_STATE(2030)] = 14925, + [SMALL_STATE(2031)] = 15003, + [SMALL_STATE(2032)] = 15081, + [SMALL_STATE(2033)] = 15159, + [SMALL_STATE(2034)] = 15243, + [SMALL_STATE(2035)] = 15331, + [SMALL_STATE(2036)] = 15409, + [SMALL_STATE(2037)] = 15485, + [SMALL_STATE(2038)] = 15563, + [SMALL_STATE(2039)] = 15637, + [SMALL_STATE(2040)] = 15713, + [SMALL_STATE(2041)] = 15789, + [SMALL_STATE(2042)] = 15867, + [SMALL_STATE(2043)] = 15945, + [SMALL_STATE(2044)] = 16027, + [SMALL_STATE(2045)] = 16106, + [SMALL_STATE(2046)] = 16179, + [SMALL_STATE(2047)] = 16254, + [SMALL_STATE(2048)] = 16329, + [SMALL_STATE(2049)] = 16456, + [SMALL_STATE(2050)] = 16583, + [SMALL_STATE(2051)] = 16710, + [SMALL_STATE(2052)] = 16781, + [SMALL_STATE(2053)] = 16908, + [SMALL_STATE(2054)] = 17035, + [SMALL_STATE(2055)] = 17162, + [SMALL_STATE(2056)] = 17243, + [SMALL_STATE(2057)] = 17318, + [SMALL_STATE(2058)] = 17445, + [SMALL_STATE(2059)] = 17520, + [SMALL_STATE(2060)] = 17595, + [SMALL_STATE(2061)] = 17674, + [SMALL_STATE(2062)] = 17749, + [SMALL_STATE(2063)] = 17820, + [SMALL_STATE(2064)] = 17897, + [SMALL_STATE(2065)] = 17972, + [SMALL_STATE(2066)] = 18047, + [SMALL_STATE(2067)] = 18124, + [SMALL_STATE(2068)] = 18203, + [SMALL_STATE(2069)] = 18330, + [SMALL_STATE(2070)] = 18457, + [SMALL_STATE(2071)] = 18536, + [SMALL_STATE(2072)] = 18610, + [SMALL_STATE(2073)] = 18682, + [SMALL_STATE(2074)] = 18758, + [SMALL_STATE(2075)] = 18832, + [SMALL_STATE(2076)] = 18906, + [SMALL_STATE(2077)] = 18982, + [SMALL_STATE(2078)] = 19056, + [SMALL_STATE(2079)] = 19130, + [SMALL_STATE(2080)] = 19204, + [SMALL_STATE(2081)] = 19282, + [SMALL_STATE(2082)] = 19356, + [SMALL_STATE(2083)] = 19434, + [SMALL_STATE(2084)] = 19508, + [SMALL_STATE(2085)] = 19580, + [SMALL_STATE(2086)] = 19653, + [SMALL_STATE(2087)] = 19726, + [SMALL_STATE(2088)] = 19797, + [SMALL_STATE(2089)] = 19870, + [SMALL_STATE(2090)] = 19993, + [SMALL_STATE(2091)] = 20116, + [SMALL_STATE(2092)] = 20189, + [SMALL_STATE(2093)] = 20312, + [SMALL_STATE(2094)] = 20385, + [SMALL_STATE(2095)] = 20458, + [SMALL_STATE(2096)] = 20581, + [SMALL_STATE(2097)] = 20654, + [SMALL_STATE(2098)] = 20777, + [SMALL_STATE(2099)] = 20900, + [SMALL_STATE(2100)] = 20973, + [SMALL_STATE(2101)] = 21046, + [SMALL_STATE(2102)] = 21119, + [SMALL_STATE(2103)] = 21192, + [SMALL_STATE(2104)] = 21315, + [SMALL_STATE(2105)] = 21438, + [SMALL_STATE(2106)] = 21561, + [SMALL_STATE(2107)] = 21684, + [SMALL_STATE(2108)] = 21807, + [SMALL_STATE(2109)] = 21930, + [SMALL_STATE(2110)] = 22003, + [SMALL_STATE(2111)] = 22076, + [SMALL_STATE(2112)] = 22149, + [SMALL_STATE(2113)] = 22220, + [SMALL_STATE(2114)] = 22343, + [SMALL_STATE(2115)] = 22466, + [SMALL_STATE(2116)] = 22539, + [SMALL_STATE(2117)] = 22612, + [SMALL_STATE(2118)] = 22735, + [SMALL_STATE(2119)] = 22808, + [SMALL_STATE(2120)] = 22931, + [SMALL_STATE(2121)] = 23054, + [SMALL_STATE(2122)] = 23177, + [SMALL_STATE(2123)] = 23250, + [SMALL_STATE(2124)] = 23373, + [SMALL_STATE(2125)] = 23446, + [SMALL_STATE(2126)] = 23569, + [SMALL_STATE(2127)] = 23644, + [SMALL_STATE(2128)] = 23767, + [SMALL_STATE(2129)] = 23840, + [SMALL_STATE(2130)] = 23963, + [SMALL_STATE(2131)] = 24086, + [SMALL_STATE(2132)] = 24209, + [SMALL_STATE(2133)] = 24332, + [SMALL_STATE(2134)] = 24455, + [SMALL_STATE(2135)] = 24528, + [SMALL_STATE(2136)] = 24651, + [SMALL_STATE(2137)] = 24721, + [SMALL_STATE(2138)] = 24791, + [SMALL_STATE(2139)] = 24861, + [SMALL_STATE(2140)] = 24931, + [SMALL_STATE(2141)] = 25001, + [SMALL_STATE(2142)] = 25071, + [SMALL_STATE(2143)] = 25141, + [SMALL_STATE(2144)] = 25211, + [SMALL_STATE(2145)] = 25281, + [SMALL_STATE(2146)] = 25400, + [SMALL_STATE(2147)] = 25519, + [SMALL_STATE(2148)] = 25638, + [SMALL_STATE(2149)] = 25757, + [SMALL_STATE(2150)] = 25876, + [SMALL_STATE(2151)] = 25995, + [SMALL_STATE(2152)] = 26114, + [SMALL_STATE(2153)] = 26233, + [SMALL_STATE(2154)] = 26352, + [SMALL_STATE(2155)] = 26471, + [SMALL_STATE(2156)] = 26595, + [SMALL_STATE(2157)] = 26719, + [SMALL_STATE(2158)] = 26843, + [SMALL_STATE(2159)] = 26967, + [SMALL_STATE(2160)] = 27091, + [SMALL_STATE(2161)] = 27206, + [SMALL_STATE(2162)] = 27323, + [SMALL_STATE(2163)] = 27434, + [SMALL_STATE(2164)] = 27551, + [SMALL_STATE(2165)] = 27668, + [SMALL_STATE(2166)] = 27785, + [SMALL_STATE(2167)] = 27896, + [SMALL_STATE(2168)] = 28013, + [SMALL_STATE(2169)] = 28130, + [SMALL_STATE(2170)] = 28247, + [SMALL_STATE(2171)] = 28364, + [SMALL_STATE(2172)] = 28475, + [SMALL_STATE(2173)] = 28592, + [SMALL_STATE(2174)] = 28709, + [SMALL_STATE(2175)] = 28826, + [SMALL_STATE(2176)] = 28937, + [SMALL_STATE(2177)] = 29054, + [SMALL_STATE(2178)] = 29171, + [SMALL_STATE(2179)] = 29288, + [SMALL_STATE(2180)] = 29405, + [SMALL_STATE(2181)] = 29522, + [SMALL_STATE(2182)] = 29639, + [SMALL_STATE(2183)] = 29750, + [SMALL_STATE(2184)] = 29867, + [SMALL_STATE(2185)] = 29984, + [SMALL_STATE(2186)] = 30101, + [SMALL_STATE(2187)] = 30218, + [SMALL_STATE(2188)] = 30335, + [SMALL_STATE(2189)] = 30452, + [SMALL_STATE(2190)] = 30569, + [SMALL_STATE(2191)] = 30680, + [SMALL_STATE(2192)] = 30797, + [SMALL_STATE(2193)] = 30914, + [SMALL_STATE(2194)] = 31031, + [SMALL_STATE(2195)] = 31142, + [SMALL_STATE(2196)] = 31259, + [SMALL_STATE(2197)] = 31376, + [SMALL_STATE(2198)] = 31493, + [SMALL_STATE(2199)] = 31610, + [SMALL_STATE(2200)] = 31727, + [SMALL_STATE(2201)] = 31841, + [SMALL_STATE(2202)] = 31903, + [SMALL_STATE(2203)] = 32019, + [SMALL_STATE(2204)] = 32081, + [SMALL_STATE(2205)] = 32152, + [SMALL_STATE(2206)] = 32229, + [SMALL_STATE(2207)] = 32298, + [SMALL_STATE(2208)] = 32369, + [SMALL_STATE(2209)] = 32472, + [SMALL_STATE(2210)] = 32543, + [SMALL_STATE(2211)] = 32609, + [SMALL_STATE(2212)] = 32669, + [SMALL_STATE(2213)] = 32729, + [SMALL_STATE(2214)] = 32789, + [SMALL_STATE(2215)] = 32851, + [SMALL_STATE(2216)] = 32911, + [SMALL_STATE(2217)] = 32977, + [SMALL_STATE(2218)] = 33043, + [SMALL_STATE(2219)] = 33105, + [SMALL_STATE(2220)] = 33165, + [SMALL_STATE(2221)] = 33231, + [SMALL_STATE(2222)] = 33295, + [SMALL_STATE(2223)] = 33359, + [SMALL_STATE(2224)] = 33419, + [SMALL_STATE(2225)] = 33479, + [SMALL_STATE(2226)] = 33541, + [SMALL_STATE(2227)] = 33605, + [SMALL_STATE(2228)] = 33664, + [SMALL_STATE(2229)] = 33725, + [SMALL_STATE(2230)] = 33784, + [SMALL_STATE(2231)] = 33909, + [SMALL_STATE(2232)] = 33994, + [SMALL_STATE(2233)] = 34089, + [SMALL_STATE(2234)] = 34198, + [SMALL_STATE(2235)] = 34323, + [SMALL_STATE(2236)] = 34390, + [SMALL_STATE(2237)] = 34455, + [SMALL_STATE(2238)] = 34514, + [SMALL_STATE(2239)] = 34631, + [SMALL_STATE(2240)] = 34756, + [SMALL_STATE(2241)] = 34815, + [SMALL_STATE(2242)] = 34932, + [SMALL_STATE(2243)] = 35057, + [SMALL_STATE(2244)] = 35116, + [SMALL_STATE(2245)] = 35175, + [SMALL_STATE(2246)] = 35234, + [SMALL_STATE(2247)] = 35351, + [SMALL_STATE(2248)] = 35410, + [SMALL_STATE(2249)] = 35487, + [SMALL_STATE(2250)] = 35604, + [SMALL_STATE(2251)] = 35665, + [SMALL_STATE(2252)] = 35724, + [SMALL_STATE(2253)] = 35783, + [SMALL_STATE(2254)] = 35842, + [SMALL_STATE(2255)] = 35901, + [SMALL_STATE(2256)] = 35960, + [SMALL_STATE(2257)] = 36019, + [SMALL_STATE(2258)] = 36078, + [SMALL_STATE(2259)] = 36137, + [SMALL_STATE(2260)] = 36196, + [SMALL_STATE(2261)] = 36255, + [SMALL_STATE(2262)] = 36316, + [SMALL_STATE(2263)] = 36375, + [SMALL_STATE(2264)] = 36434, + [SMALL_STATE(2265)] = 36493, + [SMALL_STATE(2266)] = 36552, + [SMALL_STATE(2267)] = 36611, + [SMALL_STATE(2268)] = 36670, + [SMALL_STATE(2269)] = 36729, + [SMALL_STATE(2270)] = 36788, + [SMALL_STATE(2271)] = 36853, + [SMALL_STATE(2272)] = 36918, + [SMALL_STATE(2273)] = 36997, + [SMALL_STATE(2274)] = 37062, + [SMALL_STATE(2275)] = 37121, + [SMALL_STATE(2276)] = 37246, + [SMALL_STATE(2277)] = 37305, + [SMALL_STATE(2278)] = 37364, + [SMALL_STATE(2279)] = 37423, + [SMALL_STATE(2280)] = 37488, + [SMALL_STATE(2281)] = 37553, + [SMALL_STATE(2282)] = 37618, + [SMALL_STATE(2283)] = 37677, + [SMALL_STATE(2284)] = 37736, + [SMALL_STATE(2285)] = 37795, + [SMALL_STATE(2286)] = 37854, + [SMALL_STATE(2287)] = 37913, + [SMALL_STATE(2288)] = 37972, + [SMALL_STATE(2289)] = 38031, + [SMALL_STATE(2290)] = 38090, + [SMALL_STATE(2291)] = 38149, + [SMALL_STATE(2292)] = 38208, + [SMALL_STATE(2293)] = 38267, + [SMALL_STATE(2294)] = 38328, + [SMALL_STATE(2295)] = 38387, + [SMALL_STATE(2296)] = 38448, + [SMALL_STATE(2297)] = 38509, + [SMALL_STATE(2298)] = 38568, + [SMALL_STATE(2299)] = 38627, + [SMALL_STATE(2300)] = 38722, + [SMALL_STATE(2301)] = 38781, + [SMALL_STATE(2302)] = 38840, + [SMALL_STATE(2303)] = 38899, + [SMALL_STATE(2304)] = 38958, + [SMALL_STATE(2305)] = 39017, + [SMALL_STATE(2306)] = 39076, + [SMALL_STATE(2307)] = 39135, + [SMALL_STATE(2308)] = 39234, + [SMALL_STATE(2309)] = 39293, + [SMALL_STATE(2310)] = 39410, + [SMALL_STATE(2311)] = 39473, + [SMALL_STATE(2312)] = 39590, + [SMALL_STATE(2313)] = 39685, + [SMALL_STATE(2314)] = 39744, + [SMALL_STATE(2315)] = 39803, + [SMALL_STATE(2316)] = 39890, + [SMALL_STATE(2317)] = 39975, + [SMALL_STATE(2318)] = 40078, + [SMALL_STATE(2319)] = 40137, + [SMALL_STATE(2320)] = 40238, + [SMALL_STATE(2321)] = 40363, + [SMALL_STATE(2322)] = 40422, + [SMALL_STATE(2323)] = 40539, + [SMALL_STATE(2324)] = 40664, + [SMALL_STATE(2325)] = 40723, + [SMALL_STATE(2326)] = 40782, + [SMALL_STATE(2327)] = 40841, + [SMALL_STATE(2328)] = 40900, + [SMALL_STATE(2329)] = 41007, + [SMALL_STATE(2330)] = 41066, + [SMALL_STATE(2331)] = 41171, + [SMALL_STATE(2332)] = 41230, + [SMALL_STATE(2333)] = 41289, + [SMALL_STATE(2334)] = 41406, + [SMALL_STATE(2335)] = 41465, + [SMALL_STATE(2336)] = 41524, + [SMALL_STATE(2337)] = 41589, + [SMALL_STATE(2338)] = 41648, + [SMALL_STATE(2339)] = 41713, + [SMALL_STATE(2340)] = 41774, + [SMALL_STATE(2341)] = 41833, + [SMALL_STATE(2342)] = 41914, + [SMALL_STATE(2343)] = 41973, + [SMALL_STATE(2344)] = 42090, + [SMALL_STATE(2345)] = 42149, + [SMALL_STATE(2346)] = 42212, + [SMALL_STATE(2347)] = 42277, + [SMALL_STATE(2348)] = 42338, + [SMALL_STATE(2349)] = 42399, + [SMALL_STATE(2350)] = 42458, + [SMALL_STATE(2351)] = 42575, + [SMALL_STATE(2352)] = 42634, + [SMALL_STATE(2353)] = 42751, + [SMALL_STATE(2354)] = 42810, + [SMALL_STATE(2355)] = 42869, + [SMALL_STATE(2356)] = 42986, + [SMALL_STATE(2357)] = 43103, + [SMALL_STATE(2358)] = 43194, + [SMALL_STATE(2359)] = 43311, + [SMALL_STATE(2360)] = 43376, + [SMALL_STATE(2361)] = 43435, + [SMALL_STATE(2362)] = 43494, + [SMALL_STATE(2363)] = 43553, + [SMALL_STATE(2364)] = 43612, + [SMALL_STATE(2365)] = 43671, + [SMALL_STATE(2366)] = 43732, + [SMALL_STATE(2367)] = 43797, + [SMALL_STATE(2368)] = 43914, + [SMALL_STATE(2369)] = 44039, + [SMALL_STATE(2370)] = 44098, + [SMALL_STATE(2371)] = 44159, + [SMALL_STATE(2372)] = 44284, + [SMALL_STATE(2373)] = 44343, + [SMALL_STATE(2374)] = 44402, + [SMALL_STATE(2375)] = 44461, + [SMALL_STATE(2376)] = 44548, + [SMALL_STATE(2377)] = 44643, + [SMALL_STATE(2378)] = 44738, + [SMALL_STATE(2379)] = 44801, + [SMALL_STATE(2380)] = 44868, + [SMALL_STATE(2381)] = 44927, + [SMALL_STATE(2382)] = 45022, + [SMALL_STATE(2383)] = 45085, + [SMALL_STATE(2384)] = 45152, + [SMALL_STATE(2385)] = 45211, + [SMALL_STATE(2386)] = 45270, + [SMALL_STATE(2387)] = 45329, + [SMALL_STATE(2388)] = 45390, + [SMALL_STATE(2389)] = 45448, + [SMALL_STATE(2390)] = 45506, + [SMALL_STATE(2391)] = 45594, + [SMALL_STATE(2392)] = 45652, + [SMALL_STATE(2393)] = 45768, + [SMALL_STATE(2394)] = 45854, + [SMALL_STATE(2395)] = 45912, + [SMALL_STATE(2396)] = 46000, + [SMALL_STATE(2397)] = 46058, + [SMALL_STATE(2398)] = 46116, + [SMALL_STATE(2399)] = 46232, + [SMALL_STATE(2400)] = 46290, + [SMALL_STATE(2401)] = 46392, + [SMALL_STATE(2402)] = 46466, + [SMALL_STATE(2403)] = 46586, + [SMALL_STATE(2404)] = 46644, + [SMALL_STATE(2405)] = 46702, + [SMALL_STATE(2406)] = 46760, + [SMALL_STATE(2407)] = 46848, + [SMALL_STATE(2408)] = 46964, + [SMALL_STATE(2409)] = 47048, + [SMALL_STATE(2410)] = 47136, + [SMALL_STATE(2411)] = 47252, + [SMALL_STATE(2412)] = 47338, + [SMALL_STATE(2413)] = 47458, + [SMALL_STATE(2414)] = 47522, + [SMALL_STATE(2415)] = 47580, + [SMALL_STATE(2416)] = 47696, + [SMALL_STATE(2417)] = 47816, + [SMALL_STATE(2418)] = 47936, + [SMALL_STATE(2419)] = 47994, + [SMALL_STATE(2420)] = 48052, + [SMALL_STATE(2421)] = 48110, + [SMALL_STATE(2422)] = 48168, + [SMALL_STATE(2423)] = 48284, + [SMALL_STATE(2424)] = 48368, + [SMALL_STATE(2425)] = 48426, + [SMALL_STATE(2426)] = 48484, + [SMALL_STATE(2427)] = 48542, + [SMALL_STATE(2428)] = 48600, + [SMALL_STATE(2429)] = 48720, + [SMALL_STATE(2430)] = 48840, + [SMALL_STATE(2431)] = 48898, + [SMALL_STATE(2432)] = 49014, + [SMALL_STATE(2433)] = 49072, + [SMALL_STATE(2434)] = 49148, + [SMALL_STATE(2435)] = 49234, + [SMALL_STATE(2436)] = 49292, + [SMALL_STATE(2437)] = 49350, + [SMALL_STATE(2438)] = 49428, + [SMALL_STATE(2439)] = 49486, + [SMALL_STATE(2440)] = 49572, + [SMALL_STATE(2441)] = 49630, + [SMALL_STATE(2442)] = 49688, + [SMALL_STATE(2443)] = 49746, + [SMALL_STATE(2444)] = 49804, + [SMALL_STATE(2445)] = 49862, + [SMALL_STATE(2446)] = 49920, + [SMALL_STATE(2447)] = 49978, + [SMALL_STATE(2448)] = 50078, + [SMALL_STATE(2449)] = 50198, + [SMALL_STATE(2450)] = 50256, + [SMALL_STATE(2451)] = 50314, + [SMALL_STATE(2452)] = 50372, + [SMALL_STATE(2453)] = 50430, + [SMALL_STATE(2454)] = 50488, + [SMALL_STATE(2455)] = 50546, + [SMALL_STATE(2456)] = 50664, + [SMALL_STATE(2457)] = 50762, + [SMALL_STATE(2458)] = 50820, + [SMALL_STATE(2459)] = 50878, + [SMALL_STATE(2460)] = 50936, + [SMALL_STATE(2461)] = 50994, + [SMALL_STATE(2462)] = 51110, + [SMALL_STATE(2463)] = 51168, + [SMALL_STATE(2464)] = 51284, + [SMALL_STATE(2465)] = 51374, + [SMALL_STATE(2466)] = 51434, + [SMALL_STATE(2467)] = 51554, + [SMALL_STATE(2468)] = 51674, + [SMALL_STATE(2469)] = 51794, + [SMALL_STATE(2470)] = 51914, + [SMALL_STATE(2471)] = 51980, + [SMALL_STATE(2472)] = 52080, + [SMALL_STATE(2473)] = 52200, + [SMALL_STATE(2474)] = 52258, + [SMALL_STATE(2475)] = 52320, + [SMALL_STATE(2476)] = 52378, + [SMALL_STATE(2477)] = 52446, + [SMALL_STATE(2478)] = 52566, + [SMALL_STATE(2479)] = 52686, + [SMALL_STATE(2480)] = 52806, + [SMALL_STATE(2481)] = 52864, + [SMALL_STATE(2482)] = 52922, + [SMALL_STATE(2483)] = 53038, + [SMALL_STATE(2484)] = 53154, + [SMALL_STATE(2485)] = 53216, + [SMALL_STATE(2486)] = 53332, + [SMALL_STATE(2487)] = 53448, + [SMALL_STATE(2488)] = 53516, + [SMALL_STATE(2489)] = 53584, + [SMALL_STATE(2490)] = 53642, + [SMALL_STATE(2491)] = 53702, + [SMALL_STATE(2492)] = 53800, + [SMALL_STATE(2493)] = 53916, + [SMALL_STATE(2494)] = 53974, + [SMALL_STATE(2495)] = 54090, + [SMALL_STATE(2496)] = 54148, + [SMALL_STATE(2497)] = 54206, + [SMALL_STATE(2498)] = 54264, + [SMALL_STATE(2499)] = 54380, + [SMALL_STATE(2500)] = 54496, + [SMALL_STATE(2501)] = 54556, + [SMALL_STATE(2502)] = 54614, + [SMALL_STATE(2503)] = 54672, + [SMALL_STATE(2504)] = 54788, + [SMALL_STATE(2505)] = 54904, + [SMALL_STATE(2506)] = 55024, + [SMALL_STATE(2507)] = 55140, + [SMALL_STATE(2508)] = 55228, + [SMALL_STATE(2509)] = 55286, + [SMALL_STATE(2510)] = 55402, + [SMALL_STATE(2511)] = 55488, + [SMALL_STATE(2512)] = 55604, + [SMALL_STATE(2513)] = 55662, + [SMALL_STATE(2514)] = 55720, + [SMALL_STATE(2515)] = 55778, + [SMALL_STATE(2516)] = 55836, + [SMALL_STATE(2517)] = 55944, + [SMALL_STATE(2518)] = 56002, + [SMALL_STATE(2519)] = 56096, + [SMALL_STATE(2520)] = 56190, + [SMALL_STATE(2521)] = 56306, + [SMALL_STATE(2522)] = 56364, + [SMALL_STATE(2523)] = 56422, + [SMALL_STATE(2524)] = 56538, + [SMALL_STATE(2525)] = 56646, + [SMALL_STATE(2526)] = 56704, + [SMALL_STATE(2527)] = 56762, + [SMALL_STATE(2528)] = 56848, + [SMALL_STATE(2529)] = 56954, + [SMALL_STATE(2530)] = 57012, + [SMALL_STATE(2531)] = 57116, + [SMALL_STATE(2532)] = 57174, + [SMALL_STATE(2533)] = 57232, + [SMALL_STATE(2534)] = 57322, + [SMALL_STATE(2535)] = 57438, + [SMALL_STATE(2536)] = 57496, + [SMALL_STATE(2537)] = 57612, + [SMALL_STATE(2538)] = 57728, + [SMALL_STATE(2539)] = 57804, + [SMALL_STATE(2540)] = 57920, + [SMALL_STATE(2541)] = 57978, + [SMALL_STATE(2542)] = 58036, + [SMALL_STATE(2543)] = 58116, + [SMALL_STATE(2544)] = 58174, + [SMALL_STATE(2545)] = 58234, + [SMALL_STATE(2546)] = 58292, + [SMALL_STATE(2547)] = 58412, + [SMALL_STATE(2548)] = 58470, + [SMALL_STATE(2549)] = 58528, + [SMALL_STATE(2550)] = 58586, + [SMALL_STATE(2551)] = 58644, + [SMALL_STATE(2552)] = 58730, + [SMALL_STATE(2553)] = 58792, + [SMALL_STATE(2554)] = 58852, + [SMALL_STATE(2555)] = 58910, + [SMALL_STATE(2556)] = 58996, + [SMALL_STATE(2557)] = 59080, + [SMALL_STATE(2558)] = 59196, + [SMALL_STATE(2559)] = 59254, + [SMALL_STATE(2560)] = 59356, + [SMALL_STATE(2561)] = 59414, + [SMALL_STATE(2562)] = 59532, + [SMALL_STATE(2563)] = 59612, + [SMALL_STATE(2564)] = 59690, + [SMALL_STATE(2565)] = 59794, + [SMALL_STATE(2566)] = 59852, + [SMALL_STATE(2567)] = 59910, + [SMALL_STATE(2568)] = 59998, + [SMALL_STATE(2569)] = 60056, + [SMALL_STATE(2570)] = 60140, + [SMALL_STATE(2571)] = 60204, + [SMALL_STATE(2572)] = 60310, + [SMALL_STATE(2573)] = 60374, + [SMALL_STATE(2574)] = 60494, + [SMALL_STATE(2575)] = 60580, + [SMALL_STATE(2576)] = 60700, + [SMALL_STATE(2577)] = 60820, + [SMALL_STATE(2578)] = 60939, + [SMALL_STATE(2579)] = 61006, + [SMALL_STATE(2580)] = 61125, + [SMALL_STATE(2581)] = 61210, + [SMALL_STATE(2582)] = 61327, + [SMALL_STATE(2583)] = 61388, + [SMALL_STATE(2584)] = 61449, + [SMALL_STATE(2585)] = 61564, + [SMALL_STATE(2586)] = 61629, + [SMALL_STATE(2587)] = 61744, + [SMALL_STATE(2588)] = 61863, + [SMALL_STATE(2589)] = 61982, + [SMALL_STATE(2590)] = 62063, + [SMALL_STATE(2591)] = 62124, + [SMALL_STATE(2592)] = 62241, + [SMALL_STATE(2593)] = 62356, + [SMALL_STATE(2594)] = 62419, + [SMALL_STATE(2595)] = 62476, + [SMALL_STATE(2596)] = 62595, + [SMALL_STATE(2597)] = 62680, + [SMALL_STATE(2598)] = 62795, + [SMALL_STATE(2599)] = 62854, + [SMALL_STATE(2600)] = 62969, + [SMALL_STATE(2601)] = 63084, + [SMALL_STATE(2602)] = 63203, + [SMALL_STATE(2603)] = 63260, + [SMALL_STATE(2604)] = 63375, + [SMALL_STATE(2605)] = 63456, + [SMALL_STATE(2606)] = 63521, + [SMALL_STATE(2607)] = 63636, + [SMALL_STATE(2608)] = 63717, + [SMALL_STATE(2609)] = 63832, + [SMALL_STATE(2610)] = 63947, + [SMALL_STATE(2611)] = 64028, + [SMALL_STATE(2612)] = 64143, + [SMALL_STATE(2613)] = 64258, + [SMALL_STATE(2614)] = 64373, + [SMALL_STATE(2615)] = 64448, + [SMALL_STATE(2616)] = 64563, + [SMALL_STATE(2617)] = 64646, + [SMALL_STATE(2618)] = 64723, + [SMALL_STATE(2619)] = 64782, + [SMALL_STATE(2620)] = 64847, + [SMALL_STATE(2621)] = 64904, + [SMALL_STATE(2622)] = 65023, + [SMALL_STATE(2623)] = 65140, + [SMALL_STATE(2624)] = 65259, + [SMALL_STATE(2625)] = 65322, + [SMALL_STATE(2626)] = 65441, + [SMALL_STATE(2627)] = 65560, + [SMALL_STATE(2628)] = 65623, + [SMALL_STATE(2629)] = 65742, + [SMALL_STATE(2630)] = 65861, + [SMALL_STATE(2631)] = 65980, + [SMALL_STATE(2632)] = 66099, + [SMALL_STATE(2633)] = 66218, + [SMALL_STATE(2634)] = 66337, + [SMALL_STATE(2635)] = 66454, + [SMALL_STATE(2636)] = 66541, + [SMALL_STATE(2637)] = 66602, + [SMALL_STATE(2638)] = 66717, + [SMALL_STATE(2639)] = 66798, + [SMALL_STATE(2640)] = 66855, + [SMALL_STATE(2641)] = 66912, + [SMALL_STATE(2642)] = 67031, + [SMALL_STATE(2643)] = 67088, + [SMALL_STATE(2644)] = 67207, + [SMALL_STATE(2645)] = 67322, + [SMALL_STATE(2646)] = 67437, + [SMALL_STATE(2647)] = 67556, + [SMALL_STATE(2648)] = 67645, + [SMALL_STATE(2649)] = 67708, + [SMALL_STATE(2650)] = 67823, + [SMALL_STATE(2651)] = 67942, + [SMALL_STATE(2652)] = 68061, + [SMALL_STATE(2653)] = 68140, + [SMALL_STATE(2654)] = 68259, + [SMALL_STATE(2655)] = 68376, + [SMALL_STATE(2656)] = 68495, + [SMALL_STATE(2657)] = 68614, + [SMALL_STATE(2658)] = 68733, + [SMALL_STATE(2659)] = 68836, + [SMALL_STATE(2660)] = 68903, + [SMALL_STATE(2661)] = 68962, + [SMALL_STATE(2662)] = 69081, + [SMALL_STATE(2663)] = 69140, + [SMALL_STATE(2664)] = 69205, + [SMALL_STATE(2665)] = 69270, + [SMALL_STATE(2666)] = 69333, + [SMALL_STATE(2667)] = 69438, + [SMALL_STATE(2668)] = 69553, + [SMALL_STATE(2669)] = 69638, + [SMALL_STATE(2670)] = 69753, + [SMALL_STATE(2671)] = 69872, + [SMALL_STATE(2672)] = 69979, + [SMALL_STATE(2673)] = 70076, + [SMALL_STATE(2674)] = 70175, + [SMALL_STATE(2675)] = 70276, + [SMALL_STATE(2676)] = 70369, + [SMALL_STATE(2677)] = 70452, + [SMALL_STATE(2678)] = 70537, + [SMALL_STATE(2679)] = 70656, + [SMALL_STATE(2680)] = 70775, + [SMALL_STATE(2681)] = 70840, + [SMALL_STATE(2682)] = 70959, + [SMALL_STATE(2683)] = 71021, + [SMALL_STATE(2684)] = 71077, + [SMALL_STATE(2685)] = 71133, + [SMALL_STATE(2686)] = 71189, + [SMALL_STATE(2687)] = 71245, + [SMALL_STATE(2688)] = 71301, + [SMALL_STATE(2689)] = 71357, + [SMALL_STATE(2690)] = 71413, + [SMALL_STATE(2691)] = 71469, + [SMALL_STATE(2692)] = 71525, + [SMALL_STATE(2693)] = 71581, + [SMALL_STATE(2694)] = 71637, + [SMALL_STATE(2695)] = 71693, + [SMALL_STATE(2696)] = 71807, + [SMALL_STATE(2697)] = 71865, + [SMALL_STATE(2698)] = 71927, + [SMALL_STATE(2699)] = 71991, + [SMALL_STATE(2700)] = 72105, + [SMALL_STATE(2701)] = 72167, + [SMALL_STATE(2702)] = 72229, + [SMALL_STATE(2703)] = 72285, + [SMALL_STATE(2704)] = 72341, + [SMALL_STATE(2705)] = 72431, + [SMALL_STATE(2706)] = 72487, + [SMALL_STATE(2707)] = 72543, + [SMALL_STATE(2708)] = 72599, + [SMALL_STATE(2709)] = 72669, + [SMALL_STATE(2710)] = 72725, + [SMALL_STATE(2711)] = 72785, + [SMALL_STATE(2712)] = 72847, + [SMALL_STATE(2713)] = 72903, + [SMALL_STATE(2714)] = 72965, + [SMALL_STATE(2715)] = 73061, + [SMALL_STATE(2716)] = 73117, + [SMALL_STATE(2717)] = 73199, + [SMALL_STATE(2718)] = 73255, + [SMALL_STATE(2719)] = 73313, + [SMALL_STATE(2720)] = 73371, + [SMALL_STATE(2721)] = 73427, + [SMALL_STATE(2722)] = 73489, + [SMALL_STATE(2723)] = 73545, + [SMALL_STATE(2724)] = 73603, + [SMALL_STATE(2725)] = 73681, + [SMALL_STATE(2726)] = 73739, + [SMALL_STATE(2727)] = 73795, + [SMALL_STATE(2728)] = 73875, + [SMALL_STATE(2729)] = 73931, + [SMALL_STATE(2730)] = 73987, + [SMALL_STATE(2731)] = 74043, + [SMALL_STATE(2732)] = 74099, + [SMALL_STATE(2733)] = 74155, + [SMALL_STATE(2734)] = 74211, + [SMALL_STATE(2735)] = 74267, + [SMALL_STATE(2736)] = 74323, + [SMALL_STATE(2737)] = 74379, + [SMALL_STATE(2738)] = 74435, + [SMALL_STATE(2739)] = 74491, + [SMALL_STATE(2740)] = 74553, + [SMALL_STATE(2741)] = 74669, + [SMALL_STATE(2742)] = 74785, + [SMALL_STATE(2743)] = 74847, + [SMALL_STATE(2744)] = 74909, + [SMALL_STATE(2745)] = 74973, + [SMALL_STATE(2746)] = 75055, + [SMALL_STATE(2747)] = 75117, + [SMALL_STATE(2748)] = 75173, + [SMALL_STATE(2749)] = 75231, + [SMALL_STATE(2750)] = 75287, + [SMALL_STATE(2751)] = 75349, + [SMALL_STATE(2752)] = 75463, + [SMALL_STATE(2753)] = 75519, + [SMALL_STATE(2754)] = 75581, + [SMALL_STATE(2755)] = 75639, + [SMALL_STATE(2756)] = 75707, + [SMALL_STATE(2757)] = 75763, + [SMALL_STATE(2758)] = 75845, + [SMALL_STATE(2759)] = 75959, + [SMALL_STATE(2760)] = 76073, + [SMALL_STATE(2761)] = 76187, + [SMALL_STATE(2762)] = 76301, + [SMALL_STATE(2763)] = 76415, + [SMALL_STATE(2764)] = 76471, + [SMALL_STATE(2765)] = 76585, + [SMALL_STATE(2766)] = 76673, + [SMALL_STATE(2767)] = 76751, + [SMALL_STATE(2768)] = 76865, + [SMALL_STATE(2769)] = 76967, + [SMALL_STATE(2770)] = 77023, + [SMALL_STATE(2771)] = 77127, + [SMALL_STATE(2772)] = 77211, + [SMALL_STATE(2773)] = 77267, + [SMALL_STATE(2774)] = 77365, + [SMALL_STATE(2775)] = 77421, + [SMALL_STATE(2776)] = 77477, + [SMALL_STATE(2777)] = 77577, + [SMALL_STATE(2778)] = 77633, + [SMALL_STATE(2779)] = 77715, + [SMALL_STATE(2780)] = 77797, + [SMALL_STATE(2781)] = 77875, + [SMALL_STATE(2782)] = 77931, + [SMALL_STATE(2783)] = 78045, + [SMALL_STATE(2784)] = 78115, + [SMALL_STATE(2785)] = 78229, + [SMALL_STATE(2786)] = 78343, + [SMALL_STATE(2787)] = 78457, + [SMALL_STATE(2788)] = 78513, + [SMALL_STATE(2789)] = 78569, + [SMALL_STATE(2790)] = 78683, + [SMALL_STATE(2791)] = 78797, + [SMALL_STATE(2792)] = 78885, + [SMALL_STATE(2793)] = 78965, + [SMALL_STATE(2794)] = 79039, + [SMALL_STATE(2795)] = 79095, + [SMALL_STATE(2796)] = 79173, + [SMALL_STATE(2797)] = 79229, + [SMALL_STATE(2798)] = 79331, + [SMALL_STATE(2799)] = 79435, + [SMALL_STATE(2800)] = 79491, + [SMALL_STATE(2801)] = 79575, + [SMALL_STATE(2802)] = 79671, + [SMALL_STATE(2803)] = 79769, + [SMALL_STATE(2804)] = 79869, + [SMALL_STATE(2805)] = 79951, + [SMALL_STATE(2806)] = 80033, + [SMALL_STATE(2807)] = 80117, + [SMALL_STATE(2808)] = 80173, + [SMALL_STATE(2809)] = 80231, + [SMALL_STATE(2810)] = 80315, + [SMALL_STATE(2811)] = 80407, + [SMALL_STATE(2812)] = 80499, + [SMALL_STATE(2813)] = 80605, + [SMALL_STATE(2814)] = 80661, + [SMALL_STATE(2815)] = 80775, + [SMALL_STATE(2816)] = 80881, + [SMALL_STATE(2817)] = 80995, + [SMALL_STATE(2818)] = 81109, + [SMALL_STATE(2819)] = 81165, + [SMALL_STATE(2820)] = 81221, + [SMALL_STATE(2821)] = 81277, + [SMALL_STATE(2822)] = 81391, + [SMALL_STATE(2823)] = 81505, + [SMALL_STATE(2824)] = 81619, + [SMALL_STATE(2825)] = 81735, + [SMALL_STATE(2826)] = 81849, + [SMALL_STATE(2827)] = 81963, + [SMALL_STATE(2828)] = 82077, + [SMALL_STATE(2829)] = 82193, + [SMALL_STATE(2830)] = 82249, + [SMALL_STATE(2831)] = 82339, + [SMALL_STATE(2832)] = 82453, + [SMALL_STATE(2833)] = 82509, + [SMALL_STATE(2834)] = 82623, + [SMALL_STATE(2835)] = 82737, + [SMALL_STATE(2836)] = 82853, + [SMALL_STATE(2837)] = 82967, + [SMALL_STATE(2838)] = 83081, + [SMALL_STATE(2839)] = 83143, + [SMALL_STATE(2840)] = 83257, + [SMALL_STATE(2841)] = 83313, + [SMALL_STATE(2842)] = 83375, + [SMALL_STATE(2843)] = 83465, + [SMALL_STATE(2844)] = 83555, + [SMALL_STATE(2845)] = 83613, + [SMALL_STATE(2846)] = 83671, + [SMALL_STATE(2847)] = 83733, + [SMALL_STATE(2848)] = 83795, + [SMALL_STATE(2849)] = 83851, + [SMALL_STATE(2850)] = 83913, + [SMALL_STATE(2851)] = 83973, + [SMALL_STATE(2852)] = 84029, + [SMALL_STATE(2853)] = 84085, + [SMALL_STATE(2854)] = 84141, + [SMALL_STATE(2855)] = 84197, + [SMALL_STATE(2856)] = 84253, + [SMALL_STATE(2857)] = 84309, + [SMALL_STATE(2858)] = 84367, + [SMALL_STATE(2859)] = 84423, + [SMALL_STATE(2860)] = 84479, + [SMALL_STATE(2861)] = 84593, + [SMALL_STATE(2862)] = 84707, + [SMALL_STATE(2863)] = 84775, + [SMALL_STATE(2864)] = 84843, + [SMALL_STATE(2865)] = 84899, + [SMALL_STATE(2866)] = 84955, + [SMALL_STATE(2867)] = 85013, + [SMALL_STATE(2868)] = 85069, + [SMALL_STATE(2869)] = 85125, + [SMALL_STATE(2870)] = 85185, + [SMALL_STATE(2871)] = 85241, + [SMALL_STATE(2872)] = 85297, + [SMALL_STATE(2873)] = 85353, + [SMALL_STATE(2874)] = 85409, + [SMALL_STATE(2875)] = 85485, + [SMALL_STATE(2876)] = 85553, + [SMALL_STATE(2877)] = 85635, + [SMALL_STATE(2878)] = 85697, + [SMALL_STATE(2879)] = 85811, + [SMALL_STATE(2880)] = 85879, + [SMALL_STATE(2881)] = 85941, + [SMALL_STATE(2882)] = 86005, + [SMALL_STATE(2883)] = 86121, + [SMALL_STATE(2884)] = 86195, + [SMALL_STATE(2885)] = 86253, + [SMALL_STATE(2886)] = 86309, + [SMALL_STATE(2887)] = 86365, + [SMALL_STATE(2888)] = 86425, + [SMALL_STATE(2889)] = 86481, + [SMALL_STATE(2890)] = 86559, + [SMALL_STATE(2891)] = 86615, + [SMALL_STATE(2892)] = 86683, + [SMALL_STATE(2893)] = 86739, + [SMALL_STATE(2894)] = 86807, + [SMALL_STATE(2895)] = 86889, + [SMALL_STATE(2896)] = 87003, + [SMALL_STATE(2897)] = 87083, + [SMALL_STATE(2898)] = 87139, + [SMALL_STATE(2899)] = 87197, + [SMALL_STATE(2900)] = 87253, + [SMALL_STATE(2901)] = 87329, + [SMALL_STATE(2902)] = 87407, + [SMALL_STATE(2903)] = 87521, + [SMALL_STATE(2904)] = 87603, + [SMALL_STATE(2905)] = 87693, + [SMALL_STATE(2906)] = 87783, + [SMALL_STATE(2907)] = 87865, + [SMALL_STATE(2908)] = 87947, + [SMALL_STATE(2909)] = 88015, + [SMALL_STATE(2910)] = 88073, + [SMALL_STATE(2911)] = 88187, + [SMALL_STATE(2912)] = 88245, + [SMALL_STATE(2913)] = 88359, + [SMALL_STATE(2914)] = 88449, + [SMALL_STATE(2915)] = 88505, + [SMALL_STATE(2916)] = 88573, + [SMALL_STATE(2917)] = 88631, + [SMALL_STATE(2918)] = 88709, + [SMALL_STATE(2919)] = 88770, + [SMALL_STATE(2920)] = 88851, + [SMALL_STATE(2921)] = 88924, + [SMALL_STATE(2922)] = 88987, + [SMALL_STATE(2923)] = 89044, + [SMALL_STATE(2924)] = 89117, + [SMALL_STATE(2925)] = 89174, + [SMALL_STATE(2926)] = 89229, + [SMALL_STATE(2927)] = 89312, + [SMALL_STATE(2928)] = 89387, + [SMALL_STATE(2929)] = 89444, + [SMALL_STATE(2930)] = 89503, + [SMALL_STATE(2931)] = 89616, + [SMALL_STATE(2932)] = 89673, + [SMALL_STATE(2933)] = 89728, + [SMALL_STATE(2934)] = 89783, + [SMALL_STATE(2935)] = 89896, + [SMALL_STATE(2936)] = 89977, + [SMALL_STATE(2937)] = 90036, + [SMALL_STATE(2938)] = 90095, + [SMALL_STATE(2939)] = 90168, + [SMALL_STATE(2940)] = 90243, + [SMALL_STATE(2941)] = 90298, + [SMALL_STATE(2942)] = 90411, + [SMALL_STATE(2943)] = 90488, + [SMALL_STATE(2944)] = 90601, + [SMALL_STATE(2945)] = 90656, + [SMALL_STATE(2946)] = 90769, + [SMALL_STATE(2947)] = 90850, + [SMALL_STATE(2948)] = 90933, + [SMALL_STATE(2949)] = 90990, + [SMALL_STATE(2950)] = 91065, + [SMALL_STATE(2951)] = 91138, + [SMALL_STATE(2952)] = 91219, + [SMALL_STATE(2953)] = 91332, + [SMALL_STATE(2954)] = 91445, + [SMALL_STATE(2955)] = 91506, + [SMALL_STATE(2956)] = 91565, + [SMALL_STATE(2957)] = 91624, + [SMALL_STATE(2958)] = 91679, + [SMALL_STATE(2959)] = 91792, + [SMALL_STATE(2960)] = 91865, + [SMALL_STATE(2961)] = 91920, + [SMALL_STATE(2962)] = 91979, + [SMALL_STATE(2963)] = 92054, + [SMALL_STATE(2964)] = 92113, + [SMALL_STATE(2965)] = 92172, + [SMALL_STATE(2966)] = 92245, + [SMALL_STATE(2967)] = 92300, + [SMALL_STATE(2968)] = 92355, + [SMALL_STATE(2969)] = 92410, + [SMALL_STATE(2970)] = 92465, + [SMALL_STATE(2971)] = 92578, + [SMALL_STATE(2972)] = 92691, + [SMALL_STATE(2973)] = 92746, + [SMALL_STATE(2974)] = 92805, + [SMALL_STATE(2975)] = 92888, + [SMALL_STATE(2976)] = 92943, + [SMALL_STATE(2977)] = 93018, + [SMALL_STATE(2978)] = 93073, + [SMALL_STATE(2979)] = 93128, + [SMALL_STATE(2980)] = 93185, + [SMALL_STATE(2981)] = 93244, + [SMALL_STATE(2982)] = 93307, + [SMALL_STATE(2983)] = 93362, + [SMALL_STATE(2984)] = 93417, + [SMALL_STATE(2985)] = 93476, + [SMALL_STATE(2986)] = 93531, + [SMALL_STATE(2987)] = 93586, + [SMALL_STATE(2988)] = 93641, + [SMALL_STATE(2989)] = 93716, + [SMALL_STATE(2990)] = 93771, + [SMALL_STATE(2991)] = 93844, + [SMALL_STATE(2992)] = 93901, + [SMALL_STATE(2993)] = 93974, + [SMALL_STATE(2994)] = 94031, + [SMALL_STATE(2995)] = 94088, + [SMALL_STATE(2996)] = 94181, + [SMALL_STATE(2997)] = 94238, + [SMALL_STATE(2998)] = 94311, + [SMALL_STATE(2999)] = 94366, + [SMALL_STATE(3000)] = 94423, + [SMALL_STATE(3001)] = 94482, + [SMALL_STATE(3002)] = 94539, + [SMALL_STATE(3003)] = 94612, + [SMALL_STATE(3004)] = 94687, + [SMALL_STATE(3005)] = 94768, + [SMALL_STATE(3006)] = 94831, + [SMALL_STATE(3007)] = 94944, + [SMALL_STATE(3008)] = 94999, + [SMALL_STATE(3009)] = 95054, + [SMALL_STATE(3010)] = 95127, + [SMALL_STATE(3011)] = 95208, + [SMALL_STATE(3012)] = 95291, + [SMALL_STATE(3013)] = 95346, + [SMALL_STATE(3014)] = 95421, + [SMALL_STATE(3015)] = 95488, + [SMALL_STATE(3016)] = 95543, + [SMALL_STATE(3017)] = 95598, + [SMALL_STATE(3018)] = 95653, + [SMALL_STATE(3019)] = 95726, + [SMALL_STATE(3020)] = 95801, + [SMALL_STATE(3021)] = 95858, + [SMALL_STATE(3022)] = 95917, + [SMALL_STATE(3023)] = 95972, + [SMALL_STATE(3024)] = 96031, + [SMALL_STATE(3025)] = 96086, + [SMALL_STATE(3026)] = 96141, + [SMALL_STATE(3027)] = 96214, + [SMALL_STATE(3028)] = 96281, + [SMALL_STATE(3029)] = 96336, + [SMALL_STATE(3030)] = 96449, + [SMALL_STATE(3031)] = 96512, + [SMALL_STATE(3032)] = 96567, + [SMALL_STATE(3033)] = 96680, + [SMALL_STATE(3034)] = 96793, + [SMALL_STATE(3035)] = 96898, + [SMALL_STATE(3036)] = 96953, + [SMALL_STATE(3037)] = 97008, + [SMALL_STATE(3038)] = 97099, + [SMALL_STATE(3039)] = 97214, + [SMALL_STATE(3040)] = 97269, + [SMALL_STATE(3041)] = 97326, + [SMALL_STATE(3042)] = 97389, + [SMALL_STATE(3043)] = 97444, + [SMALL_STATE(3044)] = 97499, + [SMALL_STATE(3045)] = 97554, + [SMALL_STATE(3046)] = 97609, + [SMALL_STATE(3047)] = 97692, + [SMALL_STATE(3048)] = 97751, + [SMALL_STATE(3049)] = 97832, + [SMALL_STATE(3050)] = 97891, + [SMALL_STATE(3051)] = 97952, + [SMALL_STATE(3052)] = 98015, + [SMALL_STATE(3053)] = 98098, + [SMALL_STATE(3054)] = 98153, + [SMALL_STATE(3055)] = 98212, + [SMALL_STATE(3056)] = 98293, + [SMALL_STATE(3057)] = 98392, + [SMALL_STATE(3058)] = 98447, + [SMALL_STATE(3059)] = 98502, + [SMALL_STATE(3060)] = 98557, + [SMALL_STATE(3061)] = 98612, + [SMALL_STATE(3062)] = 98679, + [SMALL_STATE(3063)] = 98734, + [SMALL_STATE(3064)] = 98793, + [SMALL_STATE(3065)] = 98866, + [SMALL_STATE(3066)] = 98921, + [SMALL_STATE(3067)] = 99018, + [SMALL_STATE(3068)] = 99073, + [SMALL_STATE(3069)] = 99186, + [SMALL_STATE(3070)] = 99241, + [SMALL_STATE(3071)] = 99336, + [SMALL_STATE(3072)] = 99419, + [SMALL_STATE(3073)] = 99474, + [SMALL_STATE(3074)] = 99529, + [SMALL_STATE(3075)] = 99604, + [SMALL_STATE(3076)] = 99659, + [SMALL_STATE(3077)] = 99720, + [SMALL_STATE(3078)] = 99833, + [SMALL_STATE(3079)] = 99946, + [SMALL_STATE(3080)] = 100049, + [SMALL_STATE(3081)] = 100150, + [SMALL_STATE(3082)] = 100225, + [SMALL_STATE(3083)] = 100298, + [SMALL_STATE(3084)] = 100375, + [SMALL_STATE(3085)] = 100488, + [SMALL_STATE(3086)] = 100543, + [SMALL_STATE(3087)] = 100602, + [SMALL_STATE(3088)] = 100657, + [SMALL_STATE(3089)] = 100720, + [SMALL_STATE(3090)] = 100785, + [SMALL_STATE(3091)] = 100858, + [SMALL_STATE(3092)] = 100945, + [SMALL_STATE(3093)] = 101058, + [SMALL_STATE(3094)] = 101171, + [SMALL_STATE(3095)] = 101226, + [SMALL_STATE(3096)] = 101339, + [SMALL_STATE(3097)] = 101412, + [SMALL_STATE(3098)] = 101467, + [SMALL_STATE(3099)] = 101542, + [SMALL_STATE(3100)] = 101655, + [SMALL_STATE(3101)] = 101768, + [SMALL_STATE(3102)] = 101881, + [SMALL_STATE(3103)] = 101936, + [SMALL_STATE(3104)] = 101991, + [SMALL_STATE(3105)] = 102104, + [SMALL_STATE(3106)] = 102159, + [SMALL_STATE(3107)] = 102272, + [SMALL_STATE(3108)] = 102359, + [SMALL_STATE(3109)] = 102436, + [SMALL_STATE(3110)] = 102537, + [SMALL_STATE(3111)] = 102640, + [SMALL_STATE(3112)] = 102699, + [SMALL_STATE(3113)] = 102754, + [SMALL_STATE(3114)] = 102837, + [SMALL_STATE(3115)] = 102932, + [SMALL_STATE(3116)] = 103029, + [SMALL_STATE(3117)] = 103110, + [SMALL_STATE(3118)] = 103175, + [SMALL_STATE(3119)] = 103230, + [SMALL_STATE(3120)] = 103343, + [SMALL_STATE(3121)] = 103442, + [SMALL_STATE(3122)] = 103501, + [SMALL_STATE(3123)] = 103582, + [SMALL_STATE(3124)] = 103657, + [SMALL_STATE(3125)] = 103770, + [SMALL_STATE(3126)] = 103843, + [SMALL_STATE(3127)] = 103956, + [SMALL_STATE(3128)] = 104031, + [SMALL_STATE(3129)] = 104144, + [SMALL_STATE(3130)] = 104227, + [SMALL_STATE(3131)] = 104340, + [SMALL_STATE(3132)] = 104431, + [SMALL_STATE(3133)] = 104544, + [SMALL_STATE(3134)] = 104649, + [SMALL_STATE(3135)] = 104762, + [SMALL_STATE(3136)] = 104845, + [SMALL_STATE(3137)] = 104918, + [SMALL_STATE(3138)] = 105031, + [SMALL_STATE(3139)] = 105090, + [SMALL_STATE(3140)] = 105147, + [SMALL_STATE(3141)] = 105202, + [SMALL_STATE(3142)] = 105277, + [SMALL_STATE(3143)] = 105350, + [SMALL_STATE(3144)] = 105405, + [SMALL_STATE(3145)] = 105518, + [SMALL_STATE(3146)] = 105577, + [SMALL_STATE(3147)] = 105636, + [SMALL_STATE(3148)] = 105695, + [SMALL_STATE(3149)] = 105750, + [SMALL_STATE(3150)] = 105809, + [SMALL_STATE(3151)] = 105884, + [SMALL_STATE(3152)] = 105997, + [SMALL_STATE(3153)] = 106052, + [SMALL_STATE(3154)] = 106119, + [SMALL_STATE(3155)] = 106186, + [SMALL_STATE(3156)] = 106253, + [SMALL_STATE(3157)] = 106326, + [SMALL_STATE(3158)] = 106393, + [SMALL_STATE(3159)] = 106460, + [SMALL_STATE(3160)] = 106573, + [SMALL_STATE(3161)] = 106628, + [SMALL_STATE(3162)] = 106695, + [SMALL_STATE(3163)] = 106752, + [SMALL_STATE(3164)] = 106865, + [SMALL_STATE(3165)] = 106932, + [SMALL_STATE(3166)] = 106999, + [SMALL_STATE(3167)] = 107064, + [SMALL_STATE(3168)] = 107119, + [SMALL_STATE(3169)] = 107174, + [SMALL_STATE(3170)] = 107239, + [SMALL_STATE(3171)] = 107298, + [SMALL_STATE(3172)] = 107357, + [SMALL_STATE(3173)] = 107420, + [SMALL_STATE(3174)] = 107533, + [SMALL_STATE(3175)] = 107646, + [SMALL_STATE(3176)] = 107707, + [SMALL_STATE(3177)] = 107768, + [SMALL_STATE(3178)] = 107849, + [SMALL_STATE(3179)] = 107932, + [SMALL_STATE(3180)] = 108007, + [SMALL_STATE(3181)] = 108070, + [SMALL_STATE(3182)] = 108129, + [SMALL_STATE(3183)] = 108188, + [SMALL_STATE(3184)] = 108251, + [SMALL_STATE(3185)] = 108326, + [SMALL_STATE(3186)] = 108399, + [SMALL_STATE(3187)] = 108461, + [SMALL_STATE(3188)] = 108571, + [SMALL_STATE(3189)] = 108639, + [SMALL_STATE(3190)] = 108749, + [SMALL_STATE(3191)] = 108811, + [SMALL_STATE(3192)] = 108921, + [SMALL_STATE(3193)] = 108981, + [SMALL_STATE(3194)] = 109043, + [SMALL_STATE(3195)] = 109111, + [SMALL_STATE(3196)] = 109171, + [SMALL_STATE(3197)] = 109239, + [SMALL_STATE(3198)] = 109307, + [SMALL_STATE(3199)] = 109375, + [SMALL_STATE(3200)] = 109443, + [SMALL_STATE(3201)] = 109519, + [SMALL_STATE(3202)] = 109595, + [SMALL_STATE(3203)] = 109663, + [SMALL_STATE(3204)] = 109773, + [SMALL_STATE(3205)] = 109841, + [SMALL_STATE(3206)] = 109951, + [SMALL_STATE(3207)] = 110011, + [SMALL_STATE(3208)] = 110091, + [SMALL_STATE(3209)] = 110173, + [SMALL_STATE(3210)] = 110247, + [SMALL_STATE(3211)] = 110357, + [SMALL_STATE(3212)] = 110425, + [SMALL_STATE(3213)] = 110497, + [SMALL_STATE(3214)] = 110607, + [SMALL_STATE(3215)] = 110693, + [SMALL_STATE(3216)] = 110769, + [SMALL_STATE(3217)] = 110827, + [SMALL_STATE(3218)] = 110889, + [SMALL_STATE(3219)] = 110977, + [SMALL_STATE(3220)] = 111033, + [SMALL_STATE(3221)] = 111101, + [SMALL_STATE(3222)] = 111157, + [SMALL_STATE(3223)] = 111233, + [SMALL_STATE(3224)] = 111301, + [SMALL_STATE(3225)] = 111403, + [SMALL_STATE(3226)] = 111471, + [SMALL_STATE(3227)] = 111529, + [SMALL_STATE(3228)] = 111597, + [SMALL_STATE(3229)] = 111707, + [SMALL_STATE(3230)] = 111789, + [SMALL_STATE(3231)] = 111857, + [SMALL_STATE(3232)] = 111957, + [SMALL_STATE(3233)] = 112025, + [SMALL_STATE(3234)] = 112093, + [SMALL_STATE(3235)] = 112169, + [SMALL_STATE(3236)] = 112263, + [SMALL_STATE(3237)] = 112339, + [SMALL_STATE(3238)] = 112401, + [SMALL_STATE(3239)] = 112469, + [SMALL_STATE(3240)] = 112565, + [SMALL_STATE(3241)] = 112633, + [SMALL_STATE(3242)] = 112731, + [SMALL_STATE(3243)] = 112841, + [SMALL_STATE(3244)] = 112951, + [SMALL_STATE(3245)] = 113019, + [SMALL_STATE(3246)] = 113079, + [SMALL_STATE(3247)] = 113189, + [SMALL_STATE(3248)] = 113265, + [SMALL_STATE(3249)] = 113375, + [SMALL_STATE(3250)] = 113443, + [SMALL_STATE(3251)] = 113527, + [SMALL_STATE(3252)] = 113595, + [SMALL_STATE(3253)] = 113663, + [SMALL_STATE(3254)] = 113773, + [SMALL_STATE(3255)] = 113883, + [SMALL_STATE(3256)] = 113993, + [SMALL_STATE(3257)] = 114103, + [SMALL_STATE(3258)] = 114171, + [SMALL_STATE(3259)] = 114275, + [SMALL_STATE(3260)] = 114365, + [SMALL_STATE(3261)] = 114447, + [SMALL_STATE(3262)] = 114503, + [SMALL_STATE(3263)] = 114565, + [SMALL_STATE(3264)] = 114641, + [SMALL_STATE(3265)] = 114721, + [SMALL_STATE(3266)] = 114777, + [SMALL_STATE(3267)] = 114832, + [SMALL_STATE(3268)] = 114907, + [SMALL_STATE(3269)] = 114966, + [SMALL_STATE(3270)] = 115025, + [SMALL_STATE(3271)] = 115080, + [SMALL_STATE(3272)] = 115139, + [SMALL_STATE(3273)] = 115194, + [SMALL_STATE(3274)] = 115253, + [SMALL_STATE(3275)] = 115330, + [SMALL_STATE(3276)] = 115389, + [SMALL_STATE(3277)] = 115462, + [SMALL_STATE(3278)] = 115517, + [SMALL_STATE(3279)] = 115586, + [SMALL_STATE(3280)] = 115679, + [SMALL_STATE(3281)] = 115734, + [SMALL_STATE(3282)] = 115789, + [SMALL_STATE(3283)] = 115844, + [SMALL_STATE(3284)] = 115899, + [SMALL_STATE(3285)] = 115972, + [SMALL_STATE(3286)] = 116027, + [SMALL_STATE(3287)] = 116082, + [SMALL_STATE(3288)] = 116141, + [SMALL_STATE(3289)] = 116196, + [SMALL_STATE(3290)] = 116269, + [SMALL_STATE(3291)] = 116328, + [SMALL_STATE(3292)] = 116397, + [SMALL_STATE(3293)] = 116456, + [SMALL_STATE(3294)] = 116535, + [SMALL_STATE(3295)] = 116604, + [SMALL_STATE(3296)] = 116679, + [SMALL_STATE(3297)] = 116752, + [SMALL_STATE(3298)] = 116821, + [SMALL_STATE(3299)] = 116882, + [SMALL_STATE(3300)] = 116955, + [SMALL_STATE(3301)] = 117010, + [SMALL_STATE(3302)] = 117065, + [SMALL_STATE(3303)] = 117138, + [SMALL_STATE(3304)] = 117197, + [SMALL_STATE(3305)] = 117266, + [SMALL_STATE(3306)] = 117325, + [SMALL_STATE(3307)] = 117391, + [SMALL_STATE(3308)] = 117453, + [SMALL_STATE(3309)] = 117511, + [SMALL_STATE(3310)] = 117573, + [SMALL_STATE(3311)] = 117635, + [SMALL_STATE(3312)] = 117697, + [SMALL_STATE(3313)] = 117759, + [SMALL_STATE(3314)] = 117821, + [SMALL_STATE(3315)] = 117879, + [SMALL_STATE(3316)] = 117945, + [SMALL_STATE(3317)] = 118007, + [SMALL_STATE(3318)] = 118073, + [SMALL_STATE(3319)] = 118139, + [SMALL_STATE(3320)] = 118201, + [SMALL_STATE(3321)] = 118271, + [SMALL_STATE(3322)] = 118337, + [SMALL_STATE(3323)] = 118405, + [SMALL_STATE(3324)] = 118459, + [SMALL_STATE(3325)] = 118531, + [SMALL_STATE(3326)] = 118593, + [SMALL_STATE(3327)] = 118651, + [SMALL_STATE(3328)] = 118713, + [SMALL_STATE(3329)] = 118779, + [SMALL_STATE(3330)] = 118845, + [SMALL_STATE(3331)] = 118907, + [SMALL_STATE(3332)] = 118965, + [SMALL_STATE(3333)] = 119031, + [SMALL_STATE(3334)] = 119089, + [SMALL_STATE(3335)] = 119151, + [SMALL_STATE(3336)] = 119221, + [SMALL_STATE(3337)] = 119283, + [SMALL_STATE(3338)] = 119349, + [SMALL_STATE(3339)] = 119403, + [SMALL_STATE(3340)] = 119457, + [SMALL_STATE(3341)] = 119523, + [SMALL_STATE(3342)] = 119589, + [SMALL_STATE(3343)] = 119643, + [SMALL_STATE(3344)] = 119709, + [SMALL_STATE(3345)] = 119775, + [SMALL_STATE(3346)] = 119841, + [SMALL_STATE(3347)] = 119907, + [SMALL_STATE(3348)] = 119969, + [SMALL_STATE(3349)] = 120035, + [SMALL_STATE(3350)] = 120088, + [SMALL_STATE(3351)] = 120141, + [SMALL_STATE(3352)] = 120194, + [SMALL_STATE(3353)] = 120247, + [SMALL_STATE(3354)] = 120312, + [SMALL_STATE(3355)] = 120365, + [SMALL_STATE(3356)] = 120418, + [SMALL_STATE(3357)] = 120471, + [SMALL_STATE(3358)] = 120524, + [SMALL_STATE(3359)] = 120577, + [SMALL_STATE(3360)] = 120627, + [SMALL_STATE(3361)] = 120677, + [SMALL_STATE(3362)] = 120727, + [SMALL_STATE(3363)] = 120777, + [SMALL_STATE(3364)] = 120827, + [SMALL_STATE(3365)] = 120877, + [SMALL_STATE(3366)] = 120927, + [SMALL_STATE(3367)] = 120977, + [SMALL_STATE(3368)] = 121027, + [SMALL_STATE(3369)] = 121077, + [SMALL_STATE(3370)] = 121127, + [SMALL_STATE(3371)] = 121177, + [SMALL_STATE(3372)] = 121227, + [SMALL_STATE(3373)] = 121283, + [SMALL_STATE(3374)] = 121333, + [SMALL_STATE(3375)] = 121383, + [SMALL_STATE(3376)] = 121433, + [SMALL_STATE(3377)] = 121483, + [SMALL_STATE(3378)] = 121533, + [SMALL_STATE(3379)] = 121585, + [SMALL_STATE(3380)] = 121635, + [SMALL_STATE(3381)] = 121691, + [SMALL_STATE(3382)] = 121741, + [SMALL_STATE(3383)] = 121791, + [SMALL_STATE(3384)] = 121841, + [SMALL_STATE(3385)] = 121891, + [SMALL_STATE(3386)] = 121941, + [SMALL_STATE(3387)] = 121991, + [SMALL_STATE(3388)] = 122041, + [SMALL_STATE(3389)] = 122091, + [SMALL_STATE(3390)] = 122165, + [SMALL_STATE(3391)] = 122215, + [SMALL_STATE(3392)] = 122265, + [SMALL_STATE(3393)] = 122319, + [SMALL_STATE(3394)] = 122369, + [SMALL_STATE(3395)] = 122419, + [SMALL_STATE(3396)] = 122473, + [SMALL_STATE(3397)] = 122523, + [SMALL_STATE(3398)] = 122573, + [SMALL_STATE(3399)] = 122623, + [SMALL_STATE(3400)] = 122673, + [SMALL_STATE(3401)] = 122725, + [SMALL_STATE(3402)] = 122775, + [SMALL_STATE(3403)] = 122825, + [SMALL_STATE(3404)] = 122875, + [SMALL_STATE(3405)] = 122925, + [SMALL_STATE(3406)] = 122975, + [SMALL_STATE(3407)] = 123025, + [SMALL_STATE(3408)] = 123075, + [SMALL_STATE(3409)] = 123125, + [SMALL_STATE(3410)] = 123175, + [SMALL_STATE(3411)] = 123225, + [SMALL_STATE(3412)] = 123275, + [SMALL_STATE(3413)] = 123325, + [SMALL_STATE(3414)] = 123375, + [SMALL_STATE(3415)] = 123425, + [SMALL_STATE(3416)] = 123475, + [SMALL_STATE(3417)] = 123542, + [SMALL_STATE(3418)] = 123593, + [SMALL_STATE(3419)] = 123640, + [SMALL_STATE(3420)] = 123687, + [SMALL_STATE(3421)] = 123734, + [SMALL_STATE(3422)] = 123801, + [SMALL_STATE(3423)] = 123866, + [SMALL_STATE(3424)] = 123913, + [SMALL_STATE(3425)] = 123960, + [SMALL_STATE(3426)] = 124007, + [SMALL_STATE(3427)] = 124072, + [SMALL_STATE(3428)] = 124135, + [SMALL_STATE(3429)] = 124200, + [SMALL_STATE(3430)] = 124247, + [SMALL_STATE(3431)] = 124314, + [SMALL_STATE(3432)] = 124361, + [SMALL_STATE(3433)] = 124426, + [SMALL_STATE(3434)] = 124477, + [SMALL_STATE(3435)] = 124537, + [SMALL_STATE(3436)] = 124597, + [SMALL_STATE(3437)] = 124673, + [SMALL_STATE(3438)] = 124733, + [SMALL_STATE(3439)] = 124793, + [SMALL_STATE(3440)] = 124853, + [SMALL_STATE(3441)] = 124913, + [SMALL_STATE(3442)] = 124973, + [SMALL_STATE(3443)] = 125033, + [SMALL_STATE(3444)] = 125093, + [SMALL_STATE(3445)] = 125145, + [SMALL_STATE(3446)] = 125205, + [SMALL_STATE(3447)] = 125265, + [SMALL_STATE(3448)] = 125325, + [SMALL_STATE(3449)] = 125385, + [SMALL_STATE(3450)] = 125445, + [SMALL_STATE(3451)] = 125505, + [SMALL_STATE(3452)] = 125565, + [SMALL_STATE(3453)] = 125625, + [SMALL_STATE(3454)] = 125685, + [SMALL_STATE(3455)] = 125745, + [SMALL_STATE(3456)] = 125805, + [SMALL_STATE(3457)] = 125865, + [SMALL_STATE(3458)] = 125925, + [SMALL_STATE(3459)] = 125985, + [SMALL_STATE(3460)] = 126045, + [SMALL_STATE(3461)] = 126105, + [SMALL_STATE(3462)] = 126165, + [SMALL_STATE(3463)] = 126225, + [SMALL_STATE(3464)] = 126301, + [SMALL_STATE(3465)] = 126362, + [SMALL_STATE(3466)] = 126423, + [SMALL_STATE(3467)] = 126484, + [SMALL_STATE(3468)] = 126545, + [SMALL_STATE(3469)] = 126616, + [SMALL_STATE(3470)] = 126677, + [SMALL_STATE(3471)] = 126738, + [SMALL_STATE(3472)] = 126799, + [SMALL_STATE(3473)] = 126884, + [SMALL_STATE(3474)] = 126951, + [SMALL_STATE(3475)] = 127012, + [SMALL_STATE(3476)] = 127097, + [SMALL_STATE(3477)] = 127182, + [SMALL_STATE(3478)] = 127253, + [SMALL_STATE(3479)] = 127338, + [SMALL_STATE(3480)] = 127399, + [SMALL_STATE(3481)] = 127466, + [SMALL_STATE(3482)] = 127527, + [SMALL_STATE(3483)] = 127588, + [SMALL_STATE(3484)] = 127649, + [SMALL_STATE(3485)] = 127734, + [SMALL_STATE(3486)] = 127795, + [SMALL_STATE(3487)] = 127880, + [SMALL_STATE(3488)] = 127941, + [SMALL_STATE(3489)] = 128002, + [SMALL_STATE(3490)] = 128047, + [SMALL_STATE(3491)] = 128132, + [SMALL_STATE(3492)] = 128217, + [SMALL_STATE(3493)] = 128278, + [SMALL_STATE(3494)] = 128339, + [SMALL_STATE(3495)] = 128406, + [SMALL_STATE(3496)] = 128467, + [SMALL_STATE(3497)] = 128516, + [SMALL_STATE(3498)] = 128583, + [SMALL_STATE(3499)] = 128644, + [SMALL_STATE(3500)] = 128729, + [SMALL_STATE(3501)] = 128790, + [SMALL_STATE(3502)] = 128851, + [SMALL_STATE(3503)] = 128912, + [SMALL_STATE(3504)] = 128973, + [SMALL_STATE(3505)] = 129058, + [SMALL_STATE(3506)] = 129119, + [SMALL_STATE(3507)] = 129204, + [SMALL_STATE(3508)] = 129265, + [SMALL_STATE(3509)] = 129336, + [SMALL_STATE(3510)] = 129397, + [SMALL_STATE(3511)] = 129482, + [SMALL_STATE(3512)] = 129543, + [SMALL_STATE(3513)] = 129604, + [SMALL_STATE(3514)] = 129665, + [SMALL_STATE(3515)] = 129726, + [SMALL_STATE(3516)] = 129790, + [SMALL_STATE(3517)] = 129854, + [SMALL_STATE(3518)] = 129918, + [SMALL_STATE(3519)] = 129976, + [SMALL_STATE(3520)] = 130040, + [SMALL_STATE(3521)] = 130100, + [SMALL_STATE(3522)] = 130164, + [SMALL_STATE(3523)] = 130224, + [SMALL_STATE(3524)] = 130288, + [SMALL_STATE(3525)] = 130352, + [SMALL_STATE(3526)] = 130416, + [SMALL_STATE(3527)] = 130480, + [SMALL_STATE(3528)] = 130544, + [SMALL_STATE(3529)] = 130608, + [SMALL_STATE(3530)] = 130672, + [SMALL_STATE(3531)] = 130736, + [SMALL_STATE(3532)] = 130800, + [SMALL_STATE(3533)] = 130846, + [SMALL_STATE(3534)] = 130910, + [SMALL_STATE(3535)] = 130974, + [SMALL_STATE(3536)] = 131029, + [SMALL_STATE(3537)] = 131084, + [SMALL_STATE(3538)] = 131139, + [SMALL_STATE(3539)] = 131194, + [SMALL_STATE(3540)] = 131249, + [SMALL_STATE(3541)] = 131306, + [SMALL_STATE(3542)] = 131363, + [SMALL_STATE(3543)] = 131418, + [SMALL_STATE(3544)] = 131461, + [SMALL_STATE(3545)] = 131516, + [SMALL_STATE(3546)] = 131559, + [SMALL_STATE(3547)] = 131614, + [SMALL_STATE(3548)] = 131669, + [SMALL_STATE(3549)] = 131724, + [SMALL_STATE(3550)] = 131779, + [SMALL_STATE(3551)] = 131834, + [SMALL_STATE(3552)] = 131877, + [SMALL_STATE(3553)] = 131932, + [SMALL_STATE(3554)] = 131987, + [SMALL_STATE(3555)] = 132044, + [SMALL_STATE(3556)] = 132099, + [SMALL_STATE(3557)] = 132154, + [SMALL_STATE(3558)] = 132197, + [SMALL_STATE(3559)] = 132252, + [SMALL_STATE(3560)] = 132307, + [SMALL_STATE(3561)] = 132362, + [SMALL_STATE(3562)] = 132419, + [SMALL_STATE(3563)] = 132474, + [SMALL_STATE(3564)] = 132531, + [SMALL_STATE(3565)] = 132586, + [SMALL_STATE(3566)] = 132641, + [SMALL_STATE(3567)] = 132696, + [SMALL_STATE(3568)] = 132753, + [SMALL_STATE(3569)] = 132808, + [SMALL_STATE(3570)] = 132863, + [SMALL_STATE(3571)] = 132918, + [SMALL_STATE(3572)] = 132975, + [SMALL_STATE(3573)] = 133030, + [SMALL_STATE(3574)] = 133085, + [SMALL_STATE(3575)] = 133142, + [SMALL_STATE(3576)] = 133197, + [SMALL_STATE(3577)] = 133252, + [SMALL_STATE(3578)] = 133309, + [SMALL_STATE(3579)] = 133364, + [SMALL_STATE(3580)] = 133419, + [SMALL_STATE(3581)] = 133476, + [SMALL_STATE(3582)] = 133531, + [SMALL_STATE(3583)] = 133588, + [SMALL_STATE(3584)] = 133643, + [SMALL_STATE(3585)] = 133698, + [SMALL_STATE(3586)] = 133755, + [SMALL_STATE(3587)] = 133812, + [SMALL_STATE(3588)] = 133867, + [SMALL_STATE(3589)] = 133922, + [SMALL_STATE(3590)] = 133977, + [SMALL_STATE(3591)] = 134034, + [SMALL_STATE(3592)] = 134089, + [SMALL_STATE(3593)] = 134144, + [SMALL_STATE(3594)] = 134199, + [SMALL_STATE(3595)] = 134242, + [SMALL_STATE(3596)] = 134285, + [SMALL_STATE(3597)] = 134325, + [SMALL_STATE(3598)] = 134360, + [SMALL_STATE(3599)] = 134407, + [SMALL_STATE(3600)] = 134454, + [SMALL_STATE(3601)] = 134501, + [SMALL_STATE(3602)] = 134536, + [SMALL_STATE(3603)] = 134571, + [SMALL_STATE(3604)] = 134605, + [SMALL_STATE(3605)] = 134639, + [SMALL_STATE(3606)] = 134672, + [SMALL_STATE(3607)] = 134705, + [SMALL_STATE(3608)] = 134738, + [SMALL_STATE(3609)] = 134779, + [SMALL_STATE(3610)] = 134812, + [SMALL_STATE(3611)] = 134845, + [SMALL_STATE(3612)] = 134878, + [SMALL_STATE(3613)] = 134911, + [SMALL_STATE(3614)] = 134944, + [SMALL_STATE(3615)] = 134977, + [SMALL_STATE(3616)] = 135010, + [SMALL_STATE(3617)] = 135043, + [SMALL_STATE(3618)] = 135076, + [SMALL_STATE(3619)] = 135109, + [SMALL_STATE(3620)] = 135142, + [SMALL_STATE(3621)] = 135175, + [SMALL_STATE(3622)] = 135208, + [SMALL_STATE(3623)] = 135241, + [SMALL_STATE(3624)] = 135274, + [SMALL_STATE(3625)] = 135307, + [SMALL_STATE(3626)] = 135340, + [SMALL_STATE(3627)] = 135373, + [SMALL_STATE(3628)] = 135406, + [SMALL_STATE(3629)] = 135439, + [SMALL_STATE(3630)] = 135472, + [SMALL_STATE(3631)] = 135505, + [SMALL_STATE(3632)] = 135538, + [SMALL_STATE(3633)] = 135571, + [SMALL_STATE(3634)] = 135604, + [SMALL_STATE(3635)] = 135637, + [SMALL_STATE(3636)] = 135670, + [SMALL_STATE(3637)] = 135703, + [SMALL_STATE(3638)] = 135736, + [SMALL_STATE(3639)] = 135769, + [SMALL_STATE(3640)] = 135802, + [SMALL_STATE(3641)] = 135856, + [SMALL_STATE(3642)] = 135910, + [SMALL_STATE(3643)] = 135970, + [SMALL_STATE(3644)] = 136024, + [SMALL_STATE(3645)] = 136062, + [SMALL_STATE(3646)] = 136116, + [SMALL_STATE(3647)] = 136170, + [SMALL_STATE(3648)] = 136230, + [SMALL_STATE(3649)] = 136273, + [SMALL_STATE(3650)] = 136304, + [SMALL_STATE(3651)] = 136335, + [SMALL_STATE(3652)] = 136366, + [SMALL_STATE(3653)] = 136397, + [SMALL_STATE(3654)] = 136428, + [SMALL_STATE(3655)] = 136459, + [SMALL_STATE(3656)] = 136490, + [SMALL_STATE(3657)] = 136525, + [SMALL_STATE(3658)] = 136556, + [SMALL_STATE(3659)] = 136587, + [SMALL_STATE(3660)] = 136618, + [SMALL_STATE(3661)] = 136649, + [SMALL_STATE(3662)] = 136680, + [SMALL_STATE(3663)] = 136715, + [SMALL_STATE(3664)] = 136748, + [SMALL_STATE(3665)] = 136781, + [SMALL_STATE(3666)] = 136824, + [SMALL_STATE(3667)] = 136855, + [SMALL_STATE(3668)] = 136886, + [SMALL_STATE(3669)] = 136917, + [SMALL_STATE(3670)] = 136948, + [SMALL_STATE(3671)] = 136979, + [SMALL_STATE(3672)] = 137010, + [SMALL_STATE(3673)] = 137053, + [SMALL_STATE(3674)] = 137084, + [SMALL_STATE(3675)] = 137115, + [SMALL_STATE(3676)] = 137146, + [SMALL_STATE(3677)] = 137178, + [SMALL_STATE(3678)] = 137208, + [SMALL_STATE(3679)] = 137240, + [SMALL_STATE(3680)] = 137270, + [SMALL_STATE(3681)] = 137302, + [SMALL_STATE(3682)] = 137333, + [SMALL_STATE(3683)] = 137362, + [SMALL_STATE(3684)] = 137391, + [SMALL_STATE(3685)] = 137420, + [SMALL_STATE(3686)] = 137455, + [SMALL_STATE(3687)] = 137494, + [SMALL_STATE(3688)] = 137533, + [SMALL_STATE(3689)] = 137562, + [SMALL_STATE(3690)] = 137591, + [SMALL_STATE(3691)] = 137620, + [SMALL_STATE(3692)] = 137659, + [SMALL_STATE(3693)] = 137690, + [SMALL_STATE(3694)] = 137721, + [SMALL_STATE(3695)] = 137760, + [SMALL_STATE(3696)] = 137799, + [SMALL_STATE(3697)] = 137836, + [SMALL_STATE(3698)] = 137875, + [SMALL_STATE(3699)] = 137914, + [SMALL_STATE(3700)] = 137947, + [SMALL_STATE(3701)] = 137986, + [SMALL_STATE(3702)] = 138021, + [SMALL_STATE(3703)] = 138048, + [SMALL_STATE(3704)] = 138085, + [SMALL_STATE(3705)] = 138124, + [SMALL_STATE(3706)] = 138155, + [SMALL_STATE(3707)] = 138194, + [SMALL_STATE(3708)] = 138233, + [SMALL_STATE(3709)] = 138268, + [SMALL_STATE(3710)] = 138295, + [SMALL_STATE(3711)] = 138324, + [SMALL_STATE(3712)] = 138351, + [SMALL_STATE(3713)] = 138378, + [SMALL_STATE(3714)] = 138407, + [SMALL_STATE(3715)] = 138434, + [SMALL_STATE(3716)] = 138473, + [SMALL_STATE(3717)] = 138510, + [SMALL_STATE(3718)] = 138539, + [SMALL_STATE(3719)] = 138568, + [SMALL_STATE(3720)] = 138597, + [SMALL_STATE(3721)] = 138626, + [SMALL_STATE(3722)] = 138653, + [SMALL_STATE(3723)] = 138682, + [SMALL_STATE(3724)] = 138719, + [SMALL_STATE(3725)] = 138758, + [SMALL_STATE(3726)] = 138787, + [SMALL_STATE(3727)] = 138816, + [SMALL_STATE(3728)] = 138845, + [SMALL_STATE(3729)] = 138874, + [SMALL_STATE(3730)] = 138903, + [SMALL_STATE(3731)] = 138932, + [SMALL_STATE(3732)] = 138967, + [SMALL_STATE(3733)] = 138996, + [SMALL_STATE(3734)] = 139035, + [SMALL_STATE(3735)] = 139066, + [SMALL_STATE(3736)] = 139095, + [SMALL_STATE(3737)] = 139124, + [SMALL_STATE(3738)] = 139153, + [SMALL_STATE(3739)] = 139182, + [SMALL_STATE(3740)] = 139211, + [SMALL_STATE(3741)] = 139240, + [SMALL_STATE(3742)] = 139269, + [SMALL_STATE(3743)] = 139298, + [SMALL_STATE(3744)] = 139327, + [SMALL_STATE(3745)] = 139356, + [SMALL_STATE(3746)] = 139385, + [SMALL_STATE(3747)] = 139414, + [SMALL_STATE(3748)] = 139443, + [SMALL_STATE(3749)] = 139472, + [SMALL_STATE(3750)] = 139501, + [SMALL_STATE(3751)] = 139530, + [SMALL_STATE(3752)] = 139569, + [SMALL_STATE(3753)] = 139598, + [SMALL_STATE(3754)] = 139627, + [SMALL_STATE(3755)] = 139656, + [SMALL_STATE(3756)] = 139685, + [SMALL_STATE(3757)] = 139714, + [SMALL_STATE(3758)] = 139751, + [SMALL_STATE(3759)] = 139780, + [SMALL_STATE(3760)] = 139809, + [SMALL_STATE(3761)] = 139848, + [SMALL_STATE(3762)] = 139887, + [SMALL_STATE(3763)] = 139926, + [SMALL_STATE(3764)] = 139955, + [SMALL_STATE(3765)] = 139984, + [SMALL_STATE(3766)] = 140013, + [SMALL_STATE(3767)] = 140050, + [SMALL_STATE(3768)] = 140079, + [SMALL_STATE(3769)] = 140108, + [SMALL_STATE(3770)] = 140137, + [SMALL_STATE(3771)] = 140164, + [SMALL_STATE(3772)] = 140191, + [SMALL_STATE(3773)] = 140220, + [SMALL_STATE(3774)] = 140249, + [SMALL_STATE(3775)] = 140278, + [SMALL_STATE(3776)] = 140307, + [SMALL_STATE(3777)] = 140336, + [SMALL_STATE(3778)] = 140365, + [SMALL_STATE(3779)] = 140394, + [SMALL_STATE(3780)] = 140423, + [SMALL_STATE(3781)] = 140452, + [SMALL_STATE(3782)] = 140481, + [SMALL_STATE(3783)] = 140508, + [SMALL_STATE(3784)] = 140543, + [SMALL_STATE(3785)] = 140578, + [SMALL_STATE(3786)] = 140613, + [SMALL_STATE(3787)] = 140642, + [SMALL_STATE(3788)] = 140671, + [SMALL_STATE(3789)] = 140700, + [SMALL_STATE(3790)] = 140729, + [SMALL_STATE(3791)] = 140758, + [SMALL_STATE(3792)] = 140787, + [SMALL_STATE(3793)] = 140835, + [SMALL_STATE(3794)] = 140883, + [SMALL_STATE(3795)] = 140931, + [SMALL_STATE(3796)] = 140979, + [SMALL_STATE(3797)] = 141027, + [SMALL_STATE(3798)] = 141075, + [SMALL_STATE(3799)] = 141123, + [SMALL_STATE(3800)] = 141171, + [SMALL_STATE(3801)] = 141219, + [SMALL_STATE(3802)] = 141253, + [SMALL_STATE(3803)] = 141297, + [SMALL_STATE(3804)] = 141345, + [SMALL_STATE(3805)] = 141393, + [SMALL_STATE(3806)] = 141437, + [SMALL_STATE(3807)] = 141485, + [SMALL_STATE(3808)] = 141533, + [SMALL_STATE(3809)] = 141577, + [SMALL_STATE(3810)] = 141625, + [SMALL_STATE(3811)] = 141673, + [SMALL_STATE(3812)] = 141721, + [SMALL_STATE(3813)] = 141769, + [SMALL_STATE(3814)] = 141817, + [SMALL_STATE(3815)] = 141865, + [SMALL_STATE(3816)] = 141913, + [SMALL_STATE(3817)] = 141947, + [SMALL_STATE(3818)] = 141981, + [SMALL_STATE(3819)] = 142029, + [SMALL_STATE(3820)] = 142077, + [SMALL_STATE(3821)] = 142109, + [SMALL_STATE(3822)] = 142143, + [SMALL_STATE(3823)] = 142187, + [SMALL_STATE(3824)] = 142235, + [SMALL_STATE(3825)] = 142269, + [SMALL_STATE(3826)] = 142317, + [SMALL_STATE(3827)] = 142365, + [SMALL_STATE(3828)] = 142409, + [SMALL_STATE(3829)] = 142457, + [SMALL_STATE(3830)] = 142491, + [SMALL_STATE(3831)] = 142527, + [SMALL_STATE(3832)] = 142575, + [SMALL_STATE(3833)] = 142623, + [SMALL_STATE(3834)] = 142664, + [SMALL_STATE(3835)] = 142689, + [SMALL_STATE(3836)] = 142730, + [SMALL_STATE(3837)] = 142757, + [SMALL_STATE(3838)] = 142798, + [SMALL_STATE(3839)] = 142839, + [SMALL_STATE(3840)] = 142880, + [SMALL_STATE(3841)] = 142907, + [SMALL_STATE(3842)] = 142934, + [SMALL_STATE(3843)] = 142975, + [SMALL_STATE(3844)] = 143002, + [SMALL_STATE(3845)] = 143043, + [SMALL_STATE(3846)] = 143070, + [SMALL_STATE(3847)] = 143097, + [SMALL_STATE(3848)] = 143124, + [SMALL_STATE(3849)] = 143151, + [SMALL_STATE(3850)] = 143192, + [SMALL_STATE(3851)] = 143237, + [SMALL_STATE(3852)] = 143262, + [SMALL_STATE(3853)] = 143287, + [SMALL_STATE(3854)] = 143314, + [SMALL_STATE(3855)] = 143339, + [SMALL_STATE(3856)] = 143364, + [SMALL_STATE(3857)] = 143391, + [SMALL_STATE(3858)] = 143432, + [SMALL_STATE(3859)] = 143457, + [SMALL_STATE(3860)] = 143490, + [SMALL_STATE(3861)] = 143515, + [SMALL_STATE(3862)] = 143556, + [SMALL_STATE(3863)] = 143581, + [SMALL_STATE(3864)] = 143622, + [SMALL_STATE(3865)] = 143647, + [SMALL_STATE(3866)] = 143688, + [SMALL_STATE(3867)] = 143717, + [SMALL_STATE(3868)] = 143742, + [SMALL_STATE(3869)] = 143771, + [SMALL_STATE(3870)] = 143796, + [SMALL_STATE(3871)] = 143821, + [SMALL_STATE(3872)] = 143846, + [SMALL_STATE(3873)] = 143887, + [SMALL_STATE(3874)] = 143912, + [SMALL_STATE(3875)] = 143939, + [SMALL_STATE(3876)] = 143964, + [SMALL_STATE(3877)] = 143989, + [SMALL_STATE(3878)] = 144016, + [SMALL_STATE(3879)] = 144061, + [SMALL_STATE(3880)] = 144088, + [SMALL_STATE(3881)] = 144113, + [SMALL_STATE(3882)] = 144138, + [SMALL_STATE(3883)] = 144169, + [SMALL_STATE(3884)] = 144208, + [SMALL_STATE(3885)] = 144249, + [SMALL_STATE(3886)] = 144274, + [SMALL_STATE(3887)] = 144299, + [SMALL_STATE(3888)] = 144324, + [SMALL_STATE(3889)] = 144349, + [SMALL_STATE(3890)] = 144374, + [SMALL_STATE(3891)] = 144399, + [SMALL_STATE(3892)] = 144424, + [SMALL_STATE(3893)] = 144465, + [SMALL_STATE(3894)] = 144498, + [SMALL_STATE(3895)] = 144523, + [SMALL_STATE(3896)] = 144550, + [SMALL_STATE(3897)] = 144577, + [SMALL_STATE(3898)] = 144602, + [SMALL_STATE(3899)] = 144629, + [SMALL_STATE(3900)] = 144656, + [SMALL_STATE(3901)] = 144697, + [SMALL_STATE(3902)] = 144722, + [SMALL_STATE(3903)] = 144747, + [SMALL_STATE(3904)] = 144772, + [SMALL_STATE(3905)] = 144803, + [SMALL_STATE(3906)] = 144828, + [SMALL_STATE(3907)] = 144853, + [SMALL_STATE(3908)] = 144878, + [SMALL_STATE(3909)] = 144903, + [SMALL_STATE(3910)] = 144944, + [SMALL_STATE(3911)] = 144982, + [SMALL_STATE(3912)] = 145020, + [SMALL_STATE(3913)] = 145064, + [SMALL_STATE(3914)] = 145106, + [SMALL_STATE(3915)] = 145148, + [SMALL_STATE(3916)] = 145190, + [SMALL_STATE(3917)] = 145232, + [SMALL_STATE(3918)] = 145270, + [SMALL_STATE(3919)] = 145308, + [SMALL_STATE(3920)] = 145346, + [SMALL_STATE(3921)] = 145382, + [SMALL_STATE(3922)] = 145416, + [SMALL_STATE(3923)] = 145458, + [SMALL_STATE(3924)] = 145500, + [SMALL_STATE(3925)] = 145536, + [SMALL_STATE(3926)] = 145562, + [SMALL_STATE(3927)] = 145596, + [SMALL_STATE(3928)] = 145634, + [SMALL_STATE(3929)] = 145676, + [SMALL_STATE(3930)] = 145710, + [SMALL_STATE(3931)] = 145752, + [SMALL_STATE(3932)] = 145794, + [SMALL_STATE(3933)] = 145836, + [SMALL_STATE(3934)] = 145878, + [SMALL_STATE(3935)] = 145920, + [SMALL_STATE(3936)] = 145962, + [SMALL_STATE(3937)] = 146006, + [SMALL_STATE(3938)] = 146048, + [SMALL_STATE(3939)] = 146076, + [SMALL_STATE(3940)] = 146118, + [SMALL_STATE(3941)] = 146156, + [SMALL_STATE(3942)] = 146198, + [SMALL_STATE(3943)] = 146228, + [SMALL_STATE(3944)] = 146272, + [SMALL_STATE(3945)] = 146314, + [SMALL_STATE(3946)] = 146356, + [SMALL_STATE(3947)] = 146382, + [SMALL_STATE(3948)] = 146424, + [SMALL_STATE(3949)] = 146462, + [SMALL_STATE(3950)] = 146504, + [SMALL_STATE(3951)] = 146542, + [SMALL_STATE(3952)] = 146570, + [SMALL_STATE(3953)] = 146612, + [SMALL_STATE(3954)] = 146654, + [SMALL_STATE(3955)] = 146698, + [SMALL_STATE(3956)] = 146740, + [SMALL_STATE(3957)] = 146782, + [SMALL_STATE(3958)] = 146810, + [SMALL_STATE(3959)] = 146848, + [SMALL_STATE(3960)] = 146890, + [SMALL_STATE(3961)] = 146932, + [SMALL_STATE(3962)] = 146966, + [SMALL_STATE(3963)] = 147010, + [SMALL_STATE(3964)] = 147046, + [SMALL_STATE(3965)] = 147088, + [SMALL_STATE(3966)] = 147122, + [SMALL_STATE(3967)] = 147145, + [SMALL_STATE(3968)] = 147174, + [SMALL_STATE(3969)] = 147199, + [SMALL_STATE(3970)] = 147224, + [SMALL_STATE(3971)] = 147249, + [SMALL_STATE(3972)] = 147274, + [SMALL_STATE(3973)] = 147299, + [SMALL_STATE(3974)] = 147328, + [SMALL_STATE(3975)] = 147357, + [SMALL_STATE(3976)] = 147388, + [SMALL_STATE(3977)] = 147413, + [SMALL_STATE(3978)] = 147438, + [SMALL_STATE(3979)] = 147463, + [SMALL_STATE(3980)] = 147486, + [SMALL_STATE(3981)] = 147509, + [SMALL_STATE(3982)] = 147536, + [SMALL_STATE(3983)] = 147565, + [SMALL_STATE(3984)] = 147588, + [SMALL_STATE(3985)] = 147613, + [SMALL_STATE(3986)] = 147638, + [SMALL_STATE(3987)] = 147663, + [SMALL_STATE(3988)] = 147690, + [SMALL_STATE(3989)] = 147715, + [SMALL_STATE(3990)] = 147740, + [SMALL_STATE(3991)] = 147767, + [SMALL_STATE(3992)] = 147792, + [SMALL_STATE(3993)] = 147817, + [SMALL_STATE(3994)] = 147842, + [SMALL_STATE(3995)] = 147871, + [SMALL_STATE(3996)] = 147900, + [SMALL_STATE(3997)] = 147925, + [SMALL_STATE(3998)] = 147952, + [SMALL_STATE(3999)] = 147977, + [SMALL_STATE(4000)] = 148002, + [SMALL_STATE(4001)] = 148027, + [SMALL_STATE(4002)] = 148050, + [SMALL_STATE(4003)] = 148075, + [SMALL_STATE(4004)] = 148118, + [SMALL_STATE(4005)] = 148143, + [SMALL_STATE(4006)] = 148172, + [SMALL_STATE(4007)] = 148197, + [SMALL_STATE(4008)] = 148220, + [SMALL_STATE(4009)] = 148243, + [SMALL_STATE(4010)] = 148266, + [SMALL_STATE(4011)] = 148291, + [SMALL_STATE(4012)] = 148316, + [SMALL_STATE(4013)] = 148341, + [SMALL_STATE(4014)] = 148366, + [SMALL_STATE(4015)] = 148393, + [SMALL_STATE(4016)] = 148418, + [SMALL_STATE(4017)] = 148443, + [SMALL_STATE(4018)] = 148468, + [SMALL_STATE(4019)] = 148493, + [SMALL_STATE(4020)] = 148522, + [SMALL_STATE(4021)] = 148549, + [SMALL_STATE(4022)] = 148576, + [SMALL_STATE(4023)] = 148601, + [SMALL_STATE(4024)] = 148626, + [SMALL_STATE(4025)] = 148651, + [SMALL_STATE(4026)] = 148676, + [SMALL_STATE(4027)] = 148701, + [SMALL_STATE(4028)] = 148724, + [SMALL_STATE(4029)] = 148749, + [SMALL_STATE(4030)] = 148774, + [SMALL_STATE(4031)] = 148812, + [SMALL_STATE(4032)] = 148840, + [SMALL_STATE(4033)] = 148880, + [SMALL_STATE(4034)] = 148904, + [SMALL_STATE(4035)] = 148944, + [SMALL_STATE(4036)] = 148972, + [SMALL_STATE(4037)] = 149012, + [SMALL_STATE(4038)] = 149048, + [SMALL_STATE(4039)] = 149088, + [SMALL_STATE(4040)] = 149116, + [SMALL_STATE(4041)] = 149156, + [SMALL_STATE(4042)] = 149196, + [SMALL_STATE(4043)] = 149232, + [SMALL_STATE(4044)] = 149266, + [SMALL_STATE(4045)] = 149290, + [SMALL_STATE(4046)] = 149326, + [SMALL_STATE(4047)] = 149366, + [SMALL_STATE(4048)] = 149406, + [SMALL_STATE(4049)] = 149440, + [SMALL_STATE(4050)] = 149480, + [SMALL_STATE(4051)] = 149502, + [SMALL_STATE(4052)] = 149528, + [SMALL_STATE(4053)] = 149568, + [SMALL_STATE(4054)] = 149592, + [SMALL_STATE(4055)] = 149632, + [SMALL_STATE(4056)] = 149658, + [SMALL_STATE(4057)] = 149698, + [SMALL_STATE(4058)] = 149734, + [SMALL_STATE(4059)] = 149772, + [SMALL_STATE(4060)] = 149812, + [SMALL_STATE(4061)] = 149852, + [SMALL_STATE(4062)] = 149892, + [SMALL_STATE(4063)] = 149932, + [SMALL_STATE(4064)] = 149972, + [SMALL_STATE(4065)] = 149998, + [SMALL_STATE(4066)] = 150038, + [SMALL_STATE(4067)] = 150078, + [SMALL_STATE(4068)] = 150100, + [SMALL_STATE(4069)] = 150131, + [SMALL_STATE(4070)] = 150158, + [SMALL_STATE(4071)] = 150179, + [SMALL_STATE(4072)] = 150210, + [SMALL_STATE(4073)] = 150241, + [SMALL_STATE(4074)] = 150278, + [SMALL_STATE(4075)] = 150309, + [SMALL_STATE(4076)] = 150346, + [SMALL_STATE(4077)] = 150377, + [SMALL_STATE(4078)] = 150410, + [SMALL_STATE(4079)] = 150431, + [SMALL_STATE(4080)] = 150452, + [SMALL_STATE(4081)] = 150483, + [SMALL_STATE(4082)] = 150514, + [SMALL_STATE(4083)] = 150543, + [SMALL_STATE(4084)] = 150576, + [SMALL_STATE(4085)] = 150609, + [SMALL_STATE(4086)] = 150642, + [SMALL_STATE(4087)] = 150679, + [SMALL_STATE(4088)] = 150712, + [SMALL_STATE(4089)] = 150749, + [SMALL_STATE(4090)] = 150782, + [SMALL_STATE(4091)] = 150817, + [SMALL_STATE(4092)] = 150838, + [SMALL_STATE(4093)] = 150871, + [SMALL_STATE(4094)] = 150892, + [SMALL_STATE(4095)] = 150925, + [SMALL_STATE(4096)] = 150946, + [SMALL_STATE(4097)] = 150983, + [SMALL_STATE(4098)] = 151006, + [SMALL_STATE(4099)] = 151043, + [SMALL_STATE(4100)] = 151064, + [SMALL_STATE(4101)] = 151085, + [SMALL_STATE(4102)] = 151122, + [SMALL_STATE(4103)] = 151159, + [SMALL_STATE(4104)] = 151186, + [SMALL_STATE(4105)] = 151223, + [SMALL_STATE(4106)] = 151244, + [SMALL_STATE(4107)] = 151281, + [SMALL_STATE(4108)] = 151318, + [SMALL_STATE(4109)] = 151355, + [SMALL_STATE(4110)] = 151388, + [SMALL_STATE(4111)] = 151409, + [SMALL_STATE(4112)] = 151446, + [SMALL_STATE(4113)] = 151467, + [SMALL_STATE(4114)] = 151488, + [SMALL_STATE(4115)] = 151525, + [SMALL_STATE(4116)] = 151546, + [SMALL_STATE(4117)] = 151583, + [SMALL_STATE(4118)] = 151616, + [SMALL_STATE(4119)] = 151637, + [SMALL_STATE(4120)] = 151658, + [SMALL_STATE(4121)] = 151695, + [SMALL_STATE(4122)] = 151716, + [SMALL_STATE(4123)] = 151747, + [SMALL_STATE(4124)] = 151784, + [SMALL_STATE(4125)] = 151805, + [SMALL_STATE(4126)] = 151838, + [SMALL_STATE(4127)] = 151871, + [SMALL_STATE(4128)] = 151908, + [SMALL_STATE(4129)] = 151929, + [SMALL_STATE(4130)] = 151950, + [SMALL_STATE(4131)] = 151987, + [SMALL_STATE(4132)] = 152008, + [SMALL_STATE(4133)] = 152045, + [SMALL_STATE(4134)] = 152066, + [SMALL_STATE(4135)] = 152087, + [SMALL_STATE(4136)] = 152108, + [SMALL_STATE(4137)] = 152145, + [SMALL_STATE(4138)] = 152180, + [SMALL_STATE(4139)] = 152201, + [SMALL_STATE(4140)] = 152238, + [SMALL_STATE(4141)] = 152267, + [SMALL_STATE(4142)] = 152304, + [SMALL_STATE(4143)] = 152341, + [SMALL_STATE(4144)] = 152374, + [SMALL_STATE(4145)] = 152395, + [SMALL_STATE(4146)] = 152432, + [SMALL_STATE(4147)] = 152453, + [SMALL_STATE(4148)] = 152486, + [SMALL_STATE(4149)] = 152523, + [SMALL_STATE(4150)] = 152556, + [SMALL_STATE(4151)] = 152585, + [SMALL_STATE(4152)] = 152622, + [SMALL_STATE(4153)] = 152645, + [SMALL_STATE(4154)] = 152668, + [SMALL_STATE(4155)] = 152691, + [SMALL_STATE(4156)] = 152714, + [SMALL_STATE(4157)] = 152737, + [SMALL_STATE(4158)] = 152764, + [SMALL_STATE(4159)] = 152797, + [SMALL_STATE(4160)] = 152830, + [SMALL_STATE(4161)] = 152863, + [SMALL_STATE(4162)] = 152896, + [SMALL_STATE(4163)] = 152923, + [SMALL_STATE(4164)] = 152960, + [SMALL_STATE(4165)] = 152993, + [SMALL_STATE(4166)] = 153030, + [SMALL_STATE(4167)] = 153063, + [SMALL_STATE(4168)] = 153100, + [SMALL_STATE(4169)] = 153133, + [SMALL_STATE(4170)] = 153170, + [SMALL_STATE(4171)] = 153203, + [SMALL_STATE(4172)] = 153236, + [SMALL_STATE(4173)] = 153269, + [SMALL_STATE(4174)] = 153302, + [SMALL_STATE(4175)] = 153335, + [SMALL_STATE(4176)] = 153372, + [SMALL_STATE(4177)] = 153405, + [SMALL_STATE(4178)] = 153442, + [SMALL_STATE(4179)] = 153475, + [SMALL_STATE(4180)] = 153512, + [SMALL_STATE(4181)] = 153533, + [SMALL_STATE(4182)] = 153570, + [SMALL_STATE(4183)] = 153603, + [SMALL_STATE(4184)] = 153636, + [SMALL_STATE(4185)] = 153669, + [SMALL_STATE(4186)] = 153702, + [SMALL_STATE(4187)] = 153735, + [SMALL_STATE(4188)] = 153756, + [SMALL_STATE(4189)] = 153789, + [SMALL_STATE(4190)] = 153822, + [SMALL_STATE(4191)] = 153853, + [SMALL_STATE(4192)] = 153886, + [SMALL_STATE(4193)] = 153907, + [SMALL_STATE(4194)] = 153930, + [SMALL_STATE(4195)] = 153963, + [SMALL_STATE(4196)] = 154000, + [SMALL_STATE(4197)] = 154037, + [SMALL_STATE(4198)] = 154058, + [SMALL_STATE(4199)] = 154091, + [SMALL_STATE(4200)] = 154112, + [SMALL_STATE(4201)] = 154133, + [SMALL_STATE(4202)] = 154166, + [SMALL_STATE(4203)] = 154199, + [SMALL_STATE(4204)] = 154232, + [SMALL_STATE(4205)] = 154253, + [SMALL_STATE(4206)] = 154274, + [SMALL_STATE(4207)] = 154311, + [SMALL_STATE(4208)] = 154346, + [SMALL_STATE(4209)] = 154367, + [SMALL_STATE(4210)] = 154394, + [SMALL_STATE(4211)] = 154427, + [SMALL_STATE(4212)] = 154464, + [SMALL_STATE(4213)] = 154501, + [SMALL_STATE(4214)] = 154532, + [SMALL_STATE(4215)] = 154565, + [SMALL_STATE(4216)] = 154586, + [SMALL_STATE(4217)] = 154619, + [SMALL_STATE(4218)] = 154650, + [SMALL_STATE(4219)] = 154683, + [SMALL_STATE(4220)] = 154716, + [SMALL_STATE(4221)] = 154749, + [SMALL_STATE(4222)] = 154782, + [SMALL_STATE(4223)] = 154815, + [SMALL_STATE(4224)] = 154852, + [SMALL_STATE(4225)] = 154885, + [SMALL_STATE(4226)] = 154918, + [SMALL_STATE(4227)] = 154951, + [SMALL_STATE(4228)] = 154984, + [SMALL_STATE(4229)] = 155007, + [SMALL_STATE(4230)] = 155030, + [SMALL_STATE(4231)] = 155061, + [SMALL_STATE(4232)] = 155086, + [SMALL_STATE(4233)] = 155113, + [SMALL_STATE(4234)] = 155146, + [SMALL_STATE(4235)] = 155183, + [SMALL_STATE(4236)] = 155204, + [SMALL_STATE(4237)] = 155237, + [SMALL_STATE(4238)] = 155258, + [SMALL_STATE(4239)] = 155295, + [SMALL_STATE(4240)] = 155320, + [SMALL_STATE(4241)] = 155341, + [SMALL_STATE(4242)] = 155364, + [SMALL_STATE(4243)] = 155401, + [SMALL_STATE(4244)] = 155422, + [SMALL_STATE(4245)] = 155443, + [SMALL_STATE(4246)] = 155476, + [SMALL_STATE(4247)] = 155509, + [SMALL_STATE(4248)] = 155530, + [SMALL_STATE(4249)] = 155567, + [SMALL_STATE(4250)] = 155588, + [SMALL_STATE(4251)] = 155625, + [SMALL_STATE(4252)] = 155662, + [SMALL_STATE(4253)] = 155683, + [SMALL_STATE(4254)] = 155704, + [SMALL_STATE(4255)] = 155741, + [SMALL_STATE(4256)] = 155766, + [SMALL_STATE(4257)] = 155787, + [SMALL_STATE(4258)] = 155820, + [SMALL_STATE(4259)] = 155853, + [SMALL_STATE(4260)] = 155886, + [SMALL_STATE(4261)] = 155919, + [SMALL_STATE(4262)] = 155952, + [SMALL_STATE(4263)] = 155985, + [SMALL_STATE(4264)] = 156006, + [SMALL_STATE(4265)] = 156037, + [SMALL_STATE(4266)] = 156070, + [SMALL_STATE(4267)] = 156091, + [SMALL_STATE(4268)] = 156112, + [SMALL_STATE(4269)] = 156149, + [SMALL_STATE(4270)] = 156180, + [SMALL_STATE(4271)] = 156213, + [SMALL_STATE(4272)] = 156234, + [SMALL_STATE(4273)] = 156271, + [SMALL_STATE(4274)] = 156304, + [SMALL_STATE(4275)] = 156325, + [SMALL_STATE(4276)] = 156346, + [SMALL_STATE(4277)] = 156383, + [SMALL_STATE(4278)] = 156406, + [SMALL_STATE(4279)] = 156427, + [SMALL_STATE(4280)] = 156448, + [SMALL_STATE(4281)] = 156469, + [SMALL_STATE(4282)] = 156502, + [SMALL_STATE(4283)] = 156535, + [SMALL_STATE(4284)] = 156568, + [SMALL_STATE(4285)] = 156589, + [SMALL_STATE(4286)] = 156622, + [SMALL_STATE(4287)] = 156643, + [SMALL_STATE(4288)] = 156680, + [SMALL_STATE(4289)] = 156701, + [SMALL_STATE(4290)] = 156732, + [SMALL_STATE(4291)] = 156767, + [SMALL_STATE(4292)] = 156798, + [SMALL_STATE(4293)] = 156835, + [SMALL_STATE(4294)] = 156862, + [SMALL_STATE(4295)] = 156883, + [SMALL_STATE(4296)] = 156916, + [SMALL_STATE(4297)] = 156949, + [SMALL_STATE(4298)] = 156970, + [SMALL_STATE(4299)] = 156991, + [SMALL_STATE(4300)] = 157024, + [SMALL_STATE(4301)] = 157057, + [SMALL_STATE(4302)] = 157085, + [SMALL_STATE(4303)] = 157117, + [SMALL_STATE(4304)] = 157143, + [SMALL_STATE(4305)] = 157169, + [SMALL_STATE(4306)] = 157195, + [SMALL_STATE(4307)] = 157223, + [SMALL_STATE(4308)] = 157251, + [SMALL_STATE(4309)] = 157281, + [SMALL_STATE(4310)] = 157307, + [SMALL_STATE(4311)] = 157333, + [SMALL_STATE(4312)] = 157367, + [SMALL_STATE(4313)] = 157395, + [SMALL_STATE(4314)] = 157423, + [SMALL_STATE(4315)] = 157455, + [SMALL_STATE(4316)] = 157487, + [SMALL_STATE(4317)] = 157515, + [SMALL_STATE(4318)] = 157547, + [SMALL_STATE(4319)] = 157575, + [SMALL_STATE(4320)] = 157603, + [SMALL_STATE(4321)] = 157637, + [SMALL_STATE(4322)] = 157671, + [SMALL_STATE(4323)] = 157693, + [SMALL_STATE(4324)] = 157725, + [SMALL_STATE(4325)] = 157759, + [SMALL_STATE(4326)] = 157791, + [SMALL_STATE(4327)] = 157825, + [SMALL_STATE(4328)] = 157859, + [SMALL_STATE(4329)] = 157893, + [SMALL_STATE(4330)] = 157919, + [SMALL_STATE(4331)] = 157945, + [SMALL_STATE(4332)] = 157965, + [SMALL_STATE(4333)] = 157985, + [SMALL_STATE(4334)] = 158013, + [SMALL_STATE(4335)] = 158047, + [SMALL_STATE(4336)] = 158081, + [SMALL_STATE(4337)] = 158115, + [SMALL_STATE(4338)] = 158137, + [SMALL_STATE(4339)] = 158159, + [SMALL_STATE(4340)] = 158191, + [SMALL_STATE(4341)] = 158218, + [SMALL_STATE(4342)] = 158249, + [SMALL_STATE(4343)] = 158276, + [SMALL_STATE(4344)] = 158303, + [SMALL_STATE(4345)] = 158334, + [SMALL_STATE(4346)] = 158361, + [SMALL_STATE(4347)] = 158392, + [SMALL_STATE(4348)] = 158423, + [SMALL_STATE(4349)] = 158454, + [SMALL_STATE(4350)] = 158481, + [SMALL_STATE(4351)] = 158508, + [SMALL_STATE(4352)] = 158539, + [SMALL_STATE(4353)] = 158570, + [SMALL_STATE(4354)] = 158597, + [SMALL_STATE(4355)] = 158624, + [SMALL_STATE(4356)] = 158651, + [SMALL_STATE(4357)] = 158678, + [SMALL_STATE(4358)] = 158705, + [SMALL_STATE(4359)] = 158732, + [SMALL_STATE(4360)] = 158759, + [SMALL_STATE(4361)] = 158786, + [SMALL_STATE(4362)] = 158813, + [SMALL_STATE(4363)] = 158840, + [SMALL_STATE(4364)] = 158871, + [SMALL_STATE(4365)] = 158898, + [SMALL_STATE(4366)] = 158925, + [SMALL_STATE(4367)] = 158952, + [SMALL_STATE(4368)] = 158973, + [SMALL_STATE(4369)] = 159000, + [SMALL_STATE(4370)] = 159027, + [SMALL_STATE(4371)] = 159058, + [SMALL_STATE(4372)] = 159085, + [SMALL_STATE(4373)] = 159116, + [SMALL_STATE(4374)] = 159143, + [SMALL_STATE(4375)] = 159170, + [SMALL_STATE(4376)] = 159197, + [SMALL_STATE(4377)] = 159224, + [SMALL_STATE(4378)] = 159251, + [SMALL_STATE(4379)] = 159278, + [SMALL_STATE(4380)] = 159307, + [SMALL_STATE(4381)] = 159338, + [SMALL_STATE(4382)] = 159369, + [SMALL_STATE(4383)] = 159400, + [SMALL_STATE(4384)] = 159431, + [SMALL_STATE(4385)] = 159454, + [SMALL_STATE(4386)] = 159485, + [SMALL_STATE(4387)] = 159508, + [SMALL_STATE(4388)] = 159531, + [SMALL_STATE(4389)] = 159562, + [SMALL_STATE(4390)] = 159581, + [SMALL_STATE(4391)] = 159612, + [SMALL_STATE(4392)] = 159639, + [SMALL_STATE(4393)] = 159670, + [SMALL_STATE(4394)] = 159697, + [SMALL_STATE(4395)] = 159728, + [SMALL_STATE(4396)] = 159759, + [SMALL_STATE(4397)] = 159790, + [SMALL_STATE(4398)] = 159809, + [SMALL_STATE(4399)] = 159830, + [SMALL_STATE(4400)] = 159861, + [SMALL_STATE(4401)] = 159888, + [SMALL_STATE(4402)] = 159915, + [SMALL_STATE(4403)] = 159942, + [SMALL_STATE(4404)] = 159967, + [SMALL_STATE(4405)] = 159994, + [SMALL_STATE(4406)] = 160021, + [SMALL_STATE(4407)] = 160048, + [SMALL_STATE(4408)] = 160075, + [SMALL_STATE(4409)] = 160094, + [SMALL_STATE(4410)] = 160125, + [SMALL_STATE(4411)] = 160152, + [SMALL_STATE(4412)] = 160183, + [SMALL_STATE(4413)] = 160214, + [SMALL_STATE(4414)] = 160245, + [SMALL_STATE(4415)] = 160272, + [SMALL_STATE(4416)] = 160303, + [SMALL_STATE(4417)] = 160330, + [SMALL_STATE(4418)] = 160357, + [SMALL_STATE(4419)] = 160388, + [SMALL_STATE(4420)] = 160407, + [SMALL_STATE(4421)] = 160438, + [SMALL_STATE(4422)] = 160469, + [SMALL_STATE(4423)] = 160500, + [SMALL_STATE(4424)] = 160527, + [SMALL_STATE(4425)] = 160546, + [SMALL_STATE(4426)] = 160573, + [SMALL_STATE(4427)] = 160592, + [SMALL_STATE(4428)] = 160619, + [SMALL_STATE(4429)] = 160646, + [SMALL_STATE(4430)] = 160673, + [SMALL_STATE(4431)] = 160700, + [SMALL_STATE(4432)] = 160721, + [SMALL_STATE(4433)] = 160748, + [SMALL_STATE(4434)] = 160775, + [SMALL_STATE(4435)] = 160806, + [SMALL_STATE(4436)] = 160833, + [SMALL_STATE(4437)] = 160860, + [SMALL_STATE(4438)] = 160879, + [SMALL_STATE(4439)] = 160898, + [SMALL_STATE(4440)] = 160925, + [SMALL_STATE(4441)] = 160952, + [SMALL_STATE(4442)] = 160971, + [SMALL_STATE(4443)] = 161002, + [SMALL_STATE(4444)] = 161029, + [SMALL_STATE(4445)] = 161056, + [SMALL_STATE(4446)] = 161087, + [SMALL_STATE(4447)] = 161114, + [SMALL_STATE(4448)] = 161141, + [SMALL_STATE(4449)] = 161172, + [SMALL_STATE(4450)] = 161199, + [SMALL_STATE(4451)] = 161226, + [SMALL_STATE(4452)] = 161257, + [SMALL_STATE(4453)] = 161288, + [SMALL_STATE(4454)] = 161315, + [SMALL_STATE(4455)] = 161334, + [SMALL_STATE(4456)] = 161357, + [SMALL_STATE(4457)] = 161388, + [SMALL_STATE(4458)] = 161411, + [SMALL_STATE(4459)] = 161442, + [SMALL_STATE(4460)] = 161473, + [SMALL_STATE(4461)] = 161500, + [SMALL_STATE(4462)] = 161531, + [SMALL_STATE(4463)] = 161558, + [SMALL_STATE(4464)] = 161585, + [SMALL_STATE(4465)] = 161616, + [SMALL_STATE(4466)] = 161643, + [SMALL_STATE(4467)] = 161674, + [SMALL_STATE(4468)] = 161705, + [SMALL_STATE(4469)] = 161736, + [SMALL_STATE(4470)] = 161767, + [SMALL_STATE(4471)] = 161798, + [SMALL_STATE(4472)] = 161829, + [SMALL_STATE(4473)] = 161860, + [SMALL_STATE(4474)] = 161887, + [SMALL_STATE(4475)] = 161914, + [SMALL_STATE(4476)] = 161945, + [SMALL_STATE(4477)] = 161976, + [SMALL_STATE(4478)] = 162007, + [SMALL_STATE(4479)] = 162026, + [SMALL_STATE(4480)] = 162053, + [SMALL_STATE(4481)] = 162080, + [SMALL_STATE(4482)] = 162111, + [SMALL_STATE(4483)] = 162142, + [SMALL_STATE(4484)] = 162169, + [SMALL_STATE(4485)] = 162200, + [SMALL_STATE(4486)] = 162229, + [SMALL_STATE(4487)] = 162252, + [SMALL_STATE(4488)] = 162275, + [SMALL_STATE(4489)] = 162298, + [SMALL_STATE(4490)] = 162327, + [SMALL_STATE(4491)] = 162356, + [SMALL_STATE(4492)] = 162383, + [SMALL_STATE(4493)] = 162414, + [SMALL_STATE(4494)] = 162441, + [SMALL_STATE(4495)] = 162468, + [SMALL_STATE(4496)] = 162495, + [SMALL_STATE(4497)] = 162522, + [SMALL_STATE(4498)] = 162549, + [SMALL_STATE(4499)] = 162576, + [SMALL_STATE(4500)] = 162607, + [SMALL_STATE(4501)] = 162630, + [SMALL_STATE(4502)] = 162661, + [SMALL_STATE(4503)] = 162680, + [SMALL_STATE(4504)] = 162711, + [SMALL_STATE(4505)] = 162742, + [SMALL_STATE(4506)] = 162773, + [SMALL_STATE(4507)] = 162804, + [SMALL_STATE(4508)] = 162827, + [SMALL_STATE(4509)] = 162856, + [SMALL_STATE(4510)] = 162879, + [SMALL_STATE(4511)] = 162898, + [SMALL_STATE(4512)] = 162925, + [SMALL_STATE(4513)] = 162944, + [SMALL_STATE(4514)] = 162963, + [SMALL_STATE(4515)] = 162986, + [SMALL_STATE(4516)] = 163009, + [SMALL_STATE(4517)] = 163032, + [SMALL_STATE(4518)] = 163055, + [SMALL_STATE(4519)] = 163084, + [SMALL_STATE(4520)] = 163111, + [SMALL_STATE(4521)] = 163142, + [SMALL_STATE(4522)] = 163173, + [SMALL_STATE(4523)] = 163200, + [SMALL_STATE(4524)] = 163229, + [SMALL_STATE(4525)] = 163258, + [SMALL_STATE(4526)] = 163287, + [SMALL_STATE(4527)] = 163306, + [SMALL_STATE(4528)] = 163325, + [SMALL_STATE(4529)] = 163354, + [SMALL_STATE(4530)] = 163377, + [SMALL_STATE(4531)] = 163400, + [SMALL_STATE(4532)] = 163419, + [SMALL_STATE(4533)] = 163442, + [SMALL_STATE(4534)] = 163471, + [SMALL_STATE(4535)] = 163494, + [SMALL_STATE(4536)] = 163525, + [SMALL_STATE(4537)] = 163556, + [SMALL_STATE(4538)] = 163585, + [SMALL_STATE(4539)] = 163614, + [SMALL_STATE(4540)] = 163637, + [SMALL_STATE(4541)] = 163666, + [SMALL_STATE(4542)] = 163693, + [SMALL_STATE(4543)] = 163720, + [SMALL_STATE(4544)] = 163743, + [SMALL_STATE(4545)] = 163766, + [SMALL_STATE(4546)] = 163795, + [SMALL_STATE(4547)] = 163818, + [SMALL_STATE(4548)] = 163845, + [SMALL_STATE(4549)] = 163868, + [SMALL_STATE(4550)] = 163899, + [SMALL_STATE(4551)] = 163922, + [SMALL_STATE(4552)] = 163949, + [SMALL_STATE(4553)] = 163976, + [SMALL_STATE(4554)] = 163999, + [SMALL_STATE(4555)] = 164020, + [SMALL_STATE(4556)] = 164047, + [SMALL_STATE(4557)] = 164074, + [SMALL_STATE(4558)] = 164097, + [SMALL_STATE(4559)] = 164120, + [SMALL_STATE(4560)] = 164151, + [SMALL_STATE(4561)] = 164174, + [SMALL_STATE(4562)] = 164193, + [SMALL_STATE(4563)] = 164222, + [SMALL_STATE(4564)] = 164243, + [SMALL_STATE(4565)] = 164274, + [SMALL_STATE(4566)] = 164305, + [SMALL_STATE(4567)] = 164330, + [SMALL_STATE(4568)] = 164349, + [SMALL_STATE(4569)] = 164372, + [SMALL_STATE(4570)] = 164403, + [SMALL_STATE(4571)] = 164434, + [SMALL_STATE(4572)] = 164463, + [SMALL_STATE(4573)] = 164482, + [SMALL_STATE(4574)] = 164503, + [SMALL_STATE(4575)] = 164530, + [SMALL_STATE(4576)] = 164557, + [SMALL_STATE(4577)] = 164584, + [SMALL_STATE(4578)] = 164611, + [SMALL_STATE(4579)] = 164638, + [SMALL_STATE(4580)] = 164669, + [SMALL_STATE(4581)] = 164688, + [SMALL_STATE(4582)] = 164709, + [SMALL_STATE(4583)] = 164728, + [SMALL_STATE(4584)] = 164759, + [SMALL_STATE(4585)] = 164788, + [SMALL_STATE(4586)] = 164819, + [SMALL_STATE(4587)] = 164850, + [SMALL_STATE(4588)] = 164881, + [SMALL_STATE(4589)] = 164900, + [SMALL_STATE(4590)] = 164931, + [SMALL_STATE(4591)] = 164962, + [SMALL_STATE(4592)] = 164993, + [SMALL_STATE(4593)] = 165020, + [SMALL_STATE(4594)] = 165047, + [SMALL_STATE(4595)] = 165074, + [SMALL_STATE(4596)] = 165093, + [SMALL_STATE(4597)] = 165120, + [SMALL_STATE(4598)] = 165147, + [SMALL_STATE(4599)] = 165174, + [SMALL_STATE(4600)] = 165193, + [SMALL_STATE(4601)] = 165212, + [SMALL_STATE(4602)] = 165231, + [SMALL_STATE(4603)] = 165258, + [SMALL_STATE(4604)] = 165285, + [SMALL_STATE(4605)] = 165312, + [SMALL_STATE(4606)] = 165339, + [SMALL_STATE(4607)] = 165358, + [SMALL_STATE(4608)] = 165377, + [SMALL_STATE(4609)] = 165408, + [SMALL_STATE(4610)] = 165439, + [SMALL_STATE(4611)] = 165466, + [SMALL_STATE(4612)] = 165493, + [SMALL_STATE(4613)] = 165524, + [SMALL_STATE(4614)] = 165546, + [SMALL_STATE(4615)] = 165568, + [SMALL_STATE(4616)] = 165588, + [SMALL_STATE(4617)] = 165614, + [SMALL_STATE(4618)] = 165634, + [SMALL_STATE(4619)] = 165662, + [SMALL_STATE(4620)] = 165684, + [SMALL_STATE(4621)] = 165704, + [SMALL_STATE(4622)] = 165732, + [SMALL_STATE(4623)] = 165760, + [SMALL_STATE(4624)] = 165780, + [SMALL_STATE(4625)] = 165806, + [SMALL_STATE(4626)] = 165826, + [SMALL_STATE(4627)] = 165854, + [SMALL_STATE(4628)] = 165882, + [SMALL_STATE(4629)] = 165902, + [SMALL_STATE(4630)] = 165928, + [SMALL_STATE(4631)] = 165950, + [SMALL_STATE(4632)] = 165972, + [SMALL_STATE(4633)] = 165994, + [SMALL_STATE(4634)] = 166016, + [SMALL_STATE(4635)] = 166034, + [SMALL_STATE(4636)] = 166060, + [SMALL_STATE(4637)] = 166082, + [SMALL_STATE(4638)] = 166110, + [SMALL_STATE(4639)] = 166128, + [SMALL_STATE(4640)] = 166156, + [SMALL_STATE(4641)] = 166174, + [SMALL_STATE(4642)] = 166202, + [SMALL_STATE(4643)] = 166228, + [SMALL_STATE(4644)] = 166250, + [SMALL_STATE(4645)] = 166278, + [SMALL_STATE(4646)] = 166296, + [SMALL_STATE(4647)] = 166314, + [SMALL_STATE(4648)] = 166342, + [SMALL_STATE(4649)] = 166364, + [SMALL_STATE(4650)] = 166392, + [SMALL_STATE(4651)] = 166420, + [SMALL_STATE(4652)] = 166448, + [SMALL_STATE(4653)] = 166470, + [SMALL_STATE(4654)] = 166498, + [SMALL_STATE(4655)] = 166520, + [SMALL_STATE(4656)] = 166546, + [SMALL_STATE(4657)] = 166574, + [SMALL_STATE(4658)] = 166596, + [SMALL_STATE(4659)] = 166618, + [SMALL_STATE(4660)] = 166644, + [SMALL_STATE(4661)] = 166672, + [SMALL_STATE(4662)] = 166690, + [SMALL_STATE(4663)] = 166718, + [SMALL_STATE(4664)] = 166744, + [SMALL_STATE(4665)] = 166762, + [SMALL_STATE(4666)] = 166780, + [SMALL_STATE(4667)] = 166798, + [SMALL_STATE(4668)] = 166820, + [SMALL_STATE(4669)] = 166838, + [SMALL_STATE(4670)] = 166860, + [SMALL_STATE(4671)] = 166888, + [SMALL_STATE(4672)] = 166916, + [SMALL_STATE(4673)] = 166942, + [SMALL_STATE(4674)] = 166970, + [SMALL_STATE(4675)] = 166998, + [SMALL_STATE(4676)] = 167026, + [SMALL_STATE(4677)] = 167054, + [SMALL_STATE(4678)] = 167072, + [SMALL_STATE(4679)] = 167098, + [SMALL_STATE(4680)] = 167120, + [SMALL_STATE(4681)] = 167142, + [SMALL_STATE(4682)] = 167164, + [SMALL_STATE(4683)] = 167186, + [SMALL_STATE(4684)] = 167208, + [SMALL_STATE(4685)] = 167236, + [SMALL_STATE(4686)] = 167264, + [SMALL_STATE(4687)] = 167284, + [SMALL_STATE(4688)] = 167302, + [SMALL_STATE(4689)] = 167324, + [SMALL_STATE(4690)] = 167342, + [SMALL_STATE(4691)] = 167370, + [SMALL_STATE(4692)] = 167388, + [SMALL_STATE(4693)] = 167416, + [SMALL_STATE(4694)] = 167444, + [SMALL_STATE(4695)] = 167462, + [SMALL_STATE(4696)] = 167480, + [SMALL_STATE(4697)] = 167508, + [SMALL_STATE(4698)] = 167536, + [SMALL_STATE(4699)] = 167554, + [SMALL_STATE(4700)] = 167582, + [SMALL_STATE(4701)] = 167604, + [SMALL_STATE(4702)] = 167632, + [SMALL_STATE(4703)] = 167660, + [SMALL_STATE(4704)] = 167686, + [SMALL_STATE(4705)] = 167704, + [SMALL_STATE(4706)] = 167722, + [SMALL_STATE(4707)] = 167744, + [SMALL_STATE(4708)] = 167772, + [SMALL_STATE(4709)] = 167800, + [SMALL_STATE(4710)] = 167822, + [SMALL_STATE(4711)] = 167840, + [SMALL_STATE(4712)] = 167858, + [SMALL_STATE(4713)] = 167880, + [SMALL_STATE(4714)] = 167902, + [SMALL_STATE(4715)] = 167922, + [SMALL_STATE(4716)] = 167950, + [SMALL_STATE(4717)] = 167976, + [SMALL_STATE(4718)] = 167994, + [SMALL_STATE(4719)] = 168016, + [SMALL_STATE(4720)] = 168038, + [SMALL_STATE(4721)] = 168066, + [SMALL_STATE(4722)] = 168084, + [SMALL_STATE(4723)] = 168106, + [SMALL_STATE(4724)] = 168124, + [SMALL_STATE(4725)] = 168146, + [SMALL_STATE(4726)] = 168168, + [SMALL_STATE(4727)] = 168196, + [SMALL_STATE(4728)] = 168224, + [SMALL_STATE(4729)] = 168242, + [SMALL_STATE(4730)] = 168264, + [SMALL_STATE(4731)] = 168292, + [SMALL_STATE(4732)] = 168320, + [SMALL_STATE(4733)] = 168348, + [SMALL_STATE(4734)] = 168370, + [SMALL_STATE(4735)] = 168388, + [SMALL_STATE(4736)] = 168410, + [SMALL_STATE(4737)] = 168438, + [SMALL_STATE(4738)] = 168464, + [SMALL_STATE(4739)] = 168492, + [SMALL_STATE(4740)] = 168520, + [SMALL_STATE(4741)] = 168542, + [SMALL_STATE(4742)] = 168568, + [SMALL_STATE(4743)] = 168590, + [SMALL_STATE(4744)] = 168612, + [SMALL_STATE(4745)] = 168636, + [SMALL_STATE(4746)] = 168658, + [SMALL_STATE(4747)] = 168684, + [SMALL_STATE(4748)] = 168712, + [SMALL_STATE(4749)] = 168734, + [SMALL_STATE(4750)] = 168762, + [SMALL_STATE(4751)] = 168790, + [SMALL_STATE(4752)] = 168808, + [SMALL_STATE(4753)] = 168836, + [SMALL_STATE(4754)] = 168854, + [SMALL_STATE(4755)] = 168882, + [SMALL_STATE(4756)] = 168900, + [SMALL_STATE(4757)] = 168928, + [SMALL_STATE(4758)] = 168950, + [SMALL_STATE(4759)] = 168978, + [SMALL_STATE(4760)] = 169000, + [SMALL_STATE(4761)] = 169022, + [SMALL_STATE(4762)] = 169044, + [SMALL_STATE(4763)] = 169062, + [SMALL_STATE(4764)] = 169080, + [SMALL_STATE(4765)] = 169102, + [SMALL_STATE(4766)] = 169124, + [SMALL_STATE(4767)] = 169152, + [SMALL_STATE(4768)] = 169180, + [SMALL_STATE(4769)] = 169202, + [SMALL_STATE(4770)] = 169224, + [SMALL_STATE(4771)] = 169246, + [SMALL_STATE(4772)] = 169268, + [SMALL_STATE(4773)] = 169290, + [SMALL_STATE(4774)] = 169312, + [SMALL_STATE(4775)] = 169330, + [SMALL_STATE(4776)] = 169352, + [SMALL_STATE(4777)] = 169378, + [SMALL_STATE(4778)] = 169400, + [SMALL_STATE(4779)] = 169422, + [SMALL_STATE(4780)] = 169450, + [SMALL_STATE(4781)] = 169470, + [SMALL_STATE(4782)] = 169498, + [SMALL_STATE(4783)] = 169526, + [SMALL_STATE(4784)] = 169544, + [SMALL_STATE(4785)] = 169572, + [SMALL_STATE(4786)] = 169590, + [SMALL_STATE(4787)] = 169608, + [SMALL_STATE(4788)] = 169626, + [SMALL_STATE(4789)] = 169652, + [SMALL_STATE(4790)] = 169670, + [SMALL_STATE(4791)] = 169688, + [SMALL_STATE(4792)] = 169712, + [SMALL_STATE(4793)] = 169730, + [SMALL_STATE(4794)] = 169748, + [SMALL_STATE(4795)] = 169766, + [SMALL_STATE(4796)] = 169794, + [SMALL_STATE(4797)] = 169820, + [SMALL_STATE(4798)] = 169842, + [SMALL_STATE(4799)] = 169864, + [SMALL_STATE(4800)] = 169892, + [SMALL_STATE(4801)] = 169918, + [SMALL_STATE(4802)] = 169946, + [SMALL_STATE(4803)] = 169974, + [SMALL_STATE(4804)] = 170002, + [SMALL_STATE(4805)] = 170024, + [SMALL_STATE(4806)] = 170046, + [SMALL_STATE(4807)] = 170072, + [SMALL_STATE(4808)] = 170090, + [SMALL_STATE(4809)] = 170118, + [SMALL_STATE(4810)] = 170136, + [SMALL_STATE(4811)] = 170164, + [SMALL_STATE(4812)] = 170192, + [SMALL_STATE(4813)] = 170220, + [SMALL_STATE(4814)] = 170246, + [SMALL_STATE(4815)] = 170272, + [SMALL_STATE(4816)] = 170294, + [SMALL_STATE(4817)] = 170322, + [SMALL_STATE(4818)] = 170350, + [SMALL_STATE(4819)] = 170376, + [SMALL_STATE(4820)] = 170398, + [SMALL_STATE(4821)] = 170426, + [SMALL_STATE(4822)] = 170454, + [SMALL_STATE(4823)] = 170482, + [SMALL_STATE(4824)] = 170510, + [SMALL_STATE(4825)] = 170538, + [SMALL_STATE(4826)] = 170558, + [SMALL_STATE(4827)] = 170586, + [SMALL_STATE(4828)] = 170610, + [SMALL_STATE(4829)] = 170628, + [SMALL_STATE(4830)] = 170656, + [SMALL_STATE(4831)] = 170684, + [SMALL_STATE(4832)] = 170702, + [SMALL_STATE(4833)] = 170722, + [SMALL_STATE(4834)] = 170750, + [SMALL_STATE(4835)] = 170768, + [SMALL_STATE(4836)] = 170796, + [SMALL_STATE(4837)] = 170824, + [SMALL_STATE(4838)] = 170850, + [SMALL_STATE(4839)] = 170878, + [SMALL_STATE(4840)] = 170900, + [SMALL_STATE(4841)] = 170926, + [SMALL_STATE(4842)] = 170954, + [SMALL_STATE(4843)] = 170982, + [SMALL_STATE(4844)] = 171010, + [SMALL_STATE(4845)] = 171035, + [SMALL_STATE(4846)] = 171056, + [SMALL_STATE(4847)] = 171077, + [SMALL_STATE(4848)] = 171094, + [SMALL_STATE(4849)] = 171119, + [SMALL_STATE(4850)] = 171136, + [SMALL_STATE(4851)] = 171161, + [SMALL_STATE(4852)] = 171182, + [SMALL_STATE(4853)] = 171199, + [SMALL_STATE(4854)] = 171220, + [SMALL_STATE(4855)] = 171245, + [SMALL_STATE(4856)] = 171266, + [SMALL_STATE(4857)] = 171291, + [SMALL_STATE(4858)] = 171308, + [SMALL_STATE(4859)] = 171325, + [SMALL_STATE(4860)] = 171342, + [SMALL_STATE(4861)] = 171363, + [SMALL_STATE(4862)] = 171388, + [SMALL_STATE(4863)] = 171405, + [SMALL_STATE(4864)] = 171422, + [SMALL_STATE(4865)] = 171447, + [SMALL_STATE(4866)] = 171472, + [SMALL_STATE(4867)] = 171489, + [SMALL_STATE(4868)] = 171510, + [SMALL_STATE(4869)] = 171527, + [SMALL_STATE(4870)] = 171552, + [SMALL_STATE(4871)] = 171569, + [SMALL_STATE(4872)] = 171594, + [SMALL_STATE(4873)] = 171615, + [SMALL_STATE(4874)] = 171640, + [SMALL_STATE(4875)] = 171661, + [SMALL_STATE(4876)] = 171686, + [SMALL_STATE(4877)] = 171711, + [SMALL_STATE(4878)] = 171732, + [SMALL_STATE(4879)] = 171749, + [SMALL_STATE(4880)] = 171770, + [SMALL_STATE(4881)] = 171787, + [SMALL_STATE(4882)] = 171808, + [SMALL_STATE(4883)] = 171829, + [SMALL_STATE(4884)] = 171850, + [SMALL_STATE(4885)] = 171871, + [SMALL_STATE(4886)] = 171896, + [SMALL_STATE(4887)] = 171921, + [SMALL_STATE(4888)] = 171946, + [SMALL_STATE(4889)] = 171967, + [SMALL_STATE(4890)] = 171988, + [SMALL_STATE(4891)] = 172005, + [SMALL_STATE(4892)] = 172030, + [SMALL_STATE(4893)] = 172051, + [SMALL_STATE(4894)] = 172068, + [SMALL_STATE(4895)] = 172089, + [SMALL_STATE(4896)] = 172106, + [SMALL_STATE(4897)] = 172123, + [SMALL_STATE(4898)] = 172144, + [SMALL_STATE(4899)] = 172165, + [SMALL_STATE(4900)] = 172182, + [SMALL_STATE(4901)] = 172199, + [SMALL_STATE(4902)] = 172220, + [SMALL_STATE(4903)] = 172241, + [SMALL_STATE(4904)] = 172262, + [SMALL_STATE(4905)] = 172279, + [SMALL_STATE(4906)] = 172300, + [SMALL_STATE(4907)] = 172317, + [SMALL_STATE(4908)] = 172342, + [SMALL_STATE(4909)] = 172363, + [SMALL_STATE(4910)] = 172388, + [SMALL_STATE(4911)] = 172409, + [SMALL_STATE(4912)] = 172430, + [SMALL_STATE(4913)] = 172451, + [SMALL_STATE(4914)] = 172476, + [SMALL_STATE(4915)] = 172501, + [SMALL_STATE(4916)] = 172518, + [SMALL_STATE(4917)] = 172535, + [SMALL_STATE(4918)] = 172556, + [SMALL_STATE(4919)] = 172581, + [SMALL_STATE(4920)] = 172606, + [SMALL_STATE(4921)] = 172627, + [SMALL_STATE(4922)] = 172652, + [SMALL_STATE(4923)] = 172677, + [SMALL_STATE(4924)] = 172698, + [SMALL_STATE(4925)] = 172723, + [SMALL_STATE(4926)] = 172744, + [SMALL_STATE(4927)] = 172761, + [SMALL_STATE(4928)] = 172782, + [SMALL_STATE(4929)] = 172807, + [SMALL_STATE(4930)] = 172828, + [SMALL_STATE(4931)] = 172853, + [SMALL_STATE(4932)] = 172878, + [SMALL_STATE(4933)] = 172899, + [SMALL_STATE(4934)] = 172924, + [SMALL_STATE(4935)] = 172949, + [SMALL_STATE(4936)] = 172966, + [SMALL_STATE(4937)] = 172987, + [SMALL_STATE(4938)] = 173004, + [SMALL_STATE(4939)] = 173029, + [SMALL_STATE(4940)] = 173050, + [SMALL_STATE(4941)] = 173071, + [SMALL_STATE(4942)] = 173096, + [SMALL_STATE(4943)] = 173117, + [SMALL_STATE(4944)] = 173134, + [SMALL_STATE(4945)] = 173151, + [SMALL_STATE(4946)] = 173168, + [SMALL_STATE(4947)] = 173185, + [SMALL_STATE(4948)] = 173206, + [SMALL_STATE(4949)] = 173223, + [SMALL_STATE(4950)] = 173244, + [SMALL_STATE(4951)] = 173269, + [SMALL_STATE(4952)] = 173290, + [SMALL_STATE(4953)] = 173307, + [SMALL_STATE(4954)] = 173328, + [SMALL_STATE(4955)] = 173353, + [SMALL_STATE(4956)] = 173378, + [SMALL_STATE(4957)] = 173395, + [SMALL_STATE(4958)] = 173416, + [SMALL_STATE(4959)] = 173437, + [SMALL_STATE(4960)] = 173458, + [SMALL_STATE(4961)] = 173483, + [SMALL_STATE(4962)] = 173504, + [SMALL_STATE(4963)] = 173529, + [SMALL_STATE(4964)] = 173546, + [SMALL_STATE(4965)] = 173563, + [SMALL_STATE(4966)] = 173584, + [SMALL_STATE(4967)] = 173605, + [SMALL_STATE(4968)] = 173622, + [SMALL_STATE(4969)] = 173639, + [SMALL_STATE(4970)] = 173660, + [SMALL_STATE(4971)] = 173677, + [SMALL_STATE(4972)] = 173698, + [SMALL_STATE(4973)] = 173715, + [SMALL_STATE(4974)] = 173736, + [SMALL_STATE(4975)] = 173753, + [SMALL_STATE(4976)] = 173774, + [SMALL_STATE(4977)] = 173799, + [SMALL_STATE(4978)] = 173820, + [SMALL_STATE(4979)] = 173837, + [SMALL_STATE(4980)] = 173862, + [SMALL_STATE(4981)] = 173887, + [SMALL_STATE(4982)] = 173912, + [SMALL_STATE(4983)] = 173935, + [SMALL_STATE(4984)] = 173952, + [SMALL_STATE(4985)] = 173973, + [SMALL_STATE(4986)] = 173998, + [SMALL_STATE(4987)] = 174019, + [SMALL_STATE(4988)] = 174038, + [SMALL_STATE(4989)] = 174061, + [SMALL_STATE(4990)] = 174082, + [SMALL_STATE(4991)] = 174099, + [SMALL_STATE(4992)] = 174124, + [SMALL_STATE(4993)] = 174145, + [SMALL_STATE(4994)] = 174162, + [SMALL_STATE(4995)] = 174183, + [SMALL_STATE(4996)] = 174200, + [SMALL_STATE(4997)] = 174217, + [SMALL_STATE(4998)] = 174238, + [SMALL_STATE(4999)] = 174263, + [SMALL_STATE(5000)] = 174288, + [SMALL_STATE(5001)] = 174313, + [SMALL_STATE(5002)] = 174334, + [SMALL_STATE(5003)] = 174355, + [SMALL_STATE(5004)] = 174380, + [SMALL_STATE(5005)] = 174397, + [SMALL_STATE(5006)] = 174418, + [SMALL_STATE(5007)] = 174443, + [SMALL_STATE(5008)] = 174468, + [SMALL_STATE(5009)] = 174489, + [SMALL_STATE(5010)] = 174514, + [SMALL_STATE(5011)] = 174535, + [SMALL_STATE(5012)] = 174560, + [SMALL_STATE(5013)] = 174577, + [SMALL_STATE(5014)] = 174602, + [SMALL_STATE(5015)] = 174627, + [SMALL_STATE(5016)] = 174652, + [SMALL_STATE(5017)] = 174677, + [SMALL_STATE(5018)] = 174702, + [SMALL_STATE(5019)] = 174723, + [SMALL_STATE(5020)] = 174744, + [SMALL_STATE(5021)] = 174769, + [SMALL_STATE(5022)] = 174790, + [SMALL_STATE(5023)] = 174815, + [SMALL_STATE(5024)] = 174836, + [SMALL_STATE(5025)] = 174853, + [SMALL_STATE(5026)] = 174874, + [SMALL_STATE(5027)] = 174891, + [SMALL_STATE(5028)] = 174916, + [SMALL_STATE(5029)] = 174941, + [SMALL_STATE(5030)] = 174966, + [SMALL_STATE(5031)] = 174987, + [SMALL_STATE(5032)] = 175008, + [SMALL_STATE(5033)] = 175033, + [SMALL_STATE(5034)] = 175058, + [SMALL_STATE(5035)] = 175083, + [SMALL_STATE(5036)] = 175108, + [SMALL_STATE(5037)] = 175129, + [SMALL_STATE(5038)] = 175154, + [SMALL_STATE(5039)] = 175171, + [SMALL_STATE(5040)] = 175188, + [SMALL_STATE(5041)] = 175209, + [SMALL_STATE(5042)] = 175234, + [SMALL_STATE(5043)] = 175255, + [SMALL_STATE(5044)] = 175280, + [SMALL_STATE(5045)] = 175297, + [SMALL_STATE(5046)] = 175322, + [SMALL_STATE(5047)] = 175345, + [SMALL_STATE(5048)] = 175370, + [SMALL_STATE(5049)] = 175391, + [SMALL_STATE(5050)] = 175408, + [SMALL_STATE(5051)] = 175433, + [SMALL_STATE(5052)] = 175450, + [SMALL_STATE(5053)] = 175467, + [SMALL_STATE(5054)] = 175488, + [SMALL_STATE(5055)] = 175509, + [SMALL_STATE(5056)] = 175526, + [SMALL_STATE(5057)] = 175547, + [SMALL_STATE(5058)] = 175572, + [SMALL_STATE(5059)] = 175589, + [SMALL_STATE(5060)] = 175610, + [SMALL_STATE(5061)] = 175635, + [SMALL_STATE(5062)] = 175652, + [SMALL_STATE(5063)] = 175677, + [SMALL_STATE(5064)] = 175702, + [SMALL_STATE(5065)] = 175719, + [SMALL_STATE(5066)] = 175742, + [SMALL_STATE(5067)] = 175763, + [SMALL_STATE(5068)] = 175780, + [SMALL_STATE(5069)] = 175805, + [SMALL_STATE(5070)] = 175830, + [SMALL_STATE(5071)] = 175847, + [SMALL_STATE(5072)] = 175864, + [SMALL_STATE(5073)] = 175881, + [SMALL_STATE(5074)] = 175904, + [SMALL_STATE(5075)] = 175927, + [SMALL_STATE(5076)] = 175944, + [SMALL_STATE(5077)] = 175961, + [SMALL_STATE(5078)] = 175982, + [SMALL_STATE(5079)] = 176003, + [SMALL_STATE(5080)] = 176020, + [SMALL_STATE(5081)] = 176037, + [SMALL_STATE(5082)] = 176054, + [SMALL_STATE(5083)] = 176071, + [SMALL_STATE(5084)] = 176088, + [SMALL_STATE(5085)] = 176105, + [SMALL_STATE(5086)] = 176130, + [SMALL_STATE(5087)] = 176147, + [SMALL_STATE(5088)] = 176164, + [SMALL_STATE(5089)] = 176181, + [SMALL_STATE(5090)] = 176202, + [SMALL_STATE(5091)] = 176223, + [SMALL_STATE(5092)] = 176244, + [SMALL_STATE(5093)] = 176261, + [SMALL_STATE(5094)] = 176286, + [SMALL_STATE(5095)] = 176311, + [SMALL_STATE(5096)] = 176328, + [SMALL_STATE(5097)] = 176345, + [SMALL_STATE(5098)] = 176370, + [SMALL_STATE(5099)] = 176387, + [SMALL_STATE(5100)] = 176410, + [SMALL_STATE(5101)] = 176431, + [SMALL_STATE(5102)] = 176454, + [SMALL_STATE(5103)] = 176479, + [SMALL_STATE(5104)] = 176500, + [SMALL_STATE(5105)] = 176521, + [SMALL_STATE(5106)] = 176538, + [SMALL_STATE(5107)] = 176563, + [SMALL_STATE(5108)] = 176588, + [SMALL_STATE(5109)] = 176613, + [SMALL_STATE(5110)] = 176630, + [SMALL_STATE(5111)] = 176651, + [SMALL_STATE(5112)] = 176676, + [SMALL_STATE(5113)] = 176697, + [SMALL_STATE(5114)] = 176714, + [SMALL_STATE(5115)] = 176739, + [SMALL_STATE(5116)] = 176756, + [SMALL_STATE(5117)] = 176773, + [SMALL_STATE(5118)] = 176790, + [SMALL_STATE(5119)] = 176811, + [SMALL_STATE(5120)] = 176836, + [SMALL_STATE(5121)] = 176857, + [SMALL_STATE(5122)] = 176874, + [SMALL_STATE(5123)] = 176897, + [SMALL_STATE(5124)] = 176922, + [SMALL_STATE(5125)] = 176947, + [SMALL_STATE(5126)] = 176968, + [SMALL_STATE(5127)] = 176989, + [SMALL_STATE(5128)] = 177006, + [SMALL_STATE(5129)] = 177031, + [SMALL_STATE(5130)] = 177052, + [SMALL_STATE(5131)] = 177069, + [SMALL_STATE(5132)] = 177094, + [SMALL_STATE(5133)] = 177111, + [SMALL_STATE(5134)] = 177132, + [SMALL_STATE(5135)] = 177149, + [SMALL_STATE(5136)] = 177166, + [SMALL_STATE(5137)] = 177183, + [SMALL_STATE(5138)] = 177208, + [SMALL_STATE(5139)] = 177225, + [SMALL_STATE(5140)] = 177250, + [SMALL_STATE(5141)] = 177267, + [SMALL_STATE(5142)] = 177292, + [SMALL_STATE(5143)] = 177317, + [SMALL_STATE(5144)] = 177334, + [SMALL_STATE(5145)] = 177351, + [SMALL_STATE(5146)] = 177372, + [SMALL_STATE(5147)] = 177389, + [SMALL_STATE(5148)] = 177406, + [SMALL_STATE(5149)] = 177431, + [SMALL_STATE(5150)] = 177452, + [SMALL_STATE(5151)] = 177469, + [SMALL_STATE(5152)] = 177494, + [SMALL_STATE(5153)] = 177515, + [SMALL_STATE(5154)] = 177536, + [SMALL_STATE(5155)] = 177561, + [SMALL_STATE(5156)] = 177582, + [SMALL_STATE(5157)] = 177599, + [SMALL_STATE(5158)] = 177624, + [SMALL_STATE(5159)] = 177641, + [SMALL_STATE(5160)] = 177658, + [SMALL_STATE(5161)] = 177675, + [SMALL_STATE(5162)] = 177700, + [SMALL_STATE(5163)] = 177725, + [SMALL_STATE(5164)] = 177746, + [SMALL_STATE(5165)] = 177767, + [SMALL_STATE(5166)] = 177788, + [SMALL_STATE(5167)] = 177809, + [SMALL_STATE(5168)] = 177830, + [SMALL_STATE(5169)] = 177851, + [SMALL_STATE(5170)] = 177868, + [SMALL_STATE(5171)] = 177885, + [SMALL_STATE(5172)] = 177902, + [SMALL_STATE(5173)] = 177923, + [SMALL_STATE(5174)] = 177948, + [SMALL_STATE(5175)] = 177969, + [SMALL_STATE(5176)] = 177986, + [SMALL_STATE(5177)] = 178011, + [SMALL_STATE(5178)] = 178028, + [SMALL_STATE(5179)] = 178049, + [SMALL_STATE(5180)] = 178066, + [SMALL_STATE(5181)] = 178087, + [SMALL_STATE(5182)] = 178112, + [SMALL_STATE(5183)] = 178133, + [SMALL_STATE(5184)] = 178150, + [SMALL_STATE(5185)] = 178167, + [SMALL_STATE(5186)] = 178188, + [SMALL_STATE(5187)] = 178205, + [SMALL_STATE(5188)] = 178222, + [SMALL_STATE(5189)] = 178239, + [SMALL_STATE(5190)] = 178260, + [SMALL_STATE(5191)] = 178277, + [SMALL_STATE(5192)] = 178302, + [SMALL_STATE(5193)] = 178327, + [SMALL_STATE(5194)] = 178348, + [SMALL_STATE(5195)] = 178365, + [SMALL_STATE(5196)] = 178390, + [SMALL_STATE(5197)] = 178415, + [SMALL_STATE(5198)] = 178440, + [SMALL_STATE(5199)] = 178465, + [SMALL_STATE(5200)] = 178490, + [SMALL_STATE(5201)] = 178509, + [SMALL_STATE(5202)] = 178534, + [SMALL_STATE(5203)] = 178557, + [SMALL_STATE(5204)] = 178582, + [SMALL_STATE(5205)] = 178607, + [SMALL_STATE(5206)] = 178624, + [SMALL_STATE(5207)] = 178641, + [SMALL_STATE(5208)] = 178666, + [SMALL_STATE(5209)] = 178691, + [SMALL_STATE(5210)] = 178716, + [SMALL_STATE(5211)] = 178737, + [SMALL_STATE(5212)] = 178758, + [SMALL_STATE(5213)] = 178777, + [SMALL_STATE(5214)] = 178798, + [SMALL_STATE(5215)] = 178815, + [SMALL_STATE(5216)] = 178834, + [SMALL_STATE(5217)] = 178851, + [SMALL_STATE(5218)] = 178876, + [SMALL_STATE(5219)] = 178897, + [SMALL_STATE(5220)] = 178922, + [SMALL_STATE(5221)] = 178943, + [SMALL_STATE(5222)] = 178962, + [SMALL_STATE(5223)] = 178983, + [SMALL_STATE(5224)] = 179004, + [SMALL_STATE(5225)] = 179029, + [SMALL_STATE(5226)] = 179050, + [SMALL_STATE(5227)] = 179075, + [SMALL_STATE(5228)] = 179098, + [SMALL_STATE(5229)] = 179119, + [SMALL_STATE(5230)] = 179140, + [SMALL_STATE(5231)] = 179161, + [SMALL_STATE(5232)] = 179182, + [SMALL_STATE(5233)] = 179207, + [SMALL_STATE(5234)] = 179230, + [SMALL_STATE(5235)] = 179251, + [SMALL_STATE(5236)] = 179272, + [SMALL_STATE(5237)] = 179293, + [SMALL_STATE(5238)] = 179314, + [SMALL_STATE(5239)] = 179335, + [SMALL_STATE(5240)] = 179356, + [SMALL_STATE(5241)] = 179377, + [SMALL_STATE(5242)] = 179394, + [SMALL_STATE(5243)] = 179415, + [SMALL_STATE(5244)] = 179432, + [SMALL_STATE(5245)] = 179455, + [SMALL_STATE(5246)] = 179476, + [SMALL_STATE(5247)] = 179493, + [SMALL_STATE(5248)] = 179518, + [SMALL_STATE(5249)] = 179535, + [SMALL_STATE(5250)] = 179552, + [SMALL_STATE(5251)] = 179569, + [SMALL_STATE(5252)] = 179590, + [SMALL_STATE(5253)] = 179615, + [SMALL_STATE(5254)] = 179632, + [SMALL_STATE(5255)] = 179657, + [SMALL_STATE(5256)] = 179678, + [SMALL_STATE(5257)] = 179703, + [SMALL_STATE(5258)] = 179724, + [SMALL_STATE(5259)] = 179745, + [SMALL_STATE(5260)] = 179768, + [SMALL_STATE(5261)] = 179785, + [SMALL_STATE(5262)] = 179810, + [SMALL_STATE(5263)] = 179827, + [SMALL_STATE(5264)] = 179844, + [SMALL_STATE(5265)] = 179861, + [SMALL_STATE(5266)] = 179878, + [SMALL_STATE(5267)] = 179903, + [SMALL_STATE(5268)] = 179928, + [SMALL_STATE(5269)] = 179951, + [SMALL_STATE(5270)] = 179968, + [SMALL_STATE(5271)] = 179989, + [SMALL_STATE(5272)] = 180014, + [SMALL_STATE(5273)] = 180031, + [SMALL_STATE(5274)] = 180052, + [SMALL_STATE(5275)] = 180077, + [SMALL_STATE(5276)] = 180094, + [SMALL_STATE(5277)] = 180115, + [SMALL_STATE(5278)] = 180132, + [SMALL_STATE(5279)] = 180149, + [SMALL_STATE(5280)] = 180174, + [SMALL_STATE(5281)] = 180191, + [SMALL_STATE(5282)] = 180208, + [SMALL_STATE(5283)] = 180229, + [SMALL_STATE(5284)] = 180246, + [SMALL_STATE(5285)] = 180267, + [SMALL_STATE(5286)] = 180284, + [SMALL_STATE(5287)] = 180301, + [SMALL_STATE(5288)] = 180322, + [SMALL_STATE(5289)] = 180343, + [SMALL_STATE(5290)] = 180360, + [SMALL_STATE(5291)] = 180377, + [SMALL_STATE(5292)] = 180402, + [SMALL_STATE(5293)] = 180419, + [SMALL_STATE(5294)] = 180444, + [SMALL_STATE(5295)] = 180461, + [SMALL_STATE(5296)] = 180478, + [SMALL_STATE(5297)] = 180495, + [SMALL_STATE(5298)] = 180516, + [SMALL_STATE(5299)] = 180533, + [SMALL_STATE(5300)] = 180558, + [SMALL_STATE(5301)] = 180575, + [SMALL_STATE(5302)] = 180600, + [SMALL_STATE(5303)] = 180621, + [SMALL_STATE(5304)] = 180642, + [SMALL_STATE(5305)] = 180659, + [SMALL_STATE(5306)] = 180680, + [SMALL_STATE(5307)] = 180705, + [SMALL_STATE(5308)] = 180722, + [SMALL_STATE(5309)] = 180739, + [SMALL_STATE(5310)] = 180756, + [SMALL_STATE(5311)] = 180777, + [SMALL_STATE(5312)] = 180798, + [SMALL_STATE(5313)] = 180819, + [SMALL_STATE(5314)] = 180844, + [SMALL_STATE(5315)] = 180867, + [SMALL_STATE(5316)] = 180884, + [SMALL_STATE(5317)] = 180905, + [SMALL_STATE(5318)] = 180922, + [SMALL_STATE(5319)] = 180939, + [SMALL_STATE(5320)] = 180960, + [SMALL_STATE(5321)] = 180983, + [SMALL_STATE(5322)] = 181004, + [SMALL_STATE(5323)] = 181025, + [SMALL_STATE(5324)] = 181046, + [SMALL_STATE(5325)] = 181063, + [SMALL_STATE(5326)] = 181084, + [SMALL_STATE(5327)] = 181101, + [SMALL_STATE(5328)] = 181122, + [SMALL_STATE(5329)] = 181143, + [SMALL_STATE(5330)] = 181164, + [SMALL_STATE(5331)] = 181181, + [SMALL_STATE(5332)] = 181202, + [SMALL_STATE(5333)] = 181223, + [SMALL_STATE(5334)] = 181244, + [SMALL_STATE(5335)] = 181267, + [SMALL_STATE(5336)] = 181284, + [SMALL_STATE(5337)] = 181309, + [SMALL_STATE(5338)] = 181326, + [SMALL_STATE(5339)] = 181343, + [SMALL_STATE(5340)] = 181368, + [SMALL_STATE(5341)] = 181389, + [SMALL_STATE(5342)] = 181410, + [SMALL_STATE(5343)] = 181431, + [SMALL_STATE(5344)] = 181454, + [SMALL_STATE(5345)] = 181479, + [SMALL_STATE(5346)] = 181504, + [SMALL_STATE(5347)] = 181529, + [SMALL_STATE(5348)] = 181546, + [SMALL_STATE(5349)] = 181567, + [SMALL_STATE(5350)] = 181584, + [SMALL_STATE(5351)] = 181605, + [SMALL_STATE(5352)] = 181622, + [SMALL_STATE(5353)] = 181643, + [SMALL_STATE(5354)] = 181666, + [SMALL_STATE(5355)] = 181691, + [SMALL_STATE(5356)] = 181712, + [SMALL_STATE(5357)] = 181733, + [SMALL_STATE(5358)] = 181758, + [SMALL_STATE(5359)] = 181775, + [SMALL_STATE(5360)] = 181792, + [SMALL_STATE(5361)] = 181813, + [SMALL_STATE(5362)] = 181834, + [SMALL_STATE(5363)] = 181855, + [SMALL_STATE(5364)] = 181872, + [SMALL_STATE(5365)] = 181889, + [SMALL_STATE(5366)] = 181910, + [SMALL_STATE(5367)] = 181931, + [SMALL_STATE(5368)] = 181952, + [SMALL_STATE(5369)] = 181969, + [SMALL_STATE(5370)] = 181994, + [SMALL_STATE(5371)] = 182019, + [SMALL_STATE(5372)] = 182044, + [SMALL_STATE(5373)] = 182069, + [SMALL_STATE(5374)] = 182090, + [SMALL_STATE(5375)] = 182107, + [SMALL_STATE(5376)] = 182128, + [SMALL_STATE(5377)] = 182149, + [SMALL_STATE(5378)] = 182174, + [SMALL_STATE(5379)] = 182191, + [SMALL_STATE(5380)] = 182212, + [SMALL_STATE(5381)] = 182237, + [SMALL_STATE(5382)] = 182262, + [SMALL_STATE(5383)] = 182287, + [SMALL_STATE(5384)] = 182310, + [SMALL_STATE(5385)] = 182331, + [SMALL_STATE(5386)] = 182356, + [SMALL_STATE(5387)] = 182379, + [SMALL_STATE(5388)] = 182396, + [SMALL_STATE(5389)] = 182417, + [SMALL_STATE(5390)] = 182440, + [SMALL_STATE(5391)] = 182465, + [SMALL_STATE(5392)] = 182482, + [SMALL_STATE(5393)] = 182499, + [SMALL_STATE(5394)] = 182520, + [SMALL_STATE(5395)] = 182543, + [SMALL_STATE(5396)] = 182566, + [SMALL_STATE(5397)] = 182583, + [SMALL_STATE(5398)] = 182606, + [SMALL_STATE(5399)] = 182631, + [SMALL_STATE(5400)] = 182652, + [SMALL_STATE(5401)] = 182673, + [SMALL_STATE(5402)] = 182692, + [SMALL_STATE(5403)] = 182717, + [SMALL_STATE(5404)] = 182734, + [SMALL_STATE(5405)] = 182751, + [SMALL_STATE(5406)] = 182768, + [SMALL_STATE(5407)] = 182791, + [SMALL_STATE(5408)] = 182812, + [SMALL_STATE(5409)] = 182832, + [SMALL_STATE(5410)] = 182852, + [SMALL_STATE(5411)] = 182868, + [SMALL_STATE(5412)] = 182888, + [SMALL_STATE(5413)] = 182910, + [SMALL_STATE(5414)] = 182930, + [SMALL_STATE(5415)] = 182950, + [SMALL_STATE(5416)] = 182970, + [SMALL_STATE(5417)] = 182990, + [SMALL_STATE(5418)] = 183012, + [SMALL_STATE(5419)] = 183032, + [SMALL_STATE(5420)] = 183052, + [SMALL_STATE(5421)] = 183072, + [SMALL_STATE(5422)] = 183094, + [SMALL_STATE(5423)] = 183116, + [SMALL_STATE(5424)] = 183138, + [SMALL_STATE(5425)] = 183160, + [SMALL_STATE(5426)] = 183180, + [SMALL_STATE(5427)] = 183202, + [SMALL_STATE(5428)] = 183220, + [SMALL_STATE(5429)] = 183242, + [SMALL_STATE(5430)] = 183262, + [SMALL_STATE(5431)] = 183282, + [SMALL_STATE(5432)] = 183302, + [SMALL_STATE(5433)] = 183322, + [SMALL_STATE(5434)] = 183344, + [SMALL_STATE(5435)] = 183364, + [SMALL_STATE(5436)] = 183384, + [SMALL_STATE(5437)] = 183404, + [SMALL_STATE(5438)] = 183426, + [SMALL_STATE(5439)] = 183448, + [SMALL_STATE(5440)] = 183468, + [SMALL_STATE(5441)] = 183486, + [SMALL_STATE(5442)] = 183508, + [SMALL_STATE(5443)] = 183528, + [SMALL_STATE(5444)] = 183548, + [SMALL_STATE(5445)] = 183570, + [SMALL_STATE(5446)] = 183592, + [SMALL_STATE(5447)] = 183614, + [SMALL_STATE(5448)] = 183632, + [SMALL_STATE(5449)] = 183654, + [SMALL_STATE(5450)] = 183676, + [SMALL_STATE(5451)] = 183696, + [SMALL_STATE(5452)] = 183718, + [SMALL_STATE(5453)] = 183738, + [SMALL_STATE(5454)] = 183760, + [SMALL_STATE(5455)] = 183780, + [SMALL_STATE(5456)] = 183800, + [SMALL_STATE(5457)] = 183822, + [SMALL_STATE(5458)] = 183842, + [SMALL_STATE(5459)] = 183862, + [SMALL_STATE(5460)] = 183882, + [SMALL_STATE(5461)] = 183902, + [SMALL_STATE(5462)] = 183922, + [SMALL_STATE(5463)] = 183944, + [SMALL_STATE(5464)] = 183966, + [SMALL_STATE(5465)] = 183986, + [SMALL_STATE(5466)] = 184006, + [SMALL_STATE(5467)] = 184026, + [SMALL_STATE(5468)] = 184048, + [SMALL_STATE(5469)] = 184070, + [SMALL_STATE(5470)] = 184086, + [SMALL_STATE(5471)] = 184108, + [SMALL_STATE(5472)] = 184130, + [SMALL_STATE(5473)] = 184152, + [SMALL_STATE(5474)] = 184172, + [SMALL_STATE(5475)] = 184194, + [SMALL_STATE(5476)] = 184214, + [SMALL_STATE(5477)] = 184234, + [SMALL_STATE(5478)] = 184256, + [SMALL_STATE(5479)] = 184276, + [SMALL_STATE(5480)] = 184296, + [SMALL_STATE(5481)] = 184318, + [SMALL_STATE(5482)] = 184338, + [SMALL_STATE(5483)] = 184358, + [SMALL_STATE(5484)] = 184378, + [SMALL_STATE(5485)] = 184398, + [SMALL_STATE(5486)] = 184418, + [SMALL_STATE(5487)] = 184440, + [SMALL_STATE(5488)] = 184462, + [SMALL_STATE(5489)] = 184484, + [SMALL_STATE(5490)] = 184506, + [SMALL_STATE(5491)] = 184526, + [SMALL_STATE(5492)] = 184546, + [SMALL_STATE(5493)] = 184566, + [SMALL_STATE(5494)] = 184586, + [SMALL_STATE(5495)] = 184606, + [SMALL_STATE(5496)] = 184626, + [SMALL_STATE(5497)] = 184648, + [SMALL_STATE(5498)] = 184670, + [SMALL_STATE(5499)] = 184690, + [SMALL_STATE(5500)] = 184710, + [SMALL_STATE(5501)] = 184732, + [SMALL_STATE(5502)] = 184750, + [SMALL_STATE(5503)] = 184770, + [SMALL_STATE(5504)] = 184790, + [SMALL_STATE(5505)] = 184812, + [SMALL_STATE(5506)] = 184832, + [SMALL_STATE(5507)] = 184852, + [SMALL_STATE(5508)] = 184872, + [SMALL_STATE(5509)] = 184894, + [SMALL_STATE(5510)] = 184914, + [SMALL_STATE(5511)] = 184934, + [SMALL_STATE(5512)] = 184954, + [SMALL_STATE(5513)] = 184974, + [SMALL_STATE(5514)] = 184994, + [SMALL_STATE(5515)] = 185010, + [SMALL_STATE(5516)] = 185032, + [SMALL_STATE(5517)] = 185052, + [SMALL_STATE(5518)] = 185072, + [SMALL_STATE(5519)] = 185092, + [SMALL_STATE(5520)] = 185112, + [SMALL_STATE(5521)] = 185132, + [SMALL_STATE(5522)] = 185152, + [SMALL_STATE(5523)] = 185172, + [SMALL_STATE(5524)] = 185192, + [SMALL_STATE(5525)] = 185214, + [SMALL_STATE(5526)] = 185236, + [SMALL_STATE(5527)] = 185256, + [SMALL_STATE(5528)] = 185276, + [SMALL_STATE(5529)] = 185298, + [SMALL_STATE(5530)] = 185318, + [SMALL_STATE(5531)] = 185340, + [SMALL_STATE(5532)] = 185360, + [SMALL_STATE(5533)] = 185382, + [SMALL_STATE(5534)] = 185402, + [SMALL_STATE(5535)] = 185422, + [SMALL_STATE(5536)] = 185442, + [SMALL_STATE(5537)] = 185464, + [SMALL_STATE(5538)] = 185484, + [SMALL_STATE(5539)] = 185504, + [SMALL_STATE(5540)] = 185524, + [SMALL_STATE(5541)] = 185544, + [SMALL_STATE(5542)] = 185564, + [SMALL_STATE(5543)] = 185584, + [SMALL_STATE(5544)] = 185604, + [SMALL_STATE(5545)] = 185624, + [SMALL_STATE(5546)] = 185644, + [SMALL_STATE(5547)] = 185660, + [SMALL_STATE(5548)] = 185680, + [SMALL_STATE(5549)] = 185702, + [SMALL_STATE(5550)] = 185722, + [SMALL_STATE(5551)] = 185742, + [SMALL_STATE(5552)] = 185758, + [SMALL_STATE(5553)] = 185774, + [SMALL_STATE(5554)] = 185794, + [SMALL_STATE(5555)] = 185816, + [SMALL_STATE(5556)] = 185836, + [SMALL_STATE(5557)] = 185858, + [SMALL_STATE(5558)] = 185880, + [SMALL_STATE(5559)] = 185902, + [SMALL_STATE(5560)] = 185922, + [SMALL_STATE(5561)] = 185942, + [SMALL_STATE(5562)] = 185964, + [SMALL_STATE(5563)] = 185984, + [SMALL_STATE(5564)] = 186006, + [SMALL_STATE(5565)] = 186028, + [SMALL_STATE(5566)] = 186048, + [SMALL_STATE(5567)] = 186070, + [SMALL_STATE(5568)] = 186090, + [SMALL_STATE(5569)] = 186110, + [SMALL_STATE(5570)] = 186130, + [SMALL_STATE(5571)] = 186150, + [SMALL_STATE(5572)] = 186170, + [SMALL_STATE(5573)] = 186190, + [SMALL_STATE(5574)] = 186210, + [SMALL_STATE(5575)] = 186232, + [SMALL_STATE(5576)] = 186252, + [SMALL_STATE(5577)] = 186272, + [SMALL_STATE(5578)] = 186292, + [SMALL_STATE(5579)] = 186312, + [SMALL_STATE(5580)] = 186332, + [SMALL_STATE(5581)] = 186354, + [SMALL_STATE(5582)] = 186374, + [SMALL_STATE(5583)] = 186394, + [SMALL_STATE(5584)] = 186414, + [SMALL_STATE(5585)] = 186436, + [SMALL_STATE(5586)] = 186458, + [SMALL_STATE(5587)] = 186478, + [SMALL_STATE(5588)] = 186498, + [SMALL_STATE(5589)] = 186520, + [SMALL_STATE(5590)] = 186542, + [SMALL_STATE(5591)] = 186564, + [SMALL_STATE(5592)] = 186584, + [SMALL_STATE(5593)] = 186606, + [SMALL_STATE(5594)] = 186626, + [SMALL_STATE(5595)] = 186648, + [SMALL_STATE(5596)] = 186666, + [SMALL_STATE(5597)] = 186688, + [SMALL_STATE(5598)] = 186706, + [SMALL_STATE(5599)] = 186724, + [SMALL_STATE(5600)] = 186746, + [SMALL_STATE(5601)] = 186768, + [SMALL_STATE(5602)] = 186788, + [SMALL_STATE(5603)] = 186810, + [SMALL_STATE(5604)] = 186832, + [SMALL_STATE(5605)] = 186852, + [SMALL_STATE(5606)] = 186874, + [SMALL_STATE(5607)] = 186896, + [SMALL_STATE(5608)] = 186918, + [SMALL_STATE(5609)] = 186938, + [SMALL_STATE(5610)] = 186956, + [SMALL_STATE(5611)] = 186978, + [SMALL_STATE(5612)] = 187000, + [SMALL_STATE(5613)] = 187016, + [SMALL_STATE(5614)] = 187032, + [SMALL_STATE(5615)] = 187050, + [SMALL_STATE(5616)] = 187072, + [SMALL_STATE(5617)] = 187092, + [SMALL_STATE(5618)] = 187112, + [SMALL_STATE(5619)] = 187134, + [SMALL_STATE(5620)] = 187154, + [SMALL_STATE(5621)] = 187176, + [SMALL_STATE(5622)] = 187198, + [SMALL_STATE(5623)] = 187218, + [SMALL_STATE(5624)] = 187234, + [SMALL_STATE(5625)] = 187256, + [SMALL_STATE(5626)] = 187274, + [SMALL_STATE(5627)] = 187292, + [SMALL_STATE(5628)] = 187312, + [SMALL_STATE(5629)] = 187332, + [SMALL_STATE(5630)] = 187352, + [SMALL_STATE(5631)] = 187374, + [SMALL_STATE(5632)] = 187394, + [SMALL_STATE(5633)] = 187414, + [SMALL_STATE(5634)] = 187434, + [SMALL_STATE(5635)] = 187454, + [SMALL_STATE(5636)] = 187474, + [SMALL_STATE(5637)] = 187496, + [SMALL_STATE(5638)] = 187518, + [SMALL_STATE(5639)] = 187540, + [SMALL_STATE(5640)] = 187560, + [SMALL_STATE(5641)] = 187580, + [SMALL_STATE(5642)] = 187597, + [SMALL_STATE(5643)] = 187616, + [SMALL_STATE(5644)] = 187635, + [SMALL_STATE(5645)] = 187650, + [SMALL_STATE(5646)] = 187665, + [SMALL_STATE(5647)] = 187680, + [SMALL_STATE(5648)] = 187695, + [SMALL_STATE(5649)] = 187714, + [SMALL_STATE(5650)] = 187729, + [SMALL_STATE(5651)] = 187744, + [SMALL_STATE(5652)] = 187763, + [SMALL_STATE(5653)] = 187782, + [SMALL_STATE(5654)] = 187797, + [SMALL_STATE(5655)] = 187816, + [SMALL_STATE(5656)] = 187831, + [SMALL_STATE(5657)] = 187846, + [SMALL_STATE(5658)] = 187861, + [SMALL_STATE(5659)] = 187876, + [SMALL_STATE(5660)] = 187891, + [SMALL_STATE(5661)] = 187910, + [SMALL_STATE(5662)] = 187925, + [SMALL_STATE(5663)] = 187940, + [SMALL_STATE(5664)] = 187959, + [SMALL_STATE(5665)] = 187974, + [SMALL_STATE(5666)] = 187989, + [SMALL_STATE(5667)] = 188008, + [SMALL_STATE(5668)] = 188027, + [SMALL_STATE(5669)] = 188046, + [SMALL_STATE(5670)] = 188065, + [SMALL_STATE(5671)] = 188084, + [SMALL_STATE(5672)] = 188099, + [SMALL_STATE(5673)] = 188114, + [SMALL_STATE(5674)] = 188129, + [SMALL_STATE(5675)] = 188144, + [SMALL_STATE(5676)] = 188159, + [SMALL_STATE(5677)] = 188174, + [SMALL_STATE(5678)] = 188191, + [SMALL_STATE(5679)] = 188210, + [SMALL_STATE(5680)] = 188225, + [SMALL_STATE(5681)] = 188244, + [SMALL_STATE(5682)] = 188259, + [SMALL_STATE(5683)] = 188274, + [SMALL_STATE(5684)] = 188289, + [SMALL_STATE(5685)] = 188304, + [SMALL_STATE(5686)] = 188319, + [SMALL_STATE(5687)] = 188334, + [SMALL_STATE(5688)] = 188349, + [SMALL_STATE(5689)] = 188364, + [SMALL_STATE(5690)] = 188379, + [SMALL_STATE(5691)] = 188394, + [SMALL_STATE(5692)] = 188409, + [SMALL_STATE(5693)] = 188428, + [SMALL_STATE(5694)] = 188445, + [SMALL_STATE(5695)] = 188464, + [SMALL_STATE(5696)] = 188481, + [SMALL_STATE(5697)] = 188498, + [SMALL_STATE(5698)] = 188513, + [SMALL_STATE(5699)] = 188528, + [SMALL_STATE(5700)] = 188543, + [SMALL_STATE(5701)] = 188558, + [SMALL_STATE(5702)] = 188573, + [SMALL_STATE(5703)] = 188588, + [SMALL_STATE(5704)] = 188603, + [SMALL_STATE(5705)] = 188618, + [SMALL_STATE(5706)] = 188633, + [SMALL_STATE(5707)] = 188652, + [SMALL_STATE(5708)] = 188667, + [SMALL_STATE(5709)] = 188682, + [SMALL_STATE(5710)] = 188697, + [SMALL_STATE(5711)] = 188716, + [SMALL_STATE(5712)] = 188731, + [SMALL_STATE(5713)] = 188746, + [SMALL_STATE(5714)] = 188761, + [SMALL_STATE(5715)] = 188778, + [SMALL_STATE(5716)] = 188795, + [SMALL_STATE(5717)] = 188814, + [SMALL_STATE(5718)] = 188829, + [SMALL_STATE(5719)] = 188844, + [SMALL_STATE(5720)] = 188859, + [SMALL_STATE(5721)] = 188878, + [SMALL_STATE(5722)] = 188893, + [SMALL_STATE(5723)] = 188912, + [SMALL_STATE(5724)] = 188931, + [SMALL_STATE(5725)] = 188950, + [SMALL_STATE(5726)] = 188965, + [SMALL_STATE(5727)] = 188984, + [SMALL_STATE(5728)] = 189003, + [SMALL_STATE(5729)] = 189018, + [SMALL_STATE(5730)] = 189033, + [SMALL_STATE(5731)] = 189052, + [SMALL_STATE(5732)] = 189067, + [SMALL_STATE(5733)] = 189086, + [SMALL_STATE(5734)] = 189101, + [SMALL_STATE(5735)] = 189116, + [SMALL_STATE(5736)] = 189131, + [SMALL_STATE(5737)] = 189146, + [SMALL_STATE(5738)] = 189165, + [SMALL_STATE(5739)] = 189180, + [SMALL_STATE(5740)] = 189199, + [SMALL_STATE(5741)] = 189218, + [SMALL_STATE(5742)] = 189233, + [SMALL_STATE(5743)] = 189248, + [SMALL_STATE(5744)] = 189267, + [SMALL_STATE(5745)] = 189282, + [SMALL_STATE(5746)] = 189297, + [SMALL_STATE(5747)] = 189312, + [SMALL_STATE(5748)] = 189327, + [SMALL_STATE(5749)] = 189344, + [SMALL_STATE(5750)] = 189359, + [SMALL_STATE(5751)] = 189374, + [SMALL_STATE(5752)] = 189389, + [SMALL_STATE(5753)] = 189404, + [SMALL_STATE(5754)] = 189423, + [SMALL_STATE(5755)] = 189438, + [SMALL_STATE(5756)] = 189457, + [SMALL_STATE(5757)] = 189472, + [SMALL_STATE(5758)] = 189491, + [SMALL_STATE(5759)] = 189506, + [SMALL_STATE(5760)] = 189525, + [SMALL_STATE(5761)] = 189540, + [SMALL_STATE(5762)] = 189559, + [SMALL_STATE(5763)] = 189574, + [SMALL_STATE(5764)] = 189593, + [SMALL_STATE(5765)] = 189608, + [SMALL_STATE(5766)] = 189623, + [SMALL_STATE(5767)] = 189638, + [SMALL_STATE(5768)] = 189653, + [SMALL_STATE(5769)] = 189672, + [SMALL_STATE(5770)] = 189687, + [SMALL_STATE(5771)] = 189706, + [SMALL_STATE(5772)] = 189721, + [SMALL_STATE(5773)] = 189736, + [SMALL_STATE(5774)] = 189755, + [SMALL_STATE(5775)] = 189774, + [SMALL_STATE(5776)] = 189789, + [SMALL_STATE(5777)] = 189808, + [SMALL_STATE(5778)] = 189827, + [SMALL_STATE(5779)] = 189844, + [SMALL_STATE(5780)] = 189859, + [SMALL_STATE(5781)] = 189874, + [SMALL_STATE(5782)] = 189891, + [SMALL_STATE(5783)] = 189906, + [SMALL_STATE(5784)] = 189925, + [SMALL_STATE(5785)] = 189940, + [SMALL_STATE(5786)] = 189959, + [SMALL_STATE(5787)] = 189974, + [SMALL_STATE(5788)] = 189989, + [SMALL_STATE(5789)] = 190004, + [SMALL_STATE(5790)] = 190019, + [SMALL_STATE(5791)] = 190034, + [SMALL_STATE(5792)] = 190049, + [SMALL_STATE(5793)] = 190068, + [SMALL_STATE(5794)] = 190083, + [SMALL_STATE(5795)] = 190102, + [SMALL_STATE(5796)] = 190117, + [SMALL_STATE(5797)] = 190132, + [SMALL_STATE(5798)] = 190147, + [SMALL_STATE(5799)] = 190162, + [SMALL_STATE(5800)] = 190177, + [SMALL_STATE(5801)] = 190192, + [SMALL_STATE(5802)] = 190207, + [SMALL_STATE(5803)] = 190224, + [SMALL_STATE(5804)] = 190239, + [SMALL_STATE(5805)] = 190258, + [SMALL_STATE(5806)] = 190273, + [SMALL_STATE(5807)] = 190288, + [SMALL_STATE(5808)] = 190303, + [SMALL_STATE(5809)] = 190318, + [SMALL_STATE(5810)] = 190333, + [SMALL_STATE(5811)] = 190350, + [SMALL_STATE(5812)] = 190369, + [SMALL_STATE(5813)] = 190384, + [SMALL_STATE(5814)] = 190399, + [SMALL_STATE(5815)] = 190414, + [SMALL_STATE(5816)] = 190429, + [SMALL_STATE(5817)] = 190448, + [SMALL_STATE(5818)] = 190463, + [SMALL_STATE(5819)] = 190482, + [SMALL_STATE(5820)] = 190499, + [SMALL_STATE(5821)] = 190514, + [SMALL_STATE(5822)] = 190529, + [SMALL_STATE(5823)] = 190548, + [SMALL_STATE(5824)] = 190563, + [SMALL_STATE(5825)] = 190580, + [SMALL_STATE(5826)] = 190595, + [SMALL_STATE(5827)] = 190610, + [SMALL_STATE(5828)] = 190625, + [SMALL_STATE(5829)] = 190640, + [SMALL_STATE(5830)] = 190659, + [SMALL_STATE(5831)] = 190674, + [SMALL_STATE(5832)] = 190689, + [SMALL_STATE(5833)] = 190706, + [SMALL_STATE(5834)] = 190721, + [SMALL_STATE(5835)] = 190736, + [SMALL_STATE(5836)] = 190751, + [SMALL_STATE(5837)] = 190770, + [SMALL_STATE(5838)] = 190785, + [SMALL_STATE(5839)] = 190800, + [SMALL_STATE(5840)] = 190817, + [SMALL_STATE(5841)] = 190836, + [SMALL_STATE(5842)] = 190855, + [SMALL_STATE(5843)] = 190872, + [SMALL_STATE(5844)] = 190887, + [SMALL_STATE(5845)] = 190902, + [SMALL_STATE(5846)] = 190919, + [SMALL_STATE(5847)] = 190936, + [SMALL_STATE(5848)] = 190955, + [SMALL_STATE(5849)] = 190974, + [SMALL_STATE(5850)] = 190989, + [SMALL_STATE(5851)] = 191004, + [SMALL_STATE(5852)] = 191019, + [SMALL_STATE(5853)] = 191034, + [SMALL_STATE(5854)] = 191049, + [SMALL_STATE(5855)] = 191066, + [SMALL_STATE(5856)] = 191081, + [SMALL_STATE(5857)] = 191096, + [SMALL_STATE(5858)] = 191113, + [SMALL_STATE(5859)] = 191130, + [SMALL_STATE(5860)] = 191149, + [SMALL_STATE(5861)] = 191164, + [SMALL_STATE(5862)] = 191179, + [SMALL_STATE(5863)] = 191198, + [SMALL_STATE(5864)] = 191215, + [SMALL_STATE(5865)] = 191230, + [SMALL_STATE(5866)] = 191245, + [SMALL_STATE(5867)] = 191262, + [SMALL_STATE(5868)] = 191279, + [SMALL_STATE(5869)] = 191298, + [SMALL_STATE(5870)] = 191317, + [SMALL_STATE(5871)] = 191334, + [SMALL_STATE(5872)] = 191351, + [SMALL_STATE(5873)] = 191366, + [SMALL_STATE(5874)] = 191383, + [SMALL_STATE(5875)] = 191402, + [SMALL_STATE(5876)] = 191419, + [SMALL_STATE(5877)] = 191436, + [SMALL_STATE(5878)] = 191451, + [SMALL_STATE(5879)] = 191466, + [SMALL_STATE(5880)] = 191481, + [SMALL_STATE(5881)] = 191496, + [SMALL_STATE(5882)] = 191511, + [SMALL_STATE(5883)] = 191526, + [SMALL_STATE(5884)] = 191541, + [SMALL_STATE(5885)] = 191560, + [SMALL_STATE(5886)] = 191579, + [SMALL_STATE(5887)] = 191594, + [SMALL_STATE(5888)] = 191609, + [SMALL_STATE(5889)] = 191624, + [SMALL_STATE(5890)] = 191639, + [SMALL_STATE(5891)] = 191658, + [SMALL_STATE(5892)] = 191673, + [SMALL_STATE(5893)] = 191688, + [SMALL_STATE(5894)] = 191707, + [SMALL_STATE(5895)] = 191722, + [SMALL_STATE(5896)] = 191739, + [SMALL_STATE(5897)] = 191754, + [SMALL_STATE(5898)] = 191771, + [SMALL_STATE(5899)] = 191790, + [SMALL_STATE(5900)] = 191809, + [SMALL_STATE(5901)] = 191824, + [SMALL_STATE(5902)] = 191841, + [SMALL_STATE(5903)] = 191856, + [SMALL_STATE(5904)] = 191871, + [SMALL_STATE(5905)] = 191886, + [SMALL_STATE(5906)] = 191901, + [SMALL_STATE(5907)] = 191916, + [SMALL_STATE(5908)] = 191933, + [SMALL_STATE(5909)] = 191948, + [SMALL_STATE(5910)] = 191963, + [SMALL_STATE(5911)] = 191978, + [SMALL_STATE(5912)] = 191993, + [SMALL_STATE(5913)] = 192008, + [SMALL_STATE(5914)] = 192027, + [SMALL_STATE(5915)] = 192042, + [SMALL_STATE(5916)] = 192057, + [SMALL_STATE(5917)] = 192072, + [SMALL_STATE(5918)] = 192087, + [SMALL_STATE(5919)] = 192106, + [SMALL_STATE(5920)] = 192125, + [SMALL_STATE(5921)] = 192140, + [SMALL_STATE(5922)] = 192157, + [SMALL_STATE(5923)] = 192176, + [SMALL_STATE(5924)] = 192195, + [SMALL_STATE(5925)] = 192210, + [SMALL_STATE(5926)] = 192229, + [SMALL_STATE(5927)] = 192244, + [SMALL_STATE(5928)] = 192259, + [SMALL_STATE(5929)] = 192274, + [SMALL_STATE(5930)] = 192293, + [SMALL_STATE(5931)] = 192308, + [SMALL_STATE(5932)] = 192327, + [SMALL_STATE(5933)] = 192342, + [SMALL_STATE(5934)] = 192357, + [SMALL_STATE(5935)] = 192372, + [SMALL_STATE(5936)] = 192391, + [SMALL_STATE(5937)] = 192408, + [SMALL_STATE(5938)] = 192423, + [SMALL_STATE(5939)] = 192440, + [SMALL_STATE(5940)] = 192455, + [SMALL_STATE(5941)] = 192470, + [SMALL_STATE(5942)] = 192485, + [SMALL_STATE(5943)] = 192500, + [SMALL_STATE(5944)] = 192515, + [SMALL_STATE(5945)] = 192530, + [SMALL_STATE(5946)] = 192545, + [SMALL_STATE(5947)] = 192560, + [SMALL_STATE(5948)] = 192577, + [SMALL_STATE(5949)] = 192592, + [SMALL_STATE(5950)] = 192607, + [SMALL_STATE(5951)] = 192622, + [SMALL_STATE(5952)] = 192637, + [SMALL_STATE(5953)] = 192652, + [SMALL_STATE(5954)] = 192671, + [SMALL_STATE(5955)] = 192686, + [SMALL_STATE(5956)] = 192701, + [SMALL_STATE(5957)] = 192720, + [SMALL_STATE(5958)] = 192735, + [SMALL_STATE(5959)] = 192750, + [SMALL_STATE(5960)] = 192769, + [SMALL_STATE(5961)] = 192788, + [SMALL_STATE(5962)] = 192807, + [SMALL_STATE(5963)] = 192822, + [SMALL_STATE(5964)] = 192837, + [SMALL_STATE(5965)] = 192852, + [SMALL_STATE(5966)] = 192867, + [SMALL_STATE(5967)] = 192882, + [SMALL_STATE(5968)] = 192897, + [SMALL_STATE(5969)] = 192914, + [SMALL_STATE(5970)] = 192931, + [SMALL_STATE(5971)] = 192950, + [SMALL_STATE(5972)] = 192969, + [SMALL_STATE(5973)] = 192988, + [SMALL_STATE(5974)] = 193003, + [SMALL_STATE(5975)] = 193020, + [SMALL_STATE(5976)] = 193035, + [SMALL_STATE(5977)] = 193050, + [SMALL_STATE(5978)] = 193065, + [SMALL_STATE(5979)] = 193080, + [SMALL_STATE(5980)] = 193095, + [SMALL_STATE(5981)] = 193110, + [SMALL_STATE(5982)] = 193125, + [SMALL_STATE(5983)] = 193140, + [SMALL_STATE(5984)] = 193155, + [SMALL_STATE(5985)] = 193170, + [SMALL_STATE(5986)] = 193189, + [SMALL_STATE(5987)] = 193206, + [SMALL_STATE(5988)] = 193223, + [SMALL_STATE(5989)] = 193238, + [SMALL_STATE(5990)] = 193253, + [SMALL_STATE(5991)] = 193268, + [SMALL_STATE(5992)] = 193283, + [SMALL_STATE(5993)] = 193298, + [SMALL_STATE(5994)] = 193313, + [SMALL_STATE(5995)] = 193328, + [SMALL_STATE(5996)] = 193343, + [SMALL_STATE(5997)] = 193362, + [SMALL_STATE(5998)] = 193377, + [SMALL_STATE(5999)] = 193392, + [SMALL_STATE(6000)] = 193407, + [SMALL_STATE(6001)] = 193426, + [SMALL_STATE(6002)] = 193441, + [SMALL_STATE(6003)] = 193456, + [SMALL_STATE(6004)] = 193471, + [SMALL_STATE(6005)] = 193486, + [SMALL_STATE(6006)] = 193501, + [SMALL_STATE(6007)] = 193520, + [SMALL_STATE(6008)] = 193535, + [SMALL_STATE(6009)] = 193550, + [SMALL_STATE(6010)] = 193565, + [SMALL_STATE(6011)] = 193584, + [SMALL_STATE(6012)] = 193599, + [SMALL_STATE(6013)] = 193618, + [SMALL_STATE(6014)] = 193637, + [SMALL_STATE(6015)] = 193652, + [SMALL_STATE(6016)] = 193671, + [SMALL_STATE(6017)] = 193686, + [SMALL_STATE(6018)] = 193705, + [SMALL_STATE(6019)] = 193720, + [SMALL_STATE(6020)] = 193739, + [SMALL_STATE(6021)] = 193754, + [SMALL_STATE(6022)] = 193769, + [SMALL_STATE(6023)] = 193788, + [SMALL_STATE(6024)] = 193803, + [SMALL_STATE(6025)] = 193822, + [SMALL_STATE(6026)] = 193837, + [SMALL_STATE(6027)] = 193852, + [SMALL_STATE(6028)] = 193867, + [SMALL_STATE(6029)] = 193882, + [SMALL_STATE(6030)] = 193897, + [SMALL_STATE(6031)] = 193914, + [SMALL_STATE(6032)] = 193929, + [SMALL_STATE(6033)] = 193944, + [SMALL_STATE(6034)] = 193961, + [SMALL_STATE(6035)] = 193976, + [SMALL_STATE(6036)] = 193993, + [SMALL_STATE(6037)] = 194008, + [SMALL_STATE(6038)] = 194023, + [SMALL_STATE(6039)] = 194038, + [SMALL_STATE(6040)] = 194053, + [SMALL_STATE(6041)] = 194070, + [SMALL_STATE(6042)] = 194087, + [SMALL_STATE(6043)] = 194102, + [SMALL_STATE(6044)] = 194117, + [SMALL_STATE(6045)] = 194136, + [SMALL_STATE(6046)] = 194155, + [SMALL_STATE(6047)] = 194170, + [SMALL_STATE(6048)] = 194185, + [SMALL_STATE(6049)] = 194200, + [SMALL_STATE(6050)] = 194215, + [SMALL_STATE(6051)] = 194234, + [SMALL_STATE(6052)] = 194253, + [SMALL_STATE(6053)] = 194268, + [SMALL_STATE(6054)] = 194287, + [SMALL_STATE(6055)] = 194302, + [SMALL_STATE(6056)] = 194317, + [SMALL_STATE(6057)] = 194332, + [SMALL_STATE(6058)] = 194347, + [SMALL_STATE(6059)] = 194366, + [SMALL_STATE(6060)] = 194381, + [SMALL_STATE(6061)] = 194400, + [SMALL_STATE(6062)] = 194419, + [SMALL_STATE(6063)] = 194434, + [SMALL_STATE(6064)] = 194449, + [SMALL_STATE(6065)] = 194464, + [SMALL_STATE(6066)] = 194479, + [SMALL_STATE(6067)] = 194494, + [SMALL_STATE(6068)] = 194509, + [SMALL_STATE(6069)] = 194524, + [SMALL_STATE(6070)] = 194541, + [SMALL_STATE(6071)] = 194556, + [SMALL_STATE(6072)] = 194575, + [SMALL_STATE(6073)] = 194590, + [SMALL_STATE(6074)] = 194605, + [SMALL_STATE(6075)] = 194622, + [SMALL_STATE(6076)] = 194637, + [SMALL_STATE(6077)] = 194652, + [SMALL_STATE(6078)] = 194667, + [SMALL_STATE(6079)] = 194682, + [SMALL_STATE(6080)] = 194699, + [SMALL_STATE(6081)] = 194714, + [SMALL_STATE(6082)] = 194731, + [SMALL_STATE(6083)] = 194746, + [SMALL_STATE(6084)] = 194761, + [SMALL_STATE(6085)] = 194780, + [SMALL_STATE(6086)] = 194795, + [SMALL_STATE(6087)] = 194810, + [SMALL_STATE(6088)] = 194825, + [SMALL_STATE(6089)] = 194840, + [SMALL_STATE(6090)] = 194855, + [SMALL_STATE(6091)] = 194870, + [SMALL_STATE(6092)] = 194885, + [SMALL_STATE(6093)] = 194900, + [SMALL_STATE(6094)] = 194915, + [SMALL_STATE(6095)] = 194930, + [SMALL_STATE(6096)] = 194945, + [SMALL_STATE(6097)] = 194962, + [SMALL_STATE(6098)] = 194977, + [SMALL_STATE(6099)] = 194994, + [SMALL_STATE(6100)] = 195009, + [SMALL_STATE(6101)] = 195028, + [SMALL_STATE(6102)] = 195047, + [SMALL_STATE(6103)] = 195062, + [SMALL_STATE(6104)] = 195077, + [SMALL_STATE(6105)] = 195092, + [SMALL_STATE(6106)] = 195111, + [SMALL_STATE(6107)] = 195126, + [SMALL_STATE(6108)] = 195141, + [SMALL_STATE(6109)] = 195156, + [SMALL_STATE(6110)] = 195175, + [SMALL_STATE(6111)] = 195194, + [SMALL_STATE(6112)] = 195213, + [SMALL_STATE(6113)] = 195230, + [SMALL_STATE(6114)] = 195249, + [SMALL_STATE(6115)] = 195264, + [SMALL_STATE(6116)] = 195283, + [SMALL_STATE(6117)] = 195302, + [SMALL_STATE(6118)] = 195321, + [SMALL_STATE(6119)] = 195338, + [SMALL_STATE(6120)] = 195357, + [SMALL_STATE(6121)] = 195376, + [SMALL_STATE(6122)] = 195395, + [SMALL_STATE(6123)] = 195410, + [SMALL_STATE(6124)] = 195425, + [SMALL_STATE(6125)] = 195440, + [SMALL_STATE(6126)] = 195455, + [SMALL_STATE(6127)] = 195470, + [SMALL_STATE(6128)] = 195485, + [SMALL_STATE(6129)] = 195504, + [SMALL_STATE(6130)] = 195519, + [SMALL_STATE(6131)] = 195534, + [SMALL_STATE(6132)] = 195549, + [SMALL_STATE(6133)] = 195564, + [SMALL_STATE(6134)] = 195583, + [SMALL_STATE(6135)] = 195598, + [SMALL_STATE(6136)] = 195613, + [SMALL_STATE(6137)] = 195628, + [SMALL_STATE(6138)] = 195643, + [SMALL_STATE(6139)] = 195658, + [SMALL_STATE(6140)] = 195673, + [SMALL_STATE(6141)] = 195688, + [SMALL_STATE(6142)] = 195705, + [SMALL_STATE(6143)] = 195722, + [SMALL_STATE(6144)] = 195741, + [SMALL_STATE(6145)] = 195760, + [SMALL_STATE(6146)] = 195779, + [SMALL_STATE(6147)] = 195798, + [SMALL_STATE(6148)] = 195817, + [SMALL_STATE(6149)] = 195832, + [SMALL_STATE(6150)] = 195847, + [SMALL_STATE(6151)] = 195862, + [SMALL_STATE(6152)] = 195881, + [SMALL_STATE(6153)] = 195896, + [SMALL_STATE(6154)] = 195915, + [SMALL_STATE(6155)] = 195934, + [SMALL_STATE(6156)] = 195953, + [SMALL_STATE(6157)] = 195972, + [SMALL_STATE(6158)] = 195989, + [SMALL_STATE(6159)] = 196008, + [SMALL_STATE(6160)] = 196025, + [SMALL_STATE(6161)] = 196044, + [SMALL_STATE(6162)] = 196063, + [SMALL_STATE(6163)] = 196082, + [SMALL_STATE(6164)] = 196101, + [SMALL_STATE(6165)] = 196116, + [SMALL_STATE(6166)] = 196135, + [SMALL_STATE(6167)] = 196154, + [SMALL_STATE(6168)] = 196171, + [SMALL_STATE(6169)] = 196186, + [SMALL_STATE(6170)] = 196201, + [SMALL_STATE(6171)] = 196216, + [SMALL_STATE(6172)] = 196235, + [SMALL_STATE(6173)] = 196250, + [SMALL_STATE(6174)] = 196269, + [SMALL_STATE(6175)] = 196284, + [SMALL_STATE(6176)] = 196303, + [SMALL_STATE(6177)] = 196318, + [SMALL_STATE(6178)] = 196335, + [SMALL_STATE(6179)] = 196354, + [SMALL_STATE(6180)] = 196369, + [SMALL_STATE(6181)] = 196384, + [SMALL_STATE(6182)] = 196399, + [SMALL_STATE(6183)] = 196414, + [SMALL_STATE(6184)] = 196429, + [SMALL_STATE(6185)] = 196448, + [SMALL_STATE(6186)] = 196463, + [SMALL_STATE(6187)] = 196478, + [SMALL_STATE(6188)] = 196493, + [SMALL_STATE(6189)] = 196512, + [SMALL_STATE(6190)] = 196531, + [SMALL_STATE(6191)] = 196546, + [SMALL_STATE(6192)] = 196561, + [SMALL_STATE(6193)] = 196580, + [SMALL_STATE(6194)] = 196599, + [SMALL_STATE(6195)] = 196618, + [SMALL_STATE(6196)] = 196637, + [SMALL_STATE(6197)] = 196656, + [SMALL_STATE(6198)] = 196675, + [SMALL_STATE(6199)] = 196694, + [SMALL_STATE(6200)] = 196713, + [SMALL_STATE(6201)] = 196728, + [SMALL_STATE(6202)] = 196747, + [SMALL_STATE(6203)] = 196762, + [SMALL_STATE(6204)] = 196777, + [SMALL_STATE(6205)] = 196796, + [SMALL_STATE(6206)] = 196815, + [SMALL_STATE(6207)] = 196834, + [SMALL_STATE(6208)] = 196853, + [SMALL_STATE(6209)] = 196872, + [SMALL_STATE(6210)] = 196891, + [SMALL_STATE(6211)] = 196906, + [SMALL_STATE(6212)] = 196921, + [SMALL_STATE(6213)] = 196936, + [SMALL_STATE(6214)] = 196955, + [SMALL_STATE(6215)] = 196974, + [SMALL_STATE(6216)] = 196989, + [SMALL_STATE(6217)] = 197004, + [SMALL_STATE(6218)] = 197019, + [SMALL_STATE(6219)] = 197038, + [SMALL_STATE(6220)] = 197055, + [SMALL_STATE(6221)] = 197070, + [SMALL_STATE(6222)] = 197087, + [SMALL_STATE(6223)] = 197104, + [SMALL_STATE(6224)] = 197121, + [SMALL_STATE(6225)] = 197136, + [SMALL_STATE(6226)] = 197151, + [SMALL_STATE(6227)] = 197166, + [SMALL_STATE(6228)] = 197185, + [SMALL_STATE(6229)] = 197200, + [SMALL_STATE(6230)] = 197219, + [SMALL_STATE(6231)] = 197238, + [SMALL_STATE(6232)] = 197253, + [SMALL_STATE(6233)] = 197272, + [SMALL_STATE(6234)] = 197291, + [SMALL_STATE(6235)] = 197306, + [SMALL_STATE(6236)] = 197323, + [SMALL_STATE(6237)] = 197340, + [SMALL_STATE(6238)] = 197357, + [SMALL_STATE(6239)] = 197372, + [SMALL_STATE(6240)] = 197391, + [SMALL_STATE(6241)] = 197410, + [SMALL_STATE(6242)] = 197425, + [SMALL_STATE(6243)] = 197444, + [SMALL_STATE(6244)] = 197459, + [SMALL_STATE(6245)] = 197478, + [SMALL_STATE(6246)] = 197497, + [SMALL_STATE(6247)] = 197516, + [SMALL_STATE(6248)] = 197535, + [SMALL_STATE(6249)] = 197554, + [SMALL_STATE(6250)] = 197573, + [SMALL_STATE(6251)] = 197588, + [SMALL_STATE(6252)] = 197603, + [SMALL_STATE(6253)] = 197618, + [SMALL_STATE(6254)] = 197637, + [SMALL_STATE(6255)] = 197654, + [SMALL_STATE(6256)] = 197673, + [SMALL_STATE(6257)] = 197688, + [SMALL_STATE(6258)] = 197707, + [SMALL_STATE(6259)] = 197722, + [SMALL_STATE(6260)] = 197741, + [SMALL_STATE(6261)] = 197760, + [SMALL_STATE(6262)] = 197779, + [SMALL_STATE(6263)] = 197798, + [SMALL_STATE(6264)] = 197817, + [SMALL_STATE(6265)] = 197836, + [SMALL_STATE(6266)] = 197851, + [SMALL_STATE(6267)] = 197870, + [SMALL_STATE(6268)] = 197889, + [SMALL_STATE(6269)] = 197904, + [SMALL_STATE(6270)] = 197919, + [SMALL_STATE(6271)] = 197934, + [SMALL_STATE(6272)] = 197949, + [SMALL_STATE(6273)] = 197964, + [SMALL_STATE(6274)] = 197983, + [SMALL_STATE(6275)] = 198002, + [SMALL_STATE(6276)] = 198017, + [SMALL_STATE(6277)] = 198036, + [SMALL_STATE(6278)] = 198055, + [SMALL_STATE(6279)] = 198074, + [SMALL_STATE(6280)] = 198089, + [SMALL_STATE(6281)] = 198108, + [SMALL_STATE(6282)] = 198123, + [SMALL_STATE(6283)] = 198142, + [SMALL_STATE(6284)] = 198157, + [SMALL_STATE(6285)] = 198172, + [SMALL_STATE(6286)] = 198189, + [SMALL_STATE(6287)] = 198206, + [SMALL_STATE(6288)] = 198225, + [SMALL_STATE(6289)] = 198240, + [SMALL_STATE(6290)] = 198259, + [SMALL_STATE(6291)] = 198274, + [SMALL_STATE(6292)] = 198293, + [SMALL_STATE(6293)] = 198308, + [SMALL_STATE(6294)] = 198327, + [SMALL_STATE(6295)] = 198342, + [SMALL_STATE(6296)] = 198361, + [SMALL_STATE(6297)] = 198376, + [SMALL_STATE(6298)] = 198391, + [SMALL_STATE(6299)] = 198406, + [SMALL_STATE(6300)] = 198425, + [SMALL_STATE(6301)] = 198444, + [SMALL_STATE(6302)] = 198463, + [SMALL_STATE(6303)] = 198482, + [SMALL_STATE(6304)] = 198497, + [SMALL_STATE(6305)] = 198516, + [SMALL_STATE(6306)] = 198533, + [SMALL_STATE(6307)] = 198548, + [SMALL_STATE(6308)] = 198563, + [SMALL_STATE(6309)] = 198580, + [SMALL_STATE(6310)] = 198599, + [SMALL_STATE(6311)] = 198618, + [SMALL_STATE(6312)] = 198637, + [SMALL_STATE(6313)] = 198652, + [SMALL_STATE(6314)] = 198667, + [SMALL_STATE(6315)] = 198682, + [SMALL_STATE(6316)] = 198701, + [SMALL_STATE(6317)] = 198716, + [SMALL_STATE(6318)] = 198731, + [SMALL_STATE(6319)] = 198746, + [SMALL_STATE(6320)] = 198761, + [SMALL_STATE(6321)] = 198776, + [SMALL_STATE(6322)] = 198791, + [SMALL_STATE(6323)] = 198810, + [SMALL_STATE(6324)] = 198829, + [SMALL_STATE(6325)] = 198848, + [SMALL_STATE(6326)] = 198863, + [SMALL_STATE(6327)] = 198882, + [SMALL_STATE(6328)] = 198897, + [SMALL_STATE(6329)] = 198912, + [SMALL_STATE(6330)] = 198927, + [SMALL_STATE(6331)] = 198942, + [SMALL_STATE(6332)] = 198957, + [SMALL_STATE(6333)] = 198976, + [SMALL_STATE(6334)] = 198991, + [SMALL_STATE(6335)] = 199007, + [SMALL_STATE(6336)] = 199021, + [SMALL_STATE(6337)] = 199037, + [SMALL_STATE(6338)] = 199053, + [SMALL_STATE(6339)] = 199069, + [SMALL_STATE(6340)] = 199083, + [SMALL_STATE(6341)] = 199099, + [SMALL_STATE(6342)] = 199115, + [SMALL_STATE(6343)] = 199131, + [SMALL_STATE(6344)] = 199147, + [SMALL_STATE(6345)] = 199163, + [SMALL_STATE(6346)] = 199179, + [SMALL_STATE(6347)] = 199195, + [SMALL_STATE(6348)] = 199211, + [SMALL_STATE(6349)] = 199227, + [SMALL_STATE(6350)] = 199243, + [SMALL_STATE(6351)] = 199259, + [SMALL_STATE(6352)] = 199275, + [SMALL_STATE(6353)] = 199291, + [SMALL_STATE(6354)] = 199305, + [SMALL_STATE(6355)] = 199319, + [SMALL_STATE(6356)] = 199333, + [SMALL_STATE(6357)] = 199349, + [SMALL_STATE(6358)] = 199365, + [SMALL_STATE(6359)] = 199381, + [SMALL_STATE(6360)] = 199395, + [SMALL_STATE(6361)] = 199409, + [SMALL_STATE(6362)] = 199423, + [SMALL_STATE(6363)] = 199439, + [SMALL_STATE(6364)] = 199453, + [SMALL_STATE(6365)] = 199469, + [SMALL_STATE(6366)] = 199483, + [SMALL_STATE(6367)] = 199497, + [SMALL_STATE(6368)] = 199513, + [SMALL_STATE(6369)] = 199529, + [SMALL_STATE(6370)] = 199545, + [SMALL_STATE(6371)] = 199559, + [SMALL_STATE(6372)] = 199575, + [SMALL_STATE(6373)] = 199591, + [SMALL_STATE(6374)] = 199607, + [SMALL_STATE(6375)] = 199623, + [SMALL_STATE(6376)] = 199639, + [SMALL_STATE(6377)] = 199653, + [SMALL_STATE(6378)] = 199669, + [SMALL_STATE(6379)] = 199685, + [SMALL_STATE(6380)] = 199699, + [SMALL_STATE(6381)] = 199715, + [SMALL_STATE(6382)] = 199731, + [SMALL_STATE(6383)] = 199747, + [SMALL_STATE(6384)] = 199763, + [SMALL_STATE(6385)] = 199779, + [SMALL_STATE(6386)] = 199793, + [SMALL_STATE(6387)] = 199809, + [SMALL_STATE(6388)] = 199825, + [SMALL_STATE(6389)] = 199841, + [SMALL_STATE(6390)] = 199857, + [SMALL_STATE(6391)] = 199873, + [SMALL_STATE(6392)] = 199889, + [SMALL_STATE(6393)] = 199905, + [SMALL_STATE(6394)] = 199919, + [SMALL_STATE(6395)] = 199933, + [SMALL_STATE(6396)] = 199947, + [SMALL_STATE(6397)] = 199963, + [SMALL_STATE(6398)] = 199979, + [SMALL_STATE(6399)] = 199995, + [SMALL_STATE(6400)] = 200011, + [SMALL_STATE(6401)] = 200025, + [SMALL_STATE(6402)] = 200041, + [SMALL_STATE(6403)] = 200057, + [SMALL_STATE(6404)] = 200073, + [SMALL_STATE(6405)] = 200089, + [SMALL_STATE(6406)] = 200105, + [SMALL_STATE(6407)] = 200121, + [SMALL_STATE(6408)] = 200137, + [SMALL_STATE(6409)] = 200153, + [SMALL_STATE(6410)] = 200169, + [SMALL_STATE(6411)] = 200185, + [SMALL_STATE(6412)] = 200199, + [SMALL_STATE(6413)] = 200215, + [SMALL_STATE(6414)] = 200229, + [SMALL_STATE(6415)] = 200245, + [SMALL_STATE(6416)] = 200261, + [SMALL_STATE(6417)] = 200277, + [SMALL_STATE(6418)] = 200293, + [SMALL_STATE(6419)] = 200307, + [SMALL_STATE(6420)] = 200323, + [SMALL_STATE(6421)] = 200339, + [SMALL_STATE(6422)] = 200355, + [SMALL_STATE(6423)] = 200371, + [SMALL_STATE(6424)] = 200387, + [SMALL_STATE(6425)] = 200403, + [SMALL_STATE(6426)] = 200419, + [SMALL_STATE(6427)] = 200433, + [SMALL_STATE(6428)] = 200449, + [SMALL_STATE(6429)] = 200465, + [SMALL_STATE(6430)] = 200481, + [SMALL_STATE(6431)] = 200497, + [SMALL_STATE(6432)] = 200511, + [SMALL_STATE(6433)] = 200527, + [SMALL_STATE(6434)] = 200543, + [SMALL_STATE(6435)] = 200559, + [SMALL_STATE(6436)] = 200573, + [SMALL_STATE(6437)] = 200589, + [SMALL_STATE(6438)] = 200605, + [SMALL_STATE(6439)] = 200619, + [SMALL_STATE(6440)] = 200635, + [SMALL_STATE(6441)] = 200651, + [SMALL_STATE(6442)] = 200667, + [SMALL_STATE(6443)] = 200683, + [SMALL_STATE(6444)] = 200699, + [SMALL_STATE(6445)] = 200715, + [SMALL_STATE(6446)] = 200731, + [SMALL_STATE(6447)] = 200747, + [SMALL_STATE(6448)] = 200763, + [SMALL_STATE(6449)] = 200779, + [SMALL_STATE(6450)] = 200795, + [SMALL_STATE(6451)] = 200811, + [SMALL_STATE(6452)] = 200827, + [SMALL_STATE(6453)] = 200843, + [SMALL_STATE(6454)] = 200857, + [SMALL_STATE(6455)] = 200871, + [SMALL_STATE(6456)] = 200885, + [SMALL_STATE(6457)] = 200901, + [SMALL_STATE(6458)] = 200915, + [SMALL_STATE(6459)] = 200931, + [SMALL_STATE(6460)] = 200945, + [SMALL_STATE(6461)] = 200961, + [SMALL_STATE(6462)] = 200977, + [SMALL_STATE(6463)] = 200991, + [SMALL_STATE(6464)] = 201007, + [SMALL_STATE(6465)] = 201023, + [SMALL_STATE(6466)] = 201037, + [SMALL_STATE(6467)] = 201053, + [SMALL_STATE(6468)] = 201067, + [SMALL_STATE(6469)] = 201083, + [SMALL_STATE(6470)] = 201099, + [SMALL_STATE(6471)] = 201115, + [SMALL_STATE(6472)] = 201129, + [SMALL_STATE(6473)] = 201143, + [SMALL_STATE(6474)] = 201159, + [SMALL_STATE(6475)] = 201173, + [SMALL_STATE(6476)] = 201189, + [SMALL_STATE(6477)] = 201205, + [SMALL_STATE(6478)] = 201221, + [SMALL_STATE(6479)] = 201235, + [SMALL_STATE(6480)] = 201249, + [SMALL_STATE(6481)] = 201263, + [SMALL_STATE(6482)] = 201277, + [SMALL_STATE(6483)] = 201293, + [SMALL_STATE(6484)] = 201307, + [SMALL_STATE(6485)] = 201323, + [SMALL_STATE(6486)] = 201339, + [SMALL_STATE(6487)] = 201353, + [SMALL_STATE(6488)] = 201367, + [SMALL_STATE(6489)] = 201383, + [SMALL_STATE(6490)] = 201399, + [SMALL_STATE(6491)] = 201415, + [SMALL_STATE(6492)] = 201429, + [SMALL_STATE(6493)] = 201445, + [SMALL_STATE(6494)] = 201461, + [SMALL_STATE(6495)] = 201477, + [SMALL_STATE(6496)] = 201493, + [SMALL_STATE(6497)] = 201509, + [SMALL_STATE(6498)] = 201525, + [SMALL_STATE(6499)] = 201539, + [SMALL_STATE(6500)] = 201555, + [SMALL_STATE(6501)] = 201571, + [SMALL_STATE(6502)] = 201587, + [SMALL_STATE(6503)] = 201603, + [SMALL_STATE(6504)] = 201617, + [SMALL_STATE(6505)] = 201633, + [SMALL_STATE(6506)] = 201647, + [SMALL_STATE(6507)] = 201661, + [SMALL_STATE(6508)] = 201677, + [SMALL_STATE(6509)] = 201691, + [SMALL_STATE(6510)] = 201707, + [SMALL_STATE(6511)] = 201723, + [SMALL_STATE(6512)] = 201737, + [SMALL_STATE(6513)] = 201753, + [SMALL_STATE(6514)] = 201767, + [SMALL_STATE(6515)] = 201781, + [SMALL_STATE(6516)] = 201797, + [SMALL_STATE(6517)] = 201813, + [SMALL_STATE(6518)] = 201829, + [SMALL_STATE(6519)] = 201843, + [SMALL_STATE(6520)] = 201859, + [SMALL_STATE(6521)] = 201875, + [SMALL_STATE(6522)] = 201891, + [SMALL_STATE(6523)] = 201907, + [SMALL_STATE(6524)] = 201923, + [SMALL_STATE(6525)] = 201939, + [SMALL_STATE(6526)] = 201955, + [SMALL_STATE(6527)] = 201971, + [SMALL_STATE(6528)] = 201985, + [SMALL_STATE(6529)] = 202001, + [SMALL_STATE(6530)] = 202015, + [SMALL_STATE(6531)] = 202031, + [SMALL_STATE(6532)] = 202045, + [SMALL_STATE(6533)] = 202061, + [SMALL_STATE(6534)] = 202077, + [SMALL_STATE(6535)] = 202093, + [SMALL_STATE(6536)] = 202109, + [SMALL_STATE(6537)] = 202123, + [SMALL_STATE(6538)] = 202137, + [SMALL_STATE(6539)] = 202153, + [SMALL_STATE(6540)] = 202167, + [SMALL_STATE(6541)] = 202183, + [SMALL_STATE(6542)] = 202199, + [SMALL_STATE(6543)] = 202215, + [SMALL_STATE(6544)] = 202231, + [SMALL_STATE(6545)] = 202247, + [SMALL_STATE(6546)] = 202263, + [SMALL_STATE(6547)] = 202279, + [SMALL_STATE(6548)] = 202293, + [SMALL_STATE(6549)] = 202309, + [SMALL_STATE(6550)] = 202323, + [SMALL_STATE(6551)] = 202339, + [SMALL_STATE(6552)] = 202353, + [SMALL_STATE(6553)] = 202367, + [SMALL_STATE(6554)] = 202383, + [SMALL_STATE(6555)] = 202399, + [SMALL_STATE(6556)] = 202413, + [SMALL_STATE(6557)] = 202429, + [SMALL_STATE(6558)] = 202443, + [SMALL_STATE(6559)] = 202459, + [SMALL_STATE(6560)] = 202475, + [SMALL_STATE(6561)] = 202491, + [SMALL_STATE(6562)] = 202507, + [SMALL_STATE(6563)] = 202523, + [SMALL_STATE(6564)] = 202539, + [SMALL_STATE(6565)] = 202555, + [SMALL_STATE(6566)] = 202571, + [SMALL_STATE(6567)] = 202587, + [SMALL_STATE(6568)] = 202603, + [SMALL_STATE(6569)] = 202617, + [SMALL_STATE(6570)] = 202631, + [SMALL_STATE(6571)] = 202645, + [SMALL_STATE(6572)] = 202661, + [SMALL_STATE(6573)] = 202675, + [SMALL_STATE(6574)] = 202689, + [SMALL_STATE(6575)] = 202705, + [SMALL_STATE(6576)] = 202721, + [SMALL_STATE(6577)] = 202735, + [SMALL_STATE(6578)] = 202751, + [SMALL_STATE(6579)] = 202767, + [SMALL_STATE(6580)] = 202783, + [SMALL_STATE(6581)] = 202799, + [SMALL_STATE(6582)] = 202815, + [SMALL_STATE(6583)] = 202831, + [SMALL_STATE(6584)] = 202847, + [SMALL_STATE(6585)] = 202861, + [SMALL_STATE(6586)] = 202877, + [SMALL_STATE(6587)] = 202893, + [SMALL_STATE(6588)] = 202909, + [SMALL_STATE(6589)] = 202923, + [SMALL_STATE(6590)] = 202937, + [SMALL_STATE(6591)] = 202951, + [SMALL_STATE(6592)] = 202967, + [SMALL_STATE(6593)] = 202983, + [SMALL_STATE(6594)] = 202999, + [SMALL_STATE(6595)] = 203015, + [SMALL_STATE(6596)] = 203031, + [SMALL_STATE(6597)] = 203047, + [SMALL_STATE(6598)] = 203061, + [SMALL_STATE(6599)] = 203075, + [SMALL_STATE(6600)] = 203091, + [SMALL_STATE(6601)] = 203105, + [SMALL_STATE(6602)] = 203119, + [SMALL_STATE(6603)] = 203135, + [SMALL_STATE(6604)] = 203151, + [SMALL_STATE(6605)] = 203165, + [SMALL_STATE(6606)] = 203181, + [SMALL_STATE(6607)] = 203195, + [SMALL_STATE(6608)] = 203209, + [SMALL_STATE(6609)] = 203225, + [SMALL_STATE(6610)] = 203241, + [SMALL_STATE(6611)] = 203257, + [SMALL_STATE(6612)] = 203273, + [SMALL_STATE(6613)] = 203287, + [SMALL_STATE(6614)] = 203303, + [SMALL_STATE(6615)] = 203319, + [SMALL_STATE(6616)] = 203333, + [SMALL_STATE(6617)] = 203349, + [SMALL_STATE(6618)] = 203365, + [SMALL_STATE(6619)] = 203379, + [SMALL_STATE(6620)] = 203395, + [SMALL_STATE(6621)] = 203411, + [SMALL_STATE(6622)] = 203427, + [SMALL_STATE(6623)] = 203441, + [SMALL_STATE(6624)] = 203457, + [SMALL_STATE(6625)] = 203473, + [SMALL_STATE(6626)] = 203487, + [SMALL_STATE(6627)] = 203501, + [SMALL_STATE(6628)] = 203517, + [SMALL_STATE(6629)] = 203533, + [SMALL_STATE(6630)] = 203549, + [SMALL_STATE(6631)] = 203565, + [SMALL_STATE(6632)] = 203581, + [SMALL_STATE(6633)] = 203595, + [SMALL_STATE(6634)] = 203609, + [SMALL_STATE(6635)] = 203625, + [SMALL_STATE(6636)] = 203639, + [SMALL_STATE(6637)] = 203653, + [SMALL_STATE(6638)] = 203669, + [SMALL_STATE(6639)] = 203685, + [SMALL_STATE(6640)] = 203701, + [SMALL_STATE(6641)] = 203715, + [SMALL_STATE(6642)] = 203731, + [SMALL_STATE(6643)] = 203747, + [SMALL_STATE(6644)] = 203763, + [SMALL_STATE(6645)] = 203777, + [SMALL_STATE(6646)] = 203791, + [SMALL_STATE(6647)] = 203807, + [SMALL_STATE(6648)] = 203821, + [SMALL_STATE(6649)] = 203837, + [SMALL_STATE(6650)] = 203853, + [SMALL_STATE(6651)] = 203867, + [SMALL_STATE(6652)] = 203881, + [SMALL_STATE(6653)] = 203895, + [SMALL_STATE(6654)] = 203911, + [SMALL_STATE(6655)] = 203927, + [SMALL_STATE(6656)] = 203943, + [SMALL_STATE(6657)] = 203957, + [SMALL_STATE(6658)] = 203973, + [SMALL_STATE(6659)] = 203987, + [SMALL_STATE(6660)] = 204001, + [SMALL_STATE(6661)] = 204017, + [SMALL_STATE(6662)] = 204031, + [SMALL_STATE(6663)] = 204045, + [SMALL_STATE(6664)] = 204061, + [SMALL_STATE(6665)] = 204077, + [SMALL_STATE(6666)] = 204093, + [SMALL_STATE(6667)] = 204107, + [SMALL_STATE(6668)] = 204123, + [SMALL_STATE(6669)] = 204139, + [SMALL_STATE(6670)] = 204153, + [SMALL_STATE(6671)] = 204169, + [SMALL_STATE(6672)] = 204183, + [SMALL_STATE(6673)] = 204199, + [SMALL_STATE(6674)] = 204215, + [SMALL_STATE(6675)] = 204231, + [SMALL_STATE(6676)] = 204245, + [SMALL_STATE(6677)] = 204261, + [SMALL_STATE(6678)] = 204275, + [SMALL_STATE(6679)] = 204289, + [SMALL_STATE(6680)] = 204305, + [SMALL_STATE(6681)] = 204319, + [SMALL_STATE(6682)] = 204333, + [SMALL_STATE(6683)] = 204347, + [SMALL_STATE(6684)] = 204361, + [SMALL_STATE(6685)] = 204375, + [SMALL_STATE(6686)] = 204389, + [SMALL_STATE(6687)] = 204403, + [SMALL_STATE(6688)] = 204419, + [SMALL_STATE(6689)] = 204435, + [SMALL_STATE(6690)] = 204449, + [SMALL_STATE(6691)] = 204463, + [SMALL_STATE(6692)] = 204477, + [SMALL_STATE(6693)] = 204491, + [SMALL_STATE(6694)] = 204505, + [SMALL_STATE(6695)] = 204521, + [SMALL_STATE(6696)] = 204535, + [SMALL_STATE(6697)] = 204551, + [SMALL_STATE(6698)] = 204565, + [SMALL_STATE(6699)] = 204581, + [SMALL_STATE(6700)] = 204595, + [SMALL_STATE(6701)] = 204609, + [SMALL_STATE(6702)] = 204623, + [SMALL_STATE(6703)] = 204639, + [SMALL_STATE(6704)] = 204655, + [SMALL_STATE(6705)] = 204671, + [SMALL_STATE(6706)] = 204687, + [SMALL_STATE(6707)] = 204703, + [SMALL_STATE(6708)] = 204719, + [SMALL_STATE(6709)] = 204733, + [SMALL_STATE(6710)] = 204749, + [SMALL_STATE(6711)] = 204763, + [SMALL_STATE(6712)] = 204777, + [SMALL_STATE(6713)] = 204793, + [SMALL_STATE(6714)] = 204807, + [SMALL_STATE(6715)] = 204821, + [SMALL_STATE(6716)] = 204835, + [SMALL_STATE(6717)] = 204849, + [SMALL_STATE(6718)] = 204865, + [SMALL_STATE(6719)] = 204879, + [SMALL_STATE(6720)] = 204895, + [SMALL_STATE(6721)] = 204909, + [SMALL_STATE(6722)] = 204923, + [SMALL_STATE(6723)] = 204939, + [SMALL_STATE(6724)] = 204955, + [SMALL_STATE(6725)] = 204969, + [SMALL_STATE(6726)] = 204985, + [SMALL_STATE(6727)] = 205001, + [SMALL_STATE(6728)] = 205015, + [SMALL_STATE(6729)] = 205031, + [SMALL_STATE(6730)] = 205047, + [SMALL_STATE(6731)] = 205063, + [SMALL_STATE(6732)] = 205077, + [SMALL_STATE(6733)] = 205093, + [SMALL_STATE(6734)] = 205107, + [SMALL_STATE(6735)] = 205121, + [SMALL_STATE(6736)] = 205135, + [SMALL_STATE(6737)] = 205149, + [SMALL_STATE(6738)] = 205163, + [SMALL_STATE(6739)] = 205179, + [SMALL_STATE(6740)] = 205195, + [SMALL_STATE(6741)] = 205211, + [SMALL_STATE(6742)] = 205227, + [SMALL_STATE(6743)] = 205241, + [SMALL_STATE(6744)] = 205257, + [SMALL_STATE(6745)] = 205271, + [SMALL_STATE(6746)] = 205285, + [SMALL_STATE(6747)] = 205301, + [SMALL_STATE(6748)] = 205317, + [SMALL_STATE(6749)] = 205331, + [SMALL_STATE(6750)] = 205345, + [SMALL_STATE(6751)] = 205361, + [SMALL_STATE(6752)] = 205377, + [SMALL_STATE(6753)] = 205391, + [SMALL_STATE(6754)] = 205407, + [SMALL_STATE(6755)] = 205423, + [SMALL_STATE(6756)] = 205437, + [SMALL_STATE(6757)] = 205453, + [SMALL_STATE(6758)] = 205467, + [SMALL_STATE(6759)] = 205483, + [SMALL_STATE(6760)] = 205497, + [SMALL_STATE(6761)] = 205513, + [SMALL_STATE(6762)] = 205529, + [SMALL_STATE(6763)] = 205545, + [SMALL_STATE(6764)] = 205559, + [SMALL_STATE(6765)] = 205573, + [SMALL_STATE(6766)] = 205587, + [SMALL_STATE(6767)] = 205601, + [SMALL_STATE(6768)] = 205617, + [SMALL_STATE(6769)] = 205631, + [SMALL_STATE(6770)] = 205647, + [SMALL_STATE(6771)] = 205663, + [SMALL_STATE(6772)] = 205679, + [SMALL_STATE(6773)] = 205695, + [SMALL_STATE(6774)] = 205709, + [SMALL_STATE(6775)] = 205725, + [SMALL_STATE(6776)] = 205739, + [SMALL_STATE(6777)] = 205755, + [SMALL_STATE(6778)] = 205771, + [SMALL_STATE(6779)] = 205785, + [SMALL_STATE(6780)] = 205801, + [SMALL_STATE(6781)] = 205817, + [SMALL_STATE(6782)] = 205833, + [SMALL_STATE(6783)] = 205847, + [SMALL_STATE(6784)] = 205861, + [SMALL_STATE(6785)] = 205875, + [SMALL_STATE(6786)] = 205891, + [SMALL_STATE(6787)] = 205907, + [SMALL_STATE(6788)] = 205923, + [SMALL_STATE(6789)] = 205937, + [SMALL_STATE(6790)] = 205953, + [SMALL_STATE(6791)] = 205969, + [SMALL_STATE(6792)] = 205985, + [SMALL_STATE(6793)] = 206001, + [SMALL_STATE(6794)] = 206017, + [SMALL_STATE(6795)] = 206033, + [SMALL_STATE(6796)] = 206047, + [SMALL_STATE(6797)] = 206061, + [SMALL_STATE(6798)] = 206077, + [SMALL_STATE(6799)] = 206093, + [SMALL_STATE(6800)] = 206107, + [SMALL_STATE(6801)] = 206123, + [SMALL_STATE(6802)] = 206137, + [SMALL_STATE(6803)] = 206151, + [SMALL_STATE(6804)] = 206167, + [SMALL_STATE(6805)] = 206183, + [SMALL_STATE(6806)] = 206199, + [SMALL_STATE(6807)] = 206213, + [SMALL_STATE(6808)] = 206229, + [SMALL_STATE(6809)] = 206245, + [SMALL_STATE(6810)] = 206259, + [SMALL_STATE(6811)] = 206275, + [SMALL_STATE(6812)] = 206291, + [SMALL_STATE(6813)] = 206305, + [SMALL_STATE(6814)] = 206319, + [SMALL_STATE(6815)] = 206335, + [SMALL_STATE(6816)] = 206349, + [SMALL_STATE(6817)] = 206365, + [SMALL_STATE(6818)] = 206379, + [SMALL_STATE(6819)] = 206395, + [SMALL_STATE(6820)] = 206411, + [SMALL_STATE(6821)] = 206425, + [SMALL_STATE(6822)] = 206441, + [SMALL_STATE(6823)] = 206457, + [SMALL_STATE(6824)] = 206471, + [SMALL_STATE(6825)] = 206487, + [SMALL_STATE(6826)] = 206501, + [SMALL_STATE(6827)] = 206517, + [SMALL_STATE(6828)] = 206533, + [SMALL_STATE(6829)] = 206549, + [SMALL_STATE(6830)] = 206565, + [SMALL_STATE(6831)] = 206581, + [SMALL_STATE(6832)] = 206597, + [SMALL_STATE(6833)] = 206611, + [SMALL_STATE(6834)] = 206625, + [SMALL_STATE(6835)] = 206639, + [SMALL_STATE(6836)] = 206655, + [SMALL_STATE(6837)] = 206669, + [SMALL_STATE(6838)] = 206685, + [SMALL_STATE(6839)] = 206699, + [SMALL_STATE(6840)] = 206713, + [SMALL_STATE(6841)] = 206729, + [SMALL_STATE(6842)] = 206743, + [SMALL_STATE(6843)] = 206759, + [SMALL_STATE(6844)] = 206773, + [SMALL_STATE(6845)] = 206787, + [SMALL_STATE(6846)] = 206801, + [SMALL_STATE(6847)] = 206817, + [SMALL_STATE(6848)] = 206833, + [SMALL_STATE(6849)] = 206847, + [SMALL_STATE(6850)] = 206861, + [SMALL_STATE(6851)] = 206877, + [SMALL_STATE(6852)] = 206893, + [SMALL_STATE(6853)] = 206909, + [SMALL_STATE(6854)] = 206925, + [SMALL_STATE(6855)] = 206941, + [SMALL_STATE(6856)] = 206955, + [SMALL_STATE(6857)] = 206971, + [SMALL_STATE(6858)] = 206987, + [SMALL_STATE(6859)] = 207003, + [SMALL_STATE(6860)] = 207017, + [SMALL_STATE(6861)] = 207031, + [SMALL_STATE(6862)] = 207045, + [SMALL_STATE(6863)] = 207061, + [SMALL_STATE(6864)] = 207077, + [SMALL_STATE(6865)] = 207093, + [SMALL_STATE(6866)] = 207109, + [SMALL_STATE(6867)] = 207125, + [SMALL_STATE(6868)] = 207141, + [SMALL_STATE(6869)] = 207157, + [SMALL_STATE(6870)] = 207173, + [SMALL_STATE(6871)] = 207189, + [SMALL_STATE(6872)] = 207203, + [SMALL_STATE(6873)] = 207217, + [SMALL_STATE(6874)] = 207233, + [SMALL_STATE(6875)] = 207247, + [SMALL_STATE(6876)] = 207263, + [SMALL_STATE(6877)] = 207277, + [SMALL_STATE(6878)] = 207291, + [SMALL_STATE(6879)] = 207307, + [SMALL_STATE(6880)] = 207323, + [SMALL_STATE(6881)] = 207337, + [SMALL_STATE(6882)] = 207353, + [SMALL_STATE(6883)] = 207369, + [SMALL_STATE(6884)] = 207385, + [SMALL_STATE(6885)] = 207401, + [SMALL_STATE(6886)] = 207415, + [SMALL_STATE(6887)] = 207429, + [SMALL_STATE(6888)] = 207445, + [SMALL_STATE(6889)] = 207461, + [SMALL_STATE(6890)] = 207475, + [SMALL_STATE(6891)] = 207489, + [SMALL_STATE(6892)] = 207505, + [SMALL_STATE(6893)] = 207521, + [SMALL_STATE(6894)] = 207537, + [SMALL_STATE(6895)] = 207551, + [SMALL_STATE(6896)] = 207567, + [SMALL_STATE(6897)] = 207583, + [SMALL_STATE(6898)] = 207599, + [SMALL_STATE(6899)] = 207615, + [SMALL_STATE(6900)] = 207631, + [SMALL_STATE(6901)] = 207647, + [SMALL_STATE(6902)] = 207663, + [SMALL_STATE(6903)] = 207677, + [SMALL_STATE(6904)] = 207691, + [SMALL_STATE(6905)] = 207707, + [SMALL_STATE(6906)] = 207723, + [SMALL_STATE(6907)] = 207737, + [SMALL_STATE(6908)] = 207751, + [SMALL_STATE(6909)] = 207767, + [SMALL_STATE(6910)] = 207781, + [SMALL_STATE(6911)] = 207797, + [SMALL_STATE(6912)] = 207811, + [SMALL_STATE(6913)] = 207827, + [SMALL_STATE(6914)] = 207841, + [SMALL_STATE(6915)] = 207855, + [SMALL_STATE(6916)] = 207871, + [SMALL_STATE(6917)] = 207885, + [SMALL_STATE(6918)] = 207901, + [SMALL_STATE(6919)] = 207917, + [SMALL_STATE(6920)] = 207931, + [SMALL_STATE(6921)] = 207945, + [SMALL_STATE(6922)] = 207961, + [SMALL_STATE(6923)] = 207977, + [SMALL_STATE(6924)] = 207993, + [SMALL_STATE(6925)] = 208009, + [SMALL_STATE(6926)] = 208025, + [SMALL_STATE(6927)] = 208041, + [SMALL_STATE(6928)] = 208057, + [SMALL_STATE(6929)] = 208073, + [SMALL_STATE(6930)] = 208087, + [SMALL_STATE(6931)] = 208103, + [SMALL_STATE(6932)] = 208117, + [SMALL_STATE(6933)] = 208133, + [SMALL_STATE(6934)] = 208149, + [SMALL_STATE(6935)] = 208165, + [SMALL_STATE(6936)] = 208181, + [SMALL_STATE(6937)] = 208197, + [SMALL_STATE(6938)] = 208213, + [SMALL_STATE(6939)] = 208229, + [SMALL_STATE(6940)] = 208245, + [SMALL_STATE(6941)] = 208261, + [SMALL_STATE(6942)] = 208275, + [SMALL_STATE(6943)] = 208291, + [SMALL_STATE(6944)] = 208307, + [SMALL_STATE(6945)] = 208323, + [SMALL_STATE(6946)] = 208337, + [SMALL_STATE(6947)] = 208353, + [SMALL_STATE(6948)] = 208367, + [SMALL_STATE(6949)] = 208383, + [SMALL_STATE(6950)] = 208399, + [SMALL_STATE(6951)] = 208413, + [SMALL_STATE(6952)] = 208429, + [SMALL_STATE(6953)] = 208445, + [SMALL_STATE(6954)] = 208461, + [SMALL_STATE(6955)] = 208475, + [SMALL_STATE(6956)] = 208489, + [SMALL_STATE(6957)] = 208503, + [SMALL_STATE(6958)] = 208517, + [SMALL_STATE(6959)] = 208531, + [SMALL_STATE(6960)] = 208547, + [SMALL_STATE(6961)] = 208563, + [SMALL_STATE(6962)] = 208577, + [SMALL_STATE(6963)] = 208593, + [SMALL_STATE(6964)] = 208609, + [SMALL_STATE(6965)] = 208625, + [SMALL_STATE(6966)] = 208639, + [SMALL_STATE(6967)] = 208653, + [SMALL_STATE(6968)] = 208669, + [SMALL_STATE(6969)] = 208683, + [SMALL_STATE(6970)] = 208699, + [SMALL_STATE(6971)] = 208713, + [SMALL_STATE(6972)] = 208729, + [SMALL_STATE(6973)] = 208743, + [SMALL_STATE(6974)] = 208759, + [SMALL_STATE(6975)] = 208775, + [SMALL_STATE(6976)] = 208791, + [SMALL_STATE(6977)] = 208807, + [SMALL_STATE(6978)] = 208821, + [SMALL_STATE(6979)] = 208835, + [SMALL_STATE(6980)] = 208849, + [SMALL_STATE(6981)] = 208863, + [SMALL_STATE(6982)] = 208877, + [SMALL_STATE(6983)] = 208891, + [SMALL_STATE(6984)] = 208907, + [SMALL_STATE(6985)] = 208921, + [SMALL_STATE(6986)] = 208935, + [SMALL_STATE(6987)] = 208951, + [SMALL_STATE(6988)] = 208967, + [SMALL_STATE(6989)] = 208983, + [SMALL_STATE(6990)] = 208997, + [SMALL_STATE(6991)] = 209010, + [SMALL_STATE(6992)] = 209023, + [SMALL_STATE(6993)] = 209036, + [SMALL_STATE(6994)] = 209049, + [SMALL_STATE(6995)] = 209062, + [SMALL_STATE(6996)] = 209075, + [SMALL_STATE(6997)] = 209088, + [SMALL_STATE(6998)] = 209101, + [SMALL_STATE(6999)] = 209114, + [SMALL_STATE(7000)] = 209127, + [SMALL_STATE(7001)] = 209140, + [SMALL_STATE(7002)] = 209153, + [SMALL_STATE(7003)] = 209166, + [SMALL_STATE(7004)] = 209179, + [SMALL_STATE(7005)] = 209192, + [SMALL_STATE(7006)] = 209205, + [SMALL_STATE(7007)] = 209218, + [SMALL_STATE(7008)] = 209231, + [SMALL_STATE(7009)] = 209244, + [SMALL_STATE(7010)] = 209257, + [SMALL_STATE(7011)] = 209270, + [SMALL_STATE(7012)] = 209283, + [SMALL_STATE(7013)] = 209296, + [SMALL_STATE(7014)] = 209309, + [SMALL_STATE(7015)] = 209322, + [SMALL_STATE(7016)] = 209335, + [SMALL_STATE(7017)] = 209348, + [SMALL_STATE(7018)] = 209361, + [SMALL_STATE(7019)] = 209374, + [SMALL_STATE(7020)] = 209387, + [SMALL_STATE(7021)] = 209400, + [SMALL_STATE(7022)] = 209413, + [SMALL_STATE(7023)] = 209426, + [SMALL_STATE(7024)] = 209439, + [SMALL_STATE(7025)] = 209452, + [SMALL_STATE(7026)] = 209465, + [SMALL_STATE(7027)] = 209478, + [SMALL_STATE(7028)] = 209491, + [SMALL_STATE(7029)] = 209504, + [SMALL_STATE(7030)] = 209517, + [SMALL_STATE(7031)] = 209530, + [SMALL_STATE(7032)] = 209543, + [SMALL_STATE(7033)] = 209556, + [SMALL_STATE(7034)] = 209569, + [SMALL_STATE(7035)] = 209582, + [SMALL_STATE(7036)] = 209595, + [SMALL_STATE(7037)] = 209608, + [SMALL_STATE(7038)] = 209621, + [SMALL_STATE(7039)] = 209634, + [SMALL_STATE(7040)] = 209647, + [SMALL_STATE(7041)] = 209660, + [SMALL_STATE(7042)] = 209673, + [SMALL_STATE(7043)] = 209686, + [SMALL_STATE(7044)] = 209699, + [SMALL_STATE(7045)] = 209712, + [SMALL_STATE(7046)] = 209725, + [SMALL_STATE(7047)] = 209738, + [SMALL_STATE(7048)] = 209751, + [SMALL_STATE(7049)] = 209764, + [SMALL_STATE(7050)] = 209777, + [SMALL_STATE(7051)] = 209790, + [SMALL_STATE(7052)] = 209803, + [SMALL_STATE(7053)] = 209816, + [SMALL_STATE(7054)] = 209829, + [SMALL_STATE(7055)] = 209842, + [SMALL_STATE(7056)] = 209855, + [SMALL_STATE(7057)] = 209868, + [SMALL_STATE(7058)] = 209881, + [SMALL_STATE(7059)] = 209894, + [SMALL_STATE(7060)] = 209907, + [SMALL_STATE(7061)] = 209920, + [SMALL_STATE(7062)] = 209933, + [SMALL_STATE(7063)] = 209946, + [SMALL_STATE(7064)] = 209959, + [SMALL_STATE(7065)] = 209972, + [SMALL_STATE(7066)] = 209985, + [SMALL_STATE(7067)] = 209998, + [SMALL_STATE(7068)] = 210011, + [SMALL_STATE(7069)] = 210024, + [SMALL_STATE(7070)] = 210037, + [SMALL_STATE(7071)] = 210050, + [SMALL_STATE(7072)] = 210063, + [SMALL_STATE(7073)] = 210076, + [SMALL_STATE(7074)] = 210089, + [SMALL_STATE(7075)] = 210102, + [SMALL_STATE(7076)] = 210115, + [SMALL_STATE(7077)] = 210128, + [SMALL_STATE(7078)] = 210141, + [SMALL_STATE(7079)] = 210154, + [SMALL_STATE(7080)] = 210167, + [SMALL_STATE(7081)] = 210180, + [SMALL_STATE(7082)] = 210193, + [SMALL_STATE(7083)] = 210206, + [SMALL_STATE(7084)] = 210219, + [SMALL_STATE(7085)] = 210232, + [SMALL_STATE(7086)] = 210245, + [SMALL_STATE(7087)] = 210258, + [SMALL_STATE(7088)] = 210271, + [SMALL_STATE(7089)] = 210284, + [SMALL_STATE(7090)] = 210297, + [SMALL_STATE(7091)] = 210310, + [SMALL_STATE(7092)] = 210323, + [SMALL_STATE(7093)] = 210336, + [SMALL_STATE(7094)] = 210349, + [SMALL_STATE(7095)] = 210362, + [SMALL_STATE(7096)] = 210375, + [SMALL_STATE(7097)] = 210388, + [SMALL_STATE(7098)] = 210401, + [SMALL_STATE(7099)] = 210414, + [SMALL_STATE(7100)] = 210427, + [SMALL_STATE(7101)] = 210440, + [SMALL_STATE(7102)] = 210453, + [SMALL_STATE(7103)] = 210466, + [SMALL_STATE(7104)] = 210479, + [SMALL_STATE(7105)] = 210492, + [SMALL_STATE(7106)] = 210505, + [SMALL_STATE(7107)] = 210518, + [SMALL_STATE(7108)] = 210531, + [SMALL_STATE(7109)] = 210544, + [SMALL_STATE(7110)] = 210557, + [SMALL_STATE(7111)] = 210570, + [SMALL_STATE(7112)] = 210583, + [SMALL_STATE(7113)] = 210596, + [SMALL_STATE(7114)] = 210609, + [SMALL_STATE(7115)] = 210622, + [SMALL_STATE(7116)] = 210635, + [SMALL_STATE(7117)] = 210648, + [SMALL_STATE(7118)] = 210661, + [SMALL_STATE(7119)] = 210674, + [SMALL_STATE(7120)] = 210687, + [SMALL_STATE(7121)] = 210700, + [SMALL_STATE(7122)] = 210713, + [SMALL_STATE(7123)] = 210726, + [SMALL_STATE(7124)] = 210739, + [SMALL_STATE(7125)] = 210752, + [SMALL_STATE(7126)] = 210765, + [SMALL_STATE(7127)] = 210778, + [SMALL_STATE(7128)] = 210791, + [SMALL_STATE(7129)] = 210804, + [SMALL_STATE(7130)] = 210817, + [SMALL_STATE(7131)] = 210830, + [SMALL_STATE(7132)] = 210843, + [SMALL_STATE(7133)] = 210856, + [SMALL_STATE(7134)] = 210869, + [SMALL_STATE(7135)] = 210882, + [SMALL_STATE(7136)] = 210895, + [SMALL_STATE(7137)] = 210908, + [SMALL_STATE(7138)] = 210921, + [SMALL_STATE(7139)] = 210934, + [SMALL_STATE(7140)] = 210947, + [SMALL_STATE(7141)] = 210960, + [SMALL_STATE(7142)] = 210973, + [SMALL_STATE(7143)] = 210986, + [SMALL_STATE(7144)] = 210999, + [SMALL_STATE(7145)] = 211012, + [SMALL_STATE(7146)] = 211025, + [SMALL_STATE(7147)] = 211038, + [SMALL_STATE(7148)] = 211051, + [SMALL_STATE(7149)] = 211064, + [SMALL_STATE(7150)] = 211077, + [SMALL_STATE(7151)] = 211090, + [SMALL_STATE(7152)] = 211103, + [SMALL_STATE(7153)] = 211116, + [SMALL_STATE(7154)] = 211129, + [SMALL_STATE(7155)] = 211142, + [SMALL_STATE(7156)] = 211155, + [SMALL_STATE(7157)] = 211168, + [SMALL_STATE(7158)] = 211181, + [SMALL_STATE(7159)] = 211194, + [SMALL_STATE(7160)] = 211207, + [SMALL_STATE(7161)] = 211220, + [SMALL_STATE(7162)] = 211233, + [SMALL_STATE(7163)] = 211246, + [SMALL_STATE(7164)] = 211259, + [SMALL_STATE(7165)] = 211272, + [SMALL_STATE(7166)] = 211285, + [SMALL_STATE(7167)] = 211298, + [SMALL_STATE(7168)] = 211311, + [SMALL_STATE(7169)] = 211324, + [SMALL_STATE(7170)] = 211337, + [SMALL_STATE(7171)] = 211350, + [SMALL_STATE(7172)] = 211363, + [SMALL_STATE(7173)] = 211376, + [SMALL_STATE(7174)] = 211389, + [SMALL_STATE(7175)] = 211402, + [SMALL_STATE(7176)] = 211415, + [SMALL_STATE(7177)] = 211428, + [SMALL_STATE(7178)] = 211441, + [SMALL_STATE(7179)] = 211454, + [SMALL_STATE(7180)] = 211467, + [SMALL_STATE(7181)] = 211480, + [SMALL_STATE(7182)] = 211493, + [SMALL_STATE(7183)] = 211506, + [SMALL_STATE(7184)] = 211519, + [SMALL_STATE(7185)] = 211532, + [SMALL_STATE(7186)] = 211545, + [SMALL_STATE(7187)] = 211558, + [SMALL_STATE(7188)] = 211571, + [SMALL_STATE(7189)] = 211584, + [SMALL_STATE(7190)] = 211597, + [SMALL_STATE(7191)] = 211610, + [SMALL_STATE(7192)] = 211623, + [SMALL_STATE(7193)] = 211636, + [SMALL_STATE(7194)] = 211649, + [SMALL_STATE(7195)] = 211662, + [SMALL_STATE(7196)] = 211675, + [SMALL_STATE(7197)] = 211688, + [SMALL_STATE(7198)] = 211701, + [SMALL_STATE(7199)] = 211714, + [SMALL_STATE(7200)] = 211727, + [SMALL_STATE(7201)] = 211740, + [SMALL_STATE(7202)] = 211753, + [SMALL_STATE(7203)] = 211766, + [SMALL_STATE(7204)] = 211779, + [SMALL_STATE(7205)] = 211792, + [SMALL_STATE(7206)] = 211805, + [SMALL_STATE(7207)] = 211818, + [SMALL_STATE(7208)] = 211831, + [SMALL_STATE(7209)] = 211844, + [SMALL_STATE(7210)] = 211857, + [SMALL_STATE(7211)] = 211870, + [SMALL_STATE(7212)] = 211883, + [SMALL_STATE(7213)] = 211896, + [SMALL_STATE(7214)] = 211909, + [SMALL_STATE(7215)] = 211922, + [SMALL_STATE(7216)] = 211935, + [SMALL_STATE(7217)] = 211948, + [SMALL_STATE(7218)] = 211961, + [SMALL_STATE(7219)] = 211974, + [SMALL_STATE(7220)] = 211987, + [SMALL_STATE(7221)] = 212000, + [SMALL_STATE(7222)] = 212013, + [SMALL_STATE(7223)] = 212026, + [SMALL_STATE(7224)] = 212039, + [SMALL_STATE(7225)] = 212052, + [SMALL_STATE(7226)] = 212065, + [SMALL_STATE(7227)] = 212078, + [SMALL_STATE(7228)] = 212091, + [SMALL_STATE(7229)] = 212104, + [SMALL_STATE(7230)] = 212117, + [SMALL_STATE(7231)] = 212130, + [SMALL_STATE(7232)] = 212143, + [SMALL_STATE(7233)] = 212156, + [SMALL_STATE(7234)] = 212169, + [SMALL_STATE(7235)] = 212182, + [SMALL_STATE(7236)] = 212195, + [SMALL_STATE(7237)] = 212208, + [SMALL_STATE(7238)] = 212221, + [SMALL_STATE(7239)] = 212234, + [SMALL_STATE(7240)] = 212247, + [SMALL_STATE(7241)] = 212260, + [SMALL_STATE(7242)] = 212273, + [SMALL_STATE(7243)] = 212286, + [SMALL_STATE(7244)] = 212299, + [SMALL_STATE(7245)] = 212312, + [SMALL_STATE(7246)] = 212325, + [SMALL_STATE(7247)] = 212338, + [SMALL_STATE(7248)] = 212351, + [SMALL_STATE(7249)] = 212364, + [SMALL_STATE(7250)] = 212377, + [SMALL_STATE(7251)] = 212390, + [SMALL_STATE(7252)] = 212403, + [SMALL_STATE(7253)] = 212416, + [SMALL_STATE(7254)] = 212429, + [SMALL_STATE(7255)] = 212442, + [SMALL_STATE(7256)] = 212455, + [SMALL_STATE(7257)] = 212468, + [SMALL_STATE(7258)] = 212481, + [SMALL_STATE(7259)] = 212494, + [SMALL_STATE(7260)] = 212507, + [SMALL_STATE(7261)] = 212520, + [SMALL_STATE(7262)] = 212533, + [SMALL_STATE(7263)] = 212546, + [SMALL_STATE(7264)] = 212559, + [SMALL_STATE(7265)] = 212572, + [SMALL_STATE(7266)] = 212585, + [SMALL_STATE(7267)] = 212598, + [SMALL_STATE(7268)] = 212611, + [SMALL_STATE(7269)] = 212624, + [SMALL_STATE(7270)] = 212637, + [SMALL_STATE(7271)] = 212650, + [SMALL_STATE(7272)] = 212663, + [SMALL_STATE(7273)] = 212676, + [SMALL_STATE(7274)] = 212689, + [SMALL_STATE(7275)] = 212702, + [SMALL_STATE(7276)] = 212715, + [SMALL_STATE(7277)] = 212728, + [SMALL_STATE(7278)] = 212741, + [SMALL_STATE(7279)] = 212754, + [SMALL_STATE(7280)] = 212767, + [SMALL_STATE(7281)] = 212780, + [SMALL_STATE(7282)] = 212793, + [SMALL_STATE(7283)] = 212806, + [SMALL_STATE(7284)] = 212819, + [SMALL_STATE(7285)] = 212832, + [SMALL_STATE(7286)] = 212845, + [SMALL_STATE(7287)] = 212858, + [SMALL_STATE(7288)] = 212871, + [SMALL_STATE(7289)] = 212884, + [SMALL_STATE(7290)] = 212897, + [SMALL_STATE(7291)] = 212910, + [SMALL_STATE(7292)] = 212923, + [SMALL_STATE(7293)] = 212936, + [SMALL_STATE(7294)] = 212949, + [SMALL_STATE(7295)] = 212962, + [SMALL_STATE(7296)] = 212975, + [SMALL_STATE(7297)] = 212988, + [SMALL_STATE(7298)] = 213001, + [SMALL_STATE(7299)] = 213014, + [SMALL_STATE(7300)] = 213027, + [SMALL_STATE(7301)] = 213040, + [SMALL_STATE(7302)] = 213053, + [SMALL_STATE(7303)] = 213066, + [SMALL_STATE(7304)] = 213079, + [SMALL_STATE(7305)] = 213092, + [SMALL_STATE(7306)] = 213105, + [SMALL_STATE(7307)] = 213118, + [SMALL_STATE(7308)] = 213131, + [SMALL_STATE(7309)] = 213144, + [SMALL_STATE(7310)] = 213157, + [SMALL_STATE(7311)] = 213170, + [SMALL_STATE(7312)] = 213183, + [SMALL_STATE(7313)] = 213196, + [SMALL_STATE(7314)] = 213209, + [SMALL_STATE(7315)] = 213222, + [SMALL_STATE(7316)] = 213235, + [SMALL_STATE(7317)] = 213248, + [SMALL_STATE(7318)] = 213261, + [SMALL_STATE(7319)] = 213274, + [SMALL_STATE(7320)] = 213287, + [SMALL_STATE(7321)] = 213300, + [SMALL_STATE(7322)] = 213313, + [SMALL_STATE(7323)] = 213326, + [SMALL_STATE(7324)] = 213339, + [SMALL_STATE(7325)] = 213352, + [SMALL_STATE(7326)] = 213365, + [SMALL_STATE(7327)] = 213378, + [SMALL_STATE(7328)] = 213391, + [SMALL_STATE(7329)] = 213404, + [SMALL_STATE(7330)] = 213417, + [SMALL_STATE(7331)] = 213430, + [SMALL_STATE(7332)] = 213443, + [SMALL_STATE(7333)] = 213456, + [SMALL_STATE(7334)] = 213469, + [SMALL_STATE(7335)] = 213482, + [SMALL_STATE(7336)] = 213495, + [SMALL_STATE(7337)] = 213508, + [SMALL_STATE(7338)] = 213521, + [SMALL_STATE(7339)] = 213534, + [SMALL_STATE(7340)] = 213547, + [SMALL_STATE(7341)] = 213560, + [SMALL_STATE(7342)] = 213573, + [SMALL_STATE(7343)] = 213586, + [SMALL_STATE(7344)] = 213599, + [SMALL_STATE(7345)] = 213612, + [SMALL_STATE(7346)] = 213625, + [SMALL_STATE(7347)] = 213638, + [SMALL_STATE(7348)] = 213651, + [SMALL_STATE(7349)] = 213664, + [SMALL_STATE(7350)] = 213677, + [SMALL_STATE(7351)] = 213690, + [SMALL_STATE(7352)] = 213703, + [SMALL_STATE(7353)] = 213716, + [SMALL_STATE(7354)] = 213729, + [SMALL_STATE(7355)] = 213742, + [SMALL_STATE(7356)] = 213755, + [SMALL_STATE(7357)] = 213768, + [SMALL_STATE(7358)] = 213781, + [SMALL_STATE(7359)] = 213794, + [SMALL_STATE(7360)] = 213807, + [SMALL_STATE(7361)] = 213820, + [SMALL_STATE(7362)] = 213833, + [SMALL_STATE(7363)] = 213846, + [SMALL_STATE(7364)] = 213859, + [SMALL_STATE(7365)] = 213872, + [SMALL_STATE(7366)] = 213885, + [SMALL_STATE(7367)] = 213898, + [SMALL_STATE(7368)] = 213911, + [SMALL_STATE(7369)] = 213924, + [SMALL_STATE(7370)] = 213937, + [SMALL_STATE(7371)] = 213950, + [SMALL_STATE(7372)] = 213963, + [SMALL_STATE(7373)] = 213976, + [SMALL_STATE(7374)] = 213989, + [SMALL_STATE(7375)] = 214002, + [SMALL_STATE(7376)] = 214015, + [SMALL_STATE(7377)] = 214028, + [SMALL_STATE(7378)] = 214041, + [SMALL_STATE(7379)] = 214054, + [SMALL_STATE(7380)] = 214067, + [SMALL_STATE(7381)] = 214080, + [SMALL_STATE(7382)] = 214093, + [SMALL_STATE(7383)] = 214106, + [SMALL_STATE(7384)] = 214119, + [SMALL_STATE(7385)] = 214132, + [SMALL_STATE(7386)] = 214145, + [SMALL_STATE(7387)] = 214158, + [SMALL_STATE(7388)] = 214171, + [SMALL_STATE(7389)] = 214184, + [SMALL_STATE(7390)] = 214197, + [SMALL_STATE(7391)] = 214210, + [SMALL_STATE(7392)] = 214223, + [SMALL_STATE(7393)] = 214236, + [SMALL_STATE(7394)] = 214249, + [SMALL_STATE(7395)] = 214262, + [SMALL_STATE(7396)] = 214275, + [SMALL_STATE(7397)] = 214288, + [SMALL_STATE(7398)] = 214301, + [SMALL_STATE(7399)] = 214314, + [SMALL_STATE(7400)] = 214327, + [SMALL_STATE(7401)] = 214340, + [SMALL_STATE(7402)] = 214353, + [SMALL_STATE(7403)] = 214366, + [SMALL_STATE(7404)] = 214379, + [SMALL_STATE(7405)] = 214392, + [SMALL_STATE(7406)] = 214405, + [SMALL_STATE(7407)] = 214418, + [SMALL_STATE(7408)] = 214431, + [SMALL_STATE(7409)] = 214444, + [SMALL_STATE(7410)] = 214457, + [SMALL_STATE(7411)] = 214470, + [SMALL_STATE(7412)] = 214483, + [SMALL_STATE(7413)] = 214496, + [SMALL_STATE(7414)] = 214509, + [SMALL_STATE(7415)] = 214522, + [SMALL_STATE(7416)] = 214535, + [SMALL_STATE(7417)] = 214548, + [SMALL_STATE(7418)] = 214561, + [SMALL_STATE(7419)] = 214574, + [SMALL_STATE(7420)] = 214587, + [SMALL_STATE(7421)] = 214600, + [SMALL_STATE(7422)] = 214613, + [SMALL_STATE(7423)] = 214626, + [SMALL_STATE(7424)] = 214639, + [SMALL_STATE(7425)] = 214652, + [SMALL_STATE(7426)] = 214665, + [SMALL_STATE(7427)] = 214678, + [SMALL_STATE(7428)] = 214691, + [SMALL_STATE(7429)] = 214704, + [SMALL_STATE(7430)] = 214717, + [SMALL_STATE(7431)] = 214730, + [SMALL_STATE(7432)] = 214743, + [SMALL_STATE(7433)] = 214756, + [SMALL_STATE(7434)] = 214769, + [SMALL_STATE(7435)] = 214782, + [SMALL_STATE(7436)] = 214795, + [SMALL_STATE(7437)] = 214808, + [SMALL_STATE(7438)] = 214821, + [SMALL_STATE(7439)] = 214834, + [SMALL_STATE(7440)] = 214847, + [SMALL_STATE(7441)] = 214860, + [SMALL_STATE(7442)] = 214873, + [SMALL_STATE(7443)] = 214886, + [SMALL_STATE(7444)] = 214899, + [SMALL_STATE(7445)] = 214912, + [SMALL_STATE(7446)] = 214925, + [SMALL_STATE(7447)] = 214938, + [SMALL_STATE(7448)] = 214951, + [SMALL_STATE(7449)] = 214964, + [SMALL_STATE(7450)] = 214977, + [SMALL_STATE(7451)] = 214990, + [SMALL_STATE(7452)] = 215003, + [SMALL_STATE(7453)] = 215016, + [SMALL_STATE(7454)] = 215029, + [SMALL_STATE(7455)] = 215042, + [SMALL_STATE(7456)] = 215055, + [SMALL_STATE(7457)] = 215068, + [SMALL_STATE(7458)] = 215081, + [SMALL_STATE(7459)] = 215094, + [SMALL_STATE(7460)] = 215107, + [SMALL_STATE(7461)] = 215120, + [SMALL_STATE(7462)] = 215133, + [SMALL_STATE(7463)] = 215146, + [SMALL_STATE(7464)] = 215159, + [SMALL_STATE(7465)] = 215172, + [SMALL_STATE(7466)] = 215185, + [SMALL_STATE(7467)] = 215198, + [SMALL_STATE(7468)] = 215211, + [SMALL_STATE(7469)] = 215224, + [SMALL_STATE(7470)] = 215237, + [SMALL_STATE(7471)] = 215250, + [SMALL_STATE(7472)] = 215263, + [SMALL_STATE(7473)] = 215276, + [SMALL_STATE(7474)] = 215289, + [SMALL_STATE(7475)] = 215302, + [SMALL_STATE(7476)] = 215315, + [SMALL_STATE(7477)] = 215328, + [SMALL_STATE(7478)] = 215341, + [SMALL_STATE(7479)] = 215354, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7662), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7479), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6500), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6501), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6522), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6526), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6569), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5653), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7525), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7518), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5857), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7499), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7497), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7496), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(677), - [118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5456), - [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(743), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6359), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7405), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7392), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7379), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7376), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(806), + [118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), + [124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), + [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), + [130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(551), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5565), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(7359), - [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), - [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(675), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7195), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7202), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7457), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(555), - [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4492), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(7243), + [172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), + [174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(769), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7008), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7009), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), + [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7010), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(625), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1687), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1688), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7154), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7074), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6019), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7150), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7149), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7148), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7592), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7265), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2116), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(819), - [409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2104), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1983), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(553), - [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3787), - [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7154), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4638), - [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1976), - [435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4469), - [438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7074), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7127), - [444] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6019), - [447] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(249), - [450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(561), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7150), - [456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(119), - [459] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7149), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6023), - [465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6024), - [468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7148), - [471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(455), - [474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(503), - [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1385), - [480] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(222), - [483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(266), - [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6580), - [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5653), - [492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5635), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4182), - [498] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(852), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4523), - [504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(168), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(583), - [510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7525), - [513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4474), - [516] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(589), - [519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4841), - [522] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3113), - [525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7518), - [528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3130), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5857), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2117), - [537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(830), - [540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1981), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7592), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7265), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7266), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, .production_id = 51), - [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 88), - [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 238), - [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2125), - [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(820), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2107), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1972), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(8), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3789), - [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6485), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4651), - [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1979), - [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4451), - [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6500), - [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6501), - [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5804), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6522), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(106), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6526), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5819), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5821), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6569), - [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(451), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(493), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1570), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4202), - [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(861), - [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4691), - [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(164), - [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2169), - [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(833), - [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1977), - [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7499), - [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7497), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7496), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4711), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1117), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(372), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1126), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 88), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6723), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6948), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6739), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6742), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4587), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7082), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7083), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1985), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(817), + [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1951), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1824), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(553), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3645), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6723), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4537), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1838), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4302), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6891), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6948), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5836), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(564), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6738), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6739), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5840), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5841), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6742), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(459), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(471), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1293), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(221), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(269), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6370), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5583), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5568), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4054), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(860), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4587), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(569), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7405), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4320), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(573), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4659), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2940), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7392), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2948), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5692), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1984), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(832), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1837), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7409), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7082), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7083), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 238), + [556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 51), + [558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2006), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(816), + [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), + [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1828), + [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(8), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3641), + [578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6337), + [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4538), + [584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1831), + [587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4315), + [590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6342), + [593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6343), + [596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5651), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6348), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(94), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6350), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5652), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5654), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6359), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(423), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(503), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1516), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4046), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(858), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4590), + [635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(161), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2009), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(834), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1845), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7379), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7377), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7376), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4398), + [660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1097), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4581), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6730), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6481), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7028), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6288), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6728), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6727), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6726), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4720), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7617), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7326), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7327), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6713), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4507), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6810), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7075), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6689), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6548), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7529), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7226), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7224), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6531), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6831), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6832), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6516), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6468), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6469), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6633), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6907), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7372), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7358), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7357), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7642), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2539), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(96), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7210), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2737), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(248), - [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(271), - [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(4460), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(4785), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7519), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), - [1119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, .production_id = 28), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2327), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(431), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1319), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6702), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6892), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6910), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6876), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7346), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7044), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6794), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6840), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6110), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1108), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4609), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7434), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7143), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7144), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6785), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4339), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6648), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6774), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6353), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7189), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7239), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1842), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(85), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7256), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4579), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), + [987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7146), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2379), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3193), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(250), + [1068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(268), + [1071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1073] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4324), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4818), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [1105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 28), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7245), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1815), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), - [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(445), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7198), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(499), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_rest_pattern, 2, .production_id = 28), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(734), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2173), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7227), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2226), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7264), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7547), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7536), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7534), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4096), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4481), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7370), - [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4485), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7516), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4466), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7418), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1824), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7509), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7501), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2230), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), + [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4327), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7015), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [1203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(539), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28), + [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(698), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1755), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6990), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7081), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1761), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7364), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7456), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7451), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), + [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7136), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7235), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7187), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2207), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2224), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2719), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7564), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7199), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7200), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), - [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4726), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7541), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), - [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4907), - [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), - [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), - [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), - [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), - [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), - [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), - [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4700), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7381), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7016), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7017), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5455), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7006), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7465), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6292), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4710), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4588), + [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), + [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), + [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), + [1976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), + [1984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [1988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), + [1992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), + [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [2022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), [2024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), - [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), - [2035] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(3866), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [2051] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(4176), - [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 5), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 5), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7381), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7382), - [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 1), - [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), - [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), - [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [2081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, .production_id = 83), - [2083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 83), - [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 164), - [2087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 164), - [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 164), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), - [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [2103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), - [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [2107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 175), - [2119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, .production_id = 175), - [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [2123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, .production_id = 175), - [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [2127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 175), - [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 175), - [2131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [2133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 175), - [2135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 145), - [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 145), - [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 145), - [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), - [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, .production_id = 105), - [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, .production_id = 105), - [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 123), - [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, .production_id = 123), - [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [2155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, .production_id = 123), - [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), - [2159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 45), - [2161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 45), - [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 45), - [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [2173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 192), - [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 192), - [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 192), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 193), - [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 193), - [2185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 193), - [2189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), - [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [2193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, .production_id = 67), - [2197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 67), - [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 25), - [2205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 25), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7445), - [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2373), - [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 227), - [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 227), + [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), + [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [2045] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(4024), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [2051] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3726), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [2061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), + [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7227), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7281), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [2069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [2083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 175), + [2085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 175), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [2089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 175), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7329), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [2097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), + [2103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 45), + [2105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), + [2111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [2119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [2121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7295), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [2125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 105), + [2127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 105), + [2129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 233), + [2131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 233), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [2135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 233), + [2137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 227), + [2139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 227), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 227), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [2149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [2151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [2159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), + [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 193), + [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 193), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 193), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 25), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 25), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [2181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [2189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 145), + [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 145), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 145), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 164), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 164), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 164), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 192), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 192), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [2211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 192), + [2213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 106), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 227), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [2225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 107), - [2231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 107), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 107), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 106), - [2239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 106), - [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [2243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 106), - [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4195), - [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 233), - [2259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 233), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 233), - [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7440), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 227), - [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [2271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 145), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 123), - [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 107), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [2287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [2289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 106), - [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [2297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 175), - [2299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 175), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [2307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 192), - [2309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [2311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 193), - [2313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [2315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 45), - [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [2327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [2341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 164), - [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 233), - [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [2357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), - [2359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), - [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [2373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [2375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7335), - [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7333), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [2393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [2403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [2405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [2417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [2427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1), - [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [2449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6947), - [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6947), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4906), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 107), + [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), + [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), + [2233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 83), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 67), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 67), + [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 123), + [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 123), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 123), + [2249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 175), + [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 175), + [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 175), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7330), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [2271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 45), + [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 145), + [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [2283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 227), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [2293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), + [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), + [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [2313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 233), + [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [2325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 107), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [2329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 123), + [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [2337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [2339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 164), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [2347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [2357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 175), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [2361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [2363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 175), + [2367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [2369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [2371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [2373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 193), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [2377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4828), + [2379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 192), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 106), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [2395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [2399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [2405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), + [2407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [2409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [2413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [2421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [2423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6486), + [2433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), + [2435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [2437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [2439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [2441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), + [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4806), + [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), + [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2199), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [2511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [2513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), - [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), - [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), - [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), - [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), - [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3050), - [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), - [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2254), - [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), - [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), - [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2271), - [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), + [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [2519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [2521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [2523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [2525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [2527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [2529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [2531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [2533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [2535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [2539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [2543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [2545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [2553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [2555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [2557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [2565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [2567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [2569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [2575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [2579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [2583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [2585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [2589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [2593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [2595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1819), + [2597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [2599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [2601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), + [2603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [2605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [2607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [2609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [2611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [2613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [2615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [2617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [2619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [2621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [2623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [2625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), + [2627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [2629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [2631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [2633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [2635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [2637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [2639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [2641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [2643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [2645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [2647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [2649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [2651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [2653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), [2655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), - [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7476), - [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4210), - [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7473), - [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(96), - [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7469), - [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), - [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6696), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [2693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7662), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7499), - [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7497), - [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [2718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3716), - [2721] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(258), - [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(621), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), - [2730] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(6026), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), - [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7004), - [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [2748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6044), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7530), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7644), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7645), - [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6597), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4978), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), - [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7224), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6184), - [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [2786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6182), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), - [2792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [2794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7637), - [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7353), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), - [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), - [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7357), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7618), - [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), - [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4657), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4476), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7331), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), - [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5979), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5976), - [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7593), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7654), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7272), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7655), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), - [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), - [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), - [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), - [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7266), - [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), - [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6677), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7624), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7539), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7649), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), - [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), - [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7564), - [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), - [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), - [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7200), - [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7254), - [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7256), - [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(258), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), - [2975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(6026), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7521), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7522), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7197), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7192), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7251), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7248), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4665), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4562), - [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7623), - [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7626), - [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7505), - [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7504), - [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7386), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), - [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7177), - [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), - [3018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 11), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6377), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7479), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7474), - [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [3030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 11), - [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), - [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6564), - [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6920), - [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6311), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6718), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 42), - [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7373), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7371), - [3066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 241), - [3068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 34), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [3072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 94), - [3074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 94), - [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [3078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [3080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7385), - [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [3088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 11), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [3094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 42), - [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, .production_id = 100), - [3102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 272), - [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7427), - [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7428), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7387), - [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 29), - [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, .production_id = 33), - [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), - [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 30), - [3138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 35), - [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 268), - [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 233), - [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 232), - [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 230), - [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, .production_id = 267), - [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 227), - [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 36), - [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 23), - [3158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 235), - [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 234), - [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 193), - [3164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 192), - [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 232), - [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, .production_id = 33), - [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [3172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), - [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 230), - [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 57), - [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 228), - [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 175), - [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 175), - [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 164), - [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 197), - [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), - [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 195), - [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), - [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 145), - [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), - [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 191), - [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, .production_id = 57), - [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 183), - [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 180), - [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 179), - [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 123), - [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 174), - [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 107), - [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), - [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 106), - [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), - [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 150), - [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), - [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 148), - [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 144), - [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 140), - [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 139), - [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 136), - [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 122), - [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 45), - [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 91), - [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 81), - [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4), - [3256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 82), - [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 79), - [3260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 66), - [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 65), - [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), - [3268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 21), - [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 6), - [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), - [3280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 41), - [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 43), - [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 44), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 44), - [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [3298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [3300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [3302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 240), - [3306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 34), - [3310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [3312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 11), - [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 272), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 241), - [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 87), - [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), - [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 81), - [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 29), - [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 202), - [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, .production_id = 148), - [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 92), - [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 93), - [3338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 100), - [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 81), - [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, .production_id = 100), - [3350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1468), - [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5), - [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 87), - [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 148), - [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7596), - [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 11), - [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 101), - [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7591), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 36), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1), - [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 6), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 21), - [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 23), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 29), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 30), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, .production_id = 33), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 35), - [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 41), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 43), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 44), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 44), - [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 65), - [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 66), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 79), - [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 81), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 82), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4), - [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 87), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), - [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 81), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 29), - [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, .production_id = 33), - [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 91), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 92), - [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 93), - [3472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 11), - [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 101), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 45), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 122), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 136), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 139), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 140), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 144), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 148), - [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 150), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 148), - [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 87), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5), - [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 81), - [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 100), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 106), - [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 107), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 174), - [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 123), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 179), - [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 180), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 183), - [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, .production_id = 57), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 191), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 145), - [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 195), - [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 197), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, .production_id = 148), - [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 202), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 164), - [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 175), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 175), - [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 228), - [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 57), - [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 230), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 232), - [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 192), - [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 193), - [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 234), - [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 235), - [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 240), - [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 227), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, .production_id = 267), - [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 230), - [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 232), - [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 233), - [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 268), - [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1), - [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7449), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7351), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2479), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7390), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7350), - [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7552), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), - [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), - [3612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 271), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), - [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 239), - [3620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 200), - [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 201), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), - [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4438), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), - [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7512), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7609), - [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7513), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7515), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), - [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6314), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6312), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5517), - [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6300), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3983), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), - [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7437), - [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5379), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), - [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), - [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), - [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), - [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7414), - [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7436), - [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7435), - [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2355), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), - [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1928), - [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7313), - [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), - [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), - [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2371), - [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7581), - [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7315), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7378), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), - [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), - [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7393), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), - [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), - [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), - [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2477), - [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), - [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2681), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), - [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), - [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), - [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), - [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), - [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), - [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), - [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4813), - [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), - [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), - [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [4060] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), - [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), - [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), - [4121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [4125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), - [4129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [4131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6021), - [4139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [4143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 67), - [4145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 67), - [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 68), - [4149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 68), - [4151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 69), - [4153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 69), - [4155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 70), - [4157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 70), - [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), - [4161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [4171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 142), - [4173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 142), - [4175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 189), - [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 189), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), - [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [4187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), - [4189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), - [4191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 48), - [4194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 48), - [4197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(7375), - [4200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1795), - [4203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 48), - [4205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(753), - [4208] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 48), - [4212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(7447), - [4215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1802), - [4218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 48), SHIFT(7085), - [4231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7431), - [4237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(684), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [4259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, .production_id = 28), - [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6989), - [4270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(285), - [4273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [4276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [4279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 20), - [4281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 20), SHIFT(4188), - [4284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 20), SHIFT_REPEAT(5789), - [4287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 48), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 67), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [4312] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 48), REDUCE(sym_rest_pattern, 2), - [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), - [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [4322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 67), - [4324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 14), - [4328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(528), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4335] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), REDUCE(sym_rest_pattern, 2, .production_id = 28), - [4339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 68), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [4349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_rest_pattern, 2, .production_id = 28), - [4352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [4354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [4361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(732), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [4368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), - [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2487), - [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), - [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), - [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), - [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4395), - [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4222), - [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [4498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), - [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), - [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7565), - [4508] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2353), - [4511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2704), - [4514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), - [4516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [4518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2539), - [4521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3379), - [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2817), - [4527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3061), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), - [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3229), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), - [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4558), - [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6694), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6679), - [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [4636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [4638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), - [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), - [4650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), - [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3369), - [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4345), - [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4365), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2878), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), - [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), - [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [4716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [4718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 20), SHIFT_REPEAT(4166), - [4721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 20), SHIFT_REPEAT(3735), - [4724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 20), - [4726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 20), SHIFT_REPEAT(3566), - [4729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 20), SHIFT_REPEAT(549), - [4732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 20), SHIFT_REPEAT(5707), - [4735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 20), SHIFT_REPEAT(5708), - [4738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 20), SHIFT_REPEAT(3144), - [4741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 20), SHIFT_REPEAT(7378), - [4744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 20), SHIFT_REPEAT(4151), - [4747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 20), SHIFT_REPEAT(5860), - [4750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 20), SHIFT_REPEAT(2675), - [4753] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 20), SHIFT_REPEAT(2995), - [4756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 20), SHIFT_REPEAT(3392), - [4759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 20), SHIFT_REPEAT(2778), - [4762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 20), SHIFT_REPEAT(3438), - [4765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 20), SHIFT_REPEAT(3353), - [4768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 20), SHIFT_REPEAT(3653), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1592), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1099), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4783] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 26), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 27), - [4787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3496), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [4807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 12), - [4809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 12), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), - [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 48), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 111), - [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 111), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6798), - [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 76), - [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 76), - [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), - [4835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), - [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7298), - [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [4845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [4847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2), - [4849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2), - [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, .production_id = 115), - [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, .production_id = 115), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [4859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 49), - [4861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 49), - [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, .production_id = 16), - [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, .production_id = 16), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4785), - [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [4881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6089), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [4925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 263), - [4927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 263), - [4929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 264), - [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 264), - [4933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [4941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2353), - [4944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3379), - [4947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), - [4953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), - [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 64), - [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 64), - [4959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 64), SHIFT(210), - [4962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 265), - [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 265), - [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 266), - [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 266), - [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 63), - [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 187), - [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 187), - [4976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, .production_id = 114), - [4978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, .production_id = 114), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [4982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [4984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 62), - [4988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 294), - [4990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 294), - [4992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 295), - [4994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 295), - [4996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 55), - [4998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 55), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), - [5004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, .production_id = 225), - [5006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, .production_id = 225), - [5008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 296), - [5010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 296), - [5012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [5014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [5016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 186), - [5018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 186), - [5020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 297), - [5022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 297), - [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [5026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, .production_id = 126), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), - [5030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, .production_id = 298), - [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, .production_id = 298), - [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 318), - [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 318), - [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [5040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), - [5042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 224), - [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 224), - [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 223), - [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 223), - [5052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 185), - [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 185), - [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 184), - [5058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 184), - [5060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 68), - [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 68), - [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 67), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 67), - [5068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), - [5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), - [5072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), - [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), - [5076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), - [5078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), - [5080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 172), - [5082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 172), - [5084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 171), - [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 171), - [5088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 83), REDUCE(sym_nested_type_identifier, 3, .production_id = 171), - [5091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 67), REDUCE(sym_nested_type_identifier, 3, .production_id = 171), - [5094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3), - [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3), - [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 22), - [5102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 24), - [5108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 170), - [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 170), - [5112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 169), - [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 169), - [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 168), - [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 168), - [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 262), - [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 262), - [5124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2817), - [5127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 141), - [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 141), - [5131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 167), - [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 167), - [5135] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 14), - [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 14), - [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 116), - [5141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 116), - [5143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [5145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [5147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(210), - [5150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), - [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), - [5154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 75), - [5156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [5160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(210), - [5163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 226), - [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 226), - [5167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), - [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), - [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [5173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 114), - [5175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 114), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 64), - [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), - [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), - [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [5187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [5189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [5191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [5193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(210), - [5196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2), - [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2), - [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 113), - [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 113), - [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2), - [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2), - [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 8), - [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 8), - [5212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 118), - [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 120), - [5216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 121), - [5218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 89), - [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 89), - [5222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 190), - [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 190), - [5226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [5228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [5230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3061), - [5233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), - [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), - [5237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), - [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, .production_id = 125), - [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 112), - [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 112), - [5247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 77), - [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 77), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), - [5253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), - [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), - [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), - [5259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), - [5262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), - [5265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2539), - [5268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [5270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [5274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), - [5277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), - [5280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, .production_id = 50), - [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, .production_id = 50), - [5284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), - [5286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), - [5288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 142), - [5290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 142), - [5292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), - [5294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [5300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3), - [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3), - [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 188), - [5306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 14), - [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 14), - [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7492), - [5314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), - [5316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [5320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, .production_id = 77), - [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, .production_id = 77), - [5324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, .production_id = 76), - [5326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, .production_id = 76), - [5328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [5330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [5332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, .production_id = 77), - [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, .production_id = 77), - [5336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, .production_id = 76), - [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, .production_id = 76), - [5340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2704), - [5343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [5345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [5347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, .production_id = 77), - [5349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, .production_id = 77), - [5351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, .production_id = 76), - [5353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, .production_id = 76), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 84), - [5367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [5373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), - [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [5383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [5391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [5393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [5403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4841), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [5417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 26), - [5419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 27), - [5421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 26), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), - [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [5431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 88), - [5433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 88), SHIFT(669), - [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), - [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [5474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(212), - [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [5481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 64), SHIFT(214), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7102), - [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), - [5488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(212), - [5491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(212), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2615), - [5496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 194), - [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 194), - [5500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(214), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), - [5507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 178), - [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 178), - [5511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 177), - [5513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 177), - [5515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(214), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [5520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 173), - [5522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 173), - [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [5526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 84), REDUCE(sym_assignment_expression, 3, .production_id = 22), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [5531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 84), REDUCE(sym_assignment_expression, 3, .production_id = 62), - [5534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 62), REDUCE(sym_assignment_expression, 3, .production_id = 62), - [5537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 62), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [5541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 64), SHIFT(212), - [5544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 147), - [5546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 147), - [5548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 146), - [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 146), - [5552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, .production_id = 61), - [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, .production_id = 61), - [5556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, .production_id = 57), - [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, .production_id = 57), - [5560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 143), - [5562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 143), - [5564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [5568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), - [5571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), - [5574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 130), - [5576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 130), - [5578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 135), - [5580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 135), - [5582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 134), - [5584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 134), - [5586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 132), - [5588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 132), - [5590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 127), - [5592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 127), - [5594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 124), - [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 124), - [5598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 119), - [5600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 119), - [5602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 121), - [5604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 120), - [5606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, .production_id = 119), - [5608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, .production_id = 119), - [5610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(214), - [5613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 118), - [5615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 117), - [5617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 117), - [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), - [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), - [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), - [5625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [5629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [5631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [5633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [5635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 26), - [5637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 26), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [5641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 80), - [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 80), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [5649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 75), - [5651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 74), - [5653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 74), - [5655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2), - [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2), - [5659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [5661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, .production_id = 73), - [5663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, .production_id = 73), - [5665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 72), - [5667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 72), - [5669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 49), - [5672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 49), - [5675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), - [5678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), - [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [5683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [5685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [5697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 71), - [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 71), - [5701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 63), - [5703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [5707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, .dynamic_precedence = -1, .production_id = 61), - [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, .dynamic_precedence = -1, .production_id = 61), - [5711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, .dynamic_precedence = -1, .production_id = 57), - [5713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, .dynamic_precedence = -1, .production_id = 57), - [5715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 54), - [5717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 54), - [5719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [5723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, .production_id = 53), - [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, .production_id = 53), - [5727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 52), - [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 52), - [5731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 51), - [5733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 51), - [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [5739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [5741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [5748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [5752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 26), REDUCE(sym_object_pattern, 3, .production_id = 27), - [5755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 24), - [5757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 17), - [5759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 17), - [5761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, .production_id = 17), - [5763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, .production_id = 17), - [5765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1), - [5767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1), - [5769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 15), - [5771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 15), - [5773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 2, .dynamic_precedence = -1), - [5775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 2, .dynamic_precedence = -1), - [5777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 11), - [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 11), - [5781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [5786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, .production_id = 46), - [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [5810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [5812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [5814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [5820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [5834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(213), - [5837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(213), - [5840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(213), - [5843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 64), SHIFT(213), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [5860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [5868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [5870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [5888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 62), - [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [5896] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), - [5900] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5696), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [5910] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 26), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 27), - [5914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [5920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 27), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [5956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [5982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [5990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [5992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 64), SHIFT(208), - [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [6001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5097), - [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), - [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [6009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), - [6011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(211), - [6014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [6050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(211), - [6053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(211), - [6056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 85), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3072), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), - [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6744), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [6082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 9), - [6084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 9), - [6086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 9), REDUCE(sym__primary_type, 1, .production_id = 49), - [6089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 37), - [6091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 37), - [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [6095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 64), SHIFT(211), - [6098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), - [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [6110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [6115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5528), - [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [6130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), - [6132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [6136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [6138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [6140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [6142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), - [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [6154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [6158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [6160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [6162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [6164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [6166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), - [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [6176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6180] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 9), - [6183] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 9), REDUCE(sym__primary_type, 1, .production_id = 49), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [6189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 37), - [6191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 37), - [6193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 49), REDUCE(sym__parameter_name, 2, .production_id = 37), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6994), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), - [6200] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(208), - [6203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(208), - [6206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(208), - [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), - [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [6239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [6241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [6243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [6247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [6249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), - [6251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_pattern_repeat1, 1), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3092), - [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), - [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [6287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [6291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6873), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [6325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, .production_id = 108), - [6327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), - [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [6337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 40), - [6339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 40), - [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), - [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), - [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [6359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [6363] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(215), - [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [6370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(215), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), - [6377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [6379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(209), - [6382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(209), - [6385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 155), - [6387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 155), - [6389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(209), - [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [6394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [6400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(215), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [6405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 99), - [6407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 99), - [6409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 88), SHIFT(638), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), - [6414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, .production_id = 14), - [6416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 95), - [6418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 95), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), - [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [6426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), - [6430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), - [6432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6977), - [6434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [6436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), - [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), - [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [6446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [6449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [6452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [6454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [6457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), - [6463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 26), REDUCE(sym_object_pattern, 3, .production_id = 27), - [6466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [6469] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), REDUCE(sym_rest_pattern, 2), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [6475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [6483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 153), - [6485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 153), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), - [6491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 64), SHIFT(215), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [6496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 64), SHIFT(209), - [6499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [6502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [6504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [6507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1), - [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), - [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [6521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), - [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6724), - [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [6535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, .production_id = 203), - [6537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, .production_id = 203), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6673), - [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), - [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), - [6579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [6583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), - [6585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [6593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 26), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 27), - [6596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(216), - [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6745), - [6601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(216), - [6604] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 64), SHIFT(216), - [6607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(216), - [6610] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 45), REDUCE(sym_class, 4, .production_id = 145), - [6613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 45), REDUCE(sym_class, 4, .production_id = 145), - [6616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 106), REDUCE(sym_class, 5, .production_id = 192), - [6619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 106), REDUCE(sym_class, 5, .production_id = 192), - [6622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 26), - [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [6626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 107), REDUCE(sym_class, 5, .production_id = 193), - [6629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 107), REDUCE(sym_class, 5, .production_id = 193), - [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [6634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 117), REDUCE(sym_class, 5, .production_id = 194), - [6637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 117), REDUCE(sym_class, 5, .production_id = 194), - [6640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [6644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 11), REDUCE(sym_class, 3, .production_id = 80), - [6647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 11), REDUCE(sym_class, 3, .production_id = 80), - [6650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 164), REDUCE(sym_class, 6, .production_id = 233), - [6653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 164), REDUCE(sym_class, 6, .production_id = 233), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), - [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [6668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), - [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), - [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), - [6680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 51), REDUCE(sym_class, 4, .production_id = 146), - [6683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 51), REDUCE(sym_class, 4, .production_id = 146), - [6686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 52), REDUCE(sym_class, 4, .production_id = 147), - [6689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 52), REDUCE(sym_class, 4, .production_id = 147), - [6692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 300), - [6694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 300), - [6696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), - [6698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), SHIFT_REPEAT(3572), - [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), - [6703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 198), - [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 198), - [6707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 299), - [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 299), - [6711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 86), - [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 86), - [6715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 236), - [6717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 236), - [6719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 227), - [6721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 227), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [6727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 175), - [6729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 175), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [6733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 123), - [6735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 123), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), - [6739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 269), - [6741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 269), - [6743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 335), - [6745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 335), - [6747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 320), - [6749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 320), - [6751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 319), - [6753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 319), - [6755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 103), - [6757] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 103), SHIFT_REPEAT(3570), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [6762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 270), - [6764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 270), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [6772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [6774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 151), - [6776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 151), - [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [6784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, .production_id = 103), - [6786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, .production_id = 11), - [6788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), - [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3008), - [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7524), - [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), - [6816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), - [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5521), - [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), - [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7023), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), - [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), - [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [6862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6666), - [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), - [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6667), - [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), - [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), - [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6740), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), - [6906] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 20), SHIFT_REPEAT(5860), - [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), - [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3152), - [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), - [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), - [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [6947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3489), - [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), - [6957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [6961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), - [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), - [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7443), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7303), - [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), - [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4083), - [6993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), - [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3950), - [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), - [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5974), - [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), - [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [7013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter, 1, .production_id = 13), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [7017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_parameter, 1, .production_id = 13), SHIFT(4986), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7472), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), - [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), - [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [7042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), - [7048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5989), - [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6837), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6470), - [7064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [7074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7491), - [7078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7457), - [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7416), - [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), - [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), - [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), - [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [7102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), - [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7221), - [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), - [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), - [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), - [7112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), - [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), - [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7412), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7243), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7252), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7255), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [7156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 257), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6026), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [7168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), - [7170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6317), - [7172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, .production_id = 1), - [7174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), - [7180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [7182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 214), - [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [7190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 251), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [7198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 161), - [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), - [7208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 57), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [7236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), - [7238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 104), - [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [7252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 156), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 292), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [7272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), - [7274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 48), REDUCE(sym_jsx_namespace_name, 3), - [7277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7375), - [7279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 5), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 212), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4078), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [7299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 212), - [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [7303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 156), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4851), - [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4849), - [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), - [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4832), - [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5545), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [7321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 57), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [7325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 251), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5324), - [7331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 5), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [7339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), - [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), - [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), - [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4910), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), - [7361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5483), - [7363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 48), SHIFT(7085), - [7366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 5), - [7368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 161), - [7370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 257), - [7372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(396), - [7375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(4851), - [7378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(4849), - [7381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), - [7383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(4832), - [7386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 251), - [7388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 156), - [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 57), - [7392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [7394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7471), - [7396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), - [7400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 212), - [7402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 251), - [7404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 214), - [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 212), - [7408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 104), - [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 5), - [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 156), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [7416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5489), - [7418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 57), - [7420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 292), - [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [7426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6352), - [7428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), - [7430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7470), - [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7477), - [7434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [7436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), - [7446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), - [7448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 19), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [7452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4265), - [7454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2346), - [7456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [7458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [7460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), - [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [7466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4404), - [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), - [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), - [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7413), - [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, .production_id = 76), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), - [7488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), - [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [7492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [7496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), - [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), - [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4407), - [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), - [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6416), - [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), - [7516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5681), - [7518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), - [7520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), - [7522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), - [7524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), - [7526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [7532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), - [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), - [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [7560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 27), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4808), - [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), - [7568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 285), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), - [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), - [7586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), - [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4874), - [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), - [7592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), - [7594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), - [7604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), - [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), - [7608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, .production_id = 76), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6878), - [7612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), - [7614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [7616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), - [7624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [7628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [7632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 131), SHIFT_REPEAT(4680), - [7635] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 131), SHIFT_REPEAT(401), - [7638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 131), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [7652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__destructuring_pattern, 1), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), - [7658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), - [7660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), - [7662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 68), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4839), - [7692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), - [7706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [7710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), - [7712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), - [7720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), - [7722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), - [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [7738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), - [7740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [7742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), - [7760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [7768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4750), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [7778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), - [7780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), - [7782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 184), - [7784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 184), - [7786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 185), - [7788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 185), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [7802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [7804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 186), - [7806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 186), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [7816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 187), - [7818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 187), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), - [7834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [7844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 317), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [7854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 67), - [7856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [7864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [7866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6893), - [7886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), - [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), - [7900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7237), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7212), - [7910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, .production_id = 14), - [7912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, .production_id = 141), - [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, .production_id = 141), - [7916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [7918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7267), - [7920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), - [7922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), - [7936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), - [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7485), - [7944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2), - [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7278), - [7948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [7952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [7956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7334), - [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, .production_id = 77), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), - [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7216), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7487), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 278), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [7984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1), - [7986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [7988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_chain, 1), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), - [7992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), - [7994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [8000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), - [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 323), - [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 102), - [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 277), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), - [8012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 160), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), - [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4836), - [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7657), - [8024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [8026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6160), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 317), - [8036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 122), - [8038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(684), - [8041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, .production_id = 166), - [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), - [8045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4799), - [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [8049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 204), - [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [8053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7641), - [8055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 174), - [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4919), - [8061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 328), - [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [8065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7441), - [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [8069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 222), - [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 261), - [8073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [8075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, .production_id = 337), - [8077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), - [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 221), - [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7652), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [8107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [8113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), - [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [8121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [8127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, .production_id = 10), - [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [8131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 285), - [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [8135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 13), - [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 243), - [8141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 7), - [8143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4307), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5463), - [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4815), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [8151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4812), - [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), - [8155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), - [8157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, .production_id = 77), - [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), - [8161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 301), - [8163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 56), - [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [8167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 26), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 27), - [8170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [8172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 302), - [8174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [8176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(753), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7647), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5453), - [8185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), - [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), - [8193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [8195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7535), - [8203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [8207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 242), - [8209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 137), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [8217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 137), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), - [8221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [8225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), - [8227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), SHIFT_REPEAT(760), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [8232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 138), - [8234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 138), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [8238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 67), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 20), - [8246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 20), SHIFT_REPEAT(5857), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7308), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), - [8257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 26), - [8259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 130), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7508), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [8267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 135), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), - [8281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 134), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [8295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 132), - [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), - [8301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [8309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), - [8313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2), - [8315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), - [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6313), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), - [8341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, .production_id = 10), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5321), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6297), - [8365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(2302), - [8368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [8374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [8376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), - [8378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), - [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), - [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5351), - [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [8394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4201), - [8396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), - [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5366), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7147), - [8412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 1), - [8414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(7508), - [8417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [8419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(486), - [8422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_text, 1), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), - [8426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 78), - [8428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4159), - [8436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), - [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), - [8458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, .dynamic_precedence = -1), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [8470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6989), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5413), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), - [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5962), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5376), - [8582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 137), - [8584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 137), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5444), - [8604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7543), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7605), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [8632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(5588), - [8635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [8637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(477), - [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [8650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 18), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7627), - [8666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 61), - [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [8672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), - [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7625), - [8684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 57), - [8686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, .dynamic_precedence = -1, .production_id = 177), - [8688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, .dynamic_precedence = -1, .production_id = 178), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6672), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [8700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 291), - [8702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 331), - [8704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 313), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [8714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 259), - [8716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), - [8718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), - [8720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6636), - [8722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 334), - [8724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 32), - [8726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 287), - [8728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [8730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 218), - [8732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 316), - [8734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 208), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6239), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), - [8750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), - [8752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 7), - [8754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 253), - [8756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), - [8758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, .production_id = 58), - [8760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 216), - [8762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 255), - [8764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 210), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [8768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 110), - [8770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 260), - [8772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [8774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), - [8776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(1856), - [8779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(6239), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [8818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, .production_id = 307), - [8820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 340), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [8824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [8830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), - [8832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 32), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [8840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 210), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [8846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 208), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [8858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3), - [8860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 326), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [8866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, .production_id = 206), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [8872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 205), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), - [8876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 322), - [8878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 321), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [8882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1898), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), - [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [8893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 284), - [8895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 19), SHIFT(1808), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [8902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 220), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [8910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 281), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), - [8928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 158), - [8930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), - [8932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, .production_id = 250), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [8944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 284), - [8946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 89), - [8948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1810), - [8951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), - [8953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [8955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6901), - [8957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), - [8961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 273), - [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6456), - [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), - [8967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6547), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7342), - [8971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 275), - [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [8975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 245), - [8977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 31), - [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), - [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [8991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 138), - [8993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 138), - [8995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 249), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [8999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, .production_id = 293), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [9009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 276), - [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), - [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [9015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), - [9019] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 19), SHIFT(1864), - [9022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 249), - [9024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 158), - [9026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1807), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [9031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 89), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5409), - [9039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [9041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 163), - [9043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2436), - [9049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 310), - [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7562), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7566), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [9057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 281), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), - [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), - [9067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 245), - [9069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 307), - [9071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 305), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), - [9077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 304), - [9079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1884), - [9082] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 19), SHIFT(1805), - [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), - [9089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, .production_id = 76), - [9091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 19), SHIFT(1906), - [9094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 32), - [9096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6154), - [9098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5315), - [9100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [9104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6025), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), - [9138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), - [9142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), - [9144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6903), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5310), - [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [9176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), - [9178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), - [9184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 165), - [9186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 165), SHIFT_REPEAT(471), - [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5802), - [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [9199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [9201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(6025), - [9204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), - [9206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 47), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [9212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), - [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), - [9218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [9220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(6022), - [9223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(312), - [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), - [9228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [9232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1685), - [9234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), - [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [9252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 229), - [9254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 229), SHIFT_REPEAT(5767), - [9257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 229), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), - [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7166), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7142), - [9267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 57), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [9277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, .production_id = 274), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), - [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [9283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 39), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [9307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [9313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), SHIFT_REPEAT(708), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7005), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6992), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), - [9330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), REDUCE(aux_sym_template_literal_type_repeat1, 1), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6987), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [9343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [9349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2), SHIFT_REPEAT(5801), - [9352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2), - [9354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2), SHIFT_REPEAT(5801), - [9357] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2), SHIFT_REPEAT(5802), - [9360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2), - [9362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2), SHIFT_REPEAT(5802), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [9369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1), - [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), - [9383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 14), - [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [9387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [9391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [9393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), - [9395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 27), - [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [9401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [9411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [9413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 129), - [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), - [9425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), - [9427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [9429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [9431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [9433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(4728), - [9436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [9444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [9446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), - [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [9456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 60), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), - [9462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [9464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 97), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [9476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 109), - [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [9484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5406), - [9486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [9516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [9518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 181), - [9520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 181), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [9524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 182), - [9526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 182), - [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [9538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), - [9544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [9548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, .production_id = 237), - [9550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 312), - [9552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 252), - [9554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 231), SHIFT_REPEAT(3669), - [9557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 231), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [9561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 311), - [9563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 314), - [9565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 1), - [9567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 1), - [9569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 1), - [9571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 1), - [9573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3), - [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), - [9579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(1752), - [9582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [9584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 242), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), - [9588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [9592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 244), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6574), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6576), - [9598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 246), - [9600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 247), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), - [9604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1576), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [9608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 248), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7162), - [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5990), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4842), - [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [9628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 254), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), - [9634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(732), - [9637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6039), - [9639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [9641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 243), - [9643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 315), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), - [9647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 215), - [9649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 256), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6747), - [9653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 219), - [9655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 217), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4945), - [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), - [9673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [9675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 207), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), - [9679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), - [9685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [9689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 174), - [9691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 213), - [9693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 209), - [9695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 204), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [9699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 211), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [9705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [9709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [9725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [9733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), - [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [9743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [9745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [9749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [9751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), - [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [9755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), - [9757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [9759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [9763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [9765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [9771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(1800), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [9784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, .production_id = 77), - [9786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 279), - [9788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 280), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6496), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [9804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6414), - [9806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7494), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), - [9810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(1887), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [9815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6770), - [9819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 282), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [9823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [9825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [9827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), - [9829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 283), - [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5825), - [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), - [9837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 277), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), - [9841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), - [9843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [9845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 278), - [9847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 286), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [9851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [9853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [9855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 288), - [9857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 289), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [9865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [9867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [9869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), - [9871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7056), - [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), - [9881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [9885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 1), - [9887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1), - [9889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 290), - [9891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), - [9893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, .production_id = 301), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), - [9897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 306), - [9899] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [9901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), - [9903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 47), - [9905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 162), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [9909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 90), - [9911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 159), - [9913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 309), - [9915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 308), - [9917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 157), - [9919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 122), - [9921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 303), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6739), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [9945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [9947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [9949] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(4297), - [9952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7058), - [9956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 258), - [9958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(4470), - [9961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [9963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4), - [9965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 338), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [9975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, .production_id = 342), - [9977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6189), - [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [9999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 329), - [10001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [10003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), - [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6842), - [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), - [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [10017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, .production_id = 5), - [10019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), - [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [10027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 341), - [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), - [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5283), - [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), - [10043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(5972), - [10046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [10048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 339), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), - [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [10086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 336), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [10104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 1), - [10106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(3342), - [10109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [10115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(3077), - [10118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), - [10120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 332), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), - [10124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 330), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), - [10130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 31), - [10132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 333), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), - [10138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(293), - [10141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4261), - [10145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [10147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), - [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), - [10153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), - [10159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [10161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), - [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4798), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), - [10177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, .production_id = 1), - [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), - [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), - [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), - [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), - [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [10201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [10205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [10207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7528), - [10213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6409), - [10215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(274), - [10218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4937), - [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), - [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [10232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 90), - [10234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 89), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), - [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), - [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7294), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4884), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4288), - [10278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 85), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [10302] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), SHIFT_REPEAT(6985), - [10305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), - [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), - [10311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [10313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [10317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, .production_id = 57), - [10319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1), - [10321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 29), - [10323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 327), - [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [10327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), - [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), - [10331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6941), - [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6941), - [10335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6601), - [10337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), - [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), - [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [10343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [10345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [10347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 325), - [10349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4040), - [10351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), - [10353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), - [10367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [10369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [10377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 324), - [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [10393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7632), - [10397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), - [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7629), - [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [10407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [10415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), - [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7611), - [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [10423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [10431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, .production_id = 89), - [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7607), - [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), - [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6409), - [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), - [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7583), - [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3659), - [10465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [10467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [10469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [10477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [10481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [10483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7579), - [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [10487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1), - [10489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7549), - [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [10497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [10499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [10503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [10511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [10515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7545), - [10517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, .production_id = 57), - [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), - [10521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), - [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), - [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [10533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [10537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2), - [10539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 59), - [10541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), - [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4942), - [10547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), - [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [10557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 96), - [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [10561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 98), - [10563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, .production_id = 5), - [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), - [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [10573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [10577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [10583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7126), - [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), - [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [10589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), - [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7131), - [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), - [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), - [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [10605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), - [10607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7323), - [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [10611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7170), - [10615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [10631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), - [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), - [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [10639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), - [10641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, .production_id = 196), - [10643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 38), - [10645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, .production_id = 199), - [10647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [10649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7173), - [10651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [10653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), - [10655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [10657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), - [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), - [10665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7405), - [10667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [10671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [10673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [10675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [10677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [10681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [10683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [10685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), - [10689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), - [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [10693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), - [10697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 128), - [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6954), - [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6959), - [10703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), - [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), - [10707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), - [10709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, .production_id = 196), - [10711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6899), - [10713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), - [10715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 133), - [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [10719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6892), - [10723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), - [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [10727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [10731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6414), - [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), - [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [10749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [10763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [10765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), - [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [10769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7578), - [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [10773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), - [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [10777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4423), - [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [10781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), - [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [10785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), - [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [10789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [10793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [10799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [10801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6189), - [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), - [10805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, .production_id = 149), - [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), - [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), - [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [10819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 152), - [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), - [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [10825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 149), - [10827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), - [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), - [10831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 31), - [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [10835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2865), - [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), - [10839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [10841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 1), - [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [10849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2858), - [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [10853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [10855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 154), - [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [10859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [10863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [10865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 176), - [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), - [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [10877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [10879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, .production_id = 32), - [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [10887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [10891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), - [10893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [10903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), - [10905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__formal_parameter, 1), - [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [10909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3), - [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6707), - [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), - [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [10919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), - [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), - [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), - [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [10939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), - [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), - [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [10947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7270), - [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6999), - [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), - [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), - [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), - [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6935), - [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), - [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6556), - [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6542), - [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), - [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6868), - [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), - [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), - [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [11005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7615), - [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), - [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), - [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), - [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [11039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), - [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), - [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [11063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), - [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [11073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7482), - [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), - [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), - [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), - [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), - [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), - [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), - [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), - [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), - [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [11107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), - [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [11119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4), - [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), - [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), - [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), - [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [11139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), - [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), - [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), - [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), - [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6818), - [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), - [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), - [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), - [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6709), - [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6594), - [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), - [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7526), - [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), - [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [11229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), - [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [11233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7493), - [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6611), - [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), - [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), - [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), - [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), - [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2506), - [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), - [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), - [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7305), - [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), - [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [11323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5), - [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), - [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), - [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), - [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), - [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), - [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7542), - [11399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), - [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), - [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), - [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), - [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), - [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), - [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), - [11433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), - [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), - [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), - [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), - [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), - [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), - [11465] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), - [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7277), - [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [11499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), - [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7263), - [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [11519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [11521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7211), - [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), - [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7494), - [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7633), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7201), - [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [11543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), - [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), - [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [11557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [11559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [11561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), - [11563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [11565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [11567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [11569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [11571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [11573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [11575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [11577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [11579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [11581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), - [11583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), - [11585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5108), - [11587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), - [11589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [11591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [11593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [11595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [11597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7233), - [11599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), - [11601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7073), - [11603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [11605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [11607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [11609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), - [11611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [11613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [11615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [11617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [11619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [11621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [11623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [11625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), - [11627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), - [11629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [11631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [11633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [11635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [11637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [11639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), - [11641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7299), - [11643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [11645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), - [11649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [11651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5334), - [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [11655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), - [11657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [11659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [11661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [11663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [11665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [11667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [11669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [11671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), - [11673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), - [11675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), - [11677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [11679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [11681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [11683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7347), - [11685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [11687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), - [11689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [11691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [11695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [11697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [11699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [11703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [11705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [11707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6759), - [11709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [11713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6584), - [11719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), - [11721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [11723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6551), - [11725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [11727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7585), - [11729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [11731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), - [11733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [11735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7613), - [11737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [11739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6505), - [11741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [11743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1), + [2657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), + [2659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [2661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7339), + [2663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), + [2665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [2667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [2669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7336), + [2671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [2673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [2675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [2677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), + [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(85), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6530), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [2693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), + [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), + [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), + [2700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [2702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7379), + [2706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7377), + [2708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), + [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), + [2718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3552), + [2721] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(256), + [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(796), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4569), + [2730] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(5783), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [2738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7241), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [2742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [2750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7410), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [2766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7472), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [2780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [2782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [2784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7083), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6163), + [2788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6162), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7194), + [2796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [2798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), + [2800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6687), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7189), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [2828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5859), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7435), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4545), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6356), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7144), + [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [2868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4650), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7462), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6489), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), + [2900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [2902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6372), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [2958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6847), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), + [2966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7069), + [2968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7071), + [2970] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(256), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [2975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5783), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7172), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7263), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7100), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7101), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4589), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7289), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7284), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), + [3008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6194), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7205), + [3016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), + [3018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6995), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6994), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), + [3028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), + [3030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6933), + [3034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7202), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7200), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7276), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6973), + [3052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 42), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [3070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 34), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [3074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 100), + [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [3082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [3092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7309), + [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 241), + [3096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 272), + [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), + [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [3106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [3108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [3112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), + [3114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7286), + [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), + [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 94), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 42), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7420), + [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 43), + [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 179), + [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 123), + [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 41), + [3138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 174), + [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 175), + [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 33), + [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 35), + [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 30), + [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 107), + [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 106), + [3158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), + [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 150), + [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 29), + [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), + [3172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 148), + [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 144), + [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 140), + [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 139), + [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 136), + [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 241), + [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 122), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 23), + [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 45), + [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 91), + [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 81), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 272), + [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), + [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 82), + [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 34), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 79), + [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), + [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 66), + [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 193), + [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 65), + [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), + [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 44), + [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), + [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), + [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 44), + [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), + [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 33), + [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 100), + [3244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [3246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), + [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 36), + [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7417), + [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 183), + [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 57), + [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 87), + [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [3268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 191), + [3270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 81), + [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), + [3276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 29), + [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 145), + [3282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 268), + [3286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 92), + [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 21), + [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), + [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 195), + [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 233), + [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 93), + [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 197), + [3310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 232), + [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), + [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), + [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 267), + [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 227), + [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 164), + [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 240), + [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), + [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), + [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 202), + [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 148), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 175), + [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), + [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 57), + [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), + [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 101), + [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 100), + [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 81), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [3360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 232), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 87), + [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 148), + [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 192), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 45), + [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 148), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 87), + [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 44), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 29), + [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), + [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 44), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), + [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 148), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 144), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 43), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 81), + [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 41), + [3404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), + [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 36), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 35), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 33), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 30), + [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 100), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 106), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 29), + [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 107), + [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 81), + [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 140), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 23), + [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 87), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 21), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 139), + [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 174), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 65), + [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 33), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 91), + [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 123), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 66), + [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 136), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 179), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 92), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 183), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 57), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 93), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 122), + [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), + [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 191), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 145), + [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 101), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 195), + [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 81), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 197), + [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 148), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 202), + [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 164), + [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 82), + [3536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 150), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), + [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 175), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 175), + [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 268), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 228), + [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 57), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 230), + [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [3558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 232), + [3560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 192), + [3562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 233), + [3564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 232), + [3566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 267), + [3570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), + [3572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [3574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 227), + [3576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 240), + [3578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 235), + [3580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 79), + [3582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 234), + [3584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 193), + [3586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [3588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7345), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2859), + [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7019), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2253), + [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7372), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7221), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [3618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 271), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [3622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 200), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [3630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 201), + [3632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 239), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3859), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4298), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1573), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5606), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7297), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5371), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7426), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7300), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7310), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5292), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4235), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5871), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5876), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), + [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3845), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2386), + [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5289), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), + [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7000), + [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2318), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [3816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [3818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7398), + [3822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [3824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6993), + [3826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), + [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6999), + [3830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [3836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), + [3838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5584), + [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [3848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7333), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [3858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), + [3860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [3862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [3864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7231), + [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), + [3868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7335), + [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7338), + [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [3880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [3882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [3884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [3886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [3888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), + [3890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), + [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [3896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), + [3898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [3904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7201), + [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), + [3916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), + [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2434), + [3922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), + [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2409), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), + [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), + [3958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [3974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2664), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3051), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2659), + [4006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), + [4012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), + [4018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [4040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [4046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), + [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), + [4064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5509), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5570), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5537), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5519), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5475), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), + [4125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 68), + [4127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 68), + [4129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 70), + [4131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 70), + [4133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 142), + [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 142), + [4137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [4141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [4143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), + [4145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [4147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6543), + [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), + [4155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [4157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1650), + [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5753), + [4165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [4169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [4174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [4177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 189), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 189), + [4181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 67), + [4183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 67), + [4185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 69), + [4187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 69), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), + [4191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [4193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [4195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(699), + [4198] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 48), + [4202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 48), + [4204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 48), + [4207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7369), + [4210] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 48), + [4213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1655), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7246), + [4223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1650), + [4226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 48), SHIFT(6629), + [4229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [4239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), + [4241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT(4049), + [4244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(6128), + [4247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7343), + [4253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [4257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), + [4261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(283), + [4264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [4267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), + [4269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [4274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [4277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 28), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [4281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [4284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(779), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [4289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 48), + [4292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [4304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4306] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 48), REDUCE(sym_rest_pattern, 2, 0, 0), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), + [4312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 67), + [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5678), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [4322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [4326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 14), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 68), + [4330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 67), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 28), + [4339] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 28), + [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [4345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [4347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [4349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [4351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(540), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [4366] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [4369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(691), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [4376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2907), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [4416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [4442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [4446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2733), + [4456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), + [4460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [4466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [4468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [4472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [4480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3984), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5931), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [4506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [4508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7382), + [4512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2208), + [4515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2583), + [4518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [4522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2474), + [4525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(3206), + [4528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2916), + [4531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2465), + [4534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3966), + [4537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3555), + [4540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), + [4542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3425), + [4545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(525), + [4548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5408), + [4551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5629), + [4554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2959), + [4557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(7003), + [4560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3980), + [4563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(5893), + [4566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2390), + [4569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2917), + [4572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3227), + [4575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(2580), + [4578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3266), + [4581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3265), + [4584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 20), SHIFT_REPEAT(3473), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2959), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), + [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2917), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), + [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6877), + [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [4637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [4639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [4643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), + [4645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3313), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [4653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1149), + [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4230), + [4659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), + [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [4663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2843), + [4665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [4667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), + [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [4671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), + [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), + [4677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), + [4679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [4681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), + [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2919), + [4685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [4689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), + [4691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1210), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [4703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [4707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [4715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), + [4719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [4721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1208), + [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [4729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6839), + [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [4735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), + [4739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [4741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), + [4745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3011), + [4747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3236), + [4749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2553), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1105), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2525), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [4787] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6883), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [4797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 12), + [4799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 12), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6619), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [4807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 48), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7021), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 111), + [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 111), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6881), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 76), + [4835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 76), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [4841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 49), + [4843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 49), + [4845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 115), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 115), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7040), + [4855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 0), + [4857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 0), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [4861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 16), + [4863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 16), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [4869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [4871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), + [4873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [4877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 295), + [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 295), + [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [4937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [4941] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(216), + [4944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 64), + [4946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), + [4948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [4950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [4954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [4956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), + [4958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [4962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [4964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 294), + [4966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 294), + [4968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 24), + [4970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), + [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), + [4976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 75), + [4978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [4980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [4982] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(216), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 64), + [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 77), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 77), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 266), + [4995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 266), + [4997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 112), + [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 112), + [5001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [5005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [5009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 265), + [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 265), + [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [5017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 264), + [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 264), + [5021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 263), + [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 263), + [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), + [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), + [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 262), + [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 262), + [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 142), + [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 142), + [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 89), + [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 89), + [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 190), + [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 190), + [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [5057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(216), + [5060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 226), + [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 226), + [5064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [5066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 113), + [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 113), + [5070] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), + [5072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), + [5074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), + [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), + [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 114), + [5080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 114), + [5082] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [5084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [5086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 225), + [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 225), + [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [5094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 187), + [5096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 187), + [5098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 186), + [5100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 186), + [5102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), + [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 224), + [5106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 76), + [5108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 76), + [5110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 223), + [5112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 223), + [5114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 114), + [5116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 114), + [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), + [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), + [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 185), + [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 185), + [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 184), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 184), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [5134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [5136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2208), + [5139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(3206), + [5142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [5144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), + [5146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [5148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [5150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 116), + [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 116), + [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 77), + [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 77), + [5158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 68), + [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 68), + [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 296), + [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 296), + [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 67), + [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 67), + [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 22), + [5172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 14), + [5174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 14), + [5176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), + [5178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 14), + [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 188), + [5182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2916), + [5185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(216), + [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), + [5190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), + [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [5194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 63), + [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [5198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 167), + [5200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 167), + [5202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 141), + [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 141), + [5206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), + [5208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 168), + [5210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [5212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [5216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 169), + [5218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 169), + [5220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170), + [5222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 170), + [5224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 318), + [5226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 318), + [5228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 298), + [5230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 298), + [5232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [5234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [5236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [5238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [5240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [5244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 118), + [5246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 297), + [5248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 297), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7280), + [5254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 171), + [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 171), + [5258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 67), REDUCE(sym_nested_type_identifier, 3, 0, 171), + [5261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 83), REDUCE(sym_nested_type_identifier, 3, 0, 171), + [5264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 120), + [5266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 172), + [5268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 172), + [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 121), + [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [5274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 125), + [5276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 126), + [5278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 76), + [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 76), + [5282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 77), + [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 77), + [5286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), + [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [5290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [5294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), + [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 62), + [5302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [5304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), + [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [5310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [5314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2474), + [5317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2583), + [5320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [5322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [5324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [5326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 50), + [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 50), + [5336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2465), + [5339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 55), + [5341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 55), + [5343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [5353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 77), + [5355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 77), + [5357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 76), + [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 76), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [5363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 178), + [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 178), + [5367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), + [5369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), + [5371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [5373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [5375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [5377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [5379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), + [5381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(6696), + [5384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 54), + [5386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 54), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [5390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [5412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [5446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [5448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [5450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 53), + [5452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 53), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [5490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 57), + [5492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 57), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), + [5504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), + [5506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), + [5508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), + [5510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 61), + [5512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 3, -1, 61), + [5514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(211), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [5519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [5521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [5523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [5526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [5529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 143), + [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 143), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [5537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [5539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [5541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 57), + [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 57), + [5545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 3, 0, 61), + [5547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 3, 0, 61), + [5549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(209), + [5552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 130), + [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 130), + [5556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), + [5558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 135), + [5560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), + [5562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 134), + [5564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 146), + [5566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 146), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [5572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 147), + [5574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 147), + [5576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [5578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [5580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(209), + [5583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 63), + [5585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(209), + [5588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), + [5590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, -1, 132), + [5592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 127), + [5594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 127), + [5596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 124), + [5598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 124), + [5600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 119), + [5602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 119), + [5604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 121), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 194), + [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 194), + [5612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 120), + [5614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), + [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [5618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 119), + [5620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 119), + [5622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 71), + [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 71), + [5626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), + [5628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), + [5630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), + [5632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 27), + [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), + [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [5638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [5640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 62), REDUCE(sym_assignment_expression, 3, 0, 62), + [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 62), + [5645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 62), + [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [5652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 84), REDUCE(sym_assignment_expression, 3, 0, 22), + [5655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 118), + [5657] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), + [5660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [5672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 173), + [5674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 173), + [5676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 177), + [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, -1, 177), + [5680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6510), + [5687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [5691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 24), + [5693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, 0, 17), + [5695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, 0, 17), + [5697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 17), + [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 17), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [5703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), + [5705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), + [5707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 15), + [5709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 15), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [5713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [5717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 26), + [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 26), + [5721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [5723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 80), + [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 80), + [5727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(211), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [5732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), + [5734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 2, -1, 0), + [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6529), + [5738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 75), + [5740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, 0, 74), + [5742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, 0, 74), + [5744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [5747] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [5749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 2, 0, 0), + [5751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(209), + [5754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 73), + [5756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 73), + [5758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 72), + [5760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 72), + [5762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 88), + [5764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(659), + [5767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(211), + [5770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(211), + [5773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 49), + [5776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 49), + [5779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [5782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6817), + [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [5793] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [5805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [5807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [5809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 27), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 46), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [5857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [5859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [5863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 62), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [5867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(208), + [5870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(208), + [5873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(208), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6970), + [5900] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [5904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [5906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [5918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(208), + [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [5931] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [5985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [5989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [6003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [6013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [6015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [6019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [6021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), + [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), + [6053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 37), + [6055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 37), + [6057] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 49), REDUCE(sym__parameter_name, 2, 0, 37), + [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5071), + [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 85), + [6082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(214), + [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), + [6091] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(215), + [6094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(215), + [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3197), + [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), + [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6860), + [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), + [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), + [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [6127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), + [6129] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), + [6132] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym__primary_type, 1, 0, 49), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [6138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(214), + [6141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [6144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(214), + [6147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [6150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [6154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(214), + [6157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [6165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), + [6167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym__primary_type, 1, 0, 49), + [6170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3296), + [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), + [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), + [6180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(215), + [6183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [6197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(215), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [6208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 37), + [6210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 37), + [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), + [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [6220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 108), + [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [6232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [6268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [6270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), + [6278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [6280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [6294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [6298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [6322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), + [6324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [6328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 99), + [6330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 99), + [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6498), + [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [6346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [6350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 95), + [6352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 95), + [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [6356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [6358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4403), + [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [6364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6459), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [6378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [6386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(213), + [6389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(213), + [6392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(213), + [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2920), + [6403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [6409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [6413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [6416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [6418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [6421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), + [6423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 88), SHIFT(710), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6843), + [6428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 203), + [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 203), + [6432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(213), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6872), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [6449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [6458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(212), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3136), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [6469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(212), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), + [6474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(212), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [6479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(212), + [6482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [6496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 153), + [6498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 153), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [6502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 155), + [6504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 155), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), + [6510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [6512] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6916), + [6520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [6523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [6525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [6528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [6530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 26), REDUCE(sym_object_pattern, 3, 0, 27), + [6533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6985), + [6540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [6542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [6544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [6554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [6562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [6584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(210), + [6587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [6590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(210), + [6593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(210), + [6596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 64), SHIFT(210), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), + [6601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6874), + [6617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 192), + [6620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 106), REDUCE(sym_class, 5, 0, 192), + [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [6625] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 193), + [6628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 107), REDUCE(sym_class, 5, 0, 193), + [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [6635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [6647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 147), + [6650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 147), + [6653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), + [6656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 80), + [6659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 145), + [6662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 45), REDUCE(sym_class, 4, 0, 145), + [6665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 146), + [6668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 146), + [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [6673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 194), + [6676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 117), REDUCE(sym_class, 5, 0, 194), + [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [6683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), + [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), + [6689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 164), REDUCE(sym_class, 6, 0, 233), + [6692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 164), REDUCE(sym_class, 6, 0, 233), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3328), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [6699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 123), + [6701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 123), + [6703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 175), + [6705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 175), + [6707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 86), + [6709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 86), + [6711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 335), + [6713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 335), + [6715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 236), + [6717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 236), + [6719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 269), + [6721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 269), + [6723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 299), + [6725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 299), + [6727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 300), + [6729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 300), + [6731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 151), + [6733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 151), + [6735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 227), + [6737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 227), + [6739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 198), + [6741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 198), + [6743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(3431), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [6750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 320), + [6752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 320), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), + [6762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 319), + [6764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 319), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [6768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 270), + [6770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 270), + [6772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), + [6774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 103), SHIFT_REPEAT(3419), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [6791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 103), + [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [6797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), + [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [6801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 51), + [6803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [6805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [6809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [6811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [6813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [6815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [6817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7437), + [6823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [6829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [6835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [6839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [6841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [6845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [6849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [6851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [6853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [6855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [6861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6848), + [6863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [6867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [6871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [6873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6844), + [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [6883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [6885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6968), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6958), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [6891] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(5893), + [6894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1137), + [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1129), + [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), + [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), + [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), + [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), + [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), + [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3348), + [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3346), + [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3343), + [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), + [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3340), + [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3345), + [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6787), + [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7114), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [6980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6575), + [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), + [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7246), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [6992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), + [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7307), + [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4003), + [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [7002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1, 0, 0), + [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4517), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [7016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameter, 1, 0, 13), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), + [7020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_type_parameter, 1, 0, 13), SHIFT(4834), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7287), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6564), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6408), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6289), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7010), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7475), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7113), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7047), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7109), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7093), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7468), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6417), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6287), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7247), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7123), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7214), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [7165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5906), + [7181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), + [7183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 156), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [7189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), + [7211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), + [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [7217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [7225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 257), + [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [7231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 104), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [7245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 57), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), + [7265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [7273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 292), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), + [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [7297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [7299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 48), REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [7302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7246), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [7308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [7310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [7312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [7314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4954), + [7316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), + [7318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), + [7320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 251), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), + [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 212), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [7338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), + [7340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6909), + [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4834), + [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5308), + [7346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7401), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [7354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 57), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [7358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 156), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [7362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5759), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 251), + [7374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 156), + [7376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 161), + [7378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 251), + [7380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4831), + [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7292), + [7384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4723), + [7386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 257), + [7388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 57), + [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), + [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 212), + [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 214), + [7396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(411), + [7399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4762), + [7402] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4763), + [7405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), + [7407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2, 0, 0), SHIFT_REPEAT(4766), + [7410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 156), + [7414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 104), + [7416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 57), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [7420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [7422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5307), + [7424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 212), + [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 292), + [7428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), + [7430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 48), SHIFT(6629), + [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [7443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [7445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5921), + [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7055), + [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), + [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5128), + [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7178), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [7471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1814), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [7477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), + [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4101), + [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4250), + [7483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 76), + [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), + [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7351), + [7493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [7495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6963), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), + [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), + [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [7515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), + [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), + [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6113), + [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), + [7535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [7559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [7569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 131), SHIFT_REPEAT(4517), + [7572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 131), SHIFT_REPEAT(407), + [7575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, 0, 131), + [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4695), + [7579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [7581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), + [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [7591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2481), + [7593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), + [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6023), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [7603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [7623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 184), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [7627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 185), + [7629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [7637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6388), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [7641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [7643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 27), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6217), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [7651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6450), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [7659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 186), + [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 187), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), + [7671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 76), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6585), + [7675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 67), + [7677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 68), + [7679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 184), + [7681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 185), + [7683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 186), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), + [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [7711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [7713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [7719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), + [7721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [7723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), + [7725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2985), + [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [7729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [7737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4793), + [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [7743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), + [7745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), + [7747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), + [7749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), + [7751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), + [7753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), + [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), + [7767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 187), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [7773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [7791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), + [7817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [7831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4361), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [7849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [7851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6532), + [7859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [7863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), + [7865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4687), + [7867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4698), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [7873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4427), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [7883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 317), + [7885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [7889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__destructuring_pattern, 1, 0, 0), + [7891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [7901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [7903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [7911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7095), + [7913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), + [7915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), + [7917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5469), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5501), + [7929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7151), + [7931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), + [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7029), + [7935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [7937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), + [7939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), + [7941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [7943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [7947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 77), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6563), + [7951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7034), + [7953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [7955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [7957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2545), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [7963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [7965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7349), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [7971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 141), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [7979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 141), + [7981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 14), + [7983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), + [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 317), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [7989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), + [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), + [7993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [7995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_chain, 1, 0, 0), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6154), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [8005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7458), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [8009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7464), + [8011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 222), + [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 221), + [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 261), + [8021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [8031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7469), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [8035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [8041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7474), + [8043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [8047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 102), + [8053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 166), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [8057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7357), + [8059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [8063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 137), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [8071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 137), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), + [8075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 122), + [8077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 160), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5062), + [8081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [8087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), + [8093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 77), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [8097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 204), + [8099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 174), + [8101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 7), + [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [8107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 56), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [8111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [8113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 13), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [8119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 242), + [8121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 243), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), + [8127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 277), + [8132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 278), + [8134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 285), + [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), + [8140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 302), + [8142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 301), + [8144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(779), + [8147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 323), + [8149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 328), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [8153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), + [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 337), + [8157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [8159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [8163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), + [8171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7054), + [8175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [8179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), + [8187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(699), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4850), + [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), + [8194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), + [8200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [8204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [8208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [8210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [8214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [8218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4732), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [8226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [8230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [8234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4626), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7360), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6205), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6554), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [8280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2146), + [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [8299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5014), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [8311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 137), + [8313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 137), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), + [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4914), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [8369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(712), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [8374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [8376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5372), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5381), + [8380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 178), + [8382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, -1, 177), + [8384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5385), + [8386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [8390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 78), + [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [8412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5390), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [8444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 2, -1, 0), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), + [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [8472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(7167), + [8475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [8477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(537), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2787), + [8494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 18), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [8518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_text, 1, 0, 0), + [8520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 1, 0, 0), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [8526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [8528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [8542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), + [8544] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 20), SHIFT_REPEAT(5692), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [8551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3, 0, 0), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), + [8567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 138), + [8569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 138), + [8571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [8573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [8575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), + [8577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 67), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [8581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 130), + [8583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 135), + [8585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 134), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [8589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, -1, 132), + [8591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [8599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), + [8601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6659), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3673), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5032), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), + [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [8643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 26), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [8647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5469), + [8650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [8652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(544), + [8655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2, 0, 0), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [8665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 61), + [8667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, 0, 0), + [8669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), + [8677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, -1, 57), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), + [8681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [8685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [8691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7442), + [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5377), + [8705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 331), + [8707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 291), + [8709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), + [8711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 281), + [8713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 284), + [8715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 321), + [8717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 322), + [8719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 220), + [8721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6164), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), + [8731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 326), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [8745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 32), + [8747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 313), + [8749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 316), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [8753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 158), + [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [8757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [8763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, 0, 58), + [8765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), + [8767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [8769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 89), + [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), + [8773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), + [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), + [8777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1659), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [8782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 334), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7159), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [8800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [8812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281), + [8814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 273), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [8818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 276), + [8820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 218), + [8822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 275), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), + [8830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 3, 0, 0), + [8832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 32), + [8834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 110), + [8836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__jsx_string, 2, 0, 0), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [8840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 138), + [8842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 138), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7105), + [8846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [8856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), + [8858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 260), + [8860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 210), + [8862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 208), + [8864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), + [8866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 340), + [8868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [8870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 259), + [8872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6276), + [8874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [8876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), + [8878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), + [8880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 206), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [8884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 205), + [8886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [8892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5971), + [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [8896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6969), + [8898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 245), + [8900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1776), + [8903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [8905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [8907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 245), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [8913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [8917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1658), + [8920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), + [8922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 250), + [8924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 249), + [8926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 293), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7175), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), + [8940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [8942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [8944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6846), + [8946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 304), + [8948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 305), + [8950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4956), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [8964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 310), + [8966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 31), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [8974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1665), + [8977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [8987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6335), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5246), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [9031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5338), + [9037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 89), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [9041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 158), + [9043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1770), + [9046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1664), + [9049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 163), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [9055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1733), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6889), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [9068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 32), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), + [9072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 19), SHIFT(1807), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [9079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), + [9083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [9085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [9087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), + [9089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1752), + [9092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(6164), + [9095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 76), + [9097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [9099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), + [9101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7150), + [9103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 0), + [9105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 307), + [9107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, 0, 7), + [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [9111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [9119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [9125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [9129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), + [9141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [9143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5781), + [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [9147] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 181), + [9149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 181), + [9151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 182), + [9153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 182), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), + [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [9195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 165), + [9197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 165), SHIFT_REPEAT(524), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [9208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [9214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [9216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [9218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6157), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), + [9226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [9244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [9256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [9270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [9284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6671), + [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [9288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [9292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [9294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4091), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [9300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [9304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), + [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6796), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6801), + [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), + [9319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [9335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [9337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), + [9339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), + [9341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), + [9343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5854), + [9347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5846), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [9359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [9361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), + [9363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), SHIFT_REPEAT(5421), + [9366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 229), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [9370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [9372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [9382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [9386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [9390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [9392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 129), + [9394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 57), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [9400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [9402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [9406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [9410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [9418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 109), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6692), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6691), + [9428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5846), + [9431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), + [9433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5846), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6650), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [9442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(5854), + [9445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), + [9447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 2, 0, 0), SHIFT_REPEAT(5854), + [9450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 97), + [9452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 274), + [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [9468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2501), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [9472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4525), + [9475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [9479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [9485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [9489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 27), + [9491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(612), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [9500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 14), + [9502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [9504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(5781), + [9507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5130), + [9509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 60), + [9511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 47), + [9513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [9517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [9519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5778), + [9522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(325), + [9525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 39), + [9527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [9533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [9535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7307), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [9549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [9551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5694), + [9557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [9563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 312), + [9565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 314), + [9567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 342), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), + [9573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 315), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), + [9581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), + [9585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 311), + [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6600), + [9589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6552), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), + [9601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 338), + [9603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), + [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), + [9607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), + [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [9627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(691), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6006), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [9666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), + [9672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [9674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [9678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [9680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [9684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [9686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [9688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 219), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5952), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [9702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 217), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [9708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [9710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [9712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), + [9714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), + [9716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4944), + [9722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 301), + [9724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), + [9726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 309), + [9728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), + [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [9734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [9736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 303), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [9742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), + [9752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1603), + [9755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [9757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 289), + [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [9761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [9763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), + [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [9769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), + [9771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 174), + [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4976), + [9775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [9777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), + [9779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6779), + [9785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), + [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), + [9789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), + [9795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [9799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 204), + [9801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat1, 1, 0, 0), + [9803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat1, 1, 0, 0), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), + [9807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), + [9809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_string_repeat2, 1, 0, 0), + [9811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_string_repeat2, 1, 0, 0), + [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [9815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 341), + [9817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), SHIFT_REPEAT(3518), + [9820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 231), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), + [9828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 290), + [9830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6286), + [9832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [9836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 237), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [9842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(3218), + [9845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [9847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2942), + [9850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5678), + [9854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [9856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7122), + [9860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 339), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6864), + [9864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 329), + [9866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6683), + [9870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6686), + [9876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [9880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6235), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7127), + [9886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [9892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), + [9894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 327), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [9900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 244), + [9902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [9906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 248), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), + [9916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 242), + [9918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 243), + [9920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), + [9928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 325), + [9930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(290), + [9933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), + [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [9937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [9939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 332), + [9941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), + [9943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 280), + [9945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), + [9947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 330), + [9949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [9957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), + [9959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [9963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), + [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5716), + [9979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), + [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [9999] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(6671), + [10002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [10006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 333), + [10008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [10010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(1647), + [10013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 29), + [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [10017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 57), + [10019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [10021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6217), + [10025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 77), + [10027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 85), + [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [10041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 278), + [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), + [10045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [10049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), + [10051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), + [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), + [10061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), + [10063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), + [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [10073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), + [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), + [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6455), + [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), + [10083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 277), + [10085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 89), + [10087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 90), + [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [10091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [10093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [10095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [10097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), + [10099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), + [10101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 279), + [10103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1715), + [10106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(270), + [10109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [10113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6305), + [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), + [10121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 31), + [10123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), + [10135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [10137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5901), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [10145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [10147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [10151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [10153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [10155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(6117), + [10158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [10162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [10164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6977), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [10200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), + [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [10204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 258), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6832), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), + [10220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [10226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(4325), + [10229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [10237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [10241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [10245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), + [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [10249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [10253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), + [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6349), + [10257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(4196), + [10260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), + [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5866), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [10310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 47), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [10334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [10338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), + [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [10346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), + [10354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 90), + [10356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [10358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2729), + [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), + [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [10366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 336), + [10368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), + [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [10372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [10374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 157), + [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6736), + [10380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [10384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), + [10386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 122), + [10388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [10392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [10394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [10404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4121), + [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [10408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [10410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [10414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7449), + [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [10420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7446), + [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [10428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7428), + [10430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1, 0, 0), + [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6607), + [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), + [10452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [10458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [10462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7424), + [10468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), + [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6573), + [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), + [10474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 154), + [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [10478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [10482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [10484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [10486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [10494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), + [10498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), + [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [10506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), + [10508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7400), + [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [10524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [10530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7396), + [10532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [10534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [10536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [10538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 149), + [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7366), + [10544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 152), + [10546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [10548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [10550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), + [10552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7362), + [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6894), + [10556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6890), + [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [10560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [10562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [10578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7411), + [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2687), + [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4606), + [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4607), + [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), + [10600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7168), + [10602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 149), + [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [10606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [10610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), + [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [10620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [10622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [10626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [10630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), + [10632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), + [10634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [10638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6685), + [10646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [10650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), + [10656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [10662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), + [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [10666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__formal_parameter, 1, 0, 0), + [10668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), + [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), + [10680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), + [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [10684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6980), + [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6981), + [10690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [10694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [10696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [10698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [10708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [10710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 133), + [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [10716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 128), + [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [10722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 89), + [10724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 32), + [10726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [10728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 199), + [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [10734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), + [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7234), + [10740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 1, 0, 0), + [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), + [10750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6765), + [10756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6745), + [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4776), + [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [10764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 98), + [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [10770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 96), + [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [10774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7108), + [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), + [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6286), + [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [10784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6305), + [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [10790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [10794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 176), + [10796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [10798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), + [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [10808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 57), + [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [10818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6235), + [10826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 31), + [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5049), + [10846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 196), + [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5986), + [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [10862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [10866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [10868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 196), + [10870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 59), + [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [10876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4893), + [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [10886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5695), + [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [10906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), + [10916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 38), + [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7365), + [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), + [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [10948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), + [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [10960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [10964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7084), + [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), + [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6850), + [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), + [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [10982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7367), + [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6418), + [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6934), + [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6944), + [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), + [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), + [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4268), + [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), + [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), + [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), + [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [11036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), + [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), + [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7120), + [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), + [11078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7249), + [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), + [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), + [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), + [11096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), + [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6581), + [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), + [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [11134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [11154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), + [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), + [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6253), + [11166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), + [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6344), + [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2864), + [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6255), + [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [11206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6389), + [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), + [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), + [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), + [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6819), + [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6413), + [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), + [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3633), + [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), + [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), + [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7088), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), + [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6566), + [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), + [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), + [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3788), + [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5600), + [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6620), + [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [11370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7274), + [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3619), + [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), + [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), + [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), + [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), + [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), + [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [11494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [11508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6725), + [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), + [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), + [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), + [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), + [11546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), + [11548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [11550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [11552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [11554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [11556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [11558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [11560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7022), + [11562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7450), + [11564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), + [11566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), + [11568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [11570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [11572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5620), + [11574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [11576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4913), + [11578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [11580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [11582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), + [11584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [11586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [11588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [11590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [11592] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [11594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6663), + [11596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [11600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7236), + [11602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), + [11604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), + [11606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [11608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), + [11610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), + [11612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [11614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [11616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [11620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [11622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [11626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7253), + [11628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [11632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7098), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [11636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3, 0, 0), + [11638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [11640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), + [11642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [11644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [11646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [11648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7116), + [11650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [11652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [11654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6793), + [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [11658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [11660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [11664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [11670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [11672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [11674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [11676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), + [11678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7157), + [11680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [11682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [11684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [11686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [11688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [11690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), + [11692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7314), + [11694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), + [11696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [11698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [11700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [11702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [11704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [11706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [11708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [11710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), + [11712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [11714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), + [11716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), + [11720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), + [11722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [11724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [11726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6476), + [11728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [11730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7368), + [11732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [11734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), + [11736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [11738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), + [11740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [11742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [11744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [11746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), + [11748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [11750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), + [11752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [11754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -403593,13 +390803,15 @@ bool tree_sitter_tsx_external_scanner_scan(void *, TSLexer *, const bool *); unsigned tree_sitter_tsx_external_scanner_serialize(void *, char *); void tree_sitter_tsx_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) #define TS_PUBLIC __declspec(dllexport) #else #define TS_PUBLIC __attribute__((visibility("default"))) #endif -TS_PUBLIC const TSLanguage *tree_sitter_tsx() { +TS_PUBLIC const TSLanguage *tree_sitter_tsx(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/tsx/src/tree_sitter/alloc.h b/tsx/src/tree_sitter/alloc.h new file mode 100644 index 00000000..1f4466d7 --- /dev/null +++ b/tsx/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t); +extern void *(*ts_current_calloc)(size_t, size_t); +extern void *(*ts_current_realloc)(void *, size_t); +extern void (*ts_current_free)(void *); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/tsx/src/tree_sitter/array.h b/tsx/src/tree_sitter/array.h new file mode 100644 index 00000000..15a3b233 --- /dev/null +++ b/tsx/src/tree_sitter/array.h @@ -0,0 +1,290 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(default : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/tsx/src/tree_sitter/parser.h b/tsx/src/tree_sitter/parser.h index 17b4fde9..17f0e94b 100644 --- a/tsx/src/tree_sitter/parser.h +++ b/tsx/src/tree_sitter/parser.h @@ -86,6 +86,11 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { uint32_t version; uint32_t symbol_count; @@ -125,6 +130,24 @@ struct TSLanguage { const TSStateId *primary_state_ids; }; +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ @@ -154,6 +177,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -203,14 +237,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \ diff --git a/typescript/src/grammar.json b/typescript/src/grammar.json index 8aa0a60b..edbfe08c 100644 --- a/typescript/src/grammar.json +++ b/typescript/src/grammar.json @@ -1,4 +1,14 @@ { + "0": "j", + "1": "a", + "2": "v", + "3": "a", + "4": "s", + "5": "c", + "6": "r", + "7": "i", + "8": "p", + "9": "t", "name": "typescript", "word": "identifier", "rules": { @@ -6790,6 +6800,18 @@ "type": "STRING", "value": "static" }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_automatic_semicolon" + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "body", @@ -11098,6 +11120,10 @@ "binary_expression", "_initializer" ], + [ + "class_static_block", + "_property_name" + ], [ "call_expression", "instantiation_expression", @@ -11869,7 +11895,6 @@ } ], "inline": [ - "statement", "_expressions", "_semicolon", "_identifier", diff --git a/typescript/src/parser.c b/typescript/src/parser.c index 7a5206e5..03166011 100644 --- a/typescript/src/parser.c +++ b/typescript/src/parser.c @@ -13,9 +13,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 7610 -#define LARGE_STATE_COUNT 2061 -#define SYMBOL_COUNT 379 +#define STATE_COUNT 7427 +#define LARGE_STATE_COUNT 1913 +#define SYMBOL_COUNT 380 #define ALIAS_COUNT 7 #define TOKEN_COUNT 165 #define EXTERNAL_TOKEN_COUNT 9 @@ -203,212 +203,213 @@ enum ts_symbol_identifiers { sym_named_imports = 177, sym_import_specifier = 178, sym_import_attribute = 179, - sym_expression_statement = 180, - sym_variable_declaration = 181, - sym_lexical_declaration = 182, - sym_variable_declarator = 183, - sym_statement_block = 184, - sym_else_clause = 185, - sym_if_statement = 186, - sym_switch_statement = 187, - sym_for_statement = 188, - sym_for_in_statement = 189, - sym__for_header = 190, - sym_while_statement = 191, - sym_do_statement = 192, - sym_try_statement = 193, - sym_with_statement = 194, - sym_break_statement = 195, - sym_continue_statement = 196, - sym_debugger_statement = 197, - sym_return_statement = 198, - sym_throw_statement = 199, - sym_empty_statement = 200, - sym_labeled_statement = 201, - sym_switch_body = 202, - sym_switch_case = 203, - sym_switch_default = 204, - sym_catch_clause = 205, - sym_finally_clause = 206, - sym_parenthesized_expression = 207, - sym_expression = 208, - sym_primary_expression = 209, - sym_yield_expression = 210, - sym_object = 211, - sym_object_pattern = 212, - sym_assignment_pattern = 213, - sym_object_assignment_pattern = 214, - sym_array = 215, - sym_array_pattern = 216, - sym_glimmer_template = 217, - sym_glimmer_opening_tag = 218, - sym_glimmer_closing_tag = 219, - sym_nested_identifier = 220, - sym_class = 221, - sym_class_declaration = 222, - sym_class_heritage = 223, - sym_function_expression = 224, - sym_function_declaration = 225, - sym_generator_function = 226, - sym_generator_function_declaration = 227, - sym_arrow_function = 228, - sym__call_signature = 229, - sym__formal_parameter = 230, - sym_optional_chain = 231, - sym_call_expression = 232, - sym_new_expression = 233, - sym_await_expression = 234, - sym_member_expression = 235, - sym_subscript_expression = 236, - sym_assignment_expression = 237, - sym__augmented_assignment_lhs = 238, - sym_augmented_assignment_expression = 239, - sym__initializer = 240, - sym__destructuring_pattern = 241, - sym_spread_element = 242, - sym_ternary_expression = 243, - sym_binary_expression = 244, - sym_unary_expression = 245, - sym_update_expression = 246, - sym_sequence_expression = 247, - sym_string = 248, - sym_comment = 249, - sym_template_string = 250, - sym_template_substitution = 251, - sym_regex = 252, - sym_meta_property = 253, - sym_arguments = 254, - sym_decorator = 255, - sym_decorator_member_expression = 256, - sym_decorator_call_expression = 257, - sym_class_body = 258, - sym_formal_parameters = 259, - sym_class_static_block = 260, - sym_pattern = 261, - sym_rest_pattern = 262, - sym_method_definition = 263, - sym_pair = 264, - sym_pair_pattern = 265, - sym__property_name = 266, - sym_computed_property_name = 267, - sym_public_field_definition = 268, - sym__import_identifier = 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_instantiation_expression = 277, - sym_import_require_clause = 278, - sym_extends_clause = 279, - sym__extends_clause_single = 280, - sym_implements_clause = 281, - sym_ambient_declaration = 282, - sym_abstract_class_declaration = 283, - sym_module = 284, - sym_internal_module = 285, - sym__module = 286, - sym_import_alias = 287, - sym_nested_type_identifier = 288, - sym_interface_declaration = 289, - sym_extends_type_clause = 290, - sym_enum_declaration = 291, - sym_enum_body = 292, - sym_enum_assignment = 293, - sym_type_alias_declaration = 294, - sym_accessibility_modifier = 295, - sym_override_modifier = 296, - sym_required_parameter = 297, - sym_optional_parameter = 298, - sym__parameter_name = 299, - sym_omitting_type_annotation = 300, - sym_adding_type_annotation = 301, - sym_opting_type_annotation = 302, - sym_type_annotation = 303, - sym__type_query_member_expression_in_type_annotation = 304, - sym__type_query_call_expression_in_type_annotation = 305, - sym_asserts = 306, - sym_asserts_annotation = 307, - sym__type = 308, - sym_tuple_parameter = 309, - sym_optional_tuple_parameter = 310, - sym_optional_type = 311, - sym_rest_type = 312, - sym__tuple_type_member = 313, - sym_constructor_type = 314, - sym__primary_type = 315, - sym_template_type = 316, - sym_template_literal_type = 317, - sym_infer_type = 318, - sym_conditional_type = 319, - sym_generic_type = 320, - sym_type_predicate = 321, - sym_type_predicate_annotation = 322, - sym__type_query_member_expression = 323, - sym__type_query_subscript_expression = 324, - sym__type_query_call_expression = 325, - sym__type_query_instantiation_expression = 326, - sym_type_query = 327, - sym_index_type_query = 328, - sym_lookup_type = 329, - sym_mapped_type_clause = 330, - sym_literal_type = 331, - sym__number = 332, - sym_existential_type = 333, - sym_flow_maybe_type = 334, - sym_parenthesized_type = 335, - sym_predefined_type = 336, - sym_type_arguments = 337, - sym_object_type = 338, - sym_call_signature = 339, - sym_property_signature = 340, - sym_type_parameters = 341, - sym_type_parameter = 342, - sym_default_type = 343, - sym_constraint = 344, - sym_construct_signature = 345, - sym_index_signature = 346, - sym_array_type = 347, - sym_tuple_type = 348, - sym_readonly_type = 349, - sym_union_type = 350, - sym_intersection_type = 351, - sym_function_type = 352, - aux_sym_program_repeat1 = 353, - aux_sym_export_statement_repeat1 = 354, - aux_sym_export_clause_repeat1 = 355, - aux_sym_named_imports_repeat1 = 356, - aux_sym_variable_declaration_repeat1 = 357, - aux_sym_switch_body_repeat1 = 358, - aux_sym_object_repeat1 = 359, - aux_sym_object_pattern_repeat1 = 360, - aux_sym_array_repeat1 = 361, - aux_sym_array_pattern_repeat1 = 362, - aux_sym_glimmer_template_repeat1 = 363, - aux_sym_sequence_expression_repeat1 = 364, - aux_sym_string_repeat1 = 365, - aux_sym_string_repeat2 = 366, - aux_sym_template_string_repeat1 = 367, - aux_sym_class_body_repeat1 = 368, - aux_sym_formal_parameters_repeat1 = 369, - aux_sym_extends_clause_repeat1 = 370, - aux_sym_implements_clause_repeat1 = 371, - aux_sym_extends_type_clause_repeat1 = 372, - aux_sym_enum_body_repeat1 = 373, - aux_sym_template_literal_type_repeat1 = 374, - aux_sym_type_arguments_repeat1 = 375, - aux_sym_object_type_repeat1 = 376, - aux_sym_type_parameters_repeat1 = 377, - aux_sym_tuple_type_repeat1 = 378, - alias_sym_interface_body = 379, - alias_sym_property_identifier = 380, - alias_sym_shorthand_property_identifier = 381, - alias_sym_shorthand_property_identifier_pattern = 382, - alias_sym_statement_identifier = 383, - alias_sym_this_type = 384, - alias_sym_type_identifier = 385, + sym_statement = 180, + sym_expression_statement = 181, + sym_variable_declaration = 182, + sym_lexical_declaration = 183, + sym_variable_declarator = 184, + sym_statement_block = 185, + sym_else_clause = 186, + sym_if_statement = 187, + sym_switch_statement = 188, + sym_for_statement = 189, + sym_for_in_statement = 190, + sym__for_header = 191, + sym_while_statement = 192, + sym_do_statement = 193, + sym_try_statement = 194, + sym_with_statement = 195, + sym_break_statement = 196, + sym_continue_statement = 197, + sym_debugger_statement = 198, + sym_return_statement = 199, + sym_throw_statement = 200, + sym_empty_statement = 201, + sym_labeled_statement = 202, + sym_switch_body = 203, + sym_switch_case = 204, + sym_switch_default = 205, + sym_catch_clause = 206, + sym_finally_clause = 207, + sym_parenthesized_expression = 208, + sym_expression = 209, + sym_primary_expression = 210, + sym_yield_expression = 211, + sym_object = 212, + sym_object_pattern = 213, + sym_assignment_pattern = 214, + sym_object_assignment_pattern = 215, + sym_array = 216, + sym_array_pattern = 217, + sym_glimmer_template = 218, + sym_glimmer_opening_tag = 219, + sym_glimmer_closing_tag = 220, + sym_nested_identifier = 221, + sym_class = 222, + sym_class_declaration = 223, + sym_class_heritage = 224, + sym_function_expression = 225, + sym_function_declaration = 226, + sym_generator_function = 227, + sym_generator_function_declaration = 228, + sym_arrow_function = 229, + sym__call_signature = 230, + sym__formal_parameter = 231, + sym_optional_chain = 232, + sym_call_expression = 233, + sym_new_expression = 234, + sym_await_expression = 235, + sym_member_expression = 236, + sym_subscript_expression = 237, + sym_assignment_expression = 238, + sym__augmented_assignment_lhs = 239, + sym_augmented_assignment_expression = 240, + sym__initializer = 241, + sym__destructuring_pattern = 242, + sym_spread_element = 243, + sym_ternary_expression = 244, + sym_binary_expression = 245, + sym_unary_expression = 246, + sym_update_expression = 247, + sym_sequence_expression = 248, + sym_string = 249, + sym_comment = 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__import_identifier = 270, + sym_non_null_expression = 271, + sym_method_signature = 272, + sym_abstract_method_signature = 273, + sym_function_signature = 274, + sym_type_assertion = 275, + sym_as_expression = 276, + sym_satisfies_expression = 277, + sym_instantiation_expression = 278, + sym_import_require_clause = 279, + sym_extends_clause = 280, + sym__extends_clause_single = 281, + sym_implements_clause = 282, + sym_ambient_declaration = 283, + sym_abstract_class_declaration = 284, + sym_module = 285, + sym_internal_module = 286, + sym__module = 287, + sym_import_alias = 288, + sym_nested_type_identifier = 289, + sym_interface_declaration = 290, + sym_extends_type_clause = 291, + sym_enum_declaration = 292, + sym_enum_body = 293, + sym_enum_assignment = 294, + sym_type_alias_declaration = 295, + sym_accessibility_modifier = 296, + sym_override_modifier = 297, + sym_required_parameter = 298, + sym_optional_parameter = 299, + sym__parameter_name = 300, + sym_omitting_type_annotation = 301, + sym_adding_type_annotation = 302, + sym_opting_type_annotation = 303, + sym_type_annotation = 304, + sym__type_query_member_expression_in_type_annotation = 305, + sym__type_query_call_expression_in_type_annotation = 306, + sym_asserts = 307, + sym_asserts_annotation = 308, + sym__type = 309, + sym_tuple_parameter = 310, + sym_optional_tuple_parameter = 311, + sym_optional_type = 312, + sym_rest_type = 313, + sym__tuple_type_member = 314, + sym_constructor_type = 315, + sym__primary_type = 316, + sym_template_type = 317, + sym_template_literal_type = 318, + sym_infer_type = 319, + sym_conditional_type = 320, + sym_generic_type = 321, + sym_type_predicate = 322, + sym_type_predicate_annotation = 323, + sym__type_query_member_expression = 324, + sym__type_query_subscript_expression = 325, + sym__type_query_call_expression = 326, + sym__type_query_instantiation_expression = 327, + sym_type_query = 328, + sym_index_type_query = 329, + sym_lookup_type = 330, + sym_mapped_type_clause = 331, + sym_literal_type = 332, + sym__number = 333, + sym_existential_type = 334, + sym_flow_maybe_type = 335, + sym_parenthesized_type = 336, + sym_predefined_type = 337, + sym_type_arguments = 338, + sym_object_type = 339, + sym_call_signature = 340, + sym_property_signature = 341, + sym_type_parameters = 342, + sym_type_parameter = 343, + sym_default_type = 344, + sym_constraint = 345, + sym_construct_signature = 346, + sym_index_signature = 347, + sym_array_type = 348, + sym_tuple_type = 349, + sym_readonly_type = 350, + sym_union_type = 351, + sym_intersection_type = 352, + sym_function_type = 353, + aux_sym_program_repeat1 = 354, + aux_sym_export_statement_repeat1 = 355, + aux_sym_export_clause_repeat1 = 356, + aux_sym_named_imports_repeat1 = 357, + aux_sym_variable_declaration_repeat1 = 358, + aux_sym_switch_body_repeat1 = 359, + aux_sym_object_repeat1 = 360, + aux_sym_object_pattern_repeat1 = 361, + aux_sym_array_repeat1 = 362, + aux_sym_array_pattern_repeat1 = 363, + aux_sym_glimmer_template_repeat1 = 364, + aux_sym_sequence_expression_repeat1 = 365, + aux_sym_string_repeat1 = 366, + aux_sym_string_repeat2 = 367, + aux_sym_template_string_repeat1 = 368, + aux_sym_class_body_repeat1 = 369, + aux_sym_formal_parameters_repeat1 = 370, + aux_sym_extends_clause_repeat1 = 371, + aux_sym_implements_clause_repeat1 = 372, + aux_sym_extends_type_clause_repeat1 = 373, + aux_sym_enum_body_repeat1 = 374, + aux_sym_template_literal_type_repeat1 = 375, + aux_sym_type_arguments_repeat1 = 376, + aux_sym_object_type_repeat1 = 377, + aux_sym_type_parameters_repeat1 = 378, + aux_sym_tuple_type_repeat1 = 379, + alias_sym_interface_body = 380, + alias_sym_property_identifier = 381, + alias_sym_shorthand_property_identifier = 382, + alias_sym_shorthand_property_identifier_pattern = 383, + alias_sym_statement_identifier = 384, + alias_sym_this_type = 385, + alias_sym_type_identifier = 386, }; static const char * const ts_symbol_names[] = { @@ -592,6 +593,7 @@ static const char * const ts_symbol_names[] = { [sym_named_imports] = "named_imports", [sym_import_specifier] = "import_specifier", [sym_import_attribute] = "import_attribute", + [sym_statement] = "statement", [sym_expression_statement] = "expression_statement", [sym_variable_declaration] = "variable_declaration", [sym_lexical_declaration] = "lexical_declaration", @@ -981,6 +983,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_named_imports] = sym_named_imports, [sym_import_specifier] = sym_import_specifier, [sym_import_attribute] = sym_import_attribute, + [sym_statement] = sym_statement, [sym_expression_statement] = sym_expression_statement, [sym_variable_declaration] = sym_variable_declaration, [sym_lexical_declaration] = sym_lexical_declaration, @@ -1911,6 +1914,11 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_statement] = { + .visible = false, + .named = true, + .supertype = true, + }, [sym_expression_statement] = { .visible = true, .named = true, @@ -4480,133 +4488,133 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [14] = 14, [15] = 15, [16] = 16, - [17] = 16, + [17] = 15, [18] = 18, [19] = 18, [20] = 20, [21] = 18, - [22] = 20, + [22] = 22, [23] = 18, - [24] = 20, - [25] = 18, - [26] = 20, + [24] = 22, + [25] = 22, + [26] = 22, [27] = 18, - [28] = 20, - [29] = 18, - [30] = 20, + [28] = 18, + [29] = 22, + [30] = 22, [31] = 18, - [32] = 20, - [33] = 18, - [34] = 20, - [35] = 18, - [36] = 20, - [37] = 20, + [32] = 22, + [33] = 22, + [34] = 18, + [35] = 35, + [36] = 22, + [37] = 18, [38] = 18, [39] = 39, - [40] = 20, + [40] = 22, [41] = 18, - [42] = 20, + [42] = 22, [43] = 18, - [44] = 20, + [44] = 22, [45] = 18, - [46] = 20, - [47] = 18, - [48] = 20, - [49] = 18, - [50] = 20, + [46] = 22, + [47] = 22, + [48] = 18, + [49] = 22, + [50] = 22, [51] = 18, - [52] = 20, - [53] = 18, - [54] = 20, - [55] = 18, - [56] = 20, + [52] = 18, + [53] = 22, + [54] = 18, + [55] = 22, + [56] = 18, [57] = 18, - [58] = 18, + [58] = 22, [59] = 18, - [60] = 20, - [61] = 20, + [60] = 18, + [61] = 22, [62] = 18, - [63] = 18, - [64] = 20, - [65] = 20, - [66] = 20, + [63] = 22, + [64] = 18, + [65] = 22, + [66] = 22, [67] = 18, - [68] = 20, - [69] = 69, + [68] = 22, + [69] = 18, [70] = 18, - [71] = 20, - [72] = 72, + [71] = 22, + [72] = 22, [73] = 73, [74] = 74, - [75] = 75, + [75] = 73, [76] = 76, - [77] = 77, - [78] = 73, - [79] = 76, + [77] = 76, + [78] = 78, + [79] = 74, [80] = 80, - [81] = 81, + [81] = 80, [82] = 82, - [83] = 81, - [84] = 74, - [85] = 75, - [86] = 80, + [83] = 83, + [84] = 82, + [85] = 85, + [86] = 86, [87] = 73, - [88] = 88, - [89] = 89, - [90] = 77, - [91] = 75, - [92] = 76, - [93] = 75, - [94] = 73, - [95] = 77, - [96] = 89, - [97] = 80, - [98] = 89, - [99] = 73, + [88] = 76, + [89] = 76, + [90] = 83, + [91] = 74, + [92] = 82, + [93] = 74, + [94] = 94, + [95] = 80, + [96] = 94, + [97] = 73, + [98] = 94, + [99] = 83, [100] = 80, - [101] = 76, - [102] = 88, - [103] = 74, - [104] = 88, - [105] = 74, - [106] = 82, - [107] = 88, - [108] = 80, - [109] = 77, - [110] = 89, - [111] = 75, - [112] = 74, - [113] = 89, + [101] = 94, + [102] = 78, + [103] = 86, + [104] = 78, + [105] = 85, + [106] = 73, + [107] = 78, + [108] = 85, + [109] = 86, + [110] = 86, + [111] = 83, + [112] = 83, + [113] = 80, [114] = 82, - [115] = 82, - [116] = 81, - [117] = 77, + [115] = 94, + [116] = 76, + [117] = 85, [118] = 82, - [119] = 81, - [120] = 88, - [121] = 81, - [122] = 76, + [119] = 85, + [120] = 78, + [121] = 74, + [122] = 86, [123] = 123, - [124] = 123, - [125] = 123, - [126] = 123, - [127] = 123, - [128] = 128, + [124] = 124, + [125] = 124, + [126] = 124, + [127] = 124, + [128] = 124, [129] = 123, - [130] = 123, - [131] = 123, + [130] = 124, + [131] = 124, [132] = 123, - [133] = 123, - [134] = 128, - [135] = 128, + [133] = 124, + [134] = 124, + [135] = 124, [136] = 136, [137] = 137, [138] = 138, [139] = 139, - [140] = 140, + [140] = 136, [141] = 141, [142] = 142, - [143] = 138, + [143] = 143, [144] = 144, [145] = 145, [146] = 146, @@ -4614,69 +4622,69 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [148] = 146, [149] = 149, [150] = 150, - [151] = 151, - [152] = 149, - [153] = 151, - [154] = 149, - [155] = 150, + [151] = 149, + [152] = 152, + [153] = 152, + [154] = 150, + [155] = 155, [156] = 156, [157] = 157, - [158] = 157, - [159] = 151, - [160] = 156, - [161] = 151, - [162] = 156, - [163] = 151, - [164] = 144, - [165] = 150, - [166] = 149, - [167] = 151, - [168] = 168, - [169] = 149, + [158] = 149, + [159] = 157, + [160] = 149, + [161] = 150, + [162] = 157, + [163] = 157, + [164] = 150, + [165] = 149, + [166] = 156, + [167] = 150, + [168] = 157, + [169] = 156, [170] = 150, - [171] = 150, - [172] = 156, - [173] = 151, - [174] = 145, + [171] = 144, + [172] = 144, + [173] = 145, + [174] = 174, [175] = 175, - [176] = 144, - [177] = 177, - [178] = 151, - [179] = 151, - [180] = 157, - [181] = 156, - [182] = 182, - [183] = 144, - [184] = 151, - [185] = 157, - [186] = 186, + [176] = 150, + [177] = 156, + [178] = 150, + [179] = 150, + [180] = 180, + [181] = 181, + [182] = 152, + [183] = 150, + [184] = 156, + [185] = 144, + [186] = 150, [187] = 156, - [188] = 151, - [189] = 151, - [190] = 151, - [191] = 156, - [192] = 151, - [193] = 156, - [194] = 151, + [188] = 152, + [189] = 150, + [190] = 150, + [191] = 150, + [192] = 150, + [193] = 155, + [194] = 150, [195] = 156, - [196] = 151, - [197] = 168, - [198] = 151, - [199] = 177, - [200] = 151, - [201] = 156, - [202] = 202, - [203] = 203, - [204] = 203, - [205] = 203, - [206] = 203, - [207] = 203, - [208] = 203, - [209] = 203, - [210] = 151, - [211] = 203, - [212] = 203, - [213] = 203, + [196] = 150, + [197] = 156, + [198] = 175, + [199] = 156, + [200] = 150, + [201] = 201, + [202] = 201, + [203] = 201, + [204] = 201, + [205] = 201, + [206] = 201, + [207] = 201, + [208] = 150, + [209] = 156, + [210] = 201, + [211] = 201, + [212] = 201, + [213] = 213, [214] = 214, [215] = 214, [216] = 214, @@ -4702,16 +4710,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [236] = 227, [237] = 237, [238] = 238, - [239] = 238, - [240] = 238, - [241] = 238, + [239] = 237, + [240] = 237, + [241] = 237, [242] = 237, [243] = 238, - [244] = 237, + [244] = 238, [245] = 237, [246] = 238, - [247] = 237, - [248] = 237, + [247] = 238, + [248] = 238, [249] = 249, [250] = 249, [251] = 249, @@ -4722,609 +4730,609 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [256] = 249, [257] = 252, [258] = 249, - [259] = 253, - [260] = 260, - [261] = 249, - [262] = 249, - [263] = 249, - [264] = 260, - [265] = 249, - [266] = 266, + [259] = 249, + [260] = 249, + [261] = 253, + [262] = 262, + [263] = 262, + [264] = 249, + [265] = 265, + [266] = 265, [267] = 267, - [268] = 266, - [269] = 267, - [270] = 267, - [271] = 271, - [272] = 271, - [273] = 271, - [274] = 266, + [268] = 267, + [269] = 249, + [270] = 270, + [271] = 270, + [272] = 265, + [273] = 270, + [274] = 267, [275] = 275, [276] = 275, [277] = 275, - [278] = 278, + [278] = 275, [279] = 275, [280] = 280, [281] = 275, - [282] = 275, + [282] = 282, [283] = 275, [284] = 284, - [285] = 285, - [286] = 285, - [287] = 285, - [288] = 284, - [289] = 289, - [290] = 285, - [291] = 285, - [292] = 284, + [285] = 284, + [286] = 286, + [287] = 286, + [288] = 286, + [289] = 286, + [290] = 286, + [291] = 291, + [292] = 292, [293] = 293, [294] = 294, [295] = 295, [296] = 296, - [297] = 296, + [297] = 295, [298] = 298, [299] = 299, - [300] = 300, + [300] = 293, [301] = 301, - [302] = 298, + [302] = 284, [303] = 303, [304] = 304, [305] = 305, [306] = 306, [307] = 307, - [308] = 308, + [308] = 301, [309] = 309, [310] = 310, [311] = 311, [312] = 312, - [313] = 313, + [313] = 299, [314] = 314, - [315] = 295, - [316] = 293, - [317] = 294, - [318] = 318, - [319] = 295, + [315] = 315, + [316] = 316, + [317] = 296, + [318] = 294, + [319] = 319, [320] = 320, [321] = 321, - [322] = 301, + [322] = 322, [323] = 323, [324] = 294, - [325] = 293, - [326] = 326, + [325] = 296, + [326] = 299, [327] = 327, [328] = 328, [329] = 329, - [330] = 301, + [330] = 330, [331] = 331, [332] = 332, - [333] = 333, + [333] = 284, [334] = 334, [335] = 335, - [336] = 284, - [337] = 337, - [338] = 293, - [339] = 307, - [340] = 340, - [341] = 309, + [336] = 336, + [337] = 301, + [338] = 304, + [339] = 328, + [340] = 322, + [341] = 335, [342] = 323, - [343] = 321, - [344] = 340, - [345] = 340, - [346] = 305, - [347] = 340, - [348] = 321, - [349] = 323, - [350] = 284, - [351] = 326, - [352] = 312, - [353] = 329, - [354] = 314, + [343] = 327, + [344] = 310, + [345] = 345, + [346] = 345, + [347] = 345, + [348] = 284, + [349] = 345, + [350] = 334, + [351] = 299, + [352] = 332, + [353] = 307, + [354] = 311, [355] = 314, - [356] = 340, - [357] = 329, - [358] = 312, - [359] = 304, - [360] = 284, - [361] = 361, - [362] = 340, - [363] = 318, - [364] = 313, - [365] = 304, - [366] = 311, - [367] = 307, - [368] = 320, - [369] = 308, - [370] = 332, - [371] = 284, - [372] = 308, - [373] = 328, - [374] = 303, - [375] = 301, - [376] = 310, - [377] = 306, - [378] = 331, + [356] = 315, + [357] = 296, + [358] = 319, + [359] = 305, + [360] = 312, + [361] = 284, + [362] = 320, + [363] = 303, + [364] = 322, + [365] = 316, + [366] = 331, + [367] = 294, + [368] = 328, + [369] = 329, + [370] = 310, + [371] = 321, + [372] = 303, + [373] = 316, + [374] = 332, + [375] = 320, + [376] = 301, + [377] = 319, + [378] = 336, [379] = 335, - [380] = 284, - [381] = 294, - [382] = 295, - [383] = 284, - [384] = 337, - [385] = 303, - [386] = 284, - [387] = 340, - [388] = 305, - [389] = 333, - [390] = 318, - [391] = 337, - [392] = 311, - [393] = 326, - [394] = 335, - [395] = 331, - [396] = 327, - [397] = 333, - [398] = 284, - [399] = 313, - [400] = 320, - [401] = 332, - [402] = 309, - [403] = 328, - [404] = 310, - [405] = 327, - [406] = 306, + [380] = 304, + [381] = 345, + [382] = 323, + [383] = 309, + [384] = 284, + [385] = 305, + [386] = 307, + [387] = 327, + [388] = 309, + [389] = 330, + [390] = 315, + [391] = 391, + [392] = 314, + [393] = 311, + [394] = 312, + [395] = 284, + [396] = 345, + [397] = 345, + [398] = 336, + [399] = 331, + [400] = 284, + [401] = 284, + [402] = 334, + [403] = 329, + [404] = 330, + [405] = 284, + [406] = 321, [407] = 407, - [408] = 311, - [409] = 320, - [410] = 410, - [411] = 410, - [412] = 412, - [413] = 326, - [414] = 318, - [415] = 332, + [408] = 314, + [409] = 336, + [410] = 331, + [411] = 407, + [412] = 407, + [413] = 323, + [414] = 321, + [415] = 407, [416] = 407, - [417] = 410, - [418] = 327, + [417] = 334, + [418] = 418, [419] = 419, - [420] = 410, - [421] = 305, - [422] = 314, - [423] = 410, - [424] = 410, - [425] = 410, - [426] = 410, - [427] = 309, - [428] = 333, - [429] = 410, - [430] = 419, + [420] = 407, + [421] = 421, + [422] = 419, + [423] = 419, + [424] = 424, + [425] = 425, + [426] = 330, + [427] = 407, + [428] = 319, + [429] = 407, + [430] = 322, [431] = 431, - [432] = 432, - [433] = 307, - [434] = 303, - [435] = 435, - [436] = 313, - [437] = 437, - [438] = 407, - [439] = 308, - [440] = 410, - [441] = 410, - [442] = 337, - [443] = 410, - [444] = 321, - [445] = 329, - [446] = 410, + [432] = 304, + [433] = 309, + [434] = 307, + [435] = 305, + [436] = 421, + [437] = 315, + [438] = 438, + [439] = 419, + [440] = 316, + [441] = 441, + [442] = 310, + [443] = 311, + [444] = 407, + [445] = 303, + [446] = 332, [447] = 407, - [448] = 312, - [449] = 335, - [450] = 331, - [451] = 304, - [452] = 410, - [453] = 410, - [454] = 306, - [455] = 310, - [456] = 456, - [457] = 432, - [458] = 435, + [448] = 419, + [449] = 327, + [450] = 320, + [451] = 407, + [452] = 328, + [453] = 329, + [454] = 335, + [455] = 407, + [456] = 407, + [457] = 425, + [458] = 407, [459] = 407, - [460] = 328, - [461] = 410, - [462] = 323, + [460] = 441, + [461] = 407, + [462] = 312, [463] = 463, [464] = 464, [465] = 465, - [466] = 464, + [466] = 465, [467] = 467, - [468] = 468, - [469] = 464, - [470] = 464, - [471] = 464, + [468] = 465, + [469] = 465, + [470] = 465, + [471] = 471, [472] = 472, [473] = 472, [474] = 472, - [475] = 475, - [476] = 472, + [475] = 472, + [476] = 476, [477] = 472, [478] = 478, [479] = 479, - [480] = 480, + [480] = 479, [481] = 481, [482] = 482, [483] = 478, - [484] = 484, + [484] = 478, [485] = 485, [486] = 486, - [487] = 478, - [488] = 478, + [487] = 479, + [488] = 488, [489] = 489, [490] = 490, [491] = 491, - [492] = 492, - [493] = 480, - [494] = 480, - [495] = 484, + [492] = 479, + [493] = 482, + [494] = 482, + [495] = 489, [496] = 496, - [497] = 480, - [498] = 496, - [499] = 480, - [500] = 479, + [497] = 482, + [498] = 498, + [499] = 479, + [500] = 478, [501] = 501, - [502] = 502, - [503] = 478, - [504] = 481, + [502] = 501, + [503] = 498, + [504] = 496, [505] = 479, - [506] = 501, - [507] = 502, - [508] = 481, - [509] = 481, - [510] = 510, - [511] = 511, - [512] = 480, - [513] = 481, - [514] = 480, - [515] = 502, - [516] = 484, - [517] = 484, - [518] = 501, - [519] = 501, - [520] = 479, - [521] = 480, - [522] = 510, - [523] = 502, - [524] = 484, - [525] = 501, - [526] = 502, - [527] = 478, + [506] = 485, + [507] = 485, + [508] = 489, + [509] = 509, + [510] = 489, + [511] = 489, + [512] = 512, + [513] = 513, + [514] = 501, + [515] = 498, + [516] = 496, + [517] = 489, + [518] = 485, + [519] = 496, + [520] = 485, + [521] = 498, + [522] = 501, + [523] = 482, + [524] = 482, + [525] = 479, + [526] = 496, + [527] = 498, [528] = 528, - [529] = 481, - [530] = 481, - [531] = 480, - [532] = 478, - [533] = 501, - [534] = 479, - [535] = 479, - [536] = 478, - [537] = 501, - [538] = 502, - [539] = 510, - [540] = 540, - [541] = 502, + [529] = 482, + [530] = 530, + [531] = 501, + [532] = 485, + [533] = 489, + [534] = 482, + [535] = 501, + [536] = 498, + [537] = 496, + [538] = 482, + [539] = 482, + [540] = 478, + [541] = 501, [542] = 542, - [543] = 510, - [544] = 484, - [545] = 484, - [546] = 480, - [547] = 479, - [548] = 511, - [549] = 481, - [550] = 501, - [551] = 510, - [552] = 502, - [553] = 481, - [554] = 478, - [555] = 502, - [556] = 556, - [557] = 479, - [558] = 501, - [559] = 479, - [560] = 502, - [561] = 561, - [562] = 562, - [563] = 501, - [564] = 481, - [565] = 478, - [566] = 479, + [543] = 543, + [544] = 498, + [545] = 501, + [546] = 489, + [547] = 485, + [548] = 501, + [549] = 498, + [550] = 496, + [551] = 501, + [552] = 498, + [553] = 509, + [554] = 496, + [555] = 485, + [556] = 485, + [557] = 489, + [558] = 489, + [559] = 559, + [560] = 560, + [561] = 498, + [562] = 496, + [563] = 496, + [564] = 512, + [565] = 565, + [566] = 485, [567] = 567, [568] = 568, [569] = 569, - [570] = 570, + [570] = 569, [571] = 571, [572] = 572, - [573] = 573, + [573] = 571, [574] = 574, [575] = 575, [576] = 576, [577] = 577, - [578] = 574, - [579] = 571, + [578] = 578, + [579] = 579, [580] = 580, [581] = 581, - [582] = 580, - [583] = 583, - [584] = 584, + [582] = 582, + [583] = 567, + [584] = 567, [585] = 585, - [586] = 586, + [586] = 568, [587] = 587, [588] = 588, - [589] = 589, - [590] = 587, + [589] = 571, + [590] = 590, [591] = 591, - [592] = 584, - [593] = 575, + [592] = 585, + [593] = 593, [594] = 594, - [595] = 570, - [596] = 594, - [597] = 570, - [598] = 575, - [599] = 586, - [600] = 568, - [601] = 601, - [602] = 584, + [595] = 579, + [596] = 596, + [597] = 569, + [598] = 598, + [599] = 599, + [600] = 567, + [601] = 585, + [602] = 587, [603] = 603, - [604] = 601, + [604] = 604, [605] = 605, - [606] = 587, - [607] = 585, + [606] = 571, + [607] = 607, [608] = 608, - [609] = 603, - [610] = 610, - [611] = 588, - [612] = 612, - [613] = 570, - [614] = 589, - [615] = 569, - [616] = 580, - [617] = 570, - [618] = 618, - [619] = 572, - [620] = 573, + [609] = 609, + [610] = 571, + [611] = 571, + [612] = 609, + [613] = 608, + [614] = 607, + [615] = 615, + [616] = 616, + [617] = 571, + [618] = 567, + [619] = 598, + [620] = 582, [621] = 603, - [622] = 576, - [623] = 618, - [624] = 624, - [625] = 624, - [626] = 626, - [627] = 571, - [628] = 574, - [629] = 629, - [630] = 583, - [631] = 570, - [632] = 571, - [633] = 574, - [634] = 574, - [635] = 571, - [636] = 581, - [637] = 583, - [638] = 581, - [639] = 567, - [640] = 567, - [641] = 581, - [642] = 589, - [643] = 643, - [644] = 610, - [645] = 583, - [646] = 624, - [647] = 608, - [648] = 601, + [622] = 622, + [623] = 587, + [624] = 599, + [625] = 588, + [626] = 579, + [627] = 582, + [628] = 598, + [629] = 582, + [630] = 587, + [631] = 569, + [632] = 596, + [633] = 598, + [634] = 594, + [635] = 585, + [636] = 582, + [637] = 591, + [638] = 579, + [639] = 571, + [640] = 571, + [641] = 588, + [642] = 590, + [643] = 582, + [644] = 571, + [645] = 572, + [646] = 580, + [647] = 593, + [648] = 571, [649] = 585, - [650] = 571, - [651] = 574, - [652] = 586, - [653] = 594, - [654] = 574, - [655] = 571, - [656] = 589, - [657] = 570, - [658] = 588, - [659] = 659, - [660] = 618, - [661] = 576, - [662] = 572, - [663] = 575, - [664] = 664, + [650] = 568, + [651] = 567, + [652] = 615, + [653] = 616, + [654] = 581, + [655] = 587, + [656] = 569, + [657] = 567, + [658] = 582, + [659] = 580, + [660] = 578, + [661] = 615, + [662] = 609, + [663] = 571, + [664] = 585, [665] = 587, - [666] = 569, - [667] = 629, - [668] = 584, - [669] = 626, - [670] = 612, - [671] = 594, - [672] = 610, - [673] = 608, - [674] = 585, - [675] = 586, - [676] = 603, - [677] = 584, - [678] = 575, - [679] = 594, - [680] = 587, - [681] = 594, - [682] = 601, - [683] = 586, - [684] = 575, - [685] = 584, - [686] = 580, - [687] = 585, - [688] = 586, - [689] = 587, - [690] = 608, - [691] = 608, - [692] = 610, - [693] = 612, - [694] = 601, - [695] = 626, - [696] = 588, - [697] = 569, - [698] = 572, - [699] = 568, - [700] = 576, - [701] = 618, - [702] = 581, - [703] = 584, - [704] = 575, - [705] = 624, - [706] = 594, - [707] = 567, - [708] = 586, - [709] = 570, - [710] = 581, - [711] = 711, - [712] = 585, - [713] = 585, - [714] = 608, - [715] = 610, - [716] = 612, - [717] = 603, - [718] = 603, - [719] = 569, - [720] = 601, - [721] = 626, - [722] = 572, - [723] = 568, - [724] = 576, - [725] = 618, - [726] = 629, - [727] = 570, - [728] = 610, - [729] = 624, - [730] = 583, - [731] = 589, - [732] = 567, - [733] = 629, - [734] = 567, - [735] = 626, - [736] = 581, - [737] = 624, - [738] = 626, - [739] = 608, - [740] = 618, - [741] = 580, - [742] = 742, - [743] = 576, - [744] = 711, - [745] = 612, - [746] = 572, - [747] = 569, - [748] = 612, - [749] = 610, - [750] = 608, - [751] = 585, - [752] = 601, - [753] = 586, - [754] = 594, - [755] = 575, - [756] = 587, - [757] = 584, - [758] = 610, - [759] = 587, - [760] = 570, - [761] = 612, - [762] = 569, - [763] = 571, - [764] = 764, - [765] = 574, - [766] = 580, - [767] = 570, - [768] = 568, - [769] = 580, - [770] = 583, - [771] = 571, - [772] = 772, - [773] = 574, - [774] = 587, - [775] = 569, - [776] = 629, - [777] = 570, - [778] = 589, - [779] = 629, - [780] = 584, - [781] = 575, - [782] = 612, + [666] = 666, + [667] = 579, + [668] = 569, + [669] = 576, + [670] = 585, + [671] = 567, + [672] = 608, + [673] = 615, + [674] = 616, + [675] = 593, + [676] = 607, + [677] = 571, + [678] = 571, + [679] = 603, + [680] = 599, + [681] = 596, + [682] = 609, + [683] = 594, + [684] = 591, + [685] = 590, + [686] = 609, + [687] = 588, + [688] = 568, + [689] = 585, + [690] = 588, + [691] = 581, + [692] = 580, + [693] = 693, + [694] = 578, + [695] = 608, + [696] = 576, + [697] = 608, + [698] = 576, + [699] = 699, + [700] = 616, + [701] = 598, + [702] = 578, + [703] = 607, + [704] = 569, + [705] = 588, + [706] = 574, + [707] = 615, + [708] = 598, + [709] = 572, + [710] = 587, + [711] = 616, + [712] = 588, + [713] = 580, + [714] = 603, + [715] = 615, + [716] = 581, + [717] = 572, + [718] = 609, + [719] = 587, + [720] = 608, + [721] = 579, + [722] = 568, + [723] = 572, + [724] = 574, + [725] = 587, + [726] = 693, + [727] = 569, + [728] = 576, + [729] = 599, + [730] = 596, + [731] = 622, + [732] = 571, + [733] = 616, + [734] = 615, + [735] = 594, + [736] = 576, + [737] = 591, + [738] = 588, + [739] = 576, + [740] = 578, + [741] = 741, + [742] = 574, + [743] = 609, + [744] = 574, + [745] = 616, + [746] = 615, + [747] = 616, + [748] = 608, + [749] = 749, + [750] = 581, + [751] = 576, + [752] = 588, + [753] = 578, + [754] = 580, + [755] = 590, + [756] = 579, + [757] = 591, + [758] = 571, + [759] = 593, + [760] = 581, + [761] = 578, + [762] = 594, + [763] = 616, + [764] = 568, + [765] = 580, + [766] = 590, + [767] = 767, + [768] = 591, + [769] = 769, + [770] = 594, + [771] = 596, + [772] = 582, + [773] = 579, + [774] = 567, + [775] = 567, + [776] = 572, + [777] = 593, + [778] = 578, + [779] = 585, + [780] = 585, + [781] = 599, + [782] = 603, [783] = 580, - [784] = 601, - [785] = 572, - [786] = 572, - [787] = 573, - [788] = 594, - [789] = 581, - [790] = 626, - [791] = 576, - [792] = 570, - [793] = 629, - [794] = 764, - [795] = 626, - [796] = 586, - [797] = 585, - [798] = 603, + [784] = 590, + [785] = 615, + [786] = 596, + [787] = 582, + [788] = 599, + [789] = 569, + [790] = 598, + [791] = 581, + [792] = 598, + [793] = 598, + [794] = 616, + [795] = 582, + [796] = 615, + [797] = 609, + [798] = 608, [799] = 603, - [800] = 603, - [801] = 626, - [802] = 608, - [803] = 626, - [804] = 629, - [805] = 629, - [806] = 610, - [807] = 618, - [808] = 567, - [809] = 576, - [810] = 589, - [811] = 583, - [812] = 567, - [813] = 603, - [814] = 629, - [815] = 589, - [816] = 612, - [817] = 583, - [818] = 589, - [819] = 624, - [820] = 583, - [821] = 583, - [822] = 618, - [823] = 576, - [824] = 572, - [825] = 569, - [826] = 612, - [827] = 610, - [828] = 608, - [829] = 567, - [830] = 580, - [831] = 585, - [832] = 588, - [833] = 618, - [834] = 586, - [835] = 594, - [836] = 624, - [837] = 575, - [838] = 589, - [839] = 601, - [840] = 569, - [841] = 841, - [842] = 842, - [843] = 584, - [844] = 572, - [845] = 624, - [846] = 576, - [847] = 601, - [848] = 570, - [849] = 587, - [850] = 624, - [851] = 581, - [852] = 567, - [853] = 570, - [854] = 571, - [855] = 574, - [856] = 856, - [857] = 570, - [858] = 618, - [859] = 580, - [860] = 581, - [861] = 861, + [800] = 587, + [801] = 609, + [802] = 607, + [803] = 569, + [804] = 608, + [805] = 576, + [806] = 608, + [807] = 604, + [808] = 607, + [809] = 572, + [810] = 604, + [811] = 811, + [812] = 572, + [813] = 607, + [814] = 609, + [815] = 578, + [816] = 607, + [817] = 580, + [818] = 572, + [819] = 581, + [820] = 568, + [821] = 579, + [822] = 588, + [823] = 823, + [824] = 824, + [825] = 603, + [826] = 590, + [827] = 599, + [828] = 591, + [829] = 594, + [830] = 596, + [831] = 568, + [832] = 596, + [833] = 599, + [834] = 607, + [835] = 590, + [836] = 603, + [837] = 594, + [838] = 598, + [839] = 591, + [840] = 607, + [841] = 603, + [842] = 576, + [843] = 599, + [844] = 578, + [845] = 596, + [846] = 580, + [847] = 594, + [848] = 591, + [849] = 581, + [850] = 590, + [851] = 572, + [852] = 568, + [853] = 590, + [854] = 591, + [855] = 568, + [856] = 581, + [857] = 594, + [858] = 596, + [859] = 579, + [860] = 599, + [861] = 603, [862] = 862, [863] = 862, [864] = 862, @@ -5344,2753 +5352,2753 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [878] = 876, [879] = 879, [880] = 880, - [881] = 879, - [882] = 880, - [883] = 880, - [884] = 879, + [881] = 880, + [882] = 879, + [883] = 879, + [884] = 880, [885] = 885, [886] = 885, [887] = 885, [888] = 885, [889] = 885, [890] = 890, - [891] = 891, - [892] = 890, - [893] = 893, - [894] = 893, - [895] = 891, - [896] = 893, - [897] = 893, - [898] = 890, - [899] = 891, - [900] = 893, - [901] = 893, + [891] = 890, + [892] = 892, + [893] = 890, + [894] = 890, + [895] = 892, + [896] = 896, + [897] = 890, + [898] = 896, + [899] = 890, + [900] = 892, + [901] = 896, [902] = 902, [903] = 903, - [904] = 902, - [905] = 905, + [904] = 904, + [905] = 902, [906] = 906, - [907] = 906, - [908] = 905, - [909] = 906, - [910] = 905, - [911] = 906, - [912] = 905, + [907] = 907, + [908] = 907, + [909] = 907, + [910] = 904, + [911] = 907, + [912] = 907, [913] = 903, - [914] = 905, - [915] = 915, - [916] = 906, - [917] = 906, - [918] = 906, - [919] = 919, - [920] = 906, - [921] = 906, - [922] = 902, - [923] = 906, + [914] = 907, + [915] = 904, + [916] = 904, + [917] = 904, + [918] = 907, + [919] = 907, + [920] = 903, + [921] = 907, + [922] = 922, + [923] = 907, [924] = 924, - [925] = 906, - [926] = 926, + [925] = 924, + [926] = 924, [927] = 924, - [928] = 902, - [929] = 929, - [930] = 924, - [931] = 924, - [932] = 924, - [933] = 924, - [934] = 906, - [935] = 935, - [936] = 906, - [937] = 906, - [938] = 305, - [939] = 906, - [940] = 906, - [941] = 915, + [928] = 924, + [929] = 903, + [930] = 930, + [931] = 931, + [932] = 932, + [933] = 907, + [934] = 907, + [935] = 924, + [936] = 907, + [937] = 907, + [938] = 316, + [939] = 902, + [940] = 907, + [941] = 304, [942] = 906, - [943] = 929, - [944] = 929, - [945] = 906, - [946] = 311, - [947] = 903, - [948] = 295, - [949] = 294, - [950] = 309, - [951] = 311, + [943] = 907, + [944] = 907, + [945] = 907, + [946] = 930, + [947] = 930, + [948] = 948, + [949] = 930, + [950] = 316, + [951] = 948, [952] = 321, - [953] = 953, - [954] = 953, - [955] = 953, - [956] = 953, - [957] = 957, - [958] = 953, - [959] = 305, - [960] = 953, - [961] = 929, - [962] = 305, - [963] = 953, - [964] = 953, - [965] = 906, - [966] = 953, - [967] = 953, - [968] = 305, - [969] = 311, - [970] = 311, - [971] = 311, - [972] = 311, + [953] = 299, + [954] = 954, + [955] = 316, + [956] = 948, + [957] = 948, + [958] = 948, + [959] = 304, + [960] = 316, + [961] = 331, + [962] = 948, + [963] = 948, + [964] = 948, + [965] = 948, + [966] = 907, + [967] = 304, + [968] = 304, + [969] = 948, + [970] = 296, + [971] = 316, + [972] = 299, [973] = 973, [974] = 974, - [975] = 974, - [976] = 976, - [977] = 309, - [978] = 305, - [979] = 309, - [980] = 957, - [981] = 305, - [982] = 311, - [983] = 983, - [984] = 321, - [985] = 321, - [986] = 986, - [987] = 309, - [988] = 957, - [989] = 309, - [990] = 990, - [991] = 321, - [992] = 294, - [993] = 327, - [994] = 295, + [975] = 975, + [976] = 294, + [977] = 304, + [978] = 978, + [979] = 979, + [980] = 321, + [981] = 981, + [982] = 299, + [983] = 307, + [984] = 296, + [985] = 305, + [986] = 304, + [987] = 331, + [988] = 304, + [989] = 954, + [990] = 296, + [991] = 954, + [992] = 992, + [993] = 316, + [994] = 994, [995] = 995, - [996] = 996, - [997] = 997, - [998] = 321, + [996] = 316, + [997] = 304, + [998] = 998, [999] = 999, - [1000] = 311, - [1001] = 295, - [1002] = 294, - [1003] = 333, - [1004] = 1004, - [1005] = 1005, + [1000] = 1000, + [1001] = 304, + [1002] = 331, + [1003] = 994, + [1004] = 331, + [1005] = 334, [1006] = 1006, - [1007] = 312, - [1008] = 311, - [1009] = 293, - [1010] = 329, - [1011] = 305, + [1007] = 321, + [1008] = 316, + [1009] = 316, + [1010] = 321, + [1011] = 331, [1012] = 1012, - [1013] = 1013, + [1013] = 321, [1014] = 1014, - [1015] = 305, - [1016] = 305, - [1017] = 1017, + [1015] = 1015, + [1016] = 1016, + [1017] = 335, [1018] = 1018, [1019] = 1019, [1020] = 1020, - [1021] = 1004, - [1022] = 995, + [1021] = 1021, + [1022] = 1022, [1023] = 1023, - [1024] = 983, + [1024] = 981, [1025] = 1025, [1026] = 1026, - [1027] = 1027, + [1027] = 304, [1028] = 1028, [1029] = 1029, [1030] = 1030, [1031] = 1031, [1032] = 1032, [1033] = 1033, - [1034] = 311, + [1034] = 1034, [1035] = 1035, [1036] = 1036, - [1037] = 973, + [1037] = 307, [1038] = 1038, - [1039] = 333, - [1040] = 990, - [1041] = 327, - [1042] = 309, + [1039] = 305, + [1040] = 1040, + [1041] = 1018, + [1042] = 994, [1043] = 1043, - [1044] = 314, - [1045] = 321, - [1046] = 293, - [1047] = 1047, - [1048] = 1048, - [1049] = 326, - [1050] = 996, + [1044] = 331, + [1045] = 992, + [1046] = 995, + [1047] = 296, + [1048] = 299, + [1049] = 973, + [1050] = 334, [1051] = 1051, [1052] = 1052, - [1053] = 1053, - [1054] = 986, + [1053] = 321, + [1054] = 1054, [1055] = 1055, [1056] = 1056, [1057] = 1057, - [1058] = 304, + [1058] = 1058, [1059] = 1059, - [1060] = 327, - [1061] = 1061, + [1060] = 1060, + [1061] = 335, [1062] = 1062, [1063] = 1063, [1064] = 1064, [1065] = 1065, [1066] = 1066, [1067] = 1067, - [1068] = 997, - [1069] = 323, + [1068] = 321, + [1069] = 1069, [1070] = 1070, [1071] = 1071, - [1072] = 999, - [1073] = 305, + [1072] = 1072, + [1073] = 1073, [1074] = 1074, [1075] = 1075, [1076] = 1076, [1077] = 1077, - [1078] = 1078, - [1079] = 1079, + [1078] = 316, + [1079] = 1015, [1080] = 1080, - [1081] = 1006, - [1082] = 321, + [1081] = 1081, + [1082] = 304, [1083] = 1083, - [1084] = 1005, + [1084] = 1084, [1085] = 1085, - [1086] = 1086, - [1087] = 1087, - [1088] = 309, + [1086] = 294, + [1087] = 307, + [1088] = 1088, [1089] = 1089, - [1090] = 1090, - [1091] = 1091, + [1090] = 1019, + [1091] = 304, [1092] = 1092, [1093] = 1093, [1094] = 1094, - [1095] = 1095, - [1096] = 1096, - [1097] = 321, - [1098] = 1098, - [1099] = 1099, - [1100] = 305, - [1101] = 1012, - [1102] = 1013, - [1103] = 309, - [1104] = 957, - [1105] = 1105, + [1095] = 294, + [1096] = 305, + [1097] = 1097, + [1098] = 323, + [1099] = 973, + [1100] = 331, + [1101] = 316, + [1102] = 1102, + [1103] = 1103, + [1104] = 995, + [1105] = 992, [1106] = 1106, - [1107] = 1107, - [1108] = 321, - [1109] = 1109, + [1107] = 331, + [1108] = 1014, + [1109] = 1012, [1110] = 1110, - [1111] = 309, - [1112] = 321, - [1113] = 986, + [1111] = 1111, + [1112] = 1112, + [1113] = 1113, [1114] = 1114, - [1115] = 974, - [1116] = 333, - [1117] = 1006, - [1118] = 311, - [1119] = 1005, - [1120] = 1120, - [1121] = 976, - [1122] = 1017, + [1115] = 321, + [1116] = 1116, + [1117] = 1117, + [1118] = 1118, + [1119] = 1119, + [1120] = 321, + [1121] = 1121, + [1122] = 1122, [1123] = 1123, - [1124] = 1124, + [1124] = 998, [1125] = 1125, [1126] = 1126, - [1127] = 321, + [1127] = 1127, [1128] = 1128, - [1129] = 1129, + [1129] = 999, [1130] = 1130, - [1131] = 305, + [1131] = 1131, [1132] = 1132, - [1133] = 1017, - [1134] = 1134, + [1133] = 321, + [1134] = 312, [1135] = 1135, - [1136] = 1136, - [1137] = 1137, + [1136] = 1014, + [1137] = 1012, [1138] = 1138, - [1139] = 1139, - [1140] = 1140, - [1141] = 1141, + [1139] = 981, + [1140] = 309, + [1141] = 304, [1142] = 1142, [1143] = 1143, [1144] = 1144, - [1145] = 311, - [1146] = 1146, + [1145] = 316, + [1146] = 334, [1147] = 1147, - [1148] = 1148, + [1148] = 1019, [1149] = 1149, - [1150] = 1150, - [1151] = 1151, + [1150] = 1015, + [1151] = 335, [1152] = 1152, [1153] = 1153, [1154] = 1154, - [1155] = 1155, - [1156] = 309, - [1157] = 1157, + [1155] = 331, + [1156] = 1006, + [1157] = 327, [1158] = 1158, - [1159] = 1159, - [1160] = 1160, - [1161] = 1161, - [1162] = 1162, - [1163] = 1019, - [1164] = 1013, - [1165] = 1165, - [1166] = 1166, - [1167] = 1012, - [1168] = 1018, + [1159] = 954, + [1160] = 321, + [1161] = 975, + [1162] = 316, + [1163] = 1016, + [1164] = 974, + [1165] = 979, + [1166] = 331, + [1167] = 1167, + [1168] = 1168, [1169] = 1169, [1170] = 1170, [1171] = 1171, [1172] = 1172, - [1173] = 1173, - [1174] = 1014, + [1173] = 975, + [1174] = 998, [1175] = 1175, - [1176] = 1176, - [1177] = 1177, - [1178] = 976, - [1179] = 1179, - [1180] = 305, + [1176] = 331, + [1177] = 999, + [1178] = 974, + [1179] = 316, + [1180] = 994, [1181] = 1181, [1182] = 1182, - [1183] = 1183, - [1184] = 1184, + [1183] = 978, + [1184] = 979, [1185] = 1185, - [1186] = 1186, + [1186] = 1000, [1187] = 1187, [1188] = 1188, [1189] = 1189, [1190] = 1190, - [1191] = 311, - [1192] = 311, - [1193] = 1193, - [1194] = 329, - [1195] = 312, - [1196] = 295, - [1197] = 294, - [1198] = 973, - [1199] = 305, + [1191] = 1191, + [1192] = 1192, + [1193] = 1018, + [1194] = 1194, + [1195] = 1195, + [1196] = 1196, + [1197] = 1197, + [1198] = 1198, + [1199] = 1199, [1200] = 1200, - [1201] = 1201, - [1202] = 333, - [1203] = 1203, - [1204] = 983, - [1205] = 1205, + [1201] = 1006, + [1202] = 1202, + [1203] = 334, + [1204] = 335, + [1205] = 1000, [1206] = 1206, - [1207] = 995, - [1208] = 997, + [1207] = 1207, + [1208] = 1208, [1209] = 1209, [1210] = 1210, [1211] = 1211, [1212] = 1212, [1213] = 1213, - [1214] = 1214, + [1214] = 978, [1215] = 1215, - [1216] = 1216, - [1217] = 1217, - [1218] = 1218, - [1219] = 1219, - [1220] = 1220, - [1221] = 327, - [1222] = 1222, - [1223] = 1223, - [1224] = 1224, - [1225] = 1225, - [1226] = 1226, - [1227] = 974, - [1228] = 1228, - [1229] = 1229, - [1230] = 1230, - [1231] = 293, - [1232] = 990, - [1233] = 1019, - [1234] = 329, - [1235] = 312, - [1236] = 1236, - [1237] = 996, - [1238] = 1018, - [1239] = 1014, - [1240] = 1240, - [1241] = 1241, - [1242] = 1242, - [1243] = 1004, - [1244] = 999, - [1245] = 1245, - [1246] = 1246, - [1247] = 1247, - [1248] = 309, - [1249] = 1249, - [1250] = 1250, - [1251] = 1251, - [1252] = 1252, - [1253] = 1253, - [1254] = 1254, - [1255] = 1064, - [1256] = 1151, - [1257] = 1071, - [1258] = 1070, - [1259] = 1067, - [1260] = 1066, - [1261] = 1123, - [1262] = 1065, - [1263] = 327, - [1264] = 1059, - [1265] = 1057, - [1266] = 1056, - [1267] = 1055, - [1268] = 321, - [1269] = 1193, - [1270] = 1144, - [1271] = 1149, - [1272] = 1020, - [1273] = 1053, - [1274] = 1150, - [1275] = 1124, - [1276] = 1143, - [1277] = 333, - [1278] = 1201, - [1279] = 1188, - [1280] = 1187, - [1281] = 1162, - [1282] = 1142, - [1283] = 314, - [1284] = 1052, - [1285] = 1023, - [1286] = 1025, - [1287] = 1051, - [1288] = 1048, - [1289] = 1183, - [1290] = 1236, - [1291] = 1047, - [1292] = 1165, - [1293] = 326, - [1294] = 1170, - [1295] = 1173, - [1296] = 1181, - [1297] = 1179, - [1298] = 1172, - [1299] = 1177, - [1300] = 1175, - [1301] = 1173, - [1302] = 1078, - [1303] = 1142, - [1304] = 1028, - [1305] = 1175, - [1306] = 1176, - [1307] = 1143, - [1308] = 1079, - [1309] = 1172, - [1310] = 1170, - [1311] = 1165, - [1312] = 309, - [1313] = 304, - [1314] = 1171, - [1315] = 1185, - [1316] = 1186, - [1317] = 323, - [1318] = 1205, - [1319] = 1144, - [1320] = 1149, - [1321] = 1120, - [1322] = 1150, - [1323] = 1162, - [1324] = 1206, - [1325] = 1246, - [1326] = 1201, - [1327] = 1247, - [1328] = 1182, - [1329] = 1124, + [1216] = 1016, + [1217] = 304, + [1218] = 1121, + [1219] = 1198, + [1220] = 1153, + [1221] = 321, + [1222] = 1111, + [1223] = 1207, + [1224] = 1112, + [1225] = 1114, + [1226] = 1168, + [1227] = 1153, + [1228] = 1207, + [1229] = 1190, + [1230] = 1168, + [1231] = 1172, + [1232] = 1111, + [1233] = 331, + [1234] = 1189, + [1235] = 1112, + [1236] = 1187, + [1237] = 1188, + [1238] = 1206, + [1239] = 1208, + [1240] = 1209, + [1241] = 1202, + [1242] = 1172, + [1243] = 1200, + [1244] = 1192, + [1245] = 1187, + [1246] = 1188, + [1247] = 1059, + [1248] = 1206, + [1249] = 1208, + [1250] = 1209, + [1251] = 1202, + [1252] = 1200, + [1253] = 1181, + [1254] = 1149, + [1255] = 1192, + [1256] = 1019, + [1257] = 321, + [1258] = 1144, + [1259] = 1059, + [1260] = 1181, + [1261] = 978, + [1262] = 981, + [1263] = 1135, + [1264] = 1149, + [1265] = 1132, + [1266] = 1012, + [1267] = 1014, + [1268] = 1175, + [1269] = 1171, + [1270] = 1169, + [1271] = 1122, + [1272] = 1067, + [1273] = 1144, + [1274] = 335, + [1275] = 1021, + [1276] = 334, + [1277] = 1117, + [1278] = 1116, + [1279] = 1113, + [1280] = 1110, + [1281] = 1135, + [1282] = 1097, + [1283] = 1122, + [1284] = 1092, + [1285] = 1106, + [1286] = 1021, + [1287] = 1117, + [1288] = 1069, + [1289] = 1089, + [1290] = 1084, + [1291] = 1074, + [1292] = 1073, + [1293] = 1064, + [1294] = 1063, + [1295] = 1194, + [1296] = 1097, + [1297] = 1094, + [1298] = 1092, + [1299] = 1089, + [1300] = 1084, + [1301] = 1138, + [1302] = 1058, + [1303] = 1074, + [1304] = 331, + [1305] = 1055, + [1306] = 1073, + [1307] = 1064, + [1308] = 1063, + [1309] = 1194, + [1310] = 327, + [1311] = 1094, + [1312] = 321, + [1313] = 1052, + [1314] = 1058, + [1315] = 1131, + [1316] = 1038, + [1317] = 1130, + [1318] = 1128, + [1319] = 1127, + [1320] = 1040, + [1321] = 1126, + [1322] = 1055, + [1323] = 1125, + [1324] = 1123, + [1325] = 1032, + [1326] = 1028, + [1327] = 1071, + [1328] = 1118, + [1329] = 1077, [1330] = 1080, - [1331] = 1085, - [1332] = 1184, - [1333] = 1253, - [1334] = 1189, - [1335] = 1086, - [1336] = 1092, - [1337] = 1250, - [1338] = 1249, - [1339] = 1190, - [1340] = 1254, - [1341] = 1114, - [1342] = 1218, - [1343] = 1123, - [1344] = 1120, - [1345] = 327, - [1346] = 1031, - [1347] = 1032, - [1348] = 1217, - [1349] = 1033, - [1350] = 1035, - [1351] = 1228, - [1352] = 1096, - [1353] = 997, - [1354] = 1094, - [1355] = 1200, - [1356] = 333, - [1357] = 1114, - [1358] = 1185, - [1359] = 1203, - [1360] = 1186, - [1361] = 1096, - [1362] = 1090, - [1363] = 1213, - [1364] = 1205, - [1365] = 1206, - [1366] = 1219, - [1367] = 1089, - [1368] = 1216, - [1369] = 326, - [1370] = 986, - [1371] = 323, - [1372] = 1095, - [1373] = 1250, - [1374] = 1029, - [1375] = 1223, - [1376] = 1224, - [1377] = 305, - [1378] = 1215, - [1379] = 1225, - [1380] = 1226, - [1381] = 1245, - [1382] = 1214, - [1383] = 1251, - [1384] = 995, - [1385] = 1035, - [1386] = 990, - [1387] = 1033, - [1388] = 1032, - [1389] = 1031, - [1390] = 1212, - [1391] = 311, - [1392] = 1211, - [1393] = 1210, - [1394] = 1236, - [1395] = 1209, - [1396] = 983, - [1397] = 1252, - [1398] = 1246, - [1399] = 1098, - [1400] = 1093, - [1401] = 1091, - [1402] = 1087, - [1403] = 1169, - [1404] = 1166, - [1405] = 1220, - [1406] = 1161, - [1407] = 996, - [1408] = 1160, - [1409] = 1159, - [1410] = 1023, - [1411] = 1090, - [1412] = 1242, - [1413] = 1025, - [1414] = 1158, - [1415] = 1157, - [1416] = 1241, - [1417] = 321, - [1418] = 1247, - [1419] = 1253, - [1420] = 1249, - [1421] = 1240, - [1422] = 1155, - [1423] = 1254, - [1424] = 1004, - [1425] = 999, - [1426] = 1154, - [1427] = 1089, - [1428] = 976, - [1429] = 1153, - [1430] = 1028, - [1431] = 1099, - [1432] = 1152, - [1433] = 312, - [1434] = 1226, - [1435] = 329, - [1436] = 1176, - [1437] = 1251, - [1438] = 1148, - [1439] = 1030, - [1440] = 305, - [1441] = 1146, - [1442] = 1141, - [1443] = 1140, - [1444] = 1139, - [1445] = 1105, - [1446] = 1252, - [1447] = 1138, - [1448] = 1137, - [1449] = 1106, - [1450] = 1047, - [1451] = 1048, - [1452] = 1051, - [1453] = 1136, - [1454] = 1193, - [1455] = 1188, - [1456] = 1187, - [1457] = 1107, - [1458] = 1109, - [1459] = 1052, - [1460] = 1053, - [1461] = 1183, - [1462] = 1020, - [1463] = 1055, - [1464] = 1056, - [1465] = 1057, - [1466] = 1059, - [1467] = 1065, - [1468] = 1135, - [1469] = 1066, - [1470] = 1181, - [1471] = 1222, - [1472] = 1218, - [1473] = 309, - [1474] = 1067, - [1475] = 1070, - [1476] = 1071, - [1477] = 1217, - [1478] = 1077, - [1479] = 1078, - [1480] = 1179, - [1481] = 1177, - [1482] = 1079, - [1483] = 1171, - [1484] = 1080, - [1485] = 1216, - [1486] = 1215, - [1487] = 1085, - [1488] = 1086, - [1489] = 1092, - [1490] = 1094, - [1491] = 1214, - [1492] = 1095, - [1493] = 1212, - [1494] = 1099, - [1495] = 1230, - [1496] = 1211, - [1497] = 1229, - [1498] = 1210, - [1499] = 1105, - [1500] = 1209, - [1501] = 1076, - [1502] = 1228, - [1503] = 1106, - [1504] = 1107, - [1505] = 1109, - [1506] = 1075, - [1507] = 1074, - [1508] = 1134, - [1509] = 1110, - [1510] = 1132, - [1511] = 304, - [1512] = 1083, - [1513] = 1110, - [1514] = 1029, - [1515] = 327, - [1516] = 1169, - [1517] = 1166, - [1518] = 1222, - [1519] = 1030, - [1520] = 1130, - [1521] = 1161, - [1522] = 1160, - [1523] = 1159, - [1524] = 1158, - [1525] = 333, - [1526] = 1157, - [1527] = 293, - [1528] = 309, - [1529] = 1063, - [1530] = 1062, - [1531] = 1531, - [1532] = 1061, - [1533] = 1043, - [1534] = 1155, - [1535] = 1154, - [1536] = 1182, - [1537] = 1184, - [1538] = 1230, - [1539] = 1129, - [1540] = 1038, - [1541] = 1036, - [1542] = 1153, - [1543] = 1027, - [1544] = 1098, - [1545] = 1019, - [1546] = 1189, - [1547] = 1013, - [1548] = 1012, - [1549] = 1018, - [1550] = 1026, - [1551] = 1014, - [1552] = 321, - [1553] = 1128, - [1554] = 1152, - [1555] = 1126, - [1556] = 1151, - [1557] = 1125, - [1558] = 1093, - [1559] = 1091, - [1560] = 311, - [1561] = 1220, - [1562] = 1026, - [1563] = 1027, - [1564] = 1036, - [1565] = 1148, - [1566] = 1038, - [1567] = 1147, - [1568] = 1146, - [1569] = 1083, - [1570] = 1043, - [1571] = 1061, - [1572] = 1062, - [1573] = 1063, - [1574] = 973, - [1575] = 1200, - [1576] = 1132, - [1577] = 1017, - [1578] = 1077, - [1579] = 321, - [1580] = 314, - [1581] = 1229, - [1582] = 1242, - [1583] = 1241, - [1584] = 1240, - [1585] = 1141, - [1586] = 1203, - [1587] = 1245, - [1588] = 1134, - [1589] = 1135, - [1590] = 1125, - [1591] = 1136, - [1592] = 1126, - [1593] = 1128, - [1594] = 1129, - [1595] = 1147, - [1596] = 1137, - [1597] = 1130, - [1598] = 1138, - [1599] = 1213, - [1600] = 1190, - [1601] = 1219, - [1602] = 1076, - [1603] = 1139, - [1604] = 1075, - [1605] = 1064, - [1606] = 1074, - [1607] = 1005, - [1608] = 1223, - [1609] = 1087, - [1610] = 1140, - [1611] = 1224, - [1612] = 1006, - [1613] = 309, - [1614] = 1225, - [1615] = 1171, - [1616] = 1254, - [1617] = 1209, - [1618] = 1210, - [1619] = 1211, - [1620] = 1043, - [1621] = 1212, - [1622] = 1242, - [1623] = 1061, - [1624] = 1134, - [1625] = 1047, - [1626] = 1062, - [1627] = 1063, - [1628] = 1251, - [1629] = 1048, - [1630] = 1214, - [1631] = 1215, - [1632] = 1132, - [1633] = 1216, - [1634] = 1087, - [1635] = 1051, - [1636] = 1083, - [1637] = 1064, - [1638] = 327, - [1639] = 1217, - [1640] = 1166, - [1641] = 1029, - [1642] = 1169, - [1643] = 1030, - [1644] = 1224, - [1645] = 1177, - [1646] = 1186, - [1647] = 1185, - [1648] = 1130, - [1649] = 1241, - [1650] = 1240, - [1651] = 1123, - [1652] = 1218, - [1653] = 1129, - [1654] = 1128, - [1655] = 1137, - [1656] = 1038, - [1657] = 1120, - [1658] = 1114, - [1659] = 1036, - [1660] = 1027, - [1661] = 1026, - [1662] = 1138, - [1663] = 1096, - [1664] = 1190, - [1665] = 1090, - [1666] = 1139, - [1667] = 1252, - [1668] = 309, - [1669] = 1200, - [1670] = 1179, - [1671] = 1181, - [1672] = 1203, - [1673] = 1089, - [1674] = 1161, - [1675] = 1213, - [1676] = 1219, - [1677] = 1126, - [1678] = 1142, - [1679] = 1160, - [1680] = 1140, - [1681] = 1531, - [1682] = 323, - [1683] = 1230, - [1684] = 1159, - [1685] = 1223, - [1686] = 1028, - [1687] = 1143, - [1688] = 1136, - [1689] = 1091, - [1690] = 304, - [1691] = 1154, - [1692] = 1225, - [1693] = 1093, - [1694] = 1098, - [1695] = 1025, - [1696] = 1144, - [1697] = 1023, - [1698] = 1229, - [1699] = 1226, - [1700] = 1052, - [1701] = 1035, - [1702] = 1228, - [1703] = 1135, - [1704] = 1032, - [1705] = 1125, - [1706] = 1141, - [1707] = 1249, - [1708] = 1020, - [1709] = 1055, - [1710] = 1056, - [1711] = 1057, - [1712] = 1059, - [1713] = 1065, - [1714] = 1189, - [1715] = 1031, - [1716] = 1184, - [1717] = 1182, - [1718] = 1146, - [1719] = 1206, - [1720] = 1066, - [1721] = 1067, - [1722] = 314, - [1723] = 1253, - [1724] = 1245, - [1725] = 1250, - [1726] = 1158, - [1727] = 326, - [1728] = 1070, - [1729] = 1071, - [1730] = 1149, - [1731] = 1076, - [1732] = 1150, - [1733] = 1110, - [1734] = 1077, - [1735] = 1247, - [1736] = 1109, - [1737] = 1246, - [1738] = 1107, - [1739] = 1236, - [1740] = 1147, - [1741] = 1078, - [1742] = 1148, - [1743] = 1079, - [1744] = 1080, - [1745] = 1085, - [1746] = 1086, - [1747] = 1092, - [1748] = 1094, - [1749] = 1095, - [1750] = 1151, - [1751] = 1053, - [1752] = 1220, - [1753] = 333, - [1754] = 1099, - [1755] = 1075, - [1756] = 1193, - [1757] = 1188, - [1758] = 1222, - [1759] = 1187, - [1760] = 1157, - [1761] = 321, - [1762] = 1183, - [1763] = 1124, - [1764] = 1074, - [1765] = 1201, - [1766] = 1162, - [1767] = 1033, - [1768] = 1165, - [1769] = 1170, - [1770] = 1176, - [1771] = 1155, - [1772] = 1205, - [1773] = 1105, - [1774] = 1153, - [1775] = 1175, - [1776] = 1172, - [1777] = 1152, - [1778] = 1106, - [1779] = 1173, - [1780] = 1780, - [1781] = 1780, - [1782] = 1780, - [1783] = 1780, - [1784] = 1780, - [1785] = 1785, - [1786] = 1786, - [1787] = 1787, + [1331] = 1052, + [1332] = 1088, + [1333] = 1103, + [1334] = 323, + [1335] = 1154, + [1336] = 1158, + [1337] = 1167, + [1338] = 1040, + [1339] = 1032, + [1340] = 1028, + [1341] = 334, + [1342] = 1071, + [1343] = 1170, + [1344] = 316, + [1345] = 309, + [1346] = 1077, + [1347] = 1080, + [1348] = 1088, + [1349] = 1103, + [1350] = 312, + [1351] = 1018, + [1352] = 1182, + [1353] = 331, + [1354] = 1043, + [1355] = 1119, + [1356] = 1154, + [1357] = 1158, + [1358] = 1167, + [1359] = 1023, + [1360] = 1170, + [1361] = 1020, + [1362] = 335, + [1363] = 1083, + [1364] = 1070, + [1365] = 1147, + [1366] = 1143, + [1367] = 1142, + [1368] = 1368, + [1369] = 1081, + [1370] = 1025, + [1371] = 1102, + [1372] = 1076, + [1373] = 1093, + [1374] = 1085, + [1375] = 1051, + [1376] = 321, + [1377] = 1026, + [1378] = 1022, + [1379] = 1075, + [1380] = 1072, + [1381] = 294, + [1382] = 1182, + [1383] = 1191, + [1384] = 1185, + [1385] = 1065, + [1386] = 1060, + [1387] = 1057, + [1388] = 1056, + [1389] = 1054, + [1390] = 1030, + [1391] = 1043, + [1392] = 1195, + [1393] = 1070, + [1394] = 1147, + [1395] = 1036, + [1396] = 1143, + [1397] = 1142, + [1398] = 1102, + [1399] = 1093, + [1400] = 1069, + [1401] = 1016, + [1402] = 1085, + [1403] = 1152, + [1404] = 312, + [1405] = 1022, + [1406] = 1030, + [1407] = 1036, + [1408] = 1067, + [1409] = 1066, + [1410] = 1062, + [1411] = 973, + [1412] = 1000, + [1413] = 1006, + [1414] = 1195, + [1415] = 1015, + [1416] = 1029, + [1417] = 1215, + [1418] = 1031, + [1419] = 1213, + [1420] = 1033, + [1421] = 1212, + [1422] = 1034, + [1423] = 1038, + [1424] = 1035, + [1425] = 1034, + [1426] = 1033, + [1427] = 1031, + [1428] = 1035, + [1429] = 1029, + [1430] = 1152, + [1431] = 1211, + [1432] = 1210, + [1433] = 1026, + [1434] = 334, + [1435] = 1138, + [1436] = 1132, + [1437] = 1051, + [1438] = 1025, + [1439] = 1020, + [1440] = 316, + [1441] = 327, + [1442] = 323, + [1443] = 1023, + [1444] = 1066, + [1445] = 1199, + [1446] = 1215, + [1447] = 1114, + [1448] = 1119, + [1449] = 1213, + [1450] = 1197, + [1451] = 307, + [1452] = 305, + [1453] = 331, + [1454] = 1185, + [1455] = 995, + [1456] = 992, + [1457] = 1191, + [1458] = 1196, + [1459] = 304, + [1460] = 1054, + [1461] = 1062, + [1462] = 1056, + [1463] = 1057, + [1464] = 1060, + [1465] = 1196, + [1466] = 1065, + [1467] = 1190, + [1468] = 1197, + [1469] = 1189, + [1470] = 1175, + [1471] = 1072, + [1472] = 1075, + [1473] = 1076, + [1474] = 1171, + [1475] = 1169, + [1476] = 1198, + [1477] = 1199, + [1478] = 1081, + [1479] = 1083, + [1480] = 1212, + [1481] = 1211, + [1482] = 309, + [1483] = 1210, + [1484] = 1131, + [1485] = 1130, + [1486] = 335, + [1487] = 1128, + [1488] = 1127, + [1489] = 1126, + [1490] = 1125, + [1491] = 1123, + [1492] = 1121, + [1493] = 1116, + [1494] = 1113, + [1495] = 1110, + [1496] = 1106, + [1497] = 1118, + [1498] = 304, + [1499] = 979, + [1500] = 974, + [1501] = 999, + [1502] = 998, + [1503] = 975, + [1504] = 321, + [1505] = 1043, + [1506] = 1198, + [1507] = 1199, + [1508] = 1154, + [1509] = 1212, + [1510] = 1077, + [1511] = 1158, + [1512] = 1033, + [1513] = 1036, + [1514] = 1122, + [1515] = 1167, + [1516] = 1080, + [1517] = 1144, + [1518] = 1088, + [1519] = 1021, + [1520] = 1035, + [1521] = 1030, + [1522] = 1022, + [1523] = 1117, + [1524] = 1103, + [1525] = 335, + [1526] = 1038, + [1527] = 327, + [1528] = 1058, + [1529] = 1194, + [1530] = 1063, + [1531] = 1064, + [1532] = 323, + [1533] = 1170, + [1534] = 1169, + [1535] = 1171, + [1536] = 1073, + [1537] = 1097, + [1538] = 1085, + [1539] = 1074, + [1540] = 312, + [1541] = 1094, + [1542] = 1152, + [1543] = 1211, + [1544] = 1213, + [1545] = 1210, + [1546] = 1029, + [1547] = 1093, + [1548] = 1092, + [1549] = 1102, + [1550] = 1142, + [1551] = 1116, + [1552] = 1175, + [1553] = 1113, + [1554] = 1215, + [1555] = 1110, + [1556] = 1106, + [1557] = 1089, + [1558] = 1143, + [1559] = 1189, + [1560] = 1026, + [1561] = 1131, + [1562] = 1084, + [1563] = 1034, + [1564] = 1071, + [1565] = 334, + [1566] = 1147, + [1567] = 1168, + [1568] = 1028, + [1569] = 1172, + [1570] = 1118, + [1571] = 1187, + [1572] = 1188, + [1573] = 1070, + [1574] = 1206, + [1575] = 1208, + [1576] = 1195, + [1577] = 1209, + [1578] = 1202, + [1579] = 1138, + [1580] = 1197, + [1581] = 1200, + [1582] = 1121, + [1583] = 1368, + [1584] = 1132, + [1585] = 1032, + [1586] = 1069, + [1587] = 1192, + [1588] = 1190, + [1589] = 1040, + [1590] = 331, + [1591] = 1054, + [1592] = 1056, + [1593] = 1031, + [1594] = 1057, + [1595] = 1067, + [1596] = 1060, + [1597] = 1123, + [1598] = 1125, + [1599] = 1196, + [1600] = 309, + [1601] = 1207, + [1602] = 1153, + [1603] = 1065, + [1604] = 1114, + [1605] = 1135, + [1606] = 1062, + [1607] = 1185, + [1608] = 1191, + [1609] = 1059, + [1610] = 1181, + [1611] = 1111, + [1612] = 1066, + [1613] = 1083, + [1614] = 1149, + [1615] = 1182, + [1616] = 1072, + [1617] = 1025, + [1618] = 1075, + [1619] = 1081, + [1620] = 1020, + [1621] = 1023, + [1622] = 1076, + [1623] = 1051, + [1624] = 1119, + [1625] = 1130, + [1626] = 1052, + [1627] = 1128, + [1628] = 1127, + [1629] = 1126, + [1630] = 1055, + [1631] = 1112, + [1632] = 1632, + [1633] = 1632, + [1634] = 1632, + [1635] = 1632, + [1636] = 1632, + [1637] = 1637, + [1638] = 1637, + [1639] = 1637, + [1640] = 1640, + [1641] = 1641, + [1642] = 1640, + [1643] = 1643, + [1644] = 1637, + [1645] = 1015, + [1646] = 1640, + [1647] = 1647, + [1648] = 1637, + [1649] = 1649, + [1650] = 1650, + [1651] = 1651, + [1652] = 1652, + [1653] = 1018, + [1654] = 1654, + [1655] = 1655, + [1656] = 1656, + [1657] = 1657, + [1658] = 1640, + [1659] = 1640, + [1660] = 1660, + [1661] = 1661, + [1662] = 1660, + [1663] = 1660, + [1664] = 1664, + [1665] = 1665, + [1666] = 1666, + [1667] = 1666, + [1668] = 1664, + [1669] = 1669, + [1670] = 1664, + [1671] = 1666, + [1672] = 1672, + [1673] = 1665, + [1674] = 1672, + [1675] = 1666, + [1676] = 1669, + [1677] = 1669, + [1678] = 1678, + [1679] = 1679, + [1680] = 1669, + [1681] = 1665, + [1682] = 1664, + [1683] = 1665, + [1684] = 1672, + [1685] = 1679, + [1686] = 1665, + [1687] = 1666, + [1688] = 1669, + [1689] = 1664, + [1690] = 1679, + [1691] = 1679, + [1692] = 1665, + [1693] = 1679, + [1694] = 1672, + [1695] = 1679, + [1696] = 1665, + [1697] = 1672, + [1698] = 1679, + [1699] = 1672, + [1700] = 1669, + [1701] = 1669, + [1702] = 1666, + [1703] = 1664, + [1704] = 1672, + [1705] = 1666, + [1706] = 1664, + [1707] = 1707, + [1708] = 1708, + [1709] = 1709, + [1710] = 1707, + [1711] = 1707, + [1712] = 1707, + [1713] = 1708, + [1714] = 1707, + [1715] = 1707, + [1716] = 1716, + [1717] = 1716, + [1718] = 1718, + [1719] = 1718, + [1720] = 1718, + [1721] = 1716, + [1722] = 1718, + [1723] = 1716, + [1724] = 1716, + [1725] = 1718, + [1726] = 1726, + [1727] = 1726, + [1728] = 1726, + [1729] = 1726, + [1730] = 1726, + [1731] = 1726, + [1732] = 1726, + [1733] = 1726, + [1734] = 1726, + [1735] = 1726, + [1736] = 1726, + [1737] = 1726, + [1738] = 1738, + [1739] = 1739, + [1740] = 1740, + [1741] = 1741, + [1742] = 1738, + [1743] = 1740, + [1744] = 1739, + [1745] = 1738, + [1746] = 1741, + [1747] = 1741, + [1748] = 1739, + [1749] = 1740, + [1750] = 1741, + [1751] = 1741, + [1752] = 1752, + [1753] = 1753, + [1754] = 1754, + [1755] = 1755, + [1756] = 1756, + [1757] = 1757, + [1758] = 1757, + [1759] = 1759, + [1760] = 1760, + [1761] = 1761, + [1762] = 1762, + [1763] = 1753, + [1764] = 1764, + [1765] = 1765, + [1766] = 1755, + [1767] = 1767, + [1768] = 1768, + [1769] = 1769, + [1770] = 1770, + [1771] = 1770, + [1772] = 1772, + [1773] = 1773, + [1774] = 1774, + [1775] = 1775, + [1776] = 1776, + [1777] = 1762, + [1778] = 1776, + [1779] = 1779, + [1780] = 1756, + [1781] = 1772, + [1782] = 1782, + [1783] = 1753, + [1784] = 1784, + [1785] = 1755, + [1786] = 1757, + [1787] = 1765, [1788] = 1788, [1789] = 1789, - [1790] = 1788, - [1791] = 1788, + [1790] = 1790, + [1791] = 1775, [1792] = 1792, - [1793] = 1793, - [1794] = 1794, - [1795] = 1795, - [1796] = 1796, - [1797] = 1792, - [1798] = 1798, - [1799] = 976, - [1800] = 1792, - [1801] = 1801, - [1802] = 973, - [1803] = 1803, - [1804] = 1788, - [1805] = 1792, - [1806] = 1792, - [1807] = 1788, - [1808] = 1808, - [1809] = 1808, - [1810] = 1810, - [1811] = 1808, + [1793] = 1767, + [1794] = 1765, + [1795] = 1779, + [1796] = 1768, + [1797] = 1755, + [1798] = 1762, + [1799] = 1799, + [1800] = 1767, + [1801] = 1768, + [1802] = 1802, + [1803] = 1753, + [1804] = 1802, + [1805] = 1779, + [1806] = 1767, + [1807] = 1807, + [1808] = 1764, + [1809] = 1754, + [1810] = 1802, + [1811] = 1776, [1812] = 1812, [1813] = 1813, - [1814] = 1814, - [1815] = 1815, - [1816] = 1816, - [1817] = 1815, - [1818] = 1814, - [1819] = 1819, - [1820] = 1816, - [1821] = 1814, + [1814] = 1802, + [1815] = 1799, + [1816] = 1779, + [1817] = 1817, + [1818] = 1762, + [1819] = 1756, + [1820] = 1764, + [1821] = 1769, [1822] = 1822, - [1823] = 1816, - [1824] = 1816, - [1825] = 1822, - [1826] = 1814, - [1827] = 1819, - [1828] = 1812, - [1829] = 1814, - [1830] = 1815, - [1831] = 1814, - [1832] = 1822, - [1833] = 1812, - [1834] = 1822, - [1835] = 1819, - [1836] = 1819, - [1837] = 1812, - [1838] = 1815, - [1839] = 1816, - [1840] = 1815, - [1841] = 1819, - [1842] = 1822, - [1843] = 1812, - [1844] = 1816, - [1845] = 1815, - [1846] = 1812, - [1847] = 1815, - [1848] = 1812, - [1849] = 1819, - [1850] = 1822, - [1851] = 1816, - [1852] = 1814, - [1853] = 1819, - [1854] = 1822, - [1855] = 1855, - [1856] = 1855, - [1857] = 1857, - [1858] = 1855, - [1859] = 1855, - [1860] = 1855, - [1861] = 1855, - [1862] = 1862, - [1863] = 1857, - [1864] = 1864, - [1865] = 1864, - [1866] = 1866, - [1867] = 1864, - [1868] = 1866, - [1869] = 1866, - [1870] = 1864, - [1871] = 1864, - [1872] = 1866, - [1873] = 1866, - [1874] = 1874, - [1875] = 1874, - [1876] = 1874, - [1877] = 1874, - [1878] = 1874, - [1879] = 1874, - [1880] = 1874, - [1881] = 1874, - [1882] = 1874, - [1883] = 1874, - [1884] = 1874, - [1885] = 1874, - [1886] = 1886, - [1887] = 1887, - [1888] = 1888, - [1889] = 1886, - [1890] = 1887, - [1891] = 1888, - [1892] = 1887, - [1893] = 1893, - [1894] = 1893, - [1895] = 1893, - [1896] = 1887, - [1897] = 1887, - [1898] = 1886, - [1899] = 1888, - [1900] = 1900, - [1901] = 1901, - [1902] = 1902, - [1903] = 1903, + [1823] = 1768, + [1824] = 1765, + [1825] = 1756, + [1826] = 1807, + [1827] = 1776, + [1828] = 1799, + [1829] = 1754, + [1830] = 1799, + [1831] = 1807, + [1832] = 1770, + [1833] = 1833, + [1834] = 1792, + [1835] = 1768, + [1836] = 1765, + [1837] = 1754, + [1838] = 1838, + [1839] = 1772, + [1840] = 1769, + [1841] = 1753, + [1842] = 1799, + [1843] = 1754, + [1844] = 1807, + [1845] = 1757, + [1846] = 1754, + [1847] = 1802, + [1848] = 1813, + [1849] = 1807, + [1850] = 1769, + [1851] = 1769, + [1852] = 1770, + [1853] = 1774, + [1854] = 1770, + [1855] = 1779, + [1856] = 1772, + [1857] = 1753, + [1858] = 1756, + [1859] = 1859, + [1860] = 1762, + [1861] = 1802, + [1862] = 1774, + [1863] = 1757, + [1864] = 1772, + [1865] = 1764, + [1866] = 1775, + [1867] = 1774, + [1868] = 1775, + [1869] = 1775, + [1870] = 1776, + [1871] = 1764, + [1872] = 1774, + [1873] = 1767, + [1874] = 1755, + [1875] = 1875, + [1876] = 1876, + [1877] = 1877, + [1878] = 1877, + [1879] = 1879, + [1880] = 1880, + [1881] = 1881, + [1882] = 1879, + [1883] = 1883, + [1884] = 1880, + [1885] = 1883, + [1886] = 1879, + [1887] = 1881, + [1888] = 1881, + [1889] = 1889, + [1890] = 1879, + [1891] = 1883, + [1892] = 1880, + [1893] = 1880, + [1894] = 1894, + [1895] = 1883, + [1896] = 1880, + [1897] = 1875, + [1898] = 1883, + [1899] = 1881, + [1900] = 1881, + [1901] = 1879, + [1902] = 1880, + [1903] = 1876, [1904] = 1904, [1905] = 1905, - [1906] = 1900, - [1907] = 1907, - [1908] = 1908, - [1909] = 1909, - [1910] = 1910, - [1911] = 1911, - [1912] = 1912, + [1906] = 1905, + [1907] = 1880, + [1908] = 1880, + [1909] = 1905, + [1910] = 1875, + [1911] = 1880, + [1912] = 1880, [1913] = 1913, [1914] = 1914, - [1915] = 1904, + [1915] = 1915, [1916] = 1916, - [1917] = 1909, + [1917] = 1917, [1918] = 1918, - [1919] = 1919, - [1920] = 1913, - [1921] = 1912, - [1922] = 1922, - [1923] = 1901, - [1924] = 1913, + [1919] = 1915, + [1920] = 1920, + [1921] = 1921, + [1922] = 1913, + [1923] = 1915, + [1924] = 1880, [1925] = 1925, - [1926] = 1918, - [1927] = 1927, + [1926] = 1926, + [1927] = 1920, [1928] = 1928, [1929] = 1929, - [1930] = 1912, - [1931] = 1916, - [1932] = 1925, - [1933] = 1928, - [1934] = 1934, - [1935] = 1914, - [1936] = 1934, - [1937] = 1907, - [1938] = 1922, - [1939] = 1918, - [1940] = 1940, - [1941] = 1910, - [1942] = 1942, - [1943] = 1910, - [1944] = 1914, - [1945] = 1945, + [1930] = 1915, + [1931] = 1915, + [1932] = 1913, + [1933] = 1880, + [1934] = 1880, + [1935] = 1920, + [1936] = 1880, + [1937] = 1880, + [1938] = 1938, + [1939] = 1913, + [1940] = 1875, + [1941] = 1913, + [1942] = 1938, + [1943] = 1913, + [1944] = 1880, + [1945] = 1938, [1946] = 1946, - [1947] = 1901, - [1948] = 1908, - [1949] = 1949, - [1950] = 1925, - [1951] = 1900, - [1952] = 1904, - [1953] = 1916, - [1954] = 1940, - [1955] = 1955, - [1956] = 1956, - [1957] = 1918, - [1958] = 1909, - [1959] = 1916, - [1960] = 1945, - [1961] = 1928, - [1962] = 1962, - [1963] = 1900, - [1964] = 1955, + [1947] = 1915, + [1948] = 1926, + [1949] = 1015, + [1950] = 1880, + [1951] = 1880, + [1952] = 1889, + [1953] = 1953, + [1954] = 1880, + [1955] = 1880, + [1956] = 1926, + [1957] = 1880, + [1958] = 1958, + [1959] = 1926, + [1960] = 1876, + [1961] = 1880, + [1962] = 1018, + [1963] = 1963, + [1964] = 1964, [1965] = 1965, - [1966] = 1966, - [1967] = 1967, - [1968] = 1919, - [1969] = 1928, - [1970] = 1946, - [1971] = 1919, - [1972] = 1925, - [1973] = 1916, - [1974] = 1925, - [1975] = 1900, - [1976] = 1962, - [1977] = 1940, - [1978] = 1928, - [1979] = 1904, - [1980] = 1900, + [1966] = 1880, + [1967] = 1926, + [1968] = 1964, + [1969] = 1963, + [1970] = 1970, + [1971] = 1971, + [1972] = 1926, + [1973] = 1970, + [1974] = 1974, + [1975] = 1926, + [1976] = 1970, + [1977] = 1977, + [1978] = 1970, + [1979] = 1979, + [1980] = 1926, [1981] = 1981, - [1982] = 1912, - [1983] = 1945, - [1984] = 1955, - [1985] = 1908, - [1986] = 1901, - [1987] = 1946, - [1988] = 1945, - [1989] = 1940, - [1990] = 1946, - [1991] = 1907, - [1992] = 1992, + [1982] = 1970, + [1983] = 1964, + [1984] = 1970, + [1985] = 1970, + [1986] = 1963, + [1987] = 1987, + [1988] = 1988, + [1989] = 1970, + [1990] = 1990, + [1991] = 1991, + [1992] = 1970, [1993] = 1993, - [1994] = 1908, - [1995] = 1995, - [1996] = 1962, - [1997] = 1946, - [1998] = 1912, - [1999] = 1913, - [2000] = 1945, - [2001] = 1918, - [2002] = 1901, - [2003] = 1914, - [2004] = 1908, - [2005] = 1910, - [2006] = 1907, - [2007] = 1909, - [2008] = 1907, - [2009] = 1913, - [2010] = 1940, - [2011] = 1919, - [2012] = 1955, - [2013] = 1925, - [2014] = 1904, - [2015] = 1914, - [2016] = 1919, - [2017] = 1910, - [2018] = 1909, - [2019] = 1962, - [2020] = 1955, - [2021] = 1962, - [2022] = 1919, + [1994] = 1970, + [1995] = 1926, + [1996] = 1964, + [1997] = 1997, + [1998] = 1964, + [1999] = 1999, + [2000] = 2000, + [2001] = 2000, + [2002] = 2002, + [2003] = 2003, + [2004] = 1926, + [2005] = 1964, + [2006] = 2002, + [2007] = 1981, + [2008] = 2003, + [2009] = 2000, + [2010] = 2000, + [2011] = 1196, + [2012] = 1926, + [2013] = 1981, + [2014] = 2000, + [2015] = 2002, + [2016] = 1926, + [2017] = 2017, + [2018] = 1926, + [2019] = 1926, + [2020] = 1212, + [2021] = 2021, + [2022] = 2022, [2023] = 2023, [2024] = 2024, - [2025] = 2025, - [2026] = 2025, - [2027] = 2027, + [2025] = 2022, + [2026] = 2024, + [2027] = 2002, [2028] = 2028, [2029] = 2023, - [2030] = 2027, - [2031] = 2027, + [2030] = 2030, + [2031] = 2028, [2032] = 2032, - [2033] = 2027, - [2034] = 2034, - [2035] = 2035, - [2036] = 2035, - [2037] = 2034, - [2038] = 2034, - [2039] = 2024, - [2040] = 2034, - [2041] = 2035, - [2042] = 2028, - [2043] = 2028, - [2044] = 2044, - [2045] = 2034, - [2046] = 2035, - [2047] = 2027, - [2048] = 2035, + [2033] = 2023, + [2034] = 1926, + [2035] = 1018, + [2036] = 2036, + [2037] = 1925, + [2038] = 2038, + [2039] = 1132, + [2040] = 2040, + [2041] = 2024, + [2042] = 2042, + [2043] = 2002, + [2044] = 1964, + [2045] = 1138, + [2046] = 1977, + [2047] = 2028, + [2048] = 2002, [2049] = 2028, - [2050] = 2028, - [2051] = 2028, - [2052] = 2052, - [2053] = 2028, + [2050] = 1988, + [2051] = 1964, + [2052] = 2022, + [2053] = 1926, [2054] = 2028, - [2055] = 2023, - [2056] = 2052, - [2057] = 2028, - [2058] = 2058, - [2059] = 2028, - [2060] = 2052, - [2061] = 2061, - [2062] = 2062, - [2063] = 2063, + [2055] = 1965, + [2056] = 1964, + [2057] = 2023, + [2058] = 2024, + [2059] = 1185, + [2060] = 1191, + [2061] = 2022, + [2062] = 1921, + [2063] = 1958, [2064] = 2064, - [2065] = 2065, + [2065] = 2036, [2066] = 2028, - [2067] = 2064, - [2068] = 2028, - [2069] = 2064, - [2070] = 2070, - [2071] = 2071, - [2072] = 2071, - [2073] = 2071, - [2074] = 2070, - [2075] = 2064, - [2076] = 2076, - [2077] = 2077, - [2078] = 2063, - [2079] = 2064, - [2080] = 2064, - [2081] = 2023, - [2082] = 2082, - [2083] = 2071, - [2084] = 2084, - [2085] = 2085, - [2086] = 2028, - [2087] = 2063, - [2088] = 2028, - [2089] = 2071, - [2090] = 2028, - [2091] = 2091, - [2092] = 2070, - [2093] = 2028, + [2067] = 1991, + [2068] = 1964, + [2069] = 1918, + [2070] = 1946, + [2071] = 2022, + [2072] = 2022, + [2073] = 1917, + [2074] = 1916, + [2075] = 1993, + [2076] = 1993, + [2077] = 1991, + [2078] = 2024, + [2079] = 1981, + [2080] = 1015, + [2081] = 1928, + [2082] = 2023, + [2083] = 2083, + [2084] = 1991, + [2085] = 2028, + [2086] = 1958, + [2087] = 2087, + [2088] = 2088, + [2089] = 2089, + [2090] = 2022, + [2091] = 1958, + [2092] = 1977, + [2093] = 1958, [2094] = 2094, - [2095] = 2071, + [2095] = 2028, [2096] = 2096, - [2097] = 2028, - [2098] = 2076, - [2099] = 2028, - [2100] = 2028, - [2101] = 976, + [2097] = 2002, + [2098] = 1965, + [2099] = 2002, + [2100] = 1999, + [2101] = 1990, [2102] = 2028, - [2103] = 2076, - [2104] = 2028, - [2105] = 2105, - [2106] = 2028, - [2107] = 973, - [2108] = 2044, - [2109] = 2076, + [2103] = 2103, + [2104] = 2104, + [2105] = 2094, + [2106] = 2106, + [2107] = 2107, + [2108] = 2108, + [2109] = 2109, [2110] = 2110, - [2111] = 2024, - [2112] = 2110, + [2111] = 2017, + [2112] = 2094, [2113] = 2113, - [2114] = 2076, - [2115] = 2115, - [2116] = 2116, - [2117] = 2117, - [2118] = 2116, - [2119] = 2116, - [2120] = 2120, - [2121] = 2116, - [2122] = 2116, - [2123] = 2110, - [2124] = 2124, - [2125] = 2116, + [2114] = 2114, + [2115] = 2022, + [2116] = 1993, + [2117] = 2094, + [2118] = 2028, + [2119] = 1964, + [2120] = 2094, + [2121] = 2022, + [2122] = 2094, + [2123] = 2022, + [2124] = 2002, + [2125] = 2002, [2126] = 2126, - [2127] = 2076, - [2128] = 2128, - [2129] = 2116, - [2130] = 2128, - [2131] = 2116, - [2132] = 2132, - [2133] = 2133, - [2134] = 2076, - [2135] = 2128, - [2136] = 2136, - [2137] = 2076, - [2138] = 2116, - [2139] = 2139, - [2140] = 2076, - [2141] = 2141, - [2142] = 2028, - [2143] = 2116, - [2144] = 2144, - [2145] = 2076, - [2146] = 2132, - [2147] = 2076, - [2148] = 2076, - [2149] = 2144, - [2150] = 2128, - [2151] = 2144, - [2152] = 2128, - [2153] = 2076, - [2154] = 1206, - [2155] = 2155, - [2156] = 2156, - [2157] = 2144, - [2158] = 2155, - [2159] = 2159, - [2160] = 2156, - [2161] = 2156, - [2162] = 1144, - [2163] = 2144, - [2164] = 2132, - [2165] = 2076, - [2166] = 2128, - [2167] = 2167, - [2168] = 2168, + [2127] = 2127, + [2128] = 1977, + [2129] = 2022, + [2130] = 2130, + [2131] = 2130, + [2132] = 2028, + [2133] = 2002, + [2134] = 1993, + [2135] = 2130, + [2136] = 2130, + [2137] = 1991, + [2138] = 2022, + [2139] = 2130, + [2140] = 2028, + [2141] = 2130, + [2142] = 2130, + [2143] = 2130, + [2144] = 1958, + [2145] = 1958, + [2146] = 2017, + [2147] = 2147, + [2148] = 2148, + [2149] = 2149, + [2150] = 1965, + [2151] = 2130, + [2152] = 2028, + [2153] = 2032, + [2154] = 2028, + [2155] = 2017, + [2156] = 2022, + [2157] = 2028, + [2158] = 2022, + [2159] = 1958, + [2160] = 2022, + [2161] = 2028, + [2162] = 2022, + [2163] = 2022, + [2164] = 2022, + [2165] = 2028, + [2166] = 1988, + [2167] = 2028, + [2168] = 2042, [2169] = 2169, - [2170] = 1029, + [2170] = 2170, [2171] = 2171, - [2172] = 2062, - [2173] = 2173, - [2174] = 2174, - [2175] = 2128, + [2172] = 2170, + [2173] = 2169, + [2174] = 2170, + [2175] = 2028, [2176] = 2176, - [2177] = 2177, - [2178] = 976, - [2179] = 2171, - [2180] = 2156, - [2181] = 2169, - [2182] = 2128, - [2183] = 2091, - [2184] = 2128, - [2185] = 2126, - [2186] = 2141, - [2187] = 2187, - [2188] = 2171, - [2189] = 2189, - [2190] = 2117, - [2191] = 2191, - [2192] = 2174, - [2193] = 2169, - [2194] = 2076, - [2195] = 2174, - [2196] = 2176, - [2197] = 2169, - [2198] = 2076, - [2199] = 2199, - [2200] = 2128, - [2201] = 1030, - [2202] = 2202, - [2203] = 1023, - [2204] = 2169, - [2205] = 2136, - [2206] = 1025, - [2207] = 2207, - [2208] = 2120, - [2209] = 2132, - [2210] = 2120, - [2211] = 2156, - [2212] = 2174, - [2213] = 2065, - [2214] = 2174, - [2215] = 2171, - [2216] = 2191, - [2217] = 2082, + [2177] = 1999, + [2178] = 2171, + [2179] = 2176, + [2180] = 2176, + [2181] = 2176, + [2182] = 2170, + [2183] = 2176, + [2184] = 2169, + [2185] = 2176, + [2186] = 2171, + [2187] = 2171, + [2188] = 2188, + [2189] = 2171, + [2190] = 2188, + [2191] = 2170, + [2192] = 2188, + [2193] = 2171, + [2194] = 2169, + [2195] = 2170, + [2196] = 2171, + [2197] = 2188, + [2198] = 2188, + [2199] = 2188, + [2200] = 2169, + [2201] = 2169, + [2202] = 2188, + [2203] = 2170, + [2204] = 2176, + [2205] = 2022, + [2206] = 2169, + [2207] = 2188, + [2208] = 2169, + [2209] = 2170, + [2210] = 2171, + [2211] = 2170, + [2212] = 1958, + [2213] = 1958, + [2214] = 2171, + [2215] = 2188, + [2216] = 2169, + [2217] = 2171, [2218] = 2176, - [2219] = 2171, - [2220] = 2084, - [2221] = 2156, + [2219] = 2170, + [2220] = 2176, + [2221] = 1958, [2222] = 2096, - [2223] = 2085, - [2224] = 2094, - [2225] = 2169, - [2226] = 2226, - [2227] = 973, - [2228] = 2176, - [2229] = 2176, - [2230] = 2126, - [2231] = 2171, - [2232] = 2232, - [2233] = 2115, - [2234] = 2234, - [2235] = 2235, - [2236] = 2236, - [2237] = 2234, - [2238] = 2171, - [2239] = 2234, - [2240] = 2240, - [2241] = 2169, - [2242] = 2128, - [2243] = 2156, - [2244] = 2126, - [2245] = 2156, - [2246] = 2246, - [2247] = 2247, - [2248] = 2169, - [2249] = 2167, - [2250] = 2171, - [2251] = 2169, - [2252] = 2169, - [2253] = 2253, - [2254] = 2168, - [2255] = 2255, - [2256] = 2120, - [2257] = 2257, - [2258] = 2258, - [2259] = 2156, - [2260] = 2141, - [2261] = 2261, - [2262] = 2262, - [2263] = 2096, - [2264] = 2117, - [2265] = 2156, - [2266] = 2171, - [2267] = 2234, - [2268] = 2268, - [2269] = 2269, - [2270] = 2096, - [2271] = 2096, - [2272] = 2171, - [2273] = 2234, - [2274] = 2234, - [2275] = 2275, - [2276] = 2276, - [2277] = 2168, - [2278] = 2120, - [2279] = 2279, - [2280] = 2275, - [2281] = 2126, - [2282] = 2169, - [2283] = 2275, - [2284] = 2096, - [2285] = 2275, - [2286] = 2096, - [2287] = 2117, - [2288] = 2275, - [2289] = 2275, - [2290] = 2156, - [2291] = 2141, - [2292] = 2275, - [2293] = 2169, - [2294] = 2171, - [2295] = 2171, + [2223] = 2223, + [2224] = 2223, + [2225] = 2223, + [2226] = 2223, + [2227] = 2223, + [2228] = 2223, + [2229] = 2223, + [2230] = 2223, + [2231] = 2223, + [2232] = 2223, + [2233] = 2233, + [2234] = 2233, + [2235] = 2233, + [2236] = 2233, + [2237] = 2233, + [2238] = 2233, + [2239] = 2233, + [2240] = 2233, + [2241] = 2233, + [2242] = 2242, + [2243] = 2243, + [2244] = 2243, + [2245] = 2243, + [2246] = 2243, + [2247] = 2243, + [2248] = 2248, + [2249] = 2249, + [2250] = 2248, + [2251] = 2251, + [2252] = 2249, + [2253] = 2248, + [2254] = 2254, + [2255] = 2248, + [2256] = 2249, + [2257] = 2248, + [2258] = 2249, + [2259] = 2249, + [2260] = 2251, + [2261] = 2248, + [2262] = 2251, + [2263] = 2249, + [2264] = 2248, + [2265] = 2248, + [2266] = 2248, + [2267] = 2249, + [2268] = 2249, + [2269] = 2249, + [2270] = 2251, + [2271] = 2248, + [2272] = 2248, + [2273] = 2249, + [2274] = 2248, + [2275] = 2251, + [2276] = 2248, + [2277] = 2249, + [2278] = 2249, + [2279] = 2248, + [2280] = 2249, + [2281] = 2249, + [2282] = 2248, + [2283] = 2251, + [2284] = 2251, + [2285] = 2249, + [2286] = 2249, + [2287] = 2248, + [2288] = 323, + [2289] = 2289, + [2290] = 2290, + [2291] = 327, + [2292] = 2292, + [2293] = 2293, + [2294] = 2294, + [2295] = 2295, [2296] = 2296, - [2297] = 2275, - [2298] = 2298, - [2299] = 2275, - [2300] = 2169, - [2301] = 2169, - [2302] = 2096, - [2303] = 2168, - [2304] = 2136, - [2305] = 2171, - [2306] = 2171, - [2307] = 2169, - [2308] = 2202, - [2309] = 2171, - [2310] = 2171, - [2311] = 2169, - [2312] = 2169, - [2313] = 2169, - [2314] = 2171, - [2315] = 2171, - [2316] = 2177, + [2297] = 2297, + [2298] = 2030, + [2299] = 2299, + [2300] = 294, + [2301] = 296, + [2302] = 2302, + [2303] = 2303, + [2304] = 299, + [2305] = 2305, + [2306] = 2064, + [2307] = 323, + [2308] = 301, + [2309] = 2309, + [2310] = 2038, + [2311] = 327, + [2312] = 2312, + [2313] = 2313, + [2314] = 2314, + [2315] = 294, + [2316] = 2316, [2317] = 2317, [2318] = 2318, [2319] = 2319, [2320] = 2320, [2321] = 2321, - [2322] = 2096, - [2323] = 2319, - [2324] = 2318, - [2325] = 2319, - [2326] = 2321, - [2327] = 2321, - [2328] = 2317, - [2329] = 2319, - [2330] = 2320, - [2331] = 2167, - [2332] = 2320, - [2333] = 2317, - [2334] = 2169, - [2335] = 2319, - [2336] = 2320, - [2337] = 2317, - [2338] = 2317, - [2339] = 2320, - [2340] = 2321, - [2341] = 2096, - [2342] = 2319, - [2343] = 2319, - [2344] = 2258, - [2345] = 2318, - [2346] = 2317, - [2347] = 2317, - [2348] = 2319, - [2349] = 2319, - [2350] = 2321, - [2351] = 2318, - [2352] = 2171, - [2353] = 2320, - [2354] = 2319, - [2355] = 2318, - [2356] = 2318, - [2357] = 2318, - [2358] = 2096, - [2359] = 2321, - [2360] = 2317, - [2361] = 2321, - [2362] = 2320, - [2363] = 2320, - [2364] = 2318, - [2365] = 2317, - [2366] = 2320, - [2367] = 2321, - [2368] = 2321, - [2369] = 2318, - [2370] = 2320, + [2322] = 2322, + [2323] = 2323, + [2324] = 2324, + [2325] = 2325, + [2326] = 2326, + [2327] = 2327, + [2328] = 2328, + [2329] = 2329, + [2330] = 2330, + [2331] = 1066, + [2332] = 1067, + [2333] = 2333, + [2334] = 304, + [2335] = 2335, + [2336] = 2336, + [2337] = 1069, + [2338] = 2338, + [2339] = 2339, + [2340] = 2340, + [2341] = 2341, + [2342] = 2342, + [2343] = 2343, + [2344] = 2126, + [2345] = 2345, + [2346] = 2346, + [2347] = 2347, + [2348] = 2348, + [2349] = 2110, + [2350] = 2109, + [2351] = 2108, + [2352] = 2104, + [2353] = 2353, + [2354] = 2107, + [2355] = 2106, + [2356] = 2356, + [2357] = 2357, + [2358] = 2103, + [2359] = 2359, + [2360] = 2360, + [2361] = 2361, + [2362] = 1062, + [2363] = 2363, + [2364] = 2364, + [2365] = 2365, + [2366] = 2366, + [2367] = 2336, + [2368] = 2368, + [2369] = 2369, + [2370] = 2336, [2371] = 2371, - [2372] = 2371, - [2373] = 2371, - [2374] = 2371, - [2375] = 2371, - [2376] = 2371, - [2377] = 2371, - [2378] = 2371, - [2379] = 2371, - [2380] = 2371, + [2372] = 2372, + [2373] = 2373, + [2374] = 2374, + [2375] = 2336, + [2376] = 2376, + [2377] = 2377, + [2378] = 2328, + [2379] = 2089, + [2380] = 2088, [2381] = 2381, - [2382] = 2381, - [2383] = 2381, - [2384] = 2381, - [2385] = 2381, - [2386] = 2386, - [2387] = 2381, - [2388] = 2381, - [2389] = 2381, - [2390] = 2381, + [2382] = 2382, + [2383] = 2383, + [2384] = 2384, + [2385] = 2385, + [2386] = 2087, + [2387] = 2387, + [2388] = 2388, + [2389] = 2389, + [2390] = 2390, [2391] = 2391, - [2392] = 2391, - [2393] = 2391, - [2394] = 2391, - [2395] = 2391, + [2392] = 2392, + [2393] = 2393, + [2394] = 2394, + [2395] = 2395, [2396] = 2396, - [2397] = 2396, - [2398] = 2396, + [2397] = 2397, + [2398] = 2398, [2399] = 2399, - [2400] = 2400, + [2400] = 2336, [2401] = 2401, - [2402] = 2396, - [2403] = 2400, - [2404] = 2399, - [2405] = 2396, - [2406] = 2400, - [2407] = 2400, - [2408] = 2400, - [2409] = 2396, - [2410] = 2396, - [2411] = 2399, - [2412] = 2399, - [2413] = 2396, - [2414] = 2396, - [2415] = 2399, - [2416] = 2400, - [2417] = 2396, - [2418] = 2400, - [2419] = 2400, - [2420] = 2396, - [2421] = 2399, - [2422] = 2400, - [2423] = 2396, - [2424] = 2400, - [2425] = 2400, - [2426] = 2400, - [2427] = 2396, - [2428] = 2400, - [2429] = 2399, - [2430] = 2400, - [2431] = 2400, - [2432] = 2396, - [2433] = 2396, - [2434] = 2396, - [2435] = 2400, - [2436] = 304, - [2437] = 2437, - [2438] = 314, + [2402] = 2402, + [2403] = 2403, + [2404] = 2404, + [2405] = 2405, + [2406] = 2406, + [2407] = 2407, + [2408] = 2408, + [2409] = 2409, + [2410] = 2410, + [2411] = 2411, + [2412] = 2412, + [2413] = 2413, + [2414] = 2414, + [2415] = 2415, + [2416] = 2416, + [2417] = 2417, + [2418] = 2418, + [2419] = 2419, + [2420] = 2420, + [2421] = 2421, + [2422] = 2422, + [2423] = 2336, + [2424] = 2424, + [2425] = 2336, + [2426] = 2426, + [2427] = 2427, + [2428] = 2428, + [2429] = 2429, + [2430] = 2430, + [2431] = 2328, + [2432] = 2432, + [2433] = 316, + [2434] = 296, + [2435] = 299, + [2436] = 2328, + [2437] = 2328, + [2438] = 2336, [2439] = 2439, [2440] = 2440, [2441] = 2441, - [2442] = 2442, - [2443] = 2443, - [2444] = 2444, - [2445] = 2445, + [2442] = 2336, + [2443] = 305, + [2444] = 307, + [2445] = 1051, [2446] = 2446, - [2447] = 294, - [2448] = 304, - [2449] = 2449, - [2450] = 2207, - [2451] = 2226, - [2452] = 301, + [2447] = 2447, + [2448] = 2448, + [2449] = 312, + [2450] = 2450, + [2451] = 2447, + [2452] = 2452, [2453] = 2453, - [2454] = 2187, - [2455] = 314, + [2454] = 2454, + [2455] = 2455, [2456] = 2456, [2457] = 2457, - [2458] = 295, + [2458] = 2458, [2459] = 2459, - [2460] = 293, - [2461] = 2461, - [2462] = 2462, + [2460] = 2460, + [2461] = 2458, + [2462] = 2459, [2463] = 2463, - [2464] = 2464, + [2464] = 309, [2465] = 2465, - [2466] = 2466, + [2466] = 2450, [2467] = 2467, [2468] = 2468, - [2469] = 294, - [2470] = 1229, + [2469] = 2469, + [2470] = 2470, [2471] = 2471, [2472] = 2472, [2473] = 2473, [2474] = 2474, - [2475] = 2475, - [2476] = 2476, + [2475] = 2463, + [2476] = 2468, [2477] = 2477, [2478] = 2478, - [2479] = 2479, - [2480] = 2480, - [2481] = 2481, + [2479] = 2469, + [2480] = 2472, + [2481] = 2478, [2482] = 2482, [2483] = 2483, [2484] = 2484, [2485] = 2485, - [2486] = 295, + [2486] = 2486, [2487] = 2487, - [2488] = 311, - [2489] = 293, - [2490] = 2490, - [2491] = 2491, + [2488] = 2488, + [2489] = 2483, + [2490] = 2488, + [2491] = 2465, [2492] = 2492, - [2493] = 2493, - [2494] = 2485, + [2493] = 2487, + [2494] = 2492, [2495] = 2495, [2496] = 2496, [2497] = 2497, [2498] = 2498, [2499] = 2499, - [2500] = 2269, - [2501] = 2257, - [2502] = 1228, + [2500] = 2500, + [2501] = 2501, + [2502] = 2502, [2503] = 2503, [2504] = 2504, - [2505] = 2505, - [2506] = 1220, - [2507] = 2507, - [2508] = 2246, - [2509] = 2485, - [2510] = 2510, + [2505] = 2453, + [2506] = 2506, + [2507] = 2292, + [2508] = 2508, + [2509] = 2509, + [2510] = 2467, [2511] = 2511, - [2512] = 2497, + [2512] = 2512, [2513] = 2513, - [2514] = 2261, - [2515] = 2255, + [2514] = 2514, + [2515] = 2515, [2516] = 2516, - [2517] = 2497, - [2518] = 2518, - [2519] = 2519, - [2520] = 2520, - [2521] = 2485, - [2522] = 1230, - [2523] = 2523, + [2517] = 307, + [2518] = 305, + [2519] = 331, + [2520] = 2496, + [2521] = 2521, + [2522] = 2502, + [2523] = 2503, [2524] = 2524, - [2525] = 2525, - [2526] = 2526, - [2527] = 2527, + [2525] = 2504, + [2526] = 2448, + [2527] = 2506, [2528] = 2528, - [2529] = 2529, + [2529] = 2521, [2530] = 2530, [2531] = 2531, - [2532] = 2532, - [2533] = 2485, - [2534] = 2485, + [2532] = 2516, + [2533] = 2506, + [2534] = 2504, [2535] = 2535, [2536] = 2536, [2537] = 2537, [2538] = 2538, - [2539] = 2539, + [2539] = 2516, [2540] = 2540, [2541] = 2541, - [2542] = 2497, + [2542] = 2542, [2543] = 2543, - [2544] = 2253, - [2545] = 2268, - [2546] = 2546, - [2547] = 2247, - [2548] = 2485, + [2544] = 334, + [2545] = 2545, + [2546] = 2515, + [2547] = 2503, + [2548] = 2502, [2549] = 2549, [2550] = 2550, - [2551] = 2551, - [2552] = 2497, - [2553] = 2553, - [2554] = 2554, - [2555] = 2555, + [2551] = 2496, + [2552] = 2492, + [2553] = 2487, + [2554] = 2488, + [2555] = 2483, [2556] = 2556, - [2557] = 2557, - [2558] = 2558, - [2559] = 2559, - [2560] = 2485, - [2561] = 1222, - [2562] = 312, + [2557] = 2478, + [2558] = 2472, + [2559] = 2469, + [2560] = 2535, + [2561] = 2457, + [2562] = 2562, [2563] = 2563, [2564] = 2564, - [2565] = 329, - [2566] = 2566, - [2567] = 2567, + [2565] = 2565, + [2566] = 2448, + [2567] = 2452, [2568] = 2568, [2569] = 2569, - [2570] = 2570, - [2571] = 2571, - [2572] = 2572, - [2573] = 2232, + [2570] = 2515, + [2571] = 2516, + [2572] = 2515, + [2573] = 2514, [2574] = 2574, [2575] = 2575, - [2576] = 2576, - [2577] = 2577, - [2578] = 305, - [2579] = 2236, - [2580] = 2235, - [2581] = 2581, - [2582] = 2582, - [2583] = 2583, - [2584] = 2584, - [2585] = 2585, - [2586] = 2586, - [2587] = 2587, + [2576] = 2293, + [2577] = 2468, + [2578] = 331, + [2579] = 2297, + [2580] = 2296, + [2581] = 316, + [2582] = 2453, + [2583] = 2448, + [2584] = 2452, + [2585] = 2295, + [2586] = 2467, + [2587] = 304, [2588] = 2588, [2589] = 2589, - [2590] = 2485, + [2590] = 2536, [2591] = 2591, - [2592] = 2592, - [2593] = 2593, - [2594] = 2594, - [2595] = 2595, - [2596] = 2596, + [2592] = 2537, + [2593] = 321, + [2594] = 2463, + [2595] = 2467, + [2596] = 2538, [2597] = 2597, - [2598] = 2598, - [2599] = 2599, - [2600] = 2600, + [2598] = 2540, + [2599] = 2459, + [2600] = 2448, [2601] = 2601, - [2602] = 2602, - [2603] = 2603, - [2604] = 323, - [2605] = 2603, - [2606] = 2597, - [2607] = 2607, - [2608] = 2596, - [2609] = 2609, - [2610] = 2610, - [2611] = 2611, - [2612] = 2612, - [2613] = 2613, - [2614] = 2614, - [2615] = 333, + [2602] = 2458, + [2603] = 309, + [2604] = 2604, + [2605] = 2515, + [2606] = 2606, + [2607] = 2516, + [2608] = 2608, + [2609] = 2453, + [2610] = 2467, + [2611] = 335, + [2612] = 2457, + [2613] = 2453, + [2614] = 2456, + [2615] = 2455, [2616] = 2616, [2617] = 2617, [2618] = 2618, - [2619] = 2619, - [2620] = 2620, - [2621] = 2621, - [2622] = 2622, - [2623] = 2623, - [2624] = 2607, + [2619] = 2454, + [2620] = 2474, + [2621] = 2521, + [2622] = 2456, + [2623] = 2455, + [2624] = 2540, [2625] = 2625, - [2626] = 2626, - [2627] = 2627, - [2628] = 2628, - [2629] = 2620, + [2626] = 335, + [2627] = 334, + [2628] = 2514, + [2629] = 2448, [2630] = 2630, - [2631] = 2631, - [2632] = 2632, + [2631] = 2530, + [2632] = 2535, [2633] = 2633, - [2634] = 2634, - [2635] = 2445, + [2634] = 312, + [2635] = 2635, [2636] = 2636, - [2637] = 2637, + [2637] = 2536, [2638] = 2638, - [2639] = 2596, - [2640] = 2640, - [2641] = 2641, + [2639] = 2537, + [2640] = 2530, + [2641] = 321, [2642] = 2642, - [2643] = 2643, - [2644] = 2443, + [2643] = 2474, + [2644] = 2644, [2645] = 2645, - [2646] = 2621, - [2647] = 2640, - [2648] = 2642, - [2649] = 2441, - [2650] = 2650, - [2651] = 2651, - [2652] = 2652, - [2653] = 2637, - [2654] = 2607, - [2655] = 2597, - [2656] = 2656, - [2657] = 2657, - [2658] = 2658, - [2659] = 2618, - [2660] = 2660, - [2661] = 2661, + [2646] = 2646, + [2647] = 2538, + [2648] = 2648, + [2649] = 2649, + [2650] = 2454, + [2651] = 2314, + [2652] = 2504, + [2653] = 2503, + [2654] = 2502, + [2655] = 2506, + [2656] = 2313, + [2657] = 2496, + [2658] = 2492, + [2659] = 2659, + [2660] = 2487, + [2661] = 2488, [2662] = 2662, [2663] = 2663, - [2664] = 2664, - [2665] = 321, - [2666] = 2666, + [2664] = 2483, + [2665] = 2447, + [2666] = 2478, [2667] = 2667, - [2668] = 2634, - [2669] = 323, - [2670] = 2444, - [2671] = 326, - [2672] = 2672, - [2673] = 2673, - [2674] = 2674, - [2675] = 333, - [2676] = 2607, - [2677] = 2597, - [2678] = 2618, - [2679] = 2679, + [2668] = 2472, + [2669] = 2667, + [2670] = 2469, + [2671] = 2468, + [2672] = 2659, + [2673] = 2474, + [2674] = 2030, + [2675] = 2667, + [2676] = 2676, + [2677] = 2677, + [2678] = 2463, + [2679] = 2459, [2680] = 2680, - [2681] = 2620, + [2681] = 2458, [2682] = 2682, [2683] = 2683, - [2684] = 2619, - [2685] = 2685, - [2686] = 2686, - [2687] = 2637, - [2688] = 2599, - [2689] = 2603, - [2690] = 2640, - [2691] = 2595, - [2692] = 2599, - [2693] = 2622, - [2694] = 2680, - [2695] = 2695, - [2696] = 2696, - [2697] = 329, - [2698] = 312, - [2699] = 321, - [2700] = 2594, - [2701] = 2656, - [2702] = 2628, - [2703] = 2632, - [2704] = 2704, - [2705] = 2614, - [2706] = 2706, - [2707] = 2613, + [2684] = 2684, + [2685] = 2682, + [2686] = 2667, + [2687] = 2687, + [2688] = 2521, + [2689] = 2535, + [2690] = 2536, + [2691] = 2537, + [2692] = 2692, + [2693] = 2465, + [2694] = 2038, + [2695] = 2692, + [2696] = 2514, + [2697] = 2697, + [2698] = 2538, + [2699] = 2540, + [2700] = 2700, + [2701] = 2441, + [2702] = 2450, + [2703] = 2703, + [2704] = 2309, + [2705] = 2305, + [2706] = 2692, + [2707] = 2682, [2708] = 2708, - [2709] = 2637, - [2710] = 2611, - [2711] = 2622, - [2712] = 2712, - [2713] = 2594, + [2709] = 2709, + [2710] = 2440, + [2711] = 2302, + [2712] = 2452, + [2713] = 2713, [2714] = 2714, - [2715] = 2599, - [2716] = 2716, - [2717] = 2717, - [2718] = 2628, - [2719] = 2633, + [2715] = 2715, + [2716] = 2530, + [2717] = 2540, + [2718] = 2538, + [2719] = 2477, [2720] = 2720, - [2721] = 2637, - [2722] = 2636, - [2723] = 2641, - [2724] = 2617, - [2725] = 2603, - [2726] = 2632, - [2727] = 2727, - [2728] = 2728, - [2729] = 2643, - [2730] = 2633, - [2731] = 2638, - [2732] = 2656, - [2733] = 2733, - [2734] = 2667, - [2735] = 2614, - [2736] = 327, - [2737] = 2666, - [2738] = 2738, - [2739] = 2636, - [2740] = 2740, - [2741] = 2741, - [2742] = 309, - [2743] = 2642, - [2744] = 2637, - [2745] = 2641, - [2746] = 2667, - [2747] = 2440, - [2748] = 2748, - [2749] = 2740, - [2750] = 2603, - [2751] = 2751, - [2752] = 2748, - [2753] = 2658, - [2754] = 2695, - [2755] = 2634, - [2756] = 2666, - [2757] = 2695, - [2758] = 2664, - [2759] = 2759, - [2760] = 2680, - [2761] = 2761, - [2762] = 2607, - [2763] = 2619, - [2764] = 2740, - [2765] = 2748, - [2766] = 326, - [2767] = 2597, - [2768] = 2768, - [2769] = 2769, - [2770] = 2643, - [2771] = 2771, - [2772] = 2772, - [2773] = 2613, - [2774] = 2774, - [2775] = 2775, - [2776] = 2611, + [2721] = 2721, + [2722] = 2537, + [2723] = 2536, + [2724] = 2312, + [2725] = 2535, + [2726] = 2713, + [2727] = 2713, + [2728] = 2692, + [2729] = 2729, + [2730] = 2457, + [2731] = 2506, + [2732] = 2504, + [2733] = 2720, + [2734] = 2452, + [2735] = 2474, + [2736] = 2503, + [2737] = 2502, + [2738] = 2692, + [2739] = 2714, + [2740] = 2521, + [2741] = 2531, + [2742] = 2514, + [2743] = 2530, + [2744] = 2496, + [2745] = 2492, + [2746] = 2299, + [2747] = 2303, + [2748] = 2487, + [2749] = 2488, + [2750] = 2682, + [2751] = 2454, + [2752] = 2483, + [2753] = 2478, + [2754] = 2754, + [2755] = 2692, + [2756] = 2472, + [2757] = 2469, + [2758] = 2455, + [2759] = 2468, + [2760] = 2456, + [2761] = 2667, + [2762] = 2463, + [2763] = 2459, + [2764] = 2458, + [2765] = 2457, + [2766] = 2766, + [2767] = 2692, + [2768] = 2441, + [2769] = 2713, + [2770] = 2770, + [2771] = 2456, + [2772] = 2455, + [2773] = 2440, + [2774] = 2454, + [2775] = 2064, + [2776] = 2682, [2777] = 2777, - [2778] = 2778, + [2778] = 2713, [2779] = 2779, - [2780] = 2780, - [2781] = 2595, - [2782] = 2617, + [2780] = 2441, + [2781] = 301, + [2782] = 2335, [2783] = 2783, - [2784] = 2621, - [2785] = 2785, - [2786] = 309, + [2784] = 2784, + [2785] = 2420, + [2786] = 2454, [2787] = 2787, - [2788] = 2658, - [2789] = 311, - [2790] = 2599, - [2791] = 2791, - [2792] = 2683, - [2793] = 305, - [2794] = 2794, - [2795] = 2795, - [2796] = 2672, - [2797] = 2664, - [2798] = 327, - [2799] = 2799, - [2800] = 2620, - [2801] = 2622, - [2802] = 2594, - [2803] = 2628, - [2804] = 2804, - [2805] = 2632, - [2806] = 2633, - [2807] = 2807, - [2808] = 2636, - [2809] = 2641, - [2810] = 2683, + [2788] = 2788, + [2789] = 2416, + [2790] = 2441, + [2791] = 2440, + [2792] = 2415, + [2793] = 2784, + [2794] = 2414, + [2795] = 2450, + [2796] = 2413, + [2797] = 2407, + [2798] = 2405, + [2799] = 2788, + [2800] = 2441, + [2801] = 2404, + [2802] = 2403, + [2803] = 2401, + [2804] = 2399, + [2805] = 2398, + [2806] = 2784, + [2807] = 2455, + [2808] = 2521, + [2809] = 2456, + [2810] = 2810, [2811] = 2811, - [2812] = 2643, - [2813] = 2595, - [2814] = 2462, - [2815] = 2815, - [2816] = 2695, - [2817] = 2634, - [2818] = 2818, - [2819] = 2656, - [2820] = 2614, - [2821] = 2821, - [2822] = 2748, - [2823] = 2815, - [2824] = 2638, - [2825] = 2613, - [2826] = 2826, - [2827] = 2680, - [2828] = 2672, - [2829] = 2658, - [2830] = 2461, - [2831] = 2664, - [2832] = 2666, - [2833] = 2611, - [2834] = 2740, - [2835] = 2667, - [2836] = 2656, - [2837] = 2619, - [2838] = 2838, - [2839] = 2207, - [2840] = 2449, - [2841] = 2841, - [2842] = 2459, - [2843] = 2838, - [2844] = 2618, - [2845] = 2226, - [2846] = 2841, - [2847] = 2847, - [2848] = 2621, - [2849] = 2740, - [2850] = 2618, - [2851] = 2621, - [2852] = 2596, - [2853] = 2815, - [2854] = 2642, - [2855] = 2855, - [2856] = 2640, - [2857] = 2617, - [2858] = 2847, - [2859] = 2634, - [2860] = 2804, - [2861] = 2640, - [2862] = 2596, - [2863] = 2863, - [2864] = 2815, - [2865] = 2680, - [2866] = 2619, - [2867] = 2483, - [2868] = 2841, - [2869] = 2869, - [2870] = 2686, - [2871] = 2871, - [2872] = 2667, - [2873] = 2617, - [2874] = 2484, - [2875] = 2666, - [2876] = 2876, - [2877] = 2838, - [2878] = 2456, - [2879] = 2453, - [2880] = 2446, - [2881] = 2881, - [2882] = 2595, - [2883] = 2642, - [2884] = 2804, - [2885] = 2695, - [2886] = 2748, - [2887] = 2484, - [2888] = 2631, - [2889] = 2483, - [2890] = 2890, - [2891] = 2804, - [2892] = 2804, - [2893] = 2187, - [2894] = 2799, - [2895] = 2457, - [2896] = 2896, - [2897] = 2881, - [2898] = 2898, - [2899] = 2899, - [2900] = 2900, - [2901] = 2611, - [2902] = 2902, - [2903] = 2613, - [2904] = 2614, - [2905] = 2905, - [2906] = 2838, - [2907] = 2907, - [2908] = 2838, - [2909] = 2841, - [2910] = 2620, - [2911] = 2841, - [2912] = 2912, - [2913] = 2622, - [2914] = 2594, - [2915] = 2628, - [2916] = 2632, - [2917] = 2633, - [2918] = 2636, - [2919] = 2641, - [2920] = 2643, - [2921] = 2815, - [2922] = 2922, - [2923] = 2804, - [2924] = 2658, - [2925] = 2664, - [2926] = 2804, - [2927] = 2656, - [2928] = 2483, - [2929] = 2618, - [2930] = 2930, - [2931] = 2568, - [2932] = 2507, - [2933] = 2933, - [2934] = 2934, - [2935] = 2738, - [2936] = 2510, - [2937] = 2504, - [2938] = 2938, - [2939] = 2922, - [2940] = 2940, - [2941] = 2484, - [2942] = 2942, - [2943] = 2621, - [2944] = 2572, - [2945] = 2740, - [2946] = 2574, - [2947] = 2570, - [2948] = 2569, - [2949] = 2686, - [2950] = 2563, - [2951] = 2559, - [2952] = 2558, - [2953] = 2556, - [2954] = 2555, - [2955] = 2554, - [2956] = 2553, - [2957] = 2487, - [2958] = 2503, - [2959] = 2631, - [2960] = 2960, - [2961] = 2481, - [2962] = 2962, - [2963] = 2549, - [2964] = 2546, - [2965] = 2965, - [2966] = 2584, - [2967] = 2967, - [2968] = 2583, - [2969] = 2236, - [2970] = 2593, - [2971] = 2592, - [2972] = 2535, - [2973] = 2532, - [2974] = 2974, - [2975] = 2591, - [2976] = 2483, - [2977] = 2589, - [2978] = 2978, - [2979] = 2979, - [2980] = 2980, - [2981] = 2933, - [2982] = 2596, - [2983] = 2484, - [2984] = 2588, - [2985] = 2595, - [2986] = 2586, - [2987] = 2484, - [2988] = 2232, - [2989] = 2585, - [2990] = 2575, + [2812] = 2457, + [2813] = 2440, + [2814] = 1051, + [2815] = 2395, + [2816] = 2393, + [2817] = 2392, + [2818] = 2391, + [2819] = 2390, + [2820] = 2388, + [2821] = 2385, + [2822] = 2384, + [2823] = 2383, + [2824] = 2824, + [2825] = 2530, + [2826] = 2382, + [2827] = 2381, + [2828] = 2377, + [2829] = 2376, + [2830] = 2087, + [2831] = 2088, + [2832] = 2089, + [2833] = 2784, + [2834] = 2783, + [2835] = 2422, + [2836] = 2836, + [2837] = 2837, + [2838] = 2458, + [2839] = 2839, + [2840] = 2459, + [2841] = 2426, + [2842] = 2427, + [2843] = 2428, + [2844] = 2417, + [2845] = 2412, + [2846] = 2463, + [2847] = 2514, + [2848] = 2468, + [2849] = 2849, + [2850] = 2429, + [2851] = 2486, + [2852] = 2469, + [2853] = 2853, + [2854] = 2697, + [2855] = 2784, + [2856] = 2472, + [2857] = 2411, + [2858] = 2410, + [2859] = 2409, + [2860] = 2408, + [2861] = 2406, + [2862] = 2402, + [2863] = 2397, + [2864] = 2396, + [2865] = 2394, + [2866] = 2321, + [2867] = 2430, + [2868] = 2868, + [2869] = 2432, + [2870] = 2387, + [2871] = 2478, + [2872] = 2872, + [2873] = 2483, + [2874] = 2488, + [2875] = 2357, + [2876] = 2356, + [2877] = 2353, + [2878] = 2347, + [2879] = 2346, + [2880] = 2441, + [2881] = 2440, + [2882] = 2439, + [2883] = 2345, + [2884] = 2389, + [2885] = 2465, + [2886] = 2343, + [2887] = 2342, + [2888] = 2341, + [2889] = 2329, + [2890] = 2474, + [2891] = 2327, + [2892] = 2784, + [2893] = 2326, + [2894] = 2323, + [2895] = 2320, + [2896] = 2477, + [2897] = 2319, + [2898] = 2318, + [2899] = 2317, + [2900] = 301, + [2901] = 2901, + [2902] = 2316, + [2903] = 2330, + [2904] = 2333, + [2905] = 2487, + [2906] = 2492, + [2907] = 2496, + [2908] = 2502, + [2909] = 2503, + [2910] = 2788, + [2911] = 2531, + [2912] = 2849, + [2913] = 2504, + [2914] = 2506, + [2915] = 2915, + [2916] = 2418, + [2917] = 2424, + [2918] = 2322, + [2919] = 2348, + [2920] = 2788, + [2921] = 2872, + [2922] = 2642, + [2923] = 2923, + [2924] = 2924, + [2925] = 2421, + [2926] = 2535, + [2927] = 2784, + [2928] = 2536, + [2929] = 2537, + [2930] = 2538, + [2931] = 2419, + [2932] = 2540, + [2933] = 1062, + [2934] = 2452, + [2935] = 2788, + [2936] = 2783, + [2937] = 2324, + [2938] = 2447, + [2939] = 2788, + [2940] = 2103, + [2941] = 2106, + [2942] = 2107, + [2943] = 2338, + [2944] = 2339, + [2945] = 2783, + [2946] = 2340, + [2947] = 2108, + [2948] = 2948, + [2949] = 2126, + [2950] = 2486, + [2951] = 2642, + [2952] = 2872, + [2953] = 2359, + [2954] = 2954, + [2955] = 2955, + [2956] = 2360, + [2957] = 2361, + [2958] = 2531, + [2959] = 2783, + [2960] = 1066, + [2961] = 2110, + [2962] = 2363, + [2963] = 2364, + [2964] = 2109, + [2965] = 1069, + [2966] = 2104, + [2967] = 2575, + [2968] = 2366, + [2969] = 2783, + [2970] = 1067, + [2971] = 2971, + [2972] = 2853, + [2973] = 2697, + [2974] = 2365, + [2975] = 2325, + [2976] = 2439, + [2977] = 2374, + [2978] = 2389, + [2979] = 2373, + [2980] = 2372, + [2981] = 2868, + [2982] = 2371, + [2983] = 2369, + [2984] = 2754, + [2985] = 2368, + [2986] = 2575, + [2987] = 2440, + [2988] = 2988, + [2989] = 2989, + [2990] = 2990, [2991] = 2991, - [2992] = 2582, - [2993] = 2518, - [2994] = 2235, - [2995] = 2933, - [2996] = 2581, - [2997] = 2571, - [2998] = 2567, - [2999] = 2999, - [3000] = 2566, - [3001] = 2695, - [3002] = 3002, - [3003] = 2942, - [3004] = 2978, - [3005] = 2900, - [3006] = 2979, - [3007] = 2942, - [3008] = 2516, - [3009] = 2519, - [3010] = 2748, - [3011] = 2631, - [3012] = 1220, - [3013] = 2978, - [3014] = 2619, - [3015] = 2940, - [3016] = 2680, - [3017] = 2634, - [3018] = 2640, - [3019] = 2642, - [3020] = 2575, - [3021] = 2491, - [3022] = 2484, - [3023] = 2483, - [3024] = 2978, - [3025] = 2483, - [3026] = 2617, - [3027] = 2253, - [3028] = 2268, - [3029] = 2247, - [3030] = 2577, - [3031] = 2576, - [3032] = 2667, - [3033] = 2666, - [3034] = 2664, - [3035] = 2658, - [3036] = 2467, - [3037] = 2643, - [3038] = 1222, - [3039] = 2493, - [3040] = 2641, - [3041] = 2636, - [3042] = 2633, - [3043] = 2632, - [3044] = 2482, - [3045] = 2728, - [3046] = 2498, - [3047] = 2564, - [3048] = 2499, - [3049] = 2587, - [3050] = 2628, - [3051] = 2933, - [3052] = 2978, - [3053] = 2683, - [3054] = 2505, - [3055] = 2551, - [3056] = 2550, - [3057] = 2543, - [3058] = 1229, - [3059] = 2602, - [3060] = 2933, - [3061] = 2594, - [3062] = 2622, - [3063] = 3063, + [2992] = 2569, + [2993] = 2993, + [2994] = 322, + [2995] = 2556, + [2996] = 2996, + [2997] = 2997, + [2998] = 2452, + [2999] = 311, + [3000] = 314, + [3001] = 3001, + [3002] = 2322, + [3003] = 3003, + [3004] = 2617, + [3005] = 3005, + [3006] = 2618, + [3007] = 2441, + [3008] = 3001, + [3009] = 3001, + [3010] = 315, + [3011] = 2715, + [3012] = 2575, + [3013] = 3013, + [3014] = 2440, + [3015] = 3015, + [3016] = 2540, + [3017] = 3017, + [3018] = 2538, + [3019] = 3001, + [3020] = 3020, + [3021] = 2530, + [3022] = 3022, + [3023] = 320, + [3024] = 2541, + [3025] = 2542, + [3026] = 3026, + [3027] = 2543, + [3028] = 3028, + [3029] = 2545, + [3030] = 310, + [3031] = 3031, + [3032] = 2589, + [3033] = 3033, + [3034] = 2608, + [3035] = 3001, + [3036] = 3036, + [3037] = 3037, + [3038] = 2606, + [3039] = 3039, + [3040] = 2446, + [3041] = 3041, + [3042] = 2474, + [3043] = 2604, + [3044] = 2521, + [3045] = 2514, + [3046] = 2441, + [3047] = 2447, + [3048] = 2440, + [3049] = 2565, + [3050] = 2530, + [3051] = 2563, + [3052] = 2537, + [3053] = 328, + [3054] = 2536, + [3055] = 329, + [3056] = 2564, + [3057] = 2601, + [3058] = 2535, + [3059] = 3031, + [3060] = 319, + [3061] = 3061, + [3062] = 3062, + [3063] = 2597, [3064] = 3064, - [3065] = 2541, - [3066] = 2978, - [3067] = 301, - [3068] = 2540, - [3069] = 2538, - [3070] = 2539, - [3071] = 2527, - [3072] = 2525, - [3073] = 2513, - [3074] = 2511, - [3075] = 3075, - [3076] = 2463, - [3077] = 2537, - [3078] = 3078, - [3079] = 2536, - [3080] = 2531, - [3081] = 2530, - [3082] = 2942, - [3083] = 2491, - [3084] = 2728, - [3085] = 2557, - [3086] = 2464, - [3087] = 3087, - [3088] = 2528, - [3089] = 2269, - [3090] = 2466, - [3091] = 2479, - [3092] = 2526, - [3093] = 1228, - [3094] = 2523, - [3095] = 2490, - [3096] = 2495, - [3097] = 2496, - [3098] = 2257, - [3099] = 2672, - [3100] = 2246, - [3101] = 2261, - [3102] = 2255, - [3103] = 2480, - [3104] = 2478, - [3105] = 2477, - [3106] = 2520, - [3107] = 2524, - [3108] = 2529, - [3109] = 2476, - [3110] = 2620, - [3111] = 2475, - [3112] = 1230, - [3113] = 2979, - [3114] = 2474, - [3115] = 3115, - [3116] = 2942, - [3117] = 2942, - [3118] = 2473, - [3119] = 301, - [3120] = 2938, - [3121] = 2471, - [3122] = 2638, - [3123] = 2922, - [3124] = 2614, - [3125] = 2465, - [3126] = 2492, - [3127] = 2613, - [3128] = 2611, + [3065] = 3065, + [3066] = 2568, + [3067] = 3067, + [3068] = 2549, + [3069] = 3026, + [3070] = 2540, + [3071] = 319, + [3072] = 332, + [3073] = 3073, + [3074] = 3074, + [3075] = 2715, + [3076] = 2512, + [3077] = 2457, + [3078] = 2509, + [3079] = 336, + [3080] = 3080, + [3081] = 3081, + [3082] = 3082, + [3083] = 3022, + [3084] = 2591, + [3085] = 2528, + [3086] = 2839, + [3087] = 2649, + [3088] = 2574, + [3089] = 2648, + [3090] = 2646, + [3091] = 2508, + [3092] = 2506, + [3093] = 3093, + [3094] = 3094, + [3095] = 2504, + [3096] = 2503, + [3097] = 310, + [3098] = 320, + [3099] = 2535, + [3100] = 2502, + [3101] = 2683, + [3102] = 2872, + [3103] = 2588, + [3104] = 303, + [3105] = 322, + [3106] = 2514, + [3107] = 2872, + [3108] = 2638, + [3109] = 3109, + [3110] = 2562, + [3111] = 3111, + [3112] = 2550, + [3113] = 3113, + [3114] = 2524, + [3115] = 2625, + [3116] = 2521, + [3117] = 2474, + [3118] = 3067, + [3119] = 2495, + [3120] = 3120, + [3121] = 3064, + [3122] = 2540, + [3123] = 2538, + [3124] = 3124, + [3125] = 2537, + [3126] = 2575, + [3127] = 2496, + [3128] = 3001, [3129] = 3129, - [3130] = 3130, - [3131] = 2468, + [3130] = 2492, + [3131] = 2616, [3132] = 3132, - [3133] = 2942, - [3134] = 2738, - [3135] = 2602, - [3136] = 2933, - [3137] = 3137, - [3138] = 3137, - [3139] = 2472, - [3140] = 2658, + [3133] = 3061, + [3134] = 2536, + [3135] = 3031, + [3136] = 3001, + [3137] = 303, + [3138] = 315, + [3139] = 2502, + [3140] = 3067, [3141] = 3141, - [3142] = 3141, + [3142] = 3129, [3143] = 3143, [3144] = 3144, - [3145] = 3145, - [3146] = 3146, - [3147] = 2738, - [3148] = 3141, + [3145] = 2487, + [3146] = 3064, + [3147] = 2642, + [3148] = 3061, [3149] = 3149, - [3150] = 2733, - [3151] = 2774, - [3152] = 332, - [3153] = 3153, - [3154] = 2748, - [3155] = 3155, - [3156] = 320, - [3157] = 313, - [3158] = 3158, + [3150] = 3001, + [3151] = 328, + [3152] = 2538, + [3153] = 329, + [3154] = 2486, + [3155] = 2483, + [3156] = 3156, + [3157] = 2506, + [3158] = 3020, [3159] = 3159, - [3160] = 3160, + [3160] = 2478, [3161] = 3161, - [3162] = 3162, - [3163] = 2727, - [3164] = 2720, + [3162] = 2472, + [3163] = 2469, + [3164] = 2630, [3165] = 3165, - [3166] = 3158, - [3167] = 2716, - [3168] = 2714, - [3169] = 3145, - [3170] = 328, - [3171] = 2638, - [3172] = 2896, - [3173] = 2695, - [3174] = 2712, - [3175] = 2787, - [3176] = 310, - [3177] = 306, - [3178] = 3178, - [3179] = 2706, - [3180] = 2704, - [3181] = 2483, - [3182] = 2979, - [3183] = 3183, - [3184] = 2696, - [3185] = 2595, - [3186] = 3186, - [3187] = 2484, - [3188] = 3141, - [3189] = 318, - [3190] = 2934, - [3191] = 3191, - [3192] = 2785, - [3193] = 2650, - [3194] = 2651, - [3195] = 2652, - [3196] = 2672, - [3197] = 2657, - [3198] = 3198, - [3199] = 3199, - [3200] = 2683, - [3201] = 2751, - [3202] = 2660, - [3203] = 3203, - [3204] = 3158, - [3205] = 3205, - [3206] = 2728, - [3207] = 3145, + [3166] = 2468, + [3167] = 3001, + [3168] = 2633, + [3169] = 2463, + [3170] = 2454, + [3171] = 2504, + [3172] = 2455, + [3173] = 2456, + [3174] = 2465, + [3175] = 2459, + [3176] = 2450, + [3177] = 2458, + [3178] = 3067, + [3179] = 2470, + [3180] = 2471, + [3181] = 2575, + [3182] = 332, + [3183] = 314, + [3184] = 2697, + [3185] = 3064, + [3186] = 2452, + [3187] = 311, + [3188] = 3188, + [3189] = 3189, + [3190] = 3190, + [3191] = 330, + [3192] = 2439, + [3193] = 330, + [3194] = 2531, + [3195] = 3195, + [3196] = 3001, + [3197] = 2454, + [3198] = 2455, + [3199] = 2872, + [3200] = 3200, + [3201] = 2452, + [3202] = 3082, + [3203] = 2486, + [3204] = 2488, + [3205] = 2322, + [3206] = 2389, + [3207] = 336, [3208] = 3208, - [3209] = 2625, - [3210] = 2623, - [3211] = 303, - [3212] = 3144, - [3213] = 3213, - [3214] = 3208, - [3215] = 3145, - [3216] = 3145, - [3217] = 3158, - [3218] = 2682, - [3219] = 337, - [3220] = 3220, - [3221] = 2661, - [3222] = 3158, - [3223] = 331, - [3224] = 2577, - [3225] = 335, - [3226] = 2491, - [3227] = 2728, - [3228] = 2663, - [3229] = 335, - [3230] = 2609, - [3231] = 3149, - [3232] = 3232, - [3233] = 331, - [3234] = 3208, - [3235] = 3235, - [3236] = 2617, + [3209] = 2635, + [3210] = 2474, + [3211] = 2521, + [3212] = 2514, + [3213] = 2839, + [3214] = 2530, + [3215] = 2457, + [3216] = 2454, + [3217] = 2456, + [3218] = 2496, + [3219] = 3219, + [3220] = 2455, + [3221] = 2456, + [3222] = 3222, + [3223] = 3223, + [3224] = 3064, + [3225] = 2492, + [3226] = 2457, + [3227] = 3208, + [3228] = 3067, + [3229] = 2460, + [3230] = 2486, + [3231] = 2487, + [3232] = 2458, + [3233] = 2488, + [3234] = 2483, + [3235] = 2478, + [3236] = 2472, [3237] = 3237, - [3238] = 3141, - [3239] = 3239, - [3240] = 3240, - [3241] = 2775, - [3242] = 2636, - [3243] = 2778, - [3244] = 2779, - [3245] = 3245, - [3246] = 2484, - [3247] = 2483, - [3248] = 3248, - [3249] = 306, - [3250] = 310, - [3251] = 328, - [3252] = 2738, - [3253] = 3253, - [3254] = 337, - [3255] = 2611, - [3256] = 3256, - [3257] = 2740, - [3258] = 2613, - [3259] = 2618, - [3260] = 2621, - [3261] = 3261, - [3262] = 2596, - [3263] = 2791, - [3264] = 2619, - [3265] = 2614, - [3266] = 2620, - [3267] = 2680, - [3268] = 307, - [3269] = 318, - [3270] = 308, - [3271] = 2622, - [3272] = 2759, - [3273] = 2619, - [3274] = 2602, - [3275] = 308, - [3276] = 2855, - [3277] = 3261, - [3278] = 2594, - [3279] = 303, - [3280] = 2656, - [3281] = 2628, - [3282] = 2632, - [3283] = 2680, - [3284] = 2634, - [3285] = 3141, - [3286] = 2633, - [3287] = 2640, + [3238] = 3067, + [3239] = 3064, + [3240] = 2458, + [3241] = 2469, + [3242] = 2459, + [3243] = 2463, + [3244] = 2468, + [3245] = 2469, + [3246] = 2468, + [3247] = 2472, + [3248] = 2463, + [3249] = 2478, + [3250] = 2483, + [3251] = 2488, + [3252] = 3252, + [3253] = 3093, + [3254] = 3061, + [3255] = 2459, + [3256] = 3031, + [3257] = 2487, + [3258] = 2492, + [3259] = 2496, + [3260] = 2502, + [3261] = 2503, + [3262] = 2504, + [3263] = 2511, + [3264] = 2506, + [3265] = 2501, + [3266] = 2500, + [3267] = 2499, + [3268] = 2498, + [3269] = 3061, + [3270] = 3031, + [3271] = 2535, + [3272] = 3064, + [3273] = 2645, + [3274] = 3067, + [3275] = 2536, + [3276] = 2503, + [3277] = 2537, + [3278] = 2497, + [3279] = 2322, + [3280] = 2644, + [3281] = 3281, + [3282] = 2469, + [3283] = 3283, + [3284] = 3284, + [3285] = 2683, + [3286] = 2389, + [3287] = 3287, [3288] = 3288, - [3289] = 2761, - [3290] = 2673, + [3289] = 3289, + [3290] = 3290, [3291] = 3291, - [3292] = 2728, - [3293] = 2641, + [3292] = 3292, + [3293] = 3293, [3294] = 3294, - [3295] = 2643, - [3296] = 332, - [3297] = 2741, - [3298] = 2577, - [3299] = 2674, - [3300] = 320, - [3301] = 313, - [3302] = 2642, - [3303] = 2667, - [3304] = 2666, - [3305] = 2577, - [3306] = 2664, - [3307] = 2658, - [3308] = 3308, - [3309] = 3309, - [3310] = 3310, - [3311] = 3162, - [3312] = 2771, - [3313] = 2643, + [3295] = 2474, + [3296] = 2521, + [3297] = 2514, + [3298] = 3298, + [3299] = 2389, + [3300] = 2439, + [3301] = 3301, + [3302] = 3302, + [3303] = 2440, + [3304] = 3294, + [3305] = 2441, + [3306] = 2872, + [3307] = 3307, + [3308] = 2452, + [3309] = 3293, + [3310] = 2540, + [3311] = 2322, + [3312] = 3312, + [3313] = 2538, [3314] = 3314, - [3315] = 2922, - [3316] = 2979, - [3317] = 3317, - [3318] = 3318, - [3319] = 2664, - [3320] = 2666, - [3321] = 2656, - [3322] = 2641, - [3323] = 2934, - [3324] = 2667, - [3325] = 3325, - [3326] = 307, - [3327] = 2794, - [3328] = 2896, - [3329] = 3239, - [3330] = 3330, - [3331] = 2636, - [3332] = 2738, - [3333] = 3333, - [3334] = 2633, - [3335] = 3335, - [3336] = 2685, - [3337] = 3337, - [3338] = 2632, - [3339] = 3339, - [3340] = 2630, - [3341] = 3339, - [3342] = 2634, - [3343] = 3141, - [3344] = 2627, - [3345] = 2628, - [3346] = 2594, - [3347] = 2780, - [3348] = 2777, - [3349] = 2772, - [3350] = 2769, - [3351] = 3208, - [3352] = 3141, - [3353] = 2768, - [3354] = 3144, - [3355] = 2979, - [3356] = 2640, - [3357] = 2795, - [3358] = 3245, - [3359] = 2626, - [3360] = 2740, - [3361] = 2596, - [3362] = 2621, - [3363] = 2618, - [3364] = 2740, - [3365] = 3145, - [3366] = 2748, - [3367] = 2695, - [3368] = 2595, - [3369] = 2618, - [3370] = 2621, - [3371] = 2617, - [3372] = 2596, - [3373] = 2611, - [3374] = 2575, - [3375] = 2717, - [3376] = 2631, - [3377] = 2613, - [3378] = 2614, - [3379] = 3158, - [3380] = 2620, - [3381] = 2622, - [3382] = 2642, - [3383] = 2594, - [3384] = 2628, - [3385] = 3144, - [3386] = 2632, - [3387] = 2633, + [3315] = 2537, + [3316] = 2536, + [3317] = 2872, + [3318] = 2322, + [3319] = 3319, + [3320] = 3320, + [3321] = 2535, + [3322] = 3287, + [3323] = 2506, + [3324] = 2465, + [3325] = 2504, + [3326] = 3326, + [3327] = 2839, + [3328] = 2503, + [3329] = 2502, + [3330] = 3289, + [3331] = 3331, + [3332] = 3289, + [3333] = 2492, + [3334] = 2486, + [3335] = 2872, + [3336] = 2642, + [3337] = 2872, + [3338] = 3331, + [3339] = 2487, + [3340] = 2575, + [3341] = 2496, + [3342] = 3289, + [3343] = 2454, + [3344] = 3289, + [3345] = 2488, + [3346] = 2483, + [3347] = 2642, + [3348] = 2455, + [3349] = 2478, + [3350] = 2472, + [3351] = 3351, + [3352] = 3352, + [3353] = 3353, + [3354] = 3289, + [3355] = 2456, + [3356] = 3301, + [3357] = 2457, + [3358] = 2715, + [3359] = 2458, + [3360] = 2459, + [3361] = 3289, + [3362] = 2463, + [3363] = 2770, + [3364] = 2468, + [3365] = 2530, + [3366] = 3366, + [3367] = 3367, + [3368] = 3368, + [3369] = 3369, + [3370] = 2872, + [3371] = 2322, + [3372] = 3372, + [3373] = 3373, + [3374] = 3374, + [3375] = 3375, + [3376] = 3376, + [3377] = 3377, + [3378] = 3378, + [3379] = 3379, + [3380] = 3380, + [3381] = 3381, + [3382] = 3382, + [3383] = 3383, + [3384] = 2642, + [3385] = 3385, + [3386] = 3386, + [3387] = 2683, [3388] = 3388, - [3389] = 2636, - [3390] = 2641, - [3391] = 2643, - [3392] = 2658, - [3393] = 2664, - [3394] = 3335, - [3395] = 2666, - [3396] = 2667, - [3397] = 3397, - [3398] = 2642, - [3399] = 2640, - [3400] = 2634, - [3401] = 2680, - [3402] = 3402, + [3389] = 3389, + [3390] = 3390, + [3391] = 3391, + [3392] = 2642, + [3393] = 3393, + [3394] = 2575, + [3395] = 2389, + [3396] = 2715, + [3397] = 2486, + [3398] = 3398, + [3399] = 2450, + [3400] = 3400, + [3401] = 3401, + [3402] = 2465, [3403] = 3403, - [3404] = 2612, + [3404] = 2447, [3405] = 3405, - [3406] = 2619, - [3407] = 2656, - [3408] = 3408, - [3409] = 2610, - [3410] = 2600, - [3411] = 2598, - [3412] = 3141, - [3413] = 3145, - [3414] = 2622, - [3415] = 3158, - [3416] = 2620, - [3417] = 2748, - [3418] = 3208, - [3419] = 3144, - [3420] = 2614, - [3421] = 2613, - [3422] = 3141, - [3423] = 2611, - [3424] = 3424, - [3425] = 2679, - [3426] = 2695, - [3427] = 2595, - [3428] = 2617, - [3429] = 2620, - [3430] = 2632, + [3406] = 3406, + [3407] = 3407, + [3408] = 3031, + [3409] = 3061, + [3410] = 3061, + [3411] = 3031, + [3412] = 3412, + [3413] = 3061, + [3414] = 3414, + [3415] = 3415, + [3416] = 3061, + [3417] = 3031, + [3418] = 2322, + [3419] = 3031, + [3420] = 3061, + [3421] = 3031, + [3422] = 3422, + [3423] = 3423, + [3424] = 3031, + [3425] = 2322, + [3426] = 3426, + [3427] = 3398, + [3428] = 3061, + [3429] = 3429, + [3430] = 3430, [3431] = 3431, - [3432] = 2483, - [3433] = 2602, - [3434] = 2642, + [3432] = 3432, + [3433] = 2322, + [3434] = 2313, [3435] = 3435, - [3436] = 2621, - [3437] = 2896, - [3438] = 2640, + [3436] = 3031, + [3437] = 3437, + [3438] = 3061, [3439] = 3439, [3440] = 3440, - [3441] = 3441, - [3442] = 2667, - [3443] = 2484, - [3444] = 3444, - [3445] = 2634, - [3446] = 3446, - [3447] = 2680, + [3441] = 2450, + [3442] = 2465, + [3443] = 3443, + [3444] = 2839, + [3445] = 2447, + [3446] = 3190, + [3447] = 3447, [3448] = 3448, - [3449] = 2619, + [3449] = 3449, [3450] = 3450, - [3451] = 2577, - [3452] = 3439, - [3453] = 3453, - [3454] = 2666, - [3455] = 2596, - [3456] = 3456, - [3457] = 3444, - [3458] = 3458, - [3459] = 2656, - [3460] = 2577, - [3461] = 3458, - [3462] = 3439, - [3463] = 2748, - [3464] = 2695, - [3465] = 2740, - [3466] = 2595, - [3467] = 2979, + [3451] = 3451, + [3452] = 3450, + [3453] = 3450, + [3454] = 3450, + [3455] = 3450, + [3456] = 3450, + [3457] = 3450, + [3458] = 3450, + [3459] = 3450, + [3460] = 3450, + [3461] = 3461, + [3462] = 3462, + [3463] = 3463, + [3464] = 3464, + [3465] = 331, + [3466] = 3466, + [3467] = 321, [3468] = 3468, - [3469] = 2575, + [3469] = 3469, [3470] = 3470, [3471] = 3471, - [3472] = 3441, - [3473] = 2617, - [3474] = 2611, - [3475] = 2618, - [3476] = 2613, - [3477] = 2602, - [3478] = 2614, - [3479] = 3439, - [3480] = 2664, - [3481] = 2622, - [3482] = 2594, - [3483] = 2728, + [3472] = 316, + [3473] = 304, + [3474] = 3474, + [3475] = 3475, + [3476] = 3476, + [3477] = 3477, + [3478] = 3478, + [3479] = 3479, + [3480] = 3480, + [3481] = 3481, + [3482] = 3482, + [3483] = 3483, [3484] = 3484, - [3485] = 2738, - [3486] = 3486, + [3485] = 3485, + [3486] = 3378, [3487] = 3487, - [3488] = 2628, - [3489] = 2658, + [3488] = 3377, + [3489] = 3489, [3490] = 3490, - [3491] = 2934, - [3492] = 2643, - [3493] = 2641, + [3491] = 3491, + [3492] = 3492, + [3493] = 3493, [3494] = 3494, [3495] = 3495, - [3496] = 2636, - [3497] = 2855, - [3498] = 2979, + [3496] = 3496, + [3497] = 3497, + [3498] = 3498, [3499] = 3499, - [3500] = 3439, - [3501] = 3439, - [3502] = 2979, - [3503] = 3439, - [3504] = 2633, - [3505] = 3505, - [3506] = 2575, - [3507] = 3470, - [3508] = 2807, - [3509] = 3471, + [3500] = 3500, + [3501] = 3501, + [3502] = 3502, + [3503] = 3503, + [3504] = 316, + [3505] = 304, + [3506] = 3506, + [3507] = 3507, + [3508] = 3508, + [3509] = 3509, [3510] = 3510, - [3511] = 2672, + [3511] = 3511, [3512] = 3512, - [3513] = 2491, - [3514] = 2979, - [3515] = 2602, + [3513] = 3513, + [3514] = 3514, + [3515] = 3515, [3516] = 3516, - [3517] = 2683, + [3517] = 3517, [3518] = 3518, - [3519] = 3519, + [3519] = 3041, [3520] = 3520, [3521] = 3521, - [3522] = 3522, - [3523] = 3523, + [3522] = 331, + [3523] = 321, [3524] = 3524, [3525] = 3525, - [3526] = 2672, - [3527] = 2738, - [3528] = 3528, + [3526] = 3526, + [3527] = 3527, + [3528] = 3109, [3529] = 3529, [3530] = 3530, [3531] = 3531, - [3532] = 2728, - [3533] = 2575, - [3534] = 3534, + [3532] = 3074, + [3533] = 3533, + [3534] = 3165, [3535] = 3535, - [3536] = 3536, - [3537] = 3537, - [3538] = 3538, - [3539] = 2855, - [3540] = 3540, - [3541] = 3541, - [3542] = 2896, + [3536] = 3291, + [3537] = 3281, + [3538] = 3287, + [3539] = 3294, + [3540] = 3293, + [3541] = 3302, + [3542] = 3542, [3543] = 3543, - [3544] = 2577, - [3545] = 2979, - [3546] = 2638, - [3547] = 3547, + [3544] = 3544, + [3545] = 3284, + [3546] = 3366, + [3547] = 3302, [3548] = 3548, - [3549] = 3549, - [3550] = 3550, - [3551] = 2602, + [3549] = 1971, + [3550] = 3314, + [3551] = 3281, [3552] = 3552, - [3553] = 3553, - [3554] = 3554, - [3555] = 3144, - [3556] = 3556, - [3557] = 3557, - [3558] = 3558, - [3559] = 3559, - [3560] = 3208, + [3553] = 3314, + [3554] = 3294, + [3555] = 3283, + [3556] = 3543, + [3557] = 3287, + [3558] = 3293, + [3559] = 3301, + [3560] = 3288, [3561] = 3561, - [3562] = 3208, - [3563] = 3144, - [3564] = 2577, - [3565] = 3565, + [3562] = 3284, + [3563] = 3301, + [3564] = 3320, + [3565] = 3548, [3566] = 3566, [3567] = 3567, - [3568] = 2683, + [3568] = 1987, [3569] = 3569, - [3570] = 2672, - [3571] = 2638, - [3572] = 3572, - [3573] = 3144, - [3574] = 3208, - [3575] = 3144, - [3576] = 3576, - [3577] = 3208, - [3578] = 3144, - [3579] = 3579, - [3580] = 3208, - [3581] = 3531, - [3582] = 2461, - [3583] = 2577, - [3584] = 3291, + [3570] = 3570, + [3571] = 3571, + [3572] = 3570, + [3573] = 3570, + [3574] = 3574, + [3575] = 3569, + [3576] = 3567, + [3577] = 3577, + [3578] = 3578, + [3579] = 3567, + [3580] = 1997, + [3581] = 3578, + [3582] = 3577, + [3583] = 3583, + [3584] = 3584, [3585] = 3585, - [3586] = 3586, - [3587] = 3587, - [3588] = 3208, - [3589] = 3589, - [3590] = 3144, + [3586] = 3584, + [3587] = 3567, + [3588] = 3585, + [3589] = 3584, + [3590] = 3577, [3591] = 3591, - [3592] = 2577, + [3592] = 3578, [3593] = 3593, - [3594] = 2934, - [3595] = 3595, - [3596] = 3144, - [3597] = 3208, - [3598] = 3598, - [3599] = 3599, - [3600] = 3599, - [3601] = 3599, - [3602] = 3599, - [3603] = 3599, - [3604] = 3599, - [3605] = 3599, - [3606] = 3599, - [3607] = 3599, - [3608] = 3599, - [3609] = 3609, - [3610] = 3610, - [3611] = 3611, - [3612] = 3612, - [3613] = 3613, - [3614] = 3614, - [3615] = 3615, - [3616] = 3616, + [3594] = 3577, + [3595] = 3578, + [3596] = 3585, + [3597] = 3570, + [3598] = 3570, + [3599] = 3569, + [3600] = 3570, + [3601] = 3569, + [3602] = 3584, + [3603] = 3585, + [3604] = 3578, + [3605] = 3569, + [3606] = 3584, + [3607] = 3607, + [3608] = 3585, + [3609] = 3569, + [3610] = 3578, + [3611] = 3584, + [3612] = 3585, + [3613] = 3577, + [3614] = 3567, + [3615] = 3567, + [3616] = 3577, [3617] = 3617, - [3618] = 3618, - [3619] = 3541, + [3618] = 3352, + [3619] = 3619, [3620] = 3620, [3621] = 3621, - [3622] = 3519, + [3622] = 3622, [3623] = 3623, [3624] = 3624, [3625] = 3625, [3626] = 3626, - [3627] = 321, + [3627] = 3627, [3628] = 3628, [3629] = 3629, [3630] = 3630, @@ -8099,24 +8107,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3633] = 3633, [3634] = 3634, [3635] = 3635, - [3636] = 305, + [3636] = 3636, [3637] = 3637, [3638] = 3638, [3639] = 3639, [3640] = 3640, - [3641] = 311, - [3642] = 3642, + [3641] = 3641, + [3642] = 3640, [3643] = 3643, [3644] = 3644, [3645] = 3645, [3646] = 3646, - [3647] = 305, - [3648] = 311, + [3647] = 3647, + [3648] = 3648, [3649] = 3649, [3650] = 3650, [3651] = 3651, - [3652] = 3652, - [3653] = 3653, + [3652] = 2040, + [3653] = 2030, [3654] = 3654, [3655] = 3655, [3656] = 3656, @@ -8124,1346 +8132,1346 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3658] = 3658, [3659] = 3659, [3660] = 3660, - [3661] = 3661, - [3662] = 3662, - [3663] = 3663, + [3661] = 3650, + [3662] = 2083, + [3663] = 2038, [3664] = 3664, - [3665] = 309, - [3666] = 3155, + [3665] = 3665, + [3666] = 3666, [3667] = 3667, - [3668] = 3220, + [3668] = 2021, [3669] = 3669, [3670] = 3670, [3671] = 3671, - [3672] = 3672, + [3672] = 3647, [3673] = 3673, [3674] = 3674, - [3675] = 3146, + [3675] = 3675, [3676] = 3676, - [3677] = 321, - [3678] = 3237, - [3679] = 309, - [3680] = 3680, - [3681] = 3681, + [3677] = 3654, + [3678] = 3678, + [3679] = 3679, + [3680] = 3664, + [3681] = 2064, [3682] = 3682, - [3683] = 3431, - [3684] = 3494, - [3685] = 3456, - [3686] = 2124, - [3687] = 3446, - [3688] = 3494, - [3689] = 3444, - [3690] = 3690, - [3691] = 3471, - [3692] = 3470, - [3693] = 3471, - [3694] = 3510, - [3695] = 3695, - [3696] = 3444, - [3697] = 3441, + [3683] = 3683, + [3684] = 3683, + [3685] = 3685, + [3686] = 3686, + [3687] = 3682, + [3688] = 3688, + [3689] = 3639, + [3690] = 3688, + [3691] = 3691, + [3692] = 3692, + [3693] = 3667, + [3694] = 3679, + [3695] = 3692, + [3696] = 3696, + [3697] = 3697, [3698] = 3698, - [3699] = 3699, - [3700] = 3440, - [3701] = 3701, - [3702] = 3470, - [3703] = 3435, - [3704] = 3512, - [3705] = 3690, - [3706] = 3441, - [3707] = 3448, - [3708] = 3431, - [3709] = 3510, - [3710] = 3710, - [3711] = 3701, - [3712] = 3448, - [3713] = 3713, - [3714] = 3714, - [3715] = 3715, - [3716] = 3713, - [3717] = 3717, - [3718] = 3718, - [3719] = 3714, - [3720] = 3720, - [3721] = 3721, - [3722] = 3715, - [3723] = 3717, - [3724] = 3724, - [3725] = 3713, - [3726] = 3717, - [3727] = 3718, - [3728] = 3714, - [3729] = 3720, - [3730] = 3715, - [3731] = 3721, - [3732] = 3715, - [3733] = 2139, - [3734] = 3717, - [3735] = 3713, - [3736] = 3717, - [3737] = 3718, - [3738] = 3713, - [3739] = 3720, - [3740] = 3740, - [3741] = 3721, + [3699] = 2038, + [3700] = 2296, + [3701] = 2297, + [3702] = 2030, + [3703] = 2293, + [3704] = 2064, + [3705] = 323, + [3706] = 327, + [3707] = 2341, + [3708] = 2414, + [3709] = 2391, + [3710] = 2390, + [3711] = 2388, + [3712] = 2385, + [3713] = 2384, + [3714] = 2383, + [3715] = 2382, + [3716] = 2381, + [3717] = 2377, + [3718] = 2376, + [3719] = 2415, + [3720] = 2320, + [3721] = 2323, + [3722] = 2317, + [3723] = 2413, + [3724] = 2407, + [3725] = 2405, + [3726] = 2404, + [3727] = 2403, + [3728] = 2318, + [3729] = 2401, + [3730] = 2319, + [3731] = 2399, + [3732] = 2343, + [3733] = 2330, + [3734] = 2333, + [3735] = 2398, + [3736] = 2316, + [3737] = 2342, + [3738] = 2329, + [3739] = 2292, + [3740] = 2327, + [3741] = 2326, [3742] = 3742, - [3743] = 3743, - [3744] = 3744, - [3745] = 3718, - [3746] = 3715, - [3747] = 3715, - [3748] = 3714, - [3749] = 3718, - [3750] = 3718, - [3751] = 3717, - [3752] = 2159, - [3753] = 3714, - [3754] = 3721, - [3755] = 3720, - [3756] = 3756, - [3757] = 3713, - [3758] = 3721, - [3759] = 3720, - [3760] = 3760, - [3761] = 3714, - [3762] = 3720, - [3763] = 3721, - [3764] = 3764, - [3765] = 3765, - [3766] = 3505, - [3767] = 3767, - [3768] = 3768, - [3769] = 3769, - [3770] = 3770, - [3771] = 3771, - [3772] = 3772, - [3773] = 3773, - [3774] = 3774, - [3775] = 3775, - [3776] = 3776, - [3777] = 3777, - [3778] = 3778, - [3779] = 3779, - [3780] = 3780, - [3781] = 3781, - [3782] = 3782, - [3783] = 3783, - [3784] = 2199, - [3785] = 3785, + [3743] = 2312, + [3744] = 3742, + [3745] = 3742, + [3746] = 3742, + [3747] = 3742, + [3748] = 2126, + [3749] = 2108, + [3750] = 2374, + [3751] = 2372, + [3752] = 1051, + [3753] = 2369, + [3754] = 1062, + [3755] = 1069, + [3756] = 2089, + [3757] = 1067, + [3758] = 2109, + [3759] = 2302, + [3760] = 2103, + [3761] = 2417, + [3762] = 2363, + [3763] = 323, + [3764] = 2361, + [3765] = 2087, + [3766] = 2104, + [3767] = 327, + [3768] = 2293, + [3769] = 2107, + [3770] = 2110, + [3771] = 2296, + [3772] = 1066, + [3773] = 2088, + [3774] = 2297, + [3775] = 2106, + [3776] = 2299, + [3777] = 2314, + [3778] = 2303, + [3779] = 2309, + [3780] = 2305, + [3781] = 2319, + [3782] = 2356, + [3783] = 2325, + [3784] = 2327, + [3785] = 2398, [3786] = 3786, - [3787] = 3787, + [3787] = 2410, [3788] = 3788, - [3789] = 3789, - [3790] = 3790, - [3791] = 2173, - [3792] = 3792, - [3793] = 3793, - [3794] = 3794, - [3795] = 3795, - [3796] = 3796, - [3797] = 3797, + [3789] = 2359, + [3790] = 3788, + [3791] = 2360, + [3792] = 2409, + [3793] = 2408, + [3794] = 2317, + [3795] = 2318, + [3796] = 2320, + [3797] = 2323, [3798] = 3798, - [3799] = 3792, - [3800] = 3800, - [3801] = 3787, - [3802] = 3798, - [3803] = 2207, - [3804] = 2226, - [3805] = 3805, + [3799] = 2316, + [3800] = 2406, + [3801] = 3788, + [3802] = 2364, + [3803] = 2405, + [3804] = 2391, + [3805] = 2390, [3806] = 3806, - [3807] = 3807, - [3808] = 3808, - [3809] = 3809, - [3810] = 3796, - [3811] = 3811, - [3812] = 2189, - [3813] = 3813, - [3814] = 3814, - [3815] = 3815, - [3816] = 3816, - [3817] = 3817, - [3818] = 3818, - [3819] = 3814, - [3820] = 3820, - [3821] = 3821, - [3822] = 3815, - [3823] = 3823, - [3824] = 3797, - [3825] = 3825, - [3826] = 3816, + [3807] = 2388, + [3808] = 2365, + [3809] = 2385, + [3810] = 2366, + [3811] = 3786, + [3812] = 3788, + [3813] = 2384, + [3814] = 2383, + [3815] = 2382, + [3816] = 3788, + [3817] = 2420, + [3818] = 2381, + [3819] = 2377, + [3820] = 2376, + [3821] = 2346, + [3822] = 3798, + [3823] = 2402, + [3824] = 2348, + [3825] = 3788, + [3826] = 3788, [3827] = 3827, - [3828] = 3828, - [3829] = 3829, - [3830] = 3830, - [3831] = 3831, - [3832] = 3805, - [3833] = 3833, - [3834] = 3834, - [3835] = 3835, - [3836] = 3836, - [3837] = 3837, - [3838] = 3838, - [3839] = 3839, - [3840] = 3793, - [3841] = 3841, - [3842] = 2187, - [3843] = 3818, - [3844] = 3795, - [3845] = 3845, - [3846] = 2226, - [3847] = 2441, - [3848] = 2443, - [3849] = 2445, - [3850] = 2207, - [3851] = 2187, - [3852] = 314, - [3853] = 304, - [3854] = 2444, - [3855] = 2591, - [3856] = 2481, - [3857] = 2537, - [3858] = 2503, - [3859] = 2536, - [3860] = 2550, - [3861] = 2474, - [3862] = 2551, - [3863] = 2504, - [3864] = 2541, - [3865] = 2540, - [3866] = 2463, - [3867] = 2507, - [3868] = 2510, - [3869] = 2546, - [3870] = 2487, - [3871] = 2593, - [3872] = 2543, - [3873] = 2530, - [3874] = 2592, - [3875] = 2585, - [3876] = 2531, - [3877] = 2588, - [3878] = 2480, - [3879] = 2478, - [3880] = 2477, - [3881] = 2476, - [3882] = 2475, - [3883] = 2473, - [3884] = 2471, - [3885] = 2465, - [3886] = 2492, - [3887] = 2586, - [3888] = 2589, - [3889] = 3889, - [3890] = 3889, - [3891] = 3889, - [3892] = 2446, - [3893] = 3889, - [3894] = 3889, - [3895] = 2269, - [3896] = 1220, - [3897] = 2479, - [3898] = 304, - [3899] = 2441, - [3900] = 1222, - [3901] = 2443, - [3902] = 314, - [3903] = 2449, - [3904] = 1230, - [3905] = 2445, - [3906] = 1229, - [3907] = 2257, - [3908] = 2513, - [3909] = 2246, - [3910] = 2253, - [3911] = 2268, - [3912] = 2527, - [3913] = 2247, - [3914] = 2235, - [3915] = 2584, - [3916] = 2261, - [3917] = 2255, - [3918] = 2490, - [3919] = 2236, - [3920] = 1228, - [3921] = 2232, - [3922] = 2538, - [3923] = 2462, - [3924] = 2457, - [3925] = 2459, - [3926] = 2453, - [3927] = 2456, - [3928] = 2496, - [3929] = 2546, + [3828] = 2292, + [3829] = 3806, + [3830] = 2293, + [3831] = 2357, + [3832] = 2297, + [3833] = 2432, + [3834] = 2296, + [3835] = 2339, + [3836] = 2340, + [3837] = 3788, + [3838] = 3798, + [3839] = 2338, + [3840] = 2412, + [3841] = 3798, + [3842] = 3806, + [3843] = 3827, + [3844] = 2416, + [3845] = 2404, + [3846] = 3786, + [3847] = 3806, + [3848] = 2430, + [3849] = 2324, + [3850] = 2429, + [3851] = 3827, + [3852] = 3788, + [3853] = 2411, + [3854] = 3827, + [3855] = 3786, + [3856] = 2401, + [3857] = 2387, + [3858] = 2403, + [3859] = 2321, + [3860] = 2394, + [3861] = 2333, + [3862] = 2353, + [3863] = 2396, + [3864] = 2397, + [3865] = 2428, + [3866] = 2427, + [3867] = 2426, + [3868] = 2368, + [3869] = 3786, + [3870] = 2330, + [3871] = 2343, + [3872] = 2326, + [3873] = 3827, + [3874] = 2415, + [3875] = 2414, + [3876] = 2342, + [3877] = 2341, + [3878] = 3806, + [3879] = 2345, + [3880] = 2422, + [3881] = 2413, + [3882] = 2407, + [3883] = 3798, + [3884] = 2329, + [3885] = 2392, + [3886] = 2393, + [3887] = 2371, + [3888] = 2399, + [3889] = 2395, + [3890] = 2373, + [3891] = 3788, + [3892] = 2347, + [3893] = 3893, + [3894] = 3894, + [3895] = 3894, + [3896] = 3896, + [3897] = 3896, + [3898] = 3898, + [3899] = 3899, + [3900] = 3900, + [3901] = 3901, + [3902] = 3902, + [3903] = 3903, + [3904] = 3904, + [3905] = 3905, + [3906] = 3906, + [3907] = 3896, + [3908] = 2312, + [3909] = 3909, + [3910] = 3910, + [3911] = 3911, + [3912] = 3912, + [3913] = 3913, + [3914] = 3914, + [3915] = 3894, + [3916] = 3916, + [3917] = 3917, + [3918] = 3899, + [3919] = 3896, + [3920] = 3920, + [3921] = 3899, + [3922] = 3922, + [3923] = 3899, + [3924] = 3894, + [3925] = 3925, + [3926] = 3926, + [3927] = 3927, + [3928] = 3894, + [3929] = 3896, [3930] = 3930, - [3931] = 3931, - [3932] = 2480, - [3933] = 2478, - [3934] = 2477, - [3935] = 2476, - [3936] = 3936, - [3937] = 2475, - [3938] = 2474, - [3939] = 2473, - [3940] = 2471, - [3941] = 3941, - [3942] = 3941, - [3943] = 3943, - [3944] = 2465, - [3945] = 2492, - [3946] = 3936, - [3947] = 2582, - [3948] = 2518, - [3949] = 2581, - [3950] = 2571, - [3951] = 3930, - [3952] = 2567, - [3953] = 2566, - [3954] = 2543, - [3955] = 2572, - [3956] = 2568, - [3957] = 3943, - [3958] = 3941, - [3959] = 2587, - [3960] = 2472, - [3961] = 3943, - [3962] = 3936, - [3963] = 3931, - [3964] = 3931, - [3965] = 2444, - [3966] = 2499, - [3967] = 3930, - [3968] = 2585, - [3969] = 3943, - [3970] = 2498, - [3971] = 3936, - [3972] = 3941, - [3973] = 2586, - [3974] = 2549, - [3975] = 2482, - [3976] = 2493, - [3977] = 2588, - [3978] = 2467, - [3979] = 2576, - [3980] = 3931, - [3981] = 2589, - [3982] = 2530, - [3983] = 2531, - [3984] = 3941, - [3985] = 2553, - [3986] = 3941, - [3987] = 2536, - [3988] = 2537, - [3989] = 2554, - [3990] = 2463, - [3991] = 2540, - [3992] = 3941, - [3993] = 3941, - [3994] = 2445, - [3995] = 2443, - [3996] = 2441, - [3997] = 3930, - [3998] = 2541, - [3999] = 2528, - [4000] = 2526, - [4001] = 2523, - [4002] = 2555, - [4003] = 2556, - [4004] = 2539, - [4005] = 2591, - [4006] = 2592, - [4007] = 3941, - [4008] = 3930, - [4009] = 3931, - [4010] = 3936, - [4011] = 2525, - [4012] = 3943, - [4013] = 2558, - [4014] = 2550, - [4015] = 2516, - [4016] = 2551, - [4017] = 2529, - [4018] = 2593, - [4019] = 2524, - [4020] = 2481, - [4021] = 2503, - [4022] = 2520, - [4023] = 2504, - [4024] = 2507, - [4025] = 2495, - [4026] = 2583, - [4027] = 3941, - [4028] = 2487, - [4029] = 2559, - [4030] = 2466, - [4031] = 2464, - [4032] = 2574, - [4033] = 2557, - [4034] = 2468, - [4035] = 2510, - [4036] = 2511, - [4037] = 2570, - [4038] = 2569, - [4039] = 2563, - [4040] = 4040, - [4041] = 4041, - [4042] = 4040, + [3931] = 3899, + [3932] = 3932, + [3933] = 2316, + [3934] = 2109, + [3935] = 2415, + [3936] = 2292, + [3937] = 2330, + [3938] = 2405, + [3939] = 2126, + [3940] = 2108, + [3941] = 2398, + [3942] = 2107, + [3943] = 2106, + [3944] = 2399, + [3945] = 2407, + [3946] = 2103, + [3947] = 2413, + [3948] = 2414, + [3949] = 2401, + [3950] = 3950, + [3951] = 2403, + [3952] = 2417, + [3953] = 2369, + [3954] = 3954, + [3955] = 2404, + [3956] = 3956, + [3957] = 2391, + [3958] = 2390, + [3959] = 2372, + [3960] = 2388, + [3961] = 2374, + [3962] = 2385, + [3963] = 2384, + [3964] = 3964, + [3965] = 2383, + [3966] = 2317, + [3967] = 2318, + [3968] = 2382, + [3969] = 2319, + [3970] = 2320, + [3971] = 3971, + [3972] = 2302, + [3973] = 3916, + [3974] = 2381, + [3975] = 2377, + [3976] = 2376, + [3977] = 2323, + [3978] = 3978, + [3979] = 2326, + [3980] = 2327, + [3981] = 3981, + [3982] = 2363, + [3983] = 2329, + [3984] = 3984, + [3985] = 2087, + [3986] = 2341, + [3987] = 2088, + [3988] = 2342, + [3989] = 2089, + [3990] = 2343, + [3991] = 2038, + [3992] = 2361, + [3993] = 3993, + [3994] = 3994, + [3995] = 2104, + [3996] = 2333, + [3997] = 2030, + [3998] = 3998, + [3999] = 2064, + [4000] = 2110, + [4001] = 4001, + [4002] = 4002, + [4003] = 4003, + [4004] = 2299, + [4005] = 4005, + [4006] = 4006, + [4007] = 4007, + [4008] = 4008, + [4009] = 4009, + [4010] = 4007, + [4011] = 2305, + [4012] = 4012, + [4013] = 4013, + [4014] = 4014, + [4015] = 4015, + [4016] = 2309, + [4017] = 4017, + [4018] = 4007, + [4019] = 4019, + [4020] = 2303, + [4021] = 4021, + [4022] = 4022, + [4023] = 4023, + [4024] = 4024, + [4025] = 4025, + [4026] = 4026, + [4027] = 4027, + [4028] = 4028, + [4029] = 4029, + [4030] = 4030, + [4031] = 4012, + [4032] = 4032, + [4033] = 4033, + [4034] = 4034, + [4035] = 4007, + [4036] = 4036, + [4037] = 4037, + [4038] = 4038, + [4039] = 4039, + [4040] = 4012, + [4041] = 4012, + [4042] = 4042, [4043] = 4043, - [4044] = 4044, - [4045] = 4044, + [4044] = 4012, + [4045] = 2312, [4046] = 4046, [4047] = 4047, [4048] = 4048, [4049] = 4049, - [4050] = 4050, - [4051] = 4043, - [4052] = 4040, - [4053] = 4053, - [4054] = 4043, - [4055] = 4040, - [4056] = 4056, - [4057] = 4057, - [4058] = 4058, - [4059] = 4059, - [4060] = 4060, - [4061] = 4061, - [4062] = 4062, - [4063] = 2446, - [4064] = 4040, - [4065] = 4065, - [4066] = 4066, - [4067] = 4067, - [4068] = 4068, - [4069] = 4069, - [4070] = 4070, - [4071] = 4044, - [4072] = 4044, - [4073] = 4073, - [4074] = 4074, - [4075] = 4075, - [4076] = 4043, - [4077] = 4043, - [4078] = 4044, - [4079] = 4079, - [4080] = 2247, - [4081] = 2507, - [4082] = 2540, - [4083] = 4083, - [4084] = 2541, - [4085] = 2527, - [4086] = 4086, - [4087] = 2444, - [4088] = 2543, - [4089] = 2492, - [4090] = 2449, - [4091] = 4091, - [4092] = 2465, - [4093] = 2471, - [4094] = 2473, - [4095] = 2474, - [4096] = 2538, - [4097] = 2550, - [4098] = 2551, - [4099] = 2475, - [4100] = 4100, - [4101] = 4079, - [4102] = 2226, - [4103] = 4103, - [4104] = 2476, - [4105] = 2268, - [4106] = 2477, - [4107] = 2255, - [4108] = 2261, - [4109] = 2253, - [4110] = 2246, - [4111] = 2478, - [4112] = 2257, - [4113] = 2269, - [4114] = 2480, - [4115] = 4115, - [4116] = 2187, + [4050] = 4007, + [4051] = 2314, + [4052] = 2371, + [4053] = 2369, + [4054] = 2417, + [4055] = 2402, + [4056] = 2345, + [4057] = 2338, + [4058] = 2364, + [4059] = 2392, + [4060] = 1067, + [4061] = 2339, + [4062] = 2340, + [4063] = 2353, + [4064] = 4064, + [4065] = 2365, + [4066] = 2356, + [4067] = 2422, + [4068] = 2321, + [4069] = 2325, + [4070] = 1069, + [4071] = 2366, + [4072] = 2426, + [4073] = 2360, + [4074] = 2432, + [4075] = 2064, + [4076] = 2374, + [4077] = 2372, + [4078] = 1051, + [4079] = 2420, + [4080] = 2373, + [4081] = 2347, + [4082] = 2394, + [4083] = 2416, + [4084] = 4084, + [4085] = 2427, + [4086] = 2406, + [4087] = 2428, + [4088] = 2346, + [4089] = 2397, + [4090] = 2430, + [4091] = 2387, + [4092] = 1066, + [4093] = 2368, + [4094] = 1062, + [4095] = 2412, + [4096] = 2357, + [4097] = 2408, + [4098] = 2410, + [4099] = 2396, + [4100] = 2363, + [4101] = 2361, + [4102] = 4102, + [4103] = 2302, + [4104] = 4104, + [4105] = 2038, + [4106] = 2429, + [4107] = 2030, + [4108] = 2411, + [4109] = 2395, + [4110] = 2348, + [4111] = 4111, + [4112] = 2393, + [4113] = 2324, + [4114] = 2359, + [4115] = 2409, + [4116] = 4116, [4117] = 4117, - [4118] = 2584, - [4119] = 2490, - [4120] = 2463, + [4118] = 4116, + [4119] = 4116, + [4120] = 4120, [4121] = 4121, - [4122] = 2207, - [4123] = 2232, - [4124] = 2537, - [4125] = 2236, + [4122] = 4116, + [4123] = 4120, + [4124] = 2314, + [4125] = 4120, [4126] = 4126, - [4127] = 2235, + [4127] = 4117, [4128] = 4128, - [4129] = 4129, - [4130] = 2585, - [4131] = 2513, - [4132] = 2479, - [4133] = 2530, - [4134] = 2481, - [4135] = 2503, - [4136] = 2586, - [4137] = 2588, - [4138] = 2504, - [4139] = 2589, - [4140] = 2510, - [4141] = 2531, - [4142] = 2536, - [4143] = 2546, - [4144] = 2487, - [4145] = 2593, - [4146] = 2592, - [4147] = 2591, - [4148] = 4148, - [4149] = 4149, + [4129] = 4120, + [4130] = 4120, + [4131] = 4131, + [4132] = 4132, + [4133] = 4133, + [4134] = 4134, + [4135] = 4116, + [4136] = 4136, + [4137] = 4136, + [4138] = 4138, + [4139] = 2305, + [4140] = 4140, + [4141] = 4116, + [4142] = 2309, + [4143] = 4143, + [4144] = 4144, + [4145] = 2299, + [4146] = 3916, + [4147] = 4147, + [4148] = 2303, + [4149] = 4120, [4150] = 4150, - [4151] = 4151, - [4152] = 4152, - [4153] = 4153, - [4154] = 4154, - [4155] = 4155, - [4156] = 2453, - [4157] = 2456, + [4151] = 1066, + [4152] = 2429, + [4153] = 2428, + [4154] = 2427, + [4155] = 2426, + [4156] = 2422, + [4157] = 4157, [4158] = 4158, [4159] = 4159, [4160] = 4160, - [4161] = 4159, - [4162] = 4162, + [4161] = 4161, + [4162] = 323, [4163] = 4163, - [4164] = 4159, + [4164] = 4164, [4165] = 4165, - [4166] = 4166, - [4167] = 4167, - [4168] = 4168, - [4169] = 2459, + [4166] = 2395, + [4167] = 4012, + [4168] = 2393, + [4169] = 2392, [4170] = 4159, - [4171] = 2462, + [4171] = 4171, [4172] = 4172, - [4173] = 4149, - [4174] = 4174, + [4173] = 4173, + [4174] = 4012, [4175] = 4175, [4176] = 4176, - [4177] = 4177, - [4178] = 4178, - [4179] = 4179, + [4177] = 4012, + [4178] = 4012, + [4179] = 2325, [4180] = 4180, - [4181] = 4149, + [4181] = 4181, [4182] = 4182, - [4183] = 4149, - [4184] = 4159, + [4183] = 2324, + [4184] = 4164, [4185] = 4185, - [4186] = 4186, + [4186] = 4165, [4187] = 4187, - [4188] = 4188, + [4188] = 4161, [4189] = 4189, - [4190] = 2446, + [4190] = 4190, [4191] = 4191, - [4192] = 2457, - [4193] = 4149, + [4192] = 4192, + [4193] = 4193, [4194] = 4194, [4195] = 4195, - [4196] = 4196, + [4196] = 4164, [4197] = 4197, - [4198] = 4198, - [4199] = 2549, - [4200] = 1229, - [4201] = 2559, - [4202] = 2553, - [4203] = 2529, - [4204] = 2554, - [4205] = 2555, - [4206] = 2511, - [4207] = 1222, - [4208] = 2556, - [4209] = 2207, - [4210] = 2558, - [4211] = 2563, - [4212] = 2569, - [4213] = 2496, - [4214] = 2493, - [4215] = 2570, - [4216] = 1230, - [4217] = 2584, - [4218] = 2518, - [4219] = 2528, - [4220] = 2526, - [4221] = 4221, - [4222] = 2568, - [4223] = 2523, - [4224] = 2572, - [4225] = 2582, - [4226] = 2187, - [4227] = 2520, - [4228] = 2566, - [4229] = 1228, - [4230] = 2472, - [4231] = 2576, - [4232] = 2467, - [4233] = 2574, - [4234] = 2587, - [4235] = 2538, - [4236] = 2527, - [4237] = 2583, - [4238] = 2513, - [4239] = 2525, + [4198] = 327, + [4199] = 4199, + [4200] = 4200, + [4201] = 4201, + [4202] = 4150, + [4203] = 2412, + [4204] = 4204, + [4205] = 2411, + [4206] = 2410, + [4207] = 2409, + [4208] = 2408, + [4209] = 2406, + [4210] = 2402, + [4211] = 2397, + [4212] = 2396, + [4213] = 2394, + [4214] = 2321, + [4215] = 4215, + [4216] = 2387, + [4217] = 4217, + [4218] = 1067, + [4219] = 4219, + [4220] = 2087, + [4221] = 2088, + [4222] = 2089, + [4223] = 4223, + [4224] = 4164, + [4225] = 4225, + [4226] = 4165, + [4227] = 1069, + [4228] = 4228, + [4229] = 4150, + [4230] = 4192, + [4231] = 4231, + [4232] = 4232, + [4233] = 4159, + [4234] = 4234, + [4235] = 4159, + [4236] = 2432, + [4237] = 4237, + [4238] = 4238, + [4239] = 4239, [4240] = 4240, - [4241] = 2226, + [4241] = 4231, [4242] = 4242, - [4243] = 2479, - [4244] = 2466, - [4245] = 2490, - [4246] = 2567, - [4247] = 2571, - [4248] = 2516, - [4249] = 2464, - [4250] = 2468, - [4251] = 1220, - [4252] = 2557, + [4243] = 4243, + [4244] = 4150, + [4245] = 4245, + [4246] = 4246, + [4247] = 2430, + [4248] = 4248, + [4249] = 2103, + [4250] = 4190, + [4251] = 4159, + [4252] = 4144, [4253] = 4253, - [4254] = 2581, - [4255] = 2499, - [4256] = 2498, - [4257] = 2524, - [4258] = 2495, - [4259] = 2539, - [4260] = 2482, - [4261] = 4261, - [4262] = 2449, - [4263] = 4263, + [4254] = 2106, + [4255] = 4140, + [4256] = 2107, + [4257] = 2357, + [4258] = 4159, + [4259] = 2356, + [4260] = 2353, + [4261] = 4231, + [4262] = 2108, + [4263] = 2126, [4264] = 4264, - [4265] = 4265, - [4266] = 4266, - [4267] = 4264, - [4268] = 2459, + [4265] = 2347, + [4266] = 4150, + [4267] = 4192, + [4268] = 4012, [4269] = 4269, - [4270] = 4270, - [4271] = 4264, - [4272] = 4272, - [4273] = 4273, - [4274] = 4270, - [4275] = 4275, - [4276] = 4276, + [4270] = 4240, + [4271] = 4271, + [4272] = 2346, + [4273] = 2345, + [4274] = 4274, + [4275] = 4190, + [4276] = 4161, [4277] = 4277, [4278] = 4278, - [4279] = 2456, + [4279] = 4279, [4280] = 4280, - [4281] = 4264, - [4282] = 4272, - [4283] = 4270, - [4284] = 2453, - [4285] = 4270, + [4281] = 4158, + [4282] = 4282, + [4283] = 4161, + [4284] = 4012, + [4285] = 4285, [4286] = 4286, - [4287] = 4270, - [4288] = 4288, - [4289] = 4264, - [4290] = 4264, - [4291] = 4270, - [4292] = 2462, - [4293] = 4293, - [4294] = 2457, - [4295] = 4079, - [4296] = 4293, - [4297] = 4297, - [4298] = 4298, + [4287] = 4161, + [4288] = 2110, + [4289] = 1062, + [4290] = 4199, + [4291] = 2109, + [4292] = 4164, + [4293] = 2104, + [4294] = 2373, + [4295] = 4012, + [4296] = 2371, + [4297] = 2416, + [4298] = 2368, [4299] = 4299, - [4300] = 4300, + [4300] = 4225, [4301] = 4301, - [4302] = 4302, - [4303] = 4303, - [4304] = 1222, - [4305] = 4305, - [4306] = 4306, - [4307] = 4265, + [4302] = 4237, + [4303] = 4128, + [4304] = 2366, + [4305] = 2365, + [4306] = 4164, + [4307] = 2364, [4308] = 4308, [4309] = 4309, - [4310] = 4310, - [4311] = 4311, - [4312] = 4312, - [4313] = 4313, - [4314] = 4302, - [4315] = 4301, - [4316] = 4275, - [4317] = 4149, - [4318] = 4318, - [4319] = 4311, - [4320] = 4320, - [4321] = 2587, - [4322] = 4322, - [4323] = 4323, - [4324] = 1228, - [4325] = 4305, - [4326] = 4326, - [4327] = 4327, - [4328] = 4328, - [4329] = 2523, - [4330] = 4328, - [4331] = 2526, - [4332] = 4308, - [4333] = 2528, - [4334] = 4320, + [4310] = 2420, + [4311] = 2360, + [4312] = 2359, + [4313] = 4165, + [4314] = 4314, + [4315] = 4315, + [4316] = 4173, + [4317] = 4150, + [4318] = 2340, + [4319] = 2339, + [4320] = 2338, + [4321] = 4192, + [4322] = 4231, + [4323] = 4121, + [4324] = 4165, + [4325] = 4190, + [4326] = 4161, + [4327] = 4190, + [4328] = 4190, + [4329] = 4165, + [4330] = 4330, + [4331] = 4192, + [4332] = 4159, + [4333] = 4231, + [4334] = 4180, [4335] = 4335, - [4336] = 4328, + [4336] = 4336, [4337] = 4337, - [4338] = 4280, + [4338] = 2348, [4339] = 4339, - [4340] = 2499, - [4341] = 4312, - [4342] = 4308, - [4343] = 4276, + [4340] = 4191, + [4341] = 1051, + [4342] = 4187, + [4343] = 4231, [4344] = 4344, - [4345] = 2516, - [4346] = 2498, - [4347] = 4339, + [4345] = 4345, + [4346] = 4346, + [4347] = 4347, [4348] = 4348, - [4349] = 4318, - [4350] = 4308, + [4349] = 4349, + [4350] = 4350, [4351] = 4351, - [4352] = 1229, - [4353] = 1230, + [4352] = 4346, + [4353] = 4353, [4354] = 4354, - [4355] = 4320, - [4356] = 4328, - [4357] = 4351, - [4358] = 4358, - [4359] = 4351, - [4360] = 4360, - [4361] = 4361, + [4355] = 4346, + [4356] = 299, + [4357] = 296, + [4358] = 4346, + [4359] = 4359, + [4360] = 4351, + [4361] = 4359, [4362] = 4362, [4363] = 4363, - [4364] = 4339, + [4364] = 4359, [4365] = 4365, [4366] = 4366, - [4367] = 4149, - [4368] = 2583, - [4369] = 4305, - [4370] = 2574, - [4371] = 2570, - [4372] = 2569, - [4373] = 2563, - [4374] = 2559, - [4375] = 2558, - [4376] = 2556, - [4377] = 2555, - [4378] = 2554, - [4379] = 2553, - [4380] = 4149, - [4381] = 2549, - [4382] = 4297, - [4383] = 4339, - [4384] = 4318, - [4385] = 2572, - [4386] = 4149, + [4367] = 4367, + [4368] = 4359, + [4369] = 4369, + [4370] = 4370, + [4371] = 4371, + [4372] = 4372, + [4373] = 4346, + [4374] = 4346, + [4375] = 4359, + [4376] = 4359, + [4377] = 4359, + [4378] = 4144, + [4379] = 4140, + [4380] = 4362, + [4381] = 4359, + [4382] = 4382, + [4383] = 4383, + [4384] = 4384, + [4385] = 4385, + [4386] = 4386, [4387] = 4387, - [4388] = 2568, - [4389] = 2247, + [4388] = 4388, + [4389] = 4389, [4390] = 4390, - [4391] = 2268, - [4392] = 4362, - [4393] = 4149, - [4394] = 2253, + [4391] = 4391, + [4392] = 4392, + [4393] = 4393, + [4394] = 4394, [4395] = 4395, - [4396] = 4322, + [4396] = 4396, [4397] = 4397, - [4398] = 4398, - [4399] = 2529, - [4400] = 4351, + [4398] = 4366, + [4399] = 4232, + [4400] = 4400, [4401] = 4401, - [4402] = 4323, + [4402] = 4402, [4403] = 4403, [4404] = 4404, - [4405] = 4305, + [4405] = 4405, [4406] = 4406, - [4407] = 4308, - [4408] = 4297, - [4409] = 4297, - [4410] = 4339, - [4411] = 4351, - [4412] = 4328, - [4413] = 304, + [4407] = 4407, + [4408] = 4408, + [4409] = 4409, + [4410] = 4410, + [4411] = 4411, + [4412] = 4412, + [4413] = 4413, [4414] = 4414, [4415] = 4415, [4416] = 4416, - [4417] = 4149, + [4417] = 4417, [4418] = 4418, - [4419] = 2566, - [4420] = 2567, - [4421] = 2571, - [4422] = 4308, - [4423] = 4423, - [4424] = 4318, + [4419] = 4419, + [4420] = 4420, + [4421] = 4411, + [4422] = 4422, + [4423] = 4396, + [4424] = 4424, [4425] = 4425, [4426] = 4426, - [4427] = 2524, - [4428] = 2581, - [4429] = 4429, - [4430] = 4430, + [4427] = 4427, + [4428] = 4425, + [4429] = 4405, + [4430] = 4426, [4431] = 4431, - [4432] = 4149, - [4433] = 2518, + [4432] = 4432, + [4433] = 4433, [4434] = 4434, - [4435] = 2520, - [4436] = 2582, - [4437] = 4339, - [4438] = 4438, - [4439] = 4439, - [4440] = 4328, - [4441] = 4320, - [4442] = 4442, + [4435] = 4411, + [4436] = 4436, + [4437] = 4395, + [4438] = 4427, + [4439] = 4405, + [4440] = 4395, + [4441] = 4441, + [4442] = 4102, [4443] = 4443, - [4444] = 4348, - [4445] = 4305, - [4446] = 4446, - [4447] = 2269, - [4448] = 4448, + [4444] = 4396, + [4445] = 4411, + [4446] = 4396, + [4447] = 4447, + [4448] = 4433, [4449] = 4449, - [4450] = 2257, - [4451] = 4351, - [4452] = 314, - [4453] = 4351, - [4454] = 2246, - [4455] = 2261, - [4456] = 2255, - [4457] = 2482, - [4458] = 4318, + [4450] = 4426, + [4451] = 4451, + [4452] = 4452, + [4453] = 4453, + [4454] = 4454, + [4455] = 4388, + [4456] = 4425, + [4457] = 4457, + [4458] = 4458, [4459] = 4459, - [4460] = 4297, + [4460] = 4460, [4461] = 4461, [4462] = 4462, - [4463] = 2496, - [4464] = 4318, + [4463] = 4463, + [4464] = 4464, [4465] = 4465, - [4466] = 2468, + [4466] = 4466, [4467] = 4467, - [4468] = 4468, - [4469] = 2472, - [4470] = 4326, - [4471] = 1220, - [4472] = 2495, - [4473] = 2576, + [4468] = 4064, + [4469] = 4425, + [4470] = 4176, + [4471] = 4471, + [4472] = 4472, + [4473] = 4473, [4474] = 4474, - [4475] = 4305, - [4476] = 4320, - [4477] = 2539, - [4478] = 4297, - [4479] = 2525, - [4480] = 4480, - [4481] = 2511, - [4482] = 2467, - [4483] = 2235, - [4484] = 2236, + [4475] = 4475, + [4476] = 4476, + [4477] = 4477, + [4478] = 4392, + [4479] = 4427, + [4480] = 4405, + [4481] = 4481, + [4482] = 4426, + [4483] = 316, + [4484] = 4484, [4485] = 4485, [4486] = 4486, - [4487] = 2557, - [4488] = 2464, - [4489] = 2493, - [4490] = 2466, - [4491] = 2232, + [4487] = 4487, + [4488] = 4488, + [4489] = 4489, + [4490] = 4395, + [4491] = 4471, [4492] = 4492, - [4493] = 4493, + [4493] = 4185, [4494] = 4494, [4495] = 4495, [4496] = 4496, [4497] = 4497, - [4498] = 4275, - [4499] = 4499, - [4500] = 4265, + [4498] = 304, + [4499] = 4396, + [4500] = 4433, [4501] = 4501, - [4502] = 4495, + [4502] = 4427, [4503] = 4503, - [4504] = 4503, - [4505] = 4495, - [4506] = 4499, - [4507] = 294, - [4508] = 295, + [4504] = 4504, + [4505] = 4505, + [4506] = 4506, + [4507] = 4488, + [4508] = 4487, [4509] = 4509, - [4510] = 4496, + [4510] = 4510, [4511] = 4511, - [4512] = 4512, - [4513] = 4496, - [4514] = 4495, + [4512] = 4471, + [4513] = 4388, + [4514] = 4514, [4515] = 4515, - [4516] = 4516, - [4517] = 4517, - [4518] = 4518, + [4516] = 4395, + [4517] = 4465, + [4518] = 4392, [4519] = 4519, - [4520] = 4520, - [4521] = 4495, - [4522] = 4495, - [4523] = 4496, - [4524] = 4495, - [4525] = 4496, - [4526] = 4496, + [4520] = 4471, + [4521] = 4471, + [4522] = 4522, + [4523] = 4523, + [4524] = 4524, + [4525] = 4426, + [4526] = 4433, [4527] = 4527, - [4528] = 4495, + [4528] = 4528, [4529] = 4529, [4530] = 4530, [4531] = 4531, - [4532] = 4397, - [4533] = 4533, - [4534] = 4534, - [4535] = 4535, - [4536] = 4536, - [4537] = 4344, - [4538] = 4538, + [4532] = 307, + [4533] = 305, + [4534] = 4488, + [4535] = 4487, + [4536] = 4388, + [4537] = 4537, + [4538] = 4405, [4539] = 4539, [4540] = 4540, - [4541] = 4541, + [4541] = 4426, [4542] = 4542, - [4543] = 4535, + [4543] = 4543, [4544] = 4544, [4545] = 4545, - [4546] = 4546, + [4546] = 4411, [4547] = 4547, - [4548] = 4540, + [4548] = 4548, [4549] = 4549, - [4550] = 4550, - [4551] = 4551, - [4552] = 4240, - [4553] = 4553, + [4550] = 4487, + [4551] = 4405, + [4552] = 4552, + [4553] = 4488, [4554] = 4554, [4555] = 4555, [4556] = 4556, - [4557] = 4535, + [4557] = 4557, [4558] = 4558, - [4559] = 4559, - [4560] = 4560, + [4559] = 316, + [4560] = 4418, [4561] = 4561, - [4562] = 4562, + [4562] = 4427, [4563] = 4563, [4564] = 4564, [4565] = 4565, - [4566] = 4566, - [4567] = 4530, + [4566] = 4487, + [4567] = 4567, [4568] = 4568, - [4569] = 4569, - [4570] = 4570, + [4569] = 4182, + [4570] = 4471, [4571] = 4571, - [4572] = 4556, - [4573] = 305, + [4572] = 4572, + [4573] = 4573, [4574] = 4574, - [4575] = 4575, + [4575] = 4454, [4576] = 4576, [4577] = 4577, [4578] = 4578, [4579] = 4579, [4580] = 4580, [4581] = 4581, - [4582] = 4540, + [4582] = 4392, [4583] = 4583, [4584] = 4584, - [4585] = 4585, - [4586] = 4535, - [4587] = 4587, - [4588] = 4588, + [4585] = 4392, + [4586] = 4586, + [4587] = 294, + [4588] = 4433, [4589] = 4589, - [4590] = 4576, - [4591] = 4540, - [4592] = 4578, - [4593] = 4593, - [4594] = 4535, - [4595] = 4595, - [4596] = 4596, - [4597] = 4570, - [4598] = 4540, + [4590] = 321, + [4591] = 4286, + [4592] = 4592, + [4593] = 331, + [4594] = 4594, + [4595] = 4425, + [4596] = 4433, + [4597] = 4597, + [4598] = 4488, [4599] = 4599, - [4600] = 4556, - [4601] = 4601, + [4600] = 4600, + [4601] = 304, [4602] = 4602, - [4603] = 4603, - [4604] = 4604, + [4603] = 4460, + [4604] = 4126, [4605] = 4605, - [4606] = 4579, + [4606] = 4545, [4607] = 4607, [4608] = 4608, - [4609] = 4609, - [4610] = 4326, + [4609] = 4427, + [4610] = 4610, [4611] = 4611, - [4612] = 4565, + [4612] = 4612, [4613] = 4613, [4614] = 4614, - [4615] = 4538, - [4616] = 4534, - [4617] = 309, + [4615] = 4392, + [4616] = 4616, + [4617] = 4617, [4618] = 4618, [4619] = 4619, - [4620] = 2124, - [4621] = 4538, - [4622] = 4576, - [4623] = 4623, - [4624] = 4624, - [4625] = 4534, + [4620] = 4620, + [4621] = 4621, + [4622] = 4488, + [4623] = 4618, + [4624] = 4487, + [4625] = 1971, [4626] = 4626, [4627] = 4627, [4628] = 4628, - [4629] = 4629, - [4630] = 4630, + [4629] = 4191, + [4630] = 4411, [4631] = 4631, [4632] = 4632, [4633] = 4633, - [4634] = 4634, - [4635] = 4635, - [4636] = 4636, - [4637] = 4637, - [4638] = 4578, - [4639] = 4639, - [4640] = 4640, + [4634] = 4425, + [4635] = 334, + [4636] = 4187, + [4637] = 4396, + [4638] = 4548, + [4639] = 4199, + [4640] = 4180, [4641] = 4641, - [4642] = 4642, + [4642] = 4173, [4643] = 4643, - [4644] = 4550, - [4645] = 4221, - [4646] = 4619, - [4647] = 4647, + [4644] = 4237, + [4645] = 4395, + [4646] = 335, + [4647] = 4277, [4648] = 4648, [4649] = 4649, - [4650] = 4614, - [4651] = 4651, + [4650] = 4650, + [4651] = 4388, [4652] = 4652, - [4653] = 4322, + [4653] = 4652, [4654] = 4654, - [4655] = 4611, - [4656] = 4530, - [4657] = 4266, - [4658] = 4323, - [4659] = 4659, - [4660] = 321, - [4661] = 4301, - [4662] = 4662, - [4663] = 4663, - [4664] = 4619, + [4655] = 4654, + [4656] = 4656, + [4657] = 4657, + [4658] = 4658, + [4659] = 4656, + [4660] = 4104, + [4661] = 4661, + [4662] = 1987, + [4663] = 4451, + [4664] = 4664, [4665] = 4665, - [4666] = 4595, + [4666] = 321, [4667] = 4667, - [4668] = 4668, - [4669] = 4404, - [4670] = 4670, - [4671] = 4671, + [4668] = 4121, + [4669] = 4669, + [4670] = 4656, + [4671] = 4572, [4672] = 4672, [4673] = 4673, - [4674] = 4605, - [4675] = 4675, + [4674] = 4674, + [4675] = 930, [4676] = 4676, - [4677] = 4534, + [4677] = 4577, [4678] = 4678, - [4679] = 4679, - [4680] = 4680, - [4681] = 4681, + [4679] = 4578, + [4680] = 4672, + [4681] = 4661, [4682] = 4682, - [4683] = 4302, - [4684] = 293, - [4685] = 4685, + [4683] = 4683, + [4684] = 4684, + [4685] = 4474, [4686] = 4686, - [4687] = 4530, - [4688] = 4538, + [4687] = 4654, + [4688] = 4561, [4689] = 4689, - [4690] = 4311, - [4691] = 4556, - [4692] = 311, + [4690] = 4661, + [4691] = 4658, + [4692] = 4692, [4693] = 4693, - [4694] = 4579, - [4695] = 4576, - [4696] = 4530, - [4697] = 4697, - [4698] = 4579, - [4699] = 4578, - [4700] = 4387, - [4701] = 327, - [4702] = 4579, - [4703] = 4619, - [4704] = 4614, - [4705] = 4705, - [4706] = 4706, - [4707] = 4707, + [4694] = 4652, + [4695] = 4667, + [4696] = 4390, + [4697] = 4664, + [4698] = 4674, + [4699] = 4699, + [4700] = 4700, + [4701] = 4503, + [4702] = 4702, + [4703] = 4703, + [4704] = 4633, + [4705] = 4467, + [4706] = 4686, + [4707] = 4661, [4708] = 4708, - [4709] = 4709, + [4709] = 4555, [4710] = 4710, - [4711] = 4611, + [4711] = 4711, [4712] = 4712, [4713] = 4713, - [4714] = 4366, - [4715] = 329, - [4716] = 312, - [4717] = 4605, + [4714] = 4708, + [4715] = 1997, + [4716] = 4683, + [4717] = 4664, [4718] = 4718, - [4719] = 4719, - [4720] = 4720, - [4721] = 305, - [4722] = 4722, - [4723] = 4605, - [4724] = 4724, - [4725] = 4365, - [4726] = 4726, - [4727] = 4727, + [4719] = 4661, + [4720] = 4673, + [4721] = 4664, + [4722] = 4703, + [4723] = 4708, + [4724] = 4686, + [4725] = 4397, + [4726] = 4673, + [4727] = 4699, [4728] = 4728, - [4729] = 4729, - [4730] = 4730, + [4729] = 4654, + [4730] = 4597, [4731] = 4731, [4732] = 4732, [4733] = 4733, - [4734] = 333, - [4735] = 4735, - [4736] = 4736, - [4737] = 4737, - [4738] = 4738, + [4734] = 4734, + [4735] = 4699, + [4736] = 4664, + [4737] = 4661, + [4738] = 4594, [4739] = 4739, - [4740] = 4740, - [4741] = 4741, + [4740] = 4674, + [4741] = 4684, [4742] = 4742, - [4743] = 4743, - [4744] = 4578, - [4745] = 4534, - [4746] = 4576, - [4747] = 4747, + [4743] = 4676, + [4744] = 4656, + [4745] = 4710, + [4746] = 4574, + [4747] = 4673, [4748] = 4748, - [4749] = 4611, - [4750] = 4614, - [4751] = 4619, - [4752] = 4538, - [4753] = 4611, - [4754] = 4530, - [4755] = 4627, - [4756] = 4756, + [4749] = 4708, + [4750] = 4674, + [4751] = 4699, + [4752] = 4686, + [4753] = 4674, + [4754] = 4693, + [4755] = 4733, + [4756] = 4602, [4757] = 4757, - [4758] = 4614, - [4759] = 4759, - [4760] = 4760, - [4761] = 4761, - [4762] = 4762, - [4763] = 4763, + [4758] = 4658, + [4759] = 4627, + [4760] = 4703, + [4761] = 4734, + [4762] = 4731, + [4763] = 4733, [4764] = 4764, - [4765] = 311, - [4766] = 4619, - [4767] = 4614, - [4768] = 4768, + [4765] = 4524, + [4766] = 331, + [4767] = 4718, + [4768] = 4389, [4769] = 4769, - [4770] = 4611, - [4771] = 4771, - [4772] = 4534, - [4773] = 4773, - [4774] = 4774, - [4775] = 4775, - [4776] = 4605, - [4777] = 4538, - [4778] = 4778, - [4779] = 4675, + [4770] = 4770, + [4771] = 4605, + [4772] = 4731, + [4773] = 4673, + [4774] = 4652, + [4775] = 4654, + [4776] = 4656, + [4777] = 4669, + [4778] = 4678, + [4779] = 4779, [4780] = 4780, - [4781] = 4781, + [4781] = 4664, [4782] = 4782, - [4783] = 4783, + [4783] = 4657, [4784] = 4784, - [4785] = 4556, - [4786] = 4786, - [4787] = 4576, - [4788] = 4578, + [4785] = 4674, + [4786] = 4673, + [4787] = 4703, + [4788] = 4674, [4789] = 4789, - [4790] = 4605, - [4791] = 4535, + [4790] = 4673, + [4791] = 4366, [4792] = 4792, - [4793] = 4497, - [4794] = 4794, - [4795] = 4764, - [4796] = 4796, - [4797] = 4579, - [4798] = 4540, - [4799] = 4799, - [4800] = 4800, - [4801] = 4801, - [4802] = 4802, - [4803] = 4803, + [4793] = 4654, + [4794] = 4711, + [4795] = 4731, + [4796] = 4733, + [4797] = 4656, + [4798] = 4475, + [4799] = 4708, + [4800] = 4403, + [4801] = 4497, + [4802] = 4703, + [4803] = 4673, [4804] = 4804, [4805] = 4805, - [4806] = 4806, - [4807] = 4807, + [4806] = 4686, + [4807] = 4731, [4808] = 4808, - [4809] = 4809, - [4810] = 4571, - [4811] = 4811, - [4812] = 4812, - [4813] = 4549, + [4809] = 4656, + [4810] = 4351, + [4811] = 4654, + [4812] = 4674, + [4813] = 4658, [4814] = 4814, - [4815] = 4815, - [4816] = 4816, - [4817] = 4545, - [4818] = 4802, - [4819] = 4819, + [4815] = 4128, + [4816] = 4686, + [4817] = 4658, + [4818] = 4703, + [4819] = 4391, [4820] = 4820, - [4821] = 4821, - [4822] = 4822, - [4823] = 4803, + [4821] = 4708, + [4822] = 4656, + [4823] = 4673, [4824] = 4824, - [4825] = 4825, - [4826] = 4826, - [4827] = 4827, - [4828] = 4821, - [4829] = 4829, - [4830] = 4558, - [4831] = 4807, - [4832] = 4806, - [4833] = 4820, - [4834] = 4824, - [4835] = 4835, - [4836] = 4836, - [4837] = 4799, - [4838] = 4838, - [4839] = 4816, - [4840] = 4840, - [4841] = 4812, - [4842] = 4803, - [4843] = 4497, - [4844] = 4668, - [4845] = 4503, - [4846] = 4812, - [4847] = 4816, + [4825] = 4557, + [4826] = 4654, + [4827] = 4769, + [4828] = 4664, + [4829] = 4661, + [4830] = 4657, + [4831] = 4699, + [4832] = 4779, + [4833] = 4748, + [4834] = 4362, + [4835] = 4547, + [4836] = 4742, + [4837] = 4674, + [4838] = 4656, + [4839] = 4657, + [4840] = 4657, + [4841] = 4657, + [4842] = 4731, + [4843] = 4654, + [4844] = 4733, + [4845] = 4652, + [4846] = 4846, + [4847] = 4847, [4848] = 4848, - [4849] = 4812, - [4850] = 4799, - [4851] = 4499, - [4852] = 4821, - [4853] = 4801, - [4854] = 4816, - [4855] = 4821, - [4856] = 4799, - [4857] = 321, - [4858] = 4816, - [4859] = 4806, - [4860] = 4814, + [4849] = 4849, + [4850] = 309, + [4851] = 312, + [4852] = 4852, + [4853] = 4853, + [4854] = 4854, + [4855] = 4855, + [4856] = 4856, + [4857] = 4855, + [4858] = 4858, + [4859] = 4859, + [4860] = 4855, [4861] = 4861, - [4862] = 4807, - [4863] = 4807, - [4864] = 4806, - [4865] = 4799, - [4866] = 4812, + [4862] = 4862, + [4863] = 2361, + [4864] = 2363, + [4865] = 4865, + [4866] = 4866, [4867] = 4867, [4868] = 4868, - [4869] = 4824, - [4870] = 4553, - [4871] = 4802, - [4872] = 4812, - [4873] = 4802, - [4874] = 4816, - [4875] = 4829, - [4876] = 4554, + [4869] = 4869, + [4870] = 1191, + [4871] = 1185, + [4872] = 4872, + [4873] = 299, + [4874] = 1138, + [4875] = 1132, + [4876] = 4876, [4877] = 4877, - [4878] = 4821, - [4879] = 4824, - [4880] = 4253, - [4881] = 4555, - [4882] = 4835, - [4883] = 4801, - [4884] = 4884, - [4885] = 4799, - [4886] = 4803, - [4887] = 4801, - [4888] = 4783, - [4889] = 4812, - [4890] = 4890, - [4891] = 4816, + [4878] = 296, + [4879] = 1055, + [4880] = 1111, + [4881] = 4881, + [4882] = 1114, + [4883] = 4883, + [4884] = 1153, + [4885] = 4855, + [4886] = 4407, + [4887] = 4887, + [4888] = 4888, + [4889] = 4889, + [4890] = 1207, + [4891] = 1168, [4892] = 4892, [4893] = 4893, - [4894] = 4821, - [4895] = 4799, - [4896] = 4896, - [4897] = 4812, - [4898] = 4816, - [4899] = 4544, - [4900] = 4786, - [4901] = 4821, - [4902] = 4902, - [4903] = 4542, - [4904] = 4904, - [4905] = 4905, - [4906] = 2139, - [4907] = 2159, + [4894] = 1000, + [4895] = 1172, + [4896] = 1187, + [4897] = 1208, + [4898] = 4855, + [4899] = 1209, + [4900] = 4900, + [4901] = 1202, + [4902] = 1200, + [4903] = 1192, + [4904] = 1059, + [4905] = 1181, + [4906] = 1144, + [4907] = 4907, [4908] = 4908, - [4909] = 4280, - [4910] = 4910, + [4909] = 979, + [4910] = 4847, [4911] = 4911, [4912] = 4912, - [4913] = 4913, - [4914] = 4914, - [4915] = 4915, - [4916] = 4821, - [4917] = 4829, - [4918] = 4559, - [4919] = 4806, - [4920] = 4807, - [4921] = 4562, - [4922] = 4915, - [4923] = 4829, - [4924] = 4566, - [4925] = 4816, - [4926] = 4799, - [4927] = 4803, - [4928] = 4928, - [4929] = 4707, - [4930] = 4868, - [4931] = 4603, - [4932] = 4812, - [4933] = 4800, - [4934] = 4826, - [4935] = 4902, - [4936] = 4799, - [4937] = 4892, - [4938] = 4602, - [4939] = 4800, - [4940] = 4814, - [4941] = 4820, - [4942] = 4942, - [4943] = 4914, + [4913] = 974, + [4914] = 975, + [4915] = 1135, + [4916] = 1021, + [4917] = 4917, + [4918] = 1117, + [4919] = 1097, + [4920] = 1094, + [4921] = 1092, + [4922] = 1089, + [4923] = 1084, + [4924] = 1074, + [4925] = 1073, + [4926] = 1064, + [4927] = 1063, + [4928] = 1036, + [4929] = 1052, + [4930] = 1019, + [4931] = 1012, + [4932] = 1014, + [4933] = 4933, + [4934] = 4934, + [4935] = 1040, + [4936] = 4936, + [4937] = 4937, + [4938] = 1032, + [4939] = 1028, + [4940] = 1071, + [4941] = 1077, + [4942] = 1080, + [4943] = 4943, [4944] = 4944, - [4945] = 4806, - [4946] = 4601, - [4947] = 4805, - [4948] = 4800, - [4949] = 4814, - [4950] = 4820, - [4951] = 4801, - [4952] = 4815, - [4953] = 4807, - [4954] = 4806, - [4955] = 4910, - [4956] = 4807, - [4957] = 4564, - [4958] = 4905, - [4959] = 4959, - [4960] = 4911, - [4961] = 4577, - [4962] = 4884, - [4963] = 4800, - [4964] = 4580, - [4965] = 4814, - [4966] = 4820, - [4967] = 4904, - [4968] = 4802, + [4945] = 1088, + [4946] = 1103, + [4947] = 4947, + [4948] = 4948, + [4949] = 1154, + [4950] = 4950, + [4951] = 4951, + [4952] = 1158, + [4953] = 4953, + [4954] = 4954, + [4955] = 1167, + [4956] = 1182, + [4957] = 4957, + [4958] = 4958, + [4959] = 1043, + [4960] = 4960, + [4961] = 1195, + [4962] = 4962, + [4963] = 1070, + [4964] = 1147, + [4965] = 4965, + [4966] = 4966, + [4967] = 4967, + [4968] = 4614, [4969] = 4969, - [4970] = 4581, - [4971] = 4800, - [4972] = 4821, - [4973] = 4802, - [4974] = 4877, - [4975] = 4824, - [4976] = 4814, - [4977] = 4829, - [4978] = 4276, - [4979] = 4824, - [4980] = 4599, - [4981] = 4981, - [4982] = 4905, - [4983] = 4819, - [4984] = 4583, - [4985] = 4533, - [4986] = 4905, - [4987] = 4905, - [4988] = 4905, - [4989] = 929, - [4990] = 4959, - [4991] = 309, - [4992] = 4992, - [4993] = 4993, + [4970] = 4970, + [4971] = 4971, + [4972] = 973, + [4973] = 1143, + [4974] = 4974, + [4975] = 1142, + [4976] = 4976, + [4977] = 4977, + [4978] = 4911, + [4979] = 4979, + [4980] = 4980, + [4981] = 1102, + [4982] = 1093, + [4983] = 1085, + [4984] = 1022, + [4985] = 1030, + [4986] = 1198, + [4987] = 1215, + [4988] = 1213, + [4989] = 4989, + [4990] = 4990, + [4991] = 1211, + [4992] = 1210, + [4993] = 1199, [4994] = 4994, - [4995] = 4995, + [4995] = 4911, [4996] = 4996, - [4997] = 326, - [4998] = 323, + [4997] = 4997, + [4998] = 4998, [4999] = 4999, - [5000] = 5000, + [5000] = 1197, [5001] = 5001, [5002] = 5002, [5003] = 5003, @@ -9471,225 +9479,225 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5005] = 5005, [5006] = 5006, [5007] = 5007, - [5008] = 5008, + [5008] = 5004, [5009] = 5009, - [5010] = 2490, - [5011] = 2479, + [5010] = 5010, + [5011] = 5011, [5012] = 5012, [5013] = 5013, [5014] = 5014, - [5015] = 5015, - [5016] = 5016, - [5017] = 1029, - [5018] = 1030, + [5015] = 5013, + [5016] = 5001, + [5017] = 5017, + [5018] = 5018, [5019] = 5019, - [5020] = 1120, - [5021] = 1023, - [5022] = 1025, - [5023] = 5023, - [5024] = 5024, - [5025] = 294, - [5026] = 295, - [5027] = 1089, - [5028] = 1096, - [5029] = 1114, - [5030] = 1223, - [5031] = 1123, - [5032] = 1004, - [5033] = 1124, - [5034] = 1201, - [5035] = 1170, - [5036] = 1172, - [5037] = 1173, - [5038] = 1175, - [5039] = 1176, - [5040] = 1182, - [5041] = 1184, - [5042] = 1190, - [5043] = 1014, - [5044] = 1018, - [5045] = 1019, - [5046] = 1200, - [5047] = 1213, - [5048] = 1219, - [5049] = 1181, - [5050] = 1224, - [5051] = 1225, - [5052] = 1226, - [5053] = 1245, - [5054] = 1236, - [5055] = 1246, - [5056] = 1247, - [5057] = 1253, - [5058] = 1251, - [5059] = 1252, - [5060] = 997, - [5061] = 995, - [5062] = 983, - [5063] = 1193, - [5064] = 5064, - [5065] = 1188, - [5066] = 5066, - [5067] = 1187, + [5020] = 5020, + [5021] = 4976, + [5022] = 4970, + [5023] = 5001, + [5024] = 5013, + [5025] = 5025, + [5026] = 5026, + [5027] = 4855, + [5028] = 5028, + [5029] = 5029, + [5030] = 5030, + [5031] = 4976, + [5032] = 4970, + [5033] = 5033, + [5034] = 4954, + [5035] = 5035, + [5036] = 5036, + [5037] = 5030, + [5038] = 5029, + [5039] = 5007, + [5040] = 5006, + [5041] = 4960, + [5042] = 4953, + [5043] = 5043, + [5044] = 5044, + [5045] = 5045, + [5046] = 5046, + [5047] = 5047, + [5048] = 4979, + [5049] = 5049, + [5050] = 5050, + [5051] = 4847, + [5052] = 5052, + [5053] = 5035, + [5054] = 5036, + [5055] = 5030, + [5056] = 5029, + [5057] = 5057, + [5058] = 5007, + [5059] = 5006, + [5060] = 4960, + [5061] = 4953, + [5062] = 5004, + [5063] = 5063, + [5064] = 4847, + [5065] = 5065, + [5066] = 4868, + [5067] = 5067, [5068] = 5068, - [5069] = 5069, + [5069] = 5004, [5070] = 5070, [5071] = 5071, [5072] = 5072, - [5073] = 1183, - [5074] = 1076, - [5075] = 5075, - [5076] = 5076, - [5077] = 1179, - [5078] = 1177, - [5079] = 1171, - [5080] = 1098, - [5081] = 5081, - [5082] = 1093, - [5083] = 5083, - [5084] = 1091, - [5085] = 1083, - [5086] = 1026, - [5087] = 1027, - [5088] = 1036, - [5089] = 1038, + [5073] = 4852, + [5074] = 5036, + [5075] = 5035, + [5076] = 5036, + [5077] = 4954, + [5078] = 5030, + [5079] = 5025, + [5080] = 4848, + [5081] = 5029, + [5082] = 5082, + [5083] = 5007, + [5084] = 5013, + [5085] = 5006, + [5086] = 5086, + [5087] = 4960, + [5088] = 4953, + [5089] = 5089, [5090] = 5090, - [5091] = 5014, - [5092] = 1017, - [5093] = 5083, + [5091] = 4853, + [5092] = 4847, + [5093] = 5093, [5094] = 5094, [5095] = 5095, - [5096] = 1043, - [5097] = 1061, - [5098] = 1062, - [5099] = 1063, + [5096] = 5096, + [5097] = 5097, + [5098] = 5098, + [5099] = 5099, [5100] = 5100, - [5101] = 1064, - [5102] = 1074, - [5103] = 1075, - [5104] = 1150, - [5105] = 1142, - [5106] = 1143, - [5107] = 1149, - [5108] = 1205, - [5109] = 1185, - [5110] = 1186, + [5101] = 5101, + [5102] = 5102, + [5103] = 5103, + [5104] = 5104, + [5105] = 5105, + [5106] = 5106, + [5107] = 5001, + [5108] = 5108, + [5109] = 5109, + [5110] = 5110, [5111] = 5111, - [5112] = 5095, - [5113] = 5113, + [5112] = 5112, + [5113] = 4868, [5114] = 5114, - [5115] = 5115, - [5116] = 5116, - [5117] = 5117, + [5115] = 5035, + [5116] = 4852, + [5117] = 4848, [5118] = 5118, [5119] = 5119, - [5120] = 5120, - [5121] = 5121, - [5122] = 5019, - [5123] = 5123, + [5120] = 5035, + [5121] = 5036, + [5122] = 5030, + [5123] = 5029, [5124] = 5124, - [5125] = 5095, - [5126] = 5126, - [5127] = 5127, - [5128] = 5128, + [5125] = 5007, + [5126] = 5006, + [5127] = 4960, + [5128] = 4953, [5129] = 5129, - [5130] = 5130, - [5131] = 5003, + [5130] = 4847, + [5131] = 5131, [5132] = 5132, [5133] = 5133, [5134] = 5134, [5135] = 5135, [5136] = 5136, [5137] = 5137, - [5138] = 5138, + [5138] = 4976, [5139] = 5139, - [5140] = 5140, + [5140] = 4970, [5141] = 5141, - [5142] = 5095, - [5143] = 5016, + [5142] = 5142, + [5143] = 5143, [5144] = 5144, - [5145] = 4796, + [5145] = 5145, [5146] = 5146, - [5147] = 5070, + [5147] = 5147, [5148] = 5148, [5149] = 5149, [5150] = 5150, - [5151] = 5081, + [5151] = 5151, [5152] = 5152, [5153] = 5153, [5154] = 5154, [5155] = 5155, [5156] = 5156, [5157] = 5157, - [5158] = 5133, + [5158] = 5158, [5159] = 5159, [5160] = 5160, - [5161] = 5161, + [5161] = 4954, [5162] = 5162, [5163] = 5163, - [5164] = 5164, + [5164] = 4911, [5165] = 5165, - [5166] = 5081, - [5167] = 5095, + [5166] = 4911, + [5167] = 5167, [5168] = 5168, - [5169] = 5169, + [5169] = 5159, [5170] = 5170, [5171] = 5171, - [5172] = 5070, + [5172] = 5172, [5173] = 5173, [5174] = 5174, - [5175] = 5175, + [5175] = 5162, [5176] = 5176, - [5177] = 5177, - [5178] = 5175, - [5179] = 5179, + [5177] = 5119, + [5178] = 5118, + [5179] = 5035, [5180] = 5180, - [5181] = 5181, + [5181] = 5036, [5182] = 5182, - [5183] = 5016, - [5184] = 5184, + [5183] = 5095, + [5184] = 5097, [5185] = 5185, - [5186] = 5186, - [5187] = 5187, + [5186] = 5047, + [5187] = 5046, [5188] = 5188, - [5189] = 5000, - [5190] = 5190, - [5191] = 5191, + [5189] = 5189, + [5190] = 5033, + [5191] = 5030, [5192] = 5192, [5193] = 5193, - [5194] = 5194, - [5195] = 5133, - [5196] = 5004, - [5197] = 5197, + [5194] = 5029, + [5195] = 5195, + [5196] = 5196, + [5197] = 4868, [5198] = 5198, [5199] = 5199, [5200] = 5200, [5201] = 5201, - [5202] = 5202, + [5202] = 5007, [5203] = 5203, [5204] = 5204, - [5205] = 5019, + [5205] = 5006, [5206] = 5206, [5207] = 5207, - [5208] = 5208, + [5208] = 4461, [5209] = 5209, - [5210] = 5210, - [5211] = 5083, + [5210] = 4852, + [5211] = 4974, [5212] = 5212, - [5213] = 5207, - [5214] = 4780, - [5215] = 5014, - [5216] = 5216, + [5213] = 5213, + [5214] = 4848, + [5215] = 4960, + [5216] = 4953, [5217] = 5217, - [5218] = 5218, + [5218] = 4853, [5219] = 5219, - [5220] = 5003, + [5220] = 5220, [5221] = 5221, - [5222] = 5222, + [5222] = 5173, [5223] = 5223, - [5224] = 5170, - [5225] = 5198, - [5226] = 5194, + [5224] = 5224, + [5225] = 5137, + [5226] = 5226, [5227] = 5227, [5228] = 5228, [5229] = 5229, @@ -9701,11 +9709,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5235] = 5235, [5236] = 5236, [5237] = 5237, - [5238] = 5000, + [5238] = 5238, [5239] = 5239, [5240] = 5240, - [5241] = 5241, - [5242] = 5231, + [5241] = 5155, + [5242] = 5242, [5243] = 5243, [5244] = 5244, [5245] = 5245, @@ -9713,505 +9721,505 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5247] = 5247, [5248] = 5248, [5249] = 5249, - [5250] = 5250, + [5250] = 5004, [5251] = 5251, - [5252] = 5000, + [5252] = 5252, [5253] = 5253, [5254] = 5254, [5255] = 5255, - [5256] = 5256, + [5256] = 5013, [5257] = 5257, - [5258] = 5258, + [5258] = 5001, [5259] = 5259, - [5260] = 5260, - [5261] = 5175, + [5260] = 5168, + [5261] = 5261, [5262] = 5262, [5263] = 5263, [5264] = 5264, - [5265] = 5133, + [5265] = 4976, [5266] = 5266, - [5267] = 5170, + [5267] = 5267, [5268] = 5268, [5269] = 5269, [5270] = 5270, - [5271] = 5271, - [5272] = 5272, + [5271] = 4970, + [5272] = 4954, [5273] = 5273, - [5274] = 5274, + [5274] = 4853, [5275] = 5275, - [5276] = 5276, + [5276] = 4782, [5277] = 5277, [5278] = 5278, [5279] = 5279, [5280] = 5280, - [5281] = 5175, - [5282] = 5282, + [5281] = 5226, + [5282] = 4784, [5283] = 5283, [5284] = 5284, [5285] = 5285, - [5286] = 5182, - [5287] = 5169, - [5288] = 5000, - [5289] = 5289, - [5290] = 5003, + [5286] = 4789, + [5287] = 5287, + [5288] = 5288, + [5289] = 5158, + [5290] = 5290, [5291] = 5291, - [5292] = 5292, + [5292] = 4854, [5293] = 5293, [5294] = 5294, [5295] = 5295, - [5296] = 5262, - [5297] = 5135, + [5296] = 5296, + [5297] = 5297, [5298] = 5298, - [5299] = 5299, - [5300] = 5155, - [5301] = 5170, + [5299] = 5170, + [5300] = 5300, + [5301] = 5301, [5302] = 5302, [5303] = 5303, - [5304] = 5304, + [5304] = 4868, [5305] = 5305, [5306] = 5306, - [5307] = 5307, - [5308] = 5308, + [5307] = 4852, + [5308] = 4848, [5309] = 5309, - [5310] = 5310, - [5311] = 5311, + [5310] = 4522, + [5311] = 4523, [5312] = 5312, - [5313] = 5313, + [5313] = 5285, [5314] = 5314, - [5315] = 5076, + [5315] = 5315, [5316] = 5316, [5317] = 5317, - [5318] = 5003, + [5318] = 4665, [5319] = 5319, [5320] = 5320, - [5321] = 5014, + [5321] = 5321, [5322] = 5322, - [5323] = 5083, + [5323] = 5323, [5324] = 5324, [5325] = 5325, [5326] = 5326, - [5327] = 5327, - [5328] = 5095, + [5327] = 4853, + [5328] = 5328, [5329] = 5329, [5330] = 5330, - [5331] = 5174, + [5331] = 5331, [5332] = 5332, [5333] = 5333, - [5334] = 5334, + [5334] = 981, [5335] = 5335, - [5336] = 5134, - [5337] = 5132, - [5338] = 5014, - [5339] = 5083, - [5340] = 5127, + [5336] = 4853, + [5337] = 998, + [5338] = 999, + [5339] = 5339, + [5340] = 1006, [5341] = 5341, - [5342] = 5100, - [5343] = 5114, - [5344] = 5019, + [5342] = 5342, + [5343] = 4848, + [5344] = 4852, [5345] = 5345, - [5346] = 5132, - [5347] = 5134, - [5348] = 5169, - [5349] = 5182, - [5350] = 5207, - [5351] = 5194, - [5352] = 5124, - [5353] = 5119, - [5354] = 5174, - [5355] = 5355, + [5346] = 4868, + [5347] = 5347, + [5348] = 5348, + [5349] = 5349, + [5350] = 5350, + [5351] = 5351, + [5352] = 4954, + [5353] = 5353, + [5354] = 4970, + [5355] = 4976, [5356] = 5356, - [5357] = 4742, - [5358] = 5358, + [5357] = 5357, + [5358] = 5001, [5359] = 5359, [5360] = 5360, [5361] = 5361, [5362] = 5362, - [5363] = 5363, + [5363] = 5004, [5364] = 5364, [5365] = 5365, [5366] = 5366, [5367] = 5367, - [5368] = 5100, + [5368] = 5368, [5369] = 5369, - [5370] = 5114, - [5371] = 5132, + [5370] = 5370, + [5371] = 5371, [5372] = 5372, - [5373] = 5134, + [5373] = 5373, [5374] = 5374, [5375] = 5375, - [5376] = 5175, + [5376] = 5376, [5377] = 5377, - [5378] = 5169, + [5378] = 5378, [5379] = 5379, - [5380] = 5016, + [5380] = 5380, [5381] = 5381, [5382] = 5382, - [5383] = 5182, + [5383] = 5374, [5384] = 5384, - [5385] = 5385, - [5386] = 5207, - [5387] = 5194, - [5388] = 5388, - [5389] = 4808, - [5390] = 5133, - [5391] = 4836, - [5392] = 5392, - [5393] = 5070, - [5394] = 5394, - [5395] = 5174, - [5396] = 4838, - [5397] = 5081, - [5398] = 5398, - [5399] = 5399, + [5385] = 5375, + [5386] = 5375, + [5387] = 5374, + [5388] = 5382, + [5389] = 5381, + [5390] = 5378, + [5391] = 5391, + [5392] = 5376, + [5393] = 5373, + [5394] = 5379, + [5395] = 5380, + [5396] = 5384, + [5397] = 5397, + [5398] = 5374, + [5399] = 5375, [5400] = 5400, [5401] = 5401, - [5402] = 5402, - [5403] = 5403, - [5404] = 5404, + [5402] = 5378, + [5403] = 5376, + [5404] = 954, [5405] = 5405, [5406] = 5406, - [5407] = 5407, - [5408] = 5408, - [5409] = 5409, - [5410] = 5410, - [5411] = 5411, - [5412] = 5412, + [5407] = 5374, + [5408] = 5375, + [5409] = 5378, + [5410] = 5376, + [5411] = 5391, + [5412] = 5374, [5413] = 5413, - [5414] = 5414, - [5415] = 5114, - [5416] = 5416, - [5417] = 5100, - [5418] = 5114, - [5419] = 5132, - [5420] = 5134, - [5421] = 5421, - [5422] = 5169, - [5423] = 5182, - [5424] = 5251, - [5425] = 5408, - [5426] = 5000, - [5427] = 5427, - [5428] = 5207, + [5414] = 5375, + [5415] = 5378, + [5416] = 5376, + [5417] = 5374, + [5418] = 5418, + [5419] = 5419, + [5420] = 5382, + [5421] = 5381, + [5422] = 5375, + [5423] = 5378, + [5424] = 5376, + [5425] = 5374, + [5426] = 5375, + [5427] = 5378, + [5428] = 5376, [5429] = 5429, - [5430] = 5194, - [5431] = 5431, + [5430] = 5374, + [5431] = 5375, [5432] = 5432, - [5433] = 5433, - [5434] = 5434, - [5435] = 5174, - [5436] = 5436, + [5433] = 5378, + [5434] = 5376, + [5435] = 5378, + [5436] = 5376, [5437] = 5437, - [5438] = 5438, - [5439] = 5170, + [5438] = 5380, + [5439] = 5379, [5440] = 5440, [5441] = 5441, [5442] = 5442, - [5443] = 5162, - [5444] = 5366, + [5443] = 5443, + [5444] = 5444, [5445] = 5445, - [5446] = 5367, - [5447] = 5447, - [5448] = 5003, - [5449] = 5449, + [5446] = 5446, + [5447] = 5377, + [5448] = 5448, + [5449] = 5391, [5450] = 5450, [5451] = 5451, - [5452] = 5452, - [5453] = 5019, - [5454] = 5454, + [5452] = 5405, + [5453] = 995, + [5454] = 5373, [5455] = 5455, [5456] = 5456, - [5457] = 5133, + [5457] = 5457, [5458] = 5458, [5459] = 5459, [5460] = 5460, - [5461] = 5461, - [5462] = 5014, - [5463] = 5083, - [5464] = 5332, - [5465] = 5465, - [5466] = 5466, - [5467] = 5467, - [5468] = 5259, - [5469] = 5016, - [5470] = 5470, - [5471] = 5471, - [5472] = 5305, - [5473] = 5473, - [5474] = 5081, - [5475] = 5200, - [5476] = 5019, - [5477] = 5100, - [5478] = 5070, - [5479] = 5081, - [5480] = 5075, - [5481] = 5069, - [5482] = 5070, - [5483] = 5100, - [5484] = 5114, - [5485] = 5132, - [5486] = 5134, + [5461] = 5373, + [5462] = 5413, + [5463] = 5463, + [5464] = 5464, + [5465] = 5376, + [5466] = 5378, + [5467] = 5445, + [5468] = 5381, + [5469] = 5382, + [5470] = 5419, + [5471] = 5418, + [5472] = 5450, + [5473] = 5384, + [5474] = 5377, + [5475] = 5475, + [5476] = 5476, + [5477] = 5451, + [5478] = 5375, + [5479] = 5374, + [5480] = 5405, + [5481] = 5481, + [5482] = 5482, + [5483] = 5443, + [5484] = 5441, + [5485] = 5440, + [5486] = 5486, [5487] = 5487, - [5488] = 5488, - [5489] = 5489, + [5488] = 5379, + [5489] = 5380, [5490] = 5490, - [5491] = 5169, - [5492] = 5492, - [5493] = 5182, - [5494] = 5016, - [5495] = 4678, - [5496] = 4676, - [5497] = 5497, - [5498] = 5207, - [5499] = 5194, - [5500] = 5174, - [5501] = 4969, - [5502] = 5502, - [5503] = 5503, - [5504] = 5504, - [5505] = 5505, - [5506] = 5506, - [5507] = 5507, - [5508] = 5508, - [5509] = 5509, - [5510] = 5510, + [5491] = 5445, + [5492] = 5391, + [5493] = 5493, + [5494] = 5450, + [5495] = 5429, + [5496] = 5496, + [5497] = 5432, + [5498] = 5498, + [5499] = 5405, + [5500] = 5445, + [5501] = 5501, + [5502] = 5450, + [5503] = 5432, + [5504] = 5413, + [5505] = 5380, + [5506] = 5379, + [5507] = 5440, + [5508] = 5441, + [5509] = 5443, + [5510] = 5429, [5511] = 5511, - [5512] = 5512, - [5513] = 986, - [5514] = 5514, + [5512] = 5377, + [5513] = 5413, + [5514] = 4996, [5515] = 5515, - [5516] = 1013, - [5517] = 1012, - [5518] = 5518, - [5519] = 999, + [5516] = 2021, + [5517] = 5486, + [5518] = 5450, + [5519] = 5481, [5520] = 5520, - [5521] = 5521, + [5521] = 5429, [5522] = 5522, - [5523] = 5523, - [5524] = 5524, + [5523] = 5429, + [5524] = 5432, [5525] = 5525, - [5526] = 5526, + [5526] = 5432, [5527] = 5527, - [5528] = 5520, + [5528] = 5528, [5529] = 5529, [5530] = 5530, - [5531] = 5531, - [5532] = 5532, - [5533] = 5533, - [5534] = 5521, - [5535] = 5535, - [5536] = 5536, - [5537] = 5537, - [5538] = 5527, + [5531] = 5380, + [5532] = 5373, + [5533] = 5379, + [5534] = 5534, + [5535] = 5440, + [5536] = 5441, + [5537] = 5443, + [5538] = 5377, [5539] = 5539, - [5540] = 5520, - [5541] = 5541, - [5542] = 5542, - [5543] = 5532, - [5544] = 5536, - [5545] = 5545, - [5546] = 5527, - [5547] = 5524, - [5548] = 5520, + [5540] = 5380, + [5541] = 5373, + [5542] = 5379, + [5543] = 5440, + [5544] = 5441, + [5545] = 5443, + [5546] = 5376, + [5547] = 5378, + [5548] = 5413, [5549] = 5549, - [5550] = 5532, - [5551] = 5536, - [5552] = 5552, - [5553] = 5526, - [5554] = 5554, + [5550] = 5550, + [5551] = 5551, + [5552] = 5376, + [5553] = 5378, + [5554] = 5445, [5555] = 5555, - [5556] = 5556, - [5557] = 5536, - [5558] = 5532, - [5559] = 5527, - [5560] = 5560, - [5561] = 5561, - [5562] = 5562, - [5563] = 5563, - [5564] = 957, - [5565] = 5520, - [5566] = 5566, - [5567] = 5532, - [5568] = 5536, - [5569] = 5537, + [5556] = 5381, + [5557] = 5382, + [5558] = 5377, + [5559] = 5419, + [5560] = 5397, + [5561] = 5418, + [5562] = 5381, + [5563] = 5382, + [5564] = 5419, + [5565] = 5384, + [5566] = 5418, + [5567] = 4999, + [5568] = 5522, + [5569] = 2083, [5570] = 5570, - [5571] = 5524, - [5572] = 5549, - [5573] = 5573, - [5574] = 5533, - [5575] = 5575, - [5576] = 5521, - [5577] = 5526, - [5578] = 5536, - [5579] = 5579, - [5580] = 5532, - [5581] = 5527, - [5582] = 5520, - [5583] = 5579, - [5584] = 5530, - [5585] = 5585, - [5586] = 5527, - [5587] = 5520, - [5588] = 5588, - [5589] = 5589, - [5590] = 5590, - [5591] = 5591, - [5592] = 5592, - [5593] = 5532, - [5594] = 5524, - [5595] = 5530, - [5596] = 5536, - [5597] = 5592, - [5598] = 5590, - [5599] = 5255, - [5600] = 5588, - [5601] = 5585, - [5602] = 5588, - [5603] = 5590, - [5604] = 5592, - [5605] = 5585, + [5571] = 5375, + [5572] = 5384, + [5573] = 5374, + [5574] = 5373, + [5575] = 5376, + [5576] = 5576, + [5577] = 5378, + [5578] = 5375, + [5579] = 5374, + [5580] = 5549, + [5581] = 5481, + [5582] = 5381, + [5583] = 5382, + [5584] = 294, + [5585] = 5405, + [5586] = 5419, + [5587] = 305, + [5588] = 307, + [5589] = 5418, + [5590] = 5481, + [5591] = 1015, + [5592] = 1018, + [5593] = 5444, + [5594] = 5481, + [5595] = 5384, + [5596] = 2040, + [5597] = 5576, + [5598] = 5391, + [5599] = 4407, + [5600] = 5375, + [5601] = 5374, + [5602] = 5602, + [5603] = 5603, + [5604] = 5604, + [5605] = 5605, [5606] = 5606, - [5607] = 5520, - [5608] = 5579, - [5609] = 5527, - [5610] = 5610, - [5611] = 2199, - [5612] = 5612, - [5613] = 5526, - [5614] = 1005, + [5607] = 5607, + [5608] = 5608, + [5609] = 5609, + [5610] = 2104, + [5611] = 5611, + [5612] = 2109, + [5613] = 2110, + [5614] = 2126, [5615] = 5615, - [5616] = 5535, + [5616] = 5616, [5617] = 5617, - [5618] = 5520, - [5619] = 5527, - [5620] = 5545, - [5621] = 5621, - [5622] = 5566, + [5618] = 2108, + [5619] = 2107, + [5620] = 5620, + [5621] = 2106, + [5622] = 2103, [5623] = 5623, [5624] = 5624, - [5625] = 5532, + [5625] = 5625, [5626] = 5626, - [5627] = 5536, - [5628] = 5527, - [5629] = 5612, - [5630] = 5520, + [5627] = 5617, + [5628] = 2089, + [5629] = 5629, + [5630] = 5630, [5631] = 5631, [5632] = 5632, - [5633] = 5570, + [5633] = 5633, [5634] = 5634, - [5635] = 5635, - [5636] = 5532, - [5637] = 5536, - [5638] = 5545, - [5639] = 5589, - [5640] = 5640, - [5641] = 5549, - [5642] = 5563, - [5643] = 5643, - [5644] = 5570, - [5645] = 5561, - [5646] = 5555, - [5647] = 5560, - [5648] = 5556, - [5649] = 5556, - [5650] = 5555, - [5651] = 5537, - [5652] = 5560, - [5653] = 5549, - [5654] = 5561, - [5655] = 5563, - [5656] = 5555, - [5657] = 5566, - [5658] = 5556, - [5659] = 5545, - [5660] = 5560, + [5635] = 5617, + [5636] = 2088, + [5637] = 2387, + [5638] = 2402, + [5639] = 5634, + [5640] = 5605, + [5641] = 5634, + [5642] = 5617, + [5643] = 4451, + [5644] = 5644, + [5645] = 5607, + [5646] = 5646, + [5647] = 5647, + [5648] = 5608, + [5649] = 5649, + [5650] = 5650, + [5651] = 5651, + [5652] = 5652, + [5653] = 5653, + [5654] = 5654, + [5655] = 5655, + [5656] = 5656, + [5657] = 5657, + [5658] = 4407, + [5659] = 5659, + [5660] = 5634, [5661] = 5661, [5662] = 5662, [5663] = 5663, - [5664] = 5561, - [5665] = 5563, - [5666] = 5563, - [5667] = 5561, - [5668] = 5560, + [5664] = 5664, + [5665] = 5665, + [5666] = 5666, + [5667] = 5667, + [5668] = 5668, [5669] = 5669, [5670] = 5670, - [5671] = 5556, - [5672] = 5555, + [5671] = 5617, + [5672] = 5672, [5673] = 5673, - [5674] = 5530, - [5675] = 5566, - [5676] = 5524, + [5674] = 5674, + [5675] = 5675, + [5676] = 5676, [5677] = 5677, - [5678] = 5555, - [5679] = 5556, - [5680] = 5570, + [5678] = 5678, + [5679] = 5679, + [5680] = 5680, [5681] = 5681, - [5682] = 5566, - [5683] = 5537, - [5684] = 5522, - [5685] = 5271, - [5686] = 5549, - [5687] = 5681, - [5688] = 5521, - [5689] = 5527, - [5690] = 5570, - [5691] = 2173, + [5682] = 5682, + [5683] = 5683, + [5684] = 5684, + [5685] = 5685, + [5686] = 5686, + [5687] = 5687, + [5688] = 5688, + [5689] = 5689, + [5690] = 5690, + [5691] = 5691, [5692] = 5692, - [5693] = 5545, - [5694] = 5694, - [5695] = 5570, - [5696] = 5592, - [5697] = 5527, - [5698] = 5698, - [5699] = 5590, - [5700] = 5520, - [5701] = 5532, - [5702] = 5536, + [5693] = 5693, + [5694] = 5605, + [5695] = 5695, + [5696] = 5696, + [5697] = 5630, + [5698] = 5607, + [5699] = 5608, + [5700] = 5700, + [5701] = 5701, + [5702] = 5702, [5703] = 5703, - [5704] = 5535, - [5705] = 5527, - [5706] = 5520, - [5707] = 5703, - [5708] = 5592, - [5709] = 5526, - [5710] = 5590, - [5711] = 5588, - [5712] = 5537, - [5713] = 5585, - [5714] = 5535, - [5715] = 5555, - [5716] = 5592, - [5717] = 5590, - [5718] = 5588, - [5719] = 5585, - [5720] = 5720, - [5721] = 5536, - [5722] = 5532, - [5723] = 5579, - [5724] = 5590, - [5725] = 5592, - [5726] = 5535, - [5727] = 5579, - [5728] = 5579, - [5729] = 5520, + [5704] = 5704, + [5705] = 5705, + [5706] = 5706, + [5707] = 5707, + [5708] = 5631, + [5709] = 5709, + [5710] = 5710, + [5711] = 5711, + [5712] = 5649, + [5713] = 5713, + [5714] = 5714, + [5715] = 5632, + [5716] = 5716, + [5717] = 5717, + [5718] = 5718, + [5719] = 5719, + [5720] = 5644, + [5721] = 5721, + [5722] = 5722, + [5723] = 5723, + [5724] = 5724, + [5725] = 5725, + [5726] = 5726, + [5727] = 5727, + [5728] = 5728, + [5729] = 5729, [5730] = 5730, - [5731] = 5530, - [5732] = 5527, - [5733] = 2189, - [5734] = 5532, - [5735] = 5536, - [5736] = 5730, - [5737] = 5570, - [5738] = 4796, - [5739] = 5532, - [5740] = 293, - [5741] = 5536, - [5742] = 312, - [5743] = 5521, - [5744] = 329, - [5745] = 976, - [5746] = 973, - [5747] = 5566, - [5748] = 5556, + [5731] = 5654, + [5732] = 5732, + [5733] = 5733, + [5734] = 5734, + [5735] = 5735, + [5736] = 5656, + [5737] = 5657, + [5738] = 5738, + [5739] = 5659, + [5740] = 5740, + [5741] = 5741, + [5742] = 5742, + [5743] = 5743, + [5744] = 5744, + [5745] = 5745, + [5746] = 5746, + [5747] = 5747, + [5748] = 5611, [5749] = 5749, [5750] = 5750, [5751] = 5751, @@ -10227,9 +10235,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5761] = 5761, [5762] = 5762, [5763] = 5763, - [5764] = 5764, + [5764] = 4561, [5765] = 5765, - [5766] = 5766, + [5766] = 5696, [5767] = 5767, [5768] = 5768, [5769] = 5769, @@ -10247,182 +10255,182 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5781] = 5781, [5782] = 5782, [5783] = 5783, - [5784] = 5784, + [5784] = 5700, [5785] = 5785, [5786] = 5786, [5787] = 5787, [5788] = 5788, [5789] = 5789, [5790] = 5790, - [5791] = 5791, + [5791] = 5716, [5792] = 5792, [5793] = 5793, [5794] = 5794, [5795] = 5795, [5796] = 5796, [5797] = 5797, - [5798] = 5798, + [5798] = 5767, [5799] = 5799, [5800] = 5800, - [5801] = 5801, + [5801] = 5775, [5802] = 5802, - [5803] = 5803, + [5803] = 978, [5804] = 5804, [5805] = 5805, [5806] = 5806, [5807] = 5807, - [5808] = 5808, + [5808] = 5799, [5809] = 5809, [5810] = 5810, - [5811] = 5811, - [5812] = 5812, - [5813] = 5813, - [5814] = 5814, - [5815] = 5815, + [5811] = 5797, + [5812] = 5800, + [5813] = 5786, + [5814] = 5792, + [5815] = 5789, [5816] = 5816, - [5817] = 5817, - [5818] = 5818, + [5817] = 5794, + [5818] = 5634, [5819] = 5819, - [5820] = 5820, + [5820] = 5796, [5821] = 5821, - [5822] = 5822, + [5822] = 5797, [5823] = 5823, - [5824] = 5824, + [5824] = 5799, [5825] = 5825, [5826] = 5826, [5827] = 5827, - [5828] = 5828, - [5829] = 5829, + [5828] = 5800, + [5829] = 5796, [5830] = 5830, - [5831] = 5831, - [5832] = 5832, - [5833] = 5833, + [5831] = 5617, + [5832] = 5792, + [5833] = 5789, [5834] = 5834, [5835] = 5835, [5836] = 5836, [5837] = 5837, [5838] = 5838, - [5839] = 5839, - [5840] = 5809, - [5841] = 5807, - [5842] = 5842, + [5839] = 5732, + [5840] = 5734, + [5841] = 5841, + [5842] = 5741, [5843] = 5843, - [5844] = 5844, + [5844] = 5794, [5845] = 5845, - [5846] = 5846, - [5847] = 5847, - [5848] = 5848, - [5849] = 5849, - [5850] = 5850, - [5851] = 5851, + [5846] = 5743, + [5847] = 1016, + [5848] = 5751, + [5849] = 5745, + [5850] = 1000, + [5851] = 1006, [5852] = 5852, - [5853] = 5853, - [5854] = 5854, - [5855] = 5855, + [5853] = 5616, + [5854] = 5786, + [5855] = 5615, [5856] = 5856, [5857] = 5857, [5858] = 5858, [5859] = 5859, [5860] = 5860, [5861] = 5861, - [5862] = 5862, + [5862] = 5751, [5863] = 5863, [5864] = 5864, [5865] = 5865, [5866] = 5866, [5867] = 5867, - [5868] = 2235, - [5869] = 5869, + [5868] = 5868, + [5869] = 5745, [5870] = 5870, - [5871] = 5871, + [5871] = 5686, [5872] = 5872, - [5873] = 5873, + [5873] = 5765, [5874] = 5874, [5875] = 5875, [5876] = 5876, [5877] = 5877, - [5878] = 5878, + [5878] = 5767, [5879] = 5879, - [5880] = 5880, - [5881] = 5881, - [5882] = 5882, - [5883] = 5883, + [5880] = 5663, + [5881] = 5758, + [5882] = 5662, + [5883] = 5661, [5884] = 5884, - [5885] = 5885, + [5885] = 5772, [5886] = 5886, - [5887] = 5887, + [5887] = 5774, [5888] = 5888, [5889] = 5889, [5890] = 5890, [5891] = 5891, [5892] = 5892, - [5893] = 5893, + [5893] = 4557, [5894] = 5894, - [5895] = 5895, + [5895] = 5767, [5896] = 5896, [5897] = 5897, - [5898] = 5898, - [5899] = 5899, + [5898] = 5616, + [5899] = 5615, [5900] = 5900, [5901] = 5901, [5902] = 5902, [5903] = 5903, [5904] = 5904, - [5905] = 5905, - [5906] = 5906, - [5907] = 5907, - [5908] = 5908, - [5909] = 5909, - [5910] = 5910, - [5911] = 5911, + [5905] = 5872, + [5906] = 5786, + [5907] = 5794, + [5908] = 5758, + [5909] = 5796, + [5910] = 5725, + [5911] = 5721, [5912] = 5912, - [5913] = 5913, - [5914] = 5914, - [5915] = 5915, - [5916] = 5916, + [5913] = 5717, + [5914] = 5616, + [5915] = 5615, + [5916] = 5624, [5917] = 5917, - [5918] = 5918, - [5919] = 5919, - [5920] = 5920, - [5921] = 5921, - [5922] = 5922, - [5923] = 4707, - [5924] = 5924, + [5918] = 5626, + [5919] = 5710, + [5920] = 5797, + [5921] = 5765, + [5922] = 5799, + [5923] = 5804, + [5924] = 5686, [5925] = 5925, - [5926] = 5926, - [5927] = 5927, - [5928] = 5928, - [5929] = 5929, + [5926] = 979, + [5927] = 974, + [5928] = 999, + [5929] = 998, [5930] = 5930, - [5931] = 5931, + [5931] = 5800, [5932] = 5932, - [5933] = 5933, - [5934] = 5934, - [5935] = 5935, - [5936] = 5936, + [5933] = 975, + [5934] = 5792, + [5935] = 5789, + [5936] = 2087, [5937] = 5937, [5938] = 5938, - [5939] = 5939, - [5940] = 5940, + [5939] = 5662, + [5940] = 5661, [5941] = 5941, [5942] = 5942, [5943] = 5943, [5944] = 5944, - [5945] = 5945, + [5945] = 5872, [5946] = 5946, [5947] = 5947, [5948] = 5948, - [5949] = 5949, + [5949] = 5156, [5950] = 5950, - [5951] = 5951, - [5952] = 5952, - [5953] = 5953, + [5951] = 5605, + [5952] = 5743, + [5953] = 5663, [5954] = 5954, - [5955] = 5749, - [5956] = 5956, - [5957] = 5957, + [5955] = 5607, + [5956] = 5608, + [5957] = 5758, [5958] = 5958, - [5959] = 5959, + [5959] = 5732, [5960] = 5960, [5961] = 5961, [5962] = 5962, @@ -10432,11 +10440,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5966] = 5966, [5967] = 5967, [5968] = 5968, - [5969] = 5969, - [5970] = 5970, + [5969] = 5616, + [5970] = 5615, [5971] = 5971, - [5972] = 5972, - [5973] = 5973, + [5972] = 4555, + [5973] = 5872, [5974] = 5974, [5975] = 5975, [5976] = 5976, @@ -10444,48 +10452,48 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [5978] = 5978, [5979] = 5979, [5980] = 5980, - [5981] = 5833, + [5981] = 5981, [5982] = 5982, [5983] = 5983, [5984] = 5984, - [5985] = 5882, - [5986] = 5881, + [5985] = 5985, + [5986] = 5986, [5987] = 5987, - [5988] = 5778, + [5988] = 5988, [5989] = 5989, [5990] = 5990, [5991] = 5991, - [5992] = 5877, + [5992] = 5992, [5993] = 5993, [5994] = 5994, - [5995] = 5995, - [5996] = 5822, + [5995] = 5751, + [5996] = 5996, [5997] = 5997, [5998] = 5998, [5999] = 5999, - [6000] = 5821, - [6001] = 6001, + [6000] = 5745, + [6001] = 1019, [6002] = 6002, - [6003] = 5820, + [6003] = 6003, [6004] = 6004, - [6005] = 5817, + [6005] = 6005, [6006] = 6006, - [6007] = 5813, + [6007] = 981, [6008] = 6008, - [6009] = 6009, - [6010] = 6010, - [6011] = 5804, - [6012] = 6012, + [6009] = 1012, + [6010] = 1014, + [6011] = 5624, + [6012] = 5626, [6013] = 6013, - [6014] = 6014, - [6015] = 5800, - [6016] = 5798, + [6014] = 5696, + [6015] = 6015, + [6016] = 6016, [6017] = 6017, [6018] = 6018, [6019] = 6019, [6020] = 6020, [6021] = 6021, - [6022] = 6022, + [6022] = 5109, [6023] = 6023, [6024] = 6024, [6025] = 6025, @@ -10494,121 +10502,121 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6028] = 6028, [6029] = 6029, [6030] = 6030, - [6031] = 5786, - [6032] = 5784, + [6031] = 6031, + [6032] = 6032, [6033] = 6033, [6034] = 6034, [6035] = 6035, [6036] = 6036, - [6037] = 6037, + [6037] = 5872, [6038] = 6038, [6039] = 6039, [6040] = 6040, [6041] = 6041, - [6042] = 6042, + [6042] = 992, [6043] = 6043, - [6044] = 6044, + [6044] = 5686, [6045] = 6045, [6046] = 6046, - [6047] = 6047, + [6047] = 5663, [6048] = 6048, - [6049] = 6049, + [6049] = 5662, [6050] = 6050, - [6051] = 5749, - [6052] = 6052, - [6053] = 5958, - [6054] = 5762, + [6051] = 5767, + [6052] = 5661, + [6053] = 6053, + [6054] = 6054, [6055] = 6055, - [6056] = 5771, + [6056] = 6056, [6057] = 6057, - [6058] = 6058, + [6058] = 5758, [6059] = 6059, - [6060] = 5271, + [6060] = 6060, [6061] = 6061, [6062] = 6062, - [6063] = 5771, + [6063] = 6063, [6064] = 6064, - [6065] = 5773, - [6066] = 5774, + [6065] = 5684, + [6066] = 5786, [6067] = 6067, - [6068] = 5831, + [6068] = 6068, [6069] = 6069, - [6070] = 6070, + [6070] = 5794, [6071] = 6071, - [6072] = 974, - [6073] = 6073, + [6072] = 6072, + [6073] = 5796, [6074] = 6074, - [6075] = 6075, - [6076] = 5778, - [6077] = 6077, + [6075] = 5797, + [6076] = 6076, + [6077] = 5799, [6078] = 6078, - [6079] = 6079, - [6080] = 5774, - [6081] = 5773, - [6082] = 6082, + [6079] = 5616, + [6080] = 6080, + [6081] = 5800, + [6082] = 5644, [6083] = 6083, [6084] = 6084, - [6085] = 5771, - [6086] = 6086, + [6085] = 5792, + [6086] = 5789, [6087] = 6087, - [6088] = 6088, + [6088] = 5615, [6089] = 6089, [6090] = 6090, [6091] = 6091, - [6092] = 5762, - [6093] = 5958, - [6094] = 5749, + [6092] = 6092, + [6093] = 6093, + [6094] = 6094, [6095] = 6095, [6096] = 6096, - [6097] = 5756, - [6098] = 6098, - [6099] = 5807, - [6100] = 5754, - [6101] = 5809, - [6102] = 5752, - [6103] = 5751, + [6097] = 6097, + [6098] = 5649, + [6099] = 6099, + [6100] = 6100, + [6101] = 5751, + [6102] = 5745, + [6103] = 6103, [6104] = 6104, [6105] = 6105, - [6106] = 5809, - [6107] = 5807, - [6108] = 5831, - [6109] = 5778, + [6106] = 6106, + [6107] = 6107, + [6108] = 6108, + [6109] = 5631, [6110] = 6110, [6111] = 6111, [6112] = 6112, - [6113] = 5313, + [6113] = 5725, [6114] = 6114, - [6115] = 5958, - [6116] = 5749, - [6117] = 6117, + [6115] = 5721, + [6116] = 6116, + [6117] = 5717, [6118] = 6118, - [6119] = 4783, + [6119] = 5710, [6120] = 6120, [6121] = 6121, - [6122] = 6122, + [6122] = 5686, [6123] = 6123, [6124] = 6124, [6125] = 6125, [6126] = 6126, [6127] = 6127, [6128] = 6128, - [6129] = 5831, + [6129] = 6129, [6130] = 6130, - [6131] = 6131, + [6131] = 5663, [6132] = 6132, - [6133] = 6133, - [6134] = 5877, + [6133] = 5662, + [6134] = 5661, [6135] = 6135, - [6136] = 5774, + [6136] = 5624, [6137] = 6137, - [6138] = 5881, - [6139] = 5882, - [6140] = 5773, - [6141] = 6141, + [6138] = 6138, + [6139] = 6139, + [6140] = 6140, + [6141] = 973, [6142] = 6142, [6143] = 6143, - [6144] = 1017, - [6145] = 5762, + [6144] = 5626, + [6145] = 6145, [6146] = 6146, [6147] = 6147, [6148] = 6148, @@ -10616,10 +10624,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6150] = 6150, [6151] = 6151, [6152] = 6152, - [6153] = 5778, - [6154] = 5784, + [6153] = 6153, + [6154] = 6154, [6155] = 6155, - [6156] = 5786, + [6156] = 6156, [6157] = 6157, [6158] = 6158, [6159] = 6159, @@ -10628,55 +10636,55 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6162] = 6162, [6163] = 6163, [6164] = 6164, - [6165] = 5958, + [6165] = 6165, [6166] = 6166, - [6167] = 6167, + [6167] = 5624, [6168] = 6168, - [6169] = 6169, + [6169] = 5626, [6170] = 6170, - [6171] = 5784, + [6171] = 6171, [6172] = 6172, - [6173] = 5786, - [6174] = 6174, - [6175] = 6175, - [6176] = 6176, - [6177] = 6177, - [6178] = 4786, + [6173] = 6173, + [6174] = 4996, + [6175] = 5020, + [6176] = 5763, + [6177] = 994, + [6178] = 6178, [6179] = 6179, - [6180] = 5798, + [6180] = 5661, [6181] = 6181, - [6182] = 5800, - [6183] = 5804, + [6182] = 6182, + [6183] = 6183, [6184] = 6184, [6185] = 6185, - [6186] = 6186, - [6187] = 5813, - [6188] = 5817, + [6186] = 5789, + [6187] = 5792, + [6188] = 5799, [6189] = 6189, - [6190] = 5820, - [6191] = 5255, - [6192] = 5821, + [6190] = 6190, + [6191] = 5797, + [6192] = 6192, [6193] = 6193, - [6194] = 5822, - [6195] = 1006, - [6196] = 5798, - [6197] = 5800, - [6198] = 5804, - [6199] = 6184, + [6194] = 5796, + [6195] = 4999, + [6196] = 6196, + [6197] = 6197, + [6198] = 6198, + [6199] = 6199, [6200] = 6200, - [6201] = 983, - [6202] = 5813, + [6201] = 6201, + [6202] = 6202, [6203] = 6203, - [6204] = 995, - [6205] = 5817, - [6206] = 986, - [6207] = 5820, - [6208] = 997, + [6204] = 6204, + [6205] = 6205, + [6206] = 6206, + [6207] = 6207, + [6208] = 6208, [6209] = 6209, - [6210] = 5821, - [6211] = 6185, - [6212] = 6212, - [6213] = 5822, + [6210] = 6210, + [6211] = 6211, + [6212] = 5611, + [6213] = 6213, [6214] = 6214, [6215] = 6215, [6216] = 6216, @@ -10685,1585 +10693,1232 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [6219] = 6219, [6220] = 6220, [6221] = 6221, - [6222] = 5833, - [6223] = 5838, - [6224] = 1018, - [6225] = 6073, - [6226] = 5774, + [6222] = 6222, + [6223] = 6223, + [6224] = 6224, + [6225] = 6225, + [6226] = 5608, [6227] = 6227, [6228] = 6228, - [6229] = 6212, - [6230] = 6230, + [6229] = 6229, + [6230] = 5607, [6231] = 6231, [6232] = 6232, - [6233] = 6216, - [6234] = 5833, + [6233] = 6233, + [6234] = 6234, [6235] = 6235, [6236] = 6236, [6237] = 6237, - [6238] = 5833, - [6239] = 5838, + [6238] = 6238, + [6239] = 6239, [6240] = 6240, - [6241] = 5831, + [6241] = 5605, [6242] = 6242, [6243] = 6243, [6244] = 6244, - [6245] = 5798, + [6245] = 5626, [6246] = 6246, [6247] = 6247, - [6248] = 5800, - [6249] = 5822, + [6248] = 6248, + [6249] = 6249, [6250] = 6250, [6251] = 6251, - [6252] = 5813, - [6253] = 5821, - [6254] = 6254, + [6252] = 5624, + [6253] = 6253, + [6254] = 5796, [6255] = 6255, - [6256] = 5820, + [6256] = 5797, [6257] = 6257, - [6258] = 5817, + [6258] = 5799, [6259] = 6259, - [6260] = 5813, - [6261] = 5817, + [6260] = 5800, + [6261] = 6261, [6262] = 6262, [6263] = 6263, - [6264] = 5804, - [6265] = 5842, + [6264] = 5792, + [6265] = 5789, [6266] = 6266, [6267] = 6267, - [6268] = 5800, - [6269] = 5798, + [6268] = 6268, + [6269] = 6269, [6270] = 6270, - [6271] = 6271, - [6272] = 6272, + [6271] = 5751, + [6272] = 5745, [6273] = 6273, - [6274] = 5820, + [6274] = 6274, [6275] = 6275, - [6276] = 5843, - [6277] = 5842, - [6278] = 6270, + [6276] = 6276, + [6277] = 6277, + [6278] = 6278, [6279] = 6279, - [6280] = 5461, - [6281] = 6272, - [6282] = 6282, + [6280] = 6280, + [6281] = 6281, + [6282] = 5663, [6283] = 6283, - [6284] = 5786, - [6285] = 5784, + [6284] = 5662, + [6285] = 5661, [6286] = 6286, - [6287] = 5843, + [6287] = 6287, [6288] = 6288, [6289] = 6289, [6290] = 6290, [6291] = 6291, [6292] = 6292, [6293] = 6293, - [6294] = 6294, - [6295] = 1019, - [6296] = 5751, + [6294] = 1144, + [6295] = 6295, + [6296] = 6296, [6297] = 6297, - [6298] = 5752, + [6298] = 6298, [6299] = 6299, - [6300] = 5754, - [6301] = 1013, - [6302] = 5756, - [6303] = 1012, + [6300] = 6300, + [6301] = 6301, + [6302] = 6302, + [6303] = 6303, [6304] = 6304, - [6305] = 5762, - [6306] = 6141, - [6307] = 6307, - [6308] = 1014, + [6305] = 6305, + [6306] = 6306, + [6307] = 1031, + [6308] = 6306, [6309] = 6309, [6310] = 6310, - [6311] = 6297, + [6311] = 6311, [6312] = 6312, [6313] = 6313, - [6314] = 5771, + [6314] = 6314, [6315] = 6315, - [6316] = 5773, - [6317] = 5774, - [6318] = 5228, - [6319] = 5875, - [6320] = 6312, + [6316] = 6316, + [6317] = 6317, + [6318] = 6318, + [6319] = 6319, + [6320] = 6318, [6321] = 6321, [6322] = 6322, - [6323] = 6323, - [6324] = 5875, - [6325] = 6325, - [6326] = 5919, - [6327] = 6327, - [6328] = 6328, - [6329] = 6329, - [6330] = 6176, - [6331] = 6141, + [6323] = 1196, + [6324] = 6324, + [6325] = 6321, + [6326] = 1190, + [6327] = 1197, + [6328] = 1198, + [6329] = 6302, + [6330] = 6330, + [6331] = 1199, [6332] = 6332, - [6333] = 4796, - [6334] = 6334, + [6333] = 6333, + [6334] = 1113, [6335] = 6335, - [6336] = 6336, - [6337] = 6337, + [6336] = 1110, + [6337] = 1106, [6338] = 6338, - [6339] = 6339, + [6339] = 6335, [6340] = 6340, - [6341] = 6341, - [6342] = 5809, - [6343] = 999, - [6344] = 5807, + [6341] = 1210, + [6342] = 1211, + [6343] = 334, + [6344] = 6344, [6345] = 6345, [6346] = 6346, - [6347] = 5913, - [6348] = 6348, - [6349] = 1004, - [6350] = 5807, + [6347] = 6347, + [6348] = 1212, + [6349] = 6345, + [6350] = 6350, [6351] = 6351, - [6352] = 5809, - [6353] = 6332, - [6354] = 6335, - [6355] = 6336, - [6356] = 6339, - [6357] = 6357, - [6358] = 6358, - [6359] = 6359, - [6360] = 996, - [6361] = 5774, - [6362] = 5773, - [6363] = 5904, - [6364] = 5771, - [6365] = 6365, - [6366] = 4533, - [6367] = 6367, - [6368] = 6176, - [6369] = 6369, - [6370] = 6141, - [6371] = 5904, - [6372] = 6141, - [6373] = 6373, - [6374] = 6374, - [6375] = 990, - [6376] = 6176, - [6377] = 6377, - [6378] = 5877, - [6379] = 6379, - [6380] = 5915, - [6381] = 6379, - [6382] = 6382, - [6383] = 5784, - [6384] = 5913, + [6352] = 6352, + [6353] = 6353, + [6354] = 6354, + [6355] = 6319, + [6356] = 6345, + [6357] = 1213, + [6358] = 6346, + [6359] = 3471, + [6360] = 6360, + [6361] = 6352, + [6362] = 1119, + [6363] = 6305, + [6364] = 6310, + [6365] = 6311, + [6366] = 1215, + [6367] = 6313, + [6368] = 6351, + [6369] = 6314, + [6370] = 1023, + [6371] = 1020, + [6372] = 1025, + [6373] = 1132, + [6374] = 1138, + [6375] = 6375, + [6376] = 6352, + [6377] = 1026, + [6378] = 6378, + [6379] = 1152, + [6380] = 1029, + [6381] = 312, + [6382] = 309, + [6383] = 6351, + [6384] = 6384, [6385] = 6385, - [6386] = 5786, - [6387] = 6387, + [6386] = 1033, + [6387] = 3483, [6388] = 6388, - [6389] = 6389, - [6390] = 6390, - [6391] = 5915, - [6392] = 6388, - [6393] = 6176, - [6394] = 6176, - [6395] = 6395, - [6396] = 5749, - [6397] = 5958, - [6398] = 6398, + [6389] = 3485, + [6390] = 1034, + [6391] = 1116, + [6392] = 1038, + [6393] = 6393, + [6394] = 1036, + [6395] = 1030, + [6396] = 1022, + [6397] = 6397, + [6398] = 6375, [6399] = 6399, - [6400] = 6400, - [6401] = 5970, - [6402] = 5882, - [6403] = 6403, - [6404] = 5881, - [6405] = 5970, + [6400] = 6314, + [6401] = 6401, + [6402] = 6306, + [6403] = 6313, + [6404] = 6385, + [6405] = 6388, [6406] = 6406, - [6407] = 5877, - [6408] = 2558, - [6409] = 6409, - [6410] = 6410, - [6411] = 2549, + [6407] = 6354, + [6408] = 6318, + [6409] = 6321, + [6410] = 6352, + [6411] = 6311, [6412] = 6412, - [6413] = 6413, - [6414] = 5882, - [6415] = 2268, - [6416] = 2253, - [6417] = 5798, - [6418] = 5813, - [6419] = 6419, - [6420] = 2269, - [6421] = 2257, - [6422] = 5804, - [6423] = 2246, - [6424] = 6424, - [6425] = 2261, - [6426] = 2255, - [6427] = 2247, + [6413] = 6310, + [6414] = 6414, + [6415] = 6415, + [6416] = 6305, + [6417] = 6417, + [6418] = 6418, + [6419] = 6319, + [6420] = 6420, + [6421] = 6421, + [6422] = 1085, + [6423] = 6298, + [6424] = 6296, + [6425] = 6319, + [6426] = 6354, + [6427] = 6427, [6428] = 6428, - [6429] = 2236, - [6430] = 6430, - [6431] = 2232, + [6429] = 6335, + [6430] = 6304, + [6431] = 6431, [6432] = 6432, - [6433] = 5881, - [6434] = 6434, - [6435] = 5800, - [6436] = 6436, - [6437] = 5820, + [6433] = 6351, + [6434] = 3475, + [6435] = 6435, + [6436] = 3476, + [6437] = 6437, [6438] = 6438, - [6439] = 5817, + [6439] = 1093, [6440] = 6440, - [6441] = 1193, - [6442] = 6442, - [6443] = 6443, - [6444] = 6444, - [6445] = 6445, + [6441] = 6303, + [6442] = 335, + [6443] = 1102, + [6444] = 6352, + [6445] = 6375, [6446] = 6446, - [6447] = 333, - [6448] = 6440, + [6447] = 6447, + [6448] = 6306, [6449] = 6449, [6450] = 6450, [6451] = 6451, - [6452] = 6452, - [6453] = 6453, + [6452] = 6318, + [6453] = 6345, [6454] = 6454, [6455] = 6455, - [6456] = 6451, - [6457] = 6457, + [6456] = 6314, + [6457] = 6313, [6458] = 6458, - [6459] = 6459, - [6460] = 6460, - [6461] = 6461, - [6462] = 6462, - [6463] = 6463, - [6464] = 6464, - [6465] = 6465, - [6466] = 6466, - [6467] = 323, - [6468] = 326, - [6469] = 6469, + [6459] = 1035, + [6460] = 6311, + [6461] = 6310, + [6462] = 6302, + [6463] = 1143, + [6464] = 6346, + [6465] = 6435, + [6466] = 6299, + [6467] = 6298, + [6468] = 6296, + [6469] = 6304, [6470] = 6470, - [6471] = 6471, - [6472] = 6442, - [6473] = 6457, - [6474] = 6466, - [6475] = 6470, - [6476] = 6476, - [6477] = 6460, - [6478] = 6478, - [6479] = 6479, - [6480] = 6480, + [6471] = 6321, + [6472] = 1147, + [6473] = 6437, + [6474] = 6305, + [6475] = 6303, + [6476] = 6335, + [6477] = 6477, + [6478] = 6393, + [6479] = 6428, + [6480] = 1070, [6481] = 6481, [6482] = 6482, - [6483] = 6483, - [6484] = 6484, - [6485] = 6485, + [6483] = 1195, + [6484] = 6293, + [6485] = 6338, [6486] = 6486, - [6487] = 6487, - [6488] = 6487, + [6487] = 6332, + [6488] = 6297, [6489] = 6489, - [6490] = 6460, + [6490] = 6490, [6491] = 6491, [6492] = 6492, - [6493] = 6486, - [6494] = 6484, + [6493] = 6493, + [6494] = 6494, [6495] = 6495, - [6496] = 6483, - [6497] = 6480, - [6498] = 6489, - [6499] = 6492, - [6500] = 2785, - [6501] = 2771, - [6502] = 6464, - [6503] = 3630, - [6504] = 2794, + [6496] = 6345, + [6497] = 6309, + [6498] = 6316, + [6499] = 6499, + [6500] = 6500, + [6501] = 6301, + [6502] = 6300, + [6503] = 6481, + [6504] = 6418, [6505] = 6505, - [6506] = 6485, - [6507] = 6491, - [6508] = 6508, - [6509] = 6482, - [6510] = 6481, - [6511] = 6479, - [6512] = 3628, - [6513] = 6476, - [6514] = 3629, - [6515] = 6515, - [6516] = 6469, - [6517] = 6517, - [6518] = 327, - [6519] = 3662, - [6520] = 6520, - [6521] = 6521, - [6522] = 3610, - [6523] = 1089, - [6524] = 6524, - [6525] = 6525, - [6526] = 6492, - [6527] = 6461, - [6528] = 6528, - [6529] = 6459, + [6506] = 6295, + [6507] = 6420, + [6508] = 6418, + [6509] = 6420, + [6510] = 4665, + [6511] = 6511, + [6512] = 6293, + [6513] = 6486, + [6514] = 6360, + [6515] = 6299, + [6516] = 6330, + [6517] = 6428, + [6518] = 6458, + [6519] = 6297, + [6520] = 6431, + [6521] = 6490, + [6522] = 1043, + [6523] = 1142, + [6524] = 6418, + [6525] = 6302, + [6526] = 6378, + [6527] = 6354, + [6528] = 6351, + [6529] = 6432, [6530] = 6530, - [6531] = 6531, - [6532] = 6532, - [6533] = 6452, - [6534] = 6534, - [6535] = 6535, - [6536] = 6450, - [6537] = 1090, + [6531] = 6324, + [6532] = 6322, + [6533] = 6420, + [6534] = 6397, + [6535] = 1056, + [6536] = 6428, + [6537] = 6537, [6538] = 6538, - [6539] = 6539, - [6540] = 6540, - [6541] = 6541, - [6542] = 1096, - [6543] = 6543, - [6544] = 6445, - [6545] = 6545, - [6546] = 6546, - [6547] = 6547, - [6548] = 6491, - [6549] = 6443, - [6550] = 6550, + [6539] = 6477, + [6540] = 6412, + [6541] = 1057, + [6542] = 3500, + [6543] = 6415, + [6544] = 6458, + [6545] = 3503, + [6546] = 6319, + [6547] = 6458, + [6548] = 6548, + [6549] = 6435, + [6550] = 1060, [6551] = 6551, [6552] = 6552, - [6553] = 1114, - [6554] = 6449, - [6555] = 6453, - [6556] = 6454, - [6557] = 6455, - [6558] = 6440, - [6559] = 1120, + [6553] = 6553, + [6554] = 6554, + [6555] = 6431, + [6556] = 6432, + [6557] = 6492, + [6558] = 6451, + [6559] = 6559, [6560] = 6560, - [6561] = 6561, - [6562] = 1123, + [6561] = 6495, + [6562] = 6562, [6563] = 6563, - [6564] = 3626, - [6565] = 6492, - [6566] = 6539, - [6567] = 6540, + [6564] = 6564, + [6565] = 6499, + [6566] = 6566, + [6567] = 6454, [6568] = 6568, [6569] = 6569, - [6570] = 3660, - [6571] = 3639, - [6572] = 6572, - [6573] = 3640, - [6574] = 3616, - [6575] = 6575, - [6576] = 3614, - [6577] = 1250, - [6578] = 6578, - [6579] = 6560, - [6580] = 6575, - [6581] = 6563, - [6582] = 6561, - [6583] = 6560, - [6584] = 6584, - [6585] = 6563, - [6586] = 6540, - [6587] = 6539, + [6570] = 1065, + [6571] = 6299, + [6572] = 6563, + [6573] = 6431, + [6574] = 6298, + [6575] = 6296, + [6576] = 6576, + [6577] = 1185, + [6578] = 6304, + [6579] = 1191, + [6580] = 6580, + [6581] = 6581, + [6582] = 1182, + [6583] = 6437, + [6584] = 6432, + [6585] = 6585, + [6586] = 6315, + [6587] = 6587, [6588] = 6588, - [6589] = 6460, + [6589] = 6589, [6590] = 6590, - [6591] = 6575, - [6592] = 6491, - [6593] = 1189, - [6594] = 6594, - [6595] = 1124, - [6596] = 6450, - [6597] = 6470, - [6598] = 6598, - [6599] = 6466, - [6600] = 6457, + [6591] = 6591, + [6592] = 6317, + [6593] = 6593, + [6594] = 6301, + [6595] = 6595, + [6596] = 1072, + [6597] = 6303, + [6598] = 6317, + [6599] = 1075, + [6600] = 1076, [6601] = 6601, - [6602] = 6442, - [6603] = 6463, - [6604] = 6464, - [6605] = 1201, - [6606] = 1162, - [6607] = 6607, - [6608] = 1165, - [6609] = 1170, - [6610] = 6492, - [6611] = 1172, - [6612] = 1173, - [6613] = 1175, - [6614] = 6584, - [6615] = 1176, - [6616] = 1182, - [6617] = 6594, - [6618] = 6478, - [6619] = 6480, - [6620] = 6483, - [6621] = 6484, - [6622] = 6486, - [6623] = 6487, - [6624] = 6561, - [6625] = 1184, - [6626] = 6626, - [6627] = 6627, - [6628] = 3625, - [6629] = 6440, - [6630] = 6455, - [6631] = 6631, - [6632] = 6632, - [6633] = 1242, - [6634] = 6634, - [6635] = 1241, - [6636] = 1240, - [6637] = 6440, - [6638] = 6638, - [6639] = 1190, - [6640] = 4969, - [6641] = 6485, - [6642] = 6455, - [6643] = 6508, - [6644] = 6482, - [6645] = 6481, - [6646] = 6479, - [6647] = 6476, - [6648] = 6632, - [6649] = 6515, - [6650] = 6454, - [6651] = 6469, - [6652] = 6634, - [6653] = 1200, - [6654] = 6520, - [6655] = 6521, - [6656] = 6524, - [6657] = 6525, - [6658] = 6461, - [6659] = 6459, - [6660] = 6530, - [6661] = 6531, - [6662] = 6532, - [6663] = 6452, - [6664] = 6451, - [6665] = 1203, - [6666] = 6666, - [6667] = 6454, - [6668] = 1213, - [6669] = 1219, - [6670] = 1223, - [6671] = 6491, - [6672] = 6445, - [6673] = 6673, - [6674] = 6546, - [6675] = 6547, - [6676] = 1224, - [6677] = 6677, - [6678] = 6443, - [6679] = 6550, - [6680] = 6444, - [6681] = 6446, - [6682] = 6551, - [6683] = 6453, - [6684] = 6684, - [6685] = 6449, - [6686] = 1225, - [6687] = 1226, - [6688] = 1245, - [6689] = 6449, - [6690] = 6453, - [6691] = 6691, - [6692] = 6454, - [6693] = 6455, - [6694] = 6440, - [6695] = 6695, + [6602] = 6300, + [6603] = 6590, + [6604] = 6338, + [6605] = 6581, + [6606] = 6580, + [6607] = 1081, + [6608] = 6608, + [6609] = 6587, + [6610] = 6610, + [6611] = 1083, + [6612] = 1170, + [6613] = 1167, + [6614] = 6614, + [6615] = 1158, + [6616] = 6295, + [6617] = 6617, + [6618] = 1154, + [6619] = 6322, + [6620] = 6620, + [6621] = 6324, + [6622] = 6330, + [6623] = 6332, + [6624] = 6624, + [6625] = 6332, + [6626] = 6338, + [6627] = 6330, + [6628] = 6324, + [6629] = 1103, + [6630] = 6322, + [6631] = 2635, + [6632] = 1088, + [6633] = 2633, + [6634] = 6393, + [6635] = 6315, + [6636] = 6481, + [6637] = 1128, + [6638] = 2460, + [6639] = 6639, + [6640] = 6640, + [6641] = 6486, + [6642] = 6338, + [6643] = 1080, + [6644] = 1077, + [6645] = 1071, + [6646] = 1028, + [6647] = 1032, + [6648] = 6648, + [6649] = 6375, + [6650] = 6297, + [6651] = 6651, + [6652] = 6652, + [6653] = 6653, + [6654] = 6654, + [6655] = 6332, + [6656] = 6656, + [6657] = 6657, + [6658] = 1200, + [6659] = 6446, + [6660] = 6449, + [6661] = 6450, + [6662] = 1040, + [6663] = 3461, + [6664] = 6455, + [6665] = 3466, + [6666] = 6314, + [6667] = 6313, + [6668] = 6428, + [6669] = 6669, + [6670] = 6311, + [6671] = 6310, + [6672] = 3480, + [6673] = 6401, + [6674] = 6674, + [6675] = 6491, + [6676] = 6676, + [6677] = 6494, + [6678] = 6490, + [6679] = 6305, + [6680] = 3479, + [6681] = 3470, + [6682] = 3512, + [6683] = 6399, + [6684] = 6338, + [6685] = 6685, + [6686] = 6686, + [6687] = 6588, + [6688] = 6688, + [6689] = 6689, + [6690] = 6690, + [6691] = 6580, + [6692] = 6589, + [6693] = 6581, + [6694] = 1052, + [6695] = 3462, [6696] = 6696, - [6697] = 6495, - [6698] = 6453, - [6699] = 6449, - [6700] = 6700, - [6701] = 1236, - [6702] = 6700, + [6697] = 6317, + [6698] = 3493, + [6699] = 1054, + [6700] = 6492, + [6701] = 3489, + [6702] = 6702, [6703] = 6703, - [6704] = 1246, - [6705] = 1247, - [6706] = 6551, - [6707] = 6575, - [6708] = 6708, - [6709] = 6541, - [6710] = 6563, - [6711] = 6550, - [6712] = 6463, - [6713] = 3650, - [6714] = 6443, + [6704] = 6495, + [6705] = 6499, + [6706] = 1121, + [6707] = 6707, + [6708] = 6302, + [6709] = 6432, + [6710] = 1123, + [6711] = 6711, + [6712] = 6431, + [6713] = 6713, + [6714] = 6458, [6715] = 6715, - [6716] = 1253, - [6717] = 6561, - [6718] = 6560, - [6719] = 1249, - [6720] = 1254, + [6716] = 6590, + [6717] = 6717, + [6718] = 6420, + [6719] = 6418, + [6720] = 6330, [6721] = 6721, - [6722] = 6627, - [6723] = 6540, - [6724] = 6724, - [6725] = 6539, - [6726] = 6460, - [6727] = 6547, - [6728] = 6728, - [6729] = 3644, - [6730] = 6464, - [6731] = 6546, + [6722] = 6587, + [6723] = 6723, + [6724] = 6315, + [6725] = 6330, + [6726] = 1111, + [6727] = 1112, + [6728] = 6351, + [6729] = 1125, + [6730] = 6324, + [6731] = 1055, [6732] = 6732, - [6733] = 6733, - [6734] = 6551, - [6735] = 6470, - [6736] = 6466, - [6737] = 6457, - [6738] = 6442, - [6739] = 6550, - [6740] = 6740, - [6741] = 1217, - [6742] = 6445, - [6743] = 1216, - [6744] = 6744, - [6745] = 6745, - [6746] = 6746, - [6747] = 3613, - [6748] = 6443, - [6749] = 1218, - [6750] = 1215, - [6751] = 1214, - [6752] = 1251, - [6753] = 6753, - [6754] = 3615, + [6733] = 1126, + [6734] = 6301, + [6735] = 6552, + [6736] = 1114, + [6737] = 6737, + [6738] = 6738, + [6739] = 6739, + [6740] = 6300, + [6741] = 6345, + [6742] = 6742, + [6743] = 6295, + [6744] = 6309, + [6745] = 6316, + [6746] = 6721, + [6747] = 1153, + [6748] = 1127, + [6749] = 6749, + [6750] = 1207, + [6751] = 4784, + [6752] = 6752, + [6753] = 4782, + [6754] = 6752, [6755] = 6715, - [6756] = 6463, - [6757] = 6464, - [6758] = 1212, + [6756] = 6295, + [6757] = 1168, + [6758] = 6360, [6759] = 6759, - [6760] = 1211, - [6761] = 1210, - [6762] = 6547, - [6763] = 1209, - [6764] = 6546, - [6765] = 6765, - [6766] = 1252, - [6767] = 6767, - [6768] = 6478, - [6769] = 6769, - [6770] = 6480, - [6771] = 6771, + [6760] = 6322, + [6761] = 6378, + [6762] = 6352, + [6763] = 6300, + [6764] = 4789, + [6765] = 6295, + [6766] = 6766, + [6767] = 1130, + [6768] = 6768, + [6769] = 6477, + [6770] = 3484, + [6771] = 6595, [6772] = 6772, - [6773] = 6483, - [6774] = 6484, - [6775] = 6775, - [6776] = 6486, - [6777] = 6777, + [6773] = 6301, + [6774] = 1131, + [6775] = 6309, + [6776] = 1058, + [6777] = 6324, [6778] = 6778, - [6779] = 6487, - [6780] = 6780, + [6779] = 6563, + [6780] = 6322, [6781] = 6781, - [6782] = 1188, - [6783] = 6445, - [6784] = 1187, - [6785] = 6744, - [6786] = 6746, - [6787] = 1183, - [6788] = 6788, - [6789] = 1181, - [6790] = 1179, - [6791] = 6791, - [6792] = 6485, - [6793] = 6793, - [6794] = 6794, - [6795] = 1177, - [6796] = 6508, - [6797] = 6482, - [6798] = 6481, - [6799] = 6479, - [6800] = 6476, - [6801] = 6801, - [6802] = 1171, - [6803] = 6515, - [6804] = 6804, - [6805] = 6469, - [6806] = 1098, - [6807] = 6771, - [6808] = 6520, - [6809] = 6521, - [6810] = 6524, - [6811] = 6811, - [6812] = 6525, - [6813] = 6461, - [6814] = 6459, - [6815] = 6530, - [6816] = 6531, - [6817] = 6532, - [6818] = 6452, - [6819] = 6451, - [6820] = 6450, - [6821] = 6821, - [6822] = 1093, - [6823] = 6772, - [6824] = 6780, - [6825] = 6825, - [6826] = 1091, - [6827] = 6777, - [6828] = 1087, - [6829] = 6767, - [6830] = 6830, - [6831] = 1169, - [6832] = 1166, - [6833] = 6478, - [6834] = 1161, - [6835] = 6835, - [6836] = 6836, - [6837] = 1160, - [6838] = 6838, - [6839] = 6767, - [6840] = 6777, - [6841] = 6484, - [6842] = 6842, + [6782] = 6749, + [6783] = 1194, + [6784] = 6335, + [6785] = 6435, + [6786] = 6321, + [6787] = 6589, + [6788] = 1063, + [6789] = 3516, + [6790] = 6595, + [6791] = 1064, + [6792] = 1073, + [6793] = 6553, + [6794] = 1118, + [6795] = 6610, + [6796] = 6318, + [6797] = 6306, + [6798] = 6554, + [6799] = 1084, + [6800] = 6562, + [6801] = 3510, + [6802] = 6564, + [6803] = 1089, + [6804] = 6717, + [6805] = 3513, + [6806] = 6569, + [6807] = 1092, + [6808] = 6299, + [6809] = 6298, + [6810] = 1094, + [6811] = 1097, + [6812] = 6296, + [6813] = 6813, + [6814] = 6580, + [6815] = 6815, + [6816] = 6581, + [6817] = 6301, + [6818] = 6576, + [6819] = 6304, + [6820] = 6820, + [6821] = 6703, + [6822] = 6437, + [6823] = 6354, + [6824] = 6319, + [6825] = 1117, + [6826] = 6826, + [6827] = 1021, + [6828] = 6303, + [6829] = 6499, + [6830] = 1122, + [6831] = 6332, + [6832] = 6495, + [6833] = 6833, + [6834] = 6595, + [6835] = 1135, + [6836] = 6713, + [6837] = 6492, + [6838] = 1189, + [6839] = 3474, + [6840] = 6580, + [6841] = 6610, + [6842] = 6711, [6843] = 6843, - [6844] = 6844, - [6845] = 6845, - [6846] = 6445, - [6847] = 3652, - [6848] = 6848, - [6849] = 3651, - [6850] = 6480, - [6851] = 6483, - [6852] = 6546, - [6853] = 6853, - [6854] = 6547, - [6855] = 6486, - [6856] = 1159, - [6857] = 6443, + [6844] = 6581, + [6845] = 6317, + [6846] = 6715, + [6847] = 6490, + [6848] = 6707, + [6849] = 6360, + [6850] = 6297, + [6851] = 1172, + [6852] = 6499, + [6853] = 6495, + [6854] = 6486, + [6855] = 6855, + [6856] = 6856, + [6857] = 6293, [6858] = 6858, - [6859] = 6550, - [6860] = 6551, - [6861] = 6780, - [6862] = 6862, - [6863] = 6487, - [6864] = 6449, - [6865] = 6453, - [6866] = 1158, - [6867] = 6867, - [6868] = 6454, - [6869] = 6869, - [6870] = 6870, - [6871] = 6455, - [6872] = 6872, - [6873] = 1157, - [6874] = 1155, - [6875] = 1154, - [6876] = 6876, - [6877] = 1153, - [6878] = 6450, - [6879] = 6451, - [6880] = 6491, - [6881] = 6452, - [6882] = 1152, - [6883] = 1151, - [6884] = 1148, - [6885] = 6862, - [6886] = 6886, - [6887] = 1149, - [6888] = 6888, - [6889] = 4838, - [6890] = 4836, - [6891] = 6891, - [6892] = 6485, - [6893] = 4808, - [6894] = 6876, - [6895] = 6575, - [6896] = 6563, - [6897] = 6561, - [6898] = 6560, - [6899] = 6899, - [6900] = 6540, - [6901] = 6539, - [6902] = 3623, - [6903] = 6489, - [6904] = 6904, - [6905] = 6450, - [6906] = 6460, - [6907] = 1147, - [6908] = 6908, - [6909] = 6492, - [6910] = 6451, - [6911] = 1146, - [6912] = 6532, - [6913] = 6531, - [6914] = 6530, - [6915] = 6470, - [6916] = 6466, - [6917] = 6457, - [6918] = 6442, - [6919] = 6778, - [6920] = 1206, - [6921] = 6921, - [6922] = 6922, - [6923] = 6923, - [6924] = 1205, - [6925] = 1185, - [6926] = 6926, - [6927] = 6444, - [6928] = 6446, - [6929] = 1035, - [6930] = 6452, - [6931] = 6444, - [6932] = 6788, - [6933] = 1140, - [6934] = 1139, - [6935] = 1033, - [6936] = 1032, - [6937] = 1031, - [6938] = 1150, - [6939] = 1138, - [6940] = 6459, - [6941] = 6495, - [6942] = 6888, - [6943] = 6508, - [6944] = 6541, - [6945] = 1048, - [6946] = 1137, + [6859] = 6375, + [6860] = 6860, + [6861] = 6490, + [6862] = 6608, + [6863] = 6314, + [6864] = 6309, + [6865] = 6316, + [6866] = 1169, + [6867] = 6313, + [6868] = 6868, + [6869] = 6300, + [6870] = 6393, + [6871] = 6317, + [6872] = 6311, + [6873] = 6310, + [6874] = 6590, + [6875] = 6393, + [6876] = 6305, + [6877] = 6610, + [6878] = 6360, + [6879] = 6481, + [6880] = 1187, + [6881] = 6378, + [6882] = 6293, + [6883] = 6492, + [6884] = 6303, + [6885] = 6721, + [6886] = 6590, + [6887] = 1171, + [6888] = 6595, + [6889] = 6477, + [6890] = 6315, + [6891] = 6486, + [6892] = 6589, + [6893] = 6559, + [6894] = 1175, + [6895] = 6895, + [6896] = 6587, + [6897] = 1188, + [6898] = 6703, + [6899] = 6563, + [6900] = 6437, + [6901] = 6676, + [6902] = 6563, + [6903] = 6304, + [6904] = 6297, + [6905] = 6589, + [6906] = 6296, + [6907] = 6587, + [6908] = 6595, + [6909] = 6481, + [6910] = 6298, + [6911] = 3495, + [6912] = 1149, + [6913] = 6610, + [6914] = 1181, + [6915] = 1206, + [6916] = 6477, + [6917] = 1059, + [6918] = 6315, + [6919] = 1192, + [6920] = 6490, + [6921] = 1074, + [6922] = 1208, + [6923] = 6299, + [6924] = 6924, + [6925] = 6378, + [6926] = 6435, + [6927] = 1202, + [6928] = 1209, + [6929] = 6653, + [6930] = 6316, + [6931] = 6931, + [6932] = 6932, + [6933] = 6648, + [6934] = 6934, + [6935] = 6360, + [6936] = 6639, + [6937] = 6937, + [6938] = 6302, + [6939] = 6939, + [6940] = 6940, + [6941] = 6941, + [6942] = 6942, + [6943] = 6943, + [6944] = 6944, + [6945] = 6945, + [6946] = 6946, [6947] = 6947, - [6948] = 1144, - [6949] = 1143, - [6950] = 1028, + [6948] = 6948, + [6949] = 6949, + [6950] = 6950, [6951] = 6951, - [6952] = 6627, - [6953] = 1136, + [6952] = 6952, + [6953] = 6953, [6954] = 6954, - [6955] = 1135, + [6955] = 6955, [6956] = 6956, - [6957] = 1142, - [6958] = 6461, - [6959] = 1186, - [6960] = 1134, - [6961] = 6778, - [6962] = 6715, - [6963] = 1051, + [6957] = 6957, + [6958] = 6958, + [6959] = 6959, + [6960] = 6960, + [6961] = 6961, + [6962] = 6962, + [6963] = 6963, [6964] = 6964, - [6965] = 1025, - [6966] = 1023, - [6967] = 6967, - [6968] = 1052, - [6969] = 1053, - [6970] = 6772, - [6971] = 1020, - [6972] = 6899, - [6973] = 6778, - [6974] = 1055, - [6975] = 1056, + [6965] = 6965, + [6966] = 6966, + [6967] = 6962, + [6968] = 6968, + [6969] = 6940, + [6970] = 6970, + [6971] = 6955, + [6972] = 6958, + [6973] = 6953, + [6974] = 6974, + [6975] = 6949, [6976] = 6976, - [6977] = 1057, - [6978] = 6793, - [6979] = 1059, - [6980] = 1065, + [6977] = 6977, + [6978] = 6942, + [6979] = 6979, + [6980] = 6980, [6981] = 6981, [6982] = 6982, - [6983] = 1066, - [6984] = 6984, - [6985] = 3638, + [6983] = 6983, + [6984] = 6943, + [6985] = 6944, [6986] = 6986, - [6987] = 1132, - [6988] = 1067, - [6989] = 3612, + [6987] = 6950, + [6988] = 6988, + [6989] = 6989, [6990] = 6990, - [6991] = 1070, - [6992] = 6482, - [6993] = 6481, - [6994] = 1071, - [6995] = 1077, - [6996] = 6479, - [6997] = 6997, - [6998] = 1078, + [6991] = 6991, + [6992] = 6981, + [6993] = 6993, + [6994] = 6994, + [6995] = 6995, + [6996] = 6943, + [6997] = 6983, + [6998] = 6957, [6999] = 6999, - [7000] = 1079, - [7001] = 6753, - [7002] = 6781, - [7003] = 6476, - [7004] = 1083, - [7005] = 3661, - [7006] = 6515, - [7007] = 1080, - [7008] = 6535, - [7009] = 6568, - [7010] = 1085, - [7011] = 6569, - [7012] = 6469, - [7013] = 1029, - [7014] = 6572, - [7015] = 1086, - [7016] = 6463, + [7000] = 7000, + [7001] = 6942, + [7002] = 6960, + [7003] = 6939, + [7004] = 6948, + [7005] = 7005, + [7006] = 6953, + [7007] = 6955, + [7008] = 7008, + [7009] = 7009, + [7010] = 6980, + [7011] = 7011, + [7012] = 6940, + [7013] = 6959, + [7014] = 6962, + [7015] = 7015, + [7016] = 7016, [7017] = 7017, - [7018] = 6724, - [7019] = 6728, - [7020] = 6464, - [7021] = 1092, - [7022] = 1094, - [7023] = 1030, - [7024] = 6904, - [7025] = 6793, - [7026] = 6525, - [7027] = 6524, - [7028] = 6521, + [7018] = 7018, + [7019] = 6958, + [7020] = 7020, + [7021] = 7021, + [7022] = 6979, + [7023] = 7023, + [7024] = 6961, + [7025] = 7025, + [7026] = 6963, + [7027] = 7027, + [7028] = 6950, [7029] = 7029, - [7030] = 6908, - [7031] = 6495, - [7032] = 6520, - [7033] = 1130, - [7034] = 1129, - [7035] = 6532, - [7036] = 6531, - [7037] = 1128, - [7038] = 1126, - [7039] = 7039, - [7040] = 7040, + [7030] = 7030, + [7031] = 6958, + [7032] = 7032, + [7033] = 6962, + [7034] = 6940, + [7035] = 7035, + [7036] = 7030, + [7037] = 7037, + [7038] = 6955, + [7039] = 6953, + [7040] = 7009, [7041] = 7041, [7042] = 7042, - [7043] = 1125, - [7044] = 1026, - [7045] = 1027, - [7046] = 6791, - [7047] = 6444, - [7048] = 6446, - [7049] = 1095, - [7050] = 1099, - [7051] = 6478, - [7052] = 1036, - [7053] = 1038, - [7054] = 6793, - [7055] = 7055, - [7056] = 6843, - [7057] = 6844, - [7058] = 6845, - [7059] = 6520, - [7060] = 6530, - [7061] = 6495, - [7062] = 6848, - [7063] = 6521, - [7064] = 6541, - [7065] = 6480, - [7066] = 1043, - [7067] = 1061, - [7068] = 6483, - [7069] = 6524, - [7070] = 1047, - [7071] = 6778, - [7072] = 6627, - [7073] = 6469, - [7074] = 6484, - [7075] = 6525, - [7076] = 6486, - [7077] = 1105, - [7078] = 6772, - [7079] = 1106, - [7080] = 1062, - [7081] = 1107, - [7082] = 6715, - [7083] = 6487, - [7084] = 1141, - [7085] = 1109, - [7086] = 1110, - [7087] = 7087, - [7088] = 6772, - [7089] = 6515, - [7090] = 1063, - [7091] = 6778, - [7092] = 6715, - [7093] = 1064, - [7094] = 6461, - [7095] = 6476, - [7096] = 6793, - [7097] = 6459, - [7098] = 6951, - [7099] = 7099, - [7100] = 1076, - [7101] = 6485, - [7102] = 1075, - [7103] = 6446, - [7104] = 7104, - [7105] = 7105, - [7106] = 1074, - [7107] = 7107, - [7108] = 6508, - [7109] = 6976, - [7110] = 6981, - [7111] = 6982, - [7112] = 6495, - [7113] = 7113, - [7114] = 6984, - [7115] = 6541, - [7116] = 6986, - [7117] = 6990, - [7118] = 6482, - [7119] = 6627, - [7120] = 6481, - [7121] = 6479, - [7122] = 7122, + [7043] = 6949, + [7044] = 7008, + [7045] = 6948, + [7046] = 7046, + [7047] = 7047, + [7048] = 7009, + [7049] = 6942, + [7050] = 6968, + [7051] = 7051, + [7052] = 7052, + [7053] = 6988, + [7054] = 7054, + [7055] = 6958, + [7056] = 7005, + [7057] = 7008, + [7058] = 6939, + [7059] = 6960, + [7060] = 7046, + [7061] = 6983, + [7062] = 6943, + [7063] = 6968, + [7064] = 6944, + [7065] = 7065, + [7066] = 7027, + [7067] = 6961, + [7068] = 6990, + [7069] = 7069, + [7070] = 7070, + [7071] = 7071, + [7072] = 6941, + [7073] = 6990, + [7074] = 7074, + [7075] = 6960, + [7076] = 7076, + [7077] = 7077, + [7078] = 6959, + [7079] = 6939, + [7080] = 7080, + [7081] = 7005, + [7082] = 7041, + [7083] = 7083, + [7084] = 6957, + [7085] = 7085, + [7086] = 6988, + [7087] = 6988, + [7088] = 7041, + [7089] = 7046, + [7090] = 7008, + [7091] = 7009, + [7092] = 7035, + [7093] = 7093, + [7094] = 7029, + [7095] = 6968, + [7096] = 7005, + [7097] = 6939, + [7098] = 7098, + [7099] = 7023, + [7100] = 6979, + [7101] = 6947, + [7102] = 6952, + [7103] = 6961, + [7104] = 6954, + [7105] = 7032, + [7106] = 6964, + [7107] = 6959, + [7108] = 6965, + [7109] = 6970, + [7110] = 6974, + [7111] = 6957, + [7112] = 6960, + [7113] = 6977, + [7114] = 7114, + [7115] = 6990, + [7116] = 7116, + [7117] = 6956, + [7118] = 7118, + [7119] = 7119, + [7120] = 7120, + [7121] = 1015, + [7122] = 6950, [7123] = 7123, [7124] = 7124, [7125] = 7125, - [7126] = 7126, + [7126] = 7021, [7127] = 7127, [7128] = 7128, - [7129] = 7129, - [7130] = 7130, + [7129] = 7021, + [7130] = 7029, [7131] = 7131, - [7132] = 7132, - [7133] = 7133, - [7134] = 7134, - [7135] = 7135, - [7136] = 7136, + [7132] = 1018, + [7133] = 7030, + [7134] = 7114, + [7135] = 7127, + [7136] = 6950, [7137] = 7137, - [7138] = 7138, - [7139] = 7139, - [7140] = 7140, - [7141] = 7141, - [7142] = 7142, - [7143] = 7143, - [7144] = 7144, - [7145] = 7145, - [7146] = 7146, - [7147] = 7147, - [7148] = 7148, - [7149] = 7149, - [7150] = 7150, - [7151] = 7151, - [7152] = 7152, - [7153] = 7145, - [7154] = 7143, - [7155] = 7151, - [7156] = 7138, - [7157] = 7136, - [7158] = 7132, - [7159] = 7131, + [7138] = 7116, + [7139] = 6990, + [7140] = 7030, + [7141] = 7029, + [7142] = 6960, + [7143] = 6939, + [7144] = 6981, + [7145] = 7114, + [7146] = 6980, + [7147] = 7005, + [7148] = 6958, + [7149] = 7005, + [7150] = 7114, + [7151] = 6979, + [7152] = 7127, + [7153] = 7021, + [7154] = 6979, + [7155] = 7137, + [7156] = 7127, + [7157] = 7116, + [7158] = 6990, + [7159] = 7137, [7160] = 7160, - [7161] = 7125, - [7162] = 7162, - [7163] = 7137, - [7164] = 7135, - [7165] = 7165, - [7166] = 7133, - [7167] = 7167, - [7168] = 7168, - [7169] = 7169, - [7170] = 7129, - [7171] = 7171, - [7172] = 7172, - [7173] = 7173, - [7174] = 7174, - [7175] = 7162, - [7176] = 7176, - [7177] = 7177, + [7161] = 7009, + [7162] = 7008, + [7163] = 7163, + [7164] = 7046, + [7165] = 7005, + [7166] = 6939, + [7167] = 6960, + [7168] = 7098, + [7169] = 7025, + [7170] = 7077, + [7171] = 6963, + [7172] = 6991, + [7173] = 6993, + [7174] = 7093, + [7175] = 6990, + [7176] = 6994, + [7177] = 6962, [7178] = 7178, - [7179] = 7135, - [7180] = 7137, - [7181] = 7181, - [7182] = 7182, + [7179] = 7116, + [7180] = 7180, + [7181] = 6948, + [7182] = 6983, [7183] = 7183, - [7184] = 7125, - [7185] = 7185, - [7186] = 7186, - [7187] = 7131, - [7188] = 7188, - [7189] = 7136, - [7190] = 7138, - [7191] = 7122, - [7192] = 7192, - [7193] = 7160, - [7194] = 7194, - [7195] = 7143, - [7196] = 7196, - [7197] = 7145, - [7198] = 7198, - [7199] = 7148, - [7200] = 7146, - [7201] = 7129, - [7202] = 7151, - [7203] = 7151, - [7204] = 7204, - [7205] = 7145, - [7206] = 7143, + [7184] = 6940, + [7185] = 6990, + [7186] = 6999, + [7187] = 7187, + [7188] = 7011, + [7189] = 6960, + [7190] = 6939, + [7191] = 7015, + [7192] = 7016, + [7193] = 7005, + [7194] = 7017, + [7195] = 7018, + [7196] = 7020, + [7197] = 6955, + [7198] = 6953, + [7199] = 7199, + [7200] = 6941, + [7201] = 6957, + [7202] = 6959, + [7203] = 7029, + [7204] = 7030, + [7205] = 7205, + [7206] = 6962, [7207] = 7207, - [7208] = 7138, - [7209] = 7136, - [7210] = 7132, - [7211] = 7131, - [7212] = 7212, - [7213] = 7125, + [7208] = 6949, + [7209] = 7209, + [7210] = 7076, + [7211] = 6948, + [7212] = 7074, + [7213] = 7046, [7214] = 7214, [7215] = 7137, - [7216] = 7135, - [7217] = 7133, + [7216] = 6961, + [7217] = 6968, [7218] = 7218, - [7219] = 7219, - [7220] = 7126, - [7221] = 7173, - [7222] = 7192, - [7223] = 7192, - [7224] = 7122, - [7225] = 7225, - [7226] = 7226, - [7227] = 7122, - [7228] = 7185, - [7229] = 7229, - [7230] = 7230, - [7231] = 7186, - [7232] = 7188, - [7233] = 7229, - [7234] = 7229, - [7235] = 7122, - [7236] = 7192, - [7237] = 7237, - [7238] = 7151, - [7239] = 7188, - [7240] = 7123, - [7241] = 7186, - [7242] = 7185, - [7243] = 7188, - [7244] = 7186, - [7245] = 7185, - [7246] = 7173, - [7247] = 7247, - [7248] = 7248, - [7249] = 7249, - [7250] = 7250, - [7251] = 7173, - [7252] = 7252, - [7253] = 7253, - [7254] = 7254, - [7255] = 7255, - [7256] = 7130, - [7257] = 7257, - [7258] = 7127, - [7259] = 7259, - [7260] = 7260, - [7261] = 7124, - [7262] = 7262, - [7263] = 7263, - [7264] = 7139, - [7265] = 7265, - [7266] = 7266, - [7267] = 7128, - [7268] = 7144, - [7269] = 7147, - [7270] = 7270, - [7271] = 7150, - [7272] = 7204, - [7273] = 7142, - [7274] = 7274, - [7275] = 7218, - [7276] = 7276, - [7277] = 7277, - [7278] = 7278, - [7279] = 7279, - [7280] = 7280, - [7281] = 7281, - [7282] = 7198, - [7283] = 7283, - [7284] = 7129, - [7285] = 7285, - [7286] = 7286, - [7287] = 7286, - [7288] = 7278, - [7289] = 7196, - [7290] = 7285, - [7291] = 7291, - [7292] = 7270, - [7293] = 7265, - [7294] = 7294, - [7295] = 7129, - [7296] = 7294, - [7297] = 7249, - [7298] = 7160, - [7299] = 7146, - [7300] = 7126, - [7301] = 7301, - [7302] = 7130, - [7303] = 7127, - [7304] = 7124, - [7305] = 7262, - [7306] = 7265, - [7307] = 7139, - [7308] = 7308, - [7309] = 7128, - [7310] = 7144, - [7311] = 7311, - [7312] = 7147, - [7313] = 7150, - [7314] = 7314, - [7315] = 7270, - [7316] = 7204, - [7317] = 7142, - [7318] = 7278, - [7319] = 7151, - [7320] = 7286, - [7321] = 7285, - [7322] = 7294, - [7323] = 7167, - [7324] = 7168, - [7325] = 7171, - [7326] = 7174, - [7327] = 7176, - [7328] = 7177, - [7329] = 7181, - [7330] = 7182, - [7331] = 7194, - [7332] = 7196, - [7333] = 7167, - [7334] = 7277, - [7335] = 7168, - [7336] = 7171, - [7337] = 7174, - [7338] = 7145, - [7339] = 7143, - [7340] = 7176, - [7341] = 7177, - [7342] = 7181, - [7343] = 7182, - [7344] = 7192, - [7345] = 7122, - [7346] = 7346, - [7347] = 7229, - [7348] = 7188, - [7349] = 7186, - [7350] = 7185, - [7351] = 7185, - [7352] = 7194, - [7353] = 7260, - [7354] = 7250, - [7355] = 7162, - [7356] = 7274, - [7357] = 7229, - [7358] = 7173, - [7359] = 7138, - [7360] = 7136, - [7361] = 7361, - [7362] = 7277, - [7363] = 7363, - [7364] = 7364, - [7365] = 7262, - [7366] = 7366, - [7367] = 7367, - [7368] = 7368, - [7369] = 7132, - [7370] = 7370, - [7371] = 7131, - [7372] = 7188, - [7373] = 7186, - [7374] = 7192, - [7375] = 7173, - [7376] = 7247, - [7377] = 7276, - [7378] = 7274, - [7379] = 7283, - [7380] = 7248, - [7381] = 7123, - [7382] = 7382, - [7383] = 7255, - [7384] = 7125, - [7385] = 7137, - [7386] = 7276, - [7387] = 7274, - [7388] = 7135, - [7389] = 7145, - [7390] = 7133, - [7391] = 7274, - [7392] = 7276, - [7393] = 7259, - [7394] = 7277, - [7395] = 7257, - [7396] = 7229, - [7397] = 7294, - [7398] = 7285, - [7399] = 7286, - [7400] = 7278, - [7401] = 7401, - [7402] = 7270, - [7403] = 7143, - [7404] = 7185, - [7405] = 7162, - [7406] = 7160, - [7407] = 7407, - [7408] = 7146, - [7409] = 7254, - [7410] = 7126, - [7411] = 7130, - [7412] = 7127, - [7413] = 7124, - [7414] = 7262, - [7415] = 7276, - [7416] = 7274, - [7417] = 7139, - [7418] = 7128, - [7419] = 7144, - [7420] = 7138, - [7421] = 7147, - [7422] = 7253, - [7423] = 7150, - [7424] = 7255, - [7425] = 7250, - [7426] = 7204, - [7427] = 7248, - [7428] = 7255, - [7429] = 7136, - [7430] = 7283, - [7431] = 7250, - [7432] = 7192, - [7433] = 7122, - [7434] = 7248, - [7435] = 7188, - [7436] = 7186, - [7437] = 7185, - [7438] = 7252, - [7439] = 7142, - [7440] = 7283, - [7441] = 7276, - [7442] = 7247, - [7443] = 7173, - [7444] = 7444, - [7445] = 7173, - [7446] = 7274, - [7447] = 7167, - [7448] = 7185, - [7449] = 7186, - [7450] = 7188, - [7451] = 7451, - [7452] = 7168, - [7453] = 7171, - [7454] = 7247, - [7455] = 7173, - [7456] = 7174, - [7457] = 7276, - [7458] = 7274, - [7459] = 7225, - [7460] = 7230, - [7461] = 7176, - [7462] = 7177, - [7463] = 7181, - [7464] = 7182, - [7465] = 7194, - [7466] = 7196, - [7467] = 7444, - [7468] = 7122, - [7469] = 7252, - [7470] = 7253, - [7471] = 7254, - [7472] = 7229, - [7473] = 7186, - [7474] = 7257, - [7475] = 7277, - [7476] = 7259, - [7477] = 7260, - [7478] = 7276, - [7479] = 7218, - [7480] = 7274, - [7481] = 7188, - [7482] = 7247, - [7483] = 7198, - [7484] = 7123, - [7485] = 7132, - [7486] = 7188, - [7487] = 7186, - [7488] = 7123, - [7489] = 7185, - [7490] = 7192, - [7491] = 7173, - [7492] = 7229, - [7493] = 7276, - [7494] = 7277, - [7495] = 7225, - [7496] = 7230, - [7497] = 7276, - [7498] = 7274, - [7499] = 7283, - [7500] = 7248, - [7501] = 7131, - [7502] = 7250, - [7503] = 7255, - [7504] = 7252, - [7505] = 7253, - [7506] = 7254, - [7507] = 7123, - [7508] = 7274, - [7509] = 7257, - [7510] = 7276, - [7511] = 7259, - [7512] = 7260, - [7513] = 7123, - [7514] = 7218, - [7515] = 7515, - [7516] = 7277, - [7517] = 7198, - [7518] = 7294, - [7519] = 7285, - [7520] = 7520, - [7521] = 7286, - [7522] = 7278, - [7523] = 7225, - [7524] = 7230, - [7525] = 7270, - [7526] = 7277, - [7527] = 7276, - [7528] = 7274, - [7529] = 7162, - [7530] = 7160, - [7531] = 7252, - [7532] = 7253, - [7533] = 7254, - [7534] = 7534, - [7535] = 7263, - [7536] = 7146, - [7537] = 7257, - [7538] = 7123, - [7539] = 7259, - [7540] = 7260, - [7541] = 7126, - [7542] = 7218, - [7543] = 7130, - [7544] = 7127, - [7545] = 7198, - [7546] = 7124, - [7547] = 976, - [7548] = 7225, - [7549] = 7230, - [7550] = 7262, - [7551] = 973, - [7552] = 7139, - [7553] = 7128, - [7554] = 7144, - [7555] = 7253, - [7556] = 7254, - [7557] = 7557, - [7558] = 7125, - [7559] = 7257, - [7560] = 7147, - [7561] = 7259, - [7562] = 7260, - [7563] = 7563, - [7564] = 7218, - [7565] = 7198, - [7566] = 7230, - [7567] = 7150, - [7568] = 7229, - [7569] = 7204, - [7570] = 7563, - [7571] = 7557, - [7572] = 7122, - [7573] = 7142, - [7574] = 7229, - [7575] = 7122, - [7576] = 7192, - [7577] = 7577, - [7578] = 7137, - [7579] = 7167, - [7580] = 7135, - [7581] = 7225, - [7582] = 7168, - [7583] = 7263, - [7584] = 7192, - [7585] = 7133, - [7586] = 7171, - [7587] = 7174, - [7588] = 7176, - [7589] = 7177, - [7590] = 7181, - [7591] = 7563, - [7592] = 7557, - [7593] = 7182, - [7594] = 7194, - [7595] = 7263, - [7596] = 7563, - [7597] = 7557, - [7598] = 7196, - [7599] = 7123, - [7600] = 7263, - [7601] = 7563, - [7602] = 7557, - [7603] = 7278, - [7604] = 7286, - [7605] = 7263, - [7606] = 7563, - [7607] = 7557, - [7608] = 7277, - [7609] = 7609, + [7219] = 7093, + [7220] = 6940, + [7221] = 7098, + [7222] = 7093, + [7223] = 6947, + [7224] = 6952, + [7225] = 6942, + [7226] = 7071, + [7227] = 6988, + [7228] = 6956, + [7229] = 6983, + [7230] = 6943, + [7231] = 6944, + [7232] = 7032, + [7233] = 6964, + [7234] = 7046, + [7235] = 6965, + [7236] = 6970, + [7237] = 6955, + [7238] = 6974, + [7239] = 7070, + [7240] = 7008, + [7241] = 6981, + [7242] = 7009, + [7243] = 6980, + [7244] = 6977, + [7245] = 7114, + [7246] = 6953, + [7247] = 6963, + [7248] = 7021, + [7249] = 7009, + [7250] = 7008, + [7251] = 7127, + [7252] = 7005, + [7253] = 6939, + [7254] = 6960, + [7255] = 7069, + [7256] = 6941, + [7257] = 7137, + [7258] = 7098, + [7259] = 7116, + [7260] = 6990, + [7261] = 7183, + [7262] = 6990, + [7263] = 6947, + [7264] = 7029, + [7265] = 6960, + [7266] = 6939, + [7267] = 7005, + [7268] = 7268, + [7269] = 7030, + [7270] = 6952, + [7271] = 6954, + [7272] = 7046, + [7273] = 6981, + [7274] = 7008, + [7275] = 6980, + [7276] = 7042, + [7277] = 7047, + [7278] = 6956, + [7279] = 7029, + [7280] = 7030, + [7281] = 6991, + [7282] = 7032, + [7283] = 6963, + [7284] = 6993, + [7285] = 7009, + [7286] = 7069, + [7287] = 7070, + [7288] = 7071, + [7289] = 6994, + [7290] = 6999, + [7291] = 7074, + [7292] = 6964, + [7293] = 7076, + [7294] = 7077, + [7295] = 7011, + [7296] = 7035, + [7297] = 6965, + [7298] = 7029, + [7299] = 7030, + [7300] = 7023, + [7301] = 7015, + [7302] = 6949, + [7303] = 7016, + [7304] = 7017, + [7305] = 7093, + [7306] = 6970, + [7307] = 7018, + [7308] = 7020, + [7309] = 7046, + [7310] = 6974, + [7311] = 6977, + [7312] = 7042, + [7313] = 7047, + [7314] = 6979, + [7315] = 7029, + [7316] = 7020, + [7317] = 7018, + [7318] = 6948, + [7319] = 7030, + [7320] = 7017, + [7321] = 7069, + [7322] = 7070, + [7323] = 7071, + [7324] = 7093, + [7325] = 6979, + [7326] = 7074, + [7327] = 7029, + [7328] = 7076, + [7329] = 7077, + [7330] = 7030, + [7331] = 7035, + [7332] = 7332, + [7333] = 6954, + [7334] = 7023, + [7335] = 6991, + [7336] = 7016, + [7337] = 7337, + [7338] = 7015, + [7339] = 7011, + [7340] = 7042, + [7341] = 7047, + [7342] = 7093, + [7343] = 6999, + [7344] = 6994, + [7345] = 6993, + [7346] = 6991, + [7347] = 7080, + [7348] = 6993, + [7349] = 7069, + [7350] = 7070, + [7351] = 7071, + [7352] = 7352, + [7353] = 6994, + [7354] = 7074, + [7355] = 6999, + [7356] = 7076, + [7357] = 7077, + [7358] = 7011, + [7359] = 7035, + [7360] = 7015, + [7361] = 7016, + [7362] = 7023, + [7363] = 7017, + [7364] = 6977, + [7365] = 7042, + [7366] = 7047, + [7367] = 7018, + [7368] = 6974, + [7369] = 6970, + [7370] = 7020, + [7371] = 7046, + [7372] = 7070, + [7373] = 7071, + [7374] = 7374, + [7375] = 6942, + [7376] = 7074, + [7377] = 7008, + [7378] = 7076, + [7379] = 7077, + [7380] = 7380, + [7381] = 7035, + [7382] = 7023, + [7383] = 7047, + [7384] = 6965, + [7385] = 6964, + [7386] = 7093, + [7387] = 7380, + [7388] = 7374, + [7389] = 7032, + [7390] = 7009, + [7391] = 7046, + [7392] = 7008, + [7393] = 6956, + [7394] = 7394, + [7395] = 6983, + [7396] = 6954, + [7397] = 6943, + [7398] = 7042, + [7399] = 6952, + [7400] = 7080, + [7401] = 7009, + [7402] = 6944, + [7403] = 6947, + [7404] = 6979, + [7405] = 7029, + [7406] = 7030, + [7407] = 7098, + [7408] = 7380, + [7409] = 7374, + [7410] = 7093, + [7411] = 7030, + [7412] = 7080, + [7413] = 7380, + [7414] = 7374, + [7415] = 7029, + [7416] = 6941, + [7417] = 7080, + [7418] = 7380, + [7419] = 7374, + [7420] = 6979, + [7421] = 6961, + [7422] = 7080, + [7423] = 7380, + [7424] = 7374, + [7425] = 6968, + [7426] = 7426, }; -static inline bool anon_sym_BANG_character_set_1(int32_t c) { - return (c < 8192 - ? (c < 160 - ? (c < ' ' - ? (c >= '\t' && c <= '\r') - : c <= ' ') - : (c <= 160 || c == 5760)) - : (c <= 8203 || (c < 12288 - ? (c < 8287 - ? c == 8239 - : c <= 8288) - : (c <= 12288 || c == 65279)))); -} - -static inline bool sym__glimmer_template_content_character_set_1(int32_t c) { - return (c < 8232 - ? (c < 160 - ? (c < ' ' - ? (c >= '\t' && c <= '\r') - : c <= ' ') - : (c <= 160 || (c < 8192 - ? c == 5760 - : c <= 8203))) - : (c <= 8233 || (c < 12288 - ? (c < 8287 - ? c == 8239 - : c <= 8288) - : (c <= 12288 || c == 65279)))); -} - -static inline bool sym__glimmer_template_content_character_set_2(int32_t c) { - return (c < 8192 - ? (c < ' ' - ? (c < 11 - ? c == '\t' - : 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_unescaped_double_string_fragment_character_set_1(int32_t c) { - return (c < 8232 - ? (c < 160 - ? (c < ' ' - ? (c >= '\t' && c <= '\f') - : c <= ' ') - : (c <= 160 || (c < 8192 - ? c == 5760 - : c <= 8203))) - : (c <= 8233 || (c < 12288 - ? (c < 8287 - ? c == 8239 - : c <= 8288) - : (c <= 12288 || c == 65279)))); -} - -static inline bool sym_unescaped_double_string_fragment_character_set_2(int32_t c) { - return (c < 8192 - ? (c < ' ' - ? (c < 11 - ? c == '\t' - : c <= '\f') - : (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_identifier_character_set_1(int32_t c) { - return (c < 160 - ? (c < ':' - ? (c < 0 - ? c == 0 - : (c <= '#' || (c >= '%' && c <= '/'))) - : (c <= '@' || (c < '`' - ? (c >= '[' && c <= '^') - : (c <= '`' || (c >= '{' && c <= '~'))))) - : (c <= 160 || (c < 8287 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} - -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 <= 160 || (c < 8287 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} +static TSCharacterRange extras_character_set_1[] = { + {'\t', '\r'}, {' ', ' '}, {0xa0, 0xa0}, {0x1680, 0x1680}, {0x2000, 0x200b}, {0x2028, 0x2029}, {0x202f, 0x202f}, {0x205f, 0x2060}, + {0x3000, 0x3000}, {0xfeff, 0xfeff}, +}; -static 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 TSCharacterRange extras_character_set_2[] = { + {'\t', '\r'}, {' ', ' '}, {0xa0, 0xa0}, {0x1680, 0x1680}, {0x2000, 0x200b}, {0x202f, 0x202f}, {0x205f, 0x2060}, {0x3000, 0x3000}, + {0xfeff, 0xfeff}, +}; -static inline bool sym_identifier_character_set_5(int32_t c) { - return (c < 160 - ? (c < ':' - ? (c < 0 - ? c == 0 - : (c <= '#' || (c >= '%' && c <= '/'))) - : (c <= '@' || (c < '`' - ? (c >= '[' && c <= '^') - : (c <= '`' || (c >= '|' && c <= '~'))))) - : (c <= 160 || (c < 8287 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} +static TSCharacterRange sym_identifier_character_set_1[] = { + {'$', '$'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0x7f, 0x9f}, {0xa1, 0x167f}, {0x1681, 0x1fff}, + {0x200c, 0x202e}, {0x2030, 0x205e}, {0x2061, 0x2fff}, {0x3001, 0xfefe}, {0xff00, 0x10ffff}, +}; -static inline bool sym_private_property_identifier_character_set_1(int32_t c) { - return (c < 160 - ? (c < '[' - ? (c < 0 - ? c == 0 - : (c <= '#' || (c >= '%' && c <= '@'))) - : (c <= '^' || (c < '{' - ? c == '`' - : c <= '~'))) - : (c <= 160 || (c < 8287 - ? (c < 8192 - ? c == 5760 - : (c <= 8203 || c == 8239)) - : (c <= 8288 || (c < 65279 - ? c == 12288 - : c <= 65279))))); -} +static TSCharacterRange sym_identifier_character_set_2[] = { + {'$', '$'}, {'0', '9'}, {'A', 'Z'}, {'\\', '\\'}, {'_', '_'}, {'a', 'z'}, {0x7f, 0x9f}, {0xa1, 0x167f}, + {0x1681, 0x1fff}, {0x200c, 0x202e}, {0x2030, 0x205e}, {0x2061, 0x2fff}, {0x3001, 0xfefe}, {0xff00, 0x10ffff}, +}; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); @@ -12271,2198 +11926,2239 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(357); - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(31); - if (lookahead == '$') ADVANCE(876); - if (lookahead == '%') ADVANCE(496); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == ')') ADVANCE(400); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(488); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(492); - if (lookahead == '.') ADVANCE(434); - if (lookahead == '/') ADVANCE(540); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ':') ADVANCE(415); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(501); - if (lookahead == '=') ADVANCE(370); - if (lookahead == '>') ADVANCE(431); - if (lookahead == '?') ADVANCE(894); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(292); - if (lookahead == ']') ADVANCE(423); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(655); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(624); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(738); - if (lookahead == 'f') ADVANCE(724); - if (lookahead == 'g') ADVANCE(744); - if (lookahead == 'i') ADVANCE(753); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(625); - if (lookahead == 'o') ADVANCE(660); - if (lookahead == 'r') ADVANCE(683); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(634); - if (lookahead == 'u') ADVANCE(774); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == '{') ADVANCE(380); - if (lookahead == '|') ADVANCE(481); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(589); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(346) - if (lookahead != 0 && - lookahead > 31) ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '#', 31, + '$', 876, + '%', 496, + '&', 475, + '\'', 437, + '(', 399, + ')', 400, + '*', 362, + '+', 488, + ',', 381, + '-', 492, + '.', 434, + '/', 540, + '0', 572, + ':', 415, + ';', 414, + '<', 501, + '=', 370, + '>', 431, + '?', 894, + '@', 889, + '[', 422, + '\\', 292, + ']', 423, + '^', 478, + '`', 538, + 'a', 655, + 'b', 795, + 'c', 624, + 'd', 680, + 'e', 738, + 'f', 724, + 'g', 744, + 'i', 753, + 'l', 681, + 'm', 789, + 'n', 625, + 'o', 660, + 'r', 683, + 's', 630, + 't', 634, + 'u', 774, + 'v', 637, + 'w', 722, + '{', 380, + '|', 481, + '}', 382, + '~', 516, + 0x2028, 589, + 0x2029, 589, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(346); + if (lookahead > '@') ADVANCE(885); END_STATE(); case 1: - if (lookahead == '\n') SKIP(1) + if (lookahead == '\n') SKIP(1); if (lookahead == '/') ADVANCE(425); if (lookahead == '<') ADVANCE(427); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(426); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(426); if (lookahead != 0) ADVANCE(424); END_STATE(); case 2: - if (lookahead == '\n') SKIP(76) + if (lookahead == '\n') SKIP(76); if (lookahead == '/') ADVANCE(59); if (lookahead == '[') ADVANCE(86); if (lookahead == '\\') ADVANCE(345); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(541); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(541); if (lookahead != 0) ADVANCE(542); END_STATE(); case 3: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '%') ADVANCE(496); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == ')') ADVANCE(400); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(487); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(491); - if (lookahead == '.') ADVANCE(434); - if (lookahead == '/') ADVANCE(494); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ':') ADVANCE(415); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(501); - if (lookahead == '=') ADVANCE(370); - if (lookahead == '>') ADVANCE(431); - if (lookahead == '?') ADVANCE(894); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == ']') ADVANCE(423); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(767); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(742); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(764); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(480); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(596); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(3) - if (lookahead != 0 && - lookahead > 31) ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '#', 85, + '%', 496, + '&', 475, + '\'', 437, + '(', 399, + ')', 400, + '*', 362, + '+', 487, + ',', 381, + '-', 491, + '.', 434, + '/', 494, + '0', 572, + ':', 415, + ';', 414, + '<', 501, + '=', 370, + '>', 431, + '?', 894, + '@', 889, + '[', 422, + '\\', 299, + ']', 423, + '^', 478, + '`', 538, + 'a', 767, + 'b', 795, + 'c', 742, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 764, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + 'v', 790, + '{', 379, + '|', 480, + '}', 382, + '~', 516, + 0x2028, 596, + 0x2029, 596, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(3); + if (lookahead > '#') ADVANCE(885); END_STATE(); case 4: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '%') ADVANCE(496); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == ')') ADVANCE(400); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(487); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(491); - if (lookahead == '.') ADVANCE(434); - if (lookahead == '/') ADVANCE(494); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ':') ADVANCE(415); - if (lookahead == '<') ADVANCE(501); - if (lookahead == '=') ADVANCE(370); - if (lookahead == '>') ADVANCE(431); - if (lookahead == '?') ADVANCE(894); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(655); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(741); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(764); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(625); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'u') ADVANCE(774); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == '{') ADVANCE(380); - if (lookahead == '|') ADVANCE(480); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(593); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(4) - if (lookahead != 0 && - lookahead > 31 && - lookahead != ';' && - lookahead != ']' && - lookahead != '}') ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '#', 85, + '%', 496, + '&', 475, + '\'', 437, + '(', 399, + ')', 400, + '*', 362, + '+', 487, + ',', 381, + '-', 491, + '.', 434, + '/', 494, + '0', 572, + ':', 415, + '<', 501, + '=', 370, + '>', 431, + '?', 894, + '@', 889, + '[', 422, + '\\', 299, + '^', 478, + '`', 538, + 'a', 655, + 'b', 795, + 'c', 741, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 764, + 'l', 681, + 'm', 789, + 'n', 625, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + 'u', 774, + 'v', 790, + '{', 380, + '|', 480, + '~', 516, + 0x2028, 593, + 0x2029, 593, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(4); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 5: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '%') ADVANCE(496); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(487); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(491); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '/') ADVANCE(494); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ':') ADVANCE(415); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(500); - if (lookahead == '=') ADVANCE(370); - if (lookahead == '>') ADVANCE(431); - if (lookahead == '?') ADVANCE(894); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(768); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(778); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == '|') ADVANCE(480); - if (lookahead == '}') ADVANCE(382); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(601); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(5) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || '@' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '#', 85, + '%', 496, + '&', 475, + '\'', 437, + '(', 399, + '*', 362, + '+', 487, + ',', 381, + '-', 491, + '.', 435, + '/', 494, + '0', 572, + ':', 415, + ';', 414, + '<', 500, + '=', 370, + '>', 431, + '?', 894, + '[', 422, + '\\', 299, + '^', 478, + '`', 538, + 'a', 768, + 'b', 795, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 778, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + '|', 480, + '}', 382, + 0x2028, 601, + 0x2029, 601, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(5); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 6: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '%') ADVANCE(496); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(487); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(491); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '/') ADVANCE(494); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ':') ADVANCE(415); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(500); - if (lookahead == '=') ADVANCE(370); - if (lookahead == '>') ADVANCE(431); - if (lookahead == '?') ADVANCE(894); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(768); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'i') ADVANCE(778); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == '|') ADVANCE(480); - if (lookahead == '}') ADVANCE(382); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(602); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(6) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || '@' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '#', 85, + '%', 496, + '&', 475, + '\'', 437, + '(', 399, + '*', 362, + '+', 487, + ',', 381, + '-', 491, + '.', 435, + '/', 494, + '0', 572, + ':', 415, + ';', 414, + '<', 500, + '=', 370, + '>', 431, + '?', 894, + '[', 422, + '\\', 299, + '^', 478, + '`', 538, + 'a', 768, + 'b', 795, + 'd', 700, + 'e', 869, + 'i', 778, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + '|', 480, + '}', 382, + 0x2028, 602, + 0x2029, 602, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(6); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 7: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '%') ADVANCE(496); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(487); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(491); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '/') ADVANCE(494); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(501); - if (lookahead == '=') ADVANCE(370); - if (lookahead == '>') ADVANCE(431); - if (lookahead == '?') ADVANCE(65); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(767); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(742); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(764); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(660); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(480); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(595); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(7) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ':' < lookahead) && - lookahead != ']' && - lookahead != '}') ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '#', 85, + '%', 496, + '&', 475, + '\'', 437, + '(', 399, + '*', 362, + '+', 487, + ',', 381, + '-', 491, + '.', 435, + '/', 494, + '0', 572, + ';', 414, + '<', 501, + '=', 370, + '>', 431, + '?', 65, + '@', 889, + '[', 422, + '\\', 299, + '^', 478, + '`', 538, + 'a', 767, + 'b', 795, + 'c', 742, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 764, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 660, + 'r', 706, + 's', 630, + 't', 874, + 'v', 790, + '{', 379, + '|', 480, + '~', 516, + 0x2028, 595, + 0x2029, 595, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(7); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 8: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '%') ADVANCE(496); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(487); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(491); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '/') ADVANCE(494); - if (lookahead == '0') ADVANCE(572); - if (lookahead == '<') ADVANCE(501); - if (lookahead == '=') ADVANCE(370); - if (lookahead == '>') ADVANCE(431); - if (lookahead == '?') ADVANCE(65); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(767); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(742); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(754); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(480); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(597); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(8) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ';' < lookahead) && - lookahead != ']' && - lookahead != '}') ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '#', 85, + '%', 496, + '&', 475, + '\'', 437, + '(', 399, + '*', 362, + '+', 487, + ',', 381, + '-', 491, + '.', 435, + '/', 494, + '0', 572, + '<', 501, + '=', 370, + '>', 431, + '?', 65, + '@', 889, + '[', 422, + '\\', 299, + '^', 478, + '`', 538, + 'a', 767, + 'b', 795, + 'c', 742, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 754, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + 'v', 790, + '{', 379, + '|', 480, + '~', 516, + 0x2028, 597, + 0x2029, 597, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(8); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 9: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '%') ADVANCE(495); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == ')') ADVANCE(400); - if (lookahead == '*') ADVANCE(363); - if (lookahead == '+') ADVANCE(486); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ':') ADVANCE(415); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(503); - if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(432); - if (lookahead == '?') ADVANCE(66); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == ']') ADVANCE(423); - if (lookahead == '^') ADVANCE(477); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(767); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(742); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(764); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(482); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(596); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(9) - if (lookahead != 0 && - lookahead > 31) ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '#', 85, + '%', 495, + '&', 476, + '\'', 437, + '(', 399, + ')', 400, + '*', 363, + '+', 486, + ',', 381, + '-', 490, + '.', 435, + '/', 493, + '0', 572, + ':', 415, + ';', 414, + '<', 503, + '=', 80, + '>', 432, + '?', 66, + '@', 889, + '[', 422, + '\\', 299, + ']', 423, + '^', 477, + '`', 538, + 'a', 767, + 'b', 795, + 'c', 742, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 764, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + 'v', 790, + '{', 379, + '|', 482, + '}', 382, + '~', 516, + 0x2028, 596, + 0x2029, 596, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(9); + if (lookahead > '#') ADVANCE(885); END_STATE(); case 10: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '%') ADVANCE(495); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(363); - if (lookahead == '+') ADVANCE(486); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(503); - if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(432); - if (lookahead == '?') ADVANCE(66); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '^') ADVANCE(477); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(767); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(742); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(764); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(660); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(482); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(595); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(10) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ':' < lookahead) && - lookahead != ']' && - lookahead != '}') ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '#', 85, + '%', 495, + '&', 476, + '\'', 437, + '(', 399, + '*', 363, + '+', 486, + ',', 381, + '-', 490, + '.', 435, + '/', 493, + '0', 572, + ';', 414, + '<', 503, + '=', 80, + '>', 432, + '?', 66, + '@', 889, + '[', 422, + '\\', 299, + '^', 477, + '`', 538, + 'a', 767, + 'b', 795, + 'c', 742, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 764, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 660, + 'r', 706, + 's', 630, + 't', 874, + 'v', 790, + '{', 379, + '|', 482, + '~', 516, + 0x2028, 595, + 0x2029, 595, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(10); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 11: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '%') ADVANCE(495); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(363); - if (lookahead == '+') ADVANCE(486); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(503); - if (lookahead == '=') ADVANCE(369); - if (lookahead == '>') ADVANCE(432); - if (lookahead == '?') ADVANCE(66); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '^') ADVANCE(477); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(655); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(772); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(763); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(482); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(590); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(11) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '#', 85, + '%', 495, + '&', 476, + '\'', 437, + '(', 399, + '*', 363, + '+', 486, + ',', 381, + '-', 490, + '.', 435, + '/', 493, + '0', 572, + ';', 414, + '<', 503, + '=', 369, + '>', 432, + '?', 66, + '@', 889, + '[', 422, + '\\', 299, + '^', 477, + '`', 538, + 'a', 655, + 'b', 795, + 'c', 651, + 'd', 680, + 'e', 772, + 'f', 859, + 'i', 763, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + 'v', 637, + 'w', 722, + '{', 379, + '|', 482, + '}', 382, + '~', 516, + 0x2028, 590, + 0x2029, 590, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(11); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead)) ADVANCE(885); END_STATE(); case 12: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '%') ADVANCE(495); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(363); - if (lookahead == '+') ADVANCE(486); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(503); - if (lookahead == '=') ADVANCE(369); - if (lookahead == '>') ADVANCE(432); - if (lookahead == '?') ADVANCE(66); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '^') ADVANCE(477); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(655); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(763); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(482); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(591); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(12) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '#', 85, + '%', 495, + '&', 476, + '\'', 437, + '(', 399, + '*', 363, + '+', 486, + ',', 381, + '-', 490, + '.', 435, + '/', 493, + '0', 572, + ';', 414, + '<', 503, + '=', 369, + '>', 432, + '?', 66, + '@', 889, + '[', 422, + '\\', 299, + '^', 477, + '`', 538, + 'a', 655, + 'b', 795, + 'c', 651, + 'd', 680, + 'e', 739, + 'f', 859, + 'i', 763, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + 'v', 637, + 'w', 722, + '{', 379, + '|', 482, + '}', 382, + '~', 516, + 0x2028, 591, + 0x2029, 591, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(12); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead)) ADVANCE(885); END_STATE(); case 13: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '%') ADVANCE(495); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(363); - if (lookahead == '+') ADVANCE(486); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == '<') ADVANCE(503); - if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(432); - if (lookahead == '?') ADVANCE(66); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '^') ADVANCE(477); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(767); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(742); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(754); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(482); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(597); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(13) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ';' < lookahead) && - lookahead != ']' && - lookahead != '}') ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '#', 85, + '%', 495, + '&', 476, + '\'', 437, + '(', 399, + '*', 363, + '+', 486, + ',', 381, + '-', 490, + '.', 435, + '/', 493, + '0', 572, + '<', 503, + '=', 80, + '>', 432, + '?', 66, + '@', 889, + '[', 422, + '\\', 299, + '^', 477, + '`', 538, + 'a', 767, + 'b', 795, + 'c', 742, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 754, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + 'v', 790, + '{', 379, + '|', 482, + '~', 516, + 0x2028, 597, + 0x2029, 597, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(13); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 14: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '%') ADVANCE(496); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == ')') ADVANCE(400); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(487); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(491); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '/') ADVANCE(494); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ':') ADVANCE(415); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(500); - if (lookahead == '=') ADVANCE(370); - if (lookahead == '>') ADVANCE(431); - if (lookahead == '?') ADVANCE(894); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == ']') ADVANCE(423); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(656); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(794); - if (lookahead == 'i') ADVANCE(778); - if (lookahead == 'n') ADVANCE(682); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 'u') ADVANCE(774); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == '{') ADVANCE(380); - if (lookahead == '|') ADVANCE(480); - if (lookahead == '}') ADVANCE(382); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(599); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(14) - if (lookahead != 0 && - lookahead > '#' && - lookahead != '@' && - lookahead != '~') ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '%', 496, + '&', 475, + '\'', 437, + '(', 399, + ')', 400, + '*', 362, + '+', 487, + ',', 381, + '-', 491, + '.', 435, + '/', 494, + '0', 572, + ':', 415, + ';', 414, + '<', 500, + '=', 370, + '>', 431, + '?', 894, + '[', 422, + '\\', 299, + ']', 423, + '^', 478, + '`', 538, + 'a', 656, + 'b', 795, + 'c', 794, + 'i', 778, + 'n', 682, + 'o', 661, + 'r', 706, + 's', 630, + 'u', 774, + 'v', 790, + '{', 380, + '|', 480, + '}', 382, + 0x2028, 599, + 0x2029, 599, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(14); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 15: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '%') ADVANCE(496); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == ')') ADVANCE(400); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(487); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(491); - if (lookahead == '.') ADVANCE(433); - if (lookahead == '/') ADVANCE(494); - if (lookahead == ':') ADVANCE(415); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(500); - if (lookahead == '=') ADVANCE(370); - if (lookahead == '>') ADVANCE(431); - if (lookahead == '?') ADVANCE(894); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == ']') ADVANCE(423); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(829); - if (lookahead == 'i') ADVANCE(778); - if (lookahead == 's') ADVANCE(631); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(480); - if (lookahead == '}') ADVANCE(382); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(645); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(15) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '0' || '@' < lookahead) && - lookahead != '~') ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '%', 496, + '&', 475, + '\'', 437, + '(', 399, + ')', 400, + '*', 362, + '+', 487, + ',', 381, + '-', 491, + '.', 433, + '/', 494, + ':', 415, + ';', 414, + '<', 500, + '=', 370, + '>', 431, + '?', 894, + '[', 422, + '\\', 299, + ']', 423, + '^', 478, + '`', 538, + 'a', 829, + 'i', 778, + 's', 631, + '{', 379, + '|', 480, + '}', 382, + 0x2028, 645, + 0x2029, 645, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(15); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 16: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '%') ADVANCE(496); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(487); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(491); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '/') ADVANCE(494); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(500); - if (lookahead == '=') ADVANCE(370); - if (lookahead == '>') ADVANCE(431); - if (lookahead == '?') ADVANCE(894); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(656); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(794); - if (lookahead == 'i') ADVANCE(778); - if (lookahead == 'n') ADVANCE(682); - if (lookahead == 'o') ADVANCE(660); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 'u') ADVANCE(774); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == '{') ADVANCE(380); - if (lookahead == '|') ADVANCE(480); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(598); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(16) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < ')' || '@' < lookahead) && - lookahead != ']' && - lookahead != '}' && - lookahead != '~') ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '%', 496, + '&', 475, + '\'', 437, + '(', 399, + '*', 362, + '+', 487, + ',', 381, + '-', 491, + '.', 435, + '/', 494, + '0', 572, + ';', 414, + '<', 500, + '=', 370, + '>', 431, + '?', 894, + '[', 422, + '\\', 299, + '^', 478, + '`', 538, + 'a', 656, + 'b', 795, + 'c', 794, + 'i', 778, + 'n', 682, + 'o', 660, + 'r', 706, + 's', 630, + 'u', 774, + 'v', 790, + '{', 380, + '|', 480, + 0x2028, 598, + 0x2029, 598, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(16); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 17: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '%') ADVANCE(496); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(487); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(491); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '/') ADVANCE(494); - if (lookahead == '0') ADVANCE(572); - if (lookahead == '<') ADVANCE(500); - if (lookahead == '=') ADVANCE(370); - if (lookahead == '>') ADVANCE(431); - if (lookahead == '?') ADVANCE(894); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(656); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(794); - if (lookahead == 'i') ADVANCE(759); - if (lookahead == 'n') ADVANCE(682); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 'u') ADVANCE(774); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == '{') ADVANCE(380); - if (lookahead == '|') ADVANCE(480); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(600); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(17) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < ')' || '@' < lookahead) && - lookahead != ']' && - lookahead != '}' && - lookahead != '~') ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '%', 496, + '&', 475, + '\'', 437, + '(', 399, + '*', 362, + '+', 487, + ',', 381, + '-', 491, + '.', 435, + '/', 494, + '0', 572, + '<', 500, + '=', 370, + '>', 431, + '?', 894, + '[', 422, + '\\', 299, + '^', 478, + '`', 538, + 'a', 656, + 'b', 795, + 'c', 794, + 'i', 759, + 'n', 682, + 'o', 661, + 'r', 706, + 's', 630, + 'u', 774, + 'v', 790, + '{', 380, + '|', 480, + 0x2028, 600, + 0x2029, 600, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(17); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 18: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '%') ADVANCE(496); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(487); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(491); - if (lookahead == '.') ADVANCE(433); - if (lookahead == '/') ADVANCE(494); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(500); - if (lookahead == '=') ADVANCE(370); - if (lookahead == '>') ADVANCE(431); - if (lookahead == '?') ADVANCE(65); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(829); - if (lookahead == 'i') ADVANCE(778); - if (lookahead == 'o') ADVANCE(713); - if (lookahead == 's') ADVANCE(631); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(480); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(644); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(18) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < ')' || '@' < lookahead) && - lookahead != ']' && - lookahead != '}' && - lookahead != '~') ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '%', 496, + '&', 475, + '\'', 437, + '(', 399, + '*', 362, + '+', 487, + ',', 381, + '-', 491, + '.', 433, + '/', 494, + ';', 414, + '<', 500, + '=', 370, + '>', 431, + '?', 65, + '[', 422, + '\\', 299, + '^', 478, + '`', 538, + 'a', 829, + 'i', 778, + 'o', 713, + 's', 631, + '{', 379, + '|', 480, + 0x2028, 644, + 0x2029, 644, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(18); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 19: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '%') ADVANCE(496); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(487); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(491); - if (lookahead == '.') ADVANCE(433); - if (lookahead == '/') ADVANCE(494); - if (lookahead == '<') ADVANCE(500); - if (lookahead == '=') ADVANCE(370); - if (lookahead == '>') ADVANCE(431); - if (lookahead == '?') ADVANCE(65); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(829); - if (lookahead == 'i') ADVANCE(759); - if (lookahead == 's') ADVANCE(631); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(480); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(646); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(19) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < ')' || '@' < lookahead) && - lookahead != ']' && - lookahead != '}' && - lookahead != '~') ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '%', 496, + '&', 475, + '\'', 437, + '(', 399, + '*', 362, + '+', 487, + ',', 381, + '-', 491, + '.', 433, + '/', 494, + '<', 500, + '=', 370, + '>', 431, + '?', 65, + '[', 422, + '\\', 299, + '^', 478, + '`', 538, + 'a', 829, + 'i', 759, + 's', 631, + '{', 379, + '|', 480, + 0x2028, 646, + 0x2029, 646, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(19); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 20: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '%') ADVANCE(496); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '(') ADVANCE(399); - if (lookahead == ')') ADVANCE(400); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(487); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(491); - if (lookahead == '.') ADVANCE(433); - if (lookahead == '/') ADVANCE(494); - if (lookahead == ':') ADVANCE(415); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(500); - if (lookahead == '=') ADVANCE(370); - if (lookahead == '>') ADVANCE(431); - if (lookahead == '?') ADVANCE(894); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == ']') ADVANCE(423); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(768); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(778); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == '|') ADVANCE(480); - if (lookahead == '}') ADVANCE(382); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(628); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(20) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '\'' || '@' < lookahead) && - (lookahead < '{' || '~' < lookahead)) ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '%', 496, + '&', 475, + '(', 399, + ')', 400, + '*', 362, + '+', 487, + ',', 381, + '-', 491, + '.', 433, + '/', 494, + ':', 415, + ';', 414, + '<', 500, + '=', 370, + '>', 431, + '?', 894, + '[', 422, + '\\', 299, + ']', 423, + '^', 478, + '`', 538, + 'a', 768, + 'b', 795, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 778, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + '|', 480, + '}', 382, + 0x2028, 628, + 0x2029, 628, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(20); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 21: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '%') ADVANCE(496); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '(') ADVANCE(399); - if (lookahead == ')') ADVANCE(400); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(487); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(491); - if (lookahead == '.') ADVANCE(433); - if (lookahead == '/') ADVANCE(494); - if (lookahead == ':') ADVANCE(415); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(500); - if (lookahead == '=') ADVANCE(370); - if (lookahead == '>') ADVANCE(431); - if (lookahead == '?') ADVANCE(894); - if (lookahead == '[') ADVANCE(422); - if (lookahead == ']') ADVANCE(423); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(264); - if (lookahead == 'e') ADVANCE(305); - if (lookahead == 'f') ADVANCE(253); - if (lookahead == 'i') ADVANCE(208); - if (lookahead == 'o') ADVANCE(159); - if (lookahead == 's') ADVANCE(93); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(481); - if (lookahead == '}') ADVANCE(382); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(21) + ADVANCE_MAP( + '!', 396, + '%', 496, + '&', 475, + '(', 399, + ')', 400, + '*', 362, + '+', 487, + ',', 381, + '-', 491, + '.', 433, + '/', 494, + ':', 415, + ';', 414, + '<', 500, + '=', 370, + '>', 431, + '?', 894, + '[', 422, + ']', 423, + '^', 478, + '`', 538, + 'a', 264, + 'e', 305, + 'f', 253, + 'i', 208, + 'o', 159, + 's', 93, + '{', 379, + '|', 481, + '}', 382, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(21); END_STATE(); case 22: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '%') ADVANCE(496); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(487); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(491); - if (lookahead == '.') ADVANCE(433); - if (lookahead == '/') ADVANCE(494); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(500); - if (lookahead == '=') ADVANCE(370); - if (lookahead == '>') ADVANCE(431); - if (lookahead == '?') ADVANCE(65); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(768); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(778); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(660); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == '|') ADVANCE(480); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(627); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(22) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '\'' || '@' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '%', 496, + '&', 475, + '(', 399, + '*', 362, + '+', 487, + ',', 381, + '-', 491, + '.', 433, + '/', 494, + ';', 414, + '<', 500, + '=', 370, + '>', 431, + '?', 65, + '[', 422, + '\\', 299, + '^', 478, + '`', 538, + 'a', 768, + 'b', 795, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 778, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 660, + 'r', 706, + 's', 630, + 't', 874, + '|', 480, + 0x2028, 627, + 0x2029, 627, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(22); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 23: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '%') ADVANCE(496); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(487); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(491); - if (lookahead == '.') ADVANCE(433); - if (lookahead == '/') ADVANCE(494); - if (lookahead == '<') ADVANCE(500); - if (lookahead == '=') ADVANCE(370); - if (lookahead == '>') ADVANCE(431); - if (lookahead == '?') ADVANCE(65); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(768); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(759); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(480); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(629); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(23) - if (lookahead != 0 && - lookahead > '#' && - (lookahead < '\'' || '@' < lookahead) && - lookahead != ']' && - lookahead != '}' && - lookahead != '~') ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '%', 496, + '&', 475, + '(', 399, + '*', 362, + '+', 487, + ',', 381, + '-', 491, + '.', 433, + '/', 494, + '<', 500, + '=', 370, + '>', 431, + '?', 65, + '[', 422, + '\\', 299, + '^', 478, + '`', 538, + 'a', 768, + 'b', 795, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 759, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + '{', 379, + '|', 480, + 0x2028, 629, + 0x2029, 629, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(23); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 24: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '%') ADVANCE(495); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(399); - if (lookahead == ')') ADVANCE(400); - if (lookahead == '*') ADVANCE(363); - if (lookahead == '+') ADVANCE(486); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(433); - if (lookahead == '/') ADVANCE(493); - if (lookahead == ':') ADVANCE(415); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(502); - if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(432); - if (lookahead == '?') ADVANCE(66); - if (lookahead == '[') ADVANCE(422); - if (lookahead == ']') ADVANCE(423); - if (lookahead == '^') ADVANCE(477); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(563); - if (lookahead == 'i') ADVANCE(558); - if (lookahead == 's') ADVANCE(543); - if (lookahead == '{') ADVANCE(380); - if (lookahead == '|') ADVANCE(482); - if (lookahead == '}') ADVANCE(382); + ADVANCE_MAP( + '!', 396, + '%', 495, + '&', 476, + '(', 399, + ')', 400, + '*', 363, + '+', 486, + ',', 381, + '-', 490, + '.', 433, + '/', 493, + ':', 415, + ';', 414, + '<', 502, + '=', 80, + '>', 432, + '?', 66, + '[', 422, + ']', 423, + '^', 477, + '`', 538, + 'a', 563, + 'i', 558, + 's', 543, + '{', 380, + '|', 482, + '}', 382, + ); if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(570); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(25) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(25); END_STATE(); case 25: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '%') ADVANCE(495); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(399); - if (lookahead == ')') ADVANCE(400); - if (lookahead == '*') ADVANCE(363); - if (lookahead == '+') ADVANCE(486); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(433); - if (lookahead == '/') ADVANCE(493); - if (lookahead == ':') ADVANCE(415); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(502); - if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(432); - if (lookahead == '?') ADVANCE(66); - if (lookahead == '[') ADVANCE(422); - if (lookahead == ']') ADVANCE(423); - if (lookahead == '^') ADVANCE(477); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(264); - if (lookahead == 'i') ADVANCE(215); - if (lookahead == 's') ADVANCE(93); - if (lookahead == '{') ADVANCE(380); - if (lookahead == '|') ADVANCE(482); - if (lookahead == '}') ADVANCE(382); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(25) + ADVANCE_MAP( + '!', 396, + '%', 495, + '&', 476, + '(', 399, + ')', 400, + '*', 363, + '+', 486, + ',', 381, + '-', 490, + '.', 433, + '/', 493, + ':', 415, + ';', 414, + '<', 502, + '=', 80, + '>', 432, + '?', 66, + '[', 422, + ']', 423, + '^', 477, + '`', 538, + 'a', 264, + 'i', 215, + 's', 93, + '{', 380, + '|', 482, + '}', 382, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(25); END_STATE(); case 26: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '%') ADVANCE(495); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(399); - if (lookahead == ')') ADVANCE(400); - if (lookahead == '*') ADVANCE(363); - if (lookahead == '+') ADVANCE(486); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(433); - if (lookahead == '/') ADVANCE(493); - if (lookahead == ':') ADVANCE(415); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(502); - if (lookahead == '=') ADVANCE(369); - if (lookahead == '>') ADVANCE(432); - if (lookahead == '?') ADVANCE(895); - if (lookahead == '[') ADVANCE(422); - if (lookahead == ']') ADVANCE(423); - if (lookahead == '^') ADVANCE(477); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(264); - if (lookahead == 'e') ADVANCE(184); - if (lookahead == 'i') ADVANCE(209); - if (lookahead == 'o') ADVANCE(159); - if (lookahead == 's') ADVANCE(93); - if (lookahead == 'w') ADVANCE(166); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(483); - if (lookahead == '}') ADVANCE(382); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(26) + ADVANCE_MAP( + '!', 396, + '%', 495, + '&', 476, + '(', 399, + ')', 400, + '*', 363, + '+', 486, + ',', 381, + '-', 490, + '.', 433, + '/', 493, + ':', 415, + ';', 414, + '<', 502, + '=', 369, + '>', 432, + '?', 895, + '[', 422, + ']', 423, + '^', 477, + '`', 538, + 'a', 264, + 'e', 184, + 'i', 209, + 'o', 159, + 's', 93, + 'w', 166, + '{', 379, + '|', 483, + '}', 382, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(26); END_STATE(); case 27: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '%') ADVANCE(495); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(363); - if (lookahead == '+') ADVANCE(486); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(433); - if (lookahead == '/') ADVANCE(493); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(502); - if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(432); - if (lookahead == '?') ADVANCE(66); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '^') ADVANCE(477); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(563); - if (lookahead == 'i') ADVANCE(558); - if (lookahead == 'o') ADVANCE(551); - if (lookahead == 's') ADVANCE(543); - if (lookahead == '|') ADVANCE(482); + ADVANCE_MAP( + '!', 396, + '%', 495, + '&', 476, + '(', 399, + '*', 363, + '+', 486, + ',', 381, + '-', 490, + '.', 433, + '/', 493, + ';', 414, + '<', 502, + '=', 80, + '>', 432, + '?', 66, + '[', 422, + '^', 477, + '`', 538, + 'a', 563, + 'i', 558, + 'o', 551, + 's', 543, + '|', 482, + ); if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(570); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(28) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(28); END_STATE(); case 28: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '%') ADVANCE(495); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(363); - if (lookahead == '+') ADVANCE(486); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(433); - if (lookahead == '/') ADVANCE(493); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(502); - if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(432); - if (lookahead == '?') ADVANCE(66); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '^') ADVANCE(477); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(264); - if (lookahead == 'i') ADVANCE(215); - if (lookahead == 'o') ADVANCE(159); - if (lookahead == 's') ADVANCE(93); - if (lookahead == '|') ADVANCE(482); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(28) + ADVANCE_MAP( + '!', 396, + '%', 495, + '&', 476, + '(', 399, + '*', 363, + '+', 486, + ',', 381, + '-', 490, + '.', 433, + '/', 493, + ';', 414, + '<', 502, + '=', 80, + '>', 432, + '?', 66, + '[', 422, + '^', 477, + '`', 538, + 'a', 264, + 'i', 215, + 'o', 159, + 's', 93, + '|', 482, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(28); END_STATE(); case 29: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '%') ADVANCE(495); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(363); - if (lookahead == '+') ADVANCE(486); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(433); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '<') ADVANCE(502); - if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(432); - if (lookahead == '?') ADVANCE(66); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '^') ADVANCE(477); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(563); - if (lookahead == 'i') ADVANCE(556); - if (lookahead == 's') ADVANCE(543); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(482); + ADVANCE_MAP( + '!', 396, + '%', 495, + '&', 476, + '(', 399, + '*', 363, + '+', 486, + ',', 381, + '-', 490, + '.', 433, + '/', 493, + '<', 502, + '=', 80, + '>', 432, + '?', 66, + '[', 422, + '^', 477, + '`', 538, + 'a', 563, + 'i', 556, + 's', 543, + '{', 379, + '|', 482, + ); if (('b' <= lookahead && lookahead <= 'z')) ADVANCE(570); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(30) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(30); END_STATE(); case 30: - if (lookahead == '!') ADVANCE(396); - if (lookahead == '%') ADVANCE(495); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(363); - if (lookahead == '+') ADVANCE(486); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(433); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '<') ADVANCE(502); - if (lookahead == '=') ADVANCE(80); - if (lookahead == '>') ADVANCE(432); - if (lookahead == '?') ADVANCE(66); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '^') ADVANCE(477); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(264); - if (lookahead == 'i') ADVANCE(208); - if (lookahead == 's') ADVANCE(93); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(482); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(30) + ADVANCE_MAP( + '!', 396, + '%', 495, + '&', 476, + '(', 399, + '*', 363, + '+', 486, + ',', 381, + '-', 490, + '.', 433, + '/', 493, + '<', 502, + '=', 80, + '>', 432, + '?', 66, + '[', 422, + '^', 477, + '`', 538, + 'a', 264, + 'i', 208, + 's', 93, + '{', 379, + '|', 482, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(30); END_STATE(); case 31: if (lookahead == '!') ADVANCE(358); if (lookahead == '\\') ADVANCE(298); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(886); + if (set_contains(sym_identifier_character_set_1, 13, lookahead)) ADVANCE(886); END_STATE(); case 32: - if (lookahead == '!') ADVANCE(395); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '&') ADVANCE(474); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == ')') ADVANCE(400); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '+') ADVANCE(486); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(63); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == '<') ADVANCE(504); - if (lookahead == '?') ADVANCE(892); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == ']') ADVANCE(423); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(741); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(766); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(625); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'u') ADVANCE(774); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == '{') ADVANCE(380); - if (lookahead == '|') ADVANCE(479); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(614); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(32) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '>' < lookahead) && - lookahead != '^' && - lookahead != '}') ADVANCE(884); + ADVANCE_MAP( + '!', 395, + '"', 436, + '#', 85, + '&', 474, + '\'', 437, + '(', 399, + ')', 400, + '*', 361, + '+', 486, + ',', 381, + '-', 490, + '.', 63, + '/', 493, + '0', 572, + '<', 504, + '?', 892, + '@', 889, + '[', 422, + '\\', 299, + ']', 423, + '`', 538, + 'a', 657, + 'b', 795, + 'c', 741, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 766, + 'l', 681, + 'm', 789, + 'n', 625, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'u', 774, + 'v', 790, + '{', 380, + '|', 479, + '~', 516, + 0x2028, 614, + 0x2029, 614, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(32); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 33: - if (lookahead == '!') ADVANCE(395); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '&') ADVANCE(474); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == ')') ADVANCE(400); - if (lookahead == '+') ADVANCE(486); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(324); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(504); - if (lookahead == '>') ADVANCE(430); - if (lookahead == '?') ADVANCE(892); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == ']') ADVANCE(423); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(769); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(742); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(868); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(766); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(484); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(621); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(33) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '=' < lookahead) && - lookahead != '^') ADVANCE(884); + ADVANCE_MAP( + '!', 395, + '"', 436, + '#', 85, + '&', 474, + '\'', 437, + '(', 399, + ')', 400, + '+', 486, + ',', 381, + '-', 490, + '.', 324, + '/', 493, + '0', 572, + ';', 414, + '<', 504, + '>', 430, + '?', 892, + '@', 889, + '[', 422, + '\\', 299, + ']', 423, + '`', 538, + 'a', 769, + 'b', 795, + 'c', 742, + 'd', 700, + 'e', 868, + 'f', 859, + 'i', 766, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 790, + '{', 379, + '|', 484, + '}', 382, + '~', 516, + 0x2028, 621, + 0x2029, 621, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(33); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead)) ADVANCE(885); END_STATE(); case 34: - if (lookahead == '!') ADVANCE(395); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == ')') ADVANCE(400); - if (lookahead == '+') ADVANCE(486); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(434); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(504); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == ']') ADVANCE(423); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(769); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(742); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(766); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(34) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != '^' && - lookahead != '|' && - lookahead != '}') ADVANCE(884); + ADVANCE_MAP( + '!', 395, + '"', 436, + '#', 85, + '\'', 437, + '(', 399, + ')', 400, + '+', 486, + ',', 381, + '-', 490, + '.', 434, + '/', 493, + '0', 572, + ';', 414, + '<', 504, + '@', 889, + '[', 422, + '\\', 299, + ']', 423, + '`', 538, + 'a', 769, + 'b', 795, + 'c', 742, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 766, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 790, + '{', 379, + '~', 516, + 0x2028, 620, + 0x2029, 620, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(34); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 35: - if (lookahead == '!') ADVANCE(395); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '+') ADVANCE(485); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(489); - if (lookahead == '.') ADVANCE(434); - if (lookahead == '/') ADVANCE(59); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ':') ADVANCE(415); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(499); - if (lookahead == '=') ADVANCE(368); - if (lookahead == '?') ADVANCE(892); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(658); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '}') ADVANCE(382); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(622); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(35) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '>' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`' && - lookahead != '~') ADVANCE(884); + ADVANCE_MAP( + '!', 395, + '"', 436, + '#', 85, + '\'', 437, + '(', 399, + '*', 361, + '+', 485, + ',', 381, + '-', 489, + '.', 434, + '/', 59, + '0', 572, + ':', 415, + ';', 414, + '<', 499, + '=', 368, + '?', 892, + '@', 889, + '[', 422, + '\\', 299, + 'a', 658, + 'b', 795, + 'd', 700, + 'e', 869, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + '{', 379, + '|', 318, + '}', 382, + 0x2028, 622, + 0x2029, 622, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(35); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 36: - if (lookahead == '!') ADVANCE(395); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(361); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '.') ADVANCE(63); - if (lookahead == '/') ADVANCE(59); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ':') ADVANCE(415); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(499); - if (lookahead == '=') ADVANCE(371); - if (lookahead == '?') ADVANCE(892); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(770); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(318); - if (lookahead == '}') ADVANCE(382); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(623); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(36) - if (lookahead != 0 && - lookahead > 31 && + ADVANCE_MAP( + '!', 395, + '"', 436, + '#', 85, + '\'', 437, + '(', 399, + '*', 361, + ',', 381, + '.', 63, + '/', 59, + '0', 572, + ':', 415, + ';', 414, + '<', 499, + '=', 371, + '?', 892, + '[', 422, + '\\', 299, + 'a', 770, + 'b', 795, + 'd', 700, + 'e', 869, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + '{', 379, + '|', 318, + '}', 382, + 0x2028, 623, + 0x2029, 623, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(36); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '`' && - lookahead != '~') ADVANCE(884); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 37: - if (lookahead == '!') ADVANCE(395); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '+') ADVANCE(486); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(504); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(772); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(608); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(37) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(884); + ADVANCE_MAP( + '!', 395, + '"', 436, + '#', 85, + '\'', 437, + '(', 399, + '+', 486, + '-', 490, + '.', 435, + '/', 493, + '0', 572, + ';', 414, + '<', 504, + '@', 889, + '[', 422, + '\\', 299, + '`', 538, + 'a', 657, + 'b', 795, + 'c', 651, + 'd', 680, + 'e', 772, + 'f', 859, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + '{', 379, + '}', 382, + '~', 516, + 0x2028, 608, + 0x2029, 608, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(37); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 38: - if (lookahead == '!') ADVANCE(395); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '+') ADVANCE(486); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(504); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(38) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(884); + ADVANCE_MAP( + '!', 395, + '"', 436, + '#', 85, + '\'', 437, + '(', 399, + '+', 486, + '-', 490, + '.', 435, + '/', 493, + '0', 572, + ';', 414, + '<', 504, + '@', 889, + '[', 422, + '\\', 299, + '`', 538, + 'a', 657, + 'b', 795, + 'c', 651, + 'd', 680, + 'e', 739, + 'f', 859, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + '{', 379, + '}', 382, + '~', 516, + 0x2028, 610, + 0x2029, 610, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(38); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 39: - if (lookahead == '!') ADVANCE(395); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '+') ADVANCE(486); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(324); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(504); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(624); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(772); - if (lookahead == 'f') ADVANCE(725); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(605); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(39) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(884); + ADVANCE_MAP( + '!', 395, + '"', 436, + '#', 85, + '\'', 437, + '(', 399, + '+', 486, + '-', 490, + '.', 324, + '/', 493, + '0', 572, + ';', 414, + '<', 504, + '@', 889, + '[', 422, + '\\', 299, + '`', 538, + 'a', 657, + 'b', 795, + 'c', 624, + 'd', 680, + 'e', 772, + 'f', 725, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + '{', 379, + '}', 382, + '~', 516, + 0x2028, 605, + 0x2029, 605, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(39); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 40: - if (lookahead == '!') ADVANCE(395); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '+') ADVANCE(486); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(324); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(504); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(624); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == 'f') ADVANCE(725); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(606); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(40) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(884); + ADVANCE_MAP( + '!', 395, + '"', 436, + '#', 85, + '\'', 437, + '(', 399, + '+', 486, + '-', 490, + '.', 324, + '/', 493, + '0', 572, + ';', 414, + '<', 504, + '@', 889, + '[', 422, + '\\', 299, + '`', 538, + 'a', 657, + 'b', 795, + 'c', 624, + 'd', 680, + 'e', 739, + 'f', 725, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + '{', 379, + '}', 382, + '~', 516, + 0x2028, 606, + 0x2029, 606, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(40); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 41: - if (lookahead == '!') ADVANCE(395); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '+') ADVANCE(486); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(324); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(504); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(772); - if (lookahead == 'f') ADVANCE(725); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(607); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(41) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(884); + ADVANCE_MAP( + '!', 395, + '"', 436, + '#', 85, + '\'', 437, + '(', 399, + '+', 486, + '-', 490, + '.', 324, + '/', 493, + '0', 572, + ';', 414, + '<', 504, + '@', 889, + '[', 422, + '\\', 299, + '`', 538, + 'a', 657, + 'b', 795, + 'c', 651, + 'd', 680, + 'e', 772, + 'f', 725, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + '{', 379, + '}', 382, + '~', 516, + 0x2028, 607, + 0x2029, 607, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(41); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 42: - if (lookahead == '!') ADVANCE(395); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '+') ADVANCE(486); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(324); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(504); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == 'f') ADVANCE(725); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(609); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(42) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(884); + ADVANCE_MAP( + '!', 395, + '"', 436, + '#', 85, + '\'', 437, + '(', 399, + '+', 486, + '-', 490, + '.', 324, + '/', 493, + '0', 572, + ';', 414, + '<', 504, + '@', 889, + '[', 422, + '\\', 299, + '`', 538, + 'a', 657, + 'b', 795, + 'c', 651, + 'd', 680, + 'e', 739, + 'f', 725, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + '{', 379, + '}', 382, + '~', 516, + 0x2028, 609, + 0x2029, 609, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(42); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 43: - if (lookahead == '!') ADVANCE(395); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '+') ADVANCE(486); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(324); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(504); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(769); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(741); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(766); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(619); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(43) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|' && - lookahead != '}') ADVANCE(884); + ADVANCE_MAP( + '!', 395, + '"', 436, + '#', 85, + '\'', 437, + '(', 399, + '+', 486, + '-', 490, + '.', 324, + '/', 493, + '0', 572, + ';', 414, + '<', 504, + '@', 889, + '[', 422, + '\\', 299, + '`', 538, + 'a', 769, + 'b', 795, + 'c', 741, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 766, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + '{', 379, + '~', 516, + 0x2028, 619, + 0x2029, 619, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(43); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 44: - if (lookahead == '!') ADVANCE(395); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '+') ADVANCE(486); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(324); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == '<') ADVANCE(504); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(741); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(772); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(613); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(44) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|' && - lookahead != '}') ADVANCE(884); + ADVANCE_MAP( + '!', 395, + '"', 436, + '#', 85, + '\'', 437, + '(', 399, + '+', 486, + '-', 490, + '.', 324, + '/', 493, + '0', 572, + '<', 504, + '@', 889, + '[', 422, + '\\', 299, + '`', 538, + 'a', 657, + 'b', 795, + 'c', 741, + 'd', 700, + 'e', 772, + 'f', 859, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + '{', 379, + '~', 516, + 0x2028, 613, + 0x2029, 613, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(44); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 45: - if (lookahead == '!') ADVANCE(395); - if (lookahead == '&') ADVANCE(474); - if (lookahead == '(') ADVANCE(399); - if (lookahead == ')') ADVANCE(400); - if (lookahead == '*') ADVANCE(361); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '.') ADVANCE(433); - if (lookahead == '/') ADVANCE(59); - if (lookahead == ':') ADVANCE(415); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(499); - if (lookahead == '=') ADVANCE(371); - if (lookahead == '>') ADVANCE(430); - if (lookahead == '?') ADVANCE(892); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == ']') ADVANCE(423); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(110); - if (lookahead == 'c') ADVANCE(187); - if (lookahead == 'd') ADVANCE(131); - if (lookahead == 'e') ADVANCE(218); - if (lookahead == 'f') ADVANCE(294); - if (lookahead == 'i') ADVANCE(203); - if (lookahead == 'l') ADVANCE(143); - if (lookahead == 'm') ADVANCE(229); - if (lookahead == 'n') ADVANCE(89); - if (lookahead == 't') ADVANCE(309); - if (lookahead == 'v') ADVANCE(96); - if (lookahead == 'w') ADVANCE(171); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(484); - if (lookahead == '}') ADVANCE(382); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(45) + ADVANCE_MAP( + '!', 395, + '&', 474, + '(', 399, + ')', 400, + '*', 361, + ',', 381, + '.', 433, + '/', 59, + ':', 415, + ';', 414, + '<', 499, + '=', 371, + '>', 430, + '?', 892, + '@', 889, + '[', 422, + ']', 423, + '`', 538, + 'a', 110, + 'c', 187, + 'd', 131, + 'e', 218, + 'f', 294, + 'i', 203, + 'l', 143, + 'm', 229, + 'n', 89, + 't', 309, + 'v', 96, + 'w', 171, + '{', 379, + '|', 484, + '}', 382, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(45); END_STATE(); case 46: - if (lookahead == '!') ADVANCE(395); - if (lookahead == '&') ADVANCE(474); - if (lookahead == '(') ADVANCE(399); - if (lookahead == ')') ADVANCE(400); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '.') ADVANCE(433); - if (lookahead == '/') ADVANCE(59); - if (lookahead == ':') ADVANCE(415); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(499); - if (lookahead == '=') ADVANCE(371); - if (lookahead == '>') ADVANCE(430); - if (lookahead == '?') ADVANCE(893); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == ']') ADVANCE(423); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(111); - if (lookahead == 'c') ADVANCE(186); - if (lookahead == 'e') ADVANCE(304); - if (lookahead == 'i') ADVANCE(216); - if (lookahead == 'o') ADVANCE(159); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(484); - if (lookahead == '}') ADVANCE(382); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(46) + ADVANCE_MAP( + '!', 395, + '&', 474, + '(', 399, + ')', 400, + ',', 381, + '.', 433, + '/', 59, + ':', 415, + ';', 414, + '<', 499, + '=', 371, + '>', 430, + '?', 893, + '@', 889, + '[', 422, + ']', 423, + '`', 538, + 'a', 111, + 'c', 186, + 'e', 304, + 'i', 216, + 'o', 159, + '{', 379, + '|', 484, + '}', 382, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(46); END_STATE(); case 47: - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '.') ADVANCE(433); - if (lookahead == '/') ADVANCE(59); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(499); - if (lookahead == '?') ADVANCE(64); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '`') ADVANCE(538); - if (lookahead == '{') ADVANCE(379); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(878); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(47) - if (lookahead != 0 && - lookahead > '!' && + ADVANCE_MAP( + '"', 436, + '#', 85, + '\'', 437, + '(', 399, + '*', 361, + '.', 433, + '/', 59, + ';', 414, + '<', 499, + '?', 64, + '[', 422, + '\\', 299, + '`', 538, + '{', 379, + 0x2028, 879, + 0x2029, 879, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(47); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(884); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 48: - if (lookahead == '"') ADVANCE(436); - if (lookahead == '&') ADVANCE(474); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '+') ADVANCE(485); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(489); - if (lookahead == '.') ADVANCE(63); - if (lookahead == '/') ADVANCE(59); - if (lookahead == '0') ADVANCE(572); - if (lookahead == '<') ADVANCE(499); - if (lookahead == '?') ADVANCE(892); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == ']') ADVANCE(423); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(659); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(794); - if (lookahead == 'n') ADVANCE(682); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 'u') ADVANCE(774); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == '{') ADVANCE(380); - if (lookahead == '|') ADVANCE(479); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(604); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(48) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '"', 436, + '&', 474, + '\'', 437, + '(', 399, + '*', 361, + '+', 485, + ',', 381, + '-', 489, + '.', 63, + '/', 59, + '0', 572, + '<', 499, + '?', 892, + '[', 422, + '\\', 299, + ']', 423, + '`', 538, + 'a', 659, + 'b', 795, + 'c', 794, + 'n', 682, + 'o', 661, + 'r', 706, + 's', 838, + 'u', 774, + 'v', 790, + '{', 380, + '|', 479, + 0x2028, 604, + 0x2029, 604, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(48); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - lookahead != '^' && - lookahead != '}' && - lookahead != '~') ADVANCE(884); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 49: - if (lookahead == '"') ADVANCE(436); - if (lookahead == '&') ADVANCE(474); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '+') ADVANCE(485); - if (lookahead == '-') ADVANCE(489); - if (lookahead == '.') ADVANCE(324); - if (lookahead == '/') ADVANCE(59); - if (lookahead == '0') ADVANCE(572); - if (lookahead == '<') ADVANCE(499); - if (lookahead == '>') ADVANCE(430); - if (lookahead == '?') ADVANCE(892); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(659); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(794); - if (lookahead == 'i') ADVANCE(766); - if (lookahead == 'n') ADVANCE(682); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 'u') ADVANCE(774); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == '{') ADVANCE(380); - if (lookahead == '|') ADVANCE(479); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(603); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(49) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '"', 436, + '&', 474, + '\'', 437, + '(', 399, + '*', 361, + '+', 485, + '-', 489, + '.', 324, + '/', 59, + '0', 572, + '<', 499, + '>', 430, + '?', 892, + '[', 422, + '\\', 299, + '`', 538, + 'a', 659, + 'b', 795, + 'c', 794, + 'i', 766, + 'n', 682, + 'o', 661, + 'r', 706, + 's', 838, + 'u', 774, + 'v', 790, + '{', 380, + '|', 479, + 0x2028, 603, + 0x2029, 603, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(49); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '}' && - lookahead != '~') ADVANCE(884); + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 50: - if (lookahead == '"') ADVANCE(436); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(361); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '.') ADVANCE(433); - if (lookahead == '/') ADVANCE(59); - if (lookahead == '<') ADVANCE(499); - if (lookahead == '?') ADVANCE(64); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 't') ADVANCE(874); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '}') ADVANCE(382); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(850); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(50) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '"', 436, + '\'', 437, + '(', 399, + '*', 361, + ',', 381, + '.', 433, + '/', 59, + '<', 499, + '?', 64, + '\\', 299, + '`', 538, + 't', 874, + '{', 379, + '}', 382, + 0x2028, 850, + 0x2029, 850, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(50); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - (lookahead < '|' || '~' < lookahead)) ADVANCE(884); + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 51: - if (lookahead == '"') ADVANCE(436); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '*') ADVANCE(361); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '/') ADVANCE(59); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'f') ADVANCE(817); - if (lookahead == 't') ADVANCE(874); - if (lookahead == '{') ADVANCE(379); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(717); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(51) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '"', 436, + '\'', 437, + '*', 361, + ',', 381, + '/', 59, + '\\', 299, + 'f', 817, + 't', 874, + '{', 379, + 0x2028, 717, + 0x2029, 717, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(51); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(884); + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 52: - if (lookahead == '"') ADVANCE(436); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '/') ADVANCE(59); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(829); - if (lookahead == 't') ADVANCE(874); - if (lookahead == '}') ADVANCE(382); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(647); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(52) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '"', 436, + '\'', 437, + ',', 381, + '/', 59, + '\\', 299, + 'a', 829, + 't', 874, + '}', 382, + 0x2028, 647, + 0x2029, 647, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(52); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(884); + lookahead != 'a' && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 53: if (lookahead == '"') ADVANCE(436); if (lookahead == '/') ADVANCE(59); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(53) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(53); END_STATE(); case 54: if (lookahead == '"') ADVANCE(436); if (lookahead == '/') ADVANCE(521); if (lookahead == '\\') ADVANCE(301); if (lookahead == '\n' || - lookahead == '\r') SKIP(53) - if (sym_unescaped_double_string_fragment_character_set_1(lookahead)) ADVANCE(524); + lookahead == '\r') SKIP(53); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(524); if (lookahead != 0) ADVANCE(525); END_STATE(); case 55: - if (lookahead == '&') ADVANCE(474); - if (lookahead == '(') ADVANCE(399); - if (lookahead == ')') ADVANCE(400); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '.') ADVANCE(433); - if (lookahead == '/') ADVANCE(59); - if (lookahead == ':') ADVANCE(415); - if (lookahead == '<') ADVANCE(499); - if (lookahead == '=') ADVANCE(371); - if (lookahead == '>') ADVANCE(430); - if (lookahead == '?') ADVANCE(892); - if (lookahead == '[') ADVANCE(422); - if (lookahead == ']') ADVANCE(423); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(264); - if (lookahead == 'e') ADVANCE(184); - if (lookahead == 'f') ADVANCE(253); - if (lookahead == 'i') ADVANCE(217); - if (lookahead == 'o') ADVANCE(159); - if (lookahead == 'w') ADVANCE(166); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(479); - if (lookahead == '}') ADVANCE(382); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(55) + ADVANCE_MAP( + '&', 474, + '(', 399, + ')', 400, + ',', 381, + '.', 433, + '/', 59, + ':', 415, + '<', 499, + '=', 371, + '>', 430, + '?', 892, + '[', 422, + ']', 423, + '`', 538, + 'a', 264, + 'e', 184, + 'f', 253, + 'i', 217, + 'o', 159, + 'w', 166, + '{', 379, + '|', 479, + '}', 382, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(55); END_STATE(); case 56: - if (lookahead == '&') ADVANCE(474); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '/') ADVANCE(59); - if (lookahead == '>') ADVANCE(430); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'e') ADVANCE(870); - if (lookahead == '|') ADVANCE(479); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(696); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(56) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '&', 474, + ',', 381, + '/', 59, + '>', 430, + '[', 422, + '\\', 299, + 'e', 870, + '|', 479, + 0x2028, 696, + 0x2029, 696, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(56); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && + (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(884); + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 57: if (lookahead == '\'') ADVANCE(437); if (lookahead == '/') ADVANCE(59); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(57) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(57); END_STATE(); case 58: if (lookahead == '\'') ADVANCE(437); if (lookahead == '/') ADVANCE(526); if (lookahead == '\\') ADVANCE(301); if (lookahead == '\n' || - lookahead == '\r') SKIP(57) - if (sym_unescaped_double_string_fragment_character_set_1(lookahead)) ADVANCE(529); + lookahead == '\r') SKIP(57); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(529); if (lookahead != 0) ADVANCE(530); END_STATE(); case 59: @@ -14479,21 +14175,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(61); END_STATE(); case 62: - if (lookahead == '+') ADVANCE(83); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(84); - if (lookahead == '.') ADVANCE(433); - if (lookahead == '/') ADVANCE(59); - if (lookahead == ':') ADVANCE(415); - if (lookahead == '<') ADVANCE(499); - if (lookahead == '?') ADVANCE(79); - if (lookahead == 'e') ADVANCE(305); - if (lookahead == '{') ADVANCE(380); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(62) + ADVANCE_MAP( + '+', 83, + ',', 381, + '-', 84, + '.', 433, + '/', 59, + ':', 415, + '<', 499, + '?', 79, + 'e', 305, + '{', 380, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(62); END_STATE(); case 63: if (lookahead == '.') ADVANCE(67); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(587); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(586); END_STATE(); case 64: if (lookahead == '.') ADVANCE(445); @@ -14511,7 +14209,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 68: if (lookahead == '/') ADVANCE(540); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(76) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(76); END_STATE(); case 69: if (lookahead == '/') ADVANCE(59); @@ -14520,30 +14218,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'e') ADVANCE(870); if (lookahead == 'i') ADVANCE(760); if (lookahead == '{') ADVANCE(379); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(695); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(69) - if (lookahead != 0 && - lookahead > '#' && + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(695); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(69); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(884); + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 70: if (lookahead == '/') ADVANCE(59); if (lookahead == '>') ADVANCE(430); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'c') ADVANCE(794); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(670); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(70) - if (lookahead != 0 && - lookahead > '#' && + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(670); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(70); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(884); + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 71: if (lookahead == '/') ADVANCE(59); @@ -14551,92 +14247,90 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(773); if (lookahead == '{') ADVANCE(379); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(709); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(71) - if (lookahead != 0 && - lookahead > '#' && + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(709); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(71); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && - lookahead != ']' && - lookahead != '^' && + (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '|' || '~' < lookahead)) ADVANCE(884); + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 72: - if (lookahead == '/') ADVANCE(59); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(770); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(635); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(72) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '/', 59, + '\\', 299, + 'a', 770, + 'b', 795, + 'd', 700, + 'e', 869, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 0x2028, 635, + 0x2029, 635, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(72); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(884); + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 73: - if (lookahead == '/') ADVANCE(59); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(771); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'n') ADVANCE(694); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 'u') ADVANCE(774); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(649); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(73) - if (lookahead != 0 && - lookahead > '#' && + ADVANCE_MAP( + '/', 59, + '\\', 299, + 'a', 771, + 'b', 795, + 'n', 694, + 'o', 661, + 's', 838, + 'u', 774, + 'v', 790, + 0x2028, 649, + 0x2029, 649, + ); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(73); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(884); + (lookahead < '`' || 'b' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 74: if (lookahead == '/') ADVANCE(59); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'i') ADVANCE(766); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(727); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(74) - if (lookahead != 0 && - lookahead > '#' && + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(727); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(74); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(884); + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 75: if (lookahead == '/') ADVANCE(59); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'r') ADVANCE(711); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(824); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(75) - if (lookahead != 0 && - lookahead > '#' && + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(824); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(75); + if (lookahead > '#' && (lookahead < '%' || '@' < lookahead) && (lookahead < '[' || '^' < lookahead) && lookahead != '`' && - (lookahead < '{' || '~' < lookahead)) ADVANCE(884); + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 76: if (lookahead == '/') ADVANCE(59); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(76) + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(76); END_STATE(); case 77: if (lookahead == ':') ADVANCE(931); @@ -14664,7 +14358,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 85: if (lookahead == '\\') ADVANCE(298); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(886); + if (set_contains(sym_identifier_character_set_1, 13, lookahead)) ADVANCE(886); END_STATE(); case 86: if (lookahead == '\\') ADVANCE(344); @@ -15415,7 +15109,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(333); END_STATE(); case 315: - if (lookahead == '}') ADVANCE(884); + if (lookahead == '}') ADVANCE(885); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(315); @@ -15444,31 +15138,31 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 320: if (lookahead == '+' || lookahead == '-') ADVANCE(326); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(586); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(587); END_STATE(); case 321: if (lookahead == '0' || - lookahead == '1') ADVANCE(582); + lookahead == '1') ADVANCE(583); END_STATE(); case 322: - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(583); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(584); END_STATE(); case 323: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(575); END_STATE(); case 324: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(587); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(586); END_STATE(); case 325: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(585); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(582); END_STATE(); case 326: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(586); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(587); END_STATE(); case 327: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(884); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(885); END_STATE(); case 328: if (('0' <= lookahead && lookahead <= '9') || @@ -15483,7 +15177,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 330: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(584); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(585); END_STATE(); case 331: if (('0' <= lookahead && lookahead <= '9') || @@ -15560,567 +15254,574 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 346: if (eof) ADVANCE(357); - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(31); - if (lookahead == '$') ADVANCE(876); - if (lookahead == '%') ADVANCE(496); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == ')') ADVANCE(400); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(488); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(492); - if (lookahead == '.') ADVANCE(434); - if (lookahead == '/') ADVANCE(494); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ':') ADVANCE(415); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(501); - if (lookahead == '=') ADVANCE(370); - if (lookahead == '>') ADVANCE(431); - if (lookahead == '?') ADVANCE(894); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == ']') ADVANCE(423); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(655); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(624); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(738); - if (lookahead == 'f') ADVANCE(724); - if (lookahead == 'g') ADVANCE(744); - if (lookahead == 'i') ADVANCE(753); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(625); - if (lookahead == 'o') ADVANCE(660); - if (lookahead == 'r') ADVANCE(683); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(634); - if (lookahead == 'u') ADVANCE(774); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == '{') ADVANCE(380); - if (lookahead == '|') ADVANCE(481); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(589); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(346) - if (lookahead != 0 && - lookahead > 31) ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '#', 31, + '$', 876, + '%', 496, + '&', 475, + '\'', 437, + '(', 399, + ')', 400, + '*', 362, + '+', 488, + ',', 381, + '-', 492, + '.', 434, + '/', 494, + '0', 572, + ':', 415, + ';', 414, + '<', 501, + '=', 370, + '>', 431, + '?', 894, + '@', 889, + '[', 422, + '\\', 299, + ']', 423, + '^', 478, + '`', 538, + 'a', 655, + 'b', 795, + 'c', 624, + 'd', 680, + 'e', 738, + 'f', 724, + 'g', 744, + 'i', 753, + 'l', 681, + 'm', 789, + 'n', 625, + 'o', 660, + 'r', 683, + 's', 630, + 't', 634, + 'u', 774, + 'v', 637, + 'w', 722, + '{', 380, + '|', 481, + '}', 382, + '~', 516, + 0x2028, 589, + 0x2029, 589, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(346); + if (lookahead > '@') ADVANCE(885); END_STATE(); case 347: if (eof) ADVANCE(357); - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '%') ADVANCE(495); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(363); - if (lookahead == '+') ADVANCE(486); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(503); - if (lookahead == '=') ADVANCE(369); - if (lookahead == '>') ADVANCE(432); - if (lookahead == '?') ADVANCE(66); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '^') ADVANCE(477); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(655); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(741); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(772); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(763); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(482); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(592); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(347) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '#', 85, + '%', 495, + '&', 476, + '\'', 437, + '(', 399, + '*', 363, + '+', 486, + ',', 381, + '-', 490, + '.', 435, + '/', 493, + '0', 572, + ';', 414, + '<', 503, + '=', 369, + '>', 432, + '?', 66, + '@', 889, + '[', 422, + '\\', 299, + '^', 477, + '`', 538, + 'a', 655, + 'b', 795, + 'c', 741, + 'd', 700, + 'e', 772, + 'f', 859, + 'i', 763, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + 'v', 637, + 'w', 722, + '{', 379, + '|', 482, + '}', 382, + '~', 516, + 0x2028, 592, + 0x2029, 592, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(347); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead)) ADVANCE(885); END_STATE(); case 348: if (eof) ADVANCE(357); - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '%') ADVANCE(495); - if (lookahead == '&') ADVANCE(476); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(363); - if (lookahead == '+') ADVANCE(486); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(503); - if (lookahead == '=') ADVANCE(369); - if (lookahead == '>') ADVANCE(432); - if (lookahead == '?') ADVANCE(66); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '^') ADVANCE(477); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(655); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(741); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(763); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(482); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(594); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(348) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < ')' || ':' < lookahead) && - lookahead != ']') ADVANCE(884); + ADVANCE_MAP( + '!', 396, + '"', 436, + '#', 85, + '%', 495, + '&', 476, + '\'', 437, + '(', 399, + '*', 363, + '+', 486, + ',', 381, + '-', 490, + '.', 435, + '/', 493, + '0', 572, + ';', 414, + '<', 503, + '=', 369, + '>', 432, + '?', 66, + '@', 889, + '[', 422, + '\\', 299, + '^', 477, + '`', 538, + 'a', 655, + 'b', 795, + 'c', 741, + 'd', 700, + 'e', 739, + 'f', 859, + 'i', 763, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + 'v', 637, + 'w', 722, + '{', 379, + '|', 482, + '}', 382, + '~', 516, + 0x2028, 594, + 0x2029, 594, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(348); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead)) ADVANCE(885); END_STATE(); case 349: if (eof) ADVANCE(357); - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '$') ADVANCE(310); - if (lookahead == '%') ADVANCE(496); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == ')') ADVANCE(400); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(487); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(491); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '/') ADVANCE(494); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ':') ADVANCE(415); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(500); - if (lookahead == '=') ADVANCE(370); - if (lookahead == '>') ADVANCE(431); - if (lookahead == '?') ADVANCE(894); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(301); - if (lookahead == ']') ADVANCE(423); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(109); - if (lookahead == 'b') ADVANCE(233); - if (lookahead == 'c') ADVANCE(88); - if (lookahead == 'd') ADVANCE(131); - if (lookahead == 'e') ADVANCE(183); - if (lookahead == 'f') ADVANCE(169); - if (lookahead == 'g') ADVANCE(189); - if (lookahead == 'i') ADVANCE(202); - if (lookahead == 'l') ADVANCE(143); - if (lookahead == 'm') ADVANCE(229); - if (lookahead == 'n') ADVANCE(90); - if (lookahead == 'o') ADVANCE(112); - if (lookahead == 'r') ADVANCE(132); - if (lookahead == 's') ADVANCE(94); - if (lookahead == 't') ADVANCE(92); - if (lookahead == 'u') ADVANCE(211); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == 'w') ADVANCE(167); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(481); - if (lookahead == '}') ADVANCE(382); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(350) + ADVANCE_MAP( + '!', 396, + '"', 436, + '$', 310, + '%', 496, + '&', 475, + '\'', 437, + '(', 399, + ')', 400, + '*', 362, + '+', 487, + ',', 381, + '-', 491, + '.', 435, + '/', 494, + '0', 572, + ':', 415, + ';', 414, + '<', 500, + '=', 370, + '>', 431, + '?', 894, + '@', 889, + '[', 422, + '\\', 301, + ']', 423, + '^', 478, + '`', 538, + 'a', 109, + 'b', 233, + 'c', 88, + 'd', 131, + 'e', 183, + 'f', 169, + 'g', 189, + 'i', 202, + 'l', 143, + 'm', 229, + 'n', 90, + 'o', 112, + 'r', 132, + 's', 94, + 't', 92, + 'u', 211, + 'v', 97, + 'w', 167, + '{', 379, + '|', 481, + '}', 382, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(350); END_STATE(); case 350: if (eof) ADVANCE(357); - if (lookahead == '!') ADVANCE(396); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '$') ADVANCE(310); - if (lookahead == '%') ADVANCE(496); - if (lookahead == '&') ADVANCE(475); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == ')') ADVANCE(400); - if (lookahead == '*') ADVANCE(362); - if (lookahead == '+') ADVANCE(487); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(491); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '/') ADVANCE(494); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ':') ADVANCE(415); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(500); - if (lookahead == '=') ADVANCE(370); - if (lookahead == '>') ADVANCE(431); - if (lookahead == '?') ADVANCE(894); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == ']') ADVANCE(423); - if (lookahead == '^') ADVANCE(478); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(109); - if (lookahead == 'b') ADVANCE(233); - if (lookahead == 'c') ADVANCE(88); - if (lookahead == 'd') ADVANCE(131); - if (lookahead == 'e') ADVANCE(183); - if (lookahead == 'f') ADVANCE(169); - if (lookahead == 'g') ADVANCE(189); - if (lookahead == 'i') ADVANCE(202); - if (lookahead == 'l') ADVANCE(143); - if (lookahead == 'm') ADVANCE(229); - if (lookahead == 'n') ADVANCE(90); - if (lookahead == 'o') ADVANCE(112); - if (lookahead == 'r') ADVANCE(132); - if (lookahead == 's') ADVANCE(94); - if (lookahead == 't') ADVANCE(92); - if (lookahead == 'u') ADVANCE(211); - if (lookahead == 'v') ADVANCE(97); - if (lookahead == 'w') ADVANCE(167); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '|') ADVANCE(481); - if (lookahead == '}') ADVANCE(382); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (sym__glimmer_template_content_character_set_1(lookahead)) SKIP(350) + ADVANCE_MAP( + '!', 396, + '"', 436, + '$', 310, + '%', 496, + '&', 475, + '\'', 437, + '(', 399, + ')', 400, + '*', 362, + '+', 487, + ',', 381, + '-', 491, + '.', 435, + '/', 494, + '0', 572, + ':', 415, + ';', 414, + '<', 500, + '=', 370, + '>', 431, + '?', 894, + '@', 889, + '[', 422, + ']', 423, + '^', 478, + '`', 538, + 'a', 109, + 'b', 233, + 'c', 88, + 'd', 131, + 'e', 183, + 'f', 169, + 'g', 189, + 'i', 202, + 'l', 143, + 'm', 229, + 'n', 90, + 'o', 112, + 'r', 132, + 's', 94, + 't', 92, + 'u', 211, + 'v', 97, + 'w', 167, + '{', 379, + '|', 481, + '}', 382, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(350); END_STATE(); case 351: if (eof) ADVANCE(357); - if (lookahead == '!') ADVANCE(395); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(31); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '*') ADVANCE(361); - if (lookahead == '+') ADVANCE(486); - if (lookahead == ',') ADVANCE(381); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(434); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(504); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(741); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(772); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(612); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(351) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(884); + ADVANCE_MAP( + '!', 395, + '"', 436, + '#', 31, + '\'', 437, + '(', 399, + '*', 361, + '+', 486, + ',', 381, + '-', 490, + '.', 434, + '/', 493, + '0', 572, + ';', 414, + '<', 504, + '@', 889, + '[', 422, + '\\', 299, + '`', 538, + 'a', 657, + 'b', 795, + 'c', 741, + 'd', 700, + 'e', 772, + 'f', 859, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + '{', 379, + '}', 382, + '~', 516, + 0x2028, 612, + 0x2029, 612, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(351); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 352: if (eof) ADVANCE(357); - if (lookahead == '!') ADVANCE(395); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '+') ADVANCE(486); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(435); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(504); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(741); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(616); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(352) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(884); + ADVANCE_MAP( + '!', 395, + '"', 436, + '#', 85, + '\'', 437, + '(', 399, + '+', 486, + '-', 490, + '.', 435, + '/', 493, + '0', 572, + ';', 414, + '<', 504, + '@', 889, + '[', 422, + '\\', 299, + '`', 538, + 'a', 657, + 'b', 795, + 'c', 741, + 'd', 700, + 'e', 739, + 'f', 859, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + '{', 379, + '}', 382, + '~', 516, + 0x2028, 616, + 0x2029, 616, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(352); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 353: if (eof) ADVANCE(357); - if (lookahead == '!') ADVANCE(395); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '+') ADVANCE(486); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(324); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(504); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(741); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(772); - if (lookahead == 'f') ADVANCE(725); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(611); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(353) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(884); + ADVANCE_MAP( + '!', 395, + '"', 436, + '#', 85, + '\'', 437, + '(', 399, + '+', 486, + '-', 490, + '.', 324, + '/', 493, + '0', 572, + ';', 414, + '<', 504, + '@', 889, + '[', 422, + '\\', 299, + '`', 538, + 'a', 657, + 'b', 795, + 'c', 741, + 'd', 700, + 'e', 772, + 'f', 725, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + '{', 379, + '}', 382, + '~', 516, + 0x2028, 611, + 0x2029, 611, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(353); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 354: if (eof) ADVANCE(357); - if (lookahead == '!') ADVANCE(395); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '+') ADVANCE(486); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(324); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(504); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(741); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == 'f') ADVANCE(725); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(615); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(354) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(884); + ADVANCE_MAP( + '!', 395, + '"', 436, + '#', 85, + '\'', 437, + '(', 399, + '+', 486, + '-', 490, + '.', 324, + '/', 493, + '0', 572, + ';', 414, + '<', 504, + '@', 889, + '[', 422, + '\\', 299, + '`', 538, + 'a', 657, + 'b', 795, + 'c', 741, + 'd', 700, + 'e', 739, + 'f', 725, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + '{', 379, + '}', 382, + '~', 516, + 0x2028, 615, + 0x2029, 615, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(354); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 355: if (eof) ADVANCE(357); - if (lookahead == '!') ADVANCE(395); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '+') ADVANCE(486); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(324); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(504); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(650); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(772); - if (lookahead == 'f') ADVANCE(725); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(617); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(355) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(884); + ADVANCE_MAP( + '!', 395, + '"', 436, + '#', 85, + '\'', 437, + '(', 399, + '+', 486, + '-', 490, + '.', 324, + '/', 493, + '0', 572, + ';', 414, + '<', 504, + '@', 889, + '[', 422, + '\\', 299, + '`', 538, + 'a', 657, + 'b', 795, + 'c', 650, + 'd', 700, + 'e', 772, + 'f', 725, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + '{', 379, + '}', 382, + '~', 516, + 0x2028, 617, + 0x2029, 617, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(355); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 356: if (eof) ADVANCE(357); - if (lookahead == '!') ADVANCE(395); - if (lookahead == '"') ADVANCE(436); - if (lookahead == '#') ADVANCE(85); - if (lookahead == '\'') ADVANCE(437); - if (lookahead == '(') ADVANCE(399); - if (lookahead == '+') ADVANCE(486); - if (lookahead == '-') ADVANCE(490); - if (lookahead == '.') ADVANCE(324); - if (lookahead == '/') ADVANCE(493); - if (lookahead == '0') ADVANCE(572); - if (lookahead == ';') ADVANCE(414); - if (lookahead == '<') ADVANCE(504); - if (lookahead == '@') ADVANCE(889); - if (lookahead == '[') ADVANCE(422); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '`') ADVANCE(538); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(650); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == 'f') ADVANCE(725); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == '{') ADVANCE(379); - if (lookahead == '}') ADVANCE(382); - if (lookahead == '~') ADVANCE(516); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(618); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); - if (anon_sym_BANG_character_set_1(lookahead)) SKIP(356) - if (lookahead != 0 && - lookahead > 31 && - (lookahead < '%' || '?' < lookahead) && - lookahead != ']' && - lookahead != '^' && - lookahead != '|') ADVANCE(884); + ADVANCE_MAP( + '!', 395, + '"', 436, + '#', 85, + '\'', 437, + '(', 399, + '+', 486, + '-', 490, + '.', 324, + '/', 493, + '0', 572, + ';', 414, + '<', 504, + '@', 889, + '[', 422, + '\\', 299, + '`', 538, + 'a', 657, + 'b', 795, + 'c', 650, + 'd', 700, + 'e', 739, + 'f', 725, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + '{', 379, + '}', 382, + '~', 516, + 0x2028, 618, + 0x2029, 618, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); + if (set_contains(extras_character_set_2, 9, lookahead)) SKIP(356); + if (lookahead > '#' && + (lookahead < '%' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '{' || '~' < lookahead)) ADVANCE(885); END_STATE(); case 357: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -16136,7 +15837,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 360: ACCEPT_TOKEN(anon_sym_export); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 361: ACCEPT_TOKEN(anon_sym_STAR); @@ -16156,7 +15857,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 365: ACCEPT_TOKEN(anon_sym_default); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 366: ACCEPT_TOKEN(anon_sym_type); @@ -16164,7 +15865,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 367: ACCEPT_TOKEN(anon_sym_type); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 368: ACCEPT_TOKEN(anon_sym_EQ); @@ -16189,12 +15890,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_as); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'y') ADVANCE(781); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 374: ACCEPT_TOKEN(anon_sym_as); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 375: ACCEPT_TOKEN(anon_sym_as); @@ -16210,7 +15911,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 378: ACCEPT_TOKEN(anon_sym_namespace); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 379: ACCEPT_TOKEN(anon_sym_LBRACE); @@ -16231,7 +15932,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 384: ACCEPT_TOKEN(anon_sym_import); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 385: ACCEPT_TOKEN(anon_sym_from); @@ -16239,7 +15940,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 386: ACCEPT_TOKEN(anon_sym_from); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 387: ACCEPT_TOKEN(anon_sym_with); @@ -16247,7 +15948,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 388: ACCEPT_TOKEN(anon_sym_with); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 389: ACCEPT_TOKEN(anon_sym_var); @@ -16255,7 +15956,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 390: ACCEPT_TOKEN(anon_sym_var); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 391: ACCEPT_TOKEN(anon_sym_let); @@ -16263,7 +15964,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 392: ACCEPT_TOKEN(anon_sym_let); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 393: ACCEPT_TOKEN(anon_sym_const); @@ -16271,7 +15972,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 394: ACCEPT_TOKEN(anon_sym_const); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 395: ACCEPT_TOKEN(anon_sym_BANG); @@ -16286,7 +15987,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 398: ACCEPT_TOKEN(anon_sym_else); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 399: ACCEPT_TOKEN(anon_sym_LPAREN); @@ -16300,7 +16001,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 402: ACCEPT_TOKEN(anon_sym_await); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 403: ACCEPT_TOKEN(anon_sym_in); @@ -16310,13 +16011,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\\') ADVANCE(299); if (lookahead == 's') ADVANCE(855); if (lookahead == 't') ADVANCE(699); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 405: ACCEPT_TOKEN(anon_sym_in); if (lookahead == '\\') ADVANCE(299); if (lookahead == 's') ADVANCE(855); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 406: ACCEPT_TOKEN(anon_sym_in); @@ -16338,7 +16039,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 410: ACCEPT_TOKEN(anon_sym_of); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 411: ACCEPT_TOKEN(anon_sym_of); @@ -16350,7 +16051,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 413: ACCEPT_TOKEN(anon_sym_while); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 414: ACCEPT_TOKEN(anon_sym_SEMI); @@ -16364,7 +16065,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 417: ACCEPT_TOKEN(anon_sym_case); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 418: ACCEPT_TOKEN(anon_sym_catch); @@ -16372,7 +16073,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 419: ACCEPT_TOKEN(anon_sym_catch); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 420: ACCEPT_TOKEN(anon_sym_finally); @@ -16380,7 +16081,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 421: ACCEPT_TOKEN(anon_sym_finally); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 422: ACCEPT_TOKEN(anon_sym_LBRACK); @@ -16400,9 +16101,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym__glimmer_template_content); if (lookahead == '/') ADVANCE(425); if (lookahead == '<') ADVANCE(427); - if (sym__glimmer_template_content_character_set_2(lookahead)) ADVANCE(426); + if ((set_contains(extras_character_set_1, 10, lookahead)) && + lookahead != '\n') ADVANCE(426); if (lookahead != 0 && - lookahead != '\n') ADVANCE(424); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(424); END_STATE(); case 427: ACCEPT_TOKEN(sym__glimmer_template_content); @@ -16433,11 +16135,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 434: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(67); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(587); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(586); END_STATE(); case 435: ACCEPT_TOKEN(anon_sym_DOT); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(587); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(586); END_STATE(); case 436: ACCEPT_TOKEN(anon_sym_DQUOTE); @@ -16451,7 +16153,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 439: ACCEPT_TOKEN(anon_sym_class); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 440: ACCEPT_TOKEN(anon_sym_async); @@ -16459,7 +16161,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 441: ACCEPT_TOKEN(anon_sym_async); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 442: ACCEPT_TOKEN(anon_sym_function); @@ -16467,7 +16169,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 443: ACCEPT_TOKEN(anon_sym_function); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 444: ACCEPT_TOKEN(anon_sym_EQ_GT); @@ -16481,7 +16183,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 447: ACCEPT_TOKEN(anon_sym_new); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 448: ACCEPT_TOKEN(anon_sym_PLUS_EQ); @@ -16737,7 +16439,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 514: ACCEPT_TOKEN(anon_sym_instanceof); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 515: ACCEPT_TOKEN(anon_sym_instanceof); @@ -16752,7 +16454,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 518: ACCEPT_TOKEN(anon_sym_void); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 519: ACCEPT_TOKEN(anon_sym_PLUS_PLUS); @@ -16792,9 +16494,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 524: ACCEPT_TOKEN(sym_unescaped_double_string_fragment); if (lookahead == '/') ADVANCE(521); - if (sym_unescaped_double_string_fragment_character_set_2(lookahead)) ADVANCE(524); + if ((set_contains(extras_character_set_1, 10, lookahead)) && + lookahead != '\n' && + lookahead != '\r') ADVANCE(524); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead) && + (lookahead < '\t' || '\r' < lookahead) && lookahead != '"' && lookahead != '\\') ADVANCE(525); END_STATE(); @@ -16838,9 +16542,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 529: ACCEPT_TOKEN(sym_unescaped_single_string_fragment); if (lookahead == '/') ADVANCE(526); - if (sym_unescaped_double_string_fragment_character_set_2(lookahead)) ADVANCE(529); + if ((set_contains(extras_character_set_1, 10, lookahead)) && + lookahead != '\n' && + lookahead != '\r') ADVANCE(529); if (lookahead != 0 && - (lookahead < '\n' || '\r' < lookahead) && + (lookahead < '\t' || '\r' < lookahead) && lookahead != '\'' && lookahead != '\\') ADVANCE(530); END_STATE(); @@ -16858,13 +16564,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 532: ACCEPT_TOKEN(sym_escape_sequence); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 533: ACCEPT_TOKEN(sym_escape_sequence); if (lookahead == '\n' || - lookahead == 8232 || - lookahead == 8233) ADVANCE(531); + lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(531); END_STATE(); case 534: ACCEPT_TOKEN(sym_escape_sequence); @@ -16893,11 +16599,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 541: ACCEPT_TOKEN(sym_regex_pattern); - if (lookahead == '\n') SKIP(76) + if (lookahead == '\n') SKIP(76); if (lookahead == '/') ADVANCE(59); if (lookahead == '[') ADVANCE(86); if (lookahead == '\\') ADVANCE(345); - if (sym__glimmer_template_content_character_set_1(lookahead)) ADVANCE(541); + if (set_contains(extras_character_set_1, 10, lookahead)) ADVANCE(541); if (lookahead != 0) ADVANCE(542); END_STATE(); case 542: @@ -17053,972 +16759,1046 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 572: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(588); - if (lookahead == '0') ADVANCE(585); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(321); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(320); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(322); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(330); - if (lookahead == '_') ADVANCE(325); - if (lookahead == 'n') ADVANCE(571); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + ADVANCE_MAP( + '.', 588, + '0', 582, + '_', 325, + 'n', 571, + 'B', 321, + 'b', 321, + 'E', 320, + 'e', 320, + 'O', 322, + 'o', 322, + 'X', 330, + 'x', 330, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); END_STATE(); case 573: ACCEPT_TOKEN(sym_number); - if (lookahead == '.') ADVANCE(588); - if (lookahead == '0') ADVANCE(579); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(877); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(885); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(879); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(883); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '_') ADVANCE(881); - if (lookahead == 'n') ADVANCE(581); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '.', 588, + '0', 576, + '\\', 299, + '_', 882, + 'n', 581, + 'B', 878, + 'b', 878, + 'E', 877, + 'e', 877, + 'O', 880, + 'o', 880, + 'X', 884, + 'x', 884, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 574: ACCEPT_TOKEN(sym_number); if (lookahead == '.') ADVANCE(588); + if (lookahead == '\\') ADVANCE(299); + if (lookahead == '_') ADVANCE(881); + if (lookahead == 'n') ADVANCE(581); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(320); - if (lookahead == '_') ADVANCE(323); - if (lookahead == 'n') ADVANCE(571); + lookahead == 'e') ADVANCE(877); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 575: ACCEPT_TOKEN(sym_number); if (lookahead == '.') ADVANCE(588); + if (lookahead == '_') ADVANCE(323); + if (lookahead == 'n') ADVANCE(571); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(885); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == '_') ADVANCE(880); - if (lookahead == 'n') ADVANCE(581); + lookahead == 'e') ADVANCE(320); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(884); END_STATE(); case 576: ACCEPT_TOKEN(sym_number); if (lookahead == '\\') ADVANCE(299); - if (lookahead == '_') ADVANCE(877); + if (lookahead == '_') ADVANCE(882); if (lookahead == 'n') ADVANCE(581); - if (lookahead == '0' || - lookahead == '1') ADVANCE(576); - if (!sym_identifier_character_set_3(lookahead)) ADVANCE(884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(576); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 577: ACCEPT_TOKEN(sym_number); if (lookahead == '\\') ADVANCE(299); - if (lookahead == '_') ADVANCE(879); + if (lookahead == '_') ADVANCE(878); if (lookahead == 'n') ADVANCE(581); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(577); - if (!sym_identifier_character_set_3(lookahead)) ADVANCE(884); + if (lookahead == '0' || + lookahead == '1') ADVANCE(577); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 578: ACCEPT_TOKEN(sym_number); if (lookahead == '\\') ADVANCE(299); - if (lookahead == '_') ADVANCE(883); + if (lookahead == '_') ADVANCE(880); if (lookahead == 'n') ADVANCE(581); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(578); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(884); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(578); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 579: ACCEPT_TOKEN(sym_number); if (lookahead == '\\') ADVANCE(299); - if (lookahead == '_') ADVANCE(881); + if (lookahead == '_') ADVANCE(884); if (lookahead == 'n') ADVANCE(581); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(579); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(884); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(579); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 580: ACCEPT_TOKEN(sym_number); if (lookahead == '\\') ADVANCE(299); - if (lookahead == '_') ADVANCE(882); + if (lookahead == '_') ADVANCE(883); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(580); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 581: ACCEPT_TOKEN(sym_number); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 582: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(321); + if (lookahead == '_') ADVANCE(325); if (lookahead == 'n') ADVANCE(571); - if (lookahead == '0' || - lookahead == '1') ADVANCE(582); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(582); END_STATE(); case 583: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(322); + if (lookahead == '_') ADVANCE(321); if (lookahead == 'n') ADVANCE(571); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(583); + if (lookahead == '0' || + lookahead == '1') ADVANCE(583); END_STATE(); case 584: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(330); + if (lookahead == '_') ADVANCE(322); if (lookahead == 'n') ADVANCE(571); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(584); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(584); END_STATE(); case 585: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(325); + if (lookahead == '_') ADVANCE(330); if (lookahead == 'n') ADVANCE(571); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(585); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(585); END_STATE(); case 586: ACCEPT_TOKEN(sym_number); - if (lookahead == '_') ADVANCE(326); + if (lookahead == '_') ADVANCE(324); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(320); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(586); END_STATE(); case 587: ACCEPT_TOKEN(sym_number); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(320); - if (lookahead == '_') ADVANCE(324); + if (lookahead == '_') ADVANCE(326); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(587); END_STATE(); case 588: ACCEPT_TOKEN(sym_number); if (lookahead == 'E' || lookahead == 'e') ADVANCE(320); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(587); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(586); END_STATE(); case 589: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '$') ADVANCE(876); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(655); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(624); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(738); - if (lookahead == 'f') ADVANCE(724); - if (lookahead == 'g') ADVANCE(744); - if (lookahead == 'i') ADVANCE(753); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(625); - if (lookahead == 'o') ADVANCE(660); - if (lookahead == 'r') ADVANCE(683); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(634); - if (lookahead == 'u') ADVANCE(774); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(589); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_identifier_character_set_4(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '$', 876, + '0', 573, + '\\', 299, + 'a', 655, + 'b', 795, + 'c', 624, + 'd', 680, + 'e', 738, + 'f', 724, + 'g', 744, + 'i', 753, + 'l', 681, + 'm', 789, + 'n', 625, + 'o', 660, + 'r', 683, + 's', 630, + 't', 634, + 'u', 774, + 'v', 637, + 'w', 722, + 0x2028, 589, + 0x2029, 589, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 590: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(655); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(772); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(763); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(590); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 655, + 'b', 795, + 'c', 651, + 'd', 680, + 'e', 772, + 'f', 859, + 'i', 763, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + 'v', 637, + 'w', 722, + 0x2028, 590, + 0x2029, 590, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 591: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(655); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(763); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(591); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 655, + 'b', 795, + 'c', 651, + 'd', 680, + 'e', 739, + 'f', 859, + 'i', 763, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + 'v', 637, + 'w', 722, + 0x2028, 591, + 0x2029, 591, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 592: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(655); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(741); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(772); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(763); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(592); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 655, + 'b', 795, + 'c', 741, + 'd', 700, + 'e', 772, + 'f', 859, + 'i', 763, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + 'v', 637, + 'w', 722, + 0x2028, 592, + 0x2029, 592, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 593: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(655); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(741); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(764); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(625); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'u') ADVANCE(774); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(593); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 655, + 'b', 795, + 'c', 741, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 764, + 'l', 681, + 'm', 789, + 'n', 625, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + 'u', 774, + 'v', 790, + 0x2028, 593, + 0x2029, 593, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 594: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(655); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(741); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(763); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(594); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 655, + 'b', 795, + 'c', 741, + 'd', 700, + 'e', 739, + 'f', 859, + 'i', 763, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + 'v', 637, + 'w', 722, + 0x2028, 594, + 0x2029, 594, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 595: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(767); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(742); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(764); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(660); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(595); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 767, + 'b', 795, + 'c', 742, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 764, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 660, + 'r', 706, + 's', 630, + 't', 874, + 'v', 790, + 0x2028, 595, + 0x2029, 595, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 596: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(767); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(742); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(764); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(596); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 767, + 'b', 795, + 'c', 742, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 764, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + 'v', 790, + 0x2028, 596, + 0x2029, 596, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 597: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(767); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(742); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(754); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(597); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 767, + 'b', 795, + 'c', 742, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 754, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + 'v', 790, + 0x2028, 597, + 0x2029, 597, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 598: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(656); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(794); - if (lookahead == 'i') ADVANCE(778); - if (lookahead == 'n') ADVANCE(682); - if (lookahead == 'o') ADVANCE(660); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 'u') ADVANCE(774); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(598); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 656, + 'b', 795, + 'c', 794, + 'i', 778, + 'n', 682, + 'o', 660, + 'r', 706, + 's', 630, + 'u', 774, + 'v', 790, + 0x2028, 598, + 0x2029, 598, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 599: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(656); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(794); - if (lookahead == 'i') ADVANCE(778); - if (lookahead == 'n') ADVANCE(682); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 'u') ADVANCE(774); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(599); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 656, + 'b', 795, + 'c', 794, + 'i', 778, + 'n', 682, + 'o', 661, + 'r', 706, + 's', 630, + 'u', 774, + 'v', 790, + 0x2028, 599, + 0x2029, 599, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 600: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(656); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(794); - if (lookahead == 'i') ADVANCE(759); - if (lookahead == 'n') ADVANCE(682); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 'u') ADVANCE(774); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(600); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 656, + 'b', 795, + 'c', 794, + 'i', 759, + 'n', 682, + 'o', 661, + 'r', 706, + 's', 630, + 'u', 774, + 'v', 790, + 0x2028, 600, + 0x2029, 600, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 601: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(768); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(778); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(601); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 768, + 'b', 795, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 778, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + 0x2028, 601, + 0x2029, 601, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 602: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(768); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'i') ADVANCE(778); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(602); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 768, + 'b', 795, + 'd', 700, + 'e', 869, + 'i', 778, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + 0x2028, 602, + 0x2029, 602, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 603: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(659); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(794); - if (lookahead == 'i') ADVANCE(766); - if (lookahead == 'n') ADVANCE(682); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 'u') ADVANCE(774); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(603); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 659, + 'b', 795, + 'c', 794, + 'i', 766, + 'n', 682, + 'o', 661, + 'r', 706, + 's', 838, + 'u', 774, + 'v', 790, + 0x2028, 603, + 0x2029, 603, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 604: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(659); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(794); - if (lookahead == 'n') ADVANCE(682); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 'u') ADVANCE(774); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(604); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 659, + 'b', 795, + 'c', 794, + 'n', 682, + 'o', 661, + 'r', 706, + 's', 838, + 'u', 774, + 'v', 790, + 0x2028, 604, + 0x2029, 604, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 605: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(624); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(772); - if (lookahead == 'f') ADVANCE(725); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(605); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 657, + 'b', 795, + 'c', 624, + 'd', 680, + 'e', 772, + 'f', 725, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + 0x2028, 605, + 0x2029, 605, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 606: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(624); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == 'f') ADVANCE(725); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(606); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 657, + 'b', 795, + 'c', 624, + 'd', 680, + 'e', 739, + 'f', 725, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + 0x2028, 606, + 0x2029, 606, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 607: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(772); - if (lookahead == 'f') ADVANCE(725); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(607); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 657, + 'b', 795, + 'c', 651, + 'd', 680, + 'e', 772, + 'f', 725, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + 0x2028, 607, + 0x2029, 607, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 608: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(772); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(608); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 657, + 'b', 795, + 'c', 651, + 'd', 680, + 'e', 772, + 'f', 859, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + 0x2028, 608, + 0x2029, 608, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 609: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == 'f') ADVANCE(725); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(609); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 657, + 'b', 795, + 'c', 651, + 'd', 680, + 'e', 739, + 'f', 725, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + 0x2028, 609, + 0x2029, 609, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 610: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(651); - if (lookahead == 'd') ADVANCE(680); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(610); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 657, + 'b', 795, + 'c', 651, + 'd', 680, + 'e', 739, + 'f', 859, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + 0x2028, 610, + 0x2029, 610, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 611: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(741); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(772); - if (lookahead == 'f') ADVANCE(725); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(611); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 657, + 'b', 795, + 'c', 741, + 'd', 700, + 'e', 772, + 'f', 725, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + 0x2028, 611, + 0x2029, 611, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 612: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(741); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(772); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(612); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 657, + 'b', 795, + 'c', 741, + 'd', 700, + 'e', 772, + 'f', 859, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + 0x2028, 612, + 0x2029, 612, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 613: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(741); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(772); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(613); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 657, + 'b', 795, + 'c', 741, + 'd', 700, + 'e', 772, + 'f', 859, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 0x2028, 613, + 0x2029, 613, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 614: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(741); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(766); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(625); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'u') ADVANCE(774); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(614); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 657, + 'b', 795, + 'c', 741, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 766, + 'l', 681, + 'm', 789, + 'n', 625, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'u', 774, + 'v', 790, + 0x2028, 614, + 0x2029, 614, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 615: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(741); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == 'f') ADVANCE(725); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(615); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 657, + 'b', 795, + 'c', 741, + 'd', 700, + 'e', 739, + 'f', 725, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + 0x2028, 615, + 0x2029, 615, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 616: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(741); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(616); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 657, + 'b', 795, + 'c', 741, + 'd', 700, + 'e', 739, + 'f', 859, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + 0x2028, 616, + 0x2029, 616, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 617: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(650); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(772); - if (lookahead == 'f') ADVANCE(725); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(617); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 657, + 'b', 795, + 'c', 650, + 'd', 700, + 'e', 772, + 'f', 725, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + 0x2028, 617, + 0x2029, 617, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 618: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(657); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(650); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(739); - if (lookahead == 'f') ADVANCE(725); - if (lookahead == 'i') ADVANCE(765); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 'w') ADVANCE(722); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(618); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 657, + 'b', 795, + 'c', 650, + 'd', 700, + 'e', 739, + 'f', 725, + 'i', 765, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 'w', 722, + 0x2028, 618, + 0x2029, 618, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 619: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(769); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(741); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(766); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(637); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(619); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 769, + 'b', 795, + 'c', 741, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 766, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 637, + 0x2028, 619, + 0x2029, 619, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 620: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(769); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(742); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(766); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 769, + 'b', 795, + 'c', 742, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 766, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 790, + 0x2028, 620, + 0x2029, 620, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 621: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(769); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'c') ADVANCE(742); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(868); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(766); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(621); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 769, + 'b', 795, + 'c', 742, + 'd', 700, + 'e', 868, + 'f', 859, + 'i', 766, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 'v', 790, + 0x2028, 621, + 0x2029, 621, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 622: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(658); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(622); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 658, + 'b', 795, + 'd', 700, + 'e', 869, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 0x2028, 622, + 0x2029, 622, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 623: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '0') ADVANCE(573); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(770); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(623); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '0', 573, + '\\', 299, + 'a', 770, + 'b', 795, + 'd', 700, + 'e', 869, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 0x2028, 623, + 0x2029, 623, + ); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 624: ACCEPT_TOKEN(sym_identifier); @@ -18026,7 +17806,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(832); if (lookahead == 'l') ADVANCE(636); if (lookahead == 'o') ADVANCE(788); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 625: ACCEPT_TOKEN(sym_identifier); @@ -18034,7 +17814,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(761); if (lookahead == 'e') ADVANCE(864); if (lookahead == 'u') ADVANCE(757); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 626: ACCEPT_TOKEN(sym_identifier); @@ -18042,70 +17822,76 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(761); if (lookahead == 'e') ADVANCE(866); if (lookahead == 'u') ADVANCE(757); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 627: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(768); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(778); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(660); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(627); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(884); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '\\', 299, + 'a', 768, + 'b', 795, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 778, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 660, + 'r', 706, + 's', 630, + 't', 874, + 0x2028, 627, + 0x2029, 627, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 628: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(768); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(778); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(628); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(884); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '\\', 299, + 'a', 768, + 'b', 795, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 778, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + 0x2028, 628, + 0x2029, 628, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 629: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(768); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'f') ADVANCE(859); - if (lookahead == 'i') ADVANCE(759); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(630); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(629); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(884); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '\\', 299, + 'a', 768, + 'b', 795, + 'd', 700, + 'e', 869, + 'f', 859, + 'i', 759, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 630, + 't', 874, + 0x2028, 629, + 0x2029, 629, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 630: ACCEPT_TOKEN(sym_identifier); @@ -18113,101 +17899,103 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(852); if (lookahead == 't') ADVANCE(818); if (lookahead == 'y') ADVANCE(758); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 631: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'a') ADVANCE(852); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 632: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'a') ADVANCE(678); if (lookahead == 'q') ADVANCE(861); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 633: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'a') ADVANCE(678); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 634: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'a') ADVANCE(812); if (lookahead == 'y') ADVANCE(806); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 635: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(770); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'd') ADVANCE(700); - if (lookahead == 'e') ADVANCE(869); - if (lookahead == 'l') ADVANCE(681); - if (lookahead == 'm') ADVANCE(789); - if (lookahead == 'n') ADVANCE(626); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 'r') ADVANCE(706); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 't') ADVANCE(874); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(635); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(884); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '\\', 299, + 'a', 770, + 'b', 795, + 'd', 700, + 'e', 869, + 'l', 681, + 'm', 789, + 'n', 626, + 'o', 661, + 'r', 706, + 's', 838, + 't', 874, + 0x2028, 635, + 0x2029, 635, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 636: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'a') ADVANCE(834); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 637: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'a') ADVANCE(813); if (lookahead == 'o') ADVANCE(726); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 638: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'a') ADVANCE(729); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 639: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'a') ADVANCE(746); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 640: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'a') ADVANCE(860); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 641: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'a') ADVANCE(736); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 642: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'a') ADVANCE(822); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 643: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'a') ADVANCE(784); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 644: ACCEPT_TOKEN(sym_identifier); @@ -18216,10 +18004,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(778); if (lookahead == 'o') ADVANCE(713); if (lookahead == 's') ADVANCE(631); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(644); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(884); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(644); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 645: ACCEPT_TOKEN(sym_identifier); @@ -18227,10 +18015,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(829); if (lookahead == 'i') ADVANCE(778); if (lookahead == 's') ADVANCE(631); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(645); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(884); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(645); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 646: ACCEPT_TOKEN(sym_identifier); @@ -18238,41 +18026,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(829); if (lookahead == 'i') ADVANCE(759); if (lookahead == 's') ADVANCE(631); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(884); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(646); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 647: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'a') ADVANCE(829); if (lookahead == 't') ADVANCE(874); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(884); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 648: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'a') ADVANCE(775); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 649: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '\\') ADVANCE(299); - if (lookahead == 'a') ADVANCE(771); - if (lookahead == 'b') ADVANCE(795); - if (lookahead == 'n') ADVANCE(694); - if (lookahead == 'o') ADVANCE(661); - if (lookahead == 's') ADVANCE(838); - if (lookahead == 'u') ADVANCE(774); - if (lookahead == 'v') ADVANCE(790); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(649); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(884); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + ADVANCE_MAP( + '\\', 299, + 'a', 771, + 'b', 795, + 'n', 694, + 'o', 661, + 's', 838, + 'u', 774, + 'v', 790, + 0x2028, 649, + 0x2029, 649, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 650: ACCEPT_TOKEN(sym_identifier); @@ -18280,7 +18070,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(839); if (lookahead == 'l') ADVANCE(636); if (lookahead == 'o') ADVANCE(788); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 651: ACCEPT_TOKEN(sym_identifier); @@ -18288,25 +18078,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'a') ADVANCE(833); if (lookahead == 'l') ADVANCE(636); if (lookahead == 'o') ADVANCE(788); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 652: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'a') ADVANCE(671); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 653: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'a') ADVANCE(673); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 654: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'a') ADVANCE(674); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 655: ACCEPT_TOKEN(sym_identifier); @@ -18315,7 +18105,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(871); if (lookahead == 's') ADVANCE(373); if (lookahead == 'w') ADVANCE(638); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 656: ACCEPT_TOKEN(sym_identifier); @@ -18323,7 +18113,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'b') ADVANCE(835); if (lookahead == 'n') ADVANCE(871); if (lookahead == 's') ADVANCE(374); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 657: ACCEPT_TOKEN(sym_identifier); @@ -18332,7 +18122,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(871); if (lookahead == 's') ADVANCE(875); if (lookahead == 'w') ADVANCE(638); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 658: ACCEPT_TOKEN(sym_identifier); @@ -18340,421 +18130,421 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'b') ADVANCE(835); if (lookahead == 'n') ADVANCE(871); if (lookahead == 's') ADVANCE(875); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 659: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'b') ADVANCE(835); if (lookahead == 'n') ADVANCE(871); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 660: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'b') ADVANCE(735); if (lookahead == 'f') ADVANCE(410); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 661: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'b') ADVANCE(735); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 662: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'b') ADVANCE(641); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 663: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'b') ADVANCE(799); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 664: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'b') ADVANCE(704); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 665: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'c') ADVANCE(441); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 666: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'c') ADVANCE(721); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 667: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'c') ADVANCE(745); if (lookahead == 'f') ADVANCE(640); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 668: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'c') ADVANCE(745); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 669: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'c') ADVANCE(846); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 670: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'c') ADVANCE(794); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(670); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(884); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(670); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 671: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'c') ADVANCE(849); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 672: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'c') ADVANCE(705); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 673: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'c') ADVANCE(692); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 674: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'c') ADVANCE(693); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 675: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'c') ADVANCE(856); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 676: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'd') ADVANCE(518); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 677: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'd') ADVANCE(863); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 678: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'd') ADVANCE(800); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 679: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'd') ADVANCE(826); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 680: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(667); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 681: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(840); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 682: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(864); if (lookahead == 'u') ADVANCE(757); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 683: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(632); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 684: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(417); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 685: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(398); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 686: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(367); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 687: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(413); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 688: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(899); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 689: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(936); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 690: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(897); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 691: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(918); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 692: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(927); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 693: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(378); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 694: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(865); if (lookahead == 'u') ADVANCE(757); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 695: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(870); if (lookahead == 'i') ADVANCE(760); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(695); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(884); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(695); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 696: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(870); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(696); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(884); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(696); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 697: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(669); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 698: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(831); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 699: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(814); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 700: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(668); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 701: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(783); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 702: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(815); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 703: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(827); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 704: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(816); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 705: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(796); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 706: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(633); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 707: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(847); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 708: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(787); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 709: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(773); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(709); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(884); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(709); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 710: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(762); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 711: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(810); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 712: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'e') ADVANCE(648); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 713: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'f') ADVANCE(410); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 714: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'f') ADVANCE(514); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 715: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'f') ADVANCE(731); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 716: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'f') ADVANCE(653); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 717: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'f') ADVANCE(817); if (lookahead == 't') ADVANCE(874); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(717); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(884); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(717); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 718: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'g') ADVANCE(907); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 719: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'g') ADVANCE(707); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 720: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'h') ADVANCE(388); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 721: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'h') ADVANCE(419); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 722: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'h') ADVANCE(732); if (lookahead == 'i') ADVANCE(841); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 723: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'i') ADVANCE(811); if (lookahead == 'k') ADVANCE(785); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 724: ACCEPT_TOKEN(sym_identifier); @@ -18762,89 +18552,89 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'i') ADVANCE(782); if (lookahead == 'r') ADVANCE(797); if (lookahead == 'u') ADVANCE(779); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 725: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'i') ADVANCE(782); if (lookahead == 'u') ADVANCE(779); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 726: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'i') ADVANCE(676); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 727: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'i') ADVANCE(766); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(727); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(884); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(727); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 728: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'i') ADVANCE(830); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 729: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'i') ADVANCE(842); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 730: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'i') ADVANCE(780); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 731: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'i') ADVANCE(703); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 732: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'i') ADVANCE(751); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 733: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'i') ADVANCE(801); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 734: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'i') ADVANCE(823); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 735: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'j') ADVANCE(697); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 736: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'l') ADVANCE(925); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 737: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'l') ADVANCE(909); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 738: ACCEPT_TOKEN(sym_identifier); @@ -18852,7 +18642,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(836); if (lookahead == 'n') ADVANCE(858); if (lookahead == 'x') ADVANCE(804); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 739: ACCEPT_TOKEN(sym_identifier); @@ -18860,87 +18650,87 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'l') ADVANCE(836); if (lookahead == 'n') ADVANCE(858); if (lookahead == 'x') ADVANCE(805); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 740: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'l') ADVANCE(872); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 741: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'l') ADVANCE(636); if (lookahead == 'o') ADVANCE(788); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 742: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'l') ADVANCE(636); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 743: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'l') ADVANCE(873); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 744: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'l') ADVANCE(791); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 745: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'l') ADVANCE(642); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 746: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'l') ADVANCE(740); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 747: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'l') ADVANCE(712); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 748: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'l') ADVANCE(848); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 749: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'l') ADVANCE(710); if (lookahead == 'o') ADVANCE(821); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 750: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'l') ADVANCE(710); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 751: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'l') ADVANCE(687); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 752: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'l') ADVANCE(688); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 753: ACCEPT_TOKEN(sym_identifier); @@ -18948,90 +18738,90 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'm') ADVANCE(803); if (lookahead == 'n') ADVANCE(404); if (lookahead == 's') ADVANCE(934); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 754: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'm') ADVANCE(803); if (lookahead == 'n') ADVANCE(405); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 755: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'm') ADVANCE(929); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 756: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'm') ADVANCE(386); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 757: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'm') ADVANCE(664); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 758: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'm') ADVANCE(663); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 759: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'm') ADVANCE(808); if (lookahead == 'n') ADVANCE(405); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 760: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'm') ADVANCE(808); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 761: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'm') ADVANCE(698); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 762: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'm') ADVANCE(708); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 763: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'm') ADVANCE(807); if (lookahead == 'n') ADVANCE(404); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 764: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'm') ADVANCE(807); if (lookahead == 'n') ADVANCE(405); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 765: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'm') ADVANCE(807); if (lookahead == 'n') ADVANCE(854); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 766: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'm') ADVANCE(807); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 767: ACCEPT_TOKEN(sym_identifier); @@ -19039,14 +18829,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(871); if (lookahead == 's') ADVANCE(373); if (lookahead == 'w') ADVANCE(638); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 768: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'n') ADVANCE(871); if (lookahead == 's') ADVANCE(373); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 769: ACCEPT_TOKEN(sym_identifier); @@ -19054,726 +18844,726 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == 'n') ADVANCE(871); if (lookahead == 's') ADVANCE(875); if (lookahead == 'w') ADVANCE(638); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 770: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'n') ADVANCE(871); if (lookahead == 's') ADVANCE(875); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 771: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'n') ADVANCE(871); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 772: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'n') ADVANCE(858); if (lookahead == 'x') ADVANCE(805); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 773: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'n') ADVANCE(858); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 774: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'n') ADVANCE(723); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 775: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'n') ADVANCE(905); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 776: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'n') ADVANCE(938); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 777: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'n') ADVANCE(443); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 778: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'n') ADVANCE(405); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 779: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'n') ADVANCE(675); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 780: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'n') ADVANCE(718); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 781: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'n') ADVANCE(665); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 782: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'n') ADVANCE(639); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 783: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'n') ADVANCE(679); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 784: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'n') ADVANCE(672); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 785: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'n') ADVANCE(792); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 786: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'n') ADVANCE(743); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 787: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'n') ADVANCE(857); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 788: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'n') ADVANCE(837); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 789: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'o') ADVANCE(677); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 790: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'o') ADVANCE(726); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 791: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'o') ADVANCE(662); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 792: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'o') ADVANCE(867); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 793: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'o') ADVANCE(747); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 794: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'o') ADVANCE(788); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 795: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'o') ADVANCE(793); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 796: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'o') ADVANCE(714); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 797: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'o') ADVANCE(756); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 798: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'o') ADVANCE(820); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 799: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'o') ADVANCE(737); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 800: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'o') ADVANCE(786); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 801: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'o') ADVANCE(777); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 802: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'o') ADVANCE(821); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 803: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'p') ADVANCE(749); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 804: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'p') ADVANCE(798); if (lookahead == 't') ADVANCE(701); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 805: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'p') ADVANCE(798); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 806: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'p') ADVANCE(686); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 807: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'p') ADVANCE(802); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 808: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'p') ADVANCE(750); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 809: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'p') ADVANCE(654); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 810: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'q') ADVANCE(861); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 811: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'q') ADVANCE(862); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 812: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'r') ADVANCE(719); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 813: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'r') ADVANCE(390); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 814: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'r') ADVANCE(716); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 815: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'r') ADVANCE(940); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 816: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'r') ADVANCE(903); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 817: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'r') ADVANCE(797); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 818: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'r') ADVANCE(730); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 819: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'r') ADVANCE(652); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 820: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'r') ADVANCE(844); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 821: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'r') ADVANCE(845); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 822: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'r') ADVANCE(690); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 823: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'r') ADVANCE(691); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 824: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'r') ADVANCE(711); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(824); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(884); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(824); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 825: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 's') ADVANCE(439); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 826: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 's') ADVANCE(920); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 827: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 's') ADVANCE(915); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 828: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 's') ADVANCE(922); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 829: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 's') ADVANCE(374); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 830: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 's') ADVANCE(715); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 831: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 's') ADVANCE(809); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 832: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 's') ADVANCE(684); if (lookahead == 't') ADVANCE(666); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 833: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 's') ADVANCE(684); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 834: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 's') ADVANCE(825); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 835: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 's') ADVANCE(851); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 836: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 's') ADVANCE(685); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 837: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 's') ADVANCE(843); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 838: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 't') ADVANCE(818); if (lookahead == 'y') ADVANCE(758); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 839: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 't') ADVANCE(666); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 840: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 't') ADVANCE(392); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 841: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 't') ADVANCE(720); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 842: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 't') ADVANCE(402); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 843: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 't') ADVANCE(394); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 844: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 't') ADVANCE(360); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 845: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 't') ADVANCE(384); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 846: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 't') ADVANCE(911); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 847: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 't') ADVANCE(888); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 848: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 't') ADVANCE(365); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 849: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 't') ADVANCE(913); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 850: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 't') ADVANCE(874); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(850); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(884); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(850); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 851: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 't') ADVANCE(819); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 852: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 't') ADVANCE(728); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 853: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 't') ADVANCE(701); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 854: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 't') ADVANCE(699); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 855: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 't') ADVANCE(643); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 856: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 't') ADVANCE(733); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 857: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 't') ADVANCE(828); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 858: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'u') ADVANCE(755); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 859: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'u') ADVANCE(779); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 860: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'u') ADVANCE(748); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 861: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'u') ADVANCE(734); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 862: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'u') ADVANCE(689); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 863: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'u') ADVANCE(752); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 864: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'v') ADVANCE(702); if (lookahead == 'w') ADVANCE(447); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 865: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'v') ADVANCE(702); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 866: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'w') ADVANCE(447); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 867: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'w') ADVANCE(776); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 868: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'x') ADVANCE(804); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 869: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'x') ADVANCE(805); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 870: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'x') ADVANCE(853); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 871: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'y') ADVANCE(901); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 872: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'y') ADVANCE(421); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 873: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'y') ADVANCE(891); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 874: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'y') ADVANCE(806); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 875: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == 'y') ADVANCE(781); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 876: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); if (lookahead == '{') ADVANCE(539); - if (!sym_identifier_character_set_5(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 877: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); - if (lookahead == '0' || - lookahead == '1') ADVANCE(576); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (lookahead == '+' || + lookahead == '-') ADVANCE(326); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(580); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 878: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); - if (lookahead == 8232 || - lookahead == 8233) ADVANCE(878); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(884); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + if (lookahead == '0' || + lookahead == '1') ADVANCE(577); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 879: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '7')) ADVANCE(577); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (lookahead == 0x2028 || + lookahead == 0x2029) ADVANCE(879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(885); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 880: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(575); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(578); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 881: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(579); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(574); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 882: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(580); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(576); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 883: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(578); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(580); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 884: ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(579); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 885: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+' || - lookahead == '-') ADVANCE(326); if (lookahead == '\\') ADVANCE(299); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(580); - if (!sym_private_property_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 886: ACCEPT_TOKEN(sym_private_property_identifier); if (lookahead == '\\') ADVANCE(298); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(886); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(886); END_STATE(); case 887: ACCEPT_TOKEN(anon_sym_target); @@ -19781,7 +19571,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 888: ACCEPT_TOKEN(anon_sym_target); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 889: ACCEPT_TOKEN(anon_sym_AT); @@ -19792,7 +19582,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 891: ACCEPT_TOKEN(anon_sym_readonly); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 892: ACCEPT_TOKEN(anon_sym_QMARK); @@ -19817,7 +19607,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 897: ACCEPT_TOKEN(anon_sym_declare); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 898: ACCEPT_TOKEN(anon_sym_module); @@ -19825,7 +19615,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 899: ACCEPT_TOKEN(anon_sym_module); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 900: ACCEPT_TOKEN(anon_sym_any); @@ -19833,7 +19623,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 901: ACCEPT_TOKEN(anon_sym_any); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 902: ACCEPT_TOKEN(anon_sym_number); @@ -19841,7 +19631,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 903: ACCEPT_TOKEN(anon_sym_number); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 904: ACCEPT_TOKEN(anon_sym_boolean); @@ -19849,7 +19639,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 905: ACCEPT_TOKEN(anon_sym_boolean); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 906: ACCEPT_TOKEN(anon_sym_string); @@ -19857,7 +19647,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 907: ACCEPT_TOKEN(anon_sym_string); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 908: ACCEPT_TOKEN(anon_sym_symbol); @@ -19865,7 +19655,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 909: ACCEPT_TOKEN(anon_sym_symbol); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 910: ACCEPT_TOKEN(anon_sym_object); @@ -19873,7 +19663,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 911: ACCEPT_TOKEN(anon_sym_object); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 912: ACCEPT_TOKEN(anon_sym_abstract); @@ -19881,7 +19671,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 913: ACCEPT_TOKEN(anon_sym_abstract); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 914: ACCEPT_TOKEN(anon_sym_satisfies); @@ -19889,7 +19679,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 915: ACCEPT_TOKEN(anon_sym_satisfies); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 916: ACCEPT_TOKEN(anon_sym_satisfies); @@ -19901,7 +19691,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 918: ACCEPT_TOKEN(anon_sym_require); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 919: ACCEPT_TOKEN(anon_sym_extends); @@ -19909,7 +19699,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 920: ACCEPT_TOKEN(anon_sym_extends); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 921: ACCEPT_TOKEN(anon_sym_implements); @@ -19917,7 +19707,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 922: ACCEPT_TOKEN(anon_sym_implements); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 923: ACCEPT_TOKEN(anon_sym_implements); @@ -19929,7 +19719,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 925: ACCEPT_TOKEN(anon_sym_global); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 926: ACCEPT_TOKEN(anon_sym_interface); @@ -19937,7 +19727,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 927: ACCEPT_TOKEN(anon_sym_interface); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 928: ACCEPT_TOKEN(anon_sym_enum); @@ -19945,7 +19735,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 929: ACCEPT_TOKEN(anon_sym_enum); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 930: ACCEPT_TOKEN(anon_sym_DASH_QMARK_COLON); @@ -19962,7 +19752,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 934: ACCEPT_TOKEN(anon_sym_is); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 935: ACCEPT_TOKEN(anon_sym_unique); @@ -19970,7 +19760,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 936: ACCEPT_TOKEN(anon_sym_unique); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 937: ACCEPT_TOKEN(anon_sym_unknown); @@ -19978,7 +19768,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 938: ACCEPT_TOKEN(anon_sym_unknown); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 939: ACCEPT_TOKEN(anon_sym_never); @@ -19986,7 +19776,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 940: ACCEPT_TOKEN(anon_sym_never); if (lookahead == '\\') ADVANCE(299); - if (!sym_identifier_character_set_1(lookahead)) ADVANCE(884); + if (set_contains(sym_identifier_character_set_2, 14, lookahead)) ADVANCE(885); END_STATE(); case 941: ACCEPT_TOKEN(anon_sym_LBRACE_PIPE); @@ -20004,34 +19794,25 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { 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 == 'n') ADVANCE(9); - if (lookahead == 'o') ADVANCE(10); - if (lookahead == 'p') ADVANCE(11); - if (lookahead == 'r') ADVANCE(12); - if (lookahead == 's') ADVANCE(13); - if (lookahead == 't') ADVANCE(14); - if (lookahead == 'u') ADVANCE(15); - if (lookahead == 'y') ADVANCE(16); - if (('\t' <= lookahead && 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) + ADVANCE_MAP( + 'a', 1, + 'b', 2, + 'c', 3, + 'd', 4, + 'f', 5, + 'g', 6, + 'i', 7, + 'k', 8, + 'n', 9, + 'o', 10, + 'p', 11, + 'r', 12, + 's', 13, + 't', 14, + 'u', 15, + 'y', 16, + ); + if (set_contains(extras_character_set_1, 10, lookahead)) SKIP(0); END_STATE(); case 1: if (lookahead == 's') ADVANCE(17); @@ -20602,19 +20383,19 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [120] = {.lex_state = 351, .external_lex_state = 2}, [121] = {.lex_state = 351, .external_lex_state = 2}, [122] = {.lex_state = 351, .external_lex_state = 2}, - [123] = {.lex_state = 32, .external_lex_state = 2}, + [123] = {.lex_state = 3, .external_lex_state = 4}, [124] = {.lex_state = 32, .external_lex_state = 2}, [125] = {.lex_state = 32, .external_lex_state = 2}, [126] = {.lex_state = 32, .external_lex_state = 2}, [127] = {.lex_state = 32, .external_lex_state = 2}, - [128] = {.lex_state = 3, .external_lex_state = 4}, - [129] = {.lex_state = 32, .external_lex_state = 2}, + [128] = {.lex_state = 32, .external_lex_state = 2}, + [129] = {.lex_state = 3, .external_lex_state = 4}, [130] = {.lex_state = 32, .external_lex_state = 2}, [131] = {.lex_state = 32, .external_lex_state = 2}, - [132] = {.lex_state = 32, .external_lex_state = 2}, + [132] = {.lex_state = 3, .external_lex_state = 4}, [133] = {.lex_state = 32, .external_lex_state = 2}, - [134] = {.lex_state = 3, .external_lex_state = 4}, - [135] = {.lex_state = 3, .external_lex_state = 4}, + [134] = {.lex_state = 32, .external_lex_state = 2}, + [135] = {.lex_state = 32, .external_lex_state = 2}, [136] = {.lex_state = 3, .external_lex_state = 3}, [137] = {.lex_state = 3, .external_lex_state = 3}, [138] = {.lex_state = 3, .external_lex_state = 3}, @@ -20629,28 +20410,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [147] = {.lex_state = 32, .external_lex_state = 2}, [148] = {.lex_state = 32, .external_lex_state = 2}, [149] = {.lex_state = 32, .external_lex_state = 2}, - [150] = {.lex_state = 3, .external_lex_state = 4}, - [151] = {.lex_state = 7, .external_lex_state = 4}, - [152] = {.lex_state = 32, .external_lex_state = 2}, - [153] = {.lex_state = 7, .external_lex_state = 4}, - [154] = {.lex_state = 32, .external_lex_state = 2}, - [155] = {.lex_state = 3, .external_lex_state = 4}, - [156] = {.lex_state = 3, .external_lex_state = 3}, - [157] = {.lex_state = 3, .external_lex_state = 3}, - [158] = {.lex_state = 3, .external_lex_state = 3}, - [159] = {.lex_state = 3, .external_lex_state = 3}, - [160] = {.lex_state = 7, .external_lex_state = 4}, - [161] = {.lex_state = 3, .external_lex_state = 4}, + [150] = {.lex_state = 3, .external_lex_state = 3}, + [151] = {.lex_state = 32, .external_lex_state = 2}, + [152] = {.lex_state = 3, .external_lex_state = 3}, + [153] = {.lex_state = 3, .external_lex_state = 3}, + [154] = {.lex_state = 3, .external_lex_state = 4}, + [155] = {.lex_state = 7, .external_lex_state = 4}, + [156] = {.lex_state = 7, .external_lex_state = 4}, + [157] = {.lex_state = 3, .external_lex_state = 4}, + [158] = {.lex_state = 32, .external_lex_state = 2}, + [159] = {.lex_state = 3, .external_lex_state = 4}, + [160] = {.lex_state = 32, .external_lex_state = 2}, + [161] = {.lex_state = 7, .external_lex_state = 4}, [162] = {.lex_state = 3, .external_lex_state = 4}, [163] = {.lex_state = 3, .external_lex_state = 4}, - [164] = {.lex_state = 3, .external_lex_state = 3}, - [165] = {.lex_state = 3, .external_lex_state = 4}, - [166] = {.lex_state = 32, .external_lex_state = 2}, + [164] = {.lex_state = 3, .external_lex_state = 4}, + [165] = {.lex_state = 32, .external_lex_state = 2}, + [166] = {.lex_state = 3, .external_lex_state = 3}, [167] = {.lex_state = 3, .external_lex_state = 3}, - [168] = {.lex_state = 7, .external_lex_state = 4}, - [169] = {.lex_state = 32, .external_lex_state = 2}, - [170] = {.lex_state = 3, .external_lex_state = 4}, - [171] = {.lex_state = 3, .external_lex_state = 4}, + [168] = {.lex_state = 3, .external_lex_state = 4}, + [169] = {.lex_state = 3, .external_lex_state = 4}, + [170] = {.lex_state = 7, .external_lex_state = 4}, + [171] = {.lex_state = 3, .external_lex_state = 3}, [172] = {.lex_state = 3, .external_lex_state = 3}, [173] = {.lex_state = 3, .external_lex_state = 3}, [174] = {.lex_state = 3, .external_lex_state = 3}, @@ -20658,30 +20439,30 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [176] = {.lex_state = 3, .external_lex_state = 3}, [177] = {.lex_state = 3, .external_lex_state = 3}, [178] = {.lex_state = 3, .external_lex_state = 3}, - [179] = {.lex_state = 8, .external_lex_state = 3}, + [179] = {.lex_state = 3, .external_lex_state = 4}, [180] = {.lex_state = 3, .external_lex_state = 3}, - [181] = {.lex_state = 3, .external_lex_state = 4}, + [181] = {.lex_state = 3, .external_lex_state = 3}, [182] = {.lex_state = 3, .external_lex_state = 3}, - [183] = {.lex_state = 3, .external_lex_state = 3}, + [183] = {.lex_state = 8, .external_lex_state = 3}, [184] = {.lex_state = 3, .external_lex_state = 4}, [185] = {.lex_state = 3, .external_lex_state = 3}, - [186] = {.lex_state = 3, .external_lex_state = 3}, + [186] = {.lex_state = 3, .external_lex_state = 4}, [187] = {.lex_state = 8, .external_lex_state = 3}, - [188] = {.lex_state = 3, .external_lex_state = 4}, + [188] = {.lex_state = 3, .external_lex_state = 3}, [189] = {.lex_state = 8, .external_lex_state = 3}, [190] = {.lex_state = 7, .external_lex_state = 3}, - [191] = {.lex_state = 7, .external_lex_state = 3}, - [192] = {.lex_state = 7, .external_lex_state = 3}, - [193] = {.lex_state = 3, .external_lex_state = 3}, - [194] = {.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 = 7, .external_lex_state = 3}, + [194] = {.lex_state = 7, .external_lex_state = 3}, [195] = {.lex_state = 3, .external_lex_state = 3}, [196] = {.lex_state = 3, .external_lex_state = 3}, - [197] = {.lex_state = 7, .external_lex_state = 3}, + [197] = {.lex_state = 3, .external_lex_state = 3}, [198] = {.lex_state = 3, .external_lex_state = 3}, - [199] = {.lex_state = 3, .external_lex_state = 3}, + [199] = {.lex_state = 7, .external_lex_state = 3}, [200] = {.lex_state = 3, .external_lex_state = 3}, [201] = {.lex_state = 3, .external_lex_state = 3}, - [202] = {.lex_state = 32, .external_lex_state = 2}, + [202] = {.lex_state = 3, .external_lex_state = 3}, [203] = {.lex_state = 3, .external_lex_state = 3}, [204] = {.lex_state = 3, .external_lex_state = 3}, [205] = {.lex_state = 3, .external_lex_state = 3}, @@ -20692,7 +20473,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [210] = {.lex_state = 3, .external_lex_state = 3}, [211] = {.lex_state = 3, .external_lex_state = 3}, [212] = {.lex_state = 3, .external_lex_state = 3}, - [213] = {.lex_state = 3, .external_lex_state = 3}, + [213] = {.lex_state = 32, .external_lex_state = 2}, [214] = {.lex_state = 32, .external_lex_state = 2}, [215] = {.lex_state = 32, .external_lex_state = 2}, [216] = {.lex_state = 32, .external_lex_state = 2}, @@ -20706,15 +20487,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [224] = {.lex_state = 32, .external_lex_state = 2}, [225] = {.lex_state = 32, .external_lex_state = 2}, [226] = {.lex_state = 32, .external_lex_state = 2}, - [227] = {.lex_state = 9, .external_lex_state = 3}, - [228] = {.lex_state = 10, .external_lex_state = 4}, + [227] = {.lex_state = 10, .external_lex_state = 4}, + [228] = {.lex_state = 9, .external_lex_state = 3}, [229] = {.lex_state = 9, .external_lex_state = 4}, [230] = {.lex_state = 9, .external_lex_state = 3}, - [231] = {.lex_state = 9, .external_lex_state = 4}, - [232] = {.lex_state = 13, .external_lex_state = 3}, + [231] = {.lex_state = 13, .external_lex_state = 3}, + [232] = {.lex_state = 9, .external_lex_state = 4}, [233] = {.lex_state = 9, .external_lex_state = 3}, - [234] = {.lex_state = 10, .external_lex_state = 3}, - [235] = {.lex_state = 9, .external_lex_state = 3}, + [234] = {.lex_state = 9, .external_lex_state = 3}, + [235] = {.lex_state = 10, .external_lex_state = 3}, [236] = {.lex_state = 9, .external_lex_state = 3}, [237] = {.lex_state = 44, .external_lex_state = 2}, [238] = {.lex_state = 44, .external_lex_state = 2}, @@ -20728,8 +20509,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [246] = {.lex_state = 44, .external_lex_state = 2}, [247] = {.lex_state = 44, .external_lex_state = 2}, [248] = {.lex_state = 44, .external_lex_state = 2}, - [249] = {.lex_state = 16, .external_lex_state = 4}, - [250] = {.lex_state = 14, .external_lex_state = 4}, + [249] = {.lex_state = 14, .external_lex_state = 4}, + [250] = {.lex_state = 16, .external_lex_state = 4}, [251] = {.lex_state = 14, .external_lex_state = 3}, [252] = {.lex_state = 14, .external_lex_state = 3}, [253] = {.lex_state = 14, .external_lex_state = 3}, @@ -20739,16 +20520,16 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [257] = {.lex_state = 14, .external_lex_state = 3}, [258] = {.lex_state = 17, .external_lex_state = 3}, [259] = {.lex_state = 14, .external_lex_state = 3}, - [260] = {.lex_state = 34, .external_lex_state = 2}, - [261] = {.lex_state = 16, .external_lex_state = 3}, - [262] = {.lex_state = 14, .external_lex_state = 3}, - [263] = {.lex_state = 14, .external_lex_state = 3}, - [264] = {.lex_state = 34, .external_lex_state = 2}, - [265] = {.lex_state = 14, .external_lex_state = 3}, + [260] = {.lex_state = 16, .external_lex_state = 3}, + [261] = {.lex_state = 14, .external_lex_state = 3}, + [262] = {.lex_state = 34, .external_lex_state = 2}, + [263] = {.lex_state = 34, .external_lex_state = 2}, + [264] = {.lex_state = 14, .external_lex_state = 3}, + [265] = {.lex_state = 34, .external_lex_state = 2}, [266] = {.lex_state = 34, .external_lex_state = 2}, [267] = {.lex_state = 34, .external_lex_state = 2}, [268] = {.lex_state = 34, .external_lex_state = 2}, - [269] = {.lex_state = 34, .external_lex_state = 2}, + [269] = {.lex_state = 14, .external_lex_state = 3}, [270] = {.lex_state = 34, .external_lex_state = 2}, [271] = {.lex_state = 34, .external_lex_state = 2}, [272] = {.lex_state = 34, .external_lex_state = 2}, @@ -20764,198 +20545,198 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [282] = {.lex_state = 34, .external_lex_state = 2}, [283] = {.lex_state = 34, .external_lex_state = 2}, [284] = {.lex_state = 33, .external_lex_state = 5}, - [285] = {.lex_state = 43, .external_lex_state = 2}, + [285] = {.lex_state = 33, .external_lex_state = 2}, [286] = {.lex_state = 43, .external_lex_state = 2}, [287] = {.lex_state = 43, .external_lex_state = 2}, - [288] = {.lex_state = 33, .external_lex_state = 2}, - [289] = {.lex_state = 34, .external_lex_state = 2}, + [288] = {.lex_state = 43, .external_lex_state = 2}, + [289] = {.lex_state = 43, .external_lex_state = 2}, [290] = {.lex_state = 43, .external_lex_state = 2}, - [291] = {.lex_state = 43, .external_lex_state = 2}, - [292] = {.lex_state = 33, .external_lex_state = 2}, - [293] = {.lex_state = 12, .external_lex_state = 4}, + [291] = {.lex_state = 34, .external_lex_state = 2}, + [292] = {.lex_state = 34, .external_lex_state = 2}, + [293] = {.lex_state = 34, .external_lex_state = 2}, [294] = {.lex_state = 12, .external_lex_state = 4}, - [295] = {.lex_state = 12, .external_lex_state = 4}, - [296] = {.lex_state = 34, .external_lex_state = 2}, + [295] = {.lex_state = 34, .external_lex_state = 2}, + [296] = {.lex_state = 12, .external_lex_state = 4}, [297] = {.lex_state = 34, .external_lex_state = 2}, [298] = {.lex_state = 34, .external_lex_state = 2}, - [299] = {.lex_state = 34, .external_lex_state = 2}, + [299] = {.lex_state = 12, .external_lex_state = 4}, [300] = {.lex_state = 34, .external_lex_state = 2}, [301] = {.lex_state = 12, .external_lex_state = 4}, - [302] = {.lex_state = 34, .external_lex_state = 2}, + [302] = {.lex_state = 33, .external_lex_state = 2}, [303] = {.lex_state = 12, .external_lex_state = 4}, [304] = {.lex_state = 12, .external_lex_state = 4}, [305] = {.lex_state = 12, .external_lex_state = 4}, - [306] = {.lex_state = 12, .external_lex_state = 4}, + [306] = {.lex_state = 34, .external_lex_state = 2}, [307] = {.lex_state = 12, .external_lex_state = 4}, - [308] = {.lex_state = 12, .external_lex_state = 4}, + [308] = {.lex_state = 11, .external_lex_state = 4}, [309] = {.lex_state = 12, .external_lex_state = 4}, [310] = {.lex_state = 12, .external_lex_state = 4}, [311] = {.lex_state = 12, .external_lex_state = 4}, [312] = {.lex_state = 12, .external_lex_state = 4}, - [313] = {.lex_state = 12, .external_lex_state = 4}, + [313] = {.lex_state = 348, .external_lex_state = 4}, [314] = {.lex_state = 12, .external_lex_state = 4}, - [315] = {.lex_state = 11, .external_lex_state = 4}, - [316] = {.lex_state = 348, .external_lex_state = 4}, + [315] = {.lex_state = 12, .external_lex_state = 4}, + [316] = {.lex_state = 12, .external_lex_state = 4}, [317] = {.lex_state = 348, .external_lex_state = 4}, - [318] = {.lex_state = 12, .external_lex_state = 4}, - [319] = {.lex_state = 348, .external_lex_state = 4}, + [318] = {.lex_state = 348, .external_lex_state = 4}, + [319] = {.lex_state = 12, .external_lex_state = 4}, [320] = {.lex_state = 12, .external_lex_state = 4}, [321] = {.lex_state = 12, .external_lex_state = 4}, - [322] = {.lex_state = 11, .external_lex_state = 4}, + [322] = {.lex_state = 12, .external_lex_state = 4}, [323] = {.lex_state = 12, .external_lex_state = 4}, [324] = {.lex_state = 11, .external_lex_state = 4}, [325] = {.lex_state = 11, .external_lex_state = 4}, - [326] = {.lex_state = 12, .external_lex_state = 4}, + [326] = {.lex_state = 11, .external_lex_state = 4}, [327] = {.lex_state = 12, .external_lex_state = 4}, [328] = {.lex_state = 12, .external_lex_state = 4}, [329] = {.lex_state = 12, .external_lex_state = 4}, - [330] = {.lex_state = 348, .external_lex_state = 4}, + [330] = {.lex_state = 12, .external_lex_state = 4}, [331] = {.lex_state = 12, .external_lex_state = 4}, [332] = {.lex_state = 12, .external_lex_state = 4}, - [333] = {.lex_state = 12, .external_lex_state = 4}, - [334] = {.lex_state = 34, .external_lex_state = 2}, + [333] = {.lex_state = 33, .external_lex_state = 2}, + [334] = {.lex_state = 12, .external_lex_state = 4}, [335] = {.lex_state = 12, .external_lex_state = 4}, - [336] = {.lex_state = 33, .external_lex_state = 2}, - [337] = {.lex_state = 12, .external_lex_state = 4}, - [338] = {.lex_state = 347, .external_lex_state = 4}, + [336] = {.lex_state = 12, .external_lex_state = 4}, + [337] = {.lex_state = 348, .external_lex_state = 4}, + [338] = {.lex_state = 11, .external_lex_state = 4}, [339] = {.lex_state = 11, .external_lex_state = 4}, - [340] = {.lex_state = 34, .external_lex_state = 2}, + [340] = {.lex_state = 11, .external_lex_state = 4}, [341] = {.lex_state = 11, .external_lex_state = 4}, [342] = {.lex_state = 348, .external_lex_state = 4}, - [343] = {.lex_state = 11, .external_lex_state = 4}, - [344] = {.lex_state = 34, .external_lex_state = 2}, + [343] = {.lex_state = 348, .external_lex_state = 4}, + [344] = {.lex_state = 348, .external_lex_state = 4}, [345] = {.lex_state = 34, .external_lex_state = 2}, - [346] = {.lex_state = 11, .external_lex_state = 4}, + [346] = {.lex_state = 34, .external_lex_state = 2}, [347] = {.lex_state = 34, .external_lex_state = 2}, - [348] = {.lex_state = 348, .external_lex_state = 4}, - [349] = {.lex_state = 11, .external_lex_state = 4}, - [350] = {.lex_state = 33, .external_lex_state = 2}, - [351] = {.lex_state = 11, .external_lex_state = 4}, - [352] = {.lex_state = 348, .external_lex_state = 4}, + [348] = {.lex_state = 33, .external_lex_state = 2}, + [349] = {.lex_state = 34, .external_lex_state = 2}, + [350] = {.lex_state = 11, .external_lex_state = 4}, + [351] = {.lex_state = 347, .external_lex_state = 4}, + [352] = {.lex_state = 11, .external_lex_state = 4}, [353] = {.lex_state = 348, .external_lex_state = 4}, - [354] = {.lex_state = 11, .external_lex_state = 4}, + [354] = {.lex_state = 348, .external_lex_state = 4}, [355] = {.lex_state = 348, .external_lex_state = 4}, - [356] = {.lex_state = 34, .external_lex_state = 2}, - [357] = {.lex_state = 11, .external_lex_state = 4}, - [358] = {.lex_state = 11, .external_lex_state = 4}, + [356] = {.lex_state = 348, .external_lex_state = 4}, + [357] = {.lex_state = 347, .external_lex_state = 4}, + [358] = {.lex_state = 348, .external_lex_state = 4}, [359] = {.lex_state = 348, .external_lex_state = 4}, - [360] = {.lex_state = 33, .external_lex_state = 2}, - [361] = {.lex_state = 34, .external_lex_state = 2}, - [362] = {.lex_state = 34, .external_lex_state = 2}, - [363] = {.lex_state = 11, .external_lex_state = 4}, - [364] = {.lex_state = 11, .external_lex_state = 4}, + [360] = {.lex_state = 348, .external_lex_state = 4}, + [361] = {.lex_state = 33, .external_lex_state = 2}, + [362] = {.lex_state = 348, .external_lex_state = 4}, + [363] = {.lex_state = 348, .external_lex_state = 4}, + [364] = {.lex_state = 348, .external_lex_state = 4}, [365] = {.lex_state = 11, .external_lex_state = 4}, - [366] = {.lex_state = 348, .external_lex_state = 4}, - [367] = {.lex_state = 348, .external_lex_state = 4}, - [368] = {.lex_state = 11, .external_lex_state = 4}, + [366] = {.lex_state = 11, .external_lex_state = 4}, + [367] = {.lex_state = 347, .external_lex_state = 4}, + [368] = {.lex_state = 348, .external_lex_state = 4}, [369] = {.lex_state = 348, .external_lex_state = 4}, [370] = {.lex_state = 11, .external_lex_state = 4}, - [371] = {.lex_state = 33, .external_lex_state = 2}, + [371] = {.lex_state = 11, .external_lex_state = 4}, [372] = {.lex_state = 11, .external_lex_state = 4}, - [373] = {.lex_state = 11, .external_lex_state = 4}, + [373] = {.lex_state = 348, .external_lex_state = 4}, [374] = {.lex_state = 348, .external_lex_state = 4}, - [375] = {.lex_state = 347, .external_lex_state = 4}, - [376] = {.lex_state = 11, .external_lex_state = 4}, + [375] = {.lex_state = 11, .external_lex_state = 4}, + [376] = {.lex_state = 347, .external_lex_state = 4}, [377] = {.lex_state = 11, .external_lex_state = 4}, - [378] = {.lex_state = 11, .external_lex_state = 4}, - [379] = {.lex_state = 11, .external_lex_state = 4}, - [380] = {.lex_state = 33, .external_lex_state = 2}, - [381] = {.lex_state = 347, .external_lex_state = 4}, - [382] = {.lex_state = 347, .external_lex_state = 4}, - [383] = {.lex_state = 33, .external_lex_state = 2}, - [384] = {.lex_state = 11, .external_lex_state = 4}, + [378] = {.lex_state = 348, .external_lex_state = 4}, + [379] = {.lex_state = 348, .external_lex_state = 4}, + [380] = {.lex_state = 348, .external_lex_state = 4}, + [381] = {.lex_state = 34, .external_lex_state = 2}, + [382] = {.lex_state = 11, .external_lex_state = 4}, + [383] = {.lex_state = 348, .external_lex_state = 4}, + [384] = {.lex_state = 33, .external_lex_state = 2}, [385] = {.lex_state = 11, .external_lex_state = 4}, - [386] = {.lex_state = 33, .external_lex_state = 2}, - [387] = {.lex_state = 34, .external_lex_state = 2}, - [388] = {.lex_state = 348, .external_lex_state = 4}, + [386] = {.lex_state = 11, .external_lex_state = 4}, + [387] = {.lex_state = 11, .external_lex_state = 4}, + [388] = {.lex_state = 11, .external_lex_state = 4}, [389] = {.lex_state = 11, .external_lex_state = 4}, - [390] = {.lex_state = 348, .external_lex_state = 4}, - [391] = {.lex_state = 348, .external_lex_state = 4}, + [390] = {.lex_state = 11, .external_lex_state = 4}, + [391] = {.lex_state = 34, .external_lex_state = 2}, [392] = {.lex_state = 11, .external_lex_state = 4}, - [393] = {.lex_state = 348, .external_lex_state = 4}, - [394] = {.lex_state = 348, .external_lex_state = 4}, - [395] = {.lex_state = 348, .external_lex_state = 4}, - [396] = {.lex_state = 11, .external_lex_state = 4}, - [397] = {.lex_state = 348, .external_lex_state = 4}, - [398] = {.lex_state = 33, .external_lex_state = 2}, + [393] = {.lex_state = 11, .external_lex_state = 4}, + [394] = {.lex_state = 11, .external_lex_state = 4}, + [395] = {.lex_state = 33, .external_lex_state = 2}, + [396] = {.lex_state = 34, .external_lex_state = 2}, + [397] = {.lex_state = 34, .external_lex_state = 2}, + [398] = {.lex_state = 11, .external_lex_state = 4}, [399] = {.lex_state = 348, .external_lex_state = 4}, - [400] = {.lex_state = 348, .external_lex_state = 4}, - [401] = {.lex_state = 348, .external_lex_state = 4}, + [400] = {.lex_state = 33, .external_lex_state = 2}, + [401] = {.lex_state = 33, .external_lex_state = 2}, [402] = {.lex_state = 348, .external_lex_state = 4}, - [403] = {.lex_state = 348, .external_lex_state = 4}, + [403] = {.lex_state = 11, .external_lex_state = 4}, [404] = {.lex_state = 348, .external_lex_state = 4}, - [405] = {.lex_state = 348, .external_lex_state = 4}, + [405] = {.lex_state = 33, .external_lex_state = 2}, [406] = {.lex_state = 348, .external_lex_state = 4}, [407] = {.lex_state = 34, .external_lex_state = 2}, [408] = {.lex_state = 347, .external_lex_state = 4}, [409] = {.lex_state = 347, .external_lex_state = 4}, - [410] = {.lex_state = 34, .external_lex_state = 2}, + [410] = {.lex_state = 347, .external_lex_state = 4}, [411] = {.lex_state = 34, .external_lex_state = 2}, [412] = {.lex_state = 34, .external_lex_state = 2}, [413] = {.lex_state = 347, .external_lex_state = 4}, [414] = {.lex_state = 347, .external_lex_state = 4}, - [415] = {.lex_state = 347, .external_lex_state = 4}, + [415] = {.lex_state = 34, .external_lex_state = 2}, [416] = {.lex_state = 34, .external_lex_state = 2}, - [417] = {.lex_state = 34, .external_lex_state = 2}, - [418] = {.lex_state = 347, .external_lex_state = 4}, + [417] = {.lex_state = 347, .external_lex_state = 4}, + [418] = {.lex_state = 34, .external_lex_state = 2}, [419] = {.lex_state = 34, .external_lex_state = 2}, [420] = {.lex_state = 34, .external_lex_state = 2}, - [421] = {.lex_state = 347, .external_lex_state = 4}, - [422] = {.lex_state = 347, .external_lex_state = 4}, + [421] = {.lex_state = 3, .external_lex_state = 3}, + [422] = {.lex_state = 34, .external_lex_state = 2}, [423] = {.lex_state = 34, .external_lex_state = 2}, [424] = {.lex_state = 34, .external_lex_state = 2}, - [425] = {.lex_state = 34, .external_lex_state = 2}, - [426] = {.lex_state = 34, .external_lex_state = 2}, - [427] = {.lex_state = 347, .external_lex_state = 4}, + [425] = {.lex_state = 3, .external_lex_state = 3}, + [426] = {.lex_state = 347, .external_lex_state = 4}, + [427] = {.lex_state = 34, .external_lex_state = 2}, [428] = {.lex_state = 347, .external_lex_state = 4}, [429] = {.lex_state = 34, .external_lex_state = 2}, - [430] = {.lex_state = 34, .external_lex_state = 2}, + [430] = {.lex_state = 347, .external_lex_state = 4}, [431] = {.lex_state = 34, .external_lex_state = 2}, - [432] = {.lex_state = 3, .external_lex_state = 3}, + [432] = {.lex_state = 347, .external_lex_state = 4}, [433] = {.lex_state = 347, .external_lex_state = 4}, [434] = {.lex_state = 347, .external_lex_state = 4}, - [435] = {.lex_state = 3, .external_lex_state = 3}, - [436] = {.lex_state = 347, .external_lex_state = 4}, - [437] = {.lex_state = 34, .external_lex_state = 2}, + [435] = {.lex_state = 347, .external_lex_state = 4}, + [436] = {.lex_state = 3, .external_lex_state = 3}, + [437] = {.lex_state = 347, .external_lex_state = 4}, [438] = {.lex_state = 34, .external_lex_state = 2}, - [439] = {.lex_state = 347, .external_lex_state = 4}, - [440] = {.lex_state = 34, .external_lex_state = 2}, + [439] = {.lex_state = 34, .external_lex_state = 2}, + [440] = {.lex_state = 347, .external_lex_state = 4}, [441] = {.lex_state = 34, .external_lex_state = 2}, [442] = {.lex_state = 347, .external_lex_state = 4}, - [443] = {.lex_state = 34, .external_lex_state = 2}, - [444] = {.lex_state = 347, .external_lex_state = 4}, + [443] = {.lex_state = 347, .external_lex_state = 4}, + [444] = {.lex_state = 34, .external_lex_state = 2}, [445] = {.lex_state = 347, .external_lex_state = 4}, - [446] = {.lex_state = 34, .external_lex_state = 2}, + [446] = {.lex_state = 347, .external_lex_state = 4}, [447] = {.lex_state = 34, .external_lex_state = 2}, - [448] = {.lex_state = 347, .external_lex_state = 4}, + [448] = {.lex_state = 34, .external_lex_state = 2}, [449] = {.lex_state = 347, .external_lex_state = 4}, [450] = {.lex_state = 347, .external_lex_state = 4}, - [451] = {.lex_state = 347, .external_lex_state = 4}, - [452] = {.lex_state = 34, .external_lex_state = 2}, - [453] = {.lex_state = 34, .external_lex_state = 2}, + [451] = {.lex_state = 34, .external_lex_state = 2}, + [452] = {.lex_state = 347, .external_lex_state = 4}, + [453] = {.lex_state = 347, .external_lex_state = 4}, [454] = {.lex_state = 347, .external_lex_state = 4}, - [455] = {.lex_state = 347, .external_lex_state = 4}, + [455] = {.lex_state = 34, .external_lex_state = 2}, [456] = {.lex_state = 34, .external_lex_state = 2}, [457] = {.lex_state = 3, .external_lex_state = 3}, - [458] = {.lex_state = 3, .external_lex_state = 3}, + [458] = {.lex_state = 34, .external_lex_state = 2}, [459] = {.lex_state = 34, .external_lex_state = 2}, - [460] = {.lex_state = 347, .external_lex_state = 4}, + [460] = {.lex_state = 34, .external_lex_state = 2}, [461] = {.lex_state = 34, .external_lex_state = 2}, [462] = {.lex_state = 347, .external_lex_state = 4}, [463] = {.lex_state = 34, .external_lex_state = 2}, - [464] = {.lex_state = 34, .external_lex_state = 5}, - [465] = {.lex_state = 34, .external_lex_state = 2}, + [464] = {.lex_state = 34, .external_lex_state = 2}, + [465] = {.lex_state = 34, .external_lex_state = 5}, [466] = {.lex_state = 34, .external_lex_state = 5}, [467] = {.lex_state = 34, .external_lex_state = 2}, - [468] = {.lex_state = 34, .external_lex_state = 2}, + [468] = {.lex_state = 34, .external_lex_state = 5}, [469] = {.lex_state = 34, .external_lex_state = 5}, [470] = {.lex_state = 34, .external_lex_state = 5}, - [471] = {.lex_state = 34, .external_lex_state = 5}, + [471] = {.lex_state = 34, .external_lex_state = 2}, [472] = {.lex_state = 34, .external_lex_state = 2}, [473] = {.lex_state = 34, .external_lex_state = 2}, [474] = {.lex_state = 34, .external_lex_state = 2}, - [475] = {.lex_state = 43, .external_lex_state = 2}, - [476] = {.lex_state = 34, .external_lex_state = 2}, + [475] = {.lex_state = 34, .external_lex_state = 2}, + [476] = {.lex_state = 43, .external_lex_state = 2}, [477] = {.lex_state = 34, .external_lex_state = 2}, [478] = {.lex_state = 34, .external_lex_state = 2}, [479] = {.lex_state = 34, .external_lex_state = 2}, @@ -21369,387 +21150,387 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [887] = {.lex_state = 349, .external_lex_state = 4}, [888] = {.lex_state = 349, .external_lex_state = 4}, [889] = {.lex_state = 349, .external_lex_state = 4}, - [890] = {.lex_state = 6, .external_lex_state = 4}, - [891] = {.lex_state = 6, .external_lex_state = 4}, + [890] = {.lex_state = 349, .external_lex_state = 4}, + [891] = {.lex_state = 349, .external_lex_state = 4}, [892] = {.lex_state = 6, .external_lex_state = 4}, [893] = {.lex_state = 349, .external_lex_state = 4}, [894] = {.lex_state = 349, .external_lex_state = 4}, [895] = {.lex_state = 6, .external_lex_state = 4}, - [896] = {.lex_state = 349, .external_lex_state = 4}, + [896] = {.lex_state = 6, .external_lex_state = 4}, [897] = {.lex_state = 349, .external_lex_state = 4}, [898] = {.lex_state = 6, .external_lex_state = 4}, - [899] = {.lex_state = 6, .external_lex_state = 4}, - [900] = {.lex_state = 349, .external_lex_state = 4}, - [901] = {.lex_state = 349, .external_lex_state = 4}, + [899] = {.lex_state = 349, .external_lex_state = 4}, + [900] = {.lex_state = 6, .external_lex_state = 4}, + [901] = {.lex_state = 6, .external_lex_state = 4}, [902] = {.lex_state = 20, .external_lex_state = 3}, [903] = {.lex_state = 20, .external_lex_state = 3}, - [904] = {.lex_state = 20, .external_lex_state = 3}, - [905] = {.lex_state = 20, .external_lex_state = 4}, + [904] = {.lex_state = 20, .external_lex_state = 4}, + [905] = {.lex_state = 20, .external_lex_state = 3}, [906] = {.lex_state = 22, .external_lex_state = 4}, - [907] = {.lex_state = 20, .external_lex_state = 3}, - [908] = {.lex_state = 20, .external_lex_state = 4}, - [909] = {.lex_state = 22, .external_lex_state = 4}, + [907] = {.lex_state = 22, .external_lex_state = 4}, + [908] = {.lex_state = 22, .external_lex_state = 4}, + [909] = {.lex_state = 20, .external_lex_state = 3}, [910] = {.lex_state = 20, .external_lex_state = 4}, - [911] = {.lex_state = 20, .external_lex_state = 4}, + [911] = {.lex_state = 20, .external_lex_state = 3}, [912] = {.lex_state = 20, .external_lex_state = 4}, [913] = {.lex_state = 20, .external_lex_state = 3}, [914] = {.lex_state = 20, .external_lex_state = 4}, - [915] = {.lex_state = 22, .external_lex_state = 4}, - [916] = {.lex_state = 20, .external_lex_state = 3}, + [915] = {.lex_state = 20, .external_lex_state = 4}, + [916] = {.lex_state = 20, .external_lex_state = 4}, [917] = {.lex_state = 20, .external_lex_state = 4}, - [918] = {.lex_state = 20, .external_lex_state = 3}, - [919] = {.lex_state = 20, .external_lex_state = 3}, - [920] = {.lex_state = 23, .external_lex_state = 3}, - [921] = {.lex_state = 23, .external_lex_state = 3}, + [918] = {.lex_state = 23, .external_lex_state = 3}, + [919] = {.lex_state = 23, .external_lex_state = 3}, + [920] = {.lex_state = 20, .external_lex_state = 3}, + [921] = {.lex_state = 20, .external_lex_state = 3}, [922] = {.lex_state = 20, .external_lex_state = 3}, [923] = {.lex_state = 20, .external_lex_state = 3}, [924] = {.lex_state = 20, .external_lex_state = 4}, [925] = {.lex_state = 20, .external_lex_state = 4}, - [926] = {.lex_state = 20, .external_lex_state = 3}, + [926] = {.lex_state = 20, .external_lex_state = 4}, [927] = {.lex_state = 20, .external_lex_state = 4}, - [928] = {.lex_state = 20, .external_lex_state = 3}, - [929] = {.lex_state = 40, .external_lex_state = 2}, - [930] = {.lex_state = 20, .external_lex_state = 4}, - [931] = {.lex_state = 20, .external_lex_state = 4}, - [932] = {.lex_state = 20, .external_lex_state = 4}, + [928] = {.lex_state = 20, .external_lex_state = 4}, + [929] = {.lex_state = 20, .external_lex_state = 3}, + [930] = {.lex_state = 40, .external_lex_state = 2}, + [931] = {.lex_state = 20, .external_lex_state = 3}, + [932] = {.lex_state = 20, .external_lex_state = 3}, [933] = {.lex_state = 20, .external_lex_state = 4}, [934] = {.lex_state = 20, .external_lex_state = 4}, - [935] = {.lex_state = 20, .external_lex_state = 3}, - [936] = {.lex_state = 20, .external_lex_state = 3}, + [935] = {.lex_state = 20, .external_lex_state = 4}, + [936] = {.lex_state = 22, .external_lex_state = 3}, [937] = {.lex_state = 20, .external_lex_state = 3}, [938] = {.lex_state = 40, .external_lex_state = 5}, [939] = {.lex_state = 20, .external_lex_state = 3}, - [940] = {.lex_state = 22, .external_lex_state = 3}, - [941] = {.lex_state = 22, .external_lex_state = 3}, + [940] = {.lex_state = 20, .external_lex_state = 3}, + [941] = {.lex_state = 40, .external_lex_state = 5}, [942] = {.lex_state = 22, .external_lex_state = 3}, - [943] = {.lex_state = 39, .external_lex_state = 2}, - [944] = {.lex_state = 356, .external_lex_state = 2}, + [943] = {.lex_state = 22, .external_lex_state = 3}, + [944] = {.lex_state = 20, .external_lex_state = 3}, [945] = {.lex_state = 20, .external_lex_state = 3}, - [946] = {.lex_state = 40, .external_lex_state = 5}, - [947] = {.lex_state = 20, .external_lex_state = 3}, - [948] = {.lex_state = 38, .external_lex_state = 2}, - [949] = {.lex_state = 38, .external_lex_state = 2}, - [950] = {.lex_state = 40, .external_lex_state = 2}, - [951] = {.lex_state = 356, .external_lex_state = 5}, + [946] = {.lex_state = 356, .external_lex_state = 2}, + [947] = {.lex_state = 39, .external_lex_state = 2}, + [948] = {.lex_state = 20, .external_lex_state = 3}, + [949] = {.lex_state = 355, .external_lex_state = 2}, + [950] = {.lex_state = 42, .external_lex_state = 5}, + [951] = {.lex_state = 20, .external_lex_state = 3}, [952] = {.lex_state = 40, .external_lex_state = 2}, - [953] = {.lex_state = 20, .external_lex_state = 3}, - [954] = {.lex_state = 20, .external_lex_state = 3}, - [955] = {.lex_state = 20, .external_lex_state = 3}, + [953] = {.lex_state = 38, .external_lex_state = 2}, + [954] = {.lex_state = 42, .external_lex_state = 2}, + [955] = {.lex_state = 39, .external_lex_state = 5}, [956] = {.lex_state = 20, .external_lex_state = 3}, - [957] = {.lex_state = 42, .external_lex_state = 2}, + [957] = {.lex_state = 20, .external_lex_state = 3}, [958] = {.lex_state = 20, .external_lex_state = 3}, - [959] = {.lex_state = 356, .external_lex_state = 5}, - [960] = {.lex_state = 20, .external_lex_state = 3}, - [961] = {.lex_state = 355, .external_lex_state = 2}, - [962] = {.lex_state = 42, .external_lex_state = 5}, + [959] = {.lex_state = 39, .external_lex_state = 5}, + [960] = {.lex_state = 356, .external_lex_state = 5}, + [961] = {.lex_state = 40, .external_lex_state = 2}, + [962] = {.lex_state = 20, .external_lex_state = 3}, [963] = {.lex_state = 20, .external_lex_state = 3}, [964] = {.lex_state = 20, .external_lex_state = 3}, [965] = {.lex_state = 20, .external_lex_state = 3}, [966] = {.lex_state = 20, .external_lex_state = 3}, - [967] = {.lex_state = 20, .external_lex_state = 3}, - [968] = {.lex_state = 39, .external_lex_state = 5}, - [969] = {.lex_state = 42, .external_lex_state = 5}, - [970] = {.lex_state = 39, .external_lex_state = 5}, - [971] = {.lex_state = 38, .external_lex_state = 5}, - [972] = {.lex_state = 355, .external_lex_state = 5}, + [967] = {.lex_state = 42, .external_lex_state = 5}, + [968] = {.lex_state = 356, .external_lex_state = 5}, + [969] = {.lex_state = 20, .external_lex_state = 3}, + [970] = {.lex_state = 38, .external_lex_state = 2}, + [971] = {.lex_state = 354, .external_lex_state = 5}, + [972] = {.lex_state = 37, .external_lex_state = 2}, [973] = {.lex_state = 38, .external_lex_state = 5}, - [974] = {.lex_state = 38, .external_lex_state = 2}, - [975] = {.lex_state = 38, .external_lex_state = 2}, - [976] = {.lex_state = 38, .external_lex_state = 5}, - [977] = {.lex_state = 356, .external_lex_state = 2}, - [978] = {.lex_state = 38, .external_lex_state = 5}, - [979] = {.lex_state = 42, .external_lex_state = 2}, - [980] = {.lex_state = 354, .external_lex_state = 2}, - [981] = {.lex_state = 354, .external_lex_state = 5}, - [982] = {.lex_state = 41, .external_lex_state = 5}, - [983] = {.lex_state = 38, .external_lex_state = 5}, - [984] = {.lex_state = 42, .external_lex_state = 2}, - [985] = {.lex_state = 356, .external_lex_state = 2}, - [986] = {.lex_state = 38, .external_lex_state = 5}, - [987] = {.lex_state = 38, .external_lex_state = 5}, - [988] = {.lex_state = 41, .external_lex_state = 2}, - [989] = {.lex_state = 39, .external_lex_state = 2}, - [990] = {.lex_state = 42, .external_lex_state = 2}, - [991] = {.lex_state = 38, .external_lex_state = 5}, - [992] = {.lex_state = 352, .external_lex_state = 2}, - [993] = {.lex_state = 38, .external_lex_state = 5}, - [994] = {.lex_state = 352, .external_lex_state = 2}, + [974] = {.lex_state = 38, .external_lex_state = 5}, + [975] = {.lex_state = 38, .external_lex_state = 5}, + [976] = {.lex_state = 38, .external_lex_state = 2}, + [977] = {.lex_state = 354, .external_lex_state = 5}, + [978] = {.lex_state = 42, .external_lex_state = 2}, + [979] = {.lex_state = 38, .external_lex_state = 5}, + [980] = {.lex_state = 356, .external_lex_state = 2}, + [981] = {.lex_state = 38, .external_lex_state = 5}, + [982] = {.lex_state = 352, .external_lex_state = 2}, + [983] = {.lex_state = 38, .external_lex_state = 2}, + [984] = {.lex_state = 352, .external_lex_state = 2}, + [985] = {.lex_state = 38, .external_lex_state = 2}, + [986] = {.lex_state = 41, .external_lex_state = 5}, + [987] = {.lex_state = 39, .external_lex_state = 2}, + [988] = {.lex_state = 38, .external_lex_state = 5}, + [989] = {.lex_state = 41, .external_lex_state = 2}, + [990] = {.lex_state = 37, .external_lex_state = 2}, + [991] = {.lex_state = 354, .external_lex_state = 2}, + [992] = {.lex_state = 42, .external_lex_state = 2}, + [993] = {.lex_state = 355, .external_lex_state = 5}, + [994] = {.lex_state = 38, .external_lex_state = 2}, [995] = {.lex_state = 38, .external_lex_state = 5}, - [996] = {.lex_state = 42, .external_lex_state = 2}, - [997] = {.lex_state = 38, .external_lex_state = 5}, - [998] = {.lex_state = 39, .external_lex_state = 2}, + [996] = {.lex_state = 41, .external_lex_state = 5}, + [997] = {.lex_state = 355, .external_lex_state = 5}, + [998] = {.lex_state = 38, .external_lex_state = 5}, [999] = {.lex_state = 38, .external_lex_state = 5}, - [1000] = {.lex_state = 354, .external_lex_state = 5}, - [1001] = {.lex_state = 37, .external_lex_state = 2}, - [1002] = {.lex_state = 37, .external_lex_state = 2}, - [1003] = {.lex_state = 38, .external_lex_state = 5}, + [1000] = {.lex_state = 38, .external_lex_state = 5}, + [1001] = {.lex_state = 38, .external_lex_state = 5}, + [1002] = {.lex_state = 356, .external_lex_state = 2}, + [1003] = {.lex_state = 38, .external_lex_state = 2}, [1004] = {.lex_state = 38, .external_lex_state = 5}, [1005] = {.lex_state = 38, .external_lex_state = 5}, - [1006] = {.lex_state = 42, .external_lex_state = 2}, - [1007] = {.lex_state = 38, .external_lex_state = 2}, + [1006] = {.lex_state = 38, .external_lex_state = 5}, + [1007] = {.lex_state = 39, .external_lex_state = 2}, [1008] = {.lex_state = 38, .external_lex_state = 5}, - [1009] = {.lex_state = 38, .external_lex_state = 2}, - [1010] = {.lex_state = 38, .external_lex_state = 2}, - [1011] = {.lex_state = 41, .external_lex_state = 5}, + [1009] = {.lex_state = 38, .external_lex_state = 5}, + [1010] = {.lex_state = 38, .external_lex_state = 5}, + [1011] = {.lex_state = 42, .external_lex_state = 2}, [1012] = {.lex_state = 38, .external_lex_state = 5}, - [1013] = {.lex_state = 38, .external_lex_state = 5}, + [1013] = {.lex_state = 42, .external_lex_state = 2}, [1014] = {.lex_state = 38, .external_lex_state = 5}, - [1015] = {.lex_state = 355, .external_lex_state = 5}, - [1016] = {.lex_state = 38, .external_lex_state = 5}, + [1015] = {.lex_state = 38, .external_lex_state = 5}, + [1016] = {.lex_state = 42, .external_lex_state = 2}, [1017] = {.lex_state = 38, .external_lex_state = 5}, [1018] = {.lex_state = 38, .external_lex_state = 5}, [1019] = {.lex_state = 38, .external_lex_state = 5}, [1020] = {.lex_state = 38, .external_lex_state = 2}, - [1021] = {.lex_state = 37, .external_lex_state = 5}, - [1022] = {.lex_state = 352, .external_lex_state = 5}, + [1021] = {.lex_state = 38, .external_lex_state = 2}, + [1022] = {.lex_state = 38, .external_lex_state = 2}, [1023] = {.lex_state = 38, .external_lex_state = 2}, - [1024] = {.lex_state = 352, .external_lex_state = 5}, + [1024] = {.lex_state = 37, .external_lex_state = 5}, [1025] = {.lex_state = 38, .external_lex_state = 2}, [1026] = {.lex_state = 38, .external_lex_state = 2}, - [1027] = {.lex_state = 38, .external_lex_state = 2}, + [1027] = {.lex_state = 352, .external_lex_state = 5}, [1028] = {.lex_state = 38, .external_lex_state = 2}, [1029] = {.lex_state = 38, .external_lex_state = 2}, [1030] = {.lex_state = 38, .external_lex_state = 2}, [1031] = {.lex_state = 38, .external_lex_state = 2}, [1032] = {.lex_state = 38, .external_lex_state = 2}, [1033] = {.lex_state = 38, .external_lex_state = 2}, - [1034] = {.lex_state = 37, .external_lex_state = 5}, + [1034] = {.lex_state = 38, .external_lex_state = 2}, [1035] = {.lex_state = 38, .external_lex_state = 2}, [1036] = {.lex_state = 38, .external_lex_state = 2}, - [1037] = {.lex_state = 352, .external_lex_state = 5}, + [1037] = {.lex_state = 352, .external_lex_state = 2}, [1038] = {.lex_state = 38, .external_lex_state = 2}, - [1039] = {.lex_state = 38, .external_lex_state = 2}, - [1040] = {.lex_state = 41, .external_lex_state = 2}, - [1041] = {.lex_state = 38, .external_lex_state = 2}, - [1042] = {.lex_state = 352, .external_lex_state = 5}, + [1039] = {.lex_state = 352, .external_lex_state = 2}, + [1040] = {.lex_state = 38, .external_lex_state = 2}, + [1041] = {.lex_state = 37, .external_lex_state = 5}, + [1042] = {.lex_state = 352, .external_lex_state = 2}, [1043] = {.lex_state = 38, .external_lex_state = 2}, - [1044] = {.lex_state = 38, .external_lex_state = 2}, - [1045] = {.lex_state = 352, .external_lex_state = 5}, - [1046] = {.lex_state = 352, .external_lex_state = 2}, - [1047] = {.lex_state = 38, .external_lex_state = 2}, - [1048] = {.lex_state = 38, .external_lex_state = 2}, - [1049] = {.lex_state = 38, .external_lex_state = 2}, - [1050] = {.lex_state = 41, .external_lex_state = 2}, + [1044] = {.lex_state = 352, .external_lex_state = 5}, + [1045] = {.lex_state = 41, .external_lex_state = 2}, + [1046] = {.lex_state = 37, .external_lex_state = 5}, + [1047] = {.lex_state = 351, .external_lex_state = 2}, + [1048] = {.lex_state = 351, .external_lex_state = 2}, + [1049] = {.lex_state = 37, .external_lex_state = 5}, + [1050] = {.lex_state = 352, .external_lex_state = 5}, [1051] = {.lex_state = 38, .external_lex_state = 2}, [1052] = {.lex_state = 38, .external_lex_state = 2}, - [1053] = {.lex_state = 38, .external_lex_state = 2}, - [1054] = {.lex_state = 352, .external_lex_state = 5}, + [1053] = {.lex_state = 37, .external_lex_state = 5}, + [1054] = {.lex_state = 38, .external_lex_state = 2}, [1055] = {.lex_state = 38, .external_lex_state = 2}, [1056] = {.lex_state = 38, .external_lex_state = 2}, [1057] = {.lex_state = 38, .external_lex_state = 2}, [1058] = {.lex_state = 38, .external_lex_state = 2}, [1059] = {.lex_state = 38, .external_lex_state = 2}, - [1060] = {.lex_state = 37, .external_lex_state = 5}, - [1061] = {.lex_state = 38, .external_lex_state = 2}, + [1060] = {.lex_state = 38, .external_lex_state = 2}, + [1061] = {.lex_state = 352, .external_lex_state = 5}, [1062] = {.lex_state = 38, .external_lex_state = 2}, [1063] = {.lex_state = 38, .external_lex_state = 2}, [1064] = {.lex_state = 38, .external_lex_state = 2}, [1065] = {.lex_state = 38, .external_lex_state = 2}, [1066] = {.lex_state = 38, .external_lex_state = 2}, [1067] = {.lex_state = 38, .external_lex_state = 2}, - [1068] = {.lex_state = 352, .external_lex_state = 5}, + [1068] = {.lex_state = 355, .external_lex_state = 2}, [1069] = {.lex_state = 38, .external_lex_state = 2}, [1070] = {.lex_state = 38, .external_lex_state = 2}, [1071] = {.lex_state = 38, .external_lex_state = 2}, - [1072] = {.lex_state = 37, .external_lex_state = 5}, - [1073] = {.lex_state = 37, .external_lex_state = 5}, + [1072] = {.lex_state = 38, .external_lex_state = 2}, + [1073] = {.lex_state = 38, .external_lex_state = 2}, [1074] = {.lex_state = 38, .external_lex_state = 2}, [1075] = {.lex_state = 38, .external_lex_state = 2}, [1076] = {.lex_state = 38, .external_lex_state = 2}, [1077] = {.lex_state = 38, .external_lex_state = 2}, - [1078] = {.lex_state = 38, .external_lex_state = 2}, - [1079] = {.lex_state = 38, .external_lex_state = 2}, + [1078] = {.lex_state = 353, .external_lex_state = 5}, + [1079] = {.lex_state = 37, .external_lex_state = 5}, [1080] = {.lex_state = 38, .external_lex_state = 2}, - [1081] = {.lex_state = 354, .external_lex_state = 2}, - [1082] = {.lex_state = 354, .external_lex_state = 2}, + [1081] = {.lex_state = 38, .external_lex_state = 2}, + [1082] = {.lex_state = 353, .external_lex_state = 5}, [1083] = {.lex_state = 38, .external_lex_state = 2}, - [1084] = {.lex_state = 352, .external_lex_state = 5}, + [1084] = {.lex_state = 38, .external_lex_state = 2}, [1085] = {.lex_state = 38, .external_lex_state = 2}, - [1086] = {.lex_state = 38, .external_lex_state = 2}, - [1087] = {.lex_state = 38, .external_lex_state = 2}, + [1086] = {.lex_state = 37, .external_lex_state = 2}, + [1087] = {.lex_state = 37, .external_lex_state = 2}, [1088] = {.lex_state = 38, .external_lex_state = 2}, [1089] = {.lex_state = 38, .external_lex_state = 2}, - [1090] = {.lex_state = 38, .external_lex_state = 2}, - [1091] = {.lex_state = 38, .external_lex_state = 2}, + [1090] = {.lex_state = 37, .external_lex_state = 5}, + [1091] = {.lex_state = 37, .external_lex_state = 5}, [1092] = {.lex_state = 38, .external_lex_state = 2}, [1093] = {.lex_state = 38, .external_lex_state = 2}, [1094] = {.lex_state = 38, .external_lex_state = 2}, - [1095] = {.lex_state = 38, .external_lex_state = 2}, - [1096] = {.lex_state = 38, .external_lex_state = 2}, + [1095] = {.lex_state = 352, .external_lex_state = 2}, + [1096] = {.lex_state = 37, .external_lex_state = 2}, [1097] = {.lex_state = 38, .external_lex_state = 2}, [1098] = {.lex_state = 38, .external_lex_state = 2}, - [1099] = {.lex_state = 38, .external_lex_state = 2}, - [1100] = {.lex_state = 37, .external_lex_state = 5}, + [1099] = {.lex_state = 352, .external_lex_state = 5}, + [1100] = {.lex_state = 355, .external_lex_state = 2}, [1101] = {.lex_state = 37, .external_lex_state = 5}, - [1102] = {.lex_state = 37, .external_lex_state = 5}, - [1103] = {.lex_state = 41, .external_lex_state = 2}, - [1104] = {.lex_state = 353, .external_lex_state = 2}, - [1105] = {.lex_state = 38, .external_lex_state = 2}, + [1102] = {.lex_state = 38, .external_lex_state = 2}, + [1103] = {.lex_state = 38, .external_lex_state = 2}, + [1104] = {.lex_state = 352, .external_lex_state = 5}, + [1105] = {.lex_state = 354, .external_lex_state = 2}, [1106] = {.lex_state = 38, .external_lex_state = 2}, - [1107] = {.lex_state = 38, .external_lex_state = 2}, - [1108] = {.lex_state = 41, .external_lex_state = 2}, - [1109] = {.lex_state = 38, .external_lex_state = 2}, + [1107] = {.lex_state = 37, .external_lex_state = 5}, + [1108] = {.lex_state = 37, .external_lex_state = 5}, + [1109] = {.lex_state = 37, .external_lex_state = 5}, [1110] = {.lex_state = 38, .external_lex_state = 2}, - [1111] = {.lex_state = 37, .external_lex_state = 5}, - [1112] = {.lex_state = 37, .external_lex_state = 5}, - [1113] = {.lex_state = 37, .external_lex_state = 5}, + [1111] = {.lex_state = 38, .external_lex_state = 2}, + [1112] = {.lex_state = 38, .external_lex_state = 2}, + [1113] = {.lex_state = 38, .external_lex_state = 2}, [1114] = {.lex_state = 38, .external_lex_state = 2}, - [1115] = {.lex_state = 352, .external_lex_state = 2}, - [1116] = {.lex_state = 37, .external_lex_state = 5}, - [1117] = {.lex_state = 41, .external_lex_state = 2}, - [1118] = {.lex_state = 352, .external_lex_state = 5}, - [1119] = {.lex_state = 37, .external_lex_state = 5}, - [1120] = {.lex_state = 38, .external_lex_state = 2}, - [1121] = {.lex_state = 352, .external_lex_state = 5}, - [1122] = {.lex_state = 37, .external_lex_state = 5}, + [1115] = {.lex_state = 352, .external_lex_state = 5}, + [1116] = {.lex_state = 38, .external_lex_state = 2}, + [1117] = {.lex_state = 38, .external_lex_state = 2}, + [1118] = {.lex_state = 38, .external_lex_state = 2}, + [1119] = {.lex_state = 38, .external_lex_state = 2}, + [1120] = {.lex_state = 41, .external_lex_state = 2}, + [1121] = {.lex_state = 38, .external_lex_state = 2}, + [1122] = {.lex_state = 38, .external_lex_state = 2}, [1123] = {.lex_state = 38, .external_lex_state = 2}, - [1124] = {.lex_state = 38, .external_lex_state = 2}, + [1124] = {.lex_state = 37, .external_lex_state = 5}, [1125] = {.lex_state = 38, .external_lex_state = 2}, [1126] = {.lex_state = 38, .external_lex_state = 2}, - [1127] = {.lex_state = 355, .external_lex_state = 2}, + [1127] = {.lex_state = 38, .external_lex_state = 2}, [1128] = {.lex_state = 38, .external_lex_state = 2}, - [1129] = {.lex_state = 38, .external_lex_state = 2}, + [1129] = {.lex_state = 37, .external_lex_state = 5}, [1130] = {.lex_state = 38, .external_lex_state = 2}, - [1131] = {.lex_state = 352, .external_lex_state = 5}, + [1131] = {.lex_state = 38, .external_lex_state = 2}, [1132] = {.lex_state = 38, .external_lex_state = 2}, - [1133] = {.lex_state = 352, .external_lex_state = 5}, + [1133] = {.lex_state = 38, .external_lex_state = 2}, [1134] = {.lex_state = 38, .external_lex_state = 2}, [1135] = {.lex_state = 38, .external_lex_state = 2}, - [1136] = {.lex_state = 38, .external_lex_state = 2}, - [1137] = {.lex_state = 38, .external_lex_state = 2}, + [1136] = {.lex_state = 352, .external_lex_state = 5}, + [1137] = {.lex_state = 352, .external_lex_state = 5}, [1138] = {.lex_state = 38, .external_lex_state = 2}, - [1139] = {.lex_state = 38, .external_lex_state = 2}, + [1139] = {.lex_state = 352, .external_lex_state = 5}, [1140] = {.lex_state = 38, .external_lex_state = 2}, - [1141] = {.lex_state = 38, .external_lex_state = 2}, + [1141] = {.lex_state = 37, .external_lex_state = 5}, [1142] = {.lex_state = 38, .external_lex_state = 2}, [1143] = {.lex_state = 38, .external_lex_state = 2}, [1144] = {.lex_state = 38, .external_lex_state = 2}, - [1145] = {.lex_state = 353, .external_lex_state = 5}, - [1146] = {.lex_state = 38, .external_lex_state = 2}, + [1145] = {.lex_state = 352, .external_lex_state = 5}, + [1146] = {.lex_state = 37, .external_lex_state = 5}, [1147] = {.lex_state = 38, .external_lex_state = 2}, - [1148] = {.lex_state = 38, .external_lex_state = 2}, + [1148] = {.lex_state = 352, .external_lex_state = 5}, [1149] = {.lex_state = 38, .external_lex_state = 2}, - [1150] = {.lex_state = 38, .external_lex_state = 2}, - [1151] = {.lex_state = 38, .external_lex_state = 2}, + [1150] = {.lex_state = 352, .external_lex_state = 5}, + [1151] = {.lex_state = 37, .external_lex_state = 5}, [1152] = {.lex_state = 38, .external_lex_state = 2}, [1153] = {.lex_state = 38, .external_lex_state = 2}, [1154] = {.lex_state = 38, .external_lex_state = 2}, [1155] = {.lex_state = 38, .external_lex_state = 2}, - [1156] = {.lex_state = 354, .external_lex_state = 2}, + [1156] = {.lex_state = 37, .external_lex_state = 5}, [1157] = {.lex_state = 38, .external_lex_state = 2}, [1158] = {.lex_state = 38, .external_lex_state = 2}, - [1159] = {.lex_state = 38, .external_lex_state = 2}, - [1160] = {.lex_state = 38, .external_lex_state = 2}, - [1161] = {.lex_state = 38, .external_lex_state = 2}, - [1162] = {.lex_state = 38, .external_lex_state = 2}, - [1163] = {.lex_state = 352, .external_lex_state = 5}, - [1164] = {.lex_state = 352, .external_lex_state = 5}, - [1165] = {.lex_state = 38, .external_lex_state = 2}, - [1166] = {.lex_state = 38, .external_lex_state = 2}, - [1167] = {.lex_state = 352, .external_lex_state = 5}, - [1168] = {.lex_state = 352, .external_lex_state = 5}, + [1159] = {.lex_state = 353, .external_lex_state = 2}, + [1160] = {.lex_state = 354, .external_lex_state = 2}, + [1161] = {.lex_state = 37, .external_lex_state = 5}, + [1162] = {.lex_state = 37, .external_lex_state = 5}, + [1163] = {.lex_state = 41, .external_lex_state = 2}, + [1164] = {.lex_state = 37, .external_lex_state = 5}, + [1165] = {.lex_state = 37, .external_lex_state = 5}, + [1166] = {.lex_state = 354, .external_lex_state = 2}, + [1167] = {.lex_state = 38, .external_lex_state = 2}, + [1168] = {.lex_state = 38, .external_lex_state = 2}, [1169] = {.lex_state = 38, .external_lex_state = 2}, [1170] = {.lex_state = 38, .external_lex_state = 2}, [1171] = {.lex_state = 38, .external_lex_state = 2}, [1172] = {.lex_state = 38, .external_lex_state = 2}, - [1173] = {.lex_state = 38, .external_lex_state = 2}, + [1173] = {.lex_state = 352, .external_lex_state = 5}, [1174] = {.lex_state = 352, .external_lex_state = 5}, [1175] = {.lex_state = 38, .external_lex_state = 2}, - [1176] = {.lex_state = 38, .external_lex_state = 2}, - [1177] = {.lex_state = 38, .external_lex_state = 2}, - [1178] = {.lex_state = 37, .external_lex_state = 5}, - [1179] = {.lex_state = 38, .external_lex_state = 2}, - [1180] = {.lex_state = 353, .external_lex_state = 5}, + [1176] = {.lex_state = 41, .external_lex_state = 2}, + [1177] = {.lex_state = 352, .external_lex_state = 5}, + [1178] = {.lex_state = 352, .external_lex_state = 5}, + [1179] = {.lex_state = 352, .external_lex_state = 5}, + [1180] = {.lex_state = 352, .external_lex_state = 2}, [1181] = {.lex_state = 38, .external_lex_state = 2}, [1182] = {.lex_state = 38, .external_lex_state = 2}, - [1183] = {.lex_state = 38, .external_lex_state = 2}, - [1184] = {.lex_state = 38, .external_lex_state = 2}, + [1183] = {.lex_state = 41, .external_lex_state = 2}, + [1184] = {.lex_state = 352, .external_lex_state = 5}, [1185] = {.lex_state = 38, .external_lex_state = 2}, - [1186] = {.lex_state = 38, .external_lex_state = 2}, + [1186] = {.lex_state = 37, .external_lex_state = 5}, [1187] = {.lex_state = 38, .external_lex_state = 2}, [1188] = {.lex_state = 38, .external_lex_state = 2}, [1189] = {.lex_state = 38, .external_lex_state = 2}, [1190] = {.lex_state = 38, .external_lex_state = 2}, - [1191] = {.lex_state = 37, .external_lex_state = 5}, - [1192] = {.lex_state = 352, .external_lex_state = 5}, - [1193] = {.lex_state = 38, .external_lex_state = 2}, - [1194] = {.lex_state = 352, .external_lex_state = 2}, - [1195] = {.lex_state = 352, .external_lex_state = 2}, - [1196] = {.lex_state = 351, .external_lex_state = 2}, - [1197] = {.lex_state = 351, .external_lex_state = 2}, - [1198] = {.lex_state = 37, .external_lex_state = 5}, - [1199] = {.lex_state = 352, .external_lex_state = 5}, + [1191] = {.lex_state = 38, .external_lex_state = 2}, + [1192] = {.lex_state = 38, .external_lex_state = 2}, + [1193] = {.lex_state = 352, .external_lex_state = 5}, + [1194] = {.lex_state = 38, .external_lex_state = 2}, + [1195] = {.lex_state = 38, .external_lex_state = 2}, + [1196] = {.lex_state = 38, .external_lex_state = 2}, + [1197] = {.lex_state = 38, .external_lex_state = 2}, + [1198] = {.lex_state = 38, .external_lex_state = 2}, + [1199] = {.lex_state = 38, .external_lex_state = 2}, [1200] = {.lex_state = 38, .external_lex_state = 2}, - [1201] = {.lex_state = 38, .external_lex_state = 2}, - [1202] = {.lex_state = 352, .external_lex_state = 5}, + [1201] = {.lex_state = 352, .external_lex_state = 5}, + [1202] = {.lex_state = 38, .external_lex_state = 2}, [1203] = {.lex_state = 38, .external_lex_state = 2}, - [1204] = {.lex_state = 37, .external_lex_state = 5}, - [1205] = {.lex_state = 38, .external_lex_state = 2}, + [1204] = {.lex_state = 38, .external_lex_state = 2}, + [1205] = {.lex_state = 352, .external_lex_state = 5}, [1206] = {.lex_state = 38, .external_lex_state = 2}, - [1207] = {.lex_state = 37, .external_lex_state = 5}, - [1208] = {.lex_state = 37, .external_lex_state = 5}, + [1207] = {.lex_state = 38, .external_lex_state = 2}, + [1208] = {.lex_state = 38, .external_lex_state = 2}, [1209] = {.lex_state = 38, .external_lex_state = 2}, [1210] = {.lex_state = 38, .external_lex_state = 2}, [1211] = {.lex_state = 38, .external_lex_state = 2}, [1212] = {.lex_state = 38, .external_lex_state = 2}, [1213] = {.lex_state = 38, .external_lex_state = 2}, - [1214] = {.lex_state = 38, .external_lex_state = 2}, + [1214] = {.lex_state = 354, .external_lex_state = 2}, [1215] = {.lex_state = 38, .external_lex_state = 2}, - [1216] = {.lex_state = 38, .external_lex_state = 2}, - [1217] = {.lex_state = 38, .external_lex_state = 2}, - [1218] = {.lex_state = 38, .external_lex_state = 2}, - [1219] = {.lex_state = 38, .external_lex_state = 2}, - [1220] = {.lex_state = 38, .external_lex_state = 2}, - [1221] = {.lex_state = 352, .external_lex_state = 5}, - [1222] = {.lex_state = 38, .external_lex_state = 2}, - [1223] = {.lex_state = 38, .external_lex_state = 2}, - [1224] = {.lex_state = 38, .external_lex_state = 2}, - [1225] = {.lex_state = 38, .external_lex_state = 2}, - [1226] = {.lex_state = 38, .external_lex_state = 2}, - [1227] = {.lex_state = 352, .external_lex_state = 2}, - [1228] = {.lex_state = 38, .external_lex_state = 2}, - [1229] = {.lex_state = 38, .external_lex_state = 2}, - [1230] = {.lex_state = 38, .external_lex_state = 2}, + [1216] = {.lex_state = 354, .external_lex_state = 2}, + [1217] = {.lex_state = 352, .external_lex_state = 5}, + [1218] = {.lex_state = 352, .external_lex_state = 2}, + [1219] = {.lex_state = 37, .external_lex_state = 2}, + [1220] = {.lex_state = 352, .external_lex_state = 2}, + [1221] = {.lex_state = 352, .external_lex_state = 2}, + [1222] = {.lex_state = 37, .external_lex_state = 2}, + [1223] = {.lex_state = 352, .external_lex_state = 2}, + [1224] = {.lex_state = 37, .external_lex_state = 2}, + [1225] = {.lex_state = 37, .external_lex_state = 2}, + [1226] = {.lex_state = 352, .external_lex_state = 2}, + [1227] = {.lex_state = 37, .external_lex_state = 2}, + [1228] = {.lex_state = 37, .external_lex_state = 2}, + [1229] = {.lex_state = 37, .external_lex_state = 2}, + [1230] = {.lex_state = 37, .external_lex_state = 2}, [1231] = {.lex_state = 37, .external_lex_state = 2}, - [1232] = {.lex_state = 354, .external_lex_state = 2}, - [1233] = {.lex_state = 37, .external_lex_state = 5}, - [1234] = {.lex_state = 37, .external_lex_state = 2}, - [1235] = {.lex_state = 37, .external_lex_state = 2}, - [1236] = {.lex_state = 38, .external_lex_state = 2}, - [1237] = {.lex_state = 354, .external_lex_state = 2}, - [1238] = {.lex_state = 37, .external_lex_state = 5}, - [1239] = {.lex_state = 37, .external_lex_state = 5}, - [1240] = {.lex_state = 38, .external_lex_state = 2}, - [1241] = {.lex_state = 38, .external_lex_state = 2}, - [1242] = {.lex_state = 38, .external_lex_state = 2}, - [1243] = {.lex_state = 352, .external_lex_state = 5}, - [1244] = {.lex_state = 352, .external_lex_state = 5}, - [1245] = {.lex_state = 38, .external_lex_state = 2}, - [1246] = {.lex_state = 38, .external_lex_state = 2}, - [1247] = {.lex_state = 38, .external_lex_state = 2}, - [1248] = {.lex_state = 355, .external_lex_state = 2}, - [1249] = {.lex_state = 38, .external_lex_state = 2}, - [1250] = {.lex_state = 38, .external_lex_state = 2}, - [1251] = {.lex_state = 38, .external_lex_state = 2}, - [1252] = {.lex_state = 38, .external_lex_state = 2}, - [1253] = {.lex_state = 38, .external_lex_state = 2}, - [1254] = {.lex_state = 38, .external_lex_state = 2}, - [1255] = {.lex_state = 37, .external_lex_state = 2}, - [1256] = {.lex_state = 352, .external_lex_state = 2}, - [1257] = {.lex_state = 352, .external_lex_state = 2}, - [1258] = {.lex_state = 352, .external_lex_state = 2}, + [1232] = {.lex_state = 352, .external_lex_state = 2}, + [1233] = {.lex_state = 37, .external_lex_state = 2}, + [1234] = {.lex_state = 352, .external_lex_state = 2}, + [1235] = {.lex_state = 352, .external_lex_state = 2}, + [1236] = {.lex_state = 37, .external_lex_state = 2}, + [1237] = {.lex_state = 37, .external_lex_state = 2}, + [1238] = {.lex_state = 37, .external_lex_state = 2}, + [1239] = {.lex_state = 37, .external_lex_state = 2}, + [1240] = {.lex_state = 37, .external_lex_state = 2}, + [1241] = {.lex_state = 37, .external_lex_state = 2}, + [1242] = {.lex_state = 352, .external_lex_state = 2}, + [1243] = {.lex_state = 37, .external_lex_state = 2}, + [1244] = {.lex_state = 37, .external_lex_state = 2}, + [1245] = {.lex_state = 352, .external_lex_state = 2}, + [1246] = {.lex_state = 352, .external_lex_state = 2}, + [1247] = {.lex_state = 37, .external_lex_state = 2}, + [1248] = {.lex_state = 352, .external_lex_state = 2}, + [1249] = {.lex_state = 352, .external_lex_state = 2}, + [1250] = {.lex_state = 352, .external_lex_state = 2}, + [1251] = {.lex_state = 352, .external_lex_state = 2}, + [1252] = {.lex_state = 352, .external_lex_state = 2}, + [1253] = {.lex_state = 37, .external_lex_state = 2}, + [1254] = {.lex_state = 37, .external_lex_state = 2}, + [1255] = {.lex_state = 352, .external_lex_state = 2}, + [1256] = {.lex_state = 351, .external_lex_state = 5}, + [1257] = {.lex_state = 37, .external_lex_state = 2}, + [1258] = {.lex_state = 37, .external_lex_state = 2}, [1259] = {.lex_state = 352, .external_lex_state = 2}, [1260] = {.lex_state = 352, .external_lex_state = 2}, - [1261] = {.lex_state = 37, .external_lex_state = 2}, - [1262] = {.lex_state = 352, .external_lex_state = 2}, + [1261] = {.lex_state = 353, .external_lex_state = 2}, + [1262] = {.lex_state = 351, .external_lex_state = 5}, [1263] = {.lex_state = 37, .external_lex_state = 2}, [1264] = {.lex_state = 352, .external_lex_state = 2}, - [1265] = {.lex_state = 352, .external_lex_state = 2}, - [1266] = {.lex_state = 352, .external_lex_state = 2}, - [1267] = {.lex_state = 352, .external_lex_state = 2}, + [1265] = {.lex_state = 37, .external_lex_state = 2}, + [1266] = {.lex_state = 351, .external_lex_state = 5}, + [1267] = {.lex_state = 351, .external_lex_state = 5}, [1268] = {.lex_state = 352, .external_lex_state = 2}, [1269] = {.lex_state = 352, .external_lex_state = 2}, - [1270] = {.lex_state = 37, .external_lex_state = 2}, + [1270] = {.lex_state = 352, .external_lex_state = 2}, [1271] = {.lex_state = 37, .external_lex_state = 2}, [1272] = {.lex_state = 352, .external_lex_state = 2}, [1273] = {.lex_state = 352, .external_lex_state = 2}, @@ -21758,342 +21539,342 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1276] = {.lex_state = 37, .external_lex_state = 2}, [1277] = {.lex_state = 37, .external_lex_state = 2}, [1278] = {.lex_state = 37, .external_lex_state = 2}, - [1279] = {.lex_state = 352, .external_lex_state = 2}, - [1280] = {.lex_state = 352, .external_lex_state = 2}, - [1281] = {.lex_state = 37, .external_lex_state = 2}, + [1279] = {.lex_state = 37, .external_lex_state = 2}, + [1280] = {.lex_state = 37, .external_lex_state = 2}, + [1281] = {.lex_state = 352, .external_lex_state = 2}, [1282] = {.lex_state = 37, .external_lex_state = 2}, - [1283] = {.lex_state = 37, .external_lex_state = 2}, - [1284] = {.lex_state = 352, .external_lex_state = 2}, - [1285] = {.lex_state = 352, .external_lex_state = 2}, + [1283] = {.lex_state = 352, .external_lex_state = 2}, + [1284] = {.lex_state = 37, .external_lex_state = 2}, + [1285] = {.lex_state = 37, .external_lex_state = 2}, [1286] = {.lex_state = 352, .external_lex_state = 2}, [1287] = {.lex_state = 352, .external_lex_state = 2}, [1288] = {.lex_state = 352, .external_lex_state = 2}, - [1289] = {.lex_state = 352, .external_lex_state = 2}, - [1290] = {.lex_state = 352, .external_lex_state = 2}, - [1291] = {.lex_state = 352, .external_lex_state = 2}, + [1289] = {.lex_state = 37, .external_lex_state = 2}, + [1290] = {.lex_state = 37, .external_lex_state = 2}, + [1291] = {.lex_state = 37, .external_lex_state = 2}, [1292] = {.lex_state = 37, .external_lex_state = 2}, - [1293] = {.lex_state = 352, .external_lex_state = 2}, + [1293] = {.lex_state = 37, .external_lex_state = 2}, [1294] = {.lex_state = 37, .external_lex_state = 2}, - [1295] = {.lex_state = 352, .external_lex_state = 2}, + [1295] = {.lex_state = 37, .external_lex_state = 2}, [1296] = {.lex_state = 352, .external_lex_state = 2}, [1297] = {.lex_state = 352, .external_lex_state = 2}, - [1298] = {.lex_state = 37, .external_lex_state = 2}, + [1298] = {.lex_state = 352, .external_lex_state = 2}, [1299] = {.lex_state = 352, .external_lex_state = 2}, [1300] = {.lex_state = 352, .external_lex_state = 2}, [1301] = {.lex_state = 37, .external_lex_state = 2}, - [1302] = {.lex_state = 352, .external_lex_state = 2}, + [1302] = {.lex_state = 37, .external_lex_state = 2}, [1303] = {.lex_state = 352, .external_lex_state = 2}, - [1304] = {.lex_state = 352, .external_lex_state = 2}, + [1304] = {.lex_state = 351, .external_lex_state = 5}, [1305] = {.lex_state = 37, .external_lex_state = 2}, - [1306] = {.lex_state = 37, .external_lex_state = 2}, + [1306] = {.lex_state = 352, .external_lex_state = 2}, [1307] = {.lex_state = 352, .external_lex_state = 2}, [1308] = {.lex_state = 352, .external_lex_state = 2}, [1309] = {.lex_state = 352, .external_lex_state = 2}, - [1310] = {.lex_state = 352, .external_lex_state = 2}, - [1311] = {.lex_state = 352, .external_lex_state = 2}, + [1310] = {.lex_state = 37, .external_lex_state = 2}, + [1311] = {.lex_state = 37, .external_lex_state = 2}, [1312] = {.lex_state = 351, .external_lex_state = 5}, [1313] = {.lex_state = 37, .external_lex_state = 2}, [1314] = {.lex_state = 352, .external_lex_state = 2}, - [1315] = {.lex_state = 37, .external_lex_state = 2}, + [1315] = {.lex_state = 352, .external_lex_state = 2}, [1316] = {.lex_state = 37, .external_lex_state = 2}, [1317] = {.lex_state = 352, .external_lex_state = 2}, - [1318] = {.lex_state = 37, .external_lex_state = 2}, + [1318] = {.lex_state = 352, .external_lex_state = 2}, [1319] = {.lex_state = 352, .external_lex_state = 2}, - [1320] = {.lex_state = 352, .external_lex_state = 2}, - [1321] = {.lex_state = 37, .external_lex_state = 2}, + [1320] = {.lex_state = 37, .external_lex_state = 2}, + [1321] = {.lex_state = 352, .external_lex_state = 2}, [1322] = {.lex_state = 352, .external_lex_state = 2}, [1323] = {.lex_state = 352, .external_lex_state = 2}, - [1324] = {.lex_state = 37, .external_lex_state = 2}, - [1325] = {.lex_state = 352, .external_lex_state = 2}, - [1326] = {.lex_state = 352, .external_lex_state = 2}, - [1327] = {.lex_state = 352, .external_lex_state = 2}, - [1328] = {.lex_state = 37, .external_lex_state = 2}, - [1329] = {.lex_state = 352, .external_lex_state = 2}, - [1330] = {.lex_state = 352, .external_lex_state = 2}, + [1324] = {.lex_state = 352, .external_lex_state = 2}, + [1325] = {.lex_state = 37, .external_lex_state = 2}, + [1326] = {.lex_state = 37, .external_lex_state = 2}, + [1327] = {.lex_state = 37, .external_lex_state = 2}, + [1328] = {.lex_state = 352, .external_lex_state = 2}, + [1329] = {.lex_state = 37, .external_lex_state = 2}, + [1330] = {.lex_state = 37, .external_lex_state = 2}, [1331] = {.lex_state = 352, .external_lex_state = 2}, [1332] = {.lex_state = 37, .external_lex_state = 2}, - [1333] = {.lex_state = 352, .external_lex_state = 2}, + [1333] = {.lex_state = 37, .external_lex_state = 2}, [1334] = {.lex_state = 37, .external_lex_state = 2}, - [1335] = {.lex_state = 352, .external_lex_state = 2}, - [1336] = {.lex_state = 352, .external_lex_state = 2}, - [1337] = {.lex_state = 352, .external_lex_state = 2}, + [1335] = {.lex_state = 37, .external_lex_state = 2}, + [1336] = {.lex_state = 37, .external_lex_state = 2}, + [1337] = {.lex_state = 37, .external_lex_state = 2}, [1338] = {.lex_state = 352, .external_lex_state = 2}, - [1339] = {.lex_state = 37, .external_lex_state = 2}, + [1339] = {.lex_state = 352, .external_lex_state = 2}, [1340] = {.lex_state = 352, .external_lex_state = 2}, - [1341] = {.lex_state = 37, .external_lex_state = 2}, + [1341] = {.lex_state = 352, .external_lex_state = 2}, [1342] = {.lex_state = 352, .external_lex_state = 2}, - [1343] = {.lex_state = 352, .external_lex_state = 2}, - [1344] = {.lex_state = 352, .external_lex_state = 2}, - [1345] = {.lex_state = 352, .external_lex_state = 2}, + [1343] = {.lex_state = 37, .external_lex_state = 2}, + [1344] = {.lex_state = 351, .external_lex_state = 5}, + [1345] = {.lex_state = 37, .external_lex_state = 2}, [1346] = {.lex_state = 352, .external_lex_state = 2}, [1347] = {.lex_state = 352, .external_lex_state = 2}, [1348] = {.lex_state = 352, .external_lex_state = 2}, [1349] = {.lex_state = 352, .external_lex_state = 2}, - [1350] = {.lex_state = 352, .external_lex_state = 2}, - [1351] = {.lex_state = 352, .external_lex_state = 2}, + [1350] = {.lex_state = 37, .external_lex_state = 2}, + [1351] = {.lex_state = 351, .external_lex_state = 5}, [1352] = {.lex_state = 37, .external_lex_state = 2}, - [1353] = {.lex_state = 351, .external_lex_state = 5}, - [1354] = {.lex_state = 352, .external_lex_state = 2}, + [1353] = {.lex_state = 353, .external_lex_state = 2}, + [1354] = {.lex_state = 37, .external_lex_state = 2}, [1355] = {.lex_state = 37, .external_lex_state = 2}, [1356] = {.lex_state = 352, .external_lex_state = 2}, [1357] = {.lex_state = 352, .external_lex_state = 2}, [1358] = {.lex_state = 352, .external_lex_state = 2}, [1359] = {.lex_state = 37, .external_lex_state = 2}, [1360] = {.lex_state = 352, .external_lex_state = 2}, - [1361] = {.lex_state = 352, .external_lex_state = 2}, + [1361] = {.lex_state = 37, .external_lex_state = 2}, [1362] = {.lex_state = 352, .external_lex_state = 2}, - [1363] = {.lex_state = 37, .external_lex_state = 2}, - [1364] = {.lex_state = 352, .external_lex_state = 2}, - [1365] = {.lex_state = 352, .external_lex_state = 2}, + [1363] = {.lex_state = 352, .external_lex_state = 2}, + [1364] = {.lex_state = 37, .external_lex_state = 2}, + [1365] = {.lex_state = 37, .external_lex_state = 2}, [1366] = {.lex_state = 37, .external_lex_state = 2}, - [1367] = {.lex_state = 352, .external_lex_state = 2}, - [1368] = {.lex_state = 352, .external_lex_state = 2}, - [1369] = {.lex_state = 37, .external_lex_state = 2}, - [1370] = {.lex_state = 351, .external_lex_state = 5}, + [1367] = {.lex_state = 37, .external_lex_state = 2}, + [1368] = {.lex_state = 37, .external_lex_state = 2}, + [1369] = {.lex_state = 352, .external_lex_state = 2}, + [1370] = {.lex_state = 37, .external_lex_state = 2}, [1371] = {.lex_state = 37, .external_lex_state = 2}, [1372] = {.lex_state = 352, .external_lex_state = 2}, [1373] = {.lex_state = 37, .external_lex_state = 2}, [1374] = {.lex_state = 37, .external_lex_state = 2}, - [1375] = {.lex_state = 37, .external_lex_state = 2}, - [1376] = {.lex_state = 37, .external_lex_state = 2}, - [1377] = {.lex_state = 351, .external_lex_state = 5}, - [1378] = {.lex_state = 352, .external_lex_state = 2}, - [1379] = {.lex_state = 37, .external_lex_state = 2}, - [1380] = {.lex_state = 37, .external_lex_state = 2}, - [1381] = {.lex_state = 37, .external_lex_state = 2}, + [1375] = {.lex_state = 352, .external_lex_state = 2}, + [1376] = {.lex_state = 353, .external_lex_state = 2}, + [1377] = {.lex_state = 37, .external_lex_state = 2}, + [1378] = {.lex_state = 37, .external_lex_state = 2}, + [1379] = {.lex_state = 352, .external_lex_state = 2}, + [1380] = {.lex_state = 352, .external_lex_state = 2}, + [1381] = {.lex_state = 351, .external_lex_state = 2}, [1382] = {.lex_state = 352, .external_lex_state = 2}, [1383] = {.lex_state = 352, .external_lex_state = 2}, - [1384] = {.lex_state = 351, .external_lex_state = 5}, - [1385] = {.lex_state = 37, .external_lex_state = 2}, - [1386] = {.lex_state = 353, .external_lex_state = 2}, - [1387] = {.lex_state = 37, .external_lex_state = 2}, - [1388] = {.lex_state = 37, .external_lex_state = 2}, - [1389] = {.lex_state = 37, .external_lex_state = 2}, - [1390] = {.lex_state = 352, .external_lex_state = 2}, - [1391] = {.lex_state = 351, .external_lex_state = 5}, + [1384] = {.lex_state = 352, .external_lex_state = 2}, + [1385] = {.lex_state = 352, .external_lex_state = 2}, + [1386] = {.lex_state = 352, .external_lex_state = 2}, + [1387] = {.lex_state = 352, .external_lex_state = 2}, + [1388] = {.lex_state = 352, .external_lex_state = 2}, + [1389] = {.lex_state = 352, .external_lex_state = 2}, + [1390] = {.lex_state = 37, .external_lex_state = 2}, + [1391] = {.lex_state = 352, .external_lex_state = 2}, [1392] = {.lex_state = 352, .external_lex_state = 2}, [1393] = {.lex_state = 352, .external_lex_state = 2}, - [1394] = {.lex_state = 37, .external_lex_state = 2}, - [1395] = {.lex_state = 352, .external_lex_state = 2}, - [1396] = {.lex_state = 351, .external_lex_state = 5}, + [1394] = {.lex_state = 352, .external_lex_state = 2}, + [1395] = {.lex_state = 37, .external_lex_state = 2}, + [1396] = {.lex_state = 352, .external_lex_state = 2}, [1397] = {.lex_state = 352, .external_lex_state = 2}, - [1398] = {.lex_state = 37, .external_lex_state = 2}, + [1398] = {.lex_state = 352, .external_lex_state = 2}, [1399] = {.lex_state = 352, .external_lex_state = 2}, - [1400] = {.lex_state = 352, .external_lex_state = 2}, - [1401] = {.lex_state = 352, .external_lex_state = 2}, + [1400] = {.lex_state = 37, .external_lex_state = 2}, + [1401] = {.lex_state = 353, .external_lex_state = 2}, [1402] = {.lex_state = 352, .external_lex_state = 2}, - [1403] = {.lex_state = 352, .external_lex_state = 2}, + [1403] = {.lex_state = 37, .external_lex_state = 2}, [1404] = {.lex_state = 352, .external_lex_state = 2}, [1405] = {.lex_state = 352, .external_lex_state = 2}, [1406] = {.lex_state = 352, .external_lex_state = 2}, - [1407] = {.lex_state = 353, .external_lex_state = 2}, - [1408] = {.lex_state = 352, .external_lex_state = 2}, - [1409] = {.lex_state = 352, .external_lex_state = 2}, + [1407] = {.lex_state = 352, .external_lex_state = 2}, + [1408] = {.lex_state = 37, .external_lex_state = 2}, + [1409] = {.lex_state = 37, .external_lex_state = 2}, [1410] = {.lex_state = 37, .external_lex_state = 2}, - [1411] = {.lex_state = 37, .external_lex_state = 2}, - [1412] = {.lex_state = 37, .external_lex_state = 2}, - [1413] = {.lex_state = 37, .external_lex_state = 2}, - [1414] = {.lex_state = 352, .external_lex_state = 2}, - [1415] = {.lex_state = 352, .external_lex_state = 2}, + [1411] = {.lex_state = 351, .external_lex_state = 5}, + [1412] = {.lex_state = 351, .external_lex_state = 5}, + [1413] = {.lex_state = 351, .external_lex_state = 5}, + [1414] = {.lex_state = 37, .external_lex_state = 2}, + [1415] = {.lex_state = 351, .external_lex_state = 5}, [1416] = {.lex_state = 37, .external_lex_state = 2}, - [1417] = {.lex_state = 353, .external_lex_state = 2}, + [1417] = {.lex_state = 37, .external_lex_state = 2}, [1418] = {.lex_state = 37, .external_lex_state = 2}, [1419] = {.lex_state = 37, .external_lex_state = 2}, [1420] = {.lex_state = 37, .external_lex_state = 2}, [1421] = {.lex_state = 37, .external_lex_state = 2}, - [1422] = {.lex_state = 352, .external_lex_state = 2}, - [1423] = {.lex_state = 37, .external_lex_state = 2}, - [1424] = {.lex_state = 351, .external_lex_state = 5}, - [1425] = {.lex_state = 351, .external_lex_state = 5}, + [1422] = {.lex_state = 37, .external_lex_state = 2}, + [1423] = {.lex_state = 352, .external_lex_state = 2}, + [1424] = {.lex_state = 352, .external_lex_state = 2}, + [1425] = {.lex_state = 352, .external_lex_state = 2}, [1426] = {.lex_state = 352, .external_lex_state = 2}, - [1427] = {.lex_state = 37, .external_lex_state = 2}, - [1428] = {.lex_state = 351, .external_lex_state = 5}, + [1427] = {.lex_state = 352, .external_lex_state = 2}, + [1428] = {.lex_state = 37, .external_lex_state = 2}, [1429] = {.lex_state = 352, .external_lex_state = 2}, - [1430] = {.lex_state = 37, .external_lex_state = 2}, - [1431] = {.lex_state = 352, .external_lex_state = 2}, - [1432] = {.lex_state = 352, .external_lex_state = 2}, - [1433] = {.lex_state = 351, .external_lex_state = 2}, - [1434] = {.lex_state = 352, .external_lex_state = 2}, - [1435] = {.lex_state = 351, .external_lex_state = 2}, + [1430] = {.lex_state = 352, .external_lex_state = 2}, + [1431] = {.lex_state = 37, .external_lex_state = 2}, + [1432] = {.lex_state = 37, .external_lex_state = 2}, + [1433] = {.lex_state = 352, .external_lex_state = 2}, + [1434] = {.lex_state = 351, .external_lex_state = 5}, + [1435] = {.lex_state = 352, .external_lex_state = 2}, [1436] = {.lex_state = 352, .external_lex_state = 2}, [1437] = {.lex_state = 37, .external_lex_state = 2}, [1438] = {.lex_state = 352, .external_lex_state = 2}, - [1439] = {.lex_state = 37, .external_lex_state = 2}, + [1439] = {.lex_state = 352, .external_lex_state = 2}, [1440] = {.lex_state = 351, .external_lex_state = 5}, [1441] = {.lex_state = 352, .external_lex_state = 2}, [1442] = {.lex_state = 352, .external_lex_state = 2}, [1443] = {.lex_state = 352, .external_lex_state = 2}, [1444] = {.lex_state = 352, .external_lex_state = 2}, - [1445] = {.lex_state = 352, .external_lex_state = 2}, - [1446] = {.lex_state = 37, .external_lex_state = 2}, + [1445] = {.lex_state = 37, .external_lex_state = 2}, + [1446] = {.lex_state = 352, .external_lex_state = 2}, [1447] = {.lex_state = 352, .external_lex_state = 2}, [1448] = {.lex_state = 352, .external_lex_state = 2}, [1449] = {.lex_state = 352, .external_lex_state = 2}, [1450] = {.lex_state = 37, .external_lex_state = 2}, - [1451] = {.lex_state = 37, .external_lex_state = 2}, - [1452] = {.lex_state = 37, .external_lex_state = 2}, + [1451] = {.lex_state = 351, .external_lex_state = 2}, + [1452] = {.lex_state = 351, .external_lex_state = 2}, [1453] = {.lex_state = 352, .external_lex_state = 2}, [1454] = {.lex_state = 37, .external_lex_state = 2}, - [1455] = {.lex_state = 37, .external_lex_state = 2}, - [1456] = {.lex_state = 37, .external_lex_state = 2}, - [1457] = {.lex_state = 352, .external_lex_state = 2}, - [1458] = {.lex_state = 352, .external_lex_state = 2}, - [1459] = {.lex_state = 37, .external_lex_state = 2}, + [1455] = {.lex_state = 351, .external_lex_state = 5}, + [1456] = {.lex_state = 353, .external_lex_state = 2}, + [1457] = {.lex_state = 37, .external_lex_state = 2}, + [1458] = {.lex_state = 37, .external_lex_state = 2}, + [1459] = {.lex_state = 351, .external_lex_state = 5}, [1460] = {.lex_state = 37, .external_lex_state = 2}, - [1461] = {.lex_state = 37, .external_lex_state = 2}, + [1461] = {.lex_state = 352, .external_lex_state = 2}, [1462] = {.lex_state = 37, .external_lex_state = 2}, [1463] = {.lex_state = 37, .external_lex_state = 2}, [1464] = {.lex_state = 37, .external_lex_state = 2}, - [1465] = {.lex_state = 37, .external_lex_state = 2}, + [1465] = {.lex_state = 352, .external_lex_state = 2}, [1466] = {.lex_state = 37, .external_lex_state = 2}, - [1467] = {.lex_state = 37, .external_lex_state = 2}, + [1467] = {.lex_state = 352, .external_lex_state = 2}, [1468] = {.lex_state = 352, .external_lex_state = 2}, [1469] = {.lex_state = 37, .external_lex_state = 2}, [1470] = {.lex_state = 37, .external_lex_state = 2}, - [1471] = {.lex_state = 352, .external_lex_state = 2}, + [1471] = {.lex_state = 37, .external_lex_state = 2}, [1472] = {.lex_state = 37, .external_lex_state = 2}, - [1473] = {.lex_state = 353, .external_lex_state = 2}, + [1473] = {.lex_state = 37, .external_lex_state = 2}, [1474] = {.lex_state = 37, .external_lex_state = 2}, [1475] = {.lex_state = 37, .external_lex_state = 2}, - [1476] = {.lex_state = 37, .external_lex_state = 2}, - [1477] = {.lex_state = 37, .external_lex_state = 2}, + [1476] = {.lex_state = 352, .external_lex_state = 2}, + [1477] = {.lex_state = 352, .external_lex_state = 2}, [1478] = {.lex_state = 37, .external_lex_state = 2}, [1479] = {.lex_state = 37, .external_lex_state = 2}, - [1480] = {.lex_state = 37, .external_lex_state = 2}, - [1481] = {.lex_state = 37, .external_lex_state = 2}, - [1482] = {.lex_state = 37, .external_lex_state = 2}, - [1483] = {.lex_state = 37, .external_lex_state = 2}, + [1480] = {.lex_state = 352, .external_lex_state = 2}, + [1481] = {.lex_state = 352, .external_lex_state = 2}, + [1482] = {.lex_state = 352, .external_lex_state = 2}, + [1483] = {.lex_state = 352, .external_lex_state = 2}, [1484] = {.lex_state = 37, .external_lex_state = 2}, [1485] = {.lex_state = 37, .external_lex_state = 2}, - [1486] = {.lex_state = 37, .external_lex_state = 2}, + [1486] = {.lex_state = 351, .external_lex_state = 5}, [1487] = {.lex_state = 37, .external_lex_state = 2}, [1488] = {.lex_state = 37, .external_lex_state = 2}, [1489] = {.lex_state = 37, .external_lex_state = 2}, [1490] = {.lex_state = 37, .external_lex_state = 2}, [1491] = {.lex_state = 37, .external_lex_state = 2}, [1492] = {.lex_state = 37, .external_lex_state = 2}, - [1493] = {.lex_state = 37, .external_lex_state = 2}, - [1494] = {.lex_state = 37, .external_lex_state = 2}, - [1495] = {.lex_state = 37, .external_lex_state = 2}, - [1496] = {.lex_state = 37, .external_lex_state = 2}, + [1493] = {.lex_state = 352, .external_lex_state = 2}, + [1494] = {.lex_state = 352, .external_lex_state = 2}, + [1495] = {.lex_state = 352, .external_lex_state = 2}, + [1496] = {.lex_state = 352, .external_lex_state = 2}, [1497] = {.lex_state = 37, .external_lex_state = 2}, - [1498] = {.lex_state = 37, .external_lex_state = 2}, - [1499] = {.lex_state = 37, .external_lex_state = 2}, - [1500] = {.lex_state = 37, .external_lex_state = 2}, - [1501] = {.lex_state = 37, .external_lex_state = 2}, - [1502] = {.lex_state = 37, .external_lex_state = 2}, - [1503] = {.lex_state = 37, .external_lex_state = 2}, - [1504] = {.lex_state = 37, .external_lex_state = 2}, - [1505] = {.lex_state = 37, .external_lex_state = 2}, - [1506] = {.lex_state = 37, .external_lex_state = 2}, - [1507] = {.lex_state = 37, .external_lex_state = 2}, - [1508] = {.lex_state = 352, .external_lex_state = 2}, - [1509] = {.lex_state = 37, .external_lex_state = 2}, - [1510] = {.lex_state = 352, .external_lex_state = 2}, - [1511] = {.lex_state = 352, .external_lex_state = 2}, - [1512] = {.lex_state = 352, .external_lex_state = 2}, - [1513] = {.lex_state = 352, .external_lex_state = 2}, - [1514] = {.lex_state = 352, .external_lex_state = 2}, - [1515] = {.lex_state = 351, .external_lex_state = 5}, - [1516] = {.lex_state = 37, .external_lex_state = 2}, - [1517] = {.lex_state = 37, .external_lex_state = 2}, - [1518] = {.lex_state = 37, .external_lex_state = 2}, - [1519] = {.lex_state = 352, .external_lex_state = 2}, - [1520] = {.lex_state = 352, .external_lex_state = 2}, - [1521] = {.lex_state = 37, .external_lex_state = 2}, - [1522] = {.lex_state = 37, .external_lex_state = 2}, - [1523] = {.lex_state = 37, .external_lex_state = 2}, - [1524] = {.lex_state = 37, .external_lex_state = 2}, - [1525] = {.lex_state = 351, .external_lex_state = 5}, - [1526] = {.lex_state = 37, .external_lex_state = 2}, + [1498] = {.lex_state = 351, .external_lex_state = 5}, + [1499] = {.lex_state = 351, .external_lex_state = 5}, + [1500] = {.lex_state = 351, .external_lex_state = 5}, + [1501] = {.lex_state = 351, .external_lex_state = 5}, + [1502] = {.lex_state = 351, .external_lex_state = 5}, + [1503] = {.lex_state = 351, .external_lex_state = 5}, + [1504] = {.lex_state = 351, .external_lex_state = 2}, + [1505] = {.lex_state = 351, .external_lex_state = 2}, + [1506] = {.lex_state = 351, .external_lex_state = 2}, + [1507] = {.lex_state = 351, .external_lex_state = 2}, + [1508] = {.lex_state = 351, .external_lex_state = 2}, + [1509] = {.lex_state = 351, .external_lex_state = 2}, + [1510] = {.lex_state = 351, .external_lex_state = 2}, + [1511] = {.lex_state = 351, .external_lex_state = 2}, + [1512] = {.lex_state = 351, .external_lex_state = 2}, + [1513] = {.lex_state = 351, .external_lex_state = 2}, + [1514] = {.lex_state = 351, .external_lex_state = 2}, + [1515] = {.lex_state = 351, .external_lex_state = 2}, + [1516] = {.lex_state = 351, .external_lex_state = 2}, + [1517] = {.lex_state = 351, .external_lex_state = 2}, + [1518] = {.lex_state = 351, .external_lex_state = 2}, + [1519] = {.lex_state = 351, .external_lex_state = 2}, + [1520] = {.lex_state = 351, .external_lex_state = 2}, + [1521] = {.lex_state = 351, .external_lex_state = 2}, + [1522] = {.lex_state = 351, .external_lex_state = 2}, + [1523] = {.lex_state = 351, .external_lex_state = 2}, + [1524] = {.lex_state = 351, .external_lex_state = 2}, + [1525] = {.lex_state = 351, .external_lex_state = 2}, + [1526] = {.lex_state = 351, .external_lex_state = 2}, [1527] = {.lex_state = 351, .external_lex_state = 2}, - [1528] = {.lex_state = 352, .external_lex_state = 2}, - [1529] = {.lex_state = 37, .external_lex_state = 2}, - [1530] = {.lex_state = 37, .external_lex_state = 2}, - [1531] = {.lex_state = 37, .external_lex_state = 2}, - [1532] = {.lex_state = 37, .external_lex_state = 2}, - [1533] = {.lex_state = 37, .external_lex_state = 2}, - [1534] = {.lex_state = 37, .external_lex_state = 2}, - [1535] = {.lex_state = 37, .external_lex_state = 2}, - [1536] = {.lex_state = 352, .external_lex_state = 2}, - [1537] = {.lex_state = 352, .external_lex_state = 2}, - [1538] = {.lex_state = 352, .external_lex_state = 2}, - [1539] = {.lex_state = 352, .external_lex_state = 2}, - [1540] = {.lex_state = 37, .external_lex_state = 2}, - [1541] = {.lex_state = 37, .external_lex_state = 2}, - [1542] = {.lex_state = 37, .external_lex_state = 2}, - [1543] = {.lex_state = 37, .external_lex_state = 2}, - [1544] = {.lex_state = 37, .external_lex_state = 2}, - [1545] = {.lex_state = 351, .external_lex_state = 5}, - [1546] = {.lex_state = 352, .external_lex_state = 2}, - [1547] = {.lex_state = 351, .external_lex_state = 5}, - [1548] = {.lex_state = 351, .external_lex_state = 5}, - [1549] = {.lex_state = 351, .external_lex_state = 5}, - [1550] = {.lex_state = 37, .external_lex_state = 2}, - [1551] = {.lex_state = 351, .external_lex_state = 5}, - [1552] = {.lex_state = 37, .external_lex_state = 2}, - [1553] = {.lex_state = 352, .external_lex_state = 2}, - [1554] = {.lex_state = 37, .external_lex_state = 2}, - [1555] = {.lex_state = 352, .external_lex_state = 2}, - [1556] = {.lex_state = 37, .external_lex_state = 2}, - [1557] = {.lex_state = 352, .external_lex_state = 2}, - [1558] = {.lex_state = 37, .external_lex_state = 2}, - [1559] = {.lex_state = 37, .external_lex_state = 2}, - [1560] = {.lex_state = 351, .external_lex_state = 5}, - [1561] = {.lex_state = 37, .external_lex_state = 2}, - [1562] = {.lex_state = 352, .external_lex_state = 2}, - [1563] = {.lex_state = 352, .external_lex_state = 2}, - [1564] = {.lex_state = 352, .external_lex_state = 2}, - [1565] = {.lex_state = 37, .external_lex_state = 2}, - [1566] = {.lex_state = 352, .external_lex_state = 2}, - [1567] = {.lex_state = 37, .external_lex_state = 2}, - [1568] = {.lex_state = 37, .external_lex_state = 2}, - [1569] = {.lex_state = 37, .external_lex_state = 2}, - [1570] = {.lex_state = 352, .external_lex_state = 2}, - [1571] = {.lex_state = 352, .external_lex_state = 2}, - [1572] = {.lex_state = 352, .external_lex_state = 2}, - [1573] = {.lex_state = 352, .external_lex_state = 2}, - [1574] = {.lex_state = 351, .external_lex_state = 5}, - [1575] = {.lex_state = 352, .external_lex_state = 2}, - [1576] = {.lex_state = 37, .external_lex_state = 2}, - [1577] = {.lex_state = 351, .external_lex_state = 5}, - [1578] = {.lex_state = 352, .external_lex_state = 2}, - [1579] = {.lex_state = 351, .external_lex_state = 5}, - [1580] = {.lex_state = 352, .external_lex_state = 2}, - [1581] = {.lex_state = 352, .external_lex_state = 2}, - [1582] = {.lex_state = 352, .external_lex_state = 2}, - [1583] = {.lex_state = 352, .external_lex_state = 2}, - [1584] = {.lex_state = 352, .external_lex_state = 2}, - [1585] = {.lex_state = 37, .external_lex_state = 2}, - [1586] = {.lex_state = 352, .external_lex_state = 2}, - [1587] = {.lex_state = 352, .external_lex_state = 2}, - [1588] = {.lex_state = 37, .external_lex_state = 2}, - [1589] = {.lex_state = 37, .external_lex_state = 2}, - [1590] = {.lex_state = 37, .external_lex_state = 2}, - [1591] = {.lex_state = 37, .external_lex_state = 2}, - [1592] = {.lex_state = 37, .external_lex_state = 2}, - [1593] = {.lex_state = 37, .external_lex_state = 2}, - [1594] = {.lex_state = 37, .external_lex_state = 2}, - [1595] = {.lex_state = 352, .external_lex_state = 2}, - [1596] = {.lex_state = 37, .external_lex_state = 2}, - [1597] = {.lex_state = 37, .external_lex_state = 2}, - [1598] = {.lex_state = 37, .external_lex_state = 2}, - [1599] = {.lex_state = 352, .external_lex_state = 2}, - [1600] = {.lex_state = 352, .external_lex_state = 2}, - [1601] = {.lex_state = 352, .external_lex_state = 2}, - [1602] = {.lex_state = 352, .external_lex_state = 2}, - [1603] = {.lex_state = 37, .external_lex_state = 2}, - [1604] = {.lex_state = 352, .external_lex_state = 2}, - [1605] = {.lex_state = 352, .external_lex_state = 2}, - [1606] = {.lex_state = 352, .external_lex_state = 2}, - [1607] = {.lex_state = 351, .external_lex_state = 5}, - [1608] = {.lex_state = 352, .external_lex_state = 2}, - [1609] = {.lex_state = 37, .external_lex_state = 2}, - [1610] = {.lex_state = 37, .external_lex_state = 2}, - [1611] = {.lex_state = 352, .external_lex_state = 2}, - [1612] = {.lex_state = 353, .external_lex_state = 2}, - [1613] = {.lex_state = 37, .external_lex_state = 2}, - [1614] = {.lex_state = 352, .external_lex_state = 2}, + [1528] = {.lex_state = 351, .external_lex_state = 2}, + [1529] = {.lex_state = 351, .external_lex_state = 2}, + [1530] = {.lex_state = 351, .external_lex_state = 2}, + [1531] = {.lex_state = 351, .external_lex_state = 2}, + [1532] = {.lex_state = 351, .external_lex_state = 2}, + [1533] = {.lex_state = 351, .external_lex_state = 2}, + [1534] = {.lex_state = 351, .external_lex_state = 2}, + [1535] = {.lex_state = 351, .external_lex_state = 2}, + [1536] = {.lex_state = 351, .external_lex_state = 2}, + [1537] = {.lex_state = 351, .external_lex_state = 2}, + [1538] = {.lex_state = 351, .external_lex_state = 2}, + [1539] = {.lex_state = 351, .external_lex_state = 2}, + [1540] = {.lex_state = 351, .external_lex_state = 2}, + [1541] = {.lex_state = 351, .external_lex_state = 2}, + [1542] = {.lex_state = 351, .external_lex_state = 2}, + [1543] = {.lex_state = 351, .external_lex_state = 2}, + [1544] = {.lex_state = 351, .external_lex_state = 2}, + [1545] = {.lex_state = 351, .external_lex_state = 2}, + [1546] = {.lex_state = 351, .external_lex_state = 2}, + [1547] = {.lex_state = 351, .external_lex_state = 2}, + [1548] = {.lex_state = 351, .external_lex_state = 2}, + [1549] = {.lex_state = 351, .external_lex_state = 2}, + [1550] = {.lex_state = 351, .external_lex_state = 2}, + [1551] = {.lex_state = 351, .external_lex_state = 2}, + [1552] = {.lex_state = 351, .external_lex_state = 2}, + [1553] = {.lex_state = 351, .external_lex_state = 2}, + [1554] = {.lex_state = 351, .external_lex_state = 2}, + [1555] = {.lex_state = 351, .external_lex_state = 2}, + [1556] = {.lex_state = 351, .external_lex_state = 2}, + [1557] = {.lex_state = 351, .external_lex_state = 2}, + [1558] = {.lex_state = 351, .external_lex_state = 2}, + [1559] = {.lex_state = 351, .external_lex_state = 2}, + [1560] = {.lex_state = 351, .external_lex_state = 2}, + [1561] = {.lex_state = 351, .external_lex_state = 2}, + [1562] = {.lex_state = 351, .external_lex_state = 2}, + [1563] = {.lex_state = 351, .external_lex_state = 2}, + [1564] = {.lex_state = 351, .external_lex_state = 2}, + [1565] = {.lex_state = 351, .external_lex_state = 2}, + [1566] = {.lex_state = 351, .external_lex_state = 2}, + [1567] = {.lex_state = 351, .external_lex_state = 2}, + [1568] = {.lex_state = 351, .external_lex_state = 2}, + [1569] = {.lex_state = 351, .external_lex_state = 2}, + [1570] = {.lex_state = 351, .external_lex_state = 2}, + [1571] = {.lex_state = 351, .external_lex_state = 2}, + [1572] = {.lex_state = 351, .external_lex_state = 2}, + [1573] = {.lex_state = 351, .external_lex_state = 2}, + [1574] = {.lex_state = 351, .external_lex_state = 2}, + [1575] = {.lex_state = 351, .external_lex_state = 2}, + [1576] = {.lex_state = 351, .external_lex_state = 2}, + [1577] = {.lex_state = 351, .external_lex_state = 2}, + [1578] = {.lex_state = 351, .external_lex_state = 2}, + [1579] = {.lex_state = 351, .external_lex_state = 2}, + [1580] = {.lex_state = 351, .external_lex_state = 2}, + [1581] = {.lex_state = 351, .external_lex_state = 2}, + [1582] = {.lex_state = 351, .external_lex_state = 2}, + [1583] = {.lex_state = 351, .external_lex_state = 2}, + [1584] = {.lex_state = 351, .external_lex_state = 2}, + [1585] = {.lex_state = 351, .external_lex_state = 2}, + [1586] = {.lex_state = 351, .external_lex_state = 2}, + [1587] = {.lex_state = 351, .external_lex_state = 2}, + [1588] = {.lex_state = 351, .external_lex_state = 2}, + [1589] = {.lex_state = 351, .external_lex_state = 2}, + [1590] = {.lex_state = 351, .external_lex_state = 2}, + [1591] = {.lex_state = 351, .external_lex_state = 2}, + [1592] = {.lex_state = 351, .external_lex_state = 2}, + [1593] = {.lex_state = 351, .external_lex_state = 2}, + [1594] = {.lex_state = 351, .external_lex_state = 2}, + [1595] = {.lex_state = 351, .external_lex_state = 2}, + [1596] = {.lex_state = 351, .external_lex_state = 2}, + [1597] = {.lex_state = 351, .external_lex_state = 2}, + [1598] = {.lex_state = 351, .external_lex_state = 2}, + [1599] = {.lex_state = 351, .external_lex_state = 2}, + [1600] = {.lex_state = 351, .external_lex_state = 2}, + [1601] = {.lex_state = 351, .external_lex_state = 2}, + [1602] = {.lex_state = 351, .external_lex_state = 2}, + [1603] = {.lex_state = 351, .external_lex_state = 2}, + [1604] = {.lex_state = 351, .external_lex_state = 2}, + [1605] = {.lex_state = 351, .external_lex_state = 2}, + [1606] = {.lex_state = 351, .external_lex_state = 2}, + [1607] = {.lex_state = 351, .external_lex_state = 2}, + [1608] = {.lex_state = 351, .external_lex_state = 2}, + [1609] = {.lex_state = 351, .external_lex_state = 2}, + [1610] = {.lex_state = 351, .external_lex_state = 2}, + [1611] = {.lex_state = 351, .external_lex_state = 2}, + [1612] = {.lex_state = 351, .external_lex_state = 2}, + [1613] = {.lex_state = 351, .external_lex_state = 2}, + [1614] = {.lex_state = 351, .external_lex_state = 2}, [1615] = {.lex_state = 351, .external_lex_state = 2}, [1616] = {.lex_state = 351, .external_lex_state = 2}, [1617] = {.lex_state = 351, .external_lex_state = 2}, @@ -22111,23 +21892,23 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1629] = {.lex_state = 351, .external_lex_state = 2}, [1630] = {.lex_state = 351, .external_lex_state = 2}, [1631] = {.lex_state = 351, .external_lex_state = 2}, - [1632] = {.lex_state = 351, .external_lex_state = 2}, - [1633] = {.lex_state = 351, .external_lex_state = 2}, - [1634] = {.lex_state = 351, .external_lex_state = 2}, - [1635] = {.lex_state = 351, .external_lex_state = 2}, - [1636] = {.lex_state = 351, .external_lex_state = 2}, - [1637] = {.lex_state = 351, .external_lex_state = 2}, - [1638] = {.lex_state = 351, .external_lex_state = 2}, - [1639] = {.lex_state = 351, .external_lex_state = 2}, - [1640] = {.lex_state = 351, .external_lex_state = 2}, + [1632] = {.lex_state = 48, .external_lex_state = 2}, + [1633] = {.lex_state = 48, .external_lex_state = 2}, + [1634] = {.lex_state = 48, .external_lex_state = 2}, + [1635] = {.lex_state = 48, .external_lex_state = 2}, + [1636] = {.lex_state = 48, .external_lex_state = 2}, + [1637] = {.lex_state = 48, .external_lex_state = 2}, + [1638] = {.lex_state = 48, .external_lex_state = 2}, + [1639] = {.lex_state = 48, .external_lex_state = 2}, + [1640] = {.lex_state = 48, .external_lex_state = 2}, [1641] = {.lex_state = 351, .external_lex_state = 2}, - [1642] = {.lex_state = 351, .external_lex_state = 2}, + [1642] = {.lex_state = 48, .external_lex_state = 2}, [1643] = {.lex_state = 351, .external_lex_state = 2}, - [1644] = {.lex_state = 351, .external_lex_state = 2}, + [1644] = {.lex_state = 48, .external_lex_state = 2}, [1645] = {.lex_state = 351, .external_lex_state = 2}, - [1646] = {.lex_state = 351, .external_lex_state = 2}, + [1646] = {.lex_state = 48, .external_lex_state = 2}, [1647] = {.lex_state = 351, .external_lex_state = 2}, - [1648] = {.lex_state = 351, .external_lex_state = 2}, + [1648] = {.lex_state = 48, .external_lex_state = 2}, [1649] = {.lex_state = 351, .external_lex_state = 2}, [1650] = {.lex_state = 351, .external_lex_state = 2}, [1651] = {.lex_state = 351, .external_lex_state = 2}, @@ -22137,212 +21918,212 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1655] = {.lex_state = 351, .external_lex_state = 2}, [1656] = {.lex_state = 351, .external_lex_state = 2}, [1657] = {.lex_state = 351, .external_lex_state = 2}, - [1658] = {.lex_state = 351, .external_lex_state = 2}, - [1659] = {.lex_state = 351, .external_lex_state = 2}, - [1660] = {.lex_state = 351, .external_lex_state = 2}, - [1661] = {.lex_state = 351, .external_lex_state = 2}, - [1662] = {.lex_state = 351, .external_lex_state = 2}, - [1663] = {.lex_state = 351, .external_lex_state = 2}, - [1664] = {.lex_state = 351, .external_lex_state = 2}, - [1665] = {.lex_state = 351, .external_lex_state = 2}, - [1666] = {.lex_state = 351, .external_lex_state = 2}, - [1667] = {.lex_state = 351, .external_lex_state = 2}, - [1668] = {.lex_state = 351, .external_lex_state = 2}, - [1669] = {.lex_state = 351, .external_lex_state = 2}, - [1670] = {.lex_state = 351, .external_lex_state = 2}, - [1671] = {.lex_state = 351, .external_lex_state = 2}, - [1672] = {.lex_state = 351, .external_lex_state = 2}, - [1673] = {.lex_state = 351, .external_lex_state = 2}, - [1674] = {.lex_state = 351, .external_lex_state = 2}, - [1675] = {.lex_state = 351, .external_lex_state = 2}, - [1676] = {.lex_state = 351, .external_lex_state = 2}, - [1677] = {.lex_state = 351, .external_lex_state = 2}, - [1678] = {.lex_state = 351, .external_lex_state = 2}, - [1679] = {.lex_state = 351, .external_lex_state = 2}, - [1680] = {.lex_state = 351, .external_lex_state = 2}, - [1681] = {.lex_state = 351, .external_lex_state = 2}, - [1682] = {.lex_state = 351, .external_lex_state = 2}, - [1683] = {.lex_state = 351, .external_lex_state = 2}, - [1684] = {.lex_state = 351, .external_lex_state = 2}, - [1685] = {.lex_state = 351, .external_lex_state = 2}, - [1686] = {.lex_state = 351, .external_lex_state = 2}, - [1687] = {.lex_state = 351, .external_lex_state = 2}, - [1688] = {.lex_state = 351, .external_lex_state = 2}, - [1689] = {.lex_state = 351, .external_lex_state = 2}, - [1690] = {.lex_state = 351, .external_lex_state = 2}, - [1691] = {.lex_state = 351, .external_lex_state = 2}, - [1692] = {.lex_state = 351, .external_lex_state = 2}, - [1693] = {.lex_state = 351, .external_lex_state = 2}, - [1694] = {.lex_state = 351, .external_lex_state = 2}, - [1695] = {.lex_state = 351, .external_lex_state = 2}, - [1696] = {.lex_state = 351, .external_lex_state = 2}, - [1697] = {.lex_state = 351, .external_lex_state = 2}, - [1698] = {.lex_state = 351, .external_lex_state = 2}, - [1699] = {.lex_state = 351, .external_lex_state = 2}, - [1700] = {.lex_state = 351, .external_lex_state = 2}, - [1701] = {.lex_state = 351, .external_lex_state = 2}, - [1702] = {.lex_state = 351, .external_lex_state = 2}, - [1703] = {.lex_state = 351, .external_lex_state = 2}, - [1704] = {.lex_state = 351, .external_lex_state = 2}, - [1705] = {.lex_state = 351, .external_lex_state = 2}, - [1706] = {.lex_state = 351, .external_lex_state = 2}, - [1707] = {.lex_state = 351, .external_lex_state = 2}, - [1708] = {.lex_state = 351, .external_lex_state = 2}, - [1709] = {.lex_state = 351, .external_lex_state = 2}, - [1710] = {.lex_state = 351, .external_lex_state = 2}, - [1711] = {.lex_state = 351, .external_lex_state = 2}, - [1712] = {.lex_state = 351, .external_lex_state = 2}, - [1713] = {.lex_state = 351, .external_lex_state = 2}, - [1714] = {.lex_state = 351, .external_lex_state = 2}, - [1715] = {.lex_state = 351, .external_lex_state = 2}, - [1716] = {.lex_state = 351, .external_lex_state = 2}, - [1717] = {.lex_state = 351, .external_lex_state = 2}, - [1718] = {.lex_state = 351, .external_lex_state = 2}, - [1719] = {.lex_state = 351, .external_lex_state = 2}, - [1720] = {.lex_state = 351, .external_lex_state = 2}, - [1721] = {.lex_state = 351, .external_lex_state = 2}, - [1722] = {.lex_state = 351, .external_lex_state = 2}, - [1723] = {.lex_state = 351, .external_lex_state = 2}, - [1724] = {.lex_state = 351, .external_lex_state = 2}, - [1725] = {.lex_state = 351, .external_lex_state = 2}, - [1726] = {.lex_state = 351, .external_lex_state = 2}, - [1727] = {.lex_state = 351, .external_lex_state = 2}, - [1728] = {.lex_state = 351, .external_lex_state = 2}, - [1729] = {.lex_state = 351, .external_lex_state = 2}, - [1730] = {.lex_state = 351, .external_lex_state = 2}, - [1731] = {.lex_state = 351, .external_lex_state = 2}, - [1732] = {.lex_state = 351, .external_lex_state = 2}, - [1733] = {.lex_state = 351, .external_lex_state = 2}, - [1734] = {.lex_state = 351, .external_lex_state = 2}, - [1735] = {.lex_state = 351, .external_lex_state = 2}, - [1736] = {.lex_state = 351, .external_lex_state = 2}, - [1737] = {.lex_state = 351, .external_lex_state = 2}, - [1738] = {.lex_state = 351, .external_lex_state = 2}, - [1739] = {.lex_state = 351, .external_lex_state = 2}, - [1740] = {.lex_state = 351, .external_lex_state = 2}, - [1741] = {.lex_state = 351, .external_lex_state = 2}, - [1742] = {.lex_state = 351, .external_lex_state = 2}, - [1743] = {.lex_state = 351, .external_lex_state = 2}, - [1744] = {.lex_state = 351, .external_lex_state = 2}, - [1745] = {.lex_state = 351, .external_lex_state = 2}, - [1746] = {.lex_state = 351, .external_lex_state = 2}, - [1747] = {.lex_state = 351, .external_lex_state = 2}, - [1748] = {.lex_state = 351, .external_lex_state = 2}, - [1749] = {.lex_state = 351, .external_lex_state = 2}, - [1750] = {.lex_state = 351, .external_lex_state = 2}, - [1751] = {.lex_state = 351, .external_lex_state = 2}, - [1752] = {.lex_state = 351, .external_lex_state = 2}, - [1753] = {.lex_state = 351, .external_lex_state = 2}, - [1754] = {.lex_state = 351, .external_lex_state = 2}, - [1755] = {.lex_state = 351, .external_lex_state = 2}, - [1756] = {.lex_state = 351, .external_lex_state = 2}, - [1757] = {.lex_state = 351, .external_lex_state = 2}, - [1758] = {.lex_state = 351, .external_lex_state = 2}, - [1759] = {.lex_state = 351, .external_lex_state = 2}, - [1760] = {.lex_state = 351, .external_lex_state = 2}, - [1761] = {.lex_state = 351, .external_lex_state = 2}, - [1762] = {.lex_state = 351, .external_lex_state = 2}, - [1763] = {.lex_state = 351, .external_lex_state = 2}, - [1764] = {.lex_state = 351, .external_lex_state = 2}, - [1765] = {.lex_state = 351, .external_lex_state = 2}, - [1766] = {.lex_state = 351, .external_lex_state = 2}, - [1767] = {.lex_state = 351, .external_lex_state = 2}, - [1768] = {.lex_state = 351, .external_lex_state = 2}, - [1769] = {.lex_state = 351, .external_lex_state = 2}, - [1770] = {.lex_state = 351, .external_lex_state = 2}, - [1771] = {.lex_state = 351, .external_lex_state = 2}, - [1772] = {.lex_state = 351, .external_lex_state = 2}, - [1773] = {.lex_state = 351, .external_lex_state = 2}, - [1774] = {.lex_state = 351, .external_lex_state = 2}, - [1775] = {.lex_state = 351, .external_lex_state = 2}, - [1776] = {.lex_state = 351, .external_lex_state = 2}, - [1777] = {.lex_state = 351, .external_lex_state = 2}, - [1778] = {.lex_state = 351, .external_lex_state = 2}, - [1779] = {.lex_state = 351, .external_lex_state = 2}, + [1658] = {.lex_state = 48, .external_lex_state = 2}, + [1659] = {.lex_state = 48, .external_lex_state = 2}, + [1660] = {.lex_state = 49, .external_lex_state = 2}, + [1661] = {.lex_state = 48, .external_lex_state = 2}, + [1662] = {.lex_state = 49, .external_lex_state = 2}, + [1663] = {.lex_state = 49, .external_lex_state = 2}, + [1664] = {.lex_state = 49, .external_lex_state = 2}, + [1665] = {.lex_state = 49, .external_lex_state = 2}, + [1666] = {.lex_state = 49, .external_lex_state = 2}, + [1667] = {.lex_state = 49, .external_lex_state = 2}, + [1668] = {.lex_state = 49, .external_lex_state = 2}, + [1669] = {.lex_state = 49, .external_lex_state = 2}, + [1670] = {.lex_state = 49, .external_lex_state = 2}, + [1671] = {.lex_state = 49, .external_lex_state = 2}, + [1672] = {.lex_state = 49, .external_lex_state = 2}, + [1673] = {.lex_state = 49, .external_lex_state = 2}, + [1674] = {.lex_state = 49, .external_lex_state = 2}, + [1675] = {.lex_state = 49, .external_lex_state = 2}, + [1676] = {.lex_state = 49, .external_lex_state = 2}, + [1677] = {.lex_state = 49, .external_lex_state = 2}, + [1678] = {.lex_state = 49, .external_lex_state = 2}, + [1679] = {.lex_state = 49, .external_lex_state = 2}, + [1680] = {.lex_state = 49, .external_lex_state = 2}, + [1681] = {.lex_state = 49, .external_lex_state = 2}, + [1682] = {.lex_state = 49, .external_lex_state = 2}, + [1683] = {.lex_state = 49, .external_lex_state = 2}, + [1684] = {.lex_state = 49, .external_lex_state = 2}, + [1685] = {.lex_state = 49, .external_lex_state = 2}, + [1686] = {.lex_state = 49, .external_lex_state = 2}, + [1687] = {.lex_state = 49, .external_lex_state = 2}, + [1688] = {.lex_state = 49, .external_lex_state = 2}, + [1689] = {.lex_state = 49, .external_lex_state = 2}, + [1690] = {.lex_state = 49, .external_lex_state = 2}, + [1691] = {.lex_state = 49, .external_lex_state = 2}, + [1692] = {.lex_state = 49, .external_lex_state = 2}, + [1693] = {.lex_state = 49, .external_lex_state = 2}, + [1694] = {.lex_state = 49, .external_lex_state = 2}, + [1695] = {.lex_state = 49, .external_lex_state = 2}, + [1696] = {.lex_state = 49, .external_lex_state = 2}, + [1697] = {.lex_state = 49, .external_lex_state = 2}, + [1698] = {.lex_state = 49, .external_lex_state = 2}, + [1699] = {.lex_state = 49, .external_lex_state = 2}, + [1700] = {.lex_state = 49, .external_lex_state = 2}, + [1701] = {.lex_state = 49, .external_lex_state = 2}, + [1702] = {.lex_state = 49, .external_lex_state = 2}, + [1703] = {.lex_state = 49, .external_lex_state = 2}, + [1704] = {.lex_state = 49, .external_lex_state = 2}, + [1705] = {.lex_state = 49, .external_lex_state = 2}, + [1706] = {.lex_state = 49, .external_lex_state = 2}, + [1707] = {.lex_state = 49, .external_lex_state = 2}, + [1708] = {.lex_state = 49, .external_lex_state = 2}, + [1709] = {.lex_state = 49, .external_lex_state = 2}, + [1710] = {.lex_state = 49, .external_lex_state = 2}, + [1711] = {.lex_state = 49, .external_lex_state = 2}, + [1712] = {.lex_state = 49, .external_lex_state = 2}, + [1713] = {.lex_state = 49, .external_lex_state = 2}, + [1714] = {.lex_state = 49, .external_lex_state = 2}, + [1715] = {.lex_state = 49, .external_lex_state = 2}, + [1716] = {.lex_state = 48, .external_lex_state = 2}, + [1717] = {.lex_state = 48, .external_lex_state = 2}, + [1718] = {.lex_state = 48, .external_lex_state = 2}, + [1719] = {.lex_state = 48, .external_lex_state = 2}, + [1720] = {.lex_state = 48, .external_lex_state = 2}, + [1721] = {.lex_state = 48, .external_lex_state = 2}, + [1722] = {.lex_state = 48, .external_lex_state = 2}, + [1723] = {.lex_state = 48, .external_lex_state = 2}, + [1724] = {.lex_state = 48, .external_lex_state = 2}, + [1725] = {.lex_state = 48, .external_lex_state = 2}, + [1726] = {.lex_state = 35, .external_lex_state = 2}, + [1727] = {.lex_state = 35, .external_lex_state = 2}, + [1728] = {.lex_state = 35, .external_lex_state = 2}, + [1729] = {.lex_state = 35, .external_lex_state = 2}, + [1730] = {.lex_state = 35, .external_lex_state = 2}, + [1731] = {.lex_state = 35, .external_lex_state = 2}, + [1732] = {.lex_state = 35, .external_lex_state = 2}, + [1733] = {.lex_state = 35, .external_lex_state = 2}, + [1734] = {.lex_state = 35, .external_lex_state = 2}, + [1735] = {.lex_state = 35, .external_lex_state = 2}, + [1736] = {.lex_state = 35, .external_lex_state = 2}, + [1737] = {.lex_state = 35, .external_lex_state = 2}, + [1738] = {.lex_state = 15, .external_lex_state = 4}, + [1739] = {.lex_state = 15, .external_lex_state = 4}, + [1740] = {.lex_state = 15, .external_lex_state = 4}, + [1741] = {.lex_state = 48, .external_lex_state = 2}, + [1742] = {.lex_state = 15, .external_lex_state = 4}, + [1743] = {.lex_state = 15, .external_lex_state = 4}, + [1744] = {.lex_state = 15, .external_lex_state = 4}, + [1745] = {.lex_state = 15, .external_lex_state = 4}, + [1746] = {.lex_state = 48, .external_lex_state = 2}, + [1747] = {.lex_state = 48, .external_lex_state = 2}, + [1748] = {.lex_state = 15, .external_lex_state = 4}, + [1749] = {.lex_state = 15, .external_lex_state = 4}, + [1750] = {.lex_state = 48, .external_lex_state = 2}, + [1751] = {.lex_state = 48, .external_lex_state = 2}, + [1752] = {.lex_state = 48, .external_lex_state = 2}, + [1753] = {.lex_state = 48, .external_lex_state = 2}, + [1754] = {.lex_state = 48, .external_lex_state = 2}, + [1755] = {.lex_state = 48, .external_lex_state = 2}, + [1756] = {.lex_state = 48, .external_lex_state = 2}, + [1757] = {.lex_state = 48, .external_lex_state = 2}, + [1758] = {.lex_state = 48, .external_lex_state = 2}, + [1759] = {.lex_state = 48, .external_lex_state = 2}, + [1760] = {.lex_state = 48, .external_lex_state = 2}, + [1761] = {.lex_state = 48, .external_lex_state = 2}, + [1762] = {.lex_state = 48, .external_lex_state = 2}, + [1763] = {.lex_state = 48, .external_lex_state = 2}, + [1764] = {.lex_state = 48, .external_lex_state = 2}, + [1765] = {.lex_state = 48, .external_lex_state = 2}, + [1766] = {.lex_state = 48, .external_lex_state = 2}, + [1767] = {.lex_state = 48, .external_lex_state = 2}, + [1768] = {.lex_state = 48, .external_lex_state = 2}, + [1769] = {.lex_state = 48, .external_lex_state = 2}, + [1770] = {.lex_state = 48, .external_lex_state = 2}, + [1771] = {.lex_state = 48, .external_lex_state = 2}, + [1772] = {.lex_state = 48, .external_lex_state = 2}, + [1773] = {.lex_state = 48, .external_lex_state = 2}, + [1774] = {.lex_state = 48, .external_lex_state = 2}, + [1775] = {.lex_state = 48, .external_lex_state = 2}, + [1776] = {.lex_state = 48, .external_lex_state = 2}, + [1777] = {.lex_state = 48, .external_lex_state = 2}, + [1778] = {.lex_state = 48, .external_lex_state = 2}, + [1779] = {.lex_state = 48, .external_lex_state = 2}, [1780] = {.lex_state = 48, .external_lex_state = 2}, [1781] = {.lex_state = 48, .external_lex_state = 2}, [1782] = {.lex_state = 48, .external_lex_state = 2}, [1783] = {.lex_state = 48, .external_lex_state = 2}, [1784] = {.lex_state = 48, .external_lex_state = 2}, - [1785] = {.lex_state = 351, .external_lex_state = 2}, - [1786] = {.lex_state = 351, .external_lex_state = 2}, - [1787] = {.lex_state = 351, .external_lex_state = 2}, + [1785] = {.lex_state = 48, .external_lex_state = 2}, + [1786] = {.lex_state = 48, .external_lex_state = 2}, + [1787] = {.lex_state = 48, .external_lex_state = 2}, [1788] = {.lex_state = 48, .external_lex_state = 2}, - [1789] = {.lex_state = 351, .external_lex_state = 2}, + [1789] = {.lex_state = 48, .external_lex_state = 2}, [1790] = {.lex_state = 48, .external_lex_state = 2}, [1791] = {.lex_state = 48, .external_lex_state = 2}, [1792] = {.lex_state = 48, .external_lex_state = 2}, - [1793] = {.lex_state = 351, .external_lex_state = 2}, - [1794] = {.lex_state = 351, .external_lex_state = 2}, - [1795] = {.lex_state = 351, .external_lex_state = 2}, - [1796] = {.lex_state = 351, .external_lex_state = 2}, + [1793] = {.lex_state = 48, .external_lex_state = 2}, + [1794] = {.lex_state = 48, .external_lex_state = 2}, + [1795] = {.lex_state = 48, .external_lex_state = 2}, + [1796] = {.lex_state = 48, .external_lex_state = 2}, [1797] = {.lex_state = 48, .external_lex_state = 2}, - [1798] = {.lex_state = 351, .external_lex_state = 2}, - [1799] = {.lex_state = 351, .external_lex_state = 2}, + [1798] = {.lex_state = 48, .external_lex_state = 2}, + [1799] = {.lex_state = 48, .external_lex_state = 2}, [1800] = {.lex_state = 48, .external_lex_state = 2}, - [1801] = {.lex_state = 351, .external_lex_state = 2}, - [1802] = {.lex_state = 351, .external_lex_state = 2}, - [1803] = {.lex_state = 351, .external_lex_state = 2}, + [1801] = {.lex_state = 48, .external_lex_state = 2}, + [1802] = {.lex_state = 48, .external_lex_state = 2}, + [1803] = {.lex_state = 48, .external_lex_state = 2}, [1804] = {.lex_state = 48, .external_lex_state = 2}, [1805] = {.lex_state = 48, .external_lex_state = 2}, [1806] = {.lex_state = 48, .external_lex_state = 2}, [1807] = {.lex_state = 48, .external_lex_state = 2}, - [1808] = {.lex_state = 49, .external_lex_state = 2}, - [1809] = {.lex_state = 49, .external_lex_state = 2}, + [1808] = {.lex_state = 48, .external_lex_state = 2}, + [1809] = {.lex_state = 48, .external_lex_state = 2}, [1810] = {.lex_state = 48, .external_lex_state = 2}, - [1811] = {.lex_state = 49, .external_lex_state = 2}, - [1812] = {.lex_state = 49, .external_lex_state = 2}, - [1813] = {.lex_state = 49, .external_lex_state = 2}, - [1814] = {.lex_state = 49, .external_lex_state = 2}, - [1815] = {.lex_state = 49, .external_lex_state = 2}, - [1816] = {.lex_state = 49, .external_lex_state = 2}, - [1817] = {.lex_state = 49, .external_lex_state = 2}, - [1818] = {.lex_state = 49, .external_lex_state = 2}, - [1819] = {.lex_state = 49, .external_lex_state = 2}, - [1820] = {.lex_state = 49, .external_lex_state = 2}, - [1821] = {.lex_state = 49, .external_lex_state = 2}, - [1822] = {.lex_state = 49, .external_lex_state = 2}, - [1823] = {.lex_state = 49, .external_lex_state = 2}, - [1824] = {.lex_state = 49, .external_lex_state = 2}, - [1825] = {.lex_state = 49, .external_lex_state = 2}, - [1826] = {.lex_state = 49, .external_lex_state = 2}, - [1827] = {.lex_state = 49, .external_lex_state = 2}, - [1828] = {.lex_state = 49, .external_lex_state = 2}, - [1829] = {.lex_state = 49, .external_lex_state = 2}, - [1830] = {.lex_state = 49, .external_lex_state = 2}, - [1831] = {.lex_state = 49, .external_lex_state = 2}, - [1832] = {.lex_state = 49, .external_lex_state = 2}, - [1833] = {.lex_state = 49, .external_lex_state = 2}, - [1834] = {.lex_state = 49, .external_lex_state = 2}, - [1835] = {.lex_state = 49, .external_lex_state = 2}, - [1836] = {.lex_state = 49, .external_lex_state = 2}, - [1837] = {.lex_state = 49, .external_lex_state = 2}, - [1838] = {.lex_state = 49, .external_lex_state = 2}, - [1839] = {.lex_state = 49, .external_lex_state = 2}, - [1840] = {.lex_state = 49, .external_lex_state = 2}, - [1841] = {.lex_state = 49, .external_lex_state = 2}, - [1842] = {.lex_state = 49, .external_lex_state = 2}, - [1843] = {.lex_state = 49, .external_lex_state = 2}, - [1844] = {.lex_state = 49, .external_lex_state = 2}, - [1845] = {.lex_state = 49, .external_lex_state = 2}, - [1846] = {.lex_state = 49, .external_lex_state = 2}, - [1847] = {.lex_state = 49, .external_lex_state = 2}, - [1848] = {.lex_state = 49, .external_lex_state = 2}, - [1849] = {.lex_state = 49, .external_lex_state = 2}, - [1850] = {.lex_state = 49, .external_lex_state = 2}, - [1851] = {.lex_state = 49, .external_lex_state = 2}, - [1852] = {.lex_state = 49, .external_lex_state = 2}, - [1853] = {.lex_state = 49, .external_lex_state = 2}, - [1854] = {.lex_state = 49, .external_lex_state = 2}, - [1855] = {.lex_state = 49, .external_lex_state = 2}, - [1856] = {.lex_state = 49, .external_lex_state = 2}, - [1857] = {.lex_state = 49, .external_lex_state = 2}, - [1858] = {.lex_state = 49, .external_lex_state = 2}, - [1859] = {.lex_state = 49, .external_lex_state = 2}, - [1860] = {.lex_state = 49, .external_lex_state = 2}, - [1861] = {.lex_state = 49, .external_lex_state = 2}, - [1862] = {.lex_state = 49, .external_lex_state = 2}, - [1863] = {.lex_state = 49, .external_lex_state = 2}, + [1811] = {.lex_state = 48, .external_lex_state = 2}, + [1812] = {.lex_state = 48, .external_lex_state = 2}, + [1813] = {.lex_state = 48, .external_lex_state = 2}, + [1814] = {.lex_state = 48, .external_lex_state = 2}, + [1815] = {.lex_state = 48, .external_lex_state = 2}, + [1816] = {.lex_state = 48, .external_lex_state = 2}, + [1817] = {.lex_state = 48, .external_lex_state = 2}, + [1818] = {.lex_state = 48, .external_lex_state = 2}, + [1819] = {.lex_state = 48, .external_lex_state = 2}, + [1820] = {.lex_state = 48, .external_lex_state = 2}, + [1821] = {.lex_state = 48, .external_lex_state = 2}, + [1822] = {.lex_state = 48, .external_lex_state = 2}, + [1823] = {.lex_state = 48, .external_lex_state = 2}, + [1824] = {.lex_state = 48, .external_lex_state = 2}, + [1825] = {.lex_state = 48, .external_lex_state = 2}, + [1826] = {.lex_state = 48, .external_lex_state = 2}, + [1827] = {.lex_state = 48, .external_lex_state = 2}, + [1828] = {.lex_state = 48, .external_lex_state = 2}, + [1829] = {.lex_state = 48, .external_lex_state = 2}, + [1830] = {.lex_state = 48, .external_lex_state = 2}, + [1831] = {.lex_state = 48, .external_lex_state = 2}, + [1832] = {.lex_state = 48, .external_lex_state = 2}, + [1833] = {.lex_state = 48, .external_lex_state = 2}, + [1834] = {.lex_state = 48, .external_lex_state = 2}, + [1835] = {.lex_state = 48, .external_lex_state = 2}, + [1836] = {.lex_state = 48, .external_lex_state = 2}, + [1837] = {.lex_state = 48, .external_lex_state = 2}, + [1838] = {.lex_state = 48, .external_lex_state = 2}, + [1839] = {.lex_state = 48, .external_lex_state = 2}, + [1840] = {.lex_state = 48, .external_lex_state = 2}, + [1841] = {.lex_state = 48, .external_lex_state = 2}, + [1842] = {.lex_state = 48, .external_lex_state = 2}, + [1843] = {.lex_state = 48, .external_lex_state = 2}, + [1844] = {.lex_state = 48, .external_lex_state = 2}, + [1845] = {.lex_state = 48, .external_lex_state = 2}, + [1846] = {.lex_state = 48, .external_lex_state = 2}, + [1847] = {.lex_state = 48, .external_lex_state = 2}, + [1848] = {.lex_state = 48, .external_lex_state = 2}, + [1849] = {.lex_state = 48, .external_lex_state = 2}, + [1850] = {.lex_state = 48, .external_lex_state = 2}, + [1851] = {.lex_state = 48, .external_lex_state = 2}, + [1852] = {.lex_state = 48, .external_lex_state = 2}, + [1853] = {.lex_state = 48, .external_lex_state = 2}, + [1854] = {.lex_state = 48, .external_lex_state = 2}, + [1855] = {.lex_state = 48, .external_lex_state = 2}, + [1856] = {.lex_state = 48, .external_lex_state = 2}, + [1857] = {.lex_state = 48, .external_lex_state = 2}, + [1858] = {.lex_state = 48, .external_lex_state = 2}, + [1859] = {.lex_state = 48, .external_lex_state = 2}, + [1860] = {.lex_state = 48, .external_lex_state = 2}, + [1861] = {.lex_state = 48, .external_lex_state = 2}, + [1862] = {.lex_state = 48, .external_lex_state = 2}, + [1863] = {.lex_state = 48, .external_lex_state = 2}, [1864] = {.lex_state = 48, .external_lex_state = 2}, [1865] = {.lex_state = 48, .external_lex_state = 2}, [1866] = {.lex_state = 48, .external_lex_state = 2}, @@ -22353,1387 +22134,1387 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1871] = {.lex_state = 48, .external_lex_state = 2}, [1872] = {.lex_state = 48, .external_lex_state = 2}, [1873] = {.lex_state = 48, .external_lex_state = 2}, - [1874] = {.lex_state = 35, .external_lex_state = 2}, - [1875] = {.lex_state = 35, .external_lex_state = 2}, - [1876] = {.lex_state = 35, .external_lex_state = 2}, + [1874] = {.lex_state = 48, .external_lex_state = 2}, + [1875] = {.lex_state = 15, .external_lex_state = 3}, + [1876] = {.lex_state = 15, .external_lex_state = 3}, [1877] = {.lex_state = 35, .external_lex_state = 2}, [1878] = {.lex_state = 35, .external_lex_state = 2}, - [1879] = {.lex_state = 35, .external_lex_state = 2}, - [1880] = {.lex_state = 35, .external_lex_state = 2}, - [1881] = {.lex_state = 35, .external_lex_state = 2}, - [1882] = {.lex_state = 35, .external_lex_state = 2}, - [1883] = {.lex_state = 35, .external_lex_state = 2}, - [1884] = {.lex_state = 35, .external_lex_state = 2}, - [1885] = {.lex_state = 35, .external_lex_state = 2}, + [1879] = {.lex_state = 15, .external_lex_state = 4}, + [1880] = {.lex_state = 18, .external_lex_state = 4}, + [1881] = {.lex_state = 15, .external_lex_state = 4}, + [1882] = {.lex_state = 15, .external_lex_state = 4}, + [1883] = {.lex_state = 15, .external_lex_state = 4}, + [1884] = {.lex_state = 15, .external_lex_state = 3}, + [1885] = {.lex_state = 15, .external_lex_state = 4}, [1886] = {.lex_state = 15, .external_lex_state = 4}, - [1887] = {.lex_state = 48, .external_lex_state = 2}, + [1887] = {.lex_state = 15, .external_lex_state = 4}, [1888] = {.lex_state = 15, .external_lex_state = 4}, - [1889] = {.lex_state = 15, .external_lex_state = 4}, - [1890] = {.lex_state = 48, .external_lex_state = 2}, + [1889] = {.lex_state = 18, .external_lex_state = 4}, + [1890] = {.lex_state = 15, .external_lex_state = 4}, [1891] = {.lex_state = 15, .external_lex_state = 4}, - [1892] = {.lex_state = 48, .external_lex_state = 2}, - [1893] = {.lex_state = 15, .external_lex_state = 4}, - [1894] = {.lex_state = 15, .external_lex_state = 4}, + [1892] = {.lex_state = 15, .external_lex_state = 4}, + [1893] = {.lex_state = 18, .external_lex_state = 4}, + [1894] = {.lex_state = 18, .external_lex_state = 4}, [1895] = {.lex_state = 15, .external_lex_state = 4}, - [1896] = {.lex_state = 48, .external_lex_state = 2}, - [1897] = {.lex_state = 48, .external_lex_state = 2}, + [1896] = {.lex_state = 15, .external_lex_state = 4}, + [1897] = {.lex_state = 15, .external_lex_state = 3}, [1898] = {.lex_state = 15, .external_lex_state = 4}, [1899] = {.lex_state = 15, .external_lex_state = 4}, - [1900] = {.lex_state = 48, .external_lex_state = 2}, - [1901] = {.lex_state = 48, .external_lex_state = 2}, - [1902] = {.lex_state = 48, .external_lex_state = 2}, - [1903] = {.lex_state = 48, .external_lex_state = 2}, - [1904] = {.lex_state = 48, .external_lex_state = 2}, - [1905] = {.lex_state = 48, .external_lex_state = 2}, - [1906] = {.lex_state = 48, .external_lex_state = 2}, - [1907] = {.lex_state = 48, .external_lex_state = 2}, - [1908] = {.lex_state = 48, .external_lex_state = 2}, - [1909] = {.lex_state = 48, .external_lex_state = 2}, - [1910] = {.lex_state = 48, .external_lex_state = 2}, - [1911] = {.lex_state = 48, .external_lex_state = 2}, - [1912] = {.lex_state = 48, .external_lex_state = 2}, - [1913] = {.lex_state = 48, .external_lex_state = 2}, - [1914] = {.lex_state = 48, .external_lex_state = 2}, - [1915] = {.lex_state = 48, .external_lex_state = 2}, - [1916] = {.lex_state = 48, .external_lex_state = 2}, - [1917] = {.lex_state = 48, .external_lex_state = 2}, - [1918] = {.lex_state = 48, .external_lex_state = 2}, - [1919] = {.lex_state = 48, .external_lex_state = 2}, - [1920] = {.lex_state = 48, .external_lex_state = 2}, - [1921] = {.lex_state = 48, .external_lex_state = 2}, - [1922] = {.lex_state = 48, .external_lex_state = 2}, - [1923] = {.lex_state = 48, .external_lex_state = 2}, - [1924] = {.lex_state = 48, .external_lex_state = 2}, - [1925] = {.lex_state = 48, .external_lex_state = 2}, - [1926] = {.lex_state = 48, .external_lex_state = 2}, - [1927] = {.lex_state = 48, .external_lex_state = 2}, - [1928] = {.lex_state = 48, .external_lex_state = 2}, - [1929] = {.lex_state = 48, .external_lex_state = 2}, - [1930] = {.lex_state = 48, .external_lex_state = 2}, - [1931] = {.lex_state = 48, .external_lex_state = 2}, - [1932] = {.lex_state = 48, .external_lex_state = 2}, - [1933] = {.lex_state = 48, .external_lex_state = 2}, - [1934] = {.lex_state = 48, .external_lex_state = 2}, - [1935] = {.lex_state = 48, .external_lex_state = 2}, - [1936] = {.lex_state = 48, .external_lex_state = 2}, - [1937] = {.lex_state = 48, .external_lex_state = 2}, - [1938] = {.lex_state = 48, .external_lex_state = 2}, - [1939] = {.lex_state = 48, .external_lex_state = 2}, - [1940] = {.lex_state = 48, .external_lex_state = 2}, - [1941] = {.lex_state = 48, .external_lex_state = 2}, - [1942] = {.lex_state = 48, .external_lex_state = 2}, - [1943] = {.lex_state = 48, .external_lex_state = 2}, - [1944] = {.lex_state = 48, .external_lex_state = 2}, - [1945] = {.lex_state = 48, .external_lex_state = 2}, - [1946] = {.lex_state = 48, .external_lex_state = 2}, - [1947] = {.lex_state = 48, .external_lex_state = 2}, - [1948] = {.lex_state = 48, .external_lex_state = 2}, - [1949] = {.lex_state = 48, .external_lex_state = 2}, - [1950] = {.lex_state = 48, .external_lex_state = 2}, - [1951] = {.lex_state = 48, .external_lex_state = 2}, - [1952] = {.lex_state = 48, .external_lex_state = 2}, - [1953] = {.lex_state = 48, .external_lex_state = 2}, - [1954] = {.lex_state = 48, .external_lex_state = 2}, - [1955] = {.lex_state = 48, .external_lex_state = 2}, - [1956] = {.lex_state = 48, .external_lex_state = 2}, - [1957] = {.lex_state = 48, .external_lex_state = 2}, - [1958] = {.lex_state = 48, .external_lex_state = 2}, - [1959] = {.lex_state = 48, .external_lex_state = 2}, - [1960] = {.lex_state = 48, .external_lex_state = 2}, - [1961] = {.lex_state = 48, .external_lex_state = 2}, - [1962] = {.lex_state = 48, .external_lex_state = 2}, - [1963] = {.lex_state = 48, .external_lex_state = 2}, - [1964] = {.lex_state = 48, .external_lex_state = 2}, - [1965] = {.lex_state = 48, .external_lex_state = 2}, - [1966] = {.lex_state = 48, .external_lex_state = 2}, - [1967] = {.lex_state = 48, .external_lex_state = 2}, - [1968] = {.lex_state = 48, .external_lex_state = 2}, - [1969] = {.lex_state = 48, .external_lex_state = 2}, - [1970] = {.lex_state = 48, .external_lex_state = 2}, - [1971] = {.lex_state = 48, .external_lex_state = 2}, - [1972] = {.lex_state = 48, .external_lex_state = 2}, - [1973] = {.lex_state = 48, .external_lex_state = 2}, - [1974] = {.lex_state = 48, .external_lex_state = 2}, - [1975] = {.lex_state = 48, .external_lex_state = 2}, - [1976] = {.lex_state = 48, .external_lex_state = 2}, - [1977] = {.lex_state = 48, .external_lex_state = 2}, - [1978] = {.lex_state = 48, .external_lex_state = 2}, - [1979] = {.lex_state = 48, .external_lex_state = 2}, - [1980] = {.lex_state = 48, .external_lex_state = 2}, - [1981] = {.lex_state = 48, .external_lex_state = 2}, - [1982] = {.lex_state = 48, .external_lex_state = 2}, - [1983] = {.lex_state = 48, .external_lex_state = 2}, - [1984] = {.lex_state = 48, .external_lex_state = 2}, - [1985] = {.lex_state = 48, .external_lex_state = 2}, - [1986] = {.lex_state = 48, .external_lex_state = 2}, - [1987] = {.lex_state = 48, .external_lex_state = 2}, - [1988] = {.lex_state = 48, .external_lex_state = 2}, - [1989] = {.lex_state = 48, .external_lex_state = 2}, - [1990] = {.lex_state = 48, .external_lex_state = 2}, - [1991] = {.lex_state = 48, .external_lex_state = 2}, - [1992] = {.lex_state = 48, .external_lex_state = 2}, - [1993] = {.lex_state = 48, .external_lex_state = 2}, - [1994] = {.lex_state = 48, .external_lex_state = 2}, - [1995] = {.lex_state = 48, .external_lex_state = 2}, - [1996] = {.lex_state = 48, .external_lex_state = 2}, - [1997] = {.lex_state = 48, .external_lex_state = 2}, - [1998] = {.lex_state = 48, .external_lex_state = 2}, - [1999] = {.lex_state = 48, .external_lex_state = 2}, - [2000] = {.lex_state = 48, .external_lex_state = 2}, - [2001] = {.lex_state = 48, .external_lex_state = 2}, - [2002] = {.lex_state = 48, .external_lex_state = 2}, - [2003] = {.lex_state = 48, .external_lex_state = 2}, - [2004] = {.lex_state = 48, .external_lex_state = 2}, - [2005] = {.lex_state = 48, .external_lex_state = 2}, - [2006] = {.lex_state = 48, .external_lex_state = 2}, - [2007] = {.lex_state = 48, .external_lex_state = 2}, - [2008] = {.lex_state = 48, .external_lex_state = 2}, - [2009] = {.lex_state = 48, .external_lex_state = 2}, - [2010] = {.lex_state = 48, .external_lex_state = 2}, - [2011] = {.lex_state = 48, .external_lex_state = 2}, - [2012] = {.lex_state = 48, .external_lex_state = 2}, - [2013] = {.lex_state = 48, .external_lex_state = 2}, - [2014] = {.lex_state = 48, .external_lex_state = 2}, - [2015] = {.lex_state = 48, .external_lex_state = 2}, - [2016] = {.lex_state = 48, .external_lex_state = 2}, - [2017] = {.lex_state = 48, .external_lex_state = 2}, - [2018] = {.lex_state = 48, .external_lex_state = 2}, - [2019] = {.lex_state = 48, .external_lex_state = 2}, - [2020] = {.lex_state = 48, .external_lex_state = 2}, - [2021] = {.lex_state = 48, .external_lex_state = 2}, - [2022] = {.lex_state = 48, .external_lex_state = 2}, - [2023] = {.lex_state = 15, .external_lex_state = 3}, - [2024] = {.lex_state = 15, .external_lex_state = 3}, - [2025] = {.lex_state = 35, .external_lex_state = 2}, - [2026] = {.lex_state = 35, .external_lex_state = 2}, - [2027] = {.lex_state = 15, .external_lex_state = 4}, - [2028] = {.lex_state = 15, .external_lex_state = 3}, - [2029] = {.lex_state = 15, .external_lex_state = 3}, - [2030] = {.lex_state = 15, .external_lex_state = 4}, - [2031] = {.lex_state = 15, .external_lex_state = 4}, - [2032] = {.lex_state = 18, .external_lex_state = 4}, - [2033] = {.lex_state = 15, .external_lex_state = 4}, - [2034] = {.lex_state = 15, .external_lex_state = 4}, - [2035] = {.lex_state = 15, .external_lex_state = 4}, - [2036] = {.lex_state = 15, .external_lex_state = 4}, - [2037] = {.lex_state = 15, .external_lex_state = 4}, - [2038] = {.lex_state = 15, .external_lex_state = 4}, - [2039] = {.lex_state = 15, .external_lex_state = 3}, - [2040] = {.lex_state = 15, .external_lex_state = 4}, - [2041] = {.lex_state = 15, .external_lex_state = 4}, - [2042] = {.lex_state = 15, .external_lex_state = 4}, - [2043] = {.lex_state = 15, .external_lex_state = 4}, - [2044] = {.lex_state = 18, .external_lex_state = 4}, - [2045] = {.lex_state = 15, .external_lex_state = 4}, - [2046] = {.lex_state = 15, .external_lex_state = 4}, - [2047] = {.lex_state = 15, .external_lex_state = 4}, - [2048] = {.lex_state = 15, .external_lex_state = 4}, - [2049] = {.lex_state = 18, .external_lex_state = 4}, - [2050] = {.lex_state = 15, .external_lex_state = 3}, - [2051] = {.lex_state = 18, .external_lex_state = 4}, - [2052] = {.lex_state = 15, .external_lex_state = 4}, - [2053] = {.lex_state = 19, .external_lex_state = 3}, - [2054] = {.lex_state = 19, .external_lex_state = 3}, - [2055] = {.lex_state = 15, .external_lex_state = 3}, - [2056] = {.lex_state = 15, .external_lex_state = 4}, - [2057] = {.lex_state = 15, .external_lex_state = 3}, - [2058] = {.lex_state = 15, .external_lex_state = 3}, - [2059] = {.lex_state = 15, .external_lex_state = 3}, - [2060] = {.lex_state = 15, .external_lex_state = 4}, - [2061] = {.lex_state = 15, .external_lex_state = 3}, - [2062] = {.lex_state = 21, .external_lex_state = 3}, + [1900] = {.lex_state = 15, .external_lex_state = 4}, + [1901] = {.lex_state = 15, .external_lex_state = 4}, + [1902] = {.lex_state = 15, .external_lex_state = 3}, + [1903] = {.lex_state = 15, .external_lex_state = 3}, + [1904] = {.lex_state = 15, .external_lex_state = 3}, + [1905] = {.lex_state = 15, .external_lex_state = 4}, + [1906] = {.lex_state = 15, .external_lex_state = 4}, + [1907] = {.lex_state = 15, .external_lex_state = 3}, + [1908] = {.lex_state = 19, .external_lex_state = 3}, + [1909] = {.lex_state = 15, .external_lex_state = 4}, + [1910] = {.lex_state = 15, .external_lex_state = 3}, + [1911] = {.lex_state = 19, .external_lex_state = 3}, + [1912] = {.lex_state = 15, .external_lex_state = 3}, + [1913] = {.lex_state = 15, .external_lex_state = 4}, + [1914] = {.lex_state = 15, .external_lex_state = 3}, + [1915] = {.lex_state = 15, .external_lex_state = 4}, + [1916] = {.lex_state = 21, .external_lex_state = 3}, + [1917] = {.lex_state = 21, .external_lex_state = 3}, + [1918] = {.lex_state = 21, .external_lex_state = 3}, + [1919] = {.lex_state = 15, .external_lex_state = 4}, + [1920] = {.lex_state = 21, .external_lex_state = 4}, + [1921] = {.lex_state = 21, .external_lex_state = 3}, + [1922] = {.lex_state = 15, .external_lex_state = 4}, + [1923] = {.lex_state = 15, .external_lex_state = 4}, + [1924] = {.lex_state = 15, .external_lex_state = 4}, + [1925] = {.lex_state = 21, .external_lex_state = 3}, + [1926] = {.lex_state = 21, .external_lex_state = 4}, + [1927] = {.lex_state = 21, .external_lex_state = 4}, + [1928] = {.lex_state = 21, .external_lex_state = 3}, + [1929] = {.lex_state = 15, .external_lex_state = 3}, + [1930] = {.lex_state = 15, .external_lex_state = 4}, + [1931] = {.lex_state = 15, .external_lex_state = 4}, + [1932] = {.lex_state = 15, .external_lex_state = 4}, + [1933] = {.lex_state = 15, .external_lex_state = 4}, + [1934] = {.lex_state = 15, .external_lex_state = 4}, + [1935] = {.lex_state = 21, .external_lex_state = 4}, + [1936] = {.lex_state = 15, .external_lex_state = 4}, + [1937] = {.lex_state = 15, .external_lex_state = 4}, + [1938] = {.lex_state = 21, .external_lex_state = 4}, + [1939] = {.lex_state = 15, .external_lex_state = 4}, + [1940] = {.lex_state = 15, .external_lex_state = 3}, + [1941] = {.lex_state = 15, .external_lex_state = 4}, + [1942] = {.lex_state = 21, .external_lex_state = 4}, + [1943] = {.lex_state = 15, .external_lex_state = 4}, + [1944] = {.lex_state = 15, .external_lex_state = 4}, + [1945] = {.lex_state = 21, .external_lex_state = 4}, + [1946] = {.lex_state = 21, .external_lex_state = 3}, + [1947] = {.lex_state = 15, .external_lex_state = 4}, + [1948] = {.lex_state = 21, .external_lex_state = 4}, + [1949] = {.lex_state = 21, .external_lex_state = 3}, + [1950] = {.lex_state = 15, .external_lex_state = 3}, + [1951] = {.lex_state = 18, .external_lex_state = 3}, + [1952] = {.lex_state = 18, .external_lex_state = 3}, + [1953] = {.lex_state = 21, .external_lex_state = 3}, + [1954] = {.lex_state = 15, .external_lex_state = 3}, + [1955] = {.lex_state = 15, .external_lex_state = 3}, + [1956] = {.lex_state = 21, .external_lex_state = 3}, + [1957] = {.lex_state = 15, .external_lex_state = 3}, + [1958] = {.lex_state = 21, .external_lex_state = 3}, + [1959] = {.lex_state = 21, .external_lex_state = 4}, + [1960] = {.lex_state = 15, .external_lex_state = 3}, + [1961] = {.lex_state = 18, .external_lex_state = 3}, + [1962] = {.lex_state = 21, .external_lex_state = 3}, + [1963] = {.lex_state = 21, .external_lex_state = 4}, + [1964] = {.lex_state = 21, .external_lex_state = 4}, + [1965] = {.lex_state = 21, .external_lex_state = 3}, + [1966] = {.lex_state = 15, .external_lex_state = 3}, + [1967] = {.lex_state = 21, .external_lex_state = 4}, + [1968] = {.lex_state = 21, .external_lex_state = 3}, + [1969] = {.lex_state = 21, .external_lex_state = 3}, + [1970] = {.lex_state = 15, .external_lex_state = 3}, + [1971] = {.lex_state = 34, .external_lex_state = 2}, + [1972] = {.lex_state = 21, .external_lex_state = 3}, + [1973] = {.lex_state = 15, .external_lex_state = 3}, + [1974] = {.lex_state = 34, .external_lex_state = 2}, + [1975] = {.lex_state = 21, .external_lex_state = 3}, + [1976] = {.lex_state = 15, .external_lex_state = 3}, + [1977] = {.lex_state = 21, .external_lex_state = 3}, + [1978] = {.lex_state = 15, .external_lex_state = 3}, + [1979] = {.lex_state = 18, .external_lex_state = 3}, + [1980] = {.lex_state = 21, .external_lex_state = 3}, + [1981] = {.lex_state = 21, .external_lex_state = 4}, + [1982] = {.lex_state = 15, .external_lex_state = 3}, + [1983] = {.lex_state = 21, .external_lex_state = 4}, + [1984] = {.lex_state = 15, .external_lex_state = 3}, + [1985] = {.lex_state = 15, .external_lex_state = 3}, + [1986] = {.lex_state = 21, .external_lex_state = 3}, + [1987] = {.lex_state = 34, .external_lex_state = 2}, + [1988] = {.lex_state = 21, .external_lex_state = 3}, + [1989] = {.lex_state = 15, .external_lex_state = 3}, + [1990] = {.lex_state = 21, .external_lex_state = 3}, + [1991] = {.lex_state = 21, .external_lex_state = 3}, + [1992] = {.lex_state = 15, .external_lex_state = 3}, + [1993] = {.lex_state = 21, .external_lex_state = 3}, + [1994] = {.lex_state = 15, .external_lex_state = 3}, + [1995] = {.lex_state = 21, .external_lex_state = 3}, + [1996] = {.lex_state = 21, .external_lex_state = 3}, + [1997] = {.lex_state = 34, .external_lex_state = 2}, + [1998] = {.lex_state = 21, .external_lex_state = 4}, + [1999] = {.lex_state = 21, .external_lex_state = 3}, + [2000] = {.lex_state = 15, .external_lex_state = 4}, + [2001] = {.lex_state = 15, .external_lex_state = 4}, + [2002] = {.lex_state = 21, .external_lex_state = 4}, + [2003] = {.lex_state = 21, .external_lex_state = 3}, + [2004] = {.lex_state = 21, .external_lex_state = 3}, + [2005] = {.lex_state = 21, .external_lex_state = 3}, + [2006] = {.lex_state = 21, .external_lex_state = 4}, + [2007] = {.lex_state = 21, .external_lex_state = 3}, + [2008] = {.lex_state = 21, .external_lex_state = 3}, + [2009] = {.lex_state = 15, .external_lex_state = 4}, + [2010] = {.lex_state = 15, .external_lex_state = 4}, + [2011] = {.lex_state = 34, .external_lex_state = 2}, + [2012] = {.lex_state = 21, .external_lex_state = 3}, + [2013] = {.lex_state = 21, .external_lex_state = 3}, + [2014] = {.lex_state = 15, .external_lex_state = 4}, + [2015] = {.lex_state = 21, .external_lex_state = 3}, + [2016] = {.lex_state = 21, .external_lex_state = 3}, + [2017] = {.lex_state = 21, .external_lex_state = 3}, + [2018] = {.lex_state = 21, .external_lex_state = 3}, + [2019] = {.lex_state = 21, .external_lex_state = 3}, + [2020] = {.lex_state = 34, .external_lex_state = 2}, + [2021] = {.lex_state = 34, .external_lex_state = 2}, + [2022] = {.lex_state = 21, .external_lex_state = 3}, + [2023] = {.lex_state = 21, .external_lex_state = 4}, + [2024] = {.lex_state = 21, .external_lex_state = 4}, + [2025] = {.lex_state = 21, .external_lex_state = 3}, + [2026] = {.lex_state = 21, .external_lex_state = 4}, + [2027] = {.lex_state = 21, .external_lex_state = 3}, + [2028] = {.lex_state = 21, .external_lex_state = 4}, + [2029] = {.lex_state = 21, .external_lex_state = 4}, + [2030] = {.lex_state = 34, .external_lex_state = 2}, + [2031] = {.lex_state = 21, .external_lex_state = 4}, + [2032] = {.lex_state = 21, .external_lex_state = 4}, + [2033] = {.lex_state = 21, .external_lex_state = 4}, + [2034] = {.lex_state = 21, .external_lex_state = 3}, + [2035] = {.lex_state = 21, .external_lex_state = 4}, + [2036] = {.lex_state = 21, .external_lex_state = 3}, + [2037] = {.lex_state = 21, .external_lex_state = 4}, + [2038] = {.lex_state = 34, .external_lex_state = 2}, + [2039] = {.lex_state = 34, .external_lex_state = 2}, + [2040] = {.lex_state = 34, .external_lex_state = 2}, + [2041] = {.lex_state = 21, .external_lex_state = 4}, + [2042] = {.lex_state = 21, .external_lex_state = 4}, + [2043] = {.lex_state = 21, .external_lex_state = 3}, + [2044] = {.lex_state = 21, .external_lex_state = 3}, + [2045] = {.lex_state = 34, .external_lex_state = 2}, + [2046] = {.lex_state = 21, .external_lex_state = 3}, + [2047] = {.lex_state = 21, .external_lex_state = 3}, + [2048] = {.lex_state = 21, .external_lex_state = 4}, + [2049] = {.lex_state = 21, .external_lex_state = 3}, + [2050] = {.lex_state = 21, .external_lex_state = 3}, + [2051] = {.lex_state = 21, .external_lex_state = 3}, + [2052] = {.lex_state = 21, .external_lex_state = 4}, + [2053] = {.lex_state = 21, .external_lex_state = 3}, + [2054] = {.lex_state = 21, .external_lex_state = 4}, + [2055] = {.lex_state = 21, .external_lex_state = 3}, + [2056] = {.lex_state = 21, .external_lex_state = 3}, + [2057] = {.lex_state = 21, .external_lex_state = 4}, + [2058] = {.lex_state = 21, .external_lex_state = 4}, + [2059] = {.lex_state = 34, .external_lex_state = 2}, + [2060] = {.lex_state = 34, .external_lex_state = 2}, + [2061] = {.lex_state = 21, .external_lex_state = 4}, + [2062] = {.lex_state = 21, .external_lex_state = 4}, [2063] = {.lex_state = 21, .external_lex_state = 4}, - [2064] = {.lex_state = 15, .external_lex_state = 4}, + [2064] = {.lex_state = 34, .external_lex_state = 2}, [2065] = {.lex_state = 21, .external_lex_state = 3}, - [2066] = {.lex_state = 15, .external_lex_state = 4}, - [2067] = {.lex_state = 15, .external_lex_state = 4}, - [2068] = {.lex_state = 15, .external_lex_state = 4}, - [2069] = {.lex_state = 15, .external_lex_state = 4}, + [2066] = {.lex_state = 21, .external_lex_state = 4}, + [2067] = {.lex_state = 21, .external_lex_state = 4}, + [2068] = {.lex_state = 21, .external_lex_state = 3}, + [2069] = {.lex_state = 21, .external_lex_state = 4}, [2070] = {.lex_state = 21, .external_lex_state = 4}, - [2071] = {.lex_state = 15, .external_lex_state = 4}, - [2072] = {.lex_state = 15, .external_lex_state = 4}, - [2073] = {.lex_state = 15, .external_lex_state = 4}, + [2071] = {.lex_state = 21, .external_lex_state = 4}, + [2072] = {.lex_state = 21, .external_lex_state = 4}, + [2073] = {.lex_state = 21, .external_lex_state = 4}, [2074] = {.lex_state = 21, .external_lex_state = 4}, - [2075] = {.lex_state = 15, .external_lex_state = 4}, + [2075] = {.lex_state = 21, .external_lex_state = 4}, [2076] = {.lex_state = 21, .external_lex_state = 4}, - [2077] = {.lex_state = 15, .external_lex_state = 3}, + [2077] = {.lex_state = 21, .external_lex_state = 4}, [2078] = {.lex_state = 21, .external_lex_state = 4}, - [2079] = {.lex_state = 15, .external_lex_state = 4}, - [2080] = {.lex_state = 15, .external_lex_state = 4}, - [2081] = {.lex_state = 15, .external_lex_state = 3}, - [2082] = {.lex_state = 21, .external_lex_state = 3}, - [2083] = {.lex_state = 15, .external_lex_state = 4}, + [2079] = {.lex_state = 21, .external_lex_state = 3}, + [2080] = {.lex_state = 21, .external_lex_state = 4}, + [2081] = {.lex_state = 21, .external_lex_state = 4}, + [2082] = {.lex_state = 21, .external_lex_state = 4}, + [2083] = {.lex_state = 34, .external_lex_state = 2}, [2084] = {.lex_state = 21, .external_lex_state = 3}, [2085] = {.lex_state = 21, .external_lex_state = 3}, - [2086] = {.lex_state = 15, .external_lex_state = 4}, - [2087] = {.lex_state = 21, .external_lex_state = 4}, - [2088] = {.lex_state = 15, .external_lex_state = 4}, - [2089] = {.lex_state = 15, .external_lex_state = 4}, - [2090] = {.lex_state = 15, .external_lex_state = 4}, - [2091] = {.lex_state = 21, .external_lex_state = 3}, - [2092] = {.lex_state = 21, .external_lex_state = 4}, - [2093] = {.lex_state = 15, .external_lex_state = 4}, - [2094] = {.lex_state = 21, .external_lex_state = 3}, - [2095] = {.lex_state = 15, .external_lex_state = 4}, - [2096] = {.lex_state = 21, .external_lex_state = 3}, - [2097] = {.lex_state = 15, .external_lex_state = 3}, + [2086] = {.lex_state = 21, .external_lex_state = 3}, + [2087] = {.lex_state = 34, .external_lex_state = 2}, + [2088] = {.lex_state = 34, .external_lex_state = 2}, + [2089] = {.lex_state = 34, .external_lex_state = 2}, + [2090] = {.lex_state = 21, .external_lex_state = 3}, + [2091] = {.lex_state = 21, .external_lex_state = 4}, + [2092] = {.lex_state = 21, .external_lex_state = 3}, + [2093] = {.lex_state = 21, .external_lex_state = 4}, + [2094] = {.lex_state = 15, .external_lex_state = 4}, + [2095] = {.lex_state = 21, .external_lex_state = 3}, + [2096] = {.lex_state = 21, .external_lex_state = 4}, + [2097] = {.lex_state = 21, .external_lex_state = 3}, [2098] = {.lex_state = 21, .external_lex_state = 3}, - [2099] = {.lex_state = 15, .external_lex_state = 3}, - [2100] = {.lex_state = 18, .external_lex_state = 3}, + [2099] = {.lex_state = 21, .external_lex_state = 3}, + [2100] = {.lex_state = 21, .external_lex_state = 3}, [2101] = {.lex_state = 21, .external_lex_state = 3}, - [2102] = {.lex_state = 18, .external_lex_state = 3}, - [2103] = {.lex_state = 21, .external_lex_state = 4}, - [2104] = {.lex_state = 15, .external_lex_state = 3}, - [2105] = {.lex_state = 21, .external_lex_state = 3}, - [2106] = {.lex_state = 15, .external_lex_state = 3}, - [2107] = {.lex_state = 21, .external_lex_state = 3}, - [2108] = {.lex_state = 18, .external_lex_state = 3}, - [2109] = {.lex_state = 21, .external_lex_state = 4}, - [2110] = {.lex_state = 21, .external_lex_state = 4}, - [2111] = {.lex_state = 15, .external_lex_state = 3}, - [2112] = {.lex_state = 21, .external_lex_state = 3}, - [2113] = {.lex_state = 18, .external_lex_state = 3}, + [2102] = {.lex_state = 21, .external_lex_state = 3}, + [2103] = {.lex_state = 34, .external_lex_state = 2}, + [2104] = {.lex_state = 34, .external_lex_state = 2}, + [2105] = {.lex_state = 15, .external_lex_state = 4}, + [2106] = {.lex_state = 34, .external_lex_state = 2}, + [2107] = {.lex_state = 34, .external_lex_state = 2}, + [2108] = {.lex_state = 34, .external_lex_state = 2}, + [2109] = {.lex_state = 34, .external_lex_state = 2}, + [2110] = {.lex_state = 34, .external_lex_state = 2}, + [2111] = {.lex_state = 21, .external_lex_state = 3}, + [2112] = {.lex_state = 15, .external_lex_state = 4}, + [2113] = {.lex_state = 21, .external_lex_state = 3}, [2114] = {.lex_state = 21, .external_lex_state = 3}, [2115] = {.lex_state = 21, .external_lex_state = 3}, - [2116] = {.lex_state = 15, .external_lex_state = 3}, - [2117] = {.lex_state = 21, .external_lex_state = 3}, - [2118] = {.lex_state = 15, .external_lex_state = 3}, - [2119] = {.lex_state = 15, .external_lex_state = 3}, - [2120] = {.lex_state = 21, .external_lex_state = 3}, - [2121] = {.lex_state = 15, .external_lex_state = 3}, - [2122] = {.lex_state = 15, .external_lex_state = 3}, + [2116] = {.lex_state = 21, .external_lex_state = 3}, + [2117] = {.lex_state = 15, .external_lex_state = 4}, + [2118] = {.lex_state = 21, .external_lex_state = 3}, + [2119] = {.lex_state = 21, .external_lex_state = 3}, + [2120] = {.lex_state = 15, .external_lex_state = 4}, + [2121] = {.lex_state = 21, .external_lex_state = 3}, + [2122] = {.lex_state = 15, .external_lex_state = 4}, [2123] = {.lex_state = 21, .external_lex_state = 3}, - [2124] = {.lex_state = 34, .external_lex_state = 2}, - [2125] = {.lex_state = 15, .external_lex_state = 3}, - [2126] = {.lex_state = 21, .external_lex_state = 3}, + [2124] = {.lex_state = 21, .external_lex_state = 3}, + [2125] = {.lex_state = 21, .external_lex_state = 3}, + [2126] = {.lex_state = 34, .external_lex_state = 2}, [2127] = {.lex_state = 21, .external_lex_state = 3}, - [2128] = {.lex_state = 21, .external_lex_state = 4}, - [2129] = {.lex_state = 15, .external_lex_state = 3}, - [2130] = {.lex_state = 21, .external_lex_state = 4}, - [2131] = {.lex_state = 15, .external_lex_state = 3}, + [2128] = {.lex_state = 21, .external_lex_state = 3}, + [2129] = {.lex_state = 21, .external_lex_state = 4}, + [2130] = {.lex_state = 35, .external_lex_state = 2}, + [2131] = {.lex_state = 35, .external_lex_state = 2}, [2132] = {.lex_state = 21, .external_lex_state = 4}, - [2133] = {.lex_state = 34, .external_lex_state = 2}, - [2134] = {.lex_state = 21, .external_lex_state = 3}, - [2135] = {.lex_state = 21, .external_lex_state = 3}, - [2136] = {.lex_state = 21, .external_lex_state = 3}, - [2137] = {.lex_state = 21, .external_lex_state = 3}, - [2138] = {.lex_state = 15, .external_lex_state = 3}, - [2139] = {.lex_state = 34, .external_lex_state = 2}, + [2133] = {.lex_state = 21, .external_lex_state = 3}, + [2134] = {.lex_state = 21, .external_lex_state = 4}, + [2135] = {.lex_state = 35, .external_lex_state = 2}, + [2136] = {.lex_state = 35, .external_lex_state = 2}, + [2137] = {.lex_state = 21, .external_lex_state = 4}, + [2138] = {.lex_state = 21, .external_lex_state = 4}, + [2139] = {.lex_state = 35, .external_lex_state = 2}, [2140] = {.lex_state = 21, .external_lex_state = 4}, - [2141] = {.lex_state = 21, .external_lex_state = 3}, - [2142] = {.lex_state = 15, .external_lex_state = 3}, - [2143] = {.lex_state = 15, .external_lex_state = 3}, - [2144] = {.lex_state = 15, .external_lex_state = 4}, + [2141] = {.lex_state = 35, .external_lex_state = 2}, + [2142] = {.lex_state = 35, .external_lex_state = 2}, + [2143] = {.lex_state = 35, .external_lex_state = 2}, + [2144] = {.lex_state = 21, .external_lex_state = 3}, [2145] = {.lex_state = 21, .external_lex_state = 3}, [2146] = {.lex_state = 21, .external_lex_state = 3}, [2147] = {.lex_state = 21, .external_lex_state = 3}, [2148] = {.lex_state = 21, .external_lex_state = 3}, - [2149] = {.lex_state = 15, .external_lex_state = 4}, + [2149] = {.lex_state = 21, .external_lex_state = 3}, [2150] = {.lex_state = 21, .external_lex_state = 3}, - [2151] = {.lex_state = 15, .external_lex_state = 4}, + [2151] = {.lex_state = 35, .external_lex_state = 2}, [2152] = {.lex_state = 21, .external_lex_state = 3}, [2153] = {.lex_state = 21, .external_lex_state = 3}, - [2154] = {.lex_state = 34, .external_lex_state = 2}, + [2154] = {.lex_state = 21, .external_lex_state = 3}, [2155] = {.lex_state = 21, .external_lex_state = 3}, [2156] = {.lex_state = 21, .external_lex_state = 3}, - [2157] = {.lex_state = 15, .external_lex_state = 4}, + [2157] = {.lex_state = 21, .external_lex_state = 3}, [2158] = {.lex_state = 21, .external_lex_state = 3}, - [2159] = {.lex_state = 34, .external_lex_state = 2}, - [2160] = {.lex_state = 21, .external_lex_state = 4}, - [2161] = {.lex_state = 21, .external_lex_state = 4}, - [2162] = {.lex_state = 34, .external_lex_state = 2}, - [2163] = {.lex_state = 15, .external_lex_state = 4}, + [2159] = {.lex_state = 21, .external_lex_state = 4}, + [2160] = {.lex_state = 21, .external_lex_state = 3}, + [2161] = {.lex_state = 21, .external_lex_state = 3}, + [2162] = {.lex_state = 21, .external_lex_state = 3}, + [2163] = {.lex_state = 21, .external_lex_state = 3}, [2164] = {.lex_state = 21, .external_lex_state = 3}, [2165] = {.lex_state = 21, .external_lex_state = 3}, - [2166] = {.lex_state = 21, .external_lex_state = 4}, + [2166] = {.lex_state = 21, .external_lex_state = 3}, [2167] = {.lex_state = 21, .external_lex_state = 3}, [2168] = {.lex_state = 21, .external_lex_state = 3}, - [2169] = {.lex_state = 21, .external_lex_state = 4}, - [2170] = {.lex_state = 34, .external_lex_state = 2}, + [2169] = {.lex_state = 35, .external_lex_state = 2}, + [2170] = {.lex_state = 21, .external_lex_state = 3}, [2171] = {.lex_state = 21, .external_lex_state = 3}, - [2172] = {.lex_state = 21, .external_lex_state = 4}, - [2173] = {.lex_state = 34, .external_lex_state = 2}, - [2174] = {.lex_state = 21, .external_lex_state = 4}, + [2172] = {.lex_state = 21, .external_lex_state = 3}, + [2173] = {.lex_state = 35, .external_lex_state = 2}, + [2174] = {.lex_state = 21, .external_lex_state = 3}, [2175] = {.lex_state = 21, .external_lex_state = 3}, - [2176] = {.lex_state = 21, .external_lex_state = 4}, - [2177] = {.lex_state = 21, .external_lex_state = 4}, - [2178] = {.lex_state = 21, .external_lex_state = 4}, - [2179] = {.lex_state = 21, .external_lex_state = 4}, - [2180] = {.lex_state = 21, .external_lex_state = 4}, - [2181] = {.lex_state = 21, .external_lex_state = 3}, + [2176] = {.lex_state = 35, .external_lex_state = 2}, + [2177] = {.lex_state = 21, .external_lex_state = 3}, + [2178] = {.lex_state = 21, .external_lex_state = 3}, + [2179] = {.lex_state = 35, .external_lex_state = 2}, + [2180] = {.lex_state = 35, .external_lex_state = 2}, + [2181] = {.lex_state = 35, .external_lex_state = 2}, [2182] = {.lex_state = 21, .external_lex_state = 3}, - [2183] = {.lex_state = 21, .external_lex_state = 4}, - [2184] = {.lex_state = 21, .external_lex_state = 3}, - [2185] = {.lex_state = 21, .external_lex_state = 4}, + [2183] = {.lex_state = 35, .external_lex_state = 2}, + [2184] = {.lex_state = 35, .external_lex_state = 2}, + [2185] = {.lex_state = 35, .external_lex_state = 2}, [2186] = {.lex_state = 21, .external_lex_state = 3}, - [2187] = {.lex_state = 34, .external_lex_state = 2}, - [2188] = {.lex_state = 21, .external_lex_state = 4}, - [2189] = {.lex_state = 34, .external_lex_state = 2}, - [2190] = {.lex_state = 21, .external_lex_state = 3}, + [2187] = {.lex_state = 21, .external_lex_state = 3}, + [2188] = {.lex_state = 35, .external_lex_state = 2}, + [2189] = {.lex_state = 21, .external_lex_state = 3}, + [2190] = {.lex_state = 35, .external_lex_state = 2}, [2191] = {.lex_state = 21, .external_lex_state = 3}, - [2192] = {.lex_state = 21, .external_lex_state = 4}, + [2192] = {.lex_state = 35, .external_lex_state = 2}, [2193] = {.lex_state = 21, .external_lex_state = 3}, - [2194] = {.lex_state = 21, .external_lex_state = 3}, - [2195] = {.lex_state = 21, .external_lex_state = 4}, - [2196] = {.lex_state = 21, .external_lex_state = 4}, - [2197] = {.lex_state = 21, .external_lex_state = 4}, - [2198] = {.lex_state = 21, .external_lex_state = 3}, - [2199] = {.lex_state = 34, .external_lex_state = 2}, - [2200] = {.lex_state = 21, .external_lex_state = 3}, - [2201] = {.lex_state = 34, .external_lex_state = 2}, - [2202] = {.lex_state = 21, .external_lex_state = 4}, - [2203] = {.lex_state = 34, .external_lex_state = 2}, - [2204] = {.lex_state = 21, .external_lex_state = 4}, + [2194] = {.lex_state = 35, .external_lex_state = 2}, + [2195] = {.lex_state = 21, .external_lex_state = 3}, + [2196] = {.lex_state = 21, .external_lex_state = 3}, + [2197] = {.lex_state = 35, .external_lex_state = 2}, + [2198] = {.lex_state = 35, .external_lex_state = 2}, + [2199] = {.lex_state = 35, .external_lex_state = 2}, + [2200] = {.lex_state = 35, .external_lex_state = 2}, + [2201] = {.lex_state = 35, .external_lex_state = 2}, + [2202] = {.lex_state = 35, .external_lex_state = 2}, + [2203] = {.lex_state = 21, .external_lex_state = 3}, + [2204] = {.lex_state = 35, .external_lex_state = 2}, [2205] = {.lex_state = 21, .external_lex_state = 3}, - [2206] = {.lex_state = 34, .external_lex_state = 2}, - [2207] = {.lex_state = 34, .external_lex_state = 2}, - [2208] = {.lex_state = 21, .external_lex_state = 4}, + [2206] = {.lex_state = 35, .external_lex_state = 2}, + [2207] = {.lex_state = 35, .external_lex_state = 2}, + [2208] = {.lex_state = 35, .external_lex_state = 2}, [2209] = {.lex_state = 21, .external_lex_state = 3}, - [2210] = {.lex_state = 21, .external_lex_state = 4}, + [2210] = {.lex_state = 21, .external_lex_state = 3}, [2211] = {.lex_state = 21, .external_lex_state = 3}, - [2212] = {.lex_state = 21, .external_lex_state = 4}, - [2213] = {.lex_state = 21, .external_lex_state = 4}, - [2214] = {.lex_state = 21, .external_lex_state = 4}, - [2215] = {.lex_state = 21, .external_lex_state = 3}, - [2216] = {.lex_state = 21, .external_lex_state = 3}, - [2217] = {.lex_state = 21, .external_lex_state = 4}, - [2218] = {.lex_state = 21, .external_lex_state = 4}, - [2219] = {.lex_state = 21, .external_lex_state = 4}, - [2220] = {.lex_state = 21, .external_lex_state = 4}, + [2212] = {.lex_state = 21, .external_lex_state = 3}, + [2213] = {.lex_state = 21, .external_lex_state = 3}, + [2214] = {.lex_state = 21, .external_lex_state = 3}, + [2215] = {.lex_state = 35, .external_lex_state = 2}, + [2216] = {.lex_state = 35, .external_lex_state = 2}, + [2217] = {.lex_state = 21, .external_lex_state = 3}, + [2218] = {.lex_state = 35, .external_lex_state = 2}, + [2219] = {.lex_state = 21, .external_lex_state = 3}, + [2220] = {.lex_state = 35, .external_lex_state = 2}, [2221] = {.lex_state = 21, .external_lex_state = 3}, - [2222] = {.lex_state = 21, .external_lex_state = 4}, - [2223] = {.lex_state = 21, .external_lex_state = 4}, - [2224] = {.lex_state = 21, .external_lex_state = 4}, - [2225] = {.lex_state = 21, .external_lex_state = 4}, - [2226] = {.lex_state = 34, .external_lex_state = 2}, - [2227] = {.lex_state = 21, .external_lex_state = 4}, - [2228] = {.lex_state = 21, .external_lex_state = 4}, - [2229] = {.lex_state = 21, .external_lex_state = 4}, - [2230] = {.lex_state = 21, .external_lex_state = 4}, - [2231] = {.lex_state = 21, .external_lex_state = 4}, - [2232] = {.lex_state = 34, .external_lex_state = 2}, - [2233] = {.lex_state = 21, .external_lex_state = 3}, - [2234] = {.lex_state = 15, .external_lex_state = 4}, - [2235] = {.lex_state = 34, .external_lex_state = 2}, - [2236] = {.lex_state = 34, .external_lex_state = 2}, - [2237] = {.lex_state = 15, .external_lex_state = 4}, - [2238] = {.lex_state = 21, .external_lex_state = 3}, - [2239] = {.lex_state = 15, .external_lex_state = 4}, - [2240] = {.lex_state = 21, .external_lex_state = 3}, - [2241] = {.lex_state = 21, .external_lex_state = 3}, - [2242] = {.lex_state = 21, .external_lex_state = 3}, - [2243] = {.lex_state = 21, .external_lex_state = 3}, - [2244] = {.lex_state = 21, .external_lex_state = 3}, - [2245] = {.lex_state = 21, .external_lex_state = 3}, - [2246] = {.lex_state = 34, .external_lex_state = 2}, - [2247] = {.lex_state = 34, .external_lex_state = 2}, - [2248] = {.lex_state = 21, .external_lex_state = 3}, - [2249] = {.lex_state = 21, .external_lex_state = 3}, - [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 = 34, .external_lex_state = 2}, - [2254] = {.lex_state = 21, .external_lex_state = 3}, - [2255] = {.lex_state = 34, .external_lex_state = 2}, - [2256] = {.lex_state = 21, .external_lex_state = 3}, - [2257] = {.lex_state = 34, .external_lex_state = 2}, - [2258] = {.lex_state = 21, .external_lex_state = 4}, - [2259] = {.lex_state = 21, .external_lex_state = 3}, - [2260] = {.lex_state = 21, .external_lex_state = 3}, - [2261] = {.lex_state = 34, .external_lex_state = 2}, - [2262] = {.lex_state = 21, .external_lex_state = 3}, - [2263] = {.lex_state = 21, .external_lex_state = 4}, - [2264] = {.lex_state = 21, .external_lex_state = 3}, - [2265] = {.lex_state = 21, .external_lex_state = 3}, - [2266] = {.lex_state = 21, .external_lex_state = 3}, - [2267] = {.lex_state = 15, .external_lex_state = 4}, - [2268] = {.lex_state = 34, .external_lex_state = 2}, - [2269] = {.lex_state = 34, .external_lex_state = 2}, - [2270] = {.lex_state = 21, .external_lex_state = 3}, - [2271] = {.lex_state = 21, .external_lex_state = 4}, - [2272] = {.lex_state = 21, .external_lex_state = 3}, - [2273] = {.lex_state = 15, .external_lex_state = 4}, - [2274] = {.lex_state = 15, .external_lex_state = 4}, - [2275] = {.lex_state = 35, .external_lex_state = 2}, - [2276] = {.lex_state = 21, .external_lex_state = 3}, - [2277] = {.lex_state = 21, .external_lex_state = 3}, - [2278] = {.lex_state = 21, .external_lex_state = 4}, - [2279] = {.lex_state = 21, .external_lex_state = 3}, + [2222] = {.lex_state = 21, .external_lex_state = 3}, + [2223] = {.lex_state = 21, .external_lex_state = 3}, + [2224] = {.lex_state = 21, .external_lex_state = 3}, + [2225] = {.lex_state = 21, .external_lex_state = 3}, + [2226] = {.lex_state = 21, .external_lex_state = 3}, + [2227] = {.lex_state = 21, .external_lex_state = 3}, + [2228] = {.lex_state = 21, .external_lex_state = 3}, + [2229] = {.lex_state = 21, .external_lex_state = 3}, + [2230] = {.lex_state = 21, .external_lex_state = 3}, + [2231] = {.lex_state = 21, .external_lex_state = 3}, + [2232] = {.lex_state = 21, .external_lex_state = 3}, + [2233] = {.lex_state = 35, .external_lex_state = 2}, + [2234] = {.lex_state = 35, .external_lex_state = 2}, + [2235] = {.lex_state = 35, .external_lex_state = 2}, + [2236] = {.lex_state = 35, .external_lex_state = 2}, + [2237] = {.lex_state = 35, .external_lex_state = 2}, + [2238] = {.lex_state = 35, .external_lex_state = 2}, + [2239] = {.lex_state = 35, .external_lex_state = 2}, + [2240] = {.lex_state = 35, .external_lex_state = 2}, + [2241] = {.lex_state = 35, .external_lex_state = 2}, + [2242] = {.lex_state = 35, .external_lex_state = 2}, + [2243] = {.lex_state = 45, .external_lex_state = 5}, + [2244] = {.lex_state = 45, .external_lex_state = 5}, + [2245] = {.lex_state = 45, .external_lex_state = 5}, + [2246] = {.lex_state = 45, .external_lex_state = 5}, + [2247] = {.lex_state = 45, .external_lex_state = 5}, + [2248] = {.lex_state = 35, .external_lex_state = 2}, + [2249] = {.lex_state = 35, .external_lex_state = 2}, + [2250] = {.lex_state = 35, .external_lex_state = 2}, + [2251] = {.lex_state = 36, .external_lex_state = 2}, + [2252] = {.lex_state = 35, .external_lex_state = 2}, + [2253] = {.lex_state = 35, .external_lex_state = 2}, + [2254] = {.lex_state = 35, .external_lex_state = 2}, + [2255] = {.lex_state = 35, .external_lex_state = 2}, + [2256] = {.lex_state = 35, .external_lex_state = 2}, + [2257] = {.lex_state = 35, .external_lex_state = 2}, + [2258] = {.lex_state = 35, .external_lex_state = 2}, + [2259] = {.lex_state = 35, .external_lex_state = 2}, + [2260] = {.lex_state = 36, .external_lex_state = 2}, + [2261] = {.lex_state = 35, .external_lex_state = 2}, + [2262] = {.lex_state = 36, .external_lex_state = 2}, + [2263] = {.lex_state = 35, .external_lex_state = 2}, + [2264] = {.lex_state = 35, .external_lex_state = 2}, + [2265] = {.lex_state = 35, .external_lex_state = 2}, + [2266] = {.lex_state = 35, .external_lex_state = 2}, + [2267] = {.lex_state = 35, .external_lex_state = 2}, + [2268] = {.lex_state = 35, .external_lex_state = 2}, + [2269] = {.lex_state = 35, .external_lex_state = 2}, + [2270] = {.lex_state = 36, .external_lex_state = 2}, + [2271] = {.lex_state = 35, .external_lex_state = 2}, + [2272] = {.lex_state = 35, .external_lex_state = 2}, + [2273] = {.lex_state = 35, .external_lex_state = 2}, + [2274] = {.lex_state = 35, .external_lex_state = 2}, + [2275] = {.lex_state = 36, .external_lex_state = 2}, + [2276] = {.lex_state = 35, .external_lex_state = 2}, + [2277] = {.lex_state = 35, .external_lex_state = 2}, + [2278] = {.lex_state = 35, .external_lex_state = 2}, + [2279] = {.lex_state = 35, .external_lex_state = 2}, [2280] = {.lex_state = 35, .external_lex_state = 2}, - [2281] = {.lex_state = 21, .external_lex_state = 4}, - [2282] = {.lex_state = 21, .external_lex_state = 4}, - [2283] = {.lex_state = 35, .external_lex_state = 2}, - [2284] = {.lex_state = 21, .external_lex_state = 3}, + [2281] = {.lex_state = 35, .external_lex_state = 2}, + [2282] = {.lex_state = 35, .external_lex_state = 2}, + [2283] = {.lex_state = 36, .external_lex_state = 2}, + [2284] = {.lex_state = 36, .external_lex_state = 2}, [2285] = {.lex_state = 35, .external_lex_state = 2}, - [2286] = {.lex_state = 21, .external_lex_state = 3}, - [2287] = {.lex_state = 21, .external_lex_state = 3}, - [2288] = {.lex_state = 35, .external_lex_state = 2}, - [2289] = {.lex_state = 35, .external_lex_state = 2}, - [2290] = {.lex_state = 21, .external_lex_state = 3}, - [2291] = {.lex_state = 21, .external_lex_state = 3}, - [2292] = {.lex_state = 35, .external_lex_state = 2}, - [2293] = {.lex_state = 21, .external_lex_state = 4}, - [2294] = {.lex_state = 21, .external_lex_state = 4}, - [2295] = {.lex_state = 21, .external_lex_state = 4}, - [2296] = {.lex_state = 21, .external_lex_state = 3}, - [2297] = {.lex_state = 35, .external_lex_state = 2}, - [2298] = {.lex_state = 21, .external_lex_state = 3}, - [2299] = {.lex_state = 35, .external_lex_state = 2}, - [2300] = {.lex_state = 21, .external_lex_state = 3}, - [2301] = {.lex_state = 21, .external_lex_state = 3}, - [2302] = {.lex_state = 21, .external_lex_state = 4}, - [2303] = {.lex_state = 21, .external_lex_state = 3}, - [2304] = {.lex_state = 21, .external_lex_state = 3}, - [2305] = {.lex_state = 21, .external_lex_state = 3}, - [2306] = {.lex_state = 21, .external_lex_state = 3}, - [2307] = {.lex_state = 21, .external_lex_state = 3}, - [2308] = {.lex_state = 21, .external_lex_state = 3}, - [2309] = {.lex_state = 21, .external_lex_state = 3}, - [2310] = {.lex_state = 21, .external_lex_state = 3}, - [2311] = {.lex_state = 21, .external_lex_state = 3}, - [2312] = {.lex_state = 21, .external_lex_state = 3}, - [2313] = {.lex_state = 21, .external_lex_state = 3}, - [2314] = {.lex_state = 21, .external_lex_state = 3}, - [2315] = {.lex_state = 21, .external_lex_state = 3}, - [2316] = {.lex_state = 21, .external_lex_state = 3}, - [2317] = {.lex_state = 35, .external_lex_state = 2}, - [2318] = {.lex_state = 35, .external_lex_state = 2}, - [2319] = {.lex_state = 21, .external_lex_state = 3}, - [2320] = {.lex_state = 21, .external_lex_state = 3}, - [2321] = {.lex_state = 35, .external_lex_state = 2}, - [2322] = {.lex_state = 21, .external_lex_state = 3}, - [2323] = {.lex_state = 21, .external_lex_state = 3}, - [2324] = {.lex_state = 35, .external_lex_state = 2}, - [2325] = {.lex_state = 21, .external_lex_state = 3}, - [2326] = {.lex_state = 35, .external_lex_state = 2}, - [2327] = {.lex_state = 35, .external_lex_state = 2}, - [2328] = {.lex_state = 35, .external_lex_state = 2}, - [2329] = {.lex_state = 21, .external_lex_state = 3}, - [2330] = {.lex_state = 21, .external_lex_state = 3}, - [2331] = {.lex_state = 21, .external_lex_state = 3}, - [2332] = {.lex_state = 21, .external_lex_state = 3}, - [2333] = {.lex_state = 35, .external_lex_state = 2}, - [2334] = {.lex_state = 21, .external_lex_state = 3}, - [2335] = {.lex_state = 21, .external_lex_state = 3}, - [2336] = {.lex_state = 21, .external_lex_state = 3}, - [2337] = {.lex_state = 35, .external_lex_state = 2}, - [2338] = {.lex_state = 35, .external_lex_state = 2}, - [2339] = {.lex_state = 21, .external_lex_state = 3}, - [2340] = {.lex_state = 35, .external_lex_state = 2}, - [2341] = {.lex_state = 21, .external_lex_state = 3}, - [2342] = {.lex_state = 21, .external_lex_state = 3}, - [2343] = {.lex_state = 21, .external_lex_state = 3}, - [2344] = {.lex_state = 21, .external_lex_state = 3}, - [2345] = {.lex_state = 35, .external_lex_state = 2}, - [2346] = {.lex_state = 35, .external_lex_state = 2}, - [2347] = {.lex_state = 35, .external_lex_state = 2}, - [2348] = {.lex_state = 21, .external_lex_state = 3}, - [2349] = {.lex_state = 21, .external_lex_state = 3}, - [2350] = {.lex_state = 35, .external_lex_state = 2}, - [2351] = {.lex_state = 35, .external_lex_state = 2}, - [2352] = {.lex_state = 21, .external_lex_state = 3}, - [2353] = {.lex_state = 21, .external_lex_state = 3}, - [2354] = {.lex_state = 21, .external_lex_state = 3}, - [2355] = {.lex_state = 35, .external_lex_state = 2}, - [2356] = {.lex_state = 35, .external_lex_state = 2}, - [2357] = {.lex_state = 35, .external_lex_state = 2}, - [2358] = {.lex_state = 21, .external_lex_state = 3}, - [2359] = {.lex_state = 35, .external_lex_state = 2}, - [2360] = {.lex_state = 35, .external_lex_state = 2}, - [2361] = {.lex_state = 35, .external_lex_state = 2}, - [2362] = {.lex_state = 21, .external_lex_state = 3}, - [2363] = {.lex_state = 21, .external_lex_state = 3}, - [2364] = {.lex_state = 35, .external_lex_state = 2}, - [2365] = {.lex_state = 35, .external_lex_state = 2}, - [2366] = {.lex_state = 21, .external_lex_state = 3}, - [2367] = {.lex_state = 35, .external_lex_state = 2}, - [2368] = {.lex_state = 35, .external_lex_state = 2}, - [2369] = {.lex_state = 35, .external_lex_state = 2}, - [2370] = {.lex_state = 21, .external_lex_state = 3}, - [2371] = {.lex_state = 21, .external_lex_state = 3}, - [2372] = {.lex_state = 21, .external_lex_state = 3}, - [2373] = {.lex_state = 21, .external_lex_state = 3}, - [2374] = {.lex_state = 21, .external_lex_state = 3}, - [2375] = {.lex_state = 21, .external_lex_state = 3}, - [2376] = {.lex_state = 21, .external_lex_state = 3}, - [2377] = {.lex_state = 21, .external_lex_state = 3}, - [2378] = {.lex_state = 21, .external_lex_state = 3}, - [2379] = {.lex_state = 21, .external_lex_state = 3}, - [2380] = {.lex_state = 21, .external_lex_state = 3}, - [2381] = {.lex_state = 35, .external_lex_state = 2}, - [2382] = {.lex_state = 35, .external_lex_state = 2}, - [2383] = {.lex_state = 35, .external_lex_state = 2}, - [2384] = {.lex_state = 35, .external_lex_state = 2}, - [2385] = {.lex_state = 35, .external_lex_state = 2}, - [2386] = {.lex_state = 35, .external_lex_state = 2}, - [2387] = {.lex_state = 35, .external_lex_state = 2}, - [2388] = {.lex_state = 35, .external_lex_state = 2}, - [2389] = {.lex_state = 35, .external_lex_state = 2}, - [2390] = {.lex_state = 35, .external_lex_state = 2}, - [2391] = {.lex_state = 45, .external_lex_state = 5}, - [2392] = {.lex_state = 45, .external_lex_state = 5}, - [2393] = {.lex_state = 45, .external_lex_state = 5}, - [2394] = {.lex_state = 45, .external_lex_state = 5}, - [2395] = {.lex_state = 45, .external_lex_state = 5}, - [2396] = {.lex_state = 35, .external_lex_state = 2}, - [2397] = {.lex_state = 35, .external_lex_state = 2}, - [2398] = {.lex_state = 35, .external_lex_state = 2}, - [2399] = {.lex_state = 36, .external_lex_state = 2}, - [2400] = {.lex_state = 35, .external_lex_state = 2}, - [2401] = {.lex_state = 35, .external_lex_state = 2}, - [2402] = {.lex_state = 35, .external_lex_state = 2}, - [2403] = {.lex_state = 35, .external_lex_state = 2}, - [2404] = {.lex_state = 36, .external_lex_state = 2}, - [2405] = {.lex_state = 35, .external_lex_state = 2}, - [2406] = {.lex_state = 35, .external_lex_state = 2}, - [2407] = {.lex_state = 35, .external_lex_state = 2}, - [2408] = {.lex_state = 35, .external_lex_state = 2}, - [2409] = {.lex_state = 35, .external_lex_state = 2}, - [2410] = {.lex_state = 35, .external_lex_state = 2}, - [2411] = {.lex_state = 36, .external_lex_state = 2}, - [2412] = {.lex_state = 36, .external_lex_state = 2}, - [2413] = {.lex_state = 35, .external_lex_state = 2}, - [2414] = {.lex_state = 35, .external_lex_state = 2}, - [2415] = {.lex_state = 36, .external_lex_state = 2}, - [2416] = {.lex_state = 35, .external_lex_state = 2}, - [2417] = {.lex_state = 35, .external_lex_state = 2}, - [2418] = {.lex_state = 35, .external_lex_state = 2}, - [2419] = {.lex_state = 35, .external_lex_state = 2}, - [2420] = {.lex_state = 35, .external_lex_state = 2}, - [2421] = {.lex_state = 36, .external_lex_state = 2}, - [2422] = {.lex_state = 35, .external_lex_state = 2}, - [2423] = {.lex_state = 35, .external_lex_state = 2}, - [2424] = {.lex_state = 35, .external_lex_state = 2}, - [2425] = {.lex_state = 35, .external_lex_state = 2}, - [2426] = {.lex_state = 35, .external_lex_state = 2}, - [2427] = {.lex_state = 35, .external_lex_state = 2}, - [2428] = {.lex_state = 35, .external_lex_state = 2}, - [2429] = {.lex_state = 36, .external_lex_state = 2}, - [2430] = {.lex_state = 35, .external_lex_state = 2}, - [2431] = {.lex_state = 35, .external_lex_state = 2}, - [2432] = {.lex_state = 35, .external_lex_state = 2}, - [2433] = {.lex_state = 35, .external_lex_state = 2}, - [2434] = {.lex_state = 35, .external_lex_state = 2}, - [2435] = {.lex_state = 35, .external_lex_state = 2}, - [2436] = {.lex_state = 26, .external_lex_state = 4}, - [2437] = {.lex_state = 45, .external_lex_state = 5}, - [2438] = {.lex_state = 26, .external_lex_state = 4}, - [2439] = {.lex_state = 45, .external_lex_state = 5}, + [2286] = {.lex_state = 35, .external_lex_state = 2}, + [2287] = {.lex_state = 35, .external_lex_state = 2}, + [2288] = {.lex_state = 26, .external_lex_state = 4}, + [2289] = {.lex_state = 45, .external_lex_state = 5}, + [2290] = {.lex_state = 45, .external_lex_state = 5}, + [2291] = {.lex_state = 26, .external_lex_state = 4}, + [2292] = {.lex_state = 26, .external_lex_state = 3}, + [2293] = {.lex_state = 26, .external_lex_state = 3}, + [2294] = {.lex_state = 36, .external_lex_state = 2}, + [2295] = {.lex_state = 26, .external_lex_state = 3}, + [2296] = {.lex_state = 26, .external_lex_state = 3}, + [2297] = {.lex_state = 26, .external_lex_state = 3}, + [2298] = {.lex_state = 26, .external_lex_state = 3}, + [2299] = {.lex_state = 26, .external_lex_state = 3}, + [2300] = {.lex_state = 26, .external_lex_state = 4}, + [2301] = {.lex_state = 26, .external_lex_state = 4}, + [2302] = {.lex_state = 26, .external_lex_state = 3}, + [2303] = {.lex_state = 26, .external_lex_state = 3}, + [2304] = {.lex_state = 26, .external_lex_state = 4}, + [2305] = {.lex_state = 26, .external_lex_state = 3}, + [2306] = {.lex_state = 26, .external_lex_state = 3}, + [2307] = {.lex_state = 26, .external_lex_state = 3}, + [2308] = {.lex_state = 26, .external_lex_state = 4}, + [2309] = {.lex_state = 26, .external_lex_state = 3}, + [2310] = {.lex_state = 26, .external_lex_state = 3}, + [2311] = {.lex_state = 26, .external_lex_state = 3}, + [2312] = {.lex_state = 26, .external_lex_state = 3}, + [2313] = {.lex_state = 26, .external_lex_state = 3}, + [2314] = {.lex_state = 26, .external_lex_state = 3}, + [2315] = {.lex_state = 26, .external_lex_state = 3}, + [2316] = {.lex_state = 26, .external_lex_state = 3}, + [2317] = {.lex_state = 26, .external_lex_state = 3}, + [2318] = {.lex_state = 26, .external_lex_state = 3}, + [2319] = {.lex_state = 26, .external_lex_state = 3}, + [2320] = {.lex_state = 26, .external_lex_state = 3}, + [2321] = {.lex_state = 26, .external_lex_state = 3}, + [2322] = {.lex_state = 26, .external_lex_state = 3}, + [2323] = {.lex_state = 26, .external_lex_state = 3}, + [2324] = {.lex_state = 26, .external_lex_state = 3}, + [2325] = {.lex_state = 26, .external_lex_state = 3}, + [2326] = {.lex_state = 26, .external_lex_state = 3}, + [2327] = {.lex_state = 26, .external_lex_state = 3}, + [2328] = {.lex_state = 36, .external_lex_state = 5}, + [2329] = {.lex_state = 26, .external_lex_state = 3}, + [2330] = {.lex_state = 26, .external_lex_state = 3}, + [2331] = {.lex_state = 26, .external_lex_state = 3}, + [2332] = {.lex_state = 26, .external_lex_state = 3}, + [2333] = {.lex_state = 26, .external_lex_state = 3}, + [2334] = {.lex_state = 26, .external_lex_state = 4}, + [2335] = {.lex_state = 26, .external_lex_state = 3}, + [2336] = {.lex_state = 26, .external_lex_state = 3}, + [2337] = {.lex_state = 26, .external_lex_state = 3}, + [2338] = {.lex_state = 26, .external_lex_state = 3}, + [2339] = {.lex_state = 26, .external_lex_state = 3}, + [2340] = {.lex_state = 26, .external_lex_state = 3}, + [2341] = {.lex_state = 26, .external_lex_state = 3}, + [2342] = {.lex_state = 26, .external_lex_state = 3}, + [2343] = {.lex_state = 26, .external_lex_state = 3}, + [2344] = {.lex_state = 26, .external_lex_state = 3}, + [2345] = {.lex_state = 26, .external_lex_state = 3}, + [2346] = {.lex_state = 26, .external_lex_state = 3}, + [2347] = {.lex_state = 26, .external_lex_state = 3}, + [2348] = {.lex_state = 26, .external_lex_state = 3}, + [2349] = {.lex_state = 26, .external_lex_state = 3}, + [2350] = {.lex_state = 26, .external_lex_state = 3}, + [2351] = {.lex_state = 26, .external_lex_state = 3}, + [2352] = {.lex_state = 26, .external_lex_state = 3}, + [2353] = {.lex_state = 26, .external_lex_state = 3}, + [2354] = {.lex_state = 26, .external_lex_state = 3}, + [2355] = {.lex_state = 26, .external_lex_state = 3}, + [2356] = {.lex_state = 26, .external_lex_state = 3}, + [2357] = {.lex_state = 26, .external_lex_state = 3}, + [2358] = {.lex_state = 26, .external_lex_state = 3}, + [2359] = {.lex_state = 26, .external_lex_state = 3}, + [2360] = {.lex_state = 26, .external_lex_state = 3}, + [2361] = {.lex_state = 26, .external_lex_state = 3}, + [2362] = {.lex_state = 26, .external_lex_state = 3}, + [2363] = {.lex_state = 26, .external_lex_state = 3}, + [2364] = {.lex_state = 26, .external_lex_state = 3}, + [2365] = {.lex_state = 26, .external_lex_state = 3}, + [2366] = {.lex_state = 26, .external_lex_state = 3}, + [2367] = {.lex_state = 26, .external_lex_state = 3}, + [2368] = {.lex_state = 26, .external_lex_state = 3}, + [2369] = {.lex_state = 26, .external_lex_state = 3}, + [2370] = {.lex_state = 26, .external_lex_state = 3}, + [2371] = {.lex_state = 26, .external_lex_state = 3}, + [2372] = {.lex_state = 26, .external_lex_state = 3}, + [2373] = {.lex_state = 26, .external_lex_state = 3}, + [2374] = {.lex_state = 26, .external_lex_state = 3}, + [2375] = {.lex_state = 26, .external_lex_state = 3}, + [2376] = {.lex_state = 26, .external_lex_state = 3}, + [2377] = {.lex_state = 26, .external_lex_state = 3}, + [2378] = {.lex_state = 36, .external_lex_state = 5}, + [2379] = {.lex_state = 26, .external_lex_state = 3}, + [2380] = {.lex_state = 26, .external_lex_state = 3}, + [2381] = {.lex_state = 26, .external_lex_state = 3}, + [2382] = {.lex_state = 26, .external_lex_state = 3}, + [2383] = {.lex_state = 26, .external_lex_state = 3}, + [2384] = {.lex_state = 26, .external_lex_state = 3}, + [2385] = {.lex_state = 26, .external_lex_state = 3}, + [2386] = {.lex_state = 26, .external_lex_state = 3}, + [2387] = {.lex_state = 26, .external_lex_state = 3}, + [2388] = {.lex_state = 26, .external_lex_state = 3}, + [2389] = {.lex_state = 26, .external_lex_state = 3}, + [2390] = {.lex_state = 26, .external_lex_state = 3}, + [2391] = {.lex_state = 26, .external_lex_state = 3}, + [2392] = {.lex_state = 26, .external_lex_state = 3}, + [2393] = {.lex_state = 26, .external_lex_state = 3}, + [2394] = {.lex_state = 26, .external_lex_state = 3}, + [2395] = {.lex_state = 26, .external_lex_state = 3}, + [2396] = {.lex_state = 26, .external_lex_state = 3}, + [2397] = {.lex_state = 26, .external_lex_state = 3}, + [2398] = {.lex_state = 26, .external_lex_state = 3}, + [2399] = {.lex_state = 26, .external_lex_state = 3}, + [2400] = {.lex_state = 26, .external_lex_state = 3}, + [2401] = {.lex_state = 26, .external_lex_state = 3}, + [2402] = {.lex_state = 26, .external_lex_state = 3}, + [2403] = {.lex_state = 26, .external_lex_state = 3}, + [2404] = {.lex_state = 26, .external_lex_state = 3}, + [2405] = {.lex_state = 26, .external_lex_state = 3}, + [2406] = {.lex_state = 26, .external_lex_state = 3}, + [2407] = {.lex_state = 26, .external_lex_state = 3}, + [2408] = {.lex_state = 26, .external_lex_state = 3}, + [2409] = {.lex_state = 26, .external_lex_state = 3}, + [2410] = {.lex_state = 26, .external_lex_state = 3}, + [2411] = {.lex_state = 26, .external_lex_state = 3}, + [2412] = {.lex_state = 26, .external_lex_state = 3}, + [2413] = {.lex_state = 26, .external_lex_state = 3}, + [2414] = {.lex_state = 26, .external_lex_state = 3}, + [2415] = {.lex_state = 26, .external_lex_state = 3}, + [2416] = {.lex_state = 26, .external_lex_state = 3}, + [2417] = {.lex_state = 26, .external_lex_state = 3}, + [2418] = {.lex_state = 26, .external_lex_state = 3}, + [2419] = {.lex_state = 26, .external_lex_state = 3}, + [2420] = {.lex_state = 26, .external_lex_state = 3}, + [2421] = {.lex_state = 26, .external_lex_state = 3}, + [2422] = {.lex_state = 26, .external_lex_state = 3}, + [2423] = {.lex_state = 26, .external_lex_state = 3}, + [2424] = {.lex_state = 26, .external_lex_state = 3}, + [2425] = {.lex_state = 26, .external_lex_state = 3}, + [2426] = {.lex_state = 26, .external_lex_state = 3}, + [2427] = {.lex_state = 26, .external_lex_state = 3}, + [2428] = {.lex_state = 26, .external_lex_state = 3}, + [2429] = {.lex_state = 26, .external_lex_state = 3}, + [2430] = {.lex_state = 26, .external_lex_state = 3}, + [2431] = {.lex_state = 36, .external_lex_state = 5}, + [2432] = {.lex_state = 26, .external_lex_state = 3}, + [2433] = {.lex_state = 26, .external_lex_state = 4}, + [2434] = {.lex_state = 26, .external_lex_state = 3}, + [2435] = {.lex_state = 26, .external_lex_state = 3}, + [2436] = {.lex_state = 36, .external_lex_state = 5}, + [2437] = {.lex_state = 36, .external_lex_state = 5}, + [2438] = {.lex_state = 26, .external_lex_state = 3}, + [2439] = {.lex_state = 26, .external_lex_state = 3}, [2440] = {.lex_state = 26, .external_lex_state = 3}, [2441] = {.lex_state = 26, .external_lex_state = 3}, - [2442] = {.lex_state = 36, .external_lex_state = 2}, - [2443] = {.lex_state = 26, .external_lex_state = 3}, - [2444] = {.lex_state = 26, .external_lex_state = 3}, + [2442] = {.lex_state = 26, .external_lex_state = 3}, + [2443] = {.lex_state = 26, .external_lex_state = 4}, + [2444] = {.lex_state = 26, .external_lex_state = 4}, [2445] = {.lex_state = 26, .external_lex_state = 3}, [2446] = {.lex_state = 26, .external_lex_state = 3}, - [2447] = {.lex_state = 26, .external_lex_state = 4}, - [2448] = {.lex_state = 26, .external_lex_state = 3}, - [2449] = {.lex_state = 26, .external_lex_state = 3}, + [2447] = {.lex_state = 26, .external_lex_state = 3}, + [2448] = {.lex_state = 26, .external_lex_state = 4}, + [2449] = {.lex_state = 26, .external_lex_state = 4}, [2450] = {.lex_state = 26, .external_lex_state = 3}, [2451] = {.lex_state = 26, .external_lex_state = 3}, [2452] = {.lex_state = 26, .external_lex_state = 4}, - [2453] = {.lex_state = 26, .external_lex_state = 3}, + [2453] = {.lex_state = 36, .external_lex_state = 5}, [2454] = {.lex_state = 26, .external_lex_state = 3}, [2455] = {.lex_state = 26, .external_lex_state = 3}, [2456] = {.lex_state = 26, .external_lex_state = 3}, [2457] = {.lex_state = 26, .external_lex_state = 3}, - [2458] = {.lex_state = 26, .external_lex_state = 4}, + [2458] = {.lex_state = 26, .external_lex_state = 3}, [2459] = {.lex_state = 26, .external_lex_state = 3}, - [2460] = {.lex_state = 26, .external_lex_state = 4}, - [2461] = {.lex_state = 26, .external_lex_state = 3}, - [2462] = {.lex_state = 26, .external_lex_state = 3}, - [2463] = {.lex_state = 26, .external_lex_state = 3}, - [2464] = {.lex_state = 26, .external_lex_state = 3}, + [2460] = {.lex_state = 26, .external_lex_state = 3}, + [2461] = {.lex_state = 26, .external_lex_state = 4}, + [2462] = {.lex_state = 26, .external_lex_state = 4}, + [2463] = {.lex_state = 26, .external_lex_state = 4}, + [2464] = {.lex_state = 26, .external_lex_state = 4}, [2465] = {.lex_state = 26, .external_lex_state = 3}, [2466] = {.lex_state = 26, .external_lex_state = 3}, - [2467] = {.lex_state = 26, .external_lex_state = 3}, - [2468] = {.lex_state = 26, .external_lex_state = 3}, - [2469] = {.lex_state = 26, .external_lex_state = 3}, + [2467] = {.lex_state = 36, .external_lex_state = 5}, + [2468] = {.lex_state = 26, .external_lex_state = 4}, + [2469] = {.lex_state = 26, .external_lex_state = 4}, [2470] = {.lex_state = 26, .external_lex_state = 3}, [2471] = {.lex_state = 26, .external_lex_state = 3}, - [2472] = {.lex_state = 26, .external_lex_state = 3}, - [2473] = {.lex_state = 26, .external_lex_state = 3}, - [2474] = {.lex_state = 26, .external_lex_state = 3}, + [2472] = {.lex_state = 26, .external_lex_state = 4}, + [2473] = {.lex_state = 26, .external_lex_state = 4}, + [2474] = {.lex_state = 26, .external_lex_state = 4}, [2475] = {.lex_state = 26, .external_lex_state = 3}, [2476] = {.lex_state = 26, .external_lex_state = 3}, [2477] = {.lex_state = 26, .external_lex_state = 3}, - [2478] = {.lex_state = 26, .external_lex_state = 3}, + [2478] = {.lex_state = 26, .external_lex_state = 4}, [2479] = {.lex_state = 26, .external_lex_state = 3}, [2480] = {.lex_state = 26, .external_lex_state = 3}, [2481] = {.lex_state = 26, .external_lex_state = 3}, - [2482] = {.lex_state = 26, .external_lex_state = 3}, + [2482] = {.lex_state = 26, .external_lex_state = 4}, [2483] = {.lex_state = 26, .external_lex_state = 3}, - [2484] = {.lex_state = 26, .external_lex_state = 3}, - [2485] = {.lex_state = 26, .external_lex_state = 3}, + [2484] = {.lex_state = 26, .external_lex_state = 4}, + [2485] = {.lex_state = 26, .external_lex_state = 4}, [2486] = {.lex_state = 26, .external_lex_state = 3}, [2487] = {.lex_state = 26, .external_lex_state = 3}, - [2488] = {.lex_state = 26, .external_lex_state = 4}, - [2489] = {.lex_state = 26, .external_lex_state = 3}, - [2490] = {.lex_state = 26, .external_lex_state = 3}, + [2488] = {.lex_state = 26, .external_lex_state = 3}, + [2489] = {.lex_state = 26, .external_lex_state = 4}, + [2490] = {.lex_state = 26, .external_lex_state = 4}, [2491] = {.lex_state = 26, .external_lex_state = 3}, [2492] = {.lex_state = 26, .external_lex_state = 3}, - [2493] = {.lex_state = 26, .external_lex_state = 3}, - [2494] = {.lex_state = 26, .external_lex_state = 3}, + [2493] = {.lex_state = 26, .external_lex_state = 4}, + [2494] = {.lex_state = 26, .external_lex_state = 4}, [2495] = {.lex_state = 26, .external_lex_state = 3}, - [2496] = {.lex_state = 26, .external_lex_state = 3}, - [2497] = {.lex_state = 36, .external_lex_state = 5}, + [2496] = {.lex_state = 26, .external_lex_state = 4}, + [2497] = {.lex_state = 26, .external_lex_state = 3}, [2498] = {.lex_state = 26, .external_lex_state = 3}, [2499] = {.lex_state = 26, .external_lex_state = 3}, [2500] = {.lex_state = 26, .external_lex_state = 3}, [2501] = {.lex_state = 26, .external_lex_state = 3}, - [2502] = {.lex_state = 26, .external_lex_state = 3}, - [2503] = {.lex_state = 26, .external_lex_state = 3}, - [2504] = {.lex_state = 26, .external_lex_state = 3}, - [2505] = {.lex_state = 26, .external_lex_state = 3}, - [2506] = {.lex_state = 26, .external_lex_state = 3}, - [2507] = {.lex_state = 26, .external_lex_state = 3}, + [2502] = {.lex_state = 26, .external_lex_state = 4}, + [2503] = {.lex_state = 26, .external_lex_state = 4}, + [2504] = {.lex_state = 26, .external_lex_state = 4}, + [2505] = {.lex_state = 36, .external_lex_state = 5}, + [2506] = {.lex_state = 26, .external_lex_state = 4}, + [2507] = {.lex_state = 26, .external_lex_state = 4}, [2508] = {.lex_state = 26, .external_lex_state = 3}, [2509] = {.lex_state = 26, .external_lex_state = 3}, - [2510] = {.lex_state = 26, .external_lex_state = 3}, + [2510] = {.lex_state = 36, .external_lex_state = 5}, [2511] = {.lex_state = 26, .external_lex_state = 3}, - [2512] = {.lex_state = 36, .external_lex_state = 5}, - [2513] = {.lex_state = 26, .external_lex_state = 3}, - [2514] = {.lex_state = 26, .external_lex_state = 3}, - [2515] = {.lex_state = 26, .external_lex_state = 3}, - [2516] = {.lex_state = 26, .external_lex_state = 3}, - [2517] = {.lex_state = 36, .external_lex_state = 5}, + [2512] = {.lex_state = 26, .external_lex_state = 3}, + [2513] = {.lex_state = 26, .external_lex_state = 4}, + [2514] = {.lex_state = 26, .external_lex_state = 4}, + [2515] = {.lex_state = 26, .external_lex_state = 4}, + [2516] = {.lex_state = 26, .external_lex_state = 4}, + [2517] = {.lex_state = 26, .external_lex_state = 3}, [2518] = {.lex_state = 26, .external_lex_state = 3}, - [2519] = {.lex_state = 26, .external_lex_state = 3}, + [2519] = {.lex_state = 26, .external_lex_state = 4}, [2520] = {.lex_state = 26, .external_lex_state = 3}, - [2521] = {.lex_state = 26, .external_lex_state = 3}, + [2521] = {.lex_state = 26, .external_lex_state = 4}, [2522] = {.lex_state = 26, .external_lex_state = 3}, [2523] = {.lex_state = 26, .external_lex_state = 3}, [2524] = {.lex_state = 26, .external_lex_state = 3}, [2525] = {.lex_state = 26, .external_lex_state = 3}, - [2526] = {.lex_state = 26, .external_lex_state = 3}, + [2526] = {.lex_state = 26, .external_lex_state = 4}, [2527] = {.lex_state = 26, .external_lex_state = 3}, [2528] = {.lex_state = 26, .external_lex_state = 3}, - [2529] = {.lex_state = 26, .external_lex_state = 3}, - [2530] = {.lex_state = 26, .external_lex_state = 3}, - [2531] = {.lex_state = 26, .external_lex_state = 3}, - [2532] = {.lex_state = 26, .external_lex_state = 3}, - [2533] = {.lex_state = 26, .external_lex_state = 3}, - [2534] = {.lex_state = 26, .external_lex_state = 3}, + [2529] = {.lex_state = 26, .external_lex_state = 4}, + [2530] = {.lex_state = 26, .external_lex_state = 4}, + [2531] = {.lex_state = 26, .external_lex_state = 4}, + [2532] = {.lex_state = 26, .external_lex_state = 4}, + [2533] = {.lex_state = 26, .external_lex_state = 4}, + [2534] = {.lex_state = 26, .external_lex_state = 4}, [2535] = {.lex_state = 26, .external_lex_state = 3}, [2536] = {.lex_state = 26, .external_lex_state = 3}, [2537] = {.lex_state = 26, .external_lex_state = 3}, [2538] = {.lex_state = 26, .external_lex_state = 3}, - [2539] = {.lex_state = 26, .external_lex_state = 3}, + [2539] = {.lex_state = 26, .external_lex_state = 4}, [2540] = {.lex_state = 26, .external_lex_state = 3}, [2541] = {.lex_state = 26, .external_lex_state = 3}, - [2542] = {.lex_state = 36, .external_lex_state = 5}, + [2542] = {.lex_state = 26, .external_lex_state = 3}, [2543] = {.lex_state = 26, .external_lex_state = 3}, [2544] = {.lex_state = 26, .external_lex_state = 3}, [2545] = {.lex_state = 26, .external_lex_state = 3}, - [2546] = {.lex_state = 26, .external_lex_state = 3}, - [2547] = {.lex_state = 26, .external_lex_state = 3}, - [2548] = {.lex_state = 26, .external_lex_state = 3}, + [2546] = {.lex_state = 26, .external_lex_state = 4}, + [2547] = {.lex_state = 26, .external_lex_state = 4}, + [2548] = {.lex_state = 26, .external_lex_state = 4}, [2549] = {.lex_state = 26, .external_lex_state = 3}, [2550] = {.lex_state = 26, .external_lex_state = 3}, - [2551] = {.lex_state = 26, .external_lex_state = 3}, - [2552] = {.lex_state = 36, .external_lex_state = 5}, - [2553] = {.lex_state = 26, .external_lex_state = 3}, - [2554] = {.lex_state = 26, .external_lex_state = 3}, - [2555] = {.lex_state = 26, .external_lex_state = 3}, + [2551] = {.lex_state = 26, .external_lex_state = 4}, + [2552] = {.lex_state = 26, .external_lex_state = 4}, + [2553] = {.lex_state = 26, .external_lex_state = 4}, + [2554] = {.lex_state = 26, .external_lex_state = 4}, + [2555] = {.lex_state = 26, .external_lex_state = 4}, [2556] = {.lex_state = 26, .external_lex_state = 3}, - [2557] = {.lex_state = 26, .external_lex_state = 3}, - [2558] = {.lex_state = 26, .external_lex_state = 3}, - [2559] = {.lex_state = 26, .external_lex_state = 3}, - [2560] = {.lex_state = 26, .external_lex_state = 3}, - [2561] = {.lex_state = 26, .external_lex_state = 3}, - [2562] = {.lex_state = 26, .external_lex_state = 4}, + [2557] = {.lex_state = 26, .external_lex_state = 4}, + [2558] = {.lex_state = 26, .external_lex_state = 4}, + [2559] = {.lex_state = 26, .external_lex_state = 4}, + [2560] = {.lex_state = 26, .external_lex_state = 4}, + [2561] = {.lex_state = 26, .external_lex_state = 4}, + [2562] = {.lex_state = 26, .external_lex_state = 3}, [2563] = {.lex_state = 26, .external_lex_state = 3}, [2564] = {.lex_state = 26, .external_lex_state = 3}, - [2565] = {.lex_state = 26, .external_lex_state = 4}, - [2566] = {.lex_state = 26, .external_lex_state = 3}, + [2565] = {.lex_state = 26, .external_lex_state = 3}, + [2566] = {.lex_state = 26, .external_lex_state = 4}, [2567] = {.lex_state = 26, .external_lex_state = 3}, [2568] = {.lex_state = 26, .external_lex_state = 3}, [2569] = {.lex_state = 26, .external_lex_state = 3}, - [2570] = {.lex_state = 26, .external_lex_state = 3}, - [2571] = {.lex_state = 26, .external_lex_state = 3}, - [2572] = {.lex_state = 26, .external_lex_state = 3}, - [2573] = {.lex_state = 26, .external_lex_state = 3}, + [2570] = {.lex_state = 26, .external_lex_state = 4}, + [2571] = {.lex_state = 26, .external_lex_state = 4}, + [2572] = {.lex_state = 26, .external_lex_state = 4}, + [2573] = {.lex_state = 26, .external_lex_state = 4}, [2574] = {.lex_state = 26, .external_lex_state = 3}, [2575] = {.lex_state = 26, .external_lex_state = 3}, - [2576] = {.lex_state = 26, .external_lex_state = 3}, - [2577] = {.lex_state = 26, .external_lex_state = 3}, - [2578] = {.lex_state = 26, .external_lex_state = 4}, - [2579] = {.lex_state = 26, .external_lex_state = 3}, - [2580] = {.lex_state = 26, .external_lex_state = 3}, - [2581] = {.lex_state = 26, .external_lex_state = 3}, - [2582] = {.lex_state = 26, .external_lex_state = 3}, - [2583] = {.lex_state = 26, .external_lex_state = 3}, - [2584] = {.lex_state = 26, .external_lex_state = 3}, - [2585] = {.lex_state = 26, .external_lex_state = 3}, - [2586] = {.lex_state = 26, .external_lex_state = 3}, - [2587] = {.lex_state = 26, .external_lex_state = 3}, + [2576] = {.lex_state = 26, .external_lex_state = 4}, + [2577] = {.lex_state = 26, .external_lex_state = 4}, + [2578] = {.lex_state = 26, .external_lex_state = 3}, + [2579] = {.lex_state = 26, .external_lex_state = 4}, + [2580] = {.lex_state = 26, .external_lex_state = 4}, + [2581] = {.lex_state = 26, .external_lex_state = 4}, + [2582] = {.lex_state = 36, .external_lex_state = 5}, + [2583] = {.lex_state = 26, .external_lex_state = 4}, + [2584] = {.lex_state = 26, .external_lex_state = 4}, + [2585] = {.lex_state = 26, .external_lex_state = 4}, + [2586] = {.lex_state = 36, .external_lex_state = 5}, + [2587] = {.lex_state = 26, .external_lex_state = 4}, [2588] = {.lex_state = 26, .external_lex_state = 3}, [2589] = {.lex_state = 26, .external_lex_state = 3}, - [2590] = {.lex_state = 26, .external_lex_state = 3}, + [2590] = {.lex_state = 26, .external_lex_state = 4}, [2591] = {.lex_state = 26, .external_lex_state = 3}, - [2592] = {.lex_state = 26, .external_lex_state = 3}, - [2593] = {.lex_state = 26, .external_lex_state = 3}, + [2592] = {.lex_state = 26, .external_lex_state = 4}, + [2593] = {.lex_state = 26, .external_lex_state = 4}, [2594] = {.lex_state = 26, .external_lex_state = 4}, - [2595] = {.lex_state = 26, .external_lex_state = 4}, + [2595] = {.lex_state = 36, .external_lex_state = 5}, [2596] = {.lex_state = 26, .external_lex_state = 4}, - [2597] = {.lex_state = 26, .external_lex_state = 4}, - [2598] = {.lex_state = 26, .external_lex_state = 3}, - [2599] = {.lex_state = 36, .external_lex_state = 5}, - [2600] = {.lex_state = 26, .external_lex_state = 3}, - [2601] = {.lex_state = 36, .external_lex_state = 5}, - [2602] = {.lex_state = 26, .external_lex_state = 3}, - [2603] = {.lex_state = 36, .external_lex_state = 5}, - [2604] = {.lex_state = 26, .external_lex_state = 4}, - [2605] = {.lex_state = 36, .external_lex_state = 5}, - [2606] = {.lex_state = 26, .external_lex_state = 4}, + [2597] = {.lex_state = 26, .external_lex_state = 3}, + [2598] = {.lex_state = 26, .external_lex_state = 4}, + [2599] = {.lex_state = 26, .external_lex_state = 4}, + [2600] = {.lex_state = 26, .external_lex_state = 4}, + [2601] = {.lex_state = 26, .external_lex_state = 3}, + [2602] = {.lex_state = 26, .external_lex_state = 4}, + [2603] = {.lex_state = 26, .external_lex_state = 3}, + [2604] = {.lex_state = 26, .external_lex_state = 3}, + [2605] = {.lex_state = 26, .external_lex_state = 4}, + [2606] = {.lex_state = 26, .external_lex_state = 3}, [2607] = {.lex_state = 26, .external_lex_state = 4}, - [2608] = {.lex_state = 26, .external_lex_state = 4}, - [2609] = {.lex_state = 26, .external_lex_state = 3}, - [2610] = {.lex_state = 26, .external_lex_state = 3}, - [2611] = {.lex_state = 26, .external_lex_state = 4}, - [2612] = {.lex_state = 26, .external_lex_state = 3}, - [2613] = {.lex_state = 26, .external_lex_state = 4}, + [2608] = {.lex_state = 26, .external_lex_state = 3}, + [2609] = {.lex_state = 36, .external_lex_state = 5}, + [2610] = {.lex_state = 36, .external_lex_state = 5}, + [2611] = {.lex_state = 26, .external_lex_state = 3}, + [2612] = {.lex_state = 26, .external_lex_state = 4}, + [2613] = {.lex_state = 36, .external_lex_state = 5}, [2614] = {.lex_state = 26, .external_lex_state = 4}, [2615] = {.lex_state = 26, .external_lex_state = 4}, - [2616] = {.lex_state = 26, .external_lex_state = 4}, - [2617] = {.lex_state = 26, .external_lex_state = 4}, - [2618] = {.lex_state = 26, .external_lex_state = 4}, - [2619] = {.lex_state = 26, .external_lex_state = 3}, - [2620] = {.lex_state = 26, .external_lex_state = 4}, - [2621] = {.lex_state = 26, .external_lex_state = 4}, + [2616] = {.lex_state = 26, .external_lex_state = 3}, + [2617] = {.lex_state = 26, .external_lex_state = 3}, + [2618] = {.lex_state = 26, .external_lex_state = 3}, + [2619] = {.lex_state = 26, .external_lex_state = 4}, + [2620] = {.lex_state = 26, .external_lex_state = 3}, + [2621] = {.lex_state = 26, .external_lex_state = 3}, [2622] = {.lex_state = 26, .external_lex_state = 4}, - [2623] = {.lex_state = 26, .external_lex_state = 3}, + [2623] = {.lex_state = 26, .external_lex_state = 4}, [2624] = {.lex_state = 26, .external_lex_state = 4}, [2625] = {.lex_state = 26, .external_lex_state = 3}, - [2626] = {.lex_state = 26, .external_lex_state = 3}, - [2627] = {.lex_state = 26, .external_lex_state = 3}, - [2628] = {.lex_state = 26, .external_lex_state = 4}, - [2629] = {.lex_state = 26, .external_lex_state = 3}, + [2626] = {.lex_state = 26, .external_lex_state = 4}, + [2627] = {.lex_state = 26, .external_lex_state = 4}, + [2628] = {.lex_state = 26, .external_lex_state = 3}, + [2629] = {.lex_state = 26, .external_lex_state = 4}, [2630] = {.lex_state = 26, .external_lex_state = 3}, [2631] = {.lex_state = 26, .external_lex_state = 4}, [2632] = {.lex_state = 26, .external_lex_state = 4}, - [2633] = {.lex_state = 26, .external_lex_state = 4}, + [2633] = {.lex_state = 26, .external_lex_state = 3}, [2634] = {.lex_state = 26, .external_lex_state = 3}, - [2635] = {.lex_state = 26, .external_lex_state = 4}, - [2636] = {.lex_state = 26, .external_lex_state = 4}, + [2635] = {.lex_state = 26, .external_lex_state = 3}, + [2636] = {.lex_state = 36, .external_lex_state = 5}, [2637] = {.lex_state = 26, .external_lex_state = 4}, [2638] = {.lex_state = 26, .external_lex_state = 3}, - [2639] = {.lex_state = 26, .external_lex_state = 3}, + [2639] = {.lex_state = 26, .external_lex_state = 4}, [2640] = {.lex_state = 26, .external_lex_state = 3}, - [2641] = {.lex_state = 26, .external_lex_state = 4}, - [2642] = {.lex_state = 26, .external_lex_state = 4}, + [2641] = {.lex_state = 26, .external_lex_state = 3}, + [2642] = {.lex_state = 26, .external_lex_state = 3}, [2643] = {.lex_state = 26, .external_lex_state = 4}, - [2644] = {.lex_state = 26, .external_lex_state = 4}, - [2645] = {.lex_state = 26, .external_lex_state = 4}, + [2644] = {.lex_state = 26, .external_lex_state = 3}, + [2645] = {.lex_state = 26, .external_lex_state = 3}, [2646] = {.lex_state = 26, .external_lex_state = 3}, [2647] = {.lex_state = 26, .external_lex_state = 4}, [2648] = {.lex_state = 26, .external_lex_state = 3}, - [2649] = {.lex_state = 26, .external_lex_state = 4}, - [2650] = {.lex_state = 26, .external_lex_state = 3}, - [2651] = {.lex_state = 26, .external_lex_state = 3}, + [2649] = {.lex_state = 26, .external_lex_state = 3}, + [2650] = {.lex_state = 26, .external_lex_state = 4}, + [2651] = {.lex_state = 26, .external_lex_state = 4}, [2652] = {.lex_state = 26, .external_lex_state = 3}, - [2653] = {.lex_state = 26, .external_lex_state = 4}, - [2654] = {.lex_state = 26, .external_lex_state = 4}, - [2655] = {.lex_state = 26, .external_lex_state = 4}, + [2653] = {.lex_state = 26, .external_lex_state = 3}, + [2654] = {.lex_state = 26, .external_lex_state = 3}, + [2655] = {.lex_state = 26, .external_lex_state = 3}, [2656] = {.lex_state = 26, .external_lex_state = 4}, [2657] = {.lex_state = 26, .external_lex_state = 3}, - [2658] = {.lex_state = 26, .external_lex_state = 4}, - [2659] = {.lex_state = 26, .external_lex_state = 4}, + [2658] = {.lex_state = 26, .external_lex_state = 3}, + [2659] = {.lex_state = 26, .external_lex_state = 3}, [2660] = {.lex_state = 26, .external_lex_state = 3}, [2661] = {.lex_state = 26, .external_lex_state = 3}, - [2662] = {.lex_state = 26, .external_lex_state = 4}, - [2663] = {.lex_state = 26, .external_lex_state = 3}, - [2664] = {.lex_state = 26, .external_lex_state = 4}, + [2662] = {.lex_state = 26, .external_lex_state = 3}, + [2663] = {.lex_state = 35, .external_lex_state = 5}, + [2664] = {.lex_state = 26, .external_lex_state = 3}, [2665] = {.lex_state = 26, .external_lex_state = 3}, - [2666] = {.lex_state = 26, .external_lex_state = 4}, - [2667] = {.lex_state = 26, .external_lex_state = 4}, - [2668] = {.lex_state = 26, .external_lex_state = 4}, + [2666] = {.lex_state = 26, .external_lex_state = 3}, + [2667] = {.lex_state = 26, .external_lex_state = 3}, + [2668] = {.lex_state = 26, .external_lex_state = 3}, [2669] = {.lex_state = 26, .external_lex_state = 3}, - [2670] = {.lex_state = 26, .external_lex_state = 4}, - [2671] = {.lex_state = 26, .external_lex_state = 4}, + [2670] = {.lex_state = 26, .external_lex_state = 3}, + [2671] = {.lex_state = 26, .external_lex_state = 3}, [2672] = {.lex_state = 26, .external_lex_state = 3}, [2673] = {.lex_state = 26, .external_lex_state = 3}, - [2674] = {.lex_state = 26, .external_lex_state = 3}, + [2674] = {.lex_state = 26, .external_lex_state = 4}, [2675] = {.lex_state = 26, .external_lex_state = 3}, - [2676] = {.lex_state = 26, .external_lex_state = 4}, - [2677] = {.lex_state = 26, .external_lex_state = 4}, + [2676] = {.lex_state = 35, .external_lex_state = 5}, + [2677] = {.lex_state = 26, .external_lex_state = 3}, [2678] = {.lex_state = 26, .external_lex_state = 3}, [2679] = {.lex_state = 26, .external_lex_state = 3}, - [2680] = {.lex_state = 26, .external_lex_state = 4}, - [2681] = {.lex_state = 26, .external_lex_state = 4}, - [2682] = {.lex_state = 26, .external_lex_state = 3}, + [2680] = {.lex_state = 26, .external_lex_state = 3}, + [2681] = {.lex_state = 26, .external_lex_state = 3}, + [2682] = {.lex_state = 36, .external_lex_state = 5}, [2683] = {.lex_state = 26, .external_lex_state = 3}, - [2684] = {.lex_state = 26, .external_lex_state = 4}, - [2685] = {.lex_state = 26, .external_lex_state = 3}, + [2684] = {.lex_state = 26, .external_lex_state = 3}, + [2685] = {.lex_state = 36, .external_lex_state = 5}, [2686] = {.lex_state = 26, .external_lex_state = 3}, - [2687] = {.lex_state = 26, .external_lex_state = 4}, - [2688] = {.lex_state = 36, .external_lex_state = 5}, - [2689] = {.lex_state = 36, .external_lex_state = 5}, - [2690] = {.lex_state = 26, .external_lex_state = 4}, - [2691] = {.lex_state = 26, .external_lex_state = 4}, - [2692] = {.lex_state = 36, .external_lex_state = 5}, + [2687] = {.lex_state = 26, .external_lex_state = 3}, + [2688] = {.lex_state = 26, .external_lex_state = 3}, + [2689] = {.lex_state = 26, .external_lex_state = 3}, + [2690] = {.lex_state = 26, .external_lex_state = 3}, + [2691] = {.lex_state = 26, .external_lex_state = 3}, + [2692] = {.lex_state = 26, .external_lex_state = 3}, [2693] = {.lex_state = 26, .external_lex_state = 3}, - [2694] = {.lex_state = 26, .external_lex_state = 3}, - [2695] = {.lex_state = 26, .external_lex_state = 4}, + [2694] = {.lex_state = 26, .external_lex_state = 4}, + [2695] = {.lex_state = 26, .external_lex_state = 3}, [2696] = {.lex_state = 26, .external_lex_state = 3}, - [2697] = {.lex_state = 26, .external_lex_state = 3}, + [2697] = {.lex_state = 26, .external_lex_state = 4}, [2698] = {.lex_state = 26, .external_lex_state = 3}, - [2699] = {.lex_state = 26, .external_lex_state = 4}, + [2699] = {.lex_state = 26, .external_lex_state = 3}, [2700] = {.lex_state = 26, .external_lex_state = 3}, [2701] = {.lex_state = 26, .external_lex_state = 4}, [2702] = {.lex_state = 26, .external_lex_state = 3}, [2703] = {.lex_state = 26, .external_lex_state = 3}, - [2704] = {.lex_state = 26, .external_lex_state = 3}, - [2705] = {.lex_state = 26, .external_lex_state = 3}, + [2704] = {.lex_state = 26, .external_lex_state = 4}, + [2705] = {.lex_state = 26, .external_lex_state = 4}, [2706] = {.lex_state = 26, .external_lex_state = 3}, - [2707] = {.lex_state = 26, .external_lex_state = 3}, - [2708] = {.lex_state = 26, .external_lex_state = 4}, - [2709] = {.lex_state = 26, .external_lex_state = 4}, - [2710] = {.lex_state = 26, .external_lex_state = 3}, + [2707] = {.lex_state = 36, .external_lex_state = 5}, + [2708] = {.lex_state = 26, .external_lex_state = 3}, + [2709] = {.lex_state = 26, .external_lex_state = 3}, + [2710] = {.lex_state = 26, .external_lex_state = 4}, [2711] = {.lex_state = 26, .external_lex_state = 4}, [2712] = {.lex_state = 26, .external_lex_state = 3}, [2713] = {.lex_state = 26, .external_lex_state = 4}, [2714] = {.lex_state = 26, .external_lex_state = 3}, - [2715] = {.lex_state = 36, .external_lex_state = 5}, + [2715] = {.lex_state = 26, .external_lex_state = 3}, [2716] = {.lex_state = 26, .external_lex_state = 3}, [2717] = {.lex_state = 26, .external_lex_state = 3}, - [2718] = {.lex_state = 26, .external_lex_state = 4}, - [2719] = {.lex_state = 26, .external_lex_state = 3}, + [2718] = {.lex_state = 26, .external_lex_state = 3}, + [2719] = {.lex_state = 26, .external_lex_state = 4}, [2720] = {.lex_state = 26, .external_lex_state = 3}, - [2721] = {.lex_state = 26, .external_lex_state = 4}, + [2721] = {.lex_state = 26, .external_lex_state = 3}, [2722] = {.lex_state = 26, .external_lex_state = 3}, [2723] = {.lex_state = 26, .external_lex_state = 3}, [2724] = {.lex_state = 26, .external_lex_state = 4}, - [2725] = {.lex_state = 36, .external_lex_state = 5}, + [2725] = {.lex_state = 26, .external_lex_state = 3}, [2726] = {.lex_state = 26, .external_lex_state = 4}, - [2727] = {.lex_state = 26, .external_lex_state = 3}, + [2727] = {.lex_state = 26, .external_lex_state = 4}, [2728] = {.lex_state = 26, .external_lex_state = 3}, [2729] = {.lex_state = 26, .external_lex_state = 3}, - [2730] = {.lex_state = 26, .external_lex_state = 4}, + [2730] = {.lex_state = 26, .external_lex_state = 3}, [2731] = {.lex_state = 26, .external_lex_state = 3}, [2732] = {.lex_state = 26, .external_lex_state = 3}, [2733] = {.lex_state = 26, .external_lex_state = 3}, - [2734] = {.lex_state = 26, .external_lex_state = 4}, - [2735] = {.lex_state = 26, .external_lex_state = 4}, + [2734] = {.lex_state = 26, .external_lex_state = 3}, + [2735] = {.lex_state = 26, .external_lex_state = 3}, [2736] = {.lex_state = 26, .external_lex_state = 3}, - [2737] = {.lex_state = 26, .external_lex_state = 4}, + [2737] = {.lex_state = 26, .external_lex_state = 3}, [2738] = {.lex_state = 26, .external_lex_state = 3}, - [2739] = {.lex_state = 26, .external_lex_state = 4}, + [2739] = {.lex_state = 26, .external_lex_state = 3}, [2740] = {.lex_state = 26, .external_lex_state = 3}, - [2741] = {.lex_state = 26, .external_lex_state = 3}, + [2741] = {.lex_state = 26, .external_lex_state = 4}, [2742] = {.lex_state = 26, .external_lex_state = 3}, - [2743] = {.lex_state = 26, .external_lex_state = 4}, - [2744] = {.lex_state = 26, .external_lex_state = 4}, - [2745] = {.lex_state = 26, .external_lex_state = 4}, - [2746] = {.lex_state = 26, .external_lex_state = 3}, + [2743] = {.lex_state = 26, .external_lex_state = 3}, + [2744] = {.lex_state = 26, .external_lex_state = 3}, + [2745] = {.lex_state = 26, .external_lex_state = 3}, + [2746] = {.lex_state = 26, .external_lex_state = 4}, [2747] = {.lex_state = 26, .external_lex_state = 4}, - [2748] = {.lex_state = 26, .external_lex_state = 4}, - [2749] = {.lex_state = 26, .external_lex_state = 4}, + [2748] = {.lex_state = 26, .external_lex_state = 3}, + [2749] = {.lex_state = 26, .external_lex_state = 3}, [2750] = {.lex_state = 36, .external_lex_state = 5}, [2751] = {.lex_state = 26, .external_lex_state = 3}, [2752] = {.lex_state = 26, .external_lex_state = 3}, [2753] = {.lex_state = 26, .external_lex_state = 3}, [2754] = {.lex_state = 26, .external_lex_state = 3}, - [2755] = {.lex_state = 26, .external_lex_state = 4}, + [2755] = {.lex_state = 26, .external_lex_state = 3}, [2756] = {.lex_state = 26, .external_lex_state = 3}, - [2757] = {.lex_state = 26, .external_lex_state = 4}, + [2757] = {.lex_state = 26, .external_lex_state = 3}, [2758] = {.lex_state = 26, .external_lex_state = 3}, [2759] = {.lex_state = 26, .external_lex_state = 3}, - [2760] = {.lex_state = 26, .external_lex_state = 4}, + [2760] = {.lex_state = 26, .external_lex_state = 3}, [2761] = {.lex_state = 26, .external_lex_state = 3}, - [2762] = {.lex_state = 26, .external_lex_state = 4}, - [2763] = {.lex_state = 26, .external_lex_state = 4}, - [2764] = {.lex_state = 26, .external_lex_state = 4}, - [2765] = {.lex_state = 26, .external_lex_state = 4}, - [2766] = {.lex_state = 26, .external_lex_state = 3}, - [2767] = {.lex_state = 26, .external_lex_state = 4}, - [2768] = {.lex_state = 26, .external_lex_state = 3}, - [2769] = {.lex_state = 26, .external_lex_state = 3}, - [2770] = {.lex_state = 26, .external_lex_state = 4}, + [2762] = {.lex_state = 26, .external_lex_state = 3}, + [2763] = {.lex_state = 26, .external_lex_state = 3}, + [2764] = {.lex_state = 26, .external_lex_state = 3}, + [2765] = {.lex_state = 26, .external_lex_state = 3}, + [2766] = {.lex_state = 36, .external_lex_state = 5}, + [2767] = {.lex_state = 26, .external_lex_state = 3}, + [2768] = {.lex_state = 26, .external_lex_state = 4}, + [2769] = {.lex_state = 26, .external_lex_state = 4}, + [2770] = {.lex_state = 26, .external_lex_state = 3}, [2771] = {.lex_state = 26, .external_lex_state = 3}, [2772] = {.lex_state = 26, .external_lex_state = 3}, [2773] = {.lex_state = 26, .external_lex_state = 4}, [2774] = {.lex_state = 26, .external_lex_state = 3}, - [2775] = {.lex_state = 26, .external_lex_state = 3}, - [2776] = {.lex_state = 26, .external_lex_state = 4}, + [2775] = {.lex_state = 26, .external_lex_state = 4}, + [2776] = {.lex_state = 36, .external_lex_state = 5}, [2777] = {.lex_state = 26, .external_lex_state = 3}, - [2778] = {.lex_state = 26, .external_lex_state = 3}, - [2779] = {.lex_state = 26, .external_lex_state = 3}, + [2778] = {.lex_state = 26, .external_lex_state = 4}, + [2779] = {.lex_state = 35, .external_lex_state = 5}, [2780] = {.lex_state = 26, .external_lex_state = 3}, - [2781] = {.lex_state = 26, .external_lex_state = 3}, - [2782] = {.lex_state = 26, .external_lex_state = 3}, + [2781] = {.lex_state = 26, .external_lex_state = 4}, + [2782] = {.lex_state = 26, .external_lex_state = 4}, [2783] = {.lex_state = 26, .external_lex_state = 4}, - [2784] = {.lex_state = 26, .external_lex_state = 4}, - [2785] = {.lex_state = 26, .external_lex_state = 3}, + [2784] = {.lex_state = 36, .external_lex_state = 2}, + [2785] = {.lex_state = 26, .external_lex_state = 4}, [2786] = {.lex_state = 26, .external_lex_state = 4}, - [2787] = {.lex_state = 26, .external_lex_state = 3}, + [2787] = {.lex_state = 36, .external_lex_state = 5}, [2788] = {.lex_state = 26, .external_lex_state = 4}, [2789] = {.lex_state = 26, .external_lex_state = 4}, - [2790] = {.lex_state = 36, .external_lex_state = 5}, + [2790] = {.lex_state = 26, .external_lex_state = 3}, [2791] = {.lex_state = 26, .external_lex_state = 3}, - [2792] = {.lex_state = 26, .external_lex_state = 3}, - [2793] = {.lex_state = 26, .external_lex_state = 4}, - [2794] = {.lex_state = 26, .external_lex_state = 3}, - [2795] = {.lex_state = 26, .external_lex_state = 3}, - [2796] = {.lex_state = 26, .external_lex_state = 3}, + [2792] = {.lex_state = 26, .external_lex_state = 4}, + [2793] = {.lex_state = 36, .external_lex_state = 2}, + [2794] = {.lex_state = 26, .external_lex_state = 4}, + [2795] = {.lex_state = 26, .external_lex_state = 4}, + [2796] = {.lex_state = 26, .external_lex_state = 4}, [2797] = {.lex_state = 26, .external_lex_state = 4}, [2798] = {.lex_state = 26, .external_lex_state = 4}, - [2799] = {.lex_state = 26, .external_lex_state = 3}, + [2799] = {.lex_state = 26, .external_lex_state = 4}, [2800] = {.lex_state = 26, .external_lex_state = 3}, - [2801] = {.lex_state = 26, .external_lex_state = 3}, - [2802] = {.lex_state = 26, .external_lex_state = 3}, - [2803] = {.lex_state = 26, .external_lex_state = 3}, - [2804] = {.lex_state = 26, .external_lex_state = 3}, - [2805] = {.lex_state = 26, .external_lex_state = 3}, - [2806] = {.lex_state = 26, .external_lex_state = 3}, - [2807] = {.lex_state = 26, .external_lex_state = 3}, - [2808] = {.lex_state = 26, .external_lex_state = 3}, - [2809] = {.lex_state = 26, .external_lex_state = 3}, - [2810] = {.lex_state = 26, .external_lex_state = 3}, - [2811] = {.lex_state = 26, .external_lex_state = 3}, - [2812] = {.lex_state = 26, .external_lex_state = 3}, + [2801] = {.lex_state = 26, .external_lex_state = 4}, + [2802] = {.lex_state = 26, .external_lex_state = 4}, + [2803] = {.lex_state = 26, .external_lex_state = 4}, + [2804] = {.lex_state = 26, .external_lex_state = 4}, + [2805] = {.lex_state = 26, .external_lex_state = 4}, + [2806] = {.lex_state = 36, .external_lex_state = 2}, + [2807] = {.lex_state = 26, .external_lex_state = 4}, + [2808] = {.lex_state = 26, .external_lex_state = 4}, + [2809] = {.lex_state = 26, .external_lex_state = 4}, + [2810] = {.lex_state = 36, .external_lex_state = 5}, + [2811] = {.lex_state = 36, .external_lex_state = 5}, + [2812] = {.lex_state = 26, .external_lex_state = 4}, [2813] = {.lex_state = 26, .external_lex_state = 3}, [2814] = {.lex_state = 26, .external_lex_state = 4}, [2815] = {.lex_state = 26, .external_lex_state = 4}, - [2816] = {.lex_state = 26, .external_lex_state = 3}, - [2817] = {.lex_state = 26, .external_lex_state = 3}, - [2818] = {.lex_state = 26, .external_lex_state = 3}, - [2819] = {.lex_state = 26, .external_lex_state = 3}, - [2820] = {.lex_state = 26, .external_lex_state = 3}, - [2821] = {.lex_state = 36, .external_lex_state = 5}, - [2822] = {.lex_state = 26, .external_lex_state = 3}, + [2816] = {.lex_state = 26, .external_lex_state = 4}, + [2817] = {.lex_state = 26, .external_lex_state = 4}, + [2818] = {.lex_state = 26, .external_lex_state = 4}, + [2819] = {.lex_state = 26, .external_lex_state = 4}, + [2820] = {.lex_state = 26, .external_lex_state = 4}, + [2821] = {.lex_state = 26, .external_lex_state = 4}, + [2822] = {.lex_state = 26, .external_lex_state = 4}, [2823] = {.lex_state = 26, .external_lex_state = 4}, - [2824] = {.lex_state = 26, .external_lex_state = 3}, - [2825] = {.lex_state = 26, .external_lex_state = 3}, - [2826] = {.lex_state = 26, .external_lex_state = 3}, - [2827] = {.lex_state = 26, .external_lex_state = 3}, - [2828] = {.lex_state = 26, .external_lex_state = 3}, - [2829] = {.lex_state = 26, .external_lex_state = 3}, + [2824] = {.lex_state = 36, .external_lex_state = 5}, + [2825] = {.lex_state = 26, .external_lex_state = 4}, + [2826] = {.lex_state = 26, .external_lex_state = 4}, + [2827] = {.lex_state = 26, .external_lex_state = 4}, + [2828] = {.lex_state = 26, .external_lex_state = 4}, + [2829] = {.lex_state = 26, .external_lex_state = 4}, [2830] = {.lex_state = 26, .external_lex_state = 4}, - [2831] = {.lex_state = 26, .external_lex_state = 3}, - [2832] = {.lex_state = 26, .external_lex_state = 3}, - [2833] = {.lex_state = 26, .external_lex_state = 3}, - [2834] = {.lex_state = 26, .external_lex_state = 3}, - [2835] = {.lex_state = 26, .external_lex_state = 3}, + [2831] = {.lex_state = 26, .external_lex_state = 4}, + [2832] = {.lex_state = 26, .external_lex_state = 4}, + [2833] = {.lex_state = 36, .external_lex_state = 2}, + [2834] = {.lex_state = 26, .external_lex_state = 4}, + [2835] = {.lex_state = 26, .external_lex_state = 4}, [2836] = {.lex_state = 26, .external_lex_state = 3}, [2837] = {.lex_state = 26, .external_lex_state = 3}, - [2838] = {.lex_state = 26, .external_lex_state = 3}, - [2839] = {.lex_state = 26, .external_lex_state = 4}, + [2838] = {.lex_state = 26, .external_lex_state = 4}, + [2839] = {.lex_state = 24, .external_lex_state = 3}, [2840] = {.lex_state = 26, .external_lex_state = 4}, - [2841] = {.lex_state = 36, .external_lex_state = 5}, + [2841] = {.lex_state = 26, .external_lex_state = 4}, [2842] = {.lex_state = 26, .external_lex_state = 4}, - [2843] = {.lex_state = 26, .external_lex_state = 3}, - [2844] = {.lex_state = 26, .external_lex_state = 3}, + [2843] = {.lex_state = 26, .external_lex_state = 4}, + [2844] = {.lex_state = 26, .external_lex_state = 4}, [2845] = {.lex_state = 26, .external_lex_state = 4}, - [2846] = {.lex_state = 36, .external_lex_state = 5}, - [2847] = {.lex_state = 26, .external_lex_state = 3}, - [2848] = {.lex_state = 26, .external_lex_state = 3}, - [2849] = {.lex_state = 26, .external_lex_state = 3}, - [2850] = {.lex_state = 26, .external_lex_state = 3}, - [2851] = {.lex_state = 26, .external_lex_state = 3}, - [2852] = {.lex_state = 26, .external_lex_state = 3}, - [2853] = {.lex_state = 26, .external_lex_state = 4}, + [2846] = {.lex_state = 26, .external_lex_state = 4}, + [2847] = {.lex_state = 26, .external_lex_state = 4}, + [2848] = {.lex_state = 26, .external_lex_state = 4}, + [2849] = {.lex_state = 36, .external_lex_state = 2}, + [2850] = {.lex_state = 26, .external_lex_state = 4}, + [2851] = {.lex_state = 26, .external_lex_state = 4}, + [2852] = {.lex_state = 26, .external_lex_state = 4}, + [2853] = {.lex_state = 26, .external_lex_state = 3}, [2854] = {.lex_state = 26, .external_lex_state = 3}, - [2855] = {.lex_state = 26, .external_lex_state = 3}, - [2856] = {.lex_state = 26, .external_lex_state = 3}, - [2857] = {.lex_state = 26, .external_lex_state = 3}, - [2858] = {.lex_state = 26, .external_lex_state = 3}, - [2859] = {.lex_state = 26, .external_lex_state = 3}, - [2860] = {.lex_state = 26, .external_lex_state = 3}, - [2861] = {.lex_state = 26, .external_lex_state = 3}, - [2862] = {.lex_state = 26, .external_lex_state = 3}, - [2863] = {.lex_state = 35, .external_lex_state = 5}, + [2855] = {.lex_state = 36, .external_lex_state = 2}, + [2856] = {.lex_state = 26, .external_lex_state = 4}, + [2857] = {.lex_state = 26, .external_lex_state = 4}, + [2858] = {.lex_state = 26, .external_lex_state = 4}, + [2859] = {.lex_state = 26, .external_lex_state = 4}, + [2860] = {.lex_state = 26, .external_lex_state = 4}, + [2861] = {.lex_state = 26, .external_lex_state = 4}, + [2862] = {.lex_state = 26, .external_lex_state = 4}, + [2863] = {.lex_state = 26, .external_lex_state = 4}, [2864] = {.lex_state = 26, .external_lex_state = 4}, - [2865] = {.lex_state = 26, .external_lex_state = 3}, - [2866] = {.lex_state = 26, .external_lex_state = 3}, + [2865] = {.lex_state = 26, .external_lex_state = 4}, + [2866] = {.lex_state = 26, .external_lex_state = 4}, [2867] = {.lex_state = 26, .external_lex_state = 4}, - [2868] = {.lex_state = 36, .external_lex_state = 5}, - [2869] = {.lex_state = 26, .external_lex_state = 3}, + [2868] = {.lex_state = 26, .external_lex_state = 3}, + [2869] = {.lex_state = 26, .external_lex_state = 4}, [2870] = {.lex_state = 26, .external_lex_state = 4}, - [2871] = {.lex_state = 35, .external_lex_state = 5}, + [2871] = {.lex_state = 26, .external_lex_state = 4}, [2872] = {.lex_state = 26, .external_lex_state = 3}, - [2873] = {.lex_state = 26, .external_lex_state = 3}, + [2873] = {.lex_state = 26, .external_lex_state = 4}, [2874] = {.lex_state = 26, .external_lex_state = 4}, - [2875] = {.lex_state = 26, .external_lex_state = 3}, - [2876] = {.lex_state = 26, .external_lex_state = 3}, - [2877] = {.lex_state = 26, .external_lex_state = 3}, + [2875] = {.lex_state = 26, .external_lex_state = 4}, + [2876] = {.lex_state = 26, .external_lex_state = 4}, + [2877] = {.lex_state = 26, .external_lex_state = 4}, [2878] = {.lex_state = 26, .external_lex_state = 4}, [2879] = {.lex_state = 26, .external_lex_state = 4}, - [2880] = {.lex_state = 26, .external_lex_state = 4}, + [2880] = {.lex_state = 26, .external_lex_state = 3}, [2881] = {.lex_state = 26, .external_lex_state = 3}, - [2882] = {.lex_state = 26, .external_lex_state = 3}, - [2883] = {.lex_state = 26, .external_lex_state = 3}, - [2884] = {.lex_state = 26, .external_lex_state = 3}, - [2885] = {.lex_state = 26, .external_lex_state = 3}, - [2886] = {.lex_state = 26, .external_lex_state = 3}, + [2882] = {.lex_state = 26, .external_lex_state = 4}, + [2883] = {.lex_state = 26, .external_lex_state = 4}, + [2884] = {.lex_state = 26, .external_lex_state = 4}, + [2885] = {.lex_state = 26, .external_lex_state = 4}, + [2886] = {.lex_state = 26, .external_lex_state = 4}, [2887] = {.lex_state = 26, .external_lex_state = 4}, [2888] = {.lex_state = 26, .external_lex_state = 4}, [2889] = {.lex_state = 26, .external_lex_state = 4}, - [2890] = {.lex_state = 26, .external_lex_state = 3}, - [2891] = {.lex_state = 26, .external_lex_state = 3}, - [2892] = {.lex_state = 26, .external_lex_state = 3}, + [2890] = {.lex_state = 26, .external_lex_state = 4}, + [2891] = {.lex_state = 26, .external_lex_state = 4}, + [2892] = {.lex_state = 36, .external_lex_state = 2}, [2893] = {.lex_state = 26, .external_lex_state = 4}, - [2894] = {.lex_state = 26, .external_lex_state = 3}, + [2894] = {.lex_state = 26, .external_lex_state = 4}, [2895] = {.lex_state = 26, .external_lex_state = 4}, [2896] = {.lex_state = 26, .external_lex_state = 3}, - [2897] = {.lex_state = 26, .external_lex_state = 3}, - [2898] = {.lex_state = 26, .external_lex_state = 3}, - [2899] = {.lex_state = 26, .external_lex_state = 3}, - [2900] = {.lex_state = 26, .external_lex_state = 3}, - [2901] = {.lex_state = 26, .external_lex_state = 3}, - [2902] = {.lex_state = 26, .external_lex_state = 3}, - [2903] = {.lex_state = 26, .external_lex_state = 3}, - [2904] = {.lex_state = 26, .external_lex_state = 3}, - [2905] = {.lex_state = 26, .external_lex_state = 3}, - [2906] = {.lex_state = 26, .external_lex_state = 3}, - [2907] = {.lex_state = 26, .external_lex_state = 3}, - [2908] = {.lex_state = 26, .external_lex_state = 3}, - [2909] = {.lex_state = 36, .external_lex_state = 5}, - [2910] = {.lex_state = 26, .external_lex_state = 3}, - [2911] = {.lex_state = 36, .external_lex_state = 5}, - [2912] = {.lex_state = 26, .external_lex_state = 3}, - [2913] = {.lex_state = 26, .external_lex_state = 3}, - [2914] = {.lex_state = 26, .external_lex_state = 3}, - [2915] = {.lex_state = 26, .external_lex_state = 3}, - [2916] = {.lex_state = 26, .external_lex_state = 3}, - [2917] = {.lex_state = 26, .external_lex_state = 3}, - [2918] = {.lex_state = 26, .external_lex_state = 3}, - [2919] = {.lex_state = 26, .external_lex_state = 3}, - [2920] = {.lex_state = 26, .external_lex_state = 3}, + [2897] = {.lex_state = 26, .external_lex_state = 4}, + [2898] = {.lex_state = 26, .external_lex_state = 4}, + [2899] = {.lex_state = 26, .external_lex_state = 4}, + [2900] = {.lex_state = 26, .external_lex_state = 4}, + [2901] = {.lex_state = 35, .external_lex_state = 5}, + [2902] = {.lex_state = 26, .external_lex_state = 4}, + [2903] = {.lex_state = 26, .external_lex_state = 4}, + [2904] = {.lex_state = 26, .external_lex_state = 4}, + [2905] = {.lex_state = 26, .external_lex_state = 4}, + [2906] = {.lex_state = 26, .external_lex_state = 4}, + [2907] = {.lex_state = 26, .external_lex_state = 4}, + [2908] = {.lex_state = 26, .external_lex_state = 4}, + [2909] = {.lex_state = 26, .external_lex_state = 4}, + [2910] = {.lex_state = 26, .external_lex_state = 4}, + [2911] = {.lex_state = 26, .external_lex_state = 3}, + [2912] = {.lex_state = 36, .external_lex_state = 2}, + [2913] = {.lex_state = 26, .external_lex_state = 4}, + [2914] = {.lex_state = 26, .external_lex_state = 4}, + [2915] = {.lex_state = 26, .external_lex_state = 4}, + [2916] = {.lex_state = 26, .external_lex_state = 4}, + [2917] = {.lex_state = 26, .external_lex_state = 4}, + [2918] = {.lex_state = 26, .external_lex_state = 4}, + [2919] = {.lex_state = 26, .external_lex_state = 4}, + [2920] = {.lex_state = 26, .external_lex_state = 4}, [2921] = {.lex_state = 26, .external_lex_state = 4}, [2922] = {.lex_state = 26, .external_lex_state = 4}, - [2923] = {.lex_state = 26, .external_lex_state = 3}, - [2924] = {.lex_state = 26, .external_lex_state = 3}, - [2925] = {.lex_state = 26, .external_lex_state = 3}, - [2926] = {.lex_state = 26, .external_lex_state = 3}, - [2927] = {.lex_state = 26, .external_lex_state = 4}, - [2928] = {.lex_state = 26, .external_lex_state = 3}, + [2923] = {.lex_state = 35, .external_lex_state = 5}, + [2924] = {.lex_state = 36, .external_lex_state = 5}, + [2925] = {.lex_state = 26, .external_lex_state = 4}, + [2926] = {.lex_state = 26, .external_lex_state = 4}, + [2927] = {.lex_state = 36, .external_lex_state = 2}, + [2928] = {.lex_state = 26, .external_lex_state = 4}, [2929] = {.lex_state = 26, .external_lex_state = 4}, - [2930] = {.lex_state = 36, .external_lex_state = 5}, + [2930] = {.lex_state = 26, .external_lex_state = 4}, [2931] = {.lex_state = 26, .external_lex_state = 4}, [2932] = {.lex_state = 26, .external_lex_state = 4}, [2933] = {.lex_state = 26, .external_lex_state = 4}, - [2934] = {.lex_state = 24, .external_lex_state = 3}, + [2934] = {.lex_state = 26, .external_lex_state = 4}, [2935] = {.lex_state = 26, .external_lex_state = 4}, [2936] = {.lex_state = 26, .external_lex_state = 4}, [2937] = {.lex_state = 26, .external_lex_state = 4}, - [2938] = {.lex_state = 26, .external_lex_state = 3}, - [2939] = {.lex_state = 26, .external_lex_state = 3}, - [2940] = {.lex_state = 26, .external_lex_state = 3}, - [2941] = {.lex_state = 26, .external_lex_state = 3}, - [2942] = {.lex_state = 36, .external_lex_state = 2}, + [2938] = {.lex_state = 26, .external_lex_state = 4}, + [2939] = {.lex_state = 26, .external_lex_state = 4}, + [2940] = {.lex_state = 26, .external_lex_state = 4}, + [2941] = {.lex_state = 26, .external_lex_state = 4}, + [2942] = {.lex_state = 26, .external_lex_state = 4}, [2943] = {.lex_state = 26, .external_lex_state = 4}, [2944] = {.lex_state = 26, .external_lex_state = 4}, [2945] = {.lex_state = 26, .external_lex_state = 4}, [2946] = {.lex_state = 26, .external_lex_state = 4}, [2947] = {.lex_state = 26, .external_lex_state = 4}, - [2948] = {.lex_state = 26, .external_lex_state = 4}, - [2949] = {.lex_state = 26, .external_lex_state = 3}, + [2948] = {.lex_state = 36, .external_lex_state = 5}, + [2949] = {.lex_state = 26, .external_lex_state = 4}, [2950] = {.lex_state = 26, .external_lex_state = 4}, [2951] = {.lex_state = 26, .external_lex_state = 4}, [2952] = {.lex_state = 26, .external_lex_state = 4}, [2953] = {.lex_state = 26, .external_lex_state = 4}, - [2954] = {.lex_state = 26, .external_lex_state = 4}, - [2955] = {.lex_state = 26, .external_lex_state = 4}, + [2954] = {.lex_state = 26, .external_lex_state = 3}, + [2955] = {.lex_state = 26, .external_lex_state = 3}, [2956] = {.lex_state = 26, .external_lex_state = 4}, [2957] = {.lex_state = 26, .external_lex_state = 4}, - [2958] = {.lex_state = 26, .external_lex_state = 4}, - [2959] = {.lex_state = 26, .external_lex_state = 3}, - [2960] = {.lex_state = 36, .external_lex_state = 5}, + [2958] = {.lex_state = 26, .external_lex_state = 3}, + [2959] = {.lex_state = 26, .external_lex_state = 4}, + [2960] = {.lex_state = 26, .external_lex_state = 4}, [2961] = {.lex_state = 26, .external_lex_state = 4}, - [2962] = {.lex_state = 36, .external_lex_state = 5}, + [2962] = {.lex_state = 26, .external_lex_state = 4}, [2963] = {.lex_state = 26, .external_lex_state = 4}, [2964] = {.lex_state = 26, .external_lex_state = 4}, - [2965] = {.lex_state = 26, .external_lex_state = 3}, + [2965] = {.lex_state = 26, .external_lex_state = 4}, [2966] = {.lex_state = 26, .external_lex_state = 4}, - [2967] = {.lex_state = 35, .external_lex_state = 5}, + [2967] = {.lex_state = 26, .external_lex_state = 4}, [2968] = {.lex_state = 26, .external_lex_state = 4}, [2969] = {.lex_state = 26, .external_lex_state = 4}, [2970] = {.lex_state = 26, .external_lex_state = 4}, - [2971] = {.lex_state = 26, .external_lex_state = 4}, - [2972] = {.lex_state = 26, .external_lex_state = 4}, - [2973] = {.lex_state = 26, .external_lex_state = 4}, - [2974] = {.lex_state = 26, .external_lex_state = 3}, + [2971] = {.lex_state = 36, .external_lex_state = 5}, + [2972] = {.lex_state = 26, .external_lex_state = 3}, + [2973] = {.lex_state = 26, .external_lex_state = 3}, + [2974] = {.lex_state = 26, .external_lex_state = 4}, [2975] = {.lex_state = 26, .external_lex_state = 4}, - [2976] = {.lex_state = 26, .external_lex_state = 3}, + [2976] = {.lex_state = 26, .external_lex_state = 4}, [2977] = {.lex_state = 26, .external_lex_state = 4}, [2978] = {.lex_state = 26, .external_lex_state = 4}, - [2979] = {.lex_state = 26, .external_lex_state = 3}, - [2980] = {.lex_state = 36, .external_lex_state = 5}, - [2981] = {.lex_state = 26, .external_lex_state = 4}, + [2979] = {.lex_state = 26, .external_lex_state = 4}, + [2980] = {.lex_state = 26, .external_lex_state = 4}, + [2981] = {.lex_state = 26, .external_lex_state = 3}, [2982] = {.lex_state = 26, .external_lex_state = 4}, - [2983] = {.lex_state = 26, .external_lex_state = 3}, - [2984] = {.lex_state = 26, .external_lex_state = 4}, + [2983] = {.lex_state = 26, .external_lex_state = 4}, + [2984] = {.lex_state = 26, .external_lex_state = 3}, [2985] = {.lex_state = 26, .external_lex_state = 4}, [2986] = {.lex_state = 26, .external_lex_state = 4}, [2987] = {.lex_state = 26, .external_lex_state = 3}, - [2988] = {.lex_state = 26, .external_lex_state = 4}, - [2989] = {.lex_state = 26, .external_lex_state = 4}, - [2990] = {.lex_state = 26, .external_lex_state = 4}, - [2991] = {.lex_state = 35, .external_lex_state = 5}, + [2988] = {.lex_state = 35, .external_lex_state = 5}, + [2989] = {.lex_state = 35, .external_lex_state = 5}, + [2990] = {.lex_state = 35, .external_lex_state = 5}, + [2991] = {.lex_state = 36, .external_lex_state = 5}, [2992] = {.lex_state = 26, .external_lex_state = 4}, - [2993] = {.lex_state = 26, .external_lex_state = 4}, + [2993] = {.lex_state = 26, .external_lex_state = 3}, [2994] = {.lex_state = 26, .external_lex_state = 4}, [2995] = {.lex_state = 26, .external_lex_state = 4}, - [2996] = {.lex_state = 26, .external_lex_state = 4}, - [2997] = {.lex_state = 26, .external_lex_state = 4}, - [2998] = {.lex_state = 26, .external_lex_state = 4}, - [2999] = {.lex_state = 36, .external_lex_state = 5}, + [2996] = {.lex_state = 36, .external_lex_state = 5}, + [2997] = {.lex_state = 26, .external_lex_state = 3}, + [2998] = {.lex_state = 26, .external_lex_state = 3}, + [2999] = {.lex_state = 26, .external_lex_state = 4}, [3000] = {.lex_state = 26, .external_lex_state = 4}, - [3001] = {.lex_state = 26, .external_lex_state = 4}, - [3002] = {.lex_state = 36, .external_lex_state = 5}, - [3003] = {.lex_state = 36, .external_lex_state = 2}, + [3001] = {.lex_state = 26, .external_lex_state = 3}, + [3002] = {.lex_state = 26, .external_lex_state = 4}, + [3003] = {.lex_state = 26, .external_lex_state = 3}, [3004] = {.lex_state = 26, .external_lex_state = 4}, - [3005] = {.lex_state = 26, .external_lex_state = 3}, + [3005] = {.lex_state = 36, .external_lex_state = 5}, [3006] = {.lex_state = 26, .external_lex_state = 4}, - [3007] = {.lex_state = 36, .external_lex_state = 2}, - [3008] = {.lex_state = 26, .external_lex_state = 4}, - [3009] = {.lex_state = 26, .external_lex_state = 4}, + [3007] = {.lex_state = 26, .external_lex_state = 3}, + [3008] = {.lex_state = 26, .external_lex_state = 3}, + [3009] = {.lex_state = 26, .external_lex_state = 3}, [3010] = {.lex_state = 26, .external_lex_state = 4}, - [3011] = {.lex_state = 26, .external_lex_state = 3}, - [3012] = {.lex_state = 26, .external_lex_state = 4}, - [3013] = {.lex_state = 26, .external_lex_state = 4}, - [3014] = {.lex_state = 26, .external_lex_state = 4}, + [3011] = {.lex_state = 26, .external_lex_state = 4}, + [3012] = {.lex_state = 26, .external_lex_state = 3}, + [3013] = {.lex_state = 36, .external_lex_state = 5}, + [3014] = {.lex_state = 26, .external_lex_state = 3}, [3015] = {.lex_state = 26, .external_lex_state = 3}, - [3016] = {.lex_state = 26, .external_lex_state = 4}, - [3017] = {.lex_state = 26, .external_lex_state = 4}, - [3018] = {.lex_state = 26, .external_lex_state = 4}, - [3019] = {.lex_state = 26, .external_lex_state = 4}, - [3020] = {.lex_state = 26, .external_lex_state = 4}, - [3021] = {.lex_state = 26, .external_lex_state = 4}, - [3022] = {.lex_state = 26, .external_lex_state = 3}, - [3023] = {.lex_state = 26, .external_lex_state = 3}, + [3016] = {.lex_state = 26, .external_lex_state = 3}, + [3017] = {.lex_state = 26, .external_lex_state = 3}, + [3018] = {.lex_state = 26, .external_lex_state = 3}, + [3019] = {.lex_state = 26, .external_lex_state = 3}, + [3020] = {.lex_state = 26, .external_lex_state = 3}, + [3021] = {.lex_state = 26, .external_lex_state = 3}, + [3022] = {.lex_state = 36, .external_lex_state = 5}, + [3023] = {.lex_state = 26, .external_lex_state = 4}, [3024] = {.lex_state = 26, .external_lex_state = 4}, - [3025] = {.lex_state = 26, .external_lex_state = 3}, - [3026] = {.lex_state = 26, .external_lex_state = 4}, + [3025] = {.lex_state = 26, .external_lex_state = 4}, + [3026] = {.lex_state = 36, .external_lex_state = 5}, [3027] = {.lex_state = 26, .external_lex_state = 4}, - [3028] = {.lex_state = 26, .external_lex_state = 4}, + [3028] = {.lex_state = 26, .external_lex_state = 3}, [3029] = {.lex_state = 26, .external_lex_state = 4}, [3030] = {.lex_state = 26, .external_lex_state = 4}, - [3031] = {.lex_state = 26, .external_lex_state = 4}, + [3031] = {.lex_state = 36, .external_lex_state = 5}, [3032] = {.lex_state = 26, .external_lex_state = 4}, - [3033] = {.lex_state = 26, .external_lex_state = 4}, + [3033] = {.lex_state = 36, .external_lex_state = 5}, [3034] = {.lex_state = 26, .external_lex_state = 4}, - [3035] = {.lex_state = 26, .external_lex_state = 4}, - [3036] = {.lex_state = 26, .external_lex_state = 4}, - [3037] = {.lex_state = 26, .external_lex_state = 4}, + [3035] = {.lex_state = 26, .external_lex_state = 3}, + [3036] = {.lex_state = 36, .external_lex_state = 5}, + [3037] = {.lex_state = 26, .external_lex_state = 3}, [3038] = {.lex_state = 26, .external_lex_state = 4}, - [3039] = {.lex_state = 26, .external_lex_state = 4}, + [3039] = {.lex_state = 36, .external_lex_state = 5}, [3040] = {.lex_state = 26, .external_lex_state = 4}, - [3041] = {.lex_state = 26, .external_lex_state = 4}, - [3042] = {.lex_state = 26, .external_lex_state = 4}, + [3041] = {.lex_state = 36, .external_lex_state = 5}, + [3042] = {.lex_state = 26, .external_lex_state = 3}, [3043] = {.lex_state = 26, .external_lex_state = 4}, - [3044] = {.lex_state = 26, .external_lex_state = 4}, - [3045] = {.lex_state = 26, .external_lex_state = 4}, + [3044] = {.lex_state = 26, .external_lex_state = 3}, + [3045] = {.lex_state = 26, .external_lex_state = 3}, [3046] = {.lex_state = 26, .external_lex_state = 4}, [3047] = {.lex_state = 26, .external_lex_state = 4}, [3048] = {.lex_state = 26, .external_lex_state = 4}, [3049] = {.lex_state = 26, .external_lex_state = 4}, - [3050] = {.lex_state = 26, .external_lex_state = 4}, + [3050] = {.lex_state = 26, .external_lex_state = 3}, [3051] = {.lex_state = 26, .external_lex_state = 4}, - [3052] = {.lex_state = 26, .external_lex_state = 4}, + [3052] = {.lex_state = 26, .external_lex_state = 3}, [3053] = {.lex_state = 26, .external_lex_state = 4}, - [3054] = {.lex_state = 26, .external_lex_state = 4}, + [3054] = {.lex_state = 26, .external_lex_state = 3}, [3055] = {.lex_state = 26, .external_lex_state = 4}, [3056] = {.lex_state = 26, .external_lex_state = 4}, [3057] = {.lex_state = 26, .external_lex_state = 4}, - [3058] = {.lex_state = 26, .external_lex_state = 4}, - [3059] = {.lex_state = 26, .external_lex_state = 4}, + [3058] = {.lex_state = 26, .external_lex_state = 3}, + [3059] = {.lex_state = 36, .external_lex_state = 5}, [3060] = {.lex_state = 26, .external_lex_state = 4}, - [3061] = {.lex_state = 26, .external_lex_state = 4}, - [3062] = {.lex_state = 26, .external_lex_state = 4}, - [3063] = {.lex_state = 26, .external_lex_state = 3}, - [3064] = {.lex_state = 26, .external_lex_state = 3}, - [3065] = {.lex_state = 26, .external_lex_state = 4}, + [3061] = {.lex_state = 36, .external_lex_state = 5}, + [3062] = {.lex_state = 36, .external_lex_state = 5}, + [3063] = {.lex_state = 26, .external_lex_state = 4}, + [3064] = {.lex_state = 36, .external_lex_state = 2}, + [3065] = {.lex_state = 36, .external_lex_state = 5}, [3066] = {.lex_state = 26, .external_lex_state = 4}, - [3067] = {.lex_state = 26, .external_lex_state = 4}, + [3067] = {.lex_state = 36, .external_lex_state = 2}, [3068] = {.lex_state = 26, .external_lex_state = 4}, - [3069] = {.lex_state = 26, .external_lex_state = 4}, - [3070] = {.lex_state = 26, .external_lex_state = 4}, + [3069] = {.lex_state = 36, .external_lex_state = 5}, + [3070] = {.lex_state = 26, .external_lex_state = 3}, [3071] = {.lex_state = 26, .external_lex_state = 4}, [3072] = {.lex_state = 26, .external_lex_state = 4}, - [3073] = {.lex_state = 26, .external_lex_state = 4}, - [3074] = {.lex_state = 26, .external_lex_state = 4}, - [3075] = {.lex_state = 35, .external_lex_state = 5}, + [3073] = {.lex_state = 36, .external_lex_state = 5}, + [3074] = {.lex_state = 36, .external_lex_state = 5}, + [3075] = {.lex_state = 26, .external_lex_state = 4}, [3076] = {.lex_state = 26, .external_lex_state = 4}, - [3077] = {.lex_state = 26, .external_lex_state = 4}, - [3078] = {.lex_state = 35, .external_lex_state = 5}, + [3077] = {.lex_state = 26, .external_lex_state = 3}, + [3078] = {.lex_state = 26, .external_lex_state = 4}, [3079] = {.lex_state = 26, .external_lex_state = 4}, - [3080] = {.lex_state = 26, .external_lex_state = 4}, - [3081] = {.lex_state = 26, .external_lex_state = 4}, - [3082] = {.lex_state = 36, .external_lex_state = 2}, - [3083] = {.lex_state = 26, .external_lex_state = 4}, + [3080] = {.lex_state = 36, .external_lex_state = 5}, + [3081] = {.lex_state = 36, .external_lex_state = 5}, + [3082] = {.lex_state = 26, .external_lex_state = 3}, + [3083] = {.lex_state = 36, .external_lex_state = 5}, [3084] = {.lex_state = 26, .external_lex_state = 4}, [3085] = {.lex_state = 26, .external_lex_state = 4}, - [3086] = {.lex_state = 26, .external_lex_state = 4}, - [3087] = {.lex_state = 36, .external_lex_state = 5}, + [3086] = {.lex_state = 24, .external_lex_state = 4}, + [3087] = {.lex_state = 26, .external_lex_state = 4}, [3088] = {.lex_state = 26, .external_lex_state = 4}, [3089] = {.lex_state = 26, .external_lex_state = 4}, [3090] = {.lex_state = 26, .external_lex_state = 4}, [3091] = {.lex_state = 26, .external_lex_state = 4}, - [3092] = {.lex_state = 26, .external_lex_state = 4}, - [3093] = {.lex_state = 26, .external_lex_state = 4}, - [3094] = {.lex_state = 26, .external_lex_state = 4}, - [3095] = {.lex_state = 26, .external_lex_state = 4}, - [3096] = {.lex_state = 26, .external_lex_state = 4}, + [3092] = {.lex_state = 26, .external_lex_state = 3}, + [3093] = {.lex_state = 36, .external_lex_state = 5}, + [3094] = {.lex_state = 36, .external_lex_state = 5}, + [3095] = {.lex_state = 26, .external_lex_state = 3}, + [3096] = {.lex_state = 26, .external_lex_state = 3}, [3097] = {.lex_state = 26, .external_lex_state = 4}, [3098] = {.lex_state = 26, .external_lex_state = 4}, - [3099] = {.lex_state = 26, .external_lex_state = 4}, - [3100] = {.lex_state = 26, .external_lex_state = 4}, - [3101] = {.lex_state = 26, .external_lex_state = 4}, - [3102] = {.lex_state = 26, .external_lex_state = 4}, + [3099] = {.lex_state = 26, .external_lex_state = 3}, + [3100] = {.lex_state = 26, .external_lex_state = 3}, + [3101] = {.lex_state = 26, .external_lex_state = 3}, + [3102] = {.lex_state = 26, .external_lex_state = 3}, [3103] = {.lex_state = 26, .external_lex_state = 4}, [3104] = {.lex_state = 26, .external_lex_state = 4}, [3105] = {.lex_state = 26, .external_lex_state = 4}, - [3106] = {.lex_state = 26, .external_lex_state = 4}, - [3107] = {.lex_state = 26, .external_lex_state = 4}, + [3106] = {.lex_state = 26, .external_lex_state = 3}, + [3107] = {.lex_state = 26, .external_lex_state = 3}, [3108] = {.lex_state = 26, .external_lex_state = 4}, - [3109] = {.lex_state = 26, .external_lex_state = 4}, + [3109] = {.lex_state = 36, .external_lex_state = 5}, [3110] = {.lex_state = 26, .external_lex_state = 4}, - [3111] = {.lex_state = 26, .external_lex_state = 4}, + [3111] = {.lex_state = 26, .external_lex_state = 3}, [3112] = {.lex_state = 26, .external_lex_state = 4}, - [3113] = {.lex_state = 26, .external_lex_state = 4}, + [3113] = {.lex_state = 36, .external_lex_state = 5}, [3114] = {.lex_state = 26, .external_lex_state = 4}, - [3115] = {.lex_state = 36, .external_lex_state = 5}, - [3116] = {.lex_state = 36, .external_lex_state = 2}, - [3117] = {.lex_state = 36, .external_lex_state = 2}, - [3118] = {.lex_state = 26, .external_lex_state = 4}, + [3115] = {.lex_state = 26, .external_lex_state = 4}, + [3116] = {.lex_state = 26, .external_lex_state = 3}, + [3117] = {.lex_state = 26, .external_lex_state = 3}, + [3118] = {.lex_state = 36, .external_lex_state = 2}, [3119] = {.lex_state = 26, .external_lex_state = 4}, - [3120] = {.lex_state = 26, .external_lex_state = 3}, - [3121] = {.lex_state = 26, .external_lex_state = 4}, - [3122] = {.lex_state = 26, .external_lex_state = 4}, + [3120] = {.lex_state = 36, .external_lex_state = 5}, + [3121] = {.lex_state = 36, .external_lex_state = 2}, + [3122] = {.lex_state = 26, .external_lex_state = 3}, [3123] = {.lex_state = 26, .external_lex_state = 3}, - [3124] = {.lex_state = 26, .external_lex_state = 4}, - [3125] = {.lex_state = 26, .external_lex_state = 4}, - [3126] = {.lex_state = 26, .external_lex_state = 4}, - [3127] = {.lex_state = 26, .external_lex_state = 4}, - [3128] = {.lex_state = 26, .external_lex_state = 4}, - [3129] = {.lex_state = 26, .external_lex_state = 4}, - [3130] = {.lex_state = 35, .external_lex_state = 5}, + [3124] = {.lex_state = 36, .external_lex_state = 5}, + [3125] = {.lex_state = 26, .external_lex_state = 3}, + [3126] = {.lex_state = 26, .external_lex_state = 3}, + [3127] = {.lex_state = 26, .external_lex_state = 3}, + [3128] = {.lex_state = 26, .external_lex_state = 3}, + [3129] = {.lex_state = 26, .external_lex_state = 3}, + [3130] = {.lex_state = 26, .external_lex_state = 3}, [3131] = {.lex_state = 26, .external_lex_state = 4}, - [3132] = {.lex_state = 35, .external_lex_state = 5}, - [3133] = {.lex_state = 36, .external_lex_state = 2}, - [3134] = {.lex_state = 26, .external_lex_state = 4}, - [3135] = {.lex_state = 26, .external_lex_state = 4}, - [3136] = {.lex_state = 26, .external_lex_state = 4}, - [3137] = {.lex_state = 36, .external_lex_state = 2}, - [3138] = {.lex_state = 36, .external_lex_state = 2}, - [3139] = {.lex_state = 26, .external_lex_state = 4}, - [3140] = {.lex_state = 26, .external_lex_state = 3}, + [3132] = {.lex_state = 26, .external_lex_state = 3}, + [3133] = {.lex_state = 36, .external_lex_state = 5}, + [3134] = {.lex_state = 26, .external_lex_state = 3}, + [3135] = {.lex_state = 36, .external_lex_state = 5}, + [3136] = {.lex_state = 26, .external_lex_state = 3}, + [3137] = {.lex_state = 26, .external_lex_state = 4}, + [3138] = {.lex_state = 26, .external_lex_state = 4}, + [3139] = {.lex_state = 26, .external_lex_state = 3}, + [3140] = {.lex_state = 36, .external_lex_state = 2}, [3141] = {.lex_state = 26, .external_lex_state = 3}, [3142] = {.lex_state = 26, .external_lex_state = 3}, - [3143] = {.lex_state = 36, .external_lex_state = 5}, - [3144] = {.lex_state = 36, .external_lex_state = 5}, - [3145] = {.lex_state = 36, .external_lex_state = 2}, - [3146] = {.lex_state = 36, .external_lex_state = 5}, + [3143] = {.lex_state = 26, .external_lex_state = 3}, + [3144] = {.lex_state = 26, .external_lex_state = 3}, + [3145] = {.lex_state = 26, .external_lex_state = 3}, + [3146] = {.lex_state = 36, .external_lex_state = 2}, [3147] = {.lex_state = 26, .external_lex_state = 3}, - [3148] = {.lex_state = 26, .external_lex_state = 3}, - [3149] = {.lex_state = 26, .external_lex_state = 3}, - [3150] = {.lex_state = 26, .external_lex_state = 4}, + [3148] = {.lex_state = 36, .external_lex_state = 5}, + [3149] = {.lex_state = 36, .external_lex_state = 5}, + [3150] = {.lex_state = 26, .external_lex_state = 3}, [3151] = {.lex_state = 26, .external_lex_state = 4}, - [3152] = {.lex_state = 26, .external_lex_state = 4}, - [3153] = {.lex_state = 26, .external_lex_state = 3}, + [3152] = {.lex_state = 26, .external_lex_state = 3}, + [3153] = {.lex_state = 26, .external_lex_state = 4}, [3154] = {.lex_state = 26, .external_lex_state = 3}, - [3155] = {.lex_state = 36, .external_lex_state = 5}, - [3156] = {.lex_state = 26, .external_lex_state = 4}, - [3157] = {.lex_state = 26, .external_lex_state = 4}, - [3158] = {.lex_state = 36, .external_lex_state = 2}, + [3155] = {.lex_state = 26, .external_lex_state = 3}, + [3156] = {.lex_state = 36, .external_lex_state = 2}, + [3157] = {.lex_state = 26, .external_lex_state = 3}, + [3158] = {.lex_state = 26, .external_lex_state = 3}, [3159] = {.lex_state = 36, .external_lex_state = 5}, - [3160] = {.lex_state = 36, .external_lex_state = 5}, + [3160] = {.lex_state = 26, .external_lex_state = 3}, [3161] = {.lex_state = 36, .external_lex_state = 5}, [3162] = {.lex_state = 26, .external_lex_state = 3}, - [3163] = {.lex_state = 26, .external_lex_state = 4}, + [3163] = {.lex_state = 26, .external_lex_state = 3}, [3164] = {.lex_state = 26, .external_lex_state = 4}, [3165] = {.lex_state = 36, .external_lex_state = 5}, - [3166] = {.lex_state = 36, .external_lex_state = 2}, - [3167] = {.lex_state = 26, .external_lex_state = 4}, + [3166] = {.lex_state = 26, .external_lex_state = 3}, + [3167] = {.lex_state = 26, .external_lex_state = 3}, [3168] = {.lex_state = 26, .external_lex_state = 4}, - [3169] = {.lex_state = 36, .external_lex_state = 2}, - [3170] = {.lex_state = 26, .external_lex_state = 4}, - [3171] = {.lex_state = 26, .external_lex_state = 4}, - [3172] = {.lex_state = 26, .external_lex_state = 4}, + [3169] = {.lex_state = 26, .external_lex_state = 3}, + [3170] = {.lex_state = 26, .external_lex_state = 3}, + [3171] = {.lex_state = 26, .external_lex_state = 3}, + [3172] = {.lex_state = 26, .external_lex_state = 3}, [3173] = {.lex_state = 26, .external_lex_state = 3}, [3174] = {.lex_state = 26, .external_lex_state = 4}, - [3175] = {.lex_state = 26, .external_lex_state = 4}, + [3175] = {.lex_state = 26, .external_lex_state = 3}, [3176] = {.lex_state = 26, .external_lex_state = 4}, - [3177] = {.lex_state = 26, .external_lex_state = 4}, - [3178] = {.lex_state = 36, .external_lex_state = 5}, + [3177] = {.lex_state = 26, .external_lex_state = 3}, + [3178] = {.lex_state = 36, .external_lex_state = 2}, [3179] = {.lex_state = 26, .external_lex_state = 4}, [3180] = {.lex_state = 26, .external_lex_state = 4}, [3181] = {.lex_state = 26, .external_lex_state = 3}, - [3182] = {.lex_state = 26, .external_lex_state = 3}, - [3183] = {.lex_state = 36, .external_lex_state = 5}, - [3184] = {.lex_state = 26, .external_lex_state = 4}, - [3185] = {.lex_state = 26, .external_lex_state = 3}, - [3186] = {.lex_state = 36, .external_lex_state = 5}, - [3187] = {.lex_state = 26, .external_lex_state = 3}, - [3188] = {.lex_state = 26, .external_lex_state = 3}, - [3189] = {.lex_state = 26, .external_lex_state = 4}, - [3190] = {.lex_state = 24, .external_lex_state = 4}, - [3191] = {.lex_state = 36, .external_lex_state = 5}, - [3192] = {.lex_state = 26, .external_lex_state = 4}, + [3182] = {.lex_state = 26, .external_lex_state = 4}, + [3183] = {.lex_state = 26, .external_lex_state = 4}, + [3184] = {.lex_state = 26, .external_lex_state = 3}, + [3185] = {.lex_state = 36, .external_lex_state = 2}, + [3186] = {.lex_state = 26, .external_lex_state = 3}, + [3187] = {.lex_state = 26, .external_lex_state = 4}, + [3188] = {.lex_state = 36, .external_lex_state = 5}, + [3189] = {.lex_state = 36, .external_lex_state = 5}, + [3190] = {.lex_state = 26, .external_lex_state = 4}, + [3191] = {.lex_state = 26, .external_lex_state = 4}, + [3192] = {.lex_state = 26, .external_lex_state = 3}, [3193] = {.lex_state = 26, .external_lex_state = 4}, - [3194] = {.lex_state = 26, .external_lex_state = 4}, - [3195] = {.lex_state = 26, .external_lex_state = 4}, - [3196] = {.lex_state = 26, .external_lex_state = 4}, - [3197] = {.lex_state = 26, .external_lex_state = 4}, - [3198] = {.lex_state = 36, .external_lex_state = 5}, - [3199] = {.lex_state = 36, .external_lex_state = 5}, + [3194] = {.lex_state = 26, .external_lex_state = 3}, + [3195] = {.lex_state = 36, .external_lex_state = 5}, + [3196] = {.lex_state = 26, .external_lex_state = 3}, + [3197] = {.lex_state = 26, .external_lex_state = 3}, + [3198] = {.lex_state = 26, .external_lex_state = 3}, + [3199] = {.lex_state = 26, .external_lex_state = 4}, [3200] = {.lex_state = 26, .external_lex_state = 4}, - [3201] = {.lex_state = 26, .external_lex_state = 4}, - [3202] = {.lex_state = 26, .external_lex_state = 4}, - [3203] = {.lex_state = 36, .external_lex_state = 5}, - [3204] = {.lex_state = 36, .external_lex_state = 2}, - [3205] = {.lex_state = 36, .external_lex_state = 5}, + [3201] = {.lex_state = 26, .external_lex_state = 3}, + [3202] = {.lex_state = 26, .external_lex_state = 3}, + [3203] = {.lex_state = 26, .external_lex_state = 3}, + [3204] = {.lex_state = 26, .external_lex_state = 3}, + [3205] = {.lex_state = 26, .external_lex_state = 3}, [3206] = {.lex_state = 26, .external_lex_state = 3}, - [3207] = {.lex_state = 36, .external_lex_state = 2}, + [3207] = {.lex_state = 26, .external_lex_state = 4}, [3208] = {.lex_state = 36, .external_lex_state = 5}, [3209] = {.lex_state = 26, .external_lex_state = 4}, - [3210] = {.lex_state = 26, .external_lex_state = 4}, - [3211] = {.lex_state = 26, .external_lex_state = 4}, - [3212] = {.lex_state = 36, .external_lex_state = 5}, - [3213] = {.lex_state = 36, .external_lex_state = 5}, - [3214] = {.lex_state = 36, .external_lex_state = 5}, - [3215] = {.lex_state = 36, .external_lex_state = 2}, - [3216] = {.lex_state = 36, .external_lex_state = 2}, - [3217] = {.lex_state = 36, .external_lex_state = 2}, - [3218] = {.lex_state = 26, .external_lex_state = 4}, - [3219] = {.lex_state = 26, .external_lex_state = 4}, - [3220] = {.lex_state = 36, .external_lex_state = 5}, - [3221] = {.lex_state = 26, .external_lex_state = 4}, + [3210] = {.lex_state = 26, .external_lex_state = 3}, + [3211] = {.lex_state = 26, .external_lex_state = 3}, + [3212] = {.lex_state = 26, .external_lex_state = 3}, + [3213] = {.lex_state = 27, .external_lex_state = 4}, + [3214] = {.lex_state = 26, .external_lex_state = 3}, + [3215] = {.lex_state = 26, .external_lex_state = 3}, + [3216] = {.lex_state = 26, .external_lex_state = 3}, + [3217] = {.lex_state = 26, .external_lex_state = 3}, + [3218] = {.lex_state = 26, .external_lex_state = 3}, + [3219] = {.lex_state = 36, .external_lex_state = 5}, + [3220] = {.lex_state = 26, .external_lex_state = 3}, + [3221] = {.lex_state = 26, .external_lex_state = 3}, [3222] = {.lex_state = 36, .external_lex_state = 2}, - [3223] = {.lex_state = 26, .external_lex_state = 4}, - [3224] = {.lex_state = 26, .external_lex_state = 3}, - [3225] = {.lex_state = 26, .external_lex_state = 4}, + [3223] = {.lex_state = 36, .external_lex_state = 5}, + [3224] = {.lex_state = 36, .external_lex_state = 2}, + [3225] = {.lex_state = 26, .external_lex_state = 3}, [3226] = {.lex_state = 26, .external_lex_state = 3}, - [3227] = {.lex_state = 26, .external_lex_state = 3}, - [3228] = {.lex_state = 26, .external_lex_state = 4}, + [3227] = {.lex_state = 36, .external_lex_state = 5}, + [3228] = {.lex_state = 36, .external_lex_state = 2}, [3229] = {.lex_state = 26, .external_lex_state = 4}, - [3230] = {.lex_state = 26, .external_lex_state = 4}, + [3230] = {.lex_state = 26, .external_lex_state = 3}, [3231] = {.lex_state = 26, .external_lex_state = 3}, - [3232] = {.lex_state = 36, .external_lex_state = 5}, - [3233] = {.lex_state = 26, .external_lex_state = 4}, - [3234] = {.lex_state = 36, .external_lex_state = 5}, - [3235] = {.lex_state = 36, .external_lex_state = 5}, + [3232] = {.lex_state = 26, .external_lex_state = 3}, + [3233] = {.lex_state = 26, .external_lex_state = 3}, + [3234] = {.lex_state = 26, .external_lex_state = 3}, + [3235] = {.lex_state = 26, .external_lex_state = 3}, [3236] = {.lex_state = 26, .external_lex_state = 3}, [3237] = {.lex_state = 36, .external_lex_state = 5}, - [3238] = {.lex_state = 26, .external_lex_state = 3}, - [3239] = {.lex_state = 36, .external_lex_state = 5}, + [3238] = {.lex_state = 36, .external_lex_state = 2}, + [3239] = {.lex_state = 36, .external_lex_state = 2}, [3240] = {.lex_state = 26, .external_lex_state = 3}, - [3241] = {.lex_state = 26, .external_lex_state = 4}, + [3241] = {.lex_state = 26, .external_lex_state = 3}, [3242] = {.lex_state = 26, .external_lex_state = 3}, - [3243] = {.lex_state = 26, .external_lex_state = 4}, - [3244] = {.lex_state = 26, .external_lex_state = 4}, - [3245] = {.lex_state = 36, .external_lex_state = 5}, - [3246] = {.lex_state = 26, .external_lex_state = 4}, - [3247] = {.lex_state = 26, .external_lex_state = 4}, + [3243] = {.lex_state = 26, .external_lex_state = 3}, + [3244] = {.lex_state = 26, .external_lex_state = 3}, + [3245] = {.lex_state = 26, .external_lex_state = 3}, + [3246] = {.lex_state = 26, .external_lex_state = 3}, + [3247] = {.lex_state = 26, .external_lex_state = 3}, [3248] = {.lex_state = 26, .external_lex_state = 3}, - [3249] = {.lex_state = 26, .external_lex_state = 4}, - [3250] = {.lex_state = 26, .external_lex_state = 4}, - [3251] = {.lex_state = 26, .external_lex_state = 4}, - [3252] = {.lex_state = 26, .external_lex_state = 3}, + [3249] = {.lex_state = 26, .external_lex_state = 3}, + [3250] = {.lex_state = 26, .external_lex_state = 3}, + [3251] = {.lex_state = 26, .external_lex_state = 3}, + [3252] = {.lex_state = 26, .external_lex_state = 4}, [3253] = {.lex_state = 36, .external_lex_state = 5}, - [3254] = {.lex_state = 26, .external_lex_state = 4}, + [3254] = {.lex_state = 36, .external_lex_state = 5}, [3255] = {.lex_state = 26, .external_lex_state = 3}, [3256] = {.lex_state = 36, .external_lex_state = 5}, [3257] = {.lex_state = 26, .external_lex_state = 3}, @@ -23744,428 +23525,428 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3262] = {.lex_state = 26, .external_lex_state = 3}, [3263] = {.lex_state = 26, .external_lex_state = 4}, [3264] = {.lex_state = 26, .external_lex_state = 3}, - [3265] = {.lex_state = 26, .external_lex_state = 3}, - [3266] = {.lex_state = 26, .external_lex_state = 3}, - [3267] = {.lex_state = 26, .external_lex_state = 3}, + [3265] = {.lex_state = 26, .external_lex_state = 4}, + [3266] = {.lex_state = 26, .external_lex_state = 4}, + [3267] = {.lex_state = 26, .external_lex_state = 4}, [3268] = {.lex_state = 26, .external_lex_state = 4}, - [3269] = {.lex_state = 26, .external_lex_state = 4}, - [3270] = {.lex_state = 26, .external_lex_state = 4}, + [3269] = {.lex_state = 36, .external_lex_state = 5}, + [3270] = {.lex_state = 36, .external_lex_state = 5}, [3271] = {.lex_state = 26, .external_lex_state = 3}, - [3272] = {.lex_state = 26, .external_lex_state = 4}, - [3273] = {.lex_state = 26, .external_lex_state = 3}, - [3274] = {.lex_state = 26, .external_lex_state = 3}, - [3275] = {.lex_state = 26, .external_lex_state = 4}, + [3272] = {.lex_state = 36, .external_lex_state = 2}, + [3273] = {.lex_state = 26, .external_lex_state = 4}, + [3274] = {.lex_state = 36, .external_lex_state = 2}, + [3275] = {.lex_state = 26, .external_lex_state = 3}, [3276] = {.lex_state = 26, .external_lex_state = 3}, [3277] = {.lex_state = 26, .external_lex_state = 3}, - [3278] = {.lex_state = 26, .external_lex_state = 3}, + [3278] = {.lex_state = 26, .external_lex_state = 4}, [3279] = {.lex_state = 26, .external_lex_state = 4}, - [3280] = {.lex_state = 26, .external_lex_state = 3}, - [3281] = {.lex_state = 26, .external_lex_state = 3}, + [3280] = {.lex_state = 26, .external_lex_state = 4}, + [3281] = {.lex_state = 36, .external_lex_state = 5}, [3282] = {.lex_state = 26, .external_lex_state = 3}, - [3283] = {.lex_state = 26, .external_lex_state = 3}, - [3284] = {.lex_state = 26, .external_lex_state = 3}, + [3283] = {.lex_state = 36, .external_lex_state = 5}, + [3284] = {.lex_state = 36, .external_lex_state = 5}, [3285] = {.lex_state = 26, .external_lex_state = 3}, [3286] = {.lex_state = 26, .external_lex_state = 3}, - [3287] = {.lex_state = 26, .external_lex_state = 3}, + [3287] = {.lex_state = 36, .external_lex_state = 5}, [3288] = {.lex_state = 36, .external_lex_state = 5}, - [3289] = {.lex_state = 26, .external_lex_state = 4}, - [3290] = {.lex_state = 26, .external_lex_state = 4}, - [3291] = {.lex_state = 26, .external_lex_state = 4}, - [3292] = {.lex_state = 26, .external_lex_state = 3}, - [3293] = {.lex_state = 26, .external_lex_state = 3}, - [3294] = {.lex_state = 26, .external_lex_state = 4}, + [3289] = {.lex_state = 36, .external_lex_state = 2}, + [3290] = {.lex_state = 36, .external_lex_state = 5}, + [3291] = {.lex_state = 36, .external_lex_state = 5}, + [3292] = {.lex_state = 36, .external_lex_state = 5}, + [3293] = {.lex_state = 36, .external_lex_state = 5}, + [3294] = {.lex_state = 36, .external_lex_state = 5}, [3295] = {.lex_state = 26, .external_lex_state = 3}, - [3296] = {.lex_state = 26, .external_lex_state = 4}, - [3297] = {.lex_state = 26, .external_lex_state = 4}, - [3298] = {.lex_state = 26, .external_lex_state = 4}, + [3296] = {.lex_state = 26, .external_lex_state = 3}, + [3297] = {.lex_state = 26, .external_lex_state = 3}, + [3298] = {.lex_state = 36, .external_lex_state = 5}, [3299] = {.lex_state = 26, .external_lex_state = 4}, - [3300] = {.lex_state = 26, .external_lex_state = 4}, - [3301] = {.lex_state = 26, .external_lex_state = 4}, - [3302] = {.lex_state = 26, .external_lex_state = 3}, + [3300] = {.lex_state = 26, .external_lex_state = 3}, + [3301] = {.lex_state = 36, .external_lex_state = 5}, + [3302] = {.lex_state = 36, .external_lex_state = 5}, [3303] = {.lex_state = 26, .external_lex_state = 3}, - [3304] = {.lex_state = 26, .external_lex_state = 3}, - [3305] = {.lex_state = 26, .external_lex_state = 4}, + [3304] = {.lex_state = 36, .external_lex_state = 5}, + [3305] = {.lex_state = 26, .external_lex_state = 3}, [3306] = {.lex_state = 26, .external_lex_state = 3}, - [3307] = {.lex_state = 26, .external_lex_state = 3}, + [3307] = {.lex_state = 36, .external_lex_state = 2}, [3308] = {.lex_state = 26, .external_lex_state = 3}, - [3309] = {.lex_state = 26, .external_lex_state = 3}, + [3309] = {.lex_state = 36, .external_lex_state = 5}, [3310] = {.lex_state = 26, .external_lex_state = 3}, [3311] = {.lex_state = 26, .external_lex_state = 3}, - [3312] = {.lex_state = 26, .external_lex_state = 4}, + [3312] = {.lex_state = 36, .external_lex_state = 5}, [3313] = {.lex_state = 26, .external_lex_state = 3}, - [3314] = {.lex_state = 26, .external_lex_state = 3}, + [3314] = {.lex_state = 36, .external_lex_state = 5}, [3315] = {.lex_state = 26, .external_lex_state = 3}, [3316] = {.lex_state = 26, .external_lex_state = 3}, - [3317] = {.lex_state = 36, .external_lex_state = 2}, - [3318] = {.lex_state = 36, .external_lex_state = 5}, - [3319] = {.lex_state = 26, .external_lex_state = 3}, - [3320] = {.lex_state = 26, .external_lex_state = 3}, + [3317] = {.lex_state = 26, .external_lex_state = 3}, + [3318] = {.lex_state = 26, .external_lex_state = 3}, + [3319] = {.lex_state = 36, .external_lex_state = 5}, + [3320] = {.lex_state = 36, .external_lex_state = 5}, [3321] = {.lex_state = 26, .external_lex_state = 3}, - [3322] = {.lex_state = 26, .external_lex_state = 3}, - [3323] = {.lex_state = 27, .external_lex_state = 4}, + [3322] = {.lex_state = 36, .external_lex_state = 5}, + [3323] = {.lex_state = 26, .external_lex_state = 3}, [3324] = {.lex_state = 26, .external_lex_state = 3}, - [3325] = {.lex_state = 36, .external_lex_state = 5}, - [3326] = {.lex_state = 26, .external_lex_state = 4}, - [3327] = {.lex_state = 26, .external_lex_state = 4}, - [3328] = {.lex_state = 26, .external_lex_state = 4}, - [3329] = {.lex_state = 36, .external_lex_state = 5}, - [3330] = {.lex_state = 26, .external_lex_state = 3}, + [3325] = {.lex_state = 26, .external_lex_state = 3}, + [3326] = {.lex_state = 36, .external_lex_state = 5}, + [3327] = {.lex_state = 29, .external_lex_state = 3}, + [3328] = {.lex_state = 26, .external_lex_state = 3}, + [3329] = {.lex_state = 26, .external_lex_state = 3}, + [3330] = {.lex_state = 36, .external_lex_state = 2}, [3331] = {.lex_state = 26, .external_lex_state = 3}, - [3332] = {.lex_state = 26, .external_lex_state = 3}, - [3333] = {.lex_state = 36, .external_lex_state = 5}, - [3334] = {.lex_state = 26, .external_lex_state = 3}, - [3335] = {.lex_state = 36, .external_lex_state = 5}, + [3332] = {.lex_state = 36, .external_lex_state = 2}, + [3333] = {.lex_state = 26, .external_lex_state = 3}, + [3334] = {.lex_state = 26, .external_lex_state = 4}, + [3335] = {.lex_state = 26, .external_lex_state = 3}, [3336] = {.lex_state = 26, .external_lex_state = 4}, - [3337] = {.lex_state = 36, .external_lex_state = 5}, + [3337] = {.lex_state = 26, .external_lex_state = 3}, [3338] = {.lex_state = 26, .external_lex_state = 3}, - [3339] = {.lex_state = 36, .external_lex_state = 5}, + [3339] = {.lex_state = 26, .external_lex_state = 3}, [3340] = {.lex_state = 26, .external_lex_state = 4}, - [3341] = {.lex_state = 36, .external_lex_state = 5}, - [3342] = {.lex_state = 26, .external_lex_state = 3}, + [3341] = {.lex_state = 26, .external_lex_state = 3}, + [3342] = {.lex_state = 36, .external_lex_state = 2}, [3343] = {.lex_state = 26, .external_lex_state = 3}, - [3344] = {.lex_state = 26, .external_lex_state = 4}, + [3344] = {.lex_state = 36, .external_lex_state = 2}, [3345] = {.lex_state = 26, .external_lex_state = 3}, [3346] = {.lex_state = 26, .external_lex_state = 3}, - [3347] = {.lex_state = 26, .external_lex_state = 4}, - [3348] = {.lex_state = 26, .external_lex_state = 4}, - [3349] = {.lex_state = 26, .external_lex_state = 4}, - [3350] = {.lex_state = 26, .external_lex_state = 4}, - [3351] = {.lex_state = 36, .external_lex_state = 5}, - [3352] = {.lex_state = 26, .external_lex_state = 3}, - [3353] = {.lex_state = 26, .external_lex_state = 4}, - [3354] = {.lex_state = 36, .external_lex_state = 5}, - [3355] = {.lex_state = 26, .external_lex_state = 4}, - [3356] = {.lex_state = 26, .external_lex_state = 3}, - [3357] = {.lex_state = 26, .external_lex_state = 4}, - [3358] = {.lex_state = 36, .external_lex_state = 5}, - [3359] = {.lex_state = 26, .external_lex_state = 4}, + [3347] = {.lex_state = 26, .external_lex_state = 3}, + [3348] = {.lex_state = 26, .external_lex_state = 3}, + [3349] = {.lex_state = 26, .external_lex_state = 3}, + [3350] = {.lex_state = 26, .external_lex_state = 3}, + [3351] = {.lex_state = 36, .external_lex_state = 2}, + [3352] = {.lex_state = 36, .external_lex_state = 5}, + [3353] = {.lex_state = 36, .external_lex_state = 2}, + [3354] = {.lex_state = 36, .external_lex_state = 2}, + [3355] = {.lex_state = 26, .external_lex_state = 3}, + [3356] = {.lex_state = 36, .external_lex_state = 5}, + [3357] = {.lex_state = 26, .external_lex_state = 3}, + [3358] = {.lex_state = 26, .external_lex_state = 3}, + [3359] = {.lex_state = 26, .external_lex_state = 3}, [3360] = {.lex_state = 26, .external_lex_state = 3}, - [3361] = {.lex_state = 26, .external_lex_state = 3}, + [3361] = {.lex_state = 36, .external_lex_state = 2}, [3362] = {.lex_state = 26, .external_lex_state = 3}, [3363] = {.lex_state = 26, .external_lex_state = 3}, [3364] = {.lex_state = 26, .external_lex_state = 3}, - [3365] = {.lex_state = 36, .external_lex_state = 2}, - [3366] = {.lex_state = 26, .external_lex_state = 3}, - [3367] = {.lex_state = 26, .external_lex_state = 3}, - [3368] = {.lex_state = 26, .external_lex_state = 3}, + [3365] = {.lex_state = 26, .external_lex_state = 3}, + [3366] = {.lex_state = 36, .external_lex_state = 5}, + [3367] = {.lex_state = 36, .external_lex_state = 5}, + [3368] = {.lex_state = 35, .external_lex_state = 2}, [3369] = {.lex_state = 26, .external_lex_state = 3}, [3370] = {.lex_state = 26, .external_lex_state = 3}, - [3371] = {.lex_state = 26, .external_lex_state = 3}, - [3372] = {.lex_state = 26, .external_lex_state = 3}, - [3373] = {.lex_state = 26, .external_lex_state = 3}, - [3374] = {.lex_state = 26, .external_lex_state = 3}, - [3375] = {.lex_state = 26, .external_lex_state = 4}, - [3376] = {.lex_state = 26, .external_lex_state = 3}, - [3377] = {.lex_state = 26, .external_lex_state = 3}, - [3378] = {.lex_state = 26, .external_lex_state = 3}, - [3379] = {.lex_state = 36, .external_lex_state = 2}, - [3380] = {.lex_state = 26, .external_lex_state = 3}, - [3381] = {.lex_state = 26, .external_lex_state = 3}, + [3371] = {.lex_state = 26, .external_lex_state = 4}, + [3372] = {.lex_state = 35, .external_lex_state = 5}, + [3373] = {.lex_state = 36, .external_lex_state = 2}, + [3374] = {.lex_state = 36, .external_lex_state = 5}, + [3375] = {.lex_state = 26, .external_lex_state = 3}, + [3376] = {.lex_state = 36, .external_lex_state = 2}, + [3377] = {.lex_state = 36, .external_lex_state = 5}, + [3378] = {.lex_state = 36, .external_lex_state = 5}, + [3379] = {.lex_state = 35, .external_lex_state = 5}, + [3380] = {.lex_state = 36, .external_lex_state = 2}, + [3381] = {.lex_state = 36, .external_lex_state = 5}, [3382] = {.lex_state = 26, .external_lex_state = 3}, [3383] = {.lex_state = 26, .external_lex_state = 3}, [3384] = {.lex_state = 26, .external_lex_state = 3}, - [3385] = {.lex_state = 36, .external_lex_state = 5}, + [3385] = {.lex_state = 26, .external_lex_state = 3}, [3386] = {.lex_state = 26, .external_lex_state = 3}, [3387] = {.lex_state = 26, .external_lex_state = 3}, - [3388] = {.lex_state = 36, .external_lex_state = 5}, - [3389] = {.lex_state = 26, .external_lex_state = 3}, + [3388] = {.lex_state = 36, .external_lex_state = 2}, + [3389] = {.lex_state = 36, .external_lex_state = 2}, [3390] = {.lex_state = 26, .external_lex_state = 3}, - [3391] = {.lex_state = 26, .external_lex_state = 3}, + [3391] = {.lex_state = 36, .external_lex_state = 5}, [3392] = {.lex_state = 26, .external_lex_state = 3}, - [3393] = {.lex_state = 26, .external_lex_state = 3}, - [3394] = {.lex_state = 36, .external_lex_state = 5}, + [3393] = {.lex_state = 35, .external_lex_state = 5}, + [3394] = {.lex_state = 26, .external_lex_state = 3}, [3395] = {.lex_state = 26, .external_lex_state = 3}, - [3396] = {.lex_state = 26, .external_lex_state = 3}, - [3397] = {.lex_state = 36, .external_lex_state = 2}, - [3398] = {.lex_state = 26, .external_lex_state = 3}, + [3396] = {.lex_state = 26, .external_lex_state = 4}, + [3397] = {.lex_state = 26, .external_lex_state = 3}, + [3398] = {.lex_state = 35, .external_lex_state = 5}, [3399] = {.lex_state = 26, .external_lex_state = 3}, - [3400] = {.lex_state = 26, .external_lex_state = 3}, - [3401] = {.lex_state = 26, .external_lex_state = 3}, - [3402] = {.lex_state = 26, .external_lex_state = 4}, + [3400] = {.lex_state = 35, .external_lex_state = 5}, + [3401] = {.lex_state = 36, .external_lex_state = 5}, + [3402] = {.lex_state = 26, .external_lex_state = 3}, [3403] = {.lex_state = 26, .external_lex_state = 3}, - [3404] = {.lex_state = 26, .external_lex_state = 4}, - [3405] = {.lex_state = 26, .external_lex_state = 3}, - [3406] = {.lex_state = 26, .external_lex_state = 3}, - [3407] = {.lex_state = 26, .external_lex_state = 3}, - [3408] = {.lex_state = 26, .external_lex_state = 3}, - [3409] = {.lex_state = 26, .external_lex_state = 4}, - [3410] = {.lex_state = 26, .external_lex_state = 4}, - [3411] = {.lex_state = 26, .external_lex_state = 4}, - [3412] = {.lex_state = 26, .external_lex_state = 3}, + [3404] = {.lex_state = 26, .external_lex_state = 3}, + [3405] = {.lex_state = 35, .external_lex_state = 5}, + [3406] = {.lex_state = 36, .external_lex_state = 5}, + [3407] = {.lex_state = 36, .external_lex_state = 5}, + [3408] = {.lex_state = 36, .external_lex_state = 2}, + [3409] = {.lex_state = 36, .external_lex_state = 2}, + [3410] = {.lex_state = 36, .external_lex_state = 2}, + [3411] = {.lex_state = 36, .external_lex_state = 2}, + [3412] = {.lex_state = 36, .external_lex_state = 2}, [3413] = {.lex_state = 36, .external_lex_state = 2}, - [3414] = {.lex_state = 26, .external_lex_state = 3}, - [3415] = {.lex_state = 36, .external_lex_state = 2}, - [3416] = {.lex_state = 26, .external_lex_state = 3}, - [3417] = {.lex_state = 26, .external_lex_state = 3}, - [3418] = {.lex_state = 36, .external_lex_state = 5}, - [3419] = {.lex_state = 36, .external_lex_state = 5}, - [3420] = {.lex_state = 26, .external_lex_state = 3}, - [3421] = {.lex_state = 26, .external_lex_state = 3}, - [3422] = {.lex_state = 26, .external_lex_state = 3}, - [3423] = {.lex_state = 26, .external_lex_state = 3}, - [3424] = {.lex_state = 26, .external_lex_state = 3}, - [3425] = {.lex_state = 26, .external_lex_state = 4}, - [3426] = {.lex_state = 26, .external_lex_state = 3}, - [3427] = {.lex_state = 26, .external_lex_state = 3}, - [3428] = {.lex_state = 26, .external_lex_state = 3}, - [3429] = {.lex_state = 26, .external_lex_state = 3}, - [3430] = {.lex_state = 26, .external_lex_state = 3}, - [3431] = {.lex_state = 36, .external_lex_state = 5}, - [3432] = {.lex_state = 26, .external_lex_state = 3}, + [3414] = {.lex_state = 36, .external_lex_state = 5}, + [3415] = {.lex_state = 36, .external_lex_state = 5}, + [3416] = {.lex_state = 36, .external_lex_state = 2}, + [3417] = {.lex_state = 36, .external_lex_state = 2}, + [3418] = {.lex_state = 26, .external_lex_state = 3}, + [3419] = {.lex_state = 36, .external_lex_state = 2}, + [3420] = {.lex_state = 36, .external_lex_state = 2}, + [3421] = {.lex_state = 36, .external_lex_state = 2}, + [3422] = {.lex_state = 36, .external_lex_state = 5}, + [3423] = {.lex_state = 36, .external_lex_state = 5}, + [3424] = {.lex_state = 36, .external_lex_state = 2}, + [3425] = {.lex_state = 26, .external_lex_state = 3}, + [3426] = {.lex_state = 36, .external_lex_state = 5}, + [3427] = {.lex_state = 36, .external_lex_state = 5}, + [3428] = {.lex_state = 36, .external_lex_state = 2}, + [3429] = {.lex_state = 36, .external_lex_state = 5}, + [3430] = {.lex_state = 36, .external_lex_state = 5}, + [3431] = {.lex_state = 36, .external_lex_state = 2}, + [3432] = {.lex_state = 36, .external_lex_state = 5}, [3433] = {.lex_state = 26, .external_lex_state = 3}, [3434] = {.lex_state = 26, .external_lex_state = 3}, [3435] = {.lex_state = 36, .external_lex_state = 5}, - [3436] = {.lex_state = 26, .external_lex_state = 3}, - [3437] = {.lex_state = 26, .external_lex_state = 3}, - [3438] = {.lex_state = 26, .external_lex_state = 3}, - [3439] = {.lex_state = 36, .external_lex_state = 2}, + [3436] = {.lex_state = 36, .external_lex_state = 2}, + [3437] = {.lex_state = 36, .external_lex_state = 5}, + [3438] = {.lex_state = 36, .external_lex_state = 2}, + [3439] = {.lex_state = 36, .external_lex_state = 5}, [3440] = {.lex_state = 36, .external_lex_state = 5}, - [3441] = {.lex_state = 36, .external_lex_state = 5}, + [3441] = {.lex_state = 26, .external_lex_state = 3}, [3442] = {.lex_state = 26, .external_lex_state = 3}, - [3443] = {.lex_state = 26, .external_lex_state = 3}, - [3444] = {.lex_state = 36, .external_lex_state = 5}, + [3443] = {.lex_state = 36, .external_lex_state = 5}, + [3444] = {.lex_state = 27, .external_lex_state = 3}, [3445] = {.lex_state = 26, .external_lex_state = 3}, - [3446] = {.lex_state = 36, .external_lex_state = 5}, - [3447] = {.lex_state = 26, .external_lex_state = 3}, - [3448] = {.lex_state = 36, .external_lex_state = 5}, - [3449] = {.lex_state = 26, .external_lex_state = 3}, - [3450] = {.lex_state = 36, .external_lex_state = 2}, - [3451] = {.lex_state = 26, .external_lex_state = 3}, - [3452] = {.lex_state = 36, .external_lex_state = 2}, - [3453] = {.lex_state = 36, .external_lex_state = 5}, + [3446] = {.lex_state = 26, .external_lex_state = 3}, + [3447] = {.lex_state = 36, .external_lex_state = 5}, + [3448] = {.lex_state = 36, .external_lex_state = 2}, + [3449] = {.lex_state = 36, .external_lex_state = 2}, + [3450] = {.lex_state = 26, .external_lex_state = 3}, + [3451] = {.lex_state = 36, .external_lex_state = 2}, + [3452] = {.lex_state = 26, .external_lex_state = 3}, + [3453] = {.lex_state = 26, .external_lex_state = 3}, [3454] = {.lex_state = 26, .external_lex_state = 3}, [3455] = {.lex_state = 26, .external_lex_state = 3}, - [3456] = {.lex_state = 36, .external_lex_state = 5}, - [3457] = {.lex_state = 36, .external_lex_state = 5}, + [3456] = {.lex_state = 26, .external_lex_state = 3}, + [3457] = {.lex_state = 26, .external_lex_state = 3}, [3458] = {.lex_state = 26, .external_lex_state = 3}, [3459] = {.lex_state = 26, .external_lex_state = 3}, [3460] = {.lex_state = 26, .external_lex_state = 3}, - [3461] = {.lex_state = 26, .external_lex_state = 3}, - [3462] = {.lex_state = 36, .external_lex_state = 2}, - [3463] = {.lex_state = 26, .external_lex_state = 3}, - [3464] = {.lex_state = 26, .external_lex_state = 3}, - [3465] = {.lex_state = 26, .external_lex_state = 3}, - [3466] = {.lex_state = 26, .external_lex_state = 3}, - [3467] = {.lex_state = 26, .external_lex_state = 3}, - [3468] = {.lex_state = 36, .external_lex_state = 5}, - [3469] = {.lex_state = 26, .external_lex_state = 3}, - [3470] = {.lex_state = 36, .external_lex_state = 5}, - [3471] = {.lex_state = 36, .external_lex_state = 5}, - [3472] = {.lex_state = 36, .external_lex_state = 5}, - [3473] = {.lex_state = 26, .external_lex_state = 3}, - [3474] = {.lex_state = 26, .external_lex_state = 3}, - [3475] = {.lex_state = 26, .external_lex_state = 3}, - [3476] = {.lex_state = 26, .external_lex_state = 3}, - [3477] = {.lex_state = 26, .external_lex_state = 4}, - [3478] = {.lex_state = 26, .external_lex_state = 3}, - [3479] = {.lex_state = 36, .external_lex_state = 2}, - [3480] = {.lex_state = 26, .external_lex_state = 3}, - [3481] = {.lex_state = 26, .external_lex_state = 3}, - [3482] = {.lex_state = 26, .external_lex_state = 3}, - [3483] = {.lex_state = 26, .external_lex_state = 4}, - [3484] = {.lex_state = 36, .external_lex_state = 2}, - [3485] = {.lex_state = 26, .external_lex_state = 4}, - [3486] = {.lex_state = 36, .external_lex_state = 5}, - [3487] = {.lex_state = 36, .external_lex_state = 5}, - [3488] = {.lex_state = 26, .external_lex_state = 3}, - [3489] = {.lex_state = 26, .external_lex_state = 3}, - [3490] = {.lex_state = 36, .external_lex_state = 5}, - [3491] = {.lex_state = 29, .external_lex_state = 3}, - [3492] = {.lex_state = 26, .external_lex_state = 3}, - [3493] = {.lex_state = 26, .external_lex_state = 3}, - [3494] = {.lex_state = 36, .external_lex_state = 5}, - [3495] = {.lex_state = 36, .external_lex_state = 2}, - [3496] = {.lex_state = 26, .external_lex_state = 3}, - [3497] = {.lex_state = 26, .external_lex_state = 3}, - [3498] = {.lex_state = 26, .external_lex_state = 3}, - [3499] = {.lex_state = 36, .external_lex_state = 5}, - [3500] = {.lex_state = 36, .external_lex_state = 2}, - [3501] = {.lex_state = 36, .external_lex_state = 2}, - [3502] = {.lex_state = 26, .external_lex_state = 3}, - [3503] = {.lex_state = 36, .external_lex_state = 2}, - [3504] = {.lex_state = 26, .external_lex_state = 3}, - [3505] = {.lex_state = 36, .external_lex_state = 5}, - [3506] = {.lex_state = 26, .external_lex_state = 4}, - [3507] = {.lex_state = 36, .external_lex_state = 5}, - [3508] = {.lex_state = 26, .external_lex_state = 3}, - [3509] = {.lex_state = 36, .external_lex_state = 5}, - [3510] = {.lex_state = 36, .external_lex_state = 5}, - [3511] = {.lex_state = 26, .external_lex_state = 3}, - [3512] = {.lex_state = 36, .external_lex_state = 5}, - [3513] = {.lex_state = 26, .external_lex_state = 3}, - [3514] = {.lex_state = 26, .external_lex_state = 3}, - [3515] = {.lex_state = 26, .external_lex_state = 3}, + [3461] = {.lex_state = 35, .external_lex_state = 5}, + [3462] = {.lex_state = 35, .external_lex_state = 5}, + [3463] = {.lex_state = 35, .external_lex_state = 5}, + [3464] = {.lex_state = 35, .external_lex_state = 5}, + [3465] = {.lex_state = 35, .external_lex_state = 5}, + [3466] = {.lex_state = 35, .external_lex_state = 5}, + [3467] = {.lex_state = 35, .external_lex_state = 5}, + [3468] = {.lex_state = 36, .external_lex_state = 2}, + [3469] = {.lex_state = 36, .external_lex_state = 2}, + [3470] = {.lex_state = 35, .external_lex_state = 5}, + [3471] = {.lex_state = 35, .external_lex_state = 5}, + [3472] = {.lex_state = 35, .external_lex_state = 5}, + [3473] = {.lex_state = 35, .external_lex_state = 5}, + [3474] = {.lex_state = 35, .external_lex_state = 5}, + [3475] = {.lex_state = 35, .external_lex_state = 5}, + [3476] = {.lex_state = 35, .external_lex_state = 5}, + [3477] = {.lex_state = 35, .external_lex_state = 5}, + [3478] = {.lex_state = 35, .external_lex_state = 5}, + [3479] = {.lex_state = 35, .external_lex_state = 5}, + [3480] = {.lex_state = 35, .external_lex_state = 5}, + [3481] = {.lex_state = 35, .external_lex_state = 5}, + [3482] = {.lex_state = 35, .external_lex_state = 5}, + [3483] = {.lex_state = 35, .external_lex_state = 5}, + [3484] = {.lex_state = 35, .external_lex_state = 5}, + [3485] = {.lex_state = 35, .external_lex_state = 5}, + [3486] = {.lex_state = 36, .external_lex_state = 2}, + [3487] = {.lex_state = 35, .external_lex_state = 5}, + [3488] = {.lex_state = 36, .external_lex_state = 2}, + [3489] = {.lex_state = 35, .external_lex_state = 5}, + [3490] = {.lex_state = 35, .external_lex_state = 5}, + [3491] = {.lex_state = 35, .external_lex_state = 5}, + [3492] = {.lex_state = 35, .external_lex_state = 5}, + [3493] = {.lex_state = 35, .external_lex_state = 5}, + [3494] = {.lex_state = 35, .external_lex_state = 5}, + [3495] = {.lex_state = 35, .external_lex_state = 5}, + [3496] = {.lex_state = 35, .external_lex_state = 5}, + [3497] = {.lex_state = 35, .external_lex_state = 5}, + [3498] = {.lex_state = 35, .external_lex_state = 5}, + [3499] = {.lex_state = 35, .external_lex_state = 5}, + [3500] = {.lex_state = 35, .external_lex_state = 5}, + [3501] = {.lex_state = 35, .external_lex_state = 5}, + [3502] = {.lex_state = 35, .external_lex_state = 5}, + [3503] = {.lex_state = 35, .external_lex_state = 5}, + [3504] = {.lex_state = 35, .external_lex_state = 5}, + [3505] = {.lex_state = 35, .external_lex_state = 5}, + [3506] = {.lex_state = 35, .external_lex_state = 5}, + [3507] = {.lex_state = 35, .external_lex_state = 5}, + [3508] = {.lex_state = 36, .external_lex_state = 2}, + [3509] = {.lex_state = 35, .external_lex_state = 5}, + [3510] = {.lex_state = 35, .external_lex_state = 5}, + [3511] = {.lex_state = 35, .external_lex_state = 5}, + [3512] = {.lex_state = 35, .external_lex_state = 5}, + [3513] = {.lex_state = 35, .external_lex_state = 5}, + [3514] = {.lex_state = 35, .external_lex_state = 5}, + [3515] = {.lex_state = 35, .external_lex_state = 5}, [3516] = {.lex_state = 35, .external_lex_state = 5}, - [3517] = {.lex_state = 26, .external_lex_state = 3}, - [3518] = {.lex_state = 36, .external_lex_state = 5}, - [3519] = {.lex_state = 36, .external_lex_state = 5}, - [3520] = {.lex_state = 35, .external_lex_state = 5}, - [3521] = {.lex_state = 36, .external_lex_state = 2}, - [3522] = {.lex_state = 35, .external_lex_state = 5}, - [3523] = {.lex_state = 36, .external_lex_state = 2}, - [3524] = {.lex_state = 26, .external_lex_state = 3}, - [3525] = {.lex_state = 36, .external_lex_state = 5}, - [3526] = {.lex_state = 26, .external_lex_state = 3}, - [3527] = {.lex_state = 26, .external_lex_state = 3}, - [3528] = {.lex_state = 26, .external_lex_state = 3}, - [3529] = {.lex_state = 35, .external_lex_state = 5}, - [3530] = {.lex_state = 36, .external_lex_state = 5}, - [3531] = {.lex_state = 35, .external_lex_state = 5}, - [3532] = {.lex_state = 26, .external_lex_state = 3}, - [3533] = {.lex_state = 26, .external_lex_state = 3}, + [3517] = {.lex_state = 35, .external_lex_state = 5}, + [3518] = {.lex_state = 35, .external_lex_state = 2}, + [3519] = {.lex_state = 36, .external_lex_state = 2}, + [3520] = {.lex_state = 35, .external_lex_state = 2}, + [3521] = {.lex_state = 35, .external_lex_state = 2}, + [3522] = {.lex_state = 35, .external_lex_state = 2}, + [3523] = {.lex_state = 35, .external_lex_state = 2}, + [3524] = {.lex_state = 35, .external_lex_state = 2}, + [3525] = {.lex_state = 36, .external_lex_state = 2}, + [3526] = {.lex_state = 35, .external_lex_state = 2}, + [3527] = {.lex_state = 36, .external_lex_state = 2}, + [3528] = {.lex_state = 36, .external_lex_state = 2}, + [3529] = {.lex_state = 36, .external_lex_state = 2}, + [3530] = {.lex_state = 36, .external_lex_state = 2}, + [3531] = {.lex_state = 36, .external_lex_state = 2}, + [3532] = {.lex_state = 36, .external_lex_state = 2}, + [3533] = {.lex_state = 35, .external_lex_state = 2}, [3534] = {.lex_state = 36, .external_lex_state = 2}, - [3535] = {.lex_state = 35, .external_lex_state = 2}, + [3535] = {.lex_state = 36, .external_lex_state = 2}, [3536] = {.lex_state = 36, .external_lex_state = 2}, - [3537] = {.lex_state = 35, .external_lex_state = 5}, - [3538] = {.lex_state = 36, .external_lex_state = 5}, - [3539] = {.lex_state = 26, .external_lex_state = 3}, - [3540] = {.lex_state = 26, .external_lex_state = 3}, - [3541] = {.lex_state = 36, .external_lex_state = 5}, - [3542] = {.lex_state = 26, .external_lex_state = 4}, - [3543] = {.lex_state = 26, .external_lex_state = 3}, - [3544] = {.lex_state = 26, .external_lex_state = 4}, - [3545] = {.lex_state = 26, .external_lex_state = 3}, - [3546] = {.lex_state = 26, .external_lex_state = 3}, + [3537] = {.lex_state = 36, .external_lex_state = 2}, + [3538] = {.lex_state = 36, .external_lex_state = 2}, + [3539] = {.lex_state = 36, .external_lex_state = 2}, + [3540] = {.lex_state = 36, .external_lex_state = 2}, + [3541] = {.lex_state = 36, .external_lex_state = 2}, + [3542] = {.lex_state = 35, .external_lex_state = 2}, + [3543] = {.lex_state = 36, .external_lex_state = 2}, + [3544] = {.lex_state = 35, .external_lex_state = 2}, + [3545] = {.lex_state = 36, .external_lex_state = 2}, + [3546] = {.lex_state = 36, .external_lex_state = 2}, [3547] = {.lex_state = 36, .external_lex_state = 2}, - [3548] = {.lex_state = 36, .external_lex_state = 5}, - [3549] = {.lex_state = 26, .external_lex_state = 3}, - [3550] = {.lex_state = 26, .external_lex_state = 3}, - [3551] = {.lex_state = 26, .external_lex_state = 3}, - [3552] = {.lex_state = 26, .external_lex_state = 3}, - [3553] = {.lex_state = 26, .external_lex_state = 3}, - [3554] = {.lex_state = 36, .external_lex_state = 5}, + [3548] = {.lex_state = 36, .external_lex_state = 2}, + [3549] = {.lex_state = 35, .external_lex_state = 2}, + [3550] = {.lex_state = 36, .external_lex_state = 2}, + [3551] = {.lex_state = 36, .external_lex_state = 2}, + [3552] = {.lex_state = 36, .external_lex_state = 2}, + [3553] = {.lex_state = 36, .external_lex_state = 2}, + [3554] = {.lex_state = 36, .external_lex_state = 2}, [3555] = {.lex_state = 36, .external_lex_state = 2}, - [3556] = {.lex_state = 36, .external_lex_state = 5}, - [3557] = {.lex_state = 36, .external_lex_state = 5}, - [3558] = {.lex_state = 36, .external_lex_state = 5}, - [3559] = {.lex_state = 36, .external_lex_state = 5}, + [3556] = {.lex_state = 36, .external_lex_state = 2}, + [3557] = {.lex_state = 36, .external_lex_state = 2}, + [3558] = {.lex_state = 36, .external_lex_state = 2}, + [3559] = {.lex_state = 36, .external_lex_state = 2}, [3560] = {.lex_state = 36, .external_lex_state = 2}, - [3561] = {.lex_state = 36, .external_lex_state = 5}, + [3561] = {.lex_state = 36, .external_lex_state = 2}, [3562] = {.lex_state = 36, .external_lex_state = 2}, [3563] = {.lex_state = 36, .external_lex_state = 2}, - [3564] = {.lex_state = 26, .external_lex_state = 3}, - [3565] = {.lex_state = 36, .external_lex_state = 5}, - [3566] = {.lex_state = 36, .external_lex_state = 5}, + [3564] = {.lex_state = 36, .external_lex_state = 2}, + [3565] = {.lex_state = 36, .external_lex_state = 2}, + [3566] = {.lex_state = 36, .external_lex_state = 2}, [3567] = {.lex_state = 36, .external_lex_state = 2}, - [3568] = {.lex_state = 26, .external_lex_state = 3}, - [3569] = {.lex_state = 36, .external_lex_state = 5}, - [3570] = {.lex_state = 26, .external_lex_state = 3}, - [3571] = {.lex_state = 26, .external_lex_state = 3}, - [3572] = {.lex_state = 36, .external_lex_state = 5}, - [3573] = {.lex_state = 36, .external_lex_state = 2}, - [3574] = {.lex_state = 36, .external_lex_state = 2}, + [3568] = {.lex_state = 35, .external_lex_state = 2}, + [3569] = {.lex_state = 36, .external_lex_state = 2}, + [3570] = {.lex_state = 349, .external_lex_state = 2}, + [3571] = {.lex_state = 35, .external_lex_state = 2}, + [3572] = {.lex_state = 349, .external_lex_state = 2}, + [3573] = {.lex_state = 349, .external_lex_state = 2}, + [3574] = {.lex_state = 35, .external_lex_state = 2}, [3575] = {.lex_state = 36, .external_lex_state = 2}, [3576] = {.lex_state = 36, .external_lex_state = 2}, [3577] = {.lex_state = 36, .external_lex_state = 2}, - [3578] = {.lex_state = 36, .external_lex_state = 2}, - [3579] = {.lex_state = 36, .external_lex_state = 5}, - [3580] = {.lex_state = 36, .external_lex_state = 2}, - [3581] = {.lex_state = 36, .external_lex_state = 5}, - [3582] = {.lex_state = 26, .external_lex_state = 3}, - [3583] = {.lex_state = 26, .external_lex_state = 3}, - [3584] = {.lex_state = 26, .external_lex_state = 3}, - [3585] = {.lex_state = 36, .external_lex_state = 5}, + [3578] = {.lex_state = 349, .external_lex_state = 2}, + [3579] = {.lex_state = 36, .external_lex_state = 2}, + [3580] = {.lex_state = 35, .external_lex_state = 2}, + [3581] = {.lex_state = 349, .external_lex_state = 2}, + [3582] = {.lex_state = 36, .external_lex_state = 2}, + [3583] = {.lex_state = 36, .external_lex_state = 2}, + [3584] = {.lex_state = 36, .external_lex_state = 2}, + [3585] = {.lex_state = 36, .external_lex_state = 2}, [3586] = {.lex_state = 36, .external_lex_state = 2}, [3587] = {.lex_state = 36, .external_lex_state = 2}, [3588] = {.lex_state = 36, .external_lex_state = 2}, - [3589] = {.lex_state = 36, .external_lex_state = 5}, + [3589] = {.lex_state = 36, .external_lex_state = 2}, [3590] = {.lex_state = 36, .external_lex_state = 2}, - [3591] = {.lex_state = 36, .external_lex_state = 5}, - [3592] = {.lex_state = 26, .external_lex_state = 3}, - [3593] = {.lex_state = 36, .external_lex_state = 5}, - [3594] = {.lex_state = 27, .external_lex_state = 3}, - [3595] = {.lex_state = 36, .external_lex_state = 5}, + [3591] = {.lex_state = 36, .external_lex_state = 2}, + [3592] = {.lex_state = 349, .external_lex_state = 2}, + [3593] = {.lex_state = 36, .external_lex_state = 2}, + [3594] = {.lex_state = 36, .external_lex_state = 2}, + [3595] = {.lex_state = 349, .external_lex_state = 2}, [3596] = {.lex_state = 36, .external_lex_state = 2}, - [3597] = {.lex_state = 36, .external_lex_state = 2}, - [3598] = {.lex_state = 36, .external_lex_state = 2}, - [3599] = {.lex_state = 26, .external_lex_state = 3}, - [3600] = {.lex_state = 26, .external_lex_state = 3}, - [3601] = {.lex_state = 26, .external_lex_state = 3}, - [3602] = {.lex_state = 26, .external_lex_state = 3}, - [3603] = {.lex_state = 26, .external_lex_state = 3}, - [3604] = {.lex_state = 26, .external_lex_state = 3}, - [3605] = {.lex_state = 26, .external_lex_state = 3}, - [3606] = {.lex_state = 26, .external_lex_state = 3}, - [3607] = {.lex_state = 26, .external_lex_state = 3}, - [3608] = {.lex_state = 26, .external_lex_state = 3}, + [3597] = {.lex_state = 349, .external_lex_state = 2}, + [3598] = {.lex_state = 349, .external_lex_state = 2}, + [3599] = {.lex_state = 36, .external_lex_state = 2}, + [3600] = {.lex_state = 349, .external_lex_state = 2}, + [3601] = {.lex_state = 36, .external_lex_state = 2}, + [3602] = {.lex_state = 36, .external_lex_state = 2}, + [3603] = {.lex_state = 36, .external_lex_state = 2}, + [3604] = {.lex_state = 349, .external_lex_state = 2}, + [3605] = {.lex_state = 36, .external_lex_state = 2}, + [3606] = {.lex_state = 36, .external_lex_state = 2}, + [3607] = {.lex_state = 36, .external_lex_state = 2}, + [3608] = {.lex_state = 36, .external_lex_state = 2}, [3609] = {.lex_state = 36, .external_lex_state = 2}, - [3610] = {.lex_state = 35, .external_lex_state = 5}, - [3611] = {.lex_state = 35, .external_lex_state = 5}, - [3612] = {.lex_state = 35, .external_lex_state = 5}, - [3613] = {.lex_state = 35, .external_lex_state = 5}, - [3614] = {.lex_state = 35, .external_lex_state = 5}, - [3615] = {.lex_state = 35, .external_lex_state = 5}, - [3616] = {.lex_state = 35, .external_lex_state = 5}, - [3617] = {.lex_state = 35, .external_lex_state = 5}, - [3618] = {.lex_state = 35, .external_lex_state = 5}, + [3610] = {.lex_state = 349, .external_lex_state = 2}, + [3611] = {.lex_state = 36, .external_lex_state = 2}, + [3612] = {.lex_state = 36, .external_lex_state = 2}, + [3613] = {.lex_state = 36, .external_lex_state = 2}, + [3614] = {.lex_state = 36, .external_lex_state = 2}, + [3615] = {.lex_state = 36, .external_lex_state = 2}, + [3616] = {.lex_state = 36, .external_lex_state = 2}, + [3617] = {.lex_state = 36, .external_lex_state = 2}, + [3618] = {.lex_state = 36, .external_lex_state = 2}, [3619] = {.lex_state = 36, .external_lex_state = 2}, - [3620] = {.lex_state = 35, .external_lex_state = 5}, - [3621] = {.lex_state = 35, .external_lex_state = 5}, + [3620] = {.lex_state = 36, .external_lex_state = 2}, + [3621] = {.lex_state = 36, .external_lex_state = 2}, [3622] = {.lex_state = 36, .external_lex_state = 2}, - [3623] = {.lex_state = 35, .external_lex_state = 5}, - [3624] = {.lex_state = 35, .external_lex_state = 5}, - [3625] = {.lex_state = 35, .external_lex_state = 5}, - [3626] = {.lex_state = 35, .external_lex_state = 5}, - [3627] = {.lex_state = 35, .external_lex_state = 5}, - [3628] = {.lex_state = 35, .external_lex_state = 5}, - [3629] = {.lex_state = 35, .external_lex_state = 5}, - [3630] = {.lex_state = 35, .external_lex_state = 5}, - [3631] = {.lex_state = 35, .external_lex_state = 5}, - [3632] = {.lex_state = 35, .external_lex_state = 5}, - [3633] = {.lex_state = 35, .external_lex_state = 5}, - [3634] = {.lex_state = 35, .external_lex_state = 5}, - [3635] = {.lex_state = 35, .external_lex_state = 5}, - [3636] = {.lex_state = 35, .external_lex_state = 5}, - [3637] = {.lex_state = 35, .external_lex_state = 5}, - [3638] = {.lex_state = 35, .external_lex_state = 5}, - [3639] = {.lex_state = 35, .external_lex_state = 5}, - [3640] = {.lex_state = 35, .external_lex_state = 5}, - [3641] = {.lex_state = 35, .external_lex_state = 5}, - [3642] = {.lex_state = 35, .external_lex_state = 5}, - [3643] = {.lex_state = 35, .external_lex_state = 5}, - [3644] = {.lex_state = 35, .external_lex_state = 5}, - [3645] = {.lex_state = 35, .external_lex_state = 5}, - [3646] = {.lex_state = 35, .external_lex_state = 5}, - [3647] = {.lex_state = 35, .external_lex_state = 5}, - [3648] = {.lex_state = 35, .external_lex_state = 5}, - [3649] = {.lex_state = 35, .external_lex_state = 5}, - [3650] = {.lex_state = 35, .external_lex_state = 5}, - [3651] = {.lex_state = 35, .external_lex_state = 5}, - [3652] = {.lex_state = 35, .external_lex_state = 5}, - [3653] = {.lex_state = 35, .external_lex_state = 5}, - [3654] = {.lex_state = 35, .external_lex_state = 5}, - [3655] = {.lex_state = 35, .external_lex_state = 5}, - [3656] = {.lex_state = 35, .external_lex_state = 5}, - [3657] = {.lex_state = 35, .external_lex_state = 5}, - [3658] = {.lex_state = 35, .external_lex_state = 5}, + [3623] = {.lex_state = 36, .external_lex_state = 2}, + [3624] = {.lex_state = 36, .external_lex_state = 2}, + [3625] = {.lex_state = 36, .external_lex_state = 2}, + [3626] = {.lex_state = 36, .external_lex_state = 2}, + [3627] = {.lex_state = 36, .external_lex_state = 2}, + [3628] = {.lex_state = 36, .external_lex_state = 2}, + [3629] = {.lex_state = 36, .external_lex_state = 2}, + [3630] = {.lex_state = 36, .external_lex_state = 2}, + [3631] = {.lex_state = 36, .external_lex_state = 2}, + [3632] = {.lex_state = 36, .external_lex_state = 2}, + [3633] = {.lex_state = 36, .external_lex_state = 2}, + [3634] = {.lex_state = 36, .external_lex_state = 2}, + [3635] = {.lex_state = 36, .external_lex_state = 2}, + [3636] = {.lex_state = 36, .external_lex_state = 2}, + [3637] = {.lex_state = 36, .external_lex_state = 2}, + [3638] = {.lex_state = 36, .external_lex_state = 2}, + [3639] = {.lex_state = 36, .external_lex_state = 2}, + [3640] = {.lex_state = 36, .external_lex_state = 2}, + [3641] = {.lex_state = 36, .external_lex_state = 2}, + [3642] = {.lex_state = 36, .external_lex_state = 2}, + [3643] = {.lex_state = 36, .external_lex_state = 2}, + [3644] = {.lex_state = 36, .external_lex_state = 2}, + [3645] = {.lex_state = 36, .external_lex_state = 2}, + [3646] = {.lex_state = 36, .external_lex_state = 2}, + [3647] = {.lex_state = 36, .external_lex_state = 2}, + [3648] = {.lex_state = 36, .external_lex_state = 2}, + [3649] = {.lex_state = 36, .external_lex_state = 2}, + [3650] = {.lex_state = 36, .external_lex_state = 2}, + [3651] = {.lex_state = 36, .external_lex_state = 2}, + [3652] = {.lex_state = 35, .external_lex_state = 2}, + [3653] = {.lex_state = 35, .external_lex_state = 2}, + [3654] = {.lex_state = 36, .external_lex_state = 2}, + [3655] = {.lex_state = 36, .external_lex_state = 2}, + [3656] = {.lex_state = 36, .external_lex_state = 2}, + [3657] = {.lex_state = 36, .external_lex_state = 2}, + [3658] = {.lex_state = 36, .external_lex_state = 2}, [3659] = {.lex_state = 36, .external_lex_state = 2}, - [3660] = {.lex_state = 35, .external_lex_state = 5}, - [3661] = {.lex_state = 35, .external_lex_state = 5}, - [3662] = {.lex_state = 35, .external_lex_state = 5}, - [3663] = {.lex_state = 35, .external_lex_state = 5}, + [3660] = {.lex_state = 36, .external_lex_state = 2}, + [3661] = {.lex_state = 36, .external_lex_state = 2}, + [3662] = {.lex_state = 35, .external_lex_state = 2}, + [3663] = {.lex_state = 35, .external_lex_state = 2}, [3664] = {.lex_state = 36, .external_lex_state = 2}, - [3665] = {.lex_state = 35, .external_lex_state = 5}, + [3665] = {.lex_state = 36, .external_lex_state = 2}, [3666] = {.lex_state = 36, .external_lex_state = 2}, [3667] = {.lex_state = 36, .external_lex_state = 2}, - [3668] = {.lex_state = 36, .external_lex_state = 2}, + [3668] = {.lex_state = 35, .external_lex_state = 2}, [3669] = {.lex_state = 36, .external_lex_state = 2}, - [3670] = {.lex_state = 35, .external_lex_state = 2}, - [3671] = {.lex_state = 35, .external_lex_state = 2}, + [3670] = {.lex_state = 36, .external_lex_state = 2}, + [3671] = {.lex_state = 36, .external_lex_state = 2}, [3672] = {.lex_state = 36, .external_lex_state = 2}, - [3673] = {.lex_state = 35, .external_lex_state = 2}, + [3673] = {.lex_state = 36, .external_lex_state = 2}, [3674] = {.lex_state = 36, .external_lex_state = 2}, [3675] = {.lex_state = 36, .external_lex_state = 2}, [3676] = {.lex_state = 36, .external_lex_state = 2}, - [3677] = {.lex_state = 35, .external_lex_state = 2}, + [3677] = {.lex_state = 36, .external_lex_state = 2}, [3678] = {.lex_state = 36, .external_lex_state = 2}, - [3679] = {.lex_state = 35, .external_lex_state = 2}, - [3680] = {.lex_state = 35, .external_lex_state = 2}, - [3681] = {.lex_state = 36, .external_lex_state = 2}, - [3682] = {.lex_state = 35, .external_lex_state = 2}, + [3679] = {.lex_state = 36, .external_lex_state = 2}, + [3680] = {.lex_state = 36, .external_lex_state = 2}, + [3681] = {.lex_state = 35, .external_lex_state = 2}, + [3682] = {.lex_state = 36, .external_lex_state = 2}, [3683] = {.lex_state = 36, .external_lex_state = 2}, [3684] = {.lex_state = 36, .external_lex_state = 2}, [3685] = {.lex_state = 36, .external_lex_state = 2}, - [3686] = {.lex_state = 35, .external_lex_state = 2}, + [3686] = {.lex_state = 36, .external_lex_state = 2}, [3687] = {.lex_state = 36, .external_lex_state = 2}, [3688] = {.lex_state = 36, .external_lex_state = 2}, [3689] = {.lex_state = 36, .external_lex_state = 2}, @@ -24177,363 +23958,363 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3695] = {.lex_state = 36, .external_lex_state = 2}, [3696] = {.lex_state = 36, .external_lex_state = 2}, [3697] = {.lex_state = 36, .external_lex_state = 2}, - [3698] = {.lex_state = 35, .external_lex_state = 2}, - [3699] = {.lex_state = 35, .external_lex_state = 2}, - [3700] = {.lex_state = 36, .external_lex_state = 2}, - [3701] = {.lex_state = 36, .external_lex_state = 2}, - [3702] = {.lex_state = 36, .external_lex_state = 2}, - [3703] = {.lex_state = 36, .external_lex_state = 2}, - [3704] = {.lex_state = 36, .external_lex_state = 2}, - [3705] = {.lex_state = 36, .external_lex_state = 2}, - [3706] = {.lex_state = 36, .external_lex_state = 2}, - [3707] = {.lex_state = 36, .external_lex_state = 2}, - [3708] = {.lex_state = 36, .external_lex_state = 2}, - [3709] = {.lex_state = 36, .external_lex_state = 2}, - [3710] = {.lex_state = 36, .external_lex_state = 2}, - [3711] = {.lex_state = 36, .external_lex_state = 2}, - [3712] = {.lex_state = 36, .external_lex_state = 2}, - [3713] = {.lex_state = 349, .external_lex_state = 2}, - [3714] = {.lex_state = 36, .external_lex_state = 2}, - [3715] = {.lex_state = 349, .external_lex_state = 2}, - [3716] = {.lex_state = 349, .external_lex_state = 2}, - [3717] = {.lex_state = 36, .external_lex_state = 2}, - [3718] = {.lex_state = 36, .external_lex_state = 2}, - [3719] = {.lex_state = 36, .external_lex_state = 2}, - [3720] = {.lex_state = 36, .external_lex_state = 2}, - [3721] = {.lex_state = 36, .external_lex_state = 2}, - [3722] = {.lex_state = 349, .external_lex_state = 2}, - [3723] = {.lex_state = 36, .external_lex_state = 2}, - [3724] = {.lex_state = 36, .external_lex_state = 2}, - [3725] = {.lex_state = 349, .external_lex_state = 2}, - [3726] = {.lex_state = 36, .external_lex_state = 2}, - [3727] = {.lex_state = 36, .external_lex_state = 2}, - [3728] = {.lex_state = 36, .external_lex_state = 2}, - [3729] = {.lex_state = 36, .external_lex_state = 2}, - [3730] = {.lex_state = 349, .external_lex_state = 2}, - [3731] = {.lex_state = 36, .external_lex_state = 2}, - [3732] = {.lex_state = 349, .external_lex_state = 2}, - [3733] = {.lex_state = 35, .external_lex_state = 2}, - [3734] = {.lex_state = 36, .external_lex_state = 2}, - [3735] = {.lex_state = 349, .external_lex_state = 2}, - [3736] = {.lex_state = 36, .external_lex_state = 2}, - [3737] = {.lex_state = 36, .external_lex_state = 2}, - [3738] = {.lex_state = 349, .external_lex_state = 2}, - [3739] = {.lex_state = 36, .external_lex_state = 2}, - [3740] = {.lex_state = 35, .external_lex_state = 2}, - [3741] = {.lex_state = 36, .external_lex_state = 2}, - [3742] = {.lex_state = 35, .external_lex_state = 2}, - [3743] = {.lex_state = 36, .external_lex_state = 2}, - [3744] = {.lex_state = 36, .external_lex_state = 2}, - [3745] = {.lex_state = 36, .external_lex_state = 2}, - [3746] = {.lex_state = 349, .external_lex_state = 2}, - [3747] = {.lex_state = 349, .external_lex_state = 2}, - [3748] = {.lex_state = 36, .external_lex_state = 2}, - [3749] = {.lex_state = 36, .external_lex_state = 2}, - [3750] = {.lex_state = 36, .external_lex_state = 2}, - [3751] = {.lex_state = 36, .external_lex_state = 2}, - [3752] = {.lex_state = 35, .external_lex_state = 2}, - [3753] = {.lex_state = 36, .external_lex_state = 2}, - [3754] = {.lex_state = 36, .external_lex_state = 2}, - [3755] = {.lex_state = 36, .external_lex_state = 2}, - [3756] = {.lex_state = 36, .external_lex_state = 2}, - [3757] = {.lex_state = 349, .external_lex_state = 2}, - [3758] = {.lex_state = 36, .external_lex_state = 2}, - [3759] = {.lex_state = 36, .external_lex_state = 2}, - [3760] = {.lex_state = 36, .external_lex_state = 2}, - [3761] = {.lex_state = 36, .external_lex_state = 2}, - [3762] = {.lex_state = 36, .external_lex_state = 2}, - [3763] = {.lex_state = 36, .external_lex_state = 2}, - [3764] = {.lex_state = 36, .external_lex_state = 2}, - [3765] = {.lex_state = 36, .external_lex_state = 2}, - [3766] = {.lex_state = 36, .external_lex_state = 2}, - [3767] = {.lex_state = 36, .external_lex_state = 2}, - [3768] = {.lex_state = 36, .external_lex_state = 2}, - [3769] = {.lex_state = 36, .external_lex_state = 2}, - [3770] = {.lex_state = 36, .external_lex_state = 2}, - [3771] = {.lex_state = 36, .external_lex_state = 2}, - [3772] = {.lex_state = 36, .external_lex_state = 2}, - [3773] = {.lex_state = 36, .external_lex_state = 2}, - [3774] = {.lex_state = 36, .external_lex_state = 2}, - [3775] = {.lex_state = 36, .external_lex_state = 2}, - [3776] = {.lex_state = 36, .external_lex_state = 2}, - [3777] = {.lex_state = 36, .external_lex_state = 2}, - [3778] = {.lex_state = 36, .external_lex_state = 2}, - [3779] = {.lex_state = 36, .external_lex_state = 2}, - [3780] = {.lex_state = 36, .external_lex_state = 2}, - [3781] = {.lex_state = 36, .external_lex_state = 2}, - [3782] = {.lex_state = 36, .external_lex_state = 2}, - [3783] = {.lex_state = 36, .external_lex_state = 2}, - [3784] = {.lex_state = 35, .external_lex_state = 2}, - [3785] = {.lex_state = 36, .external_lex_state = 2}, - [3786] = {.lex_state = 36, .external_lex_state = 2}, - [3787] = {.lex_state = 36, .external_lex_state = 2}, - [3788] = {.lex_state = 36, .external_lex_state = 2}, - [3789] = {.lex_state = 36, .external_lex_state = 2}, - [3790] = {.lex_state = 36, .external_lex_state = 2}, - [3791] = {.lex_state = 35, .external_lex_state = 2}, - [3792] = {.lex_state = 36, .external_lex_state = 2}, - [3793] = {.lex_state = 36, .external_lex_state = 2}, - [3794] = {.lex_state = 36, .external_lex_state = 2}, - [3795] = {.lex_state = 36, .external_lex_state = 2}, - [3796] = {.lex_state = 36, .external_lex_state = 2}, - [3797] = {.lex_state = 36, .external_lex_state = 2}, - [3798] = {.lex_state = 36, .external_lex_state = 2}, - [3799] = {.lex_state = 36, .external_lex_state = 2}, - [3800] = {.lex_state = 36, .external_lex_state = 2}, - [3801] = {.lex_state = 36, .external_lex_state = 2}, - [3802] = {.lex_state = 36, .external_lex_state = 2}, - [3803] = {.lex_state = 35, .external_lex_state = 2}, - [3804] = {.lex_state = 35, .external_lex_state = 2}, - [3805] = {.lex_state = 36, .external_lex_state = 2}, - [3806] = {.lex_state = 36, .external_lex_state = 2}, - [3807] = {.lex_state = 36, .external_lex_state = 2}, - [3808] = {.lex_state = 36, .external_lex_state = 2}, - [3809] = {.lex_state = 36, .external_lex_state = 2}, - [3810] = {.lex_state = 36, .external_lex_state = 2}, - [3811] = {.lex_state = 36, .external_lex_state = 2}, - [3812] = {.lex_state = 35, .external_lex_state = 2}, - [3813] = {.lex_state = 36, .external_lex_state = 2}, - [3814] = {.lex_state = 36, .external_lex_state = 2}, - [3815] = {.lex_state = 36, .external_lex_state = 2}, - [3816] = {.lex_state = 36, .external_lex_state = 2}, - [3817] = {.lex_state = 36, .external_lex_state = 2}, - [3818] = {.lex_state = 36, .external_lex_state = 2}, - [3819] = {.lex_state = 36, .external_lex_state = 2}, - [3820] = {.lex_state = 36, .external_lex_state = 2}, - [3821] = {.lex_state = 36, .external_lex_state = 2}, - [3822] = {.lex_state = 36, .external_lex_state = 2}, - [3823] = {.lex_state = 36, .external_lex_state = 2}, - [3824] = {.lex_state = 36, .external_lex_state = 2}, - [3825] = {.lex_state = 36, .external_lex_state = 2}, - [3826] = {.lex_state = 36, .external_lex_state = 2}, - [3827] = {.lex_state = 36, .external_lex_state = 2}, - [3828] = {.lex_state = 36, .external_lex_state = 2}, - [3829] = {.lex_state = 36, .external_lex_state = 2}, - [3830] = {.lex_state = 36, .external_lex_state = 2}, - [3831] = {.lex_state = 36, .external_lex_state = 2}, - [3832] = {.lex_state = 36, .external_lex_state = 2}, - [3833] = {.lex_state = 36, .external_lex_state = 2}, - [3834] = {.lex_state = 36, .external_lex_state = 2}, - [3835] = {.lex_state = 36, .external_lex_state = 2}, - [3836] = {.lex_state = 36, .external_lex_state = 2}, - [3837] = {.lex_state = 36, .external_lex_state = 2}, - [3838] = {.lex_state = 36, .external_lex_state = 2}, - [3839] = {.lex_state = 36, .external_lex_state = 2}, - [3840] = {.lex_state = 36, .external_lex_state = 2}, - [3841] = {.lex_state = 36, .external_lex_state = 2}, - [3842] = {.lex_state = 35, .external_lex_state = 2}, - [3843] = {.lex_state = 36, .external_lex_state = 2}, - [3844] = {.lex_state = 36, .external_lex_state = 2}, - [3845] = {.lex_state = 72, .external_lex_state = 2}, - [3846] = {.lex_state = 46, .external_lex_state = 2}, - [3847] = {.lex_state = 46, .external_lex_state = 2}, - [3848] = {.lex_state = 46, .external_lex_state = 2}, - [3849] = {.lex_state = 46, .external_lex_state = 2}, - [3850] = {.lex_state = 46, .external_lex_state = 2}, - [3851] = {.lex_state = 46, .external_lex_state = 2}, - [3852] = {.lex_state = 55, .external_lex_state = 2}, + [3698] = {.lex_state = 72, .external_lex_state = 2}, + [3699] = {.lex_state = 46, .external_lex_state = 2}, + [3700] = {.lex_state = 46, .external_lex_state = 2}, + [3701] = {.lex_state = 46, .external_lex_state = 2}, + [3702] = {.lex_state = 46, .external_lex_state = 2}, + [3703] = {.lex_state = 46, .external_lex_state = 2}, + [3704] = {.lex_state = 46, .external_lex_state = 2}, + [3705] = {.lex_state = 55, .external_lex_state = 2}, + [3706] = {.lex_state = 55, .external_lex_state = 2}, + [3707] = {.lex_state = 46, .external_lex_state = 2}, + [3708] = {.lex_state = 46, .external_lex_state = 2}, + [3709] = {.lex_state = 46, .external_lex_state = 2}, + [3710] = {.lex_state = 46, .external_lex_state = 2}, + [3711] = {.lex_state = 46, .external_lex_state = 2}, + [3712] = {.lex_state = 46, .external_lex_state = 2}, + [3713] = {.lex_state = 46, .external_lex_state = 2}, + [3714] = {.lex_state = 46, .external_lex_state = 2}, + [3715] = {.lex_state = 46, .external_lex_state = 2}, + [3716] = {.lex_state = 46, .external_lex_state = 2}, + [3717] = {.lex_state = 46, .external_lex_state = 2}, + [3718] = {.lex_state = 46, .external_lex_state = 2}, + [3719] = {.lex_state = 46, .external_lex_state = 2}, + [3720] = {.lex_state = 46, .external_lex_state = 2}, + [3721] = {.lex_state = 46, .external_lex_state = 2}, + [3722] = {.lex_state = 46, .external_lex_state = 2}, + [3723] = {.lex_state = 46, .external_lex_state = 2}, + [3724] = {.lex_state = 46, .external_lex_state = 2}, + [3725] = {.lex_state = 46, .external_lex_state = 2}, + [3726] = {.lex_state = 46, .external_lex_state = 2}, + [3727] = {.lex_state = 46, .external_lex_state = 2}, + [3728] = {.lex_state = 46, .external_lex_state = 2}, + [3729] = {.lex_state = 46, .external_lex_state = 2}, + [3730] = {.lex_state = 46, .external_lex_state = 2}, + [3731] = {.lex_state = 46, .external_lex_state = 2}, + [3732] = {.lex_state = 46, .external_lex_state = 2}, + [3733] = {.lex_state = 46, .external_lex_state = 2}, + [3734] = {.lex_state = 46, .external_lex_state = 2}, + [3735] = {.lex_state = 46, .external_lex_state = 2}, + [3736] = {.lex_state = 46, .external_lex_state = 2}, + [3737] = {.lex_state = 46, .external_lex_state = 2}, + [3738] = {.lex_state = 46, .external_lex_state = 2}, + [3739] = {.lex_state = 55, .external_lex_state = 2}, + [3740] = {.lex_state = 46, .external_lex_state = 2}, + [3741] = {.lex_state = 46, .external_lex_state = 2}, + [3742] = {.lex_state = 50, .external_lex_state = 2}, + [3743] = {.lex_state = 55, .external_lex_state = 2}, + [3744] = {.lex_state = 50, .external_lex_state = 2}, + [3745] = {.lex_state = 50, .external_lex_state = 2}, + [3746] = {.lex_state = 50, .external_lex_state = 2}, + [3747] = {.lex_state = 50, .external_lex_state = 2}, + [3748] = {.lex_state = 55, .external_lex_state = 2}, + [3749] = {.lex_state = 55, .external_lex_state = 2}, + [3750] = {.lex_state = 46, .external_lex_state = 2}, + [3751] = {.lex_state = 46, .external_lex_state = 2}, + [3752] = {.lex_state = 55, .external_lex_state = 2}, + [3753] = {.lex_state = 46, .external_lex_state = 2}, + [3754] = {.lex_state = 55, .external_lex_state = 2}, + [3755] = {.lex_state = 55, .external_lex_state = 2}, + [3756] = {.lex_state = 55, .external_lex_state = 2}, + [3757] = {.lex_state = 55, .external_lex_state = 2}, + [3758] = {.lex_state = 55, .external_lex_state = 2}, + [3759] = {.lex_state = 55, .external_lex_state = 2}, + [3760] = {.lex_state = 55, .external_lex_state = 2}, + [3761] = {.lex_state = 46, .external_lex_state = 2}, + [3762] = {.lex_state = 55, .external_lex_state = 2}, + [3763] = {.lex_state = 45, .external_lex_state = 5}, + [3764] = {.lex_state = 55, .external_lex_state = 2}, + [3765] = {.lex_state = 55, .external_lex_state = 2}, + [3766] = {.lex_state = 55, .external_lex_state = 2}, + [3767] = {.lex_state = 45, .external_lex_state = 5}, + [3768] = {.lex_state = 46, .external_lex_state = 5}, + [3769] = {.lex_state = 55, .external_lex_state = 2}, + [3770] = {.lex_state = 55, .external_lex_state = 2}, + [3771] = {.lex_state = 46, .external_lex_state = 5}, + [3772] = {.lex_state = 55, .external_lex_state = 2}, + [3773] = {.lex_state = 55, .external_lex_state = 2}, + [3774] = {.lex_state = 46, .external_lex_state = 5}, + [3775] = {.lex_state = 55, .external_lex_state = 2}, + [3776] = {.lex_state = 55, .external_lex_state = 2}, + [3777] = {.lex_state = 55, .external_lex_state = 2}, + [3778] = {.lex_state = 55, .external_lex_state = 2}, + [3779] = {.lex_state = 55, .external_lex_state = 2}, + [3780] = {.lex_state = 55, .external_lex_state = 2}, + [3781] = {.lex_state = 46, .external_lex_state = 5}, + [3782] = {.lex_state = 55, .external_lex_state = 2}, + [3783] = {.lex_state = 55, .external_lex_state = 2}, + [3784] = {.lex_state = 46, .external_lex_state = 5}, + [3785] = {.lex_state = 46, .external_lex_state = 5}, + [3786] = {.lex_state = 349, .external_lex_state = 2}, + [3787] = {.lex_state = 55, .external_lex_state = 2}, + [3788] = {.lex_state = 349, .external_lex_state = 2}, + [3789] = {.lex_state = 55, .external_lex_state = 2}, + [3790] = {.lex_state = 349, .external_lex_state = 2}, + [3791] = {.lex_state = 55, .external_lex_state = 2}, + [3792] = {.lex_state = 55, .external_lex_state = 2}, + [3793] = {.lex_state = 55, .external_lex_state = 2}, + [3794] = {.lex_state = 46, .external_lex_state = 5}, + [3795] = {.lex_state = 46, .external_lex_state = 5}, + [3796] = {.lex_state = 46, .external_lex_state = 5}, + [3797] = {.lex_state = 46, .external_lex_state = 5}, + [3798] = {.lex_state = 349, .external_lex_state = 2}, + [3799] = {.lex_state = 46, .external_lex_state = 5}, + [3800] = {.lex_state = 55, .external_lex_state = 2}, + [3801] = {.lex_state = 349, .external_lex_state = 2}, + [3802] = {.lex_state = 55, .external_lex_state = 2}, + [3803] = {.lex_state = 46, .external_lex_state = 5}, + [3804] = {.lex_state = 46, .external_lex_state = 5}, + [3805] = {.lex_state = 46, .external_lex_state = 5}, + [3806] = {.lex_state = 349, .external_lex_state = 2}, + [3807] = {.lex_state = 46, .external_lex_state = 5}, + [3808] = {.lex_state = 55, .external_lex_state = 2}, + [3809] = {.lex_state = 46, .external_lex_state = 5}, + [3810] = {.lex_state = 55, .external_lex_state = 2}, + [3811] = {.lex_state = 349, .external_lex_state = 2}, + [3812] = {.lex_state = 349, .external_lex_state = 2}, + [3813] = {.lex_state = 46, .external_lex_state = 5}, + [3814] = {.lex_state = 46, .external_lex_state = 5}, + [3815] = {.lex_state = 46, .external_lex_state = 5}, + [3816] = {.lex_state = 349, .external_lex_state = 2}, + [3817] = {.lex_state = 55, .external_lex_state = 2}, + [3818] = {.lex_state = 46, .external_lex_state = 5}, + [3819] = {.lex_state = 46, .external_lex_state = 5}, + [3820] = {.lex_state = 46, .external_lex_state = 5}, + [3821] = {.lex_state = 55, .external_lex_state = 2}, + [3822] = {.lex_state = 349, .external_lex_state = 2}, + [3823] = {.lex_state = 55, .external_lex_state = 2}, + [3824] = {.lex_state = 55, .external_lex_state = 2}, + [3825] = {.lex_state = 349, .external_lex_state = 2}, + [3826] = {.lex_state = 349, .external_lex_state = 2}, + [3827] = {.lex_state = 349, .external_lex_state = 2}, + [3828] = {.lex_state = 45, .external_lex_state = 5}, + [3829] = {.lex_state = 349, .external_lex_state = 2}, + [3830] = {.lex_state = 46, .external_lex_state = 6}, + [3831] = {.lex_state = 55, .external_lex_state = 2}, + [3832] = {.lex_state = 46, .external_lex_state = 6}, + [3833] = {.lex_state = 55, .external_lex_state = 2}, + [3834] = {.lex_state = 46, .external_lex_state = 6}, + [3835] = {.lex_state = 55, .external_lex_state = 2}, + [3836] = {.lex_state = 55, .external_lex_state = 2}, + [3837] = {.lex_state = 349, .external_lex_state = 2}, + [3838] = {.lex_state = 349, .external_lex_state = 2}, + [3839] = {.lex_state = 55, .external_lex_state = 2}, + [3840] = {.lex_state = 55, .external_lex_state = 2}, + [3841] = {.lex_state = 349, .external_lex_state = 2}, + [3842] = {.lex_state = 349, .external_lex_state = 2}, + [3843] = {.lex_state = 349, .external_lex_state = 2}, + [3844] = {.lex_state = 55, .external_lex_state = 2}, + [3845] = {.lex_state = 46, .external_lex_state = 5}, + [3846] = {.lex_state = 349, .external_lex_state = 2}, + [3847] = {.lex_state = 349, .external_lex_state = 2}, + [3848] = {.lex_state = 55, .external_lex_state = 2}, + [3849] = {.lex_state = 55, .external_lex_state = 2}, + [3850] = {.lex_state = 55, .external_lex_state = 2}, + [3851] = {.lex_state = 349, .external_lex_state = 2}, + [3852] = {.lex_state = 349, .external_lex_state = 2}, [3853] = {.lex_state = 55, .external_lex_state = 2}, - [3854] = {.lex_state = 55, .external_lex_state = 2}, - [3855] = {.lex_state = 46, .external_lex_state = 2}, - [3856] = {.lex_state = 46, .external_lex_state = 2}, - [3857] = {.lex_state = 46, .external_lex_state = 2}, - [3858] = {.lex_state = 46, .external_lex_state = 2}, - [3859] = {.lex_state = 46, .external_lex_state = 2}, - [3860] = {.lex_state = 46, .external_lex_state = 2}, - [3861] = {.lex_state = 46, .external_lex_state = 2}, - [3862] = {.lex_state = 46, .external_lex_state = 2}, - [3863] = {.lex_state = 46, .external_lex_state = 2}, - [3864] = {.lex_state = 46, .external_lex_state = 2}, - [3865] = {.lex_state = 46, .external_lex_state = 2}, - [3866] = {.lex_state = 46, .external_lex_state = 2}, - [3867] = {.lex_state = 46, .external_lex_state = 2}, - [3868] = {.lex_state = 46, .external_lex_state = 2}, - [3869] = {.lex_state = 46, .external_lex_state = 2}, - [3870] = {.lex_state = 46, .external_lex_state = 2}, - [3871] = {.lex_state = 46, .external_lex_state = 2}, - [3872] = {.lex_state = 46, .external_lex_state = 2}, - [3873] = {.lex_state = 46, .external_lex_state = 2}, - [3874] = {.lex_state = 46, .external_lex_state = 2}, - [3875] = {.lex_state = 46, .external_lex_state = 2}, - [3876] = {.lex_state = 46, .external_lex_state = 2}, - [3877] = {.lex_state = 46, .external_lex_state = 2}, - [3878] = {.lex_state = 46, .external_lex_state = 2}, - [3879] = {.lex_state = 46, .external_lex_state = 2}, - [3880] = {.lex_state = 46, .external_lex_state = 2}, - [3881] = {.lex_state = 46, .external_lex_state = 2}, - [3882] = {.lex_state = 46, .external_lex_state = 2}, - [3883] = {.lex_state = 46, .external_lex_state = 2}, - [3884] = {.lex_state = 46, .external_lex_state = 2}, - [3885] = {.lex_state = 46, .external_lex_state = 2}, - [3886] = {.lex_state = 46, .external_lex_state = 2}, - [3887] = {.lex_state = 46, .external_lex_state = 2}, - [3888] = {.lex_state = 46, .external_lex_state = 2}, - [3889] = {.lex_state = 50, .external_lex_state = 2}, - [3890] = {.lex_state = 50, .external_lex_state = 2}, - [3891] = {.lex_state = 50, .external_lex_state = 2}, + [3854] = {.lex_state = 349, .external_lex_state = 2}, + [3855] = {.lex_state = 349, .external_lex_state = 2}, + [3856] = {.lex_state = 46, .external_lex_state = 5}, + [3857] = {.lex_state = 55, .external_lex_state = 2}, + [3858] = {.lex_state = 46, .external_lex_state = 5}, + [3859] = {.lex_state = 55, .external_lex_state = 2}, + [3860] = {.lex_state = 55, .external_lex_state = 2}, + [3861] = {.lex_state = 46, .external_lex_state = 5}, + [3862] = {.lex_state = 55, .external_lex_state = 2}, + [3863] = {.lex_state = 55, .external_lex_state = 2}, + [3864] = {.lex_state = 55, .external_lex_state = 2}, + [3865] = {.lex_state = 55, .external_lex_state = 2}, + [3866] = {.lex_state = 55, .external_lex_state = 2}, + [3867] = {.lex_state = 55, .external_lex_state = 2}, + [3868] = {.lex_state = 55, .external_lex_state = 2}, + [3869] = {.lex_state = 349, .external_lex_state = 2}, + [3870] = {.lex_state = 46, .external_lex_state = 5}, + [3871] = {.lex_state = 46, .external_lex_state = 5}, + [3872] = {.lex_state = 46, .external_lex_state = 5}, + [3873] = {.lex_state = 349, .external_lex_state = 2}, + [3874] = {.lex_state = 46, .external_lex_state = 5}, + [3875] = {.lex_state = 46, .external_lex_state = 5}, + [3876] = {.lex_state = 46, .external_lex_state = 5}, + [3877] = {.lex_state = 46, .external_lex_state = 5}, + [3878] = {.lex_state = 349, .external_lex_state = 2}, + [3879] = {.lex_state = 55, .external_lex_state = 2}, + [3880] = {.lex_state = 55, .external_lex_state = 2}, + [3881] = {.lex_state = 46, .external_lex_state = 5}, + [3882] = {.lex_state = 46, .external_lex_state = 5}, + [3883] = {.lex_state = 349, .external_lex_state = 2}, + [3884] = {.lex_state = 46, .external_lex_state = 5}, + [3885] = {.lex_state = 55, .external_lex_state = 2}, + [3886] = {.lex_state = 55, .external_lex_state = 2}, + [3887] = {.lex_state = 55, .external_lex_state = 2}, + [3888] = {.lex_state = 46, .external_lex_state = 5}, + [3889] = {.lex_state = 55, .external_lex_state = 2}, + [3890] = {.lex_state = 55, .external_lex_state = 2}, + [3891] = {.lex_state = 349, .external_lex_state = 2}, [3892] = {.lex_state = 55, .external_lex_state = 2}, - [3893] = {.lex_state = 50, .external_lex_state = 2}, - [3894] = {.lex_state = 50, .external_lex_state = 2}, - [3895] = {.lex_state = 55, .external_lex_state = 2}, - [3896] = {.lex_state = 55, .external_lex_state = 2}, - [3897] = {.lex_state = 55, .external_lex_state = 2}, + [3893] = {.lex_state = 45, .external_lex_state = 5}, + [3894] = {.lex_state = 45, .external_lex_state = 5}, + [3895] = {.lex_state = 45, .external_lex_state = 5}, + [3896] = {.lex_state = 51, .external_lex_state = 2}, + [3897] = {.lex_state = 51, .external_lex_state = 2}, [3898] = {.lex_state = 45, .external_lex_state = 5}, - [3899] = {.lex_state = 46, .external_lex_state = 5}, - [3900] = {.lex_state = 55, .external_lex_state = 2}, - [3901] = {.lex_state = 46, .external_lex_state = 5}, + [3899] = {.lex_state = 73, .external_lex_state = 2}, + [3900] = {.lex_state = 45, .external_lex_state = 5}, + [3901] = {.lex_state = 45, .external_lex_state = 5}, [3902] = {.lex_state = 45, .external_lex_state = 5}, - [3903] = {.lex_state = 55, .external_lex_state = 2}, - [3904] = {.lex_state = 55, .external_lex_state = 2}, - [3905] = {.lex_state = 46, .external_lex_state = 5}, - [3906] = {.lex_state = 55, .external_lex_state = 2}, - [3907] = {.lex_state = 55, .external_lex_state = 2}, - [3908] = {.lex_state = 46, .external_lex_state = 2}, - [3909] = {.lex_state = 55, .external_lex_state = 2}, - [3910] = {.lex_state = 55, .external_lex_state = 2}, - [3911] = {.lex_state = 55, .external_lex_state = 2}, - [3912] = {.lex_state = 46, .external_lex_state = 2}, - [3913] = {.lex_state = 55, .external_lex_state = 2}, - [3914] = {.lex_state = 55, .external_lex_state = 2}, - [3915] = {.lex_state = 46, .external_lex_state = 2}, - [3916] = {.lex_state = 55, .external_lex_state = 2}, - [3917] = {.lex_state = 55, .external_lex_state = 2}, - [3918] = {.lex_state = 55, .external_lex_state = 2}, - [3919] = {.lex_state = 55, .external_lex_state = 2}, - [3920] = {.lex_state = 55, .external_lex_state = 2}, - [3921] = {.lex_state = 55, .external_lex_state = 2}, - [3922] = {.lex_state = 46, .external_lex_state = 2}, - [3923] = {.lex_state = 55, .external_lex_state = 2}, - [3924] = {.lex_state = 55, .external_lex_state = 2}, - [3925] = {.lex_state = 55, .external_lex_state = 2}, - [3926] = {.lex_state = 55, .external_lex_state = 2}, - [3927] = {.lex_state = 55, .external_lex_state = 2}, - [3928] = {.lex_state = 55, .external_lex_state = 2}, - [3929] = {.lex_state = 46, .external_lex_state = 5}, - [3930] = {.lex_state = 349, .external_lex_state = 2}, - [3931] = {.lex_state = 349, .external_lex_state = 2}, - [3932] = {.lex_state = 46, .external_lex_state = 5}, - [3933] = {.lex_state = 46, .external_lex_state = 5}, - [3934] = {.lex_state = 46, .external_lex_state = 5}, - [3935] = {.lex_state = 46, .external_lex_state = 5}, - [3936] = {.lex_state = 349, .external_lex_state = 2}, - [3937] = {.lex_state = 46, .external_lex_state = 5}, - [3938] = {.lex_state = 46, .external_lex_state = 5}, - [3939] = {.lex_state = 46, .external_lex_state = 5}, - [3940] = {.lex_state = 46, .external_lex_state = 5}, - [3941] = {.lex_state = 349, .external_lex_state = 2}, - [3942] = {.lex_state = 349, .external_lex_state = 2}, - [3943] = {.lex_state = 349, .external_lex_state = 2}, - [3944] = {.lex_state = 46, .external_lex_state = 5}, - [3945] = {.lex_state = 46, .external_lex_state = 5}, - [3946] = {.lex_state = 349, .external_lex_state = 2}, - [3947] = {.lex_state = 55, .external_lex_state = 2}, - [3948] = {.lex_state = 55, .external_lex_state = 2}, - [3949] = {.lex_state = 55, .external_lex_state = 2}, - [3950] = {.lex_state = 55, .external_lex_state = 2}, - [3951] = {.lex_state = 349, .external_lex_state = 2}, - [3952] = {.lex_state = 55, .external_lex_state = 2}, - [3953] = {.lex_state = 55, .external_lex_state = 2}, - [3954] = {.lex_state = 46, .external_lex_state = 5}, - [3955] = {.lex_state = 55, .external_lex_state = 2}, - [3956] = {.lex_state = 55, .external_lex_state = 2}, - [3957] = {.lex_state = 349, .external_lex_state = 2}, - [3958] = {.lex_state = 349, .external_lex_state = 2}, - [3959] = {.lex_state = 55, .external_lex_state = 2}, - [3960] = {.lex_state = 55, .external_lex_state = 2}, - [3961] = {.lex_state = 349, .external_lex_state = 2}, - [3962] = {.lex_state = 349, .external_lex_state = 2}, - [3963] = {.lex_state = 349, .external_lex_state = 2}, - [3964] = {.lex_state = 349, .external_lex_state = 2}, - [3965] = {.lex_state = 45, .external_lex_state = 5}, - [3966] = {.lex_state = 55, .external_lex_state = 2}, - [3967] = {.lex_state = 349, .external_lex_state = 2}, - [3968] = {.lex_state = 46, .external_lex_state = 5}, - [3969] = {.lex_state = 349, .external_lex_state = 2}, - [3970] = {.lex_state = 55, .external_lex_state = 2}, - [3971] = {.lex_state = 349, .external_lex_state = 2}, - [3972] = {.lex_state = 349, .external_lex_state = 2}, - [3973] = {.lex_state = 46, .external_lex_state = 5}, - [3974] = {.lex_state = 55, .external_lex_state = 2}, - [3975] = {.lex_state = 55, .external_lex_state = 2}, - [3976] = {.lex_state = 55, .external_lex_state = 2}, - [3977] = {.lex_state = 46, .external_lex_state = 5}, - [3978] = {.lex_state = 55, .external_lex_state = 2}, - [3979] = {.lex_state = 55, .external_lex_state = 2}, - [3980] = {.lex_state = 349, .external_lex_state = 2}, - [3981] = {.lex_state = 46, .external_lex_state = 5}, - [3982] = {.lex_state = 46, .external_lex_state = 5}, - [3983] = {.lex_state = 46, .external_lex_state = 5}, - [3984] = {.lex_state = 349, .external_lex_state = 2}, - [3985] = {.lex_state = 55, .external_lex_state = 2}, - [3986] = {.lex_state = 349, .external_lex_state = 2}, - [3987] = {.lex_state = 46, .external_lex_state = 5}, - [3988] = {.lex_state = 46, .external_lex_state = 5}, - [3989] = {.lex_state = 55, .external_lex_state = 2}, - [3990] = {.lex_state = 46, .external_lex_state = 5}, + [3903] = {.lex_state = 45, .external_lex_state = 5}, + [3904] = {.lex_state = 45, .external_lex_state = 5}, + [3905] = {.lex_state = 45, .external_lex_state = 5}, + [3906] = {.lex_state = 45, .external_lex_state = 5}, + [3907] = {.lex_state = 51, .external_lex_state = 2}, + [3908] = {.lex_state = 45, .external_lex_state = 5}, + [3909] = {.lex_state = 45, .external_lex_state = 5}, + [3910] = {.lex_state = 45, .external_lex_state = 5}, + [3911] = {.lex_state = 45, .external_lex_state = 5}, + [3912] = {.lex_state = 45, .external_lex_state = 5}, + [3913] = {.lex_state = 45, .external_lex_state = 5}, + [3914] = {.lex_state = 45, .external_lex_state = 5}, + [3915] = {.lex_state = 45, .external_lex_state = 5}, + [3916] = {.lex_state = 45, .external_lex_state = 2}, + [3917] = {.lex_state = 45, .external_lex_state = 5}, + [3918] = {.lex_state = 73, .external_lex_state = 2}, + [3919] = {.lex_state = 51, .external_lex_state = 2}, + [3920] = {.lex_state = 45, .external_lex_state = 5}, + [3921] = {.lex_state = 73, .external_lex_state = 2}, + [3922] = {.lex_state = 45, .external_lex_state = 5}, + [3923] = {.lex_state = 73, .external_lex_state = 2}, + [3924] = {.lex_state = 45, .external_lex_state = 5}, + [3925] = {.lex_state = 45, .external_lex_state = 5}, + [3926] = {.lex_state = 45, .external_lex_state = 5}, + [3927] = {.lex_state = 45, .external_lex_state = 5}, + [3928] = {.lex_state = 45, .external_lex_state = 5}, + [3929] = {.lex_state = 51, .external_lex_state = 2}, + [3930] = {.lex_state = 45, .external_lex_state = 5}, + [3931] = {.lex_state = 73, .external_lex_state = 2}, + [3932] = {.lex_state = 45, .external_lex_state = 5}, + [3933] = {.lex_state = 46, .external_lex_state = 6}, + [3934] = {.lex_state = 45, .external_lex_state = 5}, + [3935] = {.lex_state = 46, .external_lex_state = 6}, + [3936] = {.lex_state = 45, .external_lex_state = 6}, + [3937] = {.lex_state = 46, .external_lex_state = 6}, + [3938] = {.lex_state = 46, .external_lex_state = 6}, + [3939] = {.lex_state = 45, .external_lex_state = 5}, + [3940] = {.lex_state = 45, .external_lex_state = 5}, + [3941] = {.lex_state = 46, .external_lex_state = 6}, + [3942] = {.lex_state = 45, .external_lex_state = 5}, + [3943] = {.lex_state = 45, .external_lex_state = 5}, + [3944] = {.lex_state = 46, .external_lex_state = 6}, + [3945] = {.lex_state = 46, .external_lex_state = 6}, + [3946] = {.lex_state = 45, .external_lex_state = 5}, + [3947] = {.lex_state = 46, .external_lex_state = 6}, + [3948] = {.lex_state = 46, .external_lex_state = 6}, + [3949] = {.lex_state = 46, .external_lex_state = 6}, + [3950] = {.lex_state = 45, .external_lex_state = 5}, + [3951] = {.lex_state = 46, .external_lex_state = 6}, + [3952] = {.lex_state = 46, .external_lex_state = 5}, + [3953] = {.lex_state = 46, .external_lex_state = 5}, + [3954] = {.lex_state = 45, .external_lex_state = 2}, + [3955] = {.lex_state = 46, .external_lex_state = 6}, + [3956] = {.lex_state = 45, .external_lex_state = 5}, + [3957] = {.lex_state = 46, .external_lex_state = 6}, + [3958] = {.lex_state = 46, .external_lex_state = 6}, + [3959] = {.lex_state = 46, .external_lex_state = 5}, + [3960] = {.lex_state = 46, .external_lex_state = 6}, + [3961] = {.lex_state = 46, .external_lex_state = 5}, + [3962] = {.lex_state = 46, .external_lex_state = 6}, + [3963] = {.lex_state = 46, .external_lex_state = 6}, + [3964] = {.lex_state = 45, .external_lex_state = 5}, + [3965] = {.lex_state = 46, .external_lex_state = 6}, + [3966] = {.lex_state = 46, .external_lex_state = 6}, + [3967] = {.lex_state = 46, .external_lex_state = 6}, + [3968] = {.lex_state = 46, .external_lex_state = 6}, + [3969] = {.lex_state = 46, .external_lex_state = 6}, + [3970] = {.lex_state = 46, .external_lex_state = 6}, + [3971] = {.lex_state = 45, .external_lex_state = 5}, + [3972] = {.lex_state = 45, .external_lex_state = 5}, + [3973] = {.lex_state = 45, .external_lex_state = 5}, + [3974] = {.lex_state = 46, .external_lex_state = 6}, + [3975] = {.lex_state = 46, .external_lex_state = 6}, + [3976] = {.lex_state = 46, .external_lex_state = 6}, + [3977] = {.lex_state = 46, .external_lex_state = 6}, + [3978] = {.lex_state = 45, .external_lex_state = 5}, + [3979] = {.lex_state = 46, .external_lex_state = 6}, + [3980] = {.lex_state = 46, .external_lex_state = 6}, + [3981] = {.lex_state = 45, .external_lex_state = 5}, + [3982] = {.lex_state = 45, .external_lex_state = 5}, + [3983] = {.lex_state = 46, .external_lex_state = 6}, + [3984] = {.lex_state = 45, .external_lex_state = 5}, + [3985] = {.lex_state = 45, .external_lex_state = 5}, + [3986] = {.lex_state = 46, .external_lex_state = 6}, + [3987] = {.lex_state = 45, .external_lex_state = 5}, + [3988] = {.lex_state = 46, .external_lex_state = 6}, + [3989] = {.lex_state = 45, .external_lex_state = 5}, + [3990] = {.lex_state = 46, .external_lex_state = 6}, [3991] = {.lex_state = 46, .external_lex_state = 5}, - [3992] = {.lex_state = 349, .external_lex_state = 2}, - [3993] = {.lex_state = 349, .external_lex_state = 2}, - [3994] = {.lex_state = 46, .external_lex_state = 6}, - [3995] = {.lex_state = 46, .external_lex_state = 6}, + [3992] = {.lex_state = 45, .external_lex_state = 5}, + [3993] = {.lex_state = 45, .external_lex_state = 5}, + [3994] = {.lex_state = 45, .external_lex_state = 5}, + [3995] = {.lex_state = 45, .external_lex_state = 5}, [3996] = {.lex_state = 46, .external_lex_state = 6}, - [3997] = {.lex_state = 349, .external_lex_state = 2}, - [3998] = {.lex_state = 46, .external_lex_state = 5}, - [3999] = {.lex_state = 55, .external_lex_state = 2}, - [4000] = {.lex_state = 55, .external_lex_state = 2}, - [4001] = {.lex_state = 55, .external_lex_state = 2}, - [4002] = {.lex_state = 55, .external_lex_state = 2}, - [4003] = {.lex_state = 55, .external_lex_state = 2}, - [4004] = {.lex_state = 55, .external_lex_state = 2}, - [4005] = {.lex_state = 46, .external_lex_state = 5}, - [4006] = {.lex_state = 46, .external_lex_state = 5}, - [4007] = {.lex_state = 349, .external_lex_state = 2}, - [4008] = {.lex_state = 349, .external_lex_state = 2}, - [4009] = {.lex_state = 349, .external_lex_state = 2}, - [4010] = {.lex_state = 349, .external_lex_state = 2}, - [4011] = {.lex_state = 55, .external_lex_state = 2}, - [4012] = {.lex_state = 349, .external_lex_state = 2}, - [4013] = {.lex_state = 55, .external_lex_state = 2}, - [4014] = {.lex_state = 46, .external_lex_state = 5}, - [4015] = {.lex_state = 55, .external_lex_state = 2}, - [4016] = {.lex_state = 46, .external_lex_state = 5}, - [4017] = {.lex_state = 55, .external_lex_state = 2}, - [4018] = {.lex_state = 46, .external_lex_state = 5}, - [4019] = {.lex_state = 55, .external_lex_state = 2}, - [4020] = {.lex_state = 46, .external_lex_state = 5}, - [4021] = {.lex_state = 46, .external_lex_state = 5}, - [4022] = {.lex_state = 55, .external_lex_state = 2}, - [4023] = {.lex_state = 46, .external_lex_state = 5}, - [4024] = {.lex_state = 46, .external_lex_state = 5}, - [4025] = {.lex_state = 55, .external_lex_state = 2}, - [4026] = {.lex_state = 55, .external_lex_state = 2}, - [4027] = {.lex_state = 349, .external_lex_state = 2}, - [4028] = {.lex_state = 46, .external_lex_state = 5}, - [4029] = {.lex_state = 55, .external_lex_state = 2}, - [4030] = {.lex_state = 55, .external_lex_state = 2}, - [4031] = {.lex_state = 55, .external_lex_state = 2}, - [4032] = {.lex_state = 55, .external_lex_state = 2}, - [4033] = {.lex_state = 55, .external_lex_state = 2}, - [4034] = {.lex_state = 55, .external_lex_state = 2}, - [4035] = {.lex_state = 46, .external_lex_state = 5}, - [4036] = {.lex_state = 55, .external_lex_state = 2}, - [4037] = {.lex_state = 55, .external_lex_state = 2}, - [4038] = {.lex_state = 55, .external_lex_state = 2}, - [4039] = {.lex_state = 55, .external_lex_state = 2}, + [3997] = {.lex_state = 46, .external_lex_state = 5}, + [3998] = {.lex_state = 45, .external_lex_state = 5}, + [3999] = {.lex_state = 46, .external_lex_state = 5}, + [4000] = {.lex_state = 45, .external_lex_state = 5}, + [4001] = {.lex_state = 45, .external_lex_state = 5}, + [4002] = {.lex_state = 45, .external_lex_state = 5}, + [4003] = {.lex_state = 45, .external_lex_state = 5}, + [4004] = {.lex_state = 45, .external_lex_state = 5}, + [4005] = {.lex_state = 45, .external_lex_state = 5}, + [4006] = {.lex_state = 45, .external_lex_state = 5}, + [4007] = {.lex_state = 50, .external_lex_state = 2}, + [4008] = {.lex_state = 45, .external_lex_state = 5}, + [4009] = {.lex_state = 45, .external_lex_state = 5}, + [4010] = {.lex_state = 50, .external_lex_state = 2}, + [4011] = {.lex_state = 45, .external_lex_state = 5}, + [4012] = {.lex_state = 45, .external_lex_state = 5}, + [4013] = {.lex_state = 45, .external_lex_state = 5}, + [4014] = {.lex_state = 45, .external_lex_state = 5}, + [4015] = {.lex_state = 45, .external_lex_state = 5}, + [4016] = {.lex_state = 45, .external_lex_state = 5}, + [4017] = {.lex_state = 45, .external_lex_state = 5}, + [4018] = {.lex_state = 50, .external_lex_state = 2}, + [4019] = {.lex_state = 45, .external_lex_state = 5}, + [4020] = {.lex_state = 45, .external_lex_state = 5}, + [4021] = {.lex_state = 45, .external_lex_state = 5}, + [4022] = {.lex_state = 45, .external_lex_state = 2}, + [4023] = {.lex_state = 45, .external_lex_state = 5}, + [4024] = {.lex_state = 45, .external_lex_state = 5}, + [4025] = {.lex_state = 45, .external_lex_state = 5}, + [4026] = {.lex_state = 45, .external_lex_state = 5}, + [4027] = {.lex_state = 45, .external_lex_state = 5}, + [4028] = {.lex_state = 45, .external_lex_state = 5}, + [4029] = {.lex_state = 45, .external_lex_state = 5}, + [4030] = {.lex_state = 45, .external_lex_state = 5}, + [4031] = {.lex_state = 45, .external_lex_state = 5}, + [4032] = {.lex_state = 45, .external_lex_state = 5}, + [4033] = {.lex_state = 45, .external_lex_state = 5}, + [4034] = {.lex_state = 45, .external_lex_state = 5}, + [4035] = {.lex_state = 50, .external_lex_state = 2}, + [4036] = {.lex_state = 45, .external_lex_state = 5}, + [4037] = {.lex_state = 45, .external_lex_state = 5}, + [4038] = {.lex_state = 45, .external_lex_state = 5}, + [4039] = {.lex_state = 45, .external_lex_state = 5}, [4040] = {.lex_state = 45, .external_lex_state = 5}, [4041] = {.lex_state = 45, .external_lex_state = 5}, [4042] = {.lex_state = 45, .external_lex_state = 5}, - [4043] = {.lex_state = 51, .external_lex_state = 2}, - [4044] = {.lex_state = 73, .external_lex_state = 2}, - [4045] = {.lex_state = 73, .external_lex_state = 2}, + [4043] = {.lex_state = 45, .external_lex_state = 5}, + [4044] = {.lex_state = 45, .external_lex_state = 5}, + [4045] = {.lex_state = 45, .external_lex_state = 6}, [4046] = {.lex_state = 45, .external_lex_state = 5}, [4047] = {.lex_state = 45, .external_lex_state = 5}, [4048] = {.lex_state = 45, .external_lex_state = 5}, [4049] = {.lex_state = 45, .external_lex_state = 5}, - [4050] = {.lex_state = 45, .external_lex_state = 5}, - [4051] = {.lex_state = 51, .external_lex_state = 2}, + [4050] = {.lex_state = 50, .external_lex_state = 2}, + [4051] = {.lex_state = 45, .external_lex_state = 5}, [4052] = {.lex_state = 45, .external_lex_state = 5}, - [4053] = {.lex_state = 45, .external_lex_state = 5}, - [4054] = {.lex_state = 51, .external_lex_state = 2}, + [4053] = {.lex_state = 46, .external_lex_state = 6}, + [4054] = {.lex_state = 46, .external_lex_state = 6}, [4055] = {.lex_state = 45, .external_lex_state = 5}, [4056] = {.lex_state = 45, .external_lex_state = 5}, [4057] = {.lex_state = 45, .external_lex_state = 5}, @@ -24550,1178 +24331,1178 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [4068] = {.lex_state = 45, .external_lex_state = 5}, [4069] = {.lex_state = 45, .external_lex_state = 5}, [4070] = {.lex_state = 45, .external_lex_state = 5}, - [4071] = {.lex_state = 73, .external_lex_state = 2}, - [4072] = {.lex_state = 73, .external_lex_state = 2}, + [4071] = {.lex_state = 45, .external_lex_state = 5}, + [4072] = {.lex_state = 45, .external_lex_state = 5}, [4073] = {.lex_state = 45, .external_lex_state = 5}, [4074] = {.lex_state = 45, .external_lex_state = 5}, - [4075] = {.lex_state = 45, .external_lex_state = 5}, - [4076] = {.lex_state = 51, .external_lex_state = 2}, - [4077] = {.lex_state = 51, .external_lex_state = 2}, - [4078] = {.lex_state = 73, .external_lex_state = 2}, - [4079] = {.lex_state = 45, .external_lex_state = 2}, + [4075] = {.lex_state = 46, .external_lex_state = 6}, + [4076] = {.lex_state = 46, .external_lex_state = 6}, + [4077] = {.lex_state = 46, .external_lex_state = 6}, + [4078] = {.lex_state = 45, .external_lex_state = 5}, + [4079] = {.lex_state = 45, .external_lex_state = 5}, [4080] = {.lex_state = 45, .external_lex_state = 5}, - [4081] = {.lex_state = 46, .external_lex_state = 6}, - [4082] = {.lex_state = 46, .external_lex_state = 6}, + [4081] = {.lex_state = 45, .external_lex_state = 5}, + [4082] = {.lex_state = 45, .external_lex_state = 5}, [4083] = {.lex_state = 45, .external_lex_state = 5}, - [4084] = {.lex_state = 46, .external_lex_state = 6}, - [4085] = {.lex_state = 46, .external_lex_state = 5}, + [4084] = {.lex_state = 45, .external_lex_state = 5}, + [4085] = {.lex_state = 45, .external_lex_state = 5}, [4086] = {.lex_state = 45, .external_lex_state = 5}, - [4087] = {.lex_state = 45, .external_lex_state = 6}, - [4088] = {.lex_state = 46, .external_lex_state = 6}, - [4089] = {.lex_state = 46, .external_lex_state = 6}, + [4087] = {.lex_state = 45, .external_lex_state = 5}, + [4088] = {.lex_state = 45, .external_lex_state = 5}, + [4089] = {.lex_state = 45, .external_lex_state = 5}, [4090] = {.lex_state = 45, .external_lex_state = 5}, [4091] = {.lex_state = 45, .external_lex_state = 5}, - [4092] = {.lex_state = 46, .external_lex_state = 6}, - [4093] = {.lex_state = 46, .external_lex_state = 6}, - [4094] = {.lex_state = 46, .external_lex_state = 6}, - [4095] = {.lex_state = 46, .external_lex_state = 6}, - [4096] = {.lex_state = 46, .external_lex_state = 5}, - [4097] = {.lex_state = 46, .external_lex_state = 6}, - [4098] = {.lex_state = 46, .external_lex_state = 6}, - [4099] = {.lex_state = 46, .external_lex_state = 6}, - [4100] = {.lex_state = 45, .external_lex_state = 5}, - [4101] = {.lex_state = 45, .external_lex_state = 5}, - [4102] = {.lex_state = 46, .external_lex_state = 5}, - [4103] = {.lex_state = 45, .external_lex_state = 5}, - [4104] = {.lex_state = 46, .external_lex_state = 6}, - [4105] = {.lex_state = 45, .external_lex_state = 5}, - [4106] = {.lex_state = 46, .external_lex_state = 6}, - [4107] = {.lex_state = 45, .external_lex_state = 5}, + [4092] = {.lex_state = 45, .external_lex_state = 5}, + [4093] = {.lex_state = 45, .external_lex_state = 5}, + [4094] = {.lex_state = 45, .external_lex_state = 5}, + [4095] = {.lex_state = 45, .external_lex_state = 5}, + [4096] = {.lex_state = 45, .external_lex_state = 5}, + [4097] = {.lex_state = 45, .external_lex_state = 5}, + [4098] = {.lex_state = 45, .external_lex_state = 5}, + [4099] = {.lex_state = 45, .external_lex_state = 5}, + [4100] = {.lex_state = 45, .external_lex_state = 6}, + [4101] = {.lex_state = 45, .external_lex_state = 6}, + [4102] = {.lex_state = 45, .external_lex_state = 5}, + [4103] = {.lex_state = 45, .external_lex_state = 6}, + [4104] = {.lex_state = 45, .external_lex_state = 5}, + [4105] = {.lex_state = 46, .external_lex_state = 6}, + [4106] = {.lex_state = 45, .external_lex_state = 5}, + [4107] = {.lex_state = 46, .external_lex_state = 6}, [4108] = {.lex_state = 45, .external_lex_state = 5}, [4109] = {.lex_state = 45, .external_lex_state = 5}, [4110] = {.lex_state = 45, .external_lex_state = 5}, - [4111] = {.lex_state = 46, .external_lex_state = 6}, + [4111] = {.lex_state = 50, .external_lex_state = 2}, [4112] = {.lex_state = 45, .external_lex_state = 5}, [4113] = {.lex_state = 45, .external_lex_state = 5}, - [4114] = {.lex_state = 46, .external_lex_state = 6}, + [4114] = {.lex_state = 45, .external_lex_state = 5}, [4115] = {.lex_state = 45, .external_lex_state = 5}, - [4116] = {.lex_state = 46, .external_lex_state = 5}, - [4117] = {.lex_state = 45, .external_lex_state = 5}, - [4118] = {.lex_state = 46, .external_lex_state = 5}, - [4119] = {.lex_state = 45, .external_lex_state = 5}, - [4120] = {.lex_state = 46, .external_lex_state = 6}, - [4121] = {.lex_state = 45, .external_lex_state = 5}, - [4122] = {.lex_state = 46, .external_lex_state = 5}, - [4123] = {.lex_state = 45, .external_lex_state = 5}, - [4124] = {.lex_state = 46, .external_lex_state = 6}, - [4125] = {.lex_state = 45, .external_lex_state = 5}, + [4116] = {.lex_state = 69, .external_lex_state = 2}, + [4117] = {.lex_state = 69, .external_lex_state = 2}, + [4118] = {.lex_state = 69, .external_lex_state = 2}, + [4119] = {.lex_state = 69, .external_lex_state = 2}, + [4120] = {.lex_state = 69, .external_lex_state = 2}, + [4121] = {.lex_state = 349, .external_lex_state = 5}, + [4122] = {.lex_state = 69, .external_lex_state = 2}, + [4123] = {.lex_state = 69, .external_lex_state = 2}, + [4124] = {.lex_state = 45, .external_lex_state = 6}, + [4125] = {.lex_state = 69, .external_lex_state = 2}, [4126] = {.lex_state = 45, .external_lex_state = 5}, - [4127] = {.lex_state = 45, .external_lex_state = 5}, - [4128] = {.lex_state = 45, .external_lex_state = 2}, - [4129] = {.lex_state = 45, .external_lex_state = 5}, - [4130] = {.lex_state = 46, .external_lex_state = 6}, - [4131] = {.lex_state = 46, .external_lex_state = 5}, - [4132] = {.lex_state = 45, .external_lex_state = 5}, - [4133] = {.lex_state = 46, .external_lex_state = 6}, - [4134] = {.lex_state = 46, .external_lex_state = 6}, - [4135] = {.lex_state = 46, .external_lex_state = 6}, - [4136] = {.lex_state = 46, .external_lex_state = 6}, - [4137] = {.lex_state = 46, .external_lex_state = 6}, - [4138] = {.lex_state = 46, .external_lex_state = 6}, - [4139] = {.lex_state = 46, .external_lex_state = 6}, - [4140] = {.lex_state = 46, .external_lex_state = 6}, - [4141] = {.lex_state = 46, .external_lex_state = 6}, - [4142] = {.lex_state = 46, .external_lex_state = 6}, - [4143] = {.lex_state = 46, .external_lex_state = 6}, - [4144] = {.lex_state = 46, .external_lex_state = 6}, - [4145] = {.lex_state = 46, .external_lex_state = 6}, - [4146] = {.lex_state = 46, .external_lex_state = 6}, - [4147] = {.lex_state = 46, .external_lex_state = 6}, - [4148] = {.lex_state = 45, .external_lex_state = 5}, - [4149] = {.lex_state = 45, .external_lex_state = 5}, - [4150] = {.lex_state = 45, .external_lex_state = 5}, - [4151] = {.lex_state = 45, .external_lex_state = 5}, - [4152] = {.lex_state = 45, .external_lex_state = 5}, - [4153] = {.lex_state = 45, .external_lex_state = 5}, - [4154] = {.lex_state = 45, .external_lex_state = 5}, - [4155] = {.lex_state = 45, .external_lex_state = 5}, - [4156] = {.lex_state = 45, .external_lex_state = 5}, + [4127] = {.lex_state = 69, .external_lex_state = 2}, + [4128] = {.lex_state = 349, .external_lex_state = 5}, + [4129] = {.lex_state = 69, .external_lex_state = 2}, + [4130] = {.lex_state = 69, .external_lex_state = 2}, + [4131] = {.lex_state = 50, .external_lex_state = 2}, + [4132] = {.lex_state = 46, .external_lex_state = 5}, + [4133] = {.lex_state = 50, .external_lex_state = 2}, + [4134] = {.lex_state = 46, .external_lex_state = 5}, + [4135] = {.lex_state = 69, .external_lex_state = 2}, + [4136] = {.lex_state = 69, .external_lex_state = 2}, + [4137] = {.lex_state = 69, .external_lex_state = 2}, + [4138] = {.lex_state = 52, .external_lex_state = 2}, + [4139] = {.lex_state = 45, .external_lex_state = 6}, + [4140] = {.lex_state = 349, .external_lex_state = 5}, + [4141] = {.lex_state = 69, .external_lex_state = 2}, + [4142] = {.lex_state = 45, .external_lex_state = 6}, + [4143] = {.lex_state = 69, .external_lex_state = 2}, + [4144] = {.lex_state = 45, .external_lex_state = 5}, + [4145] = {.lex_state = 45, .external_lex_state = 6}, + [4146] = {.lex_state = 45, .external_lex_state = 2}, + [4147] = {.lex_state = 50, .external_lex_state = 2}, + [4148] = {.lex_state = 45, .external_lex_state = 6}, + [4149] = {.lex_state = 69, .external_lex_state = 2}, + [4150] = {.lex_state = 45, .external_lex_state = 2}, + [4151] = {.lex_state = 45, .external_lex_state = 6}, + [4152] = {.lex_state = 45, .external_lex_state = 6}, + [4153] = {.lex_state = 45, .external_lex_state = 6}, + [4154] = {.lex_state = 45, .external_lex_state = 6}, + [4155] = {.lex_state = 45, .external_lex_state = 6}, + [4156] = {.lex_state = 45, .external_lex_state = 6}, [4157] = {.lex_state = 45, .external_lex_state = 5}, - [4158] = {.lex_state = 45, .external_lex_state = 5}, - [4159] = {.lex_state = 50, .external_lex_state = 2}, + [4158] = {.lex_state = 45, .external_lex_state = 2}, + [4159] = {.lex_state = 46, .external_lex_state = 2}, [4160] = {.lex_state = 45, .external_lex_state = 5}, - [4161] = {.lex_state = 50, .external_lex_state = 2}, - [4162] = {.lex_state = 45, .external_lex_state = 5}, + [4161] = {.lex_state = 45, .external_lex_state = 2}, + [4162] = {.lex_state = 45, .external_lex_state = 6}, [4163] = {.lex_state = 45, .external_lex_state = 5}, - [4164] = {.lex_state = 50, .external_lex_state = 2}, - [4165] = {.lex_state = 45, .external_lex_state = 5}, - [4166] = {.lex_state = 45, .external_lex_state = 2}, - [4167] = {.lex_state = 45, .external_lex_state = 5}, - [4168] = {.lex_state = 45, .external_lex_state = 5}, - [4169] = {.lex_state = 45, .external_lex_state = 5}, - [4170] = {.lex_state = 50, .external_lex_state = 2}, + [4164] = {.lex_state = 45, .external_lex_state = 2}, + [4165] = {.lex_state = 45, .external_lex_state = 2}, + [4166] = {.lex_state = 45, .external_lex_state = 6}, + [4167] = {.lex_state = 45, .external_lex_state = 2}, + [4168] = {.lex_state = 45, .external_lex_state = 6}, + [4169] = {.lex_state = 45, .external_lex_state = 6}, + [4170] = {.lex_state = 46, .external_lex_state = 2}, [4171] = {.lex_state = 45, .external_lex_state = 5}, [4172] = {.lex_state = 45, .external_lex_state = 5}, - [4173] = {.lex_state = 45, .external_lex_state = 5}, - [4174] = {.lex_state = 45, .external_lex_state = 5}, + [4173] = {.lex_state = 349, .external_lex_state = 5}, + [4174] = {.lex_state = 45, .external_lex_state = 2}, [4175] = {.lex_state = 45, .external_lex_state = 5}, - [4176] = {.lex_state = 45, .external_lex_state = 5}, - [4177] = {.lex_state = 45, .external_lex_state = 5}, - [4178] = {.lex_state = 45, .external_lex_state = 5}, - [4179] = {.lex_state = 45, .external_lex_state = 5}, - [4180] = {.lex_state = 45, .external_lex_state = 5}, + [4176] = {.lex_state = 55, .external_lex_state = 2}, + [4177] = {.lex_state = 45, .external_lex_state = 2}, + [4178] = {.lex_state = 45, .external_lex_state = 2}, + [4179] = {.lex_state = 45, .external_lex_state = 6}, + [4180] = {.lex_state = 349, .external_lex_state = 5}, [4181] = {.lex_state = 45, .external_lex_state = 5}, - [4182] = {.lex_state = 45, .external_lex_state = 5}, - [4183] = {.lex_state = 45, .external_lex_state = 5}, - [4184] = {.lex_state = 50, .external_lex_state = 2}, - [4185] = {.lex_state = 45, .external_lex_state = 5}, - [4186] = {.lex_state = 45, .external_lex_state = 5}, - [4187] = {.lex_state = 45, .external_lex_state = 5}, - [4188] = {.lex_state = 45, .external_lex_state = 5}, - [4189] = {.lex_state = 45, .external_lex_state = 5}, - [4190] = {.lex_state = 45, .external_lex_state = 6}, - [4191] = {.lex_state = 45, .external_lex_state = 5}, - [4192] = {.lex_state = 45, .external_lex_state = 5}, + [4182] = {.lex_state = 55, .external_lex_state = 2}, + [4183] = {.lex_state = 45, .external_lex_state = 6}, + [4184] = {.lex_state = 45, .external_lex_state = 2}, + [4185] = {.lex_state = 55, .external_lex_state = 2}, + [4186] = {.lex_state = 45, .external_lex_state = 2}, + [4187] = {.lex_state = 45, .external_lex_state = 2}, + [4188] = {.lex_state = 45, .external_lex_state = 2}, + [4189] = {.lex_state = 50, .external_lex_state = 2}, + [4190] = {.lex_state = 45, .external_lex_state = 2}, + [4191] = {.lex_state = 45, .external_lex_state = 2}, + [4192] = {.lex_state = 46, .external_lex_state = 2}, [4193] = {.lex_state = 45, .external_lex_state = 5}, [4194] = {.lex_state = 45, .external_lex_state = 5}, [4195] = {.lex_state = 45, .external_lex_state = 5}, - [4196] = {.lex_state = 45, .external_lex_state = 5}, - [4197] = {.lex_state = 45, .external_lex_state = 5}, - [4198] = {.lex_state = 45, .external_lex_state = 5}, - [4199] = {.lex_state = 45, .external_lex_state = 5}, + [4196] = {.lex_state = 45, .external_lex_state = 2}, + [4197] = {.lex_state = 50, .external_lex_state = 2}, + [4198] = {.lex_state = 45, .external_lex_state = 6}, + [4199] = {.lex_state = 349, .external_lex_state = 5}, [4200] = {.lex_state = 45, .external_lex_state = 5}, [4201] = {.lex_state = 45, .external_lex_state = 5}, - [4202] = {.lex_state = 45, .external_lex_state = 5}, - [4203] = {.lex_state = 45, .external_lex_state = 5}, + [4202] = {.lex_state = 45, .external_lex_state = 2}, + [4203] = {.lex_state = 45, .external_lex_state = 6}, [4204] = {.lex_state = 45, .external_lex_state = 5}, - [4205] = {.lex_state = 45, .external_lex_state = 5}, - [4206] = {.lex_state = 45, .external_lex_state = 5}, - [4207] = {.lex_state = 45, .external_lex_state = 5}, - [4208] = {.lex_state = 45, .external_lex_state = 5}, - [4209] = {.lex_state = 46, .external_lex_state = 6}, - [4210] = {.lex_state = 45, .external_lex_state = 5}, - [4211] = {.lex_state = 45, .external_lex_state = 5}, - [4212] = {.lex_state = 45, .external_lex_state = 5}, - [4213] = {.lex_state = 45, .external_lex_state = 5}, - [4214] = {.lex_state = 45, .external_lex_state = 5}, + [4205] = {.lex_state = 45, .external_lex_state = 6}, + [4206] = {.lex_state = 45, .external_lex_state = 6}, + [4207] = {.lex_state = 45, .external_lex_state = 6}, + [4208] = {.lex_state = 45, .external_lex_state = 6}, + [4209] = {.lex_state = 45, .external_lex_state = 6}, + [4210] = {.lex_state = 45, .external_lex_state = 6}, + [4211] = {.lex_state = 45, .external_lex_state = 6}, + [4212] = {.lex_state = 45, .external_lex_state = 6}, + [4213] = {.lex_state = 45, .external_lex_state = 6}, + [4214] = {.lex_state = 45, .external_lex_state = 6}, [4215] = {.lex_state = 45, .external_lex_state = 5}, - [4216] = {.lex_state = 45, .external_lex_state = 5}, - [4217] = {.lex_state = 46, .external_lex_state = 6}, - [4218] = {.lex_state = 45, .external_lex_state = 5}, + [4216] = {.lex_state = 45, .external_lex_state = 6}, + [4217] = {.lex_state = 45, .external_lex_state = 5}, + [4218] = {.lex_state = 45, .external_lex_state = 6}, [4219] = {.lex_state = 45, .external_lex_state = 5}, - [4220] = {.lex_state = 45, .external_lex_state = 5}, - [4221] = {.lex_state = 45, .external_lex_state = 5}, - [4222] = {.lex_state = 45, .external_lex_state = 5}, + [4220] = {.lex_state = 45, .external_lex_state = 6}, + [4221] = {.lex_state = 45, .external_lex_state = 6}, + [4222] = {.lex_state = 45, .external_lex_state = 6}, [4223] = {.lex_state = 45, .external_lex_state = 5}, - [4224] = {.lex_state = 45, .external_lex_state = 5}, - [4225] = {.lex_state = 45, .external_lex_state = 5}, - [4226] = {.lex_state = 46, .external_lex_state = 6}, - [4227] = {.lex_state = 45, .external_lex_state = 5}, - [4228] = {.lex_state = 45, .external_lex_state = 5}, - [4229] = {.lex_state = 45, .external_lex_state = 5}, - [4230] = {.lex_state = 45, .external_lex_state = 5}, - [4231] = {.lex_state = 45, .external_lex_state = 5}, - [4232] = {.lex_state = 45, .external_lex_state = 5}, - [4233] = {.lex_state = 45, .external_lex_state = 5}, + [4224] = {.lex_state = 45, .external_lex_state = 2}, + [4225] = {.lex_state = 46, .external_lex_state = 2}, + [4226] = {.lex_state = 45, .external_lex_state = 2}, + [4227] = {.lex_state = 45, .external_lex_state = 6}, + [4228] = {.lex_state = 50, .external_lex_state = 2}, + [4229] = {.lex_state = 45, .external_lex_state = 2}, + [4230] = {.lex_state = 46, .external_lex_state = 2}, + [4231] = {.lex_state = 45, .external_lex_state = 2}, + [4232] = {.lex_state = 55, .external_lex_state = 2}, + [4233] = {.lex_state = 46, .external_lex_state = 2}, [4234] = {.lex_state = 45, .external_lex_state = 5}, - [4235] = {.lex_state = 46, .external_lex_state = 6}, - [4236] = {.lex_state = 46, .external_lex_state = 6}, - [4237] = {.lex_state = 45, .external_lex_state = 5}, - [4238] = {.lex_state = 46, .external_lex_state = 6}, + [4235] = {.lex_state = 46, .external_lex_state = 2}, + [4236] = {.lex_state = 45, .external_lex_state = 6}, + [4237] = {.lex_state = 349, .external_lex_state = 5}, + [4238] = {.lex_state = 45, .external_lex_state = 5}, [4239] = {.lex_state = 45, .external_lex_state = 5}, - [4240] = {.lex_state = 45, .external_lex_state = 5}, - [4241] = {.lex_state = 46, .external_lex_state = 6}, - [4242] = {.lex_state = 50, .external_lex_state = 2}, - [4243] = {.lex_state = 45, .external_lex_state = 6}, - [4244] = {.lex_state = 45, .external_lex_state = 5}, - [4245] = {.lex_state = 45, .external_lex_state = 6}, + [4240] = {.lex_state = 45, .external_lex_state = 2}, + [4241] = {.lex_state = 45, .external_lex_state = 2}, + [4242] = {.lex_state = 45, .external_lex_state = 5}, + [4243] = {.lex_state = 45, .external_lex_state = 5}, + [4244] = {.lex_state = 45, .external_lex_state = 2}, + [4245] = {.lex_state = 45, .external_lex_state = 5}, [4246] = {.lex_state = 45, .external_lex_state = 5}, - [4247] = {.lex_state = 45, .external_lex_state = 5}, + [4247] = {.lex_state = 45, .external_lex_state = 6}, [4248] = {.lex_state = 45, .external_lex_state = 5}, - [4249] = {.lex_state = 45, .external_lex_state = 5}, - [4250] = {.lex_state = 45, .external_lex_state = 5}, - [4251] = {.lex_state = 45, .external_lex_state = 5}, - [4252] = {.lex_state = 45, .external_lex_state = 5}, - [4253] = {.lex_state = 45, .external_lex_state = 5}, - [4254] = {.lex_state = 45, .external_lex_state = 5}, - [4255] = {.lex_state = 45, .external_lex_state = 5}, - [4256] = {.lex_state = 45, .external_lex_state = 5}, - [4257] = {.lex_state = 45, .external_lex_state = 5}, - [4258] = {.lex_state = 45, .external_lex_state = 5}, - [4259] = {.lex_state = 45, .external_lex_state = 5}, - [4260] = {.lex_state = 45, .external_lex_state = 5}, - [4261] = {.lex_state = 45, .external_lex_state = 5}, + [4249] = {.lex_state = 45, .external_lex_state = 6}, + [4250] = {.lex_state = 45, .external_lex_state = 2}, + [4251] = {.lex_state = 46, .external_lex_state = 2}, + [4252] = {.lex_state = 45, .external_lex_state = 2}, + [4253] = {.lex_state = 46, .external_lex_state = 5}, + [4254] = {.lex_state = 45, .external_lex_state = 6}, + [4255] = {.lex_state = 349, .external_lex_state = 2}, + [4256] = {.lex_state = 45, .external_lex_state = 6}, + [4257] = {.lex_state = 45, .external_lex_state = 6}, + [4258] = {.lex_state = 46, .external_lex_state = 2}, + [4259] = {.lex_state = 45, .external_lex_state = 6}, + [4260] = {.lex_state = 45, .external_lex_state = 6}, + [4261] = {.lex_state = 45, .external_lex_state = 2}, [4262] = {.lex_state = 45, .external_lex_state = 6}, - [4263] = {.lex_state = 50, .external_lex_state = 2}, - [4264] = {.lex_state = 69, .external_lex_state = 2}, - [4265] = {.lex_state = 349, .external_lex_state = 5}, - [4266] = {.lex_state = 45, .external_lex_state = 5}, - [4267] = {.lex_state = 69, .external_lex_state = 2}, - [4268] = {.lex_state = 45, .external_lex_state = 6}, - [4269] = {.lex_state = 50, .external_lex_state = 2}, - [4270] = {.lex_state = 69, .external_lex_state = 2}, - [4271] = {.lex_state = 69, .external_lex_state = 2}, - [4272] = {.lex_state = 69, .external_lex_state = 2}, - [4273] = {.lex_state = 50, .external_lex_state = 2}, - [4274] = {.lex_state = 69, .external_lex_state = 2}, - [4275] = {.lex_state = 45, .external_lex_state = 5}, - [4276] = {.lex_state = 349, .external_lex_state = 5}, - [4277] = {.lex_state = 46, .external_lex_state = 5}, - [4278] = {.lex_state = 46, .external_lex_state = 5}, - [4279] = {.lex_state = 45, .external_lex_state = 6}, - [4280] = {.lex_state = 349, .external_lex_state = 5}, - [4281] = {.lex_state = 69, .external_lex_state = 2}, - [4282] = {.lex_state = 69, .external_lex_state = 2}, - [4283] = {.lex_state = 69, .external_lex_state = 2}, - [4284] = {.lex_state = 45, .external_lex_state = 6}, - [4285] = {.lex_state = 69, .external_lex_state = 2}, - [4286] = {.lex_state = 52, .external_lex_state = 2}, - [4287] = {.lex_state = 69, .external_lex_state = 2}, - [4288] = {.lex_state = 69, .external_lex_state = 2}, - [4289] = {.lex_state = 69, .external_lex_state = 2}, - [4290] = {.lex_state = 69, .external_lex_state = 2}, - [4291] = {.lex_state = 69, .external_lex_state = 2}, - [4292] = {.lex_state = 45, .external_lex_state = 6}, - [4293] = {.lex_state = 69, .external_lex_state = 2}, + [4263] = {.lex_state = 45, .external_lex_state = 6}, + [4264] = {.lex_state = 45, .external_lex_state = 5}, + [4265] = {.lex_state = 45, .external_lex_state = 6}, + [4266] = {.lex_state = 45, .external_lex_state = 2}, + [4267] = {.lex_state = 46, .external_lex_state = 2}, + [4268] = {.lex_state = 45, .external_lex_state = 2}, + [4269] = {.lex_state = 45, .external_lex_state = 5}, + [4270] = {.lex_state = 45, .external_lex_state = 2}, + [4271] = {.lex_state = 45, .external_lex_state = 5}, + [4272] = {.lex_state = 45, .external_lex_state = 6}, + [4273] = {.lex_state = 45, .external_lex_state = 6}, + [4274] = {.lex_state = 45, .external_lex_state = 5}, + [4275] = {.lex_state = 45, .external_lex_state = 2}, + [4276] = {.lex_state = 45, .external_lex_state = 2}, + [4277] = {.lex_state = 55, .external_lex_state = 2}, + [4278] = {.lex_state = 45, .external_lex_state = 5}, + [4279] = {.lex_state = 45, .external_lex_state = 5}, + [4280] = {.lex_state = 45, .external_lex_state = 5}, + [4281] = {.lex_state = 45, .external_lex_state = 2}, + [4282] = {.lex_state = 45, .external_lex_state = 5}, + [4283] = {.lex_state = 45, .external_lex_state = 2}, + [4284] = {.lex_state = 45, .external_lex_state = 2}, + [4285] = {.lex_state = 46, .external_lex_state = 5}, + [4286] = {.lex_state = 55, .external_lex_state = 2}, + [4287] = {.lex_state = 45, .external_lex_state = 2}, + [4288] = {.lex_state = 45, .external_lex_state = 6}, + [4289] = {.lex_state = 45, .external_lex_state = 6}, + [4290] = {.lex_state = 45, .external_lex_state = 2}, + [4291] = {.lex_state = 45, .external_lex_state = 6}, + [4292] = {.lex_state = 45, .external_lex_state = 2}, + [4293] = {.lex_state = 45, .external_lex_state = 6}, [4294] = {.lex_state = 45, .external_lex_state = 6}, [4295] = {.lex_state = 45, .external_lex_state = 2}, - [4296] = {.lex_state = 69, .external_lex_state = 2}, - [4297] = {.lex_state = 45, .external_lex_state = 2}, - [4298] = {.lex_state = 45, .external_lex_state = 5}, + [4296] = {.lex_state = 45, .external_lex_state = 6}, + [4297] = {.lex_state = 45, .external_lex_state = 6}, + [4298] = {.lex_state = 45, .external_lex_state = 6}, [4299] = {.lex_state = 45, .external_lex_state = 5}, - [4300] = {.lex_state = 45, .external_lex_state = 5}, - [4301] = {.lex_state = 349, .external_lex_state = 5}, - [4302] = {.lex_state = 349, .external_lex_state = 5}, - [4303] = {.lex_state = 45, .external_lex_state = 5}, + [4300] = {.lex_state = 46, .external_lex_state = 2}, + [4301] = {.lex_state = 45, .external_lex_state = 5}, + [4302] = {.lex_state = 45, .external_lex_state = 2}, + [4303] = {.lex_state = 349, .external_lex_state = 6}, [4304] = {.lex_state = 45, .external_lex_state = 6}, - [4305] = {.lex_state = 45, .external_lex_state = 2}, - [4306] = {.lex_state = 45, .external_lex_state = 5}, - [4307] = {.lex_state = 349, .external_lex_state = 2}, - [4308] = {.lex_state = 45, .external_lex_state = 2}, + [4305] = {.lex_state = 45, .external_lex_state = 6}, + [4306] = {.lex_state = 45, .external_lex_state = 2}, + [4307] = {.lex_state = 45, .external_lex_state = 6}, + [4308] = {.lex_state = 45, .external_lex_state = 5}, [4309] = {.lex_state = 45, .external_lex_state = 5}, - [4310] = {.lex_state = 45, .external_lex_state = 5}, - [4311] = {.lex_state = 45, .external_lex_state = 2}, - [4312] = {.lex_state = 46, .external_lex_state = 2}, - [4313] = {.lex_state = 45, .external_lex_state = 5}, - [4314] = {.lex_state = 45, .external_lex_state = 2}, + [4310] = {.lex_state = 45, .external_lex_state = 6}, + [4311] = {.lex_state = 45, .external_lex_state = 6}, + [4312] = {.lex_state = 45, .external_lex_state = 6}, + [4313] = {.lex_state = 45, .external_lex_state = 2}, + [4314] = {.lex_state = 45, .external_lex_state = 5}, [4315] = {.lex_state = 45, .external_lex_state = 2}, [4316] = {.lex_state = 45, .external_lex_state = 2}, [4317] = {.lex_state = 45, .external_lex_state = 2}, - [4318] = {.lex_state = 45, .external_lex_state = 2}, - [4319] = {.lex_state = 349, .external_lex_state = 5}, - [4320] = {.lex_state = 46, .external_lex_state = 2}, - [4321] = {.lex_state = 45, .external_lex_state = 6}, + [4318] = {.lex_state = 45, .external_lex_state = 6}, + [4319] = {.lex_state = 45, .external_lex_state = 6}, + [4320] = {.lex_state = 45, .external_lex_state = 6}, + [4321] = {.lex_state = 46, .external_lex_state = 2}, [4322] = {.lex_state = 45, .external_lex_state = 2}, - [4323] = {.lex_state = 45, .external_lex_state = 2}, - [4324] = {.lex_state = 45, .external_lex_state = 6}, + [4323] = {.lex_state = 349, .external_lex_state = 6}, + [4324] = {.lex_state = 45, .external_lex_state = 2}, [4325] = {.lex_state = 45, .external_lex_state = 2}, [4326] = {.lex_state = 45, .external_lex_state = 2}, - [4327] = {.lex_state = 45, .external_lex_state = 5}, + [4327] = {.lex_state = 45, .external_lex_state = 2}, [4328] = {.lex_state = 45, .external_lex_state = 2}, - [4329] = {.lex_state = 45, .external_lex_state = 6}, - [4330] = {.lex_state = 45, .external_lex_state = 2}, - [4331] = {.lex_state = 45, .external_lex_state = 6}, - [4332] = {.lex_state = 45, .external_lex_state = 2}, - [4333] = {.lex_state = 45, .external_lex_state = 6}, - [4334] = {.lex_state = 46, .external_lex_state = 2}, + [4329] = {.lex_state = 45, .external_lex_state = 2}, + [4330] = {.lex_state = 45, .external_lex_state = 5}, + [4331] = {.lex_state = 46, .external_lex_state = 2}, + [4332] = {.lex_state = 46, .external_lex_state = 2}, + [4333] = {.lex_state = 45, .external_lex_state = 2}, + [4334] = {.lex_state = 45, .external_lex_state = 2}, [4335] = {.lex_state = 45, .external_lex_state = 5}, - [4336] = {.lex_state = 45, .external_lex_state = 2}, + [4336] = {.lex_state = 45, .external_lex_state = 5}, [4337] = {.lex_state = 45, .external_lex_state = 5}, - [4338] = {.lex_state = 349, .external_lex_state = 6}, - [4339] = {.lex_state = 45, .external_lex_state = 2}, - [4340] = {.lex_state = 45, .external_lex_state = 6}, - [4341] = {.lex_state = 46, .external_lex_state = 2}, - [4342] = {.lex_state = 45, .external_lex_state = 2}, - [4343] = {.lex_state = 349, .external_lex_state = 6}, - [4344] = {.lex_state = 55, .external_lex_state = 2}, - [4345] = {.lex_state = 45, .external_lex_state = 6}, - [4346] = {.lex_state = 45, .external_lex_state = 6}, - [4347] = {.lex_state = 45, .external_lex_state = 2}, - [4348] = {.lex_state = 45, .external_lex_state = 2}, - [4349] = {.lex_state = 45, .external_lex_state = 2}, - [4350] = {.lex_state = 45, .external_lex_state = 2}, - [4351] = {.lex_state = 46, .external_lex_state = 2}, - [4352] = {.lex_state = 45, .external_lex_state = 6}, - [4353] = {.lex_state = 45, .external_lex_state = 6}, - [4354] = {.lex_state = 45, .external_lex_state = 5}, - [4355] = {.lex_state = 46, .external_lex_state = 2}, - [4356] = {.lex_state = 45, .external_lex_state = 2}, - [4357] = {.lex_state = 46, .external_lex_state = 2}, - [4358] = {.lex_state = 50, .external_lex_state = 2}, - [4359] = {.lex_state = 46, .external_lex_state = 2}, - [4360] = {.lex_state = 45, .external_lex_state = 5}, - [4361] = {.lex_state = 45, .external_lex_state = 5}, - [4362] = {.lex_state = 45, .external_lex_state = 2}, - [4363] = {.lex_state = 45, .external_lex_state = 5}, - [4364] = {.lex_state = 45, .external_lex_state = 2}, - [4365] = {.lex_state = 55, .external_lex_state = 2}, - [4366] = {.lex_state = 55, .external_lex_state = 2}, - [4367] = {.lex_state = 45, .external_lex_state = 2}, - [4368] = {.lex_state = 45, .external_lex_state = 6}, - [4369] = {.lex_state = 45, .external_lex_state = 2}, - [4370] = {.lex_state = 45, .external_lex_state = 6}, - [4371] = {.lex_state = 45, .external_lex_state = 6}, - [4372] = {.lex_state = 45, .external_lex_state = 6}, - [4373] = {.lex_state = 45, .external_lex_state = 6}, - [4374] = {.lex_state = 45, .external_lex_state = 6}, - [4375] = {.lex_state = 45, .external_lex_state = 6}, - [4376] = {.lex_state = 45, .external_lex_state = 6}, - [4377] = {.lex_state = 45, .external_lex_state = 6}, + [4338] = {.lex_state = 45, .external_lex_state = 6}, + [4339] = {.lex_state = 45, .external_lex_state = 5}, + [4340] = {.lex_state = 349, .external_lex_state = 5}, + [4341] = {.lex_state = 45, .external_lex_state = 6}, + [4342] = {.lex_state = 349, .external_lex_state = 5}, + [4343] = {.lex_state = 45, .external_lex_state = 2}, + [4344] = {.lex_state = 45, .external_lex_state = 5}, + [4345] = {.lex_state = 45, .external_lex_state = 5}, + [4346] = {.lex_state = 71, .external_lex_state = 2}, + [4347] = {.lex_state = 62, .external_lex_state = 2}, + [4348] = {.lex_state = 62, .external_lex_state = 2}, + [4349] = {.lex_state = 62, .external_lex_state = 2}, + [4350] = {.lex_state = 45, .external_lex_state = 5}, + [4351] = {.lex_state = 45, .external_lex_state = 2}, + [4352] = {.lex_state = 71, .external_lex_state = 2}, + [4353] = {.lex_state = 45, .external_lex_state = 5}, + [4354] = {.lex_state = 62, .external_lex_state = 2}, + [4355] = {.lex_state = 71, .external_lex_state = 2}, + [4356] = {.lex_state = 349, .external_lex_state = 5}, + [4357] = {.lex_state = 349, .external_lex_state = 5}, + [4358] = {.lex_state = 71, .external_lex_state = 2}, + [4359] = {.lex_state = 349, .external_lex_state = 7}, + [4360] = {.lex_state = 349, .external_lex_state = 5}, + [4361] = {.lex_state = 349, .external_lex_state = 7}, + [4362] = {.lex_state = 349, .external_lex_state = 5}, + [4363] = {.lex_state = 62, .external_lex_state = 2}, + [4364] = {.lex_state = 349, .external_lex_state = 7}, + [4365] = {.lex_state = 62, .external_lex_state = 2}, + [4366] = {.lex_state = 349, .external_lex_state = 5}, + [4367] = {.lex_state = 50, .external_lex_state = 2}, + [4368] = {.lex_state = 349, .external_lex_state = 7}, + [4369] = {.lex_state = 62, .external_lex_state = 2}, + [4370] = {.lex_state = 62, .external_lex_state = 2}, + [4371] = {.lex_state = 62, .external_lex_state = 2}, + [4372] = {.lex_state = 45, .external_lex_state = 5}, + [4373] = {.lex_state = 71, .external_lex_state = 2}, + [4374] = {.lex_state = 71, .external_lex_state = 2}, + [4375] = {.lex_state = 349, .external_lex_state = 7}, + [4376] = {.lex_state = 349, .external_lex_state = 7}, + [4377] = {.lex_state = 349, .external_lex_state = 7}, [4378] = {.lex_state = 45, .external_lex_state = 6}, - [4379] = {.lex_state = 45, .external_lex_state = 6}, + [4379] = {.lex_state = 349, .external_lex_state = 6}, [4380] = {.lex_state = 45, .external_lex_state = 2}, - [4381] = {.lex_state = 45, .external_lex_state = 6}, - [4382] = {.lex_state = 45, .external_lex_state = 2}, - [4383] = {.lex_state = 45, .external_lex_state = 2}, - [4384] = {.lex_state = 45, .external_lex_state = 2}, - [4385] = {.lex_state = 45, .external_lex_state = 6}, - [4386] = {.lex_state = 45, .external_lex_state = 2}, - [4387] = {.lex_state = 55, .external_lex_state = 2}, - [4388] = {.lex_state = 45, .external_lex_state = 6}, - [4389] = {.lex_state = 45, .external_lex_state = 6}, - [4390] = {.lex_state = 45, .external_lex_state = 5}, - [4391] = {.lex_state = 45, .external_lex_state = 6}, - [4392] = {.lex_state = 45, .external_lex_state = 2}, - [4393] = {.lex_state = 45, .external_lex_state = 2}, - [4394] = {.lex_state = 45, .external_lex_state = 6}, - [4395] = {.lex_state = 45, .external_lex_state = 5}, - [4396] = {.lex_state = 349, .external_lex_state = 5}, - [4397] = {.lex_state = 55, .external_lex_state = 2}, - [4398] = {.lex_state = 45, .external_lex_state = 5}, - [4399] = {.lex_state = 45, .external_lex_state = 6}, - [4400] = {.lex_state = 46, .external_lex_state = 2}, - [4401] = {.lex_state = 45, .external_lex_state = 5}, + [4381] = {.lex_state = 349, .external_lex_state = 7}, + [4382] = {.lex_state = 349, .external_lex_state = 5}, + [4383] = {.lex_state = 349, .external_lex_state = 5}, + [4384] = {.lex_state = 349, .external_lex_state = 2}, + [4385] = {.lex_state = 349, .external_lex_state = 5}, + [4386] = {.lex_state = 349, .external_lex_state = 5}, + [4387] = {.lex_state = 349, .external_lex_state = 5}, + [4388] = {.lex_state = 74, .external_lex_state = 2}, + [4389] = {.lex_state = 349, .external_lex_state = 5}, + [4390] = {.lex_state = 349, .external_lex_state = 5}, + [4391] = {.lex_state = 349, .external_lex_state = 5}, + [4392] = {.lex_state = 47, .external_lex_state = 2}, + [4393] = {.lex_state = 349, .external_lex_state = 5}, + [4394] = {.lex_state = 349, .external_lex_state = 5}, + [4395] = {.lex_state = 349, .external_lex_state = 2}, + [4396] = {.lex_state = 349, .external_lex_state = 2}, + [4397] = {.lex_state = 349, .external_lex_state = 5}, + [4398] = {.lex_state = 349, .external_lex_state = 2}, + [4399] = {.lex_state = 46, .external_lex_state = 5}, + [4400] = {.lex_state = 349, .external_lex_state = 5}, + [4401] = {.lex_state = 349, .external_lex_state = 5}, [4402] = {.lex_state = 349, .external_lex_state = 5}, - [4403] = {.lex_state = 45, .external_lex_state = 5}, - [4404] = {.lex_state = 55, .external_lex_state = 2}, - [4405] = {.lex_state = 45, .external_lex_state = 2}, - [4406] = {.lex_state = 45, .external_lex_state = 5}, + [4403] = {.lex_state = 349, .external_lex_state = 5}, + [4404] = {.lex_state = 349, .external_lex_state = 5}, + [4405] = {.lex_state = 47, .external_lex_state = 2}, + [4406] = {.lex_state = 349, .external_lex_state = 5}, [4407] = {.lex_state = 45, .external_lex_state = 2}, - [4408] = {.lex_state = 45, .external_lex_state = 2}, - [4409] = {.lex_state = 45, .external_lex_state = 2}, - [4410] = {.lex_state = 45, .external_lex_state = 2}, - [4411] = {.lex_state = 46, .external_lex_state = 2}, - [4412] = {.lex_state = 45, .external_lex_state = 2}, - [4413] = {.lex_state = 45, .external_lex_state = 6}, - [4414] = {.lex_state = 45, .external_lex_state = 5}, - [4415] = {.lex_state = 45, .external_lex_state = 5}, - [4416] = {.lex_state = 45, .external_lex_state = 5}, - [4417] = {.lex_state = 45, .external_lex_state = 2}, - [4418] = {.lex_state = 45, .external_lex_state = 5}, - [4419] = {.lex_state = 45, .external_lex_state = 6}, - [4420] = {.lex_state = 45, .external_lex_state = 6}, - [4421] = {.lex_state = 45, .external_lex_state = 6}, - [4422] = {.lex_state = 45, .external_lex_state = 2}, - [4423] = {.lex_state = 45, .external_lex_state = 5}, - [4424] = {.lex_state = 45, .external_lex_state = 2}, - [4425] = {.lex_state = 45, .external_lex_state = 5}, - [4426] = {.lex_state = 45, .external_lex_state = 5}, - [4427] = {.lex_state = 45, .external_lex_state = 6}, - [4428] = {.lex_state = 45, .external_lex_state = 6}, - [4429] = {.lex_state = 45, .external_lex_state = 5}, - [4430] = {.lex_state = 45, .external_lex_state = 5}, - [4431] = {.lex_state = 45, .external_lex_state = 5}, - [4432] = {.lex_state = 45, .external_lex_state = 2}, - [4433] = {.lex_state = 45, .external_lex_state = 6}, - [4434] = {.lex_state = 45, .external_lex_state = 5}, - [4435] = {.lex_state = 45, .external_lex_state = 6}, - [4436] = {.lex_state = 45, .external_lex_state = 6}, - [4437] = {.lex_state = 45, .external_lex_state = 2}, - [4438] = {.lex_state = 45, .external_lex_state = 5}, - [4439] = {.lex_state = 45, .external_lex_state = 5}, - [4440] = {.lex_state = 45, .external_lex_state = 2}, - [4441] = {.lex_state = 46, .external_lex_state = 2}, - [4442] = {.lex_state = 45, .external_lex_state = 5}, - [4443] = {.lex_state = 45, .external_lex_state = 5}, - [4444] = {.lex_state = 45, .external_lex_state = 2}, - [4445] = {.lex_state = 45, .external_lex_state = 2}, - [4446] = {.lex_state = 45, .external_lex_state = 5}, - [4447] = {.lex_state = 45, .external_lex_state = 6}, - [4448] = {.lex_state = 45, .external_lex_state = 5}, - [4449] = {.lex_state = 45, .external_lex_state = 5}, - [4450] = {.lex_state = 45, .external_lex_state = 6}, - [4451] = {.lex_state = 46, .external_lex_state = 2}, - [4452] = {.lex_state = 45, .external_lex_state = 6}, - [4453] = {.lex_state = 46, .external_lex_state = 2}, - [4454] = {.lex_state = 45, .external_lex_state = 6}, - [4455] = {.lex_state = 45, .external_lex_state = 6}, - [4456] = {.lex_state = 45, .external_lex_state = 6}, - [4457] = {.lex_state = 45, .external_lex_state = 6}, - [4458] = {.lex_state = 45, .external_lex_state = 2}, - [4459] = {.lex_state = 45, .external_lex_state = 2}, - [4460] = {.lex_state = 45, .external_lex_state = 2}, + [4408] = {.lex_state = 349, .external_lex_state = 5}, + [4409] = {.lex_state = 349, .external_lex_state = 5}, + [4410] = {.lex_state = 349, .external_lex_state = 5}, + [4411] = {.lex_state = 349, .external_lex_state = 2}, + [4412] = {.lex_state = 349, .external_lex_state = 5}, + [4413] = {.lex_state = 349, .external_lex_state = 5}, + [4414] = {.lex_state = 349, .external_lex_state = 5}, + [4415] = {.lex_state = 349, .external_lex_state = 5}, + [4416] = {.lex_state = 45, .external_lex_state = 2}, + [4417] = {.lex_state = 349, .external_lex_state = 5}, + [4418] = {.lex_state = 349, .external_lex_state = 2}, + [4419] = {.lex_state = 349, .external_lex_state = 5}, + [4420] = {.lex_state = 349, .external_lex_state = 5}, + [4421] = {.lex_state = 349, .external_lex_state = 2}, + [4422] = {.lex_state = 349, .external_lex_state = 5}, + [4423] = {.lex_state = 349, .external_lex_state = 2}, + [4424] = {.lex_state = 349, .external_lex_state = 5}, + [4425] = {.lex_state = 47, .external_lex_state = 2}, + [4426] = {.lex_state = 47, .external_lex_state = 2}, + [4427] = {.lex_state = 349, .external_lex_state = 2}, + [4428] = {.lex_state = 47, .external_lex_state = 2}, + [4429] = {.lex_state = 47, .external_lex_state = 2}, + [4430] = {.lex_state = 47, .external_lex_state = 2}, + [4431] = {.lex_state = 45, .external_lex_state = 2}, + [4432] = {.lex_state = 349, .external_lex_state = 5}, + [4433] = {.lex_state = 349, .external_lex_state = 2}, + [4434] = {.lex_state = 349, .external_lex_state = 5}, + [4435] = {.lex_state = 349, .external_lex_state = 2}, + [4436] = {.lex_state = 349, .external_lex_state = 5}, + [4437] = {.lex_state = 349, .external_lex_state = 2}, + [4438] = {.lex_state = 349, .external_lex_state = 2}, + [4439] = {.lex_state = 47, .external_lex_state = 2}, + [4440] = {.lex_state = 349, .external_lex_state = 2}, + [4441] = {.lex_state = 45, .external_lex_state = 2}, + [4442] = {.lex_state = 45, .external_lex_state = 2}, + [4443] = {.lex_state = 349, .external_lex_state = 5}, + [4444] = {.lex_state = 349, .external_lex_state = 2}, + [4445] = {.lex_state = 349, .external_lex_state = 2}, + [4446] = {.lex_state = 349, .external_lex_state = 2}, + [4447] = {.lex_state = 45, .external_lex_state = 2}, + [4448] = {.lex_state = 349, .external_lex_state = 2}, + [4449] = {.lex_state = 349, .external_lex_state = 5}, + [4450] = {.lex_state = 47, .external_lex_state = 2}, + [4451] = {.lex_state = 349, .external_lex_state = 5}, + [4452] = {.lex_state = 349, .external_lex_state = 5}, + [4453] = {.lex_state = 349, .external_lex_state = 5}, + [4454] = {.lex_state = 349, .external_lex_state = 2}, + [4455] = {.lex_state = 74, .external_lex_state = 2}, + [4456] = {.lex_state = 47, .external_lex_state = 2}, + [4457] = {.lex_state = 47, .external_lex_state = 2}, + [4458] = {.lex_state = 349, .external_lex_state = 5}, + [4459] = {.lex_state = 349, .external_lex_state = 5}, + [4460] = {.lex_state = 47, .external_lex_state = 2}, [4461] = {.lex_state = 46, .external_lex_state = 5}, - [4462] = {.lex_state = 50, .external_lex_state = 2}, - [4463] = {.lex_state = 45, .external_lex_state = 6}, - [4464] = {.lex_state = 45, .external_lex_state = 2}, - [4465] = {.lex_state = 45, .external_lex_state = 5}, - [4466] = {.lex_state = 45, .external_lex_state = 6}, - [4467] = {.lex_state = 46, .external_lex_state = 5}, - [4468] = {.lex_state = 50, .external_lex_state = 2}, - [4469] = {.lex_state = 45, .external_lex_state = 6}, - [4470] = {.lex_state = 349, .external_lex_state = 5}, - [4471] = {.lex_state = 45, .external_lex_state = 6}, - [4472] = {.lex_state = 45, .external_lex_state = 6}, - [4473] = {.lex_state = 45, .external_lex_state = 6}, - [4474] = {.lex_state = 45, .external_lex_state = 5}, - [4475] = {.lex_state = 45, .external_lex_state = 2}, - [4476] = {.lex_state = 46, .external_lex_state = 2}, - [4477] = {.lex_state = 45, .external_lex_state = 6}, - [4478] = {.lex_state = 45, .external_lex_state = 2}, - [4479] = {.lex_state = 45, .external_lex_state = 6}, - [4480] = {.lex_state = 45, .external_lex_state = 5}, - [4481] = {.lex_state = 45, .external_lex_state = 6}, - [4482] = {.lex_state = 45, .external_lex_state = 6}, - [4483] = {.lex_state = 45, .external_lex_state = 6}, - [4484] = {.lex_state = 45, .external_lex_state = 6}, - [4485] = {.lex_state = 45, .external_lex_state = 5}, - [4486] = {.lex_state = 45, .external_lex_state = 5}, - [4487] = {.lex_state = 45, .external_lex_state = 6}, - [4488] = {.lex_state = 45, .external_lex_state = 6}, - [4489] = {.lex_state = 45, .external_lex_state = 6}, - [4490] = {.lex_state = 45, .external_lex_state = 6}, - [4491] = {.lex_state = 45, .external_lex_state = 6}, - [4492] = {.lex_state = 62, .external_lex_state = 2}, - [4493] = {.lex_state = 62, .external_lex_state = 2}, - [4494] = {.lex_state = 50, .external_lex_state = 2}, - [4495] = {.lex_state = 349, .external_lex_state = 7}, - [4496] = {.lex_state = 71, .external_lex_state = 2}, + [4462] = {.lex_state = 349, .external_lex_state = 5}, + [4463] = {.lex_state = 349, .external_lex_state = 5}, + [4464] = {.lex_state = 349, .external_lex_state = 5}, + [4465] = {.lex_state = 349, .external_lex_state = 2}, + [4466] = {.lex_state = 349, .external_lex_state = 5}, + [4467] = {.lex_state = 349, .external_lex_state = 5}, + [4468] = {.lex_state = 45, .external_lex_state = 2}, + [4469] = {.lex_state = 47, .external_lex_state = 2}, + [4470] = {.lex_state = 46, .external_lex_state = 5}, + [4471] = {.lex_state = 349, .external_lex_state = 2}, + [4472] = {.lex_state = 45, .external_lex_state = 2}, + [4473] = {.lex_state = 349, .external_lex_state = 5}, + [4474] = {.lex_state = 349, .external_lex_state = 5}, + [4475] = {.lex_state = 349, .external_lex_state = 5}, + [4476] = {.lex_state = 349, .external_lex_state = 2}, + [4477] = {.lex_state = 349, .external_lex_state = 5}, + [4478] = {.lex_state = 47, .external_lex_state = 2}, + [4479] = {.lex_state = 349, .external_lex_state = 2}, + [4480] = {.lex_state = 47, .external_lex_state = 2}, + [4481] = {.lex_state = 349, .external_lex_state = 5}, + [4482] = {.lex_state = 47, .external_lex_state = 2}, + [4483] = {.lex_state = 349, .external_lex_state = 5}, + [4484] = {.lex_state = 349, .external_lex_state = 5}, + [4485] = {.lex_state = 349, .external_lex_state = 5}, + [4486] = {.lex_state = 349, .external_lex_state = 5}, + [4487] = {.lex_state = 47, .external_lex_state = 2}, + [4488] = {.lex_state = 62, .external_lex_state = 2}, + [4489] = {.lex_state = 349, .external_lex_state = 5}, + [4490] = {.lex_state = 349, .external_lex_state = 2}, + [4491] = {.lex_state = 349, .external_lex_state = 2}, + [4492] = {.lex_state = 349, .external_lex_state = 5}, + [4493] = {.lex_state = 46, .external_lex_state = 5}, + [4494] = {.lex_state = 349, .external_lex_state = 5}, + [4495] = {.lex_state = 349, .external_lex_state = 5}, + [4496] = {.lex_state = 349, .external_lex_state = 5}, [4497] = {.lex_state = 349, .external_lex_state = 5}, - [4498] = {.lex_state = 45, .external_lex_state = 6}, - [4499] = {.lex_state = 45, .external_lex_state = 2}, - [4500] = {.lex_state = 349, .external_lex_state = 6}, - [4501] = {.lex_state = 62, .external_lex_state = 2}, - [4502] = {.lex_state = 349, .external_lex_state = 7}, - [4503] = {.lex_state = 45, .external_lex_state = 2}, + [4498] = {.lex_state = 349, .external_lex_state = 5}, + [4499] = {.lex_state = 349, .external_lex_state = 2}, + [4500] = {.lex_state = 349, .external_lex_state = 2}, + [4501] = {.lex_state = 349, .external_lex_state = 5}, + [4502] = {.lex_state = 349, .external_lex_state = 2}, + [4503] = {.lex_state = 349, .external_lex_state = 5}, [4504] = {.lex_state = 349, .external_lex_state = 5}, - [4505] = {.lex_state = 349, .external_lex_state = 7}, - [4506] = {.lex_state = 349, .external_lex_state = 5}, - [4507] = {.lex_state = 349, .external_lex_state = 5}, - [4508] = {.lex_state = 349, .external_lex_state = 5}, - [4509] = {.lex_state = 62, .external_lex_state = 2}, - [4510] = {.lex_state = 71, .external_lex_state = 2}, - [4511] = {.lex_state = 45, .external_lex_state = 5}, - [4512] = {.lex_state = 62, .external_lex_state = 2}, - [4513] = {.lex_state = 71, .external_lex_state = 2}, - [4514] = {.lex_state = 349, .external_lex_state = 7}, - [4515] = {.lex_state = 62, .external_lex_state = 2}, - [4516] = {.lex_state = 62, .external_lex_state = 2}, - [4517] = {.lex_state = 45, .external_lex_state = 5}, - [4518] = {.lex_state = 45, .external_lex_state = 5}, - [4519] = {.lex_state = 45, .external_lex_state = 5}, - [4520] = {.lex_state = 62, .external_lex_state = 2}, - [4521] = {.lex_state = 349, .external_lex_state = 7}, - [4522] = {.lex_state = 349, .external_lex_state = 7}, - [4523] = {.lex_state = 71, .external_lex_state = 2}, - [4524] = {.lex_state = 349, .external_lex_state = 7}, - [4525] = {.lex_state = 71, .external_lex_state = 2}, - [4526] = {.lex_state = 71, .external_lex_state = 2}, - [4527] = {.lex_state = 62, .external_lex_state = 2}, - [4528] = {.lex_state = 349, .external_lex_state = 7}, + [4505] = {.lex_state = 349, .external_lex_state = 5}, + [4506] = {.lex_state = 45, .external_lex_state = 2}, + [4507] = {.lex_state = 62, .external_lex_state = 2}, + [4508] = {.lex_state = 47, .external_lex_state = 2}, + [4509] = {.lex_state = 47, .external_lex_state = 2}, + [4510] = {.lex_state = 47, .external_lex_state = 2}, + [4511] = {.lex_state = 45, .external_lex_state = 2}, + [4512] = {.lex_state = 349, .external_lex_state = 2}, + [4513] = {.lex_state = 74, .external_lex_state = 2}, + [4514] = {.lex_state = 349, .external_lex_state = 5}, + [4515] = {.lex_state = 349, .external_lex_state = 5}, + [4516] = {.lex_state = 349, .external_lex_state = 2}, + [4517] = {.lex_state = 349, .external_lex_state = 2}, + [4518] = {.lex_state = 47, .external_lex_state = 2}, + [4519] = {.lex_state = 349, .external_lex_state = 5}, + [4520] = {.lex_state = 349, .external_lex_state = 2}, + [4521] = {.lex_state = 349, .external_lex_state = 2}, + [4522] = {.lex_state = 46, .external_lex_state = 5}, + [4523] = {.lex_state = 46, .external_lex_state = 5}, + [4524] = {.lex_state = 349, .external_lex_state = 5}, + [4525] = {.lex_state = 47, .external_lex_state = 2}, + [4526] = {.lex_state = 349, .external_lex_state = 2}, + [4527] = {.lex_state = 349, .external_lex_state = 5}, + [4528] = {.lex_state = 62, .external_lex_state = 2}, [4529] = {.lex_state = 349, .external_lex_state = 5}, - [4530] = {.lex_state = 349, .external_lex_state = 2}, + [4530] = {.lex_state = 50, .external_lex_state = 2}, [4531] = {.lex_state = 349, .external_lex_state = 5}, - [4532] = {.lex_state = 46, .external_lex_state = 5}, + [4532] = {.lex_state = 349, .external_lex_state = 5}, [4533] = {.lex_state = 349, .external_lex_state = 5}, - [4534] = {.lex_state = 47, .external_lex_state = 2}, + [4534] = {.lex_state = 62, .external_lex_state = 2}, [4535] = {.lex_state = 47, .external_lex_state = 2}, - [4536] = {.lex_state = 349, .external_lex_state = 5}, - [4537] = {.lex_state = 46, .external_lex_state = 5}, + [4536] = {.lex_state = 74, .external_lex_state = 2}, + [4537] = {.lex_state = 349, .external_lex_state = 5}, [4538] = {.lex_state = 47, .external_lex_state = 2}, - [4539] = {.lex_state = 349, .external_lex_state = 2}, - [4540] = {.lex_state = 47, .external_lex_state = 2}, - [4541] = {.lex_state = 349, .external_lex_state = 5}, + [4539] = {.lex_state = 349, .external_lex_state = 5}, + [4540] = {.lex_state = 349, .external_lex_state = 5}, + [4541] = {.lex_state = 47, .external_lex_state = 2}, [4542] = {.lex_state = 349, .external_lex_state = 5}, - [4543] = {.lex_state = 47, .external_lex_state = 2}, + [4543] = {.lex_state = 349, .external_lex_state = 5}, [4544] = {.lex_state = 349, .external_lex_state = 5}, - [4545] = {.lex_state = 349, .external_lex_state = 5}, - [4546] = {.lex_state = 349, .external_lex_state = 5}, + [4545] = {.lex_state = 47, .external_lex_state = 2}, + [4546] = {.lex_state = 349, .external_lex_state = 2}, [4547] = {.lex_state = 349, .external_lex_state = 5}, - [4548] = {.lex_state = 47, .external_lex_state = 2}, + [4548] = {.lex_state = 349, .external_lex_state = 2}, [4549] = {.lex_state = 349, .external_lex_state = 5}, [4550] = {.lex_state = 47, .external_lex_state = 2}, - [4551] = {.lex_state = 45, .external_lex_state = 2}, - [4552] = {.lex_state = 45, .external_lex_state = 2}, - [4553] = {.lex_state = 349, .external_lex_state = 5}, + [4551] = {.lex_state = 47, .external_lex_state = 2}, + [4552] = {.lex_state = 349, .external_lex_state = 5}, + [4553] = {.lex_state = 62, .external_lex_state = 2}, [4554] = {.lex_state = 349, .external_lex_state = 5}, [4555] = {.lex_state = 349, .external_lex_state = 5}, - [4556] = {.lex_state = 74, .external_lex_state = 2}, - [4557] = {.lex_state = 47, .external_lex_state = 2}, + [4556] = {.lex_state = 349, .external_lex_state = 5}, + [4557] = {.lex_state = 349, .external_lex_state = 5}, [4558] = {.lex_state = 349, .external_lex_state = 5}, [4559] = {.lex_state = 349, .external_lex_state = 5}, - [4560] = {.lex_state = 349, .external_lex_state = 5}, + [4560] = {.lex_state = 349, .external_lex_state = 2}, [4561] = {.lex_state = 349, .external_lex_state = 5}, - [4562] = {.lex_state = 349, .external_lex_state = 5}, + [4562] = {.lex_state = 349, .external_lex_state = 2}, [4563] = {.lex_state = 349, .external_lex_state = 5}, [4564] = {.lex_state = 349, .external_lex_state = 5}, - [4565] = {.lex_state = 47, .external_lex_state = 2}, - [4566] = {.lex_state = 349, .external_lex_state = 5}, - [4567] = {.lex_state = 349, .external_lex_state = 2}, + [4565] = {.lex_state = 349, .external_lex_state = 5}, + [4566] = {.lex_state = 47, .external_lex_state = 2}, + [4567] = {.lex_state = 349, .external_lex_state = 5}, [4568] = {.lex_state = 349, .external_lex_state = 5}, - [4569] = {.lex_state = 349, .external_lex_state = 5}, + [4569] = {.lex_state = 46, .external_lex_state = 5}, [4570] = {.lex_state = 349, .external_lex_state = 2}, [4571] = {.lex_state = 349, .external_lex_state = 5}, - [4572] = {.lex_state = 74, .external_lex_state = 2}, + [4572] = {.lex_state = 349, .external_lex_state = 5}, [4573] = {.lex_state = 349, .external_lex_state = 5}, [4574] = {.lex_state = 349, .external_lex_state = 5}, - [4575] = {.lex_state = 349, .external_lex_state = 5}, - [4576] = {.lex_state = 47, .external_lex_state = 2}, + [4575] = {.lex_state = 349, .external_lex_state = 2}, + [4576] = {.lex_state = 349, .external_lex_state = 5}, [4577] = {.lex_state = 349, .external_lex_state = 5}, - [4578] = {.lex_state = 62, .external_lex_state = 2}, - [4579] = {.lex_state = 349, .external_lex_state = 2}, + [4578] = {.lex_state = 349, .external_lex_state = 5}, + [4579] = {.lex_state = 349, .external_lex_state = 5}, [4580] = {.lex_state = 349, .external_lex_state = 5}, [4581] = {.lex_state = 349, .external_lex_state = 5}, [4582] = {.lex_state = 47, .external_lex_state = 2}, [4583] = {.lex_state = 349, .external_lex_state = 5}, [4584] = {.lex_state = 349, .external_lex_state = 5}, - [4585] = {.lex_state = 349, .external_lex_state = 5}, - [4586] = {.lex_state = 47, .external_lex_state = 2}, + [4585] = {.lex_state = 47, .external_lex_state = 2}, + [4586] = {.lex_state = 349, .external_lex_state = 5}, [4587] = {.lex_state = 349, .external_lex_state = 5}, - [4588] = {.lex_state = 45, .external_lex_state = 2}, - [4589] = {.lex_state = 45, .external_lex_state = 2}, - [4590] = {.lex_state = 47, .external_lex_state = 2}, - [4591] = {.lex_state = 47, .external_lex_state = 2}, - [4592] = {.lex_state = 62, .external_lex_state = 2}, + [4588] = {.lex_state = 349, .external_lex_state = 2}, + [4589] = {.lex_state = 349, .external_lex_state = 5}, + [4590] = {.lex_state = 349, .external_lex_state = 5}, + [4591] = {.lex_state = 46, .external_lex_state = 5}, + [4592] = {.lex_state = 349, .external_lex_state = 5}, [4593] = {.lex_state = 349, .external_lex_state = 5}, - [4594] = {.lex_state = 47, .external_lex_state = 2}, + [4594] = {.lex_state = 349, .external_lex_state = 5}, [4595] = {.lex_state = 47, .external_lex_state = 2}, - [4596] = {.lex_state = 349, .external_lex_state = 5}, - [4597] = {.lex_state = 349, .external_lex_state = 2}, - [4598] = {.lex_state = 47, .external_lex_state = 2}, + [4596] = {.lex_state = 349, .external_lex_state = 2}, + [4597] = {.lex_state = 349, .external_lex_state = 5}, + [4598] = {.lex_state = 62, .external_lex_state = 2}, [4599] = {.lex_state = 349, .external_lex_state = 5}, - [4600] = {.lex_state = 74, .external_lex_state = 2}, + [4600] = {.lex_state = 349, .external_lex_state = 5}, [4601] = {.lex_state = 349, .external_lex_state = 5}, [4602] = {.lex_state = 349, .external_lex_state = 5}, - [4603] = {.lex_state = 349, .external_lex_state = 5}, - [4604] = {.lex_state = 56, .external_lex_state = 2}, - [4605] = {.lex_state = 349, .external_lex_state = 2}, - [4606] = {.lex_state = 349, .external_lex_state = 2}, + [4603] = {.lex_state = 47, .external_lex_state = 2}, + [4604] = {.lex_state = 45, .external_lex_state = 2}, + [4605] = {.lex_state = 349, .external_lex_state = 5}, + [4606] = {.lex_state = 47, .external_lex_state = 2}, [4607] = {.lex_state = 349, .external_lex_state = 5}, [4608] = {.lex_state = 349, .external_lex_state = 5}, - [4609] = {.lex_state = 349, .external_lex_state = 5}, - [4610] = {.lex_state = 349, .external_lex_state = 6}, - [4611] = {.lex_state = 349, .external_lex_state = 2}, - [4612] = {.lex_state = 47, .external_lex_state = 2}, + [4609] = {.lex_state = 349, .external_lex_state = 2}, + [4610] = {.lex_state = 349, .external_lex_state = 5}, + [4611] = {.lex_state = 349, .external_lex_state = 5}, + [4612] = {.lex_state = 349, .external_lex_state = 5}, [4613] = {.lex_state = 349, .external_lex_state = 5}, - [4614] = {.lex_state = 349, .external_lex_state = 2}, + [4614] = {.lex_state = 45, .external_lex_state = 2}, [4615] = {.lex_state = 47, .external_lex_state = 2}, - [4616] = {.lex_state = 47, .external_lex_state = 2}, + [4616] = {.lex_state = 349, .external_lex_state = 5}, [4617] = {.lex_state = 349, .external_lex_state = 5}, - [4618] = {.lex_state = 349, .external_lex_state = 5}, - [4619] = {.lex_state = 349, .external_lex_state = 2}, - [4620] = {.lex_state = 349, .external_lex_state = 2}, - [4621] = {.lex_state = 47, .external_lex_state = 2}, - [4622] = {.lex_state = 47, .external_lex_state = 2}, - [4623] = {.lex_state = 45, .external_lex_state = 2}, - [4624] = {.lex_state = 349, .external_lex_state = 5}, - [4625] = {.lex_state = 47, .external_lex_state = 2}, + [4618] = {.lex_state = 47, .external_lex_state = 2}, + [4619] = {.lex_state = 349, .external_lex_state = 5}, + [4620] = {.lex_state = 349, .external_lex_state = 5}, + [4621] = {.lex_state = 349, .external_lex_state = 5}, + [4622] = {.lex_state = 62, .external_lex_state = 2}, + [4623] = {.lex_state = 47, .external_lex_state = 2}, + [4624] = {.lex_state = 47, .external_lex_state = 2}, + [4625] = {.lex_state = 349, .external_lex_state = 2}, [4626] = {.lex_state = 349, .external_lex_state = 5}, - [4627] = {.lex_state = 349, .external_lex_state = 2}, + [4627] = {.lex_state = 349, .external_lex_state = 5}, [4628] = {.lex_state = 349, .external_lex_state = 5}, - [4629] = {.lex_state = 349, .external_lex_state = 5}, - [4630] = {.lex_state = 349, .external_lex_state = 5}, + [4629] = {.lex_state = 349, .external_lex_state = 6}, + [4630] = {.lex_state = 349, .external_lex_state = 2}, [4631] = {.lex_state = 349, .external_lex_state = 5}, [4632] = {.lex_state = 349, .external_lex_state = 5}, [4633] = {.lex_state = 349, .external_lex_state = 5}, - [4634] = {.lex_state = 349, .external_lex_state = 5}, + [4634] = {.lex_state = 47, .external_lex_state = 2}, [4635] = {.lex_state = 349, .external_lex_state = 5}, - [4636] = {.lex_state = 349, .external_lex_state = 5}, - [4637] = {.lex_state = 349, .external_lex_state = 5}, - [4638] = {.lex_state = 62, .external_lex_state = 2}, - [4639] = {.lex_state = 349, .external_lex_state = 5}, - [4640] = {.lex_state = 349, .external_lex_state = 5}, + [4636] = {.lex_state = 349, .external_lex_state = 6}, + [4637] = {.lex_state = 349, .external_lex_state = 2}, + [4638] = {.lex_state = 349, .external_lex_state = 2}, + [4639] = {.lex_state = 349, .external_lex_state = 6}, + [4640] = {.lex_state = 349, .external_lex_state = 6}, [4641] = {.lex_state = 349, .external_lex_state = 5}, - [4642] = {.lex_state = 349, .external_lex_state = 5}, + [4642] = {.lex_state = 349, .external_lex_state = 6}, [4643] = {.lex_state = 349, .external_lex_state = 5}, - [4644] = {.lex_state = 47, .external_lex_state = 2}, - [4645] = {.lex_state = 45, .external_lex_state = 2}, - [4646] = {.lex_state = 349, .external_lex_state = 2}, - [4647] = {.lex_state = 349, .external_lex_state = 5}, + [4644] = {.lex_state = 349, .external_lex_state = 6}, + [4645] = {.lex_state = 349, .external_lex_state = 2}, + [4646] = {.lex_state = 349, .external_lex_state = 5}, + [4647] = {.lex_state = 46, .external_lex_state = 5}, [4648] = {.lex_state = 349, .external_lex_state = 5}, [4649] = {.lex_state = 349, .external_lex_state = 5}, - [4650] = {.lex_state = 349, .external_lex_state = 2}, - [4651] = {.lex_state = 349, .external_lex_state = 5}, - [4652] = {.lex_state = 349, .external_lex_state = 5}, - [4653] = {.lex_state = 349, .external_lex_state = 6}, - [4654] = {.lex_state = 62, .external_lex_state = 2}, - [4655] = {.lex_state = 349, .external_lex_state = 2}, - [4656] = {.lex_state = 349, .external_lex_state = 2}, - [4657] = {.lex_state = 45, .external_lex_state = 2}, - [4658] = {.lex_state = 349, .external_lex_state = 6}, + [4650] = {.lex_state = 56, .external_lex_state = 2}, + [4651] = {.lex_state = 74, .external_lex_state = 2}, + [4652] = {.lex_state = 349, .external_lex_state = 2}, + [4653] = {.lex_state = 349, .external_lex_state = 2}, + [4654] = {.lex_state = 349, .external_lex_state = 5}, + [4655] = {.lex_state = 349, .external_lex_state = 5}, + [4656] = {.lex_state = 349, .external_lex_state = 5}, + [4657] = {.lex_state = 47, .external_lex_state = 2}, + [4658] = {.lex_state = 349, .external_lex_state = 2}, [4659] = {.lex_state = 349, .external_lex_state = 5}, - [4660] = {.lex_state = 349, .external_lex_state = 5}, - [4661] = {.lex_state = 349, .external_lex_state = 6}, - [4662] = {.lex_state = 349, .external_lex_state = 5}, - [4663] = {.lex_state = 349, .external_lex_state = 5}, - [4664] = {.lex_state = 349, .external_lex_state = 2}, + [4660] = {.lex_state = 45, .external_lex_state = 2}, + [4661] = {.lex_state = 45, .external_lex_state = 2}, + [4662] = {.lex_state = 349, .external_lex_state = 2}, + [4663] = {.lex_state = 349, .external_lex_state = 6}, + [4664] = {.lex_state = 45, .external_lex_state = 2}, [4665] = {.lex_state = 349, .external_lex_state = 5}, - [4666] = {.lex_state = 47, .external_lex_state = 2}, - [4667] = {.lex_state = 349, .external_lex_state = 5}, - [4668] = {.lex_state = 349, .external_lex_state = 5}, - [4669] = {.lex_state = 46, .external_lex_state = 5}, + [4666] = {.lex_state = 349, .external_lex_state = 2}, + [4667] = {.lex_state = 45, .external_lex_state = 2}, + [4668] = {.lex_state = 349, .external_lex_state = 2}, + [4669] = {.lex_state = 45, .external_lex_state = 2}, [4670] = {.lex_state = 349, .external_lex_state = 5}, - [4671] = {.lex_state = 50, .external_lex_state = 2}, - [4672] = {.lex_state = 349, .external_lex_state = 5}, + [4671] = {.lex_state = 349, .external_lex_state = 6}, + [4672] = {.lex_state = 45, .external_lex_state = 2}, [4673] = {.lex_state = 349, .external_lex_state = 5}, - [4674] = {.lex_state = 349, .external_lex_state = 2}, + [4674] = {.lex_state = 349, .external_lex_state = 5}, [4675] = {.lex_state = 349, .external_lex_state = 2}, - [4676] = {.lex_state = 46, .external_lex_state = 5}, - [4677] = {.lex_state = 47, .external_lex_state = 2}, - [4678] = {.lex_state = 46, .external_lex_state = 5}, - [4679] = {.lex_state = 47, .external_lex_state = 2}, - [4680] = {.lex_state = 47, .external_lex_state = 2}, - [4681] = {.lex_state = 47, .external_lex_state = 2}, - [4682] = {.lex_state = 349, .external_lex_state = 5}, - [4683] = {.lex_state = 349, .external_lex_state = 6}, - [4684] = {.lex_state = 349, .external_lex_state = 5}, - [4685] = {.lex_state = 349, .external_lex_state = 5}, - [4686] = {.lex_state = 349, .external_lex_state = 5}, - [4687] = {.lex_state = 349, .external_lex_state = 2}, - [4688] = {.lex_state = 47, .external_lex_state = 2}, - [4689] = {.lex_state = 349, .external_lex_state = 5}, - [4690] = {.lex_state = 349, .external_lex_state = 6}, - [4691] = {.lex_state = 74, .external_lex_state = 2}, - [4692] = {.lex_state = 349, .external_lex_state = 5}, + [4676] = {.lex_state = 349, .external_lex_state = 7}, + [4677] = {.lex_state = 349, .external_lex_state = 6}, + [4678] = {.lex_state = 47, .external_lex_state = 2}, + [4679] = {.lex_state = 349, .external_lex_state = 6}, + [4680] = {.lex_state = 45, .external_lex_state = 2}, + [4681] = {.lex_state = 45, .external_lex_state = 2}, + [4682] = {.lex_state = 45, .external_lex_state = 2}, + [4683] = {.lex_state = 47, .external_lex_state = 2}, + [4684] = {.lex_state = 45, .external_lex_state = 2}, + [4685] = {.lex_state = 349, .external_lex_state = 6}, + [4686] = {.lex_state = 47, .external_lex_state = 2}, + [4687] = {.lex_state = 349, .external_lex_state = 5}, + [4688] = {.lex_state = 349, .external_lex_state = 6}, + [4689] = {.lex_state = 45, .external_lex_state = 2}, + [4690] = {.lex_state = 45, .external_lex_state = 2}, + [4691] = {.lex_state = 349, .external_lex_state = 2}, + [4692] = {.lex_state = 62, .external_lex_state = 2}, [4693] = {.lex_state = 45, .external_lex_state = 2}, [4694] = {.lex_state = 349, .external_lex_state = 2}, - [4695] = {.lex_state = 47, .external_lex_state = 2}, - [4696] = {.lex_state = 349, .external_lex_state = 2}, - [4697] = {.lex_state = 349, .external_lex_state = 5}, - [4698] = {.lex_state = 349, .external_lex_state = 2}, - [4699] = {.lex_state = 62, .external_lex_state = 2}, - [4700] = {.lex_state = 46, .external_lex_state = 5}, - [4701] = {.lex_state = 349, .external_lex_state = 5}, - [4702] = {.lex_state = 349, .external_lex_state = 2}, - [4703] = {.lex_state = 349, .external_lex_state = 2}, - [4704] = {.lex_state = 349, .external_lex_state = 2}, - [4705] = {.lex_state = 349, .external_lex_state = 5}, - [4706] = {.lex_state = 349, .external_lex_state = 5}, - [4707] = {.lex_state = 349, .external_lex_state = 5}, - [4708] = {.lex_state = 349, .external_lex_state = 5}, - [4709] = {.lex_state = 349, .external_lex_state = 5}, - [4710] = {.lex_state = 349, .external_lex_state = 5}, - [4711] = {.lex_state = 349, .external_lex_state = 2}, - [4712] = {.lex_state = 349, .external_lex_state = 5}, - [4713] = {.lex_state = 349, .external_lex_state = 5}, - [4714] = {.lex_state = 46, .external_lex_state = 5}, - [4715] = {.lex_state = 349, .external_lex_state = 5}, - [4716] = {.lex_state = 349, .external_lex_state = 5}, - [4717] = {.lex_state = 349, .external_lex_state = 2}, - [4718] = {.lex_state = 349, .external_lex_state = 5}, + [4695] = {.lex_state = 45, .external_lex_state = 2}, + [4696] = {.lex_state = 349, .external_lex_state = 6}, + [4697] = {.lex_state = 45, .external_lex_state = 2}, + [4698] = {.lex_state = 349, .external_lex_state = 5}, + [4699] = {.lex_state = 349, .external_lex_state = 2}, + [4700] = {.lex_state = 45, .external_lex_state = 2}, + [4701] = {.lex_state = 349, .external_lex_state = 6}, + [4702] = {.lex_state = 45, .external_lex_state = 2}, + [4703] = {.lex_state = 47, .external_lex_state = 2}, + [4704] = {.lex_state = 349, .external_lex_state = 6}, + [4705] = {.lex_state = 349, .external_lex_state = 6}, + [4706] = {.lex_state = 47, .external_lex_state = 2}, + [4707] = {.lex_state = 45, .external_lex_state = 2}, + [4708] = {.lex_state = 47, .external_lex_state = 2}, + [4709] = {.lex_state = 349, .external_lex_state = 6}, + [4710] = {.lex_state = 45, .external_lex_state = 2}, + [4711] = {.lex_state = 45, .external_lex_state = 2}, + [4712] = {.lex_state = 45, .external_lex_state = 2}, + [4713] = {.lex_state = 45, .external_lex_state = 2}, + [4714] = {.lex_state = 47, .external_lex_state = 2}, + [4715] = {.lex_state = 349, .external_lex_state = 2}, + [4716] = {.lex_state = 47, .external_lex_state = 2}, + [4717] = {.lex_state = 45, .external_lex_state = 2}, + [4718] = {.lex_state = 45, .external_lex_state = 2}, [4719] = {.lex_state = 45, .external_lex_state = 2}, [4720] = {.lex_state = 349, .external_lex_state = 5}, - [4721] = {.lex_state = 349, .external_lex_state = 5}, - [4722] = {.lex_state = 349, .external_lex_state = 5}, - [4723] = {.lex_state = 349, .external_lex_state = 2}, - [4724] = {.lex_state = 349, .external_lex_state = 5}, - [4725] = {.lex_state = 46, .external_lex_state = 5}, + [4721] = {.lex_state = 45, .external_lex_state = 2}, + [4722] = {.lex_state = 47, .external_lex_state = 2}, + [4723] = {.lex_state = 47, .external_lex_state = 2}, + [4724] = {.lex_state = 47, .external_lex_state = 2}, + [4725] = {.lex_state = 349, .external_lex_state = 6}, [4726] = {.lex_state = 349, .external_lex_state = 5}, - [4727] = {.lex_state = 349, .external_lex_state = 5}, - [4728] = {.lex_state = 349, .external_lex_state = 5}, + [4727] = {.lex_state = 349, .external_lex_state = 2}, + [4728] = {.lex_state = 45, .external_lex_state = 2}, [4729] = {.lex_state = 349, .external_lex_state = 5}, - [4730] = {.lex_state = 349, .external_lex_state = 5}, - [4731] = {.lex_state = 349, .external_lex_state = 5}, - [4732] = {.lex_state = 349, .external_lex_state = 5}, - [4733] = {.lex_state = 349, .external_lex_state = 5}, - [4734] = {.lex_state = 349, .external_lex_state = 5}, - [4735] = {.lex_state = 349, .external_lex_state = 5}, - [4736] = {.lex_state = 349, .external_lex_state = 5}, - [4737] = {.lex_state = 349, .external_lex_state = 5}, - [4738] = {.lex_state = 349, .external_lex_state = 5}, - [4739] = {.lex_state = 349, .external_lex_state = 5}, + [4730] = {.lex_state = 349, .external_lex_state = 6}, + [4731] = {.lex_state = 47, .external_lex_state = 2}, + [4732] = {.lex_state = 62, .external_lex_state = 2}, + [4733] = {.lex_state = 47, .external_lex_state = 2}, + [4734] = {.lex_state = 45, .external_lex_state = 2}, + [4735] = {.lex_state = 349, .external_lex_state = 2}, + [4736] = {.lex_state = 45, .external_lex_state = 2}, + [4737] = {.lex_state = 45, .external_lex_state = 2}, + [4738] = {.lex_state = 349, .external_lex_state = 6}, + [4739] = {.lex_state = 349, .external_lex_state = 2}, [4740] = {.lex_state = 349, .external_lex_state = 5}, - [4741] = {.lex_state = 349, .external_lex_state = 5}, - [4742] = {.lex_state = 46, .external_lex_state = 5}, - [4743] = {.lex_state = 349, .external_lex_state = 5}, - [4744] = {.lex_state = 62, .external_lex_state = 2}, - [4745] = {.lex_state = 47, .external_lex_state = 2}, - [4746] = {.lex_state = 47, .external_lex_state = 2}, - [4747] = {.lex_state = 349, .external_lex_state = 2}, - [4748] = {.lex_state = 349, .external_lex_state = 5}, - [4749] = {.lex_state = 349, .external_lex_state = 2}, - [4750] = {.lex_state = 349, .external_lex_state = 2}, + [4741] = {.lex_state = 45, .external_lex_state = 2}, + [4742] = {.lex_state = 45, .external_lex_state = 2}, + [4743] = {.lex_state = 349, .external_lex_state = 7}, + [4744] = {.lex_state = 349, .external_lex_state = 5}, + [4745] = {.lex_state = 45, .external_lex_state = 2}, + [4746] = {.lex_state = 349, .external_lex_state = 6}, + [4747] = {.lex_state = 349, .external_lex_state = 5}, + [4748] = {.lex_state = 349, .external_lex_state = 7}, + [4749] = {.lex_state = 47, .external_lex_state = 2}, + [4750] = {.lex_state = 349, .external_lex_state = 5}, [4751] = {.lex_state = 349, .external_lex_state = 2}, [4752] = {.lex_state = 47, .external_lex_state = 2}, - [4753] = {.lex_state = 349, .external_lex_state = 2}, - [4754] = {.lex_state = 349, .external_lex_state = 2}, - [4755] = {.lex_state = 349, .external_lex_state = 2}, - [4756] = {.lex_state = 349, .external_lex_state = 5}, + [4753] = {.lex_state = 349, .external_lex_state = 5}, + [4754] = {.lex_state = 45, .external_lex_state = 2}, + [4755] = {.lex_state = 47, .external_lex_state = 2}, + [4756] = {.lex_state = 349, .external_lex_state = 6}, [4757] = {.lex_state = 349, .external_lex_state = 5}, [4758] = {.lex_state = 349, .external_lex_state = 2}, - [4759] = {.lex_state = 349, .external_lex_state = 5}, - [4760] = {.lex_state = 349, .external_lex_state = 5}, - [4761] = {.lex_state = 349, .external_lex_state = 5}, - [4762] = {.lex_state = 349, .external_lex_state = 5}, - [4763] = {.lex_state = 349, .external_lex_state = 5}, - [4764] = {.lex_state = 349, .external_lex_state = 2}, - [4765] = {.lex_state = 349, .external_lex_state = 5}, + [4759] = {.lex_state = 349, .external_lex_state = 6}, + [4760] = {.lex_state = 47, .external_lex_state = 2}, + [4761] = {.lex_state = 45, .external_lex_state = 2}, + [4762] = {.lex_state = 47, .external_lex_state = 2}, + [4763] = {.lex_state = 47, .external_lex_state = 2}, + [4764] = {.lex_state = 47, .external_lex_state = 2}, + [4765] = {.lex_state = 349, .external_lex_state = 6}, [4766] = {.lex_state = 349, .external_lex_state = 2}, - [4767] = {.lex_state = 349, .external_lex_state = 2}, - [4768] = {.lex_state = 349, .external_lex_state = 5}, - [4769] = {.lex_state = 349, .external_lex_state = 5}, - [4770] = {.lex_state = 349, .external_lex_state = 2}, - [4771] = {.lex_state = 349, .external_lex_state = 5}, + [4767] = {.lex_state = 45, .external_lex_state = 2}, + [4768] = {.lex_state = 349, .external_lex_state = 6}, + [4769] = {.lex_state = 45, .external_lex_state = 2}, + [4770] = {.lex_state = 45, .external_lex_state = 2}, + [4771] = {.lex_state = 349, .external_lex_state = 6}, [4772] = {.lex_state = 47, .external_lex_state = 2}, [4773] = {.lex_state = 349, .external_lex_state = 5}, - [4774] = {.lex_state = 349, .external_lex_state = 5}, + [4774] = {.lex_state = 349, .external_lex_state = 2}, [4775] = {.lex_state = 349, .external_lex_state = 5}, - [4776] = {.lex_state = 349, .external_lex_state = 2}, - [4777] = {.lex_state = 47, .external_lex_state = 2}, - [4778] = {.lex_state = 349, .external_lex_state = 5}, - [4779] = {.lex_state = 349, .external_lex_state = 2}, - [4780] = {.lex_state = 45, .external_lex_state = 2}, - [4781] = {.lex_state = 349, .external_lex_state = 5}, - [4782] = {.lex_state = 45, .external_lex_state = 2}, - [4783] = {.lex_state = 349, .external_lex_state = 5}, + [4776] = {.lex_state = 349, .external_lex_state = 5}, + [4777] = {.lex_state = 45, .external_lex_state = 2}, + [4778] = {.lex_state = 47, .external_lex_state = 2}, + [4779] = {.lex_state = 45, .external_lex_state = 2}, + [4780] = {.lex_state = 47, .external_lex_state = 2}, + [4781] = {.lex_state = 45, .external_lex_state = 2}, + [4782] = {.lex_state = 349, .external_lex_state = 5}, + [4783] = {.lex_state = 47, .external_lex_state = 2}, [4784] = {.lex_state = 349, .external_lex_state = 5}, - [4785] = {.lex_state = 74, .external_lex_state = 2}, + [4785] = {.lex_state = 349, .external_lex_state = 5}, [4786] = {.lex_state = 349, .external_lex_state = 5}, [4787] = {.lex_state = 47, .external_lex_state = 2}, - [4788] = {.lex_state = 62, .external_lex_state = 2}, + [4788] = {.lex_state = 349, .external_lex_state = 5}, [4789] = {.lex_state = 349, .external_lex_state = 5}, - [4790] = {.lex_state = 349, .external_lex_state = 2}, - [4791] = {.lex_state = 47, .external_lex_state = 2}, - [4792] = {.lex_state = 349, .external_lex_state = 5}, - [4793] = {.lex_state = 349, .external_lex_state = 2}, - [4794] = {.lex_state = 349, .external_lex_state = 5}, - [4795] = {.lex_state = 349, .external_lex_state = 2}, - [4796] = {.lex_state = 45, .external_lex_state = 2}, - [4797] = {.lex_state = 349, .external_lex_state = 2}, - [4798] = {.lex_state = 47, .external_lex_state = 2}, - [4799] = {.lex_state = 349, .external_lex_state = 5}, - [4800] = {.lex_state = 47, .external_lex_state = 2}, - [4801] = {.lex_state = 349, .external_lex_state = 2}, + [4790] = {.lex_state = 349, .external_lex_state = 5}, + [4791] = {.lex_state = 349, .external_lex_state = 6}, + [4792] = {.lex_state = 45, .external_lex_state = 2}, + [4793] = {.lex_state = 349, .external_lex_state = 5}, + [4794] = {.lex_state = 45, .external_lex_state = 2}, + [4795] = {.lex_state = 47, .external_lex_state = 2}, + [4796] = {.lex_state = 47, .external_lex_state = 2}, + [4797] = {.lex_state = 349, .external_lex_state = 5}, + [4798] = {.lex_state = 349, .external_lex_state = 6}, + [4799] = {.lex_state = 47, .external_lex_state = 2}, + [4800] = {.lex_state = 349, .external_lex_state = 6}, + [4801] = {.lex_state = 349, .external_lex_state = 6}, [4802] = {.lex_state = 47, .external_lex_state = 2}, - [4803] = {.lex_state = 349, .external_lex_state = 2}, + [4803] = {.lex_state = 349, .external_lex_state = 5}, [4804] = {.lex_state = 45, .external_lex_state = 2}, [4805] = {.lex_state = 45, .external_lex_state = 2}, - [4806] = {.lex_state = 45, .external_lex_state = 2}, - [4807] = {.lex_state = 45, .external_lex_state = 2}, - [4808] = {.lex_state = 349, .external_lex_state = 5}, - [4809] = {.lex_state = 45, .external_lex_state = 2}, + [4806] = {.lex_state = 47, .external_lex_state = 2}, + [4807] = {.lex_state = 47, .external_lex_state = 2}, + [4808] = {.lex_state = 349, .external_lex_state = 2}, + [4809] = {.lex_state = 349, .external_lex_state = 5}, [4810] = {.lex_state = 349, .external_lex_state = 6}, - [4811] = {.lex_state = 349, .external_lex_state = 7}, + [4811] = {.lex_state = 349, .external_lex_state = 5}, [4812] = {.lex_state = 349, .external_lex_state = 5}, - [4813] = {.lex_state = 349, .external_lex_state = 6}, - [4814] = {.lex_state = 47, .external_lex_state = 2}, - [4815] = {.lex_state = 47, .external_lex_state = 2}, - [4816] = {.lex_state = 349, .external_lex_state = 5}, - [4817] = {.lex_state = 349, .external_lex_state = 6}, + [4813] = {.lex_state = 349, .external_lex_state = 2}, + [4814] = {.lex_state = 45, .external_lex_state = 2}, + [4815] = {.lex_state = 349, .external_lex_state = 2}, + [4816] = {.lex_state = 47, .external_lex_state = 2}, + [4817] = {.lex_state = 349, .external_lex_state = 2}, [4818] = {.lex_state = 47, .external_lex_state = 2}, - [4819] = {.lex_state = 349, .external_lex_state = 7}, - [4820] = {.lex_state = 47, .external_lex_state = 2}, - [4821] = {.lex_state = 349, .external_lex_state = 5}, + [4819] = {.lex_state = 349, .external_lex_state = 6}, + [4820] = {.lex_state = 349, .external_lex_state = 7}, + [4821] = {.lex_state = 47, .external_lex_state = 2}, [4822] = {.lex_state = 349, .external_lex_state = 5}, - [4823] = {.lex_state = 349, .external_lex_state = 2}, - [4824] = {.lex_state = 47, .external_lex_state = 2}, - [4825] = {.lex_state = 47, .external_lex_state = 2}, - [4826] = {.lex_state = 45, .external_lex_state = 2}, - [4827] = {.lex_state = 47, .external_lex_state = 2}, - [4828] = {.lex_state = 349, .external_lex_state = 5}, - [4829] = {.lex_state = 349, .external_lex_state = 2}, - [4830] = {.lex_state = 349, .external_lex_state = 6}, - [4831] = {.lex_state = 45, .external_lex_state = 2}, + [4823] = {.lex_state = 349, .external_lex_state = 5}, + [4824] = {.lex_state = 45, .external_lex_state = 2}, + [4825] = {.lex_state = 349, .external_lex_state = 6}, + [4826] = {.lex_state = 349, .external_lex_state = 5}, + [4827] = {.lex_state = 45, .external_lex_state = 2}, + [4828] = {.lex_state = 45, .external_lex_state = 2}, + [4829] = {.lex_state = 45, .external_lex_state = 2}, + [4830] = {.lex_state = 47, .external_lex_state = 2}, + [4831] = {.lex_state = 349, .external_lex_state = 2}, [4832] = {.lex_state = 45, .external_lex_state = 2}, - [4833] = {.lex_state = 47, .external_lex_state = 2}, - [4834] = {.lex_state = 47, .external_lex_state = 2}, - [4835] = {.lex_state = 45, .external_lex_state = 2}, - [4836] = {.lex_state = 349, .external_lex_state = 5}, + [4833] = {.lex_state = 349, .external_lex_state = 7}, + [4834] = {.lex_state = 349, .external_lex_state = 6}, + [4835] = {.lex_state = 349, .external_lex_state = 6}, + [4836] = {.lex_state = 45, .external_lex_state = 2}, [4837] = {.lex_state = 349, .external_lex_state = 5}, [4838] = {.lex_state = 349, .external_lex_state = 5}, - [4839] = {.lex_state = 349, .external_lex_state = 5}, - [4840] = {.lex_state = 45, .external_lex_state = 2}, - [4841] = {.lex_state = 349, .external_lex_state = 5}, - [4842] = {.lex_state = 349, .external_lex_state = 2}, - [4843] = {.lex_state = 349, .external_lex_state = 6}, - [4844] = {.lex_state = 349, .external_lex_state = 6}, - [4845] = {.lex_state = 349, .external_lex_state = 6}, + [4839] = {.lex_state = 47, .external_lex_state = 2}, + [4840] = {.lex_state = 47, .external_lex_state = 2}, + [4841] = {.lex_state = 47, .external_lex_state = 2}, + [4842] = {.lex_state = 47, .external_lex_state = 2}, + [4843] = {.lex_state = 349, .external_lex_state = 5}, + [4844] = {.lex_state = 47, .external_lex_state = 2}, + [4845] = {.lex_state = 349, .external_lex_state = 2}, [4846] = {.lex_state = 349, .external_lex_state = 5}, - [4847] = {.lex_state = 349, .external_lex_state = 5}, - [4848] = {.lex_state = 45, .external_lex_state = 2}, + [4847] = {.lex_state = 45, .external_lex_state = 2}, + [4848] = {.lex_state = 45, .external_lex_state = 5}, [4849] = {.lex_state = 349, .external_lex_state = 5}, [4850] = {.lex_state = 349, .external_lex_state = 5}, - [4851] = {.lex_state = 349, .external_lex_state = 6}, - [4852] = {.lex_state = 349, .external_lex_state = 5}, - [4853] = {.lex_state = 349, .external_lex_state = 2}, - [4854] = {.lex_state = 349, .external_lex_state = 5}, - [4855] = {.lex_state = 349, .external_lex_state = 5}, + [4851] = {.lex_state = 349, .external_lex_state = 5}, + [4852] = {.lex_state = 349, .external_lex_state = 6}, + [4853] = {.lex_state = 45, .external_lex_state = 5}, + [4854] = {.lex_state = 45, .external_lex_state = 2}, + [4855] = {.lex_state = 349, .external_lex_state = 2}, [4856] = {.lex_state = 349, .external_lex_state = 5}, [4857] = {.lex_state = 349, .external_lex_state = 2}, [4858] = {.lex_state = 349, .external_lex_state = 5}, - [4859] = {.lex_state = 45, .external_lex_state = 2}, - [4860] = {.lex_state = 47, .external_lex_state = 2}, - [4861] = {.lex_state = 45, .external_lex_state = 2}, - [4862] = {.lex_state = 45, .external_lex_state = 2}, - [4863] = {.lex_state = 45, .external_lex_state = 2}, - [4864] = {.lex_state = 45, .external_lex_state = 2}, + [4859] = {.lex_state = 55, .external_lex_state = 2}, + [4860] = {.lex_state = 349, .external_lex_state = 2}, + [4861] = {.lex_state = 46, .external_lex_state = 2}, + [4862] = {.lex_state = 349, .external_lex_state = 5}, + [4863] = {.lex_state = 62, .external_lex_state = 2}, + [4864] = {.lex_state = 62, .external_lex_state = 2}, [4865] = {.lex_state = 349, .external_lex_state = 5}, [4866] = {.lex_state = 349, .external_lex_state = 5}, - [4867] = {.lex_state = 349, .external_lex_state = 2}, - [4868] = {.lex_state = 45, .external_lex_state = 2}, - [4869] = {.lex_state = 47, .external_lex_state = 2}, - [4870] = {.lex_state = 349, .external_lex_state = 6}, - [4871] = {.lex_state = 47, .external_lex_state = 2}, + [4867] = {.lex_state = 349, .external_lex_state = 5}, + [4868] = {.lex_state = 349, .external_lex_state = 2}, + [4869] = {.lex_state = 45, .external_lex_state = 2}, + [4870] = {.lex_state = 349, .external_lex_state = 5}, + [4871] = {.lex_state = 349, .external_lex_state = 5}, [4872] = {.lex_state = 349, .external_lex_state = 5}, - [4873] = {.lex_state = 47, .external_lex_state = 2}, + [4873] = {.lex_state = 349, .external_lex_state = 2}, [4874] = {.lex_state = 349, .external_lex_state = 5}, - [4875] = {.lex_state = 349, .external_lex_state = 2}, - [4876] = {.lex_state = 349, .external_lex_state = 6}, - [4877] = {.lex_state = 45, .external_lex_state = 2}, - [4878] = {.lex_state = 349, .external_lex_state = 5}, - [4879] = {.lex_state = 47, .external_lex_state = 2}, - [4880] = {.lex_state = 45, .external_lex_state = 2}, - [4881] = {.lex_state = 349, .external_lex_state = 6}, - [4882] = {.lex_state = 45, .external_lex_state = 2}, - [4883] = {.lex_state = 349, .external_lex_state = 2}, - [4884] = {.lex_state = 45, .external_lex_state = 2}, - [4885] = {.lex_state = 349, .external_lex_state = 5}, - [4886] = {.lex_state = 349, .external_lex_state = 2}, - [4887] = {.lex_state = 349, .external_lex_state = 2}, - [4888] = {.lex_state = 349, .external_lex_state = 6}, + [4875] = {.lex_state = 349, .external_lex_state = 5}, + [4876] = {.lex_state = 349, .external_lex_state = 5}, + [4877] = {.lex_state = 349, .external_lex_state = 5}, + [4878] = {.lex_state = 349, .external_lex_state = 2}, + [4879] = {.lex_state = 349, .external_lex_state = 5}, + [4880] = {.lex_state = 349, .external_lex_state = 5}, + [4881] = {.lex_state = 349, .external_lex_state = 5}, + [4882] = {.lex_state = 349, .external_lex_state = 5}, + [4883] = {.lex_state = 349, .external_lex_state = 5}, + [4884] = {.lex_state = 349, .external_lex_state = 5}, + [4885] = {.lex_state = 349, .external_lex_state = 2}, + [4886] = {.lex_state = 45, .external_lex_state = 2}, + [4887] = {.lex_state = 45, .external_lex_state = 2}, + [4888] = {.lex_state = 349, .external_lex_state = 5}, [4889] = {.lex_state = 349, .external_lex_state = 5}, - [4890] = {.lex_state = 45, .external_lex_state = 2}, + [4890] = {.lex_state = 349, .external_lex_state = 5}, [4891] = {.lex_state = 349, .external_lex_state = 5}, - [4892] = {.lex_state = 47, .external_lex_state = 2}, - [4893] = {.lex_state = 45, .external_lex_state = 2}, + [4892] = {.lex_state = 349, .external_lex_state = 5}, + [4893] = {.lex_state = 349, .external_lex_state = 5}, [4894] = {.lex_state = 349, .external_lex_state = 5}, [4895] = {.lex_state = 349, .external_lex_state = 5}, - [4896] = {.lex_state = 45, .external_lex_state = 2}, + [4896] = {.lex_state = 349, .external_lex_state = 5}, [4897] = {.lex_state = 349, .external_lex_state = 5}, - [4898] = {.lex_state = 349, .external_lex_state = 5}, - [4899] = {.lex_state = 349, .external_lex_state = 6}, - [4900] = {.lex_state = 349, .external_lex_state = 6}, + [4898] = {.lex_state = 349, .external_lex_state = 2}, + [4899] = {.lex_state = 349, .external_lex_state = 5}, + [4900] = {.lex_state = 349, .external_lex_state = 5}, [4901] = {.lex_state = 349, .external_lex_state = 5}, - [4902] = {.lex_state = 45, .external_lex_state = 2}, - [4903] = {.lex_state = 349, .external_lex_state = 6}, - [4904] = {.lex_state = 45, .external_lex_state = 2}, - [4905] = {.lex_state = 47, .external_lex_state = 2}, - [4906] = {.lex_state = 349, .external_lex_state = 2}, - [4907] = {.lex_state = 349, .external_lex_state = 2}, - [4908] = {.lex_state = 62, .external_lex_state = 2}, - [4909] = {.lex_state = 349, .external_lex_state = 2}, + [4902] = {.lex_state = 349, .external_lex_state = 5}, + [4903] = {.lex_state = 349, .external_lex_state = 5}, + [4904] = {.lex_state = 349, .external_lex_state = 5}, + [4905] = {.lex_state = 349, .external_lex_state = 5}, + [4906] = {.lex_state = 349, .external_lex_state = 5}, + [4907] = {.lex_state = 349, .external_lex_state = 5}, + [4908] = {.lex_state = 349, .external_lex_state = 5}, + [4909] = {.lex_state = 349, .external_lex_state = 5}, [4910] = {.lex_state = 45, .external_lex_state = 2}, - [4911] = {.lex_state = 45, .external_lex_state = 2}, - [4912] = {.lex_state = 45, .external_lex_state = 2}, - [4913] = {.lex_state = 349, .external_lex_state = 2}, - [4914] = {.lex_state = 349, .external_lex_state = 7}, - [4915] = {.lex_state = 45, .external_lex_state = 2}, + [4911] = {.lex_state = 349, .external_lex_state = 8}, + [4912] = {.lex_state = 349, .external_lex_state = 5}, + [4913] = {.lex_state = 349, .external_lex_state = 5}, + [4914] = {.lex_state = 349, .external_lex_state = 5}, + [4915] = {.lex_state = 349, .external_lex_state = 5}, [4916] = {.lex_state = 349, .external_lex_state = 5}, - [4917] = {.lex_state = 349, .external_lex_state = 2}, - [4918] = {.lex_state = 349, .external_lex_state = 6}, - [4919] = {.lex_state = 45, .external_lex_state = 2}, - [4920] = {.lex_state = 45, .external_lex_state = 2}, - [4921] = {.lex_state = 349, .external_lex_state = 6}, - [4922] = {.lex_state = 45, .external_lex_state = 2}, - [4923] = {.lex_state = 349, .external_lex_state = 2}, - [4924] = {.lex_state = 349, .external_lex_state = 6}, + [4917] = {.lex_state = 349, .external_lex_state = 5}, + [4918] = {.lex_state = 349, .external_lex_state = 5}, + [4919] = {.lex_state = 349, .external_lex_state = 5}, + [4920] = {.lex_state = 349, .external_lex_state = 5}, + [4921] = {.lex_state = 349, .external_lex_state = 5}, + [4922] = {.lex_state = 349, .external_lex_state = 5}, + [4923] = {.lex_state = 349, .external_lex_state = 5}, + [4924] = {.lex_state = 349, .external_lex_state = 5}, [4925] = {.lex_state = 349, .external_lex_state = 5}, [4926] = {.lex_state = 349, .external_lex_state = 5}, - [4927] = {.lex_state = 349, .external_lex_state = 2}, - [4928] = {.lex_state = 62, .external_lex_state = 2}, - [4929] = {.lex_state = 349, .external_lex_state = 6}, - [4930] = {.lex_state = 45, .external_lex_state = 2}, - [4931] = {.lex_state = 349, .external_lex_state = 6}, + [4927] = {.lex_state = 349, .external_lex_state = 5}, + [4928] = {.lex_state = 349, .external_lex_state = 5}, + [4929] = {.lex_state = 349, .external_lex_state = 5}, + [4930] = {.lex_state = 349, .external_lex_state = 5}, + [4931] = {.lex_state = 349, .external_lex_state = 5}, [4932] = {.lex_state = 349, .external_lex_state = 5}, - [4933] = {.lex_state = 47, .external_lex_state = 2}, - [4934] = {.lex_state = 45, .external_lex_state = 2}, - [4935] = {.lex_state = 45, .external_lex_state = 2}, + [4933] = {.lex_state = 349, .external_lex_state = 5}, + [4934] = {.lex_state = 349, .external_lex_state = 5}, + [4935] = {.lex_state = 349, .external_lex_state = 5}, [4936] = {.lex_state = 349, .external_lex_state = 5}, - [4937] = {.lex_state = 47, .external_lex_state = 2}, - [4938] = {.lex_state = 349, .external_lex_state = 6}, - [4939] = {.lex_state = 47, .external_lex_state = 2}, - [4940] = {.lex_state = 47, .external_lex_state = 2}, - [4941] = {.lex_state = 47, .external_lex_state = 2}, - [4942] = {.lex_state = 45, .external_lex_state = 2}, - [4943] = {.lex_state = 349, .external_lex_state = 7}, - [4944] = {.lex_state = 45, .external_lex_state = 2}, - [4945] = {.lex_state = 45, .external_lex_state = 2}, - [4946] = {.lex_state = 349, .external_lex_state = 6}, - [4947] = {.lex_state = 45, .external_lex_state = 2}, - [4948] = {.lex_state = 47, .external_lex_state = 2}, - [4949] = {.lex_state = 47, .external_lex_state = 2}, - [4950] = {.lex_state = 47, .external_lex_state = 2}, - [4951] = {.lex_state = 349, .external_lex_state = 2}, - [4952] = {.lex_state = 47, .external_lex_state = 2}, - [4953] = {.lex_state = 45, .external_lex_state = 2}, - [4954] = {.lex_state = 45, .external_lex_state = 2}, - [4955] = {.lex_state = 45, .external_lex_state = 2}, - [4956] = {.lex_state = 45, .external_lex_state = 2}, - [4957] = {.lex_state = 349, .external_lex_state = 6}, - [4958] = {.lex_state = 47, .external_lex_state = 2}, - [4959] = {.lex_state = 45, .external_lex_state = 2}, + [4937] = {.lex_state = 349, .external_lex_state = 5}, + [4938] = {.lex_state = 349, .external_lex_state = 5}, + [4939] = {.lex_state = 349, .external_lex_state = 5}, + [4940] = {.lex_state = 349, .external_lex_state = 5}, + [4941] = {.lex_state = 349, .external_lex_state = 5}, + [4942] = {.lex_state = 349, .external_lex_state = 5}, + [4943] = {.lex_state = 349, .external_lex_state = 5}, + [4944] = {.lex_state = 349, .external_lex_state = 5}, + [4945] = {.lex_state = 349, .external_lex_state = 5}, + [4946] = {.lex_state = 349, .external_lex_state = 5}, + [4947] = {.lex_state = 349, .external_lex_state = 5}, + [4948] = {.lex_state = 349, .external_lex_state = 5}, + [4949] = {.lex_state = 349, .external_lex_state = 5}, + [4950] = {.lex_state = 349, .external_lex_state = 5}, + [4951] = {.lex_state = 47, .external_lex_state = 2}, + [4952] = {.lex_state = 349, .external_lex_state = 5}, + [4953] = {.lex_state = 349, .external_lex_state = 2}, + [4954] = {.lex_state = 349, .external_lex_state = 6}, + [4955] = {.lex_state = 349, .external_lex_state = 5}, + [4956] = {.lex_state = 349, .external_lex_state = 5}, + [4957] = {.lex_state = 47, .external_lex_state = 2}, + [4958] = {.lex_state = 349, .external_lex_state = 5}, + [4959] = {.lex_state = 349, .external_lex_state = 5}, [4960] = {.lex_state = 45, .external_lex_state = 2}, - [4961] = {.lex_state = 349, .external_lex_state = 6}, - [4962] = {.lex_state = 45, .external_lex_state = 2}, - [4963] = {.lex_state = 47, .external_lex_state = 2}, - [4964] = {.lex_state = 349, .external_lex_state = 6}, - [4965] = {.lex_state = 47, .external_lex_state = 2}, - [4966] = {.lex_state = 47, .external_lex_state = 2}, - [4967] = {.lex_state = 45, .external_lex_state = 2}, - [4968] = {.lex_state = 47, .external_lex_state = 2}, - [4969] = {.lex_state = 349, .external_lex_state = 5}, - [4970] = {.lex_state = 349, .external_lex_state = 6}, - [4971] = {.lex_state = 47, .external_lex_state = 2}, + [4961] = {.lex_state = 349, .external_lex_state = 5}, + [4962] = {.lex_state = 349, .external_lex_state = 5}, + [4963] = {.lex_state = 349, .external_lex_state = 5}, + [4964] = {.lex_state = 349, .external_lex_state = 5}, + [4965] = {.lex_state = 349, .external_lex_state = 5}, + [4966] = {.lex_state = 349, .external_lex_state = 5}, + [4967] = {.lex_state = 349, .external_lex_state = 5}, + [4968] = {.lex_state = 349, .external_lex_state = 2}, + [4969] = {.lex_state = 45, .external_lex_state = 2}, + [4970] = {.lex_state = 45, .external_lex_state = 5}, + [4971] = {.lex_state = 349, .external_lex_state = 5}, [4972] = {.lex_state = 349, .external_lex_state = 5}, - [4973] = {.lex_state = 47, .external_lex_state = 2}, + [4973] = {.lex_state = 349, .external_lex_state = 5}, [4974] = {.lex_state = 45, .external_lex_state = 2}, - [4975] = {.lex_state = 47, .external_lex_state = 2}, - [4976] = {.lex_state = 47, .external_lex_state = 2}, - [4977] = {.lex_state = 349, .external_lex_state = 2}, - [4978] = {.lex_state = 349, .external_lex_state = 2}, - [4979] = {.lex_state = 47, .external_lex_state = 2}, - [4980] = {.lex_state = 349, .external_lex_state = 6}, - [4981] = {.lex_state = 45, .external_lex_state = 2}, - [4982] = {.lex_state = 47, .external_lex_state = 2}, - [4983] = {.lex_state = 349, .external_lex_state = 7}, - [4984] = {.lex_state = 349, .external_lex_state = 6}, - [4985] = {.lex_state = 349, .external_lex_state = 6}, - [4986] = {.lex_state = 47, .external_lex_state = 2}, - [4987] = {.lex_state = 47, .external_lex_state = 2}, - [4988] = {.lex_state = 47, .external_lex_state = 2}, - [4989] = {.lex_state = 349, .external_lex_state = 2}, - [4990] = {.lex_state = 45, .external_lex_state = 2}, - [4991] = {.lex_state = 349, .external_lex_state = 2}, - [4992] = {.lex_state = 45, .external_lex_state = 2}, + [4975] = {.lex_state = 349, .external_lex_state = 5}, + [4976] = {.lex_state = 349, .external_lex_state = 6}, + [4977] = {.lex_state = 349, .external_lex_state = 5}, + [4978] = {.lex_state = 349, .external_lex_state = 8}, + [4979] = {.lex_state = 349, .external_lex_state = 2}, + [4980] = {.lex_state = 349, .external_lex_state = 5}, + [4981] = {.lex_state = 349, .external_lex_state = 5}, + [4982] = {.lex_state = 349, .external_lex_state = 5}, + [4983] = {.lex_state = 349, .external_lex_state = 5}, + [4984] = {.lex_state = 349, .external_lex_state = 5}, + [4985] = {.lex_state = 349, .external_lex_state = 5}, + [4986] = {.lex_state = 349, .external_lex_state = 5}, + [4987] = {.lex_state = 349, .external_lex_state = 5}, + [4988] = {.lex_state = 349, .external_lex_state = 5}, + [4989] = {.lex_state = 349, .external_lex_state = 5}, + [4990] = {.lex_state = 349, .external_lex_state = 5}, + [4991] = {.lex_state = 349, .external_lex_state = 5}, + [4992] = {.lex_state = 349, .external_lex_state = 5}, [4993] = {.lex_state = 349, .external_lex_state = 5}, [4994] = {.lex_state = 349, .external_lex_state = 5}, - [4995] = {.lex_state = 349, .external_lex_state = 5}, - [4996] = {.lex_state = 349, .external_lex_state = 5}, + [4995] = {.lex_state = 349, .external_lex_state = 8}, + [4996] = {.lex_state = 349, .external_lex_state = 2}, [4997] = {.lex_state = 349, .external_lex_state = 5}, - [4998] = {.lex_state = 349, .external_lex_state = 5}, - [4999] = {.lex_state = 349, .external_lex_state = 5}, - [5000] = {.lex_state = 349, .external_lex_state = 6}, - [5001] = {.lex_state = 349, .external_lex_state = 5}, + [4998] = {.lex_state = 45, .external_lex_state = 2}, + [4999] = {.lex_state = 349, .external_lex_state = 2}, + [5000] = {.lex_state = 349, .external_lex_state = 5}, + [5001] = {.lex_state = 62, .external_lex_state = 2}, [5002] = {.lex_state = 349, .external_lex_state = 5}, - [5003] = {.lex_state = 62, .external_lex_state = 2}, - [5004] = {.lex_state = 45, .external_lex_state = 2}, + [5003] = {.lex_state = 349, .external_lex_state = 5}, + [5004] = {.lex_state = 349, .external_lex_state = 6}, [5005] = {.lex_state = 349, .external_lex_state = 5}, - [5006] = {.lex_state = 349, .external_lex_state = 5}, - [5007] = {.lex_state = 349, .external_lex_state = 5}, - [5008] = {.lex_state = 349, .external_lex_state = 5}, + [5006] = {.lex_state = 45, .external_lex_state = 2}, + [5007] = {.lex_state = 45, .external_lex_state = 2}, + [5008] = {.lex_state = 349, .external_lex_state = 6}, [5009] = {.lex_state = 349, .external_lex_state = 5}, - [5010] = {.lex_state = 62, .external_lex_state = 2}, - [5011] = {.lex_state = 62, .external_lex_state = 2}, - [5012] = {.lex_state = 349, .external_lex_state = 5}, - [5013] = {.lex_state = 349, .external_lex_state = 5}, - [5014] = {.lex_state = 349, .external_lex_state = 6}, - [5015] = {.lex_state = 349, .external_lex_state = 5}, - [5016] = {.lex_state = 349, .external_lex_state = 2}, + [5010] = {.lex_state = 349, .external_lex_state = 5}, + [5011] = {.lex_state = 349, .external_lex_state = 5}, + [5012] = {.lex_state = 45, .external_lex_state = 2}, + [5013] = {.lex_state = 349, .external_lex_state = 8}, + [5014] = {.lex_state = 349, .external_lex_state = 5}, + [5015] = {.lex_state = 349, .external_lex_state = 8}, + [5016] = {.lex_state = 62, .external_lex_state = 2}, [5017] = {.lex_state = 349, .external_lex_state = 5}, [5018] = {.lex_state = 349, .external_lex_state = 5}, - [5019] = {.lex_state = 349, .external_lex_state = 6}, - [5020] = {.lex_state = 349, .external_lex_state = 5}, - [5021] = {.lex_state = 349, .external_lex_state = 5}, - [5022] = {.lex_state = 349, .external_lex_state = 5}, - [5023] = {.lex_state = 45, .external_lex_state = 2}, - [5024] = {.lex_state = 349, .external_lex_state = 5}, + [5019] = {.lex_state = 349, .external_lex_state = 5}, + [5020] = {.lex_state = 349, .external_lex_state = 2}, + [5021] = {.lex_state = 349, .external_lex_state = 6}, + [5022] = {.lex_state = 45, .external_lex_state = 5}, + [5023] = {.lex_state = 62, .external_lex_state = 2}, + [5024] = {.lex_state = 349, .external_lex_state = 8}, [5025] = {.lex_state = 349, .external_lex_state = 2}, - [5026] = {.lex_state = 349, .external_lex_state = 2}, - [5027] = {.lex_state = 349, .external_lex_state = 5}, - [5028] = {.lex_state = 349, .external_lex_state = 5}, - [5029] = {.lex_state = 349, .external_lex_state = 5}, - [5030] = {.lex_state = 349, .external_lex_state = 5}, - [5031] = {.lex_state = 349, .external_lex_state = 5}, - [5032] = {.lex_state = 349, .external_lex_state = 5}, - [5033] = {.lex_state = 349, .external_lex_state = 5}, - [5034] = {.lex_state = 349, .external_lex_state = 5}, - [5035] = {.lex_state = 349, .external_lex_state = 5}, - [5036] = {.lex_state = 349, .external_lex_state = 5}, - [5037] = {.lex_state = 349, .external_lex_state = 5}, - [5038] = {.lex_state = 349, .external_lex_state = 5}, - [5039] = {.lex_state = 349, .external_lex_state = 5}, - [5040] = {.lex_state = 349, .external_lex_state = 5}, - [5041] = {.lex_state = 349, .external_lex_state = 5}, - [5042] = {.lex_state = 349, .external_lex_state = 5}, + [5026] = {.lex_state = 349, .external_lex_state = 5}, + [5027] = {.lex_state = 349, .external_lex_state = 2}, + [5028] = {.lex_state = 47, .external_lex_state = 2}, + [5029] = {.lex_state = 45, .external_lex_state = 2}, + [5030] = {.lex_state = 45, .external_lex_state = 2}, + [5031] = {.lex_state = 349, .external_lex_state = 6}, + [5032] = {.lex_state = 45, .external_lex_state = 5}, + [5033] = {.lex_state = 45, .external_lex_state = 2}, + [5034] = {.lex_state = 349, .external_lex_state = 6}, + [5035] = {.lex_state = 45, .external_lex_state = 2}, + [5036] = {.lex_state = 45, .external_lex_state = 2}, + [5037] = {.lex_state = 45, .external_lex_state = 2}, + [5038] = {.lex_state = 45, .external_lex_state = 2}, + [5039] = {.lex_state = 45, .external_lex_state = 2}, + [5040] = {.lex_state = 45, .external_lex_state = 2}, + [5041] = {.lex_state = 45, .external_lex_state = 2}, + [5042] = {.lex_state = 349, .external_lex_state = 2}, [5043] = {.lex_state = 349, .external_lex_state = 5}, [5044] = {.lex_state = 349, .external_lex_state = 5}, [5045] = {.lex_state = 349, .external_lex_state = 5}, - [5046] = {.lex_state = 349, .external_lex_state = 5}, - [5047] = {.lex_state = 349, .external_lex_state = 5}, - [5048] = {.lex_state = 349, .external_lex_state = 5}, + [5046] = {.lex_state = 45, .external_lex_state = 2}, + [5047] = {.lex_state = 45, .external_lex_state = 2}, + [5048] = {.lex_state = 349, .external_lex_state = 2}, [5049] = {.lex_state = 349, .external_lex_state = 5}, [5050] = {.lex_state = 349, .external_lex_state = 5}, - [5051] = {.lex_state = 349, .external_lex_state = 5}, + [5051] = {.lex_state = 45, .external_lex_state = 2}, [5052] = {.lex_state = 349, .external_lex_state = 5}, - [5053] = {.lex_state = 349, .external_lex_state = 5}, - [5054] = {.lex_state = 349, .external_lex_state = 5}, - [5055] = {.lex_state = 349, .external_lex_state = 5}, - [5056] = {.lex_state = 349, .external_lex_state = 5}, + [5053] = {.lex_state = 45, .external_lex_state = 2}, + [5054] = {.lex_state = 45, .external_lex_state = 2}, + [5055] = {.lex_state = 45, .external_lex_state = 2}, + [5056] = {.lex_state = 45, .external_lex_state = 2}, [5057] = {.lex_state = 349, .external_lex_state = 5}, - [5058] = {.lex_state = 349, .external_lex_state = 5}, - [5059] = {.lex_state = 349, .external_lex_state = 5}, - [5060] = {.lex_state = 349, .external_lex_state = 5}, - [5061] = {.lex_state = 349, .external_lex_state = 5}, - [5062] = {.lex_state = 349, .external_lex_state = 5}, + [5058] = {.lex_state = 45, .external_lex_state = 2}, + [5059] = {.lex_state = 45, .external_lex_state = 2}, + [5060] = {.lex_state = 45, .external_lex_state = 2}, + [5061] = {.lex_state = 349, .external_lex_state = 2}, + [5062] = {.lex_state = 349, .external_lex_state = 6}, [5063] = {.lex_state = 349, .external_lex_state = 5}, - [5064] = {.lex_state = 349, .external_lex_state = 5}, - [5065] = {.lex_state = 349, .external_lex_state = 5}, - [5066] = {.lex_state = 349, .external_lex_state = 5}, - [5067] = {.lex_state = 349, .external_lex_state = 5}, - [5068] = {.lex_state = 349, .external_lex_state = 5}, - [5069] = {.lex_state = 45, .external_lex_state = 2}, - [5070] = {.lex_state = 349, .external_lex_state = 6}, + [5064] = {.lex_state = 45, .external_lex_state = 2}, + [5065] = {.lex_state = 45, .external_lex_state = 2}, + [5066] = {.lex_state = 349, .external_lex_state = 2}, + [5067] = {.lex_state = 45, .external_lex_state = 2}, + [5068] = {.lex_state = 45, .external_lex_state = 2}, + [5069] = {.lex_state = 349, .external_lex_state = 6}, + [5070] = {.lex_state = 45, .external_lex_state = 2}, [5071] = {.lex_state = 349, .external_lex_state = 5}, [5072] = {.lex_state = 349, .external_lex_state = 5}, - [5073] = {.lex_state = 349, .external_lex_state = 5}, - [5074] = {.lex_state = 349, .external_lex_state = 5}, + [5073] = {.lex_state = 349, .external_lex_state = 6}, + [5074] = {.lex_state = 45, .external_lex_state = 2}, [5075] = {.lex_state = 45, .external_lex_state = 2}, [5076] = {.lex_state = 45, .external_lex_state = 2}, - [5077] = {.lex_state = 349, .external_lex_state = 5}, - [5078] = {.lex_state = 349, .external_lex_state = 5}, - [5079] = {.lex_state = 349, .external_lex_state = 5}, - [5080] = {.lex_state = 349, .external_lex_state = 5}, - [5081] = {.lex_state = 45, .external_lex_state = 5}, + [5077] = {.lex_state = 349, .external_lex_state = 6}, + [5078] = {.lex_state = 45, .external_lex_state = 2}, + [5079] = {.lex_state = 349, .external_lex_state = 2}, + [5080] = {.lex_state = 45, .external_lex_state = 5}, + [5081] = {.lex_state = 45, .external_lex_state = 2}, [5082] = {.lex_state = 349, .external_lex_state = 5}, - [5083] = {.lex_state = 45, .external_lex_state = 5}, - [5084] = {.lex_state = 349, .external_lex_state = 5}, - [5085] = {.lex_state = 349, .external_lex_state = 5}, + [5083] = {.lex_state = 45, .external_lex_state = 2}, + [5084] = {.lex_state = 349, .external_lex_state = 8}, + [5085] = {.lex_state = 45, .external_lex_state = 2}, [5086] = {.lex_state = 349, .external_lex_state = 5}, - [5087] = {.lex_state = 349, .external_lex_state = 5}, - [5088] = {.lex_state = 349, .external_lex_state = 5}, + [5087] = {.lex_state = 45, .external_lex_state = 2}, + [5088] = {.lex_state = 349, .external_lex_state = 2}, [5089] = {.lex_state = 349, .external_lex_state = 5}, [5090] = {.lex_state = 349, .external_lex_state = 5}, - [5091] = {.lex_state = 349, .external_lex_state = 6}, - [5092] = {.lex_state = 349, .external_lex_state = 5}, - [5093] = {.lex_state = 45, .external_lex_state = 5}, - [5094] = {.lex_state = 349, .external_lex_state = 5}, + [5091] = {.lex_state = 45, .external_lex_state = 5}, + [5092] = {.lex_state = 45, .external_lex_state = 2}, + [5093] = {.lex_state = 349, .external_lex_state = 5}, + [5094] = {.lex_state = 349, .external_lex_state = 2}, [5095] = {.lex_state = 349, .external_lex_state = 2}, [5096] = {.lex_state = 349, .external_lex_state = 5}, - [5097] = {.lex_state = 349, .external_lex_state = 5}, - [5098] = {.lex_state = 349, .external_lex_state = 5}, + [5097] = {.lex_state = 349, .external_lex_state = 2}, + [5098] = {.lex_state = 45, .external_lex_state = 2}, [5099] = {.lex_state = 349, .external_lex_state = 5}, [5100] = {.lex_state = 45, .external_lex_state = 2}, [5101] = {.lex_state = 349, .external_lex_state = 5}, - [5102] = {.lex_state = 349, .external_lex_state = 5}, - [5103] = {.lex_state = 349, .external_lex_state = 5}, - [5104] = {.lex_state = 349, .external_lex_state = 5}, - [5105] = {.lex_state = 349, .external_lex_state = 5}, + [5102] = {.lex_state = 349, .external_lex_state = 8}, + [5103] = {.lex_state = 45, .external_lex_state = 2}, + [5104] = {.lex_state = 45, .external_lex_state = 2}, + [5105] = {.lex_state = 45, .external_lex_state = 2}, [5106] = {.lex_state = 349, .external_lex_state = 5}, - [5107] = {.lex_state = 349, .external_lex_state = 5}, + [5107] = {.lex_state = 62, .external_lex_state = 2}, [5108] = {.lex_state = 349, .external_lex_state = 5}, - [5109] = {.lex_state = 349, .external_lex_state = 5}, + [5109] = {.lex_state = 349, .external_lex_state = 2}, [5110] = {.lex_state = 349, .external_lex_state = 5}, [5111] = {.lex_state = 349, .external_lex_state = 5}, - [5112] = {.lex_state = 349, .external_lex_state = 2}, - [5113] = {.lex_state = 349, .external_lex_state = 5}, - [5114] = {.lex_state = 45, .external_lex_state = 2}, - [5115] = {.lex_state = 55, .external_lex_state = 2}, - [5116] = {.lex_state = 349, .external_lex_state = 5}, - [5117] = {.lex_state = 349, .external_lex_state = 5}, - [5118] = {.lex_state = 349, .external_lex_state = 5}, + [5112] = {.lex_state = 349, .external_lex_state = 5}, + [5113] = {.lex_state = 349, .external_lex_state = 2}, + [5114] = {.lex_state = 47, .external_lex_state = 2}, + [5115] = {.lex_state = 45, .external_lex_state = 2}, + [5116] = {.lex_state = 349, .external_lex_state = 6}, + [5117] = {.lex_state = 45, .external_lex_state = 5}, + [5118] = {.lex_state = 45, .external_lex_state = 2}, [5119] = {.lex_state = 45, .external_lex_state = 2}, - [5120] = {.lex_state = 349, .external_lex_state = 5}, - [5121] = {.lex_state = 349, .external_lex_state = 5}, - [5122] = {.lex_state = 349, .external_lex_state = 6}, - [5123] = {.lex_state = 349, .external_lex_state = 5}, - [5124] = {.lex_state = 45, .external_lex_state = 2}, - [5125] = {.lex_state = 349, .external_lex_state = 2}, - [5126] = {.lex_state = 349, .external_lex_state = 5}, + [5120] = {.lex_state = 45, .external_lex_state = 2}, + [5121] = {.lex_state = 45, .external_lex_state = 2}, + [5122] = {.lex_state = 45, .external_lex_state = 2}, + [5123] = {.lex_state = 45, .external_lex_state = 2}, + [5124] = {.lex_state = 349, .external_lex_state = 5}, + [5125] = {.lex_state = 45, .external_lex_state = 2}, + [5126] = {.lex_state = 45, .external_lex_state = 2}, [5127] = {.lex_state = 45, .external_lex_state = 2}, - [5128] = {.lex_state = 349, .external_lex_state = 5}, - [5129] = {.lex_state = 46, .external_lex_state = 2}, - [5130] = {.lex_state = 349, .external_lex_state = 5}, - [5131] = {.lex_state = 62, .external_lex_state = 2}, - [5132] = {.lex_state = 45, .external_lex_state = 2}, - [5133] = {.lex_state = 45, .external_lex_state = 5}, + [5128] = {.lex_state = 349, .external_lex_state = 2}, + [5129] = {.lex_state = 349, .external_lex_state = 5}, + [5130] = {.lex_state = 45, .external_lex_state = 2}, + [5131] = {.lex_state = 46, .external_lex_state = 5}, + [5132] = {.lex_state = 46, .external_lex_state = 5}, + [5133] = {.lex_state = 349, .external_lex_state = 5}, [5134] = {.lex_state = 45, .external_lex_state = 2}, [5135] = {.lex_state = 45, .external_lex_state = 2}, - [5136] = {.lex_state = 349, .external_lex_state = 5}, - [5137] = {.lex_state = 349, .external_lex_state = 5}, - [5138] = {.lex_state = 349, .external_lex_state = 5}, + [5136] = {.lex_state = 45, .external_lex_state = 2}, + [5137] = {.lex_state = 45, .external_lex_state = 2}, + [5138] = {.lex_state = 349, .external_lex_state = 6}, [5139] = {.lex_state = 349, .external_lex_state = 5}, - [5140] = {.lex_state = 349, .external_lex_state = 5}, + [5140] = {.lex_state = 45, .external_lex_state = 5}, [5141] = {.lex_state = 349, .external_lex_state = 5}, - [5142] = {.lex_state = 349, .external_lex_state = 2}, - [5143] = {.lex_state = 349, .external_lex_state = 2}, - [5144] = {.lex_state = 349, .external_lex_state = 5}, + [5142] = {.lex_state = 349, .external_lex_state = 5}, + [5143] = {.lex_state = 349, .external_lex_state = 5}, + [5144] = {.lex_state = 45, .external_lex_state = 2}, [5145] = {.lex_state = 45, .external_lex_state = 2}, - [5146] = {.lex_state = 45, .external_lex_state = 2}, - [5147] = {.lex_state = 349, .external_lex_state = 6}, + [5146] = {.lex_state = 349, .external_lex_state = 5}, + [5147] = {.lex_state = 349, .external_lex_state = 5}, [5148] = {.lex_state = 349, .external_lex_state = 5}, [5149] = {.lex_state = 349, .external_lex_state = 5}, [5150] = {.lex_state = 349, .external_lex_state = 5}, - [5151] = {.lex_state = 45, .external_lex_state = 5}, + [5151] = {.lex_state = 349, .external_lex_state = 5}, [5152] = {.lex_state = 349, .external_lex_state = 5}, - [5153] = {.lex_state = 45, .external_lex_state = 2}, - [5154] = {.lex_state = 349, .external_lex_state = 5}, - [5155] = {.lex_state = 45, .external_lex_state = 2}, - [5156] = {.lex_state = 349, .external_lex_state = 5}, + [5153] = {.lex_state = 349, .external_lex_state = 5}, + [5154] = {.lex_state = 45, .external_lex_state = 2}, + [5155] = {.lex_state = 349, .external_lex_state = 2}, + [5156] = {.lex_state = 349, .external_lex_state = 2}, [5157] = {.lex_state = 349, .external_lex_state = 5}, - [5158] = {.lex_state = 45, .external_lex_state = 5}, - [5159] = {.lex_state = 349, .external_lex_state = 5}, + [5158] = {.lex_state = 45, .external_lex_state = 2}, + [5159] = {.lex_state = 45, .external_lex_state = 2}, [5160] = {.lex_state = 349, .external_lex_state = 5}, - [5161] = {.lex_state = 349, .external_lex_state = 5}, + [5161] = {.lex_state = 349, .external_lex_state = 6}, [5162] = {.lex_state = 45, .external_lex_state = 2}, - [5163] = {.lex_state = 349, .external_lex_state = 5}, - [5164] = {.lex_state = 349, .external_lex_state = 5}, - [5165] = {.lex_state = 349, .external_lex_state = 5}, - [5166] = {.lex_state = 45, .external_lex_state = 5}, - [5167] = {.lex_state = 349, .external_lex_state = 2}, - [5168] = {.lex_state = 349, .external_lex_state = 5}, + [5163] = {.lex_state = 45, .external_lex_state = 2}, + [5164] = {.lex_state = 349, .external_lex_state = 8}, + [5165] = {.lex_state = 46, .external_lex_state = 2}, + [5166] = {.lex_state = 349, .external_lex_state = 8}, + [5167] = {.lex_state = 349, .external_lex_state = 5}, + [5168] = {.lex_state = 45, .external_lex_state = 2}, [5169] = {.lex_state = 45, .external_lex_state = 2}, - [5170] = {.lex_state = 349, .external_lex_state = 8}, - [5171] = {.lex_state = 46, .external_lex_state = 2}, - [5172] = {.lex_state = 349, .external_lex_state = 6}, - [5173] = {.lex_state = 349, .external_lex_state = 5}, + [5170] = {.lex_state = 45, .external_lex_state = 2}, + [5171] = {.lex_state = 349, .external_lex_state = 5}, + [5172] = {.lex_state = 349, .external_lex_state = 5}, + [5173] = {.lex_state = 45, .external_lex_state = 2}, [5174] = {.lex_state = 45, .external_lex_state = 2}, - [5175] = {.lex_state = 349, .external_lex_state = 8}, + [5175] = {.lex_state = 45, .external_lex_state = 2}, [5176] = {.lex_state = 349, .external_lex_state = 5}, - [5177] = {.lex_state = 349, .external_lex_state = 5}, - [5178] = {.lex_state = 349, .external_lex_state = 8}, - [5179] = {.lex_state = 349, .external_lex_state = 5}, + [5177] = {.lex_state = 45, .external_lex_state = 2}, + [5178] = {.lex_state = 45, .external_lex_state = 2}, + [5179] = {.lex_state = 45, .external_lex_state = 2}, [5180] = {.lex_state = 349, .external_lex_state = 5}, - [5181] = {.lex_state = 349, .external_lex_state = 5}, - [5182] = {.lex_state = 45, .external_lex_state = 2}, + [5181] = {.lex_state = 45, .external_lex_state = 2}, + [5182] = {.lex_state = 349, .external_lex_state = 5}, [5183] = {.lex_state = 349, .external_lex_state = 2}, - [5184] = {.lex_state = 349, .external_lex_state = 5}, + [5184] = {.lex_state = 349, .external_lex_state = 2}, [5185] = {.lex_state = 349, .external_lex_state = 5}, - [5186] = {.lex_state = 349, .external_lex_state = 5}, - [5187] = {.lex_state = 349, .external_lex_state = 5}, + [5186] = {.lex_state = 45, .external_lex_state = 2}, + [5187] = {.lex_state = 45, .external_lex_state = 2}, [5188] = {.lex_state = 349, .external_lex_state = 5}, - [5189] = {.lex_state = 349, .external_lex_state = 6}, + [5189] = {.lex_state = 349, .external_lex_state = 5}, [5190] = {.lex_state = 45, .external_lex_state = 2}, - [5191] = {.lex_state = 47, .external_lex_state = 2}, + [5191] = {.lex_state = 45, .external_lex_state = 2}, [5192] = {.lex_state = 349, .external_lex_state = 5}, [5193] = {.lex_state = 349, .external_lex_state = 5}, - [5194] = {.lex_state = 349, .external_lex_state = 2}, - [5195] = {.lex_state = 45, .external_lex_state = 5}, - [5196] = {.lex_state = 45, .external_lex_state = 2}, - [5197] = {.lex_state = 349, .external_lex_state = 5}, - [5198] = {.lex_state = 45, .external_lex_state = 2}, + [5194] = {.lex_state = 45, .external_lex_state = 2}, + [5195] = {.lex_state = 349, .external_lex_state = 5}, + [5196] = {.lex_state = 349, .external_lex_state = 5}, + [5197] = {.lex_state = 349, .external_lex_state = 2}, + [5198] = {.lex_state = 349, .external_lex_state = 5}, [5199] = {.lex_state = 349, .external_lex_state = 5}, - [5200] = {.lex_state = 45, .external_lex_state = 2}, - [5201] = {.lex_state = 349, .external_lex_state = 5}, - [5202] = {.lex_state = 47, .external_lex_state = 2}, + [5200] = {.lex_state = 349, .external_lex_state = 5}, + [5201] = {.lex_state = 45, .external_lex_state = 2}, + [5202] = {.lex_state = 45, .external_lex_state = 2}, [5203] = {.lex_state = 349, .external_lex_state = 5}, [5204] = {.lex_state = 349, .external_lex_state = 5}, - [5205] = {.lex_state = 349, .external_lex_state = 6}, + [5205] = {.lex_state = 45, .external_lex_state = 2}, [5206] = {.lex_state = 349, .external_lex_state = 5}, - [5207] = {.lex_state = 45, .external_lex_state = 2}, - [5208] = {.lex_state = 45, .external_lex_state = 2}, + [5207] = {.lex_state = 349, .external_lex_state = 5}, + [5208] = {.lex_state = 46, .external_lex_state = 2}, [5209] = {.lex_state = 349, .external_lex_state = 5}, - [5210] = {.lex_state = 349, .external_lex_state = 5}, - [5211] = {.lex_state = 45, .external_lex_state = 5}, + [5210] = {.lex_state = 349, .external_lex_state = 6}, + [5211] = {.lex_state = 45, .external_lex_state = 2}, [5212] = {.lex_state = 349, .external_lex_state = 5}, - [5213] = {.lex_state = 45, .external_lex_state = 2}, - [5214] = {.lex_state = 349, .external_lex_state = 2}, - [5215] = {.lex_state = 349, .external_lex_state = 6}, - [5216] = {.lex_state = 349, .external_lex_state = 5}, - [5217] = {.lex_state = 349, .external_lex_state = 5}, - [5218] = {.lex_state = 349, .external_lex_state = 5}, - [5219] = {.lex_state = 349, .external_lex_state = 5}, - [5220] = {.lex_state = 62, .external_lex_state = 2}, + [5213] = {.lex_state = 349, .external_lex_state = 5}, + [5214] = {.lex_state = 45, .external_lex_state = 5}, + [5215] = {.lex_state = 45, .external_lex_state = 2}, + [5216] = {.lex_state = 349, .external_lex_state = 2}, + [5217] = {.lex_state = 45, .external_lex_state = 2}, + [5218] = {.lex_state = 45, .external_lex_state = 5}, + [5219] = {.lex_state = 62, .external_lex_state = 2}, + [5220] = {.lex_state = 349, .external_lex_state = 5}, [5221] = {.lex_state = 349, .external_lex_state = 5}, [5222] = {.lex_state = 45, .external_lex_state = 2}, [5223] = {.lex_state = 349, .external_lex_state = 5}, - [5224] = {.lex_state = 349, .external_lex_state = 8}, + [5224] = {.lex_state = 349, .external_lex_state = 5}, [5225] = {.lex_state = 45, .external_lex_state = 2}, - [5226] = {.lex_state = 349, .external_lex_state = 2}, + [5226] = {.lex_state = 45, .external_lex_state = 2}, [5227] = {.lex_state = 349, .external_lex_state = 5}, - [5228] = {.lex_state = 349, .external_lex_state = 2}, + [5228] = {.lex_state = 349, .external_lex_state = 5}, [5229] = {.lex_state = 349, .external_lex_state = 5}, [5230] = {.lex_state = 349, .external_lex_state = 5}, - [5231] = {.lex_state = 349, .external_lex_state = 2}, + [5231] = {.lex_state = 349, .external_lex_state = 5}, [5232] = {.lex_state = 349, .external_lex_state = 5}, - [5233] = {.lex_state = 349, .external_lex_state = 5}, - [5234] = {.lex_state = 45, .external_lex_state = 2}, + [5233] = {.lex_state = 45, .external_lex_state = 2}, + [5234] = {.lex_state = 349, .external_lex_state = 5}, [5235] = {.lex_state = 349, .external_lex_state = 5}, [5236] = {.lex_state = 349, .external_lex_state = 5}, [5237] = {.lex_state = 349, .external_lex_state = 5}, - [5238] = {.lex_state = 349, .external_lex_state = 6}, + [5238] = {.lex_state = 349, .external_lex_state = 5}, [5239] = {.lex_state = 349, .external_lex_state = 5}, [5240] = {.lex_state = 349, .external_lex_state = 5}, - [5241] = {.lex_state = 45, .external_lex_state = 2}, - [5242] = {.lex_state = 349, .external_lex_state = 2}, + [5241] = {.lex_state = 349, .external_lex_state = 2}, + [5242] = {.lex_state = 349, .external_lex_state = 5}, [5243] = {.lex_state = 349, .external_lex_state = 5}, [5244] = {.lex_state = 349, .external_lex_state = 5}, [5245] = {.lex_state = 349, .external_lex_state = 5}, @@ -25729,730 +25510,730 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5247] = {.lex_state = 349, .external_lex_state = 5}, [5248] = {.lex_state = 349, .external_lex_state = 5}, [5249] = {.lex_state = 349, .external_lex_state = 5}, - [5250] = {.lex_state = 349, .external_lex_state = 5}, - [5251] = {.lex_state = 349, .external_lex_state = 2}, - [5252] = {.lex_state = 349, .external_lex_state = 6}, + [5250] = {.lex_state = 349, .external_lex_state = 6}, + [5251] = {.lex_state = 349, .external_lex_state = 5}, + [5252] = {.lex_state = 349, .external_lex_state = 5}, [5253] = {.lex_state = 349, .external_lex_state = 5}, [5254] = {.lex_state = 349, .external_lex_state = 5}, - [5255] = {.lex_state = 349, .external_lex_state = 2}, - [5256] = {.lex_state = 349, .external_lex_state = 5}, + [5255] = {.lex_state = 349, .external_lex_state = 5}, + [5256] = {.lex_state = 349, .external_lex_state = 8}, [5257] = {.lex_state = 349, .external_lex_state = 5}, - [5258] = {.lex_state = 45, .external_lex_state = 2}, - [5259] = {.lex_state = 45, .external_lex_state = 2}, - [5260] = {.lex_state = 349, .external_lex_state = 5}, - [5261] = {.lex_state = 349, .external_lex_state = 8}, - [5262] = {.lex_state = 349, .external_lex_state = 2}, + [5258] = {.lex_state = 62, .external_lex_state = 2}, + [5259] = {.lex_state = 349, .external_lex_state = 5}, + [5260] = {.lex_state = 45, .external_lex_state = 2}, + [5261] = {.lex_state = 349, .external_lex_state = 5}, + [5262] = {.lex_state = 349, .external_lex_state = 5}, [5263] = {.lex_state = 349, .external_lex_state = 5}, [5264] = {.lex_state = 349, .external_lex_state = 5}, - [5265] = {.lex_state = 45, .external_lex_state = 5}, - [5266] = {.lex_state = 45, .external_lex_state = 2}, - [5267] = {.lex_state = 349, .external_lex_state = 8}, + [5265] = {.lex_state = 349, .external_lex_state = 6}, + [5266] = {.lex_state = 349, .external_lex_state = 5}, + [5267] = {.lex_state = 349, .external_lex_state = 5}, [5268] = {.lex_state = 349, .external_lex_state = 5}, [5269] = {.lex_state = 349, .external_lex_state = 5}, [5270] = {.lex_state = 349, .external_lex_state = 5}, - [5271] = {.lex_state = 349, .external_lex_state = 2}, - [5272] = {.lex_state = 349, .external_lex_state = 5}, - [5273] = {.lex_state = 62, .external_lex_state = 2}, - [5274] = {.lex_state = 349, .external_lex_state = 5}, + [5271] = {.lex_state = 45, .external_lex_state = 5}, + [5272] = {.lex_state = 349, .external_lex_state = 6}, + [5273] = {.lex_state = 349, .external_lex_state = 5}, + [5274] = {.lex_state = 45, .external_lex_state = 5}, [5275] = {.lex_state = 349, .external_lex_state = 5}, - [5276] = {.lex_state = 349, .external_lex_state = 5}, + [5276] = {.lex_state = 349, .external_lex_state = 6}, [5277] = {.lex_state = 349, .external_lex_state = 5}, [5278] = {.lex_state = 349, .external_lex_state = 5}, [5279] = {.lex_state = 349, .external_lex_state = 5}, [5280] = {.lex_state = 349, .external_lex_state = 5}, - [5281] = {.lex_state = 349, .external_lex_state = 8}, - [5282] = {.lex_state = 349, .external_lex_state = 5}, + [5281] = {.lex_state = 45, .external_lex_state = 2}, + [5282] = {.lex_state = 349, .external_lex_state = 6}, [5283] = {.lex_state = 349, .external_lex_state = 5}, [5284] = {.lex_state = 349, .external_lex_state = 5}, - [5285] = {.lex_state = 349, .external_lex_state = 5}, - [5286] = {.lex_state = 45, .external_lex_state = 2}, - [5287] = {.lex_state = 45, .external_lex_state = 2}, - [5288] = {.lex_state = 349, .external_lex_state = 6}, - [5289] = {.lex_state = 349, .external_lex_state = 5}, - [5290] = {.lex_state = 62, .external_lex_state = 2}, - [5291] = {.lex_state = 349, .external_lex_state = 5}, + [5285] = {.lex_state = 45, .external_lex_state = 2}, + [5286] = {.lex_state = 349, .external_lex_state = 6}, + [5287] = {.lex_state = 349, .external_lex_state = 5}, + [5288] = {.lex_state = 349, .external_lex_state = 5}, + [5289] = {.lex_state = 45, .external_lex_state = 2}, + [5290] = {.lex_state = 349, .external_lex_state = 5}, + [5291] = {.lex_state = 45, .external_lex_state = 2}, [5292] = {.lex_state = 45, .external_lex_state = 2}, [5293] = {.lex_state = 349, .external_lex_state = 5}, [5294] = {.lex_state = 349, .external_lex_state = 5}, [5295] = {.lex_state = 349, .external_lex_state = 5}, - [5296] = {.lex_state = 349, .external_lex_state = 2}, - [5297] = {.lex_state = 45, .external_lex_state = 2}, - [5298] = {.lex_state = 45, .external_lex_state = 2}, - [5299] = {.lex_state = 349, .external_lex_state = 5}, - [5300] = {.lex_state = 45, .external_lex_state = 2}, - [5301] = {.lex_state = 349, .external_lex_state = 8}, + [5296] = {.lex_state = 349, .external_lex_state = 5}, + [5297] = {.lex_state = 349, .external_lex_state = 5}, + [5298] = {.lex_state = 349, .external_lex_state = 5}, + [5299] = {.lex_state = 45, .external_lex_state = 2}, + [5300] = {.lex_state = 349, .external_lex_state = 5}, + [5301] = {.lex_state = 349, .external_lex_state = 5}, [5302] = {.lex_state = 349, .external_lex_state = 5}, [5303] = {.lex_state = 349, .external_lex_state = 5}, - [5304] = {.lex_state = 349, .external_lex_state = 5}, - [5305] = {.lex_state = 45, .external_lex_state = 2}, + [5304] = {.lex_state = 349, .external_lex_state = 2}, + [5305] = {.lex_state = 349, .external_lex_state = 5}, [5306] = {.lex_state = 349, .external_lex_state = 5}, - [5307] = {.lex_state = 349, .external_lex_state = 5}, - [5308] = {.lex_state = 349, .external_lex_state = 5}, + [5307] = {.lex_state = 349, .external_lex_state = 6}, + [5308] = {.lex_state = 45, .external_lex_state = 5}, [5309] = {.lex_state = 349, .external_lex_state = 5}, - [5310] = {.lex_state = 349, .external_lex_state = 5}, - [5311] = {.lex_state = 349, .external_lex_state = 5}, + [5310] = {.lex_state = 46, .external_lex_state = 2}, + [5311] = {.lex_state = 46, .external_lex_state = 2}, [5312] = {.lex_state = 349, .external_lex_state = 5}, - [5313] = {.lex_state = 349, .external_lex_state = 2}, + [5313] = {.lex_state = 45, .external_lex_state = 2}, [5314] = {.lex_state = 349, .external_lex_state = 5}, - [5315] = {.lex_state = 45, .external_lex_state = 2}, - [5316] = {.lex_state = 349, .external_lex_state = 5}, + [5315] = {.lex_state = 349, .external_lex_state = 5}, + [5316] = {.lex_state = 45, .external_lex_state = 2}, [5317] = {.lex_state = 349, .external_lex_state = 5}, - [5318] = {.lex_state = 62, .external_lex_state = 2}, + [5318] = {.lex_state = 349, .external_lex_state = 6}, [5319] = {.lex_state = 349, .external_lex_state = 5}, [5320] = {.lex_state = 349, .external_lex_state = 5}, - [5321] = {.lex_state = 349, .external_lex_state = 6}, - [5322] = {.lex_state = 349, .external_lex_state = 5}, - [5323] = {.lex_state = 45, .external_lex_state = 5}, + [5321] = {.lex_state = 349, .external_lex_state = 5}, + [5322] = {.lex_state = 45, .external_lex_state = 2}, + [5323] = {.lex_state = 349, .external_lex_state = 5}, [5324] = {.lex_state = 349, .external_lex_state = 5}, [5325] = {.lex_state = 349, .external_lex_state = 5}, - [5326] = {.lex_state = 45, .external_lex_state = 2}, - [5327] = {.lex_state = 349, .external_lex_state = 5}, - [5328] = {.lex_state = 349, .external_lex_state = 2}, + [5326] = {.lex_state = 349, .external_lex_state = 5}, + [5327] = {.lex_state = 45, .external_lex_state = 5}, + [5328] = {.lex_state = 349, .external_lex_state = 5}, [5329] = {.lex_state = 349, .external_lex_state = 5}, [5330] = {.lex_state = 349, .external_lex_state = 5}, - [5331] = {.lex_state = 45, .external_lex_state = 2}, - [5332] = {.lex_state = 45, .external_lex_state = 2}, - [5333] = {.lex_state = 47, .external_lex_state = 2}, + [5331] = {.lex_state = 349, .external_lex_state = 5}, + [5332] = {.lex_state = 349, .external_lex_state = 5}, + [5333] = {.lex_state = 349, .external_lex_state = 5}, [5334] = {.lex_state = 349, .external_lex_state = 5}, [5335] = {.lex_state = 349, .external_lex_state = 5}, - [5336] = {.lex_state = 45, .external_lex_state = 2}, - [5337] = {.lex_state = 45, .external_lex_state = 2}, - [5338] = {.lex_state = 349, .external_lex_state = 6}, - [5339] = {.lex_state = 45, .external_lex_state = 5}, - [5340] = {.lex_state = 45, .external_lex_state = 2}, + [5336] = {.lex_state = 45, .external_lex_state = 5}, + [5337] = {.lex_state = 349, .external_lex_state = 5}, + [5338] = {.lex_state = 349, .external_lex_state = 5}, + [5339] = {.lex_state = 349, .external_lex_state = 5}, + [5340] = {.lex_state = 349, .external_lex_state = 5}, [5341] = {.lex_state = 349, .external_lex_state = 5}, - [5342] = {.lex_state = 45, .external_lex_state = 2}, - [5343] = {.lex_state = 45, .external_lex_state = 2}, + [5342] = {.lex_state = 349, .external_lex_state = 5}, + [5343] = {.lex_state = 45, .external_lex_state = 5}, [5344] = {.lex_state = 349, .external_lex_state = 6}, [5345] = {.lex_state = 349, .external_lex_state = 5}, - [5346] = {.lex_state = 45, .external_lex_state = 2}, - [5347] = {.lex_state = 45, .external_lex_state = 2}, - [5348] = {.lex_state = 45, .external_lex_state = 2}, - [5349] = {.lex_state = 45, .external_lex_state = 2}, - [5350] = {.lex_state = 45, .external_lex_state = 2}, - [5351] = {.lex_state = 349, .external_lex_state = 2}, - [5352] = {.lex_state = 45, .external_lex_state = 2}, - [5353] = {.lex_state = 45, .external_lex_state = 2}, - [5354] = {.lex_state = 45, .external_lex_state = 2}, - [5355] = {.lex_state = 349, .external_lex_state = 5}, + [5346] = {.lex_state = 349, .external_lex_state = 2}, + [5347] = {.lex_state = 349, .external_lex_state = 5}, + [5348] = {.lex_state = 349, .external_lex_state = 5}, + [5349] = {.lex_state = 349, .external_lex_state = 5}, + [5350] = {.lex_state = 349, .external_lex_state = 5}, + [5351] = {.lex_state = 349, .external_lex_state = 5}, + [5352] = {.lex_state = 349, .external_lex_state = 6}, + [5353] = {.lex_state = 349, .external_lex_state = 5}, + [5354] = {.lex_state = 45, .external_lex_state = 5}, + [5355] = {.lex_state = 349, .external_lex_state = 6}, [5356] = {.lex_state = 349, .external_lex_state = 5}, - [5357] = {.lex_state = 46, .external_lex_state = 2}, - [5358] = {.lex_state = 349, .external_lex_state = 5}, + [5357] = {.lex_state = 349, .external_lex_state = 5}, + [5358] = {.lex_state = 62, .external_lex_state = 2}, [5359] = {.lex_state = 349, .external_lex_state = 5}, [5360] = {.lex_state = 349, .external_lex_state = 5}, [5361] = {.lex_state = 349, .external_lex_state = 5}, [5362] = {.lex_state = 349, .external_lex_state = 5}, - [5363] = {.lex_state = 349, .external_lex_state = 5}, + [5363] = {.lex_state = 349, .external_lex_state = 6}, [5364] = {.lex_state = 349, .external_lex_state = 5}, [5365] = {.lex_state = 349, .external_lex_state = 5}, - [5366] = {.lex_state = 349, .external_lex_state = 2}, - [5367] = {.lex_state = 349, .external_lex_state = 2}, - [5368] = {.lex_state = 45, .external_lex_state = 2}, - [5369] = {.lex_state = 45, .external_lex_state = 2}, - [5370] = {.lex_state = 45, .external_lex_state = 2}, - [5371] = {.lex_state = 45, .external_lex_state = 2}, + [5366] = {.lex_state = 349, .external_lex_state = 5}, + [5367] = {.lex_state = 349, .external_lex_state = 5}, + [5368] = {.lex_state = 349, .external_lex_state = 5}, + [5369] = {.lex_state = 349, .external_lex_state = 5}, + [5370] = {.lex_state = 349, .external_lex_state = 5}, + [5371] = {.lex_state = 349, .external_lex_state = 5}, [5372] = {.lex_state = 349, .external_lex_state = 5}, [5373] = {.lex_state = 45, .external_lex_state = 2}, - [5374] = {.lex_state = 349, .external_lex_state = 5}, - [5375] = {.lex_state = 349, .external_lex_state = 5}, - [5376] = {.lex_state = 349, .external_lex_state = 8}, + [5374] = {.lex_state = 54, .external_lex_state = 9}, + [5375] = {.lex_state = 58, .external_lex_state = 9}, + [5376] = {.lex_state = 58, .external_lex_state = 9}, [5377] = {.lex_state = 349, .external_lex_state = 5}, - [5378] = {.lex_state = 45, .external_lex_state = 2}, + [5378] = {.lex_state = 54, .external_lex_state = 9}, [5379] = {.lex_state = 349, .external_lex_state = 5}, - [5380] = {.lex_state = 349, .external_lex_state = 2}, + [5380] = {.lex_state = 349, .external_lex_state = 5}, [5381] = {.lex_state = 349, .external_lex_state = 5}, [5382] = {.lex_state = 349, .external_lex_state = 5}, - [5383] = {.lex_state = 45, .external_lex_state = 2}, + [5383] = {.lex_state = 54, .external_lex_state = 9}, [5384] = {.lex_state = 349, .external_lex_state = 5}, - [5385] = {.lex_state = 349, .external_lex_state = 5}, - [5386] = {.lex_state = 45, .external_lex_state = 2}, - [5387] = {.lex_state = 349, .external_lex_state = 2}, + [5385] = {.lex_state = 58, .external_lex_state = 9}, + [5386] = {.lex_state = 58, .external_lex_state = 9}, + [5387] = {.lex_state = 54, .external_lex_state = 9}, [5388] = {.lex_state = 349, .external_lex_state = 5}, - [5389] = {.lex_state = 349, .external_lex_state = 6}, - [5390] = {.lex_state = 45, .external_lex_state = 5}, - [5391] = {.lex_state = 349, .external_lex_state = 6}, - [5392] = {.lex_state = 349, .external_lex_state = 5}, - [5393] = {.lex_state = 349, .external_lex_state = 6}, - [5394] = {.lex_state = 45, .external_lex_state = 2}, - [5395] = {.lex_state = 45, .external_lex_state = 2}, - [5396] = {.lex_state = 349, .external_lex_state = 6}, - [5397] = {.lex_state = 45, .external_lex_state = 5}, - [5398] = {.lex_state = 349, .external_lex_state = 5}, - [5399] = {.lex_state = 349, .external_lex_state = 5}, - [5400] = {.lex_state = 349, .external_lex_state = 5}, + [5389] = {.lex_state = 349, .external_lex_state = 5}, + [5390] = {.lex_state = 54, .external_lex_state = 9}, + [5391] = {.lex_state = 45, .external_lex_state = 2}, + [5392] = {.lex_state = 58, .external_lex_state = 9}, + [5393] = {.lex_state = 45, .external_lex_state = 2}, + [5394] = {.lex_state = 349, .external_lex_state = 5}, + [5395] = {.lex_state = 349, .external_lex_state = 5}, + [5396] = {.lex_state = 349, .external_lex_state = 5}, + [5397] = {.lex_state = 1, .external_lex_state = 2}, + [5398] = {.lex_state = 54, .external_lex_state = 9}, + [5399] = {.lex_state = 58, .external_lex_state = 9}, + [5400] = {.lex_state = 45, .external_lex_state = 2}, [5401] = {.lex_state = 45, .external_lex_state = 2}, - [5402] = {.lex_state = 349, .external_lex_state = 5}, - [5403] = {.lex_state = 349, .external_lex_state = 5}, - [5404] = {.lex_state = 349, .external_lex_state = 5}, - [5405] = {.lex_state = 349, .external_lex_state = 5}, + [5402] = {.lex_state = 54, .external_lex_state = 9}, + [5403] = {.lex_state = 58, .external_lex_state = 9}, + [5404] = {.lex_state = 349, .external_lex_state = 2}, + [5405] = {.lex_state = 45, .external_lex_state = 2}, [5406] = {.lex_state = 45, .external_lex_state = 2}, - [5407] = {.lex_state = 45, .external_lex_state = 2}, - [5408] = {.lex_state = 45, .external_lex_state = 2}, - [5409] = {.lex_state = 45, .external_lex_state = 2}, - [5410] = {.lex_state = 349, .external_lex_state = 5}, - [5411] = {.lex_state = 349, .external_lex_state = 5}, - [5412] = {.lex_state = 349, .external_lex_state = 5}, + [5407] = {.lex_state = 54, .external_lex_state = 9}, + [5408] = {.lex_state = 58, .external_lex_state = 9}, + [5409] = {.lex_state = 54, .external_lex_state = 9}, + [5410] = {.lex_state = 58, .external_lex_state = 9}, + [5411] = {.lex_state = 45, .external_lex_state = 2}, + [5412] = {.lex_state = 54, .external_lex_state = 9}, [5413] = {.lex_state = 349, .external_lex_state = 5}, - [5414] = {.lex_state = 349, .external_lex_state = 5}, - [5415] = {.lex_state = 45, .external_lex_state = 2}, - [5416] = {.lex_state = 349, .external_lex_state = 5}, - [5417] = {.lex_state = 45, .external_lex_state = 2}, - [5418] = {.lex_state = 45, .external_lex_state = 2}, - [5419] = {.lex_state = 45, .external_lex_state = 2}, - [5420] = {.lex_state = 45, .external_lex_state = 2}, + [5414] = {.lex_state = 58, .external_lex_state = 9}, + [5415] = {.lex_state = 54, .external_lex_state = 9}, + [5416] = {.lex_state = 58, .external_lex_state = 9}, + [5417] = {.lex_state = 54, .external_lex_state = 9}, + [5418] = {.lex_state = 349, .external_lex_state = 5}, + [5419] = {.lex_state = 349, .external_lex_state = 5}, + [5420] = {.lex_state = 349, .external_lex_state = 5}, [5421] = {.lex_state = 349, .external_lex_state = 5}, - [5422] = {.lex_state = 45, .external_lex_state = 2}, - [5423] = {.lex_state = 45, .external_lex_state = 2}, - [5424] = {.lex_state = 349, .external_lex_state = 2}, - [5425] = {.lex_state = 45, .external_lex_state = 2}, - [5426] = {.lex_state = 349, .external_lex_state = 6}, - [5427] = {.lex_state = 349, .external_lex_state = 5}, - [5428] = {.lex_state = 45, .external_lex_state = 2}, - [5429] = {.lex_state = 349, .external_lex_state = 5}, - [5430] = {.lex_state = 349, .external_lex_state = 2}, - [5431] = {.lex_state = 349, .external_lex_state = 5}, - [5432] = {.lex_state = 349, .external_lex_state = 5}, - [5433] = {.lex_state = 349, .external_lex_state = 5}, - [5434] = {.lex_state = 45, .external_lex_state = 2}, - [5435] = {.lex_state = 45, .external_lex_state = 2}, - [5436] = {.lex_state = 349, .external_lex_state = 5}, - [5437] = {.lex_state = 349, .external_lex_state = 5}, + [5422] = {.lex_state = 58, .external_lex_state = 9}, + [5423] = {.lex_state = 54, .external_lex_state = 9}, + [5424] = {.lex_state = 58, .external_lex_state = 9}, + [5425] = {.lex_state = 54, .external_lex_state = 9}, + [5426] = {.lex_state = 58, .external_lex_state = 9}, + [5427] = {.lex_state = 54, .external_lex_state = 9}, + [5428] = {.lex_state = 58, .external_lex_state = 9}, + [5429] = {.lex_state = 45, .external_lex_state = 2}, + [5430] = {.lex_state = 54, .external_lex_state = 9}, + [5431] = {.lex_state = 58, .external_lex_state = 9}, + [5432] = {.lex_state = 45, .external_lex_state = 2}, + [5433] = {.lex_state = 54, .external_lex_state = 9}, + [5434] = {.lex_state = 58, .external_lex_state = 9}, + [5435] = {.lex_state = 54, .external_lex_state = 9}, + [5436] = {.lex_state = 58, .external_lex_state = 9}, + [5437] = {.lex_state = 45, .external_lex_state = 2}, [5438] = {.lex_state = 349, .external_lex_state = 5}, - [5439] = {.lex_state = 349, .external_lex_state = 8}, + [5439] = {.lex_state = 349, .external_lex_state = 5}, [5440] = {.lex_state = 349, .external_lex_state = 5}, [5441] = {.lex_state = 349, .external_lex_state = 5}, - [5442] = {.lex_state = 349, .external_lex_state = 2}, - [5443] = {.lex_state = 45, .external_lex_state = 2}, + [5442] = {.lex_state = 45, .external_lex_state = 2}, + [5443] = {.lex_state = 349, .external_lex_state = 5}, [5444] = {.lex_state = 349, .external_lex_state = 2}, - [5445] = {.lex_state = 349, .external_lex_state = 5}, + [5445] = {.lex_state = 45, .external_lex_state = 2}, [5446] = {.lex_state = 349, .external_lex_state = 2}, - [5447] = {.lex_state = 45, .external_lex_state = 2}, - [5448] = {.lex_state = 62, .external_lex_state = 2}, + [5447] = {.lex_state = 349, .external_lex_state = 5}, + [5448] = {.lex_state = 24, .external_lex_state = 2}, [5449] = {.lex_state = 45, .external_lex_state = 2}, - [5450] = {.lex_state = 349, .external_lex_state = 5}, - [5451] = {.lex_state = 349, .external_lex_state = 8}, + [5450] = {.lex_state = 45, .external_lex_state = 2}, + [5451] = {.lex_state = 70, .external_lex_state = 2}, [5452] = {.lex_state = 45, .external_lex_state = 2}, - [5453] = {.lex_state = 349, .external_lex_state = 6}, - [5454] = {.lex_state = 349, .external_lex_state = 5}, + [5453] = {.lex_state = 349, .external_lex_state = 5}, + [5454] = {.lex_state = 45, .external_lex_state = 2}, [5455] = {.lex_state = 45, .external_lex_state = 2}, - [5456] = {.lex_state = 349, .external_lex_state = 5}, - [5457] = {.lex_state = 45, .external_lex_state = 5}, - [5458] = {.lex_state = 349, .external_lex_state = 5}, - [5459] = {.lex_state = 349, .external_lex_state = 5}, - [5460] = {.lex_state = 349, .external_lex_state = 5}, - [5461] = {.lex_state = 349, .external_lex_state = 2}, - [5462] = {.lex_state = 349, .external_lex_state = 6}, - [5463] = {.lex_state = 45, .external_lex_state = 5}, - [5464] = {.lex_state = 45, .external_lex_state = 2}, - [5465] = {.lex_state = 349, .external_lex_state = 5}, - [5466] = {.lex_state = 349, .external_lex_state = 5}, - [5467] = {.lex_state = 349, .external_lex_state = 5}, - [5468] = {.lex_state = 45, .external_lex_state = 2}, - [5469] = {.lex_state = 349, .external_lex_state = 2}, + [5456] = {.lex_state = 45, .external_lex_state = 2}, + [5457] = {.lex_state = 24, .external_lex_state = 2}, + [5458] = {.lex_state = 24, .external_lex_state = 2}, + [5459] = {.lex_state = 24, .external_lex_state = 2}, + [5460] = {.lex_state = 47, .external_lex_state = 2}, + [5461] = {.lex_state = 45, .external_lex_state = 2}, + [5462] = {.lex_state = 349, .external_lex_state = 5}, + [5463] = {.lex_state = 349, .external_lex_state = 2}, + [5464] = {.lex_state = 46, .external_lex_state = 2}, + [5465] = {.lex_state = 58, .external_lex_state = 9}, + [5466] = {.lex_state = 54, .external_lex_state = 9}, + [5467] = {.lex_state = 45, .external_lex_state = 2}, + [5468] = {.lex_state = 349, .external_lex_state = 5}, + [5469] = {.lex_state = 349, .external_lex_state = 5}, [5470] = {.lex_state = 349, .external_lex_state = 5}, [5471] = {.lex_state = 349, .external_lex_state = 5}, [5472] = {.lex_state = 45, .external_lex_state = 2}, - [5473] = {.lex_state = 47, .external_lex_state = 2}, - [5474] = {.lex_state = 45, .external_lex_state = 5}, - [5475] = {.lex_state = 45, .external_lex_state = 2}, - [5476] = {.lex_state = 349, .external_lex_state = 6}, - [5477] = {.lex_state = 45, .external_lex_state = 2}, - [5478] = {.lex_state = 349, .external_lex_state = 6}, - [5479] = {.lex_state = 45, .external_lex_state = 5}, + [5473] = {.lex_state = 349, .external_lex_state = 5}, + [5474] = {.lex_state = 349, .external_lex_state = 5}, + [5475] = {.lex_state = 24, .external_lex_state = 2}, + [5476] = {.lex_state = 349, .external_lex_state = 7}, + [5477] = {.lex_state = 70, .external_lex_state = 2}, + [5478] = {.lex_state = 58, .external_lex_state = 9}, + [5479] = {.lex_state = 54, .external_lex_state = 9}, [5480] = {.lex_state = 45, .external_lex_state = 2}, [5481] = {.lex_state = 45, .external_lex_state = 2}, - [5482] = {.lex_state = 349, .external_lex_state = 6}, - [5483] = {.lex_state = 45, .external_lex_state = 2}, - [5484] = {.lex_state = 45, .external_lex_state = 2}, - [5485] = {.lex_state = 45, .external_lex_state = 2}, - [5486] = {.lex_state = 45, .external_lex_state = 2}, - [5487] = {.lex_state = 349, .external_lex_state = 5}, - [5488] = {.lex_state = 45, .external_lex_state = 2}, + [5482] = {.lex_state = 45, .external_lex_state = 2}, + [5483] = {.lex_state = 349, .external_lex_state = 5}, + [5484] = {.lex_state = 349, .external_lex_state = 5}, + [5485] = {.lex_state = 349, .external_lex_state = 5}, + [5486] = {.lex_state = 70, .external_lex_state = 2}, + [5487] = {.lex_state = 349, .external_lex_state = 7}, + [5488] = {.lex_state = 349, .external_lex_state = 5}, [5489] = {.lex_state = 349, .external_lex_state = 5}, - [5490] = {.lex_state = 349, .external_lex_state = 5}, + [5490] = {.lex_state = 45, .external_lex_state = 2}, [5491] = {.lex_state = 45, .external_lex_state = 2}, - [5492] = {.lex_state = 349, .external_lex_state = 5}, + [5492] = {.lex_state = 45, .external_lex_state = 2}, [5493] = {.lex_state = 45, .external_lex_state = 2}, - [5494] = {.lex_state = 349, .external_lex_state = 2}, - [5495] = {.lex_state = 46, .external_lex_state = 2}, - [5496] = {.lex_state = 46, .external_lex_state = 2}, - [5497] = {.lex_state = 349, .external_lex_state = 5}, - [5498] = {.lex_state = 45, .external_lex_state = 2}, - [5499] = {.lex_state = 349, .external_lex_state = 2}, + [5494] = {.lex_state = 45, .external_lex_state = 2}, + [5495] = {.lex_state = 45, .external_lex_state = 2}, + [5496] = {.lex_state = 349, .external_lex_state = 2}, + [5497] = {.lex_state = 45, .external_lex_state = 2}, + [5498] = {.lex_state = 349, .external_lex_state = 2}, + [5499] = {.lex_state = 45, .external_lex_state = 2}, [5500] = {.lex_state = 45, .external_lex_state = 2}, - [5501] = {.lex_state = 349, .external_lex_state = 6}, - [5502] = {.lex_state = 349, .external_lex_state = 5}, - [5503] = {.lex_state = 349, .external_lex_state = 5}, - [5504] = {.lex_state = 46, .external_lex_state = 5}, + [5501] = {.lex_state = 349, .external_lex_state = 5}, + [5502] = {.lex_state = 45, .external_lex_state = 2}, + [5503] = {.lex_state = 45, .external_lex_state = 2}, + [5504] = {.lex_state = 349, .external_lex_state = 5}, [5505] = {.lex_state = 349, .external_lex_state = 5}, [5506] = {.lex_state = 349, .external_lex_state = 5}, - [5507] = {.lex_state = 46, .external_lex_state = 5}, + [5507] = {.lex_state = 349, .external_lex_state = 5}, [5508] = {.lex_state = 349, .external_lex_state = 5}, - [5509] = {.lex_state = 45, .external_lex_state = 2}, - [5510] = {.lex_state = 349, .external_lex_state = 5}, - [5511] = {.lex_state = 45, .external_lex_state = 2}, - [5512] = {.lex_state = 45, .external_lex_state = 2}, + [5509] = {.lex_state = 349, .external_lex_state = 5}, + [5510] = {.lex_state = 45, .external_lex_state = 2}, + [5511] = {.lex_state = 349, .external_lex_state = 2}, + [5512] = {.lex_state = 349, .external_lex_state = 5}, [5513] = {.lex_state = 349, .external_lex_state = 5}, [5514] = {.lex_state = 349, .external_lex_state = 5}, - [5515] = {.lex_state = 349, .external_lex_state = 5}, - [5516] = {.lex_state = 349, .external_lex_state = 5}, - [5517] = {.lex_state = 349, .external_lex_state = 5}, - [5518] = {.lex_state = 349, .external_lex_state = 5}, - [5519] = {.lex_state = 349, .external_lex_state = 5}, - [5520] = {.lex_state = 54, .external_lex_state = 9}, + [5515] = {.lex_state = 47, .external_lex_state = 2}, + [5516] = {.lex_state = 349, .external_lex_state = 2}, + [5517] = {.lex_state = 70, .external_lex_state = 2}, + [5518] = {.lex_state = 45, .external_lex_state = 2}, + [5519] = {.lex_state = 45, .external_lex_state = 2}, + [5520] = {.lex_state = 45, .external_lex_state = 2}, [5521] = {.lex_state = 45, .external_lex_state = 2}, - [5522] = {.lex_state = 1, .external_lex_state = 2}, - [5523] = {.lex_state = 46, .external_lex_state = 2}, + [5522] = {.lex_state = 349, .external_lex_state = 2}, + [5523] = {.lex_state = 45, .external_lex_state = 2}, [5524] = {.lex_state = 45, .external_lex_state = 2}, - [5525] = {.lex_state = 349, .external_lex_state = 5}, + [5525] = {.lex_state = 349, .external_lex_state = 2}, [5526] = {.lex_state = 45, .external_lex_state = 2}, - [5527] = {.lex_state = 58, .external_lex_state = 9}, - [5528] = {.lex_state = 54, .external_lex_state = 9}, - [5529] = {.lex_state = 24, .external_lex_state = 2}, - [5530] = {.lex_state = 349, .external_lex_state = 5}, - [5531] = {.lex_state = 349, .external_lex_state = 7}, - [5532] = {.lex_state = 58, .external_lex_state = 9}, - [5533] = {.lex_state = 70, .external_lex_state = 2}, - [5534] = {.lex_state = 45, .external_lex_state = 2}, - [5535] = {.lex_state = 45, .external_lex_state = 2}, - [5536] = {.lex_state = 54, .external_lex_state = 9}, - [5537] = {.lex_state = 45, .external_lex_state = 2}, - [5538] = {.lex_state = 58, .external_lex_state = 9}, + [5527] = {.lex_state = 349, .external_lex_state = 2}, + [5528] = {.lex_state = 349, .external_lex_state = 6}, + [5529] = {.lex_state = 58, .external_lex_state = 9}, + [5530] = {.lex_state = 54, .external_lex_state = 9}, + [5531] = {.lex_state = 349, .external_lex_state = 5}, + [5532] = {.lex_state = 45, .external_lex_state = 2}, + [5533] = {.lex_state = 349, .external_lex_state = 5}, + [5534] = {.lex_state = 349, .external_lex_state = 2}, + [5535] = {.lex_state = 349, .external_lex_state = 5}, + [5536] = {.lex_state = 349, .external_lex_state = 5}, + [5537] = {.lex_state = 349, .external_lex_state = 5}, + [5538] = {.lex_state = 349, .external_lex_state = 5}, [5539] = {.lex_state = 45, .external_lex_state = 2}, - [5540] = {.lex_state = 54, .external_lex_state = 9}, - [5541] = {.lex_state = 349, .external_lex_state = 7}, - [5542] = {.lex_state = 45, .external_lex_state = 2}, - [5543] = {.lex_state = 58, .external_lex_state = 9}, - [5544] = {.lex_state = 54, .external_lex_state = 9}, - [5545] = {.lex_state = 45, .external_lex_state = 2}, + [5540] = {.lex_state = 349, .external_lex_state = 5}, + [5541] = {.lex_state = 45, .external_lex_state = 2}, + [5542] = {.lex_state = 349, .external_lex_state = 5}, + [5543] = {.lex_state = 349, .external_lex_state = 5}, + [5544] = {.lex_state = 349, .external_lex_state = 5}, + [5545] = {.lex_state = 349, .external_lex_state = 5}, [5546] = {.lex_state = 58, .external_lex_state = 9}, - [5547] = {.lex_state = 45, .external_lex_state = 2}, - [5548] = {.lex_state = 54, .external_lex_state = 9}, - [5549] = {.lex_state = 45, .external_lex_state = 2}, - [5550] = {.lex_state = 58, .external_lex_state = 9}, - [5551] = {.lex_state = 54, .external_lex_state = 9}, - [5552] = {.lex_state = 45, .external_lex_state = 2}, - [5553] = {.lex_state = 45, .external_lex_state = 2}, - [5554] = {.lex_state = 349, .external_lex_state = 2}, - [5555] = {.lex_state = 349, .external_lex_state = 5}, + [5547] = {.lex_state = 54, .external_lex_state = 9}, + [5548] = {.lex_state = 349, .external_lex_state = 5}, + [5549] = {.lex_state = 349, .external_lex_state = 2}, + [5550] = {.lex_state = 45, .external_lex_state = 2}, + [5551] = {.lex_state = 45, .external_lex_state = 2}, + [5552] = {.lex_state = 58, .external_lex_state = 9}, + [5553] = {.lex_state = 54, .external_lex_state = 9}, + [5554] = {.lex_state = 45, .external_lex_state = 2}, + [5555] = {.lex_state = 21, .external_lex_state = 2}, [5556] = {.lex_state = 349, .external_lex_state = 5}, - [5557] = {.lex_state = 54, .external_lex_state = 9}, - [5558] = {.lex_state = 58, .external_lex_state = 9}, - [5559] = {.lex_state = 58, .external_lex_state = 9}, - [5560] = {.lex_state = 349, .external_lex_state = 5}, + [5557] = {.lex_state = 349, .external_lex_state = 5}, + [5558] = {.lex_state = 349, .external_lex_state = 5}, + [5559] = {.lex_state = 349, .external_lex_state = 5}, + [5560] = {.lex_state = 1, .external_lex_state = 2}, [5561] = {.lex_state = 349, .external_lex_state = 5}, - [5562] = {.lex_state = 349, .external_lex_state = 2}, + [5562] = {.lex_state = 349, .external_lex_state = 5}, [5563] = {.lex_state = 349, .external_lex_state = 5}, - [5564] = {.lex_state = 349, .external_lex_state = 2}, - [5565] = {.lex_state = 54, .external_lex_state = 9}, + [5564] = {.lex_state = 349, .external_lex_state = 5}, + [5565] = {.lex_state = 349, .external_lex_state = 5}, [5566] = {.lex_state = 349, .external_lex_state = 5}, - [5567] = {.lex_state = 58, .external_lex_state = 9}, - [5568] = {.lex_state = 54, .external_lex_state = 9}, - [5569] = {.lex_state = 45, .external_lex_state = 2}, - [5570] = {.lex_state = 45, .external_lex_state = 2}, - [5571] = {.lex_state = 45, .external_lex_state = 2}, - [5572] = {.lex_state = 45, .external_lex_state = 2}, - [5573] = {.lex_state = 45, .external_lex_state = 2}, - [5574] = {.lex_state = 70, .external_lex_state = 2}, - [5575] = {.lex_state = 45, .external_lex_state = 2}, - [5576] = {.lex_state = 45, .external_lex_state = 2}, - [5577] = {.lex_state = 45, .external_lex_state = 2}, - [5578] = {.lex_state = 54, .external_lex_state = 9}, - [5579] = {.lex_state = 349, .external_lex_state = 5}, - [5580] = {.lex_state = 58, .external_lex_state = 9}, - [5581] = {.lex_state = 58, .external_lex_state = 9}, - [5582] = {.lex_state = 54, .external_lex_state = 9}, + [5567] = {.lex_state = 349, .external_lex_state = 5}, + [5568] = {.lex_state = 349, .external_lex_state = 2}, + [5569] = {.lex_state = 349, .external_lex_state = 2}, + [5570] = {.lex_state = 349, .external_lex_state = 7}, + [5571] = {.lex_state = 58, .external_lex_state = 9}, + [5572] = {.lex_state = 349, .external_lex_state = 5}, + [5573] = {.lex_state = 54, .external_lex_state = 9}, + [5574] = {.lex_state = 45, .external_lex_state = 2}, + [5575] = {.lex_state = 58, .external_lex_state = 9}, + [5576] = {.lex_state = 1, .external_lex_state = 2}, + [5577] = {.lex_state = 54, .external_lex_state = 9}, + [5578] = {.lex_state = 58, .external_lex_state = 9}, + [5579] = {.lex_state = 54, .external_lex_state = 9}, + [5580] = {.lex_state = 349, .external_lex_state = 2}, + [5581] = {.lex_state = 45, .external_lex_state = 2}, + [5582] = {.lex_state = 349, .external_lex_state = 5}, [5583] = {.lex_state = 349, .external_lex_state = 5}, - [5584] = {.lex_state = 349, .external_lex_state = 5}, - [5585] = {.lex_state = 349, .external_lex_state = 5}, - [5586] = {.lex_state = 58, .external_lex_state = 9}, - [5587] = {.lex_state = 54, .external_lex_state = 9}, - [5588] = {.lex_state = 349, .external_lex_state = 5}, - [5589] = {.lex_state = 349, .external_lex_state = 2}, - [5590] = {.lex_state = 349, .external_lex_state = 5}, - [5591] = {.lex_state = 349, .external_lex_state = 2}, + [5584] = {.lex_state = 349, .external_lex_state = 2}, + [5585] = {.lex_state = 45, .external_lex_state = 2}, + [5586] = {.lex_state = 349, .external_lex_state = 5}, + [5587] = {.lex_state = 349, .external_lex_state = 2}, + [5588] = {.lex_state = 349, .external_lex_state = 2}, + [5589] = {.lex_state = 349, .external_lex_state = 5}, + [5590] = {.lex_state = 45, .external_lex_state = 2}, + [5591] = {.lex_state = 349, .external_lex_state = 5}, [5592] = {.lex_state = 349, .external_lex_state = 5}, - [5593] = {.lex_state = 58, .external_lex_state = 9}, + [5593] = {.lex_state = 349, .external_lex_state = 2}, [5594] = {.lex_state = 45, .external_lex_state = 2}, [5595] = {.lex_state = 349, .external_lex_state = 5}, - [5596] = {.lex_state = 54, .external_lex_state = 9}, - [5597] = {.lex_state = 349, .external_lex_state = 5}, - [5598] = {.lex_state = 349, .external_lex_state = 5}, - [5599] = {.lex_state = 349, .external_lex_state = 5}, - [5600] = {.lex_state = 349, .external_lex_state = 5}, - [5601] = {.lex_state = 349, .external_lex_state = 5}, + [5596] = {.lex_state = 349, .external_lex_state = 2}, + [5597] = {.lex_state = 1, .external_lex_state = 2}, + [5598] = {.lex_state = 45, .external_lex_state = 2}, + [5599] = {.lex_state = 349, .external_lex_state = 2}, + [5600] = {.lex_state = 58, .external_lex_state = 9}, + [5601] = {.lex_state = 54, .external_lex_state = 9}, [5602] = {.lex_state = 349, .external_lex_state = 5}, [5603] = {.lex_state = 349, .external_lex_state = 5}, [5604] = {.lex_state = 349, .external_lex_state = 5}, - [5605] = {.lex_state = 349, .external_lex_state = 5}, - [5606] = {.lex_state = 349, .external_lex_state = 2}, - [5607] = {.lex_state = 54, .external_lex_state = 9}, - [5608] = {.lex_state = 349, .external_lex_state = 5}, - [5609] = {.lex_state = 58, .external_lex_state = 9}, - [5610] = {.lex_state = 47, .external_lex_state = 2}, - [5611] = {.lex_state = 349, .external_lex_state = 2}, - [5612] = {.lex_state = 70, .external_lex_state = 2}, - [5613] = {.lex_state = 45, .external_lex_state = 2}, - [5614] = {.lex_state = 349, .external_lex_state = 5}, - [5615] = {.lex_state = 349, .external_lex_state = 2}, - [5616] = {.lex_state = 45, .external_lex_state = 2}, + [5605] = {.lex_state = 349, .external_lex_state = 2}, + [5606] = {.lex_state = 349, .external_lex_state = 5}, + [5607] = {.lex_state = 47, .external_lex_state = 5}, + [5608] = {.lex_state = 47, .external_lex_state = 5}, + [5609] = {.lex_state = 349, .external_lex_state = 5}, + [5610] = {.lex_state = 24, .external_lex_state = 2}, + [5611] = {.lex_state = 47, .external_lex_state = 2}, + [5612] = {.lex_state = 24, .external_lex_state = 2}, + [5613] = {.lex_state = 24, .external_lex_state = 2}, + [5614] = {.lex_state = 24, .external_lex_state = 2}, + [5615] = {.lex_state = 21, .external_lex_state = 2}, + [5616] = {.lex_state = 47, .external_lex_state = 2}, [5617] = {.lex_state = 45, .external_lex_state = 2}, - [5618] = {.lex_state = 54, .external_lex_state = 9}, - [5619] = {.lex_state = 58, .external_lex_state = 9}, - [5620] = {.lex_state = 45, .external_lex_state = 2}, - [5621] = {.lex_state = 349, .external_lex_state = 2}, - [5622] = {.lex_state = 349, .external_lex_state = 5}, - [5623] = {.lex_state = 45, .external_lex_state = 2}, + [5618] = {.lex_state = 24, .external_lex_state = 2}, + [5619] = {.lex_state = 24, .external_lex_state = 2}, + [5620] = {.lex_state = 349, .external_lex_state = 5}, + [5621] = {.lex_state = 24, .external_lex_state = 2}, + [5622] = {.lex_state = 24, .external_lex_state = 2}, + [5623] = {.lex_state = 349, .external_lex_state = 5}, [5624] = {.lex_state = 349, .external_lex_state = 2}, - [5625] = {.lex_state = 58, .external_lex_state = 9}, - [5626] = {.lex_state = 349, .external_lex_state = 6}, - [5627] = {.lex_state = 54, .external_lex_state = 9}, - [5628] = {.lex_state = 58, .external_lex_state = 9}, - [5629] = {.lex_state = 70, .external_lex_state = 2}, - [5630] = {.lex_state = 54, .external_lex_state = 9}, - [5631] = {.lex_state = 24, .external_lex_state = 2}, - [5632] = {.lex_state = 45, .external_lex_state = 2}, - [5633] = {.lex_state = 45, .external_lex_state = 2}, - [5634] = {.lex_state = 58, .external_lex_state = 9}, - [5635] = {.lex_state = 54, .external_lex_state = 9}, - [5636] = {.lex_state = 58, .external_lex_state = 9}, - [5637] = {.lex_state = 54, .external_lex_state = 9}, - [5638] = {.lex_state = 45, .external_lex_state = 2}, + [5625] = {.lex_state = 349, .external_lex_state = 5}, + [5626] = {.lex_state = 349, .external_lex_state = 2}, + [5627] = {.lex_state = 45, .external_lex_state = 2}, + [5628] = {.lex_state = 24, .external_lex_state = 2}, + [5629] = {.lex_state = 349, .external_lex_state = 5}, + [5630] = {.lex_state = 349, .external_lex_state = 2}, + [5631] = {.lex_state = 349, .external_lex_state = 2}, + [5632] = {.lex_state = 349, .external_lex_state = 2}, + [5633] = {.lex_state = 349, .external_lex_state = 5}, + [5634] = {.lex_state = 349, .external_lex_state = 2}, + [5635] = {.lex_state = 45, .external_lex_state = 2}, + [5636] = {.lex_state = 24, .external_lex_state = 2}, + [5637] = {.lex_state = 24, .external_lex_state = 2}, + [5638] = {.lex_state = 24, .external_lex_state = 2}, [5639] = {.lex_state = 349, .external_lex_state = 2}, [5640] = {.lex_state = 349, .external_lex_state = 2}, - [5641] = {.lex_state = 45, .external_lex_state = 2}, - [5642] = {.lex_state = 349, .external_lex_state = 5}, - [5643] = {.lex_state = 45, .external_lex_state = 2}, - [5644] = {.lex_state = 45, .external_lex_state = 2}, - [5645] = {.lex_state = 349, .external_lex_state = 5}, + [5641] = {.lex_state = 349, .external_lex_state = 2}, + [5642] = {.lex_state = 45, .external_lex_state = 2}, + [5643] = {.lex_state = 349, .external_lex_state = 2}, + [5644] = {.lex_state = 349, .external_lex_state = 2}, + [5645] = {.lex_state = 47, .external_lex_state = 5}, [5646] = {.lex_state = 349, .external_lex_state = 5}, [5647] = {.lex_state = 349, .external_lex_state = 5}, - [5648] = {.lex_state = 349, .external_lex_state = 5}, - [5649] = {.lex_state = 349, .external_lex_state = 5}, + [5648] = {.lex_state = 47, .external_lex_state = 5}, + [5649] = {.lex_state = 349, .external_lex_state = 2}, [5650] = {.lex_state = 349, .external_lex_state = 5}, - [5651] = {.lex_state = 45, .external_lex_state = 2}, + [5651] = {.lex_state = 349, .external_lex_state = 5}, [5652] = {.lex_state = 349, .external_lex_state = 5}, - [5653] = {.lex_state = 45, .external_lex_state = 2}, - [5654] = {.lex_state = 349, .external_lex_state = 5}, + [5653] = {.lex_state = 349, .external_lex_state = 5}, + [5654] = {.lex_state = 349, .external_lex_state = 2}, [5655] = {.lex_state = 349, .external_lex_state = 5}, - [5656] = {.lex_state = 349, .external_lex_state = 5}, - [5657] = {.lex_state = 349, .external_lex_state = 5}, - [5658] = {.lex_state = 349, .external_lex_state = 5}, - [5659] = {.lex_state = 45, .external_lex_state = 2}, - [5660] = {.lex_state = 349, .external_lex_state = 5}, - [5661] = {.lex_state = 47, .external_lex_state = 2}, - [5662] = {.lex_state = 24, .external_lex_state = 2}, + [5656] = {.lex_state = 349, .external_lex_state = 2}, + [5657] = {.lex_state = 349, .external_lex_state = 2}, + [5658] = {.lex_state = 349, .external_lex_state = 2}, + [5659] = {.lex_state = 349, .external_lex_state = 2}, + [5660] = {.lex_state = 349, .external_lex_state = 2}, + [5661] = {.lex_state = 349, .external_lex_state = 2}, + [5662] = {.lex_state = 349, .external_lex_state = 2}, [5663] = {.lex_state = 24, .external_lex_state = 2}, [5664] = {.lex_state = 349, .external_lex_state = 5}, [5665] = {.lex_state = 349, .external_lex_state = 5}, [5666] = {.lex_state = 349, .external_lex_state = 5}, [5667] = {.lex_state = 349, .external_lex_state = 5}, [5668] = {.lex_state = 349, .external_lex_state = 5}, - [5669] = {.lex_state = 24, .external_lex_state = 2}, - [5670] = {.lex_state = 45, .external_lex_state = 2}, - [5671] = {.lex_state = 349, .external_lex_state = 5}, - [5672] = {.lex_state = 349, .external_lex_state = 5}, - [5673] = {.lex_state = 45, .external_lex_state = 2}, + [5669] = {.lex_state = 349, .external_lex_state = 5}, + [5670] = {.lex_state = 349, .external_lex_state = 5}, + [5671] = {.lex_state = 45, .external_lex_state = 2}, + [5672] = {.lex_state = 54, .external_lex_state = 9}, + [5673] = {.lex_state = 349, .external_lex_state = 5}, [5674] = {.lex_state = 349, .external_lex_state = 5}, [5675] = {.lex_state = 349, .external_lex_state = 5}, - [5676] = {.lex_state = 45, .external_lex_state = 2}, - [5677] = {.lex_state = 21, .external_lex_state = 2}, + [5676] = {.lex_state = 349, .external_lex_state = 5}, + [5677] = {.lex_state = 349, .external_lex_state = 5}, [5678] = {.lex_state = 349, .external_lex_state = 5}, [5679] = {.lex_state = 349, .external_lex_state = 5}, - [5680] = {.lex_state = 45, .external_lex_state = 2}, - [5681] = {.lex_state = 349, .external_lex_state = 2}, - [5682] = {.lex_state = 349, .external_lex_state = 5}, - [5683] = {.lex_state = 45, .external_lex_state = 2}, - [5684] = {.lex_state = 1, .external_lex_state = 2}, + [5680] = {.lex_state = 349, .external_lex_state = 5}, + [5681] = {.lex_state = 349, .external_lex_state = 5}, + [5682] = {.lex_state = 58, .external_lex_state = 9}, + [5683] = {.lex_state = 349, .external_lex_state = 5}, + [5684] = {.lex_state = 70, .external_lex_state = 2}, [5685] = {.lex_state = 349, .external_lex_state = 5}, - [5686] = {.lex_state = 45, .external_lex_state = 2}, - [5687] = {.lex_state = 349, .external_lex_state = 2}, - [5688] = {.lex_state = 45, .external_lex_state = 2}, - [5689] = {.lex_state = 58, .external_lex_state = 9}, - [5690] = {.lex_state = 45, .external_lex_state = 2}, - [5691] = {.lex_state = 349, .external_lex_state = 2}, - [5692] = {.lex_state = 349, .external_lex_state = 7}, - [5693] = {.lex_state = 45, .external_lex_state = 2}, - [5694] = {.lex_state = 45, .external_lex_state = 2}, - [5695] = {.lex_state = 45, .external_lex_state = 2}, - [5696] = {.lex_state = 349, .external_lex_state = 5}, - [5697] = {.lex_state = 58, .external_lex_state = 9}, - [5698] = {.lex_state = 45, .external_lex_state = 2}, - [5699] = {.lex_state = 349, .external_lex_state = 5}, - [5700] = {.lex_state = 54, .external_lex_state = 9}, - [5701] = {.lex_state = 58, .external_lex_state = 9}, - [5702] = {.lex_state = 54, .external_lex_state = 9}, - [5703] = {.lex_state = 349, .external_lex_state = 2}, - [5704] = {.lex_state = 45, .external_lex_state = 2}, - [5705] = {.lex_state = 58, .external_lex_state = 9}, - [5706] = {.lex_state = 54, .external_lex_state = 9}, - [5707] = {.lex_state = 349, .external_lex_state = 2}, - [5708] = {.lex_state = 349, .external_lex_state = 5}, - [5709] = {.lex_state = 45, .external_lex_state = 2}, - [5710] = {.lex_state = 349, .external_lex_state = 5}, + [5686] = {.lex_state = 349, .external_lex_state = 2}, + [5687] = {.lex_state = 349, .external_lex_state = 5}, + [5688] = {.lex_state = 349, .external_lex_state = 5}, + [5689] = {.lex_state = 349, .external_lex_state = 5}, + [5690] = {.lex_state = 349, .external_lex_state = 5}, + [5691] = {.lex_state = 349, .external_lex_state = 5}, + [5692] = {.lex_state = 349, .external_lex_state = 2}, + [5693] = {.lex_state = 349, .external_lex_state = 5}, + [5694] = {.lex_state = 349, .external_lex_state = 2}, + [5695] = {.lex_state = 349, .external_lex_state = 5}, + [5696] = {.lex_state = 349, .external_lex_state = 2}, + [5697] = {.lex_state = 349, .external_lex_state = 2}, + [5698] = {.lex_state = 47, .external_lex_state = 5}, + [5699] = {.lex_state = 47, .external_lex_state = 5}, + [5700] = {.lex_state = 45, .external_lex_state = 2}, + [5701] = {.lex_state = 349, .external_lex_state = 5}, + [5702] = {.lex_state = 349, .external_lex_state = 5}, + [5703] = {.lex_state = 349, .external_lex_state = 5}, + [5704] = {.lex_state = 349, .external_lex_state = 5}, + [5705] = {.lex_state = 349, .external_lex_state = 5}, + [5706] = {.lex_state = 349, .external_lex_state = 5}, + [5707] = {.lex_state = 349, .external_lex_state = 5}, + [5708] = {.lex_state = 349, .external_lex_state = 2}, + [5709] = {.lex_state = 349, .external_lex_state = 5}, + [5710] = {.lex_state = 47, .external_lex_state = 2}, [5711] = {.lex_state = 349, .external_lex_state = 5}, - [5712] = {.lex_state = 45, .external_lex_state = 2}, - [5713] = {.lex_state = 349, .external_lex_state = 5}, - [5714] = {.lex_state = 45, .external_lex_state = 2}, - [5715] = {.lex_state = 349, .external_lex_state = 5}, - [5716] = {.lex_state = 349, .external_lex_state = 5}, - [5717] = {.lex_state = 349, .external_lex_state = 5}, + [5712] = {.lex_state = 349, .external_lex_state = 2}, + [5713] = {.lex_state = 47, .external_lex_state = 2}, + [5714] = {.lex_state = 349, .external_lex_state = 5}, + [5715] = {.lex_state = 349, .external_lex_state = 2}, + [5716] = {.lex_state = 47, .external_lex_state = 2}, + [5717] = {.lex_state = 47, .external_lex_state = 2}, [5718] = {.lex_state = 349, .external_lex_state = 5}, [5719] = {.lex_state = 349, .external_lex_state = 5}, - [5720] = {.lex_state = 45, .external_lex_state = 2}, - [5721] = {.lex_state = 54, .external_lex_state = 9}, - [5722] = {.lex_state = 58, .external_lex_state = 9}, - [5723] = {.lex_state = 349, .external_lex_state = 5}, + [5720] = {.lex_state = 349, .external_lex_state = 2}, + [5721] = {.lex_state = 47, .external_lex_state = 2}, + [5722] = {.lex_state = 349, .external_lex_state = 5}, + [5723] = {.lex_state = 349, .external_lex_state = 2}, [5724] = {.lex_state = 349, .external_lex_state = 5}, - [5725] = {.lex_state = 349, .external_lex_state = 5}, - [5726] = {.lex_state = 45, .external_lex_state = 2}, + [5725] = {.lex_state = 47, .external_lex_state = 2}, + [5726] = {.lex_state = 349, .external_lex_state = 5}, [5727] = {.lex_state = 349, .external_lex_state = 5}, - [5728] = {.lex_state = 349, .external_lex_state = 5}, - [5729] = {.lex_state = 54, .external_lex_state = 9}, - [5730] = {.lex_state = 1, .external_lex_state = 2}, - [5731] = {.lex_state = 349, .external_lex_state = 5}, - [5732] = {.lex_state = 58, .external_lex_state = 9}, - [5733] = {.lex_state = 349, .external_lex_state = 2}, - [5734] = {.lex_state = 58, .external_lex_state = 9}, - [5735] = {.lex_state = 54, .external_lex_state = 9}, - [5736] = {.lex_state = 1, .external_lex_state = 2}, - [5737] = {.lex_state = 45, .external_lex_state = 2}, - [5738] = {.lex_state = 349, .external_lex_state = 2}, - [5739] = {.lex_state = 58, .external_lex_state = 9}, - [5740] = {.lex_state = 349, .external_lex_state = 2}, - [5741] = {.lex_state = 54, .external_lex_state = 9}, - [5742] = {.lex_state = 349, .external_lex_state = 2}, - [5743] = {.lex_state = 45, .external_lex_state = 2}, - [5744] = {.lex_state = 349, .external_lex_state = 2}, + [5728] = {.lex_state = 349, .external_lex_state = 2}, + [5729] = {.lex_state = 21, .external_lex_state = 2}, + [5730] = {.lex_state = 349, .external_lex_state = 5}, + [5731] = {.lex_state = 349, .external_lex_state = 2}, + [5732] = {.lex_state = 349, .external_lex_state = 2}, + [5733] = {.lex_state = 349, .external_lex_state = 5}, + [5734] = {.lex_state = 349, .external_lex_state = 2}, + [5735] = {.lex_state = 349, .external_lex_state = 5}, + [5736] = {.lex_state = 349, .external_lex_state = 2}, + [5737] = {.lex_state = 349, .external_lex_state = 2}, + [5738] = {.lex_state = 349, .external_lex_state = 5}, + [5739] = {.lex_state = 349, .external_lex_state = 2}, + [5740] = {.lex_state = 349, .external_lex_state = 5}, + [5741] = {.lex_state = 349, .external_lex_state = 2}, + [5742] = {.lex_state = 349, .external_lex_state = 5}, + [5743] = {.lex_state = 349, .external_lex_state = 2}, + [5744] = {.lex_state = 349, .external_lex_state = 5}, [5745] = {.lex_state = 349, .external_lex_state = 5}, - [5746] = {.lex_state = 349, .external_lex_state = 5}, - [5747] = {.lex_state = 349, .external_lex_state = 5}, - [5748] = {.lex_state = 349, .external_lex_state = 5}, - [5749] = {.lex_state = 47, .external_lex_state = 2}, + [5746] = {.lex_state = 349, .external_lex_state = 2}, + [5747] = {.lex_state = 349, .external_lex_state = 2}, + [5748] = {.lex_state = 47, .external_lex_state = 2}, + [5749] = {.lex_state = 349, .external_lex_state = 5}, [5750] = {.lex_state = 349, .external_lex_state = 5}, - [5751] = {.lex_state = 47, .external_lex_state = 2}, - [5752] = {.lex_state = 47, .external_lex_state = 2}, - [5753] = {.lex_state = 349, .external_lex_state = 5}, - [5754] = {.lex_state = 47, .external_lex_state = 2}, + [5751] = {.lex_state = 349, .external_lex_state = 5}, + [5752] = {.lex_state = 349, .external_lex_state = 5}, + [5753] = {.lex_state = 349, .external_lex_state = 2}, + [5754] = {.lex_state = 349, .external_lex_state = 2}, [5755] = {.lex_state = 349, .external_lex_state = 5}, - [5756] = {.lex_state = 47, .external_lex_state = 2}, - [5757] = {.lex_state = 349, .external_lex_state = 5}, - [5758] = {.lex_state = 349, .external_lex_state = 5}, + [5756] = {.lex_state = 21, .external_lex_state = 2}, + [5757] = {.lex_state = 349, .external_lex_state = 2}, + [5758] = {.lex_state = 75, .external_lex_state = 2}, [5759] = {.lex_state = 349, .external_lex_state = 5}, [5760] = {.lex_state = 349, .external_lex_state = 5}, [5761] = {.lex_state = 349, .external_lex_state = 5}, - [5762] = {.lex_state = 349, .external_lex_state = 2}, - [5763] = {.lex_state = 349, .external_lex_state = 5}, - [5764] = {.lex_state = 349, .external_lex_state = 5}, - [5765] = {.lex_state = 349, .external_lex_state = 5}, - [5766] = {.lex_state = 349, .external_lex_state = 5}, - [5767] = {.lex_state = 349, .external_lex_state = 5}, + [5762] = {.lex_state = 349, .external_lex_state = 5}, + [5763] = {.lex_state = 46, .external_lex_state = 2}, + [5764] = {.lex_state = 349, .external_lex_state = 2}, + [5765] = {.lex_state = 349, .external_lex_state = 2}, + [5766] = {.lex_state = 349, .external_lex_state = 2}, + [5767] = {.lex_state = 349, .external_lex_state = 2}, [5768] = {.lex_state = 349, .external_lex_state = 5}, [5769] = {.lex_state = 349, .external_lex_state = 5}, - [5770] = {.lex_state = 349, .external_lex_state = 5}, - [5771] = {.lex_state = 24, .external_lex_state = 2}, - [5772] = {.lex_state = 349, .external_lex_state = 5}, - [5773] = {.lex_state = 349, .external_lex_state = 2}, + [5770] = {.lex_state = 349, .external_lex_state = 2}, + [5771] = {.lex_state = 349, .external_lex_state = 2}, + [5772] = {.lex_state = 349, .external_lex_state = 2}, + [5773] = {.lex_state = 349, .external_lex_state = 5}, [5774] = {.lex_state = 349, .external_lex_state = 2}, - [5775] = {.lex_state = 349, .external_lex_state = 5}, + [5775] = {.lex_state = 349, .external_lex_state = 2}, [5776] = {.lex_state = 349, .external_lex_state = 5}, [5777] = {.lex_state = 349, .external_lex_state = 5}, - [5778] = {.lex_state = 349, .external_lex_state = 2}, + [5778] = {.lex_state = 349, .external_lex_state = 5}, [5779] = {.lex_state = 349, .external_lex_state = 5}, [5780] = {.lex_state = 349, .external_lex_state = 5}, [5781] = {.lex_state = 349, .external_lex_state = 5}, [5782] = {.lex_state = 349, .external_lex_state = 5}, - [5783] = {.lex_state = 349, .external_lex_state = 5}, - [5784] = {.lex_state = 349, .external_lex_state = 5}, + [5783] = {.lex_state = 349, .external_lex_state = 2}, + [5784] = {.lex_state = 45, .external_lex_state = 2}, [5785] = {.lex_state = 349, .external_lex_state = 5}, - [5786] = {.lex_state = 349, .external_lex_state = 5}, + [5786] = {.lex_state = 349, .external_lex_state = 2}, [5787] = {.lex_state = 349, .external_lex_state = 5}, [5788] = {.lex_state = 349, .external_lex_state = 5}, - [5789] = {.lex_state = 349, .external_lex_state = 5}, - [5790] = {.lex_state = 349, .external_lex_state = 5}, - [5791] = {.lex_state = 349, .external_lex_state = 5}, - [5792] = {.lex_state = 349, .external_lex_state = 5}, + [5789] = {.lex_state = 349, .external_lex_state = 2}, + [5790] = {.lex_state = 349, .external_lex_state = 8}, + [5791] = {.lex_state = 47, .external_lex_state = 2}, + [5792] = {.lex_state = 349, .external_lex_state = 2}, [5793] = {.lex_state = 349, .external_lex_state = 5}, - [5794] = {.lex_state = 349, .external_lex_state = 5}, + [5794] = {.lex_state = 45, .external_lex_state = 2}, [5795] = {.lex_state = 349, .external_lex_state = 5}, - [5796] = {.lex_state = 349, .external_lex_state = 5}, - [5797] = {.lex_state = 349, .external_lex_state = 5}, + [5796] = {.lex_state = 45, .external_lex_state = 2}, + [5797] = {.lex_state = 45, .external_lex_state = 2}, [5798] = {.lex_state = 349, .external_lex_state = 2}, - [5799] = {.lex_state = 349, .external_lex_state = 5}, - [5800] = {.lex_state = 349, .external_lex_state = 2}, - [5801] = {.lex_state = 349, .external_lex_state = 5}, + [5799] = {.lex_state = 45, .external_lex_state = 2}, + [5800] = {.lex_state = 24, .external_lex_state = 2}, + [5801] = {.lex_state = 349, .external_lex_state = 2}, [5802] = {.lex_state = 349, .external_lex_state = 5}, - [5803] = {.lex_state = 349, .external_lex_state = 5}, - [5804] = {.lex_state = 24, .external_lex_state = 2}, + [5803] = {.lex_state = 349, .external_lex_state = 2}, + [5804] = {.lex_state = 45, .external_lex_state = 2}, [5805] = {.lex_state = 349, .external_lex_state = 5}, [5806] = {.lex_state = 349, .external_lex_state = 5}, - [5807] = {.lex_state = 349, .external_lex_state = 2}, - [5808] = {.lex_state = 349, .external_lex_state = 5}, - [5809] = {.lex_state = 349, .external_lex_state = 2}, + [5807] = {.lex_state = 349, .external_lex_state = 5}, + [5808] = {.lex_state = 45, .external_lex_state = 2}, + [5809] = {.lex_state = 349, .external_lex_state = 5}, [5810] = {.lex_state = 349, .external_lex_state = 5}, - [5811] = {.lex_state = 349, .external_lex_state = 5}, - [5812] = {.lex_state = 349, .external_lex_state = 5}, - [5813] = {.lex_state = 45, .external_lex_state = 2}, - [5814] = {.lex_state = 349, .external_lex_state = 5}, - [5815] = {.lex_state = 349, .external_lex_state = 5}, - [5816] = {.lex_state = 349, .external_lex_state = 5}, + [5811] = {.lex_state = 45, .external_lex_state = 2}, + [5812] = {.lex_state = 24, .external_lex_state = 2}, + [5813] = {.lex_state = 349, .external_lex_state = 2}, + [5814] = {.lex_state = 349, .external_lex_state = 2}, + [5815] = {.lex_state = 349, .external_lex_state = 2}, + [5816] = {.lex_state = 1, .external_lex_state = 2}, [5817] = {.lex_state = 45, .external_lex_state = 2}, - [5818] = {.lex_state = 349, .external_lex_state = 5}, + [5818] = {.lex_state = 349, .external_lex_state = 2}, [5819] = {.lex_state = 349, .external_lex_state = 5}, [5820] = {.lex_state = 45, .external_lex_state = 2}, - [5821] = {.lex_state = 45, .external_lex_state = 2}, - [5822] = {.lex_state = 349, .external_lex_state = 2}, + [5821] = {.lex_state = 349, .external_lex_state = 5}, + [5822] = {.lex_state = 45, .external_lex_state = 2}, [5823] = {.lex_state = 349, .external_lex_state = 5}, - [5824] = {.lex_state = 349, .external_lex_state = 5}, + [5824] = {.lex_state = 45, .external_lex_state = 2}, [5825] = {.lex_state = 349, .external_lex_state = 5}, [5826] = {.lex_state = 349, .external_lex_state = 5}, [5827] = {.lex_state = 349, .external_lex_state = 5}, - [5828] = {.lex_state = 349, .external_lex_state = 5}, - [5829] = {.lex_state = 349, .external_lex_state = 5}, + [5828] = {.lex_state = 24, .external_lex_state = 2}, + [5829] = {.lex_state = 45, .external_lex_state = 2}, [5830] = {.lex_state = 349, .external_lex_state = 5}, - [5831] = {.lex_state = 75, .external_lex_state = 2}, - [5832] = {.lex_state = 349, .external_lex_state = 5}, + [5831] = {.lex_state = 45, .external_lex_state = 2}, + [5832] = {.lex_state = 349, .external_lex_state = 2}, [5833] = {.lex_state = 349, .external_lex_state = 2}, [5834] = {.lex_state = 349, .external_lex_state = 5}, [5835] = {.lex_state = 349, .external_lex_state = 5}, [5836] = {.lex_state = 349, .external_lex_state = 5}, [5837] = {.lex_state = 349, .external_lex_state = 5}, [5838] = {.lex_state = 349, .external_lex_state = 2}, - [5839] = {.lex_state = 349, .external_lex_state = 5}, + [5839] = {.lex_state = 349, .external_lex_state = 2}, [5840] = {.lex_state = 349, .external_lex_state = 2}, - [5841] = {.lex_state = 349, .external_lex_state = 2}, + [5841] = {.lex_state = 349, .external_lex_state = 5}, [5842] = {.lex_state = 349, .external_lex_state = 2}, - [5843] = {.lex_state = 349, .external_lex_state = 2}, - [5844] = {.lex_state = 70, .external_lex_state = 2}, - [5845] = {.lex_state = 349, .external_lex_state = 5}, - [5846] = {.lex_state = 349, .external_lex_state = 5}, - [5847] = {.lex_state = 349, .external_lex_state = 5}, + [5843] = {.lex_state = 349, .external_lex_state = 5}, + [5844] = {.lex_state = 45, .external_lex_state = 2}, + [5845] = {.lex_state = 349, .external_lex_state = 2}, + [5846] = {.lex_state = 349, .external_lex_state = 2}, + [5847] = {.lex_state = 349, .external_lex_state = 2}, [5848] = {.lex_state = 349, .external_lex_state = 5}, [5849] = {.lex_state = 349, .external_lex_state = 5}, [5850] = {.lex_state = 349, .external_lex_state = 5}, [5851] = {.lex_state = 349, .external_lex_state = 5}, [5852] = {.lex_state = 349, .external_lex_state = 5}, - [5853] = {.lex_state = 349, .external_lex_state = 5}, - [5854] = {.lex_state = 349, .external_lex_state = 5}, - [5855] = {.lex_state = 349, .external_lex_state = 8}, - [5856] = {.lex_state = 349, .external_lex_state = 5}, + [5853] = {.lex_state = 47, .external_lex_state = 2}, + [5854] = {.lex_state = 349, .external_lex_state = 2}, + [5855] = {.lex_state = 21, .external_lex_state = 2}, + [5856] = {.lex_state = 21, .external_lex_state = 2}, [5857] = {.lex_state = 349, .external_lex_state = 5}, [5858] = {.lex_state = 349, .external_lex_state = 5}, - [5859] = {.lex_state = 349, .external_lex_state = 5}, - [5860] = {.lex_state = 349, .external_lex_state = 5}, - [5861] = {.lex_state = 349, .external_lex_state = 5}, + [5859] = {.lex_state = 50, .external_lex_state = 2}, + [5860] = {.lex_state = 50, .external_lex_state = 2}, + [5861] = {.lex_state = 349, .external_lex_state = 2}, [5862] = {.lex_state = 349, .external_lex_state = 5}, - [5863] = {.lex_state = 349, .external_lex_state = 2}, + [5863] = {.lex_state = 349, .external_lex_state = 5}, [5864] = {.lex_state = 349, .external_lex_state = 5}, [5865] = {.lex_state = 349, .external_lex_state = 5}, [5866] = {.lex_state = 349, .external_lex_state = 5}, [5867] = {.lex_state = 349, .external_lex_state = 5}, - [5868] = {.lex_state = 24, .external_lex_state = 2}, + [5868] = {.lex_state = 349, .external_lex_state = 5}, [5869] = {.lex_state = 349, .external_lex_state = 5}, [5870] = {.lex_state = 349, .external_lex_state = 5}, - [5871] = {.lex_state = 349, .external_lex_state = 5}, - [5872] = {.lex_state = 349, .external_lex_state = 5}, - [5873] = {.lex_state = 349, .external_lex_state = 5}, + [5871] = {.lex_state = 349, .external_lex_state = 2}, + [5872] = {.lex_state = 349, .external_lex_state = 2}, + [5873] = {.lex_state = 349, .external_lex_state = 2}, [5874] = {.lex_state = 349, .external_lex_state = 5}, - [5875] = {.lex_state = 349, .external_lex_state = 2}, + [5875] = {.lex_state = 349, .external_lex_state = 5}, [5876] = {.lex_state = 349, .external_lex_state = 5}, - [5877] = {.lex_state = 349, .external_lex_state = 2}, - [5878] = {.lex_state = 349, .external_lex_state = 5}, + [5877] = {.lex_state = 349, .external_lex_state = 5}, + [5878] = {.lex_state = 349, .external_lex_state = 2}, [5879] = {.lex_state = 349, .external_lex_state = 5}, [5880] = {.lex_state = 24, .external_lex_state = 2}, - [5881] = {.lex_state = 47, .external_lex_state = 5}, - [5882] = {.lex_state = 47, .external_lex_state = 5}, - [5883] = {.lex_state = 349, .external_lex_state = 5}, + [5881] = {.lex_state = 75, .external_lex_state = 2}, + [5882] = {.lex_state = 349, .external_lex_state = 2}, + [5883] = {.lex_state = 349, .external_lex_state = 2}, [5884] = {.lex_state = 349, .external_lex_state = 5}, - [5885] = {.lex_state = 349, .external_lex_state = 5}, + [5885] = {.lex_state = 349, .external_lex_state = 2}, [5886] = {.lex_state = 349, .external_lex_state = 5}, - [5887] = {.lex_state = 349, .external_lex_state = 5}, + [5887] = {.lex_state = 349, .external_lex_state = 2}, [5888] = {.lex_state = 349, .external_lex_state = 5}, [5889] = {.lex_state = 349, .external_lex_state = 5}, [5890] = {.lex_state = 349, .external_lex_state = 5}, - [5891] = {.lex_state = 349, .external_lex_state = 2}, - [5892] = {.lex_state = 349, .external_lex_state = 5}, - [5893] = {.lex_state = 349, .external_lex_state = 5}, + [5891] = {.lex_state = 349, .external_lex_state = 5}, + [5892] = {.lex_state = 21, .external_lex_state = 2}, + [5893] = {.lex_state = 349, .external_lex_state = 2}, [5894] = {.lex_state = 349, .external_lex_state = 5}, - [5895] = {.lex_state = 349, .external_lex_state = 5}, + [5895] = {.lex_state = 349, .external_lex_state = 2}, [5896] = {.lex_state = 349, .external_lex_state = 2}, - [5897] = {.lex_state = 349, .external_lex_state = 2}, - [5898] = {.lex_state = 349, .external_lex_state = 5}, - [5899] = {.lex_state = 349, .external_lex_state = 5}, + [5897] = {.lex_state = 349, .external_lex_state = 5}, + [5898] = {.lex_state = 47, .external_lex_state = 2}, + [5899] = {.lex_state = 21, .external_lex_state = 2}, [5900] = {.lex_state = 349, .external_lex_state = 5}, [5901] = {.lex_state = 349, .external_lex_state = 5}, [5902] = {.lex_state = 349, .external_lex_state = 5}, - [5903] = {.lex_state = 349, .external_lex_state = 5}, + [5903] = {.lex_state = 349, .external_lex_state = 2}, [5904] = {.lex_state = 349, .external_lex_state = 2}, - [5905] = {.lex_state = 349, .external_lex_state = 5}, - [5906] = {.lex_state = 349, .external_lex_state = 5}, - [5907] = {.lex_state = 349, .external_lex_state = 5}, - [5908] = {.lex_state = 349, .external_lex_state = 5}, - [5909] = {.lex_state = 349, .external_lex_state = 5}, - [5910] = {.lex_state = 349, .external_lex_state = 5}, - [5911] = {.lex_state = 349, .external_lex_state = 5}, + [5905] = {.lex_state = 349, .external_lex_state = 2}, + [5906] = {.lex_state = 349, .external_lex_state = 2}, + [5907] = {.lex_state = 45, .external_lex_state = 2}, + [5908] = {.lex_state = 75, .external_lex_state = 2}, + [5909] = {.lex_state = 45, .external_lex_state = 2}, + [5910] = {.lex_state = 47, .external_lex_state = 2}, + [5911] = {.lex_state = 47, .external_lex_state = 2}, [5912] = {.lex_state = 349, .external_lex_state = 5}, - [5913] = {.lex_state = 349, .external_lex_state = 2}, - [5914] = {.lex_state = 349, .external_lex_state = 5}, - [5915] = {.lex_state = 349, .external_lex_state = 2}, - [5916] = {.lex_state = 349, .external_lex_state = 5}, + [5913] = {.lex_state = 47, .external_lex_state = 2}, + [5914] = {.lex_state = 47, .external_lex_state = 2}, + [5915] = {.lex_state = 21, .external_lex_state = 2}, + [5916] = {.lex_state = 349, .external_lex_state = 2}, [5917] = {.lex_state = 349, .external_lex_state = 5}, - [5918] = {.lex_state = 349, .external_lex_state = 5}, - [5919] = {.lex_state = 70, .external_lex_state = 2}, - [5920] = {.lex_state = 349, .external_lex_state = 5}, - [5921] = {.lex_state = 349, .external_lex_state = 5}, - [5922] = {.lex_state = 349, .external_lex_state = 5}, - [5923] = {.lex_state = 349, .external_lex_state = 2}, - [5924] = {.lex_state = 349, .external_lex_state = 5}, + [5918] = {.lex_state = 349, .external_lex_state = 2}, + [5919] = {.lex_state = 47, .external_lex_state = 2}, + [5920] = {.lex_state = 45, .external_lex_state = 2}, + [5921] = {.lex_state = 349, .external_lex_state = 2}, + [5922] = {.lex_state = 45, .external_lex_state = 2}, + [5923] = {.lex_state = 45, .external_lex_state = 2}, + [5924] = {.lex_state = 349, .external_lex_state = 2}, [5925] = {.lex_state = 349, .external_lex_state = 5}, [5926] = {.lex_state = 349, .external_lex_state = 5}, [5927] = {.lex_state = 349, .external_lex_state = 5}, [5928] = {.lex_state = 349, .external_lex_state = 5}, [5929] = {.lex_state = 349, .external_lex_state = 5}, - [5930] = {.lex_state = 349, .external_lex_state = 5}, - [5931] = {.lex_state = 349, .external_lex_state = 5}, - [5932] = {.lex_state = 349, .external_lex_state = 5}, + [5930] = {.lex_state = 45, .external_lex_state = 2}, + [5931] = {.lex_state = 24, .external_lex_state = 2}, + [5932] = {.lex_state = 45, .external_lex_state = 2}, [5933] = {.lex_state = 349, .external_lex_state = 5}, - [5934] = {.lex_state = 349, .external_lex_state = 5}, - [5935] = {.lex_state = 349, .external_lex_state = 5}, - [5936] = {.lex_state = 349, .external_lex_state = 5}, - [5937] = {.lex_state = 349, .external_lex_state = 5}, + [5934] = {.lex_state = 349, .external_lex_state = 2}, + [5935] = {.lex_state = 349, .external_lex_state = 2}, + [5936] = {.lex_state = 24, .external_lex_state = 2}, + [5937] = {.lex_state = 45, .external_lex_state = 2}, [5938] = {.lex_state = 349, .external_lex_state = 5}, - [5939] = {.lex_state = 349, .external_lex_state = 5}, - [5940] = {.lex_state = 349, .external_lex_state = 5}, + [5939] = {.lex_state = 349, .external_lex_state = 2}, + [5940] = {.lex_state = 349, .external_lex_state = 2}, [5941] = {.lex_state = 349, .external_lex_state = 5}, [5942] = {.lex_state = 349, .external_lex_state = 5}, - [5943] = {.lex_state = 349, .external_lex_state = 5}, + [5943] = {.lex_state = 349, .external_lex_state = 2}, [5944] = {.lex_state = 349, .external_lex_state = 5}, - [5945] = {.lex_state = 349, .external_lex_state = 5}, + [5945] = {.lex_state = 349, .external_lex_state = 2}, [5946] = {.lex_state = 349, .external_lex_state = 5}, [5947] = {.lex_state = 349, .external_lex_state = 5}, [5948] = {.lex_state = 349, .external_lex_state = 5}, - [5949] = {.lex_state = 349, .external_lex_state = 5}, + [5949] = {.lex_state = 62, .external_lex_state = 2}, [5950] = {.lex_state = 349, .external_lex_state = 5}, - [5951] = {.lex_state = 349, .external_lex_state = 5}, - [5952] = {.lex_state = 349, .external_lex_state = 5}, - [5953] = {.lex_state = 349, .external_lex_state = 5}, - [5954] = {.lex_state = 349, .external_lex_state = 5}, - [5955] = {.lex_state = 47, .external_lex_state = 2}, - [5956] = {.lex_state = 349, .external_lex_state = 5}, - [5957] = {.lex_state = 349, .external_lex_state = 5}, - [5958] = {.lex_state = 21, .external_lex_state = 2}, - [5959] = {.lex_state = 349, .external_lex_state = 5}, - [5960] = {.lex_state = 349, .external_lex_state = 5}, - [5961] = {.lex_state = 349, .external_lex_state = 5}, + [5951] = {.lex_state = 349, .external_lex_state = 2}, + [5952] = {.lex_state = 349, .external_lex_state = 2}, + [5953] = {.lex_state = 24, .external_lex_state = 2}, + [5954] = {.lex_state = 50, .external_lex_state = 2}, + [5955] = {.lex_state = 47, .external_lex_state = 5}, + [5956] = {.lex_state = 47, .external_lex_state = 5}, + [5957] = {.lex_state = 75, .external_lex_state = 2}, + [5958] = {.lex_state = 349, .external_lex_state = 5}, + [5959] = {.lex_state = 349, .external_lex_state = 2}, + [5960] = {.lex_state = 50, .external_lex_state = 2}, + [5961] = {.lex_state = 349, .external_lex_state = 2}, [5962] = {.lex_state = 349, .external_lex_state = 5}, [5963] = {.lex_state = 349, .external_lex_state = 5}, [5964] = {.lex_state = 349, .external_lex_state = 5}, - [5965] = {.lex_state = 349, .external_lex_state = 5}, + [5965] = {.lex_state = 349, .external_lex_state = 2}, [5966] = {.lex_state = 349, .external_lex_state = 5}, [5967] = {.lex_state = 349, .external_lex_state = 5}, [5968] = {.lex_state = 349, .external_lex_state = 5}, - [5969] = {.lex_state = 349, .external_lex_state = 5}, - [5970] = {.lex_state = 47, .external_lex_state = 2}, + [5969] = {.lex_state = 47, .external_lex_state = 2}, + [5970] = {.lex_state = 21, .external_lex_state = 2}, [5971] = {.lex_state = 349, .external_lex_state = 5}, - [5972] = {.lex_state = 349, .external_lex_state = 5}, - [5973] = {.lex_state = 349, .external_lex_state = 5}, + [5972] = {.lex_state = 349, .external_lex_state = 2}, + [5973] = {.lex_state = 349, .external_lex_state = 2}, [5974] = {.lex_state = 349, .external_lex_state = 5}, [5975] = {.lex_state = 349, .external_lex_state = 5}, [5976] = {.lex_state = 349, .external_lex_state = 5}, @@ -26460,48 +26241,48 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [5978] = {.lex_state = 349, .external_lex_state = 5}, [5979] = {.lex_state = 349, .external_lex_state = 5}, [5980] = {.lex_state = 349, .external_lex_state = 5}, - [5981] = {.lex_state = 349, .external_lex_state = 2}, + [5981] = {.lex_state = 349, .external_lex_state = 5}, [5982] = {.lex_state = 349, .external_lex_state = 5}, [5983] = {.lex_state = 349, .external_lex_state = 5}, [5984] = {.lex_state = 349, .external_lex_state = 5}, - [5985] = {.lex_state = 47, .external_lex_state = 5}, - [5986] = {.lex_state = 47, .external_lex_state = 5}, + [5985] = {.lex_state = 349, .external_lex_state = 5}, + [5986] = {.lex_state = 349, .external_lex_state = 5}, [5987] = {.lex_state = 349, .external_lex_state = 5}, - [5988] = {.lex_state = 349, .external_lex_state = 2}, + [5988] = {.lex_state = 349, .external_lex_state = 5}, [5989] = {.lex_state = 349, .external_lex_state = 5}, [5990] = {.lex_state = 349, .external_lex_state = 5}, - [5991] = {.lex_state = 349, .external_lex_state = 5}, - [5992] = {.lex_state = 349, .external_lex_state = 2}, - [5993] = {.lex_state = 349, .external_lex_state = 5}, + [5991] = {.lex_state = 349, .external_lex_state = 2}, + [5992] = {.lex_state = 349, .external_lex_state = 5}, + [5993] = {.lex_state = 349, .external_lex_state = 2}, [5994] = {.lex_state = 349, .external_lex_state = 5}, [5995] = {.lex_state = 349, .external_lex_state = 5}, - [5996] = {.lex_state = 349, .external_lex_state = 2}, + [5996] = {.lex_state = 349, .external_lex_state = 5}, [5997] = {.lex_state = 349, .external_lex_state = 5}, [5998] = {.lex_state = 349, .external_lex_state = 5}, [5999] = {.lex_state = 349, .external_lex_state = 5}, - [6000] = {.lex_state = 45, .external_lex_state = 2}, + [6000] = {.lex_state = 349, .external_lex_state = 5}, [6001] = {.lex_state = 349, .external_lex_state = 5}, - [6002] = {.lex_state = 349, .external_lex_state = 5}, - [6003] = {.lex_state = 45, .external_lex_state = 2}, + [6002] = {.lex_state = 349, .external_lex_state = 2}, + [6003] = {.lex_state = 349, .external_lex_state = 8}, [6004] = {.lex_state = 349, .external_lex_state = 5}, - [6005] = {.lex_state = 45, .external_lex_state = 2}, + [6005] = {.lex_state = 349, .external_lex_state = 5}, [6006] = {.lex_state = 349, .external_lex_state = 5}, - [6007] = {.lex_state = 45, .external_lex_state = 2}, - [6008] = {.lex_state = 349, .external_lex_state = 5}, + [6007] = {.lex_state = 349, .external_lex_state = 5}, + [6008] = {.lex_state = 70, .external_lex_state = 2}, [6009] = {.lex_state = 349, .external_lex_state = 5}, [6010] = {.lex_state = 349, .external_lex_state = 5}, - [6011] = {.lex_state = 24, .external_lex_state = 2}, - [6012] = {.lex_state = 349, .external_lex_state = 5}, + [6011] = {.lex_state = 349, .external_lex_state = 2}, + [6012] = {.lex_state = 349, .external_lex_state = 2}, [6013] = {.lex_state = 349, .external_lex_state = 5}, - [6014] = {.lex_state = 349, .external_lex_state = 5}, - [6015] = {.lex_state = 349, .external_lex_state = 2}, - [6016] = {.lex_state = 349, .external_lex_state = 2}, + [6014] = {.lex_state = 349, .external_lex_state = 2}, + [6015] = {.lex_state = 349, .external_lex_state = 5}, + [6016] = {.lex_state = 349, .external_lex_state = 5}, [6017] = {.lex_state = 349, .external_lex_state = 5}, [6018] = {.lex_state = 349, .external_lex_state = 5}, [6019] = {.lex_state = 349, .external_lex_state = 5}, [6020] = {.lex_state = 349, .external_lex_state = 5}, [6021] = {.lex_state = 349, .external_lex_state = 5}, - [6022] = {.lex_state = 349, .external_lex_state = 5}, + [6022] = {.lex_state = 62, .external_lex_state = 2}, [6023] = {.lex_state = 349, .external_lex_state = 5}, [6024] = {.lex_state = 349, .external_lex_state = 5}, [6025] = {.lex_state = 349, .external_lex_state = 5}, @@ -26516,115 +26297,115 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6034] = {.lex_state = 349, .external_lex_state = 5}, [6035] = {.lex_state = 349, .external_lex_state = 5}, [6036] = {.lex_state = 349, .external_lex_state = 5}, - [6037] = {.lex_state = 349, .external_lex_state = 5}, + [6037] = {.lex_state = 349, .external_lex_state = 2}, [6038] = {.lex_state = 349, .external_lex_state = 5}, [6039] = {.lex_state = 349, .external_lex_state = 5}, [6040] = {.lex_state = 349, .external_lex_state = 5}, [6041] = {.lex_state = 349, .external_lex_state = 5}, - [6042] = {.lex_state = 349, .external_lex_state = 5}, + [6042] = {.lex_state = 349, .external_lex_state = 2}, [6043] = {.lex_state = 349, .external_lex_state = 5}, - [6044] = {.lex_state = 349, .external_lex_state = 5}, + [6044] = {.lex_state = 349, .external_lex_state = 2}, [6045] = {.lex_state = 349, .external_lex_state = 5}, [6046] = {.lex_state = 349, .external_lex_state = 5}, - [6047] = {.lex_state = 349, .external_lex_state = 5}, + [6047] = {.lex_state = 24, .external_lex_state = 2}, [6048] = {.lex_state = 349, .external_lex_state = 5}, - [6049] = {.lex_state = 349, .external_lex_state = 5}, + [6049] = {.lex_state = 349, .external_lex_state = 2}, [6050] = {.lex_state = 349, .external_lex_state = 5}, - [6051] = {.lex_state = 47, .external_lex_state = 2}, - [6052] = {.lex_state = 349, .external_lex_state = 5}, - [6053] = {.lex_state = 21, .external_lex_state = 2}, - [6054] = {.lex_state = 349, .external_lex_state = 2}, + [6051] = {.lex_state = 349, .external_lex_state = 2}, + [6052] = {.lex_state = 349, .external_lex_state = 2}, + [6053] = {.lex_state = 349, .external_lex_state = 5}, + [6054] = {.lex_state = 349, .external_lex_state = 5}, [6055] = {.lex_state = 349, .external_lex_state = 5}, - [6056] = {.lex_state = 24, .external_lex_state = 2}, + [6056] = {.lex_state = 349, .external_lex_state = 5}, [6057] = {.lex_state = 349, .external_lex_state = 5}, - [6058] = {.lex_state = 349, .external_lex_state = 2}, - [6059] = {.lex_state = 349, .external_lex_state = 5}, - [6060] = {.lex_state = 349, .external_lex_state = 2}, + [6058] = {.lex_state = 75, .external_lex_state = 2}, + [6059] = {.lex_state = 24, .external_lex_state = 2}, + [6060] = {.lex_state = 349, .external_lex_state = 5}, [6061] = {.lex_state = 349, .external_lex_state = 2}, [6062] = {.lex_state = 349, .external_lex_state = 5}, - [6063] = {.lex_state = 24, .external_lex_state = 2}, - [6064] = {.lex_state = 50, .external_lex_state = 2}, - [6065] = {.lex_state = 349, .external_lex_state = 2}, + [6063] = {.lex_state = 349, .external_lex_state = 5}, + [6064] = {.lex_state = 349, .external_lex_state = 5}, + [6065] = {.lex_state = 70, .external_lex_state = 2}, [6066] = {.lex_state = 349, .external_lex_state = 2}, [6067] = {.lex_state = 349, .external_lex_state = 5}, - [6068] = {.lex_state = 75, .external_lex_state = 2}, + [6068] = {.lex_state = 349, .external_lex_state = 5}, [6069] = {.lex_state = 349, .external_lex_state = 5}, - [6070] = {.lex_state = 349, .external_lex_state = 5}, + [6070] = {.lex_state = 45, .external_lex_state = 2}, [6071] = {.lex_state = 349, .external_lex_state = 5}, - [6072] = {.lex_state = 349, .external_lex_state = 2}, - [6073] = {.lex_state = 46, .external_lex_state = 2}, - [6074] = {.lex_state = 50, .external_lex_state = 2}, - [6075] = {.lex_state = 349, .external_lex_state = 5}, - [6076] = {.lex_state = 349, .external_lex_state = 2}, - [6077] = {.lex_state = 349, .external_lex_state = 5}, - [6078] = {.lex_state = 349, .external_lex_state = 2}, - [6079] = {.lex_state = 349, .external_lex_state = 5}, - [6080] = {.lex_state = 349, .external_lex_state = 2}, - [6081] = {.lex_state = 349, .external_lex_state = 2}, - [6082] = {.lex_state = 349, .external_lex_state = 5}, + [6072] = {.lex_state = 349, .external_lex_state = 5}, + [6073] = {.lex_state = 45, .external_lex_state = 2}, + [6074] = {.lex_state = 349, .external_lex_state = 5}, + [6075] = {.lex_state = 45, .external_lex_state = 2}, + [6076] = {.lex_state = 349, .external_lex_state = 5}, + [6077] = {.lex_state = 45, .external_lex_state = 2}, + [6078] = {.lex_state = 349, .external_lex_state = 5}, + [6079] = {.lex_state = 47, .external_lex_state = 2}, + [6080] = {.lex_state = 349, .external_lex_state = 5}, + [6081] = {.lex_state = 24, .external_lex_state = 2}, + [6082] = {.lex_state = 349, .external_lex_state = 2}, [6083] = {.lex_state = 349, .external_lex_state = 5}, [6084] = {.lex_state = 349, .external_lex_state = 5}, - [6085] = {.lex_state = 24, .external_lex_state = 2}, - [6086] = {.lex_state = 45, .external_lex_state = 2}, + [6085] = {.lex_state = 349, .external_lex_state = 2}, + [6086] = {.lex_state = 349, .external_lex_state = 2}, [6087] = {.lex_state = 349, .external_lex_state = 5}, - [6088] = {.lex_state = 349, .external_lex_state = 5}, - [6089] = {.lex_state = 45, .external_lex_state = 2}, - [6090] = {.lex_state = 45, .external_lex_state = 2}, + [6088] = {.lex_state = 21, .external_lex_state = 2}, + [6089] = {.lex_state = 349, .external_lex_state = 5}, + [6090] = {.lex_state = 349, .external_lex_state = 5}, [6091] = {.lex_state = 349, .external_lex_state = 5}, - [6092] = {.lex_state = 349, .external_lex_state = 2}, - [6093] = {.lex_state = 21, .external_lex_state = 2}, - [6094] = {.lex_state = 47, .external_lex_state = 2}, + [6092] = {.lex_state = 349, .external_lex_state = 5}, + [6093] = {.lex_state = 349, .external_lex_state = 5}, + [6094] = {.lex_state = 349, .external_lex_state = 5}, [6095] = {.lex_state = 349, .external_lex_state = 5}, [6096] = {.lex_state = 349, .external_lex_state = 5}, - [6097] = {.lex_state = 47, .external_lex_state = 2}, - [6098] = {.lex_state = 349, .external_lex_state = 5}, - [6099] = {.lex_state = 349, .external_lex_state = 2}, - [6100] = {.lex_state = 47, .external_lex_state = 2}, - [6101] = {.lex_state = 349, .external_lex_state = 2}, - [6102] = {.lex_state = 47, .external_lex_state = 2}, - [6103] = {.lex_state = 47, .external_lex_state = 2}, + [6097] = {.lex_state = 349, .external_lex_state = 5}, + [6098] = {.lex_state = 349, .external_lex_state = 2}, + [6099] = {.lex_state = 349, .external_lex_state = 5}, + [6100] = {.lex_state = 349, .external_lex_state = 5}, + [6101] = {.lex_state = 349, .external_lex_state = 5}, + [6102] = {.lex_state = 349, .external_lex_state = 5}, + [6103] = {.lex_state = 349, .external_lex_state = 5}, [6104] = {.lex_state = 349, .external_lex_state = 5}, [6105] = {.lex_state = 349, .external_lex_state = 5}, - [6106] = {.lex_state = 349, .external_lex_state = 2}, - [6107] = {.lex_state = 349, .external_lex_state = 2}, - [6108] = {.lex_state = 75, .external_lex_state = 2}, + [6106] = {.lex_state = 349, .external_lex_state = 5}, + [6107] = {.lex_state = 349, .external_lex_state = 5}, + [6108] = {.lex_state = 349, .external_lex_state = 5}, [6109] = {.lex_state = 349, .external_lex_state = 2}, [6110] = {.lex_state = 349, .external_lex_state = 5}, - [6111] = {.lex_state = 349, .external_lex_state = 2}, + [6111] = {.lex_state = 349, .external_lex_state = 5}, [6112] = {.lex_state = 349, .external_lex_state = 5}, - [6113] = {.lex_state = 62, .external_lex_state = 2}, + [6113] = {.lex_state = 47, .external_lex_state = 2}, [6114] = {.lex_state = 349, .external_lex_state = 5}, - [6115] = {.lex_state = 21, .external_lex_state = 2}, - [6116] = {.lex_state = 47, .external_lex_state = 2}, - [6117] = {.lex_state = 349, .external_lex_state = 2}, + [6115] = {.lex_state = 47, .external_lex_state = 2}, + [6116] = {.lex_state = 349, .external_lex_state = 5}, + [6117] = {.lex_state = 47, .external_lex_state = 2}, [6118] = {.lex_state = 349, .external_lex_state = 5}, - [6119] = {.lex_state = 349, .external_lex_state = 2}, - [6120] = {.lex_state = 349, .external_lex_state = 2}, + [6119] = {.lex_state = 47, .external_lex_state = 2}, + [6120] = {.lex_state = 349, .external_lex_state = 5}, [6121] = {.lex_state = 349, .external_lex_state = 5}, - [6122] = {.lex_state = 349, .external_lex_state = 5}, + [6122] = {.lex_state = 349, .external_lex_state = 2}, [6123] = {.lex_state = 349, .external_lex_state = 5}, [6124] = {.lex_state = 349, .external_lex_state = 5}, [6125] = {.lex_state = 349, .external_lex_state = 5}, [6126] = {.lex_state = 349, .external_lex_state = 5}, [6127] = {.lex_state = 349, .external_lex_state = 5}, [6128] = {.lex_state = 349, .external_lex_state = 5}, - [6129] = {.lex_state = 75, .external_lex_state = 2}, + [6129] = {.lex_state = 349, .external_lex_state = 5}, [6130] = {.lex_state = 349, .external_lex_state = 5}, - [6131] = {.lex_state = 349, .external_lex_state = 5}, + [6131] = {.lex_state = 24, .external_lex_state = 2}, [6132] = {.lex_state = 349, .external_lex_state = 5}, - [6133] = {.lex_state = 349, .external_lex_state = 5}, + [6133] = {.lex_state = 349, .external_lex_state = 2}, [6134] = {.lex_state = 349, .external_lex_state = 2}, [6135] = {.lex_state = 349, .external_lex_state = 5}, [6136] = {.lex_state = 349, .external_lex_state = 2}, [6137] = {.lex_state = 349, .external_lex_state = 5}, - [6138] = {.lex_state = 47, .external_lex_state = 5}, - [6139] = {.lex_state = 47, .external_lex_state = 5}, - [6140] = {.lex_state = 349, .external_lex_state = 2}, - [6141] = {.lex_state = 349, .external_lex_state = 2}, + [6138] = {.lex_state = 349, .external_lex_state = 5}, + [6139] = {.lex_state = 349, .external_lex_state = 5}, + [6140] = {.lex_state = 349, .external_lex_state = 5}, + [6141] = {.lex_state = 349, .external_lex_state = 5}, [6142] = {.lex_state = 349, .external_lex_state = 5}, - [6143] = {.lex_state = 21, .external_lex_state = 2}, - [6144] = {.lex_state = 349, .external_lex_state = 5}, - [6145] = {.lex_state = 349, .external_lex_state = 2}, + [6143] = {.lex_state = 349, .external_lex_state = 5}, + [6144] = {.lex_state = 349, .external_lex_state = 2}, + [6145] = {.lex_state = 349, .external_lex_state = 5}, [6146] = {.lex_state = 349, .external_lex_state = 5}, [6147] = {.lex_state = 349, .external_lex_state = 5}, [6148] = {.lex_state = 349, .external_lex_state = 5}, @@ -26632,384 +26413,384 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6150] = {.lex_state = 349, .external_lex_state = 5}, [6151] = {.lex_state = 349, .external_lex_state = 5}, [6152] = {.lex_state = 349, .external_lex_state = 5}, - [6153] = {.lex_state = 349, .external_lex_state = 2}, + [6153] = {.lex_state = 349, .external_lex_state = 5}, [6154] = {.lex_state = 349, .external_lex_state = 5}, [6155] = {.lex_state = 349, .external_lex_state = 5}, [6156] = {.lex_state = 349, .external_lex_state = 5}, [6157] = {.lex_state = 349, .external_lex_state = 5}, - [6158] = {.lex_state = 349, .external_lex_state = 2}, - [6159] = {.lex_state = 50, .external_lex_state = 2}, + [6158] = {.lex_state = 349, .external_lex_state = 5}, + [6159] = {.lex_state = 349, .external_lex_state = 5}, [6160] = {.lex_state = 349, .external_lex_state = 5}, - [6161] = {.lex_state = 50, .external_lex_state = 2}, + [6161] = {.lex_state = 349, .external_lex_state = 5}, [6162] = {.lex_state = 349, .external_lex_state = 5}, [6163] = {.lex_state = 349, .external_lex_state = 5}, - [6164] = {.lex_state = 21, .external_lex_state = 2}, - [6165] = {.lex_state = 21, .external_lex_state = 2}, + [6164] = {.lex_state = 349, .external_lex_state = 5}, + [6165] = {.lex_state = 349, .external_lex_state = 5}, [6166] = {.lex_state = 349, .external_lex_state = 5}, [6167] = {.lex_state = 349, .external_lex_state = 2}, [6168] = {.lex_state = 349, .external_lex_state = 5}, - [6169] = {.lex_state = 349, .external_lex_state = 5}, + [6169] = {.lex_state = 349, .external_lex_state = 2}, [6170] = {.lex_state = 349, .external_lex_state = 5}, [6171] = {.lex_state = 349, .external_lex_state = 5}, [6172] = {.lex_state = 349, .external_lex_state = 5}, [6173] = {.lex_state = 349, .external_lex_state = 5}, [6174] = {.lex_state = 349, .external_lex_state = 2}, - [6175] = {.lex_state = 349, .external_lex_state = 5}, - [6176] = {.lex_state = 45, .external_lex_state = 2}, - [6177] = {.lex_state = 349, .external_lex_state = 5}, - [6178] = {.lex_state = 349, .external_lex_state = 2}, - [6179] = {.lex_state = 1, .external_lex_state = 2}, + [6175] = {.lex_state = 62, .external_lex_state = 2}, + [6176] = {.lex_state = 46, .external_lex_state = 2}, + [6177] = {.lex_state = 349, .external_lex_state = 2}, + [6178] = {.lex_state = 349, .external_lex_state = 5}, + [6179] = {.lex_state = 349, .external_lex_state = 5}, [6180] = {.lex_state = 349, .external_lex_state = 2}, [6181] = {.lex_state = 349, .external_lex_state = 5}, - [6182] = {.lex_state = 349, .external_lex_state = 2}, - [6183] = {.lex_state = 24, .external_lex_state = 2}, - [6184] = {.lex_state = 45, .external_lex_state = 2}, - [6185] = {.lex_state = 349, .external_lex_state = 2}, - [6186] = {.lex_state = 349, .external_lex_state = 5}, - [6187] = {.lex_state = 45, .external_lex_state = 2}, + [6182] = {.lex_state = 349, .external_lex_state = 5}, + [6183] = {.lex_state = 349, .external_lex_state = 5}, + [6184] = {.lex_state = 349, .external_lex_state = 5}, + [6185] = {.lex_state = 349, .external_lex_state = 5}, + [6186] = {.lex_state = 349, .external_lex_state = 2}, + [6187] = {.lex_state = 349, .external_lex_state = 2}, [6188] = {.lex_state = 45, .external_lex_state = 2}, [6189] = {.lex_state = 349, .external_lex_state = 5}, - [6190] = {.lex_state = 45, .external_lex_state = 2}, - [6191] = {.lex_state = 349, .external_lex_state = 2}, - [6192] = {.lex_state = 45, .external_lex_state = 2}, - [6193] = {.lex_state = 349, .external_lex_state = 8}, - [6194] = {.lex_state = 349, .external_lex_state = 2}, + [6190] = {.lex_state = 349, .external_lex_state = 5}, + [6191] = {.lex_state = 45, .external_lex_state = 2}, + [6192] = {.lex_state = 349, .external_lex_state = 5}, + [6193] = {.lex_state = 349, .external_lex_state = 5}, + [6194] = {.lex_state = 45, .external_lex_state = 2}, [6195] = {.lex_state = 349, .external_lex_state = 2}, - [6196] = {.lex_state = 349, .external_lex_state = 2}, - [6197] = {.lex_state = 349, .external_lex_state = 2}, - [6198] = {.lex_state = 24, .external_lex_state = 2}, - [6199] = {.lex_state = 45, .external_lex_state = 2}, + [6196] = {.lex_state = 349, .external_lex_state = 5}, + [6197] = {.lex_state = 349, .external_lex_state = 5}, + [6198] = {.lex_state = 349, .external_lex_state = 5}, + [6199] = {.lex_state = 349, .external_lex_state = 5}, [6200] = {.lex_state = 349, .external_lex_state = 5}, [6201] = {.lex_state = 349, .external_lex_state = 5}, - [6202] = {.lex_state = 45, .external_lex_state = 2}, + [6202] = {.lex_state = 349, .external_lex_state = 5}, [6203] = {.lex_state = 349, .external_lex_state = 5}, [6204] = {.lex_state = 349, .external_lex_state = 5}, - [6205] = {.lex_state = 45, .external_lex_state = 2}, + [6205] = {.lex_state = 349, .external_lex_state = 5}, [6206] = {.lex_state = 349, .external_lex_state = 5}, - [6207] = {.lex_state = 45, .external_lex_state = 2}, + [6207] = {.lex_state = 349, .external_lex_state = 5}, [6208] = {.lex_state = 349, .external_lex_state = 5}, - [6209] = {.lex_state = 349, .external_lex_state = 2}, - [6210] = {.lex_state = 45, .external_lex_state = 2}, - [6211] = {.lex_state = 349, .external_lex_state = 2}, - [6212] = {.lex_state = 349, .external_lex_state = 2}, - [6213] = {.lex_state = 349, .external_lex_state = 2}, + [6209] = {.lex_state = 349, .external_lex_state = 5}, + [6210] = {.lex_state = 349, .external_lex_state = 5}, + [6211] = {.lex_state = 349, .external_lex_state = 5}, + [6212] = {.lex_state = 47, .external_lex_state = 2}, + [6213] = {.lex_state = 349, .external_lex_state = 5}, [6214] = {.lex_state = 349, .external_lex_state = 5}, [6215] = {.lex_state = 349, .external_lex_state = 5}, - [6216] = {.lex_state = 349, .external_lex_state = 2}, + [6216] = {.lex_state = 349, .external_lex_state = 5}, [6217] = {.lex_state = 349, .external_lex_state = 5}, - [6218] = {.lex_state = 349, .external_lex_state = 2}, - [6219] = {.lex_state = 349, .external_lex_state = 2}, + [6218] = {.lex_state = 349, .external_lex_state = 5}, + [6219] = {.lex_state = 349, .external_lex_state = 5}, [6220] = {.lex_state = 349, .external_lex_state = 5}, [6221] = {.lex_state = 349, .external_lex_state = 5}, - [6222] = {.lex_state = 349, .external_lex_state = 2}, - [6223] = {.lex_state = 349, .external_lex_state = 2}, + [6222] = {.lex_state = 349, .external_lex_state = 5}, + [6223] = {.lex_state = 349, .external_lex_state = 5}, [6224] = {.lex_state = 349, .external_lex_state = 5}, - [6225] = {.lex_state = 46, .external_lex_state = 2}, - [6226] = {.lex_state = 349, .external_lex_state = 2}, + [6225] = {.lex_state = 349, .external_lex_state = 5}, + [6226] = {.lex_state = 47, .external_lex_state = 5}, [6227] = {.lex_state = 349, .external_lex_state = 5}, [6228] = {.lex_state = 349, .external_lex_state = 5}, - [6229] = {.lex_state = 349, .external_lex_state = 2}, - [6230] = {.lex_state = 349, .external_lex_state = 5}, + [6229] = {.lex_state = 349, .external_lex_state = 5}, + [6230] = {.lex_state = 47, .external_lex_state = 5}, [6231] = {.lex_state = 349, .external_lex_state = 5}, [6232] = {.lex_state = 349, .external_lex_state = 5}, - [6233] = {.lex_state = 349, .external_lex_state = 2}, - [6234] = {.lex_state = 349, .external_lex_state = 2}, + [6233] = {.lex_state = 349, .external_lex_state = 5}, + [6234] = {.lex_state = 349, .external_lex_state = 5}, [6235] = {.lex_state = 349, .external_lex_state = 5}, [6236] = {.lex_state = 349, .external_lex_state = 5}, [6237] = {.lex_state = 349, .external_lex_state = 5}, - [6238] = {.lex_state = 349, .external_lex_state = 2}, - [6239] = {.lex_state = 349, .external_lex_state = 2}, + [6238] = {.lex_state = 349, .external_lex_state = 5}, + [6239] = {.lex_state = 349, .external_lex_state = 5}, [6240] = {.lex_state = 349, .external_lex_state = 5}, - [6241] = {.lex_state = 75, .external_lex_state = 2}, + [6241] = {.lex_state = 349, .external_lex_state = 2}, [6242] = {.lex_state = 349, .external_lex_state = 5}, - [6243] = {.lex_state = 349, .external_lex_state = 2}, + [6243] = {.lex_state = 349, .external_lex_state = 5}, [6244] = {.lex_state = 349, .external_lex_state = 5}, [6245] = {.lex_state = 349, .external_lex_state = 2}, - [6246] = {.lex_state = 21, .external_lex_state = 2}, - [6247] = {.lex_state = 349, .external_lex_state = 2}, - [6248] = {.lex_state = 349, .external_lex_state = 2}, - [6249] = {.lex_state = 349, .external_lex_state = 2}, + [6246] = {.lex_state = 349, .external_lex_state = 5}, + [6247] = {.lex_state = 349, .external_lex_state = 5}, + [6248] = {.lex_state = 349, .external_lex_state = 5}, + [6249] = {.lex_state = 349, .external_lex_state = 5}, [6250] = {.lex_state = 349, .external_lex_state = 5}, - [6251] = {.lex_state = 349, .external_lex_state = 2}, - [6252] = {.lex_state = 45, .external_lex_state = 2}, - [6253] = {.lex_state = 45, .external_lex_state = 2}, - [6254] = {.lex_state = 349, .external_lex_state = 5}, + [6251] = {.lex_state = 349, .external_lex_state = 5}, + [6252] = {.lex_state = 349, .external_lex_state = 2}, + [6253] = {.lex_state = 349, .external_lex_state = 5}, + [6254] = {.lex_state = 45, .external_lex_state = 2}, [6255] = {.lex_state = 349, .external_lex_state = 5}, [6256] = {.lex_state = 45, .external_lex_state = 2}, - [6257] = {.lex_state = 349, .external_lex_state = 2}, + [6257] = {.lex_state = 349, .external_lex_state = 5}, [6258] = {.lex_state = 45, .external_lex_state = 2}, [6259] = {.lex_state = 349, .external_lex_state = 5}, - [6260] = {.lex_state = 45, .external_lex_state = 2}, - [6261] = {.lex_state = 45, .external_lex_state = 2}, - [6262] = {.lex_state = 349, .external_lex_state = 2}, + [6260] = {.lex_state = 24, .external_lex_state = 2}, + [6261] = {.lex_state = 349, .external_lex_state = 5}, + [6262] = {.lex_state = 349, .external_lex_state = 5}, [6263] = {.lex_state = 349, .external_lex_state = 5}, - [6264] = {.lex_state = 24, .external_lex_state = 2}, + [6264] = {.lex_state = 349, .external_lex_state = 2}, [6265] = {.lex_state = 349, .external_lex_state = 2}, [6266] = {.lex_state = 349, .external_lex_state = 5}, [6267] = {.lex_state = 349, .external_lex_state = 5}, - [6268] = {.lex_state = 349, .external_lex_state = 2}, - [6269] = {.lex_state = 349, .external_lex_state = 2}, - [6270] = {.lex_state = 349, .external_lex_state = 2}, + [6268] = {.lex_state = 349, .external_lex_state = 5}, + [6269] = {.lex_state = 349, .external_lex_state = 5}, + [6270] = {.lex_state = 349, .external_lex_state = 5}, [6271] = {.lex_state = 349, .external_lex_state = 5}, - [6272] = {.lex_state = 349, .external_lex_state = 2}, + [6272] = {.lex_state = 349, .external_lex_state = 5}, [6273] = {.lex_state = 349, .external_lex_state = 5}, - [6274] = {.lex_state = 45, .external_lex_state = 2}, + [6274] = {.lex_state = 349, .external_lex_state = 5}, [6275] = {.lex_state = 349, .external_lex_state = 5}, - [6276] = {.lex_state = 349, .external_lex_state = 2}, - [6277] = {.lex_state = 349, .external_lex_state = 2}, - [6278] = {.lex_state = 349, .external_lex_state = 2}, + [6276] = {.lex_state = 349, .external_lex_state = 5}, + [6277] = {.lex_state = 349, .external_lex_state = 5}, + [6278] = {.lex_state = 349, .external_lex_state = 5}, [6279] = {.lex_state = 349, .external_lex_state = 5}, - [6280] = {.lex_state = 62, .external_lex_state = 2}, - [6281] = {.lex_state = 349, .external_lex_state = 2}, - [6282] = {.lex_state = 349, .external_lex_state = 5}, + [6280] = {.lex_state = 349, .external_lex_state = 5}, + [6281] = {.lex_state = 349, .external_lex_state = 5}, + [6282] = {.lex_state = 24, .external_lex_state = 2}, [6283] = {.lex_state = 349, .external_lex_state = 5}, - [6284] = {.lex_state = 349, .external_lex_state = 5}, - [6285] = {.lex_state = 349, .external_lex_state = 5}, + [6284] = {.lex_state = 349, .external_lex_state = 2}, + [6285] = {.lex_state = 349, .external_lex_state = 2}, [6286] = {.lex_state = 349, .external_lex_state = 5}, - [6287] = {.lex_state = 349, .external_lex_state = 2}, + [6287] = {.lex_state = 349, .external_lex_state = 5}, [6288] = {.lex_state = 349, .external_lex_state = 5}, [6289] = {.lex_state = 349, .external_lex_state = 5}, - [6290] = {.lex_state = 21, .external_lex_state = 2}, - [6291] = {.lex_state = 349, .external_lex_state = 2}, + [6290] = {.lex_state = 349, .external_lex_state = 5}, + [6291] = {.lex_state = 349, .external_lex_state = 5}, [6292] = {.lex_state = 349, .external_lex_state = 5}, - [6293] = {.lex_state = 349, .external_lex_state = 5}, - [6294] = {.lex_state = 349, .external_lex_state = 5}, + [6293] = {.lex_state = 47, .external_lex_state = 2}, + [6294] = {.lex_state = 349, .external_lex_state = 2}, [6295] = {.lex_state = 349, .external_lex_state = 5}, - [6296] = {.lex_state = 47, .external_lex_state = 2}, - [6297] = {.lex_state = 47, .external_lex_state = 2}, - [6298] = {.lex_state = 47, .external_lex_state = 2}, - [6299] = {.lex_state = 349, .external_lex_state = 5}, - [6300] = {.lex_state = 47, .external_lex_state = 2}, - [6301] = {.lex_state = 349, .external_lex_state = 5}, - [6302] = {.lex_state = 47, .external_lex_state = 2}, - [6303] = {.lex_state = 349, .external_lex_state = 5}, - [6304] = {.lex_state = 349, .external_lex_state = 5}, + [6296] = {.lex_state = 349, .external_lex_state = 2}, + [6297] = {.lex_state = 349, .external_lex_state = 2}, + [6298] = {.lex_state = 349, .external_lex_state = 2}, + [6299] = {.lex_state = 349, .external_lex_state = 2}, + [6300] = {.lex_state = 349, .external_lex_state = 5}, + [6301] = {.lex_state = 349, .external_lex_state = 2}, + [6302] = {.lex_state = 349, .external_lex_state = 2}, + [6303] = {.lex_state = 349, .external_lex_state = 2}, + [6304] = {.lex_state = 349, .external_lex_state = 2}, [6305] = {.lex_state = 349, .external_lex_state = 2}, [6306] = {.lex_state = 349, .external_lex_state = 2}, - [6307] = {.lex_state = 349, .external_lex_state = 5}, - [6308] = {.lex_state = 349, .external_lex_state = 5}, - [6309] = {.lex_state = 349, .external_lex_state = 5}, + [6307] = {.lex_state = 349, .external_lex_state = 2}, + [6308] = {.lex_state = 349, .external_lex_state = 2}, + [6309] = {.lex_state = 349, .external_lex_state = 2}, [6310] = {.lex_state = 349, .external_lex_state = 2}, - [6311] = {.lex_state = 47, .external_lex_state = 2}, - [6312] = {.lex_state = 45, .external_lex_state = 2}, - [6313] = {.lex_state = 349, .external_lex_state = 5}, - [6314] = {.lex_state = 24, .external_lex_state = 2}, - [6315] = {.lex_state = 47, .external_lex_state = 2}, + [6311] = {.lex_state = 349, .external_lex_state = 2}, + [6312] = {.lex_state = 349, .external_lex_state = 2}, + [6313] = {.lex_state = 349, .external_lex_state = 2}, + [6314] = {.lex_state = 349, .external_lex_state = 2}, + [6315] = {.lex_state = 349, .external_lex_state = 2}, [6316] = {.lex_state = 349, .external_lex_state = 2}, [6317] = {.lex_state = 349, .external_lex_state = 2}, - [6318] = {.lex_state = 62, .external_lex_state = 2}, + [6318] = {.lex_state = 349, .external_lex_state = 2}, [6319] = {.lex_state = 349, .external_lex_state = 2}, - [6320] = {.lex_state = 45, .external_lex_state = 2}, - [6321] = {.lex_state = 349, .external_lex_state = 5}, + [6320] = {.lex_state = 349, .external_lex_state = 2}, + [6321] = {.lex_state = 349, .external_lex_state = 2}, [6322] = {.lex_state = 349, .external_lex_state = 5}, - [6323] = {.lex_state = 349, .external_lex_state = 5}, - [6324] = {.lex_state = 349, .external_lex_state = 2}, + [6323] = {.lex_state = 349, .external_lex_state = 2}, + [6324] = {.lex_state = 349, .external_lex_state = 5}, [6325] = {.lex_state = 349, .external_lex_state = 2}, - [6326] = {.lex_state = 70, .external_lex_state = 2}, - [6327] = {.lex_state = 349, .external_lex_state = 5}, - [6328] = {.lex_state = 58, .external_lex_state = 9}, - [6329] = {.lex_state = 54, .external_lex_state = 9}, - [6330] = {.lex_state = 45, .external_lex_state = 2}, + [6326] = {.lex_state = 349, .external_lex_state = 2}, + [6327] = {.lex_state = 349, .external_lex_state = 2}, + [6328] = {.lex_state = 349, .external_lex_state = 2}, + [6329] = {.lex_state = 349, .external_lex_state = 2}, + [6330] = {.lex_state = 349, .external_lex_state = 5}, [6331] = {.lex_state = 349, .external_lex_state = 2}, [6332] = {.lex_state = 349, .external_lex_state = 2}, [6333] = {.lex_state = 349, .external_lex_state = 2}, - [6334] = {.lex_state = 349, .external_lex_state = 5}, - [6335] = {.lex_state = 349, .external_lex_state = 2}, + [6334] = {.lex_state = 349, .external_lex_state = 2}, + [6335] = {.lex_state = 349, .external_lex_state = 5}, [6336] = {.lex_state = 349, .external_lex_state = 2}, - [6337] = {.lex_state = 349, .external_lex_state = 5}, - [6338] = {.lex_state = 349, .external_lex_state = 5}, - [6339] = {.lex_state = 349, .external_lex_state = 2}, - [6340] = {.lex_state = 349, .external_lex_state = 5}, - [6341] = {.lex_state = 349, .external_lex_state = 5}, + [6337] = {.lex_state = 349, .external_lex_state = 2}, + [6338] = {.lex_state = 349, .external_lex_state = 2}, + [6339] = {.lex_state = 349, .external_lex_state = 5}, + [6340] = {.lex_state = 1, .external_lex_state = 2}, + [6341] = {.lex_state = 349, .external_lex_state = 2}, [6342] = {.lex_state = 349, .external_lex_state = 2}, - [6343] = {.lex_state = 349, .external_lex_state = 5}, + [6343] = {.lex_state = 349, .external_lex_state = 2}, [6344] = {.lex_state = 349, .external_lex_state = 2}, [6345] = {.lex_state = 349, .external_lex_state = 5}, - [6346] = {.lex_state = 349, .external_lex_state = 5}, + [6346] = {.lex_state = 349, .external_lex_state = 2}, [6347] = {.lex_state = 349, .external_lex_state = 2}, - [6348] = {.lex_state = 349, .external_lex_state = 5}, + [6348] = {.lex_state = 349, .external_lex_state = 2}, [6349] = {.lex_state = 349, .external_lex_state = 5}, [6350] = {.lex_state = 349, .external_lex_state = 2}, - [6351] = {.lex_state = 349, .external_lex_state = 5}, - [6352] = {.lex_state = 349, .external_lex_state = 2}, + [6351] = {.lex_state = 47, .external_lex_state = 2}, + [6352] = {.lex_state = 47, .external_lex_state = 2}, [6353] = {.lex_state = 349, .external_lex_state = 2}, [6354] = {.lex_state = 349, .external_lex_state = 2}, [6355] = {.lex_state = 349, .external_lex_state = 2}, - [6356] = {.lex_state = 349, .external_lex_state = 2}, - [6357] = {.lex_state = 349, .external_lex_state = 5}, - [6358] = {.lex_state = 349, .external_lex_state = 5}, - [6359] = {.lex_state = 349, .external_lex_state = 5}, + [6356] = {.lex_state = 349, .external_lex_state = 5}, + [6357] = {.lex_state = 349, .external_lex_state = 2}, + [6358] = {.lex_state = 349, .external_lex_state = 2}, + [6359] = {.lex_state = 349, .external_lex_state = 2}, [6360] = {.lex_state = 349, .external_lex_state = 2}, - [6361] = {.lex_state = 349, .external_lex_state = 2}, + [6361] = {.lex_state = 47, .external_lex_state = 2}, [6362] = {.lex_state = 349, .external_lex_state = 2}, [6363] = {.lex_state = 349, .external_lex_state = 2}, - [6364] = {.lex_state = 24, .external_lex_state = 2}, - [6365] = {.lex_state = 349, .external_lex_state = 5}, + [6364] = {.lex_state = 349, .external_lex_state = 2}, + [6365] = {.lex_state = 349, .external_lex_state = 2}, [6366] = {.lex_state = 349, .external_lex_state = 2}, - [6367] = {.lex_state = 349, .external_lex_state = 5}, - [6368] = {.lex_state = 45, .external_lex_state = 2}, - [6369] = {.lex_state = 349, .external_lex_state = 5}, + [6367] = {.lex_state = 349, .external_lex_state = 2}, + [6368] = {.lex_state = 47, .external_lex_state = 2}, + [6369] = {.lex_state = 349, .external_lex_state = 2}, [6370] = {.lex_state = 349, .external_lex_state = 2}, [6371] = {.lex_state = 349, .external_lex_state = 2}, [6372] = {.lex_state = 349, .external_lex_state = 2}, - [6373] = {.lex_state = 349, .external_lex_state = 5}, - [6374] = {.lex_state = 349, .external_lex_state = 5}, + [6373] = {.lex_state = 349, .external_lex_state = 2}, + [6374] = {.lex_state = 349, .external_lex_state = 2}, [6375] = {.lex_state = 349, .external_lex_state = 2}, - [6376] = {.lex_state = 45, .external_lex_state = 2}, - [6377] = {.lex_state = 349, .external_lex_state = 5}, + [6376] = {.lex_state = 47, .external_lex_state = 2}, + [6377] = {.lex_state = 349, .external_lex_state = 2}, [6378] = {.lex_state = 349, .external_lex_state = 2}, [6379] = {.lex_state = 349, .external_lex_state = 2}, [6380] = {.lex_state = 349, .external_lex_state = 2}, [6381] = {.lex_state = 349, .external_lex_state = 2}, - [6382] = {.lex_state = 349, .external_lex_state = 5}, - [6383] = {.lex_state = 349, .external_lex_state = 5}, + [6382] = {.lex_state = 349, .external_lex_state = 2}, + [6383] = {.lex_state = 47, .external_lex_state = 2}, [6384] = {.lex_state = 349, .external_lex_state = 2}, - [6385] = {.lex_state = 349, .external_lex_state = 5}, - [6386] = {.lex_state = 349, .external_lex_state = 5}, - [6387] = {.lex_state = 349, .external_lex_state = 5}, + [6385] = {.lex_state = 349, .external_lex_state = 2}, + [6386] = {.lex_state = 349, .external_lex_state = 2}, + [6387] = {.lex_state = 349, .external_lex_state = 2}, [6388] = {.lex_state = 349, .external_lex_state = 2}, - [6389] = {.lex_state = 349, .external_lex_state = 5}, - [6390] = {.lex_state = 349, .external_lex_state = 5}, + [6389] = {.lex_state = 349, .external_lex_state = 2}, + [6390] = {.lex_state = 349, .external_lex_state = 2}, [6391] = {.lex_state = 349, .external_lex_state = 2}, [6392] = {.lex_state = 349, .external_lex_state = 2}, - [6393] = {.lex_state = 45, .external_lex_state = 2}, - [6394] = {.lex_state = 45, .external_lex_state = 2}, - [6395] = {.lex_state = 349, .external_lex_state = 5}, - [6396] = {.lex_state = 47, .external_lex_state = 2}, - [6397] = {.lex_state = 21, .external_lex_state = 2}, - [6398] = {.lex_state = 349, .external_lex_state = 5}, - [6399] = {.lex_state = 349, .external_lex_state = 5}, - [6400] = {.lex_state = 349, .external_lex_state = 5}, - [6401] = {.lex_state = 47, .external_lex_state = 2}, - [6402] = {.lex_state = 47, .external_lex_state = 5}, - [6403] = {.lex_state = 349, .external_lex_state = 5}, - [6404] = {.lex_state = 47, .external_lex_state = 5}, - [6405] = {.lex_state = 47, .external_lex_state = 2}, - [6406] = {.lex_state = 349, .external_lex_state = 5}, + [6393] = {.lex_state = 47, .external_lex_state = 2}, + [6394] = {.lex_state = 349, .external_lex_state = 2}, + [6395] = {.lex_state = 349, .external_lex_state = 2}, + [6396] = {.lex_state = 349, .external_lex_state = 2}, + [6397] = {.lex_state = 349, .external_lex_state = 2}, + [6398] = {.lex_state = 349, .external_lex_state = 2}, + [6399] = {.lex_state = 349, .external_lex_state = 2}, + [6400] = {.lex_state = 349, .external_lex_state = 2}, + [6401] = {.lex_state = 349, .external_lex_state = 2}, + [6402] = {.lex_state = 349, .external_lex_state = 2}, + [6403] = {.lex_state = 349, .external_lex_state = 2}, + [6404] = {.lex_state = 349, .external_lex_state = 2}, + [6405] = {.lex_state = 349, .external_lex_state = 2}, + [6406] = {.lex_state = 349, .external_lex_state = 2}, [6407] = {.lex_state = 349, .external_lex_state = 2}, - [6408] = {.lex_state = 24, .external_lex_state = 2}, - [6409] = {.lex_state = 349, .external_lex_state = 5}, - [6410] = {.lex_state = 349, .external_lex_state = 5}, - [6411] = {.lex_state = 24, .external_lex_state = 2}, - [6412] = {.lex_state = 349, .external_lex_state = 5}, - [6413] = {.lex_state = 349, .external_lex_state = 5}, - [6414] = {.lex_state = 47, .external_lex_state = 5}, - [6415] = {.lex_state = 24, .external_lex_state = 2}, - [6416] = {.lex_state = 24, .external_lex_state = 2}, + [6408] = {.lex_state = 349, .external_lex_state = 2}, + [6409] = {.lex_state = 349, .external_lex_state = 2}, + [6410] = {.lex_state = 47, .external_lex_state = 2}, + [6411] = {.lex_state = 349, .external_lex_state = 2}, + [6412] = {.lex_state = 349, .external_lex_state = 2}, + [6413] = {.lex_state = 349, .external_lex_state = 2}, + [6414] = {.lex_state = 349, .external_lex_state = 2}, + [6415] = {.lex_state = 349, .external_lex_state = 2}, + [6416] = {.lex_state = 349, .external_lex_state = 2}, [6417] = {.lex_state = 349, .external_lex_state = 2}, - [6418] = {.lex_state = 45, .external_lex_state = 2}, - [6419] = {.lex_state = 349, .external_lex_state = 5}, - [6420] = {.lex_state = 24, .external_lex_state = 2}, - [6421] = {.lex_state = 24, .external_lex_state = 2}, - [6422] = {.lex_state = 24, .external_lex_state = 2}, - [6423] = {.lex_state = 24, .external_lex_state = 2}, - [6424] = {.lex_state = 349, .external_lex_state = 5}, - [6425] = {.lex_state = 24, .external_lex_state = 2}, - [6426] = {.lex_state = 24, .external_lex_state = 2}, - [6427] = {.lex_state = 24, .external_lex_state = 2}, + [6418] = {.lex_state = 349, .external_lex_state = 2}, + [6419] = {.lex_state = 349, .external_lex_state = 2}, + [6420] = {.lex_state = 349, .external_lex_state = 2}, + [6421] = {.lex_state = 349, .external_lex_state = 2}, + [6422] = {.lex_state = 349, .external_lex_state = 2}, + [6423] = {.lex_state = 349, .external_lex_state = 2}, + [6424] = {.lex_state = 349, .external_lex_state = 2}, + [6425] = {.lex_state = 349, .external_lex_state = 2}, + [6426] = {.lex_state = 349, .external_lex_state = 2}, + [6427] = {.lex_state = 349, .external_lex_state = 2}, [6428] = {.lex_state = 349, .external_lex_state = 5}, - [6429] = {.lex_state = 24, .external_lex_state = 2}, - [6430] = {.lex_state = 349, .external_lex_state = 5}, - [6431] = {.lex_state = 24, .external_lex_state = 2}, + [6429] = {.lex_state = 349, .external_lex_state = 5}, + [6430] = {.lex_state = 349, .external_lex_state = 2}, + [6431] = {.lex_state = 349, .external_lex_state = 5}, [6432] = {.lex_state = 349, .external_lex_state = 5}, - [6433] = {.lex_state = 47, .external_lex_state = 5}, - [6434] = {.lex_state = 349, .external_lex_state = 5}, - [6435] = {.lex_state = 349, .external_lex_state = 2}, - [6436] = {.lex_state = 349, .external_lex_state = 5}, - [6437] = {.lex_state = 45, .external_lex_state = 2}, - [6438] = {.lex_state = 349, .external_lex_state = 5}, - [6439] = {.lex_state = 45, .external_lex_state = 2}, + [6433] = {.lex_state = 47, .external_lex_state = 2}, + [6434] = {.lex_state = 349, .external_lex_state = 2}, + [6435] = {.lex_state = 349, .external_lex_state = 5}, + [6436] = {.lex_state = 349, .external_lex_state = 2}, + [6437] = {.lex_state = 47, .external_lex_state = 2}, + [6438] = {.lex_state = 349, .external_lex_state = 2}, + [6439] = {.lex_state = 349, .external_lex_state = 2}, [6440] = {.lex_state = 349, .external_lex_state = 2}, [6441] = {.lex_state = 349, .external_lex_state = 2}, [6442] = {.lex_state = 349, .external_lex_state = 2}, [6443] = {.lex_state = 349, .external_lex_state = 2}, - [6444] = {.lex_state = 349, .external_lex_state = 2}, + [6444] = {.lex_state = 47, .external_lex_state = 2}, [6445] = {.lex_state = 349, .external_lex_state = 2}, [6446] = {.lex_state = 349, .external_lex_state = 2}, [6447] = {.lex_state = 349, .external_lex_state = 2}, [6448] = {.lex_state = 349, .external_lex_state = 2}, - [6449] = {.lex_state = 349, .external_lex_state = 5}, - [6450] = {.lex_state = 349, .external_lex_state = 5}, - [6451] = {.lex_state = 349, .external_lex_state = 5}, + [6449] = {.lex_state = 349, .external_lex_state = 2}, + [6450] = {.lex_state = 349, .external_lex_state = 2}, + [6451] = {.lex_state = 349, .external_lex_state = 2}, [6452] = {.lex_state = 349, .external_lex_state = 2}, [6453] = {.lex_state = 349, .external_lex_state = 5}, - [6454] = {.lex_state = 349, .external_lex_state = 5}, + [6454] = {.lex_state = 349, .external_lex_state = 2}, [6455] = {.lex_state = 349, .external_lex_state = 2}, - [6456] = {.lex_state = 349, .external_lex_state = 5}, + [6456] = {.lex_state = 349, .external_lex_state = 2}, [6457] = {.lex_state = 349, .external_lex_state = 2}, - [6458] = {.lex_state = 349, .external_lex_state = 2}, + [6458] = {.lex_state = 349, .external_lex_state = 5}, [6459] = {.lex_state = 349, .external_lex_state = 2}, - [6460] = {.lex_state = 349, .external_lex_state = 5}, + [6460] = {.lex_state = 349, .external_lex_state = 2}, [6461] = {.lex_state = 349, .external_lex_state = 2}, [6462] = {.lex_state = 349, .external_lex_state = 2}, [6463] = {.lex_state = 349, .external_lex_state = 2}, [6464] = {.lex_state = 349, .external_lex_state = 2}, - [6465] = {.lex_state = 349, .external_lex_state = 2}, + [6465] = {.lex_state = 349, .external_lex_state = 5}, [6466] = {.lex_state = 349, .external_lex_state = 2}, [6467] = {.lex_state = 349, .external_lex_state = 2}, [6468] = {.lex_state = 349, .external_lex_state = 2}, [6469] = {.lex_state = 349, .external_lex_state = 2}, - [6470] = {.lex_state = 349, .external_lex_state = 5}, - [6471] = {.lex_state = 1, .external_lex_state = 2}, + [6470] = {.lex_state = 349, .external_lex_state = 2}, + [6471] = {.lex_state = 349, .external_lex_state = 2}, [6472] = {.lex_state = 349, .external_lex_state = 2}, - [6473] = {.lex_state = 349, .external_lex_state = 2}, + [6473] = {.lex_state = 47, .external_lex_state = 2}, [6474] = {.lex_state = 349, .external_lex_state = 2}, - [6475] = {.lex_state = 349, .external_lex_state = 5}, - [6476] = {.lex_state = 349, .external_lex_state = 2}, - [6477] = {.lex_state = 349, .external_lex_state = 5}, - [6478] = {.lex_state = 349, .external_lex_state = 2}, - [6479] = {.lex_state = 349, .external_lex_state = 2}, + [6475] = {.lex_state = 349, .external_lex_state = 2}, + [6476] = {.lex_state = 349, .external_lex_state = 5}, + [6477] = {.lex_state = 349, .external_lex_state = 2}, + [6478] = {.lex_state = 47, .external_lex_state = 2}, + [6479] = {.lex_state = 349, .external_lex_state = 5}, [6480] = {.lex_state = 349, .external_lex_state = 2}, - [6481] = {.lex_state = 349, .external_lex_state = 2}, + [6481] = {.lex_state = 47, .external_lex_state = 2}, [6482] = {.lex_state = 349, .external_lex_state = 2}, [6483] = {.lex_state = 349, .external_lex_state = 2}, - [6484] = {.lex_state = 349, .external_lex_state = 2}, + [6484] = {.lex_state = 47, .external_lex_state = 2}, [6485] = {.lex_state = 349, .external_lex_state = 2}, - [6486] = {.lex_state = 349, .external_lex_state = 2}, + [6486] = {.lex_state = 47, .external_lex_state = 2}, [6487] = {.lex_state = 349, .external_lex_state = 2}, [6488] = {.lex_state = 349, .external_lex_state = 2}, [6489] = {.lex_state = 349, .external_lex_state = 2}, - [6490] = {.lex_state = 349, .external_lex_state = 5}, + [6490] = {.lex_state = 349, .external_lex_state = 2}, [6491] = {.lex_state = 47, .external_lex_state = 2}, - [6492] = {.lex_state = 47, .external_lex_state = 2}, + [6492] = {.lex_state = 349, .external_lex_state = 5}, [6493] = {.lex_state = 349, .external_lex_state = 2}, - [6494] = {.lex_state = 349, .external_lex_state = 2}, - [6495] = {.lex_state = 349, .external_lex_state = 2}, - [6496] = {.lex_state = 349, .external_lex_state = 2}, + [6494] = {.lex_state = 47, .external_lex_state = 2}, + [6495] = {.lex_state = 349, .external_lex_state = 5}, + [6496] = {.lex_state = 349, .external_lex_state = 5}, [6497] = {.lex_state = 349, .external_lex_state = 2}, [6498] = {.lex_state = 349, .external_lex_state = 2}, - [6499] = {.lex_state = 47, .external_lex_state = 2}, - [6500] = {.lex_state = 349, .external_lex_state = 5}, - [6501] = {.lex_state = 349, .external_lex_state = 5}, - [6502] = {.lex_state = 349, .external_lex_state = 2}, - [6503] = {.lex_state = 349, .external_lex_state = 2}, - [6504] = {.lex_state = 349, .external_lex_state = 5}, - [6505] = {.lex_state = 349, .external_lex_state = 2}, - [6506] = {.lex_state = 349, .external_lex_state = 2}, - [6507] = {.lex_state = 47, .external_lex_state = 2}, - [6508] = {.lex_state = 349, .external_lex_state = 5}, + [6499] = {.lex_state = 349, .external_lex_state = 5}, + [6500] = {.lex_state = 349, .external_lex_state = 2}, + [6501] = {.lex_state = 349, .external_lex_state = 2}, + [6502] = {.lex_state = 349, .external_lex_state = 5}, + [6503] = {.lex_state = 47, .external_lex_state = 2}, + [6504] = {.lex_state = 349, .external_lex_state = 2}, + [6505] = {.lex_state = 1, .external_lex_state = 2}, + [6506] = {.lex_state = 349, .external_lex_state = 5}, + [6507] = {.lex_state = 349, .external_lex_state = 2}, + [6508] = {.lex_state = 349, .external_lex_state = 2}, [6509] = {.lex_state = 349, .external_lex_state = 2}, [6510] = {.lex_state = 349, .external_lex_state = 2}, [6511] = {.lex_state = 349, .external_lex_state = 2}, - [6512] = {.lex_state = 349, .external_lex_state = 2}, - [6513] = {.lex_state = 349, .external_lex_state = 2}, + [6512] = {.lex_state = 47, .external_lex_state = 2}, + [6513] = {.lex_state = 47, .external_lex_state = 2}, [6514] = {.lex_state = 349, .external_lex_state = 2}, - [6515] = {.lex_state = 47, .external_lex_state = 2}, - [6516] = {.lex_state = 349, .external_lex_state = 2}, - [6517] = {.lex_state = 349, .external_lex_state = 2}, - [6518] = {.lex_state = 349, .external_lex_state = 2}, + [6515] = {.lex_state = 349, .external_lex_state = 2}, + [6516] = {.lex_state = 349, .external_lex_state = 5}, + [6517] = {.lex_state = 349, .external_lex_state = 5}, + [6518] = {.lex_state = 349, .external_lex_state = 5}, [6519] = {.lex_state = 349, .external_lex_state = 2}, - [6520] = {.lex_state = 47, .external_lex_state = 2}, - [6521] = {.lex_state = 47, .external_lex_state = 2}, + [6520] = {.lex_state = 349, .external_lex_state = 5}, + [6521] = {.lex_state = 349, .external_lex_state = 2}, [6522] = {.lex_state = 349, .external_lex_state = 2}, [6523] = {.lex_state = 349, .external_lex_state = 2}, - [6524] = {.lex_state = 47, .external_lex_state = 2}, - [6525] = {.lex_state = 47, .external_lex_state = 2}, - [6526] = {.lex_state = 47, .external_lex_state = 2}, + [6524] = {.lex_state = 349, .external_lex_state = 2}, + [6525] = {.lex_state = 349, .external_lex_state = 2}, + [6526] = {.lex_state = 349, .external_lex_state = 2}, [6527] = {.lex_state = 349, .external_lex_state = 2}, - [6528] = {.lex_state = 349, .external_lex_state = 2}, - [6529] = {.lex_state = 349, .external_lex_state = 2}, - [6530] = {.lex_state = 349, .external_lex_state = 5}, + [6528] = {.lex_state = 47, .external_lex_state = 2}, + [6529] = {.lex_state = 349, .external_lex_state = 5}, + [6530] = {.lex_state = 349, .external_lex_state = 2}, [6531] = {.lex_state = 349, .external_lex_state = 5}, [6532] = {.lex_state = 349, .external_lex_state = 5}, [6533] = {.lex_state = 349, .external_lex_state = 2}, @@ -27023,28 +26804,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6541] = {.lex_state = 349, .external_lex_state = 2}, [6542] = {.lex_state = 349, .external_lex_state = 2}, [6543] = {.lex_state = 349, .external_lex_state = 2}, - [6544] = {.lex_state = 349, .external_lex_state = 2}, + [6544] = {.lex_state = 349, .external_lex_state = 5}, [6545] = {.lex_state = 349, .external_lex_state = 2}, [6546] = {.lex_state = 349, .external_lex_state = 2}, - [6547] = {.lex_state = 349, .external_lex_state = 2}, - [6548] = {.lex_state = 47, .external_lex_state = 2}, - [6549] = {.lex_state = 349, .external_lex_state = 2}, - [6550] = {.lex_state = 349, .external_lex_state = 5}, - [6551] = {.lex_state = 349, .external_lex_state = 5}, + [6547] = {.lex_state = 349, .external_lex_state = 5}, + [6548] = {.lex_state = 349, .external_lex_state = 2}, + [6549] = {.lex_state = 349, .external_lex_state = 5}, + [6550] = {.lex_state = 349, .external_lex_state = 2}, + [6551] = {.lex_state = 349, .external_lex_state = 2}, [6552] = {.lex_state = 349, .external_lex_state = 2}, [6553] = {.lex_state = 349, .external_lex_state = 2}, - [6554] = {.lex_state = 349, .external_lex_state = 5}, + [6554] = {.lex_state = 349, .external_lex_state = 2}, [6555] = {.lex_state = 349, .external_lex_state = 5}, [6556] = {.lex_state = 349, .external_lex_state = 5}, - [6557] = {.lex_state = 349, .external_lex_state = 2}, + [6557] = {.lex_state = 349, .external_lex_state = 5}, [6558] = {.lex_state = 349, .external_lex_state = 2}, [6559] = {.lex_state = 349, .external_lex_state = 2}, - [6560] = {.lex_state = 349, .external_lex_state = 5}, + [6560] = {.lex_state = 349, .external_lex_state = 2}, [6561] = {.lex_state = 349, .external_lex_state = 5}, [6562] = {.lex_state = 349, .external_lex_state = 2}, - [6563] = {.lex_state = 349, .external_lex_state = 5}, + [6563] = {.lex_state = 349, .external_lex_state = 2}, [6564] = {.lex_state = 349, .external_lex_state = 2}, - [6565] = {.lex_state = 47, .external_lex_state = 2}, + [6565] = {.lex_state = 349, .external_lex_state = 5}, [6566] = {.lex_state = 349, .external_lex_state = 2}, [6567] = {.lex_state = 349, .external_lex_state = 2}, [6568] = {.lex_state = 349, .external_lex_state = 2}, @@ -27052,180 +26833,180 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6570] = {.lex_state = 349, .external_lex_state = 2}, [6571] = {.lex_state = 349, .external_lex_state = 2}, [6572] = {.lex_state = 349, .external_lex_state = 2}, - [6573] = {.lex_state = 349, .external_lex_state = 2}, + [6573] = {.lex_state = 349, .external_lex_state = 5}, [6574] = {.lex_state = 349, .external_lex_state = 2}, - [6575] = {.lex_state = 349, .external_lex_state = 5}, + [6575] = {.lex_state = 349, .external_lex_state = 2}, [6576] = {.lex_state = 349, .external_lex_state = 2}, [6577] = {.lex_state = 349, .external_lex_state = 2}, [6578] = {.lex_state = 349, .external_lex_state = 2}, - [6579] = {.lex_state = 349, .external_lex_state = 5}, + [6579] = {.lex_state = 349, .external_lex_state = 2}, [6580] = {.lex_state = 349, .external_lex_state = 5}, [6581] = {.lex_state = 349, .external_lex_state = 5}, - [6582] = {.lex_state = 349, .external_lex_state = 5}, - [6583] = {.lex_state = 349, .external_lex_state = 5}, - [6584] = {.lex_state = 349, .external_lex_state = 2}, - [6585] = {.lex_state = 349, .external_lex_state = 5}, + [6582] = {.lex_state = 349, .external_lex_state = 2}, + [6583] = {.lex_state = 47, .external_lex_state = 2}, + [6584] = {.lex_state = 349, .external_lex_state = 5}, + [6585] = {.lex_state = 349, .external_lex_state = 2}, [6586] = {.lex_state = 349, .external_lex_state = 2}, [6587] = {.lex_state = 349, .external_lex_state = 2}, [6588] = {.lex_state = 349, .external_lex_state = 2}, - [6589] = {.lex_state = 349, .external_lex_state = 5}, + [6589] = {.lex_state = 349, .external_lex_state = 2}, [6590] = {.lex_state = 349, .external_lex_state = 2}, - [6591] = {.lex_state = 349, .external_lex_state = 5}, - [6592] = {.lex_state = 47, .external_lex_state = 2}, + [6591] = {.lex_state = 349, .external_lex_state = 2}, + [6592] = {.lex_state = 349, .external_lex_state = 2}, [6593] = {.lex_state = 349, .external_lex_state = 2}, [6594] = {.lex_state = 349, .external_lex_state = 2}, - [6595] = {.lex_state = 349, .external_lex_state = 2}, - [6596] = {.lex_state = 349, .external_lex_state = 5}, - [6597] = {.lex_state = 349, .external_lex_state = 5}, + [6595] = {.lex_state = 47, .external_lex_state = 2}, + [6596] = {.lex_state = 349, .external_lex_state = 2}, + [6597] = {.lex_state = 349, .external_lex_state = 2}, [6598] = {.lex_state = 349, .external_lex_state = 2}, [6599] = {.lex_state = 349, .external_lex_state = 2}, [6600] = {.lex_state = 349, .external_lex_state = 2}, [6601] = {.lex_state = 349, .external_lex_state = 2}, - [6602] = {.lex_state = 349, .external_lex_state = 2}, + [6602] = {.lex_state = 349, .external_lex_state = 5}, [6603] = {.lex_state = 349, .external_lex_state = 2}, [6604] = {.lex_state = 349, .external_lex_state = 2}, - [6605] = {.lex_state = 349, .external_lex_state = 2}, - [6606] = {.lex_state = 349, .external_lex_state = 2}, + [6605] = {.lex_state = 349, .external_lex_state = 5}, + [6606] = {.lex_state = 349, .external_lex_state = 5}, [6607] = {.lex_state = 349, .external_lex_state = 2}, [6608] = {.lex_state = 349, .external_lex_state = 2}, [6609] = {.lex_state = 349, .external_lex_state = 2}, - [6610] = {.lex_state = 47, .external_lex_state = 2}, + [6610] = {.lex_state = 349, .external_lex_state = 2}, [6611] = {.lex_state = 349, .external_lex_state = 2}, [6612] = {.lex_state = 349, .external_lex_state = 2}, [6613] = {.lex_state = 349, .external_lex_state = 2}, [6614] = {.lex_state = 349, .external_lex_state = 2}, [6615] = {.lex_state = 349, .external_lex_state = 2}, - [6616] = {.lex_state = 349, .external_lex_state = 2}, + [6616] = {.lex_state = 349, .external_lex_state = 5}, [6617] = {.lex_state = 349, .external_lex_state = 2}, [6618] = {.lex_state = 349, .external_lex_state = 2}, - [6619] = {.lex_state = 349, .external_lex_state = 2}, + [6619] = {.lex_state = 349, .external_lex_state = 5}, [6620] = {.lex_state = 349, .external_lex_state = 2}, - [6621] = {.lex_state = 349, .external_lex_state = 2}, - [6622] = {.lex_state = 349, .external_lex_state = 2}, + [6621] = {.lex_state = 349, .external_lex_state = 5}, + [6622] = {.lex_state = 349, .external_lex_state = 5}, [6623] = {.lex_state = 349, .external_lex_state = 2}, - [6624] = {.lex_state = 349, .external_lex_state = 5}, + [6624] = {.lex_state = 349, .external_lex_state = 2}, [6625] = {.lex_state = 349, .external_lex_state = 2}, [6626] = {.lex_state = 349, .external_lex_state = 2}, - [6627] = {.lex_state = 349, .external_lex_state = 2}, - [6628] = {.lex_state = 349, .external_lex_state = 2}, + [6627] = {.lex_state = 349, .external_lex_state = 5}, + [6628] = {.lex_state = 349, .external_lex_state = 5}, [6629] = {.lex_state = 349, .external_lex_state = 2}, - [6630] = {.lex_state = 349, .external_lex_state = 2}, - [6631] = {.lex_state = 349, .external_lex_state = 2}, - [6632] = {.lex_state = 47, .external_lex_state = 2}, - [6633] = {.lex_state = 349, .external_lex_state = 2}, + [6630] = {.lex_state = 349, .external_lex_state = 5}, + [6631] = {.lex_state = 349, .external_lex_state = 5}, + [6632] = {.lex_state = 349, .external_lex_state = 2}, + [6633] = {.lex_state = 349, .external_lex_state = 5}, [6634] = {.lex_state = 47, .external_lex_state = 2}, [6635] = {.lex_state = 349, .external_lex_state = 2}, - [6636] = {.lex_state = 349, .external_lex_state = 2}, + [6636] = {.lex_state = 47, .external_lex_state = 2}, [6637] = {.lex_state = 349, .external_lex_state = 2}, - [6638] = {.lex_state = 1, .external_lex_state = 2}, + [6638] = {.lex_state = 349, .external_lex_state = 5}, [6639] = {.lex_state = 349, .external_lex_state = 2}, - [6640] = {.lex_state = 349, .external_lex_state = 2}, - [6641] = {.lex_state = 349, .external_lex_state = 2}, + [6640] = {.lex_state = 46, .external_lex_state = 2}, + [6641] = {.lex_state = 47, .external_lex_state = 2}, [6642] = {.lex_state = 349, .external_lex_state = 2}, - [6643] = {.lex_state = 349, .external_lex_state = 5}, + [6643] = {.lex_state = 349, .external_lex_state = 2}, [6644] = {.lex_state = 349, .external_lex_state = 2}, [6645] = {.lex_state = 349, .external_lex_state = 2}, [6646] = {.lex_state = 349, .external_lex_state = 2}, [6647] = {.lex_state = 349, .external_lex_state = 2}, - [6648] = {.lex_state = 47, .external_lex_state = 2}, - [6649] = {.lex_state = 47, .external_lex_state = 2}, - [6650] = {.lex_state = 349, .external_lex_state = 5}, + [6648] = {.lex_state = 349, .external_lex_state = 2}, + [6649] = {.lex_state = 349, .external_lex_state = 2}, + [6650] = {.lex_state = 349, .external_lex_state = 2}, [6651] = {.lex_state = 349, .external_lex_state = 2}, - [6652] = {.lex_state = 47, .external_lex_state = 2}, + [6652] = {.lex_state = 46, .external_lex_state = 2}, [6653] = {.lex_state = 349, .external_lex_state = 2}, - [6654] = {.lex_state = 47, .external_lex_state = 2}, - [6655] = {.lex_state = 47, .external_lex_state = 2}, - [6656] = {.lex_state = 47, .external_lex_state = 2}, - [6657] = {.lex_state = 47, .external_lex_state = 2}, + [6654] = {.lex_state = 349, .external_lex_state = 5}, + [6655] = {.lex_state = 349, .external_lex_state = 2}, + [6656] = {.lex_state = 349, .external_lex_state = 2}, + [6657] = {.lex_state = 349, .external_lex_state = 2}, [6658] = {.lex_state = 349, .external_lex_state = 2}, [6659] = {.lex_state = 349, .external_lex_state = 2}, - [6660] = {.lex_state = 349, .external_lex_state = 5}, - [6661] = {.lex_state = 349, .external_lex_state = 5}, - [6662] = {.lex_state = 349, .external_lex_state = 5}, + [6660] = {.lex_state = 349, .external_lex_state = 2}, + [6661] = {.lex_state = 349, .external_lex_state = 2}, + [6662] = {.lex_state = 349, .external_lex_state = 2}, [6663] = {.lex_state = 349, .external_lex_state = 2}, - [6664] = {.lex_state = 349, .external_lex_state = 5}, + [6664] = {.lex_state = 349, .external_lex_state = 2}, [6665] = {.lex_state = 349, .external_lex_state = 2}, [6666] = {.lex_state = 349, .external_lex_state = 2}, - [6667] = {.lex_state = 349, .external_lex_state = 5}, - [6668] = {.lex_state = 349, .external_lex_state = 2}, + [6667] = {.lex_state = 349, .external_lex_state = 2}, + [6668] = {.lex_state = 349, .external_lex_state = 5}, [6669] = {.lex_state = 349, .external_lex_state = 2}, [6670] = {.lex_state = 349, .external_lex_state = 2}, - [6671] = {.lex_state = 47, .external_lex_state = 2}, + [6671] = {.lex_state = 349, .external_lex_state = 2}, [6672] = {.lex_state = 349, .external_lex_state = 2}, [6673] = {.lex_state = 349, .external_lex_state = 2}, [6674] = {.lex_state = 349, .external_lex_state = 2}, - [6675] = {.lex_state = 349, .external_lex_state = 2}, + [6675] = {.lex_state = 47, .external_lex_state = 2}, [6676] = {.lex_state = 349, .external_lex_state = 2}, - [6677] = {.lex_state = 349, .external_lex_state = 2}, + [6677] = {.lex_state = 47, .external_lex_state = 2}, [6678] = {.lex_state = 349, .external_lex_state = 2}, - [6679] = {.lex_state = 349, .external_lex_state = 5}, + [6679] = {.lex_state = 349, .external_lex_state = 2}, [6680] = {.lex_state = 349, .external_lex_state = 2}, [6681] = {.lex_state = 349, .external_lex_state = 2}, - [6682] = {.lex_state = 349, .external_lex_state = 5}, - [6683] = {.lex_state = 349, .external_lex_state = 5}, + [6682] = {.lex_state = 349, .external_lex_state = 2}, + [6683] = {.lex_state = 349, .external_lex_state = 2}, [6684] = {.lex_state = 349, .external_lex_state = 2}, - [6685] = {.lex_state = 349, .external_lex_state = 5}, + [6685] = {.lex_state = 349, .external_lex_state = 2}, [6686] = {.lex_state = 349, .external_lex_state = 2}, [6687] = {.lex_state = 349, .external_lex_state = 2}, - [6688] = {.lex_state = 349, .external_lex_state = 2}, - [6689] = {.lex_state = 349, .external_lex_state = 5}, - [6690] = {.lex_state = 349, .external_lex_state = 5}, - [6691] = {.lex_state = 349, .external_lex_state = 2}, - [6692] = {.lex_state = 349, .external_lex_state = 5}, - [6693] = {.lex_state = 349, .external_lex_state = 2}, + [6688] = {.lex_state = 45, .external_lex_state = 2}, + [6689] = {.lex_state = 349, .external_lex_state = 2}, + [6690] = {.lex_state = 349, .external_lex_state = 2}, + [6691] = {.lex_state = 349, .external_lex_state = 5}, + [6692] = {.lex_state = 349, .external_lex_state = 2}, + [6693] = {.lex_state = 349, .external_lex_state = 5}, [6694] = {.lex_state = 349, .external_lex_state = 2}, [6695] = {.lex_state = 349, .external_lex_state = 2}, - [6696] = {.lex_state = 349, .external_lex_state = 2}, + [6696] = {.lex_state = 45, .external_lex_state = 2}, [6697] = {.lex_state = 349, .external_lex_state = 2}, - [6698] = {.lex_state = 349, .external_lex_state = 5}, - [6699] = {.lex_state = 349, .external_lex_state = 5}, - [6700] = {.lex_state = 349, .external_lex_state = 2}, + [6698] = {.lex_state = 349, .external_lex_state = 2}, + [6699] = {.lex_state = 349, .external_lex_state = 2}, + [6700] = {.lex_state = 349, .external_lex_state = 5}, [6701] = {.lex_state = 349, .external_lex_state = 2}, [6702] = {.lex_state = 349, .external_lex_state = 2}, - [6703] = {.lex_state = 349, .external_lex_state = 2}, - [6704] = {.lex_state = 349, .external_lex_state = 2}, - [6705] = {.lex_state = 349, .external_lex_state = 2}, - [6706] = {.lex_state = 349, .external_lex_state = 5}, - [6707] = {.lex_state = 349, .external_lex_state = 5}, + [6703] = {.lex_state = 47, .external_lex_state = 2}, + [6704] = {.lex_state = 349, .external_lex_state = 5}, + [6705] = {.lex_state = 349, .external_lex_state = 5}, + [6706] = {.lex_state = 349, .external_lex_state = 2}, + [6707] = {.lex_state = 349, .external_lex_state = 2}, [6708] = {.lex_state = 349, .external_lex_state = 2}, - [6709] = {.lex_state = 349, .external_lex_state = 2}, - [6710] = {.lex_state = 349, .external_lex_state = 5}, - [6711] = {.lex_state = 349, .external_lex_state = 5}, - [6712] = {.lex_state = 349, .external_lex_state = 2}, + [6709] = {.lex_state = 349, .external_lex_state = 5}, + [6710] = {.lex_state = 349, .external_lex_state = 2}, + [6711] = {.lex_state = 349, .external_lex_state = 2}, + [6712] = {.lex_state = 349, .external_lex_state = 5}, [6713] = {.lex_state = 349, .external_lex_state = 2}, - [6714] = {.lex_state = 349, .external_lex_state = 2}, - [6715] = {.lex_state = 349, .external_lex_state = 2}, + [6714] = {.lex_state = 349, .external_lex_state = 5}, + [6715] = {.lex_state = 47, .external_lex_state = 2}, [6716] = {.lex_state = 349, .external_lex_state = 2}, - [6717] = {.lex_state = 349, .external_lex_state = 5}, - [6718] = {.lex_state = 349, .external_lex_state = 5}, + [6717] = {.lex_state = 349, .external_lex_state = 2}, + [6718] = {.lex_state = 349, .external_lex_state = 2}, [6719] = {.lex_state = 349, .external_lex_state = 2}, - [6720] = {.lex_state = 349, .external_lex_state = 2}, - [6721] = {.lex_state = 349, .external_lex_state = 2}, + [6720] = {.lex_state = 349, .external_lex_state = 5}, + [6721] = {.lex_state = 47, .external_lex_state = 2}, [6722] = {.lex_state = 349, .external_lex_state = 2}, [6723] = {.lex_state = 349, .external_lex_state = 2}, [6724] = {.lex_state = 349, .external_lex_state = 2}, - [6725] = {.lex_state = 349, .external_lex_state = 2}, - [6726] = {.lex_state = 349, .external_lex_state = 5}, + [6725] = {.lex_state = 349, .external_lex_state = 5}, + [6726] = {.lex_state = 349, .external_lex_state = 2}, [6727] = {.lex_state = 349, .external_lex_state = 2}, - [6728] = {.lex_state = 349, .external_lex_state = 2}, + [6728] = {.lex_state = 47, .external_lex_state = 2}, [6729] = {.lex_state = 349, .external_lex_state = 2}, - [6730] = {.lex_state = 349, .external_lex_state = 2}, + [6730] = {.lex_state = 349, .external_lex_state = 5}, [6731] = {.lex_state = 349, .external_lex_state = 2}, [6732] = {.lex_state = 349, .external_lex_state = 2}, [6733] = {.lex_state = 349, .external_lex_state = 2}, - [6734] = {.lex_state = 349, .external_lex_state = 5}, - [6735] = {.lex_state = 349, .external_lex_state = 5}, + [6734] = {.lex_state = 349, .external_lex_state = 2}, + [6735] = {.lex_state = 349, .external_lex_state = 2}, [6736] = {.lex_state = 349, .external_lex_state = 2}, [6737] = {.lex_state = 349, .external_lex_state = 2}, [6738] = {.lex_state = 349, .external_lex_state = 2}, - [6739] = {.lex_state = 349, .external_lex_state = 5}, - [6740] = {.lex_state = 349, .external_lex_state = 2}, - [6741] = {.lex_state = 349, .external_lex_state = 2}, - [6742] = {.lex_state = 349, .external_lex_state = 2}, - [6743] = {.lex_state = 349, .external_lex_state = 2}, + [6739] = {.lex_state = 349, .external_lex_state = 2}, + [6740] = {.lex_state = 349, .external_lex_state = 5}, + [6741] = {.lex_state = 349, .external_lex_state = 5}, + [6742] = {.lex_state = 46, .external_lex_state = 2}, + [6743] = {.lex_state = 349, .external_lex_state = 5}, [6744] = {.lex_state = 349, .external_lex_state = 2}, [6745] = {.lex_state = 349, .external_lex_state = 2}, - [6746] = {.lex_state = 349, .external_lex_state = 2}, + [6746] = {.lex_state = 47, .external_lex_state = 2}, [6747] = {.lex_state = 349, .external_lex_state = 2}, [6748] = {.lex_state = 349, .external_lex_state = 2}, [6749] = {.lex_state = 349, .external_lex_state = 2}, @@ -27234,178 +27015,178 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6752] = {.lex_state = 349, .external_lex_state = 2}, [6753] = {.lex_state = 349, .external_lex_state = 2}, [6754] = {.lex_state = 349, .external_lex_state = 2}, - [6755] = {.lex_state = 349, .external_lex_state = 2}, - [6756] = {.lex_state = 349, .external_lex_state = 2}, + [6755] = {.lex_state = 47, .external_lex_state = 2}, + [6756] = {.lex_state = 349, .external_lex_state = 5}, [6757] = {.lex_state = 349, .external_lex_state = 2}, [6758] = {.lex_state = 349, .external_lex_state = 2}, - [6759] = {.lex_state = 349, .external_lex_state = 2}, - [6760] = {.lex_state = 349, .external_lex_state = 2}, + [6759] = {.lex_state = 349, .external_lex_state = 5}, + [6760] = {.lex_state = 349, .external_lex_state = 5}, [6761] = {.lex_state = 349, .external_lex_state = 2}, - [6762] = {.lex_state = 349, .external_lex_state = 2}, - [6763] = {.lex_state = 349, .external_lex_state = 2}, + [6762] = {.lex_state = 47, .external_lex_state = 2}, + [6763] = {.lex_state = 349, .external_lex_state = 5}, [6764] = {.lex_state = 349, .external_lex_state = 2}, - [6765] = {.lex_state = 349, .external_lex_state = 2}, + [6765] = {.lex_state = 349, .external_lex_state = 5}, [6766] = {.lex_state = 349, .external_lex_state = 2}, - [6767] = {.lex_state = 47, .external_lex_state = 2}, + [6767] = {.lex_state = 349, .external_lex_state = 2}, [6768] = {.lex_state = 349, .external_lex_state = 2}, [6769] = {.lex_state = 349, .external_lex_state = 2}, [6770] = {.lex_state = 349, .external_lex_state = 2}, - [6771] = {.lex_state = 349, .external_lex_state = 2}, + [6771] = {.lex_state = 47, .external_lex_state = 2}, [6772] = {.lex_state = 349, .external_lex_state = 2}, [6773] = {.lex_state = 349, .external_lex_state = 2}, [6774] = {.lex_state = 349, .external_lex_state = 2}, [6775] = {.lex_state = 349, .external_lex_state = 2}, [6776] = {.lex_state = 349, .external_lex_state = 2}, - [6777] = {.lex_state = 47, .external_lex_state = 2}, - [6778] = {.lex_state = 47, .external_lex_state = 2}, + [6777] = {.lex_state = 349, .external_lex_state = 5}, + [6778] = {.lex_state = 349, .external_lex_state = 2}, [6779] = {.lex_state = 349, .external_lex_state = 2}, - [6780] = {.lex_state = 47, .external_lex_state = 2}, + [6780] = {.lex_state = 349, .external_lex_state = 5}, [6781] = {.lex_state = 349, .external_lex_state = 2}, [6782] = {.lex_state = 349, .external_lex_state = 2}, [6783] = {.lex_state = 349, .external_lex_state = 2}, - [6784] = {.lex_state = 349, .external_lex_state = 2}, - [6785] = {.lex_state = 349, .external_lex_state = 2}, + [6784] = {.lex_state = 349, .external_lex_state = 5}, + [6785] = {.lex_state = 349, .external_lex_state = 5}, [6786] = {.lex_state = 349, .external_lex_state = 2}, [6787] = {.lex_state = 349, .external_lex_state = 2}, [6788] = {.lex_state = 349, .external_lex_state = 2}, [6789] = {.lex_state = 349, .external_lex_state = 2}, - [6790] = {.lex_state = 349, .external_lex_state = 2}, + [6790] = {.lex_state = 47, .external_lex_state = 2}, [6791] = {.lex_state = 349, .external_lex_state = 2}, [6792] = {.lex_state = 349, .external_lex_state = 2}, [6793] = {.lex_state = 349, .external_lex_state = 2}, [6794] = {.lex_state = 349, .external_lex_state = 2}, [6795] = {.lex_state = 349, .external_lex_state = 2}, - [6796] = {.lex_state = 349, .external_lex_state = 5}, + [6796] = {.lex_state = 349, .external_lex_state = 2}, [6797] = {.lex_state = 349, .external_lex_state = 2}, [6798] = {.lex_state = 349, .external_lex_state = 2}, [6799] = {.lex_state = 349, .external_lex_state = 2}, [6800] = {.lex_state = 349, .external_lex_state = 2}, [6801] = {.lex_state = 349, .external_lex_state = 2}, [6802] = {.lex_state = 349, .external_lex_state = 2}, - [6803] = {.lex_state = 47, .external_lex_state = 2}, + [6803] = {.lex_state = 349, .external_lex_state = 2}, [6804] = {.lex_state = 349, .external_lex_state = 2}, [6805] = {.lex_state = 349, .external_lex_state = 2}, [6806] = {.lex_state = 349, .external_lex_state = 2}, [6807] = {.lex_state = 349, .external_lex_state = 2}, - [6808] = {.lex_state = 47, .external_lex_state = 2}, - [6809] = {.lex_state = 47, .external_lex_state = 2}, - [6810] = {.lex_state = 47, .external_lex_state = 2}, + [6808] = {.lex_state = 349, .external_lex_state = 2}, + [6809] = {.lex_state = 349, .external_lex_state = 2}, + [6810] = {.lex_state = 349, .external_lex_state = 2}, [6811] = {.lex_state = 349, .external_lex_state = 2}, - [6812] = {.lex_state = 47, .external_lex_state = 2}, + [6812] = {.lex_state = 349, .external_lex_state = 2}, [6813] = {.lex_state = 349, .external_lex_state = 2}, - [6814] = {.lex_state = 349, .external_lex_state = 2}, - [6815] = {.lex_state = 349, .external_lex_state = 5}, + [6814] = {.lex_state = 349, .external_lex_state = 5}, + [6815] = {.lex_state = 349, .external_lex_state = 2}, [6816] = {.lex_state = 349, .external_lex_state = 5}, - [6817] = {.lex_state = 349, .external_lex_state = 5}, + [6817] = {.lex_state = 349, .external_lex_state = 2}, [6818] = {.lex_state = 349, .external_lex_state = 2}, - [6819] = {.lex_state = 349, .external_lex_state = 5}, - [6820] = {.lex_state = 349, .external_lex_state = 5}, - [6821] = {.lex_state = 349, .external_lex_state = 2}, - [6822] = {.lex_state = 349, .external_lex_state = 2}, + [6819] = {.lex_state = 349, .external_lex_state = 2}, + [6820] = {.lex_state = 349, .external_lex_state = 2}, + [6821] = {.lex_state = 47, .external_lex_state = 2}, + [6822] = {.lex_state = 47, .external_lex_state = 2}, [6823] = {.lex_state = 349, .external_lex_state = 2}, - [6824] = {.lex_state = 47, .external_lex_state = 2}, - [6825] = {.lex_state = 46, .external_lex_state = 2}, + [6824] = {.lex_state = 349, .external_lex_state = 2}, + [6825] = {.lex_state = 349, .external_lex_state = 2}, [6826] = {.lex_state = 349, .external_lex_state = 2}, - [6827] = {.lex_state = 47, .external_lex_state = 2}, + [6827] = {.lex_state = 349, .external_lex_state = 2}, [6828] = {.lex_state = 349, .external_lex_state = 2}, - [6829] = {.lex_state = 47, .external_lex_state = 2}, - [6830] = {.lex_state = 45, .external_lex_state = 2}, + [6829] = {.lex_state = 349, .external_lex_state = 5}, + [6830] = {.lex_state = 349, .external_lex_state = 2}, [6831] = {.lex_state = 349, .external_lex_state = 2}, - [6832] = {.lex_state = 349, .external_lex_state = 2}, - [6833] = {.lex_state = 349, .external_lex_state = 2}, - [6834] = {.lex_state = 349, .external_lex_state = 2}, + [6832] = {.lex_state = 349, .external_lex_state = 5}, + [6833] = {.lex_state = 45, .external_lex_state = 2}, + [6834] = {.lex_state = 47, .external_lex_state = 2}, [6835] = {.lex_state = 349, .external_lex_state = 2}, - [6836] = {.lex_state = 46, .external_lex_state = 2}, - [6837] = {.lex_state = 349, .external_lex_state = 2}, - [6838] = {.lex_state = 349, .external_lex_state = 5}, - [6839] = {.lex_state = 47, .external_lex_state = 2}, - [6840] = {.lex_state = 47, .external_lex_state = 2}, + [6836] = {.lex_state = 349, .external_lex_state = 2}, + [6837] = {.lex_state = 349, .external_lex_state = 5}, + [6838] = {.lex_state = 349, .external_lex_state = 2}, + [6839] = {.lex_state = 349, .external_lex_state = 2}, + [6840] = {.lex_state = 349, .external_lex_state = 5}, [6841] = {.lex_state = 349, .external_lex_state = 2}, [6842] = {.lex_state = 349, .external_lex_state = 2}, - [6843] = {.lex_state = 349, .external_lex_state = 2}, - [6844] = {.lex_state = 349, .external_lex_state = 2}, + [6843] = {.lex_state = 45, .external_lex_state = 2}, + [6844] = {.lex_state = 349, .external_lex_state = 5}, [6845] = {.lex_state = 349, .external_lex_state = 2}, - [6846] = {.lex_state = 349, .external_lex_state = 2}, + [6846] = {.lex_state = 47, .external_lex_state = 2}, [6847] = {.lex_state = 349, .external_lex_state = 2}, [6848] = {.lex_state = 349, .external_lex_state = 2}, [6849] = {.lex_state = 349, .external_lex_state = 2}, [6850] = {.lex_state = 349, .external_lex_state = 2}, [6851] = {.lex_state = 349, .external_lex_state = 2}, - [6852] = {.lex_state = 349, .external_lex_state = 2}, - [6853] = {.lex_state = 349, .external_lex_state = 2}, - [6854] = {.lex_state = 349, .external_lex_state = 2}, + [6852] = {.lex_state = 349, .external_lex_state = 5}, + [6853] = {.lex_state = 349, .external_lex_state = 5}, + [6854] = {.lex_state = 47, .external_lex_state = 2}, [6855] = {.lex_state = 349, .external_lex_state = 2}, [6856] = {.lex_state = 349, .external_lex_state = 2}, - [6857] = {.lex_state = 349, .external_lex_state = 2}, + [6857] = {.lex_state = 47, .external_lex_state = 2}, [6858] = {.lex_state = 349, .external_lex_state = 2}, - [6859] = {.lex_state = 349, .external_lex_state = 5}, - [6860] = {.lex_state = 349, .external_lex_state = 5}, - [6861] = {.lex_state = 47, .external_lex_state = 2}, + [6859] = {.lex_state = 349, .external_lex_state = 2}, + [6860] = {.lex_state = 349, .external_lex_state = 2}, + [6861] = {.lex_state = 349, .external_lex_state = 2}, [6862] = {.lex_state = 349, .external_lex_state = 2}, [6863] = {.lex_state = 349, .external_lex_state = 2}, - [6864] = {.lex_state = 349, .external_lex_state = 5}, - [6865] = {.lex_state = 349, .external_lex_state = 5}, + [6864] = {.lex_state = 349, .external_lex_state = 2}, + [6865] = {.lex_state = 349, .external_lex_state = 2}, [6866] = {.lex_state = 349, .external_lex_state = 2}, [6867] = {.lex_state = 349, .external_lex_state = 2}, - [6868] = {.lex_state = 349, .external_lex_state = 5}, - [6869] = {.lex_state = 349, .external_lex_state = 2}, - [6870] = {.lex_state = 349, .external_lex_state = 2}, + [6868] = {.lex_state = 45, .external_lex_state = 2}, + [6869] = {.lex_state = 349, .external_lex_state = 5}, + [6870] = {.lex_state = 47, .external_lex_state = 2}, [6871] = {.lex_state = 349, .external_lex_state = 2}, - [6872] = {.lex_state = 45, .external_lex_state = 2}, + [6872] = {.lex_state = 349, .external_lex_state = 2}, [6873] = {.lex_state = 349, .external_lex_state = 2}, [6874] = {.lex_state = 349, .external_lex_state = 2}, - [6875] = {.lex_state = 349, .external_lex_state = 2}, + [6875] = {.lex_state = 47, .external_lex_state = 2}, [6876] = {.lex_state = 349, .external_lex_state = 2}, [6877] = {.lex_state = 349, .external_lex_state = 2}, - [6878] = {.lex_state = 349, .external_lex_state = 5}, - [6879] = {.lex_state = 349, .external_lex_state = 5}, - [6880] = {.lex_state = 47, .external_lex_state = 2}, + [6878] = {.lex_state = 349, .external_lex_state = 2}, + [6879] = {.lex_state = 47, .external_lex_state = 2}, + [6880] = {.lex_state = 349, .external_lex_state = 2}, [6881] = {.lex_state = 349, .external_lex_state = 2}, - [6882] = {.lex_state = 349, .external_lex_state = 2}, - [6883] = {.lex_state = 349, .external_lex_state = 2}, + [6882] = {.lex_state = 47, .external_lex_state = 2}, + [6883] = {.lex_state = 349, .external_lex_state = 5}, [6884] = {.lex_state = 349, .external_lex_state = 2}, - [6885] = {.lex_state = 349, .external_lex_state = 2}, + [6885] = {.lex_state = 47, .external_lex_state = 2}, [6886] = {.lex_state = 349, .external_lex_state = 2}, [6887] = {.lex_state = 349, .external_lex_state = 2}, - [6888] = {.lex_state = 349, .external_lex_state = 2}, + [6888] = {.lex_state = 47, .external_lex_state = 2}, [6889] = {.lex_state = 349, .external_lex_state = 2}, [6890] = {.lex_state = 349, .external_lex_state = 2}, - [6891] = {.lex_state = 349, .external_lex_state = 5}, + [6891] = {.lex_state = 47, .external_lex_state = 2}, [6892] = {.lex_state = 349, .external_lex_state = 2}, [6893] = {.lex_state = 349, .external_lex_state = 2}, [6894] = {.lex_state = 349, .external_lex_state = 2}, [6895] = {.lex_state = 349, .external_lex_state = 5}, - [6896] = {.lex_state = 349, .external_lex_state = 5}, - [6897] = {.lex_state = 349, .external_lex_state = 5}, - [6898] = {.lex_state = 349, .external_lex_state = 5}, + [6896] = {.lex_state = 349, .external_lex_state = 2}, + [6897] = {.lex_state = 349, .external_lex_state = 2}, + [6898] = {.lex_state = 47, .external_lex_state = 2}, [6899] = {.lex_state = 349, .external_lex_state = 2}, - [6900] = {.lex_state = 349, .external_lex_state = 2}, + [6900] = {.lex_state = 47, .external_lex_state = 2}, [6901] = {.lex_state = 349, .external_lex_state = 2}, [6902] = {.lex_state = 349, .external_lex_state = 2}, [6903] = {.lex_state = 349, .external_lex_state = 2}, [6904] = {.lex_state = 349, .external_lex_state = 2}, - [6905] = {.lex_state = 349, .external_lex_state = 5}, - [6906] = {.lex_state = 349, .external_lex_state = 5}, + [6905] = {.lex_state = 349, .external_lex_state = 2}, + [6906] = {.lex_state = 349, .external_lex_state = 2}, [6907] = {.lex_state = 349, .external_lex_state = 2}, - [6908] = {.lex_state = 349, .external_lex_state = 2}, + [6908] = {.lex_state = 47, .external_lex_state = 2}, [6909] = {.lex_state = 47, .external_lex_state = 2}, - [6910] = {.lex_state = 349, .external_lex_state = 5}, + [6910] = {.lex_state = 349, .external_lex_state = 2}, [6911] = {.lex_state = 349, .external_lex_state = 2}, - [6912] = {.lex_state = 349, .external_lex_state = 5}, - [6913] = {.lex_state = 349, .external_lex_state = 5}, - [6914] = {.lex_state = 349, .external_lex_state = 5}, - [6915] = {.lex_state = 349, .external_lex_state = 5}, + [6912] = {.lex_state = 349, .external_lex_state = 2}, + [6913] = {.lex_state = 349, .external_lex_state = 2}, + [6914] = {.lex_state = 349, .external_lex_state = 2}, + [6915] = {.lex_state = 349, .external_lex_state = 2}, [6916] = {.lex_state = 349, .external_lex_state = 2}, [6917] = {.lex_state = 349, .external_lex_state = 2}, [6918] = {.lex_state = 349, .external_lex_state = 2}, - [6919] = {.lex_state = 47, .external_lex_state = 2}, + [6919] = {.lex_state = 349, .external_lex_state = 2}, [6920] = {.lex_state = 349, .external_lex_state = 2}, [6921] = {.lex_state = 349, .external_lex_state = 2}, [6922] = {.lex_state = 349, .external_lex_state = 2}, [6923] = {.lex_state = 349, .external_lex_state = 2}, [6924] = {.lex_state = 349, .external_lex_state = 2}, [6925] = {.lex_state = 349, .external_lex_state = 2}, - [6926] = {.lex_state = 46, .external_lex_state = 2}, + [6926] = {.lex_state = 349, .external_lex_state = 5}, [6927] = {.lex_state = 349, .external_lex_state = 2}, [6928] = {.lex_state = 349, .external_lex_state = 2}, [6929] = {.lex_state = 349, .external_lex_state = 2}, @@ -27419,175 +27200,175 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [6937] = {.lex_state = 349, .external_lex_state = 2}, [6938] = {.lex_state = 349, .external_lex_state = 2}, [6939] = {.lex_state = 349, .external_lex_state = 2}, - [6940] = {.lex_state = 349, .external_lex_state = 2}, + [6940] = {.lex_state = 47, .external_lex_state = 2}, [6941] = {.lex_state = 349, .external_lex_state = 2}, - [6942] = {.lex_state = 349, .external_lex_state = 2}, - [6943] = {.lex_state = 349, .external_lex_state = 5}, - [6944] = {.lex_state = 349, .external_lex_state = 2}, + [6942] = {.lex_state = 47, .external_lex_state = 2}, + [6943] = {.lex_state = 47, .external_lex_state = 2}, + [6944] = {.lex_state = 2, .external_lex_state = 10}, [6945] = {.lex_state = 349, .external_lex_state = 2}, [6946] = {.lex_state = 349, .external_lex_state = 2}, [6947] = {.lex_state = 349, .external_lex_state = 2}, - [6948] = {.lex_state = 349, .external_lex_state = 2}, + [6948] = {.lex_state = 47, .external_lex_state = 2}, [6949] = {.lex_state = 349, .external_lex_state = 2}, [6950] = {.lex_state = 349, .external_lex_state = 2}, [6951] = {.lex_state = 349, .external_lex_state = 2}, [6952] = {.lex_state = 349, .external_lex_state = 2}, [6953] = {.lex_state = 349, .external_lex_state = 2}, [6954] = {.lex_state = 349, .external_lex_state = 2}, - [6955] = {.lex_state = 349, .external_lex_state = 2}, + [6955] = {.lex_state = 47, .external_lex_state = 2}, [6956] = {.lex_state = 349, .external_lex_state = 2}, [6957] = {.lex_state = 349, .external_lex_state = 2}, - [6958] = {.lex_state = 349, .external_lex_state = 2}, + [6958] = {.lex_state = 47, .external_lex_state = 2}, [6959] = {.lex_state = 349, .external_lex_state = 2}, [6960] = {.lex_state = 349, .external_lex_state = 2}, [6961] = {.lex_state = 47, .external_lex_state = 2}, - [6962] = {.lex_state = 349, .external_lex_state = 2}, + [6962] = {.lex_state = 47, .external_lex_state = 2}, [6963] = {.lex_state = 349, .external_lex_state = 2}, [6964] = {.lex_state = 349, .external_lex_state = 2}, [6965] = {.lex_state = 349, .external_lex_state = 2}, [6966] = {.lex_state = 349, .external_lex_state = 2}, - [6967] = {.lex_state = 349, .external_lex_state = 2}, - [6968] = {.lex_state = 349, .external_lex_state = 2}, - [6969] = {.lex_state = 349, .external_lex_state = 2}, + [6967] = {.lex_state = 47, .external_lex_state = 2}, + [6968] = {.lex_state = 47, .external_lex_state = 2}, + [6969] = {.lex_state = 47, .external_lex_state = 2}, [6970] = {.lex_state = 349, .external_lex_state = 2}, - [6971] = {.lex_state = 349, .external_lex_state = 2}, - [6972] = {.lex_state = 349, .external_lex_state = 2}, - [6973] = {.lex_state = 47, .external_lex_state = 2}, + [6971] = {.lex_state = 47, .external_lex_state = 2}, + [6972] = {.lex_state = 47, .external_lex_state = 2}, + [6973] = {.lex_state = 349, .external_lex_state = 2}, [6974] = {.lex_state = 349, .external_lex_state = 2}, [6975] = {.lex_state = 349, .external_lex_state = 2}, [6976] = {.lex_state = 349, .external_lex_state = 2}, [6977] = {.lex_state = 349, .external_lex_state = 2}, - [6978] = {.lex_state = 349, .external_lex_state = 2}, + [6978] = {.lex_state = 47, .external_lex_state = 2}, [6979] = {.lex_state = 349, .external_lex_state = 2}, [6980] = {.lex_state = 349, .external_lex_state = 2}, [6981] = {.lex_state = 349, .external_lex_state = 2}, [6982] = {.lex_state = 349, .external_lex_state = 2}, - [6983] = {.lex_state = 349, .external_lex_state = 2}, - [6984] = {.lex_state = 349, .external_lex_state = 2}, - [6985] = {.lex_state = 349, .external_lex_state = 2}, + [6983] = {.lex_state = 47, .external_lex_state = 2}, + [6984] = {.lex_state = 47, .external_lex_state = 2}, + [6985] = {.lex_state = 2, .external_lex_state = 10}, [6986] = {.lex_state = 349, .external_lex_state = 2}, [6987] = {.lex_state = 349, .external_lex_state = 2}, [6988] = {.lex_state = 349, .external_lex_state = 2}, - [6989] = {.lex_state = 349, .external_lex_state = 2}, + [6989] = {.lex_state = 21, .external_lex_state = 2}, [6990] = {.lex_state = 349, .external_lex_state = 2}, [6991] = {.lex_state = 349, .external_lex_state = 2}, [6992] = {.lex_state = 349, .external_lex_state = 2}, [6993] = {.lex_state = 349, .external_lex_state = 2}, [6994] = {.lex_state = 349, .external_lex_state = 2}, [6995] = {.lex_state = 349, .external_lex_state = 2}, - [6996] = {.lex_state = 349, .external_lex_state = 2}, - [6997] = {.lex_state = 349, .external_lex_state = 2}, + [6996] = {.lex_state = 47, .external_lex_state = 2}, + [6997] = {.lex_state = 47, .external_lex_state = 2}, [6998] = {.lex_state = 349, .external_lex_state = 2}, [6999] = {.lex_state = 349, .external_lex_state = 2}, [7000] = {.lex_state = 349, .external_lex_state = 2}, - [7001] = {.lex_state = 349, .external_lex_state = 2}, + [7001] = {.lex_state = 47, .external_lex_state = 2}, [7002] = {.lex_state = 349, .external_lex_state = 2}, [7003] = {.lex_state = 349, .external_lex_state = 2}, - [7004] = {.lex_state = 349, .external_lex_state = 2}, + [7004] = {.lex_state = 47, .external_lex_state = 2}, [7005] = {.lex_state = 349, .external_lex_state = 2}, - [7006] = {.lex_state = 47, .external_lex_state = 2}, - [7007] = {.lex_state = 349, .external_lex_state = 2}, + [7006] = {.lex_state = 349, .external_lex_state = 2}, + [7007] = {.lex_state = 47, .external_lex_state = 2}, [7008] = {.lex_state = 349, .external_lex_state = 2}, - [7009] = {.lex_state = 349, .external_lex_state = 2}, + [7009] = {.lex_state = 46, .external_lex_state = 2}, [7010] = {.lex_state = 349, .external_lex_state = 2}, [7011] = {.lex_state = 349, .external_lex_state = 2}, - [7012] = {.lex_state = 349, .external_lex_state = 2}, + [7012] = {.lex_state = 47, .external_lex_state = 2}, [7013] = {.lex_state = 349, .external_lex_state = 2}, - [7014] = {.lex_state = 349, .external_lex_state = 2}, + [7014] = {.lex_state = 47, .external_lex_state = 2}, [7015] = {.lex_state = 349, .external_lex_state = 2}, [7016] = {.lex_state = 349, .external_lex_state = 2}, - [7017] = {.lex_state = 45, .external_lex_state = 2}, + [7017] = {.lex_state = 349, .external_lex_state = 2}, [7018] = {.lex_state = 349, .external_lex_state = 2}, - [7019] = {.lex_state = 349, .external_lex_state = 2}, + [7019] = {.lex_state = 47, .external_lex_state = 2}, [7020] = {.lex_state = 349, .external_lex_state = 2}, [7021] = {.lex_state = 349, .external_lex_state = 2}, [7022] = {.lex_state = 349, .external_lex_state = 2}, [7023] = {.lex_state = 349, .external_lex_state = 2}, - [7024] = {.lex_state = 349, .external_lex_state = 2}, + [7024] = {.lex_state = 47, .external_lex_state = 2}, [7025] = {.lex_state = 349, .external_lex_state = 2}, - [7026] = {.lex_state = 47, .external_lex_state = 2}, - [7027] = {.lex_state = 47, .external_lex_state = 2}, - [7028] = {.lex_state = 47, .external_lex_state = 2}, - [7029] = {.lex_state = 45, .external_lex_state = 2}, - [7030] = {.lex_state = 349, .external_lex_state = 2}, - [7031] = {.lex_state = 349, .external_lex_state = 2}, - [7032] = {.lex_state = 47, .external_lex_state = 2}, - [7033] = {.lex_state = 349, .external_lex_state = 2}, - [7034] = {.lex_state = 349, .external_lex_state = 2}, - [7035] = {.lex_state = 349, .external_lex_state = 5}, - [7036] = {.lex_state = 349, .external_lex_state = 5}, + [7026] = {.lex_state = 349, .external_lex_state = 2}, + [7027] = {.lex_state = 349, .external_lex_state = 2}, + [7028] = {.lex_state = 349, .external_lex_state = 2}, + [7029] = {.lex_state = 47, .external_lex_state = 2}, + [7030] = {.lex_state = 47, .external_lex_state = 2}, + [7031] = {.lex_state = 47, .external_lex_state = 2}, + [7032] = {.lex_state = 349, .external_lex_state = 2}, + [7033] = {.lex_state = 47, .external_lex_state = 2}, + [7034] = {.lex_state = 47, .external_lex_state = 2}, + [7035] = {.lex_state = 47, .external_lex_state = 2}, + [7036] = {.lex_state = 47, .external_lex_state = 2}, [7037] = {.lex_state = 349, .external_lex_state = 2}, - [7038] = {.lex_state = 349, .external_lex_state = 2}, + [7038] = {.lex_state = 47, .external_lex_state = 2}, [7039] = {.lex_state = 349, .external_lex_state = 2}, - [7040] = {.lex_state = 349, .external_lex_state = 2}, - [7041] = {.lex_state = 349, .external_lex_state = 2}, + [7040] = {.lex_state = 46, .external_lex_state = 2}, + [7041] = {.lex_state = 47, .external_lex_state = 2}, [7042] = {.lex_state = 349, .external_lex_state = 2}, [7043] = {.lex_state = 349, .external_lex_state = 2}, [7044] = {.lex_state = 349, .external_lex_state = 2}, - [7045] = {.lex_state = 349, .external_lex_state = 2}, + [7045] = {.lex_state = 47, .external_lex_state = 2}, [7046] = {.lex_state = 349, .external_lex_state = 2}, [7047] = {.lex_state = 349, .external_lex_state = 2}, - [7048] = {.lex_state = 349, .external_lex_state = 2}, - [7049] = {.lex_state = 349, .external_lex_state = 2}, - [7050] = {.lex_state = 349, .external_lex_state = 2}, + [7048] = {.lex_state = 46, .external_lex_state = 2}, + [7049] = {.lex_state = 47, .external_lex_state = 2}, + [7050] = {.lex_state = 47, .external_lex_state = 2}, [7051] = {.lex_state = 349, .external_lex_state = 2}, [7052] = {.lex_state = 349, .external_lex_state = 2}, [7053] = {.lex_state = 349, .external_lex_state = 2}, [7054] = {.lex_state = 349, .external_lex_state = 2}, - [7055] = {.lex_state = 45, .external_lex_state = 2}, + [7055] = {.lex_state = 47, .external_lex_state = 2}, [7056] = {.lex_state = 349, .external_lex_state = 2}, [7057] = {.lex_state = 349, .external_lex_state = 2}, [7058] = {.lex_state = 349, .external_lex_state = 2}, - [7059] = {.lex_state = 47, .external_lex_state = 2}, - [7060] = {.lex_state = 349, .external_lex_state = 5}, - [7061] = {.lex_state = 349, .external_lex_state = 2}, - [7062] = {.lex_state = 349, .external_lex_state = 2}, + [7059] = {.lex_state = 349, .external_lex_state = 2}, + [7060] = {.lex_state = 349, .external_lex_state = 2}, + [7061] = {.lex_state = 47, .external_lex_state = 2}, + [7062] = {.lex_state = 47, .external_lex_state = 2}, [7063] = {.lex_state = 47, .external_lex_state = 2}, - [7064] = {.lex_state = 349, .external_lex_state = 2}, + [7064] = {.lex_state = 2, .external_lex_state = 10}, [7065] = {.lex_state = 349, .external_lex_state = 2}, [7066] = {.lex_state = 349, .external_lex_state = 2}, - [7067] = {.lex_state = 349, .external_lex_state = 2}, + [7067] = {.lex_state = 47, .external_lex_state = 2}, [7068] = {.lex_state = 349, .external_lex_state = 2}, - [7069] = {.lex_state = 47, .external_lex_state = 2}, - [7070] = {.lex_state = 349, .external_lex_state = 2}, - [7071] = {.lex_state = 47, .external_lex_state = 2}, + [7069] = {.lex_state = 349, .external_lex_state = 2}, + [7070] = {.lex_state = 47, .external_lex_state = 2}, + [7071] = {.lex_state = 349, .external_lex_state = 2}, [7072] = {.lex_state = 349, .external_lex_state = 2}, [7073] = {.lex_state = 349, .external_lex_state = 2}, [7074] = {.lex_state = 349, .external_lex_state = 2}, - [7075] = {.lex_state = 47, .external_lex_state = 2}, - [7076] = {.lex_state = 349, .external_lex_state = 2}, + [7075] = {.lex_state = 349, .external_lex_state = 2}, + [7076] = {.lex_state = 47, .external_lex_state = 2}, [7077] = {.lex_state = 349, .external_lex_state = 2}, [7078] = {.lex_state = 349, .external_lex_state = 2}, [7079] = {.lex_state = 349, .external_lex_state = 2}, - [7080] = {.lex_state = 349, .external_lex_state = 2}, + [7080] = {.lex_state = 47, .external_lex_state = 2}, [7081] = {.lex_state = 349, .external_lex_state = 2}, - [7082] = {.lex_state = 349, .external_lex_state = 2}, + [7082] = {.lex_state = 47, .external_lex_state = 2}, [7083] = {.lex_state = 349, .external_lex_state = 2}, [7084] = {.lex_state = 349, .external_lex_state = 2}, [7085] = {.lex_state = 349, .external_lex_state = 2}, [7086] = {.lex_state = 349, .external_lex_state = 2}, [7087] = {.lex_state = 349, .external_lex_state = 2}, - [7088] = {.lex_state = 349, .external_lex_state = 2}, - [7089] = {.lex_state = 47, .external_lex_state = 2}, + [7088] = {.lex_state = 47, .external_lex_state = 2}, + [7089] = {.lex_state = 349, .external_lex_state = 2}, [7090] = {.lex_state = 349, .external_lex_state = 2}, - [7091] = {.lex_state = 47, .external_lex_state = 2}, - [7092] = {.lex_state = 349, .external_lex_state = 2}, + [7091] = {.lex_state = 46, .external_lex_state = 2}, + [7092] = {.lex_state = 47, .external_lex_state = 2}, [7093] = {.lex_state = 349, .external_lex_state = 2}, - [7094] = {.lex_state = 349, .external_lex_state = 2}, - [7095] = {.lex_state = 349, .external_lex_state = 2}, + [7094] = {.lex_state = 47, .external_lex_state = 2}, + [7095] = {.lex_state = 47, .external_lex_state = 2}, [7096] = {.lex_state = 349, .external_lex_state = 2}, [7097] = {.lex_state = 349, .external_lex_state = 2}, [7098] = {.lex_state = 349, .external_lex_state = 2}, - [7099] = {.lex_state = 349, .external_lex_state = 5}, + [7099] = {.lex_state = 349, .external_lex_state = 2}, [7100] = {.lex_state = 349, .external_lex_state = 2}, [7101] = {.lex_state = 349, .external_lex_state = 2}, [7102] = {.lex_state = 349, .external_lex_state = 2}, - [7103] = {.lex_state = 349, .external_lex_state = 2}, + [7103] = {.lex_state = 47, .external_lex_state = 2}, [7104] = {.lex_state = 349, .external_lex_state = 2}, [7105] = {.lex_state = 349, .external_lex_state = 2}, [7106] = {.lex_state = 349, .external_lex_state = 2}, [7107] = {.lex_state = 349, .external_lex_state = 2}, - [7108] = {.lex_state = 349, .external_lex_state = 5}, + [7108] = {.lex_state = 349, .external_lex_state = 2}, [7109] = {.lex_state = 349, .external_lex_state = 2}, [7110] = {.lex_state = 349, .external_lex_state = 2}, [7111] = {.lex_state = 349, .external_lex_state = 2}, @@ -27595,7 +27376,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7113] = {.lex_state = 349, .external_lex_state = 2}, [7114] = {.lex_state = 349, .external_lex_state = 2}, [7115] = {.lex_state = 349, .external_lex_state = 2}, - [7116] = {.lex_state = 349, .external_lex_state = 2}, + [7116] = {.lex_state = 68, .external_lex_state = 2}, [7117] = {.lex_state = 349, .external_lex_state = 2}, [7118] = {.lex_state = 349, .external_lex_state = 2}, [7119] = {.lex_state = 349, .external_lex_state = 2}, @@ -27604,64 +27385,64 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7122] = {.lex_state = 349, .external_lex_state = 2}, [7123] = {.lex_state = 349, .external_lex_state = 2}, [7124] = {.lex_state = 349, .external_lex_state = 2}, - [7125] = {.lex_state = 47, .external_lex_state = 2}, + [7125] = {.lex_state = 349, .external_lex_state = 2}, [7126] = {.lex_state = 349, .external_lex_state = 2}, - [7127] = {.lex_state = 349, .external_lex_state = 2}, - [7128] = {.lex_state = 349, .external_lex_state = 2}, + [7127] = {.lex_state = 47, .external_lex_state = 2}, + [7128] = {.lex_state = 47, .external_lex_state = 2}, [7129] = {.lex_state = 349, .external_lex_state = 2}, - [7130] = {.lex_state = 349, .external_lex_state = 2}, - [7131] = {.lex_state = 47, .external_lex_state = 2}, + [7130] = {.lex_state = 47, .external_lex_state = 2}, + [7131] = {.lex_state = 349, .external_lex_state = 2}, [7132] = {.lex_state = 349, .external_lex_state = 2}, - [7133] = {.lex_state = 2, .external_lex_state = 10}, + [7133] = {.lex_state = 47, .external_lex_state = 2}, [7134] = {.lex_state = 349, .external_lex_state = 2}, [7135] = {.lex_state = 47, .external_lex_state = 2}, [7136] = {.lex_state = 349, .external_lex_state = 2}, - [7137] = {.lex_state = 47, .external_lex_state = 2}, - [7138] = {.lex_state = 47, .external_lex_state = 2}, + [7137] = {.lex_state = 349, .external_lex_state = 2}, + [7138] = {.lex_state = 68, .external_lex_state = 2}, [7139] = {.lex_state = 349, .external_lex_state = 2}, - [7140] = {.lex_state = 349, .external_lex_state = 2}, - [7141] = {.lex_state = 349, .external_lex_state = 2}, + [7140] = {.lex_state = 47, .external_lex_state = 2}, + [7141] = {.lex_state = 47, .external_lex_state = 2}, [7142] = {.lex_state = 349, .external_lex_state = 2}, - [7143] = {.lex_state = 47, .external_lex_state = 2}, + [7143] = {.lex_state = 349, .external_lex_state = 2}, [7144] = {.lex_state = 349, .external_lex_state = 2}, - [7145] = {.lex_state = 47, .external_lex_state = 2}, + [7145] = {.lex_state = 349, .external_lex_state = 2}, [7146] = {.lex_state = 349, .external_lex_state = 2}, [7147] = {.lex_state = 349, .external_lex_state = 2}, - [7148] = {.lex_state = 349, .external_lex_state = 2}, + [7148] = {.lex_state = 47, .external_lex_state = 2}, [7149] = {.lex_state = 349, .external_lex_state = 2}, [7150] = {.lex_state = 349, .external_lex_state = 2}, - [7151] = {.lex_state = 47, .external_lex_state = 2}, - [7152] = {.lex_state = 349, .external_lex_state = 2}, - [7153] = {.lex_state = 47, .external_lex_state = 2}, - [7154] = {.lex_state = 47, .external_lex_state = 2}, - [7155] = {.lex_state = 47, .external_lex_state = 2}, + [7151] = {.lex_state = 349, .external_lex_state = 2}, + [7152] = {.lex_state = 47, .external_lex_state = 2}, + [7153] = {.lex_state = 349, .external_lex_state = 2}, + [7154] = {.lex_state = 349, .external_lex_state = 2}, + [7155] = {.lex_state = 349, .external_lex_state = 2}, [7156] = {.lex_state = 47, .external_lex_state = 2}, - [7157] = {.lex_state = 349, .external_lex_state = 2}, + [7157] = {.lex_state = 68, .external_lex_state = 2}, [7158] = {.lex_state = 349, .external_lex_state = 2}, - [7159] = {.lex_state = 47, .external_lex_state = 2}, + [7159] = {.lex_state = 349, .external_lex_state = 2}, [7160] = {.lex_state = 349, .external_lex_state = 2}, - [7161] = {.lex_state = 47, .external_lex_state = 2}, + [7161] = {.lex_state = 46, .external_lex_state = 2}, [7162] = {.lex_state = 349, .external_lex_state = 2}, - [7163] = {.lex_state = 47, .external_lex_state = 2}, - [7164] = {.lex_state = 47, .external_lex_state = 2}, + [7163] = {.lex_state = 349, .external_lex_state = 2}, + [7164] = {.lex_state = 349, .external_lex_state = 2}, [7165] = {.lex_state = 349, .external_lex_state = 2}, - [7166] = {.lex_state = 2, .external_lex_state = 10}, + [7166] = {.lex_state = 349, .external_lex_state = 2}, [7167] = {.lex_state = 349, .external_lex_state = 2}, [7168] = {.lex_state = 349, .external_lex_state = 2}, [7169] = {.lex_state = 349, .external_lex_state = 2}, [7170] = {.lex_state = 349, .external_lex_state = 2}, [7171] = {.lex_state = 349, .external_lex_state = 2}, - [7172] = {.lex_state = 21, .external_lex_state = 2}, + [7172] = {.lex_state = 349, .external_lex_state = 2}, [7173] = {.lex_state = 349, .external_lex_state = 2}, [7174] = {.lex_state = 349, .external_lex_state = 2}, [7175] = {.lex_state = 349, .external_lex_state = 2}, [7176] = {.lex_state = 349, .external_lex_state = 2}, - [7177] = {.lex_state = 349, .external_lex_state = 2}, - [7178] = {.lex_state = 349, .external_lex_state = 2}, - [7179] = {.lex_state = 47, .external_lex_state = 2}, - [7180] = {.lex_state = 47, .external_lex_state = 2}, - [7181] = {.lex_state = 349, .external_lex_state = 2}, - [7182] = {.lex_state = 349, .external_lex_state = 2}, + [7177] = {.lex_state = 47, .external_lex_state = 2}, + [7178] = {.lex_state = 21, .external_lex_state = 2}, + [7179] = {.lex_state = 68, .external_lex_state = 2}, + [7180] = {.lex_state = 349, .external_lex_state = 2}, + [7181] = {.lex_state = 47, .external_lex_state = 2}, + [7182] = {.lex_state = 47, .external_lex_state = 2}, [7183] = {.lex_state = 349, .external_lex_state = 2}, [7184] = {.lex_state = 47, .external_lex_state = 2}, [7185] = {.lex_state = 349, .external_lex_state = 2}, @@ -27669,105 +27450,105 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7187] = {.lex_state = 47, .external_lex_state = 2}, [7188] = {.lex_state = 349, .external_lex_state = 2}, [7189] = {.lex_state = 349, .external_lex_state = 2}, - [7190] = {.lex_state = 47, .external_lex_state = 2}, + [7190] = {.lex_state = 349, .external_lex_state = 2}, [7191] = {.lex_state = 349, .external_lex_state = 2}, - [7192] = {.lex_state = 46, .external_lex_state = 2}, + [7192] = {.lex_state = 349, .external_lex_state = 2}, [7193] = {.lex_state = 349, .external_lex_state = 2}, [7194] = {.lex_state = 349, .external_lex_state = 2}, - [7195] = {.lex_state = 47, .external_lex_state = 2}, + [7195] = {.lex_state = 349, .external_lex_state = 2}, [7196] = {.lex_state = 349, .external_lex_state = 2}, [7197] = {.lex_state = 47, .external_lex_state = 2}, [7198] = {.lex_state = 349, .external_lex_state = 2}, [7199] = {.lex_state = 349, .external_lex_state = 2}, [7200] = {.lex_state = 349, .external_lex_state = 2}, [7201] = {.lex_state = 349, .external_lex_state = 2}, - [7202] = {.lex_state = 47, .external_lex_state = 2}, + [7202] = {.lex_state = 349, .external_lex_state = 2}, [7203] = {.lex_state = 47, .external_lex_state = 2}, - [7204] = {.lex_state = 349, .external_lex_state = 2}, - [7205] = {.lex_state = 47, .external_lex_state = 2}, + [7204] = {.lex_state = 47, .external_lex_state = 2}, + [7205] = {.lex_state = 349, .external_lex_state = 2}, [7206] = {.lex_state = 47, .external_lex_state = 2}, [7207] = {.lex_state = 349, .external_lex_state = 2}, - [7208] = {.lex_state = 47, .external_lex_state = 2}, + [7208] = {.lex_state = 349, .external_lex_state = 2}, [7209] = {.lex_state = 349, .external_lex_state = 2}, - [7210] = {.lex_state = 349, .external_lex_state = 2}, + [7210] = {.lex_state = 47, .external_lex_state = 2}, [7211] = {.lex_state = 47, .external_lex_state = 2}, [7212] = {.lex_state = 349, .external_lex_state = 2}, - [7213] = {.lex_state = 47, .external_lex_state = 2}, + [7213] = {.lex_state = 349, .external_lex_state = 2}, [7214] = {.lex_state = 349, .external_lex_state = 2}, - [7215] = {.lex_state = 47, .external_lex_state = 2}, + [7215] = {.lex_state = 349, .external_lex_state = 2}, [7216] = {.lex_state = 47, .external_lex_state = 2}, - [7217] = {.lex_state = 2, .external_lex_state = 10}, - [7218] = {.lex_state = 47, .external_lex_state = 2}, + [7217] = {.lex_state = 47, .external_lex_state = 2}, + [7218] = {.lex_state = 349, .external_lex_state = 2}, [7219] = {.lex_state = 349, .external_lex_state = 2}, - [7220] = {.lex_state = 349, .external_lex_state = 2}, + [7220] = {.lex_state = 47, .external_lex_state = 2}, [7221] = {.lex_state = 349, .external_lex_state = 2}, - [7222] = {.lex_state = 46, .external_lex_state = 2}, - [7223] = {.lex_state = 46, .external_lex_state = 2}, + [7222] = {.lex_state = 349, .external_lex_state = 2}, + [7223] = {.lex_state = 349, .external_lex_state = 2}, [7224] = {.lex_state = 349, .external_lex_state = 2}, - [7225] = {.lex_state = 349, .external_lex_state = 2}, + [7225] = {.lex_state = 47, .external_lex_state = 2}, [7226] = {.lex_state = 349, .external_lex_state = 2}, [7227] = {.lex_state = 349, .external_lex_state = 2}, [7228] = {.lex_state = 349, .external_lex_state = 2}, - [7229] = {.lex_state = 349, .external_lex_state = 2}, - [7230] = {.lex_state = 349, .external_lex_state = 2}, - [7231] = {.lex_state = 349, .external_lex_state = 2}, + [7229] = {.lex_state = 47, .external_lex_state = 2}, + [7230] = {.lex_state = 47, .external_lex_state = 2}, + [7231] = {.lex_state = 2, .external_lex_state = 10}, [7232] = {.lex_state = 349, .external_lex_state = 2}, [7233] = {.lex_state = 349, .external_lex_state = 2}, [7234] = {.lex_state = 349, .external_lex_state = 2}, [7235] = {.lex_state = 349, .external_lex_state = 2}, - [7236] = {.lex_state = 46, .external_lex_state = 2}, - [7237] = {.lex_state = 349, .external_lex_state = 2}, - [7238] = {.lex_state = 47, .external_lex_state = 2}, - [7239] = {.lex_state = 349, .external_lex_state = 2}, + [7236] = {.lex_state = 349, .external_lex_state = 2}, + [7237] = {.lex_state = 47, .external_lex_state = 2}, + [7238] = {.lex_state = 349, .external_lex_state = 2}, + [7239] = {.lex_state = 47, .external_lex_state = 2}, [7240] = {.lex_state = 349, .external_lex_state = 2}, [7241] = {.lex_state = 349, .external_lex_state = 2}, - [7242] = {.lex_state = 349, .external_lex_state = 2}, + [7242] = {.lex_state = 46, .external_lex_state = 2}, [7243] = {.lex_state = 349, .external_lex_state = 2}, [7244] = {.lex_state = 349, .external_lex_state = 2}, [7245] = {.lex_state = 349, .external_lex_state = 2}, [7246] = {.lex_state = 349, .external_lex_state = 2}, - [7247] = {.lex_state = 68, .external_lex_state = 2}, - [7248] = {.lex_state = 47, .external_lex_state = 2}, - [7249] = {.lex_state = 349, .external_lex_state = 2}, + [7247] = {.lex_state = 349, .external_lex_state = 2}, + [7248] = {.lex_state = 349, .external_lex_state = 2}, + [7249] = {.lex_state = 46, .external_lex_state = 2}, [7250] = {.lex_state = 349, .external_lex_state = 2}, - [7251] = {.lex_state = 349, .external_lex_state = 2}, + [7251] = {.lex_state = 47, .external_lex_state = 2}, [7252] = {.lex_state = 349, .external_lex_state = 2}, - [7253] = {.lex_state = 47, .external_lex_state = 2}, + [7253] = {.lex_state = 349, .external_lex_state = 2}, [7254] = {.lex_state = 349, .external_lex_state = 2}, [7255] = {.lex_state = 349, .external_lex_state = 2}, [7256] = {.lex_state = 349, .external_lex_state = 2}, [7257] = {.lex_state = 349, .external_lex_state = 2}, [7258] = {.lex_state = 349, .external_lex_state = 2}, - [7259] = {.lex_state = 47, .external_lex_state = 2}, + [7259] = {.lex_state = 68, .external_lex_state = 2}, [7260] = {.lex_state = 349, .external_lex_state = 2}, [7261] = {.lex_state = 349, .external_lex_state = 2}, [7262] = {.lex_state = 349, .external_lex_state = 2}, - [7263] = {.lex_state = 47, .external_lex_state = 2}, - [7264] = {.lex_state = 349, .external_lex_state = 2}, - [7265] = {.lex_state = 47, .external_lex_state = 2}, + [7263] = {.lex_state = 349, .external_lex_state = 2}, + [7264] = {.lex_state = 47, .external_lex_state = 2}, + [7265] = {.lex_state = 349, .external_lex_state = 2}, [7266] = {.lex_state = 349, .external_lex_state = 2}, [7267] = {.lex_state = 349, .external_lex_state = 2}, [7268] = {.lex_state = 349, .external_lex_state = 2}, - [7269] = {.lex_state = 349, .external_lex_state = 2}, + [7269] = {.lex_state = 47, .external_lex_state = 2}, [7270] = {.lex_state = 349, .external_lex_state = 2}, [7271] = {.lex_state = 349, .external_lex_state = 2}, [7272] = {.lex_state = 349, .external_lex_state = 2}, [7273] = {.lex_state = 349, .external_lex_state = 2}, - [7274] = {.lex_state = 47, .external_lex_state = 2}, - [7275] = {.lex_state = 47, .external_lex_state = 2}, - [7276] = {.lex_state = 47, .external_lex_state = 2}, + [7274] = {.lex_state = 349, .external_lex_state = 2}, + [7275] = {.lex_state = 349, .external_lex_state = 2}, + [7276] = {.lex_state = 349, .external_lex_state = 2}, [7277] = {.lex_state = 349, .external_lex_state = 2}, - [7278] = {.lex_state = 47, .external_lex_state = 2}, - [7279] = {.lex_state = 349, .external_lex_state = 2}, - [7280] = {.lex_state = 349, .external_lex_state = 2}, + [7278] = {.lex_state = 349, .external_lex_state = 2}, + [7279] = {.lex_state = 47, .external_lex_state = 2}, + [7280] = {.lex_state = 47, .external_lex_state = 2}, [7281] = {.lex_state = 349, .external_lex_state = 2}, [7282] = {.lex_state = 349, .external_lex_state = 2}, [7283] = {.lex_state = 349, .external_lex_state = 2}, [7284] = {.lex_state = 349, .external_lex_state = 2}, - [7285] = {.lex_state = 349, .external_lex_state = 2}, - [7286] = {.lex_state = 47, .external_lex_state = 2}, + [7285] = {.lex_state = 46, .external_lex_state = 2}, + [7286] = {.lex_state = 349, .external_lex_state = 2}, [7287] = {.lex_state = 47, .external_lex_state = 2}, - [7288] = {.lex_state = 47, .external_lex_state = 2}, + [7288] = {.lex_state = 349, .external_lex_state = 2}, [7289] = {.lex_state = 349, .external_lex_state = 2}, [7290] = {.lex_state = 349, .external_lex_state = 2}, [7291] = {.lex_state = 349, .external_lex_state = 2}, @@ -27775,61 +27556,61 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7293] = {.lex_state = 47, .external_lex_state = 2}, [7294] = {.lex_state = 349, .external_lex_state = 2}, [7295] = {.lex_state = 349, .external_lex_state = 2}, - [7296] = {.lex_state = 349, .external_lex_state = 2}, + [7296] = {.lex_state = 47, .external_lex_state = 2}, [7297] = {.lex_state = 349, .external_lex_state = 2}, - [7298] = {.lex_state = 349, .external_lex_state = 2}, - [7299] = {.lex_state = 349, .external_lex_state = 2}, + [7298] = {.lex_state = 47, .external_lex_state = 2}, + [7299] = {.lex_state = 47, .external_lex_state = 2}, [7300] = {.lex_state = 349, .external_lex_state = 2}, [7301] = {.lex_state = 349, .external_lex_state = 2}, [7302] = {.lex_state = 349, .external_lex_state = 2}, [7303] = {.lex_state = 349, .external_lex_state = 2}, [7304] = {.lex_state = 349, .external_lex_state = 2}, [7305] = {.lex_state = 349, .external_lex_state = 2}, - [7306] = {.lex_state = 47, .external_lex_state = 2}, + [7306] = {.lex_state = 349, .external_lex_state = 2}, [7307] = {.lex_state = 349, .external_lex_state = 2}, [7308] = {.lex_state = 349, .external_lex_state = 2}, [7309] = {.lex_state = 349, .external_lex_state = 2}, [7310] = {.lex_state = 349, .external_lex_state = 2}, - [7311] = {.lex_state = 47, .external_lex_state = 2}, + [7311] = {.lex_state = 349, .external_lex_state = 2}, [7312] = {.lex_state = 349, .external_lex_state = 2}, [7313] = {.lex_state = 349, .external_lex_state = 2}, [7314] = {.lex_state = 349, .external_lex_state = 2}, - [7315] = {.lex_state = 349, .external_lex_state = 2}, + [7315] = {.lex_state = 47, .external_lex_state = 2}, [7316] = {.lex_state = 349, .external_lex_state = 2}, [7317] = {.lex_state = 349, .external_lex_state = 2}, [7318] = {.lex_state = 47, .external_lex_state = 2}, [7319] = {.lex_state = 47, .external_lex_state = 2}, - [7320] = {.lex_state = 47, .external_lex_state = 2}, + [7320] = {.lex_state = 349, .external_lex_state = 2}, [7321] = {.lex_state = 349, .external_lex_state = 2}, - [7322] = {.lex_state = 349, .external_lex_state = 2}, + [7322] = {.lex_state = 47, .external_lex_state = 2}, [7323] = {.lex_state = 349, .external_lex_state = 2}, [7324] = {.lex_state = 349, .external_lex_state = 2}, [7325] = {.lex_state = 349, .external_lex_state = 2}, [7326] = {.lex_state = 349, .external_lex_state = 2}, - [7327] = {.lex_state = 349, .external_lex_state = 2}, - [7328] = {.lex_state = 349, .external_lex_state = 2}, + [7327] = {.lex_state = 47, .external_lex_state = 2}, + [7328] = {.lex_state = 47, .external_lex_state = 2}, [7329] = {.lex_state = 349, .external_lex_state = 2}, - [7330] = {.lex_state = 349, .external_lex_state = 2}, - [7331] = {.lex_state = 349, .external_lex_state = 2}, + [7330] = {.lex_state = 47, .external_lex_state = 2}, + [7331] = {.lex_state = 47, .external_lex_state = 2}, [7332] = {.lex_state = 349, .external_lex_state = 2}, [7333] = {.lex_state = 349, .external_lex_state = 2}, [7334] = {.lex_state = 349, .external_lex_state = 2}, [7335] = {.lex_state = 349, .external_lex_state = 2}, [7336] = {.lex_state = 349, .external_lex_state = 2}, - [7337] = {.lex_state = 349, .external_lex_state = 2}, - [7338] = {.lex_state = 47, .external_lex_state = 2}, - [7339] = {.lex_state = 47, .external_lex_state = 2}, + [7337] = {.lex_state = 21, .external_lex_state = 2}, + [7338] = {.lex_state = 349, .external_lex_state = 2}, + [7339] = {.lex_state = 349, .external_lex_state = 2}, [7340] = {.lex_state = 349, .external_lex_state = 2}, [7341] = {.lex_state = 349, .external_lex_state = 2}, [7342] = {.lex_state = 349, .external_lex_state = 2}, [7343] = {.lex_state = 349, .external_lex_state = 2}, - [7344] = {.lex_state = 46, .external_lex_state = 2}, + [7344] = {.lex_state = 349, .external_lex_state = 2}, [7345] = {.lex_state = 349, .external_lex_state = 2}, [7346] = {.lex_state = 349, .external_lex_state = 2}, - [7347] = {.lex_state = 349, .external_lex_state = 2}, + [7347] = {.lex_state = 47, .external_lex_state = 2}, [7348] = {.lex_state = 349, .external_lex_state = 2}, [7349] = {.lex_state = 349, .external_lex_state = 2}, - [7350] = {.lex_state = 349, .external_lex_state = 2}, + [7350] = {.lex_state = 47, .external_lex_state = 2}, [7351] = {.lex_state = 349, .external_lex_state = 2}, [7352] = {.lex_state = 349, .external_lex_state = 2}, [7353] = {.lex_state = 349, .external_lex_state = 2}, @@ -27840,7 +27621,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7358] = {.lex_state = 349, .external_lex_state = 2}, [7359] = {.lex_state = 47, .external_lex_state = 2}, [7360] = {.lex_state = 349, .external_lex_state = 2}, - [7361] = {.lex_state = 21, .external_lex_state = 2}, + [7361] = {.lex_state = 349, .external_lex_state = 2}, [7362] = {.lex_state = 349, .external_lex_state = 2}, [7363] = {.lex_state = 349, .external_lex_state = 2}, [7364] = {.lex_state = 349, .external_lex_state = 2}, @@ -27849,246 +27630,63 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [7367] = {.lex_state = 349, .external_lex_state = 2}, [7368] = {.lex_state = 349, .external_lex_state = 2}, [7369] = {.lex_state = 349, .external_lex_state = 2}, - [7370] = {.lex_state = 47, .external_lex_state = 2}, - [7371] = {.lex_state = 47, .external_lex_state = 2}, - [7372] = {.lex_state = 349, .external_lex_state = 2}, + [7370] = {.lex_state = 349, .external_lex_state = 2}, + [7371] = {.lex_state = 349, .external_lex_state = 2}, + [7372] = {.lex_state = 47, .external_lex_state = 2}, [7373] = {.lex_state = 349, .external_lex_state = 2}, - [7374] = {.lex_state = 46, .external_lex_state = 2}, - [7375] = {.lex_state = 349, .external_lex_state = 2}, - [7376] = {.lex_state = 68, .external_lex_state = 2}, - [7377] = {.lex_state = 47, .external_lex_state = 2}, + [7374] = {.lex_state = 349, .external_lex_state = 2}, + [7375] = {.lex_state = 47, .external_lex_state = 2}, + [7376] = {.lex_state = 349, .external_lex_state = 2}, + [7377] = {.lex_state = 349, .external_lex_state = 2}, [7378] = {.lex_state = 47, .external_lex_state = 2}, [7379] = {.lex_state = 349, .external_lex_state = 2}, [7380] = {.lex_state = 47, .external_lex_state = 2}, - [7381] = {.lex_state = 349, .external_lex_state = 2}, + [7381] = {.lex_state = 47, .external_lex_state = 2}, [7382] = {.lex_state = 349, .external_lex_state = 2}, [7383] = {.lex_state = 349, .external_lex_state = 2}, - [7384] = {.lex_state = 47, .external_lex_state = 2}, - [7385] = {.lex_state = 47, .external_lex_state = 2}, - [7386] = {.lex_state = 47, .external_lex_state = 2}, + [7384] = {.lex_state = 349, .external_lex_state = 2}, + [7385] = {.lex_state = 349, .external_lex_state = 2}, + [7386] = {.lex_state = 349, .external_lex_state = 2}, [7387] = {.lex_state = 47, .external_lex_state = 2}, - [7388] = {.lex_state = 47, .external_lex_state = 2}, - [7389] = {.lex_state = 47, .external_lex_state = 2}, - [7390] = {.lex_state = 2, .external_lex_state = 10}, - [7391] = {.lex_state = 47, .external_lex_state = 2}, - [7392] = {.lex_state = 47, .external_lex_state = 2}, - [7393] = {.lex_state = 47, .external_lex_state = 2}, + [7388] = {.lex_state = 349, .external_lex_state = 2}, + [7389] = {.lex_state = 349, .external_lex_state = 2}, + [7390] = {.lex_state = 46, .external_lex_state = 2}, + [7391] = {.lex_state = 349, .external_lex_state = 2}, + [7392] = {.lex_state = 349, .external_lex_state = 2}, + [7393] = {.lex_state = 349, .external_lex_state = 2}, [7394] = {.lex_state = 349, .external_lex_state = 2}, - [7395] = {.lex_state = 349, .external_lex_state = 2}, + [7395] = {.lex_state = 47, .external_lex_state = 2}, [7396] = {.lex_state = 349, .external_lex_state = 2}, - [7397] = {.lex_state = 349, .external_lex_state = 2}, + [7397] = {.lex_state = 47, .external_lex_state = 2}, [7398] = {.lex_state = 349, .external_lex_state = 2}, - [7399] = {.lex_state = 47, .external_lex_state = 2}, + [7399] = {.lex_state = 349, .external_lex_state = 2}, [7400] = {.lex_state = 47, .external_lex_state = 2}, - [7401] = {.lex_state = 349, .external_lex_state = 2}, - [7402] = {.lex_state = 349, .external_lex_state = 2}, - [7403] = {.lex_state = 47, .external_lex_state = 2}, + [7401] = {.lex_state = 46, .external_lex_state = 2}, + [7402] = {.lex_state = 2, .external_lex_state = 10}, + [7403] = {.lex_state = 349, .external_lex_state = 2}, [7404] = {.lex_state = 349, .external_lex_state = 2}, - [7405] = {.lex_state = 349, .external_lex_state = 2}, - [7406] = {.lex_state = 349, .external_lex_state = 2}, + [7405] = {.lex_state = 47, .external_lex_state = 2}, + [7406] = {.lex_state = 47, .external_lex_state = 2}, [7407] = {.lex_state = 349, .external_lex_state = 2}, - [7408] = {.lex_state = 349, .external_lex_state = 2}, + [7408] = {.lex_state = 47, .external_lex_state = 2}, [7409] = {.lex_state = 349, .external_lex_state = 2}, [7410] = {.lex_state = 349, .external_lex_state = 2}, - [7411] = {.lex_state = 349, .external_lex_state = 2}, - [7412] = {.lex_state = 349, .external_lex_state = 2}, - [7413] = {.lex_state = 349, .external_lex_state = 2}, + [7411] = {.lex_state = 47, .external_lex_state = 2}, + [7412] = {.lex_state = 47, .external_lex_state = 2}, + [7413] = {.lex_state = 47, .external_lex_state = 2}, [7414] = {.lex_state = 349, .external_lex_state = 2}, [7415] = {.lex_state = 47, .external_lex_state = 2}, - [7416] = {.lex_state = 47, .external_lex_state = 2}, - [7417] = {.lex_state = 349, .external_lex_state = 2}, - [7418] = {.lex_state = 349, .external_lex_state = 2}, + [7416] = {.lex_state = 349, .external_lex_state = 2}, + [7417] = {.lex_state = 47, .external_lex_state = 2}, + [7418] = {.lex_state = 47, .external_lex_state = 2}, [7419] = {.lex_state = 349, .external_lex_state = 2}, - [7420] = {.lex_state = 47, .external_lex_state = 2}, - [7421] = {.lex_state = 349, .external_lex_state = 2}, + [7420] = {.lex_state = 349, .external_lex_state = 2}, + [7421] = {.lex_state = 47, .external_lex_state = 2}, [7422] = {.lex_state = 47, .external_lex_state = 2}, - [7423] = {.lex_state = 349, .external_lex_state = 2}, + [7423] = {.lex_state = 47, .external_lex_state = 2}, [7424] = {.lex_state = 349, .external_lex_state = 2}, - [7425] = {.lex_state = 349, .external_lex_state = 2}, - [7426] = {.lex_state = 349, .external_lex_state = 2}, - [7427] = {.lex_state = 47, .external_lex_state = 2}, - [7428] = {.lex_state = 349, .external_lex_state = 2}, - [7429] = {.lex_state = 349, .external_lex_state = 2}, - [7430] = {.lex_state = 349, .external_lex_state = 2}, - [7431] = {.lex_state = 349, .external_lex_state = 2}, - [7432] = {.lex_state = 46, .external_lex_state = 2}, - [7433] = {.lex_state = 349, .external_lex_state = 2}, - [7434] = {.lex_state = 47, .external_lex_state = 2}, - [7435] = {.lex_state = 349, .external_lex_state = 2}, - [7436] = {.lex_state = 349, .external_lex_state = 2}, - [7437] = {.lex_state = 349, .external_lex_state = 2}, - [7438] = {.lex_state = 349, .external_lex_state = 2}, - [7439] = {.lex_state = 349, .external_lex_state = 2}, - [7440] = {.lex_state = 349, .external_lex_state = 2}, - [7441] = {.lex_state = 47, .external_lex_state = 2}, - [7442] = {.lex_state = 68, .external_lex_state = 2}, - [7443] = {.lex_state = 349, .external_lex_state = 2}, - [7444] = {.lex_state = 349, .external_lex_state = 2}, - [7445] = {.lex_state = 349, .external_lex_state = 2}, - [7446] = {.lex_state = 47, .external_lex_state = 2}, - [7447] = {.lex_state = 349, .external_lex_state = 2}, - [7448] = {.lex_state = 349, .external_lex_state = 2}, - [7449] = {.lex_state = 349, .external_lex_state = 2}, - [7450] = {.lex_state = 349, .external_lex_state = 2}, - [7451] = {.lex_state = 349, .external_lex_state = 2}, - [7452] = {.lex_state = 349, .external_lex_state = 2}, - [7453] = {.lex_state = 349, .external_lex_state = 2}, - [7454] = {.lex_state = 68, .external_lex_state = 2}, - [7455] = {.lex_state = 349, .external_lex_state = 2}, - [7456] = {.lex_state = 349, .external_lex_state = 2}, - [7457] = {.lex_state = 47, .external_lex_state = 2}, - [7458] = {.lex_state = 47, .external_lex_state = 2}, - [7459] = {.lex_state = 349, .external_lex_state = 2}, - [7460] = {.lex_state = 349, .external_lex_state = 2}, - [7461] = {.lex_state = 349, .external_lex_state = 2}, - [7462] = {.lex_state = 349, .external_lex_state = 2}, - [7463] = {.lex_state = 349, .external_lex_state = 2}, - [7464] = {.lex_state = 349, .external_lex_state = 2}, - [7465] = {.lex_state = 349, .external_lex_state = 2}, - [7466] = {.lex_state = 349, .external_lex_state = 2}, - [7467] = {.lex_state = 349, .external_lex_state = 2}, - [7468] = {.lex_state = 349, .external_lex_state = 2}, - [7469] = {.lex_state = 349, .external_lex_state = 2}, - [7470] = {.lex_state = 47, .external_lex_state = 2}, - [7471] = {.lex_state = 349, .external_lex_state = 2}, - [7472] = {.lex_state = 349, .external_lex_state = 2}, - [7473] = {.lex_state = 349, .external_lex_state = 2}, - [7474] = {.lex_state = 349, .external_lex_state = 2}, - [7475] = {.lex_state = 349, .external_lex_state = 2}, - [7476] = {.lex_state = 47, .external_lex_state = 2}, - [7477] = {.lex_state = 349, .external_lex_state = 2}, - [7478] = {.lex_state = 47, .external_lex_state = 2}, - [7479] = {.lex_state = 47, .external_lex_state = 2}, - [7480] = {.lex_state = 47, .external_lex_state = 2}, - [7481] = {.lex_state = 349, .external_lex_state = 2}, - [7482] = {.lex_state = 68, .external_lex_state = 2}, - [7483] = {.lex_state = 349, .external_lex_state = 2}, - [7484] = {.lex_state = 349, .external_lex_state = 2}, - [7485] = {.lex_state = 349, .external_lex_state = 2}, - [7486] = {.lex_state = 349, .external_lex_state = 2}, - [7487] = {.lex_state = 349, .external_lex_state = 2}, - [7488] = {.lex_state = 349, .external_lex_state = 2}, - [7489] = {.lex_state = 349, .external_lex_state = 2}, - [7490] = {.lex_state = 46, .external_lex_state = 2}, - [7491] = {.lex_state = 349, .external_lex_state = 2}, - [7492] = {.lex_state = 349, .external_lex_state = 2}, - [7493] = {.lex_state = 47, .external_lex_state = 2}, - [7494] = {.lex_state = 349, .external_lex_state = 2}, - [7495] = {.lex_state = 349, .external_lex_state = 2}, - [7496] = {.lex_state = 349, .external_lex_state = 2}, - [7497] = {.lex_state = 47, .external_lex_state = 2}, - [7498] = {.lex_state = 47, .external_lex_state = 2}, - [7499] = {.lex_state = 349, .external_lex_state = 2}, - [7500] = {.lex_state = 47, .external_lex_state = 2}, - [7501] = {.lex_state = 47, .external_lex_state = 2}, - [7502] = {.lex_state = 349, .external_lex_state = 2}, - [7503] = {.lex_state = 349, .external_lex_state = 2}, - [7504] = {.lex_state = 349, .external_lex_state = 2}, - [7505] = {.lex_state = 47, .external_lex_state = 2}, - [7506] = {.lex_state = 349, .external_lex_state = 2}, - [7507] = {.lex_state = 349, .external_lex_state = 2}, - [7508] = {.lex_state = 47, .external_lex_state = 2}, - [7509] = {.lex_state = 349, .external_lex_state = 2}, - [7510] = {.lex_state = 47, .external_lex_state = 2}, - [7511] = {.lex_state = 47, .external_lex_state = 2}, - [7512] = {.lex_state = 349, .external_lex_state = 2}, - [7513] = {.lex_state = 349, .external_lex_state = 2}, - [7514] = {.lex_state = 47, .external_lex_state = 2}, - [7515] = {.lex_state = 349, .external_lex_state = 2}, - [7516] = {.lex_state = 349, .external_lex_state = 2}, - [7517] = {.lex_state = 349, .external_lex_state = 2}, - [7518] = {.lex_state = 349, .external_lex_state = 2}, - [7519] = {.lex_state = 349, .external_lex_state = 2}, - [7520] = {.lex_state = 21, .external_lex_state = 2}, - [7521] = {.lex_state = 47, .external_lex_state = 2}, - [7522] = {.lex_state = 47, .external_lex_state = 2}, - [7523] = {.lex_state = 349, .external_lex_state = 2}, - [7524] = {.lex_state = 349, .external_lex_state = 2}, - [7525] = {.lex_state = 349, .external_lex_state = 2}, - [7526] = {.lex_state = 349, .external_lex_state = 2}, - [7527] = {.lex_state = 47, .external_lex_state = 2}, - [7528] = {.lex_state = 47, .external_lex_state = 2}, - [7529] = {.lex_state = 349, .external_lex_state = 2}, - [7530] = {.lex_state = 349, .external_lex_state = 2}, - [7531] = {.lex_state = 349, .external_lex_state = 2}, - [7532] = {.lex_state = 47, .external_lex_state = 2}, - [7533] = {.lex_state = 349, .external_lex_state = 2}, - [7534] = {.lex_state = 349, .external_lex_state = 2}, - [7535] = {.lex_state = 47, .external_lex_state = 2}, - [7536] = {.lex_state = 349, .external_lex_state = 2}, - [7537] = {.lex_state = 349, .external_lex_state = 2}, - [7538] = {.lex_state = 349, .external_lex_state = 2}, - [7539] = {.lex_state = 47, .external_lex_state = 2}, - [7540] = {.lex_state = 349, .external_lex_state = 2}, - [7541] = {.lex_state = 349, .external_lex_state = 2}, - [7542] = {.lex_state = 47, .external_lex_state = 2}, - [7543] = {.lex_state = 349, .external_lex_state = 2}, - [7544] = {.lex_state = 349, .external_lex_state = 2}, - [7545] = {.lex_state = 349, .external_lex_state = 2}, - [7546] = {.lex_state = 349, .external_lex_state = 2}, - [7547] = {.lex_state = 349, .external_lex_state = 2}, - [7548] = {.lex_state = 349, .external_lex_state = 2}, - [7549] = {.lex_state = 349, .external_lex_state = 2}, - [7550] = {.lex_state = 349, .external_lex_state = 2}, - [7551] = {.lex_state = 349, .external_lex_state = 2}, - [7552] = {.lex_state = 349, .external_lex_state = 2}, - [7553] = {.lex_state = 349, .external_lex_state = 2}, - [7554] = {.lex_state = 349, .external_lex_state = 2}, - [7555] = {.lex_state = 47, .external_lex_state = 2}, - [7556] = {.lex_state = 349, .external_lex_state = 2}, - [7557] = {.lex_state = 349, .external_lex_state = 2}, - [7558] = {.lex_state = 47, .external_lex_state = 2}, - [7559] = {.lex_state = 349, .external_lex_state = 2}, - [7560] = {.lex_state = 349, .external_lex_state = 2}, - [7561] = {.lex_state = 47, .external_lex_state = 2}, - [7562] = {.lex_state = 349, .external_lex_state = 2}, - [7563] = {.lex_state = 47, .external_lex_state = 2}, - [7564] = {.lex_state = 47, .external_lex_state = 2}, - [7565] = {.lex_state = 349, .external_lex_state = 2}, - [7566] = {.lex_state = 349, .external_lex_state = 2}, - [7567] = {.lex_state = 349, .external_lex_state = 2}, - [7568] = {.lex_state = 349, .external_lex_state = 2}, - [7569] = {.lex_state = 349, .external_lex_state = 2}, - [7570] = {.lex_state = 47, .external_lex_state = 2}, - [7571] = {.lex_state = 349, .external_lex_state = 2}, - [7572] = {.lex_state = 349, .external_lex_state = 2}, - [7573] = {.lex_state = 349, .external_lex_state = 2}, - [7574] = {.lex_state = 349, .external_lex_state = 2}, - [7575] = {.lex_state = 349, .external_lex_state = 2}, - [7576] = {.lex_state = 46, .external_lex_state = 2}, - [7577] = {.lex_state = 349, .external_lex_state = 2}, - [7578] = {.lex_state = 47, .external_lex_state = 2}, - [7579] = {.lex_state = 349, .external_lex_state = 2}, - [7580] = {.lex_state = 47, .external_lex_state = 2}, - [7581] = {.lex_state = 349, .external_lex_state = 2}, - [7582] = {.lex_state = 349, .external_lex_state = 2}, - [7583] = {.lex_state = 47, .external_lex_state = 2}, - [7584] = {.lex_state = 46, .external_lex_state = 2}, - [7585] = {.lex_state = 2, .external_lex_state = 10}, - [7586] = {.lex_state = 349, .external_lex_state = 2}, - [7587] = {.lex_state = 349, .external_lex_state = 2}, - [7588] = {.lex_state = 349, .external_lex_state = 2}, - [7589] = {.lex_state = 349, .external_lex_state = 2}, - [7590] = {.lex_state = 349, .external_lex_state = 2}, - [7591] = {.lex_state = 47, .external_lex_state = 2}, - [7592] = {.lex_state = 349, .external_lex_state = 2}, - [7593] = {.lex_state = 349, .external_lex_state = 2}, - [7594] = {.lex_state = 349, .external_lex_state = 2}, - [7595] = {.lex_state = 47, .external_lex_state = 2}, - [7596] = {.lex_state = 47, .external_lex_state = 2}, - [7597] = {.lex_state = 349, .external_lex_state = 2}, - [7598] = {.lex_state = 349, .external_lex_state = 2}, - [7599] = {.lex_state = 349, .external_lex_state = 2}, - [7600] = {.lex_state = 47, .external_lex_state = 2}, - [7601] = {.lex_state = 47, .external_lex_state = 2}, - [7602] = {.lex_state = 349, .external_lex_state = 2}, - [7603] = {.lex_state = 47, .external_lex_state = 2}, - [7604] = {.lex_state = 47, .external_lex_state = 2}, - [7605] = {.lex_state = 47, .external_lex_state = 2}, - [7606] = {.lex_state = 47, .external_lex_state = 2}, - [7607] = {.lex_state = 349, .external_lex_state = 2}, - [7608] = {.lex_state = 349, .external_lex_state = 2}, - [7609] = {(TSStateId)(-1)}, + [7425] = {.lex_state = 47, .external_lex_state = 2}, + [7426] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -28254,87 +27852,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym___error_recovery] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(7577), - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_program] = STATE(7394), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(1), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(72), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(35), + [aux_sym_export_statement_repeat1] = STATE(4813), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [sym_hash_bang_line] = ACTIONS(11), @@ -28415,78 +28014,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [2] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3147), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3154), [sym_comment] = STATE(2), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_pattern] = STATE(5292), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4003), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(801), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_pattern] = STATE(5012), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3864), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(657), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), @@ -28603,78 +28202,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [3] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3147), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3154), [sym_comment] = STATE(3), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_pattern] = STATE(5292), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4003), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(801), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_pattern] = STATE(5012), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3864), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(657), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), @@ -28791,98 +28390,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [4] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6388), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7534), - [sym_spread_element] = STATE(6380), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3402), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(5630), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7352), + [sym_spread_element] = STATE(5631), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3252), [sym_comment] = STATE(4), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_rest_pattern] = STATE(6388), - [sym_method_definition] = STATE(6380), - [sym_pair] = STATE(6380), - [sym_pair_pattern] = STATE(6388), - [sym__property_name] = STATE(4551), - [sym_computed_property_name] = STATE(4552), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_accessibility_modifier] = STATE(3744), - [sym_override_modifier] = STATE(3771), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(66), - [aux_sym_export_statement_repeat1] = STATE(4977), - [aux_sym_object_repeat1] = STATE(6347), - [aux_sym_object_pattern_repeat1] = STATE(6379), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_rest_pattern] = STATE(5630), + [sym_method_definition] = STATE(5631), + [sym_pair] = STATE(5631), + [sym_pair_pattern] = STATE(5630), + [sym__property_name] = STATE(4441), + [sym_computed_property_name] = STATE(4442), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_accessibility_modifier] = STATE(3593), + [sym_override_modifier] = STATE(3621), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(67), + [aux_sym_export_statement_repeat1] = STATE(4813), + [aux_sym_object_repeat1] = STATE(5649), + [aux_sym_object_pattern_repeat1] = STATE(5632), [sym_identifier] = ACTIONS(219), [anon_sym_export] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), @@ -28965,111 +28565,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [5] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6388), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7534), - [sym_spread_element] = STATE(6380), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3402), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(5630), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7352), + [sym_spread_element] = STATE(5708), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3252), [sym_comment] = STATE(5), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_rest_pattern] = STATE(6388), - [sym_method_definition] = STATE(6380), - [sym_pair] = STATE(6380), - [sym_pair_pattern] = STATE(6388), - [sym__property_name] = STATE(4551), - [sym_computed_property_name] = STATE(4552), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_accessibility_modifier] = STATE(3744), - [sym_override_modifier] = STATE(3771), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(61), - [aux_sym_export_statement_repeat1] = STATE(4977), - [aux_sym_object_repeat1] = STATE(6347), - [aux_sym_object_pattern_repeat1] = STATE(6379), - [sym_identifier] = ACTIONS(219), - [anon_sym_export] = ACTIONS(221), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_rest_pattern] = STATE(5630), + [sym_method_definition] = STATE(5708), + [sym_pair] = STATE(5708), + [sym_pair_pattern] = STATE(5630), + [sym__property_name] = STATE(4441), + [sym_computed_property_name] = STATE(4442), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_accessibility_modifier] = STATE(3593), + [sym_override_modifier] = STATE(3621), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(45), + [aux_sym_export_statement_repeat1] = STATE(4813), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_identifier] = ACTIONS(263), + [anon_sym_export] = ACTIONS(265), [anon_sym_STAR] = ACTIONS(223), - [anon_sym_type] = ACTIONS(225), - [anon_sym_namespace] = ACTIONS(227), + [anon_sym_type] = ACTIONS(267), + [anon_sym_namespace] = ACTIONS(269), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(263), + [anon_sym_RBRACE] = ACTIONS(271), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(233), + [anon_sym_let] = ACTIONS(273), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -29092,9 +28693,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(237), + [anon_sym_async] = ACTIONS(275), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(239), + [anon_sym_new] = ACTIONS(277), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), [anon_sym_PLUS] = ACTIONS(21), @@ -29117,120 +28718,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(247), - [anon_sym_readonly] = ACTIONS(249), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_declare] = ACTIONS(253), - [anon_sym_public] = ACTIONS(255), - [anon_sym_private] = ACTIONS(255), - [anon_sym_protected] = ACTIONS(255), - [anon_sym_override] = ACTIONS(257), - [anon_sym_module] = ACTIONS(259), - [anon_sym_any] = ACTIONS(261), - [anon_sym_number] = ACTIONS(261), - [anon_sym_boolean] = ACTIONS(261), - [anon_sym_string] = ACTIONS(261), - [anon_sym_symbol] = ACTIONS(261), - [anon_sym_object] = ACTIONS(261), + [anon_sym_static] = ACTIONS(279), + [anon_sym_readonly] = ACTIONS(281), + [anon_sym_get] = ACTIONS(283), + [anon_sym_set] = ACTIONS(283), + [anon_sym_declare] = ACTIONS(285), + [anon_sym_public] = ACTIONS(287), + [anon_sym_private] = ACTIONS(287), + [anon_sym_protected] = ACTIONS(287), + [anon_sym_override] = ACTIONS(289), + [anon_sym_module] = ACTIONS(291), + [anon_sym_any] = ACTIONS(293), + [anon_sym_number] = ACTIONS(293), + [anon_sym_boolean] = ACTIONS(293), + [anon_sym_string] = ACTIONS(293), + [anon_sym_symbol] = ACTIONS(293), + [anon_sym_object] = ACTIONS(293), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [6] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6388), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7534), - [sym_spread_element] = STATE(6380), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3402), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(5630), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7352), + [sym_spread_element] = STATE(5631), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3252), [sym_comment] = STATE(6), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_rest_pattern] = STATE(6388), - [sym_method_definition] = STATE(6380), - [sym_pair] = STATE(6380), - [sym_pair_pattern] = STATE(6388), - [sym__property_name] = STATE(4551), - [sym_computed_property_name] = STATE(4552), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_accessibility_modifier] = STATE(3744), - [sym_override_modifier] = STATE(3771), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(68), - [aux_sym_export_statement_repeat1] = STATE(4977), - [aux_sym_object_repeat1] = STATE(6347), - [aux_sym_object_pattern_repeat1] = STATE(6379), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_rest_pattern] = STATE(5630), + [sym_method_definition] = STATE(5631), + [sym_pair] = STATE(5631), + [sym_pair_pattern] = STATE(5630), + [sym__property_name] = STATE(4441), + [sym_computed_property_name] = STATE(4442), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_accessibility_modifier] = STATE(3593), + [sym_override_modifier] = STATE(3621), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(52), + [aux_sym_export_statement_repeat1] = STATE(4813), + [aux_sym_object_repeat1] = STATE(5649), + [aux_sym_object_pattern_repeat1] = STATE(5632), [sym_identifier] = ACTIONS(219), [anon_sym_export] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), @@ -29238,7 +28840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(227), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(265), + [anon_sym_RBRACE] = ACTIONS(295), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -29313,98 +28915,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [7] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6388), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7534), - [sym_spread_element] = STATE(6380), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3402), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(5630), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7352), + [sym_spread_element] = STATE(5631), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3252), [sym_comment] = STATE(7), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_rest_pattern] = STATE(6388), - [sym_method_definition] = STATE(6380), - [sym_pair] = STATE(6380), - [sym_pair_pattern] = STATE(6388), - [sym__property_name] = STATE(4551), - [sym_computed_property_name] = STATE(4552), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_accessibility_modifier] = STATE(3744), - [sym_override_modifier] = STATE(3771), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(65), - [aux_sym_export_statement_repeat1] = STATE(4977), - [aux_sym_object_repeat1] = STATE(6347), - [aux_sym_object_pattern_repeat1] = STATE(6379), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_rest_pattern] = STATE(5630), + [sym_method_definition] = STATE(5631), + [sym_pair] = STATE(5631), + [sym_pair_pattern] = STATE(5630), + [sym__property_name] = STATE(4441), + [sym_computed_property_name] = STATE(4442), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_accessibility_modifier] = STATE(3593), + [sym_override_modifier] = STATE(3621), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(51), + [aux_sym_export_statement_repeat1] = STATE(4813), + [aux_sym_object_repeat1] = STATE(5649), + [aux_sym_object_pattern_repeat1] = STATE(5632), [sym_identifier] = ACTIONS(219), [anon_sym_export] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), @@ -29412,7 +29015,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(227), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(267), + [anon_sym_RBRACE] = ACTIONS(297), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -29487,111 +29090,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [8] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6388), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7534), - [sym_spread_element] = STATE(6391), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3402), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(5630), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7352), + [sym_spread_element] = STATE(5631), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3252), [sym_comment] = STATE(8), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_rest_pattern] = STATE(6388), - [sym_method_definition] = STATE(6391), - [sym_pair] = STATE(6391), - [sym_pair_pattern] = STATE(6388), - [sym__property_name] = STATE(4551), - [sym_computed_property_name] = STATE(4552), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_accessibility_modifier] = STATE(3744), - [sym_override_modifier] = STATE(3771), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(4977), - [aux_sym_object_repeat1] = STATE(6384), - [aux_sym_object_pattern_repeat1] = STATE(6379), - [sym_identifier] = ACTIONS(269), - [anon_sym_export] = ACTIONS(271), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_rest_pattern] = STATE(5630), + [sym_method_definition] = STATE(5631), + [sym_pair] = STATE(5631), + [sym_pair_pattern] = STATE(5630), + [sym__property_name] = STATE(4441), + [sym_computed_property_name] = STATE(4442), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_accessibility_modifier] = STATE(3593), + [sym_override_modifier] = STATE(3621), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(60), + [aux_sym_export_statement_repeat1] = STATE(4813), + [aux_sym_object_repeat1] = STATE(5649), + [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_identifier] = ACTIONS(219), + [anon_sym_export] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), - [anon_sym_type] = ACTIONS(273), - [anon_sym_namespace] = ACTIONS(275), + [anon_sym_type] = ACTIONS(225), + [anon_sym_namespace] = ACTIONS(227), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(299), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(279), + [anon_sym_let] = ACTIONS(233), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -29614,9 +29218,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(281), + [anon_sym_async] = ACTIONS(237), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(283), + [anon_sym_new] = ACTIONS(239), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), [anon_sym_PLUS] = ACTIONS(21), @@ -29639,120 +29243,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [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(299), - [anon_sym_number] = ACTIONS(299), - [anon_sym_boolean] = ACTIONS(299), - [anon_sym_string] = ACTIONS(299), - [anon_sym_symbol] = ACTIONS(299), - [anon_sym_object] = ACTIONS(299), + [anon_sym_static] = ACTIONS(247), + [anon_sym_readonly] = ACTIONS(249), + [anon_sym_get] = ACTIONS(251), + [anon_sym_set] = ACTIONS(251), + [anon_sym_declare] = ACTIONS(253), + [anon_sym_public] = ACTIONS(255), + [anon_sym_private] = ACTIONS(255), + [anon_sym_protected] = ACTIONS(255), + [anon_sym_override] = ACTIONS(257), + [anon_sym_module] = ACTIONS(259), + [anon_sym_any] = ACTIONS(261), + [anon_sym_number] = ACTIONS(261), + [anon_sym_boolean] = ACTIONS(261), + [anon_sym_string] = ACTIONS(261), + [anon_sym_symbol] = ACTIONS(261), + [anon_sym_object] = ACTIONS(261), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [9] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6388), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7534), - [sym_spread_element] = STATE(6380), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3402), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(5630), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7352), + [sym_spread_element] = STATE(5631), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3252), [sym_comment] = STATE(9), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_rest_pattern] = STATE(6388), - [sym_method_definition] = STATE(6380), - [sym_pair] = STATE(6380), - [sym_pair_pattern] = STATE(6388), - [sym__property_name] = STATE(4551), - [sym_computed_property_name] = STATE(4552), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_accessibility_modifier] = STATE(3744), - [sym_override_modifier] = STATE(3771), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(34), - [aux_sym_export_statement_repeat1] = STATE(4977), - [aux_sym_object_repeat1] = STATE(6347), - [aux_sym_object_pattern_repeat1] = STATE(6379), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_rest_pattern] = STATE(5630), + [sym_method_definition] = STATE(5631), + [sym_pair] = STATE(5631), + [sym_pair_pattern] = STATE(5630), + [sym__property_name] = STATE(4441), + [sym_computed_property_name] = STATE(4442), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_accessibility_modifier] = STATE(3593), + [sym_override_modifier] = STATE(3621), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(28), + [aux_sym_export_statement_repeat1] = STATE(4813), + [aux_sym_object_repeat1] = STATE(5649), + [aux_sym_object_pattern_repeat1] = STATE(5632), [sym_identifier] = ACTIONS(219), [anon_sym_export] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), @@ -29835,111 +29440,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [10] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6388), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7534), - [sym_spread_element] = STATE(6391), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3402), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(5630), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7352), + [sym_spread_element] = STATE(5631), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3252), [sym_comment] = STATE(10), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_rest_pattern] = STATE(6388), - [sym_method_definition] = STATE(6391), - [sym_pair] = STATE(6391), - [sym_pair_pattern] = STATE(6388), - [sym__property_name] = STATE(4551), - [sym_computed_property_name] = STATE(4552), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_accessibility_modifier] = STATE(3744), - [sym_override_modifier] = STATE(3771), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(4977), - [aux_sym_object_repeat1] = STATE(6384), - [aux_sym_object_pattern_repeat1] = STATE(6379), - [sym_identifier] = ACTIONS(303), - [anon_sym_export] = ACTIONS(305), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_rest_pattern] = STATE(5630), + [sym_method_definition] = STATE(5631), + [sym_pair] = STATE(5631), + [sym_pair_pattern] = STATE(5630), + [sym__property_name] = STATE(4441), + [sym_computed_property_name] = STATE(4442), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_accessibility_modifier] = STATE(3593), + [sym_override_modifier] = STATE(3621), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(4813), + [aux_sym_object_repeat1] = STATE(5649), + [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_identifier] = ACTIONS(219), + [anon_sym_export] = ACTIONS(221), [anon_sym_STAR] = ACTIONS(223), - [anon_sym_type] = ACTIONS(307), - [anon_sym_namespace] = ACTIONS(309), + [anon_sym_type] = ACTIONS(225), + [anon_sym_namespace] = ACTIONS(227), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(277), + [anon_sym_RBRACE] = ACTIONS(303), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(311), + [anon_sym_let] = ACTIONS(233), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -29962,9 +29568,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(313), + [anon_sym_async] = ACTIONS(237), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(315), + [anon_sym_new] = ACTIONS(239), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), [anon_sym_PLUS] = ACTIONS(21), @@ -29987,133 +29593,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(317), - [anon_sym_readonly] = ACTIONS(319), - [anon_sym_get] = ACTIONS(321), - [anon_sym_set] = ACTIONS(321), - [anon_sym_declare] = ACTIONS(323), - [anon_sym_public] = ACTIONS(325), - [anon_sym_private] = ACTIONS(325), - [anon_sym_protected] = ACTIONS(325), - [anon_sym_override] = ACTIONS(327), - [anon_sym_module] = ACTIONS(329), - [anon_sym_any] = ACTIONS(331), - [anon_sym_number] = ACTIONS(331), - [anon_sym_boolean] = ACTIONS(331), - [anon_sym_string] = ACTIONS(331), - [anon_sym_symbol] = ACTIONS(331), - [anon_sym_object] = ACTIONS(331), + [anon_sym_static] = ACTIONS(247), + [anon_sym_readonly] = ACTIONS(249), + [anon_sym_get] = ACTIONS(251), + [anon_sym_set] = ACTIONS(251), + [anon_sym_declare] = ACTIONS(253), + [anon_sym_public] = ACTIONS(255), + [anon_sym_private] = ACTIONS(255), + [anon_sym_protected] = ACTIONS(255), + [anon_sym_override] = ACTIONS(257), + [anon_sym_module] = ACTIONS(259), + [anon_sym_any] = ACTIONS(261), + [anon_sym_number] = ACTIONS(261), + [anon_sym_boolean] = ACTIONS(261), + [anon_sym_string] = ACTIONS(261), + [anon_sym_symbol] = ACTIONS(261), + [anon_sym_object] = ACTIONS(261), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [11] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6388), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7534), - [sym_spread_element] = STATE(6380), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3402), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(5630), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7352), + [sym_spread_element] = STATE(5708), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3252), [sym_comment] = STATE(11), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_rest_pattern] = STATE(6388), - [sym_method_definition] = STATE(6380), - [sym_pair] = STATE(6380), - [sym_pair_pattern] = STATE(6388), - [sym__property_name] = STATE(4551), - [sym_computed_property_name] = STATE(4552), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_accessibility_modifier] = STATE(3744), - [sym_override_modifier] = STATE(3771), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(44), - [aux_sym_export_statement_repeat1] = STATE(4977), - [aux_sym_object_repeat1] = STATE(6347), - [aux_sym_object_pattern_repeat1] = STATE(6379), - [sym_identifier] = ACTIONS(219), - [anon_sym_export] = ACTIONS(221), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_rest_pattern] = STATE(5630), + [sym_method_definition] = STATE(5708), + [sym_pair] = STATE(5708), + [sym_pair_pattern] = STATE(5630), + [sym__property_name] = STATE(4441), + [sym_computed_property_name] = STATE(4442), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_accessibility_modifier] = STATE(3593), + [sym_override_modifier] = STATE(3621), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(45), + [aux_sym_export_statement_repeat1] = STATE(4813), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_identifier] = ACTIONS(305), + [anon_sym_export] = ACTIONS(307), [anon_sym_STAR] = ACTIONS(223), - [anon_sym_type] = ACTIONS(225), - [anon_sym_namespace] = ACTIONS(227), + [anon_sym_type] = ACTIONS(309), + [anon_sym_namespace] = ACTIONS(311), [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_COMMA] = ACTIONS(229), - [anon_sym_RBRACE] = ACTIONS(333), + [anon_sym_RBRACE] = ACTIONS(271), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(233), + [anon_sym_let] = ACTIONS(313), [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), [anon_sym_if] = ACTIONS(33), @@ -30136,9 +29743,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(237), + [anon_sym_async] = ACTIONS(315), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(239), + [anon_sym_new] = ACTIONS(317), [anon_sym_using] = ACTIONS(79), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), [anon_sym_PLUS] = ACTIONS(21), @@ -30161,108 +29768,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(247), - [anon_sym_readonly] = ACTIONS(249), - [anon_sym_get] = ACTIONS(251), - [anon_sym_set] = ACTIONS(251), - [anon_sym_declare] = ACTIONS(253), - [anon_sym_public] = ACTIONS(255), - [anon_sym_private] = ACTIONS(255), - [anon_sym_protected] = ACTIONS(255), - [anon_sym_override] = ACTIONS(257), - [anon_sym_module] = ACTIONS(259), - [anon_sym_any] = ACTIONS(261), - [anon_sym_number] = ACTIONS(261), - [anon_sym_boolean] = ACTIONS(261), - [anon_sym_string] = ACTIONS(261), - [anon_sym_symbol] = ACTIONS(261), - [anon_sym_object] = ACTIONS(261), + [anon_sym_static] = ACTIONS(319), + [anon_sym_readonly] = ACTIONS(321), + [anon_sym_get] = ACTIONS(323), + [anon_sym_set] = ACTIONS(323), + [anon_sym_declare] = ACTIONS(325), + [anon_sym_public] = ACTIONS(327), + [anon_sym_private] = ACTIONS(327), + [anon_sym_protected] = ACTIONS(327), + [anon_sym_override] = ACTIONS(329), + [anon_sym_module] = ACTIONS(331), + [anon_sym_any] = ACTIONS(333), + [anon_sym_number] = ACTIONS(333), + [anon_sym_boolean] = ACTIONS(333), + [anon_sym_string] = ACTIONS(333), + [anon_sym_symbol] = ACTIONS(333), + [anon_sym_object] = ACTIONS(333), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [12] = { - [sym_export_statement] = STATE(1531), - [sym_declaration] = STATE(1531), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1531), - [sym_expression_statement] = STATE(1531), - [sym_variable_declaration] = STATE(1318), - [sym_lexical_declaration] = STATE(1318), - [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(2263), - [sym_expression] = STATE(2744), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1318), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1318), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1318), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6589), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1229), + [sym_statement] = STATE(1368), + [sym_expression_statement] = STATE(1229), + [sym_variable_declaration] = STATE(1450), + [sym_lexical_declaration] = STATE(1450), + [sym_statement_block] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_statement] = STATE(1229), + [sym_try_statement] = STATE(1229), + [sym_with_statement] = STATE(1229), + [sym_break_statement] = STATE(1229), + [sym_continue_statement] = STATE(1229), + [sym_debugger_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_throw_statement] = STATE(1229), + [sym_empty_statement] = STATE(1229), + [sym_labeled_statement] = STATE(1229), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2629), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1450), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1450), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1450), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6741), + [sym_string] = STATE(3280), [sym_comment] = STATE(12), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1318), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1318), - [sym_abstract_class_declaration] = STATE(1318), - [sym_module] = STATE(1318), - [sym_internal_module] = STATE(339), - [sym_import_alias] = STATE(1318), - [sym_interface_declaration] = STATE(1318), - [sym_enum_declaration] = STATE(1318), - [sym_type_alias_declaration] = STATE(1318), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(4875), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1450), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1450), + [sym_abstract_class_declaration] = STATE(1450), + [sym_module] = STATE(1450), + [sym_internal_module] = STATE(370), + [sym_import_alias] = STATE(1450), + [sym_interface_declaration] = STATE(1450), + [sym_enum_declaration] = STATE(1450), + [sym_type_alias_declaration] = STATE(1450), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(4658), [sym_identifier] = ACTIONS(335), [anon_sym_export] = ACTIONS(337), [anon_sym_default] = ACTIONS(339), @@ -30344,86 +29952,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [13] = { - [sym_export_statement] = STATE(1531), - [sym_declaration] = STATE(1531), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1531), - [sym_expression_statement] = STATE(1531), - [sym_variable_declaration] = STATE(1318), - [sym_lexical_declaration] = STATE(1318), - [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(2263), - [sym_expression] = STATE(2744), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1318), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1318), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1318), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6589), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1229), + [sym_statement] = STATE(1368), + [sym_expression_statement] = STATE(1229), + [sym_variable_declaration] = STATE(1450), + [sym_lexical_declaration] = STATE(1450), + [sym_statement_block] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_statement] = STATE(1229), + [sym_try_statement] = STATE(1229), + [sym_with_statement] = STATE(1229), + [sym_break_statement] = STATE(1229), + [sym_continue_statement] = STATE(1229), + [sym_debugger_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_throw_statement] = STATE(1229), + [sym_empty_statement] = STATE(1229), + [sym_labeled_statement] = STATE(1229), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2629), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1450), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1450), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1450), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6741), + [sym_string] = STATE(3280), [sym_comment] = STATE(13), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1318), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1318), - [sym_abstract_class_declaration] = STATE(1318), - [sym_module] = STATE(1318), - [sym_internal_module] = STATE(339), - [sym_import_alias] = STATE(1318), - [sym_interface_declaration] = STATE(1318), - [sym_enum_declaration] = STATE(1318), - [sym_type_alias_declaration] = STATE(1318), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(4875), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1450), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1450), + [sym_abstract_class_declaration] = STATE(1450), + [sym_module] = STATE(1450), + [sym_internal_module] = STATE(370), + [sym_import_alias] = STATE(1450), + [sym_interface_declaration] = STATE(1450), + [sym_enum_declaration] = STATE(1450), + [sym_type_alias_declaration] = STATE(1450), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(16), + [aux_sym_export_statement_repeat1] = STATE(4658), [sym_identifier] = ACTIONS(335), [anon_sym_export] = ACTIONS(337), [anon_sym_default] = ACTIONS(401), @@ -30505,86 +30114,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [14] = { - [sym_export_statement] = STATE(1531), - [sym_declaration] = STATE(1531), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1531), - [sym_expression_statement] = STATE(1531), - [sym_variable_declaration] = STATE(1318), - [sym_lexical_declaration] = STATE(1318), - [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(2263), - [sym_expression] = STATE(2744), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1318), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1318), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1318), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6589), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1229), + [sym_statement] = STATE(1368), + [sym_expression_statement] = STATE(1229), + [sym_variable_declaration] = STATE(1450), + [sym_lexical_declaration] = STATE(1450), + [sym_statement_block] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_statement] = STATE(1229), + [sym_try_statement] = STATE(1229), + [sym_with_statement] = STATE(1229), + [sym_break_statement] = STATE(1229), + [sym_continue_statement] = STATE(1229), + [sym_debugger_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_throw_statement] = STATE(1229), + [sym_empty_statement] = STATE(1229), + [sym_labeled_statement] = STATE(1229), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2629), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1450), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1450), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1450), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6741), + [sym_string] = STATE(3280), [sym_comment] = STATE(14), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1318), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1318), - [sym_abstract_class_declaration] = STATE(1318), - [sym_module] = STATE(1318), - [sym_internal_module] = STATE(339), - [sym_import_alias] = STATE(1318), - [sym_interface_declaration] = STATE(1318), - [sym_enum_declaration] = STATE(1318), - [sym_type_alias_declaration] = STATE(1318), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(15), - [aux_sym_export_statement_repeat1] = STATE(4875), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1450), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1450), + [sym_abstract_class_declaration] = STATE(1450), + [sym_module] = STATE(1450), + [sym_internal_module] = STATE(370), + [sym_import_alias] = STATE(1450), + [sym_interface_declaration] = STATE(1450), + [sym_enum_declaration] = STATE(1450), + [sym_type_alias_declaration] = STATE(1450), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(12), + [aux_sym_export_statement_repeat1] = STATE(4658), [sym_identifier] = ACTIONS(335), [anon_sym_export] = ACTIONS(337), [anon_sym_default] = ACTIONS(403), @@ -30666,93 +30276,256 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [15] = { - [sym_export_statement] = STATE(1531), - [sym_declaration] = STATE(1531), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1531), - [sym_expression_statement] = STATE(1531), - [sym_variable_declaration] = STATE(1318), - [sym_lexical_declaration] = STATE(1318), - [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(2263), - [sym_expression] = STATE(2744), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1318), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1318), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1318), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6589), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1229), + [sym_statement] = STATE(1368), + [sym_expression_statement] = STATE(1229), + [sym_variable_declaration] = STATE(1450), + [sym_lexical_declaration] = STATE(1450), + [sym_statement_block] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_statement] = STATE(1229), + [sym_try_statement] = STATE(1229), + [sym_with_statement] = STATE(1229), + [sym_break_statement] = STATE(1229), + [sym_continue_statement] = STATE(1229), + [sym_debugger_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_throw_statement] = STATE(1229), + [sym_empty_statement] = STATE(1229), + [sym_labeled_statement] = STATE(1229), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2629), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1450), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1450), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1450), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6741), + [sym_string] = STATE(3280), [sym_comment] = STATE(15), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1318), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1318), - [sym_abstract_class_declaration] = STATE(1318), - [sym_module] = STATE(1318), - [sym_internal_module] = STATE(339), - [sym_import_alias] = STATE(1318), - [sym_interface_declaration] = STATE(1318), - [sym_enum_declaration] = STATE(1318), - [sym_type_alias_declaration] = STATE(1318), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(4875), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1450), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1450), + [sym_abstract_class_declaration] = STATE(1450), + [sym_module] = STATE(1450), + [sym_internal_module] = STATE(370), + [sym_import_alias] = STATE(1450), + [sym_interface_declaration] = STATE(1450), + [sym_enum_declaration] = STATE(1450), + [sym_type_alias_declaration] = STATE(1450), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(4658), + [sym_identifier] = ACTIONS(405), + [anon_sym_export] = ACTIONS(408), + [anon_sym_default] = ACTIONS(411), + [anon_sym_type] = ACTIONS(413), + [anon_sym_namespace] = ACTIONS(416), + [anon_sym_LBRACE] = ACTIONS(419), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_typeof] = ACTIONS(422), + [anon_sym_import] = ACTIONS(425), + [anon_sym_with] = ACTIONS(428), + [anon_sym_var] = ACTIONS(431), + [anon_sym_let] = ACTIONS(434), + [anon_sym_const] = ACTIONS(437), + [anon_sym_BANG] = ACTIONS(422), + [anon_sym_if] = ACTIONS(440), + [anon_sym_switch] = ACTIONS(443), + [anon_sym_for] = ACTIONS(446), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_await] = ACTIONS(452), + [anon_sym_while] = ACTIONS(455), + [anon_sym_do] = ACTIONS(458), + [anon_sym_try] = ACTIONS(461), + [anon_sym_break] = ACTIONS(464), + [anon_sym_continue] = ACTIONS(467), + [anon_sym_debugger] = ACTIONS(470), + [anon_sym_return] = ACTIONS(473), + [anon_sym_throw] = ACTIONS(476), + [anon_sym_SEMI] = ACTIONS(479), + [anon_sym_case] = ACTIONS(411), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(485), + [anon_sym_LTtemplate_GT] = ACTIONS(488), + [anon_sym_DQUOTE] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(494), + [anon_sym_class] = ACTIONS(497), + [anon_sym_async] = ACTIONS(500), + [anon_sym_function] = ACTIONS(503), + [anon_sym_new] = ACTIONS(506), + [anon_sym_using] = ACTIONS(509), + [anon_sym_PLUS] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(422), + [anon_sym_SLASH] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_void] = ACTIONS(422), + [anon_sym_delete] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(518), + [anon_sym_DASH_DASH] = ACTIONS(518), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(521), + [sym_number] = ACTIONS(524), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(524), + [sym_super] = ACTIONS(524), + [sym_true] = ACTIONS(524), + [sym_false] = ACTIONS(524), + [sym_null] = ACTIONS(524), + [sym_undefined] = ACTIONS(530), + [anon_sym_AT] = ACTIONS(533), + [anon_sym_static] = ACTIONS(536), + [anon_sym_readonly] = ACTIONS(536), + [anon_sym_get] = ACTIONS(536), + [anon_sym_set] = ACTIONS(536), + [anon_sym_declare] = ACTIONS(539), + [anon_sym_public] = ACTIONS(536), + [anon_sym_private] = ACTIONS(536), + [anon_sym_protected] = ACTIONS(536), + [anon_sym_override] = ACTIONS(536), + [anon_sym_module] = ACTIONS(542), + [anon_sym_any] = ACTIONS(536), + [anon_sym_number] = ACTIONS(536), + [anon_sym_boolean] = ACTIONS(536), + [anon_sym_string] = ACTIONS(536), + [anon_sym_symbol] = ACTIONS(536), + [anon_sym_object] = ACTIONS(536), + [anon_sym_abstract] = ACTIONS(545), + [anon_sym_interface] = ACTIONS(548), + [anon_sym_enum] = ACTIONS(551), + [sym_html_comment] = ACTIONS(5), + }, + [16] = { + [sym_export_statement] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1229), + [sym_statement] = STATE(1368), + [sym_expression_statement] = STATE(1229), + [sym_variable_declaration] = STATE(1450), + [sym_lexical_declaration] = STATE(1450), + [sym_statement_block] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_statement] = STATE(1229), + [sym_try_statement] = STATE(1229), + [sym_with_statement] = STATE(1229), + [sym_break_statement] = STATE(1229), + [sym_continue_statement] = STATE(1229), + [sym_debugger_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_throw_statement] = STATE(1229), + [sym_empty_statement] = STATE(1229), + [sym_labeled_statement] = STATE(1229), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2629), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1450), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1450), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1450), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6741), + [sym_string] = STATE(3280), + [sym_comment] = STATE(16), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1450), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1450), + [sym_abstract_class_declaration] = STATE(1450), + [sym_module] = STATE(1450), + [sym_internal_module] = STATE(370), + [sym_import_alias] = STATE(1450), + [sym_interface_declaration] = STATE(1450), + [sym_enum_declaration] = STATE(1450), + [sym_type_alias_declaration] = STATE(1450), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(4658), [sym_identifier] = ACTIONS(335), [anon_sym_export] = ACTIONS(337), - [anon_sym_default] = ACTIONS(405), + [anon_sym_default] = ACTIONS(554), [anon_sym_type] = ACTIONS(341), [anon_sym_namespace] = ACTIONS(343), [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_RBRACE] = ACTIONS(405), + [anon_sym_RBRACE] = ACTIONS(554), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(347), [anon_sym_with] = ACTIONS(349), @@ -30774,7 +30547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(375), [anon_sym_throw] = ACTIONS(377), [anon_sym_SEMI] = ACTIONS(379), - [anon_sym_case] = ACTIONS(405), + [anon_sym_case] = ACTIONS(554), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), @@ -30826,267 +30599,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(399), [sym_html_comment] = ACTIONS(5), }, - [16] = { - [sym_export_statement] = STATE(1531), - [sym_declaration] = STATE(1531), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1531), - [sym_expression_statement] = STATE(1531), - [sym_variable_declaration] = STATE(1318), - [sym_lexical_declaration] = STATE(1318), - [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(2263), - [sym_expression] = STATE(2744), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1318), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1318), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1318), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6589), - [sym_string] = STATE(3425), - [sym_comment] = STATE(16), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1318), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1318), - [sym_abstract_class_declaration] = STATE(1318), - [sym_module] = STATE(1318), - [sym_internal_module] = STATE(339), - [sym_import_alias] = STATE(1318), - [sym_interface_declaration] = STATE(1318), - [sym_enum_declaration] = STATE(1318), - [sym_type_alias_declaration] = STATE(1318), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(4875), - [sym_identifier] = ACTIONS(407), - [anon_sym_export] = ACTIONS(410), - [anon_sym_default] = ACTIONS(413), - [anon_sym_type] = ACTIONS(415), - [anon_sym_namespace] = ACTIONS(418), - [anon_sym_LBRACE] = ACTIONS(421), - [anon_sym_RBRACE] = ACTIONS(413), - [anon_sym_typeof] = ACTIONS(424), - [anon_sym_import] = ACTIONS(427), - [anon_sym_with] = ACTIONS(430), - [anon_sym_var] = ACTIONS(433), - [anon_sym_let] = ACTIONS(436), - [anon_sym_const] = ACTIONS(439), - [anon_sym_BANG] = ACTIONS(424), - [anon_sym_if] = ACTIONS(442), - [anon_sym_switch] = ACTIONS(445), - [anon_sym_for] = ACTIONS(448), - [anon_sym_LPAREN] = ACTIONS(451), - [anon_sym_await] = ACTIONS(454), - [anon_sym_while] = ACTIONS(457), - [anon_sym_do] = ACTIONS(460), - [anon_sym_try] = ACTIONS(463), - [anon_sym_break] = ACTIONS(466), - [anon_sym_continue] = ACTIONS(469), - [anon_sym_debugger] = ACTIONS(472), - [anon_sym_return] = ACTIONS(475), - [anon_sym_throw] = ACTIONS(478), - [anon_sym_SEMI] = ACTIONS(481), - [anon_sym_case] = ACTIONS(413), - [anon_sym_yield] = ACTIONS(484), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_LTtemplate_GT] = ACTIONS(490), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(496), - [anon_sym_class] = ACTIONS(499), - [anon_sym_async] = ACTIONS(502), - [anon_sym_function] = ACTIONS(505), - [anon_sym_new] = ACTIONS(508), - [anon_sym_using] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_SLASH] = ACTIONS(514), - [anon_sym_LT] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_void] = ACTIONS(424), - [anon_sym_delete] = ACTIONS(424), - [anon_sym_PLUS_PLUS] = ACTIONS(520), - [anon_sym_DASH_DASH] = ACTIONS(520), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(523), - [sym_number] = ACTIONS(526), - [sym_private_property_identifier] = ACTIONS(529), - [sym_this] = ACTIONS(526), - [sym_super] = ACTIONS(526), - [sym_true] = ACTIONS(526), - [sym_false] = ACTIONS(526), - [sym_null] = ACTIONS(526), - [sym_undefined] = ACTIONS(532), - [anon_sym_AT] = ACTIONS(535), - [anon_sym_static] = ACTIONS(538), - [anon_sym_readonly] = ACTIONS(538), - [anon_sym_get] = ACTIONS(538), - [anon_sym_set] = ACTIONS(538), - [anon_sym_declare] = ACTIONS(541), - [anon_sym_public] = ACTIONS(538), - [anon_sym_private] = ACTIONS(538), - [anon_sym_protected] = ACTIONS(538), - [anon_sym_override] = ACTIONS(538), - [anon_sym_module] = ACTIONS(544), - [anon_sym_any] = ACTIONS(538), - [anon_sym_number] = ACTIONS(538), - [anon_sym_boolean] = ACTIONS(538), - [anon_sym_string] = ACTIONS(538), - [anon_sym_symbol] = ACTIONS(538), - [anon_sym_object] = ACTIONS(538), - [anon_sym_abstract] = ACTIONS(547), - [anon_sym_interface] = ACTIONS(550), - [anon_sym_enum] = ACTIONS(553), - [sym_html_comment] = ACTIONS(5), - }, [17] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(17), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [aux_sym_export_statement_repeat1] = STATE(4813), [ts_builtin_sym_end] = ACTIONS(556), [sym_identifier] = ACTIONS(558), [anon_sym_export] = ACTIONS(561), [anon_sym_type] = ACTIONS(564), [anon_sym_namespace] = ACTIONS(567), [anon_sym_LBRACE] = ACTIONS(570), - [anon_sym_RBRACE] = ACTIONS(413), - [anon_sym_typeof] = ACTIONS(424), + [anon_sym_RBRACE] = ACTIONS(411), + [anon_sym_typeof] = ACTIONS(422), [anon_sym_import] = ACTIONS(573), [anon_sym_with] = ACTIONS(576), [anon_sym_var] = ACTIONS(579), [anon_sym_let] = ACTIONS(582), [anon_sym_const] = ACTIONS(585), - [anon_sym_BANG] = ACTIONS(424), + [anon_sym_BANG] = ACTIONS(422), [anon_sym_if] = ACTIONS(588), [anon_sym_switch] = ACTIONS(591), [anon_sym_for] = ACTIONS(594), - [anon_sym_LPAREN] = ACTIONS(451), - [anon_sym_await] = ACTIONS(454), + [anon_sym_LPAREN] = ACTIONS(449), + [anon_sym_await] = ACTIONS(452), [anon_sym_while] = ACTIONS(597), [anon_sym_do] = ACTIONS(600), [anon_sym_try] = ACTIONS(603), @@ -31096,36 +30709,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(615), [anon_sym_throw] = ACTIONS(618), [anon_sym_SEMI] = ACTIONS(621), - [anon_sym_yield] = ACTIONS(484), - [anon_sym_LBRACK] = ACTIONS(487), - [anon_sym_LTtemplate_GT] = ACTIONS(490), - [anon_sym_DQUOTE] = ACTIONS(493), - [anon_sym_SQUOTE] = ACTIONS(496), + [anon_sym_yield] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(485), + [anon_sym_LTtemplate_GT] = ACTIONS(488), + [anon_sym_DQUOTE] = ACTIONS(491), + [anon_sym_SQUOTE] = ACTIONS(494), [anon_sym_class] = ACTIONS(624), [anon_sym_async] = ACTIONS(627), [anon_sym_function] = ACTIONS(630), [anon_sym_new] = ACTIONS(633), - [anon_sym_using] = ACTIONS(511), - [anon_sym_PLUS] = ACTIONS(424), - [anon_sym_DASH] = ACTIONS(424), - [anon_sym_SLASH] = ACTIONS(514), - [anon_sym_LT] = ACTIONS(517), - [anon_sym_TILDE] = ACTIONS(424), - [anon_sym_void] = ACTIONS(424), - [anon_sym_delete] = ACTIONS(424), - [anon_sym_PLUS_PLUS] = ACTIONS(520), - [anon_sym_DASH_DASH] = ACTIONS(520), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(523), - [sym_number] = ACTIONS(526), - [sym_private_property_identifier] = ACTIONS(529), - [sym_this] = ACTIONS(526), - [sym_super] = ACTIONS(526), - [sym_true] = ACTIONS(526), - [sym_false] = ACTIONS(526), - [sym_null] = ACTIONS(526), - [sym_undefined] = ACTIONS(532), - [anon_sym_AT] = ACTIONS(535), + [anon_sym_using] = ACTIONS(509), + [anon_sym_PLUS] = ACTIONS(422), + [anon_sym_DASH] = ACTIONS(422), + [anon_sym_SLASH] = ACTIONS(512), + [anon_sym_LT] = ACTIONS(515), + [anon_sym_TILDE] = ACTIONS(422), + [anon_sym_void] = ACTIONS(422), + [anon_sym_delete] = ACTIONS(422), + [anon_sym_PLUS_PLUS] = ACTIONS(518), + [anon_sym_DASH_DASH] = ACTIONS(518), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(521), + [sym_number] = ACTIONS(524), + [sym_private_property_identifier] = ACTIONS(527), + [sym_this] = ACTIONS(524), + [sym_super] = ACTIONS(524), + [sym_true] = ACTIONS(524), + [sym_false] = ACTIONS(524), + [sym_null] = ACTIONS(524), + [sym_undefined] = ACTIONS(530), + [anon_sym_AT] = ACTIONS(533), [anon_sym_static] = ACTIONS(636), [anon_sym_readonly] = ACTIONS(636), [anon_sym_get] = ACTIONS(636), @@ -31148,86 +30761,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [18] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(18), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(36), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -31307,86 +30921,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [19] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(19), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(34), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -31466,92 +31081,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [20] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(20), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(39), + [aux_sym_export_statement_repeat1] = STATE(4813), + [ts_builtin_sym_end] = ACTIONS(658), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(658), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -31625,86 +31241,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [21] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(21), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -31784,86 +31401,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [22] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(22), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(45), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -31943,86 +31561,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [23] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(23), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -32102,86 +31721,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [24] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(24), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(31), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -32261,86 +31881,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [25] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(25), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(26), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(48), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -32420,86 +32041,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [26] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(26), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(38), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -32579,86 +32201,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [27] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(27), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(60), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -32738,86 +32361,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [28] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(28), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -32897,86 +32521,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [29] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(29), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(37), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -33056,86 +32681,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [30] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(30), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(52), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -33215,86 +32841,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [31] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(31), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(61), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -33374,86 +33001,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [32] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(32), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -33533,86 +33161,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [33] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(33), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(30), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(57), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -33692,86 +33321,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [34] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(34), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -33851,92 +33481,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [35] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(35), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(32), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4813), + [ts_builtin_sym_end] = ACTIONS(658), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(688), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34010,92 +33641,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [36] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(36), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(690), + [anon_sym_RBRACE] = ACTIONS(688), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34169,92 +33801,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [37] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(37), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(692), + [anon_sym_RBRACE] = ACTIONS(690), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34328,92 +33961,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [38] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(38), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(37), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(694), + [anon_sym_RBRACE] = ACTIONS(692), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34487,87 +34121,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [39] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(39), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(69), - [aux_sym_export_statement_repeat1] = STATE(4977), - [ts_builtin_sym_end] = ACTIONS(696), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4813), + [ts_builtin_sym_end] = ACTIONS(694), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -34646,92 +34281,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [40] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(40), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(27), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(698), + [anon_sym_RBRACE] = ACTIONS(696), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34805,92 +34441,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [41] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(41), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(40), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(700), + [anon_sym_RBRACE] = ACTIONS(698), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -34964,92 +34601,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [42] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(42), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(41), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(702), + [anon_sym_RBRACE] = ACTIONS(700), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35123,92 +34761,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [43] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(43), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(42), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(704), + [anon_sym_RBRACE] = ACTIONS(702), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35282,92 +34921,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [44] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(44), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(69), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(706), + [anon_sym_RBRACE] = ACTIONS(704), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35441,92 +35081,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [45] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(45), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(708), + [anon_sym_RBRACE] = ACTIONS(706), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35600,92 +35241,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [46] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(46), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(710), + [anon_sym_RBRACE] = ACTIONS(708), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35759,92 +35401,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [47] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(47), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(46), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(62), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(712), + [anon_sym_RBRACE] = ACTIONS(710), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -35918,92 +35561,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [48] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(48), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(714), + [anon_sym_RBRACE] = ACTIONS(712), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36077,92 +35721,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [49] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(49), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(48), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(67), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(716), + [anon_sym_RBRACE] = ACTIONS(714), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36236,92 +35881,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [50] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(50), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(21), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(718), + [anon_sym_RBRACE] = ACTIONS(716), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36395,92 +36041,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [51] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(51), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(50), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(720), + [anon_sym_RBRACE] = ACTIONS(718), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36554,92 +36201,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [52] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(52), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(722), + [anon_sym_RBRACE] = ACTIONS(720), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36713,92 +36361,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [53] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(53), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(52), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(43), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(724), + [anon_sym_RBRACE] = ACTIONS(722), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -36872,92 +36521,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [54] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(54), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(726), + [anon_sym_RBRACE] = ACTIONS(724), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37031,92 +36681,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [55] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(55), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(44), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(54), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(728), + [anon_sym_RBRACE] = ACTIONS(726), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37190,92 +36841,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [56] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(56), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_RBRACE] = ACTIONS(728), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37349,569 +37001,573 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [57] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(57), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(54), - [aux_sym_export_statement_repeat1] = STATE(4977), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(732), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), - [sym_html_comment] = ACTIONS(5), - }, - [58] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), - [sym_comment] = STATE(58), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(64), - [aux_sym_export_statement_repeat1] = STATE(4977), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(734), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), - [sym_html_comment] = ACTIONS(5), - }, - [59] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), - [sym_comment] = STATE(59), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(56), - [aux_sym_export_statement_repeat1] = STATE(4977), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(736), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), - [sym_html_comment] = ACTIONS(5), - }, - [60] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), - [sym_comment] = STATE(60), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(738), + [anon_sym_RBRACE] = ACTIONS(730), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), + [sym_html_comment] = ACTIONS(5), + }, + [58] = { + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), + [sym_comment] = STATE(58), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(60), + [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(732), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), + [sym_html_comment] = ACTIONS(5), + }, + [59] = { + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), + [sym_comment] = STATE(59), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(734), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), + [sym_html_comment] = ACTIONS(5), + }, + [60] = { + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), + [sym_comment] = STATE(60), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(736), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -37985,92 +37641,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [61] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(61), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(56), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(740), + [anon_sym_RBRACE] = ACTIONS(738), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38144,92 +37801,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [62] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(62), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(66), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(742), + [anon_sym_RBRACE] = ACTIONS(740), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38303,92 +37961,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [63] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(63), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(71), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(34), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(744), + [anon_sym_RBRACE] = ACTIONS(742), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38462,92 +38121,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [64] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(64), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(746), + [anon_sym_RBRACE] = ACTIONS(744), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38621,92 +38281,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [65] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(65), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(64), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(748), + [anon_sym_RBRACE] = ACTIONS(746), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38780,92 +38441,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [66] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(66), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(59), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(750), + [anon_sym_RBRACE] = ACTIONS(748), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -38939,92 +38601,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [67] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(67), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(68), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(752), + [anon_sym_RBRACE] = ACTIONS(750), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39098,92 +38761,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [68] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(68), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(28), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(754), + [anon_sym_RBRACE] = ACTIONS(752), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39257,92 +38921,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [69] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(69), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), - [ts_builtin_sym_end] = ACTIONS(756), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(754), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39416,92 +39081,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [70] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(70), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(65), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(758), + [anon_sym_RBRACE] = ACTIONS(756), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39575,92 +39241,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [71] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(71), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(70), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_RBRACE] = ACTIONS(760), + [anon_sym_RBRACE] = ACTIONS(758), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39734,92 +39401,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [72] = { - [sym_export_statement] = STATE(1681), - [sym_declaration] = STATE(1681), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1681), - [sym_expression_statement] = STATE(1681), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1681), - [sym_if_statement] = STATE(1681), - [sym_switch_statement] = STATE(1681), - [sym_for_statement] = STATE(1681), - [sym_for_in_statement] = STATE(1681), - [sym_while_statement] = STATE(1681), - [sym_do_statement] = STATE(1681), - [sym_try_statement] = STATE(1681), - [sym_with_statement] = STATE(1681), - [sym_break_statement] = STATE(1681), - [sym_continue_statement] = STATE(1681), - [sym_debugger_statement] = STATE(1681), - [sym_return_statement] = STATE(1681), - [sym_throw_statement] = STATE(1681), - [sym_empty_statement] = STATE(1681), - [sym_labeled_statement] = STATE(1681), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1583), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(72), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4977), - [ts_builtin_sym_end] = ACTIONS(696), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_program_repeat1] = STATE(51), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), [anon_sym_namespace] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_RBRACE] = ACTIONS(760), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(23), [anon_sym_with] = ACTIONS(25), @@ -39893,85 +39561,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [73] = { - [sym_export_statement] = STATE(6072), - [sym_declaration] = STATE(6072), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(6072), - [sym_expression_statement] = STATE(6072), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6072), - [sym_if_statement] = STATE(6072), - [sym_switch_statement] = STATE(6072), - [sym_for_statement] = STATE(6072), - [sym_for_in_statement] = STATE(6072), - [sym_while_statement] = STATE(6072), - [sym_do_statement] = STATE(6072), - [sym_try_statement] = STATE(6072), - [sym_with_statement] = STATE(6072), - [sym_break_statement] = STATE(6072), - [sym_continue_statement] = STATE(6072), - [sym_debugger_statement] = STATE(6072), - [sym_return_statement] = STATE(6072), - [sym_throw_statement] = STATE(6072), - [sym_empty_statement] = STATE(6072), - [sym_labeled_statement] = STATE(6072), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2687), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6490), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1229), + [sym_statement] = STATE(1370), + [sym_expression_statement] = STATE(1229), + [sym_variable_declaration] = STATE(1450), + [sym_lexical_declaration] = STATE(1450), + [sym_statement_block] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_statement] = STATE(1229), + [sym_try_statement] = STATE(1229), + [sym_with_statement] = STATE(1229), + [sym_break_statement] = STATE(1229), + [sym_continue_statement] = STATE(1229), + [sym_debugger_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_throw_statement] = STATE(1229), + [sym_empty_statement] = STATE(1229), + [sym_labeled_statement] = STATE(1229), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2629), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1450), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1450), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1450), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6741), + [sym_string] = STATE(3280), [sym_comment] = STATE(73), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(6924), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3268), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4923), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1450), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1450), + [sym_abstract_class_declaration] = STATE(1450), + [sym_module] = STATE(1450), + [sym_internal_module] = STATE(370), + [sym_import_alias] = STATE(1450), + [sym_interface_declaration] = STATE(1450), + [sym_enum_declaration] = STATE(1450), + [sym_type_alias_declaration] = STATE(1450), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4658), + [sym_identifier] = ACTIONS(335), + [anon_sym_export] = ACTIONS(337), + [anon_sym_type] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_try] = ACTIONS(367), + [anon_sym_break] = ACTIONS(369), + [anon_sym_continue] = ACTIONS(371), + [anon_sym_debugger] = ACTIONS(373), + [anon_sym_return] = ACTIONS(375), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), + [anon_sym_new] = ACTIONS(387), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(389), + [anon_sym_readonly] = ACTIONS(389), + [anon_sym_get] = ACTIONS(389), + [anon_sym_set] = ACTIONS(389), + [anon_sym_declare] = ACTIONS(391), + [anon_sym_public] = ACTIONS(389), + [anon_sym_private] = ACTIONS(389), + [anon_sym_protected] = ACTIONS(389), + [anon_sym_override] = ACTIONS(389), + [anon_sym_module] = ACTIONS(393), + [anon_sym_any] = ACTIONS(389), + [anon_sym_number] = ACTIONS(389), + [anon_sym_boolean] = ACTIONS(389), + [anon_sym_string] = ACTIONS(389), + [anon_sym_symbol] = ACTIONS(389), + [anon_sym_object] = ACTIONS(389), + [anon_sym_abstract] = ACTIONS(395), + [anon_sym_interface] = ACTIONS(397), + [anon_sym_enum] = ACTIONS(399), + [sym_html_comment] = ACTIONS(5), + }, + [74] = { + [sym_export_statement] = STATE(1467), + [sym_declaration] = STATE(1467), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1467), + [sym_statement] = STATE(1180), + [sym_expression_statement] = STATE(1467), + [sym_variable_declaration] = STATE(1468), + [sym_lexical_declaration] = STATE(1468), + [sym_statement_block] = STATE(1467), + [sym_if_statement] = STATE(1467), + [sym_switch_statement] = STATE(1467), + [sym_for_statement] = STATE(1467), + [sym_for_in_statement] = STATE(1467), + [sym_while_statement] = STATE(1467), + [sym_do_statement] = STATE(1467), + [sym_try_statement] = STATE(1467), + [sym_with_statement] = STATE(1467), + [sym_break_statement] = STATE(1467), + [sym_continue_statement] = STATE(1467), + [sym_debugger_statement] = STATE(1467), + [sym_return_statement] = STATE(1467), + [sym_throw_statement] = STATE(1467), + [sym_empty_statement] = STATE(1467), + [sym_labeled_statement] = STATE(1467), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2600), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1468), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1468), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1468), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6356), + [sym_string] = STATE(3280), + [sym_comment] = STATE(74), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1468), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1468), + [sym_abstract_class_declaration] = STATE(1468), + [sym_module] = STATE(1468), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1468), + [sym_interface_declaration] = STATE(1468), + [sym_enum_declaration] = STATE(1468), + [sym_type_alias_declaration] = STATE(1468), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4817), [sym_identifier] = ACTIONS(762), [anon_sym_export] = ACTIONS(764), [anon_sym_type] = ACTIONS(766), @@ -40049,86 +39876,403 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(824), [sym_html_comment] = ACTIONS(5), }, - [74] = { - [sym_export_statement] = STATE(7369), - [sym_declaration] = STATE(7369), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(7369), - [sym_expression_statement] = STATE(7369), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(7369), - [sym_if_statement] = STATE(7369), - [sym_switch_statement] = STATE(7369), - [sym_for_statement] = STATE(7369), - [sym_for_in_statement] = STATE(7369), - [sym_while_statement] = STATE(7369), - [sym_do_statement] = STATE(7369), - [sym_try_statement] = STATE(7369), - [sym_with_statement] = STATE(7369), - [sym_break_statement] = STATE(7369), - [sym_continue_statement] = STATE(7369), - [sym_debugger_statement] = STATE(7369), - [sym_return_statement] = STATE(7369), - [sym_throw_statement] = STATE(7369), - [sym_empty_statement] = STATE(7369), - [sym_labeled_statement] = STATE(7369), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2687), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6490), - [sym_string] = STATE(3425), - [sym_comment] = STATE(74), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(6924), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3268), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4923), + [75] = { + [sym_export_statement] = STATE(6326), + [sym_declaration] = STATE(6326), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(6326), + [sym_statement] = STATE(6372), + [sym_expression_statement] = STATE(6326), + [sym_variable_declaration] = STATE(6327), + [sym_lexical_declaration] = STATE(6327), + [sym_statement_block] = STATE(6326), + [sym_if_statement] = STATE(6326), + [sym_switch_statement] = STATE(6326), + [sym_for_statement] = STATE(6326), + [sym_for_in_statement] = STATE(6326), + [sym_while_statement] = STATE(6326), + [sym_do_statement] = STATE(6326), + [sym_try_statement] = STATE(6326), + [sym_with_statement] = STATE(6326), + [sym_break_statement] = STATE(6326), + [sym_continue_statement] = STATE(6326), + [sym_debugger_statement] = STATE(6326), + [sym_return_statement] = STATE(6326), + [sym_throw_statement] = STATE(6326), + [sym_empty_statement] = STATE(6326), + [sym_labeled_statement] = STATE(6326), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2566), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(6327), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(6327), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(6327), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6453), + [sym_string] = STATE(3280), + [sym_comment] = STATE(75), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(6327), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(6327), + [sym_abstract_class_declaration] = STATE(6327), + [sym_module] = STATE(6327), + [sym_internal_module] = STATE(3097), + [sym_import_alias] = STATE(6327), + [sym_interface_declaration] = STATE(6327), + [sym_enum_declaration] = STATE(6327), + [sym_type_alias_declaration] = STATE(6327), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4691), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(830), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(836), + [anon_sym_with] = ACTIONS(838), + [anon_sym_var] = ACTIONS(840), + [anon_sym_let] = ACTIONS(842), + [anon_sym_const] = ACTIONS(844), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(846), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(852), + [anon_sym_do] = ACTIONS(854), + [anon_sym_try] = ACTIONS(856), + [anon_sym_break] = ACTIONS(858), + [anon_sym_continue] = ACTIONS(860), + [anon_sym_debugger] = ACTIONS(862), + [anon_sym_return] = ACTIONS(864), + [anon_sym_throw] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(876), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(878), + [anon_sym_readonly] = ACTIONS(878), + [anon_sym_get] = ACTIONS(878), + [anon_sym_set] = ACTIONS(878), + [anon_sym_declare] = ACTIONS(880), + [anon_sym_public] = ACTIONS(878), + [anon_sym_private] = ACTIONS(878), + [anon_sym_protected] = ACTIONS(878), + [anon_sym_override] = ACTIONS(878), + [anon_sym_module] = ACTIONS(882), + [anon_sym_any] = ACTIONS(878), + [anon_sym_number] = ACTIONS(878), + [anon_sym_boolean] = ACTIONS(878), + [anon_sym_string] = ACTIONS(878), + [anon_sym_symbol] = ACTIONS(878), + [anon_sym_object] = ACTIONS(878), + [anon_sym_abstract] = ACTIONS(884), + [anon_sym_interface] = ACTIONS(886), + [anon_sym_enum] = ACTIONS(888), + [sym_html_comment] = ACTIONS(5), + }, + [76] = { + [sym_export_statement] = STATE(6326), + [sym_declaration] = STATE(6326), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(6326), + [sym_statement] = STATE(6379), + [sym_expression_statement] = STATE(6326), + [sym_variable_declaration] = STATE(6327), + [sym_lexical_declaration] = STATE(6327), + [sym_statement_block] = STATE(6326), + [sym_if_statement] = STATE(6326), + [sym_switch_statement] = STATE(6326), + [sym_for_statement] = STATE(6326), + [sym_for_in_statement] = STATE(6326), + [sym_while_statement] = STATE(6326), + [sym_do_statement] = STATE(6326), + [sym_try_statement] = STATE(6326), + [sym_with_statement] = STATE(6326), + [sym_break_statement] = STATE(6326), + [sym_continue_statement] = STATE(6326), + [sym_debugger_statement] = STATE(6326), + [sym_return_statement] = STATE(6326), + [sym_throw_statement] = STATE(6326), + [sym_empty_statement] = STATE(6326), + [sym_labeled_statement] = STATE(6326), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2566), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(6327), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(6327), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(6327), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6453), + [sym_string] = STATE(3280), + [sym_comment] = STATE(76), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(6327), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(6327), + [sym_abstract_class_declaration] = STATE(6327), + [sym_module] = STATE(6327), + [sym_internal_module] = STATE(3097), + [sym_import_alias] = STATE(6327), + [sym_interface_declaration] = STATE(6327), + [sym_enum_declaration] = STATE(6327), + [sym_type_alias_declaration] = STATE(6327), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4691), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(830), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(836), + [anon_sym_with] = ACTIONS(838), + [anon_sym_var] = ACTIONS(840), + [anon_sym_let] = ACTIONS(842), + [anon_sym_const] = ACTIONS(844), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(846), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(852), + [anon_sym_do] = ACTIONS(854), + [anon_sym_try] = ACTIONS(856), + [anon_sym_break] = ACTIONS(858), + [anon_sym_continue] = ACTIONS(860), + [anon_sym_debugger] = ACTIONS(862), + [anon_sym_return] = ACTIONS(864), + [anon_sym_throw] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(876), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(878), + [anon_sym_readonly] = ACTIONS(878), + [anon_sym_get] = ACTIONS(878), + [anon_sym_set] = ACTIONS(878), + [anon_sym_declare] = ACTIONS(880), + [anon_sym_public] = ACTIONS(878), + [anon_sym_private] = ACTIONS(878), + [anon_sym_protected] = ACTIONS(878), + [anon_sym_override] = ACTIONS(878), + [anon_sym_module] = ACTIONS(882), + [anon_sym_any] = ACTIONS(878), + [anon_sym_number] = ACTIONS(878), + [anon_sym_boolean] = ACTIONS(878), + [anon_sym_string] = ACTIONS(878), + [anon_sym_symbol] = ACTIONS(878), + [anon_sym_object] = ACTIONS(878), + [anon_sym_abstract] = ACTIONS(884), + [anon_sym_interface] = ACTIONS(886), + [anon_sym_enum] = ACTIONS(888), + [sym_html_comment] = ACTIONS(5), + }, + [77] = { + [sym_export_statement] = STATE(1467), + [sym_declaration] = STATE(1467), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1467), + [sym_statement] = STATE(1430), + [sym_expression_statement] = STATE(1467), + [sym_variable_declaration] = STATE(1468), + [sym_lexical_declaration] = STATE(1468), + [sym_statement_block] = STATE(1467), + [sym_if_statement] = STATE(1467), + [sym_switch_statement] = STATE(1467), + [sym_for_statement] = STATE(1467), + [sym_for_in_statement] = STATE(1467), + [sym_while_statement] = STATE(1467), + [sym_do_statement] = STATE(1467), + [sym_try_statement] = STATE(1467), + [sym_with_statement] = STATE(1467), + [sym_break_statement] = STATE(1467), + [sym_continue_statement] = STATE(1467), + [sym_debugger_statement] = STATE(1467), + [sym_return_statement] = STATE(1467), + [sym_throw_statement] = STATE(1467), + [sym_empty_statement] = STATE(1467), + [sym_labeled_statement] = STATE(1467), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2600), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1468), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1468), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1468), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6356), + [sym_string] = STATE(3280), + [sym_comment] = STATE(77), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1468), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1468), + [sym_abstract_class_declaration] = STATE(1468), + [sym_module] = STATE(1468), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1468), + [sym_interface_declaration] = STATE(1468), + [sym_enum_declaration] = STATE(1468), + [sym_type_alias_declaration] = STATE(1468), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4817), [sym_identifier] = ACTIONS(762), [anon_sym_export] = ACTIONS(764), [anon_sym_type] = ACTIONS(766), @@ -40206,121 +40350,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(824), [sym_html_comment] = ACTIONS(5), }, - [75] = { - [sym_export_statement] = STATE(6633), - [sym_declaration] = STATE(6633), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(6633), - [sym_expression_statement] = STATE(6633), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6633), - [sym_if_statement] = STATE(6633), - [sym_switch_statement] = STATE(6633), - [sym_for_statement] = STATE(6633), - [sym_for_in_statement] = STATE(6633), - [sym_while_statement] = STATE(6633), - [sym_do_statement] = STATE(6633), - [sym_try_statement] = STATE(6633), - [sym_with_statement] = STATE(6633), - [sym_break_statement] = STATE(6633), - [sym_continue_statement] = STATE(6633), - [sym_debugger_statement] = STATE(6633), - [sym_return_statement] = STATE(6633), - [sym_throw_statement] = STATE(6633), - [sym_empty_statement] = STATE(6633), - [sym_labeled_statement] = STATE(6633), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2687), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6490), - [sym_string] = STATE(3425), - [sym_comment] = STATE(75), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(6924), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3268), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4923), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [78] = { + [sym_export_statement] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1229), + [sym_statement] = STATE(1487), + [sym_expression_statement] = STATE(1229), + [sym_variable_declaration] = STATE(1450), + [sym_lexical_declaration] = STATE(1450), + [sym_statement_block] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_statement] = STATE(1229), + [sym_try_statement] = STATE(1229), + [sym_with_statement] = STATE(1229), + [sym_break_statement] = STATE(1229), + [sym_continue_statement] = STATE(1229), + [sym_debugger_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_throw_statement] = STATE(1229), + [sym_empty_statement] = STATE(1229), + [sym_labeled_statement] = STATE(1229), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2629), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1450), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1450), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1450), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6741), + [sym_string] = STATE(3280), + [sym_comment] = STATE(78), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1450), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1450), + [sym_abstract_class_declaration] = STATE(1450), + [sym_module] = STATE(1450), + [sym_internal_module] = STATE(370), + [sym_import_alias] = STATE(1450), + [sym_interface_declaration] = STATE(1450), + [sym_enum_declaration] = STATE(1450), + [sym_type_alias_declaration] = STATE(1450), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4658), + [sym_identifier] = ACTIONS(335), + [anon_sym_export] = ACTIONS(337), + [anon_sym_type] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_try] = ACTIONS(367), + [anon_sym_break] = ACTIONS(369), + [anon_sym_continue] = ACTIONS(371), + [anon_sym_debugger] = ACTIONS(373), + [anon_sym_return] = ACTIONS(375), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_SEMI] = ACTIONS(379), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), + [anon_sym_new] = ACTIONS(387), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -40342,107 +40487,266 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(389), + [anon_sym_readonly] = ACTIONS(389), + [anon_sym_get] = ACTIONS(389), + [anon_sym_set] = ACTIONS(389), + [anon_sym_declare] = ACTIONS(391), + [anon_sym_public] = ACTIONS(389), + [anon_sym_private] = ACTIONS(389), + [anon_sym_protected] = ACTIONS(389), + [anon_sym_override] = ACTIONS(389), + [anon_sym_module] = ACTIONS(393), + [anon_sym_any] = ACTIONS(389), + [anon_sym_number] = ACTIONS(389), + [anon_sym_boolean] = ACTIONS(389), + [anon_sym_string] = ACTIONS(389), + [anon_sym_symbol] = ACTIONS(389), + [anon_sym_object] = ACTIONS(389), + [anon_sym_abstract] = ACTIONS(395), + [anon_sym_interface] = ACTIONS(397), + [anon_sym_enum] = ACTIONS(399), [sym_html_comment] = ACTIONS(5), }, - [76] = { - [sym_export_statement] = STATE(1754), - [sym_declaration] = STATE(1754), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1754), - [sym_expression_statement] = STATE(1754), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1754), - [sym_if_statement] = STATE(1754), - [sym_switch_statement] = STATE(1754), - [sym_for_statement] = STATE(1754), - [sym_for_in_statement] = STATE(1754), - [sym_while_statement] = STATE(1754), - [sym_do_statement] = STATE(1754), - [sym_try_statement] = STATE(1754), - [sym_with_statement] = STATE(1754), - [sym_break_statement] = STATE(1754), - [sym_continue_statement] = STATE(1754), - [sym_debugger_statement] = STATE(1754), - [sym_return_statement] = STATE(1754), - [sym_throw_statement] = STATE(1754), - [sym_empty_statement] = STATE(1754), - [sym_labeled_statement] = STATE(1754), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), - [sym_comment] = STATE(76), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4977), + [79] = { + [sym_export_statement] = STATE(6326), + [sym_declaration] = STATE(6326), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(6326), + [sym_statement] = STATE(6177), + [sym_expression_statement] = STATE(6326), + [sym_variable_declaration] = STATE(6327), + [sym_lexical_declaration] = STATE(6327), + [sym_statement_block] = STATE(6326), + [sym_if_statement] = STATE(6326), + [sym_switch_statement] = STATE(6326), + [sym_for_statement] = STATE(6326), + [sym_for_in_statement] = STATE(6326), + [sym_while_statement] = STATE(6326), + [sym_do_statement] = STATE(6326), + [sym_try_statement] = STATE(6326), + [sym_with_statement] = STATE(6326), + [sym_break_statement] = STATE(6326), + [sym_continue_statement] = STATE(6326), + [sym_debugger_statement] = STATE(6326), + [sym_return_statement] = STATE(6326), + [sym_throw_statement] = STATE(6326), + [sym_empty_statement] = STATE(6326), + [sym_labeled_statement] = STATE(6326), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2566), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(6327), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(6327), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(6327), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6453), + [sym_string] = STATE(3280), + [sym_comment] = STATE(79), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(6327), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(6327), + [sym_abstract_class_declaration] = STATE(6327), + [sym_module] = STATE(6327), + [sym_internal_module] = STATE(3097), + [sym_import_alias] = STATE(6327), + [sym_interface_declaration] = STATE(6327), + [sym_enum_declaration] = STATE(6327), + [sym_type_alias_declaration] = STATE(6327), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4691), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(830), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(836), + [anon_sym_with] = ACTIONS(838), + [anon_sym_var] = ACTIONS(840), + [anon_sym_let] = ACTIONS(842), + [anon_sym_const] = ACTIONS(844), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(846), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(852), + [anon_sym_do] = ACTIONS(854), + [anon_sym_try] = ACTIONS(856), + [anon_sym_break] = ACTIONS(858), + [anon_sym_continue] = ACTIONS(860), + [anon_sym_debugger] = ACTIONS(862), + [anon_sym_return] = ACTIONS(864), + [anon_sym_throw] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(876), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(878), + [anon_sym_readonly] = ACTIONS(878), + [anon_sym_get] = ACTIONS(878), + [anon_sym_set] = ACTIONS(878), + [anon_sym_declare] = ACTIONS(880), + [anon_sym_public] = ACTIONS(878), + [anon_sym_private] = ACTIONS(878), + [anon_sym_protected] = ACTIONS(878), + [anon_sym_override] = ACTIONS(878), + [anon_sym_module] = ACTIONS(882), + [anon_sym_any] = ACTIONS(878), + [anon_sym_number] = ACTIONS(878), + [anon_sym_boolean] = ACTIONS(878), + [anon_sym_string] = ACTIONS(878), + [anon_sym_symbol] = ACTIONS(878), + [anon_sym_object] = ACTIONS(878), + [anon_sym_abstract] = ACTIONS(884), + [anon_sym_interface] = ACTIONS(886), + [anon_sym_enum] = ACTIONS(888), + [sym_html_comment] = ACTIONS(5), + }, + [80] = { + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1546), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), + [sym_comment] = STATE(80), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -40520,121 +40824,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [77] = { - [sym_export_statement] = STATE(1051), - [sym_declaration] = STATE(1051), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1051), - [sym_expression_statement] = STATE(1051), - [sym_variable_declaration] = STATE(1205), - [sym_lexical_declaration] = STATE(1205), - [sym_statement_block] = STATE(1051), - [sym_if_statement] = STATE(1051), - [sym_switch_statement] = STATE(1051), - [sym_for_statement] = STATE(1051), - [sym_for_in_statement] = STATE(1051), - [sym_while_statement] = STATE(1051), - [sym_do_statement] = STATE(1051), - [sym_try_statement] = STATE(1051), - [sym_with_statement] = STATE(1051), - [sym_break_statement] = STATE(1051), - [sym_continue_statement] = STATE(1051), - [sym_debugger_statement] = STATE(1051), - [sym_return_statement] = STATE(1051), - [sym_throw_statement] = STATE(1051), - [sym_empty_statement] = STATE(1051), - [sym_labeled_statement] = STATE(1051), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2709), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1205), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1205), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1205), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6460), - [sym_string] = STATE(3425), - [sym_comment] = STATE(77), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1205), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1205), - [sym_abstract_class_declaration] = STATE(1205), - [sym_module] = STATE(1205), - [sym_internal_module] = STATE(307), - [sym_import_alias] = STATE(1205), - [sym_interface_declaration] = STATE(1205), - [sym_enum_declaration] = STATE(1205), - [sym_type_alias_declaration] = STATE(1205), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4829), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), + [81] = { + [sym_export_statement] = STATE(1467), + [sym_declaration] = STATE(1467), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1467), + [sym_statement] = STATE(1429), + [sym_expression_statement] = STATE(1467), + [sym_variable_declaration] = STATE(1468), + [sym_lexical_declaration] = STATE(1468), + [sym_statement_block] = STATE(1467), + [sym_if_statement] = STATE(1467), + [sym_switch_statement] = STATE(1467), + [sym_for_statement] = STATE(1467), + [sym_for_in_statement] = STATE(1467), + [sym_while_statement] = STATE(1467), + [sym_do_statement] = STATE(1467), + [sym_try_statement] = STATE(1467), + [sym_with_statement] = STATE(1467), + [sym_break_statement] = STATE(1467), + [sym_continue_statement] = STATE(1467), + [sym_debugger_statement] = STATE(1467), + [sym_return_statement] = STATE(1467), + [sym_throw_statement] = STATE(1467), + [sym_empty_statement] = STATE(1467), + [sym_labeled_statement] = STATE(1467), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2600), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1468), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1468), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1468), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6356), + [sym_string] = STATE(3280), + [sym_comment] = STATE(81), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1468), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1468), + [sym_abstract_class_declaration] = STATE(1468), + [sym_module] = STATE(1468), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1468), + [sym_interface_declaration] = STATE(1468), + [sym_enum_declaration] = STATE(1468), + [sym_type_alias_declaration] = STATE(1468), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4817), + [sym_identifier] = ACTIONS(762), + [anon_sym_export] = ACTIONS(764), + [anon_sym_type] = ACTIONS(766), + [anon_sym_namespace] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(770), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), + [anon_sym_import] = ACTIONS(772), + [anon_sym_with] = ACTIONS(774), + [anon_sym_var] = ACTIONS(776), + [anon_sym_let] = ACTIONS(778), + [anon_sym_const] = ACTIONS(780), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), + [anon_sym_if] = ACTIONS(782), + [anon_sym_switch] = ACTIONS(784), + [anon_sym_for] = ACTIONS(786), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(790), + [anon_sym_try] = ACTIONS(792), + [anon_sym_break] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(796), + [anon_sym_debugger] = ACTIONS(798), + [anon_sym_return] = ACTIONS(800), + [anon_sym_throw] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(804), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(806), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(810), + [anon_sym_new] = ACTIONS(812), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -40656,107 +40961,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(814), + [anon_sym_readonly] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(816), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_override] = ACTIONS(814), + [anon_sym_module] = ACTIONS(818), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [anon_sym_object] = ACTIONS(814), + [anon_sym_abstract] = ACTIONS(820), + [anon_sym_interface] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(824), [sym_html_comment] = ACTIONS(5), }, - [78] = { - [sym_export_statement] = STATE(974), - [sym_declaration] = STATE(974), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(974), - [sym_expression_statement] = STATE(974), - [sym_variable_declaration] = STATE(1205), - [sym_lexical_declaration] = STATE(1205), - [sym_statement_block] = STATE(974), - [sym_if_statement] = STATE(974), - [sym_switch_statement] = STATE(974), - [sym_for_statement] = STATE(974), - [sym_for_in_statement] = STATE(974), - [sym_while_statement] = STATE(974), - [sym_do_statement] = STATE(974), - [sym_try_statement] = STATE(974), - [sym_with_statement] = STATE(974), - [sym_break_statement] = STATE(974), - [sym_continue_statement] = STATE(974), - [sym_debugger_statement] = STATE(974), - [sym_return_statement] = STATE(974), - [sym_throw_statement] = STATE(974), - [sym_empty_statement] = STATE(974), - [sym_labeled_statement] = STATE(974), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2709), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1205), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1205), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1205), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6460), - [sym_string] = STATE(3425), - [sym_comment] = STATE(78), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1205), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1205), - [sym_abstract_class_declaration] = STATE(1205), - [sym_module] = STATE(1205), - [sym_internal_module] = STATE(307), - [sym_import_alias] = STATE(1205), - [sym_interface_declaration] = STATE(1205), - [sym_enum_declaration] = STATE(1205), - [sym_type_alias_declaration] = STATE(1205), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4829), + [82] = { + [sym_export_statement] = STATE(6326), + [sym_declaration] = STATE(6326), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(6326), + [sym_statement] = STATE(6362), + [sym_expression_statement] = STATE(6326), + [sym_variable_declaration] = STATE(6327), + [sym_lexical_declaration] = STATE(6327), + [sym_statement_block] = STATE(6326), + [sym_if_statement] = STATE(6326), + [sym_switch_statement] = STATE(6326), + [sym_for_statement] = STATE(6326), + [sym_for_in_statement] = STATE(6326), + [sym_while_statement] = STATE(6326), + [sym_do_statement] = STATE(6326), + [sym_try_statement] = STATE(6326), + [sym_with_statement] = STATE(6326), + [sym_break_statement] = STATE(6326), + [sym_continue_statement] = STATE(6326), + [sym_debugger_statement] = STATE(6326), + [sym_return_statement] = STATE(6326), + [sym_throw_statement] = STATE(6326), + [sym_empty_statement] = STATE(6326), + [sym_labeled_statement] = STATE(6326), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2566), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(6327), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(6327), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(6327), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6453), + [sym_string] = STATE(3280), + [sym_comment] = STATE(82), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(6327), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(6327), + [sym_abstract_class_declaration] = STATE(6327), + [sym_module] = STATE(6327), + [sym_internal_module] = STATE(3097), + [sym_import_alias] = STATE(6327), + [sym_interface_declaration] = STATE(6327), + [sym_enum_declaration] = STATE(6327), + [sym_type_alias_declaration] = STATE(6327), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4691), [sym_identifier] = ACTIONS(826), [anon_sym_export] = ACTIONS(828), [anon_sym_type] = ACTIONS(830), @@ -40834,243 +41140,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [79] = { - [sym_export_statement] = STATE(1494), - [sym_declaration] = STATE(1494), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1494), - [sym_expression_statement] = STATE(1494), - [sym_variable_declaration] = STATE(1318), - [sym_lexical_declaration] = STATE(1318), - [sym_statement_block] = STATE(1494), - [sym_if_statement] = STATE(1494), - [sym_switch_statement] = STATE(1494), - [sym_for_statement] = STATE(1494), - [sym_for_in_statement] = STATE(1494), - [sym_while_statement] = STATE(1494), - [sym_do_statement] = STATE(1494), - [sym_try_statement] = STATE(1494), - [sym_with_statement] = STATE(1494), - [sym_break_statement] = STATE(1494), - [sym_continue_statement] = STATE(1494), - [sym_debugger_statement] = STATE(1494), - [sym_return_statement] = STATE(1494), - [sym_throw_statement] = STATE(1494), - [sym_empty_statement] = STATE(1494), - [sym_labeled_statement] = STATE(1494), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2744), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1318), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1318), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1318), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6589), - [sym_string] = STATE(3425), - [sym_comment] = STATE(79), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1318), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1318), - [sym_abstract_class_declaration] = STATE(1318), - [sym_module] = STATE(1318), - [sym_internal_module] = STATE(339), - [sym_import_alias] = STATE(1318), - [sym_interface_declaration] = STATE(1318), - [sym_enum_declaration] = STATE(1318), - [sym_type_alias_declaration] = STATE(1318), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4875), - [sym_identifier] = ACTIONS(335), - [anon_sym_export] = ACTIONS(337), - [anon_sym_type] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(347), - [anon_sym_with] = ACTIONS(349), - [anon_sym_var] = ACTIONS(351), - [anon_sym_let] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(357), - [anon_sym_switch] = ACTIONS(359), - [anon_sym_for] = ACTIONS(361), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_try] = ACTIONS(367), - [anon_sym_break] = ACTIONS(369), - [anon_sym_continue] = ACTIONS(371), - [anon_sym_debugger] = ACTIONS(373), - [anon_sym_return] = ACTIONS(375), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(379), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(389), - [anon_sym_readonly] = ACTIONS(389), - [anon_sym_get] = ACTIONS(389), - [anon_sym_set] = ACTIONS(389), - [anon_sym_declare] = ACTIONS(391), - [anon_sym_public] = ACTIONS(389), - [anon_sym_private] = ACTIONS(389), - [anon_sym_protected] = ACTIONS(389), - [anon_sym_override] = ACTIONS(389), - [anon_sym_module] = ACTIONS(393), - [anon_sym_any] = ACTIONS(389), - [anon_sym_number] = ACTIONS(389), - [anon_sym_boolean] = ACTIONS(389), - [anon_sym_string] = ACTIONS(389), - [anon_sym_symbol] = ACTIONS(389), - [anon_sym_object] = ACTIONS(389), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), - [sym_html_comment] = ACTIONS(5), - }, - [80] = { - [sym_export_statement] = STATE(1028), - [sym_declaration] = STATE(1028), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1028), - [sym_expression_statement] = STATE(1028), - [sym_variable_declaration] = STATE(1205), - [sym_lexical_declaration] = STATE(1205), - [sym_statement_block] = STATE(1028), - [sym_if_statement] = STATE(1028), - [sym_switch_statement] = STATE(1028), - [sym_for_statement] = STATE(1028), - [sym_for_in_statement] = STATE(1028), - [sym_while_statement] = STATE(1028), - [sym_do_statement] = STATE(1028), - [sym_try_statement] = STATE(1028), - [sym_with_statement] = STATE(1028), - [sym_break_statement] = STATE(1028), - [sym_continue_statement] = STATE(1028), - [sym_debugger_statement] = STATE(1028), - [sym_return_statement] = STATE(1028), - [sym_throw_statement] = STATE(1028), - [sym_empty_statement] = STATE(1028), - [sym_labeled_statement] = STATE(1028), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2709), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1205), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1205), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1205), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6460), - [sym_string] = STATE(3425), - [sym_comment] = STATE(80), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1205), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1205), - [sym_abstract_class_declaration] = STATE(1205), - [sym_module] = STATE(1205), - [sym_internal_module] = STATE(307), - [sym_import_alias] = STATE(1205), - [sym_interface_declaration] = STATE(1205), - [sym_enum_declaration] = STATE(1205), - [sym_type_alias_declaration] = STATE(1205), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4829), + [83] = { + [sym_export_statement] = STATE(6326), + [sym_declaration] = STATE(6326), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(6326), + [sym_statement] = STATE(7302), + [sym_expression_statement] = STATE(6326), + [sym_variable_declaration] = STATE(6327), + [sym_lexical_declaration] = STATE(6327), + [sym_statement_block] = STATE(6326), + [sym_if_statement] = STATE(6326), + [sym_switch_statement] = STATE(6326), + [sym_for_statement] = STATE(6326), + [sym_for_in_statement] = STATE(6326), + [sym_while_statement] = STATE(6326), + [sym_do_statement] = STATE(6326), + [sym_try_statement] = STATE(6326), + [sym_with_statement] = STATE(6326), + [sym_break_statement] = STATE(6326), + [sym_continue_statement] = STATE(6326), + [sym_debugger_statement] = STATE(6326), + [sym_return_statement] = STATE(6326), + [sym_throw_statement] = STATE(6326), + [sym_empty_statement] = STATE(6326), + [sym_labeled_statement] = STATE(6326), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2566), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(6327), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(6327), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(6327), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6453), + [sym_string] = STATE(3280), + [sym_comment] = STATE(83), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(6327), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(6327), + [sym_abstract_class_declaration] = STATE(6327), + [sym_module] = STATE(6327), + [sym_internal_module] = STATE(3097), + [sym_import_alias] = STATE(6327), + [sym_interface_declaration] = STATE(6327), + [sym_enum_declaration] = STATE(6327), + [sym_type_alias_declaration] = STATE(6327), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4691), [sym_identifier] = ACTIONS(826), [anon_sym_export] = ACTIONS(828), [anon_sym_type] = ACTIONS(830), @@ -41148,278 +41298,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [81] = { - [sym_export_statement] = STATE(1751), - [sym_declaration] = STATE(1708), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1709), - [sym_expression_statement] = STATE(1710), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1711), - [sym_if_statement] = STATE(1712), - [sym_switch_statement] = STATE(1713), - [sym_for_statement] = STATE(1720), - [sym_for_in_statement] = STATE(1721), - [sym_while_statement] = STATE(1728), - [sym_do_statement] = STATE(1729), - [sym_try_statement] = STATE(1734), - [sym_with_statement] = STATE(1741), - [sym_break_statement] = STATE(1743), - [sym_continue_statement] = STATE(1744), - [sym_debugger_statement] = STATE(1745), - [sym_return_statement] = STATE(1746), - [sym_throw_statement] = STATE(1747), - [sym_empty_statement] = STATE(1748), - [sym_labeled_statement] = STATE(1749), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), - [sym_comment] = STATE(81), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4977), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), - [sym_html_comment] = ACTIONS(5), - }, - [82] = { - [sym_export_statement] = STATE(1633), - [sym_declaration] = STATE(1633), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1633), - [sym_expression_statement] = STATE(1633), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1633), - [sym_if_statement] = STATE(1633), - [sym_switch_statement] = STATE(1633), - [sym_for_statement] = STATE(1633), - [sym_for_in_statement] = STATE(1633), - [sym_while_statement] = STATE(1633), - [sym_do_statement] = STATE(1633), - [sym_try_statement] = STATE(1633), - [sym_with_statement] = STATE(1633), - [sym_break_statement] = STATE(1633), - [sym_continue_statement] = STATE(1633), - [sym_debugger_statement] = STATE(1633), - [sym_return_statement] = STATE(1633), - [sym_throw_statement] = STATE(1633), - [sym_empty_statement] = STATE(1633), - [sym_labeled_statement] = STATE(1633), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), - [sym_comment] = STATE(82), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4977), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [84] = { + [sym_export_statement] = STATE(1190), + [sym_declaration] = STATE(1190), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1190), + [sym_statement] = STATE(1119), + [sym_expression_statement] = STATE(1190), + [sym_variable_declaration] = STATE(1197), + [sym_lexical_declaration] = STATE(1197), + [sym_statement_block] = STATE(1190), + [sym_if_statement] = STATE(1190), + [sym_switch_statement] = STATE(1190), + [sym_for_statement] = STATE(1190), + [sym_for_in_statement] = STATE(1190), + [sym_while_statement] = STATE(1190), + [sym_do_statement] = STATE(1190), + [sym_try_statement] = STATE(1190), + [sym_with_statement] = STATE(1190), + [sym_break_statement] = STATE(1190), + [sym_continue_statement] = STATE(1190), + [sym_debugger_statement] = STATE(1190), + [sym_return_statement] = STATE(1190), + [sym_throw_statement] = STATE(1190), + [sym_empty_statement] = STATE(1190), + [sym_labeled_statement] = STATE(1190), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2583), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1197), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1197), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1197), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6349), + [sym_string] = STATE(3280), + [sym_comment] = STATE(84), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1197), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1197), + [sym_abstract_class_declaration] = STATE(1197), + [sym_module] = STATE(1197), + [sym_internal_module] = STATE(310), + [sym_import_alias] = STATE(1197), + [sym_interface_declaration] = STATE(1197), + [sym_enum_declaration] = STATE(1197), + [sym_type_alias_declaration] = STATE(1197), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4758), + [sym_identifier] = ACTIONS(890), + [anon_sym_export] = ACTIONS(892), + [anon_sym_type] = ACTIONS(894), + [anon_sym_namespace] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), + [anon_sym_import] = ACTIONS(900), + [anon_sym_with] = ACTIONS(902), + [anon_sym_var] = ACTIONS(904), + [anon_sym_let] = ACTIONS(906), + [anon_sym_const] = ACTIONS(908), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(912), + [anon_sym_for] = ACTIONS(914), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_while] = ACTIONS(916), + [anon_sym_do] = ACTIONS(918), + [anon_sym_try] = ACTIONS(920), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_debugger] = ACTIONS(926), + [anon_sym_return] = ACTIONS(928), + [anon_sym_throw] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(932), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(934), + [anon_sym_async] = ACTIONS(936), + [anon_sym_function] = ACTIONS(938), + [anon_sym_new] = ACTIONS(940), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -41441,107 +41435,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_override] = ACTIONS(942), + [anon_sym_module] = ACTIONS(946), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), + [anon_sym_object] = ACTIONS(942), + [anon_sym_abstract] = ACTIONS(948), + [anon_sym_interface] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(952), [sym_html_comment] = ACTIONS(5), }, - [83] = { - [sym_export_statement] = STATE(1460), - [sym_declaration] = STATE(1462), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1463), - [sym_expression_statement] = STATE(1464), - [sym_variable_declaration] = STATE(1318), - [sym_lexical_declaration] = STATE(1318), - [sym_statement_block] = STATE(1465), - [sym_if_statement] = STATE(1466), - [sym_switch_statement] = STATE(1467), - [sym_for_statement] = STATE(1469), - [sym_for_in_statement] = STATE(1474), - [sym_while_statement] = STATE(1475), - [sym_do_statement] = STATE(1476), - [sym_try_statement] = STATE(1478), - [sym_with_statement] = STATE(1479), - [sym_break_statement] = STATE(1482), - [sym_continue_statement] = STATE(1484), - [sym_debugger_statement] = STATE(1487), - [sym_return_statement] = STATE(1488), - [sym_throw_statement] = STATE(1489), - [sym_empty_statement] = STATE(1490), - [sym_labeled_statement] = STATE(1492), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2744), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1318), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1318), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1318), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6589), - [sym_string] = STATE(3425), - [sym_comment] = STATE(83), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1318), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1318), - [sym_abstract_class_declaration] = STATE(1318), - [sym_module] = STATE(1318), - [sym_internal_module] = STATE(339), - [sym_import_alias] = STATE(1318), - [sym_interface_declaration] = STATE(1318), - [sym_enum_declaration] = STATE(1318), - [sym_type_alias_declaration] = STATE(1318), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4875), + [85] = { + [sym_export_statement] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1229), + [sym_statement] = STATE(1470), + [sym_expression_statement] = STATE(1229), + [sym_variable_declaration] = STATE(1450), + [sym_lexical_declaration] = STATE(1450), + [sym_statement_block] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_statement] = STATE(1229), + [sym_try_statement] = STATE(1229), + [sym_with_statement] = STATE(1229), + [sym_break_statement] = STATE(1229), + [sym_continue_statement] = STATE(1229), + [sym_debugger_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_throw_statement] = STATE(1229), + [sym_empty_statement] = STATE(1229), + [sym_labeled_statement] = STATE(1229), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2629), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1450), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1450), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1450), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6741), + [sym_string] = STATE(3280), + [sym_comment] = STATE(85), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1450), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1450), + [sym_abstract_class_declaration] = STATE(1450), + [sym_module] = STATE(1450), + [sym_internal_module] = STATE(370), + [sym_import_alias] = STATE(1450), + [sym_interface_declaration] = STATE(1450), + [sym_enum_declaration] = STATE(1450), + [sym_type_alias_declaration] = STATE(1450), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4658), [sym_identifier] = ACTIONS(335), [anon_sym_export] = ACTIONS(337), [anon_sym_type] = ACTIONS(341), @@ -41619,243 +41614,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(399), [sym_html_comment] = ACTIONS(5), }, - [84] = { - [sym_export_statement] = STATE(7158), - [sym_declaration] = STATE(7158), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(7158), - [sym_expression_statement] = STATE(7158), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(7158), - [sym_if_statement] = STATE(7158), - [sym_switch_statement] = STATE(7158), - [sym_for_statement] = STATE(7158), - [sym_for_in_statement] = STATE(7158), - [sym_while_statement] = STATE(7158), - [sym_do_statement] = STATE(7158), - [sym_try_statement] = STATE(7158), - [sym_with_statement] = STATE(7158), - [sym_break_statement] = STATE(7158), - [sym_continue_statement] = STATE(7158), - [sym_debugger_statement] = STATE(7158), - [sym_return_statement] = STATE(7158), - [sym_throw_statement] = STATE(7158), - [sym_empty_statement] = STATE(7158), - [sym_labeled_statement] = STATE(7158), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2687), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6490), - [sym_string] = STATE(3425), - [sym_comment] = STATE(84), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(6924), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3268), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4923), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), - [sym_html_comment] = ACTIONS(5), - }, - [85] = { - [sym_export_statement] = STATE(1622), - [sym_declaration] = STATE(1622), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1622), - [sym_expression_statement] = STATE(1622), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1622), - [sym_if_statement] = STATE(1622), - [sym_switch_statement] = STATE(1622), - [sym_for_statement] = STATE(1622), - [sym_for_in_statement] = STATE(1622), - [sym_while_statement] = STATE(1622), - [sym_do_statement] = STATE(1622), - [sym_try_statement] = STATE(1622), - [sym_with_statement] = STATE(1622), - [sym_break_statement] = STATE(1622), - [sym_continue_statement] = STATE(1622), - [sym_debugger_statement] = STATE(1622), - [sym_return_statement] = STATE(1622), - [sym_throw_statement] = STATE(1622), - [sym_empty_statement] = STATE(1622), - [sym_labeled_statement] = STATE(1622), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), - [sym_comment] = STATE(85), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4977), + [86] = { + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1559), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), + [sym_comment] = STATE(86), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -41933,121 +41772,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [86] = { - [sym_export_statement] = STATE(1686), - [sym_declaration] = STATE(1686), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1686), - [sym_expression_statement] = STATE(1686), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1686), - [sym_if_statement] = STATE(1686), - [sym_switch_statement] = STATE(1686), - [sym_for_statement] = STATE(1686), - [sym_for_in_statement] = STATE(1686), - [sym_while_statement] = STATE(1686), - [sym_do_statement] = STATE(1686), - [sym_try_statement] = STATE(1686), - [sym_with_statement] = STATE(1686), - [sym_break_statement] = STATE(1686), - [sym_continue_statement] = STATE(1686), - [sym_debugger_statement] = STATE(1686), - [sym_return_statement] = STATE(1686), - [sym_throw_statement] = STATE(1686), - [sym_empty_statement] = STATE(1686), - [sym_labeled_statement] = STATE(1686), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), - [sym_comment] = STATE(86), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4977), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [87] = { + [sym_export_statement] = STATE(1190), + [sym_declaration] = STATE(1190), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1190), + [sym_statement] = STATE(1025), + [sym_expression_statement] = STATE(1190), + [sym_variable_declaration] = STATE(1197), + [sym_lexical_declaration] = STATE(1197), + [sym_statement_block] = STATE(1190), + [sym_if_statement] = STATE(1190), + [sym_switch_statement] = STATE(1190), + [sym_for_statement] = STATE(1190), + [sym_for_in_statement] = STATE(1190), + [sym_while_statement] = STATE(1190), + [sym_do_statement] = STATE(1190), + [sym_try_statement] = STATE(1190), + [sym_with_statement] = STATE(1190), + [sym_break_statement] = STATE(1190), + [sym_continue_statement] = STATE(1190), + [sym_debugger_statement] = STATE(1190), + [sym_return_statement] = STATE(1190), + [sym_throw_statement] = STATE(1190), + [sym_empty_statement] = STATE(1190), + [sym_labeled_statement] = STATE(1190), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2583), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1197), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1197), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1197), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6349), + [sym_string] = STATE(3280), + [sym_comment] = STATE(87), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1197), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1197), + [sym_abstract_class_declaration] = STATE(1197), + [sym_module] = STATE(1197), + [sym_internal_module] = STATE(310), + [sym_import_alias] = STATE(1197), + [sym_interface_declaration] = STATE(1197), + [sym_enum_declaration] = STATE(1197), + [sym_type_alias_declaration] = STATE(1197), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4758), + [sym_identifier] = ACTIONS(890), + [anon_sym_export] = ACTIONS(892), + [anon_sym_type] = ACTIONS(894), + [anon_sym_namespace] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), + [anon_sym_import] = ACTIONS(900), + [anon_sym_with] = ACTIONS(902), + [anon_sym_var] = ACTIONS(904), + [anon_sym_let] = ACTIONS(906), + [anon_sym_const] = ACTIONS(908), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(912), + [anon_sym_for] = ACTIONS(914), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_while] = ACTIONS(916), + [anon_sym_do] = ACTIONS(918), + [anon_sym_try] = ACTIONS(920), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_debugger] = ACTIONS(926), + [anon_sym_return] = ACTIONS(928), + [anon_sym_throw] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(932), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(934), + [anon_sym_async] = ACTIONS(936), + [anon_sym_function] = ACTIONS(938), + [anon_sym_new] = ACTIONS(940), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -42069,107 +41909,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_override] = ACTIONS(942), + [anon_sym_module] = ACTIONS(946), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), + [anon_sym_object] = ACTIONS(942), + [anon_sym_abstract] = ACTIONS(948), + [anon_sym_interface] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(952), [sym_html_comment] = ACTIONS(5), }, - [87] = { - [sym_export_statement] = STATE(1115), - [sym_declaration] = STATE(1115), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1115), - [sym_expression_statement] = STATE(1115), - [sym_variable_declaration] = STATE(1364), - [sym_lexical_declaration] = STATE(1364), - [sym_statement_block] = STATE(1115), - [sym_if_statement] = STATE(1115), - [sym_switch_statement] = STATE(1115), - [sym_for_statement] = STATE(1115), - [sym_for_in_statement] = STATE(1115), - [sym_while_statement] = STATE(1115), - [sym_do_statement] = STATE(1115), - [sym_try_statement] = STATE(1115), - [sym_with_statement] = STATE(1115), - [sym_break_statement] = STATE(1115), - [sym_continue_statement] = STATE(1115), - [sym_debugger_statement] = STATE(1115), - [sym_return_statement] = STATE(1115), - [sym_throw_statement] = STATE(1115), - [sym_empty_statement] = STATE(1115), - [sym_labeled_statement] = STATE(1115), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2637), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1364), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1364), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1364), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6906), - [sym_string] = STATE(3425), - [sym_comment] = STATE(87), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1364), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1364), - [sym_abstract_class_declaration] = STATE(1364), - [sym_module] = STATE(1364), - [sym_internal_module] = STATE(367), - [sym_import_alias] = STATE(1364), - [sym_interface_declaration] = STATE(1364), - [sym_enum_declaration] = STATE(1364), - [sym_type_alias_declaration] = STATE(1364), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4917), + [88] = { + [sym_export_statement] = STATE(1190), + [sym_declaration] = STATE(1190), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1190), + [sym_statement] = STATE(1152), + [sym_expression_statement] = STATE(1190), + [sym_variable_declaration] = STATE(1197), + [sym_lexical_declaration] = STATE(1197), + [sym_statement_block] = STATE(1190), + [sym_if_statement] = STATE(1190), + [sym_switch_statement] = STATE(1190), + [sym_for_statement] = STATE(1190), + [sym_for_in_statement] = STATE(1190), + [sym_while_statement] = STATE(1190), + [sym_do_statement] = STATE(1190), + [sym_try_statement] = STATE(1190), + [sym_with_statement] = STATE(1190), + [sym_break_statement] = STATE(1190), + [sym_continue_statement] = STATE(1190), + [sym_debugger_statement] = STATE(1190), + [sym_return_statement] = STATE(1190), + [sym_throw_statement] = STATE(1190), + [sym_empty_statement] = STATE(1190), + [sym_labeled_statement] = STATE(1190), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2583), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1197), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1197), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1197), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6349), + [sym_string] = STATE(3280), + [sym_comment] = STATE(88), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1197), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1197), + [sym_abstract_class_declaration] = STATE(1197), + [sym_module] = STATE(1197), + [sym_internal_module] = STATE(310), + [sym_import_alias] = STATE(1197), + [sym_interface_declaration] = STATE(1197), + [sym_enum_declaration] = STATE(1197), + [sym_type_alias_declaration] = STATE(1197), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4758), [sym_identifier] = ACTIONS(890), [anon_sym_export] = ACTIONS(892), [anon_sym_type] = ACTIONS(894), @@ -42247,86 +42088,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(952), [sym_html_comment] = ACTIONS(5), }, - [88] = { - [sym_export_statement] = STATE(1703), - [sym_declaration] = STATE(1688), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1655), - [sym_expression_statement] = STATE(1662), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1666), - [sym_if_statement] = STATE(1680), - [sym_switch_statement] = STATE(1706), - [sym_for_statement] = STATE(1718), - [sym_for_in_statement] = STATE(1740), - [sym_while_statement] = STATE(1742), - [sym_do_statement] = STATE(1750), - [sym_try_statement] = STATE(1777), - [sym_with_statement] = STATE(1774), - [sym_break_statement] = STATE(1691), - [sym_continue_statement] = STATE(1771), - [sym_debugger_statement] = STATE(1760), - [sym_return_statement] = STATE(1726), - [sym_throw_statement] = STATE(1684), - [sym_empty_statement] = STATE(1679), - [sym_labeled_statement] = STATE(1674), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), - [sym_comment] = STATE(88), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4977), + [89] = { + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1542), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), + [sym_comment] = STATE(89), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -42404,86 +42246,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [89] = { - [sym_export_statement] = STATE(6577), - [sym_declaration] = STATE(6577), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(6577), - [sym_expression_statement] = STATE(6577), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6577), - [sym_if_statement] = STATE(6577), - [sym_switch_statement] = STATE(6577), - [sym_for_statement] = STATE(6577), - [sym_for_in_statement] = STATE(6577), - [sym_while_statement] = STATE(6577), - [sym_do_statement] = STATE(6577), - [sym_try_statement] = STATE(6577), - [sym_with_statement] = STATE(6577), - [sym_break_statement] = STATE(6577), - [sym_continue_statement] = STATE(6577), - [sym_debugger_statement] = STATE(6577), - [sym_return_statement] = STATE(6577), - [sym_throw_statement] = STATE(6577), - [sym_empty_statement] = STATE(6577), - [sym_labeled_statement] = STATE(6577), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2687), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6490), - [sym_string] = STATE(3425), - [sym_comment] = STATE(89), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(6924), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3268), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4923), + [90] = { + [sym_export_statement] = STATE(6326), + [sym_declaration] = STATE(6326), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(6326), + [sym_statement] = STATE(6975), + [sym_expression_statement] = STATE(6326), + [sym_variable_declaration] = STATE(6327), + [sym_lexical_declaration] = STATE(6327), + [sym_statement_block] = STATE(6326), + [sym_if_statement] = STATE(6326), + [sym_switch_statement] = STATE(6326), + [sym_for_statement] = STATE(6326), + [sym_for_in_statement] = STATE(6326), + [sym_while_statement] = STATE(6326), + [sym_do_statement] = STATE(6326), + [sym_try_statement] = STATE(6326), + [sym_with_statement] = STATE(6326), + [sym_break_statement] = STATE(6326), + [sym_continue_statement] = STATE(6326), + [sym_debugger_statement] = STATE(6326), + [sym_return_statement] = STATE(6326), + [sym_throw_statement] = STATE(6326), + [sym_empty_statement] = STATE(6326), + [sym_labeled_statement] = STATE(6326), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2566), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(6327), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(6327), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(6327), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6453), + [sym_string] = STATE(3280), + [sym_comment] = STATE(90), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(6327), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(6327), + [sym_abstract_class_declaration] = STATE(6327), + [sym_module] = STATE(6327), + [sym_internal_module] = STATE(3097), + [sym_import_alias] = STATE(6327), + [sym_interface_declaration] = STATE(6327), + [sym_enum_declaration] = STATE(6327), + [sym_type_alias_declaration] = STATE(6327), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4691), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(830), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(836), + [anon_sym_with] = ACTIONS(838), + [anon_sym_var] = ACTIONS(840), + [anon_sym_let] = ACTIONS(842), + [anon_sym_const] = ACTIONS(844), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(846), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(852), + [anon_sym_do] = ACTIONS(854), + [anon_sym_try] = ACTIONS(856), + [anon_sym_break] = ACTIONS(858), + [anon_sym_continue] = ACTIONS(860), + [anon_sym_debugger] = ACTIONS(862), + [anon_sym_return] = ACTIONS(864), + [anon_sym_throw] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(876), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(878), + [anon_sym_readonly] = ACTIONS(878), + [anon_sym_get] = ACTIONS(878), + [anon_sym_set] = ACTIONS(878), + [anon_sym_declare] = ACTIONS(880), + [anon_sym_public] = ACTIONS(878), + [anon_sym_private] = ACTIONS(878), + [anon_sym_protected] = ACTIONS(878), + [anon_sym_override] = ACTIONS(878), + [anon_sym_module] = ACTIONS(882), + [anon_sym_any] = ACTIONS(878), + [anon_sym_number] = ACTIONS(878), + [anon_sym_boolean] = ACTIONS(878), + [anon_sym_string] = ACTIONS(878), + [anon_sym_symbol] = ACTIONS(878), + [anon_sym_object] = ACTIONS(878), + [anon_sym_abstract] = ACTIONS(884), + [anon_sym_interface] = ACTIONS(886), + [anon_sym_enum] = ACTIONS(888), + [sym_html_comment] = ACTIONS(5), + }, + [91] = { + [sym_export_statement] = STATE(1467), + [sym_declaration] = STATE(1467), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1467), + [sym_statement] = STATE(1042), + [sym_expression_statement] = STATE(1467), + [sym_variable_declaration] = STATE(1468), + [sym_lexical_declaration] = STATE(1468), + [sym_statement_block] = STATE(1467), + [sym_if_statement] = STATE(1467), + [sym_switch_statement] = STATE(1467), + [sym_for_statement] = STATE(1467), + [sym_for_in_statement] = STATE(1467), + [sym_while_statement] = STATE(1467), + [sym_do_statement] = STATE(1467), + [sym_try_statement] = STATE(1467), + [sym_with_statement] = STATE(1467), + [sym_break_statement] = STATE(1467), + [sym_continue_statement] = STATE(1467), + [sym_debugger_statement] = STATE(1467), + [sym_return_statement] = STATE(1467), + [sym_throw_statement] = STATE(1467), + [sym_empty_statement] = STATE(1467), + [sym_labeled_statement] = STATE(1467), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2600), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1468), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1468), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1468), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6356), + [sym_string] = STATE(3280), + [sym_comment] = STATE(91), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1468), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1468), + [sym_abstract_class_declaration] = STATE(1468), + [sym_module] = STATE(1468), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1468), + [sym_interface_declaration] = STATE(1468), + [sym_enum_declaration] = STATE(1468), + [sym_type_alias_declaration] = STATE(1468), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4817), [sym_identifier] = ACTIONS(762), [anon_sym_export] = ACTIONS(764), [anon_sym_type] = ACTIONS(766), @@ -42561,400 +42562,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(824), [sym_html_comment] = ACTIONS(5), }, - [90] = { - [sym_export_statement] = STATE(1452), - [sym_declaration] = STATE(1452), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1452), - [sym_expression_statement] = STATE(1452), - [sym_variable_declaration] = STATE(1318), - [sym_lexical_declaration] = STATE(1318), - [sym_statement_block] = STATE(1452), - [sym_if_statement] = STATE(1452), - [sym_switch_statement] = STATE(1452), - [sym_for_statement] = STATE(1452), - [sym_for_in_statement] = STATE(1452), - [sym_while_statement] = STATE(1452), - [sym_do_statement] = STATE(1452), - [sym_try_statement] = STATE(1452), - [sym_with_statement] = STATE(1452), - [sym_break_statement] = STATE(1452), - [sym_continue_statement] = STATE(1452), - [sym_debugger_statement] = STATE(1452), - [sym_return_statement] = STATE(1452), - [sym_throw_statement] = STATE(1452), - [sym_empty_statement] = STATE(1452), - [sym_labeled_statement] = STATE(1452), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2744), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1318), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1318), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1318), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6589), - [sym_string] = STATE(3425), - [sym_comment] = STATE(90), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1318), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1318), - [sym_abstract_class_declaration] = STATE(1318), - [sym_module] = STATE(1318), - [sym_internal_module] = STATE(339), - [sym_import_alias] = STATE(1318), - [sym_interface_declaration] = STATE(1318), - [sym_enum_declaration] = STATE(1318), - [sym_type_alias_declaration] = STATE(1318), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4875), - [sym_identifier] = ACTIONS(335), - [anon_sym_export] = ACTIONS(337), - [anon_sym_type] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(347), - [anon_sym_with] = ACTIONS(349), - [anon_sym_var] = ACTIONS(351), - [anon_sym_let] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(357), - [anon_sym_switch] = ACTIONS(359), - [anon_sym_for] = ACTIONS(361), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_try] = ACTIONS(367), - [anon_sym_break] = ACTIONS(369), - [anon_sym_continue] = ACTIONS(371), - [anon_sym_debugger] = ACTIONS(373), - [anon_sym_return] = ACTIONS(375), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(379), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(389), - [anon_sym_readonly] = ACTIONS(389), - [anon_sym_get] = ACTIONS(389), - [anon_sym_set] = ACTIONS(389), - [anon_sym_declare] = ACTIONS(391), - [anon_sym_public] = ACTIONS(389), - [anon_sym_private] = ACTIONS(389), - [anon_sym_protected] = ACTIONS(389), - [anon_sym_override] = ACTIONS(389), - [anon_sym_module] = ACTIONS(393), - [anon_sym_any] = ACTIONS(389), - [anon_sym_number] = ACTIONS(389), - [anon_sym_boolean] = ACTIONS(389), - [anon_sym_string] = ACTIONS(389), - [anon_sym_symbol] = ACTIONS(389), - [anon_sym_object] = ACTIONS(389), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), - [sym_html_comment] = ACTIONS(5), - }, - [91] = { - [sym_export_statement] = STATE(1412), - [sym_declaration] = STATE(1412), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1412), - [sym_expression_statement] = STATE(1412), - [sym_variable_declaration] = STATE(1318), - [sym_lexical_declaration] = STATE(1318), - [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(2263), - [sym_expression] = STATE(2744), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1318), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1318), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1318), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6589), - [sym_string] = STATE(3425), - [sym_comment] = STATE(91), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1318), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1318), - [sym_abstract_class_declaration] = STATE(1318), - [sym_module] = STATE(1318), - [sym_internal_module] = STATE(339), - [sym_import_alias] = STATE(1318), - [sym_interface_declaration] = STATE(1318), - [sym_enum_declaration] = STATE(1318), - [sym_type_alias_declaration] = STATE(1318), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4875), - [sym_identifier] = ACTIONS(335), - [anon_sym_export] = ACTIONS(337), - [anon_sym_type] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_LBRACE] = ACTIONS(345), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(347), - [anon_sym_with] = ACTIONS(349), - [anon_sym_var] = ACTIONS(351), - [anon_sym_let] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(357), - [anon_sym_switch] = ACTIONS(359), - [anon_sym_for] = ACTIONS(361), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_try] = ACTIONS(367), - [anon_sym_break] = ACTIONS(369), - [anon_sym_continue] = ACTIONS(371), - [anon_sym_debugger] = ACTIONS(373), - [anon_sym_return] = ACTIONS(375), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(379), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(389), - [anon_sym_readonly] = ACTIONS(389), - [anon_sym_get] = ACTIONS(389), - [anon_sym_set] = ACTIONS(389), - [anon_sym_declare] = ACTIONS(391), - [anon_sym_public] = ACTIONS(389), - [anon_sym_private] = ACTIONS(389), - [anon_sym_protected] = ACTIONS(389), - [anon_sym_override] = ACTIONS(389), - [anon_sym_module] = ACTIONS(393), - [anon_sym_any] = ACTIONS(389), - [anon_sym_number] = ACTIONS(389), - [anon_sym_boolean] = ACTIONS(389), - [anon_sym_string] = ACTIONS(389), - [anon_sym_symbol] = ACTIONS(389), - [anon_sym_object] = ACTIONS(389), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), - [sym_html_comment] = ACTIONS(5), - }, [92] = { - [sym_export_statement] = STATE(7050), - [sym_declaration] = STATE(7050), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(7050), - [sym_expression_statement] = STATE(7050), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(7050), - [sym_if_statement] = STATE(7050), - [sym_switch_statement] = STATE(7050), - [sym_for_statement] = STATE(7050), - [sym_for_in_statement] = STATE(7050), - [sym_while_statement] = STATE(7050), - [sym_do_statement] = STATE(7050), - [sym_try_statement] = STATE(7050), - [sym_with_statement] = STATE(7050), - [sym_break_statement] = STATE(7050), - [sym_continue_statement] = STATE(7050), - [sym_debugger_statement] = STATE(7050), - [sym_return_statement] = STATE(7050), - [sym_throw_statement] = STATE(7050), - [sym_empty_statement] = STATE(7050), - [sym_labeled_statement] = STATE(7050), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2687), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6490), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1467), + [sym_declaration] = STATE(1467), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1467), + [sym_statement] = STATE(1448), + [sym_expression_statement] = STATE(1467), + [sym_variable_declaration] = STATE(1468), + [sym_lexical_declaration] = STATE(1468), + [sym_statement_block] = STATE(1467), + [sym_if_statement] = STATE(1467), + [sym_switch_statement] = STATE(1467), + [sym_for_statement] = STATE(1467), + [sym_for_in_statement] = STATE(1467), + [sym_while_statement] = STATE(1467), + [sym_do_statement] = STATE(1467), + [sym_try_statement] = STATE(1467), + [sym_with_statement] = STATE(1467), + [sym_break_statement] = STATE(1467), + [sym_continue_statement] = STATE(1467), + [sym_debugger_statement] = STATE(1467), + [sym_return_statement] = STATE(1467), + [sym_throw_statement] = STATE(1467), + [sym_empty_statement] = STATE(1467), + [sym_labeled_statement] = STATE(1467), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2600), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1468), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1468), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1468), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6356), + [sym_string] = STATE(3280), [sym_comment] = STATE(92), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(6924), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3268), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4923), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1468), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1468), + [sym_abstract_class_declaration] = STATE(1468), + [sym_module] = STATE(1468), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1468), + [sym_interface_declaration] = STATE(1468), + [sym_enum_declaration] = STATE(1468), + [sym_type_alias_declaration] = STATE(1468), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4817), [sym_identifier] = ACTIONS(762), [anon_sym_export] = ACTIONS(764), [anon_sym_type] = ACTIONS(766), @@ -43033,85 +42721,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [93] = { - [sym_export_statement] = STATE(1582), - [sym_declaration] = STATE(1582), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1582), - [sym_expression_statement] = STATE(1582), - [sym_variable_declaration] = STATE(1364), - [sym_lexical_declaration] = STATE(1364), - [sym_statement_block] = STATE(1582), - [sym_if_statement] = STATE(1582), - [sym_switch_statement] = STATE(1582), - [sym_for_statement] = STATE(1582), - [sym_for_in_statement] = STATE(1582), - [sym_while_statement] = STATE(1582), - [sym_do_statement] = STATE(1582), - [sym_try_statement] = STATE(1582), - [sym_with_statement] = STATE(1582), - [sym_break_statement] = STATE(1582), - [sym_continue_statement] = STATE(1582), - [sym_debugger_statement] = STATE(1582), - [sym_return_statement] = STATE(1582), - [sym_throw_statement] = STATE(1582), - [sym_empty_statement] = STATE(1582), - [sym_labeled_statement] = STATE(1582), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2637), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1364), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1364), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1364), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6906), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1190), + [sym_declaration] = STATE(1190), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1190), + [sym_statement] = STATE(1003), + [sym_expression_statement] = STATE(1190), + [sym_variable_declaration] = STATE(1197), + [sym_lexical_declaration] = STATE(1197), + [sym_statement_block] = STATE(1190), + [sym_if_statement] = STATE(1190), + [sym_switch_statement] = STATE(1190), + [sym_for_statement] = STATE(1190), + [sym_for_in_statement] = STATE(1190), + [sym_while_statement] = STATE(1190), + [sym_do_statement] = STATE(1190), + [sym_try_statement] = STATE(1190), + [sym_with_statement] = STATE(1190), + [sym_break_statement] = STATE(1190), + [sym_continue_statement] = STATE(1190), + [sym_debugger_statement] = STATE(1190), + [sym_return_statement] = STATE(1190), + [sym_throw_statement] = STATE(1190), + [sym_empty_statement] = STATE(1190), + [sym_labeled_statement] = STATE(1190), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2583), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1197), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1197), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1197), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6349), + [sym_string] = STATE(3280), [sym_comment] = STATE(93), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1364), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1364), - [sym_abstract_class_declaration] = STATE(1364), - [sym_module] = STATE(1364), - [sym_internal_module] = STATE(367), - [sym_import_alias] = STATE(1364), - [sym_interface_declaration] = STATE(1364), - [sym_enum_declaration] = STATE(1364), - [sym_type_alias_declaration] = STATE(1364), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4917), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1197), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1197), + [sym_abstract_class_declaration] = STATE(1197), + [sym_module] = STATE(1197), + [sym_internal_module] = STATE(310), + [sym_import_alias] = STATE(1197), + [sym_interface_declaration] = STATE(1197), + [sym_enum_declaration] = STATE(1197), + [sym_type_alias_declaration] = STATE(1197), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4758), [sym_identifier] = ACTIONS(890), [anon_sym_export] = ACTIONS(892), [anon_sym_type] = ACTIONS(894), @@ -43190,120 +42879,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [94] = { - [sym_export_statement] = STATE(1227), - [sym_declaration] = STATE(1227), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1227), - [sym_expression_statement] = STATE(1227), - [sym_variable_declaration] = STATE(1364), - [sym_lexical_declaration] = STATE(1364), - [sym_statement_block] = STATE(1227), - [sym_if_statement] = STATE(1227), - [sym_switch_statement] = STATE(1227), - [sym_for_statement] = STATE(1227), - [sym_for_in_statement] = STATE(1227), - [sym_while_statement] = STATE(1227), - [sym_do_statement] = STATE(1227), - [sym_try_statement] = STATE(1227), - [sym_with_statement] = STATE(1227), - [sym_break_statement] = STATE(1227), - [sym_continue_statement] = STATE(1227), - [sym_debugger_statement] = STATE(1227), - [sym_return_statement] = STATE(1227), - [sym_throw_statement] = STATE(1227), - [sym_empty_statement] = STATE(1227), - [sym_labeled_statement] = STATE(1227), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2637), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1364), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1364), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1364), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6906), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1467), + [sym_declaration] = STATE(1467), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1467), + [sym_statement] = STATE(1372), + [sym_expression_statement] = STATE(1467), + [sym_variable_declaration] = STATE(1468), + [sym_lexical_declaration] = STATE(1468), + [sym_statement_block] = STATE(1467), + [sym_if_statement] = STATE(1467), + [sym_switch_statement] = STATE(1467), + [sym_for_statement] = STATE(1467), + [sym_for_in_statement] = STATE(1467), + [sym_while_statement] = STATE(1467), + [sym_do_statement] = STATE(1467), + [sym_try_statement] = STATE(1467), + [sym_with_statement] = STATE(1467), + [sym_break_statement] = STATE(1467), + [sym_continue_statement] = STATE(1467), + [sym_debugger_statement] = STATE(1467), + [sym_return_statement] = STATE(1467), + [sym_throw_statement] = STATE(1467), + [sym_empty_statement] = STATE(1467), + [sym_labeled_statement] = STATE(1467), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2600), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1468), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1468), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1468), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6356), + [sym_string] = STATE(3280), [sym_comment] = STATE(94), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1364), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1364), - [sym_abstract_class_declaration] = STATE(1364), - [sym_module] = STATE(1364), - [sym_internal_module] = STATE(367), - [sym_import_alias] = STATE(1364), - [sym_interface_declaration] = STATE(1364), - [sym_enum_declaration] = STATE(1364), - [sym_type_alias_declaration] = STATE(1364), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4917), - [sym_identifier] = ACTIONS(890), - [anon_sym_export] = ACTIONS(892), - [anon_sym_type] = ACTIONS(894), - [anon_sym_namespace] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1468), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1468), + [sym_abstract_class_declaration] = STATE(1468), + [sym_module] = STATE(1468), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1468), + [sym_interface_declaration] = STATE(1468), + [sym_enum_declaration] = STATE(1468), + [sym_type_alias_declaration] = STATE(1468), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4817), + [sym_identifier] = ACTIONS(762), + [anon_sym_export] = ACTIONS(764), + [anon_sym_type] = ACTIONS(766), + [anon_sym_namespace] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(770), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(900), - [anon_sym_with] = ACTIONS(902), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(908), + [anon_sym_import] = ACTIONS(772), + [anon_sym_with] = ACTIONS(774), + [anon_sym_var] = ACTIONS(776), + [anon_sym_let] = ACTIONS(778), + [anon_sym_const] = ACTIONS(780), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(914), + [anon_sym_if] = ACTIONS(782), + [anon_sym_switch] = ACTIONS(784), + [anon_sym_for] = ACTIONS(786), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(918), - [anon_sym_try] = ACTIONS(920), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_debugger] = ACTIONS(926), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(932), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(790), + [anon_sym_try] = ACTIONS(792), + [anon_sym_break] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(796), + [anon_sym_debugger] = ACTIONS(798), + [anon_sym_return] = ACTIONS(800), + [anon_sym_throw] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(940), + [anon_sym_class] = ACTIONS(806), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(810), + [anon_sym_new] = ACTIONS(812), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43325,142 +43015,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(942), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(942), - [anon_sym_set] = ACTIONS(942), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_override] = ACTIONS(942), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(942), - [anon_sym_number] = ACTIONS(942), - [anon_sym_boolean] = ACTIONS(942), - [anon_sym_string] = ACTIONS(942), - [anon_sym_symbol] = ACTIONS(942), - [anon_sym_object] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [anon_sym_static] = ACTIONS(814), + [anon_sym_readonly] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(816), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_override] = ACTIONS(814), + [anon_sym_module] = ACTIONS(818), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [anon_sym_object] = ACTIONS(814), + [anon_sym_abstract] = ACTIONS(820), + [anon_sym_interface] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(824), [sym_html_comment] = ACTIONS(5), }, [95] = { - [sym_export_statement] = STATE(1635), - [sym_declaration] = STATE(1635), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1635), - [sym_expression_statement] = STATE(1635), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1635), - [sym_if_statement] = STATE(1635), - [sym_switch_statement] = STATE(1635), - [sym_for_statement] = STATE(1635), - [sym_for_in_statement] = STATE(1635), - [sym_while_statement] = STATE(1635), - [sym_do_statement] = STATE(1635), - [sym_try_statement] = STATE(1635), - [sym_with_statement] = STATE(1635), - [sym_break_statement] = STATE(1635), - [sym_continue_statement] = STATE(1635), - [sym_debugger_statement] = STATE(1635), - [sym_return_statement] = STATE(1635), - [sym_throw_statement] = STATE(1635), - [sym_empty_statement] = STATE(1635), - [sym_labeled_statement] = STATE(1635), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(6326), + [sym_declaration] = STATE(6326), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(6326), + [sym_statement] = STATE(6380), + [sym_expression_statement] = STATE(6326), + [sym_variable_declaration] = STATE(6327), + [sym_lexical_declaration] = STATE(6327), + [sym_statement_block] = STATE(6326), + [sym_if_statement] = STATE(6326), + [sym_switch_statement] = STATE(6326), + [sym_for_statement] = STATE(6326), + [sym_for_in_statement] = STATE(6326), + [sym_while_statement] = STATE(6326), + [sym_do_statement] = STATE(6326), + [sym_try_statement] = STATE(6326), + [sym_with_statement] = STATE(6326), + [sym_break_statement] = STATE(6326), + [sym_continue_statement] = STATE(6326), + [sym_debugger_statement] = STATE(6326), + [sym_return_statement] = STATE(6326), + [sym_throw_statement] = STATE(6326), + [sym_empty_statement] = STATE(6326), + [sym_labeled_statement] = STATE(6326), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2566), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(6327), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(6327), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(6327), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6453), + [sym_string] = STATE(3280), [sym_comment] = STATE(95), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4977), - [sym_identifier] = ACTIONS(9), - [anon_sym_export] = ACTIONS(13), - [anon_sym_type] = ACTIONS(15), - [anon_sym_namespace] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(19), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(6327), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(6327), + [sym_abstract_class_declaration] = STATE(6327), + [sym_module] = STATE(6327), + [sym_internal_module] = STATE(3097), + [sym_import_alias] = STATE(6327), + [sym_interface_declaration] = STATE(6327), + [sym_enum_declaration] = STATE(6327), + [sym_type_alias_declaration] = STATE(6327), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4691), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(830), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(23), - [anon_sym_with] = ACTIONS(25), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(29), - [anon_sym_const] = ACTIONS(31), + [anon_sym_import] = ACTIONS(836), + [anon_sym_with] = ACTIONS(838), + [anon_sym_var] = ACTIONS(840), + [anon_sym_let] = ACTIONS(842), + [anon_sym_const] = ACTIONS(844), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(33), - [anon_sym_switch] = ACTIONS(35), - [anon_sym_for] = ACTIONS(37), + [anon_sym_if] = ACTIONS(846), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(43), - [anon_sym_do] = ACTIONS(45), - [anon_sym_try] = ACTIONS(47), - [anon_sym_break] = ACTIONS(49), - [anon_sym_continue] = ACTIONS(51), - [anon_sym_debugger] = ACTIONS(53), - [anon_sym_return] = ACTIONS(55), - [anon_sym_throw] = ACTIONS(57), - [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_while] = ACTIONS(852), + [anon_sym_do] = ACTIONS(854), + [anon_sym_try] = ACTIONS(856), + [anon_sym_break] = ACTIONS(858), + [anon_sym_continue] = ACTIONS(860), + [anon_sym_debugger] = ACTIONS(862), + [anon_sym_return] = ACTIONS(864), + [anon_sym_throw] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(868), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(73), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(77), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(876), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43482,264 +43173,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(97), - [anon_sym_readonly] = ACTIONS(97), - [anon_sym_get] = ACTIONS(97), - [anon_sym_set] = ACTIONS(97), - [anon_sym_declare] = ACTIONS(99), - [anon_sym_public] = ACTIONS(97), - [anon_sym_private] = ACTIONS(97), - [anon_sym_protected] = ACTIONS(97), - [anon_sym_override] = ACTIONS(97), - [anon_sym_module] = ACTIONS(101), - [anon_sym_any] = ACTIONS(97), - [anon_sym_number] = ACTIONS(97), - [anon_sym_boolean] = ACTIONS(97), - [anon_sym_string] = ACTIONS(97), - [anon_sym_symbol] = ACTIONS(97), - [anon_sym_object] = ACTIONS(97), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(878), + [anon_sym_readonly] = ACTIONS(878), + [anon_sym_get] = ACTIONS(878), + [anon_sym_set] = ACTIONS(878), + [anon_sym_declare] = ACTIONS(880), + [anon_sym_public] = ACTIONS(878), + [anon_sym_private] = ACTIONS(878), + [anon_sym_protected] = ACTIONS(878), + [anon_sym_override] = ACTIONS(878), + [anon_sym_module] = ACTIONS(882), + [anon_sym_any] = ACTIONS(878), + [anon_sym_number] = ACTIONS(878), + [anon_sym_boolean] = ACTIONS(878), + [anon_sym_string] = ACTIONS(878), + [anon_sym_symbol] = ACTIONS(878), + [anon_sym_object] = ACTIONS(878), + [anon_sym_abstract] = ACTIONS(884), + [anon_sym_interface] = ACTIONS(886), + [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, [96] = { - [sym_export_statement] = STATE(1337), - [sym_declaration] = STATE(1337), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1337), - [sym_expression_statement] = STATE(1337), - [sym_variable_declaration] = STATE(1364), - [sym_lexical_declaration] = STATE(1364), - [sym_statement_block] = STATE(1337), - [sym_if_statement] = STATE(1337), - [sym_switch_statement] = STATE(1337), - [sym_for_statement] = STATE(1337), - [sym_for_in_statement] = STATE(1337), - [sym_while_statement] = STATE(1337), - [sym_do_statement] = STATE(1337), - [sym_try_statement] = STATE(1337), - [sym_with_statement] = STATE(1337), - [sym_break_statement] = STATE(1337), - [sym_continue_statement] = STATE(1337), - [sym_debugger_statement] = STATE(1337), - [sym_return_statement] = STATE(1337), - [sym_throw_statement] = STATE(1337), - [sym_empty_statement] = STATE(1337), - [sym_labeled_statement] = STATE(1337), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2637), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1364), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1364), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1364), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6906), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1229), + [sym_statement] = STATE(1473), + [sym_expression_statement] = STATE(1229), + [sym_variable_declaration] = STATE(1450), + [sym_lexical_declaration] = STATE(1450), + [sym_statement_block] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_statement] = STATE(1229), + [sym_try_statement] = STATE(1229), + [sym_with_statement] = STATE(1229), + [sym_break_statement] = STATE(1229), + [sym_continue_statement] = STATE(1229), + [sym_debugger_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_throw_statement] = STATE(1229), + [sym_empty_statement] = STATE(1229), + [sym_labeled_statement] = STATE(1229), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2629), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1450), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1450), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1450), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6741), + [sym_string] = STATE(3280), [sym_comment] = STATE(96), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1364), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1364), - [sym_abstract_class_declaration] = STATE(1364), - [sym_module] = STATE(1364), - [sym_internal_module] = STATE(367), - [sym_import_alias] = STATE(1364), - [sym_interface_declaration] = STATE(1364), - [sym_enum_declaration] = STATE(1364), - [sym_type_alias_declaration] = STATE(1364), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4917), - [sym_identifier] = ACTIONS(890), - [anon_sym_export] = ACTIONS(892), - [anon_sym_type] = ACTIONS(894), - [anon_sym_namespace] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(900), - [anon_sym_with] = ACTIONS(902), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(918), - [anon_sym_try] = ACTIONS(920), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_debugger] = ACTIONS(926), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(932), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(940), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(942), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(942), - [anon_sym_set] = ACTIONS(942), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_override] = ACTIONS(942), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(942), - [anon_sym_number] = ACTIONS(942), - [anon_sym_boolean] = ACTIONS(942), - [anon_sym_string] = ACTIONS(942), - [anon_sym_symbol] = ACTIONS(942), - [anon_sym_object] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), - [sym_html_comment] = ACTIONS(5), - }, - [97] = { - [sym_export_statement] = STATE(1430), - [sym_declaration] = STATE(1430), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1430), - [sym_expression_statement] = STATE(1430), - [sym_variable_declaration] = STATE(1318), - [sym_lexical_declaration] = STATE(1318), - [sym_statement_block] = STATE(1430), - [sym_if_statement] = STATE(1430), - [sym_switch_statement] = STATE(1430), - [sym_for_statement] = STATE(1430), - [sym_for_in_statement] = STATE(1430), - [sym_while_statement] = STATE(1430), - [sym_do_statement] = STATE(1430), - [sym_try_statement] = STATE(1430), - [sym_with_statement] = STATE(1430), - [sym_break_statement] = STATE(1430), - [sym_continue_statement] = STATE(1430), - [sym_debugger_statement] = STATE(1430), - [sym_return_statement] = STATE(1430), - [sym_throw_statement] = STATE(1430), - [sym_empty_statement] = STATE(1430), - [sym_labeled_statement] = STATE(1430), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2744), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1318), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1318), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1318), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6589), - [sym_string] = STATE(3425), - [sym_comment] = STATE(97), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1318), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1318), - [sym_abstract_class_declaration] = STATE(1318), - [sym_module] = STATE(1318), - [sym_internal_module] = STATE(339), - [sym_import_alias] = STATE(1318), - [sym_interface_declaration] = STATE(1318), - [sym_enum_declaration] = STATE(1318), - [sym_type_alias_declaration] = STATE(1318), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4875), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1450), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1450), + [sym_abstract_class_declaration] = STATE(1450), + [sym_module] = STATE(1450), + [sym_internal_module] = STATE(370), + [sym_import_alias] = STATE(1450), + [sym_interface_declaration] = STATE(1450), + [sym_enum_declaration] = STATE(1450), + [sym_type_alias_declaration] = STATE(1450), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4658), [sym_identifier] = ACTIONS(335), [anon_sym_export] = ACTIONS(337), [anon_sym_type] = ACTIONS(341), @@ -43817,121 +43352,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(399), [sym_html_comment] = ACTIONS(5), }, + [97] = { + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1617), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), + [sym_comment] = STATE(97), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), + [sym_html_comment] = ACTIONS(5), + }, [98] = { - [sym_export_statement] = STATE(1373), - [sym_declaration] = STATE(1373), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1373), - [sym_expression_statement] = STATE(1373), - [sym_variable_declaration] = STATE(1318), - [sym_lexical_declaration] = STATE(1318), - [sym_statement_block] = STATE(1373), - [sym_if_statement] = STATE(1373), - [sym_switch_statement] = STATE(1373), - [sym_for_statement] = STATE(1373), - [sym_for_in_statement] = STATE(1373), - [sym_while_statement] = STATE(1373), - [sym_do_statement] = STATE(1373), - [sym_try_statement] = STATE(1373), - [sym_with_statement] = STATE(1373), - [sym_break_statement] = STATE(1373), - [sym_continue_statement] = STATE(1373), - [sym_debugger_statement] = STATE(1373), - [sym_return_statement] = STATE(1373), - [sym_throw_statement] = STATE(1373), - [sym_empty_statement] = STATE(1373), - [sym_labeled_statement] = STATE(1373), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2744), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1318), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1318), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1318), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6589), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1622), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(98), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1318), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1318), - [sym_abstract_class_declaration] = STATE(1318), - [sym_module] = STATE(1318), - [sym_internal_module] = STATE(339), - [sym_import_alias] = STATE(1318), - [sym_interface_declaration] = STATE(1318), - [sym_enum_declaration] = STATE(1318), - [sym_type_alias_declaration] = STATE(1318), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4875), - [sym_identifier] = ACTIONS(335), - [anon_sym_export] = ACTIONS(337), - [anon_sym_type] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_LBRACE] = ACTIONS(345), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(347), - [anon_sym_with] = ACTIONS(349), - [anon_sym_var] = ACTIONS(351), - [anon_sym_let] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(357), - [anon_sym_switch] = ACTIONS(359), - [anon_sym_for] = ACTIONS(361), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_try] = ACTIONS(367), - [anon_sym_break] = ACTIONS(369), - [anon_sym_continue] = ACTIONS(371), - [anon_sym_debugger] = ACTIONS(373), - [anon_sym_return] = ACTIONS(375), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -43953,107 +43647,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(389), - [anon_sym_readonly] = ACTIONS(389), - [anon_sym_get] = ACTIONS(389), - [anon_sym_set] = ACTIONS(389), - [anon_sym_declare] = ACTIONS(391), - [anon_sym_public] = ACTIONS(389), - [anon_sym_private] = ACTIONS(389), - [anon_sym_protected] = ACTIONS(389), - [anon_sym_override] = ACTIONS(389), - [anon_sym_module] = ACTIONS(393), - [anon_sym_any] = ACTIONS(389), - [anon_sym_number] = ACTIONS(389), - [anon_sym_boolean] = ACTIONS(389), - [anon_sym_string] = ACTIONS(389), - [anon_sym_symbol] = ACTIONS(389), - [anon_sym_object] = ACTIONS(389), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [99] = { - [sym_export_statement] = STATE(975), - [sym_declaration] = STATE(975), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(975), - [sym_expression_statement] = STATE(975), - [sym_variable_declaration] = STATE(1205), - [sym_lexical_declaration] = STATE(1205), - [sym_statement_block] = STATE(975), - [sym_if_statement] = STATE(975), - [sym_switch_statement] = STATE(975), - [sym_for_statement] = STATE(975), - [sym_for_in_statement] = STATE(975), - [sym_while_statement] = STATE(975), - [sym_do_statement] = STATE(975), - [sym_try_statement] = STATE(975), - [sym_with_statement] = STATE(975), - [sym_break_statement] = STATE(975), - [sym_continue_statement] = STATE(975), - [sym_debugger_statement] = STATE(975), - [sym_return_statement] = STATE(975), - [sym_throw_statement] = STATE(975), - [sym_empty_statement] = STATE(975), - [sym_labeled_statement] = STATE(975), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2709), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1205), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1205), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1205), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6460), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(6326), + [sym_declaration] = STATE(6326), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(6326), + [sym_statement] = STATE(7043), + [sym_expression_statement] = STATE(6326), + [sym_variable_declaration] = STATE(6327), + [sym_lexical_declaration] = STATE(6327), + [sym_statement_block] = STATE(6326), + [sym_if_statement] = STATE(6326), + [sym_switch_statement] = STATE(6326), + [sym_for_statement] = STATE(6326), + [sym_for_in_statement] = STATE(6326), + [sym_while_statement] = STATE(6326), + [sym_do_statement] = STATE(6326), + [sym_try_statement] = STATE(6326), + [sym_with_statement] = STATE(6326), + [sym_break_statement] = STATE(6326), + [sym_continue_statement] = STATE(6326), + [sym_debugger_statement] = STATE(6326), + [sym_return_statement] = STATE(6326), + [sym_throw_statement] = STATE(6326), + [sym_empty_statement] = STATE(6326), + [sym_labeled_statement] = STATE(6326), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2566), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(6327), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(6327), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(6327), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6453), + [sym_string] = STATE(3280), [sym_comment] = STATE(99), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1205), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1205), - [sym_abstract_class_declaration] = STATE(1205), - [sym_module] = STATE(1205), - [sym_internal_module] = STATE(307), - [sym_import_alias] = STATE(1205), - [sym_interface_declaration] = STATE(1205), - [sym_enum_declaration] = STATE(1205), - [sym_type_alias_declaration] = STATE(1205), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4829), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(6327), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(6327), + [sym_abstract_class_declaration] = STATE(6327), + [sym_module] = STATE(6327), + [sym_internal_module] = STATE(3097), + [sym_import_alias] = STATE(6327), + [sym_interface_declaration] = STATE(6327), + [sym_enum_declaration] = STATE(6327), + [sym_type_alias_declaration] = STATE(6327), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4691), [sym_identifier] = ACTIONS(826), [anon_sym_export] = ACTIONS(828), [anon_sym_type] = ACTIONS(830), @@ -44132,120 +43827,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [100] = { - [sym_export_statement] = STATE(6950), - [sym_declaration] = STATE(6950), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(6950), - [sym_expression_statement] = STATE(6950), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6950), - [sym_if_statement] = STATE(6950), - [sym_switch_statement] = STATE(6950), - [sym_for_statement] = STATE(6950), - [sym_for_in_statement] = STATE(6950), - [sym_while_statement] = STATE(6950), - [sym_do_statement] = STATE(6950), - [sym_try_statement] = STATE(6950), - [sym_with_statement] = STATE(6950), - [sym_break_statement] = STATE(6950), - [sym_continue_statement] = STATE(6950), - [sym_debugger_statement] = STATE(6950), - [sym_return_statement] = STATE(6950), - [sym_throw_statement] = STATE(6950), - [sym_empty_statement] = STATE(6950), - [sym_labeled_statement] = STATE(6950), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2687), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6490), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1190), + [sym_declaration] = STATE(1190), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1190), + [sym_statement] = STATE(1029), + [sym_expression_statement] = STATE(1190), + [sym_variable_declaration] = STATE(1197), + [sym_lexical_declaration] = STATE(1197), + [sym_statement_block] = STATE(1190), + [sym_if_statement] = STATE(1190), + [sym_switch_statement] = STATE(1190), + [sym_for_statement] = STATE(1190), + [sym_for_in_statement] = STATE(1190), + [sym_while_statement] = STATE(1190), + [sym_do_statement] = STATE(1190), + [sym_try_statement] = STATE(1190), + [sym_with_statement] = STATE(1190), + [sym_break_statement] = STATE(1190), + [sym_continue_statement] = STATE(1190), + [sym_debugger_statement] = STATE(1190), + [sym_return_statement] = STATE(1190), + [sym_throw_statement] = STATE(1190), + [sym_empty_statement] = STATE(1190), + [sym_labeled_statement] = STATE(1190), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2583), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1197), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1197), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1197), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6349), + [sym_string] = STATE(3280), [sym_comment] = STATE(100), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(6924), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3268), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4923), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1197), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1197), + [sym_abstract_class_declaration] = STATE(1197), + [sym_module] = STATE(1197), + [sym_internal_module] = STATE(310), + [sym_import_alias] = STATE(1197), + [sym_interface_declaration] = STATE(1197), + [sym_enum_declaration] = STATE(1197), + [sym_type_alias_declaration] = STATE(1197), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4758), + [sym_identifier] = ACTIONS(890), + [anon_sym_export] = ACTIONS(892), + [anon_sym_type] = ACTIONS(894), + [anon_sym_namespace] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [anon_sym_import] = ACTIONS(900), + [anon_sym_with] = ACTIONS(902), + [anon_sym_var] = ACTIONS(904), + [anon_sym_let] = ACTIONS(906), + [anon_sym_const] = ACTIONS(908), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(912), + [anon_sym_for] = ACTIONS(914), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(916), + [anon_sym_do] = ACTIONS(918), + [anon_sym_try] = ACTIONS(920), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_debugger] = ACTIONS(926), + [anon_sym_return] = ACTIONS(928), + [anon_sym_throw] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(932), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(934), + [anon_sym_async] = ACTIONS(936), + [anon_sym_function] = ACTIONS(938), + [anon_sym_new] = ACTIONS(940), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -44267,142 +43963,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_override] = ACTIONS(942), + [anon_sym_module] = ACTIONS(946), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), + [anon_sym_object] = ACTIONS(942), + [anon_sym_abstract] = ACTIONS(948), + [anon_sym_interface] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(952), [sym_html_comment] = ACTIONS(5), }, [101] = { - [sym_export_statement] = STATE(1099), - [sym_declaration] = STATE(1099), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1099), - [sym_expression_statement] = STATE(1099), - [sym_variable_declaration] = STATE(1205), - [sym_lexical_declaration] = STATE(1205), - [sym_statement_block] = STATE(1099), - [sym_if_statement] = STATE(1099), - [sym_switch_statement] = STATE(1099), - [sym_for_statement] = STATE(1099), - [sym_for_in_statement] = STATE(1099), - [sym_while_statement] = STATE(1099), - [sym_do_statement] = STATE(1099), - [sym_try_statement] = STATE(1099), - [sym_with_statement] = STATE(1099), - [sym_break_statement] = STATE(1099), - [sym_continue_statement] = STATE(1099), - [sym_debugger_statement] = STATE(1099), - [sym_return_statement] = STATE(1099), - [sym_throw_statement] = STATE(1099), - [sym_empty_statement] = STATE(1099), - [sym_labeled_statement] = STATE(1099), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2709), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1205), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1205), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1205), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6460), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1190), + [sym_declaration] = STATE(1190), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1190), + [sym_statement] = STATE(1076), + [sym_expression_statement] = STATE(1190), + [sym_variable_declaration] = STATE(1197), + [sym_lexical_declaration] = STATE(1197), + [sym_statement_block] = STATE(1190), + [sym_if_statement] = STATE(1190), + [sym_switch_statement] = STATE(1190), + [sym_for_statement] = STATE(1190), + [sym_for_in_statement] = STATE(1190), + [sym_while_statement] = STATE(1190), + [sym_do_statement] = STATE(1190), + [sym_try_statement] = STATE(1190), + [sym_with_statement] = STATE(1190), + [sym_break_statement] = STATE(1190), + [sym_continue_statement] = STATE(1190), + [sym_debugger_statement] = STATE(1190), + [sym_return_statement] = STATE(1190), + [sym_throw_statement] = STATE(1190), + [sym_empty_statement] = STATE(1190), + [sym_labeled_statement] = STATE(1190), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2583), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1197), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1197), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1197), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6349), + [sym_string] = STATE(3280), [sym_comment] = STATE(101), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1205), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1205), - [sym_abstract_class_declaration] = STATE(1205), - [sym_module] = STATE(1205), - [sym_internal_module] = STATE(307), - [sym_import_alias] = STATE(1205), - [sym_interface_declaration] = STATE(1205), - [sym_enum_declaration] = STATE(1205), - [sym_type_alias_declaration] = STATE(1205), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4829), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1197), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1197), + [sym_abstract_class_declaration] = STATE(1197), + [sym_module] = STATE(1197), + [sym_internal_module] = STATE(310), + [sym_import_alias] = STATE(1197), + [sym_interface_declaration] = STATE(1197), + [sym_enum_declaration] = STATE(1197), + [sym_type_alias_declaration] = STATE(1197), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4758), + [sym_identifier] = ACTIONS(890), + [anon_sym_export] = ACTIONS(892), + [anon_sym_type] = ACTIONS(894), + [anon_sym_namespace] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), + [anon_sym_import] = ACTIONS(900), + [anon_sym_with] = ACTIONS(902), + [anon_sym_var] = ACTIONS(904), + [anon_sym_let] = ACTIONS(906), + [anon_sym_const] = ACTIONS(908), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), + [anon_sym_if] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(912), + [anon_sym_for] = ACTIONS(914), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_while] = ACTIONS(916), + [anon_sym_do] = ACTIONS(918), + [anon_sym_try] = ACTIONS(920), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_debugger] = ACTIONS(926), + [anon_sym_return] = ACTIONS(928), + [anon_sym_throw] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(932), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(934), + [anon_sym_async] = ACTIONS(936), + [anon_sym_function] = ACTIONS(938), + [anon_sym_new] = ACTIONS(940), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -44424,107 +44121,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_override] = ACTIONS(942), + [anon_sym_module] = ACTIONS(946), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), + [anon_sym_object] = ACTIONS(942), + [anon_sym_abstract] = ACTIONS(948), + [anon_sym_interface] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(952), [sym_html_comment] = ACTIONS(5), }, [102] = { - [sym_export_statement] = STATE(1468), - [sym_declaration] = STATE(1453), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1448), - [sym_expression_statement] = STATE(1447), - [sym_variable_declaration] = STATE(1364), - [sym_lexical_declaration] = STATE(1364), - [sym_statement_block] = STATE(1444), - [sym_if_statement] = STATE(1443), - [sym_switch_statement] = STATE(1442), - [sym_for_statement] = STATE(1441), - [sym_for_in_statement] = STATE(1595), - [sym_while_statement] = STATE(1438), - [sym_do_statement] = STATE(1256), - [sym_try_statement] = STATE(1432), - [sym_with_statement] = STATE(1429), - [sym_break_statement] = STATE(1426), - [sym_continue_statement] = STATE(1422), - [sym_debugger_statement] = STATE(1415), - [sym_return_statement] = STATE(1414), - [sym_throw_statement] = STATE(1409), - [sym_empty_statement] = STATE(1408), - [sym_labeled_statement] = STATE(1406), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2637), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1364), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1364), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1364), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6906), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1190), + [sym_declaration] = STATE(1190), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1190), + [sym_statement] = STATE(1128), + [sym_expression_statement] = STATE(1190), + [sym_variable_declaration] = STATE(1197), + [sym_lexical_declaration] = STATE(1197), + [sym_statement_block] = STATE(1190), + [sym_if_statement] = STATE(1190), + [sym_switch_statement] = STATE(1190), + [sym_for_statement] = STATE(1190), + [sym_for_in_statement] = STATE(1190), + [sym_while_statement] = STATE(1190), + [sym_do_statement] = STATE(1190), + [sym_try_statement] = STATE(1190), + [sym_with_statement] = STATE(1190), + [sym_break_statement] = STATE(1190), + [sym_continue_statement] = STATE(1190), + [sym_debugger_statement] = STATE(1190), + [sym_return_statement] = STATE(1190), + [sym_throw_statement] = STATE(1190), + [sym_empty_statement] = STATE(1190), + [sym_labeled_statement] = STATE(1190), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2583), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1197), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1197), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1197), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6349), + [sym_string] = STATE(3280), [sym_comment] = STATE(102), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1364), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1364), - [sym_abstract_class_declaration] = STATE(1364), - [sym_module] = STATE(1364), - [sym_internal_module] = STATE(367), - [sym_import_alias] = STATE(1364), - [sym_interface_declaration] = STATE(1364), - [sym_enum_declaration] = STATE(1364), - [sym_type_alias_declaration] = STATE(1364), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4917), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1197), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1197), + [sym_abstract_class_declaration] = STATE(1197), + [sym_module] = STATE(1197), + [sym_internal_module] = STATE(310), + [sym_import_alias] = STATE(1197), + [sym_interface_declaration] = STATE(1197), + [sym_enum_declaration] = STATE(1197), + [sym_type_alias_declaration] = STATE(1197), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4758), [sym_identifier] = ACTIONS(890), [anon_sym_export] = ACTIONS(892), [anon_sym_type] = ACTIONS(894), @@ -44603,85 +44301,244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [103] = { - [sym_export_statement] = STATE(7485), - [sym_declaration] = STATE(7485), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(7485), - [sym_expression_statement] = STATE(7485), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(7485), - [sym_if_statement] = STATE(7485), - [sym_switch_statement] = STATE(7485), - [sym_for_statement] = STATE(7485), - [sym_for_in_statement] = STATE(7485), - [sym_while_statement] = STATE(7485), - [sym_do_statement] = STATE(7485), - [sym_try_statement] = STATE(7485), - [sym_with_statement] = STATE(7485), - [sym_break_statement] = STATE(7485), - [sym_continue_statement] = STATE(7485), - [sym_debugger_statement] = STATE(7485), - [sym_return_statement] = STATE(7485), - [sym_throw_statement] = STATE(7485), - [sym_empty_statement] = STATE(7485), - [sym_labeled_statement] = STATE(7485), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2687), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6490), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(6326), + [sym_declaration] = STATE(6326), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(6326), + [sym_statement] = STATE(6838), + [sym_expression_statement] = STATE(6326), + [sym_variable_declaration] = STATE(6327), + [sym_lexical_declaration] = STATE(6327), + [sym_statement_block] = STATE(6326), + [sym_if_statement] = STATE(6326), + [sym_switch_statement] = STATE(6326), + [sym_for_statement] = STATE(6326), + [sym_for_in_statement] = STATE(6326), + [sym_while_statement] = STATE(6326), + [sym_do_statement] = STATE(6326), + [sym_try_statement] = STATE(6326), + [sym_with_statement] = STATE(6326), + [sym_break_statement] = STATE(6326), + [sym_continue_statement] = STATE(6326), + [sym_debugger_statement] = STATE(6326), + [sym_return_statement] = STATE(6326), + [sym_throw_statement] = STATE(6326), + [sym_empty_statement] = STATE(6326), + [sym_labeled_statement] = STATE(6326), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2566), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(6327), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(6327), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(6327), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6453), + [sym_string] = STATE(3280), [sym_comment] = STATE(103), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(6924), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3268), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4923), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(6327), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(6327), + [sym_abstract_class_declaration] = STATE(6327), + [sym_module] = STATE(6327), + [sym_internal_module] = STATE(3097), + [sym_import_alias] = STATE(6327), + [sym_interface_declaration] = STATE(6327), + [sym_enum_declaration] = STATE(6327), + [sym_type_alias_declaration] = STATE(6327), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4691), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(830), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(836), + [anon_sym_with] = ACTIONS(838), + [anon_sym_var] = ACTIONS(840), + [anon_sym_let] = ACTIONS(842), + [anon_sym_const] = ACTIONS(844), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_if] = ACTIONS(846), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_while] = ACTIONS(852), + [anon_sym_do] = ACTIONS(854), + [anon_sym_try] = ACTIONS(856), + [anon_sym_break] = ACTIONS(858), + [anon_sym_continue] = ACTIONS(860), + [anon_sym_debugger] = ACTIONS(862), + [anon_sym_return] = ACTIONS(864), + [anon_sym_throw] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(876), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(878), + [anon_sym_readonly] = ACTIONS(878), + [anon_sym_get] = ACTIONS(878), + [anon_sym_set] = ACTIONS(878), + [anon_sym_declare] = ACTIONS(880), + [anon_sym_public] = ACTIONS(878), + [anon_sym_private] = ACTIONS(878), + [anon_sym_protected] = ACTIONS(878), + [anon_sym_override] = ACTIONS(878), + [anon_sym_module] = ACTIONS(882), + [anon_sym_any] = ACTIONS(878), + [anon_sym_number] = ACTIONS(878), + [anon_sym_boolean] = ACTIONS(878), + [anon_sym_string] = ACTIONS(878), + [anon_sym_symbol] = ACTIONS(878), + [anon_sym_object] = ACTIONS(878), + [anon_sym_abstract] = ACTIONS(884), + [anon_sym_interface] = ACTIONS(886), + [anon_sym_enum] = ACTIONS(888), + [sym_html_comment] = ACTIONS(5), + }, + [104] = { + [sym_export_statement] = STATE(1467), + [sym_declaration] = STATE(1467), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1467), + [sym_statement] = STATE(1318), + [sym_expression_statement] = STATE(1467), + [sym_variable_declaration] = STATE(1468), + [sym_lexical_declaration] = STATE(1468), + [sym_statement_block] = STATE(1467), + [sym_if_statement] = STATE(1467), + [sym_switch_statement] = STATE(1467), + [sym_for_statement] = STATE(1467), + [sym_for_in_statement] = STATE(1467), + [sym_while_statement] = STATE(1467), + [sym_do_statement] = STATE(1467), + [sym_try_statement] = STATE(1467), + [sym_with_statement] = STATE(1467), + [sym_break_statement] = STATE(1467), + [sym_continue_statement] = STATE(1467), + [sym_debugger_statement] = STATE(1467), + [sym_return_statement] = STATE(1467), + [sym_throw_statement] = STATE(1467), + [sym_empty_statement] = STATE(1467), + [sym_labeled_statement] = STATE(1467), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2600), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1468), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1468), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1468), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6356), + [sym_string] = STATE(3280), + [sym_comment] = STATE(104), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1468), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1468), + [sym_abstract_class_declaration] = STATE(1468), + [sym_module] = STATE(1468), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1468), + [sym_interface_declaration] = STATE(1468), + [sym_enum_declaration] = STATE(1468), + [sym_type_alias_declaration] = STATE(1468), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4817), [sym_identifier] = ACTIONS(762), [anon_sym_export] = ACTIONS(764), [anon_sym_type] = ACTIONS(766), @@ -44759,86 +44616,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(824), [sym_html_comment] = ACTIONS(5), }, - [104] = { - [sym_export_statement] = STATE(1135), - [sym_declaration] = STATE(1136), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1137), - [sym_expression_statement] = STATE(1138), - [sym_variable_declaration] = STATE(1205), - [sym_lexical_declaration] = STATE(1205), - [sym_statement_block] = STATE(1139), - [sym_if_statement] = STATE(1140), - [sym_switch_statement] = STATE(1141), - [sym_for_statement] = STATE(1146), - [sym_for_in_statement] = STATE(1147), - [sym_while_statement] = STATE(1148), - [sym_do_statement] = STATE(1151), - [sym_try_statement] = STATE(1152), - [sym_with_statement] = STATE(1153), - [sym_break_statement] = STATE(1154), - [sym_continue_statement] = STATE(1155), - [sym_debugger_statement] = STATE(1157), - [sym_return_statement] = STATE(1158), - [sym_throw_statement] = STATE(1159), - [sym_empty_statement] = STATE(1160), - [sym_labeled_statement] = STATE(1161), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2709), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1205), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1205), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1205), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6460), - [sym_string] = STATE(3425), - [sym_comment] = STATE(104), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1205), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1205), - [sym_abstract_class_declaration] = STATE(1205), - [sym_module] = STATE(1205), - [sym_internal_module] = STATE(307), - [sym_import_alias] = STATE(1205), - [sym_interface_declaration] = STATE(1205), - [sym_enum_declaration] = STATE(1205), - [sym_type_alias_declaration] = STATE(1205), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4829), + [105] = { + [sym_export_statement] = STATE(6326), + [sym_declaration] = STATE(6326), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(6326), + [sym_statement] = STATE(6894), + [sym_expression_statement] = STATE(6326), + [sym_variable_declaration] = STATE(6327), + [sym_lexical_declaration] = STATE(6327), + [sym_statement_block] = STATE(6326), + [sym_if_statement] = STATE(6326), + [sym_switch_statement] = STATE(6326), + [sym_for_statement] = STATE(6326), + [sym_for_in_statement] = STATE(6326), + [sym_while_statement] = STATE(6326), + [sym_do_statement] = STATE(6326), + [sym_try_statement] = STATE(6326), + [sym_with_statement] = STATE(6326), + [sym_break_statement] = STATE(6326), + [sym_continue_statement] = STATE(6326), + [sym_debugger_statement] = STATE(6326), + [sym_return_statement] = STATE(6326), + [sym_throw_statement] = STATE(6326), + [sym_empty_statement] = STATE(6326), + [sym_labeled_statement] = STATE(6326), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2566), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(6327), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(6327), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(6327), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6453), + [sym_string] = STATE(3280), + [sym_comment] = STATE(105), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(6327), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(6327), + [sym_abstract_class_declaration] = STATE(6327), + [sym_module] = STATE(6327), + [sym_internal_module] = STATE(3097), + [sym_import_alias] = STATE(6327), + [sym_interface_declaration] = STATE(6327), + [sym_enum_declaration] = STATE(6327), + [sym_type_alias_declaration] = STATE(6327), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4691), [sym_identifier] = ACTIONS(826), [anon_sym_export] = ACTIONS(828), [anon_sym_type] = ACTIONS(830), @@ -44916,86 +44774,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [105] = { - [sym_export_statement] = STATE(7210), - [sym_declaration] = STATE(7210), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(7210), - [sym_expression_statement] = STATE(7210), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(7210), - [sym_if_statement] = STATE(7210), - [sym_switch_statement] = STATE(7210), - [sym_for_statement] = STATE(7210), - [sym_for_in_statement] = STATE(7210), - [sym_while_statement] = STATE(7210), - [sym_do_statement] = STATE(7210), - [sym_try_statement] = STATE(7210), - [sym_with_statement] = STATE(7210), - [sym_break_statement] = STATE(7210), - [sym_continue_statement] = STATE(7210), - [sym_debugger_statement] = STATE(7210), - [sym_return_statement] = STATE(7210), - [sym_throw_statement] = STATE(7210), - [sym_empty_statement] = STATE(7210), - [sym_labeled_statement] = STATE(7210), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2687), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6490), - [sym_string] = STATE(3425), - [sym_comment] = STATE(105), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(6924), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3268), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4923), + [106] = { + [sym_export_statement] = STATE(1467), + [sym_declaration] = STATE(1467), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1467), + [sym_statement] = STATE(1438), + [sym_expression_statement] = STATE(1467), + [sym_variable_declaration] = STATE(1468), + [sym_lexical_declaration] = STATE(1468), + [sym_statement_block] = STATE(1467), + [sym_if_statement] = STATE(1467), + [sym_switch_statement] = STATE(1467), + [sym_for_statement] = STATE(1467), + [sym_for_in_statement] = STATE(1467), + [sym_while_statement] = STATE(1467), + [sym_do_statement] = STATE(1467), + [sym_try_statement] = STATE(1467), + [sym_with_statement] = STATE(1467), + [sym_break_statement] = STATE(1467), + [sym_continue_statement] = STATE(1467), + [sym_debugger_statement] = STATE(1467), + [sym_return_statement] = STATE(1467), + [sym_throw_statement] = STATE(1467), + [sym_empty_statement] = STATE(1467), + [sym_labeled_statement] = STATE(1467), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2600), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1468), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1468), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1468), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6356), + [sym_string] = STATE(3280), + [sym_comment] = STATE(106), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1468), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1468), + [sym_abstract_class_declaration] = STATE(1468), + [sym_module] = STATE(1468), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1468), + [sym_interface_declaration] = STATE(1468), + [sym_enum_declaration] = STATE(1468), + [sym_type_alias_declaration] = STATE(1468), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4817), [sym_identifier] = ACTIONS(762), [anon_sym_export] = ACTIONS(764), [anon_sym_type] = ACTIONS(766), @@ -45073,86 +44932,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(824), [sym_html_comment] = ACTIONS(5), }, - [106] = { - [sym_export_statement] = STATE(1216), - [sym_declaration] = STATE(1216), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1216), - [sym_expression_statement] = STATE(1216), - [sym_variable_declaration] = STATE(1205), - [sym_lexical_declaration] = STATE(1205), - [sym_statement_block] = STATE(1216), - [sym_if_statement] = STATE(1216), - [sym_switch_statement] = STATE(1216), - [sym_for_statement] = STATE(1216), - [sym_for_in_statement] = STATE(1216), - [sym_while_statement] = STATE(1216), - [sym_do_statement] = STATE(1216), - [sym_try_statement] = STATE(1216), - [sym_with_statement] = STATE(1216), - [sym_break_statement] = STATE(1216), - [sym_continue_statement] = STATE(1216), - [sym_debugger_statement] = STATE(1216), - [sym_return_statement] = STATE(1216), - [sym_throw_statement] = STATE(1216), - [sym_empty_statement] = STATE(1216), - [sym_labeled_statement] = STATE(1216), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2709), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1205), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1205), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1205), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6460), - [sym_string] = STATE(3425), - [sym_comment] = STATE(106), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1205), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1205), - [sym_abstract_class_declaration] = STATE(1205), - [sym_module] = STATE(1205), - [sym_internal_module] = STATE(307), - [sym_import_alias] = STATE(1205), - [sym_interface_declaration] = STATE(1205), - [sym_enum_declaration] = STATE(1205), - [sym_type_alias_declaration] = STATE(1205), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4829), + [107] = { + [sym_export_statement] = STATE(6326), + [sym_declaration] = STATE(6326), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(6326), + [sym_statement] = STATE(6637), + [sym_expression_statement] = STATE(6326), + [sym_variable_declaration] = STATE(6327), + [sym_lexical_declaration] = STATE(6327), + [sym_statement_block] = STATE(6326), + [sym_if_statement] = STATE(6326), + [sym_switch_statement] = STATE(6326), + [sym_for_statement] = STATE(6326), + [sym_for_in_statement] = STATE(6326), + [sym_while_statement] = STATE(6326), + [sym_do_statement] = STATE(6326), + [sym_try_statement] = STATE(6326), + [sym_with_statement] = STATE(6326), + [sym_break_statement] = STATE(6326), + [sym_continue_statement] = STATE(6326), + [sym_debugger_statement] = STATE(6326), + [sym_return_statement] = STATE(6326), + [sym_throw_statement] = STATE(6326), + [sym_empty_statement] = STATE(6326), + [sym_labeled_statement] = STATE(6326), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2566), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(6327), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(6327), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(6327), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6453), + [sym_string] = STATE(3280), + [sym_comment] = STATE(107), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(6327), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(6327), + [sym_abstract_class_declaration] = STATE(6327), + [sym_module] = STATE(6327), + [sym_internal_module] = STATE(3097), + [sym_import_alias] = STATE(6327), + [sym_interface_declaration] = STATE(6327), + [sym_enum_declaration] = STATE(6327), + [sym_type_alias_declaration] = STATE(6327), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4691), [sym_identifier] = ACTIONS(826), [anon_sym_export] = ACTIONS(828), [anon_sym_type] = ACTIONS(830), @@ -45230,121 +45090,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [107] = { - [sym_export_statement] = STATE(6955), - [sym_declaration] = STATE(6953), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(6946), - [sym_expression_statement] = STATE(6939), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6934), - [sym_if_statement] = STATE(6933), - [sym_switch_statement] = STATE(7084), - [sym_for_statement] = STATE(6911), - [sym_for_in_statement] = STATE(6907), - [sym_while_statement] = STATE(6884), - [sym_do_statement] = STATE(6883), - [sym_try_statement] = STATE(6882), - [sym_with_statement] = STATE(6877), - [sym_break_statement] = STATE(6875), - [sym_continue_statement] = STATE(6874), - [sym_debugger_statement] = STATE(6873), - [sym_return_statement] = STATE(6866), - [sym_throw_statement] = STATE(6856), - [sym_empty_statement] = STATE(6837), - [sym_labeled_statement] = STATE(6834), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2687), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6490), - [sym_string] = STATE(3425), - [sym_comment] = STATE(107), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(6924), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3268), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4923), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [108] = { + [sym_export_statement] = STATE(1190), + [sym_declaration] = STATE(1190), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1190), + [sym_statement] = STATE(1175), + [sym_expression_statement] = STATE(1190), + [sym_variable_declaration] = STATE(1197), + [sym_lexical_declaration] = STATE(1197), + [sym_statement_block] = STATE(1190), + [sym_if_statement] = STATE(1190), + [sym_switch_statement] = STATE(1190), + [sym_for_statement] = STATE(1190), + [sym_for_in_statement] = STATE(1190), + [sym_while_statement] = STATE(1190), + [sym_do_statement] = STATE(1190), + [sym_try_statement] = STATE(1190), + [sym_with_statement] = STATE(1190), + [sym_break_statement] = STATE(1190), + [sym_continue_statement] = STATE(1190), + [sym_debugger_statement] = STATE(1190), + [sym_return_statement] = STATE(1190), + [sym_throw_statement] = STATE(1190), + [sym_empty_statement] = STATE(1190), + [sym_labeled_statement] = STATE(1190), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2583), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1197), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1197), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1197), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6349), + [sym_string] = STATE(3280), + [sym_comment] = STATE(108), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1197), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1197), + [sym_abstract_class_declaration] = STATE(1197), + [sym_module] = STATE(1197), + [sym_internal_module] = STATE(310), + [sym_import_alias] = STATE(1197), + [sym_interface_declaration] = STATE(1197), + [sym_enum_declaration] = STATE(1197), + [sym_type_alias_declaration] = STATE(1197), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4758), + [sym_identifier] = ACTIONS(890), + [anon_sym_export] = ACTIONS(892), + [anon_sym_type] = ACTIONS(894), + [anon_sym_namespace] = ACTIONS(896), + [anon_sym_LBRACE] = ACTIONS(898), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [anon_sym_import] = ACTIONS(900), + [anon_sym_with] = ACTIONS(902), + [anon_sym_var] = ACTIONS(904), + [anon_sym_let] = ACTIONS(906), + [anon_sym_const] = ACTIONS(908), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(910), + [anon_sym_switch] = ACTIONS(912), + [anon_sym_for] = ACTIONS(914), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(916), + [anon_sym_do] = ACTIONS(918), + [anon_sym_try] = ACTIONS(920), + [anon_sym_break] = ACTIONS(922), + [anon_sym_continue] = ACTIONS(924), + [anon_sym_debugger] = ACTIONS(926), + [anon_sym_return] = ACTIONS(928), + [anon_sym_throw] = ACTIONS(930), + [anon_sym_SEMI] = ACTIONS(932), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(934), + [anon_sym_async] = ACTIONS(936), + [anon_sym_function] = ACTIONS(938), + [anon_sym_new] = ACTIONS(940), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45366,107 +45227,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_override] = ACTIONS(942), + [anon_sym_module] = ACTIONS(946), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), + [anon_sym_object] = ACTIONS(942), + [anon_sym_abstract] = ACTIONS(948), + [anon_sym_interface] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(952), [sym_html_comment] = ACTIONS(5), }, - [108] = { - [sym_export_statement] = STATE(1304), - [sym_declaration] = STATE(1304), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1304), - [sym_expression_statement] = STATE(1304), - [sym_variable_declaration] = STATE(1364), - [sym_lexical_declaration] = STATE(1364), - [sym_statement_block] = STATE(1304), - [sym_if_statement] = STATE(1304), - [sym_switch_statement] = STATE(1304), - [sym_for_statement] = STATE(1304), - [sym_for_in_statement] = STATE(1304), - [sym_while_statement] = STATE(1304), - [sym_do_statement] = STATE(1304), - [sym_try_statement] = STATE(1304), - [sym_with_statement] = STATE(1304), - [sym_break_statement] = STATE(1304), - [sym_continue_statement] = STATE(1304), - [sym_debugger_statement] = STATE(1304), - [sym_return_statement] = STATE(1304), - [sym_throw_statement] = STATE(1304), - [sym_empty_statement] = STATE(1304), - [sym_labeled_statement] = STATE(1304), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2637), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1364), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1364), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1364), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6906), - [sym_string] = STATE(3425), - [sym_comment] = STATE(108), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1364), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1364), - [sym_abstract_class_declaration] = STATE(1364), - [sym_module] = STATE(1364), - [sym_internal_module] = STATE(367), - [sym_import_alias] = STATE(1364), - [sym_interface_declaration] = STATE(1364), - [sym_enum_declaration] = STATE(1364), - [sym_type_alias_declaration] = STATE(1364), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4917), + [109] = { + [sym_export_statement] = STATE(1190), + [sym_declaration] = STATE(1190), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1190), + [sym_statement] = STATE(1189), + [sym_expression_statement] = STATE(1190), + [sym_variable_declaration] = STATE(1197), + [sym_lexical_declaration] = STATE(1197), + [sym_statement_block] = STATE(1190), + [sym_if_statement] = STATE(1190), + [sym_switch_statement] = STATE(1190), + [sym_for_statement] = STATE(1190), + [sym_for_in_statement] = STATE(1190), + [sym_while_statement] = STATE(1190), + [sym_do_statement] = STATE(1190), + [sym_try_statement] = STATE(1190), + [sym_with_statement] = STATE(1190), + [sym_break_statement] = STATE(1190), + [sym_continue_statement] = STATE(1190), + [sym_debugger_statement] = STATE(1190), + [sym_return_statement] = STATE(1190), + [sym_throw_statement] = STATE(1190), + [sym_empty_statement] = STATE(1190), + [sym_labeled_statement] = STATE(1190), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2583), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1197), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1197), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1197), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6349), + [sym_string] = STATE(3280), + [sym_comment] = STATE(109), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1197), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1197), + [sym_abstract_class_declaration] = STATE(1197), + [sym_module] = STATE(1197), + [sym_internal_module] = STATE(310), + [sym_import_alias] = STATE(1197), + [sym_interface_declaration] = STATE(1197), + [sym_enum_declaration] = STATE(1197), + [sym_type_alias_declaration] = STATE(1197), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4758), [sym_identifier] = ACTIONS(890), [anon_sym_export] = ACTIONS(892), [anon_sym_type] = ACTIONS(894), @@ -45544,121 +45406,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(952), [sym_html_comment] = ACTIONS(5), }, - [109] = { - [sym_export_statement] = STATE(6963), - [sym_declaration] = STATE(6963), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(6963), - [sym_expression_statement] = STATE(6963), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6963), - [sym_if_statement] = STATE(6963), - [sym_switch_statement] = STATE(6963), - [sym_for_statement] = STATE(6963), - [sym_for_in_statement] = STATE(6963), - [sym_while_statement] = STATE(6963), - [sym_do_statement] = STATE(6963), - [sym_try_statement] = STATE(6963), - [sym_with_statement] = STATE(6963), - [sym_break_statement] = STATE(6963), - [sym_continue_statement] = STATE(6963), - [sym_debugger_statement] = STATE(6963), - [sym_return_statement] = STATE(6963), - [sym_throw_statement] = STATE(6963), - [sym_empty_statement] = STATE(6963), - [sym_labeled_statement] = STATE(6963), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2687), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6490), - [sym_string] = STATE(3425), - [sym_comment] = STATE(109), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(6924), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3268), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4923), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [110] = { + [sym_export_statement] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1229), + [sym_statement] = STATE(1469), + [sym_expression_statement] = STATE(1229), + [sym_variable_declaration] = STATE(1450), + [sym_lexical_declaration] = STATE(1450), + [sym_statement_block] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_statement] = STATE(1229), + [sym_try_statement] = STATE(1229), + [sym_with_statement] = STATE(1229), + [sym_break_statement] = STATE(1229), + [sym_continue_statement] = STATE(1229), + [sym_debugger_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_throw_statement] = STATE(1229), + [sym_empty_statement] = STATE(1229), + [sym_labeled_statement] = STATE(1229), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2629), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1450), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1450), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1450), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6741), + [sym_string] = STATE(3280), + [sym_comment] = STATE(110), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1450), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1450), + [sym_abstract_class_declaration] = STATE(1450), + [sym_module] = STATE(1450), + [sym_internal_module] = STATE(370), + [sym_import_alias] = STATE(1450), + [sym_interface_declaration] = STATE(1450), + [sym_enum_declaration] = STATE(1450), + [sym_type_alias_declaration] = STATE(1450), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4658), + [sym_identifier] = ACTIONS(335), + [anon_sym_export] = ACTIONS(337), + [anon_sym_type] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_try] = ACTIONS(367), + [anon_sym_break] = ACTIONS(369), + [anon_sym_continue] = ACTIONS(371), + [anon_sym_debugger] = ACTIONS(373), + [anon_sym_return] = ACTIONS(375), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_SEMI] = ACTIONS(379), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), + [anon_sym_new] = ACTIONS(387), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -45680,107 +45543,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(389), + [anon_sym_readonly] = ACTIONS(389), + [anon_sym_get] = ACTIONS(389), + [anon_sym_set] = ACTIONS(389), + [anon_sym_declare] = ACTIONS(391), + [anon_sym_public] = ACTIONS(389), + [anon_sym_private] = ACTIONS(389), + [anon_sym_protected] = ACTIONS(389), + [anon_sym_override] = ACTIONS(389), + [anon_sym_module] = ACTIONS(393), + [anon_sym_any] = ACTIONS(389), + [anon_sym_number] = ACTIONS(389), + [anon_sym_boolean] = ACTIONS(389), + [anon_sym_string] = ACTIONS(389), + [anon_sym_symbol] = ACTIONS(389), + [anon_sym_object] = ACTIONS(389), + [anon_sym_abstract] = ACTIONS(395), + [anon_sym_interface] = ACTIONS(397), + [anon_sym_enum] = ACTIONS(399), [sym_html_comment] = ACTIONS(5), }, - [110] = { - [sym_export_statement] = STATE(1250), - [sym_declaration] = STATE(1250), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1250), - [sym_expression_statement] = STATE(1250), - [sym_variable_declaration] = STATE(1205), - [sym_lexical_declaration] = STATE(1205), - [sym_statement_block] = STATE(1250), - [sym_if_statement] = STATE(1250), - [sym_switch_statement] = STATE(1250), - [sym_for_statement] = STATE(1250), - [sym_for_in_statement] = STATE(1250), - [sym_while_statement] = STATE(1250), - [sym_do_statement] = STATE(1250), - [sym_try_statement] = STATE(1250), - [sym_with_statement] = STATE(1250), - [sym_break_statement] = STATE(1250), - [sym_continue_statement] = STATE(1250), - [sym_debugger_statement] = STATE(1250), - [sym_return_statement] = STATE(1250), - [sym_throw_statement] = STATE(1250), - [sym_empty_statement] = STATE(1250), - [sym_labeled_statement] = STATE(1250), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2709), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1205), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1205), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1205), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6460), - [sym_string] = STATE(3425), - [sym_comment] = STATE(110), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1205), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1205), - [sym_abstract_class_declaration] = STATE(1205), - [sym_module] = STATE(1205), - [sym_internal_module] = STATE(307), - [sym_import_alias] = STATE(1205), - [sym_interface_declaration] = STATE(1205), - [sym_enum_declaration] = STATE(1205), - [sym_type_alias_declaration] = STATE(1205), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4829), + [111] = { + [sym_export_statement] = STATE(6326), + [sym_declaration] = STATE(6326), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(6326), + [sym_statement] = STATE(7208), + [sym_expression_statement] = STATE(6326), + [sym_variable_declaration] = STATE(6327), + [sym_lexical_declaration] = STATE(6327), + [sym_statement_block] = STATE(6326), + [sym_if_statement] = STATE(6326), + [sym_switch_statement] = STATE(6326), + [sym_for_statement] = STATE(6326), + [sym_for_in_statement] = STATE(6326), + [sym_while_statement] = STATE(6326), + [sym_do_statement] = STATE(6326), + [sym_try_statement] = STATE(6326), + [sym_with_statement] = STATE(6326), + [sym_break_statement] = STATE(6326), + [sym_continue_statement] = STATE(6326), + [sym_debugger_statement] = STATE(6326), + [sym_return_statement] = STATE(6326), + [sym_throw_statement] = STATE(6326), + [sym_empty_statement] = STATE(6326), + [sym_labeled_statement] = STATE(6326), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2566), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(6327), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(6327), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(6327), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6453), + [sym_string] = STATE(3280), + [sym_comment] = STATE(111), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(6327), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(6327), + [sym_abstract_class_declaration] = STATE(6327), + [sym_module] = STATE(6327), + [sym_internal_module] = STATE(3097), + [sym_import_alias] = STATE(6327), + [sym_interface_declaration] = STATE(6327), + [sym_enum_declaration] = STATE(6327), + [sym_type_alias_declaration] = STATE(6327), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4691), [sym_identifier] = ACTIONS(826), [anon_sym_export] = ACTIONS(828), [anon_sym_type] = ACTIONS(830), @@ -45858,86 +45722,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [111] = { - [sym_export_statement] = STATE(1242), - [sym_declaration] = STATE(1242), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1242), - [sym_expression_statement] = STATE(1242), - [sym_variable_declaration] = STATE(1205), - [sym_lexical_declaration] = STATE(1205), - [sym_statement_block] = STATE(1242), - [sym_if_statement] = STATE(1242), - [sym_switch_statement] = STATE(1242), - [sym_for_statement] = STATE(1242), - [sym_for_in_statement] = STATE(1242), - [sym_while_statement] = STATE(1242), - [sym_do_statement] = STATE(1242), - [sym_try_statement] = STATE(1242), - [sym_with_statement] = STATE(1242), - [sym_break_statement] = STATE(1242), - [sym_continue_statement] = STATE(1242), - [sym_debugger_statement] = STATE(1242), - [sym_return_statement] = STATE(1242), - [sym_throw_statement] = STATE(1242), - [sym_empty_statement] = STATE(1242), - [sym_labeled_statement] = STATE(1242), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2709), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1205), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1205), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1205), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6460), - [sym_string] = STATE(3425), - [sym_comment] = STATE(111), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1205), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1205), - [sym_abstract_class_declaration] = STATE(1205), - [sym_module] = STATE(1205), - [sym_internal_module] = STATE(307), - [sym_import_alias] = STATE(1205), - [sym_interface_declaration] = STATE(1205), - [sym_enum_declaration] = STATE(1205), - [sym_type_alias_declaration] = STATE(1205), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4829), + [112] = { + [sym_export_statement] = STATE(6326), + [sym_declaration] = STATE(6326), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(6326), + [sym_statement] = STATE(6949), + [sym_expression_statement] = STATE(6326), + [sym_variable_declaration] = STATE(6327), + [sym_lexical_declaration] = STATE(6327), + [sym_statement_block] = STATE(6326), + [sym_if_statement] = STATE(6326), + [sym_switch_statement] = STATE(6326), + [sym_for_statement] = STATE(6326), + [sym_for_in_statement] = STATE(6326), + [sym_while_statement] = STATE(6326), + [sym_do_statement] = STATE(6326), + [sym_try_statement] = STATE(6326), + [sym_with_statement] = STATE(6326), + [sym_break_statement] = STATE(6326), + [sym_continue_statement] = STATE(6326), + [sym_debugger_statement] = STATE(6326), + [sym_return_statement] = STATE(6326), + [sym_throw_statement] = STATE(6326), + [sym_empty_statement] = STATE(6326), + [sym_labeled_statement] = STATE(6326), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2566), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(6327), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(6327), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(6327), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6453), + [sym_string] = STATE(3280), + [sym_comment] = STATE(112), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(6327), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(6327), + [sym_abstract_class_declaration] = STATE(6327), + [sym_module] = STATE(6327), + [sym_internal_module] = STATE(3097), + [sym_import_alias] = STATE(6327), + [sym_interface_declaration] = STATE(6327), + [sym_enum_declaration] = STATE(6327), + [sym_type_alias_declaration] = STATE(6327), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4691), [sym_identifier] = ACTIONS(826), [anon_sym_export] = ACTIONS(828), [anon_sym_type] = ACTIONS(830), @@ -46015,121 +45880,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [112] = { - [sym_export_statement] = STATE(7132), - [sym_declaration] = STATE(7132), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(7132), - [sym_expression_statement] = STATE(7132), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(7132), - [sym_if_statement] = STATE(7132), - [sym_switch_statement] = STATE(7132), - [sym_for_statement] = STATE(7132), - [sym_for_in_statement] = STATE(7132), - [sym_while_statement] = STATE(7132), - [sym_do_statement] = STATE(7132), - [sym_try_statement] = STATE(7132), - [sym_with_statement] = STATE(7132), - [sym_break_statement] = STATE(7132), - [sym_continue_statement] = STATE(7132), - [sym_debugger_statement] = STATE(7132), - [sym_return_statement] = STATE(7132), - [sym_throw_statement] = STATE(7132), - [sym_empty_statement] = STATE(7132), - [sym_labeled_statement] = STATE(7132), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2687), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6490), - [sym_string] = STATE(3425), - [sym_comment] = STATE(112), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(6924), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3268), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4923), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [113] = { + [sym_export_statement] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1229), + [sym_statement] = STATE(1416), + [sym_expression_statement] = STATE(1229), + [sym_variable_declaration] = STATE(1450), + [sym_lexical_declaration] = STATE(1450), + [sym_statement_block] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_statement] = STATE(1229), + [sym_try_statement] = STATE(1229), + [sym_with_statement] = STATE(1229), + [sym_break_statement] = STATE(1229), + [sym_continue_statement] = STATE(1229), + [sym_debugger_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_throw_statement] = STATE(1229), + [sym_empty_statement] = STATE(1229), + [sym_labeled_statement] = STATE(1229), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2629), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1450), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1450), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1450), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6741), + [sym_string] = STATE(3280), + [sym_comment] = STATE(113), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1450), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1450), + [sym_abstract_class_declaration] = STATE(1450), + [sym_module] = STATE(1450), + [sym_internal_module] = STATE(370), + [sym_import_alias] = STATE(1450), + [sym_interface_declaration] = STATE(1450), + [sym_enum_declaration] = STATE(1450), + [sym_type_alias_declaration] = STATE(1450), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4658), + [sym_identifier] = ACTIONS(335), + [anon_sym_export] = ACTIONS(337), + [anon_sym_type] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_try] = ACTIONS(367), + [anon_sym_break] = ACTIONS(369), + [anon_sym_continue] = ACTIONS(371), + [anon_sym_debugger] = ACTIONS(373), + [anon_sym_return] = ACTIONS(375), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_SEMI] = ACTIONS(379), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), + [anon_sym_new] = ACTIONS(387), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46151,107 +46017,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(389), + [anon_sym_readonly] = ACTIONS(389), + [anon_sym_get] = ACTIONS(389), + [anon_sym_set] = ACTIONS(389), + [anon_sym_declare] = ACTIONS(391), + [anon_sym_public] = ACTIONS(389), + [anon_sym_private] = ACTIONS(389), + [anon_sym_protected] = ACTIONS(389), + [anon_sym_override] = ACTIONS(389), + [anon_sym_module] = ACTIONS(393), + [anon_sym_any] = ACTIONS(389), + [anon_sym_number] = ACTIONS(389), + [anon_sym_boolean] = ACTIONS(389), + [anon_sym_string] = ACTIONS(389), + [anon_sym_symbol] = ACTIONS(389), + [anon_sym_object] = ACTIONS(389), + [anon_sym_abstract] = ACTIONS(395), + [anon_sym_interface] = ACTIONS(397), + [anon_sym_enum] = ACTIONS(399), [sym_html_comment] = ACTIONS(5), }, - [113] = { - [sym_export_statement] = STATE(1725), - [sym_declaration] = STATE(1725), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1725), - [sym_expression_statement] = STATE(1725), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_statement_block] = STATE(1725), - [sym_if_statement] = STATE(1725), - [sym_switch_statement] = STATE(1725), - [sym_for_statement] = STATE(1725), - [sym_for_in_statement] = STATE(1725), - [sym_while_statement] = STATE(1725), - [sym_do_statement] = STATE(1725), - [sym_try_statement] = STATE(1725), - [sym_with_statement] = STATE(1725), - [sym_break_statement] = STATE(1725), - [sym_continue_statement] = STATE(1725), - [sym_debugger_statement] = STATE(1725), - [sym_return_statement] = STATE(1725), - [sym_throw_statement] = STATE(1725), - [sym_empty_statement] = STATE(1725), - [sym_labeled_statement] = STATE(1725), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6477), - [sym_string] = STATE(3425), - [sym_comment] = STATE(113), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4977), + [114] = { + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1624), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), + [sym_comment] = STATE(114), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4813), [sym_identifier] = ACTIONS(9), [anon_sym_export] = ACTIONS(13), [anon_sym_type] = ACTIONS(15), @@ -46329,121 +46196,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, - [114] = { - [sym_export_statement] = STATE(6743), - [sym_declaration] = STATE(6743), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(6743), - [sym_expression_statement] = STATE(6743), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6743), - [sym_if_statement] = STATE(6743), - [sym_switch_statement] = STATE(6743), - [sym_for_statement] = STATE(6743), - [sym_for_in_statement] = STATE(6743), - [sym_while_statement] = STATE(6743), - [sym_do_statement] = STATE(6743), - [sym_try_statement] = STATE(6743), - [sym_with_statement] = STATE(6743), - [sym_break_statement] = STATE(6743), - [sym_continue_statement] = STATE(6743), - [sym_debugger_statement] = STATE(6743), - [sym_return_statement] = STATE(6743), - [sym_throw_statement] = STATE(6743), - [sym_empty_statement] = STATE(6743), - [sym_labeled_statement] = STATE(6743), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2687), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6490), - [sym_string] = STATE(3425), - [sym_comment] = STATE(114), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(6924), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3268), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4923), - [sym_identifier] = ACTIONS(762), - [anon_sym_export] = ACTIONS(764), - [anon_sym_type] = ACTIONS(766), - [anon_sym_namespace] = ACTIONS(768), - [anon_sym_LBRACE] = ACTIONS(770), + [115] = { + [sym_export_statement] = STATE(6326), + [sym_declaration] = STATE(6326), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(6326), + [sym_statement] = STATE(6600), + [sym_expression_statement] = STATE(6326), + [sym_variable_declaration] = STATE(6327), + [sym_lexical_declaration] = STATE(6327), + [sym_statement_block] = STATE(6326), + [sym_if_statement] = STATE(6326), + [sym_switch_statement] = STATE(6326), + [sym_for_statement] = STATE(6326), + [sym_for_in_statement] = STATE(6326), + [sym_while_statement] = STATE(6326), + [sym_do_statement] = STATE(6326), + [sym_try_statement] = STATE(6326), + [sym_with_statement] = STATE(6326), + [sym_break_statement] = STATE(6326), + [sym_continue_statement] = STATE(6326), + [sym_debugger_statement] = STATE(6326), + [sym_return_statement] = STATE(6326), + [sym_throw_statement] = STATE(6326), + [sym_empty_statement] = STATE(6326), + [sym_labeled_statement] = STATE(6326), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2566), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(6327), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(6327), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(6327), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6453), + [sym_string] = STATE(3280), + [sym_comment] = STATE(115), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(6327), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(6327), + [sym_abstract_class_declaration] = STATE(6327), + [sym_module] = STATE(6327), + [sym_internal_module] = STATE(3097), + [sym_import_alias] = STATE(6327), + [sym_interface_declaration] = STATE(6327), + [sym_enum_declaration] = STATE(6327), + [sym_type_alias_declaration] = STATE(6327), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4691), + [sym_identifier] = ACTIONS(826), + [anon_sym_export] = ACTIONS(828), + [anon_sym_type] = ACTIONS(830), + [anon_sym_namespace] = ACTIONS(832), + [anon_sym_LBRACE] = ACTIONS(834), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(772), - [anon_sym_with] = ACTIONS(774), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(778), - [anon_sym_const] = ACTIONS(780), + [anon_sym_import] = ACTIONS(836), + [anon_sym_with] = ACTIONS(838), + [anon_sym_var] = ACTIONS(840), + [anon_sym_let] = ACTIONS(842), + [anon_sym_const] = ACTIONS(844), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(782), - [anon_sym_switch] = ACTIONS(784), - [anon_sym_for] = ACTIONS(786), + [anon_sym_if] = ACTIONS(846), + [anon_sym_switch] = ACTIONS(848), + [anon_sym_for] = ACTIONS(850), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(788), - [anon_sym_do] = ACTIONS(790), - [anon_sym_try] = ACTIONS(792), - [anon_sym_break] = ACTIONS(794), - [anon_sym_continue] = ACTIONS(796), - [anon_sym_debugger] = ACTIONS(798), - [anon_sym_return] = ACTIONS(800), - [anon_sym_throw] = ACTIONS(802), - [anon_sym_SEMI] = ACTIONS(804), + [anon_sym_while] = ACTIONS(852), + [anon_sym_do] = ACTIONS(854), + [anon_sym_try] = ACTIONS(856), + [anon_sym_break] = ACTIONS(858), + [anon_sym_continue] = ACTIONS(860), + [anon_sym_debugger] = ACTIONS(862), + [anon_sym_return] = ACTIONS(864), + [anon_sym_throw] = ACTIONS(866), + [anon_sym_SEMI] = ACTIONS(868), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(808), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(812), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(872), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(876), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -46465,107 +46333,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(814), - [anon_sym_readonly] = ACTIONS(814), - [anon_sym_get] = ACTIONS(814), - [anon_sym_set] = ACTIONS(814), - [anon_sym_declare] = ACTIONS(816), - [anon_sym_public] = ACTIONS(814), - [anon_sym_private] = ACTIONS(814), - [anon_sym_protected] = ACTIONS(814), - [anon_sym_override] = ACTIONS(814), - [anon_sym_module] = ACTIONS(818), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), - [anon_sym_object] = ACTIONS(814), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(878), + [anon_sym_readonly] = ACTIONS(878), + [anon_sym_get] = ACTIONS(878), + [anon_sym_set] = ACTIONS(878), + [anon_sym_declare] = ACTIONS(880), + [anon_sym_public] = ACTIONS(878), + [anon_sym_private] = ACTIONS(878), + [anon_sym_protected] = ACTIONS(878), + [anon_sym_override] = ACTIONS(878), + [anon_sym_module] = ACTIONS(882), + [anon_sym_any] = ACTIONS(878), + [anon_sym_number] = ACTIONS(878), + [anon_sym_boolean] = ACTIONS(878), + [anon_sym_string] = ACTIONS(878), + [anon_sym_symbol] = ACTIONS(878), + [anon_sym_object] = ACTIONS(878), + [anon_sym_abstract] = ACTIONS(884), + [anon_sym_interface] = ACTIONS(886), + [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, - [115] = { - [sym_export_statement] = STATE(1485), - [sym_declaration] = STATE(1485), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1485), - [sym_expression_statement] = STATE(1485), - [sym_variable_declaration] = STATE(1318), - [sym_lexical_declaration] = STATE(1318), - [sym_statement_block] = STATE(1485), - [sym_if_statement] = STATE(1485), - [sym_switch_statement] = STATE(1485), - [sym_for_statement] = STATE(1485), - [sym_for_in_statement] = STATE(1485), - [sym_while_statement] = STATE(1485), - [sym_do_statement] = STATE(1485), - [sym_try_statement] = STATE(1485), - [sym_with_statement] = STATE(1485), - [sym_break_statement] = STATE(1485), - [sym_continue_statement] = STATE(1485), - [sym_debugger_statement] = STATE(1485), - [sym_return_statement] = STATE(1485), - [sym_throw_statement] = STATE(1485), - [sym_empty_statement] = STATE(1485), - [sym_labeled_statement] = STATE(1485), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2744), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1318), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1318), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1318), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6589), - [sym_string] = STATE(3425), - [sym_comment] = STATE(115), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1318), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1318), - [sym_abstract_class_declaration] = STATE(1318), - [sym_module] = STATE(1318), - [sym_internal_module] = STATE(339), - [sym_import_alias] = STATE(1318), - [sym_interface_declaration] = STATE(1318), - [sym_enum_declaration] = STATE(1318), - [sym_type_alias_declaration] = STATE(1318), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4875), + [116] = { + [sym_export_statement] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1229), + [sym_statement] = STATE(1403), + [sym_expression_statement] = STATE(1229), + [sym_variable_declaration] = STATE(1450), + [sym_lexical_declaration] = STATE(1450), + [sym_statement_block] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_statement] = STATE(1229), + [sym_try_statement] = STATE(1229), + [sym_with_statement] = STATE(1229), + [sym_break_statement] = STATE(1229), + [sym_continue_statement] = STATE(1229), + [sym_debugger_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_throw_statement] = STATE(1229), + [sym_empty_statement] = STATE(1229), + [sym_labeled_statement] = STATE(1229), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2629), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1450), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1450), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1450), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6741), + [sym_string] = STATE(3280), + [sym_comment] = STATE(116), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1450), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1450), + [sym_abstract_class_declaration] = STATE(1450), + [sym_module] = STATE(1450), + [sym_internal_module] = STATE(370), + [sym_import_alias] = STATE(1450), + [sym_interface_declaration] = STATE(1450), + [sym_enum_declaration] = STATE(1450), + [sym_type_alias_declaration] = STATE(1450), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4658), [sym_identifier] = ACTIONS(335), [anon_sym_export] = ACTIONS(337), [anon_sym_type] = ACTIONS(341), @@ -46643,86 +46512,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(399), [sym_html_comment] = ACTIONS(5), }, - [116] = { - [sym_export_statement] = STATE(6969), - [sym_declaration] = STATE(6971), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(6974), - [sym_expression_statement] = STATE(6975), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_statement_block] = STATE(6977), - [sym_if_statement] = STATE(6979), - [sym_switch_statement] = STATE(6980), - [sym_for_statement] = STATE(6983), - [sym_for_in_statement] = STATE(6988), - [sym_while_statement] = STATE(6991), - [sym_do_statement] = STATE(6994), - [sym_try_statement] = STATE(6995), - [sym_with_statement] = STATE(6998), - [sym_break_statement] = STATE(7000), - [sym_continue_statement] = STATE(7007), - [sym_debugger_statement] = STATE(7010), - [sym_return_statement] = STATE(7015), - [sym_throw_statement] = STATE(7021), - [sym_empty_statement] = STATE(7022), - [sym_labeled_statement] = STATE(7049), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2687), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6490), - [sym_string] = STATE(3425), - [sym_comment] = STATE(116), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(6924), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3268), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4923), + [117] = { + [sym_export_statement] = STATE(1467), + [sym_declaration] = STATE(1467), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1467), + [sym_statement] = STATE(1268), + [sym_expression_statement] = STATE(1467), + [sym_variable_declaration] = STATE(1468), + [sym_lexical_declaration] = STATE(1468), + [sym_statement_block] = STATE(1467), + [sym_if_statement] = STATE(1467), + [sym_switch_statement] = STATE(1467), + [sym_for_statement] = STATE(1467), + [sym_for_in_statement] = STATE(1467), + [sym_while_statement] = STATE(1467), + [sym_do_statement] = STATE(1467), + [sym_try_statement] = STATE(1467), + [sym_with_statement] = STATE(1467), + [sym_break_statement] = STATE(1467), + [sym_continue_statement] = STATE(1467), + [sym_debugger_statement] = STATE(1467), + [sym_return_statement] = STATE(1467), + [sym_throw_statement] = STATE(1467), + [sym_empty_statement] = STATE(1467), + [sym_labeled_statement] = STATE(1467), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2600), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1468), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1468), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1468), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6356), + [sym_string] = STATE(3280), + [sym_comment] = STATE(117), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1468), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1468), + [sym_abstract_class_declaration] = STATE(1468), + [sym_module] = STATE(1468), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1468), + [sym_interface_declaration] = STATE(1468), + [sym_enum_declaration] = STATE(1468), + [sym_type_alias_declaration] = STATE(1468), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4817), [sym_identifier] = ACTIONS(762), [anon_sym_export] = ACTIONS(764), [anon_sym_type] = ACTIONS(766), @@ -46800,278 +46670,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(824), [sym_html_comment] = ACTIONS(5), }, - [117] = { - [sym_export_statement] = STATE(1287), - [sym_declaration] = STATE(1287), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1287), - [sym_expression_statement] = STATE(1287), - [sym_variable_declaration] = STATE(1364), - [sym_lexical_declaration] = STATE(1364), - [sym_statement_block] = STATE(1287), - [sym_if_statement] = STATE(1287), - [sym_switch_statement] = STATE(1287), - [sym_for_statement] = STATE(1287), - [sym_for_in_statement] = STATE(1287), - [sym_while_statement] = STATE(1287), - [sym_do_statement] = STATE(1287), - [sym_try_statement] = STATE(1287), - [sym_with_statement] = STATE(1287), - [sym_break_statement] = STATE(1287), - [sym_continue_statement] = STATE(1287), - [sym_debugger_statement] = STATE(1287), - [sym_return_statement] = STATE(1287), - [sym_throw_statement] = STATE(1287), - [sym_empty_statement] = STATE(1287), - [sym_labeled_statement] = STATE(1287), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2637), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1364), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1364), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1364), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6906), - [sym_string] = STATE(3425), - [sym_comment] = STATE(117), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1364), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1364), - [sym_abstract_class_declaration] = STATE(1364), - [sym_module] = STATE(1364), - [sym_internal_module] = STATE(367), - [sym_import_alias] = STATE(1364), - [sym_interface_declaration] = STATE(1364), - [sym_enum_declaration] = STATE(1364), - [sym_type_alias_declaration] = STATE(1364), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4917), - [sym_identifier] = ACTIONS(890), - [anon_sym_export] = ACTIONS(892), - [anon_sym_type] = ACTIONS(894), - [anon_sym_namespace] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(900), - [anon_sym_with] = ACTIONS(902), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(914), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(918), - [anon_sym_try] = ACTIONS(920), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_debugger] = ACTIONS(926), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(932), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(940), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(942), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(942), - [anon_sym_set] = ACTIONS(942), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_override] = ACTIONS(942), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(942), - [anon_sym_number] = ACTIONS(942), - [anon_sym_boolean] = ACTIONS(942), - [anon_sym_string] = ACTIONS(942), - [anon_sym_symbol] = ACTIONS(942), - [anon_sym_object] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), - [sym_html_comment] = ACTIONS(5), - }, [118] = { - [sym_export_statement] = STATE(1368), - [sym_declaration] = STATE(1368), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1368), - [sym_expression_statement] = STATE(1368), - [sym_variable_declaration] = STATE(1364), - [sym_lexical_declaration] = STATE(1364), - [sym_statement_block] = STATE(1368), - [sym_if_statement] = STATE(1368), - [sym_switch_statement] = STATE(1368), - [sym_for_statement] = STATE(1368), - [sym_for_in_statement] = STATE(1368), - [sym_while_statement] = STATE(1368), - [sym_do_statement] = STATE(1368), - [sym_try_statement] = STATE(1368), - [sym_with_statement] = STATE(1368), - [sym_break_statement] = STATE(1368), - [sym_continue_statement] = STATE(1368), - [sym_debugger_statement] = STATE(1368), - [sym_return_statement] = STATE(1368), - [sym_throw_statement] = STATE(1368), - [sym_empty_statement] = STATE(1368), - [sym_labeled_statement] = STATE(1368), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2637), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1364), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1364), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1364), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6906), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1229), + [sym_declaration] = STATE(1229), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1229), + [sym_statement] = STATE(1355), + [sym_expression_statement] = STATE(1229), + [sym_variable_declaration] = STATE(1450), + [sym_lexical_declaration] = STATE(1450), + [sym_statement_block] = STATE(1229), + [sym_if_statement] = STATE(1229), + [sym_switch_statement] = STATE(1229), + [sym_for_statement] = STATE(1229), + [sym_for_in_statement] = STATE(1229), + [sym_while_statement] = STATE(1229), + [sym_do_statement] = STATE(1229), + [sym_try_statement] = STATE(1229), + [sym_with_statement] = STATE(1229), + [sym_break_statement] = STATE(1229), + [sym_continue_statement] = STATE(1229), + [sym_debugger_statement] = STATE(1229), + [sym_return_statement] = STATE(1229), + [sym_throw_statement] = STATE(1229), + [sym_empty_statement] = STATE(1229), + [sym_labeled_statement] = STATE(1229), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2629), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1450), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1450), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1450), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6741), + [sym_string] = STATE(3280), [sym_comment] = STATE(118), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1364), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1364), - [sym_abstract_class_declaration] = STATE(1364), - [sym_module] = STATE(1364), - [sym_internal_module] = STATE(367), - [sym_import_alias] = STATE(1364), - [sym_interface_declaration] = STATE(1364), - [sym_enum_declaration] = STATE(1364), - [sym_type_alias_declaration] = STATE(1364), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4917), - [sym_identifier] = ACTIONS(890), - [anon_sym_export] = ACTIONS(892), - [anon_sym_type] = ACTIONS(894), - [anon_sym_namespace] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1450), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1450), + [sym_abstract_class_declaration] = STATE(1450), + [sym_module] = STATE(1450), + [sym_internal_module] = STATE(370), + [sym_import_alias] = STATE(1450), + [sym_interface_declaration] = STATE(1450), + [sym_enum_declaration] = STATE(1450), + [sym_type_alias_declaration] = STATE(1450), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4658), + [sym_identifier] = ACTIONS(335), + [anon_sym_export] = ACTIONS(337), + [anon_sym_type] = ACTIONS(341), + [anon_sym_namespace] = ACTIONS(343), + [anon_sym_LBRACE] = ACTIONS(345), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(900), - [anon_sym_with] = ACTIONS(902), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(908), + [anon_sym_import] = ACTIONS(347), + [anon_sym_with] = ACTIONS(349), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(353), + [anon_sym_const] = ACTIONS(355), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(914), + [anon_sym_if] = ACTIONS(357), + [anon_sym_switch] = ACTIONS(359), + [anon_sym_for] = ACTIONS(361), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(918), - [anon_sym_try] = ACTIONS(920), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_debugger] = ACTIONS(926), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_while] = ACTIONS(363), + [anon_sym_do] = ACTIONS(365), + [anon_sym_try] = ACTIONS(367), + [anon_sym_break] = ACTIONS(369), + [anon_sym_continue] = ACTIONS(371), + [anon_sym_debugger] = ACTIONS(373), + [anon_sym_return] = ACTIONS(375), + [anon_sym_throw] = ACTIONS(377), + [anon_sym_SEMI] = ACTIONS(379), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(940), + [anon_sym_class] = ACTIONS(381), + [anon_sym_async] = ACTIONS(383), + [anon_sym_function] = ACTIONS(385), + [anon_sym_new] = ACTIONS(387), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -47093,142 +46807,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(942), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(942), - [anon_sym_set] = ACTIONS(942), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_override] = ACTIONS(942), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(942), - [anon_sym_number] = ACTIONS(942), - [anon_sym_boolean] = ACTIONS(942), - [anon_sym_string] = ACTIONS(942), - [anon_sym_symbol] = ACTIONS(942), - [anon_sym_object] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [anon_sym_static] = ACTIONS(389), + [anon_sym_readonly] = ACTIONS(389), + [anon_sym_get] = ACTIONS(389), + [anon_sym_set] = ACTIONS(389), + [anon_sym_declare] = ACTIONS(391), + [anon_sym_public] = ACTIONS(389), + [anon_sym_private] = ACTIONS(389), + [anon_sym_protected] = ACTIONS(389), + [anon_sym_override] = ACTIONS(389), + [anon_sym_module] = ACTIONS(393), + [anon_sym_any] = ACTIONS(389), + [anon_sym_number] = ACTIONS(389), + [anon_sym_boolean] = ACTIONS(389), + [anon_sym_string] = ACTIONS(389), + [anon_sym_symbol] = ACTIONS(389), + [anon_sym_object] = ACTIONS(389), + [anon_sym_abstract] = ACTIONS(395), + [anon_sym_interface] = ACTIONS(397), + [anon_sym_enum] = ACTIONS(399), [sym_html_comment] = ACTIONS(5), }, [119] = { - [sym_export_statement] = STATE(1053), - [sym_declaration] = STATE(1020), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1055), - [sym_expression_statement] = STATE(1056), - [sym_variable_declaration] = STATE(1205), - [sym_lexical_declaration] = STATE(1205), - [sym_statement_block] = STATE(1057), - [sym_if_statement] = STATE(1059), - [sym_switch_statement] = STATE(1065), - [sym_for_statement] = STATE(1066), - [sym_for_in_statement] = STATE(1067), - [sym_while_statement] = STATE(1070), - [sym_do_statement] = STATE(1071), - [sym_try_statement] = STATE(1077), - [sym_with_statement] = STATE(1078), - [sym_break_statement] = STATE(1079), - [sym_continue_statement] = STATE(1080), - [sym_debugger_statement] = STATE(1085), - [sym_return_statement] = STATE(1086), - [sym_throw_statement] = STATE(1092), - [sym_empty_statement] = STATE(1094), - [sym_labeled_statement] = STATE(1095), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2709), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1205), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1205), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1205), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6460), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1552), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(119), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1205), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1205), - [sym_abstract_class_declaration] = STATE(1205), - [sym_module] = STATE(1205), - [sym_internal_module] = STATE(307), - [sym_import_alias] = STATE(1205), - [sym_interface_declaration] = STATE(1205), - [sym_enum_declaration] = STATE(1205), - [sym_type_alias_declaration] = STATE(1205), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4829), - [sym_identifier] = ACTIONS(826), - [anon_sym_export] = ACTIONS(828), - [anon_sym_type] = ACTIONS(830), - [anon_sym_namespace] = ACTIONS(832), - [anon_sym_LBRACE] = ACTIONS(834), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(836), - [anon_sym_with] = ACTIONS(838), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(842), - [anon_sym_const] = ACTIONS(844), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(846), - [anon_sym_switch] = ACTIONS(848), - [anon_sym_for] = ACTIONS(850), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(852), - [anon_sym_do] = ACTIONS(854), - [anon_sym_try] = ACTIONS(856), - [anon_sym_break] = ACTIONS(858), - [anon_sym_continue] = ACTIONS(860), - [anon_sym_debugger] = ACTIONS(862), - [anon_sym_return] = ACTIONS(864), - [anon_sym_throw] = ACTIONS(866), - [anon_sym_SEMI] = ACTIONS(868), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(872), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(876), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -47250,142 +46965,143 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(878), - [anon_sym_readonly] = ACTIONS(878), - [anon_sym_get] = ACTIONS(878), - [anon_sym_set] = ACTIONS(878), - [anon_sym_declare] = ACTIONS(880), - [anon_sym_public] = ACTIONS(878), - [anon_sym_private] = ACTIONS(878), - [anon_sym_protected] = ACTIONS(878), - [anon_sym_override] = ACTIONS(878), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), - [anon_sym_object] = ACTIONS(878), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [120] = { - [sym_export_statement] = STATE(1589), - [sym_declaration] = STATE(1591), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1596), - [sym_expression_statement] = STATE(1598), - [sym_variable_declaration] = STATE(1318), - [sym_lexical_declaration] = STATE(1318), - [sym_statement_block] = STATE(1603), - [sym_if_statement] = STATE(1610), - [sym_switch_statement] = STATE(1585), - [sym_for_statement] = STATE(1568), - [sym_for_in_statement] = STATE(1567), - [sym_while_statement] = STATE(1565), - [sym_do_statement] = STATE(1556), - [sym_try_statement] = STATE(1554), - [sym_with_statement] = STATE(1542), - [sym_break_statement] = STATE(1535), - [sym_continue_statement] = STATE(1534), - [sym_debugger_statement] = STATE(1526), - [sym_return_statement] = STATE(1524), - [sym_throw_statement] = STATE(1523), - [sym_empty_statement] = STATE(1522), - [sym_labeled_statement] = STATE(1521), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2744), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1318), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1318), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1318), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6589), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1588), + [sym_declaration] = STATE(1588), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1588), + [sym_statement] = STATE(1627), + [sym_expression_statement] = STATE(1588), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_statement_block] = STATE(1588), + [sym_if_statement] = STATE(1588), + [sym_switch_statement] = STATE(1588), + [sym_for_statement] = STATE(1588), + [sym_for_in_statement] = STATE(1588), + [sym_while_statement] = STATE(1588), + [sym_do_statement] = STATE(1588), + [sym_try_statement] = STATE(1588), + [sym_with_statement] = STATE(1588), + [sym_break_statement] = STATE(1588), + [sym_continue_statement] = STATE(1588), + [sym_debugger_statement] = STATE(1588), + [sym_return_statement] = STATE(1588), + [sym_throw_statement] = STATE(1588), + [sym_empty_statement] = STATE(1588), + [sym_labeled_statement] = STATE(1588), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6345), + [sym_string] = STATE(3280), [sym_comment] = STATE(120), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1318), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1318), - [sym_abstract_class_declaration] = STATE(1318), - [sym_module] = STATE(1318), - [sym_internal_module] = STATE(339), - [sym_import_alias] = STATE(1318), - [sym_interface_declaration] = STATE(1318), - [sym_enum_declaration] = STATE(1318), - [sym_type_alias_declaration] = STATE(1318), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4875), - [sym_identifier] = ACTIONS(335), - [anon_sym_export] = ACTIONS(337), - [anon_sym_type] = ACTIONS(341), - [anon_sym_namespace] = ACTIONS(343), - [anon_sym_LBRACE] = ACTIONS(345), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4813), + [sym_identifier] = ACTIONS(9), + [anon_sym_export] = ACTIONS(13), + [anon_sym_type] = ACTIONS(15), + [anon_sym_namespace] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(19), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(347), - [anon_sym_with] = ACTIONS(349), - [anon_sym_var] = ACTIONS(351), - [anon_sym_let] = ACTIONS(353), - [anon_sym_const] = ACTIONS(355), + [anon_sym_import] = ACTIONS(23), + [anon_sym_with] = ACTIONS(25), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(29), + [anon_sym_const] = ACTIONS(31), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(357), - [anon_sym_switch] = ACTIONS(359), - [anon_sym_for] = ACTIONS(361), + [anon_sym_if] = ACTIONS(33), + [anon_sym_switch] = ACTIONS(35), + [anon_sym_for] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(363), - [anon_sym_do] = ACTIONS(365), - [anon_sym_try] = ACTIONS(367), - [anon_sym_break] = ACTIONS(369), - [anon_sym_continue] = ACTIONS(371), - [anon_sym_debugger] = ACTIONS(373), - [anon_sym_return] = ACTIONS(375), - [anon_sym_throw] = ACTIONS(377), - [anon_sym_SEMI] = ACTIONS(379), + [anon_sym_while] = ACTIONS(43), + [anon_sym_do] = ACTIONS(45), + [anon_sym_try] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(383), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(387), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(73), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(77), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -47407,107 +47123,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(389), - [anon_sym_readonly] = ACTIONS(389), - [anon_sym_get] = ACTIONS(389), - [anon_sym_set] = ACTIONS(389), - [anon_sym_declare] = ACTIONS(391), - [anon_sym_public] = ACTIONS(389), - [anon_sym_private] = ACTIONS(389), - [anon_sym_protected] = ACTIONS(389), - [anon_sym_override] = ACTIONS(389), - [anon_sym_module] = ACTIONS(393), - [anon_sym_any] = ACTIONS(389), - [anon_sym_number] = ACTIONS(389), - [anon_sym_boolean] = ACTIONS(389), - [anon_sym_string] = ACTIONS(389), - [anon_sym_symbol] = ACTIONS(389), - [anon_sym_object] = ACTIONS(389), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), + [anon_sym_static] = ACTIONS(97), + [anon_sym_readonly] = ACTIONS(97), + [anon_sym_get] = ACTIONS(97), + [anon_sym_set] = ACTIONS(97), + [anon_sym_declare] = ACTIONS(99), + [anon_sym_public] = ACTIONS(97), + [anon_sym_private] = ACTIONS(97), + [anon_sym_protected] = ACTIONS(97), + [anon_sym_override] = ACTIONS(97), + [anon_sym_module] = ACTIONS(101), + [anon_sym_any] = ACTIONS(97), + [anon_sym_number] = ACTIONS(97), + [anon_sym_boolean] = ACTIONS(97), + [anon_sym_string] = ACTIONS(97), + [anon_sym_symbol] = ACTIONS(97), + [anon_sym_object] = ACTIONS(97), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [121] = { - [sym_export_statement] = STATE(1273), - [sym_declaration] = STATE(1272), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1267), - [sym_expression_statement] = STATE(1266), - [sym_variable_declaration] = STATE(1364), - [sym_lexical_declaration] = STATE(1364), - [sym_statement_block] = STATE(1265), - [sym_if_statement] = STATE(1264), - [sym_switch_statement] = STATE(1262), - [sym_for_statement] = STATE(1260), - [sym_for_in_statement] = STATE(1259), - [sym_while_statement] = STATE(1258), - [sym_do_statement] = STATE(1257), - [sym_try_statement] = STATE(1578), - [sym_with_statement] = STATE(1302), - [sym_break_statement] = STATE(1308), - [sym_continue_statement] = STATE(1330), - [sym_debugger_statement] = STATE(1331), - [sym_return_statement] = STATE(1335), - [sym_throw_statement] = STATE(1336), - [sym_empty_statement] = STATE(1354), - [sym_labeled_statement] = STATE(1372), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2637), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1364), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1364), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1364), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6906), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1190), + [sym_declaration] = STATE(1190), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1190), + [sym_statement] = STATE(994), + [sym_expression_statement] = STATE(1190), + [sym_variable_declaration] = STATE(1197), + [sym_lexical_declaration] = STATE(1197), + [sym_statement_block] = STATE(1190), + [sym_if_statement] = STATE(1190), + [sym_switch_statement] = STATE(1190), + [sym_for_statement] = STATE(1190), + [sym_for_in_statement] = STATE(1190), + [sym_while_statement] = STATE(1190), + [sym_do_statement] = STATE(1190), + [sym_try_statement] = STATE(1190), + [sym_with_statement] = STATE(1190), + [sym_break_statement] = STATE(1190), + [sym_continue_statement] = STATE(1190), + [sym_debugger_statement] = STATE(1190), + [sym_return_statement] = STATE(1190), + [sym_throw_statement] = STATE(1190), + [sym_empty_statement] = STATE(1190), + [sym_labeled_statement] = STATE(1190), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2583), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1197), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1197), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1197), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6349), + [sym_string] = STATE(3280), [sym_comment] = STATE(121), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1364), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1364), - [sym_abstract_class_declaration] = STATE(1364), - [sym_module] = STATE(1364), - [sym_internal_module] = STATE(367), - [sym_import_alias] = STATE(1364), - [sym_interface_declaration] = STATE(1364), - [sym_enum_declaration] = STATE(1364), - [sym_type_alias_declaration] = STATE(1364), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4917), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1197), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1197), + [sym_abstract_class_declaration] = STATE(1197), + [sym_module] = STATE(1197), + [sym_internal_module] = STATE(310), + [sym_import_alias] = STATE(1197), + [sym_interface_declaration] = STATE(1197), + [sym_enum_declaration] = STATE(1197), + [sym_type_alias_declaration] = STATE(1197), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4758), [sym_identifier] = ACTIONS(890), [anon_sym_export] = ACTIONS(892), [anon_sym_type] = ACTIONS(894), @@ -47586,120 +47303,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [122] = { - [sym_export_statement] = STATE(1431), - [sym_declaration] = STATE(1431), - [sym_import] = STATE(4341), - [sym_import_statement] = STATE(1431), - [sym_expression_statement] = STATE(1431), - [sym_variable_declaration] = STATE(1364), - [sym_lexical_declaration] = STATE(1364), - [sym_statement_block] = STATE(1431), - [sym_if_statement] = STATE(1431), - [sym_switch_statement] = STATE(1431), - [sym_for_statement] = STATE(1431), - [sym_for_in_statement] = STATE(1431), - [sym_while_statement] = STATE(1431), - [sym_do_statement] = STATE(1431), - [sym_try_statement] = STATE(1431), - [sym_with_statement] = STATE(1431), - [sym_break_statement] = STATE(1431), - [sym_continue_statement] = STATE(1431), - [sym_debugger_statement] = STATE(1431), - [sym_return_statement] = STATE(1431), - [sym_throw_statement] = STATE(1431), - [sym_empty_statement] = STATE(1431), - [sym_labeled_statement] = STATE(1431), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2637), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1364), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1364), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1364), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6906), - [sym_string] = STATE(3425), + [sym_export_statement] = STATE(1467), + [sym_declaration] = STATE(1467), + [sym_import] = STATE(4300), + [sym_import_statement] = STATE(1467), + [sym_statement] = STATE(1234), + [sym_expression_statement] = STATE(1467), + [sym_variable_declaration] = STATE(1468), + [sym_lexical_declaration] = STATE(1468), + [sym_statement_block] = STATE(1467), + [sym_if_statement] = STATE(1467), + [sym_switch_statement] = STATE(1467), + [sym_for_statement] = STATE(1467), + [sym_for_in_statement] = STATE(1467), + [sym_while_statement] = STATE(1467), + [sym_do_statement] = STATE(1467), + [sym_try_statement] = STATE(1467), + [sym_with_statement] = STATE(1467), + [sym_break_statement] = STATE(1467), + [sym_continue_statement] = STATE(1467), + [sym_debugger_statement] = STATE(1467), + [sym_return_statement] = STATE(1467), + [sym_throw_statement] = STATE(1467), + [sym_empty_statement] = STATE(1467), + [sym_labeled_statement] = STATE(1467), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2600), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1468), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1468), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1468), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6356), + [sym_string] = STATE(3280), [sym_comment] = STATE(122), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_function_signature] = STATE(1364), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1364), - [sym_abstract_class_declaration] = STATE(1364), - [sym_module] = STATE(1364), - [sym_internal_module] = STATE(367), - [sym_import_alias] = STATE(1364), - [sym_interface_declaration] = STATE(1364), - [sym_enum_declaration] = STATE(1364), - [sym_type_alias_declaration] = STATE(1364), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(4917), - [sym_identifier] = ACTIONS(890), - [anon_sym_export] = ACTIONS(892), - [anon_sym_type] = ACTIONS(894), - [anon_sym_namespace] = ACTIONS(896), - [anon_sym_LBRACE] = ACTIONS(898), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_function_signature] = STATE(1468), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1468), + [sym_abstract_class_declaration] = STATE(1468), + [sym_module] = STATE(1468), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1468), + [sym_interface_declaration] = STATE(1468), + [sym_enum_declaration] = STATE(1468), + [sym_type_alias_declaration] = STATE(1468), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4817), + [sym_identifier] = ACTIONS(762), + [anon_sym_export] = ACTIONS(764), + [anon_sym_type] = ACTIONS(766), + [anon_sym_namespace] = ACTIONS(768), + [anon_sym_LBRACE] = ACTIONS(770), [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(900), - [anon_sym_with] = ACTIONS(902), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(906), - [anon_sym_const] = ACTIONS(908), + [anon_sym_import] = ACTIONS(772), + [anon_sym_with] = ACTIONS(774), + [anon_sym_var] = ACTIONS(776), + [anon_sym_let] = ACTIONS(778), + [anon_sym_const] = ACTIONS(780), [anon_sym_BANG] = ACTIONS(21), - [anon_sym_if] = ACTIONS(910), - [anon_sym_switch] = ACTIONS(912), - [anon_sym_for] = ACTIONS(914), + [anon_sym_if] = ACTIONS(782), + [anon_sym_switch] = ACTIONS(784), + [anon_sym_for] = ACTIONS(786), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_while] = ACTIONS(916), - [anon_sym_do] = ACTIONS(918), - [anon_sym_try] = ACTIONS(920), - [anon_sym_break] = ACTIONS(922), - [anon_sym_continue] = ACTIONS(924), - [anon_sym_debugger] = ACTIONS(926), - [anon_sym_return] = ACTIONS(928), - [anon_sym_throw] = ACTIONS(930), - [anon_sym_SEMI] = ACTIONS(932), + [anon_sym_while] = ACTIONS(788), + [anon_sym_do] = ACTIONS(790), + [anon_sym_try] = ACTIONS(792), + [anon_sym_break] = ACTIONS(794), + [anon_sym_continue] = ACTIONS(796), + [anon_sym_debugger] = ACTIONS(798), + [anon_sym_return] = ACTIONS(800), + [anon_sym_throw] = ACTIONS(802), + [anon_sym_SEMI] = ACTIONS(804), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(936), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(940), + [anon_sym_class] = ACTIONS(806), + [anon_sym_async] = ACTIONS(808), + [anon_sym_function] = ACTIONS(810), + [anon_sym_new] = ACTIONS(812), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), [anon_sym_DASH] = ACTIONS(21), @@ -47721,174 +47439,330 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(942), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(942), - [anon_sym_set] = ACTIONS(942), - [anon_sym_declare] = ACTIONS(944), - [anon_sym_public] = ACTIONS(942), - [anon_sym_private] = ACTIONS(942), - [anon_sym_protected] = ACTIONS(942), - [anon_sym_override] = ACTIONS(942), - [anon_sym_module] = ACTIONS(946), - [anon_sym_any] = ACTIONS(942), - [anon_sym_number] = ACTIONS(942), - [anon_sym_boolean] = ACTIONS(942), - [anon_sym_string] = ACTIONS(942), - [anon_sym_symbol] = ACTIONS(942), - [anon_sym_object] = ACTIONS(942), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [anon_sym_static] = ACTIONS(814), + [anon_sym_readonly] = ACTIONS(814), + [anon_sym_get] = ACTIONS(814), + [anon_sym_set] = ACTIONS(814), + [anon_sym_declare] = ACTIONS(816), + [anon_sym_public] = ACTIONS(814), + [anon_sym_private] = ACTIONS(814), + [anon_sym_protected] = ACTIONS(814), + [anon_sym_override] = ACTIONS(814), + [anon_sym_module] = ACTIONS(818), + [anon_sym_any] = ACTIONS(814), + [anon_sym_number] = ACTIONS(814), + [anon_sym_boolean] = ACTIONS(814), + [anon_sym_string] = ACTIONS(814), + [anon_sym_symbol] = ACTIONS(814), + [anon_sym_object] = ACTIONS(814), + [anon_sym_abstract] = ACTIONS(820), + [anon_sym_interface] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(824), [sym_html_comment] = ACTIONS(5), }, [123] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2881), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6355), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3147), + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3331), + [sym_primary_expression] = STATE(2585), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3280), [sym_comment] = STATE(123), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(5442), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6194), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(669), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6354), - [aux_sym_array_pattern_repeat1] = STATE(6332), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), [sym_identifier] = ACTIONS(954), [anon_sym_export] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(958), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(138), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(966), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(975), + [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(979), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(184), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(983), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [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_object] = ACTIONS(956), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [124] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2739), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5736), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3154), + [sym_comment] = STATE(124), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(5094), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(5786), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5737), + [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_identifier] = ACTIONS(987), + [anon_sym_export] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(995), + [anon_sym_typeof] = ACTIONS(997), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(989), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(974), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_RBRACK] = ACTIONS(1007), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(978), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(1021), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(180), [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(1027), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(182), [sym_false] = ACTIONS(182), [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(996), + [sym_undefined] = ACTIONS(1029), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(1031), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(1000), - [anon_sym_number] = ACTIONS(1000), - [anon_sym_boolean] = ACTIONS(1000), - [anon_sym_string] = ACTIONS(1000), - [anon_sym_symbol] = ACTIONS(1000), - [anon_sym_object] = ACTIONS(1000), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(1033), + [anon_sym_number] = ACTIONS(1033), + [anon_sym_boolean] = ACTIONS(1033), + [anon_sym_string] = ACTIONS(1033), + [anon_sym_symbol] = ACTIONS(1033), + [anon_sym_object] = ACTIONS(1033), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), @@ -47898,153 +47772,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [124] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2881), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6355), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3147), - [sym_comment] = STATE(124), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(5442), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(5822), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(669), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6354), - [aux_sym_array_pattern_repeat1] = STATE(6332), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), + [125] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2714), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5656), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3154), + [sym_comment] = STATE(125), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(5094), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(5786), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5657), + [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_identifier] = ACTIONS(987), + [anon_sym_export] = ACTIONS(989), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(1002), - [anon_sym_typeof] = ACTIONS(964), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(995), + [anon_sym_typeof] = ACTIONS(997), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), + [anon_sym_let] = ACTIONS(989), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(1004), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_RBRACK] = ACTIONS(1035), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(978), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(1021), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(180), [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(1027), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(182), [sym_false] = ACTIONS(182), [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(996), + [sym_undefined] = ACTIONS(1029), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(1031), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(1000), - [anon_sym_number] = ACTIONS(1000), - [anon_sym_boolean] = ACTIONS(1000), - [anon_sym_string] = ACTIONS(1000), - [anon_sym_symbol] = ACTIONS(1000), - [anon_sym_object] = ACTIONS(1000), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(1033), + [anon_sym_number] = ACTIONS(1033), + [anon_sym_boolean] = ACTIONS(1033), + [anon_sym_string] = ACTIONS(1033), + [anon_sym_symbol] = ACTIONS(1033), + [anon_sym_object] = ACTIONS(1033), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), @@ -48054,153 +47928,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [125] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2881), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6355), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3147), - [sym_comment] = STATE(125), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(5442), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6194), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(669), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6354), - [aux_sym_array_pattern_repeat1] = STATE(6332), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), + [126] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2739), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5736), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3154), + [sym_comment] = STATE(126), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(5094), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(5786), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5737), + [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_identifier] = ACTIONS(987), + [anon_sym_export] = ACTIONS(989), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(964), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(995), + [anon_sym_typeof] = ACTIONS(997), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), + [anon_sym_let] = ACTIONS(989), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(1006), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_RBRACK] = ACTIONS(1037), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(978), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(1021), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(180), [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(1027), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(182), [sym_false] = ACTIONS(182), [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(996), + [sym_undefined] = ACTIONS(1029), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(1031), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(1000), - [anon_sym_number] = ACTIONS(1000), - [anon_sym_boolean] = ACTIONS(1000), - [anon_sym_string] = ACTIONS(1000), - [anon_sym_symbol] = ACTIONS(1000), - [anon_sym_object] = ACTIONS(1000), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(1033), + [anon_sym_number] = ACTIONS(1033), + [anon_sym_boolean] = ACTIONS(1033), + [anon_sym_string] = ACTIONS(1033), + [anon_sym_symbol] = ACTIONS(1033), + [anon_sym_object] = ACTIONS(1033), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), @@ -48210,153 +48084,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [126] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2881), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6355), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3147), - [sym_comment] = STATE(126), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(5442), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6194), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(669), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6354), - [aux_sym_array_pattern_repeat1] = STATE(6332), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), + [127] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2739), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5736), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3154), + [sym_comment] = STATE(127), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(5094), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(5786), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5737), + [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_identifier] = ACTIONS(987), + [anon_sym_export] = ACTIONS(989), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(964), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(995), + [anon_sym_typeof] = ACTIONS(997), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), + [anon_sym_let] = ACTIONS(989), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(1008), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_RBRACK] = ACTIONS(1039), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(978), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(1021), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(180), [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(1027), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(182), [sym_false] = ACTIONS(182), [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(996), + [sym_undefined] = ACTIONS(1029), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(1031), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(1000), - [anon_sym_number] = ACTIONS(1000), - [anon_sym_boolean] = ACTIONS(1000), - [anon_sym_string] = ACTIONS(1000), - [anon_sym_symbol] = ACTIONS(1000), - [anon_sym_object] = ACTIONS(1000), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(1033), + [anon_sym_number] = ACTIONS(1033), + [anon_sym_boolean] = ACTIONS(1033), + [anon_sym_string] = ACTIONS(1033), + [anon_sym_symbol] = ACTIONS(1033), + [anon_sym_object] = ACTIONS(1033), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), @@ -48366,153 +48240,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [127] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2881), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6355), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3147), - [sym_comment] = STATE(127), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(5442), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6194), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(669), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6354), - [aux_sym_array_pattern_repeat1] = STATE(6332), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), + [128] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2739), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5736), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3154), + [sym_comment] = STATE(128), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(5094), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(5854), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5737), + [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_identifier] = ACTIONS(987), + [anon_sym_export] = ACTIONS(989), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(964), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(1041), + [anon_sym_typeof] = ACTIONS(997), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), + [anon_sym_let] = ACTIONS(989), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(1010), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_RBRACK] = ACTIONS(1043), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(978), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(1021), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(180), [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(1027), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(182), [sym_false] = ACTIONS(182), [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(996), + [sym_undefined] = ACTIONS(1029), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(1031), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(1000), - [anon_sym_number] = ACTIONS(1000), - [anon_sym_boolean] = ACTIONS(1000), - [anon_sym_string] = ACTIONS(1000), - [anon_sym_symbol] = ACTIONS(1000), - [anon_sym_object] = ACTIONS(1000), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(1033), + [anon_sym_number] = ACTIONS(1033), + [anon_sym_boolean] = ACTIONS(1033), + [anon_sym_string] = ACTIONS(1033), + [anon_sym_symbol] = ACTIONS(1033), + [anon_sym_object] = ACTIONS(1033), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), @@ -48522,86 +48396,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [128] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3458), - [sym_primary_expression] = STATE(2747), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3425), - [sym_comment] = STATE(128), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), + [129] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3331), + [sym_primary_expression] = STATE(2585), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3280), + [sym_comment] = STATE(129), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_identifier] = ACTIONS(954), + [anon_sym_export] = ACTIONS(956), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_type] = ACTIONS(956), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1045), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(956), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(966), [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(969), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(975), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(979), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -48643,8 +48517,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), @@ -48654,177 +48528,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_undefined] = ACTIONS(983), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [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_object] = ACTIONS(956), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [129] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2881), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6355), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3147), - [sym_comment] = STATE(129), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(5442), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6194), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(669), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6354), - [aux_sym_array_pattern_repeat1] = STATE(6332), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), + [130] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2739), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5736), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3154), + [sym_comment] = STATE(130), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(5094), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(5786), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5737), + [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_identifier] = ACTIONS(987), + [anon_sym_export] = ACTIONS(989), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(964), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(995), + [anon_sym_typeof] = ACTIONS(997), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), + [anon_sym_let] = ACTIONS(989), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(1045), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_RBRACK] = ACTIONS(1047), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(978), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(1021), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(180), [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(1027), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(182), [sym_false] = ACTIONS(182), [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(996), + [sym_undefined] = ACTIONS(1029), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(1031), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(1000), - [anon_sym_number] = ACTIONS(1000), - [anon_sym_boolean] = ACTIONS(1000), - [anon_sym_string] = ACTIONS(1000), - [anon_sym_symbol] = ACTIONS(1000), - [anon_sym_object] = ACTIONS(1000), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(1033), + [anon_sym_number] = ACTIONS(1033), + [anon_sym_boolean] = ACTIONS(1033), + [anon_sym_string] = ACTIONS(1033), + [anon_sym_symbol] = ACTIONS(1033), + [anon_sym_object] = ACTIONS(1033), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), @@ -48834,153 +48708,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [130] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2881), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6355), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3147), - [sym_comment] = STATE(130), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(5442), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6194), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(669), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6354), - [aux_sym_array_pattern_repeat1] = STATE(6332), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), + [131] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2739), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5736), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3154), + [sym_comment] = STATE(131), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(5094), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(5786), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5737), + [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_identifier] = ACTIONS(987), + [anon_sym_export] = ACTIONS(989), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(964), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(995), + [anon_sym_typeof] = ACTIONS(997), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), + [anon_sym_let] = ACTIONS(989), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(1047), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_RBRACK] = ACTIONS(1049), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(978), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(1021), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(180), [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(1027), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(182), [sym_false] = ACTIONS(182), [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(996), + [sym_undefined] = ACTIONS(1029), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(1031), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(1000), - [anon_sym_number] = ACTIONS(1000), - [anon_sym_boolean] = ACTIONS(1000), - [anon_sym_string] = ACTIONS(1000), - [anon_sym_symbol] = ACTIONS(1000), - [anon_sym_object] = ACTIONS(1000), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(1033), + [anon_sym_number] = ACTIONS(1033), + [anon_sym_boolean] = ACTIONS(1033), + [anon_sym_string] = ACTIONS(1033), + [anon_sym_symbol] = ACTIONS(1033), + [anon_sym_object] = ACTIONS(1033), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), @@ -48990,153 +48864,309 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [131] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2897), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6336), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3147), - [sym_comment] = STATE(131), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(5442), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6194), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(669), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6335), - [aux_sym_array_pattern_repeat1] = STATE(6332), + [132] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3331), + [sym_primary_expression] = STATE(2585), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3280), + [sym_comment] = STATE(132), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5734), [sym_identifier] = ACTIONS(954), [anon_sym_export] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(113), + [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(964), + [anon_sym_EQ] = ACTIONS(958), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(138), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(966), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(975), + [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(979), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(184), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(983), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [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_object] = ACTIONS(956), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [133] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2739), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5736), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3154), + [sym_comment] = STATE(133), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(5094), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(5786), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5737), + [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_identifier] = ACTIONS(987), + [anon_sym_export] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(995), + [anon_sym_typeof] = ACTIONS(997), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(989), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(1049), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_RBRACK] = ACTIONS(1053), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(978), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(1021), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(180), [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(1027), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(182), [sym_false] = ACTIONS(182), [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(996), + [sym_undefined] = ACTIONS(1029), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(1031), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(1000), - [anon_sym_number] = ACTIONS(1000), - [anon_sym_boolean] = ACTIONS(1000), - [anon_sym_string] = ACTIONS(1000), - [anon_sym_symbol] = ACTIONS(1000), - [anon_sym_object] = ACTIONS(1000), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(1033), + [anon_sym_number] = ACTIONS(1033), + [anon_sym_boolean] = ACTIONS(1033), + [anon_sym_string] = ACTIONS(1033), + [anon_sym_symbol] = ACTIONS(1033), + [anon_sym_object] = ACTIONS(1033), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), @@ -49146,153 +49176,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [132] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2881), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6355), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3147), - [sym_comment] = STATE(132), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(5442), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6194), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(669), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6354), - [aux_sym_array_pattern_repeat1] = STATE(6332), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), + [134] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2714), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5656), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3154), + [sym_comment] = STATE(134), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(5094), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(5786), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5657), + [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_identifier] = ACTIONS(987), + [anon_sym_export] = ACTIONS(989), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(964), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(995), + [anon_sym_typeof] = ACTIONS(997), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), + [anon_sym_let] = ACTIONS(989), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(1051), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_RBRACK] = ACTIONS(1055), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(978), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(1021), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(180), [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(1027), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(182), [sym_false] = ACTIONS(182), [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(996), + [sym_undefined] = ACTIONS(1029), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(1031), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(1000), - [anon_sym_number] = ACTIONS(1000), - [anon_sym_boolean] = ACTIONS(1000), - [anon_sym_string] = ACTIONS(1000), - [anon_sym_symbol] = ACTIONS(1000), - [anon_sym_object] = ACTIONS(1000), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(1033), + [anon_sym_number] = ACTIONS(1033), + [anon_sym_boolean] = ACTIONS(1033), + [anon_sym_string] = ACTIONS(1033), + [anon_sym_symbol] = ACTIONS(1033), + [anon_sym_object] = ACTIONS(1033), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), @@ -49302,153 +49332,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [133] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2897), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6336), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3147), - [sym_comment] = STATE(133), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(5442), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6194), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(669), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6335), - [aux_sym_array_pattern_repeat1] = STATE(6332), - [sym_identifier] = ACTIONS(954), - [anon_sym_export] = ACTIONS(956), + [135] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2739), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5736), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3154), + [sym_comment] = STATE(135), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(5094), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(5786), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5737), + [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_identifier] = ACTIONS(987), + [anon_sym_export] = ACTIONS(989), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(962), - [anon_sym_typeof] = ACTIONS(964), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(993), + [anon_sym_COMMA] = ACTIONS(995), + [anon_sym_typeof] = ACTIONS(997), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), + [anon_sym_let] = ACTIONS(989), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), - [anon_sym_RBRACK] = ACTIONS(1053), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1005), + [anon_sym_RBRACK] = ACTIONS(1057), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(978), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(982), + [anon_sym_new] = ACTIONS(1011), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1015), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(1021), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(180), [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(1027), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(182), [sym_false] = ACTIONS(182), [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(996), + [sym_undefined] = ACTIONS(1029), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(998), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(1031), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [anon_sym_any] = ACTIONS(1000), - [anon_sym_number] = ACTIONS(1000), - [anon_sym_boolean] = ACTIONS(1000), - [anon_sym_string] = ACTIONS(1000), - [anon_sym_symbol] = ACTIONS(1000), - [anon_sym_object] = ACTIONS(1000), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(1033), + [anon_sym_number] = ACTIONS(1033), + [anon_sym_boolean] = ACTIONS(1033), + [anon_sym_string] = ACTIONS(1033), + [anon_sym_symbol] = ACTIONS(1033), + [anon_sym_object] = ACTIONS(1033), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), @@ -49458,86 +49488,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [134] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3458), - [sym_primary_expression] = STATE(2747), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3425), - [sym_comment] = STATE(134), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [aux_sym_object_repeat1] = STATE(6287), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), + [136] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(136), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5012), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_type] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_COMMA] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(124), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1066), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(1069), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -49554,6 +49583,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(160), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -49562,12 +49592,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(133), + [anon_sym_DASH] = ACTIONS(133), + [anon_sym_SLASH] = ACTIONS(170), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(83), + [anon_sym_LT] = ACTIONS(1071), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -49579,276 +49609,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(177), + [anon_sym_DASH_DASH] = ACTIONS(177), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1074), + [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_this] = ACTIONS(1077), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(111), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(111), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [135] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3458), - [sym_primary_expression] = STATE(2747), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3425), - [sym_comment] = STATE(135), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), + [137] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(137), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5067), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_type] = ACTIONS(111), + [anon_sym_EQ] = ACTIONS(212), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_COMMA] = ACTIONS(215), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(133), + [anon_sym_LPAREN] = ACTIONS(1063), + [anon_sym_RPAREN] = ACTIONS(215), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(215), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1066), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(217), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [136] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(136), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5190), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(212), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(215), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1069), + [anon_sym_new] = ACTIONS(1069), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -49897,7 +49770,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1074), [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1077), + [sym_this] = ACTIONS(1081), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), @@ -49925,54 +49798,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [137] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(137), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5406), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [138] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(138), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5065), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), @@ -50052,161 +49925,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1074), [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1081), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [138] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(138), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5292), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(111), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(133), - [anon_sym_LPAREN] = ACTIONS(1063), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1066), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(133), - [anon_sym_DASH] = ACTIONS(133), - [anon_sym_SLASH] = ACTIONS(170), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1071), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(177), - [anon_sym_DASH_DASH] = ACTIONS(177), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1074), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(1083), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -50236,53 +49954,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [139] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(139), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5434), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5134), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), @@ -50391,53 +50109,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [140] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(140), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5509), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5012), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), @@ -50517,7 +50235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1074), [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1087), + [sym_this] = ACTIONS(1077), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), @@ -50546,53 +50264,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [141] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(141), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5511), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5136), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), @@ -50672,7 +50390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1074), [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1089), + [sym_this] = ACTIONS(1087), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), @@ -50701,53 +50419,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [142] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(142), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5401), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5154), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), @@ -50827,7 +50545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1074), [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1091), + [sym_this] = ACTIONS(1089), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), @@ -50856,53 +50574,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [143] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(143), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5292), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5163), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(118), @@ -50982,7 +50700,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BQUOTE] = ACTIONS(1074), [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1083), + [sym_this] = ACTIONS(1091), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), @@ -51011,51 +50729,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [144] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(144), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), @@ -51115,7 +50833,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -51130,8 +50848,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -51165,51 +50883,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [145] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(145), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), @@ -51269,7 +50987,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -51284,8 +51002,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -51319,85 +51037,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [146] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2494), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym__formal_parameter] = STATE(6363), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2254), - [sym_subscript_expression] = STATE(2254), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5145), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7123), - [sym_string] = STATE(3252), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2442), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym__formal_parameter] = STATE(5644), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2111), + [sym_subscript_expression] = STATE(2111), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4886), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7305), + [sym_string] = STATE(3203), [sym_comment] = STATE(146), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(5296), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2254), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(5025), + [sym_pattern] = STATE(4887), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2111), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(468), - [sym_required_parameter] = STATE(6578), - [sym_optional_parameter] = STATE(6578), - [sym__parameter_name] = STATE(4589), - [sym__type] = STATE(5693), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(735), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(361), + [sym_override_modifier] = STATE(467), + [sym_required_parameter] = STATE(6427), + [sym_optional_parameter] = STATE(6427), + [sym__parameter_name] = STATE(4511), + [sym__type] = STATE(5521), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(775), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(391), [sym_identifier] = ACTIONS(1119), [anon_sym_export] = ACTIONS(1121), [anon_sym_STAR] = ACTIONS(113), @@ -51427,7 +51145,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1145), [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1147), @@ -51472,85 +51190,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [147] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2494), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym__formal_parameter] = STATE(6363), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2254), - [sym_subscript_expression] = STATE(2254), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5145), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7123), - [sym_string] = STATE(3252), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2400), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym__formal_parameter] = STATE(5644), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2111), + [sym_subscript_expression] = STATE(2111), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4886), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7174), + [sym_string] = STATE(3203), [sym_comment] = STATE(147), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(5296), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2254), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(5025), + [sym_pattern] = STATE(4887), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2111), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(468), - [sym_required_parameter] = STATE(6578), - [sym_optional_parameter] = STATE(6578), - [sym__parameter_name] = STATE(4589), - [sym__type] = STATE(5620), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(735), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(361), + [sym_override_modifier] = STATE(467), + [sym_required_parameter] = STATE(6427), + [sym_optional_parameter] = STATE(6427), + [sym__parameter_name] = STATE(4511), + [sym__type] = STATE(5521), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(775), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(391), [sym_identifier] = ACTIONS(1119), [anon_sym_export] = ACTIONS(1121), [anon_sym_STAR] = ACTIONS(113), @@ -51580,7 +51298,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1145), [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1147), @@ -51625,85 +51343,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [148] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2560), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym__formal_parameter] = STATE(6363), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2254), - [sym_subscript_expression] = STATE(2254), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5145), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7488), - [sym_string] = STATE(3252), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2400), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym__formal_parameter] = STATE(5644), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2111), + [sym_subscript_expression] = STATE(2111), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4886), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7174), + [sym_string] = STATE(3203), [sym_comment] = STATE(148), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(5296), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2254), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(5025), + [sym_pattern] = STATE(4887), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2111), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(468), - [sym_required_parameter] = STATE(6578), - [sym_optional_parameter] = STATE(6578), - [sym__parameter_name] = STATE(4589), - [sym__type] = STATE(5620), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(735), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(361), + [sym_override_modifier] = STATE(467), + [sym_required_parameter] = STATE(6427), + [sym_optional_parameter] = STATE(6427), + [sym__parameter_name] = STATE(4511), + [sym__type] = STATE(5510), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(775), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(391), [sym_identifier] = ACTIONS(1119), [anon_sym_export] = ACTIONS(1121), [anon_sym_STAR] = ACTIONS(113), @@ -51733,7 +51451,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1145), [anon_sym_DASH] = ACTIONS(1145), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1147), @@ -51778,84 +51496,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [149] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym__formal_parameter] = STATE(6363), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3147), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym__formal_parameter] = STATE(5644), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3154), [sym_comment] = STATE(149), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(5296), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(5025), + [sym_pattern] = STATE(4887), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(468), - [sym_required_parameter] = STATE(6578), - [sym_optional_parameter] = STATE(6578), - [sym__parameter_name] = STATE(4589), - [sym__type] = STATE(5620), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(801), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(361), + [sym_override_modifier] = STATE(467), + [sym_required_parameter] = STATE(6427), + [sym_optional_parameter] = STATE(6427), + [sym__parameter_name] = STATE(4511), + [sym__type] = STATE(5495), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(657), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(391), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), @@ -51885,13 +51603,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(168), [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(175), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(180), [sym_number] = ACTIONS(182), @@ -51930,82 +51648,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [150] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3458), - [sym_primary_expression] = STATE(2747), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3425), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(150), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1179), + [anon_sym_export] = ACTIONS(1181), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_type] = ACTIONS(1181), + [anon_sym_EQ] = ACTIONS(1183), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(1181), [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1181), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1191), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1193), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(1195), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -52032,159 +51751,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [151] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(151), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -52199,8 +51766,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -52212,106 +51779,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_readonly] = ACTIONS(1181), + [anon_sym_get] = ACTIONS(1181), + [anon_sym_set] = ACTIONS(1181), + [anon_sym_declare] = ACTIONS(1181), + [anon_sym_public] = ACTIONS(1181), + [anon_sym_private] = ACTIONS(1181), + [anon_sym_protected] = ACTIONS(1181), + [anon_sym_override] = ACTIONS(1181), + [anon_sym_module] = ACTIONS(1181), + [anon_sym_any] = ACTIONS(1181), + [anon_sym_number] = ACTIONS(1181), + [anon_sym_boolean] = ACTIONS(1181), + [anon_sym_string] = ACTIONS(1181), + [anon_sym_symbol] = ACTIONS(1181), + [anon_sym_object] = ACTIONS(1181), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [152] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym__formal_parameter] = STATE(6363), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3147), - [sym_comment] = STATE(152), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(5296), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), + [151] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym__formal_parameter] = STATE(5644), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3154), + [sym_comment] = STATE(151), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(5025), + [sym_pattern] = STATE(4887), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(468), - [sym_required_parameter] = STATE(6578), - [sym_optional_parameter] = STATE(6578), - [sym__parameter_name] = STATE(4589), - [sym__type] = STATE(5638), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(801), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(361), + [sym_override_modifier] = STATE(467), + [sym_required_parameter] = STATE(6427), + [sym_optional_parameter] = STATE(6427), + [sym__parameter_name] = STATE(4511), + [sym__type] = STATE(5521), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(657), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(391), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), @@ -52341,13 +51907,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(168), [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(175), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(180), [sym_number] = ACTIONS(182), @@ -52385,387 +51951,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [153] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3458), - [sym_primary_expression] = STATE(2747), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3425), - [sym_comment] = STATE(153), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1185), - [anon_sym_export] = ACTIONS(1187), + [152] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(152), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5095), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6862), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1187), - [anon_sym_EQ] = ACTIONS(1189), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_EQ] = ACTIONS(212), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1191), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_COMMA] = ACTIONS(215), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_RPAREN] = ACTIONS(215), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(215), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1193), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1183), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1195), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1197), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1187), - [anon_sym_readonly] = ACTIONS(1187), - [anon_sym_get] = ACTIONS(1187), - [anon_sym_set] = ACTIONS(1187), - [anon_sym_declare] = ACTIONS(1187), - [anon_sym_public] = ACTIONS(1187), - [anon_sym_private] = ACTIONS(1187), - [anon_sym_protected] = ACTIONS(1187), - [anon_sym_override] = ACTIONS(1187), - [anon_sym_module] = ACTIONS(1187), - [anon_sym_any] = ACTIONS(1187), - [anon_sym_number] = ACTIONS(1187), - [anon_sym_boolean] = ACTIONS(1187), - [anon_sym_string] = ACTIONS(1187), - [anon_sym_symbol] = ACTIONS(1187), - [anon_sym_object] = ACTIONS(1187), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [154] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym__formal_parameter] = STATE(6363), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3147), - [sym_comment] = STATE(154), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(5296), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(468), - [sym_required_parameter] = STATE(6578), - [sym_optional_parameter] = STATE(6578), - [sym__parameter_name] = STATE(4589), - [sym__type] = STATE(5545), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(801), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(127), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(142), - [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DOT] = ACTIONS(1105), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(180), - [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1171), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(182), - [sym_false] = ACTIONS(182), - [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(190), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(196), - [anon_sym_number] = ACTIONS(196), - [anon_sym_boolean] = ACTIONS(196), - [anon_sym_string] = ACTIONS(196), - [anon_sym_symbol] = ACTIONS(196), - [anon_sym_object] = ACTIONS(196), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [155] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3458), - [sym_primary_expression] = STATE(2747), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3425), - [sym_comment] = STATE(155), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1179), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1199), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(217), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(1109), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -52792,7 +52054,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -52807,118 +52069,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [156] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(156), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5444), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(7046), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1201), - [anon_sym_export] = ACTIONS(1203), + [153] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(153), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5095), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6862), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1197), + [anon_sym_export] = ACTIONS(1199), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1203), - [anon_sym_EQ] = ACTIONS(1205), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1203), + [anon_sym_let] = ACTIONS(1199), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(124), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_RBRACK] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1213), + [anon_sym_async] = ACTIONS(1203), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1217), + [anon_sym_new] = ACTIONS(1205), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -52945,7 +52206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -52960,8 +52221,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -52973,101 +52234,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1203), - [anon_sym_readonly] = ACTIONS(1203), - [anon_sym_get] = ACTIONS(1203), - [anon_sym_set] = ACTIONS(1203), - [anon_sym_declare] = ACTIONS(1203), - [anon_sym_public] = ACTIONS(1203), - [anon_sym_private] = ACTIONS(1203), - [anon_sym_protected] = ACTIONS(1203), - [anon_sym_override] = ACTIONS(1203), - [anon_sym_module] = ACTIONS(1203), - [anon_sym_any] = ACTIONS(1203), - [anon_sym_number] = ACTIONS(1203), - [anon_sym_boolean] = ACTIONS(1203), - [anon_sym_string] = ACTIONS(1203), - [anon_sym_symbol] = ACTIONS(1203), - [anon_sym_object] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [157] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(157), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5444), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(7046), - [aux_sym_export_statement_repeat1] = STATE(5589), + [154] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(154), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(212), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(215), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(215), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_DOT] = ACTIONS(969), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), [anon_sym_using] = ACTIONS(158), @@ -53096,7 +52358,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -53111,8 +52373,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -53128,7 +52390,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(1095), [anon_sym_get] = ACTIONS(1095), [anon_sym_set] = ACTIONS(1095), - [anon_sym_QMARK] = ACTIONS(215), [anon_sym_declare] = ACTIONS(1095), [anon_sym_public] = ACTIONS(1095), [anon_sym_private] = ACTIONS(1095), @@ -53142,86 +52403,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1095), [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [158] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(158), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5444), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(7046), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1219), - [anon_sym_export] = ACTIONS(1221), + [155] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3331), + [sym_primary_expression] = STATE(2585), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3280), + [sym_comment] = STATE(155), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(954), + [anon_sym_export] = ACTIONS(956), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1221), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_type] = ACTIONS(956), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(956), [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), + [anon_sym_in] = ACTIONS(1209), + [anon_sym_of] = ACTIONS(1212), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1225), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(975), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1227), + [anon_sym_new] = ACTIONS(979), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -53248,7 +52510,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -53263,118 +52525,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(983), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1221), - [anon_sym_readonly] = ACTIONS(1221), - [anon_sym_get] = ACTIONS(1221), - [anon_sym_set] = ACTIONS(1221), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_declare] = ACTIONS(1221), - [anon_sym_public] = ACTIONS(1221), - [anon_sym_private] = ACTIONS(1221), - [anon_sym_protected] = ACTIONS(1221), - [anon_sym_override] = ACTIONS(1221), - [anon_sym_module] = ACTIONS(1221), - [anon_sym_any] = ACTIONS(1221), - [anon_sym_number] = ACTIONS(1221), - [anon_sym_boolean] = ACTIONS(1221), - [anon_sym_string] = ACTIONS(1221), - [anon_sym_symbol] = ACTIONS(1221), - [anon_sym_object] = ACTIONS(1221), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [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_object] = ACTIONS(956), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [159] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(159), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1201), - [anon_sym_export] = ACTIONS(1203), + [156] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3331), + [sym_primary_expression] = STATE(2585), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3280), + [sym_comment] = STATE(156), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5095), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6862), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1214), + [anon_sym_export] = ACTIONS(1216), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1203), - [anon_sym_EQ] = ACTIONS(1205), + [anon_sym_type] = ACTIONS(1216), + [anon_sym_EQ] = ACTIONS(1218), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1203), + [anon_sym_let] = ACTIONS(1216), [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_RBRACK] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1213), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_function] = ACTIONS(975), + [anon_sym_EQ_GT] = ACTIONS(1224), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1217), + [anon_sym_new] = ACTIONS(1226), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -53401,7 +52662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -53416,116 +52677,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(983), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1203), - [anon_sym_readonly] = ACTIONS(1203), - [anon_sym_get] = ACTIONS(1203), - [anon_sym_set] = ACTIONS(1203), - [anon_sym_declare] = ACTIONS(1203), - [anon_sym_public] = ACTIONS(1203), - [anon_sym_private] = ACTIONS(1203), - [anon_sym_protected] = ACTIONS(1203), - [anon_sym_override] = ACTIONS(1203), - [anon_sym_module] = ACTIONS(1203), - [anon_sym_any] = ACTIONS(1203), - [anon_sym_number] = ACTIONS(1203), - [anon_sym_boolean] = ACTIONS(1203), - [anon_sym_string] = ACTIONS(1203), - [anon_sym_symbol] = ACTIONS(1203), - [anon_sym_object] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_readonly] = ACTIONS(1216), + [anon_sym_get] = ACTIONS(1216), + [anon_sym_set] = ACTIONS(1216), + [anon_sym_declare] = ACTIONS(1216), + [anon_sym_public] = ACTIONS(1216), + [anon_sym_private] = ACTIONS(1216), + [anon_sym_protected] = ACTIONS(1216), + [anon_sym_override] = ACTIONS(1216), + [anon_sym_module] = ACTIONS(1216), + [anon_sym_any] = ACTIONS(1216), + [anon_sym_number] = ACTIONS(1216), + [anon_sym_boolean] = ACTIONS(1216), + [anon_sym_string] = ACTIONS(1216), + [anon_sym_symbol] = ACTIONS(1216), + [anon_sym_object] = ACTIONS(1216), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [160] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3458), - [sym_primary_expression] = STATE(2747), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3425), - [sym_comment] = STATE(160), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5444), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(7046), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1185), - [anon_sym_export] = ACTIONS(1187), + [157] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3331), + [sym_primary_expression] = STATE(2585), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3280), + [sym_comment] = STATE(157), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(954), + [anon_sym_export] = ACTIONS(956), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1187), - [anon_sym_EQ] = ACTIONS(1189), + [anon_sym_type] = ACTIONS(956), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1191), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1187), + [anon_sym_let] = ACTIONS(956), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1230), [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(969), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1193), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1183), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(975), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1195), + [anon_sym_new] = ACTIONS(979), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -53552,7 +52814,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -53567,8 +52829,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), @@ -53578,106 +52840,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_undefined] = ACTIONS(983), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1187), - [anon_sym_readonly] = ACTIONS(1187), - [anon_sym_get] = ACTIONS(1187), - [anon_sym_set] = ACTIONS(1187), - [anon_sym_declare] = ACTIONS(1187), - [anon_sym_public] = ACTIONS(1187), - [anon_sym_private] = ACTIONS(1187), - [anon_sym_protected] = ACTIONS(1187), - [anon_sym_override] = ACTIONS(1187), - [anon_sym_module] = ACTIONS(1187), - [anon_sym_any] = ACTIONS(1187), - [anon_sym_number] = ACTIONS(1187), - [anon_sym_boolean] = ACTIONS(1187), - [anon_sym_string] = ACTIONS(1187), - [anon_sym_symbol] = ACTIONS(1187), - [anon_sym_object] = ACTIONS(1187), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [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_object] = ACTIONS(956), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [161] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(161), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), + [158] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym__formal_parameter] = STATE(5644), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3154), + [sym_comment] = STATE(158), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(5025), + [sym_pattern] = STATE(4887), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym_accessibility_modifier] = STATE(431), + [sym_override_modifier] = STATE(467), + [sym_required_parameter] = STATE(6427), + [sym_optional_parameter] = STATE(6427), + [sym__parameter_name] = STATE(4511), + [sym__type] = STATE(5523), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(657), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(391), + [sym_identifier] = ACTIONS(109), + [anon_sym_export] = ACTIONS(111), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(122), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(111), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_RPAREN] = ACTIONS(1131), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(142), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(180), + [sym_number] = ACTIONS(182), + [sym_private_property_identifier] = ACTIONS(184), + [sym_this] = ACTIONS(1171), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(182), + [sym_false] = ACTIONS(182), + [sym_null] = ACTIONS(182), + [sym_undefined] = ACTIONS(190), + [anon_sym_AT] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1173), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(196), + [anon_sym_number] = ACTIONS(196), + [anon_sym_boolean] = ACTIONS(196), + [anon_sym_string] = ACTIONS(196), + [anon_sym_symbol] = ACTIONS(196), + [anon_sym_object] = ACTIONS(196), + [anon_sym_abstract] = ACTIONS(198), + [anon_sym_infer] = ACTIONS(200), + [anon_sym_keyof] = ACTIONS(202), + [anon_sym_unique] = ACTIONS(204), + [anon_sym_unknown] = ACTIONS(206), + [anon_sym_never] = ACTIONS(206), + [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [sym_html_comment] = ACTIONS(5), + }, + [159] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3331), + [sym_primary_expression] = STATE(2585), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3280), + [sym_comment] = STATE(159), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(954), + [anon_sym_export] = ACTIONS(956), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_type] = ACTIONS(956), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), + [anon_sym_let] = ACTIONS(956), [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1232), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(975), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), + [anon_sym_new] = ACTIONS(979), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -53704,7 +53118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -53719,117 +53133,269 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(983), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [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_object] = ACTIONS(956), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [162] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3458), - [sym_primary_expression] = STATE(2747), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3425), - [sym_comment] = STATE(162), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5444), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(7046), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), + [160] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym__formal_parameter] = STATE(5644), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3154), + [sym_comment] = STATE(160), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(5025), + [sym_pattern] = STATE(4887), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym_accessibility_modifier] = STATE(431), + [sym_override_modifier] = STATE(467), + [sym_required_parameter] = STATE(6427), + [sym_optional_parameter] = STATE(6427), + [sym__parameter_name] = STATE(4511), + [sym__type] = STATE(5510), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(657), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(391), + [sym_identifier] = ACTIONS(109), + [anon_sym_export] = ACTIONS(111), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(122), + [anon_sym_typeof] = ACTIONS(127), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(111), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_RPAREN] = ACTIONS(1131), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(142), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(156), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(168), + [anon_sym_DASH] = ACTIONS(168), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(180), + [sym_number] = ACTIONS(182), + [sym_private_property_identifier] = ACTIONS(184), + [sym_this] = ACTIONS(1171), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(182), + [sym_false] = ACTIONS(182), + [sym_null] = ACTIONS(182), + [sym_undefined] = ACTIONS(190), + [anon_sym_AT] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(1173), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(196), + [anon_sym_number] = ACTIONS(196), + [anon_sym_boolean] = ACTIONS(196), + [anon_sym_string] = ACTIONS(196), + [anon_sym_symbol] = ACTIONS(196), + [anon_sym_object] = ACTIONS(196), + [anon_sym_abstract] = ACTIONS(198), + [anon_sym_infer] = ACTIONS(200), + [anon_sym_keyof] = ACTIONS(202), + [anon_sym_unique] = ACTIONS(204), + [anon_sym_unknown] = ACTIONS(206), + [anon_sym_never] = ACTIONS(206), + [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [sym_html_comment] = ACTIONS(5), + }, + [161] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3331), + [sym_primary_expression] = STATE(2585), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3280), + [sym_comment] = STATE(161), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1214), + [anon_sym_export] = ACTIONS(1216), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_type] = ACTIONS(1216), + [anon_sym_EQ] = ACTIONS(1218), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(1220), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(1216), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(969), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1222), + [anon_sym_function] = ACTIONS(975), + [anon_sym_EQ_GT] = ACTIONS(1224), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(1226), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -53856,7 +53422,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -53871,8 +53437,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), @@ -53882,106 +53448,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_undefined] = ACTIONS(983), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1216), + [anon_sym_readonly] = ACTIONS(1216), + [anon_sym_get] = ACTIONS(1216), + [anon_sym_set] = ACTIONS(1216), + [anon_sym_declare] = ACTIONS(1216), + [anon_sym_public] = ACTIONS(1216), + [anon_sym_private] = ACTIONS(1216), + [anon_sym_protected] = ACTIONS(1216), + [anon_sym_override] = ACTIONS(1216), + [anon_sym_module] = ACTIONS(1216), + [anon_sym_any] = ACTIONS(1216), + [anon_sym_number] = ACTIONS(1216), + [anon_sym_boolean] = ACTIONS(1216), + [anon_sym_string] = ACTIONS(1216), + [anon_sym_symbol] = ACTIONS(1216), + [anon_sym_object] = ACTIONS(1216), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [163] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3458), - [sym_primary_expression] = STATE(2747), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3425), - [sym_comment] = STATE(163), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), + [162] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3331), + [sym_primary_expression] = STATE(2585), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3280), + [sym_comment] = STATE(162), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(954), + [anon_sym_export] = ACTIONS(956), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_type] = ACTIONS(956), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(956), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1234), [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(969), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(975), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(979), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -54023,8 +53589,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), @@ -54034,106 +53600,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_undefined] = ACTIONS(983), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [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_object] = ACTIONS(956), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [164] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(164), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1219), - [anon_sym_export] = ACTIONS(1221), + [163] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3331), + [sym_primary_expression] = STATE(2585), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3280), + [sym_comment] = STATE(163), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(954), + [anon_sym_export] = ACTIONS(956), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1221), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_type] = ACTIONS(956), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(956), [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1236), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1225), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(975), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1227), + [anon_sym_new] = ACTIONS(979), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -54160,7 +53726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -54175,117 +53741,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(983), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1221), - [anon_sym_readonly] = ACTIONS(1221), - [anon_sym_get] = ACTIONS(1221), - [anon_sym_set] = ACTIONS(1221), - [anon_sym_QMARK] = ACTIONS(215), - [anon_sym_declare] = ACTIONS(1221), - [anon_sym_public] = ACTIONS(1221), - [anon_sym_private] = ACTIONS(1221), - [anon_sym_protected] = ACTIONS(1221), - [anon_sym_override] = ACTIONS(1221), - [anon_sym_module] = ACTIONS(1221), - [anon_sym_any] = ACTIONS(1221), - [anon_sym_number] = ACTIONS(1221), - [anon_sym_boolean] = ACTIONS(1221), - [anon_sym_string] = ACTIONS(1221), - [anon_sym_symbol] = ACTIONS(1221), - [anon_sym_object] = ACTIONS(1221), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [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_object] = ACTIONS(956), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [165] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3458), - [sym_primary_expression] = STATE(2747), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3425), - [sym_comment] = STATE(165), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), + [164] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3331), + [sym_primary_expression] = STATE(2585), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3280), + [sym_comment] = STATE(164), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(954), + [anon_sym_export] = ACTIONS(956), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_type] = ACTIONS(956), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(956), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1229), [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(969), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(975), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(979), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -54327,8 +53893,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), @@ -54338,108 +53904,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_undefined] = ACTIONS(983), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [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_object] = ACTIONS(956), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [166] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym__formal_parameter] = STATE(6363), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3147), - [sym_comment] = STATE(166), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(5296), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), + [165] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym__formal_parameter] = STATE(5644), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3154), + [sym_comment] = STATE(165), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(5025), + [sym_pattern] = STATE(4887), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(468), - [sym_required_parameter] = STATE(6578), - [sym_optional_parameter] = STATE(6578), - [sym__parameter_name] = STATE(4589), - [sym__type] = STATE(5659), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(801), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(361), + [sym_override_modifier] = STATE(467), + [sym_required_parameter] = STATE(6427), + [sym_optional_parameter] = STATE(6427), + [sym__parameter_name] = STATE(4511), + [sym__type] = STATE(5429), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(657), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(391), [sym_identifier] = ACTIONS(109), [anon_sym_export] = ACTIONS(111), [anon_sym_STAR] = ACTIONS(113), @@ -54469,13 +54035,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(168), [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(175), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(180), [sym_number] = ACTIONS(182), @@ -54513,52 +54079,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, + [166] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(166), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5095), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6862), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1179), + [anon_sym_export] = ACTIONS(1181), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1181), + [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(173), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1181), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(138), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_RBRACK] = ACTIONS(118), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1191), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1193), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(1195), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(184), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_readonly] = ACTIONS(1181), + [anon_sym_get] = ACTIONS(1181), + [anon_sym_set] = ACTIONS(1181), + [anon_sym_declare] = ACTIONS(1181), + [anon_sym_public] = ACTIONS(1181), + [anon_sym_private] = ACTIONS(1181), + [anon_sym_protected] = ACTIONS(1181), + [anon_sym_override] = ACTIONS(1181), + [anon_sym_module] = ACTIONS(1181), + [anon_sym_any] = ACTIONS(1181), + [anon_sym_number] = ACTIONS(1181), + [anon_sym_boolean] = ACTIONS(1181), + [anon_sym_string] = ACTIONS(1181), + [anon_sym_symbol] = ACTIONS(1181), + [anon_sym_object] = ACTIONS(1181), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, [167] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(167), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), @@ -54588,7 +54306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_GT] = ACTIONS(1193), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), [anon_sym_using] = ACTIONS(158), @@ -54617,7 +54335,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -54632,8 +54350,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -54666,82 +54384,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [168] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3458), - [sym_primary_expression] = STATE(2747), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3425), + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3331), + [sym_primary_expression] = STATE(2585), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3280), [sym_comment] = STATE(168), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(954), + [anon_sym_export] = ACTIONS(956), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_type] = ACTIONS(956), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(956), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(1231), - [anon_sym_of] = ACTIONS(1234), + [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1238), [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(969), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(975), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(979), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -54783,8 +54501,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), @@ -54794,258 +54512,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_undefined] = ACTIONS(983), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [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_object] = ACTIONS(956), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [169] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym__formal_parameter] = STATE(6363), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3147), + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3331), + [sym_primary_expression] = STATE(2585), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3280), [sym_comment] = STATE(169), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(5296), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(468), - [sym_required_parameter] = STATE(6578), - [sym_optional_parameter] = STATE(6578), - [sym__parameter_name] = STATE(4589), - [sym__type] = STATE(5693), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(801), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(109), - [anon_sym_export] = ACTIONS(111), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(122), - [anon_sym_typeof] = ACTIONS(127), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5095), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6862), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(954), + [anon_sym_export] = ACTIONS(956), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(956), + [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_const] = ACTIONS(131), + [anon_sym_let] = ACTIONS(956), [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_RPAREN] = ACTIONS(1131), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(138), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(142), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(156), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(168), - [anon_sym_DASH] = ACTIONS(168), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(180), - [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1171), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(182), - [sym_false] = ACTIONS(182), - [sym_null] = ACTIONS(182), - [sym_undefined] = ACTIONS(190), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(1173), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(196), - [anon_sym_number] = ACTIONS(196), - [anon_sym_boolean] = ACTIONS(196), - [anon_sym_string] = ACTIONS(196), - [anon_sym_symbol] = ACTIONS(196), - [anon_sym_object] = ACTIONS(196), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym_html_comment] = ACTIONS(5), - }, - [170] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3458), - [sym_primary_expression] = STATE(2747), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3425), - [sym_comment] = STATE(170), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1179), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1014), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1236), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), + [anon_sym_DOT] = ACTIONS(969), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(973), + [anon_sym_function] = ACTIONS(975), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(979), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -55087,8 +54653,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), @@ -55098,106 +54664,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_undefined] = ACTIONS(983), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(956), + [anon_sym_readonly] = ACTIONS(956), + [anon_sym_get] = ACTIONS(956), + [anon_sym_set] = ACTIONS(956), + [anon_sym_declare] = ACTIONS(956), + [anon_sym_public] = ACTIONS(956), + [anon_sym_private] = ACTIONS(956), + [anon_sym_protected] = ACTIONS(956), + [anon_sym_override] = ACTIONS(956), + [anon_sym_module] = ACTIONS(956), + [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_object] = ACTIONS(956), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [171] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3458), - [sym_primary_expression] = STATE(2747), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3425), - [sym_comment] = STATE(171), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1012), - [anon_sym_export] = ACTIONS(1014), + [170] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(170), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1014), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1014), + [anon_sym_let] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1238), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1031), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1224), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1037), + [anon_sym_new] = ACTIONS(1109), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -55224,7 +54790,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -55239,117 +54805,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1014), - [anon_sym_readonly] = ACTIONS(1014), - [anon_sym_get] = ACTIONS(1014), - [anon_sym_set] = ACTIONS(1014), - [anon_sym_declare] = ACTIONS(1014), - [anon_sym_public] = ACTIONS(1014), - [anon_sym_private] = ACTIONS(1014), - [anon_sym_protected] = ACTIONS(1014), - [anon_sym_override] = ACTIONS(1014), - [anon_sym_module] = ACTIONS(1014), - [anon_sym_any] = ACTIONS(1014), - [anon_sym_number] = ACTIONS(1014), - [anon_sym_boolean] = ACTIONS(1014), - [anon_sym_string] = ACTIONS(1014), - [anon_sym_symbol] = ACTIONS(1014), - [anon_sym_object] = ACTIONS(1014), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [172] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(172), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5444), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(7046), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1219), - [anon_sym_export] = ACTIONS(1221), + [171] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(171), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1197), + [anon_sym_export] = ACTIONS(1199), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1221), - [anon_sym_EQ] = ACTIONS(1240), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1199), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(118), + [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(124), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1225), + [anon_sym_async] = ACTIONS(1203), [anon_sym_function] = ACTIONS(152), [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1227), + [anon_sym_new] = ACTIONS(1205), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -55376,7 +54942,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -55391,8 +54957,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -55404,103 +54970,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1221), - [anon_sym_readonly] = ACTIONS(1221), - [anon_sym_get] = ACTIONS(1221), - [anon_sym_set] = ACTIONS(1221), - [anon_sym_declare] = ACTIONS(1221), - [anon_sym_public] = ACTIONS(1221), - [anon_sym_private] = ACTIONS(1221), - [anon_sym_protected] = ACTIONS(1221), - [anon_sym_override] = ACTIONS(1221), - [anon_sym_module] = ACTIONS(1221), - [anon_sym_any] = ACTIONS(1221), - [anon_sym_number] = ACTIONS(1221), - [anon_sym_boolean] = ACTIONS(1221), - [anon_sym_string] = ACTIONS(1221), - [anon_sym_symbol] = ACTIONS(1221), - [anon_sym_object] = ACTIONS(1221), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [173] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(173), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), + [172] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(172), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1179), + [anon_sym_export] = ACTIONS(1181), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_type] = ACTIONS(1181), + [anon_sym_EQ] = ACTIONS(1240), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_RBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), + [anon_sym_let] = ACTIONS(1181), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(118), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), + [anon_sym_async] = ACTIONS(1191), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1193), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), + [anon_sym_new] = ACTIONS(1195), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -55527,7 +55094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -55542,8 +55109,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -55555,103 +55122,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_readonly] = ACTIONS(1181), + [anon_sym_get] = ACTIONS(1181), + [anon_sym_set] = ACTIONS(1181), + [anon_sym_declare] = ACTIONS(1181), + [anon_sym_public] = ACTIONS(1181), + [anon_sym_private] = ACTIONS(1181), + [anon_sym_protected] = ACTIONS(1181), + [anon_sym_override] = ACTIONS(1181), + [anon_sym_module] = ACTIONS(1181), + [anon_sym_any] = ACTIONS(1181), + [anon_sym_number] = ACTIONS(1181), + [anon_sym_boolean] = ACTIONS(1181), + [anon_sym_string] = ACTIONS(1181), + [anon_sym_symbol] = ACTIONS(1181), + [anon_sym_object] = ACTIONS(1181), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [174] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(174), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1201), - [anon_sym_export] = ACTIONS(1203), + [173] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(173), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1179), + [anon_sym_export] = ACTIONS(1181), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1203), - [anon_sym_EQ] = ACTIONS(1205), + [anon_sym_type] = ACTIONS(1181), + [anon_sym_EQ] = ACTIONS(1183), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_namespace] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(1243), + [anon_sym_RBRACE] = ACTIONS(1243), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1203), + [anon_sym_let] = ACTIONS(1181), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_RBRACK] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_RBRACK] = ACTIONS(1243), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1213), + [anon_sym_async] = ACTIONS(1191), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_GT] = ACTIONS(1193), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1217), + [anon_sym_new] = ACTIONS(1195), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -55678,7 +55245,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -55693,8 +55260,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -55706,91 +55273,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1203), - [anon_sym_readonly] = ACTIONS(1203), - [anon_sym_get] = ACTIONS(1203), - [anon_sym_set] = ACTIONS(1203), - [anon_sym_declare] = ACTIONS(1203), - [anon_sym_public] = ACTIONS(1203), - [anon_sym_private] = ACTIONS(1203), - [anon_sym_protected] = ACTIONS(1203), - [anon_sym_override] = ACTIONS(1203), - [anon_sym_module] = ACTIONS(1203), - [anon_sym_any] = ACTIONS(1203), - [anon_sym_number] = ACTIONS(1203), - [anon_sym_boolean] = ACTIONS(1203), - [anon_sym_string] = ACTIONS(1203), - [anon_sym_symbol] = ACTIONS(1203), - [anon_sym_object] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_readonly] = ACTIONS(1181), + [anon_sym_get] = ACTIONS(1181), + [anon_sym_set] = ACTIONS(1181), + [anon_sym_declare] = ACTIONS(1181), + [anon_sym_public] = ACTIONS(1181), + [anon_sym_private] = ACTIONS(1181), + [anon_sym_protected] = ACTIONS(1181), + [anon_sym_override] = ACTIONS(1181), + [anon_sym_module] = ACTIONS(1181), + [anon_sym_any] = ACTIONS(1181), + [anon_sym_number] = ACTIONS(1181), + [anon_sym_boolean] = ACTIONS(1181), + [anon_sym_string] = ACTIONS(1181), + [anon_sym_symbol] = ACTIONS(1181), + [anon_sym_object] = ACTIONS(1181), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [175] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(175), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1245), - [anon_sym_export] = ACTIONS(1247), + [174] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(174), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1246), + [anon_sym_export] = ACTIONS(1248), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1247), - [anon_sym_EQ] = ACTIONS(1249), + [anon_sym_type] = ACTIONS(1248), + [anon_sym_EQ] = ACTIONS(1250), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_namespace] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_COMMA] = ACTIONS(215), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1247), + [anon_sym_let] = ACTIONS(1248), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1254), + [anon_sym_COLON] = ACTIONS(1255), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), @@ -55798,11 +55365,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1256), + [anon_sym_async] = ACTIONS(1257), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_EQ_GT] = ACTIONS(1259), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1260), + [anon_sym_new] = ACTIONS(1261), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -55829,7 +55396,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -55844,8 +55411,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -55857,103 +55424,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1247), - [anon_sym_readonly] = ACTIONS(1247), - [anon_sym_get] = ACTIONS(1247), - [anon_sym_set] = ACTIONS(1247), - [anon_sym_declare] = ACTIONS(1247), - [anon_sym_public] = ACTIONS(1247), - [anon_sym_private] = ACTIONS(1247), - [anon_sym_protected] = ACTIONS(1247), - [anon_sym_override] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_any] = ACTIONS(1247), - [anon_sym_number] = ACTIONS(1247), - [anon_sym_boolean] = ACTIONS(1247), - [anon_sym_string] = ACTIONS(1247), - [anon_sym_symbol] = ACTIONS(1247), - [anon_sym_object] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_get] = ACTIONS(1248), + [anon_sym_set] = ACTIONS(1248), + [anon_sym_declare] = ACTIONS(1248), + [anon_sym_public] = ACTIONS(1248), + [anon_sym_private] = ACTIONS(1248), + [anon_sym_protected] = ACTIONS(1248), + [anon_sym_override] = ACTIONS(1248), + [anon_sym_module] = ACTIONS(1248), + [anon_sym_any] = ACTIONS(1248), + [anon_sym_number] = ACTIONS(1248), + [anon_sym_boolean] = ACTIONS(1248), + [anon_sym_string] = ACTIONS(1248), + [anon_sym_symbol] = ACTIONS(1248), + [anon_sym_object] = ACTIONS(1248), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [176] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(176), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1201), - [anon_sym_export] = ACTIONS(1203), + [175] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(175), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5095), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6862), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1179), + [anon_sym_export] = ACTIONS(1181), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1203), - [anon_sym_EQ] = ACTIONS(1262), + [anon_sym_type] = ACTIONS(1181), + [anon_sym_EQ] = ACTIONS(1183), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), + [anon_sym_namespace] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(1243), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1203), + [anon_sym_let] = ACTIONS(1181), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1117), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_RBRACK] = ACTIONS(1243), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1213), + [anon_sym_async] = ACTIONS(1191), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_GT] = ACTIONS(1193), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1217), + [anon_sym_new] = ACTIONS(1195), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -55980,7 +55547,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -55995,8 +55562,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -56008,103 +55575,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1203), - [anon_sym_readonly] = ACTIONS(1203), - [anon_sym_get] = ACTIONS(1203), - [anon_sym_set] = ACTIONS(1203), - [anon_sym_declare] = ACTIONS(1203), - [anon_sym_public] = ACTIONS(1203), - [anon_sym_private] = ACTIONS(1203), - [anon_sym_protected] = ACTIONS(1203), - [anon_sym_override] = ACTIONS(1203), - [anon_sym_module] = ACTIONS(1203), - [anon_sym_any] = ACTIONS(1203), - [anon_sym_number] = ACTIONS(1203), - [anon_sym_boolean] = ACTIONS(1203), - [anon_sym_string] = ACTIONS(1203), - [anon_sym_symbol] = ACTIONS(1203), - [anon_sym_object] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_readonly] = ACTIONS(1181), + [anon_sym_get] = ACTIONS(1181), + [anon_sym_set] = ACTIONS(1181), + [anon_sym_declare] = ACTIONS(1181), + [anon_sym_public] = ACTIONS(1181), + [anon_sym_private] = ACTIONS(1181), + [anon_sym_protected] = ACTIONS(1181), + [anon_sym_override] = ACTIONS(1181), + [anon_sym_module] = ACTIONS(1181), + [anon_sym_any] = ACTIONS(1181), + [anon_sym_number] = ACTIONS(1181), + [anon_sym_boolean] = ACTIONS(1181), + [anon_sym_string] = ACTIONS(1181), + [anon_sym_symbol] = ACTIONS(1181), + [anon_sym_object] = ACTIONS(1181), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [177] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(177), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5444), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(7046), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1201), - [anon_sym_export] = ACTIONS(1203), + [176] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(176), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1197), + [anon_sym_export] = ACTIONS(1199), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1203), - [anon_sym_EQ] = ACTIONS(1205), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_EQ] = ACTIONS(1263), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1242), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1203), + [anon_sym_let] = ACTIONS(1199), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_RPAREN] = ACTIONS(118), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_RBRACK] = ACTIONS(1242), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1213), + [anon_sym_async] = ACTIONS(1203), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1217), + [anon_sym_new] = ACTIONS(1205), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -56131,7 +55698,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -56146,8 +55713,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -56159,84 +55726,235 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1203), - [anon_sym_readonly] = ACTIONS(1203), - [anon_sym_get] = ACTIONS(1203), - [anon_sym_set] = ACTIONS(1203), - [anon_sym_declare] = ACTIONS(1203), - [anon_sym_public] = ACTIONS(1203), - [anon_sym_private] = ACTIONS(1203), - [anon_sym_protected] = ACTIONS(1203), - [anon_sym_override] = ACTIONS(1203), - [anon_sym_module] = ACTIONS(1203), - [anon_sym_any] = ACTIONS(1203), - [anon_sym_number] = ACTIONS(1203), - [anon_sym_boolean] = ACTIONS(1203), - [anon_sym_string] = ACTIONS(1203), - [anon_sym_symbol] = ACTIONS(1203), - [anon_sym_object] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [177] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(177), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5095), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6862), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1197), + [anon_sym_export] = ACTIONS(1199), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1199), + [anon_sym_EQ] = ACTIONS(1263), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1201), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_typeof] = ACTIONS(173), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1199), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_RPAREN] = ACTIONS(118), + [anon_sym_await] = ACTIONS(138), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1203), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(1205), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(184), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1199), + [anon_sym_readonly] = ACTIONS(1199), + [anon_sym_get] = ACTIONS(1199), + [anon_sym_set] = ACTIONS(1199), + [anon_sym_declare] = ACTIONS(1199), + [anon_sym_public] = ACTIONS(1199), + [anon_sym_private] = ACTIONS(1199), + [anon_sym_protected] = ACTIONS(1199), + [anon_sym_override] = ACTIONS(1199), + [anon_sym_module] = ACTIONS(1199), + [anon_sym_any] = ACTIONS(1199), + [anon_sym_number] = ACTIONS(1199), + [anon_sym_boolean] = ACTIONS(1199), + [anon_sym_string] = ACTIONS(1199), + [anon_sym_symbol] = ACTIONS(1199), + [anon_sym_object] = ACTIONS(1199), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [178] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(178), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1219), - [anon_sym_export] = ACTIONS(1221), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1221), - [anon_sym_EQ] = ACTIONS(1240), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1223), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1221), + [anon_sym_let] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_RPAREN] = ACTIONS(118), @@ -56244,18 +55962,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1225), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1227), + [anon_sym_new] = ACTIONS(1109), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -56282,7 +56000,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -56297,8 +56015,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -56310,72 +56028,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1221), - [anon_sym_readonly] = ACTIONS(1221), - [anon_sym_get] = ACTIONS(1221), - [anon_sym_set] = ACTIONS(1221), - [anon_sym_declare] = ACTIONS(1221), - [anon_sym_public] = ACTIONS(1221), - [anon_sym_private] = ACTIONS(1221), - [anon_sym_protected] = ACTIONS(1221), - [anon_sym_override] = ACTIONS(1221), - [anon_sym_module] = ACTIONS(1221), - [anon_sym_any] = ACTIONS(1221), - [anon_sym_number] = ACTIONS(1221), - [anon_sym_boolean] = ACTIONS(1221), - [anon_sym_string] = ACTIONS(1221), - [anon_sym_symbol] = ACTIONS(1221), - [anon_sym_object] = ACTIONS(1221), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [179] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(179), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), @@ -56384,7 +56102,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1095), @@ -56392,11 +56109,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_DOT] = ACTIONS(969), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), @@ -56431,7 +56149,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -56446,8 +56164,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -56476,86 +56194,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1095), [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [180] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(180), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5366), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6791), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1201), - [anon_sym_export] = ACTIONS(1203), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1246), + [anon_sym_export] = ACTIONS(1248), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1203), - [anon_sym_EQ] = ACTIONS(1262), + [anon_sym_type] = ACTIONS(1248), + [anon_sym_EQ] = ACTIONS(1267), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), + [anon_sym_namespace] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1203), + [anon_sym_let] = ACTIONS(1248), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1269), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1213), + [anon_sym_async] = ACTIONS(1257), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_GT] = ACTIONS(1259), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1217), + [anon_sym_new] = ACTIONS(1261), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -56582,7 +56300,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -56597,8 +56315,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -56610,101 +56328,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1203), - [anon_sym_readonly] = ACTIONS(1203), - [anon_sym_get] = ACTIONS(1203), - [anon_sym_set] = ACTIONS(1203), - [anon_sym_declare] = ACTIONS(1203), - [anon_sym_public] = ACTIONS(1203), - [anon_sym_private] = ACTIONS(1203), - [anon_sym_protected] = ACTIONS(1203), - [anon_sym_override] = ACTIONS(1203), - [anon_sym_module] = ACTIONS(1203), - [anon_sym_any] = ACTIONS(1203), - [anon_sym_number] = ACTIONS(1203), - [anon_sym_boolean] = ACTIONS(1203), - [anon_sym_string] = ACTIONS(1203), - [anon_sym_symbol] = ACTIONS(1203), - [anon_sym_object] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_get] = ACTIONS(1248), + [anon_sym_set] = ACTIONS(1248), + [anon_sym_declare] = ACTIONS(1248), + [anon_sym_public] = ACTIONS(1248), + [anon_sym_private] = ACTIONS(1248), + [anon_sym_protected] = ACTIONS(1248), + [anon_sym_override] = ACTIONS(1248), + [anon_sym_module] = ACTIONS(1248), + [anon_sym_any] = ACTIONS(1248), + [anon_sym_number] = ACTIONS(1248), + [anon_sym_boolean] = ACTIONS(1248), + [anon_sym_string] = ACTIONS(1248), + [anon_sym_symbol] = ACTIONS(1248), + [anon_sym_object] = ACTIONS(1248), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [181] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3458), - [sym_primary_expression] = STATE(2747), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3425), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(181), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5444), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(7046), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1267), - [anon_sym_export] = ACTIONS(1269), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1246), + [anon_sym_export] = ACTIONS(1248), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_type] = ACTIONS(1248), + [anon_sym_EQ] = ACTIONS(1267), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1269), + [anon_sym_let] = ACTIONS(1248), [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1255), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1275), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1277), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1257), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(1259), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1279), + [anon_sym_new] = ACTIONS(1261), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -56731,7 +56450,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -56746,116 +56465,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_get] = ACTIONS(1248), + [anon_sym_set] = ACTIONS(1248), + [anon_sym_declare] = ACTIONS(1248), + [anon_sym_public] = ACTIONS(1248), + [anon_sym_private] = ACTIONS(1248), + [anon_sym_protected] = ACTIONS(1248), + [anon_sym_override] = ACTIONS(1248), + [anon_sym_module] = ACTIONS(1248), + [anon_sym_any] = ACTIONS(1248), + [anon_sym_number] = ACTIONS(1248), + [anon_sym_boolean] = ACTIONS(1248), + [anon_sym_string] = ACTIONS(1248), + [anon_sym_symbol] = ACTIONS(1248), + [anon_sym_object] = ACTIONS(1248), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [182] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(182), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1245), - [anon_sym_export] = ACTIONS(1247), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5183), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6608), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1179), + [anon_sym_export] = ACTIONS(1181), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1247), - [anon_sym_EQ] = ACTIONS(1281), + [anon_sym_type] = ACTIONS(1181), + [anon_sym_EQ] = ACTIONS(1240), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_namespace] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_RBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1247), + [anon_sym_let] = ACTIONS(1181), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1283), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_RBRACK] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1256), + [anon_sym_async] = ACTIONS(1191), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_EQ_GT] = ACTIONS(1193), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1260), + [anon_sym_new] = ACTIONS(1195), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -56882,7 +56600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -56897,8 +56615,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -56910,102 +56628,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1247), - [anon_sym_readonly] = ACTIONS(1247), - [anon_sym_get] = ACTIONS(1247), - [anon_sym_set] = ACTIONS(1247), - [anon_sym_declare] = ACTIONS(1247), - [anon_sym_public] = ACTIONS(1247), - [anon_sym_private] = ACTIONS(1247), - [anon_sym_protected] = ACTIONS(1247), - [anon_sym_override] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_any] = ACTIONS(1247), - [anon_sym_number] = ACTIONS(1247), - [anon_sym_boolean] = ACTIONS(1247), - [anon_sym_string] = ACTIONS(1247), - [anon_sym_symbol] = ACTIONS(1247), - [anon_sym_object] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_readonly] = ACTIONS(1181), + [anon_sym_get] = ACTIONS(1181), + [anon_sym_set] = ACTIONS(1181), + [anon_sym_declare] = ACTIONS(1181), + [anon_sym_public] = ACTIONS(1181), + [anon_sym_private] = ACTIONS(1181), + [anon_sym_protected] = ACTIONS(1181), + [anon_sym_override] = ACTIONS(1181), + [anon_sym_module] = ACTIONS(1181), + [anon_sym_any] = ACTIONS(1181), + [anon_sym_number] = ACTIONS(1181), + [anon_sym_boolean] = ACTIONS(1181), + [anon_sym_string] = ACTIONS(1181), + [anon_sym_symbol] = ACTIONS(1181), + [anon_sym_object] = ACTIONS(1181), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [183] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(183), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1245), - [anon_sym_export] = ACTIONS(1247), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1271), + [anon_sym_export] = ACTIONS(1273), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1247), - [anon_sym_EQ] = ACTIONS(1249), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_EQ] = ACTIONS(1275), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_namespace] = ACTIONS(1277), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1247), + [anon_sym_let] = ACTIONS(1273), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_RBRACK] = ACTIONS(124), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1256), + [anon_sym_async] = ACTIONS(1279), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_EQ_GT] = ACTIONS(1281), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1260), + [anon_sym_new] = ACTIONS(1283), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -57032,7 +56749,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -57047,8 +56764,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -57060,101 +56777,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1247), - [anon_sym_readonly] = ACTIONS(1247), - [anon_sym_get] = ACTIONS(1247), - [anon_sym_set] = ACTIONS(1247), - [anon_sym_declare] = ACTIONS(1247), - [anon_sym_public] = ACTIONS(1247), - [anon_sym_private] = ACTIONS(1247), - [anon_sym_protected] = ACTIONS(1247), - [anon_sym_override] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_any] = ACTIONS(1247), - [anon_sym_number] = ACTIONS(1247), - [anon_sym_boolean] = ACTIONS(1247), - [anon_sym_string] = ACTIONS(1247), - [anon_sym_symbol] = ACTIONS(1247), - [anon_sym_object] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [anon_sym_satisfies] = ACTIONS(118), + [anon_sym_implements] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [184] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3331), + [sym_primary_expression] = STATE(2585), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3280), [sym_comment] = STATE(184), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5095), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6862), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1287), + [anon_sym_export] = ACTIONS(1289), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_type] = ACTIONS(1289), + [anon_sym_EQ] = ACTIONS(1291), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_namespace] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), + [anon_sym_let] = ACTIONS(1289), [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1277), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1295), + [anon_sym_function] = ACTIONS(975), + [anon_sym_EQ_GT] = ACTIONS(1265), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), + [anon_sym_new] = ACTIONS(1297), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -57181,7 +56899,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -57196,104 +56914,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(983), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1289), + [anon_sym_readonly] = ACTIONS(1289), + [anon_sym_get] = ACTIONS(1289), + [anon_sym_set] = ACTIONS(1289), + [anon_sym_declare] = ACTIONS(1289), + [anon_sym_public] = ACTIONS(1289), + [anon_sym_private] = ACTIONS(1289), + [anon_sym_protected] = ACTIONS(1289), + [anon_sym_override] = ACTIONS(1289), + [anon_sym_module] = ACTIONS(1289), + [anon_sym_any] = ACTIONS(1289), + [anon_sym_number] = ACTIONS(1289), + [anon_sym_boolean] = ACTIONS(1289), + [anon_sym_string] = ACTIONS(1289), + [anon_sym_symbol] = ACTIONS(1289), + [anon_sym_object] = ACTIONS(1289), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [185] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(185), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5444), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(7046), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1201), - [anon_sym_export] = ACTIONS(1203), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1246), + [anon_sym_export] = ACTIONS(1248), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1203), - [anon_sym_EQ] = ACTIONS(1262), + [anon_sym_type] = ACTIONS(1248), + [anon_sym_EQ] = ACTIONS(1250), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1207), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_namespace] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(215), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1203), + [anon_sym_let] = ACTIONS(1248), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), @@ -57301,11 +57019,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1213), + [anon_sym_async] = ACTIONS(1257), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_GT] = ACTIONS(1259), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1217), + [anon_sym_new] = ACTIONS(1261), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -57332,7 +57050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -57347,8 +57065,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -57360,102 +57078,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1203), - [anon_sym_readonly] = ACTIONS(1203), - [anon_sym_get] = ACTIONS(1203), - [anon_sym_set] = ACTIONS(1203), - [anon_sym_declare] = ACTIONS(1203), - [anon_sym_public] = ACTIONS(1203), - [anon_sym_private] = ACTIONS(1203), - [anon_sym_protected] = ACTIONS(1203), - [anon_sym_override] = ACTIONS(1203), - [anon_sym_module] = ACTIONS(1203), - [anon_sym_any] = ACTIONS(1203), - [anon_sym_number] = ACTIONS(1203), - [anon_sym_boolean] = ACTIONS(1203), - [anon_sym_string] = ACTIONS(1203), - [anon_sym_symbol] = ACTIONS(1203), - [anon_sym_object] = ACTIONS(1203), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_get] = ACTIONS(1248), + [anon_sym_set] = ACTIONS(1248), + [anon_sym_declare] = ACTIONS(1248), + [anon_sym_public] = ACTIONS(1248), + [anon_sym_private] = ACTIONS(1248), + [anon_sym_protected] = ACTIONS(1248), + [anon_sym_override] = ACTIONS(1248), + [anon_sym_module] = ACTIONS(1248), + [anon_sym_any] = ACTIONS(1248), + [anon_sym_number] = ACTIONS(1248), + [anon_sym_boolean] = ACTIONS(1248), + [anon_sym_string] = ACTIONS(1248), + [anon_sym_symbol] = ACTIONS(1248), + [anon_sym_object] = ACTIONS(1248), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [186] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2063), + [sym_expression] = STATE(3331), + [sym_primary_expression] = STATE(2585), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2063), + [sym_subscript_expression] = STATE(2063), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3280), [sym_comment] = STATE(186), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1245), - [anon_sym_export] = ACTIONS(1247), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2063), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1287), + [anon_sym_export] = ACTIONS(1289), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1247), - [anon_sym_EQ] = ACTIONS(1281), + [anon_sym_type] = ACTIONS(1289), + [anon_sym_EQ] = ACTIONS(1291), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_namespace] = ACTIONS(1293), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1247), + [anon_sym_let] = ACTIONS(1289), [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1254), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_RBRACK] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1105), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1256), - [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_DOT] = ACTIONS(969), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1295), + [anon_sym_function] = ACTIONS(975), + [anon_sym_EQ_GT] = ACTIONS(1265), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1260), + [anon_sym_new] = ACTIONS(1297), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -57482,7 +57199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -57497,114 +57214,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(983), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1247), - [anon_sym_readonly] = ACTIONS(1247), - [anon_sym_get] = ACTIONS(1247), - [anon_sym_set] = ACTIONS(1247), - [anon_sym_declare] = ACTIONS(1247), - [anon_sym_public] = ACTIONS(1247), - [anon_sym_private] = ACTIONS(1247), - [anon_sym_protected] = ACTIONS(1247), - [anon_sym_override] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_any] = ACTIONS(1247), - [anon_sym_number] = ACTIONS(1247), - [anon_sym_boolean] = ACTIONS(1247), - [anon_sym_string] = ACTIONS(1247), - [anon_sym_symbol] = ACTIONS(1247), - [anon_sym_object] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1289), + [anon_sym_readonly] = ACTIONS(1289), + [anon_sym_get] = ACTIONS(1289), + [anon_sym_set] = ACTIONS(1289), + [anon_sym_declare] = ACTIONS(1289), + [anon_sym_public] = ACTIONS(1289), + [anon_sym_private] = ACTIONS(1289), + [anon_sym_protected] = ACTIONS(1289), + [anon_sym_override] = ACTIONS(1289), + [anon_sym_module] = ACTIONS(1289), + [anon_sym_any] = ACTIONS(1289), + [anon_sym_number] = ACTIONS(1289), + [anon_sym_boolean] = ACTIONS(1289), + [anon_sym_string] = ACTIONS(1289), + [anon_sym_symbol] = ACTIONS(1289), + [anon_sym_object] = ACTIONS(1289), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [187] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(187), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5444), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(7046), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1285), - [anon_sym_export] = ACTIONS(1287), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5095), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6862), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1271), + [anon_sym_export] = ACTIONS(1273), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1287), - [anon_sym_EQ] = ACTIONS(1289), + [anon_sym_type] = ACTIONS(1273), + [anon_sym_EQ] = ACTIONS(1275), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1291), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_namespace] = ACTIONS(1277), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1287), + [anon_sym_let] = ACTIONS(1273), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1279), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_EQ_GT] = ACTIONS(1281), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1295), + [anon_sym_new] = ACTIONS(1283), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -57631,7 +57349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -57646,8 +57364,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -57659,252 +57377,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1287), - [anon_sym_readonly] = ACTIONS(1287), - [anon_sym_get] = ACTIONS(1287), - [anon_sym_set] = ACTIONS(1287), - [anon_sym_declare] = ACTIONS(1287), - [anon_sym_public] = ACTIONS(1287), - [anon_sym_private] = ACTIONS(1287), - [anon_sym_protected] = ACTIONS(1287), - [anon_sym_override] = ACTIONS(1287), - [anon_sym_module] = ACTIONS(1287), - [anon_sym_any] = ACTIONS(1287), - [anon_sym_number] = ACTIONS(1287), - [anon_sym_boolean] = ACTIONS(1287), - [anon_sym_string] = ACTIONS(1287), - [anon_sym_symbol] = ACTIONS(1287), - [anon_sym_object] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(1273), + [anon_sym_readonly] = ACTIONS(1273), + [anon_sym_get] = ACTIONS(1273), + [anon_sym_set] = ACTIONS(1273), + [anon_sym_declare] = ACTIONS(1273), + [anon_sym_public] = ACTIONS(1273), + [anon_sym_private] = ACTIONS(1273), + [anon_sym_protected] = ACTIONS(1273), + [anon_sym_override] = ACTIONS(1273), + [anon_sym_module] = ACTIONS(1273), + [anon_sym_any] = ACTIONS(1273), + [anon_sym_number] = ACTIONS(1273), + [anon_sym_boolean] = ACTIONS(1273), + [anon_sym_string] = ACTIONS(1273), + [anon_sym_symbol] = ACTIONS(1273), + [anon_sym_object] = ACTIONS(1273), [anon_sym_satisfies] = ACTIONS(118), [anon_sym_implements] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [188] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2222), - [sym_expression] = STATE(3458), - [sym_primary_expression] = STATE(2747), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2222), - [sym_subscript_expression] = STATE(2222), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3425), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(188), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2222), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1267), - [anon_sym_export] = ACTIONS(1269), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5095), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6862), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1179), + [anon_sym_export] = ACTIONS(1181), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1269), - [anon_sym_EQ] = ACTIONS(1271), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1273), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1269), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(1027), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1275), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_EQ_GT] = ACTIONS(1277), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1279), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1041), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1269), - [anon_sym_readonly] = ACTIONS(1269), - [anon_sym_get] = ACTIONS(1269), - [anon_sym_set] = ACTIONS(1269), - [anon_sym_declare] = ACTIONS(1269), - [anon_sym_public] = ACTIONS(1269), - [anon_sym_private] = ACTIONS(1269), - [anon_sym_protected] = ACTIONS(1269), - [anon_sym_override] = ACTIONS(1269), - [anon_sym_module] = ACTIONS(1269), - [anon_sym_any] = ACTIONS(1269), - [anon_sym_number] = ACTIONS(1269), - [anon_sym_boolean] = ACTIONS(1269), - [anon_sym_string] = ACTIONS(1269), - [anon_sym_symbol] = ACTIONS(1269), - [anon_sym_object] = ACTIONS(1269), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [189] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(189), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1285), - [anon_sym_export] = ACTIONS(1287), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1287), - [anon_sym_EQ] = ACTIONS(1289), + [anon_sym_type] = ACTIONS(1181), + [anon_sym_EQ] = ACTIONS(1240), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1291), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1185), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1287), + [anon_sym_let] = ACTIONS(1181), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1293), + [anon_sym_async] = ACTIONS(1191), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_EQ_GT] = ACTIONS(1193), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1295), + [anon_sym_new] = ACTIONS(1195), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -57931,7 +57500,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -57946,8 +57515,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -57959,89 +57528,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1287), - [anon_sym_readonly] = ACTIONS(1287), - [anon_sym_get] = ACTIONS(1287), - [anon_sym_set] = ACTIONS(1287), - [anon_sym_declare] = ACTIONS(1287), - [anon_sym_public] = ACTIONS(1287), - [anon_sym_private] = ACTIONS(1287), - [anon_sym_protected] = ACTIONS(1287), - [anon_sym_override] = ACTIONS(1287), - [anon_sym_module] = ACTIONS(1287), - [anon_sym_any] = ACTIONS(1287), - [anon_sym_number] = ACTIONS(1287), - [anon_sym_boolean] = ACTIONS(1287), - [anon_sym_string] = ACTIONS(1287), - [anon_sym_symbol] = ACTIONS(1287), - [anon_sym_object] = ACTIONS(1287), + [anon_sym_static] = ACTIONS(1181), + [anon_sym_readonly] = ACTIONS(1181), + [anon_sym_get] = ACTIONS(1181), + [anon_sym_set] = ACTIONS(1181), + [anon_sym_declare] = ACTIONS(1181), + [anon_sym_public] = ACTIONS(1181), + [anon_sym_private] = ACTIONS(1181), + [anon_sym_protected] = ACTIONS(1181), + [anon_sym_override] = ACTIONS(1181), + [anon_sym_module] = ACTIONS(1181), + [anon_sym_any] = ACTIONS(1181), + [anon_sym_number] = ACTIONS(1181), + [anon_sym_boolean] = ACTIONS(1181), + [anon_sym_string] = ACTIONS(1181), + [anon_sym_symbol] = ACTIONS(1181), + [anon_sym_object] = ACTIONS(1181), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [190] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(190), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), + [189] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(189), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1305), + [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_COMMA] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), @@ -58050,11 +57618,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1307), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1309), + [anon_sym_EQ_GT] = ACTIONS(1281), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(1109), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -58081,7 +57649,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -58096,8 +57664,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -58109,83 +57677,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), + [anon_sym_implements] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [191] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(191), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5444), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(7046), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1299), - [anon_sym_export] = ACTIONS(1301), + [190] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(190), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1301), - [anon_sym_EQ] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1305), + [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1301), + [anon_sym_let] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), @@ -58199,11 +57768,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1307), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1309), + [anon_sym_EQ_GT] = ACTIONS(1299), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1311), + [anon_sym_new] = ACTIONS(1109), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -58230,7 +57799,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -58245,8 +57814,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -58258,101 +57827,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [192] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(192), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), + [191] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(191), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1301), + [anon_sym_export] = ACTIONS(1303), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_EQ] = ACTIONS(1305), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_namespace] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), + [anon_sym_let] = ACTIONS(1303), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), + [anon_sym_async] = ACTIONS(1309), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1309), + [anon_sym_EQ_GT] = ACTIONS(1311), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), + [anon_sym_new] = ACTIONS(1313), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -58379,7 +57948,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -58394,8 +57963,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -58407,101 +57976,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1303), + [anon_sym_readonly] = ACTIONS(1303), + [anon_sym_get] = ACTIONS(1303), + [anon_sym_set] = ACTIONS(1303), + [anon_sym_declare] = ACTIONS(1303), + [anon_sym_public] = ACTIONS(1303), + [anon_sym_private] = ACTIONS(1303), + [anon_sym_protected] = ACTIONS(1303), + [anon_sym_override] = ACTIONS(1303), + [anon_sym_module] = ACTIONS(1303), + [anon_sym_any] = ACTIONS(1303), + [anon_sym_number] = ACTIONS(1303), + [anon_sym_boolean] = ACTIONS(1303), + [anon_sym_string] = ACTIONS(1303), + [anon_sym_symbol] = ACTIONS(1303), + [anon_sym_object] = ACTIONS(1303), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [193] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(193), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5444), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(7046), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1315), - [anon_sym_export] = ACTIONS(1317), + [192] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(192), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1246), + [anon_sym_export] = ACTIONS(1248), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1317), - [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1248), + [anon_sym_EQ] = ACTIONS(1267), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_namespace] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1317), + [anon_sym_let] = ACTIONS(1248), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1323), + [anon_sym_async] = ACTIONS(1257), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1325), + [anon_sym_EQ_GT] = ACTIONS(1259), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1327), + [anon_sym_new] = ACTIONS(1261), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -58528,7 +58097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -58543,8 +58112,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -58556,72 +58125,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1317), - [anon_sym_readonly] = ACTIONS(1317), - [anon_sym_get] = ACTIONS(1317), - [anon_sym_set] = ACTIONS(1317), - [anon_sym_declare] = ACTIONS(1317), - [anon_sym_public] = ACTIONS(1317), - [anon_sym_private] = ACTIONS(1317), - [anon_sym_protected] = ACTIONS(1317), - [anon_sym_override] = ACTIONS(1317), - [anon_sym_module] = ACTIONS(1317), - [anon_sym_any] = ACTIONS(1317), - [anon_sym_number] = ACTIONS(1317), - [anon_sym_boolean] = ACTIONS(1317), - [anon_sym_string] = ACTIONS(1317), - [anon_sym_symbol] = ACTIONS(1317), - [anon_sym_object] = ACTIONS(1317), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_get] = ACTIONS(1248), + [anon_sym_set] = ACTIONS(1248), + [anon_sym_declare] = ACTIONS(1248), + [anon_sym_public] = ACTIONS(1248), + [anon_sym_private] = ACTIONS(1248), + [anon_sym_protected] = ACTIONS(1248), + [anon_sym_override] = ACTIONS(1248), + [anon_sym_module] = ACTIONS(1248), + [anon_sym_any] = ACTIONS(1248), + [anon_sym_number] = ACTIONS(1248), + [anon_sym_boolean] = ACTIONS(1248), + [anon_sym_string] = ACTIONS(1248), + [anon_sym_symbol] = ACTIONS(1248), + [anon_sym_object] = ACTIONS(1248), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [194] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(194), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [193] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(193), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), @@ -58636,10 +58205,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(118), + [anon_sym_in] = ACTIONS(1209), + [anon_sym_of] = ACTIONS(1212), [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), @@ -58648,7 +58217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_EQ_GT] = ACTIONS(217), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), [anon_sym_using] = ACTIONS(158), @@ -58677,7 +58246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -58692,8 +58261,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -58725,81 +58294,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [195] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(195), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5444), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(7046), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1245), - [anon_sym_export] = ACTIONS(1247), + [194] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(194), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1315), + [anon_sym_export] = ACTIONS(1317), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1247), - [anon_sym_EQ] = ACTIONS(1281), + [anon_sym_type] = ACTIONS(1317), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_namespace] = ACTIONS(1321), + [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1247), + [anon_sym_let] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_RBRACK] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1256), + [anon_sym_async] = ACTIONS(1323), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_EQ_GT] = ACTIONS(1299), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1260), + [anon_sym_new] = ACTIONS(1325), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -58826,7 +58395,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -58841,8 +58410,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -58854,101 +58423,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1247), - [anon_sym_readonly] = ACTIONS(1247), - [anon_sym_get] = ACTIONS(1247), - [anon_sym_set] = ACTIONS(1247), - [anon_sym_declare] = ACTIONS(1247), - [anon_sym_public] = ACTIONS(1247), - [anon_sym_private] = ACTIONS(1247), - [anon_sym_protected] = ACTIONS(1247), - [anon_sym_override] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_any] = ACTIONS(1247), - [anon_sym_number] = ACTIONS(1247), - [anon_sym_boolean] = ACTIONS(1247), - [anon_sym_string] = ACTIONS(1247), - [anon_sym_symbol] = ACTIONS(1247), - [anon_sym_object] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1317), + [anon_sym_readonly] = ACTIONS(1317), + [anon_sym_get] = ACTIONS(1317), + [anon_sym_set] = ACTIONS(1317), + [anon_sym_declare] = ACTIONS(1317), + [anon_sym_public] = ACTIONS(1317), + [anon_sym_private] = ACTIONS(1317), + [anon_sym_protected] = ACTIONS(1317), + [anon_sym_override] = ACTIONS(1317), + [anon_sym_module] = ACTIONS(1317), + [anon_sym_any] = ACTIONS(1317), + [anon_sym_number] = ACTIONS(1317), + [anon_sym_boolean] = ACTIONS(1317), + [anon_sym_string] = ACTIONS(1317), + [anon_sym_symbol] = ACTIONS(1317), + [anon_sym_object] = ACTIONS(1317), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [196] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(196), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1315), - [anon_sym_export] = ACTIONS(1317), + [195] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(195), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5095), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6862), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1301), + [anon_sym_export] = ACTIONS(1303), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1317), - [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(1303), + [anon_sym_EQ] = ACTIONS(1305), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1321), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_namespace] = ACTIONS(1307), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1317), + [anon_sym_let] = ACTIONS(1303), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1323), + [anon_sym_async] = ACTIONS(1309), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1325), + [anon_sym_EQ_GT] = ACTIONS(1311), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1327), + [anon_sym_new] = ACTIONS(1313), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -58975,7 +58544,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -58990,8 +58559,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -59003,72 +58572,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1317), - [anon_sym_readonly] = ACTIONS(1317), - [anon_sym_get] = ACTIONS(1317), - [anon_sym_set] = ACTIONS(1317), - [anon_sym_declare] = ACTIONS(1317), - [anon_sym_public] = ACTIONS(1317), - [anon_sym_private] = ACTIONS(1317), - [anon_sym_protected] = ACTIONS(1317), - [anon_sym_override] = ACTIONS(1317), - [anon_sym_module] = ACTIONS(1317), - [anon_sym_any] = ACTIONS(1317), - [anon_sym_number] = ACTIONS(1317), - [anon_sym_boolean] = ACTIONS(1317), - [anon_sym_string] = ACTIONS(1317), - [anon_sym_symbol] = ACTIONS(1317), - [anon_sym_object] = ACTIONS(1317), + [anon_sym_static] = ACTIONS(1303), + [anon_sym_readonly] = ACTIONS(1303), + [anon_sym_get] = ACTIONS(1303), + [anon_sym_set] = ACTIONS(1303), + [anon_sym_declare] = ACTIONS(1303), + [anon_sym_public] = ACTIONS(1303), + [anon_sym_private] = ACTIONS(1303), + [anon_sym_protected] = ACTIONS(1303), + [anon_sym_override] = ACTIONS(1303), + [anon_sym_module] = ACTIONS(1303), + [anon_sym_any] = ACTIONS(1303), + [anon_sym_number] = ACTIONS(1303), + [anon_sym_boolean] = ACTIONS(1303), + [anon_sym_string] = ACTIONS(1303), + [anon_sym_symbol] = ACTIONS(1303), + [anon_sym_object] = ACTIONS(1303), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [197] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(197), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [196] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(196), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), @@ -59083,10 +58652,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), - [anon_sym_in] = ACTIONS(1231), - [anon_sym_of] = ACTIONS(1234), + [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(1105), @@ -59095,7 +58664,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(1259), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), [anon_sym_using] = ACTIONS(158), @@ -59124,7 +58693,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -59139,8 +58708,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -59172,69 +58741,69 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [198] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(198), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1245), - [anon_sym_export] = ACTIONS(1247), + [197] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(197), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5095), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6862), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1246), + [anon_sym_export] = ACTIONS(1248), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1247), - [anon_sym_EQ] = ACTIONS(1281), + [anon_sym_type] = ACTIONS(1248), + [anon_sym_EQ] = ACTIONS(1267), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1252), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_namespace] = ACTIONS(1253), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1247), + [anon_sym_let] = ACTIONS(1248), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(118), @@ -59242,11 +58811,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1256), + [anon_sym_async] = ACTIONS(1257), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_EQ_GT] = ACTIONS(1259), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1260), + [anon_sym_new] = ACTIONS(1261), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -59273,7 +58842,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -59288,8 +58857,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -59301,72 +58870,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1247), - [anon_sym_readonly] = ACTIONS(1247), - [anon_sym_get] = ACTIONS(1247), - [anon_sym_set] = ACTIONS(1247), - [anon_sym_declare] = ACTIONS(1247), - [anon_sym_public] = ACTIONS(1247), - [anon_sym_private] = ACTIONS(1247), - [anon_sym_protected] = ACTIONS(1247), - [anon_sym_override] = ACTIONS(1247), - [anon_sym_module] = ACTIONS(1247), - [anon_sym_any] = ACTIONS(1247), - [anon_sym_number] = ACTIONS(1247), - [anon_sym_boolean] = ACTIONS(1247), - [anon_sym_string] = ACTIONS(1247), - [anon_sym_symbol] = ACTIONS(1247), - [anon_sym_object] = ACTIONS(1247), + [anon_sym_static] = ACTIONS(1248), + [anon_sym_readonly] = ACTIONS(1248), + [anon_sym_get] = ACTIONS(1248), + [anon_sym_set] = ACTIONS(1248), + [anon_sym_declare] = ACTIONS(1248), + [anon_sym_public] = ACTIONS(1248), + [anon_sym_private] = ACTIONS(1248), + [anon_sym_protected] = ACTIONS(1248), + [anon_sym_override] = ACTIONS(1248), + [anon_sym_module] = ACTIONS(1248), + [anon_sym_any] = ACTIONS(1248), + [anon_sym_number] = ACTIONS(1248), + [anon_sym_boolean] = ACTIONS(1248), + [anon_sym_string] = ACTIONS(1248), + [anon_sym_symbol] = ACTIONS(1248), + [anon_sym_object] = ACTIONS(1248), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [199] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(199), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5444), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(7046), - [aux_sym_export_statement_repeat1] = STATE(5589), + [198] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(198), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5095), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6862), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), @@ -59422,7 +58991,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -59437,8 +59006,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -59470,68 +59039,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [200] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(200), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), + [199] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(199), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5095), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6862), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1315), + [anon_sym_export] = ACTIONS(1317), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_type] = ACTIONS(1317), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_namespace] = ACTIONS(1321), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), + [anon_sym_let] = ACTIONS(1317), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), @@ -59540,11 +59109,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), + [anon_sym_async] = ACTIONS(1323), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(1325), + [anon_sym_EQ_GT] = ACTIONS(1299), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1109), + [anon_sym_new] = ACTIONS(1325), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -59571,7 +59140,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -59586,8 +59155,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -59599,72 +59168,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1317), + [anon_sym_readonly] = ACTIONS(1317), + [anon_sym_get] = ACTIONS(1317), + [anon_sym_set] = ACTIONS(1317), + [anon_sym_declare] = ACTIONS(1317), + [anon_sym_public] = ACTIONS(1317), + [anon_sym_private] = ACTIONS(1317), + [anon_sym_protected] = ACTIONS(1317), + [anon_sym_override] = ACTIONS(1317), + [anon_sym_module] = ACTIONS(1317), + [anon_sym_any] = ACTIONS(1317), + [anon_sym_number] = ACTIONS(1317), + [anon_sym_boolean] = ACTIONS(1317), + [anon_sym_string] = ACTIONS(1317), + [anon_sym_symbol] = ACTIONS(1317), + [anon_sym_object] = ACTIONS(1317), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [201] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(201), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5444), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(7046), - [aux_sym_export_statement_repeat1] = STATE(5589), + [200] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(200), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), @@ -59680,6 +59249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), @@ -59690,7 +59260,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(1311), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1109), [anon_sym_using] = ACTIONS(158), @@ -59719,7 +59289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -59734,8 +59304,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -59767,205 +59337,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [202] = { - [sym_import] = STATE(4355), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2974), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6947), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7209), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3134), - [sym_comment] = STATE(202), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5262), - [sym_pattern] = STATE(6167), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(4090), - [sym__type_query_member_expression_in_type_annotation] = STATE(4265), - [sym__type_query_call_expression_in_type_annotation] = STATE(4497), - [sym__type] = STATE(4275), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_type_arguments] = STATE(669), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6771), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1329), - [anon_sym_export] = ACTIONS(956), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(1333), - [anon_sym_typeof] = ACTIONS(1335), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1339), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1341), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1343), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1349), - [anon_sym_DASH] = ACTIONS(1349), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(1351), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1353), - [sym_number] = ACTIONS(1355), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(1357), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(1355), - [sym_false] = ACTIONS(1355), - [sym_null] = ACTIONS(1355), - [sym_undefined] = ACTIONS(1359), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(1361), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [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_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [203] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(203), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [201] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(201), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1379), + [anon_sym_EQ] = ACTIONS(1329), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), @@ -60015,7 +59437,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -60030,8 +59452,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -60063,57 +59485,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [204] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(204), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [202] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(202), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1381), + [anon_sym_EQ] = ACTIONS(1331), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), @@ -60163,7 +59585,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -60178,8 +59600,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -60211,57 +59633,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [205] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(205), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [203] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(203), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1383), + [anon_sym_EQ] = ACTIONS(1333), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), @@ -60311,7 +59733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -60326,8 +59748,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -60359,57 +59781,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [206] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(206), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [204] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(204), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1385), + [anon_sym_EQ] = ACTIONS(1335), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), @@ -60459,7 +59881,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -60474,8 +59896,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -60507,57 +59929,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [207] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(207), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [205] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(205), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_EQ] = ACTIONS(1337), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), @@ -60607,7 +60029,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -60622,8 +60044,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -60655,57 +60077,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [208] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(208), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [206] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(206), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1389), + [anon_sym_EQ] = ACTIONS(1339), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), @@ -60755,7 +60177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -60770,8 +60192,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -60803,57 +60225,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [209] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(209), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [207] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(207), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1391), + [anon_sym_EQ] = ACTIONS(1341), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), @@ -60903,7 +60325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -60918,8 +60340,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -60951,52 +60373,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [210] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(210), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [208] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(208), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), @@ -61051,7 +60473,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -61066,8 +60488,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -61099,57 +60521,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [211] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(211), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [209] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(209), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5095), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6862), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1393), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), @@ -61199,7 +60621,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -61214,8 +60636,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -61247,57 +60669,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [212] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(212), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [210] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(210), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1395), + [anon_sym_EQ] = ACTIONS(1343), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), @@ -61347,7 +60769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -61362,8 +60784,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -61395,57 +60817,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [213] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2440), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(213), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [211] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(211), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(1095), - [anon_sym_EQ] = ACTIONS(1397), + [anon_sym_EQ] = ACTIONS(1345), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), @@ -61495,7 +60917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(118), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), [anon_sym_LT] = ACTIONS(83), @@ -61510,8 +60932,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -61543,79 +60965,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, + [212] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(212), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_EQ] = ACTIONS(1347), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(173), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(138), + [anon_sym_in] = ACTIONS(118), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(1105), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(152), + [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(184), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [213] = { + [sym_import] = STATE(4321), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2836), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(6820), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7039), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2950), + [sym_comment] = STATE(213), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5079), + [sym_pattern] = STATE(5845), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3972), + [sym__type_query_member_expression_in_type_annotation] = STATE(4140), + [sym__type_query_call_expression_in_type_annotation] = STATE(4366), + [sym__type] = STATE(4144), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6588), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1349), + [anon_sym_export] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(1353), + [anon_sym_typeof] = ACTIONS(1355), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(989), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(1359), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1361), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1009), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1363), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1369), + [anon_sym_DASH] = ACTIONS(1369), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(1371), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1373), + [sym_number] = ACTIONS(1375), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(1377), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(1375), + [sym_false] = ACTIONS(1375), + [sym_null] = ACTIONS(1375), + [sym_undefined] = ACTIONS(1379), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(1381), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(1385), + [anon_sym_number] = ACTIONS(1385), + [anon_sym_boolean] = ACTIONS(1385), + [anon_sym_string] = ACTIONS(1385), + [anon_sym_symbol] = ACTIONS(1385), + [anon_sym_object] = ACTIONS(1385), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, [214] = { - [sym_import] = STATE(4441), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3378), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3332), + [sym_import] = STATE(4230), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3248), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3230), [sym_comment] = STATE(214), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(4862), - [sym__type_query_call_expression_in_type_annotation] = STATE(5570), - [sym__type] = STATE(4859), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(738), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(4828), + [sym__type_query_call_expression_in_type_annotation] = STATE(5541), + [sym__type] = STATE(4829), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(600), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1399), [anon_sym_export] = ACTIONS(1401), [anon_sym_STAR] = ACTIONS(113), @@ -61643,7 +61361,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1423), [anon_sym_DASH] = ACTIONS(1423), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1425), @@ -61688,78 +61406,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [215] = { - [sym_import] = STATE(4320), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3124), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3485), + [sym_import] = STATE(4192), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2475), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2486), [sym_comment] = STATE(215), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(4956), - [sym__type_query_call_expression_in_type_annotation] = STATE(5644), - [sym__type] = STATE(4954), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(721), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5639), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(4828), + [sym__type_query_call_expression_in_type_annotation] = STATE(5541), + [sym__type] = STATE(4829), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1443), [anon_sym_export] = ACTIONS(1445), [anon_sym_STAR] = ACTIONS(113), @@ -61770,43 +61488,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1445), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(1461), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1453), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1465), - [anon_sym_using] = ACTIONS(1467), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_using] = ACTIONS(1013), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1469), - [anon_sym_DASH] = ACTIONS(1469), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(1459), + [anon_sym_DASH] = ACTIONS(1459), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1471), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1475), - [sym_number] = ACTIONS(1477), - [sym_private_property_identifier] = ACTIONS(1479), - [sym_this] = ACTIONS(1481), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1477), - [sym_false] = ACTIONS(1477), - [sym_null] = ACTIONS(1477), - [sym_undefined] = ACTIONS(1483), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(1021), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1461), + [sym_number] = ACTIONS(1463), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(1465), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(1463), + [sym_false] = ACTIONS(1463), + [sym_null] = ACTIONS(1463), + [sym_undefined] = ACTIONS(1467), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1485), + [anon_sym_readonly] = ACTIONS(1469), [anon_sym_get] = ACTIONS(1445), [anon_sym_set] = ACTIONS(1445), [anon_sym_QMARK] = ACTIONS(194), @@ -61816,12 +61534,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_protected] = ACTIONS(1445), [anon_sym_override] = ACTIONS(1445), [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1487), - [anon_sym_number] = ACTIONS(1487), - [anon_sym_boolean] = ACTIONS(1487), - [anon_sym_string] = ACTIONS(1487), - [anon_sym_symbol] = ACTIONS(1487), - [anon_sym_object] = ACTIONS(1487), + [anon_sym_any] = ACTIONS(1471), + [anon_sym_number] = ACTIONS(1471), + [anon_sym_boolean] = ACTIONS(1471), + [anon_sym_string] = ACTIONS(1471), + [anon_sym_symbol] = ACTIONS(1471), + [anon_sym_object] = ACTIONS(1471), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), @@ -61832,140 +61550,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [216] = { - [sym_import] = STATE(4476), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2614), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(2935), + [sym_import] = STATE(4192), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2762), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2486), [sym_comment] = STATE(216), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(4956), - [sym__type_query_call_expression_in_type_annotation] = STATE(5644), - [sym__type] = STATE(4954), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(795), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1489), - [anon_sym_export] = ACTIONS(1491), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(4828), + [sym__type_query_call_expression_in_type_annotation] = STATE(5541), + [sym__type] = STATE(4829), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(567), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1473), + [anon_sym_export] = ACTIONS(1475), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1497), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_typeof] = ACTIONS(1479), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), + [anon_sym_let] = ACTIONS(1475), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(136), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1453), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1509), - [anon_sym_using] = ACTIONS(1511), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1487), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1489), + [anon_sym_using] = ACTIONS(1491), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1513), - [anon_sym_DASH] = ACTIONS(1513), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(1493), + [anon_sym_DASH] = ACTIONS(1493), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1515), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1519), - [sym_number] = ACTIONS(1521), - [sym_private_property_identifier] = ACTIONS(1523), - [sym_this] = ACTIONS(1525), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1527), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1495), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1461), + [sym_number] = ACTIONS(1463), + [sym_private_property_identifier] = ACTIONS(1499), + [sym_this] = ACTIONS(1465), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(1463), + [sym_false] = ACTIONS(1463), + [sym_null] = ACTIONS(1463), + [sym_undefined] = ACTIONS(1501), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1491), - [anon_sym_readonly] = ACTIONS(1529), - [anon_sym_get] = ACTIONS(1491), - [anon_sym_set] = ACTIONS(1491), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1503), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), [anon_sym_QMARK] = ACTIONS(194), - [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(1531), - [anon_sym_number] = ACTIONS(1531), - [anon_sym_boolean] = ACTIONS(1531), - [anon_sym_string] = ACTIONS(1531), - [anon_sym_symbol] = ACTIONS(1531), - [anon_sym_object] = ACTIONS(1531), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1505), + [anon_sym_number] = ACTIONS(1505), + [anon_sym_boolean] = ACTIONS(1505), + [anon_sym_string] = ACTIONS(1505), + [anon_sym_symbol] = ACTIONS(1505), + [anon_sym_object] = ACTIONS(1505), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), @@ -61976,140 +61694,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [217] = { - [sym_import] = STATE(4441), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3420), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3332), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2594), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(2851), [sym_comment] = STATE(217), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(4862), - [sym__type_query_call_expression_in_type_annotation] = STATE(5570), - [sym__type] = STATE(4859), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(790), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1533), - [anon_sym_export] = ACTIONS(1535), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(4736), + [sym__type_query_call_expression_in_type_annotation] = STATE(5461), + [sym__type] = STATE(4737), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(671), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1507), + [anon_sym_export] = ACTIONS(1509), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1405), - [anon_sym_typeof] = ACTIONS(1539), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_typeof] = ACTIONS(1515), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), + [anon_sym_let] = ACTIONS(1509), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(1519), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1549), - [anon_sym_using] = ACTIONS(1551), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1523), + [anon_sym_using] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1553), - [anon_sym_DASH] = ACTIONS(1553), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(1525), + [anon_sym_DASH] = ACTIONS(1525), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1555), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(1527), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1429), - [sym_number] = ACTIONS(1431), - [sym_private_property_identifier] = ACTIONS(1559), - [sym_this] = ACTIONS(1435), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(1431), - [sym_false] = ACTIONS(1431), - [sym_null] = ACTIONS(1431), - [sym_undefined] = ACTIONS(1561), + [anon_sym_BQUOTE] = ACTIONS(1529), + [sym_number] = ACTIONS(1531), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(1533), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_undefined] = ACTIONS(1535), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1563), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1537), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1565), - [anon_sym_number] = ACTIONS(1565), - [anon_sym_boolean] = ACTIONS(1565), - [anon_sym_string] = ACTIONS(1565), - [anon_sym_symbol] = ACTIONS(1565), - [anon_sym_object] = ACTIONS(1565), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1539), + [anon_sym_number] = ACTIONS(1539), + [anon_sym_boolean] = ACTIONS(1539), + [anon_sym_string] = ACTIONS(1539), + [anon_sym_symbol] = ACTIONS(1539), + [anon_sym_object] = ACTIONS(1539), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), @@ -62120,140 +61838,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [218] = { - [sym_import] = STATE(4334), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2904), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), + [sym_import] = STATE(4267), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2463), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2738), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(2851), [sym_comment] = STATE(218), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(4862), - [sym__type_query_call_expression_in_type_annotation] = STATE(5570), - [sym__type] = STATE(4859), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(735), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1567), - [anon_sym_export] = ACTIONS(1569), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(4736), + [sym__type_query_call_expression_in_type_annotation] = STATE(5461), + [sym__type] = STATE(4737), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(583), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1541), + [anon_sym_export] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1573), - [anon_sym_typeof] = ACTIONS(1575), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(1513), + [anon_sym_typeof] = ACTIONS(1547), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1543), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(1519), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1581), - [anon_sym_using] = ACTIONS(1143), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1557), + [anon_sym_using] = ACTIONS(1559), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1583), - [anon_sym_DASH] = ACTIONS(1583), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(1561), + [anon_sym_DASH] = ACTIONS(1561), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1147), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1585), - [sym_number] = ACTIONS(1587), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(1589), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(1587), - [sym_false] = ACTIONS(1587), - [sym_null] = ACTIONS(1587), - [sym_undefined] = ACTIONS(1591), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1563), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1529), + [sym_number] = ACTIONS(1531), + [sym_private_property_identifier] = ACTIONS(1567), + [sym_this] = ACTIONS(1533), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(1531), + [sym_false] = ACTIONS(1531), + [sym_null] = ACTIONS(1531), + [sym_undefined] = ACTIONS(1569), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1593), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1543), + [anon_sym_readonly] = ACTIONS(1571), + [anon_sym_get] = ACTIONS(1543), + [anon_sym_set] = ACTIONS(1543), [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(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_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(1573), + [anon_sym_number] = ACTIONS(1573), + [anon_sym_boolean] = ACTIONS(1573), + [anon_sym_string] = ACTIONS(1573), + [anon_sym_symbol] = ACTIONS(1573), + [anon_sym_object] = ACTIONS(1573), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), @@ -62264,140 +61982,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [219] = { - [sym_import] = STATE(4441), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3478), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3332), + [sym_import] = STATE(4192), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2678), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2486), [sym_comment] = STATE(219), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(4862), - [sym__type_query_call_expression_in_type_annotation] = STATE(5570), - [sym__type] = STATE(4859), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(801), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1597), - [anon_sym_export] = ACTIONS(1095), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(4828), + [sym__type_query_call_expression_in_type_annotation] = STATE(5541), + [sym__type] = STATE(4829), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(775), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1575), + [anon_sym_export] = ACTIONS(1577), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_typeof] = ACTIONS(1601), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1449), + [anon_sym_typeof] = ACTIONS(1581), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), + [anon_sym_let] = ACTIONS(1577), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1415), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1453), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1603), - [anon_sym_using] = ACTIONS(158), + [anon_sym_new] = ACTIONS(1585), + [anon_sym_using] = ACTIONS(1143), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1605), - [anon_sym_DASH] = ACTIONS(1605), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(1587), + [anon_sym_DASH] = ACTIONS(1587), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(175), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1147), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1429), - [sym_number] = ACTIONS(1431), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1435), + [anon_sym_BQUOTE] = ACTIONS(1461), + [sym_number] = ACTIONS(1463), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(1465), [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(1431), - [sym_false] = ACTIONS(1431), - [sym_null] = ACTIONS(1431), - [sym_undefined] = ACTIONS(1607), + [sym_true] = ACTIONS(1463), + [sym_false] = ACTIONS(1463), + [sym_null] = ACTIONS(1463), + [sym_undefined] = ACTIONS(1589), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1609), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1577), + [anon_sym_readonly] = ACTIONS(1591), + [anon_sym_get] = ACTIONS(1577), + [anon_sym_set] = ACTIONS(1577), [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1611), - [anon_sym_number] = ACTIONS(1611), - [anon_sym_boolean] = ACTIONS(1611), - [anon_sym_string] = ACTIONS(1611), - [anon_sym_symbol] = ACTIONS(1611), - [anon_sym_object] = ACTIONS(1611), + [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(1593), + [anon_sym_number] = ACTIONS(1593), + [anon_sym_boolean] = ACTIONS(1593), + [anon_sym_string] = ACTIONS(1593), + [anon_sym_symbol] = ACTIONS(1593), + [anon_sym_object] = ACTIONS(1593), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), @@ -62408,140 +62126,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [220] = { - [sym_import] = STATE(4476), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2735), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(2935), + [sym_import] = STATE(4331), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2846), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3334), [sym_comment] = STATE(220), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(4956), - [sym__type_query_call_expression_in_type_annotation] = STATE(5644), - [sym__type] = STATE(4954), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(695), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1613), - [anon_sym_export] = ACTIONS(1615), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(4736), + [sym__type_query_call_expression_in_type_annotation] = STATE(5461), + [sym__type] = STATE(4737), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(774), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1595), + [anon_sym_export] = ACTIONS(1597), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1495), - [anon_sym_typeof] = ACTIONS(1619), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(1601), + [anon_sym_typeof] = ACTIONS(1603), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1597), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(1455), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(1505), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1517), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(1611), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1623), - [anon_sym_using] = ACTIONS(79), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1615), + [anon_sym_using] = ACTIONS(1617), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1625), - [anon_sym_DASH] = ACTIONS(1625), + [anon_sym_PLUS] = ACTIONS(1619), + [anon_sym_DASH] = ACTIONS(1619), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(1627), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1519), - [sym_number] = ACTIONS(1521), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(1525), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1621), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1625), + [sym_number] = ACTIONS(1627), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(1631), [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1521), - [sym_false] = ACTIONS(1521), - [sym_null] = ACTIONS(1521), - [sym_undefined] = ACTIONS(1629), + [sym_true] = ACTIONS(1627), + [sym_false] = ACTIONS(1627), + [sym_null] = ACTIONS(1627), + [sym_undefined] = ACTIONS(1633), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1631), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_readonly] = ACTIONS(1635), + [anon_sym_get] = ACTIONS(1597), + [anon_sym_set] = ACTIONS(1597), [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1633), - [anon_sym_number] = ACTIONS(1633), - [anon_sym_boolean] = ACTIONS(1633), - [anon_sym_string] = ACTIONS(1633), - [anon_sym_symbol] = ACTIONS(1633), - [anon_sym_object] = ACTIONS(1633), + [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(1637), + [anon_sym_number] = ACTIONS(1637), + [anon_sym_boolean] = ACTIONS(1637), + [anon_sym_string] = ACTIONS(1637), + [anon_sym_symbol] = ACTIONS(1637), + [anon_sym_object] = ACTIONS(1637), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), @@ -62552,140 +62270,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [221] = { - [sym_import] = STATE(4334), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2705), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2738), + [sym_import] = STATE(4230), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3243), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3230), [sym_comment] = STATE(221), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(4862), - [sym__type_query_call_expression_in_type_annotation] = STATE(5570), - [sym__type] = STATE(4859), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(669), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1635), - [anon_sym_export] = ACTIONS(1637), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(4828), + [sym__type_query_call_expression_in_type_annotation] = STATE(5541), + [sym__type] = STATE(4829), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(584), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1639), + [anon_sym_export] = ACTIONS(1641), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1573), - [anon_sym_typeof] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1405), + [anon_sym_typeof] = ACTIONS(1645), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), + [anon_sym_let] = ACTIONS(1641), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1415), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_using] = ACTIONS(980), + [anon_sym_new] = ACTIONS(1655), + [anon_sym_using] = ACTIONS(1657), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1647), - [anon_sym_DASH] = ACTIONS(1647), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(1659), + [anon_sym_DASH] = ACTIONS(1659), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1585), - [sym_number] = ACTIONS(1587), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(1589), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1661), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1429), + [sym_number] = ACTIONS(1431), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(1435), [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(1587), - [sym_false] = ACTIONS(1587), - [sym_null] = ACTIONS(1587), - [sym_undefined] = ACTIONS(1649), + [sym_true] = ACTIONS(1431), + [sym_false] = ACTIONS(1431), + [sym_null] = ACTIONS(1431), + [sym_undefined] = ACTIONS(1667), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_get] = ACTIONS(1637), - [anon_sym_set] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1669), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), [anon_sym_QMARK] = ACTIONS(194), - [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(1653), - [anon_sym_number] = ACTIONS(1653), - [anon_sym_boolean] = ACTIONS(1653), - [anon_sym_string] = ACTIONS(1653), - [anon_sym_symbol] = ACTIONS(1653), - [anon_sym_object] = ACTIONS(1653), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [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_object] = ACTIONS(1671), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), @@ -62696,140 +62414,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [222] = { - [sym_import] = STATE(4441), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3265), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3332), + [sym_import] = STATE(4230), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3169), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3230), [sym_comment] = STATE(222), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(4862), - [sym__type_query_call_expression_in_type_annotation] = STATE(5570), - [sym__type] = STATE(4859), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(626), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1655), - [anon_sym_export] = ACTIONS(1657), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(4828), + [sym__type_query_call_expression_in_type_annotation] = STATE(5541), + [sym__type] = STATE(4829), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(618), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1673), + [anon_sym_export] = ACTIONS(1675), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1599), - [anon_sym_typeof] = ACTIONS(1661), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1679), + [anon_sym_typeof] = ACTIONS(1681), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), + [anon_sym_let] = ACTIONS(1675), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), [anon_sym_LBRACK] = ACTIONS(1415), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1671), - [anon_sym_using] = ACTIONS(1673), + [anon_sym_new] = ACTIONS(1691), + [anon_sym_using] = ACTIONS(1693), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1675), - [anon_sym_DASH] = ACTIONS(1675), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1695), + [anon_sym_DASH] = ACTIONS(1695), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1677), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1697), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1429), [sym_number] = ACTIONS(1431), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(1435), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(1431), [sym_false] = ACTIONS(1431), [sym_null] = ACTIONS(1431), - [sym_undefined] = ACTIONS(1683), + [sym_undefined] = ACTIONS(1703), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1685), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1705), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1687), - [anon_sym_number] = ACTIONS(1687), - [anon_sym_boolean] = ACTIONS(1687), - [anon_sym_string] = ACTIONS(1687), - [anon_sym_symbol] = ACTIONS(1687), - [anon_sym_object] = ACTIONS(1687), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [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_object] = ACTIONS(1707), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), @@ -62840,134 +62558,134 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [223] = { - [sym_import] = STATE(4334), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2820), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2738), + [sym_import] = STATE(4230), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3362), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3230), [sym_comment] = STATE(223), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(4862), - [sym__type_query_call_expression_in_type_annotation] = STATE(5570), - [sym__type] = STATE(4859), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(803), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1689), - [anon_sym_export] = ACTIONS(1691), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(4828), + [sym__type_query_call_expression_in_type_annotation] = STATE(5541), + [sym__type] = STATE(4829), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(657), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1709), + [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1573), - [anon_sym_typeof] = ACTIONS(1695), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1679), + [anon_sym_typeof] = ACTIONS(1711), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), + [anon_sym_let] = ACTIONS(1095), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1577), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1415), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1705), - [anon_sym_using] = ACTIONS(1707), + [anon_sym_new] = ACTIONS(1713), + [anon_sym_using] = ACTIONS(158), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1709), - [anon_sym_DASH] = ACTIONS(1709), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1715), + [anon_sym_DASH] = ACTIONS(1715), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1711), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1585), - [sym_number] = ACTIONS(1587), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(1589), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(175), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1429), + [sym_number] = ACTIONS(1431), + [sym_private_property_identifier] = ACTIONS(184), + [sym_this] = ACTIONS(1435), [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(1587), - [sym_false] = ACTIONS(1587), - [sym_null] = ACTIONS(1587), + [sym_true] = ACTIONS(1431), + [sym_false] = ACTIONS(1431), + [sym_null] = ACTIONS(1431), [sym_undefined] = ACTIONS(1717), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1095), [anon_sym_readonly] = ACTIONS(1719), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), [anon_sym_any] = ACTIONS(1721), [anon_sym_number] = ACTIONS(1721), [anon_sym_boolean] = ACTIONS(1721), @@ -62984,115 +62702,115 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [224] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2818), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7266), - [sym_string] = STATE(3252), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2687), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7083), + [sym_string] = STATE(3203), [sym_comment] = STATE(224), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(6192), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(5449), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(5539), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(669), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5794), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(5100), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(5482), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1723), - [anon_sym_export] = ACTIONS(1637), + [anon_sym_export] = ACTIONS(1445), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), [anon_sym_LBRACE] = ACTIONS(1725), [anon_sym_typeof] = ACTIONS(1727), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), + [anon_sym_let] = ACTIONS(1445), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), [anon_sym_LBRACK] = ACTIONS(1729), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1645), - [anon_sym_using] = ACTIONS(980), + [anon_sym_new] = ACTIONS(1457), + [anon_sym_using] = ACTIONS(1013), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1731), [anon_sym_DASH] = ACTIONS(1731), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(1021), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1151), [sym_number] = ACTIONS(1153), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(1733), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(1153), @@ -63100,17 +62818,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(1153), [sym_undefined] = ACTIONS(1735), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_readonly] = ACTIONS(1651), - [anon_sym_get] = ACTIONS(1637), - [anon_sym_set] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1469), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), [anon_sym_QMARK] = ACTIONS(194), - [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_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), [anon_sym_any] = ACTIONS(1737), [anon_sym_number] = ACTIONS(1737), [anon_sym_boolean] = ACTIONS(1737), @@ -63127,76 +62845,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [225] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2331), - [sym_subscript_expression] = STATE(2331), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4780), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3527), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2177), + [sym_subscript_expression] = STATE(2177), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4614), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3397), [sym_comment] = STATE(225), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_non_null_expression] = STATE(2331), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5447), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(801), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(2177), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5098), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(657), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1739), [anon_sym_export] = ACTIONS(1741), [anon_sym_STAR] = ACTIONS(113), @@ -63224,13 +62942,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1755), [anon_sym_DASH] = ACTIONS(1755), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(175), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1757), [sym_number] = ACTIONS(1759), @@ -63269,91 +62987,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [226] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2900), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_nested_identifier] = STATE(7429), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2249), - [sym_subscript_expression] = STATE(2249), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5214), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(3147), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2754), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_nested_identifier] = STATE(7246), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4968), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(3154), [sym_comment] = STATE(226), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(5296), - [sym_non_null_expression] = STATE(2249), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5447), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_type_arguments] = STATE(669), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6807), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(5025), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5098), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6687), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1769), [anon_sym_export] = ACTIONS(1771), [anon_sym_STAR] = ACTIONS(113), [anon_sym_type] = ACTIONS(1771), [anon_sym_namespace] = ACTIONS(1773), [anon_sym_LBRACE] = ACTIONS(1775), - [anon_sym_typeof] = ACTIONS(964), + [anon_sym_typeof] = ACTIONS(997), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1771), [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(136), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(972), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1005), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), @@ -63361,23 +63079,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_async] = ACTIONS(1777), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1779), - [anon_sym_using] = ACTIONS(980), + [anon_sym_using] = ACTIONS(1013), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(984), - [anon_sym_DASH] = ACTIONS(984), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(1017), + [anon_sym_DASH] = ACTIONS(1017), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(988), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(1021), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(180), [sym_number] = ACTIONS(182), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(994), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(1027), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(182), [sym_false] = ACTIONS(182), @@ -63411,82 +63129,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [227] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2678), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2514), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), [sym_comment] = STATE(227), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), + [anon_sym_export] = ACTIONS(1543), [anon_sym_STAR] = ACTIONS(1789), - [anon_sym_type] = ACTIONS(1637), + [anon_sym_type] = ACTIONS(1543), [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_RBRACE] = ACTIONS(1791), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1551), [anon_sym_in] = ACTIONS(1791), - [anon_sym_COLON] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_RBRACK] = ACTIONS(1791), + [anon_sym_of] = ACTIONS(1791), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1791), [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), [anon_sym_QMARK_DOT] = ACTIONS(1791), [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), + [anon_sym_using] = ACTIONS(1559), [anon_sym_AMP_AMP] = ACTIONS(1791), [anon_sym_PIPE_PIPE] = ACTIONS(1791), [anon_sym_GT_GT] = ACTIONS(1791), @@ -63495,9 +63212,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1791), [anon_sym_CARET] = ACTIONS(1791), [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_PERCENT] = ACTIONS(1791), [anon_sym_STAR_STAR] = ACTIONS(1791), [anon_sym_LT] = ACTIONS(83), @@ -63509,118 +63226,120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1791), [anon_sym_QMARK_QMARK] = ACTIONS(1791), [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1567), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [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_object] = ACTIONS(1543), [anon_sym_satisfies] = ACTIONS(1791), + [sym__automatic_semicolon] = ACTIONS(1797), [sym__ternary_qmark] = ACTIONS(1797), [sym_html_comment] = ACTIONS(5), }, [228] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2659), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2628), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(228), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), + [anon_sym_export] = ACTIONS(1445), [anon_sym_STAR] = ACTIONS(1801), - [anon_sym_type] = ACTIONS(1491), + [anon_sym_type] = ACTIONS(1445), [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_typeof] = ACTIONS(1499), + [anon_sym_RBRACE] = ACTIONS(1791), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1001), [anon_sym_in] = ACTIONS(1791), - [anon_sym_of] = ACTIONS(1791), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_COLON] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_RBRACK] = ACTIONS(1791), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1791), [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(152), [anon_sym_QMARK_DOT] = ACTIONS(1791), [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), + [anon_sym_using] = ACTIONS(1013), [anon_sym_AMP_AMP] = ACTIONS(1791), [anon_sym_PIPE_PIPE] = ACTIONS(1791), [anon_sym_GT_GT] = ACTIONS(1791), @@ -63629,9 +63348,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1791), [anon_sym_CARET] = ACTIONS(1791), [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(1791), [anon_sym_STAR_STAR] = ACTIONS(1791), [anon_sym_LT] = ACTIONS(83), @@ -63643,101 +63362,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1791), [anon_sym_QMARK_QMARK] = ACTIONS(1791), [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [anon_sym_satisfies] = ACTIONS(1791), - [sym__automatic_semicolon] = ACTIONS(1797), [sym__ternary_qmark] = ACTIONS(1797), [sym_html_comment] = ACTIONS(5), }, [229] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2618), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2573), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), [sym_comment] = STATE(229), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), + [anon_sym_export] = ACTIONS(1509), [anon_sym_STAR] = ACTIONS(1809), - [anon_sym_type] = ACTIONS(1615), + [anon_sym_type] = ACTIONS(1509), [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_COMMA] = ACTIONS(1791), [anon_sym_RBRACE] = ACTIONS(1791), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -63750,9 +63468,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(1791), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_QMARK_DOT] = ACTIONS(1791), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), @@ -63794,84 +63512,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [anon_sym_satisfies] = ACTIONS(1791), [sym__automatic_semicolon] = ACTIONS(1797), [sym__ternary_qmark] = ACTIONS(1797), [sym_html_comment] = ACTIONS(5), }, [230] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2844), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2696), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(230), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), + [anon_sym_export] = ACTIONS(1577), [anon_sym_STAR] = ACTIONS(1815), - [anon_sym_type] = ACTIONS(1569), + [anon_sym_type] = ACTIONS(1577), [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_COMMA] = ACTIONS(1791), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_RPAREN] = ACTIONS(1791), @@ -63879,14 +63597,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(1791), [anon_sym_COLON] = ACTIONS(1791), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1791), [anon_sym_DOT] = ACTIONS(1791), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_QMARK_DOT] = ACTIONS(1791), [anon_sym_new] = ACTIONS(1817), @@ -63901,7 +63619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1791), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(1791), [anon_sym_STAR_STAR] = ACTIONS(1791), [anon_sym_LT] = ACTIONS(83), @@ -63929,100 +63647,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [anon_sym_satisfies] = ACTIONS(1791), [sym__ternary_qmark] = ACTIONS(1797), [sym_html_comment] = ACTIONS(5), }, [231] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(2929), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2742), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(231), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), + [anon_sym_export] = ACTIONS(1475), [anon_sym_STAR] = ACTIONS(1823), - [anon_sym_type] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1475), [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(1791), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1483), [anon_sym_in] = ACTIONS(1791), - [anon_sym_SEMI] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1791), [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1487), + [anon_sym_function] = ACTIONS(152), [anon_sym_QMARK_DOT] = ACTIONS(1791), [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), + [anon_sym_using] = ACTIONS(1491), [anon_sym_AMP_AMP] = ACTIONS(1791), [anon_sym_PIPE_PIPE] = ACTIONS(1791), [anon_sym_GT_GT] = ACTIONS(1791), @@ -64031,9 +63749,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1791), [anon_sym_CARET] = ACTIONS(1791), [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_PERCENT] = ACTIONS(1791), [anon_sym_STAR_STAR] = ACTIONS(1791), [anon_sym_LT] = ACTIONS(83), @@ -64045,117 +63763,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1791), [anon_sym_QMARK_QMARK] = ACTIONS(1791), [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1499), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [anon_sym_satisfies] = ACTIONS(1791), - [sym__automatic_semicolon] = ACTIONS(1797), + [anon_sym_implements] = ACTIONS(1791), [sym__ternary_qmark] = ACTIONS(1797), [sym_html_comment] = ACTIONS(5), }, [232] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2850), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2847), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), [sym_comment] = STATE(232), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), + [anon_sym_export] = ACTIONS(1597), [anon_sym_STAR] = ACTIONS(1831), - [anon_sym_type] = ACTIONS(1691), + [anon_sym_type] = ACTIONS(1597), [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(1791), - [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), [anon_sym_in] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_SEMI] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1791), [anon_sym_DOT] = ACTIONS(1791), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), [anon_sym_QMARK_DOT] = ACTIONS(1791), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), + [anon_sym_using] = ACTIONS(1617), [anon_sym_AMP_AMP] = ACTIONS(1791), [anon_sym_PIPE_PIPE] = ACTIONS(1791), [anon_sym_GT_GT] = ACTIONS(1791), @@ -64164,9 +63882,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1791), [anon_sym_CARET] = ACTIONS(1791), [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_PERCENT] = ACTIONS(1791), [anon_sym_STAR_STAR] = ACTIONS(1791), [anon_sym_LT] = ACTIONS(83), @@ -64178,105 +63896,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1791), [anon_sym_QMARK_QMARK] = ACTIONS(1791), [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [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_object] = ACTIONS(1597), [anon_sym_satisfies] = ACTIONS(1791), - [anon_sym_implements] = ACTIONS(1791), + [sym__automatic_semicolon] = ACTIONS(1797), [sym__ternary_qmark] = ACTIONS(1797), [sym_html_comment] = ACTIONS(5), }, [233] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3259), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3106), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(233), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), + [anon_sym_export] = ACTIONS(1401), [anon_sym_STAR] = ACTIONS(1839), - [anon_sym_type] = ACTIONS(1535), + [anon_sym_type] = ACTIONS(1401), [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), + [anon_sym_await] = ACTIONS(1411), [anon_sym_in] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_RBRACK] = ACTIONS(1791), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1791), @@ -64284,11 +64002,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), [anon_sym_QMARK_DOT] = ACTIONS(1791), [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), + [anon_sym_using] = ACTIONS(1421), [anon_sym_AMP_AMP] = ACTIONS(1791), [anon_sym_PIPE_PIPE] = ACTIONS(1791), [anon_sym_GT_GT] = ACTIONS(1791), @@ -64297,9 +64015,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1791), [anon_sym_CARET] = ACTIONS(1791), [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(1791), [anon_sym_STAR_STAR] = ACTIONS(1791), [anon_sym_LT] = ACTIONS(83), @@ -64311,15 +64029,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1791), [anon_sym_QMARK_QMARK] = ACTIONS(1791), [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1433), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -64327,100 +64045,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [anon_sym_satisfies] = ACTIONS(1791), [sym__ternary_qmark] = ACTIONS(1797), [sym_html_comment] = ACTIONS(5), }, [234] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3363), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3045), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(234), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), + [anon_sym_export] = ACTIONS(1641), [anon_sym_STAR] = ACTIONS(1847), - [anon_sym_type] = ACTIONS(1657), + [anon_sym_type] = ACTIONS(1641), [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), + [anon_sym_await] = ACTIONS(1649), [anon_sym_in] = ACTIONS(1791), - [anon_sym_of] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_COLON] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1791), [anon_sym_DOT] = ACTIONS(1791), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), [anon_sym_QMARK_DOT] = ACTIONS(1791), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), + [anon_sym_using] = ACTIONS(1657), [anon_sym_AMP_AMP] = ACTIONS(1791), [anon_sym_PIPE_PIPE] = ACTIONS(1791), [anon_sym_GT_GT] = ACTIONS(1791), @@ -64429,9 +64147,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1791), [anon_sym_CARET] = ACTIONS(1791), [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(1791), [anon_sym_STAR_STAR] = ACTIONS(1791), [anon_sym_LT] = ACTIONS(83), @@ -64443,15 +64161,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1791), [anon_sym_QMARK_QMARK] = ACTIONS(1791), [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -64459,100 +64177,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [anon_sym_satisfies] = ACTIONS(1791), [sym__ternary_qmark] = ACTIONS(1797), [sym_html_comment] = ACTIONS(5), }, [235] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3369), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3212), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(235), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), + [anon_sym_export] = ACTIONS(1675), [anon_sym_STAR] = ACTIONS(1855), - [anon_sym_type] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1675), [anon_sym_as] = ACTIONS(1791), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), + [anon_sym_await] = ACTIONS(1685), [anon_sym_in] = ACTIONS(1791), - [anon_sym_COLON] = ACTIONS(1791), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_of] = ACTIONS(1791), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(1791), [anon_sym_DOT] = ACTIONS(1791), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), [anon_sym_QMARK_DOT] = ACTIONS(1791), [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), + [anon_sym_using] = ACTIONS(1693), [anon_sym_AMP_AMP] = ACTIONS(1791), [anon_sym_PIPE_PIPE] = ACTIONS(1791), [anon_sym_GT_GT] = ACTIONS(1791), @@ -64561,9 +64279,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1791), [anon_sym_CARET] = ACTIONS(1791), [anon_sym_PIPE] = ACTIONS(1791), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_PERCENT] = ACTIONS(1791), [anon_sym_STAR_STAR] = ACTIONS(1791), [anon_sym_LT] = ACTIONS(83), @@ -64575,15 +64293,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(1791), [anon_sym_QMARK_QMARK] = ACTIONS(1791), [anon_sym_instanceof] = ACTIONS(1791), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -64591,72 +64309,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [anon_sym_satisfies] = ACTIONS(1791), [sym__ternary_qmark] = ACTIONS(1797), [sym_html_comment] = ACTIONS(5), }, [236] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3475), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3297), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(236), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_STAR] = ACTIONS(1861), @@ -64694,7 +64412,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(1791), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_PERCENT] = ACTIONS(1791), [anon_sym_STAR_STAR] = ACTIONS(1791), [anon_sym_LT] = ACTIONS(83), @@ -64709,8 +64427,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -64743,1542 +64461,1542 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [237] = { - [sym_declaration] = STATE(1307), - [sym_import] = STATE(4341), - [sym_variable_declaration] = STATE(1364), - [sym_lexical_declaration] = STATE(1364), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(2978), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1364), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1364), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1364), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), + [sym_declaration] = STATE(1449), + [sym_import] = STATE(4300), + [sym_variable_declaration] = STATE(1468), + [sym_lexical_declaration] = STATE(1468), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1468), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1468), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1468), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), [sym_comment] = STATE(237), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_function_signature] = STATE(1364), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1364), - [sym_abstract_class_declaration] = STATE(1364), - [sym_module] = STATE(1364), - [sym_internal_module] = STATE(367), - [sym_import_alias] = STATE(1364), - [sym_interface_declaration] = STATE(1364), - [sym_enum_declaration] = STATE(1364), - [sym_type_alias_declaration] = STATE(1364), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5499), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_function_signature] = STATE(1468), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1468), + [sym_abstract_class_declaration] = STATE(1468), + [sym_module] = STATE(1468), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1468), + [sym_interface_declaration] = STATE(1468), + [sym_enum_declaration] = STATE(1468), + [sym_type_alias_declaration] = STATE(1468), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5128), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), [anon_sym_type] = ACTIONS(1863), [anon_sym_namespace] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(1867), - [anon_sym_var] = ACTIONS(904), + [anon_sym_var] = ACTIONS(776), [anon_sym_let] = ACTIONS(1869), - [anon_sym_const] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(780), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), + [anon_sym_class] = ACTIONS(806), [anon_sym_async] = ACTIONS(1871), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_function] = ACTIONS(810), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_readonly] = ACTIONS(1597), + [anon_sym_get] = ACTIONS(1597), + [anon_sym_set] = ACTIONS(1597), [anon_sym_declare] = ACTIONS(1873), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1597), + [anon_sym_private] = ACTIONS(1597), + [anon_sym_protected] = ACTIONS(1597), + [anon_sym_override] = ACTIONS(1597), [anon_sym_module] = ACTIONS(1875), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [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_object] = ACTIONS(1597), + [anon_sym_abstract] = ACTIONS(820), + [anon_sym_interface] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(824), [sym_html_comment] = ACTIONS(5), }, [238] = { - [sym_declaration] = STATE(1183), - [sym_import] = STATE(4341), - [sym_variable_declaration] = STATE(1205), - [sym_lexical_declaration] = STATE(1205), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(2933), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1205), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1205), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1205), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), + [sym_declaration] = STATE(1071), + [sym_import] = STATE(4300), + [sym_variable_declaration] = STATE(1197), + [sym_lexical_declaration] = STATE(1197), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2783), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1197), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1197), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1197), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), [sym_comment] = STATE(238), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_function_signature] = STATE(1205), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1205), - [sym_abstract_class_declaration] = STATE(1205), - [sym_module] = STATE(1205), - [sym_internal_module] = STATE(307), - [sym_import_alias] = STATE(1205), - [sym_interface_declaration] = STATE(1205), - [sym_enum_declaration] = STATE(1205), - [sym_type_alias_declaration] = STATE(1205), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5351), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_function_signature] = STATE(1197), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1197), + [sym_abstract_class_declaration] = STATE(1197), + [sym_module] = STATE(1197), + [sym_internal_module] = STATE(310), + [sym_import_alias] = STATE(1197), + [sym_interface_declaration] = STATE(1197), + [sym_enum_declaration] = STATE(1197), + [sym_type_alias_declaration] = STATE(1197), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5042), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), [anon_sym_type] = ACTIONS(1877), [anon_sym_namespace] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(1881), - [anon_sym_var] = ACTIONS(840), + [anon_sym_var] = ACTIONS(904), [anon_sym_let] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(844), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_const] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), + [anon_sym_class] = ACTIONS(934), [anon_sym_async] = ACTIONS(1885), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_function] = ACTIONS(938), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_readonly] = ACTIONS(1597), + [anon_sym_get] = ACTIONS(1597), + [anon_sym_set] = ACTIONS(1597), [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1597), + [anon_sym_private] = ACTIONS(1597), + [anon_sym_protected] = ACTIONS(1597), + [anon_sym_override] = ACTIONS(1597), [anon_sym_module] = ACTIONS(1889), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [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_object] = ACTIONS(1597), + [anon_sym_abstract] = ACTIONS(948), + [anon_sym_interface] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(952), [sym_html_comment] = ACTIONS(5), }, [239] = { - [sym_declaration] = STATE(1461), - [sym_import] = STATE(4341), - [sym_variable_declaration] = STATE(1318), - [sym_lexical_declaration] = STATE(1318), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(2995), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1318), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1318), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1318), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), + [sym_declaration] = STATE(1213), + [sym_import] = STATE(4300), + [sym_variable_declaration] = STATE(1197), + [sym_lexical_declaration] = STATE(1197), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2935), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1197), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1197), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1197), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), [sym_comment] = STATE(239), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_function_signature] = STATE(1318), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1318), - [sym_abstract_class_declaration] = STATE(1318), - [sym_module] = STATE(1318), - [sym_internal_module] = STATE(339), - [sym_import_alias] = STATE(1318), - [sym_interface_declaration] = STATE(1318), - [sym_enum_declaration] = STATE(1318), - [sym_type_alias_declaration] = STATE(1318), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5387), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1891), - [anon_sym_namespace] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), - [anon_sym_import] = ACTIONS(1895), - [anon_sym_var] = ACTIONS(351), - [anon_sym_let] = ACTIONS(1897), - [anon_sym_const] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(1453), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_function_signature] = STATE(1197), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1197), + [sym_abstract_class_declaration] = STATE(1197), + [sym_module] = STATE(1197), + [sym_internal_module] = STATE(310), + [sym_import_alias] = STATE(1197), + [sym_interface_declaration] = STATE(1197), + [sym_enum_declaration] = STATE(1197), + [sym_type_alias_declaration] = STATE(1197), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5042), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1877), + [anon_sym_namespace] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(1881), + [anon_sym_var] = ACTIONS(904), + [anon_sym_let] = ACTIONS(1883), + [anon_sym_const] = ACTIONS(908), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(1899), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(934), + [anon_sym_async] = ACTIONS(1885), + [anon_sym_function] = ACTIONS(938), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1901), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1903), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_readonly] = ACTIONS(1597), + [anon_sym_get] = ACTIONS(1597), + [anon_sym_set] = ACTIONS(1597), + [anon_sym_declare] = ACTIONS(1887), + [anon_sym_public] = ACTIONS(1597), + [anon_sym_private] = ACTIONS(1597), + [anon_sym_protected] = ACTIONS(1597), + [anon_sym_override] = ACTIONS(1597), + [anon_sym_module] = ACTIONS(1889), + [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_object] = ACTIONS(1597), + [anon_sym_abstract] = ACTIONS(948), + [anon_sym_interface] = ACTIONS(950), + [anon_sym_enum] = ACTIONS(952), [sym_html_comment] = ACTIONS(5), }, [240] = { - [sym_declaration] = STATE(1762), - [sym_import] = STATE(4341), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3060), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), + [sym_declaration] = STATE(1544), + [sym_import] = STATE(4300), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2910), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), [sym_comment] = STATE(240), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5194), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1905), - [anon_sym_namespace] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), - [anon_sym_import] = ACTIONS(1909), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4953), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1891), + [anon_sym_namespace] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(1895), [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1911), + [anon_sym_let] = ACTIONS(1897), [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(1913), + [anon_sym_async] = ACTIONS(1899), [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1915), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1917), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_readonly] = ACTIONS(1597), + [anon_sym_get] = ACTIONS(1597), + [anon_sym_set] = ACTIONS(1597), + [anon_sym_declare] = ACTIONS(1901), + [anon_sym_public] = ACTIONS(1597), + [anon_sym_private] = ACTIONS(1597), + [anon_sym_protected] = ACTIONS(1597), + [anon_sym_override] = ACTIONS(1597), + [anon_sym_module] = ACTIONS(1903), + [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_object] = ACTIONS(1597), [anon_sym_abstract] = ACTIONS(103), [anon_sym_interface] = ACTIONS(105), [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [241] = { - [sym_declaration] = STATE(5073), - [sym_import] = STATE(4341), - [sym_variable_declaration] = STATE(5108), - [sym_lexical_declaration] = STATE(5108), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3051), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(5108), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(5108), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(5108), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), + [sym_declaration] = STATE(4988), + [sym_import] = STATE(4300), + [sym_variable_declaration] = STATE(5000), + [sym_lexical_declaration] = STATE(5000), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2939), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(5000), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(5000), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(5000), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), [sym_comment] = STATE(241), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_function_signature] = STATE(5108), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(5108), - [sym_abstract_class_declaration] = STATE(5108), - [sym_module] = STATE(5108), - [sym_internal_module] = STATE(3326), - [sym_import_alias] = STATE(5108), - [sym_interface_declaration] = STATE(5108), - [sym_enum_declaration] = STATE(5108), - [sym_type_alias_declaration] = STATE(5108), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5430), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1919), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), - [anon_sym_import] = ACTIONS(1921), - [anon_sym_var] = ACTIONS(1923), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1927), - [anon_sym_BANG] = ACTIONS(1453), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_function_signature] = STATE(5000), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(5000), + [sym_abstract_class_declaration] = STATE(5000), + [sym_module] = STATE(5000), + [sym_internal_module] = STATE(3030), + [sym_import_alias] = STATE(5000), + [sym_interface_declaration] = STATE(5000), + [sym_enum_declaration] = STATE(5000), + [sym_type_alias_declaration] = STATE(5000), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5088), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1905), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(1907), + [anon_sym_var] = ACTIONS(1909), + [anon_sym_let] = ACTIONS(1911), + [anon_sym_const] = ACTIONS(1913), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1929), - [anon_sym_async] = ACTIONS(1931), - [anon_sym_function] = ACTIONS(1933), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(1915), + [anon_sym_async] = ACTIONS(1917), + [anon_sym_function] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1935), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1937), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [anon_sym_abstract] = ACTIONS(1939), - [anon_sym_interface] = ACTIONS(1941), - [anon_sym_enum] = ACTIONS(1943), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_readonly] = ACTIONS(1597), + [anon_sym_get] = ACTIONS(1597), + [anon_sym_set] = ACTIONS(1597), + [anon_sym_declare] = ACTIONS(1921), + [anon_sym_public] = ACTIONS(1597), + [anon_sym_private] = ACTIONS(1597), + [anon_sym_protected] = ACTIONS(1597), + [anon_sym_override] = ACTIONS(1597), + [anon_sym_module] = ACTIONS(1923), + [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_object] = ACTIONS(1597), + [anon_sym_abstract] = ACTIONS(1925), + [anon_sym_interface] = ACTIONS(1927), + [anon_sym_enum] = ACTIONS(1929), [sym_html_comment] = ACTIONS(5), }, [242] = { - [sym_declaration] = STATE(6949), - [sym_import] = STATE(4341), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3004), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), + [sym_declaration] = STATE(1419), + [sym_import] = STATE(4300), + [sym_variable_declaration] = STATE(1450), + [sym_lexical_declaration] = STATE(1450), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2799), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1450), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1450), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1450), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), [sym_comment] = STATE(242), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_function_signature] = STATE(6924), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3268), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5226), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1945), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), - [anon_sym_import] = ACTIONS(1947), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(780), - [anon_sym_BANG] = ACTIONS(1453), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_function_signature] = STATE(1450), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1450), + [sym_abstract_class_declaration] = STATE(1450), + [sym_module] = STATE(1450), + [sym_internal_module] = STATE(370), + [sym_import_alias] = STATE(1450), + [sym_interface_declaration] = STATE(1450), + [sym_enum_declaration] = STATE(1450), + [sym_type_alias_declaration] = STATE(1450), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5061), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1931), + [anon_sym_namespace] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(1935), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(1937), + [anon_sym_const] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(1951), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(381), + [anon_sym_async] = ACTIONS(1939), + [anon_sym_function] = ACTIONS(385), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1953), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1955), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_readonly] = ACTIONS(1597), + [anon_sym_get] = ACTIONS(1597), + [anon_sym_set] = ACTIONS(1597), + [anon_sym_declare] = ACTIONS(1941), + [anon_sym_public] = ACTIONS(1597), + [anon_sym_private] = ACTIONS(1597), + [anon_sym_protected] = ACTIONS(1597), + [anon_sym_override] = ACTIONS(1597), + [anon_sym_module] = ACTIONS(1943), + [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_object] = ACTIONS(1597), + [anon_sym_abstract] = ACTIONS(395), + [anon_sym_interface] = ACTIONS(397), + [anon_sym_enum] = ACTIONS(399), [sym_html_comment] = ACTIONS(5), }, [243] = { - [sym_declaration] = STATE(1289), - [sym_import] = STATE(4341), - [sym_variable_declaration] = STATE(1364), - [sym_lexical_declaration] = STATE(1364), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3136), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1364), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1364), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1364), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), + [sym_declaration] = STATE(6645), + [sym_import] = STATE(4300), + [sym_variable_declaration] = STATE(6327), + [sym_lexical_declaration] = STATE(6327), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2959), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(6327), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(6327), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(6327), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), [sym_comment] = STATE(243), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_function_signature] = STATE(1364), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1364), - [sym_abstract_class_declaration] = STATE(1364), - [sym_module] = STATE(1364), - [sym_internal_module] = STATE(367), - [sym_import_alias] = STATE(1364), - [sym_interface_declaration] = STATE(1364), - [sym_enum_declaration] = STATE(1364), - [sym_type_alias_declaration] = STATE(1364), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5499), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1863), - [anon_sym_namespace] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), - [anon_sym_import] = ACTIONS(1867), - [anon_sym_var] = ACTIONS(904), - [anon_sym_let] = ACTIONS(1869), - [anon_sym_const] = ACTIONS(908), - [anon_sym_BANG] = ACTIONS(1453), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_function_signature] = STATE(6327), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(6327), + [sym_abstract_class_declaration] = STATE(6327), + [sym_module] = STATE(6327), + [sym_internal_module] = STATE(3097), + [sym_import_alias] = STATE(6327), + [sym_interface_declaration] = STATE(6327), + [sym_enum_declaration] = STATE(6327), + [sym_type_alias_declaration] = STATE(6327), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5216), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1945), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(1947), + [anon_sym_var] = ACTIONS(840), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(844), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(934), - [anon_sym_async] = ACTIONS(1871), - [anon_sym_function] = ACTIONS(938), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1951), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1873), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1875), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [anon_sym_abstract] = ACTIONS(948), - [anon_sym_interface] = ACTIONS(950), - [anon_sym_enum] = ACTIONS(952), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_readonly] = ACTIONS(1597), + [anon_sym_get] = ACTIONS(1597), + [anon_sym_set] = ACTIONS(1597), + [anon_sym_declare] = ACTIONS(1953), + [anon_sym_public] = ACTIONS(1597), + [anon_sym_private] = ACTIONS(1597), + [anon_sym_protected] = ACTIONS(1597), + [anon_sym_override] = ACTIONS(1597), + [anon_sym_module] = ACTIONS(1955), + [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_object] = ACTIONS(1597), + [anon_sym_abstract] = ACTIONS(884), + [anon_sym_interface] = ACTIONS(886), + [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, [244] = { - [sym_declaration] = STATE(5106), - [sym_import] = STATE(4341), - [sym_variable_declaration] = STATE(5108), - [sym_lexical_declaration] = STATE(5108), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3066), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(5108), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(5108), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(5108), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), + [sym_declaration] = STATE(1564), + [sym_import] = STATE(4300), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2936), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1580), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1580), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1580), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), [sym_comment] = STATE(244), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_function_signature] = STATE(5108), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(5108), - [sym_abstract_class_declaration] = STATE(5108), - [sym_module] = STATE(5108), - [sym_internal_module] = STATE(3326), - [sym_import_alias] = STATE(5108), - [sym_interface_declaration] = STATE(5108), - [sym_enum_declaration] = STATE(5108), - [sym_type_alias_declaration] = STATE(5108), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5430), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1919), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), - [anon_sym_import] = ACTIONS(1921), - [anon_sym_var] = ACTIONS(1923), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1927), - [anon_sym_BANG] = ACTIONS(1453), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_function_signature] = STATE(1580), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(442), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(4953), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1891), + [anon_sym_namespace] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(1895), + [anon_sym_var] = ACTIONS(27), + [anon_sym_let] = ACTIONS(1897), + [anon_sym_const] = ACTIONS(31), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1929), - [anon_sym_async] = ACTIONS(1931), - [anon_sym_function] = ACTIONS(1933), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(71), + [anon_sym_async] = ACTIONS(1899), + [anon_sym_function] = ACTIONS(75), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1935), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1937), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [anon_sym_abstract] = ACTIONS(1939), - [anon_sym_interface] = ACTIONS(1941), - [anon_sym_enum] = ACTIONS(1943), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_readonly] = ACTIONS(1597), + [anon_sym_get] = ACTIONS(1597), + [anon_sym_set] = ACTIONS(1597), + [anon_sym_declare] = ACTIONS(1901), + [anon_sym_public] = ACTIONS(1597), + [anon_sym_private] = ACTIONS(1597), + [anon_sym_protected] = ACTIONS(1597), + [anon_sym_override] = ACTIONS(1597), + [anon_sym_module] = ACTIONS(1903), + [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_object] = ACTIONS(1597), + [anon_sym_abstract] = ACTIONS(103), + [anon_sym_interface] = ACTIONS(105), + [anon_sym_enum] = ACTIONS(107), [sym_html_comment] = ACTIONS(5), }, [245] = { - [sym_declaration] = STATE(1687), - [sym_import] = STATE(4341), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3052), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1772), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1772), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1772), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), + [sym_declaration] = STATE(6357), + [sym_import] = STATE(4300), + [sym_variable_declaration] = STATE(6327), + [sym_lexical_declaration] = STATE(6327), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2788), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(6327), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(6327), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(6327), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), [sym_comment] = STATE(245), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_function_signature] = STATE(1772), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(433), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5194), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1905), - [anon_sym_namespace] = ACTIONS(1907), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), - [anon_sym_import] = ACTIONS(1909), - [anon_sym_var] = ACTIONS(27), - [anon_sym_let] = ACTIONS(1911), - [anon_sym_const] = ACTIONS(31), - [anon_sym_BANG] = ACTIONS(1453), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_function_signature] = STATE(6327), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(6327), + [sym_abstract_class_declaration] = STATE(6327), + [sym_module] = STATE(6327), + [sym_internal_module] = STATE(3097), + [sym_import_alias] = STATE(6327), + [sym_interface_declaration] = STATE(6327), + [sym_enum_declaration] = STATE(6327), + [sym_type_alias_declaration] = STATE(6327), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5216), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1945), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(1947), + [anon_sym_var] = ACTIONS(840), + [anon_sym_let] = ACTIONS(1949), + [anon_sym_const] = ACTIONS(844), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(71), - [anon_sym_async] = ACTIONS(1913), - [anon_sym_function] = ACTIONS(75), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(870), + [anon_sym_async] = ACTIONS(1951), + [anon_sym_function] = ACTIONS(874), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1915), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1917), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [anon_sym_abstract] = ACTIONS(103), - [anon_sym_interface] = ACTIONS(105), - [anon_sym_enum] = ACTIONS(107), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_readonly] = ACTIONS(1597), + [anon_sym_get] = ACTIONS(1597), + [anon_sym_set] = ACTIONS(1597), + [anon_sym_declare] = ACTIONS(1953), + [anon_sym_public] = ACTIONS(1597), + [anon_sym_private] = ACTIONS(1597), + [anon_sym_protected] = ACTIONS(1597), + [anon_sym_override] = ACTIONS(1597), + [anon_sym_module] = ACTIONS(1955), + [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_object] = ACTIONS(1597), + [anon_sym_abstract] = ACTIONS(884), + [anon_sym_interface] = ACTIONS(886), + [anon_sym_enum] = ACTIONS(888), [sym_html_comment] = ACTIONS(5), }, [246] = { - [sym_declaration] = STATE(6787), - [sym_import] = STATE(4341), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(2981), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(6924), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(6924), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(6924), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), + [sym_declaration] = STATE(1327), + [sym_import] = STATE(4300), + [sym_variable_declaration] = STATE(1450), + [sym_lexical_declaration] = STATE(1450), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2945), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1450), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1450), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1450), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), [sym_comment] = STATE(246), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_function_signature] = STATE(6924), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(3268), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5226), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1945), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), - [anon_sym_import] = ACTIONS(1947), - [anon_sym_var] = ACTIONS(776), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(780), - [anon_sym_BANG] = ACTIONS(1453), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_function_signature] = STATE(1450), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1450), + [sym_abstract_class_declaration] = STATE(1450), + [sym_module] = STATE(1450), + [sym_internal_module] = STATE(370), + [sym_import_alias] = STATE(1450), + [sym_interface_declaration] = STATE(1450), + [sym_enum_declaration] = STATE(1450), + [sym_type_alias_declaration] = STATE(1450), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5061), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1931), + [anon_sym_namespace] = ACTIONS(1933), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(1935), + [anon_sym_var] = ACTIONS(351), + [anon_sym_let] = ACTIONS(1937), + [anon_sym_const] = ACTIONS(355), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(806), - [anon_sym_async] = ACTIONS(1951), - [anon_sym_function] = ACTIONS(810), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(381), + [anon_sym_async] = ACTIONS(1939), + [anon_sym_function] = ACTIONS(385), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1953), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1955), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [anon_sym_abstract] = ACTIONS(820), - [anon_sym_interface] = ACTIONS(822), - [anon_sym_enum] = ACTIONS(824), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_readonly] = ACTIONS(1597), + [anon_sym_get] = ACTIONS(1597), + [anon_sym_set] = ACTIONS(1597), + [anon_sym_declare] = ACTIONS(1941), + [anon_sym_public] = ACTIONS(1597), + [anon_sym_private] = ACTIONS(1597), + [anon_sym_protected] = ACTIONS(1597), + [anon_sym_override] = ACTIONS(1597), + [anon_sym_module] = ACTIONS(1943), + [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_object] = ACTIONS(1597), + [anon_sym_abstract] = ACTIONS(395), + [anon_sym_interface] = ACTIONS(397), + [anon_sym_enum] = ACTIONS(399), [sym_html_comment] = ACTIONS(5), }, [247] = { - [sym_declaration] = STATE(1143), - [sym_import] = STATE(4341), - [sym_variable_declaration] = STATE(1205), - [sym_lexical_declaration] = STATE(1205), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3024), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1205), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1205), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1205), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), + [sym_declaration] = STATE(4940), + [sym_import] = STATE(4300), + [sym_variable_declaration] = STATE(5000), + [sym_lexical_declaration] = STATE(5000), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2969), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(5000), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(5000), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(5000), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), [sym_comment] = STATE(247), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_function_signature] = STATE(1205), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1205), - [sym_abstract_class_declaration] = STATE(1205), - [sym_module] = STATE(1205), - [sym_internal_module] = STATE(307), - [sym_import_alias] = STATE(1205), - [sym_interface_declaration] = STATE(1205), - [sym_enum_declaration] = STATE(1205), - [sym_type_alias_declaration] = STATE(1205), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5351), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1877), - [anon_sym_namespace] = ACTIONS(1879), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), - [anon_sym_import] = ACTIONS(1881), - [anon_sym_var] = ACTIONS(840), - [anon_sym_let] = ACTIONS(1883), - [anon_sym_const] = ACTIONS(844), - [anon_sym_BANG] = ACTIONS(1453), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_function_signature] = STATE(5000), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(5000), + [sym_abstract_class_declaration] = STATE(5000), + [sym_module] = STATE(5000), + [sym_internal_module] = STATE(3030), + [sym_import_alias] = STATE(5000), + [sym_interface_declaration] = STATE(5000), + [sym_enum_declaration] = STATE(5000), + [sym_type_alias_declaration] = STATE(5000), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5088), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1905), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(1907), + [anon_sym_var] = ACTIONS(1909), + [anon_sym_let] = ACTIONS(1911), + [anon_sym_const] = ACTIONS(1913), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(870), - [anon_sym_async] = ACTIONS(1885), - [anon_sym_function] = ACTIONS(874), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(1915), + [anon_sym_async] = ACTIONS(1917), + [anon_sym_function] = ACTIONS(1919), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1887), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1889), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [anon_sym_abstract] = ACTIONS(884), - [anon_sym_interface] = ACTIONS(886), - [anon_sym_enum] = ACTIONS(888), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_readonly] = ACTIONS(1597), + [anon_sym_get] = ACTIONS(1597), + [anon_sym_set] = ACTIONS(1597), + [anon_sym_declare] = ACTIONS(1921), + [anon_sym_public] = ACTIONS(1597), + [anon_sym_private] = ACTIONS(1597), + [anon_sym_protected] = ACTIONS(1597), + [anon_sym_override] = ACTIONS(1597), + [anon_sym_module] = ACTIONS(1923), + [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_object] = ACTIONS(1597), + [anon_sym_abstract] = ACTIONS(1925), + [anon_sym_interface] = ACTIONS(1927), + [anon_sym_enum] = ACTIONS(1929), [sym_html_comment] = ACTIONS(5), }, [248] = { - [sym_declaration] = STATE(1276), - [sym_import] = STATE(4341), - [sym_variable_declaration] = STATE(1318), - [sym_lexical_declaration] = STATE(1318), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3013), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_class_declaration] = STATE(1318), - [sym_function_expression] = STATE(3425), - [sym_function_declaration] = STATE(1318), - [sym_generator_function] = STATE(3425), - [sym_generator_function_declaration] = STATE(1318), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), + [sym_declaration] = STATE(1342), + [sym_import] = STATE(4300), + [sym_variable_declaration] = STATE(1468), + [sym_lexical_declaration] = STATE(1468), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2834), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_class_declaration] = STATE(1468), + [sym_function_expression] = STATE(3280), + [sym_function_declaration] = STATE(1468), + [sym_generator_function] = STATE(3280), + [sym_generator_function_declaration] = STATE(1468), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), [sym_comment] = STATE(248), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_function_signature] = STATE(1318), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_ambient_declaration] = STATE(1318), - [sym_abstract_class_declaration] = STATE(1318), - [sym_module] = STATE(1318), - [sym_internal_module] = STATE(339), - [sym_import_alias] = STATE(1318), - [sym_interface_declaration] = STATE(1318), - [sym_enum_declaration] = STATE(1318), - [sym_type_alias_declaration] = STATE(1318), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5387), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1891), - [anon_sym_namespace] = ACTIONS(1893), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), - [anon_sym_import] = ACTIONS(1895), - [anon_sym_var] = ACTIONS(351), - [anon_sym_let] = ACTIONS(1897), - [anon_sym_const] = ACTIONS(355), - [anon_sym_BANG] = ACTIONS(1453), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_function_signature] = STATE(1468), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_ambient_declaration] = STATE(1468), + [sym_abstract_class_declaration] = STATE(1468), + [sym_module] = STATE(1468), + [sym_internal_module] = STATE(344), + [sym_import_alias] = STATE(1468), + [sym_interface_declaration] = STATE(1468), + [sym_enum_declaration] = STATE(1468), + [sym_type_alias_declaration] = STATE(1468), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5128), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1863), + [anon_sym_namespace] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(1867), + [anon_sym_var] = ACTIONS(776), + [anon_sym_let] = ACTIONS(1869), + [anon_sym_const] = ACTIONS(780), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(381), - [anon_sym_async] = ACTIONS(1899), - [anon_sym_function] = ACTIONS(385), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(806), + [anon_sym_async] = ACTIONS(1871), + [anon_sym_function] = ACTIONS(810), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1901), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1903), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [anon_sym_abstract] = ACTIONS(395), - [anon_sym_interface] = ACTIONS(397), - [anon_sym_enum] = ACTIONS(399), + [anon_sym_static] = ACTIONS(1597), + [anon_sym_readonly] = ACTIONS(1597), + [anon_sym_get] = ACTIONS(1597), + [anon_sym_set] = ACTIONS(1597), + [anon_sym_declare] = ACTIONS(1873), + [anon_sym_public] = ACTIONS(1597), + [anon_sym_private] = ACTIONS(1597), + [anon_sym_protected] = ACTIONS(1597), + [anon_sym_override] = ACTIONS(1597), + [anon_sym_module] = ACTIONS(1875), + [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_object] = ACTIONS(1597), + [anon_sym_abstract] = ACTIONS(820), + [anon_sym_interface] = ACTIONS(822), + [anon_sym_enum] = ACTIONS(824), [sym_html_comment] = ACTIONS(5), }, [249] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), [sym_comment] = STATE(249), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4003), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3864), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(1959), [anon_sym_const] = ACTIONS(131), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1183), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -66350,54 +66068,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [250] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), [sym_comment] = STATE(250), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4003), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3864), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1218), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_typeof] = ACTIONS(1959), [anon_sym_const] = ACTIONS(131), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(1224), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -66469,38 +66187,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [251] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), [sym_comment] = STATE(251), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4003), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3864), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1183), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_COMMA] = ACTIONS(118), @@ -66517,7 +66235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_GT] = ACTIONS(1193), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -66588,35 +66306,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [252] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), [sym_comment] = STATE(252), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4003), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3864), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_EQ] = ACTIONS(212), @@ -66706,41 +66424,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [253] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), [sym_comment] = STATE(253), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4003), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3864), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1183), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_COMMA] = ACTIONS(1242), + [anon_sym_COMMA] = ACTIONS(1243), [anon_sym_typeof] = ACTIONS(1959), [anon_sym_const] = ACTIONS(131), [anon_sym_BANG] = ACTIONS(118), @@ -66748,12 +66466,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(1117), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(1242), + [anon_sym_RBRACK] = ACTIONS(1243), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_GT] = ACTIONS(1193), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -66824,38 +66542,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [254] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), [sym_comment] = STATE(254), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4003), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3864), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1240), + [anon_sym_EQ] = ACTIONS(1263), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_COMMA] = ACTIONS(118), @@ -66942,38 +66660,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [255] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), [sym_comment] = STATE(255), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4003), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3864), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1262), + [anon_sym_EQ] = ACTIONS(1240), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_COMMA] = ACTIONS(124), @@ -66988,7 +66706,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_GT] = ACTIONS(1193), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -67059,38 +66777,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [256] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), [sym_comment] = STATE(256), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4003), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3864), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_EQ] = ACTIONS(1291), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), @@ -67104,7 +66822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1277), + [anon_sym_EQ_GT] = ACTIONS(1265), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -67176,44 +66894,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [257] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), [sym_comment] = STATE(257), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(4208), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4089), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_EQ] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_EQ] = ACTIONS(1240), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_COMMA] = ACTIONS(124), [anon_sym_RBRACE] = ACTIONS(124), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_in] = ACTIONS(118), @@ -67222,7 +66940,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_GT] = ACTIONS(1193), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1995), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -67245,9 +66963,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_GT] = ACTIONS(118), [anon_sym_GT_GT_GT] = ACTIONS(118), [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(1345), + [anon_sym_AMP] = ACTIONS(1365), [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_SLASH] = ACTIONS(118), @@ -67262,7 +66980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [anon_sym_PLUS_PLUS] = ACTIONS(118), [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), @@ -67274,57 +66992,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [258] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), [sym_comment] = STATE(258), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4003), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3864), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1289), + [anon_sym_EQ] = ACTIONS(1275), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_COMMA] = ACTIONS(118), @@ -67338,7 +67056,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_EQ_GT] = ACTIONS(1281), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -67410,38 +67128,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [259] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), [sym_comment] = STATE(259), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4003), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3864), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1267), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), @@ -67449,13 +67167,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(1259), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -67526,154 +67244,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [260] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2560), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym__formal_parameter] = STATE(6363), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2254), - [sym_subscript_expression] = STATE(2254), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5145), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7488), - [sym_string] = STATE(2679), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), [sym_comment] = STATE(260), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2254), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(468), - [sym_required_parameter] = STATE(6578), - [sym_optional_parameter] = STATE(6578), - [sym__parameter_name] = STATE(4589), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(2007), - [anon_sym_export] = ACTIONS(1121), - [anon_sym_type] = ACTIONS(1121), - [anon_sym_namespace] = ACTIONS(1123), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1121), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(1131), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1139), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2009), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(2011), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2013), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(1121), - [anon_sym_readonly] = ACTIONS(2015), - [anon_sym_get] = ACTIONS(1121), - [anon_sym_set] = ACTIONS(1121), - [anon_sym_declare] = ACTIONS(1121), - [anon_sym_public] = ACTIONS(1165), - [anon_sym_private] = ACTIONS(1165), - [anon_sym_protected] = ACTIONS(1165), - [anon_sym_override] = ACTIONS(1167), - [anon_sym_module] = ACTIONS(1121), - [anon_sym_any] = ACTIONS(1121), - [anon_sym_number] = ACTIONS(1121), - [anon_sym_boolean] = ACTIONS(1121), - [anon_sym_string] = ACTIONS(1121), - [anon_sym_symbol] = ACTIONS(1121), - [anon_sym_object] = ACTIONS(1121), - [sym_html_comment] = ACTIONS(5), - }, - [261] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(261), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4003), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3864), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1303), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), @@ -67687,7 +67289,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1309), + [anon_sym_EQ_GT] = ACTIONS(1299), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -67757,39 +67359,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [262] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(262), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4003), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [261] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(261), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3864), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), @@ -67797,13 +67399,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1117), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1325), + [anon_sym_EQ_GT] = ACTIONS(217), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -67873,177 +67475,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [263] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(263), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4003), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1258), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_void] = ACTIONS(206), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), + [262] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2400), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym__formal_parameter] = STATE(5644), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2111), + [sym_subscript_expression] = STATE(2111), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4886), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7174), + [sym_string] = STATE(2644), + [sym_comment] = STATE(262), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(4887), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2111), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_accessibility_modifier] = STATE(431), + [sym_override_modifier] = STATE(467), + [sym_required_parameter] = STATE(6427), + [sym_optional_parameter] = STATE(6427), + [sym__parameter_name] = STATE(4511), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(391), + [sym_identifier] = ACTIONS(2007), + [anon_sym_export] = ACTIONS(1121), + [anon_sym_type] = ACTIONS(1121), + [anon_sym_namespace] = ACTIONS(1123), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1121), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_RPAREN] = ACTIONS(1131), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1139), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2009), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(2011), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(2013), + [anon_sym_AT] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(1121), + [anon_sym_readonly] = ACTIONS(2015), + [anon_sym_get] = ACTIONS(1121), + [anon_sym_set] = ACTIONS(1121), + [anon_sym_declare] = ACTIONS(1121), + [anon_sym_public] = ACTIONS(1165), + [anon_sym_private] = ACTIONS(1165), + [anon_sym_protected] = ACTIONS(1165), + [anon_sym_override] = ACTIONS(1167), + [anon_sym_module] = ACTIONS(1121), + [anon_sym_any] = ACTIONS(1121), + [anon_sym_number] = ACTIONS(1121), + [anon_sym_boolean] = ACTIONS(1121), + [anon_sym_string] = ACTIONS(1121), + [anon_sym_symbol] = ACTIONS(1121), + [anon_sym_object] = ACTIONS(1121), [sym_html_comment] = ACTIONS(5), }, - [264] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2494), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym__formal_parameter] = STATE(6363), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2254), - [sym_subscript_expression] = STATE(2254), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5145), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7123), - [sym_string] = STATE(2679), - [sym_comment] = STATE(264), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2254), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), + [263] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2442), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym__formal_parameter] = STATE(5644), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2111), + [sym_subscript_expression] = STATE(2111), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4886), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7305), + [sym_string] = STATE(2644), + [sym_comment] = STATE(263), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(4887), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2111), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(468), - [sym_required_parameter] = STATE(6578), - [sym_optional_parameter] = STATE(6578), - [sym__parameter_name] = STATE(4589), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(361), + [sym_override_modifier] = STATE(467), + [sym_required_parameter] = STATE(6427), + [sym_optional_parameter] = STATE(6427), + [sym__parameter_name] = STATE(4511), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(391), [sym_identifier] = ACTIONS(2007), [anon_sym_export] = ACTIONS(1121), [anon_sym_type] = ACTIONS(1121), @@ -68069,7 +67671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -68105,39 +67707,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1121), [sym_html_comment] = ACTIONS(5), }, - [265] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(265), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4003), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [264] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(264), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3864), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1305), [anon_sym_as] = ACTIONS(118), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), @@ -68145,12 +67747,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(1963), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_EQ_GT] = ACTIONS(1311), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(1969), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -68220,60 +67823,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [266] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym__formal_parameter] = STATE(6363), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(266), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), + [265] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym__formal_parameter] = STATE(6934), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(265), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(4887), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(468), - [sym_required_parameter] = STATE(6578), - [sym_optional_parameter] = STATE(6578), - [sym__parameter_name] = STATE(4589), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(361), + [sym_override_modifier] = STATE(467), + [sym_required_parameter] = STATE(6427), + [sym_optional_parameter] = STATE(6427), + [sym__parameter_name] = STATE(4511), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(391), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -68284,10 +67887,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(1131), + [anon_sym_RPAREN] = ACTIONS(2017), [anon_sym_await] = ACTIONS(138), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), @@ -68299,18 +67902,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(2019), + [sym_this] = ACTIONS(2021), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), @@ -68318,7 +67921,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2021), + [anon_sym_readonly] = ACTIONS(2023), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -68335,60 +67938,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [267] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym__formal_parameter] = STATE(7113), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(267), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), + [266] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym__formal_parameter] = STATE(6934), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(266), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(4887), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(468), - [sym_required_parameter] = STATE(6578), - [sym_optional_parameter] = STATE(6578), - [sym__parameter_name] = STATE(4589), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(361), + [sym_override_modifier] = STATE(467), + [sym_required_parameter] = STATE(6427), + [sym_optional_parameter] = STATE(6427), + [sym__parameter_name] = STATE(4511), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(391), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -68399,10 +68002,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2023), + [anon_sym_RPAREN] = ACTIONS(2025), [anon_sym_await] = ACTIONS(138), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), @@ -68414,18 +68017,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(2019), + [sym_this] = ACTIONS(2021), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), @@ -68433,7 +68036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2021), + [anon_sym_readonly] = ACTIONS(2023), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -68450,60 +68053,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [268] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym__formal_parameter] = STATE(5904), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(268), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), + [267] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym__formal_parameter] = STATE(6082), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(267), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(4887), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(468), - [sym_required_parameter] = STATE(6578), - [sym_optional_parameter] = STATE(6578), - [sym__parameter_name] = STATE(4589), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(361), + [sym_override_modifier] = STATE(467), + [sym_required_parameter] = STATE(6427), + [sym_optional_parameter] = STATE(6427), + [sym__parameter_name] = STATE(4511), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(391), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -68514,10 +68117,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2025), + [anon_sym_RPAREN] = ACTIONS(2027), [anon_sym_await] = ACTIONS(138), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), @@ -68529,18 +68132,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(2019), + [sym_this] = ACTIONS(2021), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), @@ -68548,7 +68151,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2021), + [anon_sym_readonly] = ACTIONS(2023), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -68565,60 +68168,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [269] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym__formal_parameter] = STATE(7113), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(269), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), + [268] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym__formal_parameter] = STATE(5720), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(268), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(4887), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(468), - [sym_required_parameter] = STATE(6578), - [sym_optional_parameter] = STATE(6578), - [sym__parameter_name] = STATE(4589), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(361), + [sym_override_modifier] = STATE(467), + [sym_required_parameter] = STATE(6427), + [sym_optional_parameter] = STATE(6427), + [sym__parameter_name] = STATE(4511), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(391), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -68629,10 +68232,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2027), + [anon_sym_RPAREN] = ACTIONS(2029), [anon_sym_await] = ACTIONS(138), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), @@ -68644,18 +68247,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(2019), + [sym_this] = ACTIONS(2021), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), @@ -68663,7 +68266,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2021), + [anon_sym_readonly] = ACTIONS(2023), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -68680,60 +68283,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, + [269] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(269), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3864), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(131), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_in] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_void] = ACTIONS(206), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(198), + [anon_sym_satisfies] = ACTIONS(118), + [anon_sym_infer] = ACTIONS(200), + [anon_sym_keyof] = ACTIONS(202), + [anon_sym_unique] = ACTIONS(204), + [anon_sym_unknown] = ACTIONS(206), + [anon_sym_never] = ACTIONS(206), + [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [sym__ternary_qmark] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, [270] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym__formal_parameter] = STATE(7113), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym__formal_parameter] = STATE(6934), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(270), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(4887), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(468), - [sym_required_parameter] = STATE(6578), - [sym_optional_parameter] = STATE(6578), - [sym__parameter_name] = STATE(4589), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(361), + [sym_override_modifier] = STATE(467), + [sym_required_parameter] = STATE(6427), + [sym_optional_parameter] = STATE(6427), + [sym__parameter_name] = STATE(4511), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(391), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -68744,10 +68462,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2029), + [anon_sym_RPAREN] = ACTIONS(2031), [anon_sym_await] = ACTIONS(138), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), @@ -68759,18 +68477,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(2019), + [sym_this] = ACTIONS(2021), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), @@ -68778,7 +68496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2021), + [anon_sym_readonly] = ACTIONS(2023), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -68796,59 +68514,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [271] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym__formal_parameter] = STATE(7113), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym__formal_parameter] = STATE(6934), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(271), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(4887), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(468), - [sym_required_parameter] = STATE(6578), - [sym_optional_parameter] = STATE(6578), - [sym__parameter_name] = STATE(4589), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(361), + [sym_override_modifier] = STATE(467), + [sym_required_parameter] = STATE(6427), + [sym_optional_parameter] = STATE(6427), + [sym__parameter_name] = STATE(4511), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(391), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -68859,10 +68577,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2031), + [anon_sym_RPAREN] = ACTIONS(2033), [anon_sym_await] = ACTIONS(138), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), @@ -68874,18 +68592,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(2019), + [sym_this] = ACTIONS(2021), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), @@ -68893,7 +68611,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2021), + [anon_sym_readonly] = ACTIONS(2023), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -68911,59 +68629,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [272] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym__formal_parameter] = STATE(7113), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym__formal_parameter] = STATE(6934), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(272), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(4887), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(468), - [sym_required_parameter] = STATE(6578), - [sym_optional_parameter] = STATE(6578), - [sym__parameter_name] = STATE(4589), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(361), + [sym_override_modifier] = STATE(467), + [sym_required_parameter] = STATE(6427), + [sym_optional_parameter] = STATE(6427), + [sym__parameter_name] = STATE(4511), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(391), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -68974,10 +68692,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2033), + [anon_sym_RPAREN] = ACTIONS(2035), [anon_sym_await] = ACTIONS(138), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), @@ -68989,18 +68707,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(2019), + [sym_this] = ACTIONS(2021), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), @@ -69008,7 +68726,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2021), + [anon_sym_readonly] = ACTIONS(2023), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -69026,59 +68744,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [273] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym__formal_parameter] = STATE(7113), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym__formal_parameter] = STATE(6934), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(273), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(4887), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(468), - [sym_required_parameter] = STATE(6578), - [sym_optional_parameter] = STATE(6578), - [sym__parameter_name] = STATE(4589), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(361), + [sym_override_modifier] = STATE(467), + [sym_required_parameter] = STATE(6427), + [sym_optional_parameter] = STATE(6427), + [sym__parameter_name] = STATE(4511), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(391), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -69089,10 +68807,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2035), + [anon_sym_RPAREN] = ACTIONS(2037), [anon_sym_await] = ACTIONS(138), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), @@ -69104,18 +68822,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(2019), + [sym_this] = ACTIONS(2021), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), @@ -69123,7 +68841,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2021), + [anon_sym_readonly] = ACTIONS(2023), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -69141,59 +68859,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [274] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym__formal_parameter] = STATE(6371), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym__formal_parameter] = STATE(5644), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(274), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(4887), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(468), - [sym_required_parameter] = STATE(6578), - [sym_optional_parameter] = STATE(6578), - [sym__parameter_name] = STATE(4589), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(361), + [sym_override_modifier] = STATE(467), + [sym_required_parameter] = STATE(6427), + [sym_optional_parameter] = STATE(6427), + [sym__parameter_name] = STATE(4511), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(391), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -69204,10 +68922,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2037), + [anon_sym_RPAREN] = ACTIONS(1131), [anon_sym_await] = ACTIONS(138), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), @@ -69219,18 +68937,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(2019), + [sym_this] = ACTIONS(2021), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), @@ -69238,7 +68956,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(1161), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2021), + [anon_sym_readonly] = ACTIONS(2023), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -69256,94 +68974,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [275] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2881), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6355), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2739), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5736), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(275), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6354), - [aux_sym_array_pattern_repeat1] = STATE(6332), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5737), + [aux_sym_array_pattern_repeat1] = STATE(5659), [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), + [anon_sym_export] = ACTIONS(989), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_RBRACK] = ACTIONS(2043), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), + [anon_sym_using] = ACTIONS(1013), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -69351,113 +69069,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [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_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(989), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(989), + [anon_sym_number] = ACTIONS(989), + [anon_sym_boolean] = ACTIONS(989), + [anon_sym_string] = ACTIONS(989), + [anon_sym_symbol] = ACTIONS(989), + [anon_sym_object] = ACTIONS(989), [sym_html_comment] = ACTIONS(5), }, [276] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2897), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6336), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2739), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5736), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(276), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6335), - [aux_sym_array_pattern_repeat1] = STATE(6332), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5737), + [aux_sym_array_pattern_repeat1] = STATE(5659), [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), + [anon_sym_export] = ACTIONS(989), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_RBRACK] = ACTIONS(2049), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), + [anon_sym_using] = ACTIONS(1013), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -69465,113 +69183,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [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_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(989), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(989), + [anon_sym_number] = ACTIONS(989), + [anon_sym_boolean] = ACTIONS(989), + [anon_sym_string] = ACTIONS(989), + [anon_sym_symbol] = ACTIONS(989), + [anon_sym_object] = ACTIONS(989), [sym_html_comment] = ACTIONS(5), }, [277] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2881), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6355), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2714), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5656), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(277), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6354), - [aux_sym_array_pattern_repeat1] = STATE(6332), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5657), + [aux_sym_array_pattern_repeat1] = STATE(5659), [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), + [anon_sym_export] = ACTIONS(989), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_RBRACK] = ACTIONS(2051), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), + [anon_sym_using] = ACTIONS(1013), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -69579,227 +69297,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [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_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(989), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(989), + [anon_sym_number] = ACTIONS(989), + [anon_sym_boolean] = ACTIONS(989), + [anon_sym_string] = ACTIONS(989), + [anon_sym_symbol] = ACTIONS(989), + [anon_sym_object] = ACTIONS(989), [sym_html_comment] = ACTIONS(5), }, [278] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym__formal_parameter] = STATE(7113), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2739), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5736), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(278), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_accessibility_modifier] = STATE(431), - [sym_override_modifier] = STATE(468), - [sym_required_parameter] = STATE(6578), - [sym_optional_parameter] = STATE(6578), - [sym__parameter_name] = STATE(4589), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(361), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5737), + [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_identifier] = ACTIONS(2039), + [anon_sym_export] = ACTIONS(989), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_let] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_RBRACK] = ACTIONS(2053), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(2045), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(2019), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2021), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [sym_undefined] = ACTIONS(2047), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(989), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(989), + [anon_sym_number] = ACTIONS(989), + [anon_sym_boolean] = ACTIONS(989), + [anon_sym_string] = ACTIONS(989), + [anon_sym_symbol] = ACTIONS(989), + [anon_sym_object] = ACTIONS(989), [sym_html_comment] = ACTIONS(5), }, [279] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2897), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6336), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2739), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5736), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(279), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6335), - [aux_sym_array_pattern_repeat1] = STATE(6332), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5737), + [aux_sym_array_pattern_repeat1] = STATE(5659), [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), + [anon_sym_export] = ACTIONS(989), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2053), + [anon_sym_RBRACK] = ACTIONS(2055), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), + [anon_sym_using] = ACTIONS(1013), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -69807,227 +69525,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [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_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(989), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(989), + [anon_sym_number] = ACTIONS(989), + [anon_sym_boolean] = ACTIONS(989), + [anon_sym_string] = ACTIONS(989), + [anon_sym_symbol] = ACTIONS(989), + [anon_sym_object] = ACTIONS(989), [sym_html_comment] = ACTIONS(5), }, [280] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2890), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6336), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym__formal_parameter] = STATE(6934), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(280), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6335), - [aux_sym_array_pattern_repeat1] = STATE(6332), - [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(966), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(4887), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_accessibility_modifier] = STATE(431), + [sym_override_modifier] = STATE(467), + [sym_required_parameter] = STATE(6427), + [sym_optional_parameter] = STATE(6427), + [sym__parameter_name] = STATE(4511), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(391), + [sym_identifier] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(150), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1069), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(184), + [sym_this] = ACTIONS(2021), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2047), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [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_object] = ACTIONS(956), + [sym_undefined] = ACTIONS(1079), + [anon_sym_AT] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(2023), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [281] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2881), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6355), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2714), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5656), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(281), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6354), - [aux_sym_array_pattern_repeat1] = STATE(6332), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5657), + [aux_sym_array_pattern_repeat1] = STATE(5659), [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), + [anon_sym_export] = ACTIONS(989), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2055), + [anon_sym_RBRACK] = ACTIONS(2057), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), + [anon_sym_using] = ACTIONS(1013), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -70035,113 +69753,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [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_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(989), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(989), + [anon_sym_number] = ACTIONS(989), + [anon_sym_boolean] = ACTIONS(989), + [anon_sym_string] = ACTIONS(989), + [anon_sym_symbol] = ACTIONS(989), + [anon_sym_object] = ACTIONS(989), [sym_html_comment] = ACTIONS(5), }, [282] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2881), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6355), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2721), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5656), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(282), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6354), - [aux_sym_array_pattern_repeat1] = STATE(6332), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5657), + [aux_sym_array_pattern_repeat1] = STATE(5659), [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), + [anon_sym_export] = ACTIONS(989), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_RBRACK] = ACTIONS(2057), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), + [anon_sym_using] = ACTIONS(1013), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -70149,113 +69867,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [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_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(989), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(989), + [anon_sym_number] = ACTIONS(989), + [anon_sym_boolean] = ACTIONS(989), + [anon_sym_string] = ACTIONS(989), + [anon_sym_symbol] = ACTIONS(989), + [anon_sym_object] = ACTIONS(989), [sym_html_comment] = ACTIONS(5), }, [283] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2881), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6355), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2739), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5736), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(283), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6354), - [aux_sym_array_pattern_repeat1] = STATE(6332), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5737), + [aux_sym_array_pattern_repeat1] = STATE(5659), [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), + [anon_sym_export] = ACTIONS(989), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(2041), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_RBRACK] = ACTIONS(2059), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), + [anon_sym_using] = ACTIONS(1013), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -70263,188 +69981,301 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [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_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(989), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(989), + [anon_sym_number] = ACTIONS(989), + [anon_sym_boolean] = ACTIONS(989), + [anon_sym_string] = ACTIONS(989), + [anon_sym_symbol] = ACTIONS(989), + [anon_sym_object] = ACTIONS(989), [sym_html_comment] = ACTIONS(5), }, [284] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2620), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(284), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_COMMA] = ACTIONS(2061), [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), + [anon_sym_await] = ACTIONS(1001), [anon_sym_SEMI] = ACTIONS(2061), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_yield] = ACTIONS(1003), [anon_sym_LBRACK] = ACTIONS(2061), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), [anon_sym_AMP] = ACTIONS(2061), [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [anon_sym_extends] = ACTIONS(2061), [anon_sym_PIPE_RBRACE] = ACTIONS(2061), [sym__automatic_semicolon] = ACTIONS(2063), [sym_html_comment] = ACTIONS(5), }, [285] = { - [sym_import] = STATE(4341), - [sym_expression_statement] = STATE(416), - [sym_variable_declaration] = STATE(416), - [sym_lexical_declaration] = STATE(416), - [sym_empty_statement] = STATE(416), - [sym_parenthesized_expression] = STATE(2258), - [sym_expression] = STATE(2653), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2258), - [sym_subscript_expression] = STATE(2258), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(6225), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6726), - [sym_string] = STATE(3425), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2620), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(285), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2258), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_RBRACE] = ACTIONS(2061), + [anon_sym_typeof] = ACTIONS(999), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_RBRACK] = ACTIONS(2061), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1805), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_QMARK] = ACTIONS(2061), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [anon_sym_extends] = ACTIONS(2061), + [sym_html_comment] = ACTIONS(5), + }, + [286] = { + [sym_import] = STATE(4300), + [sym_expression_statement] = STATE(448), + [sym_variable_declaration] = STATE(448), + [sym_lexical_declaration] = STATE(448), + [sym_empty_statement] = STATE(448), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2526), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(5763), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6496), + [sym_string] = STATE(3280), + [sym_comment] = STATE(286), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(2065), [anon_sym_export] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), @@ -70464,9 +70295,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), + [anon_sym_class] = ACTIONS(971), [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(2085), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -70507,57 +70338,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(2067), [sym_html_comment] = ACTIONS(5), }, - [286] = { - [sym_import] = STATE(4341), - [sym_expression_statement] = STATE(447), - [sym_variable_declaration] = STATE(447), - [sym_lexical_declaration] = STATE(447), - [sym_empty_statement] = STATE(447), - [sym_parenthesized_expression] = STATE(2258), - [sym_expression] = STATE(2653), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2258), - [sym_subscript_expression] = STATE(2258), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(6225), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6726), - [sym_string] = STATE(3425), - [sym_comment] = STATE(286), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2258), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [287] = { + [sym_import] = STATE(4300), + [sym_expression_statement] = STATE(419), + [sym_variable_declaration] = STATE(419), + [sym_lexical_declaration] = STATE(419), + [sym_empty_statement] = STATE(419), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2526), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(5763), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6496), + [sym_string] = STATE(3280), + [sym_comment] = STATE(287), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(2065), [anon_sym_export] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), @@ -70577,9 +70408,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), + [anon_sym_class] = ACTIONS(971), [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(2085), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -70620,57 +70451,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(2067), [sym_html_comment] = ACTIONS(5), }, - [287] = { - [sym_import] = STATE(4341), - [sym_expression_statement] = STATE(407), - [sym_variable_declaration] = STATE(407), - [sym_lexical_declaration] = STATE(407), - [sym_empty_statement] = STATE(407), - [sym_parenthesized_expression] = STATE(2258), - [sym_expression] = STATE(2653), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2258), - [sym_subscript_expression] = STATE(2258), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(6225), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6726), - [sym_string] = STATE(3425), - [sym_comment] = STATE(287), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2258), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [288] = { + [sym_import] = STATE(4300), + [sym_expression_statement] = STATE(423), + [sym_variable_declaration] = STATE(423), + [sym_lexical_declaration] = STATE(423), + [sym_empty_statement] = STATE(423), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2526), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(5763), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6496), + [sym_string] = STATE(3280), + [sym_comment] = STATE(288), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(2065), [anon_sym_export] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), @@ -70690,9 +70521,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), + [anon_sym_class] = ACTIONS(971), [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(2085), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -70733,283 +70564,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(2067), [sym_html_comment] = ACTIONS(5), }, - [288] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(288), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_RBRACE] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_RBRACK] = ACTIONS(2061), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1637), - [anon_sym_readonly] = ACTIONS(1637), - [anon_sym_get] = ACTIONS(1637), - [anon_sym_set] = ACTIONS(1637), - [anon_sym_QMARK] = ACTIONS(2061), - [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_object] = ACTIONS(1637), - [anon_sym_extends] = ACTIONS(2061), - [sym_html_comment] = ACTIONS(5), - }, [289] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3162), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2303), - [sym_subscript_expression] = STATE(2303), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(6333), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4300), + [sym_expression_statement] = STATE(422), + [sym_variable_declaration] = STATE(422), + [sym_lexical_declaration] = STATE(422), + [sym_empty_statement] = STATE(422), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2526), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(5763), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6496), + [sym_string] = STATE(3280), [sym_comment] = STATE(289), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2303), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_mapped_type_clause] = STATE(7141), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_pattern_repeat1] = STATE(6332), - [sym_identifier] = ACTIONS(2089), - [anon_sym_export] = ACTIONS(2091), - [anon_sym_type] = ACTIONS(2091), - [anon_sym_namespace] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_typeof] = ACTIONS(1541), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2091), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_RBRACK] = ACTIONS(2101), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2103), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2105), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2107), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2091), - [anon_sym_readonly] = ACTIONS(2091), - [anon_sym_get] = ACTIONS(2091), - [anon_sym_set] = ACTIONS(2091), - [anon_sym_declare] = ACTIONS(2091), - [anon_sym_public] = ACTIONS(2091), - [anon_sym_private] = ACTIONS(2091), - [anon_sym_protected] = ACTIONS(2091), - [anon_sym_override] = ACTIONS(2091), - [anon_sym_module] = ACTIONS(2091), - [anon_sym_any] = ACTIONS(2091), - [anon_sym_number] = ACTIONS(2091), - [anon_sym_boolean] = ACTIONS(2091), - [anon_sym_string] = ACTIONS(2091), - [anon_sym_symbol] = ACTIONS(2091), - [anon_sym_object] = ACTIONS(2091), - [sym_html_comment] = ACTIONS(5), - }, - [290] = { - [sym_import] = STATE(4341), - [sym_expression_statement] = STATE(438), - [sym_variable_declaration] = STATE(438), - [sym_lexical_declaration] = STATE(438), - [sym_empty_statement] = STATE(438), - [sym_parenthesized_expression] = STATE(2258), - [sym_expression] = STATE(2653), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2258), - [sym_subscript_expression] = STATE(2258), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(6225), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6726), - [sym_string] = STATE(3425), - [sym_comment] = STATE(290), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2258), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(2065), [anon_sym_export] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), @@ -71029,9 +70634,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), + [anon_sym_class] = ACTIONS(971), [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(2085), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -71072,57 +70677,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(2067), [sym_html_comment] = ACTIONS(5), }, - [291] = { - [sym_import] = STATE(4341), - [sym_expression_statement] = STATE(459), - [sym_variable_declaration] = STATE(459), - [sym_lexical_declaration] = STATE(459), - [sym_empty_statement] = STATE(459), - [sym_parenthesized_expression] = STATE(2258), - [sym_expression] = STATE(2653), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2258), - [sym_subscript_expression] = STATE(2258), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(6225), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6726), - [sym_string] = STATE(3425), - [sym_comment] = STATE(291), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2258), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [290] = { + [sym_import] = STATE(4300), + [sym_expression_statement] = STATE(439), + [sym_variable_declaration] = STATE(439), + [sym_lexical_declaration] = STATE(439), + [sym_empty_statement] = STATE(439), + [sym_parenthesized_expression] = STATE(2096), + [sym_expression] = STATE(2526), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2096), + [sym_subscript_expression] = STATE(2096), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(5763), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6496), + [sym_string] = STATE(3280), + [sym_comment] = STATE(290), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2096), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(2065), [anon_sym_export] = ACTIONS(2067), [anon_sym_type] = ACTIONS(2067), @@ -71142,9 +70747,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), + [anon_sym_class] = ACTIONS(971), [anon_sym_async] = ACTIONS(2083), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(2085), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -71185,541 +70790,318 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(2067), [sym_html_comment] = ACTIONS(5), }, + [291] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3082), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2155), + [sym_subscript_expression] = STATE(2155), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5658), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(291), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2155), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_mapped_type_clause] = STATE(6945), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_identifier] = ACTIONS(2089), + [anon_sym_export] = ACTIONS(2091), + [anon_sym_type] = ACTIONS(2091), + [anon_sym_namespace] = ACTIONS(2093), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_COMMA] = ACTIONS(2097), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(2099), + [anon_sym_RBRACK] = ACTIONS(2101), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(2103), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2105), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(2107), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(2091), + [anon_sym_readonly] = ACTIONS(2091), + [anon_sym_get] = ACTIONS(2091), + [anon_sym_set] = ACTIONS(2091), + [anon_sym_declare] = ACTIONS(2091), + [anon_sym_public] = ACTIONS(2091), + [anon_sym_private] = ACTIONS(2091), + [anon_sym_protected] = ACTIONS(2091), + [anon_sym_override] = ACTIONS(2091), + [anon_sym_module] = ACTIONS(2091), + [anon_sym_any] = ACTIONS(2091), + [anon_sym_number] = ACTIONS(2091), + [anon_sym_boolean] = ACTIONS(2091), + [anon_sym_string] = ACTIONS(2091), + [anon_sym_symbol] = ACTIONS(2091), + [anon_sym_object] = ACTIONS(2091), + [sym_html_comment] = ACTIONS(5), + }, [292] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3455), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3202), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2155), + [sym_subscript_expression] = STATE(2155), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5658), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(292), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(173), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2155), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_identifier] = ACTIONS(2109), + [anon_sym_export] = ACTIONS(2111), + [anon_sym_type] = ACTIONS(2111), + [anon_sym_namespace] = ACTIONS(2113), + [anon_sym_LBRACE] = ACTIONS(2095), + [anon_sym_COMMA] = ACTIONS(2097), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_let] = ACTIONS(2111), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2061), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_RBRACK] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(2099), + [anon_sym_RBRACK] = ACTIONS(2101), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), + [anon_sym_async] = ACTIONS(2115), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(1433), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(2107), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [anon_sym_extends] = ACTIONS(2061), + [anon_sym_static] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2111), + [anon_sym_get] = ACTIONS(2111), + [anon_sym_set] = ACTIONS(2111), + [anon_sym_declare] = ACTIONS(2111), + [anon_sym_public] = ACTIONS(2111), + [anon_sym_private] = ACTIONS(2111), + [anon_sym_protected] = ACTIONS(2111), + [anon_sym_override] = ACTIONS(2111), + [anon_sym_module] = ACTIONS(2111), + [anon_sym_any] = ACTIONS(2111), + [anon_sym_number] = ACTIONS(2111), + [anon_sym_boolean] = ACTIONS(2111), + [anon_sym_string] = ACTIONS(2111), + [anon_sym_symbol] = ACTIONS(2111), + [anon_sym_object] = ACTIONS(2111), [sym_html_comment] = ACTIONS(5), }, [293] = { - [sym_statement_block] = STATE(326), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2868), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(6614), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5770), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(293), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_in] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_QMARK_DOT] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2109), - [anon_sym_PIPE_PIPE] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_GT_GT_GT] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_satisfies] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2113), - [sym__ternary_qmark] = ACTIONS(2113), - [sym_html_comment] = ACTIONS(5), - }, - [294] = { - [sym_statement_block] = STATE(326), - [sym_comment] = STATE(294), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_in] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2115), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_QMARK_DOT] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2109), - [anon_sym_PIPE_PIPE] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_GT_GT_GT] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_satisfies] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2113), - [sym__ternary_qmark] = ACTIONS(2113), - [sym_html_comment] = ACTIONS(5), - }, - [295] = { - [sym_statement_block] = STATE(326), - [sym_comment] = STATE(295), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2111), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_in] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2117), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_QMARK_DOT] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2109), - [anon_sym_PIPE_PIPE] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_GT_GT_GT] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_satisfies] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2113), - [sym__ternary_qmark] = ACTIONS(2113), - [sym_html_comment] = ACTIONS(5), - }, - [296] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2940), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6765), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6219), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(296), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(6218), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5771), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), + [anon_sym_export] = ACTIONS(989), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_RBRACK] = ACTIONS(2122), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), + [anon_sym_using] = ACTIONS(1013), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -71727,186 +71109,410 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [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_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(989), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(989), + [anon_sym_number] = ACTIONS(989), + [anon_sym_boolean] = ACTIONS(989), + [anon_sym_string] = ACTIONS(989), + [anon_sym_symbol] = ACTIONS(989), + [anon_sym_object] = ACTIONS(989), [sym_html_comment] = ACTIONS(5), }, - [297] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2940), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6765), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6219), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(297), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(6218), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(966), + [294] = { + [sym_statement_block] = STATE(309), + [sym_comment] = STATE(294), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_as] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2128), + [anon_sym_COMMA] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_else] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_in] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_case] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_QMARK_DOT] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_AMP_AMP] = ACTIONS(2126), + [anon_sym_PIPE_PIPE] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(2126), + [anon_sym_GT_GT_GT] = ACTIONS(2126), + [anon_sym_LT_LT] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_PERCENT] = ACTIONS(2126), + [anon_sym_STAR_STAR] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_LT_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), + [anon_sym_GT_EQ] = ACTIONS(2126), + [anon_sym_QMARK_QMARK] = ACTIONS(2126), + [anon_sym_instanceof] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_satisfies] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [sym__automatic_semicolon] = ACTIONS(2130), + [sym__ternary_qmark] = ACTIONS(2130), + [sym_html_comment] = ACTIONS(5), + }, + [295] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5654), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(295), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5580), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_pattern_repeat1] = STATE(5659), + [sym_identifier] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_COMMA] = ACTIONS(2097), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_RBRACK] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_RBRACK] = ACTIONS(2101), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(150), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1069), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2047), + [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [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_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(111), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(111), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [298] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(298), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_pattern_repeat1] = STATE(6332), + [296] = { + [sym_statement_block] = STATE(309), + [sym_comment] = STATE(296), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_as] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2128), + [anon_sym_COMMA] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_else] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_in] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_case] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(2132), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_QMARK_DOT] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_AMP_AMP] = ACTIONS(2126), + [anon_sym_PIPE_PIPE] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(2126), + [anon_sym_GT_GT_GT] = ACTIONS(2126), + [anon_sym_LT_LT] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_PERCENT] = ACTIONS(2126), + [anon_sym_STAR_STAR] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_LT_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), + [anon_sym_GT_EQ] = ACTIONS(2126), + [anon_sym_QMARK_QMARK] = ACTIONS(2126), + [anon_sym_instanceof] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_satisfies] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [sym__automatic_semicolon] = ACTIONS(2130), + [sym__ternary_qmark] = ACTIONS(2130), + [sym_html_comment] = ACTIONS(5), + }, + [297] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(5731), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(297), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5549), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_pattern_repeat1] = STATE(5739), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -71920,8 +71526,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), - [anon_sym_RBRACK] = ACTIONS(2101), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_RBRACK] = ACTIONS(2134), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), @@ -71933,13 +71539,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -71969,93 +71575,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [299] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2940), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6765), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_spread_element] = STATE(6219), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(299), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(6218), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [298] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2868), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(6614), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5770), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(298), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5771), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), + [anon_sym_export] = ACTIONS(989), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(2119), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_RBRACK] = ACTIONS(2119), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), + [anon_sym_using] = ACTIONS(1013), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -72063,331 +71669,442 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [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_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(989), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(989), + [anon_sym_number] = ACTIONS(989), + [anon_sym_boolean] = ACTIONS(989), + [anon_sym_string] = ACTIONS(989), + [anon_sym_symbol] = ACTIONS(989), + [anon_sym_object] = ACTIONS(989), + [sym_html_comment] = ACTIONS(5), + }, + [299] = { + [sym_statement_block] = STATE(309), + [sym_comment] = STATE(299), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_as] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2128), + [anon_sym_COMMA] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_else] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_in] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_case] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(2136), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_QMARK_DOT] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_AMP_AMP] = ACTIONS(2126), + [anon_sym_PIPE_PIPE] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(2126), + [anon_sym_GT_GT_GT] = ACTIONS(2126), + [anon_sym_LT_LT] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_PERCENT] = ACTIONS(2126), + [anon_sym_STAR_STAR] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_LT_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), + [anon_sym_GT_EQ] = ACTIONS(2126), + [anon_sym_QMARK_QMARK] = ACTIONS(2126), + [anon_sym_instanceof] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_satisfies] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [sym__automatic_semicolon] = ACTIONS(2130), + [sym__ternary_qmark] = ACTIONS(2130), [sym_html_comment] = ACTIONS(5), }, [300] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3311), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6339), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2303), - [sym_subscript_expression] = STATE(2303), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(6333), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2868), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(6614), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_spread_element] = STATE(5770), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(300), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5703), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2303), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_pattern_repeat1] = STATE(6332), - [sym_identifier] = ACTIONS(2130), - [anon_sym_export] = ACTIONS(2132), - [anon_sym_type] = ACTIONS(2132), - [anon_sym_namespace] = ACTIONS(2134), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_COMMA] = ACTIONS(2097), - [anon_sym_typeof] = ACTIONS(1541), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5771), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2039), + [anon_sym_export] = ACTIONS(989), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_COMMA] = ACTIONS(2119), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2132), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(2099), - [anon_sym_RBRACK] = ACTIONS(2101), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_RBRACK] = ACTIONS(2138), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2136), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(2045), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(241), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2107), + [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2132), - [anon_sym_readonly] = ACTIONS(2132), - [anon_sym_get] = ACTIONS(2132), - [anon_sym_set] = ACTIONS(2132), - [anon_sym_declare] = ACTIONS(2132), - [anon_sym_public] = ACTIONS(2132), - [anon_sym_private] = ACTIONS(2132), - [anon_sym_protected] = ACTIONS(2132), - [anon_sym_override] = ACTIONS(2132), - [anon_sym_module] = ACTIONS(2132), - [anon_sym_any] = ACTIONS(2132), - [anon_sym_number] = ACTIONS(2132), - [anon_sym_boolean] = ACTIONS(2132), - [anon_sym_string] = ACTIONS(2132), - [anon_sym_symbol] = ACTIONS(2132), - [anon_sym_object] = ACTIONS(2132), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(989), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(989), + [anon_sym_number] = ACTIONS(989), + [anon_sym_boolean] = ACTIONS(989), + [anon_sym_string] = ACTIONS(989), + [anon_sym_symbol] = ACTIONS(989), + [anon_sym_object] = ACTIONS(989), [sym_html_comment] = ACTIONS(5), }, [301] = { [sym_comment] = STATE(301), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_else] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_case] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_GT] = ACTIONS(2142), - [anon_sym_DOT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_QMARK_DOT] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_PIPE_PIPE] = ACTIONS(2142), - [anon_sym_GT_GT] = ACTIONS(2142), - [anon_sym_GT_GT_GT] = ACTIONS(2142), - [anon_sym_LT_LT] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2142), - [anon_sym_CARET] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_PERCENT] = ACTIONS(2142), - [anon_sym_STAR_STAR] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_LT_EQ] = ACTIONS(2142), - [anon_sym_EQ_EQ] = ACTIONS(2142), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2142), - [anon_sym_BANG_EQ] = ACTIONS(2142), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2142), - [anon_sym_GT_EQ] = ACTIONS(2142), - [anon_sym_QMARK_QMARK] = ACTIONS(2142), - [anon_sym_instanceof] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_satisfies] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(2146), - [sym__ternary_qmark] = ACTIONS(2148), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(2144), + [anon_sym_default] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_EQ] = ACTIONS(2146), + [anon_sym_as] = ACTIONS(2144), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_COMMA] = ACTIONS(2144), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_else] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_in] = ACTIONS(2144), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_case] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_GT] = ACTIONS(2144), + [anon_sym_DOT] = ACTIONS(2144), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_QMARK_DOT] = ACTIONS(2144), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_AMP_AMP] = ACTIONS(2144), + [anon_sym_PIPE_PIPE] = ACTIONS(2144), + [anon_sym_GT_GT] = ACTIONS(2144), + [anon_sym_GT_GT_GT] = ACTIONS(2144), + [anon_sym_LT_LT] = ACTIONS(2144), + [anon_sym_AMP] = ACTIONS(2144), + [anon_sym_CARET] = ACTIONS(2144), + [anon_sym_PIPE] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_PERCENT] = ACTIONS(2144), + [anon_sym_STAR_STAR] = ACTIONS(2144), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_LT_EQ] = ACTIONS(2144), + [anon_sym_EQ_EQ] = ACTIONS(2144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2144), + [anon_sym_BANG_EQ] = ACTIONS(2144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2144), + [anon_sym_GT_EQ] = ACTIONS(2144), + [anon_sym_QMARK_QMARK] = ACTIONS(2144), + [anon_sym_instanceof] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_satisfies] = ACTIONS(2144), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(2148), + [sym__ternary_qmark] = ACTIONS(2150), [sym_html_comment] = ACTIONS(5), }, [302] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6356), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3295), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(302), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5707), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_pattern_repeat1] = STATE(6353), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(2097), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_COMMA] = ACTIONS(2061), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), + [anon_sym_let] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_RPAREN] = ACTIONS(2061), [anon_sym_await] = ACTIONS(138), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), - [anon_sym_RBRACK] = ACTIONS(2150), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_RBRACK] = ACTIONS(2061), [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2061), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1069), + [anon_sym_new] = ACTIONS(1109), [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -72397,24 +72114,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1079), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), + [anon_sym_extends] = ACTIONS(2061), [sym_html_comment] = ACTIONS(5), }, [303] = { @@ -72636,280 +72354,502 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2160), [anon_sym_enum] = ACTIONS(2160), [sym__automatic_semicolon] = ACTIONS(2162), - [sym__ternary_qmark] = ACTIONS(2162), + [sym__ternary_qmark] = ACTIONS(2164), [sym_html_comment] = ACTIONS(5), }, [305] = { [sym_comment] = STATE(305), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_as] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_else] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_in] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_case] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_GT] = ACTIONS(2140), - [anon_sym_DOT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_QMARK_DOT] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_AMP_AMP] = ACTIONS(2140), - [anon_sym_PIPE_PIPE] = ACTIONS(2140), - [anon_sym_GT_GT] = ACTIONS(2140), - [anon_sym_GT_GT_GT] = ACTIONS(2140), - [anon_sym_LT_LT] = ACTIONS(2140), - [anon_sym_AMP] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_PERCENT] = ACTIONS(2140), - [anon_sym_STAR_STAR] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_LT_EQ] = ACTIONS(2140), - [anon_sym_EQ_EQ] = ACTIONS(2140), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2140), - [anon_sym_BANG_EQ] = ACTIONS(2140), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2140), - [anon_sym_GT_EQ] = ACTIONS(2140), - [anon_sym_QMARK_QMARK] = ACTIONS(2140), - [anon_sym_instanceof] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_satisfies] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(2164), - [sym__ternary_qmark] = ACTIONS(2166), + [sym_identifier] = ACTIONS(2166), + [anon_sym_export] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2166), + [anon_sym_default] = ACTIONS(2166), + [anon_sym_type] = ACTIONS(2166), + [anon_sym_as] = ACTIONS(2166), + [anon_sym_namespace] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_COMMA] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_typeof] = ACTIONS(2166), + [anon_sym_import] = ACTIONS(2166), + [anon_sym_with] = ACTIONS(2166), + [anon_sym_var] = ACTIONS(2166), + [anon_sym_let] = ACTIONS(2166), + [anon_sym_const] = ACTIONS(2166), + [anon_sym_BANG] = ACTIONS(2166), + [anon_sym_else] = ACTIONS(2166), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_switch] = ACTIONS(2166), + [anon_sym_for] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(2166), + [anon_sym_await] = ACTIONS(2166), + [anon_sym_in] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2166), + [anon_sym_do] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2166), + [anon_sym_break] = ACTIONS(2166), + [anon_sym_continue] = ACTIONS(2166), + [anon_sym_debugger] = ACTIONS(2166), + [anon_sym_return] = ACTIONS(2166), + [anon_sym_throw] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_case] = ACTIONS(2166), + [anon_sym_yield] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2166), + [anon_sym_LTtemplate_GT] = ACTIONS(2166), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_DOT] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [anon_sym_SQUOTE] = ACTIONS(2166), + [anon_sym_class] = ACTIONS(2166), + [anon_sym_async] = ACTIONS(2166), + [anon_sym_function] = ACTIONS(2166), + [anon_sym_QMARK_DOT] = ACTIONS(2166), + [anon_sym_new] = ACTIONS(2166), + [anon_sym_using] = ACTIONS(2166), + [anon_sym_AMP_AMP] = ACTIONS(2166), + [anon_sym_PIPE_PIPE] = ACTIONS(2166), + [anon_sym_GT_GT] = ACTIONS(2166), + [anon_sym_GT_GT_GT] = ACTIONS(2166), + [anon_sym_LT_LT] = ACTIONS(2166), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_CARET] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_PERCENT] = ACTIONS(2166), + [anon_sym_STAR_STAR] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_LT_EQ] = ACTIONS(2166), + [anon_sym_EQ_EQ] = ACTIONS(2166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2166), + [anon_sym_BANG_EQ] = ACTIONS(2166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2166), + [anon_sym_QMARK_QMARK] = ACTIONS(2166), + [anon_sym_instanceof] = ACTIONS(2166), + [anon_sym_TILDE] = ACTIONS(2166), + [anon_sym_void] = ACTIONS(2166), + [anon_sym_delete] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2166), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2166), + [sym_number] = ACTIONS(2166), + [sym_private_property_identifier] = ACTIONS(2166), + [sym_this] = ACTIONS(2166), + [sym_super] = ACTIONS(2166), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_undefined] = ACTIONS(2166), + [anon_sym_AT] = ACTIONS(2166), + [anon_sym_static] = ACTIONS(2166), + [anon_sym_readonly] = ACTIONS(2166), + [anon_sym_get] = ACTIONS(2166), + [anon_sym_set] = ACTIONS(2166), + [anon_sym_declare] = ACTIONS(2166), + [anon_sym_public] = ACTIONS(2166), + [anon_sym_private] = ACTIONS(2166), + [anon_sym_protected] = ACTIONS(2166), + [anon_sym_override] = ACTIONS(2166), + [anon_sym_module] = ACTIONS(2166), + [anon_sym_any] = ACTIONS(2166), + [anon_sym_number] = ACTIONS(2166), + [anon_sym_boolean] = ACTIONS(2166), + [anon_sym_string] = ACTIONS(2166), + [anon_sym_symbol] = ACTIONS(2166), + [anon_sym_object] = ACTIONS(2166), + [anon_sym_abstract] = ACTIONS(2166), + [anon_sym_satisfies] = ACTIONS(2166), + [anon_sym_interface] = ACTIONS(2166), + [anon_sym_enum] = ACTIONS(2166), + [sym__automatic_semicolon] = ACTIONS(2168), + [sym__ternary_qmark] = ACTIONS(2168), [sym_html_comment] = ACTIONS(5), }, [306] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(6614), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(306), - [sym_identifier] = ACTIONS(2168), - [anon_sym_export] = ACTIONS(2168), - [anon_sym_STAR] = ACTIONS(2170), - [anon_sym_default] = ACTIONS(2168), - [anon_sym_type] = ACTIONS(2168), - [anon_sym_as] = ACTIONS(2170), - [anon_sym_namespace] = ACTIONS(2168), - [anon_sym_LBRACE] = ACTIONS(2168), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5771), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1061), [anon_sym_COMMA] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2168), - [anon_sym_typeof] = ACTIONS(2168), - [anon_sym_import] = ACTIONS(2168), - [anon_sym_with] = ACTIONS(2168), - [anon_sym_var] = ACTIONS(2168), - [anon_sym_let] = ACTIONS(2168), - [anon_sym_const] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(2168), - [anon_sym_else] = ACTIONS(2168), - [anon_sym_if] = ACTIONS(2168), - [anon_sym_switch] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_await] = ACTIONS(2168), - [anon_sym_in] = ACTIONS(2170), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_do] = ACTIONS(2168), - [anon_sym_try] = ACTIONS(2168), - [anon_sym_break] = ACTIONS(2168), - [anon_sym_continue] = ACTIONS(2168), - [anon_sym_debugger] = ACTIONS(2168), - [anon_sym_return] = ACTIONS(2168), - [anon_sym_throw] = ACTIONS(2168), - [anon_sym_SEMI] = ACTIONS(2168), - [anon_sym_case] = ACTIONS(2168), - [anon_sym_yield] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_LTtemplate_GT] = ACTIONS(2168), - [anon_sym_GT] = ACTIONS(2170), - [anon_sym_DOT] = ACTIONS(2170), - [anon_sym_DQUOTE] = ACTIONS(2168), - [anon_sym_SQUOTE] = ACTIONS(2168), - [anon_sym_class] = ACTIONS(2168), - [anon_sym_async] = ACTIONS(2168), - [anon_sym_function] = ACTIONS(2168), - [anon_sym_QMARK_DOT] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2168), - [anon_sym_using] = ACTIONS(2168), - [anon_sym_AMP_AMP] = ACTIONS(2170), - [anon_sym_PIPE_PIPE] = ACTIONS(2170), - [anon_sym_GT_GT] = ACTIONS(2170), - [anon_sym_GT_GT_GT] = ACTIONS(2170), - [anon_sym_LT_LT] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2170), - [anon_sym_CARET] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_PLUS] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2168), - [anon_sym_SLASH] = ACTIONS(2168), - [anon_sym_PERCENT] = ACTIONS(2170), - [anon_sym_STAR_STAR] = ACTIONS(2170), - [anon_sym_LT] = ACTIONS(2168), - [anon_sym_LT_EQ] = ACTIONS(2170), - [anon_sym_EQ_EQ] = ACTIONS(2170), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2170), - [anon_sym_BANG_EQ] = ACTIONS(2170), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2170), - [anon_sym_GT_EQ] = ACTIONS(2170), - [anon_sym_QMARK_QMARK] = ACTIONS(2170), - [anon_sym_instanceof] = ACTIONS(2170), - [anon_sym_TILDE] = ACTIONS(2168), - [anon_sym_void] = ACTIONS(2168), - [anon_sym_delete] = ACTIONS(2168), - [anon_sym_PLUS_PLUS] = ACTIONS(2168), - [anon_sym_DASH_DASH] = ACTIONS(2168), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2168), - [sym_number] = ACTIONS(2168), - [sym_private_property_identifier] = ACTIONS(2168), - [sym_this] = ACTIONS(2168), - [sym_super] = ACTIONS(2168), - [sym_true] = ACTIONS(2168), - [sym_false] = ACTIONS(2168), - [sym_null] = ACTIONS(2168), - [sym_undefined] = ACTIONS(2168), - [anon_sym_AT] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_readonly] = ACTIONS(2168), - [anon_sym_get] = ACTIONS(2168), - [anon_sym_set] = ACTIONS(2168), - [anon_sym_declare] = ACTIONS(2168), - [anon_sym_public] = ACTIONS(2168), - [anon_sym_private] = ACTIONS(2168), - [anon_sym_protected] = ACTIONS(2168), - [anon_sym_override] = ACTIONS(2168), - [anon_sym_module] = ACTIONS(2168), - [anon_sym_any] = ACTIONS(2168), - [anon_sym_number] = ACTIONS(2168), - [anon_sym_boolean] = ACTIONS(2168), - [anon_sym_string] = ACTIONS(2168), - [anon_sym_symbol] = ACTIONS(2168), - [anon_sym_object] = ACTIONS(2168), - [anon_sym_abstract] = ACTIONS(2168), - [anon_sym_satisfies] = ACTIONS(2170), - [anon_sym_interface] = ACTIONS(2168), - [anon_sym_enum] = ACTIONS(2168), - [sym__automatic_semicolon] = ACTIONS(2172), - [sym__ternary_qmark] = ACTIONS(2174), + [anon_sym_typeof] = ACTIONS(173), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_RBRACK] = ACTIONS(2170), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1069), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(184), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1079), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(111), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(111), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [307] = { [sym_comment] = STATE(307), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_STAR] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_as] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_COMMA] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2172), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_in] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LTtemplate_GT] = ACTIONS(2172), + [anon_sym_GT] = ACTIONS(2172), + [anon_sym_DOT] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_QMARK_DOT] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_using] = ACTIONS(2172), + [anon_sym_AMP_AMP] = ACTIONS(2172), + [anon_sym_PIPE_PIPE] = ACTIONS(2172), + [anon_sym_GT_GT] = ACTIONS(2172), + [anon_sym_GT_GT_GT] = ACTIONS(2172), + [anon_sym_LT_LT] = ACTIONS(2172), + [anon_sym_AMP] = ACTIONS(2172), + [anon_sym_CARET] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_PERCENT] = ACTIONS(2172), + [anon_sym_STAR_STAR] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(2172), + [anon_sym_LT_EQ] = ACTIONS(2172), + [anon_sym_EQ_EQ] = ACTIONS(2172), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2172), + [anon_sym_BANG_EQ] = ACTIONS(2172), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2172), + [anon_sym_GT_EQ] = ACTIONS(2172), + [anon_sym_QMARK_QMARK] = ACTIONS(2172), + [anon_sym_instanceof] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2172), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2172), + [anon_sym_DASH_DASH] = ACTIONS(2172), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2172), + [sym_number] = ACTIONS(2172), + [sym_private_property_identifier] = ACTIONS(2172), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2172), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_object] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_satisfies] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), + [sym__automatic_semicolon] = ACTIONS(2174), + [sym__ternary_qmark] = ACTIONS(2174), + [sym_html_comment] = ACTIONS(5), + }, + [308] = { + [sym_comment] = STATE(308), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(2144), + [anon_sym_default] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_EQ] = ACTIONS(2146), + [anon_sym_as] = ACTIONS(2144), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_COMMA] = ACTIONS(2144), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_in] = ACTIONS(2144), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_case] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_GT] = ACTIONS(2144), + [anon_sym_DOT] = ACTIONS(2144), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_QMARK_DOT] = ACTIONS(2144), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_AMP_AMP] = ACTIONS(2144), + [anon_sym_PIPE_PIPE] = ACTIONS(2144), + [anon_sym_GT_GT] = ACTIONS(2144), + [anon_sym_GT_GT_GT] = ACTIONS(2144), + [anon_sym_LT_LT] = ACTIONS(2144), + [anon_sym_AMP] = ACTIONS(2144), + [anon_sym_CARET] = ACTIONS(2144), + [anon_sym_PIPE] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_PERCENT] = ACTIONS(2144), + [anon_sym_STAR_STAR] = ACTIONS(2144), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_LT_EQ] = ACTIONS(2144), + [anon_sym_EQ_EQ] = ACTIONS(2144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2144), + [anon_sym_BANG_EQ] = ACTIONS(2144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2144), + [anon_sym_GT_EQ] = ACTIONS(2144), + [anon_sym_QMARK_QMARK] = ACTIONS(2144), + [anon_sym_instanceof] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_satisfies] = ACTIONS(2144), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(2176), + [sym__ternary_qmark] = ACTIONS(2150), + [sym_html_comment] = ACTIONS(5), + }, + [309] = { + [sym_comment] = STATE(309), + [sym_identifier] = ACTIONS(2178), + [anon_sym_export] = ACTIONS(2178), [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), + [anon_sym_default] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2178), [anon_sym_as] = ACTIONS(2178), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2178), [anon_sym_COMMA] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_else] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(2176), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_typeof] = ACTIONS(2178), + [anon_sym_import] = ACTIONS(2178), + [anon_sym_with] = ACTIONS(2178), + [anon_sym_var] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_else] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_await] = ACTIONS(2178), [anon_sym_in] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_case] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LTtemplate_GT] = ACTIONS(2176), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_debugger] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_case] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_LTtemplate_GT] = ACTIONS(2178), [anon_sym_GT] = ACTIONS(2178), [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2178), [anon_sym_QMARK_DOT] = ACTIONS(2178), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), [anon_sym_AMP_AMP] = ACTIONS(2178), [anon_sym_PIPE_PIPE] = ACTIONS(2178), [anon_sym_GT_GT] = ACTIONS(2178), @@ -72918,12 +72858,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2178), [anon_sym_CARET] = ACTIONS(2178), [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_SLASH] = ACTIONS(2178), [anon_sym_PERCENT] = ACTIONS(2178), [anon_sym_STAR_STAR] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2176), + [anon_sym_LT] = ACTIONS(2178), [anon_sym_LT_EQ] = ACTIONS(2178), [anon_sym_EQ_EQ] = ACTIONS(2178), [anon_sym_EQ_EQ_EQ] = ACTIONS(2178), @@ -72932,48 +72872,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2178), [anon_sym_QMARK_QMARK] = ACTIONS(2178), [anon_sym_instanceof] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_number] = ACTIONS(2176), - [sym_private_property_identifier] = ACTIONS(2176), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), + [anon_sym_TILDE] = ACTIONS(2178), + [anon_sym_void] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_PLUS_PLUS] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2178), + [sym_number] = ACTIONS(2178), + [sym_private_property_identifier] = ACTIONS(2178), + [sym_this] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [sym_null] = ACTIONS(2178), + [sym_undefined] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_readonly] = ACTIONS(2178), + [anon_sym_get] = ACTIONS(2178), + [anon_sym_set] = ACTIONS(2178), + [anon_sym_declare] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_protected] = ACTIONS(2178), + [anon_sym_override] = ACTIONS(2178), + [anon_sym_module] = ACTIONS(2178), + [anon_sym_any] = ACTIONS(2178), + [anon_sym_number] = ACTIONS(2178), + [anon_sym_boolean] = ACTIONS(2178), + [anon_sym_string] = ACTIONS(2178), + [anon_sym_symbol] = ACTIONS(2178), + [anon_sym_object] = ACTIONS(2178), + [anon_sym_abstract] = ACTIONS(2178), [anon_sym_satisfies] = ACTIONS(2178), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), + [anon_sym_interface] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), [sym__automatic_semicolon] = ACTIONS(2180), [sym__ternary_qmark] = ACTIONS(2180), [sym_html_comment] = ACTIONS(5), }, - [308] = { - [sym_comment] = STATE(308), + [310] = { + [sym_comment] = STATE(310), [sym_identifier] = ACTIONS(2182), [anon_sym_export] = ACTIONS(2182), [anon_sym_STAR] = ACTIONS(2184), @@ -73080,58 +73020,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(2182), [anon_sym_enum] = ACTIONS(2182), [sym__automatic_semicolon] = ACTIONS(2186), - [sym__ternary_qmark] = ACTIONS(2188), + [sym__ternary_qmark] = ACTIONS(2186), [sym_html_comment] = ACTIONS(5), }, - [309] = { - [sym_comment] = STATE(309), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), + [311] = { + [sym_comment] = STATE(311), + [sym_identifier] = ACTIONS(2188), + [anon_sym_export] = ACTIONS(2188), [anon_sym_STAR] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), + [anon_sym_default] = ACTIONS(2188), + [anon_sym_type] = ACTIONS(2188), [anon_sym_as] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_namespace] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_typeof] = ACTIONS(2188), + [anon_sym_import] = ACTIONS(2188), + [anon_sym_with] = ACTIONS(2188), + [anon_sym_var] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_else] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_await] = ACTIONS(2188), [anon_sym_in] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_do] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), + [anon_sym_continue] = ACTIONS(2188), + [anon_sym_debugger] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_throw] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_case] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LTtemplate_GT] = ACTIONS(2188), [anon_sym_GT] = ACTIONS(2190), [anon_sym_DOT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_class] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(2188), + [anon_sym_function] = ACTIONS(2188), [anon_sym_QMARK_DOT] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(2188), [anon_sym_AMP_AMP] = ACTIONS(2190), [anon_sym_PIPE_PIPE] = ACTIONS(2190), [anon_sym_GT_GT] = ACTIONS(2190), @@ -73140,12 +73080,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2190), [anon_sym_CARET] = ACTIONS(2190), [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_SLASH] = ACTIONS(2188), [anon_sym_PERCENT] = ACTIONS(2190), [anon_sym_STAR_STAR] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(2188), [anon_sym_LT_EQ] = ACTIONS(2190), [anon_sym_EQ_EQ] = ACTIONS(2190), [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), @@ -73154,95 +73094,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2190), [anon_sym_QMARK_QMARK] = ACTIONS(2190), [anon_sym_instanceof] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_void] = ACTIONS(2188), + [anon_sym_delete] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_number] = ACTIONS(2188), + [sym_private_property_identifier] = ACTIONS(2188), + [sym_this] = ACTIONS(2188), + [sym_super] = ACTIONS(2188), + [sym_true] = ACTIONS(2188), + [sym_false] = ACTIONS(2188), + [sym_null] = ACTIONS(2188), + [sym_undefined] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(2188), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_readonly] = ACTIONS(2188), + [anon_sym_get] = ACTIONS(2188), + [anon_sym_set] = ACTIONS(2188), + [anon_sym_declare] = ACTIONS(2188), + [anon_sym_public] = ACTIONS(2188), + [anon_sym_private] = ACTIONS(2188), + [anon_sym_protected] = ACTIONS(2188), + [anon_sym_override] = ACTIONS(2188), + [anon_sym_module] = ACTIONS(2188), + [anon_sym_any] = ACTIONS(2188), + [anon_sym_number] = ACTIONS(2188), + [anon_sym_boolean] = ACTIONS(2188), + [anon_sym_string] = ACTIONS(2188), + [anon_sym_symbol] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(2188), + [anon_sym_abstract] = ACTIONS(2188), [anon_sym_satisfies] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), + [anon_sym_interface] = ACTIONS(2188), + [anon_sym_enum] = ACTIONS(2188), [sym__automatic_semicolon] = ACTIONS(2192), - [sym__ternary_qmark] = ACTIONS(2192), + [sym__ternary_qmark] = ACTIONS(2194), [sym_html_comment] = ACTIONS(5), }, - [310] = { - [sym_comment] = STATE(310), - [sym_identifier] = ACTIONS(2194), - [anon_sym_export] = ACTIONS(2194), + [312] = { + [sym_comment] = STATE(312), + [sym_identifier] = ACTIONS(2196), + [anon_sym_export] = ACTIONS(2196), [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_default] = ACTIONS(2194), - [anon_sym_type] = ACTIONS(2194), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_type] = ACTIONS(2196), [anon_sym_as] = ACTIONS(2196), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2194), + [anon_sym_namespace] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(2196), [anon_sym_COMMA] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_typeof] = ACTIONS(2194), - [anon_sym_import] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2194), - [anon_sym_var] = ACTIONS(2194), - [anon_sym_let] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_await] = ACTIONS(2194), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_typeof] = ACTIONS(2196), + [anon_sym_import] = ACTIONS(2196), + [anon_sym_with] = ACTIONS(2196), + [anon_sym_var] = ACTIONS(2196), + [anon_sym_let] = ACTIONS(2196), + [anon_sym_const] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2196), + [anon_sym_else] = ACTIONS(2196), + [anon_sym_if] = ACTIONS(2196), + [anon_sym_switch] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_await] = ACTIONS(2196), [anon_sym_in] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_debugger] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_yield] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_LTtemplate_GT] = ACTIONS(2194), + [anon_sym_while] = ACTIONS(2196), + [anon_sym_do] = ACTIONS(2196), + [anon_sym_try] = ACTIONS(2196), + [anon_sym_break] = ACTIONS(2196), + [anon_sym_continue] = ACTIONS(2196), + [anon_sym_debugger] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(2196), + [anon_sym_throw] = ACTIONS(2196), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_case] = ACTIONS(2196), + [anon_sym_yield] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2196), + [anon_sym_LTtemplate_GT] = ACTIONS(2196), [anon_sym_GT] = ACTIONS(2196), [anon_sym_DOT] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2194), - [anon_sym_SQUOTE] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_async] = ACTIONS(2194), - [anon_sym_function] = ACTIONS(2194), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_SQUOTE] = ACTIONS(2196), + [anon_sym_class] = ACTIONS(2196), + [anon_sym_async] = ACTIONS(2196), + [anon_sym_function] = ACTIONS(2196), [anon_sym_QMARK_DOT] = ACTIONS(2196), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), + [anon_sym_new] = ACTIONS(2196), + [anon_sym_using] = ACTIONS(2196), [anon_sym_AMP_AMP] = ACTIONS(2196), [anon_sym_PIPE_PIPE] = ACTIONS(2196), [anon_sym_GT_GT] = ACTIONS(2196), @@ -73251,12 +73191,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2196), [anon_sym_CARET] = ACTIONS(2196), [anon_sym_PIPE] = ACTIONS(2196), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_SLASH] = ACTIONS(2194), + [anon_sym_PLUS] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_SLASH] = ACTIONS(2196), [anon_sym_PERCENT] = ACTIONS(2196), [anon_sym_STAR_STAR] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(2194), + [anon_sym_LT] = ACTIONS(2196), [anon_sym_LT_EQ] = ACTIONS(2196), [anon_sym_EQ_EQ] = ACTIONS(2196), [anon_sym_EQ_EQ_EQ] = ACTIONS(2196), @@ -73265,168 +73205,168 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2196), [anon_sym_QMARK_QMARK] = ACTIONS(2196), [anon_sym_instanceof] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_void] = ACTIONS(2194), - [anon_sym_delete] = ACTIONS(2194), - [anon_sym_PLUS_PLUS] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2194), - [sym_number] = ACTIONS(2194), - [sym_private_property_identifier] = ACTIONS(2194), - [sym_this] = ACTIONS(2194), - [sym_super] = ACTIONS(2194), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [sym_null] = ACTIONS(2194), - [sym_undefined] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_readonly] = ACTIONS(2194), - [anon_sym_get] = ACTIONS(2194), - [anon_sym_set] = ACTIONS(2194), - [anon_sym_declare] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_override] = ACTIONS(2194), - [anon_sym_module] = ACTIONS(2194), - [anon_sym_any] = ACTIONS(2194), - [anon_sym_number] = ACTIONS(2194), - [anon_sym_boolean] = ACTIONS(2194), - [anon_sym_string] = ACTIONS(2194), - [anon_sym_symbol] = ACTIONS(2194), - [anon_sym_object] = ACTIONS(2194), - [anon_sym_abstract] = ACTIONS(2194), + [anon_sym_TILDE] = ACTIONS(2196), + [anon_sym_void] = ACTIONS(2196), + [anon_sym_delete] = ACTIONS(2196), + [anon_sym_PLUS_PLUS] = ACTIONS(2196), + [anon_sym_DASH_DASH] = ACTIONS(2196), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2196), + [sym_number] = ACTIONS(2196), + [sym_private_property_identifier] = ACTIONS(2196), + [sym_this] = ACTIONS(2196), + [sym_super] = ACTIONS(2196), + [sym_true] = ACTIONS(2196), + [sym_false] = ACTIONS(2196), + [sym_null] = ACTIONS(2196), + [sym_undefined] = ACTIONS(2196), + [anon_sym_AT] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2196), + [anon_sym_readonly] = ACTIONS(2196), + [anon_sym_get] = ACTIONS(2196), + [anon_sym_set] = ACTIONS(2196), + [anon_sym_declare] = ACTIONS(2196), + [anon_sym_public] = ACTIONS(2196), + [anon_sym_private] = ACTIONS(2196), + [anon_sym_protected] = ACTIONS(2196), + [anon_sym_override] = ACTIONS(2196), + [anon_sym_module] = ACTIONS(2196), + [anon_sym_any] = ACTIONS(2196), + [anon_sym_number] = ACTIONS(2196), + [anon_sym_boolean] = ACTIONS(2196), + [anon_sym_string] = ACTIONS(2196), + [anon_sym_symbol] = ACTIONS(2196), + [anon_sym_object] = ACTIONS(2196), + [anon_sym_abstract] = ACTIONS(2196), [anon_sym_satisfies] = ACTIONS(2196), - [anon_sym_interface] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), + [anon_sym_interface] = ACTIONS(2196), + [anon_sym_enum] = ACTIONS(2196), [sym__automatic_semicolon] = ACTIONS(2198), - [sym__ternary_qmark] = ACTIONS(2200), + [sym__ternary_qmark] = ACTIONS(2198), [sym_html_comment] = ACTIONS(5), }, - [311] = { - [sym_comment] = STATE(311), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_as] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_in] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_DOT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_QMARK_DOT] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_GT_GT_GT] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_PERCENT] = ACTIONS(2190), - [anon_sym_STAR_STAR] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_LT_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2190), - [anon_sym_GT_EQ] = ACTIONS(2190), - [anon_sym_QMARK_QMARK] = ACTIONS(2190), - [anon_sym_instanceof] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_satisfies] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(2202), - [sym__ternary_qmark] = ACTIONS(2192), + [313] = { + [sym_statement_block] = STATE(383), + [sym_comment] = STATE(313), + [ts_builtin_sym_end] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_as] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_COMMA] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_else] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_in] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(2202), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_QMARK_DOT] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_AMP_AMP] = ACTIONS(2126), + [anon_sym_PIPE_PIPE] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(2126), + [anon_sym_GT_GT_GT] = ACTIONS(2126), + [anon_sym_LT_LT] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_PERCENT] = ACTIONS(2126), + [anon_sym_STAR_STAR] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_LT_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), + [anon_sym_GT_EQ] = ACTIONS(2126), + [anon_sym_QMARK_QMARK] = ACTIONS(2126), + [anon_sym_instanceof] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_satisfies] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [sym__automatic_semicolon] = ACTIONS(2130), + [sym__ternary_qmark] = ACTIONS(2130), [sym_html_comment] = ACTIONS(5), }, - [312] = { - [sym_comment] = STATE(312), + [314] = { + [sym_comment] = STATE(314), [sym_identifier] = ACTIONS(2204), [anon_sym_export] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2206), [anon_sym_default] = ACTIONS(2204), [anon_sym_type] = ACTIONS(2204), - [anon_sym_as] = ACTIONS(2204), + [anon_sym_as] = ACTIONS(2206), [anon_sym_namespace] = ACTIONS(2204), [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), + [anon_sym_COMMA] = ACTIONS(2206), [anon_sym_RBRACE] = ACTIONS(2204), [anon_sym_typeof] = ACTIONS(2204), [anon_sym_import] = ACTIONS(2204), @@ -73441,7 +73381,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2204), [anon_sym_LPAREN] = ACTIONS(2204), [anon_sym_await] = ACTIONS(2204), - [anon_sym_in] = ACTIONS(2204), + [anon_sym_in] = ACTIONS(2206), [anon_sym_while] = ACTIONS(2204), [anon_sym_do] = ACTIONS(2204), [anon_sym_try] = ACTIONS(2204), @@ -73455,38 +73395,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2204), [anon_sym_LBRACK] = ACTIONS(2204), [anon_sym_LTtemplate_GT] = ACTIONS(2204), - [anon_sym_GT] = ACTIONS(2204), - [anon_sym_DOT] = ACTIONS(2204), + [anon_sym_GT] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(2206), [anon_sym_DQUOTE] = ACTIONS(2204), [anon_sym_SQUOTE] = ACTIONS(2204), [anon_sym_class] = ACTIONS(2204), [anon_sym_async] = ACTIONS(2204), [anon_sym_function] = ACTIONS(2204), - [anon_sym_QMARK_DOT] = ACTIONS(2204), + [anon_sym_QMARK_DOT] = ACTIONS(2206), [anon_sym_new] = ACTIONS(2204), [anon_sym_using] = ACTIONS(2204), - [anon_sym_AMP_AMP] = ACTIONS(2204), - [anon_sym_PIPE_PIPE] = ACTIONS(2204), - [anon_sym_GT_GT] = ACTIONS(2204), - [anon_sym_GT_GT_GT] = ACTIONS(2204), - [anon_sym_LT_LT] = ACTIONS(2204), - [anon_sym_AMP] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_PIPE] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2206), + [anon_sym_PIPE_PIPE] = ACTIONS(2206), + [anon_sym_GT_GT] = ACTIONS(2206), + [anon_sym_GT_GT_GT] = ACTIONS(2206), + [anon_sym_LT_LT] = ACTIONS(2206), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_CARET] = ACTIONS(2206), + [anon_sym_PIPE] = ACTIONS(2206), [anon_sym_PLUS] = ACTIONS(2204), [anon_sym_DASH] = ACTIONS(2204), [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_PERCENT] = ACTIONS(2204), - [anon_sym_STAR_STAR] = ACTIONS(2204), + [anon_sym_PERCENT] = ACTIONS(2206), + [anon_sym_STAR_STAR] = ACTIONS(2206), [anon_sym_LT] = ACTIONS(2204), - [anon_sym_LT_EQ] = ACTIONS(2204), - [anon_sym_EQ_EQ] = ACTIONS(2204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2204), - [anon_sym_BANG_EQ] = ACTIONS(2204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2204), - [anon_sym_GT_EQ] = ACTIONS(2204), - [anon_sym_QMARK_QMARK] = ACTIONS(2204), - [anon_sym_instanceof] = ACTIONS(2204), + [anon_sym_LT_EQ] = ACTIONS(2206), + [anon_sym_EQ_EQ] = ACTIONS(2206), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2206), + [anon_sym_BANG_EQ] = ACTIONS(2206), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2206), + [anon_sym_GT_EQ] = ACTIONS(2206), + [anon_sym_QMARK_QMARK] = ACTIONS(2206), + [anon_sym_instanceof] = ACTIONS(2206), [anon_sym_TILDE] = ACTIONS(2204), [anon_sym_void] = ACTIONS(2204), [anon_sym_delete] = ACTIONS(2204), @@ -73520,1061 +73460,173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2204), [anon_sym_object] = ACTIONS(2204), [anon_sym_abstract] = ACTIONS(2204), - [anon_sym_satisfies] = ACTIONS(2204), + [anon_sym_satisfies] = ACTIONS(2206), [anon_sym_interface] = ACTIONS(2204), [anon_sym_enum] = ACTIONS(2204), - [sym__automatic_semicolon] = ACTIONS(2206), - [sym__ternary_qmark] = ACTIONS(2206), - [sym_html_comment] = ACTIONS(5), - }, - [313] = { - [sym_comment] = STATE(313), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_STAR] = ACTIONS(2210), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_as] = ACTIONS(2210), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_COMMA] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_in] = ACTIONS(2210), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_GT] = ACTIONS(2210), - [anon_sym_DOT] = ACTIONS(2210), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_QMARK_DOT] = ACTIONS(2210), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_AMP_AMP] = ACTIONS(2210), - [anon_sym_PIPE_PIPE] = ACTIONS(2210), - [anon_sym_GT_GT] = ACTIONS(2210), - [anon_sym_GT_GT_GT] = ACTIONS(2210), - [anon_sym_LT_LT] = ACTIONS(2210), - [anon_sym_AMP] = ACTIONS(2210), - [anon_sym_CARET] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(2210), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_PERCENT] = ACTIONS(2210), - [anon_sym_STAR_STAR] = ACTIONS(2210), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_LT_EQ] = ACTIONS(2210), - [anon_sym_EQ_EQ] = ACTIONS(2210), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2210), - [anon_sym_BANG_EQ] = ACTIONS(2210), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2210), - [anon_sym_GT_EQ] = ACTIONS(2210), - [anon_sym_QMARK_QMARK] = ACTIONS(2210), - [anon_sym_instanceof] = ACTIONS(2210), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_satisfies] = ACTIONS(2210), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(2212), - [sym__ternary_qmark] = ACTIONS(2214), - [sym_html_comment] = ACTIONS(5), - }, - [314] = { - [sym_comment] = STATE(314), - [sym_identifier] = ACTIONS(2216), - [anon_sym_export] = ACTIONS(2216), - [anon_sym_STAR] = ACTIONS(2216), - [anon_sym_default] = ACTIONS(2216), - [anon_sym_type] = ACTIONS(2216), - [anon_sym_as] = ACTIONS(2216), - [anon_sym_namespace] = ACTIONS(2216), - [anon_sym_LBRACE] = ACTIONS(2216), - [anon_sym_COMMA] = ACTIONS(2216), - [anon_sym_RBRACE] = ACTIONS(2216), - [anon_sym_typeof] = ACTIONS(2216), - [anon_sym_import] = ACTIONS(2216), - [anon_sym_with] = ACTIONS(2216), - [anon_sym_var] = ACTIONS(2216), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_const] = ACTIONS(2216), - [anon_sym_BANG] = ACTIONS(2216), - [anon_sym_else] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_switch] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2216), - [anon_sym_await] = ACTIONS(2216), - [anon_sym_in] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2216), - [anon_sym_do] = ACTIONS(2216), - [anon_sym_try] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_debugger] = ACTIONS(2216), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_throw] = ACTIONS(2216), - [anon_sym_SEMI] = ACTIONS(2216), - [anon_sym_case] = ACTIONS(2216), - [anon_sym_yield] = ACTIONS(2216), - [anon_sym_LBRACK] = ACTIONS(2216), - [anon_sym_LTtemplate_GT] = ACTIONS(2216), - [anon_sym_GT] = ACTIONS(2216), - [anon_sym_DOT] = ACTIONS(2216), - [anon_sym_DQUOTE] = ACTIONS(2216), - [anon_sym_SQUOTE] = ACTIONS(2216), - [anon_sym_class] = ACTIONS(2216), - [anon_sym_async] = ACTIONS(2216), - [anon_sym_function] = ACTIONS(2216), - [anon_sym_QMARK_DOT] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2216), - [anon_sym_using] = ACTIONS(2216), - [anon_sym_AMP_AMP] = ACTIONS(2216), - [anon_sym_PIPE_PIPE] = ACTIONS(2216), - [anon_sym_GT_GT] = ACTIONS(2216), - [anon_sym_GT_GT_GT] = ACTIONS(2216), - [anon_sym_LT_LT] = ACTIONS(2216), - [anon_sym_AMP] = ACTIONS(2216), - [anon_sym_CARET] = ACTIONS(2216), - [anon_sym_PIPE] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2216), - [anon_sym_SLASH] = ACTIONS(2216), - [anon_sym_PERCENT] = ACTIONS(2216), - [anon_sym_STAR_STAR] = ACTIONS(2216), - [anon_sym_LT] = ACTIONS(2216), - [anon_sym_LT_EQ] = ACTIONS(2216), - [anon_sym_EQ_EQ] = ACTIONS(2216), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2216), - [anon_sym_BANG_EQ] = ACTIONS(2216), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2216), - [anon_sym_GT_EQ] = ACTIONS(2216), - [anon_sym_QMARK_QMARK] = ACTIONS(2216), - [anon_sym_instanceof] = ACTIONS(2216), - [anon_sym_TILDE] = ACTIONS(2216), - [anon_sym_void] = ACTIONS(2216), - [anon_sym_delete] = ACTIONS(2216), - [anon_sym_PLUS_PLUS] = ACTIONS(2216), - [anon_sym_DASH_DASH] = ACTIONS(2216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2216), - [sym_number] = ACTIONS(2216), - [sym_private_property_identifier] = ACTIONS(2216), - [sym_this] = ACTIONS(2216), - [sym_super] = ACTIONS(2216), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_undefined] = ACTIONS(2216), - [anon_sym_AT] = ACTIONS(2216), - [anon_sym_static] = ACTIONS(2216), - [anon_sym_readonly] = ACTIONS(2216), - [anon_sym_get] = ACTIONS(2216), - [anon_sym_set] = ACTIONS(2216), - [anon_sym_declare] = ACTIONS(2216), - [anon_sym_public] = ACTIONS(2216), - [anon_sym_private] = ACTIONS(2216), - [anon_sym_protected] = ACTIONS(2216), - [anon_sym_override] = ACTIONS(2216), - [anon_sym_module] = ACTIONS(2216), - [anon_sym_any] = ACTIONS(2216), - [anon_sym_number] = ACTIONS(2216), - [anon_sym_boolean] = ACTIONS(2216), - [anon_sym_string] = ACTIONS(2216), - [anon_sym_symbol] = ACTIONS(2216), - [anon_sym_object] = ACTIONS(2216), - [anon_sym_abstract] = ACTIONS(2216), - [anon_sym_satisfies] = ACTIONS(2216), - [anon_sym_interface] = ACTIONS(2216), - [anon_sym_enum] = ACTIONS(2216), - [sym__automatic_semicolon] = ACTIONS(2218), - [sym__ternary_qmark] = ACTIONS(2218), + [sym__automatic_semicolon] = ACTIONS(2208), + [sym__ternary_qmark] = ACTIONS(2210), [sym_html_comment] = ACTIONS(5), }, [315] = { - [sym_statement_block] = STATE(351), [sym_comment] = STATE(315), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_in] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2222), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_QMARK_DOT] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2109), - [anon_sym_PIPE_PIPE] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_GT_GT_GT] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_satisfies] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2113), - [sym__ternary_qmark] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2212), + [anon_sym_export] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_default] = ACTIONS(2212), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_as] = ACTIONS(2214), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_COMMA] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_typeof] = ACTIONS(2212), + [anon_sym_import] = ACTIONS(2212), + [anon_sym_with] = ACTIONS(2212), + [anon_sym_var] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_else] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_await] = ACTIONS(2212), + [anon_sym_in] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_debugger] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_case] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LTtemplate_GT] = ACTIONS(2212), + [anon_sym_GT] = ACTIONS(2214), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_function] = ACTIONS(2212), + [anon_sym_QMARK_DOT] = ACTIONS(2214), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(2214), + [anon_sym_GT_GT] = ACTIONS(2214), + [anon_sym_GT_GT_GT] = ACTIONS(2214), + [anon_sym_LT_LT] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2214), + [anon_sym_CARET] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_SLASH] = ACTIONS(2212), + [anon_sym_PERCENT] = ACTIONS(2214), + [anon_sym_STAR_STAR] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_LT_EQ] = ACTIONS(2214), + [anon_sym_EQ_EQ] = ACTIONS(2214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2214), + [anon_sym_BANG_EQ] = ACTIONS(2214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2214), + [anon_sym_GT_EQ] = ACTIONS(2214), + [anon_sym_QMARK_QMARK] = ACTIONS(2214), + [anon_sym_instanceof] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_void] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2212), + [sym_number] = ACTIONS(2212), + [sym_private_property_identifier] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [sym_null] = ACTIONS(2212), + [sym_undefined] = ACTIONS(2212), + [anon_sym_AT] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_readonly] = ACTIONS(2212), + [anon_sym_get] = ACTIONS(2212), + [anon_sym_set] = ACTIONS(2212), + [anon_sym_declare] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_override] = ACTIONS(2212), + [anon_sym_module] = ACTIONS(2212), + [anon_sym_any] = ACTIONS(2212), + [anon_sym_number] = ACTIONS(2212), + [anon_sym_boolean] = ACTIONS(2212), + [anon_sym_string] = ACTIONS(2212), + [anon_sym_symbol] = ACTIONS(2212), + [anon_sym_object] = ACTIONS(2212), + [anon_sym_abstract] = ACTIONS(2212), + [anon_sym_satisfies] = ACTIONS(2214), + [anon_sym_interface] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [sym__automatic_semicolon] = ACTIONS(2216), + [sym__ternary_qmark] = ACTIONS(2218), [sym_html_comment] = ACTIONS(5), }, [316] = { - [sym_statement_block] = STATE(393), [sym_comment] = STATE(316), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2224), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_in] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_QMARK_DOT] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2109), - [anon_sym_PIPE_PIPE] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_GT_GT_GT] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_satisfies] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2113), - [sym__ternary_qmark] = ACTIONS(2113), - [sym_html_comment] = ACTIONS(5), - }, - [317] = { - [sym_statement_block] = STATE(393), - [sym_comment] = STATE(317), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2224), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_in] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2226), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_QMARK_DOT] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2109), - [anon_sym_PIPE_PIPE] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_GT_GT_GT] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_satisfies] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2113), - [sym__ternary_qmark] = ACTIONS(2113), - [sym_html_comment] = ACTIONS(5), - }, - [318] = { - [sym_comment] = STATE(318), - [sym_identifier] = ACTIONS(2228), - [anon_sym_export] = ACTIONS(2228), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_default] = ACTIONS(2228), - [anon_sym_type] = ACTIONS(2228), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_namespace] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(2228), - [anon_sym_COMMA] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym_typeof] = ACTIONS(2228), - [anon_sym_import] = ACTIONS(2228), - [anon_sym_with] = ACTIONS(2228), - [anon_sym_var] = ACTIONS(2228), - [anon_sym_let] = ACTIONS(2228), - [anon_sym_const] = ACTIONS(2228), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_else] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_switch] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(2228), - [anon_sym_await] = ACTIONS(2228), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2228), - [anon_sym_do] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_debugger] = ACTIONS(2228), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_throw] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2228), - [anon_sym_case] = ACTIONS(2228), - [anon_sym_yield] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2228), - [anon_sym_LTtemplate_GT] = ACTIONS(2228), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_DOT] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_SQUOTE] = ACTIONS(2228), - [anon_sym_class] = ACTIONS(2228), - [anon_sym_async] = ACTIONS(2228), - [anon_sym_function] = ACTIONS(2228), - [anon_sym_QMARK_DOT] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2228), - [anon_sym_using] = ACTIONS(2228), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_CARET] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_SLASH] = ACTIONS(2228), - [anon_sym_PERCENT] = ACTIONS(2230), - [anon_sym_STAR_STAR] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2228), - [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2230), - [anon_sym_GT_EQ] = ACTIONS(2230), - [anon_sym_QMARK_QMARK] = ACTIONS(2230), - [anon_sym_instanceof] = ACTIONS(2230), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_void] = ACTIONS(2228), - [anon_sym_delete] = ACTIONS(2228), - [anon_sym_PLUS_PLUS] = ACTIONS(2228), - [anon_sym_DASH_DASH] = ACTIONS(2228), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2228), - [sym_number] = ACTIONS(2228), - [sym_private_property_identifier] = ACTIONS(2228), - [sym_this] = ACTIONS(2228), - [sym_super] = ACTIONS(2228), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), - [sym_null] = ACTIONS(2228), - [sym_undefined] = ACTIONS(2228), - [anon_sym_AT] = ACTIONS(2228), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_readonly] = ACTIONS(2228), - [anon_sym_get] = ACTIONS(2228), - [anon_sym_set] = ACTIONS(2228), - [anon_sym_declare] = ACTIONS(2228), - [anon_sym_public] = ACTIONS(2228), - [anon_sym_private] = ACTIONS(2228), - [anon_sym_protected] = ACTIONS(2228), - [anon_sym_override] = ACTIONS(2228), - [anon_sym_module] = ACTIONS(2228), - [anon_sym_any] = ACTIONS(2228), - [anon_sym_number] = ACTIONS(2228), - [anon_sym_boolean] = ACTIONS(2228), - [anon_sym_string] = ACTIONS(2228), - [anon_sym_symbol] = ACTIONS(2228), - [anon_sym_object] = ACTIONS(2228), - [anon_sym_abstract] = ACTIONS(2228), - [anon_sym_satisfies] = ACTIONS(2230), - [anon_sym_interface] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(2228), - [sym__automatic_semicolon] = ACTIONS(2232), - [sym__ternary_qmark] = ACTIONS(2234), - [sym_html_comment] = ACTIONS(5), - }, - [319] = { - [sym_statement_block] = STATE(393), - [sym_comment] = STATE(319), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2224), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_in] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2236), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_QMARK_DOT] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2109), - [anon_sym_PIPE_PIPE] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_GT_GT_GT] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_satisfies] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2113), - [sym__ternary_qmark] = ACTIONS(2113), - [sym_html_comment] = ACTIONS(5), - }, - [320] = { - [sym_comment] = STATE(320), - [sym_identifier] = ACTIONS(2238), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2240), - [anon_sym_default] = ACTIONS(2238), - [anon_sym_type] = ACTIONS(2238), - [anon_sym_as] = ACTIONS(2240), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_typeof] = ACTIONS(2238), - [anon_sym_import] = ACTIONS(2238), - [anon_sym_with] = ACTIONS(2238), - [anon_sym_var] = ACTIONS(2238), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_else] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_await] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2240), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_debugger] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_throw] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_case] = ACTIONS(2238), - [anon_sym_yield] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LTtemplate_GT] = ACTIONS(2238), - [anon_sym_GT] = ACTIONS(2240), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2238), - [anon_sym_class] = ACTIONS(2238), - [anon_sym_async] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_QMARK_DOT] = ACTIONS(2240), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_using] = ACTIONS(2238), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2240), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2240), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_instanceof] = ACTIONS(2240), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_void] = ACTIONS(2238), - [anon_sym_delete] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2238), - [sym_number] = ACTIONS(2238), - [sym_private_property_identifier] = ACTIONS(2238), - [sym_this] = ACTIONS(2238), - [sym_super] = ACTIONS(2238), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_null] = ACTIONS(2238), - [sym_undefined] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_readonly] = ACTIONS(2238), - [anon_sym_get] = ACTIONS(2238), - [anon_sym_set] = ACTIONS(2238), - [anon_sym_declare] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_protected] = ACTIONS(2238), - [anon_sym_override] = ACTIONS(2238), - [anon_sym_module] = ACTIONS(2238), - [anon_sym_any] = ACTIONS(2238), - [anon_sym_number] = ACTIONS(2238), - [anon_sym_boolean] = ACTIONS(2238), - [anon_sym_string] = ACTIONS(2238), - [anon_sym_symbol] = ACTIONS(2238), - [anon_sym_object] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_satisfies] = ACTIONS(2240), - [anon_sym_interface] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2242), - [sym__ternary_qmark] = ACTIONS(2244), - [sym_html_comment] = ACTIONS(5), - }, - [321] = { - [sym_comment] = STATE(321), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2246), - [anon_sym_default] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_as] = ACTIONS(2246), - [anon_sym_namespace] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_COMMA] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2246), - [anon_sym_import] = ACTIONS(2246), - [anon_sym_with] = ACTIONS(2246), - [anon_sym_var] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_else] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2246), - [anon_sym_in] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_debugger] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_throw] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_case] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LTtemplate_GT] = ACTIONS(2246), - [anon_sym_GT] = ACTIONS(2246), - [anon_sym_DOT] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_class] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_QMARK_DOT] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(2246), - [anon_sym_AMP_AMP] = ACTIONS(2246), - [anon_sym_PIPE_PIPE] = ACTIONS(2246), - [anon_sym_GT_GT] = ACTIONS(2246), - [anon_sym_GT_GT_GT] = ACTIONS(2246), - [anon_sym_LT_LT] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_PERCENT] = ACTIONS(2246), - [anon_sym_STAR_STAR] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_LT_EQ] = ACTIONS(2246), - [anon_sym_EQ_EQ] = ACTIONS(2246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), - [anon_sym_BANG_EQ] = ACTIONS(2246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), - [anon_sym_GT_EQ] = ACTIONS(2246), - [anon_sym_QMARK_QMARK] = ACTIONS(2246), - [anon_sym_instanceof] = ACTIONS(2246), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2246), - [anon_sym_delete] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_private_property_identifier] = ACTIONS(2246), - [sym_this] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_undefined] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_readonly] = ACTIONS(2246), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_declare] = ACTIONS(2246), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_override] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_any] = ACTIONS(2246), - [anon_sym_number] = ACTIONS(2246), - [anon_sym_boolean] = ACTIONS(2246), - [anon_sym_string] = ACTIONS(2246), - [anon_sym_symbol] = ACTIONS(2246), - [anon_sym_object] = ACTIONS(2246), - [anon_sym_abstract] = ACTIONS(2246), - [anon_sym_satisfies] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), - [sym__automatic_semicolon] = ACTIONS(2248), - [sym__ternary_qmark] = ACTIONS(2248), - [sym_html_comment] = ACTIONS(5), - }, - [322] = { - [sym_comment] = STATE(322), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2144), + [anon_sym_default] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), [anon_sym_as] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), [anon_sym_COMMA] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_else] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), [anon_sym_in] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_case] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_case] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), [anon_sym_GT] = ACTIONS(2142), [anon_sym_DOT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), [anon_sym_QMARK_DOT] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), [anon_sym_AMP_AMP] = ACTIONS(2142), [anon_sym_PIPE_PIPE] = ACTIONS(2142), [anon_sym_GT_GT] = ACTIONS(2142), @@ -74583,12 +73635,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2142), [anon_sym_CARET] = ACTIONS(2142), [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), [anon_sym_PERCENT] = ACTIONS(2142), [anon_sym_STAR_STAR] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2140), + [anon_sym_LT] = ACTIONS(2142), [anon_sym_LT_EQ] = ACTIONS(2142), [anon_sym_EQ_EQ] = ACTIONS(2142), [anon_sym_EQ_EQ_EQ] = ACTIONS(2142), @@ -74597,761 +73649,1427 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2142), [anon_sym_QMARK_QMARK] = ACTIONS(2142), [anon_sym_instanceof] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), [anon_sym_satisfies] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(2250), - [sym__ternary_qmark] = ACTIONS(2148), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(2220), + [sym__ternary_qmark] = ACTIONS(2222), + [sym_html_comment] = ACTIONS(5), + }, + [317] = { + [sym_statement_block] = STATE(383), + [sym_comment] = STATE(317), + [ts_builtin_sym_end] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_as] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_COMMA] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_else] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_in] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(2224), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_QMARK_DOT] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_AMP_AMP] = ACTIONS(2126), + [anon_sym_PIPE_PIPE] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(2126), + [anon_sym_GT_GT_GT] = ACTIONS(2126), + [anon_sym_LT_LT] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_PERCENT] = ACTIONS(2126), + [anon_sym_STAR_STAR] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_LT_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), + [anon_sym_GT_EQ] = ACTIONS(2126), + [anon_sym_QMARK_QMARK] = ACTIONS(2126), + [anon_sym_instanceof] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_satisfies] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [sym__automatic_semicolon] = ACTIONS(2130), + [sym__ternary_qmark] = ACTIONS(2130), + [sym_html_comment] = ACTIONS(5), + }, + [318] = { + [sym_statement_block] = STATE(383), + [sym_comment] = STATE(318), + [ts_builtin_sym_end] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_as] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2200), + [anon_sym_COMMA] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_else] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_in] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_QMARK_DOT] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_AMP_AMP] = ACTIONS(2126), + [anon_sym_PIPE_PIPE] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(2126), + [anon_sym_GT_GT_GT] = ACTIONS(2126), + [anon_sym_LT_LT] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_PERCENT] = ACTIONS(2126), + [anon_sym_STAR_STAR] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_LT_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), + [anon_sym_GT_EQ] = ACTIONS(2126), + [anon_sym_QMARK_QMARK] = ACTIONS(2126), + [anon_sym_instanceof] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_satisfies] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [sym__automatic_semicolon] = ACTIONS(2130), + [sym__ternary_qmark] = ACTIONS(2130), + [sym_html_comment] = ACTIONS(5), + }, + [319] = { + [sym_comment] = STATE(319), + [sym_identifier] = ACTIONS(2226), + [anon_sym_export] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_type] = ACTIONS(2226), + [anon_sym_as] = ACTIONS(2228), + [anon_sym_namespace] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2226), + [anon_sym_COMMA] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_typeof] = ACTIONS(2226), + [anon_sym_import] = ACTIONS(2226), + [anon_sym_with] = ACTIONS(2226), + [anon_sym_var] = ACTIONS(2226), + [anon_sym_let] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_else] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_switch] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_await] = ACTIONS(2226), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_do] = ACTIONS(2226), + [anon_sym_try] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_debugger] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_throw] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2226), + [anon_sym_case] = ACTIONS(2226), + [anon_sym_yield] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_LTtemplate_GT] = ACTIONS(2226), + [anon_sym_GT] = ACTIONS(2228), + [anon_sym_DOT] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2226), + [anon_sym_SQUOTE] = ACTIONS(2226), + [anon_sym_class] = ACTIONS(2226), + [anon_sym_async] = ACTIONS(2226), + [anon_sym_function] = ACTIONS(2226), + [anon_sym_QMARK_DOT] = ACTIONS(2228), + [anon_sym_new] = ACTIONS(2226), + [anon_sym_using] = ACTIONS(2226), + [anon_sym_AMP_AMP] = ACTIONS(2228), + [anon_sym_PIPE_PIPE] = ACTIONS(2228), + [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_GT_GT_GT] = ACTIONS(2228), + [anon_sym_LT_LT] = ACTIONS(2228), + [anon_sym_AMP] = ACTIONS(2228), + [anon_sym_CARET] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_SLASH] = ACTIONS(2226), + [anon_sym_PERCENT] = ACTIONS(2228), + [anon_sym_STAR_STAR] = ACTIONS(2228), + [anon_sym_LT] = ACTIONS(2226), + [anon_sym_LT_EQ] = ACTIONS(2228), + [anon_sym_EQ_EQ] = ACTIONS(2228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2228), + [anon_sym_BANG_EQ] = ACTIONS(2228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2228), + [anon_sym_GT_EQ] = ACTIONS(2228), + [anon_sym_QMARK_QMARK] = ACTIONS(2228), + [anon_sym_instanceof] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_void] = ACTIONS(2226), + [anon_sym_delete] = ACTIONS(2226), + [anon_sym_PLUS_PLUS] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2226), + [sym_number] = ACTIONS(2226), + [sym_private_property_identifier] = ACTIONS(2226), + [sym_this] = ACTIONS(2226), + [sym_super] = ACTIONS(2226), + [sym_true] = ACTIONS(2226), + [sym_false] = ACTIONS(2226), + [sym_null] = ACTIONS(2226), + [sym_undefined] = ACTIONS(2226), + [anon_sym_AT] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2226), + [anon_sym_readonly] = ACTIONS(2226), + [anon_sym_get] = ACTIONS(2226), + [anon_sym_set] = ACTIONS(2226), + [anon_sym_declare] = ACTIONS(2226), + [anon_sym_public] = ACTIONS(2226), + [anon_sym_private] = ACTIONS(2226), + [anon_sym_protected] = ACTIONS(2226), + [anon_sym_override] = ACTIONS(2226), + [anon_sym_module] = ACTIONS(2226), + [anon_sym_any] = ACTIONS(2226), + [anon_sym_number] = ACTIONS(2226), + [anon_sym_boolean] = ACTIONS(2226), + [anon_sym_string] = ACTIONS(2226), + [anon_sym_symbol] = ACTIONS(2226), + [anon_sym_object] = ACTIONS(2226), + [anon_sym_abstract] = ACTIONS(2226), + [anon_sym_satisfies] = ACTIONS(2228), + [anon_sym_interface] = ACTIONS(2226), + [anon_sym_enum] = ACTIONS(2226), + [sym__automatic_semicolon] = ACTIONS(2230), + [sym__ternary_qmark] = ACTIONS(2232), + [sym_html_comment] = ACTIONS(5), + }, + [320] = { + [sym_comment] = STATE(320), + [sym_identifier] = ACTIONS(2234), + [anon_sym_export] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_default] = ACTIONS(2234), + [anon_sym_type] = ACTIONS(2234), + [anon_sym_as] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_COMMA] = ACTIONS(2236), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_typeof] = ACTIONS(2234), + [anon_sym_import] = ACTIONS(2234), + [anon_sym_with] = ACTIONS(2234), + [anon_sym_var] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [anon_sym_BANG] = ACTIONS(2234), + [anon_sym_else] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_switch] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_await] = ACTIONS(2234), + [anon_sym_in] = ACTIONS(2236), + [anon_sym_while] = ACTIONS(2234), + [anon_sym_do] = ACTIONS(2234), + [anon_sym_try] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_debugger] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_throw] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_case] = ACTIONS(2234), + [anon_sym_yield] = ACTIONS(2234), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_LTtemplate_GT] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2236), + [anon_sym_DOT] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_class] = ACTIONS(2234), + [anon_sym_async] = ACTIONS(2234), + [anon_sym_function] = ACTIONS(2234), + [anon_sym_QMARK_DOT] = ACTIONS(2236), + [anon_sym_new] = ACTIONS(2234), + [anon_sym_using] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2236), + [anon_sym_PIPE_PIPE] = ACTIONS(2236), + [anon_sym_GT_GT] = ACTIONS(2236), + [anon_sym_GT_GT_GT] = ACTIONS(2236), + [anon_sym_LT_LT] = ACTIONS(2236), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_CARET] = ACTIONS(2236), + [anon_sym_PIPE] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2236), + [anon_sym_STAR_STAR] = ACTIONS(2236), + [anon_sym_LT] = ACTIONS(2234), + [anon_sym_LT_EQ] = ACTIONS(2236), + [anon_sym_EQ_EQ] = ACTIONS(2236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2236), + [anon_sym_BANG_EQ] = ACTIONS(2236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2236), + [anon_sym_GT_EQ] = ACTIONS(2236), + [anon_sym_QMARK_QMARK] = ACTIONS(2236), + [anon_sym_instanceof] = ACTIONS(2236), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_void] = ACTIONS(2234), + [anon_sym_delete] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2234), + [sym_number] = ACTIONS(2234), + [sym_private_property_identifier] = ACTIONS(2234), + [sym_this] = ACTIONS(2234), + [sym_super] = ACTIONS(2234), + [sym_true] = ACTIONS(2234), + [sym_false] = ACTIONS(2234), + [sym_null] = ACTIONS(2234), + [sym_undefined] = ACTIONS(2234), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_static] = ACTIONS(2234), + [anon_sym_readonly] = ACTIONS(2234), + [anon_sym_get] = ACTIONS(2234), + [anon_sym_set] = ACTIONS(2234), + [anon_sym_declare] = ACTIONS(2234), + [anon_sym_public] = ACTIONS(2234), + [anon_sym_private] = ACTIONS(2234), + [anon_sym_protected] = ACTIONS(2234), + [anon_sym_override] = ACTIONS(2234), + [anon_sym_module] = ACTIONS(2234), + [anon_sym_any] = ACTIONS(2234), + [anon_sym_number] = ACTIONS(2234), + [anon_sym_boolean] = ACTIONS(2234), + [anon_sym_string] = ACTIONS(2234), + [anon_sym_symbol] = ACTIONS(2234), + [anon_sym_object] = ACTIONS(2234), + [anon_sym_abstract] = ACTIONS(2234), + [anon_sym_satisfies] = ACTIONS(2236), + [anon_sym_interface] = ACTIONS(2234), + [anon_sym_enum] = ACTIONS(2234), + [sym__automatic_semicolon] = ACTIONS(2238), + [sym__ternary_qmark] = ACTIONS(2240), + [sym_html_comment] = ACTIONS(5), + }, + [321] = { + [sym_comment] = STATE(321), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_as] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_COMMA] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_in] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_GT] = ACTIONS(2160), + [anon_sym_DOT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_QMARK_DOT] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_AMP_AMP] = ACTIONS(2160), + [anon_sym_PIPE_PIPE] = ACTIONS(2160), + [anon_sym_GT_GT] = ACTIONS(2160), + [anon_sym_GT_GT_GT] = ACTIONS(2160), + [anon_sym_LT_LT] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(2160), + [anon_sym_STAR_STAR] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_LT_EQ] = ACTIONS(2160), + [anon_sym_EQ_EQ] = ACTIONS(2160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2160), + [anon_sym_BANG_EQ] = ACTIONS(2160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2160), + [anon_sym_GT_EQ] = ACTIONS(2160), + [anon_sym_QMARK_QMARK] = ACTIONS(2160), + [anon_sym_instanceof] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_satisfies] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(2164), + [sym__ternary_qmark] = ACTIONS(2164), + [sym_html_comment] = ACTIONS(5), + }, + [322] = { + [sym_comment] = STATE(322), + [sym_identifier] = ACTIONS(2242), + [anon_sym_export] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2242), + [anon_sym_type] = ACTIONS(2242), + [anon_sym_as] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_COMMA] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_typeof] = ACTIONS(2242), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_with] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2242), + [anon_sym_let] = ACTIONS(2242), + [anon_sym_const] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_else] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_switch] = ACTIONS(2242), + [anon_sym_for] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_await] = ACTIONS(2242), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2242), + [anon_sym_do] = ACTIONS(2242), + [anon_sym_try] = ACTIONS(2242), + [anon_sym_break] = ACTIONS(2242), + [anon_sym_continue] = ACTIONS(2242), + [anon_sym_debugger] = ACTIONS(2242), + [anon_sym_return] = ACTIONS(2242), + [anon_sym_throw] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_case] = ACTIONS(2242), + [anon_sym_yield] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_LTtemplate_GT] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_class] = ACTIONS(2242), + [anon_sym_async] = ACTIONS(2242), + [anon_sym_function] = ACTIONS(2242), + [anon_sym_QMARK_DOT] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2242), + [anon_sym_using] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2244), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2244), + [anon_sym_LT_LT] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2242), + [anon_sym_SLASH] = ACTIONS(2242), + [anon_sym_PERCENT] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2242), + [anon_sym_LT_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2244), + [anon_sym_GT_EQ] = ACTIONS(2244), + [anon_sym_QMARK_QMARK] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2242), + [anon_sym_void] = ACTIONS(2242), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2242), + [sym_number] = ACTIONS(2242), + [sym_private_property_identifier] = ACTIONS(2242), + [sym_this] = ACTIONS(2242), + [sym_super] = ACTIONS(2242), + [sym_true] = ACTIONS(2242), + [sym_false] = ACTIONS(2242), + [sym_null] = ACTIONS(2242), + [sym_undefined] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(2242), + [anon_sym_readonly] = ACTIONS(2242), + [anon_sym_get] = ACTIONS(2242), + [anon_sym_set] = ACTIONS(2242), + [anon_sym_declare] = ACTIONS(2242), + [anon_sym_public] = ACTIONS(2242), + [anon_sym_private] = ACTIONS(2242), + [anon_sym_protected] = ACTIONS(2242), + [anon_sym_override] = ACTIONS(2242), + [anon_sym_module] = ACTIONS(2242), + [anon_sym_any] = ACTIONS(2242), + [anon_sym_number] = ACTIONS(2242), + [anon_sym_boolean] = ACTIONS(2242), + [anon_sym_string] = ACTIONS(2242), + [anon_sym_symbol] = ACTIONS(2242), + [anon_sym_object] = ACTIONS(2242), + [anon_sym_abstract] = ACTIONS(2242), + [anon_sym_satisfies] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2242), + [anon_sym_enum] = ACTIONS(2242), + [sym__automatic_semicolon] = ACTIONS(2246), + [sym__ternary_qmark] = ACTIONS(2248), [sym_html_comment] = ACTIONS(5), }, [323] = { [sym_comment] = STATE(323), - [sym_identifier] = ACTIONS(2252), - [anon_sym_export] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2252), - [anon_sym_default] = ACTIONS(2252), - [anon_sym_type] = ACTIONS(2252), - [anon_sym_as] = ACTIONS(2252), - [anon_sym_namespace] = ACTIONS(2252), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_COMMA] = ACTIONS(2252), - [anon_sym_RBRACE] = ACTIONS(2252), - [anon_sym_typeof] = ACTIONS(2252), - [anon_sym_import] = ACTIONS(2252), - [anon_sym_with] = ACTIONS(2252), - [anon_sym_var] = ACTIONS(2252), - [anon_sym_let] = ACTIONS(2252), - [anon_sym_const] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(2252), - [anon_sym_else] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_switch] = ACTIONS(2252), - [anon_sym_for] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_await] = ACTIONS(2252), - [anon_sym_in] = ACTIONS(2252), - [anon_sym_while] = ACTIONS(2252), - [anon_sym_do] = ACTIONS(2252), - [anon_sym_try] = ACTIONS(2252), - [anon_sym_break] = ACTIONS(2252), - [anon_sym_continue] = ACTIONS(2252), - [anon_sym_debugger] = ACTIONS(2252), - [anon_sym_return] = ACTIONS(2252), - [anon_sym_throw] = ACTIONS(2252), - [anon_sym_SEMI] = ACTIONS(2252), - [anon_sym_case] = ACTIONS(2252), - [anon_sym_yield] = ACTIONS(2252), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_LTtemplate_GT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_DQUOTE] = ACTIONS(2252), - [anon_sym_SQUOTE] = ACTIONS(2252), - [anon_sym_class] = ACTIONS(2252), - [anon_sym_async] = ACTIONS(2252), - [anon_sym_function] = ACTIONS(2252), - [anon_sym_QMARK_DOT] = ACTIONS(2252), - [anon_sym_new] = ACTIONS(2252), - [anon_sym_using] = ACTIONS(2252), - [anon_sym_AMP_AMP] = ACTIONS(2252), - [anon_sym_PIPE_PIPE] = ACTIONS(2252), - [anon_sym_GT_GT] = ACTIONS(2252), - [anon_sym_GT_GT_GT] = ACTIONS(2252), - [anon_sym_LT_LT] = ACTIONS(2252), - [anon_sym_AMP] = ACTIONS(2252), - [anon_sym_CARET] = ACTIONS(2252), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_PLUS] = ACTIONS(2252), - [anon_sym_DASH] = ACTIONS(2252), - [anon_sym_SLASH] = ACTIONS(2252), - [anon_sym_PERCENT] = ACTIONS(2252), - [anon_sym_STAR_STAR] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2252), - [anon_sym_EQ_EQ] = ACTIONS(2252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2252), - [anon_sym_BANG_EQ] = ACTIONS(2252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2252), - [anon_sym_GT_EQ] = ACTIONS(2252), - [anon_sym_QMARK_QMARK] = ACTIONS(2252), - [anon_sym_instanceof] = ACTIONS(2252), - [anon_sym_TILDE] = ACTIONS(2252), - [anon_sym_void] = ACTIONS(2252), - [anon_sym_delete] = ACTIONS(2252), - [anon_sym_PLUS_PLUS] = ACTIONS(2252), - [anon_sym_DASH_DASH] = ACTIONS(2252), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2252), - [sym_number] = ACTIONS(2252), - [sym_private_property_identifier] = ACTIONS(2252), - [sym_this] = ACTIONS(2252), - [sym_super] = ACTIONS(2252), - [sym_true] = ACTIONS(2252), - [sym_false] = ACTIONS(2252), - [sym_null] = ACTIONS(2252), - [sym_undefined] = ACTIONS(2252), - [anon_sym_AT] = ACTIONS(2252), - [anon_sym_static] = ACTIONS(2252), - [anon_sym_readonly] = ACTIONS(2252), - [anon_sym_get] = ACTIONS(2252), - [anon_sym_set] = ACTIONS(2252), - [anon_sym_declare] = ACTIONS(2252), - [anon_sym_public] = ACTIONS(2252), - [anon_sym_private] = ACTIONS(2252), - [anon_sym_protected] = ACTIONS(2252), - [anon_sym_override] = ACTIONS(2252), - [anon_sym_module] = ACTIONS(2252), - [anon_sym_any] = ACTIONS(2252), - [anon_sym_number] = ACTIONS(2252), - [anon_sym_boolean] = ACTIONS(2252), - [anon_sym_string] = ACTIONS(2252), - [anon_sym_symbol] = ACTIONS(2252), - [anon_sym_object] = ACTIONS(2252), - [anon_sym_abstract] = ACTIONS(2252), - [anon_sym_satisfies] = ACTIONS(2252), - [anon_sym_interface] = ACTIONS(2252), - [anon_sym_enum] = ACTIONS(2252), - [sym__automatic_semicolon] = ACTIONS(2254), - [sym__ternary_qmark] = ACTIONS(2254), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2250), + [anon_sym_default] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_as] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_COMMA] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_else] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_in] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_case] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2250), + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_QMARK_DOT] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2250), + [anon_sym_GT_GT] = ACTIONS(2250), + [anon_sym_GT_GT_GT] = ACTIONS(2250), + [anon_sym_LT_LT] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2250), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_PERCENT] = ACTIONS(2250), + [anon_sym_STAR_STAR] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_LT_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2250), + [anon_sym_BANG_EQ] = ACTIONS(2250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2250), + [anon_sym_GT_EQ] = ACTIONS(2250), + [anon_sym_QMARK_QMARK] = ACTIONS(2250), + [anon_sym_instanceof] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_satisfies] = ACTIONS(2250), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [sym__automatic_semicolon] = ACTIONS(2252), + [sym__ternary_qmark] = ACTIONS(2252), [sym_html_comment] = ACTIONS(5), }, [324] = { - [sym_statement_block] = STATE(351), + [sym_statement_block] = STATE(388), [sym_comment] = STATE(324), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_in] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2256), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_QMARK_DOT] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2109), - [anon_sym_PIPE_PIPE] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_GT_GT_GT] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_satisfies] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2113), - [sym__ternary_qmark] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_as] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_COMMA] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_in] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_case] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_QMARK_DOT] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_AMP_AMP] = ACTIONS(2126), + [anon_sym_PIPE_PIPE] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(2126), + [anon_sym_GT_GT_GT] = ACTIONS(2126), + [anon_sym_LT_LT] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_PERCENT] = ACTIONS(2126), + [anon_sym_STAR_STAR] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_LT_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), + [anon_sym_GT_EQ] = ACTIONS(2126), + [anon_sym_QMARK_QMARK] = ACTIONS(2126), + [anon_sym_instanceof] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_satisfies] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [sym__automatic_semicolon] = ACTIONS(2130), + [sym__ternary_qmark] = ACTIONS(2130), [sym_html_comment] = ACTIONS(5), }, [325] = { - [sym_statement_block] = STATE(351), + [sym_statement_block] = STATE(388), [sym_comment] = STATE(325), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2220), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_in] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_QMARK_DOT] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2109), - [anon_sym_PIPE_PIPE] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_GT_GT_GT] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_satisfies] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2113), - [sym__ternary_qmark] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_as] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_COMMA] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_in] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_case] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(2256), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_QMARK_DOT] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_AMP_AMP] = ACTIONS(2126), + [anon_sym_PIPE_PIPE] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(2126), + [anon_sym_GT_GT_GT] = ACTIONS(2126), + [anon_sym_LT_LT] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_PERCENT] = ACTIONS(2126), + [anon_sym_STAR_STAR] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_LT_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), + [anon_sym_GT_EQ] = ACTIONS(2126), + [anon_sym_QMARK_QMARK] = ACTIONS(2126), + [anon_sym_instanceof] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_satisfies] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [sym__automatic_semicolon] = ACTIONS(2130), + [sym__ternary_qmark] = ACTIONS(2130), [sym_html_comment] = ACTIONS(5), }, [326] = { + [sym_statement_block] = STATE(388), [sym_comment] = STATE(326), - [sym_identifier] = ACTIONS(2258), - [anon_sym_export] = ACTIONS(2258), - [anon_sym_STAR] = ACTIONS(2258), - [anon_sym_default] = ACTIONS(2258), - [anon_sym_type] = ACTIONS(2258), - [anon_sym_as] = ACTIONS(2258), - [anon_sym_namespace] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_COMMA] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2258), - [anon_sym_import] = ACTIONS(2258), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_var] = ACTIONS(2258), - [anon_sym_let] = ACTIONS(2258), - [anon_sym_const] = ACTIONS(2258), - [anon_sym_BANG] = ACTIONS(2258), - [anon_sym_else] = ACTIONS(2258), - [anon_sym_if] = ACTIONS(2258), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_for] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_await] = ACTIONS(2258), - [anon_sym_in] = ACTIONS(2258), - [anon_sym_while] = ACTIONS(2258), - [anon_sym_do] = ACTIONS(2258), - [anon_sym_try] = ACTIONS(2258), - [anon_sym_break] = ACTIONS(2258), - [anon_sym_continue] = ACTIONS(2258), - [anon_sym_debugger] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(2258), - [anon_sym_throw] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2258), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_LTtemplate_GT] = ACTIONS(2258), - [anon_sym_GT] = ACTIONS(2258), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_as] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2254), + [anon_sym_COMMA] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_in] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_case] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_GT] = ACTIONS(2126), [anon_sym_DOT] = ACTIONS(2258), - [anon_sym_DQUOTE] = ACTIONS(2258), - [anon_sym_SQUOTE] = ACTIONS(2258), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2258), - [anon_sym_function] = ACTIONS(2258), - [anon_sym_QMARK_DOT] = ACTIONS(2258), - [anon_sym_new] = ACTIONS(2258), - [anon_sym_using] = ACTIONS(2258), - [anon_sym_AMP_AMP] = ACTIONS(2258), - [anon_sym_PIPE_PIPE] = ACTIONS(2258), - [anon_sym_GT_GT] = ACTIONS(2258), - [anon_sym_GT_GT_GT] = ACTIONS(2258), - [anon_sym_LT_LT] = ACTIONS(2258), - [anon_sym_AMP] = ACTIONS(2258), - [anon_sym_CARET] = ACTIONS(2258), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2258), - [anon_sym_PERCENT] = ACTIONS(2258), - [anon_sym_STAR_STAR] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2258), - [anon_sym_LT_EQ] = ACTIONS(2258), - [anon_sym_EQ_EQ] = ACTIONS(2258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2258), - [anon_sym_BANG_EQ] = ACTIONS(2258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2258), - [anon_sym_GT_EQ] = ACTIONS(2258), - [anon_sym_QMARK_QMARK] = ACTIONS(2258), - [anon_sym_instanceof] = ACTIONS(2258), - [anon_sym_TILDE] = ACTIONS(2258), - [anon_sym_void] = ACTIONS(2258), - [anon_sym_delete] = ACTIONS(2258), - [anon_sym_PLUS_PLUS] = ACTIONS(2258), - [anon_sym_DASH_DASH] = ACTIONS(2258), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2258), - [sym_number] = ACTIONS(2258), - [sym_private_property_identifier] = ACTIONS(2258), - [sym_this] = ACTIONS(2258), - [sym_super] = ACTIONS(2258), - [sym_true] = ACTIONS(2258), - [sym_false] = ACTIONS(2258), - [sym_null] = ACTIONS(2258), - [sym_undefined] = ACTIONS(2258), - [anon_sym_AT] = ACTIONS(2258), - [anon_sym_static] = ACTIONS(2258), - [anon_sym_readonly] = ACTIONS(2258), - [anon_sym_get] = ACTIONS(2258), - [anon_sym_set] = ACTIONS(2258), - [anon_sym_declare] = ACTIONS(2258), - [anon_sym_public] = ACTIONS(2258), - [anon_sym_private] = ACTIONS(2258), - [anon_sym_protected] = ACTIONS(2258), - [anon_sym_override] = ACTIONS(2258), - [anon_sym_module] = ACTIONS(2258), - [anon_sym_any] = ACTIONS(2258), - [anon_sym_number] = ACTIONS(2258), - [anon_sym_boolean] = ACTIONS(2258), - [anon_sym_string] = ACTIONS(2258), - [anon_sym_symbol] = ACTIONS(2258), - [anon_sym_object] = ACTIONS(2258), - [anon_sym_abstract] = ACTIONS(2258), - [anon_sym_satisfies] = ACTIONS(2258), - [anon_sym_interface] = ACTIONS(2258), - [anon_sym_enum] = ACTIONS(2258), - [sym__automatic_semicolon] = ACTIONS(2260), - [sym__ternary_qmark] = ACTIONS(2260), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_QMARK_DOT] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_AMP_AMP] = ACTIONS(2126), + [anon_sym_PIPE_PIPE] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(2126), + [anon_sym_GT_GT_GT] = ACTIONS(2126), + [anon_sym_LT_LT] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_PERCENT] = ACTIONS(2126), + [anon_sym_STAR_STAR] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_LT_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), + [anon_sym_GT_EQ] = ACTIONS(2126), + [anon_sym_QMARK_QMARK] = ACTIONS(2126), + [anon_sym_instanceof] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_satisfies] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [sym__automatic_semicolon] = ACTIONS(2130), + [sym__ternary_qmark] = ACTIONS(2130), [sym_html_comment] = ACTIONS(5), }, [327] = { [sym_comment] = STATE(327), - [sym_identifier] = ACTIONS(2262), - [anon_sym_export] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(2262), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_type] = ACTIONS(2262), - [anon_sym_as] = ACTIONS(2262), - [anon_sym_namespace] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_COMMA] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_import] = ACTIONS(2262), - [anon_sym_with] = ACTIONS(2262), - [anon_sym_var] = ACTIONS(2262), - [anon_sym_let] = ACTIONS(2262), - [anon_sym_const] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_else] = ACTIONS(2262), - [anon_sym_if] = ACTIONS(2262), - [anon_sym_switch] = ACTIONS(2262), - [anon_sym_for] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_await] = ACTIONS(2262), - [anon_sym_in] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2262), - [anon_sym_do] = ACTIONS(2262), - [anon_sym_try] = ACTIONS(2262), - [anon_sym_break] = ACTIONS(2262), - [anon_sym_continue] = ACTIONS(2262), - [anon_sym_debugger] = ACTIONS(2262), - [anon_sym_return] = ACTIONS(2262), - [anon_sym_throw] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_case] = ACTIONS(2262), - [anon_sym_yield] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_LTtemplate_GT] = ACTIONS(2262), - [anon_sym_GT] = ACTIONS(2262), - [anon_sym_DOT] = ACTIONS(2262), - [anon_sym_DQUOTE] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(2262), - [anon_sym_class] = ACTIONS(2262), - [anon_sym_async] = ACTIONS(2262), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_QMARK_DOT] = ACTIONS(2262), - [anon_sym_new] = ACTIONS(2262), - [anon_sym_using] = ACTIONS(2262), - [anon_sym_AMP_AMP] = ACTIONS(2262), - [anon_sym_PIPE_PIPE] = ACTIONS(2262), - [anon_sym_GT_GT] = ACTIONS(2262), - [anon_sym_GT_GT_GT] = ACTIONS(2262), - [anon_sym_LT_LT] = ACTIONS(2262), - [anon_sym_AMP] = ACTIONS(2262), - [anon_sym_CARET] = ACTIONS(2262), - [anon_sym_PIPE] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_SLASH] = ACTIONS(2262), - [anon_sym_PERCENT] = ACTIONS(2262), - [anon_sym_STAR_STAR] = ACTIONS(2262), - [anon_sym_LT] = ACTIONS(2262), - [anon_sym_LT_EQ] = ACTIONS(2262), - [anon_sym_EQ_EQ] = ACTIONS(2262), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2262), - [anon_sym_BANG_EQ] = ACTIONS(2262), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2262), - [anon_sym_GT_EQ] = ACTIONS(2262), - [anon_sym_QMARK_QMARK] = ACTIONS(2262), - [anon_sym_instanceof] = ACTIONS(2262), - [anon_sym_TILDE] = ACTIONS(2262), - [anon_sym_void] = ACTIONS(2262), - [anon_sym_delete] = ACTIONS(2262), - [anon_sym_PLUS_PLUS] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(2262), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2262), - [sym_number] = ACTIONS(2262), - [sym_private_property_identifier] = ACTIONS(2262), - [sym_this] = ACTIONS(2262), - [sym_super] = ACTIONS(2262), - [sym_true] = ACTIONS(2262), - [sym_false] = ACTIONS(2262), - [sym_null] = ACTIONS(2262), - [sym_undefined] = ACTIONS(2262), - [anon_sym_AT] = ACTIONS(2262), - [anon_sym_static] = ACTIONS(2262), - [anon_sym_readonly] = ACTIONS(2262), - [anon_sym_get] = ACTIONS(2262), - [anon_sym_set] = ACTIONS(2262), - [anon_sym_declare] = ACTIONS(2262), - [anon_sym_public] = ACTIONS(2262), - [anon_sym_private] = ACTIONS(2262), - [anon_sym_protected] = ACTIONS(2262), - [anon_sym_override] = ACTIONS(2262), - [anon_sym_module] = ACTIONS(2262), - [anon_sym_any] = ACTIONS(2262), - [anon_sym_number] = ACTIONS(2262), - [anon_sym_boolean] = ACTIONS(2262), - [anon_sym_string] = ACTIONS(2262), - [anon_sym_symbol] = ACTIONS(2262), - [anon_sym_object] = ACTIONS(2262), - [anon_sym_abstract] = ACTIONS(2262), - [anon_sym_satisfies] = ACTIONS(2262), - [anon_sym_interface] = ACTIONS(2262), - [anon_sym_enum] = ACTIONS(2262), - [sym__automatic_semicolon] = ACTIONS(2264), - [sym__ternary_qmark] = ACTIONS(2264), + [sym_identifier] = ACTIONS(2260), + [anon_sym_export] = ACTIONS(2260), + [anon_sym_STAR] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2260), + [anon_sym_type] = ACTIONS(2260), + [anon_sym_as] = ACTIONS(2260), + [anon_sym_namespace] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_typeof] = ACTIONS(2260), + [anon_sym_import] = ACTIONS(2260), + [anon_sym_with] = ACTIONS(2260), + [anon_sym_var] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [anon_sym_BANG] = ACTIONS(2260), + [anon_sym_else] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_switch] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_await] = ACTIONS(2260), + [anon_sym_in] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), + [anon_sym_try] = ACTIONS(2260), + [anon_sym_break] = ACTIONS(2260), + [anon_sym_continue] = ACTIONS(2260), + [anon_sym_debugger] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_throw] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_yield] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_LTtemplate_GT] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2260), + [anon_sym_DOT] = ACTIONS(2260), + [anon_sym_DQUOTE] = ACTIONS(2260), + [anon_sym_SQUOTE] = ACTIONS(2260), + [anon_sym_class] = ACTIONS(2260), + [anon_sym_async] = ACTIONS(2260), + [anon_sym_function] = ACTIONS(2260), + [anon_sym_QMARK_DOT] = ACTIONS(2260), + [anon_sym_new] = ACTIONS(2260), + [anon_sym_using] = ACTIONS(2260), + [anon_sym_AMP_AMP] = ACTIONS(2260), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(2260), + [anon_sym_GT_GT_GT] = ACTIONS(2260), + [anon_sym_LT_LT] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2260), + [anon_sym_CARET] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2260), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2260), + [anon_sym_PERCENT] = ACTIONS(2260), + [anon_sym_STAR_STAR] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2260), + [anon_sym_LT_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), + [anon_sym_BANG_EQ] = ACTIONS(2260), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), + [anon_sym_GT_EQ] = ACTIONS(2260), + [anon_sym_QMARK_QMARK] = ACTIONS(2260), + [anon_sym_instanceof] = ACTIONS(2260), + [anon_sym_TILDE] = ACTIONS(2260), + [anon_sym_void] = ACTIONS(2260), + [anon_sym_delete] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2260), + [sym_number] = ACTIONS(2260), + [sym_private_property_identifier] = ACTIONS(2260), + [sym_this] = ACTIONS(2260), + [sym_super] = ACTIONS(2260), + [sym_true] = ACTIONS(2260), + [sym_false] = ACTIONS(2260), + [sym_null] = ACTIONS(2260), + [sym_undefined] = ACTIONS(2260), + [anon_sym_AT] = ACTIONS(2260), + [anon_sym_static] = ACTIONS(2260), + [anon_sym_readonly] = ACTIONS(2260), + [anon_sym_get] = ACTIONS(2260), + [anon_sym_set] = ACTIONS(2260), + [anon_sym_declare] = ACTIONS(2260), + [anon_sym_public] = ACTIONS(2260), + [anon_sym_private] = ACTIONS(2260), + [anon_sym_protected] = ACTIONS(2260), + [anon_sym_override] = ACTIONS(2260), + [anon_sym_module] = ACTIONS(2260), + [anon_sym_any] = ACTIONS(2260), + [anon_sym_number] = ACTIONS(2260), + [anon_sym_boolean] = ACTIONS(2260), + [anon_sym_string] = ACTIONS(2260), + [anon_sym_symbol] = ACTIONS(2260), + [anon_sym_object] = ACTIONS(2260), + [anon_sym_abstract] = ACTIONS(2260), + [anon_sym_satisfies] = ACTIONS(2260), + [anon_sym_interface] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), + [sym__automatic_semicolon] = ACTIONS(2262), + [sym__ternary_qmark] = ACTIONS(2262), [sym_html_comment] = ACTIONS(5), }, [328] = { [sym_comment] = STATE(328), - [sym_identifier] = ACTIONS(2266), - [anon_sym_export] = ACTIONS(2266), - [anon_sym_STAR] = ACTIONS(2268), - [anon_sym_default] = ACTIONS(2266), - [anon_sym_type] = ACTIONS(2266), - [anon_sym_as] = ACTIONS(2268), - [anon_sym_namespace] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(2266), - [anon_sym_COMMA] = ACTIONS(2268), - [anon_sym_RBRACE] = ACTIONS(2266), - [anon_sym_typeof] = ACTIONS(2266), - [anon_sym_import] = ACTIONS(2266), - [anon_sym_with] = ACTIONS(2266), - [anon_sym_var] = ACTIONS(2266), - [anon_sym_let] = ACTIONS(2266), - [anon_sym_const] = ACTIONS(2266), - [anon_sym_BANG] = ACTIONS(2266), - [anon_sym_else] = ACTIONS(2266), - [anon_sym_if] = ACTIONS(2266), - [anon_sym_switch] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2266), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_await] = ACTIONS(2266), - [anon_sym_in] = ACTIONS(2268), - [anon_sym_while] = ACTIONS(2266), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_try] = ACTIONS(2266), - [anon_sym_break] = ACTIONS(2266), - [anon_sym_continue] = ACTIONS(2266), - [anon_sym_debugger] = ACTIONS(2266), - [anon_sym_return] = ACTIONS(2266), - [anon_sym_throw] = ACTIONS(2266), - [anon_sym_SEMI] = ACTIONS(2266), - [anon_sym_case] = ACTIONS(2266), - [anon_sym_yield] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2266), - [anon_sym_LTtemplate_GT] = ACTIONS(2266), - [anon_sym_GT] = ACTIONS(2268), - [anon_sym_DOT] = ACTIONS(2268), - [anon_sym_DQUOTE] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2266), - [anon_sym_class] = ACTIONS(2266), - [anon_sym_async] = ACTIONS(2266), - [anon_sym_function] = ACTIONS(2266), - [anon_sym_QMARK_DOT] = ACTIONS(2268), - [anon_sym_new] = ACTIONS(2266), - [anon_sym_using] = ACTIONS(2266), - [anon_sym_AMP_AMP] = ACTIONS(2268), - [anon_sym_PIPE_PIPE] = ACTIONS(2268), - [anon_sym_GT_GT] = ACTIONS(2268), - [anon_sym_GT_GT_GT] = ACTIONS(2268), - [anon_sym_LT_LT] = ACTIONS(2268), - [anon_sym_AMP] = ACTIONS(2268), - [anon_sym_CARET] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2268), - [anon_sym_PLUS] = ACTIONS(2266), - [anon_sym_DASH] = ACTIONS(2266), - [anon_sym_SLASH] = ACTIONS(2266), - [anon_sym_PERCENT] = ACTIONS(2268), - [anon_sym_STAR_STAR] = ACTIONS(2268), - [anon_sym_LT] = ACTIONS(2266), - [anon_sym_LT_EQ] = ACTIONS(2268), - [anon_sym_EQ_EQ] = ACTIONS(2268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2268), - [anon_sym_BANG_EQ] = ACTIONS(2268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2268), - [anon_sym_GT_EQ] = ACTIONS(2268), - [anon_sym_QMARK_QMARK] = ACTIONS(2268), - [anon_sym_instanceof] = ACTIONS(2268), - [anon_sym_TILDE] = ACTIONS(2266), - [anon_sym_void] = ACTIONS(2266), - [anon_sym_delete] = ACTIONS(2266), - [anon_sym_PLUS_PLUS] = ACTIONS(2266), - [anon_sym_DASH_DASH] = ACTIONS(2266), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2266), - [sym_number] = ACTIONS(2266), - [sym_private_property_identifier] = ACTIONS(2266), - [sym_this] = ACTIONS(2266), - [sym_super] = ACTIONS(2266), - [sym_true] = ACTIONS(2266), - [sym_false] = ACTIONS(2266), - [sym_null] = ACTIONS(2266), - [sym_undefined] = ACTIONS(2266), - [anon_sym_AT] = ACTIONS(2266), - [anon_sym_static] = ACTIONS(2266), - [anon_sym_readonly] = ACTIONS(2266), - [anon_sym_get] = ACTIONS(2266), - [anon_sym_set] = ACTIONS(2266), - [anon_sym_declare] = ACTIONS(2266), - [anon_sym_public] = ACTIONS(2266), - [anon_sym_private] = ACTIONS(2266), - [anon_sym_protected] = ACTIONS(2266), - [anon_sym_override] = ACTIONS(2266), - [anon_sym_module] = ACTIONS(2266), - [anon_sym_any] = ACTIONS(2266), - [anon_sym_number] = ACTIONS(2266), - [anon_sym_boolean] = ACTIONS(2266), - [anon_sym_string] = ACTIONS(2266), - [anon_sym_symbol] = ACTIONS(2266), - [anon_sym_object] = ACTIONS(2266), - [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(2268), - [anon_sym_interface] = ACTIONS(2266), - [anon_sym_enum] = ACTIONS(2266), - [sym__automatic_semicolon] = ACTIONS(2270), - [sym__ternary_qmark] = ACTIONS(2272), + [sym_identifier] = ACTIONS(2264), + [anon_sym_export] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(2266), + [anon_sym_default] = ACTIONS(2264), + [anon_sym_type] = ACTIONS(2264), + [anon_sym_as] = ACTIONS(2266), + [anon_sym_namespace] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2264), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_RBRACE] = ACTIONS(2264), + [anon_sym_typeof] = ACTIONS(2264), + [anon_sym_import] = ACTIONS(2264), + [anon_sym_with] = ACTIONS(2264), + [anon_sym_var] = ACTIONS(2264), + [anon_sym_let] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_BANG] = ACTIONS(2264), + [anon_sym_else] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_switch] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2264), + [anon_sym_await] = ACTIONS(2264), + [anon_sym_in] = ACTIONS(2266), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2264), + [anon_sym_try] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_debugger] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_throw] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym_case] = ACTIONS(2264), + [anon_sym_yield] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_LTtemplate_GT] = ACTIONS(2264), + [anon_sym_GT] = ACTIONS(2266), + [anon_sym_DOT] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(2264), + [anon_sym_SQUOTE] = ACTIONS(2264), + [anon_sym_class] = ACTIONS(2264), + [anon_sym_async] = ACTIONS(2264), + [anon_sym_function] = ACTIONS(2264), + [anon_sym_QMARK_DOT] = ACTIONS(2266), + [anon_sym_new] = ACTIONS(2264), + [anon_sym_using] = ACTIONS(2264), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_GT_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_AMP] = ACTIONS(2266), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(2266), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_SLASH] = ACTIONS(2264), + [anon_sym_PERCENT] = ACTIONS(2266), + [anon_sym_STAR_STAR] = ACTIONS(2266), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_LT_EQ] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2266), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_QMARK_QMARK] = ACTIONS(2266), + [anon_sym_instanceof] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2264), + [anon_sym_void] = ACTIONS(2264), + [anon_sym_delete] = ACTIONS(2264), + [anon_sym_PLUS_PLUS] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(2264), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2264), + [sym_number] = ACTIONS(2264), + [sym_private_property_identifier] = ACTIONS(2264), + [sym_this] = ACTIONS(2264), + [sym_super] = ACTIONS(2264), + [sym_true] = ACTIONS(2264), + [sym_false] = ACTIONS(2264), + [sym_null] = ACTIONS(2264), + [sym_undefined] = ACTIONS(2264), + [anon_sym_AT] = ACTIONS(2264), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_readonly] = ACTIONS(2264), + [anon_sym_get] = ACTIONS(2264), + [anon_sym_set] = ACTIONS(2264), + [anon_sym_declare] = ACTIONS(2264), + [anon_sym_public] = ACTIONS(2264), + [anon_sym_private] = ACTIONS(2264), + [anon_sym_protected] = ACTIONS(2264), + [anon_sym_override] = ACTIONS(2264), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_any] = ACTIONS(2264), + [anon_sym_number] = ACTIONS(2264), + [anon_sym_boolean] = ACTIONS(2264), + [anon_sym_string] = ACTIONS(2264), + [anon_sym_symbol] = ACTIONS(2264), + [anon_sym_object] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2264), + [anon_sym_satisfies] = ACTIONS(2266), + [anon_sym_interface] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + [sym__automatic_semicolon] = ACTIONS(2268), + [sym__ternary_qmark] = ACTIONS(2270), [sym_html_comment] = ACTIONS(5), }, [329] = { [sym_comment] = STATE(329), - [sym_identifier] = ACTIONS(2274), - [anon_sym_export] = ACTIONS(2274), + [sym_identifier] = ACTIONS(2272), + [anon_sym_export] = ACTIONS(2272), [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_default] = ACTIONS(2274), - [anon_sym_type] = ACTIONS(2274), + [anon_sym_default] = ACTIONS(2272), + [anon_sym_type] = ACTIONS(2272), [anon_sym_as] = ACTIONS(2274), - [anon_sym_namespace] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2274), + [anon_sym_namespace] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2272), [anon_sym_COMMA] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_typeof] = ACTIONS(2274), - [anon_sym_import] = ACTIONS(2274), - [anon_sym_with] = ACTIONS(2274), - [anon_sym_var] = ACTIONS(2274), - [anon_sym_let] = ACTIONS(2274), - [anon_sym_const] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2274), - [anon_sym_else] = ACTIONS(2274), - [anon_sym_if] = ACTIONS(2274), - [anon_sym_switch] = ACTIONS(2274), - [anon_sym_for] = ACTIONS(2274), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_await] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_typeof] = ACTIONS(2272), + [anon_sym_import] = ACTIONS(2272), + [anon_sym_with] = ACTIONS(2272), + [anon_sym_var] = ACTIONS(2272), + [anon_sym_let] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [anon_sym_BANG] = ACTIONS(2272), + [anon_sym_else] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_switch] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_await] = ACTIONS(2272), [anon_sym_in] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2274), - [anon_sym_do] = ACTIONS(2274), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_break] = ACTIONS(2274), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_debugger] = ACTIONS(2274), - [anon_sym_return] = ACTIONS(2274), - [anon_sym_throw] = ACTIONS(2274), - [anon_sym_SEMI] = ACTIONS(2274), - [anon_sym_case] = ACTIONS(2274), - [anon_sym_yield] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_LTtemplate_GT] = ACTIONS(2274), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_debugger] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_throw] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_case] = ACTIONS(2272), + [anon_sym_yield] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_LTtemplate_GT] = ACTIONS(2272), [anon_sym_GT] = ACTIONS(2274), [anon_sym_DOT] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [anon_sym_SQUOTE] = ACTIONS(2274), - [anon_sym_class] = ACTIONS(2274), - [anon_sym_async] = ACTIONS(2274), - [anon_sym_function] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_class] = ACTIONS(2272), + [anon_sym_async] = ACTIONS(2272), + [anon_sym_function] = ACTIONS(2272), [anon_sym_QMARK_DOT] = ACTIONS(2274), - [anon_sym_new] = ACTIONS(2274), - [anon_sym_using] = ACTIONS(2274), + [anon_sym_new] = ACTIONS(2272), + [anon_sym_using] = ACTIONS(2272), [anon_sym_AMP_AMP] = ACTIONS(2274), [anon_sym_PIPE_PIPE] = ACTIONS(2274), [anon_sym_GT_GT] = ACTIONS(2274), @@ -75360,12 +75078,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2274), [anon_sym_CARET] = ACTIONS(2274), [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_SLASH] = ACTIONS(2274), + [anon_sym_PLUS] = ACTIONS(2272), + [anon_sym_DASH] = ACTIONS(2272), + [anon_sym_SLASH] = ACTIONS(2272), [anon_sym_PERCENT] = ACTIONS(2274), [anon_sym_STAR_STAR] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2272), [anon_sym_LT_EQ] = ACTIONS(2274), [anon_sym_EQ_EQ] = ACTIONS(2274), [anon_sym_EQ_EQ_EQ] = ACTIONS(2274), @@ -75374,159 +75092,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2274), [anon_sym_QMARK_QMARK] = ACTIONS(2274), [anon_sym_instanceof] = ACTIONS(2274), - [anon_sym_TILDE] = ACTIONS(2274), - [anon_sym_void] = ACTIONS(2274), - [anon_sym_delete] = ACTIONS(2274), - [anon_sym_PLUS_PLUS] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2274), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2274), - [sym_number] = ACTIONS(2274), - [sym_private_property_identifier] = ACTIONS(2274), - [sym_this] = ACTIONS(2274), - [sym_super] = ACTIONS(2274), - [sym_true] = ACTIONS(2274), - [sym_false] = ACTIONS(2274), - [sym_null] = ACTIONS(2274), - [sym_undefined] = ACTIONS(2274), - [anon_sym_AT] = ACTIONS(2274), - [anon_sym_static] = ACTIONS(2274), - [anon_sym_readonly] = ACTIONS(2274), - [anon_sym_get] = ACTIONS(2274), - [anon_sym_set] = ACTIONS(2274), - [anon_sym_declare] = ACTIONS(2274), - [anon_sym_public] = ACTIONS(2274), - [anon_sym_private] = ACTIONS(2274), - [anon_sym_protected] = ACTIONS(2274), - [anon_sym_override] = ACTIONS(2274), - [anon_sym_module] = ACTIONS(2274), - [anon_sym_any] = ACTIONS(2274), - [anon_sym_number] = ACTIONS(2274), - [anon_sym_boolean] = ACTIONS(2274), - [anon_sym_string] = ACTIONS(2274), - [anon_sym_symbol] = ACTIONS(2274), - [anon_sym_object] = ACTIONS(2274), - [anon_sym_abstract] = ACTIONS(2274), + [anon_sym_TILDE] = ACTIONS(2272), + [anon_sym_void] = ACTIONS(2272), + [anon_sym_delete] = ACTIONS(2272), + [anon_sym_PLUS_PLUS] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2272), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2272), + [sym_number] = ACTIONS(2272), + [sym_private_property_identifier] = ACTIONS(2272), + [sym_this] = ACTIONS(2272), + [sym_super] = ACTIONS(2272), + [sym_true] = ACTIONS(2272), + [sym_false] = ACTIONS(2272), + [sym_null] = ACTIONS(2272), + [sym_undefined] = ACTIONS(2272), + [anon_sym_AT] = ACTIONS(2272), + [anon_sym_static] = ACTIONS(2272), + [anon_sym_readonly] = ACTIONS(2272), + [anon_sym_get] = ACTIONS(2272), + [anon_sym_set] = ACTIONS(2272), + [anon_sym_declare] = ACTIONS(2272), + [anon_sym_public] = ACTIONS(2272), + [anon_sym_private] = ACTIONS(2272), + [anon_sym_protected] = ACTIONS(2272), + [anon_sym_override] = ACTIONS(2272), + [anon_sym_module] = ACTIONS(2272), + [anon_sym_any] = ACTIONS(2272), + [anon_sym_number] = ACTIONS(2272), + [anon_sym_boolean] = ACTIONS(2272), + [anon_sym_string] = ACTIONS(2272), + [anon_sym_symbol] = ACTIONS(2272), + [anon_sym_object] = ACTIONS(2272), + [anon_sym_abstract] = ACTIONS(2272), [anon_sym_satisfies] = ACTIONS(2274), - [anon_sym_interface] = ACTIONS(2274), - [anon_sym_enum] = ACTIONS(2274), + [anon_sym_interface] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), [sym__automatic_semicolon] = ACTIONS(2276), - [sym__ternary_qmark] = ACTIONS(2276), + [sym__ternary_qmark] = ACTIONS(2278), [sym_html_comment] = ACTIONS(5), }, [330] = { [sym_comment] = STATE(330), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_else] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_GT] = ACTIONS(2142), - [anon_sym_DOT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_QMARK_DOT] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_PIPE_PIPE] = ACTIONS(2142), - [anon_sym_GT_GT] = ACTIONS(2142), - [anon_sym_GT_GT_GT] = ACTIONS(2142), - [anon_sym_LT_LT] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2142), - [anon_sym_CARET] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_PERCENT] = ACTIONS(2142), - [anon_sym_STAR_STAR] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_LT_EQ] = ACTIONS(2142), - [anon_sym_EQ_EQ] = ACTIONS(2142), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2142), - [anon_sym_BANG_EQ] = ACTIONS(2142), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2142), - [anon_sym_GT_EQ] = ACTIONS(2142), - [anon_sym_QMARK_QMARK] = ACTIONS(2142), - [anon_sym_instanceof] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_satisfies] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(2278), - [sym__ternary_qmark] = ACTIONS(2148), - [sym_html_comment] = ACTIONS(5), - }, - [331] = { - [sym_comment] = STATE(331), [sym_identifier] = ACTIONS(2280), [anon_sym_export] = ACTIONS(2280), [anon_sym_STAR] = ACTIONS(2282), @@ -75636,17 +75243,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(2286), [sym_html_comment] = ACTIONS(5), }, - [332] = { - [sym_comment] = STATE(332), + [331] = { + [sym_comment] = STATE(331), [sym_identifier] = ACTIONS(2288), [anon_sym_export] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_STAR] = ACTIONS(2288), [anon_sym_default] = ACTIONS(2288), [anon_sym_type] = ACTIONS(2288), - [anon_sym_as] = ACTIONS(2290), + [anon_sym_as] = ACTIONS(2288), [anon_sym_namespace] = ACTIONS(2288), [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_COMMA] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(2288), [anon_sym_RBRACE] = ACTIONS(2288), [anon_sym_typeof] = ACTIONS(2288), [anon_sym_import] = ACTIONS(2288), @@ -75661,7 +75268,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2288), [anon_sym_LPAREN] = ACTIONS(2288), [anon_sym_await] = ACTIONS(2288), - [anon_sym_in] = ACTIONS(2290), + [anon_sym_in] = ACTIONS(2288), [anon_sym_while] = ACTIONS(2288), [anon_sym_do] = ACTIONS(2288), [anon_sym_try] = ACTIONS(2288), @@ -75675,38 +75282,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2288), [anon_sym_LBRACK] = ACTIONS(2288), [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(2290), - [anon_sym_DOT] = ACTIONS(2290), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(2288), [anon_sym_DQUOTE] = ACTIONS(2288), [anon_sym_SQUOTE] = ACTIONS(2288), [anon_sym_class] = ACTIONS(2288), [anon_sym_async] = ACTIONS(2288), [anon_sym_function] = ACTIONS(2288), - [anon_sym_QMARK_DOT] = ACTIONS(2290), + [anon_sym_QMARK_DOT] = ACTIONS(2288), [anon_sym_new] = ACTIONS(2288), [anon_sym_using] = ACTIONS(2288), - [anon_sym_AMP_AMP] = ACTIONS(2290), - [anon_sym_PIPE_PIPE] = ACTIONS(2290), - [anon_sym_GT_GT] = ACTIONS(2290), - [anon_sym_GT_GT_GT] = ACTIONS(2290), - [anon_sym_LT_LT] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym_CARET] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), [anon_sym_PLUS] = ACTIONS(2288), [anon_sym_DASH] = ACTIONS(2288), [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_PERCENT] = ACTIONS(2290), - [anon_sym_STAR_STAR] = ACTIONS(2290), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(2290), - [anon_sym_EQ_EQ] = ACTIONS(2290), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2290), - [anon_sym_BANG_EQ] = ACTIONS(2290), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2290), - [anon_sym_GT_EQ] = ACTIONS(2290), - [anon_sym_QMARK_QMARK] = ACTIONS(2290), - [anon_sym_instanceof] = ACTIONS(2290), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), [anon_sym_TILDE] = ACTIONS(2288), [anon_sym_void] = ACTIONS(2288), [anon_sym_delete] = ACTIONS(2288), @@ -75740,284 +75347,395 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2288), [anon_sym_object] = ACTIONS(2288), [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_satisfies] = ACTIONS(2290), + [anon_sym_satisfies] = ACTIONS(2288), [anon_sym_interface] = ACTIONS(2288), [anon_sym_enum] = ACTIONS(2288), - [sym__automatic_semicolon] = ACTIONS(2292), - [sym__ternary_qmark] = ACTIONS(2294), + [sym__automatic_semicolon] = ACTIONS(2290), + [sym__ternary_qmark] = ACTIONS(2290), [sym_html_comment] = ACTIONS(5), }, - [333] = { - [sym_comment] = STATE(333), - [sym_identifier] = ACTIONS(2296), - [anon_sym_export] = ACTIONS(2296), - [anon_sym_STAR] = ACTIONS(2296), - [anon_sym_default] = ACTIONS(2296), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_as] = ACTIONS(2296), - [anon_sym_namespace] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2296), - [anon_sym_COMMA] = ACTIONS(2296), - [anon_sym_RBRACE] = ACTIONS(2296), - [anon_sym_typeof] = ACTIONS(2296), - [anon_sym_import] = ACTIONS(2296), - [anon_sym_with] = ACTIONS(2296), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_const] = ACTIONS(2296), - [anon_sym_BANG] = ACTIONS(2296), - [anon_sym_else] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_switch] = ACTIONS(2296), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2296), - [anon_sym_await] = ACTIONS(2296), - [anon_sym_in] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(2296), - [anon_sym_try] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_debugger] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_throw] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2296), - [anon_sym_case] = ACTIONS(2296), - [anon_sym_yield] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2296), - [anon_sym_LTtemplate_GT] = ACTIONS(2296), - [anon_sym_GT] = ACTIONS(2296), - [anon_sym_DOT] = ACTIONS(2296), - [anon_sym_DQUOTE] = ACTIONS(2296), - [anon_sym_SQUOTE] = ACTIONS(2296), - [anon_sym_class] = ACTIONS(2296), - [anon_sym_async] = ACTIONS(2296), - [anon_sym_function] = ACTIONS(2296), - [anon_sym_QMARK_DOT] = ACTIONS(2296), - [anon_sym_new] = ACTIONS(2296), - [anon_sym_using] = ACTIONS(2296), - [anon_sym_AMP_AMP] = ACTIONS(2296), - [anon_sym_PIPE_PIPE] = ACTIONS(2296), - [anon_sym_GT_GT] = ACTIONS(2296), - [anon_sym_GT_GT_GT] = ACTIONS(2296), - [anon_sym_LT_LT] = ACTIONS(2296), - [anon_sym_AMP] = ACTIONS(2296), - [anon_sym_CARET] = ACTIONS(2296), - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_PERCENT] = ACTIONS(2296), - [anon_sym_STAR_STAR] = ACTIONS(2296), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_LT_EQ] = ACTIONS(2296), - [anon_sym_EQ_EQ] = ACTIONS(2296), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2296), - [anon_sym_BANG_EQ] = ACTIONS(2296), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2296), - [anon_sym_GT_EQ] = ACTIONS(2296), - [anon_sym_QMARK_QMARK] = ACTIONS(2296), - [anon_sym_instanceof] = ACTIONS(2296), - [anon_sym_TILDE] = ACTIONS(2296), - [anon_sym_void] = ACTIONS(2296), - [anon_sym_delete] = ACTIONS(2296), - [anon_sym_PLUS_PLUS] = ACTIONS(2296), - [anon_sym_DASH_DASH] = ACTIONS(2296), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2296), - [sym_number] = ACTIONS(2296), - [sym_private_property_identifier] = ACTIONS(2296), - [sym_this] = ACTIONS(2296), - [sym_super] = ACTIONS(2296), - [sym_true] = ACTIONS(2296), - [sym_false] = ACTIONS(2296), - [sym_null] = ACTIONS(2296), - [sym_undefined] = ACTIONS(2296), - [anon_sym_AT] = ACTIONS(2296), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_readonly] = ACTIONS(2296), - [anon_sym_get] = ACTIONS(2296), - [anon_sym_set] = ACTIONS(2296), - [anon_sym_declare] = ACTIONS(2296), - [anon_sym_public] = ACTIONS(2296), - [anon_sym_private] = ACTIONS(2296), - [anon_sym_protected] = ACTIONS(2296), - [anon_sym_override] = ACTIONS(2296), - [anon_sym_module] = ACTIONS(2296), - [anon_sym_any] = ACTIONS(2296), - [anon_sym_number] = ACTIONS(2296), - [anon_sym_boolean] = ACTIONS(2296), - [anon_sym_string] = ACTIONS(2296), - [anon_sym_symbol] = ACTIONS(2296), - [anon_sym_object] = ACTIONS(2296), - [anon_sym_abstract] = ACTIONS(2296), - [anon_sym_satisfies] = ACTIONS(2296), - [anon_sym_interface] = ACTIONS(2296), - [anon_sym_enum] = ACTIONS(2296), - [sym__automatic_semicolon] = ACTIONS(2298), + [332] = { + [sym_comment] = STATE(332), + [sym_identifier] = ACTIONS(2292), + [anon_sym_export] = ACTIONS(2292), + [anon_sym_STAR] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2292), + [anon_sym_type] = ACTIONS(2292), + [anon_sym_as] = ACTIONS(2294), + [anon_sym_namespace] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_typeof] = ACTIONS(2292), + [anon_sym_import] = ACTIONS(2292), + [anon_sym_with] = ACTIONS(2292), + [anon_sym_var] = ACTIONS(2292), + [anon_sym_let] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_else] = ACTIONS(2292), + [anon_sym_if] = ACTIONS(2292), + [anon_sym_switch] = ACTIONS(2292), + [anon_sym_for] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_await] = ACTIONS(2292), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(2292), + [anon_sym_try] = ACTIONS(2292), + [anon_sym_break] = ACTIONS(2292), + [anon_sym_continue] = ACTIONS(2292), + [anon_sym_debugger] = ACTIONS(2292), + [anon_sym_return] = ACTIONS(2292), + [anon_sym_throw] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_case] = ACTIONS(2292), + [anon_sym_yield] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2292), + [anon_sym_LTtemplate_GT] = ACTIONS(2292), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_DOT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_SQUOTE] = ACTIONS(2292), + [anon_sym_class] = ACTIONS(2292), + [anon_sym_async] = ACTIONS(2292), + [anon_sym_function] = ACTIONS(2292), + [anon_sym_QMARK_DOT] = ACTIONS(2294), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_using] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2294), + [anon_sym_PIPE_PIPE] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2294), + [anon_sym_GT_GT_GT] = ACTIONS(2294), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_CARET] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_SLASH] = ACTIONS(2292), + [anon_sym_PERCENT] = ACTIONS(2294), + [anon_sym_STAR_STAR] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2292), + [anon_sym_LT_EQ] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2294), + [anon_sym_BANG_EQ] = ACTIONS(2294), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2294), + [anon_sym_GT_EQ] = ACTIONS(2294), + [anon_sym_QMARK_QMARK] = ACTIONS(2294), + [anon_sym_instanceof] = ACTIONS(2294), + [anon_sym_TILDE] = ACTIONS(2292), + [anon_sym_void] = ACTIONS(2292), + [anon_sym_delete] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2292), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2292), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [sym_this] = ACTIONS(2292), + [sym_super] = ACTIONS(2292), + [sym_true] = ACTIONS(2292), + [sym_false] = ACTIONS(2292), + [sym_null] = ACTIONS(2292), + [sym_undefined] = ACTIONS(2292), + [anon_sym_AT] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2292), + [anon_sym_readonly] = ACTIONS(2292), + [anon_sym_get] = ACTIONS(2292), + [anon_sym_set] = ACTIONS(2292), + [anon_sym_declare] = ACTIONS(2292), + [anon_sym_public] = ACTIONS(2292), + [anon_sym_private] = ACTIONS(2292), + [anon_sym_protected] = ACTIONS(2292), + [anon_sym_override] = ACTIONS(2292), + [anon_sym_module] = ACTIONS(2292), + [anon_sym_any] = ACTIONS(2292), + [anon_sym_number] = ACTIONS(2292), + [anon_sym_boolean] = ACTIONS(2292), + [anon_sym_string] = ACTIONS(2292), + [anon_sym_symbol] = ACTIONS(2292), + [anon_sym_object] = ACTIONS(2292), + [anon_sym_abstract] = ACTIONS(2292), + [anon_sym_satisfies] = ACTIONS(2294), + [anon_sym_interface] = ACTIONS(2292), + [anon_sym_enum] = ACTIONS(2292), + [sym__automatic_semicolon] = ACTIONS(2296), [sym__ternary_qmark] = ACTIONS(2298), [sym_html_comment] = ACTIONS(5), }, - [334] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6765), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(334), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(6218), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_COMMA] = ACTIONS(2300), - [anon_sym_typeof] = ACTIONS(173), + [333] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2673), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(333), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), - [anon_sym_RBRACK] = ACTIONS(2300), + [anon_sym_RPAREN] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(2061), [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2061), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1079), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [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_object] = ACTIONS(1577), + [anon_sym_extends] = ACTIONS(2061), [sym_html_comment] = ACTIONS(5), }, - [335] = { - [sym_comment] = STATE(335), - [sym_identifier] = ACTIONS(2302), - [anon_sym_export] = ACTIONS(2302), + [334] = { + [sym_comment] = STATE(334), + [sym_identifier] = ACTIONS(2300), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_STAR] = ACTIONS(2300), + [anon_sym_default] = ACTIONS(2300), + [anon_sym_type] = ACTIONS(2300), + [anon_sym_as] = ACTIONS(2300), + [anon_sym_namespace] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2300), + [anon_sym_COMMA] = ACTIONS(2300), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2300), + [anon_sym_import] = ACTIONS(2300), + [anon_sym_with] = ACTIONS(2300), + [anon_sym_var] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(2300), + [anon_sym_else] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_switch] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_await] = ACTIONS(2300), + [anon_sym_in] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_debugger] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_throw] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_case] = ACTIONS(2300), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2300), + [anon_sym_LTtemplate_GT] = ACTIONS(2300), + [anon_sym_GT] = ACTIONS(2300), + [anon_sym_DOT] = ACTIONS(2300), + [anon_sym_DQUOTE] = ACTIONS(2300), + [anon_sym_SQUOTE] = ACTIONS(2300), + [anon_sym_class] = ACTIONS(2300), + [anon_sym_async] = ACTIONS(2300), + [anon_sym_function] = ACTIONS(2300), + [anon_sym_QMARK_DOT] = ACTIONS(2300), + [anon_sym_new] = ACTIONS(2300), + [anon_sym_using] = ACTIONS(2300), + [anon_sym_AMP_AMP] = ACTIONS(2300), + [anon_sym_PIPE_PIPE] = ACTIONS(2300), + [anon_sym_GT_GT] = ACTIONS(2300), + [anon_sym_GT_GT_GT] = ACTIONS(2300), + [anon_sym_LT_LT] = ACTIONS(2300), + [anon_sym_AMP] = ACTIONS(2300), + [anon_sym_CARET] = ACTIONS(2300), + [anon_sym_PIPE] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_PERCENT] = ACTIONS(2300), + [anon_sym_STAR_STAR] = ACTIONS(2300), + [anon_sym_LT] = ACTIONS(2300), + [anon_sym_LT_EQ] = ACTIONS(2300), + [anon_sym_EQ_EQ] = ACTIONS(2300), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2300), + [anon_sym_BANG_EQ] = ACTIONS(2300), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2300), + [anon_sym_GT_EQ] = ACTIONS(2300), + [anon_sym_QMARK_QMARK] = ACTIONS(2300), + [anon_sym_instanceof] = ACTIONS(2300), + [anon_sym_TILDE] = ACTIONS(2300), + [anon_sym_void] = ACTIONS(2300), + [anon_sym_delete] = ACTIONS(2300), + [anon_sym_PLUS_PLUS] = ACTIONS(2300), + [anon_sym_DASH_DASH] = ACTIONS(2300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2300), + [sym_number] = ACTIONS(2300), + [sym_private_property_identifier] = ACTIONS(2300), + [sym_this] = ACTIONS(2300), + [sym_super] = ACTIONS(2300), + [sym_true] = ACTIONS(2300), + [sym_false] = ACTIONS(2300), + [sym_null] = ACTIONS(2300), + [sym_undefined] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2300), + [anon_sym_static] = ACTIONS(2300), + [anon_sym_readonly] = ACTIONS(2300), + [anon_sym_get] = ACTIONS(2300), + [anon_sym_set] = ACTIONS(2300), + [anon_sym_declare] = ACTIONS(2300), + [anon_sym_public] = ACTIONS(2300), + [anon_sym_private] = ACTIONS(2300), + [anon_sym_protected] = ACTIONS(2300), + [anon_sym_override] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_any] = ACTIONS(2300), + [anon_sym_number] = ACTIONS(2300), + [anon_sym_boolean] = ACTIONS(2300), + [anon_sym_string] = ACTIONS(2300), + [anon_sym_symbol] = ACTIONS(2300), + [anon_sym_object] = ACTIONS(2300), + [anon_sym_abstract] = ACTIONS(2300), + [anon_sym_satisfies] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2300), + [anon_sym_enum] = ACTIONS(2300), + [sym__automatic_semicolon] = ACTIONS(2302), + [sym__ternary_qmark] = ACTIONS(2302), + [sym_html_comment] = ACTIONS(5), + }, + [335] = { + [sym_comment] = STATE(335), + [sym_identifier] = ACTIONS(2304), + [anon_sym_export] = ACTIONS(2304), [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_default] = ACTIONS(2302), - [anon_sym_type] = ACTIONS(2302), + [anon_sym_default] = ACTIONS(2304), + [anon_sym_type] = ACTIONS(2304), [anon_sym_as] = ACTIONS(2304), - [anon_sym_namespace] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), + [anon_sym_namespace] = ACTIONS(2304), + [anon_sym_LBRACE] = ACTIONS(2304), [anon_sym_COMMA] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_typeof] = ACTIONS(2302), - [anon_sym_import] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(2302), - [anon_sym_var] = ACTIONS(2302), - [anon_sym_let] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_else] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_await] = ACTIONS(2302), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_typeof] = ACTIONS(2304), + [anon_sym_import] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(2304), + [anon_sym_var] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(2304), + [anon_sym_else] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_switch] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_await] = ACTIONS(2304), [anon_sym_in] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_debugger] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_case] = ACTIONS(2302), - [anon_sym_yield] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_LTtemplate_GT] = ACTIONS(2302), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_debugger] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_throw] = ACTIONS(2304), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_case] = ACTIONS(2304), + [anon_sym_yield] = ACTIONS(2304), + [anon_sym_LBRACK] = ACTIONS(2304), + [anon_sym_LTtemplate_GT] = ACTIONS(2304), [anon_sym_GT] = ACTIONS(2304), [anon_sym_DOT] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_function] = ACTIONS(2302), + [anon_sym_DQUOTE] = ACTIONS(2304), + [anon_sym_SQUOTE] = ACTIONS(2304), + [anon_sym_class] = ACTIONS(2304), + [anon_sym_async] = ACTIONS(2304), + [anon_sym_function] = ACTIONS(2304), [anon_sym_QMARK_DOT] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), + [anon_sym_new] = ACTIONS(2304), + [anon_sym_using] = ACTIONS(2304), [anon_sym_AMP_AMP] = ACTIONS(2304), [anon_sym_PIPE_PIPE] = ACTIONS(2304), [anon_sym_GT_GT] = ACTIONS(2304), @@ -76026,12 +75744,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2304), [anon_sym_CARET] = ACTIONS(2304), [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_SLASH] = ACTIONS(2302), + [anon_sym_PLUS] = ACTIONS(2304), + [anon_sym_DASH] = ACTIONS(2304), + [anon_sym_SLASH] = ACTIONS(2304), [anon_sym_PERCENT] = ACTIONS(2304), [anon_sym_STAR_STAR] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2302), + [anon_sym_LT] = ACTIONS(2304), [anon_sym_LT_EQ] = ACTIONS(2304), [anon_sym_EQ_EQ] = ACTIONS(2304), [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), @@ -76040,1003 +75758,1113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2304), [anon_sym_QMARK_QMARK] = ACTIONS(2304), [anon_sym_instanceof] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2302), - [anon_sym_void] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2302), - [sym_number] = ACTIONS(2302), - [sym_private_property_identifier] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_super] = ACTIONS(2302), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_undefined] = ACTIONS(2302), - [anon_sym_AT] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_readonly] = ACTIONS(2302), - [anon_sym_get] = ACTIONS(2302), - [anon_sym_set] = ACTIONS(2302), - [anon_sym_declare] = ACTIONS(2302), - [anon_sym_public] = ACTIONS(2302), - [anon_sym_private] = ACTIONS(2302), - [anon_sym_protected] = ACTIONS(2302), - [anon_sym_override] = ACTIONS(2302), - [anon_sym_module] = ACTIONS(2302), - [anon_sym_any] = ACTIONS(2302), - [anon_sym_number] = ACTIONS(2302), - [anon_sym_boolean] = ACTIONS(2302), - [anon_sym_string] = ACTIONS(2302), - [anon_sym_symbol] = ACTIONS(2302), - [anon_sym_object] = ACTIONS(2302), - [anon_sym_abstract] = ACTIONS(2302), + [anon_sym_TILDE] = ACTIONS(2304), + [anon_sym_void] = ACTIONS(2304), + [anon_sym_delete] = ACTIONS(2304), + [anon_sym_PLUS_PLUS] = ACTIONS(2304), + [anon_sym_DASH_DASH] = ACTIONS(2304), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2304), + [sym_number] = ACTIONS(2304), + [sym_private_property_identifier] = ACTIONS(2304), + [sym_this] = ACTIONS(2304), + [sym_super] = ACTIONS(2304), + [sym_true] = ACTIONS(2304), + [sym_false] = ACTIONS(2304), + [sym_null] = ACTIONS(2304), + [sym_undefined] = ACTIONS(2304), + [anon_sym_AT] = ACTIONS(2304), + [anon_sym_static] = ACTIONS(2304), + [anon_sym_readonly] = ACTIONS(2304), + [anon_sym_get] = ACTIONS(2304), + [anon_sym_set] = ACTIONS(2304), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_public] = ACTIONS(2304), + [anon_sym_private] = ACTIONS(2304), + [anon_sym_protected] = ACTIONS(2304), + [anon_sym_override] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_any] = ACTIONS(2304), + [anon_sym_number] = ACTIONS(2304), + [anon_sym_boolean] = ACTIONS(2304), + [anon_sym_string] = ACTIONS(2304), + [anon_sym_symbol] = ACTIONS(2304), + [anon_sym_object] = ACTIONS(2304), + [anon_sym_abstract] = ACTIONS(2304), [anon_sym_satisfies] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), + [anon_sym_interface] = ACTIONS(2304), + [anon_sym_enum] = ACTIONS(2304), [sym__automatic_semicolon] = ACTIONS(2306), - [sym__ternary_qmark] = ACTIONS(2308), + [sym__ternary_qmark] = ACTIONS(2306), [sym_html_comment] = ACTIONS(5), }, [336] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2862), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), [sym_comment] = STATE(336), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2061), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), - [anon_sym_extends] = ACTIONS(2061), + [sym_identifier] = ACTIONS(2308), + [anon_sym_export] = ACTIONS(2308), + [anon_sym_STAR] = ACTIONS(2310), + [anon_sym_default] = ACTIONS(2308), + [anon_sym_type] = ACTIONS(2308), + [anon_sym_as] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2308), + [anon_sym_LBRACE] = ACTIONS(2308), + [anon_sym_COMMA] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_typeof] = ACTIONS(2308), + [anon_sym_import] = ACTIONS(2308), + [anon_sym_with] = ACTIONS(2308), + [anon_sym_var] = ACTIONS(2308), + [anon_sym_let] = ACTIONS(2308), + [anon_sym_const] = ACTIONS(2308), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_else] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_switch] = ACTIONS(2308), + [anon_sym_for] = ACTIONS(2308), + [anon_sym_LPAREN] = ACTIONS(2308), + [anon_sym_await] = ACTIONS(2308), + [anon_sym_in] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_do] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2308), + [anon_sym_break] = ACTIONS(2308), + [anon_sym_continue] = ACTIONS(2308), + [anon_sym_debugger] = ACTIONS(2308), + [anon_sym_return] = ACTIONS(2308), + [anon_sym_throw] = ACTIONS(2308), + [anon_sym_SEMI] = ACTIONS(2308), + [anon_sym_case] = ACTIONS(2308), + [anon_sym_yield] = ACTIONS(2308), + [anon_sym_LBRACK] = ACTIONS(2308), + [anon_sym_LTtemplate_GT] = ACTIONS(2308), + [anon_sym_GT] = ACTIONS(2310), + [anon_sym_DOT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2308), + [anon_sym_SQUOTE] = ACTIONS(2308), + [anon_sym_class] = ACTIONS(2308), + [anon_sym_async] = ACTIONS(2308), + [anon_sym_function] = ACTIONS(2308), + [anon_sym_QMARK_DOT] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2308), + [anon_sym_using] = ACTIONS(2308), + [anon_sym_AMP_AMP] = ACTIONS(2310), + [anon_sym_PIPE_PIPE] = ACTIONS(2310), + [anon_sym_GT_GT] = ACTIONS(2310), + [anon_sym_GT_GT_GT] = ACTIONS(2310), + [anon_sym_LT_LT] = ACTIONS(2310), + [anon_sym_AMP] = ACTIONS(2310), + [anon_sym_CARET] = ACTIONS(2310), + [anon_sym_PIPE] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2308), + [anon_sym_SLASH] = ACTIONS(2308), + [anon_sym_PERCENT] = ACTIONS(2310), + [anon_sym_STAR_STAR] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2308), + [anon_sym_LT_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), + [anon_sym_GT_EQ] = ACTIONS(2310), + [anon_sym_QMARK_QMARK] = ACTIONS(2310), + [anon_sym_instanceof] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_void] = ACTIONS(2308), + [anon_sym_delete] = ACTIONS(2308), + [anon_sym_PLUS_PLUS] = ACTIONS(2308), + [anon_sym_DASH_DASH] = ACTIONS(2308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2308), + [sym_number] = ACTIONS(2308), + [sym_private_property_identifier] = ACTIONS(2308), + [sym_this] = ACTIONS(2308), + [sym_super] = ACTIONS(2308), + [sym_true] = ACTIONS(2308), + [sym_false] = ACTIONS(2308), + [sym_null] = ACTIONS(2308), + [sym_undefined] = ACTIONS(2308), + [anon_sym_AT] = ACTIONS(2308), + [anon_sym_static] = ACTIONS(2308), + [anon_sym_readonly] = ACTIONS(2308), + [anon_sym_get] = ACTIONS(2308), + [anon_sym_set] = ACTIONS(2308), + [anon_sym_declare] = ACTIONS(2308), + [anon_sym_public] = ACTIONS(2308), + [anon_sym_private] = ACTIONS(2308), + [anon_sym_protected] = ACTIONS(2308), + [anon_sym_override] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2308), + [anon_sym_any] = ACTIONS(2308), + [anon_sym_number] = ACTIONS(2308), + [anon_sym_boolean] = ACTIONS(2308), + [anon_sym_string] = ACTIONS(2308), + [anon_sym_symbol] = ACTIONS(2308), + [anon_sym_object] = ACTIONS(2308), + [anon_sym_abstract] = ACTIONS(2308), + [anon_sym_satisfies] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2308), + [anon_sym_enum] = ACTIONS(2308), + [sym__automatic_semicolon] = ACTIONS(2312), + [sym__ternary_qmark] = ACTIONS(2314), [sym_html_comment] = ACTIONS(5), }, [337] = { [sym_comment] = STATE(337), - [sym_identifier] = ACTIONS(2310), - [anon_sym_export] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2312), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_type] = ACTIONS(2310), - [anon_sym_as] = ACTIONS(2312), - [anon_sym_namespace] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_COMMA] = ACTIONS(2312), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_typeof] = ACTIONS(2310), - [anon_sym_import] = ACTIONS(2310), - [anon_sym_with] = ACTIONS(2310), - [anon_sym_var] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2310), - [anon_sym_const] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2310), - [anon_sym_else] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2310), - [anon_sym_switch] = ACTIONS(2310), - [anon_sym_for] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_await] = ACTIONS(2310), - [anon_sym_in] = ACTIONS(2312), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_do] = ACTIONS(2310), - [anon_sym_try] = 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(2310), - [anon_sym_case] = ACTIONS(2310), - [anon_sym_yield] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LTtemplate_GT] = ACTIONS(2310), - [anon_sym_GT] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(2312), - [anon_sym_DQUOTE] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2310), - [anon_sym_class] = ACTIONS(2310), - [anon_sym_async] = ACTIONS(2310), - [anon_sym_function] = ACTIONS(2310), - [anon_sym_QMARK_DOT] = ACTIONS(2312), - [anon_sym_new] = ACTIONS(2310), - [anon_sym_using] = ACTIONS(2310), - [anon_sym_AMP_AMP] = ACTIONS(2312), - [anon_sym_PIPE_PIPE] = ACTIONS(2312), - [anon_sym_GT_GT] = ACTIONS(2312), - [anon_sym_GT_GT_GT] = ACTIONS(2312), - [anon_sym_LT_LT] = ACTIONS(2312), - [anon_sym_AMP] = ACTIONS(2312), - [anon_sym_CARET] = ACTIONS(2312), - [anon_sym_PIPE] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_SLASH] = ACTIONS(2310), - [anon_sym_PERCENT] = ACTIONS(2312), - [anon_sym_STAR_STAR] = ACTIONS(2312), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_LT_EQ] = ACTIONS(2312), - [anon_sym_EQ_EQ] = ACTIONS(2312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2312), - [anon_sym_BANG_EQ] = ACTIONS(2312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2312), - [anon_sym_GT_EQ] = ACTIONS(2312), - [anon_sym_QMARK_QMARK] = ACTIONS(2312), - [anon_sym_instanceof] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2310), - [anon_sym_void] = ACTIONS(2310), - [anon_sym_delete] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2310), - [sym_number] = ACTIONS(2310), - [sym_private_property_identifier] = ACTIONS(2310), - [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(2310), - [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_abstract] = ACTIONS(2310), - [anon_sym_satisfies] = ACTIONS(2312), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2310), - [sym__automatic_semicolon] = ACTIONS(2314), - [sym__ternary_qmark] = ACTIONS(2316), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(2144), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_EQ] = ACTIONS(2146), + [anon_sym_as] = ACTIONS(2144), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_COMMA] = ACTIONS(2144), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_else] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_in] = ACTIONS(2144), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_GT] = ACTIONS(2144), + [anon_sym_DOT] = ACTIONS(2144), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_QMARK_DOT] = ACTIONS(2144), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_AMP_AMP] = ACTIONS(2144), + [anon_sym_PIPE_PIPE] = ACTIONS(2144), + [anon_sym_GT_GT] = ACTIONS(2144), + [anon_sym_GT_GT_GT] = ACTIONS(2144), + [anon_sym_LT_LT] = ACTIONS(2144), + [anon_sym_AMP] = ACTIONS(2144), + [anon_sym_CARET] = ACTIONS(2144), + [anon_sym_PIPE] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_PERCENT] = ACTIONS(2144), + [anon_sym_STAR_STAR] = ACTIONS(2144), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_LT_EQ] = ACTIONS(2144), + [anon_sym_EQ_EQ] = ACTIONS(2144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2144), + [anon_sym_BANG_EQ] = ACTIONS(2144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2144), + [anon_sym_GT_EQ] = ACTIONS(2144), + [anon_sym_QMARK_QMARK] = ACTIONS(2144), + [anon_sym_instanceof] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_satisfies] = ACTIONS(2144), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(2316), + [sym__ternary_qmark] = ACTIONS(2150), [sym_html_comment] = ACTIONS(5), }, [338] = { - [sym_statement_block] = STATE(413), [sym_comment] = STATE(338), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2318), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_in] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_QMARK_DOT] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2109), - [anon_sym_PIPE_PIPE] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_GT_GT_GT] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_satisfies] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2113), - [sym__ternary_qmark] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_as] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_COMMA] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_in] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_GT] = ACTIONS(2160), + [anon_sym_DOT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_QMARK_DOT] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_AMP_AMP] = ACTIONS(2160), + [anon_sym_PIPE_PIPE] = ACTIONS(2160), + [anon_sym_GT_GT] = ACTIONS(2160), + [anon_sym_GT_GT_GT] = ACTIONS(2160), + [anon_sym_LT_LT] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(2160), + [anon_sym_STAR_STAR] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_LT_EQ] = ACTIONS(2160), + [anon_sym_EQ_EQ] = ACTIONS(2160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2160), + [anon_sym_BANG_EQ] = ACTIONS(2160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2160), + [anon_sym_GT_EQ] = ACTIONS(2160), + [anon_sym_QMARK_QMARK] = ACTIONS(2160), + [anon_sym_instanceof] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_satisfies] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(2318), + [sym__ternary_qmark] = ACTIONS(2164), [sym_html_comment] = ACTIONS(5), }, [339] = { [sym_comment] = STATE(339), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_default] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_as] = ACTIONS(2178), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_COMMA] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(2176), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_case] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LTtemplate_GT] = ACTIONS(2176), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_QMARK_DOT] = ACTIONS(2178), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_AMP_AMP] = ACTIONS(2178), - [anon_sym_PIPE_PIPE] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_GT_GT_GT] = ACTIONS(2178), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_AMP] = ACTIONS(2178), - [anon_sym_CARET] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_PERCENT] = ACTIONS(2178), - [anon_sym_STAR_STAR] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_LT_EQ] = ACTIONS(2178), - [anon_sym_EQ_EQ] = ACTIONS(2178), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2178), - [anon_sym_BANG_EQ] = ACTIONS(2178), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2178), - [anon_sym_GT_EQ] = ACTIONS(2178), - [anon_sym_QMARK_QMARK] = ACTIONS(2178), - [anon_sym_instanceof] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_number] = ACTIONS(2176), - [sym_private_property_identifier] = ACTIONS(2176), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_satisfies] = ACTIONS(2178), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), - [sym__automatic_semicolon] = ACTIONS(2180), - [sym__ternary_qmark] = ACTIONS(2180), + [sym_identifier] = ACTIONS(2264), + [anon_sym_export] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(2266), + [anon_sym_default] = ACTIONS(2264), + [anon_sym_type] = ACTIONS(2264), + [anon_sym_as] = ACTIONS(2266), + [anon_sym_namespace] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2264), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_RBRACE] = ACTIONS(2264), + [anon_sym_typeof] = ACTIONS(2264), + [anon_sym_import] = ACTIONS(2264), + [anon_sym_with] = ACTIONS(2264), + [anon_sym_var] = ACTIONS(2264), + [anon_sym_let] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_BANG] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_switch] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2264), + [anon_sym_await] = ACTIONS(2264), + [anon_sym_in] = ACTIONS(2266), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2264), + [anon_sym_try] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_debugger] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_throw] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym_case] = ACTIONS(2264), + [anon_sym_yield] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_LTtemplate_GT] = ACTIONS(2264), + [anon_sym_GT] = ACTIONS(2266), + [anon_sym_DOT] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(2264), + [anon_sym_SQUOTE] = ACTIONS(2264), + [anon_sym_class] = ACTIONS(2264), + [anon_sym_async] = ACTIONS(2264), + [anon_sym_function] = ACTIONS(2264), + [anon_sym_QMARK_DOT] = ACTIONS(2266), + [anon_sym_new] = ACTIONS(2264), + [anon_sym_using] = ACTIONS(2264), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_GT_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_AMP] = ACTIONS(2266), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(2266), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_SLASH] = ACTIONS(2264), + [anon_sym_PERCENT] = ACTIONS(2266), + [anon_sym_STAR_STAR] = ACTIONS(2266), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_LT_EQ] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2266), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_QMARK_QMARK] = ACTIONS(2266), + [anon_sym_instanceof] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2264), + [anon_sym_void] = ACTIONS(2264), + [anon_sym_delete] = ACTIONS(2264), + [anon_sym_PLUS_PLUS] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(2264), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2264), + [sym_number] = ACTIONS(2264), + [sym_private_property_identifier] = ACTIONS(2264), + [sym_this] = ACTIONS(2264), + [sym_super] = ACTIONS(2264), + [sym_true] = ACTIONS(2264), + [sym_false] = ACTIONS(2264), + [sym_null] = ACTIONS(2264), + [sym_undefined] = ACTIONS(2264), + [anon_sym_AT] = ACTIONS(2264), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_readonly] = ACTIONS(2264), + [anon_sym_get] = ACTIONS(2264), + [anon_sym_set] = ACTIONS(2264), + [anon_sym_declare] = ACTIONS(2264), + [anon_sym_public] = ACTIONS(2264), + [anon_sym_private] = ACTIONS(2264), + [anon_sym_protected] = ACTIONS(2264), + [anon_sym_override] = ACTIONS(2264), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_any] = ACTIONS(2264), + [anon_sym_number] = ACTIONS(2264), + [anon_sym_boolean] = ACTIONS(2264), + [anon_sym_string] = ACTIONS(2264), + [anon_sym_symbol] = ACTIONS(2264), + [anon_sym_object] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2264), + [anon_sym_satisfies] = ACTIONS(2266), + [anon_sym_interface] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + [sym__automatic_semicolon] = ACTIONS(2320), + [sym__ternary_qmark] = ACTIONS(2270), [sym_html_comment] = ACTIONS(5), }, [340] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2804), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_spread_element] = STATE(6268), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), [sym_comment] = STATE(340), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6269), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(2320), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2322), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2324), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [sym_identifier] = ACTIONS(2242), + [anon_sym_export] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_default] = ACTIONS(2242), + [anon_sym_type] = ACTIONS(2242), + [anon_sym_as] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_COMMA] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_typeof] = ACTIONS(2242), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_with] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2242), + [anon_sym_let] = ACTIONS(2242), + [anon_sym_const] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_switch] = ACTIONS(2242), + [anon_sym_for] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_await] = ACTIONS(2242), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2242), + [anon_sym_do] = ACTIONS(2242), + [anon_sym_try] = ACTIONS(2242), + [anon_sym_break] = ACTIONS(2242), + [anon_sym_continue] = ACTIONS(2242), + [anon_sym_debugger] = ACTIONS(2242), + [anon_sym_return] = ACTIONS(2242), + [anon_sym_throw] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_case] = ACTIONS(2242), + [anon_sym_yield] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_LTtemplate_GT] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_class] = ACTIONS(2242), + [anon_sym_async] = ACTIONS(2242), + [anon_sym_function] = ACTIONS(2242), + [anon_sym_QMARK_DOT] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2242), + [anon_sym_using] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2244), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2244), + [anon_sym_LT_LT] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2242), + [anon_sym_SLASH] = ACTIONS(2242), + [anon_sym_PERCENT] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2242), + [anon_sym_LT_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2244), + [anon_sym_GT_EQ] = ACTIONS(2244), + [anon_sym_QMARK_QMARK] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2242), + [anon_sym_void] = ACTIONS(2242), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2242), + [sym_number] = ACTIONS(2242), + [sym_private_property_identifier] = ACTIONS(2242), + [sym_this] = ACTIONS(2242), + [sym_super] = ACTIONS(2242), + [sym_true] = ACTIONS(2242), + [sym_false] = ACTIONS(2242), + [sym_null] = ACTIONS(2242), + [sym_undefined] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(2242), + [anon_sym_readonly] = ACTIONS(2242), + [anon_sym_get] = ACTIONS(2242), + [anon_sym_set] = ACTIONS(2242), + [anon_sym_declare] = ACTIONS(2242), + [anon_sym_public] = ACTIONS(2242), + [anon_sym_private] = ACTIONS(2242), + [anon_sym_protected] = ACTIONS(2242), + [anon_sym_override] = ACTIONS(2242), + [anon_sym_module] = ACTIONS(2242), + [anon_sym_any] = ACTIONS(2242), + [anon_sym_number] = ACTIONS(2242), + [anon_sym_boolean] = ACTIONS(2242), + [anon_sym_string] = ACTIONS(2242), + [anon_sym_symbol] = ACTIONS(2242), + [anon_sym_object] = ACTIONS(2242), + [anon_sym_abstract] = ACTIONS(2242), + [anon_sym_satisfies] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2242), + [anon_sym_enum] = ACTIONS(2242), + [sym__automatic_semicolon] = ACTIONS(2322), + [sym__ternary_qmark] = ACTIONS(2248), [sym_html_comment] = ACTIONS(5), }, [341] = { [sym_comment] = STATE(341), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_as] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_in] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_DOT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_QMARK_DOT] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_GT_GT_GT] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_PERCENT] = ACTIONS(2190), - [anon_sym_STAR_STAR] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_LT_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2190), - [anon_sym_GT_EQ] = ACTIONS(2190), - [anon_sym_QMARK_QMARK] = ACTIONS(2190), - [anon_sym_instanceof] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_satisfies] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(2192), - [sym__ternary_qmark] = ACTIONS(2192), + [sym_identifier] = ACTIONS(2304), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_STAR] = ACTIONS(2304), + [anon_sym_default] = ACTIONS(2304), + [anon_sym_type] = ACTIONS(2304), + [anon_sym_as] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2304), + [anon_sym_LBRACE] = ACTIONS(2304), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_typeof] = ACTIONS(2304), + [anon_sym_import] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(2304), + [anon_sym_var] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_switch] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_await] = ACTIONS(2304), + [anon_sym_in] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_debugger] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_throw] = ACTIONS(2304), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_case] = ACTIONS(2304), + [anon_sym_yield] = ACTIONS(2304), + [anon_sym_LBRACK] = ACTIONS(2304), + [anon_sym_LTtemplate_GT] = ACTIONS(2304), + [anon_sym_GT] = ACTIONS(2304), + [anon_sym_DOT] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2304), + [anon_sym_SQUOTE] = ACTIONS(2304), + [anon_sym_class] = ACTIONS(2304), + [anon_sym_async] = ACTIONS(2304), + [anon_sym_function] = ACTIONS(2304), + [anon_sym_QMARK_DOT] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2304), + [anon_sym_using] = ACTIONS(2304), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_GT_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_AMP] = ACTIONS(2304), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_PIPE] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2304), + [anon_sym_DASH] = ACTIONS(2304), + [anon_sym_SLASH] = ACTIONS(2304), + [anon_sym_PERCENT] = ACTIONS(2304), + [anon_sym_STAR_STAR] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2304), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_QMARK_QMARK] = ACTIONS(2304), + [anon_sym_instanceof] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2304), + [anon_sym_void] = ACTIONS(2304), + [anon_sym_delete] = ACTIONS(2304), + [anon_sym_PLUS_PLUS] = ACTIONS(2304), + [anon_sym_DASH_DASH] = ACTIONS(2304), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2304), + [sym_number] = ACTIONS(2304), + [sym_private_property_identifier] = ACTIONS(2304), + [sym_this] = ACTIONS(2304), + [sym_super] = ACTIONS(2304), + [sym_true] = ACTIONS(2304), + [sym_false] = ACTIONS(2304), + [sym_null] = ACTIONS(2304), + [sym_undefined] = ACTIONS(2304), + [anon_sym_AT] = ACTIONS(2304), + [anon_sym_static] = ACTIONS(2304), + [anon_sym_readonly] = ACTIONS(2304), + [anon_sym_get] = ACTIONS(2304), + [anon_sym_set] = ACTIONS(2304), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_public] = ACTIONS(2304), + [anon_sym_private] = ACTIONS(2304), + [anon_sym_protected] = ACTIONS(2304), + [anon_sym_override] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_any] = ACTIONS(2304), + [anon_sym_number] = ACTIONS(2304), + [anon_sym_boolean] = ACTIONS(2304), + [anon_sym_string] = ACTIONS(2304), + [anon_sym_symbol] = ACTIONS(2304), + [anon_sym_object] = ACTIONS(2304), + [anon_sym_abstract] = ACTIONS(2304), + [anon_sym_satisfies] = ACTIONS(2304), + [anon_sym_interface] = ACTIONS(2304), + [anon_sym_enum] = ACTIONS(2304), + [sym__automatic_semicolon] = ACTIONS(2306), + [sym__ternary_qmark] = ACTIONS(2306), [sym_html_comment] = ACTIONS(5), }, [342] = { [sym_comment] = STATE(342), - [ts_builtin_sym_end] = ACTIONS(2254), - [sym_identifier] = ACTIONS(2252), - [anon_sym_export] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2252), - [anon_sym_type] = ACTIONS(2252), - [anon_sym_as] = ACTIONS(2252), - [anon_sym_namespace] = ACTIONS(2252), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_COMMA] = ACTIONS(2252), - [anon_sym_RBRACE] = ACTIONS(2252), - [anon_sym_typeof] = ACTIONS(2252), - [anon_sym_import] = ACTIONS(2252), - [anon_sym_with] = ACTIONS(2252), - [anon_sym_var] = ACTIONS(2252), - [anon_sym_let] = ACTIONS(2252), - [anon_sym_const] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(2252), - [anon_sym_else] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_switch] = ACTIONS(2252), - [anon_sym_for] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_await] = ACTIONS(2252), - [anon_sym_in] = ACTIONS(2252), - [anon_sym_while] = ACTIONS(2252), - [anon_sym_do] = ACTIONS(2252), - [anon_sym_try] = ACTIONS(2252), - [anon_sym_break] = ACTIONS(2252), - [anon_sym_continue] = ACTIONS(2252), - [anon_sym_debugger] = ACTIONS(2252), - [anon_sym_return] = ACTIONS(2252), - [anon_sym_throw] = ACTIONS(2252), - [anon_sym_SEMI] = ACTIONS(2252), - [anon_sym_yield] = ACTIONS(2252), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_LTtemplate_GT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_DQUOTE] = ACTIONS(2252), - [anon_sym_SQUOTE] = ACTIONS(2252), - [anon_sym_class] = ACTIONS(2252), - [anon_sym_async] = ACTIONS(2252), - [anon_sym_function] = ACTIONS(2252), - [anon_sym_QMARK_DOT] = ACTIONS(2252), - [anon_sym_new] = ACTIONS(2252), - [anon_sym_using] = ACTIONS(2252), - [anon_sym_AMP_AMP] = ACTIONS(2252), - [anon_sym_PIPE_PIPE] = ACTIONS(2252), - [anon_sym_GT_GT] = ACTIONS(2252), - [anon_sym_GT_GT_GT] = ACTIONS(2252), - [anon_sym_LT_LT] = ACTIONS(2252), - [anon_sym_AMP] = ACTIONS(2252), - [anon_sym_CARET] = ACTIONS(2252), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_PLUS] = ACTIONS(2252), - [anon_sym_DASH] = ACTIONS(2252), - [anon_sym_SLASH] = ACTIONS(2252), - [anon_sym_PERCENT] = ACTIONS(2252), - [anon_sym_STAR_STAR] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2252), - [anon_sym_EQ_EQ] = ACTIONS(2252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2252), - [anon_sym_BANG_EQ] = ACTIONS(2252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2252), - [anon_sym_GT_EQ] = ACTIONS(2252), - [anon_sym_QMARK_QMARK] = ACTIONS(2252), - [anon_sym_instanceof] = ACTIONS(2252), - [anon_sym_TILDE] = ACTIONS(2252), - [anon_sym_void] = ACTIONS(2252), - [anon_sym_delete] = ACTIONS(2252), - [anon_sym_PLUS_PLUS] = ACTIONS(2252), - [anon_sym_DASH_DASH] = ACTIONS(2252), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2252), - [sym_number] = ACTIONS(2252), - [sym_private_property_identifier] = ACTIONS(2252), - [sym_this] = ACTIONS(2252), - [sym_super] = ACTIONS(2252), - [sym_true] = ACTIONS(2252), - [sym_false] = ACTIONS(2252), - [sym_null] = ACTIONS(2252), - [sym_undefined] = ACTIONS(2252), - [anon_sym_AT] = ACTIONS(2252), - [anon_sym_static] = ACTIONS(2252), - [anon_sym_readonly] = ACTIONS(2252), - [anon_sym_get] = ACTIONS(2252), - [anon_sym_set] = ACTIONS(2252), - [anon_sym_declare] = ACTIONS(2252), - [anon_sym_public] = ACTIONS(2252), - [anon_sym_private] = ACTIONS(2252), - [anon_sym_protected] = ACTIONS(2252), - [anon_sym_override] = ACTIONS(2252), - [anon_sym_module] = ACTIONS(2252), - [anon_sym_any] = ACTIONS(2252), - [anon_sym_number] = ACTIONS(2252), - [anon_sym_boolean] = ACTIONS(2252), - [anon_sym_string] = ACTIONS(2252), - [anon_sym_symbol] = ACTIONS(2252), - [anon_sym_object] = ACTIONS(2252), - [anon_sym_abstract] = ACTIONS(2252), - [anon_sym_satisfies] = ACTIONS(2252), - [anon_sym_interface] = ACTIONS(2252), - [anon_sym_enum] = ACTIONS(2252), - [sym__automatic_semicolon] = ACTIONS(2254), - [sym__ternary_qmark] = ACTIONS(2254), + [ts_builtin_sym_end] = ACTIONS(2252), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_as] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_COMMA] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_else] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_in] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2250), + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_QMARK_DOT] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2250), + [anon_sym_GT_GT] = ACTIONS(2250), + [anon_sym_GT_GT_GT] = ACTIONS(2250), + [anon_sym_LT_LT] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2250), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_PERCENT] = ACTIONS(2250), + [anon_sym_STAR_STAR] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_LT_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2250), + [anon_sym_BANG_EQ] = ACTIONS(2250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2250), + [anon_sym_GT_EQ] = ACTIONS(2250), + [anon_sym_QMARK_QMARK] = ACTIONS(2250), + [anon_sym_instanceof] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_satisfies] = ACTIONS(2250), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [sym__automatic_semicolon] = ACTIONS(2252), + [sym__ternary_qmark] = ACTIONS(2252), [sym_html_comment] = ACTIONS(5), }, [343] = { [sym_comment] = STATE(343), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2246), - [anon_sym_default] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_as] = ACTIONS(2246), - [anon_sym_namespace] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_COMMA] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2246), - [anon_sym_import] = ACTIONS(2246), - [anon_sym_with] = ACTIONS(2246), - [anon_sym_var] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2246), - [anon_sym_in] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_debugger] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_throw] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_case] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LTtemplate_GT] = ACTIONS(2246), - [anon_sym_GT] = ACTIONS(2246), - [anon_sym_DOT] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_class] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_QMARK_DOT] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(2246), - [anon_sym_AMP_AMP] = ACTIONS(2246), - [anon_sym_PIPE_PIPE] = ACTIONS(2246), - [anon_sym_GT_GT] = ACTIONS(2246), - [anon_sym_GT_GT_GT] = ACTIONS(2246), - [anon_sym_LT_LT] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_PERCENT] = ACTIONS(2246), - [anon_sym_STAR_STAR] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_LT_EQ] = ACTIONS(2246), - [anon_sym_EQ_EQ] = ACTIONS(2246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), - [anon_sym_BANG_EQ] = ACTIONS(2246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), - [anon_sym_GT_EQ] = ACTIONS(2246), - [anon_sym_QMARK_QMARK] = ACTIONS(2246), - [anon_sym_instanceof] = ACTIONS(2246), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2246), - [anon_sym_delete] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_private_property_identifier] = ACTIONS(2246), - [sym_this] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_undefined] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_readonly] = ACTIONS(2246), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_declare] = ACTIONS(2246), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_override] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_any] = ACTIONS(2246), - [anon_sym_number] = ACTIONS(2246), - [anon_sym_boolean] = ACTIONS(2246), - [anon_sym_string] = ACTIONS(2246), - [anon_sym_symbol] = ACTIONS(2246), - [anon_sym_object] = ACTIONS(2246), - [anon_sym_abstract] = ACTIONS(2246), - [anon_sym_satisfies] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), - [sym__automatic_semicolon] = ACTIONS(2248), - [sym__ternary_qmark] = ACTIONS(2248), + [ts_builtin_sym_end] = ACTIONS(2262), + [sym_identifier] = ACTIONS(2260), + [anon_sym_export] = ACTIONS(2260), + [anon_sym_STAR] = ACTIONS(2260), + [anon_sym_type] = ACTIONS(2260), + [anon_sym_as] = ACTIONS(2260), + [anon_sym_namespace] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_typeof] = ACTIONS(2260), + [anon_sym_import] = ACTIONS(2260), + [anon_sym_with] = ACTIONS(2260), + [anon_sym_var] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [anon_sym_BANG] = ACTIONS(2260), + [anon_sym_else] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_switch] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_await] = ACTIONS(2260), + [anon_sym_in] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), + [anon_sym_try] = ACTIONS(2260), + [anon_sym_break] = ACTIONS(2260), + [anon_sym_continue] = ACTIONS(2260), + [anon_sym_debugger] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_throw] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_yield] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_LTtemplate_GT] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2260), + [anon_sym_DOT] = ACTIONS(2260), + [anon_sym_DQUOTE] = ACTIONS(2260), + [anon_sym_SQUOTE] = ACTIONS(2260), + [anon_sym_class] = ACTIONS(2260), + [anon_sym_async] = ACTIONS(2260), + [anon_sym_function] = ACTIONS(2260), + [anon_sym_QMARK_DOT] = ACTIONS(2260), + [anon_sym_new] = ACTIONS(2260), + [anon_sym_using] = ACTIONS(2260), + [anon_sym_AMP_AMP] = ACTIONS(2260), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(2260), + [anon_sym_GT_GT_GT] = ACTIONS(2260), + [anon_sym_LT_LT] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2260), + [anon_sym_CARET] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2260), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2260), + [anon_sym_PERCENT] = ACTIONS(2260), + [anon_sym_STAR_STAR] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2260), + [anon_sym_LT_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), + [anon_sym_BANG_EQ] = ACTIONS(2260), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), + [anon_sym_GT_EQ] = ACTIONS(2260), + [anon_sym_QMARK_QMARK] = ACTIONS(2260), + [anon_sym_instanceof] = ACTIONS(2260), + [anon_sym_TILDE] = ACTIONS(2260), + [anon_sym_void] = ACTIONS(2260), + [anon_sym_delete] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2260), + [sym_number] = ACTIONS(2260), + [sym_private_property_identifier] = ACTIONS(2260), + [sym_this] = ACTIONS(2260), + [sym_super] = ACTIONS(2260), + [sym_true] = ACTIONS(2260), + [sym_false] = ACTIONS(2260), + [sym_null] = ACTIONS(2260), + [sym_undefined] = ACTIONS(2260), + [anon_sym_AT] = ACTIONS(2260), + [anon_sym_static] = ACTIONS(2260), + [anon_sym_readonly] = ACTIONS(2260), + [anon_sym_get] = ACTIONS(2260), + [anon_sym_set] = ACTIONS(2260), + [anon_sym_declare] = ACTIONS(2260), + [anon_sym_public] = ACTIONS(2260), + [anon_sym_private] = ACTIONS(2260), + [anon_sym_protected] = ACTIONS(2260), + [anon_sym_override] = ACTIONS(2260), + [anon_sym_module] = ACTIONS(2260), + [anon_sym_any] = ACTIONS(2260), + [anon_sym_number] = ACTIONS(2260), + [anon_sym_boolean] = ACTIONS(2260), + [anon_sym_string] = ACTIONS(2260), + [anon_sym_symbol] = ACTIONS(2260), + [anon_sym_object] = ACTIONS(2260), + [anon_sym_abstract] = ACTIONS(2260), + [anon_sym_satisfies] = ACTIONS(2260), + [anon_sym_interface] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), + [sym__automatic_semicolon] = ACTIONS(2262), + [sym__ternary_qmark] = ACTIONS(2262), [sym_html_comment] = ACTIONS(5), }, [344] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2884), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_spread_element] = STATE(6435), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), [sym_comment] = STATE(344), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6417), + [ts_builtin_sym_end] = ACTIONS(2324), + [sym_identifier] = ACTIONS(2182), + [anon_sym_export] = ACTIONS(2182), + [anon_sym_STAR] = ACTIONS(2184), + [anon_sym_type] = ACTIONS(2182), + [anon_sym_as] = ACTIONS(2184), + [anon_sym_namespace] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_COMMA] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2182), + [anon_sym_typeof] = ACTIONS(2182), + [anon_sym_import] = ACTIONS(2182), + [anon_sym_with] = ACTIONS(2182), + [anon_sym_var] = ACTIONS(2182), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_BANG] = ACTIONS(2182), + [anon_sym_else] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_switch] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_LPAREN] = ACTIONS(2182), + [anon_sym_await] = ACTIONS(2182), + [anon_sym_in] = ACTIONS(2184), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_do] = ACTIONS(2182), + [anon_sym_try] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_debugger] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_throw] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2182), + [anon_sym_yield] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LTtemplate_GT] = ACTIONS(2182), + [anon_sym_GT] = ACTIONS(2184), + [anon_sym_DOT] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2182), + [anon_sym_SQUOTE] = ACTIONS(2182), + [anon_sym_class] = ACTIONS(2182), + [anon_sym_async] = ACTIONS(2182), + [anon_sym_function] = ACTIONS(2182), + [anon_sym_QMARK_DOT] = ACTIONS(2184), + [anon_sym_new] = ACTIONS(2182), + [anon_sym_using] = ACTIONS(2182), + [anon_sym_AMP_AMP] = ACTIONS(2184), + [anon_sym_PIPE_PIPE] = ACTIONS(2184), + [anon_sym_GT_GT] = ACTIONS(2184), + [anon_sym_GT_GT_GT] = ACTIONS(2184), + [anon_sym_LT_LT] = ACTIONS(2184), + [anon_sym_AMP] = ACTIONS(2184), + [anon_sym_CARET] = ACTIONS(2184), + [anon_sym_PIPE] = ACTIONS(2184), + [anon_sym_PLUS] = ACTIONS(2182), + [anon_sym_DASH] = ACTIONS(2182), + [anon_sym_SLASH] = ACTIONS(2182), + [anon_sym_PERCENT] = ACTIONS(2184), + [anon_sym_STAR_STAR] = ACTIONS(2184), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_LT_EQ] = ACTIONS(2184), + [anon_sym_EQ_EQ] = ACTIONS(2184), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2184), + [anon_sym_BANG_EQ] = ACTIONS(2184), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2184), + [anon_sym_GT_EQ] = ACTIONS(2184), + [anon_sym_QMARK_QMARK] = ACTIONS(2184), + [anon_sym_instanceof] = ACTIONS(2184), + [anon_sym_TILDE] = ACTIONS(2182), + [anon_sym_void] = ACTIONS(2182), + [anon_sym_delete] = ACTIONS(2182), + [anon_sym_PLUS_PLUS] = ACTIONS(2182), + [anon_sym_DASH_DASH] = ACTIONS(2182), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2182), + [sym_number] = ACTIONS(2182), + [sym_private_property_identifier] = ACTIONS(2182), + [sym_this] = ACTIONS(2182), + [sym_super] = ACTIONS(2182), + [sym_true] = ACTIONS(2182), + [sym_false] = ACTIONS(2182), + [sym_null] = ACTIONS(2182), + [sym_undefined] = ACTIONS(2182), + [anon_sym_AT] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_readonly] = ACTIONS(2182), + [anon_sym_get] = ACTIONS(2182), + [anon_sym_set] = ACTIONS(2182), + [anon_sym_declare] = ACTIONS(2182), + [anon_sym_public] = ACTIONS(2182), + [anon_sym_private] = ACTIONS(2182), + [anon_sym_protected] = ACTIONS(2182), + [anon_sym_override] = ACTIONS(2182), + [anon_sym_module] = ACTIONS(2182), + [anon_sym_any] = ACTIONS(2182), + [anon_sym_number] = ACTIONS(2182), + [anon_sym_boolean] = ACTIONS(2182), + [anon_sym_string] = ACTIONS(2182), + [anon_sym_symbol] = ACTIONS(2182), + [anon_sym_object] = ACTIONS(2182), + [anon_sym_abstract] = ACTIONS(2182), + [anon_sym_satisfies] = ACTIONS(2184), + [anon_sym_interface] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), + [sym__automatic_semicolon] = ACTIONS(2186), + [sym__ternary_qmark] = ACTIONS(2186), + [sym_html_comment] = ACTIONS(5), + }, + [345] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2738), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_spread_element] = STATE(5934), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(345), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5935), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(2320), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(2326), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2326), + [anon_sym_RPAREN] = ACTIONS(2328), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2330), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -77054,99 +76882,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [345] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2892), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_spread_element] = STATE(6182), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(345), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6180), + [346] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2695), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_spread_element] = STATE(5814), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(346), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5815), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(2320), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(2326), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2328), + [anon_sym_RPAREN] = ACTIONS(2332), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2330), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -77164,209 +76992,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [346] = { - [sym_comment] = STATE(346), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_as] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_in] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_case] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_GT] = ACTIONS(2140), - [anon_sym_DOT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_QMARK_DOT] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_AMP_AMP] = ACTIONS(2140), - [anon_sym_PIPE_PIPE] = ACTIONS(2140), - [anon_sym_GT_GT] = ACTIONS(2140), - [anon_sym_GT_GT_GT] = ACTIONS(2140), - [anon_sym_LT_LT] = ACTIONS(2140), - [anon_sym_AMP] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_PERCENT] = ACTIONS(2140), - [anon_sym_STAR_STAR] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_LT_EQ] = ACTIONS(2140), - [anon_sym_EQ_EQ] = ACTIONS(2140), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2140), - [anon_sym_BANG_EQ] = ACTIONS(2140), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2140), - [anon_sym_GT_EQ] = ACTIONS(2140), - [anon_sym_QMARK_QMARK] = ACTIONS(2140), - [anon_sym_instanceof] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_satisfies] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(2330), - [sym__ternary_qmark] = ACTIONS(2166), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, [347] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2923), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_spread_element] = STATE(6248), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_spread_element] = STATE(6264), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(347), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6245), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(6265), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(2320), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(2326), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2332), + [anon_sym_RPAREN] = ACTIONS(2334), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2330), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -77384,979 +77102,209 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, [348] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2735), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(348), - [ts_builtin_sym_end] = ACTIONS(2248), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_as] = ACTIONS(2246), - [anon_sym_namespace] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_COMMA] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2246), - [anon_sym_import] = ACTIONS(2246), - [anon_sym_with] = ACTIONS(2246), - [anon_sym_var] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_else] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2246), - [anon_sym_in] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_debugger] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_throw] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LTtemplate_GT] = ACTIONS(2246), - [anon_sym_GT] = ACTIONS(2246), - [anon_sym_DOT] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_class] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_QMARK_DOT] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(2246), - [anon_sym_AMP_AMP] = ACTIONS(2246), - [anon_sym_PIPE_PIPE] = ACTIONS(2246), - [anon_sym_GT_GT] = ACTIONS(2246), - [anon_sym_GT_GT_GT] = ACTIONS(2246), - [anon_sym_LT_LT] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_PERCENT] = ACTIONS(2246), - [anon_sym_STAR_STAR] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_LT_EQ] = ACTIONS(2246), - [anon_sym_EQ_EQ] = ACTIONS(2246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), - [anon_sym_BANG_EQ] = ACTIONS(2246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), - [anon_sym_GT_EQ] = ACTIONS(2246), - [anon_sym_QMARK_QMARK] = ACTIONS(2246), - [anon_sym_instanceof] = ACTIONS(2246), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2246), - [anon_sym_delete] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_private_property_identifier] = ACTIONS(2246), - [sym_this] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_undefined] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_readonly] = ACTIONS(2246), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_declare] = ACTIONS(2246), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_override] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_any] = ACTIONS(2246), - [anon_sym_number] = ACTIONS(2246), - [anon_sym_boolean] = ACTIONS(2246), - [anon_sym_string] = ACTIONS(2246), - [anon_sym_symbol] = ACTIONS(2246), - [anon_sym_object] = ACTIONS(2246), - [anon_sym_abstract] = ACTIONS(2246), - [anon_sym_satisfies] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), - [sym__automatic_semicolon] = ACTIONS(2248), - [sym__ternary_qmark] = ACTIONS(2248), - [sym_html_comment] = ACTIONS(5), - }, - [349] = { - [sym_comment] = STATE(349), - [sym_identifier] = ACTIONS(2252), - [anon_sym_export] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2252), - [anon_sym_default] = ACTIONS(2252), - [anon_sym_type] = ACTIONS(2252), - [anon_sym_as] = ACTIONS(2252), - [anon_sym_namespace] = ACTIONS(2252), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_COMMA] = ACTIONS(2252), - [anon_sym_RBRACE] = ACTIONS(2252), - [anon_sym_typeof] = ACTIONS(2252), - [anon_sym_import] = ACTIONS(2252), - [anon_sym_with] = ACTIONS(2252), - [anon_sym_var] = ACTIONS(2252), - [anon_sym_let] = ACTIONS(2252), - [anon_sym_const] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_switch] = ACTIONS(2252), - [anon_sym_for] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_await] = ACTIONS(2252), - [anon_sym_in] = ACTIONS(2252), - [anon_sym_while] = ACTIONS(2252), - [anon_sym_do] = ACTIONS(2252), - [anon_sym_try] = ACTIONS(2252), - [anon_sym_break] = ACTIONS(2252), - [anon_sym_continue] = ACTIONS(2252), - [anon_sym_debugger] = ACTIONS(2252), - [anon_sym_return] = ACTIONS(2252), - [anon_sym_throw] = ACTIONS(2252), - [anon_sym_SEMI] = ACTIONS(2252), - [anon_sym_case] = ACTIONS(2252), - [anon_sym_yield] = ACTIONS(2252), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_LTtemplate_GT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_DQUOTE] = ACTIONS(2252), - [anon_sym_SQUOTE] = ACTIONS(2252), - [anon_sym_class] = ACTIONS(2252), - [anon_sym_async] = ACTIONS(2252), - [anon_sym_function] = ACTIONS(2252), - [anon_sym_QMARK_DOT] = ACTIONS(2252), - [anon_sym_new] = ACTIONS(2252), - [anon_sym_using] = ACTIONS(2252), - [anon_sym_AMP_AMP] = ACTIONS(2252), - [anon_sym_PIPE_PIPE] = ACTIONS(2252), - [anon_sym_GT_GT] = ACTIONS(2252), - [anon_sym_GT_GT_GT] = ACTIONS(2252), - [anon_sym_LT_LT] = ACTIONS(2252), - [anon_sym_AMP] = ACTIONS(2252), - [anon_sym_CARET] = ACTIONS(2252), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_PLUS] = ACTIONS(2252), - [anon_sym_DASH] = ACTIONS(2252), - [anon_sym_SLASH] = ACTIONS(2252), - [anon_sym_PERCENT] = ACTIONS(2252), - [anon_sym_STAR_STAR] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2252), - [anon_sym_EQ_EQ] = ACTIONS(2252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2252), - [anon_sym_BANG_EQ] = ACTIONS(2252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2252), - [anon_sym_GT_EQ] = ACTIONS(2252), - [anon_sym_QMARK_QMARK] = ACTIONS(2252), - [anon_sym_instanceof] = ACTIONS(2252), - [anon_sym_TILDE] = ACTIONS(2252), - [anon_sym_void] = ACTIONS(2252), - [anon_sym_delete] = ACTIONS(2252), - [anon_sym_PLUS_PLUS] = ACTIONS(2252), - [anon_sym_DASH_DASH] = ACTIONS(2252), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2252), - [sym_number] = ACTIONS(2252), - [sym_private_property_identifier] = ACTIONS(2252), - [sym_this] = ACTIONS(2252), - [sym_super] = ACTIONS(2252), - [sym_true] = ACTIONS(2252), - [sym_false] = ACTIONS(2252), - [sym_null] = ACTIONS(2252), - [sym_undefined] = ACTIONS(2252), - [anon_sym_AT] = ACTIONS(2252), - [anon_sym_static] = ACTIONS(2252), - [anon_sym_readonly] = ACTIONS(2252), - [anon_sym_get] = ACTIONS(2252), - [anon_sym_set] = ACTIONS(2252), - [anon_sym_declare] = ACTIONS(2252), - [anon_sym_public] = ACTIONS(2252), - [anon_sym_private] = ACTIONS(2252), - [anon_sym_protected] = ACTIONS(2252), - [anon_sym_override] = ACTIONS(2252), - [anon_sym_module] = ACTIONS(2252), - [anon_sym_any] = ACTIONS(2252), - [anon_sym_number] = ACTIONS(2252), - [anon_sym_boolean] = ACTIONS(2252), - [anon_sym_string] = ACTIONS(2252), - [anon_sym_symbol] = ACTIONS(2252), - [anon_sym_object] = ACTIONS(2252), - [anon_sym_abstract] = ACTIONS(2252), - [anon_sym_satisfies] = ACTIONS(2252), - [anon_sym_interface] = ACTIONS(2252), - [anon_sym_enum] = ACTIONS(2252), - [sym__automatic_semicolon] = ACTIONS(2254), - [sym__ternary_qmark] = ACTIONS(2254), - [sym_html_comment] = ACTIONS(5), - }, - [350] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(350), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(21), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), [anon_sym_LBRACK] = ACTIONS(2061), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1487), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), [anon_sym_AMP] = ACTIONS(2061), [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1499), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [anon_sym_extends] = ACTIONS(2061), [sym_html_comment] = ACTIONS(5), }, - [351] = { - [sym_comment] = STATE(351), - [sym_identifier] = ACTIONS(2258), - [anon_sym_export] = ACTIONS(2258), - [anon_sym_STAR] = ACTIONS(2258), - [anon_sym_default] = ACTIONS(2258), - [anon_sym_type] = ACTIONS(2258), - [anon_sym_as] = ACTIONS(2258), - [anon_sym_namespace] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_COMMA] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2258), - [anon_sym_import] = ACTIONS(2258), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_var] = ACTIONS(2258), - [anon_sym_let] = ACTIONS(2258), - [anon_sym_const] = ACTIONS(2258), - [anon_sym_BANG] = ACTIONS(2258), - [anon_sym_if] = ACTIONS(2258), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_for] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_await] = ACTIONS(2258), - [anon_sym_in] = ACTIONS(2258), - [anon_sym_while] = ACTIONS(2258), - [anon_sym_do] = ACTIONS(2258), - [anon_sym_try] = ACTIONS(2258), - [anon_sym_break] = ACTIONS(2258), - [anon_sym_continue] = ACTIONS(2258), - [anon_sym_debugger] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(2258), - [anon_sym_throw] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2258), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_LTtemplate_GT] = ACTIONS(2258), - [anon_sym_GT] = ACTIONS(2258), - [anon_sym_DOT] = ACTIONS(2258), - [anon_sym_DQUOTE] = ACTIONS(2258), - [anon_sym_SQUOTE] = ACTIONS(2258), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2258), - [anon_sym_function] = ACTIONS(2258), - [anon_sym_QMARK_DOT] = ACTIONS(2258), - [anon_sym_new] = ACTIONS(2258), - [anon_sym_using] = ACTIONS(2258), - [anon_sym_AMP_AMP] = ACTIONS(2258), - [anon_sym_PIPE_PIPE] = ACTIONS(2258), - [anon_sym_GT_GT] = ACTIONS(2258), - [anon_sym_GT_GT_GT] = ACTIONS(2258), - [anon_sym_LT_LT] = ACTIONS(2258), - [anon_sym_AMP] = ACTIONS(2258), - [anon_sym_CARET] = ACTIONS(2258), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2258), - [anon_sym_PERCENT] = ACTIONS(2258), - [anon_sym_STAR_STAR] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2258), - [anon_sym_LT_EQ] = ACTIONS(2258), - [anon_sym_EQ_EQ] = ACTIONS(2258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2258), - [anon_sym_BANG_EQ] = ACTIONS(2258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2258), - [anon_sym_GT_EQ] = ACTIONS(2258), - [anon_sym_QMARK_QMARK] = ACTIONS(2258), - [anon_sym_instanceof] = ACTIONS(2258), - [anon_sym_TILDE] = ACTIONS(2258), - [anon_sym_void] = ACTIONS(2258), - [anon_sym_delete] = ACTIONS(2258), - [anon_sym_PLUS_PLUS] = ACTIONS(2258), - [anon_sym_DASH_DASH] = ACTIONS(2258), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2258), - [sym_number] = ACTIONS(2258), - [sym_private_property_identifier] = ACTIONS(2258), - [sym_this] = ACTIONS(2258), - [sym_super] = ACTIONS(2258), - [sym_true] = ACTIONS(2258), - [sym_false] = ACTIONS(2258), - [sym_null] = ACTIONS(2258), - [sym_undefined] = ACTIONS(2258), - [anon_sym_AT] = ACTIONS(2258), - [anon_sym_static] = ACTIONS(2258), - [anon_sym_readonly] = ACTIONS(2258), - [anon_sym_get] = ACTIONS(2258), - [anon_sym_set] = ACTIONS(2258), - [anon_sym_declare] = ACTIONS(2258), - [anon_sym_public] = ACTIONS(2258), - [anon_sym_private] = ACTIONS(2258), - [anon_sym_protected] = ACTIONS(2258), - [anon_sym_override] = ACTIONS(2258), - [anon_sym_module] = ACTIONS(2258), - [anon_sym_any] = ACTIONS(2258), - [anon_sym_number] = ACTIONS(2258), - [anon_sym_boolean] = ACTIONS(2258), - [anon_sym_string] = ACTIONS(2258), - [anon_sym_symbol] = ACTIONS(2258), - [anon_sym_object] = ACTIONS(2258), - [anon_sym_abstract] = ACTIONS(2258), - [anon_sym_satisfies] = ACTIONS(2258), - [anon_sym_interface] = ACTIONS(2258), - [anon_sym_enum] = ACTIONS(2258), - [sym__automatic_semicolon] = ACTIONS(2260), - [sym__ternary_qmark] = ACTIONS(2260), - [sym_html_comment] = ACTIONS(5), - }, - [352] = { - [sym_comment] = STATE(352), - [ts_builtin_sym_end] = ACTIONS(2206), - [sym_identifier] = ACTIONS(2204), - [anon_sym_export] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_as] = ACTIONS(2204), - [anon_sym_namespace] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_typeof] = ACTIONS(2204), - [anon_sym_import] = ACTIONS(2204), - [anon_sym_with] = ACTIONS(2204), - [anon_sym_var] = ACTIONS(2204), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_else] = ACTIONS(2204), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_switch] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_await] = ACTIONS(2204), - [anon_sym_in] = ACTIONS(2204), - [anon_sym_while] = ACTIONS(2204), - [anon_sym_do] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_debugger] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_throw] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_yield] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_LTtemplate_GT] = ACTIONS(2204), - [anon_sym_GT] = ACTIONS(2204), - [anon_sym_DOT] = ACTIONS(2204), - [anon_sym_DQUOTE] = ACTIONS(2204), - [anon_sym_SQUOTE] = ACTIONS(2204), - [anon_sym_class] = ACTIONS(2204), - [anon_sym_async] = ACTIONS(2204), - [anon_sym_function] = ACTIONS(2204), - [anon_sym_QMARK_DOT] = ACTIONS(2204), - [anon_sym_new] = ACTIONS(2204), - [anon_sym_using] = ACTIONS(2204), - [anon_sym_AMP_AMP] = ACTIONS(2204), - [anon_sym_PIPE_PIPE] = ACTIONS(2204), - [anon_sym_GT_GT] = ACTIONS(2204), - [anon_sym_GT_GT_GT] = ACTIONS(2204), - [anon_sym_LT_LT] = ACTIONS(2204), - [anon_sym_AMP] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_PIPE] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_PERCENT] = ACTIONS(2204), - [anon_sym_STAR_STAR] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_LT_EQ] = ACTIONS(2204), - [anon_sym_EQ_EQ] = ACTIONS(2204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2204), - [anon_sym_BANG_EQ] = ACTIONS(2204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2204), - [anon_sym_GT_EQ] = ACTIONS(2204), - [anon_sym_QMARK_QMARK] = ACTIONS(2204), - [anon_sym_instanceof] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_void] = ACTIONS(2204), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2204), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2204), - [sym_number] = ACTIONS(2204), - [sym_private_property_identifier] = ACTIONS(2204), - [sym_this] = ACTIONS(2204), - [sym_super] = ACTIONS(2204), - [sym_true] = ACTIONS(2204), - [sym_false] = ACTIONS(2204), - [sym_null] = ACTIONS(2204), - [sym_undefined] = ACTIONS(2204), - [anon_sym_AT] = ACTIONS(2204), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_readonly] = ACTIONS(2204), - [anon_sym_get] = ACTIONS(2204), - [anon_sym_set] = ACTIONS(2204), - [anon_sym_declare] = ACTIONS(2204), - [anon_sym_public] = ACTIONS(2204), - [anon_sym_private] = ACTIONS(2204), - [anon_sym_protected] = ACTIONS(2204), - [anon_sym_override] = ACTIONS(2204), - [anon_sym_module] = ACTIONS(2204), - [anon_sym_any] = ACTIONS(2204), - [anon_sym_number] = ACTIONS(2204), - [anon_sym_boolean] = ACTIONS(2204), - [anon_sym_string] = ACTIONS(2204), - [anon_sym_symbol] = ACTIONS(2204), - [anon_sym_object] = ACTIONS(2204), - [anon_sym_abstract] = ACTIONS(2204), - [anon_sym_satisfies] = ACTIONS(2204), - [anon_sym_interface] = ACTIONS(2204), - [anon_sym_enum] = ACTIONS(2204), - [sym__automatic_semicolon] = ACTIONS(2206), - [sym__ternary_qmark] = ACTIONS(2206), - [sym_html_comment] = ACTIONS(5), - }, - [353] = { - [sym_comment] = STATE(353), - [ts_builtin_sym_end] = ACTIONS(2276), - [sym_identifier] = ACTIONS(2274), - [anon_sym_export] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_type] = ACTIONS(2274), - [anon_sym_as] = ACTIONS(2274), - [anon_sym_namespace] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2274), - [anon_sym_COMMA] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_typeof] = ACTIONS(2274), - [anon_sym_import] = ACTIONS(2274), - [anon_sym_with] = ACTIONS(2274), - [anon_sym_var] = ACTIONS(2274), - [anon_sym_let] = ACTIONS(2274), - [anon_sym_const] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2274), - [anon_sym_else] = ACTIONS(2274), - [anon_sym_if] = ACTIONS(2274), - [anon_sym_switch] = ACTIONS(2274), - [anon_sym_for] = ACTIONS(2274), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_await] = ACTIONS(2274), - [anon_sym_in] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2274), - [anon_sym_do] = ACTIONS(2274), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_break] = ACTIONS(2274), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_debugger] = ACTIONS(2274), - [anon_sym_return] = ACTIONS(2274), - [anon_sym_throw] = ACTIONS(2274), - [anon_sym_SEMI] = ACTIONS(2274), - [anon_sym_yield] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_LTtemplate_GT] = ACTIONS(2274), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [anon_sym_SQUOTE] = ACTIONS(2274), - [anon_sym_class] = ACTIONS(2274), - [anon_sym_async] = ACTIONS(2274), - [anon_sym_function] = ACTIONS(2274), - [anon_sym_QMARK_DOT] = ACTIONS(2274), - [anon_sym_new] = ACTIONS(2274), - [anon_sym_using] = ACTIONS(2274), - [anon_sym_AMP_AMP] = ACTIONS(2274), - [anon_sym_PIPE_PIPE] = ACTIONS(2274), - [anon_sym_GT_GT] = ACTIONS(2274), - [anon_sym_GT_GT_GT] = ACTIONS(2274), - [anon_sym_LT_LT] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_CARET] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_SLASH] = ACTIONS(2274), - [anon_sym_PERCENT] = ACTIONS(2274), - [anon_sym_STAR_STAR] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2274), - [anon_sym_EQ_EQ] = ACTIONS(2274), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2274), - [anon_sym_GT_EQ] = ACTIONS(2274), - [anon_sym_QMARK_QMARK] = ACTIONS(2274), - [anon_sym_instanceof] = ACTIONS(2274), - [anon_sym_TILDE] = ACTIONS(2274), - [anon_sym_void] = ACTIONS(2274), - [anon_sym_delete] = ACTIONS(2274), - [anon_sym_PLUS_PLUS] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2274), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2274), - [sym_number] = ACTIONS(2274), - [sym_private_property_identifier] = ACTIONS(2274), - [sym_this] = ACTIONS(2274), - [sym_super] = ACTIONS(2274), - [sym_true] = ACTIONS(2274), - [sym_false] = ACTIONS(2274), - [sym_null] = ACTIONS(2274), - [sym_undefined] = ACTIONS(2274), - [anon_sym_AT] = ACTIONS(2274), - [anon_sym_static] = ACTIONS(2274), - [anon_sym_readonly] = ACTIONS(2274), - [anon_sym_get] = ACTIONS(2274), - [anon_sym_set] = ACTIONS(2274), - [anon_sym_declare] = ACTIONS(2274), - [anon_sym_public] = ACTIONS(2274), - [anon_sym_private] = ACTIONS(2274), - [anon_sym_protected] = ACTIONS(2274), - [anon_sym_override] = ACTIONS(2274), - [anon_sym_module] = ACTIONS(2274), - [anon_sym_any] = ACTIONS(2274), - [anon_sym_number] = ACTIONS(2274), - [anon_sym_boolean] = ACTIONS(2274), - [anon_sym_string] = ACTIONS(2274), - [anon_sym_symbol] = ACTIONS(2274), - [anon_sym_object] = ACTIONS(2274), - [anon_sym_abstract] = ACTIONS(2274), - [anon_sym_satisfies] = ACTIONS(2274), - [anon_sym_interface] = ACTIONS(2274), - [anon_sym_enum] = ACTIONS(2274), - [sym__automatic_semicolon] = ACTIONS(2276), - [sym__ternary_qmark] = ACTIONS(2276), - [sym_html_comment] = ACTIONS(5), - }, - [354] = { - [sym_comment] = STATE(354), - [sym_identifier] = ACTIONS(2216), - [anon_sym_export] = ACTIONS(2216), - [anon_sym_STAR] = ACTIONS(2216), - [anon_sym_default] = ACTIONS(2216), - [anon_sym_type] = ACTIONS(2216), - [anon_sym_as] = ACTIONS(2216), - [anon_sym_namespace] = ACTIONS(2216), - [anon_sym_LBRACE] = ACTIONS(2216), - [anon_sym_COMMA] = ACTIONS(2216), - [anon_sym_RBRACE] = ACTIONS(2216), - [anon_sym_typeof] = ACTIONS(2216), - [anon_sym_import] = ACTIONS(2216), - [anon_sym_with] = ACTIONS(2216), - [anon_sym_var] = ACTIONS(2216), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_const] = ACTIONS(2216), - [anon_sym_BANG] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_switch] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2216), - [anon_sym_await] = ACTIONS(2216), - [anon_sym_in] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2216), - [anon_sym_do] = ACTIONS(2216), - [anon_sym_try] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_debugger] = ACTIONS(2216), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_throw] = ACTIONS(2216), - [anon_sym_SEMI] = ACTIONS(2216), - [anon_sym_case] = ACTIONS(2216), - [anon_sym_yield] = ACTIONS(2216), - [anon_sym_LBRACK] = ACTIONS(2216), - [anon_sym_LTtemplate_GT] = ACTIONS(2216), - [anon_sym_GT] = ACTIONS(2216), - [anon_sym_DOT] = ACTIONS(2216), - [anon_sym_DQUOTE] = ACTIONS(2216), - [anon_sym_SQUOTE] = ACTIONS(2216), - [anon_sym_class] = ACTIONS(2216), - [anon_sym_async] = ACTIONS(2216), - [anon_sym_function] = ACTIONS(2216), - [anon_sym_QMARK_DOT] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2216), - [anon_sym_using] = ACTIONS(2216), - [anon_sym_AMP_AMP] = ACTIONS(2216), - [anon_sym_PIPE_PIPE] = ACTIONS(2216), - [anon_sym_GT_GT] = ACTIONS(2216), - [anon_sym_GT_GT_GT] = ACTIONS(2216), - [anon_sym_LT_LT] = ACTIONS(2216), - [anon_sym_AMP] = ACTIONS(2216), - [anon_sym_CARET] = ACTIONS(2216), - [anon_sym_PIPE] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2216), - [anon_sym_SLASH] = ACTIONS(2216), - [anon_sym_PERCENT] = ACTIONS(2216), - [anon_sym_STAR_STAR] = ACTIONS(2216), - [anon_sym_LT] = ACTIONS(2216), - [anon_sym_LT_EQ] = ACTIONS(2216), - [anon_sym_EQ_EQ] = ACTIONS(2216), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2216), - [anon_sym_BANG_EQ] = ACTIONS(2216), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2216), - [anon_sym_GT_EQ] = ACTIONS(2216), - [anon_sym_QMARK_QMARK] = ACTIONS(2216), - [anon_sym_instanceof] = ACTIONS(2216), - [anon_sym_TILDE] = ACTIONS(2216), - [anon_sym_void] = ACTIONS(2216), - [anon_sym_delete] = ACTIONS(2216), - [anon_sym_PLUS_PLUS] = ACTIONS(2216), - [anon_sym_DASH_DASH] = ACTIONS(2216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2216), - [sym_number] = ACTIONS(2216), - [sym_private_property_identifier] = ACTIONS(2216), - [sym_this] = ACTIONS(2216), - [sym_super] = ACTIONS(2216), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_undefined] = ACTIONS(2216), - [anon_sym_AT] = ACTIONS(2216), - [anon_sym_static] = ACTIONS(2216), - [anon_sym_readonly] = ACTIONS(2216), - [anon_sym_get] = ACTIONS(2216), - [anon_sym_set] = ACTIONS(2216), - [anon_sym_declare] = ACTIONS(2216), - [anon_sym_public] = ACTIONS(2216), - [anon_sym_private] = ACTIONS(2216), - [anon_sym_protected] = ACTIONS(2216), - [anon_sym_override] = ACTIONS(2216), - [anon_sym_module] = ACTIONS(2216), - [anon_sym_any] = ACTIONS(2216), - [anon_sym_number] = ACTIONS(2216), - [anon_sym_boolean] = ACTIONS(2216), - [anon_sym_string] = ACTIONS(2216), - [anon_sym_symbol] = ACTIONS(2216), - [anon_sym_object] = ACTIONS(2216), - [anon_sym_abstract] = ACTIONS(2216), - [anon_sym_satisfies] = ACTIONS(2216), - [anon_sym_interface] = ACTIONS(2216), - [anon_sym_enum] = ACTIONS(2216), - [sym__automatic_semicolon] = ACTIONS(2218), - [sym__ternary_qmark] = ACTIONS(2218), - [sym_html_comment] = ACTIONS(5), - }, - [355] = { - [sym_comment] = STATE(355), - [ts_builtin_sym_end] = ACTIONS(2218), - [sym_identifier] = ACTIONS(2216), - [anon_sym_export] = ACTIONS(2216), - [anon_sym_STAR] = ACTIONS(2216), - [anon_sym_type] = ACTIONS(2216), - [anon_sym_as] = ACTIONS(2216), - [anon_sym_namespace] = ACTIONS(2216), - [anon_sym_LBRACE] = ACTIONS(2216), - [anon_sym_COMMA] = ACTIONS(2216), - [anon_sym_RBRACE] = ACTIONS(2216), - [anon_sym_typeof] = ACTIONS(2216), - [anon_sym_import] = ACTIONS(2216), - [anon_sym_with] = ACTIONS(2216), - [anon_sym_var] = ACTIONS(2216), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_const] = ACTIONS(2216), - [anon_sym_BANG] = ACTIONS(2216), - [anon_sym_else] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_switch] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2216), - [anon_sym_await] = ACTIONS(2216), - [anon_sym_in] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2216), - [anon_sym_do] = ACTIONS(2216), - [anon_sym_try] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_debugger] = ACTIONS(2216), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_throw] = ACTIONS(2216), - [anon_sym_SEMI] = ACTIONS(2216), - [anon_sym_yield] = ACTIONS(2216), - [anon_sym_LBRACK] = ACTIONS(2216), - [anon_sym_LTtemplate_GT] = ACTIONS(2216), - [anon_sym_GT] = ACTIONS(2216), - [anon_sym_DOT] = ACTIONS(2216), - [anon_sym_DQUOTE] = ACTIONS(2216), - [anon_sym_SQUOTE] = ACTIONS(2216), - [anon_sym_class] = ACTIONS(2216), - [anon_sym_async] = ACTIONS(2216), - [anon_sym_function] = ACTIONS(2216), - [anon_sym_QMARK_DOT] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2216), - [anon_sym_using] = ACTIONS(2216), - [anon_sym_AMP_AMP] = ACTIONS(2216), - [anon_sym_PIPE_PIPE] = ACTIONS(2216), - [anon_sym_GT_GT] = ACTIONS(2216), - [anon_sym_GT_GT_GT] = ACTIONS(2216), - [anon_sym_LT_LT] = ACTIONS(2216), - [anon_sym_AMP] = ACTIONS(2216), - [anon_sym_CARET] = ACTIONS(2216), - [anon_sym_PIPE] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2216), - [anon_sym_SLASH] = ACTIONS(2216), - [anon_sym_PERCENT] = ACTIONS(2216), - [anon_sym_STAR_STAR] = ACTIONS(2216), - [anon_sym_LT] = ACTIONS(2216), - [anon_sym_LT_EQ] = ACTIONS(2216), - [anon_sym_EQ_EQ] = ACTIONS(2216), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2216), - [anon_sym_BANG_EQ] = ACTIONS(2216), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2216), - [anon_sym_GT_EQ] = ACTIONS(2216), - [anon_sym_QMARK_QMARK] = ACTIONS(2216), - [anon_sym_instanceof] = ACTIONS(2216), - [anon_sym_TILDE] = ACTIONS(2216), - [anon_sym_void] = ACTIONS(2216), - [anon_sym_delete] = ACTIONS(2216), - [anon_sym_PLUS_PLUS] = ACTIONS(2216), - [anon_sym_DASH_DASH] = ACTIONS(2216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2216), - [sym_number] = ACTIONS(2216), - [sym_private_property_identifier] = ACTIONS(2216), - [sym_this] = ACTIONS(2216), - [sym_super] = ACTIONS(2216), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_undefined] = ACTIONS(2216), - [anon_sym_AT] = ACTIONS(2216), - [anon_sym_static] = ACTIONS(2216), - [anon_sym_readonly] = ACTIONS(2216), - [anon_sym_get] = ACTIONS(2216), - [anon_sym_set] = ACTIONS(2216), - [anon_sym_declare] = ACTIONS(2216), - [anon_sym_public] = ACTIONS(2216), - [anon_sym_private] = ACTIONS(2216), - [anon_sym_protected] = ACTIONS(2216), - [anon_sym_override] = ACTIONS(2216), - [anon_sym_module] = ACTIONS(2216), - [anon_sym_any] = ACTIONS(2216), - [anon_sym_number] = ACTIONS(2216), - [anon_sym_boolean] = ACTIONS(2216), - [anon_sym_string] = ACTIONS(2216), - [anon_sym_symbol] = ACTIONS(2216), - [anon_sym_object] = ACTIONS(2216), - [anon_sym_abstract] = ACTIONS(2216), - [anon_sym_satisfies] = ACTIONS(2216), - [anon_sym_interface] = ACTIONS(2216), - [anon_sym_enum] = ACTIONS(2216), - [sym__automatic_semicolon] = ACTIONS(2218), - [sym__ternary_qmark] = ACTIONS(2218), - [sym_html_comment] = ACTIONS(5), - }, - [356] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2860), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_spread_element] = STATE(6015), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(356), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6016), + [349] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2728), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_spread_element] = STATE(5792), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(349), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5789), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(2320), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(2326), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2334), + [anon_sym_RPAREN] = ACTIONS(2336), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2330), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -78374,145 +77322,585 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [357] = { - [sym_comment] = STATE(357), - [sym_identifier] = ACTIONS(2274), - [anon_sym_export] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_default] = ACTIONS(2274), - [anon_sym_type] = ACTIONS(2274), - [anon_sym_as] = ACTIONS(2274), - [anon_sym_namespace] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2274), - [anon_sym_COMMA] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_typeof] = ACTIONS(2274), - [anon_sym_import] = ACTIONS(2274), - [anon_sym_with] = ACTIONS(2274), - [anon_sym_var] = ACTIONS(2274), - [anon_sym_let] = ACTIONS(2274), - [anon_sym_const] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2274), - [anon_sym_if] = ACTIONS(2274), - [anon_sym_switch] = ACTIONS(2274), - [anon_sym_for] = ACTIONS(2274), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_await] = ACTIONS(2274), - [anon_sym_in] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2274), - [anon_sym_do] = ACTIONS(2274), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_break] = ACTIONS(2274), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_debugger] = ACTIONS(2274), - [anon_sym_return] = ACTIONS(2274), - [anon_sym_throw] = ACTIONS(2274), - [anon_sym_SEMI] = ACTIONS(2274), - [anon_sym_case] = ACTIONS(2274), - [anon_sym_yield] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_LTtemplate_GT] = ACTIONS(2274), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [anon_sym_SQUOTE] = ACTIONS(2274), - [anon_sym_class] = ACTIONS(2274), - [anon_sym_async] = ACTIONS(2274), - [anon_sym_function] = ACTIONS(2274), - [anon_sym_QMARK_DOT] = ACTIONS(2274), - [anon_sym_new] = ACTIONS(2274), - [anon_sym_using] = ACTIONS(2274), - [anon_sym_AMP_AMP] = ACTIONS(2274), - [anon_sym_PIPE_PIPE] = ACTIONS(2274), - [anon_sym_GT_GT] = ACTIONS(2274), - [anon_sym_GT_GT_GT] = ACTIONS(2274), - [anon_sym_LT_LT] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_CARET] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_SLASH] = ACTIONS(2274), - [anon_sym_PERCENT] = ACTIONS(2274), - [anon_sym_STAR_STAR] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2274), - [anon_sym_EQ_EQ] = ACTIONS(2274), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2274), - [anon_sym_GT_EQ] = ACTIONS(2274), - [anon_sym_QMARK_QMARK] = ACTIONS(2274), - [anon_sym_instanceof] = ACTIONS(2274), - [anon_sym_TILDE] = ACTIONS(2274), - [anon_sym_void] = ACTIONS(2274), - [anon_sym_delete] = ACTIONS(2274), - [anon_sym_PLUS_PLUS] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2274), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2274), - [sym_number] = ACTIONS(2274), - [sym_private_property_identifier] = ACTIONS(2274), - [sym_this] = ACTIONS(2274), - [sym_super] = ACTIONS(2274), - [sym_true] = ACTIONS(2274), - [sym_false] = ACTIONS(2274), - [sym_null] = ACTIONS(2274), - [sym_undefined] = ACTIONS(2274), - [anon_sym_AT] = ACTIONS(2274), - [anon_sym_static] = ACTIONS(2274), - [anon_sym_readonly] = ACTIONS(2274), - [anon_sym_get] = ACTIONS(2274), - [anon_sym_set] = ACTIONS(2274), - [anon_sym_declare] = ACTIONS(2274), - [anon_sym_public] = ACTIONS(2274), - [anon_sym_private] = ACTIONS(2274), - [anon_sym_protected] = ACTIONS(2274), - [anon_sym_override] = ACTIONS(2274), - [anon_sym_module] = ACTIONS(2274), - [anon_sym_any] = ACTIONS(2274), - [anon_sym_number] = ACTIONS(2274), - [anon_sym_boolean] = ACTIONS(2274), - [anon_sym_string] = ACTIONS(2274), - [anon_sym_symbol] = ACTIONS(2274), - [anon_sym_object] = ACTIONS(2274), - [anon_sym_abstract] = ACTIONS(2274), - [anon_sym_satisfies] = ACTIONS(2274), - [anon_sym_interface] = ACTIONS(2274), - [anon_sym_enum] = ACTIONS(2274), - [sym__automatic_semicolon] = ACTIONS(2276), - [sym__ternary_qmark] = ACTIONS(2276), + [350] = { + [sym_comment] = STATE(350), + [sym_identifier] = ACTIONS(2300), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_STAR] = ACTIONS(2300), + [anon_sym_default] = ACTIONS(2300), + [anon_sym_type] = ACTIONS(2300), + [anon_sym_as] = ACTIONS(2300), + [anon_sym_namespace] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2300), + [anon_sym_COMMA] = ACTIONS(2300), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2300), + [anon_sym_import] = ACTIONS(2300), + [anon_sym_with] = ACTIONS(2300), + [anon_sym_var] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_switch] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_await] = ACTIONS(2300), + [anon_sym_in] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_debugger] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_throw] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_case] = ACTIONS(2300), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2300), + [anon_sym_LTtemplate_GT] = ACTIONS(2300), + [anon_sym_GT] = ACTIONS(2300), + [anon_sym_DOT] = ACTIONS(2300), + [anon_sym_DQUOTE] = ACTIONS(2300), + [anon_sym_SQUOTE] = ACTIONS(2300), + [anon_sym_class] = ACTIONS(2300), + [anon_sym_async] = ACTIONS(2300), + [anon_sym_function] = ACTIONS(2300), + [anon_sym_QMARK_DOT] = ACTIONS(2300), + [anon_sym_new] = ACTIONS(2300), + [anon_sym_using] = ACTIONS(2300), + [anon_sym_AMP_AMP] = ACTIONS(2300), + [anon_sym_PIPE_PIPE] = ACTIONS(2300), + [anon_sym_GT_GT] = ACTIONS(2300), + [anon_sym_GT_GT_GT] = ACTIONS(2300), + [anon_sym_LT_LT] = ACTIONS(2300), + [anon_sym_AMP] = ACTIONS(2300), + [anon_sym_CARET] = ACTIONS(2300), + [anon_sym_PIPE] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_PERCENT] = ACTIONS(2300), + [anon_sym_STAR_STAR] = ACTIONS(2300), + [anon_sym_LT] = ACTIONS(2300), + [anon_sym_LT_EQ] = ACTIONS(2300), + [anon_sym_EQ_EQ] = ACTIONS(2300), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2300), + [anon_sym_BANG_EQ] = ACTIONS(2300), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2300), + [anon_sym_GT_EQ] = ACTIONS(2300), + [anon_sym_QMARK_QMARK] = ACTIONS(2300), + [anon_sym_instanceof] = ACTIONS(2300), + [anon_sym_TILDE] = ACTIONS(2300), + [anon_sym_void] = ACTIONS(2300), + [anon_sym_delete] = ACTIONS(2300), + [anon_sym_PLUS_PLUS] = ACTIONS(2300), + [anon_sym_DASH_DASH] = ACTIONS(2300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2300), + [sym_number] = ACTIONS(2300), + [sym_private_property_identifier] = ACTIONS(2300), + [sym_this] = ACTIONS(2300), + [sym_super] = ACTIONS(2300), + [sym_true] = ACTIONS(2300), + [sym_false] = ACTIONS(2300), + [sym_null] = ACTIONS(2300), + [sym_undefined] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2300), + [anon_sym_static] = ACTIONS(2300), + [anon_sym_readonly] = ACTIONS(2300), + [anon_sym_get] = ACTIONS(2300), + [anon_sym_set] = ACTIONS(2300), + [anon_sym_declare] = ACTIONS(2300), + [anon_sym_public] = ACTIONS(2300), + [anon_sym_private] = ACTIONS(2300), + [anon_sym_protected] = ACTIONS(2300), + [anon_sym_override] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_any] = ACTIONS(2300), + [anon_sym_number] = ACTIONS(2300), + [anon_sym_boolean] = ACTIONS(2300), + [anon_sym_string] = ACTIONS(2300), + [anon_sym_symbol] = ACTIONS(2300), + [anon_sym_object] = ACTIONS(2300), + [anon_sym_abstract] = ACTIONS(2300), + [anon_sym_satisfies] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2300), + [anon_sym_enum] = ACTIONS(2300), + [sym__automatic_semicolon] = ACTIONS(2302), + [sym__ternary_qmark] = ACTIONS(2302), [sym_html_comment] = ACTIONS(5), }, - [358] = { - [sym_comment] = STATE(358), + [351] = { + [sym_statement_block] = STATE(433), + [sym_comment] = STATE(351), + [ts_builtin_sym_end] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_as] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2338), + [anon_sym_COMMA] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_in] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(2340), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_QMARK_DOT] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_AMP_AMP] = ACTIONS(2126), + [anon_sym_PIPE_PIPE] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(2126), + [anon_sym_GT_GT_GT] = ACTIONS(2126), + [anon_sym_LT_LT] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_PERCENT] = ACTIONS(2126), + [anon_sym_STAR_STAR] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_LT_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), + [anon_sym_GT_EQ] = ACTIONS(2126), + [anon_sym_QMARK_QMARK] = ACTIONS(2126), + [anon_sym_instanceof] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_satisfies] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [sym__automatic_semicolon] = ACTIONS(2130), + [sym__ternary_qmark] = ACTIONS(2130), + [sym_html_comment] = ACTIONS(5), + }, + [352] = { + [sym_comment] = STATE(352), + [sym_identifier] = ACTIONS(2292), + [anon_sym_export] = ACTIONS(2292), + [anon_sym_STAR] = ACTIONS(2294), + [anon_sym_default] = ACTIONS(2292), + [anon_sym_type] = ACTIONS(2292), + [anon_sym_as] = ACTIONS(2294), + [anon_sym_namespace] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_typeof] = ACTIONS(2292), + [anon_sym_import] = ACTIONS(2292), + [anon_sym_with] = ACTIONS(2292), + [anon_sym_var] = ACTIONS(2292), + [anon_sym_let] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_if] = ACTIONS(2292), + [anon_sym_switch] = ACTIONS(2292), + [anon_sym_for] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_await] = ACTIONS(2292), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(2292), + [anon_sym_try] = ACTIONS(2292), + [anon_sym_break] = ACTIONS(2292), + [anon_sym_continue] = ACTIONS(2292), + [anon_sym_debugger] = ACTIONS(2292), + [anon_sym_return] = ACTIONS(2292), + [anon_sym_throw] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_case] = ACTIONS(2292), + [anon_sym_yield] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2292), + [anon_sym_LTtemplate_GT] = ACTIONS(2292), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_DOT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_SQUOTE] = ACTIONS(2292), + [anon_sym_class] = ACTIONS(2292), + [anon_sym_async] = ACTIONS(2292), + [anon_sym_function] = ACTIONS(2292), + [anon_sym_QMARK_DOT] = ACTIONS(2294), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_using] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2294), + [anon_sym_PIPE_PIPE] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2294), + [anon_sym_GT_GT_GT] = ACTIONS(2294), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_CARET] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_SLASH] = ACTIONS(2292), + [anon_sym_PERCENT] = ACTIONS(2294), + [anon_sym_STAR_STAR] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2292), + [anon_sym_LT_EQ] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2294), + [anon_sym_BANG_EQ] = ACTIONS(2294), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2294), + [anon_sym_GT_EQ] = ACTIONS(2294), + [anon_sym_QMARK_QMARK] = ACTIONS(2294), + [anon_sym_instanceof] = ACTIONS(2294), + [anon_sym_TILDE] = ACTIONS(2292), + [anon_sym_void] = ACTIONS(2292), + [anon_sym_delete] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2292), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2292), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [sym_this] = ACTIONS(2292), + [sym_super] = ACTIONS(2292), + [sym_true] = ACTIONS(2292), + [sym_false] = ACTIONS(2292), + [sym_null] = ACTIONS(2292), + [sym_undefined] = ACTIONS(2292), + [anon_sym_AT] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2292), + [anon_sym_readonly] = ACTIONS(2292), + [anon_sym_get] = ACTIONS(2292), + [anon_sym_set] = ACTIONS(2292), + [anon_sym_declare] = ACTIONS(2292), + [anon_sym_public] = ACTIONS(2292), + [anon_sym_private] = ACTIONS(2292), + [anon_sym_protected] = ACTIONS(2292), + [anon_sym_override] = ACTIONS(2292), + [anon_sym_module] = ACTIONS(2292), + [anon_sym_any] = ACTIONS(2292), + [anon_sym_number] = ACTIONS(2292), + [anon_sym_boolean] = ACTIONS(2292), + [anon_sym_string] = ACTIONS(2292), + [anon_sym_symbol] = ACTIONS(2292), + [anon_sym_object] = ACTIONS(2292), + [anon_sym_abstract] = ACTIONS(2292), + [anon_sym_satisfies] = ACTIONS(2294), + [anon_sym_interface] = ACTIONS(2292), + [anon_sym_enum] = ACTIONS(2292), + [sym__automatic_semicolon] = ACTIONS(2342), + [sym__ternary_qmark] = ACTIONS(2298), + [sym_html_comment] = ACTIONS(5), + }, + [353] = { + [sym_comment] = STATE(353), + [ts_builtin_sym_end] = ACTIONS(2174), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_STAR] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_as] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_COMMA] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2172), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_in] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LTtemplate_GT] = ACTIONS(2172), + [anon_sym_GT] = ACTIONS(2172), + [anon_sym_DOT] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_QMARK_DOT] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_using] = ACTIONS(2172), + [anon_sym_AMP_AMP] = ACTIONS(2172), + [anon_sym_PIPE_PIPE] = ACTIONS(2172), + [anon_sym_GT_GT] = ACTIONS(2172), + [anon_sym_GT_GT_GT] = ACTIONS(2172), + [anon_sym_LT_LT] = ACTIONS(2172), + [anon_sym_AMP] = ACTIONS(2172), + [anon_sym_CARET] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_PERCENT] = ACTIONS(2172), + [anon_sym_STAR_STAR] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(2172), + [anon_sym_LT_EQ] = ACTIONS(2172), + [anon_sym_EQ_EQ] = ACTIONS(2172), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2172), + [anon_sym_BANG_EQ] = ACTIONS(2172), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2172), + [anon_sym_GT_EQ] = ACTIONS(2172), + [anon_sym_QMARK_QMARK] = ACTIONS(2172), + [anon_sym_instanceof] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2172), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2172), + [anon_sym_DASH_DASH] = ACTIONS(2172), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2172), + [sym_number] = ACTIONS(2172), + [sym_private_property_identifier] = ACTIONS(2172), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2172), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_object] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_satisfies] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), + [sym__automatic_semicolon] = ACTIONS(2174), + [sym__ternary_qmark] = ACTIONS(2174), + [sym_html_comment] = ACTIONS(5), + }, + [354] = { + [sym_comment] = STATE(354), + [ts_builtin_sym_end] = ACTIONS(2344), + [sym_identifier] = ACTIONS(2188), + [anon_sym_export] = ACTIONS(2188), + [anon_sym_STAR] = ACTIONS(2190), + [anon_sym_type] = ACTIONS(2188), + [anon_sym_as] = ACTIONS(2190), + [anon_sym_namespace] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_COMMA] = ACTIONS(2190), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_typeof] = ACTIONS(2188), + [anon_sym_import] = ACTIONS(2188), + [anon_sym_with] = ACTIONS(2188), + [anon_sym_var] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_else] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_await] = ACTIONS(2188), + [anon_sym_in] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_do] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), + [anon_sym_continue] = ACTIONS(2188), + [anon_sym_debugger] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_throw] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LTtemplate_GT] = ACTIONS(2188), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_DOT] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_class] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(2188), + [anon_sym_function] = ACTIONS(2188), + [anon_sym_QMARK_DOT] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_GT_GT_GT] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_SLASH] = ACTIONS(2188), + [anon_sym_PERCENT] = ACTIONS(2190), + [anon_sym_STAR_STAR] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_LT_EQ] = ACTIONS(2190), + [anon_sym_EQ_EQ] = ACTIONS(2190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), + [anon_sym_BANG_EQ] = ACTIONS(2190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2190), + [anon_sym_GT_EQ] = ACTIONS(2190), + [anon_sym_QMARK_QMARK] = ACTIONS(2190), + [anon_sym_instanceof] = ACTIONS(2190), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_void] = ACTIONS(2188), + [anon_sym_delete] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_number] = ACTIONS(2188), + [sym_private_property_identifier] = ACTIONS(2188), + [sym_this] = ACTIONS(2188), + [sym_super] = ACTIONS(2188), + [sym_true] = ACTIONS(2188), + [sym_false] = ACTIONS(2188), + [sym_null] = ACTIONS(2188), + [sym_undefined] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(2188), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_readonly] = ACTIONS(2188), + [anon_sym_get] = ACTIONS(2188), + [anon_sym_set] = ACTIONS(2188), + [anon_sym_declare] = ACTIONS(2188), + [anon_sym_public] = ACTIONS(2188), + [anon_sym_private] = ACTIONS(2188), + [anon_sym_protected] = ACTIONS(2188), + [anon_sym_override] = ACTIONS(2188), + [anon_sym_module] = ACTIONS(2188), + [anon_sym_any] = ACTIONS(2188), + [anon_sym_number] = ACTIONS(2188), + [anon_sym_boolean] = ACTIONS(2188), + [anon_sym_string] = ACTIONS(2188), + [anon_sym_symbol] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(2188), + [anon_sym_abstract] = ACTIONS(2188), + [anon_sym_satisfies] = ACTIONS(2190), + [anon_sym_interface] = ACTIONS(2188), + [anon_sym_enum] = ACTIONS(2188), + [sym__automatic_semicolon] = ACTIONS(2346), + [sym__ternary_qmark] = ACTIONS(2194), + [sym_html_comment] = ACTIONS(5), + }, + [355] = { + [sym_comment] = STATE(355), + [ts_builtin_sym_end] = ACTIONS(2348), [sym_identifier] = ACTIONS(2204), [anon_sym_export] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_default] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2206), [anon_sym_type] = ACTIONS(2204), - [anon_sym_as] = ACTIONS(2204), + [anon_sym_as] = ACTIONS(2206), [anon_sym_namespace] = ACTIONS(2204), [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), + [anon_sym_COMMA] = ACTIONS(2206), [anon_sym_RBRACE] = ACTIONS(2204), [anon_sym_typeof] = ACTIONS(2204), [anon_sym_import] = ACTIONS(2204), @@ -78521,12 +77909,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2204), [anon_sym_const] = ACTIONS(2204), [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_else] = ACTIONS(2204), [anon_sym_if] = ACTIONS(2204), [anon_sym_switch] = ACTIONS(2204), [anon_sym_for] = ACTIONS(2204), [anon_sym_LPAREN] = ACTIONS(2204), [anon_sym_await] = ACTIONS(2204), - [anon_sym_in] = ACTIONS(2204), + [anon_sym_in] = ACTIONS(2206), [anon_sym_while] = ACTIONS(2204), [anon_sym_do] = ACTIONS(2204), [anon_sym_try] = ACTIONS(2204), @@ -78536,42 +77925,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2204), [anon_sym_throw] = ACTIONS(2204), [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_case] = ACTIONS(2204), [anon_sym_yield] = ACTIONS(2204), [anon_sym_LBRACK] = ACTIONS(2204), [anon_sym_LTtemplate_GT] = ACTIONS(2204), - [anon_sym_GT] = ACTIONS(2204), - [anon_sym_DOT] = ACTIONS(2204), + [anon_sym_GT] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(2206), [anon_sym_DQUOTE] = ACTIONS(2204), [anon_sym_SQUOTE] = ACTIONS(2204), [anon_sym_class] = ACTIONS(2204), [anon_sym_async] = ACTIONS(2204), [anon_sym_function] = ACTIONS(2204), - [anon_sym_QMARK_DOT] = ACTIONS(2204), + [anon_sym_QMARK_DOT] = ACTIONS(2206), [anon_sym_new] = ACTIONS(2204), [anon_sym_using] = ACTIONS(2204), - [anon_sym_AMP_AMP] = ACTIONS(2204), - [anon_sym_PIPE_PIPE] = ACTIONS(2204), - [anon_sym_GT_GT] = ACTIONS(2204), - [anon_sym_GT_GT_GT] = ACTIONS(2204), - [anon_sym_LT_LT] = ACTIONS(2204), - [anon_sym_AMP] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_PIPE] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2206), + [anon_sym_PIPE_PIPE] = ACTIONS(2206), + [anon_sym_GT_GT] = ACTIONS(2206), + [anon_sym_GT_GT_GT] = ACTIONS(2206), + [anon_sym_LT_LT] = ACTIONS(2206), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_CARET] = ACTIONS(2206), + [anon_sym_PIPE] = ACTIONS(2206), [anon_sym_PLUS] = ACTIONS(2204), [anon_sym_DASH] = ACTIONS(2204), [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_PERCENT] = ACTIONS(2204), - [anon_sym_STAR_STAR] = ACTIONS(2204), + [anon_sym_PERCENT] = ACTIONS(2206), + [anon_sym_STAR_STAR] = ACTIONS(2206), [anon_sym_LT] = ACTIONS(2204), - [anon_sym_LT_EQ] = ACTIONS(2204), - [anon_sym_EQ_EQ] = ACTIONS(2204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2204), - [anon_sym_BANG_EQ] = ACTIONS(2204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2204), - [anon_sym_GT_EQ] = ACTIONS(2204), - [anon_sym_QMARK_QMARK] = ACTIONS(2204), - [anon_sym_instanceof] = ACTIONS(2204), + [anon_sym_LT_EQ] = ACTIONS(2206), + [anon_sym_EQ_EQ] = ACTIONS(2206), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2206), + [anon_sym_BANG_EQ] = ACTIONS(2206), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2206), + [anon_sym_GT_EQ] = ACTIONS(2206), + [anon_sym_QMARK_QMARK] = ACTIONS(2206), + [anon_sym_instanceof] = ACTIONS(2206), [anon_sym_TILDE] = ACTIONS(2204), [anon_sym_void] = ACTIONS(2204), [anon_sym_delete] = ACTIONS(2204), @@ -78605,1234 +77993,1124 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2204), [anon_sym_object] = ACTIONS(2204), [anon_sym_abstract] = ACTIONS(2204), - [anon_sym_satisfies] = ACTIONS(2204), + [anon_sym_satisfies] = ACTIONS(2206), [anon_sym_interface] = ACTIONS(2204), [anon_sym_enum] = ACTIONS(2204), - [sym__automatic_semicolon] = ACTIONS(2206), - [sym__ternary_qmark] = ACTIONS(2206), + [sym__automatic_semicolon] = ACTIONS(2350), + [sym__ternary_qmark] = ACTIONS(2210), + [sym_html_comment] = ACTIONS(5), + }, + [356] = { + [sym_comment] = STATE(356), + [ts_builtin_sym_end] = ACTIONS(2352), + [sym_identifier] = ACTIONS(2212), + [anon_sym_export] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_as] = ACTIONS(2214), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_COMMA] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_typeof] = ACTIONS(2212), + [anon_sym_import] = ACTIONS(2212), + [anon_sym_with] = ACTIONS(2212), + [anon_sym_var] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_else] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_await] = ACTIONS(2212), + [anon_sym_in] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_debugger] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LTtemplate_GT] = ACTIONS(2212), + [anon_sym_GT] = ACTIONS(2214), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_function] = ACTIONS(2212), + [anon_sym_QMARK_DOT] = ACTIONS(2214), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(2214), + [anon_sym_GT_GT] = ACTIONS(2214), + [anon_sym_GT_GT_GT] = ACTIONS(2214), + [anon_sym_LT_LT] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2214), + [anon_sym_CARET] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_SLASH] = ACTIONS(2212), + [anon_sym_PERCENT] = ACTIONS(2214), + [anon_sym_STAR_STAR] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_LT_EQ] = ACTIONS(2214), + [anon_sym_EQ_EQ] = ACTIONS(2214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2214), + [anon_sym_BANG_EQ] = ACTIONS(2214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2214), + [anon_sym_GT_EQ] = ACTIONS(2214), + [anon_sym_QMARK_QMARK] = ACTIONS(2214), + [anon_sym_instanceof] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_void] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2212), + [sym_number] = ACTIONS(2212), + [sym_private_property_identifier] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [sym_null] = ACTIONS(2212), + [sym_undefined] = ACTIONS(2212), + [anon_sym_AT] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_readonly] = ACTIONS(2212), + [anon_sym_get] = ACTIONS(2212), + [anon_sym_set] = ACTIONS(2212), + [anon_sym_declare] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_override] = ACTIONS(2212), + [anon_sym_module] = ACTIONS(2212), + [anon_sym_any] = ACTIONS(2212), + [anon_sym_number] = ACTIONS(2212), + [anon_sym_boolean] = ACTIONS(2212), + [anon_sym_string] = ACTIONS(2212), + [anon_sym_symbol] = ACTIONS(2212), + [anon_sym_object] = ACTIONS(2212), + [anon_sym_abstract] = ACTIONS(2212), + [anon_sym_satisfies] = ACTIONS(2214), + [anon_sym_interface] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [sym__automatic_semicolon] = ACTIONS(2354), + [sym__ternary_qmark] = ACTIONS(2218), + [sym_html_comment] = ACTIONS(5), + }, + [357] = { + [sym_statement_block] = STATE(433), + [sym_comment] = STATE(357), + [ts_builtin_sym_end] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_as] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2338), + [anon_sym_COMMA] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_in] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(2356), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_QMARK_DOT] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_AMP_AMP] = ACTIONS(2126), + [anon_sym_PIPE_PIPE] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(2126), + [anon_sym_GT_GT_GT] = ACTIONS(2126), + [anon_sym_LT_LT] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_PERCENT] = ACTIONS(2126), + [anon_sym_STAR_STAR] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_LT_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), + [anon_sym_GT_EQ] = ACTIONS(2126), + [anon_sym_QMARK_QMARK] = ACTIONS(2126), + [anon_sym_instanceof] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_satisfies] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [sym__automatic_semicolon] = ACTIONS(2130), + [sym__ternary_qmark] = ACTIONS(2130), + [sym_html_comment] = ACTIONS(5), + }, + [358] = { + [sym_comment] = STATE(358), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2226), + [anon_sym_export] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_type] = ACTIONS(2226), + [anon_sym_as] = ACTIONS(2228), + [anon_sym_namespace] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2226), + [anon_sym_COMMA] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_typeof] = ACTIONS(2226), + [anon_sym_import] = ACTIONS(2226), + [anon_sym_with] = ACTIONS(2226), + [anon_sym_var] = ACTIONS(2226), + [anon_sym_let] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_else] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_switch] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_await] = ACTIONS(2226), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_do] = ACTIONS(2226), + [anon_sym_try] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_debugger] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_throw] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2226), + [anon_sym_yield] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_LTtemplate_GT] = ACTIONS(2226), + [anon_sym_GT] = ACTIONS(2228), + [anon_sym_DOT] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2226), + [anon_sym_SQUOTE] = ACTIONS(2226), + [anon_sym_class] = ACTIONS(2226), + [anon_sym_async] = ACTIONS(2226), + [anon_sym_function] = ACTIONS(2226), + [anon_sym_QMARK_DOT] = ACTIONS(2228), + [anon_sym_new] = ACTIONS(2226), + [anon_sym_using] = ACTIONS(2226), + [anon_sym_AMP_AMP] = ACTIONS(2228), + [anon_sym_PIPE_PIPE] = ACTIONS(2228), + [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_GT_GT_GT] = ACTIONS(2228), + [anon_sym_LT_LT] = ACTIONS(2228), + [anon_sym_AMP] = ACTIONS(2228), + [anon_sym_CARET] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_SLASH] = ACTIONS(2226), + [anon_sym_PERCENT] = ACTIONS(2228), + [anon_sym_STAR_STAR] = ACTIONS(2228), + [anon_sym_LT] = ACTIONS(2226), + [anon_sym_LT_EQ] = ACTIONS(2228), + [anon_sym_EQ_EQ] = ACTIONS(2228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2228), + [anon_sym_BANG_EQ] = ACTIONS(2228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2228), + [anon_sym_GT_EQ] = ACTIONS(2228), + [anon_sym_QMARK_QMARK] = ACTIONS(2228), + [anon_sym_instanceof] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_void] = ACTIONS(2226), + [anon_sym_delete] = ACTIONS(2226), + [anon_sym_PLUS_PLUS] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2226), + [sym_number] = ACTIONS(2226), + [sym_private_property_identifier] = ACTIONS(2226), + [sym_this] = ACTIONS(2226), + [sym_super] = ACTIONS(2226), + [sym_true] = ACTIONS(2226), + [sym_false] = ACTIONS(2226), + [sym_null] = ACTIONS(2226), + [sym_undefined] = ACTIONS(2226), + [anon_sym_AT] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2226), + [anon_sym_readonly] = ACTIONS(2226), + [anon_sym_get] = ACTIONS(2226), + [anon_sym_set] = ACTIONS(2226), + [anon_sym_declare] = ACTIONS(2226), + [anon_sym_public] = ACTIONS(2226), + [anon_sym_private] = ACTIONS(2226), + [anon_sym_protected] = ACTIONS(2226), + [anon_sym_override] = ACTIONS(2226), + [anon_sym_module] = ACTIONS(2226), + [anon_sym_any] = ACTIONS(2226), + [anon_sym_number] = ACTIONS(2226), + [anon_sym_boolean] = ACTIONS(2226), + [anon_sym_string] = ACTIONS(2226), + [anon_sym_symbol] = ACTIONS(2226), + [anon_sym_object] = ACTIONS(2226), + [anon_sym_abstract] = ACTIONS(2226), + [anon_sym_satisfies] = ACTIONS(2228), + [anon_sym_interface] = ACTIONS(2226), + [anon_sym_enum] = ACTIONS(2226), + [sym__automatic_semicolon] = ACTIONS(2360), + [sym__ternary_qmark] = ACTIONS(2232), [sym_html_comment] = ACTIONS(5), }, [359] = { [sym_comment] = STATE(359), - [ts_builtin_sym_end] = ACTIONS(2162), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_as] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_in] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_GT] = ACTIONS(2160), - [anon_sym_DOT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_QMARK_DOT] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [anon_sym_GT_GT] = ACTIONS(2160), - [anon_sym_GT_GT_GT] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_PIPE] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_PERCENT] = ACTIONS(2160), - [anon_sym_STAR_STAR] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(2160), - [anon_sym_QMARK_QMARK] = ACTIONS(2160), - [anon_sym_instanceof] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_satisfies] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(2162), - [sym__ternary_qmark] = ACTIONS(2162), + [ts_builtin_sym_end] = ACTIONS(2168), + [sym_identifier] = ACTIONS(2166), + [anon_sym_export] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2166), + [anon_sym_type] = ACTIONS(2166), + [anon_sym_as] = ACTIONS(2166), + [anon_sym_namespace] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_COMMA] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_typeof] = ACTIONS(2166), + [anon_sym_import] = ACTIONS(2166), + [anon_sym_with] = ACTIONS(2166), + [anon_sym_var] = ACTIONS(2166), + [anon_sym_let] = ACTIONS(2166), + [anon_sym_const] = ACTIONS(2166), + [anon_sym_BANG] = ACTIONS(2166), + [anon_sym_else] = ACTIONS(2166), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_switch] = ACTIONS(2166), + [anon_sym_for] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(2166), + [anon_sym_await] = ACTIONS(2166), + [anon_sym_in] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2166), + [anon_sym_do] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2166), + [anon_sym_break] = ACTIONS(2166), + [anon_sym_continue] = ACTIONS(2166), + [anon_sym_debugger] = ACTIONS(2166), + [anon_sym_return] = ACTIONS(2166), + [anon_sym_throw] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_yield] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2166), + [anon_sym_LTtemplate_GT] = ACTIONS(2166), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_DOT] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [anon_sym_SQUOTE] = ACTIONS(2166), + [anon_sym_class] = ACTIONS(2166), + [anon_sym_async] = ACTIONS(2166), + [anon_sym_function] = ACTIONS(2166), + [anon_sym_QMARK_DOT] = ACTIONS(2166), + [anon_sym_new] = ACTIONS(2166), + [anon_sym_using] = ACTIONS(2166), + [anon_sym_AMP_AMP] = ACTIONS(2166), + [anon_sym_PIPE_PIPE] = ACTIONS(2166), + [anon_sym_GT_GT] = ACTIONS(2166), + [anon_sym_GT_GT_GT] = ACTIONS(2166), + [anon_sym_LT_LT] = ACTIONS(2166), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_CARET] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_PERCENT] = ACTIONS(2166), + [anon_sym_STAR_STAR] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_LT_EQ] = ACTIONS(2166), + [anon_sym_EQ_EQ] = ACTIONS(2166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2166), + [anon_sym_BANG_EQ] = ACTIONS(2166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2166), + [anon_sym_QMARK_QMARK] = ACTIONS(2166), + [anon_sym_instanceof] = ACTIONS(2166), + [anon_sym_TILDE] = ACTIONS(2166), + [anon_sym_void] = ACTIONS(2166), + [anon_sym_delete] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2166), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2166), + [sym_number] = ACTIONS(2166), + [sym_private_property_identifier] = ACTIONS(2166), + [sym_this] = ACTIONS(2166), + [sym_super] = ACTIONS(2166), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_undefined] = ACTIONS(2166), + [anon_sym_AT] = ACTIONS(2166), + [anon_sym_static] = ACTIONS(2166), + [anon_sym_readonly] = ACTIONS(2166), + [anon_sym_get] = ACTIONS(2166), + [anon_sym_set] = ACTIONS(2166), + [anon_sym_declare] = ACTIONS(2166), + [anon_sym_public] = ACTIONS(2166), + [anon_sym_private] = ACTIONS(2166), + [anon_sym_protected] = ACTIONS(2166), + [anon_sym_override] = ACTIONS(2166), + [anon_sym_module] = ACTIONS(2166), + [anon_sym_any] = ACTIONS(2166), + [anon_sym_number] = ACTIONS(2166), + [anon_sym_boolean] = ACTIONS(2166), + [anon_sym_string] = ACTIONS(2166), + [anon_sym_symbol] = ACTIONS(2166), + [anon_sym_object] = ACTIONS(2166), + [anon_sym_abstract] = ACTIONS(2166), + [anon_sym_satisfies] = ACTIONS(2166), + [anon_sym_interface] = ACTIONS(2166), + [anon_sym_enum] = ACTIONS(2166), + [sym__automatic_semicolon] = ACTIONS(2168), + [sym__ternary_qmark] = ACTIONS(2168), [sym_html_comment] = ACTIONS(5), }, [360] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2852), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), [sym_comment] = STATE(360), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), + [ts_builtin_sym_end] = ACTIONS(2198), + [sym_identifier] = ACTIONS(2196), + [anon_sym_export] = ACTIONS(2196), + [anon_sym_STAR] = ACTIONS(2196), + [anon_sym_type] = ACTIONS(2196), + [anon_sym_as] = ACTIONS(2196), + [anon_sym_namespace] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_COMMA] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_typeof] = ACTIONS(2196), + [anon_sym_import] = ACTIONS(2196), + [anon_sym_with] = ACTIONS(2196), + [anon_sym_var] = ACTIONS(2196), + [anon_sym_let] = ACTIONS(2196), + [anon_sym_const] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2196), + [anon_sym_else] = ACTIONS(2196), + [anon_sym_if] = ACTIONS(2196), + [anon_sym_switch] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_await] = ACTIONS(2196), + [anon_sym_in] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2196), + [anon_sym_do] = ACTIONS(2196), + [anon_sym_try] = ACTIONS(2196), + [anon_sym_break] = ACTIONS(2196), + [anon_sym_continue] = ACTIONS(2196), + [anon_sym_debugger] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(2196), + [anon_sym_throw] = ACTIONS(2196), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_yield] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2196), + [anon_sym_LTtemplate_GT] = ACTIONS(2196), + [anon_sym_GT] = ACTIONS(2196), + [anon_sym_DOT] = ACTIONS(2196), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_SQUOTE] = ACTIONS(2196), + [anon_sym_class] = ACTIONS(2196), + [anon_sym_async] = ACTIONS(2196), + [anon_sym_function] = ACTIONS(2196), + [anon_sym_QMARK_DOT] = ACTIONS(2196), + [anon_sym_new] = ACTIONS(2196), + [anon_sym_using] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [anon_sym_GT_GT] = ACTIONS(2196), + [anon_sym_GT_GT_GT] = ACTIONS(2196), + [anon_sym_LT_LT] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2196), + [anon_sym_CARET] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2196), + [anon_sym_PLUS] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_SLASH] = ACTIONS(2196), + [anon_sym_PERCENT] = ACTIONS(2196), + [anon_sym_STAR_STAR] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(2196), + [anon_sym_LT_EQ] = ACTIONS(2196), + [anon_sym_EQ_EQ] = ACTIONS(2196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2196), + [anon_sym_BANG_EQ] = ACTIONS(2196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2196), + [anon_sym_GT_EQ] = ACTIONS(2196), + [anon_sym_QMARK_QMARK] = ACTIONS(2196), + [anon_sym_instanceof] = ACTIONS(2196), + [anon_sym_TILDE] = ACTIONS(2196), + [anon_sym_void] = ACTIONS(2196), + [anon_sym_delete] = ACTIONS(2196), + [anon_sym_PLUS_PLUS] = ACTIONS(2196), + [anon_sym_DASH_DASH] = ACTIONS(2196), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2196), + [sym_number] = ACTIONS(2196), + [sym_private_property_identifier] = ACTIONS(2196), + [sym_this] = ACTIONS(2196), + [sym_super] = ACTIONS(2196), + [sym_true] = ACTIONS(2196), + [sym_false] = ACTIONS(2196), + [sym_null] = ACTIONS(2196), + [sym_undefined] = ACTIONS(2196), + [anon_sym_AT] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2196), + [anon_sym_readonly] = ACTIONS(2196), + [anon_sym_get] = ACTIONS(2196), + [anon_sym_set] = ACTIONS(2196), + [anon_sym_declare] = ACTIONS(2196), + [anon_sym_public] = ACTIONS(2196), + [anon_sym_private] = ACTIONS(2196), + [anon_sym_protected] = ACTIONS(2196), + [anon_sym_override] = ACTIONS(2196), + [anon_sym_module] = ACTIONS(2196), + [anon_sym_any] = ACTIONS(2196), + [anon_sym_number] = ACTIONS(2196), + [anon_sym_boolean] = ACTIONS(2196), + [anon_sym_string] = ACTIONS(2196), + [anon_sym_symbol] = ACTIONS(2196), + [anon_sym_object] = ACTIONS(2196), + [anon_sym_abstract] = ACTIONS(2196), + [anon_sym_satisfies] = ACTIONS(2196), + [anon_sym_interface] = ACTIONS(2196), + [anon_sym_enum] = ACTIONS(2196), + [sym__automatic_semicolon] = ACTIONS(2198), + [sym__ternary_qmark] = ACTIONS(2198), + [sym_html_comment] = ACTIONS(5), + }, + [361] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2474), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(361), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(2061), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), [anon_sym_AMP] = ACTIONS(2061), [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [anon_sym_extends] = ACTIONS(2061), [sym_html_comment] = ACTIONS(5), }, - [361] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(361), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(2189), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5258), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_accessibility_modifier] = STATE(412), - [sym_override_modifier] = STATE(463), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(2133), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(2336), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(2338), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(1161), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2340), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(1175), - [anon_sym_private] = ACTIONS(1175), - [anon_sym_protected] = ACTIONS(1175), - [anon_sym_override] = ACTIONS(1177), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, [362] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2891), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_spread_element] = STATE(6197), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), [sym_comment] = STATE(362), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(6196), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(2320), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2342), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2324), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [ts_builtin_sym_end] = ACTIONS(2362), + [sym_identifier] = ACTIONS(2234), + [anon_sym_export] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_type] = ACTIONS(2234), + [anon_sym_as] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_COMMA] = ACTIONS(2236), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_typeof] = ACTIONS(2234), + [anon_sym_import] = ACTIONS(2234), + [anon_sym_with] = ACTIONS(2234), + [anon_sym_var] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [anon_sym_BANG] = ACTIONS(2234), + [anon_sym_else] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_switch] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_await] = ACTIONS(2234), + [anon_sym_in] = ACTIONS(2236), + [anon_sym_while] = ACTIONS(2234), + [anon_sym_do] = ACTIONS(2234), + [anon_sym_try] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_debugger] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_throw] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_yield] = ACTIONS(2234), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_LTtemplate_GT] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2236), + [anon_sym_DOT] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_class] = ACTIONS(2234), + [anon_sym_async] = ACTIONS(2234), + [anon_sym_function] = ACTIONS(2234), + [anon_sym_QMARK_DOT] = ACTIONS(2236), + [anon_sym_new] = ACTIONS(2234), + [anon_sym_using] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2236), + [anon_sym_PIPE_PIPE] = ACTIONS(2236), + [anon_sym_GT_GT] = ACTIONS(2236), + [anon_sym_GT_GT_GT] = ACTIONS(2236), + [anon_sym_LT_LT] = ACTIONS(2236), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_CARET] = ACTIONS(2236), + [anon_sym_PIPE] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2236), + [anon_sym_STAR_STAR] = ACTIONS(2236), + [anon_sym_LT] = ACTIONS(2234), + [anon_sym_LT_EQ] = ACTIONS(2236), + [anon_sym_EQ_EQ] = ACTIONS(2236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2236), + [anon_sym_BANG_EQ] = ACTIONS(2236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2236), + [anon_sym_GT_EQ] = ACTIONS(2236), + [anon_sym_QMARK_QMARK] = ACTIONS(2236), + [anon_sym_instanceof] = ACTIONS(2236), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_void] = ACTIONS(2234), + [anon_sym_delete] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2234), + [sym_number] = ACTIONS(2234), + [sym_private_property_identifier] = ACTIONS(2234), + [sym_this] = ACTIONS(2234), + [sym_super] = ACTIONS(2234), + [sym_true] = ACTIONS(2234), + [sym_false] = ACTIONS(2234), + [sym_null] = ACTIONS(2234), + [sym_undefined] = ACTIONS(2234), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_static] = ACTIONS(2234), + [anon_sym_readonly] = ACTIONS(2234), + [anon_sym_get] = ACTIONS(2234), + [anon_sym_set] = ACTIONS(2234), + [anon_sym_declare] = ACTIONS(2234), + [anon_sym_public] = ACTIONS(2234), + [anon_sym_private] = ACTIONS(2234), + [anon_sym_protected] = ACTIONS(2234), + [anon_sym_override] = ACTIONS(2234), + [anon_sym_module] = ACTIONS(2234), + [anon_sym_any] = ACTIONS(2234), + [anon_sym_number] = ACTIONS(2234), + [anon_sym_boolean] = ACTIONS(2234), + [anon_sym_string] = ACTIONS(2234), + [anon_sym_symbol] = ACTIONS(2234), + [anon_sym_object] = ACTIONS(2234), + [anon_sym_abstract] = ACTIONS(2234), + [anon_sym_satisfies] = ACTIONS(2236), + [anon_sym_interface] = ACTIONS(2234), + [anon_sym_enum] = ACTIONS(2234), + [sym__automatic_semicolon] = ACTIONS(2364), + [sym__ternary_qmark] = ACTIONS(2240), [sym_html_comment] = ACTIONS(5), }, [363] = { [sym_comment] = STATE(363), - [sym_identifier] = ACTIONS(2228), - [anon_sym_export] = ACTIONS(2228), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_default] = ACTIONS(2228), - [anon_sym_type] = ACTIONS(2228), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_namespace] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(2228), - [anon_sym_COMMA] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym_typeof] = ACTIONS(2228), - [anon_sym_import] = ACTIONS(2228), - [anon_sym_with] = ACTIONS(2228), - [anon_sym_var] = ACTIONS(2228), - [anon_sym_let] = ACTIONS(2228), - [anon_sym_const] = ACTIONS(2228), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_switch] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(2228), - [anon_sym_await] = ACTIONS(2228), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2228), - [anon_sym_do] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_debugger] = ACTIONS(2228), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_throw] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2228), - [anon_sym_case] = ACTIONS(2228), - [anon_sym_yield] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2228), - [anon_sym_LTtemplate_GT] = ACTIONS(2228), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_DOT] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_SQUOTE] = ACTIONS(2228), - [anon_sym_class] = ACTIONS(2228), - [anon_sym_async] = ACTIONS(2228), - [anon_sym_function] = ACTIONS(2228), - [anon_sym_QMARK_DOT] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2228), - [anon_sym_using] = ACTIONS(2228), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_CARET] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_SLASH] = ACTIONS(2228), - [anon_sym_PERCENT] = ACTIONS(2230), - [anon_sym_STAR_STAR] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2228), - [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2230), - [anon_sym_GT_EQ] = ACTIONS(2230), - [anon_sym_QMARK_QMARK] = ACTIONS(2230), - [anon_sym_instanceof] = ACTIONS(2230), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_void] = ACTIONS(2228), - [anon_sym_delete] = ACTIONS(2228), - [anon_sym_PLUS_PLUS] = ACTIONS(2228), - [anon_sym_DASH_DASH] = ACTIONS(2228), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2228), - [sym_number] = ACTIONS(2228), - [sym_private_property_identifier] = ACTIONS(2228), - [sym_this] = ACTIONS(2228), - [sym_super] = ACTIONS(2228), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), - [sym_null] = ACTIONS(2228), - [sym_undefined] = ACTIONS(2228), - [anon_sym_AT] = ACTIONS(2228), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_readonly] = ACTIONS(2228), - [anon_sym_get] = ACTIONS(2228), - [anon_sym_set] = ACTIONS(2228), - [anon_sym_declare] = ACTIONS(2228), - [anon_sym_public] = ACTIONS(2228), - [anon_sym_private] = ACTIONS(2228), - [anon_sym_protected] = ACTIONS(2228), - [anon_sym_override] = ACTIONS(2228), - [anon_sym_module] = ACTIONS(2228), - [anon_sym_any] = ACTIONS(2228), - [anon_sym_number] = ACTIONS(2228), - [anon_sym_boolean] = ACTIONS(2228), - [anon_sym_string] = ACTIONS(2228), - [anon_sym_symbol] = ACTIONS(2228), - [anon_sym_object] = ACTIONS(2228), - [anon_sym_abstract] = ACTIONS(2228), - [anon_sym_satisfies] = ACTIONS(2230), - [anon_sym_interface] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(2228), - [sym__automatic_semicolon] = ACTIONS(2344), - [sym__ternary_qmark] = ACTIONS(2234), - [sym_html_comment] = ACTIONS(5), - }, - [364] = { - [sym_comment] = STATE(364), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_STAR] = ACTIONS(2210), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_as] = ACTIONS(2210), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_COMMA] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_in] = ACTIONS(2210), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_GT] = ACTIONS(2210), - [anon_sym_DOT] = ACTIONS(2210), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_QMARK_DOT] = ACTIONS(2210), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_AMP_AMP] = ACTIONS(2210), - [anon_sym_PIPE_PIPE] = ACTIONS(2210), - [anon_sym_GT_GT] = ACTIONS(2210), - [anon_sym_GT_GT_GT] = ACTIONS(2210), - [anon_sym_LT_LT] = ACTIONS(2210), - [anon_sym_AMP] = ACTIONS(2210), - [anon_sym_CARET] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(2210), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_PERCENT] = ACTIONS(2210), - [anon_sym_STAR_STAR] = ACTIONS(2210), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_LT_EQ] = ACTIONS(2210), - [anon_sym_EQ_EQ] = ACTIONS(2210), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2210), - [anon_sym_BANG_EQ] = ACTIONS(2210), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2210), - [anon_sym_GT_EQ] = ACTIONS(2210), - [anon_sym_QMARK_QMARK] = ACTIONS(2210), - [anon_sym_instanceof] = ACTIONS(2210), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_satisfies] = ACTIONS(2210), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(2346), - [sym__ternary_qmark] = ACTIONS(2214), - [sym_html_comment] = ACTIONS(5), - }, - [365] = { - [sym_comment] = STATE(365), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_as] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_in] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_GT] = ACTIONS(2160), - [anon_sym_DOT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_QMARK_DOT] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [anon_sym_GT_GT] = ACTIONS(2160), - [anon_sym_GT_GT_GT] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_PIPE] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_PERCENT] = ACTIONS(2160), - [anon_sym_STAR_STAR] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(2160), - [anon_sym_QMARK_QMARK] = ACTIONS(2160), - [anon_sym_instanceof] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), + [ts_builtin_sym_end] = ACTIONS(2366), + [sym_identifier] = ACTIONS(2152), + [anon_sym_export] = ACTIONS(2152), + [anon_sym_STAR] = ACTIONS(2154), + [anon_sym_type] = ACTIONS(2152), + [anon_sym_as] = ACTIONS(2154), + [anon_sym_namespace] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_COMMA] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_typeof] = ACTIONS(2152), + [anon_sym_import] = ACTIONS(2152), + [anon_sym_with] = ACTIONS(2152), + [anon_sym_var] = ACTIONS(2152), + [anon_sym_let] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2152), + [anon_sym_else] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_switch] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_await] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(2154), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_debugger] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_throw] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_yield] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_LTtemplate_GT] = ACTIONS(2152), + [anon_sym_GT] = ACTIONS(2154), + [anon_sym_DOT] = ACTIONS(2154), + [anon_sym_DQUOTE] = ACTIONS(2152), + [anon_sym_SQUOTE] = ACTIONS(2152), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2152), + [anon_sym_function] = ACTIONS(2152), + [anon_sym_QMARK_DOT] = ACTIONS(2154), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_using] = ACTIONS(2152), + [anon_sym_AMP_AMP] = ACTIONS(2154), + [anon_sym_PIPE_PIPE] = ACTIONS(2154), + [anon_sym_GT_GT] = ACTIONS(2154), + [anon_sym_GT_GT_GT] = ACTIONS(2154), + [anon_sym_LT_LT] = ACTIONS(2154), + [anon_sym_AMP] = ACTIONS(2154), + [anon_sym_CARET] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_SLASH] = ACTIONS(2152), + [anon_sym_PERCENT] = ACTIONS(2154), + [anon_sym_STAR_STAR] = ACTIONS(2154), + [anon_sym_LT] = ACTIONS(2152), + [anon_sym_LT_EQ] = ACTIONS(2154), + [anon_sym_EQ_EQ] = ACTIONS(2154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2154), + [anon_sym_BANG_EQ] = ACTIONS(2154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2154), + [anon_sym_GT_EQ] = ACTIONS(2154), + [anon_sym_QMARK_QMARK] = ACTIONS(2154), + [anon_sym_instanceof] = ACTIONS(2154), + [anon_sym_TILDE] = ACTIONS(2152), + [anon_sym_void] = ACTIONS(2152), + [anon_sym_delete] = ACTIONS(2152), + [anon_sym_PLUS_PLUS] = ACTIONS(2152), + [anon_sym_DASH_DASH] = ACTIONS(2152), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_satisfies] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(2162), - [sym__ternary_qmark] = ACTIONS(2162), - [sym_html_comment] = ACTIONS(5), - }, - [366] = { - [sym_comment] = STATE(366), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_as] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_in] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_DOT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_QMARK_DOT] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_GT_GT_GT] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_PERCENT] = ACTIONS(2190), - [anon_sym_STAR_STAR] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_LT_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2190), - [anon_sym_GT_EQ] = ACTIONS(2190), - [anon_sym_QMARK_QMARK] = ACTIONS(2190), - [anon_sym_instanceof] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_satisfies] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(2348), - [sym__ternary_qmark] = ACTIONS(2192), - [sym_html_comment] = ACTIONS(5), - }, - [367] = { - [sym_comment] = STATE(367), - [ts_builtin_sym_end] = ACTIONS(2350), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_as] = ACTIONS(2178), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_COMMA] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_else] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(2176), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LTtemplate_GT] = ACTIONS(2176), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_QMARK_DOT] = ACTIONS(2178), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_AMP_AMP] = ACTIONS(2178), - [anon_sym_PIPE_PIPE] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_GT_GT_GT] = ACTIONS(2178), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_AMP] = ACTIONS(2178), - [anon_sym_CARET] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_PERCENT] = ACTIONS(2178), - [anon_sym_STAR_STAR] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_LT_EQ] = ACTIONS(2178), - [anon_sym_EQ_EQ] = ACTIONS(2178), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2178), - [anon_sym_BANG_EQ] = ACTIONS(2178), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2178), - [anon_sym_GT_EQ] = ACTIONS(2178), - [anon_sym_QMARK_QMARK] = ACTIONS(2178), - [anon_sym_instanceof] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_number] = ACTIONS(2176), - [sym_private_property_identifier] = ACTIONS(2176), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_satisfies] = ACTIONS(2178), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), - [sym__automatic_semicolon] = ACTIONS(2180), - [sym__ternary_qmark] = ACTIONS(2180), + [anon_sym_BQUOTE] = ACTIONS(2152), + [sym_number] = ACTIONS(2152), + [sym_private_property_identifier] = ACTIONS(2152), + [sym_this] = ACTIONS(2152), + [sym_super] = ACTIONS(2152), + [sym_true] = ACTIONS(2152), + [sym_false] = ACTIONS(2152), + [sym_null] = ACTIONS(2152), + [sym_undefined] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(2152), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_readonly] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2152), + [anon_sym_set] = ACTIONS(2152), + [anon_sym_declare] = ACTIONS(2152), + [anon_sym_public] = ACTIONS(2152), + [anon_sym_private] = ACTIONS(2152), + [anon_sym_protected] = ACTIONS(2152), + [anon_sym_override] = ACTIONS(2152), + [anon_sym_module] = ACTIONS(2152), + [anon_sym_any] = ACTIONS(2152), + [anon_sym_number] = ACTIONS(2152), + [anon_sym_boolean] = ACTIONS(2152), + [anon_sym_string] = ACTIONS(2152), + [anon_sym_symbol] = ACTIONS(2152), + [anon_sym_object] = ACTIONS(2152), + [anon_sym_abstract] = ACTIONS(2152), + [anon_sym_satisfies] = ACTIONS(2154), + [anon_sym_interface] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + [sym__automatic_semicolon] = ACTIONS(2368), + [sym__ternary_qmark] = ACTIONS(2158), [sym_html_comment] = ACTIONS(5), }, - [368] = { - [sym_comment] = STATE(368), - [sym_identifier] = ACTIONS(2238), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2240), - [anon_sym_default] = ACTIONS(2238), - [anon_sym_type] = ACTIONS(2238), - [anon_sym_as] = ACTIONS(2240), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_typeof] = ACTIONS(2238), - [anon_sym_import] = ACTIONS(2238), - [anon_sym_with] = ACTIONS(2238), - [anon_sym_var] = ACTIONS(2238), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_await] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2240), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_debugger] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_throw] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_case] = ACTIONS(2238), - [anon_sym_yield] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LTtemplate_GT] = ACTIONS(2238), - [anon_sym_GT] = ACTIONS(2240), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2238), - [anon_sym_class] = ACTIONS(2238), - [anon_sym_async] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_QMARK_DOT] = ACTIONS(2240), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_using] = ACTIONS(2238), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2240), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2240), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_instanceof] = ACTIONS(2240), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_void] = ACTIONS(2238), - [anon_sym_delete] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2238), - [sym_number] = ACTIONS(2238), - [sym_private_property_identifier] = ACTIONS(2238), - [sym_this] = ACTIONS(2238), - [sym_super] = ACTIONS(2238), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_null] = ACTIONS(2238), - [sym_undefined] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_readonly] = ACTIONS(2238), - [anon_sym_get] = ACTIONS(2238), - [anon_sym_set] = ACTIONS(2238), - [anon_sym_declare] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_protected] = ACTIONS(2238), - [anon_sym_override] = ACTIONS(2238), - [anon_sym_module] = ACTIONS(2238), - [anon_sym_any] = ACTIONS(2238), - [anon_sym_number] = ACTIONS(2238), - [anon_sym_boolean] = ACTIONS(2238), - [anon_sym_string] = ACTIONS(2238), - [anon_sym_symbol] = ACTIONS(2238), - [anon_sym_object] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_satisfies] = ACTIONS(2240), - [anon_sym_interface] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2352), - [sym__ternary_qmark] = ACTIONS(2244), + [364] = { + [sym_comment] = STATE(364), + [ts_builtin_sym_end] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2242), + [anon_sym_export] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2242), + [anon_sym_as] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_COMMA] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_typeof] = ACTIONS(2242), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_with] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2242), + [anon_sym_let] = ACTIONS(2242), + [anon_sym_const] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_else] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_switch] = ACTIONS(2242), + [anon_sym_for] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_await] = ACTIONS(2242), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2242), + [anon_sym_do] = ACTIONS(2242), + [anon_sym_try] = ACTIONS(2242), + [anon_sym_break] = ACTIONS(2242), + [anon_sym_continue] = ACTIONS(2242), + [anon_sym_debugger] = ACTIONS(2242), + [anon_sym_return] = ACTIONS(2242), + [anon_sym_throw] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_yield] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_LTtemplate_GT] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_class] = ACTIONS(2242), + [anon_sym_async] = ACTIONS(2242), + [anon_sym_function] = ACTIONS(2242), + [anon_sym_QMARK_DOT] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2242), + [anon_sym_using] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2244), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2244), + [anon_sym_LT_LT] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2242), + [anon_sym_SLASH] = ACTIONS(2242), + [anon_sym_PERCENT] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2242), + [anon_sym_LT_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2244), + [anon_sym_GT_EQ] = ACTIONS(2244), + [anon_sym_QMARK_QMARK] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2242), + [anon_sym_void] = ACTIONS(2242), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2242), + [sym_number] = ACTIONS(2242), + [sym_private_property_identifier] = ACTIONS(2242), + [sym_this] = ACTIONS(2242), + [sym_super] = ACTIONS(2242), + [sym_true] = ACTIONS(2242), + [sym_false] = ACTIONS(2242), + [sym_null] = ACTIONS(2242), + [sym_undefined] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(2242), + [anon_sym_readonly] = ACTIONS(2242), + [anon_sym_get] = ACTIONS(2242), + [anon_sym_set] = ACTIONS(2242), + [anon_sym_declare] = ACTIONS(2242), + [anon_sym_public] = ACTIONS(2242), + [anon_sym_private] = ACTIONS(2242), + [anon_sym_protected] = ACTIONS(2242), + [anon_sym_override] = ACTIONS(2242), + [anon_sym_module] = ACTIONS(2242), + [anon_sym_any] = ACTIONS(2242), + [anon_sym_number] = ACTIONS(2242), + [anon_sym_boolean] = ACTIONS(2242), + [anon_sym_string] = ACTIONS(2242), + [anon_sym_symbol] = ACTIONS(2242), + [anon_sym_object] = ACTIONS(2242), + [anon_sym_abstract] = ACTIONS(2242), + [anon_sym_satisfies] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2242), + [anon_sym_enum] = ACTIONS(2242), + [sym__automatic_semicolon] = ACTIONS(2372), + [sym__ternary_qmark] = ACTIONS(2248), [sym_html_comment] = ACTIONS(5), }, - [369] = { - [sym_comment] = STATE(369), - [ts_builtin_sym_end] = ACTIONS(2354), - [sym_identifier] = ACTIONS(2182), - [anon_sym_export] = ACTIONS(2182), - [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_type] = ACTIONS(2182), - [anon_sym_as] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_COMMA] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_typeof] = ACTIONS(2182), - [anon_sym_import] = ACTIONS(2182), - [anon_sym_with] = ACTIONS(2182), - [anon_sym_var] = ACTIONS(2182), - [anon_sym_let] = ACTIONS(2182), - [anon_sym_const] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_else] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_await] = ACTIONS(2182), - [anon_sym_in] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_try] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_debugger] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_throw] = ACTIONS(2182), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_yield] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LTtemplate_GT] = ACTIONS(2182), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_DOT] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2182), - [anon_sym_class] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(2182), - [anon_sym_function] = ACTIONS(2182), - [anon_sym_QMARK_DOT] = ACTIONS(2184), - [anon_sym_new] = ACTIONS(2182), - [anon_sym_using] = ACTIONS(2182), - [anon_sym_AMP_AMP] = ACTIONS(2184), - [anon_sym_PIPE_PIPE] = ACTIONS(2184), - [anon_sym_GT_GT] = ACTIONS(2184), - [anon_sym_GT_GT_GT] = ACTIONS(2184), - [anon_sym_LT_LT] = ACTIONS(2184), - [anon_sym_AMP] = ACTIONS(2184), - [anon_sym_CARET] = ACTIONS(2184), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(2182), - [anon_sym_PERCENT] = ACTIONS(2184), - [anon_sym_STAR_STAR] = ACTIONS(2184), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_LT_EQ] = ACTIONS(2184), - [anon_sym_EQ_EQ] = ACTIONS(2184), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2184), - [anon_sym_BANG_EQ] = ACTIONS(2184), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2184), - [anon_sym_GT_EQ] = ACTIONS(2184), - [anon_sym_QMARK_QMARK] = ACTIONS(2184), - [anon_sym_instanceof] = ACTIONS(2184), - [anon_sym_TILDE] = ACTIONS(2182), - [anon_sym_void] = ACTIONS(2182), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_PLUS_PLUS] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2182), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2182), - [sym_number] = ACTIONS(2182), - [sym_private_property_identifier] = ACTIONS(2182), - [sym_this] = ACTIONS(2182), - [sym_super] = ACTIONS(2182), - [sym_true] = ACTIONS(2182), - [sym_false] = ACTIONS(2182), - [sym_null] = ACTIONS(2182), - [sym_undefined] = ACTIONS(2182), - [anon_sym_AT] = ACTIONS(2182), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_readonly] = ACTIONS(2182), - [anon_sym_get] = ACTIONS(2182), - [anon_sym_set] = ACTIONS(2182), - [anon_sym_declare] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_protected] = ACTIONS(2182), - [anon_sym_override] = ACTIONS(2182), - [anon_sym_module] = ACTIONS(2182), - [anon_sym_any] = ACTIONS(2182), - [anon_sym_number] = ACTIONS(2182), - [anon_sym_boolean] = ACTIONS(2182), - [anon_sym_string] = ACTIONS(2182), - [anon_sym_symbol] = ACTIONS(2182), - [anon_sym_object] = ACTIONS(2182), - [anon_sym_abstract] = ACTIONS(2182), - [anon_sym_satisfies] = ACTIONS(2184), - [anon_sym_interface] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), - [sym__automatic_semicolon] = ACTIONS(2356), - [sym__ternary_qmark] = ACTIONS(2188), + [365] = { + [sym_comment] = STATE(365), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(2142), + [anon_sym_default] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_as] = ACTIONS(2142), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_COMMA] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_in] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_case] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_GT] = ACTIONS(2142), + [anon_sym_DOT] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_QMARK_DOT] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_AMP_AMP] = ACTIONS(2142), + [anon_sym_PIPE_PIPE] = ACTIONS(2142), + [anon_sym_GT_GT] = ACTIONS(2142), + [anon_sym_GT_GT_GT] = ACTIONS(2142), + [anon_sym_LT_LT] = ACTIONS(2142), + [anon_sym_AMP] = ACTIONS(2142), + [anon_sym_CARET] = ACTIONS(2142), + [anon_sym_PIPE] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_PERCENT] = ACTIONS(2142), + [anon_sym_STAR_STAR] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_LT_EQ] = ACTIONS(2142), + [anon_sym_EQ_EQ] = ACTIONS(2142), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2142), + [anon_sym_BANG_EQ] = ACTIONS(2142), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2142), + [anon_sym_GT_EQ] = ACTIONS(2142), + [anon_sym_QMARK_QMARK] = ACTIONS(2142), + [anon_sym_instanceof] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_satisfies] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(2374), + [sym__ternary_qmark] = ACTIONS(2222), [sym_html_comment] = ACTIONS(5), }, - [370] = { - [sym_comment] = STATE(370), + [366] = { + [sym_comment] = STATE(366), [sym_identifier] = ACTIONS(2288), [anon_sym_export] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_STAR] = ACTIONS(2288), [anon_sym_default] = ACTIONS(2288), [anon_sym_type] = ACTIONS(2288), - [anon_sym_as] = ACTIONS(2290), + [anon_sym_as] = ACTIONS(2288), [anon_sym_namespace] = ACTIONS(2288), [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_COMMA] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(2288), [anon_sym_RBRACE] = ACTIONS(2288), [anon_sym_typeof] = ACTIONS(2288), [anon_sym_import] = ACTIONS(2288), @@ -79846,7 +79124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2288), [anon_sym_LPAREN] = ACTIONS(2288), [anon_sym_await] = ACTIONS(2288), - [anon_sym_in] = ACTIONS(2290), + [anon_sym_in] = ACTIONS(2288), [anon_sym_while] = ACTIONS(2288), [anon_sym_do] = ACTIONS(2288), [anon_sym_try] = ACTIONS(2288), @@ -79860,38 +79138,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2288), [anon_sym_LBRACK] = ACTIONS(2288), [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(2290), - [anon_sym_DOT] = ACTIONS(2290), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(2288), [anon_sym_DQUOTE] = ACTIONS(2288), [anon_sym_SQUOTE] = ACTIONS(2288), [anon_sym_class] = ACTIONS(2288), [anon_sym_async] = ACTIONS(2288), [anon_sym_function] = ACTIONS(2288), - [anon_sym_QMARK_DOT] = ACTIONS(2290), + [anon_sym_QMARK_DOT] = ACTIONS(2288), [anon_sym_new] = ACTIONS(2288), [anon_sym_using] = ACTIONS(2288), - [anon_sym_AMP_AMP] = ACTIONS(2290), - [anon_sym_PIPE_PIPE] = ACTIONS(2290), - [anon_sym_GT_GT] = ACTIONS(2290), - [anon_sym_GT_GT_GT] = ACTIONS(2290), - [anon_sym_LT_LT] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym_CARET] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), [anon_sym_PLUS] = ACTIONS(2288), [anon_sym_DASH] = ACTIONS(2288), [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_PERCENT] = ACTIONS(2290), - [anon_sym_STAR_STAR] = ACTIONS(2290), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(2290), - [anon_sym_EQ_EQ] = ACTIONS(2290), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2290), - [anon_sym_BANG_EQ] = ACTIONS(2290), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2290), - [anon_sym_GT_EQ] = ACTIONS(2290), - [anon_sym_QMARK_QMARK] = ACTIONS(2290), - [anon_sym_instanceof] = ACTIONS(2290), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), [anon_sym_TILDE] = ACTIONS(2288), [anon_sym_void] = ACTIONS(2288), [anon_sym_delete] = ACTIONS(2288), @@ -79925,125 +79203,345 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2288), [anon_sym_object] = ACTIONS(2288), [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_satisfies] = ACTIONS(2290), + [anon_sym_satisfies] = ACTIONS(2288), [anon_sym_interface] = ACTIONS(2288), [anon_sym_enum] = ACTIONS(2288), - [sym__automatic_semicolon] = ACTIONS(2358), - [sym__ternary_qmark] = ACTIONS(2294), + [sym__automatic_semicolon] = ACTIONS(2290), + [sym__ternary_qmark] = ACTIONS(2290), [sym_html_comment] = ACTIONS(5), }, - [371] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(2982), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(371), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1453), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [anon_sym_extends] = ACTIONS(2061), + [367] = { + [sym_statement_block] = STATE(433), + [sym_comment] = STATE(367), + [ts_builtin_sym_end] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_STAR] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_as] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(2338), + [anon_sym_COMMA] = ACTIONS(2126), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_in] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_QMARK_DOT] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_AMP_AMP] = ACTIONS(2126), + [anon_sym_PIPE_PIPE] = ACTIONS(2126), + [anon_sym_GT_GT] = ACTIONS(2126), + [anon_sym_GT_GT_GT] = ACTIONS(2126), + [anon_sym_LT_LT] = ACTIONS(2126), + [anon_sym_AMP] = ACTIONS(2126), + [anon_sym_CARET] = ACTIONS(2126), + [anon_sym_PIPE] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_PERCENT] = ACTIONS(2126), + [anon_sym_STAR_STAR] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_LT_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ] = ACTIONS(2126), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ] = ACTIONS(2126), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2126), + [anon_sym_GT_EQ] = ACTIONS(2126), + [anon_sym_QMARK_QMARK] = ACTIONS(2126), + [anon_sym_instanceof] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_satisfies] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [sym__automatic_semicolon] = ACTIONS(2130), + [sym__ternary_qmark] = ACTIONS(2130), [sym_html_comment] = ACTIONS(5), }, - [372] = { - [sym_comment] = STATE(372), + [368] = { + [sym_comment] = STATE(368), + [ts_builtin_sym_end] = ACTIONS(2376), + [sym_identifier] = ACTIONS(2264), + [anon_sym_export] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(2266), + [anon_sym_type] = ACTIONS(2264), + [anon_sym_as] = ACTIONS(2266), + [anon_sym_namespace] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2264), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_RBRACE] = ACTIONS(2264), + [anon_sym_typeof] = ACTIONS(2264), + [anon_sym_import] = ACTIONS(2264), + [anon_sym_with] = ACTIONS(2264), + [anon_sym_var] = ACTIONS(2264), + [anon_sym_let] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_BANG] = ACTIONS(2264), + [anon_sym_else] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_switch] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2264), + [anon_sym_await] = ACTIONS(2264), + [anon_sym_in] = ACTIONS(2266), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2264), + [anon_sym_try] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_debugger] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_throw] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym_yield] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_LTtemplate_GT] = ACTIONS(2264), + [anon_sym_GT] = ACTIONS(2266), + [anon_sym_DOT] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(2264), + [anon_sym_SQUOTE] = ACTIONS(2264), + [anon_sym_class] = ACTIONS(2264), + [anon_sym_async] = ACTIONS(2264), + [anon_sym_function] = ACTIONS(2264), + [anon_sym_QMARK_DOT] = ACTIONS(2266), + [anon_sym_new] = ACTIONS(2264), + [anon_sym_using] = ACTIONS(2264), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_GT_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_AMP] = ACTIONS(2266), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(2266), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_SLASH] = ACTIONS(2264), + [anon_sym_PERCENT] = ACTIONS(2266), + [anon_sym_STAR_STAR] = ACTIONS(2266), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_LT_EQ] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2266), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_QMARK_QMARK] = ACTIONS(2266), + [anon_sym_instanceof] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2264), + [anon_sym_void] = ACTIONS(2264), + [anon_sym_delete] = ACTIONS(2264), + [anon_sym_PLUS_PLUS] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(2264), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2264), + [sym_number] = ACTIONS(2264), + [sym_private_property_identifier] = ACTIONS(2264), + [sym_this] = ACTIONS(2264), + [sym_super] = ACTIONS(2264), + [sym_true] = ACTIONS(2264), + [sym_false] = ACTIONS(2264), + [sym_null] = ACTIONS(2264), + [sym_undefined] = ACTIONS(2264), + [anon_sym_AT] = ACTIONS(2264), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_readonly] = ACTIONS(2264), + [anon_sym_get] = ACTIONS(2264), + [anon_sym_set] = ACTIONS(2264), + [anon_sym_declare] = ACTIONS(2264), + [anon_sym_public] = ACTIONS(2264), + [anon_sym_private] = ACTIONS(2264), + [anon_sym_protected] = ACTIONS(2264), + [anon_sym_override] = ACTIONS(2264), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_any] = ACTIONS(2264), + [anon_sym_number] = ACTIONS(2264), + [anon_sym_boolean] = ACTIONS(2264), + [anon_sym_string] = ACTIONS(2264), + [anon_sym_symbol] = ACTIONS(2264), + [anon_sym_object] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2264), + [anon_sym_satisfies] = ACTIONS(2266), + [anon_sym_interface] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + [sym__automatic_semicolon] = ACTIONS(2378), + [sym__ternary_qmark] = ACTIONS(2270), + [sym_html_comment] = ACTIONS(5), + }, + [369] = { + [sym_comment] = STATE(369), + [ts_builtin_sym_end] = ACTIONS(2380), + [sym_identifier] = ACTIONS(2272), + [anon_sym_export] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2274), + [anon_sym_type] = ACTIONS(2272), + [anon_sym_as] = ACTIONS(2274), + [anon_sym_namespace] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_COMMA] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_typeof] = ACTIONS(2272), + [anon_sym_import] = ACTIONS(2272), + [anon_sym_with] = ACTIONS(2272), + [anon_sym_var] = ACTIONS(2272), + [anon_sym_let] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [anon_sym_BANG] = ACTIONS(2272), + [anon_sym_else] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_switch] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_await] = ACTIONS(2272), + [anon_sym_in] = ACTIONS(2274), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_debugger] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_throw] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_yield] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_LTtemplate_GT] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2274), + [anon_sym_DOT] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_class] = ACTIONS(2272), + [anon_sym_async] = ACTIONS(2272), + [anon_sym_function] = ACTIONS(2272), + [anon_sym_QMARK_DOT] = ACTIONS(2274), + [anon_sym_new] = ACTIONS(2272), + [anon_sym_using] = ACTIONS(2272), + [anon_sym_AMP_AMP] = ACTIONS(2274), + [anon_sym_PIPE_PIPE] = ACTIONS(2274), + [anon_sym_GT_GT] = ACTIONS(2274), + [anon_sym_GT_GT_GT] = ACTIONS(2274), + [anon_sym_LT_LT] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2274), + [anon_sym_CARET] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_PLUS] = ACTIONS(2272), + [anon_sym_DASH] = ACTIONS(2272), + [anon_sym_SLASH] = ACTIONS(2272), + [anon_sym_PERCENT] = ACTIONS(2274), + [anon_sym_STAR_STAR] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_LT_EQ] = ACTIONS(2274), + [anon_sym_EQ_EQ] = ACTIONS(2274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2274), + [anon_sym_BANG_EQ] = ACTIONS(2274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2274), + [anon_sym_GT_EQ] = ACTIONS(2274), + [anon_sym_QMARK_QMARK] = ACTIONS(2274), + [anon_sym_instanceof] = ACTIONS(2274), + [anon_sym_TILDE] = ACTIONS(2272), + [anon_sym_void] = ACTIONS(2272), + [anon_sym_delete] = ACTIONS(2272), + [anon_sym_PLUS_PLUS] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2272), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2272), + [sym_number] = ACTIONS(2272), + [sym_private_property_identifier] = ACTIONS(2272), + [sym_this] = ACTIONS(2272), + [sym_super] = ACTIONS(2272), + [sym_true] = ACTIONS(2272), + [sym_false] = ACTIONS(2272), + [sym_null] = ACTIONS(2272), + [sym_undefined] = ACTIONS(2272), + [anon_sym_AT] = ACTIONS(2272), + [anon_sym_static] = ACTIONS(2272), + [anon_sym_readonly] = ACTIONS(2272), + [anon_sym_get] = ACTIONS(2272), + [anon_sym_set] = ACTIONS(2272), + [anon_sym_declare] = ACTIONS(2272), + [anon_sym_public] = ACTIONS(2272), + [anon_sym_private] = ACTIONS(2272), + [anon_sym_protected] = ACTIONS(2272), + [anon_sym_override] = ACTIONS(2272), + [anon_sym_module] = ACTIONS(2272), + [anon_sym_any] = ACTIONS(2272), + [anon_sym_number] = ACTIONS(2272), + [anon_sym_boolean] = ACTIONS(2272), + [anon_sym_string] = ACTIONS(2272), + [anon_sym_symbol] = ACTIONS(2272), + [anon_sym_object] = ACTIONS(2272), + [anon_sym_abstract] = ACTIONS(2272), + [anon_sym_satisfies] = ACTIONS(2274), + [anon_sym_interface] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), + [sym__automatic_semicolon] = ACTIONS(2382), + [sym__ternary_qmark] = ACTIONS(2278), + [sym_html_comment] = ACTIONS(5), + }, + [370] = { + [sym_comment] = STATE(370), [sym_identifier] = ACTIONS(2182), [anon_sym_export] = ACTIONS(2182), [anon_sym_STAR] = ACTIONS(2184), @@ -80148,126 +79646,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2184), [anon_sym_interface] = ACTIONS(2182), [anon_sym_enum] = ACTIONS(2182), - [sym__automatic_semicolon] = ACTIONS(2360), - [sym__ternary_qmark] = ACTIONS(2188), + [sym__automatic_semicolon] = ACTIONS(2186), + [sym__ternary_qmark] = ACTIONS(2186), [sym_html_comment] = ACTIONS(5), }, - [373] = { - [sym_comment] = STATE(373), - [sym_identifier] = ACTIONS(2266), - [anon_sym_export] = ACTIONS(2266), - [anon_sym_STAR] = ACTIONS(2268), - [anon_sym_default] = ACTIONS(2266), - [anon_sym_type] = ACTIONS(2266), - [anon_sym_as] = ACTIONS(2268), - [anon_sym_namespace] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(2266), - [anon_sym_COMMA] = ACTIONS(2268), - [anon_sym_RBRACE] = ACTIONS(2266), - [anon_sym_typeof] = ACTIONS(2266), - [anon_sym_import] = ACTIONS(2266), - [anon_sym_with] = ACTIONS(2266), - [anon_sym_var] = ACTIONS(2266), - [anon_sym_let] = ACTIONS(2266), - [anon_sym_const] = ACTIONS(2266), - [anon_sym_BANG] = ACTIONS(2266), - [anon_sym_if] = ACTIONS(2266), - [anon_sym_switch] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2266), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_await] = ACTIONS(2266), - [anon_sym_in] = ACTIONS(2268), - [anon_sym_while] = ACTIONS(2266), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_try] = ACTIONS(2266), - [anon_sym_break] = ACTIONS(2266), - [anon_sym_continue] = ACTIONS(2266), - [anon_sym_debugger] = ACTIONS(2266), - [anon_sym_return] = ACTIONS(2266), - [anon_sym_throw] = ACTIONS(2266), - [anon_sym_SEMI] = ACTIONS(2266), - [anon_sym_case] = ACTIONS(2266), - [anon_sym_yield] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2266), - [anon_sym_LTtemplate_GT] = ACTIONS(2266), - [anon_sym_GT] = ACTIONS(2268), - [anon_sym_DOT] = ACTIONS(2268), - [anon_sym_DQUOTE] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2266), - [anon_sym_class] = ACTIONS(2266), - [anon_sym_async] = ACTIONS(2266), - [anon_sym_function] = ACTIONS(2266), - [anon_sym_QMARK_DOT] = ACTIONS(2268), - [anon_sym_new] = ACTIONS(2266), - [anon_sym_using] = ACTIONS(2266), - [anon_sym_AMP_AMP] = ACTIONS(2268), - [anon_sym_PIPE_PIPE] = ACTIONS(2268), - [anon_sym_GT_GT] = ACTIONS(2268), - [anon_sym_GT_GT_GT] = ACTIONS(2268), - [anon_sym_LT_LT] = ACTIONS(2268), - [anon_sym_AMP] = ACTIONS(2268), - [anon_sym_CARET] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2268), - [anon_sym_PLUS] = ACTIONS(2266), - [anon_sym_DASH] = ACTIONS(2266), - [anon_sym_SLASH] = ACTIONS(2266), - [anon_sym_PERCENT] = ACTIONS(2268), - [anon_sym_STAR_STAR] = ACTIONS(2268), - [anon_sym_LT] = ACTIONS(2266), - [anon_sym_LT_EQ] = ACTIONS(2268), - [anon_sym_EQ_EQ] = ACTIONS(2268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2268), - [anon_sym_BANG_EQ] = ACTIONS(2268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2268), - [anon_sym_GT_EQ] = ACTIONS(2268), - [anon_sym_QMARK_QMARK] = ACTIONS(2268), - [anon_sym_instanceof] = ACTIONS(2268), - [anon_sym_TILDE] = ACTIONS(2266), - [anon_sym_void] = ACTIONS(2266), - [anon_sym_delete] = ACTIONS(2266), - [anon_sym_PLUS_PLUS] = ACTIONS(2266), - [anon_sym_DASH_DASH] = ACTIONS(2266), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2266), - [sym_number] = ACTIONS(2266), - [sym_private_property_identifier] = ACTIONS(2266), - [sym_this] = ACTIONS(2266), - [sym_super] = ACTIONS(2266), - [sym_true] = ACTIONS(2266), - [sym_false] = ACTIONS(2266), - [sym_null] = ACTIONS(2266), - [sym_undefined] = ACTIONS(2266), - [anon_sym_AT] = ACTIONS(2266), - [anon_sym_static] = ACTIONS(2266), - [anon_sym_readonly] = ACTIONS(2266), - [anon_sym_get] = ACTIONS(2266), - [anon_sym_set] = ACTIONS(2266), - [anon_sym_declare] = ACTIONS(2266), - [anon_sym_public] = ACTIONS(2266), - [anon_sym_private] = ACTIONS(2266), - [anon_sym_protected] = ACTIONS(2266), - [anon_sym_override] = ACTIONS(2266), - [anon_sym_module] = ACTIONS(2266), - [anon_sym_any] = ACTIONS(2266), - [anon_sym_number] = ACTIONS(2266), - [anon_sym_boolean] = ACTIONS(2266), - [anon_sym_string] = ACTIONS(2266), - [anon_sym_symbol] = ACTIONS(2266), - [anon_sym_object] = ACTIONS(2266), - [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(2268), - [anon_sym_interface] = ACTIONS(2266), - [anon_sym_enum] = ACTIONS(2266), - [sym__automatic_semicolon] = ACTIONS(2362), - [sym__ternary_qmark] = ACTIONS(2272), + [371] = { + [sym_comment] = STATE(371), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_as] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_COMMA] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_in] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_GT] = ACTIONS(2160), + [anon_sym_DOT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_QMARK_DOT] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_AMP_AMP] = ACTIONS(2160), + [anon_sym_PIPE_PIPE] = ACTIONS(2160), + [anon_sym_GT_GT] = ACTIONS(2160), + [anon_sym_GT_GT_GT] = ACTIONS(2160), + [anon_sym_LT_LT] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(2160), + [anon_sym_STAR_STAR] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_LT_EQ] = ACTIONS(2160), + [anon_sym_EQ_EQ] = ACTIONS(2160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2160), + [anon_sym_BANG_EQ] = ACTIONS(2160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2160), + [anon_sym_GT_EQ] = ACTIONS(2160), + [anon_sym_QMARK_QMARK] = ACTIONS(2160), + [anon_sym_instanceof] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_satisfies] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(2164), + [sym__ternary_qmark] = ACTIONS(2164), [sym_html_comment] = ACTIONS(5), }, - [374] = { - [sym_comment] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(2364), + [372] = { + [sym_comment] = STATE(372), [sym_identifier] = ACTIONS(2152), [anon_sym_export] = ACTIONS(2152), [anon_sym_STAR] = ACTIONS(2154), + [anon_sym_default] = ACTIONS(2152), [anon_sym_type] = ACTIONS(2152), [anon_sym_as] = ACTIONS(2154), [anon_sym_namespace] = ACTIONS(2152), @@ -80281,7 +79779,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2152), [anon_sym_const] = ACTIONS(2152), [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_else] = ACTIONS(2152), [anon_sym_if] = ACTIONS(2152), [anon_sym_switch] = ACTIONS(2152), [anon_sym_for] = ACTIONS(2152), @@ -80297,6 +79794,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(2152), [anon_sym_throw] = ACTIONS(2152), [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_case] = ACTIONS(2152), [anon_sym_yield] = ACTIONS(2152), [anon_sym_LBRACK] = ACTIONS(2152), [anon_sym_LTtemplate_GT] = ACTIONS(2152), @@ -80368,58 +79866,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2154), [anon_sym_interface] = ACTIONS(2152), [anon_sym_enum] = ACTIONS(2152), - [sym__automatic_semicolon] = ACTIONS(2366), + [sym__automatic_semicolon] = ACTIONS(2384), [sym__ternary_qmark] = ACTIONS(2158), [sym_html_comment] = ACTIONS(5), }, - [375] = { - [sym_comment] = STATE(375), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), + [373] = { + [sym_comment] = STATE(373), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_EQ] = ACTIONS(2144), + [anon_sym_type] = ACTIONS(2142), [anon_sym_as] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), [anon_sym_COMMA] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_else] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), [anon_sym_in] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), [anon_sym_GT] = ACTIONS(2142), [anon_sym_DOT] = ACTIONS(2142), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), [anon_sym_QMARK_DOT] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), [anon_sym_AMP_AMP] = ACTIONS(2142), [anon_sym_PIPE_PIPE] = ACTIONS(2142), [anon_sym_GT_GT] = ACTIONS(2142), @@ -80428,12 +79926,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(2142), [anon_sym_CARET] = ACTIONS(2142), [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), [anon_sym_PERCENT] = ACTIONS(2142), [anon_sym_STAR_STAR] = ACTIONS(2142), - [anon_sym_LT] = ACTIONS(2140), + [anon_sym_LT] = ACTIONS(2142), [anon_sym_LT_EQ] = ACTIONS(2142), [anon_sym_EQ_EQ] = ACTIONS(2142), [anon_sym_EQ_EQ_EQ] = ACTIONS(2142), @@ -80442,268 +79940,1698 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(2142), [anon_sym_QMARK_QMARK] = ACTIONS(2142), [anon_sym_instanceof] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), [anon_sym_satisfies] = ACTIONS(2142), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(2368), - [sym__ternary_qmark] = ACTIONS(2148), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(2386), + [sym__ternary_qmark] = ACTIONS(2222), + [sym_html_comment] = ACTIONS(5), + }, + [374] = { + [sym_comment] = STATE(374), + [ts_builtin_sym_end] = ACTIONS(2388), + [sym_identifier] = ACTIONS(2292), + [anon_sym_export] = ACTIONS(2292), + [anon_sym_STAR] = ACTIONS(2294), + [anon_sym_type] = ACTIONS(2292), + [anon_sym_as] = ACTIONS(2294), + [anon_sym_namespace] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_typeof] = ACTIONS(2292), + [anon_sym_import] = ACTIONS(2292), + [anon_sym_with] = ACTIONS(2292), + [anon_sym_var] = ACTIONS(2292), + [anon_sym_let] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_else] = ACTIONS(2292), + [anon_sym_if] = ACTIONS(2292), + [anon_sym_switch] = ACTIONS(2292), + [anon_sym_for] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_await] = ACTIONS(2292), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(2292), + [anon_sym_try] = ACTIONS(2292), + [anon_sym_break] = ACTIONS(2292), + [anon_sym_continue] = ACTIONS(2292), + [anon_sym_debugger] = ACTIONS(2292), + [anon_sym_return] = ACTIONS(2292), + [anon_sym_throw] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_yield] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2292), + [anon_sym_LTtemplate_GT] = ACTIONS(2292), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_DOT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_SQUOTE] = ACTIONS(2292), + [anon_sym_class] = ACTIONS(2292), + [anon_sym_async] = ACTIONS(2292), + [anon_sym_function] = ACTIONS(2292), + [anon_sym_QMARK_DOT] = ACTIONS(2294), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_using] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2294), + [anon_sym_PIPE_PIPE] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2294), + [anon_sym_GT_GT_GT] = ACTIONS(2294), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_CARET] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_SLASH] = ACTIONS(2292), + [anon_sym_PERCENT] = ACTIONS(2294), + [anon_sym_STAR_STAR] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2292), + [anon_sym_LT_EQ] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2294), + [anon_sym_BANG_EQ] = ACTIONS(2294), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2294), + [anon_sym_GT_EQ] = ACTIONS(2294), + [anon_sym_QMARK_QMARK] = ACTIONS(2294), + [anon_sym_instanceof] = ACTIONS(2294), + [anon_sym_TILDE] = ACTIONS(2292), + [anon_sym_void] = ACTIONS(2292), + [anon_sym_delete] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2292), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2292), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [sym_this] = ACTIONS(2292), + [sym_super] = ACTIONS(2292), + [sym_true] = ACTIONS(2292), + [sym_false] = ACTIONS(2292), + [sym_null] = ACTIONS(2292), + [sym_undefined] = ACTIONS(2292), + [anon_sym_AT] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2292), + [anon_sym_readonly] = ACTIONS(2292), + [anon_sym_get] = ACTIONS(2292), + [anon_sym_set] = ACTIONS(2292), + [anon_sym_declare] = ACTIONS(2292), + [anon_sym_public] = ACTIONS(2292), + [anon_sym_private] = ACTIONS(2292), + [anon_sym_protected] = ACTIONS(2292), + [anon_sym_override] = ACTIONS(2292), + [anon_sym_module] = ACTIONS(2292), + [anon_sym_any] = ACTIONS(2292), + [anon_sym_number] = ACTIONS(2292), + [anon_sym_boolean] = ACTIONS(2292), + [anon_sym_string] = ACTIONS(2292), + [anon_sym_symbol] = ACTIONS(2292), + [anon_sym_object] = ACTIONS(2292), + [anon_sym_abstract] = ACTIONS(2292), + [anon_sym_satisfies] = ACTIONS(2294), + [anon_sym_interface] = ACTIONS(2292), + [anon_sym_enum] = ACTIONS(2292), + [sym__automatic_semicolon] = ACTIONS(2390), + [sym__ternary_qmark] = ACTIONS(2298), + [sym_html_comment] = ACTIONS(5), + }, + [375] = { + [sym_comment] = STATE(375), + [sym_identifier] = ACTIONS(2234), + [anon_sym_export] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_default] = ACTIONS(2234), + [anon_sym_type] = ACTIONS(2234), + [anon_sym_as] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_COMMA] = ACTIONS(2236), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_typeof] = ACTIONS(2234), + [anon_sym_import] = ACTIONS(2234), + [anon_sym_with] = ACTIONS(2234), + [anon_sym_var] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [anon_sym_BANG] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_switch] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_await] = ACTIONS(2234), + [anon_sym_in] = ACTIONS(2236), + [anon_sym_while] = ACTIONS(2234), + [anon_sym_do] = ACTIONS(2234), + [anon_sym_try] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_debugger] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_throw] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_case] = ACTIONS(2234), + [anon_sym_yield] = ACTIONS(2234), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_LTtemplate_GT] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2236), + [anon_sym_DOT] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_class] = ACTIONS(2234), + [anon_sym_async] = ACTIONS(2234), + [anon_sym_function] = ACTIONS(2234), + [anon_sym_QMARK_DOT] = ACTIONS(2236), + [anon_sym_new] = ACTIONS(2234), + [anon_sym_using] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2236), + [anon_sym_PIPE_PIPE] = ACTIONS(2236), + [anon_sym_GT_GT] = ACTIONS(2236), + [anon_sym_GT_GT_GT] = ACTIONS(2236), + [anon_sym_LT_LT] = ACTIONS(2236), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_CARET] = ACTIONS(2236), + [anon_sym_PIPE] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2236), + [anon_sym_STAR_STAR] = ACTIONS(2236), + [anon_sym_LT] = ACTIONS(2234), + [anon_sym_LT_EQ] = ACTIONS(2236), + [anon_sym_EQ_EQ] = ACTIONS(2236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2236), + [anon_sym_BANG_EQ] = ACTIONS(2236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2236), + [anon_sym_GT_EQ] = ACTIONS(2236), + [anon_sym_QMARK_QMARK] = ACTIONS(2236), + [anon_sym_instanceof] = ACTIONS(2236), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_void] = ACTIONS(2234), + [anon_sym_delete] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2234), + [sym_number] = ACTIONS(2234), + [sym_private_property_identifier] = ACTIONS(2234), + [sym_this] = ACTIONS(2234), + [sym_super] = ACTIONS(2234), + [sym_true] = ACTIONS(2234), + [sym_false] = ACTIONS(2234), + [sym_null] = ACTIONS(2234), + [sym_undefined] = ACTIONS(2234), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_static] = ACTIONS(2234), + [anon_sym_readonly] = ACTIONS(2234), + [anon_sym_get] = ACTIONS(2234), + [anon_sym_set] = ACTIONS(2234), + [anon_sym_declare] = ACTIONS(2234), + [anon_sym_public] = ACTIONS(2234), + [anon_sym_private] = ACTIONS(2234), + [anon_sym_protected] = ACTIONS(2234), + [anon_sym_override] = ACTIONS(2234), + [anon_sym_module] = ACTIONS(2234), + [anon_sym_any] = ACTIONS(2234), + [anon_sym_number] = ACTIONS(2234), + [anon_sym_boolean] = ACTIONS(2234), + [anon_sym_string] = ACTIONS(2234), + [anon_sym_symbol] = ACTIONS(2234), + [anon_sym_object] = ACTIONS(2234), + [anon_sym_abstract] = ACTIONS(2234), + [anon_sym_satisfies] = ACTIONS(2236), + [anon_sym_interface] = ACTIONS(2234), + [anon_sym_enum] = ACTIONS(2234), + [sym__automatic_semicolon] = ACTIONS(2392), + [sym__ternary_qmark] = ACTIONS(2240), [sym_html_comment] = ACTIONS(5), }, [376] = { [sym_comment] = STATE(376), - [sym_identifier] = ACTIONS(2194), - [anon_sym_export] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_default] = ACTIONS(2194), - [anon_sym_type] = ACTIONS(2194), - [anon_sym_as] = ACTIONS(2196), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_typeof] = ACTIONS(2194), - [anon_sym_import] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2194), - [anon_sym_var] = ACTIONS(2194), - [anon_sym_let] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_await] = ACTIONS(2194), - [anon_sym_in] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_debugger] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_yield] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_LTtemplate_GT] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2196), - [anon_sym_DOT] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2194), - [anon_sym_SQUOTE] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_async] = ACTIONS(2194), - [anon_sym_function] = ACTIONS(2194), - [anon_sym_QMARK_DOT] = ACTIONS(2196), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_GT_GT] = ACTIONS(2196), - [anon_sym_GT_GT_GT] = ACTIONS(2196), - [anon_sym_LT_LT] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2196), - [anon_sym_CARET] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2196), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_SLASH] = ACTIONS(2194), - [anon_sym_PERCENT] = ACTIONS(2196), - [anon_sym_STAR_STAR] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_LT_EQ] = ACTIONS(2196), - [anon_sym_EQ_EQ] = ACTIONS(2196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2196), - [anon_sym_BANG_EQ] = ACTIONS(2196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2196), - [anon_sym_GT_EQ] = ACTIONS(2196), - [anon_sym_QMARK_QMARK] = ACTIONS(2196), - [anon_sym_instanceof] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_void] = ACTIONS(2194), - [anon_sym_delete] = ACTIONS(2194), - [anon_sym_PLUS_PLUS] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2194), - [sym_number] = ACTIONS(2194), - [sym_private_property_identifier] = ACTIONS(2194), - [sym_this] = ACTIONS(2194), - [sym_super] = ACTIONS(2194), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [sym_null] = ACTIONS(2194), - [sym_undefined] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_readonly] = ACTIONS(2194), - [anon_sym_get] = ACTIONS(2194), - [anon_sym_set] = ACTIONS(2194), - [anon_sym_declare] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_override] = ACTIONS(2194), - [anon_sym_module] = ACTIONS(2194), - [anon_sym_any] = ACTIONS(2194), - [anon_sym_number] = ACTIONS(2194), - [anon_sym_boolean] = ACTIONS(2194), - [anon_sym_string] = ACTIONS(2194), - [anon_sym_symbol] = ACTIONS(2194), - [anon_sym_object] = ACTIONS(2194), - [anon_sym_abstract] = ACTIONS(2194), - [anon_sym_satisfies] = ACTIONS(2196), - [anon_sym_interface] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [sym__automatic_semicolon] = ACTIONS(2370), - [sym__ternary_qmark] = ACTIONS(2200), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(2144), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_EQ] = ACTIONS(2146), + [anon_sym_as] = ACTIONS(2144), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_COMMA] = ACTIONS(2144), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_in] = ACTIONS(2144), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_GT] = ACTIONS(2144), + [anon_sym_DOT] = ACTIONS(2144), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_QMARK_DOT] = ACTIONS(2144), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_AMP_AMP] = ACTIONS(2144), + [anon_sym_PIPE_PIPE] = ACTIONS(2144), + [anon_sym_GT_GT] = ACTIONS(2144), + [anon_sym_GT_GT_GT] = ACTIONS(2144), + [anon_sym_LT_LT] = ACTIONS(2144), + [anon_sym_AMP] = ACTIONS(2144), + [anon_sym_CARET] = ACTIONS(2144), + [anon_sym_PIPE] = ACTIONS(2144), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_PERCENT] = ACTIONS(2144), + [anon_sym_STAR_STAR] = ACTIONS(2144), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_LT_EQ] = ACTIONS(2144), + [anon_sym_EQ_EQ] = ACTIONS(2144), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2144), + [anon_sym_BANG_EQ] = ACTIONS(2144), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2144), + [anon_sym_GT_EQ] = ACTIONS(2144), + [anon_sym_QMARK_QMARK] = ACTIONS(2144), + [anon_sym_instanceof] = ACTIONS(2144), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_satisfies] = ACTIONS(2144), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(2394), + [sym__ternary_qmark] = ACTIONS(2150), [sym_html_comment] = ACTIONS(5), }, [377] = { [sym_comment] = STATE(377), - [sym_identifier] = ACTIONS(2168), - [anon_sym_export] = ACTIONS(2168), - [anon_sym_STAR] = ACTIONS(2170), - [anon_sym_default] = ACTIONS(2168), - [anon_sym_type] = ACTIONS(2168), - [anon_sym_as] = ACTIONS(2170), - [anon_sym_namespace] = ACTIONS(2168), - [anon_sym_LBRACE] = ACTIONS(2168), - [anon_sym_COMMA] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2168), - [anon_sym_typeof] = ACTIONS(2168), - [anon_sym_import] = ACTIONS(2168), - [anon_sym_with] = ACTIONS(2168), - [anon_sym_var] = ACTIONS(2168), - [anon_sym_let] = ACTIONS(2168), - [anon_sym_const] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(2168), - [anon_sym_if] = ACTIONS(2168), - [anon_sym_switch] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_await] = ACTIONS(2168), - [anon_sym_in] = ACTIONS(2170), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_do] = ACTIONS(2168), - [anon_sym_try] = ACTIONS(2168), - [anon_sym_break] = ACTIONS(2168), - [anon_sym_continue] = ACTIONS(2168), - [anon_sym_debugger] = ACTIONS(2168), - [anon_sym_return] = ACTIONS(2168), - [anon_sym_throw] = ACTIONS(2168), - [anon_sym_SEMI] = ACTIONS(2168), - [anon_sym_case] = ACTIONS(2168), - [anon_sym_yield] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_LTtemplate_GT] = ACTIONS(2168), - [anon_sym_GT] = ACTIONS(2170), - [anon_sym_DOT] = ACTIONS(2170), - [anon_sym_DQUOTE] = ACTIONS(2168), - [anon_sym_SQUOTE] = ACTIONS(2168), - [anon_sym_class] = ACTIONS(2168), - [anon_sym_async] = ACTIONS(2168), - [anon_sym_function] = ACTIONS(2168), - [anon_sym_QMARK_DOT] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2168), - [anon_sym_using] = ACTIONS(2168), - [anon_sym_AMP_AMP] = ACTIONS(2170), - [anon_sym_PIPE_PIPE] = ACTIONS(2170), - [anon_sym_GT_GT] = ACTIONS(2170), - [anon_sym_GT_GT_GT] = ACTIONS(2170), - [anon_sym_LT_LT] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2170), - [anon_sym_CARET] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_PLUS] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2168), - [anon_sym_SLASH] = ACTIONS(2168), - [anon_sym_PERCENT] = ACTIONS(2170), - [anon_sym_STAR_STAR] = ACTIONS(2170), - [anon_sym_LT] = ACTIONS(2168), - [anon_sym_LT_EQ] = ACTIONS(2170), - [anon_sym_EQ_EQ] = ACTIONS(2170), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2170), - [anon_sym_BANG_EQ] = ACTIONS(2170), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2170), - [anon_sym_GT_EQ] = ACTIONS(2170), - [anon_sym_QMARK_QMARK] = ACTIONS(2170), - [anon_sym_instanceof] = ACTIONS(2170), - [anon_sym_TILDE] = ACTIONS(2168), - [anon_sym_void] = ACTIONS(2168), - [anon_sym_delete] = ACTIONS(2168), - [anon_sym_PLUS_PLUS] = ACTIONS(2168), - [anon_sym_DASH_DASH] = ACTIONS(2168), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2168), - [sym_number] = ACTIONS(2168), - [sym_private_property_identifier] = ACTIONS(2168), - [sym_this] = ACTIONS(2168), - [sym_super] = ACTIONS(2168), - [sym_true] = ACTIONS(2168), - [sym_false] = ACTIONS(2168), - [sym_null] = ACTIONS(2168), - [sym_undefined] = ACTIONS(2168), - [anon_sym_AT] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_readonly] = ACTIONS(2168), - [anon_sym_get] = ACTIONS(2168), - [anon_sym_set] = ACTIONS(2168), - [anon_sym_declare] = ACTIONS(2168), - [anon_sym_public] = ACTIONS(2168), - [anon_sym_private] = ACTIONS(2168), - [anon_sym_protected] = ACTIONS(2168), - [anon_sym_override] = ACTIONS(2168), - [anon_sym_module] = ACTIONS(2168), - [anon_sym_any] = ACTIONS(2168), - [anon_sym_number] = ACTIONS(2168), - [anon_sym_boolean] = ACTIONS(2168), - [anon_sym_string] = ACTIONS(2168), - [anon_sym_symbol] = ACTIONS(2168), - [anon_sym_object] = ACTIONS(2168), - [anon_sym_abstract] = ACTIONS(2168), - [anon_sym_satisfies] = ACTIONS(2170), - [anon_sym_interface] = ACTIONS(2168), - [anon_sym_enum] = ACTIONS(2168), - [sym__automatic_semicolon] = ACTIONS(2372), - [sym__ternary_qmark] = ACTIONS(2174), + [sym_identifier] = ACTIONS(2226), + [anon_sym_export] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_type] = ACTIONS(2226), + [anon_sym_as] = ACTIONS(2228), + [anon_sym_namespace] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2226), + [anon_sym_COMMA] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_typeof] = ACTIONS(2226), + [anon_sym_import] = ACTIONS(2226), + [anon_sym_with] = ACTIONS(2226), + [anon_sym_var] = ACTIONS(2226), + [anon_sym_let] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_switch] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_await] = ACTIONS(2226), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_do] = ACTIONS(2226), + [anon_sym_try] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_debugger] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_throw] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2226), + [anon_sym_case] = ACTIONS(2226), + [anon_sym_yield] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_LTtemplate_GT] = ACTIONS(2226), + [anon_sym_GT] = ACTIONS(2228), + [anon_sym_DOT] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2226), + [anon_sym_SQUOTE] = ACTIONS(2226), + [anon_sym_class] = ACTIONS(2226), + [anon_sym_async] = ACTIONS(2226), + [anon_sym_function] = ACTIONS(2226), + [anon_sym_QMARK_DOT] = ACTIONS(2228), + [anon_sym_new] = ACTIONS(2226), + [anon_sym_using] = ACTIONS(2226), + [anon_sym_AMP_AMP] = ACTIONS(2228), + [anon_sym_PIPE_PIPE] = ACTIONS(2228), + [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_GT_GT_GT] = ACTIONS(2228), + [anon_sym_LT_LT] = ACTIONS(2228), + [anon_sym_AMP] = ACTIONS(2228), + [anon_sym_CARET] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_SLASH] = ACTIONS(2226), + [anon_sym_PERCENT] = ACTIONS(2228), + [anon_sym_STAR_STAR] = ACTIONS(2228), + [anon_sym_LT] = ACTIONS(2226), + [anon_sym_LT_EQ] = ACTIONS(2228), + [anon_sym_EQ_EQ] = ACTIONS(2228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2228), + [anon_sym_BANG_EQ] = ACTIONS(2228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2228), + [anon_sym_GT_EQ] = ACTIONS(2228), + [anon_sym_QMARK_QMARK] = ACTIONS(2228), + [anon_sym_instanceof] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_void] = ACTIONS(2226), + [anon_sym_delete] = ACTIONS(2226), + [anon_sym_PLUS_PLUS] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2226), + [sym_number] = ACTIONS(2226), + [sym_private_property_identifier] = ACTIONS(2226), + [sym_this] = ACTIONS(2226), + [sym_super] = ACTIONS(2226), + [sym_true] = ACTIONS(2226), + [sym_false] = ACTIONS(2226), + [sym_null] = ACTIONS(2226), + [sym_undefined] = ACTIONS(2226), + [anon_sym_AT] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2226), + [anon_sym_readonly] = ACTIONS(2226), + [anon_sym_get] = ACTIONS(2226), + [anon_sym_set] = ACTIONS(2226), + [anon_sym_declare] = ACTIONS(2226), + [anon_sym_public] = ACTIONS(2226), + [anon_sym_private] = ACTIONS(2226), + [anon_sym_protected] = ACTIONS(2226), + [anon_sym_override] = ACTIONS(2226), + [anon_sym_module] = ACTIONS(2226), + [anon_sym_any] = ACTIONS(2226), + [anon_sym_number] = ACTIONS(2226), + [anon_sym_boolean] = ACTIONS(2226), + [anon_sym_string] = ACTIONS(2226), + [anon_sym_symbol] = ACTIONS(2226), + [anon_sym_object] = ACTIONS(2226), + [anon_sym_abstract] = ACTIONS(2226), + [anon_sym_satisfies] = ACTIONS(2228), + [anon_sym_interface] = ACTIONS(2226), + [anon_sym_enum] = ACTIONS(2226), + [sym__automatic_semicolon] = ACTIONS(2396), + [sym__ternary_qmark] = ACTIONS(2232), [sym_html_comment] = ACTIONS(5), }, [378] = { [sym_comment] = STATE(378), + [ts_builtin_sym_end] = ACTIONS(2398), + [sym_identifier] = ACTIONS(2308), + [anon_sym_export] = ACTIONS(2308), + [anon_sym_STAR] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2308), + [anon_sym_as] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2308), + [anon_sym_LBRACE] = ACTIONS(2308), + [anon_sym_COMMA] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_typeof] = ACTIONS(2308), + [anon_sym_import] = ACTIONS(2308), + [anon_sym_with] = ACTIONS(2308), + [anon_sym_var] = ACTIONS(2308), + [anon_sym_let] = ACTIONS(2308), + [anon_sym_const] = ACTIONS(2308), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_else] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_switch] = ACTIONS(2308), + [anon_sym_for] = ACTIONS(2308), + [anon_sym_LPAREN] = ACTIONS(2308), + [anon_sym_await] = ACTIONS(2308), + [anon_sym_in] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_do] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2308), + [anon_sym_break] = ACTIONS(2308), + [anon_sym_continue] = ACTIONS(2308), + [anon_sym_debugger] = ACTIONS(2308), + [anon_sym_return] = ACTIONS(2308), + [anon_sym_throw] = ACTIONS(2308), + [anon_sym_SEMI] = ACTIONS(2308), + [anon_sym_yield] = ACTIONS(2308), + [anon_sym_LBRACK] = ACTIONS(2308), + [anon_sym_LTtemplate_GT] = ACTIONS(2308), + [anon_sym_GT] = ACTIONS(2310), + [anon_sym_DOT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2308), + [anon_sym_SQUOTE] = ACTIONS(2308), + [anon_sym_class] = ACTIONS(2308), + [anon_sym_async] = ACTIONS(2308), + [anon_sym_function] = ACTIONS(2308), + [anon_sym_QMARK_DOT] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2308), + [anon_sym_using] = ACTIONS(2308), + [anon_sym_AMP_AMP] = ACTIONS(2310), + [anon_sym_PIPE_PIPE] = ACTIONS(2310), + [anon_sym_GT_GT] = ACTIONS(2310), + [anon_sym_GT_GT_GT] = ACTIONS(2310), + [anon_sym_LT_LT] = ACTIONS(2310), + [anon_sym_AMP] = ACTIONS(2310), + [anon_sym_CARET] = ACTIONS(2310), + [anon_sym_PIPE] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2308), + [anon_sym_SLASH] = ACTIONS(2308), + [anon_sym_PERCENT] = ACTIONS(2310), + [anon_sym_STAR_STAR] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2308), + [anon_sym_LT_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), + [anon_sym_GT_EQ] = ACTIONS(2310), + [anon_sym_QMARK_QMARK] = ACTIONS(2310), + [anon_sym_instanceof] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_void] = ACTIONS(2308), + [anon_sym_delete] = ACTIONS(2308), + [anon_sym_PLUS_PLUS] = ACTIONS(2308), + [anon_sym_DASH_DASH] = ACTIONS(2308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2308), + [sym_number] = ACTIONS(2308), + [sym_private_property_identifier] = ACTIONS(2308), + [sym_this] = ACTIONS(2308), + [sym_super] = ACTIONS(2308), + [sym_true] = ACTIONS(2308), + [sym_false] = ACTIONS(2308), + [sym_null] = ACTIONS(2308), + [sym_undefined] = ACTIONS(2308), + [anon_sym_AT] = ACTIONS(2308), + [anon_sym_static] = ACTIONS(2308), + [anon_sym_readonly] = ACTIONS(2308), + [anon_sym_get] = ACTIONS(2308), + [anon_sym_set] = ACTIONS(2308), + [anon_sym_declare] = ACTIONS(2308), + [anon_sym_public] = ACTIONS(2308), + [anon_sym_private] = ACTIONS(2308), + [anon_sym_protected] = ACTIONS(2308), + [anon_sym_override] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2308), + [anon_sym_any] = ACTIONS(2308), + [anon_sym_number] = ACTIONS(2308), + [anon_sym_boolean] = ACTIONS(2308), + [anon_sym_string] = ACTIONS(2308), + [anon_sym_symbol] = ACTIONS(2308), + [anon_sym_object] = ACTIONS(2308), + [anon_sym_abstract] = ACTIONS(2308), + [anon_sym_satisfies] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2308), + [anon_sym_enum] = ACTIONS(2308), + [sym__automatic_semicolon] = ACTIONS(2400), + [sym__ternary_qmark] = ACTIONS(2314), + [sym_html_comment] = ACTIONS(5), + }, + [379] = { + [sym_comment] = STATE(379), + [ts_builtin_sym_end] = ACTIONS(2306), + [sym_identifier] = ACTIONS(2304), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_STAR] = ACTIONS(2304), + [anon_sym_type] = ACTIONS(2304), + [anon_sym_as] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2304), + [anon_sym_LBRACE] = ACTIONS(2304), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_typeof] = ACTIONS(2304), + [anon_sym_import] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(2304), + [anon_sym_var] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(2304), + [anon_sym_else] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_switch] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_await] = ACTIONS(2304), + [anon_sym_in] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_debugger] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_throw] = ACTIONS(2304), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_yield] = ACTIONS(2304), + [anon_sym_LBRACK] = ACTIONS(2304), + [anon_sym_LTtemplate_GT] = ACTIONS(2304), + [anon_sym_GT] = ACTIONS(2304), + [anon_sym_DOT] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2304), + [anon_sym_SQUOTE] = ACTIONS(2304), + [anon_sym_class] = ACTIONS(2304), + [anon_sym_async] = ACTIONS(2304), + [anon_sym_function] = ACTIONS(2304), + [anon_sym_QMARK_DOT] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2304), + [anon_sym_using] = ACTIONS(2304), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_GT_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_AMP] = ACTIONS(2304), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_PIPE] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2304), + [anon_sym_DASH] = ACTIONS(2304), + [anon_sym_SLASH] = ACTIONS(2304), + [anon_sym_PERCENT] = ACTIONS(2304), + [anon_sym_STAR_STAR] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2304), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_QMARK_QMARK] = ACTIONS(2304), + [anon_sym_instanceof] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2304), + [anon_sym_void] = ACTIONS(2304), + [anon_sym_delete] = ACTIONS(2304), + [anon_sym_PLUS_PLUS] = ACTIONS(2304), + [anon_sym_DASH_DASH] = ACTIONS(2304), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2304), + [sym_number] = ACTIONS(2304), + [sym_private_property_identifier] = ACTIONS(2304), + [sym_this] = ACTIONS(2304), + [sym_super] = ACTIONS(2304), + [sym_true] = ACTIONS(2304), + [sym_false] = ACTIONS(2304), + [sym_null] = ACTIONS(2304), + [sym_undefined] = ACTIONS(2304), + [anon_sym_AT] = ACTIONS(2304), + [anon_sym_static] = ACTIONS(2304), + [anon_sym_readonly] = ACTIONS(2304), + [anon_sym_get] = ACTIONS(2304), + [anon_sym_set] = ACTIONS(2304), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_public] = ACTIONS(2304), + [anon_sym_private] = ACTIONS(2304), + [anon_sym_protected] = ACTIONS(2304), + [anon_sym_override] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_any] = ACTIONS(2304), + [anon_sym_number] = ACTIONS(2304), + [anon_sym_boolean] = ACTIONS(2304), + [anon_sym_string] = ACTIONS(2304), + [anon_sym_symbol] = ACTIONS(2304), + [anon_sym_object] = ACTIONS(2304), + [anon_sym_abstract] = ACTIONS(2304), + [anon_sym_satisfies] = ACTIONS(2304), + [anon_sym_interface] = ACTIONS(2304), + [anon_sym_enum] = ACTIONS(2304), + [sym__automatic_semicolon] = ACTIONS(2306), + [sym__ternary_qmark] = ACTIONS(2306), + [sym_html_comment] = ACTIONS(5), + }, + [380] = { + [sym_comment] = STATE(380), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_as] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_COMMA] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_in] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_GT] = ACTIONS(2160), + [anon_sym_DOT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_QMARK_DOT] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_AMP_AMP] = ACTIONS(2160), + [anon_sym_PIPE_PIPE] = ACTIONS(2160), + [anon_sym_GT_GT] = ACTIONS(2160), + [anon_sym_GT_GT_GT] = ACTIONS(2160), + [anon_sym_LT_LT] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(2160), + [anon_sym_STAR_STAR] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_LT_EQ] = ACTIONS(2160), + [anon_sym_EQ_EQ] = ACTIONS(2160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2160), + [anon_sym_BANG_EQ] = ACTIONS(2160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2160), + [anon_sym_GT_EQ] = ACTIONS(2160), + [anon_sym_QMARK_QMARK] = ACTIONS(2160), + [anon_sym_instanceof] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_satisfies] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(2402), + [sym__ternary_qmark] = ACTIONS(2164), + [sym_html_comment] = ACTIONS(5), + }, + [381] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2755), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_spread_element] = STATE(6187), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(381), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(6186), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(2326), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_RPAREN] = ACTIONS(2404), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1583), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2330), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1577), + [sym_html_comment] = ACTIONS(5), + }, + [382] = { + [sym_comment] = STATE(382), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2250), + [anon_sym_default] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_as] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_COMMA] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_in] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_case] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2250), + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_QMARK_DOT] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2250), + [anon_sym_GT_GT] = ACTIONS(2250), + [anon_sym_GT_GT_GT] = ACTIONS(2250), + [anon_sym_LT_LT] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2250), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_PERCENT] = ACTIONS(2250), + [anon_sym_STAR_STAR] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_LT_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2250), + [anon_sym_BANG_EQ] = ACTIONS(2250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2250), + [anon_sym_GT_EQ] = ACTIONS(2250), + [anon_sym_QMARK_QMARK] = ACTIONS(2250), + [anon_sym_instanceof] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_satisfies] = ACTIONS(2250), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [sym__automatic_semicolon] = ACTIONS(2252), + [sym__ternary_qmark] = ACTIONS(2252), + [sym_html_comment] = ACTIONS(5), + }, + [383] = { + [sym_comment] = STATE(383), + [ts_builtin_sym_end] = ACTIONS(2180), + [sym_identifier] = ACTIONS(2178), + [anon_sym_export] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_as] = ACTIONS(2178), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_COMMA] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_typeof] = ACTIONS(2178), + [anon_sym_import] = ACTIONS(2178), + [anon_sym_with] = ACTIONS(2178), + [anon_sym_var] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_else] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_await] = ACTIONS(2178), + [anon_sym_in] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_debugger] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_LTtemplate_GT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_DOT] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2178), + [anon_sym_QMARK_DOT] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2178), + [anon_sym_GT_GT_GT] = ACTIONS(2178), + [anon_sym_LT_LT] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym_CARET] = ACTIONS(2178), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_PERCENT] = ACTIONS(2178), + [anon_sym_STAR_STAR] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_LT_EQ] = ACTIONS(2178), + [anon_sym_EQ_EQ] = ACTIONS(2178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2178), + [anon_sym_BANG_EQ] = ACTIONS(2178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2178), + [anon_sym_GT_EQ] = ACTIONS(2178), + [anon_sym_QMARK_QMARK] = ACTIONS(2178), + [anon_sym_instanceof] = ACTIONS(2178), + [anon_sym_TILDE] = ACTIONS(2178), + [anon_sym_void] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_PLUS_PLUS] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2178), + [sym_number] = ACTIONS(2178), + [sym_private_property_identifier] = ACTIONS(2178), + [sym_this] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [sym_null] = ACTIONS(2178), + [sym_undefined] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_readonly] = ACTIONS(2178), + [anon_sym_get] = ACTIONS(2178), + [anon_sym_set] = ACTIONS(2178), + [anon_sym_declare] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_protected] = ACTIONS(2178), + [anon_sym_override] = ACTIONS(2178), + [anon_sym_module] = ACTIONS(2178), + [anon_sym_any] = ACTIONS(2178), + [anon_sym_number] = ACTIONS(2178), + [anon_sym_boolean] = ACTIONS(2178), + [anon_sym_string] = ACTIONS(2178), + [anon_sym_symbol] = ACTIONS(2178), + [anon_sym_object] = ACTIONS(2178), + [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_satisfies] = ACTIONS(2178), + [anon_sym_interface] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [sym__automatic_semicolon] = ACTIONS(2180), + [sym__ternary_qmark] = ACTIONS(2180), + [sym_html_comment] = ACTIONS(5), + }, + [384] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3042), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(384), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_typeof] = ACTIONS(1647), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), + [anon_sym_extends] = ACTIONS(2061), + [sym_html_comment] = ACTIONS(5), + }, + [385] = { + [sym_comment] = STATE(385), + [sym_identifier] = ACTIONS(2166), + [anon_sym_export] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2166), + [anon_sym_default] = ACTIONS(2166), + [anon_sym_type] = ACTIONS(2166), + [anon_sym_as] = ACTIONS(2166), + [anon_sym_namespace] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_COMMA] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_typeof] = ACTIONS(2166), + [anon_sym_import] = ACTIONS(2166), + [anon_sym_with] = ACTIONS(2166), + [anon_sym_var] = ACTIONS(2166), + [anon_sym_let] = ACTIONS(2166), + [anon_sym_const] = ACTIONS(2166), + [anon_sym_BANG] = ACTIONS(2166), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_switch] = ACTIONS(2166), + [anon_sym_for] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(2166), + [anon_sym_await] = ACTIONS(2166), + [anon_sym_in] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2166), + [anon_sym_do] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2166), + [anon_sym_break] = ACTIONS(2166), + [anon_sym_continue] = ACTIONS(2166), + [anon_sym_debugger] = ACTIONS(2166), + [anon_sym_return] = ACTIONS(2166), + [anon_sym_throw] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_case] = ACTIONS(2166), + [anon_sym_yield] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2166), + [anon_sym_LTtemplate_GT] = ACTIONS(2166), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_DOT] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [anon_sym_SQUOTE] = ACTIONS(2166), + [anon_sym_class] = ACTIONS(2166), + [anon_sym_async] = ACTIONS(2166), + [anon_sym_function] = ACTIONS(2166), + [anon_sym_QMARK_DOT] = ACTIONS(2166), + [anon_sym_new] = ACTIONS(2166), + [anon_sym_using] = ACTIONS(2166), + [anon_sym_AMP_AMP] = ACTIONS(2166), + [anon_sym_PIPE_PIPE] = ACTIONS(2166), + [anon_sym_GT_GT] = ACTIONS(2166), + [anon_sym_GT_GT_GT] = ACTIONS(2166), + [anon_sym_LT_LT] = ACTIONS(2166), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_CARET] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_PERCENT] = ACTIONS(2166), + [anon_sym_STAR_STAR] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_LT_EQ] = ACTIONS(2166), + [anon_sym_EQ_EQ] = ACTIONS(2166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2166), + [anon_sym_BANG_EQ] = ACTIONS(2166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2166), + [anon_sym_QMARK_QMARK] = ACTIONS(2166), + [anon_sym_instanceof] = ACTIONS(2166), + [anon_sym_TILDE] = ACTIONS(2166), + [anon_sym_void] = ACTIONS(2166), + [anon_sym_delete] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2166), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2166), + [sym_number] = ACTIONS(2166), + [sym_private_property_identifier] = ACTIONS(2166), + [sym_this] = ACTIONS(2166), + [sym_super] = ACTIONS(2166), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_undefined] = ACTIONS(2166), + [anon_sym_AT] = ACTIONS(2166), + [anon_sym_static] = ACTIONS(2166), + [anon_sym_readonly] = ACTIONS(2166), + [anon_sym_get] = ACTIONS(2166), + [anon_sym_set] = ACTIONS(2166), + [anon_sym_declare] = ACTIONS(2166), + [anon_sym_public] = ACTIONS(2166), + [anon_sym_private] = ACTIONS(2166), + [anon_sym_protected] = ACTIONS(2166), + [anon_sym_override] = ACTIONS(2166), + [anon_sym_module] = ACTIONS(2166), + [anon_sym_any] = ACTIONS(2166), + [anon_sym_number] = ACTIONS(2166), + [anon_sym_boolean] = ACTIONS(2166), + [anon_sym_string] = ACTIONS(2166), + [anon_sym_symbol] = ACTIONS(2166), + [anon_sym_object] = ACTIONS(2166), + [anon_sym_abstract] = ACTIONS(2166), + [anon_sym_satisfies] = ACTIONS(2166), + [anon_sym_interface] = ACTIONS(2166), + [anon_sym_enum] = ACTIONS(2166), + [sym__automatic_semicolon] = ACTIONS(2168), + [sym__ternary_qmark] = ACTIONS(2168), + [sym_html_comment] = ACTIONS(5), + }, + [386] = { + [sym_comment] = STATE(386), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_STAR] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_as] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_COMMA] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_in] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LTtemplate_GT] = ACTIONS(2172), + [anon_sym_GT] = ACTIONS(2172), + [anon_sym_DOT] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_QMARK_DOT] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_using] = ACTIONS(2172), + [anon_sym_AMP_AMP] = ACTIONS(2172), + [anon_sym_PIPE_PIPE] = ACTIONS(2172), + [anon_sym_GT_GT] = ACTIONS(2172), + [anon_sym_GT_GT_GT] = ACTIONS(2172), + [anon_sym_LT_LT] = ACTIONS(2172), + [anon_sym_AMP] = ACTIONS(2172), + [anon_sym_CARET] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_PERCENT] = ACTIONS(2172), + [anon_sym_STAR_STAR] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(2172), + [anon_sym_LT_EQ] = ACTIONS(2172), + [anon_sym_EQ_EQ] = ACTIONS(2172), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2172), + [anon_sym_BANG_EQ] = ACTIONS(2172), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2172), + [anon_sym_GT_EQ] = ACTIONS(2172), + [anon_sym_QMARK_QMARK] = ACTIONS(2172), + [anon_sym_instanceof] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2172), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2172), + [anon_sym_DASH_DASH] = ACTIONS(2172), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2172), + [sym_number] = ACTIONS(2172), + [sym_private_property_identifier] = ACTIONS(2172), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2172), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_object] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_satisfies] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), + [sym__automatic_semicolon] = ACTIONS(2174), + [sym__ternary_qmark] = ACTIONS(2174), + [sym_html_comment] = ACTIONS(5), + }, + [387] = { + [sym_comment] = STATE(387), + [sym_identifier] = ACTIONS(2260), + [anon_sym_export] = ACTIONS(2260), + [anon_sym_STAR] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2260), + [anon_sym_type] = ACTIONS(2260), + [anon_sym_as] = ACTIONS(2260), + [anon_sym_namespace] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_typeof] = ACTIONS(2260), + [anon_sym_import] = ACTIONS(2260), + [anon_sym_with] = ACTIONS(2260), + [anon_sym_var] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [anon_sym_BANG] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_switch] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_await] = ACTIONS(2260), + [anon_sym_in] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), + [anon_sym_try] = ACTIONS(2260), + [anon_sym_break] = ACTIONS(2260), + [anon_sym_continue] = ACTIONS(2260), + [anon_sym_debugger] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_throw] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_yield] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_LTtemplate_GT] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2260), + [anon_sym_DOT] = ACTIONS(2260), + [anon_sym_DQUOTE] = ACTIONS(2260), + [anon_sym_SQUOTE] = ACTIONS(2260), + [anon_sym_class] = ACTIONS(2260), + [anon_sym_async] = ACTIONS(2260), + [anon_sym_function] = ACTIONS(2260), + [anon_sym_QMARK_DOT] = ACTIONS(2260), + [anon_sym_new] = ACTIONS(2260), + [anon_sym_using] = ACTIONS(2260), + [anon_sym_AMP_AMP] = ACTIONS(2260), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(2260), + [anon_sym_GT_GT_GT] = ACTIONS(2260), + [anon_sym_LT_LT] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2260), + [anon_sym_CARET] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2260), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2260), + [anon_sym_PERCENT] = ACTIONS(2260), + [anon_sym_STAR_STAR] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2260), + [anon_sym_LT_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), + [anon_sym_BANG_EQ] = ACTIONS(2260), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), + [anon_sym_GT_EQ] = ACTIONS(2260), + [anon_sym_QMARK_QMARK] = ACTIONS(2260), + [anon_sym_instanceof] = ACTIONS(2260), + [anon_sym_TILDE] = ACTIONS(2260), + [anon_sym_void] = ACTIONS(2260), + [anon_sym_delete] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2260), + [sym_number] = ACTIONS(2260), + [sym_private_property_identifier] = ACTIONS(2260), + [sym_this] = ACTIONS(2260), + [sym_super] = ACTIONS(2260), + [sym_true] = ACTIONS(2260), + [sym_false] = ACTIONS(2260), + [sym_null] = ACTIONS(2260), + [sym_undefined] = ACTIONS(2260), + [anon_sym_AT] = ACTIONS(2260), + [anon_sym_static] = ACTIONS(2260), + [anon_sym_readonly] = ACTIONS(2260), + [anon_sym_get] = ACTIONS(2260), + [anon_sym_set] = ACTIONS(2260), + [anon_sym_declare] = ACTIONS(2260), + [anon_sym_public] = ACTIONS(2260), + [anon_sym_private] = ACTIONS(2260), + [anon_sym_protected] = ACTIONS(2260), + [anon_sym_override] = ACTIONS(2260), + [anon_sym_module] = ACTIONS(2260), + [anon_sym_any] = ACTIONS(2260), + [anon_sym_number] = ACTIONS(2260), + [anon_sym_boolean] = ACTIONS(2260), + [anon_sym_string] = ACTIONS(2260), + [anon_sym_symbol] = ACTIONS(2260), + [anon_sym_object] = ACTIONS(2260), + [anon_sym_abstract] = ACTIONS(2260), + [anon_sym_satisfies] = ACTIONS(2260), + [anon_sym_interface] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), + [sym__automatic_semicolon] = ACTIONS(2262), + [sym__ternary_qmark] = ACTIONS(2262), + [sym_html_comment] = ACTIONS(5), + }, + [388] = { + [sym_comment] = STATE(388), + [sym_identifier] = ACTIONS(2178), + [anon_sym_export] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_default] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_as] = ACTIONS(2178), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_COMMA] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_typeof] = ACTIONS(2178), + [anon_sym_import] = ACTIONS(2178), + [anon_sym_with] = ACTIONS(2178), + [anon_sym_var] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_await] = ACTIONS(2178), + [anon_sym_in] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_debugger] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_case] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_LTtemplate_GT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_DOT] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2178), + [anon_sym_QMARK_DOT] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2178), + [anon_sym_GT_GT_GT] = ACTIONS(2178), + [anon_sym_LT_LT] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym_CARET] = ACTIONS(2178), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_PERCENT] = ACTIONS(2178), + [anon_sym_STAR_STAR] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_LT_EQ] = ACTIONS(2178), + [anon_sym_EQ_EQ] = ACTIONS(2178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2178), + [anon_sym_BANG_EQ] = ACTIONS(2178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2178), + [anon_sym_GT_EQ] = ACTIONS(2178), + [anon_sym_QMARK_QMARK] = ACTIONS(2178), + [anon_sym_instanceof] = ACTIONS(2178), + [anon_sym_TILDE] = ACTIONS(2178), + [anon_sym_void] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_PLUS_PLUS] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2178), + [sym_number] = ACTIONS(2178), + [sym_private_property_identifier] = ACTIONS(2178), + [sym_this] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [sym_null] = ACTIONS(2178), + [sym_undefined] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_readonly] = ACTIONS(2178), + [anon_sym_get] = ACTIONS(2178), + [anon_sym_set] = ACTIONS(2178), + [anon_sym_declare] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_protected] = ACTIONS(2178), + [anon_sym_override] = ACTIONS(2178), + [anon_sym_module] = ACTIONS(2178), + [anon_sym_any] = ACTIONS(2178), + [anon_sym_number] = ACTIONS(2178), + [anon_sym_boolean] = ACTIONS(2178), + [anon_sym_string] = ACTIONS(2178), + [anon_sym_symbol] = ACTIONS(2178), + [anon_sym_object] = ACTIONS(2178), + [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_satisfies] = ACTIONS(2178), + [anon_sym_interface] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [sym__automatic_semicolon] = ACTIONS(2180), + [sym__ternary_qmark] = ACTIONS(2180), + [sym_html_comment] = ACTIONS(5), + }, + [389] = { + [sym_comment] = STATE(389), [sym_identifier] = ACTIONS(2280), [anon_sym_export] = ACTIONS(2280), [anon_sym_STAR] = ACTIONS(2282), @@ -80808,965 +81736,855 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2282), [anon_sym_interface] = ACTIONS(2280), [anon_sym_enum] = ACTIONS(2280), - [sym__automatic_semicolon] = ACTIONS(2374), + [sym__automatic_semicolon] = ACTIONS(2406), [sym__ternary_qmark] = ACTIONS(2286), [sym_html_comment] = ACTIONS(5), }, - [379] = { - [sym_comment] = STATE(379), - [sym_identifier] = ACTIONS(2302), - [anon_sym_export] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_default] = ACTIONS(2302), - [anon_sym_type] = ACTIONS(2302), - [anon_sym_as] = ACTIONS(2304), - [anon_sym_namespace] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_COMMA] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_typeof] = ACTIONS(2302), - [anon_sym_import] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(2302), - [anon_sym_var] = ACTIONS(2302), - [anon_sym_let] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_await] = ACTIONS(2302), - [anon_sym_in] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_debugger] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_case] = ACTIONS(2302), - [anon_sym_yield] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_LTtemplate_GT] = ACTIONS(2302), - [anon_sym_GT] = ACTIONS(2304), - [anon_sym_DOT] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_function] = ACTIONS(2302), - [anon_sym_QMARK_DOT] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), - [anon_sym_AMP_AMP] = ACTIONS(2304), - [anon_sym_PIPE_PIPE] = ACTIONS(2304), - [anon_sym_GT_GT] = ACTIONS(2304), - [anon_sym_GT_GT_GT] = ACTIONS(2304), - [anon_sym_LT_LT] = ACTIONS(2304), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_CARET] = ACTIONS(2304), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_SLASH] = ACTIONS(2302), - [anon_sym_PERCENT] = ACTIONS(2304), - [anon_sym_STAR_STAR] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2304), - [anon_sym_GT_EQ] = ACTIONS(2304), - [anon_sym_QMARK_QMARK] = ACTIONS(2304), - [anon_sym_instanceof] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2302), - [anon_sym_void] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2302), - [sym_number] = ACTIONS(2302), - [sym_private_property_identifier] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_super] = ACTIONS(2302), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_undefined] = ACTIONS(2302), - [anon_sym_AT] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_readonly] = ACTIONS(2302), - [anon_sym_get] = ACTIONS(2302), - [anon_sym_set] = ACTIONS(2302), - [anon_sym_declare] = ACTIONS(2302), - [anon_sym_public] = ACTIONS(2302), - [anon_sym_private] = ACTIONS(2302), - [anon_sym_protected] = ACTIONS(2302), - [anon_sym_override] = ACTIONS(2302), - [anon_sym_module] = ACTIONS(2302), - [anon_sym_any] = ACTIONS(2302), - [anon_sym_number] = ACTIONS(2302), - [anon_sym_boolean] = ACTIONS(2302), - [anon_sym_string] = ACTIONS(2302), - [anon_sym_symbol] = ACTIONS(2302), - [anon_sym_object] = ACTIONS(2302), - [anon_sym_abstract] = ACTIONS(2302), - [anon_sym_satisfies] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [sym__automatic_semicolon] = ACTIONS(2376), - [sym__ternary_qmark] = ACTIONS(2308), - [sym_html_comment] = ACTIONS(5), - }, - [380] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2608), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(380), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1499), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(2061), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), - [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_extends] = ACTIONS(2061), - [sym_html_comment] = ACTIONS(5), - }, - [381] = { - [sym_statement_block] = STATE(413), - [sym_comment] = STATE(381), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2318), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_in] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2378), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_QMARK_DOT] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2109), - [anon_sym_PIPE_PIPE] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_GT_GT_GT] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_satisfies] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2113), - [sym__ternary_qmark] = ACTIONS(2113), - [sym_html_comment] = ACTIONS(5), - }, - [382] = { - [sym_statement_block] = STATE(413), - [sym_comment] = STATE(382), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_STAR] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_as] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(2318), - [anon_sym_COMMA] = ACTIONS(2109), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_in] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(2380), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_QMARK_DOT] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_AMP_AMP] = ACTIONS(2109), - [anon_sym_PIPE_PIPE] = ACTIONS(2109), - [anon_sym_GT_GT] = ACTIONS(2109), - [anon_sym_GT_GT_GT] = ACTIONS(2109), - [anon_sym_LT_LT] = ACTIONS(2109), - [anon_sym_AMP] = ACTIONS(2109), - [anon_sym_CARET] = ACTIONS(2109), - [anon_sym_PIPE] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_PERCENT] = ACTIONS(2109), - [anon_sym_STAR_STAR] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_LT_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ] = ACTIONS(2109), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ] = ACTIONS(2109), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2109), - [anon_sym_GT_EQ] = ACTIONS(2109), - [anon_sym_QMARK_QMARK] = ACTIONS(2109), - [anon_sym_instanceof] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_satisfies] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym__automatic_semicolon] = ACTIONS(2113), - [sym__ternary_qmark] = ACTIONS(2113), + [390] = { + [sym_comment] = STATE(390), + [sym_identifier] = ACTIONS(2212), + [anon_sym_export] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_default] = ACTIONS(2212), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_as] = ACTIONS(2214), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_COMMA] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_typeof] = ACTIONS(2212), + [anon_sym_import] = ACTIONS(2212), + [anon_sym_with] = ACTIONS(2212), + [anon_sym_var] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_await] = ACTIONS(2212), + [anon_sym_in] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_debugger] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_case] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LTtemplate_GT] = ACTIONS(2212), + [anon_sym_GT] = ACTIONS(2214), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_function] = ACTIONS(2212), + [anon_sym_QMARK_DOT] = ACTIONS(2214), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(2214), + [anon_sym_GT_GT] = ACTIONS(2214), + [anon_sym_GT_GT_GT] = ACTIONS(2214), + [anon_sym_LT_LT] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2214), + [anon_sym_CARET] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_SLASH] = ACTIONS(2212), + [anon_sym_PERCENT] = ACTIONS(2214), + [anon_sym_STAR_STAR] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_LT_EQ] = ACTIONS(2214), + [anon_sym_EQ_EQ] = ACTIONS(2214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2214), + [anon_sym_BANG_EQ] = ACTIONS(2214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2214), + [anon_sym_GT_EQ] = ACTIONS(2214), + [anon_sym_QMARK_QMARK] = ACTIONS(2214), + [anon_sym_instanceof] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_void] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2212), + [sym_number] = ACTIONS(2212), + [sym_private_property_identifier] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [sym_null] = ACTIONS(2212), + [sym_undefined] = ACTIONS(2212), + [anon_sym_AT] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_readonly] = ACTIONS(2212), + [anon_sym_get] = ACTIONS(2212), + [anon_sym_set] = ACTIONS(2212), + [anon_sym_declare] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_override] = ACTIONS(2212), + [anon_sym_module] = ACTIONS(2212), + [anon_sym_any] = ACTIONS(2212), + [anon_sym_number] = ACTIONS(2212), + [anon_sym_boolean] = ACTIONS(2212), + [anon_sym_string] = ACTIONS(2212), + [anon_sym_symbol] = ACTIONS(2212), + [anon_sym_object] = ACTIONS(2212), + [anon_sym_abstract] = ACTIONS(2212), + [anon_sym_satisfies] = ACTIONS(2214), + [anon_sym_interface] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [sym__automatic_semicolon] = ACTIONS(2408), + [sym__ternary_qmark] = ACTIONS(2218), [sym_html_comment] = ACTIONS(5), }, - [383] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3361), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(383), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1663), + [391] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(391), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(2040), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(4998), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_accessibility_modifier] = STATE(418), + [sym_override_modifier] = STATE(471), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(1974), + [sym_identifier] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2061), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_class] = ACTIONS(2410), + [anon_sym_async] = ACTIONS(150), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1069), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), - [sym_this] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(184), + [sym_this] = ACTIONS(2412), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), - [anon_sym_extends] = ACTIONS(2061), - [sym_html_comment] = ACTIONS(5), - }, - [384] = { - [sym_comment] = STATE(384), - [sym_identifier] = ACTIONS(2310), - [anon_sym_export] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2312), - [anon_sym_default] = ACTIONS(2310), - [anon_sym_type] = ACTIONS(2310), - [anon_sym_as] = ACTIONS(2312), - [anon_sym_namespace] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_COMMA] = ACTIONS(2312), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_typeof] = ACTIONS(2310), - [anon_sym_import] = ACTIONS(2310), - [anon_sym_with] = ACTIONS(2310), - [anon_sym_var] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2310), - [anon_sym_const] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2310), - [anon_sym_switch] = ACTIONS(2310), - [anon_sym_for] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_await] = ACTIONS(2310), - [anon_sym_in] = ACTIONS(2312), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_do] = ACTIONS(2310), - [anon_sym_try] = 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(2310), - [anon_sym_case] = ACTIONS(2310), - [anon_sym_yield] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LTtemplate_GT] = ACTIONS(2310), - [anon_sym_GT] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(2312), - [anon_sym_DQUOTE] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2310), - [anon_sym_class] = ACTIONS(2310), - [anon_sym_async] = ACTIONS(2310), - [anon_sym_function] = ACTIONS(2310), - [anon_sym_QMARK_DOT] = ACTIONS(2312), - [anon_sym_new] = ACTIONS(2310), - [anon_sym_using] = ACTIONS(2310), - [anon_sym_AMP_AMP] = ACTIONS(2312), - [anon_sym_PIPE_PIPE] = ACTIONS(2312), - [anon_sym_GT_GT] = ACTIONS(2312), - [anon_sym_GT_GT_GT] = ACTIONS(2312), - [anon_sym_LT_LT] = ACTIONS(2312), - [anon_sym_AMP] = ACTIONS(2312), - [anon_sym_CARET] = ACTIONS(2312), - [anon_sym_PIPE] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_SLASH] = ACTIONS(2310), - [anon_sym_PERCENT] = ACTIONS(2312), - [anon_sym_STAR_STAR] = ACTIONS(2312), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_LT_EQ] = ACTIONS(2312), - [anon_sym_EQ_EQ] = ACTIONS(2312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2312), - [anon_sym_BANG_EQ] = ACTIONS(2312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2312), - [anon_sym_GT_EQ] = ACTIONS(2312), - [anon_sym_QMARK_QMARK] = ACTIONS(2312), - [anon_sym_instanceof] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2310), - [anon_sym_void] = ACTIONS(2310), - [anon_sym_delete] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2310), - [sym_number] = ACTIONS(2310), - [sym_private_property_identifier] = ACTIONS(2310), - [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(2310), - [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_abstract] = ACTIONS(2310), - [anon_sym_satisfies] = ACTIONS(2312), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2310), - [sym__automatic_semicolon] = ACTIONS(2382), - [sym__ternary_qmark] = ACTIONS(2316), - [sym_html_comment] = ACTIONS(5), - }, - [385] = { - [sym_comment] = STATE(385), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(2154), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_as] = ACTIONS(2154), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_COMMA] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2154), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_LTtemplate_GT] = ACTIONS(2152), - [anon_sym_GT] = ACTIONS(2154), - [anon_sym_DOT] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_QMARK_DOT] = ACTIONS(2154), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_using] = ACTIONS(2152), - [anon_sym_AMP_AMP] = ACTIONS(2154), - [anon_sym_PIPE_PIPE] = ACTIONS(2154), - [anon_sym_GT_GT] = ACTIONS(2154), - [anon_sym_GT_GT_GT] = ACTIONS(2154), - [anon_sym_LT_LT] = ACTIONS(2154), - [anon_sym_AMP] = ACTIONS(2154), - [anon_sym_CARET] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_PERCENT] = ACTIONS(2154), - [anon_sym_STAR_STAR] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_LT_EQ] = ACTIONS(2154), - [anon_sym_EQ_EQ] = ACTIONS(2154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2154), - [anon_sym_BANG_EQ] = ACTIONS(2154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2154), - [anon_sym_GT_EQ] = ACTIONS(2154), - [anon_sym_QMARK_QMARK] = ACTIONS(2154), - [anon_sym_instanceof] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(2152), + [sym_undefined] = ACTIONS(1079), + [anon_sym_AT] = ACTIONS(1161), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(2414), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(1175), + [anon_sym_private] = ACTIONS(1175), + [anon_sym_protected] = ACTIONS(1175), + [anon_sym_override] = ACTIONS(1177), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), + [sym_html_comment] = ACTIONS(5), + }, + [392] = { + [sym_comment] = STATE(392), + [sym_identifier] = ACTIONS(2204), + [anon_sym_export] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2206), + [anon_sym_default] = ACTIONS(2204), + [anon_sym_type] = ACTIONS(2204), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_namespace] = ACTIONS(2204), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_COMMA] = ACTIONS(2206), + [anon_sym_RBRACE] = ACTIONS(2204), + [anon_sym_typeof] = ACTIONS(2204), + [anon_sym_import] = ACTIONS(2204), + [anon_sym_with] = ACTIONS(2204), + [anon_sym_var] = ACTIONS(2204), + [anon_sym_let] = ACTIONS(2204), + [anon_sym_const] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_if] = ACTIONS(2204), + [anon_sym_switch] = ACTIONS(2204), + [anon_sym_for] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2204), + [anon_sym_await] = ACTIONS(2204), + [anon_sym_in] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2204), + [anon_sym_do] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(2204), + [anon_sym_break] = ACTIONS(2204), + [anon_sym_continue] = ACTIONS(2204), + [anon_sym_debugger] = ACTIONS(2204), + [anon_sym_return] = ACTIONS(2204), + [anon_sym_throw] = ACTIONS(2204), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym_case] = ACTIONS(2204), + [anon_sym_yield] = ACTIONS(2204), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LTtemplate_GT] = ACTIONS(2204), + [anon_sym_GT] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(2206), + [anon_sym_DQUOTE] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_class] = ACTIONS(2204), + [anon_sym_async] = ACTIONS(2204), + [anon_sym_function] = ACTIONS(2204), + [anon_sym_QMARK_DOT] = ACTIONS(2206), + [anon_sym_new] = ACTIONS(2204), + [anon_sym_using] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2206), + [anon_sym_PIPE_PIPE] = ACTIONS(2206), + [anon_sym_GT_GT] = ACTIONS(2206), + [anon_sym_GT_GT_GT] = ACTIONS(2206), + [anon_sym_LT_LT] = ACTIONS(2206), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_CARET] = ACTIONS(2206), + [anon_sym_PIPE] = ACTIONS(2206), + [anon_sym_PLUS] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2204), + [anon_sym_SLASH] = ACTIONS(2204), + [anon_sym_PERCENT] = ACTIONS(2206), + [anon_sym_STAR_STAR] = ACTIONS(2206), + [anon_sym_LT] = ACTIONS(2204), + [anon_sym_LT_EQ] = ACTIONS(2206), + [anon_sym_EQ_EQ] = ACTIONS(2206), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2206), + [anon_sym_BANG_EQ] = ACTIONS(2206), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2206), + [anon_sym_GT_EQ] = ACTIONS(2206), + [anon_sym_QMARK_QMARK] = ACTIONS(2206), + [anon_sym_instanceof] = ACTIONS(2206), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_void] = ACTIONS(2204), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_DASH_DASH] = ACTIONS(2204), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2152), - [sym_number] = ACTIONS(2152), - [sym_private_property_identifier] = ACTIONS(2152), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_object] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_satisfies] = ACTIONS(2154), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - [sym__automatic_semicolon] = ACTIONS(2384), - [sym__ternary_qmark] = ACTIONS(2158), + [anon_sym_BQUOTE] = ACTIONS(2204), + [sym_number] = ACTIONS(2204), + [sym_private_property_identifier] = ACTIONS(2204), + [sym_this] = ACTIONS(2204), + [sym_super] = ACTIONS(2204), + [sym_true] = ACTIONS(2204), + [sym_false] = ACTIONS(2204), + [sym_null] = ACTIONS(2204), + [sym_undefined] = ACTIONS(2204), + [anon_sym_AT] = ACTIONS(2204), + [anon_sym_static] = ACTIONS(2204), + [anon_sym_readonly] = ACTIONS(2204), + [anon_sym_get] = ACTIONS(2204), + [anon_sym_set] = ACTIONS(2204), + [anon_sym_declare] = ACTIONS(2204), + [anon_sym_public] = ACTIONS(2204), + [anon_sym_private] = ACTIONS(2204), + [anon_sym_protected] = ACTIONS(2204), + [anon_sym_override] = ACTIONS(2204), + [anon_sym_module] = ACTIONS(2204), + [anon_sym_any] = ACTIONS(2204), + [anon_sym_number] = ACTIONS(2204), + [anon_sym_boolean] = ACTIONS(2204), + [anon_sym_string] = ACTIONS(2204), + [anon_sym_symbol] = ACTIONS(2204), + [anon_sym_object] = ACTIONS(2204), + [anon_sym_abstract] = ACTIONS(2204), + [anon_sym_satisfies] = ACTIONS(2206), + [anon_sym_interface] = ACTIONS(2204), + [anon_sym_enum] = ACTIONS(2204), + [sym__automatic_semicolon] = ACTIONS(2416), + [sym__ternary_qmark] = ACTIONS(2210), [sym_html_comment] = ACTIONS(5), }, - [386] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3372), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(386), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), + [393] = { + [sym_comment] = STATE(393), + [sym_identifier] = ACTIONS(2188), + [anon_sym_export] = ACTIONS(2188), + [anon_sym_STAR] = ACTIONS(2190), + [anon_sym_default] = ACTIONS(2188), + [anon_sym_type] = ACTIONS(2188), + [anon_sym_as] = ACTIONS(2190), + [anon_sym_namespace] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_COMMA] = ACTIONS(2190), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_typeof] = ACTIONS(2188), + [anon_sym_import] = ACTIONS(2188), + [anon_sym_with] = ACTIONS(2188), + [anon_sym_var] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_await] = ACTIONS(2188), + [anon_sym_in] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_do] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), + [anon_sym_continue] = ACTIONS(2188), + [anon_sym_debugger] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_throw] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_case] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LTtemplate_GT] = ACTIONS(2188), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_DOT] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_class] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(2188), + [anon_sym_function] = ACTIONS(2188), + [anon_sym_QMARK_DOT] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_GT_GT_GT] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_SLASH] = ACTIONS(2188), + [anon_sym_PERCENT] = ACTIONS(2190), + [anon_sym_STAR_STAR] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_LT_EQ] = ACTIONS(2190), + [anon_sym_EQ_EQ] = ACTIONS(2190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), + [anon_sym_BANG_EQ] = ACTIONS(2190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2190), + [anon_sym_GT_EQ] = ACTIONS(2190), + [anon_sym_QMARK_QMARK] = ACTIONS(2190), + [anon_sym_instanceof] = ACTIONS(2190), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_void] = ACTIONS(2188), + [anon_sym_delete] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_number] = ACTIONS(2188), + [sym_private_property_identifier] = ACTIONS(2188), + [sym_this] = ACTIONS(2188), + [sym_super] = ACTIONS(2188), + [sym_true] = ACTIONS(2188), + [sym_false] = ACTIONS(2188), + [sym_null] = ACTIONS(2188), + [sym_undefined] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(2188), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_readonly] = ACTIONS(2188), + [anon_sym_get] = ACTIONS(2188), + [anon_sym_set] = ACTIONS(2188), + [anon_sym_declare] = ACTIONS(2188), + [anon_sym_public] = ACTIONS(2188), + [anon_sym_private] = ACTIONS(2188), + [anon_sym_protected] = ACTIONS(2188), + [anon_sym_override] = ACTIONS(2188), + [anon_sym_module] = ACTIONS(2188), + [anon_sym_any] = ACTIONS(2188), + [anon_sym_number] = ACTIONS(2188), + [anon_sym_boolean] = ACTIONS(2188), + [anon_sym_string] = ACTIONS(2188), + [anon_sym_symbol] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(2188), + [anon_sym_abstract] = ACTIONS(2188), + [anon_sym_satisfies] = ACTIONS(2190), + [anon_sym_interface] = ACTIONS(2188), + [anon_sym_enum] = ACTIONS(2188), + [sym__automatic_semicolon] = ACTIONS(2418), + [sym__ternary_qmark] = ACTIONS(2194), + [sym_html_comment] = ACTIONS(5), + }, + [394] = { + [sym_comment] = STATE(394), + [sym_identifier] = ACTIONS(2196), + [anon_sym_export] = ACTIONS(2196), + [anon_sym_STAR] = ACTIONS(2196), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_type] = ACTIONS(2196), + [anon_sym_as] = ACTIONS(2196), + [anon_sym_namespace] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_COMMA] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_typeof] = ACTIONS(2196), + [anon_sym_import] = ACTIONS(2196), + [anon_sym_with] = ACTIONS(2196), + [anon_sym_var] = ACTIONS(2196), + [anon_sym_let] = ACTIONS(2196), + [anon_sym_const] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2196), + [anon_sym_if] = ACTIONS(2196), + [anon_sym_switch] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_await] = ACTIONS(2196), + [anon_sym_in] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2196), + [anon_sym_do] = ACTIONS(2196), + [anon_sym_try] = ACTIONS(2196), + [anon_sym_break] = ACTIONS(2196), + [anon_sym_continue] = ACTIONS(2196), + [anon_sym_debugger] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(2196), + [anon_sym_throw] = ACTIONS(2196), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_case] = ACTIONS(2196), + [anon_sym_yield] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2196), + [anon_sym_LTtemplate_GT] = ACTIONS(2196), + [anon_sym_GT] = ACTIONS(2196), + [anon_sym_DOT] = ACTIONS(2196), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_SQUOTE] = ACTIONS(2196), + [anon_sym_class] = ACTIONS(2196), + [anon_sym_async] = ACTIONS(2196), + [anon_sym_function] = ACTIONS(2196), + [anon_sym_QMARK_DOT] = ACTIONS(2196), + [anon_sym_new] = ACTIONS(2196), + [anon_sym_using] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [anon_sym_GT_GT] = ACTIONS(2196), + [anon_sym_GT_GT_GT] = ACTIONS(2196), + [anon_sym_LT_LT] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2196), + [anon_sym_CARET] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2196), + [anon_sym_PLUS] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_SLASH] = ACTIONS(2196), + [anon_sym_PERCENT] = ACTIONS(2196), + [anon_sym_STAR_STAR] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(2196), + [anon_sym_LT_EQ] = ACTIONS(2196), + [anon_sym_EQ_EQ] = ACTIONS(2196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2196), + [anon_sym_BANG_EQ] = ACTIONS(2196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2196), + [anon_sym_GT_EQ] = ACTIONS(2196), + [anon_sym_QMARK_QMARK] = ACTIONS(2196), + [anon_sym_instanceof] = ACTIONS(2196), + [anon_sym_TILDE] = ACTIONS(2196), + [anon_sym_void] = ACTIONS(2196), + [anon_sym_delete] = ACTIONS(2196), + [anon_sym_PLUS_PLUS] = ACTIONS(2196), + [anon_sym_DASH_DASH] = ACTIONS(2196), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2196), + [sym_number] = ACTIONS(2196), + [sym_private_property_identifier] = ACTIONS(2196), + [sym_this] = ACTIONS(2196), + [sym_super] = ACTIONS(2196), + [sym_true] = ACTIONS(2196), + [sym_false] = ACTIONS(2196), + [sym_null] = ACTIONS(2196), + [sym_undefined] = ACTIONS(2196), + [anon_sym_AT] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2196), + [anon_sym_readonly] = ACTIONS(2196), + [anon_sym_get] = ACTIONS(2196), + [anon_sym_set] = ACTIONS(2196), + [anon_sym_declare] = ACTIONS(2196), + [anon_sym_public] = ACTIONS(2196), + [anon_sym_private] = ACTIONS(2196), + [anon_sym_protected] = ACTIONS(2196), + [anon_sym_override] = ACTIONS(2196), + [anon_sym_module] = ACTIONS(2196), + [anon_sym_any] = ACTIONS(2196), + [anon_sym_number] = ACTIONS(2196), + [anon_sym_boolean] = ACTIONS(2196), + [anon_sym_string] = ACTIONS(2196), + [anon_sym_symbol] = ACTIONS(2196), + [anon_sym_object] = ACTIONS(2196), + [anon_sym_abstract] = ACTIONS(2196), + [anon_sym_satisfies] = ACTIONS(2196), + [anon_sym_interface] = ACTIONS(2196), + [anon_sym_enum] = ACTIONS(2196), + [sym__automatic_semicolon] = ACTIONS(2198), + [sym__ternary_qmark] = ACTIONS(2198), + [sym_html_comment] = ACTIONS(5), + }, + [395] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(395), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), [anon_sym_LBRACK] = ACTIONS(2061), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1567), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1543), + [anon_sym_extends] = ACTIONS(2061), + [sym_html_comment] = ACTIONS(5), + }, + [396] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2692), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_spread_element] = STATE(5832), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(396), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(5833), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(2326), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_RPAREN] = ACTIONS(2420), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_AMP] = ACTIONS(2061), - [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2330), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [anon_sym_extends] = ACTIONS(2061), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [387] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2926), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_spread_element] = STATE(5800), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(387), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [aux_sym_array_repeat1] = STATE(5798), + [397] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2706), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_spread_element] = STATE(6085), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(397), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [aux_sym_array_repeat1] = STATE(6086), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(2320), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(2326), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2386), + [anon_sym_RPAREN] = ACTIONS(2422), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2330), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -81784,797 +82602,687 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [388] = { - [sym_comment] = STATE(388), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_as] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_else] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_in] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_GT] = ACTIONS(2140), - [anon_sym_DOT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_QMARK_DOT] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_AMP_AMP] = ACTIONS(2140), - [anon_sym_PIPE_PIPE] = ACTIONS(2140), - [anon_sym_GT_GT] = ACTIONS(2140), - [anon_sym_GT_GT_GT] = ACTIONS(2140), - [anon_sym_LT_LT] = ACTIONS(2140), - [anon_sym_AMP] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_PERCENT] = ACTIONS(2140), - [anon_sym_STAR_STAR] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_LT_EQ] = ACTIONS(2140), - [anon_sym_EQ_EQ] = ACTIONS(2140), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2140), - [anon_sym_BANG_EQ] = ACTIONS(2140), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2140), - [anon_sym_GT_EQ] = ACTIONS(2140), - [anon_sym_QMARK_QMARK] = ACTIONS(2140), - [anon_sym_instanceof] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_satisfies] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(2388), - [sym__ternary_qmark] = ACTIONS(2166), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [389] = { - [sym_comment] = STATE(389), - [sym_identifier] = ACTIONS(2296), - [anon_sym_export] = ACTIONS(2296), - [anon_sym_STAR] = ACTIONS(2296), - [anon_sym_default] = ACTIONS(2296), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_as] = ACTIONS(2296), - [anon_sym_namespace] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2296), - [anon_sym_COMMA] = ACTIONS(2296), - [anon_sym_RBRACE] = ACTIONS(2296), - [anon_sym_typeof] = ACTIONS(2296), - [anon_sym_import] = ACTIONS(2296), - [anon_sym_with] = ACTIONS(2296), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_const] = ACTIONS(2296), - [anon_sym_BANG] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_switch] = ACTIONS(2296), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2296), - [anon_sym_await] = ACTIONS(2296), - [anon_sym_in] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(2296), - [anon_sym_try] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_debugger] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_throw] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2296), - [anon_sym_case] = ACTIONS(2296), - [anon_sym_yield] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2296), - [anon_sym_LTtemplate_GT] = ACTIONS(2296), - [anon_sym_GT] = ACTIONS(2296), - [anon_sym_DOT] = ACTIONS(2296), - [anon_sym_DQUOTE] = ACTIONS(2296), - [anon_sym_SQUOTE] = ACTIONS(2296), - [anon_sym_class] = ACTIONS(2296), - [anon_sym_async] = ACTIONS(2296), - [anon_sym_function] = ACTIONS(2296), - [anon_sym_QMARK_DOT] = ACTIONS(2296), - [anon_sym_new] = ACTIONS(2296), - [anon_sym_using] = ACTIONS(2296), - [anon_sym_AMP_AMP] = ACTIONS(2296), - [anon_sym_PIPE_PIPE] = ACTIONS(2296), - [anon_sym_GT_GT] = ACTIONS(2296), - [anon_sym_GT_GT_GT] = ACTIONS(2296), - [anon_sym_LT_LT] = ACTIONS(2296), - [anon_sym_AMP] = ACTIONS(2296), - [anon_sym_CARET] = ACTIONS(2296), - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_PERCENT] = ACTIONS(2296), - [anon_sym_STAR_STAR] = ACTIONS(2296), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_LT_EQ] = ACTIONS(2296), - [anon_sym_EQ_EQ] = ACTIONS(2296), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2296), - [anon_sym_BANG_EQ] = ACTIONS(2296), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2296), - [anon_sym_GT_EQ] = ACTIONS(2296), - [anon_sym_QMARK_QMARK] = ACTIONS(2296), - [anon_sym_instanceof] = ACTIONS(2296), - [anon_sym_TILDE] = ACTIONS(2296), - [anon_sym_void] = ACTIONS(2296), - [anon_sym_delete] = ACTIONS(2296), - [anon_sym_PLUS_PLUS] = ACTIONS(2296), - [anon_sym_DASH_DASH] = ACTIONS(2296), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2296), - [sym_number] = ACTIONS(2296), - [sym_private_property_identifier] = ACTIONS(2296), - [sym_this] = ACTIONS(2296), - [sym_super] = ACTIONS(2296), - [sym_true] = ACTIONS(2296), - [sym_false] = ACTIONS(2296), - [sym_null] = ACTIONS(2296), - [sym_undefined] = ACTIONS(2296), - [anon_sym_AT] = ACTIONS(2296), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_readonly] = ACTIONS(2296), - [anon_sym_get] = ACTIONS(2296), - [anon_sym_set] = ACTIONS(2296), - [anon_sym_declare] = ACTIONS(2296), - [anon_sym_public] = ACTIONS(2296), - [anon_sym_private] = ACTIONS(2296), - [anon_sym_protected] = ACTIONS(2296), - [anon_sym_override] = ACTIONS(2296), - [anon_sym_module] = ACTIONS(2296), - [anon_sym_any] = ACTIONS(2296), - [anon_sym_number] = ACTIONS(2296), - [anon_sym_boolean] = ACTIONS(2296), - [anon_sym_string] = ACTIONS(2296), - [anon_sym_symbol] = ACTIONS(2296), - [anon_sym_object] = ACTIONS(2296), - [anon_sym_abstract] = ACTIONS(2296), - [anon_sym_satisfies] = ACTIONS(2296), - [anon_sym_interface] = ACTIONS(2296), - [anon_sym_enum] = ACTIONS(2296), - [sym__automatic_semicolon] = ACTIONS(2298), - [sym__ternary_qmark] = ACTIONS(2298), + [398] = { + [sym_comment] = STATE(398), + [sym_identifier] = ACTIONS(2308), + [anon_sym_export] = ACTIONS(2308), + [anon_sym_STAR] = ACTIONS(2310), + [anon_sym_default] = ACTIONS(2308), + [anon_sym_type] = ACTIONS(2308), + [anon_sym_as] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2308), + [anon_sym_LBRACE] = ACTIONS(2308), + [anon_sym_COMMA] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_typeof] = ACTIONS(2308), + [anon_sym_import] = ACTIONS(2308), + [anon_sym_with] = ACTIONS(2308), + [anon_sym_var] = ACTIONS(2308), + [anon_sym_let] = ACTIONS(2308), + [anon_sym_const] = ACTIONS(2308), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_switch] = ACTIONS(2308), + [anon_sym_for] = ACTIONS(2308), + [anon_sym_LPAREN] = ACTIONS(2308), + [anon_sym_await] = ACTIONS(2308), + [anon_sym_in] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_do] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2308), + [anon_sym_break] = ACTIONS(2308), + [anon_sym_continue] = ACTIONS(2308), + [anon_sym_debugger] = ACTIONS(2308), + [anon_sym_return] = ACTIONS(2308), + [anon_sym_throw] = ACTIONS(2308), + [anon_sym_SEMI] = ACTIONS(2308), + [anon_sym_case] = ACTIONS(2308), + [anon_sym_yield] = ACTIONS(2308), + [anon_sym_LBRACK] = ACTIONS(2308), + [anon_sym_LTtemplate_GT] = ACTIONS(2308), + [anon_sym_GT] = ACTIONS(2310), + [anon_sym_DOT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2308), + [anon_sym_SQUOTE] = ACTIONS(2308), + [anon_sym_class] = ACTIONS(2308), + [anon_sym_async] = ACTIONS(2308), + [anon_sym_function] = ACTIONS(2308), + [anon_sym_QMARK_DOT] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2308), + [anon_sym_using] = ACTIONS(2308), + [anon_sym_AMP_AMP] = ACTIONS(2310), + [anon_sym_PIPE_PIPE] = ACTIONS(2310), + [anon_sym_GT_GT] = ACTIONS(2310), + [anon_sym_GT_GT_GT] = ACTIONS(2310), + [anon_sym_LT_LT] = ACTIONS(2310), + [anon_sym_AMP] = ACTIONS(2310), + [anon_sym_CARET] = ACTIONS(2310), + [anon_sym_PIPE] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2308), + [anon_sym_SLASH] = ACTIONS(2308), + [anon_sym_PERCENT] = ACTIONS(2310), + [anon_sym_STAR_STAR] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2308), + [anon_sym_LT_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), + [anon_sym_GT_EQ] = ACTIONS(2310), + [anon_sym_QMARK_QMARK] = ACTIONS(2310), + [anon_sym_instanceof] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_void] = ACTIONS(2308), + [anon_sym_delete] = ACTIONS(2308), + [anon_sym_PLUS_PLUS] = ACTIONS(2308), + [anon_sym_DASH_DASH] = ACTIONS(2308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2308), + [sym_number] = ACTIONS(2308), + [sym_private_property_identifier] = ACTIONS(2308), + [sym_this] = ACTIONS(2308), + [sym_super] = ACTIONS(2308), + [sym_true] = ACTIONS(2308), + [sym_false] = ACTIONS(2308), + [sym_null] = ACTIONS(2308), + [sym_undefined] = ACTIONS(2308), + [anon_sym_AT] = ACTIONS(2308), + [anon_sym_static] = ACTIONS(2308), + [anon_sym_readonly] = ACTIONS(2308), + [anon_sym_get] = ACTIONS(2308), + [anon_sym_set] = ACTIONS(2308), + [anon_sym_declare] = ACTIONS(2308), + [anon_sym_public] = ACTIONS(2308), + [anon_sym_private] = ACTIONS(2308), + [anon_sym_protected] = ACTIONS(2308), + [anon_sym_override] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2308), + [anon_sym_any] = ACTIONS(2308), + [anon_sym_number] = ACTIONS(2308), + [anon_sym_boolean] = ACTIONS(2308), + [anon_sym_string] = ACTIONS(2308), + [anon_sym_symbol] = ACTIONS(2308), + [anon_sym_object] = ACTIONS(2308), + [anon_sym_abstract] = ACTIONS(2308), + [anon_sym_satisfies] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2308), + [anon_sym_enum] = ACTIONS(2308), + [sym__automatic_semicolon] = ACTIONS(2424), + [sym__ternary_qmark] = ACTIONS(2314), [sym_html_comment] = ACTIONS(5), }, - [390] = { - [sym_comment] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(2390), - [sym_identifier] = ACTIONS(2228), - [anon_sym_export] = ACTIONS(2228), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_type] = ACTIONS(2228), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_namespace] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(2228), - [anon_sym_COMMA] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym_typeof] = ACTIONS(2228), - [anon_sym_import] = ACTIONS(2228), - [anon_sym_with] = ACTIONS(2228), - [anon_sym_var] = ACTIONS(2228), - [anon_sym_let] = ACTIONS(2228), - [anon_sym_const] = ACTIONS(2228), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_else] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_switch] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(2228), - [anon_sym_await] = ACTIONS(2228), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2228), - [anon_sym_do] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_debugger] = ACTIONS(2228), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_throw] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2228), - [anon_sym_yield] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2228), - [anon_sym_LTtemplate_GT] = ACTIONS(2228), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_DOT] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_SQUOTE] = ACTIONS(2228), - [anon_sym_class] = ACTIONS(2228), - [anon_sym_async] = ACTIONS(2228), - [anon_sym_function] = ACTIONS(2228), - [anon_sym_QMARK_DOT] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2228), - [anon_sym_using] = ACTIONS(2228), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_CARET] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_SLASH] = ACTIONS(2228), - [anon_sym_PERCENT] = ACTIONS(2230), - [anon_sym_STAR_STAR] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2228), - [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2230), - [anon_sym_GT_EQ] = ACTIONS(2230), - [anon_sym_QMARK_QMARK] = ACTIONS(2230), - [anon_sym_instanceof] = ACTIONS(2230), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_void] = ACTIONS(2228), - [anon_sym_delete] = ACTIONS(2228), - [anon_sym_PLUS_PLUS] = ACTIONS(2228), - [anon_sym_DASH_DASH] = ACTIONS(2228), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2228), - [sym_number] = ACTIONS(2228), - [sym_private_property_identifier] = ACTIONS(2228), - [sym_this] = ACTIONS(2228), - [sym_super] = ACTIONS(2228), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), - [sym_null] = ACTIONS(2228), - [sym_undefined] = ACTIONS(2228), - [anon_sym_AT] = ACTIONS(2228), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_readonly] = ACTIONS(2228), - [anon_sym_get] = ACTIONS(2228), - [anon_sym_set] = ACTIONS(2228), - [anon_sym_declare] = ACTIONS(2228), - [anon_sym_public] = ACTIONS(2228), - [anon_sym_private] = ACTIONS(2228), - [anon_sym_protected] = ACTIONS(2228), - [anon_sym_override] = ACTIONS(2228), - [anon_sym_module] = ACTIONS(2228), - [anon_sym_any] = ACTIONS(2228), - [anon_sym_number] = ACTIONS(2228), - [anon_sym_boolean] = ACTIONS(2228), - [anon_sym_string] = ACTIONS(2228), - [anon_sym_symbol] = ACTIONS(2228), - [anon_sym_object] = ACTIONS(2228), - [anon_sym_abstract] = ACTIONS(2228), - [anon_sym_satisfies] = ACTIONS(2230), - [anon_sym_interface] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(2228), - [sym__automatic_semicolon] = ACTIONS(2392), - [sym__ternary_qmark] = ACTIONS(2234), + [399] = { + [sym_comment] = STATE(399), + [ts_builtin_sym_end] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_STAR] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_as] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2288), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_in] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_QMARK_DOT] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_satisfies] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2290), + [sym__ternary_qmark] = ACTIONS(2290), [sym_html_comment] = ACTIONS(5), }, - [391] = { - [sym_comment] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2310), - [anon_sym_export] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2312), - [anon_sym_type] = ACTIONS(2310), - [anon_sym_as] = ACTIONS(2312), - [anon_sym_namespace] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_COMMA] = ACTIONS(2312), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_typeof] = ACTIONS(2310), - [anon_sym_import] = ACTIONS(2310), - [anon_sym_with] = ACTIONS(2310), - [anon_sym_var] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2310), - [anon_sym_const] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2310), - [anon_sym_else] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2310), - [anon_sym_switch] = ACTIONS(2310), - [anon_sym_for] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_await] = ACTIONS(2310), - [anon_sym_in] = ACTIONS(2312), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_do] = ACTIONS(2310), - [anon_sym_try] = 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(2310), - [anon_sym_yield] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LTtemplate_GT] = ACTIONS(2310), - [anon_sym_GT] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(2312), - [anon_sym_DQUOTE] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2310), - [anon_sym_class] = ACTIONS(2310), - [anon_sym_async] = ACTIONS(2310), - [anon_sym_function] = ACTIONS(2310), - [anon_sym_QMARK_DOT] = ACTIONS(2312), - [anon_sym_new] = ACTIONS(2310), - [anon_sym_using] = ACTIONS(2310), - [anon_sym_AMP_AMP] = ACTIONS(2312), - [anon_sym_PIPE_PIPE] = ACTIONS(2312), - [anon_sym_GT_GT] = ACTIONS(2312), - [anon_sym_GT_GT_GT] = ACTIONS(2312), - [anon_sym_LT_LT] = ACTIONS(2312), - [anon_sym_AMP] = ACTIONS(2312), - [anon_sym_CARET] = ACTIONS(2312), - [anon_sym_PIPE] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_SLASH] = ACTIONS(2310), - [anon_sym_PERCENT] = ACTIONS(2312), - [anon_sym_STAR_STAR] = ACTIONS(2312), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_LT_EQ] = ACTIONS(2312), - [anon_sym_EQ_EQ] = ACTIONS(2312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2312), - [anon_sym_BANG_EQ] = ACTIONS(2312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2312), - [anon_sym_GT_EQ] = ACTIONS(2312), - [anon_sym_QMARK_QMARK] = ACTIONS(2312), - [anon_sym_instanceof] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2310), - [anon_sym_void] = ACTIONS(2310), - [anon_sym_delete] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2310), - [sym_number] = ACTIONS(2310), - [sym_private_property_identifier] = ACTIONS(2310), - [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(2310), - [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_abstract] = ACTIONS(2310), - [anon_sym_satisfies] = ACTIONS(2312), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2310), - [sym__automatic_semicolon] = ACTIONS(2396), - [sym__ternary_qmark] = ACTIONS(2316), + [400] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2890), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(400), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1597), + [anon_sym_extends] = ACTIONS(2061), [sym_html_comment] = ACTIONS(5), }, - [392] = { - [sym_comment] = STATE(392), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_as] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_in] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_DOT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_QMARK_DOT] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_GT_GT_GT] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_PERCENT] = ACTIONS(2190), - [anon_sym_STAR_STAR] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_LT_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2190), - [anon_sym_GT_EQ] = ACTIONS(2190), - [anon_sym_QMARK_QMARK] = ACTIONS(2190), - [anon_sym_instanceof] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_satisfies] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(2398), - [sym__ternary_qmark] = ACTIONS(2192), + [401] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3117), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(401), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(2061), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(2061), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2061), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), + [anon_sym_extends] = ACTIONS(2061), [sym_html_comment] = ACTIONS(5), }, - [393] = { - [sym_comment] = STATE(393), - [ts_builtin_sym_end] = ACTIONS(2260), - [sym_identifier] = ACTIONS(2258), - [anon_sym_export] = ACTIONS(2258), - [anon_sym_STAR] = ACTIONS(2258), - [anon_sym_type] = ACTIONS(2258), - [anon_sym_as] = ACTIONS(2258), - [anon_sym_namespace] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_COMMA] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2258), - [anon_sym_import] = ACTIONS(2258), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_var] = ACTIONS(2258), - [anon_sym_let] = ACTIONS(2258), - [anon_sym_const] = ACTIONS(2258), - [anon_sym_BANG] = ACTIONS(2258), - [anon_sym_else] = ACTIONS(2258), - [anon_sym_if] = ACTIONS(2258), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_for] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_await] = ACTIONS(2258), - [anon_sym_in] = ACTIONS(2258), - [anon_sym_while] = ACTIONS(2258), - [anon_sym_do] = ACTIONS(2258), - [anon_sym_try] = ACTIONS(2258), - [anon_sym_break] = ACTIONS(2258), - [anon_sym_continue] = ACTIONS(2258), - [anon_sym_debugger] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(2258), - [anon_sym_throw] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2258), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_LTtemplate_GT] = ACTIONS(2258), - [anon_sym_GT] = ACTIONS(2258), - [anon_sym_DOT] = ACTIONS(2258), - [anon_sym_DQUOTE] = ACTIONS(2258), - [anon_sym_SQUOTE] = ACTIONS(2258), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2258), - [anon_sym_function] = ACTIONS(2258), - [anon_sym_QMARK_DOT] = ACTIONS(2258), - [anon_sym_new] = ACTIONS(2258), - [anon_sym_using] = ACTIONS(2258), - [anon_sym_AMP_AMP] = ACTIONS(2258), - [anon_sym_PIPE_PIPE] = ACTIONS(2258), - [anon_sym_GT_GT] = ACTIONS(2258), - [anon_sym_GT_GT_GT] = ACTIONS(2258), - [anon_sym_LT_LT] = ACTIONS(2258), - [anon_sym_AMP] = ACTIONS(2258), - [anon_sym_CARET] = ACTIONS(2258), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2258), - [anon_sym_PERCENT] = ACTIONS(2258), - [anon_sym_STAR_STAR] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2258), - [anon_sym_LT_EQ] = ACTIONS(2258), - [anon_sym_EQ_EQ] = ACTIONS(2258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2258), - [anon_sym_BANG_EQ] = ACTIONS(2258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2258), - [anon_sym_GT_EQ] = ACTIONS(2258), - [anon_sym_QMARK_QMARK] = ACTIONS(2258), - [anon_sym_instanceof] = ACTIONS(2258), - [anon_sym_TILDE] = ACTIONS(2258), - [anon_sym_void] = ACTIONS(2258), - [anon_sym_delete] = ACTIONS(2258), - [anon_sym_PLUS_PLUS] = ACTIONS(2258), - [anon_sym_DASH_DASH] = ACTIONS(2258), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2258), - [sym_number] = ACTIONS(2258), - [sym_private_property_identifier] = ACTIONS(2258), - [sym_this] = ACTIONS(2258), - [sym_super] = ACTIONS(2258), - [sym_true] = ACTIONS(2258), - [sym_false] = ACTIONS(2258), - [sym_null] = ACTIONS(2258), - [sym_undefined] = ACTIONS(2258), - [anon_sym_AT] = ACTIONS(2258), - [anon_sym_static] = ACTIONS(2258), - [anon_sym_readonly] = ACTIONS(2258), - [anon_sym_get] = ACTIONS(2258), - [anon_sym_set] = ACTIONS(2258), - [anon_sym_declare] = ACTIONS(2258), - [anon_sym_public] = ACTIONS(2258), - [anon_sym_private] = ACTIONS(2258), - [anon_sym_protected] = ACTIONS(2258), - [anon_sym_override] = ACTIONS(2258), - [anon_sym_module] = ACTIONS(2258), - [anon_sym_any] = ACTIONS(2258), - [anon_sym_number] = ACTIONS(2258), - [anon_sym_boolean] = ACTIONS(2258), - [anon_sym_string] = ACTIONS(2258), - [anon_sym_symbol] = ACTIONS(2258), - [anon_sym_object] = ACTIONS(2258), - [anon_sym_abstract] = ACTIONS(2258), - [anon_sym_satisfies] = ACTIONS(2258), - [anon_sym_interface] = ACTIONS(2258), - [anon_sym_enum] = ACTIONS(2258), - [sym__automatic_semicolon] = ACTIONS(2260), - [sym__ternary_qmark] = ACTIONS(2260), + [402] = { + [sym_comment] = STATE(402), + [ts_builtin_sym_end] = ACTIONS(2302), + [sym_identifier] = ACTIONS(2300), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_STAR] = ACTIONS(2300), + [anon_sym_type] = ACTIONS(2300), + [anon_sym_as] = ACTIONS(2300), + [anon_sym_namespace] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2300), + [anon_sym_COMMA] = ACTIONS(2300), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2300), + [anon_sym_import] = ACTIONS(2300), + [anon_sym_with] = ACTIONS(2300), + [anon_sym_var] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(2300), + [anon_sym_else] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_switch] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_await] = ACTIONS(2300), + [anon_sym_in] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_debugger] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_throw] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2300), + [anon_sym_LTtemplate_GT] = ACTIONS(2300), + [anon_sym_GT] = ACTIONS(2300), + [anon_sym_DOT] = ACTIONS(2300), + [anon_sym_DQUOTE] = ACTIONS(2300), + [anon_sym_SQUOTE] = ACTIONS(2300), + [anon_sym_class] = ACTIONS(2300), + [anon_sym_async] = ACTIONS(2300), + [anon_sym_function] = ACTIONS(2300), + [anon_sym_QMARK_DOT] = ACTIONS(2300), + [anon_sym_new] = ACTIONS(2300), + [anon_sym_using] = ACTIONS(2300), + [anon_sym_AMP_AMP] = ACTIONS(2300), + [anon_sym_PIPE_PIPE] = ACTIONS(2300), + [anon_sym_GT_GT] = ACTIONS(2300), + [anon_sym_GT_GT_GT] = ACTIONS(2300), + [anon_sym_LT_LT] = ACTIONS(2300), + [anon_sym_AMP] = ACTIONS(2300), + [anon_sym_CARET] = ACTIONS(2300), + [anon_sym_PIPE] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_PERCENT] = ACTIONS(2300), + [anon_sym_STAR_STAR] = ACTIONS(2300), + [anon_sym_LT] = ACTIONS(2300), + [anon_sym_LT_EQ] = ACTIONS(2300), + [anon_sym_EQ_EQ] = ACTIONS(2300), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2300), + [anon_sym_BANG_EQ] = ACTIONS(2300), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2300), + [anon_sym_GT_EQ] = ACTIONS(2300), + [anon_sym_QMARK_QMARK] = ACTIONS(2300), + [anon_sym_instanceof] = ACTIONS(2300), + [anon_sym_TILDE] = ACTIONS(2300), + [anon_sym_void] = ACTIONS(2300), + [anon_sym_delete] = ACTIONS(2300), + [anon_sym_PLUS_PLUS] = ACTIONS(2300), + [anon_sym_DASH_DASH] = ACTIONS(2300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2300), + [sym_number] = ACTIONS(2300), + [sym_private_property_identifier] = ACTIONS(2300), + [sym_this] = ACTIONS(2300), + [sym_super] = ACTIONS(2300), + [sym_true] = ACTIONS(2300), + [sym_false] = ACTIONS(2300), + [sym_null] = ACTIONS(2300), + [sym_undefined] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2300), + [anon_sym_static] = ACTIONS(2300), + [anon_sym_readonly] = ACTIONS(2300), + [anon_sym_get] = ACTIONS(2300), + [anon_sym_set] = ACTIONS(2300), + [anon_sym_declare] = ACTIONS(2300), + [anon_sym_public] = ACTIONS(2300), + [anon_sym_private] = ACTIONS(2300), + [anon_sym_protected] = ACTIONS(2300), + [anon_sym_override] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_any] = ACTIONS(2300), + [anon_sym_number] = ACTIONS(2300), + [anon_sym_boolean] = ACTIONS(2300), + [anon_sym_string] = ACTIONS(2300), + [anon_sym_symbol] = ACTIONS(2300), + [anon_sym_object] = ACTIONS(2300), + [anon_sym_abstract] = ACTIONS(2300), + [anon_sym_satisfies] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2300), + [anon_sym_enum] = ACTIONS(2300), + [sym__automatic_semicolon] = ACTIONS(2302), + [sym__ternary_qmark] = ACTIONS(2302), [sym_html_comment] = ACTIONS(5), }, - [394] = { - [sym_comment] = STATE(394), - [ts_builtin_sym_end] = ACTIONS(2400), - [sym_identifier] = ACTIONS(2302), - [anon_sym_export] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_type] = ACTIONS(2302), - [anon_sym_as] = ACTIONS(2304), - [anon_sym_namespace] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_COMMA] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_typeof] = ACTIONS(2302), - [anon_sym_import] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(2302), - [anon_sym_var] = ACTIONS(2302), - [anon_sym_let] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_else] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_await] = ACTIONS(2302), - [anon_sym_in] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_debugger] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_yield] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_LTtemplate_GT] = ACTIONS(2302), - [anon_sym_GT] = ACTIONS(2304), - [anon_sym_DOT] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_function] = ACTIONS(2302), - [anon_sym_QMARK_DOT] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), - [anon_sym_AMP_AMP] = ACTIONS(2304), - [anon_sym_PIPE_PIPE] = ACTIONS(2304), - [anon_sym_GT_GT] = ACTIONS(2304), - [anon_sym_GT_GT_GT] = ACTIONS(2304), - [anon_sym_LT_LT] = ACTIONS(2304), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_CARET] = ACTIONS(2304), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_SLASH] = ACTIONS(2302), - [anon_sym_PERCENT] = ACTIONS(2304), - [anon_sym_STAR_STAR] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2304), - [anon_sym_GT_EQ] = ACTIONS(2304), - [anon_sym_QMARK_QMARK] = ACTIONS(2304), - [anon_sym_instanceof] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2302), - [anon_sym_void] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2302), - [sym_number] = ACTIONS(2302), - [sym_private_property_identifier] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_super] = ACTIONS(2302), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_undefined] = ACTIONS(2302), - [anon_sym_AT] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_readonly] = ACTIONS(2302), - [anon_sym_get] = ACTIONS(2302), - [anon_sym_set] = ACTIONS(2302), - [anon_sym_declare] = ACTIONS(2302), - [anon_sym_public] = ACTIONS(2302), - [anon_sym_private] = ACTIONS(2302), - [anon_sym_protected] = ACTIONS(2302), - [anon_sym_override] = ACTIONS(2302), - [anon_sym_module] = ACTIONS(2302), - [anon_sym_any] = ACTIONS(2302), - [anon_sym_number] = ACTIONS(2302), - [anon_sym_boolean] = ACTIONS(2302), - [anon_sym_string] = ACTIONS(2302), - [anon_sym_symbol] = ACTIONS(2302), - [anon_sym_object] = ACTIONS(2302), - [anon_sym_abstract] = ACTIONS(2302), - [anon_sym_satisfies] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [sym__automatic_semicolon] = ACTIONS(2402), - [sym__ternary_qmark] = ACTIONS(2308), + [403] = { + [sym_comment] = STATE(403), + [sym_identifier] = ACTIONS(2272), + [anon_sym_export] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2274), + [anon_sym_default] = ACTIONS(2272), + [anon_sym_type] = ACTIONS(2272), + [anon_sym_as] = ACTIONS(2274), + [anon_sym_namespace] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_COMMA] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_typeof] = ACTIONS(2272), + [anon_sym_import] = ACTIONS(2272), + [anon_sym_with] = ACTIONS(2272), + [anon_sym_var] = ACTIONS(2272), + [anon_sym_let] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [anon_sym_BANG] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_switch] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_await] = ACTIONS(2272), + [anon_sym_in] = ACTIONS(2274), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_debugger] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_throw] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_case] = ACTIONS(2272), + [anon_sym_yield] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_LTtemplate_GT] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2274), + [anon_sym_DOT] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_class] = ACTIONS(2272), + [anon_sym_async] = ACTIONS(2272), + [anon_sym_function] = ACTIONS(2272), + [anon_sym_QMARK_DOT] = ACTIONS(2274), + [anon_sym_new] = ACTIONS(2272), + [anon_sym_using] = ACTIONS(2272), + [anon_sym_AMP_AMP] = ACTIONS(2274), + [anon_sym_PIPE_PIPE] = ACTIONS(2274), + [anon_sym_GT_GT] = ACTIONS(2274), + [anon_sym_GT_GT_GT] = ACTIONS(2274), + [anon_sym_LT_LT] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2274), + [anon_sym_CARET] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_PLUS] = ACTIONS(2272), + [anon_sym_DASH] = ACTIONS(2272), + [anon_sym_SLASH] = ACTIONS(2272), + [anon_sym_PERCENT] = ACTIONS(2274), + [anon_sym_STAR_STAR] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_LT_EQ] = ACTIONS(2274), + [anon_sym_EQ_EQ] = ACTIONS(2274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2274), + [anon_sym_BANG_EQ] = ACTIONS(2274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2274), + [anon_sym_GT_EQ] = ACTIONS(2274), + [anon_sym_QMARK_QMARK] = ACTIONS(2274), + [anon_sym_instanceof] = ACTIONS(2274), + [anon_sym_TILDE] = ACTIONS(2272), + [anon_sym_void] = ACTIONS(2272), + [anon_sym_delete] = ACTIONS(2272), + [anon_sym_PLUS_PLUS] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2272), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2272), + [sym_number] = ACTIONS(2272), + [sym_private_property_identifier] = ACTIONS(2272), + [sym_this] = ACTIONS(2272), + [sym_super] = ACTIONS(2272), + [sym_true] = ACTIONS(2272), + [sym_false] = ACTIONS(2272), + [sym_null] = ACTIONS(2272), + [sym_undefined] = ACTIONS(2272), + [anon_sym_AT] = ACTIONS(2272), + [anon_sym_static] = ACTIONS(2272), + [anon_sym_readonly] = ACTIONS(2272), + [anon_sym_get] = ACTIONS(2272), + [anon_sym_set] = ACTIONS(2272), + [anon_sym_declare] = ACTIONS(2272), + [anon_sym_public] = ACTIONS(2272), + [anon_sym_private] = ACTIONS(2272), + [anon_sym_protected] = ACTIONS(2272), + [anon_sym_override] = ACTIONS(2272), + [anon_sym_module] = ACTIONS(2272), + [anon_sym_any] = ACTIONS(2272), + [anon_sym_number] = ACTIONS(2272), + [anon_sym_boolean] = ACTIONS(2272), + [anon_sym_string] = ACTIONS(2272), + [anon_sym_symbol] = ACTIONS(2272), + [anon_sym_object] = ACTIONS(2272), + [anon_sym_abstract] = ACTIONS(2272), + [anon_sym_satisfies] = ACTIONS(2274), + [anon_sym_interface] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), + [sym__automatic_semicolon] = ACTIONS(2426), + [sym__ternary_qmark] = ACTIONS(2278), [sym_html_comment] = ACTIONS(5), }, - [395] = { - [sym_comment] = STATE(395), - [ts_builtin_sym_end] = ACTIONS(2404), + [404] = { + [sym_comment] = STATE(404), + [ts_builtin_sym_end] = ACTIONS(2428), [sym_identifier] = ACTIONS(2280), [anon_sym_export] = ACTIONS(2280), [anon_sym_STAR] = ACTIONS(2282), @@ -82678,571 +83386,568 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2282), [anon_sym_interface] = ACTIONS(2280), [anon_sym_enum] = ACTIONS(2280), - [sym__automatic_semicolon] = ACTIONS(2406), + [sym__automatic_semicolon] = ACTIONS(2430), [sym__ternary_qmark] = ACTIONS(2286), [sym_html_comment] = ACTIONS(5), }, - [396] = { - [sym_comment] = STATE(396), - [sym_identifier] = ACTIONS(2262), - [anon_sym_export] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(2262), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_type] = ACTIONS(2262), - [anon_sym_as] = ACTIONS(2262), - [anon_sym_namespace] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_COMMA] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_import] = ACTIONS(2262), - [anon_sym_with] = ACTIONS(2262), - [anon_sym_var] = ACTIONS(2262), - [anon_sym_let] = ACTIONS(2262), - [anon_sym_const] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_if] = ACTIONS(2262), - [anon_sym_switch] = ACTIONS(2262), - [anon_sym_for] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_await] = ACTIONS(2262), - [anon_sym_in] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2262), - [anon_sym_do] = ACTIONS(2262), - [anon_sym_try] = ACTIONS(2262), - [anon_sym_break] = ACTIONS(2262), - [anon_sym_continue] = ACTIONS(2262), - [anon_sym_debugger] = ACTIONS(2262), - [anon_sym_return] = ACTIONS(2262), - [anon_sym_throw] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_case] = ACTIONS(2262), - [anon_sym_yield] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_LTtemplate_GT] = ACTIONS(2262), - [anon_sym_GT] = ACTIONS(2262), - [anon_sym_DOT] = ACTIONS(2262), - [anon_sym_DQUOTE] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(2262), - [anon_sym_class] = ACTIONS(2262), - [anon_sym_async] = ACTIONS(2262), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_QMARK_DOT] = ACTIONS(2262), - [anon_sym_new] = ACTIONS(2262), - [anon_sym_using] = ACTIONS(2262), - [anon_sym_AMP_AMP] = ACTIONS(2262), - [anon_sym_PIPE_PIPE] = ACTIONS(2262), - [anon_sym_GT_GT] = ACTIONS(2262), - [anon_sym_GT_GT_GT] = ACTIONS(2262), - [anon_sym_LT_LT] = ACTIONS(2262), - [anon_sym_AMP] = ACTIONS(2262), - [anon_sym_CARET] = ACTIONS(2262), - [anon_sym_PIPE] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_SLASH] = ACTIONS(2262), - [anon_sym_PERCENT] = ACTIONS(2262), - [anon_sym_STAR_STAR] = ACTIONS(2262), - [anon_sym_LT] = ACTIONS(2262), - [anon_sym_LT_EQ] = ACTIONS(2262), - [anon_sym_EQ_EQ] = ACTIONS(2262), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2262), - [anon_sym_BANG_EQ] = ACTIONS(2262), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2262), - [anon_sym_GT_EQ] = ACTIONS(2262), - [anon_sym_QMARK_QMARK] = ACTIONS(2262), - [anon_sym_instanceof] = ACTIONS(2262), - [anon_sym_TILDE] = ACTIONS(2262), - [anon_sym_void] = ACTIONS(2262), - [anon_sym_delete] = ACTIONS(2262), - [anon_sym_PLUS_PLUS] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(2262), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2262), - [sym_number] = ACTIONS(2262), - [sym_private_property_identifier] = ACTIONS(2262), - [sym_this] = ACTIONS(2262), - [sym_super] = ACTIONS(2262), - [sym_true] = ACTIONS(2262), - [sym_false] = ACTIONS(2262), - [sym_null] = ACTIONS(2262), - [sym_undefined] = ACTIONS(2262), - [anon_sym_AT] = ACTIONS(2262), - [anon_sym_static] = ACTIONS(2262), - [anon_sym_readonly] = ACTIONS(2262), - [anon_sym_get] = ACTIONS(2262), - [anon_sym_set] = ACTIONS(2262), - [anon_sym_declare] = ACTIONS(2262), - [anon_sym_public] = ACTIONS(2262), - [anon_sym_private] = ACTIONS(2262), - [anon_sym_protected] = ACTIONS(2262), - [anon_sym_override] = ACTIONS(2262), - [anon_sym_module] = ACTIONS(2262), - [anon_sym_any] = ACTIONS(2262), - [anon_sym_number] = ACTIONS(2262), - [anon_sym_boolean] = ACTIONS(2262), - [anon_sym_string] = ACTIONS(2262), - [anon_sym_symbol] = ACTIONS(2262), - [anon_sym_object] = ACTIONS(2262), - [anon_sym_abstract] = ACTIONS(2262), - [anon_sym_satisfies] = ACTIONS(2262), - [anon_sym_interface] = ACTIONS(2262), - [anon_sym_enum] = ACTIONS(2262), - [sym__automatic_semicolon] = ACTIONS(2264), - [sym__ternary_qmark] = ACTIONS(2264), - [sym_html_comment] = ACTIONS(5), - }, - [397] = { - [sym_comment] = STATE(397), - [ts_builtin_sym_end] = ACTIONS(2298), - [sym_identifier] = ACTIONS(2296), - [anon_sym_export] = ACTIONS(2296), - [anon_sym_STAR] = ACTIONS(2296), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_as] = ACTIONS(2296), - [anon_sym_namespace] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2296), - [anon_sym_COMMA] = ACTIONS(2296), - [anon_sym_RBRACE] = ACTIONS(2296), - [anon_sym_typeof] = ACTIONS(2296), - [anon_sym_import] = ACTIONS(2296), - [anon_sym_with] = ACTIONS(2296), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_const] = ACTIONS(2296), - [anon_sym_BANG] = ACTIONS(2296), - [anon_sym_else] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_switch] = ACTIONS(2296), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2296), - [anon_sym_await] = ACTIONS(2296), - [anon_sym_in] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(2296), - [anon_sym_try] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_debugger] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_throw] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2296), - [anon_sym_yield] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2296), - [anon_sym_LTtemplate_GT] = ACTIONS(2296), - [anon_sym_GT] = ACTIONS(2296), - [anon_sym_DOT] = ACTIONS(2296), - [anon_sym_DQUOTE] = ACTIONS(2296), - [anon_sym_SQUOTE] = ACTIONS(2296), - [anon_sym_class] = ACTIONS(2296), - [anon_sym_async] = ACTIONS(2296), - [anon_sym_function] = ACTIONS(2296), - [anon_sym_QMARK_DOT] = ACTIONS(2296), - [anon_sym_new] = ACTIONS(2296), - [anon_sym_using] = ACTIONS(2296), - [anon_sym_AMP_AMP] = ACTIONS(2296), - [anon_sym_PIPE_PIPE] = ACTIONS(2296), - [anon_sym_GT_GT] = ACTIONS(2296), - [anon_sym_GT_GT_GT] = ACTIONS(2296), - [anon_sym_LT_LT] = ACTIONS(2296), - [anon_sym_AMP] = ACTIONS(2296), - [anon_sym_CARET] = ACTIONS(2296), - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_PERCENT] = ACTIONS(2296), - [anon_sym_STAR_STAR] = ACTIONS(2296), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_LT_EQ] = ACTIONS(2296), - [anon_sym_EQ_EQ] = ACTIONS(2296), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2296), - [anon_sym_BANG_EQ] = ACTIONS(2296), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2296), - [anon_sym_GT_EQ] = ACTIONS(2296), - [anon_sym_QMARK_QMARK] = ACTIONS(2296), - [anon_sym_instanceof] = ACTIONS(2296), - [anon_sym_TILDE] = ACTIONS(2296), - [anon_sym_void] = ACTIONS(2296), - [anon_sym_delete] = ACTIONS(2296), - [anon_sym_PLUS_PLUS] = ACTIONS(2296), - [anon_sym_DASH_DASH] = ACTIONS(2296), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2296), - [sym_number] = ACTIONS(2296), - [sym_private_property_identifier] = ACTIONS(2296), - [sym_this] = ACTIONS(2296), - [sym_super] = ACTIONS(2296), - [sym_true] = ACTIONS(2296), - [sym_false] = ACTIONS(2296), - [sym_null] = ACTIONS(2296), - [sym_undefined] = ACTIONS(2296), - [anon_sym_AT] = ACTIONS(2296), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_readonly] = ACTIONS(2296), - [anon_sym_get] = ACTIONS(2296), - [anon_sym_set] = ACTIONS(2296), - [anon_sym_declare] = ACTIONS(2296), - [anon_sym_public] = ACTIONS(2296), - [anon_sym_private] = ACTIONS(2296), - [anon_sym_protected] = ACTIONS(2296), - [anon_sym_override] = ACTIONS(2296), - [anon_sym_module] = ACTIONS(2296), - [anon_sym_any] = ACTIONS(2296), - [anon_sym_number] = ACTIONS(2296), - [anon_sym_boolean] = ACTIONS(2296), - [anon_sym_string] = ACTIONS(2296), - [anon_sym_symbol] = ACTIONS(2296), - [anon_sym_object] = ACTIONS(2296), - [anon_sym_abstract] = ACTIONS(2296), - [anon_sym_satisfies] = ACTIONS(2296), - [anon_sym_interface] = ACTIONS(2296), - [anon_sym_enum] = ACTIONS(2296), - [sym__automatic_semicolon] = ACTIONS(2298), - [sym__ternary_qmark] = ACTIONS(2298), - [sym_html_comment] = ACTIONS(5), - }, - [398] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3262), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(398), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), + [405] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3210), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(405), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_COMMA] = ACTIONS(2061), - [anon_sym_typeof] = ACTIONS(1541), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), [anon_sym_LBRACK] = ACTIONS(2061), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_GT] = ACTIONS(2061), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), [anon_sym_AMP] = ACTIONS(2061), [anon_sym_PIPE] = ACTIONS(2061), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [anon_sym_extends] = ACTIONS(2061), [sym_html_comment] = ACTIONS(5), }, - [399] = { - [sym_comment] = STATE(399), - [ts_builtin_sym_end] = ACTIONS(2408), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_STAR] = ACTIONS(2210), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_as] = ACTIONS(2210), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_COMMA] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_in] = ACTIONS(2210), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_GT] = ACTIONS(2210), - [anon_sym_DOT] = ACTIONS(2210), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_QMARK_DOT] = ACTIONS(2210), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_AMP_AMP] = ACTIONS(2210), - [anon_sym_PIPE_PIPE] = ACTIONS(2210), - [anon_sym_GT_GT] = ACTIONS(2210), - [anon_sym_GT_GT_GT] = ACTIONS(2210), - [anon_sym_LT_LT] = ACTIONS(2210), - [anon_sym_AMP] = ACTIONS(2210), - [anon_sym_CARET] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(2210), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_PERCENT] = ACTIONS(2210), - [anon_sym_STAR_STAR] = ACTIONS(2210), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_LT_EQ] = ACTIONS(2210), - [anon_sym_EQ_EQ] = ACTIONS(2210), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2210), - [anon_sym_BANG_EQ] = ACTIONS(2210), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2210), - [anon_sym_GT_EQ] = ACTIONS(2210), - [anon_sym_QMARK_QMARK] = ACTIONS(2210), - [anon_sym_instanceof] = ACTIONS(2210), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_satisfies] = ACTIONS(2210), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(2410), - [sym__ternary_qmark] = ACTIONS(2214), + [406] = { + [sym_comment] = STATE(406), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_as] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_COMMA] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_in] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_GT] = ACTIONS(2160), + [anon_sym_DOT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_QMARK_DOT] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_AMP_AMP] = ACTIONS(2160), + [anon_sym_PIPE_PIPE] = ACTIONS(2160), + [anon_sym_GT_GT] = ACTIONS(2160), + [anon_sym_GT_GT_GT] = ACTIONS(2160), + [anon_sym_LT_LT] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(2160), + [anon_sym_STAR_STAR] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_LT_EQ] = ACTIONS(2160), + [anon_sym_EQ_EQ] = ACTIONS(2160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2160), + [anon_sym_BANG_EQ] = ACTIONS(2160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2160), + [anon_sym_GT_EQ] = ACTIONS(2160), + [anon_sym_QMARK_QMARK] = ACTIONS(2160), + [anon_sym_instanceof] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_satisfies] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(2164), + [sym__ternary_qmark] = ACTIONS(2164), [sym_html_comment] = ACTIONS(5), }, - [400] = { - [sym_comment] = STATE(400), - [ts_builtin_sym_end] = ACTIONS(2412), - [sym_identifier] = ACTIONS(2238), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2240), - [anon_sym_type] = ACTIONS(2238), - [anon_sym_as] = ACTIONS(2240), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_typeof] = ACTIONS(2238), - [anon_sym_import] = ACTIONS(2238), - [anon_sym_with] = ACTIONS(2238), - [anon_sym_var] = ACTIONS(2238), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_else] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_await] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2240), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_debugger] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_throw] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_yield] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LTtemplate_GT] = ACTIONS(2238), - [anon_sym_GT] = ACTIONS(2240), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2238), - [anon_sym_class] = ACTIONS(2238), - [anon_sym_async] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_QMARK_DOT] = ACTIONS(2240), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_using] = ACTIONS(2238), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2240), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2240), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_instanceof] = ACTIONS(2240), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_void] = ACTIONS(2238), - [anon_sym_delete] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2238), - [sym_number] = ACTIONS(2238), - [sym_private_property_identifier] = ACTIONS(2238), - [sym_this] = ACTIONS(2238), - [sym_super] = ACTIONS(2238), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_null] = ACTIONS(2238), - [sym_undefined] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_readonly] = ACTIONS(2238), - [anon_sym_get] = ACTIONS(2238), - [anon_sym_set] = ACTIONS(2238), - [anon_sym_declare] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_protected] = ACTIONS(2238), - [anon_sym_override] = ACTIONS(2238), - [anon_sym_module] = ACTIONS(2238), - [anon_sym_any] = ACTIONS(2238), - [anon_sym_number] = ACTIONS(2238), - [anon_sym_boolean] = ACTIONS(2238), - [anon_sym_string] = ACTIONS(2238), - [anon_sym_symbol] = ACTIONS(2238), - [anon_sym_object] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_satisfies] = ACTIONS(2240), - [anon_sym_interface] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2414), - [sym__ternary_qmark] = ACTIONS(2244), + [407] = { + [sym_import] = STATE(4233), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2620), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(407), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym__type_query_member_expression] = STATE(3701), + [sym__type_query_subscript_expression] = STATE(3700), + [sym__type_query_call_expression] = STATE(3761), + [sym__type_query_instantiation_expression] = STATE(3840), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2432), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1805), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [401] = { - [sym_comment] = STATE(401), - [ts_builtin_sym_end] = ACTIONS(2416), + [408] = { + [sym_comment] = STATE(408), + [ts_builtin_sym_end] = ACTIONS(2348), + [sym_identifier] = ACTIONS(2204), + [anon_sym_export] = ACTIONS(2204), + [anon_sym_STAR] = ACTIONS(2206), + [anon_sym_type] = ACTIONS(2204), + [anon_sym_as] = ACTIONS(2206), + [anon_sym_namespace] = ACTIONS(2204), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_COMMA] = ACTIONS(2206), + [anon_sym_RBRACE] = ACTIONS(2204), + [anon_sym_typeof] = ACTIONS(2204), + [anon_sym_import] = ACTIONS(2204), + [anon_sym_with] = ACTIONS(2204), + [anon_sym_var] = ACTIONS(2204), + [anon_sym_let] = ACTIONS(2204), + [anon_sym_const] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_if] = ACTIONS(2204), + [anon_sym_switch] = ACTIONS(2204), + [anon_sym_for] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2204), + [anon_sym_await] = ACTIONS(2204), + [anon_sym_in] = ACTIONS(2206), + [anon_sym_while] = ACTIONS(2204), + [anon_sym_do] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(2204), + [anon_sym_break] = ACTIONS(2204), + [anon_sym_continue] = ACTIONS(2204), + [anon_sym_debugger] = ACTIONS(2204), + [anon_sym_return] = ACTIONS(2204), + [anon_sym_throw] = ACTIONS(2204), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym_yield] = ACTIONS(2204), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LTtemplate_GT] = ACTIONS(2204), + [anon_sym_GT] = ACTIONS(2206), + [anon_sym_DOT] = ACTIONS(2206), + [anon_sym_DQUOTE] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_class] = ACTIONS(2204), + [anon_sym_async] = ACTIONS(2204), + [anon_sym_function] = ACTIONS(2204), + [anon_sym_QMARK_DOT] = ACTIONS(2206), + [anon_sym_new] = ACTIONS(2204), + [anon_sym_using] = ACTIONS(2204), + [anon_sym_AMP_AMP] = ACTIONS(2206), + [anon_sym_PIPE_PIPE] = ACTIONS(2206), + [anon_sym_GT_GT] = ACTIONS(2206), + [anon_sym_GT_GT_GT] = ACTIONS(2206), + [anon_sym_LT_LT] = ACTIONS(2206), + [anon_sym_AMP] = ACTIONS(2206), + [anon_sym_CARET] = ACTIONS(2206), + [anon_sym_PIPE] = ACTIONS(2206), + [anon_sym_PLUS] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2204), + [anon_sym_SLASH] = ACTIONS(2204), + [anon_sym_PERCENT] = ACTIONS(2206), + [anon_sym_STAR_STAR] = ACTIONS(2206), + [anon_sym_LT] = ACTIONS(2204), + [anon_sym_LT_EQ] = ACTIONS(2206), + [anon_sym_EQ_EQ] = ACTIONS(2206), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2206), + [anon_sym_BANG_EQ] = ACTIONS(2206), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2206), + [anon_sym_GT_EQ] = ACTIONS(2206), + [anon_sym_QMARK_QMARK] = ACTIONS(2206), + [anon_sym_instanceof] = ACTIONS(2206), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_void] = ACTIONS(2204), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_DASH_DASH] = ACTIONS(2204), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2204), + [sym_number] = ACTIONS(2204), + [sym_private_property_identifier] = ACTIONS(2204), + [sym_this] = ACTIONS(2204), + [sym_super] = ACTIONS(2204), + [sym_true] = ACTIONS(2204), + [sym_false] = ACTIONS(2204), + [sym_null] = ACTIONS(2204), + [sym_undefined] = ACTIONS(2204), + [anon_sym_AT] = ACTIONS(2204), + [anon_sym_static] = ACTIONS(2204), + [anon_sym_readonly] = ACTIONS(2204), + [anon_sym_get] = ACTIONS(2204), + [anon_sym_set] = ACTIONS(2204), + [anon_sym_declare] = ACTIONS(2204), + [anon_sym_public] = ACTIONS(2204), + [anon_sym_private] = ACTIONS(2204), + [anon_sym_protected] = ACTIONS(2204), + [anon_sym_override] = ACTIONS(2204), + [anon_sym_module] = ACTIONS(2204), + [anon_sym_any] = ACTIONS(2204), + [anon_sym_number] = ACTIONS(2204), + [anon_sym_boolean] = ACTIONS(2204), + [anon_sym_string] = ACTIONS(2204), + [anon_sym_symbol] = ACTIONS(2204), + [anon_sym_object] = ACTIONS(2204), + [anon_sym_abstract] = ACTIONS(2204), + [anon_sym_satisfies] = ACTIONS(2206), + [anon_sym_interface] = ACTIONS(2204), + [anon_sym_enum] = ACTIONS(2204), + [sym__automatic_semicolon] = ACTIONS(2434), + [sym__ternary_qmark] = ACTIONS(2210), + [sym_html_comment] = ACTIONS(5), + }, + [409] = { + [sym_comment] = STATE(409), + [ts_builtin_sym_end] = ACTIONS(2398), + [sym_identifier] = ACTIONS(2308), + [anon_sym_export] = ACTIONS(2308), + [anon_sym_STAR] = ACTIONS(2310), + [anon_sym_type] = ACTIONS(2308), + [anon_sym_as] = ACTIONS(2310), + [anon_sym_namespace] = ACTIONS(2308), + [anon_sym_LBRACE] = ACTIONS(2308), + [anon_sym_COMMA] = ACTIONS(2310), + [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_typeof] = ACTIONS(2308), + [anon_sym_import] = ACTIONS(2308), + [anon_sym_with] = ACTIONS(2308), + [anon_sym_var] = ACTIONS(2308), + [anon_sym_let] = ACTIONS(2308), + [anon_sym_const] = ACTIONS(2308), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_switch] = ACTIONS(2308), + [anon_sym_for] = ACTIONS(2308), + [anon_sym_LPAREN] = ACTIONS(2308), + [anon_sym_await] = ACTIONS(2308), + [anon_sym_in] = ACTIONS(2310), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_do] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2308), + [anon_sym_break] = ACTIONS(2308), + [anon_sym_continue] = ACTIONS(2308), + [anon_sym_debugger] = ACTIONS(2308), + [anon_sym_return] = ACTIONS(2308), + [anon_sym_throw] = ACTIONS(2308), + [anon_sym_SEMI] = ACTIONS(2308), + [anon_sym_yield] = ACTIONS(2308), + [anon_sym_LBRACK] = ACTIONS(2308), + [anon_sym_LTtemplate_GT] = ACTIONS(2308), + [anon_sym_GT] = ACTIONS(2310), + [anon_sym_DOT] = ACTIONS(2310), + [anon_sym_DQUOTE] = ACTIONS(2308), + [anon_sym_SQUOTE] = ACTIONS(2308), + [anon_sym_class] = ACTIONS(2308), + [anon_sym_async] = ACTIONS(2308), + [anon_sym_function] = ACTIONS(2308), + [anon_sym_QMARK_DOT] = ACTIONS(2310), + [anon_sym_new] = ACTIONS(2308), + [anon_sym_using] = ACTIONS(2308), + [anon_sym_AMP_AMP] = ACTIONS(2310), + [anon_sym_PIPE_PIPE] = ACTIONS(2310), + [anon_sym_GT_GT] = ACTIONS(2310), + [anon_sym_GT_GT_GT] = ACTIONS(2310), + [anon_sym_LT_LT] = ACTIONS(2310), + [anon_sym_AMP] = ACTIONS(2310), + [anon_sym_CARET] = ACTIONS(2310), + [anon_sym_PIPE] = ACTIONS(2310), + [anon_sym_PLUS] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2308), + [anon_sym_SLASH] = ACTIONS(2308), + [anon_sym_PERCENT] = ACTIONS(2310), + [anon_sym_STAR_STAR] = ACTIONS(2310), + [anon_sym_LT] = ACTIONS(2308), + [anon_sym_LT_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ] = ACTIONS(2310), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ] = ACTIONS(2310), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2310), + [anon_sym_GT_EQ] = ACTIONS(2310), + [anon_sym_QMARK_QMARK] = ACTIONS(2310), + [anon_sym_instanceof] = ACTIONS(2310), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_void] = ACTIONS(2308), + [anon_sym_delete] = ACTIONS(2308), + [anon_sym_PLUS_PLUS] = ACTIONS(2308), + [anon_sym_DASH_DASH] = ACTIONS(2308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2308), + [sym_number] = ACTIONS(2308), + [sym_private_property_identifier] = ACTIONS(2308), + [sym_this] = ACTIONS(2308), + [sym_super] = ACTIONS(2308), + [sym_true] = ACTIONS(2308), + [sym_false] = ACTIONS(2308), + [sym_null] = ACTIONS(2308), + [sym_undefined] = ACTIONS(2308), + [anon_sym_AT] = ACTIONS(2308), + [anon_sym_static] = ACTIONS(2308), + [anon_sym_readonly] = ACTIONS(2308), + [anon_sym_get] = ACTIONS(2308), + [anon_sym_set] = ACTIONS(2308), + [anon_sym_declare] = ACTIONS(2308), + [anon_sym_public] = ACTIONS(2308), + [anon_sym_private] = ACTIONS(2308), + [anon_sym_protected] = ACTIONS(2308), + [anon_sym_override] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2308), + [anon_sym_any] = ACTIONS(2308), + [anon_sym_number] = ACTIONS(2308), + [anon_sym_boolean] = ACTIONS(2308), + [anon_sym_string] = ACTIONS(2308), + [anon_sym_symbol] = ACTIONS(2308), + [anon_sym_object] = ACTIONS(2308), + [anon_sym_abstract] = ACTIONS(2308), + [anon_sym_satisfies] = ACTIONS(2310), + [anon_sym_interface] = ACTIONS(2308), + [anon_sym_enum] = ACTIONS(2308), + [sym__automatic_semicolon] = ACTIONS(2436), + [sym__ternary_qmark] = ACTIONS(2314), + [sym_html_comment] = ACTIONS(5), + }, + [410] = { + [sym_comment] = STATE(410), + [ts_builtin_sym_end] = ACTIONS(2290), [sym_identifier] = ACTIONS(2288), [anon_sym_export] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2290), + [anon_sym_STAR] = ACTIONS(2288), [anon_sym_type] = ACTIONS(2288), - [anon_sym_as] = ACTIONS(2290), + [anon_sym_as] = ACTIONS(2288), [anon_sym_namespace] = ACTIONS(2288), [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_COMMA] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(2288), [anon_sym_RBRACE] = ACTIONS(2288), [anon_sym_typeof] = ACTIONS(2288), [anon_sym_import] = ACTIONS(2288), @@ -83251,13 +83956,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2288), [anon_sym_const] = ACTIONS(2288), [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_else] = ACTIONS(2288), [anon_sym_if] = ACTIONS(2288), [anon_sym_switch] = ACTIONS(2288), [anon_sym_for] = ACTIONS(2288), [anon_sym_LPAREN] = ACTIONS(2288), [anon_sym_await] = ACTIONS(2288), - [anon_sym_in] = ACTIONS(2290), + [anon_sym_in] = ACTIONS(2288), [anon_sym_while] = ACTIONS(2288), [anon_sym_do] = ACTIONS(2288), [anon_sym_try] = ACTIONS(2288), @@ -83270,38 +83974,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2288), [anon_sym_LBRACK] = ACTIONS(2288), [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(2290), - [anon_sym_DOT] = ACTIONS(2290), + [anon_sym_GT] = ACTIONS(2288), + [anon_sym_DOT] = ACTIONS(2288), [anon_sym_DQUOTE] = ACTIONS(2288), [anon_sym_SQUOTE] = ACTIONS(2288), [anon_sym_class] = ACTIONS(2288), [anon_sym_async] = ACTIONS(2288), [anon_sym_function] = ACTIONS(2288), - [anon_sym_QMARK_DOT] = ACTIONS(2290), + [anon_sym_QMARK_DOT] = ACTIONS(2288), [anon_sym_new] = ACTIONS(2288), [anon_sym_using] = ACTIONS(2288), - [anon_sym_AMP_AMP] = ACTIONS(2290), - [anon_sym_PIPE_PIPE] = ACTIONS(2290), - [anon_sym_GT_GT] = ACTIONS(2290), - [anon_sym_GT_GT_GT] = ACTIONS(2290), - [anon_sym_LT_LT] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym_CARET] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), + [anon_sym_AMP_AMP] = ACTIONS(2288), + [anon_sym_PIPE_PIPE] = ACTIONS(2288), + [anon_sym_GT_GT] = ACTIONS(2288), + [anon_sym_GT_GT_GT] = ACTIONS(2288), + [anon_sym_LT_LT] = ACTIONS(2288), + [anon_sym_AMP] = ACTIONS(2288), + [anon_sym_CARET] = ACTIONS(2288), + [anon_sym_PIPE] = ACTIONS(2288), [anon_sym_PLUS] = ACTIONS(2288), [anon_sym_DASH] = ACTIONS(2288), [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_PERCENT] = ACTIONS(2290), - [anon_sym_STAR_STAR] = ACTIONS(2290), + [anon_sym_PERCENT] = ACTIONS(2288), + [anon_sym_STAR_STAR] = ACTIONS(2288), [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(2290), - [anon_sym_EQ_EQ] = ACTIONS(2290), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2290), - [anon_sym_BANG_EQ] = ACTIONS(2290), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2290), - [anon_sym_GT_EQ] = ACTIONS(2290), - [anon_sym_QMARK_QMARK] = ACTIONS(2290), - [anon_sym_instanceof] = ACTIONS(2290), + [anon_sym_LT_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ] = ACTIONS(2288), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ] = ACTIONS(2288), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2288), + [anon_sym_GT_EQ] = ACTIONS(2288), + [anon_sym_QMARK_QMARK] = ACTIONS(2288), + [anon_sym_instanceof] = ACTIONS(2288), [anon_sym_TILDE] = ACTIONS(2288), [anon_sym_void] = ACTIONS(2288), [anon_sym_delete] = ACTIONS(2288), @@ -83335,1157 +84039,825 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2288), [anon_sym_object] = ACTIONS(2288), [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_satisfies] = ACTIONS(2290), + [anon_sym_satisfies] = ACTIONS(2288), [anon_sym_interface] = ACTIONS(2288), [anon_sym_enum] = ACTIONS(2288), - [sym__automatic_semicolon] = ACTIONS(2418), - [sym__ternary_qmark] = ACTIONS(2294), + [sym__automatic_semicolon] = ACTIONS(2290), + [sym__ternary_qmark] = ACTIONS(2290), [sym_html_comment] = ACTIONS(5), }, - [402] = { - [sym_comment] = STATE(402), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_as] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_in] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_DOT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_QMARK_DOT] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_GT_GT_GT] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_PERCENT] = ACTIONS(2190), - [anon_sym_STAR_STAR] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_LT_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2190), - [anon_sym_GT_EQ] = ACTIONS(2190), - [anon_sym_QMARK_QMARK] = ACTIONS(2190), - [anon_sym_instanceof] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_satisfies] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(2192), - [sym__ternary_qmark] = ACTIONS(2192), + [411] = { + [sym_import] = STATE(4251), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3117), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(411), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym__type_query_member_expression] = STATE(3701), + [sym__type_query_subscript_expression] = STATE(3700), + [sym__type_query_call_expression] = STATE(3761), + [sym__type_query_instantiation_expression] = STATE(3840), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2438), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [403] = { - [sym_comment] = STATE(403), - [ts_builtin_sym_end] = ACTIONS(2420), - [sym_identifier] = ACTIONS(2266), - [anon_sym_export] = ACTIONS(2266), - [anon_sym_STAR] = ACTIONS(2268), - [anon_sym_type] = ACTIONS(2266), - [anon_sym_as] = ACTIONS(2268), - [anon_sym_namespace] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(2266), - [anon_sym_COMMA] = ACTIONS(2268), - [anon_sym_RBRACE] = ACTIONS(2266), - [anon_sym_typeof] = ACTIONS(2266), - [anon_sym_import] = ACTIONS(2266), - [anon_sym_with] = ACTIONS(2266), - [anon_sym_var] = ACTIONS(2266), - [anon_sym_let] = ACTIONS(2266), - [anon_sym_const] = ACTIONS(2266), - [anon_sym_BANG] = ACTIONS(2266), - [anon_sym_else] = ACTIONS(2266), - [anon_sym_if] = ACTIONS(2266), - [anon_sym_switch] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2266), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_await] = ACTIONS(2266), - [anon_sym_in] = ACTIONS(2268), - [anon_sym_while] = ACTIONS(2266), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_try] = ACTIONS(2266), - [anon_sym_break] = ACTIONS(2266), - [anon_sym_continue] = ACTIONS(2266), - [anon_sym_debugger] = ACTIONS(2266), - [anon_sym_return] = ACTIONS(2266), - [anon_sym_throw] = ACTIONS(2266), - [anon_sym_SEMI] = ACTIONS(2266), - [anon_sym_yield] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2266), - [anon_sym_LTtemplate_GT] = ACTIONS(2266), - [anon_sym_GT] = ACTIONS(2268), - [anon_sym_DOT] = ACTIONS(2268), - [anon_sym_DQUOTE] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2266), - [anon_sym_class] = ACTIONS(2266), - [anon_sym_async] = ACTIONS(2266), - [anon_sym_function] = ACTIONS(2266), - [anon_sym_QMARK_DOT] = ACTIONS(2268), - [anon_sym_new] = ACTIONS(2266), - [anon_sym_using] = ACTIONS(2266), - [anon_sym_AMP_AMP] = ACTIONS(2268), - [anon_sym_PIPE_PIPE] = ACTIONS(2268), - [anon_sym_GT_GT] = ACTIONS(2268), - [anon_sym_GT_GT_GT] = ACTIONS(2268), - [anon_sym_LT_LT] = ACTIONS(2268), - [anon_sym_AMP] = ACTIONS(2268), - [anon_sym_CARET] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2268), - [anon_sym_PLUS] = ACTIONS(2266), - [anon_sym_DASH] = ACTIONS(2266), - [anon_sym_SLASH] = ACTIONS(2266), - [anon_sym_PERCENT] = ACTIONS(2268), - [anon_sym_STAR_STAR] = ACTIONS(2268), - [anon_sym_LT] = ACTIONS(2266), - [anon_sym_LT_EQ] = ACTIONS(2268), - [anon_sym_EQ_EQ] = ACTIONS(2268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2268), - [anon_sym_BANG_EQ] = ACTIONS(2268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2268), - [anon_sym_GT_EQ] = ACTIONS(2268), - [anon_sym_QMARK_QMARK] = ACTIONS(2268), - [anon_sym_instanceof] = ACTIONS(2268), - [anon_sym_TILDE] = ACTIONS(2266), - [anon_sym_void] = ACTIONS(2266), - [anon_sym_delete] = ACTIONS(2266), - [anon_sym_PLUS_PLUS] = ACTIONS(2266), - [anon_sym_DASH_DASH] = ACTIONS(2266), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2266), - [sym_number] = ACTIONS(2266), - [sym_private_property_identifier] = ACTIONS(2266), - [sym_this] = ACTIONS(2266), - [sym_super] = ACTIONS(2266), - [sym_true] = ACTIONS(2266), - [sym_false] = ACTIONS(2266), - [sym_null] = ACTIONS(2266), - [sym_undefined] = ACTIONS(2266), - [anon_sym_AT] = ACTIONS(2266), - [anon_sym_static] = ACTIONS(2266), - [anon_sym_readonly] = ACTIONS(2266), - [anon_sym_get] = ACTIONS(2266), - [anon_sym_set] = ACTIONS(2266), - [anon_sym_declare] = ACTIONS(2266), - [anon_sym_public] = ACTIONS(2266), - [anon_sym_private] = ACTIONS(2266), - [anon_sym_protected] = ACTIONS(2266), - [anon_sym_override] = ACTIONS(2266), - [anon_sym_module] = ACTIONS(2266), - [anon_sym_any] = ACTIONS(2266), - [anon_sym_number] = ACTIONS(2266), - [anon_sym_boolean] = ACTIONS(2266), - [anon_sym_string] = ACTIONS(2266), - [anon_sym_symbol] = ACTIONS(2266), - [anon_sym_object] = ACTIONS(2266), - [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(2268), - [anon_sym_interface] = ACTIONS(2266), - [anon_sym_enum] = ACTIONS(2266), - [sym__automatic_semicolon] = ACTIONS(2422), - [sym__ternary_qmark] = ACTIONS(2272), + [412] = { + [sym_import] = STATE(4258), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(412), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym__type_query_member_expression] = STATE(3701), + [sym__type_query_subscript_expression] = STATE(3700), + [sym__type_query_call_expression] = STATE(3761), + [sym__type_query_instantiation_expression] = STATE(3840), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(2440), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1567), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [404] = { - [sym_comment] = STATE(404), - [ts_builtin_sym_end] = ACTIONS(2424), - [sym_identifier] = ACTIONS(2194), - [anon_sym_export] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_type] = ACTIONS(2194), - [anon_sym_as] = ACTIONS(2196), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_typeof] = ACTIONS(2194), - [anon_sym_import] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2194), - [anon_sym_var] = ACTIONS(2194), - [anon_sym_let] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_await] = ACTIONS(2194), - [anon_sym_in] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_debugger] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2194), - [anon_sym_yield] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_LTtemplate_GT] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2196), - [anon_sym_DOT] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2194), - [anon_sym_SQUOTE] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_async] = ACTIONS(2194), - [anon_sym_function] = ACTIONS(2194), - [anon_sym_QMARK_DOT] = ACTIONS(2196), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_GT_GT] = ACTIONS(2196), - [anon_sym_GT_GT_GT] = ACTIONS(2196), - [anon_sym_LT_LT] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2196), - [anon_sym_CARET] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2196), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_SLASH] = ACTIONS(2194), - [anon_sym_PERCENT] = ACTIONS(2196), - [anon_sym_STAR_STAR] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_LT_EQ] = ACTIONS(2196), - [anon_sym_EQ_EQ] = ACTIONS(2196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2196), - [anon_sym_BANG_EQ] = ACTIONS(2196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2196), - [anon_sym_GT_EQ] = ACTIONS(2196), - [anon_sym_QMARK_QMARK] = ACTIONS(2196), - [anon_sym_instanceof] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_void] = ACTIONS(2194), - [anon_sym_delete] = ACTIONS(2194), - [anon_sym_PLUS_PLUS] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2194), - [sym_number] = ACTIONS(2194), - [sym_private_property_identifier] = ACTIONS(2194), - [sym_this] = ACTIONS(2194), - [sym_super] = ACTIONS(2194), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [sym_null] = ACTIONS(2194), - [sym_undefined] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_readonly] = ACTIONS(2194), - [anon_sym_get] = ACTIONS(2194), - [anon_sym_set] = ACTIONS(2194), - [anon_sym_declare] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_override] = ACTIONS(2194), - [anon_sym_module] = ACTIONS(2194), - [anon_sym_any] = ACTIONS(2194), - [anon_sym_number] = ACTIONS(2194), - [anon_sym_boolean] = ACTIONS(2194), - [anon_sym_string] = ACTIONS(2194), - [anon_sym_symbol] = ACTIONS(2194), - [anon_sym_object] = ACTIONS(2194), - [anon_sym_abstract] = ACTIONS(2194), - [anon_sym_satisfies] = ACTIONS(2196), - [anon_sym_interface] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [sym__automatic_semicolon] = ACTIONS(2426), - [sym__ternary_qmark] = ACTIONS(2200), - [sym_html_comment] = ACTIONS(5), - }, - [405] = { - [sym_comment] = STATE(405), - [ts_builtin_sym_end] = ACTIONS(2264), - [sym_identifier] = ACTIONS(2262), - [anon_sym_export] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(2262), - [anon_sym_type] = ACTIONS(2262), - [anon_sym_as] = ACTIONS(2262), - [anon_sym_namespace] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_COMMA] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_import] = ACTIONS(2262), - [anon_sym_with] = ACTIONS(2262), - [anon_sym_var] = ACTIONS(2262), - [anon_sym_let] = ACTIONS(2262), - [anon_sym_const] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_else] = ACTIONS(2262), - [anon_sym_if] = ACTIONS(2262), - [anon_sym_switch] = ACTIONS(2262), - [anon_sym_for] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_await] = ACTIONS(2262), - [anon_sym_in] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2262), - [anon_sym_do] = ACTIONS(2262), - [anon_sym_try] = ACTIONS(2262), - [anon_sym_break] = ACTIONS(2262), - [anon_sym_continue] = ACTIONS(2262), - [anon_sym_debugger] = ACTIONS(2262), - [anon_sym_return] = ACTIONS(2262), - [anon_sym_throw] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_yield] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_LTtemplate_GT] = ACTIONS(2262), - [anon_sym_GT] = ACTIONS(2262), - [anon_sym_DOT] = ACTIONS(2262), - [anon_sym_DQUOTE] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(2262), - [anon_sym_class] = ACTIONS(2262), - [anon_sym_async] = ACTIONS(2262), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_QMARK_DOT] = ACTIONS(2262), - [anon_sym_new] = ACTIONS(2262), - [anon_sym_using] = ACTIONS(2262), - [anon_sym_AMP_AMP] = ACTIONS(2262), - [anon_sym_PIPE_PIPE] = ACTIONS(2262), - [anon_sym_GT_GT] = ACTIONS(2262), - [anon_sym_GT_GT_GT] = ACTIONS(2262), - [anon_sym_LT_LT] = ACTIONS(2262), - [anon_sym_AMP] = ACTIONS(2262), - [anon_sym_CARET] = ACTIONS(2262), - [anon_sym_PIPE] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_SLASH] = ACTIONS(2262), - [anon_sym_PERCENT] = ACTIONS(2262), - [anon_sym_STAR_STAR] = ACTIONS(2262), - [anon_sym_LT] = ACTIONS(2262), - [anon_sym_LT_EQ] = ACTIONS(2262), - [anon_sym_EQ_EQ] = ACTIONS(2262), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2262), - [anon_sym_BANG_EQ] = ACTIONS(2262), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2262), - [anon_sym_GT_EQ] = ACTIONS(2262), - [anon_sym_QMARK_QMARK] = ACTIONS(2262), - [anon_sym_instanceof] = ACTIONS(2262), - [anon_sym_TILDE] = ACTIONS(2262), - [anon_sym_void] = ACTIONS(2262), - [anon_sym_delete] = ACTIONS(2262), - [anon_sym_PLUS_PLUS] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(2262), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2262), - [sym_number] = ACTIONS(2262), - [sym_private_property_identifier] = ACTIONS(2262), - [sym_this] = ACTIONS(2262), - [sym_super] = ACTIONS(2262), - [sym_true] = ACTIONS(2262), - [sym_false] = ACTIONS(2262), - [sym_null] = ACTIONS(2262), - [sym_undefined] = ACTIONS(2262), - [anon_sym_AT] = ACTIONS(2262), - [anon_sym_static] = ACTIONS(2262), - [anon_sym_readonly] = ACTIONS(2262), - [anon_sym_get] = ACTIONS(2262), - [anon_sym_set] = ACTIONS(2262), - [anon_sym_declare] = ACTIONS(2262), - [anon_sym_public] = ACTIONS(2262), - [anon_sym_private] = ACTIONS(2262), - [anon_sym_protected] = ACTIONS(2262), - [anon_sym_override] = ACTIONS(2262), - [anon_sym_module] = ACTIONS(2262), - [anon_sym_any] = ACTIONS(2262), - [anon_sym_number] = ACTIONS(2262), - [anon_sym_boolean] = ACTIONS(2262), - [anon_sym_string] = ACTIONS(2262), - [anon_sym_symbol] = ACTIONS(2262), - [anon_sym_object] = ACTIONS(2262), - [anon_sym_abstract] = ACTIONS(2262), - [anon_sym_satisfies] = ACTIONS(2262), - [anon_sym_interface] = ACTIONS(2262), - [anon_sym_enum] = ACTIONS(2262), - [sym__automatic_semicolon] = ACTIONS(2264), - [sym__ternary_qmark] = ACTIONS(2264), - [sym_html_comment] = ACTIONS(5), - }, - [406] = { - [sym_comment] = STATE(406), - [ts_builtin_sym_end] = ACTIONS(2428), - [sym_identifier] = ACTIONS(2168), - [anon_sym_export] = ACTIONS(2168), - [anon_sym_STAR] = ACTIONS(2170), - [anon_sym_type] = ACTIONS(2168), - [anon_sym_as] = ACTIONS(2170), - [anon_sym_namespace] = ACTIONS(2168), - [anon_sym_LBRACE] = ACTIONS(2168), - [anon_sym_COMMA] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2168), - [anon_sym_typeof] = ACTIONS(2168), - [anon_sym_import] = ACTIONS(2168), - [anon_sym_with] = ACTIONS(2168), - [anon_sym_var] = ACTIONS(2168), - [anon_sym_let] = ACTIONS(2168), - [anon_sym_const] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(2168), - [anon_sym_else] = ACTIONS(2168), - [anon_sym_if] = ACTIONS(2168), - [anon_sym_switch] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_await] = ACTIONS(2168), - [anon_sym_in] = ACTIONS(2170), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_do] = ACTIONS(2168), - [anon_sym_try] = ACTIONS(2168), - [anon_sym_break] = ACTIONS(2168), - [anon_sym_continue] = ACTIONS(2168), - [anon_sym_debugger] = ACTIONS(2168), - [anon_sym_return] = ACTIONS(2168), - [anon_sym_throw] = ACTIONS(2168), - [anon_sym_SEMI] = ACTIONS(2168), - [anon_sym_yield] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_LTtemplate_GT] = ACTIONS(2168), - [anon_sym_GT] = ACTIONS(2170), - [anon_sym_DOT] = ACTIONS(2170), - [anon_sym_DQUOTE] = ACTIONS(2168), - [anon_sym_SQUOTE] = ACTIONS(2168), - [anon_sym_class] = ACTIONS(2168), - [anon_sym_async] = ACTIONS(2168), - [anon_sym_function] = ACTIONS(2168), - [anon_sym_QMARK_DOT] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2168), - [anon_sym_using] = ACTIONS(2168), - [anon_sym_AMP_AMP] = ACTIONS(2170), - [anon_sym_PIPE_PIPE] = ACTIONS(2170), - [anon_sym_GT_GT] = ACTIONS(2170), - [anon_sym_GT_GT_GT] = ACTIONS(2170), - [anon_sym_LT_LT] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2170), - [anon_sym_CARET] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_PLUS] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2168), - [anon_sym_SLASH] = ACTIONS(2168), - [anon_sym_PERCENT] = ACTIONS(2170), - [anon_sym_STAR_STAR] = ACTIONS(2170), - [anon_sym_LT] = ACTIONS(2168), - [anon_sym_LT_EQ] = ACTIONS(2170), - [anon_sym_EQ_EQ] = ACTIONS(2170), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2170), - [anon_sym_BANG_EQ] = ACTIONS(2170), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2170), - [anon_sym_GT_EQ] = ACTIONS(2170), - [anon_sym_QMARK_QMARK] = ACTIONS(2170), - [anon_sym_instanceof] = ACTIONS(2170), - [anon_sym_TILDE] = ACTIONS(2168), - [anon_sym_void] = ACTIONS(2168), - [anon_sym_delete] = ACTIONS(2168), - [anon_sym_PLUS_PLUS] = ACTIONS(2168), - [anon_sym_DASH_DASH] = ACTIONS(2168), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2168), - [sym_number] = ACTIONS(2168), - [sym_private_property_identifier] = ACTIONS(2168), - [sym_this] = ACTIONS(2168), - [sym_super] = ACTIONS(2168), - [sym_true] = ACTIONS(2168), - [sym_false] = ACTIONS(2168), - [sym_null] = ACTIONS(2168), - [sym_undefined] = ACTIONS(2168), - [anon_sym_AT] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_readonly] = ACTIONS(2168), - [anon_sym_get] = ACTIONS(2168), - [anon_sym_set] = ACTIONS(2168), - [anon_sym_declare] = ACTIONS(2168), - [anon_sym_public] = ACTIONS(2168), - [anon_sym_private] = ACTIONS(2168), - [anon_sym_protected] = ACTIONS(2168), - [anon_sym_override] = ACTIONS(2168), - [anon_sym_module] = ACTIONS(2168), - [anon_sym_any] = ACTIONS(2168), - [anon_sym_number] = ACTIONS(2168), - [anon_sym_boolean] = ACTIONS(2168), - [anon_sym_string] = ACTIONS(2168), - [anon_sym_symbol] = ACTIONS(2168), - [anon_sym_object] = ACTIONS(2168), - [anon_sym_abstract] = ACTIONS(2168), - [anon_sym_satisfies] = ACTIONS(2170), - [anon_sym_interface] = ACTIONS(2168), - [anon_sym_enum] = ACTIONS(2168), - [sym__automatic_semicolon] = ACTIONS(2430), - [sym__ternary_qmark] = ACTIONS(2174), + [413] = { + [sym_comment] = STATE(413), + [ts_builtin_sym_end] = ACTIONS(2252), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_STAR] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_as] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_COMMA] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_in] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_GT] = ACTIONS(2250), + [anon_sym_DOT] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_QMARK_DOT] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_AMP_AMP] = ACTIONS(2250), + [anon_sym_PIPE_PIPE] = ACTIONS(2250), + [anon_sym_GT_GT] = ACTIONS(2250), + [anon_sym_GT_GT_GT] = ACTIONS(2250), + [anon_sym_LT_LT] = ACTIONS(2250), + [anon_sym_AMP] = ACTIONS(2250), + [anon_sym_CARET] = ACTIONS(2250), + [anon_sym_PIPE] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_PERCENT] = ACTIONS(2250), + [anon_sym_STAR_STAR] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_LT_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ] = ACTIONS(2250), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2250), + [anon_sym_BANG_EQ] = ACTIONS(2250), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2250), + [anon_sym_GT_EQ] = ACTIONS(2250), + [anon_sym_QMARK_QMARK] = ACTIONS(2250), + [anon_sym_instanceof] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_satisfies] = ACTIONS(2250), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [sym__automatic_semicolon] = ACTIONS(2252), + [sym__ternary_qmark] = ACTIONS(2252), [sym_html_comment] = ACTIONS(5), }, - [407] = { - [sym_import] = STATE(4341), - [sym_expression_statement] = STATE(477), - [sym_empty_statement] = STATE(477), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2653), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6726), - [sym_string] = STATE(3425), - [sym_comment] = STATE(407), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2079), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [414] = { + [sym_comment] = STATE(414), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_as] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_COMMA] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_in] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_GT] = ACTIONS(2160), + [anon_sym_DOT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_QMARK_DOT] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_AMP_AMP] = ACTIONS(2160), + [anon_sym_PIPE_PIPE] = ACTIONS(2160), + [anon_sym_GT_GT] = ACTIONS(2160), + [anon_sym_GT_GT_GT] = ACTIONS(2160), + [anon_sym_LT_LT] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(2160), + [anon_sym_STAR_STAR] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_LT_EQ] = ACTIONS(2160), + [anon_sym_EQ_EQ] = ACTIONS(2160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2160), + [anon_sym_BANG_EQ] = ACTIONS(2160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2160), + [anon_sym_GT_EQ] = ACTIONS(2160), + [anon_sym_QMARK_QMARK] = ACTIONS(2160), + [anon_sym_instanceof] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), - [sym_html_comment] = ACTIONS(5), - }, - [408] = { - [sym_comment] = STATE(408), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_as] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_in] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_DOT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_QMARK_DOT] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_GT_GT_GT] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_PERCENT] = ACTIONS(2190), - [anon_sym_STAR_STAR] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_LT_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2190), - [anon_sym_GT_EQ] = ACTIONS(2190), - [anon_sym_QMARK_QMARK] = ACTIONS(2190), - [anon_sym_instanceof] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_satisfies] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(2432), - [sym__ternary_qmark] = ACTIONS(2192), - [sym_html_comment] = ACTIONS(5), - }, - [409] = { - [sym_comment] = STATE(409), - [ts_builtin_sym_end] = ACTIONS(2412), - [sym_identifier] = ACTIONS(2238), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_STAR] = ACTIONS(2240), - [anon_sym_type] = ACTIONS(2238), - [anon_sym_as] = ACTIONS(2240), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_COMMA] = ACTIONS(2240), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_typeof] = ACTIONS(2238), - [anon_sym_import] = ACTIONS(2238), - [anon_sym_with] = ACTIONS(2238), - [anon_sym_var] = ACTIONS(2238), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_await] = ACTIONS(2238), - [anon_sym_in] = ACTIONS(2240), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_debugger] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_throw] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_yield] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LTtemplate_GT] = ACTIONS(2238), - [anon_sym_GT] = ACTIONS(2240), - [anon_sym_DOT] = ACTIONS(2240), - [anon_sym_DQUOTE] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2238), - [anon_sym_class] = ACTIONS(2238), - [anon_sym_async] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_QMARK_DOT] = ACTIONS(2240), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_using] = ACTIONS(2238), - [anon_sym_AMP_AMP] = ACTIONS(2240), - [anon_sym_PIPE_PIPE] = ACTIONS(2240), - [anon_sym_GT_GT] = ACTIONS(2240), - [anon_sym_GT_GT_GT] = ACTIONS(2240), - [anon_sym_LT_LT] = ACTIONS(2240), - [anon_sym_AMP] = ACTIONS(2240), - [anon_sym_CARET] = ACTIONS(2240), - [anon_sym_PIPE] = ACTIONS(2240), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_PERCENT] = ACTIONS(2240), - [anon_sym_STAR_STAR] = ACTIONS(2240), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_LT_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ] = ACTIONS(2240), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2240), - [anon_sym_BANG_EQ] = ACTIONS(2240), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2240), - [anon_sym_GT_EQ] = ACTIONS(2240), - [anon_sym_QMARK_QMARK] = ACTIONS(2240), - [anon_sym_instanceof] = ACTIONS(2240), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_void] = ACTIONS(2238), - [anon_sym_delete] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2238), - [sym_number] = ACTIONS(2238), - [sym_private_property_identifier] = ACTIONS(2238), - [sym_this] = ACTIONS(2238), - [sym_super] = ACTIONS(2238), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_null] = ACTIONS(2238), - [sym_undefined] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_readonly] = ACTIONS(2238), - [anon_sym_get] = ACTIONS(2238), - [anon_sym_set] = ACTIONS(2238), - [anon_sym_declare] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_protected] = ACTIONS(2238), - [anon_sym_override] = ACTIONS(2238), - [anon_sym_module] = ACTIONS(2238), - [anon_sym_any] = ACTIONS(2238), - [anon_sym_number] = ACTIONS(2238), - [anon_sym_boolean] = ACTIONS(2238), - [anon_sym_string] = ACTIONS(2238), - [anon_sym_symbol] = ACTIONS(2238), - [anon_sym_object] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_satisfies] = ACTIONS(2240), - [anon_sym_interface] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2434), - [sym__ternary_qmark] = ACTIONS(2244), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_satisfies] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(2164), + [sym__ternary_qmark] = ACTIONS(2164), [sym_html_comment] = ACTIONS(5), }, - [410] = { - [sym_import] = STATE(4357), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(410), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym__type_query_member_expression] = STATE(3901), - [sym__type_query_subscript_expression] = STATE(3905), - [sym__type_query_call_expression] = STATE(4118), - [sym__type_query_instantiation_expression] = STATE(4237), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2436), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [415] = { + [sym_import] = STATE(4159), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2673), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(415), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym__type_query_member_expression] = STATE(3701), + [sym__type_query_subscript_expression] = STATE(3700), + [sym__type_query_call_expression] = STATE(3761), + [sym__type_query_instantiation_expression] = STATE(3840), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2442), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [411] = { - [sym_import] = STATE(4351), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2852), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(411), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym__type_query_member_expression] = STATE(3848), - [sym__type_query_subscript_expression] = STATE(3849), - [sym__type_query_call_expression] = STATE(3915), - [sym__type_query_instantiation_expression] = STATE(4026), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [416] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3210), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(416), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym__type_query_member_expression] = STATE(3701), + [sym__type_query_subscript_expression] = STATE(3700), + [sym__type_query_call_expression] = STATE(3761), + [sym__type_query_instantiation_expression] = STATE(3840), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2444), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [412] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(412), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5407), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_override_modifier] = STATE(467), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [417] = { + [sym_comment] = STATE(417), + [ts_builtin_sym_end] = ACTIONS(2302), + [sym_identifier] = ACTIONS(2300), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_STAR] = ACTIONS(2300), + [anon_sym_type] = ACTIONS(2300), + [anon_sym_as] = ACTIONS(2300), + [anon_sym_namespace] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2300), + [anon_sym_COMMA] = ACTIONS(2300), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2300), + [anon_sym_import] = ACTIONS(2300), + [anon_sym_with] = ACTIONS(2300), + [anon_sym_var] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_switch] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_await] = ACTIONS(2300), + [anon_sym_in] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_debugger] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_throw] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2300), + [anon_sym_LTtemplate_GT] = ACTIONS(2300), + [anon_sym_GT] = ACTIONS(2300), + [anon_sym_DOT] = ACTIONS(2300), + [anon_sym_DQUOTE] = ACTIONS(2300), + [anon_sym_SQUOTE] = ACTIONS(2300), + [anon_sym_class] = ACTIONS(2300), + [anon_sym_async] = ACTIONS(2300), + [anon_sym_function] = ACTIONS(2300), + [anon_sym_QMARK_DOT] = ACTIONS(2300), + [anon_sym_new] = ACTIONS(2300), + [anon_sym_using] = ACTIONS(2300), + [anon_sym_AMP_AMP] = ACTIONS(2300), + [anon_sym_PIPE_PIPE] = ACTIONS(2300), + [anon_sym_GT_GT] = ACTIONS(2300), + [anon_sym_GT_GT_GT] = ACTIONS(2300), + [anon_sym_LT_LT] = ACTIONS(2300), + [anon_sym_AMP] = ACTIONS(2300), + [anon_sym_CARET] = ACTIONS(2300), + [anon_sym_PIPE] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_PERCENT] = ACTIONS(2300), + [anon_sym_STAR_STAR] = ACTIONS(2300), + [anon_sym_LT] = ACTIONS(2300), + [anon_sym_LT_EQ] = ACTIONS(2300), + [anon_sym_EQ_EQ] = ACTIONS(2300), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2300), + [anon_sym_BANG_EQ] = ACTIONS(2300), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2300), + [anon_sym_GT_EQ] = ACTIONS(2300), + [anon_sym_QMARK_QMARK] = ACTIONS(2300), + [anon_sym_instanceof] = ACTIONS(2300), + [anon_sym_TILDE] = ACTIONS(2300), + [anon_sym_void] = ACTIONS(2300), + [anon_sym_delete] = ACTIONS(2300), + [anon_sym_PLUS_PLUS] = ACTIONS(2300), + [anon_sym_DASH_DASH] = ACTIONS(2300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2300), + [sym_number] = ACTIONS(2300), + [sym_private_property_identifier] = ACTIONS(2300), + [sym_this] = ACTIONS(2300), + [sym_super] = ACTIONS(2300), + [sym_true] = ACTIONS(2300), + [sym_false] = ACTIONS(2300), + [sym_null] = ACTIONS(2300), + [sym_undefined] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2300), + [anon_sym_static] = ACTIONS(2300), + [anon_sym_readonly] = ACTIONS(2300), + [anon_sym_get] = ACTIONS(2300), + [anon_sym_set] = ACTIONS(2300), + [anon_sym_declare] = ACTIONS(2300), + [anon_sym_public] = ACTIONS(2300), + [anon_sym_private] = ACTIONS(2300), + [anon_sym_protected] = ACTIONS(2300), + [anon_sym_override] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_any] = ACTIONS(2300), + [anon_sym_number] = ACTIONS(2300), + [anon_sym_boolean] = ACTIONS(2300), + [anon_sym_string] = ACTIONS(2300), + [anon_sym_symbol] = ACTIONS(2300), + [anon_sym_object] = ACTIONS(2300), + [anon_sym_abstract] = ACTIONS(2300), + [anon_sym_satisfies] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2300), + [anon_sym_enum] = ACTIONS(2300), + [sym__automatic_semicolon] = ACTIONS(2302), + [sym__ternary_qmark] = ACTIONS(2302), + [sym_html_comment] = ACTIONS(5), + }, + [418] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(418), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5068), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_override_modifier] = STATE(463), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -84498,7 +84870,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), @@ -84510,18 +84882,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(2440), + [sym_this] = ACTIONS(2446), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), @@ -84529,7 +84901,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2442), + [anon_sym_readonly] = ACTIONS(2448), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -84546,390 +84918,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [413] = { - [sym_comment] = STATE(413), - [ts_builtin_sym_end] = ACTIONS(2260), - [sym_identifier] = ACTIONS(2258), - [anon_sym_export] = ACTIONS(2258), - [anon_sym_STAR] = ACTIONS(2258), - [anon_sym_type] = ACTIONS(2258), - [anon_sym_as] = ACTIONS(2258), - [anon_sym_namespace] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_COMMA] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2258), - [anon_sym_import] = ACTIONS(2258), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_var] = ACTIONS(2258), - [anon_sym_let] = ACTIONS(2258), - [anon_sym_const] = ACTIONS(2258), - [anon_sym_BANG] = ACTIONS(2258), - [anon_sym_if] = ACTIONS(2258), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_for] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_await] = ACTIONS(2258), - [anon_sym_in] = ACTIONS(2258), - [anon_sym_while] = ACTIONS(2258), - [anon_sym_do] = ACTIONS(2258), - [anon_sym_try] = ACTIONS(2258), - [anon_sym_break] = ACTIONS(2258), - [anon_sym_continue] = ACTIONS(2258), - [anon_sym_debugger] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(2258), - [anon_sym_throw] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2258), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_LTtemplate_GT] = ACTIONS(2258), - [anon_sym_GT] = ACTIONS(2258), - [anon_sym_DOT] = ACTIONS(2258), - [anon_sym_DQUOTE] = ACTIONS(2258), - [anon_sym_SQUOTE] = ACTIONS(2258), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2258), - [anon_sym_function] = ACTIONS(2258), - [anon_sym_QMARK_DOT] = ACTIONS(2258), - [anon_sym_new] = ACTIONS(2258), - [anon_sym_using] = ACTIONS(2258), - [anon_sym_AMP_AMP] = ACTIONS(2258), - [anon_sym_PIPE_PIPE] = ACTIONS(2258), - [anon_sym_GT_GT] = ACTIONS(2258), - [anon_sym_GT_GT_GT] = ACTIONS(2258), - [anon_sym_LT_LT] = ACTIONS(2258), - [anon_sym_AMP] = ACTIONS(2258), - [anon_sym_CARET] = ACTIONS(2258), - [anon_sym_PIPE] = ACTIONS(2258), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2258), - [anon_sym_PERCENT] = ACTIONS(2258), - [anon_sym_STAR_STAR] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2258), - [anon_sym_LT_EQ] = ACTIONS(2258), - [anon_sym_EQ_EQ] = ACTIONS(2258), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2258), - [anon_sym_BANG_EQ] = ACTIONS(2258), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2258), - [anon_sym_GT_EQ] = ACTIONS(2258), - [anon_sym_QMARK_QMARK] = ACTIONS(2258), - [anon_sym_instanceof] = ACTIONS(2258), - [anon_sym_TILDE] = ACTIONS(2258), - [anon_sym_void] = ACTIONS(2258), - [anon_sym_delete] = ACTIONS(2258), - [anon_sym_PLUS_PLUS] = ACTIONS(2258), - [anon_sym_DASH_DASH] = ACTIONS(2258), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2258), - [sym_number] = ACTIONS(2258), - [sym_private_property_identifier] = ACTIONS(2258), - [sym_this] = ACTIONS(2258), - [sym_super] = ACTIONS(2258), - [sym_true] = ACTIONS(2258), - [sym_false] = ACTIONS(2258), - [sym_null] = ACTIONS(2258), - [sym_undefined] = ACTIONS(2258), - [anon_sym_AT] = ACTIONS(2258), - [anon_sym_static] = ACTIONS(2258), - [anon_sym_readonly] = ACTIONS(2258), - [anon_sym_get] = ACTIONS(2258), - [anon_sym_set] = ACTIONS(2258), - [anon_sym_declare] = ACTIONS(2258), - [anon_sym_public] = ACTIONS(2258), - [anon_sym_private] = ACTIONS(2258), - [anon_sym_protected] = ACTIONS(2258), - [anon_sym_override] = ACTIONS(2258), - [anon_sym_module] = ACTIONS(2258), - [anon_sym_any] = ACTIONS(2258), - [anon_sym_number] = ACTIONS(2258), - [anon_sym_boolean] = ACTIONS(2258), - [anon_sym_string] = ACTIONS(2258), - [anon_sym_symbol] = ACTIONS(2258), - [anon_sym_object] = ACTIONS(2258), - [anon_sym_abstract] = ACTIONS(2258), - [anon_sym_satisfies] = ACTIONS(2258), - [anon_sym_interface] = ACTIONS(2258), - [anon_sym_enum] = ACTIONS(2258), - [sym__automatic_semicolon] = ACTIONS(2260), - [sym__ternary_qmark] = ACTIONS(2260), - [sym_html_comment] = ACTIONS(5), - }, - [414] = { - [sym_comment] = STATE(414), - [ts_builtin_sym_end] = ACTIONS(2390), - [sym_identifier] = ACTIONS(2228), - [anon_sym_export] = ACTIONS(2228), - [anon_sym_STAR] = ACTIONS(2230), - [anon_sym_type] = ACTIONS(2228), - [anon_sym_as] = ACTIONS(2230), - [anon_sym_namespace] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(2228), - [anon_sym_COMMA] = ACTIONS(2230), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym_typeof] = ACTIONS(2228), - [anon_sym_import] = ACTIONS(2228), - [anon_sym_with] = ACTIONS(2228), - [anon_sym_var] = ACTIONS(2228), - [anon_sym_let] = ACTIONS(2228), - [anon_sym_const] = ACTIONS(2228), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_switch] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(2228), - [anon_sym_await] = ACTIONS(2228), - [anon_sym_in] = ACTIONS(2230), - [anon_sym_while] = ACTIONS(2228), - [anon_sym_do] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_debugger] = ACTIONS(2228), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_throw] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2228), - [anon_sym_yield] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2228), - [anon_sym_LTtemplate_GT] = ACTIONS(2228), - [anon_sym_GT] = ACTIONS(2230), - [anon_sym_DOT] = ACTIONS(2230), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_SQUOTE] = ACTIONS(2228), - [anon_sym_class] = ACTIONS(2228), - [anon_sym_async] = ACTIONS(2228), - [anon_sym_function] = ACTIONS(2228), - [anon_sym_QMARK_DOT] = ACTIONS(2230), - [anon_sym_new] = ACTIONS(2228), - [anon_sym_using] = ACTIONS(2228), - [anon_sym_AMP_AMP] = ACTIONS(2230), - [anon_sym_PIPE_PIPE] = ACTIONS(2230), - [anon_sym_GT_GT] = ACTIONS(2230), - [anon_sym_GT_GT_GT] = ACTIONS(2230), - [anon_sym_LT_LT] = ACTIONS(2230), - [anon_sym_AMP] = ACTIONS(2230), - [anon_sym_CARET] = ACTIONS(2230), - [anon_sym_PIPE] = ACTIONS(2230), - [anon_sym_PLUS] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_SLASH] = ACTIONS(2228), - [anon_sym_PERCENT] = ACTIONS(2230), - [anon_sym_STAR_STAR] = ACTIONS(2230), - [anon_sym_LT] = ACTIONS(2228), - [anon_sym_LT_EQ] = ACTIONS(2230), - [anon_sym_EQ_EQ] = ACTIONS(2230), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ] = ACTIONS(2230), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2230), - [anon_sym_GT_EQ] = ACTIONS(2230), - [anon_sym_QMARK_QMARK] = ACTIONS(2230), - [anon_sym_instanceof] = ACTIONS(2230), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_void] = ACTIONS(2228), - [anon_sym_delete] = ACTIONS(2228), - [anon_sym_PLUS_PLUS] = ACTIONS(2228), - [anon_sym_DASH_DASH] = ACTIONS(2228), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2228), - [sym_number] = ACTIONS(2228), - [sym_private_property_identifier] = ACTIONS(2228), - [sym_this] = ACTIONS(2228), - [sym_super] = ACTIONS(2228), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), - [sym_null] = ACTIONS(2228), - [sym_undefined] = ACTIONS(2228), - [anon_sym_AT] = ACTIONS(2228), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_readonly] = ACTIONS(2228), - [anon_sym_get] = ACTIONS(2228), - [anon_sym_set] = ACTIONS(2228), - [anon_sym_declare] = ACTIONS(2228), - [anon_sym_public] = ACTIONS(2228), - [anon_sym_private] = ACTIONS(2228), - [anon_sym_protected] = ACTIONS(2228), - [anon_sym_override] = ACTIONS(2228), - [anon_sym_module] = ACTIONS(2228), - [anon_sym_any] = ACTIONS(2228), - [anon_sym_number] = ACTIONS(2228), - [anon_sym_boolean] = ACTIONS(2228), - [anon_sym_string] = ACTIONS(2228), - [anon_sym_symbol] = ACTIONS(2228), - [anon_sym_object] = ACTIONS(2228), - [anon_sym_abstract] = ACTIONS(2228), - [anon_sym_satisfies] = ACTIONS(2230), - [anon_sym_interface] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(2228), - [sym__automatic_semicolon] = ACTIONS(2444), - [sym__ternary_qmark] = ACTIONS(2234), - [sym_html_comment] = ACTIONS(5), - }, - [415] = { - [sym_comment] = STATE(415), - [ts_builtin_sym_end] = ACTIONS(2416), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_STAR] = ACTIONS(2290), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_as] = ACTIONS(2290), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_COMMA] = ACTIONS(2290), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_in] = ACTIONS(2290), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_GT] = ACTIONS(2290), - [anon_sym_DOT] = ACTIONS(2290), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_QMARK_DOT] = ACTIONS(2290), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_AMP_AMP] = ACTIONS(2290), - [anon_sym_PIPE_PIPE] = ACTIONS(2290), - [anon_sym_GT_GT] = ACTIONS(2290), - [anon_sym_GT_GT_GT] = ACTIONS(2290), - [anon_sym_LT_LT] = ACTIONS(2290), - [anon_sym_AMP] = ACTIONS(2290), - [anon_sym_CARET] = ACTIONS(2290), - [anon_sym_PIPE] = ACTIONS(2290), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_PERCENT] = ACTIONS(2290), - [anon_sym_STAR_STAR] = ACTIONS(2290), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_LT_EQ] = ACTIONS(2290), - [anon_sym_EQ_EQ] = ACTIONS(2290), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2290), - [anon_sym_BANG_EQ] = ACTIONS(2290), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2290), - [anon_sym_GT_EQ] = ACTIONS(2290), - [anon_sym_QMARK_QMARK] = ACTIONS(2290), - [anon_sym_instanceof] = ACTIONS(2290), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_satisfies] = ACTIONS(2290), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [sym__automatic_semicolon] = ACTIONS(2446), - [sym__ternary_qmark] = ACTIONS(2294), - [sym_html_comment] = ACTIONS(5), - }, - [416] = { - [sym_import] = STATE(4341), - [sym_expression_statement] = STATE(476), - [sym_empty_statement] = STATE(476), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2653), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6726), - [sym_string] = STATE(3425), - [sym_comment] = STATE(416), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [419] = { + [sym_import] = STATE(4300), + [sym_expression_statement] = STATE(474), + [sym_empty_statement] = STATE(474), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2526), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6496), + [sym_string] = STATE(3280), + [sym_comment] = STATE(419), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -84939,9 +84984,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -84964,965 +85009,420 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), - [sym_html_comment] = ACTIONS(5), - }, - [417] = { - [sym_import] = STATE(4359), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3361), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(417), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym__type_query_member_expression] = STATE(3848), - [sym__type_query_subscript_expression] = STATE(3849), - [sym__type_query_call_expression] = STATE(3915), - [sym__type_query_instantiation_expression] = STATE(4026), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2448), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), - [sym_html_comment] = ACTIONS(5), - }, - [418] = { - [sym_comment] = STATE(418), - [ts_builtin_sym_end] = ACTIONS(2264), - [sym_identifier] = ACTIONS(2262), - [anon_sym_export] = ACTIONS(2262), - [anon_sym_STAR] = ACTIONS(2262), - [anon_sym_type] = ACTIONS(2262), - [anon_sym_as] = ACTIONS(2262), - [anon_sym_namespace] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_COMMA] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_import] = ACTIONS(2262), - [anon_sym_with] = ACTIONS(2262), - [anon_sym_var] = ACTIONS(2262), - [anon_sym_let] = ACTIONS(2262), - [anon_sym_const] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_if] = ACTIONS(2262), - [anon_sym_switch] = ACTIONS(2262), - [anon_sym_for] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_await] = ACTIONS(2262), - [anon_sym_in] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2262), - [anon_sym_do] = ACTIONS(2262), - [anon_sym_try] = ACTIONS(2262), - [anon_sym_break] = ACTIONS(2262), - [anon_sym_continue] = ACTIONS(2262), - [anon_sym_debugger] = ACTIONS(2262), - [anon_sym_return] = ACTIONS(2262), - [anon_sym_throw] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_yield] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_LTtemplate_GT] = ACTIONS(2262), - [anon_sym_GT] = ACTIONS(2262), - [anon_sym_DOT] = ACTIONS(2262), - [anon_sym_DQUOTE] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(2262), - [anon_sym_class] = ACTIONS(2262), - [anon_sym_async] = ACTIONS(2262), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_QMARK_DOT] = ACTIONS(2262), - [anon_sym_new] = ACTIONS(2262), - [anon_sym_using] = ACTIONS(2262), - [anon_sym_AMP_AMP] = ACTIONS(2262), - [anon_sym_PIPE_PIPE] = ACTIONS(2262), - [anon_sym_GT_GT] = ACTIONS(2262), - [anon_sym_GT_GT_GT] = ACTIONS(2262), - [anon_sym_LT_LT] = ACTIONS(2262), - [anon_sym_AMP] = ACTIONS(2262), - [anon_sym_CARET] = ACTIONS(2262), - [anon_sym_PIPE] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_SLASH] = ACTIONS(2262), - [anon_sym_PERCENT] = ACTIONS(2262), - [anon_sym_STAR_STAR] = ACTIONS(2262), - [anon_sym_LT] = ACTIONS(2262), - [anon_sym_LT_EQ] = ACTIONS(2262), - [anon_sym_EQ_EQ] = ACTIONS(2262), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2262), - [anon_sym_BANG_EQ] = ACTIONS(2262), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2262), - [anon_sym_GT_EQ] = ACTIONS(2262), - [anon_sym_QMARK_QMARK] = ACTIONS(2262), - [anon_sym_instanceof] = ACTIONS(2262), - [anon_sym_TILDE] = ACTIONS(2262), - [anon_sym_void] = ACTIONS(2262), - [anon_sym_delete] = ACTIONS(2262), - [anon_sym_PLUS_PLUS] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(2262), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2262), - [sym_number] = ACTIONS(2262), - [sym_private_property_identifier] = ACTIONS(2262), - [sym_this] = ACTIONS(2262), - [sym_super] = ACTIONS(2262), - [sym_true] = ACTIONS(2262), - [sym_false] = ACTIONS(2262), - [sym_null] = ACTIONS(2262), - [sym_undefined] = ACTIONS(2262), - [anon_sym_AT] = ACTIONS(2262), - [anon_sym_static] = ACTIONS(2262), - [anon_sym_readonly] = ACTIONS(2262), - [anon_sym_get] = ACTIONS(2262), - [anon_sym_set] = ACTIONS(2262), - [anon_sym_declare] = ACTIONS(2262), - [anon_sym_public] = ACTIONS(2262), - [anon_sym_private] = ACTIONS(2262), - [anon_sym_protected] = ACTIONS(2262), - [anon_sym_override] = ACTIONS(2262), - [anon_sym_module] = ACTIONS(2262), - [anon_sym_any] = ACTIONS(2262), - [anon_sym_number] = ACTIONS(2262), - [anon_sym_boolean] = ACTIONS(2262), - [anon_sym_string] = ACTIONS(2262), - [anon_sym_symbol] = ACTIONS(2262), - [anon_sym_object] = ACTIONS(2262), - [anon_sym_abstract] = ACTIONS(2262), - [anon_sym_satisfies] = ACTIONS(2262), - [anon_sym_interface] = ACTIONS(2262), - [anon_sym_enum] = ACTIONS(2262), - [sym__automatic_semicolon] = ACTIONS(2264), - [sym__ternary_qmark] = ACTIONS(2264), - [sym_html_comment] = ACTIONS(5), - }, - [419] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2940), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_spread_element] = STATE(6219), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(419), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(2450), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_RBRACK] = ACTIONS(2450), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2452), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, [420] = { - [sym_import] = STATE(4359), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3455), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4233), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2735), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(420), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym__type_query_member_expression] = STATE(3848), - [sym__type_query_subscript_expression] = STATE(3849), - [sym__type_query_call_expression] = STATE(3915), - [sym__type_query_instantiation_expression] = STATE(4026), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2454), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym__type_query_member_expression] = STATE(3701), + [sym__type_query_subscript_expression] = STATE(3700), + [sym__type_query_call_expression] = STATE(3761), + [sym__type_query_instantiation_expression] = STATE(3840), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2450), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, [421] = { [sym_comment] = STATE(421), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_as] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_COMMA] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_in] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_GT] = ACTIONS(2140), - [anon_sym_DOT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_QMARK_DOT] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_AMP_AMP] = ACTIONS(2140), - [anon_sym_PIPE_PIPE] = ACTIONS(2140), - [anon_sym_GT_GT] = ACTIONS(2140), - [anon_sym_GT_GT_GT] = ACTIONS(2140), - [anon_sym_LT_LT] = ACTIONS(2140), - [anon_sym_AMP] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2140), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_PERCENT] = ACTIONS(2140), - [anon_sym_STAR_STAR] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_LT_EQ] = ACTIONS(2140), - [anon_sym_EQ_EQ] = ACTIONS(2140), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2140), - [anon_sym_BANG_EQ] = ACTIONS(2140), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2140), - [anon_sym_GT_EQ] = ACTIONS(2140), - [anon_sym_QMARK_QMARK] = ACTIONS(2140), - [anon_sym_instanceof] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_satisfies] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(2456), - [sym__ternary_qmark] = ACTIONS(2166), + [sym_identifier] = ACTIONS(2452), + [anon_sym_export] = ACTIONS(2452), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2452), + [anon_sym_EQ] = ACTIONS(212), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2452), + [anon_sym_LBRACE] = ACTIONS(2452), + [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_typeof] = ACTIONS(2452), + [anon_sym_import] = ACTIONS(2452), + [anon_sym_let] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_LPAREN] = ACTIONS(2452), + [anon_sym_RPAREN] = ACTIONS(215), + [anon_sym_await] = ACTIONS(2452), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(215), + [anon_sym_yield] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym_LTtemplate_GT] = ACTIONS(2452), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_class] = ACTIONS(2452), + [anon_sym_async] = ACTIONS(2452), + [anon_sym_function] = ACTIONS(2452), + [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2452), + [anon_sym_using] = ACTIONS(2452), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2452), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_SLASH] = ACTIONS(2452), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2452), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_void] = ACTIONS(2452), + [anon_sym_delete] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2452), + [anon_sym_DASH_DASH] = ACTIONS(2452), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2452), + [sym_number] = ACTIONS(2452), + [sym_private_property_identifier] = ACTIONS(2452), + [sym_this] = ACTIONS(2452), + [sym_super] = ACTIONS(2452), + [sym_true] = ACTIONS(2452), + [sym_false] = ACTIONS(2452), + [sym_null] = ACTIONS(2452), + [sym_undefined] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2452), + [anon_sym_static] = ACTIONS(2452), + [anon_sym_readonly] = ACTIONS(2452), + [anon_sym_get] = ACTIONS(2452), + [anon_sym_set] = ACTIONS(2452), + [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_declare] = ACTIONS(2452), + [anon_sym_public] = ACTIONS(2452), + [anon_sym_private] = ACTIONS(2452), + [anon_sym_protected] = ACTIONS(2452), + [anon_sym_override] = ACTIONS(2452), + [anon_sym_module] = ACTIONS(2452), + [anon_sym_any] = ACTIONS(2452), + [anon_sym_number] = ACTIONS(2452), + [anon_sym_boolean] = ACTIONS(2452), + [anon_sym_string] = ACTIONS(2452), + [anon_sym_symbol] = ACTIONS(2452), + [anon_sym_object] = ACTIONS(2452), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [422] = { + [sym_import] = STATE(4300), + [sym_expression_statement] = STATE(473), + [sym_empty_statement] = STATE(473), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2526), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6496), + [sym_string] = STATE(3280), [sym_comment] = STATE(422), - [ts_builtin_sym_end] = ACTIONS(2218), - [sym_identifier] = ACTIONS(2216), - [anon_sym_export] = ACTIONS(2216), - [anon_sym_STAR] = ACTIONS(2216), - [anon_sym_type] = ACTIONS(2216), - [anon_sym_as] = ACTIONS(2216), - [anon_sym_namespace] = ACTIONS(2216), - [anon_sym_LBRACE] = ACTIONS(2216), - [anon_sym_COMMA] = ACTIONS(2216), - [anon_sym_RBRACE] = ACTIONS(2216), - [anon_sym_typeof] = ACTIONS(2216), - [anon_sym_import] = ACTIONS(2216), - [anon_sym_with] = ACTIONS(2216), - [anon_sym_var] = ACTIONS(2216), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_const] = ACTIONS(2216), - [anon_sym_BANG] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_switch] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2216), - [anon_sym_await] = ACTIONS(2216), - [anon_sym_in] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2216), - [anon_sym_do] = ACTIONS(2216), - [anon_sym_try] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_debugger] = ACTIONS(2216), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_throw] = ACTIONS(2216), - [anon_sym_SEMI] = ACTIONS(2216), - [anon_sym_yield] = ACTIONS(2216), - [anon_sym_LBRACK] = ACTIONS(2216), - [anon_sym_LTtemplate_GT] = ACTIONS(2216), - [anon_sym_GT] = ACTIONS(2216), - [anon_sym_DOT] = ACTIONS(2216), - [anon_sym_DQUOTE] = ACTIONS(2216), - [anon_sym_SQUOTE] = ACTIONS(2216), - [anon_sym_class] = ACTIONS(2216), - [anon_sym_async] = ACTIONS(2216), - [anon_sym_function] = ACTIONS(2216), - [anon_sym_QMARK_DOT] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2216), - [anon_sym_using] = ACTIONS(2216), - [anon_sym_AMP_AMP] = ACTIONS(2216), - [anon_sym_PIPE_PIPE] = ACTIONS(2216), - [anon_sym_GT_GT] = ACTIONS(2216), - [anon_sym_GT_GT_GT] = ACTIONS(2216), - [anon_sym_LT_LT] = ACTIONS(2216), - [anon_sym_AMP] = ACTIONS(2216), - [anon_sym_CARET] = ACTIONS(2216), - [anon_sym_PIPE] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2216), - [anon_sym_SLASH] = ACTIONS(2216), - [anon_sym_PERCENT] = ACTIONS(2216), - [anon_sym_STAR_STAR] = ACTIONS(2216), - [anon_sym_LT] = ACTIONS(2216), - [anon_sym_LT_EQ] = ACTIONS(2216), - [anon_sym_EQ_EQ] = ACTIONS(2216), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2216), - [anon_sym_BANG_EQ] = ACTIONS(2216), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2216), - [anon_sym_GT_EQ] = ACTIONS(2216), - [anon_sym_QMARK_QMARK] = ACTIONS(2216), - [anon_sym_instanceof] = ACTIONS(2216), - [anon_sym_TILDE] = ACTIONS(2216), - [anon_sym_void] = ACTIONS(2216), - [anon_sym_delete] = ACTIONS(2216), - [anon_sym_PLUS_PLUS] = ACTIONS(2216), - [anon_sym_DASH_DASH] = ACTIONS(2216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2216), - [sym_number] = ACTIONS(2216), - [sym_private_property_identifier] = ACTIONS(2216), - [sym_this] = ACTIONS(2216), - [sym_super] = ACTIONS(2216), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_undefined] = ACTIONS(2216), - [anon_sym_AT] = ACTIONS(2216), - [anon_sym_static] = ACTIONS(2216), - [anon_sym_readonly] = ACTIONS(2216), - [anon_sym_get] = ACTIONS(2216), - [anon_sym_set] = ACTIONS(2216), - [anon_sym_declare] = ACTIONS(2216), - [anon_sym_public] = ACTIONS(2216), - [anon_sym_private] = ACTIONS(2216), - [anon_sym_protected] = ACTIONS(2216), - [anon_sym_override] = ACTIONS(2216), - [anon_sym_module] = ACTIONS(2216), - [anon_sym_any] = ACTIONS(2216), - [anon_sym_number] = ACTIONS(2216), - [anon_sym_boolean] = ACTIONS(2216), - [anon_sym_string] = ACTIONS(2216), - [anon_sym_symbol] = ACTIONS(2216), - [anon_sym_object] = ACTIONS(2216), - [anon_sym_abstract] = ACTIONS(2216), - [anon_sym_satisfies] = ACTIONS(2216), - [anon_sym_interface] = ACTIONS(2216), - [anon_sym_enum] = ACTIONS(2216), - [sym__automatic_semicolon] = ACTIONS(2218), - [sym__ternary_qmark] = ACTIONS(2218), - [sym_html_comment] = ACTIONS(5), - }, - [423] = { - [sym_import] = STATE(4400), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3262), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(423), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym__type_query_member_expression] = STATE(3848), - [sym__type_query_subscript_expression] = STATE(3849), - [sym__type_query_call_expression] = STATE(3915), - [sym__type_query_instantiation_expression] = STATE(4026), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2458), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), - [sym_html_comment] = ACTIONS(5), - }, - [424] = { - [sym_import] = STATE(4453), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2608), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(424), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym__type_query_member_expression] = STATE(3848), - [sym__type_query_subscript_expression] = STATE(3849), - [sym__type_query_call_expression] = STATE(3915), - [sym__type_query_instantiation_expression] = STATE(4026), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(2460), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2079), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [425] = { - [sym_import] = STATE(4453), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(425), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym__type_query_member_expression] = STATE(3848), - [sym__type_query_subscript_expression] = STATE(3849), - [sym__type_query_call_expression] = STATE(3915), - [sym__type_query_instantiation_expression] = STATE(4026), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(2462), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [423] = { + [sym_import] = STATE(4300), + [sym_expression_statement] = STATE(472), + [sym_empty_statement] = STATE(472), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2526), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6496), + [sym_string] = STATE(3280), + [sym_comment] = STATE(423), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2079), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -85945,104 +85445,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [426] = { - [sym_import] = STATE(4351), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3455), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(426), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym__type_query_member_expression] = STATE(3848), - [sym__type_query_subscript_expression] = STATE(3849), - [sym__type_query_call_expression] = STATE(3915), - [sym__type_query_instantiation_expression] = STATE(4026), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2464), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), + [424] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(6820), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(424), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5845), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1061), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), + [anon_sym_let] = ACTIONS(111), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), + [anon_sym_async] = ACTIONS(150), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), + [anon_sym_new] = ACTIONS(1069), [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -86052,511 +85552,729 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(111), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(111), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, - [427] = { - [sym_comment] = STATE(427), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_STAR] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_as] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_in] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_GT] = ACTIONS(2190), - [anon_sym_DOT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_QMARK_DOT] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2190), - [anon_sym_GT_GT_GT] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2190), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_PERCENT] = ACTIONS(2190), - [anon_sym_STAR_STAR] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_LT_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2190), - [anon_sym_GT_EQ] = ACTIONS(2190), - [anon_sym_QMARK_QMARK] = ACTIONS(2190), - [anon_sym_instanceof] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_satisfies] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(2192), - [sym__ternary_qmark] = ACTIONS(2192), + [425] = { + [sym_comment] = STATE(425), + [sym_identifier] = ACTIONS(2454), + [anon_sym_export] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(2454), + [anon_sym_EQ] = ACTIONS(212), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2454), + [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_typeof] = ACTIONS(2454), + [anon_sym_import] = ACTIONS(2454), + [anon_sym_let] = ACTIONS(2454), + [anon_sym_BANG] = ACTIONS(2454), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_RPAREN] = ACTIONS(215), + [anon_sym_await] = ACTIONS(2454), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(215), + [anon_sym_yield] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_LTtemplate_GT] = ACTIONS(2454), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2454), + [anon_sym_class] = ACTIONS(2454), + [anon_sym_async] = ACTIONS(2454), + [anon_sym_function] = ACTIONS(2454), + [anon_sym_EQ_GT] = ACTIONS(217), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2454), + [anon_sym_using] = ACTIONS(2454), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2454), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2454), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2454), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_TILDE] = ACTIONS(2454), + [anon_sym_void] = ACTIONS(2454), + [anon_sym_delete] = ACTIONS(2454), + [anon_sym_PLUS_PLUS] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2454), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2454), + [sym_number] = ACTIONS(2454), + [sym_private_property_identifier] = ACTIONS(2454), + [sym_this] = ACTIONS(2454), + [sym_super] = ACTIONS(2454), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [sym_null] = ACTIONS(2454), + [sym_undefined] = ACTIONS(2454), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_readonly] = ACTIONS(2454), + [anon_sym_get] = ACTIONS(2454), + [anon_sym_set] = ACTIONS(2454), + [anon_sym_QMARK] = ACTIONS(215), + [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_object] = ACTIONS(2454), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [428] = { - [sym_comment] = STATE(428), - [ts_builtin_sym_end] = ACTIONS(2298), - [sym_identifier] = ACTIONS(2296), - [anon_sym_export] = ACTIONS(2296), - [anon_sym_STAR] = ACTIONS(2296), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_as] = ACTIONS(2296), - [anon_sym_namespace] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2296), - [anon_sym_COMMA] = ACTIONS(2296), - [anon_sym_RBRACE] = ACTIONS(2296), - [anon_sym_typeof] = ACTIONS(2296), - [anon_sym_import] = ACTIONS(2296), - [anon_sym_with] = ACTIONS(2296), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_const] = ACTIONS(2296), - [anon_sym_BANG] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_switch] = ACTIONS(2296), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2296), - [anon_sym_await] = ACTIONS(2296), - [anon_sym_in] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(2296), - [anon_sym_try] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_debugger] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_throw] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2296), - [anon_sym_yield] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2296), - [anon_sym_LTtemplate_GT] = ACTIONS(2296), - [anon_sym_GT] = ACTIONS(2296), - [anon_sym_DOT] = ACTIONS(2296), - [anon_sym_DQUOTE] = ACTIONS(2296), - [anon_sym_SQUOTE] = ACTIONS(2296), - [anon_sym_class] = ACTIONS(2296), - [anon_sym_async] = ACTIONS(2296), - [anon_sym_function] = ACTIONS(2296), - [anon_sym_QMARK_DOT] = ACTIONS(2296), - [anon_sym_new] = ACTIONS(2296), - [anon_sym_using] = ACTIONS(2296), - [anon_sym_AMP_AMP] = ACTIONS(2296), - [anon_sym_PIPE_PIPE] = ACTIONS(2296), - [anon_sym_GT_GT] = ACTIONS(2296), - [anon_sym_GT_GT_GT] = ACTIONS(2296), - [anon_sym_LT_LT] = ACTIONS(2296), - [anon_sym_AMP] = ACTIONS(2296), - [anon_sym_CARET] = ACTIONS(2296), - [anon_sym_PIPE] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_PERCENT] = ACTIONS(2296), - [anon_sym_STAR_STAR] = ACTIONS(2296), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_LT_EQ] = ACTIONS(2296), - [anon_sym_EQ_EQ] = ACTIONS(2296), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2296), - [anon_sym_BANG_EQ] = ACTIONS(2296), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2296), - [anon_sym_GT_EQ] = ACTIONS(2296), - [anon_sym_QMARK_QMARK] = ACTIONS(2296), - [anon_sym_instanceof] = ACTIONS(2296), - [anon_sym_TILDE] = ACTIONS(2296), - [anon_sym_void] = ACTIONS(2296), - [anon_sym_delete] = ACTIONS(2296), - [anon_sym_PLUS_PLUS] = ACTIONS(2296), - [anon_sym_DASH_DASH] = ACTIONS(2296), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2296), - [sym_number] = ACTIONS(2296), - [sym_private_property_identifier] = ACTIONS(2296), - [sym_this] = ACTIONS(2296), - [sym_super] = ACTIONS(2296), - [sym_true] = ACTIONS(2296), - [sym_false] = ACTIONS(2296), - [sym_null] = ACTIONS(2296), - [sym_undefined] = ACTIONS(2296), - [anon_sym_AT] = ACTIONS(2296), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_readonly] = ACTIONS(2296), - [anon_sym_get] = ACTIONS(2296), - [anon_sym_set] = ACTIONS(2296), - [anon_sym_declare] = ACTIONS(2296), - [anon_sym_public] = ACTIONS(2296), - [anon_sym_private] = ACTIONS(2296), - [anon_sym_protected] = ACTIONS(2296), - [anon_sym_override] = ACTIONS(2296), - [anon_sym_module] = ACTIONS(2296), - [anon_sym_any] = ACTIONS(2296), - [anon_sym_number] = ACTIONS(2296), - [anon_sym_boolean] = ACTIONS(2296), - [anon_sym_string] = ACTIONS(2296), - [anon_sym_symbol] = ACTIONS(2296), - [anon_sym_object] = ACTIONS(2296), - [anon_sym_abstract] = ACTIONS(2296), - [anon_sym_satisfies] = ACTIONS(2296), - [anon_sym_interface] = ACTIONS(2296), - [anon_sym_enum] = ACTIONS(2296), - [sym__automatic_semicolon] = ACTIONS(2298), - [sym__ternary_qmark] = ACTIONS(2298), + [426] = { + [sym_comment] = STATE(426), + [ts_builtin_sym_end] = ACTIONS(2428), + [sym_identifier] = ACTIONS(2280), + [anon_sym_export] = ACTIONS(2280), + [anon_sym_STAR] = ACTIONS(2282), + [anon_sym_type] = ACTIONS(2280), + [anon_sym_as] = ACTIONS(2282), + [anon_sym_namespace] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2280), + [anon_sym_COMMA] = ACTIONS(2282), + [anon_sym_RBRACE] = ACTIONS(2280), + [anon_sym_typeof] = ACTIONS(2280), + [anon_sym_import] = ACTIONS(2280), + [anon_sym_with] = ACTIONS(2280), + [anon_sym_var] = ACTIONS(2280), + [anon_sym_let] = ACTIONS(2280), + [anon_sym_const] = ACTIONS(2280), + [anon_sym_BANG] = ACTIONS(2280), + [anon_sym_if] = ACTIONS(2280), + [anon_sym_switch] = ACTIONS(2280), + [anon_sym_for] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_await] = ACTIONS(2280), + [anon_sym_in] = ACTIONS(2282), + [anon_sym_while] = ACTIONS(2280), + [anon_sym_do] = ACTIONS(2280), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_break] = ACTIONS(2280), + [anon_sym_continue] = ACTIONS(2280), + [anon_sym_debugger] = ACTIONS(2280), + [anon_sym_return] = ACTIONS(2280), + [anon_sym_throw] = ACTIONS(2280), + [anon_sym_SEMI] = ACTIONS(2280), + [anon_sym_yield] = ACTIONS(2280), + [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_LTtemplate_GT] = ACTIONS(2280), + [anon_sym_GT] = ACTIONS(2282), + [anon_sym_DOT] = ACTIONS(2282), + [anon_sym_DQUOTE] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2280), + [anon_sym_class] = ACTIONS(2280), + [anon_sym_async] = ACTIONS(2280), + [anon_sym_function] = ACTIONS(2280), + [anon_sym_QMARK_DOT] = ACTIONS(2282), + [anon_sym_new] = ACTIONS(2280), + [anon_sym_using] = ACTIONS(2280), + [anon_sym_AMP_AMP] = ACTIONS(2282), + [anon_sym_PIPE_PIPE] = ACTIONS(2282), + [anon_sym_GT_GT] = ACTIONS(2282), + [anon_sym_GT_GT_GT] = ACTIONS(2282), + [anon_sym_LT_LT] = ACTIONS(2282), + [anon_sym_AMP] = ACTIONS(2282), + [anon_sym_CARET] = ACTIONS(2282), + [anon_sym_PIPE] = ACTIONS(2282), + [anon_sym_PLUS] = ACTIONS(2280), + [anon_sym_DASH] = ACTIONS(2280), + [anon_sym_SLASH] = ACTIONS(2280), + [anon_sym_PERCENT] = ACTIONS(2282), + [anon_sym_STAR_STAR] = ACTIONS(2282), + [anon_sym_LT] = ACTIONS(2280), + [anon_sym_LT_EQ] = ACTIONS(2282), + [anon_sym_EQ_EQ] = ACTIONS(2282), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2282), + [anon_sym_BANG_EQ] = ACTIONS(2282), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2282), + [anon_sym_GT_EQ] = ACTIONS(2282), + [anon_sym_QMARK_QMARK] = ACTIONS(2282), + [anon_sym_instanceof] = ACTIONS(2282), + [anon_sym_TILDE] = ACTIONS(2280), + [anon_sym_void] = ACTIONS(2280), + [anon_sym_delete] = ACTIONS(2280), + [anon_sym_PLUS_PLUS] = ACTIONS(2280), + [anon_sym_DASH_DASH] = ACTIONS(2280), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2280), + [sym_number] = ACTIONS(2280), + [sym_private_property_identifier] = ACTIONS(2280), + [sym_this] = ACTIONS(2280), + [sym_super] = ACTIONS(2280), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_undefined] = ACTIONS(2280), + [anon_sym_AT] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(2280), + [anon_sym_readonly] = ACTIONS(2280), + [anon_sym_get] = ACTIONS(2280), + [anon_sym_set] = ACTIONS(2280), + [anon_sym_declare] = ACTIONS(2280), + [anon_sym_public] = ACTIONS(2280), + [anon_sym_private] = ACTIONS(2280), + [anon_sym_protected] = ACTIONS(2280), + [anon_sym_override] = ACTIONS(2280), + [anon_sym_module] = ACTIONS(2280), + [anon_sym_any] = ACTIONS(2280), + [anon_sym_number] = ACTIONS(2280), + [anon_sym_boolean] = ACTIONS(2280), + [anon_sym_string] = ACTIONS(2280), + [anon_sym_symbol] = ACTIONS(2280), + [anon_sym_object] = ACTIONS(2280), + [anon_sym_abstract] = ACTIONS(2280), + [anon_sym_satisfies] = ACTIONS(2282), + [anon_sym_interface] = ACTIONS(2280), + [anon_sym_enum] = ACTIONS(2280), + [sym__automatic_semicolon] = ACTIONS(2456), + [sym__ternary_qmark] = ACTIONS(2286), [sym_html_comment] = ACTIONS(5), }, - [429] = { - [sym_import] = STATE(4411), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2862), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(429), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym__type_query_member_expression] = STATE(3848), - [sym__type_query_subscript_expression] = STATE(3849), - [sym__type_query_call_expression] = STATE(3915), - [sym__type_query_instantiation_expression] = STATE(4026), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2466), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [427] = { + [sym_import] = STATE(4233), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2620), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(427), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym__type_query_member_expression] = STATE(3701), + [sym__type_query_subscript_expression] = STATE(3700), + [sym__type_query_call_expression] = STATE(3761), + [sym__type_query_instantiation_expression] = STATE(3840), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2458), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [430] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(3015), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_spread_element] = STATE(6219), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(430), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_COMMA] = ACTIONS(2450), - [anon_sym_typeof] = ACTIONS(1129), + [428] = { + [sym_comment] = STATE(428), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2226), + [anon_sym_export] = ACTIONS(2226), + [anon_sym_STAR] = ACTIONS(2228), + [anon_sym_type] = ACTIONS(2226), + [anon_sym_as] = ACTIONS(2228), + [anon_sym_namespace] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2226), + [anon_sym_COMMA] = ACTIONS(2228), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_typeof] = ACTIONS(2226), + [anon_sym_import] = ACTIONS(2226), + [anon_sym_with] = ACTIONS(2226), + [anon_sym_var] = ACTIONS(2226), + [anon_sym_let] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_switch] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_await] = ACTIONS(2226), + [anon_sym_in] = ACTIONS(2228), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_do] = ACTIONS(2226), + [anon_sym_try] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_debugger] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_throw] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2226), + [anon_sym_yield] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_LTtemplate_GT] = ACTIONS(2226), + [anon_sym_GT] = ACTIONS(2228), + [anon_sym_DOT] = ACTIONS(2228), + [anon_sym_DQUOTE] = ACTIONS(2226), + [anon_sym_SQUOTE] = ACTIONS(2226), + [anon_sym_class] = ACTIONS(2226), + [anon_sym_async] = ACTIONS(2226), + [anon_sym_function] = ACTIONS(2226), + [anon_sym_QMARK_DOT] = ACTIONS(2228), + [anon_sym_new] = ACTIONS(2226), + [anon_sym_using] = ACTIONS(2226), + [anon_sym_AMP_AMP] = ACTIONS(2228), + [anon_sym_PIPE_PIPE] = ACTIONS(2228), + [anon_sym_GT_GT] = ACTIONS(2228), + [anon_sym_GT_GT_GT] = ACTIONS(2228), + [anon_sym_LT_LT] = ACTIONS(2228), + [anon_sym_AMP] = ACTIONS(2228), + [anon_sym_CARET] = ACTIONS(2228), + [anon_sym_PIPE] = ACTIONS(2228), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_SLASH] = ACTIONS(2226), + [anon_sym_PERCENT] = ACTIONS(2228), + [anon_sym_STAR_STAR] = ACTIONS(2228), + [anon_sym_LT] = ACTIONS(2226), + [anon_sym_LT_EQ] = ACTIONS(2228), + [anon_sym_EQ_EQ] = ACTIONS(2228), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2228), + [anon_sym_BANG_EQ] = ACTIONS(2228), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2228), + [anon_sym_GT_EQ] = ACTIONS(2228), + [anon_sym_QMARK_QMARK] = ACTIONS(2228), + [anon_sym_instanceof] = ACTIONS(2228), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_void] = ACTIONS(2226), + [anon_sym_delete] = ACTIONS(2226), + [anon_sym_PLUS_PLUS] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2226), + [sym_number] = ACTIONS(2226), + [sym_private_property_identifier] = ACTIONS(2226), + [sym_this] = ACTIONS(2226), + [sym_super] = ACTIONS(2226), + [sym_true] = ACTIONS(2226), + [sym_false] = ACTIONS(2226), + [sym_null] = ACTIONS(2226), + [sym_undefined] = ACTIONS(2226), + [anon_sym_AT] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2226), + [anon_sym_readonly] = ACTIONS(2226), + [anon_sym_get] = ACTIONS(2226), + [anon_sym_set] = ACTIONS(2226), + [anon_sym_declare] = ACTIONS(2226), + [anon_sym_public] = ACTIONS(2226), + [anon_sym_private] = ACTIONS(2226), + [anon_sym_protected] = ACTIONS(2226), + [anon_sym_override] = ACTIONS(2226), + [anon_sym_module] = ACTIONS(2226), + [anon_sym_any] = ACTIONS(2226), + [anon_sym_number] = ACTIONS(2226), + [anon_sym_boolean] = ACTIONS(2226), + [anon_sym_string] = ACTIONS(2226), + [anon_sym_symbol] = ACTIONS(2226), + [anon_sym_object] = ACTIONS(2226), + [anon_sym_abstract] = ACTIONS(2226), + [anon_sym_satisfies] = ACTIONS(2228), + [anon_sym_interface] = ACTIONS(2226), + [anon_sym_enum] = ACTIONS(2226), + [sym__automatic_semicolon] = ACTIONS(2460), + [sym__ternary_qmark] = ACTIONS(2232), + [sym_html_comment] = ACTIONS(5), + }, + [429] = { + [sym_import] = STATE(4332), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2890), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(429), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym__type_query_member_expression] = STATE(3701), + [sym__type_query_subscript_expression] = STATE(3700), + [sym__type_query_call_expression] = STATE(3761), + [sym__type_query_instantiation_expression] = STATE(3840), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(2462), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2450), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2324), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1597), + [sym_html_comment] = ACTIONS(5), + }, + [430] = { + [sym_comment] = STATE(430), + [ts_builtin_sym_end] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2242), + [anon_sym_export] = ACTIONS(2242), + [anon_sym_STAR] = ACTIONS(2244), + [anon_sym_type] = ACTIONS(2242), + [anon_sym_as] = ACTIONS(2244), + [anon_sym_namespace] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_COMMA] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_typeof] = ACTIONS(2242), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_with] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2242), + [anon_sym_let] = ACTIONS(2242), + [anon_sym_const] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_switch] = ACTIONS(2242), + [anon_sym_for] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_await] = ACTIONS(2242), + [anon_sym_in] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2242), + [anon_sym_do] = ACTIONS(2242), + [anon_sym_try] = ACTIONS(2242), + [anon_sym_break] = ACTIONS(2242), + [anon_sym_continue] = ACTIONS(2242), + [anon_sym_debugger] = ACTIONS(2242), + [anon_sym_return] = ACTIONS(2242), + [anon_sym_throw] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_yield] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_LTtemplate_GT] = ACTIONS(2242), + [anon_sym_GT] = ACTIONS(2244), + [anon_sym_DOT] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_class] = ACTIONS(2242), + [anon_sym_async] = ACTIONS(2242), + [anon_sym_function] = ACTIONS(2242), + [anon_sym_QMARK_DOT] = ACTIONS(2244), + [anon_sym_new] = ACTIONS(2242), + [anon_sym_using] = ACTIONS(2242), + [anon_sym_AMP_AMP] = ACTIONS(2244), + [anon_sym_PIPE_PIPE] = ACTIONS(2244), + [anon_sym_GT_GT] = ACTIONS(2244), + [anon_sym_GT_GT_GT] = ACTIONS(2244), + [anon_sym_LT_LT] = ACTIONS(2244), + [anon_sym_AMP] = ACTIONS(2244), + [anon_sym_CARET] = ACTIONS(2244), + [anon_sym_PIPE] = ACTIONS(2244), + [anon_sym_PLUS] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2242), + [anon_sym_SLASH] = ACTIONS(2242), + [anon_sym_PERCENT] = ACTIONS(2244), + [anon_sym_STAR_STAR] = ACTIONS(2244), + [anon_sym_LT] = ACTIONS(2242), + [anon_sym_LT_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ] = ACTIONS(2244), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ] = ACTIONS(2244), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2244), + [anon_sym_GT_EQ] = ACTIONS(2244), + [anon_sym_QMARK_QMARK] = ACTIONS(2244), + [anon_sym_instanceof] = ACTIONS(2244), + [anon_sym_TILDE] = ACTIONS(2242), + [anon_sym_void] = ACTIONS(2242), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2242), + [sym_number] = ACTIONS(2242), + [sym_private_property_identifier] = ACTIONS(2242), + [sym_this] = ACTIONS(2242), + [sym_super] = ACTIONS(2242), + [sym_true] = ACTIONS(2242), + [sym_false] = ACTIONS(2242), + [sym_null] = ACTIONS(2242), + [sym_undefined] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(2242), + [anon_sym_readonly] = ACTIONS(2242), + [anon_sym_get] = ACTIONS(2242), + [anon_sym_set] = ACTIONS(2242), + [anon_sym_declare] = ACTIONS(2242), + [anon_sym_public] = ACTIONS(2242), + [anon_sym_private] = ACTIONS(2242), + [anon_sym_protected] = ACTIONS(2242), + [anon_sym_override] = ACTIONS(2242), + [anon_sym_module] = ACTIONS(2242), + [anon_sym_any] = ACTIONS(2242), + [anon_sym_number] = ACTIONS(2242), + [anon_sym_boolean] = ACTIONS(2242), + [anon_sym_string] = ACTIONS(2242), + [anon_sym_symbol] = ACTIONS(2242), + [anon_sym_object] = ACTIONS(2242), + [anon_sym_abstract] = ACTIONS(2242), + [anon_sym_satisfies] = ACTIONS(2244), + [anon_sym_interface] = ACTIONS(2242), + [anon_sym_enum] = ACTIONS(2242), + [sym__automatic_semicolon] = ACTIONS(2464), + [sym__ternary_qmark] = ACTIONS(2248), [sym_html_comment] = ACTIONS(5), }, [431] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(431), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5292), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_override_modifier] = STATE(465), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5012), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_override_modifier] = STATE(464), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -86569,7 +86287,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), @@ -86581,18 +86299,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1083), + [sym_this] = ACTIONS(1077), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), @@ -86600,7 +86318,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2468), + [anon_sym_readonly] = ACTIONS(2466), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -86619,365 +86337,474 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [432] = { [sym_comment] = STATE(432), - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_EQ] = ACTIONS(115), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2470), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2470), - [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(2470), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2470), - [anon_sym_LTtemplate_GT] = ACTIONS(2470), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [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_EQ_GT] = ACTIONS(154), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_using] = ACTIONS(2470), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2470), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2470), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [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_QMARK] = ACTIONS(215), - [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_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [433] = { - [sym_comment] = STATE(433), - [ts_builtin_sym_end] = ACTIONS(2350), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_STAR] = ACTIONS(2178), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_as] = ACTIONS(2178), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_COMMA] = ACTIONS(2178), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(2176), - [anon_sym_in] = ACTIONS(2178), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LTtemplate_GT] = ACTIONS(2176), - [anon_sym_GT] = ACTIONS(2178), - [anon_sym_DOT] = ACTIONS(2178), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_QMARK_DOT] = ACTIONS(2178), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_AMP_AMP] = ACTIONS(2178), - [anon_sym_PIPE_PIPE] = ACTIONS(2178), - [anon_sym_GT_GT] = ACTIONS(2178), - [anon_sym_GT_GT_GT] = ACTIONS(2178), - [anon_sym_LT_LT] = ACTIONS(2178), - [anon_sym_AMP] = ACTIONS(2178), - [anon_sym_CARET] = ACTIONS(2178), - [anon_sym_PIPE] = ACTIONS(2178), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_PERCENT] = ACTIONS(2178), - [anon_sym_STAR_STAR] = ACTIONS(2178), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_LT_EQ] = ACTIONS(2178), - [anon_sym_EQ_EQ] = ACTIONS(2178), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2178), - [anon_sym_BANG_EQ] = ACTIONS(2178), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2178), - [anon_sym_GT_EQ] = ACTIONS(2178), - [anon_sym_QMARK_QMARK] = ACTIONS(2178), - [anon_sym_instanceof] = ACTIONS(2178), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_number] = ACTIONS(2176), - [sym_private_property_identifier] = ACTIONS(2176), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_satisfies] = ACTIONS(2178), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), - [sym__automatic_semicolon] = ACTIONS(2180), - [sym__ternary_qmark] = ACTIONS(2180), - [sym_html_comment] = ACTIONS(5), - }, - [434] = { - [sym_comment] = STATE(434), - [ts_builtin_sym_end] = ACTIONS(2364), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_STAR] = ACTIONS(2154), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_as] = ACTIONS(2154), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_COMMA] = ACTIONS(2154), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_in] = ACTIONS(2154), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_LTtemplate_GT] = ACTIONS(2152), - [anon_sym_GT] = ACTIONS(2154), - [anon_sym_DOT] = ACTIONS(2154), - [anon_sym_DQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_QMARK_DOT] = ACTIONS(2154), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_using] = ACTIONS(2152), - [anon_sym_AMP_AMP] = ACTIONS(2154), - [anon_sym_PIPE_PIPE] = ACTIONS(2154), - [anon_sym_GT_GT] = ACTIONS(2154), - [anon_sym_GT_GT_GT] = ACTIONS(2154), - [anon_sym_LT_LT] = ACTIONS(2154), - [anon_sym_AMP] = ACTIONS(2154), - [anon_sym_CARET] = ACTIONS(2154), - [anon_sym_PIPE] = ACTIONS(2154), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_PERCENT] = ACTIONS(2154), - [anon_sym_STAR_STAR] = ACTIONS(2154), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_LT_EQ] = ACTIONS(2154), - [anon_sym_EQ_EQ] = ACTIONS(2154), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2154), - [anon_sym_BANG_EQ] = ACTIONS(2154), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2154), - [anon_sym_GT_EQ] = ACTIONS(2154), - [anon_sym_QMARK_QMARK] = ACTIONS(2154), - [anon_sym_instanceof] = ACTIONS(2154), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(2152), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_STAR] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_as] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_COMMA] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_in] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_GT] = ACTIONS(2160), + [anon_sym_DOT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_QMARK_DOT] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_AMP_AMP] = ACTIONS(2160), + [anon_sym_PIPE_PIPE] = ACTIONS(2160), + [anon_sym_GT_GT] = ACTIONS(2160), + [anon_sym_GT_GT_GT] = ACTIONS(2160), + [anon_sym_LT_LT] = ACTIONS(2160), + [anon_sym_AMP] = ACTIONS(2160), + [anon_sym_CARET] = ACTIONS(2160), + [anon_sym_PIPE] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_PERCENT] = ACTIONS(2160), + [anon_sym_STAR_STAR] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_LT_EQ] = ACTIONS(2160), + [anon_sym_EQ_EQ] = ACTIONS(2160), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2160), + [anon_sym_BANG_EQ] = ACTIONS(2160), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2160), + [anon_sym_GT_EQ] = ACTIONS(2160), + [anon_sym_QMARK_QMARK] = ACTIONS(2160), + [anon_sym_instanceof] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2152), - [sym_number] = ACTIONS(2152), - [sym_private_property_identifier] = ACTIONS(2152), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_object] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_satisfies] = ACTIONS(2154), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - [sym__automatic_semicolon] = ACTIONS(2472), - [sym__ternary_qmark] = ACTIONS(2158), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_satisfies] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(2468), + [sym__ternary_qmark] = ACTIONS(2164), + [sym_html_comment] = ACTIONS(5), + }, + [433] = { + [sym_comment] = STATE(433), + [ts_builtin_sym_end] = ACTIONS(2180), + [sym_identifier] = ACTIONS(2178), + [anon_sym_export] = ACTIONS(2178), + [anon_sym_STAR] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_as] = ACTIONS(2178), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_COMMA] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_typeof] = ACTIONS(2178), + [anon_sym_import] = ACTIONS(2178), + [anon_sym_with] = ACTIONS(2178), + [anon_sym_var] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_await] = ACTIONS(2178), + [anon_sym_in] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_debugger] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_LTtemplate_GT] = ACTIONS(2178), + [anon_sym_GT] = ACTIONS(2178), + [anon_sym_DOT] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2178), + [anon_sym_QMARK_DOT] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_AMP_AMP] = ACTIONS(2178), + [anon_sym_PIPE_PIPE] = ACTIONS(2178), + [anon_sym_GT_GT] = ACTIONS(2178), + [anon_sym_GT_GT_GT] = ACTIONS(2178), + [anon_sym_LT_LT] = ACTIONS(2178), + [anon_sym_AMP] = ACTIONS(2178), + [anon_sym_CARET] = ACTIONS(2178), + [anon_sym_PIPE] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_PERCENT] = ACTIONS(2178), + [anon_sym_STAR_STAR] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_LT_EQ] = ACTIONS(2178), + [anon_sym_EQ_EQ] = ACTIONS(2178), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2178), + [anon_sym_BANG_EQ] = ACTIONS(2178), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2178), + [anon_sym_GT_EQ] = ACTIONS(2178), + [anon_sym_QMARK_QMARK] = ACTIONS(2178), + [anon_sym_instanceof] = ACTIONS(2178), + [anon_sym_TILDE] = ACTIONS(2178), + [anon_sym_void] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_PLUS_PLUS] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2178), + [sym_number] = ACTIONS(2178), + [sym_private_property_identifier] = ACTIONS(2178), + [sym_this] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [sym_null] = ACTIONS(2178), + [sym_undefined] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_readonly] = ACTIONS(2178), + [anon_sym_get] = ACTIONS(2178), + [anon_sym_set] = ACTIONS(2178), + [anon_sym_declare] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_protected] = ACTIONS(2178), + [anon_sym_override] = ACTIONS(2178), + [anon_sym_module] = ACTIONS(2178), + [anon_sym_any] = ACTIONS(2178), + [anon_sym_number] = ACTIONS(2178), + [anon_sym_boolean] = ACTIONS(2178), + [anon_sym_string] = ACTIONS(2178), + [anon_sym_symbol] = ACTIONS(2178), + [anon_sym_object] = ACTIONS(2178), + [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_satisfies] = ACTIONS(2178), + [anon_sym_interface] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [sym__automatic_semicolon] = ACTIONS(2180), + [sym__ternary_qmark] = ACTIONS(2180), + [sym_html_comment] = ACTIONS(5), + }, + [434] = { + [sym_comment] = STATE(434), + [ts_builtin_sym_end] = ACTIONS(2174), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_STAR] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_as] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_COMMA] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_in] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LTtemplate_GT] = ACTIONS(2172), + [anon_sym_GT] = ACTIONS(2172), + [anon_sym_DOT] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_QMARK_DOT] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_using] = ACTIONS(2172), + [anon_sym_AMP_AMP] = ACTIONS(2172), + [anon_sym_PIPE_PIPE] = ACTIONS(2172), + [anon_sym_GT_GT] = ACTIONS(2172), + [anon_sym_GT_GT_GT] = ACTIONS(2172), + [anon_sym_LT_LT] = ACTIONS(2172), + [anon_sym_AMP] = ACTIONS(2172), + [anon_sym_CARET] = ACTIONS(2172), + [anon_sym_PIPE] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_PERCENT] = ACTIONS(2172), + [anon_sym_STAR_STAR] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(2172), + [anon_sym_LT_EQ] = ACTIONS(2172), + [anon_sym_EQ_EQ] = ACTIONS(2172), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2172), + [anon_sym_BANG_EQ] = ACTIONS(2172), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2172), + [anon_sym_GT_EQ] = ACTIONS(2172), + [anon_sym_QMARK_QMARK] = ACTIONS(2172), + [anon_sym_instanceof] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2172), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2172), + [anon_sym_DASH_DASH] = ACTIONS(2172), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2172), + [sym_number] = ACTIONS(2172), + [sym_private_property_identifier] = ACTIONS(2172), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2172), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_object] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_satisfies] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), + [sym__automatic_semicolon] = ACTIONS(2174), + [sym__ternary_qmark] = ACTIONS(2174), [sym_html_comment] = ACTIONS(5), }, [435] = { [sym_comment] = STATE(435), - [sym_identifier] = ACTIONS(2474), - [anon_sym_export] = ACTIONS(2474), + [ts_builtin_sym_end] = ACTIONS(2168), + [sym_identifier] = ACTIONS(2166), + [anon_sym_export] = ACTIONS(2166), + [anon_sym_STAR] = ACTIONS(2166), + [anon_sym_type] = ACTIONS(2166), + [anon_sym_as] = ACTIONS(2166), + [anon_sym_namespace] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_COMMA] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_typeof] = ACTIONS(2166), + [anon_sym_import] = ACTIONS(2166), + [anon_sym_with] = ACTIONS(2166), + [anon_sym_var] = ACTIONS(2166), + [anon_sym_let] = ACTIONS(2166), + [anon_sym_const] = ACTIONS(2166), + [anon_sym_BANG] = ACTIONS(2166), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_switch] = ACTIONS(2166), + [anon_sym_for] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(2166), + [anon_sym_await] = ACTIONS(2166), + [anon_sym_in] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2166), + [anon_sym_do] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2166), + [anon_sym_break] = ACTIONS(2166), + [anon_sym_continue] = ACTIONS(2166), + [anon_sym_debugger] = ACTIONS(2166), + [anon_sym_return] = ACTIONS(2166), + [anon_sym_throw] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_yield] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2166), + [anon_sym_LTtemplate_GT] = ACTIONS(2166), + [anon_sym_GT] = ACTIONS(2166), + [anon_sym_DOT] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [anon_sym_SQUOTE] = ACTIONS(2166), + [anon_sym_class] = ACTIONS(2166), + [anon_sym_async] = ACTIONS(2166), + [anon_sym_function] = ACTIONS(2166), + [anon_sym_QMARK_DOT] = ACTIONS(2166), + [anon_sym_new] = ACTIONS(2166), + [anon_sym_using] = ACTIONS(2166), + [anon_sym_AMP_AMP] = ACTIONS(2166), + [anon_sym_PIPE_PIPE] = ACTIONS(2166), + [anon_sym_GT_GT] = ACTIONS(2166), + [anon_sym_GT_GT_GT] = ACTIONS(2166), + [anon_sym_LT_LT] = ACTIONS(2166), + [anon_sym_AMP] = ACTIONS(2166), + [anon_sym_CARET] = ACTIONS(2166), + [anon_sym_PIPE] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_PERCENT] = ACTIONS(2166), + [anon_sym_STAR_STAR] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_LT_EQ] = ACTIONS(2166), + [anon_sym_EQ_EQ] = ACTIONS(2166), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2166), + [anon_sym_BANG_EQ] = ACTIONS(2166), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2166), + [anon_sym_GT_EQ] = ACTIONS(2166), + [anon_sym_QMARK_QMARK] = ACTIONS(2166), + [anon_sym_instanceof] = ACTIONS(2166), + [anon_sym_TILDE] = ACTIONS(2166), + [anon_sym_void] = ACTIONS(2166), + [anon_sym_delete] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2166), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2166), + [sym_number] = ACTIONS(2166), + [sym_private_property_identifier] = ACTIONS(2166), + [sym_this] = ACTIONS(2166), + [sym_super] = ACTIONS(2166), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_undefined] = ACTIONS(2166), + [anon_sym_AT] = ACTIONS(2166), + [anon_sym_static] = ACTIONS(2166), + [anon_sym_readonly] = ACTIONS(2166), + [anon_sym_get] = ACTIONS(2166), + [anon_sym_set] = ACTIONS(2166), + [anon_sym_declare] = ACTIONS(2166), + [anon_sym_public] = ACTIONS(2166), + [anon_sym_private] = ACTIONS(2166), + [anon_sym_protected] = ACTIONS(2166), + [anon_sym_override] = ACTIONS(2166), + [anon_sym_module] = ACTIONS(2166), + [anon_sym_any] = ACTIONS(2166), + [anon_sym_number] = ACTIONS(2166), + [anon_sym_boolean] = ACTIONS(2166), + [anon_sym_string] = ACTIONS(2166), + [anon_sym_symbol] = ACTIONS(2166), + [anon_sym_object] = ACTIONS(2166), + [anon_sym_abstract] = ACTIONS(2166), + [anon_sym_satisfies] = ACTIONS(2166), + [anon_sym_interface] = ACTIONS(2166), + [anon_sym_enum] = ACTIONS(2166), + [sym__automatic_semicolon] = ACTIONS(2168), + [sym__ternary_qmark] = ACTIONS(2168), + [sym_html_comment] = ACTIONS(5), + }, + [436] = { + [sym_comment] = STATE(436), + [sym_identifier] = ACTIONS(2452), + [anon_sym_export] = ACTIONS(2452), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2474), + [anon_sym_type] = ACTIONS(2452), [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(2474), + [anon_sym_namespace] = ACTIONS(2452), + [anon_sym_LBRACE] = ACTIONS(2452), [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_typeof] = ACTIONS(2474), - [anon_sym_import] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_typeof] = ACTIONS(2452), + [anon_sym_import] = ACTIONS(2452), + [anon_sym_let] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(2452), + [anon_sym_LPAREN] = ACTIONS(2452), [anon_sym_RPAREN] = ACTIONS(124), - [anon_sym_await] = ACTIONS(2474), + [anon_sym_await] = ACTIONS(2452), [anon_sym_in] = ACTIONS(118), [anon_sym_COLON] = ACTIONS(124), - [anon_sym_yield] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(2474), - [anon_sym_LTtemplate_GT] = ACTIONS(2474), + [anon_sym_yield] = ACTIONS(2452), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym_LTtemplate_GT] = ACTIONS(2452), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2474), - [anon_sym_SQUOTE] = ACTIONS(2474), - [anon_sym_class] = ACTIONS(2474), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2474), + [anon_sym_DQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_class] = ACTIONS(2452), + [anon_sym_async] = ACTIONS(2452), + [anon_sym_function] = ACTIONS(2452), [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_using] = ACTIONS(2474), + [anon_sym_new] = ACTIONS(2452), + [anon_sym_using] = ACTIONS(2452), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -86993,7 +86820,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(160), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2452), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -87002,12 +86829,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2474), - [anon_sym_DASH] = ACTIONS(2474), - [anon_sym_SLASH] = ACTIONS(2474), + [anon_sym_PLUS] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2452), + [anon_sym_SLASH] = ACTIONS(2452), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(2452), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -87016,236 +86843,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(2474), - [anon_sym_void] = ACTIONS(2474), - [anon_sym_delete] = ACTIONS(2474), - [anon_sym_PLUS_PLUS] = ACTIONS(2474), - [anon_sym_DASH_DASH] = ACTIONS(2474), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2474), - [sym_number] = ACTIONS(2474), - [sym_private_property_identifier] = ACTIONS(2474), - [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(2474), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_readonly] = ACTIONS(2474), - [anon_sym_get] = ACTIONS(2474), - [anon_sym_set] = ACTIONS(2474), + [anon_sym_TILDE] = ACTIONS(2452), + [anon_sym_void] = ACTIONS(2452), + [anon_sym_delete] = ACTIONS(2452), + [anon_sym_PLUS_PLUS] = ACTIONS(2452), + [anon_sym_DASH_DASH] = ACTIONS(2452), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2452), + [sym_number] = ACTIONS(2452), + [sym_private_property_identifier] = ACTIONS(2452), + [sym_this] = ACTIONS(2452), + [sym_super] = ACTIONS(2452), + [sym_true] = ACTIONS(2452), + [sym_false] = ACTIONS(2452), + [sym_null] = ACTIONS(2452), + [sym_undefined] = ACTIONS(2452), + [anon_sym_AT] = ACTIONS(2452), + [anon_sym_static] = ACTIONS(2452), + [anon_sym_readonly] = ACTIONS(2452), + [anon_sym_get] = ACTIONS(2452), + [anon_sym_set] = ACTIONS(2452), [anon_sym_QMARK] = ACTIONS(215), - [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_object] = ACTIONS(2474), + [anon_sym_declare] = ACTIONS(2452), + [anon_sym_public] = ACTIONS(2452), + [anon_sym_private] = ACTIONS(2452), + [anon_sym_protected] = ACTIONS(2452), + [anon_sym_override] = ACTIONS(2452), + [anon_sym_module] = ACTIONS(2452), + [anon_sym_any] = ACTIONS(2452), + [anon_sym_number] = ACTIONS(2452), + [anon_sym_boolean] = ACTIONS(2452), + [anon_sym_string] = ACTIONS(2452), + [anon_sym_symbol] = ACTIONS(2452), + [anon_sym_object] = ACTIONS(2452), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [436] = { - [sym_comment] = STATE(436), - [ts_builtin_sym_end] = ACTIONS(2408), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_STAR] = ACTIONS(2210), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_as] = ACTIONS(2210), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_COMMA] = ACTIONS(2210), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_in] = ACTIONS(2210), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_GT] = ACTIONS(2210), - [anon_sym_DOT] = ACTIONS(2210), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_QMARK_DOT] = ACTIONS(2210), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_AMP_AMP] = ACTIONS(2210), - [anon_sym_PIPE_PIPE] = ACTIONS(2210), - [anon_sym_GT_GT] = ACTIONS(2210), - [anon_sym_GT_GT_GT] = ACTIONS(2210), - [anon_sym_LT_LT] = ACTIONS(2210), - [anon_sym_AMP] = ACTIONS(2210), - [anon_sym_CARET] = ACTIONS(2210), - [anon_sym_PIPE] = ACTIONS(2210), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_PERCENT] = ACTIONS(2210), - [anon_sym_STAR_STAR] = ACTIONS(2210), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_LT_EQ] = ACTIONS(2210), - [anon_sym_EQ_EQ] = ACTIONS(2210), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2210), - [anon_sym_BANG_EQ] = ACTIONS(2210), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2210), - [anon_sym_GT_EQ] = ACTIONS(2210), - [anon_sym_QMARK_QMARK] = ACTIONS(2210), - [anon_sym_instanceof] = ACTIONS(2210), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_satisfies] = ACTIONS(2210), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(2476), - [sym__ternary_qmark] = ACTIONS(2214), - [sym_html_comment] = ACTIONS(5), - }, [437] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2974), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6947), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2277), - [sym_subscript_expression] = STATE(2277), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5738), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), [sym_comment] = STATE(437), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(6167), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2277), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [ts_builtin_sym_end] = ACTIONS(2352), + [sym_identifier] = ACTIONS(2212), + [anon_sym_export] = ACTIONS(2212), + [anon_sym_STAR] = ACTIONS(2214), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_as] = ACTIONS(2214), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_COMMA] = ACTIONS(2214), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_typeof] = ACTIONS(2212), + [anon_sym_import] = ACTIONS(2212), + [anon_sym_with] = ACTIONS(2212), + [anon_sym_var] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_await] = ACTIONS(2212), + [anon_sym_in] = ACTIONS(2214), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_debugger] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LTtemplate_GT] = ACTIONS(2212), + [anon_sym_GT] = ACTIONS(2214), + [anon_sym_DOT] = ACTIONS(2214), + [anon_sym_DQUOTE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_function] = ACTIONS(2212), + [anon_sym_QMARK_DOT] = ACTIONS(2214), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_AMP_AMP] = ACTIONS(2214), + [anon_sym_PIPE_PIPE] = ACTIONS(2214), + [anon_sym_GT_GT] = ACTIONS(2214), + [anon_sym_GT_GT_GT] = ACTIONS(2214), + [anon_sym_LT_LT] = ACTIONS(2214), + [anon_sym_AMP] = ACTIONS(2214), + [anon_sym_CARET] = ACTIONS(2214), + [anon_sym_PIPE] = ACTIONS(2214), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_SLASH] = ACTIONS(2212), + [anon_sym_PERCENT] = ACTIONS(2214), + [anon_sym_STAR_STAR] = ACTIONS(2214), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_LT_EQ] = ACTIONS(2214), + [anon_sym_EQ_EQ] = ACTIONS(2214), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2214), + [anon_sym_BANG_EQ] = ACTIONS(2214), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2214), + [anon_sym_GT_EQ] = ACTIONS(2214), + [anon_sym_QMARK_QMARK] = ACTIONS(2214), + [anon_sym_instanceof] = ACTIONS(2214), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_void] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2212), + [sym_number] = ACTIONS(2212), + [sym_private_property_identifier] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [sym_null] = ACTIONS(2212), + [sym_undefined] = ACTIONS(2212), + [anon_sym_AT] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_readonly] = ACTIONS(2212), + [anon_sym_get] = ACTIONS(2212), + [anon_sym_set] = ACTIONS(2212), + [anon_sym_declare] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_override] = ACTIONS(2212), + [anon_sym_module] = ACTIONS(2212), + [anon_sym_any] = ACTIONS(2212), + [anon_sym_number] = ACTIONS(2212), + [anon_sym_boolean] = ACTIONS(2212), + [anon_sym_string] = ACTIONS(2212), + [anon_sym_symbol] = ACTIONS(2212), + [anon_sym_object] = ACTIONS(2212), + [anon_sym_abstract] = ACTIONS(2212), + [anon_sym_satisfies] = ACTIONS(2214), + [anon_sym_interface] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [sym__automatic_semicolon] = ACTIONS(2470), + [sym__ternary_qmark] = ACTIONS(2218), + [sym_html_comment] = ACTIONS(5), + }, + [438] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2836), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_assignment_pattern] = STATE(6820), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2146), + [sym_subscript_expression] = STATE(2146), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(5599), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(438), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5845), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2146), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(2039), - [anon_sym_export] = ACTIONS(956), - [anon_sym_type] = ACTIONS(956), - [anon_sym_namespace] = ACTIONS(958), + [anon_sym_export] = ACTIONS(989), + [anon_sym_type] = ACTIONS(989), + [anon_sym_namespace] = ACTIONS(991), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(956), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(976), + [anon_sym_async] = ACTIONS(1009), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(2045), - [anon_sym_using] = ACTIONS(980), + [anon_sym_using] = ACTIONS(1013), [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -87253,81 +87080,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(2047), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(956), - [anon_sym_readonly] = ACTIONS(956), - [anon_sym_get] = ACTIONS(956), - [anon_sym_set] = ACTIONS(956), - [anon_sym_declare] = ACTIONS(956), - [anon_sym_public] = ACTIONS(956), - [anon_sym_private] = ACTIONS(956), - [anon_sym_protected] = ACTIONS(956), - [anon_sym_override] = ACTIONS(956), - [anon_sym_module] = ACTIONS(956), - [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_object] = ACTIONS(956), + [anon_sym_static] = ACTIONS(989), + [anon_sym_readonly] = ACTIONS(989), + [anon_sym_get] = ACTIONS(989), + [anon_sym_set] = ACTIONS(989), + [anon_sym_declare] = ACTIONS(989), + [anon_sym_public] = ACTIONS(989), + [anon_sym_private] = ACTIONS(989), + [anon_sym_protected] = ACTIONS(989), + [anon_sym_override] = ACTIONS(989), + [anon_sym_module] = ACTIONS(989), + [anon_sym_any] = ACTIONS(989), + [anon_sym_number] = ACTIONS(989), + [anon_sym_boolean] = ACTIONS(989), + [anon_sym_string] = ACTIONS(989), + [anon_sym_symbol] = ACTIONS(989), + [anon_sym_object] = ACTIONS(989), [sym_html_comment] = ACTIONS(5), }, - [438] = { - [sym_import] = STATE(4341), - [sym_expression_statement] = STATE(473), - [sym_empty_statement] = STATE(473), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2653), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6726), - [sym_string] = STATE(3425), - [sym_comment] = STATE(438), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [439] = { + [sym_import] = STATE(4300), + [sym_expression_statement] = STATE(475), + [sym_empty_statement] = STATE(475), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2526), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6496), + [sym_string] = STATE(3280), + [sym_comment] = STATE(439), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -87337,9 +87164,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -87362,27 +87189,245 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [439] = { - [sym_comment] = STATE(439), - [ts_builtin_sym_end] = ACTIONS(2354), + [440] = { + [sym_comment] = STATE(440), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_STAR] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_as] = ACTIONS(2142), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_COMMA] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_in] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_GT] = ACTIONS(2142), + [anon_sym_DOT] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_QMARK_DOT] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_AMP_AMP] = ACTIONS(2142), + [anon_sym_PIPE_PIPE] = ACTIONS(2142), + [anon_sym_GT_GT] = ACTIONS(2142), + [anon_sym_GT_GT_GT] = ACTIONS(2142), + [anon_sym_LT_LT] = ACTIONS(2142), + [anon_sym_AMP] = ACTIONS(2142), + [anon_sym_CARET] = ACTIONS(2142), + [anon_sym_PIPE] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_PERCENT] = ACTIONS(2142), + [anon_sym_STAR_STAR] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_LT_EQ] = ACTIONS(2142), + [anon_sym_EQ_EQ] = ACTIONS(2142), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2142), + [anon_sym_BANG_EQ] = ACTIONS(2142), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2142), + [anon_sym_GT_EQ] = ACTIONS(2142), + [anon_sym_QMARK_QMARK] = ACTIONS(2142), + [anon_sym_instanceof] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_satisfies] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(2472), + [sym__ternary_qmark] = ACTIONS(2222), + [sym_html_comment] = ACTIONS(5), + }, + [441] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2868), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_spread_element] = STATE(5770), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(441), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(2474), + [anon_sym_typeof] = ACTIONS(999), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_RBRACK] = ACTIONS(2474), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2476), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1805), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [sym_html_comment] = ACTIONS(5), + }, + [442] = { + [sym_comment] = STATE(442), + [ts_builtin_sym_end] = ACTIONS(2324), [sym_identifier] = ACTIONS(2182), [anon_sym_export] = ACTIONS(2182), [anon_sym_STAR] = ACTIONS(2184), @@ -87485,830 +87530,612 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_satisfies] = ACTIONS(2184), [anon_sym_interface] = ACTIONS(2182), [anon_sym_enum] = ACTIONS(2182), + [sym__automatic_semicolon] = ACTIONS(2186), + [sym__ternary_qmark] = ACTIONS(2186), + [sym_html_comment] = ACTIONS(5), + }, + [443] = { + [sym_comment] = STATE(443), + [ts_builtin_sym_end] = ACTIONS(2344), + [sym_identifier] = ACTIONS(2188), + [anon_sym_export] = ACTIONS(2188), + [anon_sym_STAR] = ACTIONS(2190), + [anon_sym_type] = ACTIONS(2188), + [anon_sym_as] = ACTIONS(2190), + [anon_sym_namespace] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_COMMA] = ACTIONS(2190), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_typeof] = ACTIONS(2188), + [anon_sym_import] = ACTIONS(2188), + [anon_sym_with] = ACTIONS(2188), + [anon_sym_var] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_await] = ACTIONS(2188), + [anon_sym_in] = ACTIONS(2190), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_do] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), + [anon_sym_continue] = ACTIONS(2188), + [anon_sym_debugger] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_throw] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LTtemplate_GT] = ACTIONS(2188), + [anon_sym_GT] = ACTIONS(2190), + [anon_sym_DOT] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_class] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(2188), + [anon_sym_function] = ACTIONS(2188), + [anon_sym_QMARK_DOT] = ACTIONS(2190), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(2188), + [anon_sym_AMP_AMP] = ACTIONS(2190), + [anon_sym_PIPE_PIPE] = ACTIONS(2190), + [anon_sym_GT_GT] = ACTIONS(2190), + [anon_sym_GT_GT_GT] = ACTIONS(2190), + [anon_sym_LT_LT] = ACTIONS(2190), + [anon_sym_AMP] = ACTIONS(2190), + [anon_sym_CARET] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_PLUS] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_SLASH] = ACTIONS(2188), + [anon_sym_PERCENT] = ACTIONS(2190), + [anon_sym_STAR_STAR] = ACTIONS(2190), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_LT_EQ] = ACTIONS(2190), + [anon_sym_EQ_EQ] = ACTIONS(2190), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), + [anon_sym_BANG_EQ] = ACTIONS(2190), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2190), + [anon_sym_GT_EQ] = ACTIONS(2190), + [anon_sym_QMARK_QMARK] = ACTIONS(2190), + [anon_sym_instanceof] = ACTIONS(2190), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_void] = ACTIONS(2188), + [anon_sym_delete] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_number] = ACTIONS(2188), + [sym_private_property_identifier] = ACTIONS(2188), + [sym_this] = ACTIONS(2188), + [sym_super] = ACTIONS(2188), + [sym_true] = ACTIONS(2188), + [sym_false] = ACTIONS(2188), + [sym_null] = ACTIONS(2188), + [sym_undefined] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(2188), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_readonly] = ACTIONS(2188), + [anon_sym_get] = ACTIONS(2188), + [anon_sym_set] = ACTIONS(2188), + [anon_sym_declare] = ACTIONS(2188), + [anon_sym_public] = ACTIONS(2188), + [anon_sym_private] = ACTIONS(2188), + [anon_sym_protected] = ACTIONS(2188), + [anon_sym_override] = ACTIONS(2188), + [anon_sym_module] = ACTIONS(2188), + [anon_sym_any] = ACTIONS(2188), + [anon_sym_number] = ACTIONS(2188), + [anon_sym_boolean] = ACTIONS(2188), + [anon_sym_string] = ACTIONS(2188), + [anon_sym_symbol] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(2188), + [anon_sym_abstract] = ACTIONS(2188), + [anon_sym_satisfies] = ACTIONS(2190), + [anon_sym_interface] = ACTIONS(2188), + [anon_sym_enum] = ACTIONS(2188), [sym__automatic_semicolon] = ACTIONS(2478), - [sym__ternary_qmark] = ACTIONS(2188), + [sym__ternary_qmark] = ACTIONS(2194), [sym_html_comment] = ACTIONS(5), }, - [440] = { - [sym_import] = STATE(4351), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(440), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym__type_query_member_expression] = STATE(3848), - [sym__type_query_subscript_expression] = STATE(3849), - [sym__type_query_call_expression] = STATE(3915), - [sym__type_query_instantiation_expression] = STATE(4026), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [444] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3295), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(444), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym__type_query_member_expression] = STATE(3701), + [sym__type_query_subscript_expression] = STATE(3700), + [sym__type_query_call_expression] = STATE(3761), + [sym__type_query_instantiation_expression] = STATE(3840), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(2480), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [441] = { - [sym_import] = STATE(4351), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(441), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym__type_query_member_expression] = STATE(3848), - [sym__type_query_subscript_expression] = STATE(3849), - [sym__type_query_call_expression] = STATE(3915), - [sym__type_query_instantiation_expression] = STATE(4026), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2482), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [445] = { + [sym_comment] = STATE(445), + [ts_builtin_sym_end] = ACTIONS(2366), + [sym_identifier] = ACTIONS(2152), + [anon_sym_export] = ACTIONS(2152), + [anon_sym_STAR] = ACTIONS(2154), + [anon_sym_type] = ACTIONS(2152), + [anon_sym_as] = ACTIONS(2154), + [anon_sym_namespace] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_COMMA] = ACTIONS(2154), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_typeof] = ACTIONS(2152), + [anon_sym_import] = ACTIONS(2152), + [anon_sym_with] = ACTIONS(2152), + [anon_sym_var] = ACTIONS(2152), + [anon_sym_let] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_switch] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_await] = ACTIONS(2152), + [anon_sym_in] = ACTIONS(2154), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_debugger] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_throw] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_yield] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_LTtemplate_GT] = ACTIONS(2152), + [anon_sym_GT] = ACTIONS(2154), + [anon_sym_DOT] = ACTIONS(2154), + [anon_sym_DQUOTE] = ACTIONS(2152), + [anon_sym_SQUOTE] = ACTIONS(2152), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2152), + [anon_sym_function] = ACTIONS(2152), + [anon_sym_QMARK_DOT] = ACTIONS(2154), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_using] = ACTIONS(2152), + [anon_sym_AMP_AMP] = ACTIONS(2154), + [anon_sym_PIPE_PIPE] = ACTIONS(2154), + [anon_sym_GT_GT] = ACTIONS(2154), + [anon_sym_GT_GT_GT] = ACTIONS(2154), + [anon_sym_LT_LT] = ACTIONS(2154), + [anon_sym_AMP] = ACTIONS(2154), + [anon_sym_CARET] = ACTIONS(2154), + [anon_sym_PIPE] = ACTIONS(2154), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_SLASH] = ACTIONS(2152), + [anon_sym_PERCENT] = ACTIONS(2154), + [anon_sym_STAR_STAR] = ACTIONS(2154), + [anon_sym_LT] = ACTIONS(2152), + [anon_sym_LT_EQ] = ACTIONS(2154), + [anon_sym_EQ_EQ] = ACTIONS(2154), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2154), + [anon_sym_BANG_EQ] = ACTIONS(2154), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2154), + [anon_sym_GT_EQ] = ACTIONS(2154), + [anon_sym_QMARK_QMARK] = ACTIONS(2154), + [anon_sym_instanceof] = ACTIONS(2154), + [anon_sym_TILDE] = ACTIONS(2152), + [anon_sym_void] = ACTIONS(2152), + [anon_sym_delete] = ACTIONS(2152), + [anon_sym_PLUS_PLUS] = ACTIONS(2152), + [anon_sym_DASH_DASH] = ACTIONS(2152), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_BQUOTE] = ACTIONS(2152), + [sym_number] = ACTIONS(2152), + [sym_private_property_identifier] = ACTIONS(2152), + [sym_this] = ACTIONS(2152), + [sym_super] = ACTIONS(2152), + [sym_true] = ACTIONS(2152), + [sym_false] = ACTIONS(2152), + [sym_null] = ACTIONS(2152), + [sym_undefined] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(2152), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_readonly] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2152), + [anon_sym_set] = ACTIONS(2152), + [anon_sym_declare] = ACTIONS(2152), + [anon_sym_public] = ACTIONS(2152), + [anon_sym_private] = ACTIONS(2152), + [anon_sym_protected] = ACTIONS(2152), + [anon_sym_override] = ACTIONS(2152), + [anon_sym_module] = ACTIONS(2152), + [anon_sym_any] = ACTIONS(2152), + [anon_sym_number] = ACTIONS(2152), + [anon_sym_boolean] = ACTIONS(2152), + [anon_sym_string] = ACTIONS(2152), + [anon_sym_symbol] = ACTIONS(2152), + [anon_sym_object] = ACTIONS(2152), + [anon_sym_abstract] = ACTIONS(2152), + [anon_sym_satisfies] = ACTIONS(2154), + [anon_sym_interface] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + [sym__automatic_semicolon] = ACTIONS(2482), + [sym__ternary_qmark] = ACTIONS(2158), [sym_html_comment] = ACTIONS(5), }, - [442] = { - [sym_comment] = STATE(442), - [ts_builtin_sym_end] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2310), - [anon_sym_export] = ACTIONS(2310), - [anon_sym_STAR] = ACTIONS(2312), - [anon_sym_type] = ACTIONS(2310), - [anon_sym_as] = ACTIONS(2312), - [anon_sym_namespace] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_COMMA] = ACTIONS(2312), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_typeof] = ACTIONS(2310), - [anon_sym_import] = ACTIONS(2310), - [anon_sym_with] = ACTIONS(2310), - [anon_sym_var] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2310), - [anon_sym_const] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2310), - [anon_sym_switch] = ACTIONS(2310), - [anon_sym_for] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_await] = ACTIONS(2310), - [anon_sym_in] = ACTIONS(2312), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_do] = ACTIONS(2310), - [anon_sym_try] = 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(2310), - [anon_sym_yield] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LTtemplate_GT] = ACTIONS(2310), - [anon_sym_GT] = ACTIONS(2312), - [anon_sym_DOT] = ACTIONS(2312), - [anon_sym_DQUOTE] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2310), - [anon_sym_class] = ACTIONS(2310), - [anon_sym_async] = ACTIONS(2310), - [anon_sym_function] = ACTIONS(2310), - [anon_sym_QMARK_DOT] = ACTIONS(2312), - [anon_sym_new] = ACTIONS(2310), - [anon_sym_using] = ACTIONS(2310), - [anon_sym_AMP_AMP] = ACTIONS(2312), - [anon_sym_PIPE_PIPE] = ACTIONS(2312), - [anon_sym_GT_GT] = ACTIONS(2312), - [anon_sym_GT_GT_GT] = ACTIONS(2312), - [anon_sym_LT_LT] = ACTIONS(2312), - [anon_sym_AMP] = ACTIONS(2312), - [anon_sym_CARET] = ACTIONS(2312), - [anon_sym_PIPE] = ACTIONS(2312), - [anon_sym_PLUS] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_SLASH] = ACTIONS(2310), - [anon_sym_PERCENT] = ACTIONS(2312), - [anon_sym_STAR_STAR] = ACTIONS(2312), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_LT_EQ] = ACTIONS(2312), - [anon_sym_EQ_EQ] = ACTIONS(2312), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2312), - [anon_sym_BANG_EQ] = ACTIONS(2312), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2312), - [anon_sym_GT_EQ] = ACTIONS(2312), - [anon_sym_QMARK_QMARK] = ACTIONS(2312), - [anon_sym_instanceof] = ACTIONS(2312), - [anon_sym_TILDE] = ACTIONS(2310), - [anon_sym_void] = ACTIONS(2310), - [anon_sym_delete] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2310), - [sym_number] = ACTIONS(2310), - [sym_private_property_identifier] = ACTIONS(2310), - [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(2310), - [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_abstract] = ACTIONS(2310), - [anon_sym_satisfies] = ACTIONS(2312), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2310), + [446] = { + [sym_comment] = STATE(446), + [ts_builtin_sym_end] = ACTIONS(2388), + [sym_identifier] = ACTIONS(2292), + [anon_sym_export] = ACTIONS(2292), + [anon_sym_STAR] = ACTIONS(2294), + [anon_sym_type] = ACTIONS(2292), + [anon_sym_as] = ACTIONS(2294), + [anon_sym_namespace] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_typeof] = ACTIONS(2292), + [anon_sym_import] = ACTIONS(2292), + [anon_sym_with] = ACTIONS(2292), + [anon_sym_var] = ACTIONS(2292), + [anon_sym_let] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_if] = ACTIONS(2292), + [anon_sym_switch] = ACTIONS(2292), + [anon_sym_for] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_await] = ACTIONS(2292), + [anon_sym_in] = ACTIONS(2294), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(2292), + [anon_sym_try] = ACTIONS(2292), + [anon_sym_break] = ACTIONS(2292), + [anon_sym_continue] = ACTIONS(2292), + [anon_sym_debugger] = ACTIONS(2292), + [anon_sym_return] = ACTIONS(2292), + [anon_sym_throw] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_yield] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2292), + [anon_sym_LTtemplate_GT] = ACTIONS(2292), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_DOT] = ACTIONS(2294), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_SQUOTE] = ACTIONS(2292), + [anon_sym_class] = ACTIONS(2292), + [anon_sym_async] = ACTIONS(2292), + [anon_sym_function] = ACTIONS(2292), + [anon_sym_QMARK_DOT] = ACTIONS(2294), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_using] = ACTIONS(2292), + [anon_sym_AMP_AMP] = ACTIONS(2294), + [anon_sym_PIPE_PIPE] = ACTIONS(2294), + [anon_sym_GT_GT] = ACTIONS(2294), + [anon_sym_GT_GT_GT] = ACTIONS(2294), + [anon_sym_LT_LT] = ACTIONS(2294), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_CARET] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_SLASH] = ACTIONS(2292), + [anon_sym_PERCENT] = ACTIONS(2294), + [anon_sym_STAR_STAR] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(2292), + [anon_sym_LT_EQ] = ACTIONS(2294), + [anon_sym_EQ_EQ] = ACTIONS(2294), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2294), + [anon_sym_BANG_EQ] = ACTIONS(2294), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2294), + [anon_sym_GT_EQ] = ACTIONS(2294), + [anon_sym_QMARK_QMARK] = ACTIONS(2294), + [anon_sym_instanceof] = ACTIONS(2294), + [anon_sym_TILDE] = ACTIONS(2292), + [anon_sym_void] = ACTIONS(2292), + [anon_sym_delete] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2292), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2292), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [sym_this] = ACTIONS(2292), + [sym_super] = ACTIONS(2292), + [sym_true] = ACTIONS(2292), + [sym_false] = ACTIONS(2292), + [sym_null] = ACTIONS(2292), + [sym_undefined] = ACTIONS(2292), + [anon_sym_AT] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2292), + [anon_sym_readonly] = ACTIONS(2292), + [anon_sym_get] = ACTIONS(2292), + [anon_sym_set] = ACTIONS(2292), + [anon_sym_declare] = ACTIONS(2292), + [anon_sym_public] = ACTIONS(2292), + [anon_sym_private] = ACTIONS(2292), + [anon_sym_protected] = ACTIONS(2292), + [anon_sym_override] = ACTIONS(2292), + [anon_sym_module] = ACTIONS(2292), + [anon_sym_any] = ACTIONS(2292), + [anon_sym_number] = ACTIONS(2292), + [anon_sym_boolean] = ACTIONS(2292), + [anon_sym_string] = ACTIONS(2292), + [anon_sym_symbol] = ACTIONS(2292), + [anon_sym_object] = ACTIONS(2292), + [anon_sym_abstract] = ACTIONS(2292), + [anon_sym_satisfies] = ACTIONS(2294), + [anon_sym_interface] = ACTIONS(2292), + [anon_sym_enum] = ACTIONS(2292), [sym__automatic_semicolon] = ACTIONS(2484), - [sym__ternary_qmark] = ACTIONS(2316), + [sym__ternary_qmark] = ACTIONS(2298), [sym_html_comment] = ACTIONS(5), }, - [443] = { - [sym_import] = STATE(4411), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2862), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(443), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym__type_query_member_expression] = STATE(3848), - [sym__type_query_subscript_expression] = STATE(3849), - [sym__type_query_call_expression] = STATE(3915), - [sym__type_query_instantiation_expression] = STATE(4026), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [447] = { + [sym_import] = STATE(4233), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2620), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(447), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym__type_query_member_expression] = STATE(3701), + [sym__type_query_subscript_expression] = STATE(3700), + [sym__type_query_call_expression] = STATE(3761), + [sym__type_query_instantiation_expression] = STATE(3840), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(2486), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [444] = { - [sym_comment] = STATE(444), - [ts_builtin_sym_end] = ACTIONS(2248), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_STAR] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_as] = ACTIONS(2246), - [anon_sym_namespace] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_COMMA] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2246), - [anon_sym_import] = ACTIONS(2246), - [anon_sym_with] = ACTIONS(2246), - [anon_sym_var] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2246), - [anon_sym_in] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_debugger] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_throw] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LTtemplate_GT] = ACTIONS(2246), - [anon_sym_GT] = ACTIONS(2246), - [anon_sym_DOT] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_class] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_QMARK_DOT] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(2246), - [anon_sym_AMP_AMP] = ACTIONS(2246), - [anon_sym_PIPE_PIPE] = ACTIONS(2246), - [anon_sym_GT_GT] = ACTIONS(2246), - [anon_sym_GT_GT_GT] = ACTIONS(2246), - [anon_sym_LT_LT] = ACTIONS(2246), - [anon_sym_AMP] = ACTIONS(2246), - [anon_sym_CARET] = ACTIONS(2246), - [anon_sym_PIPE] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_PERCENT] = ACTIONS(2246), - [anon_sym_STAR_STAR] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_LT_EQ] = ACTIONS(2246), - [anon_sym_EQ_EQ] = ACTIONS(2246), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2246), - [anon_sym_BANG_EQ] = ACTIONS(2246), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2246), - [anon_sym_GT_EQ] = ACTIONS(2246), - [anon_sym_QMARK_QMARK] = ACTIONS(2246), - [anon_sym_instanceof] = ACTIONS(2246), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2246), - [anon_sym_delete] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_private_property_identifier] = ACTIONS(2246), - [sym_this] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_undefined] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_readonly] = ACTIONS(2246), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_declare] = ACTIONS(2246), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_override] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_any] = ACTIONS(2246), - [anon_sym_number] = ACTIONS(2246), - [anon_sym_boolean] = ACTIONS(2246), - [anon_sym_string] = ACTIONS(2246), - [anon_sym_symbol] = ACTIONS(2246), - [anon_sym_object] = ACTIONS(2246), - [anon_sym_abstract] = ACTIONS(2246), - [anon_sym_satisfies] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), - [sym__automatic_semicolon] = ACTIONS(2248), - [sym__ternary_qmark] = ACTIONS(2248), - [sym_html_comment] = ACTIONS(5), - }, - [445] = { - [sym_comment] = STATE(445), - [ts_builtin_sym_end] = ACTIONS(2276), - [sym_identifier] = ACTIONS(2274), - [anon_sym_export] = ACTIONS(2274), - [anon_sym_STAR] = ACTIONS(2274), - [anon_sym_type] = ACTIONS(2274), - [anon_sym_as] = ACTIONS(2274), - [anon_sym_namespace] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2274), - [anon_sym_COMMA] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_typeof] = ACTIONS(2274), - [anon_sym_import] = ACTIONS(2274), - [anon_sym_with] = ACTIONS(2274), - [anon_sym_var] = ACTIONS(2274), - [anon_sym_let] = ACTIONS(2274), - [anon_sym_const] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2274), - [anon_sym_if] = ACTIONS(2274), - [anon_sym_switch] = ACTIONS(2274), - [anon_sym_for] = ACTIONS(2274), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_await] = ACTIONS(2274), - [anon_sym_in] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2274), - [anon_sym_do] = ACTIONS(2274), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_break] = ACTIONS(2274), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_debugger] = ACTIONS(2274), - [anon_sym_return] = ACTIONS(2274), - [anon_sym_throw] = ACTIONS(2274), - [anon_sym_SEMI] = ACTIONS(2274), - [anon_sym_yield] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_LTtemplate_GT] = ACTIONS(2274), - [anon_sym_GT] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [anon_sym_SQUOTE] = ACTIONS(2274), - [anon_sym_class] = ACTIONS(2274), - [anon_sym_async] = ACTIONS(2274), - [anon_sym_function] = ACTIONS(2274), - [anon_sym_QMARK_DOT] = ACTIONS(2274), - [anon_sym_new] = ACTIONS(2274), - [anon_sym_using] = ACTIONS(2274), - [anon_sym_AMP_AMP] = ACTIONS(2274), - [anon_sym_PIPE_PIPE] = ACTIONS(2274), - [anon_sym_GT_GT] = ACTIONS(2274), - [anon_sym_GT_GT_GT] = ACTIONS(2274), - [anon_sym_LT_LT] = ACTIONS(2274), - [anon_sym_AMP] = ACTIONS(2274), - [anon_sym_CARET] = ACTIONS(2274), - [anon_sym_PIPE] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_SLASH] = ACTIONS(2274), - [anon_sym_PERCENT] = ACTIONS(2274), - [anon_sym_STAR_STAR] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_LT_EQ] = ACTIONS(2274), - [anon_sym_EQ_EQ] = ACTIONS(2274), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ] = ACTIONS(2274), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2274), - [anon_sym_GT_EQ] = ACTIONS(2274), - [anon_sym_QMARK_QMARK] = ACTIONS(2274), - [anon_sym_instanceof] = ACTIONS(2274), - [anon_sym_TILDE] = ACTIONS(2274), - [anon_sym_void] = ACTIONS(2274), - [anon_sym_delete] = ACTIONS(2274), - [anon_sym_PLUS_PLUS] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2274), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2274), - [sym_number] = ACTIONS(2274), - [sym_private_property_identifier] = ACTIONS(2274), - [sym_this] = ACTIONS(2274), - [sym_super] = ACTIONS(2274), - [sym_true] = ACTIONS(2274), - [sym_false] = ACTIONS(2274), - [sym_null] = ACTIONS(2274), - [sym_undefined] = ACTIONS(2274), - [anon_sym_AT] = ACTIONS(2274), - [anon_sym_static] = ACTIONS(2274), - [anon_sym_readonly] = ACTIONS(2274), - [anon_sym_get] = ACTIONS(2274), - [anon_sym_set] = ACTIONS(2274), - [anon_sym_declare] = ACTIONS(2274), - [anon_sym_public] = ACTIONS(2274), - [anon_sym_private] = ACTIONS(2274), - [anon_sym_protected] = ACTIONS(2274), - [anon_sym_override] = ACTIONS(2274), - [anon_sym_module] = ACTIONS(2274), - [anon_sym_any] = ACTIONS(2274), - [anon_sym_number] = ACTIONS(2274), - [anon_sym_boolean] = ACTIONS(2274), - [anon_sym_string] = ACTIONS(2274), - [anon_sym_symbol] = ACTIONS(2274), - [anon_sym_object] = ACTIONS(2274), - [anon_sym_abstract] = ACTIONS(2274), - [anon_sym_satisfies] = ACTIONS(2274), - [anon_sym_interface] = ACTIONS(2274), - [anon_sym_enum] = ACTIONS(2274), - [sym__automatic_semicolon] = ACTIONS(2276), - [sym__ternary_qmark] = ACTIONS(2276), - [sym_html_comment] = ACTIONS(5), - }, - [446] = { - [sym_import] = STATE(4351), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(446), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym__type_query_member_expression] = STATE(3848), - [sym__type_query_subscript_expression] = STATE(3849), - [sym__type_query_call_expression] = STATE(3915), - [sym__type_query_instantiation_expression] = STATE(4026), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2488), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [447] = { - [sym_import] = STATE(4341), - [sym_expression_statement] = STATE(472), - [sym_empty_statement] = STATE(472), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2653), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6726), - [sym_string] = STATE(3425), - [sym_comment] = STATE(447), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [448] = { + [sym_import] = STATE(4300), + [sym_expression_statement] = STATE(477), + [sym_empty_statement] = STATE(477), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2526), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6496), + [sym_string] = STATE(3280), + [sym_comment] = STATE(448), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -88318,9 +88145,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -88343,511 +88170,293 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), - [sym_html_comment] = ACTIONS(5), - }, - [448] = { - [sym_comment] = STATE(448), - [ts_builtin_sym_end] = ACTIONS(2206), - [sym_identifier] = ACTIONS(2204), - [anon_sym_export] = ACTIONS(2204), - [anon_sym_STAR] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_as] = ACTIONS(2204), - [anon_sym_namespace] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_COMMA] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_typeof] = ACTIONS(2204), - [anon_sym_import] = ACTIONS(2204), - [anon_sym_with] = ACTIONS(2204), - [anon_sym_var] = ACTIONS(2204), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_switch] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_await] = ACTIONS(2204), - [anon_sym_in] = ACTIONS(2204), - [anon_sym_while] = ACTIONS(2204), - [anon_sym_do] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_debugger] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_throw] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_yield] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_LTtemplate_GT] = ACTIONS(2204), - [anon_sym_GT] = ACTIONS(2204), - [anon_sym_DOT] = ACTIONS(2204), - [anon_sym_DQUOTE] = ACTIONS(2204), - [anon_sym_SQUOTE] = ACTIONS(2204), - [anon_sym_class] = ACTIONS(2204), - [anon_sym_async] = ACTIONS(2204), - [anon_sym_function] = ACTIONS(2204), - [anon_sym_QMARK_DOT] = ACTIONS(2204), - [anon_sym_new] = ACTIONS(2204), - [anon_sym_using] = ACTIONS(2204), - [anon_sym_AMP_AMP] = ACTIONS(2204), - [anon_sym_PIPE_PIPE] = ACTIONS(2204), - [anon_sym_GT_GT] = ACTIONS(2204), - [anon_sym_GT_GT_GT] = ACTIONS(2204), - [anon_sym_LT_LT] = ACTIONS(2204), - [anon_sym_AMP] = ACTIONS(2204), - [anon_sym_CARET] = ACTIONS(2204), - [anon_sym_PIPE] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_PERCENT] = ACTIONS(2204), - [anon_sym_STAR_STAR] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_LT_EQ] = ACTIONS(2204), - [anon_sym_EQ_EQ] = ACTIONS(2204), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2204), - [anon_sym_BANG_EQ] = ACTIONS(2204), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2204), - [anon_sym_GT_EQ] = ACTIONS(2204), - [anon_sym_QMARK_QMARK] = ACTIONS(2204), - [anon_sym_instanceof] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_void] = ACTIONS(2204), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2204), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2204), - [sym_number] = ACTIONS(2204), - [sym_private_property_identifier] = ACTIONS(2204), - [sym_this] = ACTIONS(2204), - [sym_super] = ACTIONS(2204), - [sym_true] = ACTIONS(2204), - [sym_false] = ACTIONS(2204), - [sym_null] = ACTIONS(2204), - [sym_undefined] = ACTIONS(2204), - [anon_sym_AT] = ACTIONS(2204), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_readonly] = ACTIONS(2204), - [anon_sym_get] = ACTIONS(2204), - [anon_sym_set] = ACTIONS(2204), - [anon_sym_declare] = ACTIONS(2204), - [anon_sym_public] = ACTIONS(2204), - [anon_sym_private] = ACTIONS(2204), - [anon_sym_protected] = ACTIONS(2204), - [anon_sym_override] = ACTIONS(2204), - [anon_sym_module] = ACTIONS(2204), - [anon_sym_any] = ACTIONS(2204), - [anon_sym_number] = ACTIONS(2204), - [anon_sym_boolean] = ACTIONS(2204), - [anon_sym_string] = ACTIONS(2204), - [anon_sym_symbol] = ACTIONS(2204), - [anon_sym_object] = ACTIONS(2204), - [anon_sym_abstract] = ACTIONS(2204), - [anon_sym_satisfies] = ACTIONS(2204), - [anon_sym_interface] = ACTIONS(2204), - [anon_sym_enum] = ACTIONS(2204), - [sym__automatic_semicolon] = ACTIONS(2206), - [sym__ternary_qmark] = ACTIONS(2206), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, [449] = { [sym_comment] = STATE(449), - [ts_builtin_sym_end] = ACTIONS(2400), - [sym_identifier] = ACTIONS(2302), - [anon_sym_export] = ACTIONS(2302), - [anon_sym_STAR] = ACTIONS(2304), - [anon_sym_type] = ACTIONS(2302), - [anon_sym_as] = ACTIONS(2304), - [anon_sym_namespace] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_COMMA] = ACTIONS(2304), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_typeof] = ACTIONS(2302), - [anon_sym_import] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(2302), - [anon_sym_var] = ACTIONS(2302), - [anon_sym_let] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_await] = ACTIONS(2302), - [anon_sym_in] = ACTIONS(2304), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_debugger] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_yield] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_LTtemplate_GT] = ACTIONS(2302), - [anon_sym_GT] = ACTIONS(2304), - [anon_sym_DOT] = ACTIONS(2304), - [anon_sym_DQUOTE] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_function] = ACTIONS(2302), - [anon_sym_QMARK_DOT] = ACTIONS(2304), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), - [anon_sym_AMP_AMP] = ACTIONS(2304), - [anon_sym_PIPE_PIPE] = ACTIONS(2304), - [anon_sym_GT_GT] = ACTIONS(2304), - [anon_sym_GT_GT_GT] = ACTIONS(2304), - [anon_sym_LT_LT] = ACTIONS(2304), - [anon_sym_AMP] = ACTIONS(2304), - [anon_sym_CARET] = ACTIONS(2304), - [anon_sym_PIPE] = ACTIONS(2304), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_SLASH] = ACTIONS(2302), - [anon_sym_PERCENT] = ACTIONS(2304), - [anon_sym_STAR_STAR] = ACTIONS(2304), - [anon_sym_LT] = ACTIONS(2302), - [anon_sym_LT_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ] = ACTIONS(2304), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ] = ACTIONS(2304), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2304), - [anon_sym_GT_EQ] = ACTIONS(2304), - [anon_sym_QMARK_QMARK] = ACTIONS(2304), - [anon_sym_instanceof] = ACTIONS(2304), - [anon_sym_TILDE] = ACTIONS(2302), - [anon_sym_void] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2302), - [sym_number] = ACTIONS(2302), - [sym_private_property_identifier] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_super] = ACTIONS(2302), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_undefined] = ACTIONS(2302), - [anon_sym_AT] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_readonly] = ACTIONS(2302), - [anon_sym_get] = ACTIONS(2302), - [anon_sym_set] = ACTIONS(2302), - [anon_sym_declare] = ACTIONS(2302), - [anon_sym_public] = ACTIONS(2302), - [anon_sym_private] = ACTIONS(2302), - [anon_sym_protected] = ACTIONS(2302), - [anon_sym_override] = ACTIONS(2302), - [anon_sym_module] = ACTIONS(2302), - [anon_sym_any] = ACTIONS(2302), - [anon_sym_number] = ACTIONS(2302), - [anon_sym_boolean] = ACTIONS(2302), - [anon_sym_string] = ACTIONS(2302), - [anon_sym_symbol] = ACTIONS(2302), - [anon_sym_object] = ACTIONS(2302), - [anon_sym_abstract] = ACTIONS(2302), - [anon_sym_satisfies] = ACTIONS(2304), - [anon_sym_interface] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [sym__automatic_semicolon] = ACTIONS(2490), - [sym__ternary_qmark] = ACTIONS(2308), + [ts_builtin_sym_end] = ACTIONS(2262), + [sym_identifier] = ACTIONS(2260), + [anon_sym_export] = ACTIONS(2260), + [anon_sym_STAR] = ACTIONS(2260), + [anon_sym_type] = ACTIONS(2260), + [anon_sym_as] = ACTIONS(2260), + [anon_sym_namespace] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_COMMA] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_typeof] = ACTIONS(2260), + [anon_sym_import] = ACTIONS(2260), + [anon_sym_with] = ACTIONS(2260), + [anon_sym_var] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [anon_sym_BANG] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_switch] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_await] = ACTIONS(2260), + [anon_sym_in] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), + [anon_sym_try] = ACTIONS(2260), + [anon_sym_break] = ACTIONS(2260), + [anon_sym_continue] = ACTIONS(2260), + [anon_sym_debugger] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_throw] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_yield] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_LTtemplate_GT] = ACTIONS(2260), + [anon_sym_GT] = ACTIONS(2260), + [anon_sym_DOT] = ACTIONS(2260), + [anon_sym_DQUOTE] = ACTIONS(2260), + [anon_sym_SQUOTE] = ACTIONS(2260), + [anon_sym_class] = ACTIONS(2260), + [anon_sym_async] = ACTIONS(2260), + [anon_sym_function] = ACTIONS(2260), + [anon_sym_QMARK_DOT] = ACTIONS(2260), + [anon_sym_new] = ACTIONS(2260), + [anon_sym_using] = ACTIONS(2260), + [anon_sym_AMP_AMP] = ACTIONS(2260), + [anon_sym_PIPE_PIPE] = ACTIONS(2260), + [anon_sym_GT_GT] = ACTIONS(2260), + [anon_sym_GT_GT_GT] = ACTIONS(2260), + [anon_sym_LT_LT] = ACTIONS(2260), + [anon_sym_AMP] = ACTIONS(2260), + [anon_sym_CARET] = ACTIONS(2260), + [anon_sym_PIPE] = ACTIONS(2260), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2260), + [anon_sym_PERCENT] = ACTIONS(2260), + [anon_sym_STAR_STAR] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2260), + [anon_sym_LT_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ] = ACTIONS(2260), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2260), + [anon_sym_BANG_EQ] = ACTIONS(2260), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2260), + [anon_sym_GT_EQ] = ACTIONS(2260), + [anon_sym_QMARK_QMARK] = ACTIONS(2260), + [anon_sym_instanceof] = ACTIONS(2260), + [anon_sym_TILDE] = ACTIONS(2260), + [anon_sym_void] = ACTIONS(2260), + [anon_sym_delete] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2260), + [sym_number] = ACTIONS(2260), + [sym_private_property_identifier] = ACTIONS(2260), + [sym_this] = ACTIONS(2260), + [sym_super] = ACTIONS(2260), + [sym_true] = ACTIONS(2260), + [sym_false] = ACTIONS(2260), + [sym_null] = ACTIONS(2260), + [sym_undefined] = ACTIONS(2260), + [anon_sym_AT] = ACTIONS(2260), + [anon_sym_static] = ACTIONS(2260), + [anon_sym_readonly] = ACTIONS(2260), + [anon_sym_get] = ACTIONS(2260), + [anon_sym_set] = ACTIONS(2260), + [anon_sym_declare] = ACTIONS(2260), + [anon_sym_public] = ACTIONS(2260), + [anon_sym_private] = ACTIONS(2260), + [anon_sym_protected] = ACTIONS(2260), + [anon_sym_override] = ACTIONS(2260), + [anon_sym_module] = ACTIONS(2260), + [anon_sym_any] = ACTIONS(2260), + [anon_sym_number] = ACTIONS(2260), + [anon_sym_boolean] = ACTIONS(2260), + [anon_sym_string] = ACTIONS(2260), + [anon_sym_symbol] = ACTIONS(2260), + [anon_sym_object] = ACTIONS(2260), + [anon_sym_abstract] = ACTIONS(2260), + [anon_sym_satisfies] = ACTIONS(2260), + [anon_sym_interface] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), + [sym__automatic_semicolon] = ACTIONS(2262), + [sym__ternary_qmark] = ACTIONS(2262), [sym_html_comment] = ACTIONS(5), }, [450] = { [sym_comment] = STATE(450), - [ts_builtin_sym_end] = ACTIONS(2404), - [sym_identifier] = ACTIONS(2280), - [anon_sym_export] = ACTIONS(2280), - [anon_sym_STAR] = ACTIONS(2282), - [anon_sym_type] = ACTIONS(2280), - [anon_sym_as] = ACTIONS(2282), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_COMMA] = ACTIONS(2282), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_typeof] = ACTIONS(2280), - [anon_sym_import] = ACTIONS(2280), - [anon_sym_with] = ACTIONS(2280), - [anon_sym_var] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_switch] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_await] = ACTIONS(2280), - [anon_sym_in] = ACTIONS(2282), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_do] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_debugger] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_throw] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_yield] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_LTtemplate_GT] = ACTIONS(2280), - [anon_sym_GT] = ACTIONS(2282), - [anon_sym_DOT] = ACTIONS(2282), - [anon_sym_DQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_class] = ACTIONS(2280), - [anon_sym_async] = ACTIONS(2280), - [anon_sym_function] = ACTIONS(2280), - [anon_sym_QMARK_DOT] = ACTIONS(2282), - [anon_sym_new] = ACTIONS(2280), - [anon_sym_using] = ACTIONS(2280), - [anon_sym_AMP_AMP] = ACTIONS(2282), - [anon_sym_PIPE_PIPE] = ACTIONS(2282), - [anon_sym_GT_GT] = ACTIONS(2282), - [anon_sym_GT_GT_GT] = ACTIONS(2282), - [anon_sym_LT_LT] = ACTIONS(2282), - [anon_sym_AMP] = ACTIONS(2282), - [anon_sym_CARET] = ACTIONS(2282), - [anon_sym_PIPE] = ACTIONS(2282), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_SLASH] = ACTIONS(2280), - [anon_sym_PERCENT] = ACTIONS(2282), - [anon_sym_STAR_STAR] = ACTIONS(2282), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_LT_EQ] = ACTIONS(2282), - [anon_sym_EQ_EQ] = ACTIONS(2282), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2282), - [anon_sym_BANG_EQ] = ACTIONS(2282), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2282), - [anon_sym_GT_EQ] = ACTIONS(2282), - [anon_sym_QMARK_QMARK] = ACTIONS(2282), - [anon_sym_instanceof] = ACTIONS(2282), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_void] = ACTIONS(2280), - [anon_sym_delete] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2280), - [sym_number] = ACTIONS(2280), - [sym_private_property_identifier] = ACTIONS(2280), - [sym_this] = ACTIONS(2280), - [sym_super] = ACTIONS(2280), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_undefined] = ACTIONS(2280), - [anon_sym_AT] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_readonly] = ACTIONS(2280), - [anon_sym_get] = ACTIONS(2280), - [anon_sym_set] = ACTIONS(2280), - [anon_sym_declare] = ACTIONS(2280), - [anon_sym_public] = ACTIONS(2280), - [anon_sym_private] = ACTIONS(2280), - [anon_sym_protected] = ACTIONS(2280), - [anon_sym_override] = ACTIONS(2280), - [anon_sym_module] = ACTIONS(2280), - [anon_sym_any] = ACTIONS(2280), - [anon_sym_number] = ACTIONS(2280), - [anon_sym_boolean] = ACTIONS(2280), - [anon_sym_string] = ACTIONS(2280), - [anon_sym_symbol] = ACTIONS(2280), - [anon_sym_object] = ACTIONS(2280), - [anon_sym_abstract] = ACTIONS(2280), - [anon_sym_satisfies] = ACTIONS(2282), - [anon_sym_interface] = ACTIONS(2280), - [anon_sym_enum] = ACTIONS(2280), - [sym__automatic_semicolon] = ACTIONS(2492), - [sym__ternary_qmark] = ACTIONS(2286), + [ts_builtin_sym_end] = ACTIONS(2362), + [sym_identifier] = ACTIONS(2234), + [anon_sym_export] = ACTIONS(2234), + [anon_sym_STAR] = ACTIONS(2236), + [anon_sym_type] = ACTIONS(2234), + [anon_sym_as] = ACTIONS(2236), + [anon_sym_namespace] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_COMMA] = ACTIONS(2236), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_typeof] = ACTIONS(2234), + [anon_sym_import] = ACTIONS(2234), + [anon_sym_with] = ACTIONS(2234), + [anon_sym_var] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [anon_sym_BANG] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_switch] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_await] = ACTIONS(2234), + [anon_sym_in] = ACTIONS(2236), + [anon_sym_while] = ACTIONS(2234), + [anon_sym_do] = ACTIONS(2234), + [anon_sym_try] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_debugger] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_throw] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_yield] = ACTIONS(2234), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_LTtemplate_GT] = ACTIONS(2234), + [anon_sym_GT] = ACTIONS(2236), + [anon_sym_DOT] = ACTIONS(2236), + [anon_sym_DQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_class] = ACTIONS(2234), + [anon_sym_async] = ACTIONS(2234), + [anon_sym_function] = ACTIONS(2234), + [anon_sym_QMARK_DOT] = ACTIONS(2236), + [anon_sym_new] = ACTIONS(2234), + [anon_sym_using] = ACTIONS(2234), + [anon_sym_AMP_AMP] = ACTIONS(2236), + [anon_sym_PIPE_PIPE] = ACTIONS(2236), + [anon_sym_GT_GT] = ACTIONS(2236), + [anon_sym_GT_GT_GT] = ACTIONS(2236), + [anon_sym_LT_LT] = ACTIONS(2236), + [anon_sym_AMP] = ACTIONS(2236), + [anon_sym_CARET] = ACTIONS(2236), + [anon_sym_PIPE] = ACTIONS(2236), + [anon_sym_PLUS] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_PERCENT] = ACTIONS(2236), + [anon_sym_STAR_STAR] = ACTIONS(2236), + [anon_sym_LT] = ACTIONS(2234), + [anon_sym_LT_EQ] = ACTIONS(2236), + [anon_sym_EQ_EQ] = ACTIONS(2236), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2236), + [anon_sym_BANG_EQ] = ACTIONS(2236), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2236), + [anon_sym_GT_EQ] = ACTIONS(2236), + [anon_sym_QMARK_QMARK] = ACTIONS(2236), + [anon_sym_instanceof] = ACTIONS(2236), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_void] = ACTIONS(2234), + [anon_sym_delete] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2234), + [sym_number] = ACTIONS(2234), + [sym_private_property_identifier] = ACTIONS(2234), + [sym_this] = ACTIONS(2234), + [sym_super] = ACTIONS(2234), + [sym_true] = ACTIONS(2234), + [sym_false] = ACTIONS(2234), + [sym_null] = ACTIONS(2234), + [sym_undefined] = ACTIONS(2234), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_static] = ACTIONS(2234), + [anon_sym_readonly] = ACTIONS(2234), + [anon_sym_get] = ACTIONS(2234), + [anon_sym_set] = ACTIONS(2234), + [anon_sym_declare] = ACTIONS(2234), + [anon_sym_public] = ACTIONS(2234), + [anon_sym_private] = ACTIONS(2234), + [anon_sym_protected] = ACTIONS(2234), + [anon_sym_override] = ACTIONS(2234), + [anon_sym_module] = ACTIONS(2234), + [anon_sym_any] = ACTIONS(2234), + [anon_sym_number] = ACTIONS(2234), + [anon_sym_boolean] = ACTIONS(2234), + [anon_sym_string] = ACTIONS(2234), + [anon_sym_symbol] = ACTIONS(2234), + [anon_sym_object] = ACTIONS(2234), + [anon_sym_abstract] = ACTIONS(2234), + [anon_sym_satisfies] = ACTIONS(2236), + [anon_sym_interface] = ACTIONS(2234), + [anon_sym_enum] = ACTIONS(2234), + [sym__automatic_semicolon] = ACTIONS(2488), + [sym__ternary_qmark] = ACTIONS(2240), [sym_html_comment] = ACTIONS(5), }, [451] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3295), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(451), - [ts_builtin_sym_end] = ACTIONS(2162), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_STAR] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_as] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_in] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_GT] = ACTIONS(2160), - [anon_sym_DOT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_QMARK_DOT] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [anon_sym_GT_GT] = ACTIONS(2160), - [anon_sym_GT_GT_GT] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_PIPE] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_PERCENT] = ACTIONS(2160), - [anon_sym_STAR_STAR] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(2160), - [anon_sym_QMARK_QMARK] = ACTIONS(2160), - [anon_sym_instanceof] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_satisfies] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym__automatic_semicolon] = ACTIONS(2162), - [sym__ternary_qmark] = ACTIONS(2162), - [sym_html_comment] = ACTIONS(5), - }, - [452] = { - [sym_import] = STATE(4359), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3455), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(452), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym__type_query_member_expression] = STATE(3848), - [sym__type_query_subscript_expression] = STATE(3849), - [sym__type_query_call_expression] = STATE(3915), - [sym__type_query_instantiation_expression] = STATE(4026), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2494), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym__type_query_member_expression] = STATE(3701), + [sym__type_query_subscript_expression] = STATE(3700), + [sym__type_query_call_expression] = STATE(3761), + [sym__type_query_instantiation_expression] = STATE(3840), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2490), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), [anon_sym_namespace] = ACTIONS(1097), @@ -88870,13 +88479,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -88906,413 +88515,522 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, + [452] = { + [sym_comment] = STATE(452), + [ts_builtin_sym_end] = ACTIONS(2376), + [sym_identifier] = ACTIONS(2264), + [anon_sym_export] = ACTIONS(2264), + [anon_sym_STAR] = ACTIONS(2266), + [anon_sym_type] = ACTIONS(2264), + [anon_sym_as] = ACTIONS(2266), + [anon_sym_namespace] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2264), + [anon_sym_COMMA] = ACTIONS(2266), + [anon_sym_RBRACE] = ACTIONS(2264), + [anon_sym_typeof] = ACTIONS(2264), + [anon_sym_import] = ACTIONS(2264), + [anon_sym_with] = ACTIONS(2264), + [anon_sym_var] = ACTIONS(2264), + [anon_sym_let] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_BANG] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_switch] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2264), + [anon_sym_await] = ACTIONS(2264), + [anon_sym_in] = ACTIONS(2266), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2264), + [anon_sym_try] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_debugger] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_throw] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym_yield] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_LTtemplate_GT] = ACTIONS(2264), + [anon_sym_GT] = ACTIONS(2266), + [anon_sym_DOT] = ACTIONS(2266), + [anon_sym_DQUOTE] = ACTIONS(2264), + [anon_sym_SQUOTE] = ACTIONS(2264), + [anon_sym_class] = ACTIONS(2264), + [anon_sym_async] = ACTIONS(2264), + [anon_sym_function] = ACTIONS(2264), + [anon_sym_QMARK_DOT] = ACTIONS(2266), + [anon_sym_new] = ACTIONS(2264), + [anon_sym_using] = ACTIONS(2264), + [anon_sym_AMP_AMP] = ACTIONS(2266), + [anon_sym_PIPE_PIPE] = ACTIONS(2266), + [anon_sym_GT_GT] = ACTIONS(2266), + [anon_sym_GT_GT_GT] = ACTIONS(2266), + [anon_sym_LT_LT] = ACTIONS(2266), + [anon_sym_AMP] = ACTIONS(2266), + [anon_sym_CARET] = ACTIONS(2266), + [anon_sym_PIPE] = ACTIONS(2266), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_SLASH] = ACTIONS(2264), + [anon_sym_PERCENT] = ACTIONS(2266), + [anon_sym_STAR_STAR] = ACTIONS(2266), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_LT_EQ] = ACTIONS(2266), + [anon_sym_EQ_EQ] = ACTIONS(2266), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2266), + [anon_sym_BANG_EQ] = ACTIONS(2266), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2266), + [anon_sym_GT_EQ] = ACTIONS(2266), + [anon_sym_QMARK_QMARK] = ACTIONS(2266), + [anon_sym_instanceof] = ACTIONS(2266), + [anon_sym_TILDE] = ACTIONS(2264), + [anon_sym_void] = ACTIONS(2264), + [anon_sym_delete] = ACTIONS(2264), + [anon_sym_PLUS_PLUS] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(2264), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2264), + [sym_number] = ACTIONS(2264), + [sym_private_property_identifier] = ACTIONS(2264), + [sym_this] = ACTIONS(2264), + [sym_super] = ACTIONS(2264), + [sym_true] = ACTIONS(2264), + [sym_false] = ACTIONS(2264), + [sym_null] = ACTIONS(2264), + [sym_undefined] = ACTIONS(2264), + [anon_sym_AT] = ACTIONS(2264), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_readonly] = ACTIONS(2264), + [anon_sym_get] = ACTIONS(2264), + [anon_sym_set] = ACTIONS(2264), + [anon_sym_declare] = ACTIONS(2264), + [anon_sym_public] = ACTIONS(2264), + [anon_sym_private] = ACTIONS(2264), + [anon_sym_protected] = ACTIONS(2264), + [anon_sym_override] = ACTIONS(2264), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_any] = ACTIONS(2264), + [anon_sym_number] = ACTIONS(2264), + [anon_sym_boolean] = ACTIONS(2264), + [anon_sym_string] = ACTIONS(2264), + [anon_sym_symbol] = ACTIONS(2264), + [anon_sym_object] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2264), + [anon_sym_satisfies] = ACTIONS(2266), + [anon_sym_interface] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + [sym__automatic_semicolon] = ACTIONS(2492), + [sym__ternary_qmark] = ACTIONS(2270), + [sym_html_comment] = ACTIONS(5), + }, [453] = { - [sym_import] = STATE(4451), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(2982), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), [sym_comment] = STATE(453), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym__type_query_member_expression] = STATE(3848), - [sym__type_query_subscript_expression] = STATE(3849), - [sym__type_query_call_expression] = STATE(3915), - [sym__type_query_instantiation_expression] = STATE(4026), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(2496), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [ts_builtin_sym_end] = ACTIONS(2380), + [sym_identifier] = ACTIONS(2272), + [anon_sym_export] = ACTIONS(2272), + [anon_sym_STAR] = ACTIONS(2274), + [anon_sym_type] = ACTIONS(2272), + [anon_sym_as] = ACTIONS(2274), + [anon_sym_namespace] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_COMMA] = ACTIONS(2274), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_typeof] = ACTIONS(2272), + [anon_sym_import] = ACTIONS(2272), + [anon_sym_with] = ACTIONS(2272), + [anon_sym_var] = ACTIONS(2272), + [anon_sym_let] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [anon_sym_BANG] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_switch] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_await] = ACTIONS(2272), + [anon_sym_in] = ACTIONS(2274), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_debugger] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_throw] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_yield] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_LTtemplate_GT] = ACTIONS(2272), + [anon_sym_GT] = ACTIONS(2274), + [anon_sym_DOT] = ACTIONS(2274), + [anon_sym_DQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_class] = ACTIONS(2272), + [anon_sym_async] = ACTIONS(2272), + [anon_sym_function] = ACTIONS(2272), + [anon_sym_QMARK_DOT] = ACTIONS(2274), + [anon_sym_new] = ACTIONS(2272), + [anon_sym_using] = ACTIONS(2272), + [anon_sym_AMP_AMP] = ACTIONS(2274), + [anon_sym_PIPE_PIPE] = ACTIONS(2274), + [anon_sym_GT_GT] = ACTIONS(2274), + [anon_sym_GT_GT_GT] = ACTIONS(2274), + [anon_sym_LT_LT] = ACTIONS(2274), + [anon_sym_AMP] = ACTIONS(2274), + [anon_sym_CARET] = ACTIONS(2274), + [anon_sym_PIPE] = ACTIONS(2274), + [anon_sym_PLUS] = ACTIONS(2272), + [anon_sym_DASH] = ACTIONS(2272), + [anon_sym_SLASH] = ACTIONS(2272), + [anon_sym_PERCENT] = ACTIONS(2274), + [anon_sym_STAR_STAR] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_LT_EQ] = ACTIONS(2274), + [anon_sym_EQ_EQ] = ACTIONS(2274), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2274), + [anon_sym_BANG_EQ] = ACTIONS(2274), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2274), + [anon_sym_GT_EQ] = ACTIONS(2274), + [anon_sym_QMARK_QMARK] = ACTIONS(2274), + [anon_sym_instanceof] = ACTIONS(2274), + [anon_sym_TILDE] = ACTIONS(2272), + [anon_sym_void] = ACTIONS(2272), + [anon_sym_delete] = ACTIONS(2272), + [anon_sym_PLUS_PLUS] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2272), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2272), + [sym_number] = ACTIONS(2272), + [sym_private_property_identifier] = ACTIONS(2272), + [sym_this] = ACTIONS(2272), + [sym_super] = ACTIONS(2272), + [sym_true] = ACTIONS(2272), + [sym_false] = ACTIONS(2272), + [sym_null] = ACTIONS(2272), + [sym_undefined] = ACTIONS(2272), + [anon_sym_AT] = ACTIONS(2272), + [anon_sym_static] = ACTIONS(2272), + [anon_sym_readonly] = ACTIONS(2272), + [anon_sym_get] = ACTIONS(2272), + [anon_sym_set] = ACTIONS(2272), + [anon_sym_declare] = ACTIONS(2272), + [anon_sym_public] = ACTIONS(2272), + [anon_sym_private] = ACTIONS(2272), + [anon_sym_protected] = ACTIONS(2272), + [anon_sym_override] = ACTIONS(2272), + [anon_sym_module] = ACTIONS(2272), + [anon_sym_any] = ACTIONS(2272), + [anon_sym_number] = ACTIONS(2272), + [anon_sym_boolean] = ACTIONS(2272), + [anon_sym_string] = ACTIONS(2272), + [anon_sym_symbol] = ACTIONS(2272), + [anon_sym_object] = ACTIONS(2272), + [anon_sym_abstract] = ACTIONS(2272), + [anon_sym_satisfies] = ACTIONS(2274), + [anon_sym_interface] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), + [sym__automatic_semicolon] = ACTIONS(2494), + [sym__ternary_qmark] = ACTIONS(2278), [sym_html_comment] = ACTIONS(5), }, [454] = { [sym_comment] = STATE(454), - [ts_builtin_sym_end] = ACTIONS(2428), - [sym_identifier] = ACTIONS(2168), - [anon_sym_export] = ACTIONS(2168), - [anon_sym_STAR] = ACTIONS(2170), - [anon_sym_type] = ACTIONS(2168), - [anon_sym_as] = ACTIONS(2170), - [anon_sym_namespace] = ACTIONS(2168), - [anon_sym_LBRACE] = ACTIONS(2168), - [anon_sym_COMMA] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2168), - [anon_sym_typeof] = ACTIONS(2168), - [anon_sym_import] = ACTIONS(2168), - [anon_sym_with] = ACTIONS(2168), - [anon_sym_var] = ACTIONS(2168), - [anon_sym_let] = ACTIONS(2168), - [anon_sym_const] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(2168), - [anon_sym_if] = ACTIONS(2168), - [anon_sym_switch] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_await] = ACTIONS(2168), - [anon_sym_in] = ACTIONS(2170), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_do] = ACTIONS(2168), - [anon_sym_try] = ACTIONS(2168), - [anon_sym_break] = ACTIONS(2168), - [anon_sym_continue] = ACTIONS(2168), - [anon_sym_debugger] = ACTIONS(2168), - [anon_sym_return] = ACTIONS(2168), - [anon_sym_throw] = ACTIONS(2168), - [anon_sym_SEMI] = ACTIONS(2168), - [anon_sym_yield] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_LTtemplate_GT] = ACTIONS(2168), - [anon_sym_GT] = ACTIONS(2170), - [anon_sym_DOT] = ACTIONS(2170), - [anon_sym_DQUOTE] = ACTIONS(2168), - [anon_sym_SQUOTE] = ACTIONS(2168), - [anon_sym_class] = ACTIONS(2168), - [anon_sym_async] = ACTIONS(2168), - [anon_sym_function] = ACTIONS(2168), - [anon_sym_QMARK_DOT] = ACTIONS(2170), - [anon_sym_new] = ACTIONS(2168), - [anon_sym_using] = ACTIONS(2168), - [anon_sym_AMP_AMP] = ACTIONS(2170), - [anon_sym_PIPE_PIPE] = ACTIONS(2170), - [anon_sym_GT_GT] = ACTIONS(2170), - [anon_sym_GT_GT_GT] = ACTIONS(2170), - [anon_sym_LT_LT] = ACTIONS(2170), - [anon_sym_AMP] = ACTIONS(2170), - [anon_sym_CARET] = ACTIONS(2170), - [anon_sym_PIPE] = ACTIONS(2170), - [anon_sym_PLUS] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2168), - [anon_sym_SLASH] = ACTIONS(2168), - [anon_sym_PERCENT] = ACTIONS(2170), - [anon_sym_STAR_STAR] = ACTIONS(2170), - [anon_sym_LT] = ACTIONS(2168), - [anon_sym_LT_EQ] = ACTIONS(2170), - [anon_sym_EQ_EQ] = ACTIONS(2170), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2170), - [anon_sym_BANG_EQ] = ACTIONS(2170), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2170), - [anon_sym_GT_EQ] = ACTIONS(2170), - [anon_sym_QMARK_QMARK] = ACTIONS(2170), - [anon_sym_instanceof] = ACTIONS(2170), - [anon_sym_TILDE] = ACTIONS(2168), - [anon_sym_void] = ACTIONS(2168), - [anon_sym_delete] = ACTIONS(2168), - [anon_sym_PLUS_PLUS] = ACTIONS(2168), - [anon_sym_DASH_DASH] = ACTIONS(2168), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2168), - [sym_number] = ACTIONS(2168), - [sym_private_property_identifier] = ACTIONS(2168), - [sym_this] = ACTIONS(2168), - [sym_super] = ACTIONS(2168), - [sym_true] = ACTIONS(2168), - [sym_false] = ACTIONS(2168), - [sym_null] = ACTIONS(2168), - [sym_undefined] = ACTIONS(2168), - [anon_sym_AT] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_readonly] = ACTIONS(2168), - [anon_sym_get] = ACTIONS(2168), - [anon_sym_set] = ACTIONS(2168), - [anon_sym_declare] = ACTIONS(2168), - [anon_sym_public] = ACTIONS(2168), - [anon_sym_private] = ACTIONS(2168), - [anon_sym_protected] = ACTIONS(2168), - [anon_sym_override] = ACTIONS(2168), - [anon_sym_module] = ACTIONS(2168), - [anon_sym_any] = ACTIONS(2168), - [anon_sym_number] = ACTIONS(2168), - [anon_sym_boolean] = ACTIONS(2168), - [anon_sym_string] = ACTIONS(2168), - [anon_sym_symbol] = ACTIONS(2168), - [anon_sym_object] = ACTIONS(2168), - [anon_sym_abstract] = ACTIONS(2168), - [anon_sym_satisfies] = ACTIONS(2170), - [anon_sym_interface] = ACTIONS(2168), - [anon_sym_enum] = ACTIONS(2168), - [sym__automatic_semicolon] = ACTIONS(2498), - [sym__ternary_qmark] = ACTIONS(2174), + [ts_builtin_sym_end] = ACTIONS(2306), + [sym_identifier] = ACTIONS(2304), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_STAR] = ACTIONS(2304), + [anon_sym_type] = ACTIONS(2304), + [anon_sym_as] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2304), + [anon_sym_LBRACE] = ACTIONS(2304), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_typeof] = ACTIONS(2304), + [anon_sym_import] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(2304), + [anon_sym_var] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_switch] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_await] = ACTIONS(2304), + [anon_sym_in] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_debugger] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_throw] = ACTIONS(2304), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_yield] = ACTIONS(2304), + [anon_sym_LBRACK] = ACTIONS(2304), + [anon_sym_LTtemplate_GT] = ACTIONS(2304), + [anon_sym_GT] = ACTIONS(2304), + [anon_sym_DOT] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2304), + [anon_sym_SQUOTE] = ACTIONS(2304), + [anon_sym_class] = ACTIONS(2304), + [anon_sym_async] = ACTIONS(2304), + [anon_sym_function] = ACTIONS(2304), + [anon_sym_QMARK_DOT] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2304), + [anon_sym_using] = ACTIONS(2304), + [anon_sym_AMP_AMP] = ACTIONS(2304), + [anon_sym_PIPE_PIPE] = ACTIONS(2304), + [anon_sym_GT_GT] = ACTIONS(2304), + [anon_sym_GT_GT_GT] = ACTIONS(2304), + [anon_sym_LT_LT] = ACTIONS(2304), + [anon_sym_AMP] = ACTIONS(2304), + [anon_sym_CARET] = ACTIONS(2304), + [anon_sym_PIPE] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2304), + [anon_sym_DASH] = ACTIONS(2304), + [anon_sym_SLASH] = ACTIONS(2304), + [anon_sym_PERCENT] = ACTIONS(2304), + [anon_sym_STAR_STAR] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2304), + [anon_sym_LT_EQ] = ACTIONS(2304), + [anon_sym_EQ_EQ] = ACTIONS(2304), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2304), + [anon_sym_BANG_EQ] = ACTIONS(2304), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2304), + [anon_sym_GT_EQ] = ACTIONS(2304), + [anon_sym_QMARK_QMARK] = ACTIONS(2304), + [anon_sym_instanceof] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2304), + [anon_sym_void] = ACTIONS(2304), + [anon_sym_delete] = ACTIONS(2304), + [anon_sym_PLUS_PLUS] = ACTIONS(2304), + [anon_sym_DASH_DASH] = ACTIONS(2304), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2304), + [sym_number] = ACTIONS(2304), + [sym_private_property_identifier] = ACTIONS(2304), + [sym_this] = ACTIONS(2304), + [sym_super] = ACTIONS(2304), + [sym_true] = ACTIONS(2304), + [sym_false] = ACTIONS(2304), + [sym_null] = ACTIONS(2304), + [sym_undefined] = ACTIONS(2304), + [anon_sym_AT] = ACTIONS(2304), + [anon_sym_static] = ACTIONS(2304), + [anon_sym_readonly] = ACTIONS(2304), + [anon_sym_get] = ACTIONS(2304), + [anon_sym_set] = ACTIONS(2304), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_public] = ACTIONS(2304), + [anon_sym_private] = ACTIONS(2304), + [anon_sym_protected] = ACTIONS(2304), + [anon_sym_override] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_any] = ACTIONS(2304), + [anon_sym_number] = ACTIONS(2304), + [anon_sym_boolean] = ACTIONS(2304), + [anon_sym_string] = ACTIONS(2304), + [anon_sym_symbol] = ACTIONS(2304), + [anon_sym_object] = ACTIONS(2304), + [anon_sym_abstract] = ACTIONS(2304), + [anon_sym_satisfies] = ACTIONS(2304), + [anon_sym_interface] = ACTIONS(2304), + [anon_sym_enum] = ACTIONS(2304), + [sym__automatic_semicolon] = ACTIONS(2306), + [sym__ternary_qmark] = ACTIONS(2306), [sym_html_comment] = ACTIONS(5), }, [455] = { + [sym_import] = STATE(4159), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2673), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(455), - [ts_builtin_sym_end] = ACTIONS(2424), - [sym_identifier] = ACTIONS(2194), - [anon_sym_export] = ACTIONS(2194), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_type] = ACTIONS(2194), - [anon_sym_as] = ACTIONS(2196), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2196), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_typeof] = ACTIONS(2194), - [anon_sym_import] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2194), - [anon_sym_var] = ACTIONS(2194), - [anon_sym_let] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_await] = ACTIONS(2194), - [anon_sym_in] = ACTIONS(2196), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_debugger] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2194), - [anon_sym_yield] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_LTtemplate_GT] = ACTIONS(2194), - [anon_sym_GT] = ACTIONS(2196), - [anon_sym_DOT] = ACTIONS(2196), - [anon_sym_DQUOTE] = ACTIONS(2194), - [anon_sym_SQUOTE] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_async] = ACTIONS(2194), - [anon_sym_function] = ACTIONS(2194), - [anon_sym_QMARK_DOT] = ACTIONS(2196), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_AMP_AMP] = ACTIONS(2196), - [anon_sym_PIPE_PIPE] = ACTIONS(2196), - [anon_sym_GT_GT] = ACTIONS(2196), - [anon_sym_GT_GT_GT] = ACTIONS(2196), - [anon_sym_LT_LT] = ACTIONS(2196), - [anon_sym_AMP] = ACTIONS(2196), - [anon_sym_CARET] = ACTIONS(2196), - [anon_sym_PIPE] = ACTIONS(2196), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_SLASH] = ACTIONS(2194), - [anon_sym_PERCENT] = ACTIONS(2196), - [anon_sym_STAR_STAR] = ACTIONS(2196), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_LT_EQ] = ACTIONS(2196), - [anon_sym_EQ_EQ] = ACTIONS(2196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2196), - [anon_sym_BANG_EQ] = ACTIONS(2196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2196), - [anon_sym_GT_EQ] = ACTIONS(2196), - [anon_sym_QMARK_QMARK] = ACTIONS(2196), - [anon_sym_instanceof] = ACTIONS(2196), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_void] = ACTIONS(2194), - [anon_sym_delete] = ACTIONS(2194), - [anon_sym_PLUS_PLUS] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2194), - [sym_number] = ACTIONS(2194), - [sym_private_property_identifier] = ACTIONS(2194), - [sym_this] = ACTIONS(2194), - [sym_super] = ACTIONS(2194), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [sym_null] = ACTIONS(2194), - [sym_undefined] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_readonly] = ACTIONS(2194), - [anon_sym_get] = ACTIONS(2194), - [anon_sym_set] = ACTIONS(2194), - [anon_sym_declare] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_override] = ACTIONS(2194), - [anon_sym_module] = ACTIONS(2194), - [anon_sym_any] = ACTIONS(2194), - [anon_sym_number] = ACTIONS(2194), - [anon_sym_boolean] = ACTIONS(2194), - [anon_sym_string] = ACTIONS(2194), - [anon_sym_symbol] = ACTIONS(2194), - [anon_sym_object] = ACTIONS(2194), - [anon_sym_abstract] = ACTIONS(2194), - [anon_sym_satisfies] = ACTIONS(2196), - [anon_sym_interface] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [sym__automatic_semicolon] = ACTIONS(2500), - [sym__ternary_qmark] = ACTIONS(2200), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym__type_query_member_expression] = STATE(3701), + [sym__type_query_subscript_expression] = STATE(3700), + [sym__type_query_call_expression] = STATE(3761), + [sym__type_query_instantiation_expression] = STATE(3840), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2496), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1583), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, [456] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_assignment_pattern] = STATE(6947), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4233), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3295), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(456), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(6167), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym__type_query_member_expression] = STATE(3701), + [sym__type_query_subscript_expression] = STATE(3700), + [sym__type_query_call_expression] = STATE(3761), + [sym__type_query_instantiation_expression] = STATE(3840), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2498), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), + [anon_sym_let] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1069), + [anon_sym_new] = ACTIONS(1109), [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -89322,60 +89040,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1079), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(111), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, [457] = { [sym_comment] = STATE(457), - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), + [sym_identifier] = ACTIONS(2454), + [anon_sym_export] = ACTIONS(2454), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_EQ] = ACTIONS(212), + [anon_sym_type] = ACTIONS(2454), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_LBRACE] = ACTIONS(2470), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_typeof] = ACTIONS(2470), - [anon_sym_import] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_BANG] = ACTIONS(2470), - [anon_sym_LPAREN] = ACTIONS(2470), - [anon_sym_RPAREN] = ACTIONS(215), - [anon_sym_await] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2454), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_typeof] = ACTIONS(2454), + [anon_sym_import] = ACTIONS(2454), + [anon_sym_let] = ACTIONS(2454), + [anon_sym_BANG] = ACTIONS(2454), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_RPAREN] = ACTIONS(124), + [anon_sym_await] = ACTIONS(2454), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_LBRACK] = ACTIONS(2470), - [anon_sym_LTtemplate_GT] = ACTIONS(2470), + [anon_sym_COLON] = ACTIONS(124), + [anon_sym_yield] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_LTtemplate_GT] = ACTIONS(2454), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [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_EQ_GT] = ACTIONS(217), + [anon_sym_DQUOTE] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2454), + [anon_sym_class] = ACTIONS(2454), + [anon_sym_async] = ACTIONS(2454), + [anon_sym_function] = ACTIONS(2454), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_using] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2454), + [anon_sym_using] = ACTIONS(2454), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -89391,7 +89109,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP_AMP_EQ] = ACTIONS(160), [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2470), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2454), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -89400,12 +89118,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(118), [anon_sym_CARET] = ACTIONS(118), [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2470), - [anon_sym_SLASH] = ACTIONS(2470), + [anon_sym_PLUS] = ACTIONS(2454), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_SLASH] = ACTIONS(2454), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2454), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -89414,221 +89132,112 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), [anon_sym_instanceof] = ACTIONS(118), - [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_TILDE] = ACTIONS(2454), + [anon_sym_void] = ACTIONS(2454), + [anon_sym_delete] = ACTIONS(2454), + [anon_sym_PLUS_PLUS] = ACTIONS(2454), + [anon_sym_DASH_DASH] = ACTIONS(2454), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2454), + [sym_number] = ACTIONS(2454), + [sym_private_property_identifier] = ACTIONS(2454), + [sym_this] = ACTIONS(2454), + [sym_super] = ACTIONS(2454), + [sym_true] = ACTIONS(2454), + [sym_false] = ACTIONS(2454), + [sym_null] = ACTIONS(2454), + [sym_undefined] = ACTIONS(2454), + [anon_sym_AT] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_readonly] = ACTIONS(2454), + [anon_sym_get] = ACTIONS(2454), + [anon_sym_set] = ACTIONS(2454), [anon_sym_QMARK] = ACTIONS(215), - [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_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_object] = ACTIONS(2454), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [458] = { + [sym_import] = STATE(4258), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2474), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), [sym_comment] = STATE(458), - [sym_identifier] = ACTIONS(2474), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(212), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(2474), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_typeof] = ACTIONS(2474), - [anon_sym_import] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(2474), - [anon_sym_LPAREN] = ACTIONS(2474), - [anon_sym_RPAREN] = ACTIONS(215), - [anon_sym_await] = ACTIONS(2474), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(215), - [anon_sym_yield] = ACTIONS(2474), - [anon_sym_LBRACK] = ACTIONS(2474), - [anon_sym_LTtemplate_GT] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2474), - [anon_sym_SQUOTE] = ACTIONS(2474), - [anon_sym_class] = ACTIONS(2474), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_function] = ACTIONS(2474), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_using] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2474), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(2474), - [anon_sym_DASH] = ACTIONS(2474), - [anon_sym_SLASH] = ACTIONS(2474), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2474), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_TILDE] = ACTIONS(2474), - [anon_sym_void] = ACTIONS(2474), - [anon_sym_delete] = ACTIONS(2474), - [anon_sym_PLUS_PLUS] = ACTIONS(2474), - [anon_sym_DASH_DASH] = ACTIONS(2474), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2474), - [sym_number] = ACTIONS(2474), - [sym_private_property_identifier] = ACTIONS(2474), - [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(2474), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_readonly] = ACTIONS(2474), - [anon_sym_get] = ACTIONS(2474), - [anon_sym_set] = ACTIONS(2474), - [anon_sym_QMARK] = ACTIONS(215), - [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_object] = ACTIONS(2474), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [459] = { - [sym_import] = STATE(4341), - [sym_expression_statement] = STATE(474), - [sym_empty_statement] = STATE(474), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2653), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6726), - [sym_string] = STATE(3425), - [sym_comment] = STATE(459), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym__type_query_member_expression] = STATE(3701), + [sym__type_query_subscript_expression] = STATE(3700), + [sym__type_query_call_expression] = STATE(3761), + [sym__type_query_instantiation_expression] = STATE(3840), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(2500), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2079), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -89651,399 +89260,508 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), + [sym_html_comment] = ACTIONS(5), + }, + [459] = { + [sym_import] = STATE(4235), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3042), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(459), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym__type_query_member_expression] = STATE(3701), + [sym__type_query_subscript_expression] = STATE(3700), + [sym__type_query_call_expression] = STATE(3761), + [sym__type_query_instantiation_expression] = STATE(3840), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2502), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, [460] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2981), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_spread_element] = STATE(5770), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(460), - [ts_builtin_sym_end] = ACTIONS(2420), - [sym_identifier] = ACTIONS(2266), - [anon_sym_export] = ACTIONS(2266), - [anon_sym_STAR] = ACTIONS(2268), - [anon_sym_type] = ACTIONS(2266), - [anon_sym_as] = ACTIONS(2268), - [anon_sym_namespace] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(2266), - [anon_sym_COMMA] = ACTIONS(2268), - [anon_sym_RBRACE] = ACTIONS(2266), - [anon_sym_typeof] = ACTIONS(2266), - [anon_sym_import] = ACTIONS(2266), - [anon_sym_with] = ACTIONS(2266), - [anon_sym_var] = ACTIONS(2266), - [anon_sym_let] = ACTIONS(2266), - [anon_sym_const] = ACTIONS(2266), - [anon_sym_BANG] = ACTIONS(2266), - [anon_sym_if] = ACTIONS(2266), - [anon_sym_switch] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2266), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_await] = ACTIONS(2266), - [anon_sym_in] = ACTIONS(2268), - [anon_sym_while] = ACTIONS(2266), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_try] = ACTIONS(2266), - [anon_sym_break] = ACTIONS(2266), - [anon_sym_continue] = ACTIONS(2266), - [anon_sym_debugger] = ACTIONS(2266), - [anon_sym_return] = ACTIONS(2266), - [anon_sym_throw] = ACTIONS(2266), - [anon_sym_SEMI] = ACTIONS(2266), - [anon_sym_yield] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2266), - [anon_sym_LTtemplate_GT] = ACTIONS(2266), - [anon_sym_GT] = ACTIONS(2268), - [anon_sym_DOT] = ACTIONS(2268), - [anon_sym_DQUOTE] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2266), - [anon_sym_class] = ACTIONS(2266), - [anon_sym_async] = ACTIONS(2266), - [anon_sym_function] = ACTIONS(2266), - [anon_sym_QMARK_DOT] = ACTIONS(2268), - [anon_sym_new] = ACTIONS(2266), - [anon_sym_using] = ACTIONS(2266), - [anon_sym_AMP_AMP] = ACTIONS(2268), - [anon_sym_PIPE_PIPE] = ACTIONS(2268), - [anon_sym_GT_GT] = ACTIONS(2268), - [anon_sym_GT_GT_GT] = ACTIONS(2268), - [anon_sym_LT_LT] = ACTIONS(2268), - [anon_sym_AMP] = ACTIONS(2268), - [anon_sym_CARET] = ACTIONS(2268), - [anon_sym_PIPE] = ACTIONS(2268), - [anon_sym_PLUS] = ACTIONS(2266), - [anon_sym_DASH] = ACTIONS(2266), - [anon_sym_SLASH] = ACTIONS(2266), - [anon_sym_PERCENT] = ACTIONS(2268), - [anon_sym_STAR_STAR] = ACTIONS(2268), - [anon_sym_LT] = ACTIONS(2266), - [anon_sym_LT_EQ] = ACTIONS(2268), - [anon_sym_EQ_EQ] = ACTIONS(2268), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2268), - [anon_sym_BANG_EQ] = ACTIONS(2268), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2268), - [anon_sym_GT_EQ] = ACTIONS(2268), - [anon_sym_QMARK_QMARK] = ACTIONS(2268), - [anon_sym_instanceof] = ACTIONS(2268), - [anon_sym_TILDE] = ACTIONS(2266), - [anon_sym_void] = ACTIONS(2266), - [anon_sym_delete] = ACTIONS(2266), - [anon_sym_PLUS_PLUS] = ACTIONS(2266), - [anon_sym_DASH_DASH] = ACTIONS(2266), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2266), - [sym_number] = ACTIONS(2266), - [sym_private_property_identifier] = ACTIONS(2266), - [sym_this] = ACTIONS(2266), - [sym_super] = ACTIONS(2266), - [sym_true] = ACTIONS(2266), - [sym_false] = ACTIONS(2266), - [sym_null] = ACTIONS(2266), - [sym_undefined] = ACTIONS(2266), - [anon_sym_AT] = ACTIONS(2266), - [anon_sym_static] = ACTIONS(2266), - [anon_sym_readonly] = ACTIONS(2266), - [anon_sym_get] = ACTIONS(2266), - [anon_sym_set] = ACTIONS(2266), - [anon_sym_declare] = ACTIONS(2266), - [anon_sym_public] = ACTIONS(2266), - [anon_sym_private] = ACTIONS(2266), - [anon_sym_protected] = ACTIONS(2266), - [anon_sym_override] = ACTIONS(2266), - [anon_sym_module] = ACTIONS(2266), - [anon_sym_any] = ACTIONS(2266), - [anon_sym_number] = ACTIONS(2266), - [anon_sym_boolean] = ACTIONS(2266), - [anon_sym_string] = ACTIONS(2266), - [anon_sym_symbol] = ACTIONS(2266), - [anon_sym_object] = ACTIONS(2266), - [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_satisfies] = ACTIONS(2268), - [anon_sym_interface] = ACTIONS(2266), - [anon_sym_enum] = ACTIONS(2266), - [sym__automatic_semicolon] = ACTIONS(2502), - [sym__ternary_qmark] = ACTIONS(2272), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_COMMA] = ACTIONS(2474), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_RPAREN] = ACTIONS(2474), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1583), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2330), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, [461] = { - [sym_import] = STATE(4359), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3372), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4170), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2620), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(461), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym__type_query_member_expression] = STATE(3848), - [sym__type_query_subscript_expression] = STATE(3849), - [sym__type_query_call_expression] = STATE(3915), - [sym__type_query_instantiation_expression] = STATE(4026), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym__type_query_member_expression] = STATE(3774), + [sym__type_query_subscript_expression] = STATE(3771), + [sym__type_query_call_expression] = STATE(3952), + [sym__type_query_instantiation_expression] = STATE(4095), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(2504), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, [462] = { [sym_comment] = STATE(462), - [ts_builtin_sym_end] = ACTIONS(2254), - [sym_identifier] = ACTIONS(2252), - [anon_sym_export] = ACTIONS(2252), - [anon_sym_STAR] = ACTIONS(2252), - [anon_sym_type] = ACTIONS(2252), - [anon_sym_as] = ACTIONS(2252), - [anon_sym_namespace] = ACTIONS(2252), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_COMMA] = ACTIONS(2252), - [anon_sym_RBRACE] = ACTIONS(2252), - [anon_sym_typeof] = ACTIONS(2252), - [anon_sym_import] = ACTIONS(2252), - [anon_sym_with] = ACTIONS(2252), - [anon_sym_var] = ACTIONS(2252), - [anon_sym_let] = ACTIONS(2252), - [anon_sym_const] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_switch] = ACTIONS(2252), - [anon_sym_for] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_await] = ACTIONS(2252), - [anon_sym_in] = ACTIONS(2252), - [anon_sym_while] = ACTIONS(2252), - [anon_sym_do] = ACTIONS(2252), - [anon_sym_try] = ACTIONS(2252), - [anon_sym_break] = ACTIONS(2252), - [anon_sym_continue] = ACTIONS(2252), - [anon_sym_debugger] = ACTIONS(2252), - [anon_sym_return] = ACTIONS(2252), - [anon_sym_throw] = ACTIONS(2252), - [anon_sym_SEMI] = ACTIONS(2252), - [anon_sym_yield] = ACTIONS(2252), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_LTtemplate_GT] = ACTIONS(2252), - [anon_sym_GT] = ACTIONS(2252), - [anon_sym_DOT] = ACTIONS(2252), - [anon_sym_DQUOTE] = ACTIONS(2252), - [anon_sym_SQUOTE] = ACTIONS(2252), - [anon_sym_class] = ACTIONS(2252), - [anon_sym_async] = ACTIONS(2252), - [anon_sym_function] = ACTIONS(2252), - [anon_sym_QMARK_DOT] = ACTIONS(2252), - [anon_sym_new] = ACTIONS(2252), - [anon_sym_using] = ACTIONS(2252), - [anon_sym_AMP_AMP] = ACTIONS(2252), - [anon_sym_PIPE_PIPE] = ACTIONS(2252), - [anon_sym_GT_GT] = ACTIONS(2252), - [anon_sym_GT_GT_GT] = ACTIONS(2252), - [anon_sym_LT_LT] = ACTIONS(2252), - [anon_sym_AMP] = ACTIONS(2252), - [anon_sym_CARET] = ACTIONS(2252), - [anon_sym_PIPE] = ACTIONS(2252), - [anon_sym_PLUS] = ACTIONS(2252), - [anon_sym_DASH] = ACTIONS(2252), - [anon_sym_SLASH] = ACTIONS(2252), - [anon_sym_PERCENT] = ACTIONS(2252), - [anon_sym_STAR_STAR] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_LT_EQ] = ACTIONS(2252), - [anon_sym_EQ_EQ] = ACTIONS(2252), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2252), - [anon_sym_BANG_EQ] = ACTIONS(2252), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2252), - [anon_sym_GT_EQ] = ACTIONS(2252), - [anon_sym_QMARK_QMARK] = ACTIONS(2252), - [anon_sym_instanceof] = ACTIONS(2252), - [anon_sym_TILDE] = ACTIONS(2252), - [anon_sym_void] = ACTIONS(2252), - [anon_sym_delete] = ACTIONS(2252), - [anon_sym_PLUS_PLUS] = ACTIONS(2252), - [anon_sym_DASH_DASH] = ACTIONS(2252), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2252), - [sym_number] = ACTIONS(2252), - [sym_private_property_identifier] = ACTIONS(2252), - [sym_this] = ACTIONS(2252), - [sym_super] = ACTIONS(2252), - [sym_true] = ACTIONS(2252), - [sym_false] = ACTIONS(2252), - [sym_null] = ACTIONS(2252), - [sym_undefined] = ACTIONS(2252), - [anon_sym_AT] = ACTIONS(2252), - [anon_sym_static] = ACTIONS(2252), - [anon_sym_readonly] = ACTIONS(2252), - [anon_sym_get] = ACTIONS(2252), - [anon_sym_set] = ACTIONS(2252), - [anon_sym_declare] = ACTIONS(2252), - [anon_sym_public] = ACTIONS(2252), - [anon_sym_private] = ACTIONS(2252), - [anon_sym_protected] = ACTIONS(2252), - [anon_sym_override] = ACTIONS(2252), - [anon_sym_module] = ACTIONS(2252), - [anon_sym_any] = ACTIONS(2252), - [anon_sym_number] = ACTIONS(2252), - [anon_sym_boolean] = ACTIONS(2252), - [anon_sym_string] = ACTIONS(2252), - [anon_sym_symbol] = ACTIONS(2252), - [anon_sym_object] = ACTIONS(2252), - [anon_sym_abstract] = ACTIONS(2252), - [anon_sym_satisfies] = ACTIONS(2252), - [anon_sym_interface] = ACTIONS(2252), - [anon_sym_enum] = ACTIONS(2252), - [sym__automatic_semicolon] = ACTIONS(2254), - [sym__ternary_qmark] = ACTIONS(2254), + [ts_builtin_sym_end] = ACTIONS(2198), + [sym_identifier] = ACTIONS(2196), + [anon_sym_export] = ACTIONS(2196), + [anon_sym_STAR] = ACTIONS(2196), + [anon_sym_type] = ACTIONS(2196), + [anon_sym_as] = ACTIONS(2196), + [anon_sym_namespace] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_COMMA] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_typeof] = ACTIONS(2196), + [anon_sym_import] = ACTIONS(2196), + [anon_sym_with] = ACTIONS(2196), + [anon_sym_var] = ACTIONS(2196), + [anon_sym_let] = ACTIONS(2196), + [anon_sym_const] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2196), + [anon_sym_if] = ACTIONS(2196), + [anon_sym_switch] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_await] = ACTIONS(2196), + [anon_sym_in] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2196), + [anon_sym_do] = ACTIONS(2196), + [anon_sym_try] = ACTIONS(2196), + [anon_sym_break] = ACTIONS(2196), + [anon_sym_continue] = ACTIONS(2196), + [anon_sym_debugger] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(2196), + [anon_sym_throw] = ACTIONS(2196), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_yield] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2196), + [anon_sym_LTtemplate_GT] = ACTIONS(2196), + [anon_sym_GT] = ACTIONS(2196), + [anon_sym_DOT] = ACTIONS(2196), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_SQUOTE] = ACTIONS(2196), + [anon_sym_class] = ACTIONS(2196), + [anon_sym_async] = ACTIONS(2196), + [anon_sym_function] = ACTIONS(2196), + [anon_sym_QMARK_DOT] = ACTIONS(2196), + [anon_sym_new] = ACTIONS(2196), + [anon_sym_using] = ACTIONS(2196), + [anon_sym_AMP_AMP] = ACTIONS(2196), + [anon_sym_PIPE_PIPE] = ACTIONS(2196), + [anon_sym_GT_GT] = ACTIONS(2196), + [anon_sym_GT_GT_GT] = ACTIONS(2196), + [anon_sym_LT_LT] = ACTIONS(2196), + [anon_sym_AMP] = ACTIONS(2196), + [anon_sym_CARET] = ACTIONS(2196), + [anon_sym_PIPE] = ACTIONS(2196), + [anon_sym_PLUS] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_SLASH] = ACTIONS(2196), + [anon_sym_PERCENT] = ACTIONS(2196), + [anon_sym_STAR_STAR] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(2196), + [anon_sym_LT_EQ] = ACTIONS(2196), + [anon_sym_EQ_EQ] = ACTIONS(2196), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2196), + [anon_sym_BANG_EQ] = ACTIONS(2196), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2196), + [anon_sym_GT_EQ] = ACTIONS(2196), + [anon_sym_QMARK_QMARK] = ACTIONS(2196), + [anon_sym_instanceof] = ACTIONS(2196), + [anon_sym_TILDE] = ACTIONS(2196), + [anon_sym_void] = ACTIONS(2196), + [anon_sym_delete] = ACTIONS(2196), + [anon_sym_PLUS_PLUS] = ACTIONS(2196), + [anon_sym_DASH_DASH] = ACTIONS(2196), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2196), + [sym_number] = ACTIONS(2196), + [sym_private_property_identifier] = ACTIONS(2196), + [sym_this] = ACTIONS(2196), + [sym_super] = ACTIONS(2196), + [sym_true] = ACTIONS(2196), + [sym_false] = ACTIONS(2196), + [sym_null] = ACTIONS(2196), + [sym_undefined] = ACTIONS(2196), + [anon_sym_AT] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2196), + [anon_sym_readonly] = ACTIONS(2196), + [anon_sym_get] = ACTIONS(2196), + [anon_sym_set] = ACTIONS(2196), + [anon_sym_declare] = ACTIONS(2196), + [anon_sym_public] = ACTIONS(2196), + [anon_sym_private] = ACTIONS(2196), + [anon_sym_protected] = ACTIONS(2196), + [anon_sym_override] = ACTIONS(2196), + [anon_sym_module] = ACTIONS(2196), + [anon_sym_any] = ACTIONS(2196), + [anon_sym_number] = ACTIONS(2196), + [anon_sym_boolean] = ACTIONS(2196), + [anon_sym_string] = ACTIONS(2196), + [anon_sym_symbol] = ACTIONS(2196), + [anon_sym_object] = ACTIONS(2196), + [anon_sym_abstract] = ACTIONS(2196), + [anon_sym_satisfies] = ACTIONS(2196), + [anon_sym_interface] = ACTIONS(2196), + [anon_sym_enum] = ACTIONS(2196), + [sym__automatic_semicolon] = ACTIONS(2198), + [sym__ternary_qmark] = ACTIONS(2198), [sym_html_comment] = ACTIONS(5), }, [463] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(463), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5409), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5135), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -90056,7 +89774,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), @@ -90068,13 +89786,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -90105,161 +89823,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [464] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2624), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6585), - [sym_string] = STATE(3425), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(464), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2510), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), - [sym__automatic_semicolon] = ACTIONS(2512), - [sym_html_comment] = ACTIONS(5), - }, - [465] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(465), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5401), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5065), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -90272,7 +89882,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), @@ -90284,18 +89894,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1091), + [sym_this] = ACTIONS(1083), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), @@ -90303,7 +89913,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2514), + [anon_sym_readonly] = ACTIONS(2510), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -90320,61 +89930,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, + [465] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2571), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6573), + [sym_string] = STATE(3280), + [sym_comment] = STATE(465), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_SEMI] = ACTIONS(2512), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), + [sym__automatic_semicolon] = ACTIONS(2514), + [sym_html_comment] = ACTIONS(5), + }, [466] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2676), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6710), - [sym_string] = STATE(3425), + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2516), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6520), + [sym_string] = STATE(3280), [sym_comment] = STATE(466), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -90384,9 +90102,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -90409,73 +90127,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym__automatic_semicolon] = ACTIONS(2518), [sym_html_comment] = ACTIONS(5), }, [467] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(467), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5512), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5012), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1059), [anon_sym_export] = ACTIONS(111), [anon_sym_type] = ACTIONS(111), @@ -90488,7 +90206,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), @@ -90500,18 +90218,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(162), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(2520), + [sym_this] = ACTIONS(1077), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), @@ -90519,7 +90237,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(1079), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2522), + [anon_sym_readonly] = ACTIONS(2466), [anon_sym_get] = ACTIONS(111), [anon_sym_set] = ACTIONS(111), [anon_sym_declare] = ACTIONS(111), @@ -90537,180 +90255,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [468] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2168), - [sym_subscript_expression] = STATE(2168), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4796), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6555), + [sym_string] = STATE(3280), [sym_comment] = STATE(468), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_pattern] = STATE(5292), - [sym_rest_pattern] = STATE(4588), - [sym_non_null_expression] = STATE(2168), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1059), - [anon_sym_export] = ACTIONS(111), - [anon_sym_type] = ACTIONS(111), - [anon_sym_namespace] = ACTIONS(120), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(111), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(150), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1069), - [anon_sym_using] = ACTIONS(158), - [anon_sym_DOT_DOT_DOT] = ACTIONS(162), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(1083), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1079), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(111), - [anon_sym_readonly] = ACTIONS(2468), - [anon_sym_get] = ACTIONS(111), - [anon_sym_set] = ACTIONS(111), - [anon_sym_declare] = ACTIONS(111), - [anon_sym_public] = ACTIONS(111), - [anon_sym_private] = ACTIONS(111), - [anon_sym_protected] = ACTIONS(111), - [anon_sym_override] = ACTIONS(111), - [anon_sym_module] = ACTIONS(111), - [anon_sym_any] = ACTIONS(111), - [anon_sym_number] = ACTIONS(111), - [anon_sym_boolean] = ACTIONS(111), - [anon_sym_string] = ACTIONS(111), - [anon_sym_symbol] = ACTIONS(111), - [anon_sym_object] = ACTIONS(111), - [sym_html_comment] = ACTIONS(5), - }, - [469] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2654), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6563), - [sym_string] = STATE(3425), - [sym_comment] = STATE(469), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2524), + [anon_sym_SEMI] = ACTIONS(2520), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -90733,92 +90343,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), - [sym__automatic_semicolon] = ACTIONS(2526), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), + [sym__automatic_semicolon] = ACTIONS(2522), [sym_html_comment] = ACTIONS(5), }, - [470] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2607), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6896), - [sym_string] = STATE(3425), - [sym_comment] = STATE(470), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [469] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2532), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6431), + [sym_string] = STATE(3280), + [sym_comment] = STATE(469), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2528), + [anon_sym_SEMI] = ACTIONS(2524), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -90841,92 +90451,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), - [sym__automatic_semicolon] = ACTIONS(2530), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), + [sym__automatic_semicolon] = ACTIONS(2526), [sym_html_comment] = ACTIONS(5), }, - [471] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2762), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6581), - [sym_string] = STATE(3425), - [sym_comment] = STATE(471), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [470] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2607), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6712), + [sym_string] = STATE(3280), + [sym_comment] = STATE(470), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), - [anon_sym_SEMI] = ACTIONS(2532), + [anon_sym_SEMI] = ACTIONS(2528), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -90949,97 +90559,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), - [sym__automatic_semicolon] = ACTIONS(2534), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), + [sym__automatic_semicolon] = ACTIONS(2530), + [sym_html_comment] = ACTIONS(5), + }, + [471] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2017), + [sym_subscript_expression] = STATE(2017), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4407), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(471), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_pattern] = STATE(5070), + [sym_rest_pattern] = STATE(4506), + [sym_non_null_expression] = STATE(2017), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1059), + [anon_sym_export] = ACTIONS(111), + [anon_sym_type] = ACTIONS(111), + [anon_sym_namespace] = ACTIONS(120), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_typeof] = ACTIONS(173), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(111), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(2019), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(150), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1069), + [anon_sym_using] = ACTIONS(158), + [anon_sym_DOT_DOT_DOT] = ACTIONS(162), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(184), + [sym_this] = ACTIONS(2532), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1079), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(111), + [anon_sym_readonly] = ACTIONS(2534), + [anon_sym_get] = ACTIONS(111), + [anon_sym_set] = ACTIONS(111), + [anon_sym_declare] = ACTIONS(111), + [anon_sym_public] = ACTIONS(111), + [anon_sym_private] = ACTIONS(111), + [anon_sym_protected] = ACTIONS(111), + [anon_sym_override] = ACTIONS(111), + [anon_sym_module] = ACTIONS(111), + [anon_sym_any] = ACTIONS(111), + [anon_sym_number] = ACTIONS(111), + [anon_sym_boolean] = ACTIONS(111), + [anon_sym_string] = ACTIONS(111), + [anon_sym_symbol] = ACTIONS(111), + [anon_sym_object] = ACTIONS(111), [sym_html_comment] = ACTIONS(5), }, [472] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2908), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7300), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2667), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7200), + [sym_string] = STATE(2644), [sym_comment] = STATE(472), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_RPAREN] = ACTIONS(2536), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -91057,96 +90775,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, [473] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2906), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7126), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7256), + [sym_string] = STATE(2644), [sym_comment] = STATE(473), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_RPAREN] = ACTIONS(2538), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -91164,96 +90882,96 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, [474] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2838), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7541), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2686), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7072), + [sym_string] = STATE(2644), [sym_comment] = STATE(474), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_RPAREN] = ACTIONS(2540), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -91271,310 +90989,310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, [475] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2344), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2344), - [sym_subscript_expression] = STATE(2344), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(6073), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2669), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(6941), + [sym_string] = STATE(2644), [sym_comment] = STATE(475), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2344), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2542), - [anon_sym_export] = ACTIONS(2544), - [anon_sym_type] = ACTIONS(2544), - [anon_sym_namespace] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(2548), - [anon_sym_typeof] = ACTIONS(173), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_var] = ACTIONS(2550), - [anon_sym_let] = ACTIONS(2552), - [anon_sym_const] = ACTIONS(2554), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2556), + [anon_sym_RPAREN] = ACTIONS(2542), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2558), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2560), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2562), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2544), - [anon_sym_readonly] = ACTIONS(2544), - [anon_sym_get] = ACTIONS(2544), - [anon_sym_set] = ACTIONS(2544), - [anon_sym_declare] = ACTIONS(2544), - [anon_sym_public] = ACTIONS(2544), - [anon_sym_private] = ACTIONS(2544), - [anon_sym_protected] = ACTIONS(2544), - [anon_sym_override] = ACTIONS(2544), - [anon_sym_module] = ACTIONS(2544), - [anon_sym_any] = ACTIONS(2544), - [anon_sym_number] = ACTIONS(2544), - [anon_sym_boolean] = ACTIONS(2544), - [anon_sym_string] = ACTIONS(2544), - [anon_sym_symbol] = ACTIONS(2544), - [anon_sym_object] = ACTIONS(2544), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, [476] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2843), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7410), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2222), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2222), + [sym_subscript_expression] = STATE(2222), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(6176), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(476), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2222), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2544), + [anon_sym_export] = ACTIONS(2546), + [anon_sym_type] = ACTIONS(2546), + [anon_sym_namespace] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(2550), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_var] = ACTIONS(2552), + [anon_sym_let] = ACTIONS(2554), + [anon_sym_const] = ACTIONS(2556), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_RPAREN] = ACTIONS(2564), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(2558), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(2560), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(2562), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(2564), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(2546), [sym_html_comment] = ACTIONS(5), }, [477] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2877), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7220), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2761), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7416), + [sym_string] = STATE(2644), [sym_comment] = STATE(477), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_RPAREN] = ACTIONS(2566), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -91592,307 +91310,307 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, [478] = { - [sym_import] = STATE(4341), - [sym_statement_block] = STATE(3210), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3127), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2570), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6584), + [sym_string] = STATE(3280), [sym_comment] = STATE(478), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1453), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, [479] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2712), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3400), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2425), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7410), + [sym_string] = STATE(2644), [sym_comment] = STATE(479), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1409), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, [480] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2791), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2816), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2375), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7222), + [sym_string] = STATE(2644), [sym_comment] = STATE(480), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -91910,317 +91628,635 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, [481] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2674), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3454), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2662), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(481), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(173), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym__extends_clause_single] = STATE(5991), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, [482] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2902), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7212), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2495), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3172), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(482), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, [483] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2623), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3421), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2605), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6709), + [sym_string] = STATE(3280), [sym_comment] = STATE(483), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1541), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), + [sym_html_comment] = ACTIONS(5), + }, + [484] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2515), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6529), + [sym_string] = STATE(3280), + [sym_comment] = STATE(484), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), + [sym_html_comment] = ACTIONS(5), + }, + [485] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2618), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3175), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(485), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1701), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [sym_html_comment] = ACTIONS(5), + }, + [486] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3082), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(486), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_mapped_type_clause] = STATE(7085), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2570), + [anon_sym_export] = ACTIONS(2572), + [anon_sym_type] = ACTIONS(2572), + [anon_sym_namespace] = ACTIONS(2574), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(2572), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(2576), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2578), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1433), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -92228,95 +92264,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(2572), + [anon_sym_readonly] = ACTIONS(2572), + [anon_sym_get] = ACTIONS(2572), + [anon_sym_set] = ACTIONS(2572), + [anon_sym_declare] = ACTIONS(2572), + [anon_sym_public] = ACTIONS(2572), + [anon_sym_private] = ACTIONS(2572), + [anon_sym_protected] = ACTIONS(2572), + [anon_sym_override] = ACTIONS(2572), + [anon_sym_module] = ACTIONS(2572), + [anon_sym_any] = ACTIONS(2572), + [anon_sym_number] = ACTIONS(2572), + [anon_sym_boolean] = ACTIONS(2572), + [anon_sym_string] = ACTIONS(2572), + [anon_sym_symbol] = ACTIONS(2572), + [anon_sym_object] = ACTIONS(2572), [sym_html_comment] = ACTIONS(5), }, - [484] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7381), - [sym_string] = STATE(2679), - [sym_comment] = STATE(484), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [487] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2336), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7342), + [sym_string] = STATE(2644), + [sym_comment] = STATE(487), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -92334,95 +92370,95 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [485] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2869), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7214), - [sym_string] = STATE(2679), - [sym_comment] = STATE(485), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [488] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2684), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7065), + [sym_string] = STATE(2644), + [sym_comment] = STATE(488), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -92440,201 +92476,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [486] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2876), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7219), - [sym_string] = STATE(2679), - [sym_comment] = STATE(486), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [489] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2646), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3095), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(489), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [487] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2623), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2903), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(487), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [490] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2680), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7052), + [sym_string] = STATE(2644), + [sym_comment] = STATE(490), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -92652,201 +92688,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [488] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2623), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3476), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(488), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(173), + [491] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2677), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7051), + [sym_string] = STATE(2644), + [sym_comment] = STATE(491), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [489] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2898), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7366), - [sym_string] = STATE(2679), - [sym_comment] = STATE(489), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [492] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2423), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7324), + [sym_string] = STATE(2644), + [sym_comment] = STATE(492), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -92864,201 +92900,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [490] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2899), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7367), - [sym_string] = STATE(2679), - [sym_comment] = STATE(490), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [493] = { + [sym_import] = STATE(4300), + [sym_statement_block] = STATE(3119), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2807), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(493), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1597), [sym_html_comment] = ACTIONS(5), }, - [491] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2905), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7368), - [sym_string] = STATE(2679), - [sym_comment] = STATE(491), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [494] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2495), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2758), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(494), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(2582), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -93076,413 +93112,519 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [492] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2912), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7407), - [sym_string] = STATE(2679), - [sym_comment] = STATE(492), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [495] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2646), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3171), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(495), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(1433), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [493] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2791), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2885), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(493), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1697), + [496] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2606), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3058), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(496), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [494] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2791), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3464), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(494), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(173), + [497] = { + [sym_import] = STATE(4300), + [sym_statement_block] = STATE(3119), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2623), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(497), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), + [sym_html_comment] = ACTIONS(5), + }, + [498] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2604), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3054), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(498), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(1683), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [495] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2521), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7513), - [sym_string] = STATE(2679), - [sym_comment] = STATE(495), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [499] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2438), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7386), + [sym_string] = STATE(2644), + [sym_comment] = STATE(499), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -93500,641 +93642,1065 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [496] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2858), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7148), - [sym_string] = STATE(2679), - [sym_comment] = STATE(496), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [500] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6556), + [sym_string] = STATE(3280), + [sym_comment] = STATE(500), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), + [sym_html_comment] = ACTIONS(5), + }, + [501] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2601), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3052), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(501), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [sym_html_comment] = ACTIONS(5), + }, + [502] = { + [sym_import] = STATE(4300), + [sym_statement_block] = STATE(3057), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2592), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(502), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(1549), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1567), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [497] = { - [sym_import] = STATE(4341), - [sym_statement_block] = STATE(3263), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2757), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(497), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1499), + [503] = { + [sym_import] = STATE(4300), + [sym_statement_block] = STATE(3043), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2590), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(503), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), + [sym_private_property_identifier] = ACTIONS(1567), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [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_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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [498] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2847), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7199), - [sym_string] = STATE(2679), - [sym_comment] = STATE(498), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [504] = { + [sym_import] = STATE(4300), + [sym_statement_block] = STATE(3038), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2560), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(504), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(1549), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1567), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1543), + [sym_html_comment] = ACTIONS(5), + }, + [505] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2370), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7219), + [sym_string] = STATE(2644), + [sym_comment] = STATE(505), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [499] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2791), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3367), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(499), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1409), + [506] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2618), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2679), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(506), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [500] = { - [sym_import] = STATE(4341), - [sym_statement_block] = STATE(3174), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3017), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(500), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1453), + [507] = { + [sym_import] = STATE(4300), + [sym_statement_block] = STATE(3006), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2840), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(507), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [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_object] = ACTIONS(1597), [sym_html_comment] = ACTIONS(5), }, - [501] = { - [sym_import] = STATE(4341), - [sym_statement_block] = STATE(3168), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3018), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(501), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1453), + [508] = { + [sym_import] = STATE(4300), + [sym_statement_block] = STATE(3090), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2504), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(508), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1567), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1543), + [sym_html_comment] = ACTIONS(5), + }, + [509] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2733), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7027), + [sym_string] = STATE(2644), + [sym_comment] = STATE(509), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), @@ -94154,93 +94720,305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [502] = { - [sym_import] = STATE(4341), - [sym_statement_block] = STATE(3164), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3019), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(502), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1453), + [510] = { + [sym_import] = STATE(4300), + [sym_statement_block] = STATE(3090), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2913), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(510), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1597), + [sym_html_comment] = ACTIONS(5), + }, + [511] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2646), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2652), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(511), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1583), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1577), + [sym_html_comment] = ACTIONS(5), + }, + [512] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2659), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7025), + [sym_string] = STATE(2644), + [sym_comment] = STATE(512), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), @@ -94260,299 +95038,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [503] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2623), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3377), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(503), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1409), + [513] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2662), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(513), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym__extends_clause_single] = STATE(5527), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [504] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2674), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3395), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(504), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1409), + [514] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2601), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3277), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(514), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [505] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2712), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3342), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(505), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [515] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2604), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3275), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(515), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -94560,105 +95338,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [506] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2714), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3356), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(506), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [516] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2606), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3271), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(516), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -94666,105 +95444,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [507] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2720), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3382), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(507), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [517] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2646), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3262), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(517), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -94772,943 +95550,1155 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [508] = { - [sym_import] = STATE(4341), - [sym_statement_block] = STATE(3299), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3033), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(508), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1453), + [518] = { + [sym_import] = STATE(4300), + [sym_statement_block] = STATE(3006), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2462), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(518), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1567), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1543), + [sym_html_comment] = ACTIONS(5), + }, + [519] = { + [sym_import] = STATE(4300), + [sym_statement_block] = STATE(3038), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2926), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(519), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [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_object] = ACTIONS(1597), [sym_html_comment] = ACTIONS(5), }, - [509] = { - [sym_import] = STATE(4341), - [sym_statement_block] = STATE(3299), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2737), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(509), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(21), + [520] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2618), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3242), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(520), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), + [sym_html_comment] = ACTIONS(5), + }, + [521] = { + [sym_import] = STATE(4300), + [sym_statement_block] = STATE(3043), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2928), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(521), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [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_object] = ACTIONS(1597), [sym_html_comment] = ACTIONS(5), }, - [510] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2767), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6580), - [sym_string] = STATE(3425), - [sym_comment] = STATE(510), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [522] = { + [sym_import] = STATE(4300), + [sym_statement_block] = STATE(3057), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2929), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(522), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [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_object] = ACTIONS(1597), [sym_html_comment] = ACTIONS(5), }, - [511] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2799), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7297), - [sym_string] = STATE(2679), - [sym_comment] = STATE(511), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [523] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2495), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3220), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(523), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [512] = { - [sym_import] = STATE(4341), - [sym_statement_block] = STATE(3263), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2695), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(512), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(21), + [524] = { + [sym_import] = STATE(4300), + [sym_statement_block] = STATE(3119), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2615), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(524), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1567), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [513] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2674), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2832), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(513), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1697), + [525] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2367), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7093), + [sym_string] = STATE(2644), + [sym_comment] = STATE(525), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [514] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2791), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3426), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(514), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1541), + [526] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2606), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2689), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(526), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [515] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2720), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3398), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(515), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1409), + [527] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2604), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2690), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(527), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [516] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7538), - [sym_string] = STATE(2679), - [sym_comment] = STATE(516), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [528] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2777), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7120), + [sym_string] = STATE(2644), + [sym_comment] = STATE(528), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -95726,95 +96716,201 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [517] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7240), - [sym_string] = STATE(2679), - [sym_comment] = STATE(517), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [529] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2495), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3198), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(529), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1417), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1433), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1843), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), + [sym_html_comment] = ACTIONS(5), + }, + [530] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2709), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7205), + [sym_string] = STATE(2644), + [sym_comment] = STATE(530), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -95832,182 +96928,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [518] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2714), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3438), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(518), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(173), + [531] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2601), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2691), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(531), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [519] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2714), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3399), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(519), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), + [532] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2618), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3255), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(532), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_LBRACE] = ACTIONS(2582), [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1401), @@ -96015,18 +97111,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -96042,7 +97138,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), [anon_sym_readonly] = ACTIONS(1401), @@ -96062,273 +97158,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [520] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2712), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3445), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(520), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [sym_html_comment] = ACTIONS(5), - }, - [521] = { - [sym_import] = STATE(4341), - [sym_statement_block] = STATE(3263), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3001), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(521), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1453), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [522] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2655), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6575), - [sym_string] = STATE(3425), - [sym_comment] = STATE(522), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [533] = { + [sym_import] = STATE(4300), + [sym_statement_block] = STATE(3090), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2534), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(533), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(2580), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -96337,9 +97221,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -96362,76 +97246,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [523] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2720), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3434), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(523), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [534] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2495), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3348), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(534), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(2568), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1095), @@ -96450,13 +97334,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -96486,1561 +97370,925 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [524] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2590), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7484), - [sym_string] = STATE(2679), - [sym_comment] = STATE(524), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [535] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2601), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2722), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(535), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [525] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2714), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2640), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(525), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(966), + [536] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2604), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2723), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(536), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [526] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2720), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2883), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(526), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1697), + [537] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2606), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2725), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(537), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), - [sym_html_comment] = ACTIONS(5), - }, - [527] = { - [sym_import] = STATE(4341), - [sym_statement_block] = STATE(3210), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2613), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(527), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1499), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [528] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2826), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(528), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym__extends_clause_single] = STATE(5624), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [538] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2495), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2772), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(538), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [529] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2674), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3320), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(529), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(1663), + [539] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2495), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2455), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(539), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [530] = { - [sym_import] = STATE(4341), - [sym_statement_block] = STATE(3299), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2666), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(530), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1499), + [540] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2572), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_sequence_expression] = STATE(6432), + [sym_string] = STATE(3280), + [sym_comment] = STATE(540), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [531] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2791), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2754), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(531), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), - [sym_html_comment] = ACTIONS(5), - }, - [532] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2623), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2825), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(532), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), - [sym_html_comment] = ACTIONS(5), - }, - [533] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2714), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2861), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(533), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), - [sym_html_comment] = ACTIONS(5), - }, - [534] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2712), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2817), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(534), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), - [sym_html_comment] = ACTIONS(5), - }, - [535] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2712), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2859), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(535), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [536] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2623), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3258), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(536), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(1663), + [541] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2601), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3125), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(541), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1433), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [537] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2714), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2856), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(537), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1129), + [542] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2687), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7083), + [sym_string] = STATE(2644), + [sym_comment] = STATE(542), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [538] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2720), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2854), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(538), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [543] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2700), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7209), + [sym_string] = STATE(2644), + [sym_comment] = STATE(543), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -98058,79 +98306,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [539] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2677), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6707), - [sym_string] = STATE(3425), - [sym_comment] = STATE(539), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [544] = { + [sym_import] = STATE(4300), + [sym_statement_block] = STATE(3043), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2637), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(544), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(2580), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -98139,9 +98387,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -98164,397 +98412,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), - [sym_html_comment] = ACTIONS(5), - }, - [540] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3162), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(540), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_mapped_type_clause] = STATE(7207), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2574), - [anon_sym_export] = ACTIONS(2576), - [anon_sym_type] = ACTIONS(2576), - [anon_sym_namespace] = ACTIONS(2578), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2576), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2580), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2582), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2576), - [anon_sym_readonly] = ACTIONS(2576), - [anon_sym_get] = ACTIONS(2576), - [anon_sym_set] = ACTIONS(2576), - [anon_sym_declare] = ACTIONS(2576), - [anon_sym_public] = ACTIONS(2576), - [anon_sym_private] = ACTIONS(2576), - [anon_sym_protected] = ACTIONS(2576), - [anon_sym_override] = ACTIONS(2576), - [anon_sym_module] = ACTIONS(2576), - [anon_sym_any] = ACTIONS(2576), - [anon_sym_number] = ACTIONS(2576), - [anon_sym_boolean] = ACTIONS(2576), - [anon_sym_string] = ACTIONS(2576), - [anon_sym_symbol] = ACTIONS(2576), - [anon_sym_object] = ACTIONS(2576), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [541] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2720), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2648), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(541), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(966), + [545] = { + [sym_import] = STATE(4300), + [sym_statement_block] = STATE(3057), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2639), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(545), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(2580), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [542] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2907), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7281), - [sym_string] = STATE(2679), - [sym_comment] = STATE(542), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [546] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2646), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2732), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(546), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [543] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2597), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6591), - [sym_string] = STATE(3425), - [sym_comment] = STATE(543), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [547] = { + [sym_import] = STATE(4300), + [sym_statement_block] = STATE(3006), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(547), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(2580), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -98563,9 +98705,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -98588,2215 +98730,1367 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [544] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2509), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7507), - [sym_string] = STATE(2679), - [sym_comment] = STATE(544), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [548] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2601), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(548), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [545] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2533), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7599), - [sym_string] = STATE(2679), - [sym_comment] = STATE(545), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [549] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2604), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2536), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(549), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [546] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2791), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3173), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(546), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(2572), - [anon_sym_typeof] = ACTIONS(1663), + [550] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2606), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2535), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(550), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), - [sym_html_comment] = ACTIONS(5), - }, - [547] = { - [sym_import] = STATE(4341), - [sym_statement_block] = STATE(3174), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2755), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(547), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1499), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [548] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2894), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7249), - [sym_string] = STATE(2679), - [sym_comment] = STATE(548), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [551] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2601), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3315), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(551), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [549] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2674), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3304), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(549), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1541), + [552] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2604), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3316), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(552), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), - [sym_html_comment] = ACTIONS(5), - }, - [550] = { - [sym_import] = STATE(4341), - [sym_statement_block] = STATE(3168), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2690), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(550), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1499), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [551] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2606), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_sequence_expression] = STATE(6895), - [sym_string] = STATE(3425), - [sym_comment] = STATE(551), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), - [sym_html_comment] = ACTIONS(5), - }, - [552] = { - [sym_import] = STATE(4341), - [sym_statement_block] = STATE(3164), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2642), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(552), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, [553] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2674), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2756), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2720), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7066), + [sym_string] = STATE(2644), [sym_comment] = STATE(553), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(966), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, [554] = { - [sym_import] = STATE(4341), - [sym_statement_block] = STATE(3210), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2773), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2606), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3321), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(554), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), - [sym_html_comment] = ACTIONS(5), - }, - [555] = { - [sym_import] = STATE(4341), - [sym_statement_block] = STATE(3164), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2743), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(555), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(1499), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [556] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2818), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_sequence_expression] = STATE(7266), - [sym_string] = STATE(2679), - [sym_comment] = STATE(556), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [557] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2712), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3284), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(557), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1541), + [555] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2618), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2459), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(555), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), - [sym_html_comment] = ACTIONS(5), - }, - [558] = { - [sym_import] = STATE(4341), - [sym_statement_block] = STATE(3168), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2647), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(558), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), - [sym_html_comment] = ACTIONS(5), - }, - [559] = { - [sym_import] = STATE(4341), - [sym_statement_block] = STATE(3174), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2668), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(559), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(2568), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [560] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2720), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3302), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(560), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1541), + [556] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2618), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2763), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(556), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [561] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3162), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(561), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_mapped_type_clause] = STATE(7141), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2584), - [anon_sym_export] = ACTIONS(2586), - [anon_sym_type] = ACTIONS(2586), - [anon_sym_namespace] = ACTIONS(2588), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [557] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2646), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2525), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(557), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2590), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2592), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(2586), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [562] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2826), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(562), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym__extends_clause_single] = STATE(5897), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [558] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2646), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3325), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(558), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [563] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2714), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3287), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(563), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(1541), + [559] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2703), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7214), + [sym_string] = STATE(2644), + [sym_comment] = STATE(559), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [564] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2674), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2875), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(564), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [560] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2708), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7207), + [sym_string] = STATE(2644), + [sym_comment] = STATE(560), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(2570), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -100814,395 +100108,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [565] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2623), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(565), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(966), + [561] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2604), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(561), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1433), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [566] = { - [sym_import] = STATE(4312), - [sym_statement_block] = STATE(2712), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2634), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(566), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_typeof] = ACTIONS(966), + [562] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2606), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3099), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(562), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(2582), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1433), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), - [sym_html_comment] = ACTIONS(5), - }, - [567] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2724), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(567), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [568] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2921), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(568), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [563] = { + [sym_import] = STATE(4300), + [sym_statement_block] = STATE(3038), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2632), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(563), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(2580), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -101211,9 +100401,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -101236,498 +100426,501 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [569] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2713), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(569), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [564] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2672), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_sequence_expression] = STATE(7169), + [sym_string] = STATE(2644), + [sym_comment] = STATE(564), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [570] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2852), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(570), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [565] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3082), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(565), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_mapped_type_clause] = STATE(6945), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2584), + [anon_sym_export] = ACTIONS(2586), + [anon_sym_type] = ACTIONS(2586), + [anon_sym_namespace] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(2586), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(2590), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(2592), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2594), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1433), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [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_object] = ACTIONS(2586), [sym_html_comment] = ACTIONS(5), }, - [571] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2760), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(571), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), + [566] = { + [sym_import] = STATE(4225), + [sym_statement_block] = STATE(2618), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3360), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(566), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(2568), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(184), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [572] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2711), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(572), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [567] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2774), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(567), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1487), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1499), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [573] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2870), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(573), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [568] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2552), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(568), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -101736,9 +100929,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -101761,199 +100954,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), - [sym_html_comment] = ACTIONS(5), - }, - [574] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2763), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(574), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [575] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2924), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(575), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [569] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2673), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(569), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -101971,78 +101059,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [576] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2681), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(576), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [570] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2474), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(570), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -102051,9 +101139,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -102076,110 +101164,110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [577] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3129), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(577), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), + [571] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2620), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(571), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), [anon_sym_export] = ACTIONS(1445), [anon_sym_type] = ACTIONS(1445), [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(2594), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), @@ -102199,1871 +101287,1766 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [578] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2619), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(578), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [572] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3196), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(572), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [579] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2694), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(579), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [573] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2735), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(573), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_number] = ACTIONS(2596), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [580] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3352), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(580), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1409), + [574] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2911), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(574), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [sym_html_comment] = ACTIONS(5), - }, - [581] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2836), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(581), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [sym_html_comment] = ACTIONS(5), + }, + [575] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2836), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(575), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [582] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3141), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(582), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1409), + [576] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2527), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(576), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [sym_html_comment] = ACTIONS(5), - }, - [583] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(583), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [584] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2925), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(584), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [577] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2729), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(577), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [585] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3331), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(585), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [578] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2523), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(578), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [586] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3322), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(586), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [579] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2224), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2224), + [sym_subscript_expression] = STATE(2224), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7175), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(579), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2224), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2598), + [anon_sym_export] = ACTIONS(2600), + [anon_sym_type] = ACTIONS(2600), + [anon_sym_namespace] = ACTIONS(2602), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(2600), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(2604), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(2606), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(2608), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(2600), + [anon_sym_readonly] = ACTIONS(2600), + [anon_sym_get] = ACTIONS(2600), + [anon_sym_set] = ACTIONS(2600), + [anon_sym_declare] = ACTIONS(2600), + [anon_sym_public] = ACTIONS(2600), + [anon_sym_private] = ACTIONS(2600), + [anon_sym_protected] = ACTIONS(2600), + [anon_sym_override] = ACTIONS(2600), + [anon_sym_module] = ACTIONS(2600), + [anon_sym_any] = ACTIONS(2600), + [anon_sym_number] = ACTIONS(2600), + [anon_sym_boolean] = ACTIONS(2600), + [anon_sym_string] = ACTIONS(2600), + [anon_sym_symbol] = ACTIONS(2600), + [anon_sym_object] = ACTIONS(2600), [sym_html_comment] = ACTIONS(5), }, - [587] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2872), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(587), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [580] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2522), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(580), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [588] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2959), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(588), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [581] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2520), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(581), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [589] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2784), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(589), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [582] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2530), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(582), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1567), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [590] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2746), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(590), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [583] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2619), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(583), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1567), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [591] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2811), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(591), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [584] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3216), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(584), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [592] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2758), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(592), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [585] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2614), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(585), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1567), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [593] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2753), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(593), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [586] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2492), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(586), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [594] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2729), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(594), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [587] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2688), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(587), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [595] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3262), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(595), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [588] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3201), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(588), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2594), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1433), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -104071,498 +103054,498 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [596] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3313), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(596), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [589] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2673), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(589), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_number] = ACTIONS(2596), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [597] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(597), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [590] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2487), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(590), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2596), - [sym_private_property_identifier] = ACTIONS(992), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [598] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3307), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(598), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [591] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2488), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(591), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [599] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2723), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(599), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [592] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3221), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(592), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [600] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2864), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(600), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [593] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2727), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(593), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -104571,9 +103554,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -104596,385 +103579,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), - [sym_html_comment] = ACTIONS(5), - }, - [601] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2376), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2376), - [sym_subscript_expression] = STATE(2376), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7246), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(601), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2376), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2598), - [anon_sym_export] = ACTIONS(2600), - [anon_sym_type] = ACTIONS(2600), - [anon_sym_namespace] = ACTIONS(2602), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2600), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2604), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2606), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2608), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2600), - [anon_sym_readonly] = ACTIONS(2600), - [anon_sym_get] = ACTIONS(2600), - [anon_sym_set] = ACTIONS(2600), - [anon_sym_declare] = ACTIONS(2600), - [anon_sym_public] = ACTIONS(2600), - [anon_sym_private] = ACTIONS(2600), - [anon_sym_protected] = ACTIONS(2600), - [anon_sym_override] = ACTIONS(2600), - [anon_sym_module] = ACTIONS(2600), - [anon_sym_any] = ACTIONS(2600), - [anon_sym_number] = ACTIONS(2600), - [anon_sym_boolean] = ACTIONS(2600), - [anon_sym_string] = ACTIONS(2600), - [anon_sym_symbol] = ACTIONS(2600), - [anon_sym_object] = ACTIONS(2600), - [sym_html_comment] = ACTIONS(5), - }, - [602] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3306), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(602), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [603] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2740), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(603), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [594] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2483), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(594), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [604] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2373), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2373), - [sym_subscript_expression] = STATE(2373), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7443), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(604), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2373), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [595] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2231), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2231), + [sym_subscript_expression] = STATE(2231), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7073), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(595), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2231), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(2610), [anon_sym_export] = ACTIONS(2612), [anon_sym_type] = ACTIONS(2612), @@ -104998,13 +103771,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -105034,1002 +103807,477 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(2612), [sym_html_comment] = ACTIONS(5), }, - [605] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2662), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(605), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), - [sym_html_comment] = ACTIONS(5), - }, - [606] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3303), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(606), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [596] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2481), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(596), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [607] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2722), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(607), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [597] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3117), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(597), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1433), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [608] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2719), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(608), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [598] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3226), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(598), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), - [sym_html_comment] = ACTIONS(5), - }, - [609] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2749), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(609), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [610] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2703), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(610), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [599] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2480), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(599), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), - [sym_html_comment] = ACTIONS(5), - }, - [611] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(3011), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(611), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [612] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(612), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), - [sym_html_comment] = ACTIONS(5), - }, - [613] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2608), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(613), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2622), - [sym_private_property_identifier] = ACTIONS(1523), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [614] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3370), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(614), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), + [600] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3197), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(600), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1401), @@ -106037,18 +104285,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -106064,7 +104312,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), [anon_sym_readonly] = ACTIONS(1401), @@ -106084,162 +104332,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [615] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2700), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(615), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), - [sym_html_comment] = ACTIONS(5), - }, - [616] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3188), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(616), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), + [601] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3217), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(601), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1401), @@ -106247,18 +104390,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -106274,7 +104417,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), [anon_sym_readonly] = ACTIONS(1401), @@ -106294,165 +104437,375 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [617] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3361), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(617), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [602] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2529), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(602), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), + [sym_html_comment] = ACTIONS(5), + }, + [603] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(603), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2594), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [618] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2735), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(618), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [604] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2477), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(604), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1805), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [sym_html_comment] = ACTIONS(5), + }, + [605] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2473), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(605), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -106461,9 +104814,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -106486,839 +104839,944 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [619] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2693), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(619), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [606] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3295), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(606), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_number] = ACTIONS(2622), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [620] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2686), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(620), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [607] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2476), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(607), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [621] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3364), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(621), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [608] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2475), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(608), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [622] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2629), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(622), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [609] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2458), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(609), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [623] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2705), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(623), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [610] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3117), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(610), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_number] = ACTIONS(2596), + [sym_private_property_identifier] = ACTIONS(1433), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [624] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2710), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(624), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [611] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2620), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(611), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(2624), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1805), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [sym_html_comment] = ACTIONS(5), + }, + [612] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3240), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(612), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [625] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2776), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(625), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [613] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3243), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(613), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [626] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3154), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(626), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [614] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3244), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(614), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -107326,78 +105784,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [627] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2680), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(627), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [615] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(615), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -107406,9 +105864,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -107431,78 +105889,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [628] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2684), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(628), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [616] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2624), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(616), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -107511,9 +105969,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -107536,104 +105994,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [629] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3185), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(629), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [617] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3042), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(617), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_number] = ACTIONS(2596), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -107641,75 +106099,180 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [630] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3372), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(630), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [618] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3170), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(618), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1683), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1689), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1701), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [sym_html_comment] = ACTIONS(5), + }, + [619] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3077), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(619), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1401), @@ -107717,18 +106280,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -107744,7 +106307,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), [anon_sym_readonly] = ACTIONS(1401), @@ -107764,611 +106327,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [631] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2596), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(631), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2622), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), - [sym_html_comment] = ACTIONS(5), - }, - [632] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3283), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(632), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), - [sym_html_comment] = ACTIONS(5), - }, - [633] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3273), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(633), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), - [sym_html_comment] = ACTIONS(5), - }, - [634] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2837), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(634), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [620] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2640), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(620), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [635] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2827), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(635), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [621] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3245), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(621), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [636] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3280), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(636), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [622] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3202), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(622), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1433), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -108376,180 +106624,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [637] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3262), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(637), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [623] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3116), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(623), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), - [sym_html_comment] = ACTIONS(5), - }, - [638] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3407), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(638), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1401), @@ -108557,18 +106700,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -108584,7 +106727,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), [anon_sym_readonly] = ACTIONS(1401), @@ -108604,86 +106747,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [639] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3236), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(639), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [624] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3247), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(624), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -108691,498 +106834,498 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [640] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2782), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(640), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [625] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2734), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(625), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [641] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2732), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(641), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [626] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2232), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2232), + [sym_subscript_expression] = STATE(2232), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7260), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(626), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2232), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2626), + [anon_sym_export] = ACTIONS(2628), + [anon_sym_type] = ACTIONS(2628), + [anon_sym_namespace] = ACTIONS(2630), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(2628), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(2632), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(2634), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(2636), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(2628), + [anon_sym_readonly] = ACTIONS(2628), + [anon_sym_get] = ACTIONS(2628), + [anon_sym_set] = ACTIONS(2628), + [anon_sym_declare] = ACTIONS(2628), + [anon_sym_public] = ACTIONS(2628), + [anon_sym_private] = ACTIONS(2628), + [anon_sym_protected] = ACTIONS(2628), + [anon_sym_override] = ACTIONS(2628), + [anon_sym_module] = ACTIONS(2628), + [anon_sym_any] = ACTIONS(2628), + [anon_sym_number] = ACTIONS(2628), + [anon_sym_boolean] = ACTIONS(2628), + [anon_sym_string] = ACTIONS(2628), + [anon_sym_symbol] = ACTIONS(2628), + [anon_sym_object] = ACTIONS(2628), [sym_html_comment] = ACTIONS(5), }, - [642] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3260), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(642), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [627] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3214), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(627), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [643] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2645), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(643), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [628] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2457), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(628), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [644] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2726), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(644), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [629] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2631), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(629), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -109191,9 +107334,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -109216,1330 +107359,1120 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [645] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2852), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(645), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [630] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3211), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(630), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [646] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3255), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(646), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), + [631] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3210), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(631), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), - [sym_html_comment] = ACTIONS(5), - }, - [647] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2730), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(647), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [648] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2371), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2371), - [sym_subscript_expression] = STATE(2371), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7251), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(648), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2371), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2624), - [anon_sym_export] = ACTIONS(2626), - [anon_sym_type] = ACTIONS(2626), - [anon_sym_namespace] = ACTIONS(2628), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), + [632] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3249), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(632), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2630), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2632), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2634), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(2626), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [649] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2739), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(649), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [633] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2561), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(633), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1567), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [650] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2865), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(650), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [634] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3250), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(634), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [651] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2866), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(651), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [635] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3173), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(635), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [652] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2745), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(652), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [653] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2770), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(653), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [636] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2743), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(636), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1487), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1499), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [654] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3406), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(654), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1409), + [637] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3251), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(637), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [655] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3401), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(655), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1409), + [638] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2225), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2225), + [sym_subscript_expression] = STATE(2225), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(6990), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(638), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2225), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2638), + [anon_sym_export] = ACTIONS(2640), + [anon_sym_type] = ACTIONS(2640), + [anon_sym_namespace] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(2640), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(2644), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(2646), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(2648), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_readonly] = ACTIONS(2640), + [anon_sym_get] = ACTIONS(2640), + [anon_sym_set] = ACTIONS(2640), + [anon_sym_declare] = ACTIONS(2640), + [anon_sym_public] = ACTIONS(2640), + [anon_sym_private] = ACTIONS(2640), + [anon_sym_protected] = ACTIONS(2640), + [anon_sym_override] = ACTIONS(2640), + [anon_sym_module] = ACTIONS(2640), + [anon_sym_any] = ACTIONS(2640), + [anon_sym_number] = ACTIONS(2640), + [anon_sym_boolean] = ACTIONS(2640), + [anon_sym_string] = ACTIONS(2640), + [anon_sym_symbol] = ACTIONS(2640), + [anon_sym_object] = ACTIONS(2640), [sym_html_comment] = ACTIONS(5), }, - [656] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2851), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(656), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [639] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2620), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(639), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_number] = ACTIONS(2596), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [657] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3455), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(657), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [640] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3295), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(640), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), @@ -110563,16 +108496,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2636), + [sym_number] = ACTIONS(2594), [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), @@ -110599,165 +108532,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [658] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3376), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(658), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), - [sym_html_comment] = ACTIONS(5), - }, - [659] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2783), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(659), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [641] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2452), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(641), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -110766,9 +108594,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -110791,104 +108619,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [660] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3265), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(660), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [642] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3257), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(642), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -110896,209 +108724,314 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [661] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3266), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(661), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), + [643] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3365), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(643), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [662] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3271), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(662), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [644] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2620), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(644), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(2622), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1805), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [sym_html_comment] = ACTIONS(5), + }, + [645] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3001), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(645), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -111106,78 +109039,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [663] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2788), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(663), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [646] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(646), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -111186,9 +109119,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -111211,78 +109144,78 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [664] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2616), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(664), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [647] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2778), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(647), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -111291,9 +109224,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -111316,209 +109249,314 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [665] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2667), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(665), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [648] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3210), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(648), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1683), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1689), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(2596), + [sym_private_property_identifier] = ACTIONS(1701), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [sym_html_comment] = ACTIONS(5), + }, + [649] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2456), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(649), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [666] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3278), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(666), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [650] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3258), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(650), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -111526,419 +109564,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [667] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2781), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(667), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [651] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2454), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(651), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [668] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2797), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(668), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [652] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2538), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(652), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [669] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2752), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(669), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [653] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2540), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(653), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [670] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3281), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(670), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [654] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3259), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(654), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -111946,314 +109984,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [671] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2920), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(671), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [655] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3296), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(655), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [672] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3282), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(672), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), + [656] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3295), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(656), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [673] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3286), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(673), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), + [657] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3343), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(657), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(184), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), + [sym_html_comment] = ACTIONS(5), + }, + [658] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3050), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(658), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -112261,104 +110404,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [674] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3242), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(674), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [659] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3260), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(659), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -112366,104 +110509,104 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [675] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3293), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(675), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [660] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3261), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(660), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -112471,75 +110614,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [676] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3360), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(676), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), + [661] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3123), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(661), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1401), @@ -112547,18 +110690,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -112574,7 +110717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), [anon_sym_readonly] = ACTIONS(1401), @@ -112594,585 +110737,585 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [677] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2664), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(677), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), + [662] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2461), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(662), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), + [sym_private_property_identifier] = ACTIONS(1567), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [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_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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [678] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2658), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(678), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), + [663] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2474), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(663), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), + [sym_number] = ACTIONS(2650), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [679] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3295), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(679), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), + [664] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3355), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(664), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [680] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3396), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(680), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1409), + [665] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2521), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(665), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1567), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [681] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(681), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), + [666] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2482), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(666), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [682] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2372), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2372), - [sym_subscript_expression] = STATE(2372), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7445), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(682), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2372), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2638), - [anon_sym_export] = ACTIONS(2640), - [anon_sym_type] = ACTIONS(2640), - [anon_sym_namespace] = ACTIONS(2642), + [667] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2229), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2229), + [sym_subscript_expression] = STATE(2229), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7068), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(667), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2229), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2652), + [anon_sym_export] = ACTIONS(2654), + [anon_sym_type] = ACTIONS(2654), + [anon_sym_namespace] = ACTIONS(2656), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2640), + [anon_sym_let] = ACTIONS(2654), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), @@ -113182,19 +111325,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2644), + [anon_sym_async] = ACTIONS(2658), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2646), + [anon_sym_new] = ACTIONS(2660), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -113204,211 +111347,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2648), + [sym_undefined] = ACTIONS(2662), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2640), - [anon_sym_readonly] = ACTIONS(2640), - [anon_sym_get] = ACTIONS(2640), - [anon_sym_set] = ACTIONS(2640), - [anon_sym_declare] = ACTIONS(2640), - [anon_sym_public] = ACTIONS(2640), - [anon_sym_private] = ACTIONS(2640), - [anon_sym_protected] = ACTIONS(2640), - [anon_sym_override] = ACTIONS(2640), - [anon_sym_module] = ACTIONS(2640), - [anon_sym_any] = ACTIONS(2640), - [anon_sym_number] = ACTIONS(2640), - [anon_sym_boolean] = ACTIONS(2640), - [anon_sym_string] = ACTIONS(2640), - [anon_sym_symbol] = ACTIONS(2640), - [anon_sym_object] = ACTIONS(2640), + [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_object] = ACTIONS(2654), [sym_html_comment] = ACTIONS(5), }, - [683] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2641), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(683), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), + [668] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(668), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), + [sym_private_property_identifier] = ACTIONS(1567), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [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_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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [684] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3140), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(684), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [669] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3264), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(669), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -113416,104 +111559,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [685] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3319), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(685), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [670] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2771), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(670), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1487), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1499), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), + [sym_html_comment] = ACTIONS(5), + }, + [671] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2650), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(671), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), + [sym_html_comment] = ACTIONS(5), + }, + [672] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2463), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(672), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1567), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1543), + [sym_html_comment] = ACTIONS(5), + }, + [673] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3152), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(673), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -113521,304 +111979,409 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [686] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3148), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(686), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1409), + [674] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3070), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(674), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [687] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2636), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(687), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), + [675] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2726), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(675), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [688] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2919), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), + [676] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2468), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(688), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(676), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1567), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1543), + [sym_html_comment] = ACTIONS(5), + }, + [677] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2673), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(677), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -113827,7 +112390,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), + [sym_number] = ACTIONS(2594), [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), @@ -113836,209 +112399,524 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [689] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3324), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(689), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), + [678] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3295), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(678), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_number] = ACTIONS(2596), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), + [sym_html_comment] = ACTIONS(5), + }, + [679] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2469), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(679), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1567), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [690] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3334), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(690), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [680] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(680), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1567), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1543), + [sym_html_comment] = ACTIONS(5), + }, + [681] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2478), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(681), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1567), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1543), + [sym_html_comment] = ACTIONS(5), + }, + [682] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3232), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(682), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1433), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -114046,498 +112924,708 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [691] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2633), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(691), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), + [683] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2489), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(683), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), + [sym_private_property_identifier] = ACTIONS(1567), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [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_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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [692] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2632), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(692), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), + [684] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2490), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(684), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), + [sym_private_property_identifier] = ACTIONS(1567), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [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_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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [693] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2628), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(693), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), + [685] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2493), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(685), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), + [sym_private_property_identifier] = ACTIONS(1567), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [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_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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [694] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2379), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2379), - [sym_subscript_expression] = STATE(2379), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7173), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(694), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2379), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2650), - [anon_sym_export] = ACTIONS(2652), - [anon_sym_type] = ACTIONS(2652), - [anon_sym_namespace] = ACTIONS(2654), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), + [686] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2602), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(686), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2652), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), + [sym_html_comment] = ACTIONS(5), + }, + [687] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3186), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(687), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2656), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2658), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2660), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2652), - [anon_sym_readonly] = ACTIONS(2652), - [anon_sym_get] = ACTIONS(2652), - [anon_sym_set] = ACTIONS(2652), - [anon_sym_declare] = ACTIONS(2652), - [anon_sym_public] = ACTIONS(2652), - [anon_sym_private] = ACTIONS(2652), - [anon_sym_protected] = ACTIONS(2652), - [anon_sym_override] = ACTIONS(2652), - [anon_sym_module] = ACTIONS(2652), - [anon_sym_any] = ACTIONS(2652), - [anon_sym_number] = ACTIONS(2652), - [anon_sym_boolean] = ACTIONS(2652), - [anon_sym_string] = ACTIONS(2652), - [anon_sym_symbol] = ACTIONS(2652), - [anon_sym_object] = ACTIONS(2652), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [695] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2765), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(695), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [688] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2494), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(688), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1567), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1543), + [sym_html_comment] = ACTIONS(5), + }, + [689] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2622), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(689), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -114546,9 +113634,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -114571,393 +113659,603 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [696] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2631), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(696), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), + [690] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2712), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(690), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1487), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1499), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), + [sym_html_comment] = ACTIONS(5), + }, + [691] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2496), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(691), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), + [sym_private_property_identifier] = ACTIONS(1567), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [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_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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [697] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2594), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(697), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), + [692] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(692), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), + [sym_private_property_identifier] = ACTIONS(1567), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [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_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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [698] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2622), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(698), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [693] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2754), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(693), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1805), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [sym_html_comment] = ACTIONS(5), + }, + [694] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2503), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(694), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), + [sym_private_property_identifier] = ACTIONS(1567), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [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_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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [699] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2815), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(699), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [695] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2594), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(695), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -114966,9 +114264,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -114991,390 +114289,285 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), - [sym_html_comment] = ACTIONS(5), - }, - [700] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2620), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(700), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [701] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2614), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(701), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), + [696] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2506), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(696), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), + [sym_private_property_identifier] = ACTIONS(1567), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [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_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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [702] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2819), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(702), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [697] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3248), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(697), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(1433), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [703] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3393), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(703), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), + [698] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3157), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(698), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1401), @@ -115382,18 +114575,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -115409,7 +114602,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), [anon_sym_readonly] = ACTIONS(1401), @@ -115429,57 +114622,372 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [704] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3392), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(704), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [699] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2754), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4968), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(699), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2100), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2664), + [anon_sym_export] = ACTIONS(1771), + [anon_sym_type] = ACTIONS(1771), + [anon_sym_namespace] = ACTIONS(1773), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(999), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1771), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1777), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2666), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(2668), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1771), + [anon_sym_readonly] = ACTIONS(1771), + [anon_sym_get] = ACTIONS(1771), + [anon_sym_set] = ACTIONS(1771), + [anon_sym_declare] = ACTIONS(1771), + [anon_sym_public] = ACTIONS(1771), + [anon_sym_private] = ACTIONS(1771), + [anon_sym_protected] = ACTIONS(1771), + [anon_sym_override] = ACTIONS(1771), + [anon_sym_module] = ACTIONS(1771), + [anon_sym_any] = ACTIONS(1771), + [anon_sym_number] = ACTIONS(1771), + [anon_sym_boolean] = ACTIONS(1771), + [anon_sym_string] = ACTIONS(1771), + [anon_sym_symbol] = ACTIONS(1771), + [anon_sym_object] = ACTIONS(1771), + [sym_html_comment] = ACTIONS(5), + }, + [700] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2699), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(700), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1583), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1577), + [sym_html_comment] = ACTIONS(5), + }, + [701] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3215), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(701), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1683), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1689), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1701), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1859), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), + [sym_html_comment] = ACTIONS(5), + }, + [702] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3276), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(702), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1401), @@ -115487,18 +114995,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -115514,7 +115022,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), [anon_sym_readonly] = ACTIONS(1401), @@ -115534,162 +115042,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [705] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2611), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(705), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [706] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3391), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(706), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), + [703] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3246), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(703), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1401), @@ -115697,18 +115100,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -115724,7 +115127,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), [anon_sym_readonly] = ACTIONS(1401), @@ -115744,191 +115147,296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [707] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2617), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(707), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [704] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3042), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(704), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [708] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3390), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(708), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [705] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3308), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(705), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(173), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(184), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1113), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), + [sym_html_comment] = ACTIONS(5), + }, + [706] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3194), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(706), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -115936,94 +115444,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [709] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2862), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(709), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [707] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2698), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(707), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -116032,7 +115540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2594), + [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), @@ -116041,495 +115549,600 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [710] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2701), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(710), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [708] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3357), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(708), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1107), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(184), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [711] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2900), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(711), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [709] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3008), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(709), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [712] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3389), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(712), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1409), + [710] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3044), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(710), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [713] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2918), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(713), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [711] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2932), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(711), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1597), + [sym_html_comment] = ACTIONS(5), + }, + [712] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(2998), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(712), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1683), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [714] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3387), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(714), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), + [713] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3139), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(713), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1401), @@ -116537,18 +116150,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -116564,7 +116177,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), [anon_sym_readonly] = ACTIONS(1401), @@ -116584,57 +116197,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [715] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3386), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(715), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), + [714] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3241), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(714), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1401), @@ -116642,18 +116255,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -116669,7 +116282,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), [anon_sym_readonly] = ACTIONS(1401), @@ -116689,57 +116302,162 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, + [715] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2930), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(715), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1597), + [sym_html_comment] = ACTIONS(5), + }, [716] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3384), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3218), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(716), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1401), @@ -116747,18 +116465,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -116774,7 +116492,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), [anon_sym_readonly] = ACTIONS(1401), @@ -116795,374 +116513,374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [717] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3257), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3167), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(717), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, [718] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2834), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3359), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(718), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, [719] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3383), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2621), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(719), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1409), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, [720] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2380), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2380), - [sym_subscript_expression] = STATE(2380), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7455), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3362), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(720), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2380), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2662), - [anon_sym_export] = ACTIONS(2664), - [anon_sym_type] = ACTIONS(2664), - [anon_sym_namespace] = ACTIONS(2666), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2664), + [anon_sym_let] = ACTIONS(1095), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), @@ -117172,19 +116890,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2668), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2670), + [anon_sym_new] = ACTIONS(1109), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -117194,182 +116912,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2672), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2664), - [anon_sym_readonly] = ACTIONS(2664), - [anon_sym_get] = ACTIONS(2664), - [anon_sym_set] = ACTIONS(2664), - [anon_sym_declare] = ACTIONS(2664), - [anon_sym_public] = ACTIONS(2664), - [anon_sym_private] = ACTIONS(2664), - [anon_sym_protected] = ACTIONS(2664), - [anon_sym_override] = ACTIONS(2664), - [anon_sym_module] = ACTIONS(2664), - [anon_sym_any] = ACTIONS(2664), - [anon_sym_number] = ACTIONS(2664), - [anon_sym_boolean] = ACTIONS(2664), - [anon_sym_string] = ACTIONS(2664), - [anon_sym_symbol] = ACTIONS(2664), - [anon_sym_object] = ACTIONS(2664), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, [721] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2228), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2228), + [sym_subscript_expression] = STATE(2228), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7262), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(721), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2228), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2670), + [anon_sym_export] = ACTIONS(2672), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_namespace] = ACTIONS(2674), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(2672), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(2676), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(2678), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(184), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(2680), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(2672), + [anon_sym_readonly] = ACTIONS(2672), + [anon_sym_get] = ACTIONS(2672), + [anon_sym_set] = ACTIONS(2672), + [anon_sym_declare] = ACTIONS(2672), + [anon_sym_public] = ACTIONS(2672), + [anon_sym_private] = ACTIONS(2672), + [anon_sym_protected] = ACTIONS(2672), + [anon_sym_override] = ACTIONS(2672), + [anon_sym_module] = ACTIONS(2672), + [anon_sym_any] = ACTIONS(2672), + [anon_sym_number] = ACTIONS(2672), + [anon_sym_boolean] = ACTIONS(2672), + [anon_sym_string] = ACTIONS(2672), + [anon_sym_symbol] = ACTIONS(2672), + [anon_sym_object] = ACTIONS(2672), [sym_html_comment] = ACTIONS(5), }, [722] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3381), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3225), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(722), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1401), @@ -117377,18 +117095,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -117404,7 +117122,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), [anon_sym_readonly] = ACTIONS(1401), @@ -117425,59 +117143,584 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [723] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2823), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3019), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), [sym_comment] = STATE(723), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1851), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), + [sym_html_comment] = ACTIONS(5), + }, + [724] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2958), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(724), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1583), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1577), + [sym_html_comment] = ACTIONS(5), + }, + [725] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2740), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(725), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1487), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1499), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), + [sym_html_comment] = ACTIONS(5), + }, + [726] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2984), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(726), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1583), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1155), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1819), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1577), + [sym_html_comment] = ACTIONS(5), + }, + [727] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2735), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(727), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1487), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1499), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), + [sym_html_comment] = ACTIONS(5), + }, + [728] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2533), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(728), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -117486,9 +117729,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -117511,75 +117754,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [724] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3380), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(724), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), + [729] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3236), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(729), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1401), @@ -117587,18 +117830,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -117614,7 +117857,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), [anon_sym_readonly] = ACTIONS(1401), @@ -117634,57 +117877,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [725] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3378), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(725), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), + [730] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3235), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(730), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1401), @@ -117692,18 +117935,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -117719,7 +117962,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), [anon_sym_readonly] = ACTIONS(1401), @@ -117739,372 +117982,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [726] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(2985), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(726), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [727] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3455), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(727), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2594), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [sym_html_comment] = ACTIONS(5), - }, - [728] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3338), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(728), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [731] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3082), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(731), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), - [sym_html_comment] = ACTIONS(5), - }, - [729] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3373), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(729), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1401), @@ -118112,18 +118040,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -118139,7 +118067,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), [anon_sym_readonly] = ACTIONS(1401), @@ -118159,267 +118087,372 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [730] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2862), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), + [732] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(730), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(732), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(2650), + [sym_private_property_identifier] = ACTIONS(1567), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1543), + [sym_html_comment] = ACTIONS(5), + }, + [733] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2717), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(733), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [731] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2848), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(731), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [734] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2718), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(734), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [732] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3371), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(732), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), + [735] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3234), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(735), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1401), @@ -118427,18 +118460,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -118454,7 +118487,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), [anon_sym_readonly] = ACTIONS(1401), @@ -118474,76 +118507,181 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [733] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3368), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(733), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1409), + [736] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2914), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(736), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1597), + [sym_html_comment] = ACTIONS(5), + }, + [737] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3233), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(737), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -118559,7 +118697,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), [anon_sym_readonly] = ACTIONS(1401), @@ -118579,92 +118717,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [734] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3026), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(734), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), + [738] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2567), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(738), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), [anon_sym_export] = ACTIONS(1445), [anon_sym_type] = ACTIONS(1445), [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), @@ -118684,76 +118822,76 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [735] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2822), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(735), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [739] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2655), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(739), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -118771,600 +118909,600 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [736] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2656), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(736), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), + [740] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2547), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(740), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [737] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3128), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(737), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [741] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2513), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(741), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [738] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3366), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(738), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1409), + [742] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2531), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(742), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1567), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [739] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2917), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(739), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [743] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3177), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(743), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [740] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3124), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(740), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [744] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2741), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(744), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [741] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3142), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(741), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), + [745] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3122), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(745), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1401), @@ -119372,18 +119510,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -119399,7 +119537,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), [anon_sym_readonly] = ACTIONS(1401), @@ -119419,1110 +119557,1110 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [742] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2974), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(742), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [746] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2596), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(746), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1567), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [743] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3110), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(743), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [747] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2598), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(747), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1567), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [744] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(3005), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(744), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1795), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1543), [sym_html_comment] = ACTIONS(5), }, - [745] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3345), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(745), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [748] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3169), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(748), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [746] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3062), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(746), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [749] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(749), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [747] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3061), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(747), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [750] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2551), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(750), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [748] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3050), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(748), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [751] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2731), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(751), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1487), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1499), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [749] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3043), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(749), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [752] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2934), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(752), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [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_object] = ACTIONS(1597), [sym_html_comment] = ACTIONS(5), }, - [750] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3042), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(750), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [753] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2736), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(753), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1487), + [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1499), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [751] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3041), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(751), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [754] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2737), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(754), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1487), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1499), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), + [sym_html_comment] = ACTIONS(5), + }, + [755] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2553), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(755), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [752] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2378), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2378), - [sym_subscript_expression] = STATE(2378), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7358), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(752), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2378), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2674), - [anon_sym_export] = ACTIONS(2676), - [anon_sym_type] = ACTIONS(2676), - [anon_sym_namespace] = ACTIONS(2678), + [756] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2223), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2223), + [sym_subscript_expression] = STATE(2223), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7139), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(756), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2223), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2682), + [anon_sym_export] = ACTIONS(2684), + [anon_sym_type] = ACTIONS(2684), + [anon_sym_namespace] = ACTIONS(2686), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2676), + [anon_sym_let] = ACTIONS(2684), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), @@ -120532,19 +120670,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2680), + [anon_sym_async] = ACTIONS(2688), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2682), + [anon_sym_new] = ACTIONS(2690), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -120554,807 +120692,702 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2684), + [sym_undefined] = ACTIONS(2692), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(2676), - [anon_sym_readonly] = ACTIONS(2676), - [anon_sym_get] = ACTIONS(2676), - [anon_sym_set] = ACTIONS(2676), - [anon_sym_declare] = ACTIONS(2676), - [anon_sym_public] = ACTIONS(2676), - [anon_sym_private] = ACTIONS(2676), - [anon_sym_protected] = ACTIONS(2676), - [anon_sym_override] = ACTIONS(2676), - [anon_sym_module] = ACTIONS(2676), - [anon_sym_any] = ACTIONS(2676), - [anon_sym_number] = ACTIONS(2676), - [anon_sym_boolean] = ACTIONS(2676), - [anon_sym_string] = ACTIONS(2676), - [anon_sym_symbol] = ACTIONS(2676), - [anon_sym_object] = ACTIONS(2676), + [anon_sym_static] = ACTIONS(2684), + [anon_sym_readonly] = ACTIONS(2684), + [anon_sym_get] = ACTIONS(2684), + [anon_sym_set] = ACTIONS(2684), + [anon_sym_declare] = ACTIONS(2684), + [anon_sym_public] = ACTIONS(2684), + [anon_sym_private] = ACTIONS(2684), + [anon_sym_protected] = ACTIONS(2684), + [anon_sym_override] = ACTIONS(2684), + [anon_sym_module] = ACTIONS(2684), + [anon_sym_any] = ACTIONS(2684), + [anon_sym_number] = ACTIONS(2684), + [anon_sym_boolean] = ACTIONS(2684), + [anon_sym_string] = ACTIONS(2684), + [anon_sym_symbol] = ACTIONS(2684), + [anon_sym_object] = ACTIONS(2684), [sym_html_comment] = ACTIONS(5), }, - [753] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3040), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(753), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [757] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2554), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(757), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [754] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3037), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(754), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [758] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2890), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(758), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_number] = ACTIONS(2650), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [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_object] = ACTIONS(1597), [sym_html_comment] = ACTIONS(5), }, - [755] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3035), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(755), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [759] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2713), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(759), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [756] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2835), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(756), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [760] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2744), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(760), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [757] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3034), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(757), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [761] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2909), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(761), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [758] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2916), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(758), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1597), [sym_html_comment] = ACTIONS(5), }, - [759] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3032), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(759), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [762] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2555), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(762), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [760] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3455), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(760), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [763] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3310), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(763), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), @@ -121378,16 +121411,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2686), + [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), @@ -121414,1425 +121447,1425 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [761] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2915), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(761), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [764] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2745), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(764), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [762] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3346), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(762), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [765] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2908), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(765), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1597), + [sym_html_comment] = ACTIONS(5), + }, + [766] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2748), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(766), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [763] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3267), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(763), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [767] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1999), + [sym_subscript_expression] = STATE(1999), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(4614), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(767), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1999), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2694), + [anon_sym_export] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_namespace] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(1061), + [anon_sym_typeof] = ACTIONS(173), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(2696), + [anon_sym_BANG] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(2019), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(2700), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(2702), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_undefined] = ACTIONS(2704), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_readonly] = ACTIONS(2696), + [anon_sym_get] = ACTIONS(2696), + [anon_sym_set] = ACTIONS(2696), + [anon_sym_declare] = ACTIONS(2696), + [anon_sym_public] = ACTIONS(2696), + [anon_sym_private] = ACTIONS(2696), + [anon_sym_protected] = ACTIONS(2696), + [anon_sym_override] = ACTIONS(2696), + [anon_sym_module] = ACTIONS(2696), + [anon_sym_any] = ACTIONS(2696), + [anon_sym_number] = ACTIONS(2696), + [anon_sym_boolean] = ACTIONS(2696), + [anon_sym_string] = ACTIONS(2696), + [anon_sym_symbol] = ACTIONS(2696), + [anon_sym_object] = ACTIONS(2696), [sym_html_comment] = ACTIONS(5), }, - [764] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3162), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(764), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [768] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2749), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(768), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [765] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3264), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(765), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [769] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2485), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(769), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), + [sym_html_comment] = ACTIONS(5), + }, + [770] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2752), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(770), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [766] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3412), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(766), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1409), + [771] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2753), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(771), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [767] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(767), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [772] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2716), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(772), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2636), - [sym_private_property_identifier] = ACTIONS(992), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), - [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), - [sym_html_comment] = ACTIONS(5), - }, - [768] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2853), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(768), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [769] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3422), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(769), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1409), + [773] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2227), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2227), + [sym_subscript_expression] = STATE(2227), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7158), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(773), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2227), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2706), + [anon_sym_export] = ACTIONS(2708), + [anon_sym_type] = ACTIONS(2708), + [anon_sym_namespace] = ACTIONS(2710), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(2708), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(2712), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(2714), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), - [sym_html_comment] = ACTIONS(5), - }, - [770] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2608), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(770), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(2716), [anon_sym_AT] = ACTIONS(95), - [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_static] = ACTIONS(2708), + [anon_sym_readonly] = ACTIONS(2708), + [anon_sym_get] = ACTIONS(2708), + [anon_sym_set] = ACTIONS(2708), + [anon_sym_declare] = ACTIONS(2708), + [anon_sym_public] = ACTIONS(2708), + [anon_sym_private] = ACTIONS(2708), + [anon_sym_protected] = ACTIONS(2708), + [anon_sym_override] = ACTIONS(2708), + [anon_sym_module] = ACTIONS(2708), + [anon_sym_any] = ACTIONS(2708), + [anon_sym_number] = ACTIONS(2708), + [anon_sym_boolean] = ACTIONS(2708), + [anon_sym_string] = ACTIONS(2708), + [anon_sym_symbol] = ACTIONS(2708), + [anon_sym_object] = ACTIONS(2708), [sym_html_comment] = ACTIONS(5), }, - [771] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3016), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(771), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [774] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2786), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(774), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [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_object] = ACTIONS(1597), [sym_html_comment] = ACTIONS(5), }, - [772] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2167), - [sym_subscript_expression] = STATE(2167), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(4780), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(772), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2167), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2688), - [anon_sym_export] = ACTIONS(2690), - [anon_sym_type] = ACTIONS(2690), - [anon_sym_namespace] = ACTIONS(2692), - [anon_sym_LBRACE] = ACTIONS(1061), - [anon_sym_typeof] = ACTIONS(173), + [775] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2751), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(775), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2690), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(2017), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2694), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2696), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2698), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(2690), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [773] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(3014), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(773), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [776] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3128), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(776), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1653), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1665), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [774] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2734), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(774), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [777] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2769), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(777), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -122841,9 +122874,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -122866,94 +122899,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [775] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2914), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(775), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [778] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2653), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(778), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -122971,94 +123004,199 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [776] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2813), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(776), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [779] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2809), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(779), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1597), + [sym_html_comment] = ACTIONS(5), + }, + [780] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2760), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(780), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -123076,94 +123214,304 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [777] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2862), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(777), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [781] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2756), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(781), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1487), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1499), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), + [sym_html_comment] = ACTIONS(5), + }, + [782] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2757), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(782), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1487), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1499), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1827), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), + [sym_html_comment] = ACTIONS(5), + }, + [783] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2654), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(783), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -123172,7 +123520,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2636), + [sym_number] = ACTIONS(188), [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), @@ -123181,498 +123529,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [778] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2621), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(778), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [779] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2595), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(779), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), - [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_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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [780] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2831), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(780), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [784] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3231), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(784), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), + [anon_sym_export] = ACTIONS(1401), + [anon_sym_type] = ACTIONS(1401), + [anon_sym_namespace] = ACTIONS(1403), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1401), + [anon_sym_BANG] = ACTIONS(1409), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1411), + [anon_sym_yield] = ACTIONS(1413), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1841), + [anon_sym_using] = ACTIONS(1421), + [anon_sym_PLUS] = ACTIONS(1409), + [anon_sym_DASH] = ACTIONS(1409), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1409), + [anon_sym_void] = ACTIONS(1409), + [anon_sym_delete] = ACTIONS(1409), + [anon_sym_PLUS_PLUS] = ACTIONS(1427), + [anon_sym_DASH_DASH] = ACTIONS(1427), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1433), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1401), + [anon_sym_readonly] = ACTIONS(1401), + [anon_sym_get] = ACTIONS(1401), + [anon_sym_set] = ACTIONS(1401), + [anon_sym_declare] = ACTIONS(1401), + [anon_sym_public] = ACTIONS(1401), + [anon_sym_private] = ACTIONS(1401), + [anon_sym_protected] = ACTIONS(1401), + [anon_sym_override] = ACTIONS(1401), + [anon_sym_module] = ACTIONS(1401), + [anon_sym_any] = ACTIONS(1401), + [anon_sym_number] = ACTIONS(1401), + [anon_sym_boolean] = ACTIONS(1401), + [anon_sym_string] = ACTIONS(1401), + [anon_sym_symbol] = ACTIONS(1401), + [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [781] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2829), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(781), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [785] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3313), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(785), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1093), + [anon_sym_export] = ACTIONS(1095), + [anon_sym_type] = ACTIONS(1095), + [anon_sym_namespace] = ACTIONS(1097), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1095), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1107), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1109), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1113), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1095), + [anon_sym_readonly] = ACTIONS(1095), + [anon_sym_get] = ACTIONS(1095), + [anon_sym_set] = ACTIONS(1095), + [anon_sym_declare] = ACTIONS(1095), + [anon_sym_public] = ACTIONS(1095), + [anon_sym_private] = ACTIONS(1095), + [anon_sym_protected] = ACTIONS(1095), + [anon_sym_override] = ACTIONS(1095), + [anon_sym_module] = ACTIONS(1095), + [anon_sym_any] = ACTIONS(1095), + [anon_sym_number] = ACTIONS(1095), + [anon_sym_boolean] = ACTIONS(1095), + [anon_sym_string] = ACTIONS(1095), + [anon_sym_symbol] = ACTIONS(1095), + [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [782] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2718), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(782), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [786] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2557), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(786), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -123681,9 +123819,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -123706,75 +123844,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [783] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3238), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(783), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), + [787] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2212), + [sym_expression] = STATE(3021), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7250), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2212), + [sym_subscript_expression] = STATE(2212), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3852), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7309), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(787), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2212), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(600), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1837), [anon_sym_export] = ACTIONS(1401), [anon_sym_type] = ACTIONS(1401), [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1409), [anon_sym_import] = ACTIONS(129), [anon_sym_let] = ACTIONS(1401), @@ -123782,18 +123920,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1411), [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), [anon_sym_async] = ACTIONS(1417), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), + [anon_sym_new] = ACTIONS(1841), [anon_sym_using] = ACTIONS(1421), [anon_sym_PLUS] = ACTIONS(1409), [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1409), [anon_sym_void] = ACTIONS(1409), @@ -123809,7 +123947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1843), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1401), [anon_sym_readonly] = ACTIONS(1401), @@ -123829,286 +123967,286 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1401), [sym_html_comment] = ACTIONS(5), }, - [784] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2375), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2375), - [sym_subscript_expression] = STATE(2375), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7221), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(784), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2375), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2700), - [anon_sym_export] = ACTIONS(2702), - [anon_sym_type] = ACTIONS(2702), - [anon_sym_namespace] = ACTIONS(2704), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), + [788] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2558), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(788), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2702), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2706), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2708), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2710), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(2702), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [785] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3414), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(785), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [789] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2620), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(789), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1455), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1025), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [786] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2913), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(786), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [790] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2730), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(790), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -124126,514 +124264,724 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [787] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2949), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(787), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1129), + [791] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2907), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(791), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_BANG] = ACTIONS(1129), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1133), - [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1817), - [anon_sym_using] = ACTIONS(1143), - [anon_sym_PLUS] = ACTIONS(1129), - [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1129), - [anon_sym_void] = ACTIONS(1129), - [anon_sym_delete] = ACTIONS(1129), - [anon_sym_PLUS_PLUS] = ACTIONS(1149), - [anon_sym_DASH_DASH] = ACTIONS(1149), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1155), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1819), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1597), [sym_html_comment] = ACTIONS(5), }, - [788] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), + [792] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2612), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(792), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), + [sym_html_comment] = ACTIONS(5), + }, + [793] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), [sym_expression] = STATE(2812), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(788), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(793), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1597), + [sym_html_comment] = ACTIONS(5), + }, + [794] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3016), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(794), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [789] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(2927), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(789), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [795] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2825), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(795), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), + [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_object] = ACTIONS(1597), [sym_html_comment] = ACTIONS(5), }, - [790] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3417), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(790), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [796] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3018), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(796), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [791] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2910), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(791), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [797] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2681), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(797), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -124651,1015 +124999,805 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [792] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3372), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(792), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1409), + [798] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2678), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(798), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2594), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [793] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3427), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(793), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [799] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2559), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(799), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), - [sym_html_comment] = ACTIONS(5), - }, - [794] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3311), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(794), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(91), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [795] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2748), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(795), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), + [800] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2808), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(800), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [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_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_object] = ACTIONS(1597), [sym_html_comment] = ACTIONS(5), }, - [796] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2809), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(796), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [801] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2838), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(801), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [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_object] = ACTIONS(1597), [sym_html_comment] = ACTIONS(5), }, - [797] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2808), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(797), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [802] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2759), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(802), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [798] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2271), - [sym_expression] = STATE(2764), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7122), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2271), - [sym_subscript_expression] = STATE(2271), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3993), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7357), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(798), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2271), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(795), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1799), - [anon_sym_export] = ACTIONS(1491), - [anon_sym_type] = ACTIONS(1491), - [anon_sym_namespace] = ACTIONS(1493), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1499), + [803] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2890), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(803), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1491), - [anon_sym_BANG] = ACTIONS(1499), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1501), - [anon_sym_yield] = ACTIONS(1503), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1507), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1803), - [anon_sym_using] = ACTIONS(1511), - [anon_sym_PLUS] = ACTIONS(1499), - [anon_sym_DASH] = ACTIONS(1499), - [anon_sym_SLASH] = ACTIONS(1197), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1499), - [anon_sym_void] = ACTIONS(1499), - [anon_sym_delete] = ACTIONS(1499), - [anon_sym_PLUS_PLUS] = ACTIONS(1517), - [anon_sym_DASH_DASH] = ACTIONS(1517), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1523), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1805), - [anon_sym_AT] = ACTIONS(95), - [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), - [sym_html_comment] = ACTIONS(5), - }, - [799] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2849), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(799), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [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_object] = ACTIONS(1597), [sym_html_comment] = ACTIONS(5), }, - [800] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3465), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(800), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), + [804] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2762), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(804), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [801] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3463), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(801), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [805] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3323), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(805), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), @@ -125683,13 +125821,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -125719,375 +125857,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [802] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2806), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(802), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), - [sym_html_comment] = ACTIONS(5), - }, - [803] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2886), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(803), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [806] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2846), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(806), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), - [sym_html_comment] = ACTIONS(5), - }, - [804] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3466), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(804), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [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_object] = ACTIONS(1597), [sym_html_comment] = ACTIONS(5), }, - [805] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2691), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(805), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), + [807] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2719), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(807), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), + [anon_sym_let] = ACTIONS(1509), [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_await] = ACTIONS(41), @@ -126096,9 +126024,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1811), [anon_sym_using] = ACTIONS(79), [anon_sym_PLUS] = ACTIONS(21), @@ -126121,199 +126049,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), - [sym_html_comment] = ACTIONS(5), - }, - [806] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2805), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(806), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [807] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2904), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(807), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [808] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2671), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(808), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -126331,314 +126154,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [808] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3428), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(808), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [809] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3150), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(809), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [809] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3416), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(809), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [810] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2896), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(810), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [810] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3362), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(810), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [811] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2915), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(811), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1597), + [sym_html_comment] = ACTIONS(5), + }, + [812] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3136), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(812), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -126646,175 +126574,280 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [811] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3361), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(811), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [813] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2848), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(813), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1597), + [sym_html_comment] = ACTIONS(5), + }, + [814] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2764), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(814), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [812] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3473), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(812), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [815] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3328), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(815), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), @@ -126838,13 +126871,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -126874,262 +126907,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [813] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(2945), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(813), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [816] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2093), + [sym_expression] = STATE(2577), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7392), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2093), + [sym_subscript_expression] = STATE(2093), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3826), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7391), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(816), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2093), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(671), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1807), + [anon_sym_export] = ACTIONS(1509), + [anon_sym_type] = ACTIONS(1509), + [anon_sym_namespace] = ACTIONS(1511), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(21), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1509), + [anon_sym_BANG] = ACTIONS(21), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(41), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1521), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1811), + [anon_sym_using] = ACTIONS(79), + [anon_sym_PLUS] = ACTIONS(21), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(21), + [anon_sym_void] = ACTIONS(21), + [anon_sym_delete] = ACTIONS(21), + [anon_sym_PLUS_PLUS] = ACTIONS(85), + [anon_sym_DASH_DASH] = ACTIONS(85), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(91), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [814] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2882), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(814), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(93), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1509), + [anon_sym_readonly] = ACTIONS(1509), + [anon_sym_get] = ACTIONS(1509), + [anon_sym_set] = ACTIONS(1509), + [anon_sym_declare] = ACTIONS(1509), + [anon_sym_public] = ACTIONS(1509), + [anon_sym_private] = ACTIONS(1509), + [anon_sym_protected] = ACTIONS(1509), + [anon_sym_override] = ACTIONS(1509), + [anon_sym_module] = ACTIONS(1509), + [anon_sym_any] = ACTIONS(1509), + [anon_sym_number] = ACTIONS(1509), + [anon_sym_boolean] = ACTIONS(1509), + [anon_sym_string] = ACTIONS(1509), + [anon_sym_symbol] = ACTIONS(1509), + [anon_sym_object] = ACTIONS(1509), [sym_html_comment] = ACTIONS(5), }, - [815] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3436), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(815), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [817] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3329), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(817), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), @@ -127153,13 +127081,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -127189,157 +127117,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [816] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2803), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(816), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [818] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3035), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(818), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [817] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3455), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(817), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [819] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3341), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(819), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), @@ -127363,13 +127291,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -127399,157 +127327,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [818] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(2943), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(818), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [819] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3474), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(819), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [820] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3333), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(820), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), @@ -127573,13 +127396,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -127609,197 +127432,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [820] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(820), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [821] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2226), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2226), + [sym_subscript_expression] = STATE(2226), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7115), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(821), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2226), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2720), + [anon_sym_type] = ACTIONS(2720), + [anon_sym_namespace] = ACTIONS(2722), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(2720), + [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(138), + [anon_sym_yield] = ACTIONS(140), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(2724), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(2726), + [anon_sym_using] = ACTIONS(158), + [anon_sym_PLUS] = ACTIONS(173), + [anon_sym_DASH] = ACTIONS(173), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(173), + [anon_sym_void] = ACTIONS(173), + [anon_sym_delete] = ACTIONS(173), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(184), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(2728), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(2720), + [anon_sym_readonly] = ACTIONS(2720), + [anon_sym_get] = ACTIONS(2720), + [anon_sym_set] = ACTIONS(2720), + [anon_sym_declare] = ACTIONS(2720), + [anon_sym_public] = ACTIONS(2720), + [anon_sym_private] = ACTIONS(2720), + [anon_sym_protected] = ACTIONS(2720), + [anon_sym_override] = ACTIONS(2720), + [anon_sym_module] = ACTIONS(2720), + [anon_sym_any] = ACTIONS(2720), + [anon_sym_number] = ACTIONS(2720), + [anon_sym_boolean] = ACTIONS(2720), + [anon_sym_string] = ACTIONS(2720), + [anon_sym_symbol] = ACTIONS(2720), + [anon_sym_object] = ACTIONS(2720), [sym_html_comment] = ACTIONS(5), }, - [821] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(2982), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(821), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), + [822] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2091), + [sym_expression] = STATE(2584), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7240), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2091), + [sym_subscript_expression] = STATE(2091), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3788), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7234), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(822), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2091), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(583), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1787), + [anon_sym_export] = ACTIONS(1543), + [anon_sym_type] = ACTIONS(1543), + [anon_sym_namespace] = ACTIONS(1545), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1549), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), + [anon_sym_let] = ACTIONS(1543), + [anon_sym_BANG] = ACTIONS(1549), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), + [anon_sym_await] = ACTIONS(1551), + [anon_sym_yield] = ACTIONS(1553), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1555), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1793), + [anon_sym_using] = ACTIONS(1559), + [anon_sym_PLUS] = ACTIONS(1549), + [anon_sym_DASH] = ACTIONS(1549), + [anon_sym_SLASH] = ACTIONS(1228), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), + [anon_sym_TILDE] = ACTIONS(1549), + [anon_sym_void] = ACTIONS(1549), + [anon_sym_delete] = ACTIONS(1549), + [anon_sym_PLUS_PLUS] = ACTIONS(1565), + [anon_sym_DASH_DASH] = ACTIONS(1565), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(1479), + [sym_private_property_identifier] = ACTIONS(1567), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), + [sym_undefined] = ACTIONS(1795), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1543), + [sym_html_comment] = ACTIONS(5), + }, + [823] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2954), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(823), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1805), [anon_sym_AT] = ACTIONS(95), [anon_sym_static] = ACTIONS(1445), [anon_sym_readonly] = ACTIONS(1445), @@ -127819,52 +127747,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1445), [sym_html_comment] = ACTIONS(5), }, - [822] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3478), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(822), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [824] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2086), + [sym_expression] = STATE(2955), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7162), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2086), + [sym_subscript_expression] = STATE(2086), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3812), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7213), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(824), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2086), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1799), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_type] = ACTIONS(1445), + [anon_sym_namespace] = ACTIONS(1447), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(999), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_BANG] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(1101), + [anon_sym_await] = ACTIONS(1001), + [anon_sym_yield] = ACTIONS(1003), + [anon_sym_LBRACK] = ACTIONS(1189), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_class] = ACTIONS(148), + [anon_sym_async] = ACTIONS(1455), + [anon_sym_function] = ACTIONS(152), + [anon_sym_new] = ACTIONS(1803), + [anon_sym_using] = ACTIONS(1013), + [anon_sym_PLUS] = ACTIONS(999), + [anon_sym_DASH] = ACTIONS(999), + [anon_sym_SLASH] = ACTIONS(1019), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(999), + [anon_sym_void] = ACTIONS(999), + [anon_sym_delete] = ACTIONS(999), + [anon_sym_PLUS_PLUS] = ACTIONS(1023), + [anon_sym_DASH_DASH] = ACTIONS(1023), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1111), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1025), + [sym_this] = ACTIONS(188), + [sym_super] = ACTIONS(188), + [sym_true] = ACTIONS(188), + [sym_false] = ACTIONS(188), + [sym_null] = ACTIONS(188), + [sym_undefined] = ACTIONS(1805), + [anon_sym_AT] = ACTIONS(95), + [anon_sym_static] = ACTIONS(1445), + [anon_sym_readonly] = ACTIONS(1445), + [anon_sym_get] = ACTIONS(1445), + [anon_sym_set] = ACTIONS(1445), + [anon_sym_declare] = ACTIONS(1445), + [anon_sym_public] = ACTIONS(1445), + [anon_sym_private] = ACTIONS(1445), + [anon_sym_protected] = ACTIONS(1445), + [anon_sym_override] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_any] = ACTIONS(1445), + [anon_sym_number] = ACTIONS(1445), + [anon_sym_boolean] = ACTIONS(1445), + [anon_sym_string] = ACTIONS(1445), + [anon_sym_symbol] = ACTIONS(1445), + [anon_sym_object] = ACTIONS(1445), + [sym_html_comment] = ACTIONS(5), + }, + [825] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2852), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(825), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1597), + [sym_html_comment] = ACTIONS(5), + }, + [826] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3339), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(826), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), @@ -127888,13 +128026,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -127924,52 +128062,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [823] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3429), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(823), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [827] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2856), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(827), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1597), + [sym_html_comment] = ACTIONS(5), + }, + [828] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3345), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(828), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), @@ -127993,13 +128236,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -128029,52 +128272,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [824] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3481), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(824), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [829] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3346), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(829), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), @@ -128098,13 +128341,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -128134,52 +128377,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [825] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3482), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(825), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [830] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3349), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(830), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), @@ -128203,13 +128446,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -128239,52 +128482,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [826] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3488), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(826), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [831] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2906), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(831), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1597), + [sym_html_comment] = ACTIONS(5), + }, + [832] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2871), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(832), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1597), + [sym_html_comment] = ACTIONS(5), + }, + [833] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3350), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(833), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), @@ -128308,13 +128761,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -128344,157 +128797,262 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [827] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3430), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(827), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), + [834] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3166), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(834), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [828] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3504), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(828), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [835] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2905), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(835), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), + [anon_sym_import] = ACTIONS(129), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LTtemplate_GT] = ACTIONS(65), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), + [anon_sym_LT] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1835), + [anon_sym_AT] = ACTIONS(95), + [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_object] = ACTIONS(1597), + [sym_html_comment] = ACTIONS(5), + }, + [836] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3282), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(836), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), @@ -128518,13 +129076,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -128554,682 +129112,367 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [829] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2857), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(829), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [837] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2873), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(837), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(152), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), + [anon_sym_BQUOTE] = ACTIONS(87), + [sym_number] = ACTIONS(89), + [sym_private_property_identifier] = ACTIONS(1629), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [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_object] = ACTIONS(1597), [sym_html_comment] = ACTIONS(5), }, - [830] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3285), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(830), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1409), + [838] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2145), + [sym_expression] = STATE(2765), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7377), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2145), + [sym_subscript_expression] = STATE(2145), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3825), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7371), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(838), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2145), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(567), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1821), + [anon_sym_export] = ACTIONS(1475), + [anon_sym_type] = ACTIONS(1475), + [anon_sym_namespace] = ACTIONS(1477), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1481), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1475), + [anon_sym_BANG] = ACTIONS(1481), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1483), + [anon_sym_yield] = ACTIONS(1485), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1487), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1825), + [anon_sym_using] = ACTIONS(1491), + [anon_sym_PLUS] = ACTIONS(1481), + [anon_sym_DASH] = ACTIONS(1481), + [anon_sym_SLASH] = ACTIONS(1285), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1481), + [anon_sym_void] = ACTIONS(1481), + [anon_sym_delete] = ACTIONS(1481), + [anon_sym_PLUS_PLUS] = ACTIONS(1497), + [anon_sym_DASH_DASH] = ACTIONS(1497), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1499), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1859), + [sym_undefined] = ACTIONS(1827), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1475), + [anon_sym_readonly] = ACTIONS(1475), + [anon_sym_get] = ACTIONS(1475), + [anon_sym_set] = ACTIONS(1475), + [anon_sym_declare] = ACTIONS(1475), + [anon_sym_public] = ACTIONS(1475), + [anon_sym_private] = ACTIONS(1475), + [anon_sym_protected] = ACTIONS(1475), + [anon_sym_override] = ACTIONS(1475), + [anon_sym_module] = ACTIONS(1475), + [anon_sym_any] = ACTIONS(1475), + [anon_sym_number] = ACTIONS(1475), + [anon_sym_boolean] = ACTIONS(1475), + [anon_sym_string] = ACTIONS(1475), + [anon_sym_symbol] = ACTIONS(1475), + [anon_sym_object] = ACTIONS(1475), [sym_html_comment] = ACTIONS(5), }, - [831] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3496), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(831), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [sym_html_comment] = ACTIONS(5), - }, - [832] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2888), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(832), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), + [839] = { + [sym_import] = STATE(4300), + [sym_parenthesized_expression] = STATE(2159), + [sym_expression] = STATE(2874), + [sym_primary_expression] = STATE(2782), + [sym_yield_expression] = STATE(3273), + [sym_object] = STATE(3280), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(3280), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(3273), + [sym_glimmer_opening_tag] = STATE(5597), + [sym_class] = STATE(3280), + [sym_function_expression] = STATE(3280), + [sym_generator_function] = STATE(3280), + [sym_arrow_function] = STATE(3280), + [sym__call_signature] = STATE(7044), + [sym_call_expression] = STATE(3280), + [sym_new_expression] = STATE(3273), + [sym_await_expression] = STATE(3273), + [sym_member_expression] = STATE(2159), + [sym_subscript_expression] = STATE(2159), + [sym_assignment_expression] = STATE(3273), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(3273), + [sym__destructuring_pattern] = STATE(7046), + [sym_ternary_expression] = STATE(3273), + [sym_binary_expression] = STATE(3273), + [sym_unary_expression] = STATE(3273), + [sym_update_expression] = STATE(3273), + [sym_string] = STATE(3280), + [sym_comment] = STATE(839), + [sym_template_string] = STATE(3280), + [sym_regex] = STATE(3280), + [sym_meta_property] = STATE(3280), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2159), + [sym_type_assertion] = STATE(3273), + [sym_as_expression] = STATE(3273), + [sym_satisfies_expression] = STATE(3273), + [sym_instantiation_expression] = STATE(3273), + [sym_internal_module] = STATE(3273), + [sym_type_arguments] = STATE(774), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5593), + [sym_identifier] = ACTIONS(1829), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_type] = ACTIONS(1597), + [anon_sym_namespace] = ACTIONS(1599), + [anon_sym_LBRACE] = ACTIONS(962), + [anon_sym_typeof] = ACTIONS(1605), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_BANG] = ACTIONS(1605), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1607), + [anon_sym_yield] = ACTIONS(1609), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), + [anon_sym_class] = ACTIONS(971), + [anon_sym_async] = ACTIONS(1613), + [anon_sym_function] = ACTIONS(975), + [anon_sym_new] = ACTIONS(1833), + [anon_sym_using] = ACTIONS(1617), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1605), [anon_sym_SLASH] = ACTIONS(81), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(1605), + [anon_sym_void] = ACTIONS(1605), + [anon_sym_delete] = ACTIONS(1605), + [anon_sym_PLUS_PLUS] = ACTIONS(1623), + [anon_sym_DASH_DASH] = ACTIONS(1623), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(87), [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), + [sym_private_property_identifier] = ACTIONS(1629), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), - [sym_html_comment] = ACTIONS(5), - }, - [833] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3420), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(833), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), - [sym_html_comment] = ACTIONS(5), - }, - [834] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3493), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(834), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1835), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [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_object] = ACTIONS(1597), [sym_html_comment] = ACTIONS(5), }, - [835] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3492), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(835), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [840] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(1958), + [sym_expression] = STATE(3364), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(1958), + [sym_subscript_expression] = STATE(1958), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7272), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(840), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(1958), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1093), [anon_sym_export] = ACTIONS(1095), [anon_sym_type] = ACTIONS(1095), @@ -129253,13 +129496,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -129289,1546 +129532,1546 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_object] = ACTIONS(1095), [sym_html_comment] = ACTIONS(5), }, - [836] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2833), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(836), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [841] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2670), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(841), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [837] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3489), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(837), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), + [842] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3092), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(842), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [838] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2646), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(838), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [843] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2668), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(843), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [839] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2374), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2374), - [sym_subscript_expression] = STATE(2374), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7491), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(839), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2374), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2712), - [anon_sym_export] = ACTIONS(2714), - [anon_sym_type] = ACTIONS(2714), - [anon_sym_namespace] = ACTIONS(2716), + [844] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3096), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(844), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2718), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2720), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2722), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(2714), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [840] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2802), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(840), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [845] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2666), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(845), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [841] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(3063), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(841), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [846] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3100), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(846), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [842] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(3064), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(842), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [847] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2664), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(847), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [843] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3480), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(843), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), + [848] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2661), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(848), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [844] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2801), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(844), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [849] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3127), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(849), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [845] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2341), - [sym_expression] = STATE(3423), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7433), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2341), - [sym_subscript_expression] = STATE(2341), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3972), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7492), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(845), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2341), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(790), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1837), - [anon_sym_export] = ACTIONS(1535), - [anon_sym_type] = ACTIONS(1535), - [anon_sym_namespace] = ACTIONS(1537), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1541), + [850] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2660), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(850), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1813), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1535), - [anon_sym_BANG] = ACTIONS(1541), + [anon_sym_let] = ACTIONS(1577), + [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1543), - [anon_sym_yield] = ACTIONS(1545), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1133), + [anon_sym_yield] = ACTIONS(1135), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1547), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1841), - [anon_sym_using] = ACTIONS(1551), - [anon_sym_PLUS] = ACTIONS(1541), - [anon_sym_DASH] = ACTIONS(1541), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1817), + [anon_sym_using] = ACTIONS(1143), + [anon_sym_PLUS] = ACTIONS(1129), + [anon_sym_DASH] = ACTIONS(1129), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1541), - [anon_sym_void] = ACTIONS(1541), - [anon_sym_delete] = ACTIONS(1541), - [anon_sym_PLUS_PLUS] = ACTIONS(1557), - [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_TILDE] = ACTIONS(1129), + [anon_sym_void] = ACTIONS(1129), + [anon_sym_delete] = ACTIONS(1129), + [anon_sym_PLUS_PLUS] = ACTIONS(1149), + [anon_sym_DASH_DASH] = ACTIONS(1149), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1559), + [sym_private_property_identifier] = ACTIONS(1155), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1843), + [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1535), - [anon_sym_readonly] = ACTIONS(1535), - [anon_sym_get] = ACTIONS(1535), - [anon_sym_set] = ACTIONS(1535), - [anon_sym_declare] = ACTIONS(1535), - [anon_sym_public] = ACTIONS(1535), - [anon_sym_private] = ACTIONS(1535), - [anon_sym_protected] = ACTIONS(1535), - [anon_sym_override] = ACTIONS(1535), - [anon_sym_module] = ACTIONS(1535), - [anon_sym_any] = ACTIONS(1535), - [anon_sym_number] = ACTIONS(1535), - [anon_sym_boolean] = ACTIONS(1535), - [anon_sym_string] = ACTIONS(1535), - [anon_sym_symbol] = ACTIONS(1535), - [anon_sym_object] = ACTIONS(1535), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [846] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2800), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(846), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), + [851] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2221), + [sym_expression] = STATE(3009), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7008), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2221), + [sym_subscript_expression] = STATE(2221), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3801), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7164), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(851), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2221), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(584), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1845), + [anon_sym_export] = ACTIONS(1641), + [anon_sym_type] = ACTIONS(1641), + [anon_sym_namespace] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1187), + [anon_sym_typeof] = ACTIONS(1647), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), + [anon_sym_let] = ACTIONS(1641), + [anon_sym_BANG] = ACTIONS(1647), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1649), + [anon_sym_yield] = ACTIONS(1651), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), + [anon_sym_async] = ACTIONS(1653), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), + [anon_sym_new] = ACTIONS(1849), + [anon_sym_using] = ACTIONS(1657), + [anon_sym_PLUS] = ACTIONS(1647), + [anon_sym_DASH] = ACTIONS(1647), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), + [anon_sym_TILDE] = ACTIONS(1647), + [anon_sym_void] = ACTIONS(1647), + [anon_sym_delete] = ACTIONS(1647), + [anon_sym_PLUS_PLUS] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1663), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), + [sym_private_property_identifier] = ACTIONS(1665), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), + [sym_undefined] = ACTIONS(1851), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), + [anon_sym_static] = ACTIONS(1641), + [anon_sym_readonly] = ACTIONS(1641), + [anon_sym_get] = ACTIONS(1641), + [anon_sym_set] = ACTIONS(1641), + [anon_sym_declare] = ACTIONS(1641), + [anon_sym_public] = ACTIONS(1641), + [anon_sym_private] = ACTIONS(1641), + [anon_sym_protected] = ACTIONS(1641), + [anon_sym_override] = ACTIONS(1641), + [anon_sym_module] = ACTIONS(1641), + [anon_sym_any] = ACTIONS(1641), + [anon_sym_number] = ACTIONS(1641), + [anon_sym_boolean] = ACTIONS(1641), + [anon_sym_string] = ACTIONS(1641), + [anon_sym_symbol] = ACTIONS(1641), + [anon_sym_object] = ACTIONS(1641), [sym_html_comment] = ACTIONS(5), }, - [847] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2377), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2377), - [sym_subscript_expression] = STATE(2377), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7375), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(847), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2377), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2724), - [anon_sym_export] = ACTIONS(2726), - [anon_sym_type] = ACTIONS(2726), - [anon_sym_namespace] = ACTIONS(2728), + [852] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3130), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(852), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(2726), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(2730), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2732), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(2734), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(2726), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [848] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(848), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [853] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3145), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(853), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2686), - [sym_private_property_identifier] = ACTIONS(992), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [849] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3442), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(849), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), + [854] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3204), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(854), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [850] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2901), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(850), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [855] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2658), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(855), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -130846,199 +131089,94 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), - [sym_html_comment] = ACTIONS(5), - }, - [851] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3459), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(851), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [852] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2284), - [sym_expression] = STATE(2873), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7572), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2284), - [sym_subscript_expression] = STATE(2284), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4007), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7234), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(852), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2284), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(735), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [856] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2144), + [sym_expression] = STATE(2657), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7274), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2144), + [sym_subscript_expression] = STATE(2144), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3816), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7089), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(856), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2144), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(775), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1813), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_type] = ACTIONS(1569), - [anon_sym_namespace] = ACTIONS(1571), - [anon_sym_LBRACE] = ACTIONS(1209), + [anon_sym_export] = ACTIONS(1577), + [anon_sym_type] = ACTIONS(1577), + [anon_sym_namespace] = ACTIONS(1579), + [anon_sym_LBRACE] = ACTIONS(1187), [anon_sym_typeof] = ACTIONS(1129), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1569), + [anon_sym_let] = ACTIONS(1577), [anon_sym_BANG] = ACTIONS(1129), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(1133), [anon_sym_yield] = ACTIONS(1135), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_LBRACK] = ACTIONS(1189), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1579), + [anon_sym_async] = ACTIONS(1583), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1817), [anon_sym_using] = ACTIONS(1143), [anon_sym_PLUS] = ACTIONS(1129), [anon_sym_DASH] = ACTIONS(1129), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(1129), [anon_sym_void] = ACTIONS(1129), @@ -131056,288 +131194,288 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1819), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1569), - [anon_sym_readonly] = ACTIONS(1569), - [anon_sym_get] = ACTIONS(1569), - [anon_sym_set] = ACTIONS(1569), - [anon_sym_declare] = ACTIONS(1569), - [anon_sym_public] = ACTIONS(1569), - [anon_sym_private] = ACTIONS(1569), - [anon_sym_protected] = ACTIONS(1569), - [anon_sym_override] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_any] = ACTIONS(1569), - [anon_sym_number] = ACTIONS(1569), - [anon_sym_boolean] = ACTIONS(1569), - [anon_sym_string] = ACTIONS(1569), - [anon_sym_symbol] = ACTIONS(1569), - [anon_sym_object] = ACTIONS(1569), + [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_object] = ACTIONS(1577), [sym_html_comment] = ACTIONS(5), }, - [853] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2270), - [sym_subscript_expression] = STATE(2270), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7396), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(853), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2270), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1787), - [anon_sym_export] = ACTIONS(1637), - [anon_sym_type] = ACTIONS(1637), - [anon_sym_namespace] = ACTIONS(1639), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(966), + [857] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3155), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(857), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1637), - [anon_sym_BANG] = ACTIONS(966), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1643), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1793), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(2594), - [sym_private_property_identifier] = ACTIONS(992), + [sym_number] = ACTIONS(188), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1795), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [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_object] = ACTIONS(1637), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [854] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3447), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(854), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), + [858] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3160), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(858), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(173), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), - [anon_sym_BANG] = ACTIONS(173), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(138), - [anon_sym_yield] = ACTIONS(140), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), - [anon_sym_using] = ACTIONS(158), - [anon_sym_PLUS] = ACTIONS(173), - [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(173), - [anon_sym_void] = ACTIONS(173), - [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(184), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [855] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2096), - [sym_expression] = STATE(3449), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7235), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2096), - [sym_subscript_expression] = STATE(2096), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3986), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7568), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(855), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2096), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(801), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1093), - [anon_sym_export] = ACTIONS(1095), - [anon_sym_type] = ACTIONS(1095), - [anon_sym_namespace] = ACTIONS(1097), + [859] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2230), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7090), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2230), + [sym_subscript_expression] = STATE(2230), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7185), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(859), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2230), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(657), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(2730), + [anon_sym_export] = ACTIONS(2732), + [anon_sym_type] = ACTIONS(2732), + [anon_sym_namespace] = ACTIONS(2734), [anon_sym_LBRACE] = ACTIONS(1099), [anon_sym_typeof] = ACTIONS(173), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1095), + [anon_sym_let] = ACTIONS(2732), [anon_sym_BANG] = ACTIONS(173), [anon_sym_LPAREN] = ACTIONS(1101), [anon_sym_await] = ACTIONS(138), @@ -131347,19 +131485,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1107), + [anon_sym_async] = ACTIONS(2736), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1109), + [anon_sym_new] = ACTIONS(2738), [anon_sym_using] = ACTIONS(158), [anon_sym_PLUS] = ACTIONS(173), [anon_sym_DASH] = ACTIONS(173), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_SLASH] = ACTIONS(1019), [anon_sym_LT] = ACTIONS(83), [anon_sym_TILDE] = ACTIONS(173), [anon_sym_void] = ACTIONS(173), [anon_sym_delete] = ACTIONS(173), - [anon_sym_PLUS_PLUS] = ACTIONS(1039), - [anon_sym_DASH_DASH] = ACTIONS(1039), + [anon_sym_PLUS_PLUS] = ACTIONS(981), + [anon_sym_DASH_DASH] = ACTIONS(981), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), @@ -131369,421 +131507,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1113), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1095), - [anon_sym_readonly] = ACTIONS(1095), - [anon_sym_get] = ACTIONS(1095), - [anon_sym_set] = ACTIONS(1095), - [anon_sym_declare] = ACTIONS(1095), - [anon_sym_public] = ACTIONS(1095), - [anon_sym_private] = ACTIONS(1095), - [anon_sym_protected] = ACTIONS(1095), - [anon_sym_override] = ACTIONS(1095), - [anon_sym_module] = ACTIONS(1095), - [anon_sym_any] = ACTIONS(1095), - [anon_sym_number] = ACTIONS(1095), - [anon_sym_boolean] = ACTIONS(1095), - [anon_sym_string] = ACTIONS(1095), - [anon_sym_symbol] = ACTIONS(1095), - [anon_sym_object] = ACTIONS(1095), - [sym_html_comment] = ACTIONS(5), - }, - [856] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2270), - [sym_expression] = STATE(2900), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7345), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2249), - [sym_subscript_expression] = STATE(2249), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3992), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(5214), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(856), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2249), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(669), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(2736), - [anon_sym_export] = ACTIONS(1771), - [anon_sym_type] = ACTIONS(1771), - [anon_sym_namespace] = ACTIONS(1773), - [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(966), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1771), - [anon_sym_BANG] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(968), - [anon_sym_yield] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(1103), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1777), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(2738), - [anon_sym_using] = ACTIONS(980), - [anon_sym_PLUS] = ACTIONS(966), - [anon_sym_DASH] = ACTIONS(966), - [anon_sym_SLASH] = ACTIONS(986), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(966), - [anon_sym_void] = ACTIONS(966), - [anon_sym_delete] = ACTIONS(966), - [anon_sym_PLUS_PLUS] = ACTIONS(990), - [anon_sym_DASH_DASH] = ACTIONS(990), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(992), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(2740), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1771), - [anon_sym_readonly] = ACTIONS(1771), - [anon_sym_get] = ACTIONS(1771), - [anon_sym_set] = ACTIONS(1771), - [anon_sym_declare] = ACTIONS(1771), - [anon_sym_public] = ACTIONS(1771), - [anon_sym_private] = ACTIONS(1771), - [anon_sym_protected] = ACTIONS(1771), - [anon_sym_override] = ACTIONS(1771), - [anon_sym_module] = ACTIONS(1771), - [anon_sym_any] = ACTIONS(1771), - [anon_sym_number] = ACTIONS(1771), - [anon_sym_boolean] = ACTIONS(1771), - [anon_sym_string] = ACTIONS(1771), - [anon_sym_symbol] = ACTIONS(1771), - [anon_sym_object] = ACTIONS(1771), + [anon_sym_static] = ACTIONS(2732), + [anon_sym_readonly] = ACTIONS(2732), + [anon_sym_get] = ACTIONS(2732), + [anon_sym_set] = ACTIONS(2732), + [anon_sym_declare] = ACTIONS(2732), + [anon_sym_public] = ACTIONS(2732), + [anon_sym_private] = ACTIONS(2732), + [anon_sym_protected] = ACTIONS(2732), + [anon_sym_override] = ACTIONS(2732), + [anon_sym_module] = ACTIONS(2732), + [anon_sym_any] = ACTIONS(2732), + [anon_sym_number] = ACTIONS(2732), + [anon_sym_boolean] = ACTIONS(2732), + [anon_sym_string] = ACTIONS(2732), + [anon_sym_symbol] = ACTIONS(2732), + [anon_sym_object] = ACTIONS(2732), [sym_html_comment] = ACTIONS(5), }, - [857] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2302), - [sym_expression] = STATE(2982), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7227), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2302), - [sym_subscript_expression] = STATE(2302), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3958), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7229), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(857), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2302), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(721), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1821), - [anon_sym_export] = ACTIONS(1445), - [anon_sym_type] = ACTIONS(1445), - [anon_sym_namespace] = ACTIONS(1447), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(1453), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1445), - [anon_sym_BANG] = ACTIONS(1453), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(1457), - [anon_sym_yield] = ACTIONS(1459), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1463), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1825), - [anon_sym_using] = ACTIONS(1467), - [anon_sym_PLUS] = ACTIONS(1453), - [anon_sym_DASH] = ACTIONS(1453), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1453), - [anon_sym_void] = ACTIONS(1453), - [anon_sym_delete] = ACTIONS(1453), - [anon_sym_PLUS_PLUS] = ACTIONS(1473), - [anon_sym_DASH_DASH] = ACTIONS(1473), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(2622), - [sym_private_property_identifier] = ACTIONS(1479), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1827), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1445), - [anon_sym_readonly] = ACTIONS(1445), - [anon_sym_get] = ACTIONS(1445), - [anon_sym_set] = ACTIONS(1445), - [anon_sym_declare] = ACTIONS(1445), - [anon_sym_public] = ACTIONS(1445), - [anon_sym_private] = ACTIONS(1445), - [anon_sym_protected] = ACTIONS(1445), - [anon_sym_override] = ACTIONS(1445), - [anon_sym_module] = ACTIONS(1445), - [anon_sym_any] = ACTIONS(1445), - [anon_sym_number] = ACTIONS(1445), - [anon_sym_boolean] = ACTIONS(1445), - [anon_sym_string] = ACTIONS(1445), - [anon_sym_symbol] = ACTIONS(1445), - [anon_sym_object] = ACTIONS(1445), - [sym_html_comment] = ACTIONS(5), - }, - [858] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2286), - [sym_expression] = STATE(2820), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7224), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2286), - [sym_subscript_expression] = STATE(2286), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3942), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7233), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(858), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2286), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(803), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1829), - [anon_sym_export] = ACTIONS(1691), - [anon_sym_type] = ACTIONS(1691), - [anon_sym_namespace] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1697), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1691), - [anon_sym_BANG] = ACTIONS(1697), - [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1699), - [anon_sym_yield] = ACTIONS(1701), - [anon_sym_LBRACK] = ACTIONS(1211), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1703), - [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1833), - [anon_sym_using] = ACTIONS(1707), - [anon_sym_PLUS] = ACTIONS(1697), - [anon_sym_DASH] = ACTIONS(1697), - [anon_sym_SLASH] = ACTIONS(1297), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1697), - [anon_sym_void] = ACTIONS(1697), - [anon_sym_delete] = ACTIONS(1697), - [anon_sym_PLUS_PLUS] = ACTIONS(1713), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1111), - [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1715), - [sym_this] = ACTIONS(188), - [sym_super] = ACTIONS(188), - [sym_true] = ACTIONS(188), - [sym_false] = ACTIONS(188), - [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1835), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1691), - [anon_sym_readonly] = ACTIONS(1691), - [anon_sym_get] = ACTIONS(1691), - [anon_sym_set] = ACTIONS(1691), - [anon_sym_declare] = ACTIONS(1691), - [anon_sym_public] = ACTIONS(1691), - [anon_sym_private] = ACTIONS(1691), - [anon_sym_protected] = ACTIONS(1691), - [anon_sym_override] = ACTIONS(1691), - [anon_sym_module] = ACTIONS(1691), - [anon_sym_any] = ACTIONS(1691), - [anon_sym_number] = ACTIONS(1691), - [anon_sym_boolean] = ACTIONS(1691), - [anon_sym_string] = ACTIONS(1691), - [anon_sym_symbol] = ACTIONS(1691), - [anon_sym_object] = ACTIONS(1691), - [sym_html_comment] = ACTIONS(5), - }, - [859] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2322), - [sym_expression] = STATE(3343), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7191), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2322), - [sym_subscript_expression] = STATE(2322), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(4027), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7347), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(859), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2322), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(738), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), + [860] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3162), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(860), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), [sym_identifier] = ACTIONS(1853), - [anon_sym_export] = ACTIONS(1401), - [anon_sym_type] = ACTIONS(1401), - [anon_sym_namespace] = ACTIONS(1403), - [anon_sym_LBRACE] = ACTIONS(1209), - [anon_sym_typeof] = ACTIONS(1409), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), + [anon_sym_LBRACE] = ACTIONS(1099), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1401), - [anon_sym_BANG] = ACTIONS(1409), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1411), - [anon_sym_yield] = ACTIONS(1413), - [anon_sym_LBRACK] = ACTIONS(1211), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1417), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), [anon_sym_new] = ACTIONS(1857), - [anon_sym_using] = ACTIONS(1421), - [anon_sym_PLUS] = ACTIONS(1409), - [anon_sym_DASH] = ACTIONS(1409), - [anon_sym_SLASH] = ACTIONS(986), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1409), - [anon_sym_void] = ACTIONS(1409), - [anon_sym_delete] = ACTIONS(1409), - [anon_sym_PLUS_PLUS] = ACTIONS(1427), - [anon_sym_DASH_DASH] = ACTIONS(1427), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1433), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), @@ -131791,257 +131614,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(188), [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1401), - [anon_sym_readonly] = ACTIONS(1401), - [anon_sym_get] = ACTIONS(1401), - [anon_sym_set] = ACTIONS(1401), - [anon_sym_declare] = ACTIONS(1401), - [anon_sym_public] = ACTIONS(1401), - [anon_sym_private] = ACTIONS(1401), - [anon_sym_protected] = ACTIONS(1401), - [anon_sym_override] = ACTIONS(1401), - [anon_sym_module] = ACTIONS(1401), - [anon_sym_any] = ACTIONS(1401), - [anon_sym_number] = ACTIONS(1401), - [anon_sym_boolean] = ACTIONS(1401), - [anon_sym_string] = ACTIONS(1401), - [anon_sym_symbol] = ACTIONS(1401), - [anon_sym_object] = ACTIONS(1401), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, - [860] = { - [sym_import] = STATE(4312), - [sym_parenthesized_expression] = STATE(2358), - [sym_expression] = STATE(3321), - [sym_primary_expression] = STATE(2505), - [sym_yield_expression] = STATE(2685), - [sym_object] = STATE(2679), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(2679), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(2685), - [sym_glimmer_opening_tag] = STATE(5730), - [sym_class] = STATE(2679), - [sym_function_expression] = STATE(2679), - [sym_generator_function] = STATE(2679), - [sym_arrow_function] = STATE(2679), - [sym__call_signature] = STATE(7468), - [sym_call_expression] = STATE(2679), - [sym_new_expression] = STATE(2685), - [sym_await_expression] = STATE(2685), - [sym_member_expression] = STATE(2358), - [sym_subscript_expression] = STATE(2358), - [sym_assignment_expression] = STATE(2685), - [sym__augmented_assignment_lhs] = STATE(3984), - [sym_augmented_assignment_expression] = STATE(2685), - [sym__destructuring_pattern] = STATE(7472), - [sym_ternary_expression] = STATE(2685), - [sym_binary_expression] = STATE(2685), - [sym_unary_expression] = STATE(2685), - [sym_update_expression] = STATE(2685), - [sym_string] = STATE(2679), - [sym_comment] = STATE(860), - [sym_template_string] = STATE(2679), - [sym_regex] = STATE(2679), - [sym_meta_property] = STATE(2679), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2358), - [sym_type_assertion] = STATE(2685), - [sym_as_expression] = STATE(2685), - [sym_satisfies_expression] = STATE(2685), - [sym_instantiation_expression] = STATE(2685), - [sym_internal_module] = STATE(2685), - [sym_type_arguments] = STATE(626), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5589), - [sym_identifier] = ACTIONS(1845), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_type] = ACTIONS(1657), - [anon_sym_namespace] = ACTIONS(1659), + [861] = { + [sym_import] = STATE(4225), + [sym_parenthesized_expression] = STATE(2213), + [sym_expression] = STATE(3163), + [sym_primary_expression] = STATE(2335), + [sym_yield_expression] = STATE(2645), + [sym_object] = STATE(2644), + [sym_object_pattern] = STATE(4286), + [sym_array] = STATE(2644), + [sym_array_pattern] = STATE(4286), + [sym_glimmer_template] = STATE(2645), + [sym_glimmer_opening_tag] = STATE(5576), + [sym_class] = STATE(2644), + [sym_function_expression] = STATE(2644), + [sym_generator_function] = STATE(2644), + [sym_arrow_function] = STATE(2644), + [sym__call_signature] = STATE(7057), + [sym_call_expression] = STATE(2644), + [sym_new_expression] = STATE(2645), + [sym_await_expression] = STATE(2645), + [sym_member_expression] = STATE(2213), + [sym_subscript_expression] = STATE(2213), + [sym_assignment_expression] = STATE(2645), + [sym__augmented_assignment_lhs] = STATE(3790), + [sym_augmented_assignment_expression] = STATE(2645), + [sym__destructuring_pattern] = STATE(7060), + [sym_ternary_expression] = STATE(2645), + [sym_binary_expression] = STATE(2645), + [sym_unary_expression] = STATE(2645), + [sym_update_expression] = STATE(2645), + [sym_string] = STATE(2644), + [sym_comment] = STATE(861), + [sym_template_string] = STATE(2644), + [sym_regex] = STATE(2644), + [sym_meta_property] = STATE(2644), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4815), + [sym_non_null_expression] = STATE(2213), + [sym_type_assertion] = STATE(2645), + [sym_as_expression] = STATE(2645), + [sym_satisfies_expression] = STATE(2645), + [sym_instantiation_expression] = STATE(2645), + [sym_internal_module] = STATE(2645), + [sym_type_arguments] = STATE(618), + [sym_type_parameters] = STATE(6346), + [aux_sym_export_statement_repeat1] = STATE(5444), + [sym_identifier] = ACTIONS(1853), + [anon_sym_export] = ACTIONS(1675), + [anon_sym_type] = ACTIONS(1675), + [anon_sym_namespace] = ACTIONS(1677), [anon_sym_LBRACE] = ACTIONS(1099), - [anon_sym_typeof] = ACTIONS(1663), + [anon_sym_typeof] = ACTIONS(1683), [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_BANG] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1675), + [anon_sym_BANG] = ACTIONS(1683), [anon_sym_LPAREN] = ACTIONS(1101), - [anon_sym_await] = ACTIONS(1665), - [anon_sym_yield] = ACTIONS(1667), + [anon_sym_await] = ACTIONS(1685), + [anon_sym_yield] = ACTIONS(1687), [anon_sym_LBRACK] = ACTIONS(1103), [anon_sym_LTtemplate_GT] = ACTIONS(65), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_class] = ACTIONS(148), - [anon_sym_async] = ACTIONS(1669), + [anon_sym_async] = ACTIONS(1689), [anon_sym_function] = ACTIONS(152), - [anon_sym_new] = ACTIONS(1849), - [anon_sym_using] = ACTIONS(1673), - [anon_sym_PLUS] = ACTIONS(1663), - [anon_sym_DASH] = ACTIONS(1663), - [anon_sym_SLASH] = ACTIONS(1313), + [anon_sym_new] = ACTIONS(1857), + [anon_sym_using] = ACTIONS(1693), + [anon_sym_PLUS] = ACTIONS(1683), + [anon_sym_DASH] = ACTIONS(1683), + [anon_sym_SLASH] = ACTIONS(1327), [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(1663), - [anon_sym_void] = ACTIONS(1663), - [anon_sym_delete] = ACTIONS(1663), - [anon_sym_PLUS_PLUS] = ACTIONS(1679), - [anon_sym_DASH_DASH] = ACTIONS(1679), + [anon_sym_TILDE] = ACTIONS(1683), + [anon_sym_void] = ACTIONS(1683), + [anon_sym_delete] = ACTIONS(1683), + [anon_sym_PLUS_PLUS] = ACTIONS(1699), + [anon_sym_DASH_DASH] = ACTIONS(1699), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1111), [sym_number] = ACTIONS(188), - [sym_private_property_identifier] = ACTIONS(1681), + [sym_private_property_identifier] = ACTIONS(1701), [sym_this] = ACTIONS(188), [sym_super] = ACTIONS(188), [sym_true] = ACTIONS(188), [sym_false] = ACTIONS(188), [sym_null] = ACTIONS(188), - [sym_undefined] = ACTIONS(1851), - [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1657), - [anon_sym_readonly] = ACTIONS(1657), - [anon_sym_get] = ACTIONS(1657), - [anon_sym_set] = ACTIONS(1657), - [anon_sym_declare] = ACTIONS(1657), - [anon_sym_public] = ACTIONS(1657), - [anon_sym_private] = ACTIONS(1657), - [anon_sym_protected] = ACTIONS(1657), - [anon_sym_override] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_any] = ACTIONS(1657), - [anon_sym_number] = ACTIONS(1657), - [anon_sym_boolean] = ACTIONS(1657), - [anon_sym_string] = ACTIONS(1657), - [anon_sym_symbol] = ACTIONS(1657), - [anon_sym_object] = ACTIONS(1657), - [sym_html_comment] = ACTIONS(5), - }, - [861] = { - [sym_import] = STATE(4341), - [sym_parenthesized_expression] = STATE(2263), - [sym_expression] = STATE(2708), - [sym_primary_expression] = STATE(3054), - [sym_yield_expression] = STATE(3336), - [sym_object] = STATE(3425), - [sym_object_pattern] = STATE(4344), - [sym_array] = STATE(3425), - [sym_array_pattern] = STATE(4344), - [sym_glimmer_template] = STATE(3336), - [sym_glimmer_opening_tag] = STATE(5736), - [sym_class] = STATE(3425), - [sym_function_expression] = STATE(3425), - [sym_generator_function] = STATE(3425), - [sym_arrow_function] = STATE(3425), - [sym__call_signature] = STATE(7575), - [sym_call_expression] = STATE(3425), - [sym_new_expression] = STATE(3336), - [sym_await_expression] = STATE(3336), - [sym_member_expression] = STATE(2263), - [sym_subscript_expression] = STATE(2263), - [sym_assignment_expression] = STATE(3336), - [sym__augmented_assignment_lhs] = STATE(3941), - [sym_augmented_assignment_expression] = STATE(3336), - [sym__destructuring_pattern] = STATE(7574), - [sym_ternary_expression] = STATE(3336), - [sym_binary_expression] = STATE(3336), - [sym_unary_expression] = STATE(3336), - [sym_update_expression] = STATE(3336), - [sym_string] = STATE(3425), - [sym_comment] = STATE(861), - [sym_template_string] = STATE(3425), - [sym_regex] = STATE(3425), - [sym_meta_property] = STATE(3425), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4978), - [sym_non_null_expression] = STATE(2263), - [sym_type_assertion] = STATE(3336), - [sym_as_expression] = STATE(3336), - [sym_satisfies_expression] = STATE(3336), - [sym_instantiation_expression] = STATE(3336), - [sym_internal_module] = STATE(3336), - [sym_type_arguments] = STATE(695), - [sym_type_parameters] = STATE(6489), - [aux_sym_export_statement_repeat1] = STATE(5639), - [sym_identifier] = ACTIONS(1807), - [anon_sym_export] = ACTIONS(1615), - [anon_sym_type] = ACTIONS(1615), - [anon_sym_namespace] = ACTIONS(1617), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_typeof] = ACTIONS(21), - [anon_sym_import] = ACTIONS(129), - [anon_sym_let] = ACTIONS(1615), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_await] = ACTIONS(41), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LTtemplate_GT] = ACTIONS(65), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_class] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1621), - [anon_sym_function] = ACTIONS(1033), - [anon_sym_new] = ACTIONS(1811), - [anon_sym_using] = ACTIONS(79), - [anon_sym_PLUS] = ACTIONS(21), - [anon_sym_DASH] = ACTIONS(21), - [anon_sym_SLASH] = ACTIONS(81), - [anon_sym_LT] = ACTIONS(83), - [anon_sym_TILDE] = ACTIONS(21), - [anon_sym_void] = ACTIONS(21), - [anon_sym_delete] = ACTIONS(21), - [anon_sym_PLUS_PLUS] = ACTIONS(85), - [anon_sym_DASH_DASH] = ACTIONS(85), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(87), - [sym_number] = ACTIONS(89), - [sym_private_property_identifier] = ACTIONS(91), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(93), + [sym_undefined] = ACTIONS(1859), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(1615), - [anon_sym_readonly] = ACTIONS(1615), - [anon_sym_get] = ACTIONS(1615), - [anon_sym_set] = ACTIONS(1615), - [anon_sym_declare] = ACTIONS(1615), - [anon_sym_public] = ACTIONS(1615), - [anon_sym_private] = ACTIONS(1615), - [anon_sym_protected] = ACTIONS(1615), - [anon_sym_override] = ACTIONS(1615), - [anon_sym_module] = ACTIONS(1615), - [anon_sym_any] = ACTIONS(1615), - [anon_sym_number] = ACTIONS(1615), - [anon_sym_boolean] = ACTIONS(1615), - [anon_sym_string] = ACTIONS(1615), - [anon_sym_symbol] = ACTIONS(1615), - [anon_sym_object] = ACTIONS(1615), + [anon_sym_static] = ACTIONS(1675), + [anon_sym_readonly] = ACTIONS(1675), + [anon_sym_get] = ACTIONS(1675), + [anon_sym_set] = ACTIONS(1675), + [anon_sym_declare] = ACTIONS(1675), + [anon_sym_public] = ACTIONS(1675), + [anon_sym_private] = ACTIONS(1675), + [anon_sym_protected] = ACTIONS(1675), + [anon_sym_override] = ACTIONS(1675), + [anon_sym_module] = ACTIONS(1675), + [anon_sym_any] = ACTIONS(1675), + [anon_sym_number] = ACTIONS(1675), + [anon_sym_boolean] = ACTIONS(1675), + [anon_sym_string] = ACTIONS(1675), + [anon_sym_symbol] = ACTIONS(1675), + [anon_sym_object] = ACTIONS(1675), [sym_html_comment] = ACTIONS(5), }, [862] = { - [sym_namespace_export] = STATE(6495), - [sym_export_clause] = STATE(5727), - [sym_declaration] = STATE(1646), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_class_declaration] = STATE(1772), - [sym_function_declaration] = STATE(1772), - [sym_generator_function_declaration] = STATE(1772), + [sym_namespace_export] = STATE(6360), + [sym_export_clause] = STATE(5595), + [sym_declaration] = STATE(1506), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_class_declaration] = STATE(1580), + [sym_function_declaration] = STATE(1580), + [sym_generator_function_declaration] = STATE(1580), [sym_comment] = STATE(862), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(1772), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(1647), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [aux_sym_export_statement_repeat1] = STATE(5112), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(1580), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(1507), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [aux_sym_export_statement_repeat1] = STATE(4857), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), [anon_sym_STAR] = ACTIONS(2742), [anon_sym_default] = ACTIONS(2744), [anon_sym_type] = ACTIONS(2746), @@ -132110,7 +131828,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2785), [anon_sym_BQUOTE] = ACTIONS(210), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_declare] = ACTIONS(2789), [anon_sym_module] = ACTIONS(2791), [anon_sym_abstract] = ACTIONS(2793), @@ -132122,28 +131840,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [863] = { - [sym_namespace_export] = STATE(6495), - [sym_export_clause] = STATE(5727), - [sym_declaration] = STATE(1646), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_class_declaration] = STATE(1772), - [sym_function_declaration] = STATE(1772), - [sym_generator_function_declaration] = STATE(1772), + [sym_namespace_export] = STATE(6360), + [sym_export_clause] = STATE(5595), + [sym_declaration] = STATE(1506), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_class_declaration] = STATE(1580), + [sym_function_declaration] = STATE(1580), + [sym_generator_function_declaration] = STATE(1580), [sym_comment] = STATE(863), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(1772), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(1647), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [aux_sym_export_statement_repeat1] = STATE(5112), - [aux_sym_object_repeat1] = STATE(6287), - [aux_sym_object_pattern_repeat1] = STATE(6281), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(1580), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(1507), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [aux_sym_export_statement_repeat1] = STATE(4857), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), [anon_sym_STAR] = ACTIONS(2742), [anon_sym_default] = ACTIONS(2744), [anon_sym_type] = ACTIONS(2746), @@ -132212,7 +131930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2785), [anon_sym_BQUOTE] = ACTIONS(210), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_declare] = ACTIONS(2789), [anon_sym_module] = ACTIONS(2791), [anon_sym_abstract] = ACTIONS(2793), @@ -132224,28 +131942,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [864] = { - [sym_namespace_export] = STATE(6495), - [sym_export_clause] = STATE(5727), - [sym_declaration] = STATE(1646), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_class_declaration] = STATE(1772), - [sym_function_declaration] = STATE(1772), - [sym_generator_function_declaration] = STATE(1772), + [sym_namespace_export] = STATE(6360), + [sym_export_clause] = STATE(5595), + [sym_declaration] = STATE(1506), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_class_declaration] = STATE(1580), + [sym_function_declaration] = STATE(1580), + [sym_generator_function_declaration] = STATE(1580), [sym_comment] = STATE(864), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(1772), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(1647), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [aux_sym_export_statement_repeat1] = STATE(5112), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(1580), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(1507), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [aux_sym_export_statement_repeat1] = STATE(4857), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5734), [anon_sym_STAR] = ACTIONS(2742), [anon_sym_default] = ACTIONS(2744), [anon_sym_type] = ACTIONS(2746), @@ -132314,7 +132032,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2785), [anon_sym_BQUOTE] = ACTIONS(210), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_declare] = ACTIONS(2789), [anon_sym_module] = ACTIONS(2791), [anon_sym_abstract] = ACTIONS(2793), @@ -132326,30 +132044,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [865] = { - [sym__call_signature] = STATE(7448), - [sym_string] = STATE(4552), + [sym__call_signature] = STATE(7265), + [sym_string] = STATE(4442), [sym_comment] = STATE(865), - [sym_formal_parameters] = STATE(4978), - [sym__property_name] = STATE(4902), - [sym_computed_property_name] = STATE(4552), - [sym_type_parameters] = STATE(6489), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), + [sym_formal_parameters] = STATE(4815), + [sym__property_name] = STATE(4672), + [sym_computed_property_name] = STATE(4442), + [sym_type_parameters] = STATE(6346), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), [sym_identifier] = ACTIONS(2803), [anon_sym_export] = ACTIONS(2805), [anon_sym_STAR] = ACTIONS(2807), [anon_sym_type] = ACTIONS(2805), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2805), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(964), [anon_sym_let] = ACTIONS(2805), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2810), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(966), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), @@ -132357,7 +132075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_async] = ACTIONS(2805), [anon_sym_function] = ACTIONS(2817), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2805), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -132407,7 +132125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2805), [anon_sym_get] = ACTIONS(2825), [anon_sym_set] = ACTIONS(2825), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_declare] = ACTIONS(2805), [anon_sym_public] = ACTIONS(2805), [anon_sym_private] = ACTIONS(2805), @@ -132426,30 +132144,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [866] = { - [sym__call_signature] = STATE(7448), - [sym_string] = STATE(4552), + [sym__call_signature] = STATE(7265), + [sym_string] = STATE(4442), [sym_comment] = STATE(866), - [sym_formal_parameters] = STATE(4978), - [sym__property_name] = STATE(4902), - [sym_computed_property_name] = STATE(4552), - [sym_type_parameters] = STATE(6489), - [aux_sym_object_repeat1] = STATE(6287), - [aux_sym_object_pattern_repeat1] = STATE(6281), + [sym_formal_parameters] = STATE(4815), + [sym__property_name] = STATE(4672), + [sym_computed_property_name] = STATE(4442), + [sym_type_parameters] = STATE(6346), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), [sym_identifier] = ACTIONS(2803), [anon_sym_export] = ACTIONS(2805), [anon_sym_STAR] = ACTIONS(2807), [anon_sym_type] = ACTIONS(2805), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2805), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_RBRACE] = ACTIONS(1045), [anon_sym_let] = ACTIONS(2805), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2810), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(966), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), @@ -132457,7 +132175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_async] = ACTIONS(2805), [anon_sym_function] = ACTIONS(2817), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2805), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -132507,7 +132225,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2805), [anon_sym_get] = ACTIONS(2825), [anon_sym_set] = ACTIONS(2825), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_declare] = ACTIONS(2805), [anon_sym_public] = ACTIONS(2805), [anon_sym_private] = ACTIONS(2805), @@ -132526,30 +132244,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [867] = { - [sym__call_signature] = STATE(7448), - [sym_string] = STATE(4552), + [sym__call_signature] = STATE(7265), + [sym_string] = STATE(4442), [sym_comment] = STATE(867), - [sym_formal_parameters] = STATE(4978), - [sym__property_name] = STATE(4902), - [sym_computed_property_name] = STATE(4552), - [sym_type_parameters] = STATE(6489), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), + [sym_formal_parameters] = STATE(4815), + [sym__property_name] = STATE(4672), + [sym_computed_property_name] = STATE(4442), + [sym_type_parameters] = STATE(6346), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5734), [sym_identifier] = ACTIONS(2803), [anon_sym_export] = ACTIONS(2805), [anon_sym_STAR] = ACTIONS(2807), [anon_sym_type] = ACTIONS(2805), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2805), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(1051), [anon_sym_let] = ACTIONS(2805), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2810), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(966), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), @@ -132557,7 +132275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_async] = ACTIONS(2805), [anon_sym_function] = ACTIONS(2817), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2805), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -132607,7 +132325,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2805), [anon_sym_get] = ACTIONS(2825), [anon_sym_set] = ACTIONS(2825), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_declare] = ACTIONS(2805), [anon_sym_public] = ACTIONS(2805), [anon_sym_private] = ACTIONS(2805), @@ -132626,33 +132344,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [868] = { - [sym_declaration] = STATE(1732), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_class_declaration] = STATE(1772), - [sym_function_declaration] = STATE(1772), - [sym_generator_function_declaration] = STATE(1772), + [sym_declaration] = STATE(1545), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_class_declaration] = STATE(1580), + [sym_function_declaration] = STATE(1580), + [sym_generator_function_declaration] = STATE(1580), [sym_comment] = STATE(868), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(1772), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(1647), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [aux_sym_export_statement_repeat1] = STATE(5112), - [aux_sym_object_repeat1] = STATE(6287), - [aux_sym_object_pattern_repeat1] = STATE(6281), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(1580), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(1507), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [aux_sym_export_statement_repeat1] = STATE(4857), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5734), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2827), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2752), [anon_sym_COMMA] = ACTIONS(210), - [anon_sym_RBRACE] = ACTIONS(2799), + [anon_sym_RBRACE] = ACTIONS(2801), [anon_sym_import] = ACTIONS(2758), [anon_sym_var] = ACTIONS(2760), [anon_sym_let] = ACTIONS(2762), @@ -132712,7 +132430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2785), [anon_sym_BQUOTE] = ACTIONS(210), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_declare] = ACTIONS(2789), [anon_sym_module] = ACTIONS(2829), [anon_sym_abstract] = ACTIONS(2793), @@ -132725,29 +132443,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [869] = { - [sym_declaration] = STATE(1732), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_class_declaration] = STATE(1772), - [sym_function_declaration] = STATE(1772), - [sym_generator_function_declaration] = STATE(1772), + [sym_declaration] = STATE(1545), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_class_declaration] = STATE(1580), + [sym_function_declaration] = STATE(1580), + [sym_generator_function_declaration] = STATE(1580), [sym_comment] = STATE(869), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(1772), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(1647), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [aux_sym_export_statement_repeat1] = STATE(5112), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(1580), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(1507), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [aux_sym_export_statement_repeat1] = STATE(4857), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2827), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2752), [anon_sym_COMMA] = ACTIONS(210), @@ -132811,7 +132529,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2785), [anon_sym_BQUOTE] = ACTIONS(210), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_declare] = ACTIONS(2789), [anon_sym_module] = ACTIONS(2829), [anon_sym_abstract] = ACTIONS(2793), @@ -132824,33 +132542,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [870] = { - [sym_declaration] = STATE(1732), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_class_declaration] = STATE(1772), - [sym_function_declaration] = STATE(1772), - [sym_generator_function_declaration] = STATE(1772), + [sym_declaration] = STATE(1545), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_class_declaration] = STATE(1580), + [sym_function_declaration] = STATE(1580), + [sym_generator_function_declaration] = STATE(1580), [sym_comment] = STATE(870), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(1772), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(1647), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [aux_sym_export_statement_repeat1] = STATE(5112), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(1580), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(1507), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [aux_sym_export_statement_repeat1] = STATE(4857), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2827), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2752), [anon_sym_COMMA] = ACTIONS(210), - [anon_sym_RBRACE] = ACTIONS(2801), + [anon_sym_RBRACE] = ACTIONS(2799), [anon_sym_import] = ACTIONS(2758), [anon_sym_var] = ACTIONS(2760), [anon_sym_let] = ACTIONS(2762), @@ -132910,7 +132628,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2785), [anon_sym_BQUOTE] = ACTIONS(210), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_declare] = ACTIONS(2789), [anon_sym_module] = ACTIONS(2829), [anon_sym_abstract] = ACTIONS(2793), @@ -132923,49 +132641,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [871] = { - [sym_namespace_export] = STATE(6495), - [sym_export_clause] = STATE(5727), - [sym_declaration] = STATE(1646), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_class_declaration] = STATE(1772), - [sym_function_declaration] = STATE(1772), - [sym_generator_function_declaration] = STATE(1772), + [sym_namespace_export] = STATE(6935), + [sym_export_clause] = STATE(5473), + [sym_declaration] = STATE(1219), + [sym_variable_declaration] = STATE(1450), + [sym_lexical_declaration] = STATE(1450), + [sym_class_declaration] = STATE(1450), + [sym_function_declaration] = STATE(1450), + [sym_generator_function_declaration] = STATE(1450), [sym_comment] = STATE(871), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(1772), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(1647), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [aux_sym_export_statement_repeat1] = STATE(5112), - [anon_sym_STAR] = ACTIONS(2742), - [anon_sym_default] = ACTIONS(2744), - [anon_sym_type] = ACTIONS(2746), - [anon_sym_EQ] = ACTIONS(2833), - [anon_sym_as] = ACTIONS(2750), - [anon_sym_namespace] = ACTIONS(2752), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(1450), + [sym_ambient_declaration] = STATE(1450), + [sym_abstract_class_declaration] = STATE(1450), + [sym_module] = STATE(1450), + [sym_internal_module] = STATE(1445), + [sym_import_alias] = STATE(1450), + [sym_interface_declaration] = STATE(1450), + [sym_enum_declaration] = STATE(1450), + [sym_type_alias_declaration] = STATE(1450), + [aux_sym_export_statement_repeat1] = STATE(4860), + [anon_sym_STAR] = ACTIONS(2833), + [anon_sym_default] = ACTIONS(2835), + [anon_sym_type] = ACTIONS(2837), + [anon_sym_EQ] = ACTIONS(2839), + [anon_sym_as] = ACTIONS(2841), + [anon_sym_namespace] = ACTIONS(2843), [anon_sym_LBRACE] = ACTIONS(2754), [anon_sym_COMMA] = ACTIONS(210), - [anon_sym_import] = ACTIONS(2758), - [anon_sym_var] = ACTIONS(2760), - [anon_sym_let] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2764), + [anon_sym_import] = ACTIONS(2845), + [anon_sym_var] = ACTIONS(2847), + [anon_sym_let] = ACTIONS(2849), + [anon_sym_const] = ACTIONS(2851), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(210), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(2835), + [anon_sym_COLON] = ACTIONS(2853), [anon_sym_LBRACK] = ACTIONS(210), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(210), - [anon_sym_class] = ACTIONS(2772), - [anon_sym_async] = ACTIONS(2774), - [anon_sym_function] = ACTIONS(2776), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_async] = ACTIONS(2857), + [anon_sym_function] = ACTIONS(2859), [anon_sym_EQ_GT] = ACTIONS(2778), [anon_sym_QMARK_DOT] = ACTIONS(210), [anon_sym_PLUS_EQ] = ACTIONS(2780), @@ -133010,60 +132728,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2785), [anon_sym_BQUOTE] = ACTIONS(210), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2789), - [anon_sym_module] = ACTIONS(2791), - [anon_sym_abstract] = ACTIONS(2793), + [anon_sym_declare] = ACTIONS(2861), + [anon_sym_module] = ACTIONS(2863), + [anon_sym_abstract] = ACTIONS(2865), [anon_sym_satisfies] = ACTIONS(210), - [anon_sym_interface] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2797), + [anon_sym_interface] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2869), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [872] = { - [sym_namespace_export] = STATE(6941), - [sym_export_clause] = STATE(5579), - [sym_declaration] = STATE(1360), - [sym_variable_declaration] = STATE(1364), - [sym_lexical_declaration] = STATE(1364), - [sym_class_declaration] = STATE(1364), - [sym_function_declaration] = STATE(1364), - [sym_generator_function_declaration] = STATE(1364), + [sym_namespace_export] = STATE(6360), + [sym_export_clause] = STATE(5595), + [sym_declaration] = STATE(1506), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_class_declaration] = STATE(1580), + [sym_function_declaration] = STATE(1580), + [sym_generator_function_declaration] = STATE(1580), [sym_comment] = STATE(872), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(1364), - [sym_ambient_declaration] = STATE(1364), - [sym_abstract_class_declaration] = STATE(1364), - [sym_module] = STATE(1364), - [sym_internal_module] = STATE(1358), - [sym_import_alias] = STATE(1364), - [sym_interface_declaration] = STATE(1364), - [sym_enum_declaration] = STATE(1364), - [sym_type_alias_declaration] = STATE(1364), - [aux_sym_export_statement_repeat1] = STATE(5167), - [anon_sym_STAR] = ACTIONS(2837), - [anon_sym_default] = ACTIONS(2839), - [anon_sym_type] = ACTIONS(2841), - [anon_sym_EQ] = ACTIONS(2843), - [anon_sym_as] = ACTIONS(2845), - [anon_sym_namespace] = ACTIONS(2847), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(1580), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(1507), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [aux_sym_export_statement_repeat1] = STATE(4857), + [anon_sym_STAR] = ACTIONS(2742), + [anon_sym_default] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2746), + [anon_sym_EQ] = ACTIONS(2871), + [anon_sym_as] = ACTIONS(2750), + [anon_sym_namespace] = ACTIONS(2752), [anon_sym_LBRACE] = ACTIONS(2754), [anon_sym_COMMA] = ACTIONS(210), - [anon_sym_import] = ACTIONS(2849), - [anon_sym_var] = ACTIONS(2851), - [anon_sym_let] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2855), + [anon_sym_import] = ACTIONS(2758), + [anon_sym_var] = ACTIONS(2760), + [anon_sym_let] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2764), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(210), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(2857), + [anon_sym_COLON] = ACTIONS(2873), [anon_sym_LBRACK] = ACTIONS(210), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(210), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_async] = ACTIONS(2861), - [anon_sym_function] = ACTIONS(2863), + [anon_sym_class] = ACTIONS(2772), + [anon_sym_async] = ACTIONS(2774), + [anon_sym_function] = ACTIONS(2776), [anon_sym_EQ_GT] = ACTIONS(2778), [anon_sym_QMARK_DOT] = ACTIONS(210), [anon_sym_PLUS_EQ] = ACTIONS(2780), @@ -133108,37 +132826,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2785), [anon_sym_BQUOTE] = ACTIONS(210), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2865), - [anon_sym_module] = ACTIONS(2867), - [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_declare] = ACTIONS(2789), + [anon_sym_module] = ACTIONS(2791), + [anon_sym_abstract] = ACTIONS(2793), [anon_sym_satisfies] = ACTIONS(210), - [anon_sym_interface] = ACTIONS(2871), - [anon_sym_enum] = ACTIONS(2873), + [anon_sym_interface] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2797), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [873] = { - [sym_namespace_export] = STATE(6697), - [sym_export_clause] = STATE(5728), - [sym_declaration] = STATE(6959), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_class_declaration] = STATE(6924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function_declaration] = STATE(6924), + [sym_namespace_export] = STATE(6758), + [sym_export_clause] = STATE(5396), + [sym_declaration] = STATE(1476), + [sym_variable_declaration] = STATE(1468), + [sym_lexical_declaration] = STATE(1468), + [sym_class_declaration] = STATE(1468), + [sym_function_declaration] = STATE(1468), + [sym_generator_function_declaration] = STATE(1468), [sym_comment] = STATE(873), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(6924), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(6925), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [aux_sym_export_statement_repeat1] = STATE(5328), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(1468), + [sym_ambient_declaration] = STATE(1468), + [sym_abstract_class_declaration] = STATE(1468), + [sym_module] = STATE(1468), + [sym_internal_module] = STATE(1477), + [sym_import_alias] = STATE(1468), + [sym_interface_declaration] = STATE(1468), + [sym_enum_declaration] = STATE(1468), + [sym_type_alias_declaration] = STATE(1468), + [aux_sym_export_statement_repeat1] = STATE(4898), [anon_sym_STAR] = ACTIONS(2875), [anon_sym_default] = ACTIONS(2877), [anon_sym_type] = ACTIONS(2879), @@ -133217,26 +132935,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [874] = { - [sym_namespace_export] = STATE(7112), - [sym_export_clause] = STATE(5583), - [sym_declaration] = STATE(1316), - [sym_variable_declaration] = STATE(1318), - [sym_lexical_declaration] = STATE(1318), - [sym_class_declaration] = STATE(1318), - [sym_function_declaration] = STATE(1318), - [sym_generator_function_declaration] = STATE(1318), + [sym_namespace_export] = STATE(6514), + [sym_export_clause] = STATE(5572), + [sym_declaration] = STATE(6328), + [sym_variable_declaration] = STATE(6327), + [sym_lexical_declaration] = STATE(6327), + [sym_class_declaration] = STATE(6327), + [sym_function_declaration] = STATE(6327), + [sym_generator_function_declaration] = STATE(6327), [sym_comment] = STATE(874), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(1318), - [sym_ambient_declaration] = STATE(1318), - [sym_abstract_class_declaration] = STATE(1318), - [sym_module] = STATE(1318), - [sym_internal_module] = STATE(1315), - [sym_import_alias] = STATE(1318), - [sym_interface_declaration] = STATE(1318), - [sym_enum_declaration] = STATE(1318), - [sym_type_alias_declaration] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(5125), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(6327), + [sym_ambient_declaration] = STATE(6327), + [sym_abstract_class_declaration] = STATE(6327), + [sym_module] = STATE(6327), + [sym_internal_module] = STATE(6331), + [sym_import_alias] = STATE(6327), + [sym_interface_declaration] = STATE(6327), + [sym_enum_declaration] = STATE(6327), + [sym_type_alias_declaration] = STATE(6327), + [aux_sym_export_statement_repeat1] = STATE(5027), [anon_sym_STAR] = ACTIONS(2913), [anon_sym_default] = ACTIONS(2915), [anon_sym_type] = ACTIONS(2917), @@ -133315,26 +133033,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [875] = { - [sym_namespace_export] = STATE(7031), - [sym_export_clause] = STATE(5723), - [sym_declaration] = STATE(1186), - [sym_variable_declaration] = STATE(1205), - [sym_lexical_declaration] = STATE(1205), - [sym_class_declaration] = STATE(1205), - [sym_function_declaration] = STATE(1205), - [sym_generator_function_declaration] = STATE(1205), + [sym_namespace_export] = STATE(6849), + [sym_export_clause] = STATE(5384), + [sym_declaration] = STATE(1198), + [sym_variable_declaration] = STATE(1197), + [sym_lexical_declaration] = STATE(1197), + [sym_class_declaration] = STATE(1197), + [sym_function_declaration] = STATE(1197), + [sym_generator_function_declaration] = STATE(1197), [sym_comment] = STATE(875), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(1205), - [sym_ambient_declaration] = STATE(1205), - [sym_abstract_class_declaration] = STATE(1205), - [sym_module] = STATE(1205), - [sym_internal_module] = STATE(1185), - [sym_import_alias] = STATE(1205), - [sym_interface_declaration] = STATE(1205), - [sym_enum_declaration] = STATE(1205), - [sym_type_alias_declaration] = STATE(1205), - [aux_sym_export_statement_repeat1] = STATE(5095), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(1197), + [sym_ambient_declaration] = STATE(1197), + [sym_abstract_class_declaration] = STATE(1197), + [sym_module] = STATE(1197), + [sym_internal_module] = STATE(1199), + [sym_import_alias] = STATE(1197), + [sym_interface_declaration] = STATE(1197), + [sym_enum_declaration] = STATE(1197), + [sym_type_alias_declaration] = STATE(1197), + [aux_sym_export_statement_repeat1] = STATE(4855), [anon_sym_STAR] = ACTIONS(2951), [anon_sym_default] = ACTIONS(2953), [anon_sym_type] = ACTIONS(2955), @@ -133413,35 +133131,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [876] = { - [sym_string] = STATE(4552), + [sym_string] = STATE(4442), [sym_comment] = STATE(876), - [sym__property_name] = STATE(4902), - [sym_computed_property_name] = STATE(4552), - [sym_override_modifier] = STATE(3765), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), + [sym__property_name] = STATE(4672), + [sym_computed_property_name] = STATE(4442), + [sym_override_modifier] = STATE(3632), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5734), [sym_identifier] = ACTIONS(2989), [anon_sym_export] = ACTIONS(2989), [anon_sym_STAR] = ACTIONS(2807), [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2989), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1051), [anon_sym_let] = ACTIONS(2989), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(966), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_async] = ACTIONS(2991), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2989), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -133491,7 +133209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2993), [anon_sym_get] = ACTIONS(2995), [anon_sym_set] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_declare] = ACTIONS(2989), [anon_sym_public] = ACTIONS(2989), [anon_sym_private] = ACTIONS(2989), @@ -133510,35 +133228,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [877] = { - [sym_string] = STATE(4552), + [sym_string] = STATE(4442), [sym_comment] = STATE(877), - [sym__property_name] = STATE(4902), - [sym_computed_property_name] = STATE(4552), - [sym_override_modifier] = STATE(3765), - [aux_sym_object_repeat1] = STATE(6287), - [aux_sym_object_pattern_repeat1] = STATE(6281), + [sym__property_name] = STATE(4672), + [sym_computed_property_name] = STATE(4442), + [sym_override_modifier] = STATE(3632), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), [sym_identifier] = ACTIONS(2989), [anon_sym_export] = ACTIONS(2989), [anon_sym_STAR] = ACTIONS(2807), [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2989), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_RBRACE] = ACTIONS(1045), [anon_sym_let] = ACTIONS(2989), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(966), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_async] = ACTIONS(2991), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2989), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -133588,7 +133306,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2993), [anon_sym_get] = ACTIONS(2995), [anon_sym_set] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_declare] = ACTIONS(2989), [anon_sym_public] = ACTIONS(2989), [anon_sym_private] = ACTIONS(2989), @@ -133607,35 +133325,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [878] = { - [sym_string] = STATE(4552), + [sym_string] = STATE(4442), [sym_comment] = STATE(878), - [sym__property_name] = STATE(4902), - [sym_computed_property_name] = STATE(4552), - [sym_override_modifier] = STATE(3765), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), + [sym__property_name] = STATE(4672), + [sym_computed_property_name] = STATE(4442), + [sym_override_modifier] = STATE(3632), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), [sym_identifier] = ACTIONS(2989), [anon_sym_export] = ACTIONS(2989), [anon_sym_STAR] = ACTIONS(2807), [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2989), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(964), [anon_sym_let] = ACTIONS(2989), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(966), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_async] = ACTIONS(2991), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2989), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -133685,7 +133403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2993), [anon_sym_get] = ACTIONS(2995), [anon_sym_set] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_declare] = ACTIONS(2989), [anon_sym_public] = ACTIONS(2989), [anon_sym_private] = ACTIONS(2989), @@ -133704,34 +133422,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [879] = { - [sym_string] = STATE(4552), + [sym_string] = STATE(4442), [sym_comment] = STATE(879), - [sym__property_name] = STATE(4902), - [sym_computed_property_name] = STATE(4552), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), + [sym__property_name] = STATE(4672), + [sym_computed_property_name] = STATE(4442), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), [sym_identifier] = ACTIONS(2989), [anon_sym_export] = ACTIONS(2989), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2989), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(964), [anon_sym_let] = ACTIONS(2989), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(966), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_async] = ACTIONS(2989), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2989), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -133781,7 +133499,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2989), [anon_sym_get] = ACTIONS(2989), [anon_sym_set] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_declare] = ACTIONS(2989), [anon_sym_public] = ACTIONS(2989), [anon_sym_private] = ACTIONS(2989), @@ -133800,34 +133518,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [880] = { - [sym_string] = STATE(4552), + [sym_string] = STATE(4442), [sym_comment] = STATE(880), - [sym__property_name] = STATE(4902), - [sym_computed_property_name] = STATE(4552), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), + [sym__property_name] = STATE(4672), + [sym_computed_property_name] = STATE(4442), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), [sym_identifier] = ACTIONS(2989), [anon_sym_export] = ACTIONS(2989), [anon_sym_STAR] = ACTIONS(2807), [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2989), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(1045), [anon_sym_let] = ACTIONS(2989), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(966), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_async] = ACTIONS(2991), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2989), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -133877,7 +133595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(2989), [anon_sym_get] = ACTIONS(2995), [anon_sym_set] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_declare] = ACTIONS(2989), [anon_sym_public] = ACTIONS(2989), [anon_sym_private] = ACTIONS(2989), @@ -133896,34 +133614,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [881] = { - [sym_string] = STATE(4552), + [sym_string] = STATE(4442), [sym_comment] = STATE(881), - [sym__property_name] = STATE(4902), - [sym_computed_property_name] = STATE(4552), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), + [sym__property_name] = STATE(4672), + [sym_computed_property_name] = STATE(4442), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5734), [sym_identifier] = ACTIONS(2989), [anon_sym_export] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(2807), [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2989), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1051), [anon_sym_let] = ACTIONS(2989), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(966), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(2989), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(2991), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2989), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -133971,9 +133689,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2823), [anon_sym_static] = ACTIONS(2989), [anon_sym_readonly] = ACTIONS(2989), - [anon_sym_get] = ACTIONS(2989), - [anon_sym_set] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_get] = ACTIONS(2995), + [anon_sym_set] = ACTIONS(2995), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_declare] = ACTIONS(2989), [anon_sym_public] = ACTIONS(2989), [anon_sym_private] = ACTIONS(2989), @@ -133992,34 +133710,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [882] = { - [sym_string] = STATE(4552), + [sym_string] = STATE(4442), [sym_comment] = STATE(882), - [sym__property_name] = STATE(4902), - [sym_computed_property_name] = STATE(4552), - [aux_sym_object_repeat1] = STATE(6287), - [aux_sym_object_pattern_repeat1] = STATE(6281), + [sym__property_name] = STATE(4672), + [sym_computed_property_name] = STATE(4442), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), [sym_identifier] = ACTIONS(2989), [anon_sym_export] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2989), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_RBRACE] = ACTIONS(1045), [anon_sym_let] = ACTIONS(2989), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(966), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(2991), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(2989), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2989), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -134067,9 +133785,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2823), [anon_sym_static] = ACTIONS(2989), [anon_sym_readonly] = ACTIONS(2989), - [anon_sym_get] = ACTIONS(2995), - [anon_sym_set] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_get] = ACTIONS(2989), + [anon_sym_set] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_declare] = ACTIONS(2989), [anon_sym_public] = ACTIONS(2989), [anon_sym_private] = ACTIONS(2989), @@ -134088,34 +133806,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [883] = { - [sym_string] = STATE(4552), + [sym_string] = STATE(4442), [sym_comment] = STATE(883), - [sym__property_name] = STATE(4902), - [sym_computed_property_name] = STATE(4552), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), + [sym__property_name] = STATE(4672), + [sym_computed_property_name] = STATE(4442), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5734), [sym_identifier] = ACTIONS(2989), [anon_sym_export] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(2807), + [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2989), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1051), [anon_sym_let] = ACTIONS(2989), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(966), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(2991), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(2989), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2989), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -134163,9 +133881,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2823), [anon_sym_static] = ACTIONS(2989), [anon_sym_readonly] = ACTIONS(2989), - [anon_sym_get] = ACTIONS(2995), - [anon_sym_set] = ACTIONS(2995), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_get] = ACTIONS(2989), + [anon_sym_set] = ACTIONS(2989), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_declare] = ACTIONS(2989), [anon_sym_public] = ACTIONS(2989), [anon_sym_private] = ACTIONS(2989), @@ -134184,34 +133902,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [884] = { - [sym_string] = STATE(4552), + [sym_string] = STATE(4442), [sym_comment] = STATE(884), - [sym__property_name] = STATE(4902), - [sym_computed_property_name] = STATE(4552), - [aux_sym_object_repeat1] = STATE(6287), - [aux_sym_object_pattern_repeat1] = STATE(6281), + [sym__property_name] = STATE(4672), + [sym_computed_property_name] = STATE(4442), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), [sym_identifier] = ACTIONS(2989), [anon_sym_export] = ACTIONS(2989), - [anon_sym_STAR] = ACTIONS(118), + [anon_sym_STAR] = ACTIONS(2807), [anon_sym_type] = ACTIONS(2989), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2989), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_RBRACE] = ACTIONS(964), [anon_sym_let] = ACTIONS(2989), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(966), [anon_sym_LBRACK] = ACTIONS(2814), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_async] = ACTIONS(2989), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(2991), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(2989), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -134259,9 +133977,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_private_property_identifier] = ACTIONS(2823), [anon_sym_static] = ACTIONS(2989), [anon_sym_readonly] = ACTIONS(2989), - [anon_sym_get] = ACTIONS(2989), - [anon_sym_set] = ACTIONS(2989), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_get] = ACTIONS(2995), + [anon_sym_set] = ACTIONS(2995), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_declare] = ACTIONS(2989), [anon_sym_public] = ACTIONS(2989), [anon_sym_private] = ACTIONS(2989), @@ -134280,27 +133998,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [885] = { - [sym_declaration] = STATE(1732), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_class_declaration] = STATE(1772), - [sym_function_declaration] = STATE(1772), - [sym_generator_function_declaration] = STATE(1772), + [sym_declaration] = STATE(1545), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_class_declaration] = STATE(1580), + [sym_function_declaration] = STATE(1580), + [sym_generator_function_declaration] = STATE(1580), [sym_comment] = STATE(885), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(1772), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(1647), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [aux_sym_export_statement_repeat1] = STATE(5112), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(1580), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(1507), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [aux_sym_export_statement_repeat1] = STATE(4857), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2827), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2752), [anon_sym_COMMA] = ACTIONS(210), @@ -134312,7 +134030,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LPAREN] = ACTIONS(210), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(2835), + [anon_sym_COLON] = ACTIONS(2873), [anon_sym_LBRACK] = ACTIONS(210), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(210), @@ -134375,27 +134093,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [886] = { - [sym_declaration] = STATE(1150), - [sym_variable_declaration] = STATE(1205), - [sym_lexical_declaration] = STATE(1205), - [sym_class_declaration] = STATE(1205), - [sym_function_declaration] = STATE(1205), - [sym_generator_function_declaration] = STATE(1205), + [sym_declaration] = STATE(1210), + [sym_variable_declaration] = STATE(1197), + [sym_lexical_declaration] = STATE(1197), + [sym_class_declaration] = STATE(1197), + [sym_function_declaration] = STATE(1197), + [sym_generator_function_declaration] = STATE(1197), [sym_comment] = STATE(886), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(1205), - [sym_ambient_declaration] = STATE(1205), - [sym_abstract_class_declaration] = STATE(1205), - [sym_module] = STATE(1205), - [sym_internal_module] = STATE(1185), - [sym_import_alias] = STATE(1205), - [sym_interface_declaration] = STATE(1205), - [sym_enum_declaration] = STATE(1205), - [sym_type_alias_declaration] = STATE(1205), - [aux_sym_export_statement_repeat1] = STATE(5095), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(1197), + [sym_ambient_declaration] = STATE(1197), + [sym_abstract_class_declaration] = STATE(1197), + [sym_module] = STATE(1197), + [sym_internal_module] = STATE(1199), + [sym_import_alias] = STATE(1197), + [sym_interface_declaration] = STATE(1197), + [sym_enum_declaration] = STATE(1197), + [sym_type_alias_declaration] = STATE(1197), + [aux_sym_export_statement_repeat1] = STATE(4855), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(2999), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2961), [anon_sym_COMMA] = ACTIONS(210), @@ -134470,45 +134188,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [887] = { - [sym_declaration] = STATE(1322), - [sym_variable_declaration] = STATE(1364), - [sym_lexical_declaration] = STATE(1364), - [sym_class_declaration] = STATE(1364), - [sym_function_declaration] = STATE(1364), - [sym_generator_function_declaration] = STATE(1364), + [sym_declaration] = STATE(6341), + [sym_variable_declaration] = STATE(6327), + [sym_lexical_declaration] = STATE(6327), + [sym_class_declaration] = STATE(6327), + [sym_function_declaration] = STATE(6327), + [sym_generator_function_declaration] = STATE(6327), [sym_comment] = STATE(887), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(1364), - [sym_ambient_declaration] = STATE(1364), - [sym_abstract_class_declaration] = STATE(1364), - [sym_module] = STATE(1364), - [sym_internal_module] = STATE(1358), - [sym_import_alias] = STATE(1364), - [sym_interface_declaration] = STATE(1364), - [sym_enum_declaration] = STATE(1364), - [sym_type_alias_declaration] = STATE(1364), - [aux_sym_export_statement_repeat1] = STATE(5167), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(6327), + [sym_ambient_declaration] = STATE(6327), + [sym_abstract_class_declaration] = STATE(6327), + [sym_module] = STATE(6327), + [sym_internal_module] = STATE(6331), + [sym_import_alias] = STATE(6327), + [sym_interface_declaration] = STATE(6327), + [sym_enum_declaration] = STATE(6327), + [sym_type_alias_declaration] = STATE(6327), + [aux_sym_export_statement_repeat1] = STATE(5027), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3005), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2847), + [anon_sym_namespace] = ACTIONS(2923), [anon_sym_COMMA] = ACTIONS(210), - [anon_sym_import] = ACTIONS(2849), - [anon_sym_var] = ACTIONS(2851), - [anon_sym_let] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2855), + [anon_sym_import] = ACTIONS(2925), + [anon_sym_var] = ACTIONS(2927), + [anon_sym_let] = ACTIONS(2929), + [anon_sym_const] = ACTIONS(2931), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(210), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(2857), + [anon_sym_COLON] = ACTIONS(2933), [anon_sym_LBRACK] = ACTIONS(210), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(210), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_async] = ACTIONS(2861), - [anon_sym_function] = ACTIONS(2863), + [anon_sym_class] = ACTIONS(2935), + [anon_sym_async] = ACTIONS(2937), + [anon_sym_function] = ACTIONS(2939), [anon_sym_EQ_GT] = ACTIONS(2778), [anon_sym_QMARK_DOT] = ACTIONS(210), [anon_sym_PLUS_EQ] = ACTIONS(2780), @@ -134553,39 +134271,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2785), [anon_sym_BQUOTE] = ACTIONS(210), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2865), + [anon_sym_declare] = ACTIONS(2941), [anon_sym_module] = ACTIONS(3007), - [anon_sym_abstract] = ACTIONS(2869), + [anon_sym_abstract] = ACTIONS(2945), [anon_sym_satisfies] = ACTIONS(210), [anon_sym_global] = ACTIONS(3009), - [anon_sym_interface] = ACTIONS(2871), - [anon_sym_enum] = ACTIONS(2873), + [anon_sym_interface] = ACTIONS(2947), + [anon_sym_enum] = ACTIONS(2949), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [888] = { - [sym_declaration] = STATE(6938), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_class_declaration] = STATE(6924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function_declaration] = STATE(6924), + [sym_declaration] = STATE(1483), + [sym_variable_declaration] = STATE(1468), + [sym_lexical_declaration] = STATE(1468), + [sym_class_declaration] = STATE(1468), + [sym_function_declaration] = STATE(1468), + [sym_generator_function_declaration] = STATE(1468), [sym_comment] = STATE(888), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(6924), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(6925), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [aux_sym_export_statement_repeat1] = STATE(5328), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(1468), + [sym_ambient_declaration] = STATE(1468), + [sym_abstract_class_declaration] = STATE(1468), + [sym_module] = STATE(1468), + [sym_internal_module] = STATE(1477), + [sym_import_alias] = STATE(1468), + [sym_interface_declaration] = STATE(1468), + [sym_enum_declaration] = STATE(1468), + [sym_type_alias_declaration] = STATE(1468), + [aux_sym_export_statement_repeat1] = STATE(4898), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3011), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(2885), [anon_sym_COMMA] = ACTIONS(210), @@ -134660,45 +134378,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [889] = { - [sym_declaration] = STATE(1274), - [sym_variable_declaration] = STATE(1318), - [sym_lexical_declaration] = STATE(1318), - [sym_class_declaration] = STATE(1318), - [sym_function_declaration] = STATE(1318), - [sym_generator_function_declaration] = STATE(1318), + [sym_declaration] = STATE(1432), + [sym_variable_declaration] = STATE(1450), + [sym_lexical_declaration] = STATE(1450), + [sym_class_declaration] = STATE(1450), + [sym_function_declaration] = STATE(1450), + [sym_generator_function_declaration] = STATE(1450), [sym_comment] = STATE(889), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(1318), - [sym_ambient_declaration] = STATE(1318), - [sym_abstract_class_declaration] = STATE(1318), - [sym_module] = STATE(1318), - [sym_internal_module] = STATE(1315), - [sym_import_alias] = STATE(1318), - [sym_interface_declaration] = STATE(1318), - [sym_enum_declaration] = STATE(1318), - [sym_type_alias_declaration] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(5125), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(1450), + [sym_ambient_declaration] = STATE(1450), + [sym_abstract_class_declaration] = STATE(1450), + [sym_module] = STATE(1450), + [sym_internal_module] = STATE(1445), + [sym_import_alias] = STATE(1450), + [sym_interface_declaration] = STATE(1450), + [sym_enum_declaration] = STATE(1450), + [sym_type_alias_declaration] = STATE(1450), + [aux_sym_export_statement_repeat1] = STATE(4860), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2923), + [anon_sym_namespace] = ACTIONS(2843), [anon_sym_COMMA] = ACTIONS(210), - [anon_sym_import] = ACTIONS(2925), - [anon_sym_var] = ACTIONS(2927), - [anon_sym_let] = ACTIONS(2929), - [anon_sym_const] = ACTIONS(2931), + [anon_sym_import] = ACTIONS(2845), + [anon_sym_var] = ACTIONS(2847), + [anon_sym_let] = ACTIONS(2849), + [anon_sym_const] = ACTIONS(2851), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(210), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_COLON] = ACTIONS(2933), + [anon_sym_COLON] = ACTIONS(2853), [anon_sym_LBRACK] = ACTIONS(210), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(210), - [anon_sym_class] = ACTIONS(2935), - [anon_sym_async] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2939), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_async] = ACTIONS(2857), + [anon_sym_function] = ACTIONS(2859), [anon_sym_EQ_GT] = ACTIONS(2778), [anon_sym_QMARK_DOT] = ACTIONS(210), [anon_sym_PLUS_EQ] = ACTIONS(2780), @@ -134743,60 +134461,72 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2785), [anon_sym_BQUOTE] = ACTIONS(210), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2941), + [anon_sym_declare] = ACTIONS(2861), [anon_sym_module] = ACTIONS(3019), - [anon_sym_abstract] = ACTIONS(2945), + [anon_sym_abstract] = ACTIONS(2865), [anon_sym_satisfies] = ACTIONS(210), [anon_sym_global] = ACTIONS(3021), - [anon_sym_interface] = ACTIONS(2947), - [anon_sym_enum] = ACTIONS(2949), + [anon_sym_interface] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2869), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [890] = { + [sym_declaration] = STATE(1483), + [sym_variable_declaration] = STATE(1468), + [sym_lexical_declaration] = STATE(1468), + [sym_class_declaration] = STATE(1468), + [sym_function_declaration] = STATE(1468), + [sym_generator_function_declaration] = STATE(1468), [sym_comment] = STATE(890), - [aux_sym_object_repeat1] = STATE(6287), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_EQ] = ACTIONS(1016), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(1468), + [sym_ambient_declaration] = STATE(1468), + [sym_abstract_class_declaration] = STATE(1468), + [sym_module] = STATE(1468), + [sym_internal_module] = STATE(1477), + [sym_import_alias] = STATE(1468), + [sym_interface_declaration] = STATE(1468), + [sym_enum_declaration] = STATE(1468), + [sym_type_alias_declaration] = STATE(1468), + [aux_sym_export_statement_repeat1] = STATE(4898), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(3011), + [anon_sym_EQ] = ACTIONS(1291), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2470), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2885), + [anon_sym_import] = ACTIONS(2887), + [anon_sym_var] = ACTIONS(2889), + [anon_sym_let] = ACTIONS(2891), + [anon_sym_const] = ACTIONS(2893), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(210), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_SEMI] = ACTIONS(210), + [anon_sym_LBRACK] = ACTIONS(210), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2470), - [anon_sym_SQUOTE] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_EQ_GT] = ACTIONS(1035), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2470), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_class] = ACTIONS(2897), + [anon_sym_async] = ACTIONS(2899), + [anon_sym_function] = ACTIONS(2901), + [anon_sym_EQ_GT] = ACTIONS(3023), + [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_PLUS_EQ] = ACTIONS(2780), + [anon_sym_DASH_EQ] = ACTIONS(2780), + [anon_sym_STAR_EQ] = ACTIONS(2780), + [anon_sym_SLASH_EQ] = ACTIONS(2780), + [anon_sym_PERCENT_EQ] = ACTIONS(2780), + [anon_sym_CARET_EQ] = ACTIONS(2780), + [anon_sym_AMP_EQ] = ACTIONS(2780), + [anon_sym_PIPE_EQ] = ACTIONS(2780), + [anon_sym_GT_GT_EQ] = ACTIONS(2780), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), + [anon_sym_LT_LT_EQ] = ACTIONS(2780), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -134810,86 +134540,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(210), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(210), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(210), + [anon_sym_GT_EQ] = ACTIONS(210), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2470), - [sym_private_property_identifier] = ACTIONS(2470), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_QMARK] = ACTIONS(1043), - [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_satisfies] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(210), + [anon_sym_PLUS_PLUS] = ACTIONS(210), + [anon_sym_DASH_DASH] = ACTIONS(210), + [aux_sym_comment_token1] = ACTIONS(2785), + [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(2787), + [anon_sym_declare] = ACTIONS(2903), + [anon_sym_module] = ACTIONS(3013), + [anon_sym_abstract] = ACTIONS(2907), + [anon_sym_satisfies] = ACTIONS(210), + [anon_sym_global] = ACTIONS(3015), + [anon_sym_interface] = ACTIONS(2909), + [anon_sym_enum] = ACTIONS(2911), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [891] = { + [sym_declaration] = STATE(6341), + [sym_variable_declaration] = STATE(6327), + [sym_lexical_declaration] = STATE(6327), + [sym_class_declaration] = STATE(6327), + [sym_function_declaration] = STATE(6327), + [sym_generator_function_declaration] = STATE(6327), [sym_comment] = STATE(891), - [aux_sym_object_repeat1] = STATE(6287), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(2474), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(2474), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(1016), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(6327), + [sym_ambient_declaration] = STATE(6327), + [sym_abstract_class_declaration] = STATE(6327), + [sym_module] = STATE(6327), + [sym_internal_module] = STATE(6331), + [sym_import_alias] = STATE(6327), + [sym_interface_declaration] = STATE(6327), + [sym_enum_declaration] = STATE(6327), + [sym_type_alias_declaration] = STATE(6327), + [aux_sym_export_statement_repeat1] = STATE(5027), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(3005), + [anon_sym_EQ] = ACTIONS(1291), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1055), - [anon_sym_let] = ACTIONS(2474), + [anon_sym_namespace] = ACTIONS(2923), + [anon_sym_import] = ACTIONS(2925), + [anon_sym_var] = ACTIONS(2927), + [anon_sym_let] = ACTIONS(2929), + [anon_sym_const] = ACTIONS(2931), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(210), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_SEMI] = ACTIONS(210), + [anon_sym_LBRACK] = ACTIONS(210), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2474), - [anon_sym_SQUOTE] = ACTIONS(2474), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_EQ_GT] = ACTIONS(1035), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_DOT] = ACTIONS(210), + [anon_sym_class] = ACTIONS(2935), + [anon_sym_async] = ACTIONS(2937), + [anon_sym_function] = ACTIONS(2939), + [anon_sym_EQ_GT] = ACTIONS(3023), + [anon_sym_QMARK_DOT] = ACTIONS(210), + [anon_sym_PLUS_EQ] = ACTIONS(2780), + [anon_sym_DASH_EQ] = ACTIONS(2780), + [anon_sym_STAR_EQ] = ACTIONS(2780), + [anon_sym_SLASH_EQ] = ACTIONS(2780), + [anon_sym_PERCENT_EQ] = ACTIONS(2780), + [anon_sym_CARET_EQ] = ACTIONS(2780), + [anon_sym_AMP_EQ] = ACTIONS(2780), + [anon_sym_PIPE_EQ] = ACTIONS(2780), + [anon_sym_GT_GT_EQ] = ACTIONS(2780), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), + [anon_sym_LT_LT_EQ] = ACTIONS(2780), + [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), + [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -134903,71 +134633,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(210), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(210), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(210), + [anon_sym_GT_EQ] = ACTIONS(210), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2474), - [sym_private_property_identifier] = ACTIONS(2474), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_readonly] = ACTIONS(2474), - [anon_sym_get] = ACTIONS(2474), - [anon_sym_set] = ACTIONS(2474), - [anon_sym_QMARK] = ACTIONS(1043), - [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_object] = ACTIONS(2474), - [anon_sym_satisfies] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(210), + [anon_sym_PLUS_PLUS] = ACTIONS(210), + [anon_sym_DASH_DASH] = ACTIONS(210), + [aux_sym_comment_token1] = ACTIONS(2785), + [anon_sym_BQUOTE] = ACTIONS(210), + [anon_sym_AT] = ACTIONS(2787), + [anon_sym_declare] = ACTIONS(2941), + [anon_sym_module] = ACTIONS(3007), + [anon_sym_abstract] = ACTIONS(2945), + [anon_sym_satisfies] = ACTIONS(210), + [anon_sym_global] = ACTIONS(3009), + [anon_sym_interface] = ACTIONS(2947), + [anon_sym_enum] = ACTIONS(2949), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [892] = { [sym_comment] = STATE(892), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_EQ] = ACTIONS(1016), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_identifier] = ACTIONS(2452), + [anon_sym_export] = ACTIONS(2452), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_type] = ACTIONS(2452), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2452), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_let] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_let] = ACTIONS(2452), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_COLON] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(2452), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2470), - [anon_sym_SQUOTE] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_async] = ACTIONS(2452), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2452), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -135009,58 +134727,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2470), - [sym_private_property_identifier] = ACTIONS(2470), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_QMARK] = ACTIONS(1043), - [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), + [sym_number] = ACTIONS(2452), + [sym_private_property_identifier] = ACTIONS(2452), + [anon_sym_static] = ACTIONS(2452), + [anon_sym_readonly] = ACTIONS(2452), + [anon_sym_get] = ACTIONS(2452), + [anon_sym_set] = ACTIONS(2452), + [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_declare] = ACTIONS(2452), + [anon_sym_public] = ACTIONS(2452), + [anon_sym_private] = ACTIONS(2452), + [anon_sym_protected] = ACTIONS(2452), + [anon_sym_override] = ACTIONS(2452), + [anon_sym_module] = ACTIONS(2452), + [anon_sym_any] = ACTIONS(2452), + [anon_sym_number] = ACTIONS(2452), + [anon_sym_boolean] = ACTIONS(2452), + [anon_sym_string] = ACTIONS(2452), + [anon_sym_symbol] = ACTIONS(2452), + [anon_sym_object] = ACTIONS(2452), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [893] = { - [sym_declaration] = STATE(1274), - [sym_variable_declaration] = STATE(1318), - [sym_lexical_declaration] = STATE(1318), - [sym_class_declaration] = STATE(1318), - [sym_function_declaration] = STATE(1318), - [sym_generator_function_declaration] = STATE(1318), + [sym_declaration] = STATE(1210), + [sym_variable_declaration] = STATE(1197), + [sym_lexical_declaration] = STATE(1197), + [sym_class_declaration] = STATE(1197), + [sym_function_declaration] = STATE(1197), + [sym_generator_function_declaration] = STATE(1197), [sym_comment] = STATE(893), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(1318), - [sym_ambient_declaration] = STATE(1318), - [sym_abstract_class_declaration] = STATE(1318), - [sym_module] = STATE(1318), - [sym_internal_module] = STATE(1315), - [sym_import_alias] = STATE(1318), - [sym_interface_declaration] = STATE(1318), - [sym_enum_declaration] = STATE(1318), - [sym_type_alias_declaration] = STATE(1318), - [aux_sym_export_statement_repeat1] = STATE(5125), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(1197), + [sym_ambient_declaration] = STATE(1197), + [sym_abstract_class_declaration] = STATE(1197), + [sym_module] = STATE(1197), + [sym_internal_module] = STATE(1199), + [sym_import_alias] = STATE(1197), + [sym_interface_declaration] = STATE(1197), + [sym_enum_declaration] = STATE(1197), + [sym_type_alias_declaration] = STATE(1197), + [aux_sym_export_statement_repeat1] = STATE(4855), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3017), - [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_type] = ACTIONS(2999), + [anon_sym_EQ] = ACTIONS(1291), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2923), - [anon_sym_import] = ACTIONS(2925), - [anon_sym_var] = ACTIONS(2927), - [anon_sym_let] = ACTIONS(2929), - [anon_sym_const] = ACTIONS(2931), + [anon_sym_namespace] = 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(118), [anon_sym_LPAREN] = ACTIONS(210), [anon_sym_in] = ACTIONS(118), @@ -135068,9 +134786,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(210), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(210), - [anon_sym_class] = ACTIONS(2935), - [anon_sym_async] = ACTIONS(2937), - [anon_sym_function] = ACTIONS(2939), + [anon_sym_class] = ACTIONS(2973), + [anon_sym_async] = ACTIONS(2975), + [anon_sym_function] = ACTIONS(2977), [anon_sym_EQ_GT] = ACTIONS(3023), [anon_sym_QMARK_DOT] = ACTIONS(210), [anon_sym_PLUS_EQ] = ACTIONS(2780), @@ -135115,45 +134833,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2785), [anon_sym_BQUOTE] = ACTIONS(210), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2941), - [anon_sym_module] = ACTIONS(3019), - [anon_sym_abstract] = ACTIONS(2945), + [anon_sym_declare] = ACTIONS(2979), + [anon_sym_module] = ACTIONS(3001), + [anon_sym_abstract] = ACTIONS(2983), [anon_sym_satisfies] = ACTIONS(210), - [anon_sym_global] = ACTIONS(3021), - [anon_sym_interface] = ACTIONS(2947), - [anon_sym_enum] = ACTIONS(2949), + [anon_sym_global] = ACTIONS(3003), + [anon_sym_interface] = ACTIONS(2985), + [anon_sym_enum] = ACTIONS(2987), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [894] = { - [sym_declaration] = STATE(6938), - [sym_variable_declaration] = STATE(6924), - [sym_lexical_declaration] = STATE(6924), - [sym_class_declaration] = STATE(6924), - [sym_function_declaration] = STATE(6924), - [sym_generator_function_declaration] = STATE(6924), + [sym_declaration] = STATE(1432), + [sym_variable_declaration] = STATE(1450), + [sym_lexical_declaration] = STATE(1450), + [sym_class_declaration] = STATE(1450), + [sym_function_declaration] = STATE(1450), + [sym_generator_function_declaration] = STATE(1450), [sym_comment] = STATE(894), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(6924), - [sym_ambient_declaration] = STATE(6924), - [sym_abstract_class_declaration] = STATE(6924), - [sym_module] = STATE(6924), - [sym_internal_module] = STATE(6925), - [sym_import_alias] = STATE(6924), - [sym_interface_declaration] = STATE(6924), - [sym_enum_declaration] = STATE(6924), - [sym_type_alias_declaration] = STATE(6924), - [aux_sym_export_statement_repeat1] = STATE(5328), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(1450), + [sym_ambient_declaration] = STATE(1450), + [sym_abstract_class_declaration] = STATE(1450), + [sym_module] = STATE(1450), + [sym_internal_module] = STATE(1445), + [sym_import_alias] = STATE(1450), + [sym_interface_declaration] = STATE(1450), + [sym_enum_declaration] = STATE(1450), + [sym_type_alias_declaration] = STATE(1450), + [aux_sym_export_statement_repeat1] = STATE(4860), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3011), - [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_type] = ACTIONS(3017), + [anon_sym_EQ] = ACTIONS(1291), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2885), - [anon_sym_import] = ACTIONS(2887), - [anon_sym_var] = ACTIONS(2889), - [anon_sym_let] = ACTIONS(2891), - [anon_sym_const] = ACTIONS(2893), + [anon_sym_namespace] = ACTIONS(2843), + [anon_sym_import] = ACTIONS(2845), + [anon_sym_var] = ACTIONS(2847), + [anon_sym_let] = ACTIONS(2849), + [anon_sym_const] = ACTIONS(2851), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(210), [anon_sym_in] = ACTIONS(118), @@ -135161,9 +134879,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(210), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(210), - [anon_sym_class] = ACTIONS(2897), - [anon_sym_async] = ACTIONS(2899), - [anon_sym_function] = ACTIONS(2901), + [anon_sym_class] = ACTIONS(2855), + [anon_sym_async] = ACTIONS(2857), + [anon_sym_function] = ACTIONS(2859), [anon_sym_EQ_GT] = ACTIONS(3023), [anon_sym_QMARK_DOT] = ACTIONS(210), [anon_sym_PLUS_EQ] = ACTIONS(2780), @@ -135208,45 +134926,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2785), [anon_sym_BQUOTE] = ACTIONS(210), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2903), - [anon_sym_module] = ACTIONS(3013), - [anon_sym_abstract] = ACTIONS(2907), + [anon_sym_declare] = ACTIONS(2861), + [anon_sym_module] = ACTIONS(3019), + [anon_sym_abstract] = ACTIONS(2865), [anon_sym_satisfies] = ACTIONS(210), - [anon_sym_global] = ACTIONS(3015), - [anon_sym_interface] = ACTIONS(2909), - [anon_sym_enum] = ACTIONS(2911), + [anon_sym_global] = ACTIONS(3021), + [anon_sym_interface] = ACTIONS(2867), + [anon_sym_enum] = ACTIONS(2869), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [895] = { [sym_comment] = STATE(895), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(2474), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(2474), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(1016), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_identifier] = ACTIONS(2452), + [anon_sym_export] = ACTIONS(2452), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_type] = ACTIONS(2452), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2474), + [anon_sym_namespace] = ACTIONS(2452), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_let] = ACTIONS(2474), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(2452), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_COLON] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(2452), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2474), - [anon_sym_SQUOTE] = ACTIONS(2474), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_async] = ACTIONS(2452), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2474), + [anon_sym_new] = ACTIONS(2452), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -135288,85 +135006,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2474), - [sym_private_property_identifier] = ACTIONS(2474), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_readonly] = ACTIONS(2474), - [anon_sym_get] = ACTIONS(2474), - [anon_sym_set] = ACTIONS(2474), - [anon_sym_QMARK] = ACTIONS(1043), - [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_object] = ACTIONS(2474), + [sym_number] = ACTIONS(2452), + [sym_private_property_identifier] = ACTIONS(2452), + [anon_sym_static] = ACTIONS(2452), + [anon_sym_readonly] = ACTIONS(2452), + [anon_sym_get] = ACTIONS(2452), + [anon_sym_set] = ACTIONS(2452), + [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_declare] = ACTIONS(2452), + [anon_sym_public] = ACTIONS(2452), + [anon_sym_private] = ACTIONS(2452), + [anon_sym_protected] = ACTIONS(2452), + [anon_sym_override] = ACTIONS(2452), + [anon_sym_module] = ACTIONS(2452), + [anon_sym_any] = ACTIONS(2452), + [anon_sym_number] = ACTIONS(2452), + [anon_sym_boolean] = ACTIONS(2452), + [anon_sym_string] = ACTIONS(2452), + [anon_sym_symbol] = ACTIONS(2452), + [anon_sym_object] = ACTIONS(2452), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [896] = { - [sym_declaration] = STATE(1322), - [sym_variable_declaration] = STATE(1364), - [sym_lexical_declaration] = STATE(1364), - [sym_class_declaration] = STATE(1364), - [sym_function_declaration] = STATE(1364), - [sym_generator_function_declaration] = STATE(1364), [sym_comment] = STATE(896), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(1364), - [sym_ambient_declaration] = STATE(1364), - [sym_abstract_class_declaration] = STATE(1364), - [sym_module] = STATE(1364), - [sym_internal_module] = STATE(1358), - [sym_import_alias] = STATE(1364), - [sym_interface_declaration] = STATE(1364), - [sym_enum_declaration] = STATE(1364), - [sym_type_alias_declaration] = STATE(1364), - [aux_sym_export_statement_repeat1] = STATE(5167), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3005), - [anon_sym_EQ] = ACTIONS(1271), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_identifier] = ACTIONS(2454), + [anon_sym_export] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2454), + [anon_sym_type] = ACTIONS(2454), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2847), - [anon_sym_import] = ACTIONS(2849), - [anon_sym_var] = ACTIONS(2851), - [anon_sym_let] = ACTIONS(2853), - [anon_sym_const] = ACTIONS(2855), + [anon_sym_namespace] = ACTIONS(2454), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_let] = ACTIONS(2454), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(2454), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_class] = ACTIONS(2859), - [anon_sym_async] = ACTIONS(2861), - [anon_sym_function] = ACTIONS(2863), - [anon_sym_EQ_GT] = ACTIONS(3023), - [anon_sym_QMARK_DOT] = ACTIONS(210), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2454), + [anon_sym_async] = ACTIONS(2454), + [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2454), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -135380,59 +135086,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(2782), + [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2865), - [anon_sym_module] = ACTIONS(3007), - [anon_sym_abstract] = ACTIONS(2869), - [anon_sym_satisfies] = ACTIONS(210), - [anon_sym_global] = ACTIONS(3009), - [anon_sym_interface] = ACTIONS(2871), - [anon_sym_enum] = ACTIONS(2873), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [sym_number] = ACTIONS(2454), + [sym_private_property_identifier] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_readonly] = ACTIONS(2454), + [anon_sym_get] = ACTIONS(2454), + [anon_sym_set] = ACTIONS(2454), + [anon_sym_QMARK] = ACTIONS(985), + [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_object] = ACTIONS(2454), + [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [897] = { - [sym_declaration] = STATE(1150), - [sym_variable_declaration] = STATE(1205), - [sym_lexical_declaration] = STATE(1205), - [sym_class_declaration] = STATE(1205), - [sym_function_declaration] = STATE(1205), - [sym_generator_function_declaration] = STATE(1205), + [sym_declaration] = STATE(1545), + [sym_variable_declaration] = STATE(1580), + [sym_lexical_declaration] = STATE(1580), + [sym_class_declaration] = STATE(1580), + [sym_function_declaration] = STATE(1580), + [sym_generator_function_declaration] = STATE(1580), [sym_comment] = STATE(897), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(1205), - [sym_ambient_declaration] = STATE(1205), - [sym_abstract_class_declaration] = STATE(1205), - [sym_module] = STATE(1205), - [sym_internal_module] = STATE(1185), - [sym_import_alias] = STATE(1205), - [sym_interface_declaration] = STATE(1205), - [sym_enum_declaration] = STATE(1205), - [sym_type_alias_declaration] = STATE(1205), - [aux_sym_export_statement_repeat1] = STATE(5095), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(1580), + [sym_ambient_declaration] = STATE(1580), + [sym_abstract_class_declaration] = STATE(1580), + [sym_module] = STATE(1580), + [sym_internal_module] = STATE(1507), + [sym_import_alias] = STATE(1580), + [sym_interface_declaration] = STATE(1580), + [sym_enum_declaration] = STATE(1580), + [sym_type_alias_declaration] = STATE(1580), + [aux_sym_export_statement_repeat1] = STATE(4857), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2999), - [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_type] = ACTIONS(2827), + [anon_sym_EQ] = ACTIONS(1291), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2961), - [anon_sym_import] = ACTIONS(2963), - [anon_sym_var] = ACTIONS(2965), - [anon_sym_let] = ACTIONS(2967), - [anon_sym_const] = ACTIONS(2969), + [anon_sym_namespace] = ACTIONS(2752), + [anon_sym_import] = ACTIONS(2758), + [anon_sym_var] = ACTIONS(2760), + [anon_sym_let] = ACTIONS(2762), + [anon_sym_const] = ACTIONS(2764), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(210), [anon_sym_in] = ACTIONS(118), @@ -135440,9 +135158,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(210), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(210), - [anon_sym_class] = ACTIONS(2973), - [anon_sym_async] = ACTIONS(2975), - [anon_sym_function] = ACTIONS(2977), + [anon_sym_class] = ACTIONS(2772), + [anon_sym_async] = ACTIONS(2774), + [anon_sym_function] = ACTIONS(2776), [anon_sym_EQ_GT] = ACTIONS(3023), [anon_sym_QMARK_DOT] = ACTIONS(210), [anon_sym_PLUS_EQ] = ACTIONS(2780), @@ -135487,45 +135205,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2785), [anon_sym_BQUOTE] = ACTIONS(210), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2979), - [anon_sym_module] = ACTIONS(3001), - [anon_sym_abstract] = ACTIONS(2983), + [anon_sym_declare] = ACTIONS(2789), + [anon_sym_module] = ACTIONS(2829), + [anon_sym_abstract] = ACTIONS(2793), [anon_sym_satisfies] = ACTIONS(210), - [anon_sym_global] = ACTIONS(3003), - [anon_sym_interface] = ACTIONS(2985), - [anon_sym_enum] = ACTIONS(2987), + [anon_sym_global] = ACTIONS(2831), + [anon_sym_interface] = ACTIONS(2795), + [anon_sym_enum] = ACTIONS(2797), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [898] = { [sym_comment] = STATE(898), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2470), - [anon_sym_STAR] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_EQ] = ACTIONS(1016), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_identifier] = ACTIONS(2454), + [anon_sym_export] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2454), + [anon_sym_type] = ACTIONS(2454), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2454), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), - [anon_sym_let] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(1045), + [anon_sym_let] = ACTIONS(2454), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_COLON] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(2454), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2470), - [anon_sym_SQUOTE] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2454), + [anon_sym_async] = ACTIONS(2454), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2470), + [anon_sym_new] = ACTIONS(2454), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -135567,151 +135285,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2470), - [sym_private_property_identifier] = ACTIONS(2470), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_readonly] = ACTIONS(2470), - [anon_sym_get] = ACTIONS(2470), - [anon_sym_set] = ACTIONS(2470), - [anon_sym_QMARK] = ACTIONS(1043), - [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), + [sym_number] = ACTIONS(2454), + [sym_private_property_identifier] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_readonly] = ACTIONS(2454), + [anon_sym_get] = ACTIONS(2454), + [anon_sym_set] = ACTIONS(2454), + [anon_sym_QMARK] = ACTIONS(985), + [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_object] = ACTIONS(2454), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [899] = { + [sym_declaration] = STATE(4992), + [sym_variable_declaration] = STATE(5000), + [sym_lexical_declaration] = STATE(5000), + [sym_class_declaration] = STATE(5000), + [sym_function_declaration] = STATE(5000), + [sym_generator_function_declaration] = STATE(5000), [sym_comment] = STATE(899), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(2474), - [anon_sym_export] = ACTIONS(2474), - [anon_sym_STAR] = ACTIONS(2474), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_EQ] = ACTIONS(1016), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(2474), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(2474), - [anon_sym_SQUOTE] = ACTIONS(2474), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_EQ_GT] = ACTIONS(1035), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(2474), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [sym_number] = ACTIONS(2474), - [sym_private_property_identifier] = ACTIONS(2474), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_readonly] = ACTIONS(2474), - [anon_sym_get] = ACTIONS(2474), - [anon_sym_set] = ACTIONS(2474), - [anon_sym_QMARK] = ACTIONS(1043), - [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_object] = ACTIONS(2474), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [900] = { - [sym_declaration] = STATE(1732), - [sym_variable_declaration] = STATE(1772), - [sym_lexical_declaration] = STATE(1772), - [sym_class_declaration] = STATE(1772), - [sym_function_declaration] = STATE(1772), - [sym_generator_function_declaration] = STATE(1772), - [sym_comment] = STATE(900), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(1772), - [sym_ambient_declaration] = STATE(1772), - [sym_abstract_class_declaration] = STATE(1772), - [sym_module] = STATE(1772), - [sym_internal_module] = STATE(1647), - [sym_import_alias] = STATE(1772), - [sym_interface_declaration] = STATE(1772), - [sym_enum_declaration] = STATE(1772), - [sym_type_alias_declaration] = STATE(1772), - [aux_sym_export_statement_repeat1] = STATE(5112), + [sym_decorator] = STATE(5596), + [sym_function_signature] = STATE(5000), + [sym_ambient_declaration] = STATE(5000), + [sym_abstract_class_declaration] = STATE(5000), + [sym_module] = STATE(5000), + [sym_internal_module] = STATE(4993), + [sym_import_alias] = STATE(5000), + [sym_interface_declaration] = STATE(5000), + [sym_enum_declaration] = STATE(5000), + [sym_type_alias_declaration] = STATE(5000), + [aux_sym_export_statement_repeat1] = STATE(4885), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(2827), - [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_type] = ACTIONS(3025), + [anon_sym_EQ] = ACTIONS(1291), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(2752), - [anon_sym_import] = ACTIONS(2758), - [anon_sym_var] = ACTIONS(2760), - [anon_sym_let] = ACTIONS(2762), - [anon_sym_const] = ACTIONS(2764), + [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(118), [anon_sym_LPAREN] = ACTIONS(210), [anon_sym_in] = ACTIONS(118), @@ -135719,9 +135344,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(210), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(210), - [anon_sym_class] = ACTIONS(2772), - [anon_sym_async] = ACTIONS(2774), - [anon_sym_function] = ACTIONS(2776), + [anon_sym_class] = ACTIONS(3037), + [anon_sym_async] = ACTIONS(3039), + [anon_sym_function] = ACTIONS(3041), [anon_sym_EQ_GT] = ACTIONS(3023), [anon_sym_QMARK_DOT] = ACTIONS(210), [anon_sym_PLUS_EQ] = ACTIONS(2780), @@ -135766,72 +135391,153 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(2785), [anon_sym_BQUOTE] = ACTIONS(210), [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(2789), - [anon_sym_module] = ACTIONS(2829), - [anon_sym_abstract] = ACTIONS(2793), + [anon_sym_declare] = ACTIONS(3043), + [anon_sym_module] = ACTIONS(3045), + [anon_sym_abstract] = ACTIONS(3047), [anon_sym_satisfies] = ACTIONS(210), - [anon_sym_global] = ACTIONS(2831), - [anon_sym_interface] = ACTIONS(2795), - [anon_sym_enum] = ACTIONS(2797), + [anon_sym_global] = ACTIONS(3049), + [anon_sym_interface] = ACTIONS(3051), + [anon_sym_enum] = ACTIONS(3053), + [sym__automatic_semicolon] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [900] = { + [sym_comment] = STATE(900), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_identifier] = ACTIONS(2452), + [anon_sym_export] = ACTIONS(2452), + [anon_sym_STAR] = ACTIONS(2452), + [anon_sym_type] = ACTIONS(2452), + [anon_sym_EQ] = ACTIONS(958), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(2452), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(1045), + [anon_sym_let] = ACTIONS(2452), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(2452), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(2452), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_async] = ACTIONS(2452), + [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2452), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2782), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [sym_number] = ACTIONS(2452), + [sym_private_property_identifier] = ACTIONS(2452), + [anon_sym_static] = ACTIONS(2452), + [anon_sym_readonly] = ACTIONS(2452), + [anon_sym_get] = ACTIONS(2452), + [anon_sym_set] = ACTIONS(2452), + [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_declare] = ACTIONS(2452), + [anon_sym_public] = ACTIONS(2452), + [anon_sym_private] = ACTIONS(2452), + [anon_sym_protected] = ACTIONS(2452), + [anon_sym_override] = ACTIONS(2452), + [anon_sym_module] = ACTIONS(2452), + [anon_sym_any] = ACTIONS(2452), + [anon_sym_number] = ACTIONS(2452), + [anon_sym_boolean] = ACTIONS(2452), + [anon_sym_string] = ACTIONS(2452), + [anon_sym_symbol] = ACTIONS(2452), + [anon_sym_object] = ACTIONS(2452), + [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [901] = { - [sym_declaration] = STATE(5104), - [sym_variable_declaration] = STATE(5108), - [sym_lexical_declaration] = STATE(5108), - [sym_class_declaration] = STATE(5108), - [sym_function_declaration] = STATE(5108), - [sym_generator_function_declaration] = STATE(5108), [sym_comment] = STATE(901), - [sym_decorator] = STATE(5733), - [sym_function_signature] = STATE(5108), - [sym_ambient_declaration] = STATE(5108), - [sym_abstract_class_declaration] = STATE(5108), - [sym_module] = STATE(5108), - [sym_internal_module] = STATE(5109), - [sym_import_alias] = STATE(5108), - [sym_interface_declaration] = STATE(5108), - [sym_enum_declaration] = STATE(5108), - [sym_type_alias_declaration] = STATE(5108), - [aux_sym_export_statement_repeat1] = STATE(5142), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3025), - [anon_sym_EQ] = ACTIONS(1271), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_identifier] = ACTIONS(2454), + [anon_sym_export] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2454), + [anon_sym_type] = ACTIONS(2454), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), - [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_namespace] = ACTIONS(2454), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_let] = ACTIONS(2454), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(210), + [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(210), - [anon_sym_LBRACK] = ACTIONS(210), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(2454), [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(210), - [anon_sym_class] = ACTIONS(3037), - [anon_sym_async] = ACTIONS(3039), - [anon_sym_function] = ACTIONS(3041), - [anon_sym_EQ_GT] = ACTIONS(3023), - [anon_sym_QMARK_DOT] = ACTIONS(210), - [anon_sym_PLUS_EQ] = ACTIONS(2780), - [anon_sym_DASH_EQ] = ACTIONS(2780), - [anon_sym_STAR_EQ] = ACTIONS(2780), - [anon_sym_SLASH_EQ] = ACTIONS(2780), - [anon_sym_PERCENT_EQ] = ACTIONS(2780), - [anon_sym_CARET_EQ] = ACTIONS(2780), - [anon_sym_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(2780), - [anon_sym_LT_LT_EQ] = ACTIONS(2780), - [anon_sym_STAR_STAR_EQ] = ACTIONS(2780), - [anon_sym_AMP_AMP_EQ] = ACTIONS(2780), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(2780), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(2780), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2454), + [anon_sym_async] = ACTIONS(2454), + [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(2454), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), [anon_sym_AMP_AMP] = ACTIONS(118), [anon_sym_PIPE_PIPE] = ACTIONS(118), [anon_sym_GT_GT] = ACTIONS(118), @@ -135845,53 +135551,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(210), + [anon_sym_LT] = ACTIONS(2782), + [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(210), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(210), - [anon_sym_GT_EQ] = ACTIONS(210), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(210), - [anon_sym_PLUS_PLUS] = ACTIONS(210), - [anon_sym_DASH_DASH] = ACTIONS(210), - [aux_sym_comment_token1] = ACTIONS(2785), - [anon_sym_BQUOTE] = ACTIONS(210), - [anon_sym_AT] = ACTIONS(2787), - [anon_sym_declare] = ACTIONS(3043), - [anon_sym_module] = ACTIONS(3045), - [anon_sym_abstract] = ACTIONS(3047), - [anon_sym_satisfies] = ACTIONS(210), - [anon_sym_global] = ACTIONS(3049), - [anon_sym_interface] = ACTIONS(3051), - [anon_sym_enum] = ACTIONS(3053), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [sym_number] = ACTIONS(2454), + [sym_private_property_identifier] = ACTIONS(2454), + [anon_sym_static] = ACTIONS(2454), + [anon_sym_readonly] = ACTIONS(2454), + [anon_sym_get] = ACTIONS(2454), + [anon_sym_set] = ACTIONS(2454), + [anon_sym_QMARK] = ACTIONS(985), + [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_object] = ACTIONS(2454), + [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [902] = { - [sym__call_signature] = STATE(7228), + [sym__call_signature] = STATE(7075), [sym_comment] = STATE(902), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(212), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_RBRACE] = ACTIONS(215), + [anon_sym_COMMA] = ACTIONS(1117), + [anon_sym_RBRACE] = ACTIONS(1117), [anon_sym_let] = ACTIONS(3057), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_RPAREN] = ACTIONS(215), + [anon_sym_RPAREN] = ACTIONS(1117), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(215), + [anon_sym_COLON] = ACTIONS(1117), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(215), + [anon_sym_RBRACK] = ACTIONS(1117), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3057), @@ -135944,7 +135662,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(3057), [anon_sym_get] = ACTIONS(3057), [anon_sym_set] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_QMARK] = ACTIONS(1117), [anon_sym_declare] = ACTIONS(3057), [anon_sym_public] = ACTIONS(3057), [anon_sym_private] = ACTIONS(3057), @@ -135962,27 +135680,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [903] = { - [sym__call_signature] = STATE(7228), + [sym__call_signature] = STATE(7075), [sym_comment] = STATE(903), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(212), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_COMMA] = ACTIONS(1117), - [anon_sym_RBRACE] = ACTIONS(1117), + [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_RBRACE] = ACTIONS(215), [anon_sym_let] = ACTIONS(3057), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_RPAREN] = ACTIONS(1117), + [anon_sym_RPAREN] = ACTIONS(215), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), + [anon_sym_COLON] = ACTIONS(215), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1117), + [anon_sym_RBRACK] = ACTIONS(215), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3057), @@ -136035,7 +135753,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(3057), [anon_sym_get] = ACTIONS(3057), [anon_sym_set] = ACTIONS(3057), - [anon_sym_QMARK] = ACTIONS(1117), + [anon_sym_QMARK] = ACTIONS(215), [anon_sym_declare] = ACTIONS(3057), [anon_sym_public] = ACTIONS(3057), [anon_sym_private] = ACTIONS(3057), @@ -136053,30 +135771,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [904] = { - [sym__call_signature] = STATE(7351), + [sym__call_signature] = STATE(7265), [sym_comment] = STATE(904), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3067), [anon_sym_export] = ACTIONS(3069), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3069), - [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(118), [anon_sym_let] = ACTIONS(3069), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1232), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3069), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_function] = ACTIONS(3071), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3069), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -136124,7 +135842,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_readonly] = ACTIONS(3069), [anon_sym_get] = ACTIONS(3069), [anon_sym_set] = ACTIONS(3069), - [anon_sym_QMARK] = ACTIONS(215), [anon_sym_declare] = ACTIONS(3069), [anon_sym_public] = ACTIONS(3069), [anon_sym_private] = ACTIONS(3069), @@ -136138,36 +135855,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3069), [anon_sym_object] = ACTIONS(3069), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [905] = { - [sym__call_signature] = STATE(7448), + [sym__call_signature] = STATE(7167), [sym_comment] = STATE(905), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3071), - [anon_sym_export] = ACTIONS(3073), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3073), + [anon_sym_export] = ACTIONS(3075), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_type] = ACTIONS(3075), + [anon_sym_EQ] = ACTIONS(1183), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3073), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3073), + [anon_sym_namespace] = ACTIONS(3075), + [anon_sym_COMMA] = ACTIONS(1243), + [anon_sym_RBRACE] = ACTIONS(1243), + [anon_sym_let] = ACTIONS(3075), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1199), + [anon_sym_COLON] = ACTIONS(1117), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(1243), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3073), - [anon_sym_function] = ACTIONS(3075), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(3075), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1193), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3073), + [anon_sym_new] = ACTIONS(3075), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -136209,54 +135928,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(3073), - [anon_sym_set] = ACTIONS(3073), - [anon_sym_declare] = ACTIONS(3073), - [anon_sym_public] = ACTIONS(3073), - [anon_sym_private] = ACTIONS(3073), - [anon_sym_protected] = ACTIONS(3073), - [anon_sym_override] = ACTIONS(3073), - [anon_sym_module] = ACTIONS(3073), - [anon_sym_any] = ACTIONS(3073), - [anon_sym_number] = ACTIONS(3073), - [anon_sym_boolean] = ACTIONS(3073), - [anon_sym_string] = ACTIONS(3073), - [anon_sym_symbol] = ACTIONS(3073), - [anon_sym_object] = ACTIONS(3073), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3075), + [anon_sym_set] = ACTIONS(3075), + [anon_sym_declare] = ACTIONS(3075), + [anon_sym_public] = ACTIONS(3075), + [anon_sym_private] = ACTIONS(3075), + [anon_sym_protected] = ACTIONS(3075), + [anon_sym_override] = ACTIONS(3075), + [anon_sym_module] = ACTIONS(3075), + [anon_sym_any] = ACTIONS(3075), + [anon_sym_number] = ACTIONS(3075), + [anon_sym_boolean] = ACTIONS(3075), + [anon_sym_string] = ACTIONS(3075), + [anon_sym_symbol] = ACTIONS(3075), + [anon_sym_object] = ACTIONS(3075), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [906] = { - [sym__call_signature] = STATE(7404), + [sym__call_signature] = STATE(7265), [sym_comment] = STATE(906), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3077), - [anon_sym_export] = ACTIONS(3079), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3067), + [anon_sym_export] = ACTIONS(3069), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_type] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3069), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3079), + [anon_sym_let] = ACTIONS(3069), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), + [anon_sym_in] = ACTIONS(1209), + [anon_sym_of] = ACTIONS(1212), [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3079), - [anon_sym_function] = ACTIONS(3081), - [anon_sym_EQ_GT] = ACTIONS(1183), + [anon_sym_async] = ACTIONS(3069), + [anon_sym_function] = ACTIONS(3077), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3069), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -136298,55 +136016,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3079), - [anon_sym_readonly] = ACTIONS(3079), - [anon_sym_get] = ACTIONS(3079), - [anon_sym_set] = ACTIONS(3079), - [anon_sym_declare] = ACTIONS(3079), - [anon_sym_public] = ACTIONS(3079), - [anon_sym_private] = ACTIONS(3079), - [anon_sym_protected] = ACTIONS(3079), - [anon_sym_override] = ACTIONS(3079), - [anon_sym_module] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3079), - [anon_sym_number] = ACTIONS(3079), - [anon_sym_boolean] = ACTIONS(3079), - [anon_sym_string] = ACTIONS(3079), - [anon_sym_symbol] = ACTIONS(3079), - [anon_sym_object] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3069), + [anon_sym_readonly] = ACTIONS(3069), + [anon_sym_get] = ACTIONS(3069), + [anon_sym_set] = ACTIONS(3069), + [anon_sym_declare] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_module] = ACTIONS(3069), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [907] = { - [sym__call_signature] = STATE(7350), + [sym__call_signature] = STATE(7189), [sym_comment] = STATE(907), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3083), - [anon_sym_export] = ACTIONS(3085), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3079), + [anon_sym_export] = ACTIONS(3081), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3085), + [anon_sym_type] = ACTIONS(3081), [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3085), + [anon_sym_namespace] = ACTIONS(3081), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3085), + [anon_sym_let] = ACTIONS(3081), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3085), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_async] = ACTIONS(3081), + [anon_sym_function] = ACTIONS(3077), + [anon_sym_EQ_GT] = ACTIONS(1224), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3081), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -136388,53 +136105,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3085), - [anon_sym_readonly] = ACTIONS(3085), - [anon_sym_get] = ACTIONS(3085), - [anon_sym_set] = ACTIONS(3085), - [anon_sym_declare] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_protected] = ACTIONS(3085), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_module] = ACTIONS(3085), - [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_object] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3081), + [anon_sym_readonly] = ACTIONS(3081), + [anon_sym_get] = ACTIONS(3081), + [anon_sym_set] = ACTIONS(3081), + [anon_sym_declare] = ACTIONS(3081), + [anon_sym_public] = ACTIONS(3081), + [anon_sym_private] = ACTIONS(3081), + [anon_sym_protected] = ACTIONS(3081), + [anon_sym_override] = ACTIONS(3081), + [anon_sym_module] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3081), + [anon_sym_number] = ACTIONS(3081), + [anon_sym_boolean] = ACTIONS(3081), + [anon_sym_string] = ACTIONS(3081), + [anon_sym_symbol] = ACTIONS(3081), + [anon_sym_object] = ACTIONS(3081), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [908] = { - [sym__call_signature] = STATE(7448), + [sym__call_signature] = STATE(7189), [sym_comment] = STATE(908), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3071), - [anon_sym_export] = ACTIONS(3073), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3079), + [anon_sym_export] = ACTIONS(3081), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_type] = ACTIONS(3081), + [anon_sym_EQ] = ACTIONS(1218), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3073), + [anon_sym_namespace] = ACTIONS(3081), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3073), + [anon_sym_let] = ACTIONS(3081), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1181), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3073), - [anon_sym_function] = ACTIONS(3087), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(3081), + [anon_sym_function] = ACTIONS(3077), + [anon_sym_EQ_GT] = ACTIONS(1224), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3073), + [anon_sym_new] = ACTIONS(3081), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -136476,54 +136194,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(3073), - [anon_sym_set] = ACTIONS(3073), - [anon_sym_declare] = ACTIONS(3073), - [anon_sym_public] = ACTIONS(3073), - [anon_sym_private] = ACTIONS(3073), - [anon_sym_protected] = ACTIONS(3073), - [anon_sym_override] = ACTIONS(3073), - [anon_sym_module] = ACTIONS(3073), - [anon_sym_any] = ACTIONS(3073), - [anon_sym_number] = ACTIONS(3073), - [anon_sym_boolean] = ACTIONS(3073), - [anon_sym_string] = ACTIONS(3073), - [anon_sym_symbol] = ACTIONS(3073), - [anon_sym_object] = ACTIONS(3073), + [anon_sym_static] = ACTIONS(3081), + [anon_sym_readonly] = ACTIONS(3081), + [anon_sym_get] = ACTIONS(3081), + [anon_sym_set] = ACTIONS(3081), + [anon_sym_declare] = ACTIONS(3081), + [anon_sym_public] = ACTIONS(3081), + [anon_sym_private] = ACTIONS(3081), + [anon_sym_protected] = ACTIONS(3081), + [anon_sym_override] = ACTIONS(3081), + [anon_sym_module] = ACTIONS(3081), + [anon_sym_any] = ACTIONS(3081), + [anon_sym_number] = ACTIONS(3081), + [anon_sym_boolean] = ACTIONS(3081), + [anon_sym_string] = ACTIONS(3081), + [anon_sym_symbol] = ACTIONS(3081), + [anon_sym_object] = ACTIONS(3081), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [909] = { - [sym__call_signature] = STATE(7404), + [sym__call_signature] = STATE(7167), [sym_comment] = STATE(909), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3077), - [anon_sym_export] = ACTIONS(3079), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3073), + [anon_sym_export] = ACTIONS(3075), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3079), - [anon_sym_EQ] = ACTIONS(1189), + [anon_sym_type] = ACTIONS(3075), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3079), + [anon_sym_namespace] = ACTIONS(3075), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3079), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_let] = ACTIONS(3075), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3079), - [anon_sym_function] = ACTIONS(3081), - [anon_sym_EQ_GT] = ACTIONS(1183), + [anon_sym_async] = ACTIONS(3075), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1193), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3079), + [anon_sym_new] = ACTIONS(3075), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -136565,54 +136284,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3079), - [anon_sym_readonly] = ACTIONS(3079), - [anon_sym_get] = ACTIONS(3079), - [anon_sym_set] = ACTIONS(3079), - [anon_sym_declare] = ACTIONS(3079), - [anon_sym_public] = ACTIONS(3079), - [anon_sym_private] = ACTIONS(3079), - [anon_sym_protected] = ACTIONS(3079), - [anon_sym_override] = ACTIONS(3079), - [anon_sym_module] = ACTIONS(3079), - [anon_sym_any] = ACTIONS(3079), - [anon_sym_number] = ACTIONS(3079), - [anon_sym_boolean] = ACTIONS(3079), - [anon_sym_string] = ACTIONS(3079), - [anon_sym_symbol] = ACTIONS(3079), - [anon_sym_object] = ACTIONS(3079), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3075), + [anon_sym_set] = ACTIONS(3075), + [anon_sym_declare] = ACTIONS(3075), + [anon_sym_public] = ACTIONS(3075), + [anon_sym_private] = ACTIONS(3075), + [anon_sym_protected] = ACTIONS(3075), + [anon_sym_override] = ACTIONS(3075), + [anon_sym_module] = ACTIONS(3075), + [anon_sym_any] = ACTIONS(3075), + [anon_sym_number] = ACTIONS(3075), + [anon_sym_boolean] = ACTIONS(3075), + [anon_sym_string] = ACTIONS(3075), + [anon_sym_symbol] = ACTIONS(3075), + [anon_sym_object] = ACTIONS(3075), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [910] = { - [sym__call_signature] = STATE(7448), + [sym__call_signature] = STATE(7265), [sym_comment] = STATE(910), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3071), - [anon_sym_export] = ACTIONS(3073), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3067), + [anon_sym_export] = ACTIONS(3069), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_type] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3073), + [anon_sym_namespace] = ACTIONS(3069), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3073), + [anon_sym_let] = ACTIONS(3069), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_COLON] = ACTIONS(1236), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3073), - [anon_sym_function] = ACTIONS(3089), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(3069), + [anon_sym_function] = ACTIONS(3083), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3073), + [anon_sym_new] = ACTIONS(3069), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -136654,54 +136372,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(3073), - [anon_sym_set] = ACTIONS(3073), - [anon_sym_declare] = ACTIONS(3073), - [anon_sym_public] = ACTIONS(3073), - [anon_sym_private] = ACTIONS(3073), - [anon_sym_protected] = ACTIONS(3073), - [anon_sym_override] = ACTIONS(3073), - [anon_sym_module] = ACTIONS(3073), - [anon_sym_any] = ACTIONS(3073), - [anon_sym_number] = ACTIONS(3073), - [anon_sym_boolean] = ACTIONS(3073), - [anon_sym_string] = ACTIONS(3073), - [anon_sym_symbol] = ACTIONS(3073), - [anon_sym_object] = ACTIONS(3073), + [anon_sym_static] = ACTIONS(3069), + [anon_sym_readonly] = ACTIONS(3069), + [anon_sym_get] = ACTIONS(3069), + [anon_sym_set] = ACTIONS(3069), + [anon_sym_declare] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_module] = ACTIONS(3069), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [911] = { - [sym__call_signature] = STATE(7448), + [sym__call_signature] = STATE(7167), [sym_comment] = STATE(911), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3071), - [anon_sym_export] = ACTIONS(3073), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3073), + [anon_sym_export] = ACTIONS(3075), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_type] = ACTIONS(3075), + [anon_sym_EQ] = ACTIONS(1183), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3073), + [anon_sym_namespace] = ACTIONS(3075), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3073), + [anon_sym_let] = ACTIONS(3075), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3073), - [anon_sym_function] = ACTIONS(3081), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(3075), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1193), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3073), + [anon_sym_new] = ACTIONS(3075), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -136743,54 +136462,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(3073), - [anon_sym_set] = ACTIONS(3073), - [anon_sym_declare] = ACTIONS(3073), - [anon_sym_public] = ACTIONS(3073), - [anon_sym_private] = ACTIONS(3073), - [anon_sym_protected] = ACTIONS(3073), - [anon_sym_override] = ACTIONS(3073), - [anon_sym_module] = ACTIONS(3073), - [anon_sym_any] = ACTIONS(3073), - [anon_sym_number] = ACTIONS(3073), - [anon_sym_boolean] = ACTIONS(3073), - [anon_sym_string] = ACTIONS(3073), - [anon_sym_symbol] = ACTIONS(3073), - [anon_sym_object] = ACTIONS(3073), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3075), + [anon_sym_set] = ACTIONS(3075), + [anon_sym_declare] = ACTIONS(3075), + [anon_sym_public] = ACTIONS(3075), + [anon_sym_private] = ACTIONS(3075), + [anon_sym_protected] = ACTIONS(3075), + [anon_sym_override] = ACTIONS(3075), + [anon_sym_module] = ACTIONS(3075), + [anon_sym_any] = ACTIONS(3075), + [anon_sym_number] = ACTIONS(3075), + [anon_sym_boolean] = ACTIONS(3075), + [anon_sym_string] = ACTIONS(3075), + [anon_sym_symbol] = ACTIONS(3075), + [anon_sym_object] = ACTIONS(3075), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [912] = { - [sym__call_signature] = STATE(7448), + [sym__call_signature] = STATE(7265), [sym_comment] = STATE(912), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3071), - [anon_sym_export] = ACTIONS(3073), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3067), + [anon_sym_export] = ACTIONS(3069), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_type] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3073), + [anon_sym_namespace] = ACTIONS(3069), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3073), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_let] = ACTIONS(3069), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1236), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3073), - [anon_sym_function] = ACTIONS(3091), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(3069), + [anon_sym_function] = ACTIONS(3077), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3073), + [anon_sym_new] = ACTIONS(3069), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -136832,55 +136550,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(3073), - [anon_sym_set] = ACTIONS(3073), - [anon_sym_declare] = ACTIONS(3073), - [anon_sym_public] = ACTIONS(3073), - [anon_sym_private] = ACTIONS(3073), - [anon_sym_protected] = ACTIONS(3073), - [anon_sym_override] = ACTIONS(3073), - [anon_sym_module] = ACTIONS(3073), - [anon_sym_any] = ACTIONS(3073), - [anon_sym_number] = ACTIONS(3073), - [anon_sym_boolean] = ACTIONS(3073), - [anon_sym_string] = ACTIONS(3073), - [anon_sym_symbol] = ACTIONS(3073), - [anon_sym_object] = ACTIONS(3073), + [anon_sym_static] = ACTIONS(3069), + [anon_sym_readonly] = ACTIONS(3069), + [anon_sym_get] = ACTIONS(3069), + [anon_sym_set] = ACTIONS(3069), + [anon_sym_declare] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_module] = ACTIONS(3069), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [913] = { - [sym__call_signature] = STATE(7350), + [sym__call_signature] = STATE(6960), [sym_comment] = STATE(913), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3083), - [anon_sym_export] = ACTIONS(3085), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3085), + [anon_sym_export] = ACTIONS(3087), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3085), - [anon_sym_EQ] = ACTIONS(1205), + [anon_sym_type] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3085), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(3085), + [anon_sym_namespace] = ACTIONS(3087), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_let] = ACTIONS(3087), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), + [anon_sym_COLON] = ACTIONS(124), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1242), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3085), + [anon_sym_async] = ACTIONS(3087), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3087), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -136922,53 +136639,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3085), - [anon_sym_readonly] = ACTIONS(3085), - [anon_sym_get] = ACTIONS(3085), - [anon_sym_set] = ACTIONS(3085), - [anon_sym_declare] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_protected] = ACTIONS(3085), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_module] = ACTIONS(3085), - [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_object] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_readonly] = ACTIONS(3087), + [anon_sym_get] = ACTIONS(3087), + [anon_sym_set] = ACTIONS(3087), + [anon_sym_QMARK] = ACTIONS(215), + [anon_sym_declare] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3087), + [anon_sym_private] = ACTIONS(3087), + [anon_sym_protected] = ACTIONS(3087), + [anon_sym_override] = ACTIONS(3087), + [anon_sym_module] = ACTIONS(3087), + [anon_sym_any] = ACTIONS(3087), + [anon_sym_number] = ACTIONS(3087), + [anon_sym_boolean] = ACTIONS(3087), + [anon_sym_string] = ACTIONS(3087), + [anon_sym_symbol] = ACTIONS(3087), + [anon_sym_object] = ACTIONS(3087), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [914] = { - [sym__call_signature] = STATE(7448), + [sym__call_signature] = STATE(7265), [sym_comment] = STATE(914), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3071), - [anon_sym_export] = ACTIONS(3073), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3067), + [anon_sym_export] = ACTIONS(3069), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_type] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3073), + [anon_sym_namespace] = ACTIONS(3069), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3073), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_let] = ACTIONS(3069), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1238), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3073), - [anon_sym_function] = ACTIONS(2817), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(3069), + [anon_sym_function] = ACTIONS(3077), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3073), + [anon_sym_new] = ACTIONS(3069), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -137010,54 +136728,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(3073), - [anon_sym_set] = ACTIONS(3073), - [anon_sym_declare] = ACTIONS(3073), - [anon_sym_public] = ACTIONS(3073), - [anon_sym_private] = ACTIONS(3073), - [anon_sym_protected] = ACTIONS(3073), - [anon_sym_override] = ACTIONS(3073), - [anon_sym_module] = ACTIONS(3073), - [anon_sym_any] = ACTIONS(3073), - [anon_sym_number] = ACTIONS(3073), - [anon_sym_boolean] = ACTIONS(3073), - [anon_sym_string] = ACTIONS(3073), - [anon_sym_symbol] = ACTIONS(3073), - [anon_sym_object] = ACTIONS(3073), + [anon_sym_static] = ACTIONS(3069), + [anon_sym_readonly] = ACTIONS(3069), + [anon_sym_get] = ACTIONS(3069), + [anon_sym_set] = ACTIONS(3069), + [anon_sym_declare] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_module] = ACTIONS(3069), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [915] = { - [sym__call_signature] = STATE(7448), + [sym__call_signature] = STATE(7265), [sym_comment] = STATE(915), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3071), - [anon_sym_export] = ACTIONS(3073), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3067), + [anon_sym_export] = ACTIONS(3069), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_type] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3073), + [anon_sym_namespace] = ACTIONS(3069), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3073), + [anon_sym_let] = ACTIONS(3069), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(1231), - [anon_sym_of] = ACTIONS(1234), + [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1230), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3073), - [anon_sym_function] = ACTIONS(3081), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(3069), + [anon_sym_function] = ACTIONS(3089), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3073), + [anon_sym_new] = ACTIONS(3069), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -137099,143 +136817,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(3073), - [anon_sym_set] = ACTIONS(3073), - [anon_sym_declare] = ACTIONS(3073), - [anon_sym_public] = ACTIONS(3073), - [anon_sym_private] = ACTIONS(3073), - [anon_sym_protected] = ACTIONS(3073), - [anon_sym_override] = ACTIONS(3073), - [anon_sym_module] = ACTIONS(3073), - [anon_sym_any] = ACTIONS(3073), - [anon_sym_number] = ACTIONS(3073), - [anon_sym_boolean] = ACTIONS(3073), - [anon_sym_string] = ACTIONS(3073), - [anon_sym_symbol] = ACTIONS(3073), - [anon_sym_object] = ACTIONS(3073), + [anon_sym_static] = ACTIONS(3069), + [anon_sym_readonly] = ACTIONS(3069), + [anon_sym_get] = ACTIONS(3069), + [anon_sym_set] = ACTIONS(3069), + [anon_sym_declare] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_module] = ACTIONS(3069), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [916] = { - [sym__call_signature] = STATE(7350), + [sym__call_signature] = STATE(7265), [sym_comment] = STATE(916), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3083), - [anon_sym_export] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3085), - [anon_sym_EQ] = ACTIONS(1205), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3085), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3085), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3085), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1215), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3085), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3085), - [anon_sym_readonly] = ACTIONS(3085), - [anon_sym_get] = ACTIONS(3085), - [anon_sym_set] = ACTIONS(3085), - [anon_sym_declare] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_protected] = ACTIONS(3085), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_module] = ACTIONS(3085), - [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_object] = ACTIONS(3085), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [917] = { - [sym__call_signature] = STATE(7448), - [sym_comment] = STATE(917), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3071), - [anon_sym_export] = ACTIONS(3073), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3067), + [anon_sym_export] = ACTIONS(3069), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_type] = ACTIONS(3069), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3073), + [anon_sym_namespace] = ACTIONS(3069), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3073), + [anon_sym_let] = ACTIONS(3069), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1234), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3073), - [anon_sym_function] = ACTIONS(3081), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_async] = ACTIONS(3069), + [anon_sym_function] = ACTIONS(2817), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3073), + [anon_sym_new] = ACTIONS(3069), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -137277,52 +136906,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(3073), - [anon_sym_set] = ACTIONS(3073), - [anon_sym_declare] = ACTIONS(3073), - [anon_sym_public] = ACTIONS(3073), - [anon_sym_private] = ACTIONS(3073), - [anon_sym_protected] = ACTIONS(3073), - [anon_sym_override] = ACTIONS(3073), - [anon_sym_module] = ACTIONS(3073), - [anon_sym_any] = ACTIONS(3073), - [anon_sym_number] = ACTIONS(3073), - [anon_sym_boolean] = ACTIONS(3073), - [anon_sym_string] = ACTIONS(3073), - [anon_sym_symbol] = ACTIONS(3073), - [anon_sym_object] = ACTIONS(3073), + [anon_sym_static] = ACTIONS(3069), + [anon_sym_readonly] = ACTIONS(3069), + [anon_sym_get] = ACTIONS(3069), + [anon_sym_set] = ACTIONS(3069), + [anon_sym_declare] = ACTIONS(3069), + [anon_sym_public] = ACTIONS(3069), + [anon_sym_private] = ACTIONS(3069), + [anon_sym_protected] = ACTIONS(3069), + [anon_sym_override] = ACTIONS(3069), + [anon_sym_module] = ACTIONS(3069), + [anon_sym_any] = ACTIONS(3069), + [anon_sym_number] = ACTIONS(3069), + [anon_sym_boolean] = ACTIONS(3069), + [anon_sym_string] = ACTIONS(3069), + [anon_sym_symbol] = ACTIONS(3069), + [anon_sym_object] = ACTIONS(3069), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [918] = { - [sym__call_signature] = STATE(7351), - [sym_comment] = STATE(918), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [917] = { + [sym__call_signature] = STATE(7265), + [sym_comment] = STATE(917), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3067), [anon_sym_export] = ACTIONS(3069), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3069), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_let] = ACTIONS(3069), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_RPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1238), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3069), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_function] = ACTIONS(3091), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3069), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -137383,34 +137012,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3069), [anon_sym_object] = ACTIONS(3069), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [918] = { + [sym__call_signature] = STATE(7142), + [sym_comment] = STATE(918), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3093), + [anon_sym_export] = ACTIONS(3095), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(3095), + [anon_sym_EQ] = ACTIONS(1275), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_LBRACE] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_let] = ACTIONS(3095), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_async] = ACTIONS(3095), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1281), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(3095), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_static] = ACTIONS(3095), + [anon_sym_readonly] = ACTIONS(3095), + [anon_sym_get] = ACTIONS(3095), + [anon_sym_set] = ACTIONS(3095), + [anon_sym_declare] = ACTIONS(3095), + [anon_sym_public] = ACTIONS(3095), + [anon_sym_private] = ACTIONS(3095), + [anon_sym_protected] = ACTIONS(3095), + [anon_sym_override] = ACTIONS(3095), + [anon_sym_module] = ACTIONS(3095), + [anon_sym_any] = ACTIONS(3095), + [anon_sym_number] = ACTIONS(3095), + [anon_sym_boolean] = ACTIONS(3095), + [anon_sym_string] = ACTIONS(3095), + [anon_sym_symbol] = ACTIONS(3095), + [anon_sym_object] = ACTIONS(3095), + [anon_sym_satisfies] = ACTIONS(118), + [anon_sym_implements] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [919] = { - [sym__call_signature] = STATE(7437), + [sym__call_signature] = STATE(7142), [sym_comment] = STATE(919), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3093), [anon_sym_export] = ACTIONS(3095), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_LBRACE] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(118), [anon_sym_let] = ACTIONS(3095), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3095), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_EQ_GT] = ACTIONS(1281), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3095), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -137471,35 +137188,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(3095), [anon_sym_object] = ACTIONS(3095), [anon_sym_satisfies] = ACTIONS(118), + [anon_sym_implements] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [920] = { - [sym__call_signature] = STATE(7245), + [sym__call_signature] = STATE(7167), [sym_comment] = STATE(920), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3097), - [anon_sym_export] = ACTIONS(3099), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3073), + [anon_sym_export] = ACTIONS(3075), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3099), - [anon_sym_EQ] = ACTIONS(1289), + [anon_sym_type] = ACTIONS(3075), + [anon_sym_EQ] = ACTIONS(1240), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3099), + [anon_sym_namespace] = ACTIONS(3075), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_RBRACE] = ACTIONS(124), + [anon_sym_let] = ACTIONS(3075), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3099), + [anon_sym_async] = ACTIONS(3075), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_EQ_GT] = ACTIONS(1193), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3075), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -137541,53 +137260,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3099), - [anon_sym_set] = ACTIONS(3099), - [anon_sym_declare] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_protected] = ACTIONS(3099), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_module] = ACTIONS(3099), - [anon_sym_any] = ACTIONS(3099), - [anon_sym_number] = ACTIONS(3099), - [anon_sym_boolean] = ACTIONS(3099), - [anon_sym_string] = ACTIONS(3099), - [anon_sym_symbol] = ACTIONS(3099), - [anon_sym_object] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3075), + [anon_sym_readonly] = ACTIONS(3075), + [anon_sym_get] = ACTIONS(3075), + [anon_sym_set] = ACTIONS(3075), + [anon_sym_declare] = ACTIONS(3075), + [anon_sym_public] = ACTIONS(3075), + [anon_sym_private] = ACTIONS(3075), + [anon_sym_protected] = ACTIONS(3075), + [anon_sym_override] = ACTIONS(3075), + [anon_sym_module] = ACTIONS(3075), + [anon_sym_any] = ACTIONS(3075), + [anon_sym_number] = ACTIONS(3075), + [anon_sym_boolean] = ACTIONS(3075), + [anon_sym_string] = ACTIONS(3075), + [anon_sym_symbol] = ACTIONS(3075), + [anon_sym_object] = ACTIONS(3075), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [921] = { - [sym__call_signature] = STATE(7245), + [sym__call_signature] = STATE(6960), [sym_comment] = STATE(921), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3097), - [anon_sym_export] = ACTIONS(3099), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3085), + [anon_sym_export] = ACTIONS(3087), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3099), + [anon_sym_type] = ACTIONS(3087), [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3099), - [anon_sym_LBRACE] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(3087), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3099), + [anon_sym_let] = ACTIONS(3087), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_RPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3099), + [anon_sym_async] = ACTIONS(3087), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3099), + [anon_sym_new] = ACTIONS(3087), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -137629,54 +137348,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3099), - [anon_sym_readonly] = ACTIONS(3099), - [anon_sym_get] = ACTIONS(3099), - [anon_sym_set] = ACTIONS(3099), - [anon_sym_declare] = ACTIONS(3099), - [anon_sym_public] = ACTIONS(3099), - [anon_sym_private] = ACTIONS(3099), - [anon_sym_protected] = ACTIONS(3099), - [anon_sym_override] = ACTIONS(3099), - [anon_sym_module] = ACTIONS(3099), - [anon_sym_any] = ACTIONS(3099), - [anon_sym_number] = ACTIONS(3099), - [anon_sym_boolean] = ACTIONS(3099), - [anon_sym_string] = ACTIONS(3099), - [anon_sym_symbol] = ACTIONS(3099), - [anon_sym_object] = ACTIONS(3099), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_readonly] = ACTIONS(3087), + [anon_sym_get] = ACTIONS(3087), + [anon_sym_set] = ACTIONS(3087), + [anon_sym_declare] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3087), + [anon_sym_private] = ACTIONS(3087), + [anon_sym_protected] = ACTIONS(3087), + [anon_sym_override] = ACTIONS(3087), + [anon_sym_module] = ACTIONS(3087), + [anon_sym_any] = ACTIONS(3087), + [anon_sym_number] = ACTIONS(3087), + [anon_sym_boolean] = ACTIONS(3087), + [anon_sym_string] = ACTIONS(3087), + [anon_sym_symbol] = ACTIONS(3087), + [anon_sym_object] = ACTIONS(3087), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [922] = { - [sym__call_signature] = STATE(7350), + [sym__call_signature] = STATE(7254), [sym_comment] = STATE(922), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3083), - [anon_sym_export] = ACTIONS(3085), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3097), + [anon_sym_export] = ACTIONS(3099), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3085), - [anon_sym_EQ] = ACTIONS(1262), + [anon_sym_type] = ACTIONS(3099), + [anon_sym_EQ] = ACTIONS(1250), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3085), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), - [anon_sym_let] = ACTIONS(3085), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_let] = ACTIONS(3099), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1255), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3085), + [anon_sym_async] = ACTIONS(3099), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_GT] = ACTIONS(1259), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3085), + [anon_sym_new] = ACTIONS(3099), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -137718,40 +137436,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3085), - [anon_sym_readonly] = ACTIONS(3085), - [anon_sym_get] = ACTIONS(3085), - [anon_sym_set] = ACTIONS(3085), - [anon_sym_declare] = ACTIONS(3085), - [anon_sym_public] = ACTIONS(3085), - [anon_sym_private] = ACTIONS(3085), - [anon_sym_protected] = ACTIONS(3085), - [anon_sym_override] = ACTIONS(3085), - [anon_sym_module] = ACTIONS(3085), - [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_object] = ACTIONS(3085), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3099), + [anon_sym_get] = ACTIONS(3099), + [anon_sym_set] = ACTIONS(3099), + [anon_sym_declare] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_private] = ACTIONS(3099), + [anon_sym_protected] = ACTIONS(3099), + [anon_sym_override] = ACTIONS(3099), + [anon_sym_module] = ACTIONS(3099), + [anon_sym_any] = ACTIONS(3099), + [anon_sym_number] = ACTIONS(3099), + [anon_sym_boolean] = ACTIONS(3099), + [anon_sym_string] = ACTIONS(3099), + [anon_sym_symbol] = ACTIONS(3099), + [anon_sym_object] = ACTIONS(3099), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [923] = { - [sym__call_signature] = STATE(7351), + [sym__call_signature] = STATE(6960), [sym_comment] = STATE(923), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3067), - [anon_sym_export] = ACTIONS(3069), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3085), + [anon_sym_export] = ACTIONS(3087), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3069), - [anon_sym_EQ] = ACTIONS(1240), + [anon_sym_type] = ACTIONS(3087), + [anon_sym_EQ] = ACTIONS(1263), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3069), + [anon_sym_namespace] = ACTIONS(3087), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_let] = ACTIONS(3069), + [anon_sym_let] = ACTIONS(3087), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_RPAREN] = ACTIONS(118), @@ -137760,11 +137478,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3069), + [anon_sym_async] = ACTIONS(3087), [anon_sym_function] = ACTIONS(3062), [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3069), + [anon_sym_new] = ACTIONS(3087), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -137806,36 +137524,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3069), - [anon_sym_readonly] = ACTIONS(3069), - [anon_sym_get] = ACTIONS(3069), - [anon_sym_set] = ACTIONS(3069), - [anon_sym_declare] = ACTIONS(3069), - [anon_sym_public] = ACTIONS(3069), - [anon_sym_private] = ACTIONS(3069), - [anon_sym_protected] = ACTIONS(3069), - [anon_sym_override] = ACTIONS(3069), - [anon_sym_module] = ACTIONS(3069), - [anon_sym_any] = ACTIONS(3069), - [anon_sym_number] = ACTIONS(3069), - [anon_sym_boolean] = ACTIONS(3069), - [anon_sym_string] = ACTIONS(3069), - [anon_sym_symbol] = ACTIONS(3069), - [anon_sym_object] = ACTIONS(3069), + [anon_sym_static] = ACTIONS(3087), + [anon_sym_readonly] = ACTIONS(3087), + [anon_sym_get] = ACTIONS(3087), + [anon_sym_set] = ACTIONS(3087), + [anon_sym_declare] = ACTIONS(3087), + [anon_sym_public] = ACTIONS(3087), + [anon_sym_private] = ACTIONS(3087), + [anon_sym_protected] = ACTIONS(3087), + [anon_sym_override] = ACTIONS(3087), + [anon_sym_module] = ACTIONS(3087), + [anon_sym_any] = ACTIONS(3087), + [anon_sym_number] = ACTIONS(3087), + [anon_sym_boolean] = ACTIONS(3087), + [anon_sym_string] = ACTIONS(3087), + [anon_sym_symbol] = ACTIONS(3087), + [anon_sym_object] = ACTIONS(3087), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [924] = { - [sym__call_signature] = STATE(7242), + [sym__call_signature] = STATE(7059), [sym_comment] = STATE(924), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3101), [anon_sym_export] = ACTIONS(3103), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_EQ] = ACTIONS(1291), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3103), [anon_sym_let] = ACTIONS(3103), @@ -137847,8 +137565,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3087), - [anon_sym_EQ_GT] = ACTIONS(1277), + [anon_sym_function] = ACTIONS(3091), + [anon_sym_EQ_GT] = ACTIONS(1265), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3103), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -137914,15 +137632,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [925] = { - [sym__call_signature] = STATE(7242), + [sym__call_signature] = STATE(7059), [sym_comment] = STATE(925), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3101), [anon_sym_export] = ACTIONS(3103), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1291), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3103), [anon_sym_let] = ACTIONS(3103), @@ -137934,8 +137652,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3081), - [anon_sym_EQ_GT] = ACTIONS(1277), + [anon_sym_function] = ACTIONS(3083), + [anon_sym_EQ_GT] = ACTIONS(1265), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3103), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -138001,31 +137719,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [926] = { - [sym__call_signature] = STATE(7437), + [sym__call_signature] = STATE(7059), [sym_comment] = STATE(926), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3093), - [anon_sym_export] = ACTIONS(3095), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3101), + [anon_sym_export] = ACTIONS(3103), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(1281), + [anon_sym_type] = ACTIONS(3103), + [anon_sym_EQ] = ACTIONS(1291), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3095), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_let] = ACTIONS(3103), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1283), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_async] = ACTIONS(3103), + [anon_sym_function] = ACTIONS(3071), + [anon_sym_EQ_GT] = ACTIONS(1265), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3103), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -138067,36 +137784,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_declare] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_protected] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_module] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(3095), - [anon_sym_number] = ACTIONS(3095), - [anon_sym_boolean] = ACTIONS(3095), - [anon_sym_string] = ACTIONS(3095), - [anon_sym_symbol] = ACTIONS(3095), - [anon_sym_object] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_readonly] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3103), + [anon_sym_set] = ACTIONS(3103), + [anon_sym_declare] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_override] = ACTIONS(3103), + [anon_sym_module] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3103), + [anon_sym_number] = ACTIONS(3103), + [anon_sym_boolean] = ACTIONS(3103), + [anon_sym_string] = ACTIONS(3103), + [anon_sym_symbol] = ACTIONS(3103), + [anon_sym_object] = ACTIONS(3103), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [927] = { - [sym__call_signature] = STATE(7242), + [sym__call_signature] = STATE(7059), [sym_comment] = STATE(927), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3101), [anon_sym_export] = ACTIONS(3103), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_EQ] = ACTIONS(1291), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3103), [anon_sym_let] = ACTIONS(3103), @@ -138108,8 +137826,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3105), - [anon_sym_EQ_GT] = ACTIONS(1277), + [anon_sym_function] = ACTIONS(2817), + [anon_sym_EQ_GT] = ACTIONS(1265), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3103), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -138175,19 +137893,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [928] = { - [sym__call_signature] = STATE(7437), + [sym__call_signature] = STATE(7059), [sym_comment] = STATE(928), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3093), - [anon_sym_export] = ACTIONS(3095), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3101), + [anon_sym_export] = ACTIONS(3103), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(1249), + [anon_sym_type] = ACTIONS(3103), + [anon_sym_EQ] = ACTIONS(1291), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3095), + [anon_sym_namespace] = ACTIONS(3103), + [anon_sym_let] = ACTIONS(3103), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_async] = ACTIONS(3103), + [anon_sym_function] = ACTIONS(3105), + [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(3103), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_static] = ACTIONS(3103), + [anon_sym_readonly] = ACTIONS(3103), + [anon_sym_get] = ACTIONS(3103), + [anon_sym_set] = ACTIONS(3103), + [anon_sym_declare] = ACTIONS(3103), + [anon_sym_public] = ACTIONS(3103), + [anon_sym_private] = ACTIONS(3103), + [anon_sym_protected] = ACTIONS(3103), + [anon_sym_override] = ACTIONS(3103), + [anon_sym_module] = ACTIONS(3103), + [anon_sym_any] = ACTIONS(3103), + [anon_sym_number] = ACTIONS(3103), + [anon_sym_boolean] = ACTIONS(3103), + [anon_sym_string] = ACTIONS(3103), + [anon_sym_symbol] = ACTIONS(3103), + [anon_sym_object] = ACTIONS(3103), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [929] = { + [sym__call_signature] = STATE(7254), + [sym_comment] = STATE(929), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3097), + [anon_sym_export] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(3099), + [anon_sym_EQ] = ACTIONS(1250), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(3099), [anon_sym_COMMA] = ACTIONS(215), - [anon_sym_let] = ACTIONS(3095), + [anon_sym_let] = ACTIONS(3099), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), @@ -138195,11 +138000,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3095), + [anon_sym_async] = ACTIONS(3099), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_EQ_GT] = ACTIONS(1259), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3099), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -138241,30 +138046,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_declare] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_protected] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_module] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(3095), - [anon_sym_number] = ACTIONS(3095), - [anon_sym_boolean] = ACTIONS(3095), - [anon_sym_string] = ACTIONS(3095), - [anon_sym_symbol] = ACTIONS(3095), - [anon_sym_object] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3099), + [anon_sym_get] = ACTIONS(3099), + [anon_sym_set] = ACTIONS(3099), + [anon_sym_declare] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_private] = ACTIONS(3099), + [anon_sym_protected] = ACTIONS(3099), + [anon_sym_override] = ACTIONS(3099), + [anon_sym_module] = ACTIONS(3099), + [anon_sym_any] = ACTIONS(3099), + [anon_sym_number] = ACTIONS(3099), + [anon_sym_boolean] = ACTIONS(3099), + [anon_sym_string] = ACTIONS(3099), + [anon_sym_symbol] = ACTIONS(3099), + [anon_sym_object] = ACTIONS(3099), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [929] = { - [sym_catch_clause] = STATE(957), - [sym_finally_clause] = STATE(1105), - [sym_comment] = STATE(929), + [930] = { + [sym_catch_clause] = STATE(954), + [sym_finally_clause] = STATE(1031), + [sym_comment] = STATE(930), [sym_identifier] = ACTIONS(3107), [anon_sym_export] = ACTIONS(3107), [anon_sym_default] = ACTIONS(3107), @@ -138348,31 +138153,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3107), [sym_html_comment] = ACTIONS(5), }, - [930] = { - [sym__call_signature] = STATE(7242), - [sym_comment] = STATE(930), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3101), - [anon_sym_export] = ACTIONS(3103), + [931] = { + [sym__call_signature] = STATE(7254), + [sym_comment] = STATE(931), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3097), + [anon_sym_export] = ACTIONS(3099), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_type] = ACTIONS(3099), + [anon_sym_EQ] = ACTIONS(1267), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_let] = ACTIONS(3099), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1269), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3089), - [anon_sym_EQ_GT] = ACTIONS(1277), + [anon_sym_async] = ACTIONS(3099), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1259), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3099), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -138414,52 +138220,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3103), - [anon_sym_set] = ACTIONS(3103), - [anon_sym_declare] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_protected] = ACTIONS(3103), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_module] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3103), - [anon_sym_number] = ACTIONS(3103), - [anon_sym_boolean] = ACTIONS(3103), - [anon_sym_string] = ACTIONS(3103), - [anon_sym_symbol] = ACTIONS(3103), - [anon_sym_object] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3099), + [anon_sym_get] = ACTIONS(3099), + [anon_sym_set] = ACTIONS(3099), + [anon_sym_declare] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_private] = ACTIONS(3099), + [anon_sym_protected] = ACTIONS(3099), + [anon_sym_override] = ACTIONS(3099), + [anon_sym_module] = ACTIONS(3099), + [anon_sym_any] = ACTIONS(3099), + [anon_sym_number] = ACTIONS(3099), + [anon_sym_boolean] = ACTIONS(3099), + [anon_sym_string] = ACTIONS(3099), + [anon_sym_symbol] = ACTIONS(3099), + [anon_sym_object] = ACTIONS(3099), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [931] = { - [sym__call_signature] = STATE(7242), - [sym_comment] = STATE(931), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3101), - [anon_sym_export] = ACTIONS(3103), + [932] = { + [sym__call_signature] = STATE(7254), + [sym_comment] = STATE(932), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3097), + [anon_sym_export] = ACTIONS(3099), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_type] = ACTIONS(3099), + [anon_sym_EQ] = ACTIONS(1267), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3103), - [anon_sym_let] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_let] = ACTIONS(3099), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1255), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3091), - [anon_sym_EQ_GT] = ACTIONS(1277), + [anon_sym_async] = ACTIONS(3099), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1259), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3103), + [anon_sym_new] = ACTIONS(3099), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -138501,37 +138307,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3103), - [anon_sym_readonly] = ACTIONS(3103), - [anon_sym_get] = ACTIONS(3103), - [anon_sym_set] = ACTIONS(3103), - [anon_sym_declare] = ACTIONS(3103), - [anon_sym_public] = ACTIONS(3103), - [anon_sym_private] = ACTIONS(3103), - [anon_sym_protected] = ACTIONS(3103), - [anon_sym_override] = ACTIONS(3103), - [anon_sym_module] = ACTIONS(3103), - [anon_sym_any] = ACTIONS(3103), - [anon_sym_number] = ACTIONS(3103), - [anon_sym_boolean] = ACTIONS(3103), - [anon_sym_string] = ACTIONS(3103), - [anon_sym_symbol] = ACTIONS(3103), - [anon_sym_object] = ACTIONS(3103), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3099), + [anon_sym_get] = ACTIONS(3099), + [anon_sym_set] = ACTIONS(3099), + [anon_sym_declare] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_private] = ACTIONS(3099), + [anon_sym_protected] = ACTIONS(3099), + [anon_sym_override] = ACTIONS(3099), + [anon_sym_module] = ACTIONS(3099), + [anon_sym_any] = ACTIONS(3099), + [anon_sym_number] = ACTIONS(3099), + [anon_sym_boolean] = ACTIONS(3099), + [anon_sym_string] = ACTIONS(3099), + [anon_sym_symbol] = ACTIONS(3099), + [anon_sym_object] = ACTIONS(3099), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [932] = { - [sym__call_signature] = STATE(7242), - [sym_comment] = STATE(932), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [933] = { + [sym__call_signature] = STATE(7059), + [sym_comment] = STATE(933), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3101), [anon_sym_export] = ACTIONS(3103), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3103), [anon_sym_let] = ACTIONS(3103), @@ -138543,8 +138348,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(2817), - [anon_sym_EQ_GT] = ACTIONS(1277), + [anon_sym_function] = ACTIONS(3077), + [anon_sym_EQ_GT] = ACTIONS(1265), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3103), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -138609,16 +138414,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [933] = { - [sym__call_signature] = STATE(7242), - [sym_comment] = STATE(933), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [934] = { + [sym__call_signature] = STATE(7059), + [sym_comment] = STATE(934), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3101), [anon_sym_export] = ACTIONS(3103), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_EQ] = ACTIONS(1291), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3103), [anon_sym_let] = ACTIONS(3103), @@ -138630,8 +138435,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3075), - [anon_sym_EQ_GT] = ACTIONS(1277), + [anon_sym_function] = ACTIONS(3077), + [anon_sym_EQ_GT] = ACTIONS(1265), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3103), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -138696,16 +138501,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [934] = { - [sym__call_signature] = STATE(7242), - [sym_comment] = STATE(934), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [935] = { + [sym__call_signature] = STATE(7059), + [sym_comment] = STATE(935), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3101), [anon_sym_export] = ACTIONS(3103), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3103), - [anon_sym_EQ] = ACTIONS(1271), + [anon_sym_EQ] = ACTIONS(1291), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3103), [anon_sym_let] = ACTIONS(3103), @@ -138717,8 +138522,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3103), - [anon_sym_function] = ACTIONS(3081), - [anon_sym_EQ_GT] = ACTIONS(1277), + [anon_sym_function] = ACTIONS(3089), + [anon_sym_EQ_GT] = ACTIONS(1265), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3103), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -138783,116 +138588,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [935] = { - [sym__call_signature] = STATE(7437), - [sym_comment] = STATE(935), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3093), - [anon_sym_export] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1258), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_declare] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_protected] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_module] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(3095), - [anon_sym_number] = ACTIONS(3095), - [anon_sym_boolean] = ACTIONS(3095), - [anon_sym_string] = ACTIONS(3095), - [anon_sym_symbol] = ACTIONS(3095), - [anon_sym_object] = ACTIONS(3095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, [936] = { - [sym__call_signature] = STATE(7185), + [sym__call_signature] = STATE(7112), [sym_comment] = STATE(936), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3113), [anon_sym_export] = ACTIONS(3115), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3115), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1319), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3115), [anon_sym_let] = ACTIONS(3115), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_async] = ACTIONS(3115), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1325), + [anon_sym_EQ_GT] = ACTIONS(1299), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_new] = ACTIONS(3115), [anon_sym_PLUS_EQ] = ACTIONS(160), @@ -138957,30 +138675,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_html_comment] = ACTIONS(5), }, [937] = { - [sym__call_signature] = STATE(7437), + [sym__call_signature] = STATE(7002), [sym_comment] = STATE(937), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3093), - [anon_sym_export] = ACTIONS(3095), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3117), + [anon_sym_export] = ACTIONS(3119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_type] = ACTIONS(3119), + [anon_sym_EQ] = ACTIONS(1305), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3095), + [anon_sym_namespace] = ACTIONS(3119), + [anon_sym_let] = ACTIONS(3119), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3095), + [anon_sym_async] = ACTIONS(3119), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_EQ_GT] = ACTIONS(1311), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3095), + [anon_sym_new] = ACTIONS(3119), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -139022,137 +138740,137 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_declare] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_protected] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_module] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(3095), - [anon_sym_number] = ACTIONS(3095), - [anon_sym_boolean] = ACTIONS(3095), - [anon_sym_string] = ACTIONS(3095), - [anon_sym_symbol] = ACTIONS(3095), - [anon_sym_object] = ACTIONS(3095), + [anon_sym_static] = ACTIONS(3119), + [anon_sym_readonly] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3119), + [anon_sym_set] = ACTIONS(3119), + [anon_sym_declare] = ACTIONS(3119), + [anon_sym_public] = ACTIONS(3119), + [anon_sym_private] = ACTIONS(3119), + [anon_sym_protected] = ACTIONS(3119), + [anon_sym_override] = ACTIONS(3119), + [anon_sym_module] = ACTIONS(3119), + [anon_sym_any] = ACTIONS(3119), + [anon_sym_number] = ACTIONS(3119), + [anon_sym_boolean] = ACTIONS(3119), + [anon_sym_string] = ACTIONS(3119), + [anon_sym_symbol] = ACTIONS(3119), + [anon_sym_object] = ACTIONS(3119), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [938] = { [sym_comment] = STATE(938), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_else] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_case] = ACTIONS(2140), - [anon_sym_catch] = ACTIONS(2140), - [anon_sym_finally] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(3117), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_default] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_else] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_case] = ACTIONS(2142), + [anon_sym_catch] = ACTIONS(2142), + [anon_sym_finally] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(3121), [sym_html_comment] = ACTIONS(5), }, [939] = { - [sym__call_signature] = STATE(7185), + [sym__call_signature] = STATE(7075), [sym_comment] = STATE(939), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3113), - [anon_sym_export] = ACTIONS(3115), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3055), + [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3115), - [anon_sym_EQ] = ACTIONS(1319), + [anon_sym_type] = ACTIONS(3057), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3115), - [anon_sym_let] = ACTIONS(3115), + [anon_sym_namespace] = ACTIONS(3057), + [anon_sym_let] = ACTIONS(3057), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1117), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3115), + [anon_sym_async] = ACTIONS(3057), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1325), + [anon_sym_EQ_GT] = ACTIONS(217), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3115), + [anon_sym_new] = ACTIONS(3057), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -139194,51 +138912,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3115), - [anon_sym_readonly] = ACTIONS(3115), - [anon_sym_get] = ACTIONS(3115), - [anon_sym_set] = ACTIONS(3115), - [anon_sym_declare] = ACTIONS(3115), - [anon_sym_public] = ACTIONS(3115), - [anon_sym_private] = ACTIONS(3115), - [anon_sym_protected] = ACTIONS(3115), - [anon_sym_override] = ACTIONS(3115), - [anon_sym_module] = ACTIONS(3115), - [anon_sym_any] = ACTIONS(3115), - [anon_sym_number] = ACTIONS(3115), - [anon_sym_boolean] = ACTIONS(3115), - [anon_sym_string] = ACTIONS(3115), - [anon_sym_symbol] = ACTIONS(3115), - [anon_sym_object] = ACTIONS(3115), + [anon_sym_static] = ACTIONS(3057), + [anon_sym_readonly] = ACTIONS(3057), + [anon_sym_get] = ACTIONS(3057), + [anon_sym_set] = ACTIONS(3057), + [anon_sym_declare] = ACTIONS(3057), + [anon_sym_public] = ACTIONS(3057), + [anon_sym_private] = ACTIONS(3057), + [anon_sym_protected] = ACTIONS(3057), + [anon_sym_override] = ACTIONS(3057), + [anon_sym_module] = ACTIONS(3057), + [anon_sym_any] = ACTIONS(3057), + [anon_sym_number] = ACTIONS(3057), + [anon_sym_boolean] = ACTIONS(3057), + [anon_sym_string] = ACTIONS(3057), + [anon_sym_symbol] = ACTIONS(3057), + [anon_sym_object] = ACTIONS(3057), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [940] = { - [sym__call_signature] = STATE(7489), + [sym__call_signature] = STATE(7254), [sym_comment] = STATE(940), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3119), - [anon_sym_export] = ACTIONS(3121), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3097), + [anon_sym_export] = ACTIONS(3099), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3121), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_type] = ACTIONS(3099), + [anon_sym_EQ] = ACTIONS(1267), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3121), - [anon_sym_let] = ACTIONS(3121), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_let] = ACTIONS(3099), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3121), + [anon_sym_async] = ACTIONS(3099), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1309), + [anon_sym_EQ_GT] = ACTIONS(1259), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3121), + [anon_sym_new] = ACTIONS(3099), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -139280,31 +138998,117 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3121), - [anon_sym_readonly] = ACTIONS(3121), - [anon_sym_get] = ACTIONS(3121), - [anon_sym_set] = ACTIONS(3121), - [anon_sym_declare] = ACTIONS(3121), - [anon_sym_public] = ACTIONS(3121), - [anon_sym_private] = ACTIONS(3121), - [anon_sym_protected] = ACTIONS(3121), - [anon_sym_override] = ACTIONS(3121), - [anon_sym_module] = ACTIONS(3121), - [anon_sym_any] = ACTIONS(3121), - [anon_sym_number] = ACTIONS(3121), - [anon_sym_boolean] = ACTIONS(3121), - [anon_sym_string] = ACTIONS(3121), - [anon_sym_symbol] = ACTIONS(3121), - [anon_sym_object] = ACTIONS(3121), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3099), + [anon_sym_get] = ACTIONS(3099), + [anon_sym_set] = ACTIONS(3099), + [anon_sym_declare] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_private] = ACTIONS(3099), + [anon_sym_protected] = ACTIONS(3099), + [anon_sym_override] = ACTIONS(3099), + [anon_sym_module] = ACTIONS(3099), + [anon_sym_any] = ACTIONS(3099), + [anon_sym_number] = ACTIONS(3099), + [anon_sym_boolean] = ACTIONS(3099), + [anon_sym_string] = ACTIONS(3099), + [anon_sym_symbol] = ACTIONS(3099), + [anon_sym_object] = ACTIONS(3099), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, [941] = { - [sym__call_signature] = STATE(7228), [sym_comment] = STATE(941), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_catch] = ACTIONS(2160), + [anon_sym_finally] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(3123), + [sym_html_comment] = ACTIONS(5), + }, + [942] = { + [sym__call_signature] = STATE(7075), + [sym_comment] = STATE(942), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), @@ -139315,8 +139119,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3057), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(1231), - [anon_sym_of] = ACTIONS(1234), + [anon_sym_in] = ACTIONS(1209), + [anon_sym_of] = ACTIONS(1212), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), @@ -139386,19 +139190,19 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [942] = { - [sym__call_signature] = STATE(7489), - [sym_comment] = STATE(942), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3119), - [anon_sym_export] = ACTIONS(3121), + [943] = { + [sym__call_signature] = STATE(7112), + [sym_comment] = STATE(943), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3113), + [anon_sym_export] = ACTIONS(3115), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3121), - [anon_sym_EQ] = ACTIONS(1303), + [anon_sym_type] = ACTIONS(3115), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3121), - [anon_sym_let] = ACTIONS(3121), + [anon_sym_namespace] = ACTIONS(3115), + [anon_sym_let] = ACTIONS(3115), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), @@ -139406,11 +139210,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3121), + [anon_sym_async] = ACTIONS(3115), [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1309), + [anon_sym_EQ_GT] = ACTIONS(1299), [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3121), + [anon_sym_new] = ACTIONS(3115), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), [anon_sym_STAR_EQ] = ACTIONS(160), @@ -139452,33 +139256,205 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3121), - [anon_sym_readonly] = ACTIONS(3121), - [anon_sym_get] = ACTIONS(3121), - [anon_sym_set] = ACTIONS(3121), - [anon_sym_declare] = ACTIONS(3121), - [anon_sym_public] = ACTIONS(3121), - [anon_sym_private] = ACTIONS(3121), - [anon_sym_protected] = ACTIONS(3121), - [anon_sym_override] = ACTIONS(3121), - [anon_sym_module] = ACTIONS(3121), - [anon_sym_any] = ACTIONS(3121), - [anon_sym_number] = ACTIONS(3121), - [anon_sym_boolean] = ACTIONS(3121), - [anon_sym_string] = ACTIONS(3121), - [anon_sym_symbol] = ACTIONS(3121), - [anon_sym_object] = ACTIONS(3121), + [anon_sym_static] = ACTIONS(3115), + [anon_sym_readonly] = ACTIONS(3115), + [anon_sym_get] = ACTIONS(3115), + [anon_sym_set] = ACTIONS(3115), + [anon_sym_declare] = ACTIONS(3115), + [anon_sym_public] = ACTIONS(3115), + [anon_sym_private] = ACTIONS(3115), + [anon_sym_protected] = ACTIONS(3115), + [anon_sym_override] = ACTIONS(3115), + [anon_sym_module] = ACTIONS(3115), + [anon_sym_any] = ACTIONS(3115), + [anon_sym_number] = ACTIONS(3115), + [anon_sym_boolean] = ACTIONS(3115), + [anon_sym_string] = ACTIONS(3115), + [anon_sym_symbol] = ACTIONS(3115), + [anon_sym_object] = ACTIONS(3115), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [943] = { - [sym_catch_clause] = STATE(988), - [sym_finally_clause] = STATE(1499), - [sym_comment] = STATE(943), + [944] = { + [sym__call_signature] = STATE(7254), + [sym_comment] = STATE(944), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3097), + [anon_sym_export] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(3099), + [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(3099), + [anon_sym_let] = ACTIONS(3099), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_async] = ACTIONS(3099), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1259), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(3099), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_static] = ACTIONS(3099), + [anon_sym_readonly] = ACTIONS(3099), + [anon_sym_get] = ACTIONS(3099), + [anon_sym_set] = ACTIONS(3099), + [anon_sym_declare] = ACTIONS(3099), + [anon_sym_public] = ACTIONS(3099), + [anon_sym_private] = ACTIONS(3099), + [anon_sym_protected] = ACTIONS(3099), + [anon_sym_override] = ACTIONS(3099), + [anon_sym_module] = ACTIONS(3099), + [anon_sym_any] = ACTIONS(3099), + [anon_sym_number] = ACTIONS(3099), + [anon_sym_boolean] = ACTIONS(3099), + [anon_sym_string] = ACTIONS(3099), + [anon_sym_symbol] = ACTIONS(3099), + [anon_sym_object] = ACTIONS(3099), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [945] = { + [sym__call_signature] = STATE(7002), + [sym_comment] = STATE(945), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), + [sym_identifier] = ACTIONS(3117), + [anon_sym_export] = ACTIONS(3119), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_type] = ACTIONS(3119), + [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_as] = ACTIONS(118), + [anon_sym_namespace] = ACTIONS(3119), + [anon_sym_let] = ACTIONS(3119), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(3059), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_async] = ACTIONS(3119), + [anon_sym_function] = ACTIONS(3062), + [anon_sym_EQ_GT] = ACTIONS(1311), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_new] = ACTIONS(3119), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(3064), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_static] = ACTIONS(3119), + [anon_sym_readonly] = ACTIONS(3119), + [anon_sym_get] = ACTIONS(3119), + [anon_sym_set] = ACTIONS(3119), + [anon_sym_declare] = ACTIONS(3119), + [anon_sym_public] = ACTIONS(3119), + [anon_sym_private] = ACTIONS(3119), + [anon_sym_protected] = ACTIONS(3119), + [anon_sym_override] = ACTIONS(3119), + [anon_sym_module] = ACTIONS(3119), + [anon_sym_any] = ACTIONS(3119), + [anon_sym_number] = ACTIONS(3119), + [anon_sym_boolean] = ACTIONS(3119), + [anon_sym_string] = ACTIONS(3119), + [anon_sym_symbol] = ACTIONS(3119), + [anon_sym_object] = ACTIONS(3119), + [anon_sym_satisfies] = ACTIONS(118), + [sym__ternary_qmark] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [946] = { + [sym_catch_clause] = STATE(991), + [sym_finally_clause] = STATE(1427), + [sym_comment] = STATE(946), + [ts_builtin_sym_end] = ACTIONS(3125), [sym_identifier] = ACTIONS(3107), [anon_sym_export] = ACTIONS(3107), - [anon_sym_default] = ACTIONS(3107), [anon_sym_type] = ACTIONS(3107), [anon_sym_namespace] = ACTIONS(3107), [anon_sym_LBRACE] = ACTIONS(3107), @@ -139490,6 +139466,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3107), [anon_sym_const] = ACTIONS(3107), [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_else] = ACTIONS(3107), [anon_sym_if] = ACTIONS(3107), [anon_sym_switch] = ACTIONS(3107), [anon_sym_for] = ACTIONS(3107), @@ -139504,9 +139481,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3107), [anon_sym_throw] = ACTIONS(3107), [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_case] = ACTIONS(3107), - [anon_sym_catch] = ACTIONS(3123), - [anon_sym_finally] = ACTIONS(3125), + [anon_sym_catch] = ACTIONS(3127), + [anon_sym_finally] = ACTIONS(3129), [anon_sym_yield] = ACTIONS(3107), [anon_sym_LBRACK] = ACTIONS(3107), [anon_sym_LTtemplate_GT] = ACTIONS(3107), @@ -139558,13 +139534,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3107), [sym_html_comment] = ACTIONS(5), }, - [944] = { - [sym_catch_clause] = STATE(980), - [sym_finally_clause] = STATE(1445), - [sym_comment] = STATE(944), - [ts_builtin_sym_end] = ACTIONS(3127), + [947] = { + [sym_catch_clause] = STATE(989), + [sym_finally_clause] = STATE(1418), + [sym_comment] = STATE(947), [sym_identifier] = ACTIONS(3107), [anon_sym_export] = ACTIONS(3107), + [anon_sym_default] = ACTIONS(3107), [anon_sym_type] = ACTIONS(3107), [anon_sym_namespace] = ACTIONS(3107), [anon_sym_LBRACE] = ACTIONS(3107), @@ -139576,7 +139552,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3107), [anon_sym_const] = ACTIONS(3107), [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_else] = ACTIONS(3107), [anon_sym_if] = ACTIONS(3107), [anon_sym_switch] = ACTIONS(3107), [anon_sym_for] = ACTIONS(3107), @@ -139591,8 +139566,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3107), [anon_sym_throw] = ACTIONS(3107), [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_catch] = ACTIONS(3129), - [anon_sym_finally] = ACTIONS(3131), + [anon_sym_case] = ACTIONS(3107), + [anon_sym_catch] = ACTIONS(3131), + [anon_sym_finally] = ACTIONS(3133), [anon_sym_yield] = ACTIONS(3107), [anon_sym_LBRACK] = ACTIONS(3107), [anon_sym_LTtemplate_GT] = ACTIONS(3107), @@ -139644,195 +139620,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3107), [sym_html_comment] = ACTIONS(5), }, - [945] = { - [sym__call_signature] = STATE(7437), - [sym_comment] = STATE(945), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3093), - [anon_sym_export] = ACTIONS(3095), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3095), - [anon_sym_EQ] = ACTIONS(1281), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3095), - [anon_sym_let] = ACTIONS(3095), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3095), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(1258), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3095), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3095), - [anon_sym_readonly] = ACTIONS(3095), - [anon_sym_get] = ACTIONS(3095), - [anon_sym_set] = ACTIONS(3095), - [anon_sym_declare] = ACTIONS(3095), - [anon_sym_public] = ACTIONS(3095), - [anon_sym_private] = ACTIONS(3095), - [anon_sym_protected] = ACTIONS(3095), - [anon_sym_override] = ACTIONS(3095), - [anon_sym_module] = ACTIONS(3095), - [anon_sym_any] = ACTIONS(3095), - [anon_sym_number] = ACTIONS(3095), - [anon_sym_boolean] = ACTIONS(3095), - [anon_sym_string] = ACTIONS(3095), - [anon_sym_symbol] = ACTIONS(3095), - [anon_sym_object] = ACTIONS(3095), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [946] = { - [sym_comment] = STATE(946), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_catch] = ACTIONS(2190), - [anon_sym_finally] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(3133), - [sym_html_comment] = ACTIONS(5), - }, - [947] = { - [sym__call_signature] = STATE(7228), - [sym_comment] = STATE(947), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [948] = { + [sym__call_signature] = STATE(7075), + [sym_comment] = STATE(948), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1341), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(3059), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), @@ -139902,441 +139705,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [948] = { - [sym_statement_block] = STATE(1049), - [sym_comment] = STATE(948), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(3137), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym_html_comment] = ACTIONS(5), - }, [949] = { - [sym_statement_block] = STATE(1049), + [sym_catch_clause] = STATE(1159), + [sym_finally_clause] = STATE(1593), [sym_comment] = STATE(949), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(3139), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), + [ts_builtin_sym_end] = ACTIONS(3125), + [sym_identifier] = ACTIONS(3107), + [anon_sym_export] = ACTIONS(3107), + [anon_sym_type] = ACTIONS(3107), + [anon_sym_namespace] = ACTIONS(3107), + [anon_sym_LBRACE] = ACTIONS(3107), + [anon_sym_RBRACE] = ACTIONS(3107), + [anon_sym_typeof] = ACTIONS(3107), + [anon_sym_import] = ACTIONS(3107), + [anon_sym_with] = ACTIONS(3107), + [anon_sym_var] = ACTIONS(3107), + [anon_sym_let] = ACTIONS(3107), + [anon_sym_const] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3107), + [anon_sym_if] = ACTIONS(3107), + [anon_sym_switch] = ACTIONS(3107), + [anon_sym_for] = ACTIONS(3107), + [anon_sym_LPAREN] = ACTIONS(3107), + [anon_sym_await] = ACTIONS(3107), + [anon_sym_while] = ACTIONS(3107), + [anon_sym_do] = ACTIONS(3107), + [anon_sym_try] = ACTIONS(3107), + [anon_sym_break] = ACTIONS(3107), + [anon_sym_continue] = ACTIONS(3107), + [anon_sym_debugger] = ACTIONS(3107), + [anon_sym_return] = ACTIONS(3107), + [anon_sym_throw] = ACTIONS(3107), + [anon_sym_SEMI] = ACTIONS(3107), + [anon_sym_catch] = ACTIONS(3135), + [anon_sym_finally] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3107), + [anon_sym_LBRACK] = ACTIONS(3107), + [anon_sym_LTtemplate_GT] = ACTIONS(3107), + [anon_sym_DQUOTE] = ACTIONS(3107), + [anon_sym_SQUOTE] = ACTIONS(3107), + [anon_sym_class] = ACTIONS(3107), + [anon_sym_async] = ACTIONS(3107), + [anon_sym_function] = ACTIONS(3107), + [anon_sym_new] = ACTIONS(3107), + [anon_sym_using] = ACTIONS(3107), + [anon_sym_PLUS] = ACTIONS(3107), + [anon_sym_DASH] = ACTIONS(3107), + [anon_sym_SLASH] = ACTIONS(3107), + [anon_sym_LT] = ACTIONS(3107), + [anon_sym_TILDE] = ACTIONS(3107), + [anon_sym_void] = ACTIONS(3107), + [anon_sym_delete] = ACTIONS(3107), + [anon_sym_PLUS_PLUS] = ACTIONS(3107), + [anon_sym_DASH_DASH] = ACTIONS(3107), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3107), + [sym_number] = ACTIONS(3107), + [sym_private_property_identifier] = ACTIONS(3107), + [sym_this] = ACTIONS(3107), + [sym_super] = ACTIONS(3107), + [sym_true] = ACTIONS(3107), + [sym_false] = ACTIONS(3107), + [sym_null] = ACTIONS(3107), + [sym_undefined] = ACTIONS(3107), + [anon_sym_AT] = ACTIONS(3107), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_readonly] = ACTIONS(3107), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_declare] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_override] = ACTIONS(3107), + [anon_sym_module] = ACTIONS(3107), + [anon_sym_any] = ACTIONS(3107), + [anon_sym_number] = ACTIONS(3107), + [anon_sym_boolean] = ACTIONS(3107), + [anon_sym_string] = ACTIONS(3107), + [anon_sym_symbol] = ACTIONS(3107), + [anon_sym_object] = ACTIONS(3107), + [anon_sym_abstract] = ACTIONS(3107), + [anon_sym_interface] = ACTIONS(3107), + [anon_sym_enum] = ACTIONS(3107), [sym_html_comment] = ACTIONS(5), }, [950] = { [sym_comment] = STATE(950), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_catch] = ACTIONS(2190), - [anon_sym_finally] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_default] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_else] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_case] = ACTIONS(2142), + [anon_sym_finally] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(3139), [sym_html_comment] = ACTIONS(5), }, [951] = { + [sym__call_signature] = STATE(7075), [sym_comment] = STATE(951), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_catch] = ACTIONS(2190), - [anon_sym_finally] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(3141), - [sym_html_comment] = ACTIONS(5), - }, - [952] = { - [sym_comment] = STATE(952), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_default] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_namespace] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2246), - [anon_sym_import] = ACTIONS(2246), - [anon_sym_with] = ACTIONS(2246), - [anon_sym_var] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_else] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_debugger] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_throw] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_case] = ACTIONS(2246), - [anon_sym_catch] = ACTIONS(2246), - [anon_sym_finally] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LTtemplate_GT] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_class] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2246), - [anon_sym_delete] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_private_property_identifier] = ACTIONS(2246), - [sym_this] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_undefined] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_readonly] = ACTIONS(2246), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_declare] = ACTIONS(2246), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_override] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_any] = ACTIONS(2246), - [anon_sym_number] = ACTIONS(2246), - [anon_sym_boolean] = ACTIONS(2246), - [anon_sym_string] = ACTIONS(2246), - [anon_sym_symbol] = ACTIONS(2246), - [anon_sym_object] = ACTIONS(2246), - [anon_sym_abstract] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), - [sym_html_comment] = ACTIONS(5), - }, - [953] = { - [sym__call_signature] = STATE(7228), - [sym_comment] = STATE(953), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1385), + [anon_sym_EQ] = ACTIONS(1335), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), @@ -140412,16 +139960,356 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, + [952] = { + [sym_comment] = STATE(952), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_catch] = ACTIONS(2160), + [anon_sym_finally] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym_html_comment] = ACTIONS(5), + }, + [953] = { + [sym_statement_block] = STATE(1140), + [sym_comment] = STATE(953), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_else] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_case] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(3143), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [sym_html_comment] = ACTIONS(5), + }, [954] = { - [sym__call_signature] = STATE(7228), + [sym_finally_clause] = STATE(1083), [sym_comment] = STATE(954), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [sym_identifier] = ACTIONS(3145), + [anon_sym_export] = ACTIONS(3145), + [anon_sym_default] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_namespace] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_RBRACE] = ACTIONS(3145), + [anon_sym_typeof] = ACTIONS(3145), + [anon_sym_import] = ACTIONS(3145), + [anon_sym_with] = ACTIONS(3145), + [anon_sym_var] = ACTIONS(3145), + [anon_sym_let] = ACTIONS(3145), + [anon_sym_const] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_else] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_switch] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_await] = ACTIONS(3145), + [anon_sym_while] = ACTIONS(3145), + [anon_sym_do] = ACTIONS(3145), + [anon_sym_try] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_debugger] = ACTIONS(3145), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_throw] = ACTIONS(3145), + [anon_sym_SEMI] = ACTIONS(3145), + [anon_sym_case] = ACTIONS(3145), + [anon_sym_finally] = ACTIONS(3111), + [anon_sym_yield] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3145), + [anon_sym_LTtemplate_GT] = ACTIONS(3145), + [anon_sym_DQUOTE] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_class] = ACTIONS(3145), + [anon_sym_async] = ACTIONS(3145), + [anon_sym_function] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3145), + [anon_sym_using] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_SLASH] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_void] = ACTIONS(3145), + [anon_sym_delete] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3145), + [anon_sym_DASH_DASH] = ACTIONS(3145), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3145), + [sym_number] = ACTIONS(3145), + [sym_private_property_identifier] = ACTIONS(3145), + [sym_this] = ACTIONS(3145), + [sym_super] = ACTIONS(3145), + [sym_true] = ACTIONS(3145), + [sym_false] = ACTIONS(3145), + [sym_null] = ACTIONS(3145), + [sym_undefined] = ACTIONS(3145), + [anon_sym_AT] = ACTIONS(3145), + [anon_sym_static] = ACTIONS(3145), + [anon_sym_readonly] = ACTIONS(3145), + [anon_sym_get] = ACTIONS(3145), + [anon_sym_set] = ACTIONS(3145), + [anon_sym_declare] = ACTIONS(3145), + [anon_sym_public] = ACTIONS(3145), + [anon_sym_private] = ACTIONS(3145), + [anon_sym_protected] = ACTIONS(3145), + [anon_sym_override] = ACTIONS(3145), + [anon_sym_module] = ACTIONS(3145), + [anon_sym_any] = ACTIONS(3145), + [anon_sym_number] = ACTIONS(3145), + [anon_sym_boolean] = ACTIONS(3145), + [anon_sym_string] = ACTIONS(3145), + [anon_sym_symbol] = ACTIONS(3145), + [anon_sym_object] = ACTIONS(3145), + [anon_sym_abstract] = ACTIONS(3145), + [anon_sym_interface] = ACTIONS(3145), + [anon_sym_enum] = ACTIONS(3145), + [sym_html_comment] = ACTIONS(5), + }, + [955] = { + [sym_comment] = STATE(955), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_default] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_case] = ACTIONS(2142), + [anon_sym_catch] = ACTIONS(2142), + [anon_sym_finally] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(3147), + [sym_html_comment] = ACTIONS(5), + }, + [956] = { + [sym__call_signature] = STATE(7075), + [sym_comment] = STATE(956), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1393), + [anon_sym_EQ] = ACTIONS(1345), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), @@ -140497,16 +140385,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [955] = { - [sym__call_signature] = STATE(7228), - [sym_comment] = STATE(955), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [957] = { + [sym__call_signature] = STATE(7075), + [sym_comment] = STATE(957), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1379), + [anon_sym_EQ] = ACTIONS(1347), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), @@ -140582,16 +140470,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [956] = { - [sym__call_signature] = STATE(7228), - [sym_comment] = STATE(956), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [958] = { + [sym__call_signature] = STATE(7075), + [sym_comment] = STATE(958), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1387), + [anon_sym_EQ] = ACTIONS(1339), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), @@ -140667,101 +140555,271 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [957] = { - [sym_finally_clause] = STATE(1169), - [sym_comment] = STATE(957), - [sym_identifier] = ACTIONS(3143), - [anon_sym_export] = ACTIONS(3143), - [anon_sym_default] = ACTIONS(3143), - [anon_sym_type] = ACTIONS(3143), - [anon_sym_namespace] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3143), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_typeof] = ACTIONS(3143), - [anon_sym_import] = ACTIONS(3143), - [anon_sym_with] = ACTIONS(3143), - [anon_sym_var] = ACTIONS(3143), - [anon_sym_let] = ACTIONS(3143), - [anon_sym_const] = ACTIONS(3143), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3143), - [anon_sym_if] = ACTIONS(3143), - [anon_sym_switch] = ACTIONS(3143), - [anon_sym_for] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_await] = ACTIONS(3143), - [anon_sym_while] = ACTIONS(3143), - [anon_sym_do] = ACTIONS(3143), - [anon_sym_try] = ACTIONS(3143), - [anon_sym_break] = ACTIONS(3143), - [anon_sym_continue] = ACTIONS(3143), - [anon_sym_debugger] = ACTIONS(3143), - [anon_sym_return] = ACTIONS(3143), - [anon_sym_throw] = ACTIONS(3143), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_case] = ACTIONS(3143), - [anon_sym_finally] = ACTIONS(3111), - [anon_sym_yield] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_LTtemplate_GT] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3143), - [anon_sym_SQUOTE] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3143), - [anon_sym_async] = ACTIONS(3143), - [anon_sym_function] = ACTIONS(3143), - [anon_sym_new] = ACTIONS(3143), - [anon_sym_using] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3143), - [anon_sym_TILDE] = ACTIONS(3143), - [anon_sym_void] = ACTIONS(3143), - [anon_sym_delete] = ACTIONS(3143), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3143), - [sym_private_property_identifier] = ACTIONS(3143), - [sym_this] = ACTIONS(3143), - [sym_super] = ACTIONS(3143), - [sym_true] = ACTIONS(3143), - [sym_false] = ACTIONS(3143), - [sym_null] = ACTIONS(3143), - [sym_undefined] = ACTIONS(3143), - [anon_sym_AT] = ACTIONS(3143), - [anon_sym_static] = ACTIONS(3143), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3143), - [anon_sym_set] = ACTIONS(3143), - [anon_sym_declare] = ACTIONS(3143), - [anon_sym_public] = ACTIONS(3143), - [anon_sym_private] = ACTIONS(3143), - [anon_sym_protected] = ACTIONS(3143), - [anon_sym_override] = ACTIONS(3143), - [anon_sym_module] = ACTIONS(3143), - [anon_sym_any] = ACTIONS(3143), - [anon_sym_number] = ACTIONS(3143), - [anon_sym_boolean] = ACTIONS(3143), - [anon_sym_string] = ACTIONS(3143), - [anon_sym_symbol] = ACTIONS(3143), - [anon_sym_object] = ACTIONS(3143), - [anon_sym_abstract] = ACTIONS(3143), - [anon_sym_interface] = ACTIONS(3143), - [anon_sym_enum] = ACTIONS(3143), + [959] = { + [sym_comment] = STATE(959), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_catch] = ACTIONS(2160), + [anon_sym_finally] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(3149), [sym_html_comment] = ACTIONS(5), }, - [958] = { - [sym__call_signature] = STATE(7228), - [sym_comment] = STATE(958), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [960] = { + [sym_comment] = STATE(960), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_else] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_catch] = ACTIONS(2142), + [anon_sym_finally] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(3151), + [sym_html_comment] = ACTIONS(5), + }, + [961] = { + [sym_comment] = STATE(961), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_catch] = ACTIONS(2288), + [anon_sym_finally] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym_html_comment] = ACTIONS(5), + }, + [962] = { + [sym__call_signature] = STATE(7075), + [sym_comment] = STATE(962), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1383), + [anon_sym_EQ] = ACTIONS(1343), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), @@ -140837,101 +140895,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [959] = { - [sym_comment] = STATE(959), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_else] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_catch] = ACTIONS(2140), - [anon_sym_finally] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(3145), - [sym_html_comment] = ACTIONS(5), - }, - [960] = { - [sym__call_signature] = STATE(7228), - [sym_comment] = STATE(960), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [963] = { + [sym__call_signature] = STATE(7075), + [sym_comment] = STATE(963), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1391), + [anon_sym_EQ] = ACTIONS(1337), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), @@ -141007,186 +140980,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [961] = { - [sym_catch_clause] = STATE(1104), - [sym_finally_clause] = STATE(1773), - [sym_comment] = STATE(961), - [ts_builtin_sym_end] = ACTIONS(3127), - [sym_identifier] = ACTIONS(3107), - [anon_sym_export] = ACTIONS(3107), - [anon_sym_type] = ACTIONS(3107), - [anon_sym_namespace] = ACTIONS(3107), - [anon_sym_LBRACE] = ACTIONS(3107), - [anon_sym_RBRACE] = ACTIONS(3107), - [anon_sym_typeof] = ACTIONS(3107), - [anon_sym_import] = ACTIONS(3107), - [anon_sym_with] = ACTIONS(3107), - [anon_sym_var] = ACTIONS(3107), - [anon_sym_let] = ACTIONS(3107), - [anon_sym_const] = ACTIONS(3107), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_if] = ACTIONS(3107), - [anon_sym_switch] = ACTIONS(3107), - [anon_sym_for] = ACTIONS(3107), - [anon_sym_LPAREN] = ACTIONS(3107), - [anon_sym_await] = ACTIONS(3107), - [anon_sym_while] = ACTIONS(3107), - [anon_sym_do] = ACTIONS(3107), - [anon_sym_try] = ACTIONS(3107), - [anon_sym_break] = ACTIONS(3107), - [anon_sym_continue] = ACTIONS(3107), - [anon_sym_debugger] = ACTIONS(3107), - [anon_sym_return] = ACTIONS(3107), - [anon_sym_throw] = ACTIONS(3107), - [anon_sym_SEMI] = ACTIONS(3107), - [anon_sym_catch] = ACTIONS(3147), - [anon_sym_finally] = ACTIONS(3149), - [anon_sym_yield] = ACTIONS(3107), - [anon_sym_LBRACK] = ACTIONS(3107), - [anon_sym_LTtemplate_GT] = ACTIONS(3107), - [anon_sym_DQUOTE] = ACTIONS(3107), - [anon_sym_SQUOTE] = ACTIONS(3107), - [anon_sym_class] = ACTIONS(3107), - [anon_sym_async] = ACTIONS(3107), - [anon_sym_function] = ACTIONS(3107), - [anon_sym_new] = ACTIONS(3107), - [anon_sym_using] = ACTIONS(3107), - [anon_sym_PLUS] = ACTIONS(3107), - [anon_sym_DASH] = ACTIONS(3107), - [anon_sym_SLASH] = ACTIONS(3107), - [anon_sym_LT] = ACTIONS(3107), - [anon_sym_TILDE] = ACTIONS(3107), - [anon_sym_void] = ACTIONS(3107), - [anon_sym_delete] = ACTIONS(3107), - [anon_sym_PLUS_PLUS] = ACTIONS(3107), - [anon_sym_DASH_DASH] = ACTIONS(3107), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3107), - [sym_number] = ACTIONS(3107), - [sym_private_property_identifier] = ACTIONS(3107), - [sym_this] = ACTIONS(3107), - [sym_super] = ACTIONS(3107), - [sym_true] = ACTIONS(3107), - [sym_false] = ACTIONS(3107), - [sym_null] = ACTIONS(3107), - [sym_undefined] = ACTIONS(3107), - [anon_sym_AT] = ACTIONS(3107), - [anon_sym_static] = ACTIONS(3107), - [anon_sym_readonly] = ACTIONS(3107), - [anon_sym_get] = ACTIONS(3107), - [anon_sym_set] = ACTIONS(3107), - [anon_sym_declare] = ACTIONS(3107), - [anon_sym_public] = ACTIONS(3107), - [anon_sym_private] = ACTIONS(3107), - [anon_sym_protected] = ACTIONS(3107), - [anon_sym_override] = ACTIONS(3107), - [anon_sym_module] = ACTIONS(3107), - [anon_sym_any] = ACTIONS(3107), - [anon_sym_number] = ACTIONS(3107), - [anon_sym_boolean] = ACTIONS(3107), - [anon_sym_string] = ACTIONS(3107), - [anon_sym_symbol] = ACTIONS(3107), - [anon_sym_object] = ACTIONS(3107), - [anon_sym_abstract] = ACTIONS(3107), - [anon_sym_interface] = ACTIONS(3107), - [anon_sym_enum] = ACTIONS(3107), - [sym_html_comment] = ACTIONS(5), - }, - [962] = { - [sym_comment] = STATE(962), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_else] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_case] = ACTIONS(2140), - [anon_sym_finally] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(3151), - [sym_html_comment] = ACTIONS(5), - }, - [963] = { - [sym__call_signature] = STATE(7228), - [sym_comment] = STATE(963), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [964] = { + [sym__call_signature] = STATE(7075), + [sym_comment] = STATE(964), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1395), + [anon_sym_EQ] = ACTIONS(1331), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), @@ -141262,16 +141065,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [964] = { - [sym__call_signature] = STATE(7228), - [sym_comment] = STATE(964), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [965] = { + [sym__call_signature] = STATE(7075), + [sym_comment] = STATE(965), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1381), + [anon_sym_EQ] = ACTIONS(1333), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), @@ -141347,11 +141150,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [965] = { - [sym__call_signature] = STATE(7228), - [sym_comment] = STATE(965), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [966] = { + [sym__call_signature] = STATE(7075), + [sym_comment] = STATE(966), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), @@ -141432,101 +141235,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [966] = { - [sym__call_signature] = STATE(7228), - [sym_comment] = STATE(966), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), - [sym_identifier] = ACTIONS(3055), - [anon_sym_export] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1397), - [anon_sym_as] = ACTIONS(118), - [anon_sym_namespace] = ACTIONS(3057), - [anon_sym_let] = ACTIONS(3057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(3059), - [anon_sym_in] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_async] = ACTIONS(3057), - [anon_sym_function] = ACTIONS(3062), - [anon_sym_EQ_GT] = ACTIONS(217), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_new] = ACTIONS(3057), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(3064), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), + [967] = { + [sym_comment] = STATE(967), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_finally] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_static] = ACTIONS(3057), - [anon_sym_readonly] = ACTIONS(3057), - [anon_sym_get] = ACTIONS(3057), - [anon_sym_set] = ACTIONS(3057), - [anon_sym_declare] = ACTIONS(3057), - [anon_sym_public] = ACTIONS(3057), - [anon_sym_private] = ACTIONS(3057), - [anon_sym_protected] = ACTIONS(3057), - [anon_sym_override] = ACTIONS(3057), - [anon_sym_module] = ACTIONS(3057), - [anon_sym_any] = ACTIONS(3057), - [anon_sym_number] = ACTIONS(3057), - [anon_sym_boolean] = ACTIONS(3057), - [anon_sym_string] = ACTIONS(3057), - [anon_sym_symbol] = ACTIONS(3057), - [anon_sym_object] = ACTIONS(3057), - [anon_sym_satisfies] = ACTIONS(118), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(3153), [sym_html_comment] = ACTIONS(5), }, - [967] = { - [sym__call_signature] = STATE(7228), - [sym_comment] = STATE(967), - [sym_formal_parameters] = STATE(4978), - [sym_type_parameters] = STATE(6489), + [968] = { + [sym_comment] = STATE(968), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_catch] = ACTIONS(2160), + [anon_sym_finally] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(3155), + [sym_html_comment] = ACTIONS(5), + }, + [969] = { + [sym__call_signature] = STATE(7075), + [sym_comment] = STATE(969), + [sym_formal_parameters] = STATE(4815), + [sym_type_parameters] = STATE(6346), [sym_identifier] = ACTIONS(3055), [anon_sym_export] = ACTIONS(3057), [anon_sym_STAR] = ACTIONS(118), [anon_sym_type] = ACTIONS(3057), - [anon_sym_EQ] = ACTIONS(1389), + [anon_sym_EQ] = ACTIONS(1329), [anon_sym_as] = ACTIONS(118), [anon_sym_namespace] = ACTIONS(3057), [anon_sym_let] = ACTIONS(3057), @@ -141602,600 +141490,681 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [968] = { - [sym_comment] = STATE(968), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_case] = ACTIONS(2140), - [anon_sym_catch] = ACTIONS(2140), - [anon_sym_finally] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(3153), - [sym_html_comment] = ACTIONS(5), - }, - [969] = { - [sym_comment] = STATE(969), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_finally] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(3155), - [sym_html_comment] = ACTIONS(5), - }, [970] = { + [sym_statement_block] = STATE(1140), [sym_comment] = STATE(970), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_catch] = ACTIONS(2190), - [anon_sym_finally] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(3157), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_else] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_case] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(3157), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), [sym_html_comment] = ACTIONS(5), }, [971] = { [sym_comment] = STATE(971), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_else] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_finally] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), [sym__automatic_semicolon] = ACTIONS(3159), [sym_html_comment] = ACTIONS(5), }, [972] = { + [sym_statement_block] = STATE(1345), [sym_comment] = STATE(972), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_catch] = ACTIONS(2190), - [anon_sym_finally] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(3161), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_case] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(3163), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), [sym_html_comment] = ACTIONS(5), }, [973] = { [sym_comment] = STATE(973), - [sym_identifier] = ACTIONS(3163), - [anon_sym_export] = ACTIONS(3163), - [anon_sym_default] = ACTIONS(3163), - [anon_sym_type] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3163), - [anon_sym_typeof] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_with] = ACTIONS(3163), - [anon_sym_var] = ACTIONS(3163), - [anon_sym_let] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_else] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_await] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_debugger] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3163), - [anon_sym_case] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_LTtemplate_GT] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_async] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_SLASH] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_void] = ACTIONS(3163), - [anon_sym_delete] = ACTIONS(3163), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3163), - [sym_number] = ACTIONS(3163), - [sym_private_property_identifier] = ACTIONS(3163), - [sym_this] = ACTIONS(3163), - [sym_super] = ACTIONS(3163), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [sym_null] = ACTIONS(3163), - [sym_undefined] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_readonly] = ACTIONS(3163), - [anon_sym_get] = ACTIONS(3163), - [anon_sym_set] = ACTIONS(3163), - [anon_sym_declare] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_override] = ACTIONS(3163), - [anon_sym_module] = ACTIONS(3163), - [anon_sym_any] = ACTIONS(3163), - [anon_sym_number] = ACTIONS(3163), - [anon_sym_boolean] = ACTIONS(3163), - [anon_sym_string] = ACTIONS(3163), - [anon_sym_symbol] = ACTIONS(3163), - [anon_sym_object] = ACTIONS(3163), - [anon_sym_abstract] = ACTIONS(3163), - [anon_sym_interface] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [sym__automatic_semicolon] = ACTIONS(3165), + [sym_identifier] = ACTIONS(2280), + [anon_sym_export] = ACTIONS(2280), + [anon_sym_default] = ACTIONS(2280), + [anon_sym_type] = ACTIONS(2280), + [anon_sym_namespace] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2280), + [anon_sym_RBRACE] = ACTIONS(2280), + [anon_sym_typeof] = ACTIONS(2280), + [anon_sym_import] = ACTIONS(2280), + [anon_sym_with] = ACTIONS(2280), + [anon_sym_var] = ACTIONS(2280), + [anon_sym_let] = ACTIONS(2280), + [anon_sym_const] = ACTIONS(2280), + [anon_sym_BANG] = ACTIONS(2280), + [anon_sym_else] = ACTIONS(2280), + [anon_sym_if] = ACTIONS(2280), + [anon_sym_switch] = ACTIONS(2280), + [anon_sym_for] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_await] = ACTIONS(2280), + [anon_sym_while] = ACTIONS(2280), + [anon_sym_do] = ACTIONS(2280), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_break] = ACTIONS(2280), + [anon_sym_continue] = ACTIONS(2280), + [anon_sym_debugger] = ACTIONS(2280), + [anon_sym_return] = ACTIONS(2280), + [anon_sym_throw] = ACTIONS(2280), + [anon_sym_SEMI] = ACTIONS(2280), + [anon_sym_case] = ACTIONS(2280), + [anon_sym_yield] = ACTIONS(2280), + [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_LTtemplate_GT] = ACTIONS(2280), + [anon_sym_DQUOTE] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2280), + [anon_sym_class] = ACTIONS(2280), + [anon_sym_async] = ACTIONS(2280), + [anon_sym_function] = ACTIONS(2280), + [anon_sym_new] = ACTIONS(2280), + [anon_sym_using] = ACTIONS(2280), + [anon_sym_PLUS] = ACTIONS(2280), + [anon_sym_DASH] = ACTIONS(2280), + [anon_sym_SLASH] = ACTIONS(2280), + [anon_sym_LT] = ACTIONS(2280), + [anon_sym_TILDE] = ACTIONS(2280), + [anon_sym_void] = ACTIONS(2280), + [anon_sym_delete] = ACTIONS(2280), + [anon_sym_PLUS_PLUS] = ACTIONS(2280), + [anon_sym_DASH_DASH] = ACTIONS(2280), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2280), + [sym_number] = ACTIONS(2280), + [sym_private_property_identifier] = ACTIONS(2280), + [sym_this] = ACTIONS(2280), + [sym_super] = ACTIONS(2280), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_undefined] = ACTIONS(2280), + [anon_sym_AT] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(2280), + [anon_sym_readonly] = ACTIONS(2280), + [anon_sym_get] = ACTIONS(2280), + [anon_sym_set] = ACTIONS(2280), + [anon_sym_declare] = ACTIONS(2280), + [anon_sym_public] = ACTIONS(2280), + [anon_sym_private] = ACTIONS(2280), + [anon_sym_protected] = ACTIONS(2280), + [anon_sym_override] = ACTIONS(2280), + [anon_sym_module] = ACTIONS(2280), + [anon_sym_any] = ACTIONS(2280), + [anon_sym_number] = ACTIONS(2280), + [anon_sym_boolean] = ACTIONS(2280), + [anon_sym_string] = ACTIONS(2280), + [anon_sym_symbol] = ACTIONS(2280), + [anon_sym_object] = ACTIONS(2280), + [anon_sym_abstract] = ACTIONS(2280), + [anon_sym_interface] = ACTIONS(2280), + [anon_sym_enum] = ACTIONS(2280), + [sym__automatic_semicolon] = ACTIONS(2284), [sym_html_comment] = ACTIONS(5), }, [974] = { - [sym_else_clause] = STATE(1576), [sym_comment] = STATE(974), - [sym_identifier] = ACTIONS(3167), - [anon_sym_export] = ACTIONS(3167), - [anon_sym_default] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_namespace] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_typeof] = ACTIONS(3167), - [anon_sym_import] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_var] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3169), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_switch] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_await] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_break] = ACTIONS(3167), - [anon_sym_continue] = ACTIONS(3167), - [anon_sym_debugger] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_throw] = ACTIONS(3167), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym_case] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LTtemplate_GT] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3167), - [anon_sym_class] = ACTIONS(3167), - [anon_sym_async] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_using] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_SLASH] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_delete] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_DASH_DASH] = ACTIONS(3167), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3167), - [sym_number] = ACTIONS(3167), - [sym_private_property_identifier] = ACTIONS(3167), - [sym_this] = ACTIONS(3167), - [sym_super] = ACTIONS(3167), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_null] = ACTIONS(3167), - [sym_undefined] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_readonly] = ACTIONS(3167), - [anon_sym_get] = ACTIONS(3167), - [anon_sym_set] = ACTIONS(3167), - [anon_sym_declare] = ACTIONS(3167), - [anon_sym_public] = ACTIONS(3167), - [anon_sym_private] = ACTIONS(3167), - [anon_sym_protected] = ACTIONS(3167), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3167), - [anon_sym_any] = ACTIONS(3167), - [anon_sym_number] = ACTIONS(3167), - [anon_sym_boolean] = ACTIONS(3167), - [anon_sym_string] = ACTIONS(3167), - [anon_sym_symbol] = ACTIONS(3167), - [anon_sym_object] = ACTIONS(3167), - [anon_sym_abstract] = ACTIONS(3167), - [anon_sym_interface] = ACTIONS(3167), - [anon_sym_enum] = ACTIONS(3167), + [sym_identifier] = ACTIONS(2264), + [anon_sym_export] = ACTIONS(2264), + [anon_sym_default] = ACTIONS(2264), + [anon_sym_type] = ACTIONS(2264), + [anon_sym_namespace] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2264), + [anon_sym_RBRACE] = ACTIONS(2264), + [anon_sym_typeof] = ACTIONS(2264), + [anon_sym_import] = ACTIONS(2264), + [anon_sym_with] = ACTIONS(2264), + [anon_sym_var] = ACTIONS(2264), + [anon_sym_let] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_BANG] = ACTIONS(2264), + [anon_sym_else] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_switch] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2264), + [anon_sym_await] = ACTIONS(2264), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2264), + [anon_sym_try] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_debugger] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_throw] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym_case] = ACTIONS(2264), + [anon_sym_yield] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_LTtemplate_GT] = ACTIONS(2264), + [anon_sym_DQUOTE] = ACTIONS(2264), + [anon_sym_SQUOTE] = ACTIONS(2264), + [anon_sym_class] = ACTIONS(2264), + [anon_sym_async] = ACTIONS(2264), + [anon_sym_function] = ACTIONS(2264), + [anon_sym_new] = ACTIONS(2264), + [anon_sym_using] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_SLASH] = ACTIONS(2264), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_TILDE] = ACTIONS(2264), + [anon_sym_void] = ACTIONS(2264), + [anon_sym_delete] = ACTIONS(2264), + [anon_sym_PLUS_PLUS] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(2264), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2264), + [sym_number] = ACTIONS(2264), + [sym_private_property_identifier] = ACTIONS(2264), + [sym_this] = ACTIONS(2264), + [sym_super] = ACTIONS(2264), + [sym_true] = ACTIONS(2264), + [sym_false] = ACTIONS(2264), + [sym_null] = ACTIONS(2264), + [sym_undefined] = ACTIONS(2264), + [anon_sym_AT] = ACTIONS(2264), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_readonly] = ACTIONS(2264), + [anon_sym_get] = ACTIONS(2264), + [anon_sym_set] = ACTIONS(2264), + [anon_sym_declare] = ACTIONS(2264), + [anon_sym_public] = ACTIONS(2264), + [anon_sym_private] = ACTIONS(2264), + [anon_sym_protected] = ACTIONS(2264), + [anon_sym_override] = ACTIONS(2264), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_any] = ACTIONS(2264), + [anon_sym_number] = ACTIONS(2264), + [anon_sym_boolean] = ACTIONS(2264), + [anon_sym_string] = ACTIONS(2264), + [anon_sym_symbol] = ACTIONS(2264), + [anon_sym_object] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2264), + [anon_sym_interface] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + [sym__automatic_semicolon] = ACTIONS(2268), [sym_html_comment] = ACTIONS(5), }, [975] = { - [sym_else_clause] = STATE(1132), [sym_comment] = STATE(975), + [sym_identifier] = ACTIONS(2234), + [anon_sym_export] = ACTIONS(2234), + [anon_sym_default] = ACTIONS(2234), + [anon_sym_type] = ACTIONS(2234), + [anon_sym_namespace] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_typeof] = ACTIONS(2234), + [anon_sym_import] = ACTIONS(2234), + [anon_sym_with] = ACTIONS(2234), + [anon_sym_var] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [anon_sym_BANG] = ACTIONS(2234), + [anon_sym_else] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_switch] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_await] = ACTIONS(2234), + [anon_sym_while] = ACTIONS(2234), + [anon_sym_do] = ACTIONS(2234), + [anon_sym_try] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_debugger] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_throw] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_case] = ACTIONS(2234), + [anon_sym_yield] = ACTIONS(2234), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_LTtemplate_GT] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_class] = ACTIONS(2234), + [anon_sym_async] = ACTIONS(2234), + [anon_sym_function] = ACTIONS(2234), + [anon_sym_new] = ACTIONS(2234), + [anon_sym_using] = ACTIONS(2234), + [anon_sym_PLUS] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2234), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_void] = ACTIONS(2234), + [anon_sym_delete] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2234), + [sym_number] = ACTIONS(2234), + [sym_private_property_identifier] = ACTIONS(2234), + [sym_this] = ACTIONS(2234), + [sym_super] = ACTIONS(2234), + [sym_true] = ACTIONS(2234), + [sym_false] = ACTIONS(2234), + [sym_null] = ACTIONS(2234), + [sym_undefined] = ACTIONS(2234), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_static] = ACTIONS(2234), + [anon_sym_readonly] = ACTIONS(2234), + [anon_sym_get] = ACTIONS(2234), + [anon_sym_set] = ACTIONS(2234), + [anon_sym_declare] = ACTIONS(2234), + [anon_sym_public] = ACTIONS(2234), + [anon_sym_private] = ACTIONS(2234), + [anon_sym_protected] = ACTIONS(2234), + [anon_sym_override] = ACTIONS(2234), + [anon_sym_module] = ACTIONS(2234), + [anon_sym_any] = ACTIONS(2234), + [anon_sym_number] = ACTIONS(2234), + [anon_sym_boolean] = ACTIONS(2234), + [anon_sym_string] = ACTIONS(2234), + [anon_sym_symbol] = ACTIONS(2234), + [anon_sym_object] = ACTIONS(2234), + [anon_sym_abstract] = ACTIONS(2234), + [anon_sym_interface] = ACTIONS(2234), + [anon_sym_enum] = ACTIONS(2234), + [sym__automatic_semicolon] = ACTIONS(2238), + [sym_html_comment] = ACTIONS(5), + }, + [976] = { + [sym_statement_block] = STATE(1140), + [sym_comment] = STATE(976), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(3141), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_else] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_case] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [sym_html_comment] = ACTIONS(5), + }, + [977] = { + [sym_comment] = STATE(977), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_finally] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(3165), + [sym_html_comment] = ACTIONS(5), + }, + [978] = { + [sym_comment] = STATE(978), [sym_identifier] = ACTIONS(3167), [anon_sym_export] = ACTIONS(3167), [anon_sym_default] = ACTIONS(3167), @@ -142210,7 +142179,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3167), [anon_sym_const] = ACTIONS(3167), [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3171), + [anon_sym_else] = ACTIONS(3167), [anon_sym_if] = ACTIONS(3167), [anon_sym_switch] = ACTIONS(3167), [anon_sym_for] = ACTIONS(3167), @@ -142226,6 +142195,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(3167), [anon_sym_SEMI] = ACTIONS(3167), [anon_sym_case] = ACTIONS(3167), + [anon_sym_finally] = ACTIONS(3167), [anon_sym_yield] = ACTIONS(3167), [anon_sym_LBRACK] = ACTIONS(3167), [anon_sym_LTtemplate_GT] = ACTIONS(3167), @@ -142277,848 +142247,680 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3167), [sym_html_comment] = ACTIONS(5), }, - [976] = { - [sym_comment] = STATE(976), - [sym_identifier] = ACTIONS(3173), - [anon_sym_export] = ACTIONS(3173), - [anon_sym_default] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_namespace] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym_typeof] = ACTIONS(3173), - [anon_sym_import] = ACTIONS(3173), - [anon_sym_with] = ACTIONS(3173), - [anon_sym_var] = ACTIONS(3173), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_switch] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_await] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_debugger] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_throw] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym_case] = ACTIONS(3173), - [anon_sym_yield] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LTtemplate_GT] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3173), - [anon_sym_class] = ACTIONS(3173), - [anon_sym_async] = ACTIONS(3173), - [anon_sym_function] = ACTIONS(3173), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_using] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_void] = ACTIONS(3173), - [anon_sym_delete] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3173), - [sym_number] = ACTIONS(3173), - [sym_private_property_identifier] = ACTIONS(3173), - [sym_this] = ACTIONS(3173), - [sym_super] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_null] = ACTIONS(3173), - [sym_undefined] = ACTIONS(3173), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_static] = ACTIONS(3173), - [anon_sym_readonly] = ACTIONS(3173), - [anon_sym_get] = ACTIONS(3173), - [anon_sym_set] = ACTIONS(3173), - [anon_sym_declare] = ACTIONS(3173), - [anon_sym_public] = ACTIONS(3173), - [anon_sym_private] = ACTIONS(3173), - [anon_sym_protected] = ACTIONS(3173), - [anon_sym_override] = ACTIONS(3173), - [anon_sym_module] = ACTIONS(3173), - [anon_sym_any] = ACTIONS(3173), - [anon_sym_number] = ACTIONS(3173), - [anon_sym_boolean] = ACTIONS(3173), - [anon_sym_string] = ACTIONS(3173), - [anon_sym_symbol] = ACTIONS(3173), - [anon_sym_object] = ACTIONS(3173), - [anon_sym_abstract] = ACTIONS(3173), - [anon_sym_interface] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3173), - [sym__automatic_semicolon] = ACTIONS(3175), - [sym_html_comment] = ACTIONS(5), - }, - [977] = { - [sym_comment] = STATE(977), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_catch] = ACTIONS(2190), - [anon_sym_finally] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym_html_comment] = ACTIONS(5), - }, - [978] = { - [sym_comment] = STATE(978), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_else] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_case] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(3177), - [sym_html_comment] = ACTIONS(5), - }, [979] = { [sym_comment] = STATE(979), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_finally] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2272), + [anon_sym_export] = ACTIONS(2272), + [anon_sym_default] = ACTIONS(2272), + [anon_sym_type] = ACTIONS(2272), + [anon_sym_namespace] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_typeof] = ACTIONS(2272), + [anon_sym_import] = ACTIONS(2272), + [anon_sym_with] = ACTIONS(2272), + [anon_sym_var] = ACTIONS(2272), + [anon_sym_let] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [anon_sym_BANG] = ACTIONS(2272), + [anon_sym_else] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_switch] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_await] = ACTIONS(2272), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_debugger] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_throw] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_case] = ACTIONS(2272), + [anon_sym_yield] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_LTtemplate_GT] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_class] = ACTIONS(2272), + [anon_sym_async] = ACTIONS(2272), + [anon_sym_function] = ACTIONS(2272), + [anon_sym_new] = ACTIONS(2272), + [anon_sym_using] = ACTIONS(2272), + [anon_sym_PLUS] = ACTIONS(2272), + [anon_sym_DASH] = ACTIONS(2272), + [anon_sym_SLASH] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_TILDE] = ACTIONS(2272), + [anon_sym_void] = ACTIONS(2272), + [anon_sym_delete] = ACTIONS(2272), + [anon_sym_PLUS_PLUS] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2272), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2272), + [sym_number] = ACTIONS(2272), + [sym_private_property_identifier] = ACTIONS(2272), + [sym_this] = ACTIONS(2272), + [sym_super] = ACTIONS(2272), + [sym_true] = ACTIONS(2272), + [sym_false] = ACTIONS(2272), + [sym_null] = ACTIONS(2272), + [sym_undefined] = ACTIONS(2272), + [anon_sym_AT] = ACTIONS(2272), + [anon_sym_static] = ACTIONS(2272), + [anon_sym_readonly] = ACTIONS(2272), + [anon_sym_get] = ACTIONS(2272), + [anon_sym_set] = ACTIONS(2272), + [anon_sym_declare] = ACTIONS(2272), + [anon_sym_public] = ACTIONS(2272), + [anon_sym_private] = ACTIONS(2272), + [anon_sym_protected] = ACTIONS(2272), + [anon_sym_override] = ACTIONS(2272), + [anon_sym_module] = ACTIONS(2272), + [anon_sym_any] = ACTIONS(2272), + [anon_sym_number] = ACTIONS(2272), + [anon_sym_boolean] = ACTIONS(2272), + [anon_sym_string] = ACTIONS(2272), + [anon_sym_symbol] = ACTIONS(2272), + [anon_sym_object] = ACTIONS(2272), + [anon_sym_abstract] = ACTIONS(2272), + [anon_sym_interface] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), + [sym__automatic_semicolon] = ACTIONS(2276), [sym_html_comment] = ACTIONS(5), }, [980] = { - [sym_finally_clause] = STATE(1403), [sym_comment] = STATE(980), - [ts_builtin_sym_end] = ACTIONS(3179), - [sym_identifier] = ACTIONS(3143), - [anon_sym_export] = ACTIONS(3143), - [anon_sym_type] = ACTIONS(3143), - [anon_sym_namespace] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3143), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_typeof] = ACTIONS(3143), - [anon_sym_import] = ACTIONS(3143), - [anon_sym_with] = ACTIONS(3143), - [anon_sym_var] = ACTIONS(3143), - [anon_sym_let] = ACTIONS(3143), - [anon_sym_const] = ACTIONS(3143), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_else] = ACTIONS(3143), - [anon_sym_if] = ACTIONS(3143), - [anon_sym_switch] = ACTIONS(3143), - [anon_sym_for] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_await] = ACTIONS(3143), - [anon_sym_while] = ACTIONS(3143), - [anon_sym_do] = ACTIONS(3143), - [anon_sym_try] = ACTIONS(3143), - [anon_sym_break] = ACTIONS(3143), - [anon_sym_continue] = ACTIONS(3143), - [anon_sym_debugger] = ACTIONS(3143), - [anon_sym_return] = ACTIONS(3143), - [anon_sym_throw] = ACTIONS(3143), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_finally] = ACTIONS(3131), - [anon_sym_yield] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_LTtemplate_GT] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3143), - [anon_sym_SQUOTE] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3143), - [anon_sym_async] = ACTIONS(3143), - [anon_sym_function] = ACTIONS(3143), - [anon_sym_new] = ACTIONS(3143), - [anon_sym_using] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3143), - [anon_sym_TILDE] = ACTIONS(3143), - [anon_sym_void] = ACTIONS(3143), - [anon_sym_delete] = ACTIONS(3143), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3143), - [sym_private_property_identifier] = ACTIONS(3143), - [sym_this] = ACTIONS(3143), - [sym_super] = ACTIONS(3143), - [sym_true] = ACTIONS(3143), - [sym_false] = ACTIONS(3143), - [sym_null] = ACTIONS(3143), - [sym_undefined] = ACTIONS(3143), - [anon_sym_AT] = ACTIONS(3143), - [anon_sym_static] = ACTIONS(3143), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3143), - [anon_sym_set] = ACTIONS(3143), - [anon_sym_declare] = ACTIONS(3143), - [anon_sym_public] = ACTIONS(3143), - [anon_sym_private] = ACTIONS(3143), - [anon_sym_protected] = ACTIONS(3143), - [anon_sym_override] = ACTIONS(3143), - [anon_sym_module] = ACTIONS(3143), - [anon_sym_any] = ACTIONS(3143), - [anon_sym_number] = ACTIONS(3143), - [anon_sym_boolean] = ACTIONS(3143), - [anon_sym_string] = ACTIONS(3143), - [anon_sym_symbol] = ACTIONS(3143), - [anon_sym_object] = ACTIONS(3143), - [anon_sym_abstract] = ACTIONS(3143), - [anon_sym_interface] = ACTIONS(3143), - [anon_sym_enum] = ACTIONS(3143), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_catch] = ACTIONS(2160), + [anon_sym_finally] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), [sym_html_comment] = ACTIONS(5), }, [981] = { [sym_comment] = STATE(981), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_else] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_finally] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(3181), + [sym_identifier] = ACTIONS(2212), + [anon_sym_export] = ACTIONS(2212), + [anon_sym_default] = ACTIONS(2212), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_typeof] = ACTIONS(2212), + [anon_sym_import] = ACTIONS(2212), + [anon_sym_with] = ACTIONS(2212), + [anon_sym_var] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_else] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_await] = ACTIONS(2212), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_debugger] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_case] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LTtemplate_GT] = ACTIONS(2212), + [anon_sym_DQUOTE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_function] = ACTIONS(2212), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_SLASH] = ACTIONS(2212), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_void] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2212), + [sym_number] = ACTIONS(2212), + [sym_private_property_identifier] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [sym_null] = ACTIONS(2212), + [sym_undefined] = ACTIONS(2212), + [anon_sym_AT] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_readonly] = ACTIONS(2212), + [anon_sym_get] = ACTIONS(2212), + [anon_sym_set] = ACTIONS(2212), + [anon_sym_declare] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_override] = ACTIONS(2212), + [anon_sym_module] = ACTIONS(2212), + [anon_sym_any] = ACTIONS(2212), + [anon_sym_number] = ACTIONS(2212), + [anon_sym_boolean] = ACTIONS(2212), + [anon_sym_string] = ACTIONS(2212), + [anon_sym_symbol] = ACTIONS(2212), + [anon_sym_object] = ACTIONS(2212), + [anon_sym_abstract] = ACTIONS(2212), + [anon_sym_interface] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [sym__automatic_semicolon] = ACTIONS(2216), [sym_html_comment] = ACTIONS(5), }, [982] = { + [sym_statement_block] = STATE(1482), [sym_comment] = STATE(982), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_finally] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(3183), + [ts_builtin_sym_end] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_else] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(3171), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), [sym_html_comment] = ACTIONS(5), }, [983] = { [sym_comment] = STATE(983), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(2212), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2172), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LTtemplate_GT] = ACTIONS(2172), + [anon_sym_DOT] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_using] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2172), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2172), + [anon_sym_DASH_DASH] = ACTIONS(2172), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2172), + [sym_number] = ACTIONS(2172), + [sym_private_property_identifier] = ACTIONS(2172), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2172), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_object] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), [sym_html_comment] = ACTIONS(5), }, [984] = { + [sym_statement_block] = STATE(1482), [sym_comment] = STATE(984), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_default] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_namespace] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2246), - [anon_sym_import] = ACTIONS(2246), - [anon_sym_with] = ACTIONS(2246), - [anon_sym_var] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_else] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_debugger] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_throw] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_case] = ACTIONS(2246), - [anon_sym_finally] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LTtemplate_GT] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_class] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2246), - [anon_sym_delete] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_private_property_identifier] = ACTIONS(2246), - [sym_this] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_undefined] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_readonly] = ACTIONS(2246), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_declare] = ACTIONS(2246), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_override] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_any] = ACTIONS(2246), - [anon_sym_number] = ACTIONS(2246), - [anon_sym_boolean] = ACTIONS(2246), - [anon_sym_string] = ACTIONS(2246), - [anon_sym_symbol] = ACTIONS(2246), - [anon_sym_object] = ACTIONS(2246), - [anon_sym_abstract] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), + [ts_builtin_sym_end] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_else] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(3173), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), [sym_html_comment] = ACTIONS(5), }, [985] = { [sym_comment] = STATE(985), - [ts_builtin_sym_end] = ACTIONS(2248), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_namespace] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2246), - [anon_sym_import] = ACTIONS(2246), - [anon_sym_with] = ACTIONS(2246), - [anon_sym_var] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_else] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_debugger] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_throw] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_catch] = ACTIONS(2246), - [anon_sym_finally] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LTtemplate_GT] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_class] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2246), - [anon_sym_delete] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_private_property_identifier] = ACTIONS(2246), - [sym_this] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_undefined] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_readonly] = ACTIONS(2246), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_declare] = ACTIONS(2246), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_override] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_any] = ACTIONS(2246), - [anon_sym_number] = ACTIONS(2246), - [anon_sym_boolean] = ACTIONS(2246), - [anon_sym_string] = ACTIONS(2246), - [anon_sym_symbol] = ACTIONS(2246), - [anon_sym_object] = ACTIONS(2246), - [anon_sym_abstract] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), + [sym_identifier] = ACTIONS(2166), + [anon_sym_export] = ACTIONS(2166), + [anon_sym_default] = ACTIONS(2166), + [anon_sym_type] = ACTIONS(2166), + [anon_sym_namespace] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_typeof] = ACTIONS(2166), + [anon_sym_import] = ACTIONS(2166), + [anon_sym_with] = ACTIONS(2166), + [anon_sym_var] = ACTIONS(2166), + [anon_sym_let] = ACTIONS(2166), + [anon_sym_const] = ACTIONS(2166), + [anon_sym_BANG] = ACTIONS(2166), + [anon_sym_else] = ACTIONS(2166), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_switch] = ACTIONS(2166), + [anon_sym_for] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(2166), + [anon_sym_await] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2166), + [anon_sym_do] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2166), + [anon_sym_break] = ACTIONS(2166), + [anon_sym_continue] = ACTIONS(2166), + [anon_sym_debugger] = ACTIONS(2166), + [anon_sym_return] = ACTIONS(2166), + [anon_sym_throw] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_case] = ACTIONS(2166), + [anon_sym_yield] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2166), + [anon_sym_LTtemplate_GT] = ACTIONS(2166), + [anon_sym_DOT] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [anon_sym_SQUOTE] = ACTIONS(2166), + [anon_sym_class] = ACTIONS(2166), + [anon_sym_async] = ACTIONS(2166), + [anon_sym_function] = ACTIONS(2166), + [anon_sym_new] = ACTIONS(2166), + [anon_sym_using] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_TILDE] = ACTIONS(2166), + [anon_sym_void] = ACTIONS(2166), + [anon_sym_delete] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2166), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2166), + [sym_number] = ACTIONS(2166), + [sym_private_property_identifier] = ACTIONS(2166), + [sym_this] = ACTIONS(2166), + [sym_super] = ACTIONS(2166), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_undefined] = ACTIONS(2166), + [anon_sym_AT] = ACTIONS(2166), + [anon_sym_static] = ACTIONS(2166), + [anon_sym_readonly] = ACTIONS(2166), + [anon_sym_get] = ACTIONS(2166), + [anon_sym_set] = ACTIONS(2166), + [anon_sym_declare] = ACTIONS(2166), + [anon_sym_public] = ACTIONS(2166), + [anon_sym_private] = ACTIONS(2166), + [anon_sym_protected] = ACTIONS(2166), + [anon_sym_override] = ACTIONS(2166), + [anon_sym_module] = ACTIONS(2166), + [anon_sym_any] = ACTIONS(2166), + [anon_sym_number] = ACTIONS(2166), + [anon_sym_boolean] = ACTIONS(2166), + [anon_sym_string] = ACTIONS(2166), + [anon_sym_symbol] = ACTIONS(2166), + [anon_sym_object] = ACTIONS(2166), + [anon_sym_abstract] = ACTIONS(2166), + [anon_sym_interface] = ACTIONS(2166), + [anon_sym_enum] = ACTIONS(2166), [sym_html_comment] = ACTIONS(5), }, [986] = { [sym_comment] = STATE(986), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_finally] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(3175), + [sym_html_comment] = ACTIONS(5), + }, + [987] = { + [sym_comment] = STATE(987), [sym_identifier] = ACTIONS(2288), [anon_sym_export] = ACTIONS(2288), [anon_sym_default] = ACTIONS(2288), @@ -143133,7 +142935,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2288), [anon_sym_const] = ACTIONS(2288), [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_else] = ACTIONS(2288), [anon_sym_if] = ACTIONS(2288), [anon_sym_switch] = ACTIONS(2288), [anon_sym_for] = ACTIONS(2288), @@ -143149,6 +142950,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2288), [anon_sym_SEMI] = ACTIONS(2288), [anon_sym_case] = ACTIONS(2288), + [anon_sym_catch] = ACTIONS(2288), + [anon_sym_finally] = ACTIONS(2288), [anon_sym_yield] = ACTIONS(2288), [anon_sym_LBRACK] = ACTIONS(2288), [anon_sym_LTtemplate_GT] = ACTIONS(2288), @@ -143198,1439 +143001,850 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2288), [anon_sym_interface] = ACTIONS(2288), [anon_sym_enum] = ACTIONS(2288), - [sym__automatic_semicolon] = ACTIONS(2292), - [sym_html_comment] = ACTIONS(5), - }, - [987] = { - [sym_comment] = STATE(987), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(2192), [sym_html_comment] = ACTIONS(5), }, [988] = { - [sym_finally_clause] = STATE(1516), [sym_comment] = STATE(988), - [sym_identifier] = ACTIONS(3143), - [anon_sym_export] = ACTIONS(3143), - [anon_sym_default] = ACTIONS(3143), - [anon_sym_type] = ACTIONS(3143), - [anon_sym_namespace] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3143), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_typeof] = ACTIONS(3143), - [anon_sym_import] = ACTIONS(3143), - [anon_sym_with] = ACTIONS(3143), - [anon_sym_var] = ACTIONS(3143), - [anon_sym_let] = ACTIONS(3143), - [anon_sym_const] = ACTIONS(3143), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_if] = ACTIONS(3143), - [anon_sym_switch] = ACTIONS(3143), - [anon_sym_for] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_await] = ACTIONS(3143), - [anon_sym_while] = ACTIONS(3143), - [anon_sym_do] = ACTIONS(3143), - [anon_sym_try] = ACTIONS(3143), - [anon_sym_break] = ACTIONS(3143), - [anon_sym_continue] = ACTIONS(3143), - [anon_sym_debugger] = ACTIONS(3143), - [anon_sym_return] = ACTIONS(3143), - [anon_sym_throw] = ACTIONS(3143), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_case] = ACTIONS(3143), - [anon_sym_finally] = ACTIONS(3125), - [anon_sym_yield] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_LTtemplate_GT] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3143), - [anon_sym_SQUOTE] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3143), - [anon_sym_async] = ACTIONS(3143), - [anon_sym_function] = ACTIONS(3143), - [anon_sym_new] = ACTIONS(3143), - [anon_sym_using] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3143), - [anon_sym_TILDE] = ACTIONS(3143), - [anon_sym_void] = ACTIONS(3143), - [anon_sym_delete] = ACTIONS(3143), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3143), - [sym_private_property_identifier] = ACTIONS(3143), - [sym_this] = ACTIONS(3143), - [sym_super] = ACTIONS(3143), - [sym_true] = ACTIONS(3143), - [sym_false] = ACTIONS(3143), - [sym_null] = ACTIONS(3143), - [sym_undefined] = ACTIONS(3143), - [anon_sym_AT] = ACTIONS(3143), - [anon_sym_static] = ACTIONS(3143), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3143), - [anon_sym_set] = ACTIONS(3143), - [anon_sym_declare] = ACTIONS(3143), - [anon_sym_public] = ACTIONS(3143), - [anon_sym_private] = ACTIONS(3143), - [anon_sym_protected] = ACTIONS(3143), - [anon_sym_override] = ACTIONS(3143), - [anon_sym_module] = ACTIONS(3143), - [anon_sym_any] = ACTIONS(3143), - [anon_sym_number] = ACTIONS(3143), - [anon_sym_boolean] = ACTIONS(3143), - [anon_sym_string] = ACTIONS(3143), - [anon_sym_symbol] = ACTIONS(3143), - [anon_sym_object] = ACTIONS(3143), - [anon_sym_abstract] = ACTIONS(3143), - [anon_sym_interface] = ACTIONS(3143), - [anon_sym_enum] = ACTIONS(3143), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(3177), [sym_html_comment] = ACTIONS(5), }, [989] = { + [sym_finally_clause] = STATE(1479), [sym_comment] = STATE(989), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_catch] = ACTIONS(2190), - [anon_sym_finally] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), + [sym_identifier] = ACTIONS(3145), + [anon_sym_export] = ACTIONS(3145), + [anon_sym_default] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_namespace] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_RBRACE] = ACTIONS(3145), + [anon_sym_typeof] = ACTIONS(3145), + [anon_sym_import] = ACTIONS(3145), + [anon_sym_with] = ACTIONS(3145), + [anon_sym_var] = ACTIONS(3145), + [anon_sym_let] = ACTIONS(3145), + [anon_sym_const] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_switch] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_await] = ACTIONS(3145), + [anon_sym_while] = ACTIONS(3145), + [anon_sym_do] = ACTIONS(3145), + [anon_sym_try] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_debugger] = ACTIONS(3145), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_throw] = ACTIONS(3145), + [anon_sym_SEMI] = ACTIONS(3145), + [anon_sym_case] = ACTIONS(3145), + [anon_sym_finally] = ACTIONS(3133), + [anon_sym_yield] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3145), + [anon_sym_LTtemplate_GT] = ACTIONS(3145), + [anon_sym_DQUOTE] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_class] = ACTIONS(3145), + [anon_sym_async] = ACTIONS(3145), + [anon_sym_function] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3145), + [anon_sym_using] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_SLASH] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_void] = ACTIONS(3145), + [anon_sym_delete] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3145), + [anon_sym_DASH_DASH] = ACTIONS(3145), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3145), + [sym_number] = ACTIONS(3145), + [sym_private_property_identifier] = ACTIONS(3145), + [sym_this] = ACTIONS(3145), + [sym_super] = ACTIONS(3145), + [sym_true] = ACTIONS(3145), + [sym_false] = ACTIONS(3145), + [sym_null] = ACTIONS(3145), + [sym_undefined] = ACTIONS(3145), + [anon_sym_AT] = ACTIONS(3145), + [anon_sym_static] = ACTIONS(3145), + [anon_sym_readonly] = ACTIONS(3145), + [anon_sym_get] = ACTIONS(3145), + [anon_sym_set] = ACTIONS(3145), + [anon_sym_declare] = ACTIONS(3145), + [anon_sym_public] = ACTIONS(3145), + [anon_sym_private] = ACTIONS(3145), + [anon_sym_protected] = ACTIONS(3145), + [anon_sym_override] = ACTIONS(3145), + [anon_sym_module] = ACTIONS(3145), + [anon_sym_any] = ACTIONS(3145), + [anon_sym_number] = ACTIONS(3145), + [anon_sym_boolean] = ACTIONS(3145), + [anon_sym_string] = ACTIONS(3145), + [anon_sym_symbol] = ACTIONS(3145), + [anon_sym_object] = ACTIONS(3145), + [anon_sym_abstract] = ACTIONS(3145), + [anon_sym_interface] = ACTIONS(3145), + [anon_sym_enum] = ACTIONS(3145), [sym_html_comment] = ACTIONS(5), }, [990] = { + [sym_statement_block] = STATE(1345), [sym_comment] = STATE(990), - [sym_identifier] = ACTIONS(3185), - [anon_sym_export] = ACTIONS(3185), - [anon_sym_default] = ACTIONS(3185), - [anon_sym_type] = ACTIONS(3185), - [anon_sym_namespace] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_RBRACE] = ACTIONS(3185), - [anon_sym_typeof] = ACTIONS(3185), - [anon_sym_import] = ACTIONS(3185), - [anon_sym_with] = ACTIONS(3185), - [anon_sym_var] = ACTIONS(3185), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_const] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_switch] = ACTIONS(3185), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_await] = ACTIONS(3185), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_do] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_break] = ACTIONS(3185), - [anon_sym_continue] = ACTIONS(3185), - [anon_sym_debugger] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_throw] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym_case] = ACTIONS(3185), - [anon_sym_finally] = ACTIONS(3185), - [anon_sym_yield] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_LTtemplate_GT] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [anon_sym_SQUOTE] = ACTIONS(3185), - [anon_sym_class] = ACTIONS(3185), - [anon_sym_async] = ACTIONS(3185), - [anon_sym_function] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_using] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_void] = ACTIONS(3185), - [anon_sym_delete] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3185), - [sym_number] = ACTIONS(3185), - [sym_private_property_identifier] = ACTIONS(3185), - [sym_this] = ACTIONS(3185), - [sym_super] = ACTIONS(3185), - [sym_true] = ACTIONS(3185), - [sym_false] = ACTIONS(3185), - [sym_null] = ACTIONS(3185), - [sym_undefined] = ACTIONS(3185), - [anon_sym_AT] = ACTIONS(3185), - [anon_sym_static] = ACTIONS(3185), - [anon_sym_readonly] = ACTIONS(3185), - [anon_sym_get] = ACTIONS(3185), - [anon_sym_set] = ACTIONS(3185), - [anon_sym_declare] = ACTIONS(3185), - [anon_sym_public] = ACTIONS(3185), - [anon_sym_private] = ACTIONS(3185), - [anon_sym_protected] = ACTIONS(3185), - [anon_sym_override] = ACTIONS(3185), - [anon_sym_module] = ACTIONS(3185), - [anon_sym_any] = ACTIONS(3185), - [anon_sym_number] = ACTIONS(3185), - [anon_sym_boolean] = ACTIONS(3185), - [anon_sym_string] = ACTIONS(3185), - [anon_sym_symbol] = ACTIONS(3185), - [anon_sym_object] = ACTIONS(3185), - [anon_sym_abstract] = ACTIONS(3185), - [anon_sym_interface] = ACTIONS(3185), - [anon_sym_enum] = ACTIONS(3185), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_case] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(3179), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), [sym_html_comment] = ACTIONS(5), }, [991] = { + [sym_finally_clause] = STATE(1363), [sym_comment] = STATE(991), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_default] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_namespace] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2246), - [anon_sym_import] = ACTIONS(2246), - [anon_sym_with] = ACTIONS(2246), - [anon_sym_var] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_else] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_debugger] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_throw] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_case] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LTtemplate_GT] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_class] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2246), - [anon_sym_delete] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_private_property_identifier] = ACTIONS(2246), - [sym_this] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_undefined] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_readonly] = ACTIONS(2246), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_declare] = ACTIONS(2246), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_override] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_any] = ACTIONS(2246), - [anon_sym_number] = ACTIONS(2246), - [anon_sym_boolean] = ACTIONS(2246), - [anon_sym_string] = ACTIONS(2246), - [anon_sym_symbol] = ACTIONS(2246), - [anon_sym_object] = ACTIONS(2246), - [anon_sym_abstract] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), - [sym__automatic_semicolon] = ACTIONS(2248), + [ts_builtin_sym_end] = ACTIONS(3181), + [sym_identifier] = ACTIONS(3145), + [anon_sym_export] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_namespace] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_RBRACE] = ACTIONS(3145), + [anon_sym_typeof] = ACTIONS(3145), + [anon_sym_import] = ACTIONS(3145), + [anon_sym_with] = ACTIONS(3145), + [anon_sym_var] = ACTIONS(3145), + [anon_sym_let] = ACTIONS(3145), + [anon_sym_const] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_else] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_switch] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_await] = ACTIONS(3145), + [anon_sym_while] = ACTIONS(3145), + [anon_sym_do] = ACTIONS(3145), + [anon_sym_try] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_debugger] = ACTIONS(3145), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_throw] = ACTIONS(3145), + [anon_sym_SEMI] = ACTIONS(3145), + [anon_sym_finally] = ACTIONS(3129), + [anon_sym_yield] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3145), + [anon_sym_LTtemplate_GT] = ACTIONS(3145), + [anon_sym_DQUOTE] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_class] = ACTIONS(3145), + [anon_sym_async] = ACTIONS(3145), + [anon_sym_function] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3145), + [anon_sym_using] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_SLASH] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_void] = ACTIONS(3145), + [anon_sym_delete] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3145), + [anon_sym_DASH_DASH] = ACTIONS(3145), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3145), + [sym_number] = ACTIONS(3145), + [sym_private_property_identifier] = ACTIONS(3145), + [sym_this] = ACTIONS(3145), + [sym_super] = ACTIONS(3145), + [sym_true] = ACTIONS(3145), + [sym_false] = ACTIONS(3145), + [sym_null] = ACTIONS(3145), + [sym_undefined] = ACTIONS(3145), + [anon_sym_AT] = ACTIONS(3145), + [anon_sym_static] = ACTIONS(3145), + [anon_sym_readonly] = ACTIONS(3145), + [anon_sym_get] = ACTIONS(3145), + [anon_sym_set] = ACTIONS(3145), + [anon_sym_declare] = ACTIONS(3145), + [anon_sym_public] = ACTIONS(3145), + [anon_sym_private] = ACTIONS(3145), + [anon_sym_protected] = ACTIONS(3145), + [anon_sym_override] = ACTIONS(3145), + [anon_sym_module] = ACTIONS(3145), + [anon_sym_any] = ACTIONS(3145), + [anon_sym_number] = ACTIONS(3145), + [anon_sym_boolean] = ACTIONS(3145), + [anon_sym_string] = ACTIONS(3145), + [anon_sym_symbol] = ACTIONS(3145), + [anon_sym_object] = ACTIONS(3145), + [anon_sym_abstract] = ACTIONS(3145), + [anon_sym_interface] = ACTIONS(3145), + [anon_sym_enum] = ACTIONS(3145), [sym_html_comment] = ACTIONS(5), }, [992] = { - [sym_statement_block] = STATE(1293), [sym_comment] = STATE(992), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(3189), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), + [sym_identifier] = ACTIONS(3183), + [anon_sym_export] = ACTIONS(3183), + [anon_sym_default] = ACTIONS(3183), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_namespace] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_RBRACE] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(3183), + [anon_sym_import] = ACTIONS(3183), + [anon_sym_with] = ACTIONS(3183), + [anon_sym_var] = ACTIONS(3183), + [anon_sym_let] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_else] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_switch] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym_await] = ACTIONS(3183), + [anon_sym_while] = ACTIONS(3183), + [anon_sym_do] = ACTIONS(3183), + [anon_sym_try] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_debugger] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym_case] = ACTIONS(3183), + [anon_sym_finally] = ACTIONS(3183), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_LTtemplate_GT] = ACTIONS(3183), + [anon_sym_DQUOTE] = ACTIONS(3183), + [anon_sym_SQUOTE] = ACTIONS(3183), + [anon_sym_class] = ACTIONS(3183), + [anon_sym_async] = ACTIONS(3183), + [anon_sym_function] = ACTIONS(3183), + [anon_sym_new] = ACTIONS(3183), + [anon_sym_using] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_SLASH] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_void] = ACTIONS(3183), + [anon_sym_delete] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3183), + [sym_number] = ACTIONS(3183), + [sym_private_property_identifier] = ACTIONS(3183), + [sym_this] = ACTIONS(3183), + [sym_super] = ACTIONS(3183), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_null] = ACTIONS(3183), + [sym_undefined] = ACTIONS(3183), + [anon_sym_AT] = ACTIONS(3183), + [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_abstract] = ACTIONS(3183), + [anon_sym_interface] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), [sym_html_comment] = ACTIONS(5), }, [993] = { [sym_comment] = STATE(993), - [sym_identifier] = ACTIONS(2262), - [anon_sym_export] = ACTIONS(2262), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_type] = ACTIONS(2262), - [anon_sym_namespace] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_import] = ACTIONS(2262), - [anon_sym_with] = ACTIONS(2262), - [anon_sym_var] = ACTIONS(2262), - [anon_sym_let] = ACTIONS(2262), - [anon_sym_const] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_else] = ACTIONS(2262), - [anon_sym_if] = ACTIONS(2262), - [anon_sym_switch] = ACTIONS(2262), - [anon_sym_for] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_await] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2262), - [anon_sym_do] = ACTIONS(2262), - [anon_sym_try] = ACTIONS(2262), - [anon_sym_break] = ACTIONS(2262), - [anon_sym_continue] = ACTIONS(2262), - [anon_sym_debugger] = ACTIONS(2262), - [anon_sym_return] = ACTIONS(2262), - [anon_sym_throw] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_case] = ACTIONS(2262), - [anon_sym_yield] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_LTtemplate_GT] = ACTIONS(2262), - [anon_sym_DQUOTE] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(2262), - [anon_sym_class] = ACTIONS(2262), - [anon_sym_async] = ACTIONS(2262), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_new] = ACTIONS(2262), - [anon_sym_using] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_SLASH] = ACTIONS(2262), - [anon_sym_LT] = ACTIONS(2262), - [anon_sym_TILDE] = ACTIONS(2262), - [anon_sym_void] = ACTIONS(2262), - [anon_sym_delete] = ACTIONS(2262), - [anon_sym_PLUS_PLUS] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(2262), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2262), - [sym_number] = ACTIONS(2262), - [sym_private_property_identifier] = ACTIONS(2262), - [sym_this] = ACTIONS(2262), - [sym_super] = ACTIONS(2262), - [sym_true] = ACTIONS(2262), - [sym_false] = ACTIONS(2262), - [sym_null] = ACTIONS(2262), - [sym_undefined] = ACTIONS(2262), - [anon_sym_AT] = ACTIONS(2262), - [anon_sym_static] = ACTIONS(2262), - [anon_sym_readonly] = ACTIONS(2262), - [anon_sym_get] = ACTIONS(2262), - [anon_sym_set] = ACTIONS(2262), - [anon_sym_declare] = ACTIONS(2262), - [anon_sym_public] = ACTIONS(2262), - [anon_sym_private] = ACTIONS(2262), - [anon_sym_protected] = ACTIONS(2262), - [anon_sym_override] = ACTIONS(2262), - [anon_sym_module] = ACTIONS(2262), - [anon_sym_any] = ACTIONS(2262), - [anon_sym_number] = ACTIONS(2262), - [anon_sym_boolean] = ACTIONS(2262), - [anon_sym_string] = ACTIONS(2262), - [anon_sym_symbol] = ACTIONS(2262), - [anon_sym_object] = ACTIONS(2262), - [anon_sym_abstract] = ACTIONS(2262), - [anon_sym_interface] = ACTIONS(2262), - [anon_sym_enum] = ACTIONS(2262), - [sym__automatic_semicolon] = ACTIONS(2264), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_catch] = ACTIONS(2142), + [anon_sym_finally] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(3185), [sym_html_comment] = ACTIONS(5), }, [994] = { - [sym_statement_block] = STATE(1293), + [sym_else_clause] = STATE(1471), [sym_comment] = STATE(994), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), + [sym_identifier] = ACTIONS(3187), + [anon_sym_export] = ACTIONS(3187), + [anon_sym_default] = ACTIONS(3187), + [anon_sym_type] = ACTIONS(3187), + [anon_sym_namespace] = ACTIONS(3187), [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(3191), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), + [anon_sym_RBRACE] = ACTIONS(3187), + [anon_sym_typeof] = ACTIONS(3187), + [anon_sym_import] = ACTIONS(3187), + [anon_sym_with] = ACTIONS(3187), + [anon_sym_var] = ACTIONS(3187), + [anon_sym_let] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_else] = ACTIONS(3189), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3187), + [anon_sym_await] = ACTIONS(3187), + [anon_sym_while] = ACTIONS(3187), + [anon_sym_do] = ACTIONS(3187), + [anon_sym_try] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_debugger] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_throw] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3187), + [anon_sym_case] = ACTIONS(3187), + [anon_sym_yield] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_LTtemplate_GT] = ACTIONS(3187), + [anon_sym_DQUOTE] = ACTIONS(3187), + [anon_sym_SQUOTE] = ACTIONS(3187), + [anon_sym_class] = ACTIONS(3187), + [anon_sym_async] = ACTIONS(3187), + [anon_sym_function] = ACTIONS(3187), + [anon_sym_new] = ACTIONS(3187), + [anon_sym_using] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_SLASH] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_void] = ACTIONS(3187), + [anon_sym_delete] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3187), + [sym_number] = ACTIONS(3187), + [sym_private_property_identifier] = ACTIONS(3187), + [sym_this] = ACTIONS(3187), + [sym_super] = ACTIONS(3187), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [sym_null] = ACTIONS(3187), + [sym_undefined] = ACTIONS(3187), + [anon_sym_AT] = ACTIONS(3187), + [anon_sym_static] = ACTIONS(3187), + [anon_sym_readonly] = ACTIONS(3187), + [anon_sym_get] = ACTIONS(3187), + [anon_sym_set] = ACTIONS(3187), + [anon_sym_declare] = ACTIONS(3187), + [anon_sym_public] = ACTIONS(3187), + [anon_sym_private] = ACTIONS(3187), + [anon_sym_protected] = ACTIONS(3187), + [anon_sym_override] = ACTIONS(3187), + [anon_sym_module] = ACTIONS(3187), + [anon_sym_any] = ACTIONS(3187), + [anon_sym_number] = ACTIONS(3187), + [anon_sym_boolean] = ACTIONS(3187), + [anon_sym_string] = ACTIONS(3187), + [anon_sym_symbol] = ACTIONS(3187), + [anon_sym_object] = ACTIONS(3187), + [anon_sym_abstract] = ACTIONS(3187), + [anon_sym_interface] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), [sym_html_comment] = ACTIONS(5), }, [995] = { [sym_comment] = STATE(995), - [sym_identifier] = ACTIONS(2238), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_default] = ACTIONS(2238), - [anon_sym_type] = ACTIONS(2238), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_typeof] = ACTIONS(2238), - [anon_sym_import] = ACTIONS(2238), - [anon_sym_with] = ACTIONS(2238), - [anon_sym_var] = ACTIONS(2238), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_else] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_await] = ACTIONS(2238), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_debugger] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_throw] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_case] = ACTIONS(2238), - [anon_sym_yield] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LTtemplate_GT] = ACTIONS(2238), - [anon_sym_DQUOTE] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2238), - [anon_sym_class] = ACTIONS(2238), - [anon_sym_async] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_using] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_void] = ACTIONS(2238), - [anon_sym_delete] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2238), - [sym_number] = ACTIONS(2238), - [sym_private_property_identifier] = ACTIONS(2238), - [sym_this] = ACTIONS(2238), - [sym_super] = ACTIONS(2238), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_null] = ACTIONS(2238), - [sym_undefined] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_readonly] = ACTIONS(2238), - [anon_sym_get] = ACTIONS(2238), - [anon_sym_set] = ACTIONS(2238), - [anon_sym_declare] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_protected] = ACTIONS(2238), - [anon_sym_override] = ACTIONS(2238), - [anon_sym_module] = ACTIONS(2238), - [anon_sym_any] = ACTIONS(2238), - [anon_sym_number] = ACTIONS(2238), - [anon_sym_boolean] = ACTIONS(2238), - [anon_sym_string] = ACTIONS(2238), - [anon_sym_symbol] = ACTIONS(2238), - [anon_sym_object] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_interface] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2242), + [sym_identifier] = ACTIONS(3191), + [anon_sym_export] = ACTIONS(3191), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_type] = ACTIONS(3191), + [anon_sym_namespace] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_RBRACE] = ACTIONS(3191), + [anon_sym_typeof] = ACTIONS(3191), + [anon_sym_import] = ACTIONS(3191), + [anon_sym_with] = ACTIONS(3191), + [anon_sym_var] = ACTIONS(3191), + [anon_sym_let] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_else] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_switch] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym_await] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_do] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_debugger] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_throw] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3193), + [anon_sym_case] = ACTIONS(3191), + [anon_sym_yield] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_LTtemplate_GT] = ACTIONS(3191), + [anon_sym_DQUOTE] = ACTIONS(3191), + [anon_sym_SQUOTE] = ACTIONS(3191), + [anon_sym_class] = ACTIONS(3191), + [anon_sym_async] = ACTIONS(3191), + [anon_sym_function] = ACTIONS(3191), + [anon_sym_new] = ACTIONS(3191), + [anon_sym_using] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_void] = ACTIONS(3191), + [anon_sym_delete] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3191), + [sym_number] = ACTIONS(3191), + [sym_private_property_identifier] = ACTIONS(3191), + [sym_this] = ACTIONS(3191), + [sym_super] = ACTIONS(3191), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_null] = ACTIONS(3191), + [sym_undefined] = ACTIONS(3191), + [anon_sym_AT] = ACTIONS(3191), + [anon_sym_static] = ACTIONS(3191), + [anon_sym_readonly] = ACTIONS(3191), + [anon_sym_get] = ACTIONS(3191), + [anon_sym_set] = ACTIONS(3191), + [anon_sym_declare] = ACTIONS(3191), + [anon_sym_public] = ACTIONS(3191), + [anon_sym_private] = ACTIONS(3191), + [anon_sym_protected] = ACTIONS(3191), + [anon_sym_override] = ACTIONS(3191), + [anon_sym_module] = ACTIONS(3191), + [anon_sym_any] = ACTIONS(3191), + [anon_sym_number] = ACTIONS(3191), + [anon_sym_boolean] = ACTIONS(3191), + [anon_sym_string] = ACTIONS(3191), + [anon_sym_symbol] = ACTIONS(3191), + [anon_sym_object] = ACTIONS(3191), + [anon_sym_abstract] = ACTIONS(3191), + [anon_sym_interface] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), + [sym__automatic_semicolon] = ACTIONS(3195), [sym_html_comment] = ACTIONS(5), }, [996] = { [sym_comment] = STATE(996), - [sym_identifier] = ACTIONS(3193), - [anon_sym_export] = ACTIONS(3193), - [anon_sym_default] = ACTIONS(3193), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_namespace] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_RBRACE] = ACTIONS(3193), - [anon_sym_typeof] = ACTIONS(3193), - [anon_sym_import] = ACTIONS(3193), - [anon_sym_with] = ACTIONS(3193), - [anon_sym_var] = ACTIONS(3193), - [anon_sym_let] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_switch] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_await] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_do] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_debugger] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym_case] = ACTIONS(3193), - [anon_sym_finally] = ACTIONS(3193), - [anon_sym_yield] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_LTtemplate_GT] = ACTIONS(3193), - [anon_sym_DQUOTE] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3193), - [anon_sym_class] = ACTIONS(3193), - [anon_sym_async] = ACTIONS(3193), - [anon_sym_function] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(3193), - [anon_sym_using] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_SLASH] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_void] = ACTIONS(3193), - [anon_sym_delete] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3193), - [sym_number] = ACTIONS(3193), - [sym_private_property_identifier] = ACTIONS(3193), - [sym_this] = ACTIONS(3193), - [sym_super] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_null] = ACTIONS(3193), - [sym_undefined] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_static] = ACTIONS(3193), - [anon_sym_readonly] = ACTIONS(3193), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_declare] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_module] = ACTIONS(3193), - [anon_sym_any] = ACTIONS(3193), - [anon_sym_number] = ACTIONS(3193), - [anon_sym_boolean] = ACTIONS(3193), - [anon_sym_string] = ACTIONS(3193), - [anon_sym_symbol] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_interface] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_default] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_case] = ACTIONS(2142), + [anon_sym_finally] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(3197), [sym_html_comment] = ACTIONS(5), }, [997] = { [sym_comment] = STATE(997), - [sym_identifier] = ACTIONS(2182), - [anon_sym_export] = ACTIONS(2182), - [anon_sym_default] = ACTIONS(2182), - [anon_sym_type] = ACTIONS(2182), - [anon_sym_namespace] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_typeof] = ACTIONS(2182), - [anon_sym_import] = ACTIONS(2182), - [anon_sym_with] = ACTIONS(2182), - [anon_sym_var] = ACTIONS(2182), - [anon_sym_let] = ACTIONS(2182), - [anon_sym_const] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_else] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_await] = ACTIONS(2182), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_try] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_debugger] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_throw] = ACTIONS(2182), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_case] = ACTIONS(2182), - [anon_sym_yield] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LTtemplate_GT] = ACTIONS(2182), - [anon_sym_DQUOTE] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2182), - [anon_sym_class] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(2182), - [anon_sym_function] = ACTIONS(2182), - [anon_sym_new] = ACTIONS(2182), - [anon_sym_using] = ACTIONS(2182), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_TILDE] = ACTIONS(2182), - [anon_sym_void] = ACTIONS(2182), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_PLUS_PLUS] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2182), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_catch] = ACTIONS(2160), + [anon_sym_finally] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2182), - [sym_number] = ACTIONS(2182), - [sym_private_property_identifier] = ACTIONS(2182), - [sym_this] = ACTIONS(2182), - [sym_super] = ACTIONS(2182), - [sym_true] = ACTIONS(2182), - [sym_false] = ACTIONS(2182), - [sym_null] = ACTIONS(2182), - [sym_undefined] = ACTIONS(2182), - [anon_sym_AT] = ACTIONS(2182), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_readonly] = ACTIONS(2182), - [anon_sym_get] = ACTIONS(2182), - [anon_sym_set] = ACTIONS(2182), - [anon_sym_declare] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_protected] = ACTIONS(2182), - [anon_sym_override] = ACTIONS(2182), - [anon_sym_module] = ACTIONS(2182), - [anon_sym_any] = ACTIONS(2182), - [anon_sym_number] = ACTIONS(2182), - [anon_sym_boolean] = ACTIONS(2182), - [anon_sym_string] = ACTIONS(2182), - [anon_sym_symbol] = ACTIONS(2182), - [anon_sym_object] = ACTIONS(2182), - [anon_sym_abstract] = ACTIONS(2182), - [anon_sym_interface] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), - [sym__automatic_semicolon] = ACTIONS(2186), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(3199), [sym_html_comment] = ACTIONS(5), }, [998] = { [sym_comment] = STATE(998), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_default] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_namespace] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2246), - [anon_sym_import] = ACTIONS(2246), - [anon_sym_with] = ACTIONS(2246), - [anon_sym_var] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_debugger] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_throw] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_case] = ACTIONS(2246), - [anon_sym_catch] = ACTIONS(2246), - [anon_sym_finally] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LTtemplate_GT] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_class] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2246), - [anon_sym_delete] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_private_property_identifier] = ACTIONS(2246), - [sym_this] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_undefined] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_readonly] = ACTIONS(2246), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_declare] = ACTIONS(2246), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_override] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_any] = ACTIONS(2246), - [anon_sym_number] = ACTIONS(2246), - [anon_sym_boolean] = ACTIONS(2246), - [anon_sym_string] = ACTIONS(2246), - [anon_sym_symbol] = ACTIONS(2246), - [anon_sym_object] = ACTIONS(2246), - [anon_sym_abstract] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), - [sym_html_comment] = ACTIONS(5), - }, - [999] = { - [sym_comment] = STATE(999), - [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(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_typeof] = ACTIONS(2310), - [anon_sym_import] = ACTIONS(2310), - [anon_sym_with] = ACTIONS(2310), - [anon_sym_var] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2310), - [anon_sym_const] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2310), - [anon_sym_else] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2310), - [anon_sym_switch] = ACTIONS(2310), - [anon_sym_for] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_await] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_do] = ACTIONS(2310), - [anon_sym_try] = 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(2310), - [anon_sym_case] = ACTIONS(2310), - [anon_sym_yield] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LTtemplate_GT] = ACTIONS(2310), - [anon_sym_DQUOTE] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2310), - [anon_sym_class] = ACTIONS(2310), - [anon_sym_async] = ACTIONS(2310), - [anon_sym_function] = ACTIONS(2310), - [anon_sym_new] = ACTIONS(2310), - [anon_sym_using] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_SLASH] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_TILDE] = ACTIONS(2310), - [anon_sym_void] = ACTIONS(2310), - [anon_sym_delete] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2310), - [sym_number] = ACTIONS(2310), - [sym_private_property_identifier] = ACTIONS(2310), - [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(2310), - [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_abstract] = ACTIONS(2310), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2310), - [sym__automatic_semicolon] = ACTIONS(2314), - [sym_html_comment] = ACTIONS(5), - }, - [1000] = { - [sym_comment] = STATE(1000), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_finally] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(3195), - [sym_html_comment] = ACTIONS(5), - }, - [1001] = { - [sym_statement_block] = STATE(1369), - [sym_comment] = STATE(1001), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(3199), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym_html_comment] = ACTIONS(5), - }, - [1002] = { - [sym_statement_block] = STATE(1369), - [sym_comment] = STATE(1002), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(3201), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym_html_comment] = ACTIONS(5), - }, - [1003] = { - [sym_comment] = STATE(1003), - [sym_identifier] = ACTIONS(2296), - [anon_sym_export] = ACTIONS(2296), - [anon_sym_default] = ACTIONS(2296), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_namespace] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2296), - [anon_sym_RBRACE] = ACTIONS(2296), - [anon_sym_typeof] = ACTIONS(2296), - [anon_sym_import] = ACTIONS(2296), - [anon_sym_with] = ACTIONS(2296), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_const] = ACTIONS(2296), - [anon_sym_BANG] = ACTIONS(2296), - [anon_sym_else] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_switch] = ACTIONS(2296), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2296), - [anon_sym_await] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(2296), - [anon_sym_try] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_debugger] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_throw] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2296), - [anon_sym_case] = ACTIONS(2296), - [anon_sym_yield] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2296), - [anon_sym_LTtemplate_GT] = ACTIONS(2296), - [anon_sym_DQUOTE] = ACTIONS(2296), - [anon_sym_SQUOTE] = ACTIONS(2296), - [anon_sym_class] = ACTIONS(2296), - [anon_sym_async] = ACTIONS(2296), - [anon_sym_function] = ACTIONS(2296), - [anon_sym_new] = ACTIONS(2296), - [anon_sym_using] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_TILDE] = ACTIONS(2296), - [anon_sym_void] = ACTIONS(2296), - [anon_sym_delete] = ACTIONS(2296), - [anon_sym_PLUS_PLUS] = ACTIONS(2296), - [anon_sym_DASH_DASH] = ACTIONS(2296), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2296), - [sym_number] = ACTIONS(2296), - [sym_private_property_identifier] = ACTIONS(2296), - [sym_this] = ACTIONS(2296), - [sym_super] = ACTIONS(2296), - [sym_true] = ACTIONS(2296), - [sym_false] = ACTIONS(2296), - [sym_null] = ACTIONS(2296), - [sym_undefined] = ACTIONS(2296), - [anon_sym_AT] = ACTIONS(2296), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_readonly] = ACTIONS(2296), - [anon_sym_get] = ACTIONS(2296), - [anon_sym_set] = ACTIONS(2296), - [anon_sym_declare] = ACTIONS(2296), - [anon_sym_public] = ACTIONS(2296), - [anon_sym_private] = ACTIONS(2296), - [anon_sym_protected] = ACTIONS(2296), - [anon_sym_override] = ACTIONS(2296), - [anon_sym_module] = ACTIONS(2296), - [anon_sym_any] = ACTIONS(2296), - [anon_sym_number] = ACTIONS(2296), - [anon_sym_boolean] = ACTIONS(2296), - [anon_sym_string] = ACTIONS(2296), - [anon_sym_symbol] = ACTIONS(2296), - [anon_sym_object] = ACTIONS(2296), - [anon_sym_abstract] = ACTIONS(2296), - [anon_sym_interface] = ACTIONS(2296), - [anon_sym_enum] = ACTIONS(2296), - [sym__automatic_semicolon] = ACTIONS(2298), - [sym_html_comment] = ACTIONS(5), - }, - [1004] = { - [sym_comment] = STATE(1004), [sym_identifier] = ACTIONS(2152), [anon_sym_export] = ACTIONS(2152), [anon_sym_default] = ACTIONS(2152), @@ -144713,1264 +143927,1768 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(2156), [sym_html_comment] = ACTIONS(5), }, - [1005] = { - [sym_comment] = STATE(1005), - [sym_identifier] = ACTIONS(3203), - [anon_sym_export] = ACTIONS(3203), - [anon_sym_default] = ACTIONS(3203), - [anon_sym_type] = ACTIONS(3203), - [anon_sym_namespace] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_typeof] = ACTIONS(3203), - [anon_sym_import] = ACTIONS(3203), - [anon_sym_with] = ACTIONS(3203), - [anon_sym_var] = ACTIONS(3203), - [anon_sym_let] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_else] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_switch] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_await] = ACTIONS(3203), - [anon_sym_while] = ACTIONS(3203), - [anon_sym_do] = ACTIONS(3203), - [anon_sym_try] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_debugger] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_throw] = ACTIONS(3203), - [anon_sym_SEMI] = ACTIONS(3205), - [anon_sym_case] = ACTIONS(3203), - [anon_sym_yield] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_LTtemplate_GT] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_class] = ACTIONS(3203), - [anon_sym_async] = ACTIONS(3203), - [anon_sym_function] = ACTIONS(3203), - [anon_sym_new] = ACTIONS(3203), - [anon_sym_using] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_void] = ACTIONS(3203), - [anon_sym_delete] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3203), - [sym_number] = ACTIONS(3203), - [sym_private_property_identifier] = ACTIONS(3203), - [sym_this] = ACTIONS(3203), - [sym_super] = ACTIONS(3203), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [sym_null] = ACTIONS(3203), - [sym_undefined] = ACTIONS(3203), - [anon_sym_AT] = ACTIONS(3203), - [anon_sym_static] = ACTIONS(3203), - [anon_sym_readonly] = ACTIONS(3203), - [anon_sym_get] = ACTIONS(3203), - [anon_sym_set] = ACTIONS(3203), - [anon_sym_declare] = ACTIONS(3203), - [anon_sym_public] = ACTIONS(3203), - [anon_sym_private] = ACTIONS(3203), - [anon_sym_protected] = ACTIONS(3203), - [anon_sym_override] = ACTIONS(3203), - [anon_sym_module] = ACTIONS(3203), - [anon_sym_any] = ACTIONS(3203), - [anon_sym_number] = ACTIONS(3203), - [anon_sym_boolean] = ACTIONS(3203), - [anon_sym_string] = ACTIONS(3203), - [anon_sym_symbol] = ACTIONS(3203), - [anon_sym_object] = ACTIONS(3203), - [anon_sym_abstract] = ACTIONS(3203), - [anon_sym_interface] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [sym__automatic_semicolon] = ACTIONS(3207), + [999] = { + [sym_comment] = STATE(999), + [sym_identifier] = ACTIONS(2242), + [anon_sym_export] = ACTIONS(2242), + [anon_sym_default] = ACTIONS(2242), + [anon_sym_type] = ACTIONS(2242), + [anon_sym_namespace] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_typeof] = ACTIONS(2242), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_with] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2242), + [anon_sym_let] = ACTIONS(2242), + [anon_sym_const] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_else] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_switch] = ACTIONS(2242), + [anon_sym_for] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_await] = ACTIONS(2242), + [anon_sym_while] = ACTIONS(2242), + [anon_sym_do] = ACTIONS(2242), + [anon_sym_try] = ACTIONS(2242), + [anon_sym_break] = ACTIONS(2242), + [anon_sym_continue] = ACTIONS(2242), + [anon_sym_debugger] = ACTIONS(2242), + [anon_sym_return] = ACTIONS(2242), + [anon_sym_throw] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_case] = ACTIONS(2242), + [anon_sym_yield] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_LTtemplate_GT] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_class] = ACTIONS(2242), + [anon_sym_async] = ACTIONS(2242), + [anon_sym_function] = ACTIONS(2242), + [anon_sym_new] = ACTIONS(2242), + [anon_sym_using] = ACTIONS(2242), + [anon_sym_PLUS] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2242), + [anon_sym_SLASH] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2242), + [anon_sym_TILDE] = ACTIONS(2242), + [anon_sym_void] = ACTIONS(2242), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2242), + [sym_number] = ACTIONS(2242), + [sym_private_property_identifier] = ACTIONS(2242), + [sym_this] = ACTIONS(2242), + [sym_super] = ACTIONS(2242), + [sym_true] = ACTIONS(2242), + [sym_false] = ACTIONS(2242), + [sym_null] = ACTIONS(2242), + [sym_undefined] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(2242), + [anon_sym_readonly] = ACTIONS(2242), + [anon_sym_get] = ACTIONS(2242), + [anon_sym_set] = ACTIONS(2242), + [anon_sym_declare] = ACTIONS(2242), + [anon_sym_public] = ACTIONS(2242), + [anon_sym_private] = ACTIONS(2242), + [anon_sym_protected] = ACTIONS(2242), + [anon_sym_override] = ACTIONS(2242), + [anon_sym_module] = ACTIONS(2242), + [anon_sym_any] = ACTIONS(2242), + [anon_sym_number] = ACTIONS(2242), + [anon_sym_boolean] = ACTIONS(2242), + [anon_sym_string] = ACTIONS(2242), + [anon_sym_symbol] = ACTIONS(2242), + [anon_sym_object] = ACTIONS(2242), + [anon_sym_abstract] = ACTIONS(2242), + [anon_sym_interface] = ACTIONS(2242), + [anon_sym_enum] = ACTIONS(2242), + [sym__automatic_semicolon] = ACTIONS(2246), [sym_html_comment] = ACTIONS(5), }, - [1006] = { - [sym_comment] = STATE(1006), - [sym_identifier] = ACTIONS(3209), - [anon_sym_export] = ACTIONS(3209), - [anon_sym_default] = ACTIONS(3209), - [anon_sym_type] = ACTIONS(3209), - [anon_sym_namespace] = ACTIONS(3209), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym_typeof] = ACTIONS(3209), - [anon_sym_import] = ACTIONS(3209), - [anon_sym_with] = ACTIONS(3209), - [anon_sym_var] = ACTIONS(3209), - [anon_sym_let] = ACTIONS(3209), - [anon_sym_const] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_else] = ACTIONS(3209), - [anon_sym_if] = ACTIONS(3209), - [anon_sym_switch] = ACTIONS(3209), - [anon_sym_for] = ACTIONS(3209), - [anon_sym_LPAREN] = ACTIONS(3209), - [anon_sym_await] = ACTIONS(3209), - [anon_sym_while] = ACTIONS(3209), - [anon_sym_do] = ACTIONS(3209), - [anon_sym_try] = ACTIONS(3209), - [anon_sym_break] = ACTIONS(3209), - [anon_sym_continue] = ACTIONS(3209), - [anon_sym_debugger] = ACTIONS(3209), - [anon_sym_return] = ACTIONS(3209), - [anon_sym_throw] = ACTIONS(3209), - [anon_sym_SEMI] = ACTIONS(3209), - [anon_sym_case] = ACTIONS(3209), - [anon_sym_finally] = ACTIONS(3209), - [anon_sym_yield] = ACTIONS(3209), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_LTtemplate_GT] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3209), - [anon_sym_class] = ACTIONS(3209), - [anon_sym_async] = ACTIONS(3209), - [anon_sym_function] = ACTIONS(3209), - [anon_sym_new] = ACTIONS(3209), - [anon_sym_using] = ACTIONS(3209), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_void] = ACTIONS(3209), - [anon_sym_delete] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3209), - [sym_number] = ACTIONS(3209), - [sym_private_property_identifier] = ACTIONS(3209), - [sym_this] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_true] = ACTIONS(3209), - [sym_false] = ACTIONS(3209), - [sym_null] = ACTIONS(3209), - [sym_undefined] = ACTIONS(3209), - [anon_sym_AT] = ACTIONS(3209), - [anon_sym_static] = ACTIONS(3209), - [anon_sym_readonly] = ACTIONS(3209), - [anon_sym_get] = ACTIONS(3209), - [anon_sym_set] = ACTIONS(3209), - [anon_sym_declare] = ACTIONS(3209), - [anon_sym_public] = ACTIONS(3209), - [anon_sym_private] = ACTIONS(3209), - [anon_sym_protected] = ACTIONS(3209), - [anon_sym_override] = ACTIONS(3209), - [anon_sym_module] = ACTIONS(3209), - [anon_sym_any] = ACTIONS(3209), - [anon_sym_number] = ACTIONS(3209), - [anon_sym_boolean] = ACTIONS(3209), - [anon_sym_string] = ACTIONS(3209), - [anon_sym_symbol] = ACTIONS(3209), - [anon_sym_object] = ACTIONS(3209), - [anon_sym_abstract] = ACTIONS(3209), - [anon_sym_interface] = ACTIONS(3209), - [anon_sym_enum] = ACTIONS(3209), + [1000] = { + [sym_comment] = STATE(1000), + [sym_identifier] = ACTIONS(2308), + [anon_sym_export] = ACTIONS(2308), + [anon_sym_default] = ACTIONS(2308), + [anon_sym_type] = ACTIONS(2308), + [anon_sym_namespace] = ACTIONS(2308), + [anon_sym_LBRACE] = ACTIONS(2308), + [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_typeof] = ACTIONS(2308), + [anon_sym_import] = ACTIONS(2308), + [anon_sym_with] = ACTIONS(2308), + [anon_sym_var] = ACTIONS(2308), + [anon_sym_let] = ACTIONS(2308), + [anon_sym_const] = ACTIONS(2308), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_else] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_switch] = ACTIONS(2308), + [anon_sym_for] = ACTIONS(2308), + [anon_sym_LPAREN] = ACTIONS(2308), + [anon_sym_await] = ACTIONS(2308), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_do] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2308), + [anon_sym_break] = ACTIONS(2308), + [anon_sym_continue] = ACTIONS(2308), + [anon_sym_debugger] = ACTIONS(2308), + [anon_sym_return] = ACTIONS(2308), + [anon_sym_throw] = ACTIONS(2308), + [anon_sym_SEMI] = ACTIONS(2308), + [anon_sym_case] = ACTIONS(2308), + [anon_sym_yield] = ACTIONS(2308), + [anon_sym_LBRACK] = ACTIONS(2308), + [anon_sym_LTtemplate_GT] = ACTIONS(2308), + [anon_sym_DQUOTE] = ACTIONS(2308), + [anon_sym_SQUOTE] = ACTIONS(2308), + [anon_sym_class] = ACTIONS(2308), + [anon_sym_async] = ACTIONS(2308), + [anon_sym_function] = ACTIONS(2308), + [anon_sym_new] = ACTIONS(2308), + [anon_sym_using] = ACTIONS(2308), + [anon_sym_PLUS] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2308), + [anon_sym_SLASH] = ACTIONS(2308), + [anon_sym_LT] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_void] = ACTIONS(2308), + [anon_sym_delete] = ACTIONS(2308), + [anon_sym_PLUS_PLUS] = ACTIONS(2308), + [anon_sym_DASH_DASH] = ACTIONS(2308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2308), + [sym_number] = ACTIONS(2308), + [sym_private_property_identifier] = ACTIONS(2308), + [sym_this] = ACTIONS(2308), + [sym_super] = ACTIONS(2308), + [sym_true] = ACTIONS(2308), + [sym_false] = ACTIONS(2308), + [sym_null] = ACTIONS(2308), + [sym_undefined] = ACTIONS(2308), + [anon_sym_AT] = ACTIONS(2308), + [anon_sym_static] = ACTIONS(2308), + [anon_sym_readonly] = ACTIONS(2308), + [anon_sym_get] = ACTIONS(2308), + [anon_sym_set] = ACTIONS(2308), + [anon_sym_declare] = ACTIONS(2308), + [anon_sym_public] = ACTIONS(2308), + [anon_sym_private] = ACTIONS(2308), + [anon_sym_protected] = ACTIONS(2308), + [anon_sym_override] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2308), + [anon_sym_any] = ACTIONS(2308), + [anon_sym_number] = ACTIONS(2308), + [anon_sym_boolean] = ACTIONS(2308), + [anon_sym_string] = ACTIONS(2308), + [anon_sym_symbol] = ACTIONS(2308), + [anon_sym_object] = ACTIONS(2308), + [anon_sym_abstract] = ACTIONS(2308), + [anon_sym_interface] = ACTIONS(2308), + [anon_sym_enum] = ACTIONS(2308), + [sym__automatic_semicolon] = ACTIONS(2312), [sym_html_comment] = ACTIONS(5), }, - [1007] = { - [sym_comment] = STATE(1007), - [sym_identifier] = ACTIONS(2204), - [anon_sym_export] = ACTIONS(2204), - [anon_sym_default] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_namespace] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_typeof] = ACTIONS(2204), - [anon_sym_import] = ACTIONS(2204), - [anon_sym_with] = ACTIONS(2204), - [anon_sym_var] = ACTIONS(2204), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_else] = ACTIONS(2204), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_switch] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_await] = ACTIONS(2204), - [anon_sym_while] = ACTIONS(2204), - [anon_sym_do] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_debugger] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_throw] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_case] = ACTIONS(2204), - [anon_sym_yield] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_LTtemplate_GT] = ACTIONS(2204), - [anon_sym_DOT] = ACTIONS(2204), - [anon_sym_DQUOTE] = ACTIONS(2204), - [anon_sym_SQUOTE] = ACTIONS(2204), - [anon_sym_class] = ACTIONS(2204), - [anon_sym_async] = ACTIONS(2204), - [anon_sym_function] = ACTIONS(2204), - [anon_sym_new] = ACTIONS(2204), - [anon_sym_using] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_void] = ACTIONS(2204), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2204), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2204), - [sym_number] = ACTIONS(2204), - [sym_private_property_identifier] = ACTIONS(2204), - [sym_this] = ACTIONS(2204), - [sym_super] = ACTIONS(2204), - [sym_true] = ACTIONS(2204), - [sym_false] = ACTIONS(2204), - [sym_null] = ACTIONS(2204), - [sym_undefined] = ACTIONS(2204), - [anon_sym_AT] = ACTIONS(2204), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_readonly] = ACTIONS(2204), - [anon_sym_get] = ACTIONS(2204), - [anon_sym_set] = ACTIONS(2204), - [anon_sym_declare] = ACTIONS(2204), - [anon_sym_public] = ACTIONS(2204), - [anon_sym_private] = ACTIONS(2204), - [anon_sym_protected] = ACTIONS(2204), - [anon_sym_override] = ACTIONS(2204), - [anon_sym_module] = ACTIONS(2204), - [anon_sym_any] = ACTIONS(2204), - [anon_sym_number] = ACTIONS(2204), - [anon_sym_boolean] = ACTIONS(2204), - [anon_sym_string] = ACTIONS(2204), - [anon_sym_symbol] = ACTIONS(2204), - [anon_sym_object] = ACTIONS(2204), - [anon_sym_abstract] = ACTIONS(2204), - [anon_sym_interface] = ACTIONS(2204), - [anon_sym_enum] = ACTIONS(2204), + [1001] = { + [sym_comment] = STATE(1001), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(3201), + [sym_html_comment] = ACTIONS(5), + }, + [1002] = { + [sym_comment] = STATE(1002), + [ts_builtin_sym_end] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_catch] = ACTIONS(2288), + [anon_sym_finally] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym_html_comment] = ACTIONS(5), + }, + [1003] = { + [sym_else_clause] = STATE(1072), + [sym_comment] = STATE(1003), + [sym_identifier] = ACTIONS(3187), + [anon_sym_export] = ACTIONS(3187), + [anon_sym_default] = ACTIONS(3187), + [anon_sym_type] = ACTIONS(3187), + [anon_sym_namespace] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_RBRACE] = ACTIONS(3187), + [anon_sym_typeof] = ACTIONS(3187), + [anon_sym_import] = ACTIONS(3187), + [anon_sym_with] = ACTIONS(3187), + [anon_sym_var] = ACTIONS(3187), + [anon_sym_let] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_else] = ACTIONS(3203), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3187), + [anon_sym_await] = ACTIONS(3187), + [anon_sym_while] = ACTIONS(3187), + [anon_sym_do] = ACTIONS(3187), + [anon_sym_try] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_debugger] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_throw] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3187), + [anon_sym_case] = ACTIONS(3187), + [anon_sym_yield] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_LTtemplate_GT] = ACTIONS(3187), + [anon_sym_DQUOTE] = ACTIONS(3187), + [anon_sym_SQUOTE] = ACTIONS(3187), + [anon_sym_class] = ACTIONS(3187), + [anon_sym_async] = ACTIONS(3187), + [anon_sym_function] = ACTIONS(3187), + [anon_sym_new] = ACTIONS(3187), + [anon_sym_using] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_SLASH] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_void] = ACTIONS(3187), + [anon_sym_delete] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3187), + [sym_number] = ACTIONS(3187), + [sym_private_property_identifier] = ACTIONS(3187), + [sym_this] = ACTIONS(3187), + [sym_super] = ACTIONS(3187), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [sym_null] = ACTIONS(3187), + [sym_undefined] = ACTIONS(3187), + [anon_sym_AT] = ACTIONS(3187), + [anon_sym_static] = ACTIONS(3187), + [anon_sym_readonly] = ACTIONS(3187), + [anon_sym_get] = ACTIONS(3187), + [anon_sym_set] = ACTIONS(3187), + [anon_sym_declare] = ACTIONS(3187), + [anon_sym_public] = ACTIONS(3187), + [anon_sym_private] = ACTIONS(3187), + [anon_sym_protected] = ACTIONS(3187), + [anon_sym_override] = ACTIONS(3187), + [anon_sym_module] = ACTIONS(3187), + [anon_sym_any] = ACTIONS(3187), + [anon_sym_number] = ACTIONS(3187), + [anon_sym_boolean] = ACTIONS(3187), + [anon_sym_string] = ACTIONS(3187), + [anon_sym_symbol] = ACTIONS(3187), + [anon_sym_object] = ACTIONS(3187), + [anon_sym_abstract] = ACTIONS(3187), + [anon_sym_interface] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), + [sym_html_comment] = ACTIONS(5), + }, + [1004] = { + [sym_comment] = STATE(1004), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2290), + [sym_html_comment] = ACTIONS(5), + }, + [1005] = { + [sym_comment] = STATE(1005), + [sym_identifier] = ACTIONS(2300), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_default] = ACTIONS(2300), + [anon_sym_type] = ACTIONS(2300), + [anon_sym_namespace] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2300), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2300), + [anon_sym_import] = ACTIONS(2300), + [anon_sym_with] = ACTIONS(2300), + [anon_sym_var] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(2300), + [anon_sym_else] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_switch] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_await] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_debugger] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_throw] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_case] = ACTIONS(2300), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2300), + [anon_sym_LTtemplate_GT] = ACTIONS(2300), + [anon_sym_DQUOTE] = ACTIONS(2300), + [anon_sym_SQUOTE] = ACTIONS(2300), + [anon_sym_class] = ACTIONS(2300), + [anon_sym_async] = ACTIONS(2300), + [anon_sym_function] = ACTIONS(2300), + [anon_sym_new] = ACTIONS(2300), + [anon_sym_using] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_LT] = ACTIONS(2300), + [anon_sym_TILDE] = ACTIONS(2300), + [anon_sym_void] = ACTIONS(2300), + [anon_sym_delete] = ACTIONS(2300), + [anon_sym_PLUS_PLUS] = ACTIONS(2300), + [anon_sym_DASH_DASH] = ACTIONS(2300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2300), + [sym_number] = ACTIONS(2300), + [sym_private_property_identifier] = ACTIONS(2300), + [sym_this] = ACTIONS(2300), + [sym_super] = ACTIONS(2300), + [sym_true] = ACTIONS(2300), + [sym_false] = ACTIONS(2300), + [sym_null] = ACTIONS(2300), + [sym_undefined] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2300), + [anon_sym_static] = ACTIONS(2300), + [anon_sym_readonly] = ACTIONS(2300), + [anon_sym_get] = ACTIONS(2300), + [anon_sym_set] = ACTIONS(2300), + [anon_sym_declare] = ACTIONS(2300), + [anon_sym_public] = ACTIONS(2300), + [anon_sym_private] = ACTIONS(2300), + [anon_sym_protected] = ACTIONS(2300), + [anon_sym_override] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_any] = ACTIONS(2300), + [anon_sym_number] = ACTIONS(2300), + [anon_sym_boolean] = ACTIONS(2300), + [anon_sym_string] = ACTIONS(2300), + [anon_sym_symbol] = ACTIONS(2300), + [anon_sym_object] = ACTIONS(2300), + [anon_sym_abstract] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2300), + [anon_sym_enum] = ACTIONS(2300), + [sym__automatic_semicolon] = ACTIONS(2302), + [sym_html_comment] = ACTIONS(5), + }, + [1006] = { + [sym_comment] = STATE(1006), + [sym_identifier] = ACTIONS(2292), + [anon_sym_export] = ACTIONS(2292), + [anon_sym_default] = ACTIONS(2292), + [anon_sym_type] = ACTIONS(2292), + [anon_sym_namespace] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_typeof] = ACTIONS(2292), + [anon_sym_import] = ACTIONS(2292), + [anon_sym_with] = ACTIONS(2292), + [anon_sym_var] = ACTIONS(2292), + [anon_sym_let] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_else] = ACTIONS(2292), + [anon_sym_if] = ACTIONS(2292), + [anon_sym_switch] = ACTIONS(2292), + [anon_sym_for] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_await] = ACTIONS(2292), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(2292), + [anon_sym_try] = ACTIONS(2292), + [anon_sym_break] = ACTIONS(2292), + [anon_sym_continue] = ACTIONS(2292), + [anon_sym_debugger] = ACTIONS(2292), + [anon_sym_return] = ACTIONS(2292), + [anon_sym_throw] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_case] = ACTIONS(2292), + [anon_sym_yield] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2292), + [anon_sym_LTtemplate_GT] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_SQUOTE] = ACTIONS(2292), + [anon_sym_class] = ACTIONS(2292), + [anon_sym_async] = ACTIONS(2292), + [anon_sym_function] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_using] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_SLASH] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2292), + [anon_sym_void] = ACTIONS(2292), + [anon_sym_delete] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2292), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2292), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [sym_this] = ACTIONS(2292), + [sym_super] = ACTIONS(2292), + [sym_true] = ACTIONS(2292), + [sym_false] = ACTIONS(2292), + [sym_null] = ACTIONS(2292), + [sym_undefined] = ACTIONS(2292), + [anon_sym_AT] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2292), + [anon_sym_readonly] = ACTIONS(2292), + [anon_sym_get] = ACTIONS(2292), + [anon_sym_set] = ACTIONS(2292), + [anon_sym_declare] = ACTIONS(2292), + [anon_sym_public] = ACTIONS(2292), + [anon_sym_private] = ACTIONS(2292), + [anon_sym_protected] = ACTIONS(2292), + [anon_sym_override] = ACTIONS(2292), + [anon_sym_module] = ACTIONS(2292), + [anon_sym_any] = ACTIONS(2292), + [anon_sym_number] = ACTIONS(2292), + [anon_sym_boolean] = ACTIONS(2292), + [anon_sym_string] = ACTIONS(2292), + [anon_sym_symbol] = ACTIONS(2292), + [anon_sym_object] = ACTIONS(2292), + [anon_sym_abstract] = ACTIONS(2292), + [anon_sym_interface] = ACTIONS(2292), + [anon_sym_enum] = ACTIONS(2292), + [sym__automatic_semicolon] = ACTIONS(2296), + [sym_html_comment] = ACTIONS(5), + }, + [1007] = { + [sym_comment] = STATE(1007), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_catch] = ACTIONS(2160), + [anon_sym_finally] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), [sym_html_comment] = ACTIONS(5), }, [1008] = { [sym_comment] = STATE(1008), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(3211), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_default] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_else] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_case] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(2148), [sym_html_comment] = ACTIONS(5), }, [1009] = { - [sym_statement_block] = STATE(1049), [sym_comment] = STATE(1009), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(3135), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_default] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_else] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_case] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(3205), [sym_html_comment] = ACTIONS(5), }, [1010] = { [sym_comment] = STATE(1010), - [sym_identifier] = ACTIONS(2274), - [anon_sym_export] = ACTIONS(2274), - [anon_sym_default] = ACTIONS(2274), - [anon_sym_type] = ACTIONS(2274), - [anon_sym_namespace] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_typeof] = ACTIONS(2274), - [anon_sym_import] = ACTIONS(2274), - [anon_sym_with] = ACTIONS(2274), - [anon_sym_var] = ACTIONS(2274), - [anon_sym_let] = ACTIONS(2274), - [anon_sym_const] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2274), - [anon_sym_else] = ACTIONS(2274), - [anon_sym_if] = ACTIONS(2274), - [anon_sym_switch] = ACTIONS(2274), - [anon_sym_for] = ACTIONS(2274), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_await] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2274), - [anon_sym_do] = ACTIONS(2274), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_break] = ACTIONS(2274), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_debugger] = ACTIONS(2274), - [anon_sym_return] = ACTIONS(2274), - [anon_sym_throw] = ACTIONS(2274), - [anon_sym_SEMI] = ACTIONS(2274), - [anon_sym_case] = ACTIONS(2274), - [anon_sym_yield] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_LTtemplate_GT] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [anon_sym_SQUOTE] = ACTIONS(2274), - [anon_sym_class] = ACTIONS(2274), - [anon_sym_async] = ACTIONS(2274), - [anon_sym_function] = ACTIONS(2274), - [anon_sym_new] = ACTIONS(2274), - [anon_sym_using] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_SLASH] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_TILDE] = ACTIONS(2274), - [anon_sym_void] = ACTIONS(2274), - [anon_sym_delete] = ACTIONS(2274), - [anon_sym_PLUS_PLUS] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2274), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2274), - [sym_number] = ACTIONS(2274), - [sym_private_property_identifier] = ACTIONS(2274), - [sym_this] = ACTIONS(2274), - [sym_super] = ACTIONS(2274), - [sym_true] = ACTIONS(2274), - [sym_false] = ACTIONS(2274), - [sym_null] = ACTIONS(2274), - [sym_undefined] = ACTIONS(2274), - [anon_sym_AT] = ACTIONS(2274), - [anon_sym_static] = ACTIONS(2274), - [anon_sym_readonly] = ACTIONS(2274), - [anon_sym_get] = ACTIONS(2274), - [anon_sym_set] = ACTIONS(2274), - [anon_sym_declare] = ACTIONS(2274), - [anon_sym_public] = ACTIONS(2274), - [anon_sym_private] = ACTIONS(2274), - [anon_sym_protected] = ACTIONS(2274), - [anon_sym_override] = ACTIONS(2274), - [anon_sym_module] = ACTIONS(2274), - [anon_sym_any] = ACTIONS(2274), - [anon_sym_number] = ACTIONS(2274), - [anon_sym_boolean] = ACTIONS(2274), - [anon_sym_string] = ACTIONS(2274), - [anon_sym_symbol] = ACTIONS(2274), - [anon_sym_object] = ACTIONS(2274), - [anon_sym_abstract] = ACTIONS(2274), - [anon_sym_interface] = ACTIONS(2274), - [anon_sym_enum] = ACTIONS(2274), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(2164), [sym_html_comment] = ACTIONS(5), }, [1011] = { [sym_comment] = STATE(1011), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_case] = ACTIONS(2140), - [anon_sym_finally] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(3213), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_finally] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, [1012] = { [sym_comment] = STATE(1012), - [sym_identifier] = ACTIONS(2168), - [anon_sym_export] = ACTIONS(2168), - [anon_sym_default] = ACTIONS(2168), - [anon_sym_type] = ACTIONS(2168), - [anon_sym_namespace] = ACTIONS(2168), - [anon_sym_LBRACE] = ACTIONS(2168), - [anon_sym_RBRACE] = ACTIONS(2168), - [anon_sym_typeof] = ACTIONS(2168), - [anon_sym_import] = ACTIONS(2168), - [anon_sym_with] = ACTIONS(2168), - [anon_sym_var] = ACTIONS(2168), - [anon_sym_let] = ACTIONS(2168), - [anon_sym_const] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(2168), - [anon_sym_else] = ACTIONS(2168), - [anon_sym_if] = ACTIONS(2168), - [anon_sym_switch] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_await] = ACTIONS(2168), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_do] = ACTIONS(2168), - [anon_sym_try] = ACTIONS(2168), - [anon_sym_break] = ACTIONS(2168), - [anon_sym_continue] = ACTIONS(2168), - [anon_sym_debugger] = ACTIONS(2168), - [anon_sym_return] = ACTIONS(2168), - [anon_sym_throw] = ACTIONS(2168), - [anon_sym_SEMI] = ACTIONS(2168), - [anon_sym_case] = ACTIONS(2168), - [anon_sym_yield] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_LTtemplate_GT] = ACTIONS(2168), - [anon_sym_DQUOTE] = ACTIONS(2168), - [anon_sym_SQUOTE] = ACTIONS(2168), - [anon_sym_class] = ACTIONS(2168), - [anon_sym_async] = ACTIONS(2168), - [anon_sym_function] = ACTIONS(2168), - [anon_sym_new] = ACTIONS(2168), - [anon_sym_using] = ACTIONS(2168), - [anon_sym_PLUS] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2168), - [anon_sym_SLASH] = ACTIONS(2168), - [anon_sym_LT] = ACTIONS(2168), - [anon_sym_TILDE] = ACTIONS(2168), - [anon_sym_void] = ACTIONS(2168), - [anon_sym_delete] = ACTIONS(2168), - [anon_sym_PLUS_PLUS] = ACTIONS(2168), - [anon_sym_DASH_DASH] = ACTIONS(2168), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2168), - [sym_number] = ACTIONS(2168), - [sym_private_property_identifier] = ACTIONS(2168), - [sym_this] = ACTIONS(2168), - [sym_super] = ACTIONS(2168), - [sym_true] = ACTIONS(2168), - [sym_false] = ACTIONS(2168), - [sym_null] = ACTIONS(2168), - [sym_undefined] = ACTIONS(2168), - [anon_sym_AT] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_readonly] = ACTIONS(2168), - [anon_sym_get] = ACTIONS(2168), - [anon_sym_set] = ACTIONS(2168), - [anon_sym_declare] = ACTIONS(2168), - [anon_sym_public] = ACTIONS(2168), - [anon_sym_private] = ACTIONS(2168), - [anon_sym_protected] = ACTIONS(2168), - [anon_sym_override] = ACTIONS(2168), - [anon_sym_module] = ACTIONS(2168), - [anon_sym_any] = ACTIONS(2168), - [anon_sym_number] = ACTIONS(2168), - [anon_sym_boolean] = ACTIONS(2168), - [anon_sym_string] = ACTIONS(2168), - [anon_sym_symbol] = ACTIONS(2168), - [anon_sym_object] = ACTIONS(2168), - [anon_sym_abstract] = ACTIONS(2168), - [anon_sym_interface] = ACTIONS(2168), - [anon_sym_enum] = ACTIONS(2168), - [sym__automatic_semicolon] = ACTIONS(2172), + [sym_identifier] = ACTIONS(2204), + [anon_sym_export] = ACTIONS(2204), + [anon_sym_default] = ACTIONS(2204), + [anon_sym_type] = ACTIONS(2204), + [anon_sym_namespace] = ACTIONS(2204), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_RBRACE] = ACTIONS(2204), + [anon_sym_typeof] = ACTIONS(2204), + [anon_sym_import] = ACTIONS(2204), + [anon_sym_with] = ACTIONS(2204), + [anon_sym_var] = ACTIONS(2204), + [anon_sym_let] = ACTIONS(2204), + [anon_sym_const] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_else] = ACTIONS(2204), + [anon_sym_if] = ACTIONS(2204), + [anon_sym_switch] = ACTIONS(2204), + [anon_sym_for] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2204), + [anon_sym_await] = ACTIONS(2204), + [anon_sym_while] = ACTIONS(2204), + [anon_sym_do] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(2204), + [anon_sym_break] = ACTIONS(2204), + [anon_sym_continue] = ACTIONS(2204), + [anon_sym_debugger] = ACTIONS(2204), + [anon_sym_return] = ACTIONS(2204), + [anon_sym_throw] = ACTIONS(2204), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym_case] = ACTIONS(2204), + [anon_sym_yield] = ACTIONS(2204), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LTtemplate_GT] = ACTIONS(2204), + [anon_sym_DQUOTE] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_class] = ACTIONS(2204), + [anon_sym_async] = ACTIONS(2204), + [anon_sym_function] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2204), + [anon_sym_using] = ACTIONS(2204), + [anon_sym_PLUS] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2204), + [anon_sym_SLASH] = ACTIONS(2204), + [anon_sym_LT] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_void] = ACTIONS(2204), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_DASH_DASH] = ACTIONS(2204), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2204), + [sym_number] = ACTIONS(2204), + [sym_private_property_identifier] = ACTIONS(2204), + [sym_this] = ACTIONS(2204), + [sym_super] = ACTIONS(2204), + [sym_true] = ACTIONS(2204), + [sym_false] = ACTIONS(2204), + [sym_null] = ACTIONS(2204), + [sym_undefined] = ACTIONS(2204), + [anon_sym_AT] = ACTIONS(2204), + [anon_sym_static] = ACTIONS(2204), + [anon_sym_readonly] = ACTIONS(2204), + [anon_sym_get] = ACTIONS(2204), + [anon_sym_set] = ACTIONS(2204), + [anon_sym_declare] = ACTIONS(2204), + [anon_sym_public] = ACTIONS(2204), + [anon_sym_private] = ACTIONS(2204), + [anon_sym_protected] = ACTIONS(2204), + [anon_sym_override] = ACTIONS(2204), + [anon_sym_module] = ACTIONS(2204), + [anon_sym_any] = ACTIONS(2204), + [anon_sym_number] = ACTIONS(2204), + [anon_sym_boolean] = ACTIONS(2204), + [anon_sym_string] = ACTIONS(2204), + [anon_sym_symbol] = ACTIONS(2204), + [anon_sym_object] = ACTIONS(2204), + [anon_sym_abstract] = ACTIONS(2204), + [anon_sym_interface] = ACTIONS(2204), + [anon_sym_enum] = ACTIONS(2204), + [sym__automatic_semicolon] = ACTIONS(2208), [sym_html_comment] = ACTIONS(5), }, [1013] = { [sym_comment] = STATE(1013), - [sym_identifier] = ACTIONS(2194), - [anon_sym_export] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2194), - [anon_sym_type] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_typeof] = ACTIONS(2194), - [anon_sym_import] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2194), - [anon_sym_var] = ACTIONS(2194), - [anon_sym_let] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_await] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_debugger] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_yield] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_LTtemplate_GT] = ACTIONS(2194), - [anon_sym_DQUOTE] = ACTIONS(2194), - [anon_sym_SQUOTE] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_async] = ACTIONS(2194), - [anon_sym_function] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_SLASH] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_void] = ACTIONS(2194), - [anon_sym_delete] = ACTIONS(2194), - [anon_sym_PLUS_PLUS] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2194), - [sym_number] = ACTIONS(2194), - [sym_private_property_identifier] = ACTIONS(2194), - [sym_this] = ACTIONS(2194), - [sym_super] = ACTIONS(2194), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [sym_null] = ACTIONS(2194), - [sym_undefined] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_readonly] = ACTIONS(2194), - [anon_sym_get] = ACTIONS(2194), - [anon_sym_set] = ACTIONS(2194), - [anon_sym_declare] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_override] = ACTIONS(2194), - [anon_sym_module] = ACTIONS(2194), - [anon_sym_any] = ACTIONS(2194), - [anon_sym_number] = ACTIONS(2194), - [anon_sym_boolean] = ACTIONS(2194), - [anon_sym_string] = ACTIONS(2194), - [anon_sym_symbol] = ACTIONS(2194), - [anon_sym_object] = ACTIONS(2194), - [anon_sym_abstract] = ACTIONS(2194), - [anon_sym_interface] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [sym__automatic_semicolon] = ACTIONS(2198), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_finally] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), [sym_html_comment] = ACTIONS(5), }, [1014] = { [sym_comment] = STATE(1014), - [sym_identifier] = ACTIONS(2302), - [anon_sym_export] = ACTIONS(2302), - [anon_sym_default] = ACTIONS(2302), - [anon_sym_type] = ACTIONS(2302), - [anon_sym_namespace] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_typeof] = ACTIONS(2302), - [anon_sym_import] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(2302), - [anon_sym_var] = ACTIONS(2302), - [anon_sym_let] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_else] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_await] = ACTIONS(2302), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_debugger] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_case] = ACTIONS(2302), - [anon_sym_yield] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_LTtemplate_GT] = ACTIONS(2302), - [anon_sym_DQUOTE] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_function] = ACTIONS(2302), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_SLASH] = ACTIONS(2302), - [anon_sym_LT] = ACTIONS(2302), - [anon_sym_TILDE] = ACTIONS(2302), - [anon_sym_void] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2302), - [sym_number] = ACTIONS(2302), - [sym_private_property_identifier] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_super] = ACTIONS(2302), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_undefined] = ACTIONS(2302), - [anon_sym_AT] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_readonly] = ACTIONS(2302), - [anon_sym_get] = ACTIONS(2302), - [anon_sym_set] = ACTIONS(2302), - [anon_sym_declare] = ACTIONS(2302), - [anon_sym_public] = ACTIONS(2302), - [anon_sym_private] = ACTIONS(2302), - [anon_sym_protected] = ACTIONS(2302), - [anon_sym_override] = ACTIONS(2302), - [anon_sym_module] = ACTIONS(2302), - [anon_sym_any] = ACTIONS(2302), - [anon_sym_number] = ACTIONS(2302), - [anon_sym_boolean] = ACTIONS(2302), - [anon_sym_string] = ACTIONS(2302), - [anon_sym_symbol] = ACTIONS(2302), - [anon_sym_object] = ACTIONS(2302), - [anon_sym_abstract] = ACTIONS(2302), - [anon_sym_interface] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [sym__automatic_semicolon] = ACTIONS(2306), + [sym_identifier] = ACTIONS(2188), + [anon_sym_export] = ACTIONS(2188), + [anon_sym_default] = ACTIONS(2188), + [anon_sym_type] = ACTIONS(2188), + [anon_sym_namespace] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_typeof] = ACTIONS(2188), + [anon_sym_import] = ACTIONS(2188), + [anon_sym_with] = ACTIONS(2188), + [anon_sym_var] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_else] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_await] = ACTIONS(2188), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_do] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), + [anon_sym_continue] = ACTIONS(2188), + [anon_sym_debugger] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_throw] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_case] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LTtemplate_GT] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_class] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(2188), + [anon_sym_function] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(2188), + [anon_sym_PLUS] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_SLASH] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_void] = ACTIONS(2188), + [anon_sym_delete] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_number] = ACTIONS(2188), + [sym_private_property_identifier] = ACTIONS(2188), + [sym_this] = ACTIONS(2188), + [sym_super] = ACTIONS(2188), + [sym_true] = ACTIONS(2188), + [sym_false] = ACTIONS(2188), + [sym_null] = ACTIONS(2188), + [sym_undefined] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(2188), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_readonly] = ACTIONS(2188), + [anon_sym_get] = ACTIONS(2188), + [anon_sym_set] = ACTIONS(2188), + [anon_sym_declare] = ACTIONS(2188), + [anon_sym_public] = ACTIONS(2188), + [anon_sym_private] = ACTIONS(2188), + [anon_sym_protected] = ACTIONS(2188), + [anon_sym_override] = ACTIONS(2188), + [anon_sym_module] = ACTIONS(2188), + [anon_sym_any] = ACTIONS(2188), + [anon_sym_number] = ACTIONS(2188), + [anon_sym_boolean] = ACTIONS(2188), + [anon_sym_string] = ACTIONS(2188), + [anon_sym_symbol] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(2188), + [anon_sym_abstract] = ACTIONS(2188), + [anon_sym_interface] = ACTIONS(2188), + [anon_sym_enum] = ACTIONS(2188), + [sym__automatic_semicolon] = ACTIONS(2192), [sym_html_comment] = ACTIONS(5), }, [1015] = { [sym_comment] = STATE(1015), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_catch] = ACTIONS(2140), - [anon_sym_finally] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(3215), + [sym_identifier] = ACTIONS(3207), + [anon_sym_export] = ACTIONS(3207), + [anon_sym_default] = ACTIONS(3207), + [anon_sym_type] = ACTIONS(3207), + [anon_sym_namespace] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3207), + [anon_sym_RBRACE] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(3207), + [anon_sym_import] = ACTIONS(3207), + [anon_sym_with] = ACTIONS(3207), + [anon_sym_var] = ACTIONS(3207), + [anon_sym_let] = ACTIONS(3207), + [anon_sym_const] = ACTIONS(3207), + [anon_sym_BANG] = ACTIONS(3207), + [anon_sym_else] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_switch] = ACTIONS(3207), + [anon_sym_for] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(3207), + [anon_sym_await] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3207), + [anon_sym_do] = ACTIONS(3207), + [anon_sym_try] = ACTIONS(3207), + [anon_sym_break] = ACTIONS(3207), + [anon_sym_continue] = ACTIONS(3207), + [anon_sym_debugger] = ACTIONS(3207), + [anon_sym_return] = ACTIONS(3207), + [anon_sym_throw] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_case] = ACTIONS(3207), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3207), + [anon_sym_LTtemplate_GT] = ACTIONS(3207), + [anon_sym_DQUOTE] = ACTIONS(3207), + [anon_sym_SQUOTE] = ACTIONS(3207), + [anon_sym_class] = ACTIONS(3207), + [anon_sym_async] = ACTIONS(3207), + [anon_sym_function] = ACTIONS(3207), + [anon_sym_new] = ACTIONS(3207), + [anon_sym_using] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_SLASH] = ACTIONS(3207), + [anon_sym_LT] = ACTIONS(3207), + [anon_sym_TILDE] = ACTIONS(3207), + [anon_sym_void] = ACTIONS(3207), + [anon_sym_delete] = ACTIONS(3207), + [anon_sym_PLUS_PLUS] = ACTIONS(3207), + [anon_sym_DASH_DASH] = ACTIONS(3207), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3207), + [sym_number] = ACTIONS(3207), + [sym_private_property_identifier] = ACTIONS(3207), + [sym_this] = ACTIONS(3207), + [sym_super] = ACTIONS(3207), + [sym_true] = ACTIONS(3207), + [sym_false] = ACTIONS(3207), + [sym_null] = ACTIONS(3207), + [sym_undefined] = ACTIONS(3207), + [anon_sym_AT] = ACTIONS(3207), + [anon_sym_static] = ACTIONS(3207), + [anon_sym_readonly] = ACTIONS(3207), + [anon_sym_get] = ACTIONS(3207), + [anon_sym_set] = ACTIONS(3207), + [anon_sym_declare] = ACTIONS(3207), + [anon_sym_public] = ACTIONS(3207), + [anon_sym_private] = ACTIONS(3207), + [anon_sym_protected] = ACTIONS(3207), + [anon_sym_override] = ACTIONS(3207), + [anon_sym_module] = ACTIONS(3207), + [anon_sym_any] = ACTIONS(3207), + [anon_sym_number] = ACTIONS(3207), + [anon_sym_boolean] = ACTIONS(3207), + [anon_sym_string] = ACTIONS(3207), + [anon_sym_symbol] = ACTIONS(3207), + [anon_sym_object] = ACTIONS(3207), + [anon_sym_abstract] = ACTIONS(3207), + [anon_sym_interface] = ACTIONS(3207), + [anon_sym_enum] = ACTIONS(3207), + [sym__automatic_semicolon] = ACTIONS(3209), [sym_html_comment] = ACTIONS(5), }, [1016] = { [sym_comment] = STATE(1016), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_else] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_case] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(2146), + [sym_identifier] = ACTIONS(3211), + [anon_sym_export] = ACTIONS(3211), + [anon_sym_default] = ACTIONS(3211), + [anon_sym_type] = ACTIONS(3211), + [anon_sym_namespace] = ACTIONS(3211), + [anon_sym_LBRACE] = ACTIONS(3211), + [anon_sym_RBRACE] = ACTIONS(3211), + [anon_sym_typeof] = ACTIONS(3211), + [anon_sym_import] = ACTIONS(3211), + [anon_sym_with] = ACTIONS(3211), + [anon_sym_var] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_const] = ACTIONS(3211), + [anon_sym_BANG] = ACTIONS(3211), + [anon_sym_else] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3211), + [anon_sym_switch] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3211), + [anon_sym_await] = ACTIONS(3211), + [anon_sym_while] = ACTIONS(3211), + [anon_sym_do] = ACTIONS(3211), + [anon_sym_try] = ACTIONS(3211), + [anon_sym_break] = ACTIONS(3211), + [anon_sym_continue] = ACTIONS(3211), + [anon_sym_debugger] = ACTIONS(3211), + [anon_sym_return] = ACTIONS(3211), + [anon_sym_throw] = ACTIONS(3211), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym_case] = ACTIONS(3211), + [anon_sym_finally] = ACTIONS(3211), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3211), + [anon_sym_LTtemplate_GT] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(3211), + [anon_sym_SQUOTE] = ACTIONS(3211), + [anon_sym_class] = ACTIONS(3211), + [anon_sym_async] = ACTIONS(3211), + [anon_sym_function] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3211), + [anon_sym_using] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_DASH] = ACTIONS(3211), + [anon_sym_SLASH] = ACTIONS(3211), + [anon_sym_LT] = ACTIONS(3211), + [anon_sym_TILDE] = ACTIONS(3211), + [anon_sym_void] = ACTIONS(3211), + [anon_sym_delete] = ACTIONS(3211), + [anon_sym_PLUS_PLUS] = ACTIONS(3211), + [anon_sym_DASH_DASH] = ACTIONS(3211), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3211), + [sym_number] = ACTIONS(3211), + [sym_private_property_identifier] = ACTIONS(3211), + [sym_this] = ACTIONS(3211), + [sym_super] = ACTIONS(3211), + [sym_true] = ACTIONS(3211), + [sym_false] = ACTIONS(3211), + [sym_null] = ACTIONS(3211), + [sym_undefined] = ACTIONS(3211), + [anon_sym_AT] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_readonly] = ACTIONS(3211), + [anon_sym_get] = ACTIONS(3211), + [anon_sym_set] = ACTIONS(3211), + [anon_sym_declare] = ACTIONS(3211), + [anon_sym_public] = ACTIONS(3211), + [anon_sym_private] = ACTIONS(3211), + [anon_sym_protected] = ACTIONS(3211), + [anon_sym_override] = ACTIONS(3211), + [anon_sym_module] = ACTIONS(3211), + [anon_sym_any] = ACTIONS(3211), + [anon_sym_number] = ACTIONS(3211), + [anon_sym_boolean] = ACTIONS(3211), + [anon_sym_string] = ACTIONS(3211), + [anon_sym_symbol] = ACTIONS(3211), + [anon_sym_object] = ACTIONS(3211), + [anon_sym_abstract] = ACTIONS(3211), + [anon_sym_interface] = ACTIONS(3211), + [anon_sym_enum] = ACTIONS(3211), [sym_html_comment] = ACTIONS(5), }, [1017] = { [sym_comment] = STATE(1017), - [sym_identifier] = ACTIONS(2228), - [anon_sym_export] = ACTIONS(2228), - [anon_sym_default] = ACTIONS(2228), - [anon_sym_type] = ACTIONS(2228), - [anon_sym_namespace] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(2228), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym_typeof] = ACTIONS(2228), - [anon_sym_import] = ACTIONS(2228), - [anon_sym_with] = ACTIONS(2228), - [anon_sym_var] = ACTIONS(2228), - [anon_sym_let] = ACTIONS(2228), - [anon_sym_const] = ACTIONS(2228), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_else] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_switch] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(2228), - [anon_sym_await] = ACTIONS(2228), - [anon_sym_while] = ACTIONS(2228), - [anon_sym_do] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_debugger] = ACTIONS(2228), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_throw] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2228), - [anon_sym_case] = ACTIONS(2228), - [anon_sym_yield] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2228), - [anon_sym_LTtemplate_GT] = ACTIONS(2228), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_SQUOTE] = ACTIONS(2228), - [anon_sym_class] = ACTIONS(2228), - [anon_sym_async] = ACTIONS(2228), - [anon_sym_function] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2228), - [anon_sym_using] = ACTIONS(2228), - [anon_sym_PLUS] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_SLASH] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_void] = ACTIONS(2228), - [anon_sym_delete] = ACTIONS(2228), - [anon_sym_PLUS_PLUS] = ACTIONS(2228), - [anon_sym_DASH_DASH] = ACTIONS(2228), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2228), - [sym_number] = ACTIONS(2228), - [sym_private_property_identifier] = ACTIONS(2228), - [sym_this] = ACTIONS(2228), - [sym_super] = ACTIONS(2228), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), - [sym_null] = ACTIONS(2228), - [sym_undefined] = ACTIONS(2228), - [anon_sym_AT] = ACTIONS(2228), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_readonly] = ACTIONS(2228), - [anon_sym_get] = ACTIONS(2228), - [anon_sym_set] = ACTIONS(2228), - [anon_sym_declare] = ACTIONS(2228), - [anon_sym_public] = ACTIONS(2228), - [anon_sym_private] = ACTIONS(2228), - [anon_sym_protected] = ACTIONS(2228), - [anon_sym_override] = ACTIONS(2228), - [anon_sym_module] = ACTIONS(2228), - [anon_sym_any] = ACTIONS(2228), - [anon_sym_number] = ACTIONS(2228), - [anon_sym_boolean] = ACTIONS(2228), - [anon_sym_string] = ACTIONS(2228), - [anon_sym_symbol] = ACTIONS(2228), - [anon_sym_object] = ACTIONS(2228), - [anon_sym_abstract] = ACTIONS(2228), - [anon_sym_interface] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(2228), - [sym__automatic_semicolon] = ACTIONS(2232), + [sym_identifier] = ACTIONS(2304), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_default] = ACTIONS(2304), + [anon_sym_type] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2304), + [anon_sym_LBRACE] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_typeof] = ACTIONS(2304), + [anon_sym_import] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(2304), + [anon_sym_var] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(2304), + [anon_sym_else] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_switch] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_await] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_debugger] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_throw] = ACTIONS(2304), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_case] = ACTIONS(2304), + [anon_sym_yield] = ACTIONS(2304), + [anon_sym_LBRACK] = ACTIONS(2304), + [anon_sym_LTtemplate_GT] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2304), + [anon_sym_SQUOTE] = ACTIONS(2304), + [anon_sym_class] = ACTIONS(2304), + [anon_sym_async] = ACTIONS(2304), + [anon_sym_function] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2304), + [anon_sym_using] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2304), + [anon_sym_DASH] = ACTIONS(2304), + [anon_sym_SLASH] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2304), + [anon_sym_void] = ACTIONS(2304), + [anon_sym_delete] = ACTIONS(2304), + [anon_sym_PLUS_PLUS] = ACTIONS(2304), + [anon_sym_DASH_DASH] = ACTIONS(2304), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2304), + [sym_number] = ACTIONS(2304), + [sym_private_property_identifier] = ACTIONS(2304), + [sym_this] = ACTIONS(2304), + [sym_super] = ACTIONS(2304), + [sym_true] = ACTIONS(2304), + [sym_false] = ACTIONS(2304), + [sym_null] = ACTIONS(2304), + [sym_undefined] = ACTIONS(2304), + [anon_sym_AT] = ACTIONS(2304), + [anon_sym_static] = ACTIONS(2304), + [anon_sym_readonly] = ACTIONS(2304), + [anon_sym_get] = ACTIONS(2304), + [anon_sym_set] = ACTIONS(2304), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_public] = ACTIONS(2304), + [anon_sym_private] = ACTIONS(2304), + [anon_sym_protected] = ACTIONS(2304), + [anon_sym_override] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_any] = ACTIONS(2304), + [anon_sym_number] = ACTIONS(2304), + [anon_sym_boolean] = ACTIONS(2304), + [anon_sym_string] = ACTIONS(2304), + [anon_sym_symbol] = ACTIONS(2304), + [anon_sym_object] = ACTIONS(2304), + [anon_sym_abstract] = ACTIONS(2304), + [anon_sym_interface] = ACTIONS(2304), + [anon_sym_enum] = ACTIONS(2304), + [sym__automatic_semicolon] = ACTIONS(2306), [sym_html_comment] = ACTIONS(5), }, [1018] = { [sym_comment] = STATE(1018), - [sym_identifier] = ACTIONS(2280), - [anon_sym_export] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2280), - [anon_sym_type] = ACTIONS(2280), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_typeof] = ACTIONS(2280), - [anon_sym_import] = ACTIONS(2280), - [anon_sym_with] = ACTIONS(2280), - [anon_sym_var] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_else] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_switch] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_await] = ACTIONS(2280), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_do] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_debugger] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_throw] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_case] = ACTIONS(2280), - [anon_sym_yield] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_LTtemplate_GT] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_class] = ACTIONS(2280), - [anon_sym_async] = ACTIONS(2280), - [anon_sym_function] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2280), - [anon_sym_using] = ACTIONS(2280), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_SLASH] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_void] = ACTIONS(2280), - [anon_sym_delete] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2280), - [sym_number] = ACTIONS(2280), - [sym_private_property_identifier] = ACTIONS(2280), - [sym_this] = ACTIONS(2280), - [sym_super] = ACTIONS(2280), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_undefined] = ACTIONS(2280), - [anon_sym_AT] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_readonly] = ACTIONS(2280), - [anon_sym_get] = ACTIONS(2280), - [anon_sym_set] = ACTIONS(2280), - [anon_sym_declare] = ACTIONS(2280), - [anon_sym_public] = ACTIONS(2280), - [anon_sym_private] = ACTIONS(2280), - [anon_sym_protected] = ACTIONS(2280), - [anon_sym_override] = ACTIONS(2280), - [anon_sym_module] = ACTIONS(2280), - [anon_sym_any] = ACTIONS(2280), - [anon_sym_number] = ACTIONS(2280), - [anon_sym_boolean] = ACTIONS(2280), - [anon_sym_string] = ACTIONS(2280), - [anon_sym_symbol] = ACTIONS(2280), - [anon_sym_object] = ACTIONS(2280), - [anon_sym_abstract] = ACTIONS(2280), - [anon_sym_interface] = ACTIONS(2280), - [anon_sym_enum] = ACTIONS(2280), - [sym__automatic_semicolon] = ACTIONS(2284), + [sym_identifier] = ACTIONS(3213), + [anon_sym_export] = ACTIONS(3213), + [anon_sym_default] = ACTIONS(3213), + [anon_sym_type] = ACTIONS(3213), + [anon_sym_namespace] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_RBRACE] = ACTIONS(3213), + [anon_sym_typeof] = ACTIONS(3213), + [anon_sym_import] = ACTIONS(3213), + [anon_sym_with] = ACTIONS(3213), + [anon_sym_var] = ACTIONS(3213), + [anon_sym_let] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_else] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym_await] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_debugger] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_throw] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3213), + [anon_sym_case] = ACTIONS(3213), + [anon_sym_yield] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_LTtemplate_GT] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(3213), + [anon_sym_SQUOTE] = ACTIONS(3213), + [anon_sym_class] = ACTIONS(3213), + [anon_sym_async] = ACTIONS(3213), + [anon_sym_function] = ACTIONS(3213), + [anon_sym_new] = ACTIONS(3213), + [anon_sym_using] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_SLASH] = ACTIONS(3213), + [anon_sym_LT] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_void] = ACTIONS(3213), + [anon_sym_delete] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3213), + [sym_number] = ACTIONS(3213), + [sym_private_property_identifier] = ACTIONS(3213), + [sym_this] = ACTIONS(3213), + [sym_super] = ACTIONS(3213), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_null] = ACTIONS(3213), + [sym_undefined] = ACTIONS(3213), + [anon_sym_AT] = ACTIONS(3213), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_readonly] = ACTIONS(3213), + [anon_sym_get] = ACTIONS(3213), + [anon_sym_set] = ACTIONS(3213), + [anon_sym_declare] = ACTIONS(3213), + [anon_sym_public] = ACTIONS(3213), + [anon_sym_private] = ACTIONS(3213), + [anon_sym_protected] = ACTIONS(3213), + [anon_sym_override] = ACTIONS(3213), + [anon_sym_module] = ACTIONS(3213), + [anon_sym_any] = ACTIONS(3213), + [anon_sym_number] = ACTIONS(3213), + [anon_sym_boolean] = ACTIONS(3213), + [anon_sym_string] = ACTIONS(3213), + [anon_sym_symbol] = ACTIONS(3213), + [anon_sym_object] = ACTIONS(3213), + [anon_sym_abstract] = ACTIONS(3213), + [anon_sym_interface] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [sym__automatic_semicolon] = ACTIONS(3215), [sym_html_comment] = ACTIONS(5), }, [1019] = { [sym_comment] = STATE(1019), - [sym_identifier] = ACTIONS(2266), - [anon_sym_export] = ACTIONS(2266), - [anon_sym_default] = ACTIONS(2266), - [anon_sym_type] = ACTIONS(2266), - [anon_sym_namespace] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(2266), - [anon_sym_RBRACE] = ACTIONS(2266), - [anon_sym_typeof] = ACTIONS(2266), - [anon_sym_import] = ACTIONS(2266), - [anon_sym_with] = ACTIONS(2266), - [anon_sym_var] = ACTIONS(2266), - [anon_sym_let] = ACTIONS(2266), - [anon_sym_const] = ACTIONS(2266), - [anon_sym_BANG] = ACTIONS(2266), - [anon_sym_else] = ACTIONS(2266), - [anon_sym_if] = ACTIONS(2266), - [anon_sym_switch] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2266), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_await] = ACTIONS(2266), - [anon_sym_while] = ACTIONS(2266), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_try] = ACTIONS(2266), - [anon_sym_break] = ACTIONS(2266), - [anon_sym_continue] = ACTIONS(2266), - [anon_sym_debugger] = ACTIONS(2266), - [anon_sym_return] = ACTIONS(2266), - [anon_sym_throw] = ACTIONS(2266), - [anon_sym_SEMI] = ACTIONS(2266), - [anon_sym_case] = ACTIONS(2266), - [anon_sym_yield] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2266), - [anon_sym_LTtemplate_GT] = ACTIONS(2266), - [anon_sym_DQUOTE] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2266), - [anon_sym_class] = ACTIONS(2266), - [anon_sym_async] = ACTIONS(2266), - [anon_sym_function] = ACTIONS(2266), - [anon_sym_new] = ACTIONS(2266), - [anon_sym_using] = ACTIONS(2266), - [anon_sym_PLUS] = ACTIONS(2266), - [anon_sym_DASH] = ACTIONS(2266), - [anon_sym_SLASH] = ACTIONS(2266), - [anon_sym_LT] = ACTIONS(2266), - [anon_sym_TILDE] = ACTIONS(2266), - [anon_sym_void] = ACTIONS(2266), - [anon_sym_delete] = ACTIONS(2266), - [anon_sym_PLUS_PLUS] = ACTIONS(2266), - [anon_sym_DASH_DASH] = ACTIONS(2266), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2266), - [sym_number] = ACTIONS(2266), - [sym_private_property_identifier] = ACTIONS(2266), - [sym_this] = ACTIONS(2266), - [sym_super] = ACTIONS(2266), - [sym_true] = ACTIONS(2266), - [sym_false] = ACTIONS(2266), - [sym_null] = ACTIONS(2266), - [sym_undefined] = ACTIONS(2266), - [anon_sym_AT] = ACTIONS(2266), - [anon_sym_static] = ACTIONS(2266), - [anon_sym_readonly] = ACTIONS(2266), - [anon_sym_get] = ACTIONS(2266), - [anon_sym_set] = ACTIONS(2266), - [anon_sym_declare] = ACTIONS(2266), - [anon_sym_public] = ACTIONS(2266), - [anon_sym_private] = ACTIONS(2266), - [anon_sym_protected] = ACTIONS(2266), - [anon_sym_override] = ACTIONS(2266), - [anon_sym_module] = ACTIONS(2266), - [anon_sym_any] = ACTIONS(2266), - [anon_sym_number] = ACTIONS(2266), - [anon_sym_boolean] = ACTIONS(2266), - [anon_sym_string] = ACTIONS(2266), - [anon_sym_symbol] = ACTIONS(2266), - [anon_sym_object] = ACTIONS(2266), - [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_interface] = ACTIONS(2266), - [anon_sym_enum] = ACTIONS(2266), - [sym__automatic_semicolon] = ACTIONS(2270), + [sym_identifier] = ACTIONS(2226), + [anon_sym_export] = ACTIONS(2226), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_type] = ACTIONS(2226), + [anon_sym_namespace] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2226), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_typeof] = ACTIONS(2226), + [anon_sym_import] = ACTIONS(2226), + [anon_sym_with] = ACTIONS(2226), + [anon_sym_var] = ACTIONS(2226), + [anon_sym_let] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_else] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_switch] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_await] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_do] = ACTIONS(2226), + [anon_sym_try] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_debugger] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_throw] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2226), + [anon_sym_case] = ACTIONS(2226), + [anon_sym_yield] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_LTtemplate_GT] = ACTIONS(2226), + [anon_sym_DQUOTE] = ACTIONS(2226), + [anon_sym_SQUOTE] = ACTIONS(2226), + [anon_sym_class] = ACTIONS(2226), + [anon_sym_async] = ACTIONS(2226), + [anon_sym_function] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(2226), + [anon_sym_using] = ACTIONS(2226), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_SLASH] = ACTIONS(2226), + [anon_sym_LT] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_void] = ACTIONS(2226), + [anon_sym_delete] = ACTIONS(2226), + [anon_sym_PLUS_PLUS] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2226), + [sym_number] = ACTIONS(2226), + [sym_private_property_identifier] = ACTIONS(2226), + [sym_this] = ACTIONS(2226), + [sym_super] = ACTIONS(2226), + [sym_true] = ACTIONS(2226), + [sym_false] = ACTIONS(2226), + [sym_null] = ACTIONS(2226), + [sym_undefined] = ACTIONS(2226), + [anon_sym_AT] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2226), + [anon_sym_readonly] = ACTIONS(2226), + [anon_sym_get] = ACTIONS(2226), + [anon_sym_set] = ACTIONS(2226), + [anon_sym_declare] = ACTIONS(2226), + [anon_sym_public] = ACTIONS(2226), + [anon_sym_private] = ACTIONS(2226), + [anon_sym_protected] = ACTIONS(2226), + [anon_sym_override] = ACTIONS(2226), + [anon_sym_module] = ACTIONS(2226), + [anon_sym_any] = ACTIONS(2226), + [anon_sym_number] = ACTIONS(2226), + [anon_sym_boolean] = ACTIONS(2226), + [anon_sym_string] = ACTIONS(2226), + [anon_sym_symbol] = ACTIONS(2226), + [anon_sym_object] = ACTIONS(2226), + [anon_sym_abstract] = ACTIONS(2226), + [anon_sym_interface] = ACTIONS(2226), + [anon_sym_enum] = ACTIONS(2226), + [sym__automatic_semicolon] = ACTIONS(2230), [sym_html_comment] = ACTIONS(5), }, [1020] = { @@ -146058,172 +145776,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1021] = { [sym_comment] = STATE(1021), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_default] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_case] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_LTtemplate_GT] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_using] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2152), - [sym_number] = ACTIONS(2152), - [sym_private_property_identifier] = ACTIONS(2152), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_object] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - [sym__automatic_semicolon] = ACTIONS(2384), - [sym_html_comment] = ACTIONS(5), - }, - [1022] = { - [sym_comment] = STATE(1022), - [ts_builtin_sym_end] = ACTIONS(2412), - [sym_identifier] = ACTIONS(2238), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_type] = ACTIONS(2238), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_typeof] = ACTIONS(2238), - [anon_sym_import] = ACTIONS(2238), - [anon_sym_with] = ACTIONS(2238), - [anon_sym_var] = ACTIONS(2238), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_else] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_await] = ACTIONS(2238), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_debugger] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_throw] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_yield] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LTtemplate_GT] = ACTIONS(2238), - [anon_sym_DQUOTE] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2238), - [anon_sym_class] = ACTIONS(2238), - [anon_sym_async] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_using] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_void] = ACTIONS(2238), - [anon_sym_delete] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2238), - [sym_number] = ACTIONS(2238), - [sym_private_property_identifier] = ACTIONS(2238), - [sym_this] = ACTIONS(2238), - [sym_super] = ACTIONS(2238), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_null] = ACTIONS(2238), - [sym_undefined] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_readonly] = ACTIONS(2238), - [anon_sym_get] = ACTIONS(2238), - [anon_sym_set] = ACTIONS(2238), - [anon_sym_declare] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_protected] = ACTIONS(2238), - [anon_sym_override] = ACTIONS(2238), - [anon_sym_module] = ACTIONS(2238), - [anon_sym_any] = ACTIONS(2238), - [anon_sym_number] = ACTIONS(2238), - [anon_sym_boolean] = ACTIONS(2238), - [anon_sym_string] = ACTIONS(2238), - [anon_sym_symbol] = ACTIONS(2238), - [anon_sym_object] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_interface] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2414), - [sym_html_comment] = ACTIONS(5), - }, - [1023] = { - [sym_comment] = STATE(1023), [sym_identifier] = ACTIONS(3219), [anon_sym_export] = ACTIONS(3219), [anon_sym_default] = ACTIONS(3219), @@ -146305,91 +145857,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1024] = { - [sym_comment] = STATE(1024), - [ts_builtin_sym_end] = ACTIONS(2408), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_else] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(2410), - [sym_html_comment] = ACTIONS(5), - }, - [1025] = { - [sym_comment] = STATE(1025), + [1022] = { + [sym_comment] = STATE(1022), [sym_identifier] = ACTIONS(3221), [anon_sym_export] = ACTIONS(3221), [anon_sym_default] = ACTIONS(3221), @@ -146471,8 +145940,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3221), [sym_html_comment] = ACTIONS(5), }, - [1026] = { - [sym_comment] = STATE(1026), + [1023] = { + [sym_comment] = STATE(1023), [sym_identifier] = ACTIONS(3223), [anon_sym_export] = ACTIONS(3223), [anon_sym_default] = ACTIONS(3223), @@ -146554,91 +146023,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3223), [sym_html_comment] = ACTIONS(5), }, - [1027] = { - [sym_comment] = STATE(1027), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), + [1024] = { + [sym_comment] = STATE(1024), + [sym_identifier] = ACTIONS(2212), + [anon_sym_export] = ACTIONS(2212), + [anon_sym_default] = ACTIONS(2212), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_typeof] = ACTIONS(2212), + [anon_sym_import] = ACTIONS(2212), + [anon_sym_with] = ACTIONS(2212), + [anon_sym_var] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_await] = ACTIONS(2212), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_debugger] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_case] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LTtemplate_GT] = ACTIONS(2212), + [anon_sym_DQUOTE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_function] = ACTIONS(2212), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_SLASH] = ACTIONS(2212), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_void] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2212), + [sym_number] = ACTIONS(2212), + [sym_private_property_identifier] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [sym_null] = ACTIONS(2212), + [sym_undefined] = ACTIONS(2212), + [anon_sym_AT] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_readonly] = ACTIONS(2212), + [anon_sym_get] = ACTIONS(2212), + [anon_sym_set] = ACTIONS(2212), + [anon_sym_declare] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_override] = ACTIONS(2212), + [anon_sym_module] = ACTIONS(2212), + [anon_sym_any] = ACTIONS(2212), + [anon_sym_number] = ACTIONS(2212), + [anon_sym_boolean] = ACTIONS(2212), + [anon_sym_string] = ACTIONS(2212), + [anon_sym_symbol] = ACTIONS(2212), + [anon_sym_object] = ACTIONS(2212), + [anon_sym_abstract] = ACTIONS(2212), + [anon_sym_interface] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [sym__automatic_semicolon] = ACTIONS(2408), [sym_html_comment] = ACTIONS(5), }, - [1028] = { - [sym_comment] = STATE(1028), + [1025] = { + [sym_comment] = STATE(1025), [sym_identifier] = ACTIONS(3225), [anon_sym_export] = ACTIONS(3225), [anon_sym_default] = ACTIONS(3225), @@ -146720,8 +146189,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3225), [sym_html_comment] = ACTIONS(5), }, - [1029] = { - [sym_comment] = STATE(1029), + [1026] = { + [sym_comment] = STATE(1026), [sym_identifier] = ACTIONS(3227), [anon_sym_export] = ACTIONS(3227), [anon_sym_default] = ACTIONS(3227), @@ -146803,160 +146272,160 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3227), [sym_html_comment] = ACTIONS(5), }, - [1030] = { - [sym_comment] = STATE(1030), - [sym_identifier] = ACTIONS(3229), - [anon_sym_export] = ACTIONS(3229), - [anon_sym_default] = ACTIONS(3229), - [anon_sym_type] = ACTIONS(3229), - [anon_sym_namespace] = ACTIONS(3229), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_typeof] = ACTIONS(3229), - [anon_sym_import] = ACTIONS(3229), - [anon_sym_with] = ACTIONS(3229), - [anon_sym_var] = ACTIONS(3229), - [anon_sym_let] = ACTIONS(3229), - [anon_sym_const] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_else] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3229), - [anon_sym_switch] = ACTIONS(3229), - [anon_sym_for] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_await] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3229), - [anon_sym_do] = ACTIONS(3229), - [anon_sym_try] = ACTIONS(3229), - [anon_sym_break] = ACTIONS(3229), - [anon_sym_continue] = ACTIONS(3229), - [anon_sym_debugger] = ACTIONS(3229), - [anon_sym_return] = ACTIONS(3229), - [anon_sym_throw] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_case] = ACTIONS(3229), - [anon_sym_yield] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_LTtemplate_GT] = ACTIONS(3229), - [anon_sym_DQUOTE] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_class] = ACTIONS(3229), - [anon_sym_async] = ACTIONS(3229), - [anon_sym_function] = ACTIONS(3229), - [anon_sym_new] = ACTIONS(3229), - [anon_sym_using] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_void] = ACTIONS(3229), - [anon_sym_delete] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3229), - [sym_number] = ACTIONS(3229), - [sym_private_property_identifier] = ACTIONS(3229), - [sym_this] = ACTIONS(3229), - [sym_super] = ACTIONS(3229), - [sym_true] = ACTIONS(3229), - [sym_false] = ACTIONS(3229), - [sym_null] = ACTIONS(3229), - [sym_undefined] = ACTIONS(3229), - [anon_sym_AT] = ACTIONS(3229), - [anon_sym_static] = ACTIONS(3229), - [anon_sym_readonly] = ACTIONS(3229), - [anon_sym_get] = ACTIONS(3229), - [anon_sym_set] = ACTIONS(3229), - [anon_sym_declare] = ACTIONS(3229), - [anon_sym_public] = ACTIONS(3229), - [anon_sym_private] = ACTIONS(3229), - [anon_sym_protected] = ACTIONS(3229), - [anon_sym_override] = ACTIONS(3229), - [anon_sym_module] = ACTIONS(3229), - [anon_sym_any] = ACTIONS(3229), - [anon_sym_number] = ACTIONS(3229), - [anon_sym_boolean] = ACTIONS(3229), - [anon_sym_string] = ACTIONS(3229), - [anon_sym_symbol] = ACTIONS(3229), - [anon_sym_object] = ACTIONS(3229), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_interface] = ACTIONS(3229), - [anon_sym_enum] = ACTIONS(3229), - [sym_html_comment] = ACTIONS(5), - }, - [1031] = { - [sym_comment] = STATE(1031), - [sym_identifier] = ACTIONS(3231), - [anon_sym_export] = ACTIONS(3231), - [anon_sym_default] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym_typeof] = ACTIONS(3231), - [anon_sym_import] = ACTIONS(3231), - [anon_sym_with] = ACTIONS(3231), - [anon_sym_var] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_else] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_await] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_debugger] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_case] = ACTIONS(3231), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LTtemplate_GT] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_SQUOTE] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_void] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3231), - [sym_number] = ACTIONS(3231), - [sym_private_property_identifier] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - [sym_super] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_null] = ACTIONS(3231), - [sym_undefined] = ACTIONS(3231), - [anon_sym_AT] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_readonly] = ACTIONS(3231), - [anon_sym_get] = ACTIONS(3231), - [anon_sym_set] = ACTIONS(3231), - [anon_sym_declare] = ACTIONS(3231), - [anon_sym_public] = ACTIONS(3231), - [anon_sym_private] = ACTIONS(3231), - [anon_sym_protected] = ACTIONS(3231), - [anon_sym_override] = ACTIONS(3231), + [1027] = { + [sym_comment] = STATE(1027), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(3229), + [sym_html_comment] = ACTIONS(5), + }, + [1028] = { + [sym_comment] = STATE(1028), + [sym_identifier] = ACTIONS(3231), + [anon_sym_export] = ACTIONS(3231), + [anon_sym_default] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_namespace] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3231), + [anon_sym_RBRACE] = ACTIONS(3231), + [anon_sym_typeof] = ACTIONS(3231), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_with] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3231), + [anon_sym_let] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [anon_sym_BANG] = ACTIONS(3231), + [anon_sym_else] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_switch] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(3231), + [anon_sym_await] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_do] = ACTIONS(3231), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_debugger] = ACTIONS(3231), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_throw] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3231), + [anon_sym_case] = ACTIONS(3231), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3231), + [anon_sym_LTtemplate_GT] = ACTIONS(3231), + [anon_sym_DQUOTE] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_function] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_using] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_SLASH] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_TILDE] = ACTIONS(3231), + [anon_sym_void] = ACTIONS(3231), + [anon_sym_delete] = ACTIONS(3231), + [anon_sym_PLUS_PLUS] = ACTIONS(3231), + [anon_sym_DASH_DASH] = ACTIONS(3231), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3231), + [sym_number] = ACTIONS(3231), + [sym_private_property_identifier] = ACTIONS(3231), + [sym_this] = ACTIONS(3231), + [sym_super] = ACTIONS(3231), + [sym_true] = ACTIONS(3231), + [sym_false] = ACTIONS(3231), + [sym_null] = ACTIONS(3231), + [sym_undefined] = ACTIONS(3231), + [anon_sym_AT] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3231), + [anon_sym_get] = ACTIONS(3231), + [anon_sym_set] = ACTIONS(3231), + [anon_sym_declare] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_private] = ACTIONS(3231), + [anon_sym_protected] = ACTIONS(3231), + [anon_sym_override] = ACTIONS(3231), [anon_sym_module] = ACTIONS(3231), [anon_sym_any] = ACTIONS(3231), [anon_sym_number] = ACTIONS(3231), @@ -146969,8 +146438,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3231), [sym_html_comment] = ACTIONS(5), }, - [1032] = { - [sym_comment] = STATE(1032), + [1029] = { + [sym_comment] = STATE(1029), [sym_identifier] = ACTIONS(3233), [anon_sym_export] = ACTIONS(3233), [anon_sym_default] = ACTIONS(3233), @@ -147052,8 +146521,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3233), [sym_html_comment] = ACTIONS(5), }, - [1033] = { - [sym_comment] = STATE(1033), + [1030] = { + [sym_comment] = STATE(1030), [sym_identifier] = ACTIONS(3235), [anon_sym_export] = ACTIONS(3235), [anon_sym_default] = ACTIONS(3235), @@ -147135,91 +146604,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3235), [sym_html_comment] = ACTIONS(5), }, - [1034] = { - [sym_comment] = STATE(1034), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(3237), + [1031] = { + [sym_comment] = STATE(1031), + [sym_identifier] = ACTIONS(3237), + [anon_sym_export] = ACTIONS(3237), + [anon_sym_default] = ACTIONS(3237), + [anon_sym_type] = ACTIONS(3237), + [anon_sym_namespace] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_RBRACE] = ACTIONS(3237), + [anon_sym_typeof] = ACTIONS(3237), + [anon_sym_import] = ACTIONS(3237), + [anon_sym_with] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3237), + [anon_sym_let] = ACTIONS(3237), + [anon_sym_const] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_else] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_switch] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_await] = ACTIONS(3237), + [anon_sym_while] = ACTIONS(3237), + [anon_sym_do] = ACTIONS(3237), + [anon_sym_try] = ACTIONS(3237), + [anon_sym_break] = ACTIONS(3237), + [anon_sym_continue] = ACTIONS(3237), + [anon_sym_debugger] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3237), + [anon_sym_throw] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_case] = ACTIONS(3237), + [anon_sym_yield] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3237), + [anon_sym_LTtemplate_GT] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_SQUOTE] = ACTIONS(3237), + [anon_sym_class] = ACTIONS(3237), + [anon_sym_async] = ACTIONS(3237), + [anon_sym_function] = ACTIONS(3237), + [anon_sym_new] = ACTIONS(3237), + [anon_sym_using] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_void] = ACTIONS(3237), + [anon_sym_delete] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3237), + [sym_number] = ACTIONS(3237), + [sym_private_property_identifier] = ACTIONS(3237), + [sym_this] = ACTIONS(3237), + [sym_super] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_null] = ACTIONS(3237), + [sym_undefined] = ACTIONS(3237), + [anon_sym_AT] = ACTIONS(3237), + [anon_sym_static] = ACTIONS(3237), + [anon_sym_readonly] = ACTIONS(3237), + [anon_sym_get] = ACTIONS(3237), + [anon_sym_set] = ACTIONS(3237), + [anon_sym_declare] = ACTIONS(3237), + [anon_sym_public] = ACTIONS(3237), + [anon_sym_private] = ACTIONS(3237), + [anon_sym_protected] = ACTIONS(3237), + [anon_sym_override] = ACTIONS(3237), + [anon_sym_module] = ACTIONS(3237), + [anon_sym_any] = ACTIONS(3237), + [anon_sym_number] = ACTIONS(3237), + [anon_sym_boolean] = ACTIONS(3237), + [anon_sym_string] = ACTIONS(3237), + [anon_sym_symbol] = ACTIONS(3237), + [anon_sym_object] = ACTIONS(3237), + [anon_sym_abstract] = ACTIONS(3237), + [anon_sym_interface] = ACTIONS(3237), + [anon_sym_enum] = ACTIONS(3237), [sym_html_comment] = ACTIONS(5), }, - [1035] = { - [sym_comment] = STATE(1035), + [1032] = { + [sym_comment] = STATE(1032), + [sym_identifier] = ACTIONS(3231), + [anon_sym_export] = ACTIONS(3231), + [anon_sym_default] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_namespace] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3231), + [anon_sym_RBRACE] = ACTIONS(3231), + [anon_sym_typeof] = ACTIONS(3231), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_with] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3231), + [anon_sym_let] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [anon_sym_BANG] = ACTIONS(3231), + [anon_sym_else] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_switch] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(3231), + [anon_sym_await] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_do] = ACTIONS(3231), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_debugger] = ACTIONS(3231), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_throw] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3231), + [anon_sym_case] = ACTIONS(3231), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3231), + [anon_sym_LTtemplate_GT] = ACTIONS(3231), + [anon_sym_DQUOTE] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_function] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_using] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_SLASH] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_TILDE] = ACTIONS(3231), + [anon_sym_void] = ACTIONS(3231), + [anon_sym_delete] = ACTIONS(3231), + [anon_sym_PLUS_PLUS] = ACTIONS(3231), + [anon_sym_DASH_DASH] = ACTIONS(3231), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3231), + [sym_number] = ACTIONS(3231), + [sym_private_property_identifier] = ACTIONS(3231), + [sym_this] = ACTIONS(3231), + [sym_super] = ACTIONS(3231), + [sym_true] = ACTIONS(3231), + [sym_false] = ACTIONS(3231), + [sym_null] = ACTIONS(3231), + [sym_undefined] = ACTIONS(3231), + [anon_sym_AT] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3231), + [anon_sym_get] = ACTIONS(3231), + [anon_sym_set] = ACTIONS(3231), + [anon_sym_declare] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_private] = ACTIONS(3231), + [anon_sym_protected] = ACTIONS(3231), + [anon_sym_override] = ACTIONS(3231), + [anon_sym_module] = ACTIONS(3231), + [anon_sym_any] = ACTIONS(3231), + [anon_sym_number] = ACTIONS(3231), + [anon_sym_boolean] = ACTIONS(3231), + [anon_sym_string] = ACTIONS(3231), + [anon_sym_symbol] = ACTIONS(3231), + [anon_sym_object] = ACTIONS(3231), + [anon_sym_abstract] = ACTIONS(3231), + [anon_sym_interface] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), + [sym_html_comment] = ACTIONS(5), + }, + [1033] = { + [sym_comment] = STATE(1033), [sym_identifier] = ACTIONS(3239), [anon_sym_export] = ACTIONS(3239), [anon_sym_default] = ACTIONS(3239), @@ -147301,589 +146853,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3239), [sym_html_comment] = ACTIONS(5), }, - [1036] = { - [sym_comment] = STATE(1036), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [sym_html_comment] = ACTIONS(5), - }, - [1037] = { - [sym_comment] = STATE(1037), - [ts_builtin_sym_end] = ACTIONS(3165), - [sym_identifier] = ACTIONS(3163), - [anon_sym_export] = ACTIONS(3163), - [anon_sym_type] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3163), - [anon_sym_typeof] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_with] = ACTIONS(3163), - [anon_sym_var] = ACTIONS(3163), - [anon_sym_let] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_else] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_await] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_debugger] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_LTtemplate_GT] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_async] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_SLASH] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_void] = ACTIONS(3163), - [anon_sym_delete] = ACTIONS(3163), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3163), - [sym_number] = ACTIONS(3163), - [sym_private_property_identifier] = ACTIONS(3163), - [sym_this] = ACTIONS(3163), - [sym_super] = ACTIONS(3163), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [sym_null] = ACTIONS(3163), - [sym_undefined] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_readonly] = ACTIONS(3163), - [anon_sym_get] = ACTIONS(3163), - [anon_sym_set] = ACTIONS(3163), - [anon_sym_declare] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_override] = ACTIONS(3163), - [anon_sym_module] = ACTIONS(3163), - [anon_sym_any] = ACTIONS(3163), - [anon_sym_number] = ACTIONS(3163), - [anon_sym_boolean] = ACTIONS(3163), - [anon_sym_string] = ACTIONS(3163), - [anon_sym_symbol] = ACTIONS(3163), - [anon_sym_object] = ACTIONS(3163), - [anon_sym_abstract] = ACTIONS(3163), - [anon_sym_interface] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [sym__automatic_semicolon] = ACTIONS(3165), - [sym_html_comment] = ACTIONS(5), - }, - [1038] = { - [sym_comment] = STATE(1038), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [sym_html_comment] = ACTIONS(5), - }, - [1039] = { - [sym_comment] = STATE(1039), - [sym_identifier] = ACTIONS(2296), - [anon_sym_export] = ACTIONS(2296), - [anon_sym_default] = ACTIONS(2296), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_namespace] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2296), - [anon_sym_RBRACE] = ACTIONS(2296), - [anon_sym_typeof] = ACTIONS(2296), - [anon_sym_import] = ACTIONS(2296), - [anon_sym_with] = ACTIONS(2296), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_const] = ACTIONS(2296), - [anon_sym_BANG] = ACTIONS(2296), - [anon_sym_else] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_switch] = ACTIONS(2296), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2296), - [anon_sym_await] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(2296), - [anon_sym_try] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_debugger] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_throw] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2296), - [anon_sym_case] = ACTIONS(2296), - [anon_sym_yield] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2296), - [anon_sym_LTtemplate_GT] = ACTIONS(2296), - [anon_sym_DQUOTE] = ACTIONS(2296), - [anon_sym_SQUOTE] = ACTIONS(2296), - [anon_sym_class] = ACTIONS(2296), - [anon_sym_async] = ACTIONS(2296), - [anon_sym_function] = ACTIONS(2296), - [anon_sym_new] = ACTIONS(2296), - [anon_sym_using] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_TILDE] = ACTIONS(2296), - [anon_sym_void] = ACTIONS(2296), - [anon_sym_delete] = ACTIONS(2296), - [anon_sym_PLUS_PLUS] = ACTIONS(2296), - [anon_sym_DASH_DASH] = ACTIONS(2296), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2296), - [sym_number] = ACTIONS(2296), - [sym_private_property_identifier] = ACTIONS(2296), - [sym_this] = ACTIONS(2296), - [sym_super] = ACTIONS(2296), - [sym_true] = ACTIONS(2296), - [sym_false] = ACTIONS(2296), - [sym_null] = ACTIONS(2296), - [sym_undefined] = ACTIONS(2296), - [anon_sym_AT] = ACTIONS(2296), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_readonly] = ACTIONS(2296), - [anon_sym_get] = ACTIONS(2296), - [anon_sym_set] = ACTIONS(2296), - [anon_sym_declare] = ACTIONS(2296), - [anon_sym_public] = ACTIONS(2296), - [anon_sym_private] = ACTIONS(2296), - [anon_sym_protected] = ACTIONS(2296), - [anon_sym_override] = ACTIONS(2296), - [anon_sym_module] = ACTIONS(2296), - [anon_sym_any] = ACTIONS(2296), - [anon_sym_number] = ACTIONS(2296), - [anon_sym_boolean] = ACTIONS(2296), - [anon_sym_string] = ACTIONS(2296), - [anon_sym_symbol] = ACTIONS(2296), - [anon_sym_object] = ACTIONS(2296), - [anon_sym_abstract] = ACTIONS(2296), - [anon_sym_interface] = ACTIONS(2296), - [anon_sym_enum] = ACTIONS(2296), - [sym_html_comment] = ACTIONS(5), - }, - [1040] = { - [sym_comment] = STATE(1040), - [sym_identifier] = ACTIONS(3185), - [anon_sym_export] = ACTIONS(3185), - [anon_sym_default] = ACTIONS(3185), - [anon_sym_type] = ACTIONS(3185), - [anon_sym_namespace] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_RBRACE] = ACTIONS(3185), - [anon_sym_typeof] = ACTIONS(3185), - [anon_sym_import] = ACTIONS(3185), - [anon_sym_with] = ACTIONS(3185), - [anon_sym_var] = ACTIONS(3185), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_const] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_switch] = ACTIONS(3185), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_await] = ACTIONS(3185), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_do] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_break] = ACTIONS(3185), - [anon_sym_continue] = ACTIONS(3185), - [anon_sym_debugger] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_throw] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym_case] = ACTIONS(3185), - [anon_sym_finally] = ACTIONS(3185), - [anon_sym_yield] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_LTtemplate_GT] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [anon_sym_SQUOTE] = ACTIONS(3185), - [anon_sym_class] = ACTIONS(3185), - [anon_sym_async] = ACTIONS(3185), - [anon_sym_function] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_using] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_void] = ACTIONS(3185), - [anon_sym_delete] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3185), - [sym_number] = ACTIONS(3185), - [sym_private_property_identifier] = ACTIONS(3185), - [sym_this] = ACTIONS(3185), - [sym_super] = ACTIONS(3185), - [sym_true] = ACTIONS(3185), - [sym_false] = ACTIONS(3185), - [sym_null] = ACTIONS(3185), - [sym_undefined] = ACTIONS(3185), - [anon_sym_AT] = ACTIONS(3185), - [anon_sym_static] = ACTIONS(3185), - [anon_sym_readonly] = ACTIONS(3185), - [anon_sym_get] = ACTIONS(3185), - [anon_sym_set] = ACTIONS(3185), - [anon_sym_declare] = ACTIONS(3185), - [anon_sym_public] = ACTIONS(3185), - [anon_sym_private] = ACTIONS(3185), - [anon_sym_protected] = ACTIONS(3185), - [anon_sym_override] = ACTIONS(3185), - [anon_sym_module] = ACTIONS(3185), - [anon_sym_any] = ACTIONS(3185), - [anon_sym_number] = ACTIONS(3185), - [anon_sym_boolean] = ACTIONS(3185), - [anon_sym_string] = ACTIONS(3185), - [anon_sym_symbol] = ACTIONS(3185), - [anon_sym_object] = ACTIONS(3185), - [anon_sym_abstract] = ACTIONS(3185), - [anon_sym_interface] = ACTIONS(3185), - [anon_sym_enum] = ACTIONS(3185), - [sym_html_comment] = ACTIONS(5), - }, - [1041] = { - [sym_comment] = STATE(1041), - [sym_identifier] = ACTIONS(2262), - [anon_sym_export] = ACTIONS(2262), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_type] = ACTIONS(2262), - [anon_sym_namespace] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_import] = ACTIONS(2262), - [anon_sym_with] = ACTIONS(2262), - [anon_sym_var] = ACTIONS(2262), - [anon_sym_let] = ACTIONS(2262), - [anon_sym_const] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_else] = ACTIONS(2262), - [anon_sym_if] = ACTIONS(2262), - [anon_sym_switch] = ACTIONS(2262), - [anon_sym_for] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_await] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2262), - [anon_sym_do] = ACTIONS(2262), - [anon_sym_try] = ACTIONS(2262), - [anon_sym_break] = ACTIONS(2262), - [anon_sym_continue] = ACTIONS(2262), - [anon_sym_debugger] = ACTIONS(2262), - [anon_sym_return] = ACTIONS(2262), - [anon_sym_throw] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_case] = ACTIONS(2262), - [anon_sym_yield] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_LTtemplate_GT] = ACTIONS(2262), - [anon_sym_DQUOTE] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(2262), - [anon_sym_class] = ACTIONS(2262), - [anon_sym_async] = ACTIONS(2262), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_new] = ACTIONS(2262), - [anon_sym_using] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_SLASH] = ACTIONS(2262), - [anon_sym_LT] = ACTIONS(2262), - [anon_sym_TILDE] = ACTIONS(2262), - [anon_sym_void] = ACTIONS(2262), - [anon_sym_delete] = ACTIONS(2262), - [anon_sym_PLUS_PLUS] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(2262), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2262), - [sym_number] = ACTIONS(2262), - [sym_private_property_identifier] = ACTIONS(2262), - [sym_this] = ACTIONS(2262), - [sym_super] = ACTIONS(2262), - [sym_true] = ACTIONS(2262), - [sym_false] = ACTIONS(2262), - [sym_null] = ACTIONS(2262), - [sym_undefined] = ACTIONS(2262), - [anon_sym_AT] = ACTIONS(2262), - [anon_sym_static] = ACTIONS(2262), - [anon_sym_readonly] = ACTIONS(2262), - [anon_sym_get] = ACTIONS(2262), - [anon_sym_set] = ACTIONS(2262), - [anon_sym_declare] = ACTIONS(2262), - [anon_sym_public] = ACTIONS(2262), - [anon_sym_private] = ACTIONS(2262), - [anon_sym_protected] = ACTIONS(2262), - [anon_sym_override] = ACTIONS(2262), - [anon_sym_module] = ACTIONS(2262), - [anon_sym_any] = ACTIONS(2262), - [anon_sym_number] = ACTIONS(2262), - [anon_sym_boolean] = ACTIONS(2262), - [anon_sym_string] = ACTIONS(2262), - [anon_sym_symbol] = ACTIONS(2262), - [anon_sym_object] = ACTIONS(2262), - [anon_sym_abstract] = ACTIONS(2262), - [anon_sym_interface] = ACTIONS(2262), - [anon_sym_enum] = ACTIONS(2262), - [sym_html_comment] = ACTIONS(5), - }, - [1042] = { - [sym_comment] = STATE(1042), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(2192), - [sym_html_comment] = ACTIONS(5), - }, - [1043] = { - [sym_comment] = STATE(1043), + [1034] = { + [sym_comment] = STATE(1034), [sym_identifier] = ACTIONS(3241), [anon_sym_export] = ACTIONS(3241), [anon_sym_default] = ACTIONS(3241), @@ -147965,257 +146936,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3241), [sym_html_comment] = ACTIONS(5), }, - [1044] = { - [sym_comment] = STATE(1044), - [sym_identifier] = ACTIONS(2216), - [anon_sym_export] = ACTIONS(2216), - [anon_sym_default] = ACTIONS(2216), - [anon_sym_type] = ACTIONS(2216), - [anon_sym_namespace] = ACTIONS(2216), - [anon_sym_LBRACE] = ACTIONS(2216), - [anon_sym_RBRACE] = ACTIONS(2216), - [anon_sym_typeof] = ACTIONS(2216), - [anon_sym_import] = ACTIONS(2216), - [anon_sym_with] = ACTIONS(2216), - [anon_sym_var] = ACTIONS(2216), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_const] = ACTIONS(2216), - [anon_sym_BANG] = ACTIONS(2216), - [anon_sym_else] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_switch] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2216), - [anon_sym_await] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2216), - [anon_sym_do] = ACTIONS(2216), - [anon_sym_try] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_debugger] = ACTIONS(2216), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_throw] = ACTIONS(2216), - [anon_sym_SEMI] = ACTIONS(2216), - [anon_sym_case] = ACTIONS(2216), - [anon_sym_yield] = ACTIONS(2216), - [anon_sym_LBRACK] = ACTIONS(2216), - [anon_sym_LTtemplate_GT] = ACTIONS(2216), - [anon_sym_DQUOTE] = ACTIONS(2216), - [anon_sym_SQUOTE] = ACTIONS(2216), - [anon_sym_class] = ACTIONS(2216), - [anon_sym_async] = ACTIONS(2216), - [anon_sym_function] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2216), - [anon_sym_using] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2216), - [anon_sym_SLASH] = ACTIONS(2216), - [anon_sym_LT] = ACTIONS(2216), - [anon_sym_TILDE] = ACTIONS(2216), - [anon_sym_void] = ACTIONS(2216), - [anon_sym_delete] = ACTIONS(2216), - [anon_sym_PLUS_PLUS] = ACTIONS(2216), - [anon_sym_DASH_DASH] = ACTIONS(2216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2216), - [sym_number] = ACTIONS(2216), - [sym_private_property_identifier] = ACTIONS(2216), - [sym_this] = ACTIONS(2216), - [sym_super] = ACTIONS(2216), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_undefined] = ACTIONS(2216), - [anon_sym_AT] = ACTIONS(2216), - [anon_sym_static] = ACTIONS(2216), - [anon_sym_readonly] = ACTIONS(2216), - [anon_sym_get] = ACTIONS(2216), - [anon_sym_set] = ACTIONS(2216), - [anon_sym_declare] = ACTIONS(2216), - [anon_sym_public] = ACTIONS(2216), - [anon_sym_private] = ACTIONS(2216), - [anon_sym_protected] = ACTIONS(2216), - [anon_sym_override] = ACTIONS(2216), - [anon_sym_module] = ACTIONS(2216), - [anon_sym_any] = ACTIONS(2216), - [anon_sym_number] = ACTIONS(2216), - [anon_sym_boolean] = ACTIONS(2216), - [anon_sym_string] = ACTIONS(2216), - [anon_sym_symbol] = ACTIONS(2216), - [anon_sym_object] = ACTIONS(2216), - [anon_sym_abstract] = ACTIONS(2216), - [anon_sym_interface] = ACTIONS(2216), - [anon_sym_enum] = ACTIONS(2216), - [sym_html_comment] = ACTIONS(5), - }, - [1045] = { - [sym_comment] = STATE(1045), - [ts_builtin_sym_end] = ACTIONS(2248), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_namespace] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2246), - [anon_sym_import] = ACTIONS(2246), - [anon_sym_with] = ACTIONS(2246), - [anon_sym_var] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_else] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_debugger] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_throw] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LTtemplate_GT] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_class] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2246), - [anon_sym_delete] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_private_property_identifier] = ACTIONS(2246), - [sym_this] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_undefined] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_readonly] = ACTIONS(2246), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_declare] = ACTIONS(2246), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_override] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_any] = ACTIONS(2246), - [anon_sym_number] = ACTIONS(2246), - [anon_sym_boolean] = ACTIONS(2246), - [anon_sym_string] = ACTIONS(2246), - [anon_sym_symbol] = ACTIONS(2246), - [anon_sym_object] = ACTIONS(2246), - [anon_sym_abstract] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), - [sym__automatic_semicolon] = ACTIONS(2248), - [sym_html_comment] = ACTIONS(5), - }, - [1046] = { - [sym_statement_block] = STATE(1293), - [sym_comment] = STATE(1046), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(3187), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_else] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym_html_comment] = ACTIONS(5), - }, - [1047] = { - [sym_comment] = STATE(1047), + [1035] = { + [sym_comment] = STATE(1035), [sym_identifier] = ACTIONS(3243), [anon_sym_export] = ACTIONS(3243), [anon_sym_default] = ACTIONS(3243), @@ -148297,8 +147019,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3243), [sym_html_comment] = ACTIONS(5), }, - [1048] = { - [sym_comment] = STATE(1048), + [1036] = { + [sym_comment] = STATE(1036), [sym_identifier] = ACTIONS(3245), [anon_sym_export] = ACTIONS(3245), [anon_sym_default] = ACTIONS(3245), @@ -148380,174 +147102,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3245), [sym_html_comment] = ACTIONS(5), }, - [1049] = { - [sym_comment] = STATE(1049), - [sym_identifier] = ACTIONS(2258), - [anon_sym_export] = ACTIONS(2258), - [anon_sym_default] = ACTIONS(2258), - [anon_sym_type] = ACTIONS(2258), - [anon_sym_namespace] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2258), - [anon_sym_import] = ACTIONS(2258), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_var] = ACTIONS(2258), - [anon_sym_let] = ACTIONS(2258), - [anon_sym_const] = ACTIONS(2258), - [anon_sym_BANG] = ACTIONS(2258), - [anon_sym_else] = ACTIONS(2258), - [anon_sym_if] = ACTIONS(2258), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_for] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_await] = ACTIONS(2258), - [anon_sym_while] = ACTIONS(2258), - [anon_sym_do] = ACTIONS(2258), - [anon_sym_try] = ACTIONS(2258), - [anon_sym_break] = ACTIONS(2258), - [anon_sym_continue] = ACTIONS(2258), - [anon_sym_debugger] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(2258), - [anon_sym_throw] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2258), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_LTtemplate_GT] = ACTIONS(2258), - [anon_sym_DQUOTE] = ACTIONS(2258), - [anon_sym_SQUOTE] = ACTIONS(2258), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2258), - [anon_sym_function] = ACTIONS(2258), - [anon_sym_new] = ACTIONS(2258), - [anon_sym_using] = ACTIONS(2258), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2258), - [anon_sym_TILDE] = ACTIONS(2258), - [anon_sym_void] = ACTIONS(2258), - [anon_sym_delete] = ACTIONS(2258), - [anon_sym_PLUS_PLUS] = ACTIONS(2258), - [anon_sym_DASH_DASH] = ACTIONS(2258), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2258), - [sym_number] = ACTIONS(2258), - [sym_private_property_identifier] = ACTIONS(2258), - [sym_this] = ACTIONS(2258), - [sym_super] = ACTIONS(2258), - [sym_true] = ACTIONS(2258), - [sym_false] = ACTIONS(2258), - [sym_null] = ACTIONS(2258), - [sym_undefined] = ACTIONS(2258), - [anon_sym_AT] = ACTIONS(2258), - [anon_sym_static] = ACTIONS(2258), - [anon_sym_readonly] = ACTIONS(2258), - [anon_sym_get] = ACTIONS(2258), - [anon_sym_set] = ACTIONS(2258), - [anon_sym_declare] = ACTIONS(2258), - [anon_sym_public] = ACTIONS(2258), - [anon_sym_private] = ACTIONS(2258), - [anon_sym_protected] = ACTIONS(2258), - [anon_sym_override] = ACTIONS(2258), - [anon_sym_module] = ACTIONS(2258), - [anon_sym_any] = ACTIONS(2258), - [anon_sym_number] = ACTIONS(2258), - [anon_sym_boolean] = ACTIONS(2258), - [anon_sym_string] = ACTIONS(2258), - [anon_sym_symbol] = ACTIONS(2258), - [anon_sym_object] = ACTIONS(2258), - [anon_sym_abstract] = ACTIONS(2258), - [anon_sym_interface] = ACTIONS(2258), - [anon_sym_enum] = ACTIONS(2258), - [sym_html_comment] = ACTIONS(5), - }, - [1050] = { - [sym_comment] = STATE(1050), - [sym_identifier] = ACTIONS(3193), - [anon_sym_export] = ACTIONS(3193), - [anon_sym_default] = ACTIONS(3193), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_namespace] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_RBRACE] = ACTIONS(3193), - [anon_sym_typeof] = ACTIONS(3193), - [anon_sym_import] = ACTIONS(3193), - [anon_sym_with] = ACTIONS(3193), - [anon_sym_var] = ACTIONS(3193), - [anon_sym_let] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_switch] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_await] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_do] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_debugger] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym_case] = ACTIONS(3193), - [anon_sym_finally] = ACTIONS(3193), - [anon_sym_yield] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_LTtemplate_GT] = ACTIONS(3193), - [anon_sym_DQUOTE] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3193), - [anon_sym_class] = ACTIONS(3193), - [anon_sym_async] = ACTIONS(3193), - [anon_sym_function] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(3193), - [anon_sym_using] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_SLASH] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_void] = ACTIONS(3193), - [anon_sym_delete] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3193), - [sym_number] = ACTIONS(3193), - [sym_private_property_identifier] = ACTIONS(3193), - [sym_this] = ACTIONS(3193), - [sym_super] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_null] = ACTIONS(3193), - [sym_undefined] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_static] = ACTIONS(3193), - [anon_sym_readonly] = ACTIONS(3193), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_declare] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_module] = ACTIONS(3193), - [anon_sym_any] = ACTIONS(3193), - [anon_sym_number] = ACTIONS(3193), - [anon_sym_boolean] = ACTIONS(3193), - [anon_sym_string] = ACTIONS(3193), - [anon_sym_symbol] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_interface] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), + [1037] = { + [sym_comment] = STATE(1037), + [ts_builtin_sym_end] = ACTIONS(2174), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2172), + [anon_sym_else] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LTtemplate_GT] = ACTIONS(2172), + [anon_sym_DOT] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_using] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2172), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2172), + [anon_sym_DASH_DASH] = ACTIONS(2172), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2172), + [sym_number] = ACTIONS(2172), + [sym_private_property_identifier] = ACTIONS(2172), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2172), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_object] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), [sym_html_comment] = ACTIONS(5), }, - [1051] = { - [sym_comment] = STATE(1051), + [1038] = { + [sym_comment] = STATE(1038), [sym_identifier] = ACTIONS(3247), [anon_sym_export] = ACTIONS(3247), [anon_sym_default] = ACTIONS(3247), @@ -148629,8 +147268,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3247), [sym_html_comment] = ACTIONS(5), }, - [1052] = { - [sym_comment] = STATE(1052), + [1039] = { + [sym_comment] = STATE(1039), + [ts_builtin_sym_end] = ACTIONS(2168), + [sym_identifier] = ACTIONS(2166), + [anon_sym_export] = ACTIONS(2166), + [anon_sym_type] = ACTIONS(2166), + [anon_sym_namespace] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_typeof] = ACTIONS(2166), + [anon_sym_import] = ACTIONS(2166), + [anon_sym_with] = ACTIONS(2166), + [anon_sym_var] = ACTIONS(2166), + [anon_sym_let] = ACTIONS(2166), + [anon_sym_const] = ACTIONS(2166), + [anon_sym_BANG] = ACTIONS(2166), + [anon_sym_else] = ACTIONS(2166), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_switch] = ACTIONS(2166), + [anon_sym_for] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(2166), + [anon_sym_await] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2166), + [anon_sym_do] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2166), + [anon_sym_break] = ACTIONS(2166), + [anon_sym_continue] = ACTIONS(2166), + [anon_sym_debugger] = ACTIONS(2166), + [anon_sym_return] = ACTIONS(2166), + [anon_sym_throw] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_yield] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2166), + [anon_sym_LTtemplate_GT] = ACTIONS(2166), + [anon_sym_DOT] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [anon_sym_SQUOTE] = ACTIONS(2166), + [anon_sym_class] = ACTIONS(2166), + [anon_sym_async] = ACTIONS(2166), + [anon_sym_function] = ACTIONS(2166), + [anon_sym_new] = ACTIONS(2166), + [anon_sym_using] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_TILDE] = ACTIONS(2166), + [anon_sym_void] = ACTIONS(2166), + [anon_sym_delete] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2166), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2166), + [sym_number] = ACTIONS(2166), + [sym_private_property_identifier] = ACTIONS(2166), + [sym_this] = ACTIONS(2166), + [sym_super] = ACTIONS(2166), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_undefined] = ACTIONS(2166), + [anon_sym_AT] = ACTIONS(2166), + [anon_sym_static] = ACTIONS(2166), + [anon_sym_readonly] = ACTIONS(2166), + [anon_sym_get] = ACTIONS(2166), + [anon_sym_set] = ACTIONS(2166), + [anon_sym_declare] = ACTIONS(2166), + [anon_sym_public] = ACTIONS(2166), + [anon_sym_private] = ACTIONS(2166), + [anon_sym_protected] = ACTIONS(2166), + [anon_sym_override] = ACTIONS(2166), + [anon_sym_module] = ACTIONS(2166), + [anon_sym_any] = ACTIONS(2166), + [anon_sym_number] = ACTIONS(2166), + [anon_sym_boolean] = ACTIONS(2166), + [anon_sym_string] = ACTIONS(2166), + [anon_sym_symbol] = ACTIONS(2166), + [anon_sym_object] = ACTIONS(2166), + [anon_sym_abstract] = ACTIONS(2166), + [anon_sym_interface] = ACTIONS(2166), + [anon_sym_enum] = ACTIONS(2166), + [sym_html_comment] = ACTIONS(5), + }, + [1040] = { + [sym_comment] = STATE(1040), [sym_identifier] = ACTIONS(3249), [anon_sym_export] = ACTIONS(3249), [anon_sym_default] = ACTIONS(3249), @@ -148712,92 +147434,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3249), [sym_html_comment] = ACTIONS(5), }, - [1053] = { - [sym_comment] = STATE(1053), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1041] = { + [sym_comment] = STATE(1041), + [sym_identifier] = ACTIONS(3213), + [anon_sym_export] = ACTIONS(3213), + [anon_sym_default] = ACTIONS(3213), + [anon_sym_type] = ACTIONS(3213), + [anon_sym_namespace] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_RBRACE] = ACTIONS(3213), + [anon_sym_typeof] = ACTIONS(3213), + [anon_sym_import] = ACTIONS(3213), + [anon_sym_with] = ACTIONS(3213), + [anon_sym_var] = ACTIONS(3213), + [anon_sym_let] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym_await] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_debugger] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_throw] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3213), + [anon_sym_case] = ACTIONS(3213), + [anon_sym_yield] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_LTtemplate_GT] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(3213), + [anon_sym_SQUOTE] = ACTIONS(3213), + [anon_sym_class] = ACTIONS(3213), + [anon_sym_async] = ACTIONS(3213), + [anon_sym_function] = ACTIONS(3213), + [anon_sym_new] = ACTIONS(3213), + [anon_sym_using] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_SLASH] = ACTIONS(3213), + [anon_sym_LT] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_void] = ACTIONS(3213), + [anon_sym_delete] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3213), + [sym_number] = ACTIONS(3213), + [sym_private_property_identifier] = ACTIONS(3213), + [sym_this] = ACTIONS(3213), + [sym_super] = ACTIONS(3213), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_null] = ACTIONS(3213), + [sym_undefined] = ACTIONS(3213), + [anon_sym_AT] = ACTIONS(3213), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_readonly] = ACTIONS(3213), + [anon_sym_get] = ACTIONS(3213), + [anon_sym_set] = ACTIONS(3213), + [anon_sym_declare] = ACTIONS(3213), + [anon_sym_public] = ACTIONS(3213), + [anon_sym_private] = ACTIONS(3213), + [anon_sym_protected] = ACTIONS(3213), + [anon_sym_override] = ACTIONS(3213), + [anon_sym_module] = ACTIONS(3213), + [anon_sym_any] = ACTIONS(3213), + [anon_sym_number] = ACTIONS(3213), + [anon_sym_boolean] = ACTIONS(3213), + [anon_sym_string] = ACTIONS(3213), + [anon_sym_symbol] = ACTIONS(3213), + [anon_sym_object] = ACTIONS(3213), + [anon_sym_abstract] = ACTIONS(3213), + [anon_sym_interface] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [sym__automatic_semicolon] = ACTIONS(3215), + [sym_html_comment] = ACTIONS(5), + }, + [1042] = { + [sym_else_clause] = STATE(1616), + [sym_comment] = STATE(1042), + [ts_builtin_sym_end] = ACTIONS(3251), + [sym_identifier] = ACTIONS(3187), + [anon_sym_export] = ACTIONS(3187), + [anon_sym_type] = ACTIONS(3187), + [anon_sym_namespace] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_RBRACE] = ACTIONS(3187), + [anon_sym_typeof] = ACTIONS(3187), + [anon_sym_import] = ACTIONS(3187), + [anon_sym_with] = ACTIONS(3187), + [anon_sym_var] = ACTIONS(3187), + [anon_sym_let] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_else] = ACTIONS(3253), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3187), + [anon_sym_await] = ACTIONS(3187), + [anon_sym_while] = ACTIONS(3187), + [anon_sym_do] = ACTIONS(3187), + [anon_sym_try] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_debugger] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_throw] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3187), + [anon_sym_yield] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_LTtemplate_GT] = ACTIONS(3187), + [anon_sym_DQUOTE] = ACTIONS(3187), + [anon_sym_SQUOTE] = ACTIONS(3187), + [anon_sym_class] = ACTIONS(3187), + [anon_sym_async] = ACTIONS(3187), + [anon_sym_function] = ACTIONS(3187), + [anon_sym_new] = ACTIONS(3187), + [anon_sym_using] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_SLASH] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_void] = ACTIONS(3187), + [anon_sym_delete] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3187), + [sym_number] = ACTIONS(3187), + [sym_private_property_identifier] = ACTIONS(3187), + [sym_this] = ACTIONS(3187), + [sym_super] = ACTIONS(3187), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [sym_null] = ACTIONS(3187), + [sym_undefined] = ACTIONS(3187), + [anon_sym_AT] = ACTIONS(3187), + [anon_sym_static] = ACTIONS(3187), + [anon_sym_readonly] = ACTIONS(3187), + [anon_sym_get] = ACTIONS(3187), + [anon_sym_set] = ACTIONS(3187), + [anon_sym_declare] = ACTIONS(3187), + [anon_sym_public] = ACTIONS(3187), + [anon_sym_private] = ACTIONS(3187), + [anon_sym_protected] = ACTIONS(3187), + [anon_sym_override] = ACTIONS(3187), + [anon_sym_module] = ACTIONS(3187), + [anon_sym_any] = ACTIONS(3187), + [anon_sym_number] = ACTIONS(3187), + [anon_sym_boolean] = ACTIONS(3187), + [anon_sym_string] = ACTIONS(3187), + [anon_sym_symbol] = ACTIONS(3187), + [anon_sym_object] = ACTIONS(3187), + [anon_sym_abstract] = ACTIONS(3187), + [anon_sym_interface] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), + [sym_html_comment] = ACTIONS(5), + }, + [1043] = { + [sym_comment] = STATE(1043), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_else] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_case] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, - [1054] = { - [sym_comment] = STATE(1054), - [ts_builtin_sym_end] = ACTIONS(2416), + [1044] = { + [sym_comment] = STATE(1044), + [ts_builtin_sym_end] = ACTIONS(2290), [sym_identifier] = ACTIONS(2288), [anon_sym_export] = ACTIONS(2288), [anon_sym_type] = ACTIONS(2288), @@ -148875,260 +147763,675 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2288), [anon_sym_interface] = ACTIONS(2288), [anon_sym_enum] = ACTIONS(2288), - [sym__automatic_semicolon] = ACTIONS(2418), + [sym__automatic_semicolon] = ACTIONS(2290), [sym_html_comment] = ACTIONS(5), }, - [1055] = { - [sym_comment] = STATE(1055), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [1045] = { + [sym_comment] = STATE(1045), + [sym_identifier] = ACTIONS(3183), + [anon_sym_export] = ACTIONS(3183), + [anon_sym_default] = ACTIONS(3183), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_namespace] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_RBRACE] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(3183), + [anon_sym_import] = ACTIONS(3183), + [anon_sym_with] = ACTIONS(3183), + [anon_sym_var] = ACTIONS(3183), + [anon_sym_let] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_switch] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym_await] = ACTIONS(3183), + [anon_sym_while] = ACTIONS(3183), + [anon_sym_do] = ACTIONS(3183), + [anon_sym_try] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_debugger] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym_case] = ACTIONS(3183), + [anon_sym_finally] = ACTIONS(3183), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_LTtemplate_GT] = ACTIONS(3183), + [anon_sym_DQUOTE] = ACTIONS(3183), + [anon_sym_SQUOTE] = ACTIONS(3183), + [anon_sym_class] = ACTIONS(3183), + [anon_sym_async] = ACTIONS(3183), + [anon_sym_function] = ACTIONS(3183), + [anon_sym_new] = ACTIONS(3183), + [anon_sym_using] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_SLASH] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_void] = ACTIONS(3183), + [anon_sym_delete] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3183), + [sym_number] = ACTIONS(3183), + [sym_private_property_identifier] = ACTIONS(3183), + [sym_this] = ACTIONS(3183), + [sym_super] = ACTIONS(3183), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_null] = ACTIONS(3183), + [sym_undefined] = ACTIONS(3183), + [anon_sym_AT] = ACTIONS(3183), + [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_abstract] = ACTIONS(3183), + [anon_sym_interface] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), [sym_html_comment] = ACTIONS(5), }, - [1056] = { - [sym_comment] = STATE(1056), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [1046] = { + [sym_comment] = STATE(1046), + [sym_identifier] = ACTIONS(3191), + [anon_sym_export] = ACTIONS(3191), + [anon_sym_default] = ACTIONS(3191), + [anon_sym_type] = ACTIONS(3191), + [anon_sym_namespace] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_RBRACE] = ACTIONS(3191), + [anon_sym_typeof] = ACTIONS(3191), + [anon_sym_import] = ACTIONS(3191), + [anon_sym_with] = ACTIONS(3191), + [anon_sym_var] = ACTIONS(3191), + [anon_sym_let] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_switch] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym_await] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_do] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_debugger] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_throw] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3257), + [anon_sym_case] = ACTIONS(3191), + [anon_sym_yield] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_LTtemplate_GT] = ACTIONS(3191), + [anon_sym_DQUOTE] = ACTIONS(3191), + [anon_sym_SQUOTE] = ACTIONS(3191), + [anon_sym_class] = ACTIONS(3191), + [anon_sym_async] = ACTIONS(3191), + [anon_sym_function] = ACTIONS(3191), + [anon_sym_new] = ACTIONS(3191), + [anon_sym_using] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_void] = ACTIONS(3191), + [anon_sym_delete] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3191), + [sym_number] = ACTIONS(3191), + [sym_private_property_identifier] = ACTIONS(3191), + [sym_this] = ACTIONS(3191), + [sym_super] = ACTIONS(3191), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_null] = ACTIONS(3191), + [sym_undefined] = ACTIONS(3191), + [anon_sym_AT] = ACTIONS(3191), + [anon_sym_static] = ACTIONS(3191), + [anon_sym_readonly] = ACTIONS(3191), + [anon_sym_get] = ACTIONS(3191), + [anon_sym_set] = ACTIONS(3191), + [anon_sym_declare] = ACTIONS(3191), + [anon_sym_public] = ACTIONS(3191), + [anon_sym_private] = ACTIONS(3191), + [anon_sym_protected] = ACTIONS(3191), + [anon_sym_override] = ACTIONS(3191), + [anon_sym_module] = ACTIONS(3191), + [anon_sym_any] = ACTIONS(3191), + [anon_sym_number] = ACTIONS(3191), + [anon_sym_boolean] = ACTIONS(3191), + [anon_sym_string] = ACTIONS(3191), + [anon_sym_symbol] = ACTIONS(3191), + [anon_sym_object] = ACTIONS(3191), + [anon_sym_abstract] = ACTIONS(3191), + [anon_sym_interface] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), + [sym__automatic_semicolon] = ACTIONS(3259), [sym_html_comment] = ACTIONS(5), }, - [1057] = { - [sym_comment] = STATE(1057), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1047] = { + [sym_statement_block] = STATE(1600), + [sym_comment] = STATE(1047), + [ts_builtin_sym_end] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(3263), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [sym_html_comment] = ACTIONS(5), + }, + [1048] = { + [sym_statement_block] = STATE(1600), + [sym_comment] = STATE(1048), + [ts_builtin_sym_end] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_DOT] = ACTIONS(3265), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), + [sym_html_comment] = ACTIONS(5), + }, + [1049] = { + [sym_comment] = STATE(1049), + [sym_identifier] = ACTIONS(2280), + [anon_sym_export] = ACTIONS(2280), + [anon_sym_default] = ACTIONS(2280), + [anon_sym_type] = ACTIONS(2280), + [anon_sym_namespace] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2280), + [anon_sym_RBRACE] = ACTIONS(2280), + [anon_sym_typeof] = ACTIONS(2280), + [anon_sym_import] = ACTIONS(2280), + [anon_sym_with] = ACTIONS(2280), + [anon_sym_var] = ACTIONS(2280), + [anon_sym_let] = ACTIONS(2280), + [anon_sym_const] = ACTIONS(2280), + [anon_sym_BANG] = ACTIONS(2280), + [anon_sym_if] = ACTIONS(2280), + [anon_sym_switch] = ACTIONS(2280), + [anon_sym_for] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_await] = ACTIONS(2280), + [anon_sym_while] = ACTIONS(2280), + [anon_sym_do] = ACTIONS(2280), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_break] = ACTIONS(2280), + [anon_sym_continue] = ACTIONS(2280), + [anon_sym_debugger] = ACTIONS(2280), + [anon_sym_return] = ACTIONS(2280), + [anon_sym_throw] = ACTIONS(2280), + [anon_sym_SEMI] = ACTIONS(2280), + [anon_sym_case] = ACTIONS(2280), + [anon_sym_yield] = ACTIONS(2280), + [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_LTtemplate_GT] = ACTIONS(2280), + [anon_sym_DQUOTE] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2280), + [anon_sym_class] = ACTIONS(2280), + [anon_sym_async] = ACTIONS(2280), + [anon_sym_function] = ACTIONS(2280), + [anon_sym_new] = ACTIONS(2280), + [anon_sym_using] = ACTIONS(2280), + [anon_sym_PLUS] = ACTIONS(2280), + [anon_sym_DASH] = ACTIONS(2280), + [anon_sym_SLASH] = ACTIONS(2280), + [anon_sym_LT] = ACTIONS(2280), + [anon_sym_TILDE] = ACTIONS(2280), + [anon_sym_void] = ACTIONS(2280), + [anon_sym_delete] = ACTIONS(2280), + [anon_sym_PLUS_PLUS] = ACTIONS(2280), + [anon_sym_DASH_DASH] = ACTIONS(2280), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(2280), + [sym_number] = ACTIONS(2280), + [sym_private_property_identifier] = ACTIONS(2280), + [sym_this] = ACTIONS(2280), + [sym_super] = ACTIONS(2280), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_undefined] = ACTIONS(2280), + [anon_sym_AT] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(2280), + [anon_sym_readonly] = ACTIONS(2280), + [anon_sym_get] = ACTIONS(2280), + [anon_sym_set] = ACTIONS(2280), + [anon_sym_declare] = ACTIONS(2280), + [anon_sym_public] = ACTIONS(2280), + [anon_sym_private] = ACTIONS(2280), + [anon_sym_protected] = ACTIONS(2280), + [anon_sym_override] = ACTIONS(2280), + [anon_sym_module] = ACTIONS(2280), + [anon_sym_any] = ACTIONS(2280), + [anon_sym_number] = ACTIONS(2280), + [anon_sym_boolean] = ACTIONS(2280), + [anon_sym_string] = ACTIONS(2280), + [anon_sym_symbol] = ACTIONS(2280), + [anon_sym_object] = ACTIONS(2280), + [anon_sym_abstract] = ACTIONS(2280), + [anon_sym_interface] = ACTIONS(2280), + [anon_sym_enum] = ACTIONS(2280), + [sym__automatic_semicolon] = ACTIONS(2406), [sym_html_comment] = ACTIONS(5), }, - [1058] = { - [sym_comment] = STATE(1058), + [1050] = { + [sym_comment] = STATE(1050), + [ts_builtin_sym_end] = ACTIONS(2302), + [sym_identifier] = ACTIONS(2300), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_type] = ACTIONS(2300), + [anon_sym_namespace] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2300), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2300), + [anon_sym_import] = ACTIONS(2300), + [anon_sym_with] = ACTIONS(2300), + [anon_sym_var] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(2300), + [anon_sym_else] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_switch] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_await] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_debugger] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_throw] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2300), + [anon_sym_LTtemplate_GT] = ACTIONS(2300), + [anon_sym_DQUOTE] = ACTIONS(2300), + [anon_sym_SQUOTE] = ACTIONS(2300), + [anon_sym_class] = ACTIONS(2300), + [anon_sym_async] = ACTIONS(2300), + [anon_sym_function] = ACTIONS(2300), + [anon_sym_new] = ACTIONS(2300), + [anon_sym_using] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_LT] = ACTIONS(2300), + [anon_sym_TILDE] = ACTIONS(2300), + [anon_sym_void] = ACTIONS(2300), + [anon_sym_delete] = ACTIONS(2300), + [anon_sym_PLUS_PLUS] = ACTIONS(2300), + [anon_sym_DASH_DASH] = ACTIONS(2300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2300), + [sym_number] = ACTIONS(2300), + [sym_private_property_identifier] = ACTIONS(2300), + [sym_this] = ACTIONS(2300), + [sym_super] = ACTIONS(2300), + [sym_true] = ACTIONS(2300), + [sym_false] = ACTIONS(2300), + [sym_null] = ACTIONS(2300), + [sym_undefined] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2300), + [anon_sym_static] = ACTIONS(2300), + [anon_sym_readonly] = ACTIONS(2300), + [anon_sym_get] = ACTIONS(2300), + [anon_sym_set] = ACTIONS(2300), + [anon_sym_declare] = ACTIONS(2300), + [anon_sym_public] = ACTIONS(2300), + [anon_sym_private] = ACTIONS(2300), + [anon_sym_protected] = ACTIONS(2300), + [anon_sym_override] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_any] = ACTIONS(2300), + [anon_sym_number] = ACTIONS(2300), + [anon_sym_boolean] = ACTIONS(2300), + [anon_sym_string] = ACTIONS(2300), + [anon_sym_symbol] = ACTIONS(2300), + [anon_sym_object] = ACTIONS(2300), + [anon_sym_abstract] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2300), + [anon_sym_enum] = ACTIONS(2300), + [sym__automatic_semicolon] = ACTIONS(2302), + [sym_html_comment] = ACTIONS(5), + }, + [1051] = { + [sym_comment] = STATE(1051), + [sym_identifier] = ACTIONS(3267), + [anon_sym_export] = ACTIONS(3267), + [anon_sym_default] = ACTIONS(3267), + [anon_sym_type] = ACTIONS(3267), + [anon_sym_namespace] = ACTIONS(3267), + [anon_sym_LBRACE] = ACTIONS(3267), + [anon_sym_RBRACE] = ACTIONS(3267), + [anon_sym_typeof] = ACTIONS(3267), + [anon_sym_import] = ACTIONS(3267), + [anon_sym_with] = ACTIONS(3267), + [anon_sym_var] = ACTIONS(3267), + [anon_sym_let] = ACTIONS(3267), + [anon_sym_const] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3267), + [anon_sym_else] = ACTIONS(3267), + [anon_sym_if] = ACTIONS(3267), + [anon_sym_switch] = ACTIONS(3267), + [anon_sym_for] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_await] = ACTIONS(3267), + [anon_sym_while] = ACTIONS(3267), + [anon_sym_do] = ACTIONS(3267), + [anon_sym_try] = ACTIONS(3267), + [anon_sym_break] = ACTIONS(3267), + [anon_sym_continue] = ACTIONS(3267), + [anon_sym_debugger] = ACTIONS(3267), + [anon_sym_return] = ACTIONS(3267), + [anon_sym_throw] = ACTIONS(3267), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_case] = ACTIONS(3267), + [anon_sym_yield] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_LTtemplate_GT] = ACTIONS(3267), + [anon_sym_DQUOTE] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [anon_sym_class] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3267), + [anon_sym_function] = ACTIONS(3267), + [anon_sym_new] = ACTIONS(3267), + [anon_sym_using] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3267), + [anon_sym_DASH] = ACTIONS(3267), + [anon_sym_SLASH] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3267), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_void] = ACTIONS(3267), + [anon_sym_delete] = ACTIONS(3267), + [anon_sym_PLUS_PLUS] = ACTIONS(3267), + [anon_sym_DASH_DASH] = ACTIONS(3267), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3267), + [sym_number] = ACTIONS(3267), + [sym_private_property_identifier] = ACTIONS(3267), + [sym_this] = ACTIONS(3267), + [sym_super] = ACTIONS(3267), + [sym_true] = ACTIONS(3267), + [sym_false] = ACTIONS(3267), + [sym_null] = ACTIONS(3267), + [sym_undefined] = ACTIONS(3267), + [anon_sym_AT] = ACTIONS(3267), + [anon_sym_static] = ACTIONS(3267), + [anon_sym_readonly] = ACTIONS(3267), + [anon_sym_get] = ACTIONS(3267), + [anon_sym_set] = ACTIONS(3267), + [anon_sym_declare] = ACTIONS(3267), + [anon_sym_public] = ACTIONS(3267), + [anon_sym_private] = ACTIONS(3267), + [anon_sym_protected] = ACTIONS(3267), + [anon_sym_override] = ACTIONS(3267), + [anon_sym_module] = ACTIONS(3267), + [anon_sym_any] = ACTIONS(3267), + [anon_sym_number] = ACTIONS(3267), + [anon_sym_boolean] = ACTIONS(3267), + [anon_sym_string] = ACTIONS(3267), + [anon_sym_symbol] = ACTIONS(3267), + [anon_sym_object] = ACTIONS(3267), + [anon_sym_abstract] = ACTIONS(3267), + [anon_sym_interface] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3267), + [sym_html_comment] = ACTIONS(5), + }, + [1052] = { + [sym_comment] = STATE(1052), + [sym_identifier] = ACTIONS(3269), + [anon_sym_export] = ACTIONS(3269), + [anon_sym_default] = ACTIONS(3269), + [anon_sym_type] = ACTIONS(3269), + [anon_sym_namespace] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3269), + [anon_sym_RBRACE] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_import] = ACTIONS(3269), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_var] = ACTIONS(3269), + [anon_sym_let] = ACTIONS(3269), + [anon_sym_const] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_else] = ACTIONS(3269), + [anon_sym_if] = ACTIONS(3269), + [anon_sym_switch] = ACTIONS(3269), + [anon_sym_for] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym_await] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_try] = ACTIONS(3269), + [anon_sym_break] = ACTIONS(3269), + [anon_sym_continue] = ACTIONS(3269), + [anon_sym_debugger] = ACTIONS(3269), + [anon_sym_return] = ACTIONS(3269), + [anon_sym_throw] = ACTIONS(3269), + [anon_sym_SEMI] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_LBRACK] = ACTIONS(3269), + [anon_sym_LTtemplate_GT] = ACTIONS(3269), + [anon_sym_DQUOTE] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3269), + [anon_sym_async] = ACTIONS(3269), + [anon_sym_function] = ACTIONS(3269), + [anon_sym_new] = ACTIONS(3269), + [anon_sym_using] = ACTIONS(3269), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3269), + [anon_sym_void] = ACTIONS(3269), + [anon_sym_delete] = ACTIONS(3269), + [anon_sym_PLUS_PLUS] = ACTIONS(3269), + [anon_sym_DASH_DASH] = ACTIONS(3269), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3269), + [sym_number] = ACTIONS(3269), + [sym_private_property_identifier] = ACTIONS(3269), + [sym_this] = ACTIONS(3269), + [sym_super] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [sym_null] = ACTIONS(3269), + [sym_undefined] = ACTIONS(3269), + [anon_sym_AT] = ACTIONS(3269), + [anon_sym_static] = ACTIONS(3269), + [anon_sym_readonly] = ACTIONS(3269), + [anon_sym_get] = ACTIONS(3269), + [anon_sym_set] = ACTIONS(3269), + [anon_sym_declare] = ACTIONS(3269), + [anon_sym_public] = ACTIONS(3269), + [anon_sym_private] = ACTIONS(3269), + [anon_sym_protected] = ACTIONS(3269), + [anon_sym_override] = ACTIONS(3269), + [anon_sym_module] = ACTIONS(3269), + [anon_sym_any] = ACTIONS(3269), + [anon_sym_number] = ACTIONS(3269), + [anon_sym_boolean] = ACTIONS(3269), + [anon_sym_string] = ACTIONS(3269), + [anon_sym_symbol] = ACTIONS(3269), + [anon_sym_object] = ACTIONS(3269), + [anon_sym_abstract] = ACTIONS(3269), + [anon_sym_interface] = ACTIONS(3269), + [anon_sym_enum] = ACTIONS(3269), + [sym_html_comment] = ACTIONS(5), + }, + [1053] = { + [sym_comment] = STATE(1053), [sym_identifier] = ACTIONS(2160), [anon_sym_export] = ACTIONS(2160), [anon_sym_default] = ACTIONS(2160), @@ -149143,7 +148446,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2160), [anon_sym_const] = ACTIONS(2160), [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), [anon_sym_if] = ACTIONS(2160), [anon_sym_switch] = ACTIONS(2160), [anon_sym_for] = ACTIONS(2160), @@ -149208,1255 +148510,1339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2160), [anon_sym_interface] = ACTIONS(2160), [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(2164), [sym_html_comment] = ACTIONS(5), }, - [1059] = { - [sym_comment] = STATE(1059), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1054] = { + [sym_comment] = STATE(1054), + [sym_identifier] = ACTIONS(3271), + [anon_sym_export] = ACTIONS(3271), + [anon_sym_default] = ACTIONS(3271), + [anon_sym_type] = ACTIONS(3271), + [anon_sym_namespace] = ACTIONS(3271), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_RBRACE] = ACTIONS(3271), + [anon_sym_typeof] = ACTIONS(3271), + [anon_sym_import] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3271), + [anon_sym_var] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3271), + [anon_sym_const] = ACTIONS(3271), + [anon_sym_BANG] = ACTIONS(3271), + [anon_sym_else] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3271), + [anon_sym_switch] = ACTIONS(3271), + [anon_sym_for] = ACTIONS(3271), + [anon_sym_LPAREN] = ACTIONS(3271), + [anon_sym_await] = ACTIONS(3271), + [anon_sym_while] = ACTIONS(3271), + [anon_sym_do] = ACTIONS(3271), + [anon_sym_try] = ACTIONS(3271), + [anon_sym_break] = ACTIONS(3271), + [anon_sym_continue] = ACTIONS(3271), + [anon_sym_debugger] = ACTIONS(3271), + [anon_sym_return] = ACTIONS(3271), + [anon_sym_throw] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3271), + [anon_sym_case] = ACTIONS(3271), + [anon_sym_yield] = ACTIONS(3271), + [anon_sym_LBRACK] = ACTIONS(3271), + [anon_sym_LTtemplate_GT] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3271), + [anon_sym_SQUOTE] = ACTIONS(3271), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_async] = ACTIONS(3271), + [anon_sym_function] = ACTIONS(3271), + [anon_sym_new] = ACTIONS(3271), + [anon_sym_using] = ACTIONS(3271), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_SLASH] = ACTIONS(3271), + [anon_sym_LT] = ACTIONS(3271), + [anon_sym_TILDE] = ACTIONS(3271), + [anon_sym_void] = ACTIONS(3271), + [anon_sym_delete] = ACTIONS(3271), + [anon_sym_PLUS_PLUS] = ACTIONS(3271), + [anon_sym_DASH_DASH] = ACTIONS(3271), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3271), + [sym_number] = ACTIONS(3271), + [sym_private_property_identifier] = ACTIONS(3271), + [sym_this] = ACTIONS(3271), + [sym_super] = ACTIONS(3271), + [sym_true] = ACTIONS(3271), + [sym_false] = ACTIONS(3271), + [sym_null] = ACTIONS(3271), + [sym_undefined] = ACTIONS(3271), + [anon_sym_AT] = ACTIONS(3271), + [anon_sym_static] = ACTIONS(3271), + [anon_sym_readonly] = ACTIONS(3271), + [anon_sym_get] = ACTIONS(3271), + [anon_sym_set] = ACTIONS(3271), + [anon_sym_declare] = ACTIONS(3271), + [anon_sym_public] = ACTIONS(3271), + [anon_sym_private] = ACTIONS(3271), + [anon_sym_protected] = ACTIONS(3271), + [anon_sym_override] = ACTIONS(3271), + [anon_sym_module] = ACTIONS(3271), + [anon_sym_any] = ACTIONS(3271), + [anon_sym_number] = ACTIONS(3271), + [anon_sym_boolean] = ACTIONS(3271), + [anon_sym_string] = ACTIONS(3271), + [anon_sym_symbol] = ACTIONS(3271), + [anon_sym_object] = ACTIONS(3271), + [anon_sym_abstract] = ACTIONS(3271), + [anon_sym_interface] = ACTIONS(3271), + [anon_sym_enum] = ACTIONS(3271), + [sym_html_comment] = ACTIONS(5), + }, + [1055] = { + [sym_comment] = STATE(1055), + [sym_identifier] = ACTIONS(3273), + [anon_sym_export] = ACTIONS(3273), + [anon_sym_default] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3273), + [anon_sym_namespace] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(3273), + [anon_sym_RBRACE] = ACTIONS(3273), + [anon_sym_typeof] = ACTIONS(3273), + [anon_sym_import] = ACTIONS(3273), + [anon_sym_with] = ACTIONS(3273), + [anon_sym_var] = ACTIONS(3273), + [anon_sym_let] = ACTIONS(3273), + [anon_sym_const] = ACTIONS(3273), + [anon_sym_BANG] = ACTIONS(3273), + [anon_sym_else] = ACTIONS(3273), + [anon_sym_if] = ACTIONS(3273), + [anon_sym_switch] = ACTIONS(3273), + [anon_sym_for] = ACTIONS(3273), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_await] = ACTIONS(3273), + [anon_sym_while] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3273), + [anon_sym_try] = ACTIONS(3273), + [anon_sym_break] = ACTIONS(3273), + [anon_sym_continue] = ACTIONS(3273), + [anon_sym_debugger] = ACTIONS(3273), + [anon_sym_return] = ACTIONS(3273), + [anon_sym_throw] = ACTIONS(3273), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_case] = ACTIONS(3273), + [anon_sym_yield] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_LTtemplate_GT] = ACTIONS(3273), + [anon_sym_DQUOTE] = ACTIONS(3273), + [anon_sym_SQUOTE] = ACTIONS(3273), + [anon_sym_class] = ACTIONS(3273), + [anon_sym_async] = ACTIONS(3273), + [anon_sym_function] = ACTIONS(3273), + [anon_sym_new] = ACTIONS(3273), + [anon_sym_using] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3273), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_SLASH] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_void] = ACTIONS(3273), + [anon_sym_delete] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_DASH_DASH] = ACTIONS(3273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3273), + [sym_number] = ACTIONS(3273), + [sym_private_property_identifier] = ACTIONS(3273), + [sym_this] = ACTIONS(3273), + [sym_super] = ACTIONS(3273), + [sym_true] = ACTIONS(3273), + [sym_false] = ACTIONS(3273), + [sym_null] = ACTIONS(3273), + [sym_undefined] = ACTIONS(3273), + [anon_sym_AT] = ACTIONS(3273), + [anon_sym_static] = ACTIONS(3273), + [anon_sym_readonly] = ACTIONS(3273), + [anon_sym_get] = ACTIONS(3273), + [anon_sym_set] = ACTIONS(3273), + [anon_sym_declare] = ACTIONS(3273), + [anon_sym_public] = ACTIONS(3273), + [anon_sym_private] = ACTIONS(3273), + [anon_sym_protected] = ACTIONS(3273), + [anon_sym_override] = ACTIONS(3273), + [anon_sym_module] = ACTIONS(3273), + [anon_sym_any] = ACTIONS(3273), + [anon_sym_number] = ACTIONS(3273), + [anon_sym_boolean] = ACTIONS(3273), + [anon_sym_string] = ACTIONS(3273), + [anon_sym_symbol] = ACTIONS(3273), + [anon_sym_object] = ACTIONS(3273), + [anon_sym_abstract] = ACTIONS(3273), + [anon_sym_interface] = ACTIONS(3273), + [anon_sym_enum] = ACTIONS(3273), + [sym_html_comment] = ACTIONS(5), + }, + [1056] = { + [sym_comment] = STATE(1056), + [sym_identifier] = ACTIONS(3275), + [anon_sym_export] = ACTIONS(3275), + [anon_sym_default] = ACTIONS(3275), + [anon_sym_type] = ACTIONS(3275), + [anon_sym_namespace] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_typeof] = ACTIONS(3275), + [anon_sym_import] = ACTIONS(3275), + [anon_sym_with] = ACTIONS(3275), + [anon_sym_var] = ACTIONS(3275), + [anon_sym_let] = ACTIONS(3275), + [anon_sym_const] = ACTIONS(3275), + [anon_sym_BANG] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_switch] = ACTIONS(3275), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_await] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3275), + [anon_sym_do] = ACTIONS(3275), + [anon_sym_try] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_debugger] = ACTIONS(3275), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_throw] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3275), + [anon_sym_case] = ACTIONS(3275), + [anon_sym_yield] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_LTtemplate_GT] = ACTIONS(3275), + [anon_sym_DQUOTE] = ACTIONS(3275), + [anon_sym_SQUOTE] = ACTIONS(3275), + [anon_sym_class] = ACTIONS(3275), + [anon_sym_async] = ACTIONS(3275), + [anon_sym_function] = ACTIONS(3275), + [anon_sym_new] = ACTIONS(3275), + [anon_sym_using] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_TILDE] = ACTIONS(3275), + [anon_sym_void] = ACTIONS(3275), + [anon_sym_delete] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3275), + [sym_number] = ACTIONS(3275), + [sym_private_property_identifier] = ACTIONS(3275), + [sym_this] = ACTIONS(3275), + [sym_super] = ACTIONS(3275), + [sym_true] = ACTIONS(3275), + [sym_false] = ACTIONS(3275), + [sym_null] = ACTIONS(3275), + [sym_undefined] = ACTIONS(3275), + [anon_sym_AT] = ACTIONS(3275), + [anon_sym_static] = ACTIONS(3275), + [anon_sym_readonly] = ACTIONS(3275), + [anon_sym_get] = ACTIONS(3275), + [anon_sym_set] = ACTIONS(3275), + [anon_sym_declare] = ACTIONS(3275), + [anon_sym_public] = ACTIONS(3275), + [anon_sym_private] = ACTIONS(3275), + [anon_sym_protected] = ACTIONS(3275), + [anon_sym_override] = ACTIONS(3275), + [anon_sym_module] = ACTIONS(3275), + [anon_sym_any] = ACTIONS(3275), + [anon_sym_number] = ACTIONS(3275), + [anon_sym_boolean] = ACTIONS(3275), + [anon_sym_string] = ACTIONS(3275), + [anon_sym_symbol] = ACTIONS(3275), + [anon_sym_object] = ACTIONS(3275), + [anon_sym_abstract] = ACTIONS(3275), + [anon_sym_interface] = ACTIONS(3275), + [anon_sym_enum] = ACTIONS(3275), + [sym_html_comment] = ACTIONS(5), + }, + [1057] = { + [sym_comment] = STATE(1057), + [sym_identifier] = ACTIONS(3277), + [anon_sym_export] = ACTIONS(3277), + [anon_sym_default] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_namespace] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_typeof] = ACTIONS(3277), + [anon_sym_import] = ACTIONS(3277), + [anon_sym_with] = ACTIONS(3277), + [anon_sym_var] = ACTIONS(3277), + [anon_sym_let] = ACTIONS(3277), + [anon_sym_const] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_switch] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_await] = ACTIONS(3277), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_do] = ACTIONS(3277), + [anon_sym_try] = ACTIONS(3277), + [anon_sym_break] = ACTIONS(3277), + [anon_sym_continue] = ACTIONS(3277), + [anon_sym_debugger] = ACTIONS(3277), + [anon_sym_return] = ACTIONS(3277), + [anon_sym_throw] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_case] = ACTIONS(3277), + [anon_sym_yield] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_LTtemplate_GT] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(3277), + [anon_sym_SQUOTE] = ACTIONS(3277), + [anon_sym_class] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_function] = ACTIONS(3277), + [anon_sym_new] = ACTIONS(3277), + [anon_sym_using] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_void] = ACTIONS(3277), + [anon_sym_delete] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3277), + [sym_number] = ACTIONS(3277), + [sym_private_property_identifier] = ACTIONS(3277), + [sym_this] = ACTIONS(3277), + [sym_super] = ACTIONS(3277), + [sym_true] = ACTIONS(3277), + [sym_false] = ACTIONS(3277), + [sym_null] = ACTIONS(3277), + [sym_undefined] = ACTIONS(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_static] = ACTIONS(3277), + [anon_sym_readonly] = ACTIONS(3277), + [anon_sym_get] = ACTIONS(3277), + [anon_sym_set] = ACTIONS(3277), + [anon_sym_declare] = ACTIONS(3277), + [anon_sym_public] = ACTIONS(3277), + [anon_sym_private] = ACTIONS(3277), + [anon_sym_protected] = ACTIONS(3277), + [anon_sym_override] = ACTIONS(3277), + [anon_sym_module] = ACTIONS(3277), + [anon_sym_any] = ACTIONS(3277), + [anon_sym_number] = ACTIONS(3277), + [anon_sym_boolean] = ACTIONS(3277), + [anon_sym_string] = ACTIONS(3277), + [anon_sym_symbol] = ACTIONS(3277), + [anon_sym_object] = ACTIONS(3277), + [anon_sym_abstract] = ACTIONS(3277), + [anon_sym_interface] = ACTIONS(3277), + [anon_sym_enum] = ACTIONS(3277), + [sym_html_comment] = ACTIONS(5), + }, + [1058] = { + [sym_comment] = STATE(1058), + [sym_identifier] = ACTIONS(3279), + [anon_sym_export] = ACTIONS(3279), + [anon_sym_default] = ACTIONS(3279), + [anon_sym_type] = ACTIONS(3279), + [anon_sym_namespace] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_typeof] = ACTIONS(3279), + [anon_sym_import] = ACTIONS(3279), + [anon_sym_with] = ACTIONS(3279), + [anon_sym_var] = ACTIONS(3279), + [anon_sym_let] = ACTIONS(3279), + [anon_sym_const] = ACTIONS(3279), + [anon_sym_BANG] = ACTIONS(3279), + [anon_sym_else] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_switch] = ACTIONS(3279), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3279), + [anon_sym_await] = ACTIONS(3279), + [anon_sym_while] = ACTIONS(3279), + [anon_sym_do] = ACTIONS(3279), + [anon_sym_try] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_debugger] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_throw] = ACTIONS(3279), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_case] = ACTIONS(3279), + [anon_sym_yield] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3279), + [anon_sym_LTtemplate_GT] = ACTIONS(3279), + [anon_sym_DQUOTE] = ACTIONS(3279), + [anon_sym_SQUOTE] = ACTIONS(3279), + [anon_sym_class] = ACTIONS(3279), + [anon_sym_async] = ACTIONS(3279), + [anon_sym_function] = ACTIONS(3279), + [anon_sym_new] = ACTIONS(3279), + [anon_sym_using] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_SLASH] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_void] = ACTIONS(3279), + [anon_sym_delete] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_DASH_DASH] = ACTIONS(3279), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3279), + [sym_number] = ACTIONS(3279), + [sym_private_property_identifier] = ACTIONS(3279), + [sym_this] = ACTIONS(3279), + [sym_super] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_null] = ACTIONS(3279), + [sym_undefined] = ACTIONS(3279), + [anon_sym_AT] = ACTIONS(3279), + [anon_sym_static] = ACTIONS(3279), + [anon_sym_readonly] = ACTIONS(3279), + [anon_sym_get] = ACTIONS(3279), + [anon_sym_set] = ACTIONS(3279), + [anon_sym_declare] = ACTIONS(3279), + [anon_sym_public] = ACTIONS(3279), + [anon_sym_private] = ACTIONS(3279), + [anon_sym_protected] = ACTIONS(3279), + [anon_sym_override] = ACTIONS(3279), + [anon_sym_module] = ACTIONS(3279), + [anon_sym_any] = ACTIONS(3279), + [anon_sym_number] = ACTIONS(3279), + [anon_sym_boolean] = ACTIONS(3279), + [anon_sym_string] = ACTIONS(3279), + [anon_sym_symbol] = ACTIONS(3279), + [anon_sym_object] = ACTIONS(3279), + [anon_sym_abstract] = ACTIONS(3279), + [anon_sym_interface] = ACTIONS(3279), + [anon_sym_enum] = ACTIONS(3279), + [sym_html_comment] = ACTIONS(5), + }, + [1059] = { + [sym_comment] = STATE(1059), + [sym_identifier] = ACTIONS(3281), + [anon_sym_export] = ACTIONS(3281), + [anon_sym_default] = ACTIONS(3281), + [anon_sym_type] = ACTIONS(3281), + [anon_sym_namespace] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_typeof] = ACTIONS(3281), + [anon_sym_import] = ACTIONS(3281), + [anon_sym_with] = ACTIONS(3281), + [anon_sym_var] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_switch] = ACTIONS(3281), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_await] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_break] = ACTIONS(3281), + [anon_sym_continue] = ACTIONS(3281), + [anon_sym_debugger] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_throw] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_case] = ACTIONS(3281), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LTtemplate_GT] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_SQUOTE] = ACTIONS(3281), + [anon_sym_class] = ACTIONS(3281), + [anon_sym_async] = ACTIONS(3281), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_using] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_void] = ACTIONS(3281), + [anon_sym_delete] = ACTIONS(3281), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3281), + [sym_number] = ACTIONS(3281), + [sym_private_property_identifier] = ACTIONS(3281), + [sym_this] = ACTIONS(3281), + [sym_super] = ACTIONS(3281), + [sym_true] = ACTIONS(3281), + [sym_false] = ACTIONS(3281), + [sym_null] = ACTIONS(3281), + [sym_undefined] = ACTIONS(3281), + [anon_sym_AT] = ACTIONS(3281), + [anon_sym_static] = ACTIONS(3281), + [anon_sym_readonly] = ACTIONS(3281), + [anon_sym_get] = ACTIONS(3281), + [anon_sym_set] = ACTIONS(3281), + [anon_sym_declare] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3281), + [anon_sym_private] = ACTIONS(3281), + [anon_sym_protected] = ACTIONS(3281), + [anon_sym_override] = ACTIONS(3281), + [anon_sym_module] = ACTIONS(3281), + [anon_sym_any] = ACTIONS(3281), + [anon_sym_number] = ACTIONS(3281), + [anon_sym_boolean] = ACTIONS(3281), + [anon_sym_string] = ACTIONS(3281), + [anon_sym_symbol] = ACTIONS(3281), + [anon_sym_object] = ACTIONS(3281), + [anon_sym_abstract] = ACTIONS(3281), + [anon_sym_interface] = ACTIONS(3281), + [anon_sym_enum] = ACTIONS(3281), [sym_html_comment] = ACTIONS(5), }, [1060] = { [sym_comment] = STATE(1060), - [sym_identifier] = ACTIONS(2262), - [anon_sym_export] = ACTIONS(2262), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_type] = ACTIONS(2262), - [anon_sym_namespace] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_import] = ACTIONS(2262), - [anon_sym_with] = ACTIONS(2262), - [anon_sym_var] = ACTIONS(2262), - [anon_sym_let] = ACTIONS(2262), - [anon_sym_const] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_if] = ACTIONS(2262), - [anon_sym_switch] = ACTIONS(2262), - [anon_sym_for] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_await] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2262), - [anon_sym_do] = ACTIONS(2262), - [anon_sym_try] = ACTIONS(2262), - [anon_sym_break] = ACTIONS(2262), - [anon_sym_continue] = ACTIONS(2262), - [anon_sym_debugger] = ACTIONS(2262), - [anon_sym_return] = ACTIONS(2262), - [anon_sym_throw] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_case] = ACTIONS(2262), - [anon_sym_yield] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_LTtemplate_GT] = ACTIONS(2262), - [anon_sym_DQUOTE] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(2262), - [anon_sym_class] = ACTIONS(2262), - [anon_sym_async] = ACTIONS(2262), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_new] = ACTIONS(2262), - [anon_sym_using] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_SLASH] = ACTIONS(2262), - [anon_sym_LT] = ACTIONS(2262), - [anon_sym_TILDE] = ACTIONS(2262), - [anon_sym_void] = ACTIONS(2262), - [anon_sym_delete] = ACTIONS(2262), - [anon_sym_PLUS_PLUS] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(2262), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2262), - [sym_number] = ACTIONS(2262), - [sym_private_property_identifier] = ACTIONS(2262), - [sym_this] = ACTIONS(2262), - [sym_super] = ACTIONS(2262), - [sym_true] = ACTIONS(2262), - [sym_false] = ACTIONS(2262), - [sym_null] = ACTIONS(2262), - [sym_undefined] = ACTIONS(2262), - [anon_sym_AT] = ACTIONS(2262), - [anon_sym_static] = ACTIONS(2262), - [anon_sym_readonly] = ACTIONS(2262), - [anon_sym_get] = ACTIONS(2262), - [anon_sym_set] = ACTIONS(2262), - [anon_sym_declare] = ACTIONS(2262), - [anon_sym_public] = ACTIONS(2262), - [anon_sym_private] = ACTIONS(2262), - [anon_sym_protected] = ACTIONS(2262), - [anon_sym_override] = ACTIONS(2262), - [anon_sym_module] = ACTIONS(2262), - [anon_sym_any] = ACTIONS(2262), - [anon_sym_number] = ACTIONS(2262), - [anon_sym_boolean] = ACTIONS(2262), - [anon_sym_string] = ACTIONS(2262), - [anon_sym_symbol] = ACTIONS(2262), - [anon_sym_object] = ACTIONS(2262), - [anon_sym_abstract] = ACTIONS(2262), - [anon_sym_interface] = ACTIONS(2262), - [anon_sym_enum] = ACTIONS(2262), - [sym__automatic_semicolon] = ACTIONS(2264), + [sym_identifier] = ACTIONS(3277), + [anon_sym_export] = ACTIONS(3277), + [anon_sym_default] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_namespace] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_typeof] = ACTIONS(3277), + [anon_sym_import] = ACTIONS(3277), + [anon_sym_with] = ACTIONS(3277), + [anon_sym_var] = ACTIONS(3277), + [anon_sym_let] = ACTIONS(3277), + [anon_sym_const] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_switch] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_await] = ACTIONS(3277), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_do] = ACTIONS(3277), + [anon_sym_try] = ACTIONS(3277), + [anon_sym_break] = ACTIONS(3277), + [anon_sym_continue] = ACTIONS(3277), + [anon_sym_debugger] = ACTIONS(3277), + [anon_sym_return] = ACTIONS(3277), + [anon_sym_throw] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_case] = ACTIONS(3277), + [anon_sym_yield] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_LTtemplate_GT] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(3277), + [anon_sym_SQUOTE] = ACTIONS(3277), + [anon_sym_class] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_function] = ACTIONS(3277), + [anon_sym_new] = ACTIONS(3277), + [anon_sym_using] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_void] = ACTIONS(3277), + [anon_sym_delete] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3277), + [sym_number] = ACTIONS(3277), + [sym_private_property_identifier] = ACTIONS(3277), + [sym_this] = ACTIONS(3277), + [sym_super] = ACTIONS(3277), + [sym_true] = ACTIONS(3277), + [sym_false] = ACTIONS(3277), + [sym_null] = ACTIONS(3277), + [sym_undefined] = ACTIONS(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_static] = ACTIONS(3277), + [anon_sym_readonly] = ACTIONS(3277), + [anon_sym_get] = ACTIONS(3277), + [anon_sym_set] = ACTIONS(3277), + [anon_sym_declare] = ACTIONS(3277), + [anon_sym_public] = ACTIONS(3277), + [anon_sym_private] = ACTIONS(3277), + [anon_sym_protected] = ACTIONS(3277), + [anon_sym_override] = ACTIONS(3277), + [anon_sym_module] = ACTIONS(3277), + [anon_sym_any] = ACTIONS(3277), + [anon_sym_number] = ACTIONS(3277), + [anon_sym_boolean] = ACTIONS(3277), + [anon_sym_string] = ACTIONS(3277), + [anon_sym_symbol] = ACTIONS(3277), + [anon_sym_object] = ACTIONS(3277), + [anon_sym_abstract] = ACTIONS(3277), + [anon_sym_interface] = ACTIONS(3277), + [anon_sym_enum] = ACTIONS(3277), [sym_html_comment] = ACTIONS(5), }, [1061] = { [sym_comment] = STATE(1061), - [sym_identifier] = ACTIONS(3251), - [anon_sym_export] = ACTIONS(3251), - [anon_sym_default] = ACTIONS(3251), - [anon_sym_type] = ACTIONS(3251), - [anon_sym_namespace] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_RBRACE] = ACTIONS(3251), - [anon_sym_typeof] = ACTIONS(3251), - [anon_sym_import] = ACTIONS(3251), - [anon_sym_with] = ACTIONS(3251), - [anon_sym_var] = ACTIONS(3251), - [anon_sym_let] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_else] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_switch] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_await] = ACTIONS(3251), - [anon_sym_while] = ACTIONS(3251), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_try] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_debugger] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_throw] = ACTIONS(3251), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_case] = ACTIONS(3251), - [anon_sym_yield] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_LTtemplate_GT] = ACTIONS(3251), - [anon_sym_DQUOTE] = ACTIONS(3251), - [anon_sym_SQUOTE] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_async] = ACTIONS(3251), - [anon_sym_function] = ACTIONS(3251), - [anon_sym_new] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_SLASH] = ACTIONS(3251), - [anon_sym_LT] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_void] = ACTIONS(3251), - [anon_sym_delete] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3251), - [sym_number] = ACTIONS(3251), - [sym_private_property_identifier] = ACTIONS(3251), - [sym_this] = ACTIONS(3251), - [sym_super] = ACTIONS(3251), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [sym_null] = ACTIONS(3251), - [sym_undefined] = ACTIONS(3251), - [anon_sym_AT] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_readonly] = ACTIONS(3251), - [anon_sym_get] = ACTIONS(3251), - [anon_sym_set] = ACTIONS(3251), - [anon_sym_declare] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_protected] = ACTIONS(3251), - [anon_sym_override] = ACTIONS(3251), - [anon_sym_module] = ACTIONS(3251), - [anon_sym_any] = ACTIONS(3251), - [anon_sym_number] = ACTIONS(3251), - [anon_sym_boolean] = ACTIONS(3251), - [anon_sym_string] = ACTIONS(3251), - [anon_sym_symbol] = ACTIONS(3251), - [anon_sym_object] = ACTIONS(3251), - [anon_sym_abstract] = ACTIONS(3251), - [anon_sym_interface] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), + [ts_builtin_sym_end] = ACTIONS(2306), + [sym_identifier] = ACTIONS(2304), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_type] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2304), + [anon_sym_LBRACE] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_typeof] = ACTIONS(2304), + [anon_sym_import] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(2304), + [anon_sym_var] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(2304), + [anon_sym_else] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_switch] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_await] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_debugger] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_throw] = ACTIONS(2304), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_yield] = ACTIONS(2304), + [anon_sym_LBRACK] = ACTIONS(2304), + [anon_sym_LTtemplate_GT] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2304), + [anon_sym_SQUOTE] = ACTIONS(2304), + [anon_sym_class] = ACTIONS(2304), + [anon_sym_async] = ACTIONS(2304), + [anon_sym_function] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2304), + [anon_sym_using] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2304), + [anon_sym_DASH] = ACTIONS(2304), + [anon_sym_SLASH] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2304), + [anon_sym_void] = ACTIONS(2304), + [anon_sym_delete] = ACTIONS(2304), + [anon_sym_PLUS_PLUS] = ACTIONS(2304), + [anon_sym_DASH_DASH] = ACTIONS(2304), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2304), + [sym_number] = ACTIONS(2304), + [sym_private_property_identifier] = ACTIONS(2304), + [sym_this] = ACTIONS(2304), + [sym_super] = ACTIONS(2304), + [sym_true] = ACTIONS(2304), + [sym_false] = ACTIONS(2304), + [sym_null] = ACTIONS(2304), + [sym_undefined] = ACTIONS(2304), + [anon_sym_AT] = ACTIONS(2304), + [anon_sym_static] = ACTIONS(2304), + [anon_sym_readonly] = ACTIONS(2304), + [anon_sym_get] = ACTIONS(2304), + [anon_sym_set] = ACTIONS(2304), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_public] = ACTIONS(2304), + [anon_sym_private] = ACTIONS(2304), + [anon_sym_protected] = ACTIONS(2304), + [anon_sym_override] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_any] = ACTIONS(2304), + [anon_sym_number] = ACTIONS(2304), + [anon_sym_boolean] = ACTIONS(2304), + [anon_sym_string] = ACTIONS(2304), + [anon_sym_symbol] = ACTIONS(2304), + [anon_sym_object] = ACTIONS(2304), + [anon_sym_abstract] = ACTIONS(2304), + [anon_sym_interface] = ACTIONS(2304), + [anon_sym_enum] = ACTIONS(2304), + [sym__automatic_semicolon] = ACTIONS(2306), [sym_html_comment] = ACTIONS(5), }, [1062] = { [sym_comment] = STATE(1062), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_default] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_case] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1063] = { [sym_comment] = STATE(1063), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3285), + [anon_sym_default] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3285), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_else] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_debugger] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_case] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LTtemplate_GT] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_void] = ACTIONS(3285), + [anon_sym_delete] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), + [anon_sym_BQUOTE] = ACTIONS(3285), + [sym_number] = ACTIONS(3285), + [sym_private_property_identifier] = ACTIONS(3285), + [sym_this] = ACTIONS(3285), + [sym_super] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_null] = ACTIONS(3285), + [sym_undefined] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_get] = ACTIONS(3285), + [anon_sym_set] = ACTIONS(3285), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_any] = ACTIONS(3285), + [anon_sym_number] = ACTIONS(3285), + [anon_sym_boolean] = ACTIONS(3285), + [anon_sym_string] = ACTIONS(3285), + [anon_sym_symbol] = ACTIONS(3285), + [anon_sym_object] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), [sym_html_comment] = ACTIONS(5), }, [1064] = { [sym_comment] = STATE(1064), - [sym_identifier] = ACTIONS(3253), - [anon_sym_export] = ACTIONS(3253), - [anon_sym_default] = ACTIONS(3253), - [anon_sym_type] = ACTIONS(3253), - [anon_sym_namespace] = ACTIONS(3253), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_RBRACE] = ACTIONS(3253), - [anon_sym_typeof] = ACTIONS(3253), - [anon_sym_import] = ACTIONS(3253), - [anon_sym_with] = ACTIONS(3253), - [anon_sym_var] = ACTIONS(3253), - [anon_sym_let] = ACTIONS(3253), - [anon_sym_const] = ACTIONS(3253), - [anon_sym_BANG] = ACTIONS(3253), - [anon_sym_else] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_switch] = ACTIONS(3253), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_LPAREN] = ACTIONS(3253), - [anon_sym_await] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_break] = ACTIONS(3253), - [anon_sym_continue] = ACTIONS(3253), - [anon_sym_debugger] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_throw] = ACTIONS(3253), - [anon_sym_SEMI] = ACTIONS(3253), - [anon_sym_case] = ACTIONS(3253), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_LTtemplate_GT] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [anon_sym_SQUOTE] = ACTIONS(3253), - [anon_sym_class] = ACTIONS(3253), - [anon_sym_async] = ACTIONS(3253), - [anon_sym_function] = ACTIONS(3253), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_using] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_SLASH] = ACTIONS(3253), - [anon_sym_LT] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_void] = ACTIONS(3253), - [anon_sym_delete] = ACTIONS(3253), - [anon_sym_PLUS_PLUS] = ACTIONS(3253), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3253), - [sym_number] = ACTIONS(3253), - [sym_private_property_identifier] = ACTIONS(3253), - [sym_this] = ACTIONS(3253), - [sym_super] = ACTIONS(3253), - [sym_true] = ACTIONS(3253), - [sym_false] = ACTIONS(3253), - [sym_null] = ACTIONS(3253), - [sym_undefined] = ACTIONS(3253), - [anon_sym_AT] = ACTIONS(3253), - [anon_sym_static] = ACTIONS(3253), - [anon_sym_readonly] = ACTIONS(3253), - [anon_sym_get] = ACTIONS(3253), - [anon_sym_set] = ACTIONS(3253), - [anon_sym_declare] = ACTIONS(3253), - [anon_sym_public] = ACTIONS(3253), - [anon_sym_private] = ACTIONS(3253), - [anon_sym_protected] = ACTIONS(3253), - [anon_sym_override] = ACTIONS(3253), - [anon_sym_module] = ACTIONS(3253), - [anon_sym_any] = ACTIONS(3253), - [anon_sym_number] = ACTIONS(3253), - [anon_sym_boolean] = ACTIONS(3253), - [anon_sym_string] = ACTIONS(3253), - [anon_sym_symbol] = ACTIONS(3253), - [anon_sym_object] = ACTIONS(3253), - [anon_sym_abstract] = ACTIONS(3253), - [anon_sym_interface] = ACTIONS(3253), - [anon_sym_enum] = ACTIONS(3253), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3285), + [anon_sym_default] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3285), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_else] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_debugger] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_case] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LTtemplate_GT] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_void] = ACTIONS(3285), + [anon_sym_delete] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3285), + [sym_number] = ACTIONS(3285), + [sym_private_property_identifier] = ACTIONS(3285), + [sym_this] = ACTIONS(3285), + [sym_super] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_null] = ACTIONS(3285), + [sym_undefined] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_get] = ACTIONS(3285), + [anon_sym_set] = ACTIONS(3285), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_any] = ACTIONS(3285), + [anon_sym_number] = ACTIONS(3285), + [anon_sym_boolean] = ACTIONS(3285), + [anon_sym_string] = ACTIONS(3285), + [anon_sym_symbol] = ACTIONS(3285), + [anon_sym_object] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), [sym_html_comment] = ACTIONS(5), }, [1065] = { [sym_comment] = STATE(1065), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3287), + [anon_sym_export] = ACTIONS(3287), + [anon_sym_default] = ACTIONS(3287), + [anon_sym_type] = ACTIONS(3287), + [anon_sym_namespace] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(3287), + [anon_sym_typeof] = ACTIONS(3287), + [anon_sym_import] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3287), + [anon_sym_var] = ACTIONS(3287), + [anon_sym_let] = ACTIONS(3287), + [anon_sym_const] = ACTIONS(3287), + [anon_sym_BANG] = ACTIONS(3287), + [anon_sym_else] = ACTIONS(3287), + [anon_sym_if] = ACTIONS(3287), + [anon_sym_switch] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3287), + [anon_sym_await] = ACTIONS(3287), + [anon_sym_while] = ACTIONS(3287), + [anon_sym_do] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3287), + [anon_sym_break] = ACTIONS(3287), + [anon_sym_continue] = ACTIONS(3287), + [anon_sym_debugger] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3287), + [anon_sym_throw] = ACTIONS(3287), + [anon_sym_SEMI] = ACTIONS(3287), + [anon_sym_case] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(3287), + [anon_sym_LTtemplate_GT] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(3287), + [anon_sym_SQUOTE] = ACTIONS(3287), + [anon_sym_class] = ACTIONS(3287), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3287), + [anon_sym_using] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3287), + [anon_sym_DASH] = ACTIONS(3287), + [anon_sym_SLASH] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [anon_sym_void] = ACTIONS(3287), + [anon_sym_delete] = ACTIONS(3287), + [anon_sym_PLUS_PLUS] = ACTIONS(3287), + [anon_sym_DASH_DASH] = ACTIONS(3287), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3287), + [sym_number] = ACTIONS(3287), + [sym_private_property_identifier] = ACTIONS(3287), + [sym_this] = ACTIONS(3287), + [sym_super] = ACTIONS(3287), + [sym_true] = ACTIONS(3287), + [sym_false] = ACTIONS(3287), + [sym_null] = ACTIONS(3287), + [sym_undefined] = ACTIONS(3287), + [anon_sym_AT] = ACTIONS(3287), + [anon_sym_static] = ACTIONS(3287), + [anon_sym_readonly] = ACTIONS(3287), + [anon_sym_get] = ACTIONS(3287), + [anon_sym_set] = ACTIONS(3287), + [anon_sym_declare] = ACTIONS(3287), + [anon_sym_public] = ACTIONS(3287), + [anon_sym_private] = ACTIONS(3287), + [anon_sym_protected] = ACTIONS(3287), + [anon_sym_override] = ACTIONS(3287), + [anon_sym_module] = ACTIONS(3287), + [anon_sym_any] = ACTIONS(3287), + [anon_sym_number] = ACTIONS(3287), + [anon_sym_boolean] = ACTIONS(3287), + [anon_sym_string] = ACTIONS(3287), + [anon_sym_symbol] = ACTIONS(3287), + [anon_sym_object] = ACTIONS(3287), + [anon_sym_abstract] = ACTIONS(3287), + [anon_sym_interface] = ACTIONS(3287), + [anon_sym_enum] = ACTIONS(3287), [sym_html_comment] = ACTIONS(5), }, [1066] = { [sym_comment] = STATE(1066), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3289), + [anon_sym_export] = ACTIONS(3289), + [anon_sym_default] = ACTIONS(3289), + [anon_sym_type] = ACTIONS(3289), + [anon_sym_namespace] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_RBRACE] = ACTIONS(3289), + [anon_sym_typeof] = ACTIONS(3289), + [anon_sym_import] = ACTIONS(3289), + [anon_sym_with] = ACTIONS(3289), + [anon_sym_var] = ACTIONS(3289), + [anon_sym_let] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_else] = ACTIONS(3289), + [anon_sym_if] = ACTIONS(3289), + [anon_sym_switch] = ACTIONS(3289), + [anon_sym_for] = ACTIONS(3289), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_await] = ACTIONS(3289), + [anon_sym_while] = ACTIONS(3289), + [anon_sym_do] = ACTIONS(3289), + [anon_sym_try] = ACTIONS(3289), + [anon_sym_break] = ACTIONS(3289), + [anon_sym_continue] = ACTIONS(3289), + [anon_sym_debugger] = ACTIONS(3289), + [anon_sym_return] = ACTIONS(3289), + [anon_sym_throw] = ACTIONS(3289), + [anon_sym_SEMI] = ACTIONS(3289), + [anon_sym_case] = ACTIONS(3289), + [anon_sym_yield] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_LTtemplate_GT] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(3289), + [anon_sym_SQUOTE] = ACTIONS(3289), + [anon_sym_class] = ACTIONS(3289), + [anon_sym_async] = ACTIONS(3289), + [anon_sym_function] = ACTIONS(3289), + [anon_sym_new] = ACTIONS(3289), + [anon_sym_using] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_SLASH] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_void] = ACTIONS(3289), + [anon_sym_delete] = ACTIONS(3289), + [anon_sym_PLUS_PLUS] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3289), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3289), + [sym_number] = ACTIONS(3289), + [sym_private_property_identifier] = ACTIONS(3289), + [sym_this] = ACTIONS(3289), + [sym_super] = ACTIONS(3289), + [sym_true] = ACTIONS(3289), + [sym_false] = ACTIONS(3289), + [sym_null] = ACTIONS(3289), + [sym_undefined] = ACTIONS(3289), + [anon_sym_AT] = ACTIONS(3289), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_readonly] = ACTIONS(3289), + [anon_sym_get] = ACTIONS(3289), + [anon_sym_set] = ACTIONS(3289), + [anon_sym_declare] = ACTIONS(3289), + [anon_sym_public] = ACTIONS(3289), + [anon_sym_private] = ACTIONS(3289), + [anon_sym_protected] = ACTIONS(3289), + [anon_sym_override] = ACTIONS(3289), + [anon_sym_module] = ACTIONS(3289), + [anon_sym_any] = ACTIONS(3289), + [anon_sym_number] = ACTIONS(3289), + [anon_sym_boolean] = ACTIONS(3289), + [anon_sym_string] = ACTIONS(3289), + [anon_sym_symbol] = ACTIONS(3289), + [anon_sym_object] = ACTIONS(3289), + [anon_sym_abstract] = ACTIONS(3289), + [anon_sym_interface] = ACTIONS(3289), + [anon_sym_enum] = ACTIONS(3289), [sym_html_comment] = ACTIONS(5), }, [1067] = { [sym_comment] = STATE(1067), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3291), + [anon_sym_export] = ACTIONS(3291), + [anon_sym_default] = ACTIONS(3291), + [anon_sym_type] = ACTIONS(3291), + [anon_sym_namespace] = ACTIONS(3291), + [anon_sym_LBRACE] = ACTIONS(3291), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_typeof] = ACTIONS(3291), + [anon_sym_import] = ACTIONS(3291), + [anon_sym_with] = ACTIONS(3291), + [anon_sym_var] = ACTIONS(3291), + [anon_sym_let] = ACTIONS(3291), + [anon_sym_const] = ACTIONS(3291), + [anon_sym_BANG] = ACTIONS(3291), + [anon_sym_else] = ACTIONS(3291), + [anon_sym_if] = ACTIONS(3291), + [anon_sym_switch] = ACTIONS(3291), + [anon_sym_for] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(3291), + [anon_sym_await] = ACTIONS(3291), + [anon_sym_while] = ACTIONS(3291), + [anon_sym_do] = ACTIONS(3291), + [anon_sym_try] = ACTIONS(3291), + [anon_sym_break] = ACTIONS(3291), + [anon_sym_continue] = ACTIONS(3291), + [anon_sym_debugger] = ACTIONS(3291), + [anon_sym_return] = ACTIONS(3291), + [anon_sym_throw] = ACTIONS(3291), + [anon_sym_SEMI] = ACTIONS(3291), + [anon_sym_case] = ACTIONS(3291), + [anon_sym_yield] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(3291), + [anon_sym_LTtemplate_GT] = ACTIONS(3291), + [anon_sym_DQUOTE] = ACTIONS(3291), + [anon_sym_SQUOTE] = ACTIONS(3291), + [anon_sym_class] = ACTIONS(3291), + [anon_sym_async] = ACTIONS(3291), + [anon_sym_function] = ACTIONS(3291), + [anon_sym_new] = ACTIONS(3291), + [anon_sym_using] = ACTIONS(3291), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_SLASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(3291), + [anon_sym_TILDE] = ACTIONS(3291), + [anon_sym_void] = ACTIONS(3291), + [anon_sym_delete] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DASH_DASH] = ACTIONS(3291), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3291), + [sym_number] = ACTIONS(3291), + [sym_private_property_identifier] = ACTIONS(3291), + [sym_this] = ACTIONS(3291), + [sym_super] = ACTIONS(3291), + [sym_true] = ACTIONS(3291), + [sym_false] = ACTIONS(3291), + [sym_null] = ACTIONS(3291), + [sym_undefined] = ACTIONS(3291), + [anon_sym_AT] = ACTIONS(3291), + [anon_sym_static] = ACTIONS(3291), + [anon_sym_readonly] = ACTIONS(3291), + [anon_sym_get] = ACTIONS(3291), + [anon_sym_set] = ACTIONS(3291), + [anon_sym_declare] = ACTIONS(3291), + [anon_sym_public] = ACTIONS(3291), + [anon_sym_private] = ACTIONS(3291), + [anon_sym_protected] = ACTIONS(3291), + [anon_sym_override] = ACTIONS(3291), + [anon_sym_module] = ACTIONS(3291), + [anon_sym_any] = ACTIONS(3291), + [anon_sym_number] = ACTIONS(3291), + [anon_sym_boolean] = ACTIONS(3291), + [anon_sym_string] = ACTIONS(3291), + [anon_sym_symbol] = ACTIONS(3291), + [anon_sym_object] = ACTIONS(3291), + [anon_sym_abstract] = ACTIONS(3291), + [anon_sym_interface] = ACTIONS(3291), + [anon_sym_enum] = ACTIONS(3291), [sym_html_comment] = ACTIONS(5), }, [1068] = { [sym_comment] = STATE(1068), - [ts_builtin_sym_end] = ACTIONS(2354), - [sym_identifier] = ACTIONS(2182), - [anon_sym_export] = ACTIONS(2182), - [anon_sym_type] = ACTIONS(2182), - [anon_sym_namespace] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_typeof] = ACTIONS(2182), - [anon_sym_import] = ACTIONS(2182), - [anon_sym_with] = ACTIONS(2182), - [anon_sym_var] = ACTIONS(2182), - [anon_sym_let] = ACTIONS(2182), - [anon_sym_const] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_else] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_await] = ACTIONS(2182), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_try] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_debugger] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_throw] = ACTIONS(2182), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_yield] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LTtemplate_GT] = ACTIONS(2182), - [anon_sym_DQUOTE] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2182), - [anon_sym_class] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(2182), - [anon_sym_function] = ACTIONS(2182), - [anon_sym_new] = ACTIONS(2182), - [anon_sym_using] = ACTIONS(2182), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_TILDE] = ACTIONS(2182), - [anon_sym_void] = ACTIONS(2182), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_PLUS_PLUS] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2182), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_catch] = ACTIONS(2160), + [anon_sym_finally] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2182), - [sym_number] = ACTIONS(2182), - [sym_private_property_identifier] = ACTIONS(2182), - [sym_this] = ACTIONS(2182), - [sym_super] = ACTIONS(2182), - [sym_true] = ACTIONS(2182), - [sym_false] = ACTIONS(2182), - [sym_null] = ACTIONS(2182), - [sym_undefined] = ACTIONS(2182), - [anon_sym_AT] = ACTIONS(2182), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_readonly] = ACTIONS(2182), - [anon_sym_get] = ACTIONS(2182), - [anon_sym_set] = ACTIONS(2182), - [anon_sym_declare] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_protected] = ACTIONS(2182), - [anon_sym_override] = ACTIONS(2182), - [anon_sym_module] = ACTIONS(2182), - [anon_sym_any] = ACTIONS(2182), - [anon_sym_number] = ACTIONS(2182), - [anon_sym_boolean] = ACTIONS(2182), - [anon_sym_string] = ACTIONS(2182), - [anon_sym_symbol] = ACTIONS(2182), - [anon_sym_object] = ACTIONS(2182), - [anon_sym_abstract] = ACTIONS(2182), - [anon_sym_interface] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), - [sym__automatic_semicolon] = ACTIONS(2356), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), [sym_html_comment] = ACTIONS(5), }, [1069] = { [sym_comment] = STATE(1069), - [sym_identifier] = ACTIONS(2252), - [anon_sym_export] = ACTIONS(2252), - [anon_sym_default] = ACTIONS(2252), - [anon_sym_type] = ACTIONS(2252), - [anon_sym_namespace] = ACTIONS(2252), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_RBRACE] = ACTIONS(2252), - [anon_sym_typeof] = ACTIONS(2252), - [anon_sym_import] = ACTIONS(2252), - [anon_sym_with] = ACTIONS(2252), - [anon_sym_var] = ACTIONS(2252), - [anon_sym_let] = ACTIONS(2252), - [anon_sym_const] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(2252), - [anon_sym_else] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_switch] = ACTIONS(2252), - [anon_sym_for] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_await] = ACTIONS(2252), - [anon_sym_while] = ACTIONS(2252), - [anon_sym_do] = ACTIONS(2252), - [anon_sym_try] = ACTIONS(2252), - [anon_sym_break] = ACTIONS(2252), - [anon_sym_continue] = ACTIONS(2252), - [anon_sym_debugger] = ACTIONS(2252), - [anon_sym_return] = ACTIONS(2252), - [anon_sym_throw] = ACTIONS(2252), - [anon_sym_SEMI] = ACTIONS(2252), - [anon_sym_case] = ACTIONS(2252), - [anon_sym_yield] = ACTIONS(2252), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_LTtemplate_GT] = ACTIONS(2252), - [anon_sym_DQUOTE] = ACTIONS(2252), - [anon_sym_SQUOTE] = ACTIONS(2252), - [anon_sym_class] = ACTIONS(2252), - [anon_sym_async] = ACTIONS(2252), - [anon_sym_function] = ACTIONS(2252), - [anon_sym_new] = ACTIONS(2252), - [anon_sym_using] = ACTIONS(2252), - [anon_sym_PLUS] = ACTIONS(2252), - [anon_sym_DASH] = ACTIONS(2252), - [anon_sym_SLASH] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_TILDE] = ACTIONS(2252), - [anon_sym_void] = ACTIONS(2252), - [anon_sym_delete] = ACTIONS(2252), - [anon_sym_PLUS_PLUS] = ACTIONS(2252), - [anon_sym_DASH_DASH] = ACTIONS(2252), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2252), - [sym_number] = ACTIONS(2252), - [sym_private_property_identifier] = ACTIONS(2252), - [sym_this] = ACTIONS(2252), - [sym_super] = ACTIONS(2252), - [sym_true] = ACTIONS(2252), - [sym_false] = ACTIONS(2252), - [sym_null] = ACTIONS(2252), - [sym_undefined] = ACTIONS(2252), - [anon_sym_AT] = ACTIONS(2252), - [anon_sym_static] = ACTIONS(2252), - [anon_sym_readonly] = ACTIONS(2252), - [anon_sym_get] = ACTIONS(2252), - [anon_sym_set] = ACTIONS(2252), - [anon_sym_declare] = ACTIONS(2252), - [anon_sym_public] = ACTIONS(2252), - [anon_sym_private] = ACTIONS(2252), - [anon_sym_protected] = ACTIONS(2252), - [anon_sym_override] = ACTIONS(2252), - [anon_sym_module] = ACTIONS(2252), - [anon_sym_any] = ACTIONS(2252), - [anon_sym_number] = ACTIONS(2252), - [anon_sym_boolean] = ACTIONS(2252), - [anon_sym_string] = ACTIONS(2252), - [anon_sym_symbol] = ACTIONS(2252), - [anon_sym_object] = ACTIONS(2252), - [anon_sym_abstract] = ACTIONS(2252), - [anon_sym_interface] = ACTIONS(2252), - [anon_sym_enum] = ACTIONS(2252), + [sym_identifier] = ACTIONS(3293), + [anon_sym_export] = ACTIONS(3293), + [anon_sym_default] = ACTIONS(3293), + [anon_sym_type] = ACTIONS(3293), + [anon_sym_namespace] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_typeof] = ACTIONS(3293), + [anon_sym_import] = ACTIONS(3293), + [anon_sym_with] = ACTIONS(3293), + [anon_sym_var] = ACTIONS(3293), + [anon_sym_let] = ACTIONS(3293), + [anon_sym_const] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_else] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_switch] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_await] = ACTIONS(3293), + [anon_sym_while] = ACTIONS(3293), + [anon_sym_do] = ACTIONS(3293), + [anon_sym_try] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_debugger] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_throw] = ACTIONS(3293), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_case] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_LTtemplate_GT] = ACTIONS(3293), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_SQUOTE] = ACTIONS(3293), + [anon_sym_class] = ACTIONS(3293), + [anon_sym_async] = ACTIONS(3293), + [anon_sym_function] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3293), + [anon_sym_using] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_SLASH] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_void] = ACTIONS(3293), + [anon_sym_delete] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3293), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [sym_this] = ACTIONS(3293), + [sym_super] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_null] = ACTIONS(3293), + [sym_undefined] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(3293), + [anon_sym_static] = ACTIONS(3293), + [anon_sym_readonly] = ACTIONS(3293), + [anon_sym_get] = ACTIONS(3293), + [anon_sym_set] = ACTIONS(3293), + [anon_sym_declare] = ACTIONS(3293), + [anon_sym_public] = ACTIONS(3293), + [anon_sym_private] = ACTIONS(3293), + [anon_sym_protected] = ACTIONS(3293), + [anon_sym_override] = ACTIONS(3293), + [anon_sym_module] = ACTIONS(3293), + [anon_sym_any] = ACTIONS(3293), + [anon_sym_number] = ACTIONS(3293), + [anon_sym_boolean] = ACTIONS(3293), + [anon_sym_string] = ACTIONS(3293), + [anon_sym_symbol] = ACTIONS(3293), + [anon_sym_object] = ACTIONS(3293), + [anon_sym_abstract] = ACTIONS(3293), + [anon_sym_interface] = ACTIONS(3293), + [anon_sym_enum] = ACTIONS(3293), [sym_html_comment] = ACTIONS(5), }, [1070] = { [sym_comment] = STATE(1070), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [sym_html_comment] = ACTIONS(5), - }, - [1071] = { - [sym_comment] = STATE(1071), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [sym_html_comment] = ACTIONS(5), - }, - [1072] = { - [sym_comment] = STATE(1072), - [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(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_typeof] = ACTIONS(2310), - [anon_sym_import] = ACTIONS(2310), - [anon_sym_with] = ACTIONS(2310), - [anon_sym_var] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2310), - [anon_sym_const] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2310), - [anon_sym_switch] = ACTIONS(2310), - [anon_sym_for] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_await] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_do] = ACTIONS(2310), - [anon_sym_try] = 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(2310), - [anon_sym_case] = ACTIONS(2310), - [anon_sym_yield] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LTtemplate_GT] = ACTIONS(2310), - [anon_sym_DQUOTE] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2310), - [anon_sym_class] = ACTIONS(2310), - [anon_sym_async] = ACTIONS(2310), - [anon_sym_function] = ACTIONS(2310), - [anon_sym_new] = ACTIONS(2310), - [anon_sym_using] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_SLASH] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_TILDE] = ACTIONS(2310), - [anon_sym_void] = ACTIONS(2310), - [anon_sym_delete] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2310), - [sym_number] = ACTIONS(2310), - [sym_private_property_identifier] = ACTIONS(2310), - [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(2310), - [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_abstract] = ACTIONS(2310), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2310), - [sym__automatic_semicolon] = ACTIONS(2382), - [sym_html_comment] = ACTIONS(5), - }, - [1073] = { - [sym_comment] = STATE(1073), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_case] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(2250), - [sym_html_comment] = ACTIONS(5), - }, - [1074] = { - [sym_comment] = STATE(1074), [sym_identifier] = ACTIONS(3255), [anon_sym_export] = ACTIONS(3255), [anon_sym_default] = ACTIONS(3255), @@ -150538,3162 +149924,2996 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, + [1071] = { + [sym_comment] = STATE(1071), + [sym_identifier] = ACTIONS(3295), + [anon_sym_export] = ACTIONS(3295), + [anon_sym_default] = ACTIONS(3295), + [anon_sym_type] = ACTIONS(3295), + [anon_sym_namespace] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3295), + [anon_sym_typeof] = ACTIONS(3295), + [anon_sym_import] = ACTIONS(3295), + [anon_sym_with] = ACTIONS(3295), + [anon_sym_var] = ACTIONS(3295), + [anon_sym_let] = ACTIONS(3295), + [anon_sym_const] = ACTIONS(3295), + [anon_sym_BANG] = ACTIONS(3295), + [anon_sym_else] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_switch] = ACTIONS(3295), + [anon_sym_for] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_await] = ACTIONS(3295), + [anon_sym_while] = ACTIONS(3295), + [anon_sym_do] = ACTIONS(3295), + [anon_sym_try] = ACTIONS(3295), + [anon_sym_break] = ACTIONS(3295), + [anon_sym_continue] = ACTIONS(3295), + [anon_sym_debugger] = ACTIONS(3295), + [anon_sym_return] = ACTIONS(3295), + [anon_sym_throw] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_case] = ACTIONS(3295), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LTtemplate_GT] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_SQUOTE] = ACTIONS(3295), + [anon_sym_class] = ACTIONS(3295), + [anon_sym_async] = ACTIONS(3295), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_using] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3295), + [anon_sym_SLASH] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_void] = ACTIONS(3295), + [anon_sym_delete] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3295), + [anon_sym_DASH_DASH] = ACTIONS(3295), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3295), + [sym_number] = ACTIONS(3295), + [sym_private_property_identifier] = ACTIONS(3295), + [sym_this] = ACTIONS(3295), + [sym_super] = ACTIONS(3295), + [sym_true] = ACTIONS(3295), + [sym_false] = ACTIONS(3295), + [sym_null] = ACTIONS(3295), + [sym_undefined] = ACTIONS(3295), + [anon_sym_AT] = ACTIONS(3295), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3295), + [anon_sym_get] = ACTIONS(3295), + [anon_sym_set] = ACTIONS(3295), + [anon_sym_declare] = ACTIONS(3295), + [anon_sym_public] = ACTIONS(3295), + [anon_sym_private] = ACTIONS(3295), + [anon_sym_protected] = ACTIONS(3295), + [anon_sym_override] = ACTIONS(3295), + [anon_sym_module] = ACTIONS(3295), + [anon_sym_any] = ACTIONS(3295), + [anon_sym_number] = ACTIONS(3295), + [anon_sym_boolean] = ACTIONS(3295), + [anon_sym_string] = ACTIONS(3295), + [anon_sym_symbol] = ACTIONS(3295), + [anon_sym_object] = ACTIONS(3295), + [anon_sym_abstract] = ACTIONS(3295), + [anon_sym_interface] = ACTIONS(3295), + [anon_sym_enum] = ACTIONS(3295), + [sym_html_comment] = ACTIONS(5), + }, + [1072] = { + [sym_comment] = STATE(1072), + [sym_identifier] = ACTIONS(3297), + [anon_sym_export] = ACTIONS(3297), + [anon_sym_default] = ACTIONS(3297), + [anon_sym_type] = ACTIONS(3297), + [anon_sym_namespace] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(3297), + [anon_sym_typeof] = ACTIONS(3297), + [anon_sym_import] = ACTIONS(3297), + [anon_sym_with] = ACTIONS(3297), + [anon_sym_var] = ACTIONS(3297), + [anon_sym_let] = ACTIONS(3297), + [anon_sym_const] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_else] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_switch] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_await] = ACTIONS(3297), + [anon_sym_while] = ACTIONS(3297), + [anon_sym_do] = ACTIONS(3297), + [anon_sym_try] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_debugger] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_throw] = ACTIONS(3297), + [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_case] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_LTtemplate_GT] = ACTIONS(3297), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_SQUOTE] = ACTIONS(3297), + [anon_sym_class] = ACTIONS(3297), + [anon_sym_async] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3297), + [anon_sym_using] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_SLASH] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_void] = ACTIONS(3297), + [anon_sym_delete] = ACTIONS(3297), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3297), + [sym_number] = ACTIONS(3297), + [sym_private_property_identifier] = ACTIONS(3297), + [sym_this] = ACTIONS(3297), + [sym_super] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_null] = ACTIONS(3297), + [sym_undefined] = ACTIONS(3297), + [anon_sym_AT] = ACTIONS(3297), + [anon_sym_static] = ACTIONS(3297), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_get] = ACTIONS(3297), + [anon_sym_set] = ACTIONS(3297), + [anon_sym_declare] = ACTIONS(3297), + [anon_sym_public] = ACTIONS(3297), + [anon_sym_private] = ACTIONS(3297), + [anon_sym_protected] = ACTIONS(3297), + [anon_sym_override] = ACTIONS(3297), + [anon_sym_module] = ACTIONS(3297), + [anon_sym_any] = ACTIONS(3297), + [anon_sym_number] = ACTIONS(3297), + [anon_sym_boolean] = ACTIONS(3297), + [anon_sym_string] = ACTIONS(3297), + [anon_sym_symbol] = ACTIONS(3297), + [anon_sym_object] = ACTIONS(3297), + [anon_sym_abstract] = ACTIONS(3297), + [anon_sym_interface] = ACTIONS(3297), + [anon_sym_enum] = ACTIONS(3297), + [sym_html_comment] = ACTIONS(5), + }, + [1073] = { + [sym_comment] = STATE(1073), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3285), + [anon_sym_default] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3285), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_else] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_debugger] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_case] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LTtemplate_GT] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_void] = ACTIONS(3285), + [anon_sym_delete] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3285), + [sym_number] = ACTIONS(3285), + [sym_private_property_identifier] = ACTIONS(3285), + [sym_this] = ACTIONS(3285), + [sym_super] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_null] = ACTIONS(3285), + [sym_undefined] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_get] = ACTIONS(3285), + [anon_sym_set] = ACTIONS(3285), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_any] = ACTIONS(3285), + [anon_sym_number] = ACTIONS(3285), + [anon_sym_boolean] = ACTIONS(3285), + [anon_sym_string] = ACTIONS(3285), + [anon_sym_symbol] = ACTIONS(3285), + [anon_sym_object] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), + [sym_html_comment] = ACTIONS(5), + }, + [1074] = { + [sym_comment] = STATE(1074), + [sym_identifier] = ACTIONS(3299), + [anon_sym_export] = ACTIONS(3299), + [anon_sym_default] = ACTIONS(3299), + [anon_sym_type] = ACTIONS(3299), + [anon_sym_namespace] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_RBRACE] = ACTIONS(3299), + [anon_sym_typeof] = ACTIONS(3299), + [anon_sym_import] = ACTIONS(3299), + [anon_sym_with] = ACTIONS(3299), + [anon_sym_var] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_const] = ACTIONS(3299), + [anon_sym_BANG] = ACTIONS(3299), + [anon_sym_else] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_switch] = ACTIONS(3299), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_await] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_break] = ACTIONS(3299), + [anon_sym_continue] = ACTIONS(3299), + [anon_sym_debugger] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_throw] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_case] = ACTIONS(3299), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LTtemplate_GT] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_SQUOTE] = ACTIONS(3299), + [anon_sym_class] = ACTIONS(3299), + [anon_sym_async] = ACTIONS(3299), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_using] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_SLASH] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3299), + [anon_sym_void] = ACTIONS(3299), + [anon_sym_delete] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3299), + [sym_number] = ACTIONS(3299), + [sym_private_property_identifier] = ACTIONS(3299), + [sym_this] = ACTIONS(3299), + [sym_super] = ACTIONS(3299), + [sym_true] = ACTIONS(3299), + [sym_false] = ACTIONS(3299), + [sym_null] = ACTIONS(3299), + [sym_undefined] = ACTIONS(3299), + [anon_sym_AT] = ACTIONS(3299), + [anon_sym_static] = ACTIONS(3299), + [anon_sym_readonly] = ACTIONS(3299), + [anon_sym_get] = ACTIONS(3299), + [anon_sym_set] = ACTIONS(3299), + [anon_sym_declare] = ACTIONS(3299), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_private] = ACTIONS(3299), + [anon_sym_protected] = ACTIONS(3299), + [anon_sym_override] = ACTIONS(3299), + [anon_sym_module] = ACTIONS(3299), + [anon_sym_any] = ACTIONS(3299), + [anon_sym_number] = ACTIONS(3299), + [anon_sym_boolean] = ACTIONS(3299), + [anon_sym_string] = ACTIONS(3299), + [anon_sym_symbol] = ACTIONS(3299), + [anon_sym_object] = ACTIONS(3299), + [anon_sym_abstract] = ACTIONS(3299), + [anon_sym_interface] = ACTIONS(3299), + [anon_sym_enum] = ACTIONS(3299), + [sym_html_comment] = ACTIONS(5), + }, [1075] = { [sym_comment] = STATE(1075), - [sym_identifier] = ACTIONS(3257), - [anon_sym_export] = ACTIONS(3257), - [anon_sym_default] = ACTIONS(3257), - [anon_sym_type] = ACTIONS(3257), - [anon_sym_namespace] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_RBRACE] = ACTIONS(3257), - [anon_sym_typeof] = ACTIONS(3257), - [anon_sym_import] = ACTIONS(3257), - [anon_sym_with] = ACTIONS(3257), - [anon_sym_var] = ACTIONS(3257), - [anon_sym_let] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_else] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_switch] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_await] = ACTIONS(3257), - [anon_sym_while] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_try] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_debugger] = ACTIONS(3257), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_throw] = ACTIONS(3257), - [anon_sym_SEMI] = ACTIONS(3257), - [anon_sym_case] = ACTIONS(3257), - [anon_sym_yield] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_LTtemplate_GT] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3257), - [anon_sym_class] = ACTIONS(3257), - [anon_sym_async] = ACTIONS(3257), - [anon_sym_function] = ACTIONS(3257), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_using] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_SLASH] = ACTIONS(3257), - [anon_sym_LT] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_void] = ACTIONS(3257), - [anon_sym_delete] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3257), - [sym_number] = ACTIONS(3257), - [sym_private_property_identifier] = ACTIONS(3257), - [sym_this] = ACTIONS(3257), - [sym_super] = ACTIONS(3257), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [sym_null] = ACTIONS(3257), - [sym_undefined] = ACTIONS(3257), - [anon_sym_AT] = ACTIONS(3257), - [anon_sym_static] = ACTIONS(3257), - [anon_sym_readonly] = ACTIONS(3257), - [anon_sym_get] = ACTIONS(3257), - [anon_sym_set] = ACTIONS(3257), - [anon_sym_declare] = ACTIONS(3257), - [anon_sym_public] = ACTIONS(3257), - [anon_sym_private] = ACTIONS(3257), - [anon_sym_protected] = ACTIONS(3257), - [anon_sym_override] = ACTIONS(3257), - [anon_sym_module] = ACTIONS(3257), - [anon_sym_any] = ACTIONS(3257), - [anon_sym_number] = ACTIONS(3257), - [anon_sym_boolean] = ACTIONS(3257), - [anon_sym_string] = ACTIONS(3257), - [anon_sym_symbol] = ACTIONS(3257), - [anon_sym_object] = ACTIONS(3257), - [anon_sym_abstract] = ACTIONS(3257), - [anon_sym_interface] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), + [sym_identifier] = ACTIONS(3301), + [anon_sym_export] = ACTIONS(3301), + [anon_sym_default] = ACTIONS(3301), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_namespace] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_typeof] = ACTIONS(3301), + [anon_sym_import] = ACTIONS(3301), + [anon_sym_with] = ACTIONS(3301), + [anon_sym_var] = ACTIONS(3301), + [anon_sym_let] = ACTIONS(3301), + [anon_sym_const] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_else] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_switch] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_await] = ACTIONS(3301), + [anon_sym_while] = ACTIONS(3301), + [anon_sym_do] = ACTIONS(3301), + [anon_sym_try] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_debugger] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_throw] = ACTIONS(3301), + [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_case] = ACTIONS(3301), + [anon_sym_yield] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_LTtemplate_GT] = ACTIONS(3301), + [anon_sym_DQUOTE] = ACTIONS(3301), + [anon_sym_SQUOTE] = ACTIONS(3301), + [anon_sym_class] = ACTIONS(3301), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_function] = ACTIONS(3301), + [anon_sym_new] = ACTIONS(3301), + [anon_sym_using] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_void] = ACTIONS(3301), + [anon_sym_delete] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3301), + [sym_number] = ACTIONS(3301), + [sym_private_property_identifier] = ACTIONS(3301), + [sym_this] = ACTIONS(3301), + [sym_super] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_null] = ACTIONS(3301), + [sym_undefined] = ACTIONS(3301), + [anon_sym_AT] = ACTIONS(3301), + [anon_sym_static] = ACTIONS(3301), + [anon_sym_readonly] = ACTIONS(3301), + [anon_sym_get] = ACTIONS(3301), + [anon_sym_set] = ACTIONS(3301), + [anon_sym_declare] = ACTIONS(3301), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3301), + [anon_sym_module] = ACTIONS(3301), + [anon_sym_any] = ACTIONS(3301), + [anon_sym_number] = ACTIONS(3301), + [anon_sym_boolean] = ACTIONS(3301), + [anon_sym_string] = ACTIONS(3301), + [anon_sym_symbol] = ACTIONS(3301), + [anon_sym_object] = ACTIONS(3301), + [anon_sym_abstract] = ACTIONS(3301), + [anon_sym_interface] = ACTIONS(3301), + [anon_sym_enum] = ACTIONS(3301), [sym_html_comment] = ACTIONS(5), }, [1076] = { [sym_comment] = STATE(1076), - [sym_identifier] = ACTIONS(3259), - [anon_sym_export] = ACTIONS(3259), - [anon_sym_default] = ACTIONS(3259), - [anon_sym_type] = ACTIONS(3259), - [anon_sym_namespace] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_RBRACE] = ACTIONS(3259), - [anon_sym_typeof] = ACTIONS(3259), - [anon_sym_import] = ACTIONS(3259), - [anon_sym_with] = ACTIONS(3259), - [anon_sym_var] = ACTIONS(3259), - [anon_sym_let] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_else] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_switch] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3259), - [anon_sym_await] = ACTIONS(3259), - [anon_sym_while] = ACTIONS(3259), - [anon_sym_do] = ACTIONS(3259), - [anon_sym_try] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_debugger] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_throw] = ACTIONS(3259), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_case] = ACTIONS(3259), - [anon_sym_yield] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_LTtemplate_GT] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(3259), - [anon_sym_SQUOTE] = ACTIONS(3259), - [anon_sym_class] = ACTIONS(3259), - [anon_sym_async] = ACTIONS(3259), - [anon_sym_function] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3259), - [anon_sym_using] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_SLASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_void] = ACTIONS(3259), - [anon_sym_delete] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3259), - [sym_number] = ACTIONS(3259), - [sym_private_property_identifier] = ACTIONS(3259), - [sym_this] = ACTIONS(3259), - [sym_super] = ACTIONS(3259), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [sym_null] = ACTIONS(3259), - [sym_undefined] = ACTIONS(3259), - [anon_sym_AT] = ACTIONS(3259), - [anon_sym_static] = ACTIONS(3259), - [anon_sym_readonly] = ACTIONS(3259), - [anon_sym_get] = ACTIONS(3259), - [anon_sym_set] = ACTIONS(3259), - [anon_sym_declare] = ACTIONS(3259), - [anon_sym_public] = ACTIONS(3259), - [anon_sym_private] = ACTIONS(3259), - [anon_sym_protected] = ACTIONS(3259), - [anon_sym_override] = ACTIONS(3259), - [anon_sym_module] = ACTIONS(3259), - [anon_sym_any] = ACTIONS(3259), - [anon_sym_number] = ACTIONS(3259), - [anon_sym_boolean] = ACTIONS(3259), - [anon_sym_string] = ACTIONS(3259), - [anon_sym_symbol] = ACTIONS(3259), - [anon_sym_object] = ACTIONS(3259), - [anon_sym_abstract] = ACTIONS(3259), - [anon_sym_interface] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), + [sym_identifier] = ACTIONS(3303), + [anon_sym_export] = ACTIONS(3303), + [anon_sym_default] = ACTIONS(3303), + [anon_sym_type] = ACTIONS(3303), + [anon_sym_namespace] = ACTIONS(3303), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_typeof] = ACTIONS(3303), + [anon_sym_import] = ACTIONS(3303), + [anon_sym_with] = ACTIONS(3303), + [anon_sym_var] = ACTIONS(3303), + [anon_sym_let] = ACTIONS(3303), + [anon_sym_const] = ACTIONS(3303), + [anon_sym_BANG] = ACTIONS(3303), + [anon_sym_else] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_switch] = ACTIONS(3303), + [anon_sym_for] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_await] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3303), + [anon_sym_do] = ACTIONS(3303), + [anon_sym_try] = ACTIONS(3303), + [anon_sym_break] = ACTIONS(3303), + [anon_sym_continue] = ACTIONS(3303), + [anon_sym_debugger] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3303), + [anon_sym_throw] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3303), + [anon_sym_case] = ACTIONS(3303), + [anon_sym_yield] = ACTIONS(3303), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_LTtemplate_GT] = ACTIONS(3303), + [anon_sym_DQUOTE] = ACTIONS(3303), + [anon_sym_SQUOTE] = ACTIONS(3303), + [anon_sym_class] = ACTIONS(3303), + [anon_sym_async] = ACTIONS(3303), + [anon_sym_function] = ACTIONS(3303), + [anon_sym_new] = ACTIONS(3303), + [anon_sym_using] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_SLASH] = ACTIONS(3303), + [anon_sym_LT] = ACTIONS(3303), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_void] = ACTIONS(3303), + [anon_sym_delete] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(3303), + [anon_sym_DASH_DASH] = ACTIONS(3303), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3303), + [sym_number] = ACTIONS(3303), + [sym_private_property_identifier] = ACTIONS(3303), + [sym_this] = ACTIONS(3303), + [sym_super] = ACTIONS(3303), + [sym_true] = ACTIONS(3303), + [sym_false] = ACTIONS(3303), + [sym_null] = ACTIONS(3303), + [sym_undefined] = ACTIONS(3303), + [anon_sym_AT] = ACTIONS(3303), + [anon_sym_static] = ACTIONS(3303), + [anon_sym_readonly] = ACTIONS(3303), + [anon_sym_get] = ACTIONS(3303), + [anon_sym_set] = ACTIONS(3303), + [anon_sym_declare] = ACTIONS(3303), + [anon_sym_public] = ACTIONS(3303), + [anon_sym_private] = ACTIONS(3303), + [anon_sym_protected] = ACTIONS(3303), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_module] = ACTIONS(3303), + [anon_sym_any] = ACTIONS(3303), + [anon_sym_number] = ACTIONS(3303), + [anon_sym_boolean] = ACTIONS(3303), + [anon_sym_string] = ACTIONS(3303), + [anon_sym_symbol] = ACTIONS(3303), + [anon_sym_object] = ACTIONS(3303), + [anon_sym_abstract] = ACTIONS(3303), + [anon_sym_interface] = ACTIONS(3303), + [anon_sym_enum] = ACTIONS(3303), [sym_html_comment] = ACTIONS(5), }, [1077] = { [sym_comment] = STATE(1077), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3305), + [anon_sym_export] = ACTIONS(3305), + [anon_sym_default] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_namespace] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_typeof] = ACTIONS(3305), + [anon_sym_import] = ACTIONS(3305), + [anon_sym_with] = ACTIONS(3305), + [anon_sym_var] = ACTIONS(3305), + [anon_sym_let] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_else] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_switch] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_await] = ACTIONS(3305), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_do] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_debugger] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_throw] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_case] = ACTIONS(3305), + [anon_sym_yield] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_LTtemplate_GT] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3305), + [anon_sym_class] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_function] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3305), + [anon_sym_using] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_void] = ACTIONS(3305), + [anon_sym_delete] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3305), + [sym_number] = ACTIONS(3305), + [sym_private_property_identifier] = ACTIONS(3305), + [sym_this] = ACTIONS(3305), + [sym_super] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_null] = ACTIONS(3305), + [sym_undefined] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [anon_sym_static] = ACTIONS(3305), + [anon_sym_readonly] = ACTIONS(3305), + [anon_sym_get] = ACTIONS(3305), + [anon_sym_set] = ACTIONS(3305), + [anon_sym_declare] = ACTIONS(3305), + [anon_sym_public] = ACTIONS(3305), + [anon_sym_private] = ACTIONS(3305), + [anon_sym_protected] = ACTIONS(3305), + [anon_sym_override] = ACTIONS(3305), + [anon_sym_module] = ACTIONS(3305), + [anon_sym_any] = ACTIONS(3305), + [anon_sym_number] = ACTIONS(3305), + [anon_sym_boolean] = ACTIONS(3305), + [anon_sym_string] = ACTIONS(3305), + [anon_sym_symbol] = ACTIONS(3305), + [anon_sym_object] = ACTIONS(3305), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), [sym_html_comment] = ACTIONS(5), }, [1078] = { [sym_comment] = STATE(1078), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_finally] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(3307), [sym_html_comment] = ACTIONS(5), }, [1079] = { [sym_comment] = STATE(1079), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3207), + [anon_sym_export] = ACTIONS(3207), + [anon_sym_default] = ACTIONS(3207), + [anon_sym_type] = ACTIONS(3207), + [anon_sym_namespace] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3207), + [anon_sym_RBRACE] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(3207), + [anon_sym_import] = ACTIONS(3207), + [anon_sym_with] = ACTIONS(3207), + [anon_sym_var] = ACTIONS(3207), + [anon_sym_let] = ACTIONS(3207), + [anon_sym_const] = ACTIONS(3207), + [anon_sym_BANG] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_switch] = ACTIONS(3207), + [anon_sym_for] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(3207), + [anon_sym_await] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3207), + [anon_sym_do] = ACTIONS(3207), + [anon_sym_try] = ACTIONS(3207), + [anon_sym_break] = ACTIONS(3207), + [anon_sym_continue] = ACTIONS(3207), + [anon_sym_debugger] = ACTIONS(3207), + [anon_sym_return] = ACTIONS(3207), + [anon_sym_throw] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_case] = ACTIONS(3207), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3207), + [anon_sym_LTtemplate_GT] = ACTIONS(3207), + [anon_sym_DQUOTE] = ACTIONS(3207), + [anon_sym_SQUOTE] = ACTIONS(3207), + [anon_sym_class] = ACTIONS(3207), + [anon_sym_async] = ACTIONS(3207), + [anon_sym_function] = ACTIONS(3207), + [anon_sym_new] = ACTIONS(3207), + [anon_sym_using] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_SLASH] = ACTIONS(3207), + [anon_sym_LT] = ACTIONS(3207), + [anon_sym_TILDE] = ACTIONS(3207), + [anon_sym_void] = ACTIONS(3207), + [anon_sym_delete] = ACTIONS(3207), + [anon_sym_PLUS_PLUS] = ACTIONS(3207), + [anon_sym_DASH_DASH] = ACTIONS(3207), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3207), + [sym_number] = ACTIONS(3207), + [sym_private_property_identifier] = ACTIONS(3207), + [sym_this] = ACTIONS(3207), + [sym_super] = ACTIONS(3207), + [sym_true] = ACTIONS(3207), + [sym_false] = ACTIONS(3207), + [sym_null] = ACTIONS(3207), + [sym_undefined] = ACTIONS(3207), + [anon_sym_AT] = ACTIONS(3207), + [anon_sym_static] = ACTIONS(3207), + [anon_sym_readonly] = ACTIONS(3207), + [anon_sym_get] = ACTIONS(3207), + [anon_sym_set] = ACTIONS(3207), + [anon_sym_declare] = ACTIONS(3207), + [anon_sym_public] = ACTIONS(3207), + [anon_sym_private] = ACTIONS(3207), + [anon_sym_protected] = ACTIONS(3207), + [anon_sym_override] = ACTIONS(3207), + [anon_sym_module] = ACTIONS(3207), + [anon_sym_any] = ACTIONS(3207), + [anon_sym_number] = ACTIONS(3207), + [anon_sym_boolean] = ACTIONS(3207), + [anon_sym_string] = ACTIONS(3207), + [anon_sym_symbol] = ACTIONS(3207), + [anon_sym_object] = ACTIONS(3207), + [anon_sym_abstract] = ACTIONS(3207), + [anon_sym_interface] = ACTIONS(3207), + [anon_sym_enum] = ACTIONS(3207), + [sym__automatic_semicolon] = ACTIONS(3209), [sym_html_comment] = ACTIONS(5), }, [1080] = { [sym_comment] = STATE(1080), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3309), + [anon_sym_export] = ACTIONS(3309), + [anon_sym_default] = ACTIONS(3309), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_typeof] = ACTIONS(3309), + [anon_sym_import] = ACTIONS(3309), + [anon_sym_with] = ACTIONS(3309), + [anon_sym_var] = ACTIONS(3309), + [anon_sym_let] = ACTIONS(3309), + [anon_sym_const] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_else] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_switch] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_await] = ACTIONS(3309), + [anon_sym_while] = ACTIONS(3309), + [anon_sym_do] = ACTIONS(3309), + [anon_sym_try] = ACTIONS(3309), + [anon_sym_break] = ACTIONS(3309), + [anon_sym_continue] = ACTIONS(3309), + [anon_sym_debugger] = ACTIONS(3309), + [anon_sym_return] = ACTIONS(3309), + [anon_sym_throw] = ACTIONS(3309), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_case] = ACTIONS(3309), + [anon_sym_yield] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_LTtemplate_GT] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [anon_sym_SQUOTE] = ACTIONS(3309), + [anon_sym_class] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_function] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3309), + [anon_sym_using] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_SLASH] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_void] = ACTIONS(3309), + [anon_sym_delete] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3309), + [sym_number] = ACTIONS(3309), + [sym_private_property_identifier] = ACTIONS(3309), + [sym_this] = ACTIONS(3309), + [sym_super] = ACTIONS(3309), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_null] = ACTIONS(3309), + [sym_undefined] = ACTIONS(3309), + [anon_sym_AT] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3309), + [anon_sym_readonly] = ACTIONS(3309), + [anon_sym_get] = ACTIONS(3309), + [anon_sym_set] = ACTIONS(3309), + [anon_sym_declare] = ACTIONS(3309), + [anon_sym_public] = ACTIONS(3309), + [anon_sym_private] = ACTIONS(3309), + [anon_sym_protected] = ACTIONS(3309), + [anon_sym_override] = ACTIONS(3309), + [anon_sym_module] = ACTIONS(3309), + [anon_sym_any] = ACTIONS(3309), + [anon_sym_number] = ACTIONS(3309), + [anon_sym_boolean] = ACTIONS(3309), + [anon_sym_string] = ACTIONS(3309), + [anon_sym_symbol] = ACTIONS(3309), + [anon_sym_object] = ACTIONS(3309), + [anon_sym_abstract] = ACTIONS(3309), + [anon_sym_interface] = ACTIONS(3309), + [anon_sym_enum] = ACTIONS(3309), [sym_html_comment] = ACTIONS(5), }, [1081] = { [sym_comment] = STATE(1081), - [ts_builtin_sym_end] = ACTIONS(3261), - [sym_identifier] = ACTIONS(3209), - [anon_sym_export] = ACTIONS(3209), - [anon_sym_type] = ACTIONS(3209), - [anon_sym_namespace] = ACTIONS(3209), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym_typeof] = ACTIONS(3209), - [anon_sym_import] = ACTIONS(3209), - [anon_sym_with] = ACTIONS(3209), - [anon_sym_var] = ACTIONS(3209), - [anon_sym_let] = ACTIONS(3209), - [anon_sym_const] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_else] = ACTIONS(3209), - [anon_sym_if] = ACTIONS(3209), - [anon_sym_switch] = ACTIONS(3209), - [anon_sym_for] = ACTIONS(3209), - [anon_sym_LPAREN] = ACTIONS(3209), - [anon_sym_await] = ACTIONS(3209), - [anon_sym_while] = ACTIONS(3209), - [anon_sym_do] = ACTIONS(3209), - [anon_sym_try] = ACTIONS(3209), - [anon_sym_break] = ACTIONS(3209), - [anon_sym_continue] = ACTIONS(3209), - [anon_sym_debugger] = ACTIONS(3209), - [anon_sym_return] = ACTIONS(3209), - [anon_sym_throw] = ACTIONS(3209), - [anon_sym_SEMI] = ACTIONS(3209), - [anon_sym_finally] = ACTIONS(3209), - [anon_sym_yield] = ACTIONS(3209), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_LTtemplate_GT] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3209), - [anon_sym_class] = ACTIONS(3209), - [anon_sym_async] = ACTIONS(3209), - [anon_sym_function] = ACTIONS(3209), - [anon_sym_new] = ACTIONS(3209), - [anon_sym_using] = ACTIONS(3209), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_void] = ACTIONS(3209), - [anon_sym_delete] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3209), - [sym_number] = ACTIONS(3209), - [sym_private_property_identifier] = ACTIONS(3209), - [sym_this] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_true] = ACTIONS(3209), - [sym_false] = ACTIONS(3209), - [sym_null] = ACTIONS(3209), - [sym_undefined] = ACTIONS(3209), - [anon_sym_AT] = ACTIONS(3209), - [anon_sym_static] = ACTIONS(3209), - [anon_sym_readonly] = ACTIONS(3209), - [anon_sym_get] = ACTIONS(3209), - [anon_sym_set] = ACTIONS(3209), - [anon_sym_declare] = ACTIONS(3209), - [anon_sym_public] = ACTIONS(3209), - [anon_sym_private] = ACTIONS(3209), - [anon_sym_protected] = ACTIONS(3209), - [anon_sym_override] = ACTIONS(3209), - [anon_sym_module] = ACTIONS(3209), - [anon_sym_any] = ACTIONS(3209), - [anon_sym_number] = ACTIONS(3209), - [anon_sym_boolean] = ACTIONS(3209), - [anon_sym_string] = ACTIONS(3209), - [anon_sym_symbol] = ACTIONS(3209), - [anon_sym_object] = ACTIONS(3209), - [anon_sym_abstract] = ACTIONS(3209), - [anon_sym_interface] = ACTIONS(3209), - [anon_sym_enum] = ACTIONS(3209), + [sym_identifier] = ACTIONS(3311), + [anon_sym_export] = ACTIONS(3311), + [anon_sym_default] = ACTIONS(3311), + [anon_sym_type] = ACTIONS(3311), + [anon_sym_namespace] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_typeof] = ACTIONS(3311), + [anon_sym_import] = ACTIONS(3311), + [anon_sym_with] = ACTIONS(3311), + [anon_sym_var] = ACTIONS(3311), + [anon_sym_let] = ACTIONS(3311), + [anon_sym_const] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_else] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_switch] = ACTIONS(3311), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_await] = ACTIONS(3311), + [anon_sym_while] = ACTIONS(3311), + [anon_sym_do] = ACTIONS(3311), + [anon_sym_try] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_debugger] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_throw] = ACTIONS(3311), + [anon_sym_SEMI] = ACTIONS(3311), + [anon_sym_case] = ACTIONS(3311), + [anon_sym_yield] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_LTtemplate_GT] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(3311), + [anon_sym_SQUOTE] = ACTIONS(3311), + [anon_sym_class] = ACTIONS(3311), + [anon_sym_async] = ACTIONS(3311), + [anon_sym_function] = ACTIONS(3311), + [anon_sym_new] = ACTIONS(3311), + [anon_sym_using] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_void] = ACTIONS(3311), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3311), + [sym_number] = ACTIONS(3311), + [sym_private_property_identifier] = ACTIONS(3311), + [sym_this] = ACTIONS(3311), + [sym_super] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_null] = ACTIONS(3311), + [sym_undefined] = ACTIONS(3311), + [anon_sym_AT] = ACTIONS(3311), + [anon_sym_static] = ACTIONS(3311), + [anon_sym_readonly] = ACTIONS(3311), + [anon_sym_get] = ACTIONS(3311), + [anon_sym_set] = ACTIONS(3311), + [anon_sym_declare] = ACTIONS(3311), + [anon_sym_public] = ACTIONS(3311), + [anon_sym_private] = ACTIONS(3311), + [anon_sym_protected] = ACTIONS(3311), + [anon_sym_override] = ACTIONS(3311), + [anon_sym_module] = ACTIONS(3311), + [anon_sym_any] = ACTIONS(3311), + [anon_sym_number] = ACTIONS(3311), + [anon_sym_boolean] = ACTIONS(3311), + [anon_sym_string] = ACTIONS(3311), + [anon_sym_symbol] = ACTIONS(3311), + [anon_sym_object] = ACTIONS(3311), + [anon_sym_abstract] = ACTIONS(3311), + [anon_sym_interface] = ACTIONS(3311), + [anon_sym_enum] = ACTIONS(3311), [sym_html_comment] = ACTIONS(5), }, [1082] = { [sym_comment] = STATE(1082), - [ts_builtin_sym_end] = ACTIONS(2248), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_namespace] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2246), - [anon_sym_import] = ACTIONS(2246), - [anon_sym_with] = ACTIONS(2246), - [anon_sym_var] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_else] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_debugger] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_throw] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_finally] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LTtemplate_GT] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_class] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2246), - [anon_sym_delete] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_private_property_identifier] = ACTIONS(2246), - [sym_this] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_undefined] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_readonly] = ACTIONS(2246), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_declare] = ACTIONS(2246), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_override] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_any] = ACTIONS(2246), - [anon_sym_number] = ACTIONS(2246), - [anon_sym_boolean] = ACTIONS(2246), - [anon_sym_string] = ACTIONS(2246), - [anon_sym_symbol] = ACTIONS(2246), - [anon_sym_object] = ACTIONS(2246), - [anon_sym_abstract] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_finally] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(3313), [sym_html_comment] = ACTIONS(5), }, [1083] = { [sym_comment] = STATE(1083), - [sym_identifier] = ACTIONS(3263), - [anon_sym_export] = ACTIONS(3263), - [anon_sym_default] = ACTIONS(3263), - [anon_sym_type] = ACTIONS(3263), - [anon_sym_namespace] = ACTIONS(3263), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_RBRACE] = ACTIONS(3263), - [anon_sym_typeof] = ACTIONS(3263), - [anon_sym_import] = ACTIONS(3263), - [anon_sym_with] = ACTIONS(3263), - [anon_sym_var] = ACTIONS(3263), - [anon_sym_let] = ACTIONS(3263), - [anon_sym_const] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_else] = ACTIONS(3263), - [anon_sym_if] = ACTIONS(3263), - [anon_sym_switch] = ACTIONS(3263), - [anon_sym_for] = ACTIONS(3263), - [anon_sym_LPAREN] = ACTIONS(3263), - [anon_sym_await] = ACTIONS(3263), - [anon_sym_while] = ACTIONS(3263), - [anon_sym_do] = ACTIONS(3263), - [anon_sym_try] = ACTIONS(3263), - [anon_sym_break] = ACTIONS(3263), - [anon_sym_continue] = ACTIONS(3263), - [anon_sym_debugger] = ACTIONS(3263), - [anon_sym_return] = ACTIONS(3263), - [anon_sym_throw] = ACTIONS(3263), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym_case] = ACTIONS(3263), - [anon_sym_yield] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3263), - [anon_sym_LTtemplate_GT] = ACTIONS(3263), - [anon_sym_DQUOTE] = ACTIONS(3263), - [anon_sym_SQUOTE] = ACTIONS(3263), - [anon_sym_class] = ACTIONS(3263), - [anon_sym_async] = ACTIONS(3263), - [anon_sym_function] = ACTIONS(3263), - [anon_sym_new] = ACTIONS(3263), - [anon_sym_using] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(3263), - [anon_sym_SLASH] = ACTIONS(3263), - [anon_sym_LT] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_void] = ACTIONS(3263), - [anon_sym_delete] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3263), - [sym_number] = ACTIONS(3263), - [sym_private_property_identifier] = ACTIONS(3263), - [sym_this] = ACTIONS(3263), - [sym_super] = ACTIONS(3263), - [sym_true] = ACTIONS(3263), - [sym_false] = ACTIONS(3263), - [sym_null] = ACTIONS(3263), - [sym_undefined] = ACTIONS(3263), - [anon_sym_AT] = ACTIONS(3263), - [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_abstract] = ACTIONS(3263), - [anon_sym_interface] = ACTIONS(3263), - [anon_sym_enum] = ACTIONS(3263), + [sym_identifier] = ACTIONS(3315), + [anon_sym_export] = ACTIONS(3315), + [anon_sym_default] = ACTIONS(3315), + [anon_sym_type] = ACTIONS(3315), + [anon_sym_namespace] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3315), + [anon_sym_RBRACE] = ACTIONS(3315), + [anon_sym_typeof] = ACTIONS(3315), + [anon_sym_import] = ACTIONS(3315), + [anon_sym_with] = ACTIONS(3315), + [anon_sym_var] = ACTIONS(3315), + [anon_sym_let] = ACTIONS(3315), + [anon_sym_const] = ACTIONS(3315), + [anon_sym_BANG] = ACTIONS(3315), + [anon_sym_else] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_switch] = ACTIONS(3315), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3315), + [anon_sym_await] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3315), + [anon_sym_do] = ACTIONS(3315), + [anon_sym_try] = ACTIONS(3315), + [anon_sym_break] = ACTIONS(3315), + [anon_sym_continue] = ACTIONS(3315), + [anon_sym_debugger] = ACTIONS(3315), + [anon_sym_return] = ACTIONS(3315), + [anon_sym_throw] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym_case] = ACTIONS(3315), + [anon_sym_yield] = ACTIONS(3315), + [anon_sym_LBRACK] = ACTIONS(3315), + [anon_sym_LTtemplate_GT] = ACTIONS(3315), + [anon_sym_DQUOTE] = ACTIONS(3315), + [anon_sym_SQUOTE] = ACTIONS(3315), + [anon_sym_class] = ACTIONS(3315), + [anon_sym_async] = ACTIONS(3315), + [anon_sym_function] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(3315), + [anon_sym_using] = ACTIONS(3315), + [anon_sym_PLUS] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3315), + [anon_sym_SLASH] = ACTIONS(3315), + [anon_sym_LT] = ACTIONS(3315), + [anon_sym_TILDE] = ACTIONS(3315), + [anon_sym_void] = ACTIONS(3315), + [anon_sym_delete] = ACTIONS(3315), + [anon_sym_PLUS_PLUS] = ACTIONS(3315), + [anon_sym_DASH_DASH] = ACTIONS(3315), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3315), + [sym_number] = ACTIONS(3315), + [sym_private_property_identifier] = ACTIONS(3315), + [sym_this] = ACTIONS(3315), + [sym_super] = ACTIONS(3315), + [sym_true] = ACTIONS(3315), + [sym_false] = ACTIONS(3315), + [sym_null] = ACTIONS(3315), + [sym_undefined] = ACTIONS(3315), + [anon_sym_AT] = ACTIONS(3315), + [anon_sym_static] = ACTIONS(3315), + [anon_sym_readonly] = ACTIONS(3315), + [anon_sym_get] = ACTIONS(3315), + [anon_sym_set] = ACTIONS(3315), + [anon_sym_declare] = ACTIONS(3315), + [anon_sym_public] = ACTIONS(3315), + [anon_sym_private] = ACTIONS(3315), + [anon_sym_protected] = ACTIONS(3315), + [anon_sym_override] = ACTIONS(3315), + [anon_sym_module] = ACTIONS(3315), + [anon_sym_any] = ACTIONS(3315), + [anon_sym_number] = ACTIONS(3315), + [anon_sym_boolean] = ACTIONS(3315), + [anon_sym_string] = ACTIONS(3315), + [anon_sym_symbol] = ACTIONS(3315), + [anon_sym_object] = ACTIONS(3315), + [anon_sym_abstract] = ACTIONS(3315), + [anon_sym_interface] = ACTIONS(3315), + [anon_sym_enum] = ACTIONS(3315), [sym_html_comment] = ACTIONS(5), }, [1084] = { [sym_comment] = STATE(1084), - [ts_builtin_sym_end] = ACTIONS(3265), - [sym_identifier] = ACTIONS(3203), - [anon_sym_export] = ACTIONS(3203), - [anon_sym_type] = ACTIONS(3203), - [anon_sym_namespace] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_typeof] = ACTIONS(3203), - [anon_sym_import] = ACTIONS(3203), - [anon_sym_with] = ACTIONS(3203), - [anon_sym_var] = ACTIONS(3203), - [anon_sym_let] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_else] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_switch] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_await] = ACTIONS(3203), - [anon_sym_while] = ACTIONS(3203), - [anon_sym_do] = ACTIONS(3203), - [anon_sym_try] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_debugger] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_throw] = ACTIONS(3203), - [anon_sym_SEMI] = ACTIONS(3267), - [anon_sym_yield] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_LTtemplate_GT] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_class] = ACTIONS(3203), - [anon_sym_async] = ACTIONS(3203), - [anon_sym_function] = ACTIONS(3203), - [anon_sym_new] = ACTIONS(3203), - [anon_sym_using] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_void] = ACTIONS(3203), - [anon_sym_delete] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3203), - [sym_number] = ACTIONS(3203), - [sym_private_property_identifier] = ACTIONS(3203), - [sym_this] = ACTIONS(3203), - [sym_super] = ACTIONS(3203), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [sym_null] = ACTIONS(3203), - [sym_undefined] = ACTIONS(3203), - [anon_sym_AT] = ACTIONS(3203), - [anon_sym_static] = ACTIONS(3203), - [anon_sym_readonly] = ACTIONS(3203), - [anon_sym_get] = ACTIONS(3203), - [anon_sym_set] = ACTIONS(3203), - [anon_sym_declare] = ACTIONS(3203), - [anon_sym_public] = ACTIONS(3203), - [anon_sym_private] = ACTIONS(3203), - [anon_sym_protected] = ACTIONS(3203), - [anon_sym_override] = ACTIONS(3203), - [anon_sym_module] = ACTIONS(3203), - [anon_sym_any] = ACTIONS(3203), - [anon_sym_number] = ACTIONS(3203), - [anon_sym_boolean] = ACTIONS(3203), - [anon_sym_string] = ACTIONS(3203), - [anon_sym_symbol] = ACTIONS(3203), - [anon_sym_object] = ACTIONS(3203), - [anon_sym_abstract] = ACTIONS(3203), - [anon_sym_interface] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [sym__automatic_semicolon] = ACTIONS(3269), + [sym_identifier] = ACTIONS(3317), + [anon_sym_export] = ACTIONS(3317), + [anon_sym_default] = ACTIONS(3317), + [anon_sym_type] = ACTIONS(3317), + [anon_sym_namespace] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_typeof] = ACTIONS(3317), + [anon_sym_import] = ACTIONS(3317), + [anon_sym_with] = ACTIONS(3317), + [anon_sym_var] = ACTIONS(3317), + [anon_sym_let] = ACTIONS(3317), + [anon_sym_const] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_else] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_switch] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_await] = ACTIONS(3317), + [anon_sym_while] = ACTIONS(3317), + [anon_sym_do] = ACTIONS(3317), + [anon_sym_try] = ACTIONS(3317), + [anon_sym_break] = ACTIONS(3317), + [anon_sym_continue] = ACTIONS(3317), + [anon_sym_debugger] = ACTIONS(3317), + [anon_sym_return] = ACTIONS(3317), + [anon_sym_throw] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_case] = ACTIONS(3317), + [anon_sym_yield] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_LTtemplate_GT] = ACTIONS(3317), + [anon_sym_DQUOTE] = ACTIONS(3317), + [anon_sym_SQUOTE] = ACTIONS(3317), + [anon_sym_class] = ACTIONS(3317), + [anon_sym_async] = ACTIONS(3317), + [anon_sym_function] = ACTIONS(3317), + [anon_sym_new] = ACTIONS(3317), + [anon_sym_using] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_void] = ACTIONS(3317), + [anon_sym_delete] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3317), + [sym_number] = ACTIONS(3317), + [sym_private_property_identifier] = ACTIONS(3317), + [sym_this] = ACTIONS(3317), + [sym_super] = ACTIONS(3317), + [sym_true] = ACTIONS(3317), + [sym_false] = ACTIONS(3317), + [sym_null] = ACTIONS(3317), + [sym_undefined] = ACTIONS(3317), + [anon_sym_AT] = ACTIONS(3317), + [anon_sym_static] = ACTIONS(3317), + [anon_sym_readonly] = ACTIONS(3317), + [anon_sym_get] = ACTIONS(3317), + [anon_sym_set] = ACTIONS(3317), + [anon_sym_declare] = ACTIONS(3317), + [anon_sym_public] = ACTIONS(3317), + [anon_sym_private] = ACTIONS(3317), + [anon_sym_protected] = ACTIONS(3317), + [anon_sym_override] = ACTIONS(3317), + [anon_sym_module] = ACTIONS(3317), + [anon_sym_any] = ACTIONS(3317), + [anon_sym_number] = ACTIONS(3317), + [anon_sym_boolean] = ACTIONS(3317), + [anon_sym_string] = ACTIONS(3317), + [anon_sym_symbol] = ACTIONS(3317), + [anon_sym_object] = ACTIONS(3317), + [anon_sym_abstract] = ACTIONS(3317), + [anon_sym_interface] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3317), [sym_html_comment] = ACTIONS(5), }, [1085] = { [sym_comment] = STATE(1085), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3319), + [anon_sym_export] = ACTIONS(3319), + [anon_sym_default] = ACTIONS(3319), + [anon_sym_type] = ACTIONS(3319), + [anon_sym_namespace] = ACTIONS(3319), + [anon_sym_LBRACE] = ACTIONS(3319), + [anon_sym_RBRACE] = ACTIONS(3319), + [anon_sym_typeof] = ACTIONS(3319), + [anon_sym_import] = ACTIONS(3319), + [anon_sym_with] = ACTIONS(3319), + [anon_sym_var] = ACTIONS(3319), + [anon_sym_let] = ACTIONS(3319), + [anon_sym_const] = ACTIONS(3319), + [anon_sym_BANG] = ACTIONS(3319), + [anon_sym_else] = ACTIONS(3319), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_switch] = ACTIONS(3319), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3319), + [anon_sym_await] = ACTIONS(3319), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_do] = ACTIONS(3319), + [anon_sym_try] = ACTIONS(3319), + [anon_sym_break] = ACTIONS(3319), + [anon_sym_continue] = ACTIONS(3319), + [anon_sym_debugger] = ACTIONS(3319), + [anon_sym_return] = ACTIONS(3319), + [anon_sym_throw] = ACTIONS(3319), + [anon_sym_SEMI] = ACTIONS(3319), + [anon_sym_case] = ACTIONS(3319), + [anon_sym_yield] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3319), + [anon_sym_LTtemplate_GT] = ACTIONS(3319), + [anon_sym_DQUOTE] = ACTIONS(3319), + [anon_sym_SQUOTE] = ACTIONS(3319), + [anon_sym_class] = ACTIONS(3319), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_function] = ACTIONS(3319), + [anon_sym_new] = ACTIONS(3319), + [anon_sym_using] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_TILDE] = ACTIONS(3319), + [anon_sym_void] = ACTIONS(3319), + [anon_sym_delete] = ACTIONS(3319), + [anon_sym_PLUS_PLUS] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3319), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3319), + [sym_number] = ACTIONS(3319), + [sym_private_property_identifier] = ACTIONS(3319), + [sym_this] = ACTIONS(3319), + [sym_super] = ACTIONS(3319), + [sym_true] = ACTIONS(3319), + [sym_false] = ACTIONS(3319), + [sym_null] = ACTIONS(3319), + [sym_undefined] = ACTIONS(3319), + [anon_sym_AT] = ACTIONS(3319), + [anon_sym_static] = ACTIONS(3319), + [anon_sym_readonly] = ACTIONS(3319), + [anon_sym_get] = ACTIONS(3319), + [anon_sym_set] = ACTIONS(3319), + [anon_sym_declare] = ACTIONS(3319), + [anon_sym_public] = ACTIONS(3319), + [anon_sym_private] = ACTIONS(3319), + [anon_sym_protected] = ACTIONS(3319), + [anon_sym_override] = ACTIONS(3319), + [anon_sym_module] = ACTIONS(3319), + [anon_sym_any] = ACTIONS(3319), + [anon_sym_number] = ACTIONS(3319), + [anon_sym_boolean] = ACTIONS(3319), + [anon_sym_string] = ACTIONS(3319), + [anon_sym_symbol] = ACTIONS(3319), + [anon_sym_object] = ACTIONS(3319), + [anon_sym_abstract] = ACTIONS(3319), + [anon_sym_interface] = ACTIONS(3319), + [anon_sym_enum] = ACTIONS(3319), [sym_html_comment] = ACTIONS(5), }, [1086] = { + [sym_statement_block] = STATE(1345), [sym_comment] = STATE(1086), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_default] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(3161), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_case] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), [sym_html_comment] = ACTIONS(5), }, [1087] = { [sym_comment] = STATE(1087), - [sym_identifier] = ACTIONS(3271), - [anon_sym_export] = ACTIONS(3271), - [anon_sym_default] = ACTIONS(3271), - [anon_sym_type] = ACTIONS(3271), - [anon_sym_namespace] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_RBRACE] = ACTIONS(3271), - [anon_sym_typeof] = ACTIONS(3271), - [anon_sym_import] = ACTIONS(3271), - [anon_sym_with] = ACTIONS(3271), - [anon_sym_var] = ACTIONS(3271), - [anon_sym_let] = ACTIONS(3271), - [anon_sym_const] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_else] = ACTIONS(3271), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_switch] = ACTIONS(3271), - [anon_sym_for] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_await] = ACTIONS(3271), - [anon_sym_while] = ACTIONS(3271), - [anon_sym_do] = ACTIONS(3271), - [anon_sym_try] = ACTIONS(3271), - [anon_sym_break] = ACTIONS(3271), - [anon_sym_continue] = ACTIONS(3271), - [anon_sym_debugger] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3271), - [anon_sym_throw] = ACTIONS(3271), - [anon_sym_SEMI] = ACTIONS(3271), - [anon_sym_case] = ACTIONS(3271), - [anon_sym_yield] = ACTIONS(3271), - [anon_sym_LBRACK] = ACTIONS(3271), - [anon_sym_LTtemplate_GT] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3271), - [anon_sym_SQUOTE] = ACTIONS(3271), - [anon_sym_class] = ACTIONS(3271), - [anon_sym_async] = ACTIONS(3271), - [anon_sym_function] = ACTIONS(3271), - [anon_sym_new] = ACTIONS(3271), - [anon_sym_using] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(3271), - [anon_sym_SLASH] = ACTIONS(3271), - [anon_sym_LT] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_void] = ACTIONS(3271), - [anon_sym_delete] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3271), - [sym_number] = ACTIONS(3271), - [sym_private_property_identifier] = ACTIONS(3271), - [sym_this] = ACTIONS(3271), - [sym_super] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_null] = ACTIONS(3271), - [sym_undefined] = ACTIONS(3271), - [anon_sym_AT] = ACTIONS(3271), - [anon_sym_static] = ACTIONS(3271), - [anon_sym_readonly] = ACTIONS(3271), - [anon_sym_get] = ACTIONS(3271), - [anon_sym_set] = ACTIONS(3271), - [anon_sym_declare] = ACTIONS(3271), - [anon_sym_public] = ACTIONS(3271), - [anon_sym_private] = ACTIONS(3271), - [anon_sym_protected] = ACTIONS(3271), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3271), - [anon_sym_any] = ACTIONS(3271), - [anon_sym_number] = ACTIONS(3271), - [anon_sym_boolean] = ACTIONS(3271), - [anon_sym_string] = ACTIONS(3271), - [anon_sym_symbol] = ACTIONS(3271), - [anon_sym_object] = ACTIONS(3271), - [anon_sym_abstract] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3271), - [anon_sym_enum] = ACTIONS(3271), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_default] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_case] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LTtemplate_GT] = ACTIONS(2172), + [anon_sym_DOT] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_using] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2172), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2172), + [anon_sym_DASH_DASH] = ACTIONS(2172), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2172), + [sym_number] = ACTIONS(2172), + [sym_private_property_identifier] = ACTIONS(2172), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2172), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_object] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), [sym_html_comment] = ACTIONS(5), }, [1088] = { [sym_comment] = STATE(1088), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), + [sym_identifier] = ACTIONS(3321), + [anon_sym_export] = ACTIONS(3321), + [anon_sym_default] = ACTIONS(3321), + [anon_sym_type] = ACTIONS(3321), + [anon_sym_namespace] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_typeof] = ACTIONS(3321), + [anon_sym_import] = ACTIONS(3321), + [anon_sym_with] = ACTIONS(3321), + [anon_sym_var] = ACTIONS(3321), + [anon_sym_let] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3321), + [anon_sym_else] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_switch] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_await] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3321), + [anon_sym_do] = ACTIONS(3321), + [anon_sym_try] = ACTIONS(3321), + [anon_sym_break] = ACTIONS(3321), + [anon_sym_continue] = ACTIONS(3321), + [anon_sym_debugger] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_throw] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_case] = ACTIONS(3321), + [anon_sym_yield] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_LTtemplate_GT] = ACTIONS(3321), + [anon_sym_DQUOTE] = ACTIONS(3321), + [anon_sym_SQUOTE] = ACTIONS(3321), + [anon_sym_class] = ACTIONS(3321), + [anon_sym_async] = ACTIONS(3321), + [anon_sym_function] = ACTIONS(3321), + [anon_sym_new] = ACTIONS(3321), + [anon_sym_using] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_void] = ACTIONS(3321), + [anon_sym_delete] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3321), + [sym_number] = ACTIONS(3321), + [sym_private_property_identifier] = ACTIONS(3321), + [sym_this] = ACTIONS(3321), + [sym_super] = ACTIONS(3321), + [sym_true] = ACTIONS(3321), + [sym_false] = ACTIONS(3321), + [sym_null] = ACTIONS(3321), + [sym_undefined] = ACTIONS(3321), + [anon_sym_AT] = ACTIONS(3321), + [anon_sym_static] = ACTIONS(3321), + [anon_sym_readonly] = ACTIONS(3321), + [anon_sym_get] = ACTIONS(3321), + [anon_sym_set] = ACTIONS(3321), + [anon_sym_declare] = ACTIONS(3321), + [anon_sym_public] = ACTIONS(3321), + [anon_sym_private] = ACTIONS(3321), + [anon_sym_protected] = ACTIONS(3321), + [anon_sym_override] = ACTIONS(3321), + [anon_sym_module] = ACTIONS(3321), + [anon_sym_any] = ACTIONS(3321), + [anon_sym_number] = ACTIONS(3321), + [anon_sym_boolean] = ACTIONS(3321), + [anon_sym_string] = ACTIONS(3321), + [anon_sym_symbol] = ACTIONS(3321), + [anon_sym_object] = ACTIONS(3321), + [anon_sym_abstract] = ACTIONS(3321), + [anon_sym_interface] = ACTIONS(3321), + [anon_sym_enum] = ACTIONS(3321), [sym_html_comment] = ACTIONS(5), }, [1089] = { [sym_comment] = STATE(1089), - [sym_identifier] = ACTIONS(3273), - [anon_sym_export] = ACTIONS(3273), - [anon_sym_default] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3273), - [anon_sym_namespace] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(3273), - [anon_sym_RBRACE] = ACTIONS(3273), - [anon_sym_typeof] = ACTIONS(3273), - [anon_sym_import] = ACTIONS(3273), - [anon_sym_with] = ACTIONS(3273), - [anon_sym_var] = ACTIONS(3273), - [anon_sym_let] = ACTIONS(3273), - [anon_sym_const] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3273), - [anon_sym_else] = ACTIONS(3273), - [anon_sym_if] = ACTIONS(3273), - [anon_sym_switch] = ACTIONS(3273), - [anon_sym_for] = ACTIONS(3273), - [anon_sym_LPAREN] = ACTIONS(3273), - [anon_sym_await] = ACTIONS(3273), - [anon_sym_while] = ACTIONS(3273), - [anon_sym_do] = ACTIONS(3273), - [anon_sym_try] = ACTIONS(3273), - [anon_sym_break] = ACTIONS(3273), - [anon_sym_continue] = ACTIONS(3273), - [anon_sym_debugger] = ACTIONS(3273), - [anon_sym_return] = ACTIONS(3273), - [anon_sym_throw] = ACTIONS(3273), - [anon_sym_SEMI] = ACTIONS(3273), - [anon_sym_case] = ACTIONS(3273), - [anon_sym_yield] = ACTIONS(3273), - [anon_sym_LBRACK] = ACTIONS(3273), - [anon_sym_LTtemplate_GT] = ACTIONS(3273), - [anon_sym_DQUOTE] = ACTIONS(3273), - [anon_sym_SQUOTE] = ACTIONS(3273), - [anon_sym_class] = ACTIONS(3273), - [anon_sym_async] = ACTIONS(3273), - [anon_sym_function] = ACTIONS(3273), - [anon_sym_new] = ACTIONS(3273), - [anon_sym_using] = ACTIONS(3273), - [anon_sym_PLUS] = ACTIONS(3273), - [anon_sym_DASH] = ACTIONS(3273), - [anon_sym_SLASH] = ACTIONS(3273), - [anon_sym_LT] = ACTIONS(3273), - [anon_sym_TILDE] = ACTIONS(3273), - [anon_sym_void] = ACTIONS(3273), - [anon_sym_delete] = ACTIONS(3273), - [anon_sym_PLUS_PLUS] = ACTIONS(3273), - [anon_sym_DASH_DASH] = ACTIONS(3273), + [sym_identifier] = ACTIONS(3323), + [anon_sym_export] = ACTIONS(3323), + [anon_sym_default] = ACTIONS(3323), + [anon_sym_type] = ACTIONS(3323), + [anon_sym_namespace] = ACTIONS(3323), + [anon_sym_LBRACE] = ACTIONS(3323), + [anon_sym_RBRACE] = ACTIONS(3323), + [anon_sym_typeof] = ACTIONS(3323), + [anon_sym_import] = ACTIONS(3323), + [anon_sym_with] = ACTIONS(3323), + [anon_sym_var] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3323), + [anon_sym_const] = ACTIONS(3323), + [anon_sym_BANG] = ACTIONS(3323), + [anon_sym_else] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_switch] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_LPAREN] = ACTIONS(3323), + [anon_sym_await] = ACTIONS(3323), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_do] = ACTIONS(3323), + [anon_sym_try] = ACTIONS(3323), + [anon_sym_break] = ACTIONS(3323), + [anon_sym_continue] = ACTIONS(3323), + [anon_sym_debugger] = ACTIONS(3323), + [anon_sym_return] = ACTIONS(3323), + [anon_sym_throw] = ACTIONS(3323), + [anon_sym_SEMI] = ACTIONS(3323), + [anon_sym_case] = ACTIONS(3323), + [anon_sym_yield] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3323), + [anon_sym_LTtemplate_GT] = ACTIONS(3323), + [anon_sym_DQUOTE] = ACTIONS(3323), + [anon_sym_SQUOTE] = ACTIONS(3323), + [anon_sym_class] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_function] = ACTIONS(3323), + [anon_sym_new] = ACTIONS(3323), + [anon_sym_using] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_SLASH] = ACTIONS(3323), + [anon_sym_LT] = ACTIONS(3323), + [anon_sym_TILDE] = ACTIONS(3323), + [anon_sym_void] = ACTIONS(3323), + [anon_sym_delete] = ACTIONS(3323), + [anon_sym_PLUS_PLUS] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(3323), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3273), - [sym_number] = ACTIONS(3273), - [sym_private_property_identifier] = ACTIONS(3273), - [sym_this] = ACTIONS(3273), - [sym_super] = ACTIONS(3273), - [sym_true] = ACTIONS(3273), - [sym_false] = ACTIONS(3273), - [sym_null] = ACTIONS(3273), - [sym_undefined] = ACTIONS(3273), - [anon_sym_AT] = ACTIONS(3273), - [anon_sym_static] = ACTIONS(3273), - [anon_sym_readonly] = ACTIONS(3273), - [anon_sym_get] = ACTIONS(3273), - [anon_sym_set] = ACTIONS(3273), - [anon_sym_declare] = ACTIONS(3273), - [anon_sym_public] = ACTIONS(3273), - [anon_sym_private] = ACTIONS(3273), - [anon_sym_protected] = ACTIONS(3273), - [anon_sym_override] = ACTIONS(3273), - [anon_sym_module] = ACTIONS(3273), - [anon_sym_any] = ACTIONS(3273), - [anon_sym_number] = ACTIONS(3273), - [anon_sym_boolean] = ACTIONS(3273), - [anon_sym_string] = ACTIONS(3273), - [anon_sym_symbol] = ACTIONS(3273), - [anon_sym_object] = ACTIONS(3273), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_interface] = ACTIONS(3273), - [anon_sym_enum] = ACTIONS(3273), + [anon_sym_BQUOTE] = ACTIONS(3323), + [sym_number] = ACTIONS(3323), + [sym_private_property_identifier] = ACTIONS(3323), + [sym_this] = ACTIONS(3323), + [sym_super] = ACTIONS(3323), + [sym_true] = ACTIONS(3323), + [sym_false] = ACTIONS(3323), + [sym_null] = ACTIONS(3323), + [sym_undefined] = ACTIONS(3323), + [anon_sym_AT] = ACTIONS(3323), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3323), + [anon_sym_get] = ACTIONS(3323), + [anon_sym_set] = ACTIONS(3323), + [anon_sym_declare] = ACTIONS(3323), + [anon_sym_public] = ACTIONS(3323), + [anon_sym_private] = ACTIONS(3323), + [anon_sym_protected] = ACTIONS(3323), + [anon_sym_override] = ACTIONS(3323), + [anon_sym_module] = ACTIONS(3323), + [anon_sym_any] = ACTIONS(3323), + [anon_sym_number] = ACTIONS(3323), + [anon_sym_boolean] = ACTIONS(3323), + [anon_sym_string] = ACTIONS(3323), + [anon_sym_symbol] = ACTIONS(3323), + [anon_sym_object] = ACTIONS(3323), + [anon_sym_abstract] = ACTIONS(3323), + [anon_sym_interface] = ACTIONS(3323), + [anon_sym_enum] = ACTIONS(3323), [sym_html_comment] = ACTIONS(5), }, [1090] = { [sym_comment] = STATE(1090), - [sym_identifier] = ACTIONS(3275), - [anon_sym_export] = ACTIONS(3275), - [anon_sym_default] = ACTIONS(3275), - [anon_sym_type] = ACTIONS(3275), - [anon_sym_namespace] = ACTIONS(3275), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_typeof] = ACTIONS(3275), - [anon_sym_import] = ACTIONS(3275), - [anon_sym_with] = ACTIONS(3275), - [anon_sym_var] = ACTIONS(3275), - [anon_sym_let] = ACTIONS(3275), - [anon_sym_const] = ACTIONS(3275), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_else] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3275), - [anon_sym_switch] = ACTIONS(3275), - [anon_sym_for] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_await] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3275), - [anon_sym_do] = ACTIONS(3275), - [anon_sym_try] = ACTIONS(3275), - [anon_sym_break] = ACTIONS(3275), - [anon_sym_continue] = ACTIONS(3275), - [anon_sym_debugger] = ACTIONS(3275), - [anon_sym_return] = ACTIONS(3275), - [anon_sym_throw] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3275), - [anon_sym_case] = ACTIONS(3275), - [anon_sym_yield] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_LTtemplate_GT] = ACTIONS(3275), - [anon_sym_DQUOTE] = ACTIONS(3275), - [anon_sym_SQUOTE] = ACTIONS(3275), - [anon_sym_class] = ACTIONS(3275), - [anon_sym_async] = ACTIONS(3275), - [anon_sym_function] = ACTIONS(3275), - [anon_sym_new] = ACTIONS(3275), - [anon_sym_using] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3275), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_LT] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_void] = ACTIONS(3275), - [anon_sym_delete] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3275), - [sym_number] = ACTIONS(3275), - [sym_private_property_identifier] = ACTIONS(3275), - [sym_this] = ACTIONS(3275), - [sym_super] = ACTIONS(3275), - [sym_true] = ACTIONS(3275), - [sym_false] = ACTIONS(3275), - [sym_null] = ACTIONS(3275), - [sym_undefined] = ACTIONS(3275), - [anon_sym_AT] = ACTIONS(3275), - [anon_sym_static] = ACTIONS(3275), - [anon_sym_readonly] = ACTIONS(3275), - [anon_sym_get] = ACTIONS(3275), - [anon_sym_set] = ACTIONS(3275), - [anon_sym_declare] = ACTIONS(3275), - [anon_sym_public] = ACTIONS(3275), - [anon_sym_private] = ACTIONS(3275), - [anon_sym_protected] = ACTIONS(3275), - [anon_sym_override] = ACTIONS(3275), - [anon_sym_module] = ACTIONS(3275), - [anon_sym_any] = ACTIONS(3275), - [anon_sym_number] = ACTIONS(3275), - [anon_sym_boolean] = ACTIONS(3275), - [anon_sym_string] = ACTIONS(3275), - [anon_sym_symbol] = ACTIONS(3275), - [anon_sym_object] = ACTIONS(3275), - [anon_sym_abstract] = ACTIONS(3275), - [anon_sym_interface] = ACTIONS(3275), - [anon_sym_enum] = ACTIONS(3275), + [sym_identifier] = ACTIONS(2226), + [anon_sym_export] = ACTIONS(2226), + [anon_sym_default] = ACTIONS(2226), + [anon_sym_type] = ACTIONS(2226), + [anon_sym_namespace] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2226), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_typeof] = ACTIONS(2226), + [anon_sym_import] = ACTIONS(2226), + [anon_sym_with] = ACTIONS(2226), + [anon_sym_var] = ACTIONS(2226), + [anon_sym_let] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_switch] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_await] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_do] = ACTIONS(2226), + [anon_sym_try] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_debugger] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_throw] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2226), + [anon_sym_case] = ACTIONS(2226), + [anon_sym_yield] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_LTtemplate_GT] = ACTIONS(2226), + [anon_sym_DQUOTE] = ACTIONS(2226), + [anon_sym_SQUOTE] = ACTIONS(2226), + [anon_sym_class] = ACTIONS(2226), + [anon_sym_async] = ACTIONS(2226), + [anon_sym_function] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(2226), + [anon_sym_using] = ACTIONS(2226), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_SLASH] = ACTIONS(2226), + [anon_sym_LT] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_void] = ACTIONS(2226), + [anon_sym_delete] = ACTIONS(2226), + [anon_sym_PLUS_PLUS] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2226), + [sym_number] = ACTIONS(2226), + [sym_private_property_identifier] = ACTIONS(2226), + [sym_this] = ACTIONS(2226), + [sym_super] = ACTIONS(2226), + [sym_true] = ACTIONS(2226), + [sym_false] = ACTIONS(2226), + [sym_null] = ACTIONS(2226), + [sym_undefined] = ACTIONS(2226), + [anon_sym_AT] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2226), + [anon_sym_readonly] = ACTIONS(2226), + [anon_sym_get] = ACTIONS(2226), + [anon_sym_set] = ACTIONS(2226), + [anon_sym_declare] = ACTIONS(2226), + [anon_sym_public] = ACTIONS(2226), + [anon_sym_private] = ACTIONS(2226), + [anon_sym_protected] = ACTIONS(2226), + [anon_sym_override] = ACTIONS(2226), + [anon_sym_module] = ACTIONS(2226), + [anon_sym_any] = ACTIONS(2226), + [anon_sym_number] = ACTIONS(2226), + [anon_sym_boolean] = ACTIONS(2226), + [anon_sym_string] = ACTIONS(2226), + [anon_sym_symbol] = ACTIONS(2226), + [anon_sym_object] = ACTIONS(2226), + [anon_sym_abstract] = ACTIONS(2226), + [anon_sym_interface] = ACTIONS(2226), + [anon_sym_enum] = ACTIONS(2226), + [sym__automatic_semicolon] = ACTIONS(2396), [sym_html_comment] = ACTIONS(5), }, [1091] = { [sym_comment] = STATE(1091), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_default] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_case] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(3325), [sym_html_comment] = ACTIONS(5), }, [1092] = { [sym_comment] = STATE(1092), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3327), + [anon_sym_export] = ACTIONS(3327), + [anon_sym_default] = ACTIONS(3327), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_namespace] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(3327), + [anon_sym_RBRACE] = ACTIONS(3327), + [anon_sym_typeof] = ACTIONS(3327), + [anon_sym_import] = ACTIONS(3327), + [anon_sym_with] = ACTIONS(3327), + [anon_sym_var] = ACTIONS(3327), + [anon_sym_let] = ACTIONS(3327), + [anon_sym_const] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3327), + [anon_sym_else] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_switch] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_await] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_do] = ACTIONS(3327), + [anon_sym_try] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_debugger] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_throw] = ACTIONS(3327), + [anon_sym_SEMI] = ACTIONS(3327), + [anon_sym_case] = ACTIONS(3327), + [anon_sym_yield] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3327), + [anon_sym_LTtemplate_GT] = ACTIONS(3327), + [anon_sym_DQUOTE] = ACTIONS(3327), + [anon_sym_SQUOTE] = ACTIONS(3327), + [anon_sym_class] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_function] = ACTIONS(3327), + [anon_sym_new] = ACTIONS(3327), + [anon_sym_using] = ACTIONS(3327), + [anon_sym_PLUS] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_SLASH] = ACTIONS(3327), + [anon_sym_LT] = ACTIONS(3327), + [anon_sym_TILDE] = ACTIONS(3327), + [anon_sym_void] = ACTIONS(3327), + [anon_sym_delete] = ACTIONS(3327), + [anon_sym_PLUS_PLUS] = ACTIONS(3327), + [anon_sym_DASH_DASH] = ACTIONS(3327), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3327), + [sym_number] = ACTIONS(3327), + [sym_private_property_identifier] = ACTIONS(3327), + [sym_this] = ACTIONS(3327), + [sym_super] = ACTIONS(3327), + [sym_true] = ACTIONS(3327), + [sym_false] = ACTIONS(3327), + [sym_null] = ACTIONS(3327), + [sym_undefined] = ACTIONS(3327), + [anon_sym_AT] = ACTIONS(3327), + [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_abstract] = ACTIONS(3327), + [anon_sym_interface] = ACTIONS(3327), + [anon_sym_enum] = ACTIONS(3327), [sym_html_comment] = ACTIONS(5), }, [1093] = { [sym_comment] = STATE(1093), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_default] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_case] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_else] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_case] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, [1094] = { [sym_comment] = STATE(1094), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3329), + [anon_sym_export] = ACTIONS(3329), + [anon_sym_default] = ACTIONS(3329), + [anon_sym_type] = ACTIONS(3329), + [anon_sym_namespace] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_RBRACE] = ACTIONS(3329), + [anon_sym_typeof] = ACTIONS(3329), + [anon_sym_import] = ACTIONS(3329), + [anon_sym_with] = ACTIONS(3329), + [anon_sym_var] = ACTIONS(3329), + [anon_sym_let] = ACTIONS(3329), + [anon_sym_const] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_else] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_switch] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3329), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_await] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3329), + [anon_sym_do] = ACTIONS(3329), + [anon_sym_try] = ACTIONS(3329), + [anon_sym_break] = ACTIONS(3329), + [anon_sym_continue] = ACTIONS(3329), + [anon_sym_debugger] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3329), + [anon_sym_throw] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_case] = ACTIONS(3329), + [anon_sym_yield] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_LTtemplate_GT] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(3329), + [anon_sym_SQUOTE] = ACTIONS(3329), + [anon_sym_class] = ACTIONS(3329), + [anon_sym_async] = ACTIONS(3329), + [anon_sym_function] = ACTIONS(3329), + [anon_sym_new] = ACTIONS(3329), + [anon_sym_using] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_SLASH] = ACTIONS(3329), + [anon_sym_LT] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_void] = ACTIONS(3329), + [anon_sym_delete] = ACTIONS(3329), + [anon_sym_PLUS_PLUS] = ACTIONS(3329), + [anon_sym_DASH_DASH] = ACTIONS(3329), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3329), + [sym_number] = ACTIONS(3329), + [sym_private_property_identifier] = ACTIONS(3329), + [sym_this] = ACTIONS(3329), + [sym_super] = ACTIONS(3329), + [sym_true] = ACTIONS(3329), + [sym_false] = ACTIONS(3329), + [sym_null] = ACTIONS(3329), + [sym_undefined] = ACTIONS(3329), + [anon_sym_AT] = ACTIONS(3329), + [anon_sym_static] = ACTIONS(3329), + [anon_sym_readonly] = ACTIONS(3329), + [anon_sym_get] = ACTIONS(3329), + [anon_sym_set] = ACTIONS(3329), + [anon_sym_declare] = ACTIONS(3329), + [anon_sym_public] = ACTIONS(3329), + [anon_sym_private] = ACTIONS(3329), + [anon_sym_protected] = ACTIONS(3329), + [anon_sym_override] = ACTIONS(3329), + [anon_sym_module] = ACTIONS(3329), + [anon_sym_any] = ACTIONS(3329), + [anon_sym_number] = ACTIONS(3329), + [anon_sym_boolean] = ACTIONS(3329), + [anon_sym_string] = ACTIONS(3329), + [anon_sym_symbol] = ACTIONS(3329), + [anon_sym_object] = ACTIONS(3329), + [anon_sym_abstract] = ACTIONS(3329), + [anon_sym_interface] = ACTIONS(3329), + [anon_sym_enum] = ACTIONS(3329), [sym_html_comment] = ACTIONS(5), }, [1095] = { + [sym_statement_block] = STATE(1482), [sym_comment] = STATE(1095), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [ts_builtin_sym_end] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(3169), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_else] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), [sym_html_comment] = ACTIONS(5), }, [1096] = { [sym_comment] = STATE(1096), - [sym_identifier] = ACTIONS(3279), - [anon_sym_export] = ACTIONS(3279), - [anon_sym_default] = ACTIONS(3279), - [anon_sym_type] = ACTIONS(3279), - [anon_sym_namespace] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_RBRACE] = ACTIONS(3279), - [anon_sym_typeof] = ACTIONS(3279), - [anon_sym_import] = ACTIONS(3279), - [anon_sym_with] = ACTIONS(3279), - [anon_sym_var] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_const] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_else] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_switch] = ACTIONS(3279), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_await] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_break] = ACTIONS(3279), - [anon_sym_continue] = ACTIONS(3279), - [anon_sym_debugger] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_throw] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_case] = ACTIONS(3279), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LTtemplate_GT] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_SQUOTE] = ACTIONS(3279), - [anon_sym_class] = ACTIONS(3279), - [anon_sym_async] = ACTIONS(3279), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_using] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_SLASH] = ACTIONS(3279), - [anon_sym_LT] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3279), - [anon_sym_void] = ACTIONS(3279), - [anon_sym_delete] = ACTIONS(3279), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_DASH_DASH] = ACTIONS(3279), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3279), - [sym_number] = ACTIONS(3279), - [sym_private_property_identifier] = ACTIONS(3279), - [sym_this] = ACTIONS(3279), - [sym_super] = ACTIONS(3279), - [sym_true] = ACTIONS(3279), - [sym_false] = ACTIONS(3279), - [sym_null] = ACTIONS(3279), - [sym_undefined] = ACTIONS(3279), - [anon_sym_AT] = ACTIONS(3279), - [anon_sym_static] = ACTIONS(3279), - [anon_sym_readonly] = ACTIONS(3279), - [anon_sym_get] = ACTIONS(3279), - [anon_sym_set] = ACTIONS(3279), - [anon_sym_declare] = ACTIONS(3279), - [anon_sym_public] = ACTIONS(3279), - [anon_sym_private] = ACTIONS(3279), - [anon_sym_protected] = ACTIONS(3279), - [anon_sym_override] = ACTIONS(3279), - [anon_sym_module] = ACTIONS(3279), - [anon_sym_any] = ACTIONS(3279), - [anon_sym_number] = ACTIONS(3279), - [anon_sym_boolean] = ACTIONS(3279), - [anon_sym_string] = ACTIONS(3279), - [anon_sym_symbol] = ACTIONS(3279), - [anon_sym_object] = ACTIONS(3279), - [anon_sym_abstract] = ACTIONS(3279), - [anon_sym_interface] = ACTIONS(3279), - [anon_sym_enum] = ACTIONS(3279), + [sym_identifier] = ACTIONS(2166), + [anon_sym_export] = ACTIONS(2166), + [anon_sym_default] = ACTIONS(2166), + [anon_sym_type] = ACTIONS(2166), + [anon_sym_namespace] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_typeof] = ACTIONS(2166), + [anon_sym_import] = ACTIONS(2166), + [anon_sym_with] = ACTIONS(2166), + [anon_sym_var] = ACTIONS(2166), + [anon_sym_let] = ACTIONS(2166), + [anon_sym_const] = ACTIONS(2166), + [anon_sym_BANG] = ACTIONS(2166), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_switch] = ACTIONS(2166), + [anon_sym_for] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(2166), + [anon_sym_await] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2166), + [anon_sym_do] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2166), + [anon_sym_break] = ACTIONS(2166), + [anon_sym_continue] = ACTIONS(2166), + [anon_sym_debugger] = ACTIONS(2166), + [anon_sym_return] = ACTIONS(2166), + [anon_sym_throw] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_case] = ACTIONS(2166), + [anon_sym_yield] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2166), + [anon_sym_LTtemplate_GT] = ACTIONS(2166), + [anon_sym_DOT] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [anon_sym_SQUOTE] = ACTIONS(2166), + [anon_sym_class] = ACTIONS(2166), + [anon_sym_async] = ACTIONS(2166), + [anon_sym_function] = ACTIONS(2166), + [anon_sym_new] = ACTIONS(2166), + [anon_sym_using] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_TILDE] = ACTIONS(2166), + [anon_sym_void] = ACTIONS(2166), + [anon_sym_delete] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2166), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2166), + [sym_number] = ACTIONS(2166), + [sym_private_property_identifier] = ACTIONS(2166), + [sym_this] = ACTIONS(2166), + [sym_super] = ACTIONS(2166), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_undefined] = ACTIONS(2166), + [anon_sym_AT] = ACTIONS(2166), + [anon_sym_static] = ACTIONS(2166), + [anon_sym_readonly] = ACTIONS(2166), + [anon_sym_get] = ACTIONS(2166), + [anon_sym_set] = ACTIONS(2166), + [anon_sym_declare] = ACTIONS(2166), + [anon_sym_public] = ACTIONS(2166), + [anon_sym_private] = ACTIONS(2166), + [anon_sym_protected] = ACTIONS(2166), + [anon_sym_override] = ACTIONS(2166), + [anon_sym_module] = ACTIONS(2166), + [anon_sym_any] = ACTIONS(2166), + [anon_sym_number] = ACTIONS(2166), + [anon_sym_boolean] = ACTIONS(2166), + [anon_sym_string] = ACTIONS(2166), + [anon_sym_symbol] = ACTIONS(2166), + [anon_sym_object] = ACTIONS(2166), + [anon_sym_abstract] = ACTIONS(2166), + [anon_sym_interface] = ACTIONS(2166), + [anon_sym_enum] = ACTIONS(2166), [sym_html_comment] = ACTIONS(5), }, [1097] = { [sym_comment] = STATE(1097), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_default] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_namespace] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2246), - [anon_sym_import] = ACTIONS(2246), - [anon_sym_with] = ACTIONS(2246), - [anon_sym_var] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_else] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_debugger] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_throw] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_case] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LTtemplate_GT] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_class] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2246), - [anon_sym_delete] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_private_property_identifier] = ACTIONS(2246), - [sym_this] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_undefined] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_readonly] = ACTIONS(2246), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_declare] = ACTIONS(2246), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_override] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_any] = ACTIONS(2246), - [anon_sym_number] = ACTIONS(2246), - [anon_sym_boolean] = ACTIONS(2246), - [anon_sym_string] = ACTIONS(2246), - [anon_sym_symbol] = ACTIONS(2246), - [anon_sym_object] = ACTIONS(2246), - [anon_sym_abstract] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), - [sym_html_comment] = ACTIONS(5), - }, - [1098] = { - [sym_comment] = STATE(1098), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_default] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_case] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), + [sym_identifier] = ACTIONS(3331), + [anon_sym_export] = ACTIONS(3331), + [anon_sym_default] = ACTIONS(3331), + [anon_sym_type] = ACTIONS(3331), + [anon_sym_namespace] = ACTIONS(3331), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_RBRACE] = ACTIONS(3331), + [anon_sym_typeof] = ACTIONS(3331), + [anon_sym_import] = ACTIONS(3331), + [anon_sym_with] = ACTIONS(3331), + [anon_sym_var] = ACTIONS(3331), + [anon_sym_let] = ACTIONS(3331), + [anon_sym_const] = ACTIONS(3331), + [anon_sym_BANG] = ACTIONS(3331), + [anon_sym_else] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3331), + [anon_sym_await] = ACTIONS(3331), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_do] = ACTIONS(3331), + [anon_sym_try] = ACTIONS(3331), + [anon_sym_break] = ACTIONS(3331), + [anon_sym_continue] = ACTIONS(3331), + [anon_sym_debugger] = ACTIONS(3331), + [anon_sym_return] = ACTIONS(3331), + [anon_sym_throw] = ACTIONS(3331), + [anon_sym_SEMI] = ACTIONS(3331), + [anon_sym_case] = ACTIONS(3331), + [anon_sym_yield] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3331), + [anon_sym_LTtemplate_GT] = ACTIONS(3331), + [anon_sym_DQUOTE] = ACTIONS(3331), + [anon_sym_SQUOTE] = ACTIONS(3331), + [anon_sym_class] = ACTIONS(3331), + [anon_sym_async] = ACTIONS(3331), + [anon_sym_function] = ACTIONS(3331), + [anon_sym_new] = ACTIONS(3331), + [anon_sym_using] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_SLASH] = ACTIONS(3331), + [anon_sym_LT] = ACTIONS(3331), + [anon_sym_TILDE] = ACTIONS(3331), + [anon_sym_void] = ACTIONS(3331), + [anon_sym_delete] = ACTIONS(3331), + [anon_sym_PLUS_PLUS] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3331), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), + [anon_sym_BQUOTE] = ACTIONS(3331), + [sym_number] = ACTIONS(3331), + [sym_private_property_identifier] = ACTIONS(3331), + [sym_this] = ACTIONS(3331), + [sym_super] = ACTIONS(3331), + [sym_true] = ACTIONS(3331), + [sym_false] = ACTIONS(3331), + [sym_null] = ACTIONS(3331), + [sym_undefined] = ACTIONS(3331), + [anon_sym_AT] = ACTIONS(3331), + [anon_sym_static] = ACTIONS(3331), + [anon_sym_readonly] = ACTIONS(3331), + [anon_sym_get] = ACTIONS(3331), + [anon_sym_set] = ACTIONS(3331), + [anon_sym_declare] = ACTIONS(3331), + [anon_sym_public] = ACTIONS(3331), + [anon_sym_private] = ACTIONS(3331), + [anon_sym_protected] = ACTIONS(3331), + [anon_sym_override] = ACTIONS(3331), + [anon_sym_module] = ACTIONS(3331), + [anon_sym_any] = ACTIONS(3331), + [anon_sym_number] = ACTIONS(3331), + [anon_sym_boolean] = ACTIONS(3331), + [anon_sym_string] = ACTIONS(3331), + [anon_sym_symbol] = ACTIONS(3331), + [anon_sym_object] = ACTIONS(3331), + [anon_sym_abstract] = ACTIONS(3331), + [anon_sym_interface] = ACTIONS(3331), + [anon_sym_enum] = ACTIONS(3331), + [sym_html_comment] = ACTIONS(5), + }, + [1098] = { + [sym_comment] = STATE(1098), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_default] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_else] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_case] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), [sym_html_comment] = ACTIONS(5), }, [1099] = { [sym_comment] = STATE(1099), - [sym_identifier] = ACTIONS(3281), - [anon_sym_export] = ACTIONS(3281), - [anon_sym_default] = ACTIONS(3281), - [anon_sym_type] = ACTIONS(3281), - [anon_sym_namespace] = ACTIONS(3281), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_typeof] = ACTIONS(3281), - [anon_sym_import] = ACTIONS(3281), - [anon_sym_with] = ACTIONS(3281), - [anon_sym_var] = ACTIONS(3281), - [anon_sym_let] = ACTIONS(3281), - [anon_sym_const] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3281), - [anon_sym_else] = ACTIONS(3281), - [anon_sym_if] = ACTIONS(3281), - [anon_sym_switch] = ACTIONS(3281), - [anon_sym_for] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_await] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3281), - [anon_sym_do] = ACTIONS(3281), - [anon_sym_try] = ACTIONS(3281), - [anon_sym_break] = ACTIONS(3281), - [anon_sym_continue] = ACTIONS(3281), - [anon_sym_debugger] = ACTIONS(3281), - [anon_sym_return] = ACTIONS(3281), - [anon_sym_throw] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_case] = ACTIONS(3281), - [anon_sym_yield] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_LTtemplate_GT] = ACTIONS(3281), - [anon_sym_DQUOTE] = ACTIONS(3281), - [anon_sym_SQUOTE] = ACTIONS(3281), - [anon_sym_class] = ACTIONS(3281), - [anon_sym_async] = ACTIONS(3281), - [anon_sym_function] = ACTIONS(3281), - [anon_sym_new] = ACTIONS(3281), - [anon_sym_using] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(3281), - [anon_sym_DASH] = ACTIONS(3281), - [anon_sym_SLASH] = ACTIONS(3281), - [anon_sym_LT] = ACTIONS(3281), - [anon_sym_TILDE] = ACTIONS(3281), - [anon_sym_void] = ACTIONS(3281), - [anon_sym_delete] = ACTIONS(3281), - [anon_sym_PLUS_PLUS] = ACTIONS(3281), - [anon_sym_DASH_DASH] = ACTIONS(3281), + [ts_builtin_sym_end] = ACTIONS(2428), + [sym_identifier] = ACTIONS(2280), + [anon_sym_export] = ACTIONS(2280), + [anon_sym_type] = ACTIONS(2280), + [anon_sym_namespace] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2280), + [anon_sym_RBRACE] = ACTIONS(2280), + [anon_sym_typeof] = ACTIONS(2280), + [anon_sym_import] = ACTIONS(2280), + [anon_sym_with] = ACTIONS(2280), + [anon_sym_var] = ACTIONS(2280), + [anon_sym_let] = ACTIONS(2280), + [anon_sym_const] = ACTIONS(2280), + [anon_sym_BANG] = ACTIONS(2280), + [anon_sym_else] = ACTIONS(2280), + [anon_sym_if] = ACTIONS(2280), + [anon_sym_switch] = ACTIONS(2280), + [anon_sym_for] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_await] = ACTIONS(2280), + [anon_sym_while] = ACTIONS(2280), + [anon_sym_do] = ACTIONS(2280), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_break] = ACTIONS(2280), + [anon_sym_continue] = ACTIONS(2280), + [anon_sym_debugger] = ACTIONS(2280), + [anon_sym_return] = ACTIONS(2280), + [anon_sym_throw] = ACTIONS(2280), + [anon_sym_SEMI] = ACTIONS(2280), + [anon_sym_yield] = ACTIONS(2280), + [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_LTtemplate_GT] = ACTIONS(2280), + [anon_sym_DQUOTE] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2280), + [anon_sym_class] = ACTIONS(2280), + [anon_sym_async] = ACTIONS(2280), + [anon_sym_function] = ACTIONS(2280), + [anon_sym_new] = ACTIONS(2280), + [anon_sym_using] = ACTIONS(2280), + [anon_sym_PLUS] = ACTIONS(2280), + [anon_sym_DASH] = ACTIONS(2280), + [anon_sym_SLASH] = ACTIONS(2280), + [anon_sym_LT] = ACTIONS(2280), + [anon_sym_TILDE] = ACTIONS(2280), + [anon_sym_void] = ACTIONS(2280), + [anon_sym_delete] = ACTIONS(2280), + [anon_sym_PLUS_PLUS] = ACTIONS(2280), + [anon_sym_DASH_DASH] = ACTIONS(2280), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3281), - [sym_number] = ACTIONS(3281), - [sym_private_property_identifier] = ACTIONS(3281), - [sym_this] = ACTIONS(3281), - [sym_super] = ACTIONS(3281), - [sym_true] = ACTIONS(3281), - [sym_false] = ACTIONS(3281), - [sym_null] = ACTIONS(3281), - [sym_undefined] = ACTIONS(3281), - [anon_sym_AT] = ACTIONS(3281), - [anon_sym_static] = ACTIONS(3281), - [anon_sym_readonly] = ACTIONS(3281), - [anon_sym_get] = ACTIONS(3281), - [anon_sym_set] = ACTIONS(3281), - [anon_sym_declare] = ACTIONS(3281), - [anon_sym_public] = ACTIONS(3281), - [anon_sym_private] = ACTIONS(3281), - [anon_sym_protected] = ACTIONS(3281), - [anon_sym_override] = ACTIONS(3281), - [anon_sym_module] = ACTIONS(3281), - [anon_sym_any] = ACTIONS(3281), - [anon_sym_number] = ACTIONS(3281), - [anon_sym_boolean] = ACTIONS(3281), - [anon_sym_string] = ACTIONS(3281), - [anon_sym_symbol] = ACTIONS(3281), - [anon_sym_object] = ACTIONS(3281), - [anon_sym_abstract] = ACTIONS(3281), - [anon_sym_interface] = ACTIONS(3281), - [anon_sym_enum] = ACTIONS(3281), + [anon_sym_BQUOTE] = ACTIONS(2280), + [sym_number] = ACTIONS(2280), + [sym_private_property_identifier] = ACTIONS(2280), + [sym_this] = ACTIONS(2280), + [sym_super] = ACTIONS(2280), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_undefined] = ACTIONS(2280), + [anon_sym_AT] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(2280), + [anon_sym_readonly] = ACTIONS(2280), + [anon_sym_get] = ACTIONS(2280), + [anon_sym_set] = ACTIONS(2280), + [anon_sym_declare] = ACTIONS(2280), + [anon_sym_public] = ACTIONS(2280), + [anon_sym_private] = ACTIONS(2280), + [anon_sym_protected] = ACTIONS(2280), + [anon_sym_override] = ACTIONS(2280), + [anon_sym_module] = ACTIONS(2280), + [anon_sym_any] = ACTIONS(2280), + [anon_sym_number] = ACTIONS(2280), + [anon_sym_boolean] = ACTIONS(2280), + [anon_sym_string] = ACTIONS(2280), + [anon_sym_symbol] = ACTIONS(2280), + [anon_sym_object] = ACTIONS(2280), + [anon_sym_abstract] = ACTIONS(2280), + [anon_sym_interface] = ACTIONS(2280), + [anon_sym_enum] = ACTIONS(2280), + [sym__automatic_semicolon] = ACTIONS(2430), [sym_html_comment] = ACTIONS(5), }, [1100] = { [sym_comment] = STATE(1100), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_case] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(3283), + [ts_builtin_sym_end] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_catch] = ACTIONS(2288), + [anon_sym_finally] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, [1101] = { [sym_comment] = STATE(1101), - [sym_identifier] = ACTIONS(2168), - [anon_sym_export] = ACTIONS(2168), - [anon_sym_default] = ACTIONS(2168), - [anon_sym_type] = ACTIONS(2168), - [anon_sym_namespace] = ACTIONS(2168), - [anon_sym_LBRACE] = ACTIONS(2168), - [anon_sym_RBRACE] = ACTIONS(2168), - [anon_sym_typeof] = ACTIONS(2168), - [anon_sym_import] = ACTIONS(2168), - [anon_sym_with] = ACTIONS(2168), - [anon_sym_var] = ACTIONS(2168), - [anon_sym_let] = ACTIONS(2168), - [anon_sym_const] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(2168), - [anon_sym_if] = ACTIONS(2168), - [anon_sym_switch] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_await] = ACTIONS(2168), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_do] = ACTIONS(2168), - [anon_sym_try] = ACTIONS(2168), - [anon_sym_break] = ACTIONS(2168), - [anon_sym_continue] = ACTIONS(2168), - [anon_sym_debugger] = ACTIONS(2168), - [anon_sym_return] = ACTIONS(2168), - [anon_sym_throw] = ACTIONS(2168), - [anon_sym_SEMI] = ACTIONS(2168), - [anon_sym_case] = ACTIONS(2168), - [anon_sym_yield] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_LTtemplate_GT] = ACTIONS(2168), - [anon_sym_DQUOTE] = ACTIONS(2168), - [anon_sym_SQUOTE] = ACTIONS(2168), - [anon_sym_class] = ACTIONS(2168), - [anon_sym_async] = ACTIONS(2168), - [anon_sym_function] = ACTIONS(2168), - [anon_sym_new] = ACTIONS(2168), - [anon_sym_using] = ACTIONS(2168), - [anon_sym_PLUS] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2168), - [anon_sym_SLASH] = ACTIONS(2168), - [anon_sym_LT] = ACTIONS(2168), - [anon_sym_TILDE] = ACTIONS(2168), - [anon_sym_void] = ACTIONS(2168), - [anon_sym_delete] = ACTIONS(2168), - [anon_sym_PLUS_PLUS] = ACTIONS(2168), - [anon_sym_DASH_DASH] = ACTIONS(2168), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2168), - [sym_number] = ACTIONS(2168), - [sym_private_property_identifier] = ACTIONS(2168), - [sym_this] = ACTIONS(2168), - [sym_super] = ACTIONS(2168), - [sym_true] = ACTIONS(2168), - [sym_false] = ACTIONS(2168), - [sym_null] = ACTIONS(2168), - [sym_undefined] = ACTIONS(2168), - [anon_sym_AT] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_readonly] = ACTIONS(2168), - [anon_sym_get] = ACTIONS(2168), - [anon_sym_set] = ACTIONS(2168), - [anon_sym_declare] = ACTIONS(2168), - [anon_sym_public] = ACTIONS(2168), - [anon_sym_private] = ACTIONS(2168), - [anon_sym_protected] = ACTIONS(2168), - [anon_sym_override] = ACTIONS(2168), - [anon_sym_module] = ACTIONS(2168), - [anon_sym_any] = ACTIONS(2168), - [anon_sym_number] = ACTIONS(2168), - [anon_sym_boolean] = ACTIONS(2168), - [anon_sym_string] = ACTIONS(2168), - [anon_sym_symbol] = ACTIONS(2168), - [anon_sym_object] = ACTIONS(2168), - [anon_sym_abstract] = ACTIONS(2168), - [anon_sym_interface] = ACTIONS(2168), - [anon_sym_enum] = ACTIONS(2168), - [sym__automatic_semicolon] = ACTIONS(2372), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_default] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_case] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(2176), [sym_html_comment] = ACTIONS(5), }, [1102] = { [sym_comment] = STATE(1102), - [sym_identifier] = ACTIONS(2194), - [anon_sym_export] = ACTIONS(2194), - [anon_sym_default] = ACTIONS(2194), - [anon_sym_type] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_typeof] = ACTIONS(2194), - [anon_sym_import] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2194), - [anon_sym_var] = ACTIONS(2194), - [anon_sym_let] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_await] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_debugger] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2194), - [anon_sym_case] = ACTIONS(2194), - [anon_sym_yield] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_LTtemplate_GT] = ACTIONS(2194), - [anon_sym_DQUOTE] = ACTIONS(2194), - [anon_sym_SQUOTE] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_async] = ACTIONS(2194), - [anon_sym_function] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_SLASH] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_void] = ACTIONS(2194), - [anon_sym_delete] = ACTIONS(2194), - [anon_sym_PLUS_PLUS] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2194), - [sym_number] = ACTIONS(2194), - [sym_private_property_identifier] = ACTIONS(2194), - [sym_this] = ACTIONS(2194), - [sym_super] = ACTIONS(2194), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [sym_null] = ACTIONS(2194), - [sym_undefined] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_readonly] = ACTIONS(2194), - [anon_sym_get] = ACTIONS(2194), - [anon_sym_set] = ACTIONS(2194), - [anon_sym_declare] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_override] = ACTIONS(2194), - [anon_sym_module] = ACTIONS(2194), - [anon_sym_any] = ACTIONS(2194), - [anon_sym_number] = ACTIONS(2194), - [anon_sym_boolean] = ACTIONS(2194), - [anon_sym_string] = ACTIONS(2194), - [anon_sym_symbol] = ACTIONS(2194), - [anon_sym_object] = ACTIONS(2194), - [anon_sym_abstract] = ACTIONS(2194), - [anon_sym_interface] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [sym__automatic_semicolon] = ACTIONS(2370), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_else] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_case] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, [1103] = { [sym_comment] = STATE(1103), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_finally] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), + [sym_identifier] = ACTIONS(3333), + [anon_sym_export] = ACTIONS(3333), + [anon_sym_default] = ACTIONS(3333), + [anon_sym_type] = ACTIONS(3333), + [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_typeof] = ACTIONS(3333), + [anon_sym_import] = ACTIONS(3333), + [anon_sym_with] = ACTIONS(3333), + [anon_sym_var] = ACTIONS(3333), + [anon_sym_let] = ACTIONS(3333), + [anon_sym_const] = ACTIONS(3333), + [anon_sym_BANG] = ACTIONS(3333), + [anon_sym_else] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3333), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_for] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_await] = ACTIONS(3333), + [anon_sym_while] = ACTIONS(3333), + [anon_sym_do] = ACTIONS(3333), + [anon_sym_try] = ACTIONS(3333), + [anon_sym_break] = ACTIONS(3333), + [anon_sym_continue] = ACTIONS(3333), + [anon_sym_debugger] = ACTIONS(3333), + [anon_sym_return] = ACTIONS(3333), + [anon_sym_throw] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3333), + [anon_sym_yield] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_LTtemplate_GT] = ACTIONS(3333), + [anon_sym_DQUOTE] = ACTIONS(3333), + [anon_sym_SQUOTE] = ACTIONS(3333), + [anon_sym_class] = ACTIONS(3333), + [anon_sym_async] = ACTIONS(3333), + [anon_sym_function] = ACTIONS(3333), + [anon_sym_new] = ACTIONS(3333), + [anon_sym_using] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_void] = ACTIONS(3333), + [anon_sym_delete] = ACTIONS(3333), + [anon_sym_PLUS_PLUS] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3333), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3333), + [sym_number] = ACTIONS(3333), + [sym_private_property_identifier] = ACTIONS(3333), + [sym_this] = ACTIONS(3333), + [sym_super] = ACTIONS(3333), + [sym_true] = ACTIONS(3333), + [sym_false] = ACTIONS(3333), + [sym_null] = ACTIONS(3333), + [sym_undefined] = ACTIONS(3333), + [anon_sym_AT] = ACTIONS(3333), + [anon_sym_static] = ACTIONS(3333), + [anon_sym_readonly] = ACTIONS(3333), + [anon_sym_get] = ACTIONS(3333), + [anon_sym_set] = ACTIONS(3333), + [anon_sym_declare] = ACTIONS(3333), + [anon_sym_public] = ACTIONS(3333), + [anon_sym_private] = ACTIONS(3333), + [anon_sym_protected] = ACTIONS(3333), + [anon_sym_override] = ACTIONS(3333), + [anon_sym_module] = ACTIONS(3333), + [anon_sym_any] = ACTIONS(3333), + [anon_sym_number] = ACTIONS(3333), + [anon_sym_boolean] = ACTIONS(3333), + [anon_sym_string] = ACTIONS(3333), + [anon_sym_symbol] = ACTIONS(3333), + [anon_sym_object] = ACTIONS(3333), + [anon_sym_abstract] = ACTIONS(3333), + [anon_sym_interface] = ACTIONS(3333), + [anon_sym_enum] = ACTIONS(3333), [sym_html_comment] = ACTIONS(5), }, [1104] = { - [sym_finally_clause] = STATE(1642), [sym_comment] = STATE(1104), - [ts_builtin_sym_end] = ACTIONS(3179), - [sym_identifier] = ACTIONS(3143), - [anon_sym_export] = ACTIONS(3143), - [anon_sym_type] = ACTIONS(3143), - [anon_sym_namespace] = ACTIONS(3143), - [anon_sym_LBRACE] = ACTIONS(3143), - [anon_sym_RBRACE] = ACTIONS(3143), - [anon_sym_typeof] = ACTIONS(3143), - [anon_sym_import] = ACTIONS(3143), - [anon_sym_with] = ACTIONS(3143), - [anon_sym_var] = ACTIONS(3143), - [anon_sym_let] = ACTIONS(3143), - [anon_sym_const] = ACTIONS(3143), - [anon_sym_BANG] = ACTIONS(3143), - [anon_sym_if] = ACTIONS(3143), - [anon_sym_switch] = ACTIONS(3143), - [anon_sym_for] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3143), - [anon_sym_await] = ACTIONS(3143), - [anon_sym_while] = ACTIONS(3143), - [anon_sym_do] = ACTIONS(3143), - [anon_sym_try] = ACTIONS(3143), - [anon_sym_break] = ACTIONS(3143), - [anon_sym_continue] = ACTIONS(3143), - [anon_sym_debugger] = ACTIONS(3143), - [anon_sym_return] = ACTIONS(3143), - [anon_sym_throw] = ACTIONS(3143), - [anon_sym_SEMI] = ACTIONS(3143), - [anon_sym_finally] = ACTIONS(3149), - [anon_sym_yield] = ACTIONS(3143), - [anon_sym_LBRACK] = ACTIONS(3143), - [anon_sym_LTtemplate_GT] = ACTIONS(3143), - [anon_sym_DQUOTE] = ACTIONS(3143), - [anon_sym_SQUOTE] = ACTIONS(3143), - [anon_sym_class] = ACTIONS(3143), - [anon_sym_async] = ACTIONS(3143), - [anon_sym_function] = ACTIONS(3143), - [anon_sym_new] = ACTIONS(3143), - [anon_sym_using] = ACTIONS(3143), - [anon_sym_PLUS] = ACTIONS(3143), - [anon_sym_DASH] = ACTIONS(3143), - [anon_sym_SLASH] = ACTIONS(3143), - [anon_sym_LT] = ACTIONS(3143), - [anon_sym_TILDE] = ACTIONS(3143), - [anon_sym_void] = ACTIONS(3143), - [anon_sym_delete] = ACTIONS(3143), - [anon_sym_PLUS_PLUS] = ACTIONS(3143), - [anon_sym_DASH_DASH] = ACTIONS(3143), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3143), - [sym_number] = ACTIONS(3143), - [sym_private_property_identifier] = ACTIONS(3143), - [sym_this] = ACTIONS(3143), - [sym_super] = ACTIONS(3143), - [sym_true] = ACTIONS(3143), - [sym_false] = ACTIONS(3143), - [sym_null] = ACTIONS(3143), - [sym_undefined] = ACTIONS(3143), - [anon_sym_AT] = ACTIONS(3143), - [anon_sym_static] = ACTIONS(3143), - [anon_sym_readonly] = ACTIONS(3143), - [anon_sym_get] = ACTIONS(3143), - [anon_sym_set] = ACTIONS(3143), - [anon_sym_declare] = ACTIONS(3143), - [anon_sym_public] = ACTIONS(3143), - [anon_sym_private] = ACTIONS(3143), - [anon_sym_protected] = ACTIONS(3143), - [anon_sym_override] = ACTIONS(3143), - [anon_sym_module] = ACTIONS(3143), - [anon_sym_any] = ACTIONS(3143), - [anon_sym_number] = ACTIONS(3143), - [anon_sym_boolean] = ACTIONS(3143), - [anon_sym_string] = ACTIONS(3143), - [anon_sym_symbol] = ACTIONS(3143), - [anon_sym_object] = ACTIONS(3143), - [anon_sym_abstract] = ACTIONS(3143), - [anon_sym_interface] = ACTIONS(3143), - [anon_sym_enum] = ACTIONS(3143), + [ts_builtin_sym_end] = ACTIONS(3335), + [sym_identifier] = ACTIONS(3191), + [anon_sym_export] = ACTIONS(3191), + [anon_sym_type] = ACTIONS(3191), + [anon_sym_namespace] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_RBRACE] = ACTIONS(3191), + [anon_sym_typeof] = ACTIONS(3191), + [anon_sym_import] = ACTIONS(3191), + [anon_sym_with] = ACTIONS(3191), + [anon_sym_var] = ACTIONS(3191), + [anon_sym_let] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_else] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_switch] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym_await] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_do] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_debugger] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_throw] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3337), + [anon_sym_yield] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_LTtemplate_GT] = ACTIONS(3191), + [anon_sym_DQUOTE] = ACTIONS(3191), + [anon_sym_SQUOTE] = ACTIONS(3191), + [anon_sym_class] = ACTIONS(3191), + [anon_sym_async] = ACTIONS(3191), + [anon_sym_function] = ACTIONS(3191), + [anon_sym_new] = ACTIONS(3191), + [anon_sym_using] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_void] = ACTIONS(3191), + [anon_sym_delete] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3191), + [sym_number] = ACTIONS(3191), + [sym_private_property_identifier] = ACTIONS(3191), + [sym_this] = ACTIONS(3191), + [sym_super] = ACTIONS(3191), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_null] = ACTIONS(3191), + [sym_undefined] = ACTIONS(3191), + [anon_sym_AT] = ACTIONS(3191), + [anon_sym_static] = ACTIONS(3191), + [anon_sym_readonly] = ACTIONS(3191), + [anon_sym_get] = ACTIONS(3191), + [anon_sym_set] = ACTIONS(3191), + [anon_sym_declare] = ACTIONS(3191), + [anon_sym_public] = ACTIONS(3191), + [anon_sym_private] = ACTIONS(3191), + [anon_sym_protected] = ACTIONS(3191), + [anon_sym_override] = ACTIONS(3191), + [anon_sym_module] = ACTIONS(3191), + [anon_sym_any] = ACTIONS(3191), + [anon_sym_number] = ACTIONS(3191), + [anon_sym_boolean] = ACTIONS(3191), + [anon_sym_string] = ACTIONS(3191), + [anon_sym_symbol] = ACTIONS(3191), + [anon_sym_object] = ACTIONS(3191), + [anon_sym_abstract] = ACTIONS(3191), + [anon_sym_interface] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), + [sym__automatic_semicolon] = ACTIONS(3339), [sym_html_comment] = ACTIONS(5), }, [1105] = { [sym_comment] = STATE(1105), - [sym_identifier] = ACTIONS(3285), - [anon_sym_export] = ACTIONS(3285), - [anon_sym_default] = ACTIONS(3285), - [anon_sym_type] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_typeof] = ACTIONS(3285), - [anon_sym_import] = ACTIONS(3285), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_var] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3285), - [anon_sym_const] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_else] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3285), - [anon_sym_switch] = ACTIONS(3285), - [anon_sym_for] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_await] = ACTIONS(3285), - [anon_sym_while] = ACTIONS(3285), - [anon_sym_do] = ACTIONS(3285), - [anon_sym_try] = ACTIONS(3285), - [anon_sym_break] = ACTIONS(3285), - [anon_sym_continue] = ACTIONS(3285), - [anon_sym_debugger] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3285), - [anon_sym_throw] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_case] = ACTIONS(3285), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LTtemplate_GT] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_SQUOTE] = ACTIONS(3285), - [anon_sym_class] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3285), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_using] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_void] = ACTIONS(3285), - [anon_sym_delete] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3285), - [sym_number] = ACTIONS(3285), - [sym_private_property_identifier] = ACTIONS(3285), - [sym_this] = ACTIONS(3285), - [sym_super] = ACTIONS(3285), - [sym_true] = ACTIONS(3285), - [sym_false] = ACTIONS(3285), - [sym_null] = ACTIONS(3285), - [sym_undefined] = ACTIONS(3285), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_static] = ACTIONS(3285), - [anon_sym_readonly] = ACTIONS(3285), - [anon_sym_get] = ACTIONS(3285), - [anon_sym_set] = ACTIONS(3285), - [anon_sym_declare] = ACTIONS(3285), - [anon_sym_public] = ACTIONS(3285), - [anon_sym_private] = ACTIONS(3285), - [anon_sym_protected] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3285), - [anon_sym_module] = ACTIONS(3285), - [anon_sym_any] = ACTIONS(3285), - [anon_sym_number] = ACTIONS(3285), - [anon_sym_boolean] = ACTIONS(3285), - [anon_sym_string] = ACTIONS(3285), - [anon_sym_symbol] = ACTIONS(3285), - [anon_sym_object] = ACTIONS(3285), - [anon_sym_abstract] = ACTIONS(3285), - [anon_sym_interface] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3285), + [ts_builtin_sym_end] = ACTIONS(3341), + [sym_identifier] = ACTIONS(3183), + [anon_sym_export] = ACTIONS(3183), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_namespace] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_RBRACE] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(3183), + [anon_sym_import] = ACTIONS(3183), + [anon_sym_with] = ACTIONS(3183), + [anon_sym_var] = ACTIONS(3183), + [anon_sym_let] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_else] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_switch] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym_await] = ACTIONS(3183), + [anon_sym_while] = ACTIONS(3183), + [anon_sym_do] = ACTIONS(3183), + [anon_sym_try] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_debugger] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym_finally] = ACTIONS(3183), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_LTtemplate_GT] = ACTIONS(3183), + [anon_sym_DQUOTE] = ACTIONS(3183), + [anon_sym_SQUOTE] = ACTIONS(3183), + [anon_sym_class] = ACTIONS(3183), + [anon_sym_async] = ACTIONS(3183), + [anon_sym_function] = ACTIONS(3183), + [anon_sym_new] = ACTIONS(3183), + [anon_sym_using] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_SLASH] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_void] = ACTIONS(3183), + [anon_sym_delete] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3183), + [sym_number] = ACTIONS(3183), + [sym_private_property_identifier] = ACTIONS(3183), + [sym_this] = ACTIONS(3183), + [sym_super] = ACTIONS(3183), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_null] = ACTIONS(3183), + [sym_undefined] = ACTIONS(3183), + [anon_sym_AT] = ACTIONS(3183), + [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_abstract] = ACTIONS(3183), + [anon_sym_interface] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), [sym_html_comment] = ACTIONS(5), }, [1106] = { [sym_comment] = STATE(1106), - [sym_identifier] = ACTIONS(3287), - [anon_sym_export] = ACTIONS(3287), - [anon_sym_default] = ACTIONS(3287), - [anon_sym_type] = ACTIONS(3287), - [anon_sym_namespace] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(3287), - [anon_sym_typeof] = ACTIONS(3287), - [anon_sym_import] = ACTIONS(3287), - [anon_sym_with] = ACTIONS(3287), - [anon_sym_var] = ACTIONS(3287), - [anon_sym_let] = ACTIONS(3287), - [anon_sym_const] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3287), - [anon_sym_else] = ACTIONS(3287), - [anon_sym_if] = ACTIONS(3287), - [anon_sym_switch] = ACTIONS(3287), - [anon_sym_for] = ACTIONS(3287), - [anon_sym_LPAREN] = ACTIONS(3287), - [anon_sym_await] = ACTIONS(3287), - [anon_sym_while] = ACTIONS(3287), - [anon_sym_do] = ACTIONS(3287), - [anon_sym_try] = ACTIONS(3287), - [anon_sym_break] = ACTIONS(3287), - [anon_sym_continue] = ACTIONS(3287), - [anon_sym_debugger] = ACTIONS(3287), - [anon_sym_return] = ACTIONS(3287), - [anon_sym_throw] = ACTIONS(3287), - [anon_sym_SEMI] = ACTIONS(3287), - [anon_sym_case] = ACTIONS(3287), - [anon_sym_yield] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(3287), - [anon_sym_LTtemplate_GT] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(3287), - [anon_sym_SQUOTE] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3287), - [anon_sym_async] = ACTIONS(3287), - [anon_sym_function] = ACTIONS(3287), - [anon_sym_new] = ACTIONS(3287), - [anon_sym_using] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3287), - [anon_sym_DASH] = ACTIONS(3287), - [anon_sym_SLASH] = ACTIONS(3287), - [anon_sym_LT] = ACTIONS(3287), - [anon_sym_TILDE] = ACTIONS(3287), - [anon_sym_void] = ACTIONS(3287), - [anon_sym_delete] = ACTIONS(3287), - [anon_sym_PLUS_PLUS] = ACTIONS(3287), - [anon_sym_DASH_DASH] = ACTIONS(3287), + [sym_identifier] = ACTIONS(3343), + [anon_sym_export] = ACTIONS(3343), + [anon_sym_default] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3343), + [anon_sym_LBRACE] = ACTIONS(3343), + [anon_sym_RBRACE] = ACTIONS(3343), + [anon_sym_typeof] = ACTIONS(3343), + [anon_sym_import] = ACTIONS(3343), + [anon_sym_with] = ACTIONS(3343), + [anon_sym_var] = ACTIONS(3343), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_const] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3343), + [anon_sym_else] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_switch] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_LPAREN] = ACTIONS(3343), + [anon_sym_await] = ACTIONS(3343), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_do] = ACTIONS(3343), + [anon_sym_try] = ACTIONS(3343), + [anon_sym_break] = ACTIONS(3343), + [anon_sym_continue] = ACTIONS(3343), + [anon_sym_debugger] = ACTIONS(3343), + [anon_sym_return] = ACTIONS(3343), + [anon_sym_throw] = ACTIONS(3343), + [anon_sym_SEMI] = ACTIONS(3343), + [anon_sym_case] = ACTIONS(3343), + [anon_sym_yield] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3343), + [anon_sym_LTtemplate_GT] = ACTIONS(3343), + [anon_sym_DQUOTE] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(3343), + [anon_sym_class] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_function] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3343), + [anon_sym_using] = ACTIONS(3343), + [anon_sym_PLUS] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3343), + [anon_sym_SLASH] = ACTIONS(3343), + [anon_sym_LT] = ACTIONS(3343), + [anon_sym_TILDE] = ACTIONS(3343), + [anon_sym_void] = ACTIONS(3343), + [anon_sym_delete] = ACTIONS(3343), + [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3343), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3287), - [sym_number] = ACTIONS(3287), - [sym_private_property_identifier] = ACTIONS(3287), - [sym_this] = ACTIONS(3287), - [sym_super] = ACTIONS(3287), - [sym_true] = ACTIONS(3287), - [sym_false] = ACTIONS(3287), - [sym_null] = ACTIONS(3287), - [sym_undefined] = ACTIONS(3287), - [anon_sym_AT] = ACTIONS(3287), - [anon_sym_static] = ACTIONS(3287), - [anon_sym_readonly] = ACTIONS(3287), - [anon_sym_get] = ACTIONS(3287), - [anon_sym_set] = ACTIONS(3287), - [anon_sym_declare] = ACTIONS(3287), - [anon_sym_public] = ACTIONS(3287), - [anon_sym_private] = ACTIONS(3287), - [anon_sym_protected] = ACTIONS(3287), - [anon_sym_override] = ACTIONS(3287), - [anon_sym_module] = ACTIONS(3287), - [anon_sym_any] = ACTIONS(3287), - [anon_sym_number] = ACTIONS(3287), - [anon_sym_boolean] = ACTIONS(3287), - [anon_sym_string] = ACTIONS(3287), - [anon_sym_symbol] = ACTIONS(3287), - [anon_sym_object] = ACTIONS(3287), - [anon_sym_abstract] = ACTIONS(3287), - [anon_sym_interface] = ACTIONS(3287), - [anon_sym_enum] = ACTIONS(3287), + [anon_sym_BQUOTE] = ACTIONS(3343), + [sym_number] = ACTIONS(3343), + [sym_private_property_identifier] = ACTIONS(3343), + [sym_this] = ACTIONS(3343), + [sym_super] = ACTIONS(3343), + [sym_true] = ACTIONS(3343), + [sym_false] = ACTIONS(3343), + [sym_null] = ACTIONS(3343), + [sym_undefined] = ACTIONS(3343), + [anon_sym_AT] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3343), + [anon_sym_get] = ACTIONS(3343), + [anon_sym_set] = ACTIONS(3343), + [anon_sym_declare] = ACTIONS(3343), + [anon_sym_public] = ACTIONS(3343), + [anon_sym_private] = ACTIONS(3343), + [anon_sym_protected] = ACTIONS(3343), + [anon_sym_override] = ACTIONS(3343), + [anon_sym_module] = ACTIONS(3343), + [anon_sym_any] = ACTIONS(3343), + [anon_sym_number] = ACTIONS(3343), + [anon_sym_boolean] = ACTIONS(3343), + [anon_sym_string] = ACTIONS(3343), + [anon_sym_symbol] = ACTIONS(3343), + [anon_sym_object] = ACTIONS(3343), + [anon_sym_abstract] = ACTIONS(3343), + [anon_sym_interface] = ACTIONS(3343), + [anon_sym_enum] = ACTIONS(3343), [sym_html_comment] = ACTIONS(5), }, [1107] = { [sym_comment] = STATE(1107), - [sym_identifier] = ACTIONS(3289), - [anon_sym_export] = ACTIONS(3289), - [anon_sym_default] = ACTIONS(3289), - [anon_sym_type] = ACTIONS(3289), - [anon_sym_namespace] = ACTIONS(3289), - [anon_sym_LBRACE] = ACTIONS(3289), - [anon_sym_RBRACE] = ACTIONS(3289), - [anon_sym_typeof] = ACTIONS(3289), - [anon_sym_import] = ACTIONS(3289), - [anon_sym_with] = ACTIONS(3289), - [anon_sym_var] = ACTIONS(3289), - [anon_sym_let] = ACTIONS(3289), - [anon_sym_const] = ACTIONS(3289), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_else] = ACTIONS(3289), - [anon_sym_if] = ACTIONS(3289), - [anon_sym_switch] = ACTIONS(3289), - [anon_sym_for] = ACTIONS(3289), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_await] = ACTIONS(3289), - [anon_sym_while] = ACTIONS(3289), - [anon_sym_do] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3289), - [anon_sym_break] = ACTIONS(3289), - [anon_sym_continue] = ACTIONS(3289), - [anon_sym_debugger] = ACTIONS(3289), - [anon_sym_return] = ACTIONS(3289), - [anon_sym_throw] = ACTIONS(3289), - [anon_sym_SEMI] = ACTIONS(3289), - [anon_sym_case] = ACTIONS(3289), - [anon_sym_yield] = ACTIONS(3289), - [anon_sym_LBRACK] = ACTIONS(3289), - [anon_sym_LTtemplate_GT] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(3289), - [anon_sym_SQUOTE] = ACTIONS(3289), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_async] = ACTIONS(3289), - [anon_sym_function] = ACTIONS(3289), - [anon_sym_new] = ACTIONS(3289), - [anon_sym_using] = ACTIONS(3289), - [anon_sym_PLUS] = ACTIONS(3289), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_SLASH] = ACTIONS(3289), - [anon_sym_LT] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_void] = ACTIONS(3289), - [anon_sym_delete] = ACTIONS(3289), - [anon_sym_PLUS_PLUS] = ACTIONS(3289), - [anon_sym_DASH_DASH] = ACTIONS(3289), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3289), - [sym_number] = ACTIONS(3289), - [sym_private_property_identifier] = ACTIONS(3289), - [sym_this] = ACTIONS(3289), - [sym_super] = ACTIONS(3289), - [sym_true] = ACTIONS(3289), - [sym_false] = ACTIONS(3289), - [sym_null] = ACTIONS(3289), - [sym_undefined] = ACTIONS(3289), - [anon_sym_AT] = ACTIONS(3289), - [anon_sym_static] = ACTIONS(3289), - [anon_sym_readonly] = ACTIONS(3289), - [anon_sym_get] = ACTIONS(3289), - [anon_sym_set] = ACTIONS(3289), - [anon_sym_declare] = ACTIONS(3289), - [anon_sym_public] = ACTIONS(3289), - [anon_sym_private] = ACTIONS(3289), - [anon_sym_protected] = ACTIONS(3289), - [anon_sym_override] = ACTIONS(3289), - [anon_sym_module] = ACTIONS(3289), - [anon_sym_any] = ACTIONS(3289), - [anon_sym_number] = ACTIONS(3289), - [anon_sym_boolean] = ACTIONS(3289), - [anon_sym_string] = ACTIONS(3289), - [anon_sym_symbol] = ACTIONS(3289), - [anon_sym_object] = ACTIONS(3289), - [anon_sym_abstract] = ACTIONS(3289), - [anon_sym_interface] = ACTIONS(3289), - [anon_sym_enum] = ACTIONS(3289), - [sym_html_comment] = ACTIONS(5), - }, - [1108] = { - [sym_comment] = STATE(1108), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_default] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_namespace] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2246), - [anon_sym_import] = ACTIONS(2246), - [anon_sym_with] = ACTIONS(2246), - [anon_sym_var] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_debugger] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_throw] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_case] = ACTIONS(2246), - [anon_sym_finally] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LTtemplate_GT] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_class] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2246), - [anon_sym_delete] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_private_property_identifier] = ACTIONS(2246), - [sym_this] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_undefined] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_readonly] = ACTIONS(2246), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_declare] = ACTIONS(2246), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_override] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_any] = ACTIONS(2246), - [anon_sym_number] = ACTIONS(2246), - [anon_sym_boolean] = ACTIONS(2246), - [anon_sym_string] = ACTIONS(2246), - [anon_sym_symbol] = ACTIONS(2246), - [anon_sym_object] = ACTIONS(2246), - [anon_sym_abstract] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), - [sym_html_comment] = ACTIONS(5), - }, - [1109] = { - [sym_comment] = STATE(1109), - [sym_identifier] = ACTIONS(3291), - [anon_sym_export] = ACTIONS(3291), - [anon_sym_default] = ACTIONS(3291), - [anon_sym_type] = ACTIONS(3291), - [anon_sym_namespace] = ACTIONS(3291), - [anon_sym_LBRACE] = ACTIONS(3291), - [anon_sym_RBRACE] = ACTIONS(3291), - [anon_sym_typeof] = ACTIONS(3291), - [anon_sym_import] = ACTIONS(3291), - [anon_sym_with] = ACTIONS(3291), - [anon_sym_var] = ACTIONS(3291), - [anon_sym_let] = ACTIONS(3291), - [anon_sym_const] = ACTIONS(3291), - [anon_sym_BANG] = ACTIONS(3291), - [anon_sym_else] = ACTIONS(3291), - [anon_sym_if] = ACTIONS(3291), - [anon_sym_switch] = ACTIONS(3291), - [anon_sym_for] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3291), - [anon_sym_await] = ACTIONS(3291), - [anon_sym_while] = ACTIONS(3291), - [anon_sym_do] = ACTIONS(3291), - [anon_sym_try] = ACTIONS(3291), - [anon_sym_break] = ACTIONS(3291), - [anon_sym_continue] = ACTIONS(3291), - [anon_sym_debugger] = ACTIONS(3291), - [anon_sym_return] = ACTIONS(3291), - [anon_sym_throw] = ACTIONS(3291), - [anon_sym_SEMI] = ACTIONS(3291), - [anon_sym_case] = ACTIONS(3291), - [anon_sym_yield] = ACTIONS(3291), - [anon_sym_LBRACK] = ACTIONS(3291), - [anon_sym_LTtemplate_GT] = ACTIONS(3291), - [anon_sym_DQUOTE] = ACTIONS(3291), - [anon_sym_SQUOTE] = ACTIONS(3291), - [anon_sym_class] = ACTIONS(3291), - [anon_sym_async] = ACTIONS(3291), - [anon_sym_function] = ACTIONS(3291), - [anon_sym_new] = ACTIONS(3291), - [anon_sym_using] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_SLASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(3291), - [anon_sym_void] = ACTIONS(3291), - [anon_sym_delete] = ACTIONS(3291), - [anon_sym_PLUS_PLUS] = ACTIONS(3291), - [anon_sym_DASH_DASH] = ACTIONS(3291), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3291), - [sym_number] = ACTIONS(3291), - [sym_private_property_identifier] = ACTIONS(3291), - [sym_this] = ACTIONS(3291), - [sym_super] = ACTIONS(3291), - [sym_true] = ACTIONS(3291), - [sym_false] = ACTIONS(3291), - [sym_null] = ACTIONS(3291), - [sym_undefined] = ACTIONS(3291), - [anon_sym_AT] = ACTIONS(3291), - [anon_sym_static] = ACTIONS(3291), - [anon_sym_readonly] = ACTIONS(3291), - [anon_sym_get] = ACTIONS(3291), - [anon_sym_set] = ACTIONS(3291), - [anon_sym_declare] = ACTIONS(3291), - [anon_sym_public] = ACTIONS(3291), - [anon_sym_private] = ACTIONS(3291), - [anon_sym_protected] = ACTIONS(3291), - [anon_sym_override] = ACTIONS(3291), - [anon_sym_module] = ACTIONS(3291), - [anon_sym_any] = ACTIONS(3291), - [anon_sym_number] = ACTIONS(3291), - [anon_sym_boolean] = ACTIONS(3291), - [anon_sym_string] = ACTIONS(3291), - [anon_sym_symbol] = ACTIONS(3291), - [anon_sym_object] = ACTIONS(3291), - [anon_sym_abstract] = ACTIONS(3291), - [anon_sym_interface] = ACTIONS(3291), - [anon_sym_enum] = ACTIONS(3291), - [sym_html_comment] = ACTIONS(5), - }, - [1110] = { - [sym_comment] = STATE(1110), - [sym_identifier] = ACTIONS(3293), - [anon_sym_export] = ACTIONS(3293), - [anon_sym_default] = ACTIONS(3293), - [anon_sym_type] = ACTIONS(3293), - [anon_sym_namespace] = ACTIONS(3293), - [anon_sym_LBRACE] = ACTIONS(3293), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_typeof] = ACTIONS(3293), - [anon_sym_import] = ACTIONS(3293), - [anon_sym_with] = ACTIONS(3293), - [anon_sym_var] = ACTIONS(3293), - [anon_sym_let] = ACTIONS(3293), - [anon_sym_const] = ACTIONS(3293), - [anon_sym_BANG] = ACTIONS(3293), - [anon_sym_else] = ACTIONS(3293), - [anon_sym_if] = ACTIONS(3293), - [anon_sym_switch] = ACTIONS(3293), - [anon_sym_for] = ACTIONS(3293), - [anon_sym_LPAREN] = ACTIONS(3293), - [anon_sym_await] = ACTIONS(3293), - [anon_sym_while] = ACTIONS(3293), - [anon_sym_do] = ACTIONS(3293), - [anon_sym_try] = ACTIONS(3293), - [anon_sym_break] = ACTIONS(3293), - [anon_sym_continue] = ACTIONS(3293), - [anon_sym_debugger] = ACTIONS(3293), - [anon_sym_return] = ACTIONS(3293), - [anon_sym_throw] = ACTIONS(3293), - [anon_sym_SEMI] = ACTIONS(3293), - [anon_sym_case] = ACTIONS(3293), - [anon_sym_yield] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_LTtemplate_GT] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_SQUOTE] = ACTIONS(3293), - [anon_sym_class] = ACTIONS(3293), - [anon_sym_async] = ACTIONS(3293), - [anon_sym_function] = ACTIONS(3293), - [anon_sym_new] = ACTIONS(3293), - [anon_sym_using] = ACTIONS(3293), - [anon_sym_PLUS] = ACTIONS(3293), - [anon_sym_DASH] = ACTIONS(3293), - [anon_sym_SLASH] = ACTIONS(3293), - [anon_sym_LT] = ACTIONS(3293), - [anon_sym_TILDE] = ACTIONS(3293), - [anon_sym_void] = ACTIONS(3293), - [anon_sym_delete] = ACTIONS(3293), - [anon_sym_PLUS_PLUS] = ACTIONS(3293), - [anon_sym_DASH_DASH] = ACTIONS(3293), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3293), - [sym_number] = ACTIONS(3293), - [sym_private_property_identifier] = ACTIONS(3293), - [sym_this] = ACTIONS(3293), - [sym_super] = ACTIONS(3293), - [sym_true] = ACTIONS(3293), - [sym_false] = ACTIONS(3293), - [sym_null] = ACTIONS(3293), - [sym_undefined] = ACTIONS(3293), - [anon_sym_AT] = ACTIONS(3293), - [anon_sym_static] = ACTIONS(3293), - [anon_sym_readonly] = ACTIONS(3293), - [anon_sym_get] = ACTIONS(3293), - [anon_sym_set] = ACTIONS(3293), - [anon_sym_declare] = ACTIONS(3293), - [anon_sym_public] = ACTIONS(3293), - [anon_sym_private] = ACTIONS(3293), - [anon_sym_protected] = ACTIONS(3293), - [anon_sym_override] = ACTIONS(3293), - [anon_sym_module] = ACTIONS(3293), - [anon_sym_any] = ACTIONS(3293), - [anon_sym_number] = ACTIONS(3293), - [anon_sym_boolean] = ACTIONS(3293), - [anon_sym_string] = ACTIONS(3293), - [anon_sym_symbol] = ACTIONS(3293), - [anon_sym_object] = ACTIONS(3293), - [anon_sym_abstract] = ACTIONS(3293), - [anon_sym_interface] = ACTIONS(3293), - [anon_sym_enum] = ACTIONS(3293), - [sym_html_comment] = ACTIONS(5), - }, - [1111] = { - [sym_comment] = STATE(1111), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(2192), - [sym_html_comment] = ACTIONS(5), - }, - [1112] = { - [sym_comment] = STATE(1112), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_default] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_namespace] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2246), - [anon_sym_import] = ACTIONS(2246), - [anon_sym_with] = ACTIONS(2246), - [anon_sym_var] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_debugger] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_throw] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_case] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LTtemplate_GT] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_class] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2246), - [anon_sym_delete] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_private_property_identifier] = ACTIONS(2246), - [sym_this] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_undefined] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_readonly] = ACTIONS(2246), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_declare] = ACTIONS(2246), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_override] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_any] = ACTIONS(2246), - [anon_sym_number] = ACTIONS(2246), - [anon_sym_boolean] = ACTIONS(2246), - [anon_sym_string] = ACTIONS(2246), - [anon_sym_symbol] = ACTIONS(2246), - [anon_sym_object] = ACTIONS(2246), - [anon_sym_abstract] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), - [sym__automatic_semicolon] = ACTIONS(2248), - [sym_html_comment] = ACTIONS(5), - }, - [1113] = { - [sym_comment] = STATE(1113), [sym_identifier] = ACTIONS(2288), [anon_sym_export] = ACTIONS(2288), [anon_sym_default] = ACTIONS(2288), @@ -153772,7813 +152992,7564 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2288), [anon_sym_interface] = ACTIONS(2288), [anon_sym_enum] = ACTIONS(2288), - [sym__automatic_semicolon] = ACTIONS(2358), + [sym__automatic_semicolon] = ACTIONS(2290), [sym_html_comment] = ACTIONS(5), }, - [1114] = { - [sym_comment] = STATE(1114), - [sym_identifier] = ACTIONS(3295), - [anon_sym_export] = ACTIONS(3295), - [anon_sym_default] = ACTIONS(3295), - [anon_sym_type] = ACTIONS(3295), - [anon_sym_namespace] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_RBRACE] = ACTIONS(3295), - [anon_sym_typeof] = ACTIONS(3295), - [anon_sym_import] = ACTIONS(3295), - [anon_sym_with] = ACTIONS(3295), - [anon_sym_var] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_const] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3295), - [anon_sym_else] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_switch] = ACTIONS(3295), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_await] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_break] = ACTIONS(3295), - [anon_sym_continue] = ACTIONS(3295), - [anon_sym_debugger] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_throw] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_case] = ACTIONS(3295), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_LTtemplate_GT] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_SQUOTE] = ACTIONS(3295), - [anon_sym_class] = ACTIONS(3295), - [anon_sym_async] = ACTIONS(3295), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_using] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3295), - [anon_sym_void] = ACTIONS(3295), - [anon_sym_delete] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3295), - [sym_number] = ACTIONS(3295), - [sym_private_property_identifier] = ACTIONS(3295), - [sym_this] = ACTIONS(3295), - [sym_super] = ACTIONS(3295), - [sym_true] = ACTIONS(3295), - [sym_false] = ACTIONS(3295), - [sym_null] = ACTIONS(3295), - [sym_undefined] = ACTIONS(3295), - [anon_sym_AT] = ACTIONS(3295), - [anon_sym_static] = ACTIONS(3295), - [anon_sym_readonly] = ACTIONS(3295), - [anon_sym_get] = ACTIONS(3295), - [anon_sym_set] = ACTIONS(3295), - [anon_sym_declare] = ACTIONS(3295), - [anon_sym_public] = ACTIONS(3295), - [anon_sym_private] = ACTIONS(3295), - [anon_sym_protected] = ACTIONS(3295), - [anon_sym_override] = ACTIONS(3295), - [anon_sym_module] = ACTIONS(3295), - [anon_sym_any] = ACTIONS(3295), - [anon_sym_number] = ACTIONS(3295), - [anon_sym_boolean] = ACTIONS(3295), - [anon_sym_string] = ACTIONS(3295), - [anon_sym_symbol] = ACTIONS(3295), - [anon_sym_object] = ACTIONS(3295), - [anon_sym_abstract] = ACTIONS(3295), - [anon_sym_interface] = ACTIONS(3295), - [anon_sym_enum] = ACTIONS(3295), + [1108] = { + [sym_comment] = STATE(1108), + [sym_identifier] = ACTIONS(2188), + [anon_sym_export] = ACTIONS(2188), + [anon_sym_default] = ACTIONS(2188), + [anon_sym_type] = ACTIONS(2188), + [anon_sym_namespace] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_typeof] = ACTIONS(2188), + [anon_sym_import] = ACTIONS(2188), + [anon_sym_with] = ACTIONS(2188), + [anon_sym_var] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_await] = ACTIONS(2188), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_do] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), + [anon_sym_continue] = ACTIONS(2188), + [anon_sym_debugger] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_throw] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_case] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LTtemplate_GT] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_class] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(2188), + [anon_sym_function] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(2188), + [anon_sym_PLUS] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_SLASH] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_void] = ACTIONS(2188), + [anon_sym_delete] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_number] = ACTIONS(2188), + [sym_private_property_identifier] = ACTIONS(2188), + [sym_this] = ACTIONS(2188), + [sym_super] = ACTIONS(2188), + [sym_true] = ACTIONS(2188), + [sym_false] = ACTIONS(2188), + [sym_null] = ACTIONS(2188), + [sym_undefined] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(2188), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_readonly] = ACTIONS(2188), + [anon_sym_get] = ACTIONS(2188), + [anon_sym_set] = ACTIONS(2188), + [anon_sym_declare] = ACTIONS(2188), + [anon_sym_public] = ACTIONS(2188), + [anon_sym_private] = ACTIONS(2188), + [anon_sym_protected] = ACTIONS(2188), + [anon_sym_override] = ACTIONS(2188), + [anon_sym_module] = ACTIONS(2188), + [anon_sym_any] = ACTIONS(2188), + [anon_sym_number] = ACTIONS(2188), + [anon_sym_boolean] = ACTIONS(2188), + [anon_sym_string] = ACTIONS(2188), + [anon_sym_symbol] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(2188), + [anon_sym_abstract] = ACTIONS(2188), + [anon_sym_interface] = ACTIONS(2188), + [anon_sym_enum] = ACTIONS(2188), + [sym__automatic_semicolon] = ACTIONS(2418), [sym_html_comment] = ACTIONS(5), }, - [1115] = { - [sym_else_clause] = STATE(1632), - [sym_comment] = STATE(1115), - [ts_builtin_sym_end] = ACTIONS(3297), - [sym_identifier] = ACTIONS(3167), - [anon_sym_export] = ACTIONS(3167), - [anon_sym_type] = ACTIONS(3167), - [anon_sym_namespace] = ACTIONS(3167), - [anon_sym_LBRACE] = ACTIONS(3167), - [anon_sym_RBRACE] = ACTIONS(3167), - [anon_sym_typeof] = ACTIONS(3167), - [anon_sym_import] = ACTIONS(3167), - [anon_sym_with] = ACTIONS(3167), - [anon_sym_var] = ACTIONS(3167), - [anon_sym_let] = ACTIONS(3167), - [anon_sym_const] = ACTIONS(3167), - [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3299), - [anon_sym_if] = ACTIONS(3167), - [anon_sym_switch] = ACTIONS(3167), - [anon_sym_for] = ACTIONS(3167), - [anon_sym_LPAREN] = ACTIONS(3167), - [anon_sym_await] = ACTIONS(3167), - [anon_sym_while] = ACTIONS(3167), - [anon_sym_do] = ACTIONS(3167), - [anon_sym_try] = ACTIONS(3167), - [anon_sym_break] = ACTIONS(3167), - [anon_sym_continue] = ACTIONS(3167), - [anon_sym_debugger] = ACTIONS(3167), - [anon_sym_return] = ACTIONS(3167), - [anon_sym_throw] = ACTIONS(3167), - [anon_sym_SEMI] = ACTIONS(3167), - [anon_sym_yield] = ACTIONS(3167), - [anon_sym_LBRACK] = ACTIONS(3167), - [anon_sym_LTtemplate_GT] = ACTIONS(3167), - [anon_sym_DQUOTE] = ACTIONS(3167), - [anon_sym_SQUOTE] = ACTIONS(3167), - [anon_sym_class] = ACTIONS(3167), - [anon_sym_async] = ACTIONS(3167), - [anon_sym_function] = ACTIONS(3167), - [anon_sym_new] = ACTIONS(3167), - [anon_sym_using] = ACTIONS(3167), - [anon_sym_PLUS] = ACTIONS(3167), - [anon_sym_DASH] = ACTIONS(3167), - [anon_sym_SLASH] = ACTIONS(3167), - [anon_sym_LT] = ACTIONS(3167), - [anon_sym_TILDE] = ACTIONS(3167), - [anon_sym_void] = ACTIONS(3167), - [anon_sym_delete] = ACTIONS(3167), - [anon_sym_PLUS_PLUS] = ACTIONS(3167), - [anon_sym_DASH_DASH] = ACTIONS(3167), + [1109] = { + [sym_comment] = STATE(1109), + [sym_identifier] = ACTIONS(2204), + [anon_sym_export] = ACTIONS(2204), + [anon_sym_default] = ACTIONS(2204), + [anon_sym_type] = ACTIONS(2204), + [anon_sym_namespace] = ACTIONS(2204), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_RBRACE] = ACTIONS(2204), + [anon_sym_typeof] = ACTIONS(2204), + [anon_sym_import] = ACTIONS(2204), + [anon_sym_with] = ACTIONS(2204), + [anon_sym_var] = ACTIONS(2204), + [anon_sym_let] = ACTIONS(2204), + [anon_sym_const] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_if] = ACTIONS(2204), + [anon_sym_switch] = ACTIONS(2204), + [anon_sym_for] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2204), + [anon_sym_await] = ACTIONS(2204), + [anon_sym_while] = ACTIONS(2204), + [anon_sym_do] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(2204), + [anon_sym_break] = ACTIONS(2204), + [anon_sym_continue] = ACTIONS(2204), + [anon_sym_debugger] = ACTIONS(2204), + [anon_sym_return] = ACTIONS(2204), + [anon_sym_throw] = ACTIONS(2204), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym_case] = ACTIONS(2204), + [anon_sym_yield] = ACTIONS(2204), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LTtemplate_GT] = ACTIONS(2204), + [anon_sym_DQUOTE] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_class] = ACTIONS(2204), + [anon_sym_async] = ACTIONS(2204), + [anon_sym_function] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2204), + [anon_sym_using] = ACTIONS(2204), + [anon_sym_PLUS] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2204), + [anon_sym_SLASH] = ACTIONS(2204), + [anon_sym_LT] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_void] = ACTIONS(2204), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_DASH_DASH] = ACTIONS(2204), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3167), - [sym_number] = ACTIONS(3167), - [sym_private_property_identifier] = ACTIONS(3167), - [sym_this] = ACTIONS(3167), - [sym_super] = ACTIONS(3167), - [sym_true] = ACTIONS(3167), - [sym_false] = ACTIONS(3167), - [sym_null] = ACTIONS(3167), - [sym_undefined] = ACTIONS(3167), - [anon_sym_AT] = ACTIONS(3167), - [anon_sym_static] = ACTIONS(3167), - [anon_sym_readonly] = ACTIONS(3167), - [anon_sym_get] = ACTIONS(3167), - [anon_sym_set] = ACTIONS(3167), - [anon_sym_declare] = ACTIONS(3167), - [anon_sym_public] = ACTIONS(3167), - [anon_sym_private] = ACTIONS(3167), - [anon_sym_protected] = ACTIONS(3167), - [anon_sym_override] = ACTIONS(3167), - [anon_sym_module] = ACTIONS(3167), - [anon_sym_any] = ACTIONS(3167), - [anon_sym_number] = ACTIONS(3167), - [anon_sym_boolean] = ACTIONS(3167), - [anon_sym_string] = ACTIONS(3167), - [anon_sym_symbol] = ACTIONS(3167), - [anon_sym_object] = ACTIONS(3167), - [anon_sym_abstract] = ACTIONS(3167), - [anon_sym_interface] = ACTIONS(3167), - [anon_sym_enum] = ACTIONS(3167), + [anon_sym_BQUOTE] = ACTIONS(2204), + [sym_number] = ACTIONS(2204), + [sym_private_property_identifier] = ACTIONS(2204), + [sym_this] = ACTIONS(2204), + [sym_super] = ACTIONS(2204), + [sym_true] = ACTIONS(2204), + [sym_false] = ACTIONS(2204), + [sym_null] = ACTIONS(2204), + [sym_undefined] = ACTIONS(2204), + [anon_sym_AT] = ACTIONS(2204), + [anon_sym_static] = ACTIONS(2204), + [anon_sym_readonly] = ACTIONS(2204), + [anon_sym_get] = ACTIONS(2204), + [anon_sym_set] = ACTIONS(2204), + [anon_sym_declare] = ACTIONS(2204), + [anon_sym_public] = ACTIONS(2204), + [anon_sym_private] = ACTIONS(2204), + [anon_sym_protected] = ACTIONS(2204), + [anon_sym_override] = ACTIONS(2204), + [anon_sym_module] = ACTIONS(2204), + [anon_sym_any] = ACTIONS(2204), + [anon_sym_number] = ACTIONS(2204), + [anon_sym_boolean] = ACTIONS(2204), + [anon_sym_string] = ACTIONS(2204), + [anon_sym_symbol] = ACTIONS(2204), + [anon_sym_object] = ACTIONS(2204), + [anon_sym_abstract] = ACTIONS(2204), + [anon_sym_interface] = ACTIONS(2204), + [anon_sym_enum] = ACTIONS(2204), + [sym__automatic_semicolon] = ACTIONS(2416), [sym_html_comment] = ACTIONS(5), }, - [1116] = { - [sym_comment] = STATE(1116), - [sym_identifier] = ACTIONS(2296), - [anon_sym_export] = ACTIONS(2296), - [anon_sym_default] = ACTIONS(2296), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_namespace] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2296), - [anon_sym_RBRACE] = ACTIONS(2296), - [anon_sym_typeof] = ACTIONS(2296), - [anon_sym_import] = ACTIONS(2296), - [anon_sym_with] = ACTIONS(2296), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_const] = ACTIONS(2296), - [anon_sym_BANG] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_switch] = ACTIONS(2296), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2296), - [anon_sym_await] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(2296), - [anon_sym_try] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_debugger] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_throw] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2296), - [anon_sym_case] = ACTIONS(2296), - [anon_sym_yield] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2296), - [anon_sym_LTtemplate_GT] = ACTIONS(2296), - [anon_sym_DQUOTE] = ACTIONS(2296), - [anon_sym_SQUOTE] = ACTIONS(2296), - [anon_sym_class] = ACTIONS(2296), - [anon_sym_async] = ACTIONS(2296), - [anon_sym_function] = ACTIONS(2296), - [anon_sym_new] = ACTIONS(2296), - [anon_sym_using] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_TILDE] = ACTIONS(2296), - [anon_sym_void] = ACTIONS(2296), - [anon_sym_delete] = ACTIONS(2296), - [anon_sym_PLUS_PLUS] = ACTIONS(2296), - [anon_sym_DASH_DASH] = ACTIONS(2296), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2296), - [sym_number] = ACTIONS(2296), - [sym_private_property_identifier] = ACTIONS(2296), - [sym_this] = ACTIONS(2296), - [sym_super] = ACTIONS(2296), - [sym_true] = ACTIONS(2296), - [sym_false] = ACTIONS(2296), - [sym_null] = ACTIONS(2296), - [sym_undefined] = ACTIONS(2296), - [anon_sym_AT] = ACTIONS(2296), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_readonly] = ACTIONS(2296), - [anon_sym_get] = ACTIONS(2296), - [anon_sym_set] = ACTIONS(2296), - [anon_sym_declare] = ACTIONS(2296), - [anon_sym_public] = ACTIONS(2296), - [anon_sym_private] = ACTIONS(2296), - [anon_sym_protected] = ACTIONS(2296), - [anon_sym_override] = ACTIONS(2296), - [anon_sym_module] = ACTIONS(2296), - [anon_sym_any] = ACTIONS(2296), - [anon_sym_number] = ACTIONS(2296), - [anon_sym_boolean] = ACTIONS(2296), - [anon_sym_string] = ACTIONS(2296), - [anon_sym_symbol] = ACTIONS(2296), - [anon_sym_object] = ACTIONS(2296), - [anon_sym_abstract] = ACTIONS(2296), - [anon_sym_interface] = ACTIONS(2296), - [anon_sym_enum] = ACTIONS(2296), - [sym__automatic_semicolon] = ACTIONS(2298), + [1110] = { + [sym_comment] = STATE(1110), + [sym_identifier] = ACTIONS(3345), + [anon_sym_export] = ACTIONS(3345), + [anon_sym_default] = ACTIONS(3345), + [anon_sym_type] = ACTIONS(3345), + [anon_sym_namespace] = ACTIONS(3345), + [anon_sym_LBRACE] = ACTIONS(3345), + [anon_sym_RBRACE] = ACTIONS(3345), + [anon_sym_typeof] = ACTIONS(3345), + [anon_sym_import] = ACTIONS(3345), + [anon_sym_with] = ACTIONS(3345), + [anon_sym_var] = ACTIONS(3345), + [anon_sym_let] = ACTIONS(3345), + [anon_sym_const] = ACTIONS(3345), + [anon_sym_BANG] = ACTIONS(3345), + [anon_sym_else] = ACTIONS(3345), + [anon_sym_if] = ACTIONS(3345), + [anon_sym_switch] = ACTIONS(3345), + [anon_sym_for] = ACTIONS(3345), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_await] = ACTIONS(3345), + [anon_sym_while] = ACTIONS(3345), + [anon_sym_do] = ACTIONS(3345), + [anon_sym_try] = ACTIONS(3345), + [anon_sym_break] = ACTIONS(3345), + [anon_sym_continue] = ACTIONS(3345), + [anon_sym_debugger] = ACTIONS(3345), + [anon_sym_return] = ACTIONS(3345), + [anon_sym_throw] = ACTIONS(3345), + [anon_sym_SEMI] = ACTIONS(3345), + [anon_sym_case] = ACTIONS(3345), + [anon_sym_yield] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_LTtemplate_GT] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(3345), + [anon_sym_SQUOTE] = ACTIONS(3345), + [anon_sym_class] = ACTIONS(3345), + [anon_sym_async] = ACTIONS(3345), + [anon_sym_function] = ACTIONS(3345), + [anon_sym_new] = ACTIONS(3345), + [anon_sym_using] = ACTIONS(3345), + [anon_sym_PLUS] = ACTIONS(3345), + [anon_sym_DASH] = ACTIONS(3345), + [anon_sym_SLASH] = ACTIONS(3345), + [anon_sym_LT] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3345), + [anon_sym_void] = ACTIONS(3345), + [anon_sym_delete] = ACTIONS(3345), + [anon_sym_PLUS_PLUS] = ACTIONS(3345), + [anon_sym_DASH_DASH] = ACTIONS(3345), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3345), + [sym_number] = ACTIONS(3345), + [sym_private_property_identifier] = ACTIONS(3345), + [sym_this] = ACTIONS(3345), + [sym_super] = ACTIONS(3345), + [sym_true] = ACTIONS(3345), + [sym_false] = ACTIONS(3345), + [sym_null] = ACTIONS(3345), + [sym_undefined] = ACTIONS(3345), + [anon_sym_AT] = ACTIONS(3345), + [anon_sym_static] = ACTIONS(3345), + [anon_sym_readonly] = ACTIONS(3345), + [anon_sym_get] = ACTIONS(3345), + [anon_sym_set] = ACTIONS(3345), + [anon_sym_declare] = ACTIONS(3345), + [anon_sym_public] = ACTIONS(3345), + [anon_sym_private] = ACTIONS(3345), + [anon_sym_protected] = ACTIONS(3345), + [anon_sym_override] = ACTIONS(3345), + [anon_sym_module] = ACTIONS(3345), + [anon_sym_any] = ACTIONS(3345), + [anon_sym_number] = ACTIONS(3345), + [anon_sym_boolean] = ACTIONS(3345), + [anon_sym_string] = ACTIONS(3345), + [anon_sym_symbol] = ACTIONS(3345), + [anon_sym_object] = ACTIONS(3345), + [anon_sym_abstract] = ACTIONS(3345), + [anon_sym_interface] = ACTIONS(3345), + [anon_sym_enum] = ACTIONS(3345), [sym_html_comment] = ACTIONS(5), }, - [1117] = { - [sym_comment] = STATE(1117), - [sym_identifier] = ACTIONS(3209), - [anon_sym_export] = ACTIONS(3209), - [anon_sym_default] = ACTIONS(3209), - [anon_sym_type] = ACTIONS(3209), - [anon_sym_namespace] = ACTIONS(3209), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym_typeof] = ACTIONS(3209), - [anon_sym_import] = ACTIONS(3209), - [anon_sym_with] = ACTIONS(3209), - [anon_sym_var] = ACTIONS(3209), - [anon_sym_let] = ACTIONS(3209), - [anon_sym_const] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_if] = ACTIONS(3209), - [anon_sym_switch] = ACTIONS(3209), - [anon_sym_for] = ACTIONS(3209), - [anon_sym_LPAREN] = ACTIONS(3209), - [anon_sym_await] = ACTIONS(3209), - [anon_sym_while] = ACTIONS(3209), - [anon_sym_do] = ACTIONS(3209), - [anon_sym_try] = ACTIONS(3209), - [anon_sym_break] = ACTIONS(3209), - [anon_sym_continue] = ACTIONS(3209), - [anon_sym_debugger] = ACTIONS(3209), - [anon_sym_return] = ACTIONS(3209), - [anon_sym_throw] = ACTIONS(3209), - [anon_sym_SEMI] = ACTIONS(3209), - [anon_sym_case] = ACTIONS(3209), - [anon_sym_finally] = ACTIONS(3209), - [anon_sym_yield] = ACTIONS(3209), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_LTtemplate_GT] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3209), - [anon_sym_class] = ACTIONS(3209), - [anon_sym_async] = ACTIONS(3209), - [anon_sym_function] = ACTIONS(3209), - [anon_sym_new] = ACTIONS(3209), - [anon_sym_using] = ACTIONS(3209), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_void] = ACTIONS(3209), - [anon_sym_delete] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3209), - [sym_number] = ACTIONS(3209), - [sym_private_property_identifier] = ACTIONS(3209), - [sym_this] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_true] = ACTIONS(3209), - [sym_false] = ACTIONS(3209), - [sym_null] = ACTIONS(3209), - [sym_undefined] = ACTIONS(3209), - [anon_sym_AT] = ACTIONS(3209), - [anon_sym_static] = ACTIONS(3209), - [anon_sym_readonly] = ACTIONS(3209), - [anon_sym_get] = ACTIONS(3209), - [anon_sym_set] = ACTIONS(3209), - [anon_sym_declare] = ACTIONS(3209), - [anon_sym_public] = ACTIONS(3209), - [anon_sym_private] = ACTIONS(3209), - [anon_sym_protected] = ACTIONS(3209), - [anon_sym_override] = ACTIONS(3209), - [anon_sym_module] = ACTIONS(3209), - [anon_sym_any] = ACTIONS(3209), - [anon_sym_number] = ACTIONS(3209), - [anon_sym_boolean] = ACTIONS(3209), - [anon_sym_string] = ACTIONS(3209), - [anon_sym_symbol] = ACTIONS(3209), - [anon_sym_object] = ACTIONS(3209), - [anon_sym_abstract] = ACTIONS(3209), - [anon_sym_interface] = ACTIONS(3209), - [anon_sym_enum] = ACTIONS(3209), + [1111] = { + [sym_comment] = STATE(1111), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3347), + [anon_sym_default] = ACTIONS(3347), + [anon_sym_type] = ACTIONS(3347), + [anon_sym_namespace] = ACTIONS(3347), + [anon_sym_LBRACE] = ACTIONS(3347), + [anon_sym_RBRACE] = ACTIONS(3347), + [anon_sym_typeof] = ACTIONS(3347), + [anon_sym_import] = ACTIONS(3347), + [anon_sym_with] = ACTIONS(3347), + [anon_sym_var] = ACTIONS(3347), + [anon_sym_let] = ACTIONS(3347), + [anon_sym_const] = ACTIONS(3347), + [anon_sym_BANG] = ACTIONS(3347), + [anon_sym_else] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(3347), + [anon_sym_switch] = ACTIONS(3347), + [anon_sym_for] = ACTIONS(3347), + [anon_sym_LPAREN] = ACTIONS(3347), + [anon_sym_await] = ACTIONS(3347), + [anon_sym_while] = ACTIONS(3347), + [anon_sym_do] = ACTIONS(3347), + [anon_sym_try] = ACTIONS(3347), + [anon_sym_break] = ACTIONS(3347), + [anon_sym_continue] = ACTIONS(3347), + [anon_sym_debugger] = ACTIONS(3347), + [anon_sym_return] = ACTIONS(3347), + [anon_sym_throw] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3347), + [anon_sym_case] = ACTIONS(3347), + [anon_sym_yield] = ACTIONS(3347), + [anon_sym_LBRACK] = ACTIONS(3347), + [anon_sym_LTtemplate_GT] = ACTIONS(3347), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_class] = ACTIONS(3347), + [anon_sym_async] = ACTIONS(3347), + [anon_sym_function] = ACTIONS(3347), + [anon_sym_new] = ACTIONS(3347), + [anon_sym_using] = ACTIONS(3347), + [anon_sym_PLUS] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3347), + [anon_sym_SLASH] = ACTIONS(3347), + [anon_sym_LT] = ACTIONS(3347), + [anon_sym_TILDE] = ACTIONS(3347), + [anon_sym_void] = ACTIONS(3347), + [anon_sym_delete] = ACTIONS(3347), + [anon_sym_PLUS_PLUS] = ACTIONS(3347), + [anon_sym_DASH_DASH] = ACTIONS(3347), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3347), + [sym_number] = ACTIONS(3347), + [sym_private_property_identifier] = ACTIONS(3347), + [sym_this] = ACTIONS(3347), + [sym_super] = ACTIONS(3347), + [sym_true] = ACTIONS(3347), + [sym_false] = ACTIONS(3347), + [sym_null] = ACTIONS(3347), + [sym_undefined] = ACTIONS(3347), + [anon_sym_AT] = ACTIONS(3347), + [anon_sym_static] = ACTIONS(3347), + [anon_sym_readonly] = ACTIONS(3347), + [anon_sym_get] = ACTIONS(3347), + [anon_sym_set] = ACTIONS(3347), + [anon_sym_declare] = ACTIONS(3347), + [anon_sym_public] = ACTIONS(3347), + [anon_sym_private] = ACTIONS(3347), + [anon_sym_protected] = ACTIONS(3347), + [anon_sym_override] = ACTIONS(3347), + [anon_sym_module] = ACTIONS(3347), + [anon_sym_any] = ACTIONS(3347), + [anon_sym_number] = ACTIONS(3347), + [anon_sym_boolean] = ACTIONS(3347), + [anon_sym_string] = ACTIONS(3347), + [anon_sym_symbol] = ACTIONS(3347), + [anon_sym_object] = ACTIONS(3347), + [anon_sym_abstract] = ACTIONS(3347), + [anon_sym_interface] = ACTIONS(3347), + [anon_sym_enum] = ACTIONS(3347), [sym_html_comment] = ACTIONS(5), }, - [1118] = { - [sym_comment] = STATE(1118), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(3301), + [1112] = { + [sym_comment] = STATE(1112), + [sym_identifier] = ACTIONS(3349), + [anon_sym_export] = ACTIONS(3349), + [anon_sym_default] = ACTIONS(3349), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_LBRACE] = ACTIONS(3349), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_typeof] = ACTIONS(3349), + [anon_sym_import] = ACTIONS(3349), + [anon_sym_with] = ACTIONS(3349), + [anon_sym_var] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), + [anon_sym_const] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(3349), + [anon_sym_else] = ACTIONS(3349), + [anon_sym_if] = ACTIONS(3349), + [anon_sym_switch] = ACTIONS(3349), + [anon_sym_for] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3349), + [anon_sym_await] = ACTIONS(3349), + [anon_sym_while] = ACTIONS(3349), + [anon_sym_do] = ACTIONS(3349), + [anon_sym_try] = ACTIONS(3349), + [anon_sym_break] = ACTIONS(3349), + [anon_sym_continue] = ACTIONS(3349), + [anon_sym_debugger] = ACTIONS(3349), + [anon_sym_return] = ACTIONS(3349), + [anon_sym_throw] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_case] = ACTIONS(3349), + [anon_sym_yield] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(3349), + [anon_sym_LTtemplate_GT] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [anon_sym_SQUOTE] = ACTIONS(3349), + [anon_sym_class] = ACTIONS(3349), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3349), + [anon_sym_new] = ACTIONS(3349), + [anon_sym_using] = ACTIONS(3349), + [anon_sym_PLUS] = ACTIONS(3349), + [anon_sym_DASH] = ACTIONS(3349), + [anon_sym_SLASH] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_TILDE] = ACTIONS(3349), + [anon_sym_void] = ACTIONS(3349), + [anon_sym_delete] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_DASH_DASH] = ACTIONS(3349), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3349), + [sym_number] = ACTIONS(3349), + [sym_private_property_identifier] = ACTIONS(3349), + [sym_this] = ACTIONS(3349), + [sym_super] = ACTIONS(3349), + [sym_true] = ACTIONS(3349), + [sym_false] = ACTIONS(3349), + [sym_null] = ACTIONS(3349), + [sym_undefined] = ACTIONS(3349), + [anon_sym_AT] = ACTIONS(3349), + [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_abstract] = ACTIONS(3349), + [anon_sym_interface] = ACTIONS(3349), + [anon_sym_enum] = ACTIONS(3349), [sym_html_comment] = ACTIONS(5), }, - [1119] = { - [sym_comment] = STATE(1119), - [sym_identifier] = ACTIONS(3203), - [anon_sym_export] = ACTIONS(3203), - [anon_sym_default] = ACTIONS(3203), - [anon_sym_type] = ACTIONS(3203), - [anon_sym_namespace] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_typeof] = ACTIONS(3203), - [anon_sym_import] = ACTIONS(3203), - [anon_sym_with] = ACTIONS(3203), - [anon_sym_var] = ACTIONS(3203), - [anon_sym_let] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_switch] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_await] = ACTIONS(3203), - [anon_sym_while] = ACTIONS(3203), - [anon_sym_do] = ACTIONS(3203), - [anon_sym_try] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_debugger] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_throw] = ACTIONS(3203), - [anon_sym_SEMI] = ACTIONS(3303), - [anon_sym_case] = ACTIONS(3203), - [anon_sym_yield] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_LTtemplate_GT] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_class] = ACTIONS(3203), - [anon_sym_async] = ACTIONS(3203), - [anon_sym_function] = ACTIONS(3203), - [anon_sym_new] = ACTIONS(3203), - [anon_sym_using] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_void] = ACTIONS(3203), - [anon_sym_delete] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3203), - [sym_number] = ACTIONS(3203), - [sym_private_property_identifier] = ACTIONS(3203), - [sym_this] = ACTIONS(3203), - [sym_super] = ACTIONS(3203), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [sym_null] = ACTIONS(3203), - [sym_undefined] = ACTIONS(3203), - [anon_sym_AT] = ACTIONS(3203), - [anon_sym_static] = ACTIONS(3203), - [anon_sym_readonly] = ACTIONS(3203), - [anon_sym_get] = ACTIONS(3203), - [anon_sym_set] = ACTIONS(3203), - [anon_sym_declare] = ACTIONS(3203), - [anon_sym_public] = ACTIONS(3203), - [anon_sym_private] = ACTIONS(3203), - [anon_sym_protected] = ACTIONS(3203), - [anon_sym_override] = ACTIONS(3203), - [anon_sym_module] = ACTIONS(3203), - [anon_sym_any] = ACTIONS(3203), - [anon_sym_number] = ACTIONS(3203), - [anon_sym_boolean] = ACTIONS(3203), - [anon_sym_string] = ACTIONS(3203), - [anon_sym_symbol] = ACTIONS(3203), - [anon_sym_object] = ACTIONS(3203), - [anon_sym_abstract] = ACTIONS(3203), - [anon_sym_interface] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [sym__automatic_semicolon] = ACTIONS(3305), + [1113] = { + [sym_comment] = STATE(1113), + [sym_identifier] = ACTIONS(3351), + [anon_sym_export] = ACTIONS(3351), + [anon_sym_default] = ACTIONS(3351), + [anon_sym_type] = ACTIONS(3351), + [anon_sym_namespace] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_RBRACE] = ACTIONS(3351), + [anon_sym_typeof] = ACTIONS(3351), + [anon_sym_import] = ACTIONS(3351), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_var] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_const] = ACTIONS(3351), + [anon_sym_BANG] = ACTIONS(3351), + [anon_sym_else] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_switch] = ACTIONS(3351), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_await] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_break] = ACTIONS(3351), + [anon_sym_continue] = ACTIONS(3351), + [anon_sym_debugger] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_throw] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(3351), + [anon_sym_case] = ACTIONS(3351), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LTtemplate_GT] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_SQUOTE] = ACTIONS(3351), + [anon_sym_class] = ACTIONS(3351), + [anon_sym_async] = ACTIONS(3351), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_using] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_SLASH] = ACTIONS(3351), + [anon_sym_LT] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3351), + [anon_sym_void] = ACTIONS(3351), + [anon_sym_delete] = ACTIONS(3351), + [anon_sym_PLUS_PLUS] = ACTIONS(3351), + [anon_sym_DASH_DASH] = ACTIONS(3351), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3351), + [sym_number] = ACTIONS(3351), + [sym_private_property_identifier] = ACTIONS(3351), + [sym_this] = ACTIONS(3351), + [sym_super] = ACTIONS(3351), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [sym_null] = ACTIONS(3351), + [sym_undefined] = ACTIONS(3351), + [anon_sym_AT] = ACTIONS(3351), + [anon_sym_static] = ACTIONS(3351), + [anon_sym_readonly] = ACTIONS(3351), + [anon_sym_get] = ACTIONS(3351), + [anon_sym_set] = ACTIONS(3351), + [anon_sym_declare] = ACTIONS(3351), + [anon_sym_public] = ACTIONS(3351), + [anon_sym_private] = ACTIONS(3351), + [anon_sym_protected] = ACTIONS(3351), + [anon_sym_override] = ACTIONS(3351), + [anon_sym_module] = ACTIONS(3351), + [anon_sym_any] = ACTIONS(3351), + [anon_sym_number] = ACTIONS(3351), + [anon_sym_boolean] = ACTIONS(3351), + [anon_sym_string] = ACTIONS(3351), + [anon_sym_symbol] = ACTIONS(3351), + [anon_sym_object] = ACTIONS(3351), + [anon_sym_abstract] = ACTIONS(3351), + [anon_sym_interface] = ACTIONS(3351), + [anon_sym_enum] = ACTIONS(3351), [sym_html_comment] = ACTIONS(5), }, - [1120] = { - [sym_comment] = STATE(1120), - [sym_identifier] = ACTIONS(3307), - [anon_sym_export] = ACTIONS(3307), - [anon_sym_default] = ACTIONS(3307), - [anon_sym_type] = ACTIONS(3307), - [anon_sym_namespace] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_RBRACE] = ACTIONS(3307), - [anon_sym_typeof] = ACTIONS(3307), - [anon_sym_import] = ACTIONS(3307), - [anon_sym_with] = ACTIONS(3307), - [anon_sym_var] = ACTIONS(3307), - [anon_sym_let] = ACTIONS(3307), - [anon_sym_const] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3307), - [anon_sym_else] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_switch] = ACTIONS(3307), - [anon_sym_for] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_await] = ACTIONS(3307), - [anon_sym_while] = ACTIONS(3307), - [anon_sym_do] = ACTIONS(3307), - [anon_sym_try] = ACTIONS(3307), - [anon_sym_break] = ACTIONS(3307), - [anon_sym_continue] = ACTIONS(3307), - [anon_sym_debugger] = ACTIONS(3307), - [anon_sym_return] = ACTIONS(3307), - [anon_sym_throw] = ACTIONS(3307), - [anon_sym_SEMI] = ACTIONS(3307), - [anon_sym_case] = ACTIONS(3307), - [anon_sym_yield] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3307), - [anon_sym_LTtemplate_GT] = ACTIONS(3307), - [anon_sym_DQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_class] = ACTIONS(3307), - [anon_sym_async] = ACTIONS(3307), - [anon_sym_function] = ACTIONS(3307), - [anon_sym_new] = ACTIONS(3307), - [anon_sym_using] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3307), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_LT] = ACTIONS(3307), - [anon_sym_TILDE] = ACTIONS(3307), - [anon_sym_void] = ACTIONS(3307), - [anon_sym_delete] = ACTIONS(3307), - [anon_sym_PLUS_PLUS] = ACTIONS(3307), - [anon_sym_DASH_DASH] = ACTIONS(3307), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3307), - [sym_number] = ACTIONS(3307), - [sym_private_property_identifier] = ACTIONS(3307), - [sym_this] = ACTIONS(3307), - [sym_super] = ACTIONS(3307), - [sym_true] = ACTIONS(3307), - [sym_false] = ACTIONS(3307), - [sym_null] = ACTIONS(3307), - [sym_undefined] = ACTIONS(3307), - [anon_sym_AT] = ACTIONS(3307), - [anon_sym_static] = ACTIONS(3307), - [anon_sym_readonly] = ACTIONS(3307), - [anon_sym_get] = ACTIONS(3307), - [anon_sym_set] = ACTIONS(3307), - [anon_sym_declare] = ACTIONS(3307), - [anon_sym_public] = ACTIONS(3307), - [anon_sym_private] = ACTIONS(3307), - [anon_sym_protected] = ACTIONS(3307), - [anon_sym_override] = ACTIONS(3307), - [anon_sym_module] = ACTIONS(3307), - [anon_sym_any] = ACTIONS(3307), - [anon_sym_number] = ACTIONS(3307), - [anon_sym_boolean] = ACTIONS(3307), - [anon_sym_string] = ACTIONS(3307), - [anon_sym_symbol] = ACTIONS(3307), - [anon_sym_object] = ACTIONS(3307), - [anon_sym_abstract] = ACTIONS(3307), - [anon_sym_interface] = ACTIONS(3307), - [anon_sym_enum] = ACTIONS(3307), + [1114] = { + [sym_comment] = STATE(1114), + [sym_identifier] = ACTIONS(3353), + [anon_sym_export] = ACTIONS(3353), + [anon_sym_default] = ACTIONS(3353), + [anon_sym_type] = ACTIONS(3353), + [anon_sym_namespace] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3353), + [anon_sym_RBRACE] = ACTIONS(3353), + [anon_sym_typeof] = ACTIONS(3353), + [anon_sym_import] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3353), + [anon_sym_var] = ACTIONS(3353), + [anon_sym_let] = ACTIONS(3353), + [anon_sym_const] = ACTIONS(3353), + [anon_sym_BANG] = ACTIONS(3353), + [anon_sym_else] = ACTIONS(3353), + [anon_sym_if] = ACTIONS(3353), + [anon_sym_switch] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3353), + [anon_sym_await] = ACTIONS(3353), + [anon_sym_while] = ACTIONS(3353), + [anon_sym_do] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3353), + [anon_sym_break] = ACTIONS(3353), + [anon_sym_continue] = ACTIONS(3353), + [anon_sym_debugger] = ACTIONS(3353), + [anon_sym_return] = ACTIONS(3353), + [anon_sym_throw] = ACTIONS(3353), + [anon_sym_SEMI] = ACTIONS(3353), + [anon_sym_case] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3353), + [anon_sym_LBRACK] = ACTIONS(3353), + [anon_sym_LTtemplate_GT] = ACTIONS(3353), + [anon_sym_DQUOTE] = ACTIONS(3353), + [anon_sym_SQUOTE] = ACTIONS(3353), + [anon_sym_class] = ACTIONS(3353), + [anon_sym_async] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3353), + [anon_sym_using] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3353), + [anon_sym_DASH] = ACTIONS(3353), + [anon_sym_SLASH] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [anon_sym_void] = ACTIONS(3353), + [anon_sym_delete] = ACTIONS(3353), + [anon_sym_PLUS_PLUS] = ACTIONS(3353), + [anon_sym_DASH_DASH] = ACTIONS(3353), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3353), + [sym_number] = ACTIONS(3353), + [sym_private_property_identifier] = ACTIONS(3353), + [sym_this] = ACTIONS(3353), + [sym_super] = ACTIONS(3353), + [sym_true] = ACTIONS(3353), + [sym_false] = ACTIONS(3353), + [sym_null] = ACTIONS(3353), + [sym_undefined] = ACTIONS(3353), + [anon_sym_AT] = ACTIONS(3353), + [anon_sym_static] = ACTIONS(3353), + [anon_sym_readonly] = ACTIONS(3353), + [anon_sym_get] = ACTIONS(3353), + [anon_sym_set] = ACTIONS(3353), + [anon_sym_declare] = ACTIONS(3353), + [anon_sym_public] = ACTIONS(3353), + [anon_sym_private] = ACTIONS(3353), + [anon_sym_protected] = ACTIONS(3353), + [anon_sym_override] = ACTIONS(3353), + [anon_sym_module] = ACTIONS(3353), + [anon_sym_any] = ACTIONS(3353), + [anon_sym_number] = ACTIONS(3353), + [anon_sym_boolean] = ACTIONS(3353), + [anon_sym_string] = ACTIONS(3353), + [anon_sym_symbol] = ACTIONS(3353), + [anon_sym_object] = ACTIONS(3353), + [anon_sym_abstract] = ACTIONS(3353), + [anon_sym_interface] = ACTIONS(3353), + [anon_sym_enum] = ACTIONS(3353), [sym_html_comment] = ACTIONS(5), }, - [1121] = { - [sym_comment] = STATE(1121), - [ts_builtin_sym_end] = ACTIONS(3175), - [sym_identifier] = ACTIONS(3173), - [anon_sym_export] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_namespace] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym_typeof] = ACTIONS(3173), - [anon_sym_import] = ACTIONS(3173), - [anon_sym_with] = ACTIONS(3173), - [anon_sym_var] = ACTIONS(3173), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_else] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_switch] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_await] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_debugger] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_throw] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym_yield] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LTtemplate_GT] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3173), - [anon_sym_class] = ACTIONS(3173), - [anon_sym_async] = ACTIONS(3173), - [anon_sym_function] = ACTIONS(3173), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_using] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_void] = ACTIONS(3173), - [anon_sym_delete] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3173), - [sym_number] = ACTIONS(3173), - [sym_private_property_identifier] = ACTIONS(3173), - [sym_this] = ACTIONS(3173), - [sym_super] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_null] = ACTIONS(3173), - [sym_undefined] = ACTIONS(3173), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_static] = ACTIONS(3173), - [anon_sym_readonly] = ACTIONS(3173), - [anon_sym_get] = ACTIONS(3173), - [anon_sym_set] = ACTIONS(3173), - [anon_sym_declare] = ACTIONS(3173), - [anon_sym_public] = ACTIONS(3173), - [anon_sym_private] = ACTIONS(3173), - [anon_sym_protected] = ACTIONS(3173), - [anon_sym_override] = ACTIONS(3173), - [anon_sym_module] = ACTIONS(3173), - [anon_sym_any] = ACTIONS(3173), - [anon_sym_number] = ACTIONS(3173), - [anon_sym_boolean] = ACTIONS(3173), - [anon_sym_string] = ACTIONS(3173), - [anon_sym_symbol] = ACTIONS(3173), - [anon_sym_object] = ACTIONS(3173), - [anon_sym_abstract] = ACTIONS(3173), - [anon_sym_interface] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3173), - [sym__automatic_semicolon] = ACTIONS(3175), + [1115] = { + [sym_comment] = STATE(1115), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(2164), [sym_html_comment] = ACTIONS(5), }, - [1122] = { - [sym_comment] = STATE(1122), - [sym_identifier] = ACTIONS(2228), - [anon_sym_export] = ACTIONS(2228), - [anon_sym_default] = ACTIONS(2228), - [anon_sym_type] = ACTIONS(2228), - [anon_sym_namespace] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(2228), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym_typeof] = ACTIONS(2228), - [anon_sym_import] = ACTIONS(2228), - [anon_sym_with] = ACTIONS(2228), - [anon_sym_var] = ACTIONS(2228), - [anon_sym_let] = ACTIONS(2228), - [anon_sym_const] = ACTIONS(2228), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_switch] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(2228), - [anon_sym_await] = ACTIONS(2228), - [anon_sym_while] = ACTIONS(2228), - [anon_sym_do] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_debugger] = ACTIONS(2228), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_throw] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2228), - [anon_sym_case] = ACTIONS(2228), - [anon_sym_yield] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2228), - [anon_sym_LTtemplate_GT] = ACTIONS(2228), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_SQUOTE] = ACTIONS(2228), - [anon_sym_class] = ACTIONS(2228), - [anon_sym_async] = ACTIONS(2228), - [anon_sym_function] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2228), - [anon_sym_using] = ACTIONS(2228), - [anon_sym_PLUS] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_SLASH] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_void] = ACTIONS(2228), - [anon_sym_delete] = ACTIONS(2228), - [anon_sym_PLUS_PLUS] = ACTIONS(2228), - [anon_sym_DASH_DASH] = ACTIONS(2228), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2228), - [sym_number] = ACTIONS(2228), - [sym_private_property_identifier] = ACTIONS(2228), - [sym_this] = ACTIONS(2228), - [sym_super] = ACTIONS(2228), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), - [sym_null] = ACTIONS(2228), - [sym_undefined] = ACTIONS(2228), - [anon_sym_AT] = ACTIONS(2228), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_readonly] = ACTIONS(2228), - [anon_sym_get] = ACTIONS(2228), - [anon_sym_set] = ACTIONS(2228), - [anon_sym_declare] = ACTIONS(2228), - [anon_sym_public] = ACTIONS(2228), - [anon_sym_private] = ACTIONS(2228), - [anon_sym_protected] = ACTIONS(2228), - [anon_sym_override] = ACTIONS(2228), - [anon_sym_module] = ACTIONS(2228), - [anon_sym_any] = ACTIONS(2228), - [anon_sym_number] = ACTIONS(2228), - [anon_sym_boolean] = ACTIONS(2228), - [anon_sym_string] = ACTIONS(2228), - [anon_sym_symbol] = ACTIONS(2228), - [anon_sym_object] = ACTIONS(2228), - [anon_sym_abstract] = ACTIONS(2228), - [anon_sym_interface] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(2228), - [sym__automatic_semicolon] = ACTIONS(2344), + [1116] = { + [sym_comment] = STATE(1116), + [sym_identifier] = ACTIONS(3355), + [anon_sym_export] = ACTIONS(3355), + [anon_sym_default] = ACTIONS(3355), + [anon_sym_type] = ACTIONS(3355), + [anon_sym_namespace] = ACTIONS(3355), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_RBRACE] = ACTIONS(3355), + [anon_sym_typeof] = ACTIONS(3355), + [anon_sym_import] = ACTIONS(3355), + [anon_sym_with] = ACTIONS(3355), + [anon_sym_var] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_const] = ACTIONS(3355), + [anon_sym_BANG] = ACTIONS(3355), + [anon_sym_else] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_switch] = ACTIONS(3355), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_await] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_break] = ACTIONS(3355), + [anon_sym_continue] = ACTIONS(3355), + [anon_sym_debugger] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_throw] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_case] = ACTIONS(3355), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LTtemplate_GT] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_SQUOTE] = ACTIONS(3355), + [anon_sym_class] = ACTIONS(3355), + [anon_sym_async] = ACTIONS(3355), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_using] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_SLASH] = ACTIONS(3355), + [anon_sym_LT] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3355), + [anon_sym_void] = ACTIONS(3355), + [anon_sym_delete] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3355), + [sym_number] = ACTIONS(3355), + [sym_private_property_identifier] = ACTIONS(3355), + [sym_this] = ACTIONS(3355), + [sym_super] = ACTIONS(3355), + [sym_true] = ACTIONS(3355), + [sym_false] = ACTIONS(3355), + [sym_null] = ACTIONS(3355), + [sym_undefined] = ACTIONS(3355), + [anon_sym_AT] = ACTIONS(3355), + [anon_sym_static] = ACTIONS(3355), + [anon_sym_readonly] = ACTIONS(3355), + [anon_sym_get] = ACTIONS(3355), + [anon_sym_set] = ACTIONS(3355), + [anon_sym_declare] = ACTIONS(3355), + [anon_sym_public] = ACTIONS(3355), + [anon_sym_private] = ACTIONS(3355), + [anon_sym_protected] = ACTIONS(3355), + [anon_sym_override] = ACTIONS(3355), + [anon_sym_module] = ACTIONS(3355), + [anon_sym_any] = ACTIONS(3355), + [anon_sym_number] = ACTIONS(3355), + [anon_sym_boolean] = ACTIONS(3355), + [anon_sym_string] = ACTIONS(3355), + [anon_sym_symbol] = ACTIONS(3355), + [anon_sym_object] = ACTIONS(3355), + [anon_sym_abstract] = ACTIONS(3355), + [anon_sym_interface] = ACTIONS(3355), + [anon_sym_enum] = ACTIONS(3355), [sym_html_comment] = ACTIONS(5), }, - [1123] = { - [sym_comment] = STATE(1123), - [sym_identifier] = ACTIONS(3309), - [anon_sym_export] = ACTIONS(3309), - [anon_sym_default] = ACTIONS(3309), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_RBRACE] = ACTIONS(3309), - [anon_sym_typeof] = ACTIONS(3309), - [anon_sym_import] = ACTIONS(3309), - [anon_sym_with] = ACTIONS(3309), - [anon_sym_var] = ACTIONS(3309), - [anon_sym_let] = ACTIONS(3309), - [anon_sym_const] = ACTIONS(3309), - [anon_sym_BANG] = ACTIONS(3309), - [anon_sym_else] = ACTIONS(3309), - [anon_sym_if] = ACTIONS(3309), - [anon_sym_switch] = ACTIONS(3309), - [anon_sym_for] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3309), - [anon_sym_await] = ACTIONS(3309), - [anon_sym_while] = ACTIONS(3309), - [anon_sym_do] = ACTIONS(3309), - [anon_sym_try] = ACTIONS(3309), - [anon_sym_break] = ACTIONS(3309), - [anon_sym_continue] = ACTIONS(3309), - [anon_sym_debugger] = ACTIONS(3309), - [anon_sym_return] = ACTIONS(3309), - [anon_sym_throw] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3309), - [anon_sym_case] = ACTIONS(3309), - [anon_sym_yield] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_LTtemplate_GT] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_function] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_using] = ACTIONS(3309), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_SLASH] = ACTIONS(3309), - [anon_sym_LT] = ACTIONS(3309), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_void] = ACTIONS(3309), - [anon_sym_delete] = ACTIONS(3309), - [anon_sym_PLUS_PLUS] = ACTIONS(3309), - [anon_sym_DASH_DASH] = ACTIONS(3309), + [1117] = { + [sym_comment] = STATE(1117), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3309), - [sym_number] = ACTIONS(3309), - [sym_private_property_identifier] = ACTIONS(3309), - [sym_this] = ACTIONS(3309), - [sym_super] = ACTIONS(3309), - [sym_true] = ACTIONS(3309), - [sym_false] = ACTIONS(3309), - [sym_null] = ACTIONS(3309), - [sym_undefined] = ACTIONS(3309), - [anon_sym_AT] = ACTIONS(3309), - [anon_sym_static] = ACTIONS(3309), - [anon_sym_readonly] = ACTIONS(3309), - [anon_sym_get] = ACTIONS(3309), - [anon_sym_set] = ACTIONS(3309), - [anon_sym_declare] = ACTIONS(3309), - [anon_sym_public] = ACTIONS(3309), - [anon_sym_private] = ACTIONS(3309), - [anon_sym_protected] = ACTIONS(3309), - [anon_sym_override] = ACTIONS(3309), - [anon_sym_module] = ACTIONS(3309), - [anon_sym_any] = ACTIONS(3309), - [anon_sym_number] = ACTIONS(3309), - [anon_sym_boolean] = ACTIONS(3309), - [anon_sym_string] = ACTIONS(3309), - [anon_sym_symbol] = ACTIONS(3309), - [anon_sym_object] = ACTIONS(3309), - [anon_sym_abstract] = ACTIONS(3309), - [anon_sym_interface] = ACTIONS(3309), - [anon_sym_enum] = ACTIONS(3309), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1124] = { - [sym_comment] = STATE(1124), - [sym_identifier] = ACTIONS(3311), - [anon_sym_export] = ACTIONS(3311), - [anon_sym_default] = ACTIONS(3311), - [anon_sym_type] = ACTIONS(3311), - [anon_sym_namespace] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_typeof] = ACTIONS(3311), - [anon_sym_import] = ACTIONS(3311), - [anon_sym_with] = ACTIONS(3311), - [anon_sym_var] = ACTIONS(3311), - [anon_sym_let] = ACTIONS(3311), - [anon_sym_const] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_else] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_switch] = ACTIONS(3311), - [anon_sym_for] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_await] = ACTIONS(3311), - [anon_sym_while] = ACTIONS(3311), - [anon_sym_do] = ACTIONS(3311), - [anon_sym_try] = ACTIONS(3311), - [anon_sym_break] = ACTIONS(3311), - [anon_sym_continue] = ACTIONS(3311), - [anon_sym_debugger] = ACTIONS(3311), - [anon_sym_return] = ACTIONS(3311), - [anon_sym_throw] = ACTIONS(3311), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym_case] = ACTIONS(3311), - [anon_sym_yield] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3311), - [anon_sym_LTtemplate_GT] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_class] = ACTIONS(3311), - [anon_sym_async] = ACTIONS(3311), - [anon_sym_function] = ACTIONS(3311), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_using] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_SLASH] = ACTIONS(3311), - [anon_sym_LT] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_void] = ACTIONS(3311), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_DASH_DASH] = ACTIONS(3311), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3311), - [sym_number] = ACTIONS(3311), - [sym_private_property_identifier] = ACTIONS(3311), - [sym_this] = ACTIONS(3311), - [sym_super] = ACTIONS(3311), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_null] = ACTIONS(3311), - [sym_undefined] = ACTIONS(3311), - [anon_sym_AT] = ACTIONS(3311), - [anon_sym_static] = ACTIONS(3311), - [anon_sym_readonly] = ACTIONS(3311), - [anon_sym_get] = ACTIONS(3311), - [anon_sym_set] = ACTIONS(3311), - [anon_sym_declare] = ACTIONS(3311), - [anon_sym_public] = ACTIONS(3311), - [anon_sym_private] = ACTIONS(3311), - [anon_sym_protected] = ACTIONS(3311), - [anon_sym_override] = ACTIONS(3311), - [anon_sym_module] = ACTIONS(3311), - [anon_sym_any] = ACTIONS(3311), - [anon_sym_number] = ACTIONS(3311), - [anon_sym_boolean] = ACTIONS(3311), - [anon_sym_string] = ACTIONS(3311), - [anon_sym_symbol] = ACTIONS(3311), - [anon_sym_object] = ACTIONS(3311), - [anon_sym_abstract] = ACTIONS(3311), - [anon_sym_interface] = ACTIONS(3311), - [anon_sym_enum] = ACTIONS(3311), + [1118] = { + [sym_comment] = STATE(1118), + [sym_identifier] = ACTIONS(3357), + [anon_sym_export] = ACTIONS(3357), + [anon_sym_default] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3357), + [anon_sym_namespace] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3357), + [anon_sym_typeof] = ACTIONS(3357), + [anon_sym_import] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3357), + [anon_sym_var] = ACTIONS(3357), + [anon_sym_let] = ACTIONS(3357), + [anon_sym_const] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3357), + [anon_sym_else] = ACTIONS(3357), + [anon_sym_if] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_await] = ACTIONS(3357), + [anon_sym_while] = ACTIONS(3357), + [anon_sym_do] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3357), + [anon_sym_break] = ACTIONS(3357), + [anon_sym_continue] = ACTIONS(3357), + [anon_sym_debugger] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3357), + [anon_sym_throw] = ACTIONS(3357), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_case] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_LTtemplate_GT] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_class] = ACTIONS(3357), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3357), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_void] = ACTIONS(3357), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3357), + [sym_number] = ACTIONS(3357), + [sym_private_property_identifier] = ACTIONS(3357), + [sym_this] = ACTIONS(3357), + [sym_super] = ACTIONS(3357), + [sym_true] = ACTIONS(3357), + [sym_false] = ACTIONS(3357), + [sym_null] = ACTIONS(3357), + [sym_undefined] = ACTIONS(3357), + [anon_sym_AT] = ACTIONS(3357), + [anon_sym_static] = ACTIONS(3357), + [anon_sym_readonly] = ACTIONS(3357), + [anon_sym_get] = ACTIONS(3357), + [anon_sym_set] = ACTIONS(3357), + [anon_sym_declare] = ACTIONS(3357), + [anon_sym_public] = ACTIONS(3357), + [anon_sym_private] = ACTIONS(3357), + [anon_sym_protected] = ACTIONS(3357), + [anon_sym_override] = ACTIONS(3357), + [anon_sym_module] = ACTIONS(3357), + [anon_sym_any] = ACTIONS(3357), + [anon_sym_number] = ACTIONS(3357), + [anon_sym_boolean] = ACTIONS(3357), + [anon_sym_string] = ACTIONS(3357), + [anon_sym_symbol] = ACTIONS(3357), + [anon_sym_object] = ACTIONS(3357), + [anon_sym_abstract] = ACTIONS(3357), + [anon_sym_interface] = ACTIONS(3357), + [anon_sym_enum] = ACTIONS(3357), + [sym_html_comment] = ACTIONS(5), + }, + [1119] = { + [sym_comment] = STATE(1119), + [sym_identifier] = ACTIONS(3359), + [anon_sym_export] = ACTIONS(3359), + [anon_sym_default] = ACTIONS(3359), + [anon_sym_type] = ACTIONS(3359), + [anon_sym_namespace] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3359), + [anon_sym_RBRACE] = ACTIONS(3359), + [anon_sym_typeof] = ACTIONS(3359), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_with] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [anon_sym_let] = ACTIONS(3359), + [anon_sym_const] = ACTIONS(3359), + [anon_sym_BANG] = ACTIONS(3359), + [anon_sym_else] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3359), + [anon_sym_await] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_debugger] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_case] = ACTIONS(3359), + [anon_sym_yield] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3359), + [anon_sym_LTtemplate_GT] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_SQUOTE] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_async] = ACTIONS(3359), + [anon_sym_function] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3359), + [anon_sym_void] = ACTIONS(3359), + [anon_sym_delete] = ACTIONS(3359), + [anon_sym_PLUS_PLUS] = ACTIONS(3359), + [anon_sym_DASH_DASH] = ACTIONS(3359), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3359), + [sym_number] = ACTIONS(3359), + [sym_private_property_identifier] = ACTIONS(3359), + [sym_this] = ACTIONS(3359), + [sym_super] = ACTIONS(3359), + [sym_true] = ACTIONS(3359), + [sym_false] = ACTIONS(3359), + [sym_null] = ACTIONS(3359), + [sym_undefined] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_readonly] = ACTIONS(3359), + [anon_sym_get] = ACTIONS(3359), + [anon_sym_set] = ACTIONS(3359), + [anon_sym_declare] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_protected] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_module] = ACTIONS(3359), + [anon_sym_any] = ACTIONS(3359), + [anon_sym_number] = ACTIONS(3359), + [anon_sym_boolean] = ACTIONS(3359), + [anon_sym_string] = ACTIONS(3359), + [anon_sym_symbol] = ACTIONS(3359), + [anon_sym_object] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), + [sym_html_comment] = ACTIONS(5), + }, + [1120] = { + [sym_comment] = STATE(1120), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_finally] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym_html_comment] = ACTIONS(5), + }, + [1121] = { + [sym_comment] = STATE(1121), + [sym_identifier] = ACTIONS(3357), + [anon_sym_export] = ACTIONS(3357), + [anon_sym_default] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3357), + [anon_sym_namespace] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3357), + [anon_sym_typeof] = ACTIONS(3357), + [anon_sym_import] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3357), + [anon_sym_var] = ACTIONS(3357), + [anon_sym_let] = ACTIONS(3357), + [anon_sym_const] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3357), + [anon_sym_else] = ACTIONS(3357), + [anon_sym_if] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_await] = ACTIONS(3357), + [anon_sym_while] = ACTIONS(3357), + [anon_sym_do] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3357), + [anon_sym_break] = ACTIONS(3357), + [anon_sym_continue] = ACTIONS(3357), + [anon_sym_debugger] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3357), + [anon_sym_throw] = ACTIONS(3357), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_case] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_LTtemplate_GT] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_class] = ACTIONS(3357), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3357), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_void] = ACTIONS(3357), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3357), + [sym_number] = ACTIONS(3357), + [sym_private_property_identifier] = ACTIONS(3357), + [sym_this] = ACTIONS(3357), + [sym_super] = ACTIONS(3357), + [sym_true] = ACTIONS(3357), + [sym_false] = ACTIONS(3357), + [sym_null] = ACTIONS(3357), + [sym_undefined] = ACTIONS(3357), + [anon_sym_AT] = ACTIONS(3357), + [anon_sym_static] = ACTIONS(3357), + [anon_sym_readonly] = ACTIONS(3357), + [anon_sym_get] = ACTIONS(3357), + [anon_sym_set] = ACTIONS(3357), + [anon_sym_declare] = ACTIONS(3357), + [anon_sym_public] = ACTIONS(3357), + [anon_sym_private] = ACTIONS(3357), + [anon_sym_protected] = ACTIONS(3357), + [anon_sym_override] = ACTIONS(3357), + [anon_sym_module] = ACTIONS(3357), + [anon_sym_any] = ACTIONS(3357), + [anon_sym_number] = ACTIONS(3357), + [anon_sym_boolean] = ACTIONS(3357), + [anon_sym_string] = ACTIONS(3357), + [anon_sym_symbol] = ACTIONS(3357), + [anon_sym_object] = ACTIONS(3357), + [anon_sym_abstract] = ACTIONS(3357), + [anon_sym_interface] = ACTIONS(3357), + [anon_sym_enum] = ACTIONS(3357), + [sym_html_comment] = ACTIONS(5), + }, + [1122] = { + [sym_comment] = STATE(1122), + [sym_identifier] = ACTIONS(3361), + [anon_sym_export] = ACTIONS(3361), + [anon_sym_default] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_typeof] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3361), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_var] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_const] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_else] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_await] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_break] = ACTIONS(3361), + [anon_sym_continue] = ACTIONS(3361), + [anon_sym_debugger] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_throw] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_case] = ACTIONS(3361), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LTtemplate_GT] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_SQUOTE] = ACTIONS(3361), + [anon_sym_class] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_void] = ACTIONS(3361), + [anon_sym_delete] = ACTIONS(3361), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3361), + [sym_number] = ACTIONS(3361), + [sym_private_property_identifier] = ACTIONS(3361), + [sym_this] = ACTIONS(3361), + [sym_super] = ACTIONS(3361), + [sym_true] = ACTIONS(3361), + [sym_false] = ACTIONS(3361), + [sym_null] = ACTIONS(3361), + [sym_undefined] = ACTIONS(3361), + [anon_sym_AT] = ACTIONS(3361), + [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_abstract] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(3361), + [sym_html_comment] = ACTIONS(5), + }, + [1123] = { + [sym_comment] = STATE(1123), + [sym_identifier] = ACTIONS(3363), + [anon_sym_export] = ACTIONS(3363), + [anon_sym_default] = ACTIONS(3363), + [anon_sym_type] = ACTIONS(3363), + [anon_sym_namespace] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3363), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_typeof] = ACTIONS(3363), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_const] = ACTIONS(3363), + [anon_sym_BANG] = ACTIONS(3363), + [anon_sym_else] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_await] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_debugger] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3363), + [anon_sym_case] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3363), + [anon_sym_LTtemplate_GT] = ACTIONS(3363), + [anon_sym_DQUOTE] = ACTIONS(3363), + [anon_sym_SQUOTE] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_async] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [anon_sym_void] = ACTIONS(3363), + [anon_sym_delete] = ACTIONS(3363), + [anon_sym_PLUS_PLUS] = ACTIONS(3363), + [anon_sym_DASH_DASH] = ACTIONS(3363), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3363), + [sym_number] = ACTIONS(3363), + [sym_private_property_identifier] = ACTIONS(3363), + [sym_this] = ACTIONS(3363), + [sym_super] = ACTIONS(3363), + [sym_true] = ACTIONS(3363), + [sym_false] = ACTIONS(3363), + [sym_null] = ACTIONS(3363), + [sym_undefined] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_get] = ACTIONS(3363), + [anon_sym_set] = ACTIONS(3363), + [anon_sym_declare] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_protected] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_module] = ACTIONS(3363), + [anon_sym_any] = ACTIONS(3363), + [anon_sym_number] = ACTIONS(3363), + [anon_sym_boolean] = ACTIONS(3363), + [anon_sym_string] = ACTIONS(3363), + [anon_sym_symbol] = ACTIONS(3363), + [anon_sym_object] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), + [sym_html_comment] = ACTIONS(5), + }, + [1124] = { + [sym_comment] = STATE(1124), + [sym_identifier] = ACTIONS(2152), + [anon_sym_export] = ACTIONS(2152), + [anon_sym_default] = ACTIONS(2152), + [anon_sym_type] = ACTIONS(2152), + [anon_sym_namespace] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_typeof] = ACTIONS(2152), + [anon_sym_import] = ACTIONS(2152), + [anon_sym_with] = ACTIONS(2152), + [anon_sym_var] = ACTIONS(2152), + [anon_sym_let] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_switch] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_await] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_debugger] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_throw] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_case] = ACTIONS(2152), + [anon_sym_yield] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_LTtemplate_GT] = ACTIONS(2152), + [anon_sym_DQUOTE] = ACTIONS(2152), + [anon_sym_SQUOTE] = ACTIONS(2152), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2152), + [anon_sym_function] = ACTIONS(2152), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_using] = ACTIONS(2152), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_SLASH] = ACTIONS(2152), + [anon_sym_LT] = ACTIONS(2152), + [anon_sym_TILDE] = ACTIONS(2152), + [anon_sym_void] = ACTIONS(2152), + [anon_sym_delete] = ACTIONS(2152), + [anon_sym_PLUS_PLUS] = ACTIONS(2152), + [anon_sym_DASH_DASH] = ACTIONS(2152), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2152), + [sym_number] = ACTIONS(2152), + [sym_private_property_identifier] = ACTIONS(2152), + [sym_this] = ACTIONS(2152), + [sym_super] = ACTIONS(2152), + [sym_true] = ACTIONS(2152), + [sym_false] = ACTIONS(2152), + [sym_null] = ACTIONS(2152), + [sym_undefined] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(2152), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_readonly] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2152), + [anon_sym_set] = ACTIONS(2152), + [anon_sym_declare] = ACTIONS(2152), + [anon_sym_public] = ACTIONS(2152), + [anon_sym_private] = ACTIONS(2152), + [anon_sym_protected] = ACTIONS(2152), + [anon_sym_override] = ACTIONS(2152), + [anon_sym_module] = ACTIONS(2152), + [anon_sym_any] = ACTIONS(2152), + [anon_sym_number] = ACTIONS(2152), + [anon_sym_boolean] = ACTIONS(2152), + [anon_sym_string] = ACTIONS(2152), + [anon_sym_symbol] = ACTIONS(2152), + [anon_sym_object] = ACTIONS(2152), + [anon_sym_abstract] = ACTIONS(2152), + [anon_sym_interface] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + [sym__automatic_semicolon] = ACTIONS(2384), [sym_html_comment] = ACTIONS(5), }, [1125] = { [sym_comment] = STATE(1125), - [sym_identifier] = ACTIONS(3313), - [anon_sym_export] = ACTIONS(3313), - [anon_sym_default] = ACTIONS(3313), - [anon_sym_type] = ACTIONS(3313), - [anon_sym_namespace] = ACTIONS(3313), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_RBRACE] = ACTIONS(3313), - [anon_sym_typeof] = ACTIONS(3313), - [anon_sym_import] = ACTIONS(3313), - [anon_sym_with] = ACTIONS(3313), - [anon_sym_var] = ACTIONS(3313), - [anon_sym_let] = ACTIONS(3313), - [anon_sym_const] = ACTIONS(3313), - [anon_sym_BANG] = ACTIONS(3313), - [anon_sym_else] = ACTIONS(3313), - [anon_sym_if] = ACTIONS(3313), - [anon_sym_switch] = ACTIONS(3313), - [anon_sym_for] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3313), - [anon_sym_await] = ACTIONS(3313), - [anon_sym_while] = ACTIONS(3313), - [anon_sym_do] = ACTIONS(3313), - [anon_sym_try] = ACTIONS(3313), - [anon_sym_break] = ACTIONS(3313), - [anon_sym_continue] = ACTIONS(3313), - [anon_sym_debugger] = ACTIONS(3313), - [anon_sym_return] = ACTIONS(3313), - [anon_sym_throw] = ACTIONS(3313), - [anon_sym_SEMI] = ACTIONS(3313), - [anon_sym_case] = ACTIONS(3313), - [anon_sym_yield] = ACTIONS(3313), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LTtemplate_GT] = ACTIONS(3313), - [anon_sym_DQUOTE] = ACTIONS(3313), - [anon_sym_SQUOTE] = ACTIONS(3313), - [anon_sym_class] = ACTIONS(3313), - [anon_sym_async] = ACTIONS(3313), - [anon_sym_function] = ACTIONS(3313), - [anon_sym_new] = ACTIONS(3313), - [anon_sym_using] = ACTIONS(3313), - [anon_sym_PLUS] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(3313), - [anon_sym_SLASH] = ACTIONS(3313), - [anon_sym_LT] = ACTIONS(3313), - [anon_sym_TILDE] = ACTIONS(3313), - [anon_sym_void] = ACTIONS(3313), - [anon_sym_delete] = ACTIONS(3313), - [anon_sym_PLUS_PLUS] = ACTIONS(3313), - [anon_sym_DASH_DASH] = ACTIONS(3313), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3313), - [sym_number] = ACTIONS(3313), - [sym_private_property_identifier] = ACTIONS(3313), - [sym_this] = ACTIONS(3313), - [sym_super] = ACTIONS(3313), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [sym_null] = ACTIONS(3313), - [sym_undefined] = ACTIONS(3313), - [anon_sym_AT] = ACTIONS(3313), - [anon_sym_static] = ACTIONS(3313), - [anon_sym_readonly] = ACTIONS(3313), - [anon_sym_get] = ACTIONS(3313), - [anon_sym_set] = ACTIONS(3313), - [anon_sym_declare] = ACTIONS(3313), - [anon_sym_public] = ACTIONS(3313), - [anon_sym_private] = ACTIONS(3313), - [anon_sym_protected] = ACTIONS(3313), - [anon_sym_override] = ACTIONS(3313), - [anon_sym_module] = ACTIONS(3313), - [anon_sym_any] = ACTIONS(3313), - [anon_sym_number] = ACTIONS(3313), - [anon_sym_boolean] = ACTIONS(3313), - [anon_sym_string] = ACTIONS(3313), - [anon_sym_symbol] = ACTIONS(3313), - [anon_sym_object] = ACTIONS(3313), - [anon_sym_abstract] = ACTIONS(3313), - [anon_sym_interface] = ACTIONS(3313), - [anon_sym_enum] = ACTIONS(3313), + [sym_identifier] = ACTIONS(3365), + [anon_sym_export] = ACTIONS(3365), + [anon_sym_default] = ACTIONS(3365), + [anon_sym_type] = ACTIONS(3365), + [anon_sym_namespace] = ACTIONS(3365), + [anon_sym_LBRACE] = ACTIONS(3365), + [anon_sym_RBRACE] = ACTIONS(3365), + [anon_sym_typeof] = ACTIONS(3365), + [anon_sym_import] = ACTIONS(3365), + [anon_sym_with] = ACTIONS(3365), + [anon_sym_var] = ACTIONS(3365), + [anon_sym_let] = ACTIONS(3365), + [anon_sym_const] = ACTIONS(3365), + [anon_sym_BANG] = ACTIONS(3365), + [anon_sym_else] = ACTIONS(3365), + [anon_sym_if] = ACTIONS(3365), + [anon_sym_switch] = ACTIONS(3365), + [anon_sym_for] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_await] = ACTIONS(3365), + [anon_sym_while] = ACTIONS(3365), + [anon_sym_do] = ACTIONS(3365), + [anon_sym_try] = ACTIONS(3365), + [anon_sym_break] = ACTIONS(3365), + [anon_sym_continue] = ACTIONS(3365), + [anon_sym_debugger] = ACTIONS(3365), + [anon_sym_return] = ACTIONS(3365), + [anon_sym_throw] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3365), + [anon_sym_case] = ACTIONS(3365), + [anon_sym_yield] = ACTIONS(3365), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LTtemplate_GT] = ACTIONS(3365), + [anon_sym_DQUOTE] = ACTIONS(3365), + [anon_sym_SQUOTE] = ACTIONS(3365), + [anon_sym_class] = ACTIONS(3365), + [anon_sym_async] = ACTIONS(3365), + [anon_sym_function] = ACTIONS(3365), + [anon_sym_new] = ACTIONS(3365), + [anon_sym_using] = ACTIONS(3365), + [anon_sym_PLUS] = ACTIONS(3365), + [anon_sym_DASH] = ACTIONS(3365), + [anon_sym_SLASH] = ACTIONS(3365), + [anon_sym_LT] = ACTIONS(3365), + [anon_sym_TILDE] = ACTIONS(3365), + [anon_sym_void] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3365), + [anon_sym_PLUS_PLUS] = ACTIONS(3365), + [anon_sym_DASH_DASH] = ACTIONS(3365), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3365), + [sym_number] = ACTIONS(3365), + [sym_private_property_identifier] = ACTIONS(3365), + [sym_this] = ACTIONS(3365), + [sym_super] = ACTIONS(3365), + [sym_true] = ACTIONS(3365), + [sym_false] = ACTIONS(3365), + [sym_null] = ACTIONS(3365), + [sym_undefined] = ACTIONS(3365), + [anon_sym_AT] = ACTIONS(3365), + [anon_sym_static] = ACTIONS(3365), + [anon_sym_readonly] = ACTIONS(3365), + [anon_sym_get] = ACTIONS(3365), + [anon_sym_set] = ACTIONS(3365), + [anon_sym_declare] = ACTIONS(3365), + [anon_sym_public] = ACTIONS(3365), + [anon_sym_private] = ACTIONS(3365), + [anon_sym_protected] = ACTIONS(3365), + [anon_sym_override] = ACTIONS(3365), + [anon_sym_module] = ACTIONS(3365), + [anon_sym_any] = ACTIONS(3365), + [anon_sym_number] = ACTIONS(3365), + [anon_sym_boolean] = ACTIONS(3365), + [anon_sym_string] = ACTIONS(3365), + [anon_sym_symbol] = ACTIONS(3365), + [anon_sym_object] = ACTIONS(3365), + [anon_sym_abstract] = ACTIONS(3365), + [anon_sym_interface] = ACTIONS(3365), + [anon_sym_enum] = ACTIONS(3365), [sym_html_comment] = ACTIONS(5), }, [1126] = { [sym_comment] = STATE(1126), - [sym_identifier] = ACTIONS(3315), - [anon_sym_export] = ACTIONS(3315), - [anon_sym_default] = ACTIONS(3315), - [anon_sym_type] = ACTIONS(3315), - [anon_sym_namespace] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_typeof] = ACTIONS(3315), - [anon_sym_import] = ACTIONS(3315), - [anon_sym_with] = ACTIONS(3315), - [anon_sym_var] = ACTIONS(3315), - [anon_sym_let] = ACTIONS(3315), - [anon_sym_const] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_else] = ACTIONS(3315), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_switch] = ACTIONS(3315), - [anon_sym_for] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_await] = ACTIONS(3315), - [anon_sym_while] = ACTIONS(3315), - [anon_sym_do] = ACTIONS(3315), - [anon_sym_try] = ACTIONS(3315), - [anon_sym_break] = ACTIONS(3315), - [anon_sym_continue] = ACTIONS(3315), - [anon_sym_debugger] = ACTIONS(3315), - [anon_sym_return] = ACTIONS(3315), - [anon_sym_throw] = ACTIONS(3315), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym_case] = ACTIONS(3315), - [anon_sym_yield] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3315), - [anon_sym_LTtemplate_GT] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3315), - [anon_sym_class] = ACTIONS(3315), - [anon_sym_async] = ACTIONS(3315), - [anon_sym_function] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(3315), - [anon_sym_using] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_SLASH] = ACTIONS(3315), - [anon_sym_LT] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3315), - [anon_sym_void] = ACTIONS(3315), - [anon_sym_delete] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_DASH_DASH] = ACTIONS(3315), + [sym_identifier] = ACTIONS(3367), + [anon_sym_export] = ACTIONS(3367), + [anon_sym_default] = ACTIONS(3367), + [anon_sym_type] = ACTIONS(3367), + [anon_sym_namespace] = ACTIONS(3367), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_typeof] = ACTIONS(3367), + [anon_sym_import] = ACTIONS(3367), + [anon_sym_with] = ACTIONS(3367), + [anon_sym_var] = ACTIONS(3367), + [anon_sym_let] = ACTIONS(3367), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(3367), + [anon_sym_else] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), + [anon_sym_switch] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_await] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_do] = ACTIONS(3367), + [anon_sym_try] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_debugger] = ACTIONS(3367), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_throw] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3367), + [anon_sym_case] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [anon_sym_LTtemplate_GT] = ACTIONS(3367), + [anon_sym_DQUOTE] = ACTIONS(3367), + [anon_sym_SQUOTE] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_function] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_using] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(3367), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_TILDE] = ACTIONS(3367), + [anon_sym_void] = ACTIONS(3367), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_PLUS_PLUS] = ACTIONS(3367), + [anon_sym_DASH_DASH] = ACTIONS(3367), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3315), - [sym_number] = ACTIONS(3315), - [sym_private_property_identifier] = ACTIONS(3315), - [sym_this] = ACTIONS(3315), - [sym_super] = ACTIONS(3315), - [sym_true] = ACTIONS(3315), - [sym_false] = ACTIONS(3315), - [sym_null] = ACTIONS(3315), - [sym_undefined] = ACTIONS(3315), - [anon_sym_AT] = ACTIONS(3315), - [anon_sym_static] = ACTIONS(3315), - [anon_sym_readonly] = ACTIONS(3315), - [anon_sym_get] = ACTIONS(3315), - [anon_sym_set] = ACTIONS(3315), - [anon_sym_declare] = ACTIONS(3315), - [anon_sym_public] = ACTIONS(3315), - [anon_sym_private] = ACTIONS(3315), - [anon_sym_protected] = ACTIONS(3315), - [anon_sym_override] = ACTIONS(3315), - [anon_sym_module] = ACTIONS(3315), - [anon_sym_any] = ACTIONS(3315), - [anon_sym_number] = ACTIONS(3315), - [anon_sym_boolean] = ACTIONS(3315), - [anon_sym_string] = ACTIONS(3315), - [anon_sym_symbol] = ACTIONS(3315), - [anon_sym_object] = ACTIONS(3315), - [anon_sym_abstract] = ACTIONS(3315), - [anon_sym_interface] = ACTIONS(3315), - [anon_sym_enum] = ACTIONS(3315), + [anon_sym_BQUOTE] = ACTIONS(3367), + [sym_number] = ACTIONS(3367), + [sym_private_property_identifier] = ACTIONS(3367), + [sym_this] = ACTIONS(3367), + [sym_super] = ACTIONS(3367), + [sym_true] = ACTIONS(3367), + [sym_false] = ACTIONS(3367), + [sym_null] = ACTIONS(3367), + [sym_undefined] = ACTIONS(3367), + [anon_sym_AT] = ACTIONS(3367), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_get] = ACTIONS(3367), + [anon_sym_set] = ACTIONS(3367), + [anon_sym_declare] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3367), + [anon_sym_module] = ACTIONS(3367), + [anon_sym_any] = ACTIONS(3367), + [anon_sym_number] = ACTIONS(3367), + [anon_sym_boolean] = ACTIONS(3367), + [anon_sym_string] = ACTIONS(3367), + [anon_sym_symbol] = ACTIONS(3367), + [anon_sym_object] = ACTIONS(3367), + [anon_sym_abstract] = ACTIONS(3367), + [anon_sym_interface] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), [sym_html_comment] = ACTIONS(5), }, [1127] = { [sym_comment] = STATE(1127), - [ts_builtin_sym_end] = ACTIONS(2248), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_namespace] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2246), - [anon_sym_import] = ACTIONS(2246), - [anon_sym_with] = ACTIONS(2246), - [anon_sym_var] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_debugger] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_throw] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_catch] = ACTIONS(2246), - [anon_sym_finally] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LTtemplate_GT] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_class] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2246), - [anon_sym_delete] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_private_property_identifier] = ACTIONS(2246), - [sym_this] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_undefined] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_readonly] = ACTIONS(2246), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_declare] = ACTIONS(2246), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_override] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_any] = ACTIONS(2246), - [anon_sym_number] = ACTIONS(2246), - [anon_sym_boolean] = ACTIONS(2246), - [anon_sym_string] = ACTIONS(2246), - [anon_sym_symbol] = ACTIONS(2246), - [anon_sym_object] = ACTIONS(2246), - [anon_sym_abstract] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), + [sym_identifier] = ACTIONS(3367), + [anon_sym_export] = ACTIONS(3367), + [anon_sym_default] = ACTIONS(3367), + [anon_sym_type] = ACTIONS(3367), + [anon_sym_namespace] = ACTIONS(3367), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_typeof] = ACTIONS(3367), + [anon_sym_import] = ACTIONS(3367), + [anon_sym_with] = ACTIONS(3367), + [anon_sym_var] = ACTIONS(3367), + [anon_sym_let] = ACTIONS(3367), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(3367), + [anon_sym_else] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), + [anon_sym_switch] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_await] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_do] = ACTIONS(3367), + [anon_sym_try] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_debugger] = ACTIONS(3367), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_throw] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3367), + [anon_sym_case] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [anon_sym_LTtemplate_GT] = ACTIONS(3367), + [anon_sym_DQUOTE] = ACTIONS(3367), + [anon_sym_SQUOTE] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_function] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_using] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(3367), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_TILDE] = ACTIONS(3367), + [anon_sym_void] = ACTIONS(3367), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_PLUS_PLUS] = ACTIONS(3367), + [anon_sym_DASH_DASH] = ACTIONS(3367), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3367), + [sym_number] = ACTIONS(3367), + [sym_private_property_identifier] = ACTIONS(3367), + [sym_this] = ACTIONS(3367), + [sym_super] = ACTIONS(3367), + [sym_true] = ACTIONS(3367), + [sym_false] = ACTIONS(3367), + [sym_null] = ACTIONS(3367), + [sym_undefined] = ACTIONS(3367), + [anon_sym_AT] = ACTIONS(3367), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_get] = ACTIONS(3367), + [anon_sym_set] = ACTIONS(3367), + [anon_sym_declare] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3367), + [anon_sym_module] = ACTIONS(3367), + [anon_sym_any] = ACTIONS(3367), + [anon_sym_number] = ACTIONS(3367), + [anon_sym_boolean] = ACTIONS(3367), + [anon_sym_string] = ACTIONS(3367), + [anon_sym_symbol] = ACTIONS(3367), + [anon_sym_object] = ACTIONS(3367), + [anon_sym_abstract] = ACTIONS(3367), + [anon_sym_interface] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), [sym_html_comment] = ACTIONS(5), }, [1128] = { [sym_comment] = STATE(1128), - [sym_identifier] = ACTIONS(3317), - [anon_sym_export] = ACTIONS(3317), - [anon_sym_default] = ACTIONS(3317), - [anon_sym_type] = ACTIONS(3317), - [anon_sym_namespace] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_typeof] = ACTIONS(3317), - [anon_sym_import] = ACTIONS(3317), - [anon_sym_with] = ACTIONS(3317), - [anon_sym_var] = ACTIONS(3317), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_const] = ACTIONS(3317), - [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_else] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3317), - [anon_sym_switch] = ACTIONS(3317), - [anon_sym_for] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_await] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3317), - [anon_sym_do] = ACTIONS(3317), - [anon_sym_try] = ACTIONS(3317), - [anon_sym_break] = ACTIONS(3317), - [anon_sym_continue] = ACTIONS(3317), - [anon_sym_debugger] = ACTIONS(3317), - [anon_sym_return] = ACTIONS(3317), - [anon_sym_throw] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_case] = ACTIONS(3317), - [anon_sym_yield] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_LTtemplate_GT] = ACTIONS(3317), - [anon_sym_DQUOTE] = ACTIONS(3317), - [anon_sym_SQUOTE] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_async] = ACTIONS(3317), - [anon_sym_function] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_using] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_void] = ACTIONS(3317), - [anon_sym_delete] = ACTIONS(3317), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3317), + [sym_identifier] = ACTIONS(3369), + [anon_sym_export] = ACTIONS(3369), + [anon_sym_default] = ACTIONS(3369), + [anon_sym_type] = ACTIONS(3369), + [anon_sym_namespace] = ACTIONS(3369), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_RBRACE] = ACTIONS(3369), + [anon_sym_typeof] = ACTIONS(3369), + [anon_sym_import] = ACTIONS(3369), + [anon_sym_with] = ACTIONS(3369), + [anon_sym_var] = ACTIONS(3369), + [anon_sym_let] = ACTIONS(3369), + [anon_sym_const] = ACTIONS(3369), + [anon_sym_BANG] = ACTIONS(3369), + [anon_sym_else] = ACTIONS(3369), + [anon_sym_if] = ACTIONS(3369), + [anon_sym_switch] = ACTIONS(3369), + [anon_sym_for] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_await] = ACTIONS(3369), + [anon_sym_while] = ACTIONS(3369), + [anon_sym_do] = ACTIONS(3369), + [anon_sym_try] = ACTIONS(3369), + [anon_sym_break] = ACTIONS(3369), + [anon_sym_continue] = ACTIONS(3369), + [anon_sym_debugger] = ACTIONS(3369), + [anon_sym_return] = ACTIONS(3369), + [anon_sym_throw] = ACTIONS(3369), + [anon_sym_SEMI] = ACTIONS(3369), + [anon_sym_case] = ACTIONS(3369), + [anon_sym_yield] = ACTIONS(3369), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_LTtemplate_GT] = ACTIONS(3369), + [anon_sym_DQUOTE] = ACTIONS(3369), + [anon_sym_SQUOTE] = ACTIONS(3369), + [anon_sym_class] = ACTIONS(3369), + [anon_sym_async] = ACTIONS(3369), + [anon_sym_function] = ACTIONS(3369), + [anon_sym_new] = ACTIONS(3369), + [anon_sym_using] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_SLASH] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3369), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_void] = ACTIONS(3369), + [anon_sym_delete] = ACTIONS(3369), + [anon_sym_PLUS_PLUS] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(3369), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3317), - [sym_number] = ACTIONS(3317), - [sym_private_property_identifier] = ACTIONS(3317), - [sym_this] = ACTIONS(3317), - [sym_super] = ACTIONS(3317), - [sym_true] = ACTIONS(3317), - [sym_false] = ACTIONS(3317), - [sym_null] = ACTIONS(3317), - [sym_undefined] = ACTIONS(3317), - [anon_sym_AT] = ACTIONS(3317), - [anon_sym_static] = ACTIONS(3317), - [anon_sym_readonly] = ACTIONS(3317), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3317), - [anon_sym_public] = ACTIONS(3317), - [anon_sym_private] = ACTIONS(3317), - [anon_sym_protected] = ACTIONS(3317), - [anon_sym_override] = ACTIONS(3317), - [anon_sym_module] = ACTIONS(3317), - [anon_sym_any] = ACTIONS(3317), - [anon_sym_number] = ACTIONS(3317), - [anon_sym_boolean] = ACTIONS(3317), - [anon_sym_string] = ACTIONS(3317), - [anon_sym_symbol] = ACTIONS(3317), - [anon_sym_object] = ACTIONS(3317), - [anon_sym_abstract] = ACTIONS(3317), - [anon_sym_interface] = ACTIONS(3317), - [anon_sym_enum] = ACTIONS(3317), + [anon_sym_BQUOTE] = ACTIONS(3369), + [sym_number] = ACTIONS(3369), + [sym_private_property_identifier] = ACTIONS(3369), + [sym_this] = ACTIONS(3369), + [sym_super] = ACTIONS(3369), + [sym_true] = ACTIONS(3369), + [sym_false] = ACTIONS(3369), + [sym_null] = ACTIONS(3369), + [sym_undefined] = ACTIONS(3369), + [anon_sym_AT] = ACTIONS(3369), + [anon_sym_static] = ACTIONS(3369), + [anon_sym_readonly] = ACTIONS(3369), + [anon_sym_get] = ACTIONS(3369), + [anon_sym_set] = ACTIONS(3369), + [anon_sym_declare] = ACTIONS(3369), + [anon_sym_public] = ACTIONS(3369), + [anon_sym_private] = ACTIONS(3369), + [anon_sym_protected] = ACTIONS(3369), + [anon_sym_override] = ACTIONS(3369), + [anon_sym_module] = ACTIONS(3369), + [anon_sym_any] = ACTIONS(3369), + [anon_sym_number] = ACTIONS(3369), + [anon_sym_boolean] = ACTIONS(3369), + [anon_sym_string] = ACTIONS(3369), + [anon_sym_symbol] = ACTIONS(3369), + [anon_sym_object] = ACTIONS(3369), + [anon_sym_abstract] = ACTIONS(3369), + [anon_sym_interface] = ACTIONS(3369), + [anon_sym_enum] = ACTIONS(3369), [sym_html_comment] = ACTIONS(5), }, [1129] = { [sym_comment] = STATE(1129), - [sym_identifier] = ACTIONS(3317), - [anon_sym_export] = ACTIONS(3317), - [anon_sym_default] = ACTIONS(3317), - [anon_sym_type] = ACTIONS(3317), - [anon_sym_namespace] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_typeof] = ACTIONS(3317), - [anon_sym_import] = ACTIONS(3317), - [anon_sym_with] = ACTIONS(3317), - [anon_sym_var] = ACTIONS(3317), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_const] = ACTIONS(3317), - [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_else] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3317), - [anon_sym_switch] = ACTIONS(3317), - [anon_sym_for] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_await] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3317), - [anon_sym_do] = ACTIONS(3317), - [anon_sym_try] = ACTIONS(3317), - [anon_sym_break] = ACTIONS(3317), - [anon_sym_continue] = ACTIONS(3317), - [anon_sym_debugger] = ACTIONS(3317), - [anon_sym_return] = ACTIONS(3317), - [anon_sym_throw] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_case] = ACTIONS(3317), - [anon_sym_yield] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_LTtemplate_GT] = ACTIONS(3317), - [anon_sym_DQUOTE] = ACTIONS(3317), - [anon_sym_SQUOTE] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_async] = ACTIONS(3317), - [anon_sym_function] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_using] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_void] = ACTIONS(3317), - [anon_sym_delete] = ACTIONS(3317), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3317), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3317), - [sym_number] = ACTIONS(3317), - [sym_private_property_identifier] = ACTIONS(3317), - [sym_this] = ACTIONS(3317), - [sym_super] = ACTIONS(3317), - [sym_true] = ACTIONS(3317), - [sym_false] = ACTIONS(3317), - [sym_null] = ACTIONS(3317), - [sym_undefined] = ACTIONS(3317), - [anon_sym_AT] = ACTIONS(3317), - [anon_sym_static] = ACTIONS(3317), - [anon_sym_readonly] = ACTIONS(3317), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3317), - [anon_sym_public] = ACTIONS(3317), - [anon_sym_private] = ACTIONS(3317), - [anon_sym_protected] = ACTIONS(3317), - [anon_sym_override] = ACTIONS(3317), - [anon_sym_module] = ACTIONS(3317), - [anon_sym_any] = ACTIONS(3317), - [anon_sym_number] = ACTIONS(3317), - [anon_sym_boolean] = ACTIONS(3317), - [anon_sym_string] = ACTIONS(3317), - [anon_sym_symbol] = ACTIONS(3317), - [anon_sym_object] = ACTIONS(3317), - [anon_sym_abstract] = ACTIONS(3317), - [anon_sym_interface] = ACTIONS(3317), - [anon_sym_enum] = ACTIONS(3317), + [sym_identifier] = ACTIONS(2242), + [anon_sym_export] = ACTIONS(2242), + [anon_sym_default] = ACTIONS(2242), + [anon_sym_type] = ACTIONS(2242), + [anon_sym_namespace] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_typeof] = ACTIONS(2242), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_with] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2242), + [anon_sym_let] = ACTIONS(2242), + [anon_sym_const] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_switch] = ACTIONS(2242), + [anon_sym_for] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_await] = ACTIONS(2242), + [anon_sym_while] = ACTIONS(2242), + [anon_sym_do] = ACTIONS(2242), + [anon_sym_try] = ACTIONS(2242), + [anon_sym_break] = ACTIONS(2242), + [anon_sym_continue] = ACTIONS(2242), + [anon_sym_debugger] = ACTIONS(2242), + [anon_sym_return] = ACTIONS(2242), + [anon_sym_throw] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_case] = ACTIONS(2242), + [anon_sym_yield] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_LTtemplate_GT] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_class] = ACTIONS(2242), + [anon_sym_async] = ACTIONS(2242), + [anon_sym_function] = ACTIONS(2242), + [anon_sym_new] = ACTIONS(2242), + [anon_sym_using] = ACTIONS(2242), + [anon_sym_PLUS] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2242), + [anon_sym_SLASH] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2242), + [anon_sym_TILDE] = ACTIONS(2242), + [anon_sym_void] = ACTIONS(2242), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2242), + [sym_number] = ACTIONS(2242), + [sym_private_property_identifier] = ACTIONS(2242), + [sym_this] = ACTIONS(2242), + [sym_super] = ACTIONS(2242), + [sym_true] = ACTIONS(2242), + [sym_false] = ACTIONS(2242), + [sym_null] = ACTIONS(2242), + [sym_undefined] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(2242), + [anon_sym_readonly] = ACTIONS(2242), + [anon_sym_get] = ACTIONS(2242), + [anon_sym_set] = ACTIONS(2242), + [anon_sym_declare] = ACTIONS(2242), + [anon_sym_public] = ACTIONS(2242), + [anon_sym_private] = ACTIONS(2242), + [anon_sym_protected] = ACTIONS(2242), + [anon_sym_override] = ACTIONS(2242), + [anon_sym_module] = ACTIONS(2242), + [anon_sym_any] = ACTIONS(2242), + [anon_sym_number] = ACTIONS(2242), + [anon_sym_boolean] = ACTIONS(2242), + [anon_sym_string] = ACTIONS(2242), + [anon_sym_symbol] = ACTIONS(2242), + [anon_sym_object] = ACTIONS(2242), + [anon_sym_abstract] = ACTIONS(2242), + [anon_sym_interface] = ACTIONS(2242), + [anon_sym_enum] = ACTIONS(2242), + [sym__automatic_semicolon] = ACTIONS(2322), [sym_html_comment] = ACTIONS(5), }, [1130] = { [sym_comment] = STATE(1130), - [sym_identifier] = ACTIONS(3319), - [anon_sym_export] = ACTIONS(3319), - [anon_sym_default] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_namespace] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_typeof] = ACTIONS(3319), - [anon_sym_import] = ACTIONS(3319), - [anon_sym_with] = ACTIONS(3319), - [anon_sym_var] = ACTIONS(3319), - [anon_sym_let] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_else] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_switch] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_await] = ACTIONS(3319), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_do] = ACTIONS(3319), - [anon_sym_try] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_debugger] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_throw] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3319), - [anon_sym_case] = ACTIONS(3319), - [anon_sym_yield] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_LTtemplate_GT] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3319), - [anon_sym_class] = ACTIONS(3319), - [anon_sym_async] = ACTIONS(3319), - [anon_sym_function] = ACTIONS(3319), - [anon_sym_new] = ACTIONS(3319), - [anon_sym_using] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_void] = ACTIONS(3319), - [anon_sym_delete] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3319), + [sym_identifier] = ACTIONS(3371), + [anon_sym_export] = ACTIONS(3371), + [anon_sym_default] = ACTIONS(3371), + [anon_sym_type] = ACTIONS(3371), + [anon_sym_namespace] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3371), + [anon_sym_RBRACE] = ACTIONS(3371), + [anon_sym_typeof] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_with] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [anon_sym_let] = ACTIONS(3371), + [anon_sym_const] = ACTIONS(3371), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_else] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3371), + [anon_sym_await] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_debugger] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3371), + [anon_sym_case] = ACTIONS(3371), + [anon_sym_yield] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3371), + [anon_sym_LTtemplate_GT] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(3371), + [anon_sym_SQUOTE] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_async] = ACTIONS(3371), + [anon_sym_function] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_LT] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_void] = ACTIONS(3371), + [anon_sym_delete] = ACTIONS(3371), + [anon_sym_PLUS_PLUS] = ACTIONS(3371), + [anon_sym_DASH_DASH] = ACTIONS(3371), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3319), - [sym_number] = ACTIONS(3319), - [sym_private_property_identifier] = ACTIONS(3319), - [sym_this] = ACTIONS(3319), - [sym_super] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_null] = ACTIONS(3319), - [sym_undefined] = ACTIONS(3319), - [anon_sym_AT] = ACTIONS(3319), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_readonly] = ACTIONS(3319), - [anon_sym_get] = ACTIONS(3319), - [anon_sym_set] = ACTIONS(3319), - [anon_sym_declare] = ACTIONS(3319), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3319), - [anon_sym_module] = ACTIONS(3319), - [anon_sym_any] = ACTIONS(3319), - [anon_sym_number] = ACTIONS(3319), - [anon_sym_boolean] = ACTIONS(3319), - [anon_sym_string] = ACTIONS(3319), - [anon_sym_symbol] = ACTIONS(3319), - [anon_sym_object] = ACTIONS(3319), - [anon_sym_abstract] = ACTIONS(3319), - [anon_sym_interface] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), + [anon_sym_BQUOTE] = ACTIONS(3371), + [sym_number] = ACTIONS(3371), + [sym_private_property_identifier] = ACTIONS(3371), + [sym_this] = ACTIONS(3371), + [sym_super] = ACTIONS(3371), + [sym_true] = ACTIONS(3371), + [sym_false] = ACTIONS(3371), + [sym_null] = ACTIONS(3371), + [sym_undefined] = ACTIONS(3371), + [anon_sym_AT] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_readonly] = ACTIONS(3371), + [anon_sym_get] = ACTIONS(3371), + [anon_sym_set] = ACTIONS(3371), + [anon_sym_declare] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_protected] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_module] = ACTIONS(3371), + [anon_sym_any] = ACTIONS(3371), + [anon_sym_number] = ACTIONS(3371), + [anon_sym_boolean] = ACTIONS(3371), + [anon_sym_string] = ACTIONS(3371), + [anon_sym_symbol] = ACTIONS(3371), + [anon_sym_object] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), [sym_html_comment] = ACTIONS(5), }, [1131] = { [sym_comment] = STATE(1131), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_else] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(3321), + [sym_identifier] = ACTIONS(3373), + [anon_sym_export] = ACTIONS(3373), + [anon_sym_default] = ACTIONS(3373), + [anon_sym_type] = ACTIONS(3373), + [anon_sym_namespace] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_typeof] = ACTIONS(3373), + [anon_sym_import] = ACTIONS(3373), + [anon_sym_with] = ACTIONS(3373), + [anon_sym_var] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_const] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(3373), + [anon_sym_else] = ACTIONS(3373), + [anon_sym_if] = ACTIONS(3373), + [anon_sym_switch] = ACTIONS(3373), + [anon_sym_for] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_await] = ACTIONS(3373), + [anon_sym_while] = ACTIONS(3373), + [anon_sym_do] = ACTIONS(3373), + [anon_sym_try] = ACTIONS(3373), + [anon_sym_break] = ACTIONS(3373), + [anon_sym_continue] = ACTIONS(3373), + [anon_sym_debugger] = ACTIONS(3373), + [anon_sym_return] = ACTIONS(3373), + [anon_sym_throw] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [anon_sym_case] = ACTIONS(3373), + [anon_sym_yield] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_LTtemplate_GT] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(3373), + [anon_sym_SQUOTE] = ACTIONS(3373), + [anon_sym_class] = ACTIONS(3373), + [anon_sym_async] = ACTIONS(3373), + [anon_sym_function] = ACTIONS(3373), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_using] = ACTIONS(3373), + [anon_sym_PLUS] = ACTIONS(3373), + [anon_sym_DASH] = ACTIONS(3373), + [anon_sym_SLASH] = ACTIONS(3373), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_TILDE] = ACTIONS(3373), + [anon_sym_void] = ACTIONS(3373), + [anon_sym_delete] = ACTIONS(3373), + [anon_sym_PLUS_PLUS] = ACTIONS(3373), + [anon_sym_DASH_DASH] = ACTIONS(3373), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3373), + [sym_number] = ACTIONS(3373), + [sym_private_property_identifier] = ACTIONS(3373), + [sym_this] = ACTIONS(3373), + [sym_super] = ACTIONS(3373), + [sym_true] = ACTIONS(3373), + [sym_false] = ACTIONS(3373), + [sym_null] = ACTIONS(3373), + [sym_undefined] = ACTIONS(3373), + [anon_sym_AT] = ACTIONS(3373), + [anon_sym_static] = ACTIONS(3373), + [anon_sym_readonly] = ACTIONS(3373), + [anon_sym_get] = ACTIONS(3373), + [anon_sym_set] = ACTIONS(3373), + [anon_sym_declare] = ACTIONS(3373), + [anon_sym_public] = ACTIONS(3373), + [anon_sym_private] = ACTIONS(3373), + [anon_sym_protected] = ACTIONS(3373), + [anon_sym_override] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_any] = ACTIONS(3373), + [anon_sym_number] = ACTIONS(3373), + [anon_sym_boolean] = ACTIONS(3373), + [anon_sym_string] = ACTIONS(3373), + [anon_sym_symbol] = ACTIONS(3373), + [anon_sym_object] = ACTIONS(3373), + [anon_sym_abstract] = ACTIONS(3373), + [anon_sym_interface] = ACTIONS(3373), + [anon_sym_enum] = ACTIONS(3373), [sym_html_comment] = ACTIONS(5), }, [1132] = { [sym_comment] = STATE(1132), - [sym_identifier] = ACTIONS(3323), - [anon_sym_export] = ACTIONS(3323), - [anon_sym_default] = ACTIONS(3323), - [anon_sym_type] = ACTIONS(3323), - [anon_sym_namespace] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_RBRACE] = ACTIONS(3323), - [anon_sym_typeof] = ACTIONS(3323), - [anon_sym_import] = ACTIONS(3323), - [anon_sym_with] = ACTIONS(3323), - [anon_sym_var] = ACTIONS(3323), - [anon_sym_let] = ACTIONS(3323), - [anon_sym_const] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_else] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_switch] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_await] = ACTIONS(3323), - [anon_sym_while] = ACTIONS(3323), - [anon_sym_do] = ACTIONS(3323), - [anon_sym_try] = ACTIONS(3323), - [anon_sym_break] = ACTIONS(3323), - [anon_sym_continue] = ACTIONS(3323), - [anon_sym_debugger] = ACTIONS(3323), - [anon_sym_return] = ACTIONS(3323), - [anon_sym_throw] = ACTIONS(3323), - [anon_sym_SEMI] = ACTIONS(3323), - [anon_sym_case] = ACTIONS(3323), - [anon_sym_yield] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3323), - [anon_sym_LTtemplate_GT] = ACTIONS(3323), - [anon_sym_DQUOTE] = ACTIONS(3323), - [anon_sym_SQUOTE] = ACTIONS(3323), - [anon_sym_class] = ACTIONS(3323), - [anon_sym_async] = ACTIONS(3323), - [anon_sym_function] = ACTIONS(3323), - [anon_sym_new] = ACTIONS(3323), - [anon_sym_using] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_void] = ACTIONS(3323), - [anon_sym_delete] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3323), - [anon_sym_DASH_DASH] = ACTIONS(3323), + [sym_identifier] = ACTIONS(3375), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_default] = ACTIONS(3375), + [anon_sym_type] = ACTIONS(3375), + [anon_sym_namespace] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_typeof] = ACTIONS(3375), + [anon_sym_import] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + [anon_sym_var] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_BANG] = ACTIONS(3375), + [anon_sym_else] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_switch] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_await] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_do] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_debugger] = ACTIONS(3375), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_throw] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_case] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_LTtemplate_GT] = ACTIONS(3375), + [anon_sym_DQUOTE] = ACTIONS(3375), + [anon_sym_SQUOTE] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_function] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_using] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [anon_sym_SLASH] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3375), + [anon_sym_void] = ACTIONS(3375), + [anon_sym_delete] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(3375), + [anon_sym_DASH_DASH] = ACTIONS(3375), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3323), - [sym_number] = ACTIONS(3323), - [sym_private_property_identifier] = ACTIONS(3323), - [sym_this] = ACTIONS(3323), - [sym_super] = ACTIONS(3323), - [sym_true] = ACTIONS(3323), - [sym_false] = ACTIONS(3323), - [sym_null] = ACTIONS(3323), - [sym_undefined] = ACTIONS(3323), - [anon_sym_AT] = ACTIONS(3323), - [anon_sym_static] = ACTIONS(3323), - [anon_sym_readonly] = ACTIONS(3323), - [anon_sym_get] = ACTIONS(3323), - [anon_sym_set] = ACTIONS(3323), - [anon_sym_declare] = ACTIONS(3323), - [anon_sym_public] = ACTIONS(3323), - [anon_sym_private] = ACTIONS(3323), - [anon_sym_protected] = ACTIONS(3323), - [anon_sym_override] = ACTIONS(3323), - [anon_sym_module] = ACTIONS(3323), - [anon_sym_any] = ACTIONS(3323), - [anon_sym_number] = ACTIONS(3323), - [anon_sym_boolean] = ACTIONS(3323), - [anon_sym_string] = ACTIONS(3323), - [anon_sym_symbol] = ACTIONS(3323), - [anon_sym_object] = ACTIONS(3323), - [anon_sym_abstract] = ACTIONS(3323), - [anon_sym_interface] = ACTIONS(3323), - [anon_sym_enum] = ACTIONS(3323), + [anon_sym_BQUOTE] = ACTIONS(3375), + [sym_number] = ACTIONS(3375), + [sym_private_property_identifier] = ACTIONS(3375), + [sym_this] = ACTIONS(3375), + [sym_super] = ACTIONS(3375), + [sym_true] = ACTIONS(3375), + [sym_false] = ACTIONS(3375), + [sym_null] = ACTIONS(3375), + [sym_undefined] = ACTIONS(3375), + [anon_sym_AT] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_get] = ACTIONS(3375), + [anon_sym_set] = ACTIONS(3375), + [anon_sym_declare] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_any] = ACTIONS(3375), + [anon_sym_number] = ACTIONS(3375), + [anon_sym_boolean] = ACTIONS(3375), + [anon_sym_string] = ACTIONS(3375), + [anon_sym_symbol] = ACTIONS(3375), + [anon_sym_object] = ACTIONS(3375), + [anon_sym_abstract] = ACTIONS(3375), + [anon_sym_interface] = ACTIONS(3375), + [anon_sym_enum] = ACTIONS(3375), [sym_html_comment] = ACTIONS(5), }, [1133] = { [sym_comment] = STATE(1133), - [ts_builtin_sym_end] = ACTIONS(2390), - [sym_identifier] = ACTIONS(2228), - [anon_sym_export] = ACTIONS(2228), - [anon_sym_type] = ACTIONS(2228), - [anon_sym_namespace] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(2228), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym_typeof] = ACTIONS(2228), - [anon_sym_import] = ACTIONS(2228), - [anon_sym_with] = ACTIONS(2228), - [anon_sym_var] = ACTIONS(2228), - [anon_sym_let] = ACTIONS(2228), - [anon_sym_const] = ACTIONS(2228), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_else] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_switch] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(2228), - [anon_sym_await] = ACTIONS(2228), - [anon_sym_while] = ACTIONS(2228), - [anon_sym_do] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_debugger] = ACTIONS(2228), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_throw] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2228), - [anon_sym_yield] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2228), - [anon_sym_LTtemplate_GT] = ACTIONS(2228), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_SQUOTE] = ACTIONS(2228), - [anon_sym_class] = ACTIONS(2228), - [anon_sym_async] = ACTIONS(2228), - [anon_sym_function] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2228), - [anon_sym_using] = ACTIONS(2228), - [anon_sym_PLUS] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_SLASH] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_void] = ACTIONS(2228), - [anon_sym_delete] = ACTIONS(2228), - [anon_sym_PLUS_PLUS] = ACTIONS(2228), - [anon_sym_DASH_DASH] = ACTIONS(2228), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2228), - [sym_number] = ACTIONS(2228), - [sym_private_property_identifier] = ACTIONS(2228), - [sym_this] = ACTIONS(2228), - [sym_super] = ACTIONS(2228), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), - [sym_null] = ACTIONS(2228), - [sym_undefined] = ACTIONS(2228), - [anon_sym_AT] = ACTIONS(2228), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_readonly] = ACTIONS(2228), - [anon_sym_get] = ACTIONS(2228), - [anon_sym_set] = ACTIONS(2228), - [anon_sym_declare] = ACTIONS(2228), - [anon_sym_public] = ACTIONS(2228), - [anon_sym_private] = ACTIONS(2228), - [anon_sym_protected] = ACTIONS(2228), - [anon_sym_override] = ACTIONS(2228), - [anon_sym_module] = ACTIONS(2228), - [anon_sym_any] = ACTIONS(2228), - [anon_sym_number] = ACTIONS(2228), - [anon_sym_boolean] = ACTIONS(2228), - [anon_sym_string] = ACTIONS(2228), - [anon_sym_symbol] = ACTIONS(2228), - [anon_sym_object] = ACTIONS(2228), - [anon_sym_abstract] = ACTIONS(2228), - [anon_sym_interface] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(2228), - [sym__automatic_semicolon] = ACTIONS(2392), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), [sym_html_comment] = ACTIONS(5), }, [1134] = { [sym_comment] = STATE(1134), - [sym_identifier] = ACTIONS(3325), - [anon_sym_export] = ACTIONS(3325), - [anon_sym_default] = ACTIONS(3325), - [anon_sym_type] = ACTIONS(3325), - [anon_sym_namespace] = ACTIONS(3325), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_typeof] = ACTIONS(3325), - [anon_sym_import] = ACTIONS(3325), - [anon_sym_with] = ACTIONS(3325), - [anon_sym_var] = ACTIONS(3325), - [anon_sym_let] = ACTIONS(3325), - [anon_sym_const] = ACTIONS(3325), - [anon_sym_BANG] = ACTIONS(3325), - [anon_sym_else] = ACTIONS(3325), - [anon_sym_if] = ACTIONS(3325), - [anon_sym_switch] = ACTIONS(3325), - [anon_sym_for] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_await] = ACTIONS(3325), - [anon_sym_while] = ACTIONS(3325), - [anon_sym_do] = ACTIONS(3325), - [anon_sym_try] = ACTIONS(3325), - [anon_sym_break] = ACTIONS(3325), - [anon_sym_continue] = ACTIONS(3325), - [anon_sym_debugger] = ACTIONS(3325), - [anon_sym_return] = ACTIONS(3325), - [anon_sym_throw] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_case] = ACTIONS(3325), - [anon_sym_yield] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_LTtemplate_GT] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(3325), - [anon_sym_SQUOTE] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_async] = ACTIONS(3325), - [anon_sym_function] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_using] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_SLASH] = ACTIONS(3325), - [anon_sym_LT] = ACTIONS(3325), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_void] = ACTIONS(3325), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_PLUS_PLUS] = ACTIONS(3325), - [anon_sym_DASH_DASH] = ACTIONS(3325), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3325), - [sym_number] = ACTIONS(3325), - [sym_private_property_identifier] = ACTIONS(3325), - [sym_this] = ACTIONS(3325), - [sym_super] = ACTIONS(3325), - [sym_true] = ACTIONS(3325), - [sym_false] = ACTIONS(3325), - [sym_null] = ACTIONS(3325), - [sym_undefined] = ACTIONS(3325), - [anon_sym_AT] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_readonly] = ACTIONS(3325), - [anon_sym_get] = ACTIONS(3325), - [anon_sym_set] = ACTIONS(3325), - [anon_sym_declare] = ACTIONS(3325), - [anon_sym_public] = ACTIONS(3325), - [anon_sym_private] = ACTIONS(3325), - [anon_sym_protected] = ACTIONS(3325), - [anon_sym_override] = ACTIONS(3325), - [anon_sym_module] = ACTIONS(3325), - [anon_sym_any] = ACTIONS(3325), - [anon_sym_number] = ACTIONS(3325), - [anon_sym_boolean] = ACTIONS(3325), - [anon_sym_string] = ACTIONS(3325), - [anon_sym_symbol] = ACTIONS(3325), - [anon_sym_object] = ACTIONS(3325), - [anon_sym_abstract] = ACTIONS(3325), - [anon_sym_interface] = ACTIONS(3325), - [anon_sym_enum] = ACTIONS(3325), + [sym_identifier] = ACTIONS(2196), + [anon_sym_export] = ACTIONS(2196), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_type] = ACTIONS(2196), + [anon_sym_namespace] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_typeof] = ACTIONS(2196), + [anon_sym_import] = ACTIONS(2196), + [anon_sym_with] = ACTIONS(2196), + [anon_sym_var] = ACTIONS(2196), + [anon_sym_let] = ACTIONS(2196), + [anon_sym_const] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2196), + [anon_sym_else] = ACTIONS(2196), + [anon_sym_if] = ACTIONS(2196), + [anon_sym_switch] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_await] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2196), + [anon_sym_do] = ACTIONS(2196), + [anon_sym_try] = ACTIONS(2196), + [anon_sym_break] = ACTIONS(2196), + [anon_sym_continue] = ACTIONS(2196), + [anon_sym_debugger] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(2196), + [anon_sym_throw] = ACTIONS(2196), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_case] = ACTIONS(2196), + [anon_sym_yield] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2196), + [anon_sym_LTtemplate_GT] = ACTIONS(2196), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_SQUOTE] = ACTIONS(2196), + [anon_sym_class] = ACTIONS(2196), + [anon_sym_async] = ACTIONS(2196), + [anon_sym_function] = ACTIONS(2196), + [anon_sym_new] = ACTIONS(2196), + [anon_sym_using] = ACTIONS(2196), + [anon_sym_PLUS] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_SLASH] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(2196), + [anon_sym_TILDE] = ACTIONS(2196), + [anon_sym_void] = ACTIONS(2196), + [anon_sym_delete] = ACTIONS(2196), + [anon_sym_PLUS_PLUS] = ACTIONS(2196), + [anon_sym_DASH_DASH] = ACTIONS(2196), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2196), + [sym_number] = ACTIONS(2196), + [sym_private_property_identifier] = ACTIONS(2196), + [sym_this] = ACTIONS(2196), + [sym_super] = ACTIONS(2196), + [sym_true] = ACTIONS(2196), + [sym_false] = ACTIONS(2196), + [sym_null] = ACTIONS(2196), + [sym_undefined] = ACTIONS(2196), + [anon_sym_AT] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2196), + [anon_sym_readonly] = ACTIONS(2196), + [anon_sym_get] = ACTIONS(2196), + [anon_sym_set] = ACTIONS(2196), + [anon_sym_declare] = ACTIONS(2196), + [anon_sym_public] = ACTIONS(2196), + [anon_sym_private] = ACTIONS(2196), + [anon_sym_protected] = ACTIONS(2196), + [anon_sym_override] = ACTIONS(2196), + [anon_sym_module] = ACTIONS(2196), + [anon_sym_any] = ACTIONS(2196), + [anon_sym_number] = ACTIONS(2196), + [anon_sym_boolean] = ACTIONS(2196), + [anon_sym_string] = ACTIONS(2196), + [anon_sym_symbol] = ACTIONS(2196), + [anon_sym_object] = ACTIONS(2196), + [anon_sym_abstract] = ACTIONS(2196), + [anon_sym_interface] = ACTIONS(2196), + [anon_sym_enum] = ACTIONS(2196), [sym_html_comment] = ACTIONS(5), }, [1135] = { [sym_comment] = STATE(1135), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [sym_identifier] = ACTIONS(3377), + [anon_sym_export] = ACTIONS(3377), + [anon_sym_default] = ACTIONS(3377), + [anon_sym_type] = ACTIONS(3377), + [anon_sym_namespace] = ACTIONS(3377), + [anon_sym_LBRACE] = ACTIONS(3377), + [anon_sym_RBRACE] = ACTIONS(3377), + [anon_sym_typeof] = ACTIONS(3377), + [anon_sym_import] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3377), + [anon_sym_var] = ACTIONS(3377), + [anon_sym_let] = ACTIONS(3377), + [anon_sym_const] = ACTIONS(3377), + [anon_sym_BANG] = ACTIONS(3377), + [anon_sym_else] = ACTIONS(3377), + [anon_sym_if] = ACTIONS(3377), + [anon_sym_switch] = ACTIONS(3377), + [anon_sym_for] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3377), + [anon_sym_await] = ACTIONS(3377), + [anon_sym_while] = ACTIONS(3377), + [anon_sym_do] = ACTIONS(3377), + [anon_sym_try] = ACTIONS(3377), + [anon_sym_break] = ACTIONS(3377), + [anon_sym_continue] = ACTIONS(3377), + [anon_sym_debugger] = ACTIONS(3377), + [anon_sym_return] = ACTIONS(3377), + [anon_sym_throw] = ACTIONS(3377), + [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_case] = ACTIONS(3377), + [anon_sym_yield] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3377), + [anon_sym_LTtemplate_GT] = ACTIONS(3377), + [anon_sym_DQUOTE] = ACTIONS(3377), + [anon_sym_SQUOTE] = ACTIONS(3377), + [anon_sym_class] = ACTIONS(3377), + [anon_sym_async] = ACTIONS(3377), + [anon_sym_function] = ACTIONS(3377), + [anon_sym_new] = ACTIONS(3377), + [anon_sym_using] = ACTIONS(3377), + [anon_sym_PLUS] = ACTIONS(3377), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_SLASH] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_void] = ACTIONS(3377), + [anon_sym_delete] = ACTIONS(3377), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3377), + [sym_number] = ACTIONS(3377), + [sym_private_property_identifier] = ACTIONS(3377), + [sym_this] = ACTIONS(3377), + [sym_super] = ACTIONS(3377), + [sym_true] = ACTIONS(3377), + [sym_false] = ACTIONS(3377), + [sym_null] = ACTIONS(3377), + [sym_undefined] = ACTIONS(3377), + [anon_sym_AT] = ACTIONS(3377), + [anon_sym_static] = ACTIONS(3377), + [anon_sym_readonly] = ACTIONS(3377), + [anon_sym_get] = ACTIONS(3377), + [anon_sym_set] = ACTIONS(3377), + [anon_sym_declare] = ACTIONS(3377), + [anon_sym_public] = ACTIONS(3377), + [anon_sym_private] = ACTIONS(3377), + [anon_sym_protected] = ACTIONS(3377), + [anon_sym_override] = ACTIONS(3377), + [anon_sym_module] = ACTIONS(3377), + [anon_sym_any] = ACTIONS(3377), + [anon_sym_number] = ACTIONS(3377), + [anon_sym_boolean] = ACTIONS(3377), + [anon_sym_string] = ACTIONS(3377), + [anon_sym_symbol] = ACTIONS(3377), + [anon_sym_object] = ACTIONS(3377), + [anon_sym_abstract] = ACTIONS(3377), + [anon_sym_interface] = ACTIONS(3377), + [anon_sym_enum] = ACTIONS(3377), [sym_html_comment] = ACTIONS(5), }, [1136] = { [sym_comment] = STATE(1136), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(2344), + [sym_identifier] = ACTIONS(2188), + [anon_sym_export] = ACTIONS(2188), + [anon_sym_type] = ACTIONS(2188), + [anon_sym_namespace] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_typeof] = ACTIONS(2188), + [anon_sym_import] = ACTIONS(2188), + [anon_sym_with] = ACTIONS(2188), + [anon_sym_var] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_else] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_await] = ACTIONS(2188), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_do] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), + [anon_sym_continue] = ACTIONS(2188), + [anon_sym_debugger] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_throw] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LTtemplate_GT] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_class] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(2188), + [anon_sym_function] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(2188), + [anon_sym_PLUS] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_SLASH] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_void] = ACTIONS(2188), + [anon_sym_delete] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_number] = ACTIONS(2188), + [sym_private_property_identifier] = ACTIONS(2188), + [sym_this] = ACTIONS(2188), + [sym_super] = ACTIONS(2188), + [sym_true] = ACTIONS(2188), + [sym_false] = ACTIONS(2188), + [sym_null] = ACTIONS(2188), + [sym_undefined] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(2188), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_readonly] = ACTIONS(2188), + [anon_sym_get] = ACTIONS(2188), + [anon_sym_set] = ACTIONS(2188), + [anon_sym_declare] = ACTIONS(2188), + [anon_sym_public] = ACTIONS(2188), + [anon_sym_private] = ACTIONS(2188), + [anon_sym_protected] = ACTIONS(2188), + [anon_sym_override] = ACTIONS(2188), + [anon_sym_module] = ACTIONS(2188), + [anon_sym_any] = ACTIONS(2188), + [anon_sym_number] = ACTIONS(2188), + [anon_sym_boolean] = ACTIONS(2188), + [anon_sym_string] = ACTIONS(2188), + [anon_sym_symbol] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(2188), + [anon_sym_abstract] = ACTIONS(2188), + [anon_sym_interface] = ACTIONS(2188), + [anon_sym_enum] = ACTIONS(2188), + [sym__automatic_semicolon] = ACTIONS(2346), [sym_html_comment] = ACTIONS(5), }, [1137] = { [sym_comment] = STATE(1137), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(2348), + [sym_identifier] = ACTIONS(2204), + [anon_sym_export] = ACTIONS(2204), + [anon_sym_type] = ACTIONS(2204), + [anon_sym_namespace] = ACTIONS(2204), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_RBRACE] = ACTIONS(2204), + [anon_sym_typeof] = ACTIONS(2204), + [anon_sym_import] = ACTIONS(2204), + [anon_sym_with] = ACTIONS(2204), + [anon_sym_var] = ACTIONS(2204), + [anon_sym_let] = ACTIONS(2204), + [anon_sym_const] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_else] = ACTIONS(2204), + [anon_sym_if] = ACTIONS(2204), + [anon_sym_switch] = ACTIONS(2204), + [anon_sym_for] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2204), + [anon_sym_await] = ACTIONS(2204), + [anon_sym_while] = ACTIONS(2204), + [anon_sym_do] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(2204), + [anon_sym_break] = ACTIONS(2204), + [anon_sym_continue] = ACTIONS(2204), + [anon_sym_debugger] = ACTIONS(2204), + [anon_sym_return] = ACTIONS(2204), + [anon_sym_throw] = ACTIONS(2204), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym_yield] = ACTIONS(2204), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LTtemplate_GT] = ACTIONS(2204), + [anon_sym_DQUOTE] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_class] = ACTIONS(2204), + [anon_sym_async] = ACTIONS(2204), + [anon_sym_function] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2204), + [anon_sym_using] = ACTIONS(2204), + [anon_sym_PLUS] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2204), + [anon_sym_SLASH] = ACTIONS(2204), + [anon_sym_LT] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_void] = ACTIONS(2204), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_DASH_DASH] = ACTIONS(2204), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(2204), + [sym_number] = ACTIONS(2204), + [sym_private_property_identifier] = ACTIONS(2204), + [sym_this] = ACTIONS(2204), + [sym_super] = ACTIONS(2204), + [sym_true] = ACTIONS(2204), + [sym_false] = ACTIONS(2204), + [sym_null] = ACTIONS(2204), + [sym_undefined] = ACTIONS(2204), + [anon_sym_AT] = ACTIONS(2204), + [anon_sym_static] = ACTIONS(2204), + [anon_sym_readonly] = ACTIONS(2204), + [anon_sym_get] = ACTIONS(2204), + [anon_sym_set] = ACTIONS(2204), + [anon_sym_declare] = ACTIONS(2204), + [anon_sym_public] = ACTIONS(2204), + [anon_sym_private] = ACTIONS(2204), + [anon_sym_protected] = ACTIONS(2204), + [anon_sym_override] = ACTIONS(2204), + [anon_sym_module] = ACTIONS(2204), + [anon_sym_any] = ACTIONS(2204), + [anon_sym_number] = ACTIONS(2204), + [anon_sym_boolean] = ACTIONS(2204), + [anon_sym_string] = ACTIONS(2204), + [anon_sym_symbol] = ACTIONS(2204), + [anon_sym_object] = ACTIONS(2204), + [anon_sym_abstract] = ACTIONS(2204), + [anon_sym_interface] = ACTIONS(2204), + [anon_sym_enum] = ACTIONS(2204), + [sym__automatic_semicolon] = ACTIONS(2350), [sym_html_comment] = ACTIONS(5), }, [1138] = { [sym_comment] = STATE(1138), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [sym_identifier] = ACTIONS(3379), + [anon_sym_export] = ACTIONS(3379), + [anon_sym_default] = ACTIONS(3379), + [anon_sym_type] = ACTIONS(3379), + [anon_sym_namespace] = ACTIONS(3379), + [anon_sym_LBRACE] = ACTIONS(3379), + [anon_sym_RBRACE] = ACTIONS(3379), + [anon_sym_typeof] = ACTIONS(3379), + [anon_sym_import] = ACTIONS(3379), + [anon_sym_with] = ACTIONS(3379), + [anon_sym_var] = ACTIONS(3379), + [anon_sym_let] = ACTIONS(3379), + [anon_sym_const] = ACTIONS(3379), + [anon_sym_BANG] = ACTIONS(3379), + [anon_sym_else] = ACTIONS(3379), + [anon_sym_if] = ACTIONS(3379), + [anon_sym_switch] = ACTIONS(3379), + [anon_sym_for] = ACTIONS(3379), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_await] = ACTIONS(3379), + [anon_sym_while] = ACTIONS(3379), + [anon_sym_do] = ACTIONS(3379), + [anon_sym_try] = ACTIONS(3379), + [anon_sym_break] = ACTIONS(3379), + [anon_sym_continue] = ACTIONS(3379), + [anon_sym_debugger] = ACTIONS(3379), + [anon_sym_return] = ACTIONS(3379), + [anon_sym_throw] = ACTIONS(3379), + [anon_sym_SEMI] = ACTIONS(3379), + [anon_sym_case] = ACTIONS(3379), + [anon_sym_yield] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3379), + [anon_sym_LTtemplate_GT] = ACTIONS(3379), + [anon_sym_DQUOTE] = ACTIONS(3379), + [anon_sym_SQUOTE] = ACTIONS(3379), + [anon_sym_class] = ACTIONS(3379), + [anon_sym_async] = ACTIONS(3379), + [anon_sym_function] = ACTIONS(3379), + [anon_sym_new] = ACTIONS(3379), + [anon_sym_using] = ACTIONS(3379), + [anon_sym_PLUS] = ACTIONS(3379), + [anon_sym_DASH] = ACTIONS(3379), + [anon_sym_SLASH] = ACTIONS(3379), + [anon_sym_LT] = ACTIONS(3379), + [anon_sym_TILDE] = ACTIONS(3379), + [anon_sym_void] = ACTIONS(3379), + [anon_sym_delete] = ACTIONS(3379), + [anon_sym_PLUS_PLUS] = ACTIONS(3379), + [anon_sym_DASH_DASH] = ACTIONS(3379), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3379), + [sym_number] = ACTIONS(3379), + [sym_private_property_identifier] = ACTIONS(3379), + [sym_this] = ACTIONS(3379), + [sym_super] = ACTIONS(3379), + [sym_true] = ACTIONS(3379), + [sym_false] = ACTIONS(3379), + [sym_null] = ACTIONS(3379), + [sym_undefined] = ACTIONS(3379), + [anon_sym_AT] = ACTIONS(3379), + [anon_sym_static] = ACTIONS(3379), + [anon_sym_readonly] = ACTIONS(3379), + [anon_sym_get] = ACTIONS(3379), + [anon_sym_set] = ACTIONS(3379), + [anon_sym_declare] = ACTIONS(3379), + [anon_sym_public] = ACTIONS(3379), + [anon_sym_private] = ACTIONS(3379), + [anon_sym_protected] = ACTIONS(3379), + [anon_sym_override] = ACTIONS(3379), + [anon_sym_module] = ACTIONS(3379), + [anon_sym_any] = ACTIONS(3379), + [anon_sym_number] = ACTIONS(3379), + [anon_sym_boolean] = ACTIONS(3379), + [anon_sym_string] = ACTIONS(3379), + [anon_sym_symbol] = ACTIONS(3379), + [anon_sym_object] = ACTIONS(3379), + [anon_sym_abstract] = ACTIONS(3379), + [anon_sym_interface] = ACTIONS(3379), + [anon_sym_enum] = ACTIONS(3379), [sym_html_comment] = ACTIONS(5), }, [1139] = { [sym_comment] = STATE(1139), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(2352), + [sym_identifier] = ACTIONS(2212), + [anon_sym_export] = ACTIONS(2212), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_typeof] = ACTIONS(2212), + [anon_sym_import] = ACTIONS(2212), + [anon_sym_with] = ACTIONS(2212), + [anon_sym_var] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_else] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_await] = ACTIONS(2212), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_debugger] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LTtemplate_GT] = ACTIONS(2212), + [anon_sym_DQUOTE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_function] = ACTIONS(2212), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_SLASH] = ACTIONS(2212), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_void] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2212), + [sym_number] = ACTIONS(2212), + [sym_private_property_identifier] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [sym_null] = ACTIONS(2212), + [sym_undefined] = ACTIONS(2212), + [anon_sym_AT] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_readonly] = ACTIONS(2212), + [anon_sym_get] = ACTIONS(2212), + [anon_sym_set] = ACTIONS(2212), + [anon_sym_declare] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_override] = ACTIONS(2212), + [anon_sym_module] = ACTIONS(2212), + [anon_sym_any] = ACTIONS(2212), + [anon_sym_number] = ACTIONS(2212), + [anon_sym_boolean] = ACTIONS(2212), + [anon_sym_string] = ACTIONS(2212), + [anon_sym_symbol] = ACTIONS(2212), + [anon_sym_object] = ACTIONS(2212), + [anon_sym_abstract] = ACTIONS(2212), + [anon_sym_interface] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [sym__automatic_semicolon] = ACTIONS(2354), [sym_html_comment] = ACTIONS(5), }, [1140] = { [sym_comment] = STATE(1140), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [sym_identifier] = ACTIONS(2178), + [anon_sym_export] = ACTIONS(2178), + [anon_sym_default] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_typeof] = ACTIONS(2178), + [anon_sym_import] = ACTIONS(2178), + [anon_sym_with] = ACTIONS(2178), + [anon_sym_var] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_else] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_await] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_debugger] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_case] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_LTtemplate_GT] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_TILDE] = ACTIONS(2178), + [anon_sym_void] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_PLUS_PLUS] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2178), + [sym_number] = ACTIONS(2178), + [sym_private_property_identifier] = ACTIONS(2178), + [sym_this] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [sym_null] = ACTIONS(2178), + [sym_undefined] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_readonly] = ACTIONS(2178), + [anon_sym_get] = ACTIONS(2178), + [anon_sym_set] = ACTIONS(2178), + [anon_sym_declare] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_protected] = ACTIONS(2178), + [anon_sym_override] = ACTIONS(2178), + [anon_sym_module] = ACTIONS(2178), + [anon_sym_any] = ACTIONS(2178), + [anon_sym_number] = ACTIONS(2178), + [anon_sym_boolean] = ACTIONS(2178), + [anon_sym_string] = ACTIONS(2178), + [anon_sym_symbol] = ACTIONS(2178), + [anon_sym_object] = ACTIONS(2178), + [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_interface] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), [sym_html_comment] = ACTIONS(5), }, [1141] = { [sym_comment] = STATE(1141), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(3381), [sym_html_comment] = ACTIONS(5), }, [1142] = { [sym_comment] = STATE(1142), - [sym_identifier] = ACTIONS(3329), - [anon_sym_export] = ACTIONS(3329), - [anon_sym_default] = ACTIONS(3329), - [anon_sym_type] = ACTIONS(3329), - [anon_sym_namespace] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_typeof] = ACTIONS(3329), - [anon_sym_import] = ACTIONS(3329), - [anon_sym_with] = ACTIONS(3329), - [anon_sym_var] = ACTIONS(3329), - [anon_sym_let] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_else] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3329), - [anon_sym_switch] = ACTIONS(3329), - [anon_sym_for] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_await] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3329), - [anon_sym_do] = ACTIONS(3329), - [anon_sym_try] = ACTIONS(3329), - [anon_sym_break] = ACTIONS(3329), - [anon_sym_continue] = ACTIONS(3329), - [anon_sym_debugger] = ACTIONS(3329), - [anon_sym_return] = ACTIONS(3329), - [anon_sym_throw] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_case] = ACTIONS(3329), - [anon_sym_yield] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_LTtemplate_GT] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(3329), - [anon_sym_SQUOTE] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_async] = ACTIONS(3329), - [anon_sym_function] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_SLASH] = ACTIONS(3329), - [anon_sym_LT] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_void] = ACTIONS(3329), - [anon_sym_delete] = ACTIONS(3329), - [anon_sym_PLUS_PLUS] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3329), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3329), - [sym_number] = ACTIONS(3329), - [sym_private_property_identifier] = ACTIONS(3329), - [sym_this] = ACTIONS(3329), - [sym_super] = ACTIONS(3329), - [sym_true] = ACTIONS(3329), - [sym_false] = ACTIONS(3329), - [sym_null] = ACTIONS(3329), - [sym_undefined] = ACTIONS(3329), - [anon_sym_AT] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_readonly] = ACTIONS(3329), - [anon_sym_get] = ACTIONS(3329), - [anon_sym_set] = ACTIONS(3329), - [anon_sym_declare] = ACTIONS(3329), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_protected] = ACTIONS(3329), - [anon_sym_override] = ACTIONS(3329), - [anon_sym_module] = ACTIONS(3329), - [anon_sym_any] = ACTIONS(3329), - [anon_sym_number] = ACTIONS(3329), - [anon_sym_boolean] = ACTIONS(3329), - [anon_sym_string] = ACTIONS(3329), - [anon_sym_symbol] = ACTIONS(3329), - [anon_sym_object] = ACTIONS(3329), - [anon_sym_abstract] = ACTIONS(3329), - [anon_sym_interface] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), + [sym_identifier] = ACTIONS(3383), + [anon_sym_export] = ACTIONS(3383), + [anon_sym_default] = ACTIONS(3383), + [anon_sym_type] = ACTIONS(3383), + [anon_sym_namespace] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_RBRACE] = ACTIONS(3383), + [anon_sym_typeof] = ACTIONS(3383), + [anon_sym_import] = ACTIONS(3383), + [anon_sym_with] = ACTIONS(3383), + [anon_sym_var] = ACTIONS(3383), + [anon_sym_let] = ACTIONS(3383), + [anon_sym_const] = ACTIONS(3383), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_else] = ACTIONS(3383), + [anon_sym_if] = ACTIONS(3383), + [anon_sym_switch] = ACTIONS(3383), + [anon_sym_for] = ACTIONS(3383), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_await] = ACTIONS(3383), + [anon_sym_while] = ACTIONS(3383), + [anon_sym_do] = ACTIONS(3383), + [anon_sym_try] = ACTIONS(3383), + [anon_sym_break] = ACTIONS(3383), + [anon_sym_continue] = ACTIONS(3383), + [anon_sym_debugger] = ACTIONS(3383), + [anon_sym_return] = ACTIONS(3383), + [anon_sym_throw] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3383), + [anon_sym_case] = ACTIONS(3383), + [anon_sym_yield] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_LTtemplate_GT] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [anon_sym_SQUOTE] = ACTIONS(3383), + [anon_sym_class] = ACTIONS(3383), + [anon_sym_async] = ACTIONS(3383), + [anon_sym_function] = ACTIONS(3383), + [anon_sym_new] = ACTIONS(3383), + [anon_sym_using] = ACTIONS(3383), + [anon_sym_PLUS] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3383), + [anon_sym_SLASH] = ACTIONS(3383), + [anon_sym_LT] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_void] = ACTIONS(3383), + [anon_sym_delete] = ACTIONS(3383), + [anon_sym_PLUS_PLUS] = ACTIONS(3383), + [anon_sym_DASH_DASH] = ACTIONS(3383), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3383), + [sym_number] = ACTIONS(3383), + [sym_private_property_identifier] = ACTIONS(3383), + [sym_this] = ACTIONS(3383), + [sym_super] = ACTIONS(3383), + [sym_true] = ACTIONS(3383), + [sym_false] = ACTIONS(3383), + [sym_null] = ACTIONS(3383), + [sym_undefined] = ACTIONS(3383), + [anon_sym_AT] = ACTIONS(3383), + [anon_sym_static] = ACTIONS(3383), + [anon_sym_readonly] = ACTIONS(3383), + [anon_sym_get] = ACTIONS(3383), + [anon_sym_set] = ACTIONS(3383), + [anon_sym_declare] = ACTIONS(3383), + [anon_sym_public] = ACTIONS(3383), + [anon_sym_private] = ACTIONS(3383), + [anon_sym_protected] = ACTIONS(3383), + [anon_sym_override] = ACTIONS(3383), + [anon_sym_module] = ACTIONS(3383), + [anon_sym_any] = ACTIONS(3383), + [anon_sym_number] = ACTIONS(3383), + [anon_sym_boolean] = ACTIONS(3383), + [anon_sym_string] = ACTIONS(3383), + [anon_sym_symbol] = ACTIONS(3383), + [anon_sym_object] = ACTIONS(3383), + [anon_sym_abstract] = ACTIONS(3383), + [anon_sym_interface] = ACTIONS(3383), + [anon_sym_enum] = ACTIONS(3383), [sym_html_comment] = ACTIONS(5), }, [1143] = { [sym_comment] = STATE(1143), - [sym_identifier] = ACTIONS(3331), - [anon_sym_export] = ACTIONS(3331), - [anon_sym_default] = ACTIONS(3331), - [anon_sym_type] = ACTIONS(3331), - [anon_sym_namespace] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_typeof] = ACTIONS(3331), - [anon_sym_import] = ACTIONS(3331), - [anon_sym_with] = ACTIONS(3331), - [anon_sym_var] = ACTIONS(3331), - [anon_sym_let] = ACTIONS(3331), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_else] = ACTIONS(3331), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_switch] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_await] = ACTIONS(3331), - [anon_sym_while] = ACTIONS(3331), - [anon_sym_do] = ACTIONS(3331), - [anon_sym_try] = ACTIONS(3331), - [anon_sym_break] = ACTIONS(3331), - [anon_sym_continue] = ACTIONS(3331), - [anon_sym_debugger] = ACTIONS(3331), - [anon_sym_return] = ACTIONS(3331), - [anon_sym_throw] = ACTIONS(3331), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym_case] = ACTIONS(3331), - [anon_sym_yield] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3331), - [anon_sym_LTtemplate_GT] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3331), - [anon_sym_class] = ACTIONS(3331), - [anon_sym_async] = ACTIONS(3331), - [anon_sym_function] = ACTIONS(3331), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_using] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_void] = ACTIONS(3331), - [anon_sym_delete] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3331), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3331), - [sym_number] = ACTIONS(3331), - [sym_private_property_identifier] = ACTIONS(3331), - [sym_this] = ACTIONS(3331), - [sym_super] = ACTIONS(3331), - [sym_true] = ACTIONS(3331), - [sym_false] = ACTIONS(3331), - [sym_null] = ACTIONS(3331), - [sym_undefined] = ACTIONS(3331), - [anon_sym_AT] = ACTIONS(3331), - [anon_sym_static] = ACTIONS(3331), - [anon_sym_readonly] = ACTIONS(3331), - [anon_sym_get] = ACTIONS(3331), - [anon_sym_set] = ACTIONS(3331), - [anon_sym_declare] = ACTIONS(3331), - [anon_sym_public] = ACTIONS(3331), - [anon_sym_private] = ACTIONS(3331), - [anon_sym_protected] = ACTIONS(3331), - [anon_sym_override] = ACTIONS(3331), - [anon_sym_module] = ACTIONS(3331), - [anon_sym_any] = ACTIONS(3331), - [anon_sym_number] = ACTIONS(3331), - [anon_sym_boolean] = ACTIONS(3331), - [anon_sym_string] = ACTIONS(3331), - [anon_sym_symbol] = ACTIONS(3331), - [anon_sym_object] = ACTIONS(3331), - [anon_sym_abstract] = ACTIONS(3331), - [anon_sym_interface] = ACTIONS(3331), - [anon_sym_enum] = ACTIONS(3331), + [sym_identifier] = ACTIONS(3385), + [anon_sym_export] = ACTIONS(3385), + [anon_sym_default] = ACTIONS(3385), + [anon_sym_type] = ACTIONS(3385), + [anon_sym_namespace] = ACTIONS(3385), + [anon_sym_LBRACE] = ACTIONS(3385), + [anon_sym_RBRACE] = ACTIONS(3385), + [anon_sym_typeof] = ACTIONS(3385), + [anon_sym_import] = ACTIONS(3385), + [anon_sym_with] = ACTIONS(3385), + [anon_sym_var] = ACTIONS(3385), + [anon_sym_let] = ACTIONS(3385), + [anon_sym_const] = ACTIONS(3385), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_else] = ACTIONS(3385), + [anon_sym_if] = ACTIONS(3385), + [anon_sym_switch] = ACTIONS(3385), + [anon_sym_for] = ACTIONS(3385), + [anon_sym_LPAREN] = ACTIONS(3385), + [anon_sym_await] = ACTIONS(3385), + [anon_sym_while] = ACTIONS(3385), + [anon_sym_do] = ACTIONS(3385), + [anon_sym_try] = ACTIONS(3385), + [anon_sym_break] = ACTIONS(3385), + [anon_sym_continue] = ACTIONS(3385), + [anon_sym_debugger] = ACTIONS(3385), + [anon_sym_return] = ACTIONS(3385), + [anon_sym_throw] = ACTIONS(3385), + [anon_sym_SEMI] = ACTIONS(3385), + [anon_sym_case] = ACTIONS(3385), + [anon_sym_yield] = ACTIONS(3385), + [anon_sym_LBRACK] = ACTIONS(3385), + [anon_sym_LTtemplate_GT] = ACTIONS(3385), + [anon_sym_DQUOTE] = ACTIONS(3385), + [anon_sym_SQUOTE] = ACTIONS(3385), + [anon_sym_class] = ACTIONS(3385), + [anon_sym_async] = ACTIONS(3385), + [anon_sym_function] = ACTIONS(3385), + [anon_sym_new] = ACTIONS(3385), + [anon_sym_using] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_SLASH] = ACTIONS(3385), + [anon_sym_LT] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(3385), + [anon_sym_void] = ACTIONS(3385), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_PLUS_PLUS] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3385), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3385), + [sym_number] = ACTIONS(3385), + [sym_private_property_identifier] = ACTIONS(3385), + [sym_this] = ACTIONS(3385), + [sym_super] = ACTIONS(3385), + [sym_true] = ACTIONS(3385), + [sym_false] = ACTIONS(3385), + [sym_null] = ACTIONS(3385), + [sym_undefined] = ACTIONS(3385), + [anon_sym_AT] = ACTIONS(3385), + [anon_sym_static] = ACTIONS(3385), + [anon_sym_readonly] = ACTIONS(3385), + [anon_sym_get] = ACTIONS(3385), + [anon_sym_set] = ACTIONS(3385), + [anon_sym_declare] = ACTIONS(3385), + [anon_sym_public] = ACTIONS(3385), + [anon_sym_private] = ACTIONS(3385), + [anon_sym_protected] = ACTIONS(3385), + [anon_sym_override] = ACTIONS(3385), + [anon_sym_module] = ACTIONS(3385), + [anon_sym_any] = ACTIONS(3385), + [anon_sym_number] = ACTIONS(3385), + [anon_sym_boolean] = ACTIONS(3385), + [anon_sym_string] = ACTIONS(3385), + [anon_sym_symbol] = ACTIONS(3385), + [anon_sym_object] = ACTIONS(3385), + [anon_sym_abstract] = ACTIONS(3385), + [anon_sym_interface] = ACTIONS(3385), + [anon_sym_enum] = ACTIONS(3385), [sym_html_comment] = ACTIONS(5), }, [1144] = { [sym_comment] = STATE(1144), - [sym_identifier] = ACTIONS(3333), - [anon_sym_export] = ACTIONS(3333), - [anon_sym_default] = ACTIONS(3333), - [anon_sym_type] = ACTIONS(3333), - [anon_sym_namespace] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_typeof] = ACTIONS(3333), - [anon_sym_import] = ACTIONS(3333), - [anon_sym_with] = ACTIONS(3333), - [anon_sym_var] = ACTIONS(3333), - [anon_sym_let] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3333), - [anon_sym_BANG] = ACTIONS(3333), - [anon_sym_else] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3333), - [anon_sym_switch] = ACTIONS(3333), - [anon_sym_for] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_await] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3333), - [anon_sym_do] = ACTIONS(3333), - [anon_sym_try] = ACTIONS(3333), - [anon_sym_break] = ACTIONS(3333), - [anon_sym_continue] = ACTIONS(3333), - [anon_sym_debugger] = ACTIONS(3333), - [anon_sym_return] = ACTIONS(3333), - [anon_sym_throw] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_case] = ACTIONS(3333), - [anon_sym_yield] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_LTtemplate_GT] = ACTIONS(3333), - [anon_sym_DQUOTE] = ACTIONS(3333), - [anon_sym_SQUOTE] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_async] = ACTIONS(3333), - [anon_sym_function] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3333), - [anon_sym_using] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_SLASH] = ACTIONS(3333), - [anon_sym_LT] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_void] = ACTIONS(3333), - [anon_sym_delete] = ACTIONS(3333), - [anon_sym_PLUS_PLUS] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3333), + [sym_identifier] = ACTIONS(3387), + [anon_sym_export] = ACTIONS(3387), + [anon_sym_default] = ACTIONS(3387), + [anon_sym_type] = ACTIONS(3387), + [anon_sym_namespace] = ACTIONS(3387), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_RBRACE] = ACTIONS(3387), + [anon_sym_typeof] = ACTIONS(3387), + [anon_sym_import] = ACTIONS(3387), + [anon_sym_with] = ACTIONS(3387), + [anon_sym_var] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_const] = ACTIONS(3387), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_else] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_switch] = ACTIONS(3387), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_await] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_break] = ACTIONS(3387), + [anon_sym_continue] = ACTIONS(3387), + [anon_sym_debugger] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_throw] = ACTIONS(3387), + [anon_sym_SEMI] = ACTIONS(3387), + [anon_sym_case] = ACTIONS(3387), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LTtemplate_GT] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_SQUOTE] = ACTIONS(3387), + [anon_sym_class] = ACTIONS(3387), + [anon_sym_async] = ACTIONS(3387), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_using] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_SLASH] = ACTIONS(3387), + [anon_sym_LT] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3387), + [anon_sym_void] = ACTIONS(3387), + [anon_sym_delete] = ACTIONS(3387), + [anon_sym_PLUS_PLUS] = ACTIONS(3387), + [anon_sym_DASH_DASH] = ACTIONS(3387), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3333), - [sym_number] = ACTIONS(3333), - [sym_private_property_identifier] = ACTIONS(3333), - [sym_this] = ACTIONS(3333), - [sym_super] = ACTIONS(3333), - [sym_true] = ACTIONS(3333), - [sym_false] = ACTIONS(3333), - [sym_null] = ACTIONS(3333), - [sym_undefined] = ACTIONS(3333), - [anon_sym_AT] = ACTIONS(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_readonly] = ACTIONS(3333), - [anon_sym_get] = ACTIONS(3333), - [anon_sym_set] = ACTIONS(3333), - [anon_sym_declare] = ACTIONS(3333), - [anon_sym_public] = ACTIONS(3333), - [anon_sym_private] = ACTIONS(3333), - [anon_sym_protected] = ACTIONS(3333), - [anon_sym_override] = ACTIONS(3333), - [anon_sym_module] = ACTIONS(3333), - [anon_sym_any] = ACTIONS(3333), - [anon_sym_number] = ACTIONS(3333), - [anon_sym_boolean] = ACTIONS(3333), - [anon_sym_string] = ACTIONS(3333), - [anon_sym_symbol] = ACTIONS(3333), - [anon_sym_object] = ACTIONS(3333), - [anon_sym_abstract] = ACTIONS(3333), - [anon_sym_interface] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), + [anon_sym_BQUOTE] = ACTIONS(3387), + [sym_number] = ACTIONS(3387), + [sym_private_property_identifier] = ACTIONS(3387), + [sym_this] = ACTIONS(3387), + [sym_super] = ACTIONS(3387), + [sym_true] = ACTIONS(3387), + [sym_false] = ACTIONS(3387), + [sym_null] = ACTIONS(3387), + [sym_undefined] = ACTIONS(3387), + [anon_sym_AT] = ACTIONS(3387), + [anon_sym_static] = ACTIONS(3387), + [anon_sym_readonly] = ACTIONS(3387), + [anon_sym_get] = ACTIONS(3387), + [anon_sym_set] = ACTIONS(3387), + [anon_sym_declare] = ACTIONS(3387), + [anon_sym_public] = ACTIONS(3387), + [anon_sym_private] = ACTIONS(3387), + [anon_sym_protected] = ACTIONS(3387), + [anon_sym_override] = ACTIONS(3387), + [anon_sym_module] = ACTIONS(3387), + [anon_sym_any] = ACTIONS(3387), + [anon_sym_number] = ACTIONS(3387), + [anon_sym_boolean] = ACTIONS(3387), + [anon_sym_string] = ACTIONS(3387), + [anon_sym_symbol] = ACTIONS(3387), + [anon_sym_object] = ACTIONS(3387), + [anon_sym_abstract] = ACTIONS(3387), + [anon_sym_interface] = ACTIONS(3387), + [anon_sym_enum] = ACTIONS(3387), [sym_html_comment] = ACTIONS(5), }, [1145] = { [sym_comment] = STATE(1145), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_finally] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(3335), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_else] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(2316), [sym_html_comment] = ACTIONS(5), }, [1146] = { [sym_comment] = STATE(1146), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [sym_identifier] = ACTIONS(2300), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_default] = ACTIONS(2300), + [anon_sym_type] = ACTIONS(2300), + [anon_sym_namespace] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2300), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2300), + [anon_sym_import] = ACTIONS(2300), + [anon_sym_with] = ACTIONS(2300), + [anon_sym_var] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_switch] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_await] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_debugger] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_throw] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_case] = ACTIONS(2300), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2300), + [anon_sym_LTtemplate_GT] = ACTIONS(2300), + [anon_sym_DQUOTE] = ACTIONS(2300), + [anon_sym_SQUOTE] = ACTIONS(2300), + [anon_sym_class] = ACTIONS(2300), + [anon_sym_async] = ACTIONS(2300), + [anon_sym_function] = ACTIONS(2300), + [anon_sym_new] = ACTIONS(2300), + [anon_sym_using] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_LT] = ACTIONS(2300), + [anon_sym_TILDE] = ACTIONS(2300), + [anon_sym_void] = ACTIONS(2300), + [anon_sym_delete] = ACTIONS(2300), + [anon_sym_PLUS_PLUS] = ACTIONS(2300), + [anon_sym_DASH_DASH] = ACTIONS(2300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2300), + [sym_number] = ACTIONS(2300), + [sym_private_property_identifier] = ACTIONS(2300), + [sym_this] = ACTIONS(2300), + [sym_super] = ACTIONS(2300), + [sym_true] = ACTIONS(2300), + [sym_false] = ACTIONS(2300), + [sym_null] = ACTIONS(2300), + [sym_undefined] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2300), + [anon_sym_static] = ACTIONS(2300), + [anon_sym_readonly] = ACTIONS(2300), + [anon_sym_get] = ACTIONS(2300), + [anon_sym_set] = ACTIONS(2300), + [anon_sym_declare] = ACTIONS(2300), + [anon_sym_public] = ACTIONS(2300), + [anon_sym_private] = ACTIONS(2300), + [anon_sym_protected] = ACTIONS(2300), + [anon_sym_override] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_any] = ACTIONS(2300), + [anon_sym_number] = ACTIONS(2300), + [anon_sym_boolean] = ACTIONS(2300), + [anon_sym_string] = ACTIONS(2300), + [anon_sym_symbol] = ACTIONS(2300), + [anon_sym_object] = ACTIONS(2300), + [anon_sym_abstract] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2300), + [anon_sym_enum] = ACTIONS(2300), + [sym__automatic_semicolon] = ACTIONS(2302), [sym_html_comment] = ACTIONS(5), }, [1147] = { [sym_comment] = STATE(1147), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_else] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_case] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, [1148] = { [sym_comment] = STATE(1148), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2226), + [anon_sym_export] = ACTIONS(2226), + [anon_sym_type] = ACTIONS(2226), + [anon_sym_namespace] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2226), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_typeof] = ACTIONS(2226), + [anon_sym_import] = ACTIONS(2226), + [anon_sym_with] = ACTIONS(2226), + [anon_sym_var] = ACTIONS(2226), + [anon_sym_let] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_else] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_switch] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_await] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_do] = ACTIONS(2226), + [anon_sym_try] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_debugger] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_throw] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2226), + [anon_sym_yield] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_LTtemplate_GT] = ACTIONS(2226), + [anon_sym_DQUOTE] = ACTIONS(2226), + [anon_sym_SQUOTE] = ACTIONS(2226), + [anon_sym_class] = ACTIONS(2226), + [anon_sym_async] = ACTIONS(2226), + [anon_sym_function] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(2226), + [anon_sym_using] = ACTIONS(2226), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_SLASH] = ACTIONS(2226), + [anon_sym_LT] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_void] = ACTIONS(2226), + [anon_sym_delete] = ACTIONS(2226), + [anon_sym_PLUS_PLUS] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2226), + [sym_number] = ACTIONS(2226), + [sym_private_property_identifier] = ACTIONS(2226), + [sym_this] = ACTIONS(2226), + [sym_super] = ACTIONS(2226), + [sym_true] = ACTIONS(2226), + [sym_false] = ACTIONS(2226), + [sym_null] = ACTIONS(2226), + [sym_undefined] = ACTIONS(2226), + [anon_sym_AT] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2226), + [anon_sym_readonly] = ACTIONS(2226), + [anon_sym_get] = ACTIONS(2226), + [anon_sym_set] = ACTIONS(2226), + [anon_sym_declare] = ACTIONS(2226), + [anon_sym_public] = ACTIONS(2226), + [anon_sym_private] = ACTIONS(2226), + [anon_sym_protected] = ACTIONS(2226), + [anon_sym_override] = ACTIONS(2226), + [anon_sym_module] = ACTIONS(2226), + [anon_sym_any] = ACTIONS(2226), + [anon_sym_number] = ACTIONS(2226), + [anon_sym_boolean] = ACTIONS(2226), + [anon_sym_string] = ACTIONS(2226), + [anon_sym_symbol] = ACTIONS(2226), + [anon_sym_object] = ACTIONS(2226), + [anon_sym_abstract] = ACTIONS(2226), + [anon_sym_interface] = ACTIONS(2226), + [anon_sym_enum] = ACTIONS(2226), + [sym__automatic_semicolon] = ACTIONS(2360), [sym_html_comment] = ACTIONS(5), }, [1149] = { [sym_comment] = STATE(1149), - [sym_identifier] = ACTIONS(3337), - [anon_sym_export] = ACTIONS(3337), - [anon_sym_default] = ACTIONS(3337), - [anon_sym_type] = ACTIONS(3337), - [anon_sym_namespace] = ACTIONS(3337), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_typeof] = ACTIONS(3337), - [anon_sym_import] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(3337), - [anon_sym_var] = ACTIONS(3337), - [anon_sym_let] = ACTIONS(3337), - [anon_sym_const] = ACTIONS(3337), - [anon_sym_BANG] = ACTIONS(3337), - [anon_sym_else] = ACTIONS(3337), - [anon_sym_if] = ACTIONS(3337), - [anon_sym_switch] = ACTIONS(3337), - [anon_sym_for] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_await] = ACTIONS(3337), - [anon_sym_while] = ACTIONS(3337), - [anon_sym_do] = ACTIONS(3337), - [anon_sym_try] = ACTIONS(3337), - [anon_sym_break] = ACTIONS(3337), - [anon_sym_continue] = ACTIONS(3337), - [anon_sym_debugger] = ACTIONS(3337), - [anon_sym_return] = ACTIONS(3337), - [anon_sym_throw] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_case] = ACTIONS(3337), - [anon_sym_yield] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_LTtemplate_GT] = ACTIONS(3337), - [anon_sym_DQUOTE] = ACTIONS(3337), - [anon_sym_SQUOTE] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_async] = ACTIONS(3337), - [anon_sym_function] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_using] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_SLASH] = ACTIONS(3337), - [anon_sym_LT] = ACTIONS(3337), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_void] = ACTIONS(3337), - [anon_sym_delete] = ACTIONS(3337), - [anon_sym_PLUS_PLUS] = ACTIONS(3337), - [anon_sym_DASH_DASH] = ACTIONS(3337), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3337), - [sym_number] = ACTIONS(3337), - [sym_private_property_identifier] = ACTIONS(3337), - [sym_this] = ACTIONS(3337), - [sym_super] = ACTIONS(3337), - [sym_true] = ACTIONS(3337), - [sym_false] = ACTIONS(3337), - [sym_null] = ACTIONS(3337), - [sym_undefined] = ACTIONS(3337), - [anon_sym_AT] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_readonly] = ACTIONS(3337), - [anon_sym_get] = ACTIONS(3337), - [anon_sym_set] = ACTIONS(3337), - [anon_sym_declare] = ACTIONS(3337), - [anon_sym_public] = ACTIONS(3337), - [anon_sym_private] = ACTIONS(3337), - [anon_sym_protected] = ACTIONS(3337), - [anon_sym_override] = ACTIONS(3337), - [anon_sym_module] = ACTIONS(3337), - [anon_sym_any] = ACTIONS(3337), - [anon_sym_number] = ACTIONS(3337), - [anon_sym_boolean] = ACTIONS(3337), - [anon_sym_string] = ACTIONS(3337), - [anon_sym_symbol] = ACTIONS(3337), - [anon_sym_object] = ACTIONS(3337), - [anon_sym_abstract] = ACTIONS(3337), - [anon_sym_interface] = ACTIONS(3337), - [anon_sym_enum] = ACTIONS(3337), + [sym_identifier] = ACTIONS(3389), + [anon_sym_export] = ACTIONS(3389), + [anon_sym_default] = ACTIONS(3389), + [anon_sym_type] = ACTIONS(3389), + [anon_sym_namespace] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_typeof] = ACTIONS(3389), + [anon_sym_import] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3389), + [anon_sym_var] = ACTIONS(3389), + [anon_sym_let] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3389), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_else] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3389), + [anon_sym_switch] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3389), + [anon_sym_await] = ACTIONS(3389), + [anon_sym_while] = ACTIONS(3389), + [anon_sym_do] = ACTIONS(3389), + [anon_sym_try] = ACTIONS(3389), + [anon_sym_break] = ACTIONS(3389), + [anon_sym_continue] = ACTIONS(3389), + [anon_sym_debugger] = ACTIONS(3389), + [anon_sym_return] = ACTIONS(3389), + [anon_sym_throw] = ACTIONS(3389), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym_case] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3389), + [anon_sym_LBRACK] = ACTIONS(3389), + [anon_sym_LTtemplate_GT] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(3389), + [anon_sym_SQUOTE] = ACTIONS(3389), + [anon_sym_class] = ACTIONS(3389), + [anon_sym_async] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3389), + [anon_sym_using] = ACTIONS(3389), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_SLASH] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3389), + [anon_sym_void] = ACTIONS(3389), + [anon_sym_delete] = ACTIONS(3389), + [anon_sym_PLUS_PLUS] = ACTIONS(3389), + [anon_sym_DASH_DASH] = ACTIONS(3389), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3389), + [sym_number] = ACTIONS(3389), + [sym_private_property_identifier] = ACTIONS(3389), + [sym_this] = ACTIONS(3389), + [sym_super] = ACTIONS(3389), + [sym_true] = ACTIONS(3389), + [sym_false] = ACTIONS(3389), + [sym_null] = ACTIONS(3389), + [sym_undefined] = ACTIONS(3389), + [anon_sym_AT] = ACTIONS(3389), + [anon_sym_static] = ACTIONS(3389), + [anon_sym_readonly] = ACTIONS(3389), + [anon_sym_get] = ACTIONS(3389), + [anon_sym_set] = ACTIONS(3389), + [anon_sym_declare] = ACTIONS(3389), + [anon_sym_public] = ACTIONS(3389), + [anon_sym_private] = ACTIONS(3389), + [anon_sym_protected] = ACTIONS(3389), + [anon_sym_override] = ACTIONS(3389), + [anon_sym_module] = ACTIONS(3389), + [anon_sym_any] = ACTIONS(3389), + [anon_sym_number] = ACTIONS(3389), + [anon_sym_boolean] = ACTIONS(3389), + [anon_sym_string] = ACTIONS(3389), + [anon_sym_symbol] = ACTIONS(3389), + [anon_sym_object] = ACTIONS(3389), + [anon_sym_abstract] = ACTIONS(3389), + [anon_sym_interface] = ACTIONS(3389), + [anon_sym_enum] = ACTIONS(3389), [sym_html_comment] = ACTIONS(5), }, [1150] = { [sym_comment] = STATE(1150), - [sym_identifier] = ACTIONS(3339), - [anon_sym_export] = ACTIONS(3339), - [anon_sym_default] = ACTIONS(3339), - [anon_sym_type] = ACTIONS(3339), - [anon_sym_namespace] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_RBRACE] = ACTIONS(3339), - [anon_sym_typeof] = ACTIONS(3339), - [anon_sym_import] = ACTIONS(3339), - [anon_sym_with] = ACTIONS(3339), - [anon_sym_var] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_else] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_switch] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_await] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_debugger] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_throw] = ACTIONS(3339), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym_case] = ACTIONS(3339), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LTtemplate_GT] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3339), - [anon_sym_class] = ACTIONS(3339), - [anon_sym_async] = ACTIONS(3339), - [anon_sym_function] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_using] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_SLASH] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_void] = ACTIONS(3339), - [anon_sym_delete] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3339), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3339), - [sym_number] = ACTIONS(3339), - [sym_private_property_identifier] = ACTIONS(3339), - [sym_this] = ACTIONS(3339), - [sym_super] = ACTIONS(3339), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [sym_null] = ACTIONS(3339), - [sym_undefined] = ACTIONS(3339), - [anon_sym_AT] = ACTIONS(3339), - [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_abstract] = ACTIONS(3339), - [anon_sym_interface] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), + [ts_builtin_sym_end] = ACTIONS(3209), + [sym_identifier] = ACTIONS(3207), + [anon_sym_export] = ACTIONS(3207), + [anon_sym_type] = ACTIONS(3207), + [anon_sym_namespace] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3207), + [anon_sym_RBRACE] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(3207), + [anon_sym_import] = ACTIONS(3207), + [anon_sym_with] = ACTIONS(3207), + [anon_sym_var] = ACTIONS(3207), + [anon_sym_let] = ACTIONS(3207), + [anon_sym_const] = ACTIONS(3207), + [anon_sym_BANG] = ACTIONS(3207), + [anon_sym_else] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_switch] = ACTIONS(3207), + [anon_sym_for] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(3207), + [anon_sym_await] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3207), + [anon_sym_do] = ACTIONS(3207), + [anon_sym_try] = ACTIONS(3207), + [anon_sym_break] = ACTIONS(3207), + [anon_sym_continue] = ACTIONS(3207), + [anon_sym_debugger] = ACTIONS(3207), + [anon_sym_return] = ACTIONS(3207), + [anon_sym_throw] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3207), + [anon_sym_LTtemplate_GT] = ACTIONS(3207), + [anon_sym_DQUOTE] = ACTIONS(3207), + [anon_sym_SQUOTE] = ACTIONS(3207), + [anon_sym_class] = ACTIONS(3207), + [anon_sym_async] = ACTIONS(3207), + [anon_sym_function] = ACTIONS(3207), + [anon_sym_new] = ACTIONS(3207), + [anon_sym_using] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_SLASH] = ACTIONS(3207), + [anon_sym_LT] = ACTIONS(3207), + [anon_sym_TILDE] = ACTIONS(3207), + [anon_sym_void] = ACTIONS(3207), + [anon_sym_delete] = ACTIONS(3207), + [anon_sym_PLUS_PLUS] = ACTIONS(3207), + [anon_sym_DASH_DASH] = ACTIONS(3207), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3207), + [sym_number] = ACTIONS(3207), + [sym_private_property_identifier] = ACTIONS(3207), + [sym_this] = ACTIONS(3207), + [sym_super] = ACTIONS(3207), + [sym_true] = ACTIONS(3207), + [sym_false] = ACTIONS(3207), + [sym_null] = ACTIONS(3207), + [sym_undefined] = ACTIONS(3207), + [anon_sym_AT] = ACTIONS(3207), + [anon_sym_static] = ACTIONS(3207), + [anon_sym_readonly] = ACTIONS(3207), + [anon_sym_get] = ACTIONS(3207), + [anon_sym_set] = ACTIONS(3207), + [anon_sym_declare] = ACTIONS(3207), + [anon_sym_public] = ACTIONS(3207), + [anon_sym_private] = ACTIONS(3207), + [anon_sym_protected] = ACTIONS(3207), + [anon_sym_override] = ACTIONS(3207), + [anon_sym_module] = ACTIONS(3207), + [anon_sym_any] = ACTIONS(3207), + [anon_sym_number] = ACTIONS(3207), + [anon_sym_boolean] = ACTIONS(3207), + [anon_sym_string] = ACTIONS(3207), + [anon_sym_symbol] = ACTIONS(3207), + [anon_sym_object] = ACTIONS(3207), + [anon_sym_abstract] = ACTIONS(3207), + [anon_sym_interface] = ACTIONS(3207), + [anon_sym_enum] = ACTIONS(3207), + [sym__automatic_semicolon] = ACTIONS(3209), [sym_html_comment] = ACTIONS(5), }, [1151] = { [sym_comment] = STATE(1151), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [sym_identifier] = ACTIONS(2304), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_default] = ACTIONS(2304), + [anon_sym_type] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2304), + [anon_sym_LBRACE] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_typeof] = ACTIONS(2304), + [anon_sym_import] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(2304), + [anon_sym_var] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_switch] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_await] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_debugger] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_throw] = ACTIONS(2304), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_case] = ACTIONS(2304), + [anon_sym_yield] = ACTIONS(2304), + [anon_sym_LBRACK] = ACTIONS(2304), + [anon_sym_LTtemplate_GT] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2304), + [anon_sym_SQUOTE] = ACTIONS(2304), + [anon_sym_class] = ACTIONS(2304), + [anon_sym_async] = ACTIONS(2304), + [anon_sym_function] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2304), + [anon_sym_using] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2304), + [anon_sym_DASH] = ACTIONS(2304), + [anon_sym_SLASH] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2304), + [anon_sym_void] = ACTIONS(2304), + [anon_sym_delete] = ACTIONS(2304), + [anon_sym_PLUS_PLUS] = ACTIONS(2304), + [anon_sym_DASH_DASH] = ACTIONS(2304), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2304), + [sym_number] = ACTIONS(2304), + [sym_private_property_identifier] = ACTIONS(2304), + [sym_this] = ACTIONS(2304), + [sym_super] = ACTIONS(2304), + [sym_true] = ACTIONS(2304), + [sym_false] = ACTIONS(2304), + [sym_null] = ACTIONS(2304), + [sym_undefined] = ACTIONS(2304), + [anon_sym_AT] = ACTIONS(2304), + [anon_sym_static] = ACTIONS(2304), + [anon_sym_readonly] = ACTIONS(2304), + [anon_sym_get] = ACTIONS(2304), + [anon_sym_set] = ACTIONS(2304), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_public] = ACTIONS(2304), + [anon_sym_private] = ACTIONS(2304), + [anon_sym_protected] = ACTIONS(2304), + [anon_sym_override] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_any] = ACTIONS(2304), + [anon_sym_number] = ACTIONS(2304), + [anon_sym_boolean] = ACTIONS(2304), + [anon_sym_string] = ACTIONS(2304), + [anon_sym_symbol] = ACTIONS(2304), + [anon_sym_object] = ACTIONS(2304), + [anon_sym_abstract] = ACTIONS(2304), + [anon_sym_interface] = ACTIONS(2304), + [anon_sym_enum] = ACTIONS(2304), + [sym__automatic_semicolon] = ACTIONS(2306), [sym_html_comment] = ACTIONS(5), }, [1152] = { [sym_comment] = STATE(1152), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [sym_identifier] = ACTIONS(3391), + [anon_sym_export] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3391), + [anon_sym_type] = ACTIONS(3391), + [anon_sym_namespace] = ACTIONS(3391), + [anon_sym_LBRACE] = ACTIONS(3391), + [anon_sym_RBRACE] = ACTIONS(3391), + [anon_sym_typeof] = ACTIONS(3391), + [anon_sym_import] = ACTIONS(3391), + [anon_sym_with] = ACTIONS(3391), + [anon_sym_var] = ACTIONS(3391), + [anon_sym_let] = ACTIONS(3391), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_else] = ACTIONS(3391), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_switch] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_LPAREN] = ACTIONS(3391), + [anon_sym_await] = ACTIONS(3391), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_do] = ACTIONS(3391), + [anon_sym_try] = ACTIONS(3391), + [anon_sym_break] = ACTIONS(3391), + [anon_sym_continue] = ACTIONS(3391), + [anon_sym_debugger] = ACTIONS(3391), + [anon_sym_return] = ACTIONS(3391), + [anon_sym_throw] = ACTIONS(3391), + [anon_sym_SEMI] = ACTIONS(3391), + [anon_sym_case] = ACTIONS(3391), + [anon_sym_yield] = ACTIONS(3391), + [anon_sym_LBRACK] = ACTIONS(3391), + [anon_sym_LTtemplate_GT] = ACTIONS(3391), + [anon_sym_DQUOTE] = ACTIONS(3391), + [anon_sym_SQUOTE] = ACTIONS(3391), + [anon_sym_class] = ACTIONS(3391), + [anon_sym_async] = ACTIONS(3391), + [anon_sym_function] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_using] = ACTIONS(3391), + [anon_sym_PLUS] = ACTIONS(3391), + [anon_sym_DASH] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(3391), + [anon_sym_void] = ACTIONS(3391), + [anon_sym_delete] = ACTIONS(3391), + [anon_sym_PLUS_PLUS] = ACTIONS(3391), + [anon_sym_DASH_DASH] = ACTIONS(3391), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3391), + [sym_number] = ACTIONS(3391), + [sym_private_property_identifier] = ACTIONS(3391), + [sym_this] = ACTIONS(3391), + [sym_super] = ACTIONS(3391), + [sym_true] = ACTIONS(3391), + [sym_false] = ACTIONS(3391), + [sym_null] = ACTIONS(3391), + [sym_undefined] = ACTIONS(3391), + [anon_sym_AT] = ACTIONS(3391), + [anon_sym_static] = ACTIONS(3391), + [anon_sym_readonly] = ACTIONS(3391), + [anon_sym_get] = ACTIONS(3391), + [anon_sym_set] = ACTIONS(3391), + [anon_sym_declare] = ACTIONS(3391), + [anon_sym_public] = ACTIONS(3391), + [anon_sym_private] = ACTIONS(3391), + [anon_sym_protected] = ACTIONS(3391), + [anon_sym_override] = ACTIONS(3391), + [anon_sym_module] = ACTIONS(3391), + [anon_sym_any] = ACTIONS(3391), + [anon_sym_number] = ACTIONS(3391), + [anon_sym_boolean] = ACTIONS(3391), + [anon_sym_string] = ACTIONS(3391), + [anon_sym_symbol] = ACTIONS(3391), + [anon_sym_object] = ACTIONS(3391), + [anon_sym_abstract] = ACTIONS(3391), + [anon_sym_interface] = ACTIONS(3391), + [anon_sym_enum] = ACTIONS(3391), [sym_html_comment] = ACTIONS(5), }, [1153] = { [sym_comment] = STATE(1153), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [sym_identifier] = ACTIONS(3393), + [anon_sym_export] = ACTIONS(3393), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_type] = ACTIONS(3393), + [anon_sym_namespace] = ACTIONS(3393), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_RBRACE] = ACTIONS(3393), + [anon_sym_typeof] = ACTIONS(3393), + [anon_sym_import] = ACTIONS(3393), + [anon_sym_with] = ACTIONS(3393), + [anon_sym_var] = ACTIONS(3393), + [anon_sym_let] = ACTIONS(3393), + [anon_sym_const] = ACTIONS(3393), + [anon_sym_BANG] = ACTIONS(3393), + [anon_sym_else] = ACTIONS(3393), + [anon_sym_if] = ACTIONS(3393), + [anon_sym_switch] = ACTIONS(3393), + [anon_sym_for] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_await] = ACTIONS(3393), + [anon_sym_while] = ACTIONS(3393), + [anon_sym_do] = ACTIONS(3393), + [anon_sym_try] = ACTIONS(3393), + [anon_sym_break] = ACTIONS(3393), + [anon_sym_continue] = ACTIONS(3393), + [anon_sym_debugger] = ACTIONS(3393), + [anon_sym_return] = ACTIONS(3393), + [anon_sym_throw] = ACTIONS(3393), + [anon_sym_SEMI] = ACTIONS(3393), + [anon_sym_case] = ACTIONS(3393), + [anon_sym_yield] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LTtemplate_GT] = ACTIONS(3393), + [anon_sym_DQUOTE] = ACTIONS(3393), + [anon_sym_SQUOTE] = ACTIONS(3393), + [anon_sym_class] = ACTIONS(3393), + [anon_sym_async] = ACTIONS(3393), + [anon_sym_function] = ACTIONS(3393), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_using] = ACTIONS(3393), + [anon_sym_PLUS] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3393), + [anon_sym_SLASH] = ACTIONS(3393), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_TILDE] = ACTIONS(3393), + [anon_sym_void] = ACTIONS(3393), + [anon_sym_delete] = ACTIONS(3393), + [anon_sym_PLUS_PLUS] = ACTIONS(3393), + [anon_sym_DASH_DASH] = ACTIONS(3393), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3393), + [sym_number] = ACTIONS(3393), + [sym_private_property_identifier] = ACTIONS(3393), + [sym_this] = ACTIONS(3393), + [sym_super] = ACTIONS(3393), + [sym_true] = ACTIONS(3393), + [sym_false] = ACTIONS(3393), + [sym_null] = ACTIONS(3393), + [sym_undefined] = ACTIONS(3393), + [anon_sym_AT] = ACTIONS(3393), + [anon_sym_static] = ACTIONS(3393), + [anon_sym_readonly] = ACTIONS(3393), + [anon_sym_get] = ACTIONS(3393), + [anon_sym_set] = ACTIONS(3393), + [anon_sym_declare] = ACTIONS(3393), + [anon_sym_public] = ACTIONS(3393), + [anon_sym_private] = ACTIONS(3393), + [anon_sym_protected] = ACTIONS(3393), + [anon_sym_override] = ACTIONS(3393), + [anon_sym_module] = ACTIONS(3393), + [anon_sym_any] = ACTIONS(3393), + [anon_sym_number] = ACTIONS(3393), + [anon_sym_boolean] = ACTIONS(3393), + [anon_sym_string] = ACTIONS(3393), + [anon_sym_symbol] = ACTIONS(3393), + [anon_sym_object] = ACTIONS(3393), + [anon_sym_abstract] = ACTIONS(3393), + [anon_sym_interface] = ACTIONS(3393), + [anon_sym_enum] = ACTIONS(3393), [sym_html_comment] = ACTIONS(5), }, [1154] = { [sym_comment] = STATE(1154), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [sym_identifier] = ACTIONS(3395), + [anon_sym_export] = ACTIONS(3395), + [anon_sym_default] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_typeof] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3395), + [anon_sym_with] = ACTIONS(3395), + [anon_sym_var] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3395), + [anon_sym_else] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_debugger] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_case] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_LTtemplate_GT] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_function] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_SLASH] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_void] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3395), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3395), + [sym_number] = ACTIONS(3395), + [sym_private_property_identifier] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [sym_null] = ACTIONS(3395), + [sym_undefined] = ACTIONS(3395), + [anon_sym_AT] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_get] = ACTIONS(3395), + [anon_sym_set] = ACTIONS(3395), + [anon_sym_declare] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_private] = ACTIONS(3395), + [anon_sym_protected] = ACTIONS(3395), + [anon_sym_override] = ACTIONS(3395), + [anon_sym_module] = ACTIONS(3395), + [anon_sym_any] = ACTIONS(3395), + [anon_sym_number] = ACTIONS(3395), + [anon_sym_boolean] = ACTIONS(3395), + [anon_sym_string] = ACTIONS(3395), + [anon_sym_symbol] = ACTIONS(3395), + [anon_sym_object] = ACTIONS(3395), + [anon_sym_abstract] = ACTIONS(3395), + [anon_sym_interface] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), [sym_html_comment] = ACTIONS(5), }, [1155] = { [sym_comment] = STATE(1155), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, [1156] = { [sym_comment] = STATE(1156), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_finally] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), + [sym_identifier] = ACTIONS(2292), + [anon_sym_export] = ACTIONS(2292), + [anon_sym_default] = ACTIONS(2292), + [anon_sym_type] = ACTIONS(2292), + [anon_sym_namespace] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_typeof] = ACTIONS(2292), + [anon_sym_import] = ACTIONS(2292), + [anon_sym_with] = ACTIONS(2292), + [anon_sym_var] = ACTIONS(2292), + [anon_sym_let] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_if] = ACTIONS(2292), + [anon_sym_switch] = ACTIONS(2292), + [anon_sym_for] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_await] = ACTIONS(2292), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(2292), + [anon_sym_try] = ACTIONS(2292), + [anon_sym_break] = ACTIONS(2292), + [anon_sym_continue] = ACTIONS(2292), + [anon_sym_debugger] = ACTIONS(2292), + [anon_sym_return] = ACTIONS(2292), + [anon_sym_throw] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_case] = ACTIONS(2292), + [anon_sym_yield] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2292), + [anon_sym_LTtemplate_GT] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_SQUOTE] = ACTIONS(2292), + [anon_sym_class] = ACTIONS(2292), + [anon_sym_async] = ACTIONS(2292), + [anon_sym_function] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_using] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_SLASH] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2292), + [anon_sym_void] = ACTIONS(2292), + [anon_sym_delete] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2292), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2292), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [sym_this] = ACTIONS(2292), + [sym_super] = ACTIONS(2292), + [sym_true] = ACTIONS(2292), + [sym_false] = ACTIONS(2292), + [sym_null] = ACTIONS(2292), + [sym_undefined] = ACTIONS(2292), + [anon_sym_AT] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2292), + [anon_sym_readonly] = ACTIONS(2292), + [anon_sym_get] = ACTIONS(2292), + [anon_sym_set] = ACTIONS(2292), + [anon_sym_declare] = ACTIONS(2292), + [anon_sym_public] = ACTIONS(2292), + [anon_sym_private] = ACTIONS(2292), + [anon_sym_protected] = ACTIONS(2292), + [anon_sym_override] = ACTIONS(2292), + [anon_sym_module] = ACTIONS(2292), + [anon_sym_any] = ACTIONS(2292), + [anon_sym_number] = ACTIONS(2292), + [anon_sym_boolean] = ACTIONS(2292), + [anon_sym_string] = ACTIONS(2292), + [anon_sym_symbol] = ACTIONS(2292), + [anon_sym_object] = ACTIONS(2292), + [anon_sym_abstract] = ACTIONS(2292), + [anon_sym_interface] = ACTIONS(2292), + [anon_sym_enum] = ACTIONS(2292), + [sym__automatic_semicolon] = ACTIONS(2342), [sym_html_comment] = ACTIONS(5), }, [1157] = { [sym_comment] = STATE(1157), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [sym_identifier] = ACTIONS(2260), + [anon_sym_export] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2260), + [anon_sym_type] = ACTIONS(2260), + [anon_sym_namespace] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_typeof] = ACTIONS(2260), + [anon_sym_import] = ACTIONS(2260), + [anon_sym_with] = ACTIONS(2260), + [anon_sym_var] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [anon_sym_BANG] = ACTIONS(2260), + [anon_sym_else] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_switch] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_await] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), + [anon_sym_try] = ACTIONS(2260), + [anon_sym_break] = ACTIONS(2260), + [anon_sym_continue] = ACTIONS(2260), + [anon_sym_debugger] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_throw] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_yield] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_LTtemplate_GT] = ACTIONS(2260), + [anon_sym_DQUOTE] = ACTIONS(2260), + [anon_sym_SQUOTE] = ACTIONS(2260), + [anon_sym_class] = ACTIONS(2260), + [anon_sym_async] = ACTIONS(2260), + [anon_sym_function] = ACTIONS(2260), + [anon_sym_new] = ACTIONS(2260), + [anon_sym_using] = ACTIONS(2260), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2260), + [anon_sym_TILDE] = ACTIONS(2260), + [anon_sym_void] = ACTIONS(2260), + [anon_sym_delete] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2260), + [sym_number] = ACTIONS(2260), + [sym_private_property_identifier] = ACTIONS(2260), + [sym_this] = ACTIONS(2260), + [sym_super] = ACTIONS(2260), + [sym_true] = ACTIONS(2260), + [sym_false] = ACTIONS(2260), + [sym_null] = ACTIONS(2260), + [sym_undefined] = ACTIONS(2260), + [anon_sym_AT] = ACTIONS(2260), + [anon_sym_static] = ACTIONS(2260), + [anon_sym_readonly] = ACTIONS(2260), + [anon_sym_get] = ACTIONS(2260), + [anon_sym_set] = ACTIONS(2260), + [anon_sym_declare] = ACTIONS(2260), + [anon_sym_public] = ACTIONS(2260), + [anon_sym_private] = ACTIONS(2260), + [anon_sym_protected] = ACTIONS(2260), + [anon_sym_override] = ACTIONS(2260), + [anon_sym_module] = ACTIONS(2260), + [anon_sym_any] = ACTIONS(2260), + [anon_sym_number] = ACTIONS(2260), + [anon_sym_boolean] = ACTIONS(2260), + [anon_sym_string] = ACTIONS(2260), + [anon_sym_symbol] = ACTIONS(2260), + [anon_sym_object] = ACTIONS(2260), + [anon_sym_abstract] = ACTIONS(2260), + [anon_sym_interface] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), [sym_html_comment] = ACTIONS(5), }, [1158] = { [sym_comment] = STATE(1158), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [sym_identifier] = ACTIONS(3395), + [anon_sym_export] = ACTIONS(3395), + [anon_sym_default] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_typeof] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3395), + [anon_sym_with] = ACTIONS(3395), + [anon_sym_var] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3395), + [anon_sym_else] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_debugger] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_case] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_LTtemplate_GT] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_function] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_SLASH] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_void] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3395), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3395), + [sym_number] = ACTIONS(3395), + [sym_private_property_identifier] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [sym_null] = ACTIONS(3395), + [sym_undefined] = ACTIONS(3395), + [anon_sym_AT] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_get] = ACTIONS(3395), + [anon_sym_set] = ACTIONS(3395), + [anon_sym_declare] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_private] = ACTIONS(3395), + [anon_sym_protected] = ACTIONS(3395), + [anon_sym_override] = ACTIONS(3395), + [anon_sym_module] = ACTIONS(3395), + [anon_sym_any] = ACTIONS(3395), + [anon_sym_number] = ACTIONS(3395), + [anon_sym_boolean] = ACTIONS(3395), + [anon_sym_string] = ACTIONS(3395), + [anon_sym_symbol] = ACTIONS(3395), + [anon_sym_object] = ACTIONS(3395), + [anon_sym_abstract] = ACTIONS(3395), + [anon_sym_interface] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), [sym_html_comment] = ACTIONS(5), }, [1159] = { + [sym_finally_clause] = STATE(1613), [sym_comment] = STATE(1159), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(3181), + [sym_identifier] = ACTIONS(3145), + [anon_sym_export] = ACTIONS(3145), + [anon_sym_type] = ACTIONS(3145), + [anon_sym_namespace] = ACTIONS(3145), + [anon_sym_LBRACE] = ACTIONS(3145), + [anon_sym_RBRACE] = ACTIONS(3145), + [anon_sym_typeof] = ACTIONS(3145), + [anon_sym_import] = ACTIONS(3145), + [anon_sym_with] = ACTIONS(3145), + [anon_sym_var] = ACTIONS(3145), + [anon_sym_let] = ACTIONS(3145), + [anon_sym_const] = ACTIONS(3145), + [anon_sym_BANG] = ACTIONS(3145), + [anon_sym_if] = ACTIONS(3145), + [anon_sym_switch] = ACTIONS(3145), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_LPAREN] = ACTIONS(3145), + [anon_sym_await] = ACTIONS(3145), + [anon_sym_while] = ACTIONS(3145), + [anon_sym_do] = ACTIONS(3145), + [anon_sym_try] = ACTIONS(3145), + [anon_sym_break] = ACTIONS(3145), + [anon_sym_continue] = ACTIONS(3145), + [anon_sym_debugger] = ACTIONS(3145), + [anon_sym_return] = ACTIONS(3145), + [anon_sym_throw] = ACTIONS(3145), + [anon_sym_SEMI] = ACTIONS(3145), + [anon_sym_finally] = ACTIONS(3137), + [anon_sym_yield] = ACTIONS(3145), + [anon_sym_LBRACK] = ACTIONS(3145), + [anon_sym_LTtemplate_GT] = ACTIONS(3145), + [anon_sym_DQUOTE] = ACTIONS(3145), + [anon_sym_SQUOTE] = ACTIONS(3145), + [anon_sym_class] = ACTIONS(3145), + [anon_sym_async] = ACTIONS(3145), + [anon_sym_function] = ACTIONS(3145), + [anon_sym_new] = ACTIONS(3145), + [anon_sym_using] = ACTIONS(3145), + [anon_sym_PLUS] = ACTIONS(3145), + [anon_sym_DASH] = ACTIONS(3145), + [anon_sym_SLASH] = ACTIONS(3145), + [anon_sym_LT] = ACTIONS(3145), + [anon_sym_TILDE] = ACTIONS(3145), + [anon_sym_void] = ACTIONS(3145), + [anon_sym_delete] = ACTIONS(3145), + [anon_sym_PLUS_PLUS] = ACTIONS(3145), + [anon_sym_DASH_DASH] = ACTIONS(3145), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3145), + [sym_number] = ACTIONS(3145), + [sym_private_property_identifier] = ACTIONS(3145), + [sym_this] = ACTIONS(3145), + [sym_super] = ACTIONS(3145), + [sym_true] = ACTIONS(3145), + [sym_false] = ACTIONS(3145), + [sym_null] = ACTIONS(3145), + [sym_undefined] = ACTIONS(3145), + [anon_sym_AT] = ACTIONS(3145), + [anon_sym_static] = ACTIONS(3145), + [anon_sym_readonly] = ACTIONS(3145), + [anon_sym_get] = ACTIONS(3145), + [anon_sym_set] = ACTIONS(3145), + [anon_sym_declare] = ACTIONS(3145), + [anon_sym_public] = ACTIONS(3145), + [anon_sym_private] = ACTIONS(3145), + [anon_sym_protected] = ACTIONS(3145), + [anon_sym_override] = ACTIONS(3145), + [anon_sym_module] = ACTIONS(3145), + [anon_sym_any] = ACTIONS(3145), + [anon_sym_number] = ACTIONS(3145), + [anon_sym_boolean] = ACTIONS(3145), + [anon_sym_string] = ACTIONS(3145), + [anon_sym_symbol] = ACTIONS(3145), + [anon_sym_object] = ACTIONS(3145), + [anon_sym_abstract] = ACTIONS(3145), + [anon_sym_interface] = ACTIONS(3145), + [anon_sym_enum] = ACTIONS(3145), [sym_html_comment] = ACTIONS(5), }, [1160] = { [sym_comment] = STATE(1160), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_finally] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), [sym_html_comment] = ACTIONS(5), }, [1161] = { [sym_comment] = STATE(1161), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [sym_identifier] = ACTIONS(2234), + [anon_sym_export] = ACTIONS(2234), + [anon_sym_default] = ACTIONS(2234), + [anon_sym_type] = ACTIONS(2234), + [anon_sym_namespace] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_typeof] = ACTIONS(2234), + [anon_sym_import] = ACTIONS(2234), + [anon_sym_with] = ACTIONS(2234), + [anon_sym_var] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [anon_sym_BANG] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_switch] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_await] = ACTIONS(2234), + [anon_sym_while] = ACTIONS(2234), + [anon_sym_do] = ACTIONS(2234), + [anon_sym_try] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_debugger] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_throw] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_case] = ACTIONS(2234), + [anon_sym_yield] = ACTIONS(2234), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_LTtemplate_GT] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_class] = ACTIONS(2234), + [anon_sym_async] = ACTIONS(2234), + [anon_sym_function] = ACTIONS(2234), + [anon_sym_new] = ACTIONS(2234), + [anon_sym_using] = ACTIONS(2234), + [anon_sym_PLUS] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2234), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_void] = ACTIONS(2234), + [anon_sym_delete] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2234), + [sym_number] = ACTIONS(2234), + [sym_private_property_identifier] = ACTIONS(2234), + [sym_this] = ACTIONS(2234), + [sym_super] = ACTIONS(2234), + [sym_true] = ACTIONS(2234), + [sym_false] = ACTIONS(2234), + [sym_null] = ACTIONS(2234), + [sym_undefined] = ACTIONS(2234), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_static] = ACTIONS(2234), + [anon_sym_readonly] = ACTIONS(2234), + [anon_sym_get] = ACTIONS(2234), + [anon_sym_set] = ACTIONS(2234), + [anon_sym_declare] = ACTIONS(2234), + [anon_sym_public] = ACTIONS(2234), + [anon_sym_private] = ACTIONS(2234), + [anon_sym_protected] = ACTIONS(2234), + [anon_sym_override] = ACTIONS(2234), + [anon_sym_module] = ACTIONS(2234), + [anon_sym_any] = ACTIONS(2234), + [anon_sym_number] = ACTIONS(2234), + [anon_sym_boolean] = ACTIONS(2234), + [anon_sym_string] = ACTIONS(2234), + [anon_sym_symbol] = ACTIONS(2234), + [anon_sym_object] = ACTIONS(2234), + [anon_sym_abstract] = ACTIONS(2234), + [anon_sym_interface] = ACTIONS(2234), + [anon_sym_enum] = ACTIONS(2234), + [sym__automatic_semicolon] = ACTIONS(2392), [sym_html_comment] = ACTIONS(5), }, [1162] = { [sym_comment] = STATE(1162), - [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_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_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_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_abstract] = ACTIONS(3341), - [anon_sym_interface] = ACTIONS(3341), - [anon_sym_enum] = ACTIONS(3341), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_default] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_case] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(3397), [sym_html_comment] = ACTIONS(5), }, [1163] = { [sym_comment] = STATE(1163), - [ts_builtin_sym_end] = ACTIONS(2420), - [sym_identifier] = ACTIONS(2266), - [anon_sym_export] = ACTIONS(2266), - [anon_sym_type] = ACTIONS(2266), - [anon_sym_namespace] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(2266), - [anon_sym_RBRACE] = ACTIONS(2266), - [anon_sym_typeof] = ACTIONS(2266), - [anon_sym_import] = ACTIONS(2266), - [anon_sym_with] = ACTIONS(2266), - [anon_sym_var] = ACTIONS(2266), - [anon_sym_let] = ACTIONS(2266), - [anon_sym_const] = ACTIONS(2266), - [anon_sym_BANG] = ACTIONS(2266), - [anon_sym_else] = ACTIONS(2266), - [anon_sym_if] = ACTIONS(2266), - [anon_sym_switch] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2266), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_await] = ACTIONS(2266), - [anon_sym_while] = ACTIONS(2266), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_try] = ACTIONS(2266), - [anon_sym_break] = ACTIONS(2266), - [anon_sym_continue] = ACTIONS(2266), - [anon_sym_debugger] = ACTIONS(2266), - [anon_sym_return] = ACTIONS(2266), - [anon_sym_throw] = ACTIONS(2266), - [anon_sym_SEMI] = ACTIONS(2266), - [anon_sym_yield] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2266), - [anon_sym_LTtemplate_GT] = ACTIONS(2266), - [anon_sym_DQUOTE] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2266), - [anon_sym_class] = ACTIONS(2266), - [anon_sym_async] = ACTIONS(2266), - [anon_sym_function] = ACTIONS(2266), - [anon_sym_new] = ACTIONS(2266), - [anon_sym_using] = ACTIONS(2266), - [anon_sym_PLUS] = ACTIONS(2266), - [anon_sym_DASH] = ACTIONS(2266), - [anon_sym_SLASH] = ACTIONS(2266), - [anon_sym_LT] = ACTIONS(2266), - [anon_sym_TILDE] = ACTIONS(2266), - [anon_sym_void] = ACTIONS(2266), - [anon_sym_delete] = ACTIONS(2266), - [anon_sym_PLUS_PLUS] = ACTIONS(2266), - [anon_sym_DASH_DASH] = ACTIONS(2266), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2266), - [sym_number] = ACTIONS(2266), - [sym_private_property_identifier] = ACTIONS(2266), - [sym_this] = ACTIONS(2266), - [sym_super] = ACTIONS(2266), - [sym_true] = ACTIONS(2266), - [sym_false] = ACTIONS(2266), - [sym_null] = ACTIONS(2266), - [sym_undefined] = ACTIONS(2266), - [anon_sym_AT] = ACTIONS(2266), - [anon_sym_static] = ACTIONS(2266), - [anon_sym_readonly] = ACTIONS(2266), - [anon_sym_get] = ACTIONS(2266), - [anon_sym_set] = ACTIONS(2266), - [anon_sym_declare] = ACTIONS(2266), - [anon_sym_public] = ACTIONS(2266), - [anon_sym_private] = ACTIONS(2266), - [anon_sym_protected] = ACTIONS(2266), - [anon_sym_override] = ACTIONS(2266), - [anon_sym_module] = ACTIONS(2266), - [anon_sym_any] = ACTIONS(2266), - [anon_sym_number] = ACTIONS(2266), - [anon_sym_boolean] = ACTIONS(2266), - [anon_sym_string] = ACTIONS(2266), - [anon_sym_symbol] = ACTIONS(2266), - [anon_sym_object] = ACTIONS(2266), - [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_interface] = ACTIONS(2266), - [anon_sym_enum] = ACTIONS(2266), - [sym__automatic_semicolon] = ACTIONS(2422), + [sym_identifier] = ACTIONS(3211), + [anon_sym_export] = ACTIONS(3211), + [anon_sym_default] = ACTIONS(3211), + [anon_sym_type] = ACTIONS(3211), + [anon_sym_namespace] = ACTIONS(3211), + [anon_sym_LBRACE] = ACTIONS(3211), + [anon_sym_RBRACE] = ACTIONS(3211), + [anon_sym_typeof] = ACTIONS(3211), + [anon_sym_import] = ACTIONS(3211), + [anon_sym_with] = ACTIONS(3211), + [anon_sym_var] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_const] = ACTIONS(3211), + [anon_sym_BANG] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3211), + [anon_sym_switch] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3211), + [anon_sym_await] = ACTIONS(3211), + [anon_sym_while] = ACTIONS(3211), + [anon_sym_do] = ACTIONS(3211), + [anon_sym_try] = ACTIONS(3211), + [anon_sym_break] = ACTIONS(3211), + [anon_sym_continue] = ACTIONS(3211), + [anon_sym_debugger] = ACTIONS(3211), + [anon_sym_return] = ACTIONS(3211), + [anon_sym_throw] = ACTIONS(3211), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym_case] = ACTIONS(3211), + [anon_sym_finally] = ACTIONS(3211), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3211), + [anon_sym_LTtemplate_GT] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(3211), + [anon_sym_SQUOTE] = ACTIONS(3211), + [anon_sym_class] = ACTIONS(3211), + [anon_sym_async] = ACTIONS(3211), + [anon_sym_function] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3211), + [anon_sym_using] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_DASH] = ACTIONS(3211), + [anon_sym_SLASH] = ACTIONS(3211), + [anon_sym_LT] = ACTIONS(3211), + [anon_sym_TILDE] = ACTIONS(3211), + [anon_sym_void] = ACTIONS(3211), + [anon_sym_delete] = ACTIONS(3211), + [anon_sym_PLUS_PLUS] = ACTIONS(3211), + [anon_sym_DASH_DASH] = ACTIONS(3211), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3211), + [sym_number] = ACTIONS(3211), + [sym_private_property_identifier] = ACTIONS(3211), + [sym_this] = ACTIONS(3211), + [sym_super] = ACTIONS(3211), + [sym_true] = ACTIONS(3211), + [sym_false] = ACTIONS(3211), + [sym_null] = ACTIONS(3211), + [sym_undefined] = ACTIONS(3211), + [anon_sym_AT] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_readonly] = ACTIONS(3211), + [anon_sym_get] = ACTIONS(3211), + [anon_sym_set] = ACTIONS(3211), + [anon_sym_declare] = ACTIONS(3211), + [anon_sym_public] = ACTIONS(3211), + [anon_sym_private] = ACTIONS(3211), + [anon_sym_protected] = ACTIONS(3211), + [anon_sym_override] = ACTIONS(3211), + [anon_sym_module] = ACTIONS(3211), + [anon_sym_any] = ACTIONS(3211), + [anon_sym_number] = ACTIONS(3211), + [anon_sym_boolean] = ACTIONS(3211), + [anon_sym_string] = ACTIONS(3211), + [anon_sym_symbol] = ACTIONS(3211), + [anon_sym_object] = ACTIONS(3211), + [anon_sym_abstract] = ACTIONS(3211), + [anon_sym_interface] = ACTIONS(3211), + [anon_sym_enum] = ACTIONS(3211), [sym_html_comment] = ACTIONS(5), }, [1164] = { [sym_comment] = STATE(1164), - [ts_builtin_sym_end] = ACTIONS(2424), - [sym_identifier] = ACTIONS(2194), - [anon_sym_export] = ACTIONS(2194), - [anon_sym_type] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_typeof] = ACTIONS(2194), - [anon_sym_import] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2194), - [anon_sym_var] = ACTIONS(2194), - [anon_sym_let] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_await] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_debugger] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2194), - [anon_sym_yield] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_LTtemplate_GT] = ACTIONS(2194), - [anon_sym_DQUOTE] = ACTIONS(2194), - [anon_sym_SQUOTE] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_async] = ACTIONS(2194), - [anon_sym_function] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_SLASH] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_void] = ACTIONS(2194), - [anon_sym_delete] = ACTIONS(2194), - [anon_sym_PLUS_PLUS] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2194), - [sym_number] = ACTIONS(2194), - [sym_private_property_identifier] = ACTIONS(2194), - [sym_this] = ACTIONS(2194), - [sym_super] = ACTIONS(2194), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [sym_null] = ACTIONS(2194), - [sym_undefined] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_readonly] = ACTIONS(2194), - [anon_sym_get] = ACTIONS(2194), - [anon_sym_set] = ACTIONS(2194), - [anon_sym_declare] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_override] = ACTIONS(2194), - [anon_sym_module] = ACTIONS(2194), - [anon_sym_any] = ACTIONS(2194), - [anon_sym_number] = ACTIONS(2194), - [anon_sym_boolean] = ACTIONS(2194), - [anon_sym_string] = ACTIONS(2194), - [anon_sym_symbol] = ACTIONS(2194), - [anon_sym_object] = ACTIONS(2194), - [anon_sym_abstract] = ACTIONS(2194), - [anon_sym_interface] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [sym__automatic_semicolon] = ACTIONS(2426), + [sym_identifier] = ACTIONS(2264), + [anon_sym_export] = ACTIONS(2264), + [anon_sym_default] = ACTIONS(2264), + [anon_sym_type] = ACTIONS(2264), + [anon_sym_namespace] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2264), + [anon_sym_RBRACE] = ACTIONS(2264), + [anon_sym_typeof] = ACTIONS(2264), + [anon_sym_import] = ACTIONS(2264), + [anon_sym_with] = ACTIONS(2264), + [anon_sym_var] = ACTIONS(2264), + [anon_sym_let] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_BANG] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_switch] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2264), + [anon_sym_await] = ACTIONS(2264), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2264), + [anon_sym_try] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_debugger] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_throw] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym_case] = ACTIONS(2264), + [anon_sym_yield] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_LTtemplate_GT] = ACTIONS(2264), + [anon_sym_DQUOTE] = ACTIONS(2264), + [anon_sym_SQUOTE] = ACTIONS(2264), + [anon_sym_class] = ACTIONS(2264), + [anon_sym_async] = ACTIONS(2264), + [anon_sym_function] = ACTIONS(2264), + [anon_sym_new] = ACTIONS(2264), + [anon_sym_using] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_SLASH] = ACTIONS(2264), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_TILDE] = ACTIONS(2264), + [anon_sym_void] = ACTIONS(2264), + [anon_sym_delete] = ACTIONS(2264), + [anon_sym_PLUS_PLUS] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(2264), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2264), + [sym_number] = ACTIONS(2264), + [sym_private_property_identifier] = ACTIONS(2264), + [sym_this] = ACTIONS(2264), + [sym_super] = ACTIONS(2264), + [sym_true] = ACTIONS(2264), + [sym_false] = ACTIONS(2264), + [sym_null] = ACTIONS(2264), + [sym_undefined] = ACTIONS(2264), + [anon_sym_AT] = ACTIONS(2264), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_readonly] = ACTIONS(2264), + [anon_sym_get] = ACTIONS(2264), + [anon_sym_set] = ACTIONS(2264), + [anon_sym_declare] = ACTIONS(2264), + [anon_sym_public] = ACTIONS(2264), + [anon_sym_private] = ACTIONS(2264), + [anon_sym_protected] = ACTIONS(2264), + [anon_sym_override] = ACTIONS(2264), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_any] = ACTIONS(2264), + [anon_sym_number] = ACTIONS(2264), + [anon_sym_boolean] = ACTIONS(2264), + [anon_sym_string] = ACTIONS(2264), + [anon_sym_symbol] = ACTIONS(2264), + [anon_sym_object] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2264), + [anon_sym_interface] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + [sym__automatic_semicolon] = ACTIONS(2320), [sym_html_comment] = ACTIONS(5), }, [1165] = { [sym_comment] = STATE(1165), - [sym_identifier] = ACTIONS(3343), - [anon_sym_export] = ACTIONS(3343), - [anon_sym_default] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_typeof] = ACTIONS(3343), - [anon_sym_import] = ACTIONS(3343), - [anon_sym_with] = ACTIONS(3343), - [anon_sym_var] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_else] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_switch] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_await] = ACTIONS(3343), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_do] = ACTIONS(3343), - [anon_sym_try] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_debugger] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_throw] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_case] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3343), - [anon_sym_LTtemplate_GT] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_class] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3343), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_using] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_void] = ACTIONS(3343), - [anon_sym_delete] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3343), - [sym_number] = ACTIONS(3343), - [sym_private_property_identifier] = ACTIONS(3343), - [sym_this] = ACTIONS(3343), - [sym_super] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_null] = ACTIONS(3343), - [sym_undefined] = ACTIONS(3343), - [anon_sym_AT] = ACTIONS(3343), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_get] = ACTIONS(3343), - [anon_sym_set] = ACTIONS(3343), - [anon_sym_declare] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_module] = ACTIONS(3343), - [anon_sym_any] = ACTIONS(3343), - [anon_sym_number] = ACTIONS(3343), - [anon_sym_boolean] = ACTIONS(3343), - [anon_sym_string] = ACTIONS(3343), - [anon_sym_symbol] = ACTIONS(3343), - [anon_sym_object] = ACTIONS(3343), - [anon_sym_abstract] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), + [sym_identifier] = ACTIONS(2272), + [anon_sym_export] = ACTIONS(2272), + [anon_sym_default] = ACTIONS(2272), + [anon_sym_type] = ACTIONS(2272), + [anon_sym_namespace] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_typeof] = ACTIONS(2272), + [anon_sym_import] = ACTIONS(2272), + [anon_sym_with] = ACTIONS(2272), + [anon_sym_var] = ACTIONS(2272), + [anon_sym_let] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [anon_sym_BANG] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_switch] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_await] = ACTIONS(2272), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_debugger] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_throw] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_case] = ACTIONS(2272), + [anon_sym_yield] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_LTtemplate_GT] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_class] = ACTIONS(2272), + [anon_sym_async] = ACTIONS(2272), + [anon_sym_function] = ACTIONS(2272), + [anon_sym_new] = ACTIONS(2272), + [anon_sym_using] = ACTIONS(2272), + [anon_sym_PLUS] = ACTIONS(2272), + [anon_sym_DASH] = ACTIONS(2272), + [anon_sym_SLASH] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_TILDE] = ACTIONS(2272), + [anon_sym_void] = ACTIONS(2272), + [anon_sym_delete] = ACTIONS(2272), + [anon_sym_PLUS_PLUS] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2272), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2272), + [sym_number] = ACTIONS(2272), + [sym_private_property_identifier] = ACTIONS(2272), + [sym_this] = ACTIONS(2272), + [sym_super] = ACTIONS(2272), + [sym_true] = ACTIONS(2272), + [sym_false] = ACTIONS(2272), + [sym_null] = ACTIONS(2272), + [sym_undefined] = ACTIONS(2272), + [anon_sym_AT] = ACTIONS(2272), + [anon_sym_static] = ACTIONS(2272), + [anon_sym_readonly] = ACTIONS(2272), + [anon_sym_get] = ACTIONS(2272), + [anon_sym_set] = ACTIONS(2272), + [anon_sym_declare] = ACTIONS(2272), + [anon_sym_public] = ACTIONS(2272), + [anon_sym_private] = ACTIONS(2272), + [anon_sym_protected] = ACTIONS(2272), + [anon_sym_override] = ACTIONS(2272), + [anon_sym_module] = ACTIONS(2272), + [anon_sym_any] = ACTIONS(2272), + [anon_sym_number] = ACTIONS(2272), + [anon_sym_boolean] = ACTIONS(2272), + [anon_sym_string] = ACTIONS(2272), + [anon_sym_symbol] = ACTIONS(2272), + [anon_sym_object] = ACTIONS(2272), + [anon_sym_abstract] = ACTIONS(2272), + [anon_sym_interface] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), + [sym__automatic_semicolon] = ACTIONS(2426), [sym_html_comment] = ACTIONS(5), }, [1166] = { [sym_comment] = STATE(1166), - [sym_identifier] = ACTIONS(3345), - [anon_sym_export] = ACTIONS(3345), - [anon_sym_default] = ACTIONS(3345), - [anon_sym_type] = ACTIONS(3345), - [anon_sym_namespace] = ACTIONS(3345), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_typeof] = ACTIONS(3345), - [anon_sym_import] = ACTIONS(3345), - [anon_sym_with] = ACTIONS(3345), - [anon_sym_var] = ACTIONS(3345), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_const] = ACTIONS(3345), - [anon_sym_BANG] = ACTIONS(3345), - [anon_sym_else] = ACTIONS(3345), - [anon_sym_if] = ACTIONS(3345), - [anon_sym_switch] = ACTIONS(3345), - [anon_sym_for] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_await] = ACTIONS(3345), - [anon_sym_while] = ACTIONS(3345), - [anon_sym_do] = ACTIONS(3345), - [anon_sym_try] = ACTIONS(3345), - [anon_sym_break] = ACTIONS(3345), - [anon_sym_continue] = ACTIONS(3345), - [anon_sym_debugger] = ACTIONS(3345), - [anon_sym_return] = ACTIONS(3345), - [anon_sym_throw] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_case] = ACTIONS(3345), - [anon_sym_yield] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_LTtemplate_GT] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(3345), - [anon_sym_SQUOTE] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_async] = ACTIONS(3345), - [anon_sym_function] = ACTIONS(3345), - [anon_sym_new] = ACTIONS(3345), - [anon_sym_using] = ACTIONS(3345), - [anon_sym_PLUS] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_SLASH] = ACTIONS(3345), - [anon_sym_LT] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_void] = ACTIONS(3345), - [anon_sym_delete] = ACTIONS(3345), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_DASH_DASH] = ACTIONS(3345), + [ts_builtin_sym_end] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_finally] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3345), - [sym_number] = ACTIONS(3345), - [sym_private_property_identifier] = ACTIONS(3345), - [sym_this] = ACTIONS(3345), - [sym_super] = ACTIONS(3345), - [sym_true] = ACTIONS(3345), - [sym_false] = ACTIONS(3345), - [sym_null] = ACTIONS(3345), - [sym_undefined] = ACTIONS(3345), - [anon_sym_AT] = ACTIONS(3345), - [anon_sym_static] = ACTIONS(3345), - [anon_sym_readonly] = ACTIONS(3345), - [anon_sym_get] = ACTIONS(3345), - [anon_sym_set] = ACTIONS(3345), - [anon_sym_declare] = ACTIONS(3345), - [anon_sym_public] = ACTIONS(3345), - [anon_sym_private] = ACTIONS(3345), - [anon_sym_protected] = ACTIONS(3345), - [anon_sym_override] = ACTIONS(3345), - [anon_sym_module] = ACTIONS(3345), - [anon_sym_any] = ACTIONS(3345), - [anon_sym_number] = ACTIONS(3345), - [anon_sym_boolean] = ACTIONS(3345), - [anon_sym_string] = ACTIONS(3345), - [anon_sym_symbol] = ACTIONS(3345), - [anon_sym_object] = ACTIONS(3345), - [anon_sym_abstract] = ACTIONS(3345), - [anon_sym_interface] = ACTIONS(3345), - [anon_sym_enum] = ACTIONS(3345), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, [1167] = { [sym_comment] = STATE(1167), - [ts_builtin_sym_end] = ACTIONS(2428), - [sym_identifier] = ACTIONS(2168), - [anon_sym_export] = ACTIONS(2168), - [anon_sym_type] = ACTIONS(2168), - [anon_sym_namespace] = ACTIONS(2168), - [anon_sym_LBRACE] = ACTIONS(2168), - [anon_sym_RBRACE] = ACTIONS(2168), - [anon_sym_typeof] = ACTIONS(2168), - [anon_sym_import] = ACTIONS(2168), - [anon_sym_with] = ACTIONS(2168), - [anon_sym_var] = ACTIONS(2168), - [anon_sym_let] = ACTIONS(2168), - [anon_sym_const] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(2168), - [anon_sym_else] = ACTIONS(2168), - [anon_sym_if] = ACTIONS(2168), - [anon_sym_switch] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_await] = ACTIONS(2168), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_do] = ACTIONS(2168), - [anon_sym_try] = ACTIONS(2168), - [anon_sym_break] = ACTIONS(2168), - [anon_sym_continue] = ACTIONS(2168), - [anon_sym_debugger] = ACTIONS(2168), - [anon_sym_return] = ACTIONS(2168), - [anon_sym_throw] = ACTIONS(2168), - [anon_sym_SEMI] = ACTIONS(2168), - [anon_sym_yield] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_LTtemplate_GT] = ACTIONS(2168), - [anon_sym_DQUOTE] = ACTIONS(2168), - [anon_sym_SQUOTE] = ACTIONS(2168), - [anon_sym_class] = ACTIONS(2168), - [anon_sym_async] = ACTIONS(2168), - [anon_sym_function] = ACTIONS(2168), - [anon_sym_new] = ACTIONS(2168), - [anon_sym_using] = ACTIONS(2168), - [anon_sym_PLUS] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2168), - [anon_sym_SLASH] = ACTIONS(2168), - [anon_sym_LT] = ACTIONS(2168), - [anon_sym_TILDE] = ACTIONS(2168), - [anon_sym_void] = ACTIONS(2168), - [anon_sym_delete] = ACTIONS(2168), - [anon_sym_PLUS_PLUS] = ACTIONS(2168), - [anon_sym_DASH_DASH] = ACTIONS(2168), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2168), - [sym_number] = ACTIONS(2168), - [sym_private_property_identifier] = ACTIONS(2168), - [sym_this] = ACTIONS(2168), - [sym_super] = ACTIONS(2168), - [sym_true] = ACTIONS(2168), - [sym_false] = ACTIONS(2168), - [sym_null] = ACTIONS(2168), - [sym_undefined] = ACTIONS(2168), - [anon_sym_AT] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_readonly] = ACTIONS(2168), - [anon_sym_get] = ACTIONS(2168), - [anon_sym_set] = ACTIONS(2168), - [anon_sym_declare] = ACTIONS(2168), - [anon_sym_public] = ACTIONS(2168), - [anon_sym_private] = ACTIONS(2168), - [anon_sym_protected] = ACTIONS(2168), - [anon_sym_override] = ACTIONS(2168), - [anon_sym_module] = ACTIONS(2168), - [anon_sym_any] = ACTIONS(2168), - [anon_sym_number] = ACTIONS(2168), - [anon_sym_boolean] = ACTIONS(2168), - [anon_sym_string] = ACTIONS(2168), - [anon_sym_symbol] = ACTIONS(2168), - [anon_sym_object] = ACTIONS(2168), - [anon_sym_abstract] = ACTIONS(2168), - [anon_sym_interface] = ACTIONS(2168), - [anon_sym_enum] = ACTIONS(2168), - [sym__automatic_semicolon] = ACTIONS(2430), + [sym_identifier] = ACTIONS(3395), + [anon_sym_export] = ACTIONS(3395), + [anon_sym_default] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_typeof] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3395), + [anon_sym_with] = ACTIONS(3395), + [anon_sym_var] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3395), + [anon_sym_else] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_debugger] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_case] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_LTtemplate_GT] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_function] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_SLASH] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_void] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3395), + [sym_number] = ACTIONS(3395), + [sym_private_property_identifier] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [sym_null] = ACTIONS(3395), + [sym_undefined] = ACTIONS(3395), + [anon_sym_AT] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_get] = ACTIONS(3395), + [anon_sym_set] = ACTIONS(3395), + [anon_sym_declare] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_private] = ACTIONS(3395), + [anon_sym_protected] = ACTIONS(3395), + [anon_sym_override] = ACTIONS(3395), + [anon_sym_module] = ACTIONS(3395), + [anon_sym_any] = ACTIONS(3395), + [anon_sym_number] = ACTIONS(3395), + [anon_sym_boolean] = ACTIONS(3395), + [anon_sym_string] = ACTIONS(3395), + [anon_sym_symbol] = ACTIONS(3395), + [anon_sym_object] = ACTIONS(3395), + [anon_sym_abstract] = ACTIONS(3395), + [anon_sym_interface] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), [sym_html_comment] = ACTIONS(5), }, [1168] = { [sym_comment] = STATE(1168), - [ts_builtin_sym_end] = ACTIONS(2404), - [sym_identifier] = ACTIONS(2280), - [anon_sym_export] = ACTIONS(2280), - [anon_sym_type] = ACTIONS(2280), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_typeof] = ACTIONS(2280), - [anon_sym_import] = ACTIONS(2280), - [anon_sym_with] = ACTIONS(2280), - [anon_sym_var] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_else] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_switch] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_await] = ACTIONS(2280), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_do] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_debugger] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_throw] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_yield] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_LTtemplate_GT] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_class] = ACTIONS(2280), - [anon_sym_async] = ACTIONS(2280), - [anon_sym_function] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2280), - [anon_sym_using] = ACTIONS(2280), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_SLASH] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_void] = ACTIONS(2280), - [anon_sym_delete] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), + [sym_identifier] = ACTIONS(3399), + [anon_sym_export] = ACTIONS(3399), + [anon_sym_default] = ACTIONS(3399), + [anon_sym_type] = ACTIONS(3399), + [anon_sym_namespace] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3399), + [anon_sym_RBRACE] = ACTIONS(3399), + [anon_sym_typeof] = ACTIONS(3399), + [anon_sym_import] = ACTIONS(3399), + [anon_sym_with] = ACTIONS(3399), + [anon_sym_var] = ACTIONS(3399), + [anon_sym_let] = ACTIONS(3399), + [anon_sym_const] = ACTIONS(3399), + [anon_sym_BANG] = ACTIONS(3399), + [anon_sym_else] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_switch] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_await] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_break] = ACTIONS(3399), + [anon_sym_continue] = ACTIONS(3399), + [anon_sym_debugger] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_throw] = ACTIONS(3399), + [anon_sym_SEMI] = ACTIONS(3399), + [anon_sym_case] = ACTIONS(3399), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_LTtemplate_GT] = ACTIONS(3399), + [anon_sym_DQUOTE] = ACTIONS(3399), + [anon_sym_SQUOTE] = ACTIONS(3399), + [anon_sym_class] = ACTIONS(3399), + [anon_sym_async] = ACTIONS(3399), + [anon_sym_function] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_using] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_SLASH] = ACTIONS(3399), + [anon_sym_LT] = ACTIONS(3399), + [anon_sym_TILDE] = ACTIONS(3399), + [anon_sym_void] = ACTIONS(3399), + [anon_sym_delete] = ACTIONS(3399), + [anon_sym_PLUS_PLUS] = ACTIONS(3399), + [anon_sym_DASH_DASH] = ACTIONS(3399), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2280), - [sym_number] = ACTIONS(2280), - [sym_private_property_identifier] = ACTIONS(2280), - [sym_this] = ACTIONS(2280), - [sym_super] = ACTIONS(2280), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_undefined] = ACTIONS(2280), - [anon_sym_AT] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_readonly] = ACTIONS(2280), - [anon_sym_get] = ACTIONS(2280), - [anon_sym_set] = ACTIONS(2280), - [anon_sym_declare] = ACTIONS(2280), - [anon_sym_public] = ACTIONS(2280), - [anon_sym_private] = ACTIONS(2280), - [anon_sym_protected] = ACTIONS(2280), - [anon_sym_override] = ACTIONS(2280), - [anon_sym_module] = ACTIONS(2280), - [anon_sym_any] = ACTIONS(2280), - [anon_sym_number] = ACTIONS(2280), - [anon_sym_boolean] = ACTIONS(2280), - [anon_sym_string] = ACTIONS(2280), - [anon_sym_symbol] = ACTIONS(2280), - [anon_sym_object] = ACTIONS(2280), - [anon_sym_abstract] = ACTIONS(2280), - [anon_sym_interface] = ACTIONS(2280), - [anon_sym_enum] = ACTIONS(2280), - [sym__automatic_semicolon] = ACTIONS(2406), + [anon_sym_BQUOTE] = ACTIONS(3399), + [sym_number] = ACTIONS(3399), + [sym_private_property_identifier] = ACTIONS(3399), + [sym_this] = ACTIONS(3399), + [sym_super] = ACTIONS(3399), + [sym_true] = ACTIONS(3399), + [sym_false] = ACTIONS(3399), + [sym_null] = ACTIONS(3399), + [sym_undefined] = ACTIONS(3399), + [anon_sym_AT] = ACTIONS(3399), + [anon_sym_static] = ACTIONS(3399), + [anon_sym_readonly] = ACTIONS(3399), + [anon_sym_get] = ACTIONS(3399), + [anon_sym_set] = ACTIONS(3399), + [anon_sym_declare] = ACTIONS(3399), + [anon_sym_public] = ACTIONS(3399), + [anon_sym_private] = ACTIONS(3399), + [anon_sym_protected] = ACTIONS(3399), + [anon_sym_override] = ACTIONS(3399), + [anon_sym_module] = ACTIONS(3399), + [anon_sym_any] = ACTIONS(3399), + [anon_sym_number] = ACTIONS(3399), + [anon_sym_boolean] = ACTIONS(3399), + [anon_sym_string] = ACTIONS(3399), + [anon_sym_symbol] = ACTIONS(3399), + [anon_sym_object] = ACTIONS(3399), + [anon_sym_abstract] = ACTIONS(3399), + [anon_sym_interface] = ACTIONS(3399), + [anon_sym_enum] = ACTIONS(3399), [sym_html_comment] = ACTIONS(5), }, [1169] = { [sym_comment] = STATE(1169), - [sym_identifier] = ACTIONS(3347), - [anon_sym_export] = ACTIONS(3347), - [anon_sym_default] = ACTIONS(3347), - [anon_sym_type] = ACTIONS(3347), - [anon_sym_namespace] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_typeof] = ACTIONS(3347), - [anon_sym_import] = ACTIONS(3347), - [anon_sym_with] = ACTIONS(3347), - [anon_sym_var] = ACTIONS(3347), - [anon_sym_let] = ACTIONS(3347), - [anon_sym_const] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_else] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_switch] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_await] = ACTIONS(3347), - [anon_sym_while] = ACTIONS(3347), - [anon_sym_do] = ACTIONS(3347), - [anon_sym_try] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_debugger] = ACTIONS(3347), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_throw] = ACTIONS(3347), - [anon_sym_SEMI] = ACTIONS(3347), - [anon_sym_case] = ACTIONS(3347), - [anon_sym_yield] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3347), - [anon_sym_LTtemplate_GT] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_SQUOTE] = ACTIONS(3347), - [anon_sym_class] = ACTIONS(3347), - [anon_sym_async] = ACTIONS(3347), - [anon_sym_function] = ACTIONS(3347), - [anon_sym_new] = ACTIONS(3347), - [anon_sym_using] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_void] = ACTIONS(3347), - [anon_sym_delete] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3347), - [anon_sym_DASH_DASH] = ACTIONS(3347), + [sym_identifier] = ACTIONS(3401), + [anon_sym_export] = ACTIONS(3401), + [anon_sym_default] = ACTIONS(3401), + [anon_sym_type] = ACTIONS(3401), + [anon_sym_namespace] = ACTIONS(3401), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_RBRACE] = ACTIONS(3401), + [anon_sym_typeof] = ACTIONS(3401), + [anon_sym_import] = ACTIONS(3401), + [anon_sym_with] = ACTIONS(3401), + [anon_sym_var] = ACTIONS(3401), + [anon_sym_let] = ACTIONS(3401), + [anon_sym_const] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_else] = ACTIONS(3401), + [anon_sym_if] = ACTIONS(3401), + [anon_sym_switch] = ACTIONS(3401), + [anon_sym_for] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_await] = ACTIONS(3401), + [anon_sym_while] = ACTIONS(3401), + [anon_sym_do] = ACTIONS(3401), + [anon_sym_try] = ACTIONS(3401), + [anon_sym_break] = ACTIONS(3401), + [anon_sym_continue] = ACTIONS(3401), + [anon_sym_debugger] = ACTIONS(3401), + [anon_sym_return] = ACTIONS(3401), + [anon_sym_throw] = ACTIONS(3401), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_case] = ACTIONS(3401), + [anon_sym_yield] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LTtemplate_GT] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3401), + [anon_sym_SQUOTE] = ACTIONS(3401), + [anon_sym_class] = ACTIONS(3401), + [anon_sym_async] = ACTIONS(3401), + [anon_sym_function] = ACTIONS(3401), + [anon_sym_new] = ACTIONS(3401), + [anon_sym_using] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3401), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_void] = ACTIONS(3401), + [anon_sym_delete] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH] = ACTIONS(3401), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3347), - [sym_number] = ACTIONS(3347), - [sym_private_property_identifier] = ACTIONS(3347), - [sym_this] = ACTIONS(3347), - [sym_super] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_null] = ACTIONS(3347), - [sym_undefined] = ACTIONS(3347), - [anon_sym_AT] = ACTIONS(3347), - [anon_sym_static] = ACTIONS(3347), - [anon_sym_readonly] = ACTIONS(3347), - [anon_sym_get] = ACTIONS(3347), - [anon_sym_set] = ACTIONS(3347), - [anon_sym_declare] = ACTIONS(3347), - [anon_sym_public] = ACTIONS(3347), - [anon_sym_private] = ACTIONS(3347), - [anon_sym_protected] = ACTIONS(3347), - [anon_sym_override] = ACTIONS(3347), - [anon_sym_module] = ACTIONS(3347), - [anon_sym_any] = ACTIONS(3347), - [anon_sym_number] = ACTIONS(3347), - [anon_sym_boolean] = ACTIONS(3347), - [anon_sym_string] = ACTIONS(3347), - [anon_sym_symbol] = ACTIONS(3347), - [anon_sym_object] = ACTIONS(3347), - [anon_sym_abstract] = ACTIONS(3347), - [anon_sym_interface] = ACTIONS(3347), - [anon_sym_enum] = ACTIONS(3347), + [anon_sym_BQUOTE] = ACTIONS(3401), + [sym_number] = ACTIONS(3401), + [sym_private_property_identifier] = ACTIONS(3401), + [sym_this] = ACTIONS(3401), + [sym_super] = ACTIONS(3401), + [sym_true] = ACTIONS(3401), + [sym_false] = ACTIONS(3401), + [sym_null] = ACTIONS(3401), + [sym_undefined] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3401), + [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_abstract] = ACTIONS(3401), + [anon_sym_interface] = ACTIONS(3401), + [anon_sym_enum] = ACTIONS(3401), [sym_html_comment] = ACTIONS(5), }, [1170] = { [sym_comment] = STATE(1170), - [sym_identifier] = ACTIONS(3349), - [anon_sym_export] = ACTIONS(3349), - [anon_sym_default] = ACTIONS(3349), - [anon_sym_type] = ACTIONS(3349), - [anon_sym_namespace] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_typeof] = ACTIONS(3349), - [anon_sym_import] = ACTIONS(3349), - [anon_sym_with] = ACTIONS(3349), - [anon_sym_var] = ACTIONS(3349), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_BANG] = ACTIONS(3349), - [anon_sym_else] = ACTIONS(3349), - [anon_sym_if] = ACTIONS(3349), - [anon_sym_switch] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_await] = ACTIONS(3349), - [anon_sym_while] = ACTIONS(3349), - [anon_sym_do] = ACTIONS(3349), - [anon_sym_try] = ACTIONS(3349), - [anon_sym_break] = ACTIONS(3349), - [anon_sym_continue] = ACTIONS(3349), - [anon_sym_debugger] = ACTIONS(3349), - [anon_sym_return] = ACTIONS(3349), - [anon_sym_throw] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_case] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_LTtemplate_GT] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_SQUOTE] = ACTIONS(3349), - [anon_sym_class] = ACTIONS(3349), - [anon_sym_async] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3349), - [anon_sym_new] = ACTIONS(3349), - [anon_sym_using] = ACTIONS(3349), - [anon_sym_PLUS] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3349), - [anon_sym_SLASH] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_void] = ACTIONS(3349), - [anon_sym_delete] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_DASH_DASH] = ACTIONS(3349), + [sym_identifier] = ACTIONS(3403), + [anon_sym_export] = ACTIONS(3403), + [anon_sym_default] = ACTIONS(3403), + [anon_sym_type] = ACTIONS(3403), + [anon_sym_namespace] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3403), + [anon_sym_RBRACE] = ACTIONS(3403), + [anon_sym_typeof] = ACTIONS(3403), + [anon_sym_import] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3403), + [anon_sym_var] = ACTIONS(3403), + [anon_sym_let] = ACTIONS(3403), + [anon_sym_const] = ACTIONS(3403), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_else] = ACTIONS(3403), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_switch] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_LPAREN] = ACTIONS(3403), + [anon_sym_await] = ACTIONS(3403), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_do] = ACTIONS(3403), + [anon_sym_try] = ACTIONS(3403), + [anon_sym_break] = ACTIONS(3403), + [anon_sym_continue] = ACTIONS(3403), + [anon_sym_debugger] = ACTIONS(3403), + [anon_sym_return] = ACTIONS(3403), + [anon_sym_throw] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_case] = ACTIONS(3403), + [anon_sym_yield] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3403), + [anon_sym_LTtemplate_GT] = ACTIONS(3403), + [anon_sym_DQUOTE] = ACTIONS(3403), + [anon_sym_SQUOTE] = ACTIONS(3403), + [anon_sym_class] = ACTIONS(3403), + [anon_sym_async] = ACTIONS(3403), + [anon_sym_function] = ACTIONS(3403), + [anon_sym_new] = ACTIONS(3403), + [anon_sym_using] = ACTIONS(3403), + [anon_sym_PLUS] = ACTIONS(3403), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_SLASH] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_void] = ACTIONS(3403), + [anon_sym_delete] = ACTIONS(3403), + [anon_sym_PLUS_PLUS] = ACTIONS(3403), + [anon_sym_DASH_DASH] = ACTIONS(3403), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3349), - [sym_number] = ACTIONS(3349), - [sym_private_property_identifier] = ACTIONS(3349), - [sym_this] = ACTIONS(3349), - [sym_super] = ACTIONS(3349), - [sym_true] = ACTIONS(3349), - [sym_false] = ACTIONS(3349), - [sym_null] = ACTIONS(3349), - [sym_undefined] = ACTIONS(3349), - [anon_sym_AT] = ACTIONS(3349), - [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_abstract] = ACTIONS(3349), - [anon_sym_interface] = ACTIONS(3349), - [anon_sym_enum] = ACTIONS(3349), + [anon_sym_BQUOTE] = ACTIONS(3403), + [sym_number] = ACTIONS(3403), + [sym_private_property_identifier] = ACTIONS(3403), + [sym_this] = ACTIONS(3403), + [sym_super] = ACTIONS(3403), + [sym_true] = ACTIONS(3403), + [sym_false] = ACTIONS(3403), + [sym_null] = ACTIONS(3403), + [sym_undefined] = ACTIONS(3403), + [anon_sym_AT] = ACTIONS(3403), + [anon_sym_static] = ACTIONS(3403), + [anon_sym_readonly] = ACTIONS(3403), + [anon_sym_get] = ACTIONS(3403), + [anon_sym_set] = ACTIONS(3403), + [anon_sym_declare] = ACTIONS(3403), + [anon_sym_public] = ACTIONS(3403), + [anon_sym_private] = ACTIONS(3403), + [anon_sym_protected] = ACTIONS(3403), + [anon_sym_override] = ACTIONS(3403), + [anon_sym_module] = ACTIONS(3403), + [anon_sym_any] = ACTIONS(3403), + [anon_sym_number] = ACTIONS(3403), + [anon_sym_boolean] = ACTIONS(3403), + [anon_sym_string] = ACTIONS(3403), + [anon_sym_symbol] = ACTIONS(3403), + [anon_sym_object] = ACTIONS(3403), + [anon_sym_abstract] = ACTIONS(3403), + [anon_sym_interface] = ACTIONS(3403), + [anon_sym_enum] = ACTIONS(3403), [sym_html_comment] = ACTIONS(5), }, [1171] = { [sym_comment] = STATE(1171), - [sym_identifier] = ACTIONS(3351), - [anon_sym_export] = ACTIONS(3351), - [anon_sym_default] = ACTIONS(3351), - [anon_sym_type] = ACTIONS(3351), - [anon_sym_namespace] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_typeof] = ACTIONS(3351), - [anon_sym_import] = ACTIONS(3351), - [anon_sym_with] = ACTIONS(3351), - [anon_sym_var] = ACTIONS(3351), - [anon_sym_let] = ACTIONS(3351), - [anon_sym_const] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3351), - [anon_sym_else] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_switch] = ACTIONS(3351), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_await] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_break] = ACTIONS(3351), - [anon_sym_continue] = ACTIONS(3351), - [anon_sym_debugger] = ACTIONS(3351), - [anon_sym_return] = ACTIONS(3351), - [anon_sym_throw] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_case] = ACTIONS(3351), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LTtemplate_GT] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_SQUOTE] = ACTIONS(3351), - [anon_sym_class] = ACTIONS(3351), - [anon_sym_async] = ACTIONS(3351), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_using] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3351), - [anon_sym_void] = ACTIONS(3351), - [anon_sym_delete] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3351), - [anon_sym_DASH_DASH] = ACTIONS(3351), + [sym_identifier] = ACTIONS(3401), + [anon_sym_export] = ACTIONS(3401), + [anon_sym_default] = ACTIONS(3401), + [anon_sym_type] = ACTIONS(3401), + [anon_sym_namespace] = ACTIONS(3401), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_RBRACE] = ACTIONS(3401), + [anon_sym_typeof] = ACTIONS(3401), + [anon_sym_import] = ACTIONS(3401), + [anon_sym_with] = ACTIONS(3401), + [anon_sym_var] = ACTIONS(3401), + [anon_sym_let] = ACTIONS(3401), + [anon_sym_const] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_else] = ACTIONS(3401), + [anon_sym_if] = ACTIONS(3401), + [anon_sym_switch] = ACTIONS(3401), + [anon_sym_for] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_await] = ACTIONS(3401), + [anon_sym_while] = ACTIONS(3401), + [anon_sym_do] = ACTIONS(3401), + [anon_sym_try] = ACTIONS(3401), + [anon_sym_break] = ACTIONS(3401), + [anon_sym_continue] = ACTIONS(3401), + [anon_sym_debugger] = ACTIONS(3401), + [anon_sym_return] = ACTIONS(3401), + [anon_sym_throw] = ACTIONS(3401), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_case] = ACTIONS(3401), + [anon_sym_yield] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LTtemplate_GT] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3401), + [anon_sym_SQUOTE] = ACTIONS(3401), + [anon_sym_class] = ACTIONS(3401), + [anon_sym_async] = ACTIONS(3401), + [anon_sym_function] = ACTIONS(3401), + [anon_sym_new] = ACTIONS(3401), + [anon_sym_using] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3401), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_void] = ACTIONS(3401), + [anon_sym_delete] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH] = ACTIONS(3401), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3351), - [sym_number] = ACTIONS(3351), - [sym_private_property_identifier] = ACTIONS(3351), - [sym_this] = ACTIONS(3351), - [sym_super] = ACTIONS(3351), - [sym_true] = ACTIONS(3351), - [sym_false] = ACTIONS(3351), - [sym_null] = ACTIONS(3351), - [sym_undefined] = ACTIONS(3351), - [anon_sym_AT] = ACTIONS(3351), - [anon_sym_static] = ACTIONS(3351), - [anon_sym_readonly] = ACTIONS(3351), - [anon_sym_get] = ACTIONS(3351), - [anon_sym_set] = ACTIONS(3351), - [anon_sym_declare] = ACTIONS(3351), - [anon_sym_public] = ACTIONS(3351), - [anon_sym_private] = ACTIONS(3351), - [anon_sym_protected] = ACTIONS(3351), - [anon_sym_override] = ACTIONS(3351), - [anon_sym_module] = ACTIONS(3351), - [anon_sym_any] = ACTIONS(3351), - [anon_sym_number] = ACTIONS(3351), - [anon_sym_boolean] = ACTIONS(3351), - [anon_sym_string] = ACTIONS(3351), - [anon_sym_symbol] = ACTIONS(3351), - [anon_sym_object] = ACTIONS(3351), - [anon_sym_abstract] = ACTIONS(3351), - [anon_sym_interface] = ACTIONS(3351), - [anon_sym_enum] = ACTIONS(3351), + [anon_sym_BQUOTE] = ACTIONS(3401), + [sym_number] = ACTIONS(3401), + [sym_private_property_identifier] = ACTIONS(3401), + [sym_this] = ACTIONS(3401), + [sym_super] = ACTIONS(3401), + [sym_true] = ACTIONS(3401), + [sym_false] = ACTIONS(3401), + [sym_null] = ACTIONS(3401), + [sym_undefined] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3401), + [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_abstract] = ACTIONS(3401), + [anon_sym_interface] = ACTIONS(3401), + [anon_sym_enum] = ACTIONS(3401), [sym_html_comment] = ACTIONS(5), }, [1172] = { [sym_comment] = STATE(1172), - [sym_identifier] = ACTIONS(3353), - [anon_sym_export] = ACTIONS(3353), - [anon_sym_default] = ACTIONS(3353), - [anon_sym_type] = ACTIONS(3353), - [anon_sym_namespace] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_RBRACE] = ACTIONS(3353), - [anon_sym_typeof] = ACTIONS(3353), - [anon_sym_import] = ACTIONS(3353), - [anon_sym_with] = ACTIONS(3353), - [anon_sym_var] = ACTIONS(3353), - [anon_sym_let] = ACTIONS(3353), - [anon_sym_const] = ACTIONS(3353), - [anon_sym_BANG] = ACTIONS(3353), - [anon_sym_else] = ACTIONS(3353), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_switch] = ACTIONS(3353), - [anon_sym_for] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_await] = ACTIONS(3353), - [anon_sym_while] = ACTIONS(3353), - [anon_sym_do] = ACTIONS(3353), - [anon_sym_try] = ACTIONS(3353), - [anon_sym_break] = ACTIONS(3353), - [anon_sym_continue] = ACTIONS(3353), - [anon_sym_debugger] = ACTIONS(3353), - [anon_sym_return] = ACTIONS(3353), - [anon_sym_throw] = ACTIONS(3353), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_case] = ACTIONS(3353), - [anon_sym_yield] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_LTtemplate_GT] = ACTIONS(3353), - [anon_sym_DQUOTE] = ACTIONS(3353), - [anon_sym_SQUOTE] = ACTIONS(3353), - [anon_sym_class] = ACTIONS(3353), - [anon_sym_async] = ACTIONS(3353), - [anon_sym_function] = ACTIONS(3353), - [anon_sym_new] = ACTIONS(3353), - [anon_sym_using] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_SLASH] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3353), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_void] = ACTIONS(3353), - [anon_sym_delete] = ACTIONS(3353), - [anon_sym_PLUS_PLUS] = ACTIONS(3353), - [anon_sym_DASH_DASH] = ACTIONS(3353), + [sym_identifier] = ACTIONS(3405), + [anon_sym_export] = ACTIONS(3405), + [anon_sym_default] = ACTIONS(3405), + [anon_sym_type] = ACTIONS(3405), + [anon_sym_namespace] = ACTIONS(3405), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_RBRACE] = ACTIONS(3405), + [anon_sym_typeof] = ACTIONS(3405), + [anon_sym_import] = ACTIONS(3405), + [anon_sym_with] = ACTIONS(3405), + [anon_sym_var] = ACTIONS(3405), + [anon_sym_let] = ACTIONS(3405), + [anon_sym_const] = ACTIONS(3405), + [anon_sym_BANG] = ACTIONS(3405), + [anon_sym_else] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3405), + [anon_sym_switch] = ACTIONS(3405), + [anon_sym_for] = ACTIONS(3405), + [anon_sym_LPAREN] = ACTIONS(3405), + [anon_sym_await] = ACTIONS(3405), + [anon_sym_while] = ACTIONS(3405), + [anon_sym_do] = ACTIONS(3405), + [anon_sym_try] = ACTIONS(3405), + [anon_sym_break] = ACTIONS(3405), + [anon_sym_continue] = ACTIONS(3405), + [anon_sym_debugger] = ACTIONS(3405), + [anon_sym_return] = ACTIONS(3405), + [anon_sym_throw] = ACTIONS(3405), + [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_case] = ACTIONS(3405), + [anon_sym_yield] = ACTIONS(3405), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_LTtemplate_GT] = ACTIONS(3405), + [anon_sym_DQUOTE] = ACTIONS(3405), + [anon_sym_SQUOTE] = ACTIONS(3405), + [anon_sym_class] = ACTIONS(3405), + [anon_sym_async] = ACTIONS(3405), + [anon_sym_function] = ACTIONS(3405), + [anon_sym_new] = ACTIONS(3405), + [anon_sym_using] = ACTIONS(3405), + [anon_sym_PLUS] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(3405), + [anon_sym_SLASH] = ACTIONS(3405), + [anon_sym_LT] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3405), + [anon_sym_void] = ACTIONS(3405), + [anon_sym_delete] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_DASH_DASH] = ACTIONS(3405), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3353), - [sym_number] = ACTIONS(3353), - [sym_private_property_identifier] = ACTIONS(3353), - [sym_this] = ACTIONS(3353), - [sym_super] = ACTIONS(3353), - [sym_true] = ACTIONS(3353), - [sym_false] = ACTIONS(3353), - [sym_null] = ACTIONS(3353), - [sym_undefined] = ACTIONS(3353), - [anon_sym_AT] = ACTIONS(3353), - [anon_sym_static] = ACTIONS(3353), - [anon_sym_readonly] = ACTIONS(3353), - [anon_sym_get] = ACTIONS(3353), - [anon_sym_set] = ACTIONS(3353), - [anon_sym_declare] = ACTIONS(3353), - [anon_sym_public] = ACTIONS(3353), - [anon_sym_private] = ACTIONS(3353), - [anon_sym_protected] = ACTIONS(3353), - [anon_sym_override] = ACTIONS(3353), - [anon_sym_module] = ACTIONS(3353), - [anon_sym_any] = ACTIONS(3353), - [anon_sym_number] = ACTIONS(3353), - [anon_sym_boolean] = ACTIONS(3353), - [anon_sym_string] = ACTIONS(3353), - [anon_sym_symbol] = ACTIONS(3353), - [anon_sym_object] = ACTIONS(3353), - [anon_sym_abstract] = ACTIONS(3353), - [anon_sym_interface] = ACTIONS(3353), - [anon_sym_enum] = ACTIONS(3353), + [anon_sym_BQUOTE] = ACTIONS(3405), + [sym_number] = ACTIONS(3405), + [sym_private_property_identifier] = ACTIONS(3405), + [sym_this] = ACTIONS(3405), + [sym_super] = ACTIONS(3405), + [sym_true] = ACTIONS(3405), + [sym_false] = ACTIONS(3405), + [sym_null] = ACTIONS(3405), + [sym_undefined] = ACTIONS(3405), + [anon_sym_AT] = ACTIONS(3405), + [anon_sym_static] = ACTIONS(3405), + [anon_sym_readonly] = ACTIONS(3405), + [anon_sym_get] = ACTIONS(3405), + [anon_sym_set] = ACTIONS(3405), + [anon_sym_declare] = ACTIONS(3405), + [anon_sym_public] = ACTIONS(3405), + [anon_sym_private] = ACTIONS(3405), + [anon_sym_protected] = ACTIONS(3405), + [anon_sym_override] = ACTIONS(3405), + [anon_sym_module] = ACTIONS(3405), + [anon_sym_any] = ACTIONS(3405), + [anon_sym_number] = ACTIONS(3405), + [anon_sym_boolean] = ACTIONS(3405), + [anon_sym_string] = ACTIONS(3405), + [anon_sym_symbol] = ACTIONS(3405), + [anon_sym_object] = ACTIONS(3405), + [anon_sym_abstract] = ACTIONS(3405), + [anon_sym_interface] = ACTIONS(3405), + [anon_sym_enum] = ACTIONS(3405), [sym_html_comment] = ACTIONS(5), }, [1173] = { [sym_comment] = STATE(1173), - [sym_identifier] = ACTIONS(3355), - [anon_sym_export] = ACTIONS(3355), - [anon_sym_default] = ACTIONS(3355), - [anon_sym_type] = ACTIONS(3355), - [anon_sym_namespace] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_typeof] = ACTIONS(3355), - [anon_sym_import] = ACTIONS(3355), - [anon_sym_with] = ACTIONS(3355), - [anon_sym_var] = ACTIONS(3355), - [anon_sym_let] = ACTIONS(3355), - [anon_sym_const] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_else] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_switch] = ACTIONS(3355), - [anon_sym_for] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_await] = ACTIONS(3355), - [anon_sym_while] = ACTIONS(3355), - [anon_sym_do] = ACTIONS(3355), - [anon_sym_try] = ACTIONS(3355), - [anon_sym_break] = ACTIONS(3355), - [anon_sym_continue] = ACTIONS(3355), - [anon_sym_debugger] = ACTIONS(3355), - [anon_sym_return] = ACTIONS(3355), - [anon_sym_throw] = ACTIONS(3355), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_case] = ACTIONS(3355), - [anon_sym_yield] = ACTIONS(3355), - [anon_sym_LBRACK] = ACTIONS(3355), - [anon_sym_LTtemplate_GT] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(3355), - [anon_sym_SQUOTE] = ACTIONS(3355), - [anon_sym_class] = ACTIONS(3355), - [anon_sym_async] = ACTIONS(3355), - [anon_sym_function] = ACTIONS(3355), - [anon_sym_new] = ACTIONS(3355), - [anon_sym_using] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3355), - [anon_sym_void] = ACTIONS(3355), - [anon_sym_delete] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3355), - [anon_sym_DASH_DASH] = ACTIONS(3355), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3355), - [sym_number] = ACTIONS(3355), - [sym_private_property_identifier] = ACTIONS(3355), - [sym_this] = ACTIONS(3355), - [sym_super] = ACTIONS(3355), - [sym_true] = ACTIONS(3355), - [sym_false] = ACTIONS(3355), - [sym_null] = ACTIONS(3355), - [sym_undefined] = ACTIONS(3355), - [anon_sym_AT] = ACTIONS(3355), - [anon_sym_static] = ACTIONS(3355), - [anon_sym_readonly] = ACTIONS(3355), - [anon_sym_get] = ACTIONS(3355), - [anon_sym_set] = ACTIONS(3355), - [anon_sym_declare] = ACTIONS(3355), - [anon_sym_public] = ACTIONS(3355), - [anon_sym_private] = ACTIONS(3355), - [anon_sym_protected] = ACTIONS(3355), - [anon_sym_override] = ACTIONS(3355), - [anon_sym_module] = ACTIONS(3355), - [anon_sym_any] = ACTIONS(3355), - [anon_sym_number] = ACTIONS(3355), - [anon_sym_boolean] = ACTIONS(3355), - [anon_sym_string] = ACTIONS(3355), - [anon_sym_symbol] = ACTIONS(3355), - [anon_sym_object] = ACTIONS(3355), - [anon_sym_abstract] = ACTIONS(3355), - [anon_sym_interface] = ACTIONS(3355), - [anon_sym_enum] = ACTIONS(3355), + [ts_builtin_sym_end] = ACTIONS(2362), + [sym_identifier] = ACTIONS(2234), + [anon_sym_export] = ACTIONS(2234), + [anon_sym_type] = ACTIONS(2234), + [anon_sym_namespace] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_typeof] = ACTIONS(2234), + [anon_sym_import] = ACTIONS(2234), + [anon_sym_with] = ACTIONS(2234), + [anon_sym_var] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [anon_sym_BANG] = ACTIONS(2234), + [anon_sym_else] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_switch] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_await] = ACTIONS(2234), + [anon_sym_while] = ACTIONS(2234), + [anon_sym_do] = ACTIONS(2234), + [anon_sym_try] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_debugger] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_throw] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_yield] = ACTIONS(2234), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_LTtemplate_GT] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_class] = ACTIONS(2234), + [anon_sym_async] = ACTIONS(2234), + [anon_sym_function] = ACTIONS(2234), + [anon_sym_new] = ACTIONS(2234), + [anon_sym_using] = ACTIONS(2234), + [anon_sym_PLUS] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2234), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_void] = ACTIONS(2234), + [anon_sym_delete] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2234), + [sym_number] = ACTIONS(2234), + [sym_private_property_identifier] = ACTIONS(2234), + [sym_this] = ACTIONS(2234), + [sym_super] = ACTIONS(2234), + [sym_true] = ACTIONS(2234), + [sym_false] = ACTIONS(2234), + [sym_null] = ACTIONS(2234), + [sym_undefined] = ACTIONS(2234), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_static] = ACTIONS(2234), + [anon_sym_readonly] = ACTIONS(2234), + [anon_sym_get] = ACTIONS(2234), + [anon_sym_set] = ACTIONS(2234), + [anon_sym_declare] = ACTIONS(2234), + [anon_sym_public] = ACTIONS(2234), + [anon_sym_private] = ACTIONS(2234), + [anon_sym_protected] = ACTIONS(2234), + [anon_sym_override] = ACTIONS(2234), + [anon_sym_module] = ACTIONS(2234), + [anon_sym_any] = ACTIONS(2234), + [anon_sym_number] = ACTIONS(2234), + [anon_sym_boolean] = ACTIONS(2234), + [anon_sym_string] = ACTIONS(2234), + [anon_sym_symbol] = ACTIONS(2234), + [anon_sym_object] = ACTIONS(2234), + [anon_sym_abstract] = ACTIONS(2234), + [anon_sym_interface] = ACTIONS(2234), + [anon_sym_enum] = ACTIONS(2234), + [sym__automatic_semicolon] = ACTIONS(2364), [sym_html_comment] = ACTIONS(5), }, [1174] = { [sym_comment] = STATE(1174), - [ts_builtin_sym_end] = ACTIONS(2400), - [sym_identifier] = ACTIONS(2302), - [anon_sym_export] = ACTIONS(2302), - [anon_sym_type] = ACTIONS(2302), - [anon_sym_namespace] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_typeof] = ACTIONS(2302), - [anon_sym_import] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(2302), - [anon_sym_var] = ACTIONS(2302), - [anon_sym_let] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_else] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_await] = ACTIONS(2302), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_debugger] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_yield] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_LTtemplate_GT] = ACTIONS(2302), - [anon_sym_DQUOTE] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_function] = ACTIONS(2302), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_SLASH] = ACTIONS(2302), - [anon_sym_LT] = ACTIONS(2302), - [anon_sym_TILDE] = ACTIONS(2302), - [anon_sym_void] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2302), - [sym_number] = ACTIONS(2302), - [sym_private_property_identifier] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_super] = ACTIONS(2302), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_undefined] = ACTIONS(2302), - [anon_sym_AT] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_readonly] = ACTIONS(2302), - [anon_sym_get] = ACTIONS(2302), - [anon_sym_set] = ACTIONS(2302), - [anon_sym_declare] = ACTIONS(2302), - [anon_sym_public] = ACTIONS(2302), - [anon_sym_private] = ACTIONS(2302), - [anon_sym_protected] = ACTIONS(2302), - [anon_sym_override] = ACTIONS(2302), - [anon_sym_module] = ACTIONS(2302), - [anon_sym_any] = ACTIONS(2302), - [anon_sym_number] = ACTIONS(2302), - [anon_sym_boolean] = ACTIONS(2302), - [anon_sym_string] = ACTIONS(2302), - [anon_sym_symbol] = ACTIONS(2302), - [anon_sym_object] = ACTIONS(2302), - [anon_sym_abstract] = ACTIONS(2302), - [anon_sym_interface] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [sym__automatic_semicolon] = ACTIONS(2402), + [ts_builtin_sym_end] = ACTIONS(2366), + [sym_identifier] = ACTIONS(2152), + [anon_sym_export] = ACTIONS(2152), + [anon_sym_type] = ACTIONS(2152), + [anon_sym_namespace] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_typeof] = ACTIONS(2152), + [anon_sym_import] = ACTIONS(2152), + [anon_sym_with] = ACTIONS(2152), + [anon_sym_var] = ACTIONS(2152), + [anon_sym_let] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2152), + [anon_sym_else] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_switch] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_await] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_debugger] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_throw] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_yield] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_LTtemplate_GT] = ACTIONS(2152), + [anon_sym_DQUOTE] = ACTIONS(2152), + [anon_sym_SQUOTE] = ACTIONS(2152), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2152), + [anon_sym_function] = ACTIONS(2152), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_using] = ACTIONS(2152), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_SLASH] = ACTIONS(2152), + [anon_sym_LT] = ACTIONS(2152), + [anon_sym_TILDE] = ACTIONS(2152), + [anon_sym_void] = ACTIONS(2152), + [anon_sym_delete] = ACTIONS(2152), + [anon_sym_PLUS_PLUS] = ACTIONS(2152), + [anon_sym_DASH_DASH] = ACTIONS(2152), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2152), + [sym_number] = ACTIONS(2152), + [sym_private_property_identifier] = ACTIONS(2152), + [sym_this] = ACTIONS(2152), + [sym_super] = ACTIONS(2152), + [sym_true] = ACTIONS(2152), + [sym_false] = ACTIONS(2152), + [sym_null] = ACTIONS(2152), + [sym_undefined] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(2152), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_readonly] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2152), + [anon_sym_set] = ACTIONS(2152), + [anon_sym_declare] = ACTIONS(2152), + [anon_sym_public] = ACTIONS(2152), + [anon_sym_private] = ACTIONS(2152), + [anon_sym_protected] = ACTIONS(2152), + [anon_sym_override] = ACTIONS(2152), + [anon_sym_module] = ACTIONS(2152), + [anon_sym_any] = ACTIONS(2152), + [anon_sym_number] = ACTIONS(2152), + [anon_sym_boolean] = ACTIONS(2152), + [anon_sym_string] = ACTIONS(2152), + [anon_sym_symbol] = ACTIONS(2152), + [anon_sym_object] = ACTIONS(2152), + [anon_sym_abstract] = ACTIONS(2152), + [anon_sym_interface] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + [sym__automatic_semicolon] = ACTIONS(2368), [sym_html_comment] = ACTIONS(5), }, [1175] = { [sym_comment] = STATE(1175), - [sym_identifier] = ACTIONS(3357), - [anon_sym_export] = ACTIONS(3357), - [anon_sym_default] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_namespace] = ACTIONS(3357), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_typeof] = ACTIONS(3357), - [anon_sym_import] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_var] = ACTIONS(3357), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_const] = ACTIONS(3357), - [anon_sym_BANG] = ACTIONS(3357), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_switch] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_await] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_try] = ACTIONS(3357), - [anon_sym_break] = ACTIONS(3357), - [anon_sym_continue] = ACTIONS(3357), - [anon_sym_debugger] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_throw] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_case] = ACTIONS(3357), - [anon_sym_yield] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_LTtemplate_GT] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_function] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_using] = ACTIONS(3357), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_void] = ACTIONS(3357), - [anon_sym_delete] = ACTIONS(3357), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), + [sym_identifier] = ACTIONS(3407), + [anon_sym_export] = ACTIONS(3407), + [anon_sym_default] = ACTIONS(3407), + [anon_sym_type] = ACTIONS(3407), + [anon_sym_namespace] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_RBRACE] = ACTIONS(3407), + [anon_sym_typeof] = ACTIONS(3407), + [anon_sym_import] = ACTIONS(3407), + [anon_sym_with] = ACTIONS(3407), + [anon_sym_var] = ACTIONS(3407), + [anon_sym_let] = ACTIONS(3407), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_else] = ACTIONS(3407), + [anon_sym_if] = ACTIONS(3407), + [anon_sym_switch] = ACTIONS(3407), + [anon_sym_for] = ACTIONS(3407), + [anon_sym_LPAREN] = ACTIONS(3407), + [anon_sym_await] = ACTIONS(3407), + [anon_sym_while] = ACTIONS(3407), + [anon_sym_do] = ACTIONS(3407), + [anon_sym_try] = ACTIONS(3407), + [anon_sym_break] = ACTIONS(3407), + [anon_sym_continue] = ACTIONS(3407), + [anon_sym_debugger] = ACTIONS(3407), + [anon_sym_return] = ACTIONS(3407), + [anon_sym_throw] = ACTIONS(3407), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_case] = ACTIONS(3407), + [anon_sym_yield] = ACTIONS(3407), + [anon_sym_LBRACK] = ACTIONS(3407), + [anon_sym_LTtemplate_GT] = ACTIONS(3407), + [anon_sym_DQUOTE] = ACTIONS(3407), + [anon_sym_SQUOTE] = ACTIONS(3407), + [anon_sym_class] = ACTIONS(3407), + [anon_sym_async] = ACTIONS(3407), + [anon_sym_function] = ACTIONS(3407), + [anon_sym_new] = ACTIONS(3407), + [anon_sym_using] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_SLASH] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(3407), + [anon_sym_void] = ACTIONS(3407), + [anon_sym_delete] = ACTIONS(3407), + [anon_sym_PLUS_PLUS] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(3407), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3357), - [sym_number] = ACTIONS(3357), - [sym_private_property_identifier] = ACTIONS(3357), - [sym_this] = ACTIONS(3357), - [sym_super] = ACTIONS(3357), - [sym_true] = ACTIONS(3357), - [sym_false] = ACTIONS(3357), - [sym_null] = ACTIONS(3357), - [sym_undefined] = ACTIONS(3357), - [anon_sym_AT] = ACTIONS(3357), - [anon_sym_static] = ACTIONS(3357), - [anon_sym_readonly] = ACTIONS(3357), - [anon_sym_get] = ACTIONS(3357), - [anon_sym_set] = ACTIONS(3357), - [anon_sym_declare] = ACTIONS(3357), - [anon_sym_public] = ACTIONS(3357), - [anon_sym_private] = ACTIONS(3357), - [anon_sym_protected] = ACTIONS(3357), - [anon_sym_override] = ACTIONS(3357), - [anon_sym_module] = ACTIONS(3357), - [anon_sym_any] = ACTIONS(3357), - [anon_sym_number] = ACTIONS(3357), - [anon_sym_boolean] = ACTIONS(3357), - [anon_sym_string] = ACTIONS(3357), - [anon_sym_symbol] = ACTIONS(3357), - [anon_sym_object] = ACTIONS(3357), - [anon_sym_abstract] = ACTIONS(3357), - [anon_sym_interface] = ACTIONS(3357), - [anon_sym_enum] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(3407), + [sym_number] = ACTIONS(3407), + [sym_private_property_identifier] = ACTIONS(3407), + [sym_this] = ACTIONS(3407), + [sym_super] = ACTIONS(3407), + [sym_true] = ACTIONS(3407), + [sym_false] = ACTIONS(3407), + [sym_null] = ACTIONS(3407), + [sym_undefined] = ACTIONS(3407), + [anon_sym_AT] = ACTIONS(3407), + [anon_sym_static] = ACTIONS(3407), + [anon_sym_readonly] = ACTIONS(3407), + [anon_sym_get] = ACTIONS(3407), + [anon_sym_set] = ACTIONS(3407), + [anon_sym_declare] = ACTIONS(3407), + [anon_sym_public] = ACTIONS(3407), + [anon_sym_private] = ACTIONS(3407), + [anon_sym_protected] = ACTIONS(3407), + [anon_sym_override] = ACTIONS(3407), + [anon_sym_module] = ACTIONS(3407), + [anon_sym_any] = ACTIONS(3407), + [anon_sym_number] = ACTIONS(3407), + [anon_sym_boolean] = ACTIONS(3407), + [anon_sym_string] = ACTIONS(3407), + [anon_sym_symbol] = ACTIONS(3407), + [anon_sym_object] = ACTIONS(3407), + [anon_sym_abstract] = ACTIONS(3407), + [anon_sym_interface] = ACTIONS(3407), + [anon_sym_enum] = ACTIONS(3407), [sym_html_comment] = ACTIONS(5), }, [1176] = { [sym_comment] = STATE(1176), - [sym_identifier] = ACTIONS(3359), - [anon_sym_export] = ACTIONS(3359), - [anon_sym_default] = ACTIONS(3359), - [anon_sym_type] = ACTIONS(3359), - [anon_sym_namespace] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_typeof] = ACTIONS(3359), - [anon_sym_import] = ACTIONS(3359), - [anon_sym_with] = ACTIONS(3359), - [anon_sym_var] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_const] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_else] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_switch] = ACTIONS(3359), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_await] = ACTIONS(3359), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_break] = ACTIONS(3359), - [anon_sym_continue] = ACTIONS(3359), - [anon_sym_debugger] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_throw] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_case] = ACTIONS(3359), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LTtemplate_GT] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_SQUOTE] = ACTIONS(3359), - [anon_sym_class] = ACTIONS(3359), - [anon_sym_async] = ACTIONS(3359), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_using] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_void] = ACTIONS(3359), - [anon_sym_delete] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3359), - [anon_sym_DASH_DASH] = ACTIONS(3359), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_finally] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3359), - [sym_number] = ACTIONS(3359), - [sym_private_property_identifier] = ACTIONS(3359), - [sym_this] = ACTIONS(3359), - [sym_super] = ACTIONS(3359), - [sym_true] = ACTIONS(3359), - [sym_false] = ACTIONS(3359), - [sym_null] = ACTIONS(3359), - [sym_undefined] = ACTIONS(3359), - [anon_sym_AT] = ACTIONS(3359), - [anon_sym_static] = ACTIONS(3359), - [anon_sym_readonly] = ACTIONS(3359), - [anon_sym_get] = ACTIONS(3359), - [anon_sym_set] = ACTIONS(3359), - [anon_sym_declare] = ACTIONS(3359), - [anon_sym_public] = ACTIONS(3359), - [anon_sym_private] = ACTIONS(3359), - [anon_sym_protected] = ACTIONS(3359), - [anon_sym_override] = ACTIONS(3359), - [anon_sym_module] = ACTIONS(3359), - [anon_sym_any] = ACTIONS(3359), - [anon_sym_number] = ACTIONS(3359), - [anon_sym_boolean] = ACTIONS(3359), - [anon_sym_string] = ACTIONS(3359), - [anon_sym_symbol] = ACTIONS(3359), - [anon_sym_object] = ACTIONS(3359), - [anon_sym_abstract] = ACTIONS(3359), - [anon_sym_interface] = ACTIONS(3359), - [anon_sym_enum] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, [1177] = { [sym_comment] = STATE(1177), - [sym_identifier] = ACTIONS(3361), - [anon_sym_export] = ACTIONS(3361), - [anon_sym_default] = ACTIONS(3361), - [anon_sym_type] = ACTIONS(3361), - [anon_sym_namespace] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_typeof] = ACTIONS(3361), - [anon_sym_import] = ACTIONS(3361), - [anon_sym_with] = ACTIONS(3361), - [anon_sym_var] = ACTIONS(3361), - [anon_sym_let] = ACTIONS(3361), - [anon_sym_const] = ACTIONS(3361), - [anon_sym_BANG] = ACTIONS(3361), - [anon_sym_else] = ACTIONS(3361), - [anon_sym_if] = ACTIONS(3361), - [anon_sym_switch] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3361), - [anon_sym_await] = ACTIONS(3361), - [anon_sym_while] = ACTIONS(3361), - [anon_sym_do] = ACTIONS(3361), - [anon_sym_try] = ACTIONS(3361), - [anon_sym_break] = ACTIONS(3361), - [anon_sym_continue] = ACTIONS(3361), - [anon_sym_debugger] = ACTIONS(3361), - [anon_sym_return] = ACTIONS(3361), - [anon_sym_throw] = ACTIONS(3361), - [anon_sym_SEMI] = ACTIONS(3361), - [anon_sym_case] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_LTtemplate_GT] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(3361), - [anon_sym_SQUOTE] = ACTIONS(3361), - [anon_sym_class] = ACTIONS(3361), - [anon_sym_async] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3361), - [anon_sym_using] = ACTIONS(3361), - [anon_sym_PLUS] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_SLASH] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_void] = ACTIONS(3361), - [anon_sym_delete] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3361), - [sym_number] = ACTIONS(3361), - [sym_private_property_identifier] = ACTIONS(3361), - [sym_this] = ACTIONS(3361), - [sym_super] = ACTIONS(3361), - [sym_true] = ACTIONS(3361), - [sym_false] = ACTIONS(3361), - [sym_null] = ACTIONS(3361), - [sym_undefined] = ACTIONS(3361), - [anon_sym_AT] = ACTIONS(3361), - [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_abstract] = ACTIONS(3361), - [anon_sym_interface] = ACTIONS(3361), - [anon_sym_enum] = ACTIONS(3361), + [ts_builtin_sym_end] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2242), + [anon_sym_export] = ACTIONS(2242), + [anon_sym_type] = ACTIONS(2242), + [anon_sym_namespace] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_typeof] = ACTIONS(2242), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_with] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2242), + [anon_sym_let] = ACTIONS(2242), + [anon_sym_const] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_else] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_switch] = ACTIONS(2242), + [anon_sym_for] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_await] = ACTIONS(2242), + [anon_sym_while] = ACTIONS(2242), + [anon_sym_do] = ACTIONS(2242), + [anon_sym_try] = ACTIONS(2242), + [anon_sym_break] = ACTIONS(2242), + [anon_sym_continue] = ACTIONS(2242), + [anon_sym_debugger] = ACTIONS(2242), + [anon_sym_return] = ACTIONS(2242), + [anon_sym_throw] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_yield] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_LTtemplate_GT] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_class] = ACTIONS(2242), + [anon_sym_async] = ACTIONS(2242), + [anon_sym_function] = ACTIONS(2242), + [anon_sym_new] = ACTIONS(2242), + [anon_sym_using] = ACTIONS(2242), + [anon_sym_PLUS] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2242), + [anon_sym_SLASH] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2242), + [anon_sym_TILDE] = ACTIONS(2242), + [anon_sym_void] = ACTIONS(2242), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2242), + [sym_number] = ACTIONS(2242), + [sym_private_property_identifier] = ACTIONS(2242), + [sym_this] = ACTIONS(2242), + [sym_super] = ACTIONS(2242), + [sym_true] = ACTIONS(2242), + [sym_false] = ACTIONS(2242), + [sym_null] = ACTIONS(2242), + [sym_undefined] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(2242), + [anon_sym_readonly] = ACTIONS(2242), + [anon_sym_get] = ACTIONS(2242), + [anon_sym_set] = ACTIONS(2242), + [anon_sym_declare] = ACTIONS(2242), + [anon_sym_public] = ACTIONS(2242), + [anon_sym_private] = ACTIONS(2242), + [anon_sym_protected] = ACTIONS(2242), + [anon_sym_override] = ACTIONS(2242), + [anon_sym_module] = ACTIONS(2242), + [anon_sym_any] = ACTIONS(2242), + [anon_sym_number] = ACTIONS(2242), + [anon_sym_boolean] = ACTIONS(2242), + [anon_sym_string] = ACTIONS(2242), + [anon_sym_symbol] = ACTIONS(2242), + [anon_sym_object] = ACTIONS(2242), + [anon_sym_abstract] = ACTIONS(2242), + [anon_sym_interface] = ACTIONS(2242), + [anon_sym_enum] = ACTIONS(2242), + [sym__automatic_semicolon] = ACTIONS(2372), [sym_html_comment] = ACTIONS(5), }, [1178] = { [sym_comment] = STATE(1178), - [sym_identifier] = ACTIONS(3173), - [anon_sym_export] = ACTIONS(3173), - [anon_sym_default] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_namespace] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym_typeof] = ACTIONS(3173), - [anon_sym_import] = ACTIONS(3173), - [anon_sym_with] = ACTIONS(3173), - [anon_sym_var] = ACTIONS(3173), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_switch] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_await] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_debugger] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_throw] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym_case] = ACTIONS(3173), - [anon_sym_yield] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LTtemplate_GT] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3173), - [anon_sym_class] = ACTIONS(3173), - [anon_sym_async] = ACTIONS(3173), - [anon_sym_function] = ACTIONS(3173), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_using] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_void] = ACTIONS(3173), - [anon_sym_delete] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3173), - [sym_number] = ACTIONS(3173), - [sym_private_property_identifier] = ACTIONS(3173), - [sym_this] = ACTIONS(3173), - [sym_super] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_null] = ACTIONS(3173), - [sym_undefined] = ACTIONS(3173), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_static] = ACTIONS(3173), - [anon_sym_readonly] = ACTIONS(3173), - [anon_sym_get] = ACTIONS(3173), - [anon_sym_set] = ACTIONS(3173), - [anon_sym_declare] = ACTIONS(3173), - [anon_sym_public] = ACTIONS(3173), - [anon_sym_private] = ACTIONS(3173), - [anon_sym_protected] = ACTIONS(3173), - [anon_sym_override] = ACTIONS(3173), - [anon_sym_module] = ACTIONS(3173), - [anon_sym_any] = ACTIONS(3173), - [anon_sym_number] = ACTIONS(3173), - [anon_sym_boolean] = ACTIONS(3173), - [anon_sym_string] = ACTIONS(3173), - [anon_sym_symbol] = ACTIONS(3173), - [anon_sym_object] = ACTIONS(3173), - [anon_sym_abstract] = ACTIONS(3173), - [anon_sym_interface] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3173), - [sym__automatic_semicolon] = ACTIONS(3175), + [ts_builtin_sym_end] = ACTIONS(2376), + [sym_identifier] = ACTIONS(2264), + [anon_sym_export] = ACTIONS(2264), + [anon_sym_type] = ACTIONS(2264), + [anon_sym_namespace] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2264), + [anon_sym_RBRACE] = ACTIONS(2264), + [anon_sym_typeof] = ACTIONS(2264), + [anon_sym_import] = ACTIONS(2264), + [anon_sym_with] = ACTIONS(2264), + [anon_sym_var] = ACTIONS(2264), + [anon_sym_let] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_BANG] = ACTIONS(2264), + [anon_sym_else] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_switch] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2264), + [anon_sym_await] = ACTIONS(2264), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2264), + [anon_sym_try] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_debugger] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_throw] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym_yield] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_LTtemplate_GT] = ACTIONS(2264), + [anon_sym_DQUOTE] = ACTIONS(2264), + [anon_sym_SQUOTE] = ACTIONS(2264), + [anon_sym_class] = ACTIONS(2264), + [anon_sym_async] = ACTIONS(2264), + [anon_sym_function] = ACTIONS(2264), + [anon_sym_new] = ACTIONS(2264), + [anon_sym_using] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_SLASH] = ACTIONS(2264), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_TILDE] = ACTIONS(2264), + [anon_sym_void] = ACTIONS(2264), + [anon_sym_delete] = ACTIONS(2264), + [anon_sym_PLUS_PLUS] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(2264), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2264), + [sym_number] = ACTIONS(2264), + [sym_private_property_identifier] = ACTIONS(2264), + [sym_this] = ACTIONS(2264), + [sym_super] = ACTIONS(2264), + [sym_true] = ACTIONS(2264), + [sym_false] = ACTIONS(2264), + [sym_null] = ACTIONS(2264), + [sym_undefined] = ACTIONS(2264), + [anon_sym_AT] = ACTIONS(2264), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_readonly] = ACTIONS(2264), + [anon_sym_get] = ACTIONS(2264), + [anon_sym_set] = ACTIONS(2264), + [anon_sym_declare] = ACTIONS(2264), + [anon_sym_public] = ACTIONS(2264), + [anon_sym_private] = ACTIONS(2264), + [anon_sym_protected] = ACTIONS(2264), + [anon_sym_override] = ACTIONS(2264), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_any] = ACTIONS(2264), + [anon_sym_number] = ACTIONS(2264), + [anon_sym_boolean] = ACTIONS(2264), + [anon_sym_string] = ACTIONS(2264), + [anon_sym_symbol] = ACTIONS(2264), + [anon_sym_object] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2264), + [anon_sym_interface] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + [sym__automatic_semicolon] = ACTIONS(2378), [sym_html_comment] = ACTIONS(5), }, [1179] = { [sym_comment] = STATE(1179), - [sym_identifier] = ACTIONS(3363), - [anon_sym_export] = ACTIONS(3363), - [anon_sym_default] = ACTIONS(3363), - [anon_sym_type] = ACTIONS(3363), - [anon_sym_namespace] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_typeof] = ACTIONS(3363), - [anon_sym_import] = ACTIONS(3363), - [anon_sym_with] = ACTIONS(3363), - [anon_sym_var] = ACTIONS(3363), - [anon_sym_let] = ACTIONS(3363), - [anon_sym_const] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_else] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_switch] = ACTIONS(3363), - [anon_sym_for] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_await] = ACTIONS(3363), - [anon_sym_while] = ACTIONS(3363), - [anon_sym_do] = ACTIONS(3363), - [anon_sym_try] = ACTIONS(3363), - [anon_sym_break] = ACTIONS(3363), - [anon_sym_continue] = ACTIONS(3363), - [anon_sym_debugger] = ACTIONS(3363), - [anon_sym_return] = ACTIONS(3363), - [anon_sym_throw] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_case] = ACTIONS(3363), - [anon_sym_yield] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3363), - [anon_sym_LTtemplate_GT] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(3363), - [anon_sym_SQUOTE] = ACTIONS(3363), - [anon_sym_class] = ACTIONS(3363), - [anon_sym_async] = ACTIONS(3363), - [anon_sym_function] = ACTIONS(3363), - [anon_sym_new] = ACTIONS(3363), - [anon_sym_using] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3363), - [anon_sym_void] = ACTIONS(3363), - [anon_sym_delete] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DASH_DASH] = ACTIONS(3363), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3363), - [sym_number] = ACTIONS(3363), - [sym_private_property_identifier] = ACTIONS(3363), - [sym_this] = ACTIONS(3363), - [sym_super] = ACTIONS(3363), - [sym_true] = ACTIONS(3363), - [sym_false] = ACTIONS(3363), - [sym_null] = ACTIONS(3363), - [sym_undefined] = ACTIONS(3363), - [anon_sym_AT] = ACTIONS(3363), - [anon_sym_static] = ACTIONS(3363), - [anon_sym_readonly] = ACTIONS(3363), - [anon_sym_get] = ACTIONS(3363), - [anon_sym_set] = ACTIONS(3363), - [anon_sym_declare] = ACTIONS(3363), - [anon_sym_public] = ACTIONS(3363), - [anon_sym_private] = ACTIONS(3363), - [anon_sym_protected] = ACTIONS(3363), - [anon_sym_override] = ACTIONS(3363), - [anon_sym_module] = ACTIONS(3363), - [anon_sym_any] = ACTIONS(3363), - [anon_sym_number] = ACTIONS(3363), - [anon_sym_boolean] = ACTIONS(3363), - [anon_sym_string] = ACTIONS(3363), - [anon_sym_symbol] = ACTIONS(3363), - [anon_sym_object] = ACTIONS(3363), - [anon_sym_abstract] = ACTIONS(3363), - [anon_sym_interface] = ACTIONS(3363), - [anon_sym_enum] = ACTIONS(3363), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_else] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(3409), [sym_html_comment] = ACTIONS(5), }, [1180] = { + [sym_else_clause] = STATE(1380), [sym_comment] = STATE(1180), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_finally] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(3365), + [ts_builtin_sym_end] = ACTIONS(3251), + [sym_identifier] = ACTIONS(3187), + [anon_sym_export] = ACTIONS(3187), + [anon_sym_type] = ACTIONS(3187), + [anon_sym_namespace] = ACTIONS(3187), + [anon_sym_LBRACE] = ACTIONS(3187), + [anon_sym_RBRACE] = ACTIONS(3187), + [anon_sym_typeof] = ACTIONS(3187), + [anon_sym_import] = ACTIONS(3187), + [anon_sym_with] = ACTIONS(3187), + [anon_sym_var] = ACTIONS(3187), + [anon_sym_let] = ACTIONS(3187), + [anon_sym_const] = ACTIONS(3187), + [anon_sym_BANG] = ACTIONS(3187), + [anon_sym_else] = ACTIONS(3411), + [anon_sym_if] = ACTIONS(3187), + [anon_sym_switch] = ACTIONS(3187), + [anon_sym_for] = ACTIONS(3187), + [anon_sym_LPAREN] = ACTIONS(3187), + [anon_sym_await] = ACTIONS(3187), + [anon_sym_while] = ACTIONS(3187), + [anon_sym_do] = ACTIONS(3187), + [anon_sym_try] = ACTIONS(3187), + [anon_sym_break] = ACTIONS(3187), + [anon_sym_continue] = ACTIONS(3187), + [anon_sym_debugger] = ACTIONS(3187), + [anon_sym_return] = ACTIONS(3187), + [anon_sym_throw] = ACTIONS(3187), + [anon_sym_SEMI] = ACTIONS(3187), + [anon_sym_yield] = ACTIONS(3187), + [anon_sym_LBRACK] = ACTIONS(3187), + [anon_sym_LTtemplate_GT] = ACTIONS(3187), + [anon_sym_DQUOTE] = ACTIONS(3187), + [anon_sym_SQUOTE] = ACTIONS(3187), + [anon_sym_class] = ACTIONS(3187), + [anon_sym_async] = ACTIONS(3187), + [anon_sym_function] = ACTIONS(3187), + [anon_sym_new] = ACTIONS(3187), + [anon_sym_using] = ACTIONS(3187), + [anon_sym_PLUS] = ACTIONS(3187), + [anon_sym_DASH] = ACTIONS(3187), + [anon_sym_SLASH] = ACTIONS(3187), + [anon_sym_LT] = ACTIONS(3187), + [anon_sym_TILDE] = ACTIONS(3187), + [anon_sym_void] = ACTIONS(3187), + [anon_sym_delete] = ACTIONS(3187), + [anon_sym_PLUS_PLUS] = ACTIONS(3187), + [anon_sym_DASH_DASH] = ACTIONS(3187), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3187), + [sym_number] = ACTIONS(3187), + [sym_private_property_identifier] = ACTIONS(3187), + [sym_this] = ACTIONS(3187), + [sym_super] = ACTIONS(3187), + [sym_true] = ACTIONS(3187), + [sym_false] = ACTIONS(3187), + [sym_null] = ACTIONS(3187), + [sym_undefined] = ACTIONS(3187), + [anon_sym_AT] = ACTIONS(3187), + [anon_sym_static] = ACTIONS(3187), + [anon_sym_readonly] = ACTIONS(3187), + [anon_sym_get] = ACTIONS(3187), + [anon_sym_set] = ACTIONS(3187), + [anon_sym_declare] = ACTIONS(3187), + [anon_sym_public] = ACTIONS(3187), + [anon_sym_private] = ACTIONS(3187), + [anon_sym_protected] = ACTIONS(3187), + [anon_sym_override] = ACTIONS(3187), + [anon_sym_module] = ACTIONS(3187), + [anon_sym_any] = ACTIONS(3187), + [anon_sym_number] = ACTIONS(3187), + [anon_sym_boolean] = ACTIONS(3187), + [anon_sym_string] = ACTIONS(3187), + [anon_sym_symbol] = ACTIONS(3187), + [anon_sym_object] = ACTIONS(3187), + [anon_sym_abstract] = ACTIONS(3187), + [anon_sym_interface] = ACTIONS(3187), + [anon_sym_enum] = ACTIONS(3187), [sym_html_comment] = ACTIONS(5), }, [1181] = { [sym_comment] = STATE(1181), - [sym_identifier] = ACTIONS(3367), - [anon_sym_export] = ACTIONS(3367), - [anon_sym_default] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_namespace] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_typeof] = ACTIONS(3367), - [anon_sym_import] = ACTIONS(3367), - [anon_sym_with] = ACTIONS(3367), - [anon_sym_var] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_else] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_switch] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_await] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_debugger] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_throw] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_case] = ACTIONS(3367), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LTtemplate_GT] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3367), - [anon_sym_class] = ACTIONS(3367), - [anon_sym_async] = ACTIONS(3367), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_using] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_void] = ACTIONS(3367), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), + [sym_identifier] = ACTIONS(3413), + [anon_sym_export] = ACTIONS(3413), + [anon_sym_default] = ACTIONS(3413), + [anon_sym_type] = ACTIONS(3413), + [anon_sym_namespace] = ACTIONS(3413), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_RBRACE] = ACTIONS(3413), + [anon_sym_typeof] = ACTIONS(3413), + [anon_sym_import] = ACTIONS(3413), + [anon_sym_with] = ACTIONS(3413), + [anon_sym_var] = ACTIONS(3413), + [anon_sym_let] = ACTIONS(3413), + [anon_sym_const] = ACTIONS(3413), + [anon_sym_BANG] = ACTIONS(3413), + [anon_sym_else] = ACTIONS(3413), + [anon_sym_if] = ACTIONS(3413), + [anon_sym_switch] = ACTIONS(3413), + [anon_sym_for] = ACTIONS(3413), + [anon_sym_LPAREN] = ACTIONS(3413), + [anon_sym_await] = ACTIONS(3413), + [anon_sym_while] = ACTIONS(3413), + [anon_sym_do] = ACTIONS(3413), + [anon_sym_try] = ACTIONS(3413), + [anon_sym_break] = ACTIONS(3413), + [anon_sym_continue] = ACTIONS(3413), + [anon_sym_debugger] = ACTIONS(3413), + [anon_sym_return] = ACTIONS(3413), + [anon_sym_throw] = ACTIONS(3413), + [anon_sym_SEMI] = ACTIONS(3413), + [anon_sym_case] = ACTIONS(3413), + [anon_sym_yield] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LTtemplate_GT] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(3413), + [anon_sym_SQUOTE] = ACTIONS(3413), + [anon_sym_class] = ACTIONS(3413), + [anon_sym_async] = ACTIONS(3413), + [anon_sym_function] = ACTIONS(3413), + [anon_sym_new] = ACTIONS(3413), + [anon_sym_using] = ACTIONS(3413), + [anon_sym_PLUS] = ACTIONS(3413), + [anon_sym_DASH] = ACTIONS(3413), + [anon_sym_SLASH] = ACTIONS(3413), + [anon_sym_LT] = ACTIONS(3413), + [anon_sym_TILDE] = ACTIONS(3413), + [anon_sym_void] = ACTIONS(3413), + [anon_sym_delete] = ACTIONS(3413), + [anon_sym_PLUS_PLUS] = ACTIONS(3413), + [anon_sym_DASH_DASH] = ACTIONS(3413), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3367), - [sym_number] = ACTIONS(3367), - [sym_private_property_identifier] = ACTIONS(3367), - [sym_this] = ACTIONS(3367), - [sym_super] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_null] = ACTIONS(3367), - [sym_undefined] = ACTIONS(3367), - [anon_sym_AT] = ACTIONS(3367), - [anon_sym_static] = ACTIONS(3367), - [anon_sym_readonly] = ACTIONS(3367), - [anon_sym_get] = ACTIONS(3367), - [anon_sym_set] = ACTIONS(3367), - [anon_sym_declare] = ACTIONS(3367), - [anon_sym_public] = ACTIONS(3367), - [anon_sym_private] = ACTIONS(3367), - [anon_sym_protected] = ACTIONS(3367), - [anon_sym_override] = ACTIONS(3367), - [anon_sym_module] = ACTIONS(3367), - [anon_sym_any] = ACTIONS(3367), - [anon_sym_number] = ACTIONS(3367), - [anon_sym_boolean] = ACTIONS(3367), - [anon_sym_string] = ACTIONS(3367), - [anon_sym_symbol] = ACTIONS(3367), - [anon_sym_object] = ACTIONS(3367), - [anon_sym_abstract] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), + [anon_sym_BQUOTE] = ACTIONS(3413), + [sym_number] = ACTIONS(3413), + [sym_private_property_identifier] = ACTIONS(3413), + [sym_this] = ACTIONS(3413), + [sym_super] = ACTIONS(3413), + [sym_true] = ACTIONS(3413), + [sym_false] = ACTIONS(3413), + [sym_null] = ACTIONS(3413), + [sym_undefined] = ACTIONS(3413), + [anon_sym_AT] = ACTIONS(3413), + [anon_sym_static] = ACTIONS(3413), + [anon_sym_readonly] = ACTIONS(3413), + [anon_sym_get] = ACTIONS(3413), + [anon_sym_set] = ACTIONS(3413), + [anon_sym_declare] = ACTIONS(3413), + [anon_sym_public] = ACTIONS(3413), + [anon_sym_private] = ACTIONS(3413), + [anon_sym_protected] = ACTIONS(3413), + [anon_sym_override] = ACTIONS(3413), + [anon_sym_module] = ACTIONS(3413), + [anon_sym_any] = ACTIONS(3413), + [anon_sym_number] = ACTIONS(3413), + [anon_sym_boolean] = ACTIONS(3413), + [anon_sym_string] = ACTIONS(3413), + [anon_sym_symbol] = ACTIONS(3413), + [anon_sym_object] = ACTIONS(3413), + [anon_sym_abstract] = ACTIONS(3413), + [anon_sym_interface] = ACTIONS(3413), + [anon_sym_enum] = ACTIONS(3413), [sym_html_comment] = ACTIONS(5), }, [1182] = { [sym_comment] = STATE(1182), - [sym_identifier] = ACTIONS(3369), - [anon_sym_export] = ACTIONS(3369), - [anon_sym_default] = ACTIONS(3369), - [anon_sym_type] = ACTIONS(3369), - [anon_sym_namespace] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_RBRACE] = ACTIONS(3369), - [anon_sym_typeof] = ACTIONS(3369), - [anon_sym_import] = ACTIONS(3369), - [anon_sym_with] = ACTIONS(3369), - [anon_sym_var] = ACTIONS(3369), - [anon_sym_let] = ACTIONS(3369), - [anon_sym_const] = ACTIONS(3369), - [anon_sym_BANG] = ACTIONS(3369), - [anon_sym_else] = ACTIONS(3369), - [anon_sym_if] = ACTIONS(3369), - [anon_sym_switch] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_await] = ACTIONS(3369), - [anon_sym_while] = ACTIONS(3369), - [anon_sym_do] = ACTIONS(3369), - [anon_sym_try] = ACTIONS(3369), - [anon_sym_break] = ACTIONS(3369), - [anon_sym_continue] = ACTIONS(3369), - [anon_sym_debugger] = ACTIONS(3369), - [anon_sym_return] = ACTIONS(3369), - [anon_sym_throw] = ACTIONS(3369), - [anon_sym_SEMI] = ACTIONS(3369), - [anon_sym_case] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_LTtemplate_GT] = ACTIONS(3369), - [anon_sym_DQUOTE] = ACTIONS(3369), - [anon_sym_SQUOTE] = ACTIONS(3369), - [anon_sym_class] = ACTIONS(3369), - [anon_sym_async] = ACTIONS(3369), - [anon_sym_function] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3369), - [anon_sym_using] = ACTIONS(3369), - [anon_sym_PLUS] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_SLASH] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_void] = ACTIONS(3369), - [anon_sym_delete] = ACTIONS(3369), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), + [sym_identifier] = ACTIONS(3415), + [anon_sym_export] = ACTIONS(3415), + [anon_sym_default] = ACTIONS(3415), + [anon_sym_type] = ACTIONS(3415), + [anon_sym_namespace] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3415), + [anon_sym_RBRACE] = ACTIONS(3415), + [anon_sym_typeof] = ACTIONS(3415), + [anon_sym_import] = ACTIONS(3415), + [anon_sym_with] = ACTIONS(3415), + [anon_sym_var] = ACTIONS(3415), + [anon_sym_let] = ACTIONS(3415), + [anon_sym_const] = ACTIONS(3415), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_else] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3415), + [anon_sym_switch] = ACTIONS(3415), + [anon_sym_for] = ACTIONS(3415), + [anon_sym_LPAREN] = ACTIONS(3415), + [anon_sym_await] = ACTIONS(3415), + [anon_sym_while] = ACTIONS(3415), + [anon_sym_do] = ACTIONS(3415), + [anon_sym_try] = ACTIONS(3415), + [anon_sym_break] = ACTIONS(3415), + [anon_sym_continue] = ACTIONS(3415), + [anon_sym_debugger] = ACTIONS(3415), + [anon_sym_return] = ACTIONS(3415), + [anon_sym_throw] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_case] = ACTIONS(3415), + [anon_sym_yield] = ACTIONS(3415), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_LTtemplate_GT] = ACTIONS(3415), + [anon_sym_DQUOTE] = ACTIONS(3415), + [anon_sym_SQUOTE] = ACTIONS(3415), + [anon_sym_class] = ACTIONS(3415), + [anon_sym_async] = ACTIONS(3415), + [anon_sym_function] = ACTIONS(3415), + [anon_sym_new] = ACTIONS(3415), + [anon_sym_using] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(3415), + [anon_sym_DASH] = ACTIONS(3415), + [anon_sym_SLASH] = ACTIONS(3415), + [anon_sym_LT] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(3415), + [anon_sym_void] = ACTIONS(3415), + [anon_sym_delete] = ACTIONS(3415), + [anon_sym_PLUS_PLUS] = ACTIONS(3415), + [anon_sym_DASH_DASH] = ACTIONS(3415), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3369), - [sym_number] = ACTIONS(3369), - [sym_private_property_identifier] = ACTIONS(3369), - [sym_this] = ACTIONS(3369), - [sym_super] = ACTIONS(3369), - [sym_true] = ACTIONS(3369), - [sym_false] = ACTIONS(3369), - [sym_null] = ACTIONS(3369), - [sym_undefined] = ACTIONS(3369), - [anon_sym_AT] = ACTIONS(3369), - [anon_sym_static] = ACTIONS(3369), - [anon_sym_readonly] = ACTIONS(3369), - [anon_sym_get] = ACTIONS(3369), - [anon_sym_set] = ACTIONS(3369), - [anon_sym_declare] = ACTIONS(3369), - [anon_sym_public] = ACTIONS(3369), - [anon_sym_private] = ACTIONS(3369), - [anon_sym_protected] = ACTIONS(3369), - [anon_sym_override] = ACTIONS(3369), - [anon_sym_module] = ACTIONS(3369), - [anon_sym_any] = ACTIONS(3369), - [anon_sym_number] = ACTIONS(3369), - [anon_sym_boolean] = ACTIONS(3369), - [anon_sym_string] = ACTIONS(3369), - [anon_sym_symbol] = ACTIONS(3369), - [anon_sym_object] = ACTIONS(3369), - [anon_sym_abstract] = ACTIONS(3369), - [anon_sym_interface] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(3369), - [sym_html_comment] = ACTIONS(5), - }, + [anon_sym_BQUOTE] = ACTIONS(3415), + [sym_number] = ACTIONS(3415), + [sym_private_property_identifier] = ACTIONS(3415), + [sym_this] = ACTIONS(3415), + [sym_super] = ACTIONS(3415), + [sym_true] = ACTIONS(3415), + [sym_false] = ACTIONS(3415), + [sym_null] = ACTIONS(3415), + [sym_undefined] = ACTIONS(3415), + [anon_sym_AT] = ACTIONS(3415), + [anon_sym_static] = ACTIONS(3415), + [anon_sym_readonly] = ACTIONS(3415), + [anon_sym_get] = ACTIONS(3415), + [anon_sym_set] = ACTIONS(3415), + [anon_sym_declare] = ACTIONS(3415), + [anon_sym_public] = ACTIONS(3415), + [anon_sym_private] = ACTIONS(3415), + [anon_sym_protected] = ACTIONS(3415), + [anon_sym_override] = ACTIONS(3415), + [anon_sym_module] = ACTIONS(3415), + [anon_sym_any] = ACTIONS(3415), + [anon_sym_number] = ACTIONS(3415), + [anon_sym_boolean] = ACTIONS(3415), + [anon_sym_string] = ACTIONS(3415), + [anon_sym_symbol] = ACTIONS(3415), + [anon_sym_object] = ACTIONS(3415), + [anon_sym_abstract] = ACTIONS(3415), + [anon_sym_interface] = ACTIONS(3415), + [anon_sym_enum] = ACTIONS(3415), + [sym_html_comment] = ACTIONS(5), + }, [1183] = { [sym_comment] = STATE(1183), - [sym_identifier] = ACTIONS(3371), - [anon_sym_export] = ACTIONS(3371), - [anon_sym_default] = ACTIONS(3371), - [anon_sym_type] = ACTIONS(3371), - [anon_sym_namespace] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_typeof] = ACTIONS(3371), - [anon_sym_import] = ACTIONS(3371), - [anon_sym_with] = ACTIONS(3371), - [anon_sym_var] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_const] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_else] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_switch] = ACTIONS(3371), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_await] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_debugger] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_case] = ACTIONS(3371), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LTtemplate_GT] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_SQUOTE] = ACTIONS(3371), - [anon_sym_class] = ACTIONS(3371), - [anon_sym_async] = ACTIONS(3371), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_using] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3371), - [anon_sym_void] = ACTIONS(3371), - [anon_sym_delete] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3371), - [anon_sym_DASH_DASH] = ACTIONS(3371), + [sym_identifier] = ACTIONS(3167), + [anon_sym_export] = ACTIONS(3167), + [anon_sym_default] = ACTIONS(3167), + [anon_sym_type] = ACTIONS(3167), + [anon_sym_namespace] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_typeof] = ACTIONS(3167), + [anon_sym_import] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3167), + [anon_sym_var] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_await] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_debugger] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_case] = ACTIONS(3167), + [anon_sym_finally] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LTtemplate_GT] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_delete] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3371), - [sym_number] = ACTIONS(3371), - [sym_private_property_identifier] = ACTIONS(3371), - [sym_this] = ACTIONS(3371), - [sym_super] = ACTIONS(3371), - [sym_true] = ACTIONS(3371), - [sym_false] = ACTIONS(3371), - [sym_null] = ACTIONS(3371), - [sym_undefined] = ACTIONS(3371), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_readonly] = ACTIONS(3371), - [anon_sym_get] = ACTIONS(3371), - [anon_sym_set] = ACTIONS(3371), - [anon_sym_declare] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_protected] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3371), - [anon_sym_module] = ACTIONS(3371), - [anon_sym_any] = ACTIONS(3371), - [anon_sym_number] = ACTIONS(3371), - [anon_sym_boolean] = ACTIONS(3371), - [anon_sym_string] = ACTIONS(3371), - [anon_sym_symbol] = ACTIONS(3371), - [anon_sym_object] = ACTIONS(3371), - [anon_sym_abstract] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), + [anon_sym_BQUOTE] = ACTIONS(3167), + [sym_number] = ACTIONS(3167), + [sym_private_property_identifier] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_null] = ACTIONS(3167), + [sym_undefined] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_readonly] = ACTIONS(3167), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_declare] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_module] = ACTIONS(3167), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_interface] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), [sym_html_comment] = ACTIONS(5), }, [1184] = { [sym_comment] = STATE(1184), - [sym_identifier] = ACTIONS(3373), - [anon_sym_export] = ACTIONS(3373), - [anon_sym_default] = ACTIONS(3373), - [anon_sym_type] = ACTIONS(3373), - [anon_sym_namespace] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_typeof] = ACTIONS(3373), - [anon_sym_import] = ACTIONS(3373), - [anon_sym_with] = ACTIONS(3373), - [anon_sym_var] = ACTIONS(3373), - [anon_sym_let] = ACTIONS(3373), - [anon_sym_const] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(3373), - [anon_sym_else] = ACTIONS(3373), - [anon_sym_if] = ACTIONS(3373), - [anon_sym_switch] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_await] = ACTIONS(3373), - [anon_sym_while] = ACTIONS(3373), - [anon_sym_do] = ACTIONS(3373), - [anon_sym_try] = ACTIONS(3373), - [anon_sym_break] = ACTIONS(3373), - [anon_sym_continue] = ACTIONS(3373), - [anon_sym_debugger] = ACTIONS(3373), - [anon_sym_return] = ACTIONS(3373), - [anon_sym_throw] = ACTIONS(3373), - [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_case] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_LTtemplate_GT] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(3373), - [anon_sym_SQUOTE] = ACTIONS(3373), - [anon_sym_class] = ACTIONS(3373), - [anon_sym_async] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_using] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_SLASH] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_void] = ACTIONS(3373), - [anon_sym_delete] = ACTIONS(3373), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3373), - [sym_number] = ACTIONS(3373), - [sym_private_property_identifier] = ACTIONS(3373), - [sym_this] = ACTIONS(3373), - [sym_super] = ACTIONS(3373), - [sym_true] = ACTIONS(3373), - [sym_false] = ACTIONS(3373), - [sym_null] = ACTIONS(3373), - [sym_undefined] = ACTIONS(3373), - [anon_sym_AT] = ACTIONS(3373), - [anon_sym_static] = ACTIONS(3373), - [anon_sym_readonly] = ACTIONS(3373), - [anon_sym_get] = ACTIONS(3373), - [anon_sym_set] = ACTIONS(3373), - [anon_sym_declare] = ACTIONS(3373), - [anon_sym_public] = ACTIONS(3373), - [anon_sym_private] = ACTIONS(3373), - [anon_sym_protected] = ACTIONS(3373), - [anon_sym_override] = ACTIONS(3373), - [anon_sym_module] = ACTIONS(3373), - [anon_sym_any] = ACTIONS(3373), - [anon_sym_number] = ACTIONS(3373), - [anon_sym_boolean] = ACTIONS(3373), - [anon_sym_string] = ACTIONS(3373), - [anon_sym_symbol] = ACTIONS(3373), - [anon_sym_object] = ACTIONS(3373), - [anon_sym_abstract] = ACTIONS(3373), - [anon_sym_interface] = ACTIONS(3373), - [anon_sym_enum] = ACTIONS(3373), + [ts_builtin_sym_end] = ACTIONS(2380), + [sym_identifier] = ACTIONS(2272), + [anon_sym_export] = ACTIONS(2272), + [anon_sym_type] = ACTIONS(2272), + [anon_sym_namespace] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_typeof] = ACTIONS(2272), + [anon_sym_import] = ACTIONS(2272), + [anon_sym_with] = ACTIONS(2272), + [anon_sym_var] = ACTIONS(2272), + [anon_sym_let] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [anon_sym_BANG] = ACTIONS(2272), + [anon_sym_else] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_switch] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_await] = ACTIONS(2272), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_debugger] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_throw] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_yield] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_LTtemplate_GT] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_class] = ACTIONS(2272), + [anon_sym_async] = ACTIONS(2272), + [anon_sym_function] = ACTIONS(2272), + [anon_sym_new] = ACTIONS(2272), + [anon_sym_using] = ACTIONS(2272), + [anon_sym_PLUS] = ACTIONS(2272), + [anon_sym_DASH] = ACTIONS(2272), + [anon_sym_SLASH] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_TILDE] = ACTIONS(2272), + [anon_sym_void] = ACTIONS(2272), + [anon_sym_delete] = ACTIONS(2272), + [anon_sym_PLUS_PLUS] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2272), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2272), + [sym_number] = ACTIONS(2272), + [sym_private_property_identifier] = ACTIONS(2272), + [sym_this] = ACTIONS(2272), + [sym_super] = ACTIONS(2272), + [sym_true] = ACTIONS(2272), + [sym_false] = ACTIONS(2272), + [sym_null] = ACTIONS(2272), + [sym_undefined] = ACTIONS(2272), + [anon_sym_AT] = ACTIONS(2272), + [anon_sym_static] = ACTIONS(2272), + [anon_sym_readonly] = ACTIONS(2272), + [anon_sym_get] = ACTIONS(2272), + [anon_sym_set] = ACTIONS(2272), + [anon_sym_declare] = ACTIONS(2272), + [anon_sym_public] = ACTIONS(2272), + [anon_sym_private] = ACTIONS(2272), + [anon_sym_protected] = ACTIONS(2272), + [anon_sym_override] = ACTIONS(2272), + [anon_sym_module] = ACTIONS(2272), + [anon_sym_any] = ACTIONS(2272), + [anon_sym_number] = ACTIONS(2272), + [anon_sym_boolean] = ACTIONS(2272), + [anon_sym_string] = ACTIONS(2272), + [anon_sym_symbol] = ACTIONS(2272), + [anon_sym_object] = ACTIONS(2272), + [anon_sym_abstract] = ACTIONS(2272), + [anon_sym_interface] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), + [sym__automatic_semicolon] = ACTIONS(2382), [sym_html_comment] = ACTIONS(5), }, [1185] = { [sym_comment] = STATE(1185), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_default] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_else] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(2176), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_case] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LTtemplate_GT] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_number] = ACTIONS(2176), - [sym_private_property_identifier] = ACTIONS(2176), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), + [sym_identifier] = ACTIONS(3417), + [anon_sym_export] = ACTIONS(3417), + [anon_sym_default] = ACTIONS(3417), + [anon_sym_type] = ACTIONS(3417), + [anon_sym_namespace] = ACTIONS(3417), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_RBRACE] = ACTIONS(3417), + [anon_sym_typeof] = ACTIONS(3417), + [anon_sym_import] = ACTIONS(3417), + [anon_sym_with] = ACTIONS(3417), + [anon_sym_var] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_const] = ACTIONS(3417), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_else] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_switch] = ACTIONS(3417), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_await] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_break] = ACTIONS(3417), + [anon_sym_continue] = ACTIONS(3417), + [anon_sym_debugger] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_throw] = ACTIONS(3417), + [anon_sym_SEMI] = ACTIONS(3417), + [anon_sym_case] = ACTIONS(3417), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LTtemplate_GT] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3417), + [anon_sym_class] = ACTIONS(3417), + [anon_sym_async] = ACTIONS(3417), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_using] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_SLASH] = ACTIONS(3417), + [anon_sym_LT] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_void] = ACTIONS(3417), + [anon_sym_delete] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_DASH_DASH] = ACTIONS(3417), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3417), + [sym_number] = ACTIONS(3417), + [sym_private_property_identifier] = ACTIONS(3417), + [sym_this] = ACTIONS(3417), + [sym_super] = ACTIONS(3417), + [sym_true] = ACTIONS(3417), + [sym_false] = ACTIONS(3417), + [sym_null] = ACTIONS(3417), + [sym_undefined] = ACTIONS(3417), + [anon_sym_AT] = ACTIONS(3417), + [anon_sym_static] = ACTIONS(3417), + [anon_sym_readonly] = ACTIONS(3417), + [anon_sym_get] = ACTIONS(3417), + [anon_sym_set] = ACTIONS(3417), + [anon_sym_declare] = ACTIONS(3417), + [anon_sym_public] = ACTIONS(3417), + [anon_sym_private] = ACTIONS(3417), + [anon_sym_protected] = ACTIONS(3417), + [anon_sym_override] = ACTIONS(3417), + [anon_sym_module] = ACTIONS(3417), + [anon_sym_any] = ACTIONS(3417), + [anon_sym_number] = ACTIONS(3417), + [anon_sym_boolean] = ACTIONS(3417), + [anon_sym_string] = ACTIONS(3417), + [anon_sym_symbol] = ACTIONS(3417), + [anon_sym_object] = ACTIONS(3417), + [anon_sym_abstract] = ACTIONS(3417), + [anon_sym_interface] = ACTIONS(3417), + [anon_sym_enum] = ACTIONS(3417), [sym_html_comment] = ACTIONS(5), }, [1186] = { [sym_comment] = STATE(1186), - [sym_identifier] = ACTIONS(3375), - [anon_sym_export] = ACTIONS(3375), - [anon_sym_default] = ACTIONS(3375), - [anon_sym_type] = ACTIONS(3375), - [anon_sym_namespace] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_typeof] = ACTIONS(3375), - [anon_sym_import] = ACTIONS(3375), - [anon_sym_with] = ACTIONS(3375), - [anon_sym_var] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_const] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_else] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_switch] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_await] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_debugger] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_throw] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_case] = ACTIONS(3375), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LTtemplate_GT] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3375), - [anon_sym_class] = ACTIONS(3375), - [anon_sym_async] = ACTIONS(3375), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_using] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_void] = ACTIONS(3375), - [anon_sym_delete] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3375), - [anon_sym_DASH_DASH] = ACTIONS(3375), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3375), - [sym_number] = ACTIONS(3375), - [sym_private_property_identifier] = ACTIONS(3375), - [sym_this] = ACTIONS(3375), - [sym_super] = ACTIONS(3375), - [sym_true] = ACTIONS(3375), - [sym_false] = ACTIONS(3375), - [sym_null] = ACTIONS(3375), - [sym_undefined] = ACTIONS(3375), - [anon_sym_AT] = ACTIONS(3375), - [anon_sym_static] = ACTIONS(3375), - [anon_sym_readonly] = ACTIONS(3375), - [anon_sym_get] = ACTIONS(3375), - [anon_sym_set] = ACTIONS(3375), - [anon_sym_declare] = ACTIONS(3375), - [anon_sym_public] = ACTIONS(3375), - [anon_sym_private] = ACTIONS(3375), - [anon_sym_protected] = ACTIONS(3375), - [anon_sym_override] = ACTIONS(3375), - [anon_sym_module] = ACTIONS(3375), - [anon_sym_any] = ACTIONS(3375), - [anon_sym_number] = ACTIONS(3375), - [anon_sym_boolean] = ACTIONS(3375), - [anon_sym_string] = ACTIONS(3375), - [anon_sym_symbol] = ACTIONS(3375), - [anon_sym_object] = ACTIONS(3375), - [anon_sym_abstract] = ACTIONS(3375), - [anon_sym_interface] = ACTIONS(3375), - [anon_sym_enum] = ACTIONS(3375), + [sym_identifier] = ACTIONS(2308), + [anon_sym_export] = ACTIONS(2308), + [anon_sym_default] = ACTIONS(2308), + [anon_sym_type] = ACTIONS(2308), + [anon_sym_namespace] = ACTIONS(2308), + [anon_sym_LBRACE] = ACTIONS(2308), + [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_typeof] = ACTIONS(2308), + [anon_sym_import] = ACTIONS(2308), + [anon_sym_with] = ACTIONS(2308), + [anon_sym_var] = ACTIONS(2308), + [anon_sym_let] = ACTIONS(2308), + [anon_sym_const] = ACTIONS(2308), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_switch] = ACTIONS(2308), + [anon_sym_for] = ACTIONS(2308), + [anon_sym_LPAREN] = ACTIONS(2308), + [anon_sym_await] = ACTIONS(2308), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_do] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2308), + [anon_sym_break] = ACTIONS(2308), + [anon_sym_continue] = ACTIONS(2308), + [anon_sym_debugger] = ACTIONS(2308), + [anon_sym_return] = ACTIONS(2308), + [anon_sym_throw] = ACTIONS(2308), + [anon_sym_SEMI] = ACTIONS(2308), + [anon_sym_case] = ACTIONS(2308), + [anon_sym_yield] = ACTIONS(2308), + [anon_sym_LBRACK] = ACTIONS(2308), + [anon_sym_LTtemplate_GT] = ACTIONS(2308), + [anon_sym_DQUOTE] = ACTIONS(2308), + [anon_sym_SQUOTE] = ACTIONS(2308), + [anon_sym_class] = ACTIONS(2308), + [anon_sym_async] = ACTIONS(2308), + [anon_sym_function] = ACTIONS(2308), + [anon_sym_new] = ACTIONS(2308), + [anon_sym_using] = ACTIONS(2308), + [anon_sym_PLUS] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2308), + [anon_sym_SLASH] = ACTIONS(2308), + [anon_sym_LT] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_void] = ACTIONS(2308), + [anon_sym_delete] = ACTIONS(2308), + [anon_sym_PLUS_PLUS] = ACTIONS(2308), + [anon_sym_DASH_DASH] = ACTIONS(2308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2308), + [sym_number] = ACTIONS(2308), + [sym_private_property_identifier] = ACTIONS(2308), + [sym_this] = ACTIONS(2308), + [sym_super] = ACTIONS(2308), + [sym_true] = ACTIONS(2308), + [sym_false] = ACTIONS(2308), + [sym_null] = ACTIONS(2308), + [sym_undefined] = ACTIONS(2308), + [anon_sym_AT] = ACTIONS(2308), + [anon_sym_static] = ACTIONS(2308), + [anon_sym_readonly] = ACTIONS(2308), + [anon_sym_get] = ACTIONS(2308), + [anon_sym_set] = ACTIONS(2308), + [anon_sym_declare] = ACTIONS(2308), + [anon_sym_public] = ACTIONS(2308), + [anon_sym_private] = ACTIONS(2308), + [anon_sym_protected] = ACTIONS(2308), + [anon_sym_override] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2308), + [anon_sym_any] = ACTIONS(2308), + [anon_sym_number] = ACTIONS(2308), + [anon_sym_boolean] = ACTIONS(2308), + [anon_sym_string] = ACTIONS(2308), + [anon_sym_symbol] = ACTIONS(2308), + [anon_sym_object] = ACTIONS(2308), + [anon_sym_abstract] = ACTIONS(2308), + [anon_sym_interface] = ACTIONS(2308), + [anon_sym_enum] = ACTIONS(2308), + [sym__automatic_semicolon] = ACTIONS(2424), [sym_html_comment] = ACTIONS(5), }, [1187] = { [sym_comment] = STATE(1187), - [sym_identifier] = ACTIONS(3377), - [anon_sym_export] = ACTIONS(3377), - [anon_sym_default] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_namespace] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_typeof] = ACTIONS(3377), - [anon_sym_import] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3377), - [anon_sym_var] = ACTIONS(3377), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_const] = ACTIONS(3377), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_else] = ACTIONS(3377), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_switch] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_await] = ACTIONS(3377), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_do] = ACTIONS(3377), - [anon_sym_try] = ACTIONS(3377), - [anon_sym_break] = ACTIONS(3377), - [anon_sym_continue] = ACTIONS(3377), - [anon_sym_debugger] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3377), - [anon_sym_throw] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_case] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_LTtemplate_GT] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_using] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_SLASH] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_void] = ACTIONS(3377), - [anon_sym_delete] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), + [sym_identifier] = ACTIONS(3419), + [anon_sym_export] = ACTIONS(3419), + [anon_sym_default] = ACTIONS(3419), + [anon_sym_type] = ACTIONS(3419), + [anon_sym_namespace] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_RBRACE] = ACTIONS(3419), + [anon_sym_typeof] = ACTIONS(3419), + [anon_sym_import] = ACTIONS(3419), + [anon_sym_with] = ACTIONS(3419), + [anon_sym_var] = ACTIONS(3419), + [anon_sym_let] = ACTIONS(3419), + [anon_sym_const] = ACTIONS(3419), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_else] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_await] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_debugger] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_throw] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_case] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_LTtemplate_GT] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_class] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(3419), + [anon_sym_function] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3419), + [anon_sym_using] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_SLASH] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(3419), + [anon_sym_void] = ACTIONS(3419), + [anon_sym_delete] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3419), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3377), - [sym_number] = ACTIONS(3377), - [sym_private_property_identifier] = ACTIONS(3377), - [sym_this] = ACTIONS(3377), - [sym_super] = ACTIONS(3377), - [sym_true] = ACTIONS(3377), - [sym_false] = ACTIONS(3377), - [sym_null] = ACTIONS(3377), - [sym_undefined] = ACTIONS(3377), - [anon_sym_AT] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_readonly] = ACTIONS(3377), - [anon_sym_get] = ACTIONS(3377), - [anon_sym_set] = ACTIONS(3377), - [anon_sym_declare] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_protected] = ACTIONS(3377), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_any] = ACTIONS(3377), - [anon_sym_number] = ACTIONS(3377), - [anon_sym_boolean] = ACTIONS(3377), - [anon_sym_string] = ACTIONS(3377), - [anon_sym_symbol] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_abstract] = ACTIONS(3377), - [anon_sym_interface] = ACTIONS(3377), - [anon_sym_enum] = ACTIONS(3377), + [anon_sym_BQUOTE] = ACTIONS(3419), + [sym_number] = ACTIONS(3419), + [sym_private_property_identifier] = ACTIONS(3419), + [sym_this] = ACTIONS(3419), + [sym_super] = ACTIONS(3419), + [sym_true] = ACTIONS(3419), + [sym_false] = ACTIONS(3419), + [sym_null] = ACTIONS(3419), + [sym_undefined] = ACTIONS(3419), + [anon_sym_AT] = ACTIONS(3419), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_readonly] = ACTIONS(3419), + [anon_sym_get] = ACTIONS(3419), + [anon_sym_set] = ACTIONS(3419), + [anon_sym_declare] = ACTIONS(3419), + [anon_sym_public] = ACTIONS(3419), + [anon_sym_private] = ACTIONS(3419), + [anon_sym_protected] = ACTIONS(3419), + [anon_sym_override] = ACTIONS(3419), + [anon_sym_module] = ACTIONS(3419), + [anon_sym_any] = ACTIONS(3419), + [anon_sym_number] = ACTIONS(3419), + [anon_sym_boolean] = ACTIONS(3419), + [anon_sym_string] = ACTIONS(3419), + [anon_sym_symbol] = ACTIONS(3419), + [anon_sym_object] = ACTIONS(3419), + [anon_sym_abstract] = ACTIONS(3419), + [anon_sym_interface] = ACTIONS(3419), + [anon_sym_enum] = ACTIONS(3419), [sym_html_comment] = ACTIONS(5), }, [1188] = { [sym_comment] = STATE(1188), - [sym_identifier] = ACTIONS(3377), - [anon_sym_export] = ACTIONS(3377), - [anon_sym_default] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_namespace] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_typeof] = ACTIONS(3377), - [anon_sym_import] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3377), - [anon_sym_var] = ACTIONS(3377), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_const] = ACTIONS(3377), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_else] = ACTIONS(3377), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_switch] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_await] = ACTIONS(3377), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_do] = ACTIONS(3377), - [anon_sym_try] = ACTIONS(3377), - [anon_sym_break] = ACTIONS(3377), - [anon_sym_continue] = ACTIONS(3377), - [anon_sym_debugger] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3377), - [anon_sym_throw] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_case] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_LTtemplate_GT] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_using] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_SLASH] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_void] = ACTIONS(3377), - [anon_sym_delete] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), + [sym_identifier] = ACTIONS(3421), + [anon_sym_export] = ACTIONS(3421), + [anon_sym_default] = ACTIONS(3421), + [anon_sym_type] = ACTIONS(3421), + [anon_sym_namespace] = ACTIONS(3421), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_RBRACE] = ACTIONS(3421), + [anon_sym_typeof] = ACTIONS(3421), + [anon_sym_import] = ACTIONS(3421), + [anon_sym_with] = ACTIONS(3421), + [anon_sym_var] = ACTIONS(3421), + [anon_sym_let] = ACTIONS(3421), + [anon_sym_const] = ACTIONS(3421), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_else] = ACTIONS(3421), + [anon_sym_if] = ACTIONS(3421), + [anon_sym_switch] = ACTIONS(3421), + [anon_sym_for] = ACTIONS(3421), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_await] = ACTIONS(3421), + [anon_sym_while] = ACTIONS(3421), + [anon_sym_do] = ACTIONS(3421), + [anon_sym_try] = ACTIONS(3421), + [anon_sym_break] = ACTIONS(3421), + [anon_sym_continue] = ACTIONS(3421), + [anon_sym_debugger] = ACTIONS(3421), + [anon_sym_return] = ACTIONS(3421), + [anon_sym_throw] = ACTIONS(3421), + [anon_sym_SEMI] = ACTIONS(3421), + [anon_sym_case] = ACTIONS(3421), + [anon_sym_yield] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3421), + [anon_sym_LTtemplate_GT] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_class] = ACTIONS(3421), + [anon_sym_async] = ACTIONS(3421), + [anon_sym_function] = ACTIONS(3421), + [anon_sym_new] = ACTIONS(3421), + [anon_sym_using] = ACTIONS(3421), + [anon_sym_PLUS] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(3421), + [anon_sym_SLASH] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3421), + [anon_sym_void] = ACTIONS(3421), + [anon_sym_delete] = ACTIONS(3421), + [anon_sym_PLUS_PLUS] = ACTIONS(3421), + [anon_sym_DASH_DASH] = ACTIONS(3421), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3377), - [sym_number] = ACTIONS(3377), - [sym_private_property_identifier] = ACTIONS(3377), - [sym_this] = ACTIONS(3377), - [sym_super] = ACTIONS(3377), - [sym_true] = ACTIONS(3377), - [sym_false] = ACTIONS(3377), - [sym_null] = ACTIONS(3377), - [sym_undefined] = ACTIONS(3377), - [anon_sym_AT] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_readonly] = ACTIONS(3377), - [anon_sym_get] = ACTIONS(3377), - [anon_sym_set] = ACTIONS(3377), - [anon_sym_declare] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_protected] = ACTIONS(3377), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_any] = ACTIONS(3377), - [anon_sym_number] = ACTIONS(3377), - [anon_sym_boolean] = ACTIONS(3377), - [anon_sym_string] = ACTIONS(3377), - [anon_sym_symbol] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_abstract] = ACTIONS(3377), - [anon_sym_interface] = ACTIONS(3377), - [anon_sym_enum] = ACTIONS(3377), + [anon_sym_BQUOTE] = ACTIONS(3421), + [sym_number] = ACTIONS(3421), + [sym_private_property_identifier] = ACTIONS(3421), + [sym_this] = ACTIONS(3421), + [sym_super] = ACTIONS(3421), + [sym_true] = ACTIONS(3421), + [sym_false] = ACTIONS(3421), + [sym_null] = ACTIONS(3421), + [sym_undefined] = ACTIONS(3421), + [anon_sym_AT] = ACTIONS(3421), + [anon_sym_static] = ACTIONS(3421), + [anon_sym_readonly] = ACTIONS(3421), + [anon_sym_get] = ACTIONS(3421), + [anon_sym_set] = ACTIONS(3421), + [anon_sym_declare] = ACTIONS(3421), + [anon_sym_public] = ACTIONS(3421), + [anon_sym_private] = ACTIONS(3421), + [anon_sym_protected] = ACTIONS(3421), + [anon_sym_override] = ACTIONS(3421), + [anon_sym_module] = ACTIONS(3421), + [anon_sym_any] = ACTIONS(3421), + [anon_sym_number] = ACTIONS(3421), + [anon_sym_boolean] = ACTIONS(3421), + [anon_sym_string] = ACTIONS(3421), + [anon_sym_symbol] = ACTIONS(3421), + [anon_sym_object] = ACTIONS(3421), + [anon_sym_abstract] = ACTIONS(3421), + [anon_sym_interface] = ACTIONS(3421), + [anon_sym_enum] = ACTIONS(3421), [sym_html_comment] = ACTIONS(5), }, [1189] = { [sym_comment] = STATE(1189), - [sym_identifier] = ACTIONS(3379), - [anon_sym_export] = ACTIONS(3379), - [anon_sym_default] = ACTIONS(3379), - [anon_sym_type] = ACTIONS(3379), - [anon_sym_namespace] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3379), - [anon_sym_typeof] = ACTIONS(3379), - [anon_sym_import] = ACTIONS(3379), - [anon_sym_with] = ACTIONS(3379), - [anon_sym_var] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_else] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_switch] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_await] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_debugger] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_throw] = ACTIONS(3379), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_case] = ACTIONS(3379), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LTtemplate_GT] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_class] = ACTIONS(3379), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_using] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_void] = ACTIONS(3379), - [anon_sym_delete] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3379), - [anon_sym_DASH_DASH] = ACTIONS(3379), + [sym_identifier] = ACTIONS(3423), + [anon_sym_export] = ACTIONS(3423), + [anon_sym_default] = ACTIONS(3423), + [anon_sym_type] = ACTIONS(3423), + [anon_sym_namespace] = ACTIONS(3423), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_RBRACE] = ACTIONS(3423), + [anon_sym_typeof] = ACTIONS(3423), + [anon_sym_import] = ACTIONS(3423), + [anon_sym_with] = ACTIONS(3423), + [anon_sym_var] = ACTIONS(3423), + [anon_sym_let] = ACTIONS(3423), + [anon_sym_const] = ACTIONS(3423), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_else] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3423), + [anon_sym_switch] = ACTIONS(3423), + [anon_sym_for] = ACTIONS(3423), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_await] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3423), + [anon_sym_do] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3423), + [anon_sym_break] = ACTIONS(3423), + [anon_sym_continue] = ACTIONS(3423), + [anon_sym_debugger] = ACTIONS(3423), + [anon_sym_return] = ACTIONS(3423), + [anon_sym_throw] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_case] = ACTIONS(3423), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_LTtemplate_GT] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [anon_sym_SQUOTE] = ACTIONS(3423), + [anon_sym_class] = ACTIONS(3423), + [anon_sym_async] = ACTIONS(3423), + [anon_sym_function] = ACTIONS(3423), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_using] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [anon_sym_SLASH] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(3423), + [anon_sym_void] = ACTIONS(3423), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_PLUS_PLUS] = ACTIONS(3423), + [anon_sym_DASH_DASH] = ACTIONS(3423), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3379), - [sym_number] = ACTIONS(3379), - [sym_private_property_identifier] = ACTIONS(3379), - [sym_this] = ACTIONS(3379), - [sym_super] = ACTIONS(3379), - [sym_true] = ACTIONS(3379), - [sym_false] = ACTIONS(3379), - [sym_null] = ACTIONS(3379), - [sym_undefined] = ACTIONS(3379), - [anon_sym_AT] = ACTIONS(3379), - [anon_sym_static] = ACTIONS(3379), - [anon_sym_readonly] = ACTIONS(3379), - [anon_sym_get] = ACTIONS(3379), - [anon_sym_set] = ACTIONS(3379), - [anon_sym_declare] = ACTIONS(3379), - [anon_sym_public] = ACTIONS(3379), - [anon_sym_private] = ACTIONS(3379), - [anon_sym_protected] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3379), - [anon_sym_module] = ACTIONS(3379), - [anon_sym_any] = ACTIONS(3379), - [anon_sym_number] = ACTIONS(3379), - [anon_sym_boolean] = ACTIONS(3379), - [anon_sym_string] = ACTIONS(3379), - [anon_sym_symbol] = ACTIONS(3379), - [anon_sym_object] = ACTIONS(3379), - [anon_sym_abstract] = ACTIONS(3379), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), + [anon_sym_BQUOTE] = ACTIONS(3423), + [sym_number] = ACTIONS(3423), + [sym_private_property_identifier] = ACTIONS(3423), + [sym_this] = ACTIONS(3423), + [sym_super] = ACTIONS(3423), + [sym_true] = ACTIONS(3423), + [sym_false] = ACTIONS(3423), + [sym_null] = ACTIONS(3423), + [sym_undefined] = ACTIONS(3423), + [anon_sym_AT] = ACTIONS(3423), + [anon_sym_static] = ACTIONS(3423), + [anon_sym_readonly] = ACTIONS(3423), + [anon_sym_get] = ACTIONS(3423), + [anon_sym_set] = ACTIONS(3423), + [anon_sym_declare] = ACTIONS(3423), + [anon_sym_public] = ACTIONS(3423), + [anon_sym_private] = ACTIONS(3423), + [anon_sym_protected] = ACTIONS(3423), + [anon_sym_override] = ACTIONS(3423), + [anon_sym_module] = ACTIONS(3423), + [anon_sym_any] = ACTIONS(3423), + [anon_sym_number] = ACTIONS(3423), + [anon_sym_boolean] = ACTIONS(3423), + [anon_sym_string] = ACTIONS(3423), + [anon_sym_symbol] = ACTIONS(3423), + [anon_sym_object] = ACTIONS(3423), + [anon_sym_abstract] = ACTIONS(3423), + [anon_sym_interface] = ACTIONS(3423), + [anon_sym_enum] = ACTIONS(3423), [sym_html_comment] = ACTIONS(5), }, [1190] = { [sym_comment] = STATE(1190), - [sym_identifier] = ACTIONS(3381), - [anon_sym_export] = ACTIONS(3381), - [anon_sym_default] = ACTIONS(3381), - [anon_sym_type] = ACTIONS(3381), - [anon_sym_namespace] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_typeof] = ACTIONS(3381), - [anon_sym_import] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3381), - [anon_sym_var] = ACTIONS(3381), - [anon_sym_let] = ACTIONS(3381), - [anon_sym_const] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3381), - [anon_sym_else] = ACTIONS(3381), - [anon_sym_if] = ACTIONS(3381), - [anon_sym_switch] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_await] = ACTIONS(3381), - [anon_sym_while] = ACTIONS(3381), - [anon_sym_do] = ACTIONS(3381), - [anon_sym_try] = ACTIONS(3381), - [anon_sym_break] = ACTIONS(3381), - [anon_sym_continue] = ACTIONS(3381), - [anon_sym_debugger] = ACTIONS(3381), - [anon_sym_return] = ACTIONS(3381), - [anon_sym_throw] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_case] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LTtemplate_GT] = ACTIONS(3381), - [anon_sym_DQUOTE] = ACTIONS(3381), - [anon_sym_SQUOTE] = ACTIONS(3381), - [anon_sym_class] = ACTIONS(3381), - [anon_sym_async] = ACTIONS(3381), - [anon_sym_function] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3381), - [anon_sym_using] = ACTIONS(3381), - [anon_sym_PLUS] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_SLASH] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_void] = ACTIONS(3381), - [anon_sym_delete] = ACTIONS(3381), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3381), - [sym_number] = ACTIONS(3381), - [sym_private_property_identifier] = ACTIONS(3381), - [sym_this] = ACTIONS(3381), - [sym_super] = ACTIONS(3381), - [sym_true] = ACTIONS(3381), - [sym_false] = ACTIONS(3381), - [sym_null] = ACTIONS(3381), - [sym_undefined] = ACTIONS(3381), - [anon_sym_AT] = ACTIONS(3381), - [anon_sym_static] = ACTIONS(3381), - [anon_sym_readonly] = ACTIONS(3381), - [anon_sym_get] = ACTIONS(3381), - [anon_sym_set] = ACTIONS(3381), - [anon_sym_declare] = ACTIONS(3381), - [anon_sym_public] = ACTIONS(3381), - [anon_sym_private] = ACTIONS(3381), - [anon_sym_protected] = ACTIONS(3381), - [anon_sym_override] = ACTIONS(3381), - [anon_sym_module] = ACTIONS(3381), - [anon_sym_any] = ACTIONS(3381), - [anon_sym_number] = ACTIONS(3381), - [anon_sym_boolean] = ACTIONS(3381), - [anon_sym_string] = ACTIONS(3381), - [anon_sym_symbol] = ACTIONS(3381), - [anon_sym_object] = ACTIONS(3381), - [anon_sym_abstract] = ACTIONS(3381), - [anon_sym_interface] = ACTIONS(3381), - [anon_sym_enum] = ACTIONS(3381), + [sym_identifier] = ACTIONS(3425), + [anon_sym_export] = ACTIONS(3425), + [anon_sym_default] = ACTIONS(3425), + [anon_sym_type] = ACTIONS(3425), + [anon_sym_namespace] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3425), + [anon_sym_RBRACE] = ACTIONS(3425), + [anon_sym_typeof] = ACTIONS(3425), + [anon_sym_import] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3425), + [anon_sym_var] = ACTIONS(3425), + [anon_sym_let] = ACTIONS(3425), + [anon_sym_const] = ACTIONS(3425), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_else] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_switch] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3425), + [anon_sym_await] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_try] = ACTIONS(3425), + [anon_sym_break] = ACTIONS(3425), + [anon_sym_continue] = ACTIONS(3425), + [anon_sym_debugger] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_throw] = ACTIONS(3425), + [anon_sym_SEMI] = ACTIONS(3425), + [anon_sym_case] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3425), + [anon_sym_LBRACK] = ACTIONS(3425), + [anon_sym_LTtemplate_GT] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(3425), + [anon_sym_SQUOTE] = ACTIONS(3425), + [anon_sym_class] = ACTIONS(3425), + [anon_sym_async] = ACTIONS(3425), + [anon_sym_function] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3425), + [anon_sym_using] = ACTIONS(3425), + [anon_sym_PLUS] = ACTIONS(3425), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_SLASH] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(3425), + [anon_sym_void] = ACTIONS(3425), + [anon_sym_delete] = ACTIONS(3425), + [anon_sym_PLUS_PLUS] = ACTIONS(3425), + [anon_sym_DASH_DASH] = ACTIONS(3425), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3425), + [sym_number] = ACTIONS(3425), + [sym_private_property_identifier] = ACTIONS(3425), + [sym_this] = ACTIONS(3425), + [sym_super] = ACTIONS(3425), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [sym_null] = ACTIONS(3425), + [sym_undefined] = ACTIONS(3425), + [anon_sym_AT] = ACTIONS(3425), + [anon_sym_static] = ACTIONS(3425), + [anon_sym_readonly] = ACTIONS(3425), + [anon_sym_get] = ACTIONS(3425), + [anon_sym_set] = ACTIONS(3425), + [anon_sym_declare] = ACTIONS(3425), + [anon_sym_public] = ACTIONS(3425), + [anon_sym_private] = ACTIONS(3425), + [anon_sym_protected] = ACTIONS(3425), + [anon_sym_override] = ACTIONS(3425), + [anon_sym_module] = ACTIONS(3425), + [anon_sym_any] = ACTIONS(3425), + [anon_sym_number] = ACTIONS(3425), + [anon_sym_boolean] = ACTIONS(3425), + [anon_sym_string] = ACTIONS(3425), + [anon_sym_symbol] = ACTIONS(3425), + [anon_sym_object] = ACTIONS(3425), + [anon_sym_abstract] = ACTIONS(3425), + [anon_sym_interface] = ACTIONS(3425), + [anon_sym_enum] = ACTIONS(3425), [sym_html_comment] = ACTIONS(5), }, [1191] = { [sym_comment] = STATE(1191), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(3383), - [sym_html_comment] = ACTIONS(5), - }, - [1192] = { - [sym_comment] = STATE(1192), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(3385), - [sym_html_comment] = ACTIONS(5), - }, - [1193] = { - [sym_comment] = STATE(1193), - [sym_identifier] = ACTIONS(3387), - [anon_sym_export] = ACTIONS(3387), - [anon_sym_default] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_namespace] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_typeof] = ACTIONS(3387), - [anon_sym_import] = ACTIONS(3387), - [anon_sym_with] = ACTIONS(3387), - [anon_sym_var] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_else] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_switch] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_await] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_debugger] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_throw] = ACTIONS(3387), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym_case] = ACTIONS(3387), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LTtemplate_GT] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_class] = ACTIONS(3387), - [anon_sym_async] = ACTIONS(3387), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_using] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_void] = ACTIONS(3387), - [anon_sym_delete] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_DASH_DASH] = ACTIONS(3387), + [sym_identifier] = ACTIONS(3427), + [anon_sym_export] = ACTIONS(3427), + [anon_sym_default] = ACTIONS(3427), + [anon_sym_type] = ACTIONS(3427), + [anon_sym_namespace] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3427), + [anon_sym_RBRACE] = ACTIONS(3427), + [anon_sym_typeof] = ACTIONS(3427), + [anon_sym_import] = ACTIONS(3427), + [anon_sym_with] = ACTIONS(3427), + [anon_sym_var] = ACTIONS(3427), + [anon_sym_let] = ACTIONS(3427), + [anon_sym_const] = ACTIONS(3427), + [anon_sym_BANG] = ACTIONS(3427), + [anon_sym_else] = ACTIONS(3427), + [anon_sym_if] = ACTIONS(3427), + [anon_sym_switch] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3427), + [anon_sym_LPAREN] = ACTIONS(3427), + [anon_sym_await] = ACTIONS(3427), + [anon_sym_while] = ACTIONS(3427), + [anon_sym_do] = ACTIONS(3427), + [anon_sym_try] = ACTIONS(3427), + [anon_sym_break] = ACTIONS(3427), + [anon_sym_continue] = ACTIONS(3427), + [anon_sym_debugger] = ACTIONS(3427), + [anon_sym_return] = ACTIONS(3427), + [anon_sym_throw] = ACTIONS(3427), + [anon_sym_SEMI] = ACTIONS(3427), + [anon_sym_case] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3427), + [anon_sym_LTtemplate_GT] = ACTIONS(3427), + [anon_sym_DQUOTE] = ACTIONS(3427), + [anon_sym_SQUOTE] = ACTIONS(3427), + [anon_sym_class] = ACTIONS(3427), + [anon_sym_async] = ACTIONS(3427), + [anon_sym_function] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3427), + [anon_sym_using] = ACTIONS(3427), + [anon_sym_PLUS] = ACTIONS(3427), + [anon_sym_DASH] = ACTIONS(3427), + [anon_sym_SLASH] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_TILDE] = ACTIONS(3427), + [anon_sym_void] = ACTIONS(3427), + [anon_sym_delete] = ACTIONS(3427), + [anon_sym_PLUS_PLUS] = ACTIONS(3427), + [anon_sym_DASH_DASH] = ACTIONS(3427), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3387), - [sym_number] = ACTIONS(3387), - [sym_private_property_identifier] = ACTIONS(3387), - [sym_this] = ACTIONS(3387), - [sym_super] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_null] = ACTIONS(3387), - [sym_undefined] = ACTIONS(3387), - [anon_sym_AT] = ACTIONS(3387), - [anon_sym_static] = ACTIONS(3387), - [anon_sym_readonly] = ACTIONS(3387), - [anon_sym_get] = ACTIONS(3387), - [anon_sym_set] = ACTIONS(3387), - [anon_sym_declare] = ACTIONS(3387), - [anon_sym_public] = ACTIONS(3387), - [anon_sym_private] = ACTIONS(3387), - [anon_sym_protected] = ACTIONS(3387), - [anon_sym_override] = ACTIONS(3387), - [anon_sym_module] = ACTIONS(3387), - [anon_sym_any] = ACTIONS(3387), - [anon_sym_number] = ACTIONS(3387), - [anon_sym_boolean] = ACTIONS(3387), - [anon_sym_string] = ACTIONS(3387), - [anon_sym_symbol] = ACTIONS(3387), - [anon_sym_object] = ACTIONS(3387), - [anon_sym_abstract] = ACTIONS(3387), - [anon_sym_interface] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(3387), + [anon_sym_BQUOTE] = ACTIONS(3427), + [sym_number] = ACTIONS(3427), + [sym_private_property_identifier] = ACTIONS(3427), + [sym_this] = ACTIONS(3427), + [sym_super] = ACTIONS(3427), + [sym_true] = ACTIONS(3427), + [sym_false] = ACTIONS(3427), + [sym_null] = ACTIONS(3427), + [sym_undefined] = ACTIONS(3427), + [anon_sym_AT] = ACTIONS(3427), + [anon_sym_static] = ACTIONS(3427), + [anon_sym_readonly] = ACTIONS(3427), + [anon_sym_get] = ACTIONS(3427), + [anon_sym_set] = ACTIONS(3427), + [anon_sym_declare] = ACTIONS(3427), + [anon_sym_public] = ACTIONS(3427), + [anon_sym_private] = ACTIONS(3427), + [anon_sym_protected] = ACTIONS(3427), + [anon_sym_override] = ACTIONS(3427), + [anon_sym_module] = ACTIONS(3427), + [anon_sym_any] = ACTIONS(3427), + [anon_sym_number] = ACTIONS(3427), + [anon_sym_boolean] = ACTIONS(3427), + [anon_sym_string] = ACTIONS(3427), + [anon_sym_symbol] = ACTIONS(3427), + [anon_sym_object] = ACTIONS(3427), + [anon_sym_abstract] = ACTIONS(3427), + [anon_sym_interface] = ACTIONS(3427), + [anon_sym_enum] = ACTIONS(3427), + [sym_html_comment] = ACTIONS(5), + }, + [1192] = { + [sym_comment] = STATE(1192), + [sym_identifier] = ACTIONS(3429), + [anon_sym_export] = ACTIONS(3429), + [anon_sym_default] = ACTIONS(3429), + [anon_sym_type] = ACTIONS(3429), + [anon_sym_namespace] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_typeof] = ACTIONS(3429), + [anon_sym_import] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_const] = ACTIONS(3429), + [anon_sym_BANG] = ACTIONS(3429), + [anon_sym_else] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_await] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_break] = ACTIONS(3429), + [anon_sym_continue] = ACTIONS(3429), + [anon_sym_debugger] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_throw] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_case] = ACTIONS(3429), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LTtemplate_GT] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_SQUOTE] = ACTIONS(3429), + [anon_sym_class] = ACTIONS(3429), + [anon_sym_async] = ACTIONS(3429), + [anon_sym_function] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_using] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_void] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3429), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3429), + [sym_number] = ACTIONS(3429), + [sym_private_property_identifier] = ACTIONS(3429), + [sym_this] = ACTIONS(3429), + [sym_super] = ACTIONS(3429), + [sym_true] = ACTIONS(3429), + [sym_false] = ACTIONS(3429), + [sym_null] = ACTIONS(3429), + [sym_undefined] = ACTIONS(3429), + [anon_sym_AT] = ACTIONS(3429), + [anon_sym_static] = ACTIONS(3429), + [anon_sym_readonly] = ACTIONS(3429), + [anon_sym_get] = ACTIONS(3429), + [anon_sym_set] = ACTIONS(3429), + [anon_sym_declare] = ACTIONS(3429), + [anon_sym_public] = ACTIONS(3429), + [anon_sym_private] = ACTIONS(3429), + [anon_sym_protected] = ACTIONS(3429), + [anon_sym_override] = ACTIONS(3429), + [anon_sym_module] = ACTIONS(3429), + [anon_sym_any] = ACTIONS(3429), + [anon_sym_number] = ACTIONS(3429), + [anon_sym_boolean] = ACTIONS(3429), + [anon_sym_string] = ACTIONS(3429), + [anon_sym_symbol] = ACTIONS(3429), + [anon_sym_object] = ACTIONS(3429), + [anon_sym_abstract] = ACTIONS(3429), + [anon_sym_interface] = ACTIONS(3429), + [anon_sym_enum] = ACTIONS(3429), + [sym_html_comment] = ACTIONS(5), + }, + [1193] = { + [sym_comment] = STATE(1193), + [ts_builtin_sym_end] = ACTIONS(3215), + [sym_identifier] = ACTIONS(3213), + [anon_sym_export] = ACTIONS(3213), + [anon_sym_type] = ACTIONS(3213), + [anon_sym_namespace] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_RBRACE] = ACTIONS(3213), + [anon_sym_typeof] = ACTIONS(3213), + [anon_sym_import] = ACTIONS(3213), + [anon_sym_with] = ACTIONS(3213), + [anon_sym_var] = ACTIONS(3213), + [anon_sym_let] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_else] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym_await] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_debugger] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_throw] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3213), + [anon_sym_yield] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_LTtemplate_GT] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(3213), + [anon_sym_SQUOTE] = ACTIONS(3213), + [anon_sym_class] = ACTIONS(3213), + [anon_sym_async] = ACTIONS(3213), + [anon_sym_function] = ACTIONS(3213), + [anon_sym_new] = ACTIONS(3213), + [anon_sym_using] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_SLASH] = ACTIONS(3213), + [anon_sym_LT] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_void] = ACTIONS(3213), + [anon_sym_delete] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3213), + [sym_number] = ACTIONS(3213), + [sym_private_property_identifier] = ACTIONS(3213), + [sym_this] = ACTIONS(3213), + [sym_super] = ACTIONS(3213), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_null] = ACTIONS(3213), + [sym_undefined] = ACTIONS(3213), + [anon_sym_AT] = ACTIONS(3213), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_readonly] = ACTIONS(3213), + [anon_sym_get] = ACTIONS(3213), + [anon_sym_set] = ACTIONS(3213), + [anon_sym_declare] = ACTIONS(3213), + [anon_sym_public] = ACTIONS(3213), + [anon_sym_private] = ACTIONS(3213), + [anon_sym_protected] = ACTIONS(3213), + [anon_sym_override] = ACTIONS(3213), + [anon_sym_module] = ACTIONS(3213), + [anon_sym_any] = ACTIONS(3213), + [anon_sym_number] = ACTIONS(3213), + [anon_sym_boolean] = ACTIONS(3213), + [anon_sym_string] = ACTIONS(3213), + [anon_sym_symbol] = ACTIONS(3213), + [anon_sym_object] = ACTIONS(3213), + [anon_sym_abstract] = ACTIONS(3213), + [anon_sym_interface] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [sym__automatic_semicolon] = ACTIONS(3215), [sym_html_comment] = ACTIONS(5), }, [1194] = { [sym_comment] = STATE(1194), - [ts_builtin_sym_end] = ACTIONS(2276), - [sym_identifier] = ACTIONS(2274), - [anon_sym_export] = ACTIONS(2274), - [anon_sym_type] = ACTIONS(2274), - [anon_sym_namespace] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_typeof] = ACTIONS(2274), - [anon_sym_import] = ACTIONS(2274), - [anon_sym_with] = ACTIONS(2274), - [anon_sym_var] = ACTIONS(2274), - [anon_sym_let] = ACTIONS(2274), - [anon_sym_const] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2274), - [anon_sym_else] = ACTIONS(2274), - [anon_sym_if] = ACTIONS(2274), - [anon_sym_switch] = ACTIONS(2274), - [anon_sym_for] = ACTIONS(2274), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_await] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2274), - [anon_sym_do] = ACTIONS(2274), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_break] = ACTIONS(2274), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_debugger] = ACTIONS(2274), - [anon_sym_return] = ACTIONS(2274), - [anon_sym_throw] = ACTIONS(2274), - [anon_sym_SEMI] = ACTIONS(2274), - [anon_sym_yield] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_LTtemplate_GT] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [anon_sym_SQUOTE] = ACTIONS(2274), - [anon_sym_class] = ACTIONS(2274), - [anon_sym_async] = ACTIONS(2274), - [anon_sym_function] = ACTIONS(2274), - [anon_sym_new] = ACTIONS(2274), - [anon_sym_using] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_SLASH] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_TILDE] = ACTIONS(2274), - [anon_sym_void] = ACTIONS(2274), - [anon_sym_delete] = ACTIONS(2274), - [anon_sym_PLUS_PLUS] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2274), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2274), - [sym_number] = ACTIONS(2274), - [sym_private_property_identifier] = ACTIONS(2274), - [sym_this] = ACTIONS(2274), - [sym_super] = ACTIONS(2274), - [sym_true] = ACTIONS(2274), - [sym_false] = ACTIONS(2274), - [sym_null] = ACTIONS(2274), - [sym_undefined] = ACTIONS(2274), - [anon_sym_AT] = ACTIONS(2274), - [anon_sym_static] = ACTIONS(2274), - [anon_sym_readonly] = ACTIONS(2274), - [anon_sym_get] = ACTIONS(2274), - [anon_sym_set] = ACTIONS(2274), - [anon_sym_declare] = ACTIONS(2274), - [anon_sym_public] = ACTIONS(2274), - [anon_sym_private] = ACTIONS(2274), - [anon_sym_protected] = ACTIONS(2274), - [anon_sym_override] = ACTIONS(2274), - [anon_sym_module] = ACTIONS(2274), - [anon_sym_any] = ACTIONS(2274), - [anon_sym_number] = ACTIONS(2274), - [anon_sym_boolean] = ACTIONS(2274), - [anon_sym_string] = ACTIONS(2274), - [anon_sym_symbol] = ACTIONS(2274), - [anon_sym_object] = ACTIONS(2274), - [anon_sym_abstract] = ACTIONS(2274), - [anon_sym_interface] = ACTIONS(2274), - [anon_sym_enum] = ACTIONS(2274), + [sym_identifier] = ACTIONS(3431), + [anon_sym_export] = ACTIONS(3431), + [anon_sym_default] = ACTIONS(3431), + [anon_sym_type] = ACTIONS(3431), + [anon_sym_namespace] = ACTIONS(3431), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_RBRACE] = ACTIONS(3431), + [anon_sym_typeof] = ACTIONS(3431), + [anon_sym_import] = ACTIONS(3431), + [anon_sym_with] = ACTIONS(3431), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_let] = ACTIONS(3431), + [anon_sym_const] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_else] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3431), + [anon_sym_await] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(3431), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_break] = ACTIONS(3431), + [anon_sym_continue] = ACTIONS(3431), + [anon_sym_debugger] = ACTIONS(3431), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_throw] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_case] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3431), + [anon_sym_LTtemplate_GT] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3431), + [anon_sym_class] = ACTIONS(3431), + [anon_sym_async] = ACTIONS(3431), + [anon_sym_function] = ACTIONS(3431), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_using] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3431), + [anon_sym_void] = ACTIONS(3431), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3431), + [anon_sym_DASH_DASH] = ACTIONS(3431), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3431), + [sym_number] = ACTIONS(3431), + [sym_private_property_identifier] = ACTIONS(3431), + [sym_this] = ACTIONS(3431), + [sym_super] = ACTIONS(3431), + [sym_true] = ACTIONS(3431), + [sym_false] = ACTIONS(3431), + [sym_null] = ACTIONS(3431), + [sym_undefined] = ACTIONS(3431), + [anon_sym_AT] = ACTIONS(3431), + [anon_sym_static] = ACTIONS(3431), + [anon_sym_readonly] = ACTIONS(3431), + [anon_sym_get] = ACTIONS(3431), + [anon_sym_set] = ACTIONS(3431), + [anon_sym_declare] = ACTIONS(3431), + [anon_sym_public] = ACTIONS(3431), + [anon_sym_private] = ACTIONS(3431), + [anon_sym_protected] = ACTIONS(3431), + [anon_sym_override] = ACTIONS(3431), + [anon_sym_module] = ACTIONS(3431), + [anon_sym_any] = ACTIONS(3431), + [anon_sym_number] = ACTIONS(3431), + [anon_sym_boolean] = ACTIONS(3431), + [anon_sym_string] = ACTIONS(3431), + [anon_sym_symbol] = ACTIONS(3431), + [anon_sym_object] = ACTIONS(3431), + [anon_sym_abstract] = ACTIONS(3431), + [anon_sym_interface] = ACTIONS(3431), + [anon_sym_enum] = ACTIONS(3431), [sym_html_comment] = ACTIONS(5), }, [1195] = { [sym_comment] = STATE(1195), - [ts_builtin_sym_end] = ACTIONS(2206), - [sym_identifier] = ACTIONS(2204), - [anon_sym_export] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_namespace] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_typeof] = ACTIONS(2204), - [anon_sym_import] = ACTIONS(2204), - [anon_sym_with] = ACTIONS(2204), - [anon_sym_var] = ACTIONS(2204), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_else] = ACTIONS(2204), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_switch] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_await] = ACTIONS(2204), - [anon_sym_while] = ACTIONS(2204), - [anon_sym_do] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_debugger] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_throw] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_yield] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_LTtemplate_GT] = ACTIONS(2204), - [anon_sym_DOT] = ACTIONS(2204), - [anon_sym_DQUOTE] = ACTIONS(2204), - [anon_sym_SQUOTE] = ACTIONS(2204), - [anon_sym_class] = ACTIONS(2204), - [anon_sym_async] = ACTIONS(2204), - [anon_sym_function] = ACTIONS(2204), - [anon_sym_new] = ACTIONS(2204), - [anon_sym_using] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_void] = ACTIONS(2204), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2204), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_else] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_case] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2204), - [sym_number] = ACTIONS(2204), - [sym_private_property_identifier] = ACTIONS(2204), - [sym_this] = ACTIONS(2204), - [sym_super] = ACTIONS(2204), - [sym_true] = ACTIONS(2204), - [sym_false] = ACTIONS(2204), - [sym_null] = ACTIONS(2204), - [sym_undefined] = ACTIONS(2204), - [anon_sym_AT] = ACTIONS(2204), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_readonly] = ACTIONS(2204), - [anon_sym_get] = ACTIONS(2204), - [anon_sym_set] = ACTIONS(2204), - [anon_sym_declare] = ACTIONS(2204), - [anon_sym_public] = ACTIONS(2204), - [anon_sym_private] = ACTIONS(2204), - [anon_sym_protected] = ACTIONS(2204), - [anon_sym_override] = ACTIONS(2204), - [anon_sym_module] = ACTIONS(2204), - [anon_sym_any] = ACTIONS(2204), - [anon_sym_number] = ACTIONS(2204), - [anon_sym_boolean] = ACTIONS(2204), - [anon_sym_string] = ACTIONS(2204), - [anon_sym_symbol] = ACTIONS(2204), - [anon_sym_object] = ACTIONS(2204), - [anon_sym_abstract] = ACTIONS(2204), - [anon_sym_interface] = ACTIONS(2204), - [anon_sym_enum] = ACTIONS(2204), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, [1196] = { - [sym_statement_block] = STATE(1727), [sym_comment] = STATE(1196), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(3391), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), + [sym_identifier] = ACTIONS(3433), + [anon_sym_export] = ACTIONS(3433), + [anon_sym_default] = ACTIONS(3433), + [anon_sym_type] = ACTIONS(3433), + [anon_sym_namespace] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(3433), + [anon_sym_RBRACE] = ACTIONS(3433), + [anon_sym_typeof] = ACTIONS(3433), + [anon_sym_import] = ACTIONS(3433), + [anon_sym_with] = ACTIONS(3433), + [anon_sym_var] = ACTIONS(3433), + [anon_sym_let] = ACTIONS(3433), + [anon_sym_const] = ACTIONS(3433), + [anon_sym_BANG] = ACTIONS(3433), + [anon_sym_else] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(3433), + [anon_sym_switch] = ACTIONS(3433), + [anon_sym_for] = ACTIONS(3433), + [anon_sym_LPAREN] = ACTIONS(3433), + [anon_sym_await] = ACTIONS(3433), + [anon_sym_while] = ACTIONS(3433), + [anon_sym_do] = ACTIONS(3433), + [anon_sym_try] = ACTIONS(3433), + [anon_sym_break] = ACTIONS(3433), + [anon_sym_continue] = ACTIONS(3433), + [anon_sym_debugger] = ACTIONS(3433), + [anon_sym_return] = ACTIONS(3433), + [anon_sym_throw] = ACTIONS(3433), + [anon_sym_SEMI] = ACTIONS(3433), + [anon_sym_case] = ACTIONS(3433), + [anon_sym_yield] = ACTIONS(3433), + [anon_sym_LBRACK] = ACTIONS(3433), + [anon_sym_LTtemplate_GT] = ACTIONS(3433), + [anon_sym_DQUOTE] = ACTIONS(3433), + [anon_sym_SQUOTE] = ACTIONS(3433), + [anon_sym_class] = ACTIONS(3433), + [anon_sym_async] = ACTIONS(3433), + [anon_sym_function] = ACTIONS(3433), + [anon_sym_new] = ACTIONS(3433), + [anon_sym_using] = ACTIONS(3433), + [anon_sym_PLUS] = ACTIONS(3433), + [anon_sym_DASH] = ACTIONS(3433), + [anon_sym_SLASH] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(3433), + [anon_sym_TILDE] = ACTIONS(3433), + [anon_sym_void] = ACTIONS(3433), + [anon_sym_delete] = ACTIONS(3433), + [anon_sym_PLUS_PLUS] = ACTIONS(3433), + [anon_sym_DASH_DASH] = ACTIONS(3433), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3433), + [sym_number] = ACTIONS(3433), + [sym_private_property_identifier] = ACTIONS(3433), + [sym_this] = ACTIONS(3433), + [sym_super] = ACTIONS(3433), + [sym_true] = ACTIONS(3433), + [sym_false] = ACTIONS(3433), + [sym_null] = ACTIONS(3433), + [sym_undefined] = ACTIONS(3433), + [anon_sym_AT] = ACTIONS(3433), + [anon_sym_static] = ACTIONS(3433), + [anon_sym_readonly] = ACTIONS(3433), + [anon_sym_get] = ACTIONS(3433), + [anon_sym_set] = ACTIONS(3433), + [anon_sym_declare] = ACTIONS(3433), + [anon_sym_public] = ACTIONS(3433), + [anon_sym_private] = ACTIONS(3433), + [anon_sym_protected] = ACTIONS(3433), + [anon_sym_override] = ACTIONS(3433), + [anon_sym_module] = ACTIONS(3433), + [anon_sym_any] = ACTIONS(3433), + [anon_sym_number] = ACTIONS(3433), + [anon_sym_boolean] = ACTIONS(3433), + [anon_sym_string] = ACTIONS(3433), + [anon_sym_symbol] = ACTIONS(3433), + [anon_sym_object] = ACTIONS(3433), + [anon_sym_abstract] = ACTIONS(3433), + [anon_sym_interface] = ACTIONS(3433), + [anon_sym_enum] = ACTIONS(3433), [sym_html_comment] = ACTIONS(5), }, [1197] = { - [sym_statement_block] = STATE(1727), [sym_comment] = STATE(1197), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DOT] = ACTIONS(3393), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), + [sym_identifier] = ACTIONS(2182), + [anon_sym_export] = ACTIONS(2182), + [anon_sym_default] = ACTIONS(2182), + [anon_sym_type] = ACTIONS(2182), + [anon_sym_namespace] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(2182), + [anon_sym_typeof] = ACTIONS(2182), + [anon_sym_import] = ACTIONS(2182), + [anon_sym_with] = ACTIONS(2182), + [anon_sym_var] = ACTIONS(2182), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_BANG] = ACTIONS(2182), + [anon_sym_else] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_switch] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_LPAREN] = ACTIONS(2182), + [anon_sym_await] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_do] = ACTIONS(2182), + [anon_sym_try] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_debugger] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_throw] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2182), + [anon_sym_case] = ACTIONS(2182), + [anon_sym_yield] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LTtemplate_GT] = ACTIONS(2182), + [anon_sym_DQUOTE] = ACTIONS(2182), + [anon_sym_SQUOTE] = ACTIONS(2182), + [anon_sym_class] = ACTIONS(2182), + [anon_sym_async] = ACTIONS(2182), + [anon_sym_function] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2182), + [anon_sym_using] = ACTIONS(2182), + [anon_sym_PLUS] = ACTIONS(2182), + [anon_sym_DASH] = ACTIONS(2182), + [anon_sym_SLASH] = ACTIONS(2182), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_TILDE] = ACTIONS(2182), + [anon_sym_void] = ACTIONS(2182), + [anon_sym_delete] = ACTIONS(2182), + [anon_sym_PLUS_PLUS] = ACTIONS(2182), + [anon_sym_DASH_DASH] = ACTIONS(2182), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2182), + [sym_number] = ACTIONS(2182), + [sym_private_property_identifier] = ACTIONS(2182), + [sym_this] = ACTIONS(2182), + [sym_super] = ACTIONS(2182), + [sym_true] = ACTIONS(2182), + [sym_false] = ACTIONS(2182), + [sym_null] = ACTIONS(2182), + [sym_undefined] = ACTIONS(2182), + [anon_sym_AT] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_readonly] = ACTIONS(2182), + [anon_sym_get] = ACTIONS(2182), + [anon_sym_set] = ACTIONS(2182), + [anon_sym_declare] = ACTIONS(2182), + [anon_sym_public] = ACTIONS(2182), + [anon_sym_private] = ACTIONS(2182), + [anon_sym_protected] = ACTIONS(2182), + [anon_sym_override] = ACTIONS(2182), + [anon_sym_module] = ACTIONS(2182), + [anon_sym_any] = ACTIONS(2182), + [anon_sym_number] = ACTIONS(2182), + [anon_sym_boolean] = ACTIONS(2182), + [anon_sym_string] = ACTIONS(2182), + [anon_sym_symbol] = ACTIONS(2182), + [anon_sym_object] = ACTIONS(2182), + [anon_sym_abstract] = ACTIONS(2182), + [anon_sym_interface] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), [sym_html_comment] = ACTIONS(5), }, [1198] = { [sym_comment] = STATE(1198), - [sym_identifier] = ACTIONS(3163), - [anon_sym_export] = ACTIONS(3163), - [anon_sym_default] = ACTIONS(3163), - [anon_sym_type] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3163), - [anon_sym_typeof] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_with] = ACTIONS(3163), - [anon_sym_var] = ACTIONS(3163), - [anon_sym_let] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_await] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_debugger] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3163), - [anon_sym_case] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_LTtemplate_GT] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_async] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_SLASH] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_void] = ACTIONS(3163), - [anon_sym_delete] = ACTIONS(3163), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3163), - [sym_number] = ACTIONS(3163), - [sym_private_property_identifier] = ACTIONS(3163), - [sym_this] = ACTIONS(3163), - [sym_super] = ACTIONS(3163), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [sym_null] = ACTIONS(3163), - [sym_undefined] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_readonly] = ACTIONS(3163), - [anon_sym_get] = ACTIONS(3163), - [anon_sym_set] = ACTIONS(3163), - [anon_sym_declare] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_override] = ACTIONS(3163), - [anon_sym_module] = ACTIONS(3163), - [anon_sym_any] = ACTIONS(3163), - [anon_sym_number] = ACTIONS(3163), - [anon_sym_boolean] = ACTIONS(3163), - [anon_sym_string] = ACTIONS(3163), - [anon_sym_symbol] = ACTIONS(3163), - [anon_sym_object] = ACTIONS(3163), - [anon_sym_abstract] = ACTIONS(3163), - [anon_sym_interface] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [sym__automatic_semicolon] = ACTIONS(3165), + [sym_identifier] = ACTIONS(3435), + [anon_sym_export] = ACTIONS(3435), + [anon_sym_default] = ACTIONS(3435), + [anon_sym_type] = ACTIONS(3435), + [anon_sym_namespace] = ACTIONS(3435), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_RBRACE] = ACTIONS(3435), + [anon_sym_typeof] = ACTIONS(3435), + [anon_sym_import] = ACTIONS(3435), + [anon_sym_with] = ACTIONS(3435), + [anon_sym_var] = ACTIONS(3435), + [anon_sym_let] = ACTIONS(3435), + [anon_sym_const] = ACTIONS(3435), + [anon_sym_BANG] = ACTIONS(3435), + [anon_sym_else] = ACTIONS(3435), + [anon_sym_if] = ACTIONS(3435), + [anon_sym_switch] = ACTIONS(3435), + [anon_sym_for] = ACTIONS(3435), + [anon_sym_LPAREN] = ACTIONS(3435), + [anon_sym_await] = ACTIONS(3435), + [anon_sym_while] = ACTIONS(3435), + [anon_sym_do] = ACTIONS(3435), + [anon_sym_try] = ACTIONS(3435), + [anon_sym_break] = ACTIONS(3435), + [anon_sym_continue] = ACTIONS(3435), + [anon_sym_debugger] = ACTIONS(3435), + [anon_sym_return] = ACTIONS(3435), + [anon_sym_throw] = ACTIONS(3435), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_case] = ACTIONS(3435), + [anon_sym_yield] = ACTIONS(3435), + [anon_sym_LBRACK] = ACTIONS(3435), + [anon_sym_LTtemplate_GT] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(3435), + [anon_sym_SQUOTE] = ACTIONS(3435), + [anon_sym_class] = ACTIONS(3435), + [anon_sym_async] = ACTIONS(3435), + [anon_sym_function] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3435), + [anon_sym_using] = ACTIONS(3435), + [anon_sym_PLUS] = ACTIONS(3435), + [anon_sym_DASH] = ACTIONS(3435), + [anon_sym_SLASH] = ACTIONS(3435), + [anon_sym_LT] = ACTIONS(3435), + [anon_sym_TILDE] = ACTIONS(3435), + [anon_sym_void] = ACTIONS(3435), + [anon_sym_delete] = ACTIONS(3435), + [anon_sym_PLUS_PLUS] = ACTIONS(3435), + [anon_sym_DASH_DASH] = ACTIONS(3435), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3435), + [sym_number] = ACTIONS(3435), + [sym_private_property_identifier] = ACTIONS(3435), + [sym_this] = ACTIONS(3435), + [sym_super] = ACTIONS(3435), + [sym_true] = ACTIONS(3435), + [sym_false] = ACTIONS(3435), + [sym_null] = ACTIONS(3435), + [sym_undefined] = ACTIONS(3435), + [anon_sym_AT] = ACTIONS(3435), + [anon_sym_static] = ACTIONS(3435), + [anon_sym_readonly] = ACTIONS(3435), + [anon_sym_get] = ACTIONS(3435), + [anon_sym_set] = ACTIONS(3435), + [anon_sym_declare] = ACTIONS(3435), + [anon_sym_public] = ACTIONS(3435), + [anon_sym_private] = ACTIONS(3435), + [anon_sym_protected] = ACTIONS(3435), + [anon_sym_override] = ACTIONS(3435), + [anon_sym_module] = ACTIONS(3435), + [anon_sym_any] = ACTIONS(3435), + [anon_sym_number] = ACTIONS(3435), + [anon_sym_boolean] = ACTIONS(3435), + [anon_sym_string] = ACTIONS(3435), + [anon_sym_symbol] = ACTIONS(3435), + [anon_sym_object] = ACTIONS(3435), + [anon_sym_abstract] = ACTIONS(3435), + [anon_sym_interface] = ACTIONS(3435), + [anon_sym_enum] = ACTIONS(3435), [sym_html_comment] = ACTIONS(5), }, [1199] = { [sym_comment] = STATE(1199), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_else] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(2278), - [sym_html_comment] = ACTIONS(5), - }, - [1200] = { - [sym_comment] = STATE(1200), - [sym_identifier] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_default] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_else] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_debugger] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_case] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_LTtemplate_GT] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3395), - [sym_number] = ACTIONS(3395), - [sym_private_property_identifier] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - [sym_super] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_get] = ACTIONS(3395), - [anon_sym_set] = ACTIONS(3395), - [anon_sym_declare] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_any] = ACTIONS(3395), - [anon_sym_number] = ACTIONS(3395), - [anon_sym_boolean] = ACTIONS(3395), - [anon_sym_string] = ACTIONS(3395), - [anon_sym_symbol] = ACTIONS(3395), - [anon_sym_object] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), - [sym_html_comment] = ACTIONS(5), - }, - [1201] = { - [sym_comment] = STATE(1201), - [sym_identifier] = ACTIONS(3397), - [anon_sym_export] = ACTIONS(3397), - [anon_sym_default] = ACTIONS(3397), - [anon_sym_type] = ACTIONS(3397), - [anon_sym_namespace] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_typeof] = ACTIONS(3397), - [anon_sym_import] = ACTIONS(3397), - [anon_sym_with] = ACTIONS(3397), - [anon_sym_var] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_const] = ACTIONS(3397), - [anon_sym_BANG] = ACTIONS(3397), - [anon_sym_else] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_switch] = ACTIONS(3397), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_await] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_try] = ACTIONS(3397), - [anon_sym_break] = ACTIONS(3397), - [anon_sym_continue] = ACTIONS(3397), - [anon_sym_debugger] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_throw] = ACTIONS(3397), - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym_case] = ACTIONS(3397), - [anon_sym_yield] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LTtemplate_GT] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [anon_sym_SQUOTE] = ACTIONS(3397), - [anon_sym_class] = ACTIONS(3397), - [anon_sym_async] = ACTIONS(3397), - [anon_sym_function] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_using] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_SLASH] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_void] = ACTIONS(3397), - [anon_sym_delete] = ACTIONS(3397), - [anon_sym_PLUS_PLUS] = ACTIONS(3397), - [anon_sym_DASH_DASH] = ACTIONS(3397), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3397), - [sym_number] = ACTIONS(3397), - [sym_private_property_identifier] = ACTIONS(3397), - [sym_this] = ACTIONS(3397), - [sym_super] = ACTIONS(3397), - [sym_true] = ACTIONS(3397), - [sym_false] = ACTIONS(3397), - [sym_null] = ACTIONS(3397), - [sym_undefined] = ACTIONS(3397), - [anon_sym_AT] = ACTIONS(3397), - [anon_sym_static] = ACTIONS(3397), - [anon_sym_readonly] = ACTIONS(3397), - [anon_sym_get] = ACTIONS(3397), - [anon_sym_set] = ACTIONS(3397), - [anon_sym_declare] = ACTIONS(3397), - [anon_sym_public] = ACTIONS(3397), - [anon_sym_private] = ACTIONS(3397), - [anon_sym_protected] = ACTIONS(3397), - [anon_sym_override] = ACTIONS(3397), - [anon_sym_module] = ACTIONS(3397), - [anon_sym_any] = ACTIONS(3397), - [anon_sym_number] = ACTIONS(3397), - [anon_sym_boolean] = ACTIONS(3397), - [anon_sym_string] = ACTIONS(3397), - [anon_sym_symbol] = ACTIONS(3397), - [anon_sym_object] = ACTIONS(3397), - [anon_sym_abstract] = ACTIONS(3397), - [anon_sym_interface] = ACTIONS(3397), - [anon_sym_enum] = ACTIONS(3397), - [sym_html_comment] = ACTIONS(5), - }, - [1202] = { - [sym_comment] = STATE(1202), - [ts_builtin_sym_end] = ACTIONS(2298), - [sym_identifier] = ACTIONS(2296), - [anon_sym_export] = ACTIONS(2296), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_namespace] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2296), - [anon_sym_RBRACE] = ACTIONS(2296), - [anon_sym_typeof] = ACTIONS(2296), - [anon_sym_import] = ACTIONS(2296), - [anon_sym_with] = ACTIONS(2296), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_const] = ACTIONS(2296), - [anon_sym_BANG] = ACTIONS(2296), - [anon_sym_else] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_switch] = ACTIONS(2296), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2296), - [anon_sym_await] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(2296), - [anon_sym_try] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_debugger] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_throw] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2296), - [anon_sym_yield] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2296), - [anon_sym_LTtemplate_GT] = ACTIONS(2296), - [anon_sym_DQUOTE] = ACTIONS(2296), - [anon_sym_SQUOTE] = ACTIONS(2296), - [anon_sym_class] = ACTIONS(2296), - [anon_sym_async] = ACTIONS(2296), - [anon_sym_function] = ACTIONS(2296), - [anon_sym_new] = ACTIONS(2296), - [anon_sym_using] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_TILDE] = ACTIONS(2296), - [anon_sym_void] = ACTIONS(2296), - [anon_sym_delete] = ACTIONS(2296), - [anon_sym_PLUS_PLUS] = ACTIONS(2296), - [anon_sym_DASH_DASH] = ACTIONS(2296), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2296), - [sym_number] = ACTIONS(2296), - [sym_private_property_identifier] = ACTIONS(2296), - [sym_this] = ACTIONS(2296), - [sym_super] = ACTIONS(2296), - [sym_true] = ACTIONS(2296), - [sym_false] = ACTIONS(2296), - [sym_null] = ACTIONS(2296), - [sym_undefined] = ACTIONS(2296), - [anon_sym_AT] = ACTIONS(2296), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_readonly] = ACTIONS(2296), - [anon_sym_get] = ACTIONS(2296), - [anon_sym_set] = ACTIONS(2296), - [anon_sym_declare] = ACTIONS(2296), - [anon_sym_public] = ACTIONS(2296), - [anon_sym_private] = ACTIONS(2296), - [anon_sym_protected] = ACTIONS(2296), - [anon_sym_override] = ACTIONS(2296), - [anon_sym_module] = ACTIONS(2296), - [anon_sym_any] = ACTIONS(2296), - [anon_sym_number] = ACTIONS(2296), - [anon_sym_boolean] = ACTIONS(2296), - [anon_sym_string] = ACTIONS(2296), - [anon_sym_symbol] = ACTIONS(2296), - [anon_sym_object] = ACTIONS(2296), - [anon_sym_abstract] = ACTIONS(2296), - [anon_sym_interface] = ACTIONS(2296), - [anon_sym_enum] = ACTIONS(2296), - [sym__automatic_semicolon] = ACTIONS(2298), - [sym_html_comment] = ACTIONS(5), - }, - [1203] = { - [sym_comment] = STATE(1203), - [sym_identifier] = ACTIONS(3399), - [anon_sym_export] = ACTIONS(3399), - [anon_sym_default] = ACTIONS(3399), - [anon_sym_type] = ACTIONS(3399), - [anon_sym_namespace] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_RBRACE] = ACTIONS(3399), - [anon_sym_typeof] = ACTIONS(3399), - [anon_sym_import] = ACTIONS(3399), - [anon_sym_with] = ACTIONS(3399), - [anon_sym_var] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_const] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3399), - [anon_sym_else] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_switch] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_await] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_break] = ACTIONS(3399), - [anon_sym_continue] = ACTIONS(3399), - [anon_sym_debugger] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_throw] = ACTIONS(3399), - [anon_sym_SEMI] = ACTIONS(3399), - [anon_sym_case] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_LTtemplate_GT] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_SQUOTE] = ACTIONS(3399), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_async] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_using] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_SLASH] = ACTIONS(3399), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3399), - [anon_sym_void] = ACTIONS(3399), - [anon_sym_delete] = ACTIONS(3399), - [anon_sym_PLUS_PLUS] = ACTIONS(3399), - [anon_sym_DASH_DASH] = ACTIONS(3399), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3399), - [sym_number] = ACTIONS(3399), - [sym_private_property_identifier] = ACTIONS(3399), - [sym_this] = ACTIONS(3399), - [sym_super] = ACTIONS(3399), - [sym_true] = ACTIONS(3399), - [sym_false] = ACTIONS(3399), - [sym_null] = ACTIONS(3399), - [sym_undefined] = ACTIONS(3399), - [anon_sym_AT] = ACTIONS(3399), - [anon_sym_static] = ACTIONS(3399), - [anon_sym_readonly] = ACTIONS(3399), - [anon_sym_get] = ACTIONS(3399), - [anon_sym_set] = ACTIONS(3399), - [anon_sym_declare] = ACTIONS(3399), - [anon_sym_public] = ACTIONS(3399), - [anon_sym_private] = ACTIONS(3399), - [anon_sym_protected] = ACTIONS(3399), - [anon_sym_override] = ACTIONS(3399), - [anon_sym_module] = ACTIONS(3399), - [anon_sym_any] = ACTIONS(3399), - [anon_sym_number] = ACTIONS(3399), - [anon_sym_boolean] = ACTIONS(3399), - [anon_sym_string] = ACTIONS(3399), - [anon_sym_symbol] = ACTIONS(3399), - [anon_sym_object] = ACTIONS(3399), - [anon_sym_abstract] = ACTIONS(3399), - [anon_sym_interface] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3399), - [sym_html_comment] = ACTIONS(5), - }, - [1204] = { - [sym_comment] = STATE(1204), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_default] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_case] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(2346), - [sym_html_comment] = ACTIONS(5), - }, - [1205] = { - [sym_comment] = STATE(1205), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_default] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_else] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(2176), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_case] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LTtemplate_GT] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_number] = ACTIONS(2176), - [sym_private_property_identifier] = ACTIONS(2176), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), - [sym_html_comment] = ACTIONS(5), - }, - [1206] = { - [sym_comment] = STATE(1206), - [sym_identifier] = ACTIONS(3401), - [anon_sym_export] = ACTIONS(3401), - [anon_sym_default] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_namespace] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_typeof] = ACTIONS(3401), - [anon_sym_import] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_var] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_else] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_switch] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_await] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_break] = ACTIONS(3401), - [anon_sym_continue] = ACTIONS(3401), - [anon_sym_debugger] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_throw] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_case] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LTtemplate_GT] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_SQUOTE] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_async] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_using] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_void] = ACTIONS(3401), - [anon_sym_delete] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3401), - [sym_number] = ACTIONS(3401), - [sym_private_property_identifier] = ACTIONS(3401), - [sym_this] = ACTIONS(3401), - [sym_super] = ACTIONS(3401), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_null] = ACTIONS(3401), - [sym_undefined] = ACTIONS(3401), - [anon_sym_AT] = ACTIONS(3401), - [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_abstract] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3401), - [anon_sym_enum] = ACTIONS(3401), - [sym_html_comment] = ACTIONS(5), - }, - [1207] = { - [sym_comment] = STATE(1207), - [sym_identifier] = ACTIONS(2238), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_default] = ACTIONS(2238), - [anon_sym_type] = ACTIONS(2238), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_typeof] = ACTIONS(2238), - [anon_sym_import] = ACTIONS(2238), - [anon_sym_with] = ACTIONS(2238), - [anon_sym_var] = ACTIONS(2238), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_await] = ACTIONS(2238), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_debugger] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_throw] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_case] = ACTIONS(2238), - [anon_sym_yield] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LTtemplate_GT] = ACTIONS(2238), - [anon_sym_DQUOTE] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2238), - [anon_sym_class] = ACTIONS(2238), - [anon_sym_async] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_using] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_void] = ACTIONS(2238), - [anon_sym_delete] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2238), - [sym_number] = ACTIONS(2238), - [sym_private_property_identifier] = ACTIONS(2238), - [sym_this] = ACTIONS(2238), - [sym_super] = ACTIONS(2238), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_null] = ACTIONS(2238), - [sym_undefined] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_readonly] = ACTIONS(2238), - [anon_sym_get] = ACTIONS(2238), - [anon_sym_set] = ACTIONS(2238), - [anon_sym_declare] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_protected] = ACTIONS(2238), - [anon_sym_override] = ACTIONS(2238), - [anon_sym_module] = ACTIONS(2238), - [anon_sym_any] = ACTIONS(2238), - [anon_sym_number] = ACTIONS(2238), - [anon_sym_boolean] = ACTIONS(2238), - [anon_sym_string] = ACTIONS(2238), - [anon_sym_symbol] = ACTIONS(2238), - [anon_sym_object] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_interface] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2352), - [sym_html_comment] = ACTIONS(5), - }, - [1208] = { - [sym_comment] = STATE(1208), [sym_identifier] = ACTIONS(2182), [anon_sym_export] = ACTIONS(2182), [anon_sym_default] = ACTIONS(2182), @@ -161593,6 +160564,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(2182), [anon_sym_const] = ACTIONS(2182), [anon_sym_BANG] = ACTIONS(2182), + [anon_sym_else] = ACTIONS(2182), [anon_sym_if] = ACTIONS(2182), [anon_sym_switch] = ACTIONS(2182), [anon_sym_for] = ACTIONS(2182), @@ -161657,1507 +160629,1173 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2182), [anon_sym_interface] = ACTIONS(2182), [anon_sym_enum] = ACTIONS(2182), - [sym__automatic_semicolon] = ACTIONS(2360), [sym_html_comment] = ACTIONS(5), }, - [1209] = { - [sym_comment] = STATE(1209), - [sym_identifier] = ACTIONS(3403), - [anon_sym_export] = ACTIONS(3403), - [anon_sym_default] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_namespace] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_typeof] = ACTIONS(3403), - [anon_sym_import] = ACTIONS(3403), - [anon_sym_with] = ACTIONS(3403), - [anon_sym_var] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_else] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_switch] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_await] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_debugger] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_throw] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_case] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LTtemplate_GT] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_class] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_using] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_void] = ACTIONS(3403), - [anon_sym_delete] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(3403), + [1200] = { + [sym_comment] = STATE(1200), + [sym_identifier] = ACTIONS(3437), + [anon_sym_export] = ACTIONS(3437), + [anon_sym_default] = ACTIONS(3437), + [anon_sym_type] = ACTIONS(3437), + [anon_sym_namespace] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3437), + [anon_sym_RBRACE] = ACTIONS(3437), + [anon_sym_typeof] = ACTIONS(3437), + [anon_sym_import] = ACTIONS(3437), + [anon_sym_with] = ACTIONS(3437), + [anon_sym_var] = ACTIONS(3437), + [anon_sym_let] = ACTIONS(3437), + [anon_sym_const] = ACTIONS(3437), + [anon_sym_BANG] = ACTIONS(3437), + [anon_sym_else] = ACTIONS(3437), + [anon_sym_if] = ACTIONS(3437), + [anon_sym_switch] = ACTIONS(3437), + [anon_sym_for] = ACTIONS(3437), + [anon_sym_LPAREN] = ACTIONS(3437), + [anon_sym_await] = ACTIONS(3437), + [anon_sym_while] = ACTIONS(3437), + [anon_sym_do] = ACTIONS(3437), + [anon_sym_try] = ACTIONS(3437), + [anon_sym_break] = ACTIONS(3437), + [anon_sym_continue] = ACTIONS(3437), + [anon_sym_debugger] = ACTIONS(3437), + [anon_sym_return] = ACTIONS(3437), + [anon_sym_throw] = ACTIONS(3437), + [anon_sym_SEMI] = ACTIONS(3437), + [anon_sym_case] = ACTIONS(3437), + [anon_sym_yield] = ACTIONS(3437), + [anon_sym_LBRACK] = ACTIONS(3437), + [anon_sym_LTtemplate_GT] = ACTIONS(3437), + [anon_sym_DQUOTE] = ACTIONS(3437), + [anon_sym_SQUOTE] = ACTIONS(3437), + [anon_sym_class] = ACTIONS(3437), + [anon_sym_async] = ACTIONS(3437), + [anon_sym_function] = ACTIONS(3437), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_using] = ACTIONS(3437), + [anon_sym_PLUS] = ACTIONS(3437), + [anon_sym_DASH] = ACTIONS(3437), + [anon_sym_SLASH] = ACTIONS(3437), + [anon_sym_LT] = ACTIONS(3437), + [anon_sym_TILDE] = ACTIONS(3437), + [anon_sym_void] = ACTIONS(3437), + [anon_sym_delete] = ACTIONS(3437), + [anon_sym_PLUS_PLUS] = ACTIONS(3437), + [anon_sym_DASH_DASH] = ACTIONS(3437), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3403), - [sym_number] = ACTIONS(3403), - [sym_private_property_identifier] = ACTIONS(3403), - [sym_this] = ACTIONS(3403), - [sym_super] = ACTIONS(3403), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [sym_null] = ACTIONS(3403), - [sym_undefined] = ACTIONS(3403), - [anon_sym_AT] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3403), - [anon_sym_readonly] = ACTIONS(3403), - [anon_sym_get] = ACTIONS(3403), - [anon_sym_set] = ACTIONS(3403), - [anon_sym_declare] = ACTIONS(3403), - [anon_sym_public] = ACTIONS(3403), - [anon_sym_private] = ACTIONS(3403), - [anon_sym_protected] = ACTIONS(3403), - [anon_sym_override] = ACTIONS(3403), - [anon_sym_module] = ACTIONS(3403), - [anon_sym_any] = ACTIONS(3403), - [anon_sym_number] = ACTIONS(3403), - [anon_sym_boolean] = ACTIONS(3403), - [anon_sym_string] = ACTIONS(3403), - [anon_sym_symbol] = ACTIONS(3403), - [anon_sym_object] = ACTIONS(3403), - [anon_sym_abstract] = ACTIONS(3403), - [anon_sym_interface] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), - [sym_html_comment] = ACTIONS(5), - }, - [1210] = { - [sym_comment] = STATE(1210), - [sym_identifier] = ACTIONS(3403), - [anon_sym_export] = ACTIONS(3403), - [anon_sym_default] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_namespace] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_typeof] = ACTIONS(3403), - [anon_sym_import] = ACTIONS(3403), - [anon_sym_with] = ACTIONS(3403), - [anon_sym_var] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_else] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_switch] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_await] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_debugger] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_throw] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_case] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LTtemplate_GT] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_class] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_using] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_void] = ACTIONS(3403), - [anon_sym_delete] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(3403), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3403), - [sym_number] = ACTIONS(3403), - [sym_private_property_identifier] = ACTIONS(3403), - [sym_this] = ACTIONS(3403), - [sym_super] = ACTIONS(3403), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [sym_null] = ACTIONS(3403), - [sym_undefined] = ACTIONS(3403), - [anon_sym_AT] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3403), - [anon_sym_readonly] = ACTIONS(3403), - [anon_sym_get] = ACTIONS(3403), - [anon_sym_set] = ACTIONS(3403), - [anon_sym_declare] = ACTIONS(3403), - [anon_sym_public] = ACTIONS(3403), - [anon_sym_private] = ACTIONS(3403), - [anon_sym_protected] = ACTIONS(3403), - [anon_sym_override] = ACTIONS(3403), - [anon_sym_module] = ACTIONS(3403), - [anon_sym_any] = ACTIONS(3403), - [anon_sym_number] = ACTIONS(3403), - [anon_sym_boolean] = ACTIONS(3403), - [anon_sym_string] = ACTIONS(3403), - [anon_sym_symbol] = ACTIONS(3403), - [anon_sym_object] = ACTIONS(3403), - [anon_sym_abstract] = ACTIONS(3403), - [anon_sym_interface] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), + [anon_sym_BQUOTE] = ACTIONS(3437), + [sym_number] = ACTIONS(3437), + [sym_private_property_identifier] = ACTIONS(3437), + [sym_this] = ACTIONS(3437), + [sym_super] = ACTIONS(3437), + [sym_true] = ACTIONS(3437), + [sym_false] = ACTIONS(3437), + [sym_null] = ACTIONS(3437), + [sym_undefined] = ACTIONS(3437), + [anon_sym_AT] = ACTIONS(3437), + [anon_sym_static] = ACTIONS(3437), + [anon_sym_readonly] = ACTIONS(3437), + [anon_sym_get] = ACTIONS(3437), + [anon_sym_set] = ACTIONS(3437), + [anon_sym_declare] = ACTIONS(3437), + [anon_sym_public] = ACTIONS(3437), + [anon_sym_private] = ACTIONS(3437), + [anon_sym_protected] = ACTIONS(3437), + [anon_sym_override] = ACTIONS(3437), + [anon_sym_module] = ACTIONS(3437), + [anon_sym_any] = ACTIONS(3437), + [anon_sym_number] = ACTIONS(3437), + [anon_sym_boolean] = ACTIONS(3437), + [anon_sym_string] = ACTIONS(3437), + [anon_sym_symbol] = ACTIONS(3437), + [anon_sym_object] = ACTIONS(3437), + [anon_sym_abstract] = ACTIONS(3437), + [anon_sym_interface] = ACTIONS(3437), + [anon_sym_enum] = ACTIONS(3437), [sym_html_comment] = ACTIONS(5), }, - [1211] = { - [sym_comment] = STATE(1211), - [sym_identifier] = ACTIONS(3405), - [anon_sym_export] = ACTIONS(3405), - [anon_sym_default] = ACTIONS(3405), - [anon_sym_type] = ACTIONS(3405), - [anon_sym_namespace] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_typeof] = ACTIONS(3405), - [anon_sym_import] = ACTIONS(3405), - [anon_sym_with] = ACTIONS(3405), - [anon_sym_var] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_const] = ACTIONS(3405), - [anon_sym_BANG] = ACTIONS(3405), - [anon_sym_else] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_switch] = ACTIONS(3405), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_await] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_break] = ACTIONS(3405), - [anon_sym_continue] = ACTIONS(3405), - [anon_sym_debugger] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_throw] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_case] = ACTIONS(3405), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LTtemplate_GT] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_SQUOTE] = ACTIONS(3405), - [anon_sym_class] = ACTIONS(3405), - [anon_sym_async] = ACTIONS(3405), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_using] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_SLASH] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_void] = ACTIONS(3405), - [anon_sym_delete] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3405), - [sym_number] = ACTIONS(3405), - [sym_private_property_identifier] = ACTIONS(3405), - [sym_this] = ACTIONS(3405), - [sym_super] = ACTIONS(3405), - [sym_true] = ACTIONS(3405), - [sym_false] = ACTIONS(3405), - [sym_null] = ACTIONS(3405), - [sym_undefined] = ACTIONS(3405), - [anon_sym_AT] = ACTIONS(3405), - [anon_sym_static] = ACTIONS(3405), - [anon_sym_readonly] = ACTIONS(3405), - [anon_sym_get] = ACTIONS(3405), - [anon_sym_set] = ACTIONS(3405), - [anon_sym_declare] = ACTIONS(3405), - [anon_sym_public] = ACTIONS(3405), - [anon_sym_private] = ACTIONS(3405), - [anon_sym_protected] = ACTIONS(3405), - [anon_sym_override] = ACTIONS(3405), - [anon_sym_module] = ACTIONS(3405), - [anon_sym_any] = ACTIONS(3405), - [anon_sym_number] = ACTIONS(3405), - [anon_sym_boolean] = ACTIONS(3405), - [anon_sym_string] = ACTIONS(3405), - [anon_sym_symbol] = ACTIONS(3405), - [anon_sym_object] = ACTIONS(3405), - [anon_sym_abstract] = ACTIONS(3405), - [anon_sym_interface] = ACTIONS(3405), - [anon_sym_enum] = ACTIONS(3405), + [1201] = { + [sym_comment] = STATE(1201), + [ts_builtin_sym_end] = ACTIONS(2388), + [sym_identifier] = ACTIONS(2292), + [anon_sym_export] = ACTIONS(2292), + [anon_sym_type] = ACTIONS(2292), + [anon_sym_namespace] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_typeof] = ACTIONS(2292), + [anon_sym_import] = ACTIONS(2292), + [anon_sym_with] = ACTIONS(2292), + [anon_sym_var] = ACTIONS(2292), + [anon_sym_let] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_else] = ACTIONS(2292), + [anon_sym_if] = ACTIONS(2292), + [anon_sym_switch] = ACTIONS(2292), + [anon_sym_for] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_await] = ACTIONS(2292), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(2292), + [anon_sym_try] = ACTIONS(2292), + [anon_sym_break] = ACTIONS(2292), + [anon_sym_continue] = ACTIONS(2292), + [anon_sym_debugger] = ACTIONS(2292), + [anon_sym_return] = ACTIONS(2292), + [anon_sym_throw] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_yield] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2292), + [anon_sym_LTtemplate_GT] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_SQUOTE] = ACTIONS(2292), + [anon_sym_class] = ACTIONS(2292), + [anon_sym_async] = ACTIONS(2292), + [anon_sym_function] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_using] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_SLASH] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2292), + [anon_sym_void] = ACTIONS(2292), + [anon_sym_delete] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2292), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2292), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [sym_this] = ACTIONS(2292), + [sym_super] = ACTIONS(2292), + [sym_true] = ACTIONS(2292), + [sym_false] = ACTIONS(2292), + [sym_null] = ACTIONS(2292), + [sym_undefined] = ACTIONS(2292), + [anon_sym_AT] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2292), + [anon_sym_readonly] = ACTIONS(2292), + [anon_sym_get] = ACTIONS(2292), + [anon_sym_set] = ACTIONS(2292), + [anon_sym_declare] = ACTIONS(2292), + [anon_sym_public] = ACTIONS(2292), + [anon_sym_private] = ACTIONS(2292), + [anon_sym_protected] = ACTIONS(2292), + [anon_sym_override] = ACTIONS(2292), + [anon_sym_module] = ACTIONS(2292), + [anon_sym_any] = ACTIONS(2292), + [anon_sym_number] = ACTIONS(2292), + [anon_sym_boolean] = ACTIONS(2292), + [anon_sym_string] = ACTIONS(2292), + [anon_sym_symbol] = ACTIONS(2292), + [anon_sym_object] = ACTIONS(2292), + [anon_sym_abstract] = ACTIONS(2292), + [anon_sym_interface] = ACTIONS(2292), + [anon_sym_enum] = ACTIONS(2292), + [sym__automatic_semicolon] = ACTIONS(2390), [sym_html_comment] = ACTIONS(5), }, - [1212] = { - [sym_comment] = STATE(1212), - [sym_identifier] = ACTIONS(3407), - [anon_sym_export] = ACTIONS(3407), - [anon_sym_default] = ACTIONS(3407), - [anon_sym_type] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_RBRACE] = ACTIONS(3407), - [anon_sym_typeof] = ACTIONS(3407), - [anon_sym_import] = ACTIONS(3407), - [anon_sym_with] = ACTIONS(3407), - [anon_sym_var] = ACTIONS(3407), - [anon_sym_let] = ACTIONS(3407), - [anon_sym_const] = ACTIONS(3407), - [anon_sym_BANG] = ACTIONS(3407), - [anon_sym_else] = ACTIONS(3407), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_switch] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_await] = ACTIONS(3407), - [anon_sym_while] = ACTIONS(3407), - [anon_sym_do] = ACTIONS(3407), - [anon_sym_try] = ACTIONS(3407), - [anon_sym_break] = ACTIONS(3407), - [anon_sym_continue] = ACTIONS(3407), - [anon_sym_debugger] = ACTIONS(3407), - [anon_sym_return] = ACTIONS(3407), - [anon_sym_throw] = ACTIONS(3407), - [anon_sym_SEMI] = ACTIONS(3407), - [anon_sym_case] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3407), - [anon_sym_LTtemplate_GT] = ACTIONS(3407), - [anon_sym_DQUOTE] = ACTIONS(3407), - [anon_sym_SQUOTE] = ACTIONS(3407), - [anon_sym_class] = ACTIONS(3407), - [anon_sym_async] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3407), - [anon_sym_using] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_SLASH] = ACTIONS(3407), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3407), - [anon_sym_void] = ACTIONS(3407), - [anon_sym_delete] = ACTIONS(3407), - [anon_sym_PLUS_PLUS] = ACTIONS(3407), - [anon_sym_DASH_DASH] = ACTIONS(3407), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3407), - [sym_number] = ACTIONS(3407), - [sym_private_property_identifier] = ACTIONS(3407), - [sym_this] = ACTIONS(3407), - [sym_super] = ACTIONS(3407), - [sym_true] = ACTIONS(3407), - [sym_false] = ACTIONS(3407), - [sym_null] = ACTIONS(3407), - [sym_undefined] = ACTIONS(3407), - [anon_sym_AT] = ACTIONS(3407), - [anon_sym_static] = ACTIONS(3407), - [anon_sym_readonly] = ACTIONS(3407), - [anon_sym_get] = ACTIONS(3407), - [anon_sym_set] = ACTIONS(3407), - [anon_sym_declare] = ACTIONS(3407), - [anon_sym_public] = ACTIONS(3407), - [anon_sym_private] = ACTIONS(3407), - [anon_sym_protected] = ACTIONS(3407), - [anon_sym_override] = ACTIONS(3407), - [anon_sym_module] = ACTIONS(3407), - [anon_sym_any] = ACTIONS(3407), - [anon_sym_number] = ACTIONS(3407), - [anon_sym_boolean] = ACTIONS(3407), - [anon_sym_string] = ACTIONS(3407), - [anon_sym_symbol] = ACTIONS(3407), - [anon_sym_object] = ACTIONS(3407), - [anon_sym_abstract] = ACTIONS(3407), - [anon_sym_interface] = ACTIONS(3407), - [anon_sym_enum] = ACTIONS(3407), + [1202] = { + [sym_comment] = STATE(1202), + [sym_identifier] = ACTIONS(3439), + [anon_sym_export] = ACTIONS(3439), + [anon_sym_default] = ACTIONS(3439), + [anon_sym_type] = ACTIONS(3439), + [anon_sym_namespace] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_RBRACE] = ACTIONS(3439), + [anon_sym_typeof] = ACTIONS(3439), + [anon_sym_import] = ACTIONS(3439), + [anon_sym_with] = ACTIONS(3439), + [anon_sym_var] = ACTIONS(3439), + [anon_sym_let] = ACTIONS(3439), + [anon_sym_const] = ACTIONS(3439), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_else] = ACTIONS(3439), + [anon_sym_if] = ACTIONS(3439), + [anon_sym_switch] = ACTIONS(3439), + [anon_sym_for] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3439), + [anon_sym_await] = ACTIONS(3439), + [anon_sym_while] = ACTIONS(3439), + [anon_sym_do] = ACTIONS(3439), + [anon_sym_try] = ACTIONS(3439), + [anon_sym_break] = ACTIONS(3439), + [anon_sym_continue] = ACTIONS(3439), + [anon_sym_debugger] = ACTIONS(3439), + [anon_sym_return] = ACTIONS(3439), + [anon_sym_throw] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3439), + [anon_sym_case] = ACTIONS(3439), + [anon_sym_yield] = ACTIONS(3439), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LTtemplate_GT] = ACTIONS(3439), + [anon_sym_DQUOTE] = ACTIONS(3439), + [anon_sym_SQUOTE] = ACTIONS(3439), + [anon_sym_class] = ACTIONS(3439), + [anon_sym_async] = ACTIONS(3439), + [anon_sym_function] = ACTIONS(3439), + [anon_sym_new] = ACTIONS(3439), + [anon_sym_using] = ACTIONS(3439), + [anon_sym_PLUS] = ACTIONS(3439), + [anon_sym_DASH] = ACTIONS(3439), + [anon_sym_SLASH] = ACTIONS(3439), + [anon_sym_LT] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(3439), + [anon_sym_void] = ACTIONS(3439), + [anon_sym_delete] = ACTIONS(3439), + [anon_sym_PLUS_PLUS] = ACTIONS(3439), + [anon_sym_DASH_DASH] = ACTIONS(3439), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3439), + [sym_number] = ACTIONS(3439), + [sym_private_property_identifier] = ACTIONS(3439), + [sym_this] = ACTIONS(3439), + [sym_super] = ACTIONS(3439), + [sym_true] = ACTIONS(3439), + [sym_false] = ACTIONS(3439), + [sym_null] = ACTIONS(3439), + [sym_undefined] = ACTIONS(3439), + [anon_sym_AT] = ACTIONS(3439), + [anon_sym_static] = ACTIONS(3439), + [anon_sym_readonly] = ACTIONS(3439), + [anon_sym_get] = ACTIONS(3439), + [anon_sym_set] = ACTIONS(3439), + [anon_sym_declare] = ACTIONS(3439), + [anon_sym_public] = ACTIONS(3439), + [anon_sym_private] = ACTIONS(3439), + [anon_sym_protected] = ACTIONS(3439), + [anon_sym_override] = ACTIONS(3439), + [anon_sym_module] = ACTIONS(3439), + [anon_sym_any] = ACTIONS(3439), + [anon_sym_number] = ACTIONS(3439), + [anon_sym_boolean] = ACTIONS(3439), + [anon_sym_string] = ACTIONS(3439), + [anon_sym_symbol] = ACTIONS(3439), + [anon_sym_object] = ACTIONS(3439), + [anon_sym_abstract] = ACTIONS(3439), + [anon_sym_interface] = ACTIONS(3439), + [anon_sym_enum] = ACTIONS(3439), [sym_html_comment] = ACTIONS(5), }, - [1213] = { - [sym_comment] = STATE(1213), - [sym_identifier] = ACTIONS(3409), - [anon_sym_export] = ACTIONS(3409), - [anon_sym_default] = ACTIONS(3409), - [anon_sym_type] = ACTIONS(3409), - [anon_sym_namespace] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_typeof] = ACTIONS(3409), - [anon_sym_import] = ACTIONS(3409), - [anon_sym_with] = ACTIONS(3409), - [anon_sym_var] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_const] = ACTIONS(3409), - [anon_sym_BANG] = ACTIONS(3409), - [anon_sym_else] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_switch] = ACTIONS(3409), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_await] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_break] = ACTIONS(3409), - [anon_sym_continue] = ACTIONS(3409), - [anon_sym_debugger] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_throw] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_case] = ACTIONS(3409), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LTtemplate_GT] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_SQUOTE] = ACTIONS(3409), - [anon_sym_class] = ACTIONS(3409), - [anon_sym_async] = ACTIONS(3409), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_using] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_SLASH] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_void] = ACTIONS(3409), - [anon_sym_delete] = ACTIONS(3409), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3409), - [sym_number] = ACTIONS(3409), - [sym_private_property_identifier] = ACTIONS(3409), - [sym_this] = ACTIONS(3409), - [sym_super] = ACTIONS(3409), - [sym_true] = ACTIONS(3409), - [sym_false] = ACTIONS(3409), - [sym_null] = ACTIONS(3409), - [sym_undefined] = ACTIONS(3409), - [anon_sym_AT] = ACTIONS(3409), - [anon_sym_static] = ACTIONS(3409), - [anon_sym_readonly] = ACTIONS(3409), - [anon_sym_get] = ACTIONS(3409), - [anon_sym_set] = ACTIONS(3409), - [anon_sym_declare] = ACTIONS(3409), - [anon_sym_public] = ACTIONS(3409), - [anon_sym_private] = ACTIONS(3409), - [anon_sym_protected] = ACTIONS(3409), - [anon_sym_override] = ACTIONS(3409), - [anon_sym_module] = ACTIONS(3409), - [anon_sym_any] = ACTIONS(3409), - [anon_sym_number] = ACTIONS(3409), - [anon_sym_boolean] = ACTIONS(3409), - [anon_sym_string] = ACTIONS(3409), - [anon_sym_symbol] = ACTIONS(3409), - [anon_sym_object] = ACTIONS(3409), - [anon_sym_abstract] = ACTIONS(3409), - [anon_sym_interface] = ACTIONS(3409), - [anon_sym_enum] = ACTIONS(3409), + [1203] = { + [sym_comment] = STATE(1203), + [sym_identifier] = ACTIONS(2300), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_default] = ACTIONS(2300), + [anon_sym_type] = ACTIONS(2300), + [anon_sym_namespace] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2300), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2300), + [anon_sym_import] = ACTIONS(2300), + [anon_sym_with] = ACTIONS(2300), + [anon_sym_var] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(2300), + [anon_sym_else] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_switch] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_await] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_debugger] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_throw] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_case] = ACTIONS(2300), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2300), + [anon_sym_LTtemplate_GT] = ACTIONS(2300), + [anon_sym_DQUOTE] = ACTIONS(2300), + [anon_sym_SQUOTE] = ACTIONS(2300), + [anon_sym_class] = ACTIONS(2300), + [anon_sym_async] = ACTIONS(2300), + [anon_sym_function] = ACTIONS(2300), + [anon_sym_new] = ACTIONS(2300), + [anon_sym_using] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_LT] = ACTIONS(2300), + [anon_sym_TILDE] = ACTIONS(2300), + [anon_sym_void] = ACTIONS(2300), + [anon_sym_delete] = ACTIONS(2300), + [anon_sym_PLUS_PLUS] = ACTIONS(2300), + [anon_sym_DASH_DASH] = ACTIONS(2300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2300), + [sym_number] = ACTIONS(2300), + [sym_private_property_identifier] = ACTIONS(2300), + [sym_this] = ACTIONS(2300), + [sym_super] = ACTIONS(2300), + [sym_true] = ACTIONS(2300), + [sym_false] = ACTIONS(2300), + [sym_null] = ACTIONS(2300), + [sym_undefined] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2300), + [anon_sym_static] = ACTIONS(2300), + [anon_sym_readonly] = ACTIONS(2300), + [anon_sym_get] = ACTIONS(2300), + [anon_sym_set] = ACTIONS(2300), + [anon_sym_declare] = ACTIONS(2300), + [anon_sym_public] = ACTIONS(2300), + [anon_sym_private] = ACTIONS(2300), + [anon_sym_protected] = ACTIONS(2300), + [anon_sym_override] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_any] = ACTIONS(2300), + [anon_sym_number] = ACTIONS(2300), + [anon_sym_boolean] = ACTIONS(2300), + [anon_sym_string] = ACTIONS(2300), + [anon_sym_symbol] = ACTIONS(2300), + [anon_sym_object] = ACTIONS(2300), + [anon_sym_abstract] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2300), + [anon_sym_enum] = ACTIONS(2300), [sym_html_comment] = ACTIONS(5), }, - [1214] = { - [sym_comment] = STATE(1214), - [sym_identifier] = ACTIONS(3411), - [anon_sym_export] = ACTIONS(3411), - [anon_sym_default] = ACTIONS(3411), - [anon_sym_type] = ACTIONS(3411), - [anon_sym_namespace] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3411), - [anon_sym_RBRACE] = ACTIONS(3411), - [anon_sym_typeof] = ACTIONS(3411), - [anon_sym_import] = ACTIONS(3411), - [anon_sym_with] = ACTIONS(3411), - [anon_sym_var] = ACTIONS(3411), - [anon_sym_let] = ACTIONS(3411), - [anon_sym_const] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3411), - [anon_sym_else] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_await] = ACTIONS(3411), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_try] = ACTIONS(3411), - [anon_sym_break] = ACTIONS(3411), - [anon_sym_continue] = ACTIONS(3411), - [anon_sym_debugger] = ACTIONS(3411), - [anon_sym_return] = ACTIONS(3411), - [anon_sym_throw] = ACTIONS(3411), - [anon_sym_SEMI] = ACTIONS(3411), - [anon_sym_case] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3411), - [anon_sym_LTtemplate_GT] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3411), - [anon_sym_class] = ACTIONS(3411), - [anon_sym_async] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3411), - [anon_sym_using] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_SLASH] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3411), - [anon_sym_void] = ACTIONS(3411), - [anon_sym_delete] = ACTIONS(3411), - [anon_sym_PLUS_PLUS] = ACTIONS(3411), - [anon_sym_DASH_DASH] = ACTIONS(3411), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3411), - [sym_number] = ACTIONS(3411), - [sym_private_property_identifier] = ACTIONS(3411), - [sym_this] = ACTIONS(3411), - [sym_super] = ACTIONS(3411), - [sym_true] = ACTIONS(3411), - [sym_false] = ACTIONS(3411), - [sym_null] = ACTIONS(3411), - [sym_undefined] = ACTIONS(3411), - [anon_sym_AT] = ACTIONS(3411), - [anon_sym_static] = ACTIONS(3411), - [anon_sym_readonly] = ACTIONS(3411), - [anon_sym_get] = ACTIONS(3411), - [anon_sym_set] = ACTIONS(3411), - [anon_sym_declare] = ACTIONS(3411), - [anon_sym_public] = ACTIONS(3411), - [anon_sym_private] = ACTIONS(3411), - [anon_sym_protected] = ACTIONS(3411), - [anon_sym_override] = ACTIONS(3411), - [anon_sym_module] = ACTIONS(3411), - [anon_sym_any] = ACTIONS(3411), - [anon_sym_number] = ACTIONS(3411), - [anon_sym_boolean] = ACTIONS(3411), - [anon_sym_string] = ACTIONS(3411), - [anon_sym_symbol] = ACTIONS(3411), - [anon_sym_object] = ACTIONS(3411), - [anon_sym_abstract] = ACTIONS(3411), - [anon_sym_interface] = ACTIONS(3411), - [anon_sym_enum] = ACTIONS(3411), + [1204] = { + [sym_comment] = STATE(1204), + [sym_identifier] = ACTIONS(2304), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_default] = ACTIONS(2304), + [anon_sym_type] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2304), + [anon_sym_LBRACE] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_typeof] = ACTIONS(2304), + [anon_sym_import] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(2304), + [anon_sym_var] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(2304), + [anon_sym_else] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_switch] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_await] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_debugger] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_throw] = ACTIONS(2304), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_case] = ACTIONS(2304), + [anon_sym_yield] = ACTIONS(2304), + [anon_sym_LBRACK] = ACTIONS(2304), + [anon_sym_LTtemplate_GT] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2304), + [anon_sym_SQUOTE] = ACTIONS(2304), + [anon_sym_class] = ACTIONS(2304), + [anon_sym_async] = ACTIONS(2304), + [anon_sym_function] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2304), + [anon_sym_using] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2304), + [anon_sym_DASH] = ACTIONS(2304), + [anon_sym_SLASH] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2304), + [anon_sym_void] = ACTIONS(2304), + [anon_sym_delete] = ACTIONS(2304), + [anon_sym_PLUS_PLUS] = ACTIONS(2304), + [anon_sym_DASH_DASH] = ACTIONS(2304), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2304), + [sym_number] = ACTIONS(2304), + [sym_private_property_identifier] = ACTIONS(2304), + [sym_this] = ACTIONS(2304), + [sym_super] = ACTIONS(2304), + [sym_true] = ACTIONS(2304), + [sym_false] = ACTIONS(2304), + [sym_null] = ACTIONS(2304), + [sym_undefined] = ACTIONS(2304), + [anon_sym_AT] = ACTIONS(2304), + [anon_sym_static] = ACTIONS(2304), + [anon_sym_readonly] = ACTIONS(2304), + [anon_sym_get] = ACTIONS(2304), + [anon_sym_set] = ACTIONS(2304), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_public] = ACTIONS(2304), + [anon_sym_private] = ACTIONS(2304), + [anon_sym_protected] = ACTIONS(2304), + [anon_sym_override] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_any] = ACTIONS(2304), + [anon_sym_number] = ACTIONS(2304), + [anon_sym_boolean] = ACTIONS(2304), + [anon_sym_string] = ACTIONS(2304), + [anon_sym_symbol] = ACTIONS(2304), + [anon_sym_object] = ACTIONS(2304), + [anon_sym_abstract] = ACTIONS(2304), + [anon_sym_interface] = ACTIONS(2304), + [anon_sym_enum] = ACTIONS(2304), [sym_html_comment] = ACTIONS(5), }, - [1215] = { - [sym_comment] = STATE(1215), - [sym_identifier] = ACTIONS(3411), - [anon_sym_export] = ACTIONS(3411), - [anon_sym_default] = ACTIONS(3411), - [anon_sym_type] = ACTIONS(3411), - [anon_sym_namespace] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3411), - [anon_sym_RBRACE] = ACTIONS(3411), - [anon_sym_typeof] = ACTIONS(3411), - [anon_sym_import] = ACTIONS(3411), - [anon_sym_with] = ACTIONS(3411), - [anon_sym_var] = ACTIONS(3411), - [anon_sym_let] = ACTIONS(3411), - [anon_sym_const] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3411), - [anon_sym_else] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_await] = ACTIONS(3411), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_try] = ACTIONS(3411), - [anon_sym_break] = ACTIONS(3411), - [anon_sym_continue] = ACTIONS(3411), - [anon_sym_debugger] = ACTIONS(3411), - [anon_sym_return] = ACTIONS(3411), - [anon_sym_throw] = ACTIONS(3411), - [anon_sym_SEMI] = ACTIONS(3411), - [anon_sym_case] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3411), - [anon_sym_LTtemplate_GT] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3411), - [anon_sym_class] = ACTIONS(3411), - [anon_sym_async] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3411), - [anon_sym_using] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_SLASH] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3411), - [anon_sym_void] = ACTIONS(3411), - [anon_sym_delete] = ACTIONS(3411), - [anon_sym_PLUS_PLUS] = ACTIONS(3411), - [anon_sym_DASH_DASH] = ACTIONS(3411), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3411), - [sym_number] = ACTIONS(3411), - [sym_private_property_identifier] = ACTIONS(3411), - [sym_this] = ACTIONS(3411), - [sym_super] = ACTIONS(3411), - [sym_true] = ACTIONS(3411), - [sym_false] = ACTIONS(3411), - [sym_null] = ACTIONS(3411), - [sym_undefined] = ACTIONS(3411), - [anon_sym_AT] = ACTIONS(3411), - [anon_sym_static] = ACTIONS(3411), - [anon_sym_readonly] = ACTIONS(3411), - [anon_sym_get] = ACTIONS(3411), - [anon_sym_set] = ACTIONS(3411), - [anon_sym_declare] = ACTIONS(3411), - [anon_sym_public] = ACTIONS(3411), - [anon_sym_private] = ACTIONS(3411), - [anon_sym_protected] = ACTIONS(3411), - [anon_sym_override] = ACTIONS(3411), - [anon_sym_module] = ACTIONS(3411), - [anon_sym_any] = ACTIONS(3411), - [anon_sym_number] = ACTIONS(3411), - [anon_sym_boolean] = ACTIONS(3411), - [anon_sym_string] = ACTIONS(3411), - [anon_sym_symbol] = ACTIONS(3411), - [anon_sym_object] = ACTIONS(3411), - [anon_sym_abstract] = ACTIONS(3411), - [anon_sym_interface] = ACTIONS(3411), - [anon_sym_enum] = ACTIONS(3411), + [1205] = { + [sym_comment] = STATE(1205), + [ts_builtin_sym_end] = ACTIONS(2398), + [sym_identifier] = ACTIONS(2308), + [anon_sym_export] = ACTIONS(2308), + [anon_sym_type] = ACTIONS(2308), + [anon_sym_namespace] = ACTIONS(2308), + [anon_sym_LBRACE] = ACTIONS(2308), + [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_typeof] = ACTIONS(2308), + [anon_sym_import] = ACTIONS(2308), + [anon_sym_with] = ACTIONS(2308), + [anon_sym_var] = ACTIONS(2308), + [anon_sym_let] = ACTIONS(2308), + [anon_sym_const] = ACTIONS(2308), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_else] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_switch] = ACTIONS(2308), + [anon_sym_for] = ACTIONS(2308), + [anon_sym_LPAREN] = ACTIONS(2308), + [anon_sym_await] = ACTIONS(2308), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_do] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2308), + [anon_sym_break] = ACTIONS(2308), + [anon_sym_continue] = ACTIONS(2308), + [anon_sym_debugger] = ACTIONS(2308), + [anon_sym_return] = ACTIONS(2308), + [anon_sym_throw] = ACTIONS(2308), + [anon_sym_SEMI] = ACTIONS(2308), + [anon_sym_yield] = ACTIONS(2308), + [anon_sym_LBRACK] = ACTIONS(2308), + [anon_sym_LTtemplate_GT] = ACTIONS(2308), + [anon_sym_DQUOTE] = ACTIONS(2308), + [anon_sym_SQUOTE] = ACTIONS(2308), + [anon_sym_class] = ACTIONS(2308), + [anon_sym_async] = ACTIONS(2308), + [anon_sym_function] = ACTIONS(2308), + [anon_sym_new] = ACTIONS(2308), + [anon_sym_using] = ACTIONS(2308), + [anon_sym_PLUS] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2308), + [anon_sym_SLASH] = ACTIONS(2308), + [anon_sym_LT] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_void] = ACTIONS(2308), + [anon_sym_delete] = ACTIONS(2308), + [anon_sym_PLUS_PLUS] = ACTIONS(2308), + [anon_sym_DASH_DASH] = ACTIONS(2308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2308), + [sym_number] = ACTIONS(2308), + [sym_private_property_identifier] = ACTIONS(2308), + [sym_this] = ACTIONS(2308), + [sym_super] = ACTIONS(2308), + [sym_true] = ACTIONS(2308), + [sym_false] = ACTIONS(2308), + [sym_null] = ACTIONS(2308), + [sym_undefined] = ACTIONS(2308), + [anon_sym_AT] = ACTIONS(2308), + [anon_sym_static] = ACTIONS(2308), + [anon_sym_readonly] = ACTIONS(2308), + [anon_sym_get] = ACTIONS(2308), + [anon_sym_set] = ACTIONS(2308), + [anon_sym_declare] = ACTIONS(2308), + [anon_sym_public] = ACTIONS(2308), + [anon_sym_private] = ACTIONS(2308), + [anon_sym_protected] = ACTIONS(2308), + [anon_sym_override] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2308), + [anon_sym_any] = ACTIONS(2308), + [anon_sym_number] = ACTIONS(2308), + [anon_sym_boolean] = ACTIONS(2308), + [anon_sym_string] = ACTIONS(2308), + [anon_sym_symbol] = ACTIONS(2308), + [anon_sym_object] = ACTIONS(2308), + [anon_sym_abstract] = ACTIONS(2308), + [anon_sym_interface] = ACTIONS(2308), + [anon_sym_enum] = ACTIONS(2308), + [sym__automatic_semicolon] = ACTIONS(2400), [sym_html_comment] = ACTIONS(5), }, - [1216] = { - [sym_comment] = STATE(1216), - [sym_identifier] = ACTIONS(3413), - [anon_sym_export] = ACTIONS(3413), - [anon_sym_default] = ACTIONS(3413), - [anon_sym_type] = ACTIONS(3413), - [anon_sym_namespace] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_RBRACE] = ACTIONS(3413), - [anon_sym_typeof] = ACTIONS(3413), - [anon_sym_import] = ACTIONS(3413), - [anon_sym_with] = ACTIONS(3413), - [anon_sym_var] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_const] = ACTIONS(3413), - [anon_sym_BANG] = ACTIONS(3413), - [anon_sym_else] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_await] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_break] = ACTIONS(3413), - [anon_sym_continue] = ACTIONS(3413), - [anon_sym_debugger] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_throw] = ACTIONS(3413), - [anon_sym_SEMI] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LTtemplate_GT] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_SQUOTE] = ACTIONS(3413), - [anon_sym_class] = ACTIONS(3413), - [anon_sym_async] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_using] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_SLASH] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_void] = ACTIONS(3413), - [anon_sym_delete] = ACTIONS(3413), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3413), + [1206] = { + [sym_comment] = STATE(1206), + [sym_identifier] = ACTIONS(3441), + [anon_sym_export] = ACTIONS(3441), + [anon_sym_default] = ACTIONS(3441), + [anon_sym_type] = ACTIONS(3441), + [anon_sym_namespace] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3441), + [anon_sym_RBRACE] = ACTIONS(3441), + [anon_sym_typeof] = ACTIONS(3441), + [anon_sym_import] = ACTIONS(3441), + [anon_sym_with] = ACTIONS(3441), + [anon_sym_var] = ACTIONS(3441), + [anon_sym_let] = ACTIONS(3441), + [anon_sym_const] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_else] = ACTIONS(3441), + [anon_sym_if] = ACTIONS(3441), + [anon_sym_switch] = ACTIONS(3441), + [anon_sym_for] = ACTIONS(3441), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_await] = ACTIONS(3441), + [anon_sym_while] = ACTIONS(3441), + [anon_sym_do] = ACTIONS(3441), + [anon_sym_try] = ACTIONS(3441), + [anon_sym_break] = ACTIONS(3441), + [anon_sym_continue] = ACTIONS(3441), + [anon_sym_debugger] = ACTIONS(3441), + [anon_sym_return] = ACTIONS(3441), + [anon_sym_throw] = ACTIONS(3441), + [anon_sym_SEMI] = ACTIONS(3441), + [anon_sym_case] = ACTIONS(3441), + [anon_sym_yield] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3441), + [anon_sym_LTtemplate_GT] = ACTIONS(3441), + [anon_sym_DQUOTE] = ACTIONS(3441), + [anon_sym_SQUOTE] = ACTIONS(3441), + [anon_sym_class] = ACTIONS(3441), + [anon_sym_async] = ACTIONS(3441), + [anon_sym_function] = ACTIONS(3441), + [anon_sym_new] = ACTIONS(3441), + [anon_sym_using] = ACTIONS(3441), + [anon_sym_PLUS] = ACTIONS(3441), + [anon_sym_DASH] = ACTIONS(3441), + [anon_sym_SLASH] = ACTIONS(3441), + [anon_sym_LT] = ACTIONS(3441), + [anon_sym_TILDE] = ACTIONS(3441), + [anon_sym_void] = ACTIONS(3441), + [anon_sym_delete] = ACTIONS(3441), + [anon_sym_PLUS_PLUS] = ACTIONS(3441), + [anon_sym_DASH_DASH] = ACTIONS(3441), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3413), - [sym_number] = ACTIONS(3413), - [sym_private_property_identifier] = ACTIONS(3413), - [sym_this] = ACTIONS(3413), - [sym_super] = ACTIONS(3413), - [sym_true] = ACTIONS(3413), - [sym_false] = ACTIONS(3413), - [sym_null] = ACTIONS(3413), - [sym_undefined] = ACTIONS(3413), - [anon_sym_AT] = ACTIONS(3413), - [anon_sym_static] = ACTIONS(3413), - [anon_sym_readonly] = ACTIONS(3413), - [anon_sym_get] = ACTIONS(3413), - [anon_sym_set] = ACTIONS(3413), - [anon_sym_declare] = ACTIONS(3413), - [anon_sym_public] = ACTIONS(3413), - [anon_sym_private] = ACTIONS(3413), - [anon_sym_protected] = ACTIONS(3413), - [anon_sym_override] = ACTIONS(3413), - [anon_sym_module] = ACTIONS(3413), - [anon_sym_any] = ACTIONS(3413), - [anon_sym_number] = ACTIONS(3413), - [anon_sym_boolean] = ACTIONS(3413), - [anon_sym_string] = ACTIONS(3413), - [anon_sym_symbol] = ACTIONS(3413), - [anon_sym_object] = ACTIONS(3413), - [anon_sym_abstract] = ACTIONS(3413), - [anon_sym_interface] = ACTIONS(3413), - [anon_sym_enum] = ACTIONS(3413), + [anon_sym_BQUOTE] = ACTIONS(3441), + [sym_number] = ACTIONS(3441), + [sym_private_property_identifier] = ACTIONS(3441), + [sym_this] = ACTIONS(3441), + [sym_super] = ACTIONS(3441), + [sym_true] = ACTIONS(3441), + [sym_false] = ACTIONS(3441), + [sym_null] = ACTIONS(3441), + [sym_undefined] = ACTIONS(3441), + [anon_sym_AT] = ACTIONS(3441), + [anon_sym_static] = ACTIONS(3441), + [anon_sym_readonly] = ACTIONS(3441), + [anon_sym_get] = ACTIONS(3441), + [anon_sym_set] = ACTIONS(3441), + [anon_sym_declare] = ACTIONS(3441), + [anon_sym_public] = ACTIONS(3441), + [anon_sym_private] = ACTIONS(3441), + [anon_sym_protected] = ACTIONS(3441), + [anon_sym_override] = ACTIONS(3441), + [anon_sym_module] = ACTIONS(3441), + [anon_sym_any] = ACTIONS(3441), + [anon_sym_number] = ACTIONS(3441), + [anon_sym_boolean] = ACTIONS(3441), + [anon_sym_string] = ACTIONS(3441), + [anon_sym_symbol] = ACTIONS(3441), + [anon_sym_object] = ACTIONS(3441), + [anon_sym_abstract] = ACTIONS(3441), + [anon_sym_interface] = ACTIONS(3441), + [anon_sym_enum] = ACTIONS(3441), [sym_html_comment] = ACTIONS(5), }, - [1217] = { - [sym_comment] = STATE(1217), - [sym_identifier] = ACTIONS(3415), - [anon_sym_export] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3415), - [anon_sym_type] = ACTIONS(3415), - [anon_sym_namespace] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_RBRACE] = ACTIONS(3415), - [anon_sym_typeof] = ACTIONS(3415), - [anon_sym_import] = ACTIONS(3415), - [anon_sym_with] = ACTIONS(3415), - [anon_sym_var] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_const] = ACTIONS(3415), - [anon_sym_BANG] = ACTIONS(3415), - [anon_sym_else] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_switch] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_await] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_break] = ACTIONS(3415), - [anon_sym_continue] = ACTIONS(3415), - [anon_sym_debugger] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_throw] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3415), - [anon_sym_case] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LTtemplate_GT] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3415), - [anon_sym_class] = ACTIONS(3415), - [anon_sym_async] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_using] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_TILDE] = ACTIONS(3415), - [anon_sym_void] = ACTIONS(3415), - [anon_sym_delete] = ACTIONS(3415), - [anon_sym_PLUS_PLUS] = ACTIONS(3415), - [anon_sym_DASH_DASH] = ACTIONS(3415), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3415), - [sym_number] = ACTIONS(3415), - [sym_private_property_identifier] = ACTIONS(3415), - [sym_this] = ACTIONS(3415), - [sym_super] = ACTIONS(3415), - [sym_true] = ACTIONS(3415), - [sym_false] = ACTIONS(3415), - [sym_null] = ACTIONS(3415), - [sym_undefined] = ACTIONS(3415), - [anon_sym_AT] = ACTIONS(3415), - [anon_sym_static] = ACTIONS(3415), - [anon_sym_readonly] = ACTIONS(3415), - [anon_sym_get] = ACTIONS(3415), - [anon_sym_set] = ACTIONS(3415), - [anon_sym_declare] = ACTIONS(3415), - [anon_sym_public] = ACTIONS(3415), - [anon_sym_private] = ACTIONS(3415), - [anon_sym_protected] = ACTIONS(3415), - [anon_sym_override] = ACTIONS(3415), - [anon_sym_module] = ACTIONS(3415), - [anon_sym_any] = ACTIONS(3415), - [anon_sym_number] = ACTIONS(3415), - [anon_sym_boolean] = ACTIONS(3415), - [anon_sym_string] = ACTIONS(3415), - [anon_sym_symbol] = ACTIONS(3415), - [anon_sym_object] = ACTIONS(3415), - [anon_sym_abstract] = ACTIONS(3415), - [anon_sym_interface] = ACTIONS(3415), - [anon_sym_enum] = ACTIONS(3415), + [1207] = { + [sym_comment] = STATE(1207), + [sym_identifier] = ACTIONS(3443), + [anon_sym_export] = ACTIONS(3443), + [anon_sym_default] = ACTIONS(3443), + [anon_sym_type] = ACTIONS(3443), + [anon_sym_namespace] = ACTIONS(3443), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_RBRACE] = ACTIONS(3443), + [anon_sym_typeof] = ACTIONS(3443), + [anon_sym_import] = ACTIONS(3443), + [anon_sym_with] = ACTIONS(3443), + [anon_sym_var] = ACTIONS(3443), + [anon_sym_let] = ACTIONS(3443), + [anon_sym_const] = ACTIONS(3443), + [anon_sym_BANG] = ACTIONS(3443), + [anon_sym_else] = ACTIONS(3443), + [anon_sym_if] = ACTIONS(3443), + [anon_sym_switch] = ACTIONS(3443), + [anon_sym_for] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3443), + [anon_sym_await] = ACTIONS(3443), + [anon_sym_while] = ACTIONS(3443), + [anon_sym_do] = ACTIONS(3443), + [anon_sym_try] = ACTIONS(3443), + [anon_sym_break] = ACTIONS(3443), + [anon_sym_continue] = ACTIONS(3443), + [anon_sym_debugger] = ACTIONS(3443), + [anon_sym_return] = ACTIONS(3443), + [anon_sym_throw] = ACTIONS(3443), + [anon_sym_SEMI] = ACTIONS(3443), + [anon_sym_case] = ACTIONS(3443), + [anon_sym_yield] = ACTIONS(3443), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LTtemplate_GT] = ACTIONS(3443), + [anon_sym_DQUOTE] = ACTIONS(3443), + [anon_sym_SQUOTE] = ACTIONS(3443), + [anon_sym_class] = ACTIONS(3443), + [anon_sym_async] = ACTIONS(3443), + [anon_sym_function] = ACTIONS(3443), + [anon_sym_new] = ACTIONS(3443), + [anon_sym_using] = ACTIONS(3443), + [anon_sym_PLUS] = ACTIONS(3443), + [anon_sym_DASH] = ACTIONS(3443), + [anon_sym_SLASH] = ACTIONS(3443), + [anon_sym_LT] = ACTIONS(3443), + [anon_sym_TILDE] = ACTIONS(3443), + [anon_sym_void] = ACTIONS(3443), + [anon_sym_delete] = ACTIONS(3443), + [anon_sym_PLUS_PLUS] = ACTIONS(3443), + [anon_sym_DASH_DASH] = ACTIONS(3443), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3443), + [sym_number] = ACTIONS(3443), + [sym_private_property_identifier] = ACTIONS(3443), + [sym_this] = ACTIONS(3443), + [sym_super] = ACTIONS(3443), + [sym_true] = ACTIONS(3443), + [sym_false] = ACTIONS(3443), + [sym_null] = ACTIONS(3443), + [sym_undefined] = ACTIONS(3443), + [anon_sym_AT] = ACTIONS(3443), + [anon_sym_static] = ACTIONS(3443), + [anon_sym_readonly] = ACTIONS(3443), + [anon_sym_get] = ACTIONS(3443), + [anon_sym_set] = ACTIONS(3443), + [anon_sym_declare] = ACTIONS(3443), + [anon_sym_public] = ACTIONS(3443), + [anon_sym_private] = ACTIONS(3443), + [anon_sym_protected] = ACTIONS(3443), + [anon_sym_override] = ACTIONS(3443), + [anon_sym_module] = ACTIONS(3443), + [anon_sym_any] = ACTIONS(3443), + [anon_sym_number] = ACTIONS(3443), + [anon_sym_boolean] = ACTIONS(3443), + [anon_sym_string] = ACTIONS(3443), + [anon_sym_symbol] = ACTIONS(3443), + [anon_sym_object] = ACTIONS(3443), + [anon_sym_abstract] = ACTIONS(3443), + [anon_sym_interface] = ACTIONS(3443), + [anon_sym_enum] = ACTIONS(3443), [sym_html_comment] = ACTIONS(5), }, - [1218] = { - [sym_comment] = STATE(1218), - [sym_identifier] = ACTIONS(3417), - [anon_sym_export] = ACTIONS(3417), - [anon_sym_default] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_namespace] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_RBRACE] = ACTIONS(3417), - [anon_sym_typeof] = ACTIONS(3417), - [anon_sym_import] = ACTIONS(3417), - [anon_sym_with] = ACTIONS(3417), - [anon_sym_var] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_const] = ACTIONS(3417), - [anon_sym_BANG] = ACTIONS(3417), - [anon_sym_else] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_switch] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_await] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_break] = ACTIONS(3417), - [anon_sym_continue] = ACTIONS(3417), - [anon_sym_debugger] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_throw] = ACTIONS(3417), - [anon_sym_SEMI] = ACTIONS(3417), - [anon_sym_case] = ACTIONS(3417), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LTtemplate_GT] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_SQUOTE] = ACTIONS(3417), - [anon_sym_class] = ACTIONS(3417), - [anon_sym_async] = ACTIONS(3417), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_using] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_void] = ACTIONS(3417), - [anon_sym_delete] = ACTIONS(3417), - [anon_sym_PLUS_PLUS] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3417), + [1208] = { + [sym_comment] = STATE(1208), + [sym_identifier] = ACTIONS(3445), + [anon_sym_export] = ACTIONS(3445), + [anon_sym_default] = ACTIONS(3445), + [anon_sym_type] = ACTIONS(3445), + [anon_sym_namespace] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3445), + [anon_sym_RBRACE] = ACTIONS(3445), + [anon_sym_typeof] = ACTIONS(3445), + [anon_sym_import] = ACTIONS(3445), + [anon_sym_with] = ACTIONS(3445), + [anon_sym_var] = ACTIONS(3445), + [anon_sym_let] = ACTIONS(3445), + [anon_sym_const] = ACTIONS(3445), + [anon_sym_BANG] = ACTIONS(3445), + [anon_sym_else] = ACTIONS(3445), + [anon_sym_if] = ACTIONS(3445), + [anon_sym_switch] = ACTIONS(3445), + [anon_sym_for] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_await] = ACTIONS(3445), + [anon_sym_while] = ACTIONS(3445), + [anon_sym_do] = ACTIONS(3445), + [anon_sym_try] = ACTIONS(3445), + [anon_sym_break] = ACTIONS(3445), + [anon_sym_continue] = ACTIONS(3445), + [anon_sym_debugger] = ACTIONS(3445), + [anon_sym_return] = ACTIONS(3445), + [anon_sym_throw] = ACTIONS(3445), + [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_case] = ACTIONS(3445), + [anon_sym_yield] = ACTIONS(3445), + [anon_sym_LBRACK] = ACTIONS(3445), + [anon_sym_LTtemplate_GT] = ACTIONS(3445), + [anon_sym_DQUOTE] = ACTIONS(3445), + [anon_sym_SQUOTE] = ACTIONS(3445), + [anon_sym_class] = ACTIONS(3445), + [anon_sym_async] = ACTIONS(3445), + [anon_sym_function] = ACTIONS(3445), + [anon_sym_new] = ACTIONS(3445), + [anon_sym_using] = ACTIONS(3445), + [anon_sym_PLUS] = ACTIONS(3445), + [anon_sym_DASH] = ACTIONS(3445), + [anon_sym_SLASH] = ACTIONS(3445), + [anon_sym_LT] = ACTIONS(3445), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_void] = ACTIONS(3445), + [anon_sym_delete] = ACTIONS(3445), + [anon_sym_PLUS_PLUS] = ACTIONS(3445), + [anon_sym_DASH_DASH] = ACTIONS(3445), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3417), - [sym_number] = ACTIONS(3417), - [sym_private_property_identifier] = ACTIONS(3417), - [sym_this] = ACTIONS(3417), - [sym_super] = ACTIONS(3417), - [sym_true] = ACTIONS(3417), - [sym_false] = ACTIONS(3417), - [sym_null] = ACTIONS(3417), - [sym_undefined] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(3417), - [anon_sym_static] = ACTIONS(3417), - [anon_sym_readonly] = ACTIONS(3417), - [anon_sym_get] = ACTIONS(3417), - [anon_sym_set] = ACTIONS(3417), - [anon_sym_declare] = ACTIONS(3417), - [anon_sym_public] = ACTIONS(3417), - [anon_sym_private] = ACTIONS(3417), - [anon_sym_protected] = ACTIONS(3417), - [anon_sym_override] = ACTIONS(3417), - [anon_sym_module] = ACTIONS(3417), - [anon_sym_any] = ACTIONS(3417), - [anon_sym_number] = ACTIONS(3417), - [anon_sym_boolean] = ACTIONS(3417), - [anon_sym_string] = ACTIONS(3417), - [anon_sym_symbol] = ACTIONS(3417), - [anon_sym_object] = ACTIONS(3417), - [anon_sym_abstract] = ACTIONS(3417), - [anon_sym_interface] = ACTIONS(3417), - [anon_sym_enum] = ACTIONS(3417), + [anon_sym_BQUOTE] = ACTIONS(3445), + [sym_number] = ACTIONS(3445), + [sym_private_property_identifier] = ACTIONS(3445), + [sym_this] = ACTIONS(3445), + [sym_super] = ACTIONS(3445), + [sym_true] = ACTIONS(3445), + [sym_false] = ACTIONS(3445), + [sym_null] = ACTIONS(3445), + [sym_undefined] = ACTIONS(3445), + [anon_sym_AT] = ACTIONS(3445), + [anon_sym_static] = ACTIONS(3445), + [anon_sym_readonly] = ACTIONS(3445), + [anon_sym_get] = ACTIONS(3445), + [anon_sym_set] = ACTIONS(3445), + [anon_sym_declare] = ACTIONS(3445), + [anon_sym_public] = ACTIONS(3445), + [anon_sym_private] = ACTIONS(3445), + [anon_sym_protected] = ACTIONS(3445), + [anon_sym_override] = ACTIONS(3445), + [anon_sym_module] = ACTIONS(3445), + [anon_sym_any] = ACTIONS(3445), + [anon_sym_number] = ACTIONS(3445), + [anon_sym_boolean] = ACTIONS(3445), + [anon_sym_string] = ACTIONS(3445), + [anon_sym_symbol] = ACTIONS(3445), + [anon_sym_object] = ACTIONS(3445), + [anon_sym_abstract] = ACTIONS(3445), + [anon_sym_interface] = ACTIONS(3445), + [anon_sym_enum] = ACTIONS(3445), [sym_html_comment] = ACTIONS(5), }, - [1219] = { - [sym_comment] = STATE(1219), - [sym_identifier] = ACTIONS(3409), - [anon_sym_export] = ACTIONS(3409), - [anon_sym_default] = ACTIONS(3409), - [anon_sym_type] = ACTIONS(3409), - [anon_sym_namespace] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_typeof] = ACTIONS(3409), - [anon_sym_import] = ACTIONS(3409), - [anon_sym_with] = ACTIONS(3409), - [anon_sym_var] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_const] = ACTIONS(3409), - [anon_sym_BANG] = ACTIONS(3409), - [anon_sym_else] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_switch] = ACTIONS(3409), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_await] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_break] = ACTIONS(3409), - [anon_sym_continue] = ACTIONS(3409), - [anon_sym_debugger] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_throw] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_case] = ACTIONS(3409), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LTtemplate_GT] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_SQUOTE] = ACTIONS(3409), - [anon_sym_class] = ACTIONS(3409), - [anon_sym_async] = ACTIONS(3409), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_using] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_SLASH] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_void] = ACTIONS(3409), - [anon_sym_delete] = ACTIONS(3409), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3409), - [sym_number] = ACTIONS(3409), - [sym_private_property_identifier] = ACTIONS(3409), - [sym_this] = ACTIONS(3409), - [sym_super] = ACTIONS(3409), - [sym_true] = ACTIONS(3409), - [sym_false] = ACTIONS(3409), - [sym_null] = ACTIONS(3409), - [sym_undefined] = ACTIONS(3409), - [anon_sym_AT] = ACTIONS(3409), - [anon_sym_static] = ACTIONS(3409), - [anon_sym_readonly] = ACTIONS(3409), - [anon_sym_get] = ACTIONS(3409), - [anon_sym_set] = ACTIONS(3409), - [anon_sym_declare] = ACTIONS(3409), - [anon_sym_public] = ACTIONS(3409), - [anon_sym_private] = ACTIONS(3409), - [anon_sym_protected] = ACTIONS(3409), - [anon_sym_override] = ACTIONS(3409), - [anon_sym_module] = ACTIONS(3409), - [anon_sym_any] = ACTIONS(3409), - [anon_sym_number] = ACTIONS(3409), - [anon_sym_boolean] = ACTIONS(3409), - [anon_sym_string] = ACTIONS(3409), - [anon_sym_symbol] = ACTIONS(3409), - [anon_sym_object] = ACTIONS(3409), - [anon_sym_abstract] = ACTIONS(3409), - [anon_sym_interface] = ACTIONS(3409), - [anon_sym_enum] = ACTIONS(3409), + [1209] = { + [sym_comment] = STATE(1209), + [sym_identifier] = ACTIONS(3447), + [anon_sym_export] = ACTIONS(3447), + [anon_sym_default] = ACTIONS(3447), + [anon_sym_type] = ACTIONS(3447), + [anon_sym_namespace] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_RBRACE] = ACTIONS(3447), + [anon_sym_typeof] = ACTIONS(3447), + [anon_sym_import] = ACTIONS(3447), + [anon_sym_with] = ACTIONS(3447), + [anon_sym_var] = ACTIONS(3447), + [anon_sym_let] = ACTIONS(3447), + [anon_sym_const] = ACTIONS(3447), + [anon_sym_BANG] = ACTIONS(3447), + [anon_sym_else] = ACTIONS(3447), + [anon_sym_if] = ACTIONS(3447), + [anon_sym_switch] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3447), + [anon_sym_LPAREN] = ACTIONS(3447), + [anon_sym_await] = ACTIONS(3447), + [anon_sym_while] = ACTIONS(3447), + [anon_sym_do] = ACTIONS(3447), + [anon_sym_try] = ACTIONS(3447), + [anon_sym_break] = ACTIONS(3447), + [anon_sym_continue] = ACTIONS(3447), + [anon_sym_debugger] = ACTIONS(3447), + [anon_sym_return] = ACTIONS(3447), + [anon_sym_throw] = ACTIONS(3447), + [anon_sym_SEMI] = ACTIONS(3447), + [anon_sym_case] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3447), + [anon_sym_LBRACK] = ACTIONS(3447), + [anon_sym_LTtemplate_GT] = ACTIONS(3447), + [anon_sym_DQUOTE] = ACTIONS(3447), + [anon_sym_SQUOTE] = ACTIONS(3447), + [anon_sym_class] = ACTIONS(3447), + [anon_sym_async] = ACTIONS(3447), + [anon_sym_function] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3447), + [anon_sym_using] = ACTIONS(3447), + [anon_sym_PLUS] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3447), + [anon_sym_SLASH] = ACTIONS(3447), + [anon_sym_LT] = ACTIONS(3447), + [anon_sym_TILDE] = ACTIONS(3447), + [anon_sym_void] = ACTIONS(3447), + [anon_sym_delete] = ACTIONS(3447), + [anon_sym_PLUS_PLUS] = ACTIONS(3447), + [anon_sym_DASH_DASH] = ACTIONS(3447), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3447), + [sym_number] = ACTIONS(3447), + [sym_private_property_identifier] = ACTIONS(3447), + [sym_this] = ACTIONS(3447), + [sym_super] = ACTIONS(3447), + [sym_true] = ACTIONS(3447), + [sym_false] = ACTIONS(3447), + [sym_null] = ACTIONS(3447), + [sym_undefined] = ACTIONS(3447), + [anon_sym_AT] = ACTIONS(3447), + [anon_sym_static] = ACTIONS(3447), + [anon_sym_readonly] = ACTIONS(3447), + [anon_sym_get] = ACTIONS(3447), + [anon_sym_set] = ACTIONS(3447), + [anon_sym_declare] = ACTIONS(3447), + [anon_sym_public] = ACTIONS(3447), + [anon_sym_private] = ACTIONS(3447), + [anon_sym_protected] = ACTIONS(3447), + [anon_sym_override] = ACTIONS(3447), + [anon_sym_module] = ACTIONS(3447), + [anon_sym_any] = ACTIONS(3447), + [anon_sym_number] = ACTIONS(3447), + [anon_sym_boolean] = ACTIONS(3447), + [anon_sym_string] = ACTIONS(3447), + [anon_sym_symbol] = ACTIONS(3447), + [anon_sym_object] = ACTIONS(3447), + [anon_sym_abstract] = ACTIONS(3447), + [anon_sym_interface] = ACTIONS(3447), + [anon_sym_enum] = ACTIONS(3447), [sym_html_comment] = ACTIONS(5), }, - [1220] = { - [sym_comment] = STATE(1220), - [sym_identifier] = ACTIONS(3419), - [anon_sym_export] = ACTIONS(3419), - [anon_sym_default] = ACTIONS(3419), - [anon_sym_type] = ACTIONS(3419), - [anon_sym_namespace] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_typeof] = ACTIONS(3419), - [anon_sym_import] = ACTIONS(3419), - [anon_sym_with] = ACTIONS(3419), - [anon_sym_var] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_const] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3419), - [anon_sym_else] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_switch] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_await] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_break] = ACTIONS(3419), - [anon_sym_continue] = ACTIONS(3419), - [anon_sym_debugger] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_throw] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_case] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LTtemplate_GT] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [anon_sym_class] = ACTIONS(3419), - [anon_sym_async] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_using] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3419), - [anon_sym_void] = ACTIONS(3419), - [anon_sym_delete] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3419), - [anon_sym_DASH_DASH] = ACTIONS(3419), + [1210] = { + [sym_comment] = STATE(1210), + [sym_identifier] = ACTIONS(3449), + [anon_sym_export] = ACTIONS(3449), + [anon_sym_default] = ACTIONS(3449), + [anon_sym_type] = ACTIONS(3449), + [anon_sym_namespace] = ACTIONS(3449), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_RBRACE] = ACTIONS(3449), + [anon_sym_typeof] = ACTIONS(3449), + [anon_sym_import] = ACTIONS(3449), + [anon_sym_with] = ACTIONS(3449), + [anon_sym_var] = ACTIONS(3449), + [anon_sym_let] = ACTIONS(3449), + [anon_sym_const] = ACTIONS(3449), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_else] = ACTIONS(3449), + [anon_sym_if] = ACTIONS(3449), + [anon_sym_switch] = ACTIONS(3449), + [anon_sym_for] = ACTIONS(3449), + [anon_sym_LPAREN] = ACTIONS(3449), + [anon_sym_await] = ACTIONS(3449), + [anon_sym_while] = ACTIONS(3449), + [anon_sym_do] = ACTIONS(3449), + [anon_sym_try] = ACTIONS(3449), + [anon_sym_break] = ACTIONS(3449), + [anon_sym_continue] = ACTIONS(3449), + [anon_sym_debugger] = ACTIONS(3449), + [anon_sym_return] = ACTIONS(3449), + [anon_sym_throw] = ACTIONS(3449), + [anon_sym_SEMI] = ACTIONS(3449), + [anon_sym_case] = ACTIONS(3449), + [anon_sym_yield] = ACTIONS(3449), + [anon_sym_LBRACK] = ACTIONS(3449), + [anon_sym_LTtemplate_GT] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [anon_sym_SQUOTE] = ACTIONS(3449), + [anon_sym_class] = ACTIONS(3449), + [anon_sym_async] = ACTIONS(3449), + [anon_sym_function] = ACTIONS(3449), + [anon_sym_new] = ACTIONS(3449), + [anon_sym_using] = ACTIONS(3449), + [anon_sym_PLUS] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_SLASH] = ACTIONS(3449), + [anon_sym_LT] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3449), + [anon_sym_void] = ACTIONS(3449), + [anon_sym_delete] = ACTIONS(3449), + [anon_sym_PLUS_PLUS] = ACTIONS(3449), + [anon_sym_DASH_DASH] = ACTIONS(3449), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3419), - [sym_number] = ACTIONS(3419), - [sym_private_property_identifier] = ACTIONS(3419), - [sym_this] = ACTIONS(3419), - [sym_super] = ACTIONS(3419), - [sym_true] = ACTIONS(3419), - [sym_false] = ACTIONS(3419), - [sym_null] = ACTIONS(3419), - [sym_undefined] = ACTIONS(3419), - [anon_sym_AT] = ACTIONS(3419), - [anon_sym_static] = ACTIONS(3419), - [anon_sym_readonly] = ACTIONS(3419), - [anon_sym_get] = ACTIONS(3419), - [anon_sym_set] = ACTIONS(3419), - [anon_sym_declare] = ACTIONS(3419), - [anon_sym_public] = ACTIONS(3419), - [anon_sym_private] = ACTIONS(3419), - [anon_sym_protected] = ACTIONS(3419), - [anon_sym_override] = ACTIONS(3419), - [anon_sym_module] = ACTIONS(3419), - [anon_sym_any] = ACTIONS(3419), - [anon_sym_number] = ACTIONS(3419), - [anon_sym_boolean] = ACTIONS(3419), - [anon_sym_string] = ACTIONS(3419), - [anon_sym_symbol] = ACTIONS(3419), - [anon_sym_object] = ACTIONS(3419), - [anon_sym_abstract] = ACTIONS(3419), - [anon_sym_interface] = ACTIONS(3419), - [anon_sym_enum] = ACTIONS(3419), + [anon_sym_BQUOTE] = ACTIONS(3449), + [sym_number] = ACTIONS(3449), + [sym_private_property_identifier] = ACTIONS(3449), + [sym_this] = ACTIONS(3449), + [sym_super] = ACTIONS(3449), + [sym_true] = ACTIONS(3449), + [sym_false] = ACTIONS(3449), + [sym_null] = ACTIONS(3449), + [sym_undefined] = ACTIONS(3449), + [anon_sym_AT] = ACTIONS(3449), + [anon_sym_static] = ACTIONS(3449), + [anon_sym_readonly] = ACTIONS(3449), + [anon_sym_get] = ACTIONS(3449), + [anon_sym_set] = ACTIONS(3449), + [anon_sym_declare] = ACTIONS(3449), + [anon_sym_public] = ACTIONS(3449), + [anon_sym_private] = ACTIONS(3449), + [anon_sym_protected] = ACTIONS(3449), + [anon_sym_override] = ACTIONS(3449), + [anon_sym_module] = ACTIONS(3449), + [anon_sym_any] = ACTIONS(3449), + [anon_sym_number] = ACTIONS(3449), + [anon_sym_boolean] = ACTIONS(3449), + [anon_sym_string] = ACTIONS(3449), + [anon_sym_symbol] = ACTIONS(3449), + [anon_sym_object] = ACTIONS(3449), + [anon_sym_abstract] = ACTIONS(3449), + [anon_sym_interface] = ACTIONS(3449), + [anon_sym_enum] = ACTIONS(3449), [sym_html_comment] = ACTIONS(5), }, - [1221] = { - [sym_comment] = STATE(1221), - [ts_builtin_sym_end] = ACTIONS(2264), - [sym_identifier] = ACTIONS(2262), - [anon_sym_export] = ACTIONS(2262), - [anon_sym_type] = ACTIONS(2262), - [anon_sym_namespace] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_import] = ACTIONS(2262), - [anon_sym_with] = ACTIONS(2262), - [anon_sym_var] = ACTIONS(2262), - [anon_sym_let] = ACTIONS(2262), - [anon_sym_const] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_else] = ACTIONS(2262), - [anon_sym_if] = ACTIONS(2262), - [anon_sym_switch] = ACTIONS(2262), - [anon_sym_for] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_await] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2262), - [anon_sym_do] = ACTIONS(2262), - [anon_sym_try] = ACTIONS(2262), - [anon_sym_break] = ACTIONS(2262), - [anon_sym_continue] = ACTIONS(2262), - [anon_sym_debugger] = ACTIONS(2262), - [anon_sym_return] = ACTIONS(2262), - [anon_sym_throw] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_yield] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_LTtemplate_GT] = ACTIONS(2262), - [anon_sym_DQUOTE] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(2262), - [anon_sym_class] = ACTIONS(2262), - [anon_sym_async] = ACTIONS(2262), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_new] = ACTIONS(2262), - [anon_sym_using] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_SLASH] = ACTIONS(2262), - [anon_sym_LT] = ACTIONS(2262), - [anon_sym_TILDE] = ACTIONS(2262), - [anon_sym_void] = ACTIONS(2262), - [anon_sym_delete] = ACTIONS(2262), - [anon_sym_PLUS_PLUS] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(2262), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2262), - [sym_number] = ACTIONS(2262), - [sym_private_property_identifier] = ACTIONS(2262), - [sym_this] = ACTIONS(2262), - [sym_super] = ACTIONS(2262), - [sym_true] = ACTIONS(2262), - [sym_false] = ACTIONS(2262), - [sym_null] = ACTIONS(2262), - [sym_undefined] = ACTIONS(2262), - [anon_sym_AT] = ACTIONS(2262), - [anon_sym_static] = ACTIONS(2262), - [anon_sym_readonly] = ACTIONS(2262), - [anon_sym_get] = ACTIONS(2262), - [anon_sym_set] = ACTIONS(2262), - [anon_sym_declare] = ACTIONS(2262), - [anon_sym_public] = ACTIONS(2262), - [anon_sym_private] = ACTIONS(2262), - [anon_sym_protected] = ACTIONS(2262), - [anon_sym_override] = ACTIONS(2262), - [anon_sym_module] = ACTIONS(2262), - [anon_sym_any] = ACTIONS(2262), - [anon_sym_number] = ACTIONS(2262), - [anon_sym_boolean] = ACTIONS(2262), - [anon_sym_string] = ACTIONS(2262), - [anon_sym_symbol] = ACTIONS(2262), - [anon_sym_object] = ACTIONS(2262), - [anon_sym_abstract] = ACTIONS(2262), - [anon_sym_interface] = ACTIONS(2262), - [anon_sym_enum] = ACTIONS(2262), - [sym__automatic_semicolon] = ACTIONS(2264), + [1211] = { + [sym_comment] = STATE(1211), + [sym_identifier] = ACTIONS(3451), + [anon_sym_export] = ACTIONS(3451), + [anon_sym_default] = ACTIONS(3451), + [anon_sym_type] = ACTIONS(3451), + [anon_sym_namespace] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_RBRACE] = ACTIONS(3451), + [anon_sym_typeof] = ACTIONS(3451), + [anon_sym_import] = ACTIONS(3451), + [anon_sym_with] = ACTIONS(3451), + [anon_sym_var] = ACTIONS(3451), + [anon_sym_let] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3451), + [anon_sym_BANG] = ACTIONS(3451), + [anon_sym_else] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_switch] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_await] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_break] = ACTIONS(3451), + [anon_sym_continue] = ACTIONS(3451), + [anon_sym_debugger] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_throw] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3451), + [anon_sym_case] = ACTIONS(3451), + [anon_sym_yield] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_LTtemplate_GT] = ACTIONS(3451), + [anon_sym_DQUOTE] = ACTIONS(3451), + [anon_sym_SQUOTE] = ACTIONS(3451), + [anon_sym_class] = ACTIONS(3451), + [anon_sym_async] = ACTIONS(3451), + [anon_sym_function] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_using] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_SLASH] = ACTIONS(3451), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_TILDE] = ACTIONS(3451), + [anon_sym_void] = ACTIONS(3451), + [anon_sym_delete] = ACTIONS(3451), + [anon_sym_PLUS_PLUS] = ACTIONS(3451), + [anon_sym_DASH_DASH] = ACTIONS(3451), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3451), + [sym_number] = ACTIONS(3451), + [sym_private_property_identifier] = ACTIONS(3451), + [sym_this] = ACTIONS(3451), + [sym_super] = ACTIONS(3451), + [sym_true] = ACTIONS(3451), + [sym_false] = ACTIONS(3451), + [sym_null] = ACTIONS(3451), + [sym_undefined] = ACTIONS(3451), + [anon_sym_AT] = ACTIONS(3451), + [anon_sym_static] = ACTIONS(3451), + [anon_sym_readonly] = ACTIONS(3451), + [anon_sym_get] = ACTIONS(3451), + [anon_sym_set] = ACTIONS(3451), + [anon_sym_declare] = ACTIONS(3451), + [anon_sym_public] = ACTIONS(3451), + [anon_sym_private] = ACTIONS(3451), + [anon_sym_protected] = ACTIONS(3451), + [anon_sym_override] = ACTIONS(3451), + [anon_sym_module] = ACTIONS(3451), + [anon_sym_any] = ACTIONS(3451), + [anon_sym_number] = ACTIONS(3451), + [anon_sym_boolean] = ACTIONS(3451), + [anon_sym_string] = ACTIONS(3451), + [anon_sym_symbol] = ACTIONS(3451), + [anon_sym_object] = ACTIONS(3451), + [anon_sym_abstract] = ACTIONS(3451), + [anon_sym_interface] = ACTIONS(3451), + [anon_sym_enum] = ACTIONS(3451), [sym_html_comment] = ACTIONS(5), }, - [1222] = { - [sym_comment] = STATE(1222), - [sym_identifier] = ACTIONS(3421), - [anon_sym_export] = ACTIONS(3421), - [anon_sym_default] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_namespace] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_typeof] = ACTIONS(3421), - [anon_sym_import] = ACTIONS(3421), - [anon_sym_with] = ACTIONS(3421), - [anon_sym_var] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_const] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3421), - [anon_sym_else] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_switch] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_await] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_break] = ACTIONS(3421), - [anon_sym_continue] = ACTIONS(3421), - [anon_sym_debugger] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_throw] = ACTIONS(3421), - [anon_sym_SEMI] = ACTIONS(3421), - [anon_sym_case] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LTtemplate_GT] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_SQUOTE] = ACTIONS(3421), - [anon_sym_class] = ACTIONS(3421), - [anon_sym_async] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_using] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_SLASH] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_void] = ACTIONS(3421), - [anon_sym_delete] = ACTIONS(3421), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3421), - [sym_number] = ACTIONS(3421), - [sym_private_property_identifier] = ACTIONS(3421), - [sym_this] = ACTIONS(3421), - [sym_super] = ACTIONS(3421), - [sym_true] = ACTIONS(3421), - [sym_false] = ACTIONS(3421), - [sym_null] = ACTIONS(3421), - [sym_undefined] = ACTIONS(3421), - [anon_sym_AT] = ACTIONS(3421), - [anon_sym_static] = ACTIONS(3421), - [anon_sym_readonly] = ACTIONS(3421), - [anon_sym_get] = ACTIONS(3421), - [anon_sym_set] = ACTIONS(3421), - [anon_sym_declare] = ACTIONS(3421), - [anon_sym_public] = ACTIONS(3421), - [anon_sym_private] = ACTIONS(3421), - [anon_sym_protected] = ACTIONS(3421), - [anon_sym_override] = ACTIONS(3421), - [anon_sym_module] = ACTIONS(3421), - [anon_sym_any] = ACTIONS(3421), - [anon_sym_number] = ACTIONS(3421), - [anon_sym_boolean] = ACTIONS(3421), - [anon_sym_string] = ACTIONS(3421), - [anon_sym_symbol] = ACTIONS(3421), - [anon_sym_object] = ACTIONS(3421), - [anon_sym_abstract] = ACTIONS(3421), - [anon_sym_interface] = ACTIONS(3421), - [anon_sym_enum] = ACTIONS(3421), - [sym_html_comment] = ACTIONS(5), - }, - [1223] = { - [sym_comment] = STATE(1223), - [sym_identifier] = ACTIONS(3423), - [anon_sym_export] = ACTIONS(3423), - [anon_sym_default] = ACTIONS(3423), - [anon_sym_type] = ACTIONS(3423), - [anon_sym_namespace] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_RBRACE] = ACTIONS(3423), - [anon_sym_typeof] = ACTIONS(3423), - [anon_sym_import] = ACTIONS(3423), - [anon_sym_with] = ACTIONS(3423), - [anon_sym_var] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_BANG] = ACTIONS(3423), - [anon_sym_else] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_switch] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_await] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_break] = ACTIONS(3423), - [anon_sym_continue] = ACTIONS(3423), - [anon_sym_debugger] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_throw] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3423), - [anon_sym_case] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LTtemplate_GT] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_SQUOTE] = ACTIONS(3423), - [anon_sym_class] = ACTIONS(3423), - [anon_sym_async] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_using] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3423), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_TILDE] = ACTIONS(3423), - [anon_sym_void] = ACTIONS(3423), - [anon_sym_delete] = ACTIONS(3423), - [anon_sym_PLUS_PLUS] = ACTIONS(3423), - [anon_sym_DASH_DASH] = ACTIONS(3423), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3423), - [sym_number] = ACTIONS(3423), - [sym_private_property_identifier] = ACTIONS(3423), - [sym_this] = ACTIONS(3423), - [sym_super] = ACTIONS(3423), - [sym_true] = ACTIONS(3423), - [sym_false] = ACTIONS(3423), - [sym_null] = ACTIONS(3423), - [sym_undefined] = ACTIONS(3423), - [anon_sym_AT] = ACTIONS(3423), - [anon_sym_static] = ACTIONS(3423), - [anon_sym_readonly] = ACTIONS(3423), - [anon_sym_get] = ACTIONS(3423), - [anon_sym_set] = ACTIONS(3423), - [anon_sym_declare] = ACTIONS(3423), - [anon_sym_public] = ACTIONS(3423), - [anon_sym_private] = ACTIONS(3423), - [anon_sym_protected] = ACTIONS(3423), - [anon_sym_override] = ACTIONS(3423), - [anon_sym_module] = ACTIONS(3423), - [anon_sym_any] = ACTIONS(3423), - [anon_sym_number] = ACTIONS(3423), - [anon_sym_boolean] = ACTIONS(3423), - [anon_sym_string] = ACTIONS(3423), - [anon_sym_symbol] = ACTIONS(3423), - [anon_sym_object] = ACTIONS(3423), - [anon_sym_abstract] = ACTIONS(3423), - [anon_sym_interface] = ACTIONS(3423), - [anon_sym_enum] = ACTIONS(3423), - [sym_html_comment] = ACTIONS(5), - }, - [1224] = { - [sym_comment] = STATE(1224), - [sym_identifier] = ACTIONS(3425), - [anon_sym_export] = ACTIONS(3425), - [anon_sym_default] = ACTIONS(3425), - [anon_sym_type] = ACTIONS(3425), - [anon_sym_namespace] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_RBRACE] = ACTIONS(3425), - [anon_sym_typeof] = ACTIONS(3425), - [anon_sym_import] = ACTIONS(3425), - [anon_sym_with] = ACTIONS(3425), - [anon_sym_var] = ACTIONS(3425), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_const] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_else] = ACTIONS(3425), - [anon_sym_if] = ACTIONS(3425), - [anon_sym_switch] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_await] = ACTIONS(3425), - [anon_sym_while] = ACTIONS(3425), - [anon_sym_do] = ACTIONS(3425), - [anon_sym_try] = ACTIONS(3425), - [anon_sym_break] = ACTIONS(3425), - [anon_sym_continue] = ACTIONS(3425), - [anon_sym_debugger] = ACTIONS(3425), - [anon_sym_return] = ACTIONS(3425), - [anon_sym_throw] = ACTIONS(3425), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_case] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_LTtemplate_GT] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(3425), - [anon_sym_SQUOTE] = ACTIONS(3425), - [anon_sym_class] = ACTIONS(3425), - [anon_sym_async] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3425), - [anon_sym_using] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_SLASH] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_void] = ACTIONS(3425), - [anon_sym_delete] = ACTIONS(3425), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_DASH_DASH] = ACTIONS(3425), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3425), - [sym_number] = ACTIONS(3425), - [sym_private_property_identifier] = ACTIONS(3425), - [sym_this] = ACTIONS(3425), - [sym_super] = ACTIONS(3425), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [sym_null] = ACTIONS(3425), - [sym_undefined] = ACTIONS(3425), - [anon_sym_AT] = ACTIONS(3425), - [anon_sym_static] = ACTIONS(3425), - [anon_sym_readonly] = ACTIONS(3425), - [anon_sym_get] = ACTIONS(3425), - [anon_sym_set] = ACTIONS(3425), - [anon_sym_declare] = ACTIONS(3425), - [anon_sym_public] = ACTIONS(3425), - [anon_sym_private] = ACTIONS(3425), - [anon_sym_protected] = ACTIONS(3425), - [anon_sym_override] = ACTIONS(3425), - [anon_sym_module] = ACTIONS(3425), - [anon_sym_any] = ACTIONS(3425), - [anon_sym_number] = ACTIONS(3425), - [anon_sym_boolean] = ACTIONS(3425), - [anon_sym_string] = ACTIONS(3425), - [anon_sym_symbol] = ACTIONS(3425), - [anon_sym_object] = ACTIONS(3425), - [anon_sym_abstract] = ACTIONS(3425), - [anon_sym_interface] = ACTIONS(3425), - [anon_sym_enum] = ACTIONS(3425), - [sym_html_comment] = ACTIONS(5), - }, - [1225] = { - [sym_comment] = STATE(1225), - [sym_identifier] = ACTIONS(3427), - [anon_sym_export] = ACTIONS(3427), - [anon_sym_default] = ACTIONS(3427), - [anon_sym_type] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_RBRACE] = ACTIONS(3427), - [anon_sym_typeof] = ACTIONS(3427), - [anon_sym_import] = ACTIONS(3427), - [anon_sym_with] = ACTIONS(3427), - [anon_sym_var] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_else] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_switch] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_await] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_debugger] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_throw] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3427), - [anon_sym_case] = ACTIONS(3427), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LTtemplate_GT] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_SQUOTE] = ACTIONS(3427), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_async] = ACTIONS(3427), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_SLASH] = ACTIONS(3427), - [anon_sym_LT] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3427), - [anon_sym_void] = ACTIONS(3427), - [anon_sym_delete] = ACTIONS(3427), - [anon_sym_PLUS_PLUS] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3427), + [1212] = { + [sym_comment] = STATE(1212), + [sym_identifier] = ACTIONS(3453), + [anon_sym_export] = ACTIONS(3453), + [anon_sym_default] = ACTIONS(3453), + [anon_sym_type] = ACTIONS(3453), + [anon_sym_namespace] = ACTIONS(3453), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_RBRACE] = ACTIONS(3453), + [anon_sym_typeof] = ACTIONS(3453), + [anon_sym_import] = ACTIONS(3453), + [anon_sym_with] = ACTIONS(3453), + [anon_sym_var] = ACTIONS(3453), + [anon_sym_let] = ACTIONS(3453), + [anon_sym_const] = ACTIONS(3453), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_else] = ACTIONS(3453), + [anon_sym_if] = ACTIONS(3453), + [anon_sym_switch] = ACTIONS(3453), + [anon_sym_for] = ACTIONS(3453), + [anon_sym_LPAREN] = ACTIONS(3453), + [anon_sym_await] = ACTIONS(3453), + [anon_sym_while] = ACTIONS(3453), + [anon_sym_do] = ACTIONS(3453), + [anon_sym_try] = ACTIONS(3453), + [anon_sym_break] = ACTIONS(3453), + [anon_sym_continue] = ACTIONS(3453), + [anon_sym_debugger] = ACTIONS(3453), + [anon_sym_return] = ACTIONS(3453), + [anon_sym_throw] = ACTIONS(3453), + [anon_sym_SEMI] = ACTIONS(3453), + [anon_sym_case] = ACTIONS(3453), + [anon_sym_yield] = ACTIONS(3453), + [anon_sym_LBRACK] = ACTIONS(3453), + [anon_sym_LTtemplate_GT] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [anon_sym_SQUOTE] = ACTIONS(3453), + [anon_sym_class] = ACTIONS(3453), + [anon_sym_async] = ACTIONS(3453), + [anon_sym_function] = ACTIONS(3453), + [anon_sym_new] = ACTIONS(3453), + [anon_sym_using] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3453), + [anon_sym_SLASH] = ACTIONS(3453), + [anon_sym_LT] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [anon_sym_void] = ACTIONS(3453), + [anon_sym_delete] = ACTIONS(3453), + [anon_sym_PLUS_PLUS] = ACTIONS(3453), + [anon_sym_DASH_DASH] = ACTIONS(3453), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3427), - [sym_number] = ACTIONS(3427), - [sym_private_property_identifier] = ACTIONS(3427), - [sym_this] = ACTIONS(3427), - [sym_super] = ACTIONS(3427), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [sym_null] = ACTIONS(3427), - [sym_undefined] = ACTIONS(3427), - [anon_sym_AT] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_readonly] = ACTIONS(3427), - [anon_sym_get] = ACTIONS(3427), - [anon_sym_set] = ACTIONS(3427), - [anon_sym_declare] = ACTIONS(3427), - [anon_sym_public] = ACTIONS(3427), - [anon_sym_private] = ACTIONS(3427), - [anon_sym_protected] = ACTIONS(3427), - [anon_sym_override] = ACTIONS(3427), - [anon_sym_module] = ACTIONS(3427), - [anon_sym_any] = ACTIONS(3427), - [anon_sym_number] = ACTIONS(3427), - [anon_sym_boolean] = ACTIONS(3427), - [anon_sym_string] = ACTIONS(3427), - [anon_sym_symbol] = ACTIONS(3427), - [anon_sym_object] = ACTIONS(3427), - [anon_sym_abstract] = ACTIONS(3427), - [anon_sym_interface] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), + [anon_sym_BQUOTE] = ACTIONS(3453), + [sym_number] = ACTIONS(3453), + [sym_private_property_identifier] = ACTIONS(3453), + [sym_this] = ACTIONS(3453), + [sym_super] = ACTIONS(3453), + [sym_true] = ACTIONS(3453), + [sym_false] = ACTIONS(3453), + [sym_null] = ACTIONS(3453), + [sym_undefined] = ACTIONS(3453), + [anon_sym_AT] = ACTIONS(3453), + [anon_sym_static] = ACTIONS(3453), + [anon_sym_readonly] = ACTIONS(3453), + [anon_sym_get] = ACTIONS(3453), + [anon_sym_set] = ACTIONS(3453), + [anon_sym_declare] = ACTIONS(3453), + [anon_sym_public] = ACTIONS(3453), + [anon_sym_private] = ACTIONS(3453), + [anon_sym_protected] = ACTIONS(3453), + [anon_sym_override] = ACTIONS(3453), + [anon_sym_module] = ACTIONS(3453), + [anon_sym_any] = ACTIONS(3453), + [anon_sym_number] = ACTIONS(3453), + [anon_sym_boolean] = ACTIONS(3453), + [anon_sym_string] = ACTIONS(3453), + [anon_sym_symbol] = ACTIONS(3453), + [anon_sym_object] = ACTIONS(3453), + [anon_sym_abstract] = ACTIONS(3453), + [anon_sym_interface] = ACTIONS(3453), + [anon_sym_enum] = ACTIONS(3453), [sym_html_comment] = ACTIONS(5), }, - [1226] = { - [sym_comment] = STATE(1226), - [sym_identifier] = ACTIONS(3429), - [anon_sym_export] = ACTIONS(3429), - [anon_sym_default] = ACTIONS(3429), - [anon_sym_type] = ACTIONS(3429), - [anon_sym_namespace] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_typeof] = ACTIONS(3429), - [anon_sym_import] = ACTIONS(3429), - [anon_sym_with] = ACTIONS(3429), - [anon_sym_var] = ACTIONS(3429), - [anon_sym_let] = ACTIONS(3429), - [anon_sym_const] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_else] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(3429), - [anon_sym_switch] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_await] = ACTIONS(3429), - [anon_sym_while] = ACTIONS(3429), - [anon_sym_do] = ACTIONS(3429), - [anon_sym_try] = ACTIONS(3429), - [anon_sym_break] = ACTIONS(3429), - [anon_sym_continue] = ACTIONS(3429), - [anon_sym_debugger] = ACTIONS(3429), - [anon_sym_return] = ACTIONS(3429), - [anon_sym_throw] = ACTIONS(3429), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym_case] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LTtemplate_GT] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [anon_sym_SQUOTE] = ACTIONS(3429), - [anon_sym_class] = ACTIONS(3429), - [anon_sym_async] = ACTIONS(3429), - [anon_sym_function] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3429), - [anon_sym_using] = ACTIONS(3429), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_SLASH] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_void] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), + [1213] = { + [sym_comment] = STATE(1213), + [sym_identifier] = ACTIONS(3455), + [anon_sym_export] = ACTIONS(3455), + [anon_sym_default] = ACTIONS(3455), + [anon_sym_type] = ACTIONS(3455), + [anon_sym_namespace] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3455), + [anon_sym_RBRACE] = ACTIONS(3455), + [anon_sym_typeof] = ACTIONS(3455), + [anon_sym_import] = ACTIONS(3455), + [anon_sym_with] = ACTIONS(3455), + [anon_sym_var] = ACTIONS(3455), + [anon_sym_let] = ACTIONS(3455), + [anon_sym_const] = ACTIONS(3455), + [anon_sym_BANG] = ACTIONS(3455), + [anon_sym_else] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_switch] = ACTIONS(3455), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_LPAREN] = ACTIONS(3455), + [anon_sym_await] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_break] = ACTIONS(3455), + [anon_sym_continue] = ACTIONS(3455), + [anon_sym_debugger] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_throw] = ACTIONS(3455), + [anon_sym_SEMI] = ACTIONS(3455), + [anon_sym_case] = ACTIONS(3455), + [anon_sym_yield] = ACTIONS(3455), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_LTtemplate_GT] = ACTIONS(3455), + [anon_sym_DQUOTE] = ACTIONS(3455), + [anon_sym_SQUOTE] = ACTIONS(3455), + [anon_sym_class] = ACTIONS(3455), + [anon_sym_async] = ACTIONS(3455), + [anon_sym_function] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_using] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_SLASH] = ACTIONS(3455), + [anon_sym_LT] = ACTIONS(3455), + [anon_sym_TILDE] = ACTIONS(3455), + [anon_sym_void] = ACTIONS(3455), + [anon_sym_delete] = ACTIONS(3455), + [anon_sym_PLUS_PLUS] = ACTIONS(3455), + [anon_sym_DASH_DASH] = ACTIONS(3455), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3429), - [sym_number] = ACTIONS(3429), - [sym_private_property_identifier] = ACTIONS(3429), - [sym_this] = ACTIONS(3429), - [sym_super] = ACTIONS(3429), - [sym_true] = ACTIONS(3429), - [sym_false] = ACTIONS(3429), - [sym_null] = ACTIONS(3429), - [sym_undefined] = ACTIONS(3429), - [anon_sym_AT] = ACTIONS(3429), - [anon_sym_static] = ACTIONS(3429), - [anon_sym_readonly] = ACTIONS(3429), - [anon_sym_get] = ACTIONS(3429), - [anon_sym_set] = ACTIONS(3429), - [anon_sym_declare] = ACTIONS(3429), - [anon_sym_public] = ACTIONS(3429), - [anon_sym_private] = ACTIONS(3429), - [anon_sym_protected] = ACTIONS(3429), - [anon_sym_override] = ACTIONS(3429), - [anon_sym_module] = ACTIONS(3429), - [anon_sym_any] = ACTIONS(3429), - [anon_sym_number] = ACTIONS(3429), - [anon_sym_boolean] = ACTIONS(3429), - [anon_sym_string] = ACTIONS(3429), - [anon_sym_symbol] = ACTIONS(3429), - [anon_sym_object] = ACTIONS(3429), - [anon_sym_abstract] = ACTIONS(3429), - [anon_sym_interface] = ACTIONS(3429), - [anon_sym_enum] = ACTIONS(3429), + [anon_sym_BQUOTE] = ACTIONS(3455), + [sym_number] = ACTIONS(3455), + [sym_private_property_identifier] = ACTIONS(3455), + [sym_this] = ACTIONS(3455), + [sym_super] = ACTIONS(3455), + [sym_true] = ACTIONS(3455), + [sym_false] = ACTIONS(3455), + [sym_null] = ACTIONS(3455), + [sym_undefined] = ACTIONS(3455), + [anon_sym_AT] = ACTIONS(3455), + [anon_sym_static] = ACTIONS(3455), + [anon_sym_readonly] = ACTIONS(3455), + [anon_sym_get] = ACTIONS(3455), + [anon_sym_set] = ACTIONS(3455), + [anon_sym_declare] = ACTIONS(3455), + [anon_sym_public] = ACTIONS(3455), + [anon_sym_private] = ACTIONS(3455), + [anon_sym_protected] = ACTIONS(3455), + [anon_sym_override] = ACTIONS(3455), + [anon_sym_module] = ACTIONS(3455), + [anon_sym_any] = ACTIONS(3455), + [anon_sym_number] = ACTIONS(3455), + [anon_sym_boolean] = ACTIONS(3455), + [anon_sym_string] = ACTIONS(3455), + [anon_sym_symbol] = ACTIONS(3455), + [anon_sym_object] = ACTIONS(3455), + [anon_sym_abstract] = ACTIONS(3455), + [anon_sym_interface] = ACTIONS(3455), + [anon_sym_enum] = ACTIONS(3455), [sym_html_comment] = ACTIONS(5), }, - [1227] = { - [sym_else_clause] = STATE(1510), - [sym_comment] = STATE(1227), - [ts_builtin_sym_end] = ACTIONS(3297), + [1214] = { + [sym_comment] = STATE(1214), + [ts_builtin_sym_end] = ACTIONS(3457), [sym_identifier] = ACTIONS(3167), [anon_sym_export] = ACTIONS(3167), [anon_sym_type] = ACTIONS(3167), @@ -163171,7 +161809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3167), [anon_sym_const] = ACTIONS(3167), [anon_sym_BANG] = ACTIONS(3167), - [anon_sym_else] = ACTIONS(3431), + [anon_sym_else] = ACTIONS(3167), [anon_sym_if] = ACTIONS(3167), [anon_sym_switch] = ACTIONS(3167), [anon_sym_for] = ACTIONS(3167), @@ -163186,6 +161824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3167), [anon_sym_throw] = ACTIONS(3167), [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_finally] = ACTIONS(3167), [anon_sym_yield] = ACTIONS(3167), [anon_sym_LBRACK] = ACTIONS(3167), [anon_sym_LTtemplate_GT] = ACTIONS(3167), @@ -163237,91 +161876,339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3167), [sym_html_comment] = ACTIONS(5), }, - [1228] = { - [sym_comment] = STATE(1228), - [sym_identifier] = ACTIONS(3433), - [anon_sym_export] = ACTIONS(3433), - [anon_sym_default] = ACTIONS(3433), - [anon_sym_type] = ACTIONS(3433), - [anon_sym_namespace] = ACTIONS(3433), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_RBRACE] = ACTIONS(3433), - [anon_sym_typeof] = ACTIONS(3433), - [anon_sym_import] = ACTIONS(3433), - [anon_sym_with] = ACTIONS(3433), - [anon_sym_var] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_const] = ACTIONS(3433), - [anon_sym_BANG] = ACTIONS(3433), - [anon_sym_else] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_switch] = ACTIONS(3433), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_await] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_break] = ACTIONS(3433), - [anon_sym_continue] = ACTIONS(3433), - [anon_sym_debugger] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_throw] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_case] = ACTIONS(3433), - [anon_sym_yield] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LTtemplate_GT] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [anon_sym_SQUOTE] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_async] = ACTIONS(3433), - [anon_sym_function] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_using] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_SLASH] = ACTIONS(3433), - [anon_sym_LT] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_void] = ACTIONS(3433), - [anon_sym_delete] = ACTIONS(3433), - [anon_sym_PLUS_PLUS] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3433), + [1215] = { + [sym_comment] = STATE(1215), + [sym_identifier] = ACTIONS(3459), + [anon_sym_export] = ACTIONS(3459), + [anon_sym_default] = ACTIONS(3459), + [anon_sym_type] = ACTIONS(3459), + [anon_sym_namespace] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_typeof] = ACTIONS(3459), + [anon_sym_import] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3459), + [anon_sym_let] = ACTIONS(3459), + [anon_sym_const] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3459), + [anon_sym_else] = ACTIONS(3459), + [anon_sym_if] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3459), + [anon_sym_for] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_await] = ACTIONS(3459), + [anon_sym_while] = ACTIONS(3459), + [anon_sym_do] = ACTIONS(3459), + [anon_sym_try] = ACTIONS(3459), + [anon_sym_break] = ACTIONS(3459), + [anon_sym_continue] = ACTIONS(3459), + [anon_sym_debugger] = ACTIONS(3459), + [anon_sym_return] = ACTIONS(3459), + [anon_sym_throw] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_case] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LTtemplate_GT] = ACTIONS(3459), + [anon_sym_DQUOTE] = ACTIONS(3459), + [anon_sym_SQUOTE] = ACTIONS(3459), + [anon_sym_class] = ACTIONS(3459), + [anon_sym_async] = ACTIONS(3459), + [anon_sym_function] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3459), + [anon_sym_using] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3459), + [anon_sym_DASH] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_void] = ACTIONS(3459), + [anon_sym_delete] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3433), - [sym_number] = ACTIONS(3433), - [sym_private_property_identifier] = ACTIONS(3433), - [sym_this] = ACTIONS(3433), - [sym_super] = ACTIONS(3433), - [sym_true] = ACTIONS(3433), - [sym_false] = ACTIONS(3433), - [sym_null] = ACTIONS(3433), - [sym_undefined] = ACTIONS(3433), - [anon_sym_AT] = ACTIONS(3433), - [anon_sym_static] = ACTIONS(3433), - [anon_sym_readonly] = ACTIONS(3433), - [anon_sym_get] = ACTIONS(3433), - [anon_sym_set] = ACTIONS(3433), - [anon_sym_declare] = ACTIONS(3433), - [anon_sym_public] = ACTIONS(3433), - [anon_sym_private] = ACTIONS(3433), - [anon_sym_protected] = ACTIONS(3433), - [anon_sym_override] = ACTIONS(3433), - [anon_sym_module] = ACTIONS(3433), - [anon_sym_any] = ACTIONS(3433), - [anon_sym_number] = ACTIONS(3433), - [anon_sym_boolean] = ACTIONS(3433), - [anon_sym_string] = ACTIONS(3433), - [anon_sym_symbol] = ACTIONS(3433), - [anon_sym_object] = ACTIONS(3433), - [anon_sym_abstract] = ACTIONS(3433), - [anon_sym_interface] = ACTIONS(3433), - [anon_sym_enum] = ACTIONS(3433), + [anon_sym_BQUOTE] = ACTIONS(3459), + [sym_number] = ACTIONS(3459), + [sym_private_property_identifier] = ACTIONS(3459), + [sym_this] = ACTIONS(3459), + [sym_super] = ACTIONS(3459), + [sym_true] = ACTIONS(3459), + [sym_false] = ACTIONS(3459), + [sym_null] = ACTIONS(3459), + [sym_undefined] = ACTIONS(3459), + [anon_sym_AT] = ACTIONS(3459), + [anon_sym_static] = ACTIONS(3459), + [anon_sym_readonly] = ACTIONS(3459), + [anon_sym_get] = ACTIONS(3459), + [anon_sym_set] = ACTIONS(3459), + [anon_sym_declare] = ACTIONS(3459), + [anon_sym_public] = ACTIONS(3459), + [anon_sym_private] = ACTIONS(3459), + [anon_sym_protected] = ACTIONS(3459), + [anon_sym_override] = ACTIONS(3459), + [anon_sym_module] = ACTIONS(3459), + [anon_sym_any] = ACTIONS(3459), + [anon_sym_number] = ACTIONS(3459), + [anon_sym_boolean] = ACTIONS(3459), + [anon_sym_string] = ACTIONS(3459), + [anon_sym_symbol] = ACTIONS(3459), + [anon_sym_object] = ACTIONS(3459), + [anon_sym_abstract] = ACTIONS(3459), + [anon_sym_interface] = ACTIONS(3459), + [anon_sym_enum] = ACTIONS(3459), [sym_html_comment] = ACTIONS(5), }, - [1229] = { - [sym_comment] = STATE(1229), + [1216] = { + [sym_comment] = STATE(1216), + [ts_builtin_sym_end] = ACTIONS(3461), + [sym_identifier] = ACTIONS(3211), + [anon_sym_export] = ACTIONS(3211), + [anon_sym_type] = ACTIONS(3211), + [anon_sym_namespace] = ACTIONS(3211), + [anon_sym_LBRACE] = ACTIONS(3211), + [anon_sym_RBRACE] = ACTIONS(3211), + [anon_sym_typeof] = ACTIONS(3211), + [anon_sym_import] = ACTIONS(3211), + [anon_sym_with] = ACTIONS(3211), + [anon_sym_var] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_const] = ACTIONS(3211), + [anon_sym_BANG] = ACTIONS(3211), + [anon_sym_else] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3211), + [anon_sym_switch] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3211), + [anon_sym_await] = ACTIONS(3211), + [anon_sym_while] = ACTIONS(3211), + [anon_sym_do] = ACTIONS(3211), + [anon_sym_try] = ACTIONS(3211), + [anon_sym_break] = ACTIONS(3211), + [anon_sym_continue] = ACTIONS(3211), + [anon_sym_debugger] = ACTIONS(3211), + [anon_sym_return] = ACTIONS(3211), + [anon_sym_throw] = ACTIONS(3211), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym_finally] = ACTIONS(3211), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3211), + [anon_sym_LTtemplate_GT] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(3211), + [anon_sym_SQUOTE] = ACTIONS(3211), + [anon_sym_class] = ACTIONS(3211), + [anon_sym_async] = ACTIONS(3211), + [anon_sym_function] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3211), + [anon_sym_using] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_DASH] = ACTIONS(3211), + [anon_sym_SLASH] = ACTIONS(3211), + [anon_sym_LT] = ACTIONS(3211), + [anon_sym_TILDE] = ACTIONS(3211), + [anon_sym_void] = ACTIONS(3211), + [anon_sym_delete] = ACTIONS(3211), + [anon_sym_PLUS_PLUS] = ACTIONS(3211), + [anon_sym_DASH_DASH] = ACTIONS(3211), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3211), + [sym_number] = ACTIONS(3211), + [sym_private_property_identifier] = ACTIONS(3211), + [sym_this] = ACTIONS(3211), + [sym_super] = ACTIONS(3211), + [sym_true] = ACTIONS(3211), + [sym_false] = ACTIONS(3211), + [sym_null] = ACTIONS(3211), + [sym_undefined] = ACTIONS(3211), + [anon_sym_AT] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_readonly] = ACTIONS(3211), + [anon_sym_get] = ACTIONS(3211), + [anon_sym_set] = ACTIONS(3211), + [anon_sym_declare] = ACTIONS(3211), + [anon_sym_public] = ACTIONS(3211), + [anon_sym_private] = ACTIONS(3211), + [anon_sym_protected] = ACTIONS(3211), + [anon_sym_override] = ACTIONS(3211), + [anon_sym_module] = ACTIONS(3211), + [anon_sym_any] = ACTIONS(3211), + [anon_sym_number] = ACTIONS(3211), + [anon_sym_boolean] = ACTIONS(3211), + [anon_sym_string] = ACTIONS(3211), + [anon_sym_symbol] = ACTIONS(3211), + [anon_sym_object] = ACTIONS(3211), + [anon_sym_abstract] = ACTIONS(3211), + [anon_sym_interface] = ACTIONS(3211), + [anon_sym_enum] = ACTIONS(3211), + [sym_html_comment] = ACTIONS(5), + }, + [1217] = { + [sym_comment] = STATE(1217), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(3463), + [sym_html_comment] = ACTIONS(5), + }, + [1218] = { + [sym_comment] = STATE(1218), + [ts_builtin_sym_end] = ACTIONS(3465), + [sym_identifier] = ACTIONS(3357), + [anon_sym_export] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3357), + [anon_sym_namespace] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3357), + [anon_sym_typeof] = ACTIONS(3357), + [anon_sym_import] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3357), + [anon_sym_var] = ACTIONS(3357), + [anon_sym_let] = ACTIONS(3357), + [anon_sym_const] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3357), + [anon_sym_else] = ACTIONS(3357), + [anon_sym_if] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_await] = ACTIONS(3357), + [anon_sym_while] = ACTIONS(3357), + [anon_sym_do] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3357), + [anon_sym_break] = ACTIONS(3357), + [anon_sym_continue] = ACTIONS(3357), + [anon_sym_debugger] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3357), + [anon_sym_throw] = ACTIONS(3357), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_LTtemplate_GT] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_class] = ACTIONS(3357), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3357), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_void] = ACTIONS(3357), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3357), + [sym_number] = ACTIONS(3357), + [sym_private_property_identifier] = ACTIONS(3357), + [sym_this] = ACTIONS(3357), + [sym_super] = ACTIONS(3357), + [sym_true] = ACTIONS(3357), + [sym_false] = ACTIONS(3357), + [sym_null] = ACTIONS(3357), + [sym_undefined] = ACTIONS(3357), + [anon_sym_AT] = ACTIONS(3357), + [anon_sym_static] = ACTIONS(3357), + [anon_sym_readonly] = ACTIONS(3357), + [anon_sym_get] = ACTIONS(3357), + [anon_sym_set] = ACTIONS(3357), + [anon_sym_declare] = ACTIONS(3357), + [anon_sym_public] = ACTIONS(3357), + [anon_sym_private] = ACTIONS(3357), + [anon_sym_protected] = ACTIONS(3357), + [anon_sym_override] = ACTIONS(3357), + [anon_sym_module] = ACTIONS(3357), + [anon_sym_any] = ACTIONS(3357), + [anon_sym_number] = ACTIONS(3357), + [anon_sym_boolean] = ACTIONS(3357), + [anon_sym_string] = ACTIONS(3357), + [anon_sym_symbol] = ACTIONS(3357), + [anon_sym_object] = ACTIONS(3357), + [anon_sym_abstract] = ACTIONS(3357), + [anon_sym_interface] = ACTIONS(3357), + [anon_sym_enum] = ACTIONS(3357), + [sym_html_comment] = ACTIONS(5), + }, + [1219] = { + [sym_comment] = STATE(1219), [sym_identifier] = ACTIONS(3435), [anon_sym_export] = ACTIONS(3435), [anon_sym_default] = ACTIONS(3435), @@ -163336,7 +162223,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3435), [anon_sym_const] = ACTIONS(3435), [anon_sym_BANG] = ACTIONS(3435), - [anon_sym_else] = ACTIONS(3435), [anon_sym_if] = ACTIONS(3435), [anon_sym_switch] = ACTIONS(3435), [anon_sym_for] = ACTIONS(3435), @@ -163403,3277 +162289,3170 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3435), [sym_html_comment] = ACTIONS(5), }, - [1230] = { - [sym_comment] = STATE(1230), - [sym_identifier] = ACTIONS(3437), - [anon_sym_export] = ACTIONS(3437), - [anon_sym_default] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_typeof] = ACTIONS(3437), - [anon_sym_import] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_var] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_else] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_switch] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_await] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_debugger] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_throw] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_case] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LTtemplate_GT] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_SQUOTE] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_async] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_using] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_void] = ACTIONS(3437), - [anon_sym_delete] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3437), - [sym_number] = ACTIONS(3437), - [sym_private_property_identifier] = ACTIONS(3437), - [sym_this] = ACTIONS(3437), - [sym_super] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_null] = ACTIONS(3437), - [sym_undefined] = ACTIONS(3437), - [anon_sym_AT] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_readonly] = ACTIONS(3437), - [anon_sym_get] = ACTIONS(3437), - [anon_sym_set] = ACTIONS(3437), - [anon_sym_declare] = ACTIONS(3437), - [anon_sym_public] = ACTIONS(3437), - [anon_sym_private] = ACTIONS(3437), - [anon_sym_protected] = ACTIONS(3437), - [anon_sym_override] = ACTIONS(3437), - [anon_sym_module] = ACTIONS(3437), - [anon_sym_any] = ACTIONS(3437), - [anon_sym_number] = ACTIONS(3437), - [anon_sym_boolean] = ACTIONS(3437), - [anon_sym_string] = ACTIONS(3437), - [anon_sym_symbol] = ACTIONS(3437), - [anon_sym_object] = ACTIONS(3437), - [anon_sym_abstract] = ACTIONS(3437), - [anon_sym_interface] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), - [sym_html_comment] = ACTIONS(5), - }, - [1231] = { - [sym_statement_block] = STATE(1369), - [sym_comment] = STATE(1231), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_default] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(3197), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_case] = ACTIONS(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), - [sym_html_comment] = ACTIONS(5), - }, - [1232] = { - [sym_comment] = STATE(1232), - [ts_builtin_sym_end] = ACTIONS(3439), - [sym_identifier] = ACTIONS(3185), - [anon_sym_export] = ACTIONS(3185), - [anon_sym_type] = ACTIONS(3185), - [anon_sym_namespace] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_RBRACE] = ACTIONS(3185), - [anon_sym_typeof] = ACTIONS(3185), - [anon_sym_import] = ACTIONS(3185), - [anon_sym_with] = ACTIONS(3185), - [anon_sym_var] = ACTIONS(3185), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_const] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_else] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_switch] = ACTIONS(3185), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_await] = ACTIONS(3185), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_do] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_break] = ACTIONS(3185), - [anon_sym_continue] = ACTIONS(3185), - [anon_sym_debugger] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_throw] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym_finally] = ACTIONS(3185), - [anon_sym_yield] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_LTtemplate_GT] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [anon_sym_SQUOTE] = ACTIONS(3185), - [anon_sym_class] = ACTIONS(3185), - [anon_sym_async] = ACTIONS(3185), - [anon_sym_function] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_using] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_void] = ACTIONS(3185), - [anon_sym_delete] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3185), - [sym_number] = ACTIONS(3185), - [sym_private_property_identifier] = ACTIONS(3185), - [sym_this] = ACTIONS(3185), - [sym_super] = ACTIONS(3185), - [sym_true] = ACTIONS(3185), - [sym_false] = ACTIONS(3185), - [sym_null] = ACTIONS(3185), - [sym_undefined] = ACTIONS(3185), - [anon_sym_AT] = ACTIONS(3185), - [anon_sym_static] = ACTIONS(3185), - [anon_sym_readonly] = ACTIONS(3185), - [anon_sym_get] = ACTIONS(3185), - [anon_sym_set] = ACTIONS(3185), - [anon_sym_declare] = ACTIONS(3185), - [anon_sym_public] = ACTIONS(3185), - [anon_sym_private] = ACTIONS(3185), - [anon_sym_protected] = ACTIONS(3185), - [anon_sym_override] = ACTIONS(3185), - [anon_sym_module] = ACTIONS(3185), - [anon_sym_any] = ACTIONS(3185), - [anon_sym_number] = ACTIONS(3185), - [anon_sym_boolean] = ACTIONS(3185), - [anon_sym_string] = ACTIONS(3185), - [anon_sym_symbol] = ACTIONS(3185), - [anon_sym_object] = ACTIONS(3185), - [anon_sym_abstract] = ACTIONS(3185), - [anon_sym_interface] = ACTIONS(3185), - [anon_sym_enum] = ACTIONS(3185), - [sym_html_comment] = ACTIONS(5), - }, - [1233] = { - [sym_comment] = STATE(1233), - [sym_identifier] = ACTIONS(2266), - [anon_sym_export] = ACTIONS(2266), - [anon_sym_default] = ACTIONS(2266), - [anon_sym_type] = ACTIONS(2266), - [anon_sym_namespace] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(2266), - [anon_sym_RBRACE] = ACTIONS(2266), - [anon_sym_typeof] = ACTIONS(2266), - [anon_sym_import] = ACTIONS(2266), - [anon_sym_with] = ACTIONS(2266), - [anon_sym_var] = ACTIONS(2266), - [anon_sym_let] = ACTIONS(2266), - [anon_sym_const] = ACTIONS(2266), - [anon_sym_BANG] = ACTIONS(2266), - [anon_sym_if] = ACTIONS(2266), - [anon_sym_switch] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2266), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_await] = ACTIONS(2266), - [anon_sym_while] = ACTIONS(2266), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_try] = ACTIONS(2266), - [anon_sym_break] = ACTIONS(2266), - [anon_sym_continue] = ACTIONS(2266), - [anon_sym_debugger] = ACTIONS(2266), - [anon_sym_return] = ACTIONS(2266), - [anon_sym_throw] = ACTIONS(2266), - [anon_sym_SEMI] = ACTIONS(2266), - [anon_sym_case] = ACTIONS(2266), - [anon_sym_yield] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2266), - [anon_sym_LTtemplate_GT] = ACTIONS(2266), - [anon_sym_DQUOTE] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2266), - [anon_sym_class] = ACTIONS(2266), - [anon_sym_async] = ACTIONS(2266), - [anon_sym_function] = ACTIONS(2266), - [anon_sym_new] = ACTIONS(2266), - [anon_sym_using] = ACTIONS(2266), - [anon_sym_PLUS] = ACTIONS(2266), - [anon_sym_DASH] = ACTIONS(2266), - [anon_sym_SLASH] = ACTIONS(2266), - [anon_sym_LT] = ACTIONS(2266), - [anon_sym_TILDE] = ACTIONS(2266), - [anon_sym_void] = ACTIONS(2266), - [anon_sym_delete] = ACTIONS(2266), - [anon_sym_PLUS_PLUS] = ACTIONS(2266), - [anon_sym_DASH_DASH] = ACTIONS(2266), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2266), - [sym_number] = ACTIONS(2266), - [sym_private_property_identifier] = ACTIONS(2266), - [sym_this] = ACTIONS(2266), - [sym_super] = ACTIONS(2266), - [sym_true] = ACTIONS(2266), - [sym_false] = ACTIONS(2266), - [sym_null] = ACTIONS(2266), - [sym_undefined] = ACTIONS(2266), - [anon_sym_AT] = ACTIONS(2266), - [anon_sym_static] = ACTIONS(2266), - [anon_sym_readonly] = ACTIONS(2266), - [anon_sym_get] = ACTIONS(2266), - [anon_sym_set] = ACTIONS(2266), - [anon_sym_declare] = ACTIONS(2266), - [anon_sym_public] = ACTIONS(2266), - [anon_sym_private] = ACTIONS(2266), - [anon_sym_protected] = ACTIONS(2266), - [anon_sym_override] = ACTIONS(2266), - [anon_sym_module] = ACTIONS(2266), - [anon_sym_any] = ACTIONS(2266), - [anon_sym_number] = ACTIONS(2266), - [anon_sym_boolean] = ACTIONS(2266), - [anon_sym_string] = ACTIONS(2266), - [anon_sym_symbol] = ACTIONS(2266), - [anon_sym_object] = ACTIONS(2266), - [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_interface] = ACTIONS(2266), - [anon_sym_enum] = ACTIONS(2266), - [sym__automatic_semicolon] = ACTIONS(2362), - [sym_html_comment] = ACTIONS(5), - }, - [1234] = { - [sym_comment] = STATE(1234), - [sym_identifier] = ACTIONS(2274), - [anon_sym_export] = ACTIONS(2274), - [anon_sym_default] = ACTIONS(2274), - [anon_sym_type] = ACTIONS(2274), - [anon_sym_namespace] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_typeof] = ACTIONS(2274), - [anon_sym_import] = ACTIONS(2274), - [anon_sym_with] = ACTIONS(2274), - [anon_sym_var] = ACTIONS(2274), - [anon_sym_let] = ACTIONS(2274), - [anon_sym_const] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2274), - [anon_sym_if] = ACTIONS(2274), - [anon_sym_switch] = ACTIONS(2274), - [anon_sym_for] = ACTIONS(2274), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_await] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2274), - [anon_sym_do] = ACTIONS(2274), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_break] = ACTIONS(2274), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_debugger] = ACTIONS(2274), - [anon_sym_return] = ACTIONS(2274), - [anon_sym_throw] = ACTIONS(2274), - [anon_sym_SEMI] = ACTIONS(2274), - [anon_sym_case] = ACTIONS(2274), - [anon_sym_yield] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_LTtemplate_GT] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [anon_sym_SQUOTE] = ACTIONS(2274), - [anon_sym_class] = ACTIONS(2274), - [anon_sym_async] = ACTIONS(2274), - [anon_sym_function] = ACTIONS(2274), - [anon_sym_new] = ACTIONS(2274), - [anon_sym_using] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_SLASH] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_TILDE] = ACTIONS(2274), - [anon_sym_void] = ACTIONS(2274), - [anon_sym_delete] = ACTIONS(2274), - [anon_sym_PLUS_PLUS] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2274), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2274), - [sym_number] = ACTIONS(2274), - [sym_private_property_identifier] = ACTIONS(2274), - [sym_this] = ACTIONS(2274), - [sym_super] = ACTIONS(2274), - [sym_true] = ACTIONS(2274), - [sym_false] = ACTIONS(2274), - [sym_null] = ACTIONS(2274), - [sym_undefined] = ACTIONS(2274), - [anon_sym_AT] = ACTIONS(2274), - [anon_sym_static] = ACTIONS(2274), - [anon_sym_readonly] = ACTIONS(2274), - [anon_sym_get] = ACTIONS(2274), - [anon_sym_set] = ACTIONS(2274), - [anon_sym_declare] = ACTIONS(2274), - [anon_sym_public] = ACTIONS(2274), - [anon_sym_private] = ACTIONS(2274), - [anon_sym_protected] = ACTIONS(2274), - [anon_sym_override] = ACTIONS(2274), - [anon_sym_module] = ACTIONS(2274), - [anon_sym_any] = ACTIONS(2274), - [anon_sym_number] = ACTIONS(2274), - [anon_sym_boolean] = ACTIONS(2274), - [anon_sym_string] = ACTIONS(2274), - [anon_sym_symbol] = ACTIONS(2274), - [anon_sym_object] = ACTIONS(2274), - [anon_sym_abstract] = ACTIONS(2274), - [anon_sym_interface] = ACTIONS(2274), - [anon_sym_enum] = ACTIONS(2274), + [1220] = { + [sym_comment] = STATE(1220), + [ts_builtin_sym_end] = ACTIONS(3467), + [sym_identifier] = ACTIONS(3393), + [anon_sym_export] = ACTIONS(3393), + [anon_sym_type] = ACTIONS(3393), + [anon_sym_namespace] = ACTIONS(3393), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_RBRACE] = ACTIONS(3393), + [anon_sym_typeof] = ACTIONS(3393), + [anon_sym_import] = ACTIONS(3393), + [anon_sym_with] = ACTIONS(3393), + [anon_sym_var] = ACTIONS(3393), + [anon_sym_let] = ACTIONS(3393), + [anon_sym_const] = ACTIONS(3393), + [anon_sym_BANG] = ACTIONS(3393), + [anon_sym_else] = ACTIONS(3393), + [anon_sym_if] = ACTIONS(3393), + [anon_sym_switch] = ACTIONS(3393), + [anon_sym_for] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_await] = ACTIONS(3393), + [anon_sym_while] = ACTIONS(3393), + [anon_sym_do] = ACTIONS(3393), + [anon_sym_try] = ACTIONS(3393), + [anon_sym_break] = ACTIONS(3393), + [anon_sym_continue] = ACTIONS(3393), + [anon_sym_debugger] = ACTIONS(3393), + [anon_sym_return] = ACTIONS(3393), + [anon_sym_throw] = ACTIONS(3393), + [anon_sym_SEMI] = ACTIONS(3393), + [anon_sym_yield] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LTtemplate_GT] = ACTIONS(3393), + [anon_sym_DQUOTE] = ACTIONS(3393), + [anon_sym_SQUOTE] = ACTIONS(3393), + [anon_sym_class] = ACTIONS(3393), + [anon_sym_async] = ACTIONS(3393), + [anon_sym_function] = ACTIONS(3393), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_using] = ACTIONS(3393), + [anon_sym_PLUS] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3393), + [anon_sym_SLASH] = ACTIONS(3393), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_TILDE] = ACTIONS(3393), + [anon_sym_void] = ACTIONS(3393), + [anon_sym_delete] = ACTIONS(3393), + [anon_sym_PLUS_PLUS] = ACTIONS(3393), + [anon_sym_DASH_DASH] = ACTIONS(3393), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3393), + [sym_number] = ACTIONS(3393), + [sym_private_property_identifier] = ACTIONS(3393), + [sym_this] = ACTIONS(3393), + [sym_super] = ACTIONS(3393), + [sym_true] = ACTIONS(3393), + [sym_false] = ACTIONS(3393), + [sym_null] = ACTIONS(3393), + [sym_undefined] = ACTIONS(3393), + [anon_sym_AT] = ACTIONS(3393), + [anon_sym_static] = ACTIONS(3393), + [anon_sym_readonly] = ACTIONS(3393), + [anon_sym_get] = ACTIONS(3393), + [anon_sym_set] = ACTIONS(3393), + [anon_sym_declare] = ACTIONS(3393), + [anon_sym_public] = ACTIONS(3393), + [anon_sym_private] = ACTIONS(3393), + [anon_sym_protected] = ACTIONS(3393), + [anon_sym_override] = ACTIONS(3393), + [anon_sym_module] = ACTIONS(3393), + [anon_sym_any] = ACTIONS(3393), + [anon_sym_number] = ACTIONS(3393), + [anon_sym_boolean] = ACTIONS(3393), + [anon_sym_string] = ACTIONS(3393), + [anon_sym_symbol] = ACTIONS(3393), + [anon_sym_object] = ACTIONS(3393), + [anon_sym_abstract] = ACTIONS(3393), + [anon_sym_interface] = ACTIONS(3393), + [anon_sym_enum] = ACTIONS(3393), [sym_html_comment] = ACTIONS(5), }, - [1235] = { - [sym_comment] = STATE(1235), - [sym_identifier] = ACTIONS(2204), - [anon_sym_export] = ACTIONS(2204), - [anon_sym_default] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_namespace] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_typeof] = ACTIONS(2204), - [anon_sym_import] = ACTIONS(2204), - [anon_sym_with] = ACTIONS(2204), - [anon_sym_var] = ACTIONS(2204), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_switch] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_await] = ACTIONS(2204), - [anon_sym_while] = ACTIONS(2204), - [anon_sym_do] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_debugger] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_throw] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_case] = ACTIONS(2204), - [anon_sym_yield] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_LTtemplate_GT] = ACTIONS(2204), - [anon_sym_DOT] = ACTIONS(2204), - [anon_sym_DQUOTE] = ACTIONS(2204), - [anon_sym_SQUOTE] = ACTIONS(2204), - [anon_sym_class] = ACTIONS(2204), - [anon_sym_async] = ACTIONS(2204), - [anon_sym_function] = ACTIONS(2204), - [anon_sym_new] = ACTIONS(2204), - [anon_sym_using] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_void] = ACTIONS(2204), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2204), + [1221] = { + [sym_comment] = STATE(1221), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2204), - [sym_number] = ACTIONS(2204), - [sym_private_property_identifier] = ACTIONS(2204), - [sym_this] = ACTIONS(2204), - [sym_super] = ACTIONS(2204), - [sym_true] = ACTIONS(2204), - [sym_false] = ACTIONS(2204), - [sym_null] = ACTIONS(2204), - [sym_undefined] = ACTIONS(2204), - [anon_sym_AT] = ACTIONS(2204), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_readonly] = ACTIONS(2204), - [anon_sym_get] = ACTIONS(2204), - [anon_sym_set] = ACTIONS(2204), - [anon_sym_declare] = ACTIONS(2204), - [anon_sym_public] = ACTIONS(2204), - [anon_sym_private] = ACTIONS(2204), - [anon_sym_protected] = ACTIONS(2204), - [anon_sym_override] = ACTIONS(2204), - [anon_sym_module] = ACTIONS(2204), - [anon_sym_any] = ACTIONS(2204), - [anon_sym_number] = ACTIONS(2204), - [anon_sym_boolean] = ACTIONS(2204), - [anon_sym_string] = ACTIONS(2204), - [anon_sym_symbol] = ACTIONS(2204), - [anon_sym_object] = ACTIONS(2204), - [anon_sym_abstract] = ACTIONS(2204), - [anon_sym_interface] = ACTIONS(2204), - [anon_sym_enum] = ACTIONS(2204), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), [sym_html_comment] = ACTIONS(5), }, - [1236] = { - [sym_comment] = STATE(1236), - [sym_identifier] = ACTIONS(3441), - [anon_sym_export] = ACTIONS(3441), - [anon_sym_default] = ACTIONS(3441), - [anon_sym_type] = ACTIONS(3441), - [anon_sym_namespace] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_RBRACE] = ACTIONS(3441), - [anon_sym_typeof] = ACTIONS(3441), - [anon_sym_import] = ACTIONS(3441), - [anon_sym_with] = ACTIONS(3441), - [anon_sym_var] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_const] = ACTIONS(3441), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_else] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_await] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_break] = ACTIONS(3441), - [anon_sym_continue] = ACTIONS(3441), - [anon_sym_debugger] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_throw] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_case] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LTtemplate_GT] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_SQUOTE] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_async] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_using] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_SLASH] = ACTIONS(3441), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_void] = ACTIONS(3441), - [anon_sym_delete] = ACTIONS(3441), - [anon_sym_PLUS_PLUS] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3441), + [1222] = { + [sym_comment] = STATE(1222), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3347), + [anon_sym_default] = ACTIONS(3347), + [anon_sym_type] = ACTIONS(3347), + [anon_sym_namespace] = ACTIONS(3347), + [anon_sym_LBRACE] = ACTIONS(3347), + [anon_sym_RBRACE] = ACTIONS(3347), + [anon_sym_typeof] = ACTIONS(3347), + [anon_sym_import] = ACTIONS(3347), + [anon_sym_with] = ACTIONS(3347), + [anon_sym_var] = ACTIONS(3347), + [anon_sym_let] = ACTIONS(3347), + [anon_sym_const] = ACTIONS(3347), + [anon_sym_BANG] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(3347), + [anon_sym_switch] = ACTIONS(3347), + [anon_sym_for] = ACTIONS(3347), + [anon_sym_LPAREN] = ACTIONS(3347), + [anon_sym_await] = ACTIONS(3347), + [anon_sym_while] = ACTIONS(3347), + [anon_sym_do] = ACTIONS(3347), + [anon_sym_try] = ACTIONS(3347), + [anon_sym_break] = ACTIONS(3347), + [anon_sym_continue] = ACTIONS(3347), + [anon_sym_debugger] = ACTIONS(3347), + [anon_sym_return] = ACTIONS(3347), + [anon_sym_throw] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3347), + [anon_sym_case] = ACTIONS(3347), + [anon_sym_yield] = ACTIONS(3347), + [anon_sym_LBRACK] = ACTIONS(3347), + [anon_sym_LTtemplate_GT] = ACTIONS(3347), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_class] = ACTIONS(3347), + [anon_sym_async] = ACTIONS(3347), + [anon_sym_function] = ACTIONS(3347), + [anon_sym_new] = ACTIONS(3347), + [anon_sym_using] = ACTIONS(3347), + [anon_sym_PLUS] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3347), + [anon_sym_SLASH] = ACTIONS(3347), + [anon_sym_LT] = ACTIONS(3347), + [anon_sym_TILDE] = ACTIONS(3347), + [anon_sym_void] = ACTIONS(3347), + [anon_sym_delete] = ACTIONS(3347), + [anon_sym_PLUS_PLUS] = ACTIONS(3347), + [anon_sym_DASH_DASH] = ACTIONS(3347), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3441), - [sym_number] = ACTIONS(3441), - [sym_private_property_identifier] = ACTIONS(3441), - [sym_this] = ACTIONS(3441), - [sym_super] = ACTIONS(3441), - [sym_true] = ACTIONS(3441), - [sym_false] = ACTIONS(3441), - [sym_null] = ACTIONS(3441), - [sym_undefined] = ACTIONS(3441), - [anon_sym_AT] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_readonly] = ACTIONS(3441), - [anon_sym_get] = ACTIONS(3441), - [anon_sym_set] = ACTIONS(3441), - [anon_sym_declare] = ACTIONS(3441), - [anon_sym_public] = ACTIONS(3441), - [anon_sym_private] = ACTIONS(3441), - [anon_sym_protected] = ACTIONS(3441), - [anon_sym_override] = ACTIONS(3441), - [anon_sym_module] = ACTIONS(3441), - [anon_sym_any] = ACTIONS(3441), - [anon_sym_number] = ACTIONS(3441), - [anon_sym_boolean] = ACTIONS(3441), - [anon_sym_string] = ACTIONS(3441), - [anon_sym_symbol] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_abstract] = ACTIONS(3441), - [anon_sym_interface] = ACTIONS(3441), - [anon_sym_enum] = ACTIONS(3441), + [anon_sym_BQUOTE] = ACTIONS(3347), + [sym_number] = ACTIONS(3347), + [sym_private_property_identifier] = ACTIONS(3347), + [sym_this] = ACTIONS(3347), + [sym_super] = ACTIONS(3347), + [sym_true] = ACTIONS(3347), + [sym_false] = ACTIONS(3347), + [sym_null] = ACTIONS(3347), + [sym_undefined] = ACTIONS(3347), + [anon_sym_AT] = ACTIONS(3347), + [anon_sym_static] = ACTIONS(3347), + [anon_sym_readonly] = ACTIONS(3347), + [anon_sym_get] = ACTIONS(3347), + [anon_sym_set] = ACTIONS(3347), + [anon_sym_declare] = ACTIONS(3347), + [anon_sym_public] = ACTIONS(3347), + [anon_sym_private] = ACTIONS(3347), + [anon_sym_protected] = ACTIONS(3347), + [anon_sym_override] = ACTIONS(3347), + [anon_sym_module] = ACTIONS(3347), + [anon_sym_any] = ACTIONS(3347), + [anon_sym_number] = ACTIONS(3347), + [anon_sym_boolean] = ACTIONS(3347), + [anon_sym_string] = ACTIONS(3347), + [anon_sym_symbol] = ACTIONS(3347), + [anon_sym_object] = ACTIONS(3347), + [anon_sym_abstract] = ACTIONS(3347), + [anon_sym_interface] = ACTIONS(3347), + [anon_sym_enum] = ACTIONS(3347), [sym_html_comment] = ACTIONS(5), }, - [1237] = { - [sym_comment] = STATE(1237), - [ts_builtin_sym_end] = ACTIONS(3443), - [sym_identifier] = ACTIONS(3193), - [anon_sym_export] = ACTIONS(3193), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_namespace] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_RBRACE] = ACTIONS(3193), - [anon_sym_typeof] = ACTIONS(3193), - [anon_sym_import] = ACTIONS(3193), - [anon_sym_with] = ACTIONS(3193), - [anon_sym_var] = ACTIONS(3193), - [anon_sym_let] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_else] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_switch] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_await] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_do] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_debugger] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym_finally] = ACTIONS(3193), - [anon_sym_yield] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_LTtemplate_GT] = ACTIONS(3193), - [anon_sym_DQUOTE] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3193), - [anon_sym_class] = ACTIONS(3193), - [anon_sym_async] = ACTIONS(3193), - [anon_sym_function] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(3193), - [anon_sym_using] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_SLASH] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_void] = ACTIONS(3193), - [anon_sym_delete] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3193), - [sym_number] = ACTIONS(3193), - [sym_private_property_identifier] = ACTIONS(3193), - [sym_this] = ACTIONS(3193), - [sym_super] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_null] = ACTIONS(3193), - [sym_undefined] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_static] = ACTIONS(3193), - [anon_sym_readonly] = ACTIONS(3193), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_declare] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_module] = ACTIONS(3193), - [anon_sym_any] = ACTIONS(3193), - [anon_sym_number] = ACTIONS(3193), - [anon_sym_boolean] = ACTIONS(3193), - [anon_sym_string] = ACTIONS(3193), - [anon_sym_symbol] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_interface] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), + [1223] = { + [sym_comment] = STATE(1223), + [ts_builtin_sym_end] = ACTIONS(3469), + [sym_identifier] = ACTIONS(3443), + [anon_sym_export] = ACTIONS(3443), + [anon_sym_type] = ACTIONS(3443), + [anon_sym_namespace] = ACTIONS(3443), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_RBRACE] = ACTIONS(3443), + [anon_sym_typeof] = ACTIONS(3443), + [anon_sym_import] = ACTIONS(3443), + [anon_sym_with] = ACTIONS(3443), + [anon_sym_var] = ACTIONS(3443), + [anon_sym_let] = ACTIONS(3443), + [anon_sym_const] = ACTIONS(3443), + [anon_sym_BANG] = ACTIONS(3443), + [anon_sym_else] = ACTIONS(3443), + [anon_sym_if] = ACTIONS(3443), + [anon_sym_switch] = ACTIONS(3443), + [anon_sym_for] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3443), + [anon_sym_await] = ACTIONS(3443), + [anon_sym_while] = ACTIONS(3443), + [anon_sym_do] = ACTIONS(3443), + [anon_sym_try] = ACTIONS(3443), + [anon_sym_break] = ACTIONS(3443), + [anon_sym_continue] = ACTIONS(3443), + [anon_sym_debugger] = ACTIONS(3443), + [anon_sym_return] = ACTIONS(3443), + [anon_sym_throw] = ACTIONS(3443), + [anon_sym_SEMI] = ACTIONS(3443), + [anon_sym_yield] = ACTIONS(3443), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LTtemplate_GT] = ACTIONS(3443), + [anon_sym_DQUOTE] = ACTIONS(3443), + [anon_sym_SQUOTE] = ACTIONS(3443), + [anon_sym_class] = ACTIONS(3443), + [anon_sym_async] = ACTIONS(3443), + [anon_sym_function] = ACTIONS(3443), + [anon_sym_new] = ACTIONS(3443), + [anon_sym_using] = ACTIONS(3443), + [anon_sym_PLUS] = ACTIONS(3443), + [anon_sym_DASH] = ACTIONS(3443), + [anon_sym_SLASH] = ACTIONS(3443), + [anon_sym_LT] = ACTIONS(3443), + [anon_sym_TILDE] = ACTIONS(3443), + [anon_sym_void] = ACTIONS(3443), + [anon_sym_delete] = ACTIONS(3443), + [anon_sym_PLUS_PLUS] = ACTIONS(3443), + [anon_sym_DASH_DASH] = ACTIONS(3443), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3443), + [sym_number] = ACTIONS(3443), + [sym_private_property_identifier] = ACTIONS(3443), + [sym_this] = ACTIONS(3443), + [sym_super] = ACTIONS(3443), + [sym_true] = ACTIONS(3443), + [sym_false] = ACTIONS(3443), + [sym_null] = ACTIONS(3443), + [sym_undefined] = ACTIONS(3443), + [anon_sym_AT] = ACTIONS(3443), + [anon_sym_static] = ACTIONS(3443), + [anon_sym_readonly] = ACTIONS(3443), + [anon_sym_get] = ACTIONS(3443), + [anon_sym_set] = ACTIONS(3443), + [anon_sym_declare] = ACTIONS(3443), + [anon_sym_public] = ACTIONS(3443), + [anon_sym_private] = ACTIONS(3443), + [anon_sym_protected] = ACTIONS(3443), + [anon_sym_override] = ACTIONS(3443), + [anon_sym_module] = ACTIONS(3443), + [anon_sym_any] = ACTIONS(3443), + [anon_sym_number] = ACTIONS(3443), + [anon_sym_boolean] = ACTIONS(3443), + [anon_sym_string] = ACTIONS(3443), + [anon_sym_symbol] = ACTIONS(3443), + [anon_sym_object] = ACTIONS(3443), + [anon_sym_abstract] = ACTIONS(3443), + [anon_sym_interface] = ACTIONS(3443), + [anon_sym_enum] = ACTIONS(3443), [sym_html_comment] = ACTIONS(5), }, - [1238] = { - [sym_comment] = STATE(1238), - [sym_identifier] = ACTIONS(2280), - [anon_sym_export] = ACTIONS(2280), - [anon_sym_default] = ACTIONS(2280), - [anon_sym_type] = ACTIONS(2280), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_typeof] = ACTIONS(2280), - [anon_sym_import] = ACTIONS(2280), - [anon_sym_with] = ACTIONS(2280), - [anon_sym_var] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_switch] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_await] = ACTIONS(2280), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_do] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_debugger] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_throw] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_case] = ACTIONS(2280), - [anon_sym_yield] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_LTtemplate_GT] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_class] = ACTIONS(2280), - [anon_sym_async] = ACTIONS(2280), - [anon_sym_function] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2280), - [anon_sym_using] = ACTIONS(2280), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_SLASH] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_void] = ACTIONS(2280), - [anon_sym_delete] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), + [1224] = { + [sym_comment] = STATE(1224), + [sym_identifier] = ACTIONS(3349), + [anon_sym_export] = ACTIONS(3349), + [anon_sym_default] = ACTIONS(3349), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_LBRACE] = ACTIONS(3349), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_typeof] = ACTIONS(3349), + [anon_sym_import] = ACTIONS(3349), + [anon_sym_with] = ACTIONS(3349), + [anon_sym_var] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), + [anon_sym_const] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(3349), + [anon_sym_if] = ACTIONS(3349), + [anon_sym_switch] = ACTIONS(3349), + [anon_sym_for] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3349), + [anon_sym_await] = ACTIONS(3349), + [anon_sym_while] = ACTIONS(3349), + [anon_sym_do] = ACTIONS(3349), + [anon_sym_try] = ACTIONS(3349), + [anon_sym_break] = ACTIONS(3349), + [anon_sym_continue] = ACTIONS(3349), + [anon_sym_debugger] = ACTIONS(3349), + [anon_sym_return] = ACTIONS(3349), + [anon_sym_throw] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_case] = ACTIONS(3349), + [anon_sym_yield] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(3349), + [anon_sym_LTtemplate_GT] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [anon_sym_SQUOTE] = ACTIONS(3349), + [anon_sym_class] = ACTIONS(3349), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3349), + [anon_sym_new] = ACTIONS(3349), + [anon_sym_using] = ACTIONS(3349), + [anon_sym_PLUS] = ACTIONS(3349), + [anon_sym_DASH] = ACTIONS(3349), + [anon_sym_SLASH] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_TILDE] = ACTIONS(3349), + [anon_sym_void] = ACTIONS(3349), + [anon_sym_delete] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_DASH_DASH] = ACTIONS(3349), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2280), - [sym_number] = ACTIONS(2280), - [sym_private_property_identifier] = ACTIONS(2280), - [sym_this] = ACTIONS(2280), - [sym_super] = ACTIONS(2280), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_undefined] = ACTIONS(2280), - [anon_sym_AT] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_readonly] = ACTIONS(2280), - [anon_sym_get] = ACTIONS(2280), - [anon_sym_set] = ACTIONS(2280), - [anon_sym_declare] = ACTIONS(2280), - [anon_sym_public] = ACTIONS(2280), - [anon_sym_private] = ACTIONS(2280), - [anon_sym_protected] = ACTIONS(2280), - [anon_sym_override] = ACTIONS(2280), - [anon_sym_module] = ACTIONS(2280), - [anon_sym_any] = ACTIONS(2280), - [anon_sym_number] = ACTIONS(2280), - [anon_sym_boolean] = ACTIONS(2280), - [anon_sym_string] = ACTIONS(2280), - [anon_sym_symbol] = ACTIONS(2280), - [anon_sym_object] = ACTIONS(2280), - [anon_sym_abstract] = ACTIONS(2280), - [anon_sym_interface] = ACTIONS(2280), - [anon_sym_enum] = ACTIONS(2280), - [sym__automatic_semicolon] = ACTIONS(2374), - [sym_html_comment] = ACTIONS(5), - }, - [1239] = { - [sym_comment] = STATE(1239), - [sym_identifier] = ACTIONS(2302), - [anon_sym_export] = ACTIONS(2302), - [anon_sym_default] = ACTIONS(2302), - [anon_sym_type] = ACTIONS(2302), - [anon_sym_namespace] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_typeof] = ACTIONS(2302), - [anon_sym_import] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(2302), - [anon_sym_var] = ACTIONS(2302), - [anon_sym_let] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_await] = ACTIONS(2302), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_debugger] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_case] = ACTIONS(2302), - [anon_sym_yield] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_LTtemplate_GT] = ACTIONS(2302), - [anon_sym_DQUOTE] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_function] = ACTIONS(2302), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_SLASH] = ACTIONS(2302), - [anon_sym_LT] = ACTIONS(2302), - [anon_sym_TILDE] = ACTIONS(2302), - [anon_sym_void] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2302), - [sym_number] = ACTIONS(2302), - [sym_private_property_identifier] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_super] = ACTIONS(2302), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_undefined] = ACTIONS(2302), - [anon_sym_AT] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_readonly] = ACTIONS(2302), - [anon_sym_get] = ACTIONS(2302), - [anon_sym_set] = ACTIONS(2302), - [anon_sym_declare] = ACTIONS(2302), - [anon_sym_public] = ACTIONS(2302), - [anon_sym_private] = ACTIONS(2302), - [anon_sym_protected] = ACTIONS(2302), - [anon_sym_override] = ACTIONS(2302), - [anon_sym_module] = ACTIONS(2302), - [anon_sym_any] = ACTIONS(2302), - [anon_sym_number] = ACTIONS(2302), - [anon_sym_boolean] = ACTIONS(2302), - [anon_sym_string] = ACTIONS(2302), - [anon_sym_symbol] = ACTIONS(2302), - [anon_sym_object] = ACTIONS(2302), - [anon_sym_abstract] = ACTIONS(2302), - [anon_sym_interface] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [sym__automatic_semicolon] = ACTIONS(2376), + [anon_sym_BQUOTE] = ACTIONS(3349), + [sym_number] = ACTIONS(3349), + [sym_private_property_identifier] = ACTIONS(3349), + [sym_this] = ACTIONS(3349), + [sym_super] = ACTIONS(3349), + [sym_true] = ACTIONS(3349), + [sym_false] = ACTIONS(3349), + [sym_null] = ACTIONS(3349), + [sym_undefined] = ACTIONS(3349), + [anon_sym_AT] = ACTIONS(3349), + [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_abstract] = ACTIONS(3349), + [anon_sym_interface] = ACTIONS(3349), + [anon_sym_enum] = ACTIONS(3349), [sym_html_comment] = ACTIONS(5), }, - [1240] = { - [sym_comment] = STATE(1240), - [sym_identifier] = ACTIONS(3445), - [anon_sym_export] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3445), - [anon_sym_type] = ACTIONS(3445), - [anon_sym_namespace] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_typeof] = ACTIONS(3445), - [anon_sym_import] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), - [anon_sym_BANG] = ACTIONS(3445), - [anon_sym_else] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_await] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_break] = ACTIONS(3445), - [anon_sym_continue] = ACTIONS(3445), - [anon_sym_debugger] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_throw] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LTtemplate_GT] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_SQUOTE] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_async] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_using] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_void] = ACTIONS(3445), - [anon_sym_delete] = ACTIONS(3445), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), + [1225] = { + [sym_comment] = STATE(1225), + [sym_identifier] = ACTIONS(3353), + [anon_sym_export] = ACTIONS(3353), + [anon_sym_default] = ACTIONS(3353), + [anon_sym_type] = ACTIONS(3353), + [anon_sym_namespace] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3353), + [anon_sym_RBRACE] = ACTIONS(3353), + [anon_sym_typeof] = ACTIONS(3353), + [anon_sym_import] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3353), + [anon_sym_var] = ACTIONS(3353), + [anon_sym_let] = ACTIONS(3353), + [anon_sym_const] = ACTIONS(3353), + [anon_sym_BANG] = ACTIONS(3353), + [anon_sym_if] = ACTIONS(3353), + [anon_sym_switch] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3353), + [anon_sym_await] = ACTIONS(3353), + [anon_sym_while] = ACTIONS(3353), + [anon_sym_do] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3353), + [anon_sym_break] = ACTIONS(3353), + [anon_sym_continue] = ACTIONS(3353), + [anon_sym_debugger] = ACTIONS(3353), + [anon_sym_return] = ACTIONS(3353), + [anon_sym_throw] = ACTIONS(3353), + [anon_sym_SEMI] = ACTIONS(3353), + [anon_sym_case] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3353), + [anon_sym_LBRACK] = ACTIONS(3353), + [anon_sym_LTtemplate_GT] = ACTIONS(3353), + [anon_sym_DQUOTE] = ACTIONS(3353), + [anon_sym_SQUOTE] = ACTIONS(3353), + [anon_sym_class] = ACTIONS(3353), + [anon_sym_async] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3353), + [anon_sym_using] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3353), + [anon_sym_DASH] = ACTIONS(3353), + [anon_sym_SLASH] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [anon_sym_void] = ACTIONS(3353), + [anon_sym_delete] = ACTIONS(3353), + [anon_sym_PLUS_PLUS] = ACTIONS(3353), + [anon_sym_DASH_DASH] = ACTIONS(3353), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3445), - [sym_number] = ACTIONS(3445), - [sym_private_property_identifier] = ACTIONS(3445), - [sym_this] = ACTIONS(3445), - [sym_super] = ACTIONS(3445), - [sym_true] = ACTIONS(3445), - [sym_false] = ACTIONS(3445), - [sym_null] = ACTIONS(3445), - [sym_undefined] = ACTIONS(3445), - [anon_sym_AT] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_readonly] = ACTIONS(3445), - [anon_sym_get] = ACTIONS(3445), - [anon_sym_set] = ACTIONS(3445), - [anon_sym_declare] = ACTIONS(3445), - [anon_sym_public] = ACTIONS(3445), - [anon_sym_private] = ACTIONS(3445), - [anon_sym_protected] = ACTIONS(3445), - [anon_sym_override] = ACTIONS(3445), - [anon_sym_module] = ACTIONS(3445), - [anon_sym_any] = ACTIONS(3445), - [anon_sym_number] = ACTIONS(3445), - [anon_sym_boolean] = ACTIONS(3445), - [anon_sym_string] = ACTIONS(3445), - [anon_sym_symbol] = ACTIONS(3445), - [anon_sym_object] = ACTIONS(3445), - [anon_sym_abstract] = ACTIONS(3445), - [anon_sym_interface] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), + [anon_sym_BQUOTE] = ACTIONS(3353), + [sym_number] = ACTIONS(3353), + [sym_private_property_identifier] = ACTIONS(3353), + [sym_this] = ACTIONS(3353), + [sym_super] = ACTIONS(3353), + [sym_true] = ACTIONS(3353), + [sym_false] = ACTIONS(3353), + [sym_null] = ACTIONS(3353), + [sym_undefined] = ACTIONS(3353), + [anon_sym_AT] = ACTIONS(3353), + [anon_sym_static] = ACTIONS(3353), + [anon_sym_readonly] = ACTIONS(3353), + [anon_sym_get] = ACTIONS(3353), + [anon_sym_set] = ACTIONS(3353), + [anon_sym_declare] = ACTIONS(3353), + [anon_sym_public] = ACTIONS(3353), + [anon_sym_private] = ACTIONS(3353), + [anon_sym_protected] = ACTIONS(3353), + [anon_sym_override] = ACTIONS(3353), + [anon_sym_module] = ACTIONS(3353), + [anon_sym_any] = ACTIONS(3353), + [anon_sym_number] = ACTIONS(3353), + [anon_sym_boolean] = ACTIONS(3353), + [anon_sym_string] = ACTIONS(3353), + [anon_sym_symbol] = ACTIONS(3353), + [anon_sym_object] = ACTIONS(3353), + [anon_sym_abstract] = ACTIONS(3353), + [anon_sym_interface] = ACTIONS(3353), + [anon_sym_enum] = ACTIONS(3353), [sym_html_comment] = ACTIONS(5), }, - [1241] = { - [sym_comment] = STATE(1241), - [sym_identifier] = ACTIONS(3445), - [anon_sym_export] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3445), - [anon_sym_type] = ACTIONS(3445), - [anon_sym_namespace] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_typeof] = ACTIONS(3445), - [anon_sym_import] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), - [anon_sym_BANG] = ACTIONS(3445), - [anon_sym_else] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_await] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_break] = ACTIONS(3445), - [anon_sym_continue] = ACTIONS(3445), - [anon_sym_debugger] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_throw] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LTtemplate_GT] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_SQUOTE] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_async] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_using] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_void] = ACTIONS(3445), - [anon_sym_delete] = ACTIONS(3445), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), + [1226] = { + [sym_comment] = STATE(1226), + [ts_builtin_sym_end] = ACTIONS(3471), + [sym_identifier] = ACTIONS(3399), + [anon_sym_export] = ACTIONS(3399), + [anon_sym_type] = ACTIONS(3399), + [anon_sym_namespace] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3399), + [anon_sym_RBRACE] = ACTIONS(3399), + [anon_sym_typeof] = ACTIONS(3399), + [anon_sym_import] = ACTIONS(3399), + [anon_sym_with] = ACTIONS(3399), + [anon_sym_var] = ACTIONS(3399), + [anon_sym_let] = ACTIONS(3399), + [anon_sym_const] = ACTIONS(3399), + [anon_sym_BANG] = ACTIONS(3399), + [anon_sym_else] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_switch] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_await] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_break] = ACTIONS(3399), + [anon_sym_continue] = ACTIONS(3399), + [anon_sym_debugger] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_throw] = ACTIONS(3399), + [anon_sym_SEMI] = ACTIONS(3399), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_LTtemplate_GT] = ACTIONS(3399), + [anon_sym_DQUOTE] = ACTIONS(3399), + [anon_sym_SQUOTE] = ACTIONS(3399), + [anon_sym_class] = ACTIONS(3399), + [anon_sym_async] = ACTIONS(3399), + [anon_sym_function] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_using] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_SLASH] = ACTIONS(3399), + [anon_sym_LT] = ACTIONS(3399), + [anon_sym_TILDE] = ACTIONS(3399), + [anon_sym_void] = ACTIONS(3399), + [anon_sym_delete] = ACTIONS(3399), + [anon_sym_PLUS_PLUS] = ACTIONS(3399), + [anon_sym_DASH_DASH] = ACTIONS(3399), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3445), - [sym_number] = ACTIONS(3445), - [sym_private_property_identifier] = ACTIONS(3445), - [sym_this] = ACTIONS(3445), - [sym_super] = ACTIONS(3445), - [sym_true] = ACTIONS(3445), - [sym_false] = ACTIONS(3445), - [sym_null] = ACTIONS(3445), - [sym_undefined] = ACTIONS(3445), - [anon_sym_AT] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_readonly] = ACTIONS(3445), - [anon_sym_get] = ACTIONS(3445), - [anon_sym_set] = ACTIONS(3445), - [anon_sym_declare] = ACTIONS(3445), - [anon_sym_public] = ACTIONS(3445), - [anon_sym_private] = ACTIONS(3445), - [anon_sym_protected] = ACTIONS(3445), - [anon_sym_override] = ACTIONS(3445), - [anon_sym_module] = ACTIONS(3445), - [anon_sym_any] = ACTIONS(3445), - [anon_sym_number] = ACTIONS(3445), - [anon_sym_boolean] = ACTIONS(3445), - [anon_sym_string] = ACTIONS(3445), - [anon_sym_symbol] = ACTIONS(3445), - [anon_sym_object] = ACTIONS(3445), - [anon_sym_abstract] = ACTIONS(3445), - [anon_sym_interface] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), + [anon_sym_BQUOTE] = ACTIONS(3399), + [sym_number] = ACTIONS(3399), + [sym_private_property_identifier] = ACTIONS(3399), + [sym_this] = ACTIONS(3399), + [sym_super] = ACTIONS(3399), + [sym_true] = ACTIONS(3399), + [sym_false] = ACTIONS(3399), + [sym_null] = ACTIONS(3399), + [sym_undefined] = ACTIONS(3399), + [anon_sym_AT] = ACTIONS(3399), + [anon_sym_static] = ACTIONS(3399), + [anon_sym_readonly] = ACTIONS(3399), + [anon_sym_get] = ACTIONS(3399), + [anon_sym_set] = ACTIONS(3399), + [anon_sym_declare] = ACTIONS(3399), + [anon_sym_public] = ACTIONS(3399), + [anon_sym_private] = ACTIONS(3399), + [anon_sym_protected] = ACTIONS(3399), + [anon_sym_override] = ACTIONS(3399), + [anon_sym_module] = ACTIONS(3399), + [anon_sym_any] = ACTIONS(3399), + [anon_sym_number] = ACTIONS(3399), + [anon_sym_boolean] = ACTIONS(3399), + [anon_sym_string] = ACTIONS(3399), + [anon_sym_symbol] = ACTIONS(3399), + [anon_sym_object] = ACTIONS(3399), + [anon_sym_abstract] = ACTIONS(3399), + [anon_sym_interface] = ACTIONS(3399), + [anon_sym_enum] = ACTIONS(3399), [sym_html_comment] = ACTIONS(5), }, - [1242] = { - [sym_comment] = STATE(1242), - [sym_identifier] = ACTIONS(3447), - [anon_sym_export] = ACTIONS(3447), - [anon_sym_default] = ACTIONS(3447), - [anon_sym_type] = ACTIONS(3447), - [anon_sym_namespace] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_RBRACE] = ACTIONS(3447), - [anon_sym_typeof] = ACTIONS(3447), - [anon_sym_import] = ACTIONS(3447), - [anon_sym_with] = ACTIONS(3447), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_const] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_else] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_await] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_break] = ACTIONS(3447), - [anon_sym_continue] = ACTIONS(3447), - [anon_sym_debugger] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_throw] = ACTIONS(3447), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym_case] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LTtemplate_GT] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_class] = ACTIONS(3447), - [anon_sym_async] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_using] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3447), - [anon_sym_void] = ACTIONS(3447), - [anon_sym_delete] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_DASH_DASH] = ACTIONS(3447), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3447), - [sym_number] = ACTIONS(3447), - [sym_private_property_identifier] = ACTIONS(3447), - [sym_this] = ACTIONS(3447), - [sym_super] = ACTIONS(3447), - [sym_true] = ACTIONS(3447), - [sym_false] = ACTIONS(3447), - [sym_null] = ACTIONS(3447), - [sym_undefined] = ACTIONS(3447), - [anon_sym_AT] = ACTIONS(3447), - [anon_sym_static] = ACTIONS(3447), - [anon_sym_readonly] = ACTIONS(3447), - [anon_sym_get] = ACTIONS(3447), - [anon_sym_set] = ACTIONS(3447), - [anon_sym_declare] = ACTIONS(3447), - [anon_sym_public] = ACTIONS(3447), - [anon_sym_private] = ACTIONS(3447), - [anon_sym_protected] = ACTIONS(3447), - [anon_sym_override] = ACTIONS(3447), - [anon_sym_module] = ACTIONS(3447), - [anon_sym_any] = ACTIONS(3447), - [anon_sym_number] = ACTIONS(3447), - [anon_sym_boolean] = ACTIONS(3447), - [anon_sym_string] = ACTIONS(3447), - [anon_sym_symbol] = ACTIONS(3447), - [anon_sym_object] = ACTIONS(3447), - [anon_sym_abstract] = ACTIONS(3447), - [anon_sym_interface] = ACTIONS(3447), - [anon_sym_enum] = ACTIONS(3447), + [1227] = { + [sym_comment] = STATE(1227), + [sym_identifier] = ACTIONS(3393), + [anon_sym_export] = ACTIONS(3393), + [anon_sym_default] = ACTIONS(3393), + [anon_sym_type] = ACTIONS(3393), + [anon_sym_namespace] = ACTIONS(3393), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_RBRACE] = ACTIONS(3393), + [anon_sym_typeof] = ACTIONS(3393), + [anon_sym_import] = ACTIONS(3393), + [anon_sym_with] = ACTIONS(3393), + [anon_sym_var] = ACTIONS(3393), + [anon_sym_let] = ACTIONS(3393), + [anon_sym_const] = ACTIONS(3393), + [anon_sym_BANG] = ACTIONS(3393), + [anon_sym_if] = ACTIONS(3393), + [anon_sym_switch] = ACTIONS(3393), + [anon_sym_for] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_await] = ACTIONS(3393), + [anon_sym_while] = ACTIONS(3393), + [anon_sym_do] = ACTIONS(3393), + [anon_sym_try] = ACTIONS(3393), + [anon_sym_break] = ACTIONS(3393), + [anon_sym_continue] = ACTIONS(3393), + [anon_sym_debugger] = ACTIONS(3393), + [anon_sym_return] = ACTIONS(3393), + [anon_sym_throw] = ACTIONS(3393), + [anon_sym_SEMI] = ACTIONS(3393), + [anon_sym_case] = ACTIONS(3393), + [anon_sym_yield] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LTtemplate_GT] = ACTIONS(3393), + [anon_sym_DQUOTE] = ACTIONS(3393), + [anon_sym_SQUOTE] = ACTIONS(3393), + [anon_sym_class] = ACTIONS(3393), + [anon_sym_async] = ACTIONS(3393), + [anon_sym_function] = ACTIONS(3393), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_using] = ACTIONS(3393), + [anon_sym_PLUS] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3393), + [anon_sym_SLASH] = ACTIONS(3393), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_TILDE] = ACTIONS(3393), + [anon_sym_void] = ACTIONS(3393), + [anon_sym_delete] = ACTIONS(3393), + [anon_sym_PLUS_PLUS] = ACTIONS(3393), + [anon_sym_DASH_DASH] = ACTIONS(3393), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3393), + [sym_number] = ACTIONS(3393), + [sym_private_property_identifier] = ACTIONS(3393), + [sym_this] = ACTIONS(3393), + [sym_super] = ACTIONS(3393), + [sym_true] = ACTIONS(3393), + [sym_false] = ACTIONS(3393), + [sym_null] = ACTIONS(3393), + [sym_undefined] = ACTIONS(3393), + [anon_sym_AT] = ACTIONS(3393), + [anon_sym_static] = ACTIONS(3393), + [anon_sym_readonly] = ACTIONS(3393), + [anon_sym_get] = ACTIONS(3393), + [anon_sym_set] = ACTIONS(3393), + [anon_sym_declare] = ACTIONS(3393), + [anon_sym_public] = ACTIONS(3393), + [anon_sym_private] = ACTIONS(3393), + [anon_sym_protected] = ACTIONS(3393), + [anon_sym_override] = ACTIONS(3393), + [anon_sym_module] = ACTIONS(3393), + [anon_sym_any] = ACTIONS(3393), + [anon_sym_number] = ACTIONS(3393), + [anon_sym_boolean] = ACTIONS(3393), + [anon_sym_string] = ACTIONS(3393), + [anon_sym_symbol] = ACTIONS(3393), + [anon_sym_object] = ACTIONS(3393), + [anon_sym_abstract] = ACTIONS(3393), + [anon_sym_interface] = ACTIONS(3393), + [anon_sym_enum] = ACTIONS(3393), [sym_html_comment] = ACTIONS(5), }, - [1243] = { - [sym_comment] = STATE(1243), - [ts_builtin_sym_end] = ACTIONS(2364), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_LTtemplate_GT] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_using] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(2152), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2152), - [sym_number] = ACTIONS(2152), - [sym_private_property_identifier] = ACTIONS(2152), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_object] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - [sym__automatic_semicolon] = ACTIONS(2366), + [1228] = { + [sym_comment] = STATE(1228), + [sym_identifier] = ACTIONS(3443), + [anon_sym_export] = ACTIONS(3443), + [anon_sym_default] = ACTIONS(3443), + [anon_sym_type] = ACTIONS(3443), + [anon_sym_namespace] = ACTIONS(3443), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_RBRACE] = ACTIONS(3443), + [anon_sym_typeof] = ACTIONS(3443), + [anon_sym_import] = ACTIONS(3443), + [anon_sym_with] = ACTIONS(3443), + [anon_sym_var] = ACTIONS(3443), + [anon_sym_let] = ACTIONS(3443), + [anon_sym_const] = ACTIONS(3443), + [anon_sym_BANG] = ACTIONS(3443), + [anon_sym_if] = ACTIONS(3443), + [anon_sym_switch] = ACTIONS(3443), + [anon_sym_for] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3443), + [anon_sym_await] = ACTIONS(3443), + [anon_sym_while] = ACTIONS(3443), + [anon_sym_do] = ACTIONS(3443), + [anon_sym_try] = ACTIONS(3443), + [anon_sym_break] = ACTIONS(3443), + [anon_sym_continue] = ACTIONS(3443), + [anon_sym_debugger] = ACTIONS(3443), + [anon_sym_return] = ACTIONS(3443), + [anon_sym_throw] = ACTIONS(3443), + [anon_sym_SEMI] = ACTIONS(3443), + [anon_sym_case] = ACTIONS(3443), + [anon_sym_yield] = ACTIONS(3443), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LTtemplate_GT] = ACTIONS(3443), + [anon_sym_DQUOTE] = ACTIONS(3443), + [anon_sym_SQUOTE] = ACTIONS(3443), + [anon_sym_class] = ACTIONS(3443), + [anon_sym_async] = ACTIONS(3443), + [anon_sym_function] = ACTIONS(3443), + [anon_sym_new] = ACTIONS(3443), + [anon_sym_using] = ACTIONS(3443), + [anon_sym_PLUS] = ACTIONS(3443), + [anon_sym_DASH] = ACTIONS(3443), + [anon_sym_SLASH] = ACTIONS(3443), + [anon_sym_LT] = ACTIONS(3443), + [anon_sym_TILDE] = ACTIONS(3443), + [anon_sym_void] = ACTIONS(3443), + [anon_sym_delete] = ACTIONS(3443), + [anon_sym_PLUS_PLUS] = ACTIONS(3443), + [anon_sym_DASH_DASH] = ACTIONS(3443), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3443), + [sym_number] = ACTIONS(3443), + [sym_private_property_identifier] = ACTIONS(3443), + [sym_this] = ACTIONS(3443), + [sym_super] = ACTIONS(3443), + [sym_true] = ACTIONS(3443), + [sym_false] = ACTIONS(3443), + [sym_null] = ACTIONS(3443), + [sym_undefined] = ACTIONS(3443), + [anon_sym_AT] = ACTIONS(3443), + [anon_sym_static] = ACTIONS(3443), + [anon_sym_readonly] = ACTIONS(3443), + [anon_sym_get] = ACTIONS(3443), + [anon_sym_set] = ACTIONS(3443), + [anon_sym_declare] = ACTIONS(3443), + [anon_sym_public] = ACTIONS(3443), + [anon_sym_private] = ACTIONS(3443), + [anon_sym_protected] = ACTIONS(3443), + [anon_sym_override] = ACTIONS(3443), + [anon_sym_module] = ACTIONS(3443), + [anon_sym_any] = ACTIONS(3443), + [anon_sym_number] = ACTIONS(3443), + [anon_sym_boolean] = ACTIONS(3443), + [anon_sym_string] = ACTIONS(3443), + [anon_sym_symbol] = ACTIONS(3443), + [anon_sym_object] = ACTIONS(3443), + [anon_sym_abstract] = ACTIONS(3443), + [anon_sym_interface] = ACTIONS(3443), + [anon_sym_enum] = ACTIONS(3443), [sym_html_comment] = ACTIONS(5), }, - [1244] = { - [sym_comment] = STATE(1244), - [ts_builtin_sym_end] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2310), - [anon_sym_export] = ACTIONS(2310), - [anon_sym_type] = ACTIONS(2310), - [anon_sym_namespace] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_typeof] = ACTIONS(2310), - [anon_sym_import] = ACTIONS(2310), - [anon_sym_with] = ACTIONS(2310), - [anon_sym_var] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2310), - [anon_sym_const] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2310), - [anon_sym_else] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2310), - [anon_sym_switch] = ACTIONS(2310), - [anon_sym_for] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_await] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_do] = ACTIONS(2310), - [anon_sym_try] = 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(2310), - [anon_sym_yield] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LTtemplate_GT] = ACTIONS(2310), - [anon_sym_DQUOTE] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2310), - [anon_sym_class] = ACTIONS(2310), - [anon_sym_async] = ACTIONS(2310), - [anon_sym_function] = ACTIONS(2310), - [anon_sym_new] = ACTIONS(2310), - [anon_sym_using] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_SLASH] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_TILDE] = ACTIONS(2310), - [anon_sym_void] = ACTIONS(2310), - [anon_sym_delete] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2310), - [sym_number] = ACTIONS(2310), - [sym_private_property_identifier] = ACTIONS(2310), - [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(2310), - [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_abstract] = ACTIONS(2310), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2310), - [sym__automatic_semicolon] = ACTIONS(2396), + [1229] = { + [sym_comment] = STATE(1229), + [sym_identifier] = ACTIONS(3425), + [anon_sym_export] = ACTIONS(3425), + [anon_sym_default] = ACTIONS(3425), + [anon_sym_type] = ACTIONS(3425), + [anon_sym_namespace] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3425), + [anon_sym_RBRACE] = ACTIONS(3425), + [anon_sym_typeof] = ACTIONS(3425), + [anon_sym_import] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3425), + [anon_sym_var] = ACTIONS(3425), + [anon_sym_let] = ACTIONS(3425), + [anon_sym_const] = ACTIONS(3425), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_switch] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3425), + [anon_sym_await] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_try] = ACTIONS(3425), + [anon_sym_break] = ACTIONS(3425), + [anon_sym_continue] = ACTIONS(3425), + [anon_sym_debugger] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_throw] = ACTIONS(3425), + [anon_sym_SEMI] = ACTIONS(3425), + [anon_sym_case] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3425), + [anon_sym_LBRACK] = ACTIONS(3425), + [anon_sym_LTtemplate_GT] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(3425), + [anon_sym_SQUOTE] = ACTIONS(3425), + [anon_sym_class] = ACTIONS(3425), + [anon_sym_async] = ACTIONS(3425), + [anon_sym_function] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3425), + [anon_sym_using] = ACTIONS(3425), + [anon_sym_PLUS] = ACTIONS(3425), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_SLASH] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(3425), + [anon_sym_void] = ACTIONS(3425), + [anon_sym_delete] = ACTIONS(3425), + [anon_sym_PLUS_PLUS] = ACTIONS(3425), + [anon_sym_DASH_DASH] = ACTIONS(3425), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3425), + [sym_number] = ACTIONS(3425), + [sym_private_property_identifier] = ACTIONS(3425), + [sym_this] = ACTIONS(3425), + [sym_super] = ACTIONS(3425), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [sym_null] = ACTIONS(3425), + [sym_undefined] = ACTIONS(3425), + [anon_sym_AT] = ACTIONS(3425), + [anon_sym_static] = ACTIONS(3425), + [anon_sym_readonly] = ACTIONS(3425), + [anon_sym_get] = ACTIONS(3425), + [anon_sym_set] = ACTIONS(3425), + [anon_sym_declare] = ACTIONS(3425), + [anon_sym_public] = ACTIONS(3425), + [anon_sym_private] = ACTIONS(3425), + [anon_sym_protected] = ACTIONS(3425), + [anon_sym_override] = ACTIONS(3425), + [anon_sym_module] = ACTIONS(3425), + [anon_sym_any] = ACTIONS(3425), + [anon_sym_number] = ACTIONS(3425), + [anon_sym_boolean] = ACTIONS(3425), + [anon_sym_string] = ACTIONS(3425), + [anon_sym_symbol] = ACTIONS(3425), + [anon_sym_object] = ACTIONS(3425), + [anon_sym_abstract] = ACTIONS(3425), + [anon_sym_interface] = ACTIONS(3425), + [anon_sym_enum] = ACTIONS(3425), [sym_html_comment] = ACTIONS(5), }, - [1245] = { - [sym_comment] = STATE(1245), - [sym_identifier] = ACTIONS(3449), - [anon_sym_export] = ACTIONS(3449), - [anon_sym_default] = ACTIONS(3449), - [anon_sym_type] = ACTIONS(3449), - [anon_sym_namespace] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym_typeof] = ACTIONS(3449), - [anon_sym_import] = ACTIONS(3449), - [anon_sym_with] = ACTIONS(3449), - [anon_sym_var] = ACTIONS(3449), - [anon_sym_let] = ACTIONS(3449), - [anon_sym_const] = ACTIONS(3449), - [anon_sym_BANG] = ACTIONS(3449), - [anon_sym_else] = ACTIONS(3449), - [anon_sym_if] = ACTIONS(3449), - [anon_sym_switch] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_await] = ACTIONS(3449), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(3449), - [anon_sym_try] = ACTIONS(3449), - [anon_sym_break] = ACTIONS(3449), - [anon_sym_continue] = ACTIONS(3449), - [anon_sym_debugger] = ACTIONS(3449), - [anon_sym_return] = ACTIONS(3449), - [anon_sym_throw] = ACTIONS(3449), - [anon_sym_SEMI] = ACTIONS(3449), - [anon_sym_case] = ACTIONS(3449), - [anon_sym_yield] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LTtemplate_GT] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [anon_sym_SQUOTE] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_async] = ACTIONS(3449), - [anon_sym_function] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_using] = ACTIONS(3449), - [anon_sym_PLUS] = ACTIONS(3449), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_SLASH] = ACTIONS(3449), - [anon_sym_LT] = ACTIONS(3449), - [anon_sym_TILDE] = ACTIONS(3449), - [anon_sym_void] = ACTIONS(3449), - [anon_sym_delete] = ACTIONS(3449), - [anon_sym_PLUS_PLUS] = ACTIONS(3449), - [anon_sym_DASH_DASH] = ACTIONS(3449), + [1230] = { + [sym_comment] = STATE(1230), + [sym_identifier] = ACTIONS(3399), + [anon_sym_export] = ACTIONS(3399), + [anon_sym_default] = ACTIONS(3399), + [anon_sym_type] = ACTIONS(3399), + [anon_sym_namespace] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3399), + [anon_sym_RBRACE] = ACTIONS(3399), + [anon_sym_typeof] = ACTIONS(3399), + [anon_sym_import] = ACTIONS(3399), + [anon_sym_with] = ACTIONS(3399), + [anon_sym_var] = ACTIONS(3399), + [anon_sym_let] = ACTIONS(3399), + [anon_sym_const] = ACTIONS(3399), + [anon_sym_BANG] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_switch] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_await] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_break] = ACTIONS(3399), + [anon_sym_continue] = ACTIONS(3399), + [anon_sym_debugger] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_throw] = ACTIONS(3399), + [anon_sym_SEMI] = ACTIONS(3399), + [anon_sym_case] = ACTIONS(3399), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_LTtemplate_GT] = ACTIONS(3399), + [anon_sym_DQUOTE] = ACTIONS(3399), + [anon_sym_SQUOTE] = ACTIONS(3399), + [anon_sym_class] = ACTIONS(3399), + [anon_sym_async] = ACTIONS(3399), + [anon_sym_function] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_using] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_SLASH] = ACTIONS(3399), + [anon_sym_LT] = ACTIONS(3399), + [anon_sym_TILDE] = ACTIONS(3399), + [anon_sym_void] = ACTIONS(3399), + [anon_sym_delete] = ACTIONS(3399), + [anon_sym_PLUS_PLUS] = ACTIONS(3399), + [anon_sym_DASH_DASH] = ACTIONS(3399), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3449), - [sym_number] = ACTIONS(3449), - [sym_private_property_identifier] = ACTIONS(3449), - [sym_this] = ACTIONS(3449), - [sym_super] = ACTIONS(3449), - [sym_true] = ACTIONS(3449), - [sym_false] = ACTIONS(3449), - [sym_null] = ACTIONS(3449), - [sym_undefined] = ACTIONS(3449), - [anon_sym_AT] = ACTIONS(3449), - [anon_sym_static] = ACTIONS(3449), - [anon_sym_readonly] = ACTIONS(3449), - [anon_sym_get] = ACTIONS(3449), - [anon_sym_set] = ACTIONS(3449), - [anon_sym_declare] = ACTIONS(3449), - [anon_sym_public] = ACTIONS(3449), - [anon_sym_private] = ACTIONS(3449), - [anon_sym_protected] = ACTIONS(3449), - [anon_sym_override] = ACTIONS(3449), - [anon_sym_module] = ACTIONS(3449), - [anon_sym_any] = ACTIONS(3449), - [anon_sym_number] = ACTIONS(3449), - [anon_sym_boolean] = ACTIONS(3449), - [anon_sym_string] = ACTIONS(3449), - [anon_sym_symbol] = ACTIONS(3449), - [anon_sym_object] = ACTIONS(3449), - [anon_sym_abstract] = ACTIONS(3449), - [anon_sym_interface] = ACTIONS(3449), - [anon_sym_enum] = ACTIONS(3449), + [anon_sym_BQUOTE] = ACTIONS(3399), + [sym_number] = ACTIONS(3399), + [sym_private_property_identifier] = ACTIONS(3399), + [sym_this] = ACTIONS(3399), + [sym_super] = ACTIONS(3399), + [sym_true] = ACTIONS(3399), + [sym_false] = ACTIONS(3399), + [sym_null] = ACTIONS(3399), + [sym_undefined] = ACTIONS(3399), + [anon_sym_AT] = ACTIONS(3399), + [anon_sym_static] = ACTIONS(3399), + [anon_sym_readonly] = ACTIONS(3399), + [anon_sym_get] = ACTIONS(3399), + [anon_sym_set] = ACTIONS(3399), + [anon_sym_declare] = ACTIONS(3399), + [anon_sym_public] = ACTIONS(3399), + [anon_sym_private] = ACTIONS(3399), + [anon_sym_protected] = ACTIONS(3399), + [anon_sym_override] = ACTIONS(3399), + [anon_sym_module] = ACTIONS(3399), + [anon_sym_any] = ACTIONS(3399), + [anon_sym_number] = ACTIONS(3399), + [anon_sym_boolean] = ACTIONS(3399), + [anon_sym_string] = ACTIONS(3399), + [anon_sym_symbol] = ACTIONS(3399), + [anon_sym_object] = ACTIONS(3399), + [anon_sym_abstract] = ACTIONS(3399), + [anon_sym_interface] = ACTIONS(3399), + [anon_sym_enum] = ACTIONS(3399), [sym_html_comment] = ACTIONS(5), }, - [1246] = { - [sym_comment] = STATE(1246), - [sym_identifier] = ACTIONS(3451), - [anon_sym_export] = ACTIONS(3451), - [anon_sym_default] = ACTIONS(3451), - [anon_sym_type] = ACTIONS(3451), - [anon_sym_namespace] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3451), - [anon_sym_typeof] = ACTIONS(3451), - [anon_sym_import] = ACTIONS(3451), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_var] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_const] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_else] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_switch] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_await] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_break] = ACTIONS(3451), - [anon_sym_continue] = ACTIONS(3451), - [anon_sym_debugger] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_throw] = ACTIONS(3451), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym_case] = ACTIONS(3451), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LTtemplate_GT] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_class] = ACTIONS(3451), - [anon_sym_async] = ACTIONS(3451), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_using] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_SLASH] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_void] = ACTIONS(3451), - [anon_sym_delete] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_DASH_DASH] = ACTIONS(3451), + [1231] = { + [sym_comment] = STATE(1231), + [sym_identifier] = ACTIONS(3405), + [anon_sym_export] = ACTIONS(3405), + [anon_sym_default] = ACTIONS(3405), + [anon_sym_type] = ACTIONS(3405), + [anon_sym_namespace] = ACTIONS(3405), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_RBRACE] = ACTIONS(3405), + [anon_sym_typeof] = ACTIONS(3405), + [anon_sym_import] = ACTIONS(3405), + [anon_sym_with] = ACTIONS(3405), + [anon_sym_var] = ACTIONS(3405), + [anon_sym_let] = ACTIONS(3405), + [anon_sym_const] = ACTIONS(3405), + [anon_sym_BANG] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3405), + [anon_sym_switch] = ACTIONS(3405), + [anon_sym_for] = ACTIONS(3405), + [anon_sym_LPAREN] = ACTIONS(3405), + [anon_sym_await] = ACTIONS(3405), + [anon_sym_while] = ACTIONS(3405), + [anon_sym_do] = ACTIONS(3405), + [anon_sym_try] = ACTIONS(3405), + [anon_sym_break] = ACTIONS(3405), + [anon_sym_continue] = ACTIONS(3405), + [anon_sym_debugger] = ACTIONS(3405), + [anon_sym_return] = ACTIONS(3405), + [anon_sym_throw] = ACTIONS(3405), + [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_case] = ACTIONS(3405), + [anon_sym_yield] = ACTIONS(3405), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_LTtemplate_GT] = ACTIONS(3405), + [anon_sym_DQUOTE] = ACTIONS(3405), + [anon_sym_SQUOTE] = ACTIONS(3405), + [anon_sym_class] = ACTIONS(3405), + [anon_sym_async] = ACTIONS(3405), + [anon_sym_function] = ACTIONS(3405), + [anon_sym_new] = ACTIONS(3405), + [anon_sym_using] = ACTIONS(3405), + [anon_sym_PLUS] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(3405), + [anon_sym_SLASH] = ACTIONS(3405), + [anon_sym_LT] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3405), + [anon_sym_void] = ACTIONS(3405), + [anon_sym_delete] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_DASH_DASH] = ACTIONS(3405), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3451), - [sym_number] = ACTIONS(3451), - [sym_private_property_identifier] = ACTIONS(3451), - [sym_this] = ACTIONS(3451), - [sym_super] = ACTIONS(3451), - [sym_true] = ACTIONS(3451), - [sym_false] = ACTIONS(3451), - [sym_null] = ACTIONS(3451), - [sym_undefined] = ACTIONS(3451), - [anon_sym_AT] = ACTIONS(3451), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3451), - [anon_sym_get] = ACTIONS(3451), - [anon_sym_set] = ACTIONS(3451), - [anon_sym_declare] = ACTIONS(3451), - [anon_sym_public] = ACTIONS(3451), - [anon_sym_private] = ACTIONS(3451), - [anon_sym_protected] = ACTIONS(3451), - [anon_sym_override] = ACTIONS(3451), - [anon_sym_module] = ACTIONS(3451), - [anon_sym_any] = ACTIONS(3451), - [anon_sym_number] = ACTIONS(3451), - [anon_sym_boolean] = ACTIONS(3451), - [anon_sym_string] = ACTIONS(3451), - [anon_sym_symbol] = ACTIONS(3451), - [anon_sym_object] = ACTIONS(3451), - [anon_sym_abstract] = ACTIONS(3451), - [anon_sym_interface] = ACTIONS(3451), - [anon_sym_enum] = ACTIONS(3451), + [anon_sym_BQUOTE] = ACTIONS(3405), + [sym_number] = ACTIONS(3405), + [sym_private_property_identifier] = ACTIONS(3405), + [sym_this] = ACTIONS(3405), + [sym_super] = ACTIONS(3405), + [sym_true] = ACTIONS(3405), + [sym_false] = ACTIONS(3405), + [sym_null] = ACTIONS(3405), + [sym_undefined] = ACTIONS(3405), + [anon_sym_AT] = ACTIONS(3405), + [anon_sym_static] = ACTIONS(3405), + [anon_sym_readonly] = ACTIONS(3405), + [anon_sym_get] = ACTIONS(3405), + [anon_sym_set] = ACTIONS(3405), + [anon_sym_declare] = ACTIONS(3405), + [anon_sym_public] = ACTIONS(3405), + [anon_sym_private] = ACTIONS(3405), + [anon_sym_protected] = ACTIONS(3405), + [anon_sym_override] = ACTIONS(3405), + [anon_sym_module] = ACTIONS(3405), + [anon_sym_any] = ACTIONS(3405), + [anon_sym_number] = ACTIONS(3405), + [anon_sym_boolean] = ACTIONS(3405), + [anon_sym_string] = ACTIONS(3405), + [anon_sym_symbol] = ACTIONS(3405), + [anon_sym_object] = ACTIONS(3405), + [anon_sym_abstract] = ACTIONS(3405), + [anon_sym_interface] = ACTIONS(3405), + [anon_sym_enum] = ACTIONS(3405), [sym_html_comment] = ACTIONS(5), }, - [1247] = { - [sym_comment] = STATE(1247), - [sym_identifier] = ACTIONS(3451), - [anon_sym_export] = ACTIONS(3451), - [anon_sym_default] = ACTIONS(3451), - [anon_sym_type] = ACTIONS(3451), - [anon_sym_namespace] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3451), - [anon_sym_typeof] = ACTIONS(3451), - [anon_sym_import] = ACTIONS(3451), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_var] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_const] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_else] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_switch] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_await] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_break] = ACTIONS(3451), - [anon_sym_continue] = ACTIONS(3451), - [anon_sym_debugger] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_throw] = ACTIONS(3451), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym_case] = ACTIONS(3451), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LTtemplate_GT] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_class] = ACTIONS(3451), - [anon_sym_async] = ACTIONS(3451), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_using] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_SLASH] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_void] = ACTIONS(3451), - [anon_sym_delete] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_DASH_DASH] = ACTIONS(3451), + [1232] = { + [sym_comment] = STATE(1232), + [ts_builtin_sym_end] = ACTIONS(3473), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3347), + [anon_sym_type] = ACTIONS(3347), + [anon_sym_namespace] = ACTIONS(3347), + [anon_sym_LBRACE] = ACTIONS(3347), + [anon_sym_RBRACE] = ACTIONS(3347), + [anon_sym_typeof] = ACTIONS(3347), + [anon_sym_import] = ACTIONS(3347), + [anon_sym_with] = ACTIONS(3347), + [anon_sym_var] = ACTIONS(3347), + [anon_sym_let] = ACTIONS(3347), + [anon_sym_const] = ACTIONS(3347), + [anon_sym_BANG] = ACTIONS(3347), + [anon_sym_else] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(3347), + [anon_sym_switch] = ACTIONS(3347), + [anon_sym_for] = ACTIONS(3347), + [anon_sym_LPAREN] = ACTIONS(3347), + [anon_sym_await] = ACTIONS(3347), + [anon_sym_while] = ACTIONS(3347), + [anon_sym_do] = ACTIONS(3347), + [anon_sym_try] = ACTIONS(3347), + [anon_sym_break] = ACTIONS(3347), + [anon_sym_continue] = ACTIONS(3347), + [anon_sym_debugger] = ACTIONS(3347), + [anon_sym_return] = ACTIONS(3347), + [anon_sym_throw] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3347), + [anon_sym_yield] = ACTIONS(3347), + [anon_sym_LBRACK] = ACTIONS(3347), + [anon_sym_LTtemplate_GT] = ACTIONS(3347), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_class] = ACTIONS(3347), + [anon_sym_async] = ACTIONS(3347), + [anon_sym_function] = ACTIONS(3347), + [anon_sym_new] = ACTIONS(3347), + [anon_sym_using] = ACTIONS(3347), + [anon_sym_PLUS] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3347), + [anon_sym_SLASH] = ACTIONS(3347), + [anon_sym_LT] = ACTIONS(3347), + [anon_sym_TILDE] = ACTIONS(3347), + [anon_sym_void] = ACTIONS(3347), + [anon_sym_delete] = ACTIONS(3347), + [anon_sym_PLUS_PLUS] = ACTIONS(3347), + [anon_sym_DASH_DASH] = ACTIONS(3347), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3451), - [sym_number] = ACTIONS(3451), - [sym_private_property_identifier] = ACTIONS(3451), - [sym_this] = ACTIONS(3451), - [sym_super] = ACTIONS(3451), - [sym_true] = ACTIONS(3451), - [sym_false] = ACTIONS(3451), - [sym_null] = ACTIONS(3451), - [sym_undefined] = ACTIONS(3451), - [anon_sym_AT] = ACTIONS(3451), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3451), - [anon_sym_get] = ACTIONS(3451), - [anon_sym_set] = ACTIONS(3451), - [anon_sym_declare] = ACTIONS(3451), - [anon_sym_public] = ACTIONS(3451), - [anon_sym_private] = ACTIONS(3451), - [anon_sym_protected] = ACTIONS(3451), - [anon_sym_override] = ACTIONS(3451), - [anon_sym_module] = ACTIONS(3451), - [anon_sym_any] = ACTIONS(3451), - [anon_sym_number] = ACTIONS(3451), - [anon_sym_boolean] = ACTIONS(3451), - [anon_sym_string] = ACTIONS(3451), - [anon_sym_symbol] = ACTIONS(3451), - [anon_sym_object] = ACTIONS(3451), - [anon_sym_abstract] = ACTIONS(3451), - [anon_sym_interface] = ACTIONS(3451), - [anon_sym_enum] = ACTIONS(3451), + [anon_sym_BQUOTE] = ACTIONS(3347), + [sym_number] = ACTIONS(3347), + [sym_private_property_identifier] = ACTIONS(3347), + [sym_this] = ACTIONS(3347), + [sym_super] = ACTIONS(3347), + [sym_true] = ACTIONS(3347), + [sym_false] = ACTIONS(3347), + [sym_null] = ACTIONS(3347), + [sym_undefined] = ACTIONS(3347), + [anon_sym_AT] = ACTIONS(3347), + [anon_sym_static] = ACTIONS(3347), + [anon_sym_readonly] = ACTIONS(3347), + [anon_sym_get] = ACTIONS(3347), + [anon_sym_set] = ACTIONS(3347), + [anon_sym_declare] = ACTIONS(3347), + [anon_sym_public] = ACTIONS(3347), + [anon_sym_private] = ACTIONS(3347), + [anon_sym_protected] = ACTIONS(3347), + [anon_sym_override] = ACTIONS(3347), + [anon_sym_module] = ACTIONS(3347), + [anon_sym_any] = ACTIONS(3347), + [anon_sym_number] = ACTIONS(3347), + [anon_sym_boolean] = ACTIONS(3347), + [anon_sym_string] = ACTIONS(3347), + [anon_sym_symbol] = ACTIONS(3347), + [anon_sym_object] = ACTIONS(3347), + [anon_sym_abstract] = ACTIONS(3347), + [anon_sym_interface] = ACTIONS(3347), + [anon_sym_enum] = ACTIONS(3347), [sym_html_comment] = ACTIONS(5), }, - [1248] = { - [sym_comment] = STATE(1248), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_catch] = ACTIONS(2190), - [anon_sym_finally] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), + [1233] = { + [sym_comment] = STATE(1233), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_default] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_case] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, - [1249] = { - [sym_comment] = STATE(1249), - [sym_identifier] = ACTIONS(3453), - [anon_sym_export] = ACTIONS(3453), - [anon_sym_default] = ACTIONS(3453), - [anon_sym_type] = ACTIONS(3453), - [anon_sym_namespace] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_RBRACE] = ACTIONS(3453), - [anon_sym_typeof] = ACTIONS(3453), - [anon_sym_import] = ACTIONS(3453), - [anon_sym_with] = ACTIONS(3453), - [anon_sym_var] = ACTIONS(3453), - [anon_sym_let] = ACTIONS(3453), - [anon_sym_const] = ACTIONS(3453), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_else] = ACTIONS(3453), - [anon_sym_if] = ACTIONS(3453), - [anon_sym_switch] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3453), - [anon_sym_await] = ACTIONS(3453), - [anon_sym_while] = ACTIONS(3453), - [anon_sym_do] = ACTIONS(3453), - [anon_sym_try] = ACTIONS(3453), - [anon_sym_break] = ACTIONS(3453), - [anon_sym_continue] = ACTIONS(3453), - [anon_sym_debugger] = ACTIONS(3453), - [anon_sym_return] = ACTIONS(3453), - [anon_sym_throw] = ACTIONS(3453), - [anon_sym_SEMI] = ACTIONS(3453), - [anon_sym_case] = ACTIONS(3453), - [anon_sym_yield] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_LTtemplate_GT] = ACTIONS(3453), - [anon_sym_DQUOTE] = ACTIONS(3453), - [anon_sym_SQUOTE] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_async] = ACTIONS(3453), - [anon_sym_function] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3453), - [anon_sym_using] = ACTIONS(3453), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_SLASH] = ACTIONS(3453), - [anon_sym_LT] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(3453), - [anon_sym_void] = ACTIONS(3453), - [anon_sym_delete] = ACTIONS(3453), - [anon_sym_PLUS_PLUS] = ACTIONS(3453), - [anon_sym_DASH_DASH] = ACTIONS(3453), + [1234] = { + [sym_comment] = STATE(1234), + [ts_builtin_sym_end] = ACTIONS(3475), + [sym_identifier] = ACTIONS(3423), + [anon_sym_export] = ACTIONS(3423), + [anon_sym_type] = ACTIONS(3423), + [anon_sym_namespace] = ACTIONS(3423), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_RBRACE] = ACTIONS(3423), + [anon_sym_typeof] = ACTIONS(3423), + [anon_sym_import] = ACTIONS(3423), + [anon_sym_with] = ACTIONS(3423), + [anon_sym_var] = ACTIONS(3423), + [anon_sym_let] = ACTIONS(3423), + [anon_sym_const] = ACTIONS(3423), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_else] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3423), + [anon_sym_switch] = ACTIONS(3423), + [anon_sym_for] = ACTIONS(3423), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_await] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3423), + [anon_sym_do] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3423), + [anon_sym_break] = ACTIONS(3423), + [anon_sym_continue] = ACTIONS(3423), + [anon_sym_debugger] = ACTIONS(3423), + [anon_sym_return] = ACTIONS(3423), + [anon_sym_throw] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_LTtemplate_GT] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [anon_sym_SQUOTE] = ACTIONS(3423), + [anon_sym_class] = ACTIONS(3423), + [anon_sym_async] = ACTIONS(3423), + [anon_sym_function] = ACTIONS(3423), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_using] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [anon_sym_SLASH] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(3423), + [anon_sym_void] = ACTIONS(3423), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_PLUS_PLUS] = ACTIONS(3423), + [anon_sym_DASH_DASH] = ACTIONS(3423), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3453), - [sym_number] = ACTIONS(3453), - [sym_private_property_identifier] = ACTIONS(3453), - [sym_this] = ACTIONS(3453), - [sym_super] = ACTIONS(3453), - [sym_true] = ACTIONS(3453), - [sym_false] = ACTIONS(3453), - [sym_null] = ACTIONS(3453), - [sym_undefined] = ACTIONS(3453), - [anon_sym_AT] = ACTIONS(3453), - [anon_sym_static] = ACTIONS(3453), - [anon_sym_readonly] = ACTIONS(3453), - [anon_sym_get] = ACTIONS(3453), - [anon_sym_set] = ACTIONS(3453), - [anon_sym_declare] = ACTIONS(3453), - [anon_sym_public] = ACTIONS(3453), - [anon_sym_private] = ACTIONS(3453), - [anon_sym_protected] = ACTIONS(3453), - [anon_sym_override] = ACTIONS(3453), - [anon_sym_module] = ACTIONS(3453), - [anon_sym_any] = ACTIONS(3453), - [anon_sym_number] = ACTIONS(3453), - [anon_sym_boolean] = ACTIONS(3453), - [anon_sym_string] = ACTIONS(3453), - [anon_sym_symbol] = ACTIONS(3453), - [anon_sym_object] = ACTIONS(3453), - [anon_sym_abstract] = ACTIONS(3453), - [anon_sym_interface] = ACTIONS(3453), - [anon_sym_enum] = ACTIONS(3453), + [anon_sym_BQUOTE] = ACTIONS(3423), + [sym_number] = ACTIONS(3423), + [sym_private_property_identifier] = ACTIONS(3423), + [sym_this] = ACTIONS(3423), + [sym_super] = ACTIONS(3423), + [sym_true] = ACTIONS(3423), + [sym_false] = ACTIONS(3423), + [sym_null] = ACTIONS(3423), + [sym_undefined] = ACTIONS(3423), + [anon_sym_AT] = ACTIONS(3423), + [anon_sym_static] = ACTIONS(3423), + [anon_sym_readonly] = ACTIONS(3423), + [anon_sym_get] = ACTIONS(3423), + [anon_sym_set] = ACTIONS(3423), + [anon_sym_declare] = ACTIONS(3423), + [anon_sym_public] = ACTIONS(3423), + [anon_sym_private] = ACTIONS(3423), + [anon_sym_protected] = ACTIONS(3423), + [anon_sym_override] = ACTIONS(3423), + [anon_sym_module] = ACTIONS(3423), + [anon_sym_any] = ACTIONS(3423), + [anon_sym_number] = ACTIONS(3423), + [anon_sym_boolean] = ACTIONS(3423), + [anon_sym_string] = ACTIONS(3423), + [anon_sym_symbol] = ACTIONS(3423), + [anon_sym_object] = ACTIONS(3423), + [anon_sym_abstract] = ACTIONS(3423), + [anon_sym_interface] = ACTIONS(3423), + [anon_sym_enum] = ACTIONS(3423), [sym_html_comment] = ACTIONS(5), }, - [1250] = { - [sym_comment] = STATE(1250), - [sym_identifier] = ACTIONS(3455), - [anon_sym_export] = ACTIONS(3455), - [anon_sym_default] = ACTIONS(3455), - [anon_sym_type] = ACTIONS(3455), - [anon_sym_namespace] = ACTIONS(3455), - [anon_sym_LBRACE] = ACTIONS(3455), - [anon_sym_RBRACE] = ACTIONS(3455), - [anon_sym_typeof] = ACTIONS(3455), - [anon_sym_import] = ACTIONS(3455), - [anon_sym_with] = ACTIONS(3455), - [anon_sym_var] = ACTIONS(3455), - [anon_sym_let] = ACTIONS(3455), - [anon_sym_const] = ACTIONS(3455), - [anon_sym_BANG] = ACTIONS(3455), - [anon_sym_else] = ACTIONS(3455), - [anon_sym_if] = ACTIONS(3455), - [anon_sym_switch] = ACTIONS(3455), - [anon_sym_for] = ACTIONS(3455), - [anon_sym_LPAREN] = ACTIONS(3455), - [anon_sym_await] = ACTIONS(3455), - [anon_sym_while] = ACTIONS(3455), - [anon_sym_do] = ACTIONS(3455), - [anon_sym_try] = ACTIONS(3455), - [anon_sym_break] = ACTIONS(3455), - [anon_sym_continue] = ACTIONS(3455), - [anon_sym_debugger] = ACTIONS(3455), - [anon_sym_return] = ACTIONS(3455), - [anon_sym_throw] = ACTIONS(3455), - [anon_sym_SEMI] = ACTIONS(3455), - [anon_sym_case] = ACTIONS(3455), - [anon_sym_yield] = ACTIONS(3455), - [anon_sym_LBRACK] = ACTIONS(3455), - [anon_sym_LTtemplate_GT] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3455), - [anon_sym_class] = ACTIONS(3455), - [anon_sym_async] = ACTIONS(3455), - [anon_sym_function] = ACTIONS(3455), - [anon_sym_new] = ACTIONS(3455), - [anon_sym_using] = ACTIONS(3455), - [anon_sym_PLUS] = ACTIONS(3455), - [anon_sym_DASH] = ACTIONS(3455), - [anon_sym_SLASH] = ACTIONS(3455), - [anon_sym_LT] = ACTIONS(3455), - [anon_sym_TILDE] = ACTIONS(3455), - [anon_sym_void] = ACTIONS(3455), - [anon_sym_delete] = ACTIONS(3455), - [anon_sym_PLUS_PLUS] = ACTIONS(3455), - [anon_sym_DASH_DASH] = ACTIONS(3455), + [1235] = { + [sym_comment] = STATE(1235), + [ts_builtin_sym_end] = ACTIONS(3477), + [sym_identifier] = ACTIONS(3349), + [anon_sym_export] = ACTIONS(3349), + [anon_sym_type] = ACTIONS(3349), + [anon_sym_namespace] = ACTIONS(3349), + [anon_sym_LBRACE] = ACTIONS(3349), + [anon_sym_RBRACE] = ACTIONS(3349), + [anon_sym_typeof] = ACTIONS(3349), + [anon_sym_import] = ACTIONS(3349), + [anon_sym_with] = ACTIONS(3349), + [anon_sym_var] = ACTIONS(3349), + [anon_sym_let] = ACTIONS(3349), + [anon_sym_const] = ACTIONS(3349), + [anon_sym_BANG] = ACTIONS(3349), + [anon_sym_else] = ACTIONS(3349), + [anon_sym_if] = ACTIONS(3349), + [anon_sym_switch] = ACTIONS(3349), + [anon_sym_for] = ACTIONS(3349), + [anon_sym_LPAREN] = ACTIONS(3349), + [anon_sym_await] = ACTIONS(3349), + [anon_sym_while] = ACTIONS(3349), + [anon_sym_do] = ACTIONS(3349), + [anon_sym_try] = ACTIONS(3349), + [anon_sym_break] = ACTIONS(3349), + [anon_sym_continue] = ACTIONS(3349), + [anon_sym_debugger] = ACTIONS(3349), + [anon_sym_return] = ACTIONS(3349), + [anon_sym_throw] = ACTIONS(3349), + [anon_sym_SEMI] = ACTIONS(3349), + [anon_sym_yield] = ACTIONS(3349), + [anon_sym_LBRACK] = ACTIONS(3349), + [anon_sym_LTtemplate_GT] = ACTIONS(3349), + [anon_sym_DQUOTE] = ACTIONS(3349), + [anon_sym_SQUOTE] = ACTIONS(3349), + [anon_sym_class] = ACTIONS(3349), + [anon_sym_async] = ACTIONS(3349), + [anon_sym_function] = ACTIONS(3349), + [anon_sym_new] = ACTIONS(3349), + [anon_sym_using] = ACTIONS(3349), + [anon_sym_PLUS] = ACTIONS(3349), + [anon_sym_DASH] = ACTIONS(3349), + [anon_sym_SLASH] = ACTIONS(3349), + [anon_sym_LT] = ACTIONS(3349), + [anon_sym_TILDE] = ACTIONS(3349), + [anon_sym_void] = ACTIONS(3349), + [anon_sym_delete] = ACTIONS(3349), + [anon_sym_PLUS_PLUS] = ACTIONS(3349), + [anon_sym_DASH_DASH] = ACTIONS(3349), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3455), - [sym_number] = ACTIONS(3455), - [sym_private_property_identifier] = ACTIONS(3455), - [sym_this] = ACTIONS(3455), - [sym_super] = ACTIONS(3455), - [sym_true] = ACTIONS(3455), - [sym_false] = ACTIONS(3455), - [sym_null] = ACTIONS(3455), - [sym_undefined] = ACTIONS(3455), - [anon_sym_AT] = ACTIONS(3455), - [anon_sym_static] = ACTIONS(3455), - [anon_sym_readonly] = ACTIONS(3455), - [anon_sym_get] = ACTIONS(3455), - [anon_sym_set] = ACTIONS(3455), - [anon_sym_declare] = ACTIONS(3455), - [anon_sym_public] = ACTIONS(3455), - [anon_sym_private] = ACTIONS(3455), - [anon_sym_protected] = ACTIONS(3455), - [anon_sym_override] = ACTIONS(3455), - [anon_sym_module] = ACTIONS(3455), - [anon_sym_any] = ACTIONS(3455), - [anon_sym_number] = ACTIONS(3455), - [anon_sym_boolean] = ACTIONS(3455), - [anon_sym_string] = ACTIONS(3455), - [anon_sym_symbol] = ACTIONS(3455), - [anon_sym_object] = ACTIONS(3455), - [anon_sym_abstract] = ACTIONS(3455), - [anon_sym_interface] = ACTIONS(3455), - [anon_sym_enum] = ACTIONS(3455), + [anon_sym_BQUOTE] = ACTIONS(3349), + [sym_number] = ACTIONS(3349), + [sym_private_property_identifier] = ACTIONS(3349), + [sym_this] = ACTIONS(3349), + [sym_super] = ACTIONS(3349), + [sym_true] = ACTIONS(3349), + [sym_false] = ACTIONS(3349), + [sym_null] = ACTIONS(3349), + [sym_undefined] = ACTIONS(3349), + [anon_sym_AT] = ACTIONS(3349), + [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_abstract] = ACTIONS(3349), + [anon_sym_interface] = ACTIONS(3349), + [anon_sym_enum] = ACTIONS(3349), [sym_html_comment] = ACTIONS(5), }, - [1251] = { - [sym_comment] = STATE(1251), - [sym_identifier] = ACTIONS(3457), - [anon_sym_export] = ACTIONS(3457), - [anon_sym_default] = ACTIONS(3457), - [anon_sym_type] = ACTIONS(3457), - [anon_sym_namespace] = ACTIONS(3457), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_RBRACE] = ACTIONS(3457), - [anon_sym_typeof] = ACTIONS(3457), - [anon_sym_import] = ACTIONS(3457), - [anon_sym_with] = ACTIONS(3457), - [anon_sym_var] = ACTIONS(3457), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_const] = ACTIONS(3457), - [anon_sym_BANG] = ACTIONS(3457), - [anon_sym_else] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_switch] = ACTIONS(3457), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_await] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_break] = ACTIONS(3457), - [anon_sym_continue] = ACTIONS(3457), - [anon_sym_debugger] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_throw] = ACTIONS(3457), - [anon_sym_SEMI] = ACTIONS(3457), - [anon_sym_case] = ACTIONS(3457), - [anon_sym_yield] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_LTtemplate_GT] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [anon_sym_SQUOTE] = ACTIONS(3457), - [anon_sym_class] = ACTIONS(3457), - [anon_sym_async] = ACTIONS(3457), - [anon_sym_function] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_using] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_SLASH] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3457), - [anon_sym_void] = ACTIONS(3457), - [anon_sym_delete] = ACTIONS(3457), - [anon_sym_PLUS_PLUS] = ACTIONS(3457), - [anon_sym_DASH_DASH] = ACTIONS(3457), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3457), - [sym_number] = ACTIONS(3457), - [sym_private_property_identifier] = ACTIONS(3457), - [sym_this] = ACTIONS(3457), - [sym_super] = ACTIONS(3457), - [sym_true] = ACTIONS(3457), - [sym_false] = ACTIONS(3457), - [sym_null] = ACTIONS(3457), - [sym_undefined] = ACTIONS(3457), - [anon_sym_AT] = ACTIONS(3457), - [anon_sym_static] = ACTIONS(3457), - [anon_sym_readonly] = ACTIONS(3457), - [anon_sym_get] = ACTIONS(3457), - [anon_sym_set] = ACTIONS(3457), - [anon_sym_declare] = ACTIONS(3457), - [anon_sym_public] = ACTIONS(3457), - [anon_sym_private] = ACTIONS(3457), - [anon_sym_protected] = ACTIONS(3457), - [anon_sym_override] = ACTIONS(3457), - [anon_sym_module] = ACTIONS(3457), - [anon_sym_any] = ACTIONS(3457), - [anon_sym_number] = ACTIONS(3457), - [anon_sym_boolean] = ACTIONS(3457), - [anon_sym_string] = ACTIONS(3457), - [anon_sym_symbol] = ACTIONS(3457), - [anon_sym_object] = ACTIONS(3457), - [anon_sym_abstract] = ACTIONS(3457), - [anon_sym_interface] = ACTIONS(3457), - [anon_sym_enum] = ACTIONS(3457), + [1236] = { + [sym_comment] = STATE(1236), + [sym_identifier] = ACTIONS(3419), + [anon_sym_export] = ACTIONS(3419), + [anon_sym_default] = ACTIONS(3419), + [anon_sym_type] = ACTIONS(3419), + [anon_sym_namespace] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_RBRACE] = ACTIONS(3419), + [anon_sym_typeof] = ACTIONS(3419), + [anon_sym_import] = ACTIONS(3419), + [anon_sym_with] = ACTIONS(3419), + [anon_sym_var] = ACTIONS(3419), + [anon_sym_let] = ACTIONS(3419), + [anon_sym_const] = ACTIONS(3419), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_await] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_debugger] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_throw] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_case] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_LTtemplate_GT] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_class] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(3419), + [anon_sym_function] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3419), + [anon_sym_using] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_SLASH] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(3419), + [anon_sym_void] = ACTIONS(3419), + [anon_sym_delete] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3419), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3419), + [sym_number] = ACTIONS(3419), + [sym_private_property_identifier] = ACTIONS(3419), + [sym_this] = ACTIONS(3419), + [sym_super] = ACTIONS(3419), + [sym_true] = ACTIONS(3419), + [sym_false] = ACTIONS(3419), + [sym_null] = ACTIONS(3419), + [sym_undefined] = ACTIONS(3419), + [anon_sym_AT] = ACTIONS(3419), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_readonly] = ACTIONS(3419), + [anon_sym_get] = ACTIONS(3419), + [anon_sym_set] = ACTIONS(3419), + [anon_sym_declare] = ACTIONS(3419), + [anon_sym_public] = ACTIONS(3419), + [anon_sym_private] = ACTIONS(3419), + [anon_sym_protected] = ACTIONS(3419), + [anon_sym_override] = ACTIONS(3419), + [anon_sym_module] = ACTIONS(3419), + [anon_sym_any] = ACTIONS(3419), + [anon_sym_number] = ACTIONS(3419), + [anon_sym_boolean] = ACTIONS(3419), + [anon_sym_string] = ACTIONS(3419), + [anon_sym_symbol] = ACTIONS(3419), + [anon_sym_object] = ACTIONS(3419), + [anon_sym_abstract] = ACTIONS(3419), + [anon_sym_interface] = ACTIONS(3419), + [anon_sym_enum] = ACTIONS(3419), [sym_html_comment] = ACTIONS(5), }, - [1252] = { - [sym_comment] = STATE(1252), - [sym_identifier] = ACTIONS(3459), - [anon_sym_export] = ACTIONS(3459), - [anon_sym_default] = ACTIONS(3459), - [anon_sym_type] = ACTIONS(3459), - [anon_sym_namespace] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_typeof] = ACTIONS(3459), - [anon_sym_import] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3459), - [anon_sym_const] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_else] = ACTIONS(3459), - [anon_sym_if] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_await] = ACTIONS(3459), - [anon_sym_while] = ACTIONS(3459), - [anon_sym_do] = ACTIONS(3459), - [anon_sym_try] = ACTIONS(3459), - [anon_sym_break] = ACTIONS(3459), - [anon_sym_continue] = ACTIONS(3459), - [anon_sym_debugger] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3459), - [anon_sym_throw] = ACTIONS(3459), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_case] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LTtemplate_GT] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_class] = ACTIONS(3459), - [anon_sym_async] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3459), - [anon_sym_using] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_void] = ACTIONS(3459), - [anon_sym_delete] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3459), - [sym_number] = ACTIONS(3459), - [sym_private_property_identifier] = ACTIONS(3459), - [sym_this] = ACTIONS(3459), - [sym_super] = ACTIONS(3459), - [sym_true] = ACTIONS(3459), - [sym_false] = ACTIONS(3459), - [sym_null] = ACTIONS(3459), - [sym_undefined] = ACTIONS(3459), - [anon_sym_AT] = ACTIONS(3459), - [anon_sym_static] = ACTIONS(3459), - [anon_sym_readonly] = ACTIONS(3459), - [anon_sym_get] = ACTIONS(3459), - [anon_sym_set] = ACTIONS(3459), - [anon_sym_declare] = ACTIONS(3459), - [anon_sym_public] = ACTIONS(3459), - [anon_sym_private] = ACTIONS(3459), - [anon_sym_protected] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3459), - [anon_sym_any] = ACTIONS(3459), - [anon_sym_number] = ACTIONS(3459), - [anon_sym_boolean] = ACTIONS(3459), - [anon_sym_string] = ACTIONS(3459), - [anon_sym_symbol] = ACTIONS(3459), - [anon_sym_object] = ACTIONS(3459), - [anon_sym_abstract] = ACTIONS(3459), - [anon_sym_interface] = ACTIONS(3459), - [anon_sym_enum] = ACTIONS(3459), + [1237] = { + [sym_comment] = STATE(1237), + [sym_identifier] = ACTIONS(3421), + [anon_sym_export] = ACTIONS(3421), + [anon_sym_default] = ACTIONS(3421), + [anon_sym_type] = ACTIONS(3421), + [anon_sym_namespace] = ACTIONS(3421), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_RBRACE] = ACTIONS(3421), + [anon_sym_typeof] = ACTIONS(3421), + [anon_sym_import] = ACTIONS(3421), + [anon_sym_with] = ACTIONS(3421), + [anon_sym_var] = ACTIONS(3421), + [anon_sym_let] = ACTIONS(3421), + [anon_sym_const] = ACTIONS(3421), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_if] = ACTIONS(3421), + [anon_sym_switch] = ACTIONS(3421), + [anon_sym_for] = ACTIONS(3421), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_await] = ACTIONS(3421), + [anon_sym_while] = ACTIONS(3421), + [anon_sym_do] = ACTIONS(3421), + [anon_sym_try] = ACTIONS(3421), + [anon_sym_break] = ACTIONS(3421), + [anon_sym_continue] = ACTIONS(3421), + [anon_sym_debugger] = ACTIONS(3421), + [anon_sym_return] = ACTIONS(3421), + [anon_sym_throw] = ACTIONS(3421), + [anon_sym_SEMI] = ACTIONS(3421), + [anon_sym_case] = ACTIONS(3421), + [anon_sym_yield] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3421), + [anon_sym_LTtemplate_GT] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_class] = ACTIONS(3421), + [anon_sym_async] = ACTIONS(3421), + [anon_sym_function] = ACTIONS(3421), + [anon_sym_new] = ACTIONS(3421), + [anon_sym_using] = ACTIONS(3421), + [anon_sym_PLUS] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(3421), + [anon_sym_SLASH] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3421), + [anon_sym_void] = ACTIONS(3421), + [anon_sym_delete] = ACTIONS(3421), + [anon_sym_PLUS_PLUS] = ACTIONS(3421), + [anon_sym_DASH_DASH] = ACTIONS(3421), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3421), + [sym_number] = ACTIONS(3421), + [sym_private_property_identifier] = ACTIONS(3421), + [sym_this] = ACTIONS(3421), + [sym_super] = ACTIONS(3421), + [sym_true] = ACTIONS(3421), + [sym_false] = ACTIONS(3421), + [sym_null] = ACTIONS(3421), + [sym_undefined] = ACTIONS(3421), + [anon_sym_AT] = ACTIONS(3421), + [anon_sym_static] = ACTIONS(3421), + [anon_sym_readonly] = ACTIONS(3421), + [anon_sym_get] = ACTIONS(3421), + [anon_sym_set] = ACTIONS(3421), + [anon_sym_declare] = ACTIONS(3421), + [anon_sym_public] = ACTIONS(3421), + [anon_sym_private] = ACTIONS(3421), + [anon_sym_protected] = ACTIONS(3421), + [anon_sym_override] = ACTIONS(3421), + [anon_sym_module] = ACTIONS(3421), + [anon_sym_any] = ACTIONS(3421), + [anon_sym_number] = ACTIONS(3421), + [anon_sym_boolean] = ACTIONS(3421), + [anon_sym_string] = ACTIONS(3421), + [anon_sym_symbol] = ACTIONS(3421), + [anon_sym_object] = ACTIONS(3421), + [anon_sym_abstract] = ACTIONS(3421), + [anon_sym_interface] = ACTIONS(3421), + [anon_sym_enum] = ACTIONS(3421), [sym_html_comment] = ACTIONS(5), }, - [1253] = { - [sym_comment] = STATE(1253), - [sym_identifier] = ACTIONS(3451), - [anon_sym_export] = ACTIONS(3451), - [anon_sym_default] = ACTIONS(3451), - [anon_sym_type] = ACTIONS(3451), - [anon_sym_namespace] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3451), - [anon_sym_typeof] = ACTIONS(3451), - [anon_sym_import] = ACTIONS(3451), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_var] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_const] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_else] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_switch] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_await] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_break] = ACTIONS(3451), - [anon_sym_continue] = ACTIONS(3451), - [anon_sym_debugger] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_throw] = ACTIONS(3451), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym_case] = ACTIONS(3451), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LTtemplate_GT] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_class] = ACTIONS(3451), - [anon_sym_async] = ACTIONS(3451), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_using] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_SLASH] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_void] = ACTIONS(3451), - [anon_sym_delete] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_DASH_DASH] = ACTIONS(3451), + [1238] = { + [sym_comment] = STATE(1238), + [sym_identifier] = ACTIONS(3441), + [anon_sym_export] = ACTIONS(3441), + [anon_sym_default] = ACTIONS(3441), + [anon_sym_type] = ACTIONS(3441), + [anon_sym_namespace] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3441), + [anon_sym_RBRACE] = ACTIONS(3441), + [anon_sym_typeof] = ACTIONS(3441), + [anon_sym_import] = ACTIONS(3441), + [anon_sym_with] = ACTIONS(3441), + [anon_sym_var] = ACTIONS(3441), + [anon_sym_let] = ACTIONS(3441), + [anon_sym_const] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_if] = ACTIONS(3441), + [anon_sym_switch] = ACTIONS(3441), + [anon_sym_for] = ACTIONS(3441), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_await] = ACTIONS(3441), + [anon_sym_while] = ACTIONS(3441), + [anon_sym_do] = ACTIONS(3441), + [anon_sym_try] = ACTIONS(3441), + [anon_sym_break] = ACTIONS(3441), + [anon_sym_continue] = ACTIONS(3441), + [anon_sym_debugger] = ACTIONS(3441), + [anon_sym_return] = ACTIONS(3441), + [anon_sym_throw] = ACTIONS(3441), + [anon_sym_SEMI] = ACTIONS(3441), + [anon_sym_case] = ACTIONS(3441), + [anon_sym_yield] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3441), + [anon_sym_LTtemplate_GT] = ACTIONS(3441), + [anon_sym_DQUOTE] = ACTIONS(3441), + [anon_sym_SQUOTE] = ACTIONS(3441), + [anon_sym_class] = ACTIONS(3441), + [anon_sym_async] = ACTIONS(3441), + [anon_sym_function] = ACTIONS(3441), + [anon_sym_new] = ACTIONS(3441), + [anon_sym_using] = ACTIONS(3441), + [anon_sym_PLUS] = ACTIONS(3441), + [anon_sym_DASH] = ACTIONS(3441), + [anon_sym_SLASH] = ACTIONS(3441), + [anon_sym_LT] = ACTIONS(3441), + [anon_sym_TILDE] = ACTIONS(3441), + [anon_sym_void] = ACTIONS(3441), + [anon_sym_delete] = ACTIONS(3441), + [anon_sym_PLUS_PLUS] = ACTIONS(3441), + [anon_sym_DASH_DASH] = ACTIONS(3441), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3451), - [sym_number] = ACTIONS(3451), - [sym_private_property_identifier] = ACTIONS(3451), - [sym_this] = ACTIONS(3451), - [sym_super] = ACTIONS(3451), - [sym_true] = ACTIONS(3451), - [sym_false] = ACTIONS(3451), - [sym_null] = ACTIONS(3451), - [sym_undefined] = ACTIONS(3451), - [anon_sym_AT] = ACTIONS(3451), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3451), - [anon_sym_get] = ACTIONS(3451), - [anon_sym_set] = ACTIONS(3451), - [anon_sym_declare] = ACTIONS(3451), - [anon_sym_public] = ACTIONS(3451), - [anon_sym_private] = ACTIONS(3451), - [anon_sym_protected] = ACTIONS(3451), - [anon_sym_override] = ACTIONS(3451), - [anon_sym_module] = ACTIONS(3451), - [anon_sym_any] = ACTIONS(3451), - [anon_sym_number] = ACTIONS(3451), - [anon_sym_boolean] = ACTIONS(3451), - [anon_sym_string] = ACTIONS(3451), - [anon_sym_symbol] = ACTIONS(3451), - [anon_sym_object] = ACTIONS(3451), - [anon_sym_abstract] = ACTIONS(3451), - [anon_sym_interface] = ACTIONS(3451), - [anon_sym_enum] = ACTIONS(3451), + [anon_sym_BQUOTE] = ACTIONS(3441), + [sym_number] = ACTIONS(3441), + [sym_private_property_identifier] = ACTIONS(3441), + [sym_this] = ACTIONS(3441), + [sym_super] = ACTIONS(3441), + [sym_true] = ACTIONS(3441), + [sym_false] = ACTIONS(3441), + [sym_null] = ACTIONS(3441), + [sym_undefined] = ACTIONS(3441), + [anon_sym_AT] = ACTIONS(3441), + [anon_sym_static] = ACTIONS(3441), + [anon_sym_readonly] = ACTIONS(3441), + [anon_sym_get] = ACTIONS(3441), + [anon_sym_set] = ACTIONS(3441), + [anon_sym_declare] = ACTIONS(3441), + [anon_sym_public] = ACTIONS(3441), + [anon_sym_private] = ACTIONS(3441), + [anon_sym_protected] = ACTIONS(3441), + [anon_sym_override] = ACTIONS(3441), + [anon_sym_module] = ACTIONS(3441), + [anon_sym_any] = ACTIONS(3441), + [anon_sym_number] = ACTIONS(3441), + [anon_sym_boolean] = ACTIONS(3441), + [anon_sym_string] = ACTIONS(3441), + [anon_sym_symbol] = ACTIONS(3441), + [anon_sym_object] = ACTIONS(3441), + [anon_sym_abstract] = ACTIONS(3441), + [anon_sym_interface] = ACTIONS(3441), + [anon_sym_enum] = ACTIONS(3441), [sym_html_comment] = ACTIONS(5), }, - [1254] = { - [sym_comment] = STATE(1254), - [sym_identifier] = ACTIONS(3461), - [anon_sym_export] = ACTIONS(3461), - [anon_sym_default] = ACTIONS(3461), - [anon_sym_type] = ACTIONS(3461), - [anon_sym_namespace] = ACTIONS(3461), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_RBRACE] = ACTIONS(3461), - [anon_sym_typeof] = ACTIONS(3461), - [anon_sym_import] = ACTIONS(3461), - [anon_sym_with] = ACTIONS(3461), - [anon_sym_var] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_const] = ACTIONS(3461), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_else] = ACTIONS(3461), - [anon_sym_if] = ACTIONS(3461), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_for] = ACTIONS(3461), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_await] = ACTIONS(3461), - [anon_sym_while] = ACTIONS(3461), - [anon_sym_do] = ACTIONS(3461), - [anon_sym_try] = ACTIONS(3461), - [anon_sym_break] = ACTIONS(3461), - [anon_sym_continue] = ACTIONS(3461), - [anon_sym_debugger] = ACTIONS(3461), - [anon_sym_return] = ACTIONS(3461), - [anon_sym_throw] = ACTIONS(3461), - [anon_sym_SEMI] = ACTIONS(3461), - [anon_sym_case] = ACTIONS(3461), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_LTtemplate_GT] = ACTIONS(3461), - [anon_sym_DQUOTE] = ACTIONS(3461), - [anon_sym_SQUOTE] = ACTIONS(3461), - [anon_sym_class] = ACTIONS(3461), - [anon_sym_async] = ACTIONS(3461), - [anon_sym_function] = ACTIONS(3461), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_using] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3461), - [anon_sym_void] = ACTIONS(3461), - [anon_sym_delete] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3461), - [anon_sym_DASH_DASH] = ACTIONS(3461), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3461), - [sym_number] = ACTIONS(3461), - [sym_private_property_identifier] = ACTIONS(3461), - [sym_this] = ACTIONS(3461), - [sym_super] = ACTIONS(3461), - [sym_true] = ACTIONS(3461), - [sym_false] = ACTIONS(3461), - [sym_null] = ACTIONS(3461), - [sym_undefined] = ACTIONS(3461), - [anon_sym_AT] = ACTIONS(3461), - [anon_sym_static] = ACTIONS(3461), - [anon_sym_readonly] = ACTIONS(3461), - [anon_sym_get] = ACTIONS(3461), - [anon_sym_set] = ACTIONS(3461), - [anon_sym_declare] = ACTIONS(3461), - [anon_sym_public] = ACTIONS(3461), - [anon_sym_private] = ACTIONS(3461), - [anon_sym_protected] = ACTIONS(3461), - [anon_sym_override] = ACTIONS(3461), - [anon_sym_module] = ACTIONS(3461), - [anon_sym_any] = ACTIONS(3461), - [anon_sym_number] = ACTIONS(3461), - [anon_sym_boolean] = ACTIONS(3461), - [anon_sym_string] = ACTIONS(3461), - [anon_sym_symbol] = ACTIONS(3461), - [anon_sym_object] = ACTIONS(3461), - [anon_sym_abstract] = ACTIONS(3461), - [anon_sym_interface] = ACTIONS(3461), - [anon_sym_enum] = ACTIONS(3461), + [1239] = { + [sym_comment] = STATE(1239), + [sym_identifier] = ACTIONS(3445), + [anon_sym_export] = ACTIONS(3445), + [anon_sym_default] = ACTIONS(3445), + [anon_sym_type] = ACTIONS(3445), + [anon_sym_namespace] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3445), + [anon_sym_RBRACE] = ACTIONS(3445), + [anon_sym_typeof] = ACTIONS(3445), + [anon_sym_import] = ACTIONS(3445), + [anon_sym_with] = ACTIONS(3445), + [anon_sym_var] = ACTIONS(3445), + [anon_sym_let] = ACTIONS(3445), + [anon_sym_const] = ACTIONS(3445), + [anon_sym_BANG] = ACTIONS(3445), + [anon_sym_if] = ACTIONS(3445), + [anon_sym_switch] = ACTIONS(3445), + [anon_sym_for] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_await] = ACTIONS(3445), + [anon_sym_while] = ACTIONS(3445), + [anon_sym_do] = ACTIONS(3445), + [anon_sym_try] = ACTIONS(3445), + [anon_sym_break] = ACTIONS(3445), + [anon_sym_continue] = ACTIONS(3445), + [anon_sym_debugger] = ACTIONS(3445), + [anon_sym_return] = ACTIONS(3445), + [anon_sym_throw] = ACTIONS(3445), + [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_case] = ACTIONS(3445), + [anon_sym_yield] = ACTIONS(3445), + [anon_sym_LBRACK] = ACTIONS(3445), + [anon_sym_LTtemplate_GT] = ACTIONS(3445), + [anon_sym_DQUOTE] = ACTIONS(3445), + [anon_sym_SQUOTE] = ACTIONS(3445), + [anon_sym_class] = ACTIONS(3445), + [anon_sym_async] = ACTIONS(3445), + [anon_sym_function] = ACTIONS(3445), + [anon_sym_new] = ACTIONS(3445), + [anon_sym_using] = ACTIONS(3445), + [anon_sym_PLUS] = ACTIONS(3445), + [anon_sym_DASH] = ACTIONS(3445), + [anon_sym_SLASH] = ACTIONS(3445), + [anon_sym_LT] = ACTIONS(3445), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_void] = ACTIONS(3445), + [anon_sym_delete] = ACTIONS(3445), + [anon_sym_PLUS_PLUS] = ACTIONS(3445), + [anon_sym_DASH_DASH] = ACTIONS(3445), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3445), + [sym_number] = ACTIONS(3445), + [sym_private_property_identifier] = ACTIONS(3445), + [sym_this] = ACTIONS(3445), + [sym_super] = ACTIONS(3445), + [sym_true] = ACTIONS(3445), + [sym_false] = ACTIONS(3445), + [sym_null] = ACTIONS(3445), + [sym_undefined] = ACTIONS(3445), + [anon_sym_AT] = ACTIONS(3445), + [anon_sym_static] = ACTIONS(3445), + [anon_sym_readonly] = ACTIONS(3445), + [anon_sym_get] = ACTIONS(3445), + [anon_sym_set] = ACTIONS(3445), + [anon_sym_declare] = ACTIONS(3445), + [anon_sym_public] = ACTIONS(3445), + [anon_sym_private] = ACTIONS(3445), + [anon_sym_protected] = ACTIONS(3445), + [anon_sym_override] = ACTIONS(3445), + [anon_sym_module] = ACTIONS(3445), + [anon_sym_any] = ACTIONS(3445), + [anon_sym_number] = ACTIONS(3445), + [anon_sym_boolean] = ACTIONS(3445), + [anon_sym_string] = ACTIONS(3445), + [anon_sym_symbol] = ACTIONS(3445), + [anon_sym_object] = ACTIONS(3445), + [anon_sym_abstract] = ACTIONS(3445), + [anon_sym_interface] = ACTIONS(3445), + [anon_sym_enum] = ACTIONS(3445), [sym_html_comment] = ACTIONS(5), }, - [1255] = { - [sym_comment] = STATE(1255), - [sym_identifier] = ACTIONS(3253), - [anon_sym_export] = ACTIONS(3253), - [anon_sym_default] = ACTIONS(3253), - [anon_sym_type] = ACTIONS(3253), - [anon_sym_namespace] = ACTIONS(3253), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_RBRACE] = ACTIONS(3253), - [anon_sym_typeof] = ACTIONS(3253), - [anon_sym_import] = ACTIONS(3253), - [anon_sym_with] = ACTIONS(3253), - [anon_sym_var] = ACTIONS(3253), - [anon_sym_let] = ACTIONS(3253), - [anon_sym_const] = ACTIONS(3253), - [anon_sym_BANG] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_switch] = ACTIONS(3253), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_LPAREN] = ACTIONS(3253), - [anon_sym_await] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_break] = ACTIONS(3253), - [anon_sym_continue] = ACTIONS(3253), - [anon_sym_debugger] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_throw] = ACTIONS(3253), - [anon_sym_SEMI] = ACTIONS(3253), - [anon_sym_case] = ACTIONS(3253), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_LTtemplate_GT] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [anon_sym_SQUOTE] = ACTIONS(3253), - [anon_sym_class] = ACTIONS(3253), - [anon_sym_async] = ACTIONS(3253), - [anon_sym_function] = ACTIONS(3253), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_using] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_SLASH] = ACTIONS(3253), - [anon_sym_LT] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_void] = ACTIONS(3253), - [anon_sym_delete] = ACTIONS(3253), - [anon_sym_PLUS_PLUS] = ACTIONS(3253), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3253), - [sym_number] = ACTIONS(3253), - [sym_private_property_identifier] = ACTIONS(3253), - [sym_this] = ACTIONS(3253), - [sym_super] = ACTIONS(3253), - [sym_true] = ACTIONS(3253), - [sym_false] = ACTIONS(3253), - [sym_null] = ACTIONS(3253), - [sym_undefined] = ACTIONS(3253), - [anon_sym_AT] = ACTIONS(3253), - [anon_sym_static] = ACTIONS(3253), - [anon_sym_readonly] = ACTIONS(3253), - [anon_sym_get] = ACTIONS(3253), - [anon_sym_set] = ACTIONS(3253), - [anon_sym_declare] = ACTIONS(3253), - [anon_sym_public] = ACTIONS(3253), - [anon_sym_private] = ACTIONS(3253), - [anon_sym_protected] = ACTIONS(3253), - [anon_sym_override] = ACTIONS(3253), - [anon_sym_module] = ACTIONS(3253), - [anon_sym_any] = ACTIONS(3253), - [anon_sym_number] = ACTIONS(3253), - [anon_sym_boolean] = ACTIONS(3253), - [anon_sym_string] = ACTIONS(3253), - [anon_sym_symbol] = ACTIONS(3253), - [anon_sym_object] = ACTIONS(3253), - [anon_sym_abstract] = ACTIONS(3253), - [anon_sym_interface] = ACTIONS(3253), - [anon_sym_enum] = ACTIONS(3253), + [1240] = { + [sym_comment] = STATE(1240), + [sym_identifier] = ACTIONS(3447), + [anon_sym_export] = ACTIONS(3447), + [anon_sym_default] = ACTIONS(3447), + [anon_sym_type] = ACTIONS(3447), + [anon_sym_namespace] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_RBRACE] = ACTIONS(3447), + [anon_sym_typeof] = ACTIONS(3447), + [anon_sym_import] = ACTIONS(3447), + [anon_sym_with] = ACTIONS(3447), + [anon_sym_var] = ACTIONS(3447), + [anon_sym_let] = ACTIONS(3447), + [anon_sym_const] = ACTIONS(3447), + [anon_sym_BANG] = ACTIONS(3447), + [anon_sym_if] = ACTIONS(3447), + [anon_sym_switch] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3447), + [anon_sym_LPAREN] = ACTIONS(3447), + [anon_sym_await] = ACTIONS(3447), + [anon_sym_while] = ACTIONS(3447), + [anon_sym_do] = ACTIONS(3447), + [anon_sym_try] = ACTIONS(3447), + [anon_sym_break] = ACTIONS(3447), + [anon_sym_continue] = ACTIONS(3447), + [anon_sym_debugger] = ACTIONS(3447), + [anon_sym_return] = ACTIONS(3447), + [anon_sym_throw] = ACTIONS(3447), + [anon_sym_SEMI] = ACTIONS(3447), + [anon_sym_case] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3447), + [anon_sym_LBRACK] = ACTIONS(3447), + [anon_sym_LTtemplate_GT] = ACTIONS(3447), + [anon_sym_DQUOTE] = ACTIONS(3447), + [anon_sym_SQUOTE] = ACTIONS(3447), + [anon_sym_class] = ACTIONS(3447), + [anon_sym_async] = ACTIONS(3447), + [anon_sym_function] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3447), + [anon_sym_using] = ACTIONS(3447), + [anon_sym_PLUS] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3447), + [anon_sym_SLASH] = ACTIONS(3447), + [anon_sym_LT] = ACTIONS(3447), + [anon_sym_TILDE] = ACTIONS(3447), + [anon_sym_void] = ACTIONS(3447), + [anon_sym_delete] = ACTIONS(3447), + [anon_sym_PLUS_PLUS] = ACTIONS(3447), + [anon_sym_DASH_DASH] = ACTIONS(3447), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3447), + [sym_number] = ACTIONS(3447), + [sym_private_property_identifier] = ACTIONS(3447), + [sym_this] = ACTIONS(3447), + [sym_super] = ACTIONS(3447), + [sym_true] = ACTIONS(3447), + [sym_false] = ACTIONS(3447), + [sym_null] = ACTIONS(3447), + [sym_undefined] = ACTIONS(3447), + [anon_sym_AT] = ACTIONS(3447), + [anon_sym_static] = ACTIONS(3447), + [anon_sym_readonly] = ACTIONS(3447), + [anon_sym_get] = ACTIONS(3447), + [anon_sym_set] = ACTIONS(3447), + [anon_sym_declare] = ACTIONS(3447), + [anon_sym_public] = ACTIONS(3447), + [anon_sym_private] = ACTIONS(3447), + [anon_sym_protected] = ACTIONS(3447), + [anon_sym_override] = ACTIONS(3447), + [anon_sym_module] = ACTIONS(3447), + [anon_sym_any] = ACTIONS(3447), + [anon_sym_number] = ACTIONS(3447), + [anon_sym_boolean] = ACTIONS(3447), + [anon_sym_string] = ACTIONS(3447), + [anon_sym_symbol] = ACTIONS(3447), + [anon_sym_object] = ACTIONS(3447), + [anon_sym_abstract] = ACTIONS(3447), + [anon_sym_interface] = ACTIONS(3447), + [anon_sym_enum] = ACTIONS(3447), [sym_html_comment] = ACTIONS(5), }, - [1256] = { - [sym_comment] = STATE(1256), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [1241] = { + [sym_comment] = STATE(1241), + [sym_identifier] = ACTIONS(3439), + [anon_sym_export] = ACTIONS(3439), + [anon_sym_default] = ACTIONS(3439), + [anon_sym_type] = ACTIONS(3439), + [anon_sym_namespace] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_RBRACE] = ACTIONS(3439), + [anon_sym_typeof] = ACTIONS(3439), + [anon_sym_import] = ACTIONS(3439), + [anon_sym_with] = ACTIONS(3439), + [anon_sym_var] = ACTIONS(3439), + [anon_sym_let] = ACTIONS(3439), + [anon_sym_const] = ACTIONS(3439), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_if] = ACTIONS(3439), + [anon_sym_switch] = ACTIONS(3439), + [anon_sym_for] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3439), + [anon_sym_await] = ACTIONS(3439), + [anon_sym_while] = ACTIONS(3439), + [anon_sym_do] = ACTIONS(3439), + [anon_sym_try] = ACTIONS(3439), + [anon_sym_break] = ACTIONS(3439), + [anon_sym_continue] = ACTIONS(3439), + [anon_sym_debugger] = ACTIONS(3439), + [anon_sym_return] = ACTIONS(3439), + [anon_sym_throw] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3439), + [anon_sym_case] = ACTIONS(3439), + [anon_sym_yield] = ACTIONS(3439), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LTtemplate_GT] = ACTIONS(3439), + [anon_sym_DQUOTE] = ACTIONS(3439), + [anon_sym_SQUOTE] = ACTIONS(3439), + [anon_sym_class] = ACTIONS(3439), + [anon_sym_async] = ACTIONS(3439), + [anon_sym_function] = ACTIONS(3439), + [anon_sym_new] = ACTIONS(3439), + [anon_sym_using] = ACTIONS(3439), + [anon_sym_PLUS] = ACTIONS(3439), + [anon_sym_DASH] = ACTIONS(3439), + [anon_sym_SLASH] = ACTIONS(3439), + [anon_sym_LT] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(3439), + [anon_sym_void] = ACTIONS(3439), + [anon_sym_delete] = ACTIONS(3439), + [anon_sym_PLUS_PLUS] = ACTIONS(3439), + [anon_sym_DASH_DASH] = ACTIONS(3439), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3439), + [sym_number] = ACTIONS(3439), + [sym_private_property_identifier] = ACTIONS(3439), + [sym_this] = ACTIONS(3439), + [sym_super] = ACTIONS(3439), + [sym_true] = ACTIONS(3439), + [sym_false] = ACTIONS(3439), + [sym_null] = ACTIONS(3439), + [sym_undefined] = ACTIONS(3439), + [anon_sym_AT] = ACTIONS(3439), + [anon_sym_static] = ACTIONS(3439), + [anon_sym_readonly] = ACTIONS(3439), + [anon_sym_get] = ACTIONS(3439), + [anon_sym_set] = ACTIONS(3439), + [anon_sym_declare] = ACTIONS(3439), + [anon_sym_public] = ACTIONS(3439), + [anon_sym_private] = ACTIONS(3439), + [anon_sym_protected] = ACTIONS(3439), + [anon_sym_override] = ACTIONS(3439), + [anon_sym_module] = ACTIONS(3439), + [anon_sym_any] = ACTIONS(3439), + [anon_sym_number] = ACTIONS(3439), + [anon_sym_boolean] = ACTIONS(3439), + [anon_sym_string] = ACTIONS(3439), + [anon_sym_symbol] = ACTIONS(3439), + [anon_sym_object] = ACTIONS(3439), + [anon_sym_abstract] = ACTIONS(3439), + [anon_sym_interface] = ACTIONS(3439), + [anon_sym_enum] = ACTIONS(3439), [sym_html_comment] = ACTIONS(5), }, - [1257] = { - [sym_comment] = STATE(1257), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1242] = { + [sym_comment] = STATE(1242), + [ts_builtin_sym_end] = ACTIONS(3479), + [sym_identifier] = ACTIONS(3405), + [anon_sym_export] = ACTIONS(3405), + [anon_sym_type] = ACTIONS(3405), + [anon_sym_namespace] = ACTIONS(3405), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_RBRACE] = ACTIONS(3405), + [anon_sym_typeof] = ACTIONS(3405), + [anon_sym_import] = ACTIONS(3405), + [anon_sym_with] = ACTIONS(3405), + [anon_sym_var] = ACTIONS(3405), + [anon_sym_let] = ACTIONS(3405), + [anon_sym_const] = ACTIONS(3405), + [anon_sym_BANG] = ACTIONS(3405), + [anon_sym_else] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3405), + [anon_sym_switch] = ACTIONS(3405), + [anon_sym_for] = ACTIONS(3405), + [anon_sym_LPAREN] = ACTIONS(3405), + [anon_sym_await] = ACTIONS(3405), + [anon_sym_while] = ACTIONS(3405), + [anon_sym_do] = ACTIONS(3405), + [anon_sym_try] = ACTIONS(3405), + [anon_sym_break] = ACTIONS(3405), + [anon_sym_continue] = ACTIONS(3405), + [anon_sym_debugger] = ACTIONS(3405), + [anon_sym_return] = ACTIONS(3405), + [anon_sym_throw] = ACTIONS(3405), + [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_yield] = ACTIONS(3405), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_LTtemplate_GT] = ACTIONS(3405), + [anon_sym_DQUOTE] = ACTIONS(3405), + [anon_sym_SQUOTE] = ACTIONS(3405), + [anon_sym_class] = ACTIONS(3405), + [anon_sym_async] = ACTIONS(3405), + [anon_sym_function] = ACTIONS(3405), + [anon_sym_new] = ACTIONS(3405), + [anon_sym_using] = ACTIONS(3405), + [anon_sym_PLUS] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(3405), + [anon_sym_SLASH] = ACTIONS(3405), + [anon_sym_LT] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3405), + [anon_sym_void] = ACTIONS(3405), + [anon_sym_delete] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_DASH_DASH] = ACTIONS(3405), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3405), + [sym_number] = ACTIONS(3405), + [sym_private_property_identifier] = ACTIONS(3405), + [sym_this] = ACTIONS(3405), + [sym_super] = ACTIONS(3405), + [sym_true] = ACTIONS(3405), + [sym_false] = ACTIONS(3405), + [sym_null] = ACTIONS(3405), + [sym_undefined] = ACTIONS(3405), + [anon_sym_AT] = ACTIONS(3405), + [anon_sym_static] = ACTIONS(3405), + [anon_sym_readonly] = ACTIONS(3405), + [anon_sym_get] = ACTIONS(3405), + [anon_sym_set] = ACTIONS(3405), + [anon_sym_declare] = ACTIONS(3405), + [anon_sym_public] = ACTIONS(3405), + [anon_sym_private] = ACTIONS(3405), + [anon_sym_protected] = ACTIONS(3405), + [anon_sym_override] = ACTIONS(3405), + [anon_sym_module] = ACTIONS(3405), + [anon_sym_any] = ACTIONS(3405), + [anon_sym_number] = ACTIONS(3405), + [anon_sym_boolean] = ACTIONS(3405), + [anon_sym_string] = ACTIONS(3405), + [anon_sym_symbol] = ACTIONS(3405), + [anon_sym_object] = ACTIONS(3405), + [anon_sym_abstract] = ACTIONS(3405), + [anon_sym_interface] = ACTIONS(3405), + [anon_sym_enum] = ACTIONS(3405), [sym_html_comment] = ACTIONS(5), }, - [1258] = { - [sym_comment] = STATE(1258), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1243] = { + [sym_comment] = STATE(1243), + [sym_identifier] = ACTIONS(3437), + [anon_sym_export] = ACTIONS(3437), + [anon_sym_default] = ACTIONS(3437), + [anon_sym_type] = ACTIONS(3437), + [anon_sym_namespace] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3437), + [anon_sym_RBRACE] = ACTIONS(3437), + [anon_sym_typeof] = ACTIONS(3437), + [anon_sym_import] = ACTIONS(3437), + [anon_sym_with] = ACTIONS(3437), + [anon_sym_var] = ACTIONS(3437), + [anon_sym_let] = ACTIONS(3437), + [anon_sym_const] = ACTIONS(3437), + [anon_sym_BANG] = ACTIONS(3437), + [anon_sym_if] = ACTIONS(3437), + [anon_sym_switch] = ACTIONS(3437), + [anon_sym_for] = ACTIONS(3437), + [anon_sym_LPAREN] = ACTIONS(3437), + [anon_sym_await] = ACTIONS(3437), + [anon_sym_while] = ACTIONS(3437), + [anon_sym_do] = ACTIONS(3437), + [anon_sym_try] = ACTIONS(3437), + [anon_sym_break] = ACTIONS(3437), + [anon_sym_continue] = ACTIONS(3437), + [anon_sym_debugger] = ACTIONS(3437), + [anon_sym_return] = ACTIONS(3437), + [anon_sym_throw] = ACTIONS(3437), + [anon_sym_SEMI] = ACTIONS(3437), + [anon_sym_case] = ACTIONS(3437), + [anon_sym_yield] = ACTIONS(3437), + [anon_sym_LBRACK] = ACTIONS(3437), + [anon_sym_LTtemplate_GT] = ACTIONS(3437), + [anon_sym_DQUOTE] = ACTIONS(3437), + [anon_sym_SQUOTE] = ACTIONS(3437), + [anon_sym_class] = ACTIONS(3437), + [anon_sym_async] = ACTIONS(3437), + [anon_sym_function] = ACTIONS(3437), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_using] = ACTIONS(3437), + [anon_sym_PLUS] = ACTIONS(3437), + [anon_sym_DASH] = ACTIONS(3437), + [anon_sym_SLASH] = ACTIONS(3437), + [anon_sym_LT] = ACTIONS(3437), + [anon_sym_TILDE] = ACTIONS(3437), + [anon_sym_void] = ACTIONS(3437), + [anon_sym_delete] = ACTIONS(3437), + [anon_sym_PLUS_PLUS] = ACTIONS(3437), + [anon_sym_DASH_DASH] = ACTIONS(3437), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3437), + [sym_number] = ACTIONS(3437), + [sym_private_property_identifier] = ACTIONS(3437), + [sym_this] = ACTIONS(3437), + [sym_super] = ACTIONS(3437), + [sym_true] = ACTIONS(3437), + [sym_false] = ACTIONS(3437), + [sym_null] = ACTIONS(3437), + [sym_undefined] = ACTIONS(3437), + [anon_sym_AT] = ACTIONS(3437), + [anon_sym_static] = ACTIONS(3437), + [anon_sym_readonly] = ACTIONS(3437), + [anon_sym_get] = ACTIONS(3437), + [anon_sym_set] = ACTIONS(3437), + [anon_sym_declare] = ACTIONS(3437), + [anon_sym_public] = ACTIONS(3437), + [anon_sym_private] = ACTIONS(3437), + [anon_sym_protected] = ACTIONS(3437), + [anon_sym_override] = ACTIONS(3437), + [anon_sym_module] = ACTIONS(3437), + [anon_sym_any] = ACTIONS(3437), + [anon_sym_number] = ACTIONS(3437), + [anon_sym_boolean] = ACTIONS(3437), + [anon_sym_string] = ACTIONS(3437), + [anon_sym_symbol] = ACTIONS(3437), + [anon_sym_object] = ACTIONS(3437), + [anon_sym_abstract] = ACTIONS(3437), + [anon_sym_interface] = ACTIONS(3437), + [anon_sym_enum] = ACTIONS(3437), [sym_html_comment] = ACTIONS(5), }, - [1259] = { - [sym_comment] = STATE(1259), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1244] = { + [sym_comment] = STATE(1244), + [sym_identifier] = ACTIONS(3429), + [anon_sym_export] = ACTIONS(3429), + [anon_sym_default] = ACTIONS(3429), + [anon_sym_type] = ACTIONS(3429), + [anon_sym_namespace] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_typeof] = ACTIONS(3429), + [anon_sym_import] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_const] = ACTIONS(3429), + [anon_sym_BANG] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_await] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_break] = ACTIONS(3429), + [anon_sym_continue] = ACTIONS(3429), + [anon_sym_debugger] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_throw] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_case] = ACTIONS(3429), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LTtemplate_GT] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_SQUOTE] = ACTIONS(3429), + [anon_sym_class] = ACTIONS(3429), + [anon_sym_async] = ACTIONS(3429), + [anon_sym_function] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_using] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_void] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3429), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3429), + [sym_number] = ACTIONS(3429), + [sym_private_property_identifier] = ACTIONS(3429), + [sym_this] = ACTIONS(3429), + [sym_super] = ACTIONS(3429), + [sym_true] = ACTIONS(3429), + [sym_false] = ACTIONS(3429), + [sym_null] = ACTIONS(3429), + [sym_undefined] = ACTIONS(3429), + [anon_sym_AT] = ACTIONS(3429), + [anon_sym_static] = ACTIONS(3429), + [anon_sym_readonly] = ACTIONS(3429), + [anon_sym_get] = ACTIONS(3429), + [anon_sym_set] = ACTIONS(3429), + [anon_sym_declare] = ACTIONS(3429), + [anon_sym_public] = ACTIONS(3429), + [anon_sym_private] = ACTIONS(3429), + [anon_sym_protected] = ACTIONS(3429), + [anon_sym_override] = ACTIONS(3429), + [anon_sym_module] = ACTIONS(3429), + [anon_sym_any] = ACTIONS(3429), + [anon_sym_number] = ACTIONS(3429), + [anon_sym_boolean] = ACTIONS(3429), + [anon_sym_string] = ACTIONS(3429), + [anon_sym_symbol] = ACTIONS(3429), + [anon_sym_object] = ACTIONS(3429), + [anon_sym_abstract] = ACTIONS(3429), + [anon_sym_interface] = ACTIONS(3429), + [anon_sym_enum] = ACTIONS(3429), [sym_html_comment] = ACTIONS(5), }, - [1260] = { - [sym_comment] = STATE(1260), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [sym_html_comment] = ACTIONS(5), - }, - [1261] = { - [sym_comment] = STATE(1261), - [sym_identifier] = ACTIONS(3309), - [anon_sym_export] = ACTIONS(3309), - [anon_sym_default] = ACTIONS(3309), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_RBRACE] = ACTIONS(3309), - [anon_sym_typeof] = ACTIONS(3309), - [anon_sym_import] = ACTIONS(3309), - [anon_sym_with] = ACTIONS(3309), - [anon_sym_var] = ACTIONS(3309), - [anon_sym_let] = ACTIONS(3309), - [anon_sym_const] = ACTIONS(3309), - [anon_sym_BANG] = ACTIONS(3309), - [anon_sym_if] = ACTIONS(3309), - [anon_sym_switch] = ACTIONS(3309), - [anon_sym_for] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3309), - [anon_sym_await] = ACTIONS(3309), - [anon_sym_while] = ACTIONS(3309), - [anon_sym_do] = ACTIONS(3309), - [anon_sym_try] = ACTIONS(3309), - [anon_sym_break] = ACTIONS(3309), - [anon_sym_continue] = ACTIONS(3309), - [anon_sym_debugger] = ACTIONS(3309), - [anon_sym_return] = ACTIONS(3309), - [anon_sym_throw] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3309), - [anon_sym_case] = ACTIONS(3309), - [anon_sym_yield] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_LTtemplate_GT] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_function] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_using] = ACTIONS(3309), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_SLASH] = ACTIONS(3309), - [anon_sym_LT] = ACTIONS(3309), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_void] = ACTIONS(3309), - [anon_sym_delete] = ACTIONS(3309), - [anon_sym_PLUS_PLUS] = ACTIONS(3309), - [anon_sym_DASH_DASH] = ACTIONS(3309), + [1245] = { + [sym_comment] = STATE(1245), + [ts_builtin_sym_end] = ACTIONS(3481), + [sym_identifier] = ACTIONS(3419), + [anon_sym_export] = ACTIONS(3419), + [anon_sym_type] = ACTIONS(3419), + [anon_sym_namespace] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_RBRACE] = ACTIONS(3419), + [anon_sym_typeof] = ACTIONS(3419), + [anon_sym_import] = ACTIONS(3419), + [anon_sym_with] = ACTIONS(3419), + [anon_sym_var] = ACTIONS(3419), + [anon_sym_let] = ACTIONS(3419), + [anon_sym_const] = ACTIONS(3419), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_else] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_await] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_debugger] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_throw] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_LTtemplate_GT] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_class] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(3419), + [anon_sym_function] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3419), + [anon_sym_using] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_SLASH] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(3419), + [anon_sym_void] = ACTIONS(3419), + [anon_sym_delete] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3419), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3309), - [sym_number] = ACTIONS(3309), - [sym_private_property_identifier] = ACTIONS(3309), - [sym_this] = ACTIONS(3309), - [sym_super] = ACTIONS(3309), - [sym_true] = ACTIONS(3309), - [sym_false] = ACTIONS(3309), - [sym_null] = ACTIONS(3309), - [sym_undefined] = ACTIONS(3309), - [anon_sym_AT] = ACTIONS(3309), - [anon_sym_static] = ACTIONS(3309), - [anon_sym_readonly] = ACTIONS(3309), - [anon_sym_get] = ACTIONS(3309), - [anon_sym_set] = ACTIONS(3309), - [anon_sym_declare] = ACTIONS(3309), - [anon_sym_public] = ACTIONS(3309), - [anon_sym_private] = ACTIONS(3309), - [anon_sym_protected] = ACTIONS(3309), - [anon_sym_override] = ACTIONS(3309), - [anon_sym_module] = ACTIONS(3309), - [anon_sym_any] = ACTIONS(3309), - [anon_sym_number] = ACTIONS(3309), - [anon_sym_boolean] = ACTIONS(3309), - [anon_sym_string] = ACTIONS(3309), - [anon_sym_symbol] = ACTIONS(3309), - [anon_sym_object] = ACTIONS(3309), - [anon_sym_abstract] = ACTIONS(3309), - [anon_sym_interface] = ACTIONS(3309), - [anon_sym_enum] = ACTIONS(3309), + [anon_sym_BQUOTE] = ACTIONS(3419), + [sym_number] = ACTIONS(3419), + [sym_private_property_identifier] = ACTIONS(3419), + [sym_this] = ACTIONS(3419), + [sym_super] = ACTIONS(3419), + [sym_true] = ACTIONS(3419), + [sym_false] = ACTIONS(3419), + [sym_null] = ACTIONS(3419), + [sym_undefined] = ACTIONS(3419), + [anon_sym_AT] = ACTIONS(3419), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_readonly] = ACTIONS(3419), + [anon_sym_get] = ACTIONS(3419), + [anon_sym_set] = ACTIONS(3419), + [anon_sym_declare] = ACTIONS(3419), + [anon_sym_public] = ACTIONS(3419), + [anon_sym_private] = ACTIONS(3419), + [anon_sym_protected] = ACTIONS(3419), + [anon_sym_override] = ACTIONS(3419), + [anon_sym_module] = ACTIONS(3419), + [anon_sym_any] = ACTIONS(3419), + [anon_sym_number] = ACTIONS(3419), + [anon_sym_boolean] = ACTIONS(3419), + [anon_sym_string] = ACTIONS(3419), + [anon_sym_symbol] = ACTIONS(3419), + [anon_sym_object] = ACTIONS(3419), + [anon_sym_abstract] = ACTIONS(3419), + [anon_sym_interface] = ACTIONS(3419), + [anon_sym_enum] = ACTIONS(3419), [sym_html_comment] = ACTIONS(5), }, - [1262] = { - [sym_comment] = STATE(1262), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1246] = { + [sym_comment] = STATE(1246), + [ts_builtin_sym_end] = ACTIONS(3483), + [sym_identifier] = ACTIONS(3421), + [anon_sym_export] = ACTIONS(3421), + [anon_sym_type] = ACTIONS(3421), + [anon_sym_namespace] = ACTIONS(3421), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_RBRACE] = ACTIONS(3421), + [anon_sym_typeof] = ACTIONS(3421), + [anon_sym_import] = ACTIONS(3421), + [anon_sym_with] = ACTIONS(3421), + [anon_sym_var] = ACTIONS(3421), + [anon_sym_let] = ACTIONS(3421), + [anon_sym_const] = ACTIONS(3421), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_else] = ACTIONS(3421), + [anon_sym_if] = ACTIONS(3421), + [anon_sym_switch] = ACTIONS(3421), + [anon_sym_for] = ACTIONS(3421), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_await] = ACTIONS(3421), + [anon_sym_while] = ACTIONS(3421), + [anon_sym_do] = ACTIONS(3421), + [anon_sym_try] = ACTIONS(3421), + [anon_sym_break] = ACTIONS(3421), + [anon_sym_continue] = ACTIONS(3421), + [anon_sym_debugger] = ACTIONS(3421), + [anon_sym_return] = ACTIONS(3421), + [anon_sym_throw] = ACTIONS(3421), + [anon_sym_SEMI] = ACTIONS(3421), + [anon_sym_yield] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3421), + [anon_sym_LTtemplate_GT] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_class] = ACTIONS(3421), + [anon_sym_async] = ACTIONS(3421), + [anon_sym_function] = ACTIONS(3421), + [anon_sym_new] = ACTIONS(3421), + [anon_sym_using] = ACTIONS(3421), + [anon_sym_PLUS] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(3421), + [anon_sym_SLASH] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3421), + [anon_sym_void] = ACTIONS(3421), + [anon_sym_delete] = ACTIONS(3421), + [anon_sym_PLUS_PLUS] = ACTIONS(3421), + [anon_sym_DASH_DASH] = ACTIONS(3421), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [sym_html_comment] = ACTIONS(5), - }, - [1263] = { - [sym_comment] = STATE(1263), - [sym_identifier] = ACTIONS(2262), - [anon_sym_export] = ACTIONS(2262), - [anon_sym_default] = ACTIONS(2262), - [anon_sym_type] = ACTIONS(2262), - [anon_sym_namespace] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_import] = ACTIONS(2262), - [anon_sym_with] = ACTIONS(2262), - [anon_sym_var] = ACTIONS(2262), - [anon_sym_let] = ACTIONS(2262), - [anon_sym_const] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_if] = ACTIONS(2262), - [anon_sym_switch] = ACTIONS(2262), - [anon_sym_for] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_await] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2262), - [anon_sym_do] = ACTIONS(2262), - [anon_sym_try] = ACTIONS(2262), - [anon_sym_break] = ACTIONS(2262), - [anon_sym_continue] = ACTIONS(2262), - [anon_sym_debugger] = ACTIONS(2262), - [anon_sym_return] = ACTIONS(2262), - [anon_sym_throw] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_case] = ACTIONS(2262), - [anon_sym_yield] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_LTtemplate_GT] = ACTIONS(2262), - [anon_sym_DQUOTE] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(2262), - [anon_sym_class] = ACTIONS(2262), - [anon_sym_async] = ACTIONS(2262), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_new] = ACTIONS(2262), - [anon_sym_using] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_SLASH] = ACTIONS(2262), - [anon_sym_LT] = ACTIONS(2262), - [anon_sym_TILDE] = ACTIONS(2262), - [anon_sym_void] = ACTIONS(2262), - [anon_sym_delete] = ACTIONS(2262), - [anon_sym_PLUS_PLUS] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(2262), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2262), - [sym_number] = ACTIONS(2262), - [sym_private_property_identifier] = ACTIONS(2262), - [sym_this] = ACTIONS(2262), - [sym_super] = ACTIONS(2262), - [sym_true] = ACTIONS(2262), - [sym_false] = ACTIONS(2262), - [sym_null] = ACTIONS(2262), - [sym_undefined] = ACTIONS(2262), - [anon_sym_AT] = ACTIONS(2262), - [anon_sym_static] = ACTIONS(2262), - [anon_sym_readonly] = ACTIONS(2262), - [anon_sym_get] = ACTIONS(2262), - [anon_sym_set] = ACTIONS(2262), - [anon_sym_declare] = ACTIONS(2262), - [anon_sym_public] = ACTIONS(2262), - [anon_sym_private] = ACTIONS(2262), - [anon_sym_protected] = ACTIONS(2262), - [anon_sym_override] = ACTIONS(2262), - [anon_sym_module] = ACTIONS(2262), - [anon_sym_any] = ACTIONS(2262), - [anon_sym_number] = ACTIONS(2262), - [anon_sym_boolean] = ACTIONS(2262), - [anon_sym_string] = ACTIONS(2262), - [anon_sym_symbol] = ACTIONS(2262), - [anon_sym_object] = ACTIONS(2262), - [anon_sym_abstract] = ACTIONS(2262), - [anon_sym_interface] = ACTIONS(2262), - [anon_sym_enum] = ACTIONS(2262), + [anon_sym_BQUOTE] = ACTIONS(3421), + [sym_number] = ACTIONS(3421), + [sym_private_property_identifier] = ACTIONS(3421), + [sym_this] = ACTIONS(3421), + [sym_super] = ACTIONS(3421), + [sym_true] = ACTIONS(3421), + [sym_false] = ACTIONS(3421), + [sym_null] = ACTIONS(3421), + [sym_undefined] = ACTIONS(3421), + [anon_sym_AT] = ACTIONS(3421), + [anon_sym_static] = ACTIONS(3421), + [anon_sym_readonly] = ACTIONS(3421), + [anon_sym_get] = ACTIONS(3421), + [anon_sym_set] = ACTIONS(3421), + [anon_sym_declare] = ACTIONS(3421), + [anon_sym_public] = ACTIONS(3421), + [anon_sym_private] = ACTIONS(3421), + [anon_sym_protected] = ACTIONS(3421), + [anon_sym_override] = ACTIONS(3421), + [anon_sym_module] = ACTIONS(3421), + [anon_sym_any] = ACTIONS(3421), + [anon_sym_number] = ACTIONS(3421), + [anon_sym_boolean] = ACTIONS(3421), + [anon_sym_string] = ACTIONS(3421), + [anon_sym_symbol] = ACTIONS(3421), + [anon_sym_object] = ACTIONS(3421), + [anon_sym_abstract] = ACTIONS(3421), + [anon_sym_interface] = ACTIONS(3421), + [anon_sym_enum] = ACTIONS(3421), [sym_html_comment] = ACTIONS(5), }, - [1264] = { - [sym_comment] = STATE(1264), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1247] = { + [sym_comment] = STATE(1247), + [sym_identifier] = ACTIONS(3281), + [anon_sym_export] = ACTIONS(3281), + [anon_sym_default] = ACTIONS(3281), + [anon_sym_type] = ACTIONS(3281), + [anon_sym_namespace] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_typeof] = ACTIONS(3281), + [anon_sym_import] = ACTIONS(3281), + [anon_sym_with] = ACTIONS(3281), + [anon_sym_var] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_switch] = ACTIONS(3281), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_await] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_break] = ACTIONS(3281), + [anon_sym_continue] = ACTIONS(3281), + [anon_sym_debugger] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_throw] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_case] = ACTIONS(3281), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LTtemplate_GT] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_SQUOTE] = ACTIONS(3281), + [anon_sym_class] = ACTIONS(3281), + [anon_sym_async] = ACTIONS(3281), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_using] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_void] = ACTIONS(3281), + [anon_sym_delete] = ACTIONS(3281), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3281), + [sym_number] = ACTIONS(3281), + [sym_private_property_identifier] = ACTIONS(3281), + [sym_this] = ACTIONS(3281), + [sym_super] = ACTIONS(3281), + [sym_true] = ACTIONS(3281), + [sym_false] = ACTIONS(3281), + [sym_null] = ACTIONS(3281), + [sym_undefined] = ACTIONS(3281), + [anon_sym_AT] = ACTIONS(3281), + [anon_sym_static] = ACTIONS(3281), + [anon_sym_readonly] = ACTIONS(3281), + [anon_sym_get] = ACTIONS(3281), + [anon_sym_set] = ACTIONS(3281), + [anon_sym_declare] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3281), + [anon_sym_private] = ACTIONS(3281), + [anon_sym_protected] = ACTIONS(3281), + [anon_sym_override] = ACTIONS(3281), + [anon_sym_module] = ACTIONS(3281), + [anon_sym_any] = ACTIONS(3281), + [anon_sym_number] = ACTIONS(3281), + [anon_sym_boolean] = ACTIONS(3281), + [anon_sym_string] = ACTIONS(3281), + [anon_sym_symbol] = ACTIONS(3281), + [anon_sym_object] = ACTIONS(3281), + [anon_sym_abstract] = ACTIONS(3281), + [anon_sym_interface] = ACTIONS(3281), + [anon_sym_enum] = ACTIONS(3281), [sym_html_comment] = ACTIONS(5), }, - [1265] = { - [sym_comment] = STATE(1265), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1248] = { + [sym_comment] = STATE(1248), + [ts_builtin_sym_end] = ACTIONS(3485), + [sym_identifier] = ACTIONS(3441), + [anon_sym_export] = ACTIONS(3441), + [anon_sym_type] = ACTIONS(3441), + [anon_sym_namespace] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3441), + [anon_sym_RBRACE] = ACTIONS(3441), + [anon_sym_typeof] = ACTIONS(3441), + [anon_sym_import] = ACTIONS(3441), + [anon_sym_with] = ACTIONS(3441), + [anon_sym_var] = ACTIONS(3441), + [anon_sym_let] = ACTIONS(3441), + [anon_sym_const] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_else] = ACTIONS(3441), + [anon_sym_if] = ACTIONS(3441), + [anon_sym_switch] = ACTIONS(3441), + [anon_sym_for] = ACTIONS(3441), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_await] = ACTIONS(3441), + [anon_sym_while] = ACTIONS(3441), + [anon_sym_do] = ACTIONS(3441), + [anon_sym_try] = ACTIONS(3441), + [anon_sym_break] = ACTIONS(3441), + [anon_sym_continue] = ACTIONS(3441), + [anon_sym_debugger] = ACTIONS(3441), + [anon_sym_return] = ACTIONS(3441), + [anon_sym_throw] = ACTIONS(3441), + [anon_sym_SEMI] = ACTIONS(3441), + [anon_sym_yield] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3441), + [anon_sym_LTtemplate_GT] = ACTIONS(3441), + [anon_sym_DQUOTE] = ACTIONS(3441), + [anon_sym_SQUOTE] = ACTIONS(3441), + [anon_sym_class] = ACTIONS(3441), + [anon_sym_async] = ACTIONS(3441), + [anon_sym_function] = ACTIONS(3441), + [anon_sym_new] = ACTIONS(3441), + [anon_sym_using] = ACTIONS(3441), + [anon_sym_PLUS] = ACTIONS(3441), + [anon_sym_DASH] = ACTIONS(3441), + [anon_sym_SLASH] = ACTIONS(3441), + [anon_sym_LT] = ACTIONS(3441), + [anon_sym_TILDE] = ACTIONS(3441), + [anon_sym_void] = ACTIONS(3441), + [anon_sym_delete] = ACTIONS(3441), + [anon_sym_PLUS_PLUS] = ACTIONS(3441), + [anon_sym_DASH_DASH] = ACTIONS(3441), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3441), + [sym_number] = ACTIONS(3441), + [sym_private_property_identifier] = ACTIONS(3441), + [sym_this] = ACTIONS(3441), + [sym_super] = ACTIONS(3441), + [sym_true] = ACTIONS(3441), + [sym_false] = ACTIONS(3441), + [sym_null] = ACTIONS(3441), + [sym_undefined] = ACTIONS(3441), + [anon_sym_AT] = ACTIONS(3441), + [anon_sym_static] = ACTIONS(3441), + [anon_sym_readonly] = ACTIONS(3441), + [anon_sym_get] = ACTIONS(3441), + [anon_sym_set] = ACTIONS(3441), + [anon_sym_declare] = ACTIONS(3441), + [anon_sym_public] = ACTIONS(3441), + [anon_sym_private] = ACTIONS(3441), + [anon_sym_protected] = ACTIONS(3441), + [anon_sym_override] = ACTIONS(3441), + [anon_sym_module] = ACTIONS(3441), + [anon_sym_any] = ACTIONS(3441), + [anon_sym_number] = ACTIONS(3441), + [anon_sym_boolean] = ACTIONS(3441), + [anon_sym_string] = ACTIONS(3441), + [anon_sym_symbol] = ACTIONS(3441), + [anon_sym_object] = ACTIONS(3441), + [anon_sym_abstract] = ACTIONS(3441), + [anon_sym_interface] = ACTIONS(3441), + [anon_sym_enum] = ACTIONS(3441), [sym_html_comment] = ACTIONS(5), }, - [1266] = { - [sym_comment] = STATE(1266), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1249] = { + [sym_comment] = STATE(1249), + [ts_builtin_sym_end] = ACTIONS(3487), + [sym_identifier] = ACTIONS(3445), + [anon_sym_export] = ACTIONS(3445), + [anon_sym_type] = ACTIONS(3445), + [anon_sym_namespace] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3445), + [anon_sym_RBRACE] = ACTIONS(3445), + [anon_sym_typeof] = ACTIONS(3445), + [anon_sym_import] = ACTIONS(3445), + [anon_sym_with] = ACTIONS(3445), + [anon_sym_var] = ACTIONS(3445), + [anon_sym_let] = ACTIONS(3445), + [anon_sym_const] = ACTIONS(3445), + [anon_sym_BANG] = ACTIONS(3445), + [anon_sym_else] = ACTIONS(3445), + [anon_sym_if] = ACTIONS(3445), + [anon_sym_switch] = ACTIONS(3445), + [anon_sym_for] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_await] = ACTIONS(3445), + [anon_sym_while] = ACTIONS(3445), + [anon_sym_do] = ACTIONS(3445), + [anon_sym_try] = ACTIONS(3445), + [anon_sym_break] = ACTIONS(3445), + [anon_sym_continue] = ACTIONS(3445), + [anon_sym_debugger] = ACTIONS(3445), + [anon_sym_return] = ACTIONS(3445), + [anon_sym_throw] = ACTIONS(3445), + [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_yield] = ACTIONS(3445), + [anon_sym_LBRACK] = ACTIONS(3445), + [anon_sym_LTtemplate_GT] = ACTIONS(3445), + [anon_sym_DQUOTE] = ACTIONS(3445), + [anon_sym_SQUOTE] = ACTIONS(3445), + [anon_sym_class] = ACTIONS(3445), + [anon_sym_async] = ACTIONS(3445), + [anon_sym_function] = ACTIONS(3445), + [anon_sym_new] = ACTIONS(3445), + [anon_sym_using] = ACTIONS(3445), + [anon_sym_PLUS] = ACTIONS(3445), + [anon_sym_DASH] = ACTIONS(3445), + [anon_sym_SLASH] = ACTIONS(3445), + [anon_sym_LT] = ACTIONS(3445), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_void] = ACTIONS(3445), + [anon_sym_delete] = ACTIONS(3445), + [anon_sym_PLUS_PLUS] = ACTIONS(3445), + [anon_sym_DASH_DASH] = ACTIONS(3445), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3445), + [sym_number] = ACTIONS(3445), + [sym_private_property_identifier] = ACTIONS(3445), + [sym_this] = ACTIONS(3445), + [sym_super] = ACTIONS(3445), + [sym_true] = ACTIONS(3445), + [sym_false] = ACTIONS(3445), + [sym_null] = ACTIONS(3445), + [sym_undefined] = ACTIONS(3445), + [anon_sym_AT] = ACTIONS(3445), + [anon_sym_static] = ACTIONS(3445), + [anon_sym_readonly] = ACTIONS(3445), + [anon_sym_get] = ACTIONS(3445), + [anon_sym_set] = ACTIONS(3445), + [anon_sym_declare] = ACTIONS(3445), + [anon_sym_public] = ACTIONS(3445), + [anon_sym_private] = ACTIONS(3445), + [anon_sym_protected] = ACTIONS(3445), + [anon_sym_override] = ACTIONS(3445), + [anon_sym_module] = ACTIONS(3445), + [anon_sym_any] = ACTIONS(3445), + [anon_sym_number] = ACTIONS(3445), + [anon_sym_boolean] = ACTIONS(3445), + [anon_sym_string] = ACTIONS(3445), + [anon_sym_symbol] = ACTIONS(3445), + [anon_sym_object] = ACTIONS(3445), + [anon_sym_abstract] = ACTIONS(3445), + [anon_sym_interface] = ACTIONS(3445), + [anon_sym_enum] = ACTIONS(3445), [sym_html_comment] = ACTIONS(5), }, - [1267] = { - [sym_comment] = STATE(1267), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1250] = { + [sym_comment] = STATE(1250), + [ts_builtin_sym_end] = ACTIONS(3489), + [sym_identifier] = ACTIONS(3447), + [anon_sym_export] = ACTIONS(3447), + [anon_sym_type] = ACTIONS(3447), + [anon_sym_namespace] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_RBRACE] = ACTIONS(3447), + [anon_sym_typeof] = ACTIONS(3447), + [anon_sym_import] = ACTIONS(3447), + [anon_sym_with] = ACTIONS(3447), + [anon_sym_var] = ACTIONS(3447), + [anon_sym_let] = ACTIONS(3447), + [anon_sym_const] = ACTIONS(3447), + [anon_sym_BANG] = ACTIONS(3447), + [anon_sym_else] = ACTIONS(3447), + [anon_sym_if] = ACTIONS(3447), + [anon_sym_switch] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3447), + [anon_sym_LPAREN] = ACTIONS(3447), + [anon_sym_await] = ACTIONS(3447), + [anon_sym_while] = ACTIONS(3447), + [anon_sym_do] = ACTIONS(3447), + [anon_sym_try] = ACTIONS(3447), + [anon_sym_break] = ACTIONS(3447), + [anon_sym_continue] = ACTIONS(3447), + [anon_sym_debugger] = ACTIONS(3447), + [anon_sym_return] = ACTIONS(3447), + [anon_sym_throw] = ACTIONS(3447), + [anon_sym_SEMI] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3447), + [anon_sym_LBRACK] = ACTIONS(3447), + [anon_sym_LTtemplate_GT] = ACTIONS(3447), + [anon_sym_DQUOTE] = ACTIONS(3447), + [anon_sym_SQUOTE] = ACTIONS(3447), + [anon_sym_class] = ACTIONS(3447), + [anon_sym_async] = ACTIONS(3447), + [anon_sym_function] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3447), + [anon_sym_using] = ACTIONS(3447), + [anon_sym_PLUS] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3447), + [anon_sym_SLASH] = ACTIONS(3447), + [anon_sym_LT] = ACTIONS(3447), + [anon_sym_TILDE] = ACTIONS(3447), + [anon_sym_void] = ACTIONS(3447), + [anon_sym_delete] = ACTIONS(3447), + [anon_sym_PLUS_PLUS] = ACTIONS(3447), + [anon_sym_DASH_DASH] = ACTIONS(3447), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3447), + [sym_number] = ACTIONS(3447), + [sym_private_property_identifier] = ACTIONS(3447), + [sym_this] = ACTIONS(3447), + [sym_super] = ACTIONS(3447), + [sym_true] = ACTIONS(3447), + [sym_false] = ACTIONS(3447), + [sym_null] = ACTIONS(3447), + [sym_undefined] = ACTIONS(3447), + [anon_sym_AT] = ACTIONS(3447), + [anon_sym_static] = ACTIONS(3447), + [anon_sym_readonly] = ACTIONS(3447), + [anon_sym_get] = ACTIONS(3447), + [anon_sym_set] = ACTIONS(3447), + [anon_sym_declare] = ACTIONS(3447), + [anon_sym_public] = ACTIONS(3447), + [anon_sym_private] = ACTIONS(3447), + [anon_sym_protected] = ACTIONS(3447), + [anon_sym_override] = ACTIONS(3447), + [anon_sym_module] = ACTIONS(3447), + [anon_sym_any] = ACTIONS(3447), + [anon_sym_number] = ACTIONS(3447), + [anon_sym_boolean] = ACTIONS(3447), + [anon_sym_string] = ACTIONS(3447), + [anon_sym_symbol] = ACTIONS(3447), + [anon_sym_object] = ACTIONS(3447), + [anon_sym_abstract] = ACTIONS(3447), + [anon_sym_interface] = ACTIONS(3447), + [anon_sym_enum] = ACTIONS(3447), [sym_html_comment] = ACTIONS(5), }, - [1268] = { - [sym_comment] = STATE(1268), - [ts_builtin_sym_end] = ACTIONS(2248), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_namespace] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2246), - [anon_sym_import] = ACTIONS(2246), - [anon_sym_with] = ACTIONS(2246), - [anon_sym_var] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_else] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_debugger] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_throw] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LTtemplate_GT] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_class] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2246), - [anon_sym_delete] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_private_property_identifier] = ACTIONS(2246), - [sym_this] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_undefined] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_readonly] = ACTIONS(2246), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_declare] = ACTIONS(2246), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_override] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_any] = ACTIONS(2246), - [anon_sym_number] = ACTIONS(2246), - [anon_sym_boolean] = ACTIONS(2246), - [anon_sym_string] = ACTIONS(2246), - [anon_sym_symbol] = ACTIONS(2246), - [anon_sym_object] = ACTIONS(2246), - [anon_sym_abstract] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), + [1251] = { + [sym_comment] = STATE(1251), + [ts_builtin_sym_end] = ACTIONS(3491), + [sym_identifier] = ACTIONS(3439), + [anon_sym_export] = ACTIONS(3439), + [anon_sym_type] = ACTIONS(3439), + [anon_sym_namespace] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_RBRACE] = ACTIONS(3439), + [anon_sym_typeof] = ACTIONS(3439), + [anon_sym_import] = ACTIONS(3439), + [anon_sym_with] = ACTIONS(3439), + [anon_sym_var] = ACTIONS(3439), + [anon_sym_let] = ACTIONS(3439), + [anon_sym_const] = ACTIONS(3439), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_else] = ACTIONS(3439), + [anon_sym_if] = ACTIONS(3439), + [anon_sym_switch] = ACTIONS(3439), + [anon_sym_for] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3439), + [anon_sym_await] = ACTIONS(3439), + [anon_sym_while] = ACTIONS(3439), + [anon_sym_do] = ACTIONS(3439), + [anon_sym_try] = ACTIONS(3439), + [anon_sym_break] = ACTIONS(3439), + [anon_sym_continue] = ACTIONS(3439), + [anon_sym_debugger] = ACTIONS(3439), + [anon_sym_return] = ACTIONS(3439), + [anon_sym_throw] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3439), + [anon_sym_yield] = ACTIONS(3439), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LTtemplate_GT] = ACTIONS(3439), + [anon_sym_DQUOTE] = ACTIONS(3439), + [anon_sym_SQUOTE] = ACTIONS(3439), + [anon_sym_class] = ACTIONS(3439), + [anon_sym_async] = ACTIONS(3439), + [anon_sym_function] = ACTIONS(3439), + [anon_sym_new] = ACTIONS(3439), + [anon_sym_using] = ACTIONS(3439), + [anon_sym_PLUS] = ACTIONS(3439), + [anon_sym_DASH] = ACTIONS(3439), + [anon_sym_SLASH] = ACTIONS(3439), + [anon_sym_LT] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(3439), + [anon_sym_void] = ACTIONS(3439), + [anon_sym_delete] = ACTIONS(3439), + [anon_sym_PLUS_PLUS] = ACTIONS(3439), + [anon_sym_DASH_DASH] = ACTIONS(3439), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3439), + [sym_number] = ACTIONS(3439), + [sym_private_property_identifier] = ACTIONS(3439), + [sym_this] = ACTIONS(3439), + [sym_super] = ACTIONS(3439), + [sym_true] = ACTIONS(3439), + [sym_false] = ACTIONS(3439), + [sym_null] = ACTIONS(3439), + [sym_undefined] = ACTIONS(3439), + [anon_sym_AT] = ACTIONS(3439), + [anon_sym_static] = ACTIONS(3439), + [anon_sym_readonly] = ACTIONS(3439), + [anon_sym_get] = ACTIONS(3439), + [anon_sym_set] = ACTIONS(3439), + [anon_sym_declare] = ACTIONS(3439), + [anon_sym_public] = ACTIONS(3439), + [anon_sym_private] = ACTIONS(3439), + [anon_sym_protected] = ACTIONS(3439), + [anon_sym_override] = ACTIONS(3439), + [anon_sym_module] = ACTIONS(3439), + [anon_sym_any] = ACTIONS(3439), + [anon_sym_number] = ACTIONS(3439), + [anon_sym_boolean] = ACTIONS(3439), + [anon_sym_string] = ACTIONS(3439), + [anon_sym_symbol] = ACTIONS(3439), + [anon_sym_object] = ACTIONS(3439), + [anon_sym_abstract] = ACTIONS(3439), + [anon_sym_interface] = ACTIONS(3439), + [anon_sym_enum] = ACTIONS(3439), [sym_html_comment] = ACTIONS(5), }, - [1269] = { - [sym_comment] = STATE(1269), - [ts_builtin_sym_end] = ACTIONS(3467), - [sym_identifier] = ACTIONS(3387), - [anon_sym_export] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_namespace] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_typeof] = ACTIONS(3387), - [anon_sym_import] = ACTIONS(3387), - [anon_sym_with] = ACTIONS(3387), - [anon_sym_var] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_else] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_switch] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_await] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_debugger] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_throw] = ACTIONS(3387), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LTtemplate_GT] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_class] = ACTIONS(3387), - [anon_sym_async] = ACTIONS(3387), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_using] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_void] = ACTIONS(3387), - [anon_sym_delete] = ACTIONS(3387), + [1252] = { + [sym_comment] = STATE(1252), + [ts_builtin_sym_end] = ACTIONS(3493), + [sym_identifier] = ACTIONS(3437), + [anon_sym_export] = ACTIONS(3437), + [anon_sym_type] = ACTIONS(3437), + [anon_sym_namespace] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3437), + [anon_sym_RBRACE] = ACTIONS(3437), + [anon_sym_typeof] = ACTIONS(3437), + [anon_sym_import] = ACTIONS(3437), + [anon_sym_with] = ACTIONS(3437), + [anon_sym_var] = ACTIONS(3437), + [anon_sym_let] = ACTIONS(3437), + [anon_sym_const] = ACTIONS(3437), + [anon_sym_BANG] = ACTIONS(3437), + [anon_sym_else] = ACTIONS(3437), + [anon_sym_if] = ACTIONS(3437), + [anon_sym_switch] = ACTIONS(3437), + [anon_sym_for] = ACTIONS(3437), + [anon_sym_LPAREN] = ACTIONS(3437), + [anon_sym_await] = ACTIONS(3437), + [anon_sym_while] = ACTIONS(3437), + [anon_sym_do] = ACTIONS(3437), + [anon_sym_try] = ACTIONS(3437), + [anon_sym_break] = ACTIONS(3437), + [anon_sym_continue] = ACTIONS(3437), + [anon_sym_debugger] = ACTIONS(3437), + [anon_sym_return] = ACTIONS(3437), + [anon_sym_throw] = ACTIONS(3437), + [anon_sym_SEMI] = ACTIONS(3437), + [anon_sym_yield] = ACTIONS(3437), + [anon_sym_LBRACK] = ACTIONS(3437), + [anon_sym_LTtemplate_GT] = ACTIONS(3437), + [anon_sym_DQUOTE] = ACTIONS(3437), + [anon_sym_SQUOTE] = ACTIONS(3437), + [anon_sym_class] = ACTIONS(3437), + [anon_sym_async] = ACTIONS(3437), + [anon_sym_function] = ACTIONS(3437), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_using] = ACTIONS(3437), + [anon_sym_PLUS] = ACTIONS(3437), + [anon_sym_DASH] = ACTIONS(3437), + [anon_sym_SLASH] = ACTIONS(3437), + [anon_sym_LT] = ACTIONS(3437), + [anon_sym_TILDE] = ACTIONS(3437), + [anon_sym_void] = ACTIONS(3437), + [anon_sym_delete] = ACTIONS(3437), + [anon_sym_PLUS_PLUS] = ACTIONS(3437), + [anon_sym_DASH_DASH] = ACTIONS(3437), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3437), + [sym_number] = ACTIONS(3437), + [sym_private_property_identifier] = ACTIONS(3437), + [sym_this] = ACTIONS(3437), + [sym_super] = ACTIONS(3437), + [sym_true] = ACTIONS(3437), + [sym_false] = ACTIONS(3437), + [sym_null] = ACTIONS(3437), + [sym_undefined] = ACTIONS(3437), + [anon_sym_AT] = ACTIONS(3437), + [anon_sym_static] = ACTIONS(3437), + [anon_sym_readonly] = ACTIONS(3437), + [anon_sym_get] = ACTIONS(3437), + [anon_sym_set] = ACTIONS(3437), + [anon_sym_declare] = ACTIONS(3437), + [anon_sym_public] = ACTIONS(3437), + [anon_sym_private] = ACTIONS(3437), + [anon_sym_protected] = ACTIONS(3437), + [anon_sym_override] = ACTIONS(3437), + [anon_sym_module] = ACTIONS(3437), + [anon_sym_any] = ACTIONS(3437), + [anon_sym_number] = ACTIONS(3437), + [anon_sym_boolean] = ACTIONS(3437), + [anon_sym_string] = ACTIONS(3437), + [anon_sym_symbol] = ACTIONS(3437), + [anon_sym_object] = ACTIONS(3437), + [anon_sym_abstract] = ACTIONS(3437), + [anon_sym_interface] = ACTIONS(3437), + [anon_sym_enum] = ACTIONS(3437), + [sym_html_comment] = ACTIONS(5), + }, + [1253] = { + [sym_comment] = STATE(1253), + [sym_identifier] = ACTIONS(3413), + [anon_sym_export] = ACTIONS(3413), + [anon_sym_default] = ACTIONS(3413), + [anon_sym_type] = ACTIONS(3413), + [anon_sym_namespace] = ACTIONS(3413), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_RBRACE] = ACTIONS(3413), + [anon_sym_typeof] = ACTIONS(3413), + [anon_sym_import] = ACTIONS(3413), + [anon_sym_with] = ACTIONS(3413), + [anon_sym_var] = ACTIONS(3413), + [anon_sym_let] = ACTIONS(3413), + [anon_sym_const] = ACTIONS(3413), + [anon_sym_BANG] = ACTIONS(3413), + [anon_sym_if] = ACTIONS(3413), + [anon_sym_switch] = ACTIONS(3413), + [anon_sym_for] = ACTIONS(3413), + [anon_sym_LPAREN] = ACTIONS(3413), + [anon_sym_await] = ACTIONS(3413), + [anon_sym_while] = ACTIONS(3413), + [anon_sym_do] = ACTIONS(3413), + [anon_sym_try] = ACTIONS(3413), + [anon_sym_break] = ACTIONS(3413), + [anon_sym_continue] = ACTIONS(3413), + [anon_sym_debugger] = ACTIONS(3413), + [anon_sym_return] = ACTIONS(3413), + [anon_sym_throw] = ACTIONS(3413), + [anon_sym_SEMI] = ACTIONS(3413), + [anon_sym_case] = ACTIONS(3413), + [anon_sym_yield] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LTtemplate_GT] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(3413), + [anon_sym_SQUOTE] = ACTIONS(3413), + [anon_sym_class] = ACTIONS(3413), + [anon_sym_async] = ACTIONS(3413), + [anon_sym_function] = ACTIONS(3413), + [anon_sym_new] = ACTIONS(3413), + [anon_sym_using] = ACTIONS(3413), + [anon_sym_PLUS] = ACTIONS(3413), + [anon_sym_DASH] = ACTIONS(3413), + [anon_sym_SLASH] = ACTIONS(3413), + [anon_sym_LT] = ACTIONS(3413), + [anon_sym_TILDE] = ACTIONS(3413), + [anon_sym_void] = ACTIONS(3413), + [anon_sym_delete] = ACTIONS(3413), + [anon_sym_PLUS_PLUS] = ACTIONS(3413), + [anon_sym_DASH_DASH] = ACTIONS(3413), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3413), + [sym_number] = ACTIONS(3413), + [sym_private_property_identifier] = ACTIONS(3413), + [sym_this] = ACTIONS(3413), + [sym_super] = ACTIONS(3413), + [sym_true] = ACTIONS(3413), + [sym_false] = ACTIONS(3413), + [sym_null] = ACTIONS(3413), + [sym_undefined] = ACTIONS(3413), + [anon_sym_AT] = ACTIONS(3413), + [anon_sym_static] = ACTIONS(3413), + [anon_sym_readonly] = ACTIONS(3413), + [anon_sym_get] = ACTIONS(3413), + [anon_sym_set] = ACTIONS(3413), + [anon_sym_declare] = ACTIONS(3413), + [anon_sym_public] = ACTIONS(3413), + [anon_sym_private] = ACTIONS(3413), + [anon_sym_protected] = ACTIONS(3413), + [anon_sym_override] = ACTIONS(3413), + [anon_sym_module] = ACTIONS(3413), + [anon_sym_any] = ACTIONS(3413), + [anon_sym_number] = ACTIONS(3413), + [anon_sym_boolean] = ACTIONS(3413), + [anon_sym_string] = ACTIONS(3413), + [anon_sym_symbol] = ACTIONS(3413), + [anon_sym_object] = ACTIONS(3413), + [anon_sym_abstract] = ACTIONS(3413), + [anon_sym_interface] = ACTIONS(3413), + [anon_sym_enum] = ACTIONS(3413), + [sym_html_comment] = ACTIONS(5), + }, + [1254] = { + [sym_comment] = STATE(1254), + [sym_identifier] = ACTIONS(3389), + [anon_sym_export] = ACTIONS(3389), + [anon_sym_default] = ACTIONS(3389), + [anon_sym_type] = ACTIONS(3389), + [anon_sym_namespace] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_typeof] = ACTIONS(3389), + [anon_sym_import] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3389), + [anon_sym_var] = ACTIONS(3389), + [anon_sym_let] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3389), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3389), + [anon_sym_switch] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3389), + [anon_sym_await] = ACTIONS(3389), + [anon_sym_while] = ACTIONS(3389), + [anon_sym_do] = ACTIONS(3389), + [anon_sym_try] = ACTIONS(3389), + [anon_sym_break] = ACTIONS(3389), + [anon_sym_continue] = ACTIONS(3389), + [anon_sym_debugger] = ACTIONS(3389), + [anon_sym_return] = ACTIONS(3389), + [anon_sym_throw] = ACTIONS(3389), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym_case] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3389), + [anon_sym_LBRACK] = ACTIONS(3389), + [anon_sym_LTtemplate_GT] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(3389), + [anon_sym_SQUOTE] = ACTIONS(3389), + [anon_sym_class] = ACTIONS(3389), + [anon_sym_async] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3389), + [anon_sym_using] = ACTIONS(3389), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_SLASH] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3389), + [anon_sym_void] = ACTIONS(3389), + [anon_sym_delete] = ACTIONS(3389), + [anon_sym_PLUS_PLUS] = ACTIONS(3389), + [anon_sym_DASH_DASH] = ACTIONS(3389), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3389), + [sym_number] = ACTIONS(3389), + [sym_private_property_identifier] = ACTIONS(3389), + [sym_this] = ACTIONS(3389), + [sym_super] = ACTIONS(3389), + [sym_true] = ACTIONS(3389), + [sym_false] = ACTIONS(3389), + [sym_null] = ACTIONS(3389), + [sym_undefined] = ACTIONS(3389), + [anon_sym_AT] = ACTIONS(3389), + [anon_sym_static] = ACTIONS(3389), + [anon_sym_readonly] = ACTIONS(3389), + [anon_sym_get] = ACTIONS(3389), + [anon_sym_set] = ACTIONS(3389), + [anon_sym_declare] = ACTIONS(3389), + [anon_sym_public] = ACTIONS(3389), + [anon_sym_private] = ACTIONS(3389), + [anon_sym_protected] = ACTIONS(3389), + [anon_sym_override] = ACTIONS(3389), + [anon_sym_module] = ACTIONS(3389), + [anon_sym_any] = ACTIONS(3389), + [anon_sym_number] = ACTIONS(3389), + [anon_sym_boolean] = ACTIONS(3389), + [anon_sym_string] = ACTIONS(3389), + [anon_sym_symbol] = ACTIONS(3389), + [anon_sym_object] = ACTIONS(3389), + [anon_sym_abstract] = ACTIONS(3389), + [anon_sym_interface] = ACTIONS(3389), + [anon_sym_enum] = ACTIONS(3389), + [sym_html_comment] = ACTIONS(5), + }, + [1255] = { + [sym_comment] = STATE(1255), + [ts_builtin_sym_end] = ACTIONS(3495), + [sym_identifier] = ACTIONS(3429), + [anon_sym_export] = ACTIONS(3429), + [anon_sym_type] = ACTIONS(3429), + [anon_sym_namespace] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_typeof] = ACTIONS(3429), + [anon_sym_import] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_const] = ACTIONS(3429), + [anon_sym_BANG] = ACTIONS(3429), + [anon_sym_else] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_await] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_break] = ACTIONS(3429), + [anon_sym_continue] = ACTIONS(3429), + [anon_sym_debugger] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_throw] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LTtemplate_GT] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_SQUOTE] = ACTIONS(3429), + [anon_sym_class] = ACTIONS(3429), + [anon_sym_async] = ACTIONS(3429), + [anon_sym_function] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_using] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_void] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3429), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3429), + [sym_number] = ACTIONS(3429), + [sym_private_property_identifier] = ACTIONS(3429), + [sym_this] = ACTIONS(3429), + [sym_super] = ACTIONS(3429), + [sym_true] = ACTIONS(3429), + [sym_false] = ACTIONS(3429), + [sym_null] = ACTIONS(3429), + [sym_undefined] = ACTIONS(3429), + [anon_sym_AT] = ACTIONS(3429), + [anon_sym_static] = ACTIONS(3429), + [anon_sym_readonly] = ACTIONS(3429), + [anon_sym_get] = ACTIONS(3429), + [anon_sym_set] = ACTIONS(3429), + [anon_sym_declare] = ACTIONS(3429), + [anon_sym_public] = ACTIONS(3429), + [anon_sym_private] = ACTIONS(3429), + [anon_sym_protected] = ACTIONS(3429), + [anon_sym_override] = ACTIONS(3429), + [anon_sym_module] = ACTIONS(3429), + [anon_sym_any] = ACTIONS(3429), + [anon_sym_number] = ACTIONS(3429), + [anon_sym_boolean] = ACTIONS(3429), + [anon_sym_string] = ACTIONS(3429), + [anon_sym_symbol] = ACTIONS(3429), + [anon_sym_object] = ACTIONS(3429), + [anon_sym_abstract] = ACTIONS(3429), + [anon_sym_interface] = ACTIONS(3429), + [anon_sym_enum] = ACTIONS(3429), + [sym_html_comment] = ACTIONS(5), + }, + [1256] = { + [sym_comment] = STATE(1256), + [ts_builtin_sym_end] = ACTIONS(2358), + [sym_identifier] = ACTIONS(2226), + [anon_sym_export] = ACTIONS(2226), + [anon_sym_type] = ACTIONS(2226), + [anon_sym_namespace] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2226), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_typeof] = ACTIONS(2226), + [anon_sym_import] = ACTIONS(2226), + [anon_sym_with] = ACTIONS(2226), + [anon_sym_var] = ACTIONS(2226), + [anon_sym_let] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [anon_sym_BANG] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_switch] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_await] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_do] = ACTIONS(2226), + [anon_sym_try] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_debugger] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_throw] = ACTIONS(2226), + [anon_sym_SEMI] = ACTIONS(2226), + [anon_sym_yield] = ACTIONS(2226), + [anon_sym_LBRACK] = ACTIONS(2226), + [anon_sym_LTtemplate_GT] = ACTIONS(2226), + [anon_sym_DQUOTE] = ACTIONS(2226), + [anon_sym_SQUOTE] = ACTIONS(2226), + [anon_sym_class] = ACTIONS(2226), + [anon_sym_async] = ACTIONS(2226), + [anon_sym_function] = ACTIONS(2226), + [anon_sym_new] = ACTIONS(2226), + [anon_sym_using] = ACTIONS(2226), + [anon_sym_PLUS] = ACTIONS(2226), + [anon_sym_DASH] = ACTIONS(2226), + [anon_sym_SLASH] = ACTIONS(2226), + [anon_sym_LT] = ACTIONS(2226), + [anon_sym_TILDE] = ACTIONS(2226), + [anon_sym_void] = ACTIONS(2226), + [anon_sym_delete] = ACTIONS(2226), + [anon_sym_PLUS_PLUS] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2226), + [sym_number] = ACTIONS(2226), + [sym_private_property_identifier] = ACTIONS(2226), + [sym_this] = ACTIONS(2226), + [sym_super] = ACTIONS(2226), + [sym_true] = ACTIONS(2226), + [sym_false] = ACTIONS(2226), + [sym_null] = ACTIONS(2226), + [sym_undefined] = ACTIONS(2226), + [anon_sym_AT] = ACTIONS(2226), + [anon_sym_static] = ACTIONS(2226), + [anon_sym_readonly] = ACTIONS(2226), + [anon_sym_get] = ACTIONS(2226), + [anon_sym_set] = ACTIONS(2226), + [anon_sym_declare] = ACTIONS(2226), + [anon_sym_public] = ACTIONS(2226), + [anon_sym_private] = ACTIONS(2226), + [anon_sym_protected] = ACTIONS(2226), + [anon_sym_override] = ACTIONS(2226), + [anon_sym_module] = ACTIONS(2226), + [anon_sym_any] = ACTIONS(2226), + [anon_sym_number] = ACTIONS(2226), + [anon_sym_boolean] = ACTIONS(2226), + [anon_sym_string] = ACTIONS(2226), + [anon_sym_symbol] = ACTIONS(2226), + [anon_sym_object] = ACTIONS(2226), + [anon_sym_abstract] = ACTIONS(2226), + [anon_sym_interface] = ACTIONS(2226), + [anon_sym_enum] = ACTIONS(2226), + [sym__automatic_semicolon] = ACTIONS(2460), + [sym_html_comment] = ACTIONS(5), + }, + [1257] = { + [sym_comment] = STATE(1257), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_default] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_case] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym_html_comment] = ACTIONS(5), + }, + [1258] = { + [sym_comment] = STATE(1258), + [sym_identifier] = ACTIONS(3387), + [anon_sym_export] = ACTIONS(3387), + [anon_sym_default] = ACTIONS(3387), + [anon_sym_type] = ACTIONS(3387), + [anon_sym_namespace] = ACTIONS(3387), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_RBRACE] = ACTIONS(3387), + [anon_sym_typeof] = ACTIONS(3387), + [anon_sym_import] = ACTIONS(3387), + [anon_sym_with] = ACTIONS(3387), + [anon_sym_var] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_const] = ACTIONS(3387), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_switch] = ACTIONS(3387), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_await] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_break] = ACTIONS(3387), + [anon_sym_continue] = ACTIONS(3387), + [anon_sym_debugger] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_throw] = ACTIONS(3387), + [anon_sym_SEMI] = ACTIONS(3387), + [anon_sym_case] = ACTIONS(3387), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LTtemplate_GT] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_SQUOTE] = ACTIONS(3387), + [anon_sym_class] = ACTIONS(3387), + [anon_sym_async] = ACTIONS(3387), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_using] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_SLASH] = ACTIONS(3387), + [anon_sym_LT] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3387), + [anon_sym_void] = ACTIONS(3387), + [anon_sym_delete] = ACTIONS(3387), [anon_sym_PLUS_PLUS] = ACTIONS(3387), [anon_sym_DASH_DASH] = ACTIONS(3387), [aux_sym_comment_token1] = ACTIONS(3), @@ -166708,2061 +165487,1569 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3387), [sym_html_comment] = ACTIONS(5), }, - [1270] = { - [sym_comment] = STATE(1270), - [sym_identifier] = ACTIONS(3333), - [anon_sym_export] = ACTIONS(3333), - [anon_sym_default] = ACTIONS(3333), - [anon_sym_type] = ACTIONS(3333), - [anon_sym_namespace] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_typeof] = ACTIONS(3333), - [anon_sym_import] = ACTIONS(3333), - [anon_sym_with] = ACTIONS(3333), - [anon_sym_var] = ACTIONS(3333), - [anon_sym_let] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3333), - [anon_sym_BANG] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3333), - [anon_sym_switch] = ACTIONS(3333), - [anon_sym_for] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_await] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3333), - [anon_sym_do] = ACTIONS(3333), - [anon_sym_try] = ACTIONS(3333), - [anon_sym_break] = ACTIONS(3333), - [anon_sym_continue] = ACTIONS(3333), - [anon_sym_debugger] = ACTIONS(3333), - [anon_sym_return] = ACTIONS(3333), - [anon_sym_throw] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_case] = ACTIONS(3333), - [anon_sym_yield] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_LTtemplate_GT] = ACTIONS(3333), - [anon_sym_DQUOTE] = ACTIONS(3333), - [anon_sym_SQUOTE] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_async] = ACTIONS(3333), - [anon_sym_function] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3333), - [anon_sym_using] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_SLASH] = ACTIONS(3333), - [anon_sym_LT] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_void] = ACTIONS(3333), - [anon_sym_delete] = ACTIONS(3333), - [anon_sym_PLUS_PLUS] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3333), + [1259] = { + [sym_comment] = STATE(1259), + [ts_builtin_sym_end] = ACTIONS(3497), + [sym_identifier] = ACTIONS(3281), + [anon_sym_export] = ACTIONS(3281), + [anon_sym_type] = ACTIONS(3281), + [anon_sym_namespace] = ACTIONS(3281), + [anon_sym_LBRACE] = ACTIONS(3281), + [anon_sym_RBRACE] = ACTIONS(3281), + [anon_sym_typeof] = ACTIONS(3281), + [anon_sym_import] = ACTIONS(3281), + [anon_sym_with] = ACTIONS(3281), + [anon_sym_var] = ACTIONS(3281), + [anon_sym_let] = ACTIONS(3281), + [anon_sym_const] = ACTIONS(3281), + [anon_sym_BANG] = ACTIONS(3281), + [anon_sym_else] = ACTIONS(3281), + [anon_sym_if] = ACTIONS(3281), + [anon_sym_switch] = ACTIONS(3281), + [anon_sym_for] = ACTIONS(3281), + [anon_sym_LPAREN] = ACTIONS(3281), + [anon_sym_await] = ACTIONS(3281), + [anon_sym_while] = ACTIONS(3281), + [anon_sym_do] = ACTIONS(3281), + [anon_sym_try] = ACTIONS(3281), + [anon_sym_break] = ACTIONS(3281), + [anon_sym_continue] = ACTIONS(3281), + [anon_sym_debugger] = ACTIONS(3281), + [anon_sym_return] = ACTIONS(3281), + [anon_sym_throw] = ACTIONS(3281), + [anon_sym_SEMI] = ACTIONS(3281), + [anon_sym_yield] = ACTIONS(3281), + [anon_sym_LBRACK] = ACTIONS(3281), + [anon_sym_LTtemplate_GT] = ACTIONS(3281), + [anon_sym_DQUOTE] = ACTIONS(3281), + [anon_sym_SQUOTE] = ACTIONS(3281), + [anon_sym_class] = ACTIONS(3281), + [anon_sym_async] = ACTIONS(3281), + [anon_sym_function] = ACTIONS(3281), + [anon_sym_new] = ACTIONS(3281), + [anon_sym_using] = ACTIONS(3281), + [anon_sym_PLUS] = ACTIONS(3281), + [anon_sym_DASH] = ACTIONS(3281), + [anon_sym_SLASH] = ACTIONS(3281), + [anon_sym_LT] = ACTIONS(3281), + [anon_sym_TILDE] = ACTIONS(3281), + [anon_sym_void] = ACTIONS(3281), + [anon_sym_delete] = ACTIONS(3281), + [anon_sym_PLUS_PLUS] = ACTIONS(3281), + [anon_sym_DASH_DASH] = ACTIONS(3281), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3333), - [sym_number] = ACTIONS(3333), - [sym_private_property_identifier] = ACTIONS(3333), - [sym_this] = ACTIONS(3333), - [sym_super] = ACTIONS(3333), - [sym_true] = ACTIONS(3333), - [sym_false] = ACTIONS(3333), - [sym_null] = ACTIONS(3333), - [sym_undefined] = ACTIONS(3333), - [anon_sym_AT] = ACTIONS(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_readonly] = ACTIONS(3333), - [anon_sym_get] = ACTIONS(3333), - [anon_sym_set] = ACTIONS(3333), - [anon_sym_declare] = ACTIONS(3333), - [anon_sym_public] = ACTIONS(3333), - [anon_sym_private] = ACTIONS(3333), - [anon_sym_protected] = ACTIONS(3333), - [anon_sym_override] = ACTIONS(3333), - [anon_sym_module] = ACTIONS(3333), - [anon_sym_any] = ACTIONS(3333), - [anon_sym_number] = ACTIONS(3333), - [anon_sym_boolean] = ACTIONS(3333), - [anon_sym_string] = ACTIONS(3333), - [anon_sym_symbol] = ACTIONS(3333), - [anon_sym_object] = ACTIONS(3333), - [anon_sym_abstract] = ACTIONS(3333), - [anon_sym_interface] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), - [sym_html_comment] = ACTIONS(5), - }, - [1271] = { - [sym_comment] = STATE(1271), - [sym_identifier] = ACTIONS(3337), - [anon_sym_export] = ACTIONS(3337), - [anon_sym_default] = ACTIONS(3337), - [anon_sym_type] = ACTIONS(3337), - [anon_sym_namespace] = ACTIONS(3337), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_typeof] = ACTIONS(3337), - [anon_sym_import] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(3337), - [anon_sym_var] = ACTIONS(3337), - [anon_sym_let] = ACTIONS(3337), - [anon_sym_const] = ACTIONS(3337), - [anon_sym_BANG] = ACTIONS(3337), - [anon_sym_if] = ACTIONS(3337), - [anon_sym_switch] = ACTIONS(3337), - [anon_sym_for] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_await] = ACTIONS(3337), - [anon_sym_while] = ACTIONS(3337), - [anon_sym_do] = ACTIONS(3337), - [anon_sym_try] = ACTIONS(3337), - [anon_sym_break] = ACTIONS(3337), - [anon_sym_continue] = ACTIONS(3337), - [anon_sym_debugger] = ACTIONS(3337), - [anon_sym_return] = ACTIONS(3337), - [anon_sym_throw] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_case] = ACTIONS(3337), - [anon_sym_yield] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_LTtemplate_GT] = ACTIONS(3337), - [anon_sym_DQUOTE] = ACTIONS(3337), - [anon_sym_SQUOTE] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_async] = ACTIONS(3337), - [anon_sym_function] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_using] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_SLASH] = ACTIONS(3337), - [anon_sym_LT] = ACTIONS(3337), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_void] = ACTIONS(3337), - [anon_sym_delete] = ACTIONS(3337), - [anon_sym_PLUS_PLUS] = ACTIONS(3337), - [anon_sym_DASH_DASH] = ACTIONS(3337), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3337), - [sym_number] = ACTIONS(3337), - [sym_private_property_identifier] = ACTIONS(3337), - [sym_this] = ACTIONS(3337), - [sym_super] = ACTIONS(3337), - [sym_true] = ACTIONS(3337), - [sym_false] = ACTIONS(3337), - [sym_null] = ACTIONS(3337), - [sym_undefined] = ACTIONS(3337), - [anon_sym_AT] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_readonly] = ACTIONS(3337), - [anon_sym_get] = ACTIONS(3337), - [anon_sym_set] = ACTIONS(3337), - [anon_sym_declare] = ACTIONS(3337), - [anon_sym_public] = ACTIONS(3337), - [anon_sym_private] = ACTIONS(3337), - [anon_sym_protected] = ACTIONS(3337), - [anon_sym_override] = ACTIONS(3337), - [anon_sym_module] = ACTIONS(3337), - [anon_sym_any] = ACTIONS(3337), - [anon_sym_number] = ACTIONS(3337), - [anon_sym_boolean] = ACTIONS(3337), - [anon_sym_string] = ACTIONS(3337), - [anon_sym_symbol] = ACTIONS(3337), - [anon_sym_object] = ACTIONS(3337), - [anon_sym_abstract] = ACTIONS(3337), - [anon_sym_interface] = ACTIONS(3337), - [anon_sym_enum] = ACTIONS(3337), + [anon_sym_BQUOTE] = ACTIONS(3281), + [sym_number] = ACTIONS(3281), + [sym_private_property_identifier] = ACTIONS(3281), + [sym_this] = ACTIONS(3281), + [sym_super] = ACTIONS(3281), + [sym_true] = ACTIONS(3281), + [sym_false] = ACTIONS(3281), + [sym_null] = ACTIONS(3281), + [sym_undefined] = ACTIONS(3281), + [anon_sym_AT] = ACTIONS(3281), + [anon_sym_static] = ACTIONS(3281), + [anon_sym_readonly] = ACTIONS(3281), + [anon_sym_get] = ACTIONS(3281), + [anon_sym_set] = ACTIONS(3281), + [anon_sym_declare] = ACTIONS(3281), + [anon_sym_public] = ACTIONS(3281), + [anon_sym_private] = ACTIONS(3281), + [anon_sym_protected] = ACTIONS(3281), + [anon_sym_override] = ACTIONS(3281), + [anon_sym_module] = ACTIONS(3281), + [anon_sym_any] = ACTIONS(3281), + [anon_sym_number] = ACTIONS(3281), + [anon_sym_boolean] = ACTIONS(3281), + [anon_sym_string] = ACTIONS(3281), + [anon_sym_symbol] = ACTIONS(3281), + [anon_sym_object] = ACTIONS(3281), + [anon_sym_abstract] = ACTIONS(3281), + [anon_sym_interface] = ACTIONS(3281), + [anon_sym_enum] = ACTIONS(3281), [sym_html_comment] = ACTIONS(5), }, - [1272] = { - [sym_comment] = STATE(1272), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1260] = { + [sym_comment] = STATE(1260), + [ts_builtin_sym_end] = ACTIONS(3499), + [sym_identifier] = ACTIONS(3413), + [anon_sym_export] = ACTIONS(3413), + [anon_sym_type] = ACTIONS(3413), + [anon_sym_namespace] = ACTIONS(3413), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_RBRACE] = ACTIONS(3413), + [anon_sym_typeof] = ACTIONS(3413), + [anon_sym_import] = ACTIONS(3413), + [anon_sym_with] = ACTIONS(3413), + [anon_sym_var] = ACTIONS(3413), + [anon_sym_let] = ACTIONS(3413), + [anon_sym_const] = ACTIONS(3413), + [anon_sym_BANG] = ACTIONS(3413), + [anon_sym_else] = ACTIONS(3413), + [anon_sym_if] = ACTIONS(3413), + [anon_sym_switch] = ACTIONS(3413), + [anon_sym_for] = ACTIONS(3413), + [anon_sym_LPAREN] = ACTIONS(3413), + [anon_sym_await] = ACTIONS(3413), + [anon_sym_while] = ACTIONS(3413), + [anon_sym_do] = ACTIONS(3413), + [anon_sym_try] = ACTIONS(3413), + [anon_sym_break] = ACTIONS(3413), + [anon_sym_continue] = ACTIONS(3413), + [anon_sym_debugger] = ACTIONS(3413), + [anon_sym_return] = ACTIONS(3413), + [anon_sym_throw] = ACTIONS(3413), + [anon_sym_SEMI] = ACTIONS(3413), + [anon_sym_yield] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LTtemplate_GT] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(3413), + [anon_sym_SQUOTE] = ACTIONS(3413), + [anon_sym_class] = ACTIONS(3413), + [anon_sym_async] = ACTIONS(3413), + [anon_sym_function] = ACTIONS(3413), + [anon_sym_new] = ACTIONS(3413), + [anon_sym_using] = ACTIONS(3413), + [anon_sym_PLUS] = ACTIONS(3413), + [anon_sym_DASH] = ACTIONS(3413), + [anon_sym_SLASH] = ACTIONS(3413), + [anon_sym_LT] = ACTIONS(3413), + [anon_sym_TILDE] = ACTIONS(3413), + [anon_sym_void] = ACTIONS(3413), + [anon_sym_delete] = ACTIONS(3413), + [anon_sym_PLUS_PLUS] = ACTIONS(3413), + [anon_sym_DASH_DASH] = ACTIONS(3413), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3413), + [sym_number] = ACTIONS(3413), + [sym_private_property_identifier] = ACTIONS(3413), + [sym_this] = ACTIONS(3413), + [sym_super] = ACTIONS(3413), + [sym_true] = ACTIONS(3413), + [sym_false] = ACTIONS(3413), + [sym_null] = ACTIONS(3413), + [sym_undefined] = ACTIONS(3413), + [anon_sym_AT] = ACTIONS(3413), + [anon_sym_static] = ACTIONS(3413), + [anon_sym_readonly] = ACTIONS(3413), + [anon_sym_get] = ACTIONS(3413), + [anon_sym_set] = ACTIONS(3413), + [anon_sym_declare] = ACTIONS(3413), + [anon_sym_public] = ACTIONS(3413), + [anon_sym_private] = ACTIONS(3413), + [anon_sym_protected] = ACTIONS(3413), + [anon_sym_override] = ACTIONS(3413), + [anon_sym_module] = ACTIONS(3413), + [anon_sym_any] = ACTIONS(3413), + [anon_sym_number] = ACTIONS(3413), + [anon_sym_boolean] = ACTIONS(3413), + [anon_sym_string] = ACTIONS(3413), + [anon_sym_symbol] = ACTIONS(3413), + [anon_sym_object] = ACTIONS(3413), + [anon_sym_abstract] = ACTIONS(3413), + [anon_sym_interface] = ACTIONS(3413), + [anon_sym_enum] = ACTIONS(3413), [sym_html_comment] = ACTIONS(5), }, - [1273] = { - [sym_comment] = STATE(1273), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1261] = { + [sym_comment] = STATE(1261), + [ts_builtin_sym_end] = ACTIONS(3457), + [sym_identifier] = ACTIONS(3167), + [anon_sym_export] = ACTIONS(3167), + [anon_sym_type] = ACTIONS(3167), + [anon_sym_namespace] = ACTIONS(3167), + [anon_sym_LBRACE] = ACTIONS(3167), + [anon_sym_RBRACE] = ACTIONS(3167), + [anon_sym_typeof] = ACTIONS(3167), + [anon_sym_import] = ACTIONS(3167), + [anon_sym_with] = ACTIONS(3167), + [anon_sym_var] = ACTIONS(3167), + [anon_sym_let] = ACTIONS(3167), + [anon_sym_const] = ACTIONS(3167), + [anon_sym_BANG] = ACTIONS(3167), + [anon_sym_if] = ACTIONS(3167), + [anon_sym_switch] = ACTIONS(3167), + [anon_sym_for] = ACTIONS(3167), + [anon_sym_LPAREN] = ACTIONS(3167), + [anon_sym_await] = ACTIONS(3167), + [anon_sym_while] = ACTIONS(3167), + [anon_sym_do] = ACTIONS(3167), + [anon_sym_try] = ACTIONS(3167), + [anon_sym_break] = ACTIONS(3167), + [anon_sym_continue] = ACTIONS(3167), + [anon_sym_debugger] = ACTIONS(3167), + [anon_sym_return] = ACTIONS(3167), + [anon_sym_throw] = ACTIONS(3167), + [anon_sym_SEMI] = ACTIONS(3167), + [anon_sym_finally] = ACTIONS(3167), + [anon_sym_yield] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(3167), + [anon_sym_LTtemplate_GT] = ACTIONS(3167), + [anon_sym_DQUOTE] = ACTIONS(3167), + [anon_sym_SQUOTE] = ACTIONS(3167), + [anon_sym_class] = ACTIONS(3167), + [anon_sym_async] = ACTIONS(3167), + [anon_sym_function] = ACTIONS(3167), + [anon_sym_new] = ACTIONS(3167), + [anon_sym_using] = ACTIONS(3167), + [anon_sym_PLUS] = ACTIONS(3167), + [anon_sym_DASH] = ACTIONS(3167), + [anon_sym_SLASH] = ACTIONS(3167), + [anon_sym_LT] = ACTIONS(3167), + [anon_sym_TILDE] = ACTIONS(3167), + [anon_sym_void] = ACTIONS(3167), + [anon_sym_delete] = ACTIONS(3167), + [anon_sym_PLUS_PLUS] = ACTIONS(3167), + [anon_sym_DASH_DASH] = ACTIONS(3167), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3167), + [sym_number] = ACTIONS(3167), + [sym_private_property_identifier] = ACTIONS(3167), + [sym_this] = ACTIONS(3167), + [sym_super] = ACTIONS(3167), + [sym_true] = ACTIONS(3167), + [sym_false] = ACTIONS(3167), + [sym_null] = ACTIONS(3167), + [sym_undefined] = ACTIONS(3167), + [anon_sym_AT] = ACTIONS(3167), + [anon_sym_static] = ACTIONS(3167), + [anon_sym_readonly] = ACTIONS(3167), + [anon_sym_get] = ACTIONS(3167), + [anon_sym_set] = ACTIONS(3167), + [anon_sym_declare] = ACTIONS(3167), + [anon_sym_public] = ACTIONS(3167), + [anon_sym_private] = ACTIONS(3167), + [anon_sym_protected] = ACTIONS(3167), + [anon_sym_override] = ACTIONS(3167), + [anon_sym_module] = ACTIONS(3167), + [anon_sym_any] = ACTIONS(3167), + [anon_sym_number] = ACTIONS(3167), + [anon_sym_boolean] = ACTIONS(3167), + [anon_sym_string] = ACTIONS(3167), + [anon_sym_symbol] = ACTIONS(3167), + [anon_sym_object] = ACTIONS(3167), + [anon_sym_abstract] = ACTIONS(3167), + [anon_sym_interface] = ACTIONS(3167), + [anon_sym_enum] = ACTIONS(3167), [sym_html_comment] = ACTIONS(5), }, - [1274] = { - [sym_comment] = STATE(1274), - [sym_identifier] = ACTIONS(3339), - [anon_sym_export] = ACTIONS(3339), - [anon_sym_default] = ACTIONS(3339), - [anon_sym_type] = ACTIONS(3339), - [anon_sym_namespace] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_RBRACE] = ACTIONS(3339), - [anon_sym_typeof] = ACTIONS(3339), - [anon_sym_import] = ACTIONS(3339), - [anon_sym_with] = ACTIONS(3339), - [anon_sym_var] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_switch] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_await] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_debugger] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_throw] = ACTIONS(3339), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym_case] = ACTIONS(3339), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LTtemplate_GT] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3339), - [anon_sym_class] = ACTIONS(3339), - [anon_sym_async] = ACTIONS(3339), - [anon_sym_function] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_using] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_SLASH] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_void] = ACTIONS(3339), - [anon_sym_delete] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3339), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3339), - [sym_number] = ACTIONS(3339), - [sym_private_property_identifier] = ACTIONS(3339), - [sym_this] = ACTIONS(3339), - [sym_super] = ACTIONS(3339), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [sym_null] = ACTIONS(3339), - [sym_undefined] = ACTIONS(3339), - [anon_sym_AT] = ACTIONS(3339), - [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_abstract] = ACTIONS(3339), - [anon_sym_interface] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), + [1262] = { + [sym_comment] = STATE(1262), + [ts_builtin_sym_end] = ACTIONS(2352), + [sym_identifier] = ACTIONS(2212), + [anon_sym_export] = ACTIONS(2212), + [anon_sym_type] = ACTIONS(2212), + [anon_sym_namespace] = ACTIONS(2212), + [anon_sym_LBRACE] = ACTIONS(2212), + [anon_sym_RBRACE] = ACTIONS(2212), + [anon_sym_typeof] = ACTIONS(2212), + [anon_sym_import] = ACTIONS(2212), + [anon_sym_with] = ACTIONS(2212), + [anon_sym_var] = ACTIONS(2212), + [anon_sym_let] = ACTIONS(2212), + [anon_sym_const] = ACTIONS(2212), + [anon_sym_BANG] = ACTIONS(2212), + [anon_sym_if] = ACTIONS(2212), + [anon_sym_switch] = ACTIONS(2212), + [anon_sym_for] = ACTIONS(2212), + [anon_sym_LPAREN] = ACTIONS(2212), + [anon_sym_await] = ACTIONS(2212), + [anon_sym_while] = ACTIONS(2212), + [anon_sym_do] = ACTIONS(2212), + [anon_sym_try] = ACTIONS(2212), + [anon_sym_break] = ACTIONS(2212), + [anon_sym_continue] = ACTIONS(2212), + [anon_sym_debugger] = ACTIONS(2212), + [anon_sym_return] = ACTIONS(2212), + [anon_sym_throw] = ACTIONS(2212), + [anon_sym_SEMI] = ACTIONS(2212), + [anon_sym_yield] = ACTIONS(2212), + [anon_sym_LBRACK] = ACTIONS(2212), + [anon_sym_LTtemplate_GT] = ACTIONS(2212), + [anon_sym_DQUOTE] = ACTIONS(2212), + [anon_sym_SQUOTE] = ACTIONS(2212), + [anon_sym_class] = ACTIONS(2212), + [anon_sym_async] = ACTIONS(2212), + [anon_sym_function] = ACTIONS(2212), + [anon_sym_new] = ACTIONS(2212), + [anon_sym_using] = ACTIONS(2212), + [anon_sym_PLUS] = ACTIONS(2212), + [anon_sym_DASH] = ACTIONS(2212), + [anon_sym_SLASH] = ACTIONS(2212), + [anon_sym_LT] = ACTIONS(2212), + [anon_sym_TILDE] = ACTIONS(2212), + [anon_sym_void] = ACTIONS(2212), + [anon_sym_delete] = ACTIONS(2212), + [anon_sym_PLUS_PLUS] = ACTIONS(2212), + [anon_sym_DASH_DASH] = ACTIONS(2212), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2212), + [sym_number] = ACTIONS(2212), + [sym_private_property_identifier] = ACTIONS(2212), + [sym_this] = ACTIONS(2212), + [sym_super] = ACTIONS(2212), + [sym_true] = ACTIONS(2212), + [sym_false] = ACTIONS(2212), + [sym_null] = ACTIONS(2212), + [sym_undefined] = ACTIONS(2212), + [anon_sym_AT] = ACTIONS(2212), + [anon_sym_static] = ACTIONS(2212), + [anon_sym_readonly] = ACTIONS(2212), + [anon_sym_get] = ACTIONS(2212), + [anon_sym_set] = ACTIONS(2212), + [anon_sym_declare] = ACTIONS(2212), + [anon_sym_public] = ACTIONS(2212), + [anon_sym_private] = ACTIONS(2212), + [anon_sym_protected] = ACTIONS(2212), + [anon_sym_override] = ACTIONS(2212), + [anon_sym_module] = ACTIONS(2212), + [anon_sym_any] = ACTIONS(2212), + [anon_sym_number] = ACTIONS(2212), + [anon_sym_boolean] = ACTIONS(2212), + [anon_sym_string] = ACTIONS(2212), + [anon_sym_symbol] = ACTIONS(2212), + [anon_sym_object] = ACTIONS(2212), + [anon_sym_abstract] = ACTIONS(2212), + [anon_sym_interface] = ACTIONS(2212), + [anon_sym_enum] = ACTIONS(2212), + [sym__automatic_semicolon] = ACTIONS(2470), [sym_html_comment] = ACTIONS(5), }, - [1275] = { - [sym_comment] = STATE(1275), - [sym_identifier] = ACTIONS(3311), - [anon_sym_export] = ACTIONS(3311), - [anon_sym_default] = ACTIONS(3311), - [anon_sym_type] = ACTIONS(3311), - [anon_sym_namespace] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_typeof] = ACTIONS(3311), - [anon_sym_import] = ACTIONS(3311), - [anon_sym_with] = ACTIONS(3311), - [anon_sym_var] = ACTIONS(3311), - [anon_sym_let] = ACTIONS(3311), - [anon_sym_const] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_switch] = ACTIONS(3311), - [anon_sym_for] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_await] = ACTIONS(3311), - [anon_sym_while] = ACTIONS(3311), - [anon_sym_do] = ACTIONS(3311), - [anon_sym_try] = ACTIONS(3311), - [anon_sym_break] = ACTIONS(3311), - [anon_sym_continue] = ACTIONS(3311), - [anon_sym_debugger] = ACTIONS(3311), - [anon_sym_return] = ACTIONS(3311), - [anon_sym_throw] = ACTIONS(3311), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym_case] = ACTIONS(3311), - [anon_sym_yield] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3311), - [anon_sym_LTtemplate_GT] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_class] = ACTIONS(3311), - [anon_sym_async] = ACTIONS(3311), - [anon_sym_function] = ACTIONS(3311), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_using] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_SLASH] = ACTIONS(3311), - [anon_sym_LT] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_void] = ACTIONS(3311), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_DASH_DASH] = ACTIONS(3311), + [1263] = { + [sym_comment] = STATE(1263), + [sym_identifier] = ACTIONS(3377), + [anon_sym_export] = ACTIONS(3377), + [anon_sym_default] = ACTIONS(3377), + [anon_sym_type] = ACTIONS(3377), + [anon_sym_namespace] = ACTIONS(3377), + [anon_sym_LBRACE] = ACTIONS(3377), + [anon_sym_RBRACE] = ACTIONS(3377), + [anon_sym_typeof] = ACTIONS(3377), + [anon_sym_import] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3377), + [anon_sym_var] = ACTIONS(3377), + [anon_sym_let] = ACTIONS(3377), + [anon_sym_const] = ACTIONS(3377), + [anon_sym_BANG] = ACTIONS(3377), + [anon_sym_if] = ACTIONS(3377), + [anon_sym_switch] = ACTIONS(3377), + [anon_sym_for] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3377), + [anon_sym_await] = ACTIONS(3377), + [anon_sym_while] = ACTIONS(3377), + [anon_sym_do] = ACTIONS(3377), + [anon_sym_try] = ACTIONS(3377), + [anon_sym_break] = ACTIONS(3377), + [anon_sym_continue] = ACTIONS(3377), + [anon_sym_debugger] = ACTIONS(3377), + [anon_sym_return] = ACTIONS(3377), + [anon_sym_throw] = ACTIONS(3377), + [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_case] = ACTIONS(3377), + [anon_sym_yield] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3377), + [anon_sym_LTtemplate_GT] = ACTIONS(3377), + [anon_sym_DQUOTE] = ACTIONS(3377), + [anon_sym_SQUOTE] = ACTIONS(3377), + [anon_sym_class] = ACTIONS(3377), + [anon_sym_async] = ACTIONS(3377), + [anon_sym_function] = ACTIONS(3377), + [anon_sym_new] = ACTIONS(3377), + [anon_sym_using] = ACTIONS(3377), + [anon_sym_PLUS] = ACTIONS(3377), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_SLASH] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_void] = ACTIONS(3377), + [anon_sym_delete] = ACTIONS(3377), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3311), - [sym_number] = ACTIONS(3311), - [sym_private_property_identifier] = ACTIONS(3311), - [sym_this] = ACTIONS(3311), - [sym_super] = ACTIONS(3311), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_null] = ACTIONS(3311), - [sym_undefined] = ACTIONS(3311), - [anon_sym_AT] = ACTIONS(3311), - [anon_sym_static] = ACTIONS(3311), - [anon_sym_readonly] = ACTIONS(3311), - [anon_sym_get] = ACTIONS(3311), - [anon_sym_set] = ACTIONS(3311), - [anon_sym_declare] = ACTIONS(3311), - [anon_sym_public] = ACTIONS(3311), - [anon_sym_private] = ACTIONS(3311), - [anon_sym_protected] = ACTIONS(3311), - [anon_sym_override] = ACTIONS(3311), - [anon_sym_module] = ACTIONS(3311), - [anon_sym_any] = ACTIONS(3311), - [anon_sym_number] = ACTIONS(3311), - [anon_sym_boolean] = ACTIONS(3311), - [anon_sym_string] = ACTIONS(3311), - [anon_sym_symbol] = ACTIONS(3311), - [anon_sym_object] = ACTIONS(3311), - [anon_sym_abstract] = ACTIONS(3311), - [anon_sym_interface] = ACTIONS(3311), - [anon_sym_enum] = ACTIONS(3311), + [anon_sym_BQUOTE] = ACTIONS(3377), + [sym_number] = ACTIONS(3377), + [sym_private_property_identifier] = ACTIONS(3377), + [sym_this] = ACTIONS(3377), + [sym_super] = ACTIONS(3377), + [sym_true] = ACTIONS(3377), + [sym_false] = ACTIONS(3377), + [sym_null] = ACTIONS(3377), + [sym_undefined] = ACTIONS(3377), + [anon_sym_AT] = ACTIONS(3377), + [anon_sym_static] = ACTIONS(3377), + [anon_sym_readonly] = ACTIONS(3377), + [anon_sym_get] = ACTIONS(3377), + [anon_sym_set] = ACTIONS(3377), + [anon_sym_declare] = ACTIONS(3377), + [anon_sym_public] = ACTIONS(3377), + [anon_sym_private] = ACTIONS(3377), + [anon_sym_protected] = ACTIONS(3377), + [anon_sym_override] = ACTIONS(3377), + [anon_sym_module] = ACTIONS(3377), + [anon_sym_any] = ACTIONS(3377), + [anon_sym_number] = ACTIONS(3377), + [anon_sym_boolean] = ACTIONS(3377), + [anon_sym_string] = ACTIONS(3377), + [anon_sym_symbol] = ACTIONS(3377), + [anon_sym_object] = ACTIONS(3377), + [anon_sym_abstract] = ACTIONS(3377), + [anon_sym_interface] = ACTIONS(3377), + [anon_sym_enum] = ACTIONS(3377), [sym_html_comment] = ACTIONS(5), }, - [1276] = { - [sym_comment] = STATE(1276), - [sym_identifier] = ACTIONS(3331), - [anon_sym_export] = ACTIONS(3331), - [anon_sym_default] = ACTIONS(3331), - [anon_sym_type] = ACTIONS(3331), - [anon_sym_namespace] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_typeof] = ACTIONS(3331), - [anon_sym_import] = ACTIONS(3331), - [anon_sym_with] = ACTIONS(3331), - [anon_sym_var] = ACTIONS(3331), - [anon_sym_let] = ACTIONS(3331), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_switch] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_await] = ACTIONS(3331), - [anon_sym_while] = ACTIONS(3331), - [anon_sym_do] = ACTIONS(3331), - [anon_sym_try] = ACTIONS(3331), - [anon_sym_break] = ACTIONS(3331), - [anon_sym_continue] = ACTIONS(3331), - [anon_sym_debugger] = ACTIONS(3331), - [anon_sym_return] = ACTIONS(3331), - [anon_sym_throw] = ACTIONS(3331), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym_case] = ACTIONS(3331), - [anon_sym_yield] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3331), - [anon_sym_LTtemplate_GT] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3331), - [anon_sym_class] = ACTIONS(3331), - [anon_sym_async] = ACTIONS(3331), - [anon_sym_function] = ACTIONS(3331), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_using] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_void] = ACTIONS(3331), - [anon_sym_delete] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3331), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3331), - [sym_number] = ACTIONS(3331), - [sym_private_property_identifier] = ACTIONS(3331), - [sym_this] = ACTIONS(3331), - [sym_super] = ACTIONS(3331), - [sym_true] = ACTIONS(3331), - [sym_false] = ACTIONS(3331), - [sym_null] = ACTIONS(3331), - [sym_undefined] = ACTIONS(3331), - [anon_sym_AT] = ACTIONS(3331), - [anon_sym_static] = ACTIONS(3331), - [anon_sym_readonly] = ACTIONS(3331), - [anon_sym_get] = ACTIONS(3331), - [anon_sym_set] = ACTIONS(3331), - [anon_sym_declare] = ACTIONS(3331), - [anon_sym_public] = ACTIONS(3331), - [anon_sym_private] = ACTIONS(3331), - [anon_sym_protected] = ACTIONS(3331), - [anon_sym_override] = ACTIONS(3331), - [anon_sym_module] = ACTIONS(3331), - [anon_sym_any] = ACTIONS(3331), - [anon_sym_number] = ACTIONS(3331), - [anon_sym_boolean] = ACTIONS(3331), - [anon_sym_string] = ACTIONS(3331), - [anon_sym_symbol] = ACTIONS(3331), - [anon_sym_object] = ACTIONS(3331), - [anon_sym_abstract] = ACTIONS(3331), - [anon_sym_interface] = ACTIONS(3331), - [anon_sym_enum] = ACTIONS(3331), - [sym_html_comment] = ACTIONS(5), - }, - [1277] = { - [sym_comment] = STATE(1277), - [sym_identifier] = ACTIONS(2296), - [anon_sym_export] = ACTIONS(2296), - [anon_sym_default] = ACTIONS(2296), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_namespace] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2296), - [anon_sym_RBRACE] = ACTIONS(2296), - [anon_sym_typeof] = ACTIONS(2296), - [anon_sym_import] = ACTIONS(2296), - [anon_sym_with] = ACTIONS(2296), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_const] = ACTIONS(2296), - [anon_sym_BANG] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_switch] = ACTIONS(2296), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2296), - [anon_sym_await] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(2296), - [anon_sym_try] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_debugger] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_throw] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2296), - [anon_sym_case] = ACTIONS(2296), - [anon_sym_yield] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2296), - [anon_sym_LTtemplate_GT] = ACTIONS(2296), - [anon_sym_DQUOTE] = ACTIONS(2296), - [anon_sym_SQUOTE] = ACTIONS(2296), - [anon_sym_class] = ACTIONS(2296), - [anon_sym_async] = ACTIONS(2296), - [anon_sym_function] = ACTIONS(2296), - [anon_sym_new] = ACTIONS(2296), - [anon_sym_using] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_TILDE] = ACTIONS(2296), - [anon_sym_void] = ACTIONS(2296), - [anon_sym_delete] = ACTIONS(2296), - [anon_sym_PLUS_PLUS] = ACTIONS(2296), - [anon_sym_DASH_DASH] = ACTIONS(2296), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2296), - [sym_number] = ACTIONS(2296), - [sym_private_property_identifier] = ACTIONS(2296), - [sym_this] = ACTIONS(2296), - [sym_super] = ACTIONS(2296), - [sym_true] = ACTIONS(2296), - [sym_false] = ACTIONS(2296), - [sym_null] = ACTIONS(2296), - [sym_undefined] = ACTIONS(2296), - [anon_sym_AT] = ACTIONS(2296), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_readonly] = ACTIONS(2296), - [anon_sym_get] = ACTIONS(2296), - [anon_sym_set] = ACTIONS(2296), - [anon_sym_declare] = ACTIONS(2296), - [anon_sym_public] = ACTIONS(2296), - [anon_sym_private] = ACTIONS(2296), - [anon_sym_protected] = ACTIONS(2296), - [anon_sym_override] = ACTIONS(2296), - [anon_sym_module] = ACTIONS(2296), - [anon_sym_any] = ACTIONS(2296), - [anon_sym_number] = ACTIONS(2296), - [anon_sym_boolean] = ACTIONS(2296), - [anon_sym_string] = ACTIONS(2296), - [anon_sym_symbol] = ACTIONS(2296), - [anon_sym_object] = ACTIONS(2296), - [anon_sym_abstract] = ACTIONS(2296), - [anon_sym_interface] = ACTIONS(2296), - [anon_sym_enum] = ACTIONS(2296), - [sym_html_comment] = ACTIONS(5), - }, - [1278] = { - [sym_comment] = STATE(1278), - [sym_identifier] = ACTIONS(3397), - [anon_sym_export] = ACTIONS(3397), - [anon_sym_default] = ACTIONS(3397), - [anon_sym_type] = ACTIONS(3397), - [anon_sym_namespace] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_typeof] = ACTIONS(3397), - [anon_sym_import] = ACTIONS(3397), - [anon_sym_with] = ACTIONS(3397), - [anon_sym_var] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_const] = ACTIONS(3397), - [anon_sym_BANG] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_switch] = ACTIONS(3397), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_await] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_try] = ACTIONS(3397), - [anon_sym_break] = ACTIONS(3397), - [anon_sym_continue] = ACTIONS(3397), - [anon_sym_debugger] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_throw] = ACTIONS(3397), - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym_case] = ACTIONS(3397), - [anon_sym_yield] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LTtemplate_GT] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [anon_sym_SQUOTE] = ACTIONS(3397), - [anon_sym_class] = ACTIONS(3397), - [anon_sym_async] = ACTIONS(3397), - [anon_sym_function] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_using] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_SLASH] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_void] = ACTIONS(3397), - [anon_sym_delete] = ACTIONS(3397), - [anon_sym_PLUS_PLUS] = ACTIONS(3397), - [anon_sym_DASH_DASH] = ACTIONS(3397), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3397), - [sym_number] = ACTIONS(3397), - [sym_private_property_identifier] = ACTIONS(3397), - [sym_this] = ACTIONS(3397), - [sym_super] = ACTIONS(3397), - [sym_true] = ACTIONS(3397), - [sym_false] = ACTIONS(3397), - [sym_null] = ACTIONS(3397), - [sym_undefined] = ACTIONS(3397), - [anon_sym_AT] = ACTIONS(3397), - [anon_sym_static] = ACTIONS(3397), - [anon_sym_readonly] = ACTIONS(3397), - [anon_sym_get] = ACTIONS(3397), - [anon_sym_set] = ACTIONS(3397), - [anon_sym_declare] = ACTIONS(3397), - [anon_sym_public] = ACTIONS(3397), - [anon_sym_private] = ACTIONS(3397), - [anon_sym_protected] = ACTIONS(3397), - [anon_sym_override] = ACTIONS(3397), - [anon_sym_module] = ACTIONS(3397), - [anon_sym_any] = ACTIONS(3397), - [anon_sym_number] = ACTIONS(3397), - [anon_sym_boolean] = ACTIONS(3397), - [anon_sym_string] = ACTIONS(3397), - [anon_sym_symbol] = ACTIONS(3397), - [anon_sym_object] = ACTIONS(3397), - [anon_sym_abstract] = ACTIONS(3397), - [anon_sym_interface] = ACTIONS(3397), - [anon_sym_enum] = ACTIONS(3397), + [1264] = { + [sym_comment] = STATE(1264), + [ts_builtin_sym_end] = ACTIONS(3501), + [sym_identifier] = ACTIONS(3389), + [anon_sym_export] = ACTIONS(3389), + [anon_sym_type] = ACTIONS(3389), + [anon_sym_namespace] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_typeof] = ACTIONS(3389), + [anon_sym_import] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3389), + [anon_sym_var] = ACTIONS(3389), + [anon_sym_let] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3389), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_else] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3389), + [anon_sym_switch] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3389), + [anon_sym_await] = ACTIONS(3389), + [anon_sym_while] = ACTIONS(3389), + [anon_sym_do] = ACTIONS(3389), + [anon_sym_try] = ACTIONS(3389), + [anon_sym_break] = ACTIONS(3389), + [anon_sym_continue] = ACTIONS(3389), + [anon_sym_debugger] = ACTIONS(3389), + [anon_sym_return] = ACTIONS(3389), + [anon_sym_throw] = ACTIONS(3389), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3389), + [anon_sym_LBRACK] = ACTIONS(3389), + [anon_sym_LTtemplate_GT] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(3389), + [anon_sym_SQUOTE] = ACTIONS(3389), + [anon_sym_class] = ACTIONS(3389), + [anon_sym_async] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3389), + [anon_sym_using] = ACTIONS(3389), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_SLASH] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3389), + [anon_sym_void] = ACTIONS(3389), + [anon_sym_delete] = ACTIONS(3389), + [anon_sym_PLUS_PLUS] = ACTIONS(3389), + [anon_sym_DASH_DASH] = ACTIONS(3389), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3389), + [sym_number] = ACTIONS(3389), + [sym_private_property_identifier] = ACTIONS(3389), + [sym_this] = ACTIONS(3389), + [sym_super] = ACTIONS(3389), + [sym_true] = ACTIONS(3389), + [sym_false] = ACTIONS(3389), + [sym_null] = ACTIONS(3389), + [sym_undefined] = ACTIONS(3389), + [anon_sym_AT] = ACTIONS(3389), + [anon_sym_static] = ACTIONS(3389), + [anon_sym_readonly] = ACTIONS(3389), + [anon_sym_get] = ACTIONS(3389), + [anon_sym_set] = ACTIONS(3389), + [anon_sym_declare] = ACTIONS(3389), + [anon_sym_public] = ACTIONS(3389), + [anon_sym_private] = ACTIONS(3389), + [anon_sym_protected] = ACTIONS(3389), + [anon_sym_override] = ACTIONS(3389), + [anon_sym_module] = ACTIONS(3389), + [anon_sym_any] = ACTIONS(3389), + [anon_sym_number] = ACTIONS(3389), + [anon_sym_boolean] = ACTIONS(3389), + [anon_sym_string] = ACTIONS(3389), + [anon_sym_symbol] = ACTIONS(3389), + [anon_sym_object] = ACTIONS(3389), + [anon_sym_abstract] = ACTIONS(3389), + [anon_sym_interface] = ACTIONS(3389), + [anon_sym_enum] = ACTIONS(3389), [sym_html_comment] = ACTIONS(5), }, - [1279] = { - [sym_comment] = STATE(1279), - [ts_builtin_sym_end] = ACTIONS(3469), - [sym_identifier] = ACTIONS(3377), - [anon_sym_export] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_namespace] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_typeof] = ACTIONS(3377), - [anon_sym_import] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3377), - [anon_sym_var] = ACTIONS(3377), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_const] = ACTIONS(3377), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_else] = ACTIONS(3377), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_switch] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_await] = ACTIONS(3377), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_do] = ACTIONS(3377), - [anon_sym_try] = ACTIONS(3377), - [anon_sym_break] = ACTIONS(3377), - [anon_sym_continue] = ACTIONS(3377), - [anon_sym_debugger] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3377), - [anon_sym_throw] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_LTtemplate_GT] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_using] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_SLASH] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_void] = ACTIONS(3377), - [anon_sym_delete] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), + [1265] = { + [sym_comment] = STATE(1265), + [sym_identifier] = ACTIONS(3375), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_default] = ACTIONS(3375), + [anon_sym_type] = ACTIONS(3375), + [anon_sym_namespace] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_typeof] = ACTIONS(3375), + [anon_sym_import] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + [anon_sym_var] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_BANG] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_switch] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_await] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_do] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_debugger] = ACTIONS(3375), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_throw] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_case] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_LTtemplate_GT] = ACTIONS(3375), + [anon_sym_DQUOTE] = ACTIONS(3375), + [anon_sym_SQUOTE] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_function] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_using] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [anon_sym_SLASH] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3375), + [anon_sym_void] = ACTIONS(3375), + [anon_sym_delete] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(3375), + [anon_sym_DASH_DASH] = ACTIONS(3375), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3377), - [sym_number] = ACTIONS(3377), - [sym_private_property_identifier] = ACTIONS(3377), - [sym_this] = ACTIONS(3377), - [sym_super] = ACTIONS(3377), - [sym_true] = ACTIONS(3377), - [sym_false] = ACTIONS(3377), - [sym_null] = ACTIONS(3377), - [sym_undefined] = ACTIONS(3377), - [anon_sym_AT] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_readonly] = ACTIONS(3377), - [anon_sym_get] = ACTIONS(3377), - [anon_sym_set] = ACTIONS(3377), - [anon_sym_declare] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_protected] = ACTIONS(3377), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_any] = ACTIONS(3377), - [anon_sym_number] = ACTIONS(3377), - [anon_sym_boolean] = ACTIONS(3377), - [anon_sym_string] = ACTIONS(3377), - [anon_sym_symbol] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_abstract] = ACTIONS(3377), - [anon_sym_interface] = ACTIONS(3377), - [anon_sym_enum] = ACTIONS(3377), + [anon_sym_BQUOTE] = ACTIONS(3375), + [sym_number] = ACTIONS(3375), + [sym_private_property_identifier] = ACTIONS(3375), + [sym_this] = ACTIONS(3375), + [sym_super] = ACTIONS(3375), + [sym_true] = ACTIONS(3375), + [sym_false] = ACTIONS(3375), + [sym_null] = ACTIONS(3375), + [sym_undefined] = ACTIONS(3375), + [anon_sym_AT] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_get] = ACTIONS(3375), + [anon_sym_set] = ACTIONS(3375), + [anon_sym_declare] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_any] = ACTIONS(3375), + [anon_sym_number] = ACTIONS(3375), + [anon_sym_boolean] = ACTIONS(3375), + [anon_sym_string] = ACTIONS(3375), + [anon_sym_symbol] = ACTIONS(3375), + [anon_sym_object] = ACTIONS(3375), + [anon_sym_abstract] = ACTIONS(3375), + [anon_sym_interface] = ACTIONS(3375), + [anon_sym_enum] = ACTIONS(3375), [sym_html_comment] = ACTIONS(5), }, - [1280] = { - [sym_comment] = STATE(1280), - [ts_builtin_sym_end] = ACTIONS(3469), - [sym_identifier] = ACTIONS(3377), - [anon_sym_export] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_namespace] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_typeof] = ACTIONS(3377), - [anon_sym_import] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3377), - [anon_sym_var] = ACTIONS(3377), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_const] = ACTIONS(3377), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_else] = ACTIONS(3377), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_switch] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_await] = ACTIONS(3377), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_do] = ACTIONS(3377), - [anon_sym_try] = ACTIONS(3377), - [anon_sym_break] = ACTIONS(3377), - [anon_sym_continue] = ACTIONS(3377), - [anon_sym_debugger] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3377), - [anon_sym_throw] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_LTtemplate_GT] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_using] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_SLASH] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_void] = ACTIONS(3377), - [anon_sym_delete] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), + [1266] = { + [sym_comment] = STATE(1266), + [ts_builtin_sym_end] = ACTIONS(2348), + [sym_identifier] = ACTIONS(2204), + [anon_sym_export] = ACTIONS(2204), + [anon_sym_type] = ACTIONS(2204), + [anon_sym_namespace] = ACTIONS(2204), + [anon_sym_LBRACE] = ACTIONS(2204), + [anon_sym_RBRACE] = ACTIONS(2204), + [anon_sym_typeof] = ACTIONS(2204), + [anon_sym_import] = ACTIONS(2204), + [anon_sym_with] = ACTIONS(2204), + [anon_sym_var] = ACTIONS(2204), + [anon_sym_let] = ACTIONS(2204), + [anon_sym_const] = ACTIONS(2204), + [anon_sym_BANG] = ACTIONS(2204), + [anon_sym_if] = ACTIONS(2204), + [anon_sym_switch] = ACTIONS(2204), + [anon_sym_for] = ACTIONS(2204), + [anon_sym_LPAREN] = ACTIONS(2204), + [anon_sym_await] = ACTIONS(2204), + [anon_sym_while] = ACTIONS(2204), + [anon_sym_do] = ACTIONS(2204), + [anon_sym_try] = ACTIONS(2204), + [anon_sym_break] = ACTIONS(2204), + [anon_sym_continue] = ACTIONS(2204), + [anon_sym_debugger] = ACTIONS(2204), + [anon_sym_return] = ACTIONS(2204), + [anon_sym_throw] = ACTIONS(2204), + [anon_sym_SEMI] = ACTIONS(2204), + [anon_sym_yield] = ACTIONS(2204), + [anon_sym_LBRACK] = ACTIONS(2204), + [anon_sym_LTtemplate_GT] = ACTIONS(2204), + [anon_sym_DQUOTE] = ACTIONS(2204), + [anon_sym_SQUOTE] = ACTIONS(2204), + [anon_sym_class] = ACTIONS(2204), + [anon_sym_async] = ACTIONS(2204), + [anon_sym_function] = ACTIONS(2204), + [anon_sym_new] = ACTIONS(2204), + [anon_sym_using] = ACTIONS(2204), + [anon_sym_PLUS] = ACTIONS(2204), + [anon_sym_DASH] = ACTIONS(2204), + [anon_sym_SLASH] = ACTIONS(2204), + [anon_sym_LT] = ACTIONS(2204), + [anon_sym_TILDE] = ACTIONS(2204), + [anon_sym_void] = ACTIONS(2204), + [anon_sym_delete] = ACTIONS(2204), + [anon_sym_PLUS_PLUS] = ACTIONS(2204), + [anon_sym_DASH_DASH] = ACTIONS(2204), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3377), - [sym_number] = ACTIONS(3377), - [sym_private_property_identifier] = ACTIONS(3377), - [sym_this] = ACTIONS(3377), - [sym_super] = ACTIONS(3377), - [sym_true] = ACTIONS(3377), - [sym_false] = ACTIONS(3377), - [sym_null] = ACTIONS(3377), - [sym_undefined] = ACTIONS(3377), - [anon_sym_AT] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_readonly] = ACTIONS(3377), - [anon_sym_get] = ACTIONS(3377), - [anon_sym_set] = ACTIONS(3377), - [anon_sym_declare] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_protected] = ACTIONS(3377), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_any] = ACTIONS(3377), - [anon_sym_number] = ACTIONS(3377), - [anon_sym_boolean] = ACTIONS(3377), - [anon_sym_string] = ACTIONS(3377), - [anon_sym_symbol] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_abstract] = ACTIONS(3377), - [anon_sym_interface] = ACTIONS(3377), - [anon_sym_enum] = ACTIONS(3377), + [anon_sym_BQUOTE] = ACTIONS(2204), + [sym_number] = ACTIONS(2204), + [sym_private_property_identifier] = ACTIONS(2204), + [sym_this] = ACTIONS(2204), + [sym_super] = ACTIONS(2204), + [sym_true] = ACTIONS(2204), + [sym_false] = ACTIONS(2204), + [sym_null] = ACTIONS(2204), + [sym_undefined] = ACTIONS(2204), + [anon_sym_AT] = ACTIONS(2204), + [anon_sym_static] = ACTIONS(2204), + [anon_sym_readonly] = ACTIONS(2204), + [anon_sym_get] = ACTIONS(2204), + [anon_sym_set] = ACTIONS(2204), + [anon_sym_declare] = ACTIONS(2204), + [anon_sym_public] = ACTIONS(2204), + [anon_sym_private] = ACTIONS(2204), + [anon_sym_protected] = ACTIONS(2204), + [anon_sym_override] = ACTIONS(2204), + [anon_sym_module] = ACTIONS(2204), + [anon_sym_any] = ACTIONS(2204), + [anon_sym_number] = ACTIONS(2204), + [anon_sym_boolean] = ACTIONS(2204), + [anon_sym_string] = ACTIONS(2204), + [anon_sym_symbol] = ACTIONS(2204), + [anon_sym_object] = ACTIONS(2204), + [anon_sym_abstract] = ACTIONS(2204), + [anon_sym_interface] = ACTIONS(2204), + [anon_sym_enum] = ACTIONS(2204), + [sym__automatic_semicolon] = ACTIONS(2434), [sym_html_comment] = ACTIONS(5), }, - [1281] = { - [sym_comment] = STATE(1281), - [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_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_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_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_abstract] = ACTIONS(3341), - [anon_sym_interface] = ACTIONS(3341), - [anon_sym_enum] = ACTIONS(3341), + [1267] = { + [sym_comment] = STATE(1267), + [ts_builtin_sym_end] = ACTIONS(2344), + [sym_identifier] = ACTIONS(2188), + [anon_sym_export] = ACTIONS(2188), + [anon_sym_type] = ACTIONS(2188), + [anon_sym_namespace] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2188), + [anon_sym_RBRACE] = ACTIONS(2188), + [anon_sym_typeof] = ACTIONS(2188), + [anon_sym_import] = ACTIONS(2188), + [anon_sym_with] = ACTIONS(2188), + [anon_sym_var] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_const] = ACTIONS(2188), + [anon_sym_BANG] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_switch] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_await] = ACTIONS(2188), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_do] = ACTIONS(2188), + [anon_sym_try] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), + [anon_sym_continue] = ACTIONS(2188), + [anon_sym_debugger] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_throw] = ACTIONS(2188), + [anon_sym_SEMI] = ACTIONS(2188), + [anon_sym_yield] = ACTIONS(2188), + [anon_sym_LBRACK] = ACTIONS(2188), + [anon_sym_LTtemplate_GT] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(2188), + [anon_sym_SQUOTE] = ACTIONS(2188), + [anon_sym_class] = ACTIONS(2188), + [anon_sym_async] = ACTIONS(2188), + [anon_sym_function] = ACTIONS(2188), + [anon_sym_new] = ACTIONS(2188), + [anon_sym_using] = ACTIONS(2188), + [anon_sym_PLUS] = ACTIONS(2188), + [anon_sym_DASH] = ACTIONS(2188), + [anon_sym_SLASH] = ACTIONS(2188), + [anon_sym_LT] = ACTIONS(2188), + [anon_sym_TILDE] = ACTIONS(2188), + [anon_sym_void] = ACTIONS(2188), + [anon_sym_delete] = ACTIONS(2188), + [anon_sym_PLUS_PLUS] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2188), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2188), + [sym_number] = ACTIONS(2188), + [sym_private_property_identifier] = ACTIONS(2188), + [sym_this] = ACTIONS(2188), + [sym_super] = ACTIONS(2188), + [sym_true] = ACTIONS(2188), + [sym_false] = ACTIONS(2188), + [sym_null] = ACTIONS(2188), + [sym_undefined] = ACTIONS(2188), + [anon_sym_AT] = ACTIONS(2188), + [anon_sym_static] = ACTIONS(2188), + [anon_sym_readonly] = ACTIONS(2188), + [anon_sym_get] = ACTIONS(2188), + [anon_sym_set] = ACTIONS(2188), + [anon_sym_declare] = ACTIONS(2188), + [anon_sym_public] = ACTIONS(2188), + [anon_sym_private] = ACTIONS(2188), + [anon_sym_protected] = ACTIONS(2188), + [anon_sym_override] = ACTIONS(2188), + [anon_sym_module] = ACTIONS(2188), + [anon_sym_any] = ACTIONS(2188), + [anon_sym_number] = ACTIONS(2188), + [anon_sym_boolean] = ACTIONS(2188), + [anon_sym_string] = ACTIONS(2188), + [anon_sym_symbol] = ACTIONS(2188), + [anon_sym_object] = ACTIONS(2188), + [anon_sym_abstract] = ACTIONS(2188), + [anon_sym_interface] = ACTIONS(2188), + [anon_sym_enum] = ACTIONS(2188), + [sym__automatic_semicolon] = ACTIONS(2478), [sym_html_comment] = ACTIONS(5), }, - [1282] = { - [sym_comment] = STATE(1282), - [sym_identifier] = ACTIONS(3329), - [anon_sym_export] = ACTIONS(3329), - [anon_sym_default] = ACTIONS(3329), - [anon_sym_type] = ACTIONS(3329), - [anon_sym_namespace] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_typeof] = ACTIONS(3329), - [anon_sym_import] = ACTIONS(3329), - [anon_sym_with] = ACTIONS(3329), - [anon_sym_var] = ACTIONS(3329), - [anon_sym_let] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3329), - [anon_sym_switch] = ACTIONS(3329), - [anon_sym_for] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_await] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3329), - [anon_sym_do] = ACTIONS(3329), - [anon_sym_try] = ACTIONS(3329), - [anon_sym_break] = ACTIONS(3329), - [anon_sym_continue] = ACTIONS(3329), - [anon_sym_debugger] = ACTIONS(3329), - [anon_sym_return] = ACTIONS(3329), - [anon_sym_throw] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_case] = ACTIONS(3329), - [anon_sym_yield] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_LTtemplate_GT] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(3329), - [anon_sym_SQUOTE] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_async] = ACTIONS(3329), - [anon_sym_function] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_SLASH] = ACTIONS(3329), - [anon_sym_LT] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_void] = ACTIONS(3329), - [anon_sym_delete] = ACTIONS(3329), - [anon_sym_PLUS_PLUS] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3329), + [1268] = { + [sym_comment] = STATE(1268), + [ts_builtin_sym_end] = ACTIONS(3503), + [sym_identifier] = ACTIONS(3407), + [anon_sym_export] = ACTIONS(3407), + [anon_sym_type] = ACTIONS(3407), + [anon_sym_namespace] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_RBRACE] = ACTIONS(3407), + [anon_sym_typeof] = ACTIONS(3407), + [anon_sym_import] = ACTIONS(3407), + [anon_sym_with] = ACTIONS(3407), + [anon_sym_var] = ACTIONS(3407), + [anon_sym_let] = ACTIONS(3407), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_else] = ACTIONS(3407), + [anon_sym_if] = ACTIONS(3407), + [anon_sym_switch] = ACTIONS(3407), + [anon_sym_for] = ACTIONS(3407), + [anon_sym_LPAREN] = ACTIONS(3407), + [anon_sym_await] = ACTIONS(3407), + [anon_sym_while] = ACTIONS(3407), + [anon_sym_do] = ACTIONS(3407), + [anon_sym_try] = ACTIONS(3407), + [anon_sym_break] = ACTIONS(3407), + [anon_sym_continue] = ACTIONS(3407), + [anon_sym_debugger] = ACTIONS(3407), + [anon_sym_return] = ACTIONS(3407), + [anon_sym_throw] = ACTIONS(3407), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_yield] = ACTIONS(3407), + [anon_sym_LBRACK] = ACTIONS(3407), + [anon_sym_LTtemplate_GT] = ACTIONS(3407), + [anon_sym_DQUOTE] = ACTIONS(3407), + [anon_sym_SQUOTE] = ACTIONS(3407), + [anon_sym_class] = ACTIONS(3407), + [anon_sym_async] = ACTIONS(3407), + [anon_sym_function] = ACTIONS(3407), + [anon_sym_new] = ACTIONS(3407), + [anon_sym_using] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_SLASH] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(3407), + [anon_sym_void] = ACTIONS(3407), + [anon_sym_delete] = ACTIONS(3407), + [anon_sym_PLUS_PLUS] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(3407), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3329), - [sym_number] = ACTIONS(3329), - [sym_private_property_identifier] = ACTIONS(3329), - [sym_this] = ACTIONS(3329), - [sym_super] = ACTIONS(3329), - [sym_true] = ACTIONS(3329), - [sym_false] = ACTIONS(3329), - [sym_null] = ACTIONS(3329), - [sym_undefined] = ACTIONS(3329), - [anon_sym_AT] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_readonly] = ACTIONS(3329), - [anon_sym_get] = ACTIONS(3329), - [anon_sym_set] = ACTIONS(3329), - [anon_sym_declare] = ACTIONS(3329), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_protected] = ACTIONS(3329), - [anon_sym_override] = ACTIONS(3329), - [anon_sym_module] = ACTIONS(3329), - [anon_sym_any] = ACTIONS(3329), - [anon_sym_number] = ACTIONS(3329), - [anon_sym_boolean] = ACTIONS(3329), - [anon_sym_string] = ACTIONS(3329), - [anon_sym_symbol] = ACTIONS(3329), - [anon_sym_object] = ACTIONS(3329), - [anon_sym_abstract] = ACTIONS(3329), - [anon_sym_interface] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), + [anon_sym_BQUOTE] = ACTIONS(3407), + [sym_number] = ACTIONS(3407), + [sym_private_property_identifier] = ACTIONS(3407), + [sym_this] = ACTIONS(3407), + [sym_super] = ACTIONS(3407), + [sym_true] = ACTIONS(3407), + [sym_false] = ACTIONS(3407), + [sym_null] = ACTIONS(3407), + [sym_undefined] = ACTIONS(3407), + [anon_sym_AT] = ACTIONS(3407), + [anon_sym_static] = ACTIONS(3407), + [anon_sym_readonly] = ACTIONS(3407), + [anon_sym_get] = ACTIONS(3407), + [anon_sym_set] = ACTIONS(3407), + [anon_sym_declare] = ACTIONS(3407), + [anon_sym_public] = ACTIONS(3407), + [anon_sym_private] = ACTIONS(3407), + [anon_sym_protected] = ACTIONS(3407), + [anon_sym_override] = ACTIONS(3407), + [anon_sym_module] = ACTIONS(3407), + [anon_sym_any] = ACTIONS(3407), + [anon_sym_number] = ACTIONS(3407), + [anon_sym_boolean] = ACTIONS(3407), + [anon_sym_string] = ACTIONS(3407), + [anon_sym_symbol] = ACTIONS(3407), + [anon_sym_object] = ACTIONS(3407), + [anon_sym_abstract] = ACTIONS(3407), + [anon_sym_interface] = ACTIONS(3407), + [anon_sym_enum] = ACTIONS(3407), [sym_html_comment] = ACTIONS(5), }, - [1283] = { - [sym_comment] = STATE(1283), - [sym_identifier] = ACTIONS(2216), - [anon_sym_export] = ACTIONS(2216), - [anon_sym_default] = ACTIONS(2216), - [anon_sym_type] = ACTIONS(2216), - [anon_sym_namespace] = ACTIONS(2216), - [anon_sym_LBRACE] = ACTIONS(2216), - [anon_sym_RBRACE] = ACTIONS(2216), - [anon_sym_typeof] = ACTIONS(2216), - [anon_sym_import] = ACTIONS(2216), - [anon_sym_with] = ACTIONS(2216), - [anon_sym_var] = ACTIONS(2216), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_const] = ACTIONS(2216), - [anon_sym_BANG] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_switch] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2216), - [anon_sym_await] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2216), - [anon_sym_do] = ACTIONS(2216), - [anon_sym_try] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_debugger] = ACTIONS(2216), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_throw] = ACTIONS(2216), - [anon_sym_SEMI] = ACTIONS(2216), - [anon_sym_case] = ACTIONS(2216), - [anon_sym_yield] = ACTIONS(2216), - [anon_sym_LBRACK] = ACTIONS(2216), - [anon_sym_LTtemplate_GT] = ACTIONS(2216), - [anon_sym_DQUOTE] = ACTIONS(2216), - [anon_sym_SQUOTE] = ACTIONS(2216), - [anon_sym_class] = ACTIONS(2216), - [anon_sym_async] = ACTIONS(2216), - [anon_sym_function] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2216), - [anon_sym_using] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2216), - [anon_sym_SLASH] = ACTIONS(2216), - [anon_sym_LT] = ACTIONS(2216), - [anon_sym_TILDE] = ACTIONS(2216), - [anon_sym_void] = ACTIONS(2216), - [anon_sym_delete] = ACTIONS(2216), - [anon_sym_PLUS_PLUS] = ACTIONS(2216), - [anon_sym_DASH_DASH] = ACTIONS(2216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2216), - [sym_number] = ACTIONS(2216), - [sym_private_property_identifier] = ACTIONS(2216), - [sym_this] = ACTIONS(2216), - [sym_super] = ACTIONS(2216), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_undefined] = ACTIONS(2216), - [anon_sym_AT] = ACTIONS(2216), - [anon_sym_static] = ACTIONS(2216), - [anon_sym_readonly] = ACTIONS(2216), - [anon_sym_get] = ACTIONS(2216), - [anon_sym_set] = ACTIONS(2216), - [anon_sym_declare] = ACTIONS(2216), - [anon_sym_public] = ACTIONS(2216), - [anon_sym_private] = ACTIONS(2216), - [anon_sym_protected] = ACTIONS(2216), - [anon_sym_override] = ACTIONS(2216), - [anon_sym_module] = ACTIONS(2216), - [anon_sym_any] = ACTIONS(2216), - [anon_sym_number] = ACTIONS(2216), - [anon_sym_boolean] = ACTIONS(2216), - [anon_sym_string] = ACTIONS(2216), - [anon_sym_symbol] = ACTIONS(2216), - [anon_sym_object] = ACTIONS(2216), - [anon_sym_abstract] = ACTIONS(2216), - [anon_sym_interface] = ACTIONS(2216), - [anon_sym_enum] = ACTIONS(2216), + [1269] = { + [sym_comment] = STATE(1269), + [ts_builtin_sym_end] = ACTIONS(3505), + [sym_identifier] = ACTIONS(3401), + [anon_sym_export] = ACTIONS(3401), + [anon_sym_type] = ACTIONS(3401), + [anon_sym_namespace] = ACTIONS(3401), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_RBRACE] = ACTIONS(3401), + [anon_sym_typeof] = ACTIONS(3401), + [anon_sym_import] = ACTIONS(3401), + [anon_sym_with] = ACTIONS(3401), + [anon_sym_var] = ACTIONS(3401), + [anon_sym_let] = ACTIONS(3401), + [anon_sym_const] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_else] = ACTIONS(3401), + [anon_sym_if] = ACTIONS(3401), + [anon_sym_switch] = ACTIONS(3401), + [anon_sym_for] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_await] = ACTIONS(3401), + [anon_sym_while] = ACTIONS(3401), + [anon_sym_do] = ACTIONS(3401), + [anon_sym_try] = ACTIONS(3401), + [anon_sym_break] = ACTIONS(3401), + [anon_sym_continue] = ACTIONS(3401), + [anon_sym_debugger] = ACTIONS(3401), + [anon_sym_return] = ACTIONS(3401), + [anon_sym_throw] = ACTIONS(3401), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_yield] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LTtemplate_GT] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3401), + [anon_sym_SQUOTE] = ACTIONS(3401), + [anon_sym_class] = ACTIONS(3401), + [anon_sym_async] = ACTIONS(3401), + [anon_sym_function] = ACTIONS(3401), + [anon_sym_new] = ACTIONS(3401), + [anon_sym_using] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3401), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_void] = ACTIONS(3401), + [anon_sym_delete] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH] = ACTIONS(3401), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3401), + [sym_number] = ACTIONS(3401), + [sym_private_property_identifier] = ACTIONS(3401), + [sym_this] = ACTIONS(3401), + [sym_super] = ACTIONS(3401), + [sym_true] = ACTIONS(3401), + [sym_false] = ACTIONS(3401), + [sym_null] = ACTIONS(3401), + [sym_undefined] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3401), + [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_abstract] = ACTIONS(3401), + [anon_sym_interface] = ACTIONS(3401), + [anon_sym_enum] = ACTIONS(3401), [sym_html_comment] = ACTIONS(5), }, - [1284] = { - [sym_comment] = STATE(1284), - [ts_builtin_sym_end] = ACTIONS(3471), - [sym_identifier] = ACTIONS(3249), - [anon_sym_export] = ACTIONS(3249), - [anon_sym_type] = ACTIONS(3249), - [anon_sym_namespace] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3249), - [anon_sym_RBRACE] = ACTIONS(3249), - [anon_sym_typeof] = ACTIONS(3249), - [anon_sym_import] = ACTIONS(3249), - [anon_sym_with] = ACTIONS(3249), - [anon_sym_var] = ACTIONS(3249), - [anon_sym_let] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3249), - [anon_sym_else] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_switch] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_await] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3249), - [anon_sym_try] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_debugger] = ACTIONS(3249), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_throw] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym_yield] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LTtemplate_GT] = ACTIONS(3249), - [anon_sym_DQUOTE] = ACTIONS(3249), - [anon_sym_SQUOTE] = ACTIONS(3249), - [anon_sym_class] = ACTIONS(3249), - [anon_sym_async] = ACTIONS(3249), - [anon_sym_function] = ACTIONS(3249), - [anon_sym_new] = ACTIONS(3249), - [anon_sym_using] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_SLASH] = ACTIONS(3249), - [anon_sym_LT] = ACTIONS(3249), - [anon_sym_TILDE] = ACTIONS(3249), - [anon_sym_void] = ACTIONS(3249), - [anon_sym_delete] = ACTIONS(3249), - [anon_sym_PLUS_PLUS] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3249), + [1270] = { + [sym_comment] = STATE(1270), + [ts_builtin_sym_end] = ACTIONS(3505), + [sym_identifier] = ACTIONS(3401), + [anon_sym_export] = ACTIONS(3401), + [anon_sym_type] = ACTIONS(3401), + [anon_sym_namespace] = ACTIONS(3401), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_RBRACE] = ACTIONS(3401), + [anon_sym_typeof] = ACTIONS(3401), + [anon_sym_import] = ACTIONS(3401), + [anon_sym_with] = ACTIONS(3401), + [anon_sym_var] = ACTIONS(3401), + [anon_sym_let] = ACTIONS(3401), + [anon_sym_const] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_else] = ACTIONS(3401), + [anon_sym_if] = ACTIONS(3401), + [anon_sym_switch] = ACTIONS(3401), + [anon_sym_for] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_await] = ACTIONS(3401), + [anon_sym_while] = ACTIONS(3401), + [anon_sym_do] = ACTIONS(3401), + [anon_sym_try] = ACTIONS(3401), + [anon_sym_break] = ACTIONS(3401), + [anon_sym_continue] = ACTIONS(3401), + [anon_sym_debugger] = ACTIONS(3401), + [anon_sym_return] = ACTIONS(3401), + [anon_sym_throw] = ACTIONS(3401), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_yield] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LTtemplate_GT] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3401), + [anon_sym_SQUOTE] = ACTIONS(3401), + [anon_sym_class] = ACTIONS(3401), + [anon_sym_async] = ACTIONS(3401), + [anon_sym_function] = ACTIONS(3401), + [anon_sym_new] = ACTIONS(3401), + [anon_sym_using] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3401), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_void] = ACTIONS(3401), + [anon_sym_delete] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH] = ACTIONS(3401), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3249), - [sym_number] = ACTIONS(3249), - [sym_private_property_identifier] = ACTIONS(3249), - [sym_this] = ACTIONS(3249), - [sym_super] = ACTIONS(3249), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [sym_null] = ACTIONS(3249), - [sym_undefined] = ACTIONS(3249), - [anon_sym_AT] = ACTIONS(3249), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_readonly] = ACTIONS(3249), - [anon_sym_get] = ACTIONS(3249), - [anon_sym_set] = ACTIONS(3249), - [anon_sym_declare] = ACTIONS(3249), - [anon_sym_public] = ACTIONS(3249), - [anon_sym_private] = ACTIONS(3249), - [anon_sym_protected] = ACTIONS(3249), - [anon_sym_override] = ACTIONS(3249), - [anon_sym_module] = ACTIONS(3249), - [anon_sym_any] = ACTIONS(3249), - [anon_sym_number] = ACTIONS(3249), - [anon_sym_boolean] = ACTIONS(3249), - [anon_sym_string] = ACTIONS(3249), - [anon_sym_symbol] = ACTIONS(3249), - [anon_sym_object] = ACTIONS(3249), - [anon_sym_abstract] = ACTIONS(3249), - [anon_sym_interface] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3249), + [anon_sym_BQUOTE] = ACTIONS(3401), + [sym_number] = ACTIONS(3401), + [sym_private_property_identifier] = ACTIONS(3401), + [sym_this] = ACTIONS(3401), + [sym_super] = ACTIONS(3401), + [sym_true] = ACTIONS(3401), + [sym_false] = ACTIONS(3401), + [sym_null] = ACTIONS(3401), + [sym_undefined] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3401), + [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_abstract] = ACTIONS(3401), + [anon_sym_interface] = ACTIONS(3401), + [anon_sym_enum] = ACTIONS(3401), [sym_html_comment] = ACTIONS(5), }, - [1285] = { - [sym_comment] = STATE(1285), - [ts_builtin_sym_end] = ACTIONS(3473), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_else] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), + [1271] = { + [sym_comment] = STATE(1271), + [sym_identifier] = ACTIONS(3361), + [anon_sym_export] = ACTIONS(3361), + [anon_sym_default] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_typeof] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3361), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_var] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_const] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_await] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_break] = ACTIONS(3361), + [anon_sym_continue] = ACTIONS(3361), + [anon_sym_debugger] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_throw] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_case] = ACTIONS(3361), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LTtemplate_GT] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_SQUOTE] = ACTIONS(3361), + [anon_sym_class] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_void] = ACTIONS(3361), + [anon_sym_delete] = ACTIONS(3361), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), + [anon_sym_BQUOTE] = ACTIONS(3361), + [sym_number] = ACTIONS(3361), + [sym_private_property_identifier] = ACTIONS(3361), + [sym_this] = ACTIONS(3361), + [sym_super] = ACTIONS(3361), + [sym_true] = ACTIONS(3361), + [sym_false] = ACTIONS(3361), + [sym_null] = ACTIONS(3361), + [sym_undefined] = ACTIONS(3361), + [anon_sym_AT] = ACTIONS(3361), + [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_abstract] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(3361), [sym_html_comment] = ACTIONS(5), }, - [1286] = { - [sym_comment] = STATE(1286), - [ts_builtin_sym_end] = ACTIONS(3475), - [sym_identifier] = ACTIONS(3221), - [anon_sym_export] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_namespace] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_typeof] = ACTIONS(3221), - [anon_sym_import] = ACTIONS(3221), - [anon_sym_with] = ACTIONS(3221), - [anon_sym_var] = ACTIONS(3221), - [anon_sym_let] = ACTIONS(3221), - [anon_sym_const] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_else] = ACTIONS(3221), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_switch] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_await] = ACTIONS(3221), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_do] = ACTIONS(3221), - [anon_sym_try] = ACTIONS(3221), - [anon_sym_break] = ACTIONS(3221), - [anon_sym_continue] = ACTIONS(3221), - [anon_sym_debugger] = ACTIONS(3221), - [anon_sym_return] = ACTIONS(3221), - [anon_sym_throw] = ACTIONS(3221), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_LTtemplate_GT] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3221), - [anon_sym_class] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3221), - [anon_sym_using] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_SLASH] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_void] = ACTIONS(3221), - [anon_sym_delete] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3221), - [sym_number] = ACTIONS(3221), - [sym_private_property_identifier] = ACTIONS(3221), - [sym_this] = ACTIONS(3221), - [sym_super] = ACTIONS(3221), - [sym_true] = ACTIONS(3221), - [sym_false] = ACTIONS(3221), - [sym_null] = ACTIONS(3221), - [sym_undefined] = ACTIONS(3221), - [anon_sym_AT] = ACTIONS(3221), - [anon_sym_static] = ACTIONS(3221), - [anon_sym_readonly] = ACTIONS(3221), - [anon_sym_get] = ACTIONS(3221), - [anon_sym_set] = ACTIONS(3221), - [anon_sym_declare] = ACTIONS(3221), - [anon_sym_public] = ACTIONS(3221), - [anon_sym_private] = ACTIONS(3221), - [anon_sym_protected] = ACTIONS(3221), - [anon_sym_override] = ACTIONS(3221), - [anon_sym_module] = ACTIONS(3221), - [anon_sym_any] = ACTIONS(3221), - [anon_sym_number] = ACTIONS(3221), - [anon_sym_boolean] = ACTIONS(3221), - [anon_sym_string] = ACTIONS(3221), - [anon_sym_symbol] = ACTIONS(3221), - [anon_sym_object] = ACTIONS(3221), - [anon_sym_abstract] = ACTIONS(3221), - [anon_sym_interface] = ACTIONS(3221), - [anon_sym_enum] = ACTIONS(3221), - [sym_html_comment] = ACTIONS(5), - }, - [1287] = { - [sym_comment] = STATE(1287), - [ts_builtin_sym_end] = ACTIONS(3477), - [sym_identifier] = ACTIONS(3247), - [anon_sym_export] = ACTIONS(3247), - [anon_sym_type] = ACTIONS(3247), - [anon_sym_namespace] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_typeof] = ACTIONS(3247), - [anon_sym_import] = ACTIONS(3247), - [anon_sym_with] = ACTIONS(3247), - [anon_sym_var] = ACTIONS(3247), - [anon_sym_let] = ACTIONS(3247), - [anon_sym_const] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_else] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_switch] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_await] = ACTIONS(3247), - [anon_sym_while] = ACTIONS(3247), - [anon_sym_do] = ACTIONS(3247), - [anon_sym_try] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_debugger] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_throw] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_LTtemplate_GT] = ACTIONS(3247), - [anon_sym_DQUOTE] = ACTIONS(3247), - [anon_sym_SQUOTE] = ACTIONS(3247), - [anon_sym_class] = ACTIONS(3247), - [anon_sym_async] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3247), - [anon_sym_using] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_SLASH] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_void] = ACTIONS(3247), - [anon_sym_delete] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3247), - [sym_number] = ACTIONS(3247), - [sym_private_property_identifier] = ACTIONS(3247), - [sym_this] = ACTIONS(3247), - [sym_super] = ACTIONS(3247), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [sym_null] = ACTIONS(3247), - [sym_undefined] = ACTIONS(3247), - [anon_sym_AT] = ACTIONS(3247), - [anon_sym_static] = ACTIONS(3247), - [anon_sym_readonly] = ACTIONS(3247), - [anon_sym_get] = ACTIONS(3247), - [anon_sym_set] = ACTIONS(3247), - [anon_sym_declare] = ACTIONS(3247), - [anon_sym_public] = ACTIONS(3247), - [anon_sym_private] = ACTIONS(3247), - [anon_sym_protected] = ACTIONS(3247), - [anon_sym_override] = ACTIONS(3247), - [anon_sym_module] = ACTIONS(3247), - [anon_sym_any] = ACTIONS(3247), - [anon_sym_number] = ACTIONS(3247), - [anon_sym_boolean] = ACTIONS(3247), - [anon_sym_string] = ACTIONS(3247), - [anon_sym_symbol] = ACTIONS(3247), - [anon_sym_object] = ACTIONS(3247), - [anon_sym_abstract] = ACTIONS(3247), - [anon_sym_interface] = ACTIONS(3247), - [anon_sym_enum] = ACTIONS(3247), - [sym_html_comment] = ACTIONS(5), - }, - [1288] = { - [sym_comment] = STATE(1288), - [ts_builtin_sym_end] = ACTIONS(3479), - [sym_identifier] = ACTIONS(3245), - [anon_sym_export] = ACTIONS(3245), - [anon_sym_type] = ACTIONS(3245), - [anon_sym_namespace] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_typeof] = ACTIONS(3245), - [anon_sym_import] = ACTIONS(3245), - [anon_sym_with] = ACTIONS(3245), - [anon_sym_var] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_else] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_await] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_debugger] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_throw] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_LTtemplate_GT] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_SQUOTE] = ACTIONS(3245), - [anon_sym_class] = ACTIONS(3245), - [anon_sym_async] = ACTIONS(3245), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_using] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_void] = ACTIONS(3245), - [anon_sym_delete] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3245), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3245), - [sym_number] = ACTIONS(3245), - [sym_private_property_identifier] = ACTIONS(3245), - [sym_this] = ACTIONS(3245), - [sym_super] = ACTIONS(3245), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [sym_null] = ACTIONS(3245), - [sym_undefined] = ACTIONS(3245), - [anon_sym_AT] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_readonly] = ACTIONS(3245), - [anon_sym_get] = ACTIONS(3245), - [anon_sym_set] = ACTIONS(3245), - [anon_sym_declare] = ACTIONS(3245), - [anon_sym_public] = ACTIONS(3245), - [anon_sym_private] = ACTIONS(3245), - [anon_sym_protected] = ACTIONS(3245), - [anon_sym_override] = ACTIONS(3245), - [anon_sym_module] = ACTIONS(3245), - [anon_sym_any] = ACTIONS(3245), - [anon_sym_number] = ACTIONS(3245), - [anon_sym_boolean] = ACTIONS(3245), - [anon_sym_string] = ACTIONS(3245), - [anon_sym_symbol] = ACTIONS(3245), - [anon_sym_object] = ACTIONS(3245), - [anon_sym_abstract] = ACTIONS(3245), - [anon_sym_interface] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), - [sym_html_comment] = ACTIONS(5), - }, - [1289] = { - [sym_comment] = STATE(1289), - [ts_builtin_sym_end] = ACTIONS(3481), - [sym_identifier] = ACTIONS(3371), - [anon_sym_export] = ACTIONS(3371), - [anon_sym_type] = ACTIONS(3371), - [anon_sym_namespace] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_typeof] = ACTIONS(3371), - [anon_sym_import] = ACTIONS(3371), - [anon_sym_with] = ACTIONS(3371), - [anon_sym_var] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_const] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_else] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_switch] = ACTIONS(3371), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_await] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_debugger] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LTtemplate_GT] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_SQUOTE] = ACTIONS(3371), - [anon_sym_class] = ACTIONS(3371), - [anon_sym_async] = ACTIONS(3371), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_using] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3371), - [anon_sym_void] = ACTIONS(3371), - [anon_sym_delete] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3371), - [anon_sym_DASH_DASH] = ACTIONS(3371), + [1272] = { + [sym_comment] = STATE(1272), + [ts_builtin_sym_end] = ACTIONS(3507), + [sym_identifier] = ACTIONS(3291), + [anon_sym_export] = ACTIONS(3291), + [anon_sym_type] = ACTIONS(3291), + [anon_sym_namespace] = ACTIONS(3291), + [anon_sym_LBRACE] = ACTIONS(3291), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_typeof] = ACTIONS(3291), + [anon_sym_import] = ACTIONS(3291), + [anon_sym_with] = ACTIONS(3291), + [anon_sym_var] = ACTIONS(3291), + [anon_sym_let] = ACTIONS(3291), + [anon_sym_const] = ACTIONS(3291), + [anon_sym_BANG] = ACTIONS(3291), + [anon_sym_else] = ACTIONS(3291), + [anon_sym_if] = ACTIONS(3291), + [anon_sym_switch] = ACTIONS(3291), + [anon_sym_for] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(3291), + [anon_sym_await] = ACTIONS(3291), + [anon_sym_while] = ACTIONS(3291), + [anon_sym_do] = ACTIONS(3291), + [anon_sym_try] = ACTIONS(3291), + [anon_sym_break] = ACTIONS(3291), + [anon_sym_continue] = ACTIONS(3291), + [anon_sym_debugger] = ACTIONS(3291), + [anon_sym_return] = ACTIONS(3291), + [anon_sym_throw] = ACTIONS(3291), + [anon_sym_SEMI] = ACTIONS(3291), + [anon_sym_yield] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(3291), + [anon_sym_LTtemplate_GT] = ACTIONS(3291), + [anon_sym_DQUOTE] = ACTIONS(3291), + [anon_sym_SQUOTE] = ACTIONS(3291), + [anon_sym_class] = ACTIONS(3291), + [anon_sym_async] = ACTIONS(3291), + [anon_sym_function] = ACTIONS(3291), + [anon_sym_new] = ACTIONS(3291), + [anon_sym_using] = ACTIONS(3291), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_SLASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(3291), + [anon_sym_TILDE] = ACTIONS(3291), + [anon_sym_void] = ACTIONS(3291), + [anon_sym_delete] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DASH_DASH] = ACTIONS(3291), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3371), - [sym_number] = ACTIONS(3371), - [sym_private_property_identifier] = ACTIONS(3371), - [sym_this] = ACTIONS(3371), - [sym_super] = ACTIONS(3371), - [sym_true] = ACTIONS(3371), - [sym_false] = ACTIONS(3371), - [sym_null] = ACTIONS(3371), - [sym_undefined] = ACTIONS(3371), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_readonly] = ACTIONS(3371), - [anon_sym_get] = ACTIONS(3371), - [anon_sym_set] = ACTIONS(3371), - [anon_sym_declare] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_protected] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3371), - [anon_sym_module] = ACTIONS(3371), - [anon_sym_any] = ACTIONS(3371), - [anon_sym_number] = ACTIONS(3371), - [anon_sym_boolean] = ACTIONS(3371), - [anon_sym_string] = ACTIONS(3371), - [anon_sym_symbol] = ACTIONS(3371), - [anon_sym_object] = ACTIONS(3371), - [anon_sym_abstract] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), + [anon_sym_BQUOTE] = ACTIONS(3291), + [sym_number] = ACTIONS(3291), + [sym_private_property_identifier] = ACTIONS(3291), + [sym_this] = ACTIONS(3291), + [sym_super] = ACTIONS(3291), + [sym_true] = ACTIONS(3291), + [sym_false] = ACTIONS(3291), + [sym_null] = ACTIONS(3291), + [sym_undefined] = ACTIONS(3291), + [anon_sym_AT] = ACTIONS(3291), + [anon_sym_static] = ACTIONS(3291), + [anon_sym_readonly] = ACTIONS(3291), + [anon_sym_get] = ACTIONS(3291), + [anon_sym_set] = ACTIONS(3291), + [anon_sym_declare] = ACTIONS(3291), + [anon_sym_public] = ACTIONS(3291), + [anon_sym_private] = ACTIONS(3291), + [anon_sym_protected] = ACTIONS(3291), + [anon_sym_override] = ACTIONS(3291), + [anon_sym_module] = ACTIONS(3291), + [anon_sym_any] = ACTIONS(3291), + [anon_sym_number] = ACTIONS(3291), + [anon_sym_boolean] = ACTIONS(3291), + [anon_sym_string] = ACTIONS(3291), + [anon_sym_symbol] = ACTIONS(3291), + [anon_sym_object] = ACTIONS(3291), + [anon_sym_abstract] = ACTIONS(3291), + [anon_sym_interface] = ACTIONS(3291), + [anon_sym_enum] = ACTIONS(3291), [sym_html_comment] = ACTIONS(5), }, - [1290] = { - [sym_comment] = STATE(1290), - [ts_builtin_sym_end] = ACTIONS(3483), - [sym_identifier] = ACTIONS(3441), - [anon_sym_export] = ACTIONS(3441), - [anon_sym_type] = ACTIONS(3441), - [anon_sym_namespace] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_RBRACE] = ACTIONS(3441), - [anon_sym_typeof] = ACTIONS(3441), - [anon_sym_import] = ACTIONS(3441), - [anon_sym_with] = ACTIONS(3441), - [anon_sym_var] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_const] = ACTIONS(3441), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_else] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_await] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_break] = ACTIONS(3441), - [anon_sym_continue] = ACTIONS(3441), - [anon_sym_debugger] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_throw] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LTtemplate_GT] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_SQUOTE] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_async] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_using] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_SLASH] = ACTIONS(3441), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_void] = ACTIONS(3441), - [anon_sym_delete] = ACTIONS(3441), - [anon_sym_PLUS_PLUS] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3441), + [1273] = { + [sym_comment] = STATE(1273), + [ts_builtin_sym_end] = ACTIONS(3509), + [sym_identifier] = ACTIONS(3387), + [anon_sym_export] = ACTIONS(3387), + [anon_sym_type] = ACTIONS(3387), + [anon_sym_namespace] = ACTIONS(3387), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_RBRACE] = ACTIONS(3387), + [anon_sym_typeof] = ACTIONS(3387), + [anon_sym_import] = ACTIONS(3387), + [anon_sym_with] = ACTIONS(3387), + [anon_sym_var] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_const] = ACTIONS(3387), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_else] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_switch] = ACTIONS(3387), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_await] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_break] = ACTIONS(3387), + [anon_sym_continue] = ACTIONS(3387), + [anon_sym_debugger] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_throw] = ACTIONS(3387), + [anon_sym_SEMI] = ACTIONS(3387), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LTtemplate_GT] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_SQUOTE] = ACTIONS(3387), + [anon_sym_class] = ACTIONS(3387), + [anon_sym_async] = ACTIONS(3387), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_using] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_SLASH] = ACTIONS(3387), + [anon_sym_LT] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3387), + [anon_sym_void] = ACTIONS(3387), + [anon_sym_delete] = ACTIONS(3387), + [anon_sym_PLUS_PLUS] = ACTIONS(3387), + [anon_sym_DASH_DASH] = ACTIONS(3387), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3441), - [sym_number] = ACTIONS(3441), - [sym_private_property_identifier] = ACTIONS(3441), - [sym_this] = ACTIONS(3441), - [sym_super] = ACTIONS(3441), - [sym_true] = ACTIONS(3441), - [sym_false] = ACTIONS(3441), - [sym_null] = ACTIONS(3441), - [sym_undefined] = ACTIONS(3441), - [anon_sym_AT] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_readonly] = ACTIONS(3441), - [anon_sym_get] = ACTIONS(3441), - [anon_sym_set] = ACTIONS(3441), - [anon_sym_declare] = ACTIONS(3441), - [anon_sym_public] = ACTIONS(3441), - [anon_sym_private] = ACTIONS(3441), - [anon_sym_protected] = ACTIONS(3441), - [anon_sym_override] = ACTIONS(3441), - [anon_sym_module] = ACTIONS(3441), - [anon_sym_any] = ACTIONS(3441), - [anon_sym_number] = ACTIONS(3441), - [anon_sym_boolean] = ACTIONS(3441), - [anon_sym_string] = ACTIONS(3441), - [anon_sym_symbol] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_abstract] = ACTIONS(3441), - [anon_sym_interface] = ACTIONS(3441), - [anon_sym_enum] = ACTIONS(3441), + [anon_sym_BQUOTE] = ACTIONS(3387), + [sym_number] = ACTIONS(3387), + [sym_private_property_identifier] = ACTIONS(3387), + [sym_this] = ACTIONS(3387), + [sym_super] = ACTIONS(3387), + [sym_true] = ACTIONS(3387), + [sym_false] = ACTIONS(3387), + [sym_null] = ACTIONS(3387), + [sym_undefined] = ACTIONS(3387), + [anon_sym_AT] = ACTIONS(3387), + [anon_sym_static] = ACTIONS(3387), + [anon_sym_readonly] = ACTIONS(3387), + [anon_sym_get] = ACTIONS(3387), + [anon_sym_set] = ACTIONS(3387), + [anon_sym_declare] = ACTIONS(3387), + [anon_sym_public] = ACTIONS(3387), + [anon_sym_private] = ACTIONS(3387), + [anon_sym_protected] = ACTIONS(3387), + [anon_sym_override] = ACTIONS(3387), + [anon_sym_module] = ACTIONS(3387), + [anon_sym_any] = ACTIONS(3387), + [anon_sym_number] = ACTIONS(3387), + [anon_sym_boolean] = ACTIONS(3387), + [anon_sym_string] = ACTIONS(3387), + [anon_sym_symbol] = ACTIONS(3387), + [anon_sym_object] = ACTIONS(3387), + [anon_sym_abstract] = ACTIONS(3387), + [anon_sym_interface] = ACTIONS(3387), + [anon_sym_enum] = ACTIONS(3387), [sym_html_comment] = ACTIONS(5), }, - [1291] = { - [sym_comment] = STATE(1291), - [ts_builtin_sym_end] = ACTIONS(3485), - [sym_identifier] = ACTIONS(3243), - [anon_sym_export] = ACTIONS(3243), - [anon_sym_type] = ACTIONS(3243), - [anon_sym_namespace] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_RBRACE] = ACTIONS(3243), - [anon_sym_typeof] = ACTIONS(3243), - [anon_sym_import] = ACTIONS(3243), - [anon_sym_with] = ACTIONS(3243), - [anon_sym_var] = ACTIONS(3243), - [anon_sym_let] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_else] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_switch] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3243), - [anon_sym_await] = ACTIONS(3243), - [anon_sym_while] = ACTIONS(3243), - [anon_sym_do] = ACTIONS(3243), - [anon_sym_try] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_debugger] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_throw] = ACTIONS(3243), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_yield] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_LTtemplate_GT] = ACTIONS(3243), - [anon_sym_DQUOTE] = ACTIONS(3243), - [anon_sym_SQUOTE] = ACTIONS(3243), - [anon_sym_class] = ACTIONS(3243), - [anon_sym_async] = ACTIONS(3243), - [anon_sym_function] = ACTIONS(3243), - [anon_sym_new] = ACTIONS(3243), - [anon_sym_using] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_SLASH] = ACTIONS(3243), - [anon_sym_LT] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_void] = ACTIONS(3243), - [anon_sym_delete] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3243), - [sym_number] = ACTIONS(3243), - [sym_private_property_identifier] = ACTIONS(3243), - [sym_this] = ACTIONS(3243), - [sym_super] = ACTIONS(3243), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [sym_null] = ACTIONS(3243), - [sym_undefined] = ACTIONS(3243), - [anon_sym_AT] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3243), - [anon_sym_readonly] = ACTIONS(3243), - [anon_sym_get] = ACTIONS(3243), - [anon_sym_set] = ACTIONS(3243), - [anon_sym_declare] = ACTIONS(3243), - [anon_sym_public] = ACTIONS(3243), - [anon_sym_private] = ACTIONS(3243), - [anon_sym_protected] = ACTIONS(3243), - [anon_sym_override] = ACTIONS(3243), - [anon_sym_module] = ACTIONS(3243), - [anon_sym_any] = ACTIONS(3243), - [anon_sym_number] = ACTIONS(3243), - [anon_sym_boolean] = ACTIONS(3243), - [anon_sym_string] = ACTIONS(3243), - [anon_sym_symbol] = ACTIONS(3243), - [anon_sym_object] = ACTIONS(3243), - [anon_sym_abstract] = ACTIONS(3243), - [anon_sym_interface] = ACTIONS(3243), - [anon_sym_enum] = ACTIONS(3243), + [1274] = { + [sym_comment] = STATE(1274), + [sym_identifier] = ACTIONS(2304), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_default] = ACTIONS(2304), + [anon_sym_type] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2304), + [anon_sym_LBRACE] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_typeof] = ACTIONS(2304), + [anon_sym_import] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(2304), + [anon_sym_var] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_switch] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_await] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_debugger] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_throw] = ACTIONS(2304), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_case] = ACTIONS(2304), + [anon_sym_yield] = ACTIONS(2304), + [anon_sym_LBRACK] = ACTIONS(2304), + [anon_sym_LTtemplate_GT] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2304), + [anon_sym_SQUOTE] = ACTIONS(2304), + [anon_sym_class] = ACTIONS(2304), + [anon_sym_async] = ACTIONS(2304), + [anon_sym_function] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2304), + [anon_sym_using] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2304), + [anon_sym_DASH] = ACTIONS(2304), + [anon_sym_SLASH] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2304), + [anon_sym_void] = ACTIONS(2304), + [anon_sym_delete] = ACTIONS(2304), + [anon_sym_PLUS_PLUS] = ACTIONS(2304), + [anon_sym_DASH_DASH] = ACTIONS(2304), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2304), + [sym_number] = ACTIONS(2304), + [sym_private_property_identifier] = ACTIONS(2304), + [sym_this] = ACTIONS(2304), + [sym_super] = ACTIONS(2304), + [sym_true] = ACTIONS(2304), + [sym_false] = ACTIONS(2304), + [sym_null] = ACTIONS(2304), + [sym_undefined] = ACTIONS(2304), + [anon_sym_AT] = ACTIONS(2304), + [anon_sym_static] = ACTIONS(2304), + [anon_sym_readonly] = ACTIONS(2304), + [anon_sym_get] = ACTIONS(2304), + [anon_sym_set] = ACTIONS(2304), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_public] = ACTIONS(2304), + [anon_sym_private] = ACTIONS(2304), + [anon_sym_protected] = ACTIONS(2304), + [anon_sym_override] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_any] = ACTIONS(2304), + [anon_sym_number] = ACTIONS(2304), + [anon_sym_boolean] = ACTIONS(2304), + [anon_sym_string] = ACTIONS(2304), + [anon_sym_symbol] = ACTIONS(2304), + [anon_sym_object] = ACTIONS(2304), + [anon_sym_abstract] = ACTIONS(2304), + [anon_sym_interface] = ACTIONS(2304), + [anon_sym_enum] = ACTIONS(2304), [sym_html_comment] = ACTIONS(5), }, - [1292] = { - [sym_comment] = STATE(1292), - [sym_identifier] = ACTIONS(3343), - [anon_sym_export] = ACTIONS(3343), - [anon_sym_default] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_typeof] = ACTIONS(3343), - [anon_sym_import] = ACTIONS(3343), - [anon_sym_with] = ACTIONS(3343), - [anon_sym_var] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_switch] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_await] = ACTIONS(3343), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_do] = ACTIONS(3343), - [anon_sym_try] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_debugger] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_throw] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_case] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3343), - [anon_sym_LTtemplate_GT] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_class] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3343), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_using] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_void] = ACTIONS(3343), - [anon_sym_delete] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), + [1275] = { + [sym_comment] = STATE(1275), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3343), - [sym_number] = ACTIONS(3343), - [sym_private_property_identifier] = ACTIONS(3343), - [sym_this] = ACTIONS(3343), - [sym_super] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_null] = ACTIONS(3343), - [sym_undefined] = ACTIONS(3343), - [anon_sym_AT] = ACTIONS(3343), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_get] = ACTIONS(3343), - [anon_sym_set] = ACTIONS(3343), - [anon_sym_declare] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_module] = ACTIONS(3343), - [anon_sym_any] = ACTIONS(3343), - [anon_sym_number] = ACTIONS(3343), - [anon_sym_boolean] = ACTIONS(3343), - [anon_sym_string] = ACTIONS(3343), - [anon_sym_symbol] = ACTIONS(3343), - [anon_sym_object] = ACTIONS(3343), - [anon_sym_abstract] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1293] = { - [sym_comment] = STATE(1293), - [ts_builtin_sym_end] = ACTIONS(2260), - [sym_identifier] = ACTIONS(2258), - [anon_sym_export] = ACTIONS(2258), - [anon_sym_type] = ACTIONS(2258), - [anon_sym_namespace] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2258), - [anon_sym_import] = ACTIONS(2258), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_var] = ACTIONS(2258), - [anon_sym_let] = ACTIONS(2258), - [anon_sym_const] = ACTIONS(2258), - [anon_sym_BANG] = ACTIONS(2258), - [anon_sym_else] = ACTIONS(2258), - [anon_sym_if] = ACTIONS(2258), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_for] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_await] = ACTIONS(2258), - [anon_sym_while] = ACTIONS(2258), - [anon_sym_do] = ACTIONS(2258), - [anon_sym_try] = ACTIONS(2258), - [anon_sym_break] = ACTIONS(2258), - [anon_sym_continue] = ACTIONS(2258), - [anon_sym_debugger] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(2258), - [anon_sym_throw] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2258), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_LTtemplate_GT] = ACTIONS(2258), - [anon_sym_DQUOTE] = ACTIONS(2258), - [anon_sym_SQUOTE] = ACTIONS(2258), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2258), - [anon_sym_function] = ACTIONS(2258), - [anon_sym_new] = ACTIONS(2258), - [anon_sym_using] = ACTIONS(2258), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2258), - [anon_sym_TILDE] = ACTIONS(2258), - [anon_sym_void] = ACTIONS(2258), - [anon_sym_delete] = ACTIONS(2258), - [anon_sym_PLUS_PLUS] = ACTIONS(2258), - [anon_sym_DASH_DASH] = ACTIONS(2258), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2258), - [sym_number] = ACTIONS(2258), - [sym_private_property_identifier] = ACTIONS(2258), - [sym_this] = ACTIONS(2258), - [sym_super] = ACTIONS(2258), - [sym_true] = ACTIONS(2258), - [sym_false] = ACTIONS(2258), - [sym_null] = ACTIONS(2258), - [sym_undefined] = ACTIONS(2258), - [anon_sym_AT] = ACTIONS(2258), - [anon_sym_static] = ACTIONS(2258), - [anon_sym_readonly] = ACTIONS(2258), - [anon_sym_get] = ACTIONS(2258), - [anon_sym_set] = ACTIONS(2258), - [anon_sym_declare] = ACTIONS(2258), - [anon_sym_public] = ACTIONS(2258), - [anon_sym_private] = ACTIONS(2258), - [anon_sym_protected] = ACTIONS(2258), - [anon_sym_override] = ACTIONS(2258), - [anon_sym_module] = ACTIONS(2258), - [anon_sym_any] = ACTIONS(2258), - [anon_sym_number] = ACTIONS(2258), - [anon_sym_boolean] = ACTIONS(2258), - [anon_sym_string] = ACTIONS(2258), - [anon_sym_symbol] = ACTIONS(2258), - [anon_sym_object] = ACTIONS(2258), - [anon_sym_abstract] = ACTIONS(2258), - [anon_sym_interface] = ACTIONS(2258), - [anon_sym_enum] = ACTIONS(2258), + [1276] = { + [sym_comment] = STATE(1276), + [sym_identifier] = ACTIONS(2300), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_default] = ACTIONS(2300), + [anon_sym_type] = ACTIONS(2300), + [anon_sym_namespace] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2300), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2300), + [anon_sym_import] = ACTIONS(2300), + [anon_sym_with] = ACTIONS(2300), + [anon_sym_var] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_switch] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_await] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_debugger] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_throw] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_case] = ACTIONS(2300), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2300), + [anon_sym_LTtemplate_GT] = ACTIONS(2300), + [anon_sym_DQUOTE] = ACTIONS(2300), + [anon_sym_SQUOTE] = ACTIONS(2300), + [anon_sym_class] = ACTIONS(2300), + [anon_sym_async] = ACTIONS(2300), + [anon_sym_function] = ACTIONS(2300), + [anon_sym_new] = ACTIONS(2300), + [anon_sym_using] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_LT] = ACTIONS(2300), + [anon_sym_TILDE] = ACTIONS(2300), + [anon_sym_void] = ACTIONS(2300), + [anon_sym_delete] = ACTIONS(2300), + [anon_sym_PLUS_PLUS] = ACTIONS(2300), + [anon_sym_DASH_DASH] = ACTIONS(2300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2300), + [sym_number] = ACTIONS(2300), + [sym_private_property_identifier] = ACTIONS(2300), + [sym_this] = ACTIONS(2300), + [sym_super] = ACTIONS(2300), + [sym_true] = ACTIONS(2300), + [sym_false] = ACTIONS(2300), + [sym_null] = ACTIONS(2300), + [sym_undefined] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2300), + [anon_sym_static] = ACTIONS(2300), + [anon_sym_readonly] = ACTIONS(2300), + [anon_sym_get] = ACTIONS(2300), + [anon_sym_set] = ACTIONS(2300), + [anon_sym_declare] = ACTIONS(2300), + [anon_sym_public] = ACTIONS(2300), + [anon_sym_private] = ACTIONS(2300), + [anon_sym_protected] = ACTIONS(2300), + [anon_sym_override] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_any] = ACTIONS(2300), + [anon_sym_number] = ACTIONS(2300), + [anon_sym_boolean] = ACTIONS(2300), + [anon_sym_string] = ACTIONS(2300), + [anon_sym_symbol] = ACTIONS(2300), + [anon_sym_object] = ACTIONS(2300), + [anon_sym_abstract] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2300), + [anon_sym_enum] = ACTIONS(2300), [sym_html_comment] = ACTIONS(5), }, - [1294] = { - [sym_comment] = STATE(1294), - [sym_identifier] = ACTIONS(3349), - [anon_sym_export] = ACTIONS(3349), - [anon_sym_default] = ACTIONS(3349), - [anon_sym_type] = ACTIONS(3349), - [anon_sym_namespace] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_typeof] = ACTIONS(3349), - [anon_sym_import] = ACTIONS(3349), - [anon_sym_with] = ACTIONS(3349), - [anon_sym_var] = ACTIONS(3349), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_BANG] = ACTIONS(3349), - [anon_sym_if] = ACTIONS(3349), - [anon_sym_switch] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_await] = ACTIONS(3349), - [anon_sym_while] = ACTIONS(3349), - [anon_sym_do] = ACTIONS(3349), - [anon_sym_try] = ACTIONS(3349), - [anon_sym_break] = ACTIONS(3349), - [anon_sym_continue] = ACTIONS(3349), - [anon_sym_debugger] = ACTIONS(3349), - [anon_sym_return] = ACTIONS(3349), - [anon_sym_throw] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_case] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_LTtemplate_GT] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_SQUOTE] = ACTIONS(3349), - [anon_sym_class] = ACTIONS(3349), - [anon_sym_async] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3349), - [anon_sym_new] = ACTIONS(3349), - [anon_sym_using] = ACTIONS(3349), - [anon_sym_PLUS] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3349), - [anon_sym_SLASH] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_void] = ACTIONS(3349), - [anon_sym_delete] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_DASH_DASH] = ACTIONS(3349), + [1277] = { + [sym_comment] = STATE(1277), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_default] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_case] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3349), - [sym_number] = ACTIONS(3349), - [sym_private_property_identifier] = ACTIONS(3349), - [sym_this] = ACTIONS(3349), - [sym_super] = ACTIONS(3349), - [sym_true] = ACTIONS(3349), - [sym_false] = ACTIONS(3349), - [sym_null] = ACTIONS(3349), - [sym_undefined] = ACTIONS(3349), - [anon_sym_AT] = ACTIONS(3349), - [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_abstract] = ACTIONS(3349), - [anon_sym_interface] = ACTIONS(3349), - [anon_sym_enum] = ACTIONS(3349), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1295] = { - [sym_comment] = STATE(1295), - [ts_builtin_sym_end] = ACTIONS(3487), + [1278] = { + [sym_comment] = STATE(1278), [sym_identifier] = ACTIONS(3355), [anon_sym_export] = ACTIONS(3355), + [anon_sym_default] = ACTIONS(3355), [anon_sym_type] = ACTIONS(3355), [anon_sym_namespace] = ACTIONS(3355), [anon_sym_LBRACE] = ACTIONS(3355), @@ -168774,7 +167061,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3355), [anon_sym_const] = ACTIONS(3355), [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_else] = ACTIONS(3355), [anon_sym_if] = ACTIONS(3355), [anon_sym_switch] = ACTIONS(3355), [anon_sym_for] = ACTIONS(3355), @@ -168789,6 +167075,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3355), [anon_sym_throw] = ACTIONS(3355), [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_case] = ACTIONS(3355), [anon_sym_yield] = ACTIONS(3355), [anon_sym_LBRACK] = ACTIONS(3355), [anon_sym_LTtemplate_GT] = ACTIONS(3355), @@ -168840,255 +167127,337 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3355), [sym_html_comment] = ACTIONS(5), }, - [1296] = { - [sym_comment] = STATE(1296), - [ts_builtin_sym_end] = ACTIONS(3489), - [sym_identifier] = ACTIONS(3367), - [anon_sym_export] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_namespace] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_typeof] = ACTIONS(3367), - [anon_sym_import] = ACTIONS(3367), - [anon_sym_with] = ACTIONS(3367), - [anon_sym_var] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_else] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_switch] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_await] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_debugger] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_throw] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LTtemplate_GT] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3367), - [anon_sym_class] = ACTIONS(3367), - [anon_sym_async] = ACTIONS(3367), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_using] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_void] = ACTIONS(3367), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), + [1279] = { + [sym_comment] = STATE(1279), + [sym_identifier] = ACTIONS(3351), + [anon_sym_export] = ACTIONS(3351), + [anon_sym_default] = ACTIONS(3351), + [anon_sym_type] = ACTIONS(3351), + [anon_sym_namespace] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_RBRACE] = ACTIONS(3351), + [anon_sym_typeof] = ACTIONS(3351), + [anon_sym_import] = ACTIONS(3351), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_var] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_const] = ACTIONS(3351), + [anon_sym_BANG] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_switch] = ACTIONS(3351), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_await] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_break] = ACTIONS(3351), + [anon_sym_continue] = ACTIONS(3351), + [anon_sym_debugger] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_throw] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(3351), + [anon_sym_case] = ACTIONS(3351), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LTtemplate_GT] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_SQUOTE] = ACTIONS(3351), + [anon_sym_class] = ACTIONS(3351), + [anon_sym_async] = ACTIONS(3351), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_using] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_SLASH] = ACTIONS(3351), + [anon_sym_LT] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3351), + [anon_sym_void] = ACTIONS(3351), + [anon_sym_delete] = ACTIONS(3351), + [anon_sym_PLUS_PLUS] = ACTIONS(3351), + [anon_sym_DASH_DASH] = ACTIONS(3351), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3367), - [sym_number] = ACTIONS(3367), - [sym_private_property_identifier] = ACTIONS(3367), - [sym_this] = ACTIONS(3367), - [sym_super] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_null] = ACTIONS(3367), - [sym_undefined] = ACTIONS(3367), - [anon_sym_AT] = ACTIONS(3367), - [anon_sym_static] = ACTIONS(3367), - [anon_sym_readonly] = ACTIONS(3367), - [anon_sym_get] = ACTIONS(3367), - [anon_sym_set] = ACTIONS(3367), - [anon_sym_declare] = ACTIONS(3367), - [anon_sym_public] = ACTIONS(3367), - [anon_sym_private] = ACTIONS(3367), - [anon_sym_protected] = ACTIONS(3367), - [anon_sym_override] = ACTIONS(3367), - [anon_sym_module] = ACTIONS(3367), - [anon_sym_any] = ACTIONS(3367), - [anon_sym_number] = ACTIONS(3367), - [anon_sym_boolean] = ACTIONS(3367), - [anon_sym_string] = ACTIONS(3367), - [anon_sym_symbol] = ACTIONS(3367), - [anon_sym_object] = ACTIONS(3367), - [anon_sym_abstract] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), + [anon_sym_BQUOTE] = ACTIONS(3351), + [sym_number] = ACTIONS(3351), + [sym_private_property_identifier] = ACTIONS(3351), + [sym_this] = ACTIONS(3351), + [sym_super] = ACTIONS(3351), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [sym_null] = ACTIONS(3351), + [sym_undefined] = ACTIONS(3351), + [anon_sym_AT] = ACTIONS(3351), + [anon_sym_static] = ACTIONS(3351), + [anon_sym_readonly] = ACTIONS(3351), + [anon_sym_get] = ACTIONS(3351), + [anon_sym_set] = ACTIONS(3351), + [anon_sym_declare] = ACTIONS(3351), + [anon_sym_public] = ACTIONS(3351), + [anon_sym_private] = ACTIONS(3351), + [anon_sym_protected] = ACTIONS(3351), + [anon_sym_override] = ACTIONS(3351), + [anon_sym_module] = ACTIONS(3351), + [anon_sym_any] = ACTIONS(3351), + [anon_sym_number] = ACTIONS(3351), + [anon_sym_boolean] = ACTIONS(3351), + [anon_sym_string] = ACTIONS(3351), + [anon_sym_symbol] = ACTIONS(3351), + [anon_sym_object] = ACTIONS(3351), + [anon_sym_abstract] = ACTIONS(3351), + [anon_sym_interface] = ACTIONS(3351), + [anon_sym_enum] = ACTIONS(3351), [sym_html_comment] = ACTIONS(5), }, - [1297] = { - [sym_comment] = STATE(1297), - [ts_builtin_sym_end] = ACTIONS(3491), - [sym_identifier] = ACTIONS(3363), - [anon_sym_export] = ACTIONS(3363), - [anon_sym_type] = ACTIONS(3363), - [anon_sym_namespace] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_typeof] = ACTIONS(3363), - [anon_sym_import] = ACTIONS(3363), - [anon_sym_with] = ACTIONS(3363), - [anon_sym_var] = ACTIONS(3363), - [anon_sym_let] = ACTIONS(3363), - [anon_sym_const] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_else] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_switch] = ACTIONS(3363), - [anon_sym_for] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_await] = ACTIONS(3363), - [anon_sym_while] = ACTIONS(3363), - [anon_sym_do] = ACTIONS(3363), - [anon_sym_try] = ACTIONS(3363), - [anon_sym_break] = ACTIONS(3363), - [anon_sym_continue] = ACTIONS(3363), - [anon_sym_debugger] = ACTIONS(3363), - [anon_sym_return] = ACTIONS(3363), - [anon_sym_throw] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_yield] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3363), - [anon_sym_LTtemplate_GT] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(3363), - [anon_sym_SQUOTE] = ACTIONS(3363), - [anon_sym_class] = ACTIONS(3363), - [anon_sym_async] = ACTIONS(3363), - [anon_sym_function] = ACTIONS(3363), - [anon_sym_new] = ACTIONS(3363), - [anon_sym_using] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3363), - [anon_sym_void] = ACTIONS(3363), - [anon_sym_delete] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DASH_DASH] = ACTIONS(3363), + [1280] = { + [sym_comment] = STATE(1280), + [sym_identifier] = ACTIONS(3345), + [anon_sym_export] = ACTIONS(3345), + [anon_sym_default] = ACTIONS(3345), + [anon_sym_type] = ACTIONS(3345), + [anon_sym_namespace] = ACTIONS(3345), + [anon_sym_LBRACE] = ACTIONS(3345), + [anon_sym_RBRACE] = ACTIONS(3345), + [anon_sym_typeof] = ACTIONS(3345), + [anon_sym_import] = ACTIONS(3345), + [anon_sym_with] = ACTIONS(3345), + [anon_sym_var] = ACTIONS(3345), + [anon_sym_let] = ACTIONS(3345), + [anon_sym_const] = ACTIONS(3345), + [anon_sym_BANG] = ACTIONS(3345), + [anon_sym_if] = ACTIONS(3345), + [anon_sym_switch] = ACTIONS(3345), + [anon_sym_for] = ACTIONS(3345), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_await] = ACTIONS(3345), + [anon_sym_while] = ACTIONS(3345), + [anon_sym_do] = ACTIONS(3345), + [anon_sym_try] = ACTIONS(3345), + [anon_sym_break] = ACTIONS(3345), + [anon_sym_continue] = ACTIONS(3345), + [anon_sym_debugger] = ACTIONS(3345), + [anon_sym_return] = ACTIONS(3345), + [anon_sym_throw] = ACTIONS(3345), + [anon_sym_SEMI] = ACTIONS(3345), + [anon_sym_case] = ACTIONS(3345), + [anon_sym_yield] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_LTtemplate_GT] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(3345), + [anon_sym_SQUOTE] = ACTIONS(3345), + [anon_sym_class] = ACTIONS(3345), + [anon_sym_async] = ACTIONS(3345), + [anon_sym_function] = ACTIONS(3345), + [anon_sym_new] = ACTIONS(3345), + [anon_sym_using] = ACTIONS(3345), + [anon_sym_PLUS] = ACTIONS(3345), + [anon_sym_DASH] = ACTIONS(3345), + [anon_sym_SLASH] = ACTIONS(3345), + [anon_sym_LT] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3345), + [anon_sym_void] = ACTIONS(3345), + [anon_sym_delete] = ACTIONS(3345), + [anon_sym_PLUS_PLUS] = ACTIONS(3345), + [anon_sym_DASH_DASH] = ACTIONS(3345), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3363), - [sym_number] = ACTIONS(3363), - [sym_private_property_identifier] = ACTIONS(3363), - [sym_this] = ACTIONS(3363), - [sym_super] = ACTIONS(3363), - [sym_true] = ACTIONS(3363), - [sym_false] = ACTIONS(3363), - [sym_null] = ACTIONS(3363), - [sym_undefined] = ACTIONS(3363), - [anon_sym_AT] = ACTIONS(3363), - [anon_sym_static] = ACTIONS(3363), - [anon_sym_readonly] = ACTIONS(3363), - [anon_sym_get] = ACTIONS(3363), - [anon_sym_set] = ACTIONS(3363), - [anon_sym_declare] = ACTIONS(3363), - [anon_sym_public] = ACTIONS(3363), - [anon_sym_private] = ACTIONS(3363), - [anon_sym_protected] = ACTIONS(3363), - [anon_sym_override] = ACTIONS(3363), - [anon_sym_module] = ACTIONS(3363), - [anon_sym_any] = ACTIONS(3363), - [anon_sym_number] = ACTIONS(3363), - [anon_sym_boolean] = ACTIONS(3363), - [anon_sym_string] = ACTIONS(3363), - [anon_sym_symbol] = ACTIONS(3363), - [anon_sym_object] = ACTIONS(3363), - [anon_sym_abstract] = ACTIONS(3363), - [anon_sym_interface] = ACTIONS(3363), - [anon_sym_enum] = ACTIONS(3363), + [anon_sym_BQUOTE] = ACTIONS(3345), + [sym_number] = ACTIONS(3345), + [sym_private_property_identifier] = ACTIONS(3345), + [sym_this] = ACTIONS(3345), + [sym_super] = ACTIONS(3345), + [sym_true] = ACTIONS(3345), + [sym_false] = ACTIONS(3345), + [sym_null] = ACTIONS(3345), + [sym_undefined] = ACTIONS(3345), + [anon_sym_AT] = ACTIONS(3345), + [anon_sym_static] = ACTIONS(3345), + [anon_sym_readonly] = ACTIONS(3345), + [anon_sym_get] = ACTIONS(3345), + [anon_sym_set] = ACTIONS(3345), + [anon_sym_declare] = ACTIONS(3345), + [anon_sym_public] = ACTIONS(3345), + [anon_sym_private] = ACTIONS(3345), + [anon_sym_protected] = ACTIONS(3345), + [anon_sym_override] = ACTIONS(3345), + [anon_sym_module] = ACTIONS(3345), + [anon_sym_any] = ACTIONS(3345), + [anon_sym_number] = ACTIONS(3345), + [anon_sym_boolean] = ACTIONS(3345), + [anon_sym_string] = ACTIONS(3345), + [anon_sym_symbol] = ACTIONS(3345), + [anon_sym_object] = ACTIONS(3345), + [anon_sym_abstract] = ACTIONS(3345), + [anon_sym_interface] = ACTIONS(3345), + [anon_sym_enum] = ACTIONS(3345), [sym_html_comment] = ACTIONS(5), }, - [1298] = { - [sym_comment] = STATE(1298), - [sym_identifier] = ACTIONS(3353), - [anon_sym_export] = ACTIONS(3353), - [anon_sym_default] = ACTIONS(3353), - [anon_sym_type] = ACTIONS(3353), - [anon_sym_namespace] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_RBRACE] = ACTIONS(3353), - [anon_sym_typeof] = ACTIONS(3353), - [anon_sym_import] = ACTIONS(3353), - [anon_sym_with] = ACTIONS(3353), - [anon_sym_var] = ACTIONS(3353), - [anon_sym_let] = ACTIONS(3353), - [anon_sym_const] = ACTIONS(3353), - [anon_sym_BANG] = ACTIONS(3353), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_switch] = ACTIONS(3353), - [anon_sym_for] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_await] = ACTIONS(3353), - [anon_sym_while] = ACTIONS(3353), - [anon_sym_do] = ACTIONS(3353), - [anon_sym_try] = ACTIONS(3353), - [anon_sym_break] = ACTIONS(3353), - [anon_sym_continue] = ACTIONS(3353), - [anon_sym_debugger] = ACTIONS(3353), - [anon_sym_return] = ACTIONS(3353), - [anon_sym_throw] = ACTIONS(3353), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_case] = ACTIONS(3353), - [anon_sym_yield] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_LTtemplate_GT] = ACTIONS(3353), - [anon_sym_DQUOTE] = ACTIONS(3353), - [anon_sym_SQUOTE] = ACTIONS(3353), - [anon_sym_class] = ACTIONS(3353), - [anon_sym_async] = ACTIONS(3353), - [anon_sym_function] = ACTIONS(3353), - [anon_sym_new] = ACTIONS(3353), - [anon_sym_using] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_SLASH] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3353), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_void] = ACTIONS(3353), - [anon_sym_delete] = ACTIONS(3353), - [anon_sym_PLUS_PLUS] = ACTIONS(3353), - [anon_sym_DASH_DASH] = ACTIONS(3353), + [1281] = { + [sym_comment] = STATE(1281), + [ts_builtin_sym_end] = ACTIONS(3511), + [sym_identifier] = ACTIONS(3377), + [anon_sym_export] = ACTIONS(3377), + [anon_sym_type] = ACTIONS(3377), + [anon_sym_namespace] = ACTIONS(3377), + [anon_sym_LBRACE] = ACTIONS(3377), + [anon_sym_RBRACE] = ACTIONS(3377), + [anon_sym_typeof] = ACTIONS(3377), + [anon_sym_import] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3377), + [anon_sym_var] = ACTIONS(3377), + [anon_sym_let] = ACTIONS(3377), + [anon_sym_const] = ACTIONS(3377), + [anon_sym_BANG] = ACTIONS(3377), + [anon_sym_else] = ACTIONS(3377), + [anon_sym_if] = ACTIONS(3377), + [anon_sym_switch] = ACTIONS(3377), + [anon_sym_for] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3377), + [anon_sym_await] = ACTIONS(3377), + [anon_sym_while] = ACTIONS(3377), + [anon_sym_do] = ACTIONS(3377), + [anon_sym_try] = ACTIONS(3377), + [anon_sym_break] = ACTIONS(3377), + [anon_sym_continue] = ACTIONS(3377), + [anon_sym_debugger] = ACTIONS(3377), + [anon_sym_return] = ACTIONS(3377), + [anon_sym_throw] = ACTIONS(3377), + [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_yield] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3377), + [anon_sym_LTtemplate_GT] = ACTIONS(3377), + [anon_sym_DQUOTE] = ACTIONS(3377), + [anon_sym_SQUOTE] = ACTIONS(3377), + [anon_sym_class] = ACTIONS(3377), + [anon_sym_async] = ACTIONS(3377), + [anon_sym_function] = ACTIONS(3377), + [anon_sym_new] = ACTIONS(3377), + [anon_sym_using] = ACTIONS(3377), + [anon_sym_PLUS] = ACTIONS(3377), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_SLASH] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_void] = ACTIONS(3377), + [anon_sym_delete] = ACTIONS(3377), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3353), - [sym_number] = ACTIONS(3353), - [sym_private_property_identifier] = ACTIONS(3353), - [sym_this] = ACTIONS(3353), - [sym_super] = ACTIONS(3353), - [sym_true] = ACTIONS(3353), - [sym_false] = ACTIONS(3353), - [sym_null] = ACTIONS(3353), - [sym_undefined] = ACTIONS(3353), - [anon_sym_AT] = ACTIONS(3353), - [anon_sym_static] = ACTIONS(3353), - [anon_sym_readonly] = ACTIONS(3353), - [anon_sym_get] = ACTIONS(3353), - [anon_sym_set] = ACTIONS(3353), - [anon_sym_declare] = ACTIONS(3353), - [anon_sym_public] = ACTIONS(3353), - [anon_sym_private] = ACTIONS(3353), - [anon_sym_protected] = ACTIONS(3353), - [anon_sym_override] = ACTIONS(3353), - [anon_sym_module] = ACTIONS(3353), - [anon_sym_any] = ACTIONS(3353), - [anon_sym_number] = ACTIONS(3353), - [anon_sym_boolean] = ACTIONS(3353), - [anon_sym_string] = ACTIONS(3353), - [anon_sym_symbol] = ACTIONS(3353), - [anon_sym_object] = ACTIONS(3353), - [anon_sym_abstract] = ACTIONS(3353), - [anon_sym_interface] = ACTIONS(3353), - [anon_sym_enum] = ACTIONS(3353), + [anon_sym_BQUOTE] = ACTIONS(3377), + [sym_number] = ACTIONS(3377), + [sym_private_property_identifier] = ACTIONS(3377), + [sym_this] = ACTIONS(3377), + [sym_super] = ACTIONS(3377), + [sym_true] = ACTIONS(3377), + [sym_false] = ACTIONS(3377), + [sym_null] = ACTIONS(3377), + [sym_undefined] = ACTIONS(3377), + [anon_sym_AT] = ACTIONS(3377), + [anon_sym_static] = ACTIONS(3377), + [anon_sym_readonly] = ACTIONS(3377), + [anon_sym_get] = ACTIONS(3377), + [anon_sym_set] = ACTIONS(3377), + [anon_sym_declare] = ACTIONS(3377), + [anon_sym_public] = ACTIONS(3377), + [anon_sym_private] = ACTIONS(3377), + [anon_sym_protected] = ACTIONS(3377), + [anon_sym_override] = ACTIONS(3377), + [anon_sym_module] = ACTIONS(3377), + [anon_sym_any] = ACTIONS(3377), + [anon_sym_number] = ACTIONS(3377), + [anon_sym_boolean] = ACTIONS(3377), + [anon_sym_string] = ACTIONS(3377), + [anon_sym_symbol] = ACTIONS(3377), + [anon_sym_object] = ACTIONS(3377), + [anon_sym_abstract] = ACTIONS(3377), + [anon_sym_interface] = ACTIONS(3377), + [anon_sym_enum] = ACTIONS(3377), [sym_html_comment] = ACTIONS(5), }, - [1299] = { - [sym_comment] = STATE(1299), - [ts_builtin_sym_end] = ACTIONS(3493), + [1282] = { + [sym_comment] = STATE(1282), + [sym_identifier] = ACTIONS(3331), + [anon_sym_export] = ACTIONS(3331), + [anon_sym_default] = ACTIONS(3331), + [anon_sym_type] = ACTIONS(3331), + [anon_sym_namespace] = ACTIONS(3331), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_RBRACE] = ACTIONS(3331), + [anon_sym_typeof] = ACTIONS(3331), + [anon_sym_import] = ACTIONS(3331), + [anon_sym_with] = ACTIONS(3331), + [anon_sym_var] = ACTIONS(3331), + [anon_sym_let] = ACTIONS(3331), + [anon_sym_const] = ACTIONS(3331), + [anon_sym_BANG] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3331), + [anon_sym_await] = ACTIONS(3331), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_do] = ACTIONS(3331), + [anon_sym_try] = ACTIONS(3331), + [anon_sym_break] = ACTIONS(3331), + [anon_sym_continue] = ACTIONS(3331), + [anon_sym_debugger] = ACTIONS(3331), + [anon_sym_return] = ACTIONS(3331), + [anon_sym_throw] = ACTIONS(3331), + [anon_sym_SEMI] = ACTIONS(3331), + [anon_sym_case] = ACTIONS(3331), + [anon_sym_yield] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3331), + [anon_sym_LTtemplate_GT] = ACTIONS(3331), + [anon_sym_DQUOTE] = ACTIONS(3331), + [anon_sym_SQUOTE] = ACTIONS(3331), + [anon_sym_class] = ACTIONS(3331), + [anon_sym_async] = ACTIONS(3331), + [anon_sym_function] = ACTIONS(3331), + [anon_sym_new] = ACTIONS(3331), + [anon_sym_using] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_SLASH] = ACTIONS(3331), + [anon_sym_LT] = ACTIONS(3331), + [anon_sym_TILDE] = ACTIONS(3331), + [anon_sym_void] = ACTIONS(3331), + [anon_sym_delete] = ACTIONS(3331), + [anon_sym_PLUS_PLUS] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3331), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3331), + [sym_number] = ACTIONS(3331), + [sym_private_property_identifier] = ACTIONS(3331), + [sym_this] = ACTIONS(3331), + [sym_super] = ACTIONS(3331), + [sym_true] = ACTIONS(3331), + [sym_false] = ACTIONS(3331), + [sym_null] = ACTIONS(3331), + [sym_undefined] = ACTIONS(3331), + [anon_sym_AT] = ACTIONS(3331), + [anon_sym_static] = ACTIONS(3331), + [anon_sym_readonly] = ACTIONS(3331), + [anon_sym_get] = ACTIONS(3331), + [anon_sym_set] = ACTIONS(3331), + [anon_sym_declare] = ACTIONS(3331), + [anon_sym_public] = ACTIONS(3331), + [anon_sym_private] = ACTIONS(3331), + [anon_sym_protected] = ACTIONS(3331), + [anon_sym_override] = ACTIONS(3331), + [anon_sym_module] = ACTIONS(3331), + [anon_sym_any] = ACTIONS(3331), + [anon_sym_number] = ACTIONS(3331), + [anon_sym_boolean] = ACTIONS(3331), + [anon_sym_string] = ACTIONS(3331), + [anon_sym_symbol] = ACTIONS(3331), + [anon_sym_object] = ACTIONS(3331), + [anon_sym_abstract] = ACTIONS(3331), + [anon_sym_interface] = ACTIONS(3331), + [anon_sym_enum] = ACTIONS(3331), + [sym_html_comment] = ACTIONS(5), + }, + [1283] = { + [sym_comment] = STATE(1283), + [ts_builtin_sym_end] = ACTIONS(3513), [sym_identifier] = ACTIONS(3361), [anon_sym_export] = ACTIONS(3361), [anon_sym_type] = ACTIONS(3361), @@ -169168,583 +167537,993 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3361), [sym_html_comment] = ACTIONS(5), }, - [1300] = { - [sym_comment] = STATE(1300), - [ts_builtin_sym_end] = ACTIONS(3495), - [sym_identifier] = ACTIONS(3357), - [anon_sym_export] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_namespace] = ACTIONS(3357), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_typeof] = ACTIONS(3357), - [anon_sym_import] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_var] = ACTIONS(3357), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_const] = ACTIONS(3357), - [anon_sym_BANG] = ACTIONS(3357), - [anon_sym_else] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_switch] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_await] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_try] = ACTIONS(3357), - [anon_sym_break] = ACTIONS(3357), - [anon_sym_continue] = ACTIONS(3357), - [anon_sym_debugger] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_throw] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_yield] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_LTtemplate_GT] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_function] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_using] = ACTIONS(3357), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_void] = ACTIONS(3357), - [anon_sym_delete] = ACTIONS(3357), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3357), - [sym_number] = ACTIONS(3357), - [sym_private_property_identifier] = ACTIONS(3357), - [sym_this] = ACTIONS(3357), - [sym_super] = ACTIONS(3357), - [sym_true] = ACTIONS(3357), - [sym_false] = ACTIONS(3357), - [sym_null] = ACTIONS(3357), - [sym_undefined] = ACTIONS(3357), - [anon_sym_AT] = ACTIONS(3357), - [anon_sym_static] = ACTIONS(3357), - [anon_sym_readonly] = ACTIONS(3357), - [anon_sym_get] = ACTIONS(3357), - [anon_sym_set] = ACTIONS(3357), - [anon_sym_declare] = ACTIONS(3357), - [anon_sym_public] = ACTIONS(3357), - [anon_sym_private] = ACTIONS(3357), - [anon_sym_protected] = ACTIONS(3357), - [anon_sym_override] = ACTIONS(3357), - [anon_sym_module] = ACTIONS(3357), - [anon_sym_any] = ACTIONS(3357), - [anon_sym_number] = ACTIONS(3357), - [anon_sym_boolean] = ACTIONS(3357), - [anon_sym_string] = ACTIONS(3357), - [anon_sym_symbol] = ACTIONS(3357), - [anon_sym_object] = ACTIONS(3357), - [anon_sym_abstract] = ACTIONS(3357), - [anon_sym_interface] = ACTIONS(3357), - [anon_sym_enum] = ACTIONS(3357), - [sym_html_comment] = ACTIONS(5), - }, - [1301] = { - [sym_comment] = STATE(1301), - [sym_identifier] = ACTIONS(3355), - [anon_sym_export] = ACTIONS(3355), - [anon_sym_default] = ACTIONS(3355), - [anon_sym_type] = ACTIONS(3355), - [anon_sym_namespace] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_typeof] = ACTIONS(3355), - [anon_sym_import] = ACTIONS(3355), - [anon_sym_with] = ACTIONS(3355), - [anon_sym_var] = ACTIONS(3355), - [anon_sym_let] = ACTIONS(3355), - [anon_sym_const] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_switch] = ACTIONS(3355), - [anon_sym_for] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_await] = ACTIONS(3355), - [anon_sym_while] = ACTIONS(3355), - [anon_sym_do] = ACTIONS(3355), - [anon_sym_try] = ACTIONS(3355), - [anon_sym_break] = ACTIONS(3355), - [anon_sym_continue] = ACTIONS(3355), - [anon_sym_debugger] = ACTIONS(3355), - [anon_sym_return] = ACTIONS(3355), - [anon_sym_throw] = ACTIONS(3355), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_case] = ACTIONS(3355), - [anon_sym_yield] = ACTIONS(3355), - [anon_sym_LBRACK] = ACTIONS(3355), - [anon_sym_LTtemplate_GT] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(3355), - [anon_sym_SQUOTE] = ACTIONS(3355), - [anon_sym_class] = ACTIONS(3355), - [anon_sym_async] = ACTIONS(3355), - [anon_sym_function] = ACTIONS(3355), - [anon_sym_new] = ACTIONS(3355), - [anon_sym_using] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3355), - [anon_sym_void] = ACTIONS(3355), - [anon_sym_delete] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3355), - [anon_sym_DASH_DASH] = ACTIONS(3355), + [1284] = { + [sym_comment] = STATE(1284), + [sym_identifier] = ACTIONS(3327), + [anon_sym_export] = ACTIONS(3327), + [anon_sym_default] = ACTIONS(3327), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_namespace] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(3327), + [anon_sym_RBRACE] = ACTIONS(3327), + [anon_sym_typeof] = ACTIONS(3327), + [anon_sym_import] = ACTIONS(3327), + [anon_sym_with] = ACTIONS(3327), + [anon_sym_var] = ACTIONS(3327), + [anon_sym_let] = ACTIONS(3327), + [anon_sym_const] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_switch] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_await] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_do] = ACTIONS(3327), + [anon_sym_try] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_debugger] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_throw] = ACTIONS(3327), + [anon_sym_SEMI] = ACTIONS(3327), + [anon_sym_case] = ACTIONS(3327), + [anon_sym_yield] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3327), + [anon_sym_LTtemplate_GT] = ACTIONS(3327), + [anon_sym_DQUOTE] = ACTIONS(3327), + [anon_sym_SQUOTE] = ACTIONS(3327), + [anon_sym_class] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_function] = ACTIONS(3327), + [anon_sym_new] = ACTIONS(3327), + [anon_sym_using] = ACTIONS(3327), + [anon_sym_PLUS] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_SLASH] = ACTIONS(3327), + [anon_sym_LT] = ACTIONS(3327), + [anon_sym_TILDE] = ACTIONS(3327), + [anon_sym_void] = ACTIONS(3327), + [anon_sym_delete] = ACTIONS(3327), + [anon_sym_PLUS_PLUS] = ACTIONS(3327), + [anon_sym_DASH_DASH] = ACTIONS(3327), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3355), - [sym_number] = ACTIONS(3355), - [sym_private_property_identifier] = ACTIONS(3355), - [sym_this] = ACTIONS(3355), - [sym_super] = ACTIONS(3355), - [sym_true] = ACTIONS(3355), - [sym_false] = ACTIONS(3355), - [sym_null] = ACTIONS(3355), - [sym_undefined] = ACTIONS(3355), - [anon_sym_AT] = ACTIONS(3355), - [anon_sym_static] = ACTIONS(3355), - [anon_sym_readonly] = ACTIONS(3355), - [anon_sym_get] = ACTIONS(3355), - [anon_sym_set] = ACTIONS(3355), - [anon_sym_declare] = ACTIONS(3355), - [anon_sym_public] = ACTIONS(3355), - [anon_sym_private] = ACTIONS(3355), - [anon_sym_protected] = ACTIONS(3355), - [anon_sym_override] = ACTIONS(3355), - [anon_sym_module] = ACTIONS(3355), - [anon_sym_any] = ACTIONS(3355), - [anon_sym_number] = ACTIONS(3355), - [anon_sym_boolean] = ACTIONS(3355), - [anon_sym_string] = ACTIONS(3355), - [anon_sym_symbol] = ACTIONS(3355), - [anon_sym_object] = ACTIONS(3355), - [anon_sym_abstract] = ACTIONS(3355), - [anon_sym_interface] = ACTIONS(3355), - [anon_sym_enum] = ACTIONS(3355), + [anon_sym_BQUOTE] = ACTIONS(3327), + [sym_number] = ACTIONS(3327), + [sym_private_property_identifier] = ACTIONS(3327), + [sym_this] = ACTIONS(3327), + [sym_super] = ACTIONS(3327), + [sym_true] = ACTIONS(3327), + [sym_false] = ACTIONS(3327), + [sym_null] = ACTIONS(3327), + [sym_undefined] = ACTIONS(3327), + [anon_sym_AT] = ACTIONS(3327), + [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_abstract] = ACTIONS(3327), + [anon_sym_interface] = ACTIONS(3327), + [anon_sym_enum] = ACTIONS(3327), [sym_html_comment] = ACTIONS(5), }, - [1302] = { - [sym_comment] = STATE(1302), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1285] = { + [sym_comment] = STATE(1285), + [sym_identifier] = ACTIONS(3343), + [anon_sym_export] = ACTIONS(3343), + [anon_sym_default] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3343), + [anon_sym_LBRACE] = ACTIONS(3343), + [anon_sym_RBRACE] = ACTIONS(3343), + [anon_sym_typeof] = ACTIONS(3343), + [anon_sym_import] = ACTIONS(3343), + [anon_sym_with] = ACTIONS(3343), + [anon_sym_var] = ACTIONS(3343), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_const] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_switch] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_LPAREN] = ACTIONS(3343), + [anon_sym_await] = ACTIONS(3343), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_do] = ACTIONS(3343), + [anon_sym_try] = ACTIONS(3343), + [anon_sym_break] = ACTIONS(3343), + [anon_sym_continue] = ACTIONS(3343), + [anon_sym_debugger] = ACTIONS(3343), + [anon_sym_return] = ACTIONS(3343), + [anon_sym_throw] = ACTIONS(3343), + [anon_sym_SEMI] = ACTIONS(3343), + [anon_sym_case] = ACTIONS(3343), + [anon_sym_yield] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3343), + [anon_sym_LTtemplate_GT] = ACTIONS(3343), + [anon_sym_DQUOTE] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(3343), + [anon_sym_class] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_function] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3343), + [anon_sym_using] = ACTIONS(3343), + [anon_sym_PLUS] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3343), + [anon_sym_SLASH] = ACTIONS(3343), + [anon_sym_LT] = ACTIONS(3343), + [anon_sym_TILDE] = ACTIONS(3343), + [anon_sym_void] = ACTIONS(3343), + [anon_sym_delete] = ACTIONS(3343), + [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3343), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3343), + [sym_number] = ACTIONS(3343), + [sym_private_property_identifier] = ACTIONS(3343), + [sym_this] = ACTIONS(3343), + [sym_super] = ACTIONS(3343), + [sym_true] = ACTIONS(3343), + [sym_false] = ACTIONS(3343), + [sym_null] = ACTIONS(3343), + [sym_undefined] = ACTIONS(3343), + [anon_sym_AT] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3343), + [anon_sym_get] = ACTIONS(3343), + [anon_sym_set] = ACTIONS(3343), + [anon_sym_declare] = ACTIONS(3343), + [anon_sym_public] = ACTIONS(3343), + [anon_sym_private] = ACTIONS(3343), + [anon_sym_protected] = ACTIONS(3343), + [anon_sym_override] = ACTIONS(3343), + [anon_sym_module] = ACTIONS(3343), + [anon_sym_any] = ACTIONS(3343), + [anon_sym_number] = ACTIONS(3343), + [anon_sym_boolean] = ACTIONS(3343), + [anon_sym_string] = ACTIONS(3343), + [anon_sym_symbol] = ACTIONS(3343), + [anon_sym_object] = ACTIONS(3343), + [anon_sym_abstract] = ACTIONS(3343), + [anon_sym_interface] = ACTIONS(3343), + [anon_sym_enum] = ACTIONS(3343), [sym_html_comment] = ACTIONS(5), }, - [1303] = { - [sym_comment] = STATE(1303), - [ts_builtin_sym_end] = ACTIONS(3497), - [sym_identifier] = ACTIONS(3329), - [anon_sym_export] = ACTIONS(3329), - [anon_sym_type] = ACTIONS(3329), - [anon_sym_namespace] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_typeof] = ACTIONS(3329), - [anon_sym_import] = ACTIONS(3329), - [anon_sym_with] = ACTIONS(3329), - [anon_sym_var] = ACTIONS(3329), - [anon_sym_let] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_else] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3329), - [anon_sym_switch] = ACTIONS(3329), - [anon_sym_for] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_await] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3329), - [anon_sym_do] = ACTIONS(3329), - [anon_sym_try] = ACTIONS(3329), - [anon_sym_break] = ACTIONS(3329), - [anon_sym_continue] = ACTIONS(3329), - [anon_sym_debugger] = ACTIONS(3329), - [anon_sym_return] = ACTIONS(3329), - [anon_sym_throw] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_yield] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_LTtemplate_GT] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(3329), - [anon_sym_SQUOTE] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_async] = ACTIONS(3329), - [anon_sym_function] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_SLASH] = ACTIONS(3329), - [anon_sym_LT] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_void] = ACTIONS(3329), - [anon_sym_delete] = ACTIONS(3329), - [anon_sym_PLUS_PLUS] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3329), + [1286] = { + [sym_comment] = STATE(1286), + [ts_builtin_sym_end] = ACTIONS(3515), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3329), - [sym_number] = ACTIONS(3329), - [sym_private_property_identifier] = ACTIONS(3329), - [sym_this] = ACTIONS(3329), - [sym_super] = ACTIONS(3329), - [sym_true] = ACTIONS(3329), - [sym_false] = ACTIONS(3329), - [sym_null] = ACTIONS(3329), - [sym_undefined] = ACTIONS(3329), - [anon_sym_AT] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_readonly] = ACTIONS(3329), - [anon_sym_get] = ACTIONS(3329), - [anon_sym_set] = ACTIONS(3329), - [anon_sym_declare] = ACTIONS(3329), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_protected] = ACTIONS(3329), - [anon_sym_override] = ACTIONS(3329), - [anon_sym_module] = ACTIONS(3329), - [anon_sym_any] = ACTIONS(3329), - [anon_sym_number] = ACTIONS(3329), - [anon_sym_boolean] = ACTIONS(3329), - [anon_sym_string] = ACTIONS(3329), - [anon_sym_symbol] = ACTIONS(3329), - [anon_sym_object] = ACTIONS(3329), - [anon_sym_abstract] = ACTIONS(3329), - [anon_sym_interface] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1304] = { - [sym_comment] = STATE(1304), - [ts_builtin_sym_end] = ACTIONS(3499), - [sym_identifier] = ACTIONS(3225), - [anon_sym_export] = ACTIONS(3225), - [anon_sym_type] = ACTIONS(3225), - [anon_sym_namespace] = ACTIONS(3225), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_typeof] = ACTIONS(3225), - [anon_sym_import] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(3225), - [anon_sym_var] = ACTIONS(3225), - [anon_sym_let] = ACTIONS(3225), - [anon_sym_const] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3225), - [anon_sym_else] = ACTIONS(3225), - [anon_sym_if] = ACTIONS(3225), - [anon_sym_switch] = ACTIONS(3225), - [anon_sym_for] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_await] = ACTIONS(3225), - [anon_sym_while] = ACTIONS(3225), - [anon_sym_do] = ACTIONS(3225), - [anon_sym_try] = ACTIONS(3225), - [anon_sym_break] = ACTIONS(3225), - [anon_sym_continue] = ACTIONS(3225), - [anon_sym_debugger] = ACTIONS(3225), - [anon_sym_return] = ACTIONS(3225), - [anon_sym_throw] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym_yield] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_LTtemplate_GT] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3225), - [anon_sym_class] = ACTIONS(3225), - [anon_sym_async] = ACTIONS(3225), - [anon_sym_function] = ACTIONS(3225), - [anon_sym_new] = ACTIONS(3225), - [anon_sym_using] = ACTIONS(3225), - [anon_sym_PLUS] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3225), - [anon_sym_SLASH] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3225), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_void] = ACTIONS(3225), - [anon_sym_delete] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), + [1287] = { + [sym_comment] = STATE(1287), + [ts_builtin_sym_end] = ACTIONS(3515), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_else] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3225), - [sym_number] = ACTIONS(3225), - [sym_private_property_identifier] = ACTIONS(3225), - [sym_this] = ACTIONS(3225), - [sym_super] = ACTIONS(3225), - [sym_true] = ACTIONS(3225), - [sym_false] = ACTIONS(3225), - [sym_null] = ACTIONS(3225), - [sym_undefined] = ACTIONS(3225), - [anon_sym_AT] = ACTIONS(3225), - [anon_sym_static] = ACTIONS(3225), - [anon_sym_readonly] = ACTIONS(3225), - [anon_sym_get] = ACTIONS(3225), - [anon_sym_set] = ACTIONS(3225), - [anon_sym_declare] = ACTIONS(3225), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_protected] = ACTIONS(3225), - [anon_sym_override] = ACTIONS(3225), - [anon_sym_module] = ACTIONS(3225), - [anon_sym_any] = ACTIONS(3225), - [anon_sym_number] = ACTIONS(3225), - [anon_sym_boolean] = ACTIONS(3225), - [anon_sym_string] = ACTIONS(3225), - [anon_sym_symbol] = ACTIONS(3225), - [anon_sym_object] = ACTIONS(3225), - [anon_sym_abstract] = ACTIONS(3225), - [anon_sym_interface] = ACTIONS(3225), - [anon_sym_enum] = ACTIONS(3225), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1305] = { - [sym_comment] = STATE(1305), - [sym_identifier] = ACTIONS(3357), - [anon_sym_export] = ACTIONS(3357), - [anon_sym_default] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_namespace] = ACTIONS(3357), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_typeof] = ACTIONS(3357), - [anon_sym_import] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_var] = ACTIONS(3357), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_const] = ACTIONS(3357), - [anon_sym_BANG] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_switch] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_await] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_try] = ACTIONS(3357), - [anon_sym_break] = ACTIONS(3357), - [anon_sym_continue] = ACTIONS(3357), - [anon_sym_debugger] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_throw] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_case] = ACTIONS(3357), - [anon_sym_yield] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_LTtemplate_GT] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_function] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_using] = ACTIONS(3357), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_void] = ACTIONS(3357), - [anon_sym_delete] = ACTIONS(3357), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), + [1288] = { + [sym_comment] = STATE(1288), + [ts_builtin_sym_end] = ACTIONS(3517), + [sym_identifier] = ACTIONS(3293), + [anon_sym_export] = ACTIONS(3293), + [anon_sym_type] = ACTIONS(3293), + [anon_sym_namespace] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_typeof] = ACTIONS(3293), + [anon_sym_import] = ACTIONS(3293), + [anon_sym_with] = ACTIONS(3293), + [anon_sym_var] = ACTIONS(3293), + [anon_sym_let] = ACTIONS(3293), + [anon_sym_const] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_else] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_switch] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_await] = ACTIONS(3293), + [anon_sym_while] = ACTIONS(3293), + [anon_sym_do] = ACTIONS(3293), + [anon_sym_try] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_debugger] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_throw] = ACTIONS(3293), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_LTtemplate_GT] = ACTIONS(3293), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_SQUOTE] = ACTIONS(3293), + [anon_sym_class] = ACTIONS(3293), + [anon_sym_async] = ACTIONS(3293), + [anon_sym_function] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3293), + [anon_sym_using] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_SLASH] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_void] = ACTIONS(3293), + [anon_sym_delete] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3357), - [sym_number] = ACTIONS(3357), - [sym_private_property_identifier] = ACTIONS(3357), - [sym_this] = ACTIONS(3357), - [sym_super] = ACTIONS(3357), - [sym_true] = ACTIONS(3357), - [sym_false] = ACTIONS(3357), - [sym_null] = ACTIONS(3357), - [sym_undefined] = ACTIONS(3357), - [anon_sym_AT] = ACTIONS(3357), - [anon_sym_static] = ACTIONS(3357), - [anon_sym_readonly] = ACTIONS(3357), - [anon_sym_get] = ACTIONS(3357), - [anon_sym_set] = ACTIONS(3357), - [anon_sym_declare] = ACTIONS(3357), - [anon_sym_public] = ACTIONS(3357), - [anon_sym_private] = ACTIONS(3357), - [anon_sym_protected] = ACTIONS(3357), - [anon_sym_override] = ACTIONS(3357), - [anon_sym_module] = ACTIONS(3357), - [anon_sym_any] = ACTIONS(3357), - [anon_sym_number] = ACTIONS(3357), - [anon_sym_boolean] = ACTIONS(3357), - [anon_sym_string] = ACTIONS(3357), - [anon_sym_symbol] = ACTIONS(3357), - [anon_sym_object] = ACTIONS(3357), - [anon_sym_abstract] = ACTIONS(3357), - [anon_sym_interface] = ACTIONS(3357), - [anon_sym_enum] = ACTIONS(3357), + [anon_sym_BQUOTE] = ACTIONS(3293), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [sym_this] = ACTIONS(3293), + [sym_super] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_null] = ACTIONS(3293), + [sym_undefined] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(3293), + [anon_sym_static] = ACTIONS(3293), + [anon_sym_readonly] = ACTIONS(3293), + [anon_sym_get] = ACTIONS(3293), + [anon_sym_set] = ACTIONS(3293), + [anon_sym_declare] = ACTIONS(3293), + [anon_sym_public] = ACTIONS(3293), + [anon_sym_private] = ACTIONS(3293), + [anon_sym_protected] = ACTIONS(3293), + [anon_sym_override] = ACTIONS(3293), + [anon_sym_module] = ACTIONS(3293), + [anon_sym_any] = ACTIONS(3293), + [anon_sym_number] = ACTIONS(3293), + [anon_sym_boolean] = ACTIONS(3293), + [anon_sym_string] = ACTIONS(3293), + [anon_sym_symbol] = ACTIONS(3293), + [anon_sym_object] = ACTIONS(3293), + [anon_sym_abstract] = ACTIONS(3293), + [anon_sym_interface] = ACTIONS(3293), + [anon_sym_enum] = ACTIONS(3293), [sym_html_comment] = ACTIONS(5), }, - [1306] = { - [sym_comment] = STATE(1306), - [sym_identifier] = ACTIONS(3359), - [anon_sym_export] = ACTIONS(3359), - [anon_sym_default] = ACTIONS(3359), - [anon_sym_type] = ACTIONS(3359), - [anon_sym_namespace] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_typeof] = ACTIONS(3359), - [anon_sym_import] = ACTIONS(3359), - [anon_sym_with] = ACTIONS(3359), - [anon_sym_var] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_const] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_switch] = ACTIONS(3359), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_await] = ACTIONS(3359), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_break] = ACTIONS(3359), - [anon_sym_continue] = ACTIONS(3359), - [anon_sym_debugger] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_throw] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_case] = ACTIONS(3359), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LTtemplate_GT] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_SQUOTE] = ACTIONS(3359), - [anon_sym_class] = ACTIONS(3359), - [anon_sym_async] = ACTIONS(3359), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_using] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_void] = ACTIONS(3359), - [anon_sym_delete] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3359), - [anon_sym_DASH_DASH] = ACTIONS(3359), + [1289] = { + [sym_comment] = STATE(1289), + [sym_identifier] = ACTIONS(3323), + [anon_sym_export] = ACTIONS(3323), + [anon_sym_default] = ACTIONS(3323), + [anon_sym_type] = ACTIONS(3323), + [anon_sym_namespace] = ACTIONS(3323), + [anon_sym_LBRACE] = ACTIONS(3323), + [anon_sym_RBRACE] = ACTIONS(3323), + [anon_sym_typeof] = ACTIONS(3323), + [anon_sym_import] = ACTIONS(3323), + [anon_sym_with] = ACTIONS(3323), + [anon_sym_var] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3323), + [anon_sym_const] = ACTIONS(3323), + [anon_sym_BANG] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_switch] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_LPAREN] = ACTIONS(3323), + [anon_sym_await] = ACTIONS(3323), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_do] = ACTIONS(3323), + [anon_sym_try] = ACTIONS(3323), + [anon_sym_break] = ACTIONS(3323), + [anon_sym_continue] = ACTIONS(3323), + [anon_sym_debugger] = ACTIONS(3323), + [anon_sym_return] = ACTIONS(3323), + [anon_sym_throw] = ACTIONS(3323), + [anon_sym_SEMI] = ACTIONS(3323), + [anon_sym_case] = ACTIONS(3323), + [anon_sym_yield] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3323), + [anon_sym_LTtemplate_GT] = ACTIONS(3323), + [anon_sym_DQUOTE] = ACTIONS(3323), + [anon_sym_SQUOTE] = ACTIONS(3323), + [anon_sym_class] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_function] = ACTIONS(3323), + [anon_sym_new] = ACTIONS(3323), + [anon_sym_using] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_SLASH] = ACTIONS(3323), + [anon_sym_LT] = ACTIONS(3323), + [anon_sym_TILDE] = ACTIONS(3323), + [anon_sym_void] = ACTIONS(3323), + [anon_sym_delete] = ACTIONS(3323), + [anon_sym_PLUS_PLUS] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(3323), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3359), - [sym_number] = ACTIONS(3359), - [sym_private_property_identifier] = ACTIONS(3359), - [sym_this] = ACTIONS(3359), - [sym_super] = ACTIONS(3359), - [sym_true] = ACTIONS(3359), - [sym_false] = ACTIONS(3359), - [sym_null] = ACTIONS(3359), - [sym_undefined] = ACTIONS(3359), - [anon_sym_AT] = ACTIONS(3359), - [anon_sym_static] = ACTIONS(3359), - [anon_sym_readonly] = ACTIONS(3359), - [anon_sym_get] = ACTIONS(3359), - [anon_sym_set] = ACTIONS(3359), - [anon_sym_declare] = ACTIONS(3359), - [anon_sym_public] = ACTIONS(3359), - [anon_sym_private] = ACTIONS(3359), - [anon_sym_protected] = ACTIONS(3359), - [anon_sym_override] = ACTIONS(3359), - [anon_sym_module] = ACTIONS(3359), - [anon_sym_any] = ACTIONS(3359), - [anon_sym_number] = ACTIONS(3359), - [anon_sym_boolean] = ACTIONS(3359), - [anon_sym_string] = ACTIONS(3359), - [anon_sym_symbol] = ACTIONS(3359), - [anon_sym_object] = ACTIONS(3359), - [anon_sym_abstract] = ACTIONS(3359), - [anon_sym_interface] = ACTIONS(3359), - [anon_sym_enum] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3323), + [sym_number] = ACTIONS(3323), + [sym_private_property_identifier] = ACTIONS(3323), + [sym_this] = ACTIONS(3323), + [sym_super] = ACTIONS(3323), + [sym_true] = ACTIONS(3323), + [sym_false] = ACTIONS(3323), + [sym_null] = ACTIONS(3323), + [sym_undefined] = ACTIONS(3323), + [anon_sym_AT] = ACTIONS(3323), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3323), + [anon_sym_get] = ACTIONS(3323), + [anon_sym_set] = ACTIONS(3323), + [anon_sym_declare] = ACTIONS(3323), + [anon_sym_public] = ACTIONS(3323), + [anon_sym_private] = ACTIONS(3323), + [anon_sym_protected] = ACTIONS(3323), + [anon_sym_override] = ACTIONS(3323), + [anon_sym_module] = ACTIONS(3323), + [anon_sym_any] = ACTIONS(3323), + [anon_sym_number] = ACTIONS(3323), + [anon_sym_boolean] = ACTIONS(3323), + [anon_sym_string] = ACTIONS(3323), + [anon_sym_symbol] = ACTIONS(3323), + [anon_sym_object] = ACTIONS(3323), + [anon_sym_abstract] = ACTIONS(3323), + [anon_sym_interface] = ACTIONS(3323), + [anon_sym_enum] = ACTIONS(3323), [sym_html_comment] = ACTIONS(5), }, - [1307] = { - [sym_comment] = STATE(1307), - [ts_builtin_sym_end] = ACTIONS(3501), + [1290] = { + [sym_comment] = STATE(1290), + [sym_identifier] = ACTIONS(3317), + [anon_sym_export] = ACTIONS(3317), + [anon_sym_default] = ACTIONS(3317), + [anon_sym_type] = ACTIONS(3317), + [anon_sym_namespace] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_typeof] = ACTIONS(3317), + [anon_sym_import] = ACTIONS(3317), + [anon_sym_with] = ACTIONS(3317), + [anon_sym_var] = ACTIONS(3317), + [anon_sym_let] = ACTIONS(3317), + [anon_sym_const] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_switch] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_await] = ACTIONS(3317), + [anon_sym_while] = ACTIONS(3317), + [anon_sym_do] = ACTIONS(3317), + [anon_sym_try] = ACTIONS(3317), + [anon_sym_break] = ACTIONS(3317), + [anon_sym_continue] = ACTIONS(3317), + [anon_sym_debugger] = ACTIONS(3317), + [anon_sym_return] = ACTIONS(3317), + [anon_sym_throw] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_case] = ACTIONS(3317), + [anon_sym_yield] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_LTtemplate_GT] = ACTIONS(3317), + [anon_sym_DQUOTE] = ACTIONS(3317), + [anon_sym_SQUOTE] = ACTIONS(3317), + [anon_sym_class] = ACTIONS(3317), + [anon_sym_async] = ACTIONS(3317), + [anon_sym_function] = ACTIONS(3317), + [anon_sym_new] = ACTIONS(3317), + [anon_sym_using] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_void] = ACTIONS(3317), + [anon_sym_delete] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3317), + [sym_number] = ACTIONS(3317), + [sym_private_property_identifier] = ACTIONS(3317), + [sym_this] = ACTIONS(3317), + [sym_super] = ACTIONS(3317), + [sym_true] = ACTIONS(3317), + [sym_false] = ACTIONS(3317), + [sym_null] = ACTIONS(3317), + [sym_undefined] = ACTIONS(3317), + [anon_sym_AT] = ACTIONS(3317), + [anon_sym_static] = ACTIONS(3317), + [anon_sym_readonly] = ACTIONS(3317), + [anon_sym_get] = ACTIONS(3317), + [anon_sym_set] = ACTIONS(3317), + [anon_sym_declare] = ACTIONS(3317), + [anon_sym_public] = ACTIONS(3317), + [anon_sym_private] = ACTIONS(3317), + [anon_sym_protected] = ACTIONS(3317), + [anon_sym_override] = ACTIONS(3317), + [anon_sym_module] = ACTIONS(3317), + [anon_sym_any] = ACTIONS(3317), + [anon_sym_number] = ACTIONS(3317), + [anon_sym_boolean] = ACTIONS(3317), + [anon_sym_string] = ACTIONS(3317), + [anon_sym_symbol] = ACTIONS(3317), + [anon_sym_object] = ACTIONS(3317), + [anon_sym_abstract] = ACTIONS(3317), + [anon_sym_interface] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3317), + [sym_html_comment] = ACTIONS(5), + }, + [1291] = { + [sym_comment] = STATE(1291), + [sym_identifier] = ACTIONS(3299), + [anon_sym_export] = ACTIONS(3299), + [anon_sym_default] = ACTIONS(3299), + [anon_sym_type] = ACTIONS(3299), + [anon_sym_namespace] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_RBRACE] = ACTIONS(3299), + [anon_sym_typeof] = ACTIONS(3299), + [anon_sym_import] = ACTIONS(3299), + [anon_sym_with] = ACTIONS(3299), + [anon_sym_var] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_const] = ACTIONS(3299), + [anon_sym_BANG] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_switch] = ACTIONS(3299), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_await] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_break] = ACTIONS(3299), + [anon_sym_continue] = ACTIONS(3299), + [anon_sym_debugger] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_throw] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_case] = ACTIONS(3299), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LTtemplate_GT] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_SQUOTE] = ACTIONS(3299), + [anon_sym_class] = ACTIONS(3299), + [anon_sym_async] = ACTIONS(3299), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_using] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_SLASH] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3299), + [anon_sym_void] = ACTIONS(3299), + [anon_sym_delete] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3299), + [sym_number] = ACTIONS(3299), + [sym_private_property_identifier] = ACTIONS(3299), + [sym_this] = ACTIONS(3299), + [sym_super] = ACTIONS(3299), + [sym_true] = ACTIONS(3299), + [sym_false] = ACTIONS(3299), + [sym_null] = ACTIONS(3299), + [sym_undefined] = ACTIONS(3299), + [anon_sym_AT] = ACTIONS(3299), + [anon_sym_static] = ACTIONS(3299), + [anon_sym_readonly] = ACTIONS(3299), + [anon_sym_get] = ACTIONS(3299), + [anon_sym_set] = ACTIONS(3299), + [anon_sym_declare] = ACTIONS(3299), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_private] = ACTIONS(3299), + [anon_sym_protected] = ACTIONS(3299), + [anon_sym_override] = ACTIONS(3299), + [anon_sym_module] = ACTIONS(3299), + [anon_sym_any] = ACTIONS(3299), + [anon_sym_number] = ACTIONS(3299), + [anon_sym_boolean] = ACTIONS(3299), + [anon_sym_string] = ACTIONS(3299), + [anon_sym_symbol] = ACTIONS(3299), + [anon_sym_object] = ACTIONS(3299), + [anon_sym_abstract] = ACTIONS(3299), + [anon_sym_interface] = ACTIONS(3299), + [anon_sym_enum] = ACTIONS(3299), + [sym_html_comment] = ACTIONS(5), + }, + [1292] = { + [sym_comment] = STATE(1292), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3285), + [anon_sym_default] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3285), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_debugger] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_case] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LTtemplate_GT] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_void] = ACTIONS(3285), + [anon_sym_delete] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3285), + [sym_number] = ACTIONS(3285), + [sym_private_property_identifier] = ACTIONS(3285), + [sym_this] = ACTIONS(3285), + [sym_super] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_null] = ACTIONS(3285), + [sym_undefined] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_get] = ACTIONS(3285), + [anon_sym_set] = ACTIONS(3285), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_any] = ACTIONS(3285), + [anon_sym_number] = ACTIONS(3285), + [anon_sym_boolean] = ACTIONS(3285), + [anon_sym_string] = ACTIONS(3285), + [anon_sym_symbol] = ACTIONS(3285), + [anon_sym_object] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), + [sym_html_comment] = ACTIONS(5), + }, + [1293] = { + [sym_comment] = STATE(1293), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3285), + [anon_sym_default] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3285), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_debugger] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_case] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LTtemplate_GT] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_void] = ACTIONS(3285), + [anon_sym_delete] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3285), + [sym_number] = ACTIONS(3285), + [sym_private_property_identifier] = ACTIONS(3285), + [sym_this] = ACTIONS(3285), + [sym_super] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_null] = ACTIONS(3285), + [sym_undefined] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_get] = ACTIONS(3285), + [anon_sym_set] = ACTIONS(3285), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_any] = ACTIONS(3285), + [anon_sym_number] = ACTIONS(3285), + [anon_sym_boolean] = ACTIONS(3285), + [anon_sym_string] = ACTIONS(3285), + [anon_sym_symbol] = ACTIONS(3285), + [anon_sym_object] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), + [sym_html_comment] = ACTIONS(5), + }, + [1294] = { + [sym_comment] = STATE(1294), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3285), + [anon_sym_default] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3285), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_debugger] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_case] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LTtemplate_GT] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_void] = ACTIONS(3285), + [anon_sym_delete] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3285), + [sym_number] = ACTIONS(3285), + [sym_private_property_identifier] = ACTIONS(3285), + [sym_this] = ACTIONS(3285), + [sym_super] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_null] = ACTIONS(3285), + [sym_undefined] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_get] = ACTIONS(3285), + [anon_sym_set] = ACTIONS(3285), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_any] = ACTIONS(3285), + [anon_sym_number] = ACTIONS(3285), + [anon_sym_boolean] = ACTIONS(3285), + [anon_sym_string] = ACTIONS(3285), + [anon_sym_symbol] = ACTIONS(3285), + [anon_sym_object] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), + [sym_html_comment] = ACTIONS(5), + }, + [1295] = { + [sym_comment] = STATE(1295), + [sym_identifier] = ACTIONS(3431), + [anon_sym_export] = ACTIONS(3431), + [anon_sym_default] = ACTIONS(3431), + [anon_sym_type] = ACTIONS(3431), + [anon_sym_namespace] = ACTIONS(3431), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_RBRACE] = ACTIONS(3431), + [anon_sym_typeof] = ACTIONS(3431), + [anon_sym_import] = ACTIONS(3431), + [anon_sym_with] = ACTIONS(3431), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_let] = ACTIONS(3431), + [anon_sym_const] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3431), + [anon_sym_await] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(3431), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_break] = ACTIONS(3431), + [anon_sym_continue] = ACTIONS(3431), + [anon_sym_debugger] = ACTIONS(3431), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_throw] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_case] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3431), + [anon_sym_LTtemplate_GT] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3431), + [anon_sym_class] = ACTIONS(3431), + [anon_sym_async] = ACTIONS(3431), + [anon_sym_function] = ACTIONS(3431), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_using] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3431), + [anon_sym_void] = ACTIONS(3431), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3431), + [anon_sym_DASH_DASH] = ACTIONS(3431), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3431), + [sym_number] = ACTIONS(3431), + [sym_private_property_identifier] = ACTIONS(3431), + [sym_this] = ACTIONS(3431), + [sym_super] = ACTIONS(3431), + [sym_true] = ACTIONS(3431), + [sym_false] = ACTIONS(3431), + [sym_null] = ACTIONS(3431), + [sym_undefined] = ACTIONS(3431), + [anon_sym_AT] = ACTIONS(3431), + [anon_sym_static] = ACTIONS(3431), + [anon_sym_readonly] = ACTIONS(3431), + [anon_sym_get] = ACTIONS(3431), + [anon_sym_set] = ACTIONS(3431), + [anon_sym_declare] = ACTIONS(3431), + [anon_sym_public] = ACTIONS(3431), + [anon_sym_private] = ACTIONS(3431), + [anon_sym_protected] = ACTIONS(3431), + [anon_sym_override] = ACTIONS(3431), + [anon_sym_module] = ACTIONS(3431), + [anon_sym_any] = ACTIONS(3431), + [anon_sym_number] = ACTIONS(3431), + [anon_sym_boolean] = ACTIONS(3431), + [anon_sym_string] = ACTIONS(3431), + [anon_sym_symbol] = ACTIONS(3431), + [anon_sym_object] = ACTIONS(3431), + [anon_sym_abstract] = ACTIONS(3431), + [anon_sym_interface] = ACTIONS(3431), + [anon_sym_enum] = ACTIONS(3431), + [sym_html_comment] = ACTIONS(5), + }, + [1296] = { + [sym_comment] = STATE(1296), + [ts_builtin_sym_end] = ACTIONS(3519), [sym_identifier] = ACTIONS(3331), [anon_sym_export] = ACTIONS(3331), [anon_sym_type] = ACTIONS(3331), @@ -169824,1651 +168603,1733 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3331), [sym_html_comment] = ACTIONS(5), }, - [1308] = { - [sym_comment] = STATE(1308), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1297] = { + [sym_comment] = STATE(1297), + [ts_builtin_sym_end] = ACTIONS(3521), + [sym_identifier] = ACTIONS(3329), + [anon_sym_export] = ACTIONS(3329), + [anon_sym_type] = ACTIONS(3329), + [anon_sym_namespace] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_RBRACE] = ACTIONS(3329), + [anon_sym_typeof] = ACTIONS(3329), + [anon_sym_import] = ACTIONS(3329), + [anon_sym_with] = ACTIONS(3329), + [anon_sym_var] = ACTIONS(3329), + [anon_sym_let] = ACTIONS(3329), + [anon_sym_const] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_else] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_switch] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3329), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_await] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3329), + [anon_sym_do] = ACTIONS(3329), + [anon_sym_try] = ACTIONS(3329), + [anon_sym_break] = ACTIONS(3329), + [anon_sym_continue] = ACTIONS(3329), + [anon_sym_debugger] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3329), + [anon_sym_throw] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_yield] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_LTtemplate_GT] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(3329), + [anon_sym_SQUOTE] = ACTIONS(3329), + [anon_sym_class] = ACTIONS(3329), + [anon_sym_async] = ACTIONS(3329), + [anon_sym_function] = ACTIONS(3329), + [anon_sym_new] = ACTIONS(3329), + [anon_sym_using] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_SLASH] = ACTIONS(3329), + [anon_sym_LT] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_void] = ACTIONS(3329), + [anon_sym_delete] = ACTIONS(3329), + [anon_sym_PLUS_PLUS] = ACTIONS(3329), + [anon_sym_DASH_DASH] = ACTIONS(3329), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3329), + [sym_number] = ACTIONS(3329), + [sym_private_property_identifier] = ACTIONS(3329), + [sym_this] = ACTIONS(3329), + [sym_super] = ACTIONS(3329), + [sym_true] = ACTIONS(3329), + [sym_false] = ACTIONS(3329), + [sym_null] = ACTIONS(3329), + [sym_undefined] = ACTIONS(3329), + [anon_sym_AT] = ACTIONS(3329), + [anon_sym_static] = ACTIONS(3329), + [anon_sym_readonly] = ACTIONS(3329), + [anon_sym_get] = ACTIONS(3329), + [anon_sym_set] = ACTIONS(3329), + [anon_sym_declare] = ACTIONS(3329), + [anon_sym_public] = ACTIONS(3329), + [anon_sym_private] = ACTIONS(3329), + [anon_sym_protected] = ACTIONS(3329), + [anon_sym_override] = ACTIONS(3329), + [anon_sym_module] = ACTIONS(3329), + [anon_sym_any] = ACTIONS(3329), + [anon_sym_number] = ACTIONS(3329), + [anon_sym_boolean] = ACTIONS(3329), + [anon_sym_string] = ACTIONS(3329), + [anon_sym_symbol] = ACTIONS(3329), + [anon_sym_object] = ACTIONS(3329), + [anon_sym_abstract] = ACTIONS(3329), + [anon_sym_interface] = ACTIONS(3329), + [anon_sym_enum] = ACTIONS(3329), [sym_html_comment] = ACTIONS(5), }, - [1309] = { - [sym_comment] = STATE(1309), - [ts_builtin_sym_end] = ACTIONS(3503), - [sym_identifier] = ACTIONS(3353), - [anon_sym_export] = ACTIONS(3353), - [anon_sym_type] = ACTIONS(3353), - [anon_sym_namespace] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_RBRACE] = ACTIONS(3353), - [anon_sym_typeof] = ACTIONS(3353), - [anon_sym_import] = ACTIONS(3353), - [anon_sym_with] = ACTIONS(3353), - [anon_sym_var] = ACTIONS(3353), - [anon_sym_let] = ACTIONS(3353), - [anon_sym_const] = ACTIONS(3353), - [anon_sym_BANG] = ACTIONS(3353), - [anon_sym_else] = ACTIONS(3353), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_switch] = ACTIONS(3353), - [anon_sym_for] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_await] = ACTIONS(3353), - [anon_sym_while] = ACTIONS(3353), - [anon_sym_do] = ACTIONS(3353), - [anon_sym_try] = ACTIONS(3353), - [anon_sym_break] = ACTIONS(3353), - [anon_sym_continue] = ACTIONS(3353), - [anon_sym_debugger] = ACTIONS(3353), - [anon_sym_return] = ACTIONS(3353), - [anon_sym_throw] = ACTIONS(3353), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_yield] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_LTtemplate_GT] = ACTIONS(3353), - [anon_sym_DQUOTE] = ACTIONS(3353), - [anon_sym_SQUOTE] = ACTIONS(3353), - [anon_sym_class] = ACTIONS(3353), - [anon_sym_async] = ACTIONS(3353), - [anon_sym_function] = ACTIONS(3353), - [anon_sym_new] = ACTIONS(3353), - [anon_sym_using] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_SLASH] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3353), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_void] = ACTIONS(3353), - [anon_sym_delete] = ACTIONS(3353), - [anon_sym_PLUS_PLUS] = ACTIONS(3353), - [anon_sym_DASH_DASH] = ACTIONS(3353), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3353), - [sym_number] = ACTIONS(3353), - [sym_private_property_identifier] = ACTIONS(3353), - [sym_this] = ACTIONS(3353), - [sym_super] = ACTIONS(3353), - [sym_true] = ACTIONS(3353), - [sym_false] = ACTIONS(3353), - [sym_null] = ACTIONS(3353), - [sym_undefined] = ACTIONS(3353), - [anon_sym_AT] = ACTIONS(3353), - [anon_sym_static] = ACTIONS(3353), - [anon_sym_readonly] = ACTIONS(3353), - [anon_sym_get] = ACTIONS(3353), - [anon_sym_set] = ACTIONS(3353), - [anon_sym_declare] = ACTIONS(3353), - [anon_sym_public] = ACTIONS(3353), - [anon_sym_private] = ACTIONS(3353), - [anon_sym_protected] = ACTIONS(3353), - [anon_sym_override] = ACTIONS(3353), - [anon_sym_module] = ACTIONS(3353), - [anon_sym_any] = ACTIONS(3353), - [anon_sym_number] = ACTIONS(3353), - [anon_sym_boolean] = ACTIONS(3353), - [anon_sym_string] = ACTIONS(3353), - [anon_sym_symbol] = ACTIONS(3353), - [anon_sym_object] = ACTIONS(3353), - [anon_sym_abstract] = ACTIONS(3353), - [anon_sym_interface] = ACTIONS(3353), - [anon_sym_enum] = ACTIONS(3353), - [sym_html_comment] = ACTIONS(5), - }, - [1310] = { - [sym_comment] = STATE(1310), - [ts_builtin_sym_end] = ACTIONS(3505), - [sym_identifier] = ACTIONS(3349), - [anon_sym_export] = ACTIONS(3349), - [anon_sym_type] = ACTIONS(3349), - [anon_sym_namespace] = ACTIONS(3349), - [anon_sym_LBRACE] = ACTIONS(3349), - [anon_sym_RBRACE] = ACTIONS(3349), - [anon_sym_typeof] = ACTIONS(3349), - [anon_sym_import] = ACTIONS(3349), - [anon_sym_with] = ACTIONS(3349), - [anon_sym_var] = ACTIONS(3349), - [anon_sym_let] = ACTIONS(3349), - [anon_sym_const] = ACTIONS(3349), - [anon_sym_BANG] = ACTIONS(3349), - [anon_sym_else] = ACTIONS(3349), - [anon_sym_if] = ACTIONS(3349), - [anon_sym_switch] = ACTIONS(3349), - [anon_sym_for] = ACTIONS(3349), - [anon_sym_LPAREN] = ACTIONS(3349), - [anon_sym_await] = ACTIONS(3349), - [anon_sym_while] = ACTIONS(3349), - [anon_sym_do] = ACTIONS(3349), - [anon_sym_try] = ACTIONS(3349), - [anon_sym_break] = ACTIONS(3349), - [anon_sym_continue] = ACTIONS(3349), - [anon_sym_debugger] = ACTIONS(3349), - [anon_sym_return] = ACTIONS(3349), - [anon_sym_throw] = ACTIONS(3349), - [anon_sym_SEMI] = ACTIONS(3349), - [anon_sym_yield] = ACTIONS(3349), - [anon_sym_LBRACK] = ACTIONS(3349), - [anon_sym_LTtemplate_GT] = ACTIONS(3349), - [anon_sym_DQUOTE] = ACTIONS(3349), - [anon_sym_SQUOTE] = ACTIONS(3349), - [anon_sym_class] = ACTIONS(3349), - [anon_sym_async] = ACTIONS(3349), - [anon_sym_function] = ACTIONS(3349), - [anon_sym_new] = ACTIONS(3349), - [anon_sym_using] = ACTIONS(3349), - [anon_sym_PLUS] = ACTIONS(3349), - [anon_sym_DASH] = ACTIONS(3349), - [anon_sym_SLASH] = ACTIONS(3349), - [anon_sym_LT] = ACTIONS(3349), - [anon_sym_TILDE] = ACTIONS(3349), - [anon_sym_void] = ACTIONS(3349), - [anon_sym_delete] = ACTIONS(3349), - [anon_sym_PLUS_PLUS] = ACTIONS(3349), - [anon_sym_DASH_DASH] = ACTIONS(3349), + [1298] = { + [sym_comment] = STATE(1298), + [ts_builtin_sym_end] = ACTIONS(3523), + [sym_identifier] = ACTIONS(3327), + [anon_sym_export] = ACTIONS(3327), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_namespace] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(3327), + [anon_sym_RBRACE] = ACTIONS(3327), + [anon_sym_typeof] = ACTIONS(3327), + [anon_sym_import] = ACTIONS(3327), + [anon_sym_with] = ACTIONS(3327), + [anon_sym_var] = ACTIONS(3327), + [anon_sym_let] = ACTIONS(3327), + [anon_sym_const] = ACTIONS(3327), + [anon_sym_BANG] = ACTIONS(3327), + [anon_sym_else] = ACTIONS(3327), + [anon_sym_if] = ACTIONS(3327), + [anon_sym_switch] = ACTIONS(3327), + [anon_sym_for] = ACTIONS(3327), + [anon_sym_LPAREN] = ACTIONS(3327), + [anon_sym_await] = ACTIONS(3327), + [anon_sym_while] = ACTIONS(3327), + [anon_sym_do] = ACTIONS(3327), + [anon_sym_try] = ACTIONS(3327), + [anon_sym_break] = ACTIONS(3327), + [anon_sym_continue] = ACTIONS(3327), + [anon_sym_debugger] = ACTIONS(3327), + [anon_sym_return] = ACTIONS(3327), + [anon_sym_throw] = ACTIONS(3327), + [anon_sym_SEMI] = ACTIONS(3327), + [anon_sym_yield] = ACTIONS(3327), + [anon_sym_LBRACK] = ACTIONS(3327), + [anon_sym_LTtemplate_GT] = ACTIONS(3327), + [anon_sym_DQUOTE] = ACTIONS(3327), + [anon_sym_SQUOTE] = ACTIONS(3327), + [anon_sym_class] = ACTIONS(3327), + [anon_sym_async] = ACTIONS(3327), + [anon_sym_function] = ACTIONS(3327), + [anon_sym_new] = ACTIONS(3327), + [anon_sym_using] = ACTIONS(3327), + [anon_sym_PLUS] = ACTIONS(3327), + [anon_sym_DASH] = ACTIONS(3327), + [anon_sym_SLASH] = ACTIONS(3327), + [anon_sym_LT] = ACTIONS(3327), + [anon_sym_TILDE] = ACTIONS(3327), + [anon_sym_void] = ACTIONS(3327), + [anon_sym_delete] = ACTIONS(3327), + [anon_sym_PLUS_PLUS] = ACTIONS(3327), + [anon_sym_DASH_DASH] = ACTIONS(3327), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3349), - [sym_number] = ACTIONS(3349), - [sym_private_property_identifier] = ACTIONS(3349), - [sym_this] = ACTIONS(3349), - [sym_super] = ACTIONS(3349), - [sym_true] = ACTIONS(3349), - [sym_false] = ACTIONS(3349), - [sym_null] = ACTIONS(3349), - [sym_undefined] = ACTIONS(3349), - [anon_sym_AT] = ACTIONS(3349), - [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_abstract] = ACTIONS(3349), - [anon_sym_interface] = ACTIONS(3349), - [anon_sym_enum] = ACTIONS(3349), + [anon_sym_BQUOTE] = ACTIONS(3327), + [sym_number] = ACTIONS(3327), + [sym_private_property_identifier] = ACTIONS(3327), + [sym_this] = ACTIONS(3327), + [sym_super] = ACTIONS(3327), + [sym_true] = ACTIONS(3327), + [sym_false] = ACTIONS(3327), + [sym_null] = ACTIONS(3327), + [sym_undefined] = ACTIONS(3327), + [anon_sym_AT] = ACTIONS(3327), + [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_abstract] = ACTIONS(3327), + [anon_sym_interface] = ACTIONS(3327), + [anon_sym_enum] = ACTIONS(3327), [sym_html_comment] = ACTIONS(5), }, - [1311] = { - [sym_comment] = STATE(1311), - [ts_builtin_sym_end] = ACTIONS(3507), - [sym_identifier] = ACTIONS(3343), - [anon_sym_export] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_typeof] = ACTIONS(3343), - [anon_sym_import] = ACTIONS(3343), - [anon_sym_with] = ACTIONS(3343), - [anon_sym_var] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_else] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_switch] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_await] = ACTIONS(3343), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_do] = ACTIONS(3343), - [anon_sym_try] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_debugger] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_throw] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3343), - [anon_sym_LTtemplate_GT] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_class] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3343), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_using] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_void] = ACTIONS(3343), - [anon_sym_delete] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), + [1299] = { + [sym_comment] = STATE(1299), + [ts_builtin_sym_end] = ACTIONS(3525), + [sym_identifier] = ACTIONS(3323), + [anon_sym_export] = ACTIONS(3323), + [anon_sym_type] = ACTIONS(3323), + [anon_sym_namespace] = ACTIONS(3323), + [anon_sym_LBRACE] = ACTIONS(3323), + [anon_sym_RBRACE] = ACTIONS(3323), + [anon_sym_typeof] = ACTIONS(3323), + [anon_sym_import] = ACTIONS(3323), + [anon_sym_with] = ACTIONS(3323), + [anon_sym_var] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3323), + [anon_sym_const] = ACTIONS(3323), + [anon_sym_BANG] = ACTIONS(3323), + [anon_sym_else] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_switch] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_LPAREN] = ACTIONS(3323), + [anon_sym_await] = ACTIONS(3323), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_do] = ACTIONS(3323), + [anon_sym_try] = ACTIONS(3323), + [anon_sym_break] = ACTIONS(3323), + [anon_sym_continue] = ACTIONS(3323), + [anon_sym_debugger] = ACTIONS(3323), + [anon_sym_return] = ACTIONS(3323), + [anon_sym_throw] = ACTIONS(3323), + [anon_sym_SEMI] = ACTIONS(3323), + [anon_sym_yield] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3323), + [anon_sym_LTtemplate_GT] = ACTIONS(3323), + [anon_sym_DQUOTE] = ACTIONS(3323), + [anon_sym_SQUOTE] = ACTIONS(3323), + [anon_sym_class] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_function] = ACTIONS(3323), + [anon_sym_new] = ACTIONS(3323), + [anon_sym_using] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_SLASH] = ACTIONS(3323), + [anon_sym_LT] = ACTIONS(3323), + [anon_sym_TILDE] = ACTIONS(3323), + [anon_sym_void] = ACTIONS(3323), + [anon_sym_delete] = ACTIONS(3323), + [anon_sym_PLUS_PLUS] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(3323), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3343), - [sym_number] = ACTIONS(3343), - [sym_private_property_identifier] = ACTIONS(3343), - [sym_this] = ACTIONS(3343), - [sym_super] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_null] = ACTIONS(3343), - [sym_undefined] = ACTIONS(3343), - [anon_sym_AT] = ACTIONS(3343), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_get] = ACTIONS(3343), - [anon_sym_set] = ACTIONS(3343), - [anon_sym_declare] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_module] = ACTIONS(3343), - [anon_sym_any] = ACTIONS(3343), - [anon_sym_number] = ACTIONS(3343), - [anon_sym_boolean] = ACTIONS(3343), - [anon_sym_string] = ACTIONS(3343), - [anon_sym_symbol] = ACTIONS(3343), - [anon_sym_object] = ACTIONS(3343), - [anon_sym_abstract] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), + [anon_sym_BQUOTE] = ACTIONS(3323), + [sym_number] = ACTIONS(3323), + [sym_private_property_identifier] = ACTIONS(3323), + [sym_this] = ACTIONS(3323), + [sym_super] = ACTIONS(3323), + [sym_true] = ACTIONS(3323), + [sym_false] = ACTIONS(3323), + [sym_null] = ACTIONS(3323), + [sym_undefined] = ACTIONS(3323), + [anon_sym_AT] = ACTIONS(3323), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3323), + [anon_sym_get] = ACTIONS(3323), + [anon_sym_set] = ACTIONS(3323), + [anon_sym_declare] = ACTIONS(3323), + [anon_sym_public] = ACTIONS(3323), + [anon_sym_private] = ACTIONS(3323), + [anon_sym_protected] = ACTIONS(3323), + [anon_sym_override] = ACTIONS(3323), + [anon_sym_module] = ACTIONS(3323), + [anon_sym_any] = ACTIONS(3323), + [anon_sym_number] = ACTIONS(3323), + [anon_sym_boolean] = ACTIONS(3323), + [anon_sym_string] = ACTIONS(3323), + [anon_sym_symbol] = ACTIONS(3323), + [anon_sym_object] = ACTIONS(3323), + [anon_sym_abstract] = ACTIONS(3323), + [anon_sym_interface] = ACTIONS(3323), + [anon_sym_enum] = ACTIONS(3323), [sym_html_comment] = ACTIONS(5), }, - [1312] = { - [sym_comment] = STATE(1312), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(2192), + [1300] = { + [sym_comment] = STATE(1300), + [ts_builtin_sym_end] = ACTIONS(3527), + [sym_identifier] = ACTIONS(3317), + [anon_sym_export] = ACTIONS(3317), + [anon_sym_type] = ACTIONS(3317), + [anon_sym_namespace] = ACTIONS(3317), + [anon_sym_LBRACE] = ACTIONS(3317), + [anon_sym_RBRACE] = ACTIONS(3317), + [anon_sym_typeof] = ACTIONS(3317), + [anon_sym_import] = ACTIONS(3317), + [anon_sym_with] = ACTIONS(3317), + [anon_sym_var] = ACTIONS(3317), + [anon_sym_let] = ACTIONS(3317), + [anon_sym_const] = ACTIONS(3317), + [anon_sym_BANG] = ACTIONS(3317), + [anon_sym_else] = ACTIONS(3317), + [anon_sym_if] = ACTIONS(3317), + [anon_sym_switch] = ACTIONS(3317), + [anon_sym_for] = ACTIONS(3317), + [anon_sym_LPAREN] = ACTIONS(3317), + [anon_sym_await] = ACTIONS(3317), + [anon_sym_while] = ACTIONS(3317), + [anon_sym_do] = ACTIONS(3317), + [anon_sym_try] = ACTIONS(3317), + [anon_sym_break] = ACTIONS(3317), + [anon_sym_continue] = ACTIONS(3317), + [anon_sym_debugger] = ACTIONS(3317), + [anon_sym_return] = ACTIONS(3317), + [anon_sym_throw] = ACTIONS(3317), + [anon_sym_SEMI] = ACTIONS(3317), + [anon_sym_yield] = ACTIONS(3317), + [anon_sym_LBRACK] = ACTIONS(3317), + [anon_sym_LTtemplate_GT] = ACTIONS(3317), + [anon_sym_DQUOTE] = ACTIONS(3317), + [anon_sym_SQUOTE] = ACTIONS(3317), + [anon_sym_class] = ACTIONS(3317), + [anon_sym_async] = ACTIONS(3317), + [anon_sym_function] = ACTIONS(3317), + [anon_sym_new] = ACTIONS(3317), + [anon_sym_using] = ACTIONS(3317), + [anon_sym_PLUS] = ACTIONS(3317), + [anon_sym_DASH] = ACTIONS(3317), + [anon_sym_SLASH] = ACTIONS(3317), + [anon_sym_LT] = ACTIONS(3317), + [anon_sym_TILDE] = ACTIONS(3317), + [anon_sym_void] = ACTIONS(3317), + [anon_sym_delete] = ACTIONS(3317), + [anon_sym_PLUS_PLUS] = ACTIONS(3317), + [anon_sym_DASH_DASH] = ACTIONS(3317), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3317), + [sym_number] = ACTIONS(3317), + [sym_private_property_identifier] = ACTIONS(3317), + [sym_this] = ACTIONS(3317), + [sym_super] = ACTIONS(3317), + [sym_true] = ACTIONS(3317), + [sym_false] = ACTIONS(3317), + [sym_null] = ACTIONS(3317), + [sym_undefined] = ACTIONS(3317), + [anon_sym_AT] = ACTIONS(3317), + [anon_sym_static] = ACTIONS(3317), + [anon_sym_readonly] = ACTIONS(3317), + [anon_sym_get] = ACTIONS(3317), + [anon_sym_set] = ACTIONS(3317), + [anon_sym_declare] = ACTIONS(3317), + [anon_sym_public] = ACTIONS(3317), + [anon_sym_private] = ACTIONS(3317), + [anon_sym_protected] = ACTIONS(3317), + [anon_sym_override] = ACTIONS(3317), + [anon_sym_module] = ACTIONS(3317), + [anon_sym_any] = ACTIONS(3317), + [anon_sym_number] = ACTIONS(3317), + [anon_sym_boolean] = ACTIONS(3317), + [anon_sym_string] = ACTIONS(3317), + [anon_sym_symbol] = ACTIONS(3317), + [anon_sym_object] = ACTIONS(3317), + [anon_sym_abstract] = ACTIONS(3317), + [anon_sym_interface] = ACTIONS(3317), + [anon_sym_enum] = ACTIONS(3317), [sym_html_comment] = ACTIONS(5), }, - [1313] = { - [sym_comment] = STATE(1313), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_default] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), + [1301] = { + [sym_comment] = STATE(1301), + [sym_identifier] = ACTIONS(3379), + [anon_sym_export] = ACTIONS(3379), + [anon_sym_default] = ACTIONS(3379), + [anon_sym_type] = ACTIONS(3379), + [anon_sym_namespace] = ACTIONS(3379), + [anon_sym_LBRACE] = ACTIONS(3379), + [anon_sym_RBRACE] = ACTIONS(3379), + [anon_sym_typeof] = ACTIONS(3379), + [anon_sym_import] = ACTIONS(3379), + [anon_sym_with] = ACTIONS(3379), + [anon_sym_var] = ACTIONS(3379), + [anon_sym_let] = ACTIONS(3379), + [anon_sym_const] = ACTIONS(3379), + [anon_sym_BANG] = ACTIONS(3379), + [anon_sym_if] = ACTIONS(3379), + [anon_sym_switch] = ACTIONS(3379), + [anon_sym_for] = ACTIONS(3379), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_await] = ACTIONS(3379), + [anon_sym_while] = ACTIONS(3379), + [anon_sym_do] = ACTIONS(3379), + [anon_sym_try] = ACTIONS(3379), + [anon_sym_break] = ACTIONS(3379), + [anon_sym_continue] = ACTIONS(3379), + [anon_sym_debugger] = ACTIONS(3379), + [anon_sym_return] = ACTIONS(3379), + [anon_sym_throw] = ACTIONS(3379), + [anon_sym_SEMI] = ACTIONS(3379), + [anon_sym_case] = ACTIONS(3379), + [anon_sym_yield] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3379), + [anon_sym_LTtemplate_GT] = ACTIONS(3379), + [anon_sym_DQUOTE] = ACTIONS(3379), + [anon_sym_SQUOTE] = ACTIONS(3379), + [anon_sym_class] = ACTIONS(3379), + [anon_sym_async] = ACTIONS(3379), + [anon_sym_function] = ACTIONS(3379), + [anon_sym_new] = ACTIONS(3379), + [anon_sym_using] = ACTIONS(3379), + [anon_sym_PLUS] = ACTIONS(3379), + [anon_sym_DASH] = ACTIONS(3379), + [anon_sym_SLASH] = ACTIONS(3379), + [anon_sym_LT] = ACTIONS(3379), + [anon_sym_TILDE] = ACTIONS(3379), + [anon_sym_void] = ACTIONS(3379), + [anon_sym_delete] = ACTIONS(3379), + [anon_sym_PLUS_PLUS] = ACTIONS(3379), + [anon_sym_DASH_DASH] = ACTIONS(3379), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), + [anon_sym_BQUOTE] = ACTIONS(3379), + [sym_number] = ACTIONS(3379), + [sym_private_property_identifier] = ACTIONS(3379), + [sym_this] = ACTIONS(3379), + [sym_super] = ACTIONS(3379), + [sym_true] = ACTIONS(3379), + [sym_false] = ACTIONS(3379), + [sym_null] = ACTIONS(3379), + [sym_undefined] = ACTIONS(3379), + [anon_sym_AT] = ACTIONS(3379), + [anon_sym_static] = ACTIONS(3379), + [anon_sym_readonly] = ACTIONS(3379), + [anon_sym_get] = ACTIONS(3379), + [anon_sym_set] = ACTIONS(3379), + [anon_sym_declare] = ACTIONS(3379), + [anon_sym_public] = ACTIONS(3379), + [anon_sym_private] = ACTIONS(3379), + [anon_sym_protected] = ACTIONS(3379), + [anon_sym_override] = ACTIONS(3379), + [anon_sym_module] = ACTIONS(3379), + [anon_sym_any] = ACTIONS(3379), + [anon_sym_number] = ACTIONS(3379), + [anon_sym_boolean] = ACTIONS(3379), + [anon_sym_string] = ACTIONS(3379), + [anon_sym_symbol] = ACTIONS(3379), + [anon_sym_object] = ACTIONS(3379), + [anon_sym_abstract] = ACTIONS(3379), + [anon_sym_interface] = ACTIONS(3379), + [anon_sym_enum] = ACTIONS(3379), [sym_html_comment] = ACTIONS(5), }, - [1314] = { - [sym_comment] = STATE(1314), - [ts_builtin_sym_end] = ACTIONS(3509), - [sym_identifier] = ACTIONS(3351), - [anon_sym_export] = ACTIONS(3351), - [anon_sym_type] = ACTIONS(3351), - [anon_sym_namespace] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_typeof] = ACTIONS(3351), - [anon_sym_import] = ACTIONS(3351), - [anon_sym_with] = ACTIONS(3351), - [anon_sym_var] = ACTIONS(3351), - [anon_sym_let] = ACTIONS(3351), - [anon_sym_const] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3351), - [anon_sym_else] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_switch] = ACTIONS(3351), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_await] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_break] = ACTIONS(3351), - [anon_sym_continue] = ACTIONS(3351), - [anon_sym_debugger] = ACTIONS(3351), - [anon_sym_return] = ACTIONS(3351), - [anon_sym_throw] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LTtemplate_GT] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_SQUOTE] = ACTIONS(3351), - [anon_sym_class] = ACTIONS(3351), - [anon_sym_async] = ACTIONS(3351), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_using] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3351), - [anon_sym_void] = ACTIONS(3351), - [anon_sym_delete] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3351), - [anon_sym_DASH_DASH] = ACTIONS(3351), + [1302] = { + [sym_comment] = STATE(1302), + [sym_identifier] = ACTIONS(3279), + [anon_sym_export] = ACTIONS(3279), + [anon_sym_default] = ACTIONS(3279), + [anon_sym_type] = ACTIONS(3279), + [anon_sym_namespace] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_typeof] = ACTIONS(3279), + [anon_sym_import] = ACTIONS(3279), + [anon_sym_with] = ACTIONS(3279), + [anon_sym_var] = ACTIONS(3279), + [anon_sym_let] = ACTIONS(3279), + [anon_sym_const] = ACTIONS(3279), + [anon_sym_BANG] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_switch] = ACTIONS(3279), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3279), + [anon_sym_await] = ACTIONS(3279), + [anon_sym_while] = ACTIONS(3279), + [anon_sym_do] = ACTIONS(3279), + [anon_sym_try] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_debugger] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_throw] = ACTIONS(3279), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_case] = ACTIONS(3279), + [anon_sym_yield] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3279), + [anon_sym_LTtemplate_GT] = ACTIONS(3279), + [anon_sym_DQUOTE] = ACTIONS(3279), + [anon_sym_SQUOTE] = ACTIONS(3279), + [anon_sym_class] = ACTIONS(3279), + [anon_sym_async] = ACTIONS(3279), + [anon_sym_function] = ACTIONS(3279), + [anon_sym_new] = ACTIONS(3279), + [anon_sym_using] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_SLASH] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_void] = ACTIONS(3279), + [anon_sym_delete] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_DASH_DASH] = ACTIONS(3279), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3351), - [sym_number] = ACTIONS(3351), - [sym_private_property_identifier] = ACTIONS(3351), - [sym_this] = ACTIONS(3351), - [sym_super] = ACTIONS(3351), - [sym_true] = ACTIONS(3351), - [sym_false] = ACTIONS(3351), - [sym_null] = ACTIONS(3351), - [sym_undefined] = ACTIONS(3351), - [anon_sym_AT] = ACTIONS(3351), - [anon_sym_static] = ACTIONS(3351), - [anon_sym_readonly] = ACTIONS(3351), - [anon_sym_get] = ACTIONS(3351), - [anon_sym_set] = ACTIONS(3351), - [anon_sym_declare] = ACTIONS(3351), - [anon_sym_public] = ACTIONS(3351), - [anon_sym_private] = ACTIONS(3351), - [anon_sym_protected] = ACTIONS(3351), - [anon_sym_override] = ACTIONS(3351), - [anon_sym_module] = ACTIONS(3351), - [anon_sym_any] = ACTIONS(3351), - [anon_sym_number] = ACTIONS(3351), - [anon_sym_boolean] = ACTIONS(3351), - [anon_sym_string] = ACTIONS(3351), - [anon_sym_symbol] = ACTIONS(3351), - [anon_sym_object] = ACTIONS(3351), - [anon_sym_abstract] = ACTIONS(3351), - [anon_sym_interface] = ACTIONS(3351), - [anon_sym_enum] = ACTIONS(3351), + [anon_sym_BQUOTE] = ACTIONS(3279), + [sym_number] = ACTIONS(3279), + [sym_private_property_identifier] = ACTIONS(3279), + [sym_this] = ACTIONS(3279), + [sym_super] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_null] = ACTIONS(3279), + [sym_undefined] = ACTIONS(3279), + [anon_sym_AT] = ACTIONS(3279), + [anon_sym_static] = ACTIONS(3279), + [anon_sym_readonly] = ACTIONS(3279), + [anon_sym_get] = ACTIONS(3279), + [anon_sym_set] = ACTIONS(3279), + [anon_sym_declare] = ACTIONS(3279), + [anon_sym_public] = ACTIONS(3279), + [anon_sym_private] = ACTIONS(3279), + [anon_sym_protected] = ACTIONS(3279), + [anon_sym_override] = ACTIONS(3279), + [anon_sym_module] = ACTIONS(3279), + [anon_sym_any] = ACTIONS(3279), + [anon_sym_number] = ACTIONS(3279), + [anon_sym_boolean] = ACTIONS(3279), + [anon_sym_string] = ACTIONS(3279), + [anon_sym_symbol] = ACTIONS(3279), + [anon_sym_object] = ACTIONS(3279), + [anon_sym_abstract] = ACTIONS(3279), + [anon_sym_interface] = ACTIONS(3279), + [anon_sym_enum] = ACTIONS(3279), [sym_html_comment] = ACTIONS(5), }, - [1315] = { - [sym_comment] = STATE(1315), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_default] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(2176), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_case] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LTtemplate_GT] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_number] = ACTIONS(2176), - [sym_private_property_identifier] = ACTIONS(2176), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), + [1303] = { + [sym_comment] = STATE(1303), + [ts_builtin_sym_end] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3299), + [anon_sym_export] = ACTIONS(3299), + [anon_sym_type] = ACTIONS(3299), + [anon_sym_namespace] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_RBRACE] = ACTIONS(3299), + [anon_sym_typeof] = ACTIONS(3299), + [anon_sym_import] = ACTIONS(3299), + [anon_sym_with] = ACTIONS(3299), + [anon_sym_var] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_const] = ACTIONS(3299), + [anon_sym_BANG] = ACTIONS(3299), + [anon_sym_else] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_switch] = ACTIONS(3299), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_await] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_break] = ACTIONS(3299), + [anon_sym_continue] = ACTIONS(3299), + [anon_sym_debugger] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_throw] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LTtemplate_GT] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_SQUOTE] = ACTIONS(3299), + [anon_sym_class] = ACTIONS(3299), + [anon_sym_async] = ACTIONS(3299), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_using] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_SLASH] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3299), + [anon_sym_void] = ACTIONS(3299), + [anon_sym_delete] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3299), + [sym_number] = ACTIONS(3299), + [sym_private_property_identifier] = ACTIONS(3299), + [sym_this] = ACTIONS(3299), + [sym_super] = ACTIONS(3299), + [sym_true] = ACTIONS(3299), + [sym_false] = ACTIONS(3299), + [sym_null] = ACTIONS(3299), + [sym_undefined] = ACTIONS(3299), + [anon_sym_AT] = ACTIONS(3299), + [anon_sym_static] = ACTIONS(3299), + [anon_sym_readonly] = ACTIONS(3299), + [anon_sym_get] = ACTIONS(3299), + [anon_sym_set] = ACTIONS(3299), + [anon_sym_declare] = ACTIONS(3299), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_private] = ACTIONS(3299), + [anon_sym_protected] = ACTIONS(3299), + [anon_sym_override] = ACTIONS(3299), + [anon_sym_module] = ACTIONS(3299), + [anon_sym_any] = ACTIONS(3299), + [anon_sym_number] = ACTIONS(3299), + [anon_sym_boolean] = ACTIONS(3299), + [anon_sym_string] = ACTIONS(3299), + [anon_sym_symbol] = ACTIONS(3299), + [anon_sym_object] = ACTIONS(3299), + [anon_sym_abstract] = ACTIONS(3299), + [anon_sym_interface] = ACTIONS(3299), + [anon_sym_enum] = ACTIONS(3299), [sym_html_comment] = ACTIONS(5), }, - [1316] = { - [sym_comment] = STATE(1316), - [sym_identifier] = ACTIONS(3375), - [anon_sym_export] = ACTIONS(3375), - [anon_sym_default] = ACTIONS(3375), - [anon_sym_type] = ACTIONS(3375), - [anon_sym_namespace] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_typeof] = ACTIONS(3375), - [anon_sym_import] = ACTIONS(3375), - [anon_sym_with] = ACTIONS(3375), - [anon_sym_var] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_const] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_switch] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_await] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_debugger] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_throw] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_case] = ACTIONS(3375), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LTtemplate_GT] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3375), - [anon_sym_class] = ACTIONS(3375), - [anon_sym_async] = ACTIONS(3375), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_using] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_void] = ACTIONS(3375), - [anon_sym_delete] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3375), - [anon_sym_DASH_DASH] = ACTIONS(3375), + [1304] = { + [sym_comment] = STATE(1304), + [ts_builtin_sym_end] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3375), - [sym_number] = ACTIONS(3375), - [sym_private_property_identifier] = ACTIONS(3375), - [sym_this] = ACTIONS(3375), - [sym_super] = ACTIONS(3375), - [sym_true] = ACTIONS(3375), - [sym_false] = ACTIONS(3375), - [sym_null] = ACTIONS(3375), - [sym_undefined] = ACTIONS(3375), - [anon_sym_AT] = ACTIONS(3375), - [anon_sym_static] = ACTIONS(3375), - [anon_sym_readonly] = ACTIONS(3375), - [anon_sym_get] = ACTIONS(3375), - [anon_sym_set] = ACTIONS(3375), - [anon_sym_declare] = ACTIONS(3375), - [anon_sym_public] = ACTIONS(3375), - [anon_sym_private] = ACTIONS(3375), - [anon_sym_protected] = ACTIONS(3375), - [anon_sym_override] = ACTIONS(3375), - [anon_sym_module] = ACTIONS(3375), - [anon_sym_any] = ACTIONS(3375), - [anon_sym_number] = ACTIONS(3375), - [anon_sym_boolean] = ACTIONS(3375), - [anon_sym_string] = ACTIONS(3375), - [anon_sym_symbol] = ACTIONS(3375), - [anon_sym_object] = ACTIONS(3375), - [anon_sym_abstract] = ACTIONS(3375), - [anon_sym_interface] = ACTIONS(3375), - [anon_sym_enum] = ACTIONS(3375), - [sym_html_comment] = ACTIONS(5), - }, - [1317] = { - [sym_comment] = STATE(1317), - [ts_builtin_sym_end] = ACTIONS(2254), - [sym_identifier] = ACTIONS(2252), - [anon_sym_export] = ACTIONS(2252), - [anon_sym_type] = ACTIONS(2252), - [anon_sym_namespace] = ACTIONS(2252), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_RBRACE] = ACTIONS(2252), - [anon_sym_typeof] = ACTIONS(2252), - [anon_sym_import] = ACTIONS(2252), - [anon_sym_with] = ACTIONS(2252), - [anon_sym_var] = ACTIONS(2252), - [anon_sym_let] = ACTIONS(2252), - [anon_sym_const] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(2252), - [anon_sym_else] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_switch] = ACTIONS(2252), - [anon_sym_for] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_await] = ACTIONS(2252), - [anon_sym_while] = ACTIONS(2252), - [anon_sym_do] = ACTIONS(2252), - [anon_sym_try] = ACTIONS(2252), - [anon_sym_break] = ACTIONS(2252), - [anon_sym_continue] = ACTIONS(2252), - [anon_sym_debugger] = ACTIONS(2252), - [anon_sym_return] = ACTIONS(2252), - [anon_sym_throw] = ACTIONS(2252), - [anon_sym_SEMI] = ACTIONS(2252), - [anon_sym_yield] = ACTIONS(2252), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_LTtemplate_GT] = ACTIONS(2252), - [anon_sym_DQUOTE] = ACTIONS(2252), - [anon_sym_SQUOTE] = ACTIONS(2252), - [anon_sym_class] = ACTIONS(2252), - [anon_sym_async] = ACTIONS(2252), - [anon_sym_function] = ACTIONS(2252), - [anon_sym_new] = ACTIONS(2252), - [anon_sym_using] = ACTIONS(2252), - [anon_sym_PLUS] = ACTIONS(2252), - [anon_sym_DASH] = ACTIONS(2252), - [anon_sym_SLASH] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_TILDE] = ACTIONS(2252), - [anon_sym_void] = ACTIONS(2252), - [anon_sym_delete] = ACTIONS(2252), - [anon_sym_PLUS_PLUS] = ACTIONS(2252), - [anon_sym_DASH_DASH] = ACTIONS(2252), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2252), - [sym_number] = ACTIONS(2252), - [sym_private_property_identifier] = ACTIONS(2252), - [sym_this] = ACTIONS(2252), - [sym_super] = ACTIONS(2252), - [sym_true] = ACTIONS(2252), - [sym_false] = ACTIONS(2252), - [sym_null] = ACTIONS(2252), - [sym_undefined] = ACTIONS(2252), - [anon_sym_AT] = ACTIONS(2252), - [anon_sym_static] = ACTIONS(2252), - [anon_sym_readonly] = ACTIONS(2252), - [anon_sym_get] = ACTIONS(2252), - [anon_sym_set] = ACTIONS(2252), - [anon_sym_declare] = ACTIONS(2252), - [anon_sym_public] = ACTIONS(2252), - [anon_sym_private] = ACTIONS(2252), - [anon_sym_protected] = ACTIONS(2252), - [anon_sym_override] = ACTIONS(2252), - [anon_sym_module] = ACTIONS(2252), - [anon_sym_any] = ACTIONS(2252), - [anon_sym_number] = ACTIONS(2252), - [anon_sym_boolean] = ACTIONS(2252), - [anon_sym_string] = ACTIONS(2252), - [anon_sym_symbol] = ACTIONS(2252), - [anon_sym_object] = ACTIONS(2252), - [anon_sym_abstract] = ACTIONS(2252), - [anon_sym_interface] = ACTIONS(2252), - [anon_sym_enum] = ACTIONS(2252), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), + [sym__automatic_semicolon] = ACTIONS(2290), [sym_html_comment] = ACTIONS(5), }, - [1318] = { - [sym_comment] = STATE(1318), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_default] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(2176), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_case] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LTtemplate_GT] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_number] = ACTIONS(2176), - [sym_private_property_identifier] = ACTIONS(2176), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), + [1305] = { + [sym_comment] = STATE(1305), + [sym_identifier] = ACTIONS(3273), + [anon_sym_export] = ACTIONS(3273), + [anon_sym_default] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3273), + [anon_sym_namespace] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(3273), + [anon_sym_RBRACE] = ACTIONS(3273), + [anon_sym_typeof] = ACTIONS(3273), + [anon_sym_import] = ACTIONS(3273), + [anon_sym_with] = ACTIONS(3273), + [anon_sym_var] = ACTIONS(3273), + [anon_sym_let] = ACTIONS(3273), + [anon_sym_const] = ACTIONS(3273), + [anon_sym_BANG] = ACTIONS(3273), + [anon_sym_if] = ACTIONS(3273), + [anon_sym_switch] = ACTIONS(3273), + [anon_sym_for] = ACTIONS(3273), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_await] = ACTIONS(3273), + [anon_sym_while] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3273), + [anon_sym_try] = ACTIONS(3273), + [anon_sym_break] = ACTIONS(3273), + [anon_sym_continue] = ACTIONS(3273), + [anon_sym_debugger] = ACTIONS(3273), + [anon_sym_return] = ACTIONS(3273), + [anon_sym_throw] = ACTIONS(3273), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_case] = ACTIONS(3273), + [anon_sym_yield] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_LTtemplate_GT] = ACTIONS(3273), + [anon_sym_DQUOTE] = ACTIONS(3273), + [anon_sym_SQUOTE] = ACTIONS(3273), + [anon_sym_class] = ACTIONS(3273), + [anon_sym_async] = ACTIONS(3273), + [anon_sym_function] = ACTIONS(3273), + [anon_sym_new] = ACTIONS(3273), + [anon_sym_using] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3273), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_SLASH] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_void] = ACTIONS(3273), + [anon_sym_delete] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_DASH_DASH] = ACTIONS(3273), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3273), + [sym_number] = ACTIONS(3273), + [sym_private_property_identifier] = ACTIONS(3273), + [sym_this] = ACTIONS(3273), + [sym_super] = ACTIONS(3273), + [sym_true] = ACTIONS(3273), + [sym_false] = ACTIONS(3273), + [sym_null] = ACTIONS(3273), + [sym_undefined] = ACTIONS(3273), + [anon_sym_AT] = ACTIONS(3273), + [anon_sym_static] = ACTIONS(3273), + [anon_sym_readonly] = ACTIONS(3273), + [anon_sym_get] = ACTIONS(3273), + [anon_sym_set] = ACTIONS(3273), + [anon_sym_declare] = ACTIONS(3273), + [anon_sym_public] = ACTIONS(3273), + [anon_sym_private] = ACTIONS(3273), + [anon_sym_protected] = ACTIONS(3273), + [anon_sym_override] = ACTIONS(3273), + [anon_sym_module] = ACTIONS(3273), + [anon_sym_any] = ACTIONS(3273), + [anon_sym_number] = ACTIONS(3273), + [anon_sym_boolean] = ACTIONS(3273), + [anon_sym_string] = ACTIONS(3273), + [anon_sym_symbol] = ACTIONS(3273), + [anon_sym_object] = ACTIONS(3273), + [anon_sym_abstract] = ACTIONS(3273), + [anon_sym_interface] = ACTIONS(3273), + [anon_sym_enum] = ACTIONS(3273), [sym_html_comment] = ACTIONS(5), }, - [1319] = { - [sym_comment] = STATE(1319), - [ts_builtin_sym_end] = ACTIONS(3511), - [sym_identifier] = ACTIONS(3333), - [anon_sym_export] = ACTIONS(3333), - [anon_sym_type] = ACTIONS(3333), - [anon_sym_namespace] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_typeof] = ACTIONS(3333), - [anon_sym_import] = ACTIONS(3333), - [anon_sym_with] = ACTIONS(3333), - [anon_sym_var] = ACTIONS(3333), - [anon_sym_let] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3333), - [anon_sym_BANG] = ACTIONS(3333), - [anon_sym_else] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3333), - [anon_sym_switch] = ACTIONS(3333), - [anon_sym_for] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_await] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3333), - [anon_sym_do] = ACTIONS(3333), - [anon_sym_try] = ACTIONS(3333), - [anon_sym_break] = ACTIONS(3333), - [anon_sym_continue] = ACTIONS(3333), - [anon_sym_debugger] = ACTIONS(3333), - [anon_sym_return] = ACTIONS(3333), - [anon_sym_throw] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_yield] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_LTtemplate_GT] = ACTIONS(3333), - [anon_sym_DQUOTE] = ACTIONS(3333), - [anon_sym_SQUOTE] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_async] = ACTIONS(3333), - [anon_sym_function] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3333), - [anon_sym_using] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_SLASH] = ACTIONS(3333), - [anon_sym_LT] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_void] = ACTIONS(3333), - [anon_sym_delete] = ACTIONS(3333), - [anon_sym_PLUS_PLUS] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3333), + [1306] = { + [sym_comment] = STATE(1306), + [ts_builtin_sym_end] = ACTIONS(3531), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3285), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_else] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_debugger] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LTtemplate_GT] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_void] = ACTIONS(3285), + [anon_sym_delete] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3333), - [sym_number] = ACTIONS(3333), - [sym_private_property_identifier] = ACTIONS(3333), - [sym_this] = ACTIONS(3333), - [sym_super] = ACTIONS(3333), - [sym_true] = ACTIONS(3333), - [sym_false] = ACTIONS(3333), - [sym_null] = ACTIONS(3333), - [sym_undefined] = ACTIONS(3333), - [anon_sym_AT] = ACTIONS(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_readonly] = ACTIONS(3333), - [anon_sym_get] = ACTIONS(3333), - [anon_sym_set] = ACTIONS(3333), - [anon_sym_declare] = ACTIONS(3333), - [anon_sym_public] = ACTIONS(3333), - [anon_sym_private] = ACTIONS(3333), - [anon_sym_protected] = ACTIONS(3333), - [anon_sym_override] = ACTIONS(3333), - [anon_sym_module] = ACTIONS(3333), - [anon_sym_any] = ACTIONS(3333), - [anon_sym_number] = ACTIONS(3333), - [anon_sym_boolean] = ACTIONS(3333), - [anon_sym_string] = ACTIONS(3333), - [anon_sym_symbol] = ACTIONS(3333), - [anon_sym_object] = ACTIONS(3333), - [anon_sym_abstract] = ACTIONS(3333), - [anon_sym_interface] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), + [anon_sym_BQUOTE] = ACTIONS(3285), + [sym_number] = ACTIONS(3285), + [sym_private_property_identifier] = ACTIONS(3285), + [sym_this] = ACTIONS(3285), + [sym_super] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_null] = ACTIONS(3285), + [sym_undefined] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_get] = ACTIONS(3285), + [anon_sym_set] = ACTIONS(3285), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_any] = ACTIONS(3285), + [anon_sym_number] = ACTIONS(3285), + [anon_sym_boolean] = ACTIONS(3285), + [anon_sym_string] = ACTIONS(3285), + [anon_sym_symbol] = ACTIONS(3285), + [anon_sym_object] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), [sym_html_comment] = ACTIONS(5), }, - [1320] = { - [sym_comment] = STATE(1320), - [ts_builtin_sym_end] = ACTIONS(3513), - [sym_identifier] = ACTIONS(3337), - [anon_sym_export] = ACTIONS(3337), - [anon_sym_type] = ACTIONS(3337), - [anon_sym_namespace] = ACTIONS(3337), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_typeof] = ACTIONS(3337), - [anon_sym_import] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(3337), - [anon_sym_var] = ACTIONS(3337), - [anon_sym_let] = ACTIONS(3337), - [anon_sym_const] = ACTIONS(3337), - [anon_sym_BANG] = ACTIONS(3337), - [anon_sym_else] = ACTIONS(3337), - [anon_sym_if] = ACTIONS(3337), - [anon_sym_switch] = ACTIONS(3337), - [anon_sym_for] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_await] = ACTIONS(3337), - [anon_sym_while] = ACTIONS(3337), - [anon_sym_do] = ACTIONS(3337), - [anon_sym_try] = ACTIONS(3337), - [anon_sym_break] = ACTIONS(3337), - [anon_sym_continue] = ACTIONS(3337), - [anon_sym_debugger] = ACTIONS(3337), - [anon_sym_return] = ACTIONS(3337), - [anon_sym_throw] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_yield] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_LTtemplate_GT] = ACTIONS(3337), - [anon_sym_DQUOTE] = ACTIONS(3337), - [anon_sym_SQUOTE] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_async] = ACTIONS(3337), - [anon_sym_function] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_using] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_SLASH] = ACTIONS(3337), - [anon_sym_LT] = ACTIONS(3337), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_void] = ACTIONS(3337), - [anon_sym_delete] = ACTIONS(3337), - [anon_sym_PLUS_PLUS] = ACTIONS(3337), - [anon_sym_DASH_DASH] = ACTIONS(3337), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3337), - [sym_number] = ACTIONS(3337), - [sym_private_property_identifier] = ACTIONS(3337), - [sym_this] = ACTIONS(3337), - [sym_super] = ACTIONS(3337), - [sym_true] = ACTIONS(3337), - [sym_false] = ACTIONS(3337), - [sym_null] = ACTIONS(3337), - [sym_undefined] = ACTIONS(3337), - [anon_sym_AT] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_readonly] = ACTIONS(3337), - [anon_sym_get] = ACTIONS(3337), - [anon_sym_set] = ACTIONS(3337), - [anon_sym_declare] = ACTIONS(3337), - [anon_sym_public] = ACTIONS(3337), - [anon_sym_private] = ACTIONS(3337), - [anon_sym_protected] = ACTIONS(3337), - [anon_sym_override] = ACTIONS(3337), - [anon_sym_module] = ACTIONS(3337), - [anon_sym_any] = ACTIONS(3337), - [anon_sym_number] = ACTIONS(3337), - [anon_sym_boolean] = ACTIONS(3337), - [anon_sym_string] = ACTIONS(3337), - [anon_sym_symbol] = ACTIONS(3337), - [anon_sym_object] = ACTIONS(3337), - [anon_sym_abstract] = ACTIONS(3337), - [anon_sym_interface] = ACTIONS(3337), - [anon_sym_enum] = ACTIONS(3337), + [1307] = { + [sym_comment] = STATE(1307), + [ts_builtin_sym_end] = ACTIONS(3531), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3285), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_else] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_debugger] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LTtemplate_GT] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_void] = ACTIONS(3285), + [anon_sym_delete] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3285), + [sym_number] = ACTIONS(3285), + [sym_private_property_identifier] = ACTIONS(3285), + [sym_this] = ACTIONS(3285), + [sym_super] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_null] = ACTIONS(3285), + [sym_undefined] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_get] = ACTIONS(3285), + [anon_sym_set] = ACTIONS(3285), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_any] = ACTIONS(3285), + [anon_sym_number] = ACTIONS(3285), + [anon_sym_boolean] = ACTIONS(3285), + [anon_sym_string] = ACTIONS(3285), + [anon_sym_symbol] = ACTIONS(3285), + [anon_sym_object] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), [sym_html_comment] = ACTIONS(5), }, - [1321] = { - [sym_comment] = STATE(1321), - [sym_identifier] = ACTIONS(3307), - [anon_sym_export] = ACTIONS(3307), - [anon_sym_default] = ACTIONS(3307), - [anon_sym_type] = ACTIONS(3307), - [anon_sym_namespace] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_RBRACE] = ACTIONS(3307), - [anon_sym_typeof] = ACTIONS(3307), - [anon_sym_import] = ACTIONS(3307), - [anon_sym_with] = ACTIONS(3307), - [anon_sym_var] = ACTIONS(3307), - [anon_sym_let] = ACTIONS(3307), - [anon_sym_const] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_switch] = ACTIONS(3307), - [anon_sym_for] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_await] = ACTIONS(3307), - [anon_sym_while] = ACTIONS(3307), - [anon_sym_do] = ACTIONS(3307), - [anon_sym_try] = ACTIONS(3307), - [anon_sym_break] = ACTIONS(3307), - [anon_sym_continue] = ACTIONS(3307), - [anon_sym_debugger] = ACTIONS(3307), - [anon_sym_return] = ACTIONS(3307), - [anon_sym_throw] = ACTIONS(3307), - [anon_sym_SEMI] = ACTIONS(3307), - [anon_sym_case] = ACTIONS(3307), - [anon_sym_yield] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3307), - [anon_sym_LTtemplate_GT] = ACTIONS(3307), - [anon_sym_DQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_class] = ACTIONS(3307), - [anon_sym_async] = ACTIONS(3307), - [anon_sym_function] = ACTIONS(3307), - [anon_sym_new] = ACTIONS(3307), - [anon_sym_using] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3307), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_LT] = ACTIONS(3307), - [anon_sym_TILDE] = ACTIONS(3307), - [anon_sym_void] = ACTIONS(3307), - [anon_sym_delete] = ACTIONS(3307), - [anon_sym_PLUS_PLUS] = ACTIONS(3307), - [anon_sym_DASH_DASH] = ACTIONS(3307), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3307), - [sym_number] = ACTIONS(3307), - [sym_private_property_identifier] = ACTIONS(3307), - [sym_this] = ACTIONS(3307), - [sym_super] = ACTIONS(3307), - [sym_true] = ACTIONS(3307), - [sym_false] = ACTIONS(3307), - [sym_null] = ACTIONS(3307), - [sym_undefined] = ACTIONS(3307), - [anon_sym_AT] = ACTIONS(3307), - [anon_sym_static] = ACTIONS(3307), - [anon_sym_readonly] = ACTIONS(3307), - [anon_sym_get] = ACTIONS(3307), - [anon_sym_set] = ACTIONS(3307), - [anon_sym_declare] = ACTIONS(3307), - [anon_sym_public] = ACTIONS(3307), - [anon_sym_private] = ACTIONS(3307), - [anon_sym_protected] = ACTIONS(3307), - [anon_sym_override] = ACTIONS(3307), - [anon_sym_module] = ACTIONS(3307), - [anon_sym_any] = ACTIONS(3307), - [anon_sym_number] = ACTIONS(3307), - [anon_sym_boolean] = ACTIONS(3307), - [anon_sym_string] = ACTIONS(3307), - [anon_sym_symbol] = ACTIONS(3307), - [anon_sym_object] = ACTIONS(3307), - [anon_sym_abstract] = ACTIONS(3307), - [anon_sym_interface] = ACTIONS(3307), - [anon_sym_enum] = ACTIONS(3307), + [1308] = { + [sym_comment] = STATE(1308), + [ts_builtin_sym_end] = ACTIONS(3531), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3285), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_else] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_debugger] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LTtemplate_GT] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_void] = ACTIONS(3285), + [anon_sym_delete] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3285), + [sym_number] = ACTIONS(3285), + [sym_private_property_identifier] = ACTIONS(3285), + [sym_this] = ACTIONS(3285), + [sym_super] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_null] = ACTIONS(3285), + [sym_undefined] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_get] = ACTIONS(3285), + [anon_sym_set] = ACTIONS(3285), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_any] = ACTIONS(3285), + [anon_sym_number] = ACTIONS(3285), + [anon_sym_boolean] = ACTIONS(3285), + [anon_sym_string] = ACTIONS(3285), + [anon_sym_symbol] = ACTIONS(3285), + [anon_sym_object] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), [sym_html_comment] = ACTIONS(5), }, - [1322] = { - [sym_comment] = STATE(1322), - [ts_builtin_sym_end] = ACTIONS(3515), - [sym_identifier] = ACTIONS(3339), - [anon_sym_export] = ACTIONS(3339), - [anon_sym_type] = ACTIONS(3339), - [anon_sym_namespace] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_RBRACE] = ACTIONS(3339), - [anon_sym_typeof] = ACTIONS(3339), - [anon_sym_import] = ACTIONS(3339), - [anon_sym_with] = ACTIONS(3339), - [anon_sym_var] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_else] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_switch] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_await] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_debugger] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_throw] = ACTIONS(3339), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LTtemplate_GT] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3339), - [anon_sym_class] = ACTIONS(3339), - [anon_sym_async] = ACTIONS(3339), - [anon_sym_function] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_using] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_SLASH] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_void] = ACTIONS(3339), - [anon_sym_delete] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3339), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3339), - [sym_number] = ACTIONS(3339), - [sym_private_property_identifier] = ACTIONS(3339), - [sym_this] = ACTIONS(3339), - [sym_super] = ACTIONS(3339), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [sym_null] = ACTIONS(3339), - [sym_undefined] = ACTIONS(3339), - [anon_sym_AT] = ACTIONS(3339), - [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_abstract] = ACTIONS(3339), - [anon_sym_interface] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), + [1309] = { + [sym_comment] = STATE(1309), + [ts_builtin_sym_end] = ACTIONS(3533), + [sym_identifier] = ACTIONS(3431), + [anon_sym_export] = ACTIONS(3431), + [anon_sym_type] = ACTIONS(3431), + [anon_sym_namespace] = ACTIONS(3431), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_RBRACE] = ACTIONS(3431), + [anon_sym_typeof] = ACTIONS(3431), + [anon_sym_import] = ACTIONS(3431), + [anon_sym_with] = ACTIONS(3431), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_let] = ACTIONS(3431), + [anon_sym_const] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_else] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3431), + [anon_sym_await] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(3431), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_break] = ACTIONS(3431), + [anon_sym_continue] = ACTIONS(3431), + [anon_sym_debugger] = ACTIONS(3431), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_throw] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3431), + [anon_sym_LTtemplate_GT] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3431), + [anon_sym_class] = ACTIONS(3431), + [anon_sym_async] = ACTIONS(3431), + [anon_sym_function] = ACTIONS(3431), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_using] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3431), + [anon_sym_void] = ACTIONS(3431), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3431), + [anon_sym_DASH_DASH] = ACTIONS(3431), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3431), + [sym_number] = ACTIONS(3431), + [sym_private_property_identifier] = ACTIONS(3431), + [sym_this] = ACTIONS(3431), + [sym_super] = ACTIONS(3431), + [sym_true] = ACTIONS(3431), + [sym_false] = ACTIONS(3431), + [sym_null] = ACTIONS(3431), + [sym_undefined] = ACTIONS(3431), + [anon_sym_AT] = ACTIONS(3431), + [anon_sym_static] = ACTIONS(3431), + [anon_sym_readonly] = ACTIONS(3431), + [anon_sym_get] = ACTIONS(3431), + [anon_sym_set] = ACTIONS(3431), + [anon_sym_declare] = ACTIONS(3431), + [anon_sym_public] = ACTIONS(3431), + [anon_sym_private] = ACTIONS(3431), + [anon_sym_protected] = ACTIONS(3431), + [anon_sym_override] = ACTIONS(3431), + [anon_sym_module] = ACTIONS(3431), + [anon_sym_any] = ACTIONS(3431), + [anon_sym_number] = ACTIONS(3431), + [anon_sym_boolean] = ACTIONS(3431), + [anon_sym_string] = ACTIONS(3431), + [anon_sym_symbol] = ACTIONS(3431), + [anon_sym_object] = ACTIONS(3431), + [anon_sym_abstract] = ACTIONS(3431), + [anon_sym_interface] = ACTIONS(3431), + [anon_sym_enum] = ACTIONS(3431), [sym_html_comment] = ACTIONS(5), }, - [1323] = { - [sym_comment] = STATE(1323), - [ts_builtin_sym_end] = ACTIONS(3517), - [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_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_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_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_abstract] = ACTIONS(3341), - [anon_sym_interface] = ACTIONS(3341), - [anon_sym_enum] = ACTIONS(3341), + [1310] = { + [sym_comment] = STATE(1310), + [sym_identifier] = ACTIONS(2260), + [anon_sym_export] = ACTIONS(2260), + [anon_sym_default] = ACTIONS(2260), + [anon_sym_type] = ACTIONS(2260), + [anon_sym_namespace] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_typeof] = ACTIONS(2260), + [anon_sym_import] = ACTIONS(2260), + [anon_sym_with] = ACTIONS(2260), + [anon_sym_var] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [anon_sym_BANG] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_switch] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_await] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), + [anon_sym_try] = ACTIONS(2260), + [anon_sym_break] = ACTIONS(2260), + [anon_sym_continue] = ACTIONS(2260), + [anon_sym_debugger] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_throw] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_case] = ACTIONS(2260), + [anon_sym_yield] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_LTtemplate_GT] = ACTIONS(2260), + [anon_sym_DQUOTE] = ACTIONS(2260), + [anon_sym_SQUOTE] = ACTIONS(2260), + [anon_sym_class] = ACTIONS(2260), + [anon_sym_async] = ACTIONS(2260), + [anon_sym_function] = ACTIONS(2260), + [anon_sym_new] = ACTIONS(2260), + [anon_sym_using] = ACTIONS(2260), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2260), + [anon_sym_TILDE] = ACTIONS(2260), + [anon_sym_void] = ACTIONS(2260), + [anon_sym_delete] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2260), + [sym_number] = ACTIONS(2260), + [sym_private_property_identifier] = ACTIONS(2260), + [sym_this] = ACTIONS(2260), + [sym_super] = ACTIONS(2260), + [sym_true] = ACTIONS(2260), + [sym_false] = ACTIONS(2260), + [sym_null] = ACTIONS(2260), + [sym_undefined] = ACTIONS(2260), + [anon_sym_AT] = ACTIONS(2260), + [anon_sym_static] = ACTIONS(2260), + [anon_sym_readonly] = ACTIONS(2260), + [anon_sym_get] = ACTIONS(2260), + [anon_sym_set] = ACTIONS(2260), + [anon_sym_declare] = ACTIONS(2260), + [anon_sym_public] = ACTIONS(2260), + [anon_sym_private] = ACTIONS(2260), + [anon_sym_protected] = ACTIONS(2260), + [anon_sym_override] = ACTIONS(2260), + [anon_sym_module] = ACTIONS(2260), + [anon_sym_any] = ACTIONS(2260), + [anon_sym_number] = ACTIONS(2260), + [anon_sym_boolean] = ACTIONS(2260), + [anon_sym_string] = ACTIONS(2260), + [anon_sym_symbol] = ACTIONS(2260), + [anon_sym_object] = ACTIONS(2260), + [anon_sym_abstract] = ACTIONS(2260), + [anon_sym_interface] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), [sym_html_comment] = ACTIONS(5), }, - [1324] = { - [sym_comment] = STATE(1324), - [sym_identifier] = ACTIONS(3401), - [anon_sym_export] = ACTIONS(3401), - [anon_sym_default] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_namespace] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_typeof] = ACTIONS(3401), - [anon_sym_import] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_var] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_switch] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_await] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_break] = ACTIONS(3401), - [anon_sym_continue] = ACTIONS(3401), - [anon_sym_debugger] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_throw] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_case] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LTtemplate_GT] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_SQUOTE] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_async] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_using] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_void] = ACTIONS(3401), - [anon_sym_delete] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), + [1311] = { + [sym_comment] = STATE(1311), + [sym_identifier] = ACTIONS(3329), + [anon_sym_export] = ACTIONS(3329), + [anon_sym_default] = ACTIONS(3329), + [anon_sym_type] = ACTIONS(3329), + [anon_sym_namespace] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_RBRACE] = ACTIONS(3329), + [anon_sym_typeof] = ACTIONS(3329), + [anon_sym_import] = ACTIONS(3329), + [anon_sym_with] = ACTIONS(3329), + [anon_sym_var] = ACTIONS(3329), + [anon_sym_let] = ACTIONS(3329), + [anon_sym_const] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_switch] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3329), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_await] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3329), + [anon_sym_do] = ACTIONS(3329), + [anon_sym_try] = ACTIONS(3329), + [anon_sym_break] = ACTIONS(3329), + [anon_sym_continue] = ACTIONS(3329), + [anon_sym_debugger] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3329), + [anon_sym_throw] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_case] = ACTIONS(3329), + [anon_sym_yield] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_LTtemplate_GT] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(3329), + [anon_sym_SQUOTE] = ACTIONS(3329), + [anon_sym_class] = ACTIONS(3329), + [anon_sym_async] = ACTIONS(3329), + [anon_sym_function] = ACTIONS(3329), + [anon_sym_new] = ACTIONS(3329), + [anon_sym_using] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_SLASH] = ACTIONS(3329), + [anon_sym_LT] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_void] = ACTIONS(3329), + [anon_sym_delete] = ACTIONS(3329), + [anon_sym_PLUS_PLUS] = ACTIONS(3329), + [anon_sym_DASH_DASH] = ACTIONS(3329), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3401), - [sym_number] = ACTIONS(3401), - [sym_private_property_identifier] = ACTIONS(3401), - [sym_this] = ACTIONS(3401), - [sym_super] = ACTIONS(3401), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_null] = ACTIONS(3401), - [sym_undefined] = ACTIONS(3401), - [anon_sym_AT] = ACTIONS(3401), - [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_abstract] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3401), - [anon_sym_enum] = ACTIONS(3401), + [anon_sym_BQUOTE] = ACTIONS(3329), + [sym_number] = ACTIONS(3329), + [sym_private_property_identifier] = ACTIONS(3329), + [sym_this] = ACTIONS(3329), + [sym_super] = ACTIONS(3329), + [sym_true] = ACTIONS(3329), + [sym_false] = ACTIONS(3329), + [sym_null] = ACTIONS(3329), + [sym_undefined] = ACTIONS(3329), + [anon_sym_AT] = ACTIONS(3329), + [anon_sym_static] = ACTIONS(3329), + [anon_sym_readonly] = ACTIONS(3329), + [anon_sym_get] = ACTIONS(3329), + [anon_sym_set] = ACTIONS(3329), + [anon_sym_declare] = ACTIONS(3329), + [anon_sym_public] = ACTIONS(3329), + [anon_sym_private] = ACTIONS(3329), + [anon_sym_protected] = ACTIONS(3329), + [anon_sym_override] = ACTIONS(3329), + [anon_sym_module] = ACTIONS(3329), + [anon_sym_any] = ACTIONS(3329), + [anon_sym_number] = ACTIONS(3329), + [anon_sym_boolean] = ACTIONS(3329), + [anon_sym_string] = ACTIONS(3329), + [anon_sym_symbol] = ACTIONS(3329), + [anon_sym_object] = ACTIONS(3329), + [anon_sym_abstract] = ACTIONS(3329), + [anon_sym_interface] = ACTIONS(3329), + [anon_sym_enum] = ACTIONS(3329), [sym_html_comment] = ACTIONS(5), }, - [1325] = { - [sym_comment] = STATE(1325), - [ts_builtin_sym_end] = ACTIONS(3519), - [sym_identifier] = ACTIONS(3451), - [anon_sym_export] = ACTIONS(3451), - [anon_sym_type] = ACTIONS(3451), - [anon_sym_namespace] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3451), - [anon_sym_typeof] = ACTIONS(3451), - [anon_sym_import] = ACTIONS(3451), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_var] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_const] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_else] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_switch] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_await] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_break] = ACTIONS(3451), - [anon_sym_continue] = ACTIONS(3451), - [anon_sym_debugger] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_throw] = ACTIONS(3451), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LTtemplate_GT] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_class] = ACTIONS(3451), - [anon_sym_async] = ACTIONS(3451), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_using] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_SLASH] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_void] = ACTIONS(3451), - [anon_sym_delete] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_DASH_DASH] = ACTIONS(3451), + [1312] = { + [sym_comment] = STATE(1312), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3451), - [sym_number] = ACTIONS(3451), - [sym_private_property_identifier] = ACTIONS(3451), - [sym_this] = ACTIONS(3451), - [sym_super] = ACTIONS(3451), - [sym_true] = ACTIONS(3451), - [sym_false] = ACTIONS(3451), - [sym_null] = ACTIONS(3451), - [sym_undefined] = ACTIONS(3451), - [anon_sym_AT] = ACTIONS(3451), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3451), - [anon_sym_get] = ACTIONS(3451), - [anon_sym_set] = ACTIONS(3451), - [anon_sym_declare] = ACTIONS(3451), - [anon_sym_public] = ACTIONS(3451), - [anon_sym_private] = ACTIONS(3451), - [anon_sym_protected] = ACTIONS(3451), - [anon_sym_override] = ACTIONS(3451), - [anon_sym_module] = ACTIONS(3451), - [anon_sym_any] = ACTIONS(3451), - [anon_sym_number] = ACTIONS(3451), - [anon_sym_boolean] = ACTIONS(3451), - [anon_sym_string] = ACTIONS(3451), - [anon_sym_symbol] = ACTIONS(3451), - [anon_sym_object] = ACTIONS(3451), - [anon_sym_abstract] = ACTIONS(3451), - [anon_sym_interface] = ACTIONS(3451), - [anon_sym_enum] = ACTIONS(3451), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(2164), [sym_html_comment] = ACTIONS(5), }, - [1326] = { - [sym_comment] = STATE(1326), - [ts_builtin_sym_end] = ACTIONS(3521), - [sym_identifier] = ACTIONS(3397), - [anon_sym_export] = ACTIONS(3397), - [anon_sym_type] = ACTIONS(3397), - [anon_sym_namespace] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_typeof] = ACTIONS(3397), - [anon_sym_import] = ACTIONS(3397), - [anon_sym_with] = ACTIONS(3397), - [anon_sym_var] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_const] = ACTIONS(3397), - [anon_sym_BANG] = ACTIONS(3397), - [anon_sym_else] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_switch] = ACTIONS(3397), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_await] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_try] = ACTIONS(3397), - [anon_sym_break] = ACTIONS(3397), - [anon_sym_continue] = ACTIONS(3397), - [anon_sym_debugger] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_throw] = ACTIONS(3397), - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym_yield] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LTtemplate_GT] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [anon_sym_SQUOTE] = ACTIONS(3397), - [anon_sym_class] = ACTIONS(3397), - [anon_sym_async] = ACTIONS(3397), - [anon_sym_function] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_using] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_SLASH] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_void] = ACTIONS(3397), - [anon_sym_delete] = ACTIONS(3397), - [anon_sym_PLUS_PLUS] = ACTIONS(3397), - [anon_sym_DASH_DASH] = ACTIONS(3397), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3397), - [sym_number] = ACTIONS(3397), - [sym_private_property_identifier] = ACTIONS(3397), - [sym_this] = ACTIONS(3397), - [sym_super] = ACTIONS(3397), - [sym_true] = ACTIONS(3397), - [sym_false] = ACTIONS(3397), - [sym_null] = ACTIONS(3397), - [sym_undefined] = ACTIONS(3397), - [anon_sym_AT] = ACTIONS(3397), - [anon_sym_static] = ACTIONS(3397), - [anon_sym_readonly] = ACTIONS(3397), - [anon_sym_get] = ACTIONS(3397), - [anon_sym_set] = ACTIONS(3397), - [anon_sym_declare] = ACTIONS(3397), - [anon_sym_public] = ACTIONS(3397), - [anon_sym_private] = ACTIONS(3397), - [anon_sym_protected] = ACTIONS(3397), - [anon_sym_override] = ACTIONS(3397), - [anon_sym_module] = ACTIONS(3397), - [anon_sym_any] = ACTIONS(3397), - [anon_sym_number] = ACTIONS(3397), - [anon_sym_boolean] = ACTIONS(3397), - [anon_sym_string] = ACTIONS(3397), - [anon_sym_symbol] = ACTIONS(3397), - [anon_sym_object] = ACTIONS(3397), - [anon_sym_abstract] = ACTIONS(3397), - [anon_sym_interface] = ACTIONS(3397), - [anon_sym_enum] = ACTIONS(3397), + [1313] = { + [sym_comment] = STATE(1313), + [sym_identifier] = ACTIONS(3269), + [anon_sym_export] = ACTIONS(3269), + [anon_sym_default] = ACTIONS(3269), + [anon_sym_type] = ACTIONS(3269), + [anon_sym_namespace] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3269), + [anon_sym_RBRACE] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_import] = ACTIONS(3269), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_var] = ACTIONS(3269), + [anon_sym_let] = ACTIONS(3269), + [anon_sym_const] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_if] = ACTIONS(3269), + [anon_sym_switch] = ACTIONS(3269), + [anon_sym_for] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym_await] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_try] = ACTIONS(3269), + [anon_sym_break] = ACTIONS(3269), + [anon_sym_continue] = ACTIONS(3269), + [anon_sym_debugger] = ACTIONS(3269), + [anon_sym_return] = ACTIONS(3269), + [anon_sym_throw] = ACTIONS(3269), + [anon_sym_SEMI] = ACTIONS(3269), + [anon_sym_case] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_LBRACK] = ACTIONS(3269), + [anon_sym_LTtemplate_GT] = ACTIONS(3269), + [anon_sym_DQUOTE] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3269), + [anon_sym_async] = ACTIONS(3269), + [anon_sym_function] = ACTIONS(3269), + [anon_sym_new] = ACTIONS(3269), + [anon_sym_using] = ACTIONS(3269), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3269), + [anon_sym_void] = ACTIONS(3269), + [anon_sym_delete] = ACTIONS(3269), + [anon_sym_PLUS_PLUS] = ACTIONS(3269), + [anon_sym_DASH_DASH] = ACTIONS(3269), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3269), + [sym_number] = ACTIONS(3269), + [sym_private_property_identifier] = ACTIONS(3269), + [sym_this] = ACTIONS(3269), + [sym_super] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [sym_null] = ACTIONS(3269), + [sym_undefined] = ACTIONS(3269), + [anon_sym_AT] = ACTIONS(3269), + [anon_sym_static] = ACTIONS(3269), + [anon_sym_readonly] = ACTIONS(3269), + [anon_sym_get] = ACTIONS(3269), + [anon_sym_set] = ACTIONS(3269), + [anon_sym_declare] = ACTIONS(3269), + [anon_sym_public] = ACTIONS(3269), + [anon_sym_private] = ACTIONS(3269), + [anon_sym_protected] = ACTIONS(3269), + [anon_sym_override] = ACTIONS(3269), + [anon_sym_module] = ACTIONS(3269), + [anon_sym_any] = ACTIONS(3269), + [anon_sym_number] = ACTIONS(3269), + [anon_sym_boolean] = ACTIONS(3269), + [anon_sym_string] = ACTIONS(3269), + [anon_sym_symbol] = ACTIONS(3269), + [anon_sym_object] = ACTIONS(3269), + [anon_sym_abstract] = ACTIONS(3269), + [anon_sym_interface] = ACTIONS(3269), + [anon_sym_enum] = ACTIONS(3269), [sym_html_comment] = ACTIONS(5), }, - [1327] = { - [sym_comment] = STATE(1327), - [ts_builtin_sym_end] = ACTIONS(3519), - [sym_identifier] = ACTIONS(3451), - [anon_sym_export] = ACTIONS(3451), - [anon_sym_type] = ACTIONS(3451), - [anon_sym_namespace] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3451), - [anon_sym_typeof] = ACTIONS(3451), - [anon_sym_import] = ACTIONS(3451), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_var] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_const] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_else] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_switch] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_await] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_break] = ACTIONS(3451), - [anon_sym_continue] = ACTIONS(3451), - [anon_sym_debugger] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_throw] = ACTIONS(3451), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LTtemplate_GT] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_class] = ACTIONS(3451), - [anon_sym_async] = ACTIONS(3451), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_using] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_SLASH] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_void] = ACTIONS(3451), - [anon_sym_delete] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_DASH_DASH] = ACTIONS(3451), + [1314] = { + [sym_comment] = STATE(1314), + [ts_builtin_sym_end] = ACTIONS(3535), + [sym_identifier] = ACTIONS(3279), + [anon_sym_export] = ACTIONS(3279), + [anon_sym_type] = ACTIONS(3279), + [anon_sym_namespace] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_typeof] = ACTIONS(3279), + [anon_sym_import] = ACTIONS(3279), + [anon_sym_with] = ACTIONS(3279), + [anon_sym_var] = ACTIONS(3279), + [anon_sym_let] = ACTIONS(3279), + [anon_sym_const] = ACTIONS(3279), + [anon_sym_BANG] = ACTIONS(3279), + [anon_sym_else] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_switch] = ACTIONS(3279), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3279), + [anon_sym_await] = ACTIONS(3279), + [anon_sym_while] = ACTIONS(3279), + [anon_sym_do] = ACTIONS(3279), + [anon_sym_try] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_debugger] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_throw] = ACTIONS(3279), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_yield] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3279), + [anon_sym_LTtemplate_GT] = ACTIONS(3279), + [anon_sym_DQUOTE] = ACTIONS(3279), + [anon_sym_SQUOTE] = ACTIONS(3279), + [anon_sym_class] = ACTIONS(3279), + [anon_sym_async] = ACTIONS(3279), + [anon_sym_function] = ACTIONS(3279), + [anon_sym_new] = ACTIONS(3279), + [anon_sym_using] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_SLASH] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_void] = ACTIONS(3279), + [anon_sym_delete] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_DASH_DASH] = ACTIONS(3279), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3451), - [sym_number] = ACTIONS(3451), - [sym_private_property_identifier] = ACTIONS(3451), - [sym_this] = ACTIONS(3451), - [sym_super] = ACTIONS(3451), - [sym_true] = ACTIONS(3451), - [sym_false] = ACTIONS(3451), - [sym_null] = ACTIONS(3451), - [sym_undefined] = ACTIONS(3451), - [anon_sym_AT] = ACTIONS(3451), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3451), - [anon_sym_get] = ACTIONS(3451), - [anon_sym_set] = ACTIONS(3451), - [anon_sym_declare] = ACTIONS(3451), - [anon_sym_public] = ACTIONS(3451), - [anon_sym_private] = ACTIONS(3451), - [anon_sym_protected] = ACTIONS(3451), - [anon_sym_override] = ACTIONS(3451), - [anon_sym_module] = ACTIONS(3451), - [anon_sym_any] = ACTIONS(3451), - [anon_sym_number] = ACTIONS(3451), - [anon_sym_boolean] = ACTIONS(3451), - [anon_sym_string] = ACTIONS(3451), - [anon_sym_symbol] = ACTIONS(3451), - [anon_sym_object] = ACTIONS(3451), - [anon_sym_abstract] = ACTIONS(3451), - [anon_sym_interface] = ACTIONS(3451), - [anon_sym_enum] = ACTIONS(3451), + [anon_sym_BQUOTE] = ACTIONS(3279), + [sym_number] = ACTIONS(3279), + [sym_private_property_identifier] = ACTIONS(3279), + [sym_this] = ACTIONS(3279), + [sym_super] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_null] = ACTIONS(3279), + [sym_undefined] = ACTIONS(3279), + [anon_sym_AT] = ACTIONS(3279), + [anon_sym_static] = ACTIONS(3279), + [anon_sym_readonly] = ACTIONS(3279), + [anon_sym_get] = ACTIONS(3279), + [anon_sym_set] = ACTIONS(3279), + [anon_sym_declare] = ACTIONS(3279), + [anon_sym_public] = ACTIONS(3279), + [anon_sym_private] = ACTIONS(3279), + [anon_sym_protected] = ACTIONS(3279), + [anon_sym_override] = ACTIONS(3279), + [anon_sym_module] = ACTIONS(3279), + [anon_sym_any] = ACTIONS(3279), + [anon_sym_number] = ACTIONS(3279), + [anon_sym_boolean] = ACTIONS(3279), + [anon_sym_string] = ACTIONS(3279), + [anon_sym_symbol] = ACTIONS(3279), + [anon_sym_object] = ACTIONS(3279), + [anon_sym_abstract] = ACTIONS(3279), + [anon_sym_interface] = ACTIONS(3279), + [anon_sym_enum] = ACTIONS(3279), [sym_html_comment] = ACTIONS(5), }, - [1328] = { - [sym_comment] = STATE(1328), + [1315] = { + [sym_comment] = STATE(1315), + [ts_builtin_sym_end] = ACTIONS(3537), + [sym_identifier] = ACTIONS(3373), + [anon_sym_export] = ACTIONS(3373), + [anon_sym_type] = ACTIONS(3373), + [anon_sym_namespace] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_typeof] = ACTIONS(3373), + [anon_sym_import] = ACTIONS(3373), + [anon_sym_with] = ACTIONS(3373), + [anon_sym_var] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_const] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(3373), + [anon_sym_else] = ACTIONS(3373), + [anon_sym_if] = ACTIONS(3373), + [anon_sym_switch] = ACTIONS(3373), + [anon_sym_for] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_await] = ACTIONS(3373), + [anon_sym_while] = ACTIONS(3373), + [anon_sym_do] = ACTIONS(3373), + [anon_sym_try] = ACTIONS(3373), + [anon_sym_break] = ACTIONS(3373), + [anon_sym_continue] = ACTIONS(3373), + [anon_sym_debugger] = ACTIONS(3373), + [anon_sym_return] = ACTIONS(3373), + [anon_sym_throw] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [anon_sym_yield] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_LTtemplate_GT] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(3373), + [anon_sym_SQUOTE] = ACTIONS(3373), + [anon_sym_class] = ACTIONS(3373), + [anon_sym_async] = ACTIONS(3373), + [anon_sym_function] = ACTIONS(3373), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_using] = ACTIONS(3373), + [anon_sym_PLUS] = ACTIONS(3373), + [anon_sym_DASH] = ACTIONS(3373), + [anon_sym_SLASH] = ACTIONS(3373), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_TILDE] = ACTIONS(3373), + [anon_sym_void] = ACTIONS(3373), + [anon_sym_delete] = ACTIONS(3373), + [anon_sym_PLUS_PLUS] = ACTIONS(3373), + [anon_sym_DASH_DASH] = ACTIONS(3373), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3373), + [sym_number] = ACTIONS(3373), + [sym_private_property_identifier] = ACTIONS(3373), + [sym_this] = ACTIONS(3373), + [sym_super] = ACTIONS(3373), + [sym_true] = ACTIONS(3373), + [sym_false] = ACTIONS(3373), + [sym_null] = ACTIONS(3373), + [sym_undefined] = ACTIONS(3373), + [anon_sym_AT] = ACTIONS(3373), + [anon_sym_static] = ACTIONS(3373), + [anon_sym_readonly] = ACTIONS(3373), + [anon_sym_get] = ACTIONS(3373), + [anon_sym_set] = ACTIONS(3373), + [anon_sym_declare] = ACTIONS(3373), + [anon_sym_public] = ACTIONS(3373), + [anon_sym_private] = ACTIONS(3373), + [anon_sym_protected] = ACTIONS(3373), + [anon_sym_override] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_any] = ACTIONS(3373), + [anon_sym_number] = ACTIONS(3373), + [anon_sym_boolean] = ACTIONS(3373), + [anon_sym_string] = ACTIONS(3373), + [anon_sym_symbol] = ACTIONS(3373), + [anon_sym_object] = ACTIONS(3373), + [anon_sym_abstract] = ACTIONS(3373), + [anon_sym_interface] = ACTIONS(3373), + [anon_sym_enum] = ACTIONS(3373), + [sym_html_comment] = ACTIONS(5), + }, + [1316] = { + [sym_comment] = STATE(1316), + [sym_identifier] = ACTIONS(3247), + [anon_sym_export] = ACTIONS(3247), + [anon_sym_default] = ACTIONS(3247), + [anon_sym_type] = ACTIONS(3247), + [anon_sym_namespace] = ACTIONS(3247), + [anon_sym_LBRACE] = ACTIONS(3247), + [anon_sym_RBRACE] = ACTIONS(3247), + [anon_sym_typeof] = ACTIONS(3247), + [anon_sym_import] = ACTIONS(3247), + [anon_sym_with] = ACTIONS(3247), + [anon_sym_var] = ACTIONS(3247), + [anon_sym_let] = ACTIONS(3247), + [anon_sym_const] = ACTIONS(3247), + [anon_sym_BANG] = ACTIONS(3247), + [anon_sym_if] = ACTIONS(3247), + [anon_sym_switch] = ACTIONS(3247), + [anon_sym_for] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3247), + [anon_sym_await] = ACTIONS(3247), + [anon_sym_while] = ACTIONS(3247), + [anon_sym_do] = ACTIONS(3247), + [anon_sym_try] = ACTIONS(3247), + [anon_sym_break] = ACTIONS(3247), + [anon_sym_continue] = ACTIONS(3247), + [anon_sym_debugger] = ACTIONS(3247), + [anon_sym_return] = ACTIONS(3247), + [anon_sym_throw] = ACTIONS(3247), + [anon_sym_SEMI] = ACTIONS(3247), + [anon_sym_case] = ACTIONS(3247), + [anon_sym_yield] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_LTtemplate_GT] = ACTIONS(3247), + [anon_sym_DQUOTE] = ACTIONS(3247), + [anon_sym_SQUOTE] = ACTIONS(3247), + [anon_sym_class] = ACTIONS(3247), + [anon_sym_async] = ACTIONS(3247), + [anon_sym_function] = ACTIONS(3247), + [anon_sym_new] = ACTIONS(3247), + [anon_sym_using] = ACTIONS(3247), + [anon_sym_PLUS] = ACTIONS(3247), + [anon_sym_DASH] = ACTIONS(3247), + [anon_sym_SLASH] = ACTIONS(3247), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_TILDE] = ACTIONS(3247), + [anon_sym_void] = ACTIONS(3247), + [anon_sym_delete] = ACTIONS(3247), + [anon_sym_PLUS_PLUS] = ACTIONS(3247), + [anon_sym_DASH_DASH] = ACTIONS(3247), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3247), + [sym_number] = ACTIONS(3247), + [sym_private_property_identifier] = ACTIONS(3247), + [sym_this] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_true] = ACTIONS(3247), + [sym_false] = ACTIONS(3247), + [sym_null] = ACTIONS(3247), + [sym_undefined] = ACTIONS(3247), + [anon_sym_AT] = ACTIONS(3247), + [anon_sym_static] = ACTIONS(3247), + [anon_sym_readonly] = ACTIONS(3247), + [anon_sym_get] = ACTIONS(3247), + [anon_sym_set] = ACTIONS(3247), + [anon_sym_declare] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(3247), + [anon_sym_private] = ACTIONS(3247), + [anon_sym_protected] = ACTIONS(3247), + [anon_sym_override] = ACTIONS(3247), + [anon_sym_module] = ACTIONS(3247), + [anon_sym_any] = ACTIONS(3247), + [anon_sym_number] = ACTIONS(3247), + [anon_sym_boolean] = ACTIONS(3247), + [anon_sym_string] = ACTIONS(3247), + [anon_sym_symbol] = ACTIONS(3247), + [anon_sym_object] = ACTIONS(3247), + [anon_sym_abstract] = ACTIONS(3247), + [anon_sym_interface] = ACTIONS(3247), + [anon_sym_enum] = ACTIONS(3247), + [sym_html_comment] = ACTIONS(5), + }, + [1317] = { + [sym_comment] = STATE(1317), + [ts_builtin_sym_end] = ACTIONS(3539), + [sym_identifier] = ACTIONS(3371), + [anon_sym_export] = ACTIONS(3371), + [anon_sym_type] = ACTIONS(3371), + [anon_sym_namespace] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3371), + [anon_sym_RBRACE] = ACTIONS(3371), + [anon_sym_typeof] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_with] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [anon_sym_let] = ACTIONS(3371), + [anon_sym_const] = ACTIONS(3371), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_else] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3371), + [anon_sym_await] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_debugger] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3371), + [anon_sym_yield] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3371), + [anon_sym_LTtemplate_GT] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(3371), + [anon_sym_SQUOTE] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_async] = ACTIONS(3371), + [anon_sym_function] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_LT] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_void] = ACTIONS(3371), + [anon_sym_delete] = ACTIONS(3371), + [anon_sym_PLUS_PLUS] = ACTIONS(3371), + [anon_sym_DASH_DASH] = ACTIONS(3371), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3371), + [sym_number] = ACTIONS(3371), + [sym_private_property_identifier] = ACTIONS(3371), + [sym_this] = ACTIONS(3371), + [sym_super] = ACTIONS(3371), + [sym_true] = ACTIONS(3371), + [sym_false] = ACTIONS(3371), + [sym_null] = ACTIONS(3371), + [sym_undefined] = ACTIONS(3371), + [anon_sym_AT] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_readonly] = ACTIONS(3371), + [anon_sym_get] = ACTIONS(3371), + [anon_sym_set] = ACTIONS(3371), + [anon_sym_declare] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_protected] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_module] = ACTIONS(3371), + [anon_sym_any] = ACTIONS(3371), + [anon_sym_number] = ACTIONS(3371), + [anon_sym_boolean] = ACTIONS(3371), + [anon_sym_string] = ACTIONS(3371), + [anon_sym_symbol] = ACTIONS(3371), + [anon_sym_object] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), + [sym_html_comment] = ACTIONS(5), + }, + [1318] = { + [sym_comment] = STATE(1318), + [ts_builtin_sym_end] = ACTIONS(3541), [sym_identifier] = ACTIONS(3369), [anon_sym_export] = ACTIONS(3369), - [anon_sym_default] = ACTIONS(3369), [anon_sym_type] = ACTIONS(3369), [anon_sym_namespace] = ACTIONS(3369), [anon_sym_LBRACE] = ACTIONS(3369), @@ -171480,6 +170341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3369), [anon_sym_const] = ACTIONS(3369), [anon_sym_BANG] = ACTIONS(3369), + [anon_sym_else] = ACTIONS(3369), [anon_sym_if] = ACTIONS(3369), [anon_sym_switch] = ACTIONS(3369), [anon_sym_for] = ACTIONS(3369), @@ -171494,7 +170356,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3369), [anon_sym_throw] = ACTIONS(3369), [anon_sym_SEMI] = ACTIONS(3369), - [anon_sym_case] = ACTIONS(3369), [anon_sym_yield] = ACTIONS(3369), [anon_sym_LBRACK] = ACTIONS(3369), [anon_sym_LTtemplate_GT] = ACTIONS(3369), @@ -171546,992 +170407,664 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3369), [sym_html_comment] = ACTIONS(5), }, - [1329] = { - [sym_comment] = STATE(1329), - [ts_builtin_sym_end] = ACTIONS(3523), - [sym_identifier] = ACTIONS(3311), - [anon_sym_export] = ACTIONS(3311), - [anon_sym_type] = ACTIONS(3311), - [anon_sym_namespace] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_typeof] = ACTIONS(3311), - [anon_sym_import] = ACTIONS(3311), - [anon_sym_with] = ACTIONS(3311), - [anon_sym_var] = ACTIONS(3311), - [anon_sym_let] = ACTIONS(3311), - [anon_sym_const] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_else] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_switch] = ACTIONS(3311), - [anon_sym_for] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_await] = ACTIONS(3311), - [anon_sym_while] = ACTIONS(3311), - [anon_sym_do] = ACTIONS(3311), - [anon_sym_try] = ACTIONS(3311), - [anon_sym_break] = ACTIONS(3311), - [anon_sym_continue] = ACTIONS(3311), - [anon_sym_debugger] = ACTIONS(3311), - [anon_sym_return] = ACTIONS(3311), - [anon_sym_throw] = ACTIONS(3311), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym_yield] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3311), - [anon_sym_LTtemplate_GT] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_class] = ACTIONS(3311), - [anon_sym_async] = ACTIONS(3311), - [anon_sym_function] = ACTIONS(3311), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_using] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_SLASH] = ACTIONS(3311), - [anon_sym_LT] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_void] = ACTIONS(3311), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_DASH_DASH] = ACTIONS(3311), + [1319] = { + [sym_comment] = STATE(1319), + [ts_builtin_sym_end] = ACTIONS(3543), + [sym_identifier] = ACTIONS(3367), + [anon_sym_export] = ACTIONS(3367), + [anon_sym_type] = ACTIONS(3367), + [anon_sym_namespace] = ACTIONS(3367), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_typeof] = ACTIONS(3367), + [anon_sym_import] = ACTIONS(3367), + [anon_sym_with] = ACTIONS(3367), + [anon_sym_var] = ACTIONS(3367), + [anon_sym_let] = ACTIONS(3367), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(3367), + [anon_sym_else] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), + [anon_sym_switch] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_await] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_do] = ACTIONS(3367), + [anon_sym_try] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_debugger] = ACTIONS(3367), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_throw] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [anon_sym_LTtemplate_GT] = ACTIONS(3367), + [anon_sym_DQUOTE] = ACTIONS(3367), + [anon_sym_SQUOTE] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_function] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_using] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(3367), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_TILDE] = ACTIONS(3367), + [anon_sym_void] = ACTIONS(3367), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_PLUS_PLUS] = ACTIONS(3367), + [anon_sym_DASH_DASH] = ACTIONS(3367), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3311), - [sym_number] = ACTIONS(3311), - [sym_private_property_identifier] = ACTIONS(3311), - [sym_this] = ACTIONS(3311), - [sym_super] = ACTIONS(3311), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_null] = ACTIONS(3311), - [sym_undefined] = ACTIONS(3311), - [anon_sym_AT] = ACTIONS(3311), - [anon_sym_static] = ACTIONS(3311), - [anon_sym_readonly] = ACTIONS(3311), - [anon_sym_get] = ACTIONS(3311), - [anon_sym_set] = ACTIONS(3311), - [anon_sym_declare] = ACTIONS(3311), - [anon_sym_public] = ACTIONS(3311), - [anon_sym_private] = ACTIONS(3311), - [anon_sym_protected] = ACTIONS(3311), - [anon_sym_override] = ACTIONS(3311), - [anon_sym_module] = ACTIONS(3311), - [anon_sym_any] = ACTIONS(3311), - [anon_sym_number] = ACTIONS(3311), - [anon_sym_boolean] = ACTIONS(3311), - [anon_sym_string] = ACTIONS(3311), - [anon_sym_symbol] = ACTIONS(3311), - [anon_sym_object] = ACTIONS(3311), - [anon_sym_abstract] = ACTIONS(3311), - [anon_sym_interface] = ACTIONS(3311), - [anon_sym_enum] = ACTIONS(3311), + [anon_sym_BQUOTE] = ACTIONS(3367), + [sym_number] = ACTIONS(3367), + [sym_private_property_identifier] = ACTIONS(3367), + [sym_this] = ACTIONS(3367), + [sym_super] = ACTIONS(3367), + [sym_true] = ACTIONS(3367), + [sym_false] = ACTIONS(3367), + [sym_null] = ACTIONS(3367), + [sym_undefined] = ACTIONS(3367), + [anon_sym_AT] = ACTIONS(3367), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_get] = ACTIONS(3367), + [anon_sym_set] = ACTIONS(3367), + [anon_sym_declare] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3367), + [anon_sym_module] = ACTIONS(3367), + [anon_sym_any] = ACTIONS(3367), + [anon_sym_number] = ACTIONS(3367), + [anon_sym_boolean] = ACTIONS(3367), + [anon_sym_string] = ACTIONS(3367), + [anon_sym_symbol] = ACTIONS(3367), + [anon_sym_object] = ACTIONS(3367), + [anon_sym_abstract] = ACTIONS(3367), + [anon_sym_interface] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), [sym_html_comment] = ACTIONS(5), }, - [1330] = { - [sym_comment] = STATE(1330), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1320] = { + [sym_comment] = STATE(1320), + [sym_identifier] = ACTIONS(3249), + [anon_sym_export] = ACTIONS(3249), + [anon_sym_default] = ACTIONS(3249), + [anon_sym_type] = ACTIONS(3249), + [anon_sym_namespace] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_RBRACE] = ACTIONS(3249), + [anon_sym_typeof] = ACTIONS(3249), + [anon_sym_import] = ACTIONS(3249), + [anon_sym_with] = ACTIONS(3249), + [anon_sym_var] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_const] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_switch] = ACTIONS(3249), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_await] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_break] = ACTIONS(3249), + [anon_sym_continue] = ACTIONS(3249), + [anon_sym_debugger] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_throw] = ACTIONS(3249), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_case] = ACTIONS(3249), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LTtemplate_GT] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_SQUOTE] = ACTIONS(3249), + [anon_sym_class] = ACTIONS(3249), + [anon_sym_async] = ACTIONS(3249), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_using] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), + [anon_sym_void] = ACTIONS(3249), + [anon_sym_delete] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3249), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3249), + [sym_number] = ACTIONS(3249), + [sym_private_property_identifier] = ACTIONS(3249), + [sym_this] = ACTIONS(3249), + [sym_super] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_null] = ACTIONS(3249), + [sym_undefined] = ACTIONS(3249), + [anon_sym_AT] = ACTIONS(3249), + [anon_sym_static] = ACTIONS(3249), + [anon_sym_readonly] = ACTIONS(3249), + [anon_sym_get] = ACTIONS(3249), + [anon_sym_set] = ACTIONS(3249), + [anon_sym_declare] = ACTIONS(3249), + [anon_sym_public] = ACTIONS(3249), + [anon_sym_private] = ACTIONS(3249), + [anon_sym_protected] = ACTIONS(3249), + [anon_sym_override] = ACTIONS(3249), + [anon_sym_module] = ACTIONS(3249), + [anon_sym_any] = ACTIONS(3249), + [anon_sym_number] = ACTIONS(3249), + [anon_sym_boolean] = ACTIONS(3249), + [anon_sym_string] = ACTIONS(3249), + [anon_sym_symbol] = ACTIONS(3249), + [anon_sym_object] = ACTIONS(3249), + [anon_sym_abstract] = ACTIONS(3249), + [anon_sym_interface] = ACTIONS(3249), + [anon_sym_enum] = ACTIONS(3249), [sym_html_comment] = ACTIONS(5), }, - [1331] = { - [sym_comment] = STATE(1331), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1321] = { + [sym_comment] = STATE(1321), + [ts_builtin_sym_end] = ACTIONS(3543), + [sym_identifier] = ACTIONS(3367), + [anon_sym_export] = ACTIONS(3367), + [anon_sym_type] = ACTIONS(3367), + [anon_sym_namespace] = ACTIONS(3367), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_typeof] = ACTIONS(3367), + [anon_sym_import] = ACTIONS(3367), + [anon_sym_with] = ACTIONS(3367), + [anon_sym_var] = ACTIONS(3367), + [anon_sym_let] = ACTIONS(3367), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(3367), + [anon_sym_else] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), + [anon_sym_switch] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_await] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_do] = ACTIONS(3367), + [anon_sym_try] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_debugger] = ACTIONS(3367), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_throw] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [anon_sym_LTtemplate_GT] = ACTIONS(3367), + [anon_sym_DQUOTE] = ACTIONS(3367), + [anon_sym_SQUOTE] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_function] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_using] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(3367), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_TILDE] = ACTIONS(3367), + [anon_sym_void] = ACTIONS(3367), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_PLUS_PLUS] = ACTIONS(3367), + [anon_sym_DASH_DASH] = ACTIONS(3367), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3367), + [sym_number] = ACTIONS(3367), + [sym_private_property_identifier] = ACTIONS(3367), + [sym_this] = ACTIONS(3367), + [sym_super] = ACTIONS(3367), + [sym_true] = ACTIONS(3367), + [sym_false] = ACTIONS(3367), + [sym_null] = ACTIONS(3367), + [sym_undefined] = ACTIONS(3367), + [anon_sym_AT] = ACTIONS(3367), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_get] = ACTIONS(3367), + [anon_sym_set] = ACTIONS(3367), + [anon_sym_declare] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3367), + [anon_sym_module] = ACTIONS(3367), + [anon_sym_any] = ACTIONS(3367), + [anon_sym_number] = ACTIONS(3367), + [anon_sym_boolean] = ACTIONS(3367), + [anon_sym_string] = ACTIONS(3367), + [anon_sym_symbol] = ACTIONS(3367), + [anon_sym_object] = ACTIONS(3367), + [anon_sym_abstract] = ACTIONS(3367), + [anon_sym_interface] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), [sym_html_comment] = ACTIONS(5), }, - [1332] = { - [sym_comment] = STATE(1332), - [sym_identifier] = ACTIONS(3373), - [anon_sym_export] = ACTIONS(3373), - [anon_sym_default] = ACTIONS(3373), - [anon_sym_type] = ACTIONS(3373), - [anon_sym_namespace] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_typeof] = ACTIONS(3373), - [anon_sym_import] = ACTIONS(3373), - [anon_sym_with] = ACTIONS(3373), - [anon_sym_var] = ACTIONS(3373), - [anon_sym_let] = ACTIONS(3373), - [anon_sym_const] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(3373), - [anon_sym_if] = ACTIONS(3373), - [anon_sym_switch] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_await] = ACTIONS(3373), - [anon_sym_while] = ACTIONS(3373), - [anon_sym_do] = ACTIONS(3373), - [anon_sym_try] = ACTIONS(3373), - [anon_sym_break] = ACTIONS(3373), - [anon_sym_continue] = ACTIONS(3373), - [anon_sym_debugger] = ACTIONS(3373), - [anon_sym_return] = ACTIONS(3373), - [anon_sym_throw] = ACTIONS(3373), - [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_case] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_LTtemplate_GT] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(3373), - [anon_sym_SQUOTE] = ACTIONS(3373), - [anon_sym_class] = ACTIONS(3373), - [anon_sym_async] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_using] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_SLASH] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_void] = ACTIONS(3373), - [anon_sym_delete] = ACTIONS(3373), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), + [1322] = { + [sym_comment] = STATE(1322), + [ts_builtin_sym_end] = ACTIONS(3545), + [sym_identifier] = ACTIONS(3273), + [anon_sym_export] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3273), + [anon_sym_namespace] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(3273), + [anon_sym_RBRACE] = ACTIONS(3273), + [anon_sym_typeof] = ACTIONS(3273), + [anon_sym_import] = ACTIONS(3273), + [anon_sym_with] = ACTIONS(3273), + [anon_sym_var] = ACTIONS(3273), + [anon_sym_let] = ACTIONS(3273), + [anon_sym_const] = ACTIONS(3273), + [anon_sym_BANG] = ACTIONS(3273), + [anon_sym_else] = ACTIONS(3273), + [anon_sym_if] = ACTIONS(3273), + [anon_sym_switch] = ACTIONS(3273), + [anon_sym_for] = ACTIONS(3273), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_await] = ACTIONS(3273), + [anon_sym_while] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3273), + [anon_sym_try] = ACTIONS(3273), + [anon_sym_break] = ACTIONS(3273), + [anon_sym_continue] = ACTIONS(3273), + [anon_sym_debugger] = ACTIONS(3273), + [anon_sym_return] = ACTIONS(3273), + [anon_sym_throw] = ACTIONS(3273), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_yield] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_LTtemplate_GT] = ACTIONS(3273), + [anon_sym_DQUOTE] = ACTIONS(3273), + [anon_sym_SQUOTE] = ACTIONS(3273), + [anon_sym_class] = ACTIONS(3273), + [anon_sym_async] = ACTIONS(3273), + [anon_sym_function] = ACTIONS(3273), + [anon_sym_new] = ACTIONS(3273), + [anon_sym_using] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3273), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_SLASH] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_void] = ACTIONS(3273), + [anon_sym_delete] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_DASH_DASH] = ACTIONS(3273), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3373), - [sym_number] = ACTIONS(3373), - [sym_private_property_identifier] = ACTIONS(3373), - [sym_this] = ACTIONS(3373), - [sym_super] = ACTIONS(3373), - [sym_true] = ACTIONS(3373), - [sym_false] = ACTIONS(3373), - [sym_null] = ACTIONS(3373), - [sym_undefined] = ACTIONS(3373), - [anon_sym_AT] = ACTIONS(3373), - [anon_sym_static] = ACTIONS(3373), - [anon_sym_readonly] = ACTIONS(3373), - [anon_sym_get] = ACTIONS(3373), - [anon_sym_set] = ACTIONS(3373), - [anon_sym_declare] = ACTIONS(3373), - [anon_sym_public] = ACTIONS(3373), - [anon_sym_private] = ACTIONS(3373), - [anon_sym_protected] = ACTIONS(3373), - [anon_sym_override] = ACTIONS(3373), - [anon_sym_module] = ACTIONS(3373), - [anon_sym_any] = ACTIONS(3373), - [anon_sym_number] = ACTIONS(3373), - [anon_sym_boolean] = ACTIONS(3373), - [anon_sym_string] = ACTIONS(3373), - [anon_sym_symbol] = ACTIONS(3373), - [anon_sym_object] = ACTIONS(3373), - [anon_sym_abstract] = ACTIONS(3373), - [anon_sym_interface] = ACTIONS(3373), - [anon_sym_enum] = ACTIONS(3373), + [anon_sym_BQUOTE] = ACTIONS(3273), + [sym_number] = ACTIONS(3273), + [sym_private_property_identifier] = ACTIONS(3273), + [sym_this] = ACTIONS(3273), + [sym_super] = ACTIONS(3273), + [sym_true] = ACTIONS(3273), + [sym_false] = ACTIONS(3273), + [sym_null] = ACTIONS(3273), + [sym_undefined] = ACTIONS(3273), + [anon_sym_AT] = ACTIONS(3273), + [anon_sym_static] = ACTIONS(3273), + [anon_sym_readonly] = ACTIONS(3273), + [anon_sym_get] = ACTIONS(3273), + [anon_sym_set] = ACTIONS(3273), + [anon_sym_declare] = ACTIONS(3273), + [anon_sym_public] = ACTIONS(3273), + [anon_sym_private] = ACTIONS(3273), + [anon_sym_protected] = ACTIONS(3273), + [anon_sym_override] = ACTIONS(3273), + [anon_sym_module] = ACTIONS(3273), + [anon_sym_any] = ACTIONS(3273), + [anon_sym_number] = ACTIONS(3273), + [anon_sym_boolean] = ACTIONS(3273), + [anon_sym_string] = ACTIONS(3273), + [anon_sym_symbol] = ACTIONS(3273), + [anon_sym_object] = ACTIONS(3273), + [anon_sym_abstract] = ACTIONS(3273), + [anon_sym_interface] = ACTIONS(3273), + [anon_sym_enum] = ACTIONS(3273), [sym_html_comment] = ACTIONS(5), }, - [1333] = { - [sym_comment] = STATE(1333), - [ts_builtin_sym_end] = ACTIONS(3519), - [sym_identifier] = ACTIONS(3451), - [anon_sym_export] = ACTIONS(3451), - [anon_sym_type] = ACTIONS(3451), - [anon_sym_namespace] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3451), - [anon_sym_typeof] = ACTIONS(3451), - [anon_sym_import] = ACTIONS(3451), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_var] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_const] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_else] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_switch] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_await] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_break] = ACTIONS(3451), - [anon_sym_continue] = ACTIONS(3451), - [anon_sym_debugger] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_throw] = ACTIONS(3451), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LTtemplate_GT] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_class] = ACTIONS(3451), - [anon_sym_async] = ACTIONS(3451), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_using] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_SLASH] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_void] = ACTIONS(3451), - [anon_sym_delete] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_DASH_DASH] = ACTIONS(3451), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3451), - [sym_number] = ACTIONS(3451), - [sym_private_property_identifier] = ACTIONS(3451), - [sym_this] = ACTIONS(3451), - [sym_super] = ACTIONS(3451), - [sym_true] = ACTIONS(3451), - [sym_false] = ACTIONS(3451), - [sym_null] = ACTIONS(3451), - [sym_undefined] = ACTIONS(3451), - [anon_sym_AT] = ACTIONS(3451), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3451), - [anon_sym_get] = ACTIONS(3451), - [anon_sym_set] = ACTIONS(3451), - [anon_sym_declare] = ACTIONS(3451), - [anon_sym_public] = ACTIONS(3451), - [anon_sym_private] = ACTIONS(3451), - [anon_sym_protected] = ACTIONS(3451), - [anon_sym_override] = ACTIONS(3451), - [anon_sym_module] = ACTIONS(3451), - [anon_sym_any] = ACTIONS(3451), - [anon_sym_number] = ACTIONS(3451), - [anon_sym_boolean] = ACTIONS(3451), - [anon_sym_string] = ACTIONS(3451), - [anon_sym_symbol] = ACTIONS(3451), - [anon_sym_object] = ACTIONS(3451), - [anon_sym_abstract] = ACTIONS(3451), - [anon_sym_interface] = ACTIONS(3451), - [anon_sym_enum] = ACTIONS(3451), + [1323] = { + [sym_comment] = STATE(1323), + [ts_builtin_sym_end] = ACTIONS(3547), + [sym_identifier] = ACTIONS(3365), + [anon_sym_export] = ACTIONS(3365), + [anon_sym_type] = ACTIONS(3365), + [anon_sym_namespace] = ACTIONS(3365), + [anon_sym_LBRACE] = ACTIONS(3365), + [anon_sym_RBRACE] = ACTIONS(3365), + [anon_sym_typeof] = ACTIONS(3365), + [anon_sym_import] = ACTIONS(3365), + [anon_sym_with] = ACTIONS(3365), + [anon_sym_var] = ACTIONS(3365), + [anon_sym_let] = ACTIONS(3365), + [anon_sym_const] = ACTIONS(3365), + [anon_sym_BANG] = ACTIONS(3365), + [anon_sym_else] = ACTIONS(3365), + [anon_sym_if] = ACTIONS(3365), + [anon_sym_switch] = ACTIONS(3365), + [anon_sym_for] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_await] = ACTIONS(3365), + [anon_sym_while] = ACTIONS(3365), + [anon_sym_do] = ACTIONS(3365), + [anon_sym_try] = ACTIONS(3365), + [anon_sym_break] = ACTIONS(3365), + [anon_sym_continue] = ACTIONS(3365), + [anon_sym_debugger] = ACTIONS(3365), + [anon_sym_return] = ACTIONS(3365), + [anon_sym_throw] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3365), + [anon_sym_yield] = ACTIONS(3365), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LTtemplate_GT] = ACTIONS(3365), + [anon_sym_DQUOTE] = ACTIONS(3365), + [anon_sym_SQUOTE] = ACTIONS(3365), + [anon_sym_class] = ACTIONS(3365), + [anon_sym_async] = ACTIONS(3365), + [anon_sym_function] = ACTIONS(3365), + [anon_sym_new] = ACTIONS(3365), + [anon_sym_using] = ACTIONS(3365), + [anon_sym_PLUS] = ACTIONS(3365), + [anon_sym_DASH] = ACTIONS(3365), + [anon_sym_SLASH] = ACTIONS(3365), + [anon_sym_LT] = ACTIONS(3365), + [anon_sym_TILDE] = ACTIONS(3365), + [anon_sym_void] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3365), + [anon_sym_PLUS_PLUS] = ACTIONS(3365), + [anon_sym_DASH_DASH] = ACTIONS(3365), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3365), + [sym_number] = ACTIONS(3365), + [sym_private_property_identifier] = ACTIONS(3365), + [sym_this] = ACTIONS(3365), + [sym_super] = ACTIONS(3365), + [sym_true] = ACTIONS(3365), + [sym_false] = ACTIONS(3365), + [sym_null] = ACTIONS(3365), + [sym_undefined] = ACTIONS(3365), + [anon_sym_AT] = ACTIONS(3365), + [anon_sym_static] = ACTIONS(3365), + [anon_sym_readonly] = ACTIONS(3365), + [anon_sym_get] = ACTIONS(3365), + [anon_sym_set] = ACTIONS(3365), + [anon_sym_declare] = ACTIONS(3365), + [anon_sym_public] = ACTIONS(3365), + [anon_sym_private] = ACTIONS(3365), + [anon_sym_protected] = ACTIONS(3365), + [anon_sym_override] = ACTIONS(3365), + [anon_sym_module] = ACTIONS(3365), + [anon_sym_any] = ACTIONS(3365), + [anon_sym_number] = ACTIONS(3365), + [anon_sym_boolean] = ACTIONS(3365), + [anon_sym_string] = ACTIONS(3365), + [anon_sym_symbol] = ACTIONS(3365), + [anon_sym_object] = ACTIONS(3365), + [anon_sym_abstract] = ACTIONS(3365), + [anon_sym_interface] = ACTIONS(3365), + [anon_sym_enum] = ACTIONS(3365), [sym_html_comment] = ACTIONS(5), }, - [1334] = { - [sym_comment] = STATE(1334), - [sym_identifier] = ACTIONS(3379), - [anon_sym_export] = ACTIONS(3379), - [anon_sym_default] = ACTIONS(3379), - [anon_sym_type] = ACTIONS(3379), - [anon_sym_namespace] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3379), - [anon_sym_typeof] = ACTIONS(3379), - [anon_sym_import] = ACTIONS(3379), - [anon_sym_with] = ACTIONS(3379), - [anon_sym_var] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_switch] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_await] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_debugger] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_throw] = ACTIONS(3379), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_case] = ACTIONS(3379), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LTtemplate_GT] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_class] = ACTIONS(3379), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_using] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_void] = ACTIONS(3379), - [anon_sym_delete] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3379), - [anon_sym_DASH_DASH] = ACTIONS(3379), + [1324] = { + [sym_comment] = STATE(1324), + [ts_builtin_sym_end] = ACTIONS(3549), + [sym_identifier] = ACTIONS(3363), + [anon_sym_export] = ACTIONS(3363), + [anon_sym_type] = ACTIONS(3363), + [anon_sym_namespace] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3363), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_typeof] = ACTIONS(3363), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_const] = ACTIONS(3363), + [anon_sym_BANG] = ACTIONS(3363), + [anon_sym_else] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_await] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_debugger] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3363), + [anon_sym_LTtemplate_GT] = ACTIONS(3363), + [anon_sym_DQUOTE] = ACTIONS(3363), + [anon_sym_SQUOTE] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_async] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [anon_sym_void] = ACTIONS(3363), + [anon_sym_delete] = ACTIONS(3363), + [anon_sym_PLUS_PLUS] = ACTIONS(3363), + [anon_sym_DASH_DASH] = ACTIONS(3363), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3379), - [sym_number] = ACTIONS(3379), - [sym_private_property_identifier] = ACTIONS(3379), - [sym_this] = ACTIONS(3379), - [sym_super] = ACTIONS(3379), - [sym_true] = ACTIONS(3379), - [sym_false] = ACTIONS(3379), - [sym_null] = ACTIONS(3379), - [sym_undefined] = ACTIONS(3379), - [anon_sym_AT] = ACTIONS(3379), - [anon_sym_static] = ACTIONS(3379), - [anon_sym_readonly] = ACTIONS(3379), - [anon_sym_get] = ACTIONS(3379), - [anon_sym_set] = ACTIONS(3379), - [anon_sym_declare] = ACTIONS(3379), - [anon_sym_public] = ACTIONS(3379), - [anon_sym_private] = ACTIONS(3379), - [anon_sym_protected] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3379), - [anon_sym_module] = ACTIONS(3379), - [anon_sym_any] = ACTIONS(3379), - [anon_sym_number] = ACTIONS(3379), - [anon_sym_boolean] = ACTIONS(3379), - [anon_sym_string] = ACTIONS(3379), - [anon_sym_symbol] = ACTIONS(3379), - [anon_sym_object] = ACTIONS(3379), - [anon_sym_abstract] = ACTIONS(3379), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), + [anon_sym_BQUOTE] = ACTIONS(3363), + [sym_number] = ACTIONS(3363), + [sym_private_property_identifier] = ACTIONS(3363), + [sym_this] = ACTIONS(3363), + [sym_super] = ACTIONS(3363), + [sym_true] = ACTIONS(3363), + [sym_false] = ACTIONS(3363), + [sym_null] = ACTIONS(3363), + [sym_undefined] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_get] = ACTIONS(3363), + [anon_sym_set] = ACTIONS(3363), + [anon_sym_declare] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_protected] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_module] = ACTIONS(3363), + [anon_sym_any] = ACTIONS(3363), + [anon_sym_number] = ACTIONS(3363), + [anon_sym_boolean] = ACTIONS(3363), + [anon_sym_string] = ACTIONS(3363), + [anon_sym_symbol] = ACTIONS(3363), + [anon_sym_object] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), [sym_html_comment] = ACTIONS(5), }, - [1335] = { - [sym_comment] = STATE(1335), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1325] = { + [sym_comment] = STATE(1325), + [sym_identifier] = ACTIONS(3231), + [anon_sym_export] = ACTIONS(3231), + [anon_sym_default] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_namespace] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3231), + [anon_sym_RBRACE] = ACTIONS(3231), + [anon_sym_typeof] = ACTIONS(3231), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_with] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3231), + [anon_sym_let] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [anon_sym_BANG] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_switch] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(3231), + [anon_sym_await] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_do] = ACTIONS(3231), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_debugger] = ACTIONS(3231), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_throw] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3231), + [anon_sym_case] = ACTIONS(3231), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3231), + [anon_sym_LTtemplate_GT] = ACTIONS(3231), + [anon_sym_DQUOTE] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_function] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_using] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_SLASH] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_TILDE] = ACTIONS(3231), + [anon_sym_void] = ACTIONS(3231), + [anon_sym_delete] = ACTIONS(3231), + [anon_sym_PLUS_PLUS] = ACTIONS(3231), + [anon_sym_DASH_DASH] = ACTIONS(3231), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [sym_html_comment] = ACTIONS(5), - }, - [1336] = { - [sym_comment] = STATE(1336), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [sym_html_comment] = ACTIONS(5), - }, - [1337] = { - [sym_comment] = STATE(1337), - [ts_builtin_sym_end] = ACTIONS(3525), - [sym_identifier] = ACTIONS(3455), - [anon_sym_export] = ACTIONS(3455), - [anon_sym_type] = ACTIONS(3455), - [anon_sym_namespace] = ACTIONS(3455), - [anon_sym_LBRACE] = ACTIONS(3455), - [anon_sym_RBRACE] = ACTIONS(3455), - [anon_sym_typeof] = ACTIONS(3455), - [anon_sym_import] = ACTIONS(3455), - [anon_sym_with] = ACTIONS(3455), - [anon_sym_var] = ACTIONS(3455), - [anon_sym_let] = ACTIONS(3455), - [anon_sym_const] = ACTIONS(3455), - [anon_sym_BANG] = ACTIONS(3455), - [anon_sym_else] = ACTIONS(3455), - [anon_sym_if] = ACTIONS(3455), - [anon_sym_switch] = ACTIONS(3455), - [anon_sym_for] = ACTIONS(3455), - [anon_sym_LPAREN] = ACTIONS(3455), - [anon_sym_await] = ACTIONS(3455), - [anon_sym_while] = ACTIONS(3455), - [anon_sym_do] = ACTIONS(3455), - [anon_sym_try] = ACTIONS(3455), - [anon_sym_break] = ACTIONS(3455), - [anon_sym_continue] = ACTIONS(3455), - [anon_sym_debugger] = ACTIONS(3455), - [anon_sym_return] = ACTIONS(3455), - [anon_sym_throw] = ACTIONS(3455), - [anon_sym_SEMI] = ACTIONS(3455), - [anon_sym_yield] = ACTIONS(3455), - [anon_sym_LBRACK] = ACTIONS(3455), - [anon_sym_LTtemplate_GT] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3455), - [anon_sym_class] = ACTIONS(3455), - [anon_sym_async] = ACTIONS(3455), - [anon_sym_function] = ACTIONS(3455), - [anon_sym_new] = ACTIONS(3455), - [anon_sym_using] = ACTIONS(3455), - [anon_sym_PLUS] = ACTIONS(3455), - [anon_sym_DASH] = ACTIONS(3455), - [anon_sym_SLASH] = ACTIONS(3455), - [anon_sym_LT] = ACTIONS(3455), - [anon_sym_TILDE] = ACTIONS(3455), - [anon_sym_void] = ACTIONS(3455), - [anon_sym_delete] = ACTIONS(3455), - [anon_sym_PLUS_PLUS] = ACTIONS(3455), - [anon_sym_DASH_DASH] = ACTIONS(3455), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3455), - [sym_number] = ACTIONS(3455), - [sym_private_property_identifier] = ACTIONS(3455), - [sym_this] = ACTIONS(3455), - [sym_super] = ACTIONS(3455), - [sym_true] = ACTIONS(3455), - [sym_false] = ACTIONS(3455), - [sym_null] = ACTIONS(3455), - [sym_undefined] = ACTIONS(3455), - [anon_sym_AT] = ACTIONS(3455), - [anon_sym_static] = ACTIONS(3455), - [anon_sym_readonly] = ACTIONS(3455), - [anon_sym_get] = ACTIONS(3455), - [anon_sym_set] = ACTIONS(3455), - [anon_sym_declare] = ACTIONS(3455), - [anon_sym_public] = ACTIONS(3455), - [anon_sym_private] = ACTIONS(3455), - [anon_sym_protected] = ACTIONS(3455), - [anon_sym_override] = ACTIONS(3455), - [anon_sym_module] = ACTIONS(3455), - [anon_sym_any] = ACTIONS(3455), - [anon_sym_number] = ACTIONS(3455), - [anon_sym_boolean] = ACTIONS(3455), - [anon_sym_string] = ACTIONS(3455), - [anon_sym_symbol] = ACTIONS(3455), - [anon_sym_object] = ACTIONS(3455), - [anon_sym_abstract] = ACTIONS(3455), - [anon_sym_interface] = ACTIONS(3455), - [anon_sym_enum] = ACTIONS(3455), + [anon_sym_BQUOTE] = ACTIONS(3231), + [sym_number] = ACTIONS(3231), + [sym_private_property_identifier] = ACTIONS(3231), + [sym_this] = ACTIONS(3231), + [sym_super] = ACTIONS(3231), + [sym_true] = ACTIONS(3231), + [sym_false] = ACTIONS(3231), + [sym_null] = ACTIONS(3231), + [sym_undefined] = ACTIONS(3231), + [anon_sym_AT] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3231), + [anon_sym_get] = ACTIONS(3231), + [anon_sym_set] = ACTIONS(3231), + [anon_sym_declare] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_private] = ACTIONS(3231), + [anon_sym_protected] = ACTIONS(3231), + [anon_sym_override] = ACTIONS(3231), + [anon_sym_module] = ACTIONS(3231), + [anon_sym_any] = ACTIONS(3231), + [anon_sym_number] = ACTIONS(3231), + [anon_sym_boolean] = ACTIONS(3231), + [anon_sym_string] = ACTIONS(3231), + [anon_sym_symbol] = ACTIONS(3231), + [anon_sym_object] = ACTIONS(3231), + [anon_sym_abstract] = ACTIONS(3231), + [anon_sym_interface] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), [sym_html_comment] = ACTIONS(5), }, - [1338] = { - [sym_comment] = STATE(1338), - [ts_builtin_sym_end] = ACTIONS(3527), - [sym_identifier] = ACTIONS(3453), - [anon_sym_export] = ACTIONS(3453), - [anon_sym_type] = ACTIONS(3453), - [anon_sym_namespace] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_RBRACE] = ACTIONS(3453), - [anon_sym_typeof] = ACTIONS(3453), - [anon_sym_import] = ACTIONS(3453), - [anon_sym_with] = ACTIONS(3453), - [anon_sym_var] = ACTIONS(3453), - [anon_sym_let] = ACTIONS(3453), - [anon_sym_const] = ACTIONS(3453), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_else] = ACTIONS(3453), - [anon_sym_if] = ACTIONS(3453), - [anon_sym_switch] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3453), - [anon_sym_await] = ACTIONS(3453), - [anon_sym_while] = ACTIONS(3453), - [anon_sym_do] = ACTIONS(3453), - [anon_sym_try] = ACTIONS(3453), - [anon_sym_break] = ACTIONS(3453), - [anon_sym_continue] = ACTIONS(3453), - [anon_sym_debugger] = ACTIONS(3453), - [anon_sym_return] = ACTIONS(3453), - [anon_sym_throw] = ACTIONS(3453), - [anon_sym_SEMI] = ACTIONS(3453), - [anon_sym_yield] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_LTtemplate_GT] = ACTIONS(3453), - [anon_sym_DQUOTE] = ACTIONS(3453), - [anon_sym_SQUOTE] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_async] = ACTIONS(3453), - [anon_sym_function] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3453), - [anon_sym_using] = ACTIONS(3453), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_SLASH] = ACTIONS(3453), - [anon_sym_LT] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(3453), - [anon_sym_void] = ACTIONS(3453), - [anon_sym_delete] = ACTIONS(3453), - [anon_sym_PLUS_PLUS] = ACTIONS(3453), - [anon_sym_DASH_DASH] = ACTIONS(3453), + [1326] = { + [sym_comment] = STATE(1326), + [sym_identifier] = ACTIONS(3231), + [anon_sym_export] = ACTIONS(3231), + [anon_sym_default] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_namespace] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3231), + [anon_sym_RBRACE] = ACTIONS(3231), + [anon_sym_typeof] = ACTIONS(3231), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_with] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3231), + [anon_sym_let] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [anon_sym_BANG] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_switch] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(3231), + [anon_sym_await] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_do] = ACTIONS(3231), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_debugger] = ACTIONS(3231), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_throw] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3231), + [anon_sym_case] = ACTIONS(3231), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3231), + [anon_sym_LTtemplate_GT] = ACTIONS(3231), + [anon_sym_DQUOTE] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_function] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_using] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_SLASH] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_TILDE] = ACTIONS(3231), + [anon_sym_void] = ACTIONS(3231), + [anon_sym_delete] = ACTIONS(3231), + [anon_sym_PLUS_PLUS] = ACTIONS(3231), + [anon_sym_DASH_DASH] = ACTIONS(3231), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3453), - [sym_number] = ACTIONS(3453), - [sym_private_property_identifier] = ACTIONS(3453), - [sym_this] = ACTIONS(3453), - [sym_super] = ACTIONS(3453), - [sym_true] = ACTIONS(3453), - [sym_false] = ACTIONS(3453), - [sym_null] = ACTIONS(3453), - [sym_undefined] = ACTIONS(3453), - [anon_sym_AT] = ACTIONS(3453), - [anon_sym_static] = ACTIONS(3453), - [anon_sym_readonly] = ACTIONS(3453), - [anon_sym_get] = ACTIONS(3453), - [anon_sym_set] = ACTIONS(3453), - [anon_sym_declare] = ACTIONS(3453), - [anon_sym_public] = ACTIONS(3453), - [anon_sym_private] = ACTIONS(3453), - [anon_sym_protected] = ACTIONS(3453), - [anon_sym_override] = ACTIONS(3453), - [anon_sym_module] = ACTIONS(3453), - [anon_sym_any] = ACTIONS(3453), - [anon_sym_number] = ACTIONS(3453), - [anon_sym_boolean] = ACTIONS(3453), - [anon_sym_string] = ACTIONS(3453), - [anon_sym_symbol] = ACTIONS(3453), - [anon_sym_object] = ACTIONS(3453), - [anon_sym_abstract] = ACTIONS(3453), - [anon_sym_interface] = ACTIONS(3453), - [anon_sym_enum] = ACTIONS(3453), - [sym_html_comment] = ACTIONS(5), - }, - [1339] = { - [sym_comment] = STATE(1339), - [sym_identifier] = ACTIONS(3381), - [anon_sym_export] = ACTIONS(3381), - [anon_sym_default] = ACTIONS(3381), - [anon_sym_type] = ACTIONS(3381), - [anon_sym_namespace] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_typeof] = ACTIONS(3381), - [anon_sym_import] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3381), - [anon_sym_var] = ACTIONS(3381), - [anon_sym_let] = ACTIONS(3381), - [anon_sym_const] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3381), - [anon_sym_if] = ACTIONS(3381), - [anon_sym_switch] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_await] = ACTIONS(3381), - [anon_sym_while] = ACTIONS(3381), - [anon_sym_do] = ACTIONS(3381), - [anon_sym_try] = ACTIONS(3381), - [anon_sym_break] = ACTIONS(3381), - [anon_sym_continue] = ACTIONS(3381), - [anon_sym_debugger] = ACTIONS(3381), - [anon_sym_return] = ACTIONS(3381), - [anon_sym_throw] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_case] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LTtemplate_GT] = ACTIONS(3381), - [anon_sym_DQUOTE] = ACTIONS(3381), - [anon_sym_SQUOTE] = ACTIONS(3381), - [anon_sym_class] = ACTIONS(3381), - [anon_sym_async] = ACTIONS(3381), - [anon_sym_function] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3381), - [anon_sym_using] = ACTIONS(3381), - [anon_sym_PLUS] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_SLASH] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_void] = ACTIONS(3381), - [anon_sym_delete] = ACTIONS(3381), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3381), - [sym_number] = ACTIONS(3381), - [sym_private_property_identifier] = ACTIONS(3381), - [sym_this] = ACTIONS(3381), - [sym_super] = ACTIONS(3381), - [sym_true] = ACTIONS(3381), - [sym_false] = ACTIONS(3381), - [sym_null] = ACTIONS(3381), - [sym_undefined] = ACTIONS(3381), - [anon_sym_AT] = ACTIONS(3381), - [anon_sym_static] = ACTIONS(3381), - [anon_sym_readonly] = ACTIONS(3381), - [anon_sym_get] = ACTIONS(3381), - [anon_sym_set] = ACTIONS(3381), - [anon_sym_declare] = ACTIONS(3381), - [anon_sym_public] = ACTIONS(3381), - [anon_sym_private] = ACTIONS(3381), - [anon_sym_protected] = ACTIONS(3381), - [anon_sym_override] = ACTIONS(3381), - [anon_sym_module] = ACTIONS(3381), - [anon_sym_any] = ACTIONS(3381), - [anon_sym_number] = ACTIONS(3381), - [anon_sym_boolean] = ACTIONS(3381), - [anon_sym_string] = ACTIONS(3381), - [anon_sym_symbol] = ACTIONS(3381), - [anon_sym_object] = ACTIONS(3381), - [anon_sym_abstract] = ACTIONS(3381), - [anon_sym_interface] = ACTIONS(3381), - [anon_sym_enum] = ACTIONS(3381), - [sym_html_comment] = ACTIONS(5), - }, - [1340] = { - [sym_comment] = STATE(1340), - [ts_builtin_sym_end] = ACTIONS(3529), - [sym_identifier] = ACTIONS(3461), - [anon_sym_export] = ACTIONS(3461), - [anon_sym_type] = ACTIONS(3461), - [anon_sym_namespace] = ACTIONS(3461), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_RBRACE] = ACTIONS(3461), - [anon_sym_typeof] = ACTIONS(3461), - [anon_sym_import] = ACTIONS(3461), - [anon_sym_with] = ACTIONS(3461), - [anon_sym_var] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_const] = ACTIONS(3461), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_else] = ACTIONS(3461), - [anon_sym_if] = ACTIONS(3461), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_for] = ACTIONS(3461), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_await] = ACTIONS(3461), - [anon_sym_while] = ACTIONS(3461), - [anon_sym_do] = ACTIONS(3461), - [anon_sym_try] = ACTIONS(3461), - [anon_sym_break] = ACTIONS(3461), - [anon_sym_continue] = ACTIONS(3461), - [anon_sym_debugger] = ACTIONS(3461), - [anon_sym_return] = ACTIONS(3461), - [anon_sym_throw] = ACTIONS(3461), - [anon_sym_SEMI] = ACTIONS(3461), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_LTtemplate_GT] = ACTIONS(3461), - [anon_sym_DQUOTE] = ACTIONS(3461), - [anon_sym_SQUOTE] = ACTIONS(3461), - [anon_sym_class] = ACTIONS(3461), - [anon_sym_async] = ACTIONS(3461), - [anon_sym_function] = ACTIONS(3461), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_using] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3461), - [anon_sym_void] = ACTIONS(3461), - [anon_sym_delete] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3461), - [anon_sym_DASH_DASH] = ACTIONS(3461), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3461), - [sym_number] = ACTIONS(3461), - [sym_private_property_identifier] = ACTIONS(3461), - [sym_this] = ACTIONS(3461), - [sym_super] = ACTIONS(3461), - [sym_true] = ACTIONS(3461), - [sym_false] = ACTIONS(3461), - [sym_null] = ACTIONS(3461), - [sym_undefined] = ACTIONS(3461), - [anon_sym_AT] = ACTIONS(3461), - [anon_sym_static] = ACTIONS(3461), - [anon_sym_readonly] = ACTIONS(3461), - [anon_sym_get] = ACTIONS(3461), - [anon_sym_set] = ACTIONS(3461), - [anon_sym_declare] = ACTIONS(3461), - [anon_sym_public] = ACTIONS(3461), - [anon_sym_private] = ACTIONS(3461), - [anon_sym_protected] = ACTIONS(3461), - [anon_sym_override] = ACTIONS(3461), - [anon_sym_module] = ACTIONS(3461), - [anon_sym_any] = ACTIONS(3461), - [anon_sym_number] = ACTIONS(3461), - [anon_sym_boolean] = ACTIONS(3461), - [anon_sym_string] = ACTIONS(3461), - [anon_sym_symbol] = ACTIONS(3461), - [anon_sym_object] = ACTIONS(3461), - [anon_sym_abstract] = ACTIONS(3461), - [anon_sym_interface] = ACTIONS(3461), - [anon_sym_enum] = ACTIONS(3461), + [anon_sym_BQUOTE] = ACTIONS(3231), + [sym_number] = ACTIONS(3231), + [sym_private_property_identifier] = ACTIONS(3231), + [sym_this] = ACTIONS(3231), + [sym_super] = ACTIONS(3231), + [sym_true] = ACTIONS(3231), + [sym_false] = ACTIONS(3231), + [sym_null] = ACTIONS(3231), + [sym_undefined] = ACTIONS(3231), + [anon_sym_AT] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3231), + [anon_sym_get] = ACTIONS(3231), + [anon_sym_set] = ACTIONS(3231), + [anon_sym_declare] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_private] = ACTIONS(3231), + [anon_sym_protected] = ACTIONS(3231), + [anon_sym_override] = ACTIONS(3231), + [anon_sym_module] = ACTIONS(3231), + [anon_sym_any] = ACTIONS(3231), + [anon_sym_number] = ACTIONS(3231), + [anon_sym_boolean] = ACTIONS(3231), + [anon_sym_string] = ACTIONS(3231), + [anon_sym_symbol] = ACTIONS(3231), + [anon_sym_object] = ACTIONS(3231), + [anon_sym_abstract] = ACTIONS(3231), + [anon_sym_interface] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), [sym_html_comment] = ACTIONS(5), }, - [1341] = { - [sym_comment] = STATE(1341), + [1327] = { + [sym_comment] = STATE(1327), [sym_identifier] = ACTIONS(3295), [anon_sym_export] = ACTIONS(3295), [anon_sym_default] = ACTIONS(3295), @@ -172612,93 +171145,175 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3295), [sym_html_comment] = ACTIONS(5), }, - [1342] = { - [sym_comment] = STATE(1342), - [ts_builtin_sym_end] = ACTIONS(3531), - [sym_identifier] = ACTIONS(3417), - [anon_sym_export] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_namespace] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_RBRACE] = ACTIONS(3417), - [anon_sym_typeof] = ACTIONS(3417), - [anon_sym_import] = ACTIONS(3417), - [anon_sym_with] = ACTIONS(3417), - [anon_sym_var] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_const] = ACTIONS(3417), - [anon_sym_BANG] = ACTIONS(3417), - [anon_sym_else] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_switch] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_await] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_break] = ACTIONS(3417), - [anon_sym_continue] = ACTIONS(3417), - [anon_sym_debugger] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_throw] = ACTIONS(3417), - [anon_sym_SEMI] = ACTIONS(3417), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LTtemplate_GT] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_SQUOTE] = ACTIONS(3417), - [anon_sym_class] = ACTIONS(3417), - [anon_sym_async] = ACTIONS(3417), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_using] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_void] = ACTIONS(3417), - [anon_sym_delete] = ACTIONS(3417), - [anon_sym_PLUS_PLUS] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3417), + [1328] = { + [sym_comment] = STATE(1328), + [ts_builtin_sym_end] = ACTIONS(3465), + [sym_identifier] = ACTIONS(3357), + [anon_sym_export] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3357), + [anon_sym_namespace] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3357), + [anon_sym_typeof] = ACTIONS(3357), + [anon_sym_import] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3357), + [anon_sym_var] = ACTIONS(3357), + [anon_sym_let] = ACTIONS(3357), + [anon_sym_const] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3357), + [anon_sym_else] = ACTIONS(3357), + [anon_sym_if] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_await] = ACTIONS(3357), + [anon_sym_while] = ACTIONS(3357), + [anon_sym_do] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3357), + [anon_sym_break] = ACTIONS(3357), + [anon_sym_continue] = ACTIONS(3357), + [anon_sym_debugger] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3357), + [anon_sym_throw] = ACTIONS(3357), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_LTtemplate_GT] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_class] = ACTIONS(3357), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3357), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_void] = ACTIONS(3357), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3417), - [sym_number] = ACTIONS(3417), - [sym_private_property_identifier] = ACTIONS(3417), - [sym_this] = ACTIONS(3417), - [sym_super] = ACTIONS(3417), - [sym_true] = ACTIONS(3417), - [sym_false] = ACTIONS(3417), - [sym_null] = ACTIONS(3417), - [sym_undefined] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(3417), - [anon_sym_static] = ACTIONS(3417), - [anon_sym_readonly] = ACTIONS(3417), - [anon_sym_get] = ACTIONS(3417), - [anon_sym_set] = ACTIONS(3417), - [anon_sym_declare] = ACTIONS(3417), - [anon_sym_public] = ACTIONS(3417), - [anon_sym_private] = ACTIONS(3417), - [anon_sym_protected] = ACTIONS(3417), - [anon_sym_override] = ACTIONS(3417), - [anon_sym_module] = ACTIONS(3417), - [anon_sym_any] = ACTIONS(3417), - [anon_sym_number] = ACTIONS(3417), - [anon_sym_boolean] = ACTIONS(3417), - [anon_sym_string] = ACTIONS(3417), - [anon_sym_symbol] = ACTIONS(3417), - [anon_sym_object] = ACTIONS(3417), - [anon_sym_abstract] = ACTIONS(3417), - [anon_sym_interface] = ACTIONS(3417), - [anon_sym_enum] = ACTIONS(3417), + [anon_sym_BQUOTE] = ACTIONS(3357), + [sym_number] = ACTIONS(3357), + [sym_private_property_identifier] = ACTIONS(3357), + [sym_this] = ACTIONS(3357), + [sym_super] = ACTIONS(3357), + [sym_true] = ACTIONS(3357), + [sym_false] = ACTIONS(3357), + [sym_null] = ACTIONS(3357), + [sym_undefined] = ACTIONS(3357), + [anon_sym_AT] = ACTIONS(3357), + [anon_sym_static] = ACTIONS(3357), + [anon_sym_readonly] = ACTIONS(3357), + [anon_sym_get] = ACTIONS(3357), + [anon_sym_set] = ACTIONS(3357), + [anon_sym_declare] = ACTIONS(3357), + [anon_sym_public] = ACTIONS(3357), + [anon_sym_private] = ACTIONS(3357), + [anon_sym_protected] = ACTIONS(3357), + [anon_sym_override] = ACTIONS(3357), + [anon_sym_module] = ACTIONS(3357), + [anon_sym_any] = ACTIONS(3357), + [anon_sym_number] = ACTIONS(3357), + [anon_sym_boolean] = ACTIONS(3357), + [anon_sym_string] = ACTIONS(3357), + [anon_sym_symbol] = ACTIONS(3357), + [anon_sym_object] = ACTIONS(3357), + [anon_sym_abstract] = ACTIONS(3357), + [anon_sym_interface] = ACTIONS(3357), + [anon_sym_enum] = ACTIONS(3357), [sym_html_comment] = ACTIONS(5), }, - [1343] = { - [sym_comment] = STATE(1343), - [ts_builtin_sym_end] = ACTIONS(3533), + [1329] = { + [sym_comment] = STATE(1329), + [sym_identifier] = ACTIONS(3305), + [anon_sym_export] = ACTIONS(3305), + [anon_sym_default] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_namespace] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_typeof] = ACTIONS(3305), + [anon_sym_import] = ACTIONS(3305), + [anon_sym_with] = ACTIONS(3305), + [anon_sym_var] = ACTIONS(3305), + [anon_sym_let] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_switch] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_await] = ACTIONS(3305), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_do] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_debugger] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_throw] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_case] = ACTIONS(3305), + [anon_sym_yield] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_LTtemplate_GT] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3305), + [anon_sym_class] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_function] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3305), + [anon_sym_using] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_void] = ACTIONS(3305), + [anon_sym_delete] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3305), + [sym_number] = ACTIONS(3305), + [sym_private_property_identifier] = ACTIONS(3305), + [sym_this] = ACTIONS(3305), + [sym_super] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_null] = ACTIONS(3305), + [sym_undefined] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [anon_sym_static] = ACTIONS(3305), + [anon_sym_readonly] = ACTIONS(3305), + [anon_sym_get] = ACTIONS(3305), + [anon_sym_set] = ACTIONS(3305), + [anon_sym_declare] = ACTIONS(3305), + [anon_sym_public] = ACTIONS(3305), + [anon_sym_private] = ACTIONS(3305), + [anon_sym_protected] = ACTIONS(3305), + [anon_sym_override] = ACTIONS(3305), + [anon_sym_module] = ACTIONS(3305), + [anon_sym_any] = ACTIONS(3305), + [anon_sym_number] = ACTIONS(3305), + [anon_sym_boolean] = ACTIONS(3305), + [anon_sym_string] = ACTIONS(3305), + [anon_sym_symbol] = ACTIONS(3305), + [anon_sym_object] = ACTIONS(3305), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), + [sym_html_comment] = ACTIONS(5), + }, + [1330] = { + [sym_comment] = STATE(1330), [sym_identifier] = ACTIONS(3309), [anon_sym_export] = ACTIONS(3309), + [anon_sym_default] = ACTIONS(3309), [anon_sym_type] = ACTIONS(3309), [anon_sym_namespace] = ACTIONS(3309), [anon_sym_LBRACE] = ACTIONS(3309), @@ -172710,7 +171325,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3309), [anon_sym_const] = ACTIONS(3309), [anon_sym_BANG] = ACTIONS(3309), - [anon_sym_else] = ACTIONS(3309), [anon_sym_if] = ACTIONS(3309), [anon_sym_switch] = ACTIONS(3309), [anon_sym_for] = ACTIONS(3309), @@ -172725,6 +171339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3309), [anon_sym_throw] = ACTIONS(3309), [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_case] = ACTIONS(3309), [anon_sym_yield] = ACTIONS(3309), [anon_sym_LBRACK] = ACTIONS(3309), [anon_sym_LTtemplate_GT] = ACTIONS(3309), @@ -172776,173 +171391,665 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3309), [sym_html_comment] = ACTIONS(5), }, - [1344] = { - [sym_comment] = STATE(1344), - [ts_builtin_sym_end] = ACTIONS(3535), - [sym_identifier] = ACTIONS(3307), - [anon_sym_export] = ACTIONS(3307), - [anon_sym_type] = ACTIONS(3307), - [anon_sym_namespace] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_RBRACE] = ACTIONS(3307), - [anon_sym_typeof] = ACTIONS(3307), - [anon_sym_import] = ACTIONS(3307), - [anon_sym_with] = ACTIONS(3307), - [anon_sym_var] = ACTIONS(3307), - [anon_sym_let] = ACTIONS(3307), - [anon_sym_const] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3307), - [anon_sym_else] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_switch] = ACTIONS(3307), - [anon_sym_for] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_await] = ACTIONS(3307), - [anon_sym_while] = ACTIONS(3307), - [anon_sym_do] = ACTIONS(3307), - [anon_sym_try] = ACTIONS(3307), - [anon_sym_break] = ACTIONS(3307), - [anon_sym_continue] = ACTIONS(3307), - [anon_sym_debugger] = ACTIONS(3307), - [anon_sym_return] = ACTIONS(3307), - [anon_sym_throw] = ACTIONS(3307), - [anon_sym_SEMI] = ACTIONS(3307), - [anon_sym_yield] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3307), - [anon_sym_LTtemplate_GT] = ACTIONS(3307), - [anon_sym_DQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_class] = ACTIONS(3307), - [anon_sym_async] = ACTIONS(3307), - [anon_sym_function] = ACTIONS(3307), - [anon_sym_new] = ACTIONS(3307), - [anon_sym_using] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3307), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_LT] = ACTIONS(3307), - [anon_sym_TILDE] = ACTIONS(3307), - [anon_sym_void] = ACTIONS(3307), - [anon_sym_delete] = ACTIONS(3307), - [anon_sym_PLUS_PLUS] = ACTIONS(3307), - [anon_sym_DASH_DASH] = ACTIONS(3307), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3307), - [sym_number] = ACTIONS(3307), - [sym_private_property_identifier] = ACTIONS(3307), - [sym_this] = ACTIONS(3307), - [sym_super] = ACTIONS(3307), - [sym_true] = ACTIONS(3307), - [sym_false] = ACTIONS(3307), - [sym_null] = ACTIONS(3307), - [sym_undefined] = ACTIONS(3307), - [anon_sym_AT] = ACTIONS(3307), - [anon_sym_static] = ACTIONS(3307), - [anon_sym_readonly] = ACTIONS(3307), - [anon_sym_get] = ACTIONS(3307), - [anon_sym_set] = ACTIONS(3307), - [anon_sym_declare] = ACTIONS(3307), - [anon_sym_public] = ACTIONS(3307), - [anon_sym_private] = ACTIONS(3307), - [anon_sym_protected] = ACTIONS(3307), - [anon_sym_override] = ACTIONS(3307), - [anon_sym_module] = ACTIONS(3307), - [anon_sym_any] = ACTIONS(3307), - [anon_sym_number] = ACTIONS(3307), - [anon_sym_boolean] = ACTIONS(3307), - [anon_sym_string] = ACTIONS(3307), - [anon_sym_symbol] = ACTIONS(3307), - [anon_sym_object] = ACTIONS(3307), - [anon_sym_abstract] = ACTIONS(3307), - [anon_sym_interface] = ACTIONS(3307), - [anon_sym_enum] = ACTIONS(3307), + [1331] = { + [sym_comment] = STATE(1331), + [ts_builtin_sym_end] = ACTIONS(3551), + [sym_identifier] = ACTIONS(3269), + [anon_sym_export] = ACTIONS(3269), + [anon_sym_type] = ACTIONS(3269), + [anon_sym_namespace] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3269), + [anon_sym_RBRACE] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_import] = ACTIONS(3269), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_var] = ACTIONS(3269), + [anon_sym_let] = ACTIONS(3269), + [anon_sym_const] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_else] = ACTIONS(3269), + [anon_sym_if] = ACTIONS(3269), + [anon_sym_switch] = ACTIONS(3269), + [anon_sym_for] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym_await] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_try] = ACTIONS(3269), + [anon_sym_break] = ACTIONS(3269), + [anon_sym_continue] = ACTIONS(3269), + [anon_sym_debugger] = ACTIONS(3269), + [anon_sym_return] = ACTIONS(3269), + [anon_sym_throw] = ACTIONS(3269), + [anon_sym_SEMI] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_LBRACK] = ACTIONS(3269), + [anon_sym_LTtemplate_GT] = ACTIONS(3269), + [anon_sym_DQUOTE] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3269), + [anon_sym_async] = ACTIONS(3269), + [anon_sym_function] = ACTIONS(3269), + [anon_sym_new] = ACTIONS(3269), + [anon_sym_using] = ACTIONS(3269), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3269), + [anon_sym_void] = ACTIONS(3269), + [anon_sym_delete] = ACTIONS(3269), + [anon_sym_PLUS_PLUS] = ACTIONS(3269), + [anon_sym_DASH_DASH] = ACTIONS(3269), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3269), + [sym_number] = ACTIONS(3269), + [sym_private_property_identifier] = ACTIONS(3269), + [sym_this] = ACTIONS(3269), + [sym_super] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [sym_null] = ACTIONS(3269), + [sym_undefined] = ACTIONS(3269), + [anon_sym_AT] = ACTIONS(3269), + [anon_sym_static] = ACTIONS(3269), + [anon_sym_readonly] = ACTIONS(3269), + [anon_sym_get] = ACTIONS(3269), + [anon_sym_set] = ACTIONS(3269), + [anon_sym_declare] = ACTIONS(3269), + [anon_sym_public] = ACTIONS(3269), + [anon_sym_private] = ACTIONS(3269), + [anon_sym_protected] = ACTIONS(3269), + [anon_sym_override] = ACTIONS(3269), + [anon_sym_module] = ACTIONS(3269), + [anon_sym_any] = ACTIONS(3269), + [anon_sym_number] = ACTIONS(3269), + [anon_sym_boolean] = ACTIONS(3269), + [anon_sym_string] = ACTIONS(3269), + [anon_sym_symbol] = ACTIONS(3269), + [anon_sym_object] = ACTIONS(3269), + [anon_sym_abstract] = ACTIONS(3269), + [anon_sym_interface] = ACTIONS(3269), + [anon_sym_enum] = ACTIONS(3269), [sym_html_comment] = ACTIONS(5), }, - [1345] = { - [sym_comment] = STATE(1345), - [ts_builtin_sym_end] = ACTIONS(2264), - [sym_identifier] = ACTIONS(2262), - [anon_sym_export] = ACTIONS(2262), - [anon_sym_type] = ACTIONS(2262), - [anon_sym_namespace] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_import] = ACTIONS(2262), - [anon_sym_with] = ACTIONS(2262), - [anon_sym_var] = ACTIONS(2262), - [anon_sym_let] = ACTIONS(2262), - [anon_sym_const] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_else] = ACTIONS(2262), - [anon_sym_if] = ACTIONS(2262), - [anon_sym_switch] = ACTIONS(2262), - [anon_sym_for] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_await] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2262), - [anon_sym_do] = ACTIONS(2262), - [anon_sym_try] = ACTIONS(2262), - [anon_sym_break] = ACTIONS(2262), - [anon_sym_continue] = ACTIONS(2262), - [anon_sym_debugger] = ACTIONS(2262), - [anon_sym_return] = ACTIONS(2262), - [anon_sym_throw] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_yield] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_LTtemplate_GT] = ACTIONS(2262), - [anon_sym_DQUOTE] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(2262), - [anon_sym_class] = ACTIONS(2262), - [anon_sym_async] = ACTIONS(2262), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_new] = ACTIONS(2262), - [anon_sym_using] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_SLASH] = ACTIONS(2262), - [anon_sym_LT] = ACTIONS(2262), - [anon_sym_TILDE] = ACTIONS(2262), - [anon_sym_void] = ACTIONS(2262), - [anon_sym_delete] = ACTIONS(2262), - [anon_sym_PLUS_PLUS] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(2262), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2262), - [sym_number] = ACTIONS(2262), - [sym_private_property_identifier] = ACTIONS(2262), - [sym_this] = ACTIONS(2262), - [sym_super] = ACTIONS(2262), - [sym_true] = ACTIONS(2262), - [sym_false] = ACTIONS(2262), - [sym_null] = ACTIONS(2262), - [sym_undefined] = ACTIONS(2262), - [anon_sym_AT] = ACTIONS(2262), - [anon_sym_static] = ACTIONS(2262), - [anon_sym_readonly] = ACTIONS(2262), - [anon_sym_get] = ACTIONS(2262), - [anon_sym_set] = ACTIONS(2262), - [anon_sym_declare] = ACTIONS(2262), - [anon_sym_public] = ACTIONS(2262), - [anon_sym_private] = ACTIONS(2262), - [anon_sym_protected] = ACTIONS(2262), - [anon_sym_override] = ACTIONS(2262), - [anon_sym_module] = ACTIONS(2262), - [anon_sym_any] = ACTIONS(2262), - [anon_sym_number] = ACTIONS(2262), - [anon_sym_boolean] = ACTIONS(2262), - [anon_sym_string] = ACTIONS(2262), - [anon_sym_symbol] = ACTIONS(2262), - [anon_sym_object] = ACTIONS(2262), - [anon_sym_abstract] = ACTIONS(2262), - [anon_sym_interface] = ACTIONS(2262), - [anon_sym_enum] = ACTIONS(2262), + [1332] = { + [sym_comment] = STATE(1332), + [sym_identifier] = ACTIONS(3321), + [anon_sym_export] = ACTIONS(3321), + [anon_sym_default] = ACTIONS(3321), + [anon_sym_type] = ACTIONS(3321), + [anon_sym_namespace] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_typeof] = ACTIONS(3321), + [anon_sym_import] = ACTIONS(3321), + [anon_sym_with] = ACTIONS(3321), + [anon_sym_var] = ACTIONS(3321), + [anon_sym_let] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_switch] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_await] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3321), + [anon_sym_do] = ACTIONS(3321), + [anon_sym_try] = ACTIONS(3321), + [anon_sym_break] = ACTIONS(3321), + [anon_sym_continue] = ACTIONS(3321), + [anon_sym_debugger] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_throw] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_case] = ACTIONS(3321), + [anon_sym_yield] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_LTtemplate_GT] = ACTIONS(3321), + [anon_sym_DQUOTE] = ACTIONS(3321), + [anon_sym_SQUOTE] = ACTIONS(3321), + [anon_sym_class] = ACTIONS(3321), + [anon_sym_async] = ACTIONS(3321), + [anon_sym_function] = ACTIONS(3321), + [anon_sym_new] = ACTIONS(3321), + [anon_sym_using] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_void] = ACTIONS(3321), + [anon_sym_delete] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3321), + [sym_number] = ACTIONS(3321), + [sym_private_property_identifier] = ACTIONS(3321), + [sym_this] = ACTIONS(3321), + [sym_super] = ACTIONS(3321), + [sym_true] = ACTIONS(3321), + [sym_false] = ACTIONS(3321), + [sym_null] = ACTIONS(3321), + [sym_undefined] = ACTIONS(3321), + [anon_sym_AT] = ACTIONS(3321), + [anon_sym_static] = ACTIONS(3321), + [anon_sym_readonly] = ACTIONS(3321), + [anon_sym_get] = ACTIONS(3321), + [anon_sym_set] = ACTIONS(3321), + [anon_sym_declare] = ACTIONS(3321), + [anon_sym_public] = ACTIONS(3321), + [anon_sym_private] = ACTIONS(3321), + [anon_sym_protected] = ACTIONS(3321), + [anon_sym_override] = ACTIONS(3321), + [anon_sym_module] = ACTIONS(3321), + [anon_sym_any] = ACTIONS(3321), + [anon_sym_number] = ACTIONS(3321), + [anon_sym_boolean] = ACTIONS(3321), + [anon_sym_string] = ACTIONS(3321), + [anon_sym_symbol] = ACTIONS(3321), + [anon_sym_object] = ACTIONS(3321), + [anon_sym_abstract] = ACTIONS(3321), + [anon_sym_interface] = ACTIONS(3321), + [anon_sym_enum] = ACTIONS(3321), [sym_html_comment] = ACTIONS(5), }, - [1346] = { - [sym_comment] = STATE(1346), - [ts_builtin_sym_end] = ACTIONS(3537), + [1333] = { + [sym_comment] = STATE(1333), + [sym_identifier] = ACTIONS(3333), + [anon_sym_export] = ACTIONS(3333), + [anon_sym_default] = ACTIONS(3333), + [anon_sym_type] = ACTIONS(3333), + [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_typeof] = ACTIONS(3333), + [anon_sym_import] = ACTIONS(3333), + [anon_sym_with] = ACTIONS(3333), + [anon_sym_var] = ACTIONS(3333), + [anon_sym_let] = ACTIONS(3333), + [anon_sym_const] = ACTIONS(3333), + [anon_sym_BANG] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3333), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_for] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_await] = ACTIONS(3333), + [anon_sym_while] = ACTIONS(3333), + [anon_sym_do] = ACTIONS(3333), + [anon_sym_try] = ACTIONS(3333), + [anon_sym_break] = ACTIONS(3333), + [anon_sym_continue] = ACTIONS(3333), + [anon_sym_debugger] = ACTIONS(3333), + [anon_sym_return] = ACTIONS(3333), + [anon_sym_throw] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_case] = ACTIONS(3333), + [anon_sym_yield] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_LTtemplate_GT] = ACTIONS(3333), + [anon_sym_DQUOTE] = ACTIONS(3333), + [anon_sym_SQUOTE] = ACTIONS(3333), + [anon_sym_class] = ACTIONS(3333), + [anon_sym_async] = ACTIONS(3333), + [anon_sym_function] = ACTIONS(3333), + [anon_sym_new] = ACTIONS(3333), + [anon_sym_using] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_void] = ACTIONS(3333), + [anon_sym_delete] = ACTIONS(3333), + [anon_sym_PLUS_PLUS] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3333), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3333), + [sym_number] = ACTIONS(3333), + [sym_private_property_identifier] = ACTIONS(3333), + [sym_this] = ACTIONS(3333), + [sym_super] = ACTIONS(3333), + [sym_true] = ACTIONS(3333), + [sym_false] = ACTIONS(3333), + [sym_null] = ACTIONS(3333), + [sym_undefined] = ACTIONS(3333), + [anon_sym_AT] = ACTIONS(3333), + [anon_sym_static] = ACTIONS(3333), + [anon_sym_readonly] = ACTIONS(3333), + [anon_sym_get] = ACTIONS(3333), + [anon_sym_set] = ACTIONS(3333), + [anon_sym_declare] = ACTIONS(3333), + [anon_sym_public] = ACTIONS(3333), + [anon_sym_private] = ACTIONS(3333), + [anon_sym_protected] = ACTIONS(3333), + [anon_sym_override] = ACTIONS(3333), + [anon_sym_module] = ACTIONS(3333), + [anon_sym_any] = ACTIONS(3333), + [anon_sym_number] = ACTIONS(3333), + [anon_sym_boolean] = ACTIONS(3333), + [anon_sym_string] = ACTIONS(3333), + [anon_sym_symbol] = ACTIONS(3333), + [anon_sym_object] = ACTIONS(3333), + [anon_sym_abstract] = ACTIONS(3333), + [anon_sym_interface] = ACTIONS(3333), + [anon_sym_enum] = ACTIONS(3333), + [sym_html_comment] = ACTIONS(5), + }, + [1334] = { + [sym_comment] = STATE(1334), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_default] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_case] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), + [sym_html_comment] = ACTIONS(5), + }, + [1335] = { + [sym_comment] = STATE(1335), + [sym_identifier] = ACTIONS(3395), + [anon_sym_export] = ACTIONS(3395), + [anon_sym_default] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_typeof] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3395), + [anon_sym_with] = ACTIONS(3395), + [anon_sym_var] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_debugger] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_case] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_LTtemplate_GT] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_function] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_SLASH] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_void] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3395), + [sym_number] = ACTIONS(3395), + [sym_private_property_identifier] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [sym_null] = ACTIONS(3395), + [sym_undefined] = ACTIONS(3395), + [anon_sym_AT] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_get] = ACTIONS(3395), + [anon_sym_set] = ACTIONS(3395), + [anon_sym_declare] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_private] = ACTIONS(3395), + [anon_sym_protected] = ACTIONS(3395), + [anon_sym_override] = ACTIONS(3395), + [anon_sym_module] = ACTIONS(3395), + [anon_sym_any] = ACTIONS(3395), + [anon_sym_number] = ACTIONS(3395), + [anon_sym_boolean] = ACTIONS(3395), + [anon_sym_string] = ACTIONS(3395), + [anon_sym_symbol] = ACTIONS(3395), + [anon_sym_object] = ACTIONS(3395), + [anon_sym_abstract] = ACTIONS(3395), + [anon_sym_interface] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), + [sym_html_comment] = ACTIONS(5), + }, + [1336] = { + [sym_comment] = STATE(1336), + [sym_identifier] = ACTIONS(3395), + [anon_sym_export] = ACTIONS(3395), + [anon_sym_default] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_typeof] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3395), + [anon_sym_with] = ACTIONS(3395), + [anon_sym_var] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_debugger] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_case] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_LTtemplate_GT] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_function] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_SLASH] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_void] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3395), + [sym_number] = ACTIONS(3395), + [sym_private_property_identifier] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [sym_null] = ACTIONS(3395), + [sym_undefined] = ACTIONS(3395), + [anon_sym_AT] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_get] = ACTIONS(3395), + [anon_sym_set] = ACTIONS(3395), + [anon_sym_declare] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_private] = ACTIONS(3395), + [anon_sym_protected] = ACTIONS(3395), + [anon_sym_override] = ACTIONS(3395), + [anon_sym_module] = ACTIONS(3395), + [anon_sym_any] = ACTIONS(3395), + [anon_sym_number] = ACTIONS(3395), + [anon_sym_boolean] = ACTIONS(3395), + [anon_sym_string] = ACTIONS(3395), + [anon_sym_symbol] = ACTIONS(3395), + [anon_sym_object] = ACTIONS(3395), + [anon_sym_abstract] = ACTIONS(3395), + [anon_sym_interface] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), + [sym_html_comment] = ACTIONS(5), + }, + [1337] = { + [sym_comment] = STATE(1337), + [sym_identifier] = ACTIONS(3395), + [anon_sym_export] = ACTIONS(3395), + [anon_sym_default] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_typeof] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3395), + [anon_sym_with] = ACTIONS(3395), + [anon_sym_var] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_debugger] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_case] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_LTtemplate_GT] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_function] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_SLASH] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_void] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3395), + [sym_number] = ACTIONS(3395), + [sym_private_property_identifier] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [sym_null] = ACTIONS(3395), + [sym_undefined] = ACTIONS(3395), + [anon_sym_AT] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_get] = ACTIONS(3395), + [anon_sym_set] = ACTIONS(3395), + [anon_sym_declare] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_private] = ACTIONS(3395), + [anon_sym_protected] = ACTIONS(3395), + [anon_sym_override] = ACTIONS(3395), + [anon_sym_module] = ACTIONS(3395), + [anon_sym_any] = ACTIONS(3395), + [anon_sym_number] = ACTIONS(3395), + [anon_sym_boolean] = ACTIONS(3395), + [anon_sym_string] = ACTIONS(3395), + [anon_sym_symbol] = ACTIONS(3395), + [anon_sym_object] = ACTIONS(3395), + [anon_sym_abstract] = ACTIONS(3395), + [anon_sym_interface] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), + [sym_html_comment] = ACTIONS(5), + }, + [1338] = { + [sym_comment] = STATE(1338), + [ts_builtin_sym_end] = ACTIONS(3553), + [sym_identifier] = ACTIONS(3249), + [anon_sym_export] = ACTIONS(3249), + [anon_sym_type] = ACTIONS(3249), + [anon_sym_namespace] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_RBRACE] = ACTIONS(3249), + [anon_sym_typeof] = ACTIONS(3249), + [anon_sym_import] = ACTIONS(3249), + [anon_sym_with] = ACTIONS(3249), + [anon_sym_var] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_const] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_else] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_switch] = ACTIONS(3249), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_await] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_break] = ACTIONS(3249), + [anon_sym_continue] = ACTIONS(3249), + [anon_sym_debugger] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_throw] = ACTIONS(3249), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LTtemplate_GT] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_SQUOTE] = ACTIONS(3249), + [anon_sym_class] = ACTIONS(3249), + [anon_sym_async] = ACTIONS(3249), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_using] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), + [anon_sym_void] = ACTIONS(3249), + [anon_sym_delete] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3249), + [sym_number] = ACTIONS(3249), + [sym_private_property_identifier] = ACTIONS(3249), + [sym_this] = ACTIONS(3249), + [sym_super] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_null] = ACTIONS(3249), + [sym_undefined] = ACTIONS(3249), + [anon_sym_AT] = ACTIONS(3249), + [anon_sym_static] = ACTIONS(3249), + [anon_sym_readonly] = ACTIONS(3249), + [anon_sym_get] = ACTIONS(3249), + [anon_sym_set] = ACTIONS(3249), + [anon_sym_declare] = ACTIONS(3249), + [anon_sym_public] = ACTIONS(3249), + [anon_sym_private] = ACTIONS(3249), + [anon_sym_protected] = ACTIONS(3249), + [anon_sym_override] = ACTIONS(3249), + [anon_sym_module] = ACTIONS(3249), + [anon_sym_any] = ACTIONS(3249), + [anon_sym_number] = ACTIONS(3249), + [anon_sym_boolean] = ACTIONS(3249), + [anon_sym_string] = ACTIONS(3249), + [anon_sym_symbol] = ACTIONS(3249), + [anon_sym_object] = ACTIONS(3249), + [anon_sym_abstract] = ACTIONS(3249), + [anon_sym_interface] = ACTIONS(3249), + [anon_sym_enum] = ACTIONS(3249), + [sym_html_comment] = ACTIONS(5), + }, + [1339] = { + [sym_comment] = STATE(1339), + [ts_builtin_sym_end] = ACTIONS(3555), [sym_identifier] = ACTIONS(3231), [anon_sym_export] = ACTIONS(3231), [anon_sym_type] = ACTIONS(3231), @@ -173022,93 +172129,995 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3231), [sym_html_comment] = ACTIONS(5), }, - [1347] = { - [sym_comment] = STATE(1347), - [ts_builtin_sym_end] = ACTIONS(3539), - [sym_identifier] = ACTIONS(3233), - [anon_sym_export] = ACTIONS(3233), - [anon_sym_type] = ACTIONS(3233), - [anon_sym_namespace] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_typeof] = ACTIONS(3233), - [anon_sym_import] = ACTIONS(3233), - [anon_sym_with] = ACTIONS(3233), - [anon_sym_var] = ACTIONS(3233), - [anon_sym_let] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_else] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3233), - [anon_sym_switch] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_await] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3233), - [anon_sym_do] = ACTIONS(3233), - [anon_sym_try] = ACTIONS(3233), - [anon_sym_break] = ACTIONS(3233), - [anon_sym_continue] = ACTIONS(3233), - [anon_sym_debugger] = ACTIONS(3233), - [anon_sym_return] = ACTIONS(3233), - [anon_sym_throw] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3233), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_LTtemplate_GT] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3233), - [anon_sym_class] = ACTIONS(3233), - [anon_sym_async] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3233), - [anon_sym_new] = ACTIONS(3233), - [anon_sym_using] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_SLASH] = ACTIONS(3233), - [anon_sym_LT] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_void] = ACTIONS(3233), - [anon_sym_delete] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3233), - [sym_number] = ACTIONS(3233), - [sym_private_property_identifier] = ACTIONS(3233), - [sym_this] = ACTIONS(3233), - [sym_super] = ACTIONS(3233), - [sym_true] = ACTIONS(3233), - [sym_false] = ACTIONS(3233), - [sym_null] = ACTIONS(3233), - [sym_undefined] = ACTIONS(3233), - [anon_sym_AT] = ACTIONS(3233), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_readonly] = ACTIONS(3233), - [anon_sym_get] = ACTIONS(3233), - [anon_sym_set] = ACTIONS(3233), - [anon_sym_declare] = ACTIONS(3233), - [anon_sym_public] = ACTIONS(3233), - [anon_sym_private] = ACTIONS(3233), - [anon_sym_protected] = ACTIONS(3233), - [anon_sym_override] = ACTIONS(3233), - [anon_sym_module] = ACTIONS(3233), - [anon_sym_any] = ACTIONS(3233), - [anon_sym_number] = ACTIONS(3233), - [anon_sym_boolean] = ACTIONS(3233), - [anon_sym_string] = ACTIONS(3233), - [anon_sym_symbol] = ACTIONS(3233), - [anon_sym_object] = ACTIONS(3233), - [anon_sym_abstract] = ACTIONS(3233), - [anon_sym_interface] = ACTIONS(3233), - [anon_sym_enum] = ACTIONS(3233), - [sym_html_comment] = ACTIONS(5), + [1340] = { + [sym_comment] = STATE(1340), + [ts_builtin_sym_end] = ACTIONS(3555), + [sym_identifier] = ACTIONS(3231), + [anon_sym_export] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_namespace] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3231), + [anon_sym_RBRACE] = ACTIONS(3231), + [anon_sym_typeof] = ACTIONS(3231), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_with] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3231), + [anon_sym_let] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [anon_sym_BANG] = ACTIONS(3231), + [anon_sym_else] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_switch] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(3231), + [anon_sym_await] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_do] = ACTIONS(3231), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_debugger] = ACTIONS(3231), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_throw] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3231), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3231), + [anon_sym_LTtemplate_GT] = ACTIONS(3231), + [anon_sym_DQUOTE] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_function] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_using] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_SLASH] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_TILDE] = ACTIONS(3231), + [anon_sym_void] = ACTIONS(3231), + [anon_sym_delete] = ACTIONS(3231), + [anon_sym_PLUS_PLUS] = ACTIONS(3231), + [anon_sym_DASH_DASH] = ACTIONS(3231), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3231), + [sym_number] = ACTIONS(3231), + [sym_private_property_identifier] = ACTIONS(3231), + [sym_this] = ACTIONS(3231), + [sym_super] = ACTIONS(3231), + [sym_true] = ACTIONS(3231), + [sym_false] = ACTIONS(3231), + [sym_null] = ACTIONS(3231), + [sym_undefined] = ACTIONS(3231), + [anon_sym_AT] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3231), + [anon_sym_get] = ACTIONS(3231), + [anon_sym_set] = ACTIONS(3231), + [anon_sym_declare] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_private] = ACTIONS(3231), + [anon_sym_protected] = ACTIONS(3231), + [anon_sym_override] = ACTIONS(3231), + [anon_sym_module] = ACTIONS(3231), + [anon_sym_any] = ACTIONS(3231), + [anon_sym_number] = ACTIONS(3231), + [anon_sym_boolean] = ACTIONS(3231), + [anon_sym_string] = ACTIONS(3231), + [anon_sym_symbol] = ACTIONS(3231), + [anon_sym_object] = ACTIONS(3231), + [anon_sym_abstract] = ACTIONS(3231), + [anon_sym_interface] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), + [sym_html_comment] = ACTIONS(5), + }, + [1341] = { + [sym_comment] = STATE(1341), + [ts_builtin_sym_end] = ACTIONS(2302), + [sym_identifier] = ACTIONS(2300), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_type] = ACTIONS(2300), + [anon_sym_namespace] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2300), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2300), + [anon_sym_import] = ACTIONS(2300), + [anon_sym_with] = ACTIONS(2300), + [anon_sym_var] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(2300), + [anon_sym_else] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_switch] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_await] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_debugger] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_throw] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2300), + [anon_sym_LTtemplate_GT] = ACTIONS(2300), + [anon_sym_DQUOTE] = ACTIONS(2300), + [anon_sym_SQUOTE] = ACTIONS(2300), + [anon_sym_class] = ACTIONS(2300), + [anon_sym_async] = ACTIONS(2300), + [anon_sym_function] = ACTIONS(2300), + [anon_sym_new] = ACTIONS(2300), + [anon_sym_using] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_LT] = ACTIONS(2300), + [anon_sym_TILDE] = ACTIONS(2300), + [anon_sym_void] = ACTIONS(2300), + [anon_sym_delete] = ACTIONS(2300), + [anon_sym_PLUS_PLUS] = ACTIONS(2300), + [anon_sym_DASH_DASH] = ACTIONS(2300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2300), + [sym_number] = ACTIONS(2300), + [sym_private_property_identifier] = ACTIONS(2300), + [sym_this] = ACTIONS(2300), + [sym_super] = ACTIONS(2300), + [sym_true] = ACTIONS(2300), + [sym_false] = ACTIONS(2300), + [sym_null] = ACTIONS(2300), + [sym_undefined] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2300), + [anon_sym_static] = ACTIONS(2300), + [anon_sym_readonly] = ACTIONS(2300), + [anon_sym_get] = ACTIONS(2300), + [anon_sym_set] = ACTIONS(2300), + [anon_sym_declare] = ACTIONS(2300), + [anon_sym_public] = ACTIONS(2300), + [anon_sym_private] = ACTIONS(2300), + [anon_sym_protected] = ACTIONS(2300), + [anon_sym_override] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_any] = ACTIONS(2300), + [anon_sym_number] = ACTIONS(2300), + [anon_sym_boolean] = ACTIONS(2300), + [anon_sym_string] = ACTIONS(2300), + [anon_sym_symbol] = ACTIONS(2300), + [anon_sym_object] = ACTIONS(2300), + [anon_sym_abstract] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2300), + [anon_sym_enum] = ACTIONS(2300), + [sym_html_comment] = ACTIONS(5), + }, + [1342] = { + [sym_comment] = STATE(1342), + [ts_builtin_sym_end] = ACTIONS(3557), + [sym_identifier] = ACTIONS(3295), + [anon_sym_export] = ACTIONS(3295), + [anon_sym_type] = ACTIONS(3295), + [anon_sym_namespace] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3295), + [anon_sym_typeof] = ACTIONS(3295), + [anon_sym_import] = ACTIONS(3295), + [anon_sym_with] = ACTIONS(3295), + [anon_sym_var] = ACTIONS(3295), + [anon_sym_let] = ACTIONS(3295), + [anon_sym_const] = ACTIONS(3295), + [anon_sym_BANG] = ACTIONS(3295), + [anon_sym_else] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_switch] = ACTIONS(3295), + [anon_sym_for] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_await] = ACTIONS(3295), + [anon_sym_while] = ACTIONS(3295), + [anon_sym_do] = ACTIONS(3295), + [anon_sym_try] = ACTIONS(3295), + [anon_sym_break] = ACTIONS(3295), + [anon_sym_continue] = ACTIONS(3295), + [anon_sym_debugger] = ACTIONS(3295), + [anon_sym_return] = ACTIONS(3295), + [anon_sym_throw] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LTtemplate_GT] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_SQUOTE] = ACTIONS(3295), + [anon_sym_class] = ACTIONS(3295), + [anon_sym_async] = ACTIONS(3295), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_using] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3295), + [anon_sym_SLASH] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_void] = ACTIONS(3295), + [anon_sym_delete] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3295), + [anon_sym_DASH_DASH] = ACTIONS(3295), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3295), + [sym_number] = ACTIONS(3295), + [sym_private_property_identifier] = ACTIONS(3295), + [sym_this] = ACTIONS(3295), + [sym_super] = ACTIONS(3295), + [sym_true] = ACTIONS(3295), + [sym_false] = ACTIONS(3295), + [sym_null] = ACTIONS(3295), + [sym_undefined] = ACTIONS(3295), + [anon_sym_AT] = ACTIONS(3295), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3295), + [anon_sym_get] = ACTIONS(3295), + [anon_sym_set] = ACTIONS(3295), + [anon_sym_declare] = ACTIONS(3295), + [anon_sym_public] = ACTIONS(3295), + [anon_sym_private] = ACTIONS(3295), + [anon_sym_protected] = ACTIONS(3295), + [anon_sym_override] = ACTIONS(3295), + [anon_sym_module] = ACTIONS(3295), + [anon_sym_any] = ACTIONS(3295), + [anon_sym_number] = ACTIONS(3295), + [anon_sym_boolean] = ACTIONS(3295), + [anon_sym_string] = ACTIONS(3295), + [anon_sym_symbol] = ACTIONS(3295), + [anon_sym_object] = ACTIONS(3295), + [anon_sym_abstract] = ACTIONS(3295), + [anon_sym_interface] = ACTIONS(3295), + [anon_sym_enum] = ACTIONS(3295), + [sym_html_comment] = ACTIONS(5), + }, + [1343] = { + [sym_comment] = STATE(1343), + [sym_identifier] = ACTIONS(3403), + [anon_sym_export] = ACTIONS(3403), + [anon_sym_default] = ACTIONS(3403), + [anon_sym_type] = ACTIONS(3403), + [anon_sym_namespace] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3403), + [anon_sym_RBRACE] = ACTIONS(3403), + [anon_sym_typeof] = ACTIONS(3403), + [anon_sym_import] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3403), + [anon_sym_var] = ACTIONS(3403), + [anon_sym_let] = ACTIONS(3403), + [anon_sym_const] = ACTIONS(3403), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_switch] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_LPAREN] = ACTIONS(3403), + [anon_sym_await] = ACTIONS(3403), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_do] = ACTIONS(3403), + [anon_sym_try] = ACTIONS(3403), + [anon_sym_break] = ACTIONS(3403), + [anon_sym_continue] = ACTIONS(3403), + [anon_sym_debugger] = ACTIONS(3403), + [anon_sym_return] = ACTIONS(3403), + [anon_sym_throw] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_case] = ACTIONS(3403), + [anon_sym_yield] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3403), + [anon_sym_LTtemplate_GT] = ACTIONS(3403), + [anon_sym_DQUOTE] = ACTIONS(3403), + [anon_sym_SQUOTE] = ACTIONS(3403), + [anon_sym_class] = ACTIONS(3403), + [anon_sym_async] = ACTIONS(3403), + [anon_sym_function] = ACTIONS(3403), + [anon_sym_new] = ACTIONS(3403), + [anon_sym_using] = ACTIONS(3403), + [anon_sym_PLUS] = ACTIONS(3403), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_SLASH] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_void] = ACTIONS(3403), + [anon_sym_delete] = ACTIONS(3403), + [anon_sym_PLUS_PLUS] = ACTIONS(3403), + [anon_sym_DASH_DASH] = ACTIONS(3403), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3403), + [sym_number] = ACTIONS(3403), + [sym_private_property_identifier] = ACTIONS(3403), + [sym_this] = ACTIONS(3403), + [sym_super] = ACTIONS(3403), + [sym_true] = ACTIONS(3403), + [sym_false] = ACTIONS(3403), + [sym_null] = ACTIONS(3403), + [sym_undefined] = ACTIONS(3403), + [anon_sym_AT] = ACTIONS(3403), + [anon_sym_static] = ACTIONS(3403), + [anon_sym_readonly] = ACTIONS(3403), + [anon_sym_get] = ACTIONS(3403), + [anon_sym_set] = ACTIONS(3403), + [anon_sym_declare] = ACTIONS(3403), + [anon_sym_public] = ACTIONS(3403), + [anon_sym_private] = ACTIONS(3403), + [anon_sym_protected] = ACTIONS(3403), + [anon_sym_override] = ACTIONS(3403), + [anon_sym_module] = ACTIONS(3403), + [anon_sym_any] = ACTIONS(3403), + [anon_sym_number] = ACTIONS(3403), + [anon_sym_boolean] = ACTIONS(3403), + [anon_sym_string] = ACTIONS(3403), + [anon_sym_symbol] = ACTIONS(3403), + [anon_sym_object] = ACTIONS(3403), + [anon_sym_abstract] = ACTIONS(3403), + [anon_sym_interface] = ACTIONS(3403), + [anon_sym_enum] = ACTIONS(3403), + [sym_html_comment] = ACTIONS(5), + }, + [1344] = { + [sym_comment] = STATE(1344), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(3559), + [sym_html_comment] = ACTIONS(5), + }, + [1345] = { + [sym_comment] = STATE(1345), + [sym_identifier] = ACTIONS(2178), + [anon_sym_export] = ACTIONS(2178), + [anon_sym_default] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_typeof] = ACTIONS(2178), + [anon_sym_import] = ACTIONS(2178), + [anon_sym_with] = ACTIONS(2178), + [anon_sym_var] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_await] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_debugger] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_case] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_LTtemplate_GT] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_TILDE] = ACTIONS(2178), + [anon_sym_void] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_PLUS_PLUS] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2178), + [sym_number] = ACTIONS(2178), + [sym_private_property_identifier] = ACTIONS(2178), + [sym_this] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [sym_null] = ACTIONS(2178), + [sym_undefined] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_readonly] = ACTIONS(2178), + [anon_sym_get] = ACTIONS(2178), + [anon_sym_set] = ACTIONS(2178), + [anon_sym_declare] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_protected] = ACTIONS(2178), + [anon_sym_override] = ACTIONS(2178), + [anon_sym_module] = ACTIONS(2178), + [anon_sym_any] = ACTIONS(2178), + [anon_sym_number] = ACTIONS(2178), + [anon_sym_boolean] = ACTIONS(2178), + [anon_sym_string] = ACTIONS(2178), + [anon_sym_symbol] = ACTIONS(2178), + [anon_sym_object] = ACTIONS(2178), + [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_interface] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), + [sym_html_comment] = ACTIONS(5), + }, + [1346] = { + [sym_comment] = STATE(1346), + [ts_builtin_sym_end] = ACTIONS(3561), + [sym_identifier] = ACTIONS(3305), + [anon_sym_export] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_namespace] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_typeof] = ACTIONS(3305), + [anon_sym_import] = ACTIONS(3305), + [anon_sym_with] = ACTIONS(3305), + [anon_sym_var] = ACTIONS(3305), + [anon_sym_let] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_else] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_switch] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_await] = ACTIONS(3305), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_do] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_debugger] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_throw] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_yield] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_LTtemplate_GT] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3305), + [anon_sym_class] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_function] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3305), + [anon_sym_using] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_void] = ACTIONS(3305), + [anon_sym_delete] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3305), + [sym_number] = ACTIONS(3305), + [sym_private_property_identifier] = ACTIONS(3305), + [sym_this] = ACTIONS(3305), + [sym_super] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_null] = ACTIONS(3305), + [sym_undefined] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [anon_sym_static] = ACTIONS(3305), + [anon_sym_readonly] = ACTIONS(3305), + [anon_sym_get] = ACTIONS(3305), + [anon_sym_set] = ACTIONS(3305), + [anon_sym_declare] = ACTIONS(3305), + [anon_sym_public] = ACTIONS(3305), + [anon_sym_private] = ACTIONS(3305), + [anon_sym_protected] = ACTIONS(3305), + [anon_sym_override] = ACTIONS(3305), + [anon_sym_module] = ACTIONS(3305), + [anon_sym_any] = ACTIONS(3305), + [anon_sym_number] = ACTIONS(3305), + [anon_sym_boolean] = ACTIONS(3305), + [anon_sym_string] = ACTIONS(3305), + [anon_sym_symbol] = ACTIONS(3305), + [anon_sym_object] = ACTIONS(3305), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), + [sym_html_comment] = ACTIONS(5), + }, + [1347] = { + [sym_comment] = STATE(1347), + [ts_builtin_sym_end] = ACTIONS(3563), + [sym_identifier] = ACTIONS(3309), + [anon_sym_export] = ACTIONS(3309), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_typeof] = ACTIONS(3309), + [anon_sym_import] = ACTIONS(3309), + [anon_sym_with] = ACTIONS(3309), + [anon_sym_var] = ACTIONS(3309), + [anon_sym_let] = ACTIONS(3309), + [anon_sym_const] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_else] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_switch] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_await] = ACTIONS(3309), + [anon_sym_while] = ACTIONS(3309), + [anon_sym_do] = ACTIONS(3309), + [anon_sym_try] = ACTIONS(3309), + [anon_sym_break] = ACTIONS(3309), + [anon_sym_continue] = ACTIONS(3309), + [anon_sym_debugger] = ACTIONS(3309), + [anon_sym_return] = ACTIONS(3309), + [anon_sym_throw] = ACTIONS(3309), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_yield] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_LTtemplate_GT] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [anon_sym_SQUOTE] = ACTIONS(3309), + [anon_sym_class] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_function] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3309), + [anon_sym_using] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_SLASH] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_void] = ACTIONS(3309), + [anon_sym_delete] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3309), + [sym_number] = ACTIONS(3309), + [sym_private_property_identifier] = ACTIONS(3309), + [sym_this] = ACTIONS(3309), + [sym_super] = ACTIONS(3309), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_null] = ACTIONS(3309), + [sym_undefined] = ACTIONS(3309), + [anon_sym_AT] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3309), + [anon_sym_readonly] = ACTIONS(3309), + [anon_sym_get] = ACTIONS(3309), + [anon_sym_set] = ACTIONS(3309), + [anon_sym_declare] = ACTIONS(3309), + [anon_sym_public] = ACTIONS(3309), + [anon_sym_private] = ACTIONS(3309), + [anon_sym_protected] = ACTIONS(3309), + [anon_sym_override] = ACTIONS(3309), + [anon_sym_module] = ACTIONS(3309), + [anon_sym_any] = ACTIONS(3309), + [anon_sym_number] = ACTIONS(3309), + [anon_sym_boolean] = ACTIONS(3309), + [anon_sym_string] = ACTIONS(3309), + [anon_sym_symbol] = ACTIONS(3309), + [anon_sym_object] = ACTIONS(3309), + [anon_sym_abstract] = ACTIONS(3309), + [anon_sym_interface] = ACTIONS(3309), + [anon_sym_enum] = ACTIONS(3309), + [sym_html_comment] = ACTIONS(5), }, [1348] = { [sym_comment] = STATE(1348), - [ts_builtin_sym_end] = ACTIONS(3541), + [ts_builtin_sym_end] = ACTIONS(3565), + [sym_identifier] = ACTIONS(3321), + [anon_sym_export] = ACTIONS(3321), + [anon_sym_type] = ACTIONS(3321), + [anon_sym_namespace] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_typeof] = ACTIONS(3321), + [anon_sym_import] = ACTIONS(3321), + [anon_sym_with] = ACTIONS(3321), + [anon_sym_var] = ACTIONS(3321), + [anon_sym_let] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3321), + [anon_sym_else] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_switch] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_await] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3321), + [anon_sym_do] = ACTIONS(3321), + [anon_sym_try] = ACTIONS(3321), + [anon_sym_break] = ACTIONS(3321), + [anon_sym_continue] = ACTIONS(3321), + [anon_sym_debugger] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_throw] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_yield] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_LTtemplate_GT] = ACTIONS(3321), + [anon_sym_DQUOTE] = ACTIONS(3321), + [anon_sym_SQUOTE] = ACTIONS(3321), + [anon_sym_class] = ACTIONS(3321), + [anon_sym_async] = ACTIONS(3321), + [anon_sym_function] = ACTIONS(3321), + [anon_sym_new] = ACTIONS(3321), + [anon_sym_using] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_void] = ACTIONS(3321), + [anon_sym_delete] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3321), + [sym_number] = ACTIONS(3321), + [sym_private_property_identifier] = ACTIONS(3321), + [sym_this] = ACTIONS(3321), + [sym_super] = ACTIONS(3321), + [sym_true] = ACTIONS(3321), + [sym_false] = ACTIONS(3321), + [sym_null] = ACTIONS(3321), + [sym_undefined] = ACTIONS(3321), + [anon_sym_AT] = ACTIONS(3321), + [anon_sym_static] = ACTIONS(3321), + [anon_sym_readonly] = ACTIONS(3321), + [anon_sym_get] = ACTIONS(3321), + [anon_sym_set] = ACTIONS(3321), + [anon_sym_declare] = ACTIONS(3321), + [anon_sym_public] = ACTIONS(3321), + [anon_sym_private] = ACTIONS(3321), + [anon_sym_protected] = ACTIONS(3321), + [anon_sym_override] = ACTIONS(3321), + [anon_sym_module] = ACTIONS(3321), + [anon_sym_any] = ACTIONS(3321), + [anon_sym_number] = ACTIONS(3321), + [anon_sym_boolean] = ACTIONS(3321), + [anon_sym_string] = ACTIONS(3321), + [anon_sym_symbol] = ACTIONS(3321), + [anon_sym_object] = ACTIONS(3321), + [anon_sym_abstract] = ACTIONS(3321), + [anon_sym_interface] = ACTIONS(3321), + [anon_sym_enum] = ACTIONS(3321), + [sym_html_comment] = ACTIONS(5), + }, + [1349] = { + [sym_comment] = STATE(1349), + [ts_builtin_sym_end] = ACTIONS(3567), + [sym_identifier] = ACTIONS(3333), + [anon_sym_export] = ACTIONS(3333), + [anon_sym_type] = ACTIONS(3333), + [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_typeof] = ACTIONS(3333), + [anon_sym_import] = ACTIONS(3333), + [anon_sym_with] = ACTIONS(3333), + [anon_sym_var] = ACTIONS(3333), + [anon_sym_let] = ACTIONS(3333), + [anon_sym_const] = ACTIONS(3333), + [anon_sym_BANG] = ACTIONS(3333), + [anon_sym_else] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3333), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_for] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_await] = ACTIONS(3333), + [anon_sym_while] = ACTIONS(3333), + [anon_sym_do] = ACTIONS(3333), + [anon_sym_try] = ACTIONS(3333), + [anon_sym_break] = ACTIONS(3333), + [anon_sym_continue] = ACTIONS(3333), + [anon_sym_debugger] = ACTIONS(3333), + [anon_sym_return] = ACTIONS(3333), + [anon_sym_throw] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_yield] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_LTtemplate_GT] = ACTIONS(3333), + [anon_sym_DQUOTE] = ACTIONS(3333), + [anon_sym_SQUOTE] = ACTIONS(3333), + [anon_sym_class] = ACTIONS(3333), + [anon_sym_async] = ACTIONS(3333), + [anon_sym_function] = ACTIONS(3333), + [anon_sym_new] = ACTIONS(3333), + [anon_sym_using] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_void] = ACTIONS(3333), + [anon_sym_delete] = ACTIONS(3333), + [anon_sym_PLUS_PLUS] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3333), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3333), + [sym_number] = ACTIONS(3333), + [sym_private_property_identifier] = ACTIONS(3333), + [sym_this] = ACTIONS(3333), + [sym_super] = ACTIONS(3333), + [sym_true] = ACTIONS(3333), + [sym_false] = ACTIONS(3333), + [sym_null] = ACTIONS(3333), + [sym_undefined] = ACTIONS(3333), + [anon_sym_AT] = ACTIONS(3333), + [anon_sym_static] = ACTIONS(3333), + [anon_sym_readonly] = ACTIONS(3333), + [anon_sym_get] = ACTIONS(3333), + [anon_sym_set] = ACTIONS(3333), + [anon_sym_declare] = ACTIONS(3333), + [anon_sym_public] = ACTIONS(3333), + [anon_sym_private] = ACTIONS(3333), + [anon_sym_protected] = ACTIONS(3333), + [anon_sym_override] = ACTIONS(3333), + [anon_sym_module] = ACTIONS(3333), + [anon_sym_any] = ACTIONS(3333), + [anon_sym_number] = ACTIONS(3333), + [anon_sym_boolean] = ACTIONS(3333), + [anon_sym_string] = ACTIONS(3333), + [anon_sym_symbol] = ACTIONS(3333), + [anon_sym_object] = ACTIONS(3333), + [anon_sym_abstract] = ACTIONS(3333), + [anon_sym_interface] = ACTIONS(3333), + [anon_sym_enum] = ACTIONS(3333), + [sym_html_comment] = ACTIONS(5), + }, + [1350] = { + [sym_comment] = STATE(1350), + [sym_identifier] = ACTIONS(2196), + [anon_sym_export] = ACTIONS(2196), + [anon_sym_default] = ACTIONS(2196), + [anon_sym_type] = ACTIONS(2196), + [anon_sym_namespace] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_typeof] = ACTIONS(2196), + [anon_sym_import] = ACTIONS(2196), + [anon_sym_with] = ACTIONS(2196), + [anon_sym_var] = ACTIONS(2196), + [anon_sym_let] = ACTIONS(2196), + [anon_sym_const] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2196), + [anon_sym_if] = ACTIONS(2196), + [anon_sym_switch] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_await] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2196), + [anon_sym_do] = ACTIONS(2196), + [anon_sym_try] = ACTIONS(2196), + [anon_sym_break] = ACTIONS(2196), + [anon_sym_continue] = ACTIONS(2196), + [anon_sym_debugger] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(2196), + [anon_sym_throw] = ACTIONS(2196), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_case] = ACTIONS(2196), + [anon_sym_yield] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2196), + [anon_sym_LTtemplate_GT] = ACTIONS(2196), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_SQUOTE] = ACTIONS(2196), + [anon_sym_class] = ACTIONS(2196), + [anon_sym_async] = ACTIONS(2196), + [anon_sym_function] = ACTIONS(2196), + [anon_sym_new] = ACTIONS(2196), + [anon_sym_using] = ACTIONS(2196), + [anon_sym_PLUS] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_SLASH] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(2196), + [anon_sym_TILDE] = ACTIONS(2196), + [anon_sym_void] = ACTIONS(2196), + [anon_sym_delete] = ACTIONS(2196), + [anon_sym_PLUS_PLUS] = ACTIONS(2196), + [anon_sym_DASH_DASH] = ACTIONS(2196), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2196), + [sym_number] = ACTIONS(2196), + [sym_private_property_identifier] = ACTIONS(2196), + [sym_this] = ACTIONS(2196), + [sym_super] = ACTIONS(2196), + [sym_true] = ACTIONS(2196), + [sym_false] = ACTIONS(2196), + [sym_null] = ACTIONS(2196), + [sym_undefined] = ACTIONS(2196), + [anon_sym_AT] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2196), + [anon_sym_readonly] = ACTIONS(2196), + [anon_sym_get] = ACTIONS(2196), + [anon_sym_set] = ACTIONS(2196), + [anon_sym_declare] = ACTIONS(2196), + [anon_sym_public] = ACTIONS(2196), + [anon_sym_private] = ACTIONS(2196), + [anon_sym_protected] = ACTIONS(2196), + [anon_sym_override] = ACTIONS(2196), + [anon_sym_module] = ACTIONS(2196), + [anon_sym_any] = ACTIONS(2196), + [anon_sym_number] = ACTIONS(2196), + [anon_sym_boolean] = ACTIONS(2196), + [anon_sym_string] = ACTIONS(2196), + [anon_sym_symbol] = ACTIONS(2196), + [anon_sym_object] = ACTIONS(2196), + [anon_sym_abstract] = ACTIONS(2196), + [anon_sym_interface] = ACTIONS(2196), + [anon_sym_enum] = ACTIONS(2196), + [sym_html_comment] = ACTIONS(5), + }, + [1351] = { + [sym_comment] = STATE(1351), + [ts_builtin_sym_end] = ACTIONS(3215), + [sym_identifier] = ACTIONS(3213), + [anon_sym_export] = ACTIONS(3213), + [anon_sym_type] = ACTIONS(3213), + [anon_sym_namespace] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_RBRACE] = ACTIONS(3213), + [anon_sym_typeof] = ACTIONS(3213), + [anon_sym_import] = ACTIONS(3213), + [anon_sym_with] = ACTIONS(3213), + [anon_sym_var] = ACTIONS(3213), + [anon_sym_let] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym_await] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_debugger] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_throw] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3213), + [anon_sym_yield] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_LTtemplate_GT] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(3213), + [anon_sym_SQUOTE] = ACTIONS(3213), + [anon_sym_class] = ACTIONS(3213), + [anon_sym_async] = ACTIONS(3213), + [anon_sym_function] = ACTIONS(3213), + [anon_sym_new] = ACTIONS(3213), + [anon_sym_using] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_SLASH] = ACTIONS(3213), + [anon_sym_LT] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_void] = ACTIONS(3213), + [anon_sym_delete] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3213), + [sym_number] = ACTIONS(3213), + [sym_private_property_identifier] = ACTIONS(3213), + [sym_this] = ACTIONS(3213), + [sym_super] = ACTIONS(3213), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_null] = ACTIONS(3213), + [sym_undefined] = ACTIONS(3213), + [anon_sym_AT] = ACTIONS(3213), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_readonly] = ACTIONS(3213), + [anon_sym_get] = ACTIONS(3213), + [anon_sym_set] = ACTIONS(3213), + [anon_sym_declare] = ACTIONS(3213), + [anon_sym_public] = ACTIONS(3213), + [anon_sym_private] = ACTIONS(3213), + [anon_sym_protected] = ACTIONS(3213), + [anon_sym_override] = ACTIONS(3213), + [anon_sym_module] = ACTIONS(3213), + [anon_sym_any] = ACTIONS(3213), + [anon_sym_number] = ACTIONS(3213), + [anon_sym_boolean] = ACTIONS(3213), + [anon_sym_string] = ACTIONS(3213), + [anon_sym_symbol] = ACTIONS(3213), + [anon_sym_object] = ACTIONS(3213), + [anon_sym_abstract] = ACTIONS(3213), + [anon_sym_interface] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [sym__automatic_semicolon] = ACTIONS(3215), + [sym_html_comment] = ACTIONS(5), + }, + [1352] = { + [sym_comment] = STATE(1352), [sym_identifier] = ACTIONS(3415), [anon_sym_export] = ACTIONS(3415), + [anon_sym_default] = ACTIONS(3415), [anon_sym_type] = ACTIONS(3415), [anon_sym_namespace] = ACTIONS(3415), [anon_sym_LBRACE] = ACTIONS(3415), @@ -173120,7 +173129,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3415), [anon_sym_const] = ACTIONS(3415), [anon_sym_BANG] = ACTIONS(3415), - [anon_sym_else] = ACTIONS(3415), [anon_sym_if] = ACTIONS(3415), [anon_sym_switch] = ACTIONS(3415), [anon_sym_for] = ACTIONS(3415), @@ -173135,6 +173143,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3415), [anon_sym_throw] = ACTIONS(3415), [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_case] = ACTIONS(3415), [anon_sym_yield] = ACTIONS(3415), [anon_sym_LBRACK] = ACTIONS(3415), [anon_sym_LTtemplate_GT] = ACTIONS(3415), @@ -173186,503 +173195,339 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3415), [sym_html_comment] = ACTIONS(5), }, - [1349] = { - [sym_comment] = STATE(1349), - [ts_builtin_sym_end] = ACTIONS(3543), - [sym_identifier] = ACTIONS(3235), - [anon_sym_export] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_namespace] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_typeof] = ACTIONS(3235), - [anon_sym_import] = ACTIONS(3235), - [anon_sym_with] = ACTIONS(3235), - [anon_sym_var] = ACTIONS(3235), - [anon_sym_let] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_else] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_switch] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym_await] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_do] = ACTIONS(3235), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_debugger] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_throw] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_yield] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_LTtemplate_GT] = ACTIONS(3235), - [anon_sym_DQUOTE] = ACTIONS(3235), - [anon_sym_SQUOTE] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_function] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_void] = ACTIONS(3235), - [anon_sym_delete] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), + [1353] = { + [sym_comment] = STATE(1353), + [ts_builtin_sym_end] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_finally] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3235), - [sym_number] = ACTIONS(3235), - [sym_private_property_identifier] = ACTIONS(3235), - [sym_this] = ACTIONS(3235), - [sym_super] = ACTIONS(3235), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [sym_null] = ACTIONS(3235), - [sym_undefined] = ACTIONS(3235), - [anon_sym_AT] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_readonly] = ACTIONS(3235), - [anon_sym_get] = ACTIONS(3235), - [anon_sym_set] = ACTIONS(3235), - [anon_sym_declare] = ACTIONS(3235), - [anon_sym_public] = ACTIONS(3235), - [anon_sym_private] = ACTIONS(3235), - [anon_sym_protected] = ACTIONS(3235), - [anon_sym_override] = ACTIONS(3235), - [anon_sym_module] = ACTIONS(3235), - [anon_sym_any] = ACTIONS(3235), - [anon_sym_number] = ACTIONS(3235), - [anon_sym_boolean] = ACTIONS(3235), - [anon_sym_string] = ACTIONS(3235), - [anon_sym_symbol] = ACTIONS(3235), - [anon_sym_object] = ACTIONS(3235), - [anon_sym_abstract] = ACTIONS(3235), - [anon_sym_interface] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, - [1350] = { - [sym_comment] = STATE(1350), - [ts_builtin_sym_end] = ACTIONS(3545), - [sym_identifier] = ACTIONS(3239), - [anon_sym_export] = ACTIONS(3239), - [anon_sym_type] = ACTIONS(3239), - [anon_sym_namespace] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(3239), - [anon_sym_typeof] = ACTIONS(3239), - [anon_sym_import] = ACTIONS(3239), - [anon_sym_with] = ACTIONS(3239), - [anon_sym_var] = ACTIONS(3239), - [anon_sym_let] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3239), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_else] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_switch] = ACTIONS(3239), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_await] = ACTIONS(3239), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_break] = ACTIONS(3239), - [anon_sym_continue] = ACTIONS(3239), - [anon_sym_debugger] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_throw] = ACTIONS(3239), - [anon_sym_SEMI] = ACTIONS(3239), - [anon_sym_yield] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LTtemplate_GT] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [anon_sym_SQUOTE] = ACTIONS(3239), - [anon_sym_class] = ACTIONS(3239), - [anon_sym_async] = ACTIONS(3239), - [anon_sym_function] = ACTIONS(3239), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_using] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_void] = ACTIONS(3239), - [anon_sym_delete] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), + [1354] = { + [sym_comment] = STATE(1354), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_case] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3239), - [sym_number] = ACTIONS(3239), - [sym_private_property_identifier] = ACTIONS(3239), - [sym_this] = ACTIONS(3239), - [sym_super] = ACTIONS(3239), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [sym_null] = ACTIONS(3239), - [sym_undefined] = ACTIONS(3239), - [anon_sym_AT] = ACTIONS(3239), - [anon_sym_static] = ACTIONS(3239), - [anon_sym_readonly] = ACTIONS(3239), - [anon_sym_get] = ACTIONS(3239), - [anon_sym_set] = ACTIONS(3239), - [anon_sym_declare] = ACTIONS(3239), - [anon_sym_public] = ACTIONS(3239), - [anon_sym_private] = ACTIONS(3239), - [anon_sym_protected] = ACTIONS(3239), - [anon_sym_override] = ACTIONS(3239), - [anon_sym_module] = ACTIONS(3239), - [anon_sym_any] = ACTIONS(3239), - [anon_sym_number] = ACTIONS(3239), - [anon_sym_boolean] = ACTIONS(3239), - [anon_sym_string] = ACTIONS(3239), - [anon_sym_symbol] = ACTIONS(3239), - [anon_sym_object] = ACTIONS(3239), - [anon_sym_abstract] = ACTIONS(3239), - [anon_sym_interface] = ACTIONS(3239), - [anon_sym_enum] = ACTIONS(3239), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, - [1351] = { - [sym_comment] = STATE(1351), - [ts_builtin_sym_end] = ACTIONS(3547), - [sym_identifier] = ACTIONS(3433), - [anon_sym_export] = ACTIONS(3433), - [anon_sym_type] = ACTIONS(3433), - [anon_sym_namespace] = ACTIONS(3433), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_RBRACE] = ACTIONS(3433), - [anon_sym_typeof] = ACTIONS(3433), - [anon_sym_import] = ACTIONS(3433), - [anon_sym_with] = ACTIONS(3433), - [anon_sym_var] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_const] = ACTIONS(3433), - [anon_sym_BANG] = ACTIONS(3433), - [anon_sym_else] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_switch] = ACTIONS(3433), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_await] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_break] = ACTIONS(3433), - [anon_sym_continue] = ACTIONS(3433), - [anon_sym_debugger] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_throw] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_yield] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LTtemplate_GT] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [anon_sym_SQUOTE] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_async] = ACTIONS(3433), - [anon_sym_function] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_using] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_SLASH] = ACTIONS(3433), - [anon_sym_LT] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_void] = ACTIONS(3433), - [anon_sym_delete] = ACTIONS(3433), - [anon_sym_PLUS_PLUS] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3433), + [1355] = { + [sym_comment] = STATE(1355), + [sym_identifier] = ACTIONS(3359), + [anon_sym_export] = ACTIONS(3359), + [anon_sym_default] = ACTIONS(3359), + [anon_sym_type] = ACTIONS(3359), + [anon_sym_namespace] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3359), + [anon_sym_RBRACE] = ACTIONS(3359), + [anon_sym_typeof] = ACTIONS(3359), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_with] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [anon_sym_let] = ACTIONS(3359), + [anon_sym_const] = ACTIONS(3359), + [anon_sym_BANG] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3359), + [anon_sym_await] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_debugger] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_case] = ACTIONS(3359), + [anon_sym_yield] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3359), + [anon_sym_LTtemplate_GT] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_SQUOTE] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_async] = ACTIONS(3359), + [anon_sym_function] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3359), + [anon_sym_void] = ACTIONS(3359), + [anon_sym_delete] = ACTIONS(3359), + [anon_sym_PLUS_PLUS] = ACTIONS(3359), + [anon_sym_DASH_DASH] = ACTIONS(3359), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3433), - [sym_number] = ACTIONS(3433), - [sym_private_property_identifier] = ACTIONS(3433), - [sym_this] = ACTIONS(3433), - [sym_super] = ACTIONS(3433), - [sym_true] = ACTIONS(3433), - [sym_false] = ACTIONS(3433), - [sym_null] = ACTIONS(3433), - [sym_undefined] = ACTIONS(3433), - [anon_sym_AT] = ACTIONS(3433), - [anon_sym_static] = ACTIONS(3433), - [anon_sym_readonly] = ACTIONS(3433), - [anon_sym_get] = ACTIONS(3433), - [anon_sym_set] = ACTIONS(3433), - [anon_sym_declare] = ACTIONS(3433), - [anon_sym_public] = ACTIONS(3433), - [anon_sym_private] = ACTIONS(3433), - [anon_sym_protected] = ACTIONS(3433), - [anon_sym_override] = ACTIONS(3433), - [anon_sym_module] = ACTIONS(3433), - [anon_sym_any] = ACTIONS(3433), - [anon_sym_number] = ACTIONS(3433), - [anon_sym_boolean] = ACTIONS(3433), - [anon_sym_string] = ACTIONS(3433), - [anon_sym_symbol] = ACTIONS(3433), - [anon_sym_object] = ACTIONS(3433), - [anon_sym_abstract] = ACTIONS(3433), - [anon_sym_interface] = ACTIONS(3433), - [anon_sym_enum] = ACTIONS(3433), + [anon_sym_BQUOTE] = ACTIONS(3359), + [sym_number] = ACTIONS(3359), + [sym_private_property_identifier] = ACTIONS(3359), + [sym_this] = ACTIONS(3359), + [sym_super] = ACTIONS(3359), + [sym_true] = ACTIONS(3359), + [sym_false] = ACTIONS(3359), + [sym_null] = ACTIONS(3359), + [sym_undefined] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_readonly] = ACTIONS(3359), + [anon_sym_get] = ACTIONS(3359), + [anon_sym_set] = ACTIONS(3359), + [anon_sym_declare] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_protected] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_module] = ACTIONS(3359), + [anon_sym_any] = ACTIONS(3359), + [anon_sym_number] = ACTIONS(3359), + [anon_sym_boolean] = ACTIONS(3359), + [anon_sym_string] = ACTIONS(3359), + [anon_sym_symbol] = ACTIONS(3359), + [anon_sym_object] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), [sym_html_comment] = ACTIONS(5), }, - [1352] = { - [sym_comment] = STATE(1352), - [sym_identifier] = ACTIONS(3279), - [anon_sym_export] = ACTIONS(3279), - [anon_sym_default] = ACTIONS(3279), - [anon_sym_type] = ACTIONS(3279), - [anon_sym_namespace] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_RBRACE] = ACTIONS(3279), - [anon_sym_typeof] = ACTIONS(3279), - [anon_sym_import] = ACTIONS(3279), - [anon_sym_with] = ACTIONS(3279), - [anon_sym_var] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_const] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_switch] = ACTIONS(3279), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_await] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_break] = ACTIONS(3279), - [anon_sym_continue] = ACTIONS(3279), - [anon_sym_debugger] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_throw] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_case] = ACTIONS(3279), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LTtemplate_GT] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_SQUOTE] = ACTIONS(3279), - [anon_sym_class] = ACTIONS(3279), - [anon_sym_async] = ACTIONS(3279), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_using] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_SLASH] = ACTIONS(3279), - [anon_sym_LT] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3279), - [anon_sym_void] = ACTIONS(3279), - [anon_sym_delete] = ACTIONS(3279), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_DASH_DASH] = ACTIONS(3279), + [1356] = { + [sym_comment] = STATE(1356), + [ts_builtin_sym_end] = ACTIONS(3569), + [sym_identifier] = ACTIONS(3395), + [anon_sym_export] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_typeof] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3395), + [anon_sym_with] = ACTIONS(3395), + [anon_sym_var] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3395), + [anon_sym_else] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_debugger] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_LTtemplate_GT] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_function] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_SLASH] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_void] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3395), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3279), - [sym_number] = ACTIONS(3279), - [sym_private_property_identifier] = ACTIONS(3279), - [sym_this] = ACTIONS(3279), - [sym_super] = ACTIONS(3279), - [sym_true] = ACTIONS(3279), - [sym_false] = ACTIONS(3279), - [sym_null] = ACTIONS(3279), - [sym_undefined] = ACTIONS(3279), - [anon_sym_AT] = ACTIONS(3279), - [anon_sym_static] = ACTIONS(3279), - [anon_sym_readonly] = ACTIONS(3279), - [anon_sym_get] = ACTIONS(3279), - [anon_sym_set] = ACTIONS(3279), - [anon_sym_declare] = ACTIONS(3279), - [anon_sym_public] = ACTIONS(3279), - [anon_sym_private] = ACTIONS(3279), - [anon_sym_protected] = ACTIONS(3279), - [anon_sym_override] = ACTIONS(3279), - [anon_sym_module] = ACTIONS(3279), - [anon_sym_any] = ACTIONS(3279), - [anon_sym_number] = ACTIONS(3279), - [anon_sym_boolean] = ACTIONS(3279), - [anon_sym_string] = ACTIONS(3279), - [anon_sym_symbol] = ACTIONS(3279), - [anon_sym_object] = ACTIONS(3279), - [anon_sym_abstract] = ACTIONS(3279), - [anon_sym_interface] = ACTIONS(3279), - [anon_sym_enum] = ACTIONS(3279), - [sym_html_comment] = ACTIONS(5), - }, - [1353] = { - [sym_comment] = STATE(1353), - [ts_builtin_sym_end] = ACTIONS(2354), - [sym_identifier] = ACTIONS(2182), - [anon_sym_export] = ACTIONS(2182), - [anon_sym_type] = ACTIONS(2182), - [anon_sym_namespace] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2182), - [anon_sym_RBRACE] = ACTIONS(2182), - [anon_sym_typeof] = ACTIONS(2182), - [anon_sym_import] = ACTIONS(2182), - [anon_sym_with] = ACTIONS(2182), - [anon_sym_var] = ACTIONS(2182), - [anon_sym_let] = ACTIONS(2182), - [anon_sym_const] = ACTIONS(2182), - [anon_sym_BANG] = ACTIONS(2182), - [anon_sym_if] = ACTIONS(2182), - [anon_sym_switch] = ACTIONS(2182), - [anon_sym_for] = ACTIONS(2182), - [anon_sym_LPAREN] = ACTIONS(2182), - [anon_sym_await] = ACTIONS(2182), - [anon_sym_while] = ACTIONS(2182), - [anon_sym_do] = ACTIONS(2182), - [anon_sym_try] = ACTIONS(2182), - [anon_sym_break] = ACTIONS(2182), - [anon_sym_continue] = ACTIONS(2182), - [anon_sym_debugger] = ACTIONS(2182), - [anon_sym_return] = ACTIONS(2182), - [anon_sym_throw] = ACTIONS(2182), - [anon_sym_SEMI] = ACTIONS(2182), - [anon_sym_yield] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2182), - [anon_sym_LTtemplate_GT] = ACTIONS(2182), - [anon_sym_DQUOTE] = ACTIONS(2182), - [anon_sym_SQUOTE] = ACTIONS(2182), - [anon_sym_class] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(2182), - [anon_sym_function] = ACTIONS(2182), - [anon_sym_new] = ACTIONS(2182), - [anon_sym_using] = ACTIONS(2182), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_SLASH] = ACTIONS(2182), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_TILDE] = ACTIONS(2182), - [anon_sym_void] = ACTIONS(2182), - [anon_sym_delete] = ACTIONS(2182), - [anon_sym_PLUS_PLUS] = ACTIONS(2182), - [anon_sym_DASH_DASH] = ACTIONS(2182), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2182), - [sym_number] = ACTIONS(2182), - [sym_private_property_identifier] = ACTIONS(2182), - [sym_this] = ACTIONS(2182), - [sym_super] = ACTIONS(2182), - [sym_true] = ACTIONS(2182), - [sym_false] = ACTIONS(2182), - [sym_null] = ACTIONS(2182), - [sym_undefined] = ACTIONS(2182), - [anon_sym_AT] = ACTIONS(2182), - [anon_sym_static] = ACTIONS(2182), - [anon_sym_readonly] = ACTIONS(2182), - [anon_sym_get] = ACTIONS(2182), - [anon_sym_set] = ACTIONS(2182), - [anon_sym_declare] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_protected] = ACTIONS(2182), - [anon_sym_override] = ACTIONS(2182), - [anon_sym_module] = ACTIONS(2182), - [anon_sym_any] = ACTIONS(2182), - [anon_sym_number] = ACTIONS(2182), - [anon_sym_boolean] = ACTIONS(2182), - [anon_sym_string] = ACTIONS(2182), - [anon_sym_symbol] = ACTIONS(2182), - [anon_sym_object] = ACTIONS(2182), - [anon_sym_abstract] = ACTIONS(2182), - [anon_sym_interface] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), - [sym__automatic_semicolon] = ACTIONS(2478), - [sym_html_comment] = ACTIONS(5), - }, - [1354] = { - [sym_comment] = STATE(1354), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3395), + [sym_number] = ACTIONS(3395), + [sym_private_property_identifier] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [sym_null] = ACTIONS(3395), + [sym_undefined] = ACTIONS(3395), + [anon_sym_AT] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_get] = ACTIONS(3395), + [anon_sym_set] = ACTIONS(3395), + [anon_sym_declare] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_private] = ACTIONS(3395), + [anon_sym_protected] = ACTIONS(3395), + [anon_sym_override] = ACTIONS(3395), + [anon_sym_module] = ACTIONS(3395), + [anon_sym_any] = ACTIONS(3395), + [anon_sym_number] = ACTIONS(3395), + [anon_sym_boolean] = ACTIONS(3395), + [anon_sym_string] = ACTIONS(3395), + [anon_sym_symbol] = ACTIONS(3395), + [anon_sym_object] = ACTIONS(3395), + [anon_sym_abstract] = ACTIONS(3395), + [anon_sym_interface] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), [sym_html_comment] = ACTIONS(5), }, - [1355] = { - [sym_comment] = STATE(1355), + [1357] = { + [sym_comment] = STATE(1357), + [ts_builtin_sym_end] = ACTIONS(3569), [sym_identifier] = ACTIONS(3395), [anon_sym_export] = ACTIONS(3395), - [anon_sym_default] = ACTIONS(3395), [anon_sym_type] = ACTIONS(3395), [anon_sym_namespace] = ACTIONS(3395), [anon_sym_LBRACE] = ACTIONS(3395), @@ -173694,6 +173539,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3395), [anon_sym_const] = ACTIONS(3395), [anon_sym_BANG] = ACTIONS(3395), + [anon_sym_else] = ACTIONS(3395), [anon_sym_if] = ACTIONS(3395), [anon_sym_switch] = ACTIONS(3395), [anon_sym_for] = ACTIONS(3395), @@ -173708,7 +173554,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3395), [anon_sym_throw] = ACTIONS(3395), [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_case] = ACTIONS(3395), [anon_sym_yield] = ACTIONS(3395), [anon_sym_LBRACK] = ACTIONS(3395), [anon_sym_LTtemplate_GT] = ACTIONS(3395), @@ -173760,1547 +173605,1629 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3395), [sym_html_comment] = ACTIONS(5), }, - [1356] = { - [sym_comment] = STATE(1356), - [ts_builtin_sym_end] = ACTIONS(2298), - [sym_identifier] = ACTIONS(2296), - [anon_sym_export] = ACTIONS(2296), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_namespace] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2296), - [anon_sym_RBRACE] = ACTIONS(2296), - [anon_sym_typeof] = ACTIONS(2296), - [anon_sym_import] = ACTIONS(2296), - [anon_sym_with] = ACTIONS(2296), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_const] = ACTIONS(2296), - [anon_sym_BANG] = ACTIONS(2296), - [anon_sym_else] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_switch] = ACTIONS(2296), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2296), - [anon_sym_await] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(2296), - [anon_sym_try] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_debugger] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_throw] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2296), - [anon_sym_yield] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2296), - [anon_sym_LTtemplate_GT] = ACTIONS(2296), - [anon_sym_DQUOTE] = ACTIONS(2296), - [anon_sym_SQUOTE] = ACTIONS(2296), - [anon_sym_class] = ACTIONS(2296), - [anon_sym_async] = ACTIONS(2296), - [anon_sym_function] = ACTIONS(2296), - [anon_sym_new] = ACTIONS(2296), - [anon_sym_using] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_TILDE] = ACTIONS(2296), - [anon_sym_void] = ACTIONS(2296), - [anon_sym_delete] = ACTIONS(2296), - [anon_sym_PLUS_PLUS] = ACTIONS(2296), - [anon_sym_DASH_DASH] = ACTIONS(2296), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2296), - [sym_number] = ACTIONS(2296), - [sym_private_property_identifier] = ACTIONS(2296), - [sym_this] = ACTIONS(2296), - [sym_super] = ACTIONS(2296), - [sym_true] = ACTIONS(2296), - [sym_false] = ACTIONS(2296), - [sym_null] = ACTIONS(2296), - [sym_undefined] = ACTIONS(2296), - [anon_sym_AT] = ACTIONS(2296), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_readonly] = ACTIONS(2296), - [anon_sym_get] = ACTIONS(2296), - [anon_sym_set] = ACTIONS(2296), - [anon_sym_declare] = ACTIONS(2296), - [anon_sym_public] = ACTIONS(2296), - [anon_sym_private] = ACTIONS(2296), - [anon_sym_protected] = ACTIONS(2296), - [anon_sym_override] = ACTIONS(2296), - [anon_sym_module] = ACTIONS(2296), - [anon_sym_any] = ACTIONS(2296), - [anon_sym_number] = ACTIONS(2296), - [anon_sym_boolean] = ACTIONS(2296), - [anon_sym_string] = ACTIONS(2296), - [anon_sym_symbol] = ACTIONS(2296), - [anon_sym_object] = ACTIONS(2296), - [anon_sym_abstract] = ACTIONS(2296), - [anon_sym_interface] = ACTIONS(2296), - [anon_sym_enum] = ACTIONS(2296), - [sym_html_comment] = ACTIONS(5), - }, - [1357] = { - [sym_comment] = STATE(1357), - [ts_builtin_sym_end] = ACTIONS(3549), - [sym_identifier] = ACTIONS(3295), - [anon_sym_export] = ACTIONS(3295), - [anon_sym_type] = ACTIONS(3295), - [anon_sym_namespace] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_RBRACE] = ACTIONS(3295), - [anon_sym_typeof] = ACTIONS(3295), - [anon_sym_import] = ACTIONS(3295), - [anon_sym_with] = ACTIONS(3295), - [anon_sym_var] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_const] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3295), - [anon_sym_else] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_switch] = ACTIONS(3295), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_await] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_break] = ACTIONS(3295), - [anon_sym_continue] = ACTIONS(3295), - [anon_sym_debugger] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_throw] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_LTtemplate_GT] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_SQUOTE] = ACTIONS(3295), - [anon_sym_class] = ACTIONS(3295), - [anon_sym_async] = ACTIONS(3295), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_using] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3295), - [anon_sym_void] = ACTIONS(3295), - [anon_sym_delete] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3295), - [sym_number] = ACTIONS(3295), - [sym_private_property_identifier] = ACTIONS(3295), - [sym_this] = ACTIONS(3295), - [sym_super] = ACTIONS(3295), - [sym_true] = ACTIONS(3295), - [sym_false] = ACTIONS(3295), - [sym_null] = ACTIONS(3295), - [sym_undefined] = ACTIONS(3295), - [anon_sym_AT] = ACTIONS(3295), - [anon_sym_static] = ACTIONS(3295), - [anon_sym_readonly] = ACTIONS(3295), - [anon_sym_get] = ACTIONS(3295), - [anon_sym_set] = ACTIONS(3295), - [anon_sym_declare] = ACTIONS(3295), - [anon_sym_public] = ACTIONS(3295), - [anon_sym_private] = ACTIONS(3295), - [anon_sym_protected] = ACTIONS(3295), - [anon_sym_override] = ACTIONS(3295), - [anon_sym_module] = ACTIONS(3295), - [anon_sym_any] = ACTIONS(3295), - [anon_sym_number] = ACTIONS(3295), - [anon_sym_boolean] = ACTIONS(3295), - [anon_sym_string] = ACTIONS(3295), - [anon_sym_symbol] = ACTIONS(3295), - [anon_sym_object] = ACTIONS(3295), - [anon_sym_abstract] = ACTIONS(3295), - [anon_sym_interface] = ACTIONS(3295), - [anon_sym_enum] = ACTIONS(3295), - [sym_html_comment] = ACTIONS(5), - }, [1358] = { [sym_comment] = STATE(1358), - [ts_builtin_sym_end] = ACTIONS(2350), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_else] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(2176), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LTtemplate_GT] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_number] = ACTIONS(2176), - [sym_private_property_identifier] = ACTIONS(2176), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), + [ts_builtin_sym_end] = ACTIONS(3569), + [sym_identifier] = ACTIONS(3395), + [anon_sym_export] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_typeof] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3395), + [anon_sym_with] = ACTIONS(3395), + [anon_sym_var] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3395), + [anon_sym_else] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_debugger] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_LTtemplate_GT] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_function] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_SLASH] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_void] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3395), + [sym_number] = ACTIONS(3395), + [sym_private_property_identifier] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [sym_null] = ACTIONS(3395), + [sym_undefined] = ACTIONS(3395), + [anon_sym_AT] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_get] = ACTIONS(3395), + [anon_sym_set] = ACTIONS(3395), + [anon_sym_declare] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_private] = ACTIONS(3395), + [anon_sym_protected] = ACTIONS(3395), + [anon_sym_override] = ACTIONS(3395), + [anon_sym_module] = ACTIONS(3395), + [anon_sym_any] = ACTIONS(3395), + [anon_sym_number] = ACTIONS(3395), + [anon_sym_boolean] = ACTIONS(3395), + [anon_sym_string] = ACTIONS(3395), + [anon_sym_symbol] = ACTIONS(3395), + [anon_sym_object] = ACTIONS(3395), + [anon_sym_abstract] = ACTIONS(3395), + [anon_sym_interface] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), [sym_html_comment] = ACTIONS(5), }, [1359] = { [sym_comment] = STATE(1359), - [sym_identifier] = ACTIONS(3399), - [anon_sym_export] = ACTIONS(3399), - [anon_sym_default] = ACTIONS(3399), - [anon_sym_type] = ACTIONS(3399), - [anon_sym_namespace] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_RBRACE] = ACTIONS(3399), - [anon_sym_typeof] = ACTIONS(3399), - [anon_sym_import] = ACTIONS(3399), - [anon_sym_with] = ACTIONS(3399), - [anon_sym_var] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_const] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_switch] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_await] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_break] = ACTIONS(3399), - [anon_sym_continue] = ACTIONS(3399), - [anon_sym_debugger] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_throw] = ACTIONS(3399), - [anon_sym_SEMI] = ACTIONS(3399), - [anon_sym_case] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_LTtemplate_GT] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_SQUOTE] = ACTIONS(3399), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_async] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_using] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_SLASH] = ACTIONS(3399), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3399), - [anon_sym_void] = ACTIONS(3399), - [anon_sym_delete] = ACTIONS(3399), - [anon_sym_PLUS_PLUS] = ACTIONS(3399), - [anon_sym_DASH_DASH] = ACTIONS(3399), + [sym_identifier] = ACTIONS(3223), + [anon_sym_export] = ACTIONS(3223), + [anon_sym_default] = ACTIONS(3223), + [anon_sym_type] = ACTIONS(3223), + [anon_sym_namespace] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3223), + [anon_sym_RBRACE] = ACTIONS(3223), + [anon_sym_typeof] = ACTIONS(3223), + [anon_sym_import] = ACTIONS(3223), + [anon_sym_with] = ACTIONS(3223), + [anon_sym_var] = ACTIONS(3223), + [anon_sym_let] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_BANG] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_switch] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_await] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_do] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_debugger] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_throw] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3223), + [anon_sym_case] = ACTIONS(3223), + [anon_sym_yield] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_LTtemplate_GT] = ACTIONS(3223), + [anon_sym_DQUOTE] = ACTIONS(3223), + [anon_sym_SQUOTE] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_async] = ACTIONS(3223), + [anon_sym_function] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_SLASH] = ACTIONS(3223), + [anon_sym_LT] = ACTIONS(3223), + [anon_sym_TILDE] = ACTIONS(3223), + [anon_sym_void] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(3223), + [anon_sym_PLUS_PLUS] = ACTIONS(3223), + [anon_sym_DASH_DASH] = ACTIONS(3223), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3399), - [sym_number] = ACTIONS(3399), - [sym_private_property_identifier] = ACTIONS(3399), - [sym_this] = ACTIONS(3399), - [sym_super] = ACTIONS(3399), - [sym_true] = ACTIONS(3399), - [sym_false] = ACTIONS(3399), - [sym_null] = ACTIONS(3399), - [sym_undefined] = ACTIONS(3399), - [anon_sym_AT] = ACTIONS(3399), - [anon_sym_static] = ACTIONS(3399), - [anon_sym_readonly] = ACTIONS(3399), - [anon_sym_get] = ACTIONS(3399), - [anon_sym_set] = ACTIONS(3399), - [anon_sym_declare] = ACTIONS(3399), - [anon_sym_public] = ACTIONS(3399), - [anon_sym_private] = ACTIONS(3399), - [anon_sym_protected] = ACTIONS(3399), - [anon_sym_override] = ACTIONS(3399), - [anon_sym_module] = ACTIONS(3399), - [anon_sym_any] = ACTIONS(3399), - [anon_sym_number] = ACTIONS(3399), - [anon_sym_boolean] = ACTIONS(3399), - [anon_sym_string] = ACTIONS(3399), - [anon_sym_symbol] = ACTIONS(3399), - [anon_sym_object] = ACTIONS(3399), - [anon_sym_abstract] = ACTIONS(3399), - [anon_sym_interface] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3399), + [anon_sym_BQUOTE] = ACTIONS(3223), + [sym_number] = ACTIONS(3223), + [sym_private_property_identifier] = ACTIONS(3223), + [sym_this] = ACTIONS(3223), + [sym_super] = ACTIONS(3223), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [sym_null] = ACTIONS(3223), + [sym_undefined] = ACTIONS(3223), + [anon_sym_AT] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_readonly] = ACTIONS(3223), + [anon_sym_get] = ACTIONS(3223), + [anon_sym_set] = ACTIONS(3223), + [anon_sym_declare] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_private] = ACTIONS(3223), + [anon_sym_protected] = ACTIONS(3223), + [anon_sym_override] = ACTIONS(3223), + [anon_sym_module] = ACTIONS(3223), + [anon_sym_any] = ACTIONS(3223), + [anon_sym_number] = ACTIONS(3223), + [anon_sym_boolean] = ACTIONS(3223), + [anon_sym_string] = ACTIONS(3223), + [anon_sym_symbol] = ACTIONS(3223), + [anon_sym_object] = ACTIONS(3223), + [anon_sym_abstract] = ACTIONS(3223), + [anon_sym_interface] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), [sym_html_comment] = ACTIONS(5), }, [1360] = { [sym_comment] = STATE(1360), - [ts_builtin_sym_end] = ACTIONS(3551), - [sym_identifier] = ACTIONS(3375), - [anon_sym_export] = ACTIONS(3375), - [anon_sym_type] = ACTIONS(3375), - [anon_sym_namespace] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_typeof] = ACTIONS(3375), - [anon_sym_import] = ACTIONS(3375), - [anon_sym_with] = ACTIONS(3375), - [anon_sym_var] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_const] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_else] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_switch] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_await] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_debugger] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_throw] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LTtemplate_GT] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3375), - [anon_sym_class] = ACTIONS(3375), - [anon_sym_async] = ACTIONS(3375), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_using] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_void] = ACTIONS(3375), - [anon_sym_delete] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3375), - [anon_sym_DASH_DASH] = ACTIONS(3375), + [ts_builtin_sym_end] = ACTIONS(3571), + [sym_identifier] = ACTIONS(3403), + [anon_sym_export] = ACTIONS(3403), + [anon_sym_type] = ACTIONS(3403), + [anon_sym_namespace] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3403), + [anon_sym_RBRACE] = ACTIONS(3403), + [anon_sym_typeof] = ACTIONS(3403), + [anon_sym_import] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3403), + [anon_sym_var] = ACTIONS(3403), + [anon_sym_let] = ACTIONS(3403), + [anon_sym_const] = ACTIONS(3403), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_else] = ACTIONS(3403), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_switch] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_LPAREN] = ACTIONS(3403), + [anon_sym_await] = ACTIONS(3403), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_do] = ACTIONS(3403), + [anon_sym_try] = ACTIONS(3403), + [anon_sym_break] = ACTIONS(3403), + [anon_sym_continue] = ACTIONS(3403), + [anon_sym_debugger] = ACTIONS(3403), + [anon_sym_return] = ACTIONS(3403), + [anon_sym_throw] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_yield] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3403), + [anon_sym_LTtemplate_GT] = ACTIONS(3403), + [anon_sym_DQUOTE] = ACTIONS(3403), + [anon_sym_SQUOTE] = ACTIONS(3403), + [anon_sym_class] = ACTIONS(3403), + [anon_sym_async] = ACTIONS(3403), + [anon_sym_function] = ACTIONS(3403), + [anon_sym_new] = ACTIONS(3403), + [anon_sym_using] = ACTIONS(3403), + [anon_sym_PLUS] = ACTIONS(3403), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_SLASH] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_void] = ACTIONS(3403), + [anon_sym_delete] = ACTIONS(3403), + [anon_sym_PLUS_PLUS] = ACTIONS(3403), + [anon_sym_DASH_DASH] = ACTIONS(3403), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3375), - [sym_number] = ACTIONS(3375), - [sym_private_property_identifier] = ACTIONS(3375), - [sym_this] = ACTIONS(3375), - [sym_super] = ACTIONS(3375), - [sym_true] = ACTIONS(3375), - [sym_false] = ACTIONS(3375), - [sym_null] = ACTIONS(3375), - [sym_undefined] = ACTIONS(3375), - [anon_sym_AT] = ACTIONS(3375), - [anon_sym_static] = ACTIONS(3375), - [anon_sym_readonly] = ACTIONS(3375), - [anon_sym_get] = ACTIONS(3375), - [anon_sym_set] = ACTIONS(3375), - [anon_sym_declare] = ACTIONS(3375), - [anon_sym_public] = ACTIONS(3375), - [anon_sym_private] = ACTIONS(3375), - [anon_sym_protected] = ACTIONS(3375), - [anon_sym_override] = ACTIONS(3375), - [anon_sym_module] = ACTIONS(3375), - [anon_sym_any] = ACTIONS(3375), - [anon_sym_number] = ACTIONS(3375), - [anon_sym_boolean] = ACTIONS(3375), - [anon_sym_string] = ACTIONS(3375), - [anon_sym_symbol] = ACTIONS(3375), - [anon_sym_object] = ACTIONS(3375), - [anon_sym_abstract] = ACTIONS(3375), - [anon_sym_interface] = ACTIONS(3375), - [anon_sym_enum] = ACTIONS(3375), + [anon_sym_BQUOTE] = ACTIONS(3403), + [sym_number] = ACTIONS(3403), + [sym_private_property_identifier] = ACTIONS(3403), + [sym_this] = ACTIONS(3403), + [sym_super] = ACTIONS(3403), + [sym_true] = ACTIONS(3403), + [sym_false] = ACTIONS(3403), + [sym_null] = ACTIONS(3403), + [sym_undefined] = ACTIONS(3403), + [anon_sym_AT] = ACTIONS(3403), + [anon_sym_static] = ACTIONS(3403), + [anon_sym_readonly] = ACTIONS(3403), + [anon_sym_get] = ACTIONS(3403), + [anon_sym_set] = ACTIONS(3403), + [anon_sym_declare] = ACTIONS(3403), + [anon_sym_public] = ACTIONS(3403), + [anon_sym_private] = ACTIONS(3403), + [anon_sym_protected] = ACTIONS(3403), + [anon_sym_override] = ACTIONS(3403), + [anon_sym_module] = ACTIONS(3403), + [anon_sym_any] = ACTIONS(3403), + [anon_sym_number] = ACTIONS(3403), + [anon_sym_boolean] = ACTIONS(3403), + [anon_sym_string] = ACTIONS(3403), + [anon_sym_symbol] = ACTIONS(3403), + [anon_sym_object] = ACTIONS(3403), + [anon_sym_abstract] = ACTIONS(3403), + [anon_sym_interface] = ACTIONS(3403), + [anon_sym_enum] = ACTIONS(3403), [sym_html_comment] = ACTIONS(5), }, [1361] = { [sym_comment] = STATE(1361), - [ts_builtin_sym_end] = ACTIONS(3553), - [sym_identifier] = ACTIONS(3279), - [anon_sym_export] = ACTIONS(3279), - [anon_sym_type] = ACTIONS(3279), - [anon_sym_namespace] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_RBRACE] = ACTIONS(3279), - [anon_sym_typeof] = ACTIONS(3279), - [anon_sym_import] = ACTIONS(3279), - [anon_sym_with] = ACTIONS(3279), - [anon_sym_var] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_const] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_else] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_switch] = ACTIONS(3279), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_await] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_break] = ACTIONS(3279), - [anon_sym_continue] = ACTIONS(3279), - [anon_sym_debugger] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_throw] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LTtemplate_GT] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_SQUOTE] = ACTIONS(3279), - [anon_sym_class] = ACTIONS(3279), - [anon_sym_async] = ACTIONS(3279), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_using] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_SLASH] = ACTIONS(3279), - [anon_sym_LT] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3279), - [anon_sym_void] = ACTIONS(3279), - [anon_sym_delete] = ACTIONS(3279), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_DASH_DASH] = ACTIONS(3279), + [sym_identifier] = ACTIONS(3217), + [anon_sym_export] = ACTIONS(3217), + [anon_sym_default] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_namespace] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_typeof] = ACTIONS(3217), + [anon_sym_import] = ACTIONS(3217), + [anon_sym_with] = ACTIONS(3217), + [anon_sym_var] = ACTIONS(3217), + [anon_sym_let] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3217), + [anon_sym_while] = ACTIONS(3217), + [anon_sym_do] = ACTIONS(3217), + [anon_sym_try] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_debugger] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_throw] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_case] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LTtemplate_GT] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_class] = ACTIONS(3217), + [anon_sym_async] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3217), + [anon_sym_using] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_void] = ACTIONS(3217), + [anon_sym_delete] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3279), - [sym_number] = ACTIONS(3279), - [sym_private_property_identifier] = ACTIONS(3279), - [sym_this] = ACTIONS(3279), - [sym_super] = ACTIONS(3279), - [sym_true] = ACTIONS(3279), - [sym_false] = ACTIONS(3279), - [sym_null] = ACTIONS(3279), - [sym_undefined] = ACTIONS(3279), - [anon_sym_AT] = ACTIONS(3279), - [anon_sym_static] = ACTIONS(3279), - [anon_sym_readonly] = ACTIONS(3279), - [anon_sym_get] = ACTIONS(3279), - [anon_sym_set] = ACTIONS(3279), - [anon_sym_declare] = ACTIONS(3279), - [anon_sym_public] = ACTIONS(3279), - [anon_sym_private] = ACTIONS(3279), - [anon_sym_protected] = ACTIONS(3279), - [anon_sym_override] = ACTIONS(3279), - [anon_sym_module] = ACTIONS(3279), - [anon_sym_any] = ACTIONS(3279), - [anon_sym_number] = ACTIONS(3279), - [anon_sym_boolean] = ACTIONS(3279), - [anon_sym_string] = ACTIONS(3279), - [anon_sym_symbol] = ACTIONS(3279), - [anon_sym_object] = ACTIONS(3279), - [anon_sym_abstract] = ACTIONS(3279), - [anon_sym_interface] = ACTIONS(3279), - [anon_sym_enum] = ACTIONS(3279), + [anon_sym_BQUOTE] = ACTIONS(3217), + [sym_number] = ACTIONS(3217), + [sym_private_property_identifier] = ACTIONS(3217), + [sym_this] = ACTIONS(3217), + [sym_super] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_null] = ACTIONS(3217), + [sym_undefined] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(3217), + [anon_sym_static] = ACTIONS(3217), + [anon_sym_readonly] = ACTIONS(3217), + [anon_sym_get] = ACTIONS(3217), + [anon_sym_set] = ACTIONS(3217), + [anon_sym_declare] = ACTIONS(3217), + [anon_sym_public] = ACTIONS(3217), + [anon_sym_private] = ACTIONS(3217), + [anon_sym_protected] = ACTIONS(3217), + [anon_sym_override] = ACTIONS(3217), + [anon_sym_module] = ACTIONS(3217), + [anon_sym_any] = ACTIONS(3217), + [anon_sym_number] = ACTIONS(3217), + [anon_sym_boolean] = ACTIONS(3217), + [anon_sym_string] = ACTIONS(3217), + [anon_sym_symbol] = ACTIONS(3217), + [anon_sym_object] = ACTIONS(3217), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), [sym_html_comment] = ACTIONS(5), }, [1362] = { [sym_comment] = STATE(1362), - [ts_builtin_sym_end] = ACTIONS(3555), - [sym_identifier] = ACTIONS(3275), - [anon_sym_export] = ACTIONS(3275), - [anon_sym_type] = ACTIONS(3275), - [anon_sym_namespace] = ACTIONS(3275), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_typeof] = ACTIONS(3275), - [anon_sym_import] = ACTIONS(3275), - [anon_sym_with] = ACTIONS(3275), - [anon_sym_var] = ACTIONS(3275), - [anon_sym_let] = ACTIONS(3275), - [anon_sym_const] = ACTIONS(3275), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_else] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3275), - [anon_sym_switch] = ACTIONS(3275), - [anon_sym_for] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_await] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3275), - [anon_sym_do] = ACTIONS(3275), - [anon_sym_try] = ACTIONS(3275), - [anon_sym_break] = ACTIONS(3275), - [anon_sym_continue] = ACTIONS(3275), - [anon_sym_debugger] = ACTIONS(3275), - [anon_sym_return] = ACTIONS(3275), - [anon_sym_throw] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3275), - [anon_sym_yield] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_LTtemplate_GT] = ACTIONS(3275), - [anon_sym_DQUOTE] = ACTIONS(3275), - [anon_sym_SQUOTE] = ACTIONS(3275), - [anon_sym_class] = ACTIONS(3275), - [anon_sym_async] = ACTIONS(3275), - [anon_sym_function] = ACTIONS(3275), - [anon_sym_new] = ACTIONS(3275), - [anon_sym_using] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3275), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_LT] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_void] = ACTIONS(3275), - [anon_sym_delete] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3275), - [sym_number] = ACTIONS(3275), - [sym_private_property_identifier] = ACTIONS(3275), - [sym_this] = ACTIONS(3275), - [sym_super] = ACTIONS(3275), - [sym_true] = ACTIONS(3275), - [sym_false] = ACTIONS(3275), - [sym_null] = ACTIONS(3275), - [sym_undefined] = ACTIONS(3275), - [anon_sym_AT] = ACTIONS(3275), - [anon_sym_static] = ACTIONS(3275), - [anon_sym_readonly] = ACTIONS(3275), - [anon_sym_get] = ACTIONS(3275), - [anon_sym_set] = ACTIONS(3275), - [anon_sym_declare] = ACTIONS(3275), - [anon_sym_public] = ACTIONS(3275), - [anon_sym_private] = ACTIONS(3275), - [anon_sym_protected] = ACTIONS(3275), - [anon_sym_override] = ACTIONS(3275), - [anon_sym_module] = ACTIONS(3275), - [anon_sym_any] = ACTIONS(3275), - [anon_sym_number] = ACTIONS(3275), - [anon_sym_boolean] = ACTIONS(3275), - [anon_sym_string] = ACTIONS(3275), - [anon_sym_symbol] = ACTIONS(3275), - [anon_sym_object] = ACTIONS(3275), - [anon_sym_abstract] = ACTIONS(3275), - [anon_sym_interface] = ACTIONS(3275), - [anon_sym_enum] = ACTIONS(3275), + [ts_builtin_sym_end] = ACTIONS(2306), + [sym_identifier] = ACTIONS(2304), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_type] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2304), + [anon_sym_LBRACE] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_typeof] = ACTIONS(2304), + [anon_sym_import] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(2304), + [anon_sym_var] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(2304), + [anon_sym_else] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_switch] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_await] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_debugger] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_throw] = ACTIONS(2304), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_yield] = ACTIONS(2304), + [anon_sym_LBRACK] = ACTIONS(2304), + [anon_sym_LTtemplate_GT] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2304), + [anon_sym_SQUOTE] = ACTIONS(2304), + [anon_sym_class] = ACTIONS(2304), + [anon_sym_async] = ACTIONS(2304), + [anon_sym_function] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2304), + [anon_sym_using] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2304), + [anon_sym_DASH] = ACTIONS(2304), + [anon_sym_SLASH] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2304), + [anon_sym_void] = ACTIONS(2304), + [anon_sym_delete] = ACTIONS(2304), + [anon_sym_PLUS_PLUS] = ACTIONS(2304), + [anon_sym_DASH_DASH] = ACTIONS(2304), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2304), + [sym_number] = ACTIONS(2304), + [sym_private_property_identifier] = ACTIONS(2304), + [sym_this] = ACTIONS(2304), + [sym_super] = ACTIONS(2304), + [sym_true] = ACTIONS(2304), + [sym_false] = ACTIONS(2304), + [sym_null] = ACTIONS(2304), + [sym_undefined] = ACTIONS(2304), + [anon_sym_AT] = ACTIONS(2304), + [anon_sym_static] = ACTIONS(2304), + [anon_sym_readonly] = ACTIONS(2304), + [anon_sym_get] = ACTIONS(2304), + [anon_sym_set] = ACTIONS(2304), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_public] = ACTIONS(2304), + [anon_sym_private] = ACTIONS(2304), + [anon_sym_protected] = ACTIONS(2304), + [anon_sym_override] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_any] = ACTIONS(2304), + [anon_sym_number] = ACTIONS(2304), + [anon_sym_boolean] = ACTIONS(2304), + [anon_sym_string] = ACTIONS(2304), + [anon_sym_symbol] = ACTIONS(2304), + [anon_sym_object] = ACTIONS(2304), + [anon_sym_abstract] = ACTIONS(2304), + [anon_sym_interface] = ACTIONS(2304), + [anon_sym_enum] = ACTIONS(2304), [sym_html_comment] = ACTIONS(5), }, [1363] = { [sym_comment] = STATE(1363), - [sym_identifier] = ACTIONS(3409), - [anon_sym_export] = ACTIONS(3409), - [anon_sym_default] = ACTIONS(3409), - [anon_sym_type] = ACTIONS(3409), - [anon_sym_namespace] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_typeof] = ACTIONS(3409), - [anon_sym_import] = ACTIONS(3409), - [anon_sym_with] = ACTIONS(3409), - [anon_sym_var] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_const] = ACTIONS(3409), - [anon_sym_BANG] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_switch] = ACTIONS(3409), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_await] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_break] = ACTIONS(3409), - [anon_sym_continue] = ACTIONS(3409), - [anon_sym_debugger] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_throw] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_case] = ACTIONS(3409), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LTtemplate_GT] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_SQUOTE] = ACTIONS(3409), - [anon_sym_class] = ACTIONS(3409), - [anon_sym_async] = ACTIONS(3409), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_using] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_SLASH] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_void] = ACTIONS(3409), - [anon_sym_delete] = ACTIONS(3409), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3409), - [sym_number] = ACTIONS(3409), - [sym_private_property_identifier] = ACTIONS(3409), - [sym_this] = ACTIONS(3409), - [sym_super] = ACTIONS(3409), - [sym_true] = ACTIONS(3409), - [sym_false] = ACTIONS(3409), - [sym_null] = ACTIONS(3409), - [sym_undefined] = ACTIONS(3409), - [anon_sym_AT] = ACTIONS(3409), - [anon_sym_static] = ACTIONS(3409), - [anon_sym_readonly] = ACTIONS(3409), - [anon_sym_get] = ACTIONS(3409), - [anon_sym_set] = ACTIONS(3409), - [anon_sym_declare] = ACTIONS(3409), - [anon_sym_public] = ACTIONS(3409), - [anon_sym_private] = ACTIONS(3409), - [anon_sym_protected] = ACTIONS(3409), - [anon_sym_override] = ACTIONS(3409), - [anon_sym_module] = ACTIONS(3409), - [anon_sym_any] = ACTIONS(3409), - [anon_sym_number] = ACTIONS(3409), - [anon_sym_boolean] = ACTIONS(3409), - [anon_sym_string] = ACTIONS(3409), - [anon_sym_symbol] = ACTIONS(3409), - [anon_sym_object] = ACTIONS(3409), - [anon_sym_abstract] = ACTIONS(3409), - [anon_sym_interface] = ACTIONS(3409), - [anon_sym_enum] = ACTIONS(3409), + [ts_builtin_sym_end] = ACTIONS(3573), + [sym_identifier] = ACTIONS(3315), + [anon_sym_export] = ACTIONS(3315), + [anon_sym_type] = ACTIONS(3315), + [anon_sym_namespace] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3315), + [anon_sym_RBRACE] = ACTIONS(3315), + [anon_sym_typeof] = ACTIONS(3315), + [anon_sym_import] = ACTIONS(3315), + [anon_sym_with] = ACTIONS(3315), + [anon_sym_var] = ACTIONS(3315), + [anon_sym_let] = ACTIONS(3315), + [anon_sym_const] = ACTIONS(3315), + [anon_sym_BANG] = ACTIONS(3315), + [anon_sym_else] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_switch] = ACTIONS(3315), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3315), + [anon_sym_await] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3315), + [anon_sym_do] = ACTIONS(3315), + [anon_sym_try] = ACTIONS(3315), + [anon_sym_break] = ACTIONS(3315), + [anon_sym_continue] = ACTIONS(3315), + [anon_sym_debugger] = ACTIONS(3315), + [anon_sym_return] = ACTIONS(3315), + [anon_sym_throw] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym_yield] = ACTIONS(3315), + [anon_sym_LBRACK] = ACTIONS(3315), + [anon_sym_LTtemplate_GT] = ACTIONS(3315), + [anon_sym_DQUOTE] = ACTIONS(3315), + [anon_sym_SQUOTE] = ACTIONS(3315), + [anon_sym_class] = ACTIONS(3315), + [anon_sym_async] = ACTIONS(3315), + [anon_sym_function] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(3315), + [anon_sym_using] = ACTIONS(3315), + [anon_sym_PLUS] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3315), + [anon_sym_SLASH] = ACTIONS(3315), + [anon_sym_LT] = ACTIONS(3315), + [anon_sym_TILDE] = ACTIONS(3315), + [anon_sym_void] = ACTIONS(3315), + [anon_sym_delete] = ACTIONS(3315), + [anon_sym_PLUS_PLUS] = ACTIONS(3315), + [anon_sym_DASH_DASH] = ACTIONS(3315), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3315), + [sym_number] = ACTIONS(3315), + [sym_private_property_identifier] = ACTIONS(3315), + [sym_this] = ACTIONS(3315), + [sym_super] = ACTIONS(3315), + [sym_true] = ACTIONS(3315), + [sym_false] = ACTIONS(3315), + [sym_null] = ACTIONS(3315), + [sym_undefined] = ACTIONS(3315), + [anon_sym_AT] = ACTIONS(3315), + [anon_sym_static] = ACTIONS(3315), + [anon_sym_readonly] = ACTIONS(3315), + [anon_sym_get] = ACTIONS(3315), + [anon_sym_set] = ACTIONS(3315), + [anon_sym_declare] = ACTIONS(3315), + [anon_sym_public] = ACTIONS(3315), + [anon_sym_private] = ACTIONS(3315), + [anon_sym_protected] = ACTIONS(3315), + [anon_sym_override] = ACTIONS(3315), + [anon_sym_module] = ACTIONS(3315), + [anon_sym_any] = ACTIONS(3315), + [anon_sym_number] = ACTIONS(3315), + [anon_sym_boolean] = ACTIONS(3315), + [anon_sym_string] = ACTIONS(3315), + [anon_sym_symbol] = ACTIONS(3315), + [anon_sym_object] = ACTIONS(3315), + [anon_sym_abstract] = ACTIONS(3315), + [anon_sym_interface] = ACTIONS(3315), + [anon_sym_enum] = ACTIONS(3315), [sym_html_comment] = ACTIONS(5), }, [1364] = { [sym_comment] = STATE(1364), - [ts_builtin_sym_end] = ACTIONS(2350), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_else] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(2176), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LTtemplate_GT] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_number] = ACTIONS(2176), - [sym_private_property_identifier] = ACTIONS(2176), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), - [sym_html_comment] = ACTIONS(5), - }, - [1365] = { - [sym_comment] = STATE(1365), - [ts_builtin_sym_end] = ACTIONS(3557), - [sym_identifier] = ACTIONS(3401), - [anon_sym_export] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_namespace] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_typeof] = ACTIONS(3401), - [anon_sym_import] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_var] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_else] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_switch] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_await] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_break] = ACTIONS(3401), - [anon_sym_continue] = ACTIONS(3401), - [anon_sym_debugger] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_throw] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LTtemplate_GT] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_SQUOTE] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_async] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_using] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_void] = ACTIONS(3401), - [anon_sym_delete] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_case] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3401), - [sym_number] = ACTIONS(3401), - [sym_private_property_identifier] = ACTIONS(3401), - [sym_this] = ACTIONS(3401), - [sym_super] = ACTIONS(3401), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_null] = ACTIONS(3401), - [sym_undefined] = ACTIONS(3401), - [anon_sym_AT] = ACTIONS(3401), - [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_abstract] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3401), - [anon_sym_enum] = ACTIONS(3401), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), + [sym_html_comment] = ACTIONS(5), + }, + [1365] = { + [sym_comment] = STATE(1365), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_case] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, [1366] = { [sym_comment] = STATE(1366), - [sym_identifier] = ACTIONS(3409), - [anon_sym_export] = ACTIONS(3409), - [anon_sym_default] = ACTIONS(3409), - [anon_sym_type] = ACTIONS(3409), - [anon_sym_namespace] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_typeof] = ACTIONS(3409), - [anon_sym_import] = ACTIONS(3409), - [anon_sym_with] = ACTIONS(3409), - [anon_sym_var] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_const] = ACTIONS(3409), - [anon_sym_BANG] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_switch] = ACTIONS(3409), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_await] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_break] = ACTIONS(3409), - [anon_sym_continue] = ACTIONS(3409), - [anon_sym_debugger] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_throw] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_case] = ACTIONS(3409), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LTtemplate_GT] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_SQUOTE] = ACTIONS(3409), - [anon_sym_class] = ACTIONS(3409), - [anon_sym_async] = ACTIONS(3409), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_using] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_SLASH] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_void] = ACTIONS(3409), - [anon_sym_delete] = ACTIONS(3409), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3409), - [sym_number] = ACTIONS(3409), - [sym_private_property_identifier] = ACTIONS(3409), - [sym_this] = ACTIONS(3409), - [sym_super] = ACTIONS(3409), - [sym_true] = ACTIONS(3409), - [sym_false] = ACTIONS(3409), - [sym_null] = ACTIONS(3409), - [sym_undefined] = ACTIONS(3409), - [anon_sym_AT] = ACTIONS(3409), - [anon_sym_static] = ACTIONS(3409), - [anon_sym_readonly] = ACTIONS(3409), - [anon_sym_get] = ACTIONS(3409), - [anon_sym_set] = ACTIONS(3409), - [anon_sym_declare] = ACTIONS(3409), - [anon_sym_public] = ACTIONS(3409), - [anon_sym_private] = ACTIONS(3409), - [anon_sym_protected] = ACTIONS(3409), - [anon_sym_override] = ACTIONS(3409), - [anon_sym_module] = ACTIONS(3409), - [anon_sym_any] = ACTIONS(3409), - [anon_sym_number] = ACTIONS(3409), - [anon_sym_boolean] = ACTIONS(3409), - [anon_sym_string] = ACTIONS(3409), - [anon_sym_symbol] = ACTIONS(3409), - [anon_sym_object] = ACTIONS(3409), - [anon_sym_abstract] = ACTIONS(3409), - [anon_sym_interface] = ACTIONS(3409), - [anon_sym_enum] = ACTIONS(3409), + [sym_identifier] = ACTIONS(3385), + [anon_sym_export] = ACTIONS(3385), + [anon_sym_default] = ACTIONS(3385), + [anon_sym_type] = ACTIONS(3385), + [anon_sym_namespace] = ACTIONS(3385), + [anon_sym_LBRACE] = ACTIONS(3385), + [anon_sym_RBRACE] = ACTIONS(3385), + [anon_sym_typeof] = ACTIONS(3385), + [anon_sym_import] = ACTIONS(3385), + [anon_sym_with] = ACTIONS(3385), + [anon_sym_var] = ACTIONS(3385), + [anon_sym_let] = ACTIONS(3385), + [anon_sym_const] = ACTIONS(3385), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_if] = ACTIONS(3385), + [anon_sym_switch] = ACTIONS(3385), + [anon_sym_for] = ACTIONS(3385), + [anon_sym_LPAREN] = ACTIONS(3385), + [anon_sym_await] = ACTIONS(3385), + [anon_sym_while] = ACTIONS(3385), + [anon_sym_do] = ACTIONS(3385), + [anon_sym_try] = ACTIONS(3385), + [anon_sym_break] = ACTIONS(3385), + [anon_sym_continue] = ACTIONS(3385), + [anon_sym_debugger] = ACTIONS(3385), + [anon_sym_return] = ACTIONS(3385), + [anon_sym_throw] = ACTIONS(3385), + [anon_sym_SEMI] = ACTIONS(3385), + [anon_sym_case] = ACTIONS(3385), + [anon_sym_yield] = ACTIONS(3385), + [anon_sym_LBRACK] = ACTIONS(3385), + [anon_sym_LTtemplate_GT] = ACTIONS(3385), + [anon_sym_DQUOTE] = ACTIONS(3385), + [anon_sym_SQUOTE] = ACTIONS(3385), + [anon_sym_class] = ACTIONS(3385), + [anon_sym_async] = ACTIONS(3385), + [anon_sym_function] = ACTIONS(3385), + [anon_sym_new] = ACTIONS(3385), + [anon_sym_using] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_SLASH] = ACTIONS(3385), + [anon_sym_LT] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(3385), + [anon_sym_void] = ACTIONS(3385), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_PLUS_PLUS] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3385), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3385), + [sym_number] = ACTIONS(3385), + [sym_private_property_identifier] = ACTIONS(3385), + [sym_this] = ACTIONS(3385), + [sym_super] = ACTIONS(3385), + [sym_true] = ACTIONS(3385), + [sym_false] = ACTIONS(3385), + [sym_null] = ACTIONS(3385), + [sym_undefined] = ACTIONS(3385), + [anon_sym_AT] = ACTIONS(3385), + [anon_sym_static] = ACTIONS(3385), + [anon_sym_readonly] = ACTIONS(3385), + [anon_sym_get] = ACTIONS(3385), + [anon_sym_set] = ACTIONS(3385), + [anon_sym_declare] = ACTIONS(3385), + [anon_sym_public] = ACTIONS(3385), + [anon_sym_private] = ACTIONS(3385), + [anon_sym_protected] = ACTIONS(3385), + [anon_sym_override] = ACTIONS(3385), + [anon_sym_module] = ACTIONS(3385), + [anon_sym_any] = ACTIONS(3385), + [anon_sym_number] = ACTIONS(3385), + [anon_sym_boolean] = ACTIONS(3385), + [anon_sym_string] = ACTIONS(3385), + [anon_sym_symbol] = ACTIONS(3385), + [anon_sym_object] = ACTIONS(3385), + [anon_sym_abstract] = ACTIONS(3385), + [anon_sym_interface] = ACTIONS(3385), + [anon_sym_enum] = ACTIONS(3385), [sym_html_comment] = ACTIONS(5), }, [1367] = { [sym_comment] = STATE(1367), - [ts_builtin_sym_end] = ACTIONS(3559), - [sym_identifier] = ACTIONS(3273), - [anon_sym_export] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3273), - [anon_sym_namespace] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(3273), - [anon_sym_RBRACE] = ACTIONS(3273), - [anon_sym_typeof] = ACTIONS(3273), - [anon_sym_import] = ACTIONS(3273), - [anon_sym_with] = ACTIONS(3273), - [anon_sym_var] = ACTIONS(3273), - [anon_sym_let] = ACTIONS(3273), - [anon_sym_const] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3273), - [anon_sym_else] = ACTIONS(3273), - [anon_sym_if] = ACTIONS(3273), - [anon_sym_switch] = ACTIONS(3273), - [anon_sym_for] = ACTIONS(3273), - [anon_sym_LPAREN] = ACTIONS(3273), - [anon_sym_await] = ACTIONS(3273), - [anon_sym_while] = ACTIONS(3273), - [anon_sym_do] = ACTIONS(3273), - [anon_sym_try] = ACTIONS(3273), - [anon_sym_break] = ACTIONS(3273), - [anon_sym_continue] = ACTIONS(3273), - [anon_sym_debugger] = ACTIONS(3273), - [anon_sym_return] = ACTIONS(3273), - [anon_sym_throw] = ACTIONS(3273), - [anon_sym_SEMI] = ACTIONS(3273), - [anon_sym_yield] = ACTIONS(3273), - [anon_sym_LBRACK] = ACTIONS(3273), - [anon_sym_LTtemplate_GT] = ACTIONS(3273), - [anon_sym_DQUOTE] = ACTIONS(3273), - [anon_sym_SQUOTE] = ACTIONS(3273), - [anon_sym_class] = ACTIONS(3273), - [anon_sym_async] = ACTIONS(3273), - [anon_sym_function] = ACTIONS(3273), - [anon_sym_new] = ACTIONS(3273), - [anon_sym_using] = ACTIONS(3273), - [anon_sym_PLUS] = ACTIONS(3273), - [anon_sym_DASH] = ACTIONS(3273), - [anon_sym_SLASH] = ACTIONS(3273), - [anon_sym_LT] = ACTIONS(3273), - [anon_sym_TILDE] = ACTIONS(3273), - [anon_sym_void] = ACTIONS(3273), - [anon_sym_delete] = ACTIONS(3273), - [anon_sym_PLUS_PLUS] = ACTIONS(3273), - [anon_sym_DASH_DASH] = ACTIONS(3273), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3273), - [sym_number] = ACTIONS(3273), - [sym_private_property_identifier] = ACTIONS(3273), - [sym_this] = ACTIONS(3273), - [sym_super] = ACTIONS(3273), - [sym_true] = ACTIONS(3273), - [sym_false] = ACTIONS(3273), - [sym_null] = ACTIONS(3273), - [sym_undefined] = ACTIONS(3273), - [anon_sym_AT] = ACTIONS(3273), - [anon_sym_static] = ACTIONS(3273), - [anon_sym_readonly] = ACTIONS(3273), - [anon_sym_get] = ACTIONS(3273), - [anon_sym_set] = ACTIONS(3273), - [anon_sym_declare] = ACTIONS(3273), - [anon_sym_public] = ACTIONS(3273), - [anon_sym_private] = ACTIONS(3273), - [anon_sym_protected] = ACTIONS(3273), - [anon_sym_override] = ACTIONS(3273), - [anon_sym_module] = ACTIONS(3273), - [anon_sym_any] = ACTIONS(3273), - [anon_sym_number] = ACTIONS(3273), - [anon_sym_boolean] = ACTIONS(3273), - [anon_sym_string] = ACTIONS(3273), - [anon_sym_symbol] = ACTIONS(3273), - [anon_sym_object] = ACTIONS(3273), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_interface] = ACTIONS(3273), - [anon_sym_enum] = ACTIONS(3273), + [sym_identifier] = ACTIONS(3383), + [anon_sym_export] = ACTIONS(3383), + [anon_sym_default] = ACTIONS(3383), + [anon_sym_type] = ACTIONS(3383), + [anon_sym_namespace] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_RBRACE] = ACTIONS(3383), + [anon_sym_typeof] = ACTIONS(3383), + [anon_sym_import] = ACTIONS(3383), + [anon_sym_with] = ACTIONS(3383), + [anon_sym_var] = ACTIONS(3383), + [anon_sym_let] = ACTIONS(3383), + [anon_sym_const] = ACTIONS(3383), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_if] = ACTIONS(3383), + [anon_sym_switch] = ACTIONS(3383), + [anon_sym_for] = ACTIONS(3383), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_await] = ACTIONS(3383), + [anon_sym_while] = ACTIONS(3383), + [anon_sym_do] = ACTIONS(3383), + [anon_sym_try] = ACTIONS(3383), + [anon_sym_break] = ACTIONS(3383), + [anon_sym_continue] = ACTIONS(3383), + [anon_sym_debugger] = ACTIONS(3383), + [anon_sym_return] = ACTIONS(3383), + [anon_sym_throw] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3383), + [anon_sym_case] = ACTIONS(3383), + [anon_sym_yield] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_LTtemplate_GT] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [anon_sym_SQUOTE] = ACTIONS(3383), + [anon_sym_class] = ACTIONS(3383), + [anon_sym_async] = ACTIONS(3383), + [anon_sym_function] = ACTIONS(3383), + [anon_sym_new] = ACTIONS(3383), + [anon_sym_using] = ACTIONS(3383), + [anon_sym_PLUS] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3383), + [anon_sym_SLASH] = ACTIONS(3383), + [anon_sym_LT] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_void] = ACTIONS(3383), + [anon_sym_delete] = ACTIONS(3383), + [anon_sym_PLUS_PLUS] = ACTIONS(3383), + [anon_sym_DASH_DASH] = ACTIONS(3383), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3383), + [sym_number] = ACTIONS(3383), + [sym_private_property_identifier] = ACTIONS(3383), + [sym_this] = ACTIONS(3383), + [sym_super] = ACTIONS(3383), + [sym_true] = ACTIONS(3383), + [sym_false] = ACTIONS(3383), + [sym_null] = ACTIONS(3383), + [sym_undefined] = ACTIONS(3383), + [anon_sym_AT] = ACTIONS(3383), + [anon_sym_static] = ACTIONS(3383), + [anon_sym_readonly] = ACTIONS(3383), + [anon_sym_get] = ACTIONS(3383), + [anon_sym_set] = ACTIONS(3383), + [anon_sym_declare] = ACTIONS(3383), + [anon_sym_public] = ACTIONS(3383), + [anon_sym_private] = ACTIONS(3383), + [anon_sym_protected] = ACTIONS(3383), + [anon_sym_override] = ACTIONS(3383), + [anon_sym_module] = ACTIONS(3383), + [anon_sym_any] = ACTIONS(3383), + [anon_sym_number] = ACTIONS(3383), + [anon_sym_boolean] = ACTIONS(3383), + [anon_sym_string] = ACTIONS(3383), + [anon_sym_symbol] = ACTIONS(3383), + [anon_sym_object] = ACTIONS(3383), + [anon_sym_abstract] = ACTIONS(3383), + [anon_sym_interface] = ACTIONS(3383), + [anon_sym_enum] = ACTIONS(3383), [sym_html_comment] = ACTIONS(5), }, [1368] = { [sym_comment] = STATE(1368), - [ts_builtin_sym_end] = ACTIONS(3561), - [sym_identifier] = ACTIONS(3413), - [anon_sym_export] = ACTIONS(3413), - [anon_sym_type] = ACTIONS(3413), - [anon_sym_namespace] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_RBRACE] = ACTIONS(3413), - [anon_sym_typeof] = ACTIONS(3413), - [anon_sym_import] = ACTIONS(3413), - [anon_sym_with] = ACTIONS(3413), - [anon_sym_var] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_const] = ACTIONS(3413), - [anon_sym_BANG] = ACTIONS(3413), - [anon_sym_else] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_await] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_break] = ACTIONS(3413), - [anon_sym_continue] = ACTIONS(3413), - [anon_sym_debugger] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_throw] = ACTIONS(3413), - [anon_sym_SEMI] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LTtemplate_GT] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_SQUOTE] = ACTIONS(3413), - [anon_sym_class] = ACTIONS(3413), - [anon_sym_async] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_using] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_SLASH] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_void] = ACTIONS(3413), - [anon_sym_delete] = ACTIONS(3413), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3413), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3413), - [sym_number] = ACTIONS(3413), - [sym_private_property_identifier] = ACTIONS(3413), - [sym_this] = ACTIONS(3413), - [sym_super] = ACTIONS(3413), - [sym_true] = ACTIONS(3413), - [sym_false] = ACTIONS(3413), - [sym_null] = ACTIONS(3413), - [sym_undefined] = ACTIONS(3413), - [anon_sym_AT] = ACTIONS(3413), - [anon_sym_static] = ACTIONS(3413), - [anon_sym_readonly] = ACTIONS(3413), - [anon_sym_get] = ACTIONS(3413), - [anon_sym_set] = ACTIONS(3413), - [anon_sym_declare] = ACTIONS(3413), - [anon_sym_public] = ACTIONS(3413), - [anon_sym_private] = ACTIONS(3413), - [anon_sym_protected] = ACTIONS(3413), - [anon_sym_override] = ACTIONS(3413), - [anon_sym_module] = ACTIONS(3413), - [anon_sym_any] = ACTIONS(3413), - [anon_sym_number] = ACTIONS(3413), - [anon_sym_boolean] = ACTIONS(3413), - [anon_sym_string] = ACTIONS(3413), - [anon_sym_symbol] = ACTIONS(3413), - [anon_sym_object] = ACTIONS(3413), - [anon_sym_abstract] = ACTIONS(3413), - [anon_sym_interface] = ACTIONS(3413), - [anon_sym_enum] = ACTIONS(3413), + [sym_identifier] = ACTIONS(3575), + [anon_sym_export] = ACTIONS(3575), + [anon_sym_default] = ACTIONS(3575), + [anon_sym_type] = ACTIONS(3575), + [anon_sym_namespace] = ACTIONS(3575), + [anon_sym_LBRACE] = ACTIONS(3575), + [anon_sym_RBRACE] = ACTIONS(3575), + [anon_sym_typeof] = ACTIONS(3575), + [anon_sym_import] = ACTIONS(3575), + [anon_sym_with] = ACTIONS(3575), + [anon_sym_var] = ACTIONS(3575), + [anon_sym_let] = ACTIONS(3575), + [anon_sym_const] = ACTIONS(3575), + [anon_sym_BANG] = ACTIONS(3575), + [anon_sym_if] = ACTIONS(3575), + [anon_sym_switch] = ACTIONS(3575), + [anon_sym_for] = ACTIONS(3575), + [anon_sym_LPAREN] = ACTIONS(3575), + [anon_sym_await] = ACTIONS(3575), + [anon_sym_while] = ACTIONS(3575), + [anon_sym_do] = ACTIONS(3575), + [anon_sym_try] = ACTIONS(3575), + [anon_sym_break] = ACTIONS(3575), + [anon_sym_continue] = ACTIONS(3575), + [anon_sym_debugger] = ACTIONS(3575), + [anon_sym_return] = ACTIONS(3575), + [anon_sym_throw] = ACTIONS(3575), + [anon_sym_SEMI] = ACTIONS(3575), + [anon_sym_case] = ACTIONS(3575), + [anon_sym_yield] = ACTIONS(3575), + [anon_sym_LBRACK] = ACTIONS(3575), + [anon_sym_LTtemplate_GT] = ACTIONS(3575), + [anon_sym_DQUOTE] = ACTIONS(3575), + [anon_sym_SQUOTE] = ACTIONS(3575), + [anon_sym_class] = ACTIONS(3575), + [anon_sym_async] = ACTIONS(3575), + [anon_sym_function] = ACTIONS(3575), + [anon_sym_new] = ACTIONS(3575), + [anon_sym_using] = ACTIONS(3575), + [anon_sym_PLUS] = ACTIONS(3575), + [anon_sym_DASH] = ACTIONS(3575), + [anon_sym_SLASH] = ACTIONS(3575), + [anon_sym_LT] = ACTIONS(3575), + [anon_sym_TILDE] = ACTIONS(3575), + [anon_sym_void] = ACTIONS(3575), + [anon_sym_delete] = ACTIONS(3575), + [anon_sym_PLUS_PLUS] = ACTIONS(3575), + [anon_sym_DASH_DASH] = ACTIONS(3575), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3575), + [sym_number] = ACTIONS(3575), + [sym_private_property_identifier] = ACTIONS(3575), + [sym_this] = ACTIONS(3575), + [sym_super] = ACTIONS(3575), + [sym_true] = ACTIONS(3575), + [sym_false] = ACTIONS(3575), + [sym_null] = ACTIONS(3575), + [sym_undefined] = ACTIONS(3575), + [anon_sym_AT] = ACTIONS(3575), + [anon_sym_static] = ACTIONS(3575), + [anon_sym_readonly] = ACTIONS(3575), + [anon_sym_get] = ACTIONS(3575), + [anon_sym_set] = ACTIONS(3575), + [anon_sym_declare] = ACTIONS(3575), + [anon_sym_public] = ACTIONS(3575), + [anon_sym_private] = ACTIONS(3575), + [anon_sym_protected] = ACTIONS(3575), + [anon_sym_override] = ACTIONS(3575), + [anon_sym_module] = ACTIONS(3575), + [anon_sym_any] = ACTIONS(3575), + [anon_sym_number] = ACTIONS(3575), + [anon_sym_boolean] = ACTIONS(3575), + [anon_sym_string] = ACTIONS(3575), + [anon_sym_symbol] = ACTIONS(3575), + [anon_sym_object] = ACTIONS(3575), + [anon_sym_abstract] = ACTIONS(3575), + [anon_sym_interface] = ACTIONS(3575), + [anon_sym_enum] = ACTIONS(3575), [sym_html_comment] = ACTIONS(5), }, [1369] = { [sym_comment] = STATE(1369), - [sym_identifier] = ACTIONS(2258), - [anon_sym_export] = ACTIONS(2258), - [anon_sym_default] = ACTIONS(2258), - [anon_sym_type] = ACTIONS(2258), - [anon_sym_namespace] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2258), - [anon_sym_import] = ACTIONS(2258), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_var] = ACTIONS(2258), - [anon_sym_let] = ACTIONS(2258), - [anon_sym_const] = ACTIONS(2258), - [anon_sym_BANG] = ACTIONS(2258), - [anon_sym_if] = ACTIONS(2258), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_for] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_await] = ACTIONS(2258), - [anon_sym_while] = ACTIONS(2258), - [anon_sym_do] = ACTIONS(2258), - [anon_sym_try] = ACTIONS(2258), - [anon_sym_break] = ACTIONS(2258), - [anon_sym_continue] = ACTIONS(2258), - [anon_sym_debugger] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(2258), - [anon_sym_throw] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_case] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2258), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_LTtemplate_GT] = ACTIONS(2258), - [anon_sym_DQUOTE] = ACTIONS(2258), - [anon_sym_SQUOTE] = ACTIONS(2258), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2258), - [anon_sym_function] = ACTIONS(2258), - [anon_sym_new] = ACTIONS(2258), - [anon_sym_using] = ACTIONS(2258), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2258), - [anon_sym_TILDE] = ACTIONS(2258), - [anon_sym_void] = ACTIONS(2258), - [anon_sym_delete] = ACTIONS(2258), - [anon_sym_PLUS_PLUS] = ACTIONS(2258), - [anon_sym_DASH_DASH] = ACTIONS(2258), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2258), - [sym_number] = ACTIONS(2258), - [sym_private_property_identifier] = ACTIONS(2258), - [sym_this] = ACTIONS(2258), - [sym_super] = ACTIONS(2258), - [sym_true] = ACTIONS(2258), - [sym_false] = ACTIONS(2258), - [sym_null] = ACTIONS(2258), - [sym_undefined] = ACTIONS(2258), - [anon_sym_AT] = ACTIONS(2258), - [anon_sym_static] = ACTIONS(2258), - [anon_sym_readonly] = ACTIONS(2258), - [anon_sym_get] = ACTIONS(2258), - [anon_sym_set] = ACTIONS(2258), - [anon_sym_declare] = ACTIONS(2258), - [anon_sym_public] = ACTIONS(2258), - [anon_sym_private] = ACTIONS(2258), - [anon_sym_protected] = ACTIONS(2258), - [anon_sym_override] = ACTIONS(2258), - [anon_sym_module] = ACTIONS(2258), - [anon_sym_any] = ACTIONS(2258), - [anon_sym_number] = ACTIONS(2258), - [anon_sym_boolean] = ACTIONS(2258), - [anon_sym_string] = ACTIONS(2258), - [anon_sym_symbol] = ACTIONS(2258), - [anon_sym_object] = ACTIONS(2258), - [anon_sym_abstract] = ACTIONS(2258), - [anon_sym_interface] = ACTIONS(2258), - [anon_sym_enum] = ACTIONS(2258), + [ts_builtin_sym_end] = ACTIONS(3577), + [sym_identifier] = ACTIONS(3311), + [anon_sym_export] = ACTIONS(3311), + [anon_sym_type] = ACTIONS(3311), + [anon_sym_namespace] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_typeof] = ACTIONS(3311), + [anon_sym_import] = ACTIONS(3311), + [anon_sym_with] = ACTIONS(3311), + [anon_sym_var] = ACTIONS(3311), + [anon_sym_let] = ACTIONS(3311), + [anon_sym_const] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_else] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_switch] = ACTIONS(3311), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_await] = ACTIONS(3311), + [anon_sym_while] = ACTIONS(3311), + [anon_sym_do] = ACTIONS(3311), + [anon_sym_try] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_debugger] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_throw] = ACTIONS(3311), + [anon_sym_SEMI] = ACTIONS(3311), + [anon_sym_yield] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_LTtemplate_GT] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(3311), + [anon_sym_SQUOTE] = ACTIONS(3311), + [anon_sym_class] = ACTIONS(3311), + [anon_sym_async] = ACTIONS(3311), + [anon_sym_function] = ACTIONS(3311), + [anon_sym_new] = ACTIONS(3311), + [anon_sym_using] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_void] = ACTIONS(3311), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3311), + [sym_number] = ACTIONS(3311), + [sym_private_property_identifier] = ACTIONS(3311), + [sym_this] = ACTIONS(3311), + [sym_super] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_null] = ACTIONS(3311), + [sym_undefined] = ACTIONS(3311), + [anon_sym_AT] = ACTIONS(3311), + [anon_sym_static] = ACTIONS(3311), + [anon_sym_readonly] = ACTIONS(3311), + [anon_sym_get] = ACTIONS(3311), + [anon_sym_set] = ACTIONS(3311), + [anon_sym_declare] = ACTIONS(3311), + [anon_sym_public] = ACTIONS(3311), + [anon_sym_private] = ACTIONS(3311), + [anon_sym_protected] = ACTIONS(3311), + [anon_sym_override] = ACTIONS(3311), + [anon_sym_module] = ACTIONS(3311), + [anon_sym_any] = ACTIONS(3311), + [anon_sym_number] = ACTIONS(3311), + [anon_sym_boolean] = ACTIONS(3311), + [anon_sym_string] = ACTIONS(3311), + [anon_sym_symbol] = ACTIONS(3311), + [anon_sym_object] = ACTIONS(3311), + [anon_sym_abstract] = ACTIONS(3311), + [anon_sym_interface] = ACTIONS(3311), + [anon_sym_enum] = ACTIONS(3311), [sym_html_comment] = ACTIONS(5), }, [1370] = { [sym_comment] = STATE(1370), - [ts_builtin_sym_end] = ACTIONS(2416), - [sym_identifier] = ACTIONS(2288), - [anon_sym_export] = ACTIONS(2288), - [anon_sym_type] = ACTIONS(2288), - [anon_sym_namespace] = ACTIONS(2288), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_typeof] = ACTIONS(2288), - [anon_sym_import] = ACTIONS(2288), - [anon_sym_with] = ACTIONS(2288), - [anon_sym_var] = ACTIONS(2288), - [anon_sym_let] = ACTIONS(2288), - [anon_sym_const] = ACTIONS(2288), - [anon_sym_BANG] = ACTIONS(2288), - [anon_sym_if] = ACTIONS(2288), - [anon_sym_switch] = ACTIONS(2288), - [anon_sym_for] = ACTIONS(2288), - [anon_sym_LPAREN] = ACTIONS(2288), - [anon_sym_await] = ACTIONS(2288), - [anon_sym_while] = ACTIONS(2288), - [anon_sym_do] = ACTIONS(2288), - [anon_sym_try] = ACTIONS(2288), - [anon_sym_break] = ACTIONS(2288), - [anon_sym_continue] = ACTIONS(2288), - [anon_sym_debugger] = ACTIONS(2288), - [anon_sym_return] = ACTIONS(2288), - [anon_sym_throw] = ACTIONS(2288), - [anon_sym_SEMI] = ACTIONS(2288), - [anon_sym_yield] = ACTIONS(2288), - [anon_sym_LBRACK] = ACTIONS(2288), - [anon_sym_LTtemplate_GT] = ACTIONS(2288), - [anon_sym_DQUOTE] = ACTIONS(2288), - [anon_sym_SQUOTE] = ACTIONS(2288), - [anon_sym_class] = ACTIONS(2288), - [anon_sym_async] = ACTIONS(2288), - [anon_sym_function] = ACTIONS(2288), - [anon_sym_new] = ACTIONS(2288), - [anon_sym_using] = ACTIONS(2288), - [anon_sym_PLUS] = ACTIONS(2288), - [anon_sym_DASH] = ACTIONS(2288), - [anon_sym_SLASH] = ACTIONS(2288), - [anon_sym_LT] = ACTIONS(2288), - [anon_sym_TILDE] = ACTIONS(2288), - [anon_sym_void] = ACTIONS(2288), - [anon_sym_delete] = ACTIONS(2288), - [anon_sym_PLUS_PLUS] = ACTIONS(2288), - [anon_sym_DASH_DASH] = ACTIONS(2288), + [sym_identifier] = ACTIONS(3225), + [anon_sym_export] = ACTIONS(3225), + [anon_sym_default] = ACTIONS(3225), + [anon_sym_type] = ACTIONS(3225), + [anon_sym_namespace] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_typeof] = ACTIONS(3225), + [anon_sym_import] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(3225), + [anon_sym_var] = ACTIONS(3225), + [anon_sym_let] = ACTIONS(3225), + [anon_sym_const] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_if] = ACTIONS(3225), + [anon_sym_switch] = ACTIONS(3225), + [anon_sym_for] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym_await] = ACTIONS(3225), + [anon_sym_while] = ACTIONS(3225), + [anon_sym_do] = ACTIONS(3225), + [anon_sym_try] = ACTIONS(3225), + [anon_sym_break] = ACTIONS(3225), + [anon_sym_continue] = ACTIONS(3225), + [anon_sym_debugger] = ACTIONS(3225), + [anon_sym_return] = ACTIONS(3225), + [anon_sym_throw] = ACTIONS(3225), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym_case] = ACTIONS(3225), + [anon_sym_yield] = ACTIONS(3225), + [anon_sym_LBRACK] = ACTIONS(3225), + [anon_sym_LTtemplate_GT] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [anon_sym_SQUOTE] = ACTIONS(3225), + [anon_sym_class] = ACTIONS(3225), + [anon_sym_async] = ACTIONS(3225), + [anon_sym_function] = ACTIONS(3225), + [anon_sym_new] = ACTIONS(3225), + [anon_sym_using] = ACTIONS(3225), + [anon_sym_PLUS] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3225), + [anon_sym_SLASH] = ACTIONS(3225), + [anon_sym_LT] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_void] = ACTIONS(3225), + [anon_sym_delete] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_DASH_DASH] = ACTIONS(3225), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2288), - [sym_number] = ACTIONS(2288), - [sym_private_property_identifier] = ACTIONS(2288), - [sym_this] = ACTIONS(2288), - [sym_super] = ACTIONS(2288), - [sym_true] = ACTIONS(2288), - [sym_false] = ACTIONS(2288), - [sym_null] = ACTIONS(2288), - [sym_undefined] = ACTIONS(2288), - [anon_sym_AT] = ACTIONS(2288), - [anon_sym_static] = ACTIONS(2288), - [anon_sym_readonly] = ACTIONS(2288), - [anon_sym_get] = ACTIONS(2288), - [anon_sym_set] = ACTIONS(2288), - [anon_sym_declare] = ACTIONS(2288), - [anon_sym_public] = ACTIONS(2288), - [anon_sym_private] = ACTIONS(2288), - [anon_sym_protected] = ACTIONS(2288), - [anon_sym_override] = ACTIONS(2288), - [anon_sym_module] = ACTIONS(2288), - [anon_sym_any] = ACTIONS(2288), - [anon_sym_number] = ACTIONS(2288), - [anon_sym_boolean] = ACTIONS(2288), - [anon_sym_string] = ACTIONS(2288), - [anon_sym_symbol] = ACTIONS(2288), - [anon_sym_object] = ACTIONS(2288), - [anon_sym_abstract] = ACTIONS(2288), - [anon_sym_interface] = ACTIONS(2288), - [anon_sym_enum] = ACTIONS(2288), - [sym__automatic_semicolon] = ACTIONS(2446), + [anon_sym_BQUOTE] = ACTIONS(3225), + [sym_number] = ACTIONS(3225), + [sym_private_property_identifier] = ACTIONS(3225), + [sym_this] = ACTIONS(3225), + [sym_super] = ACTIONS(3225), + [sym_true] = ACTIONS(3225), + [sym_false] = ACTIONS(3225), + [sym_null] = ACTIONS(3225), + [sym_undefined] = ACTIONS(3225), + [anon_sym_AT] = ACTIONS(3225), + [anon_sym_static] = ACTIONS(3225), + [anon_sym_readonly] = ACTIONS(3225), + [anon_sym_get] = ACTIONS(3225), + [anon_sym_set] = ACTIONS(3225), + [anon_sym_declare] = ACTIONS(3225), + [anon_sym_public] = ACTIONS(3225), + [anon_sym_private] = ACTIONS(3225), + [anon_sym_protected] = ACTIONS(3225), + [anon_sym_override] = ACTIONS(3225), + [anon_sym_module] = ACTIONS(3225), + [anon_sym_any] = ACTIONS(3225), + [anon_sym_number] = ACTIONS(3225), + [anon_sym_boolean] = ACTIONS(3225), + [anon_sym_string] = ACTIONS(3225), + [anon_sym_symbol] = ACTIONS(3225), + [anon_sym_object] = ACTIONS(3225), + [anon_sym_abstract] = ACTIONS(3225), + [anon_sym_interface] = ACTIONS(3225), + [anon_sym_enum] = ACTIONS(3225), [sym_html_comment] = ACTIONS(5), }, [1371] = { [sym_comment] = STATE(1371), - [sym_identifier] = ACTIONS(2252), - [anon_sym_export] = ACTIONS(2252), - [anon_sym_default] = ACTIONS(2252), - [anon_sym_type] = ACTIONS(2252), - [anon_sym_namespace] = ACTIONS(2252), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_RBRACE] = ACTIONS(2252), - [anon_sym_typeof] = ACTIONS(2252), - [anon_sym_import] = ACTIONS(2252), - [anon_sym_with] = ACTIONS(2252), - [anon_sym_var] = ACTIONS(2252), - [anon_sym_let] = ACTIONS(2252), - [anon_sym_const] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_switch] = ACTIONS(2252), - [anon_sym_for] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_await] = ACTIONS(2252), - [anon_sym_while] = ACTIONS(2252), - [anon_sym_do] = ACTIONS(2252), - [anon_sym_try] = ACTIONS(2252), - [anon_sym_break] = ACTIONS(2252), - [anon_sym_continue] = ACTIONS(2252), - [anon_sym_debugger] = ACTIONS(2252), - [anon_sym_return] = ACTIONS(2252), - [anon_sym_throw] = ACTIONS(2252), - [anon_sym_SEMI] = ACTIONS(2252), - [anon_sym_case] = ACTIONS(2252), - [anon_sym_yield] = ACTIONS(2252), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_LTtemplate_GT] = ACTIONS(2252), - [anon_sym_DQUOTE] = ACTIONS(2252), - [anon_sym_SQUOTE] = ACTIONS(2252), - [anon_sym_class] = ACTIONS(2252), - [anon_sym_async] = ACTIONS(2252), - [anon_sym_function] = ACTIONS(2252), - [anon_sym_new] = ACTIONS(2252), - [anon_sym_using] = ACTIONS(2252), - [anon_sym_PLUS] = ACTIONS(2252), - [anon_sym_DASH] = ACTIONS(2252), - [anon_sym_SLASH] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_TILDE] = ACTIONS(2252), - [anon_sym_void] = ACTIONS(2252), - [anon_sym_delete] = ACTIONS(2252), - [anon_sym_PLUS_PLUS] = ACTIONS(2252), - [anon_sym_DASH_DASH] = ACTIONS(2252), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2252), - [sym_number] = ACTIONS(2252), - [sym_private_property_identifier] = ACTIONS(2252), - [sym_this] = ACTIONS(2252), - [sym_super] = ACTIONS(2252), - [sym_true] = ACTIONS(2252), - [sym_false] = ACTIONS(2252), - [sym_null] = ACTIONS(2252), - [sym_undefined] = ACTIONS(2252), - [anon_sym_AT] = ACTIONS(2252), - [anon_sym_static] = ACTIONS(2252), - [anon_sym_readonly] = ACTIONS(2252), - [anon_sym_get] = ACTIONS(2252), - [anon_sym_set] = ACTIONS(2252), - [anon_sym_declare] = ACTIONS(2252), - [anon_sym_public] = ACTIONS(2252), - [anon_sym_private] = ACTIONS(2252), - [anon_sym_protected] = ACTIONS(2252), - [anon_sym_override] = ACTIONS(2252), - [anon_sym_module] = ACTIONS(2252), - [anon_sym_any] = ACTIONS(2252), - [anon_sym_number] = ACTIONS(2252), - [anon_sym_boolean] = ACTIONS(2252), - [anon_sym_string] = ACTIONS(2252), - [anon_sym_symbol] = ACTIONS(2252), - [anon_sym_object] = ACTIONS(2252), - [anon_sym_abstract] = ACTIONS(2252), - [anon_sym_interface] = ACTIONS(2252), - [anon_sym_enum] = ACTIONS(2252), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_case] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, [1372] = { [sym_comment] = STATE(1372), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [ts_builtin_sym_end] = ACTIONS(3579), + [sym_identifier] = ACTIONS(3303), + [anon_sym_export] = ACTIONS(3303), + [anon_sym_type] = ACTIONS(3303), + [anon_sym_namespace] = ACTIONS(3303), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_typeof] = ACTIONS(3303), + [anon_sym_import] = ACTIONS(3303), + [anon_sym_with] = ACTIONS(3303), + [anon_sym_var] = ACTIONS(3303), + [anon_sym_let] = ACTIONS(3303), + [anon_sym_const] = ACTIONS(3303), + [anon_sym_BANG] = ACTIONS(3303), + [anon_sym_else] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_switch] = ACTIONS(3303), + [anon_sym_for] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_await] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3303), + [anon_sym_do] = ACTIONS(3303), + [anon_sym_try] = ACTIONS(3303), + [anon_sym_break] = ACTIONS(3303), + [anon_sym_continue] = ACTIONS(3303), + [anon_sym_debugger] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3303), + [anon_sym_throw] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3303), + [anon_sym_yield] = ACTIONS(3303), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_LTtemplate_GT] = ACTIONS(3303), + [anon_sym_DQUOTE] = ACTIONS(3303), + [anon_sym_SQUOTE] = ACTIONS(3303), + [anon_sym_class] = ACTIONS(3303), + [anon_sym_async] = ACTIONS(3303), + [anon_sym_function] = ACTIONS(3303), + [anon_sym_new] = ACTIONS(3303), + [anon_sym_using] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_SLASH] = ACTIONS(3303), + [anon_sym_LT] = ACTIONS(3303), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_void] = ACTIONS(3303), + [anon_sym_delete] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(3303), + [anon_sym_DASH_DASH] = ACTIONS(3303), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3303), + [sym_number] = ACTIONS(3303), + [sym_private_property_identifier] = ACTIONS(3303), + [sym_this] = ACTIONS(3303), + [sym_super] = ACTIONS(3303), + [sym_true] = ACTIONS(3303), + [sym_false] = ACTIONS(3303), + [sym_null] = ACTIONS(3303), + [sym_undefined] = ACTIONS(3303), + [anon_sym_AT] = ACTIONS(3303), + [anon_sym_static] = ACTIONS(3303), + [anon_sym_readonly] = ACTIONS(3303), + [anon_sym_get] = ACTIONS(3303), + [anon_sym_set] = ACTIONS(3303), + [anon_sym_declare] = ACTIONS(3303), + [anon_sym_public] = ACTIONS(3303), + [anon_sym_private] = ACTIONS(3303), + [anon_sym_protected] = ACTIONS(3303), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_module] = ACTIONS(3303), + [anon_sym_any] = ACTIONS(3303), + [anon_sym_number] = ACTIONS(3303), + [anon_sym_boolean] = ACTIONS(3303), + [anon_sym_string] = ACTIONS(3303), + [anon_sym_symbol] = ACTIONS(3303), + [anon_sym_object] = ACTIONS(3303), + [anon_sym_abstract] = ACTIONS(3303), + [anon_sym_interface] = ACTIONS(3303), + [anon_sym_enum] = ACTIONS(3303), [sym_html_comment] = ACTIONS(5), }, [1373] = { [sym_comment] = STATE(1373), - [sym_identifier] = ACTIONS(3455), - [anon_sym_export] = ACTIONS(3455), - [anon_sym_default] = ACTIONS(3455), - [anon_sym_type] = ACTIONS(3455), - [anon_sym_namespace] = ACTIONS(3455), - [anon_sym_LBRACE] = ACTIONS(3455), - [anon_sym_RBRACE] = ACTIONS(3455), - [anon_sym_typeof] = ACTIONS(3455), - [anon_sym_import] = ACTIONS(3455), - [anon_sym_with] = ACTIONS(3455), - [anon_sym_var] = ACTIONS(3455), - [anon_sym_let] = ACTIONS(3455), - [anon_sym_const] = ACTIONS(3455), - [anon_sym_BANG] = ACTIONS(3455), - [anon_sym_if] = ACTIONS(3455), - [anon_sym_switch] = ACTIONS(3455), - [anon_sym_for] = ACTIONS(3455), - [anon_sym_LPAREN] = ACTIONS(3455), - [anon_sym_await] = ACTIONS(3455), - [anon_sym_while] = ACTIONS(3455), - [anon_sym_do] = ACTIONS(3455), - [anon_sym_try] = ACTIONS(3455), - [anon_sym_break] = ACTIONS(3455), - [anon_sym_continue] = ACTIONS(3455), - [anon_sym_debugger] = ACTIONS(3455), - [anon_sym_return] = ACTIONS(3455), - [anon_sym_throw] = ACTIONS(3455), - [anon_sym_SEMI] = ACTIONS(3455), - [anon_sym_case] = ACTIONS(3455), - [anon_sym_yield] = ACTIONS(3455), - [anon_sym_LBRACK] = ACTIONS(3455), - [anon_sym_LTtemplate_GT] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3455), - [anon_sym_class] = ACTIONS(3455), - [anon_sym_async] = ACTIONS(3455), - [anon_sym_function] = ACTIONS(3455), - [anon_sym_new] = ACTIONS(3455), - [anon_sym_using] = ACTIONS(3455), - [anon_sym_PLUS] = ACTIONS(3455), - [anon_sym_DASH] = ACTIONS(3455), - [anon_sym_SLASH] = ACTIONS(3455), - [anon_sym_LT] = ACTIONS(3455), - [anon_sym_TILDE] = ACTIONS(3455), - [anon_sym_void] = ACTIONS(3455), - [anon_sym_delete] = ACTIONS(3455), - [anon_sym_PLUS_PLUS] = ACTIONS(3455), - [anon_sym_DASH_DASH] = ACTIONS(3455), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_case] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3455), - [sym_number] = ACTIONS(3455), - [sym_private_property_identifier] = ACTIONS(3455), - [sym_this] = ACTIONS(3455), - [sym_super] = ACTIONS(3455), - [sym_true] = ACTIONS(3455), - [sym_false] = ACTIONS(3455), - [sym_null] = ACTIONS(3455), - [sym_undefined] = ACTIONS(3455), - [anon_sym_AT] = ACTIONS(3455), - [anon_sym_static] = ACTIONS(3455), - [anon_sym_readonly] = ACTIONS(3455), - [anon_sym_get] = ACTIONS(3455), - [anon_sym_set] = ACTIONS(3455), - [anon_sym_declare] = ACTIONS(3455), - [anon_sym_public] = ACTIONS(3455), - [anon_sym_private] = ACTIONS(3455), - [anon_sym_protected] = ACTIONS(3455), - [anon_sym_override] = ACTIONS(3455), - [anon_sym_module] = ACTIONS(3455), - [anon_sym_any] = ACTIONS(3455), - [anon_sym_number] = ACTIONS(3455), - [anon_sym_boolean] = ACTIONS(3455), - [anon_sym_string] = ACTIONS(3455), - [anon_sym_symbol] = ACTIONS(3455), - [anon_sym_object] = ACTIONS(3455), - [anon_sym_abstract] = ACTIONS(3455), - [anon_sym_interface] = ACTIONS(3455), - [anon_sym_enum] = ACTIONS(3455), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, [1374] = { [sym_comment] = STATE(1374), - [sym_identifier] = ACTIONS(3227), - [anon_sym_export] = ACTIONS(3227), - [anon_sym_default] = ACTIONS(3227), - [anon_sym_type] = ACTIONS(3227), - [anon_sym_namespace] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_RBRACE] = ACTIONS(3227), - [anon_sym_typeof] = ACTIONS(3227), - [anon_sym_import] = ACTIONS(3227), - [anon_sym_with] = ACTIONS(3227), - [anon_sym_var] = ACTIONS(3227), - [anon_sym_let] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_switch] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_await] = ACTIONS(3227), - [anon_sym_while] = ACTIONS(3227), - [anon_sym_do] = ACTIONS(3227), - [anon_sym_try] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_debugger] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_throw] = ACTIONS(3227), - [anon_sym_SEMI] = ACTIONS(3227), - [anon_sym_case] = ACTIONS(3227), - [anon_sym_yield] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_LTtemplate_GT] = ACTIONS(3227), - [anon_sym_DQUOTE] = ACTIONS(3227), - [anon_sym_SQUOTE] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_async] = ACTIONS(3227), - [anon_sym_function] = ACTIONS(3227), - [anon_sym_new] = ACTIONS(3227), - [anon_sym_using] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_void] = ACTIONS(3227), - [anon_sym_delete] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), + [sym_identifier] = ACTIONS(3319), + [anon_sym_export] = ACTIONS(3319), + [anon_sym_default] = ACTIONS(3319), + [anon_sym_type] = ACTIONS(3319), + [anon_sym_namespace] = ACTIONS(3319), + [anon_sym_LBRACE] = ACTIONS(3319), + [anon_sym_RBRACE] = ACTIONS(3319), + [anon_sym_typeof] = ACTIONS(3319), + [anon_sym_import] = ACTIONS(3319), + [anon_sym_with] = ACTIONS(3319), + [anon_sym_var] = ACTIONS(3319), + [anon_sym_let] = ACTIONS(3319), + [anon_sym_const] = ACTIONS(3319), + [anon_sym_BANG] = ACTIONS(3319), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_switch] = ACTIONS(3319), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3319), + [anon_sym_await] = ACTIONS(3319), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_do] = ACTIONS(3319), + [anon_sym_try] = ACTIONS(3319), + [anon_sym_break] = ACTIONS(3319), + [anon_sym_continue] = ACTIONS(3319), + [anon_sym_debugger] = ACTIONS(3319), + [anon_sym_return] = ACTIONS(3319), + [anon_sym_throw] = ACTIONS(3319), + [anon_sym_SEMI] = ACTIONS(3319), + [anon_sym_case] = ACTIONS(3319), + [anon_sym_yield] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3319), + [anon_sym_LTtemplate_GT] = ACTIONS(3319), + [anon_sym_DQUOTE] = ACTIONS(3319), + [anon_sym_SQUOTE] = ACTIONS(3319), + [anon_sym_class] = ACTIONS(3319), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_function] = ACTIONS(3319), + [anon_sym_new] = ACTIONS(3319), + [anon_sym_using] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_TILDE] = ACTIONS(3319), + [anon_sym_void] = ACTIONS(3319), + [anon_sym_delete] = ACTIONS(3319), + [anon_sym_PLUS_PLUS] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3319), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3227), - [sym_number] = ACTIONS(3227), - [sym_private_property_identifier] = ACTIONS(3227), - [sym_this] = ACTIONS(3227), - [sym_super] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_null] = ACTIONS(3227), - [sym_undefined] = ACTIONS(3227), - [anon_sym_AT] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_readonly] = ACTIONS(3227), - [anon_sym_get] = ACTIONS(3227), - [anon_sym_set] = ACTIONS(3227), + [anon_sym_BQUOTE] = ACTIONS(3319), + [sym_number] = ACTIONS(3319), + [sym_private_property_identifier] = ACTIONS(3319), + [sym_this] = ACTIONS(3319), + [sym_super] = ACTIONS(3319), + [sym_true] = ACTIONS(3319), + [sym_false] = ACTIONS(3319), + [sym_null] = ACTIONS(3319), + [sym_undefined] = ACTIONS(3319), + [anon_sym_AT] = ACTIONS(3319), + [anon_sym_static] = ACTIONS(3319), + [anon_sym_readonly] = ACTIONS(3319), + [anon_sym_get] = ACTIONS(3319), + [anon_sym_set] = ACTIONS(3319), + [anon_sym_declare] = ACTIONS(3319), + [anon_sym_public] = ACTIONS(3319), + [anon_sym_private] = ACTIONS(3319), + [anon_sym_protected] = ACTIONS(3319), + [anon_sym_override] = ACTIONS(3319), + [anon_sym_module] = ACTIONS(3319), + [anon_sym_any] = ACTIONS(3319), + [anon_sym_number] = ACTIONS(3319), + [anon_sym_boolean] = ACTIONS(3319), + [anon_sym_string] = ACTIONS(3319), + [anon_sym_symbol] = ACTIONS(3319), + [anon_sym_object] = ACTIONS(3319), + [anon_sym_abstract] = ACTIONS(3319), + [anon_sym_interface] = ACTIONS(3319), + [anon_sym_enum] = ACTIONS(3319), + [sym_html_comment] = ACTIONS(5), + }, + [1375] = { + [sym_comment] = STATE(1375), + [ts_builtin_sym_end] = ACTIONS(3581), + [sym_identifier] = ACTIONS(3267), + [anon_sym_export] = ACTIONS(3267), + [anon_sym_type] = ACTIONS(3267), + [anon_sym_namespace] = ACTIONS(3267), + [anon_sym_LBRACE] = ACTIONS(3267), + [anon_sym_RBRACE] = ACTIONS(3267), + [anon_sym_typeof] = ACTIONS(3267), + [anon_sym_import] = ACTIONS(3267), + [anon_sym_with] = ACTIONS(3267), + [anon_sym_var] = ACTIONS(3267), + [anon_sym_let] = ACTIONS(3267), + [anon_sym_const] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3267), + [anon_sym_else] = ACTIONS(3267), + [anon_sym_if] = ACTIONS(3267), + [anon_sym_switch] = ACTIONS(3267), + [anon_sym_for] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_await] = ACTIONS(3267), + [anon_sym_while] = ACTIONS(3267), + [anon_sym_do] = ACTIONS(3267), + [anon_sym_try] = ACTIONS(3267), + [anon_sym_break] = ACTIONS(3267), + [anon_sym_continue] = ACTIONS(3267), + [anon_sym_debugger] = ACTIONS(3267), + [anon_sym_return] = ACTIONS(3267), + [anon_sym_throw] = ACTIONS(3267), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_yield] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_LTtemplate_GT] = ACTIONS(3267), + [anon_sym_DQUOTE] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [anon_sym_class] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3267), + [anon_sym_function] = ACTIONS(3267), + [anon_sym_new] = ACTIONS(3267), + [anon_sym_using] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3267), + [anon_sym_DASH] = ACTIONS(3267), + [anon_sym_SLASH] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3267), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_void] = ACTIONS(3267), + [anon_sym_delete] = ACTIONS(3267), + [anon_sym_PLUS_PLUS] = ACTIONS(3267), + [anon_sym_DASH_DASH] = ACTIONS(3267), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3267), + [sym_number] = ACTIONS(3267), + [sym_private_property_identifier] = ACTIONS(3267), + [sym_this] = ACTIONS(3267), + [sym_super] = ACTIONS(3267), + [sym_true] = ACTIONS(3267), + [sym_false] = ACTIONS(3267), + [sym_null] = ACTIONS(3267), + [sym_undefined] = ACTIONS(3267), + [anon_sym_AT] = ACTIONS(3267), + [anon_sym_static] = ACTIONS(3267), + [anon_sym_readonly] = ACTIONS(3267), + [anon_sym_get] = ACTIONS(3267), + [anon_sym_set] = ACTIONS(3267), + [anon_sym_declare] = ACTIONS(3267), + [anon_sym_public] = ACTIONS(3267), + [anon_sym_private] = ACTIONS(3267), + [anon_sym_protected] = ACTIONS(3267), + [anon_sym_override] = ACTIONS(3267), + [anon_sym_module] = ACTIONS(3267), + [anon_sym_any] = ACTIONS(3267), + [anon_sym_number] = ACTIONS(3267), + [anon_sym_boolean] = ACTIONS(3267), + [anon_sym_string] = ACTIONS(3267), + [anon_sym_symbol] = ACTIONS(3267), + [anon_sym_object] = ACTIONS(3267), + [anon_sym_abstract] = ACTIONS(3267), + [anon_sym_interface] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3267), + [sym_html_comment] = ACTIONS(5), + }, + [1376] = { + [sym_comment] = STATE(1376), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_finally] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym_html_comment] = ACTIONS(5), + }, + [1377] = { + [sym_comment] = STATE(1377), + [sym_identifier] = ACTIONS(3227), + [anon_sym_export] = ACTIONS(3227), + [anon_sym_default] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_with] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_debugger] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_case] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LTtemplate_GT] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_function] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_number] = ACTIONS(3227), + [sym_private_property_identifier] = ACTIONS(3227), + [sym_this] = ACTIONS(3227), + [sym_super] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_null] = ACTIONS(3227), + [sym_undefined] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_get] = ACTIONS(3227), + [anon_sym_set] = ACTIONS(3227), [anon_sym_declare] = ACTIONS(3227), [anon_sym_public] = ACTIONS(3227), [anon_sym_private] = ACTIONS(3227), @@ -175318,339 +175245,421 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3227), [sym_html_comment] = ACTIONS(5), }, - [1375] = { - [sym_comment] = STATE(1375), - [sym_identifier] = ACTIONS(3423), - [anon_sym_export] = ACTIONS(3423), - [anon_sym_default] = ACTIONS(3423), - [anon_sym_type] = ACTIONS(3423), - [anon_sym_namespace] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_RBRACE] = ACTIONS(3423), - [anon_sym_typeof] = ACTIONS(3423), - [anon_sym_import] = ACTIONS(3423), - [anon_sym_with] = ACTIONS(3423), - [anon_sym_var] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_BANG] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_switch] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_await] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_break] = ACTIONS(3423), - [anon_sym_continue] = ACTIONS(3423), - [anon_sym_debugger] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_throw] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3423), - [anon_sym_case] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LTtemplate_GT] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_SQUOTE] = ACTIONS(3423), - [anon_sym_class] = ACTIONS(3423), - [anon_sym_async] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_using] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3423), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_TILDE] = ACTIONS(3423), - [anon_sym_void] = ACTIONS(3423), - [anon_sym_delete] = ACTIONS(3423), - [anon_sym_PLUS_PLUS] = ACTIONS(3423), - [anon_sym_DASH_DASH] = ACTIONS(3423), + [1378] = { + [sym_comment] = STATE(1378), + [sym_identifier] = ACTIONS(3221), + [anon_sym_export] = ACTIONS(3221), + [anon_sym_default] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_namespace] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_RBRACE] = ACTIONS(3221), + [anon_sym_typeof] = ACTIONS(3221), + [anon_sym_import] = ACTIONS(3221), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_var] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_const] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_switch] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_await] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_break] = ACTIONS(3221), + [anon_sym_continue] = ACTIONS(3221), + [anon_sym_debugger] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_throw] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3221), + [anon_sym_case] = ACTIONS(3221), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LTtemplate_GT] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_SQUOTE] = ACTIONS(3221), + [anon_sym_class] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_using] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_SLASH] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_void] = ACTIONS(3221), + [anon_sym_delete] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_DASH_DASH] = ACTIONS(3221), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3423), - [sym_number] = ACTIONS(3423), - [sym_private_property_identifier] = ACTIONS(3423), - [sym_this] = ACTIONS(3423), - [sym_super] = ACTIONS(3423), - [sym_true] = ACTIONS(3423), - [sym_false] = ACTIONS(3423), - [sym_null] = ACTIONS(3423), - [sym_undefined] = ACTIONS(3423), - [anon_sym_AT] = ACTIONS(3423), - [anon_sym_static] = ACTIONS(3423), - [anon_sym_readonly] = ACTIONS(3423), - [anon_sym_get] = ACTIONS(3423), - [anon_sym_set] = ACTIONS(3423), - [anon_sym_declare] = ACTIONS(3423), - [anon_sym_public] = ACTIONS(3423), - [anon_sym_private] = ACTIONS(3423), - [anon_sym_protected] = ACTIONS(3423), - [anon_sym_override] = ACTIONS(3423), - [anon_sym_module] = ACTIONS(3423), - [anon_sym_any] = ACTIONS(3423), - [anon_sym_number] = ACTIONS(3423), - [anon_sym_boolean] = ACTIONS(3423), - [anon_sym_string] = ACTIONS(3423), - [anon_sym_symbol] = ACTIONS(3423), - [anon_sym_object] = ACTIONS(3423), - [anon_sym_abstract] = ACTIONS(3423), - [anon_sym_interface] = ACTIONS(3423), - [anon_sym_enum] = ACTIONS(3423), + [anon_sym_BQUOTE] = ACTIONS(3221), + [sym_number] = ACTIONS(3221), + [sym_private_property_identifier] = ACTIONS(3221), + [sym_this] = ACTIONS(3221), + [sym_super] = ACTIONS(3221), + [sym_true] = ACTIONS(3221), + [sym_false] = ACTIONS(3221), + [sym_null] = ACTIONS(3221), + [sym_undefined] = ACTIONS(3221), + [anon_sym_AT] = ACTIONS(3221), + [anon_sym_static] = ACTIONS(3221), + [anon_sym_readonly] = ACTIONS(3221), + [anon_sym_get] = ACTIONS(3221), + [anon_sym_set] = ACTIONS(3221), + [anon_sym_declare] = ACTIONS(3221), + [anon_sym_public] = ACTIONS(3221), + [anon_sym_private] = ACTIONS(3221), + [anon_sym_protected] = ACTIONS(3221), + [anon_sym_override] = ACTIONS(3221), + [anon_sym_module] = ACTIONS(3221), + [anon_sym_any] = ACTIONS(3221), + [anon_sym_number] = ACTIONS(3221), + [anon_sym_boolean] = ACTIONS(3221), + [anon_sym_string] = ACTIONS(3221), + [anon_sym_symbol] = ACTIONS(3221), + [anon_sym_object] = ACTIONS(3221), + [anon_sym_abstract] = ACTIONS(3221), + [anon_sym_interface] = ACTIONS(3221), + [anon_sym_enum] = ACTIONS(3221), [sym_html_comment] = ACTIONS(5), }, - [1376] = { - [sym_comment] = STATE(1376), - [sym_identifier] = ACTIONS(3425), - [anon_sym_export] = ACTIONS(3425), - [anon_sym_default] = ACTIONS(3425), - [anon_sym_type] = ACTIONS(3425), - [anon_sym_namespace] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_RBRACE] = ACTIONS(3425), - [anon_sym_typeof] = ACTIONS(3425), - [anon_sym_import] = ACTIONS(3425), - [anon_sym_with] = ACTIONS(3425), - [anon_sym_var] = ACTIONS(3425), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_const] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_if] = ACTIONS(3425), - [anon_sym_switch] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_await] = ACTIONS(3425), - [anon_sym_while] = ACTIONS(3425), - [anon_sym_do] = ACTIONS(3425), - [anon_sym_try] = ACTIONS(3425), - [anon_sym_break] = ACTIONS(3425), - [anon_sym_continue] = ACTIONS(3425), - [anon_sym_debugger] = ACTIONS(3425), - [anon_sym_return] = ACTIONS(3425), - [anon_sym_throw] = ACTIONS(3425), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_case] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_LTtemplate_GT] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(3425), - [anon_sym_SQUOTE] = ACTIONS(3425), - [anon_sym_class] = ACTIONS(3425), - [anon_sym_async] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3425), - [anon_sym_using] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_SLASH] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_void] = ACTIONS(3425), - [anon_sym_delete] = ACTIONS(3425), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_DASH_DASH] = ACTIONS(3425), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3425), - [sym_number] = ACTIONS(3425), - [sym_private_property_identifier] = ACTIONS(3425), - [sym_this] = ACTIONS(3425), - [sym_super] = ACTIONS(3425), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [sym_null] = ACTIONS(3425), - [sym_undefined] = ACTIONS(3425), - [anon_sym_AT] = ACTIONS(3425), - [anon_sym_static] = ACTIONS(3425), - [anon_sym_readonly] = ACTIONS(3425), - [anon_sym_get] = ACTIONS(3425), - [anon_sym_set] = ACTIONS(3425), - [anon_sym_declare] = ACTIONS(3425), - [anon_sym_public] = ACTIONS(3425), - [anon_sym_private] = ACTIONS(3425), - [anon_sym_protected] = ACTIONS(3425), - [anon_sym_override] = ACTIONS(3425), - [anon_sym_module] = ACTIONS(3425), - [anon_sym_any] = ACTIONS(3425), - [anon_sym_number] = ACTIONS(3425), - [anon_sym_boolean] = ACTIONS(3425), - [anon_sym_string] = ACTIONS(3425), - [anon_sym_symbol] = ACTIONS(3425), - [anon_sym_object] = ACTIONS(3425), - [anon_sym_abstract] = ACTIONS(3425), - [anon_sym_interface] = ACTIONS(3425), - [anon_sym_enum] = ACTIONS(3425), + [1379] = { + [sym_comment] = STATE(1379), + [ts_builtin_sym_end] = ACTIONS(3583), + [sym_identifier] = ACTIONS(3301), + [anon_sym_export] = ACTIONS(3301), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_namespace] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_typeof] = ACTIONS(3301), + [anon_sym_import] = ACTIONS(3301), + [anon_sym_with] = ACTIONS(3301), + [anon_sym_var] = ACTIONS(3301), + [anon_sym_let] = ACTIONS(3301), + [anon_sym_const] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_else] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_switch] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_await] = ACTIONS(3301), + [anon_sym_while] = ACTIONS(3301), + [anon_sym_do] = ACTIONS(3301), + [anon_sym_try] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_debugger] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_throw] = ACTIONS(3301), + [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_yield] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_LTtemplate_GT] = ACTIONS(3301), + [anon_sym_DQUOTE] = ACTIONS(3301), + [anon_sym_SQUOTE] = ACTIONS(3301), + [anon_sym_class] = ACTIONS(3301), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_function] = ACTIONS(3301), + [anon_sym_new] = ACTIONS(3301), + [anon_sym_using] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_void] = ACTIONS(3301), + [anon_sym_delete] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3301), + [sym_number] = ACTIONS(3301), + [sym_private_property_identifier] = ACTIONS(3301), + [sym_this] = ACTIONS(3301), + [sym_super] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_null] = ACTIONS(3301), + [sym_undefined] = ACTIONS(3301), + [anon_sym_AT] = ACTIONS(3301), + [anon_sym_static] = ACTIONS(3301), + [anon_sym_readonly] = ACTIONS(3301), + [anon_sym_get] = ACTIONS(3301), + [anon_sym_set] = ACTIONS(3301), + [anon_sym_declare] = ACTIONS(3301), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3301), + [anon_sym_module] = ACTIONS(3301), + [anon_sym_any] = ACTIONS(3301), + [anon_sym_number] = ACTIONS(3301), + [anon_sym_boolean] = ACTIONS(3301), + [anon_sym_string] = ACTIONS(3301), + [anon_sym_symbol] = ACTIONS(3301), + [anon_sym_object] = ACTIONS(3301), + [anon_sym_abstract] = ACTIONS(3301), + [anon_sym_interface] = ACTIONS(3301), + [anon_sym_enum] = ACTIONS(3301), [sym_html_comment] = ACTIONS(5), }, - [1377] = { - [sym_comment] = STATE(1377), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(3563), + [1380] = { + [sym_comment] = STATE(1380), + [ts_builtin_sym_end] = ACTIONS(3585), + [sym_identifier] = ACTIONS(3297), + [anon_sym_export] = ACTIONS(3297), + [anon_sym_type] = ACTIONS(3297), + [anon_sym_namespace] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(3297), + [anon_sym_typeof] = ACTIONS(3297), + [anon_sym_import] = ACTIONS(3297), + [anon_sym_with] = ACTIONS(3297), + [anon_sym_var] = ACTIONS(3297), + [anon_sym_let] = ACTIONS(3297), + [anon_sym_const] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_else] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_switch] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_await] = ACTIONS(3297), + [anon_sym_while] = ACTIONS(3297), + [anon_sym_do] = ACTIONS(3297), + [anon_sym_try] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_debugger] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_throw] = ACTIONS(3297), + [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_LTtemplate_GT] = ACTIONS(3297), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_SQUOTE] = ACTIONS(3297), + [anon_sym_class] = ACTIONS(3297), + [anon_sym_async] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3297), + [anon_sym_using] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_SLASH] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_void] = ACTIONS(3297), + [anon_sym_delete] = ACTIONS(3297), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3297), + [sym_number] = ACTIONS(3297), + [sym_private_property_identifier] = ACTIONS(3297), + [sym_this] = ACTIONS(3297), + [sym_super] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_null] = ACTIONS(3297), + [sym_undefined] = ACTIONS(3297), + [anon_sym_AT] = ACTIONS(3297), + [anon_sym_static] = ACTIONS(3297), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_get] = ACTIONS(3297), + [anon_sym_set] = ACTIONS(3297), + [anon_sym_declare] = ACTIONS(3297), + [anon_sym_public] = ACTIONS(3297), + [anon_sym_private] = ACTIONS(3297), + [anon_sym_protected] = ACTIONS(3297), + [anon_sym_override] = ACTIONS(3297), + [anon_sym_module] = ACTIONS(3297), + [anon_sym_any] = ACTIONS(3297), + [anon_sym_number] = ACTIONS(3297), + [anon_sym_boolean] = ACTIONS(3297), + [anon_sym_string] = ACTIONS(3297), + [anon_sym_symbol] = ACTIONS(3297), + [anon_sym_object] = ACTIONS(3297), + [anon_sym_abstract] = ACTIONS(3297), + [anon_sym_interface] = ACTIONS(3297), + [anon_sym_enum] = ACTIONS(3297), [sym_html_comment] = ACTIONS(5), }, - [1378] = { - [sym_comment] = STATE(1378), - [ts_builtin_sym_end] = ACTIONS(3565), - [sym_identifier] = ACTIONS(3411), - [anon_sym_export] = ACTIONS(3411), - [anon_sym_type] = ACTIONS(3411), - [anon_sym_namespace] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3411), - [anon_sym_RBRACE] = ACTIONS(3411), - [anon_sym_typeof] = ACTIONS(3411), - [anon_sym_import] = ACTIONS(3411), - [anon_sym_with] = ACTIONS(3411), - [anon_sym_var] = ACTIONS(3411), - [anon_sym_let] = ACTIONS(3411), - [anon_sym_const] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3411), - [anon_sym_else] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_await] = ACTIONS(3411), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_try] = ACTIONS(3411), - [anon_sym_break] = ACTIONS(3411), - [anon_sym_continue] = ACTIONS(3411), - [anon_sym_debugger] = ACTIONS(3411), - [anon_sym_return] = ACTIONS(3411), - [anon_sym_throw] = ACTIONS(3411), - [anon_sym_SEMI] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3411), - [anon_sym_LTtemplate_GT] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3411), - [anon_sym_class] = ACTIONS(3411), - [anon_sym_async] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3411), - [anon_sym_using] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_SLASH] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3411), - [anon_sym_void] = ACTIONS(3411), - [anon_sym_delete] = ACTIONS(3411), - [anon_sym_PLUS_PLUS] = ACTIONS(3411), - [anon_sym_DASH_DASH] = ACTIONS(3411), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3411), - [sym_number] = ACTIONS(3411), - [sym_private_property_identifier] = ACTIONS(3411), - [sym_this] = ACTIONS(3411), - [sym_super] = ACTIONS(3411), - [sym_true] = ACTIONS(3411), - [sym_false] = ACTIONS(3411), - [sym_null] = ACTIONS(3411), - [sym_undefined] = ACTIONS(3411), - [anon_sym_AT] = ACTIONS(3411), - [anon_sym_static] = ACTIONS(3411), - [anon_sym_readonly] = ACTIONS(3411), - [anon_sym_get] = ACTIONS(3411), - [anon_sym_set] = ACTIONS(3411), - [anon_sym_declare] = ACTIONS(3411), - [anon_sym_public] = ACTIONS(3411), - [anon_sym_private] = ACTIONS(3411), - [anon_sym_protected] = ACTIONS(3411), - [anon_sym_override] = ACTIONS(3411), - [anon_sym_module] = ACTIONS(3411), - [anon_sym_any] = ACTIONS(3411), - [anon_sym_number] = ACTIONS(3411), - [anon_sym_boolean] = ACTIONS(3411), - [anon_sym_string] = ACTIONS(3411), - [anon_sym_symbol] = ACTIONS(3411), - [anon_sym_object] = ACTIONS(3411), - [anon_sym_abstract] = ACTIONS(3411), - [anon_sym_interface] = ACTIONS(3411), - [anon_sym_enum] = ACTIONS(3411), + [1381] = { + [sym_statement_block] = STATE(1600), + [sym_comment] = STATE(1381), + [ts_builtin_sym_end] = ACTIONS(2130), + [sym_identifier] = ACTIONS(2126), + [anon_sym_export] = ACTIONS(2126), + [anon_sym_type] = ACTIONS(2126), + [anon_sym_namespace] = ACTIONS(2126), + [anon_sym_LBRACE] = ACTIONS(3261), + [anon_sym_RBRACE] = ACTIONS(2126), + [anon_sym_typeof] = ACTIONS(2126), + [anon_sym_import] = ACTIONS(2126), + [anon_sym_with] = ACTIONS(2126), + [anon_sym_var] = ACTIONS(2126), + [anon_sym_let] = ACTIONS(2126), + [anon_sym_const] = ACTIONS(2126), + [anon_sym_BANG] = ACTIONS(2126), + [anon_sym_if] = ACTIONS(2126), + [anon_sym_switch] = ACTIONS(2126), + [anon_sym_for] = ACTIONS(2126), + [anon_sym_LPAREN] = ACTIONS(2126), + [anon_sym_await] = ACTIONS(2126), + [anon_sym_while] = ACTIONS(2126), + [anon_sym_do] = ACTIONS(2126), + [anon_sym_try] = ACTIONS(2126), + [anon_sym_break] = ACTIONS(2126), + [anon_sym_continue] = ACTIONS(2126), + [anon_sym_debugger] = ACTIONS(2126), + [anon_sym_return] = ACTIONS(2126), + [anon_sym_throw] = ACTIONS(2126), + [anon_sym_SEMI] = ACTIONS(2126), + [anon_sym_yield] = ACTIONS(2126), + [anon_sym_LBRACK] = ACTIONS(2126), + [anon_sym_LTtemplate_GT] = ACTIONS(2126), + [anon_sym_DQUOTE] = ACTIONS(2126), + [anon_sym_SQUOTE] = ACTIONS(2126), + [anon_sym_class] = ACTIONS(2126), + [anon_sym_async] = ACTIONS(2126), + [anon_sym_function] = ACTIONS(2126), + [anon_sym_new] = ACTIONS(2126), + [anon_sym_using] = ACTIONS(2126), + [anon_sym_PLUS] = ACTIONS(2126), + [anon_sym_DASH] = ACTIONS(2126), + [anon_sym_SLASH] = ACTIONS(2126), + [anon_sym_LT] = ACTIONS(2126), + [anon_sym_TILDE] = ACTIONS(2126), + [anon_sym_void] = ACTIONS(2126), + [anon_sym_delete] = ACTIONS(2126), + [anon_sym_PLUS_PLUS] = ACTIONS(2126), + [anon_sym_DASH_DASH] = ACTIONS(2126), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2126), + [sym_number] = ACTIONS(2126), + [sym_private_property_identifier] = ACTIONS(2126), + [sym_this] = ACTIONS(2126), + [sym_super] = ACTIONS(2126), + [sym_true] = ACTIONS(2126), + [sym_false] = ACTIONS(2126), + [sym_null] = ACTIONS(2126), + [sym_undefined] = ACTIONS(2126), + [anon_sym_AT] = ACTIONS(2126), + [anon_sym_static] = ACTIONS(2126), + [anon_sym_readonly] = ACTIONS(2126), + [anon_sym_get] = ACTIONS(2126), + [anon_sym_set] = ACTIONS(2126), + [anon_sym_declare] = ACTIONS(2126), + [anon_sym_public] = ACTIONS(2126), + [anon_sym_private] = ACTIONS(2126), + [anon_sym_protected] = ACTIONS(2126), + [anon_sym_override] = ACTIONS(2126), + [anon_sym_module] = ACTIONS(2126), + [anon_sym_any] = ACTIONS(2126), + [anon_sym_number] = ACTIONS(2126), + [anon_sym_boolean] = ACTIONS(2126), + [anon_sym_string] = ACTIONS(2126), + [anon_sym_symbol] = ACTIONS(2126), + [anon_sym_object] = ACTIONS(2126), + [anon_sym_abstract] = ACTIONS(2126), + [anon_sym_interface] = ACTIONS(2126), + [anon_sym_enum] = ACTIONS(2126), [sym_html_comment] = ACTIONS(5), }, - [1379] = { - [sym_comment] = STATE(1379), + [1382] = { + [sym_comment] = STATE(1382), + [ts_builtin_sym_end] = ACTIONS(3587), + [sym_identifier] = ACTIONS(3415), + [anon_sym_export] = ACTIONS(3415), + [anon_sym_type] = ACTIONS(3415), + [anon_sym_namespace] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3415), + [anon_sym_RBRACE] = ACTIONS(3415), + [anon_sym_typeof] = ACTIONS(3415), + [anon_sym_import] = ACTIONS(3415), + [anon_sym_with] = ACTIONS(3415), + [anon_sym_var] = ACTIONS(3415), + [anon_sym_let] = ACTIONS(3415), + [anon_sym_const] = ACTIONS(3415), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_else] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3415), + [anon_sym_switch] = ACTIONS(3415), + [anon_sym_for] = ACTIONS(3415), + [anon_sym_LPAREN] = ACTIONS(3415), + [anon_sym_await] = ACTIONS(3415), + [anon_sym_while] = ACTIONS(3415), + [anon_sym_do] = ACTIONS(3415), + [anon_sym_try] = ACTIONS(3415), + [anon_sym_break] = ACTIONS(3415), + [anon_sym_continue] = ACTIONS(3415), + [anon_sym_debugger] = ACTIONS(3415), + [anon_sym_return] = ACTIONS(3415), + [anon_sym_throw] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_yield] = ACTIONS(3415), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_LTtemplate_GT] = ACTIONS(3415), + [anon_sym_DQUOTE] = ACTIONS(3415), + [anon_sym_SQUOTE] = ACTIONS(3415), + [anon_sym_class] = ACTIONS(3415), + [anon_sym_async] = ACTIONS(3415), + [anon_sym_function] = ACTIONS(3415), + [anon_sym_new] = ACTIONS(3415), + [anon_sym_using] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(3415), + [anon_sym_DASH] = ACTIONS(3415), + [anon_sym_SLASH] = ACTIONS(3415), + [anon_sym_LT] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(3415), + [anon_sym_void] = ACTIONS(3415), + [anon_sym_delete] = ACTIONS(3415), + [anon_sym_PLUS_PLUS] = ACTIONS(3415), + [anon_sym_DASH_DASH] = ACTIONS(3415), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3415), + [sym_number] = ACTIONS(3415), + [sym_private_property_identifier] = ACTIONS(3415), + [sym_this] = ACTIONS(3415), + [sym_super] = ACTIONS(3415), + [sym_true] = ACTIONS(3415), + [sym_false] = ACTIONS(3415), + [sym_null] = ACTIONS(3415), + [sym_undefined] = ACTIONS(3415), + [anon_sym_AT] = ACTIONS(3415), + [anon_sym_static] = ACTIONS(3415), + [anon_sym_readonly] = ACTIONS(3415), + [anon_sym_get] = ACTIONS(3415), + [anon_sym_set] = ACTIONS(3415), + [anon_sym_declare] = ACTIONS(3415), + [anon_sym_public] = ACTIONS(3415), + [anon_sym_private] = ACTIONS(3415), + [anon_sym_protected] = ACTIONS(3415), + [anon_sym_override] = ACTIONS(3415), + [anon_sym_module] = ACTIONS(3415), + [anon_sym_any] = ACTIONS(3415), + [anon_sym_number] = ACTIONS(3415), + [anon_sym_boolean] = ACTIONS(3415), + [anon_sym_string] = ACTIONS(3415), + [anon_sym_symbol] = ACTIONS(3415), + [anon_sym_object] = ACTIONS(3415), + [anon_sym_abstract] = ACTIONS(3415), + [anon_sym_interface] = ACTIONS(3415), + [anon_sym_enum] = ACTIONS(3415), + [sym_html_comment] = ACTIONS(5), + }, + [1383] = { + [sym_comment] = STATE(1383), + [ts_builtin_sym_end] = ACTIONS(3589), [sym_identifier] = ACTIONS(3427), [anon_sym_export] = ACTIONS(3427), - [anon_sym_default] = ACTIONS(3427), [anon_sym_type] = ACTIONS(3427), [anon_sym_namespace] = ACTIONS(3427), [anon_sym_LBRACE] = ACTIONS(3427), @@ -175662,6 +175671,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3427), [anon_sym_const] = ACTIONS(3427), [anon_sym_BANG] = ACTIONS(3427), + [anon_sym_else] = ACTIONS(3427), [anon_sym_if] = ACTIONS(3427), [anon_sym_switch] = ACTIONS(3427), [anon_sym_for] = ACTIONS(3427), @@ -175676,7 +175686,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3427), [anon_sym_throw] = ACTIONS(3427), [anon_sym_SEMI] = ACTIONS(3427), - [anon_sym_case] = ACTIONS(3427), [anon_sym_yield] = ACTIONS(3427), [anon_sym_LBRACK] = ACTIONS(3427), [anon_sym_LTtemplate_GT] = ACTIONS(3427), @@ -175728,596 +175737,514 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3427), [sym_html_comment] = ACTIONS(5), }, - [1380] = { - [sym_comment] = STATE(1380), - [sym_identifier] = ACTIONS(3429), - [anon_sym_export] = ACTIONS(3429), - [anon_sym_default] = ACTIONS(3429), - [anon_sym_type] = ACTIONS(3429), - [anon_sym_namespace] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_typeof] = ACTIONS(3429), - [anon_sym_import] = ACTIONS(3429), - [anon_sym_with] = ACTIONS(3429), - [anon_sym_var] = ACTIONS(3429), - [anon_sym_let] = ACTIONS(3429), - [anon_sym_const] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(3429), - [anon_sym_switch] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_await] = ACTIONS(3429), - [anon_sym_while] = ACTIONS(3429), - [anon_sym_do] = ACTIONS(3429), - [anon_sym_try] = ACTIONS(3429), - [anon_sym_break] = ACTIONS(3429), - [anon_sym_continue] = ACTIONS(3429), - [anon_sym_debugger] = ACTIONS(3429), - [anon_sym_return] = ACTIONS(3429), - [anon_sym_throw] = ACTIONS(3429), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym_case] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LTtemplate_GT] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [anon_sym_SQUOTE] = ACTIONS(3429), - [anon_sym_class] = ACTIONS(3429), - [anon_sym_async] = ACTIONS(3429), - [anon_sym_function] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3429), - [anon_sym_using] = ACTIONS(3429), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_SLASH] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_void] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3429), - [sym_number] = ACTIONS(3429), - [sym_private_property_identifier] = ACTIONS(3429), - [sym_this] = ACTIONS(3429), - [sym_super] = ACTIONS(3429), - [sym_true] = ACTIONS(3429), - [sym_false] = ACTIONS(3429), - [sym_null] = ACTIONS(3429), - [sym_undefined] = ACTIONS(3429), - [anon_sym_AT] = ACTIONS(3429), - [anon_sym_static] = ACTIONS(3429), - [anon_sym_readonly] = ACTIONS(3429), - [anon_sym_get] = ACTIONS(3429), - [anon_sym_set] = ACTIONS(3429), - [anon_sym_declare] = ACTIONS(3429), - [anon_sym_public] = ACTIONS(3429), - [anon_sym_private] = ACTIONS(3429), - [anon_sym_protected] = ACTIONS(3429), - [anon_sym_override] = ACTIONS(3429), - [anon_sym_module] = ACTIONS(3429), - [anon_sym_any] = ACTIONS(3429), - [anon_sym_number] = ACTIONS(3429), - [anon_sym_boolean] = ACTIONS(3429), - [anon_sym_string] = ACTIONS(3429), - [anon_sym_symbol] = ACTIONS(3429), - [anon_sym_object] = ACTIONS(3429), - [anon_sym_abstract] = ACTIONS(3429), - [anon_sym_interface] = ACTIONS(3429), - [anon_sym_enum] = ACTIONS(3429), - [sym_html_comment] = ACTIONS(5), - }, - [1381] = { - [sym_comment] = STATE(1381), - [sym_identifier] = ACTIONS(3449), - [anon_sym_export] = ACTIONS(3449), - [anon_sym_default] = ACTIONS(3449), - [anon_sym_type] = ACTIONS(3449), - [anon_sym_namespace] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym_typeof] = ACTIONS(3449), - [anon_sym_import] = ACTIONS(3449), - [anon_sym_with] = ACTIONS(3449), - [anon_sym_var] = ACTIONS(3449), - [anon_sym_let] = ACTIONS(3449), - [anon_sym_const] = ACTIONS(3449), - [anon_sym_BANG] = ACTIONS(3449), - [anon_sym_if] = ACTIONS(3449), - [anon_sym_switch] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_await] = ACTIONS(3449), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(3449), - [anon_sym_try] = ACTIONS(3449), - [anon_sym_break] = ACTIONS(3449), - [anon_sym_continue] = ACTIONS(3449), - [anon_sym_debugger] = ACTIONS(3449), - [anon_sym_return] = ACTIONS(3449), - [anon_sym_throw] = ACTIONS(3449), - [anon_sym_SEMI] = ACTIONS(3449), - [anon_sym_case] = ACTIONS(3449), - [anon_sym_yield] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LTtemplate_GT] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [anon_sym_SQUOTE] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_async] = ACTIONS(3449), - [anon_sym_function] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_using] = ACTIONS(3449), - [anon_sym_PLUS] = ACTIONS(3449), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_SLASH] = ACTIONS(3449), - [anon_sym_LT] = ACTIONS(3449), - [anon_sym_TILDE] = ACTIONS(3449), - [anon_sym_void] = ACTIONS(3449), - [anon_sym_delete] = ACTIONS(3449), - [anon_sym_PLUS_PLUS] = ACTIONS(3449), - [anon_sym_DASH_DASH] = ACTIONS(3449), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3449), - [sym_number] = ACTIONS(3449), - [sym_private_property_identifier] = ACTIONS(3449), - [sym_this] = ACTIONS(3449), - [sym_super] = ACTIONS(3449), - [sym_true] = ACTIONS(3449), - [sym_false] = ACTIONS(3449), - [sym_null] = ACTIONS(3449), - [sym_undefined] = ACTIONS(3449), - [anon_sym_AT] = ACTIONS(3449), - [anon_sym_static] = ACTIONS(3449), - [anon_sym_readonly] = ACTIONS(3449), - [anon_sym_get] = ACTIONS(3449), - [anon_sym_set] = ACTIONS(3449), - [anon_sym_declare] = ACTIONS(3449), - [anon_sym_public] = ACTIONS(3449), - [anon_sym_private] = ACTIONS(3449), - [anon_sym_protected] = ACTIONS(3449), - [anon_sym_override] = ACTIONS(3449), - [anon_sym_module] = ACTIONS(3449), - [anon_sym_any] = ACTIONS(3449), - [anon_sym_number] = ACTIONS(3449), - [anon_sym_boolean] = ACTIONS(3449), - [anon_sym_string] = ACTIONS(3449), - [anon_sym_symbol] = ACTIONS(3449), - [anon_sym_object] = ACTIONS(3449), - [anon_sym_abstract] = ACTIONS(3449), - [anon_sym_interface] = ACTIONS(3449), - [anon_sym_enum] = ACTIONS(3449), - [sym_html_comment] = ACTIONS(5), - }, - [1382] = { - [sym_comment] = STATE(1382), - [ts_builtin_sym_end] = ACTIONS(3565), - [sym_identifier] = ACTIONS(3411), - [anon_sym_export] = ACTIONS(3411), - [anon_sym_type] = ACTIONS(3411), - [anon_sym_namespace] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3411), - [anon_sym_RBRACE] = ACTIONS(3411), - [anon_sym_typeof] = ACTIONS(3411), - [anon_sym_import] = ACTIONS(3411), - [anon_sym_with] = ACTIONS(3411), - [anon_sym_var] = ACTIONS(3411), - [anon_sym_let] = ACTIONS(3411), - [anon_sym_const] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3411), - [anon_sym_else] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_await] = ACTIONS(3411), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_try] = ACTIONS(3411), - [anon_sym_break] = ACTIONS(3411), - [anon_sym_continue] = ACTIONS(3411), - [anon_sym_debugger] = ACTIONS(3411), - [anon_sym_return] = ACTIONS(3411), - [anon_sym_throw] = ACTIONS(3411), - [anon_sym_SEMI] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3411), - [anon_sym_LTtemplate_GT] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3411), - [anon_sym_class] = ACTIONS(3411), - [anon_sym_async] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3411), - [anon_sym_using] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_SLASH] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3411), - [anon_sym_void] = ACTIONS(3411), - [anon_sym_delete] = ACTIONS(3411), - [anon_sym_PLUS_PLUS] = ACTIONS(3411), - [anon_sym_DASH_DASH] = ACTIONS(3411), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3411), - [sym_number] = ACTIONS(3411), - [sym_private_property_identifier] = ACTIONS(3411), - [sym_this] = ACTIONS(3411), - [sym_super] = ACTIONS(3411), - [sym_true] = ACTIONS(3411), - [sym_false] = ACTIONS(3411), - [sym_null] = ACTIONS(3411), - [sym_undefined] = ACTIONS(3411), - [anon_sym_AT] = ACTIONS(3411), - [anon_sym_static] = ACTIONS(3411), - [anon_sym_readonly] = ACTIONS(3411), - [anon_sym_get] = ACTIONS(3411), - [anon_sym_set] = ACTIONS(3411), - [anon_sym_declare] = ACTIONS(3411), - [anon_sym_public] = ACTIONS(3411), - [anon_sym_private] = ACTIONS(3411), - [anon_sym_protected] = ACTIONS(3411), - [anon_sym_override] = ACTIONS(3411), - [anon_sym_module] = ACTIONS(3411), - [anon_sym_any] = ACTIONS(3411), - [anon_sym_number] = ACTIONS(3411), - [anon_sym_boolean] = ACTIONS(3411), - [anon_sym_string] = ACTIONS(3411), - [anon_sym_symbol] = ACTIONS(3411), - [anon_sym_object] = ACTIONS(3411), - [anon_sym_abstract] = ACTIONS(3411), - [anon_sym_interface] = ACTIONS(3411), - [anon_sym_enum] = ACTIONS(3411), - [sym_html_comment] = ACTIONS(5), - }, - [1383] = { - [sym_comment] = STATE(1383), - [ts_builtin_sym_end] = ACTIONS(3567), - [sym_identifier] = ACTIONS(3457), - [anon_sym_export] = ACTIONS(3457), - [anon_sym_type] = ACTIONS(3457), - [anon_sym_namespace] = ACTIONS(3457), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_RBRACE] = ACTIONS(3457), - [anon_sym_typeof] = ACTIONS(3457), - [anon_sym_import] = ACTIONS(3457), - [anon_sym_with] = ACTIONS(3457), - [anon_sym_var] = ACTIONS(3457), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_const] = ACTIONS(3457), - [anon_sym_BANG] = ACTIONS(3457), - [anon_sym_else] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_switch] = ACTIONS(3457), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_await] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_break] = ACTIONS(3457), - [anon_sym_continue] = ACTIONS(3457), - [anon_sym_debugger] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_throw] = ACTIONS(3457), - [anon_sym_SEMI] = ACTIONS(3457), - [anon_sym_yield] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_LTtemplate_GT] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [anon_sym_SQUOTE] = ACTIONS(3457), - [anon_sym_class] = ACTIONS(3457), - [anon_sym_async] = ACTIONS(3457), - [anon_sym_function] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_using] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_SLASH] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3457), - [anon_sym_void] = ACTIONS(3457), - [anon_sym_delete] = ACTIONS(3457), - [anon_sym_PLUS_PLUS] = ACTIONS(3457), - [anon_sym_DASH_DASH] = ACTIONS(3457), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3457), - [sym_number] = ACTIONS(3457), - [sym_private_property_identifier] = ACTIONS(3457), - [sym_this] = ACTIONS(3457), - [sym_super] = ACTIONS(3457), - [sym_true] = ACTIONS(3457), - [sym_false] = ACTIONS(3457), - [sym_null] = ACTIONS(3457), - [sym_undefined] = ACTIONS(3457), - [anon_sym_AT] = ACTIONS(3457), - [anon_sym_static] = ACTIONS(3457), - [anon_sym_readonly] = ACTIONS(3457), - [anon_sym_get] = ACTIONS(3457), - [anon_sym_set] = ACTIONS(3457), - [anon_sym_declare] = ACTIONS(3457), - [anon_sym_public] = ACTIONS(3457), - [anon_sym_private] = ACTIONS(3457), - [anon_sym_protected] = ACTIONS(3457), - [anon_sym_override] = ACTIONS(3457), - [anon_sym_module] = ACTIONS(3457), - [anon_sym_any] = ACTIONS(3457), - [anon_sym_number] = ACTIONS(3457), - [anon_sym_boolean] = ACTIONS(3457), - [anon_sym_string] = ACTIONS(3457), - [anon_sym_symbol] = ACTIONS(3457), - [anon_sym_object] = ACTIONS(3457), - [anon_sym_abstract] = ACTIONS(3457), - [anon_sym_interface] = ACTIONS(3457), - [anon_sym_enum] = ACTIONS(3457), - [sym_html_comment] = ACTIONS(5), - }, [1384] = { [sym_comment] = STATE(1384), - [ts_builtin_sym_end] = ACTIONS(2412), - [sym_identifier] = ACTIONS(2238), - [anon_sym_export] = ACTIONS(2238), - [anon_sym_type] = ACTIONS(2238), - [anon_sym_namespace] = ACTIONS(2238), - [anon_sym_LBRACE] = ACTIONS(2238), - [anon_sym_RBRACE] = ACTIONS(2238), - [anon_sym_typeof] = ACTIONS(2238), - [anon_sym_import] = ACTIONS(2238), - [anon_sym_with] = ACTIONS(2238), - [anon_sym_var] = ACTIONS(2238), - [anon_sym_let] = ACTIONS(2238), - [anon_sym_const] = ACTIONS(2238), - [anon_sym_BANG] = ACTIONS(2238), - [anon_sym_if] = ACTIONS(2238), - [anon_sym_switch] = ACTIONS(2238), - [anon_sym_for] = ACTIONS(2238), - [anon_sym_LPAREN] = ACTIONS(2238), - [anon_sym_await] = ACTIONS(2238), - [anon_sym_while] = ACTIONS(2238), - [anon_sym_do] = ACTIONS(2238), - [anon_sym_try] = ACTIONS(2238), - [anon_sym_break] = ACTIONS(2238), - [anon_sym_continue] = ACTIONS(2238), - [anon_sym_debugger] = ACTIONS(2238), - [anon_sym_return] = ACTIONS(2238), - [anon_sym_throw] = ACTIONS(2238), - [anon_sym_SEMI] = ACTIONS(2238), - [anon_sym_yield] = ACTIONS(2238), - [anon_sym_LBRACK] = ACTIONS(2238), - [anon_sym_LTtemplate_GT] = ACTIONS(2238), - [anon_sym_DQUOTE] = ACTIONS(2238), - [anon_sym_SQUOTE] = ACTIONS(2238), - [anon_sym_class] = ACTIONS(2238), - [anon_sym_async] = ACTIONS(2238), - [anon_sym_function] = ACTIONS(2238), - [anon_sym_new] = ACTIONS(2238), - [anon_sym_using] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(2238), - [anon_sym_DASH] = ACTIONS(2238), - [anon_sym_SLASH] = ACTIONS(2238), - [anon_sym_LT] = ACTIONS(2238), - [anon_sym_TILDE] = ACTIONS(2238), - [anon_sym_void] = ACTIONS(2238), - [anon_sym_delete] = ACTIONS(2238), - [anon_sym_PLUS_PLUS] = ACTIONS(2238), - [anon_sym_DASH_DASH] = ACTIONS(2238), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2238), - [sym_number] = ACTIONS(2238), - [sym_private_property_identifier] = ACTIONS(2238), - [sym_this] = ACTIONS(2238), - [sym_super] = ACTIONS(2238), - [sym_true] = ACTIONS(2238), - [sym_false] = ACTIONS(2238), - [sym_null] = ACTIONS(2238), - [sym_undefined] = ACTIONS(2238), - [anon_sym_AT] = ACTIONS(2238), - [anon_sym_static] = ACTIONS(2238), - [anon_sym_readonly] = ACTIONS(2238), - [anon_sym_get] = ACTIONS(2238), - [anon_sym_set] = ACTIONS(2238), - [anon_sym_declare] = ACTIONS(2238), - [anon_sym_public] = ACTIONS(2238), - [anon_sym_private] = ACTIONS(2238), - [anon_sym_protected] = ACTIONS(2238), - [anon_sym_override] = ACTIONS(2238), - [anon_sym_module] = ACTIONS(2238), - [anon_sym_any] = ACTIONS(2238), - [anon_sym_number] = ACTIONS(2238), - [anon_sym_boolean] = ACTIONS(2238), - [anon_sym_string] = ACTIONS(2238), - [anon_sym_symbol] = ACTIONS(2238), - [anon_sym_object] = ACTIONS(2238), - [anon_sym_abstract] = ACTIONS(2238), - [anon_sym_interface] = ACTIONS(2238), - [anon_sym_enum] = ACTIONS(2238), - [sym__automatic_semicolon] = ACTIONS(2434), + [ts_builtin_sym_end] = ACTIONS(3591), + [sym_identifier] = ACTIONS(3417), + [anon_sym_export] = ACTIONS(3417), + [anon_sym_type] = ACTIONS(3417), + [anon_sym_namespace] = ACTIONS(3417), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_RBRACE] = ACTIONS(3417), + [anon_sym_typeof] = ACTIONS(3417), + [anon_sym_import] = ACTIONS(3417), + [anon_sym_with] = ACTIONS(3417), + [anon_sym_var] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_const] = ACTIONS(3417), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_else] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_switch] = ACTIONS(3417), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_await] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_break] = ACTIONS(3417), + [anon_sym_continue] = ACTIONS(3417), + [anon_sym_debugger] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_throw] = ACTIONS(3417), + [anon_sym_SEMI] = ACTIONS(3417), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LTtemplate_GT] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3417), + [anon_sym_class] = ACTIONS(3417), + [anon_sym_async] = ACTIONS(3417), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_using] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_SLASH] = ACTIONS(3417), + [anon_sym_LT] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_void] = ACTIONS(3417), + [anon_sym_delete] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_DASH_DASH] = ACTIONS(3417), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3417), + [sym_number] = ACTIONS(3417), + [sym_private_property_identifier] = ACTIONS(3417), + [sym_this] = ACTIONS(3417), + [sym_super] = ACTIONS(3417), + [sym_true] = ACTIONS(3417), + [sym_false] = ACTIONS(3417), + [sym_null] = ACTIONS(3417), + [sym_undefined] = ACTIONS(3417), + [anon_sym_AT] = ACTIONS(3417), + [anon_sym_static] = ACTIONS(3417), + [anon_sym_readonly] = ACTIONS(3417), + [anon_sym_get] = ACTIONS(3417), + [anon_sym_set] = ACTIONS(3417), + [anon_sym_declare] = ACTIONS(3417), + [anon_sym_public] = ACTIONS(3417), + [anon_sym_private] = ACTIONS(3417), + [anon_sym_protected] = ACTIONS(3417), + [anon_sym_override] = ACTIONS(3417), + [anon_sym_module] = ACTIONS(3417), + [anon_sym_any] = ACTIONS(3417), + [anon_sym_number] = ACTIONS(3417), + [anon_sym_boolean] = ACTIONS(3417), + [anon_sym_string] = ACTIONS(3417), + [anon_sym_symbol] = ACTIONS(3417), + [anon_sym_object] = ACTIONS(3417), + [anon_sym_abstract] = ACTIONS(3417), + [anon_sym_interface] = ACTIONS(3417), + [anon_sym_enum] = ACTIONS(3417), [sym_html_comment] = ACTIONS(5), }, [1385] = { [sym_comment] = STATE(1385), - [sym_identifier] = ACTIONS(3239), - [anon_sym_export] = ACTIONS(3239), - [anon_sym_default] = ACTIONS(3239), - [anon_sym_type] = ACTIONS(3239), - [anon_sym_namespace] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(3239), - [anon_sym_typeof] = ACTIONS(3239), - [anon_sym_import] = ACTIONS(3239), - [anon_sym_with] = ACTIONS(3239), - [anon_sym_var] = ACTIONS(3239), - [anon_sym_let] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3239), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_switch] = ACTIONS(3239), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_await] = ACTIONS(3239), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_break] = ACTIONS(3239), - [anon_sym_continue] = ACTIONS(3239), - [anon_sym_debugger] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_throw] = ACTIONS(3239), - [anon_sym_SEMI] = ACTIONS(3239), - [anon_sym_case] = ACTIONS(3239), - [anon_sym_yield] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LTtemplate_GT] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [anon_sym_SQUOTE] = ACTIONS(3239), - [anon_sym_class] = ACTIONS(3239), - [anon_sym_async] = ACTIONS(3239), - [anon_sym_function] = ACTIONS(3239), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_using] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_void] = ACTIONS(3239), - [anon_sym_delete] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), + [ts_builtin_sym_end] = ACTIONS(3593), + [sym_identifier] = ACTIONS(3287), + [anon_sym_export] = ACTIONS(3287), + [anon_sym_type] = ACTIONS(3287), + [anon_sym_namespace] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(3287), + [anon_sym_typeof] = ACTIONS(3287), + [anon_sym_import] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3287), + [anon_sym_var] = ACTIONS(3287), + [anon_sym_let] = ACTIONS(3287), + [anon_sym_const] = ACTIONS(3287), + [anon_sym_BANG] = ACTIONS(3287), + [anon_sym_else] = ACTIONS(3287), + [anon_sym_if] = ACTIONS(3287), + [anon_sym_switch] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3287), + [anon_sym_await] = ACTIONS(3287), + [anon_sym_while] = ACTIONS(3287), + [anon_sym_do] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3287), + [anon_sym_break] = ACTIONS(3287), + [anon_sym_continue] = ACTIONS(3287), + [anon_sym_debugger] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3287), + [anon_sym_throw] = ACTIONS(3287), + [anon_sym_SEMI] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(3287), + [anon_sym_LTtemplate_GT] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(3287), + [anon_sym_SQUOTE] = ACTIONS(3287), + [anon_sym_class] = ACTIONS(3287), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3287), + [anon_sym_using] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3287), + [anon_sym_DASH] = ACTIONS(3287), + [anon_sym_SLASH] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [anon_sym_void] = ACTIONS(3287), + [anon_sym_delete] = ACTIONS(3287), + [anon_sym_PLUS_PLUS] = ACTIONS(3287), + [anon_sym_DASH_DASH] = ACTIONS(3287), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3239), - [sym_number] = ACTIONS(3239), - [sym_private_property_identifier] = ACTIONS(3239), - [sym_this] = ACTIONS(3239), - [sym_super] = ACTIONS(3239), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [sym_null] = ACTIONS(3239), - [sym_undefined] = ACTIONS(3239), - [anon_sym_AT] = ACTIONS(3239), - [anon_sym_static] = ACTIONS(3239), - [anon_sym_readonly] = ACTIONS(3239), - [anon_sym_get] = ACTIONS(3239), - [anon_sym_set] = ACTIONS(3239), - [anon_sym_declare] = ACTIONS(3239), - [anon_sym_public] = ACTIONS(3239), - [anon_sym_private] = ACTIONS(3239), - [anon_sym_protected] = ACTIONS(3239), - [anon_sym_override] = ACTIONS(3239), - [anon_sym_module] = ACTIONS(3239), - [anon_sym_any] = ACTIONS(3239), - [anon_sym_number] = ACTIONS(3239), - [anon_sym_boolean] = ACTIONS(3239), - [anon_sym_string] = ACTIONS(3239), - [anon_sym_symbol] = ACTIONS(3239), - [anon_sym_object] = ACTIONS(3239), - [anon_sym_abstract] = ACTIONS(3239), - [anon_sym_interface] = ACTIONS(3239), - [anon_sym_enum] = ACTIONS(3239), + [anon_sym_BQUOTE] = ACTIONS(3287), + [sym_number] = ACTIONS(3287), + [sym_private_property_identifier] = ACTIONS(3287), + [sym_this] = ACTIONS(3287), + [sym_super] = ACTIONS(3287), + [sym_true] = ACTIONS(3287), + [sym_false] = ACTIONS(3287), + [sym_null] = ACTIONS(3287), + [sym_undefined] = ACTIONS(3287), + [anon_sym_AT] = ACTIONS(3287), + [anon_sym_static] = ACTIONS(3287), + [anon_sym_readonly] = ACTIONS(3287), + [anon_sym_get] = ACTIONS(3287), + [anon_sym_set] = ACTIONS(3287), + [anon_sym_declare] = ACTIONS(3287), + [anon_sym_public] = ACTIONS(3287), + [anon_sym_private] = ACTIONS(3287), + [anon_sym_protected] = ACTIONS(3287), + [anon_sym_override] = ACTIONS(3287), + [anon_sym_module] = ACTIONS(3287), + [anon_sym_any] = ACTIONS(3287), + [anon_sym_number] = ACTIONS(3287), + [anon_sym_boolean] = ACTIONS(3287), + [anon_sym_string] = ACTIONS(3287), + [anon_sym_symbol] = ACTIONS(3287), + [anon_sym_object] = ACTIONS(3287), + [anon_sym_abstract] = ACTIONS(3287), + [anon_sym_interface] = ACTIONS(3287), + [anon_sym_enum] = ACTIONS(3287), [sym_html_comment] = ACTIONS(5), }, [1386] = { [sym_comment] = STATE(1386), - [ts_builtin_sym_end] = ACTIONS(3439), - [sym_identifier] = ACTIONS(3185), - [anon_sym_export] = ACTIONS(3185), - [anon_sym_type] = ACTIONS(3185), - [anon_sym_namespace] = ACTIONS(3185), - [anon_sym_LBRACE] = ACTIONS(3185), - [anon_sym_RBRACE] = ACTIONS(3185), - [anon_sym_typeof] = ACTIONS(3185), - [anon_sym_import] = ACTIONS(3185), - [anon_sym_with] = ACTIONS(3185), - [anon_sym_var] = ACTIONS(3185), - [anon_sym_let] = ACTIONS(3185), - [anon_sym_const] = ACTIONS(3185), - [anon_sym_BANG] = ACTIONS(3185), - [anon_sym_if] = ACTIONS(3185), - [anon_sym_switch] = ACTIONS(3185), - [anon_sym_for] = ACTIONS(3185), - [anon_sym_LPAREN] = ACTIONS(3185), - [anon_sym_await] = ACTIONS(3185), - [anon_sym_while] = ACTIONS(3185), - [anon_sym_do] = ACTIONS(3185), - [anon_sym_try] = ACTIONS(3185), - [anon_sym_break] = ACTIONS(3185), - [anon_sym_continue] = ACTIONS(3185), - [anon_sym_debugger] = ACTIONS(3185), - [anon_sym_return] = ACTIONS(3185), - [anon_sym_throw] = ACTIONS(3185), - [anon_sym_SEMI] = ACTIONS(3185), - [anon_sym_finally] = ACTIONS(3185), - [anon_sym_yield] = ACTIONS(3185), - [anon_sym_LBRACK] = ACTIONS(3185), - [anon_sym_LTtemplate_GT] = ACTIONS(3185), - [anon_sym_DQUOTE] = ACTIONS(3185), - [anon_sym_SQUOTE] = ACTIONS(3185), - [anon_sym_class] = ACTIONS(3185), - [anon_sym_async] = ACTIONS(3185), - [anon_sym_function] = ACTIONS(3185), - [anon_sym_new] = ACTIONS(3185), - [anon_sym_using] = ACTIONS(3185), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_TILDE] = ACTIONS(3185), - [anon_sym_void] = ACTIONS(3185), - [anon_sym_delete] = ACTIONS(3185), - [anon_sym_PLUS_PLUS] = ACTIONS(3185), - [anon_sym_DASH_DASH] = ACTIONS(3185), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3185), - [sym_number] = ACTIONS(3185), - [sym_private_property_identifier] = ACTIONS(3185), - [sym_this] = ACTIONS(3185), - [sym_super] = ACTIONS(3185), - [sym_true] = ACTIONS(3185), - [sym_false] = ACTIONS(3185), - [sym_null] = ACTIONS(3185), - [sym_undefined] = ACTIONS(3185), - [anon_sym_AT] = ACTIONS(3185), - [anon_sym_static] = ACTIONS(3185), - [anon_sym_readonly] = ACTIONS(3185), - [anon_sym_get] = ACTIONS(3185), - [anon_sym_set] = ACTIONS(3185), - [anon_sym_declare] = ACTIONS(3185), - [anon_sym_public] = ACTIONS(3185), - [anon_sym_private] = ACTIONS(3185), - [anon_sym_protected] = ACTIONS(3185), - [anon_sym_override] = ACTIONS(3185), - [anon_sym_module] = ACTIONS(3185), - [anon_sym_any] = ACTIONS(3185), - [anon_sym_number] = ACTIONS(3185), - [anon_sym_boolean] = ACTIONS(3185), - [anon_sym_string] = ACTIONS(3185), - [anon_sym_symbol] = ACTIONS(3185), - [anon_sym_object] = ACTIONS(3185), - [anon_sym_abstract] = ACTIONS(3185), - [anon_sym_interface] = ACTIONS(3185), - [anon_sym_enum] = ACTIONS(3185), + [ts_builtin_sym_end] = ACTIONS(3595), + [sym_identifier] = ACTIONS(3277), + [anon_sym_export] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_namespace] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_typeof] = ACTIONS(3277), + [anon_sym_import] = ACTIONS(3277), + [anon_sym_with] = ACTIONS(3277), + [anon_sym_var] = ACTIONS(3277), + [anon_sym_let] = ACTIONS(3277), + [anon_sym_const] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_switch] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_await] = ACTIONS(3277), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_do] = ACTIONS(3277), + [anon_sym_try] = ACTIONS(3277), + [anon_sym_break] = ACTIONS(3277), + [anon_sym_continue] = ACTIONS(3277), + [anon_sym_debugger] = ACTIONS(3277), + [anon_sym_return] = ACTIONS(3277), + [anon_sym_throw] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_yield] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_LTtemplate_GT] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(3277), + [anon_sym_SQUOTE] = ACTIONS(3277), + [anon_sym_class] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_function] = ACTIONS(3277), + [anon_sym_new] = ACTIONS(3277), + [anon_sym_using] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_void] = ACTIONS(3277), + [anon_sym_delete] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3277), + [sym_number] = ACTIONS(3277), + [sym_private_property_identifier] = ACTIONS(3277), + [sym_this] = ACTIONS(3277), + [sym_super] = ACTIONS(3277), + [sym_true] = ACTIONS(3277), + [sym_false] = ACTIONS(3277), + [sym_null] = ACTIONS(3277), + [sym_undefined] = ACTIONS(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_static] = ACTIONS(3277), + [anon_sym_readonly] = ACTIONS(3277), + [anon_sym_get] = ACTIONS(3277), + [anon_sym_set] = ACTIONS(3277), + [anon_sym_declare] = ACTIONS(3277), + [anon_sym_public] = ACTIONS(3277), + [anon_sym_private] = ACTIONS(3277), + [anon_sym_protected] = ACTIONS(3277), + [anon_sym_override] = ACTIONS(3277), + [anon_sym_module] = ACTIONS(3277), + [anon_sym_any] = ACTIONS(3277), + [anon_sym_number] = ACTIONS(3277), + [anon_sym_boolean] = ACTIONS(3277), + [anon_sym_string] = ACTIONS(3277), + [anon_sym_symbol] = ACTIONS(3277), + [anon_sym_object] = ACTIONS(3277), + [anon_sym_abstract] = ACTIONS(3277), + [anon_sym_interface] = ACTIONS(3277), + [anon_sym_enum] = ACTIONS(3277), [sym_html_comment] = ACTIONS(5), }, [1387] = { [sym_comment] = STATE(1387), - [sym_identifier] = ACTIONS(3235), - [anon_sym_export] = ACTIONS(3235), - [anon_sym_default] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_namespace] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_typeof] = ACTIONS(3235), - [anon_sym_import] = ACTIONS(3235), - [anon_sym_with] = ACTIONS(3235), - [anon_sym_var] = ACTIONS(3235), - [anon_sym_let] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), + [ts_builtin_sym_end] = ACTIONS(3595), + [sym_identifier] = ACTIONS(3277), + [anon_sym_export] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_namespace] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_typeof] = ACTIONS(3277), + [anon_sym_import] = ACTIONS(3277), + [anon_sym_with] = ACTIONS(3277), + [anon_sym_var] = ACTIONS(3277), + [anon_sym_let] = ACTIONS(3277), + [anon_sym_const] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_else] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_switch] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_await] = ACTIONS(3277), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_do] = ACTIONS(3277), + [anon_sym_try] = ACTIONS(3277), + [anon_sym_break] = ACTIONS(3277), + [anon_sym_continue] = ACTIONS(3277), + [anon_sym_debugger] = ACTIONS(3277), + [anon_sym_return] = ACTIONS(3277), + [anon_sym_throw] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_yield] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_LTtemplate_GT] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(3277), + [anon_sym_SQUOTE] = ACTIONS(3277), + [anon_sym_class] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_function] = ACTIONS(3277), + [anon_sym_new] = ACTIONS(3277), + [anon_sym_using] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_void] = ACTIONS(3277), + [anon_sym_delete] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3277), + [sym_number] = ACTIONS(3277), + [sym_private_property_identifier] = ACTIONS(3277), + [sym_this] = ACTIONS(3277), + [sym_super] = ACTIONS(3277), + [sym_true] = ACTIONS(3277), + [sym_false] = ACTIONS(3277), + [sym_null] = ACTIONS(3277), + [sym_undefined] = ACTIONS(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_static] = ACTIONS(3277), + [anon_sym_readonly] = ACTIONS(3277), + [anon_sym_get] = ACTIONS(3277), + [anon_sym_set] = ACTIONS(3277), + [anon_sym_declare] = ACTIONS(3277), + [anon_sym_public] = ACTIONS(3277), + [anon_sym_private] = ACTIONS(3277), + [anon_sym_protected] = ACTIONS(3277), + [anon_sym_override] = ACTIONS(3277), + [anon_sym_module] = ACTIONS(3277), + [anon_sym_any] = ACTIONS(3277), + [anon_sym_number] = ACTIONS(3277), + [anon_sym_boolean] = ACTIONS(3277), + [anon_sym_string] = ACTIONS(3277), + [anon_sym_symbol] = ACTIONS(3277), + [anon_sym_object] = ACTIONS(3277), + [anon_sym_abstract] = ACTIONS(3277), + [anon_sym_interface] = ACTIONS(3277), + [anon_sym_enum] = ACTIONS(3277), + [sym_html_comment] = ACTIONS(5), + }, + [1388] = { + [sym_comment] = STATE(1388), + [ts_builtin_sym_end] = ACTIONS(3597), + [sym_identifier] = ACTIONS(3275), + [anon_sym_export] = ACTIONS(3275), + [anon_sym_type] = ACTIONS(3275), + [anon_sym_namespace] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_typeof] = ACTIONS(3275), + [anon_sym_import] = ACTIONS(3275), + [anon_sym_with] = ACTIONS(3275), + [anon_sym_var] = ACTIONS(3275), + [anon_sym_let] = ACTIONS(3275), + [anon_sym_const] = ACTIONS(3275), + [anon_sym_BANG] = ACTIONS(3275), + [anon_sym_else] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_switch] = ACTIONS(3275), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_await] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3275), + [anon_sym_do] = ACTIONS(3275), + [anon_sym_try] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_debugger] = ACTIONS(3275), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_throw] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3275), + [anon_sym_yield] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_LTtemplate_GT] = ACTIONS(3275), + [anon_sym_DQUOTE] = ACTIONS(3275), + [anon_sym_SQUOTE] = ACTIONS(3275), + [anon_sym_class] = ACTIONS(3275), + [anon_sym_async] = ACTIONS(3275), + [anon_sym_function] = ACTIONS(3275), + [anon_sym_new] = ACTIONS(3275), + [anon_sym_using] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_TILDE] = ACTIONS(3275), + [anon_sym_void] = ACTIONS(3275), + [anon_sym_delete] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_DASH_DASH] = ACTIONS(3275), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3275), + [sym_number] = ACTIONS(3275), + [sym_private_property_identifier] = ACTIONS(3275), + [sym_this] = ACTIONS(3275), + [sym_super] = ACTIONS(3275), + [sym_true] = ACTIONS(3275), + [sym_false] = ACTIONS(3275), + [sym_null] = ACTIONS(3275), + [sym_undefined] = ACTIONS(3275), + [anon_sym_AT] = ACTIONS(3275), + [anon_sym_static] = ACTIONS(3275), + [anon_sym_readonly] = ACTIONS(3275), + [anon_sym_get] = ACTIONS(3275), + [anon_sym_set] = ACTIONS(3275), + [anon_sym_declare] = ACTIONS(3275), + [anon_sym_public] = ACTIONS(3275), + [anon_sym_private] = ACTIONS(3275), + [anon_sym_protected] = ACTIONS(3275), + [anon_sym_override] = ACTIONS(3275), + [anon_sym_module] = ACTIONS(3275), + [anon_sym_any] = ACTIONS(3275), + [anon_sym_number] = ACTIONS(3275), + [anon_sym_boolean] = ACTIONS(3275), + [anon_sym_string] = ACTIONS(3275), + [anon_sym_symbol] = ACTIONS(3275), + [anon_sym_object] = ACTIONS(3275), + [anon_sym_abstract] = ACTIONS(3275), + [anon_sym_interface] = ACTIONS(3275), + [anon_sym_enum] = ACTIONS(3275), + [sym_html_comment] = ACTIONS(5), + }, + [1389] = { + [sym_comment] = STATE(1389), + [ts_builtin_sym_end] = ACTIONS(3599), + [sym_identifier] = ACTIONS(3271), + [anon_sym_export] = ACTIONS(3271), + [anon_sym_type] = ACTIONS(3271), + [anon_sym_namespace] = ACTIONS(3271), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_RBRACE] = ACTIONS(3271), + [anon_sym_typeof] = ACTIONS(3271), + [anon_sym_import] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3271), + [anon_sym_var] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3271), + [anon_sym_const] = ACTIONS(3271), + [anon_sym_BANG] = ACTIONS(3271), + [anon_sym_else] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3271), + [anon_sym_switch] = ACTIONS(3271), + [anon_sym_for] = ACTIONS(3271), + [anon_sym_LPAREN] = ACTIONS(3271), + [anon_sym_await] = ACTIONS(3271), + [anon_sym_while] = ACTIONS(3271), + [anon_sym_do] = ACTIONS(3271), + [anon_sym_try] = ACTIONS(3271), + [anon_sym_break] = ACTIONS(3271), + [anon_sym_continue] = ACTIONS(3271), + [anon_sym_debugger] = ACTIONS(3271), + [anon_sym_return] = ACTIONS(3271), + [anon_sym_throw] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3271), + [anon_sym_yield] = ACTIONS(3271), + [anon_sym_LBRACK] = ACTIONS(3271), + [anon_sym_LTtemplate_GT] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3271), + [anon_sym_SQUOTE] = ACTIONS(3271), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_async] = ACTIONS(3271), + [anon_sym_function] = ACTIONS(3271), + [anon_sym_new] = ACTIONS(3271), + [anon_sym_using] = ACTIONS(3271), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_SLASH] = ACTIONS(3271), + [anon_sym_LT] = ACTIONS(3271), + [anon_sym_TILDE] = ACTIONS(3271), + [anon_sym_void] = ACTIONS(3271), + [anon_sym_delete] = ACTIONS(3271), + [anon_sym_PLUS_PLUS] = ACTIONS(3271), + [anon_sym_DASH_DASH] = ACTIONS(3271), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3271), + [sym_number] = ACTIONS(3271), + [sym_private_property_identifier] = ACTIONS(3271), + [sym_this] = ACTIONS(3271), + [sym_super] = ACTIONS(3271), + [sym_true] = ACTIONS(3271), + [sym_false] = ACTIONS(3271), + [sym_null] = ACTIONS(3271), + [sym_undefined] = ACTIONS(3271), + [anon_sym_AT] = ACTIONS(3271), + [anon_sym_static] = ACTIONS(3271), + [anon_sym_readonly] = ACTIONS(3271), + [anon_sym_get] = ACTIONS(3271), + [anon_sym_set] = ACTIONS(3271), + [anon_sym_declare] = ACTIONS(3271), + [anon_sym_public] = ACTIONS(3271), + [anon_sym_private] = ACTIONS(3271), + [anon_sym_protected] = ACTIONS(3271), + [anon_sym_override] = ACTIONS(3271), + [anon_sym_module] = ACTIONS(3271), + [anon_sym_any] = ACTIONS(3271), + [anon_sym_number] = ACTIONS(3271), + [anon_sym_boolean] = ACTIONS(3271), + [anon_sym_string] = ACTIONS(3271), + [anon_sym_symbol] = ACTIONS(3271), + [anon_sym_object] = ACTIONS(3271), + [anon_sym_abstract] = ACTIONS(3271), + [anon_sym_interface] = ACTIONS(3271), + [anon_sym_enum] = ACTIONS(3271), + [sym_html_comment] = ACTIONS(5), + }, + [1390] = { + [sym_comment] = STATE(1390), + [sym_identifier] = ACTIONS(3235), + [anon_sym_export] = ACTIONS(3235), + [anon_sym_default] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_namespace] = ACTIONS(3235), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_RBRACE] = ACTIONS(3235), + [anon_sym_typeof] = ACTIONS(3235), + [anon_sym_import] = ACTIONS(3235), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_var] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_const] = ACTIONS(3235), + [anon_sym_BANG] = ACTIONS(3235), [anon_sym_if] = ACTIONS(3235), [anon_sym_switch] = ACTIONS(3235), [anon_sym_for] = ACTIONS(3235), @@ -176384,2061 +176311,1159 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3235), [sym_html_comment] = ACTIONS(5), }, - [1388] = { - [sym_comment] = STATE(1388), - [sym_identifier] = ACTIONS(3233), - [anon_sym_export] = ACTIONS(3233), - [anon_sym_default] = ACTIONS(3233), - [anon_sym_type] = ACTIONS(3233), - [anon_sym_namespace] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_typeof] = ACTIONS(3233), - [anon_sym_import] = ACTIONS(3233), - [anon_sym_with] = ACTIONS(3233), - [anon_sym_var] = ACTIONS(3233), - [anon_sym_let] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3233), - [anon_sym_switch] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_await] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3233), - [anon_sym_do] = ACTIONS(3233), - [anon_sym_try] = ACTIONS(3233), - [anon_sym_break] = ACTIONS(3233), - [anon_sym_continue] = ACTIONS(3233), - [anon_sym_debugger] = ACTIONS(3233), - [anon_sym_return] = ACTIONS(3233), - [anon_sym_throw] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_case] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3233), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_LTtemplate_GT] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3233), - [anon_sym_class] = ACTIONS(3233), - [anon_sym_async] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3233), - [anon_sym_new] = ACTIONS(3233), - [anon_sym_using] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_SLASH] = ACTIONS(3233), - [anon_sym_LT] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_void] = ACTIONS(3233), - [anon_sym_delete] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3233), - [sym_number] = ACTIONS(3233), - [sym_private_property_identifier] = ACTIONS(3233), - [sym_this] = ACTIONS(3233), - [sym_super] = ACTIONS(3233), - [sym_true] = ACTIONS(3233), - [sym_false] = ACTIONS(3233), - [sym_null] = ACTIONS(3233), - [sym_undefined] = ACTIONS(3233), - [anon_sym_AT] = ACTIONS(3233), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_readonly] = ACTIONS(3233), - [anon_sym_get] = ACTIONS(3233), - [anon_sym_set] = ACTIONS(3233), - [anon_sym_declare] = ACTIONS(3233), - [anon_sym_public] = ACTIONS(3233), - [anon_sym_private] = ACTIONS(3233), - [anon_sym_protected] = ACTIONS(3233), - [anon_sym_override] = ACTIONS(3233), - [anon_sym_module] = ACTIONS(3233), - [anon_sym_any] = ACTIONS(3233), - [anon_sym_number] = ACTIONS(3233), - [anon_sym_boolean] = ACTIONS(3233), - [anon_sym_string] = ACTIONS(3233), - [anon_sym_symbol] = ACTIONS(3233), - [anon_sym_object] = ACTIONS(3233), - [anon_sym_abstract] = ACTIONS(3233), - [anon_sym_interface] = ACTIONS(3233), - [anon_sym_enum] = ACTIONS(3233), - [sym_html_comment] = ACTIONS(5), - }, - [1389] = { - [sym_comment] = STATE(1389), - [sym_identifier] = ACTIONS(3231), - [anon_sym_export] = ACTIONS(3231), - [anon_sym_default] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym_typeof] = ACTIONS(3231), - [anon_sym_import] = ACTIONS(3231), - [anon_sym_with] = ACTIONS(3231), - [anon_sym_var] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_await] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_debugger] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_case] = ACTIONS(3231), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LTtemplate_GT] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_SQUOTE] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_void] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3231), - [sym_number] = ACTIONS(3231), - [sym_private_property_identifier] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - [sym_super] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_null] = ACTIONS(3231), - [sym_undefined] = ACTIONS(3231), - [anon_sym_AT] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_readonly] = ACTIONS(3231), - [anon_sym_get] = ACTIONS(3231), - [anon_sym_set] = ACTIONS(3231), - [anon_sym_declare] = ACTIONS(3231), - [anon_sym_public] = ACTIONS(3231), - [anon_sym_private] = ACTIONS(3231), - [anon_sym_protected] = ACTIONS(3231), - [anon_sym_override] = ACTIONS(3231), - [anon_sym_module] = ACTIONS(3231), - [anon_sym_any] = ACTIONS(3231), - [anon_sym_number] = ACTIONS(3231), - [anon_sym_boolean] = ACTIONS(3231), - [anon_sym_string] = ACTIONS(3231), - [anon_sym_symbol] = ACTIONS(3231), - [anon_sym_object] = ACTIONS(3231), - [anon_sym_abstract] = ACTIONS(3231), - [anon_sym_interface] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [sym_html_comment] = ACTIONS(5), - }, - [1390] = { - [sym_comment] = STATE(1390), - [ts_builtin_sym_end] = ACTIONS(3569), - [sym_identifier] = ACTIONS(3407), - [anon_sym_export] = ACTIONS(3407), - [anon_sym_type] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_RBRACE] = ACTIONS(3407), - [anon_sym_typeof] = ACTIONS(3407), - [anon_sym_import] = ACTIONS(3407), - [anon_sym_with] = ACTIONS(3407), - [anon_sym_var] = ACTIONS(3407), - [anon_sym_let] = ACTIONS(3407), - [anon_sym_const] = ACTIONS(3407), - [anon_sym_BANG] = ACTIONS(3407), - [anon_sym_else] = ACTIONS(3407), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_switch] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_await] = ACTIONS(3407), - [anon_sym_while] = ACTIONS(3407), - [anon_sym_do] = ACTIONS(3407), - [anon_sym_try] = ACTIONS(3407), - [anon_sym_break] = ACTIONS(3407), - [anon_sym_continue] = ACTIONS(3407), - [anon_sym_debugger] = ACTIONS(3407), - [anon_sym_return] = ACTIONS(3407), - [anon_sym_throw] = ACTIONS(3407), - [anon_sym_SEMI] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3407), - [anon_sym_LTtemplate_GT] = ACTIONS(3407), - [anon_sym_DQUOTE] = ACTIONS(3407), - [anon_sym_SQUOTE] = ACTIONS(3407), - [anon_sym_class] = ACTIONS(3407), - [anon_sym_async] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3407), - [anon_sym_using] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_SLASH] = ACTIONS(3407), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3407), - [anon_sym_void] = ACTIONS(3407), - [anon_sym_delete] = ACTIONS(3407), - [anon_sym_PLUS_PLUS] = ACTIONS(3407), - [anon_sym_DASH_DASH] = ACTIONS(3407), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3407), - [sym_number] = ACTIONS(3407), - [sym_private_property_identifier] = ACTIONS(3407), - [sym_this] = ACTIONS(3407), - [sym_super] = ACTIONS(3407), - [sym_true] = ACTIONS(3407), - [sym_false] = ACTIONS(3407), - [sym_null] = ACTIONS(3407), - [sym_undefined] = ACTIONS(3407), - [anon_sym_AT] = ACTIONS(3407), - [anon_sym_static] = ACTIONS(3407), - [anon_sym_readonly] = ACTIONS(3407), - [anon_sym_get] = ACTIONS(3407), - [anon_sym_set] = ACTIONS(3407), - [anon_sym_declare] = ACTIONS(3407), - [anon_sym_public] = ACTIONS(3407), - [anon_sym_private] = ACTIONS(3407), - [anon_sym_protected] = ACTIONS(3407), - [anon_sym_override] = ACTIONS(3407), - [anon_sym_module] = ACTIONS(3407), - [anon_sym_any] = ACTIONS(3407), - [anon_sym_number] = ACTIONS(3407), - [anon_sym_boolean] = ACTIONS(3407), - [anon_sym_string] = ACTIONS(3407), - [anon_sym_symbol] = ACTIONS(3407), - [anon_sym_object] = ACTIONS(3407), - [anon_sym_abstract] = ACTIONS(3407), - [anon_sym_interface] = ACTIONS(3407), - [anon_sym_enum] = ACTIONS(3407), - [sym_html_comment] = ACTIONS(5), - }, [1391] = { [sym_comment] = STATE(1391), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(3571), + [ts_builtin_sym_end] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_else] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, [1392] = { [sym_comment] = STATE(1392), - [ts_builtin_sym_end] = ACTIONS(3573), - [sym_identifier] = ACTIONS(3405), - [anon_sym_export] = ACTIONS(3405), - [anon_sym_type] = ACTIONS(3405), - [anon_sym_namespace] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_typeof] = ACTIONS(3405), - [anon_sym_import] = ACTIONS(3405), - [anon_sym_with] = ACTIONS(3405), - [anon_sym_var] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_const] = ACTIONS(3405), - [anon_sym_BANG] = ACTIONS(3405), - [anon_sym_else] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_switch] = ACTIONS(3405), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_await] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_break] = ACTIONS(3405), - [anon_sym_continue] = ACTIONS(3405), - [anon_sym_debugger] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_throw] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LTtemplate_GT] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_SQUOTE] = ACTIONS(3405), - [anon_sym_class] = ACTIONS(3405), - [anon_sym_async] = ACTIONS(3405), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_using] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_SLASH] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_void] = ACTIONS(3405), - [anon_sym_delete] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3405), + [ts_builtin_sym_end] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_else] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3405), - [sym_number] = ACTIONS(3405), - [sym_private_property_identifier] = ACTIONS(3405), - [sym_this] = ACTIONS(3405), - [sym_super] = ACTIONS(3405), - [sym_true] = ACTIONS(3405), - [sym_false] = ACTIONS(3405), - [sym_null] = ACTIONS(3405), - [sym_undefined] = ACTIONS(3405), - [anon_sym_AT] = ACTIONS(3405), - [anon_sym_static] = ACTIONS(3405), - [anon_sym_readonly] = ACTIONS(3405), - [anon_sym_get] = ACTIONS(3405), - [anon_sym_set] = ACTIONS(3405), - [anon_sym_declare] = ACTIONS(3405), - [anon_sym_public] = ACTIONS(3405), - [anon_sym_private] = ACTIONS(3405), - [anon_sym_protected] = ACTIONS(3405), - [anon_sym_override] = ACTIONS(3405), - [anon_sym_module] = ACTIONS(3405), - [anon_sym_any] = ACTIONS(3405), - [anon_sym_number] = ACTIONS(3405), - [anon_sym_boolean] = ACTIONS(3405), - [anon_sym_string] = ACTIONS(3405), - [anon_sym_symbol] = ACTIONS(3405), - [anon_sym_object] = ACTIONS(3405), - [anon_sym_abstract] = ACTIONS(3405), - [anon_sym_interface] = ACTIONS(3405), - [anon_sym_enum] = ACTIONS(3405), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, [1393] = { [sym_comment] = STATE(1393), - [ts_builtin_sym_end] = ACTIONS(3575), - [sym_identifier] = ACTIONS(3403), - [anon_sym_export] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_namespace] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_typeof] = ACTIONS(3403), - [anon_sym_import] = ACTIONS(3403), - [anon_sym_with] = ACTIONS(3403), - [anon_sym_var] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_else] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_switch] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_await] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_debugger] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_throw] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LTtemplate_GT] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_class] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_using] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_void] = ACTIONS(3403), - [anon_sym_delete] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(3403), + [ts_builtin_sym_end] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_else] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3403), - [sym_number] = ACTIONS(3403), - [sym_private_property_identifier] = ACTIONS(3403), - [sym_this] = ACTIONS(3403), - [sym_super] = ACTIONS(3403), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [sym_null] = ACTIONS(3403), - [sym_undefined] = ACTIONS(3403), - [anon_sym_AT] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3403), - [anon_sym_readonly] = ACTIONS(3403), - [anon_sym_get] = ACTIONS(3403), - [anon_sym_set] = ACTIONS(3403), - [anon_sym_declare] = ACTIONS(3403), - [anon_sym_public] = ACTIONS(3403), - [anon_sym_private] = ACTIONS(3403), - [anon_sym_protected] = ACTIONS(3403), - [anon_sym_override] = ACTIONS(3403), - [anon_sym_module] = ACTIONS(3403), - [anon_sym_any] = ACTIONS(3403), - [anon_sym_number] = ACTIONS(3403), - [anon_sym_boolean] = ACTIONS(3403), - [anon_sym_string] = ACTIONS(3403), - [anon_sym_symbol] = ACTIONS(3403), - [anon_sym_object] = ACTIONS(3403), - [anon_sym_abstract] = ACTIONS(3403), - [anon_sym_interface] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, [1394] = { [sym_comment] = STATE(1394), - [sym_identifier] = ACTIONS(3441), - [anon_sym_export] = ACTIONS(3441), - [anon_sym_default] = ACTIONS(3441), - [anon_sym_type] = ACTIONS(3441), - [anon_sym_namespace] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_RBRACE] = ACTIONS(3441), - [anon_sym_typeof] = ACTIONS(3441), - [anon_sym_import] = ACTIONS(3441), - [anon_sym_with] = ACTIONS(3441), - [anon_sym_var] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_const] = ACTIONS(3441), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_await] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_break] = ACTIONS(3441), - [anon_sym_continue] = ACTIONS(3441), - [anon_sym_debugger] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_throw] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_case] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LTtemplate_GT] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_SQUOTE] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_async] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_using] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_SLASH] = ACTIONS(3441), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_void] = ACTIONS(3441), - [anon_sym_delete] = ACTIONS(3441), - [anon_sym_PLUS_PLUS] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3441), + [ts_builtin_sym_end] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_else] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3441), - [sym_number] = ACTIONS(3441), - [sym_private_property_identifier] = ACTIONS(3441), - [sym_this] = ACTIONS(3441), - [sym_super] = ACTIONS(3441), - [sym_true] = ACTIONS(3441), - [sym_false] = ACTIONS(3441), - [sym_null] = ACTIONS(3441), - [sym_undefined] = ACTIONS(3441), - [anon_sym_AT] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_readonly] = ACTIONS(3441), - [anon_sym_get] = ACTIONS(3441), - [anon_sym_set] = ACTIONS(3441), - [anon_sym_declare] = ACTIONS(3441), - [anon_sym_public] = ACTIONS(3441), - [anon_sym_private] = ACTIONS(3441), - [anon_sym_protected] = ACTIONS(3441), - [anon_sym_override] = ACTIONS(3441), - [anon_sym_module] = ACTIONS(3441), - [anon_sym_any] = ACTIONS(3441), - [anon_sym_number] = ACTIONS(3441), - [anon_sym_boolean] = ACTIONS(3441), - [anon_sym_string] = ACTIONS(3441), - [anon_sym_symbol] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_abstract] = ACTIONS(3441), - [anon_sym_interface] = ACTIONS(3441), - [anon_sym_enum] = ACTIONS(3441), - [sym_html_comment] = ACTIONS(5), - }, - [1395] = { - [sym_comment] = STATE(1395), - [ts_builtin_sym_end] = ACTIONS(3575), - [sym_identifier] = ACTIONS(3403), - [anon_sym_export] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_namespace] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_typeof] = ACTIONS(3403), - [anon_sym_import] = ACTIONS(3403), - [anon_sym_with] = ACTIONS(3403), - [anon_sym_var] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_else] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_switch] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_await] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_debugger] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_throw] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LTtemplate_GT] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_class] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_using] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_void] = ACTIONS(3403), - [anon_sym_delete] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(3403), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), + [sym_html_comment] = ACTIONS(5), + }, + [1395] = { + [sym_comment] = STATE(1395), + [sym_identifier] = ACTIONS(3245), + [anon_sym_export] = ACTIONS(3245), + [anon_sym_default] = ACTIONS(3245), + [anon_sym_type] = ACTIONS(3245), + [anon_sym_namespace] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_RBRACE] = ACTIONS(3245), + [anon_sym_typeof] = ACTIONS(3245), + [anon_sym_import] = ACTIONS(3245), + [anon_sym_with] = ACTIONS(3245), + [anon_sym_var] = ACTIONS(3245), + [anon_sym_let] = ACTIONS(3245), + [anon_sym_const] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_switch] = ACTIONS(3245), + [anon_sym_for] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_await] = ACTIONS(3245), + [anon_sym_while] = ACTIONS(3245), + [anon_sym_do] = ACTIONS(3245), + [anon_sym_try] = ACTIONS(3245), + [anon_sym_break] = ACTIONS(3245), + [anon_sym_continue] = ACTIONS(3245), + [anon_sym_debugger] = ACTIONS(3245), + [anon_sym_return] = ACTIONS(3245), + [anon_sym_throw] = ACTIONS(3245), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_case] = ACTIONS(3245), + [anon_sym_yield] = ACTIONS(3245), + [anon_sym_LBRACK] = ACTIONS(3245), + [anon_sym_LTtemplate_GT] = ACTIONS(3245), + [anon_sym_DQUOTE] = ACTIONS(3245), + [anon_sym_SQUOTE] = ACTIONS(3245), + [anon_sym_class] = ACTIONS(3245), + [anon_sym_async] = ACTIONS(3245), + [anon_sym_function] = ACTIONS(3245), + [anon_sym_new] = ACTIONS(3245), + [anon_sym_using] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_void] = ACTIONS(3245), + [anon_sym_delete] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3403), - [sym_number] = ACTIONS(3403), - [sym_private_property_identifier] = ACTIONS(3403), - [sym_this] = ACTIONS(3403), - [sym_super] = ACTIONS(3403), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [sym_null] = ACTIONS(3403), - [sym_undefined] = ACTIONS(3403), - [anon_sym_AT] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3403), - [anon_sym_readonly] = ACTIONS(3403), - [anon_sym_get] = ACTIONS(3403), - [anon_sym_set] = ACTIONS(3403), - [anon_sym_declare] = ACTIONS(3403), - [anon_sym_public] = ACTIONS(3403), - [anon_sym_private] = ACTIONS(3403), - [anon_sym_protected] = ACTIONS(3403), - [anon_sym_override] = ACTIONS(3403), - [anon_sym_module] = ACTIONS(3403), - [anon_sym_any] = ACTIONS(3403), - [anon_sym_number] = ACTIONS(3403), - [anon_sym_boolean] = ACTIONS(3403), - [anon_sym_string] = ACTIONS(3403), - [anon_sym_symbol] = ACTIONS(3403), - [anon_sym_object] = ACTIONS(3403), - [anon_sym_abstract] = ACTIONS(3403), - [anon_sym_interface] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), + [anon_sym_BQUOTE] = ACTIONS(3245), + [sym_number] = ACTIONS(3245), + [sym_private_property_identifier] = ACTIONS(3245), + [sym_this] = ACTIONS(3245), + [sym_super] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_null] = ACTIONS(3245), + [sym_undefined] = ACTIONS(3245), + [anon_sym_AT] = ACTIONS(3245), + [anon_sym_static] = ACTIONS(3245), + [anon_sym_readonly] = ACTIONS(3245), + [anon_sym_get] = ACTIONS(3245), + [anon_sym_set] = ACTIONS(3245), + [anon_sym_declare] = ACTIONS(3245), + [anon_sym_public] = ACTIONS(3245), + [anon_sym_private] = ACTIONS(3245), + [anon_sym_protected] = ACTIONS(3245), + [anon_sym_override] = ACTIONS(3245), + [anon_sym_module] = ACTIONS(3245), + [anon_sym_any] = ACTIONS(3245), + [anon_sym_number] = ACTIONS(3245), + [anon_sym_boolean] = ACTIONS(3245), + [anon_sym_string] = ACTIONS(3245), + [anon_sym_symbol] = ACTIONS(3245), + [anon_sym_object] = ACTIONS(3245), + [anon_sym_abstract] = ACTIONS(3245), + [anon_sym_interface] = ACTIONS(3245), + [anon_sym_enum] = ACTIONS(3245), [sym_html_comment] = ACTIONS(5), }, [1396] = { [sym_comment] = STATE(1396), - [ts_builtin_sym_end] = ACTIONS(2408), - [sym_identifier] = ACTIONS(2208), - [anon_sym_export] = ACTIONS(2208), - [anon_sym_type] = ACTIONS(2208), - [anon_sym_namespace] = ACTIONS(2208), - [anon_sym_LBRACE] = ACTIONS(2208), - [anon_sym_RBRACE] = ACTIONS(2208), - [anon_sym_typeof] = ACTIONS(2208), - [anon_sym_import] = ACTIONS(2208), - [anon_sym_with] = ACTIONS(2208), - [anon_sym_var] = ACTIONS(2208), - [anon_sym_let] = ACTIONS(2208), - [anon_sym_const] = ACTIONS(2208), - [anon_sym_BANG] = ACTIONS(2208), - [anon_sym_if] = ACTIONS(2208), - [anon_sym_switch] = ACTIONS(2208), - [anon_sym_for] = ACTIONS(2208), - [anon_sym_LPAREN] = ACTIONS(2208), - [anon_sym_await] = ACTIONS(2208), - [anon_sym_while] = ACTIONS(2208), - [anon_sym_do] = ACTIONS(2208), - [anon_sym_try] = ACTIONS(2208), - [anon_sym_break] = ACTIONS(2208), - [anon_sym_continue] = ACTIONS(2208), - [anon_sym_debugger] = ACTIONS(2208), - [anon_sym_return] = ACTIONS(2208), - [anon_sym_throw] = ACTIONS(2208), - [anon_sym_SEMI] = ACTIONS(2208), - [anon_sym_yield] = ACTIONS(2208), - [anon_sym_LBRACK] = ACTIONS(2208), - [anon_sym_LTtemplate_GT] = ACTIONS(2208), - [anon_sym_DQUOTE] = ACTIONS(2208), - [anon_sym_SQUOTE] = ACTIONS(2208), - [anon_sym_class] = ACTIONS(2208), - [anon_sym_async] = ACTIONS(2208), - [anon_sym_function] = ACTIONS(2208), - [anon_sym_new] = ACTIONS(2208), - [anon_sym_using] = ACTIONS(2208), - [anon_sym_PLUS] = ACTIONS(2208), - [anon_sym_DASH] = ACTIONS(2208), - [anon_sym_SLASH] = ACTIONS(2208), - [anon_sym_LT] = ACTIONS(2208), - [anon_sym_TILDE] = ACTIONS(2208), - [anon_sym_void] = ACTIONS(2208), - [anon_sym_delete] = ACTIONS(2208), - [anon_sym_PLUS_PLUS] = ACTIONS(2208), - [anon_sym_DASH_DASH] = ACTIONS(2208), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2208), - [sym_number] = ACTIONS(2208), - [sym_private_property_identifier] = ACTIONS(2208), - [sym_this] = ACTIONS(2208), - [sym_super] = ACTIONS(2208), - [sym_true] = ACTIONS(2208), - [sym_false] = ACTIONS(2208), - [sym_null] = ACTIONS(2208), - [sym_undefined] = ACTIONS(2208), - [anon_sym_AT] = ACTIONS(2208), - [anon_sym_static] = ACTIONS(2208), - [anon_sym_readonly] = ACTIONS(2208), - [anon_sym_get] = ACTIONS(2208), - [anon_sym_set] = ACTIONS(2208), - [anon_sym_declare] = ACTIONS(2208), - [anon_sym_public] = ACTIONS(2208), - [anon_sym_private] = ACTIONS(2208), - [anon_sym_protected] = ACTIONS(2208), - [anon_sym_override] = ACTIONS(2208), - [anon_sym_module] = ACTIONS(2208), - [anon_sym_any] = ACTIONS(2208), - [anon_sym_number] = ACTIONS(2208), - [anon_sym_boolean] = ACTIONS(2208), - [anon_sym_string] = ACTIONS(2208), - [anon_sym_symbol] = ACTIONS(2208), - [anon_sym_object] = ACTIONS(2208), - [anon_sym_abstract] = ACTIONS(2208), - [anon_sym_interface] = ACTIONS(2208), - [anon_sym_enum] = ACTIONS(2208), - [sym__automatic_semicolon] = ACTIONS(2476), + [ts_builtin_sym_end] = ACTIONS(3603), + [sym_identifier] = ACTIONS(3385), + [anon_sym_export] = ACTIONS(3385), + [anon_sym_type] = ACTIONS(3385), + [anon_sym_namespace] = ACTIONS(3385), + [anon_sym_LBRACE] = ACTIONS(3385), + [anon_sym_RBRACE] = ACTIONS(3385), + [anon_sym_typeof] = ACTIONS(3385), + [anon_sym_import] = ACTIONS(3385), + [anon_sym_with] = ACTIONS(3385), + [anon_sym_var] = ACTIONS(3385), + [anon_sym_let] = ACTIONS(3385), + [anon_sym_const] = ACTIONS(3385), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_else] = ACTIONS(3385), + [anon_sym_if] = ACTIONS(3385), + [anon_sym_switch] = ACTIONS(3385), + [anon_sym_for] = ACTIONS(3385), + [anon_sym_LPAREN] = ACTIONS(3385), + [anon_sym_await] = ACTIONS(3385), + [anon_sym_while] = ACTIONS(3385), + [anon_sym_do] = ACTIONS(3385), + [anon_sym_try] = ACTIONS(3385), + [anon_sym_break] = ACTIONS(3385), + [anon_sym_continue] = ACTIONS(3385), + [anon_sym_debugger] = ACTIONS(3385), + [anon_sym_return] = ACTIONS(3385), + [anon_sym_throw] = ACTIONS(3385), + [anon_sym_SEMI] = ACTIONS(3385), + [anon_sym_yield] = ACTIONS(3385), + [anon_sym_LBRACK] = ACTIONS(3385), + [anon_sym_LTtemplate_GT] = ACTIONS(3385), + [anon_sym_DQUOTE] = ACTIONS(3385), + [anon_sym_SQUOTE] = ACTIONS(3385), + [anon_sym_class] = ACTIONS(3385), + [anon_sym_async] = ACTIONS(3385), + [anon_sym_function] = ACTIONS(3385), + [anon_sym_new] = ACTIONS(3385), + [anon_sym_using] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_SLASH] = ACTIONS(3385), + [anon_sym_LT] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(3385), + [anon_sym_void] = ACTIONS(3385), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_PLUS_PLUS] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3385), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3385), + [sym_number] = ACTIONS(3385), + [sym_private_property_identifier] = ACTIONS(3385), + [sym_this] = ACTIONS(3385), + [sym_super] = ACTIONS(3385), + [sym_true] = ACTIONS(3385), + [sym_false] = ACTIONS(3385), + [sym_null] = ACTIONS(3385), + [sym_undefined] = ACTIONS(3385), + [anon_sym_AT] = ACTIONS(3385), + [anon_sym_static] = ACTIONS(3385), + [anon_sym_readonly] = ACTIONS(3385), + [anon_sym_get] = ACTIONS(3385), + [anon_sym_set] = ACTIONS(3385), + [anon_sym_declare] = ACTIONS(3385), + [anon_sym_public] = ACTIONS(3385), + [anon_sym_private] = ACTIONS(3385), + [anon_sym_protected] = ACTIONS(3385), + [anon_sym_override] = ACTIONS(3385), + [anon_sym_module] = ACTIONS(3385), + [anon_sym_any] = ACTIONS(3385), + [anon_sym_number] = ACTIONS(3385), + [anon_sym_boolean] = ACTIONS(3385), + [anon_sym_string] = ACTIONS(3385), + [anon_sym_symbol] = ACTIONS(3385), + [anon_sym_object] = ACTIONS(3385), + [anon_sym_abstract] = ACTIONS(3385), + [anon_sym_interface] = ACTIONS(3385), + [anon_sym_enum] = ACTIONS(3385), [sym_html_comment] = ACTIONS(5), }, [1397] = { [sym_comment] = STATE(1397), - [ts_builtin_sym_end] = ACTIONS(3577), - [sym_identifier] = ACTIONS(3459), - [anon_sym_export] = ACTIONS(3459), - [anon_sym_type] = ACTIONS(3459), - [anon_sym_namespace] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_typeof] = ACTIONS(3459), - [anon_sym_import] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3459), - [anon_sym_const] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_else] = ACTIONS(3459), - [anon_sym_if] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_await] = ACTIONS(3459), - [anon_sym_while] = ACTIONS(3459), - [anon_sym_do] = ACTIONS(3459), - [anon_sym_try] = ACTIONS(3459), - [anon_sym_break] = ACTIONS(3459), - [anon_sym_continue] = ACTIONS(3459), - [anon_sym_debugger] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3459), - [anon_sym_throw] = ACTIONS(3459), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LTtemplate_GT] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_class] = ACTIONS(3459), - [anon_sym_async] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3459), - [anon_sym_using] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_void] = ACTIONS(3459), - [anon_sym_delete] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3459), - [sym_number] = ACTIONS(3459), - [sym_private_property_identifier] = ACTIONS(3459), - [sym_this] = ACTIONS(3459), - [sym_super] = ACTIONS(3459), - [sym_true] = ACTIONS(3459), - [sym_false] = ACTIONS(3459), - [sym_null] = ACTIONS(3459), - [sym_undefined] = ACTIONS(3459), - [anon_sym_AT] = ACTIONS(3459), - [anon_sym_static] = ACTIONS(3459), - [anon_sym_readonly] = ACTIONS(3459), - [anon_sym_get] = ACTIONS(3459), - [anon_sym_set] = ACTIONS(3459), - [anon_sym_declare] = ACTIONS(3459), - [anon_sym_public] = ACTIONS(3459), - [anon_sym_private] = ACTIONS(3459), - [anon_sym_protected] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3459), - [anon_sym_any] = ACTIONS(3459), - [anon_sym_number] = ACTIONS(3459), - [anon_sym_boolean] = ACTIONS(3459), - [anon_sym_string] = ACTIONS(3459), - [anon_sym_symbol] = ACTIONS(3459), - [anon_sym_object] = ACTIONS(3459), - [anon_sym_abstract] = ACTIONS(3459), - [anon_sym_interface] = ACTIONS(3459), - [anon_sym_enum] = ACTIONS(3459), + [ts_builtin_sym_end] = ACTIONS(3605), + [sym_identifier] = ACTIONS(3383), + [anon_sym_export] = ACTIONS(3383), + [anon_sym_type] = ACTIONS(3383), + [anon_sym_namespace] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_RBRACE] = ACTIONS(3383), + [anon_sym_typeof] = ACTIONS(3383), + [anon_sym_import] = ACTIONS(3383), + [anon_sym_with] = ACTIONS(3383), + [anon_sym_var] = ACTIONS(3383), + [anon_sym_let] = ACTIONS(3383), + [anon_sym_const] = ACTIONS(3383), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_else] = ACTIONS(3383), + [anon_sym_if] = ACTIONS(3383), + [anon_sym_switch] = ACTIONS(3383), + [anon_sym_for] = ACTIONS(3383), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_await] = ACTIONS(3383), + [anon_sym_while] = ACTIONS(3383), + [anon_sym_do] = ACTIONS(3383), + [anon_sym_try] = ACTIONS(3383), + [anon_sym_break] = ACTIONS(3383), + [anon_sym_continue] = ACTIONS(3383), + [anon_sym_debugger] = ACTIONS(3383), + [anon_sym_return] = ACTIONS(3383), + [anon_sym_throw] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3383), + [anon_sym_yield] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_LTtemplate_GT] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [anon_sym_SQUOTE] = ACTIONS(3383), + [anon_sym_class] = ACTIONS(3383), + [anon_sym_async] = ACTIONS(3383), + [anon_sym_function] = ACTIONS(3383), + [anon_sym_new] = ACTIONS(3383), + [anon_sym_using] = ACTIONS(3383), + [anon_sym_PLUS] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3383), + [anon_sym_SLASH] = ACTIONS(3383), + [anon_sym_LT] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_void] = ACTIONS(3383), + [anon_sym_delete] = ACTIONS(3383), + [anon_sym_PLUS_PLUS] = ACTIONS(3383), + [anon_sym_DASH_DASH] = ACTIONS(3383), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3383), + [sym_number] = ACTIONS(3383), + [sym_private_property_identifier] = ACTIONS(3383), + [sym_this] = ACTIONS(3383), + [sym_super] = ACTIONS(3383), + [sym_true] = ACTIONS(3383), + [sym_false] = ACTIONS(3383), + [sym_null] = ACTIONS(3383), + [sym_undefined] = ACTIONS(3383), + [anon_sym_AT] = ACTIONS(3383), + [anon_sym_static] = ACTIONS(3383), + [anon_sym_readonly] = ACTIONS(3383), + [anon_sym_get] = ACTIONS(3383), + [anon_sym_set] = ACTIONS(3383), + [anon_sym_declare] = ACTIONS(3383), + [anon_sym_public] = ACTIONS(3383), + [anon_sym_private] = ACTIONS(3383), + [anon_sym_protected] = ACTIONS(3383), + [anon_sym_override] = ACTIONS(3383), + [anon_sym_module] = ACTIONS(3383), + [anon_sym_any] = ACTIONS(3383), + [anon_sym_number] = ACTIONS(3383), + [anon_sym_boolean] = ACTIONS(3383), + [anon_sym_string] = ACTIONS(3383), + [anon_sym_symbol] = ACTIONS(3383), + [anon_sym_object] = ACTIONS(3383), + [anon_sym_abstract] = ACTIONS(3383), + [anon_sym_interface] = ACTIONS(3383), + [anon_sym_enum] = ACTIONS(3383), [sym_html_comment] = ACTIONS(5), }, [1398] = { [sym_comment] = STATE(1398), - [sym_identifier] = ACTIONS(3451), - [anon_sym_export] = ACTIONS(3451), - [anon_sym_default] = ACTIONS(3451), - [anon_sym_type] = ACTIONS(3451), - [anon_sym_namespace] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3451), - [anon_sym_typeof] = ACTIONS(3451), - [anon_sym_import] = ACTIONS(3451), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_var] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_const] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_switch] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_await] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_break] = ACTIONS(3451), - [anon_sym_continue] = ACTIONS(3451), - [anon_sym_debugger] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_throw] = ACTIONS(3451), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym_case] = ACTIONS(3451), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LTtemplate_GT] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_class] = ACTIONS(3451), - [anon_sym_async] = ACTIONS(3451), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_using] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_SLASH] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_void] = ACTIONS(3451), - [anon_sym_delete] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_DASH_DASH] = ACTIONS(3451), + [ts_builtin_sym_end] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_else] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3451), - [sym_number] = ACTIONS(3451), - [sym_private_property_identifier] = ACTIONS(3451), - [sym_this] = ACTIONS(3451), - [sym_super] = ACTIONS(3451), - [sym_true] = ACTIONS(3451), - [sym_false] = ACTIONS(3451), - [sym_null] = ACTIONS(3451), - [sym_undefined] = ACTIONS(3451), - [anon_sym_AT] = ACTIONS(3451), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3451), - [anon_sym_get] = ACTIONS(3451), - [anon_sym_set] = ACTIONS(3451), - [anon_sym_declare] = ACTIONS(3451), - [anon_sym_public] = ACTIONS(3451), - [anon_sym_private] = ACTIONS(3451), - [anon_sym_protected] = ACTIONS(3451), - [anon_sym_override] = ACTIONS(3451), - [anon_sym_module] = ACTIONS(3451), - [anon_sym_any] = ACTIONS(3451), - [anon_sym_number] = ACTIONS(3451), - [anon_sym_boolean] = ACTIONS(3451), - [anon_sym_string] = ACTIONS(3451), - [anon_sym_symbol] = ACTIONS(3451), - [anon_sym_object] = ACTIONS(3451), - [anon_sym_abstract] = ACTIONS(3451), - [anon_sym_interface] = ACTIONS(3451), - [anon_sym_enum] = ACTIONS(3451), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, [1399] = { [sym_comment] = STATE(1399), - [ts_builtin_sym_end] = ACTIONS(3579), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), + [ts_builtin_sym_end] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_else] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, [1400] = { [sym_comment] = STATE(1400), - [ts_builtin_sym_end] = ACTIONS(3579), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), + [sym_identifier] = ACTIONS(3293), + [anon_sym_export] = ACTIONS(3293), + [anon_sym_default] = ACTIONS(3293), + [anon_sym_type] = ACTIONS(3293), + [anon_sym_namespace] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_typeof] = ACTIONS(3293), + [anon_sym_import] = ACTIONS(3293), + [anon_sym_with] = ACTIONS(3293), + [anon_sym_var] = ACTIONS(3293), + [anon_sym_let] = ACTIONS(3293), + [anon_sym_const] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_switch] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_await] = ACTIONS(3293), + [anon_sym_while] = ACTIONS(3293), + [anon_sym_do] = ACTIONS(3293), + [anon_sym_try] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_debugger] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_throw] = ACTIONS(3293), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_case] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_LTtemplate_GT] = ACTIONS(3293), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_SQUOTE] = ACTIONS(3293), + [anon_sym_class] = ACTIONS(3293), + [anon_sym_async] = ACTIONS(3293), + [anon_sym_function] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3293), + [anon_sym_using] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_SLASH] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_void] = ACTIONS(3293), + [anon_sym_delete] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), + [anon_sym_BQUOTE] = ACTIONS(3293), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [sym_this] = ACTIONS(3293), + [sym_super] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_null] = ACTIONS(3293), + [sym_undefined] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(3293), + [anon_sym_static] = ACTIONS(3293), + [anon_sym_readonly] = ACTIONS(3293), + [anon_sym_get] = ACTIONS(3293), + [anon_sym_set] = ACTIONS(3293), + [anon_sym_declare] = ACTIONS(3293), + [anon_sym_public] = ACTIONS(3293), + [anon_sym_private] = ACTIONS(3293), + [anon_sym_protected] = ACTIONS(3293), + [anon_sym_override] = ACTIONS(3293), + [anon_sym_module] = ACTIONS(3293), + [anon_sym_any] = ACTIONS(3293), + [anon_sym_number] = ACTIONS(3293), + [anon_sym_boolean] = ACTIONS(3293), + [anon_sym_string] = ACTIONS(3293), + [anon_sym_symbol] = ACTIONS(3293), + [anon_sym_object] = ACTIONS(3293), + [anon_sym_abstract] = ACTIONS(3293), + [anon_sym_interface] = ACTIONS(3293), + [anon_sym_enum] = ACTIONS(3293), [sym_html_comment] = ACTIONS(5), }, [1401] = { [sym_comment] = STATE(1401), - [ts_builtin_sym_end] = ACTIONS(3579), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_else] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), + [ts_builtin_sym_end] = ACTIONS(3461), + [sym_identifier] = ACTIONS(3211), + [anon_sym_export] = ACTIONS(3211), + [anon_sym_type] = ACTIONS(3211), + [anon_sym_namespace] = ACTIONS(3211), + [anon_sym_LBRACE] = ACTIONS(3211), + [anon_sym_RBRACE] = ACTIONS(3211), + [anon_sym_typeof] = ACTIONS(3211), + [anon_sym_import] = ACTIONS(3211), + [anon_sym_with] = ACTIONS(3211), + [anon_sym_var] = ACTIONS(3211), + [anon_sym_let] = ACTIONS(3211), + [anon_sym_const] = ACTIONS(3211), + [anon_sym_BANG] = ACTIONS(3211), + [anon_sym_if] = ACTIONS(3211), + [anon_sym_switch] = ACTIONS(3211), + [anon_sym_for] = ACTIONS(3211), + [anon_sym_LPAREN] = ACTIONS(3211), + [anon_sym_await] = ACTIONS(3211), + [anon_sym_while] = ACTIONS(3211), + [anon_sym_do] = ACTIONS(3211), + [anon_sym_try] = ACTIONS(3211), + [anon_sym_break] = ACTIONS(3211), + [anon_sym_continue] = ACTIONS(3211), + [anon_sym_debugger] = ACTIONS(3211), + [anon_sym_return] = ACTIONS(3211), + [anon_sym_throw] = ACTIONS(3211), + [anon_sym_SEMI] = ACTIONS(3211), + [anon_sym_finally] = ACTIONS(3211), + [anon_sym_yield] = ACTIONS(3211), + [anon_sym_LBRACK] = ACTIONS(3211), + [anon_sym_LTtemplate_GT] = ACTIONS(3211), + [anon_sym_DQUOTE] = ACTIONS(3211), + [anon_sym_SQUOTE] = ACTIONS(3211), + [anon_sym_class] = ACTIONS(3211), + [anon_sym_async] = ACTIONS(3211), + [anon_sym_function] = ACTIONS(3211), + [anon_sym_new] = ACTIONS(3211), + [anon_sym_using] = ACTIONS(3211), + [anon_sym_PLUS] = ACTIONS(3211), + [anon_sym_DASH] = ACTIONS(3211), + [anon_sym_SLASH] = ACTIONS(3211), + [anon_sym_LT] = ACTIONS(3211), + [anon_sym_TILDE] = ACTIONS(3211), + [anon_sym_void] = ACTIONS(3211), + [anon_sym_delete] = ACTIONS(3211), + [anon_sym_PLUS_PLUS] = ACTIONS(3211), + [anon_sym_DASH_DASH] = ACTIONS(3211), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3211), + [sym_number] = ACTIONS(3211), + [sym_private_property_identifier] = ACTIONS(3211), + [sym_this] = ACTIONS(3211), + [sym_super] = ACTIONS(3211), + [sym_true] = ACTIONS(3211), + [sym_false] = ACTIONS(3211), + [sym_null] = ACTIONS(3211), + [sym_undefined] = ACTIONS(3211), + [anon_sym_AT] = ACTIONS(3211), + [anon_sym_static] = ACTIONS(3211), + [anon_sym_readonly] = ACTIONS(3211), + [anon_sym_get] = ACTIONS(3211), + [anon_sym_set] = ACTIONS(3211), + [anon_sym_declare] = ACTIONS(3211), + [anon_sym_public] = ACTIONS(3211), + [anon_sym_private] = ACTIONS(3211), + [anon_sym_protected] = ACTIONS(3211), + [anon_sym_override] = ACTIONS(3211), + [anon_sym_module] = ACTIONS(3211), + [anon_sym_any] = ACTIONS(3211), + [anon_sym_number] = ACTIONS(3211), + [anon_sym_boolean] = ACTIONS(3211), + [anon_sym_string] = ACTIONS(3211), + [anon_sym_symbol] = ACTIONS(3211), + [anon_sym_object] = ACTIONS(3211), + [anon_sym_abstract] = ACTIONS(3211), + [anon_sym_interface] = ACTIONS(3211), + [anon_sym_enum] = ACTIONS(3211), [sym_html_comment] = ACTIONS(5), }, [1402] = { [sym_comment] = STATE(1402), - [ts_builtin_sym_end] = ACTIONS(3581), - [sym_identifier] = ACTIONS(3271), - [anon_sym_export] = ACTIONS(3271), - [anon_sym_type] = ACTIONS(3271), - [anon_sym_namespace] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_RBRACE] = ACTIONS(3271), - [anon_sym_typeof] = ACTIONS(3271), - [anon_sym_import] = ACTIONS(3271), - [anon_sym_with] = ACTIONS(3271), - [anon_sym_var] = ACTIONS(3271), - [anon_sym_let] = ACTIONS(3271), - [anon_sym_const] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_else] = ACTIONS(3271), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_switch] = ACTIONS(3271), - [anon_sym_for] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_await] = ACTIONS(3271), - [anon_sym_while] = ACTIONS(3271), - [anon_sym_do] = ACTIONS(3271), - [anon_sym_try] = ACTIONS(3271), - [anon_sym_break] = ACTIONS(3271), - [anon_sym_continue] = ACTIONS(3271), - [anon_sym_debugger] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3271), - [anon_sym_throw] = ACTIONS(3271), - [anon_sym_SEMI] = ACTIONS(3271), - [anon_sym_yield] = ACTIONS(3271), - [anon_sym_LBRACK] = ACTIONS(3271), - [anon_sym_LTtemplate_GT] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3271), - [anon_sym_SQUOTE] = ACTIONS(3271), - [anon_sym_class] = ACTIONS(3271), - [anon_sym_async] = ACTIONS(3271), - [anon_sym_function] = ACTIONS(3271), - [anon_sym_new] = ACTIONS(3271), - [anon_sym_using] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(3271), - [anon_sym_SLASH] = ACTIONS(3271), - [anon_sym_LT] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_void] = ACTIONS(3271), - [anon_sym_delete] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), + [ts_builtin_sym_end] = ACTIONS(3607), + [sym_identifier] = ACTIONS(3319), + [anon_sym_export] = ACTIONS(3319), + [anon_sym_type] = ACTIONS(3319), + [anon_sym_namespace] = ACTIONS(3319), + [anon_sym_LBRACE] = ACTIONS(3319), + [anon_sym_RBRACE] = ACTIONS(3319), + [anon_sym_typeof] = ACTIONS(3319), + [anon_sym_import] = ACTIONS(3319), + [anon_sym_with] = ACTIONS(3319), + [anon_sym_var] = ACTIONS(3319), + [anon_sym_let] = ACTIONS(3319), + [anon_sym_const] = ACTIONS(3319), + [anon_sym_BANG] = ACTIONS(3319), + [anon_sym_else] = ACTIONS(3319), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_switch] = ACTIONS(3319), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3319), + [anon_sym_await] = ACTIONS(3319), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_do] = ACTIONS(3319), + [anon_sym_try] = ACTIONS(3319), + [anon_sym_break] = ACTIONS(3319), + [anon_sym_continue] = ACTIONS(3319), + [anon_sym_debugger] = ACTIONS(3319), + [anon_sym_return] = ACTIONS(3319), + [anon_sym_throw] = ACTIONS(3319), + [anon_sym_SEMI] = ACTIONS(3319), + [anon_sym_yield] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3319), + [anon_sym_LTtemplate_GT] = ACTIONS(3319), + [anon_sym_DQUOTE] = ACTIONS(3319), + [anon_sym_SQUOTE] = ACTIONS(3319), + [anon_sym_class] = ACTIONS(3319), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_function] = ACTIONS(3319), + [anon_sym_new] = ACTIONS(3319), + [anon_sym_using] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_TILDE] = ACTIONS(3319), + [anon_sym_void] = ACTIONS(3319), + [anon_sym_delete] = ACTIONS(3319), + [anon_sym_PLUS_PLUS] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3319), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3271), - [sym_number] = ACTIONS(3271), - [sym_private_property_identifier] = ACTIONS(3271), - [sym_this] = ACTIONS(3271), - [sym_super] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_null] = ACTIONS(3271), - [sym_undefined] = ACTIONS(3271), - [anon_sym_AT] = ACTIONS(3271), - [anon_sym_static] = ACTIONS(3271), - [anon_sym_readonly] = ACTIONS(3271), - [anon_sym_get] = ACTIONS(3271), - [anon_sym_set] = ACTIONS(3271), - [anon_sym_declare] = ACTIONS(3271), - [anon_sym_public] = ACTIONS(3271), - [anon_sym_private] = ACTIONS(3271), - [anon_sym_protected] = ACTIONS(3271), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3271), - [anon_sym_any] = ACTIONS(3271), - [anon_sym_number] = ACTIONS(3271), - [anon_sym_boolean] = ACTIONS(3271), - [anon_sym_string] = ACTIONS(3271), - [anon_sym_symbol] = ACTIONS(3271), - [anon_sym_object] = ACTIONS(3271), - [anon_sym_abstract] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3271), - [anon_sym_enum] = ACTIONS(3271), + [anon_sym_BQUOTE] = ACTIONS(3319), + [sym_number] = ACTIONS(3319), + [sym_private_property_identifier] = ACTIONS(3319), + [sym_this] = ACTIONS(3319), + [sym_super] = ACTIONS(3319), + [sym_true] = ACTIONS(3319), + [sym_false] = ACTIONS(3319), + [sym_null] = ACTIONS(3319), + [sym_undefined] = ACTIONS(3319), + [anon_sym_AT] = ACTIONS(3319), + [anon_sym_static] = ACTIONS(3319), + [anon_sym_readonly] = ACTIONS(3319), + [anon_sym_get] = ACTIONS(3319), + [anon_sym_set] = ACTIONS(3319), + [anon_sym_declare] = ACTIONS(3319), + [anon_sym_public] = ACTIONS(3319), + [anon_sym_private] = ACTIONS(3319), + [anon_sym_protected] = ACTIONS(3319), + [anon_sym_override] = ACTIONS(3319), + [anon_sym_module] = ACTIONS(3319), + [anon_sym_any] = ACTIONS(3319), + [anon_sym_number] = ACTIONS(3319), + [anon_sym_boolean] = ACTIONS(3319), + [anon_sym_string] = ACTIONS(3319), + [anon_sym_symbol] = ACTIONS(3319), + [anon_sym_object] = ACTIONS(3319), + [anon_sym_abstract] = ACTIONS(3319), + [anon_sym_interface] = ACTIONS(3319), + [anon_sym_enum] = ACTIONS(3319), [sym_html_comment] = ACTIONS(5), }, [1403] = { [sym_comment] = STATE(1403), - [ts_builtin_sym_end] = ACTIONS(3583), - [sym_identifier] = ACTIONS(3347), - [anon_sym_export] = ACTIONS(3347), - [anon_sym_type] = ACTIONS(3347), - [anon_sym_namespace] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_typeof] = ACTIONS(3347), - [anon_sym_import] = ACTIONS(3347), - [anon_sym_with] = ACTIONS(3347), - [anon_sym_var] = ACTIONS(3347), - [anon_sym_let] = ACTIONS(3347), - [anon_sym_const] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_else] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_switch] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_await] = ACTIONS(3347), - [anon_sym_while] = ACTIONS(3347), - [anon_sym_do] = ACTIONS(3347), - [anon_sym_try] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_debugger] = ACTIONS(3347), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_throw] = ACTIONS(3347), - [anon_sym_SEMI] = ACTIONS(3347), - [anon_sym_yield] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3347), - [anon_sym_LTtemplate_GT] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_SQUOTE] = ACTIONS(3347), - [anon_sym_class] = ACTIONS(3347), - [anon_sym_async] = ACTIONS(3347), - [anon_sym_function] = ACTIONS(3347), - [anon_sym_new] = ACTIONS(3347), - [anon_sym_using] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_void] = ACTIONS(3347), - [anon_sym_delete] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3347), - [anon_sym_DASH_DASH] = ACTIONS(3347), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3347), - [sym_number] = ACTIONS(3347), - [sym_private_property_identifier] = ACTIONS(3347), - [sym_this] = ACTIONS(3347), - [sym_super] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_null] = ACTIONS(3347), - [sym_undefined] = ACTIONS(3347), - [anon_sym_AT] = ACTIONS(3347), - [anon_sym_static] = ACTIONS(3347), - [anon_sym_readonly] = ACTIONS(3347), - [anon_sym_get] = ACTIONS(3347), - [anon_sym_set] = ACTIONS(3347), - [anon_sym_declare] = ACTIONS(3347), - [anon_sym_public] = ACTIONS(3347), - [anon_sym_private] = ACTIONS(3347), - [anon_sym_protected] = ACTIONS(3347), - [anon_sym_override] = ACTIONS(3347), - [anon_sym_module] = ACTIONS(3347), - [anon_sym_any] = ACTIONS(3347), - [anon_sym_number] = ACTIONS(3347), - [anon_sym_boolean] = ACTIONS(3347), - [anon_sym_string] = ACTIONS(3347), - [anon_sym_symbol] = ACTIONS(3347), - [anon_sym_object] = ACTIONS(3347), - [anon_sym_abstract] = ACTIONS(3347), - [anon_sym_interface] = ACTIONS(3347), - [anon_sym_enum] = ACTIONS(3347), + [sym_identifier] = ACTIONS(3391), + [anon_sym_export] = ACTIONS(3391), + [anon_sym_default] = ACTIONS(3391), + [anon_sym_type] = ACTIONS(3391), + [anon_sym_namespace] = ACTIONS(3391), + [anon_sym_LBRACE] = ACTIONS(3391), + [anon_sym_RBRACE] = ACTIONS(3391), + [anon_sym_typeof] = ACTIONS(3391), + [anon_sym_import] = ACTIONS(3391), + [anon_sym_with] = ACTIONS(3391), + [anon_sym_var] = ACTIONS(3391), + [anon_sym_let] = ACTIONS(3391), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_switch] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_LPAREN] = ACTIONS(3391), + [anon_sym_await] = ACTIONS(3391), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_do] = ACTIONS(3391), + [anon_sym_try] = ACTIONS(3391), + [anon_sym_break] = ACTIONS(3391), + [anon_sym_continue] = ACTIONS(3391), + [anon_sym_debugger] = ACTIONS(3391), + [anon_sym_return] = ACTIONS(3391), + [anon_sym_throw] = ACTIONS(3391), + [anon_sym_SEMI] = ACTIONS(3391), + [anon_sym_case] = ACTIONS(3391), + [anon_sym_yield] = ACTIONS(3391), + [anon_sym_LBRACK] = ACTIONS(3391), + [anon_sym_LTtemplate_GT] = ACTIONS(3391), + [anon_sym_DQUOTE] = ACTIONS(3391), + [anon_sym_SQUOTE] = ACTIONS(3391), + [anon_sym_class] = ACTIONS(3391), + [anon_sym_async] = ACTIONS(3391), + [anon_sym_function] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_using] = ACTIONS(3391), + [anon_sym_PLUS] = ACTIONS(3391), + [anon_sym_DASH] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(3391), + [anon_sym_void] = ACTIONS(3391), + [anon_sym_delete] = ACTIONS(3391), + [anon_sym_PLUS_PLUS] = ACTIONS(3391), + [anon_sym_DASH_DASH] = ACTIONS(3391), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3391), + [sym_number] = ACTIONS(3391), + [sym_private_property_identifier] = ACTIONS(3391), + [sym_this] = ACTIONS(3391), + [sym_super] = ACTIONS(3391), + [sym_true] = ACTIONS(3391), + [sym_false] = ACTIONS(3391), + [sym_null] = ACTIONS(3391), + [sym_undefined] = ACTIONS(3391), + [anon_sym_AT] = ACTIONS(3391), + [anon_sym_static] = ACTIONS(3391), + [anon_sym_readonly] = ACTIONS(3391), + [anon_sym_get] = ACTIONS(3391), + [anon_sym_set] = ACTIONS(3391), + [anon_sym_declare] = ACTIONS(3391), + [anon_sym_public] = ACTIONS(3391), + [anon_sym_private] = ACTIONS(3391), + [anon_sym_protected] = ACTIONS(3391), + [anon_sym_override] = ACTIONS(3391), + [anon_sym_module] = ACTIONS(3391), + [anon_sym_any] = ACTIONS(3391), + [anon_sym_number] = ACTIONS(3391), + [anon_sym_boolean] = ACTIONS(3391), + [anon_sym_string] = ACTIONS(3391), + [anon_sym_symbol] = ACTIONS(3391), + [anon_sym_object] = ACTIONS(3391), + [anon_sym_abstract] = ACTIONS(3391), + [anon_sym_interface] = ACTIONS(3391), + [anon_sym_enum] = ACTIONS(3391), [sym_html_comment] = ACTIONS(5), }, [1404] = { [sym_comment] = STATE(1404), - [ts_builtin_sym_end] = ACTIONS(3585), - [sym_identifier] = ACTIONS(3345), - [anon_sym_export] = ACTIONS(3345), - [anon_sym_type] = ACTIONS(3345), - [anon_sym_namespace] = ACTIONS(3345), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_typeof] = ACTIONS(3345), - [anon_sym_import] = ACTIONS(3345), - [anon_sym_with] = ACTIONS(3345), - [anon_sym_var] = ACTIONS(3345), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_const] = ACTIONS(3345), - [anon_sym_BANG] = ACTIONS(3345), - [anon_sym_else] = ACTIONS(3345), - [anon_sym_if] = ACTIONS(3345), - [anon_sym_switch] = ACTIONS(3345), - [anon_sym_for] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_await] = ACTIONS(3345), - [anon_sym_while] = ACTIONS(3345), - [anon_sym_do] = ACTIONS(3345), - [anon_sym_try] = ACTIONS(3345), - [anon_sym_break] = ACTIONS(3345), - [anon_sym_continue] = ACTIONS(3345), - [anon_sym_debugger] = ACTIONS(3345), - [anon_sym_return] = ACTIONS(3345), - [anon_sym_throw] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_yield] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_LTtemplate_GT] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(3345), - [anon_sym_SQUOTE] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_async] = ACTIONS(3345), - [anon_sym_function] = ACTIONS(3345), - [anon_sym_new] = ACTIONS(3345), - [anon_sym_using] = ACTIONS(3345), - [anon_sym_PLUS] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_SLASH] = ACTIONS(3345), - [anon_sym_LT] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_void] = ACTIONS(3345), - [anon_sym_delete] = ACTIONS(3345), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_DASH_DASH] = ACTIONS(3345), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3345), - [sym_number] = ACTIONS(3345), - [sym_private_property_identifier] = ACTIONS(3345), - [sym_this] = ACTIONS(3345), - [sym_super] = ACTIONS(3345), - [sym_true] = ACTIONS(3345), - [sym_false] = ACTIONS(3345), - [sym_null] = ACTIONS(3345), - [sym_undefined] = ACTIONS(3345), - [anon_sym_AT] = ACTIONS(3345), - [anon_sym_static] = ACTIONS(3345), - [anon_sym_readonly] = ACTIONS(3345), - [anon_sym_get] = ACTIONS(3345), - [anon_sym_set] = ACTIONS(3345), - [anon_sym_declare] = ACTIONS(3345), - [anon_sym_public] = ACTIONS(3345), - [anon_sym_private] = ACTIONS(3345), - [anon_sym_protected] = ACTIONS(3345), - [anon_sym_override] = ACTIONS(3345), - [anon_sym_module] = ACTIONS(3345), - [anon_sym_any] = ACTIONS(3345), - [anon_sym_number] = ACTIONS(3345), - [anon_sym_boolean] = ACTIONS(3345), - [anon_sym_string] = ACTIONS(3345), - [anon_sym_symbol] = ACTIONS(3345), - [anon_sym_object] = ACTIONS(3345), - [anon_sym_abstract] = ACTIONS(3345), - [anon_sym_interface] = ACTIONS(3345), - [anon_sym_enum] = ACTIONS(3345), + [ts_builtin_sym_end] = ACTIONS(2198), + [sym_identifier] = ACTIONS(2196), + [anon_sym_export] = ACTIONS(2196), + [anon_sym_type] = ACTIONS(2196), + [anon_sym_namespace] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_typeof] = ACTIONS(2196), + [anon_sym_import] = ACTIONS(2196), + [anon_sym_with] = ACTIONS(2196), + [anon_sym_var] = ACTIONS(2196), + [anon_sym_let] = ACTIONS(2196), + [anon_sym_const] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2196), + [anon_sym_else] = ACTIONS(2196), + [anon_sym_if] = ACTIONS(2196), + [anon_sym_switch] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_await] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2196), + [anon_sym_do] = ACTIONS(2196), + [anon_sym_try] = ACTIONS(2196), + [anon_sym_break] = ACTIONS(2196), + [anon_sym_continue] = ACTIONS(2196), + [anon_sym_debugger] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(2196), + [anon_sym_throw] = ACTIONS(2196), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_yield] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2196), + [anon_sym_LTtemplate_GT] = ACTIONS(2196), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_SQUOTE] = ACTIONS(2196), + [anon_sym_class] = ACTIONS(2196), + [anon_sym_async] = ACTIONS(2196), + [anon_sym_function] = ACTIONS(2196), + [anon_sym_new] = ACTIONS(2196), + [anon_sym_using] = ACTIONS(2196), + [anon_sym_PLUS] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_SLASH] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(2196), + [anon_sym_TILDE] = ACTIONS(2196), + [anon_sym_void] = ACTIONS(2196), + [anon_sym_delete] = ACTIONS(2196), + [anon_sym_PLUS_PLUS] = ACTIONS(2196), + [anon_sym_DASH_DASH] = ACTIONS(2196), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2196), + [sym_number] = ACTIONS(2196), + [sym_private_property_identifier] = ACTIONS(2196), + [sym_this] = ACTIONS(2196), + [sym_super] = ACTIONS(2196), + [sym_true] = ACTIONS(2196), + [sym_false] = ACTIONS(2196), + [sym_null] = ACTIONS(2196), + [sym_undefined] = ACTIONS(2196), + [anon_sym_AT] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2196), + [anon_sym_readonly] = ACTIONS(2196), + [anon_sym_get] = ACTIONS(2196), + [anon_sym_set] = ACTIONS(2196), + [anon_sym_declare] = ACTIONS(2196), + [anon_sym_public] = ACTIONS(2196), + [anon_sym_private] = ACTIONS(2196), + [anon_sym_protected] = ACTIONS(2196), + [anon_sym_override] = ACTIONS(2196), + [anon_sym_module] = ACTIONS(2196), + [anon_sym_any] = ACTIONS(2196), + [anon_sym_number] = ACTIONS(2196), + [anon_sym_boolean] = ACTIONS(2196), + [anon_sym_string] = ACTIONS(2196), + [anon_sym_symbol] = ACTIONS(2196), + [anon_sym_object] = ACTIONS(2196), + [anon_sym_abstract] = ACTIONS(2196), + [anon_sym_interface] = ACTIONS(2196), + [anon_sym_enum] = ACTIONS(2196), [sym_html_comment] = ACTIONS(5), }, [1405] = { [sym_comment] = STATE(1405), - [ts_builtin_sym_end] = ACTIONS(3587), - [sym_identifier] = ACTIONS(3419), - [anon_sym_export] = ACTIONS(3419), - [anon_sym_type] = ACTIONS(3419), - [anon_sym_namespace] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_typeof] = ACTIONS(3419), - [anon_sym_import] = ACTIONS(3419), - [anon_sym_with] = ACTIONS(3419), - [anon_sym_var] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_const] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3419), - [anon_sym_else] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_switch] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_await] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_break] = ACTIONS(3419), - [anon_sym_continue] = ACTIONS(3419), - [anon_sym_debugger] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_throw] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LTtemplate_GT] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [anon_sym_class] = ACTIONS(3419), - [anon_sym_async] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_using] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3419), - [anon_sym_void] = ACTIONS(3419), - [anon_sym_delete] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3419), - [anon_sym_DASH_DASH] = ACTIONS(3419), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3419), - [sym_number] = ACTIONS(3419), - [sym_private_property_identifier] = ACTIONS(3419), - [sym_this] = ACTIONS(3419), - [sym_super] = ACTIONS(3419), - [sym_true] = ACTIONS(3419), - [sym_false] = ACTIONS(3419), - [sym_null] = ACTIONS(3419), - [sym_undefined] = ACTIONS(3419), - [anon_sym_AT] = ACTIONS(3419), - [anon_sym_static] = ACTIONS(3419), - [anon_sym_readonly] = ACTIONS(3419), - [anon_sym_get] = ACTIONS(3419), - [anon_sym_set] = ACTIONS(3419), - [anon_sym_declare] = ACTIONS(3419), - [anon_sym_public] = ACTIONS(3419), - [anon_sym_private] = ACTIONS(3419), - [anon_sym_protected] = ACTIONS(3419), - [anon_sym_override] = ACTIONS(3419), - [anon_sym_module] = ACTIONS(3419), - [anon_sym_any] = ACTIONS(3419), - [anon_sym_number] = ACTIONS(3419), - [anon_sym_boolean] = ACTIONS(3419), - [anon_sym_string] = ACTIONS(3419), - [anon_sym_symbol] = ACTIONS(3419), - [anon_sym_object] = ACTIONS(3419), - [anon_sym_abstract] = ACTIONS(3419), - [anon_sym_interface] = ACTIONS(3419), - [anon_sym_enum] = ACTIONS(3419), - [sym_html_comment] = ACTIONS(5), - }, - [1406] = { - [sym_comment] = STATE(1406), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1407] = { - [sym_comment] = STATE(1407), - [ts_builtin_sym_end] = ACTIONS(3443), - [sym_identifier] = ACTIONS(3193), - [anon_sym_export] = ACTIONS(3193), - [anon_sym_type] = ACTIONS(3193), - [anon_sym_namespace] = ACTIONS(3193), - [anon_sym_LBRACE] = ACTIONS(3193), - [anon_sym_RBRACE] = ACTIONS(3193), - [anon_sym_typeof] = ACTIONS(3193), - [anon_sym_import] = ACTIONS(3193), - [anon_sym_with] = ACTIONS(3193), - [anon_sym_var] = ACTIONS(3193), - [anon_sym_let] = ACTIONS(3193), - [anon_sym_const] = ACTIONS(3193), - [anon_sym_BANG] = ACTIONS(3193), - [anon_sym_if] = ACTIONS(3193), - [anon_sym_switch] = ACTIONS(3193), - [anon_sym_for] = ACTIONS(3193), - [anon_sym_LPAREN] = ACTIONS(3193), - [anon_sym_await] = ACTIONS(3193), - [anon_sym_while] = ACTIONS(3193), - [anon_sym_do] = ACTIONS(3193), - [anon_sym_try] = ACTIONS(3193), - [anon_sym_break] = ACTIONS(3193), - [anon_sym_continue] = ACTIONS(3193), - [anon_sym_debugger] = ACTIONS(3193), - [anon_sym_return] = ACTIONS(3193), - [anon_sym_throw] = ACTIONS(3193), - [anon_sym_SEMI] = ACTIONS(3193), - [anon_sym_finally] = ACTIONS(3193), - [anon_sym_yield] = ACTIONS(3193), - [anon_sym_LBRACK] = ACTIONS(3193), - [anon_sym_LTtemplate_GT] = ACTIONS(3193), - [anon_sym_DQUOTE] = ACTIONS(3193), - [anon_sym_SQUOTE] = ACTIONS(3193), - [anon_sym_class] = ACTIONS(3193), - [anon_sym_async] = ACTIONS(3193), - [anon_sym_function] = ACTIONS(3193), - [anon_sym_new] = ACTIONS(3193), - [anon_sym_using] = ACTIONS(3193), - [anon_sym_PLUS] = ACTIONS(3193), - [anon_sym_DASH] = ACTIONS(3193), - [anon_sym_SLASH] = ACTIONS(3193), - [anon_sym_LT] = ACTIONS(3193), - [anon_sym_TILDE] = ACTIONS(3193), - [anon_sym_void] = ACTIONS(3193), - [anon_sym_delete] = ACTIONS(3193), - [anon_sym_PLUS_PLUS] = ACTIONS(3193), - [anon_sym_DASH_DASH] = ACTIONS(3193), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3193), - [sym_number] = ACTIONS(3193), - [sym_private_property_identifier] = ACTIONS(3193), - [sym_this] = ACTIONS(3193), - [sym_super] = ACTIONS(3193), - [sym_true] = ACTIONS(3193), - [sym_false] = ACTIONS(3193), - [sym_null] = ACTIONS(3193), - [sym_undefined] = ACTIONS(3193), - [anon_sym_AT] = ACTIONS(3193), - [anon_sym_static] = ACTIONS(3193), - [anon_sym_readonly] = ACTIONS(3193), - [anon_sym_get] = ACTIONS(3193), - [anon_sym_set] = ACTIONS(3193), - [anon_sym_declare] = ACTIONS(3193), - [anon_sym_public] = ACTIONS(3193), - [anon_sym_private] = ACTIONS(3193), - [anon_sym_protected] = ACTIONS(3193), - [anon_sym_override] = ACTIONS(3193), - [anon_sym_module] = ACTIONS(3193), - [anon_sym_any] = ACTIONS(3193), - [anon_sym_number] = ACTIONS(3193), - [anon_sym_boolean] = ACTIONS(3193), - [anon_sym_string] = ACTIONS(3193), - [anon_sym_symbol] = ACTIONS(3193), - [anon_sym_object] = ACTIONS(3193), - [anon_sym_abstract] = ACTIONS(3193), - [anon_sym_interface] = ACTIONS(3193), - [anon_sym_enum] = ACTIONS(3193), - [sym_html_comment] = ACTIONS(5), - }, - [1408] = { - [sym_comment] = STATE(1408), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1409] = { - [sym_comment] = STATE(1409), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1410] = { - [sym_comment] = STATE(1410), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_default] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_case] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [sym_html_comment] = ACTIONS(5), - }, - [1411] = { - [sym_comment] = STATE(1411), - [sym_identifier] = ACTIONS(3275), - [anon_sym_export] = ACTIONS(3275), - [anon_sym_default] = ACTIONS(3275), - [anon_sym_type] = ACTIONS(3275), - [anon_sym_namespace] = ACTIONS(3275), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_typeof] = ACTIONS(3275), - [anon_sym_import] = ACTIONS(3275), - [anon_sym_with] = ACTIONS(3275), - [anon_sym_var] = ACTIONS(3275), - [anon_sym_let] = ACTIONS(3275), - [anon_sym_const] = ACTIONS(3275), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3275), - [anon_sym_switch] = ACTIONS(3275), - [anon_sym_for] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_await] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3275), - [anon_sym_do] = ACTIONS(3275), - [anon_sym_try] = ACTIONS(3275), - [anon_sym_break] = ACTIONS(3275), - [anon_sym_continue] = ACTIONS(3275), - [anon_sym_debugger] = ACTIONS(3275), - [anon_sym_return] = ACTIONS(3275), - [anon_sym_throw] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3275), - [anon_sym_case] = ACTIONS(3275), - [anon_sym_yield] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_LTtemplate_GT] = ACTIONS(3275), - [anon_sym_DQUOTE] = ACTIONS(3275), - [anon_sym_SQUOTE] = ACTIONS(3275), - [anon_sym_class] = ACTIONS(3275), - [anon_sym_async] = ACTIONS(3275), - [anon_sym_function] = ACTIONS(3275), - [anon_sym_new] = ACTIONS(3275), - [anon_sym_using] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3275), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_LT] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_void] = ACTIONS(3275), - [anon_sym_delete] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3275), - [sym_number] = ACTIONS(3275), - [sym_private_property_identifier] = ACTIONS(3275), - [sym_this] = ACTIONS(3275), - [sym_super] = ACTIONS(3275), - [sym_true] = ACTIONS(3275), - [sym_false] = ACTIONS(3275), - [sym_null] = ACTIONS(3275), - [sym_undefined] = ACTIONS(3275), - [anon_sym_AT] = ACTIONS(3275), - [anon_sym_static] = ACTIONS(3275), - [anon_sym_readonly] = ACTIONS(3275), - [anon_sym_get] = ACTIONS(3275), - [anon_sym_set] = ACTIONS(3275), - [anon_sym_declare] = ACTIONS(3275), - [anon_sym_public] = ACTIONS(3275), - [anon_sym_private] = ACTIONS(3275), - [anon_sym_protected] = ACTIONS(3275), - [anon_sym_override] = ACTIONS(3275), - [anon_sym_module] = ACTIONS(3275), - [anon_sym_any] = ACTIONS(3275), - [anon_sym_number] = ACTIONS(3275), - [anon_sym_boolean] = ACTIONS(3275), - [anon_sym_string] = ACTIONS(3275), - [anon_sym_symbol] = ACTIONS(3275), - [anon_sym_object] = ACTIONS(3275), - [anon_sym_abstract] = ACTIONS(3275), - [anon_sym_interface] = ACTIONS(3275), - [anon_sym_enum] = ACTIONS(3275), - [sym_html_comment] = ACTIONS(5), - }, - [1412] = { - [sym_comment] = STATE(1412), - [sym_identifier] = ACTIONS(3447), - [anon_sym_export] = ACTIONS(3447), - [anon_sym_default] = ACTIONS(3447), - [anon_sym_type] = ACTIONS(3447), - [anon_sym_namespace] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_RBRACE] = ACTIONS(3447), - [anon_sym_typeof] = ACTIONS(3447), - [anon_sym_import] = ACTIONS(3447), - [anon_sym_with] = ACTIONS(3447), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_const] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_await] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_break] = ACTIONS(3447), - [anon_sym_continue] = ACTIONS(3447), - [anon_sym_debugger] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_throw] = ACTIONS(3447), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym_case] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LTtemplate_GT] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_class] = ACTIONS(3447), - [anon_sym_async] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_using] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3447), - [anon_sym_void] = ACTIONS(3447), - [anon_sym_delete] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_DASH_DASH] = ACTIONS(3447), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3447), - [sym_number] = ACTIONS(3447), - [sym_private_property_identifier] = ACTIONS(3447), - [sym_this] = ACTIONS(3447), - [sym_super] = ACTIONS(3447), - [sym_true] = ACTIONS(3447), - [sym_false] = ACTIONS(3447), - [sym_null] = ACTIONS(3447), - [sym_undefined] = ACTIONS(3447), - [anon_sym_AT] = ACTIONS(3447), - [anon_sym_static] = ACTIONS(3447), - [anon_sym_readonly] = ACTIONS(3447), - [anon_sym_get] = ACTIONS(3447), - [anon_sym_set] = ACTIONS(3447), - [anon_sym_declare] = ACTIONS(3447), - [anon_sym_public] = ACTIONS(3447), - [anon_sym_private] = ACTIONS(3447), - [anon_sym_protected] = ACTIONS(3447), - [anon_sym_override] = ACTIONS(3447), - [anon_sym_module] = ACTIONS(3447), - [anon_sym_any] = ACTIONS(3447), - [anon_sym_number] = ACTIONS(3447), - [anon_sym_boolean] = ACTIONS(3447), - [anon_sym_string] = ACTIONS(3447), - [anon_sym_symbol] = ACTIONS(3447), - [anon_sym_object] = ACTIONS(3447), - [anon_sym_abstract] = ACTIONS(3447), - [anon_sym_interface] = ACTIONS(3447), - [anon_sym_enum] = ACTIONS(3447), - [sym_html_comment] = ACTIONS(5), - }, - [1413] = { - [sym_comment] = STATE(1413), + [ts_builtin_sym_end] = ACTIONS(3609), [sym_identifier] = ACTIONS(3221), [anon_sym_export] = ACTIONS(3221), - [anon_sym_default] = ACTIONS(3221), [anon_sym_type] = ACTIONS(3221), [anon_sym_namespace] = ACTIONS(3221), [anon_sym_LBRACE] = ACTIONS(3221), @@ -178450,6 +177475,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3221), [anon_sym_const] = ACTIONS(3221), [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_else] = ACTIONS(3221), [anon_sym_if] = ACTIONS(3221), [anon_sym_switch] = ACTIONS(3221), [anon_sym_for] = ACTIONS(3221), @@ -178464,7 +177490,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3221), [anon_sym_throw] = ACTIONS(3221), [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym_case] = ACTIONS(3221), [anon_sym_yield] = ACTIONS(3221), [anon_sym_LBRACK] = ACTIONS(3221), [anon_sym_LTtemplate_GT] = ACTIONS(3221), @@ -178516,500 +177541,1238 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3221), [sym_html_comment] = ACTIONS(5), }, - [1414] = { - [sym_comment] = STATE(1414), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [1406] = { + [sym_comment] = STATE(1406), + [ts_builtin_sym_end] = ACTIONS(3611), + [sym_identifier] = ACTIONS(3235), + [anon_sym_export] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_namespace] = ACTIONS(3235), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_RBRACE] = ACTIONS(3235), + [anon_sym_typeof] = ACTIONS(3235), + [anon_sym_import] = ACTIONS(3235), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_var] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_const] = ACTIONS(3235), + [anon_sym_BANG] = ACTIONS(3235), + [anon_sym_else] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_switch] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_await] = ACTIONS(3235), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_break] = ACTIONS(3235), + [anon_sym_continue] = ACTIONS(3235), + [anon_sym_debugger] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_throw] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3235), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LTtemplate_GT] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_SQUOTE] = ACTIONS(3235), + [anon_sym_class] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_using] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_SLASH] = ACTIONS(3235), + [anon_sym_LT] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3235), + [anon_sym_void] = ACTIONS(3235), + [anon_sym_delete] = ACTIONS(3235), + [anon_sym_PLUS_PLUS] = ACTIONS(3235), + [anon_sym_DASH_DASH] = ACTIONS(3235), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3235), + [sym_number] = ACTIONS(3235), + [sym_private_property_identifier] = ACTIONS(3235), + [sym_this] = ACTIONS(3235), + [sym_super] = ACTIONS(3235), + [sym_true] = ACTIONS(3235), + [sym_false] = ACTIONS(3235), + [sym_null] = ACTIONS(3235), + [sym_undefined] = ACTIONS(3235), + [anon_sym_AT] = ACTIONS(3235), + [anon_sym_static] = ACTIONS(3235), + [anon_sym_readonly] = ACTIONS(3235), + [anon_sym_get] = ACTIONS(3235), + [anon_sym_set] = ACTIONS(3235), + [anon_sym_declare] = ACTIONS(3235), + [anon_sym_public] = ACTIONS(3235), + [anon_sym_private] = ACTIONS(3235), + [anon_sym_protected] = ACTIONS(3235), + [anon_sym_override] = ACTIONS(3235), + [anon_sym_module] = ACTIONS(3235), + [anon_sym_any] = ACTIONS(3235), + [anon_sym_number] = ACTIONS(3235), + [anon_sym_boolean] = ACTIONS(3235), + [anon_sym_string] = ACTIONS(3235), + [anon_sym_symbol] = ACTIONS(3235), + [anon_sym_object] = ACTIONS(3235), + [anon_sym_abstract] = ACTIONS(3235), + [anon_sym_interface] = ACTIONS(3235), + [anon_sym_enum] = ACTIONS(3235), [sym_html_comment] = ACTIONS(5), }, - [1415] = { - [sym_comment] = STATE(1415), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [1407] = { + [sym_comment] = STATE(1407), + [ts_builtin_sym_end] = ACTIONS(3613), + [sym_identifier] = ACTIONS(3245), + [anon_sym_export] = ACTIONS(3245), + [anon_sym_type] = ACTIONS(3245), + [anon_sym_namespace] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_RBRACE] = ACTIONS(3245), + [anon_sym_typeof] = ACTIONS(3245), + [anon_sym_import] = ACTIONS(3245), + [anon_sym_with] = ACTIONS(3245), + [anon_sym_var] = ACTIONS(3245), + [anon_sym_let] = ACTIONS(3245), + [anon_sym_const] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_else] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_switch] = ACTIONS(3245), + [anon_sym_for] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_await] = ACTIONS(3245), + [anon_sym_while] = ACTIONS(3245), + [anon_sym_do] = ACTIONS(3245), + [anon_sym_try] = ACTIONS(3245), + [anon_sym_break] = ACTIONS(3245), + [anon_sym_continue] = ACTIONS(3245), + [anon_sym_debugger] = ACTIONS(3245), + [anon_sym_return] = ACTIONS(3245), + [anon_sym_throw] = ACTIONS(3245), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_yield] = ACTIONS(3245), + [anon_sym_LBRACK] = ACTIONS(3245), + [anon_sym_LTtemplate_GT] = ACTIONS(3245), + [anon_sym_DQUOTE] = ACTIONS(3245), + [anon_sym_SQUOTE] = ACTIONS(3245), + [anon_sym_class] = ACTIONS(3245), + [anon_sym_async] = ACTIONS(3245), + [anon_sym_function] = ACTIONS(3245), + [anon_sym_new] = ACTIONS(3245), + [anon_sym_using] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_void] = ACTIONS(3245), + [anon_sym_delete] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3245), + [sym_number] = ACTIONS(3245), + [sym_private_property_identifier] = ACTIONS(3245), + [sym_this] = ACTIONS(3245), + [sym_super] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_null] = ACTIONS(3245), + [sym_undefined] = ACTIONS(3245), + [anon_sym_AT] = ACTIONS(3245), + [anon_sym_static] = ACTIONS(3245), + [anon_sym_readonly] = ACTIONS(3245), + [anon_sym_get] = ACTIONS(3245), + [anon_sym_set] = ACTIONS(3245), + [anon_sym_declare] = ACTIONS(3245), + [anon_sym_public] = ACTIONS(3245), + [anon_sym_private] = ACTIONS(3245), + [anon_sym_protected] = ACTIONS(3245), + [anon_sym_override] = ACTIONS(3245), + [anon_sym_module] = ACTIONS(3245), + [anon_sym_any] = ACTIONS(3245), + [anon_sym_number] = ACTIONS(3245), + [anon_sym_boolean] = ACTIONS(3245), + [anon_sym_string] = ACTIONS(3245), + [anon_sym_symbol] = ACTIONS(3245), + [anon_sym_object] = ACTIONS(3245), + [anon_sym_abstract] = ACTIONS(3245), + [anon_sym_interface] = ACTIONS(3245), + [anon_sym_enum] = ACTIONS(3245), [sym_html_comment] = ACTIONS(5), }, - [1416] = { - [sym_comment] = STATE(1416), - [sym_identifier] = ACTIONS(3445), - [anon_sym_export] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3445), - [anon_sym_type] = ACTIONS(3445), - [anon_sym_namespace] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_typeof] = ACTIONS(3445), - [anon_sym_import] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), - [anon_sym_BANG] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_await] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_break] = ACTIONS(3445), - [anon_sym_continue] = ACTIONS(3445), - [anon_sym_debugger] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_throw] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LTtemplate_GT] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_SQUOTE] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_async] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_using] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_void] = ACTIONS(3445), - [anon_sym_delete] = ACTIONS(3445), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), + [1408] = { + [sym_comment] = STATE(1408), + [sym_identifier] = ACTIONS(3291), + [anon_sym_export] = ACTIONS(3291), + [anon_sym_default] = ACTIONS(3291), + [anon_sym_type] = ACTIONS(3291), + [anon_sym_namespace] = ACTIONS(3291), + [anon_sym_LBRACE] = ACTIONS(3291), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_typeof] = ACTIONS(3291), + [anon_sym_import] = ACTIONS(3291), + [anon_sym_with] = ACTIONS(3291), + [anon_sym_var] = ACTIONS(3291), + [anon_sym_let] = ACTIONS(3291), + [anon_sym_const] = ACTIONS(3291), + [anon_sym_BANG] = ACTIONS(3291), + [anon_sym_if] = ACTIONS(3291), + [anon_sym_switch] = ACTIONS(3291), + [anon_sym_for] = ACTIONS(3291), + [anon_sym_LPAREN] = ACTIONS(3291), + [anon_sym_await] = ACTIONS(3291), + [anon_sym_while] = ACTIONS(3291), + [anon_sym_do] = ACTIONS(3291), + [anon_sym_try] = ACTIONS(3291), + [anon_sym_break] = ACTIONS(3291), + [anon_sym_continue] = ACTIONS(3291), + [anon_sym_debugger] = ACTIONS(3291), + [anon_sym_return] = ACTIONS(3291), + [anon_sym_throw] = ACTIONS(3291), + [anon_sym_SEMI] = ACTIONS(3291), + [anon_sym_case] = ACTIONS(3291), + [anon_sym_yield] = ACTIONS(3291), + [anon_sym_LBRACK] = ACTIONS(3291), + [anon_sym_LTtemplate_GT] = ACTIONS(3291), + [anon_sym_DQUOTE] = ACTIONS(3291), + [anon_sym_SQUOTE] = ACTIONS(3291), + [anon_sym_class] = ACTIONS(3291), + [anon_sym_async] = ACTIONS(3291), + [anon_sym_function] = ACTIONS(3291), + [anon_sym_new] = ACTIONS(3291), + [anon_sym_using] = ACTIONS(3291), + [anon_sym_PLUS] = ACTIONS(3291), + [anon_sym_DASH] = ACTIONS(3291), + [anon_sym_SLASH] = ACTIONS(3291), + [anon_sym_LT] = ACTIONS(3291), + [anon_sym_TILDE] = ACTIONS(3291), + [anon_sym_void] = ACTIONS(3291), + [anon_sym_delete] = ACTIONS(3291), + [anon_sym_PLUS_PLUS] = ACTIONS(3291), + [anon_sym_DASH_DASH] = ACTIONS(3291), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3445), - [sym_number] = ACTIONS(3445), - [sym_private_property_identifier] = ACTIONS(3445), - [sym_this] = ACTIONS(3445), - [sym_super] = ACTIONS(3445), - [sym_true] = ACTIONS(3445), - [sym_false] = ACTIONS(3445), - [sym_null] = ACTIONS(3445), - [sym_undefined] = ACTIONS(3445), - [anon_sym_AT] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_readonly] = ACTIONS(3445), - [anon_sym_get] = ACTIONS(3445), - [anon_sym_set] = ACTIONS(3445), - [anon_sym_declare] = ACTIONS(3445), - [anon_sym_public] = ACTIONS(3445), - [anon_sym_private] = ACTIONS(3445), - [anon_sym_protected] = ACTIONS(3445), - [anon_sym_override] = ACTIONS(3445), - [anon_sym_module] = ACTIONS(3445), - [anon_sym_any] = ACTIONS(3445), - [anon_sym_number] = ACTIONS(3445), - [anon_sym_boolean] = ACTIONS(3445), - [anon_sym_string] = ACTIONS(3445), - [anon_sym_symbol] = ACTIONS(3445), - [anon_sym_object] = ACTIONS(3445), - [anon_sym_abstract] = ACTIONS(3445), - [anon_sym_interface] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), + [anon_sym_BQUOTE] = ACTIONS(3291), + [sym_number] = ACTIONS(3291), + [sym_private_property_identifier] = ACTIONS(3291), + [sym_this] = ACTIONS(3291), + [sym_super] = ACTIONS(3291), + [sym_true] = ACTIONS(3291), + [sym_false] = ACTIONS(3291), + [sym_null] = ACTIONS(3291), + [sym_undefined] = ACTIONS(3291), + [anon_sym_AT] = ACTIONS(3291), + [anon_sym_static] = ACTIONS(3291), + [anon_sym_readonly] = ACTIONS(3291), + [anon_sym_get] = ACTIONS(3291), + [anon_sym_set] = ACTIONS(3291), + [anon_sym_declare] = ACTIONS(3291), + [anon_sym_public] = ACTIONS(3291), + [anon_sym_private] = ACTIONS(3291), + [anon_sym_protected] = ACTIONS(3291), + [anon_sym_override] = ACTIONS(3291), + [anon_sym_module] = ACTIONS(3291), + [anon_sym_any] = ACTIONS(3291), + [anon_sym_number] = ACTIONS(3291), + [anon_sym_boolean] = ACTIONS(3291), + [anon_sym_string] = ACTIONS(3291), + [anon_sym_symbol] = ACTIONS(3291), + [anon_sym_object] = ACTIONS(3291), + [anon_sym_abstract] = ACTIONS(3291), + [anon_sym_interface] = ACTIONS(3291), + [anon_sym_enum] = ACTIONS(3291), + [sym_html_comment] = ACTIONS(5), + }, + [1409] = { + [sym_comment] = STATE(1409), + [sym_identifier] = ACTIONS(3289), + [anon_sym_export] = ACTIONS(3289), + [anon_sym_default] = ACTIONS(3289), + [anon_sym_type] = ACTIONS(3289), + [anon_sym_namespace] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_RBRACE] = ACTIONS(3289), + [anon_sym_typeof] = ACTIONS(3289), + [anon_sym_import] = ACTIONS(3289), + [anon_sym_with] = ACTIONS(3289), + [anon_sym_var] = ACTIONS(3289), + [anon_sym_let] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_if] = ACTIONS(3289), + [anon_sym_switch] = ACTIONS(3289), + [anon_sym_for] = ACTIONS(3289), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_await] = ACTIONS(3289), + [anon_sym_while] = ACTIONS(3289), + [anon_sym_do] = ACTIONS(3289), + [anon_sym_try] = ACTIONS(3289), + [anon_sym_break] = ACTIONS(3289), + [anon_sym_continue] = ACTIONS(3289), + [anon_sym_debugger] = ACTIONS(3289), + [anon_sym_return] = ACTIONS(3289), + [anon_sym_throw] = ACTIONS(3289), + [anon_sym_SEMI] = ACTIONS(3289), + [anon_sym_case] = ACTIONS(3289), + [anon_sym_yield] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_LTtemplate_GT] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(3289), + [anon_sym_SQUOTE] = ACTIONS(3289), + [anon_sym_class] = ACTIONS(3289), + [anon_sym_async] = ACTIONS(3289), + [anon_sym_function] = ACTIONS(3289), + [anon_sym_new] = ACTIONS(3289), + [anon_sym_using] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_SLASH] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_void] = ACTIONS(3289), + [anon_sym_delete] = ACTIONS(3289), + [anon_sym_PLUS_PLUS] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3289), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3289), + [sym_number] = ACTIONS(3289), + [sym_private_property_identifier] = ACTIONS(3289), + [sym_this] = ACTIONS(3289), + [sym_super] = ACTIONS(3289), + [sym_true] = ACTIONS(3289), + [sym_false] = ACTIONS(3289), + [sym_null] = ACTIONS(3289), + [sym_undefined] = ACTIONS(3289), + [anon_sym_AT] = ACTIONS(3289), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_readonly] = ACTIONS(3289), + [anon_sym_get] = ACTIONS(3289), + [anon_sym_set] = ACTIONS(3289), + [anon_sym_declare] = ACTIONS(3289), + [anon_sym_public] = ACTIONS(3289), + [anon_sym_private] = ACTIONS(3289), + [anon_sym_protected] = ACTIONS(3289), + [anon_sym_override] = ACTIONS(3289), + [anon_sym_module] = ACTIONS(3289), + [anon_sym_any] = ACTIONS(3289), + [anon_sym_number] = ACTIONS(3289), + [anon_sym_boolean] = ACTIONS(3289), + [anon_sym_string] = ACTIONS(3289), + [anon_sym_symbol] = ACTIONS(3289), + [anon_sym_object] = ACTIONS(3289), + [anon_sym_abstract] = ACTIONS(3289), + [anon_sym_interface] = ACTIONS(3289), + [anon_sym_enum] = ACTIONS(3289), + [sym_html_comment] = ACTIONS(5), + }, + [1410] = { + [sym_comment] = STATE(1410), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_default] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_case] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), + [sym_html_comment] = ACTIONS(5), + }, + [1411] = { + [sym_comment] = STATE(1411), + [ts_builtin_sym_end] = ACTIONS(2428), + [sym_identifier] = ACTIONS(2280), + [anon_sym_export] = ACTIONS(2280), + [anon_sym_type] = ACTIONS(2280), + [anon_sym_namespace] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2280), + [anon_sym_RBRACE] = ACTIONS(2280), + [anon_sym_typeof] = ACTIONS(2280), + [anon_sym_import] = ACTIONS(2280), + [anon_sym_with] = ACTIONS(2280), + [anon_sym_var] = ACTIONS(2280), + [anon_sym_let] = ACTIONS(2280), + [anon_sym_const] = ACTIONS(2280), + [anon_sym_BANG] = ACTIONS(2280), + [anon_sym_if] = ACTIONS(2280), + [anon_sym_switch] = ACTIONS(2280), + [anon_sym_for] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_await] = ACTIONS(2280), + [anon_sym_while] = ACTIONS(2280), + [anon_sym_do] = ACTIONS(2280), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_break] = ACTIONS(2280), + [anon_sym_continue] = ACTIONS(2280), + [anon_sym_debugger] = ACTIONS(2280), + [anon_sym_return] = ACTIONS(2280), + [anon_sym_throw] = ACTIONS(2280), + [anon_sym_SEMI] = ACTIONS(2280), + [anon_sym_yield] = ACTIONS(2280), + [anon_sym_LBRACK] = ACTIONS(2280), + [anon_sym_LTtemplate_GT] = ACTIONS(2280), + [anon_sym_DQUOTE] = ACTIONS(2280), + [anon_sym_SQUOTE] = ACTIONS(2280), + [anon_sym_class] = ACTIONS(2280), + [anon_sym_async] = ACTIONS(2280), + [anon_sym_function] = ACTIONS(2280), + [anon_sym_new] = ACTIONS(2280), + [anon_sym_using] = ACTIONS(2280), + [anon_sym_PLUS] = ACTIONS(2280), + [anon_sym_DASH] = ACTIONS(2280), + [anon_sym_SLASH] = ACTIONS(2280), + [anon_sym_LT] = ACTIONS(2280), + [anon_sym_TILDE] = ACTIONS(2280), + [anon_sym_void] = ACTIONS(2280), + [anon_sym_delete] = ACTIONS(2280), + [anon_sym_PLUS_PLUS] = ACTIONS(2280), + [anon_sym_DASH_DASH] = ACTIONS(2280), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2280), + [sym_number] = ACTIONS(2280), + [sym_private_property_identifier] = ACTIONS(2280), + [sym_this] = ACTIONS(2280), + [sym_super] = ACTIONS(2280), + [sym_true] = ACTIONS(2280), + [sym_false] = ACTIONS(2280), + [sym_null] = ACTIONS(2280), + [sym_undefined] = ACTIONS(2280), + [anon_sym_AT] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(2280), + [anon_sym_readonly] = ACTIONS(2280), + [anon_sym_get] = ACTIONS(2280), + [anon_sym_set] = ACTIONS(2280), + [anon_sym_declare] = ACTIONS(2280), + [anon_sym_public] = ACTIONS(2280), + [anon_sym_private] = ACTIONS(2280), + [anon_sym_protected] = ACTIONS(2280), + [anon_sym_override] = ACTIONS(2280), + [anon_sym_module] = ACTIONS(2280), + [anon_sym_any] = ACTIONS(2280), + [anon_sym_number] = ACTIONS(2280), + [anon_sym_boolean] = ACTIONS(2280), + [anon_sym_string] = ACTIONS(2280), + [anon_sym_symbol] = ACTIONS(2280), + [anon_sym_object] = ACTIONS(2280), + [anon_sym_abstract] = ACTIONS(2280), + [anon_sym_interface] = ACTIONS(2280), + [anon_sym_enum] = ACTIONS(2280), + [sym__automatic_semicolon] = ACTIONS(2456), + [sym_html_comment] = ACTIONS(5), + }, + [1412] = { + [sym_comment] = STATE(1412), + [ts_builtin_sym_end] = ACTIONS(2398), + [sym_identifier] = ACTIONS(2308), + [anon_sym_export] = ACTIONS(2308), + [anon_sym_type] = ACTIONS(2308), + [anon_sym_namespace] = ACTIONS(2308), + [anon_sym_LBRACE] = ACTIONS(2308), + [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_typeof] = ACTIONS(2308), + [anon_sym_import] = ACTIONS(2308), + [anon_sym_with] = ACTIONS(2308), + [anon_sym_var] = ACTIONS(2308), + [anon_sym_let] = ACTIONS(2308), + [anon_sym_const] = ACTIONS(2308), + [anon_sym_BANG] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_switch] = ACTIONS(2308), + [anon_sym_for] = ACTIONS(2308), + [anon_sym_LPAREN] = ACTIONS(2308), + [anon_sym_await] = ACTIONS(2308), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_do] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2308), + [anon_sym_break] = ACTIONS(2308), + [anon_sym_continue] = ACTIONS(2308), + [anon_sym_debugger] = ACTIONS(2308), + [anon_sym_return] = ACTIONS(2308), + [anon_sym_throw] = ACTIONS(2308), + [anon_sym_SEMI] = ACTIONS(2308), + [anon_sym_yield] = ACTIONS(2308), + [anon_sym_LBRACK] = ACTIONS(2308), + [anon_sym_LTtemplate_GT] = ACTIONS(2308), + [anon_sym_DQUOTE] = ACTIONS(2308), + [anon_sym_SQUOTE] = ACTIONS(2308), + [anon_sym_class] = ACTIONS(2308), + [anon_sym_async] = ACTIONS(2308), + [anon_sym_function] = ACTIONS(2308), + [anon_sym_new] = ACTIONS(2308), + [anon_sym_using] = ACTIONS(2308), + [anon_sym_PLUS] = ACTIONS(2308), + [anon_sym_DASH] = ACTIONS(2308), + [anon_sym_SLASH] = ACTIONS(2308), + [anon_sym_LT] = ACTIONS(2308), + [anon_sym_TILDE] = ACTIONS(2308), + [anon_sym_void] = ACTIONS(2308), + [anon_sym_delete] = ACTIONS(2308), + [anon_sym_PLUS_PLUS] = ACTIONS(2308), + [anon_sym_DASH_DASH] = ACTIONS(2308), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2308), + [sym_number] = ACTIONS(2308), + [sym_private_property_identifier] = ACTIONS(2308), + [sym_this] = ACTIONS(2308), + [sym_super] = ACTIONS(2308), + [sym_true] = ACTIONS(2308), + [sym_false] = ACTIONS(2308), + [sym_null] = ACTIONS(2308), + [sym_undefined] = ACTIONS(2308), + [anon_sym_AT] = ACTIONS(2308), + [anon_sym_static] = ACTIONS(2308), + [anon_sym_readonly] = ACTIONS(2308), + [anon_sym_get] = ACTIONS(2308), + [anon_sym_set] = ACTIONS(2308), + [anon_sym_declare] = ACTIONS(2308), + [anon_sym_public] = ACTIONS(2308), + [anon_sym_private] = ACTIONS(2308), + [anon_sym_protected] = ACTIONS(2308), + [anon_sym_override] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2308), + [anon_sym_any] = ACTIONS(2308), + [anon_sym_number] = ACTIONS(2308), + [anon_sym_boolean] = ACTIONS(2308), + [anon_sym_string] = ACTIONS(2308), + [anon_sym_symbol] = ACTIONS(2308), + [anon_sym_object] = ACTIONS(2308), + [anon_sym_abstract] = ACTIONS(2308), + [anon_sym_interface] = ACTIONS(2308), + [anon_sym_enum] = ACTIONS(2308), + [sym__automatic_semicolon] = ACTIONS(2436), + [sym_html_comment] = ACTIONS(5), + }, + [1413] = { + [sym_comment] = STATE(1413), + [ts_builtin_sym_end] = ACTIONS(2388), + [sym_identifier] = ACTIONS(2292), + [anon_sym_export] = ACTIONS(2292), + [anon_sym_type] = ACTIONS(2292), + [anon_sym_namespace] = ACTIONS(2292), + [anon_sym_LBRACE] = ACTIONS(2292), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_typeof] = ACTIONS(2292), + [anon_sym_import] = ACTIONS(2292), + [anon_sym_with] = ACTIONS(2292), + [anon_sym_var] = ACTIONS(2292), + [anon_sym_let] = ACTIONS(2292), + [anon_sym_const] = ACTIONS(2292), + [anon_sym_BANG] = ACTIONS(2292), + [anon_sym_if] = ACTIONS(2292), + [anon_sym_switch] = ACTIONS(2292), + [anon_sym_for] = ACTIONS(2292), + [anon_sym_LPAREN] = ACTIONS(2292), + [anon_sym_await] = ACTIONS(2292), + [anon_sym_while] = ACTIONS(2292), + [anon_sym_do] = ACTIONS(2292), + [anon_sym_try] = ACTIONS(2292), + [anon_sym_break] = ACTIONS(2292), + [anon_sym_continue] = ACTIONS(2292), + [anon_sym_debugger] = ACTIONS(2292), + [anon_sym_return] = ACTIONS(2292), + [anon_sym_throw] = ACTIONS(2292), + [anon_sym_SEMI] = ACTIONS(2292), + [anon_sym_yield] = ACTIONS(2292), + [anon_sym_LBRACK] = ACTIONS(2292), + [anon_sym_LTtemplate_GT] = ACTIONS(2292), + [anon_sym_DQUOTE] = ACTIONS(2292), + [anon_sym_SQUOTE] = ACTIONS(2292), + [anon_sym_class] = ACTIONS(2292), + [anon_sym_async] = ACTIONS(2292), + [anon_sym_function] = ACTIONS(2292), + [anon_sym_new] = ACTIONS(2292), + [anon_sym_using] = ACTIONS(2292), + [anon_sym_PLUS] = ACTIONS(2292), + [anon_sym_DASH] = ACTIONS(2292), + [anon_sym_SLASH] = ACTIONS(2292), + [anon_sym_LT] = ACTIONS(2292), + [anon_sym_TILDE] = ACTIONS(2292), + [anon_sym_void] = ACTIONS(2292), + [anon_sym_delete] = ACTIONS(2292), + [anon_sym_PLUS_PLUS] = ACTIONS(2292), + [anon_sym_DASH_DASH] = ACTIONS(2292), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2292), + [sym_number] = ACTIONS(2292), + [sym_private_property_identifier] = ACTIONS(2292), + [sym_this] = ACTIONS(2292), + [sym_super] = ACTIONS(2292), + [sym_true] = ACTIONS(2292), + [sym_false] = ACTIONS(2292), + [sym_null] = ACTIONS(2292), + [sym_undefined] = ACTIONS(2292), + [anon_sym_AT] = ACTIONS(2292), + [anon_sym_static] = ACTIONS(2292), + [anon_sym_readonly] = ACTIONS(2292), + [anon_sym_get] = ACTIONS(2292), + [anon_sym_set] = ACTIONS(2292), + [anon_sym_declare] = ACTIONS(2292), + [anon_sym_public] = ACTIONS(2292), + [anon_sym_private] = ACTIONS(2292), + [anon_sym_protected] = ACTIONS(2292), + [anon_sym_override] = ACTIONS(2292), + [anon_sym_module] = ACTIONS(2292), + [anon_sym_any] = ACTIONS(2292), + [anon_sym_number] = ACTIONS(2292), + [anon_sym_boolean] = ACTIONS(2292), + [anon_sym_string] = ACTIONS(2292), + [anon_sym_symbol] = ACTIONS(2292), + [anon_sym_object] = ACTIONS(2292), + [anon_sym_abstract] = ACTIONS(2292), + [anon_sym_interface] = ACTIONS(2292), + [anon_sym_enum] = ACTIONS(2292), + [sym__automatic_semicolon] = ACTIONS(2484), + [sym_html_comment] = ACTIONS(5), + }, + [1414] = { + [sym_comment] = STATE(1414), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_default] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_case] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), + [sym_html_comment] = ACTIONS(5), + }, + [1415] = { + [sym_comment] = STATE(1415), + [ts_builtin_sym_end] = ACTIONS(3209), + [sym_identifier] = ACTIONS(3207), + [anon_sym_export] = ACTIONS(3207), + [anon_sym_type] = ACTIONS(3207), + [anon_sym_namespace] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3207), + [anon_sym_RBRACE] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(3207), + [anon_sym_import] = ACTIONS(3207), + [anon_sym_with] = ACTIONS(3207), + [anon_sym_var] = ACTIONS(3207), + [anon_sym_let] = ACTIONS(3207), + [anon_sym_const] = ACTIONS(3207), + [anon_sym_BANG] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_switch] = ACTIONS(3207), + [anon_sym_for] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(3207), + [anon_sym_await] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3207), + [anon_sym_do] = ACTIONS(3207), + [anon_sym_try] = ACTIONS(3207), + [anon_sym_break] = ACTIONS(3207), + [anon_sym_continue] = ACTIONS(3207), + [anon_sym_debugger] = ACTIONS(3207), + [anon_sym_return] = ACTIONS(3207), + [anon_sym_throw] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3207), + [anon_sym_LTtemplate_GT] = ACTIONS(3207), + [anon_sym_DQUOTE] = ACTIONS(3207), + [anon_sym_SQUOTE] = ACTIONS(3207), + [anon_sym_class] = ACTIONS(3207), + [anon_sym_async] = ACTIONS(3207), + [anon_sym_function] = ACTIONS(3207), + [anon_sym_new] = ACTIONS(3207), + [anon_sym_using] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_SLASH] = ACTIONS(3207), + [anon_sym_LT] = ACTIONS(3207), + [anon_sym_TILDE] = ACTIONS(3207), + [anon_sym_void] = ACTIONS(3207), + [anon_sym_delete] = ACTIONS(3207), + [anon_sym_PLUS_PLUS] = ACTIONS(3207), + [anon_sym_DASH_DASH] = ACTIONS(3207), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3207), + [sym_number] = ACTIONS(3207), + [sym_private_property_identifier] = ACTIONS(3207), + [sym_this] = ACTIONS(3207), + [sym_super] = ACTIONS(3207), + [sym_true] = ACTIONS(3207), + [sym_false] = ACTIONS(3207), + [sym_null] = ACTIONS(3207), + [sym_undefined] = ACTIONS(3207), + [anon_sym_AT] = ACTIONS(3207), + [anon_sym_static] = ACTIONS(3207), + [anon_sym_readonly] = ACTIONS(3207), + [anon_sym_get] = ACTIONS(3207), + [anon_sym_set] = ACTIONS(3207), + [anon_sym_declare] = ACTIONS(3207), + [anon_sym_public] = ACTIONS(3207), + [anon_sym_private] = ACTIONS(3207), + [anon_sym_protected] = ACTIONS(3207), + [anon_sym_override] = ACTIONS(3207), + [anon_sym_module] = ACTIONS(3207), + [anon_sym_any] = ACTIONS(3207), + [anon_sym_number] = ACTIONS(3207), + [anon_sym_boolean] = ACTIONS(3207), + [anon_sym_string] = ACTIONS(3207), + [anon_sym_symbol] = ACTIONS(3207), + [anon_sym_object] = ACTIONS(3207), + [anon_sym_abstract] = ACTIONS(3207), + [anon_sym_interface] = ACTIONS(3207), + [anon_sym_enum] = ACTIONS(3207), + [sym__automatic_semicolon] = ACTIONS(3209), + [sym_html_comment] = ACTIONS(5), + }, + [1416] = { + [sym_comment] = STATE(1416), + [sym_identifier] = ACTIONS(3233), + [anon_sym_export] = ACTIONS(3233), + [anon_sym_default] = ACTIONS(3233), + [anon_sym_type] = ACTIONS(3233), + [anon_sym_namespace] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_typeof] = ACTIONS(3233), + [anon_sym_import] = ACTIONS(3233), + [anon_sym_with] = ACTIONS(3233), + [anon_sym_var] = ACTIONS(3233), + [anon_sym_let] = ACTIONS(3233), + [anon_sym_const] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3233), + [anon_sym_switch] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_await] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3233), + [anon_sym_do] = ACTIONS(3233), + [anon_sym_try] = ACTIONS(3233), + [anon_sym_break] = ACTIONS(3233), + [anon_sym_continue] = ACTIONS(3233), + [anon_sym_debugger] = ACTIONS(3233), + [anon_sym_return] = ACTIONS(3233), + [anon_sym_throw] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_case] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3233), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_LTtemplate_GT] = ACTIONS(3233), + [anon_sym_DQUOTE] = ACTIONS(3233), + [anon_sym_SQUOTE] = ACTIONS(3233), + [anon_sym_class] = ACTIONS(3233), + [anon_sym_async] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_using] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(3233), + [anon_sym_SLASH] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_void] = ACTIONS(3233), + [anon_sym_delete] = ACTIONS(3233), + [anon_sym_PLUS_PLUS] = ACTIONS(3233), + [anon_sym_DASH_DASH] = ACTIONS(3233), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3233), + [sym_number] = ACTIONS(3233), + [sym_private_property_identifier] = ACTIONS(3233), + [sym_this] = ACTIONS(3233), + [sym_super] = ACTIONS(3233), + [sym_true] = ACTIONS(3233), + [sym_false] = ACTIONS(3233), + [sym_null] = ACTIONS(3233), + [sym_undefined] = ACTIONS(3233), + [anon_sym_AT] = ACTIONS(3233), + [anon_sym_static] = ACTIONS(3233), + [anon_sym_readonly] = ACTIONS(3233), + [anon_sym_get] = ACTIONS(3233), + [anon_sym_set] = ACTIONS(3233), + [anon_sym_declare] = ACTIONS(3233), + [anon_sym_public] = ACTIONS(3233), + [anon_sym_private] = ACTIONS(3233), + [anon_sym_protected] = ACTIONS(3233), + [anon_sym_override] = ACTIONS(3233), + [anon_sym_module] = ACTIONS(3233), + [anon_sym_any] = ACTIONS(3233), + [anon_sym_number] = ACTIONS(3233), + [anon_sym_boolean] = ACTIONS(3233), + [anon_sym_string] = ACTIONS(3233), + [anon_sym_symbol] = ACTIONS(3233), + [anon_sym_object] = ACTIONS(3233), + [anon_sym_abstract] = ACTIONS(3233), + [anon_sym_interface] = ACTIONS(3233), + [anon_sym_enum] = ACTIONS(3233), [sym_html_comment] = ACTIONS(5), }, [1417] = { [sym_comment] = STATE(1417), - [ts_builtin_sym_end] = ACTIONS(2248), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_namespace] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2246), - [anon_sym_import] = ACTIONS(2246), - [anon_sym_with] = ACTIONS(2246), - [anon_sym_var] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_debugger] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_throw] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_finally] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LTtemplate_GT] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_class] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2246), - [anon_sym_delete] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_private_property_identifier] = ACTIONS(2246), - [sym_this] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_undefined] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_readonly] = ACTIONS(2246), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_declare] = ACTIONS(2246), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_override] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_any] = ACTIONS(2246), - [anon_sym_number] = ACTIONS(2246), - [anon_sym_boolean] = ACTIONS(2246), - [anon_sym_string] = ACTIONS(2246), - [anon_sym_symbol] = ACTIONS(2246), - [anon_sym_object] = ACTIONS(2246), - [anon_sym_abstract] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), + [sym_identifier] = ACTIONS(3459), + [anon_sym_export] = ACTIONS(3459), + [anon_sym_default] = ACTIONS(3459), + [anon_sym_type] = ACTIONS(3459), + [anon_sym_namespace] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_typeof] = ACTIONS(3459), + [anon_sym_import] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3459), + [anon_sym_let] = ACTIONS(3459), + [anon_sym_const] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3459), + [anon_sym_if] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3459), + [anon_sym_for] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_await] = ACTIONS(3459), + [anon_sym_while] = ACTIONS(3459), + [anon_sym_do] = ACTIONS(3459), + [anon_sym_try] = ACTIONS(3459), + [anon_sym_break] = ACTIONS(3459), + [anon_sym_continue] = ACTIONS(3459), + [anon_sym_debugger] = ACTIONS(3459), + [anon_sym_return] = ACTIONS(3459), + [anon_sym_throw] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_case] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LTtemplate_GT] = ACTIONS(3459), + [anon_sym_DQUOTE] = ACTIONS(3459), + [anon_sym_SQUOTE] = ACTIONS(3459), + [anon_sym_class] = ACTIONS(3459), + [anon_sym_async] = ACTIONS(3459), + [anon_sym_function] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3459), + [anon_sym_using] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3459), + [anon_sym_DASH] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_void] = ACTIONS(3459), + [anon_sym_delete] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3459), + [sym_number] = ACTIONS(3459), + [sym_private_property_identifier] = ACTIONS(3459), + [sym_this] = ACTIONS(3459), + [sym_super] = ACTIONS(3459), + [sym_true] = ACTIONS(3459), + [sym_false] = ACTIONS(3459), + [sym_null] = ACTIONS(3459), + [sym_undefined] = ACTIONS(3459), + [anon_sym_AT] = ACTIONS(3459), + [anon_sym_static] = ACTIONS(3459), + [anon_sym_readonly] = ACTIONS(3459), + [anon_sym_get] = ACTIONS(3459), + [anon_sym_set] = ACTIONS(3459), + [anon_sym_declare] = ACTIONS(3459), + [anon_sym_public] = ACTIONS(3459), + [anon_sym_private] = ACTIONS(3459), + [anon_sym_protected] = ACTIONS(3459), + [anon_sym_override] = ACTIONS(3459), + [anon_sym_module] = ACTIONS(3459), + [anon_sym_any] = ACTIONS(3459), + [anon_sym_number] = ACTIONS(3459), + [anon_sym_boolean] = ACTIONS(3459), + [anon_sym_string] = ACTIONS(3459), + [anon_sym_symbol] = ACTIONS(3459), + [anon_sym_object] = ACTIONS(3459), + [anon_sym_abstract] = ACTIONS(3459), + [anon_sym_interface] = ACTIONS(3459), + [anon_sym_enum] = ACTIONS(3459), [sym_html_comment] = ACTIONS(5), }, [1418] = { [sym_comment] = STATE(1418), - [sym_identifier] = ACTIONS(3451), - [anon_sym_export] = ACTIONS(3451), - [anon_sym_default] = ACTIONS(3451), - [anon_sym_type] = ACTIONS(3451), - [anon_sym_namespace] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3451), - [anon_sym_typeof] = ACTIONS(3451), - [anon_sym_import] = ACTIONS(3451), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_var] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_const] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_switch] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_await] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_break] = ACTIONS(3451), - [anon_sym_continue] = ACTIONS(3451), - [anon_sym_debugger] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_throw] = ACTIONS(3451), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym_case] = ACTIONS(3451), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LTtemplate_GT] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_class] = ACTIONS(3451), - [anon_sym_async] = ACTIONS(3451), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_using] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_SLASH] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_void] = ACTIONS(3451), - [anon_sym_delete] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_DASH_DASH] = ACTIONS(3451), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3451), - [sym_number] = ACTIONS(3451), - [sym_private_property_identifier] = ACTIONS(3451), - [sym_this] = ACTIONS(3451), - [sym_super] = ACTIONS(3451), - [sym_true] = ACTIONS(3451), - [sym_false] = ACTIONS(3451), - [sym_null] = ACTIONS(3451), - [sym_undefined] = ACTIONS(3451), - [anon_sym_AT] = ACTIONS(3451), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3451), - [anon_sym_get] = ACTIONS(3451), - [anon_sym_set] = ACTIONS(3451), - [anon_sym_declare] = ACTIONS(3451), - [anon_sym_public] = ACTIONS(3451), - [anon_sym_private] = ACTIONS(3451), - [anon_sym_protected] = ACTIONS(3451), - [anon_sym_override] = ACTIONS(3451), - [anon_sym_module] = ACTIONS(3451), - [anon_sym_any] = ACTIONS(3451), - [anon_sym_number] = ACTIONS(3451), - [anon_sym_boolean] = ACTIONS(3451), - [anon_sym_string] = ACTIONS(3451), - [anon_sym_symbol] = ACTIONS(3451), - [anon_sym_object] = ACTIONS(3451), - [anon_sym_abstract] = ACTIONS(3451), - [anon_sym_interface] = ACTIONS(3451), - [anon_sym_enum] = ACTIONS(3451), + [sym_identifier] = ACTIONS(3237), + [anon_sym_export] = ACTIONS(3237), + [anon_sym_default] = ACTIONS(3237), + [anon_sym_type] = ACTIONS(3237), + [anon_sym_namespace] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_RBRACE] = ACTIONS(3237), + [anon_sym_typeof] = ACTIONS(3237), + [anon_sym_import] = ACTIONS(3237), + [anon_sym_with] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3237), + [anon_sym_let] = ACTIONS(3237), + [anon_sym_const] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_switch] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_await] = ACTIONS(3237), + [anon_sym_while] = ACTIONS(3237), + [anon_sym_do] = ACTIONS(3237), + [anon_sym_try] = ACTIONS(3237), + [anon_sym_break] = ACTIONS(3237), + [anon_sym_continue] = ACTIONS(3237), + [anon_sym_debugger] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3237), + [anon_sym_throw] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_case] = ACTIONS(3237), + [anon_sym_yield] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3237), + [anon_sym_LTtemplate_GT] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_SQUOTE] = ACTIONS(3237), + [anon_sym_class] = ACTIONS(3237), + [anon_sym_async] = ACTIONS(3237), + [anon_sym_function] = ACTIONS(3237), + [anon_sym_new] = ACTIONS(3237), + [anon_sym_using] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_void] = ACTIONS(3237), + [anon_sym_delete] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3237), + [sym_number] = ACTIONS(3237), + [sym_private_property_identifier] = ACTIONS(3237), + [sym_this] = ACTIONS(3237), + [sym_super] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_null] = ACTIONS(3237), + [sym_undefined] = ACTIONS(3237), + [anon_sym_AT] = ACTIONS(3237), + [anon_sym_static] = ACTIONS(3237), + [anon_sym_readonly] = ACTIONS(3237), + [anon_sym_get] = ACTIONS(3237), + [anon_sym_set] = ACTIONS(3237), + [anon_sym_declare] = ACTIONS(3237), + [anon_sym_public] = ACTIONS(3237), + [anon_sym_private] = ACTIONS(3237), + [anon_sym_protected] = ACTIONS(3237), + [anon_sym_override] = ACTIONS(3237), + [anon_sym_module] = ACTIONS(3237), + [anon_sym_any] = ACTIONS(3237), + [anon_sym_number] = ACTIONS(3237), + [anon_sym_boolean] = ACTIONS(3237), + [anon_sym_string] = ACTIONS(3237), + [anon_sym_symbol] = ACTIONS(3237), + [anon_sym_object] = ACTIONS(3237), + [anon_sym_abstract] = ACTIONS(3237), + [anon_sym_interface] = ACTIONS(3237), + [anon_sym_enum] = ACTIONS(3237), [sym_html_comment] = ACTIONS(5), }, [1419] = { [sym_comment] = STATE(1419), - [sym_identifier] = ACTIONS(3451), - [anon_sym_export] = ACTIONS(3451), - [anon_sym_default] = ACTIONS(3451), - [anon_sym_type] = ACTIONS(3451), - [anon_sym_namespace] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3451), - [anon_sym_typeof] = ACTIONS(3451), - [anon_sym_import] = ACTIONS(3451), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_var] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_const] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_switch] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_await] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_break] = ACTIONS(3451), - [anon_sym_continue] = ACTIONS(3451), - [anon_sym_debugger] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_throw] = ACTIONS(3451), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym_case] = ACTIONS(3451), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LTtemplate_GT] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_class] = ACTIONS(3451), - [anon_sym_async] = ACTIONS(3451), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_using] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_SLASH] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_void] = ACTIONS(3451), - [anon_sym_delete] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_DASH_DASH] = ACTIONS(3451), + [sym_identifier] = ACTIONS(3455), + [anon_sym_export] = ACTIONS(3455), + [anon_sym_default] = ACTIONS(3455), + [anon_sym_type] = ACTIONS(3455), + [anon_sym_namespace] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3455), + [anon_sym_RBRACE] = ACTIONS(3455), + [anon_sym_typeof] = ACTIONS(3455), + [anon_sym_import] = ACTIONS(3455), + [anon_sym_with] = ACTIONS(3455), + [anon_sym_var] = ACTIONS(3455), + [anon_sym_let] = ACTIONS(3455), + [anon_sym_const] = ACTIONS(3455), + [anon_sym_BANG] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_switch] = ACTIONS(3455), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_LPAREN] = ACTIONS(3455), + [anon_sym_await] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_break] = ACTIONS(3455), + [anon_sym_continue] = ACTIONS(3455), + [anon_sym_debugger] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_throw] = ACTIONS(3455), + [anon_sym_SEMI] = ACTIONS(3455), + [anon_sym_case] = ACTIONS(3455), + [anon_sym_yield] = ACTIONS(3455), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_LTtemplate_GT] = ACTIONS(3455), + [anon_sym_DQUOTE] = ACTIONS(3455), + [anon_sym_SQUOTE] = ACTIONS(3455), + [anon_sym_class] = ACTIONS(3455), + [anon_sym_async] = ACTIONS(3455), + [anon_sym_function] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_using] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_SLASH] = ACTIONS(3455), + [anon_sym_LT] = ACTIONS(3455), + [anon_sym_TILDE] = ACTIONS(3455), + [anon_sym_void] = ACTIONS(3455), + [anon_sym_delete] = ACTIONS(3455), + [anon_sym_PLUS_PLUS] = ACTIONS(3455), + [anon_sym_DASH_DASH] = ACTIONS(3455), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3451), - [sym_number] = ACTIONS(3451), - [sym_private_property_identifier] = ACTIONS(3451), - [sym_this] = ACTIONS(3451), - [sym_super] = ACTIONS(3451), - [sym_true] = ACTIONS(3451), - [sym_false] = ACTIONS(3451), - [sym_null] = ACTIONS(3451), - [sym_undefined] = ACTIONS(3451), - [anon_sym_AT] = ACTIONS(3451), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3451), - [anon_sym_get] = ACTIONS(3451), - [anon_sym_set] = ACTIONS(3451), - [anon_sym_declare] = ACTIONS(3451), - [anon_sym_public] = ACTIONS(3451), - [anon_sym_private] = ACTIONS(3451), - [anon_sym_protected] = ACTIONS(3451), - [anon_sym_override] = ACTIONS(3451), - [anon_sym_module] = ACTIONS(3451), - [anon_sym_any] = ACTIONS(3451), - [anon_sym_number] = ACTIONS(3451), - [anon_sym_boolean] = ACTIONS(3451), - [anon_sym_string] = ACTIONS(3451), - [anon_sym_symbol] = ACTIONS(3451), - [anon_sym_object] = ACTIONS(3451), - [anon_sym_abstract] = ACTIONS(3451), - [anon_sym_interface] = ACTIONS(3451), - [anon_sym_enum] = ACTIONS(3451), + [anon_sym_BQUOTE] = ACTIONS(3455), + [sym_number] = ACTIONS(3455), + [sym_private_property_identifier] = ACTIONS(3455), + [sym_this] = ACTIONS(3455), + [sym_super] = ACTIONS(3455), + [sym_true] = ACTIONS(3455), + [sym_false] = ACTIONS(3455), + [sym_null] = ACTIONS(3455), + [sym_undefined] = ACTIONS(3455), + [anon_sym_AT] = ACTIONS(3455), + [anon_sym_static] = ACTIONS(3455), + [anon_sym_readonly] = ACTIONS(3455), + [anon_sym_get] = ACTIONS(3455), + [anon_sym_set] = ACTIONS(3455), + [anon_sym_declare] = ACTIONS(3455), + [anon_sym_public] = ACTIONS(3455), + [anon_sym_private] = ACTIONS(3455), + [anon_sym_protected] = ACTIONS(3455), + [anon_sym_override] = ACTIONS(3455), + [anon_sym_module] = ACTIONS(3455), + [anon_sym_any] = ACTIONS(3455), + [anon_sym_number] = ACTIONS(3455), + [anon_sym_boolean] = ACTIONS(3455), + [anon_sym_string] = ACTIONS(3455), + [anon_sym_symbol] = ACTIONS(3455), + [anon_sym_object] = ACTIONS(3455), + [anon_sym_abstract] = ACTIONS(3455), + [anon_sym_interface] = ACTIONS(3455), + [anon_sym_enum] = ACTIONS(3455), [sym_html_comment] = ACTIONS(5), }, [1420] = { [sym_comment] = STATE(1420), + [sym_identifier] = ACTIONS(3239), + [anon_sym_export] = ACTIONS(3239), + [anon_sym_default] = ACTIONS(3239), + [anon_sym_type] = ACTIONS(3239), + [anon_sym_namespace] = ACTIONS(3239), + [anon_sym_LBRACE] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(3239), + [anon_sym_typeof] = ACTIONS(3239), + [anon_sym_import] = ACTIONS(3239), + [anon_sym_with] = ACTIONS(3239), + [anon_sym_var] = ACTIONS(3239), + [anon_sym_let] = ACTIONS(3239), + [anon_sym_const] = ACTIONS(3239), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3239), + [anon_sym_switch] = ACTIONS(3239), + [anon_sym_for] = ACTIONS(3239), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_await] = ACTIONS(3239), + [anon_sym_while] = ACTIONS(3239), + [anon_sym_do] = ACTIONS(3239), + [anon_sym_try] = ACTIONS(3239), + [anon_sym_break] = ACTIONS(3239), + [anon_sym_continue] = ACTIONS(3239), + [anon_sym_debugger] = ACTIONS(3239), + [anon_sym_return] = ACTIONS(3239), + [anon_sym_throw] = ACTIONS(3239), + [anon_sym_SEMI] = ACTIONS(3239), + [anon_sym_case] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3239), + [anon_sym_LBRACK] = ACTIONS(3239), + [anon_sym_LTtemplate_GT] = ACTIONS(3239), + [anon_sym_DQUOTE] = ACTIONS(3239), + [anon_sym_SQUOTE] = ACTIONS(3239), + [anon_sym_class] = ACTIONS(3239), + [anon_sym_async] = ACTIONS(3239), + [anon_sym_function] = ACTIONS(3239), + [anon_sym_new] = ACTIONS(3239), + [anon_sym_using] = ACTIONS(3239), + [anon_sym_PLUS] = ACTIONS(3239), + [anon_sym_DASH] = ACTIONS(3239), + [anon_sym_SLASH] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(3239), + [anon_sym_void] = ACTIONS(3239), + [anon_sym_delete] = ACTIONS(3239), + [anon_sym_PLUS_PLUS] = ACTIONS(3239), + [anon_sym_DASH_DASH] = ACTIONS(3239), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3239), + [sym_number] = ACTIONS(3239), + [sym_private_property_identifier] = ACTIONS(3239), + [sym_this] = ACTIONS(3239), + [sym_super] = ACTIONS(3239), + [sym_true] = ACTIONS(3239), + [sym_false] = ACTIONS(3239), + [sym_null] = ACTIONS(3239), + [sym_undefined] = ACTIONS(3239), + [anon_sym_AT] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3239), + [anon_sym_readonly] = ACTIONS(3239), + [anon_sym_get] = ACTIONS(3239), + [anon_sym_set] = ACTIONS(3239), + [anon_sym_declare] = ACTIONS(3239), + [anon_sym_public] = ACTIONS(3239), + [anon_sym_private] = ACTIONS(3239), + [anon_sym_protected] = ACTIONS(3239), + [anon_sym_override] = ACTIONS(3239), + [anon_sym_module] = ACTIONS(3239), + [anon_sym_any] = ACTIONS(3239), + [anon_sym_number] = ACTIONS(3239), + [anon_sym_boolean] = ACTIONS(3239), + [anon_sym_string] = ACTIONS(3239), + [anon_sym_symbol] = ACTIONS(3239), + [anon_sym_object] = ACTIONS(3239), + [anon_sym_abstract] = ACTIONS(3239), + [anon_sym_interface] = ACTIONS(3239), + [anon_sym_enum] = ACTIONS(3239), + [sym_html_comment] = ACTIONS(5), + }, + [1421] = { + [sym_comment] = STATE(1421), [sym_identifier] = ACTIONS(3453), [anon_sym_export] = ACTIONS(3453), [anon_sym_default] = ACTIONS(3453), @@ -179090,2061 +178853,1979 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3453), [sym_html_comment] = ACTIONS(5), }, - [1421] = { - [sym_comment] = STATE(1421), - [sym_identifier] = ACTIONS(3445), - [anon_sym_export] = ACTIONS(3445), - [anon_sym_default] = ACTIONS(3445), - [anon_sym_type] = ACTIONS(3445), - [anon_sym_namespace] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_typeof] = ACTIONS(3445), - [anon_sym_import] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), - [anon_sym_BANG] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_await] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_break] = ACTIONS(3445), - [anon_sym_continue] = ACTIONS(3445), - [anon_sym_debugger] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_throw] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_case] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LTtemplate_GT] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_SQUOTE] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_async] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_using] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_void] = ACTIONS(3445), - [anon_sym_delete] = ACTIONS(3445), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), + [1422] = { + [sym_comment] = STATE(1422), + [sym_identifier] = ACTIONS(3241), + [anon_sym_export] = ACTIONS(3241), + [anon_sym_default] = ACTIONS(3241), + [anon_sym_type] = ACTIONS(3241), + [anon_sym_namespace] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_RBRACE] = ACTIONS(3241), + [anon_sym_typeof] = ACTIONS(3241), + [anon_sym_import] = ACTIONS(3241), + [anon_sym_with] = ACTIONS(3241), + [anon_sym_var] = ACTIONS(3241), + [anon_sym_let] = ACTIONS(3241), + [anon_sym_const] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_switch] = ACTIONS(3241), + [anon_sym_for] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_await] = ACTIONS(3241), + [anon_sym_while] = ACTIONS(3241), + [anon_sym_do] = ACTIONS(3241), + [anon_sym_try] = ACTIONS(3241), + [anon_sym_break] = ACTIONS(3241), + [anon_sym_continue] = ACTIONS(3241), + [anon_sym_debugger] = ACTIONS(3241), + [anon_sym_return] = ACTIONS(3241), + [anon_sym_throw] = ACTIONS(3241), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_case] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3241), + [anon_sym_LBRACK] = ACTIONS(3241), + [anon_sym_LTtemplate_GT] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(3241), + [anon_sym_SQUOTE] = ACTIONS(3241), + [anon_sym_class] = ACTIONS(3241), + [anon_sym_async] = ACTIONS(3241), + [anon_sym_function] = ACTIONS(3241), + [anon_sym_new] = ACTIONS(3241), + [anon_sym_using] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_void] = ACTIONS(3241), + [anon_sym_delete] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3445), - [sym_number] = ACTIONS(3445), - [sym_private_property_identifier] = ACTIONS(3445), - [sym_this] = ACTIONS(3445), - [sym_super] = ACTIONS(3445), - [sym_true] = ACTIONS(3445), - [sym_false] = ACTIONS(3445), - [sym_null] = ACTIONS(3445), - [sym_undefined] = ACTIONS(3445), - [anon_sym_AT] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_readonly] = ACTIONS(3445), - [anon_sym_get] = ACTIONS(3445), - [anon_sym_set] = ACTIONS(3445), - [anon_sym_declare] = ACTIONS(3445), - [anon_sym_public] = ACTIONS(3445), - [anon_sym_private] = ACTIONS(3445), - [anon_sym_protected] = ACTIONS(3445), - [anon_sym_override] = ACTIONS(3445), - [anon_sym_module] = ACTIONS(3445), - [anon_sym_any] = ACTIONS(3445), - [anon_sym_number] = ACTIONS(3445), - [anon_sym_boolean] = ACTIONS(3445), - [anon_sym_string] = ACTIONS(3445), - [anon_sym_symbol] = ACTIONS(3445), - [anon_sym_object] = ACTIONS(3445), - [anon_sym_abstract] = ACTIONS(3445), - [anon_sym_interface] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), - [sym_html_comment] = ACTIONS(5), - }, - [1422] = { - [sym_comment] = STATE(1422), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3241), + [sym_number] = ACTIONS(3241), + [sym_private_property_identifier] = ACTIONS(3241), + [sym_this] = ACTIONS(3241), + [sym_super] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_null] = ACTIONS(3241), + [sym_undefined] = ACTIONS(3241), + [anon_sym_AT] = ACTIONS(3241), + [anon_sym_static] = ACTIONS(3241), + [anon_sym_readonly] = ACTIONS(3241), + [anon_sym_get] = ACTIONS(3241), + [anon_sym_set] = ACTIONS(3241), + [anon_sym_declare] = ACTIONS(3241), + [anon_sym_public] = ACTIONS(3241), + [anon_sym_private] = ACTIONS(3241), + [anon_sym_protected] = ACTIONS(3241), + [anon_sym_override] = ACTIONS(3241), + [anon_sym_module] = ACTIONS(3241), + [anon_sym_any] = ACTIONS(3241), + [anon_sym_number] = ACTIONS(3241), + [anon_sym_boolean] = ACTIONS(3241), + [anon_sym_string] = ACTIONS(3241), + [anon_sym_symbol] = ACTIONS(3241), + [anon_sym_object] = ACTIONS(3241), + [anon_sym_abstract] = ACTIONS(3241), + [anon_sym_interface] = ACTIONS(3241), + [anon_sym_enum] = ACTIONS(3241), [sym_html_comment] = ACTIONS(5), }, [1423] = { [sym_comment] = STATE(1423), - [sym_identifier] = ACTIONS(3461), - [anon_sym_export] = ACTIONS(3461), - [anon_sym_default] = ACTIONS(3461), - [anon_sym_type] = ACTIONS(3461), - [anon_sym_namespace] = ACTIONS(3461), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_RBRACE] = ACTIONS(3461), - [anon_sym_typeof] = ACTIONS(3461), - [anon_sym_import] = ACTIONS(3461), - [anon_sym_with] = ACTIONS(3461), - [anon_sym_var] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_const] = ACTIONS(3461), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_if] = ACTIONS(3461), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_for] = ACTIONS(3461), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_await] = ACTIONS(3461), - [anon_sym_while] = ACTIONS(3461), - [anon_sym_do] = ACTIONS(3461), - [anon_sym_try] = ACTIONS(3461), - [anon_sym_break] = ACTIONS(3461), - [anon_sym_continue] = ACTIONS(3461), - [anon_sym_debugger] = ACTIONS(3461), - [anon_sym_return] = ACTIONS(3461), - [anon_sym_throw] = ACTIONS(3461), - [anon_sym_SEMI] = ACTIONS(3461), - [anon_sym_case] = ACTIONS(3461), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_LTtemplate_GT] = ACTIONS(3461), - [anon_sym_DQUOTE] = ACTIONS(3461), - [anon_sym_SQUOTE] = ACTIONS(3461), - [anon_sym_class] = ACTIONS(3461), - [anon_sym_async] = ACTIONS(3461), - [anon_sym_function] = ACTIONS(3461), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_using] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3461), - [anon_sym_void] = ACTIONS(3461), - [anon_sym_delete] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3461), - [anon_sym_DASH_DASH] = ACTIONS(3461), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3461), - [sym_number] = ACTIONS(3461), - [sym_private_property_identifier] = ACTIONS(3461), - [sym_this] = ACTIONS(3461), - [sym_super] = ACTIONS(3461), - [sym_true] = ACTIONS(3461), - [sym_false] = ACTIONS(3461), - [sym_null] = ACTIONS(3461), - [sym_undefined] = ACTIONS(3461), - [anon_sym_AT] = ACTIONS(3461), - [anon_sym_static] = ACTIONS(3461), - [anon_sym_readonly] = ACTIONS(3461), - [anon_sym_get] = ACTIONS(3461), - [anon_sym_set] = ACTIONS(3461), - [anon_sym_declare] = ACTIONS(3461), - [anon_sym_public] = ACTIONS(3461), - [anon_sym_private] = ACTIONS(3461), - [anon_sym_protected] = ACTIONS(3461), - [anon_sym_override] = ACTIONS(3461), - [anon_sym_module] = ACTIONS(3461), - [anon_sym_any] = ACTIONS(3461), - [anon_sym_number] = ACTIONS(3461), - [anon_sym_boolean] = ACTIONS(3461), - [anon_sym_string] = ACTIONS(3461), - [anon_sym_symbol] = ACTIONS(3461), - [anon_sym_object] = ACTIONS(3461), - [anon_sym_abstract] = ACTIONS(3461), - [anon_sym_interface] = ACTIONS(3461), - [anon_sym_enum] = ACTIONS(3461), + [ts_builtin_sym_end] = ACTIONS(3615), + [sym_identifier] = ACTIONS(3247), + [anon_sym_export] = ACTIONS(3247), + [anon_sym_type] = ACTIONS(3247), + [anon_sym_namespace] = ACTIONS(3247), + [anon_sym_LBRACE] = ACTIONS(3247), + [anon_sym_RBRACE] = ACTIONS(3247), + [anon_sym_typeof] = ACTIONS(3247), + [anon_sym_import] = ACTIONS(3247), + [anon_sym_with] = ACTIONS(3247), + [anon_sym_var] = ACTIONS(3247), + [anon_sym_let] = ACTIONS(3247), + [anon_sym_const] = ACTIONS(3247), + [anon_sym_BANG] = ACTIONS(3247), + [anon_sym_else] = ACTIONS(3247), + [anon_sym_if] = ACTIONS(3247), + [anon_sym_switch] = ACTIONS(3247), + [anon_sym_for] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3247), + [anon_sym_await] = ACTIONS(3247), + [anon_sym_while] = ACTIONS(3247), + [anon_sym_do] = ACTIONS(3247), + [anon_sym_try] = ACTIONS(3247), + [anon_sym_break] = ACTIONS(3247), + [anon_sym_continue] = ACTIONS(3247), + [anon_sym_debugger] = ACTIONS(3247), + [anon_sym_return] = ACTIONS(3247), + [anon_sym_throw] = ACTIONS(3247), + [anon_sym_SEMI] = ACTIONS(3247), + [anon_sym_yield] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_LTtemplate_GT] = ACTIONS(3247), + [anon_sym_DQUOTE] = ACTIONS(3247), + [anon_sym_SQUOTE] = ACTIONS(3247), + [anon_sym_class] = ACTIONS(3247), + [anon_sym_async] = ACTIONS(3247), + [anon_sym_function] = ACTIONS(3247), + [anon_sym_new] = ACTIONS(3247), + [anon_sym_using] = ACTIONS(3247), + [anon_sym_PLUS] = ACTIONS(3247), + [anon_sym_DASH] = ACTIONS(3247), + [anon_sym_SLASH] = ACTIONS(3247), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_TILDE] = ACTIONS(3247), + [anon_sym_void] = ACTIONS(3247), + [anon_sym_delete] = ACTIONS(3247), + [anon_sym_PLUS_PLUS] = ACTIONS(3247), + [anon_sym_DASH_DASH] = ACTIONS(3247), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3247), + [sym_number] = ACTIONS(3247), + [sym_private_property_identifier] = ACTIONS(3247), + [sym_this] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_true] = ACTIONS(3247), + [sym_false] = ACTIONS(3247), + [sym_null] = ACTIONS(3247), + [sym_undefined] = ACTIONS(3247), + [anon_sym_AT] = ACTIONS(3247), + [anon_sym_static] = ACTIONS(3247), + [anon_sym_readonly] = ACTIONS(3247), + [anon_sym_get] = ACTIONS(3247), + [anon_sym_set] = ACTIONS(3247), + [anon_sym_declare] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(3247), + [anon_sym_private] = ACTIONS(3247), + [anon_sym_protected] = ACTIONS(3247), + [anon_sym_override] = ACTIONS(3247), + [anon_sym_module] = ACTIONS(3247), + [anon_sym_any] = ACTIONS(3247), + [anon_sym_number] = ACTIONS(3247), + [anon_sym_boolean] = ACTIONS(3247), + [anon_sym_string] = ACTIONS(3247), + [anon_sym_symbol] = ACTIONS(3247), + [anon_sym_object] = ACTIONS(3247), + [anon_sym_abstract] = ACTIONS(3247), + [anon_sym_interface] = ACTIONS(3247), + [anon_sym_enum] = ACTIONS(3247), [sym_html_comment] = ACTIONS(5), }, [1424] = { [sym_comment] = STATE(1424), - [ts_builtin_sym_end] = ACTIONS(2364), - [sym_identifier] = ACTIONS(2152), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_type] = ACTIONS(2152), - [anon_sym_namespace] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_typeof] = ACTIONS(2152), - [anon_sym_import] = ACTIONS(2152), - [anon_sym_with] = ACTIONS(2152), - [anon_sym_var] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [anon_sym_BANG] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_switch] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_await] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_debugger] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_throw] = ACTIONS(2152), - [anon_sym_SEMI] = ACTIONS(2152), - [anon_sym_yield] = ACTIONS(2152), - [anon_sym_LBRACK] = ACTIONS(2152), - [anon_sym_LTtemplate_GT] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [anon_sym_SQUOTE] = ACTIONS(2152), - [anon_sym_class] = ACTIONS(2152), - [anon_sym_async] = ACTIONS(2152), - [anon_sym_function] = ACTIONS(2152), - [anon_sym_new] = ACTIONS(2152), - [anon_sym_using] = ACTIONS(2152), - [anon_sym_PLUS] = ACTIONS(2152), - [anon_sym_DASH] = ACTIONS(2152), - [anon_sym_SLASH] = ACTIONS(2152), - [anon_sym_LT] = ACTIONS(2152), - [anon_sym_TILDE] = ACTIONS(2152), - [anon_sym_void] = ACTIONS(2152), - [anon_sym_delete] = ACTIONS(2152), - [anon_sym_PLUS_PLUS] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(2152), + [ts_builtin_sym_end] = ACTIONS(3617), + [sym_identifier] = ACTIONS(3243), + [anon_sym_export] = ACTIONS(3243), + [anon_sym_type] = ACTIONS(3243), + [anon_sym_namespace] = ACTIONS(3243), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_RBRACE] = ACTIONS(3243), + [anon_sym_typeof] = ACTIONS(3243), + [anon_sym_import] = ACTIONS(3243), + [anon_sym_with] = ACTIONS(3243), + [anon_sym_var] = ACTIONS(3243), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_const] = ACTIONS(3243), + [anon_sym_BANG] = ACTIONS(3243), + [anon_sym_else] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3243), + [anon_sym_switch] = ACTIONS(3243), + [anon_sym_for] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3243), + [anon_sym_await] = ACTIONS(3243), + [anon_sym_while] = ACTIONS(3243), + [anon_sym_do] = ACTIONS(3243), + [anon_sym_try] = ACTIONS(3243), + [anon_sym_break] = ACTIONS(3243), + [anon_sym_continue] = ACTIONS(3243), + [anon_sym_debugger] = ACTIONS(3243), + [anon_sym_return] = ACTIONS(3243), + [anon_sym_throw] = ACTIONS(3243), + [anon_sym_SEMI] = ACTIONS(3243), + [anon_sym_yield] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_LTtemplate_GT] = ACTIONS(3243), + [anon_sym_DQUOTE] = ACTIONS(3243), + [anon_sym_SQUOTE] = ACTIONS(3243), + [anon_sym_class] = ACTIONS(3243), + [anon_sym_async] = ACTIONS(3243), + [anon_sym_function] = ACTIONS(3243), + [anon_sym_new] = ACTIONS(3243), + [anon_sym_using] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_SLASH] = ACTIONS(3243), + [anon_sym_LT] = ACTIONS(3243), + [anon_sym_TILDE] = ACTIONS(3243), + [anon_sym_void] = ACTIONS(3243), + [anon_sym_delete] = ACTIONS(3243), + [anon_sym_PLUS_PLUS] = ACTIONS(3243), + [anon_sym_DASH_DASH] = ACTIONS(3243), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2152), - [sym_number] = ACTIONS(2152), - [sym_private_property_identifier] = ACTIONS(2152), - [sym_this] = ACTIONS(2152), - [sym_super] = ACTIONS(2152), - [sym_true] = ACTIONS(2152), - [sym_false] = ACTIONS(2152), - [sym_null] = ACTIONS(2152), - [sym_undefined] = ACTIONS(2152), - [anon_sym_AT] = ACTIONS(2152), - [anon_sym_static] = ACTIONS(2152), - [anon_sym_readonly] = ACTIONS(2152), - [anon_sym_get] = ACTIONS(2152), - [anon_sym_set] = ACTIONS(2152), - [anon_sym_declare] = ACTIONS(2152), - [anon_sym_public] = ACTIONS(2152), - [anon_sym_private] = ACTIONS(2152), - [anon_sym_protected] = ACTIONS(2152), - [anon_sym_override] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_any] = ACTIONS(2152), - [anon_sym_number] = ACTIONS(2152), - [anon_sym_boolean] = ACTIONS(2152), - [anon_sym_string] = ACTIONS(2152), - [anon_sym_symbol] = ACTIONS(2152), - [anon_sym_object] = ACTIONS(2152), - [anon_sym_abstract] = ACTIONS(2152), - [anon_sym_interface] = ACTIONS(2152), - [anon_sym_enum] = ACTIONS(2152), - [sym__automatic_semicolon] = ACTIONS(2472), + [anon_sym_BQUOTE] = ACTIONS(3243), + [sym_number] = ACTIONS(3243), + [sym_private_property_identifier] = ACTIONS(3243), + [sym_this] = ACTIONS(3243), + [sym_super] = ACTIONS(3243), + [sym_true] = ACTIONS(3243), + [sym_false] = ACTIONS(3243), + [sym_null] = ACTIONS(3243), + [sym_undefined] = ACTIONS(3243), + [anon_sym_AT] = ACTIONS(3243), + [anon_sym_static] = ACTIONS(3243), + [anon_sym_readonly] = ACTIONS(3243), + [anon_sym_get] = ACTIONS(3243), + [anon_sym_set] = ACTIONS(3243), + [anon_sym_declare] = ACTIONS(3243), + [anon_sym_public] = ACTIONS(3243), + [anon_sym_private] = ACTIONS(3243), + [anon_sym_protected] = ACTIONS(3243), + [anon_sym_override] = ACTIONS(3243), + [anon_sym_module] = ACTIONS(3243), + [anon_sym_any] = ACTIONS(3243), + [anon_sym_number] = ACTIONS(3243), + [anon_sym_boolean] = ACTIONS(3243), + [anon_sym_string] = ACTIONS(3243), + [anon_sym_symbol] = ACTIONS(3243), + [anon_sym_object] = ACTIONS(3243), + [anon_sym_abstract] = ACTIONS(3243), + [anon_sym_interface] = ACTIONS(3243), + [anon_sym_enum] = ACTIONS(3243), [sym_html_comment] = ACTIONS(5), }, [1425] = { [sym_comment] = STATE(1425), - [ts_builtin_sym_end] = ACTIONS(2394), - [sym_identifier] = ACTIONS(2310), - [anon_sym_export] = ACTIONS(2310), - [anon_sym_type] = ACTIONS(2310), - [anon_sym_namespace] = ACTIONS(2310), - [anon_sym_LBRACE] = ACTIONS(2310), - [anon_sym_RBRACE] = ACTIONS(2310), - [anon_sym_typeof] = ACTIONS(2310), - [anon_sym_import] = ACTIONS(2310), - [anon_sym_with] = ACTIONS(2310), - [anon_sym_var] = ACTIONS(2310), - [anon_sym_let] = ACTIONS(2310), - [anon_sym_const] = ACTIONS(2310), - [anon_sym_BANG] = ACTIONS(2310), - [anon_sym_if] = ACTIONS(2310), - [anon_sym_switch] = ACTIONS(2310), - [anon_sym_for] = ACTIONS(2310), - [anon_sym_LPAREN] = ACTIONS(2310), - [anon_sym_await] = ACTIONS(2310), - [anon_sym_while] = ACTIONS(2310), - [anon_sym_do] = ACTIONS(2310), - [anon_sym_try] = 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(2310), - [anon_sym_yield] = ACTIONS(2310), - [anon_sym_LBRACK] = ACTIONS(2310), - [anon_sym_LTtemplate_GT] = ACTIONS(2310), - [anon_sym_DQUOTE] = ACTIONS(2310), - [anon_sym_SQUOTE] = ACTIONS(2310), - [anon_sym_class] = ACTIONS(2310), - [anon_sym_async] = ACTIONS(2310), - [anon_sym_function] = ACTIONS(2310), - [anon_sym_new] = ACTIONS(2310), - [anon_sym_using] = ACTIONS(2310), - [anon_sym_PLUS] = ACTIONS(2310), - [anon_sym_DASH] = ACTIONS(2310), - [anon_sym_SLASH] = ACTIONS(2310), - [anon_sym_LT] = ACTIONS(2310), - [anon_sym_TILDE] = ACTIONS(2310), - [anon_sym_void] = ACTIONS(2310), - [anon_sym_delete] = ACTIONS(2310), - [anon_sym_PLUS_PLUS] = ACTIONS(2310), - [anon_sym_DASH_DASH] = ACTIONS(2310), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2310), - [sym_number] = ACTIONS(2310), - [sym_private_property_identifier] = ACTIONS(2310), - [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(2310), - [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_abstract] = ACTIONS(2310), - [anon_sym_interface] = ACTIONS(2310), - [anon_sym_enum] = ACTIONS(2310), - [sym__automatic_semicolon] = ACTIONS(2484), + [ts_builtin_sym_end] = ACTIONS(3619), + [sym_identifier] = ACTIONS(3241), + [anon_sym_export] = ACTIONS(3241), + [anon_sym_type] = ACTIONS(3241), + [anon_sym_namespace] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_RBRACE] = ACTIONS(3241), + [anon_sym_typeof] = ACTIONS(3241), + [anon_sym_import] = ACTIONS(3241), + [anon_sym_with] = ACTIONS(3241), + [anon_sym_var] = ACTIONS(3241), + [anon_sym_let] = ACTIONS(3241), + [anon_sym_const] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_else] = ACTIONS(3241), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_switch] = ACTIONS(3241), + [anon_sym_for] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_await] = ACTIONS(3241), + [anon_sym_while] = ACTIONS(3241), + [anon_sym_do] = ACTIONS(3241), + [anon_sym_try] = ACTIONS(3241), + [anon_sym_break] = ACTIONS(3241), + [anon_sym_continue] = ACTIONS(3241), + [anon_sym_debugger] = ACTIONS(3241), + [anon_sym_return] = ACTIONS(3241), + [anon_sym_throw] = ACTIONS(3241), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3241), + [anon_sym_LBRACK] = ACTIONS(3241), + [anon_sym_LTtemplate_GT] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(3241), + [anon_sym_SQUOTE] = ACTIONS(3241), + [anon_sym_class] = ACTIONS(3241), + [anon_sym_async] = ACTIONS(3241), + [anon_sym_function] = ACTIONS(3241), + [anon_sym_new] = ACTIONS(3241), + [anon_sym_using] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_void] = ACTIONS(3241), + [anon_sym_delete] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3241), + [sym_number] = ACTIONS(3241), + [sym_private_property_identifier] = ACTIONS(3241), + [sym_this] = ACTIONS(3241), + [sym_super] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_null] = ACTIONS(3241), + [sym_undefined] = ACTIONS(3241), + [anon_sym_AT] = ACTIONS(3241), + [anon_sym_static] = ACTIONS(3241), + [anon_sym_readonly] = ACTIONS(3241), + [anon_sym_get] = ACTIONS(3241), + [anon_sym_set] = ACTIONS(3241), + [anon_sym_declare] = ACTIONS(3241), + [anon_sym_public] = ACTIONS(3241), + [anon_sym_private] = ACTIONS(3241), + [anon_sym_protected] = ACTIONS(3241), + [anon_sym_override] = ACTIONS(3241), + [anon_sym_module] = ACTIONS(3241), + [anon_sym_any] = ACTIONS(3241), + [anon_sym_number] = ACTIONS(3241), + [anon_sym_boolean] = ACTIONS(3241), + [anon_sym_string] = ACTIONS(3241), + [anon_sym_symbol] = ACTIONS(3241), + [anon_sym_object] = ACTIONS(3241), + [anon_sym_abstract] = ACTIONS(3241), + [anon_sym_interface] = ACTIONS(3241), + [anon_sym_enum] = ACTIONS(3241), [sym_html_comment] = ACTIONS(5), }, [1426] = { [sym_comment] = STATE(1426), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(3621), + [sym_identifier] = ACTIONS(3239), + [anon_sym_export] = ACTIONS(3239), + [anon_sym_type] = ACTIONS(3239), + [anon_sym_namespace] = ACTIONS(3239), + [anon_sym_LBRACE] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(3239), + [anon_sym_typeof] = ACTIONS(3239), + [anon_sym_import] = ACTIONS(3239), + [anon_sym_with] = ACTIONS(3239), + [anon_sym_var] = ACTIONS(3239), + [anon_sym_let] = ACTIONS(3239), + [anon_sym_const] = ACTIONS(3239), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_else] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3239), + [anon_sym_switch] = ACTIONS(3239), + [anon_sym_for] = ACTIONS(3239), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_await] = ACTIONS(3239), + [anon_sym_while] = ACTIONS(3239), + [anon_sym_do] = ACTIONS(3239), + [anon_sym_try] = ACTIONS(3239), + [anon_sym_break] = ACTIONS(3239), + [anon_sym_continue] = ACTIONS(3239), + [anon_sym_debugger] = ACTIONS(3239), + [anon_sym_return] = ACTIONS(3239), + [anon_sym_throw] = ACTIONS(3239), + [anon_sym_SEMI] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3239), + [anon_sym_LBRACK] = ACTIONS(3239), + [anon_sym_LTtemplate_GT] = ACTIONS(3239), + [anon_sym_DQUOTE] = ACTIONS(3239), + [anon_sym_SQUOTE] = ACTIONS(3239), + [anon_sym_class] = ACTIONS(3239), + [anon_sym_async] = ACTIONS(3239), + [anon_sym_function] = ACTIONS(3239), + [anon_sym_new] = ACTIONS(3239), + [anon_sym_using] = ACTIONS(3239), + [anon_sym_PLUS] = ACTIONS(3239), + [anon_sym_DASH] = ACTIONS(3239), + [anon_sym_SLASH] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(3239), + [anon_sym_void] = ACTIONS(3239), + [anon_sym_delete] = ACTIONS(3239), + [anon_sym_PLUS_PLUS] = ACTIONS(3239), + [anon_sym_DASH_DASH] = ACTIONS(3239), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3239), + [sym_number] = ACTIONS(3239), + [sym_private_property_identifier] = ACTIONS(3239), + [sym_this] = ACTIONS(3239), + [sym_super] = ACTIONS(3239), + [sym_true] = ACTIONS(3239), + [sym_false] = ACTIONS(3239), + [sym_null] = ACTIONS(3239), + [sym_undefined] = ACTIONS(3239), + [anon_sym_AT] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3239), + [anon_sym_readonly] = ACTIONS(3239), + [anon_sym_get] = ACTIONS(3239), + [anon_sym_set] = ACTIONS(3239), + [anon_sym_declare] = ACTIONS(3239), + [anon_sym_public] = ACTIONS(3239), + [anon_sym_private] = ACTIONS(3239), + [anon_sym_protected] = ACTIONS(3239), + [anon_sym_override] = ACTIONS(3239), + [anon_sym_module] = ACTIONS(3239), + [anon_sym_any] = ACTIONS(3239), + [anon_sym_number] = ACTIONS(3239), + [anon_sym_boolean] = ACTIONS(3239), + [anon_sym_string] = ACTIONS(3239), + [anon_sym_symbol] = ACTIONS(3239), + [anon_sym_object] = ACTIONS(3239), + [anon_sym_abstract] = ACTIONS(3239), + [anon_sym_interface] = ACTIONS(3239), + [anon_sym_enum] = ACTIONS(3239), [sym_html_comment] = ACTIONS(5), }, [1427] = { [sym_comment] = STATE(1427), - [sym_identifier] = ACTIONS(3273), - [anon_sym_export] = ACTIONS(3273), - [anon_sym_default] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3273), - [anon_sym_namespace] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(3273), - [anon_sym_RBRACE] = ACTIONS(3273), - [anon_sym_typeof] = ACTIONS(3273), - [anon_sym_import] = ACTIONS(3273), - [anon_sym_with] = ACTIONS(3273), - [anon_sym_var] = ACTIONS(3273), - [anon_sym_let] = ACTIONS(3273), - [anon_sym_const] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3273), - [anon_sym_if] = ACTIONS(3273), - [anon_sym_switch] = ACTIONS(3273), - [anon_sym_for] = ACTIONS(3273), - [anon_sym_LPAREN] = ACTIONS(3273), - [anon_sym_await] = ACTIONS(3273), - [anon_sym_while] = ACTIONS(3273), - [anon_sym_do] = ACTIONS(3273), - [anon_sym_try] = ACTIONS(3273), - [anon_sym_break] = ACTIONS(3273), - [anon_sym_continue] = ACTIONS(3273), - [anon_sym_debugger] = ACTIONS(3273), - [anon_sym_return] = ACTIONS(3273), - [anon_sym_throw] = ACTIONS(3273), - [anon_sym_SEMI] = ACTIONS(3273), - [anon_sym_case] = ACTIONS(3273), - [anon_sym_yield] = ACTIONS(3273), - [anon_sym_LBRACK] = ACTIONS(3273), - [anon_sym_LTtemplate_GT] = ACTIONS(3273), - [anon_sym_DQUOTE] = ACTIONS(3273), - [anon_sym_SQUOTE] = ACTIONS(3273), - [anon_sym_class] = ACTIONS(3273), - [anon_sym_async] = ACTIONS(3273), - [anon_sym_function] = ACTIONS(3273), - [anon_sym_new] = ACTIONS(3273), - [anon_sym_using] = ACTIONS(3273), - [anon_sym_PLUS] = ACTIONS(3273), - [anon_sym_DASH] = ACTIONS(3273), - [anon_sym_SLASH] = ACTIONS(3273), - [anon_sym_LT] = ACTIONS(3273), - [anon_sym_TILDE] = ACTIONS(3273), - [anon_sym_void] = ACTIONS(3273), - [anon_sym_delete] = ACTIONS(3273), - [anon_sym_PLUS_PLUS] = ACTIONS(3273), - [anon_sym_DASH_DASH] = ACTIONS(3273), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3273), - [sym_number] = ACTIONS(3273), - [sym_private_property_identifier] = ACTIONS(3273), - [sym_this] = ACTIONS(3273), - [sym_super] = ACTIONS(3273), - [sym_true] = ACTIONS(3273), - [sym_false] = ACTIONS(3273), - [sym_null] = ACTIONS(3273), - [sym_undefined] = ACTIONS(3273), - [anon_sym_AT] = ACTIONS(3273), - [anon_sym_static] = ACTIONS(3273), - [anon_sym_readonly] = ACTIONS(3273), - [anon_sym_get] = ACTIONS(3273), - [anon_sym_set] = ACTIONS(3273), - [anon_sym_declare] = ACTIONS(3273), - [anon_sym_public] = ACTIONS(3273), - [anon_sym_private] = ACTIONS(3273), - [anon_sym_protected] = ACTIONS(3273), - [anon_sym_override] = ACTIONS(3273), - [anon_sym_module] = ACTIONS(3273), - [anon_sym_any] = ACTIONS(3273), - [anon_sym_number] = ACTIONS(3273), - [anon_sym_boolean] = ACTIONS(3273), - [anon_sym_string] = ACTIONS(3273), - [anon_sym_symbol] = ACTIONS(3273), - [anon_sym_object] = ACTIONS(3273), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_interface] = ACTIONS(3273), - [anon_sym_enum] = ACTIONS(3273), + [ts_builtin_sym_end] = ACTIONS(3623), + [sym_identifier] = ACTIONS(3237), + [anon_sym_export] = ACTIONS(3237), + [anon_sym_type] = ACTIONS(3237), + [anon_sym_namespace] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_RBRACE] = ACTIONS(3237), + [anon_sym_typeof] = ACTIONS(3237), + [anon_sym_import] = ACTIONS(3237), + [anon_sym_with] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3237), + [anon_sym_let] = ACTIONS(3237), + [anon_sym_const] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_else] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_switch] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_await] = ACTIONS(3237), + [anon_sym_while] = ACTIONS(3237), + [anon_sym_do] = ACTIONS(3237), + [anon_sym_try] = ACTIONS(3237), + [anon_sym_break] = ACTIONS(3237), + [anon_sym_continue] = ACTIONS(3237), + [anon_sym_debugger] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3237), + [anon_sym_throw] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_yield] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3237), + [anon_sym_LTtemplate_GT] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_SQUOTE] = ACTIONS(3237), + [anon_sym_class] = ACTIONS(3237), + [anon_sym_async] = ACTIONS(3237), + [anon_sym_function] = ACTIONS(3237), + [anon_sym_new] = ACTIONS(3237), + [anon_sym_using] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_void] = ACTIONS(3237), + [anon_sym_delete] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3237), + [sym_number] = ACTIONS(3237), + [sym_private_property_identifier] = ACTIONS(3237), + [sym_this] = ACTIONS(3237), + [sym_super] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_null] = ACTIONS(3237), + [sym_undefined] = ACTIONS(3237), + [anon_sym_AT] = ACTIONS(3237), + [anon_sym_static] = ACTIONS(3237), + [anon_sym_readonly] = ACTIONS(3237), + [anon_sym_get] = ACTIONS(3237), + [anon_sym_set] = ACTIONS(3237), + [anon_sym_declare] = ACTIONS(3237), + [anon_sym_public] = ACTIONS(3237), + [anon_sym_private] = ACTIONS(3237), + [anon_sym_protected] = ACTIONS(3237), + [anon_sym_override] = ACTIONS(3237), + [anon_sym_module] = ACTIONS(3237), + [anon_sym_any] = ACTIONS(3237), + [anon_sym_number] = ACTIONS(3237), + [anon_sym_boolean] = ACTIONS(3237), + [anon_sym_string] = ACTIONS(3237), + [anon_sym_symbol] = ACTIONS(3237), + [anon_sym_object] = ACTIONS(3237), + [anon_sym_abstract] = ACTIONS(3237), + [anon_sym_interface] = ACTIONS(3237), + [anon_sym_enum] = ACTIONS(3237), [sym_html_comment] = ACTIONS(5), }, [1428] = { [sym_comment] = STATE(1428), - [ts_builtin_sym_end] = ACTIONS(3175), - [sym_identifier] = ACTIONS(3173), - [anon_sym_export] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_namespace] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_RBRACE] = ACTIONS(3173), - [anon_sym_typeof] = ACTIONS(3173), - [anon_sym_import] = ACTIONS(3173), - [anon_sym_with] = ACTIONS(3173), - [anon_sym_var] = ACTIONS(3173), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_switch] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_await] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_debugger] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_throw] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym_yield] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LTtemplate_GT] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3173), - [anon_sym_class] = ACTIONS(3173), - [anon_sym_async] = ACTIONS(3173), - [anon_sym_function] = ACTIONS(3173), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_using] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_void] = ACTIONS(3173), - [anon_sym_delete] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3173), - [sym_number] = ACTIONS(3173), - [sym_private_property_identifier] = ACTIONS(3173), - [sym_this] = ACTIONS(3173), - [sym_super] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_null] = ACTIONS(3173), - [sym_undefined] = ACTIONS(3173), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_static] = ACTIONS(3173), - [anon_sym_readonly] = ACTIONS(3173), - [anon_sym_get] = ACTIONS(3173), - [anon_sym_set] = ACTIONS(3173), - [anon_sym_declare] = ACTIONS(3173), - [anon_sym_public] = ACTIONS(3173), - [anon_sym_private] = ACTIONS(3173), - [anon_sym_protected] = ACTIONS(3173), - [anon_sym_override] = ACTIONS(3173), - [anon_sym_module] = ACTIONS(3173), - [anon_sym_any] = ACTIONS(3173), - [anon_sym_number] = ACTIONS(3173), - [anon_sym_boolean] = ACTIONS(3173), - [anon_sym_string] = ACTIONS(3173), - [anon_sym_symbol] = ACTIONS(3173), - [anon_sym_object] = ACTIONS(3173), - [anon_sym_abstract] = ACTIONS(3173), - [anon_sym_interface] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3173), - [sym__automatic_semicolon] = ACTIONS(3175), + [sym_identifier] = ACTIONS(3243), + [anon_sym_export] = ACTIONS(3243), + [anon_sym_default] = ACTIONS(3243), + [anon_sym_type] = ACTIONS(3243), + [anon_sym_namespace] = ACTIONS(3243), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_RBRACE] = ACTIONS(3243), + [anon_sym_typeof] = ACTIONS(3243), + [anon_sym_import] = ACTIONS(3243), + [anon_sym_with] = ACTIONS(3243), + [anon_sym_var] = ACTIONS(3243), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_const] = ACTIONS(3243), + [anon_sym_BANG] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3243), + [anon_sym_switch] = ACTIONS(3243), + [anon_sym_for] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3243), + [anon_sym_await] = ACTIONS(3243), + [anon_sym_while] = ACTIONS(3243), + [anon_sym_do] = ACTIONS(3243), + [anon_sym_try] = ACTIONS(3243), + [anon_sym_break] = ACTIONS(3243), + [anon_sym_continue] = ACTIONS(3243), + [anon_sym_debugger] = ACTIONS(3243), + [anon_sym_return] = ACTIONS(3243), + [anon_sym_throw] = ACTIONS(3243), + [anon_sym_SEMI] = ACTIONS(3243), + [anon_sym_case] = ACTIONS(3243), + [anon_sym_yield] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_LTtemplate_GT] = ACTIONS(3243), + [anon_sym_DQUOTE] = ACTIONS(3243), + [anon_sym_SQUOTE] = ACTIONS(3243), + [anon_sym_class] = ACTIONS(3243), + [anon_sym_async] = ACTIONS(3243), + [anon_sym_function] = ACTIONS(3243), + [anon_sym_new] = ACTIONS(3243), + [anon_sym_using] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_SLASH] = ACTIONS(3243), + [anon_sym_LT] = ACTIONS(3243), + [anon_sym_TILDE] = ACTIONS(3243), + [anon_sym_void] = ACTIONS(3243), + [anon_sym_delete] = ACTIONS(3243), + [anon_sym_PLUS_PLUS] = ACTIONS(3243), + [anon_sym_DASH_DASH] = ACTIONS(3243), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3243), + [sym_number] = ACTIONS(3243), + [sym_private_property_identifier] = ACTIONS(3243), + [sym_this] = ACTIONS(3243), + [sym_super] = ACTIONS(3243), + [sym_true] = ACTIONS(3243), + [sym_false] = ACTIONS(3243), + [sym_null] = ACTIONS(3243), + [sym_undefined] = ACTIONS(3243), + [anon_sym_AT] = ACTIONS(3243), + [anon_sym_static] = ACTIONS(3243), + [anon_sym_readonly] = ACTIONS(3243), + [anon_sym_get] = ACTIONS(3243), + [anon_sym_set] = ACTIONS(3243), + [anon_sym_declare] = ACTIONS(3243), + [anon_sym_public] = ACTIONS(3243), + [anon_sym_private] = ACTIONS(3243), + [anon_sym_protected] = ACTIONS(3243), + [anon_sym_override] = ACTIONS(3243), + [anon_sym_module] = ACTIONS(3243), + [anon_sym_any] = ACTIONS(3243), + [anon_sym_number] = ACTIONS(3243), + [anon_sym_boolean] = ACTIONS(3243), + [anon_sym_string] = ACTIONS(3243), + [anon_sym_symbol] = ACTIONS(3243), + [anon_sym_object] = ACTIONS(3243), + [anon_sym_abstract] = ACTIONS(3243), + [anon_sym_interface] = ACTIONS(3243), + [anon_sym_enum] = ACTIONS(3243), [sym_html_comment] = ACTIONS(5), }, [1429] = { [sym_comment] = STATE(1429), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(3625), + [sym_identifier] = ACTIONS(3233), + [anon_sym_export] = ACTIONS(3233), + [anon_sym_type] = ACTIONS(3233), + [anon_sym_namespace] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_typeof] = ACTIONS(3233), + [anon_sym_import] = ACTIONS(3233), + [anon_sym_with] = ACTIONS(3233), + [anon_sym_var] = ACTIONS(3233), + [anon_sym_let] = ACTIONS(3233), + [anon_sym_const] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(3233), + [anon_sym_else] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3233), + [anon_sym_switch] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_await] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3233), + [anon_sym_do] = ACTIONS(3233), + [anon_sym_try] = ACTIONS(3233), + [anon_sym_break] = ACTIONS(3233), + [anon_sym_continue] = ACTIONS(3233), + [anon_sym_debugger] = ACTIONS(3233), + [anon_sym_return] = ACTIONS(3233), + [anon_sym_throw] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3233), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_LTtemplate_GT] = ACTIONS(3233), + [anon_sym_DQUOTE] = ACTIONS(3233), + [anon_sym_SQUOTE] = ACTIONS(3233), + [anon_sym_class] = ACTIONS(3233), + [anon_sym_async] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_using] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(3233), + [anon_sym_SLASH] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_void] = ACTIONS(3233), + [anon_sym_delete] = ACTIONS(3233), + [anon_sym_PLUS_PLUS] = ACTIONS(3233), + [anon_sym_DASH_DASH] = ACTIONS(3233), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3233), + [sym_number] = ACTIONS(3233), + [sym_private_property_identifier] = ACTIONS(3233), + [sym_this] = ACTIONS(3233), + [sym_super] = ACTIONS(3233), + [sym_true] = ACTIONS(3233), + [sym_false] = ACTIONS(3233), + [sym_null] = ACTIONS(3233), + [sym_undefined] = ACTIONS(3233), + [anon_sym_AT] = ACTIONS(3233), + [anon_sym_static] = ACTIONS(3233), + [anon_sym_readonly] = ACTIONS(3233), + [anon_sym_get] = ACTIONS(3233), + [anon_sym_set] = ACTIONS(3233), + [anon_sym_declare] = ACTIONS(3233), + [anon_sym_public] = ACTIONS(3233), + [anon_sym_private] = ACTIONS(3233), + [anon_sym_protected] = ACTIONS(3233), + [anon_sym_override] = ACTIONS(3233), + [anon_sym_module] = ACTIONS(3233), + [anon_sym_any] = ACTIONS(3233), + [anon_sym_number] = ACTIONS(3233), + [anon_sym_boolean] = ACTIONS(3233), + [anon_sym_string] = ACTIONS(3233), + [anon_sym_symbol] = ACTIONS(3233), + [anon_sym_object] = ACTIONS(3233), + [anon_sym_abstract] = ACTIONS(3233), + [anon_sym_interface] = ACTIONS(3233), + [anon_sym_enum] = ACTIONS(3233), [sym_html_comment] = ACTIONS(5), }, [1430] = { [sym_comment] = STATE(1430), - [sym_identifier] = ACTIONS(3225), - [anon_sym_export] = ACTIONS(3225), - [anon_sym_default] = ACTIONS(3225), - [anon_sym_type] = ACTIONS(3225), - [anon_sym_namespace] = ACTIONS(3225), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_typeof] = ACTIONS(3225), - [anon_sym_import] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(3225), - [anon_sym_var] = ACTIONS(3225), - [anon_sym_let] = ACTIONS(3225), - [anon_sym_const] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3225), - [anon_sym_if] = ACTIONS(3225), - [anon_sym_switch] = ACTIONS(3225), - [anon_sym_for] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_await] = ACTIONS(3225), - [anon_sym_while] = ACTIONS(3225), - [anon_sym_do] = ACTIONS(3225), - [anon_sym_try] = ACTIONS(3225), - [anon_sym_break] = ACTIONS(3225), - [anon_sym_continue] = ACTIONS(3225), - [anon_sym_debugger] = ACTIONS(3225), - [anon_sym_return] = ACTIONS(3225), - [anon_sym_throw] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym_case] = ACTIONS(3225), - [anon_sym_yield] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_LTtemplate_GT] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3225), - [anon_sym_class] = ACTIONS(3225), - [anon_sym_async] = ACTIONS(3225), - [anon_sym_function] = ACTIONS(3225), - [anon_sym_new] = ACTIONS(3225), - [anon_sym_using] = ACTIONS(3225), - [anon_sym_PLUS] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3225), - [anon_sym_SLASH] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3225), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_void] = ACTIONS(3225), - [anon_sym_delete] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3225), - [sym_number] = ACTIONS(3225), - [sym_private_property_identifier] = ACTIONS(3225), - [sym_this] = ACTIONS(3225), - [sym_super] = ACTIONS(3225), - [sym_true] = ACTIONS(3225), - [sym_false] = ACTIONS(3225), - [sym_null] = ACTIONS(3225), - [sym_undefined] = ACTIONS(3225), - [anon_sym_AT] = ACTIONS(3225), - [anon_sym_static] = ACTIONS(3225), - [anon_sym_readonly] = ACTIONS(3225), - [anon_sym_get] = ACTIONS(3225), - [anon_sym_set] = ACTIONS(3225), - [anon_sym_declare] = ACTIONS(3225), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_protected] = ACTIONS(3225), - [anon_sym_override] = ACTIONS(3225), - [anon_sym_module] = ACTIONS(3225), - [anon_sym_any] = ACTIONS(3225), - [anon_sym_number] = ACTIONS(3225), - [anon_sym_boolean] = ACTIONS(3225), - [anon_sym_string] = ACTIONS(3225), - [anon_sym_symbol] = ACTIONS(3225), - [anon_sym_object] = ACTIONS(3225), - [anon_sym_abstract] = ACTIONS(3225), - [anon_sym_interface] = ACTIONS(3225), - [anon_sym_enum] = ACTIONS(3225), + [ts_builtin_sym_end] = ACTIONS(3627), + [sym_identifier] = ACTIONS(3391), + [anon_sym_export] = ACTIONS(3391), + [anon_sym_type] = ACTIONS(3391), + [anon_sym_namespace] = ACTIONS(3391), + [anon_sym_LBRACE] = ACTIONS(3391), + [anon_sym_RBRACE] = ACTIONS(3391), + [anon_sym_typeof] = ACTIONS(3391), + [anon_sym_import] = ACTIONS(3391), + [anon_sym_with] = ACTIONS(3391), + [anon_sym_var] = ACTIONS(3391), + [anon_sym_let] = ACTIONS(3391), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_else] = ACTIONS(3391), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_switch] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_LPAREN] = ACTIONS(3391), + [anon_sym_await] = ACTIONS(3391), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_do] = ACTIONS(3391), + [anon_sym_try] = ACTIONS(3391), + [anon_sym_break] = ACTIONS(3391), + [anon_sym_continue] = ACTIONS(3391), + [anon_sym_debugger] = ACTIONS(3391), + [anon_sym_return] = ACTIONS(3391), + [anon_sym_throw] = ACTIONS(3391), + [anon_sym_SEMI] = ACTIONS(3391), + [anon_sym_yield] = ACTIONS(3391), + [anon_sym_LBRACK] = ACTIONS(3391), + [anon_sym_LTtemplate_GT] = ACTIONS(3391), + [anon_sym_DQUOTE] = ACTIONS(3391), + [anon_sym_SQUOTE] = ACTIONS(3391), + [anon_sym_class] = ACTIONS(3391), + [anon_sym_async] = ACTIONS(3391), + [anon_sym_function] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_using] = ACTIONS(3391), + [anon_sym_PLUS] = ACTIONS(3391), + [anon_sym_DASH] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(3391), + [anon_sym_void] = ACTIONS(3391), + [anon_sym_delete] = ACTIONS(3391), + [anon_sym_PLUS_PLUS] = ACTIONS(3391), + [anon_sym_DASH_DASH] = ACTIONS(3391), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3391), + [sym_number] = ACTIONS(3391), + [sym_private_property_identifier] = ACTIONS(3391), + [sym_this] = ACTIONS(3391), + [sym_super] = ACTIONS(3391), + [sym_true] = ACTIONS(3391), + [sym_false] = ACTIONS(3391), + [sym_null] = ACTIONS(3391), + [sym_undefined] = ACTIONS(3391), + [anon_sym_AT] = ACTIONS(3391), + [anon_sym_static] = ACTIONS(3391), + [anon_sym_readonly] = ACTIONS(3391), + [anon_sym_get] = ACTIONS(3391), + [anon_sym_set] = ACTIONS(3391), + [anon_sym_declare] = ACTIONS(3391), + [anon_sym_public] = ACTIONS(3391), + [anon_sym_private] = ACTIONS(3391), + [anon_sym_protected] = ACTIONS(3391), + [anon_sym_override] = ACTIONS(3391), + [anon_sym_module] = ACTIONS(3391), + [anon_sym_any] = ACTIONS(3391), + [anon_sym_number] = ACTIONS(3391), + [anon_sym_boolean] = ACTIONS(3391), + [anon_sym_string] = ACTIONS(3391), + [anon_sym_symbol] = ACTIONS(3391), + [anon_sym_object] = ACTIONS(3391), + [anon_sym_abstract] = ACTIONS(3391), + [anon_sym_interface] = ACTIONS(3391), + [anon_sym_enum] = ACTIONS(3391), [sym_html_comment] = ACTIONS(5), }, [1431] = { [sym_comment] = STATE(1431), - [ts_builtin_sym_end] = ACTIONS(3589), - [sym_identifier] = ACTIONS(3281), - [anon_sym_export] = ACTIONS(3281), - [anon_sym_type] = ACTIONS(3281), - [anon_sym_namespace] = ACTIONS(3281), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_typeof] = ACTIONS(3281), - [anon_sym_import] = ACTIONS(3281), - [anon_sym_with] = ACTIONS(3281), - [anon_sym_var] = ACTIONS(3281), - [anon_sym_let] = ACTIONS(3281), - [anon_sym_const] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3281), - [anon_sym_else] = ACTIONS(3281), - [anon_sym_if] = ACTIONS(3281), - [anon_sym_switch] = ACTIONS(3281), - [anon_sym_for] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_await] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3281), - [anon_sym_do] = ACTIONS(3281), - [anon_sym_try] = ACTIONS(3281), - [anon_sym_break] = ACTIONS(3281), - [anon_sym_continue] = ACTIONS(3281), - [anon_sym_debugger] = ACTIONS(3281), - [anon_sym_return] = ACTIONS(3281), - [anon_sym_throw] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_yield] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_LTtemplate_GT] = ACTIONS(3281), - [anon_sym_DQUOTE] = ACTIONS(3281), - [anon_sym_SQUOTE] = ACTIONS(3281), - [anon_sym_class] = ACTIONS(3281), - [anon_sym_async] = ACTIONS(3281), - [anon_sym_function] = ACTIONS(3281), - [anon_sym_new] = ACTIONS(3281), - [anon_sym_using] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(3281), - [anon_sym_DASH] = ACTIONS(3281), - [anon_sym_SLASH] = ACTIONS(3281), - [anon_sym_LT] = ACTIONS(3281), - [anon_sym_TILDE] = ACTIONS(3281), - [anon_sym_void] = ACTIONS(3281), - [anon_sym_delete] = ACTIONS(3281), - [anon_sym_PLUS_PLUS] = ACTIONS(3281), - [anon_sym_DASH_DASH] = ACTIONS(3281), + [sym_identifier] = ACTIONS(3451), + [anon_sym_export] = ACTIONS(3451), + [anon_sym_default] = ACTIONS(3451), + [anon_sym_type] = ACTIONS(3451), + [anon_sym_namespace] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_RBRACE] = ACTIONS(3451), + [anon_sym_typeof] = ACTIONS(3451), + [anon_sym_import] = ACTIONS(3451), + [anon_sym_with] = ACTIONS(3451), + [anon_sym_var] = ACTIONS(3451), + [anon_sym_let] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3451), + [anon_sym_BANG] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_switch] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_await] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_break] = ACTIONS(3451), + [anon_sym_continue] = ACTIONS(3451), + [anon_sym_debugger] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_throw] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3451), + [anon_sym_case] = ACTIONS(3451), + [anon_sym_yield] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_LTtemplate_GT] = ACTIONS(3451), + [anon_sym_DQUOTE] = ACTIONS(3451), + [anon_sym_SQUOTE] = ACTIONS(3451), + [anon_sym_class] = ACTIONS(3451), + [anon_sym_async] = ACTIONS(3451), + [anon_sym_function] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_using] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_SLASH] = ACTIONS(3451), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_TILDE] = ACTIONS(3451), + [anon_sym_void] = ACTIONS(3451), + [anon_sym_delete] = ACTIONS(3451), + [anon_sym_PLUS_PLUS] = ACTIONS(3451), + [anon_sym_DASH_DASH] = ACTIONS(3451), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3281), - [sym_number] = ACTIONS(3281), - [sym_private_property_identifier] = ACTIONS(3281), - [sym_this] = ACTIONS(3281), - [sym_super] = ACTIONS(3281), - [sym_true] = ACTIONS(3281), - [sym_false] = ACTIONS(3281), - [sym_null] = ACTIONS(3281), - [sym_undefined] = ACTIONS(3281), - [anon_sym_AT] = ACTIONS(3281), - [anon_sym_static] = ACTIONS(3281), - [anon_sym_readonly] = ACTIONS(3281), - [anon_sym_get] = ACTIONS(3281), - [anon_sym_set] = ACTIONS(3281), - [anon_sym_declare] = ACTIONS(3281), - [anon_sym_public] = ACTIONS(3281), - [anon_sym_private] = ACTIONS(3281), - [anon_sym_protected] = ACTIONS(3281), - [anon_sym_override] = ACTIONS(3281), - [anon_sym_module] = ACTIONS(3281), - [anon_sym_any] = ACTIONS(3281), - [anon_sym_number] = ACTIONS(3281), - [anon_sym_boolean] = ACTIONS(3281), - [anon_sym_string] = ACTIONS(3281), - [anon_sym_symbol] = ACTIONS(3281), - [anon_sym_object] = ACTIONS(3281), - [anon_sym_abstract] = ACTIONS(3281), - [anon_sym_interface] = ACTIONS(3281), - [anon_sym_enum] = ACTIONS(3281), + [anon_sym_BQUOTE] = ACTIONS(3451), + [sym_number] = ACTIONS(3451), + [sym_private_property_identifier] = ACTIONS(3451), + [sym_this] = ACTIONS(3451), + [sym_super] = ACTIONS(3451), + [sym_true] = ACTIONS(3451), + [sym_false] = ACTIONS(3451), + [sym_null] = ACTIONS(3451), + [sym_undefined] = ACTIONS(3451), + [anon_sym_AT] = ACTIONS(3451), + [anon_sym_static] = ACTIONS(3451), + [anon_sym_readonly] = ACTIONS(3451), + [anon_sym_get] = ACTIONS(3451), + [anon_sym_set] = ACTIONS(3451), + [anon_sym_declare] = ACTIONS(3451), + [anon_sym_public] = ACTIONS(3451), + [anon_sym_private] = ACTIONS(3451), + [anon_sym_protected] = ACTIONS(3451), + [anon_sym_override] = ACTIONS(3451), + [anon_sym_module] = ACTIONS(3451), + [anon_sym_any] = ACTIONS(3451), + [anon_sym_number] = ACTIONS(3451), + [anon_sym_boolean] = ACTIONS(3451), + [anon_sym_string] = ACTIONS(3451), + [anon_sym_symbol] = ACTIONS(3451), + [anon_sym_object] = ACTIONS(3451), + [anon_sym_abstract] = ACTIONS(3451), + [anon_sym_interface] = ACTIONS(3451), + [anon_sym_enum] = ACTIONS(3451), [sym_html_comment] = ACTIONS(5), }, [1432] = { [sym_comment] = STATE(1432), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [sym_identifier] = ACTIONS(3449), + [anon_sym_export] = ACTIONS(3449), + [anon_sym_default] = ACTIONS(3449), + [anon_sym_type] = ACTIONS(3449), + [anon_sym_namespace] = ACTIONS(3449), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_RBRACE] = ACTIONS(3449), + [anon_sym_typeof] = ACTIONS(3449), + [anon_sym_import] = ACTIONS(3449), + [anon_sym_with] = ACTIONS(3449), + [anon_sym_var] = ACTIONS(3449), + [anon_sym_let] = ACTIONS(3449), + [anon_sym_const] = ACTIONS(3449), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_if] = ACTIONS(3449), + [anon_sym_switch] = ACTIONS(3449), + [anon_sym_for] = ACTIONS(3449), + [anon_sym_LPAREN] = ACTIONS(3449), + [anon_sym_await] = ACTIONS(3449), + [anon_sym_while] = ACTIONS(3449), + [anon_sym_do] = ACTIONS(3449), + [anon_sym_try] = ACTIONS(3449), + [anon_sym_break] = ACTIONS(3449), + [anon_sym_continue] = ACTIONS(3449), + [anon_sym_debugger] = ACTIONS(3449), + [anon_sym_return] = ACTIONS(3449), + [anon_sym_throw] = ACTIONS(3449), + [anon_sym_SEMI] = ACTIONS(3449), + [anon_sym_case] = ACTIONS(3449), + [anon_sym_yield] = ACTIONS(3449), + [anon_sym_LBRACK] = ACTIONS(3449), + [anon_sym_LTtemplate_GT] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [anon_sym_SQUOTE] = ACTIONS(3449), + [anon_sym_class] = ACTIONS(3449), + [anon_sym_async] = ACTIONS(3449), + [anon_sym_function] = ACTIONS(3449), + [anon_sym_new] = ACTIONS(3449), + [anon_sym_using] = ACTIONS(3449), + [anon_sym_PLUS] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_SLASH] = ACTIONS(3449), + [anon_sym_LT] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3449), + [anon_sym_void] = ACTIONS(3449), + [anon_sym_delete] = ACTIONS(3449), + [anon_sym_PLUS_PLUS] = ACTIONS(3449), + [anon_sym_DASH_DASH] = ACTIONS(3449), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3449), + [sym_number] = ACTIONS(3449), + [sym_private_property_identifier] = ACTIONS(3449), + [sym_this] = ACTIONS(3449), + [sym_super] = ACTIONS(3449), + [sym_true] = ACTIONS(3449), + [sym_false] = ACTIONS(3449), + [sym_null] = ACTIONS(3449), + [sym_undefined] = ACTIONS(3449), + [anon_sym_AT] = ACTIONS(3449), + [anon_sym_static] = ACTIONS(3449), + [anon_sym_readonly] = ACTIONS(3449), + [anon_sym_get] = ACTIONS(3449), + [anon_sym_set] = ACTIONS(3449), + [anon_sym_declare] = ACTIONS(3449), + [anon_sym_public] = ACTIONS(3449), + [anon_sym_private] = ACTIONS(3449), + [anon_sym_protected] = ACTIONS(3449), + [anon_sym_override] = ACTIONS(3449), + [anon_sym_module] = ACTIONS(3449), + [anon_sym_any] = ACTIONS(3449), + [anon_sym_number] = ACTIONS(3449), + [anon_sym_boolean] = ACTIONS(3449), + [anon_sym_string] = ACTIONS(3449), + [anon_sym_symbol] = ACTIONS(3449), + [anon_sym_object] = ACTIONS(3449), + [anon_sym_abstract] = ACTIONS(3449), + [anon_sym_interface] = ACTIONS(3449), + [anon_sym_enum] = ACTIONS(3449), [sym_html_comment] = ACTIONS(5), }, [1433] = { [sym_comment] = STATE(1433), - [ts_builtin_sym_end] = ACTIONS(2206), - [sym_identifier] = ACTIONS(2204), - [anon_sym_export] = ACTIONS(2204), - [anon_sym_type] = ACTIONS(2204), - [anon_sym_namespace] = ACTIONS(2204), - [anon_sym_LBRACE] = ACTIONS(2204), - [anon_sym_RBRACE] = ACTIONS(2204), - [anon_sym_typeof] = ACTIONS(2204), - [anon_sym_import] = ACTIONS(2204), - [anon_sym_with] = ACTIONS(2204), - [anon_sym_var] = ACTIONS(2204), - [anon_sym_let] = ACTIONS(2204), - [anon_sym_const] = ACTIONS(2204), - [anon_sym_BANG] = ACTIONS(2204), - [anon_sym_if] = ACTIONS(2204), - [anon_sym_switch] = ACTIONS(2204), - [anon_sym_for] = ACTIONS(2204), - [anon_sym_LPAREN] = ACTIONS(2204), - [anon_sym_await] = ACTIONS(2204), - [anon_sym_while] = ACTIONS(2204), - [anon_sym_do] = ACTIONS(2204), - [anon_sym_try] = ACTIONS(2204), - [anon_sym_break] = ACTIONS(2204), - [anon_sym_continue] = ACTIONS(2204), - [anon_sym_debugger] = ACTIONS(2204), - [anon_sym_return] = ACTIONS(2204), - [anon_sym_throw] = ACTIONS(2204), - [anon_sym_SEMI] = ACTIONS(2204), - [anon_sym_yield] = ACTIONS(2204), - [anon_sym_LBRACK] = ACTIONS(2204), - [anon_sym_LTtemplate_GT] = ACTIONS(2204), - [anon_sym_DOT] = ACTIONS(2204), - [anon_sym_DQUOTE] = ACTIONS(2204), - [anon_sym_SQUOTE] = ACTIONS(2204), - [anon_sym_class] = ACTIONS(2204), - [anon_sym_async] = ACTIONS(2204), - [anon_sym_function] = ACTIONS(2204), - [anon_sym_new] = ACTIONS(2204), - [anon_sym_using] = ACTIONS(2204), - [anon_sym_PLUS] = ACTIONS(2204), - [anon_sym_DASH] = ACTIONS(2204), - [anon_sym_SLASH] = ACTIONS(2204), - [anon_sym_LT] = ACTIONS(2204), - [anon_sym_TILDE] = ACTIONS(2204), - [anon_sym_void] = ACTIONS(2204), - [anon_sym_delete] = ACTIONS(2204), - [anon_sym_PLUS_PLUS] = ACTIONS(2204), - [anon_sym_DASH_DASH] = ACTIONS(2204), + [ts_builtin_sym_end] = ACTIONS(3629), + [sym_identifier] = ACTIONS(3227), + [anon_sym_export] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_with] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_else] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_debugger] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LTtemplate_GT] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_function] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2204), - [sym_number] = ACTIONS(2204), - [sym_private_property_identifier] = ACTIONS(2204), - [sym_this] = ACTIONS(2204), - [sym_super] = ACTIONS(2204), - [sym_true] = ACTIONS(2204), - [sym_false] = ACTIONS(2204), - [sym_null] = ACTIONS(2204), - [sym_undefined] = ACTIONS(2204), - [anon_sym_AT] = ACTIONS(2204), - [anon_sym_static] = ACTIONS(2204), - [anon_sym_readonly] = ACTIONS(2204), - [anon_sym_get] = ACTIONS(2204), - [anon_sym_set] = ACTIONS(2204), - [anon_sym_declare] = ACTIONS(2204), - [anon_sym_public] = ACTIONS(2204), - [anon_sym_private] = ACTIONS(2204), - [anon_sym_protected] = ACTIONS(2204), - [anon_sym_override] = ACTIONS(2204), - [anon_sym_module] = ACTIONS(2204), - [anon_sym_any] = ACTIONS(2204), - [anon_sym_number] = ACTIONS(2204), - [anon_sym_boolean] = ACTIONS(2204), - [anon_sym_string] = ACTIONS(2204), - [anon_sym_symbol] = ACTIONS(2204), - [anon_sym_object] = ACTIONS(2204), - [anon_sym_abstract] = ACTIONS(2204), - [anon_sym_interface] = ACTIONS(2204), - [anon_sym_enum] = ACTIONS(2204), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_number] = ACTIONS(3227), + [sym_private_property_identifier] = ACTIONS(3227), + [sym_this] = ACTIONS(3227), + [sym_super] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_null] = ACTIONS(3227), + [sym_undefined] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_get] = ACTIONS(3227), + [anon_sym_set] = ACTIONS(3227), + [anon_sym_declare] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_module] = ACTIONS(3227), + [anon_sym_any] = ACTIONS(3227), + [anon_sym_number] = ACTIONS(3227), + [anon_sym_boolean] = ACTIONS(3227), + [anon_sym_string] = ACTIONS(3227), + [anon_sym_symbol] = ACTIONS(3227), + [anon_sym_object] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), [sym_html_comment] = ACTIONS(5), }, [1434] = { [sym_comment] = STATE(1434), - [ts_builtin_sym_end] = ACTIONS(3591), - [sym_identifier] = ACTIONS(3429), - [anon_sym_export] = ACTIONS(3429), - [anon_sym_type] = ACTIONS(3429), - [anon_sym_namespace] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_typeof] = ACTIONS(3429), - [anon_sym_import] = ACTIONS(3429), - [anon_sym_with] = ACTIONS(3429), - [anon_sym_var] = ACTIONS(3429), - [anon_sym_let] = ACTIONS(3429), - [anon_sym_const] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_else] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(3429), - [anon_sym_switch] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_await] = ACTIONS(3429), - [anon_sym_while] = ACTIONS(3429), - [anon_sym_do] = ACTIONS(3429), - [anon_sym_try] = ACTIONS(3429), - [anon_sym_break] = ACTIONS(3429), - [anon_sym_continue] = ACTIONS(3429), - [anon_sym_debugger] = ACTIONS(3429), - [anon_sym_return] = ACTIONS(3429), - [anon_sym_throw] = ACTIONS(3429), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LTtemplate_GT] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [anon_sym_SQUOTE] = ACTIONS(3429), - [anon_sym_class] = ACTIONS(3429), - [anon_sym_async] = ACTIONS(3429), - [anon_sym_function] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3429), - [anon_sym_using] = ACTIONS(3429), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_SLASH] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_void] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3429), - [sym_number] = ACTIONS(3429), - [sym_private_property_identifier] = ACTIONS(3429), - [sym_this] = ACTIONS(3429), - [sym_super] = ACTIONS(3429), - [sym_true] = ACTIONS(3429), - [sym_false] = ACTIONS(3429), - [sym_null] = ACTIONS(3429), - [sym_undefined] = ACTIONS(3429), - [anon_sym_AT] = ACTIONS(3429), - [anon_sym_static] = ACTIONS(3429), - [anon_sym_readonly] = ACTIONS(3429), - [anon_sym_get] = ACTIONS(3429), - [anon_sym_set] = ACTIONS(3429), - [anon_sym_declare] = ACTIONS(3429), - [anon_sym_public] = ACTIONS(3429), - [anon_sym_private] = ACTIONS(3429), - [anon_sym_protected] = ACTIONS(3429), - [anon_sym_override] = ACTIONS(3429), - [anon_sym_module] = ACTIONS(3429), - [anon_sym_any] = ACTIONS(3429), - [anon_sym_number] = ACTIONS(3429), - [anon_sym_boolean] = ACTIONS(3429), - [anon_sym_string] = ACTIONS(3429), - [anon_sym_symbol] = ACTIONS(3429), - [anon_sym_object] = ACTIONS(3429), - [anon_sym_abstract] = ACTIONS(3429), - [anon_sym_interface] = ACTIONS(3429), - [anon_sym_enum] = ACTIONS(3429), + [ts_builtin_sym_end] = ACTIONS(2302), + [sym_identifier] = ACTIONS(2300), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_type] = ACTIONS(2300), + [anon_sym_namespace] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2300), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2300), + [anon_sym_import] = ACTIONS(2300), + [anon_sym_with] = ACTIONS(2300), + [anon_sym_var] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_switch] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_await] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_debugger] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_throw] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2300), + [anon_sym_LTtemplate_GT] = ACTIONS(2300), + [anon_sym_DQUOTE] = ACTIONS(2300), + [anon_sym_SQUOTE] = ACTIONS(2300), + [anon_sym_class] = ACTIONS(2300), + [anon_sym_async] = ACTIONS(2300), + [anon_sym_function] = ACTIONS(2300), + [anon_sym_new] = ACTIONS(2300), + [anon_sym_using] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_LT] = ACTIONS(2300), + [anon_sym_TILDE] = ACTIONS(2300), + [anon_sym_void] = ACTIONS(2300), + [anon_sym_delete] = ACTIONS(2300), + [anon_sym_PLUS_PLUS] = ACTIONS(2300), + [anon_sym_DASH_DASH] = ACTIONS(2300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2300), + [sym_number] = ACTIONS(2300), + [sym_private_property_identifier] = ACTIONS(2300), + [sym_this] = ACTIONS(2300), + [sym_super] = ACTIONS(2300), + [sym_true] = ACTIONS(2300), + [sym_false] = ACTIONS(2300), + [sym_null] = ACTIONS(2300), + [sym_undefined] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2300), + [anon_sym_static] = ACTIONS(2300), + [anon_sym_readonly] = ACTIONS(2300), + [anon_sym_get] = ACTIONS(2300), + [anon_sym_set] = ACTIONS(2300), + [anon_sym_declare] = ACTIONS(2300), + [anon_sym_public] = ACTIONS(2300), + [anon_sym_private] = ACTIONS(2300), + [anon_sym_protected] = ACTIONS(2300), + [anon_sym_override] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_any] = ACTIONS(2300), + [anon_sym_number] = ACTIONS(2300), + [anon_sym_boolean] = ACTIONS(2300), + [anon_sym_string] = ACTIONS(2300), + [anon_sym_symbol] = ACTIONS(2300), + [anon_sym_object] = ACTIONS(2300), + [anon_sym_abstract] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2300), + [anon_sym_enum] = ACTIONS(2300), + [sym__automatic_semicolon] = ACTIONS(2302), [sym_html_comment] = ACTIONS(5), }, [1435] = { [sym_comment] = STATE(1435), - [ts_builtin_sym_end] = ACTIONS(2276), - [sym_identifier] = ACTIONS(2274), - [anon_sym_export] = ACTIONS(2274), - [anon_sym_type] = ACTIONS(2274), - [anon_sym_namespace] = ACTIONS(2274), - [anon_sym_LBRACE] = ACTIONS(2274), - [anon_sym_RBRACE] = ACTIONS(2274), - [anon_sym_typeof] = ACTIONS(2274), - [anon_sym_import] = ACTIONS(2274), - [anon_sym_with] = ACTIONS(2274), - [anon_sym_var] = ACTIONS(2274), - [anon_sym_let] = ACTIONS(2274), - [anon_sym_const] = ACTIONS(2274), - [anon_sym_BANG] = ACTIONS(2274), - [anon_sym_if] = ACTIONS(2274), - [anon_sym_switch] = ACTIONS(2274), - [anon_sym_for] = ACTIONS(2274), - [anon_sym_LPAREN] = ACTIONS(2274), - [anon_sym_await] = ACTIONS(2274), - [anon_sym_while] = ACTIONS(2274), - [anon_sym_do] = ACTIONS(2274), - [anon_sym_try] = ACTIONS(2274), - [anon_sym_break] = ACTIONS(2274), - [anon_sym_continue] = ACTIONS(2274), - [anon_sym_debugger] = ACTIONS(2274), - [anon_sym_return] = ACTIONS(2274), - [anon_sym_throw] = ACTIONS(2274), - [anon_sym_SEMI] = ACTIONS(2274), - [anon_sym_yield] = ACTIONS(2274), - [anon_sym_LBRACK] = ACTIONS(2274), - [anon_sym_LTtemplate_GT] = ACTIONS(2274), - [anon_sym_DOT] = ACTIONS(2274), - [anon_sym_DQUOTE] = ACTIONS(2274), - [anon_sym_SQUOTE] = ACTIONS(2274), - [anon_sym_class] = ACTIONS(2274), - [anon_sym_async] = ACTIONS(2274), - [anon_sym_function] = ACTIONS(2274), - [anon_sym_new] = ACTIONS(2274), - [anon_sym_using] = ACTIONS(2274), - [anon_sym_PLUS] = ACTIONS(2274), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_SLASH] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(2274), - [anon_sym_TILDE] = ACTIONS(2274), - [anon_sym_void] = ACTIONS(2274), - [anon_sym_delete] = ACTIONS(2274), - [anon_sym_PLUS_PLUS] = ACTIONS(2274), - [anon_sym_DASH_DASH] = ACTIONS(2274), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2274), - [sym_number] = ACTIONS(2274), - [sym_private_property_identifier] = ACTIONS(2274), - [sym_this] = ACTIONS(2274), - [sym_super] = ACTIONS(2274), - [sym_true] = ACTIONS(2274), - [sym_false] = ACTIONS(2274), - [sym_null] = ACTIONS(2274), - [sym_undefined] = ACTIONS(2274), - [anon_sym_AT] = ACTIONS(2274), - [anon_sym_static] = ACTIONS(2274), - [anon_sym_readonly] = ACTIONS(2274), - [anon_sym_get] = ACTIONS(2274), - [anon_sym_set] = ACTIONS(2274), - [anon_sym_declare] = ACTIONS(2274), - [anon_sym_public] = ACTIONS(2274), - [anon_sym_private] = ACTIONS(2274), - [anon_sym_protected] = ACTIONS(2274), - [anon_sym_override] = ACTIONS(2274), - [anon_sym_module] = ACTIONS(2274), - [anon_sym_any] = ACTIONS(2274), - [anon_sym_number] = ACTIONS(2274), - [anon_sym_boolean] = ACTIONS(2274), - [anon_sym_string] = ACTIONS(2274), - [anon_sym_symbol] = ACTIONS(2274), - [anon_sym_object] = ACTIONS(2274), - [anon_sym_abstract] = ACTIONS(2274), - [anon_sym_interface] = ACTIONS(2274), - [anon_sym_enum] = ACTIONS(2274), + [ts_builtin_sym_end] = ACTIONS(3631), + [sym_identifier] = ACTIONS(3379), + [anon_sym_export] = ACTIONS(3379), + [anon_sym_type] = ACTIONS(3379), + [anon_sym_namespace] = ACTIONS(3379), + [anon_sym_LBRACE] = ACTIONS(3379), + [anon_sym_RBRACE] = ACTIONS(3379), + [anon_sym_typeof] = ACTIONS(3379), + [anon_sym_import] = ACTIONS(3379), + [anon_sym_with] = ACTIONS(3379), + [anon_sym_var] = ACTIONS(3379), + [anon_sym_let] = ACTIONS(3379), + [anon_sym_const] = ACTIONS(3379), + [anon_sym_BANG] = ACTIONS(3379), + [anon_sym_else] = ACTIONS(3379), + [anon_sym_if] = ACTIONS(3379), + [anon_sym_switch] = ACTIONS(3379), + [anon_sym_for] = ACTIONS(3379), + [anon_sym_LPAREN] = ACTIONS(3379), + [anon_sym_await] = ACTIONS(3379), + [anon_sym_while] = ACTIONS(3379), + [anon_sym_do] = ACTIONS(3379), + [anon_sym_try] = ACTIONS(3379), + [anon_sym_break] = ACTIONS(3379), + [anon_sym_continue] = ACTIONS(3379), + [anon_sym_debugger] = ACTIONS(3379), + [anon_sym_return] = ACTIONS(3379), + [anon_sym_throw] = ACTIONS(3379), + [anon_sym_SEMI] = ACTIONS(3379), + [anon_sym_yield] = ACTIONS(3379), + [anon_sym_LBRACK] = ACTIONS(3379), + [anon_sym_LTtemplate_GT] = ACTIONS(3379), + [anon_sym_DQUOTE] = ACTIONS(3379), + [anon_sym_SQUOTE] = ACTIONS(3379), + [anon_sym_class] = ACTIONS(3379), + [anon_sym_async] = ACTIONS(3379), + [anon_sym_function] = ACTIONS(3379), + [anon_sym_new] = ACTIONS(3379), + [anon_sym_using] = ACTIONS(3379), + [anon_sym_PLUS] = ACTIONS(3379), + [anon_sym_DASH] = ACTIONS(3379), + [anon_sym_SLASH] = ACTIONS(3379), + [anon_sym_LT] = ACTIONS(3379), + [anon_sym_TILDE] = ACTIONS(3379), + [anon_sym_void] = ACTIONS(3379), + [anon_sym_delete] = ACTIONS(3379), + [anon_sym_PLUS_PLUS] = ACTIONS(3379), + [anon_sym_DASH_DASH] = ACTIONS(3379), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3379), + [sym_number] = ACTIONS(3379), + [sym_private_property_identifier] = ACTIONS(3379), + [sym_this] = ACTIONS(3379), + [sym_super] = ACTIONS(3379), + [sym_true] = ACTIONS(3379), + [sym_false] = ACTIONS(3379), + [sym_null] = ACTIONS(3379), + [sym_undefined] = ACTIONS(3379), + [anon_sym_AT] = ACTIONS(3379), + [anon_sym_static] = ACTIONS(3379), + [anon_sym_readonly] = ACTIONS(3379), + [anon_sym_get] = ACTIONS(3379), + [anon_sym_set] = ACTIONS(3379), + [anon_sym_declare] = ACTIONS(3379), + [anon_sym_public] = ACTIONS(3379), + [anon_sym_private] = ACTIONS(3379), + [anon_sym_protected] = ACTIONS(3379), + [anon_sym_override] = ACTIONS(3379), + [anon_sym_module] = ACTIONS(3379), + [anon_sym_any] = ACTIONS(3379), + [anon_sym_number] = ACTIONS(3379), + [anon_sym_boolean] = ACTIONS(3379), + [anon_sym_string] = ACTIONS(3379), + [anon_sym_symbol] = ACTIONS(3379), + [anon_sym_object] = ACTIONS(3379), + [anon_sym_abstract] = ACTIONS(3379), + [anon_sym_interface] = ACTIONS(3379), + [anon_sym_enum] = ACTIONS(3379), [sym_html_comment] = ACTIONS(5), }, [1436] = { [sym_comment] = STATE(1436), - [ts_builtin_sym_end] = ACTIONS(3593), - [sym_identifier] = ACTIONS(3359), - [anon_sym_export] = ACTIONS(3359), - [anon_sym_type] = ACTIONS(3359), - [anon_sym_namespace] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_typeof] = ACTIONS(3359), - [anon_sym_import] = ACTIONS(3359), - [anon_sym_with] = ACTIONS(3359), - [anon_sym_var] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_const] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_else] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_switch] = ACTIONS(3359), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_await] = ACTIONS(3359), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_break] = ACTIONS(3359), - [anon_sym_continue] = ACTIONS(3359), - [anon_sym_debugger] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_throw] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LTtemplate_GT] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_SQUOTE] = ACTIONS(3359), - [anon_sym_class] = ACTIONS(3359), - [anon_sym_async] = ACTIONS(3359), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_using] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_void] = ACTIONS(3359), - [anon_sym_delete] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3359), - [anon_sym_DASH_DASH] = ACTIONS(3359), + [ts_builtin_sym_end] = ACTIONS(3633), + [sym_identifier] = ACTIONS(3375), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_type] = ACTIONS(3375), + [anon_sym_namespace] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_typeof] = ACTIONS(3375), + [anon_sym_import] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + [anon_sym_var] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_BANG] = ACTIONS(3375), + [anon_sym_else] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_switch] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_await] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_do] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_debugger] = ACTIONS(3375), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_throw] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_LTtemplate_GT] = ACTIONS(3375), + [anon_sym_DQUOTE] = ACTIONS(3375), + [anon_sym_SQUOTE] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_function] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_using] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [anon_sym_SLASH] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3375), + [anon_sym_void] = ACTIONS(3375), + [anon_sym_delete] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(3375), + [anon_sym_DASH_DASH] = ACTIONS(3375), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3359), - [sym_number] = ACTIONS(3359), - [sym_private_property_identifier] = ACTIONS(3359), - [sym_this] = ACTIONS(3359), - [sym_super] = ACTIONS(3359), - [sym_true] = ACTIONS(3359), - [sym_false] = ACTIONS(3359), - [sym_null] = ACTIONS(3359), - [sym_undefined] = ACTIONS(3359), - [anon_sym_AT] = ACTIONS(3359), - [anon_sym_static] = ACTIONS(3359), - [anon_sym_readonly] = ACTIONS(3359), - [anon_sym_get] = ACTIONS(3359), - [anon_sym_set] = ACTIONS(3359), - [anon_sym_declare] = ACTIONS(3359), - [anon_sym_public] = ACTIONS(3359), - [anon_sym_private] = ACTIONS(3359), - [anon_sym_protected] = ACTIONS(3359), - [anon_sym_override] = ACTIONS(3359), - [anon_sym_module] = ACTIONS(3359), - [anon_sym_any] = ACTIONS(3359), - [anon_sym_number] = ACTIONS(3359), - [anon_sym_boolean] = ACTIONS(3359), - [anon_sym_string] = ACTIONS(3359), - [anon_sym_symbol] = ACTIONS(3359), - [anon_sym_object] = ACTIONS(3359), - [anon_sym_abstract] = ACTIONS(3359), - [anon_sym_interface] = ACTIONS(3359), - [anon_sym_enum] = ACTIONS(3359), + [anon_sym_BQUOTE] = ACTIONS(3375), + [sym_number] = ACTIONS(3375), + [sym_private_property_identifier] = ACTIONS(3375), + [sym_this] = ACTIONS(3375), + [sym_super] = ACTIONS(3375), + [sym_true] = ACTIONS(3375), + [sym_false] = ACTIONS(3375), + [sym_null] = ACTIONS(3375), + [sym_undefined] = ACTIONS(3375), + [anon_sym_AT] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_get] = ACTIONS(3375), + [anon_sym_set] = ACTIONS(3375), + [anon_sym_declare] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_any] = ACTIONS(3375), + [anon_sym_number] = ACTIONS(3375), + [anon_sym_boolean] = ACTIONS(3375), + [anon_sym_string] = ACTIONS(3375), + [anon_sym_symbol] = ACTIONS(3375), + [anon_sym_object] = ACTIONS(3375), + [anon_sym_abstract] = ACTIONS(3375), + [anon_sym_interface] = ACTIONS(3375), + [anon_sym_enum] = ACTIONS(3375), [sym_html_comment] = ACTIONS(5), }, [1437] = { [sym_comment] = STATE(1437), - [sym_identifier] = ACTIONS(3457), - [anon_sym_export] = ACTIONS(3457), - [anon_sym_default] = ACTIONS(3457), - [anon_sym_type] = ACTIONS(3457), - [anon_sym_namespace] = ACTIONS(3457), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_RBRACE] = ACTIONS(3457), - [anon_sym_typeof] = ACTIONS(3457), - [anon_sym_import] = ACTIONS(3457), - [anon_sym_with] = ACTIONS(3457), - [anon_sym_var] = ACTIONS(3457), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_const] = ACTIONS(3457), - [anon_sym_BANG] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_switch] = ACTIONS(3457), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_await] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_break] = ACTIONS(3457), - [anon_sym_continue] = ACTIONS(3457), - [anon_sym_debugger] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_throw] = ACTIONS(3457), - [anon_sym_SEMI] = ACTIONS(3457), - [anon_sym_case] = ACTIONS(3457), - [anon_sym_yield] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_LTtemplate_GT] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [anon_sym_SQUOTE] = ACTIONS(3457), - [anon_sym_class] = ACTIONS(3457), - [anon_sym_async] = ACTIONS(3457), - [anon_sym_function] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_using] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_SLASH] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3457), - [anon_sym_void] = ACTIONS(3457), - [anon_sym_delete] = ACTIONS(3457), - [anon_sym_PLUS_PLUS] = ACTIONS(3457), - [anon_sym_DASH_DASH] = ACTIONS(3457), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3457), - [sym_number] = ACTIONS(3457), - [sym_private_property_identifier] = ACTIONS(3457), - [sym_this] = ACTIONS(3457), - [sym_super] = ACTIONS(3457), - [sym_true] = ACTIONS(3457), - [sym_false] = ACTIONS(3457), - [sym_null] = ACTIONS(3457), - [sym_undefined] = ACTIONS(3457), - [anon_sym_AT] = ACTIONS(3457), - [anon_sym_static] = ACTIONS(3457), - [anon_sym_readonly] = ACTIONS(3457), - [anon_sym_get] = ACTIONS(3457), - [anon_sym_set] = ACTIONS(3457), - [anon_sym_declare] = ACTIONS(3457), - [anon_sym_public] = ACTIONS(3457), - [anon_sym_private] = ACTIONS(3457), - [anon_sym_protected] = ACTIONS(3457), - [anon_sym_override] = ACTIONS(3457), - [anon_sym_module] = ACTIONS(3457), - [anon_sym_any] = ACTIONS(3457), - [anon_sym_number] = ACTIONS(3457), - [anon_sym_boolean] = ACTIONS(3457), - [anon_sym_string] = ACTIONS(3457), - [anon_sym_symbol] = ACTIONS(3457), - [anon_sym_object] = ACTIONS(3457), - [anon_sym_abstract] = ACTIONS(3457), - [anon_sym_interface] = ACTIONS(3457), - [anon_sym_enum] = ACTIONS(3457), + [sym_identifier] = ACTIONS(3267), + [anon_sym_export] = ACTIONS(3267), + [anon_sym_default] = ACTIONS(3267), + [anon_sym_type] = ACTIONS(3267), + [anon_sym_namespace] = ACTIONS(3267), + [anon_sym_LBRACE] = ACTIONS(3267), + [anon_sym_RBRACE] = ACTIONS(3267), + [anon_sym_typeof] = ACTIONS(3267), + [anon_sym_import] = ACTIONS(3267), + [anon_sym_with] = ACTIONS(3267), + [anon_sym_var] = ACTIONS(3267), + [anon_sym_let] = ACTIONS(3267), + [anon_sym_const] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3267), + [anon_sym_if] = ACTIONS(3267), + [anon_sym_switch] = ACTIONS(3267), + [anon_sym_for] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_await] = ACTIONS(3267), + [anon_sym_while] = ACTIONS(3267), + [anon_sym_do] = ACTIONS(3267), + [anon_sym_try] = ACTIONS(3267), + [anon_sym_break] = ACTIONS(3267), + [anon_sym_continue] = ACTIONS(3267), + [anon_sym_debugger] = ACTIONS(3267), + [anon_sym_return] = ACTIONS(3267), + [anon_sym_throw] = ACTIONS(3267), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_case] = ACTIONS(3267), + [anon_sym_yield] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_LTtemplate_GT] = ACTIONS(3267), + [anon_sym_DQUOTE] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [anon_sym_class] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3267), + [anon_sym_function] = ACTIONS(3267), + [anon_sym_new] = ACTIONS(3267), + [anon_sym_using] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3267), + [anon_sym_DASH] = ACTIONS(3267), + [anon_sym_SLASH] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3267), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_void] = ACTIONS(3267), + [anon_sym_delete] = ACTIONS(3267), + [anon_sym_PLUS_PLUS] = ACTIONS(3267), + [anon_sym_DASH_DASH] = ACTIONS(3267), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3267), + [sym_number] = ACTIONS(3267), + [sym_private_property_identifier] = ACTIONS(3267), + [sym_this] = ACTIONS(3267), + [sym_super] = ACTIONS(3267), + [sym_true] = ACTIONS(3267), + [sym_false] = ACTIONS(3267), + [sym_null] = ACTIONS(3267), + [sym_undefined] = ACTIONS(3267), + [anon_sym_AT] = ACTIONS(3267), + [anon_sym_static] = ACTIONS(3267), + [anon_sym_readonly] = ACTIONS(3267), + [anon_sym_get] = ACTIONS(3267), + [anon_sym_set] = ACTIONS(3267), + [anon_sym_declare] = ACTIONS(3267), + [anon_sym_public] = ACTIONS(3267), + [anon_sym_private] = ACTIONS(3267), + [anon_sym_protected] = ACTIONS(3267), + [anon_sym_override] = ACTIONS(3267), + [anon_sym_module] = ACTIONS(3267), + [anon_sym_any] = ACTIONS(3267), + [anon_sym_number] = ACTIONS(3267), + [anon_sym_boolean] = ACTIONS(3267), + [anon_sym_string] = ACTIONS(3267), + [anon_sym_symbol] = ACTIONS(3267), + [anon_sym_object] = ACTIONS(3267), + [anon_sym_abstract] = ACTIONS(3267), + [anon_sym_interface] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3267), [sym_html_comment] = ACTIONS(5), }, [1438] = { [sym_comment] = STATE(1438), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(3635), + [sym_identifier] = ACTIONS(3225), + [anon_sym_export] = ACTIONS(3225), + [anon_sym_type] = ACTIONS(3225), + [anon_sym_namespace] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_typeof] = ACTIONS(3225), + [anon_sym_import] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(3225), + [anon_sym_var] = ACTIONS(3225), + [anon_sym_let] = ACTIONS(3225), + [anon_sym_const] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_else] = ACTIONS(3225), + [anon_sym_if] = ACTIONS(3225), + [anon_sym_switch] = ACTIONS(3225), + [anon_sym_for] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym_await] = ACTIONS(3225), + [anon_sym_while] = ACTIONS(3225), + [anon_sym_do] = ACTIONS(3225), + [anon_sym_try] = ACTIONS(3225), + [anon_sym_break] = ACTIONS(3225), + [anon_sym_continue] = ACTIONS(3225), + [anon_sym_debugger] = ACTIONS(3225), + [anon_sym_return] = ACTIONS(3225), + [anon_sym_throw] = ACTIONS(3225), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym_yield] = ACTIONS(3225), + [anon_sym_LBRACK] = ACTIONS(3225), + [anon_sym_LTtemplate_GT] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [anon_sym_SQUOTE] = ACTIONS(3225), + [anon_sym_class] = ACTIONS(3225), + [anon_sym_async] = ACTIONS(3225), + [anon_sym_function] = ACTIONS(3225), + [anon_sym_new] = ACTIONS(3225), + [anon_sym_using] = ACTIONS(3225), + [anon_sym_PLUS] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3225), + [anon_sym_SLASH] = ACTIONS(3225), + [anon_sym_LT] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_void] = ACTIONS(3225), + [anon_sym_delete] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_DASH_DASH] = ACTIONS(3225), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3225), + [sym_number] = ACTIONS(3225), + [sym_private_property_identifier] = ACTIONS(3225), + [sym_this] = ACTIONS(3225), + [sym_super] = ACTIONS(3225), + [sym_true] = ACTIONS(3225), + [sym_false] = ACTIONS(3225), + [sym_null] = ACTIONS(3225), + [sym_undefined] = ACTIONS(3225), + [anon_sym_AT] = ACTIONS(3225), + [anon_sym_static] = ACTIONS(3225), + [anon_sym_readonly] = ACTIONS(3225), + [anon_sym_get] = ACTIONS(3225), + [anon_sym_set] = ACTIONS(3225), + [anon_sym_declare] = ACTIONS(3225), + [anon_sym_public] = ACTIONS(3225), + [anon_sym_private] = ACTIONS(3225), + [anon_sym_protected] = ACTIONS(3225), + [anon_sym_override] = ACTIONS(3225), + [anon_sym_module] = ACTIONS(3225), + [anon_sym_any] = ACTIONS(3225), + [anon_sym_number] = ACTIONS(3225), + [anon_sym_boolean] = ACTIONS(3225), + [anon_sym_string] = ACTIONS(3225), + [anon_sym_symbol] = ACTIONS(3225), + [anon_sym_object] = ACTIONS(3225), + [anon_sym_abstract] = ACTIONS(3225), + [anon_sym_interface] = ACTIONS(3225), + [anon_sym_enum] = ACTIONS(3225), [sym_html_comment] = ACTIONS(5), }, [1439] = { [sym_comment] = STATE(1439), - [sym_identifier] = ACTIONS(3229), - [anon_sym_export] = ACTIONS(3229), - [anon_sym_default] = ACTIONS(3229), - [anon_sym_type] = ACTIONS(3229), - [anon_sym_namespace] = ACTIONS(3229), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_typeof] = ACTIONS(3229), - [anon_sym_import] = ACTIONS(3229), - [anon_sym_with] = ACTIONS(3229), - [anon_sym_var] = ACTIONS(3229), - [anon_sym_let] = ACTIONS(3229), - [anon_sym_const] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3229), - [anon_sym_switch] = ACTIONS(3229), - [anon_sym_for] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_await] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3229), - [anon_sym_do] = ACTIONS(3229), - [anon_sym_try] = ACTIONS(3229), - [anon_sym_break] = ACTIONS(3229), - [anon_sym_continue] = ACTIONS(3229), - [anon_sym_debugger] = ACTIONS(3229), - [anon_sym_return] = ACTIONS(3229), - [anon_sym_throw] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_case] = ACTIONS(3229), - [anon_sym_yield] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_LTtemplate_GT] = ACTIONS(3229), - [anon_sym_DQUOTE] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_class] = ACTIONS(3229), - [anon_sym_async] = ACTIONS(3229), - [anon_sym_function] = ACTIONS(3229), - [anon_sym_new] = ACTIONS(3229), - [anon_sym_using] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_void] = ACTIONS(3229), - [anon_sym_delete] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3229), - [sym_number] = ACTIONS(3229), - [sym_private_property_identifier] = ACTIONS(3229), - [sym_this] = ACTIONS(3229), - [sym_super] = ACTIONS(3229), - [sym_true] = ACTIONS(3229), - [sym_false] = ACTIONS(3229), - [sym_null] = ACTIONS(3229), - [sym_undefined] = ACTIONS(3229), - [anon_sym_AT] = ACTIONS(3229), - [anon_sym_static] = ACTIONS(3229), - [anon_sym_readonly] = ACTIONS(3229), - [anon_sym_get] = ACTIONS(3229), - [anon_sym_set] = ACTIONS(3229), - [anon_sym_declare] = ACTIONS(3229), - [anon_sym_public] = ACTIONS(3229), - [anon_sym_private] = ACTIONS(3229), - [anon_sym_protected] = ACTIONS(3229), - [anon_sym_override] = ACTIONS(3229), - [anon_sym_module] = ACTIONS(3229), - [anon_sym_any] = ACTIONS(3229), - [anon_sym_number] = ACTIONS(3229), - [anon_sym_boolean] = ACTIONS(3229), - [anon_sym_string] = ACTIONS(3229), - [anon_sym_symbol] = ACTIONS(3229), - [anon_sym_object] = ACTIONS(3229), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_interface] = ACTIONS(3229), - [anon_sym_enum] = ACTIONS(3229), + [ts_builtin_sym_end] = ACTIONS(3637), + [sym_identifier] = ACTIONS(3217), + [anon_sym_export] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_namespace] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_typeof] = ACTIONS(3217), + [anon_sym_import] = ACTIONS(3217), + [anon_sym_with] = ACTIONS(3217), + [anon_sym_var] = ACTIONS(3217), + [anon_sym_let] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_else] = ACTIONS(3217), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3217), + [anon_sym_while] = ACTIONS(3217), + [anon_sym_do] = ACTIONS(3217), + [anon_sym_try] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_debugger] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_throw] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LTtemplate_GT] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_class] = ACTIONS(3217), + [anon_sym_async] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3217), + [anon_sym_using] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_void] = ACTIONS(3217), + [anon_sym_delete] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3217), + [sym_number] = ACTIONS(3217), + [sym_private_property_identifier] = ACTIONS(3217), + [sym_this] = ACTIONS(3217), + [sym_super] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_null] = ACTIONS(3217), + [sym_undefined] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(3217), + [anon_sym_static] = ACTIONS(3217), + [anon_sym_readonly] = ACTIONS(3217), + [anon_sym_get] = ACTIONS(3217), + [anon_sym_set] = ACTIONS(3217), + [anon_sym_declare] = ACTIONS(3217), + [anon_sym_public] = ACTIONS(3217), + [anon_sym_private] = ACTIONS(3217), + [anon_sym_protected] = ACTIONS(3217), + [anon_sym_override] = ACTIONS(3217), + [anon_sym_module] = ACTIONS(3217), + [anon_sym_any] = ACTIONS(3217), + [anon_sym_number] = ACTIONS(3217), + [anon_sym_boolean] = ACTIONS(3217), + [anon_sym_string] = ACTIONS(3217), + [anon_sym_symbol] = ACTIONS(3217), + [anon_sym_object] = ACTIONS(3217), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), [sym_html_comment] = ACTIONS(5), }, [1440] = { [sym_comment] = STATE(1440), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2140), - [anon_sym_LTtemplate_GT] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [anon_sym_SQUOTE] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_using] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2140), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2140), - [anon_sym_DASH_DASH] = ACTIONS(2140), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2140), - [sym_number] = ACTIONS(2140), - [sym_private_property_identifier] = ACTIONS(2140), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2140), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_override] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_object] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(2368), + [ts_builtin_sym_end] = ACTIONS(2222), + [sym_identifier] = ACTIONS(2142), + [anon_sym_export] = ACTIONS(2142), + [anon_sym_type] = ACTIONS(2142), + [anon_sym_namespace] = ACTIONS(2142), + [anon_sym_LBRACE] = ACTIONS(2142), + [anon_sym_RBRACE] = ACTIONS(2142), + [anon_sym_typeof] = ACTIONS(2142), + [anon_sym_import] = ACTIONS(2142), + [anon_sym_with] = ACTIONS(2142), + [anon_sym_var] = ACTIONS(2142), + [anon_sym_let] = ACTIONS(2142), + [anon_sym_const] = ACTIONS(2142), + [anon_sym_BANG] = ACTIONS(2142), + [anon_sym_if] = ACTIONS(2142), + [anon_sym_switch] = ACTIONS(2142), + [anon_sym_for] = ACTIONS(2142), + [anon_sym_LPAREN] = ACTIONS(2142), + [anon_sym_await] = ACTIONS(2142), + [anon_sym_while] = ACTIONS(2142), + [anon_sym_do] = ACTIONS(2142), + [anon_sym_try] = ACTIONS(2142), + [anon_sym_break] = ACTIONS(2142), + [anon_sym_continue] = ACTIONS(2142), + [anon_sym_debugger] = ACTIONS(2142), + [anon_sym_return] = ACTIONS(2142), + [anon_sym_throw] = ACTIONS(2142), + [anon_sym_SEMI] = ACTIONS(2142), + [anon_sym_yield] = ACTIONS(2142), + [anon_sym_LBRACK] = ACTIONS(2142), + [anon_sym_LTtemplate_GT] = ACTIONS(2142), + [anon_sym_DQUOTE] = ACTIONS(2142), + [anon_sym_SQUOTE] = ACTIONS(2142), + [anon_sym_class] = ACTIONS(2142), + [anon_sym_async] = ACTIONS(2142), + [anon_sym_function] = ACTIONS(2142), + [anon_sym_new] = ACTIONS(2142), + [anon_sym_using] = ACTIONS(2142), + [anon_sym_PLUS] = ACTIONS(2142), + [anon_sym_DASH] = ACTIONS(2142), + [anon_sym_SLASH] = ACTIONS(2142), + [anon_sym_LT] = ACTIONS(2142), + [anon_sym_TILDE] = ACTIONS(2142), + [anon_sym_void] = ACTIONS(2142), + [anon_sym_delete] = ACTIONS(2142), + [anon_sym_PLUS_PLUS] = ACTIONS(2142), + [anon_sym_DASH_DASH] = ACTIONS(2142), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2142), + [sym_number] = ACTIONS(2142), + [sym_private_property_identifier] = ACTIONS(2142), + [sym_this] = ACTIONS(2142), + [sym_super] = ACTIONS(2142), + [sym_true] = ACTIONS(2142), + [sym_false] = ACTIONS(2142), + [sym_null] = ACTIONS(2142), + [sym_undefined] = ACTIONS(2142), + [anon_sym_AT] = ACTIONS(2142), + [anon_sym_static] = ACTIONS(2142), + [anon_sym_readonly] = ACTIONS(2142), + [anon_sym_get] = ACTIONS(2142), + [anon_sym_set] = ACTIONS(2142), + [anon_sym_declare] = ACTIONS(2142), + [anon_sym_public] = ACTIONS(2142), + [anon_sym_private] = ACTIONS(2142), + [anon_sym_protected] = ACTIONS(2142), + [anon_sym_override] = ACTIONS(2142), + [anon_sym_module] = ACTIONS(2142), + [anon_sym_any] = ACTIONS(2142), + [anon_sym_number] = ACTIONS(2142), + [anon_sym_boolean] = ACTIONS(2142), + [anon_sym_string] = ACTIONS(2142), + [anon_sym_symbol] = ACTIONS(2142), + [anon_sym_object] = ACTIONS(2142), + [anon_sym_abstract] = ACTIONS(2142), + [anon_sym_interface] = ACTIONS(2142), + [anon_sym_enum] = ACTIONS(2142), + [sym__automatic_semicolon] = ACTIONS(2394), [sym_html_comment] = ACTIONS(5), }, [1441] = { [sym_comment] = STATE(1441), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(2262), + [sym_identifier] = ACTIONS(2260), + [anon_sym_export] = ACTIONS(2260), + [anon_sym_type] = ACTIONS(2260), + [anon_sym_namespace] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_typeof] = ACTIONS(2260), + [anon_sym_import] = ACTIONS(2260), + [anon_sym_with] = ACTIONS(2260), + [anon_sym_var] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [anon_sym_BANG] = ACTIONS(2260), + [anon_sym_else] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_switch] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_await] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), + [anon_sym_try] = ACTIONS(2260), + [anon_sym_break] = ACTIONS(2260), + [anon_sym_continue] = ACTIONS(2260), + [anon_sym_debugger] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_throw] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_yield] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_LTtemplate_GT] = ACTIONS(2260), + [anon_sym_DQUOTE] = ACTIONS(2260), + [anon_sym_SQUOTE] = ACTIONS(2260), + [anon_sym_class] = ACTIONS(2260), + [anon_sym_async] = ACTIONS(2260), + [anon_sym_function] = ACTIONS(2260), + [anon_sym_new] = ACTIONS(2260), + [anon_sym_using] = ACTIONS(2260), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2260), + [anon_sym_TILDE] = ACTIONS(2260), + [anon_sym_void] = ACTIONS(2260), + [anon_sym_delete] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2260), + [sym_number] = ACTIONS(2260), + [sym_private_property_identifier] = ACTIONS(2260), + [sym_this] = ACTIONS(2260), + [sym_super] = ACTIONS(2260), + [sym_true] = ACTIONS(2260), + [sym_false] = ACTIONS(2260), + [sym_null] = ACTIONS(2260), + [sym_undefined] = ACTIONS(2260), + [anon_sym_AT] = ACTIONS(2260), + [anon_sym_static] = ACTIONS(2260), + [anon_sym_readonly] = ACTIONS(2260), + [anon_sym_get] = ACTIONS(2260), + [anon_sym_set] = ACTIONS(2260), + [anon_sym_declare] = ACTIONS(2260), + [anon_sym_public] = ACTIONS(2260), + [anon_sym_private] = ACTIONS(2260), + [anon_sym_protected] = ACTIONS(2260), + [anon_sym_override] = ACTIONS(2260), + [anon_sym_module] = ACTIONS(2260), + [anon_sym_any] = ACTIONS(2260), + [anon_sym_number] = ACTIONS(2260), + [anon_sym_boolean] = ACTIONS(2260), + [anon_sym_string] = ACTIONS(2260), + [anon_sym_symbol] = ACTIONS(2260), + [anon_sym_object] = ACTIONS(2260), + [anon_sym_abstract] = ACTIONS(2260), + [anon_sym_interface] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), [sym_html_comment] = ACTIONS(5), }, [1442] = { [sym_comment] = STATE(1442), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(2252), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_else] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), [sym_html_comment] = ACTIONS(5), }, [1443] = { [sym_comment] = STATE(1443), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(3639), + [sym_identifier] = ACTIONS(3223), + [anon_sym_export] = ACTIONS(3223), + [anon_sym_type] = ACTIONS(3223), + [anon_sym_namespace] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3223), + [anon_sym_RBRACE] = ACTIONS(3223), + [anon_sym_typeof] = ACTIONS(3223), + [anon_sym_import] = ACTIONS(3223), + [anon_sym_with] = ACTIONS(3223), + [anon_sym_var] = ACTIONS(3223), + [anon_sym_let] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_BANG] = ACTIONS(3223), + [anon_sym_else] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_switch] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_await] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_do] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_debugger] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_throw] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3223), + [anon_sym_yield] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_LTtemplate_GT] = ACTIONS(3223), + [anon_sym_DQUOTE] = ACTIONS(3223), + [anon_sym_SQUOTE] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_async] = ACTIONS(3223), + [anon_sym_function] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_SLASH] = ACTIONS(3223), + [anon_sym_LT] = ACTIONS(3223), + [anon_sym_TILDE] = ACTIONS(3223), + [anon_sym_void] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(3223), + [anon_sym_PLUS_PLUS] = ACTIONS(3223), + [anon_sym_DASH_DASH] = ACTIONS(3223), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3223), + [sym_number] = ACTIONS(3223), + [sym_private_property_identifier] = ACTIONS(3223), + [sym_this] = ACTIONS(3223), + [sym_super] = ACTIONS(3223), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [sym_null] = ACTIONS(3223), + [sym_undefined] = ACTIONS(3223), + [anon_sym_AT] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_readonly] = ACTIONS(3223), + [anon_sym_get] = ACTIONS(3223), + [anon_sym_set] = ACTIONS(3223), + [anon_sym_declare] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_private] = ACTIONS(3223), + [anon_sym_protected] = ACTIONS(3223), + [anon_sym_override] = ACTIONS(3223), + [anon_sym_module] = ACTIONS(3223), + [anon_sym_any] = ACTIONS(3223), + [anon_sym_number] = ACTIONS(3223), + [anon_sym_boolean] = ACTIONS(3223), + [anon_sym_string] = ACTIONS(3223), + [anon_sym_symbol] = ACTIONS(3223), + [anon_sym_object] = ACTIONS(3223), + [anon_sym_abstract] = ACTIONS(3223), + [anon_sym_interface] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), [sym_html_comment] = ACTIONS(5), }, [1444] = { [sym_comment] = STATE(1444), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(3641), + [sym_identifier] = ACTIONS(3289), + [anon_sym_export] = ACTIONS(3289), + [anon_sym_type] = ACTIONS(3289), + [anon_sym_namespace] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_RBRACE] = ACTIONS(3289), + [anon_sym_typeof] = ACTIONS(3289), + [anon_sym_import] = ACTIONS(3289), + [anon_sym_with] = ACTIONS(3289), + [anon_sym_var] = ACTIONS(3289), + [anon_sym_let] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_else] = ACTIONS(3289), + [anon_sym_if] = ACTIONS(3289), + [anon_sym_switch] = ACTIONS(3289), + [anon_sym_for] = ACTIONS(3289), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_await] = ACTIONS(3289), + [anon_sym_while] = ACTIONS(3289), + [anon_sym_do] = ACTIONS(3289), + [anon_sym_try] = ACTIONS(3289), + [anon_sym_break] = ACTIONS(3289), + [anon_sym_continue] = ACTIONS(3289), + [anon_sym_debugger] = ACTIONS(3289), + [anon_sym_return] = ACTIONS(3289), + [anon_sym_throw] = ACTIONS(3289), + [anon_sym_SEMI] = ACTIONS(3289), + [anon_sym_yield] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_LTtemplate_GT] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(3289), + [anon_sym_SQUOTE] = ACTIONS(3289), + [anon_sym_class] = ACTIONS(3289), + [anon_sym_async] = ACTIONS(3289), + [anon_sym_function] = ACTIONS(3289), + [anon_sym_new] = ACTIONS(3289), + [anon_sym_using] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_SLASH] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_void] = ACTIONS(3289), + [anon_sym_delete] = ACTIONS(3289), + [anon_sym_PLUS_PLUS] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3289), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3289), + [sym_number] = ACTIONS(3289), + [sym_private_property_identifier] = ACTIONS(3289), + [sym_this] = ACTIONS(3289), + [sym_super] = ACTIONS(3289), + [sym_true] = ACTIONS(3289), + [sym_false] = ACTIONS(3289), + [sym_null] = ACTIONS(3289), + [sym_undefined] = ACTIONS(3289), + [anon_sym_AT] = ACTIONS(3289), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_readonly] = ACTIONS(3289), + [anon_sym_get] = ACTIONS(3289), + [anon_sym_set] = ACTIONS(3289), + [anon_sym_declare] = ACTIONS(3289), + [anon_sym_public] = ACTIONS(3289), + [anon_sym_private] = ACTIONS(3289), + [anon_sym_protected] = ACTIONS(3289), + [anon_sym_override] = ACTIONS(3289), + [anon_sym_module] = ACTIONS(3289), + [anon_sym_any] = ACTIONS(3289), + [anon_sym_number] = ACTIONS(3289), + [anon_sym_boolean] = ACTIONS(3289), + [anon_sym_string] = ACTIONS(3289), + [anon_sym_symbol] = ACTIONS(3289), + [anon_sym_object] = ACTIONS(3289), + [anon_sym_abstract] = ACTIONS(3289), + [anon_sym_interface] = ACTIONS(3289), + [anon_sym_enum] = ACTIONS(3289), [sym_html_comment] = ACTIONS(5), }, [1445] = { [sym_comment] = STATE(1445), - [ts_builtin_sym_end] = ACTIONS(3595), - [sym_identifier] = ACTIONS(3285), - [anon_sym_export] = ACTIONS(3285), - [anon_sym_type] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_typeof] = ACTIONS(3285), - [anon_sym_import] = ACTIONS(3285), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_var] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3285), - [anon_sym_const] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_else] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3285), - [anon_sym_switch] = ACTIONS(3285), - [anon_sym_for] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_await] = ACTIONS(3285), - [anon_sym_while] = ACTIONS(3285), - [anon_sym_do] = ACTIONS(3285), - [anon_sym_try] = ACTIONS(3285), - [anon_sym_break] = ACTIONS(3285), - [anon_sym_continue] = ACTIONS(3285), - [anon_sym_debugger] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3285), - [anon_sym_throw] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LTtemplate_GT] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_SQUOTE] = ACTIONS(3285), - [anon_sym_class] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3285), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_using] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_void] = ACTIONS(3285), - [anon_sym_delete] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), + [sym_identifier] = ACTIONS(2182), + [anon_sym_export] = ACTIONS(2182), + [anon_sym_default] = ACTIONS(2182), + [anon_sym_type] = ACTIONS(2182), + [anon_sym_namespace] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(2182), + [anon_sym_typeof] = ACTIONS(2182), + [anon_sym_import] = ACTIONS(2182), + [anon_sym_with] = ACTIONS(2182), + [anon_sym_var] = ACTIONS(2182), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_BANG] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_switch] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_LPAREN] = ACTIONS(2182), + [anon_sym_await] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_do] = ACTIONS(2182), + [anon_sym_try] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_debugger] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_throw] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2182), + [anon_sym_case] = ACTIONS(2182), + [anon_sym_yield] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LTtemplate_GT] = ACTIONS(2182), + [anon_sym_DQUOTE] = ACTIONS(2182), + [anon_sym_SQUOTE] = ACTIONS(2182), + [anon_sym_class] = ACTIONS(2182), + [anon_sym_async] = ACTIONS(2182), + [anon_sym_function] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2182), + [anon_sym_using] = ACTIONS(2182), + [anon_sym_PLUS] = ACTIONS(2182), + [anon_sym_DASH] = ACTIONS(2182), + [anon_sym_SLASH] = ACTIONS(2182), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_TILDE] = ACTIONS(2182), + [anon_sym_void] = ACTIONS(2182), + [anon_sym_delete] = ACTIONS(2182), + [anon_sym_PLUS_PLUS] = ACTIONS(2182), + [anon_sym_DASH_DASH] = ACTIONS(2182), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3285), - [sym_number] = ACTIONS(3285), - [sym_private_property_identifier] = ACTIONS(3285), - [sym_this] = ACTIONS(3285), - [sym_super] = ACTIONS(3285), - [sym_true] = ACTIONS(3285), - [sym_false] = ACTIONS(3285), - [sym_null] = ACTIONS(3285), - [sym_undefined] = ACTIONS(3285), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_static] = ACTIONS(3285), - [anon_sym_readonly] = ACTIONS(3285), - [anon_sym_get] = ACTIONS(3285), - [anon_sym_set] = ACTIONS(3285), - [anon_sym_declare] = ACTIONS(3285), - [anon_sym_public] = ACTIONS(3285), - [anon_sym_private] = ACTIONS(3285), - [anon_sym_protected] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3285), - [anon_sym_module] = ACTIONS(3285), - [anon_sym_any] = ACTIONS(3285), - [anon_sym_number] = ACTIONS(3285), - [anon_sym_boolean] = ACTIONS(3285), - [anon_sym_string] = ACTIONS(3285), - [anon_sym_symbol] = ACTIONS(3285), - [anon_sym_object] = ACTIONS(3285), - [anon_sym_abstract] = ACTIONS(3285), - [anon_sym_interface] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(2182), + [sym_number] = ACTIONS(2182), + [sym_private_property_identifier] = ACTIONS(2182), + [sym_this] = ACTIONS(2182), + [sym_super] = ACTIONS(2182), + [sym_true] = ACTIONS(2182), + [sym_false] = ACTIONS(2182), + [sym_null] = ACTIONS(2182), + [sym_undefined] = ACTIONS(2182), + [anon_sym_AT] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_readonly] = ACTIONS(2182), + [anon_sym_get] = ACTIONS(2182), + [anon_sym_set] = ACTIONS(2182), + [anon_sym_declare] = ACTIONS(2182), + [anon_sym_public] = ACTIONS(2182), + [anon_sym_private] = ACTIONS(2182), + [anon_sym_protected] = ACTIONS(2182), + [anon_sym_override] = ACTIONS(2182), + [anon_sym_module] = ACTIONS(2182), + [anon_sym_any] = ACTIONS(2182), + [anon_sym_number] = ACTIONS(2182), + [anon_sym_boolean] = ACTIONS(2182), + [anon_sym_string] = ACTIONS(2182), + [anon_sym_symbol] = ACTIONS(2182), + [anon_sym_object] = ACTIONS(2182), + [anon_sym_abstract] = ACTIONS(2182), + [anon_sym_interface] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), [sym_html_comment] = ACTIONS(5), }, [1446] = { [sym_comment] = STATE(1446), + [ts_builtin_sym_end] = ACTIONS(3643), [sym_identifier] = ACTIONS(3459), [anon_sym_export] = ACTIONS(3459), - [anon_sym_default] = ACTIONS(3459), [anon_sym_type] = ACTIONS(3459), [anon_sym_namespace] = ACTIONS(3459), [anon_sym_LBRACE] = ACTIONS(3459), @@ -181156,6 +180837,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3459), [anon_sym_const] = ACTIONS(3459), [anon_sym_BANG] = ACTIONS(3459), + [anon_sym_else] = ACTIONS(3459), [anon_sym_if] = ACTIONS(3459), [anon_sym_switch] = ACTIONS(3459), [anon_sym_for] = ACTIONS(3459), @@ -181170,7 +180852,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3459), [anon_sym_throw] = ACTIONS(3459), [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_case] = ACTIONS(3459), [anon_sym_yield] = ACTIONS(3459), [anon_sym_LBRACK] = ACTIONS(3459), [anon_sym_LTtemplate_GT] = ACTIONS(3459), @@ -181224,2961 +180905,3863 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { }, [1447] = { [sym_comment] = STATE(1447), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(3645), + [sym_identifier] = ACTIONS(3353), + [anon_sym_export] = ACTIONS(3353), + [anon_sym_type] = ACTIONS(3353), + [anon_sym_namespace] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3353), + [anon_sym_RBRACE] = ACTIONS(3353), + [anon_sym_typeof] = ACTIONS(3353), + [anon_sym_import] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3353), + [anon_sym_var] = ACTIONS(3353), + [anon_sym_let] = ACTIONS(3353), + [anon_sym_const] = ACTIONS(3353), + [anon_sym_BANG] = ACTIONS(3353), + [anon_sym_else] = ACTIONS(3353), + [anon_sym_if] = ACTIONS(3353), + [anon_sym_switch] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3353), + [anon_sym_await] = ACTIONS(3353), + [anon_sym_while] = ACTIONS(3353), + [anon_sym_do] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3353), + [anon_sym_break] = ACTIONS(3353), + [anon_sym_continue] = ACTIONS(3353), + [anon_sym_debugger] = ACTIONS(3353), + [anon_sym_return] = ACTIONS(3353), + [anon_sym_throw] = ACTIONS(3353), + [anon_sym_SEMI] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3353), + [anon_sym_LBRACK] = ACTIONS(3353), + [anon_sym_LTtemplate_GT] = ACTIONS(3353), + [anon_sym_DQUOTE] = ACTIONS(3353), + [anon_sym_SQUOTE] = ACTIONS(3353), + [anon_sym_class] = ACTIONS(3353), + [anon_sym_async] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3353), + [anon_sym_using] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3353), + [anon_sym_DASH] = ACTIONS(3353), + [anon_sym_SLASH] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [anon_sym_void] = ACTIONS(3353), + [anon_sym_delete] = ACTIONS(3353), + [anon_sym_PLUS_PLUS] = ACTIONS(3353), + [anon_sym_DASH_DASH] = ACTIONS(3353), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3353), + [sym_number] = ACTIONS(3353), + [sym_private_property_identifier] = ACTIONS(3353), + [sym_this] = ACTIONS(3353), + [sym_super] = ACTIONS(3353), + [sym_true] = ACTIONS(3353), + [sym_false] = ACTIONS(3353), + [sym_null] = ACTIONS(3353), + [sym_undefined] = ACTIONS(3353), + [anon_sym_AT] = ACTIONS(3353), + [anon_sym_static] = ACTIONS(3353), + [anon_sym_readonly] = ACTIONS(3353), + [anon_sym_get] = ACTIONS(3353), + [anon_sym_set] = ACTIONS(3353), + [anon_sym_declare] = ACTIONS(3353), + [anon_sym_public] = ACTIONS(3353), + [anon_sym_private] = ACTIONS(3353), + [anon_sym_protected] = ACTIONS(3353), + [anon_sym_override] = ACTIONS(3353), + [anon_sym_module] = ACTIONS(3353), + [anon_sym_any] = ACTIONS(3353), + [anon_sym_number] = ACTIONS(3353), + [anon_sym_boolean] = ACTIONS(3353), + [anon_sym_string] = ACTIONS(3353), + [anon_sym_symbol] = ACTIONS(3353), + [anon_sym_object] = ACTIONS(3353), + [anon_sym_abstract] = ACTIONS(3353), + [anon_sym_interface] = ACTIONS(3353), + [anon_sym_enum] = ACTIONS(3353), [sym_html_comment] = ACTIONS(5), }, [1448] = { [sym_comment] = STATE(1448), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(3647), + [sym_identifier] = ACTIONS(3359), + [anon_sym_export] = ACTIONS(3359), + [anon_sym_type] = ACTIONS(3359), + [anon_sym_namespace] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3359), + [anon_sym_RBRACE] = ACTIONS(3359), + [anon_sym_typeof] = ACTIONS(3359), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_with] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [anon_sym_let] = ACTIONS(3359), + [anon_sym_const] = ACTIONS(3359), + [anon_sym_BANG] = ACTIONS(3359), + [anon_sym_else] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3359), + [anon_sym_await] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_debugger] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_yield] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3359), + [anon_sym_LTtemplate_GT] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_SQUOTE] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_async] = ACTIONS(3359), + [anon_sym_function] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3359), + [anon_sym_void] = ACTIONS(3359), + [anon_sym_delete] = ACTIONS(3359), + [anon_sym_PLUS_PLUS] = ACTIONS(3359), + [anon_sym_DASH_DASH] = ACTIONS(3359), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3359), + [sym_number] = ACTIONS(3359), + [sym_private_property_identifier] = ACTIONS(3359), + [sym_this] = ACTIONS(3359), + [sym_super] = ACTIONS(3359), + [sym_true] = ACTIONS(3359), + [sym_false] = ACTIONS(3359), + [sym_null] = ACTIONS(3359), + [sym_undefined] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_readonly] = ACTIONS(3359), + [anon_sym_get] = ACTIONS(3359), + [anon_sym_set] = ACTIONS(3359), + [anon_sym_declare] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_protected] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_module] = ACTIONS(3359), + [anon_sym_any] = ACTIONS(3359), + [anon_sym_number] = ACTIONS(3359), + [anon_sym_boolean] = ACTIONS(3359), + [anon_sym_string] = ACTIONS(3359), + [anon_sym_symbol] = ACTIONS(3359), + [anon_sym_object] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), [sym_html_comment] = ACTIONS(5), }, [1449] = { [sym_comment] = STATE(1449), - [ts_builtin_sym_end] = ACTIONS(3597), - [sym_identifier] = ACTIONS(3287), - [anon_sym_export] = ACTIONS(3287), - [anon_sym_type] = ACTIONS(3287), - [anon_sym_namespace] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(3287), - [anon_sym_typeof] = ACTIONS(3287), - [anon_sym_import] = ACTIONS(3287), - [anon_sym_with] = ACTIONS(3287), - [anon_sym_var] = ACTIONS(3287), - [anon_sym_let] = ACTIONS(3287), - [anon_sym_const] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3287), - [anon_sym_else] = ACTIONS(3287), - [anon_sym_if] = ACTIONS(3287), - [anon_sym_switch] = ACTIONS(3287), - [anon_sym_for] = ACTIONS(3287), - [anon_sym_LPAREN] = ACTIONS(3287), - [anon_sym_await] = ACTIONS(3287), - [anon_sym_while] = ACTIONS(3287), - [anon_sym_do] = ACTIONS(3287), - [anon_sym_try] = ACTIONS(3287), - [anon_sym_break] = ACTIONS(3287), - [anon_sym_continue] = ACTIONS(3287), - [anon_sym_debugger] = ACTIONS(3287), - [anon_sym_return] = ACTIONS(3287), - [anon_sym_throw] = ACTIONS(3287), - [anon_sym_SEMI] = ACTIONS(3287), - [anon_sym_yield] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(3287), - [anon_sym_LTtemplate_GT] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(3287), - [anon_sym_SQUOTE] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3287), - [anon_sym_async] = ACTIONS(3287), - [anon_sym_function] = ACTIONS(3287), - [anon_sym_new] = ACTIONS(3287), - [anon_sym_using] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3287), - [anon_sym_DASH] = ACTIONS(3287), - [anon_sym_SLASH] = ACTIONS(3287), - [anon_sym_LT] = ACTIONS(3287), - [anon_sym_TILDE] = ACTIONS(3287), - [anon_sym_void] = ACTIONS(3287), - [anon_sym_delete] = ACTIONS(3287), - [anon_sym_PLUS_PLUS] = ACTIONS(3287), - [anon_sym_DASH_DASH] = ACTIONS(3287), + [ts_builtin_sym_end] = ACTIONS(3649), + [sym_identifier] = ACTIONS(3455), + [anon_sym_export] = ACTIONS(3455), + [anon_sym_type] = ACTIONS(3455), + [anon_sym_namespace] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3455), + [anon_sym_RBRACE] = ACTIONS(3455), + [anon_sym_typeof] = ACTIONS(3455), + [anon_sym_import] = ACTIONS(3455), + [anon_sym_with] = ACTIONS(3455), + [anon_sym_var] = ACTIONS(3455), + [anon_sym_let] = ACTIONS(3455), + [anon_sym_const] = ACTIONS(3455), + [anon_sym_BANG] = ACTIONS(3455), + [anon_sym_else] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_switch] = ACTIONS(3455), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_LPAREN] = ACTIONS(3455), + [anon_sym_await] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_break] = ACTIONS(3455), + [anon_sym_continue] = ACTIONS(3455), + [anon_sym_debugger] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_throw] = ACTIONS(3455), + [anon_sym_SEMI] = ACTIONS(3455), + [anon_sym_yield] = ACTIONS(3455), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_LTtemplate_GT] = ACTIONS(3455), + [anon_sym_DQUOTE] = ACTIONS(3455), + [anon_sym_SQUOTE] = ACTIONS(3455), + [anon_sym_class] = ACTIONS(3455), + [anon_sym_async] = ACTIONS(3455), + [anon_sym_function] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_using] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_SLASH] = ACTIONS(3455), + [anon_sym_LT] = ACTIONS(3455), + [anon_sym_TILDE] = ACTIONS(3455), + [anon_sym_void] = ACTIONS(3455), + [anon_sym_delete] = ACTIONS(3455), + [anon_sym_PLUS_PLUS] = ACTIONS(3455), + [anon_sym_DASH_DASH] = ACTIONS(3455), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3287), - [sym_number] = ACTIONS(3287), - [sym_private_property_identifier] = ACTIONS(3287), - [sym_this] = ACTIONS(3287), - [sym_super] = ACTIONS(3287), - [sym_true] = ACTIONS(3287), - [sym_false] = ACTIONS(3287), - [sym_null] = ACTIONS(3287), - [sym_undefined] = ACTIONS(3287), - [anon_sym_AT] = ACTIONS(3287), - [anon_sym_static] = ACTIONS(3287), - [anon_sym_readonly] = ACTIONS(3287), - [anon_sym_get] = ACTIONS(3287), - [anon_sym_set] = ACTIONS(3287), - [anon_sym_declare] = ACTIONS(3287), - [anon_sym_public] = ACTIONS(3287), - [anon_sym_private] = ACTIONS(3287), - [anon_sym_protected] = ACTIONS(3287), - [anon_sym_override] = ACTIONS(3287), - [anon_sym_module] = ACTIONS(3287), - [anon_sym_any] = ACTIONS(3287), - [anon_sym_number] = ACTIONS(3287), - [anon_sym_boolean] = ACTIONS(3287), - [anon_sym_string] = ACTIONS(3287), - [anon_sym_symbol] = ACTIONS(3287), - [anon_sym_object] = ACTIONS(3287), - [anon_sym_abstract] = ACTIONS(3287), - [anon_sym_interface] = ACTIONS(3287), - [anon_sym_enum] = ACTIONS(3287), + [anon_sym_BQUOTE] = ACTIONS(3455), + [sym_number] = ACTIONS(3455), + [sym_private_property_identifier] = ACTIONS(3455), + [sym_this] = ACTIONS(3455), + [sym_super] = ACTIONS(3455), + [sym_true] = ACTIONS(3455), + [sym_false] = ACTIONS(3455), + [sym_null] = ACTIONS(3455), + [sym_undefined] = ACTIONS(3455), + [anon_sym_AT] = ACTIONS(3455), + [anon_sym_static] = ACTIONS(3455), + [anon_sym_readonly] = ACTIONS(3455), + [anon_sym_get] = ACTIONS(3455), + [anon_sym_set] = ACTIONS(3455), + [anon_sym_declare] = ACTIONS(3455), + [anon_sym_public] = ACTIONS(3455), + [anon_sym_private] = ACTIONS(3455), + [anon_sym_protected] = ACTIONS(3455), + [anon_sym_override] = ACTIONS(3455), + [anon_sym_module] = ACTIONS(3455), + [anon_sym_any] = ACTIONS(3455), + [anon_sym_number] = ACTIONS(3455), + [anon_sym_boolean] = ACTIONS(3455), + [anon_sym_string] = ACTIONS(3455), + [anon_sym_symbol] = ACTIONS(3455), + [anon_sym_object] = ACTIONS(3455), + [anon_sym_abstract] = ACTIONS(3455), + [anon_sym_interface] = ACTIONS(3455), + [anon_sym_enum] = ACTIONS(3455), [sym_html_comment] = ACTIONS(5), }, [1450] = { [sym_comment] = STATE(1450), - [sym_identifier] = ACTIONS(3243), - [anon_sym_export] = ACTIONS(3243), - [anon_sym_default] = ACTIONS(3243), - [anon_sym_type] = ACTIONS(3243), - [anon_sym_namespace] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_RBRACE] = ACTIONS(3243), - [anon_sym_typeof] = ACTIONS(3243), - [anon_sym_import] = ACTIONS(3243), - [anon_sym_with] = ACTIONS(3243), - [anon_sym_var] = ACTIONS(3243), - [anon_sym_let] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_switch] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3243), - [anon_sym_await] = ACTIONS(3243), - [anon_sym_while] = ACTIONS(3243), - [anon_sym_do] = ACTIONS(3243), - [anon_sym_try] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_debugger] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_throw] = ACTIONS(3243), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_case] = ACTIONS(3243), - [anon_sym_yield] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_LTtemplate_GT] = ACTIONS(3243), - [anon_sym_DQUOTE] = ACTIONS(3243), - [anon_sym_SQUOTE] = ACTIONS(3243), - [anon_sym_class] = ACTIONS(3243), - [anon_sym_async] = ACTIONS(3243), - [anon_sym_function] = ACTIONS(3243), - [anon_sym_new] = ACTIONS(3243), - [anon_sym_using] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_SLASH] = ACTIONS(3243), - [anon_sym_LT] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_void] = ACTIONS(3243), - [anon_sym_delete] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3243), - [sym_number] = ACTIONS(3243), - [sym_private_property_identifier] = ACTIONS(3243), - [sym_this] = ACTIONS(3243), - [sym_super] = ACTIONS(3243), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [sym_null] = ACTIONS(3243), - [sym_undefined] = ACTIONS(3243), - [anon_sym_AT] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3243), - [anon_sym_readonly] = ACTIONS(3243), - [anon_sym_get] = ACTIONS(3243), - [anon_sym_set] = ACTIONS(3243), - [anon_sym_declare] = ACTIONS(3243), - [anon_sym_public] = ACTIONS(3243), - [anon_sym_private] = ACTIONS(3243), - [anon_sym_protected] = ACTIONS(3243), - [anon_sym_override] = ACTIONS(3243), - [anon_sym_module] = ACTIONS(3243), - [anon_sym_any] = ACTIONS(3243), - [anon_sym_number] = ACTIONS(3243), - [anon_sym_boolean] = ACTIONS(3243), - [anon_sym_string] = ACTIONS(3243), - [anon_sym_symbol] = ACTIONS(3243), - [anon_sym_object] = ACTIONS(3243), - [anon_sym_abstract] = ACTIONS(3243), - [anon_sym_interface] = ACTIONS(3243), - [anon_sym_enum] = ACTIONS(3243), + [sym_identifier] = ACTIONS(2182), + [anon_sym_export] = ACTIONS(2182), + [anon_sym_default] = ACTIONS(2182), + [anon_sym_type] = ACTIONS(2182), + [anon_sym_namespace] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(2182), + [anon_sym_typeof] = ACTIONS(2182), + [anon_sym_import] = ACTIONS(2182), + [anon_sym_with] = ACTIONS(2182), + [anon_sym_var] = ACTIONS(2182), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_BANG] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_switch] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_LPAREN] = ACTIONS(2182), + [anon_sym_await] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_do] = ACTIONS(2182), + [anon_sym_try] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_debugger] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_throw] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2182), + [anon_sym_case] = ACTIONS(2182), + [anon_sym_yield] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LTtemplate_GT] = ACTIONS(2182), + [anon_sym_DQUOTE] = ACTIONS(2182), + [anon_sym_SQUOTE] = ACTIONS(2182), + [anon_sym_class] = ACTIONS(2182), + [anon_sym_async] = ACTIONS(2182), + [anon_sym_function] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2182), + [anon_sym_using] = ACTIONS(2182), + [anon_sym_PLUS] = ACTIONS(2182), + [anon_sym_DASH] = ACTIONS(2182), + [anon_sym_SLASH] = ACTIONS(2182), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_TILDE] = ACTIONS(2182), + [anon_sym_void] = ACTIONS(2182), + [anon_sym_delete] = ACTIONS(2182), + [anon_sym_PLUS_PLUS] = ACTIONS(2182), + [anon_sym_DASH_DASH] = ACTIONS(2182), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2182), + [sym_number] = ACTIONS(2182), + [sym_private_property_identifier] = ACTIONS(2182), + [sym_this] = ACTIONS(2182), + [sym_super] = ACTIONS(2182), + [sym_true] = ACTIONS(2182), + [sym_false] = ACTIONS(2182), + [sym_null] = ACTIONS(2182), + [sym_undefined] = ACTIONS(2182), + [anon_sym_AT] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_readonly] = ACTIONS(2182), + [anon_sym_get] = ACTIONS(2182), + [anon_sym_set] = ACTIONS(2182), + [anon_sym_declare] = ACTIONS(2182), + [anon_sym_public] = ACTIONS(2182), + [anon_sym_private] = ACTIONS(2182), + [anon_sym_protected] = ACTIONS(2182), + [anon_sym_override] = ACTIONS(2182), + [anon_sym_module] = ACTIONS(2182), + [anon_sym_any] = ACTIONS(2182), + [anon_sym_number] = ACTIONS(2182), + [anon_sym_boolean] = ACTIONS(2182), + [anon_sym_string] = ACTIONS(2182), + [anon_sym_symbol] = ACTIONS(2182), + [anon_sym_object] = ACTIONS(2182), + [anon_sym_abstract] = ACTIONS(2182), + [anon_sym_interface] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), [sym_html_comment] = ACTIONS(5), }, [1451] = { [sym_comment] = STATE(1451), - [sym_identifier] = ACTIONS(3245), - [anon_sym_export] = ACTIONS(3245), - [anon_sym_default] = ACTIONS(3245), - [anon_sym_type] = ACTIONS(3245), - [anon_sym_namespace] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_typeof] = ACTIONS(3245), - [anon_sym_import] = ACTIONS(3245), - [anon_sym_with] = ACTIONS(3245), - [anon_sym_var] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_await] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_debugger] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_throw] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym_case] = ACTIONS(3245), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_LTtemplate_GT] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_SQUOTE] = ACTIONS(3245), - [anon_sym_class] = ACTIONS(3245), - [anon_sym_async] = ACTIONS(3245), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_using] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_void] = ACTIONS(3245), - [anon_sym_delete] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3245), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3245), - [sym_number] = ACTIONS(3245), - [sym_private_property_identifier] = ACTIONS(3245), - [sym_this] = ACTIONS(3245), - [sym_super] = ACTIONS(3245), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [sym_null] = ACTIONS(3245), - [sym_undefined] = ACTIONS(3245), - [anon_sym_AT] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_readonly] = ACTIONS(3245), - [anon_sym_get] = ACTIONS(3245), - [anon_sym_set] = ACTIONS(3245), - [anon_sym_declare] = ACTIONS(3245), - [anon_sym_public] = ACTIONS(3245), - [anon_sym_private] = ACTIONS(3245), - [anon_sym_protected] = ACTIONS(3245), - [anon_sym_override] = ACTIONS(3245), - [anon_sym_module] = ACTIONS(3245), - [anon_sym_any] = ACTIONS(3245), - [anon_sym_number] = ACTIONS(3245), - [anon_sym_boolean] = ACTIONS(3245), - [anon_sym_string] = ACTIONS(3245), - [anon_sym_symbol] = ACTIONS(3245), - [anon_sym_object] = ACTIONS(3245), - [anon_sym_abstract] = ACTIONS(3245), - [anon_sym_interface] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), + [ts_builtin_sym_end] = ACTIONS(2174), + [sym_identifier] = ACTIONS(2172), + [anon_sym_export] = ACTIONS(2172), + [anon_sym_type] = ACTIONS(2172), + [anon_sym_namespace] = ACTIONS(2172), + [anon_sym_LBRACE] = ACTIONS(2172), + [anon_sym_RBRACE] = ACTIONS(2172), + [anon_sym_typeof] = ACTIONS(2172), + [anon_sym_import] = ACTIONS(2172), + [anon_sym_with] = ACTIONS(2172), + [anon_sym_var] = ACTIONS(2172), + [anon_sym_let] = ACTIONS(2172), + [anon_sym_const] = ACTIONS(2172), + [anon_sym_BANG] = ACTIONS(2172), + [anon_sym_if] = ACTIONS(2172), + [anon_sym_switch] = ACTIONS(2172), + [anon_sym_for] = ACTIONS(2172), + [anon_sym_LPAREN] = ACTIONS(2172), + [anon_sym_await] = ACTIONS(2172), + [anon_sym_while] = ACTIONS(2172), + [anon_sym_do] = ACTIONS(2172), + [anon_sym_try] = ACTIONS(2172), + [anon_sym_break] = ACTIONS(2172), + [anon_sym_continue] = ACTIONS(2172), + [anon_sym_debugger] = ACTIONS(2172), + [anon_sym_return] = ACTIONS(2172), + [anon_sym_throw] = ACTIONS(2172), + [anon_sym_SEMI] = ACTIONS(2172), + [anon_sym_yield] = ACTIONS(2172), + [anon_sym_LBRACK] = ACTIONS(2172), + [anon_sym_LTtemplate_GT] = ACTIONS(2172), + [anon_sym_DOT] = ACTIONS(2172), + [anon_sym_DQUOTE] = ACTIONS(2172), + [anon_sym_SQUOTE] = ACTIONS(2172), + [anon_sym_class] = ACTIONS(2172), + [anon_sym_async] = ACTIONS(2172), + [anon_sym_function] = ACTIONS(2172), + [anon_sym_new] = ACTIONS(2172), + [anon_sym_using] = ACTIONS(2172), + [anon_sym_PLUS] = ACTIONS(2172), + [anon_sym_DASH] = ACTIONS(2172), + [anon_sym_SLASH] = ACTIONS(2172), + [anon_sym_LT] = ACTIONS(2172), + [anon_sym_TILDE] = ACTIONS(2172), + [anon_sym_void] = ACTIONS(2172), + [anon_sym_delete] = ACTIONS(2172), + [anon_sym_PLUS_PLUS] = ACTIONS(2172), + [anon_sym_DASH_DASH] = ACTIONS(2172), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2172), + [sym_number] = ACTIONS(2172), + [sym_private_property_identifier] = ACTIONS(2172), + [sym_this] = ACTIONS(2172), + [sym_super] = ACTIONS(2172), + [sym_true] = ACTIONS(2172), + [sym_false] = ACTIONS(2172), + [sym_null] = ACTIONS(2172), + [sym_undefined] = ACTIONS(2172), + [anon_sym_AT] = ACTIONS(2172), + [anon_sym_static] = ACTIONS(2172), + [anon_sym_readonly] = ACTIONS(2172), + [anon_sym_get] = ACTIONS(2172), + [anon_sym_set] = ACTIONS(2172), + [anon_sym_declare] = ACTIONS(2172), + [anon_sym_public] = ACTIONS(2172), + [anon_sym_private] = ACTIONS(2172), + [anon_sym_protected] = ACTIONS(2172), + [anon_sym_override] = ACTIONS(2172), + [anon_sym_module] = ACTIONS(2172), + [anon_sym_any] = ACTIONS(2172), + [anon_sym_number] = ACTIONS(2172), + [anon_sym_boolean] = ACTIONS(2172), + [anon_sym_string] = ACTIONS(2172), + [anon_sym_symbol] = ACTIONS(2172), + [anon_sym_object] = ACTIONS(2172), + [anon_sym_abstract] = ACTIONS(2172), + [anon_sym_interface] = ACTIONS(2172), + [anon_sym_enum] = ACTIONS(2172), [sym_html_comment] = ACTIONS(5), }, [1452] = { [sym_comment] = STATE(1452), - [sym_identifier] = ACTIONS(3247), - [anon_sym_export] = ACTIONS(3247), - [anon_sym_default] = ACTIONS(3247), - [anon_sym_type] = ACTIONS(3247), - [anon_sym_namespace] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_typeof] = ACTIONS(3247), - [anon_sym_import] = ACTIONS(3247), - [anon_sym_with] = ACTIONS(3247), - [anon_sym_var] = ACTIONS(3247), - [anon_sym_let] = ACTIONS(3247), - [anon_sym_const] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_switch] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_await] = ACTIONS(3247), - [anon_sym_while] = ACTIONS(3247), - [anon_sym_do] = ACTIONS(3247), - [anon_sym_try] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_debugger] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_throw] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_case] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_LTtemplate_GT] = ACTIONS(3247), - [anon_sym_DQUOTE] = ACTIONS(3247), - [anon_sym_SQUOTE] = ACTIONS(3247), - [anon_sym_class] = ACTIONS(3247), - [anon_sym_async] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3247), - [anon_sym_using] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_SLASH] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_void] = ACTIONS(3247), - [anon_sym_delete] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3247), - [sym_number] = ACTIONS(3247), - [sym_private_property_identifier] = ACTIONS(3247), - [sym_this] = ACTIONS(3247), - [sym_super] = ACTIONS(3247), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [sym_null] = ACTIONS(3247), - [sym_undefined] = ACTIONS(3247), - [anon_sym_AT] = ACTIONS(3247), - [anon_sym_static] = ACTIONS(3247), - [anon_sym_readonly] = ACTIONS(3247), - [anon_sym_get] = ACTIONS(3247), - [anon_sym_set] = ACTIONS(3247), - [anon_sym_declare] = ACTIONS(3247), - [anon_sym_public] = ACTIONS(3247), - [anon_sym_private] = ACTIONS(3247), - [anon_sym_protected] = ACTIONS(3247), - [anon_sym_override] = ACTIONS(3247), - [anon_sym_module] = ACTIONS(3247), - [anon_sym_any] = ACTIONS(3247), - [anon_sym_number] = ACTIONS(3247), - [anon_sym_boolean] = ACTIONS(3247), - [anon_sym_string] = ACTIONS(3247), - [anon_sym_symbol] = ACTIONS(3247), - [anon_sym_object] = ACTIONS(3247), - [anon_sym_abstract] = ACTIONS(3247), - [anon_sym_interface] = ACTIONS(3247), - [anon_sym_enum] = ACTIONS(3247), + [ts_builtin_sym_end] = ACTIONS(2168), + [sym_identifier] = ACTIONS(2166), + [anon_sym_export] = ACTIONS(2166), + [anon_sym_type] = ACTIONS(2166), + [anon_sym_namespace] = ACTIONS(2166), + [anon_sym_LBRACE] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_typeof] = ACTIONS(2166), + [anon_sym_import] = ACTIONS(2166), + [anon_sym_with] = ACTIONS(2166), + [anon_sym_var] = ACTIONS(2166), + [anon_sym_let] = ACTIONS(2166), + [anon_sym_const] = ACTIONS(2166), + [anon_sym_BANG] = ACTIONS(2166), + [anon_sym_if] = ACTIONS(2166), + [anon_sym_switch] = ACTIONS(2166), + [anon_sym_for] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(2166), + [anon_sym_await] = ACTIONS(2166), + [anon_sym_while] = ACTIONS(2166), + [anon_sym_do] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2166), + [anon_sym_break] = ACTIONS(2166), + [anon_sym_continue] = ACTIONS(2166), + [anon_sym_debugger] = ACTIONS(2166), + [anon_sym_return] = ACTIONS(2166), + [anon_sym_throw] = ACTIONS(2166), + [anon_sym_SEMI] = ACTIONS(2166), + [anon_sym_yield] = ACTIONS(2166), + [anon_sym_LBRACK] = ACTIONS(2166), + [anon_sym_LTtemplate_GT] = ACTIONS(2166), + [anon_sym_DOT] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2166), + [anon_sym_SQUOTE] = ACTIONS(2166), + [anon_sym_class] = ACTIONS(2166), + [anon_sym_async] = ACTIONS(2166), + [anon_sym_function] = ACTIONS(2166), + [anon_sym_new] = ACTIONS(2166), + [anon_sym_using] = ACTIONS(2166), + [anon_sym_PLUS] = ACTIONS(2166), + [anon_sym_DASH] = ACTIONS(2166), + [anon_sym_SLASH] = ACTIONS(2166), + [anon_sym_LT] = ACTIONS(2166), + [anon_sym_TILDE] = ACTIONS(2166), + [anon_sym_void] = ACTIONS(2166), + [anon_sym_delete] = ACTIONS(2166), + [anon_sym_PLUS_PLUS] = ACTIONS(2166), + [anon_sym_DASH_DASH] = ACTIONS(2166), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2166), + [sym_number] = ACTIONS(2166), + [sym_private_property_identifier] = ACTIONS(2166), + [sym_this] = ACTIONS(2166), + [sym_super] = ACTIONS(2166), + [sym_true] = ACTIONS(2166), + [sym_false] = ACTIONS(2166), + [sym_null] = ACTIONS(2166), + [sym_undefined] = ACTIONS(2166), + [anon_sym_AT] = ACTIONS(2166), + [anon_sym_static] = ACTIONS(2166), + [anon_sym_readonly] = ACTIONS(2166), + [anon_sym_get] = ACTIONS(2166), + [anon_sym_set] = ACTIONS(2166), + [anon_sym_declare] = ACTIONS(2166), + [anon_sym_public] = ACTIONS(2166), + [anon_sym_private] = ACTIONS(2166), + [anon_sym_protected] = ACTIONS(2166), + [anon_sym_override] = ACTIONS(2166), + [anon_sym_module] = ACTIONS(2166), + [anon_sym_any] = ACTIONS(2166), + [anon_sym_number] = ACTIONS(2166), + [anon_sym_boolean] = ACTIONS(2166), + [anon_sym_string] = ACTIONS(2166), + [anon_sym_symbol] = ACTIONS(2166), + [anon_sym_object] = ACTIONS(2166), + [anon_sym_abstract] = ACTIONS(2166), + [anon_sym_interface] = ACTIONS(2166), + [anon_sym_enum] = ACTIONS(2166), [sym_html_comment] = ACTIONS(5), }, [1453] = { [sym_comment] = STATE(1453), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_else] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, [1454] = { [sym_comment] = STATE(1454), - [sym_identifier] = ACTIONS(3387), - [anon_sym_export] = ACTIONS(3387), - [anon_sym_default] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_namespace] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_typeof] = ACTIONS(3387), - [anon_sym_import] = ACTIONS(3387), - [anon_sym_with] = ACTIONS(3387), - [anon_sym_var] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_switch] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_await] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_debugger] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_throw] = ACTIONS(3387), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym_case] = ACTIONS(3387), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LTtemplate_GT] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_class] = ACTIONS(3387), - [anon_sym_async] = ACTIONS(3387), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_using] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_void] = ACTIONS(3387), - [anon_sym_delete] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_DASH_DASH] = ACTIONS(3387), + [sym_identifier] = ACTIONS(3417), + [anon_sym_export] = ACTIONS(3417), + [anon_sym_default] = ACTIONS(3417), + [anon_sym_type] = ACTIONS(3417), + [anon_sym_namespace] = ACTIONS(3417), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_RBRACE] = ACTIONS(3417), + [anon_sym_typeof] = ACTIONS(3417), + [anon_sym_import] = ACTIONS(3417), + [anon_sym_with] = ACTIONS(3417), + [anon_sym_var] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_const] = ACTIONS(3417), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_switch] = ACTIONS(3417), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_await] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_break] = ACTIONS(3417), + [anon_sym_continue] = ACTIONS(3417), + [anon_sym_debugger] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_throw] = ACTIONS(3417), + [anon_sym_SEMI] = ACTIONS(3417), + [anon_sym_case] = ACTIONS(3417), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LTtemplate_GT] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3417), + [anon_sym_class] = ACTIONS(3417), + [anon_sym_async] = ACTIONS(3417), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_using] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_SLASH] = ACTIONS(3417), + [anon_sym_LT] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_void] = ACTIONS(3417), + [anon_sym_delete] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_DASH_DASH] = ACTIONS(3417), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3387), - [sym_number] = ACTIONS(3387), - [sym_private_property_identifier] = ACTIONS(3387), - [sym_this] = ACTIONS(3387), - [sym_super] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_null] = ACTIONS(3387), - [sym_undefined] = ACTIONS(3387), - [anon_sym_AT] = ACTIONS(3387), - [anon_sym_static] = ACTIONS(3387), - [anon_sym_readonly] = ACTIONS(3387), - [anon_sym_get] = ACTIONS(3387), - [anon_sym_set] = ACTIONS(3387), - [anon_sym_declare] = ACTIONS(3387), - [anon_sym_public] = ACTIONS(3387), - [anon_sym_private] = ACTIONS(3387), - [anon_sym_protected] = ACTIONS(3387), - [anon_sym_override] = ACTIONS(3387), - [anon_sym_module] = ACTIONS(3387), - [anon_sym_any] = ACTIONS(3387), - [anon_sym_number] = ACTIONS(3387), - [anon_sym_boolean] = ACTIONS(3387), - [anon_sym_string] = ACTIONS(3387), - [anon_sym_symbol] = ACTIONS(3387), - [anon_sym_object] = ACTIONS(3387), - [anon_sym_abstract] = ACTIONS(3387), - [anon_sym_interface] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(3387), + [anon_sym_BQUOTE] = ACTIONS(3417), + [sym_number] = ACTIONS(3417), + [sym_private_property_identifier] = ACTIONS(3417), + [sym_this] = ACTIONS(3417), + [sym_super] = ACTIONS(3417), + [sym_true] = ACTIONS(3417), + [sym_false] = ACTIONS(3417), + [sym_null] = ACTIONS(3417), + [sym_undefined] = ACTIONS(3417), + [anon_sym_AT] = ACTIONS(3417), + [anon_sym_static] = ACTIONS(3417), + [anon_sym_readonly] = ACTIONS(3417), + [anon_sym_get] = ACTIONS(3417), + [anon_sym_set] = ACTIONS(3417), + [anon_sym_declare] = ACTIONS(3417), + [anon_sym_public] = ACTIONS(3417), + [anon_sym_private] = ACTIONS(3417), + [anon_sym_protected] = ACTIONS(3417), + [anon_sym_override] = ACTIONS(3417), + [anon_sym_module] = ACTIONS(3417), + [anon_sym_any] = ACTIONS(3417), + [anon_sym_number] = ACTIONS(3417), + [anon_sym_boolean] = ACTIONS(3417), + [anon_sym_string] = ACTIONS(3417), + [anon_sym_symbol] = ACTIONS(3417), + [anon_sym_object] = ACTIONS(3417), + [anon_sym_abstract] = ACTIONS(3417), + [anon_sym_interface] = ACTIONS(3417), + [anon_sym_enum] = ACTIONS(3417), [sym_html_comment] = ACTIONS(5), }, [1455] = { [sym_comment] = STATE(1455), - [sym_identifier] = ACTIONS(3377), - [anon_sym_export] = ACTIONS(3377), - [anon_sym_default] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_namespace] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_typeof] = ACTIONS(3377), - [anon_sym_import] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3377), - [anon_sym_var] = ACTIONS(3377), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_const] = ACTIONS(3377), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_switch] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_await] = ACTIONS(3377), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_do] = ACTIONS(3377), - [anon_sym_try] = ACTIONS(3377), - [anon_sym_break] = ACTIONS(3377), - [anon_sym_continue] = ACTIONS(3377), - [anon_sym_debugger] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3377), - [anon_sym_throw] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_case] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_LTtemplate_GT] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_using] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_SLASH] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_void] = ACTIONS(3377), - [anon_sym_delete] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3377), - [sym_number] = ACTIONS(3377), - [sym_private_property_identifier] = ACTIONS(3377), - [sym_this] = ACTIONS(3377), - [sym_super] = ACTIONS(3377), - [sym_true] = ACTIONS(3377), - [sym_false] = ACTIONS(3377), - [sym_null] = ACTIONS(3377), - [sym_undefined] = ACTIONS(3377), - [anon_sym_AT] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_readonly] = ACTIONS(3377), - [anon_sym_get] = ACTIONS(3377), - [anon_sym_set] = ACTIONS(3377), - [anon_sym_declare] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_protected] = ACTIONS(3377), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_any] = ACTIONS(3377), - [anon_sym_number] = ACTIONS(3377), - [anon_sym_boolean] = ACTIONS(3377), - [anon_sym_string] = ACTIONS(3377), - [anon_sym_symbol] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_abstract] = ACTIONS(3377), - [anon_sym_interface] = ACTIONS(3377), - [anon_sym_enum] = ACTIONS(3377), + [ts_builtin_sym_end] = ACTIONS(3335), + [sym_identifier] = ACTIONS(3191), + [anon_sym_export] = ACTIONS(3191), + [anon_sym_type] = ACTIONS(3191), + [anon_sym_namespace] = ACTIONS(3191), + [anon_sym_LBRACE] = ACTIONS(3191), + [anon_sym_RBRACE] = ACTIONS(3191), + [anon_sym_typeof] = ACTIONS(3191), + [anon_sym_import] = ACTIONS(3191), + [anon_sym_with] = ACTIONS(3191), + [anon_sym_var] = ACTIONS(3191), + [anon_sym_let] = ACTIONS(3191), + [anon_sym_const] = ACTIONS(3191), + [anon_sym_BANG] = ACTIONS(3191), + [anon_sym_if] = ACTIONS(3191), + [anon_sym_switch] = ACTIONS(3191), + [anon_sym_for] = ACTIONS(3191), + [anon_sym_LPAREN] = ACTIONS(3191), + [anon_sym_await] = ACTIONS(3191), + [anon_sym_while] = ACTIONS(3191), + [anon_sym_do] = ACTIONS(3191), + [anon_sym_try] = ACTIONS(3191), + [anon_sym_break] = ACTIONS(3191), + [anon_sym_continue] = ACTIONS(3191), + [anon_sym_debugger] = ACTIONS(3191), + [anon_sym_return] = ACTIONS(3191), + [anon_sym_throw] = ACTIONS(3191), + [anon_sym_SEMI] = ACTIONS(3651), + [anon_sym_yield] = ACTIONS(3191), + [anon_sym_LBRACK] = ACTIONS(3191), + [anon_sym_LTtemplate_GT] = ACTIONS(3191), + [anon_sym_DQUOTE] = ACTIONS(3191), + [anon_sym_SQUOTE] = ACTIONS(3191), + [anon_sym_class] = ACTIONS(3191), + [anon_sym_async] = ACTIONS(3191), + [anon_sym_function] = ACTIONS(3191), + [anon_sym_new] = ACTIONS(3191), + [anon_sym_using] = ACTIONS(3191), + [anon_sym_PLUS] = ACTIONS(3191), + [anon_sym_DASH] = ACTIONS(3191), + [anon_sym_SLASH] = ACTIONS(3191), + [anon_sym_LT] = ACTIONS(3191), + [anon_sym_TILDE] = ACTIONS(3191), + [anon_sym_void] = ACTIONS(3191), + [anon_sym_delete] = ACTIONS(3191), + [anon_sym_PLUS_PLUS] = ACTIONS(3191), + [anon_sym_DASH_DASH] = ACTIONS(3191), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3191), + [sym_number] = ACTIONS(3191), + [sym_private_property_identifier] = ACTIONS(3191), + [sym_this] = ACTIONS(3191), + [sym_super] = ACTIONS(3191), + [sym_true] = ACTIONS(3191), + [sym_false] = ACTIONS(3191), + [sym_null] = ACTIONS(3191), + [sym_undefined] = ACTIONS(3191), + [anon_sym_AT] = ACTIONS(3191), + [anon_sym_static] = ACTIONS(3191), + [anon_sym_readonly] = ACTIONS(3191), + [anon_sym_get] = ACTIONS(3191), + [anon_sym_set] = ACTIONS(3191), + [anon_sym_declare] = ACTIONS(3191), + [anon_sym_public] = ACTIONS(3191), + [anon_sym_private] = ACTIONS(3191), + [anon_sym_protected] = ACTIONS(3191), + [anon_sym_override] = ACTIONS(3191), + [anon_sym_module] = ACTIONS(3191), + [anon_sym_any] = ACTIONS(3191), + [anon_sym_number] = ACTIONS(3191), + [anon_sym_boolean] = ACTIONS(3191), + [anon_sym_string] = ACTIONS(3191), + [anon_sym_symbol] = ACTIONS(3191), + [anon_sym_object] = ACTIONS(3191), + [anon_sym_abstract] = ACTIONS(3191), + [anon_sym_interface] = ACTIONS(3191), + [anon_sym_enum] = ACTIONS(3191), + [sym__automatic_semicolon] = ACTIONS(3653), [sym_html_comment] = ACTIONS(5), }, [1456] = { [sym_comment] = STATE(1456), - [sym_identifier] = ACTIONS(3377), - [anon_sym_export] = ACTIONS(3377), - [anon_sym_default] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_namespace] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_typeof] = ACTIONS(3377), - [anon_sym_import] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3377), - [anon_sym_var] = ACTIONS(3377), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_const] = ACTIONS(3377), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_switch] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_await] = ACTIONS(3377), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_do] = ACTIONS(3377), - [anon_sym_try] = ACTIONS(3377), - [anon_sym_break] = ACTIONS(3377), - [anon_sym_continue] = ACTIONS(3377), - [anon_sym_debugger] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3377), - [anon_sym_throw] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_case] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_LTtemplate_GT] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_using] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_SLASH] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_void] = ACTIONS(3377), - [anon_sym_delete] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3377), - [sym_number] = ACTIONS(3377), - [sym_private_property_identifier] = ACTIONS(3377), - [sym_this] = ACTIONS(3377), - [sym_super] = ACTIONS(3377), - [sym_true] = ACTIONS(3377), - [sym_false] = ACTIONS(3377), - [sym_null] = ACTIONS(3377), - [sym_undefined] = ACTIONS(3377), - [anon_sym_AT] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_readonly] = ACTIONS(3377), - [anon_sym_get] = ACTIONS(3377), - [anon_sym_set] = ACTIONS(3377), - [anon_sym_declare] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_protected] = ACTIONS(3377), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_any] = ACTIONS(3377), - [anon_sym_number] = ACTIONS(3377), - [anon_sym_boolean] = ACTIONS(3377), - [anon_sym_string] = ACTIONS(3377), - [anon_sym_symbol] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_abstract] = ACTIONS(3377), - [anon_sym_interface] = ACTIONS(3377), - [anon_sym_enum] = ACTIONS(3377), + [ts_builtin_sym_end] = ACTIONS(3341), + [sym_identifier] = ACTIONS(3183), + [anon_sym_export] = ACTIONS(3183), + [anon_sym_type] = ACTIONS(3183), + [anon_sym_namespace] = ACTIONS(3183), + [anon_sym_LBRACE] = ACTIONS(3183), + [anon_sym_RBRACE] = ACTIONS(3183), + [anon_sym_typeof] = ACTIONS(3183), + [anon_sym_import] = ACTIONS(3183), + [anon_sym_with] = ACTIONS(3183), + [anon_sym_var] = ACTIONS(3183), + [anon_sym_let] = ACTIONS(3183), + [anon_sym_const] = ACTIONS(3183), + [anon_sym_BANG] = ACTIONS(3183), + [anon_sym_if] = ACTIONS(3183), + [anon_sym_switch] = ACTIONS(3183), + [anon_sym_for] = ACTIONS(3183), + [anon_sym_LPAREN] = ACTIONS(3183), + [anon_sym_await] = ACTIONS(3183), + [anon_sym_while] = ACTIONS(3183), + [anon_sym_do] = ACTIONS(3183), + [anon_sym_try] = ACTIONS(3183), + [anon_sym_break] = ACTIONS(3183), + [anon_sym_continue] = ACTIONS(3183), + [anon_sym_debugger] = ACTIONS(3183), + [anon_sym_return] = ACTIONS(3183), + [anon_sym_throw] = ACTIONS(3183), + [anon_sym_SEMI] = ACTIONS(3183), + [anon_sym_finally] = ACTIONS(3183), + [anon_sym_yield] = ACTIONS(3183), + [anon_sym_LBRACK] = ACTIONS(3183), + [anon_sym_LTtemplate_GT] = ACTIONS(3183), + [anon_sym_DQUOTE] = ACTIONS(3183), + [anon_sym_SQUOTE] = ACTIONS(3183), + [anon_sym_class] = ACTIONS(3183), + [anon_sym_async] = ACTIONS(3183), + [anon_sym_function] = ACTIONS(3183), + [anon_sym_new] = ACTIONS(3183), + [anon_sym_using] = ACTIONS(3183), + [anon_sym_PLUS] = ACTIONS(3183), + [anon_sym_DASH] = ACTIONS(3183), + [anon_sym_SLASH] = ACTIONS(3183), + [anon_sym_LT] = ACTIONS(3183), + [anon_sym_TILDE] = ACTIONS(3183), + [anon_sym_void] = ACTIONS(3183), + [anon_sym_delete] = ACTIONS(3183), + [anon_sym_PLUS_PLUS] = ACTIONS(3183), + [anon_sym_DASH_DASH] = ACTIONS(3183), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3183), + [sym_number] = ACTIONS(3183), + [sym_private_property_identifier] = ACTIONS(3183), + [sym_this] = ACTIONS(3183), + [sym_super] = ACTIONS(3183), + [sym_true] = ACTIONS(3183), + [sym_false] = ACTIONS(3183), + [sym_null] = ACTIONS(3183), + [sym_undefined] = ACTIONS(3183), + [anon_sym_AT] = ACTIONS(3183), + [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_abstract] = ACTIONS(3183), + [anon_sym_interface] = ACTIONS(3183), + [anon_sym_enum] = ACTIONS(3183), [sym_html_comment] = ACTIONS(5), }, [1457] = { [sym_comment] = STATE(1457), - [ts_builtin_sym_end] = ACTIONS(3599), - [sym_identifier] = ACTIONS(3289), - [anon_sym_export] = ACTIONS(3289), - [anon_sym_type] = ACTIONS(3289), - [anon_sym_namespace] = ACTIONS(3289), - [anon_sym_LBRACE] = ACTIONS(3289), - [anon_sym_RBRACE] = ACTIONS(3289), - [anon_sym_typeof] = ACTIONS(3289), - [anon_sym_import] = ACTIONS(3289), - [anon_sym_with] = ACTIONS(3289), - [anon_sym_var] = ACTIONS(3289), - [anon_sym_let] = ACTIONS(3289), - [anon_sym_const] = ACTIONS(3289), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_else] = ACTIONS(3289), - [anon_sym_if] = ACTIONS(3289), - [anon_sym_switch] = ACTIONS(3289), - [anon_sym_for] = ACTIONS(3289), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_await] = ACTIONS(3289), - [anon_sym_while] = ACTIONS(3289), - [anon_sym_do] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3289), - [anon_sym_break] = ACTIONS(3289), - [anon_sym_continue] = ACTIONS(3289), - [anon_sym_debugger] = ACTIONS(3289), - [anon_sym_return] = ACTIONS(3289), - [anon_sym_throw] = ACTIONS(3289), - [anon_sym_SEMI] = ACTIONS(3289), - [anon_sym_yield] = ACTIONS(3289), - [anon_sym_LBRACK] = ACTIONS(3289), - [anon_sym_LTtemplate_GT] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(3289), - [anon_sym_SQUOTE] = ACTIONS(3289), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_async] = ACTIONS(3289), - [anon_sym_function] = ACTIONS(3289), - [anon_sym_new] = ACTIONS(3289), - [anon_sym_using] = ACTIONS(3289), - [anon_sym_PLUS] = ACTIONS(3289), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_SLASH] = ACTIONS(3289), - [anon_sym_LT] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_void] = ACTIONS(3289), - [anon_sym_delete] = ACTIONS(3289), - [anon_sym_PLUS_PLUS] = ACTIONS(3289), - [anon_sym_DASH_DASH] = ACTIONS(3289), + [sym_identifier] = ACTIONS(3427), + [anon_sym_export] = ACTIONS(3427), + [anon_sym_default] = ACTIONS(3427), + [anon_sym_type] = ACTIONS(3427), + [anon_sym_namespace] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3427), + [anon_sym_RBRACE] = ACTIONS(3427), + [anon_sym_typeof] = ACTIONS(3427), + [anon_sym_import] = ACTIONS(3427), + [anon_sym_with] = ACTIONS(3427), + [anon_sym_var] = ACTIONS(3427), + [anon_sym_let] = ACTIONS(3427), + [anon_sym_const] = ACTIONS(3427), + [anon_sym_BANG] = ACTIONS(3427), + [anon_sym_if] = ACTIONS(3427), + [anon_sym_switch] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3427), + [anon_sym_LPAREN] = ACTIONS(3427), + [anon_sym_await] = ACTIONS(3427), + [anon_sym_while] = ACTIONS(3427), + [anon_sym_do] = ACTIONS(3427), + [anon_sym_try] = ACTIONS(3427), + [anon_sym_break] = ACTIONS(3427), + [anon_sym_continue] = ACTIONS(3427), + [anon_sym_debugger] = ACTIONS(3427), + [anon_sym_return] = ACTIONS(3427), + [anon_sym_throw] = ACTIONS(3427), + [anon_sym_SEMI] = ACTIONS(3427), + [anon_sym_case] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3427), + [anon_sym_LTtemplate_GT] = ACTIONS(3427), + [anon_sym_DQUOTE] = ACTIONS(3427), + [anon_sym_SQUOTE] = ACTIONS(3427), + [anon_sym_class] = ACTIONS(3427), + [anon_sym_async] = ACTIONS(3427), + [anon_sym_function] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3427), + [anon_sym_using] = ACTIONS(3427), + [anon_sym_PLUS] = ACTIONS(3427), + [anon_sym_DASH] = ACTIONS(3427), + [anon_sym_SLASH] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_TILDE] = ACTIONS(3427), + [anon_sym_void] = ACTIONS(3427), + [anon_sym_delete] = ACTIONS(3427), + [anon_sym_PLUS_PLUS] = ACTIONS(3427), + [anon_sym_DASH_DASH] = ACTIONS(3427), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3289), - [sym_number] = ACTIONS(3289), - [sym_private_property_identifier] = ACTIONS(3289), - [sym_this] = ACTIONS(3289), - [sym_super] = ACTIONS(3289), - [sym_true] = ACTIONS(3289), - [sym_false] = ACTIONS(3289), - [sym_null] = ACTIONS(3289), - [sym_undefined] = ACTIONS(3289), - [anon_sym_AT] = ACTIONS(3289), - [anon_sym_static] = ACTIONS(3289), - [anon_sym_readonly] = ACTIONS(3289), - [anon_sym_get] = ACTIONS(3289), - [anon_sym_set] = ACTIONS(3289), - [anon_sym_declare] = ACTIONS(3289), - [anon_sym_public] = ACTIONS(3289), - [anon_sym_private] = ACTIONS(3289), - [anon_sym_protected] = ACTIONS(3289), - [anon_sym_override] = ACTIONS(3289), - [anon_sym_module] = ACTIONS(3289), - [anon_sym_any] = ACTIONS(3289), - [anon_sym_number] = ACTIONS(3289), - [anon_sym_boolean] = ACTIONS(3289), - [anon_sym_string] = ACTIONS(3289), - [anon_sym_symbol] = ACTIONS(3289), - [anon_sym_object] = ACTIONS(3289), - [anon_sym_abstract] = ACTIONS(3289), - [anon_sym_interface] = ACTIONS(3289), - [anon_sym_enum] = ACTIONS(3289), + [anon_sym_BQUOTE] = ACTIONS(3427), + [sym_number] = ACTIONS(3427), + [sym_private_property_identifier] = ACTIONS(3427), + [sym_this] = ACTIONS(3427), + [sym_super] = ACTIONS(3427), + [sym_true] = ACTIONS(3427), + [sym_false] = ACTIONS(3427), + [sym_null] = ACTIONS(3427), + [sym_undefined] = ACTIONS(3427), + [anon_sym_AT] = ACTIONS(3427), + [anon_sym_static] = ACTIONS(3427), + [anon_sym_readonly] = ACTIONS(3427), + [anon_sym_get] = ACTIONS(3427), + [anon_sym_set] = ACTIONS(3427), + [anon_sym_declare] = ACTIONS(3427), + [anon_sym_public] = ACTIONS(3427), + [anon_sym_private] = ACTIONS(3427), + [anon_sym_protected] = ACTIONS(3427), + [anon_sym_override] = ACTIONS(3427), + [anon_sym_module] = ACTIONS(3427), + [anon_sym_any] = ACTIONS(3427), + [anon_sym_number] = ACTIONS(3427), + [anon_sym_boolean] = ACTIONS(3427), + [anon_sym_string] = ACTIONS(3427), + [anon_sym_symbol] = ACTIONS(3427), + [anon_sym_object] = ACTIONS(3427), + [anon_sym_abstract] = ACTIONS(3427), + [anon_sym_interface] = ACTIONS(3427), + [anon_sym_enum] = ACTIONS(3427), [sym_html_comment] = ACTIONS(5), }, [1458] = { [sym_comment] = STATE(1458), - [ts_builtin_sym_end] = ACTIONS(3601), - [sym_identifier] = ACTIONS(3291), - [anon_sym_export] = ACTIONS(3291), - [anon_sym_type] = ACTIONS(3291), - [anon_sym_namespace] = ACTIONS(3291), - [anon_sym_LBRACE] = ACTIONS(3291), - [anon_sym_RBRACE] = ACTIONS(3291), - [anon_sym_typeof] = ACTIONS(3291), - [anon_sym_import] = ACTIONS(3291), - [anon_sym_with] = ACTIONS(3291), - [anon_sym_var] = ACTIONS(3291), - [anon_sym_let] = ACTIONS(3291), - [anon_sym_const] = ACTIONS(3291), - [anon_sym_BANG] = ACTIONS(3291), - [anon_sym_else] = ACTIONS(3291), - [anon_sym_if] = ACTIONS(3291), - [anon_sym_switch] = ACTIONS(3291), - [anon_sym_for] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3291), - [anon_sym_await] = ACTIONS(3291), - [anon_sym_while] = ACTIONS(3291), - [anon_sym_do] = ACTIONS(3291), - [anon_sym_try] = ACTIONS(3291), - [anon_sym_break] = ACTIONS(3291), - [anon_sym_continue] = ACTIONS(3291), - [anon_sym_debugger] = ACTIONS(3291), - [anon_sym_return] = ACTIONS(3291), - [anon_sym_throw] = ACTIONS(3291), - [anon_sym_SEMI] = ACTIONS(3291), - [anon_sym_yield] = ACTIONS(3291), - [anon_sym_LBRACK] = ACTIONS(3291), - [anon_sym_LTtemplate_GT] = ACTIONS(3291), - [anon_sym_DQUOTE] = ACTIONS(3291), - [anon_sym_SQUOTE] = ACTIONS(3291), - [anon_sym_class] = ACTIONS(3291), - [anon_sym_async] = ACTIONS(3291), - [anon_sym_function] = ACTIONS(3291), - [anon_sym_new] = ACTIONS(3291), - [anon_sym_using] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_SLASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(3291), - [anon_sym_void] = ACTIONS(3291), - [anon_sym_delete] = ACTIONS(3291), - [anon_sym_PLUS_PLUS] = ACTIONS(3291), - [anon_sym_DASH_DASH] = ACTIONS(3291), + [sym_identifier] = ACTIONS(3433), + [anon_sym_export] = ACTIONS(3433), + [anon_sym_default] = ACTIONS(3433), + [anon_sym_type] = ACTIONS(3433), + [anon_sym_namespace] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(3433), + [anon_sym_RBRACE] = ACTIONS(3433), + [anon_sym_typeof] = ACTIONS(3433), + [anon_sym_import] = ACTIONS(3433), + [anon_sym_with] = ACTIONS(3433), + [anon_sym_var] = ACTIONS(3433), + [anon_sym_let] = ACTIONS(3433), + [anon_sym_const] = ACTIONS(3433), + [anon_sym_BANG] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(3433), + [anon_sym_switch] = ACTIONS(3433), + [anon_sym_for] = ACTIONS(3433), + [anon_sym_LPAREN] = ACTIONS(3433), + [anon_sym_await] = ACTIONS(3433), + [anon_sym_while] = ACTIONS(3433), + [anon_sym_do] = ACTIONS(3433), + [anon_sym_try] = ACTIONS(3433), + [anon_sym_break] = ACTIONS(3433), + [anon_sym_continue] = ACTIONS(3433), + [anon_sym_debugger] = ACTIONS(3433), + [anon_sym_return] = ACTIONS(3433), + [anon_sym_throw] = ACTIONS(3433), + [anon_sym_SEMI] = ACTIONS(3433), + [anon_sym_case] = ACTIONS(3433), + [anon_sym_yield] = ACTIONS(3433), + [anon_sym_LBRACK] = ACTIONS(3433), + [anon_sym_LTtemplate_GT] = ACTIONS(3433), + [anon_sym_DQUOTE] = ACTIONS(3433), + [anon_sym_SQUOTE] = ACTIONS(3433), + [anon_sym_class] = ACTIONS(3433), + [anon_sym_async] = ACTIONS(3433), + [anon_sym_function] = ACTIONS(3433), + [anon_sym_new] = ACTIONS(3433), + [anon_sym_using] = ACTIONS(3433), + [anon_sym_PLUS] = ACTIONS(3433), + [anon_sym_DASH] = ACTIONS(3433), + [anon_sym_SLASH] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(3433), + [anon_sym_TILDE] = ACTIONS(3433), + [anon_sym_void] = ACTIONS(3433), + [anon_sym_delete] = ACTIONS(3433), + [anon_sym_PLUS_PLUS] = ACTIONS(3433), + [anon_sym_DASH_DASH] = ACTIONS(3433), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3291), - [sym_number] = ACTIONS(3291), - [sym_private_property_identifier] = ACTIONS(3291), - [sym_this] = ACTIONS(3291), - [sym_super] = ACTIONS(3291), - [sym_true] = ACTIONS(3291), - [sym_false] = ACTIONS(3291), - [sym_null] = ACTIONS(3291), - [sym_undefined] = ACTIONS(3291), - [anon_sym_AT] = ACTIONS(3291), - [anon_sym_static] = ACTIONS(3291), - [anon_sym_readonly] = ACTIONS(3291), - [anon_sym_get] = ACTIONS(3291), - [anon_sym_set] = ACTIONS(3291), - [anon_sym_declare] = ACTIONS(3291), - [anon_sym_public] = ACTIONS(3291), - [anon_sym_private] = ACTIONS(3291), - [anon_sym_protected] = ACTIONS(3291), - [anon_sym_override] = ACTIONS(3291), - [anon_sym_module] = ACTIONS(3291), - [anon_sym_any] = ACTIONS(3291), - [anon_sym_number] = ACTIONS(3291), - [anon_sym_boolean] = ACTIONS(3291), - [anon_sym_string] = ACTIONS(3291), - [anon_sym_symbol] = ACTIONS(3291), - [anon_sym_object] = ACTIONS(3291), - [anon_sym_abstract] = ACTIONS(3291), - [anon_sym_interface] = ACTIONS(3291), - [anon_sym_enum] = ACTIONS(3291), + [anon_sym_BQUOTE] = ACTIONS(3433), + [sym_number] = ACTIONS(3433), + [sym_private_property_identifier] = ACTIONS(3433), + [sym_this] = ACTIONS(3433), + [sym_super] = ACTIONS(3433), + [sym_true] = ACTIONS(3433), + [sym_false] = ACTIONS(3433), + [sym_null] = ACTIONS(3433), + [sym_undefined] = ACTIONS(3433), + [anon_sym_AT] = ACTIONS(3433), + [anon_sym_static] = ACTIONS(3433), + [anon_sym_readonly] = ACTIONS(3433), + [anon_sym_get] = ACTIONS(3433), + [anon_sym_set] = ACTIONS(3433), + [anon_sym_declare] = ACTIONS(3433), + [anon_sym_public] = ACTIONS(3433), + [anon_sym_private] = ACTIONS(3433), + [anon_sym_protected] = ACTIONS(3433), + [anon_sym_override] = ACTIONS(3433), + [anon_sym_module] = ACTIONS(3433), + [anon_sym_any] = ACTIONS(3433), + [anon_sym_number] = ACTIONS(3433), + [anon_sym_boolean] = ACTIONS(3433), + [anon_sym_string] = ACTIONS(3433), + [anon_sym_symbol] = ACTIONS(3433), + [anon_sym_object] = ACTIONS(3433), + [anon_sym_abstract] = ACTIONS(3433), + [anon_sym_interface] = ACTIONS(3433), + [anon_sym_enum] = ACTIONS(3433), [sym_html_comment] = ACTIONS(5), }, [1459] = { [sym_comment] = STATE(1459), - [sym_identifier] = ACTIONS(3249), - [anon_sym_export] = ACTIONS(3249), - [anon_sym_default] = ACTIONS(3249), - [anon_sym_type] = ACTIONS(3249), - [anon_sym_namespace] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3249), - [anon_sym_RBRACE] = ACTIONS(3249), - [anon_sym_typeof] = ACTIONS(3249), - [anon_sym_import] = ACTIONS(3249), - [anon_sym_with] = ACTIONS(3249), - [anon_sym_var] = ACTIONS(3249), - [anon_sym_let] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_switch] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_await] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3249), - [anon_sym_try] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_debugger] = ACTIONS(3249), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_throw] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym_case] = ACTIONS(3249), - [anon_sym_yield] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LTtemplate_GT] = ACTIONS(3249), - [anon_sym_DQUOTE] = ACTIONS(3249), - [anon_sym_SQUOTE] = ACTIONS(3249), - [anon_sym_class] = ACTIONS(3249), - [anon_sym_async] = ACTIONS(3249), - [anon_sym_function] = ACTIONS(3249), - [anon_sym_new] = ACTIONS(3249), - [anon_sym_using] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_SLASH] = ACTIONS(3249), - [anon_sym_LT] = ACTIONS(3249), - [anon_sym_TILDE] = ACTIONS(3249), - [anon_sym_void] = ACTIONS(3249), - [anon_sym_delete] = ACTIONS(3249), - [anon_sym_PLUS_PLUS] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3249), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3249), - [sym_number] = ACTIONS(3249), - [sym_private_property_identifier] = ACTIONS(3249), - [sym_this] = ACTIONS(3249), - [sym_super] = ACTIONS(3249), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [sym_null] = ACTIONS(3249), - [sym_undefined] = ACTIONS(3249), - [anon_sym_AT] = ACTIONS(3249), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_readonly] = ACTIONS(3249), - [anon_sym_get] = ACTIONS(3249), - [anon_sym_set] = ACTIONS(3249), - [anon_sym_declare] = ACTIONS(3249), - [anon_sym_public] = ACTIONS(3249), - [anon_sym_private] = ACTIONS(3249), - [anon_sym_protected] = ACTIONS(3249), - [anon_sym_override] = ACTIONS(3249), - [anon_sym_module] = ACTIONS(3249), - [anon_sym_any] = ACTIONS(3249), - [anon_sym_number] = ACTIONS(3249), - [anon_sym_boolean] = ACTIONS(3249), - [anon_sym_string] = ACTIONS(3249), - [anon_sym_symbol] = ACTIONS(3249), - [anon_sym_object] = ACTIONS(3249), - [anon_sym_abstract] = ACTIONS(3249), - [anon_sym_interface] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3249), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(3655), [sym_html_comment] = ACTIONS(5), }, [1460] = { [sym_comment] = STATE(1460), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3271), + [anon_sym_export] = ACTIONS(3271), + [anon_sym_default] = ACTIONS(3271), + [anon_sym_type] = ACTIONS(3271), + [anon_sym_namespace] = ACTIONS(3271), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_RBRACE] = ACTIONS(3271), + [anon_sym_typeof] = ACTIONS(3271), + [anon_sym_import] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3271), + [anon_sym_var] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3271), + [anon_sym_const] = ACTIONS(3271), + [anon_sym_BANG] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3271), + [anon_sym_switch] = ACTIONS(3271), + [anon_sym_for] = ACTIONS(3271), + [anon_sym_LPAREN] = ACTIONS(3271), + [anon_sym_await] = ACTIONS(3271), + [anon_sym_while] = ACTIONS(3271), + [anon_sym_do] = ACTIONS(3271), + [anon_sym_try] = ACTIONS(3271), + [anon_sym_break] = ACTIONS(3271), + [anon_sym_continue] = ACTIONS(3271), + [anon_sym_debugger] = ACTIONS(3271), + [anon_sym_return] = ACTIONS(3271), + [anon_sym_throw] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3271), + [anon_sym_case] = ACTIONS(3271), + [anon_sym_yield] = ACTIONS(3271), + [anon_sym_LBRACK] = ACTIONS(3271), + [anon_sym_LTtemplate_GT] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3271), + [anon_sym_SQUOTE] = ACTIONS(3271), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_async] = ACTIONS(3271), + [anon_sym_function] = ACTIONS(3271), + [anon_sym_new] = ACTIONS(3271), + [anon_sym_using] = ACTIONS(3271), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_SLASH] = ACTIONS(3271), + [anon_sym_LT] = ACTIONS(3271), + [anon_sym_TILDE] = ACTIONS(3271), + [anon_sym_void] = ACTIONS(3271), + [anon_sym_delete] = ACTIONS(3271), + [anon_sym_PLUS_PLUS] = ACTIONS(3271), + [anon_sym_DASH_DASH] = ACTIONS(3271), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3271), + [sym_number] = ACTIONS(3271), + [sym_private_property_identifier] = ACTIONS(3271), + [sym_this] = ACTIONS(3271), + [sym_super] = ACTIONS(3271), + [sym_true] = ACTIONS(3271), + [sym_false] = ACTIONS(3271), + [sym_null] = ACTIONS(3271), + [sym_undefined] = ACTIONS(3271), + [anon_sym_AT] = ACTIONS(3271), + [anon_sym_static] = ACTIONS(3271), + [anon_sym_readonly] = ACTIONS(3271), + [anon_sym_get] = ACTIONS(3271), + [anon_sym_set] = ACTIONS(3271), + [anon_sym_declare] = ACTIONS(3271), + [anon_sym_public] = ACTIONS(3271), + [anon_sym_private] = ACTIONS(3271), + [anon_sym_protected] = ACTIONS(3271), + [anon_sym_override] = ACTIONS(3271), + [anon_sym_module] = ACTIONS(3271), + [anon_sym_any] = ACTIONS(3271), + [anon_sym_number] = ACTIONS(3271), + [anon_sym_boolean] = ACTIONS(3271), + [anon_sym_string] = ACTIONS(3271), + [anon_sym_symbol] = ACTIONS(3271), + [anon_sym_object] = ACTIONS(3271), + [anon_sym_abstract] = ACTIONS(3271), + [anon_sym_interface] = ACTIONS(3271), + [anon_sym_enum] = ACTIONS(3271), [sym_html_comment] = ACTIONS(5), }, [1461] = { [sym_comment] = STATE(1461), - [sym_identifier] = ACTIONS(3371), - [anon_sym_export] = ACTIONS(3371), - [anon_sym_default] = ACTIONS(3371), - [anon_sym_type] = ACTIONS(3371), - [anon_sym_namespace] = ACTIONS(3371), - [anon_sym_LBRACE] = ACTIONS(3371), - [anon_sym_RBRACE] = ACTIONS(3371), - [anon_sym_typeof] = ACTIONS(3371), - [anon_sym_import] = ACTIONS(3371), - [anon_sym_with] = ACTIONS(3371), - [anon_sym_var] = ACTIONS(3371), - [anon_sym_let] = ACTIONS(3371), - [anon_sym_const] = ACTIONS(3371), - [anon_sym_BANG] = ACTIONS(3371), - [anon_sym_if] = ACTIONS(3371), - [anon_sym_switch] = ACTIONS(3371), - [anon_sym_for] = ACTIONS(3371), - [anon_sym_LPAREN] = ACTIONS(3371), - [anon_sym_await] = ACTIONS(3371), - [anon_sym_while] = ACTIONS(3371), - [anon_sym_do] = ACTIONS(3371), - [anon_sym_try] = ACTIONS(3371), - [anon_sym_break] = ACTIONS(3371), - [anon_sym_continue] = ACTIONS(3371), - [anon_sym_debugger] = ACTIONS(3371), - [anon_sym_return] = ACTIONS(3371), - [anon_sym_throw] = ACTIONS(3371), - [anon_sym_SEMI] = ACTIONS(3371), - [anon_sym_case] = ACTIONS(3371), - [anon_sym_yield] = ACTIONS(3371), - [anon_sym_LBRACK] = ACTIONS(3371), - [anon_sym_LTtemplate_GT] = ACTIONS(3371), - [anon_sym_DQUOTE] = ACTIONS(3371), - [anon_sym_SQUOTE] = ACTIONS(3371), - [anon_sym_class] = ACTIONS(3371), - [anon_sym_async] = ACTIONS(3371), - [anon_sym_function] = ACTIONS(3371), - [anon_sym_new] = ACTIONS(3371), - [anon_sym_using] = ACTIONS(3371), - [anon_sym_PLUS] = ACTIONS(3371), - [anon_sym_DASH] = ACTIONS(3371), - [anon_sym_SLASH] = ACTIONS(3371), - [anon_sym_LT] = ACTIONS(3371), - [anon_sym_TILDE] = ACTIONS(3371), - [anon_sym_void] = ACTIONS(3371), - [anon_sym_delete] = ACTIONS(3371), - [anon_sym_PLUS_PLUS] = ACTIONS(3371), - [anon_sym_DASH_DASH] = ACTIONS(3371), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3371), - [sym_number] = ACTIONS(3371), - [sym_private_property_identifier] = ACTIONS(3371), - [sym_this] = ACTIONS(3371), - [sym_super] = ACTIONS(3371), - [sym_true] = ACTIONS(3371), - [sym_false] = ACTIONS(3371), - [sym_null] = ACTIONS(3371), - [sym_undefined] = ACTIONS(3371), - [anon_sym_AT] = ACTIONS(3371), - [anon_sym_static] = ACTIONS(3371), - [anon_sym_readonly] = ACTIONS(3371), - [anon_sym_get] = ACTIONS(3371), - [anon_sym_set] = ACTIONS(3371), - [anon_sym_declare] = ACTIONS(3371), - [anon_sym_public] = ACTIONS(3371), - [anon_sym_private] = ACTIONS(3371), - [anon_sym_protected] = ACTIONS(3371), - [anon_sym_override] = ACTIONS(3371), - [anon_sym_module] = ACTIONS(3371), - [anon_sym_any] = ACTIONS(3371), - [anon_sym_number] = ACTIONS(3371), - [anon_sym_boolean] = ACTIONS(3371), - [anon_sym_string] = ACTIONS(3371), - [anon_sym_symbol] = ACTIONS(3371), - [anon_sym_object] = ACTIONS(3371), - [anon_sym_abstract] = ACTIONS(3371), - [anon_sym_interface] = ACTIONS(3371), - [anon_sym_enum] = ACTIONS(3371), + [ts_builtin_sym_end] = ACTIONS(3657), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_else] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, [1462] = { [sym_comment] = STATE(1462), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3275), + [anon_sym_export] = ACTIONS(3275), + [anon_sym_default] = ACTIONS(3275), + [anon_sym_type] = ACTIONS(3275), + [anon_sym_namespace] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_typeof] = ACTIONS(3275), + [anon_sym_import] = ACTIONS(3275), + [anon_sym_with] = ACTIONS(3275), + [anon_sym_var] = ACTIONS(3275), + [anon_sym_let] = ACTIONS(3275), + [anon_sym_const] = ACTIONS(3275), + [anon_sym_BANG] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_switch] = ACTIONS(3275), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_await] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3275), + [anon_sym_do] = ACTIONS(3275), + [anon_sym_try] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_debugger] = ACTIONS(3275), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_throw] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3275), + [anon_sym_case] = ACTIONS(3275), + [anon_sym_yield] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_LTtemplate_GT] = ACTIONS(3275), + [anon_sym_DQUOTE] = ACTIONS(3275), + [anon_sym_SQUOTE] = ACTIONS(3275), + [anon_sym_class] = ACTIONS(3275), + [anon_sym_async] = ACTIONS(3275), + [anon_sym_function] = ACTIONS(3275), + [anon_sym_new] = ACTIONS(3275), + [anon_sym_using] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_TILDE] = ACTIONS(3275), + [anon_sym_void] = ACTIONS(3275), + [anon_sym_delete] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_DASH_DASH] = ACTIONS(3275), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3275), + [sym_number] = ACTIONS(3275), + [sym_private_property_identifier] = ACTIONS(3275), + [sym_this] = ACTIONS(3275), + [sym_super] = ACTIONS(3275), + [sym_true] = ACTIONS(3275), + [sym_false] = ACTIONS(3275), + [sym_null] = ACTIONS(3275), + [sym_undefined] = ACTIONS(3275), + [anon_sym_AT] = ACTIONS(3275), + [anon_sym_static] = ACTIONS(3275), + [anon_sym_readonly] = ACTIONS(3275), + [anon_sym_get] = ACTIONS(3275), + [anon_sym_set] = ACTIONS(3275), + [anon_sym_declare] = ACTIONS(3275), + [anon_sym_public] = ACTIONS(3275), + [anon_sym_private] = ACTIONS(3275), + [anon_sym_protected] = ACTIONS(3275), + [anon_sym_override] = ACTIONS(3275), + [anon_sym_module] = ACTIONS(3275), + [anon_sym_any] = ACTIONS(3275), + [anon_sym_number] = ACTIONS(3275), + [anon_sym_boolean] = ACTIONS(3275), + [anon_sym_string] = ACTIONS(3275), + [anon_sym_symbol] = ACTIONS(3275), + [anon_sym_object] = ACTIONS(3275), + [anon_sym_abstract] = ACTIONS(3275), + [anon_sym_interface] = ACTIONS(3275), + [anon_sym_enum] = ACTIONS(3275), [sym_html_comment] = ACTIONS(5), }, [1463] = { [sym_comment] = STATE(1463), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3277), + [anon_sym_export] = ACTIONS(3277), + [anon_sym_default] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_namespace] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_typeof] = ACTIONS(3277), + [anon_sym_import] = ACTIONS(3277), + [anon_sym_with] = ACTIONS(3277), + [anon_sym_var] = ACTIONS(3277), + [anon_sym_let] = ACTIONS(3277), + [anon_sym_const] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_switch] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_await] = ACTIONS(3277), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_do] = ACTIONS(3277), + [anon_sym_try] = ACTIONS(3277), + [anon_sym_break] = ACTIONS(3277), + [anon_sym_continue] = ACTIONS(3277), + [anon_sym_debugger] = ACTIONS(3277), + [anon_sym_return] = ACTIONS(3277), + [anon_sym_throw] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_case] = ACTIONS(3277), + [anon_sym_yield] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_LTtemplate_GT] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(3277), + [anon_sym_SQUOTE] = ACTIONS(3277), + [anon_sym_class] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_function] = ACTIONS(3277), + [anon_sym_new] = ACTIONS(3277), + [anon_sym_using] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_void] = ACTIONS(3277), + [anon_sym_delete] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3277), + [sym_number] = ACTIONS(3277), + [sym_private_property_identifier] = ACTIONS(3277), + [sym_this] = ACTIONS(3277), + [sym_super] = ACTIONS(3277), + [sym_true] = ACTIONS(3277), + [sym_false] = ACTIONS(3277), + [sym_null] = ACTIONS(3277), + [sym_undefined] = ACTIONS(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_static] = ACTIONS(3277), + [anon_sym_readonly] = ACTIONS(3277), + [anon_sym_get] = ACTIONS(3277), + [anon_sym_set] = ACTIONS(3277), + [anon_sym_declare] = ACTIONS(3277), + [anon_sym_public] = ACTIONS(3277), + [anon_sym_private] = ACTIONS(3277), + [anon_sym_protected] = ACTIONS(3277), + [anon_sym_override] = ACTIONS(3277), + [anon_sym_module] = ACTIONS(3277), + [anon_sym_any] = ACTIONS(3277), + [anon_sym_number] = ACTIONS(3277), + [anon_sym_boolean] = ACTIONS(3277), + [anon_sym_string] = ACTIONS(3277), + [anon_sym_symbol] = ACTIONS(3277), + [anon_sym_object] = ACTIONS(3277), + [anon_sym_abstract] = ACTIONS(3277), + [anon_sym_interface] = ACTIONS(3277), + [anon_sym_enum] = ACTIONS(3277), [sym_html_comment] = ACTIONS(5), }, [1464] = { [sym_comment] = STATE(1464), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3277), + [anon_sym_export] = ACTIONS(3277), + [anon_sym_default] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_namespace] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_typeof] = ACTIONS(3277), + [anon_sym_import] = ACTIONS(3277), + [anon_sym_with] = ACTIONS(3277), + [anon_sym_var] = ACTIONS(3277), + [anon_sym_let] = ACTIONS(3277), + [anon_sym_const] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_switch] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_await] = ACTIONS(3277), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_do] = ACTIONS(3277), + [anon_sym_try] = ACTIONS(3277), + [anon_sym_break] = ACTIONS(3277), + [anon_sym_continue] = ACTIONS(3277), + [anon_sym_debugger] = ACTIONS(3277), + [anon_sym_return] = ACTIONS(3277), + [anon_sym_throw] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_case] = ACTIONS(3277), + [anon_sym_yield] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_LTtemplate_GT] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(3277), + [anon_sym_SQUOTE] = ACTIONS(3277), + [anon_sym_class] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_function] = ACTIONS(3277), + [anon_sym_new] = ACTIONS(3277), + [anon_sym_using] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_void] = ACTIONS(3277), + [anon_sym_delete] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3277), + [sym_number] = ACTIONS(3277), + [sym_private_property_identifier] = ACTIONS(3277), + [sym_this] = ACTIONS(3277), + [sym_super] = ACTIONS(3277), + [sym_true] = ACTIONS(3277), + [sym_false] = ACTIONS(3277), + [sym_null] = ACTIONS(3277), + [sym_undefined] = ACTIONS(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_static] = ACTIONS(3277), + [anon_sym_readonly] = ACTIONS(3277), + [anon_sym_get] = ACTIONS(3277), + [anon_sym_set] = ACTIONS(3277), + [anon_sym_declare] = ACTIONS(3277), + [anon_sym_public] = ACTIONS(3277), + [anon_sym_private] = ACTIONS(3277), + [anon_sym_protected] = ACTIONS(3277), + [anon_sym_override] = ACTIONS(3277), + [anon_sym_module] = ACTIONS(3277), + [anon_sym_any] = ACTIONS(3277), + [anon_sym_number] = ACTIONS(3277), + [anon_sym_boolean] = ACTIONS(3277), + [anon_sym_string] = ACTIONS(3277), + [anon_sym_symbol] = ACTIONS(3277), + [anon_sym_object] = ACTIONS(3277), + [anon_sym_abstract] = ACTIONS(3277), + [anon_sym_interface] = ACTIONS(3277), + [anon_sym_enum] = ACTIONS(3277), [sym_html_comment] = ACTIONS(5), }, [1465] = { [sym_comment] = STATE(1465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [ts_builtin_sym_end] = ACTIONS(3659), + [sym_identifier] = ACTIONS(3433), + [anon_sym_export] = ACTIONS(3433), + [anon_sym_type] = ACTIONS(3433), + [anon_sym_namespace] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(3433), + [anon_sym_RBRACE] = ACTIONS(3433), + [anon_sym_typeof] = ACTIONS(3433), + [anon_sym_import] = ACTIONS(3433), + [anon_sym_with] = ACTIONS(3433), + [anon_sym_var] = ACTIONS(3433), + [anon_sym_let] = ACTIONS(3433), + [anon_sym_const] = ACTIONS(3433), + [anon_sym_BANG] = ACTIONS(3433), + [anon_sym_else] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(3433), + [anon_sym_switch] = ACTIONS(3433), + [anon_sym_for] = ACTIONS(3433), + [anon_sym_LPAREN] = ACTIONS(3433), + [anon_sym_await] = ACTIONS(3433), + [anon_sym_while] = ACTIONS(3433), + [anon_sym_do] = ACTIONS(3433), + [anon_sym_try] = ACTIONS(3433), + [anon_sym_break] = ACTIONS(3433), + [anon_sym_continue] = ACTIONS(3433), + [anon_sym_debugger] = ACTIONS(3433), + [anon_sym_return] = ACTIONS(3433), + [anon_sym_throw] = ACTIONS(3433), + [anon_sym_SEMI] = ACTIONS(3433), + [anon_sym_yield] = ACTIONS(3433), + [anon_sym_LBRACK] = ACTIONS(3433), + [anon_sym_LTtemplate_GT] = ACTIONS(3433), + [anon_sym_DQUOTE] = ACTIONS(3433), + [anon_sym_SQUOTE] = ACTIONS(3433), + [anon_sym_class] = ACTIONS(3433), + [anon_sym_async] = ACTIONS(3433), + [anon_sym_function] = ACTIONS(3433), + [anon_sym_new] = ACTIONS(3433), + [anon_sym_using] = ACTIONS(3433), + [anon_sym_PLUS] = ACTIONS(3433), + [anon_sym_DASH] = ACTIONS(3433), + [anon_sym_SLASH] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(3433), + [anon_sym_TILDE] = ACTIONS(3433), + [anon_sym_void] = ACTIONS(3433), + [anon_sym_delete] = ACTIONS(3433), + [anon_sym_PLUS_PLUS] = ACTIONS(3433), + [anon_sym_DASH_DASH] = ACTIONS(3433), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3433), + [sym_number] = ACTIONS(3433), + [sym_private_property_identifier] = ACTIONS(3433), + [sym_this] = ACTIONS(3433), + [sym_super] = ACTIONS(3433), + [sym_true] = ACTIONS(3433), + [sym_false] = ACTIONS(3433), + [sym_null] = ACTIONS(3433), + [sym_undefined] = ACTIONS(3433), + [anon_sym_AT] = ACTIONS(3433), + [anon_sym_static] = ACTIONS(3433), + [anon_sym_readonly] = ACTIONS(3433), + [anon_sym_get] = ACTIONS(3433), + [anon_sym_set] = ACTIONS(3433), + [anon_sym_declare] = ACTIONS(3433), + [anon_sym_public] = ACTIONS(3433), + [anon_sym_private] = ACTIONS(3433), + [anon_sym_protected] = ACTIONS(3433), + [anon_sym_override] = ACTIONS(3433), + [anon_sym_module] = ACTIONS(3433), + [anon_sym_any] = ACTIONS(3433), + [anon_sym_number] = ACTIONS(3433), + [anon_sym_boolean] = ACTIONS(3433), + [anon_sym_string] = ACTIONS(3433), + [anon_sym_symbol] = ACTIONS(3433), + [anon_sym_object] = ACTIONS(3433), + [anon_sym_abstract] = ACTIONS(3433), + [anon_sym_interface] = ACTIONS(3433), + [anon_sym_enum] = ACTIONS(3433), [sym_html_comment] = ACTIONS(5), }, [1466] = { [sym_comment] = STATE(1466), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3287), + [anon_sym_export] = ACTIONS(3287), + [anon_sym_default] = ACTIONS(3287), + [anon_sym_type] = ACTIONS(3287), + [anon_sym_namespace] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(3287), + [anon_sym_typeof] = ACTIONS(3287), + [anon_sym_import] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3287), + [anon_sym_var] = ACTIONS(3287), + [anon_sym_let] = ACTIONS(3287), + [anon_sym_const] = ACTIONS(3287), + [anon_sym_BANG] = ACTIONS(3287), + [anon_sym_if] = ACTIONS(3287), + [anon_sym_switch] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3287), + [anon_sym_await] = ACTIONS(3287), + [anon_sym_while] = ACTIONS(3287), + [anon_sym_do] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3287), + [anon_sym_break] = ACTIONS(3287), + [anon_sym_continue] = ACTIONS(3287), + [anon_sym_debugger] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3287), + [anon_sym_throw] = ACTIONS(3287), + [anon_sym_SEMI] = ACTIONS(3287), + [anon_sym_case] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(3287), + [anon_sym_LTtemplate_GT] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(3287), + [anon_sym_SQUOTE] = ACTIONS(3287), + [anon_sym_class] = ACTIONS(3287), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3287), + [anon_sym_using] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3287), + [anon_sym_DASH] = ACTIONS(3287), + [anon_sym_SLASH] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [anon_sym_void] = ACTIONS(3287), + [anon_sym_delete] = ACTIONS(3287), + [anon_sym_PLUS_PLUS] = ACTIONS(3287), + [anon_sym_DASH_DASH] = ACTIONS(3287), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3287), + [sym_number] = ACTIONS(3287), + [sym_private_property_identifier] = ACTIONS(3287), + [sym_this] = ACTIONS(3287), + [sym_super] = ACTIONS(3287), + [sym_true] = ACTIONS(3287), + [sym_false] = ACTIONS(3287), + [sym_null] = ACTIONS(3287), + [sym_undefined] = ACTIONS(3287), + [anon_sym_AT] = ACTIONS(3287), + [anon_sym_static] = ACTIONS(3287), + [anon_sym_readonly] = ACTIONS(3287), + [anon_sym_get] = ACTIONS(3287), + [anon_sym_set] = ACTIONS(3287), + [anon_sym_declare] = ACTIONS(3287), + [anon_sym_public] = ACTIONS(3287), + [anon_sym_private] = ACTIONS(3287), + [anon_sym_protected] = ACTIONS(3287), + [anon_sym_override] = ACTIONS(3287), + [anon_sym_module] = ACTIONS(3287), + [anon_sym_any] = ACTIONS(3287), + [anon_sym_number] = ACTIONS(3287), + [anon_sym_boolean] = ACTIONS(3287), + [anon_sym_string] = ACTIONS(3287), + [anon_sym_symbol] = ACTIONS(3287), + [anon_sym_object] = ACTIONS(3287), + [anon_sym_abstract] = ACTIONS(3287), + [anon_sym_interface] = ACTIONS(3287), + [anon_sym_enum] = ACTIONS(3287), [sym_html_comment] = ACTIONS(5), }, [1467] = { [sym_comment] = STATE(1467), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [ts_builtin_sym_end] = ACTIONS(3661), + [sym_identifier] = ACTIONS(3425), + [anon_sym_export] = ACTIONS(3425), + [anon_sym_type] = ACTIONS(3425), + [anon_sym_namespace] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3425), + [anon_sym_RBRACE] = ACTIONS(3425), + [anon_sym_typeof] = ACTIONS(3425), + [anon_sym_import] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3425), + [anon_sym_var] = ACTIONS(3425), + [anon_sym_let] = ACTIONS(3425), + [anon_sym_const] = ACTIONS(3425), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_else] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_switch] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3425), + [anon_sym_await] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_try] = ACTIONS(3425), + [anon_sym_break] = ACTIONS(3425), + [anon_sym_continue] = ACTIONS(3425), + [anon_sym_debugger] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_throw] = ACTIONS(3425), + [anon_sym_SEMI] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3425), + [anon_sym_LBRACK] = ACTIONS(3425), + [anon_sym_LTtemplate_GT] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(3425), + [anon_sym_SQUOTE] = ACTIONS(3425), + [anon_sym_class] = ACTIONS(3425), + [anon_sym_async] = ACTIONS(3425), + [anon_sym_function] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3425), + [anon_sym_using] = ACTIONS(3425), + [anon_sym_PLUS] = ACTIONS(3425), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_SLASH] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(3425), + [anon_sym_void] = ACTIONS(3425), + [anon_sym_delete] = ACTIONS(3425), + [anon_sym_PLUS_PLUS] = ACTIONS(3425), + [anon_sym_DASH_DASH] = ACTIONS(3425), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3425), + [sym_number] = ACTIONS(3425), + [sym_private_property_identifier] = ACTIONS(3425), + [sym_this] = ACTIONS(3425), + [sym_super] = ACTIONS(3425), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [sym_null] = ACTIONS(3425), + [sym_undefined] = ACTIONS(3425), + [anon_sym_AT] = ACTIONS(3425), + [anon_sym_static] = ACTIONS(3425), + [anon_sym_readonly] = ACTIONS(3425), + [anon_sym_get] = ACTIONS(3425), + [anon_sym_set] = ACTIONS(3425), + [anon_sym_declare] = ACTIONS(3425), + [anon_sym_public] = ACTIONS(3425), + [anon_sym_private] = ACTIONS(3425), + [anon_sym_protected] = ACTIONS(3425), + [anon_sym_override] = ACTIONS(3425), + [anon_sym_module] = ACTIONS(3425), + [anon_sym_any] = ACTIONS(3425), + [anon_sym_number] = ACTIONS(3425), + [anon_sym_boolean] = ACTIONS(3425), + [anon_sym_string] = ACTIONS(3425), + [anon_sym_symbol] = ACTIONS(3425), + [anon_sym_object] = ACTIONS(3425), + [anon_sym_abstract] = ACTIONS(3425), + [anon_sym_interface] = ACTIONS(3425), + [anon_sym_enum] = ACTIONS(3425), [sym_html_comment] = ACTIONS(5), }, [1468] = { [sym_comment] = STATE(1468), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(2324), + [sym_identifier] = ACTIONS(2182), + [anon_sym_export] = ACTIONS(2182), + [anon_sym_type] = ACTIONS(2182), + [anon_sym_namespace] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(2182), + [anon_sym_typeof] = ACTIONS(2182), + [anon_sym_import] = ACTIONS(2182), + [anon_sym_with] = ACTIONS(2182), + [anon_sym_var] = ACTIONS(2182), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_BANG] = ACTIONS(2182), + [anon_sym_else] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_switch] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_LPAREN] = ACTIONS(2182), + [anon_sym_await] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_do] = ACTIONS(2182), + [anon_sym_try] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_debugger] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_throw] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2182), + [anon_sym_yield] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LTtemplate_GT] = ACTIONS(2182), + [anon_sym_DQUOTE] = ACTIONS(2182), + [anon_sym_SQUOTE] = ACTIONS(2182), + [anon_sym_class] = ACTIONS(2182), + [anon_sym_async] = ACTIONS(2182), + [anon_sym_function] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2182), + [anon_sym_using] = ACTIONS(2182), + [anon_sym_PLUS] = ACTIONS(2182), + [anon_sym_DASH] = ACTIONS(2182), + [anon_sym_SLASH] = ACTIONS(2182), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_TILDE] = ACTIONS(2182), + [anon_sym_void] = ACTIONS(2182), + [anon_sym_delete] = ACTIONS(2182), + [anon_sym_PLUS_PLUS] = ACTIONS(2182), + [anon_sym_DASH_DASH] = ACTIONS(2182), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(2182), + [sym_number] = ACTIONS(2182), + [sym_private_property_identifier] = ACTIONS(2182), + [sym_this] = ACTIONS(2182), + [sym_super] = ACTIONS(2182), + [sym_true] = ACTIONS(2182), + [sym_false] = ACTIONS(2182), + [sym_null] = ACTIONS(2182), + [sym_undefined] = ACTIONS(2182), + [anon_sym_AT] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_readonly] = ACTIONS(2182), + [anon_sym_get] = ACTIONS(2182), + [anon_sym_set] = ACTIONS(2182), + [anon_sym_declare] = ACTIONS(2182), + [anon_sym_public] = ACTIONS(2182), + [anon_sym_private] = ACTIONS(2182), + [anon_sym_protected] = ACTIONS(2182), + [anon_sym_override] = ACTIONS(2182), + [anon_sym_module] = ACTIONS(2182), + [anon_sym_any] = ACTIONS(2182), + [anon_sym_number] = ACTIONS(2182), + [anon_sym_boolean] = ACTIONS(2182), + [anon_sym_string] = ACTIONS(2182), + [anon_sym_symbol] = ACTIONS(2182), + [anon_sym_object] = ACTIONS(2182), + [anon_sym_abstract] = ACTIONS(2182), + [anon_sym_interface] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), [sym_html_comment] = ACTIONS(5), }, [1469] = { [sym_comment] = STATE(1469), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3423), + [anon_sym_export] = ACTIONS(3423), + [anon_sym_default] = ACTIONS(3423), + [anon_sym_type] = ACTIONS(3423), + [anon_sym_namespace] = ACTIONS(3423), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_RBRACE] = ACTIONS(3423), + [anon_sym_typeof] = ACTIONS(3423), + [anon_sym_import] = ACTIONS(3423), + [anon_sym_with] = ACTIONS(3423), + [anon_sym_var] = ACTIONS(3423), + [anon_sym_let] = ACTIONS(3423), + [anon_sym_const] = ACTIONS(3423), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3423), + [anon_sym_switch] = ACTIONS(3423), + [anon_sym_for] = ACTIONS(3423), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_await] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3423), + [anon_sym_do] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3423), + [anon_sym_break] = ACTIONS(3423), + [anon_sym_continue] = ACTIONS(3423), + [anon_sym_debugger] = ACTIONS(3423), + [anon_sym_return] = ACTIONS(3423), + [anon_sym_throw] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_case] = ACTIONS(3423), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_LTtemplate_GT] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [anon_sym_SQUOTE] = ACTIONS(3423), + [anon_sym_class] = ACTIONS(3423), + [anon_sym_async] = ACTIONS(3423), + [anon_sym_function] = ACTIONS(3423), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_using] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [anon_sym_SLASH] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(3423), + [anon_sym_void] = ACTIONS(3423), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_PLUS_PLUS] = ACTIONS(3423), + [anon_sym_DASH_DASH] = ACTIONS(3423), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3423), + [sym_number] = ACTIONS(3423), + [sym_private_property_identifier] = ACTIONS(3423), + [sym_this] = ACTIONS(3423), + [sym_super] = ACTIONS(3423), + [sym_true] = ACTIONS(3423), + [sym_false] = ACTIONS(3423), + [sym_null] = ACTIONS(3423), + [sym_undefined] = ACTIONS(3423), + [anon_sym_AT] = ACTIONS(3423), + [anon_sym_static] = ACTIONS(3423), + [anon_sym_readonly] = ACTIONS(3423), + [anon_sym_get] = ACTIONS(3423), + [anon_sym_set] = ACTIONS(3423), + [anon_sym_declare] = ACTIONS(3423), + [anon_sym_public] = ACTIONS(3423), + [anon_sym_private] = ACTIONS(3423), + [anon_sym_protected] = ACTIONS(3423), + [anon_sym_override] = ACTIONS(3423), + [anon_sym_module] = ACTIONS(3423), + [anon_sym_any] = ACTIONS(3423), + [anon_sym_number] = ACTIONS(3423), + [anon_sym_boolean] = ACTIONS(3423), + [anon_sym_string] = ACTIONS(3423), + [anon_sym_symbol] = ACTIONS(3423), + [anon_sym_object] = ACTIONS(3423), + [anon_sym_abstract] = ACTIONS(3423), + [anon_sym_interface] = ACTIONS(3423), + [anon_sym_enum] = ACTIONS(3423), [sym_html_comment] = ACTIONS(5), }, [1470] = { [sym_comment] = STATE(1470), - [sym_identifier] = ACTIONS(3367), - [anon_sym_export] = ACTIONS(3367), - [anon_sym_default] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_namespace] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_typeof] = ACTIONS(3367), - [anon_sym_import] = ACTIONS(3367), - [anon_sym_with] = ACTIONS(3367), - [anon_sym_var] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_switch] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_await] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_debugger] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_throw] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_case] = ACTIONS(3367), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LTtemplate_GT] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3367), - [anon_sym_class] = ACTIONS(3367), - [anon_sym_async] = ACTIONS(3367), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_using] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_void] = ACTIONS(3367), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), + [sym_identifier] = ACTIONS(3407), + [anon_sym_export] = ACTIONS(3407), + [anon_sym_default] = ACTIONS(3407), + [anon_sym_type] = ACTIONS(3407), + [anon_sym_namespace] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_RBRACE] = ACTIONS(3407), + [anon_sym_typeof] = ACTIONS(3407), + [anon_sym_import] = ACTIONS(3407), + [anon_sym_with] = ACTIONS(3407), + [anon_sym_var] = ACTIONS(3407), + [anon_sym_let] = ACTIONS(3407), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_if] = ACTIONS(3407), + [anon_sym_switch] = ACTIONS(3407), + [anon_sym_for] = ACTIONS(3407), + [anon_sym_LPAREN] = ACTIONS(3407), + [anon_sym_await] = ACTIONS(3407), + [anon_sym_while] = ACTIONS(3407), + [anon_sym_do] = ACTIONS(3407), + [anon_sym_try] = ACTIONS(3407), + [anon_sym_break] = ACTIONS(3407), + [anon_sym_continue] = ACTIONS(3407), + [anon_sym_debugger] = ACTIONS(3407), + [anon_sym_return] = ACTIONS(3407), + [anon_sym_throw] = ACTIONS(3407), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_case] = ACTIONS(3407), + [anon_sym_yield] = ACTIONS(3407), + [anon_sym_LBRACK] = ACTIONS(3407), + [anon_sym_LTtemplate_GT] = ACTIONS(3407), + [anon_sym_DQUOTE] = ACTIONS(3407), + [anon_sym_SQUOTE] = ACTIONS(3407), + [anon_sym_class] = ACTIONS(3407), + [anon_sym_async] = ACTIONS(3407), + [anon_sym_function] = ACTIONS(3407), + [anon_sym_new] = ACTIONS(3407), + [anon_sym_using] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_SLASH] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(3407), + [anon_sym_void] = ACTIONS(3407), + [anon_sym_delete] = ACTIONS(3407), + [anon_sym_PLUS_PLUS] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(3407), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3367), - [sym_number] = ACTIONS(3367), - [sym_private_property_identifier] = ACTIONS(3367), - [sym_this] = ACTIONS(3367), - [sym_super] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_null] = ACTIONS(3367), - [sym_undefined] = ACTIONS(3367), - [anon_sym_AT] = ACTIONS(3367), - [anon_sym_static] = ACTIONS(3367), - [anon_sym_readonly] = ACTIONS(3367), - [anon_sym_get] = ACTIONS(3367), - [anon_sym_set] = ACTIONS(3367), - [anon_sym_declare] = ACTIONS(3367), - [anon_sym_public] = ACTIONS(3367), - [anon_sym_private] = ACTIONS(3367), - [anon_sym_protected] = ACTIONS(3367), - [anon_sym_override] = ACTIONS(3367), - [anon_sym_module] = ACTIONS(3367), - [anon_sym_any] = ACTIONS(3367), - [anon_sym_number] = ACTIONS(3367), - [anon_sym_boolean] = ACTIONS(3367), - [anon_sym_string] = ACTIONS(3367), - [anon_sym_symbol] = ACTIONS(3367), - [anon_sym_object] = ACTIONS(3367), - [anon_sym_abstract] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), + [anon_sym_BQUOTE] = ACTIONS(3407), + [sym_number] = ACTIONS(3407), + [sym_private_property_identifier] = ACTIONS(3407), + [sym_this] = ACTIONS(3407), + [sym_super] = ACTIONS(3407), + [sym_true] = ACTIONS(3407), + [sym_false] = ACTIONS(3407), + [sym_null] = ACTIONS(3407), + [sym_undefined] = ACTIONS(3407), + [anon_sym_AT] = ACTIONS(3407), + [anon_sym_static] = ACTIONS(3407), + [anon_sym_readonly] = ACTIONS(3407), + [anon_sym_get] = ACTIONS(3407), + [anon_sym_set] = ACTIONS(3407), + [anon_sym_declare] = ACTIONS(3407), + [anon_sym_public] = ACTIONS(3407), + [anon_sym_private] = ACTIONS(3407), + [anon_sym_protected] = ACTIONS(3407), + [anon_sym_override] = ACTIONS(3407), + [anon_sym_module] = ACTIONS(3407), + [anon_sym_any] = ACTIONS(3407), + [anon_sym_number] = ACTIONS(3407), + [anon_sym_boolean] = ACTIONS(3407), + [anon_sym_string] = ACTIONS(3407), + [anon_sym_symbol] = ACTIONS(3407), + [anon_sym_object] = ACTIONS(3407), + [anon_sym_abstract] = ACTIONS(3407), + [anon_sym_interface] = ACTIONS(3407), + [anon_sym_enum] = ACTIONS(3407), [sym_html_comment] = ACTIONS(5), }, [1471] = { [sym_comment] = STATE(1471), - [ts_builtin_sym_end] = ACTIONS(3603), - [sym_identifier] = ACTIONS(3421), - [anon_sym_export] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_namespace] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_typeof] = ACTIONS(3421), - [anon_sym_import] = ACTIONS(3421), - [anon_sym_with] = ACTIONS(3421), - [anon_sym_var] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_const] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3421), - [anon_sym_else] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_switch] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_await] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_break] = ACTIONS(3421), - [anon_sym_continue] = ACTIONS(3421), - [anon_sym_debugger] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_throw] = ACTIONS(3421), - [anon_sym_SEMI] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LTtemplate_GT] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_SQUOTE] = ACTIONS(3421), - [anon_sym_class] = ACTIONS(3421), - [anon_sym_async] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_using] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_SLASH] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_void] = ACTIONS(3421), - [anon_sym_delete] = ACTIONS(3421), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3421), - [sym_number] = ACTIONS(3421), - [sym_private_property_identifier] = ACTIONS(3421), - [sym_this] = ACTIONS(3421), - [sym_super] = ACTIONS(3421), - [sym_true] = ACTIONS(3421), - [sym_false] = ACTIONS(3421), - [sym_null] = ACTIONS(3421), - [sym_undefined] = ACTIONS(3421), - [anon_sym_AT] = ACTIONS(3421), - [anon_sym_static] = ACTIONS(3421), - [anon_sym_readonly] = ACTIONS(3421), - [anon_sym_get] = ACTIONS(3421), - [anon_sym_set] = ACTIONS(3421), - [anon_sym_declare] = ACTIONS(3421), - [anon_sym_public] = ACTIONS(3421), - [anon_sym_private] = ACTIONS(3421), - [anon_sym_protected] = ACTIONS(3421), - [anon_sym_override] = ACTIONS(3421), - [anon_sym_module] = ACTIONS(3421), - [anon_sym_any] = ACTIONS(3421), - [anon_sym_number] = ACTIONS(3421), - [anon_sym_boolean] = ACTIONS(3421), - [anon_sym_string] = ACTIONS(3421), - [anon_sym_symbol] = ACTIONS(3421), - [anon_sym_object] = ACTIONS(3421), - [anon_sym_abstract] = ACTIONS(3421), - [anon_sym_interface] = ACTIONS(3421), - [anon_sym_enum] = ACTIONS(3421), + [sym_identifier] = ACTIONS(3297), + [anon_sym_export] = ACTIONS(3297), + [anon_sym_default] = ACTIONS(3297), + [anon_sym_type] = ACTIONS(3297), + [anon_sym_namespace] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(3297), + [anon_sym_typeof] = ACTIONS(3297), + [anon_sym_import] = ACTIONS(3297), + [anon_sym_with] = ACTIONS(3297), + [anon_sym_var] = ACTIONS(3297), + [anon_sym_let] = ACTIONS(3297), + [anon_sym_const] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_switch] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_await] = ACTIONS(3297), + [anon_sym_while] = ACTIONS(3297), + [anon_sym_do] = ACTIONS(3297), + [anon_sym_try] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_debugger] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_throw] = ACTIONS(3297), + [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_case] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_LTtemplate_GT] = ACTIONS(3297), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_SQUOTE] = ACTIONS(3297), + [anon_sym_class] = ACTIONS(3297), + [anon_sym_async] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3297), + [anon_sym_using] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_SLASH] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_void] = ACTIONS(3297), + [anon_sym_delete] = ACTIONS(3297), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3297), + [sym_number] = ACTIONS(3297), + [sym_private_property_identifier] = ACTIONS(3297), + [sym_this] = ACTIONS(3297), + [sym_super] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_null] = ACTIONS(3297), + [sym_undefined] = ACTIONS(3297), + [anon_sym_AT] = ACTIONS(3297), + [anon_sym_static] = ACTIONS(3297), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_get] = ACTIONS(3297), + [anon_sym_set] = ACTIONS(3297), + [anon_sym_declare] = ACTIONS(3297), + [anon_sym_public] = ACTIONS(3297), + [anon_sym_private] = ACTIONS(3297), + [anon_sym_protected] = ACTIONS(3297), + [anon_sym_override] = ACTIONS(3297), + [anon_sym_module] = ACTIONS(3297), + [anon_sym_any] = ACTIONS(3297), + [anon_sym_number] = ACTIONS(3297), + [anon_sym_boolean] = ACTIONS(3297), + [anon_sym_string] = ACTIONS(3297), + [anon_sym_symbol] = ACTIONS(3297), + [anon_sym_object] = ACTIONS(3297), + [anon_sym_abstract] = ACTIONS(3297), + [anon_sym_interface] = ACTIONS(3297), + [anon_sym_enum] = ACTIONS(3297), [sym_html_comment] = ACTIONS(5), }, [1472] = { [sym_comment] = STATE(1472), - [sym_identifier] = ACTIONS(3417), - [anon_sym_export] = ACTIONS(3417), - [anon_sym_default] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_namespace] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_RBRACE] = ACTIONS(3417), - [anon_sym_typeof] = ACTIONS(3417), - [anon_sym_import] = ACTIONS(3417), - [anon_sym_with] = ACTIONS(3417), - [anon_sym_var] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_const] = ACTIONS(3417), - [anon_sym_BANG] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_switch] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_await] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_break] = ACTIONS(3417), - [anon_sym_continue] = ACTIONS(3417), - [anon_sym_debugger] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_throw] = ACTIONS(3417), - [anon_sym_SEMI] = ACTIONS(3417), - [anon_sym_case] = ACTIONS(3417), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LTtemplate_GT] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_SQUOTE] = ACTIONS(3417), - [anon_sym_class] = ACTIONS(3417), - [anon_sym_async] = ACTIONS(3417), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_using] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_void] = ACTIONS(3417), - [anon_sym_delete] = ACTIONS(3417), - [anon_sym_PLUS_PLUS] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3417), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3417), - [sym_number] = ACTIONS(3417), - [sym_private_property_identifier] = ACTIONS(3417), - [sym_this] = ACTIONS(3417), - [sym_super] = ACTIONS(3417), - [sym_true] = ACTIONS(3417), - [sym_false] = ACTIONS(3417), - [sym_null] = ACTIONS(3417), - [sym_undefined] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(3417), - [anon_sym_static] = ACTIONS(3417), - [anon_sym_readonly] = ACTIONS(3417), - [anon_sym_get] = ACTIONS(3417), - [anon_sym_set] = ACTIONS(3417), - [anon_sym_declare] = ACTIONS(3417), - [anon_sym_public] = ACTIONS(3417), - [anon_sym_private] = ACTIONS(3417), - [anon_sym_protected] = ACTIONS(3417), - [anon_sym_override] = ACTIONS(3417), - [anon_sym_module] = ACTIONS(3417), - [anon_sym_any] = ACTIONS(3417), - [anon_sym_number] = ACTIONS(3417), - [anon_sym_boolean] = ACTIONS(3417), - [anon_sym_string] = ACTIONS(3417), - [anon_sym_symbol] = ACTIONS(3417), - [anon_sym_object] = ACTIONS(3417), - [anon_sym_abstract] = ACTIONS(3417), - [anon_sym_interface] = ACTIONS(3417), - [anon_sym_enum] = ACTIONS(3417), + [sym_identifier] = ACTIONS(3301), + [anon_sym_export] = ACTIONS(3301), + [anon_sym_default] = ACTIONS(3301), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_namespace] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_typeof] = ACTIONS(3301), + [anon_sym_import] = ACTIONS(3301), + [anon_sym_with] = ACTIONS(3301), + [anon_sym_var] = ACTIONS(3301), + [anon_sym_let] = ACTIONS(3301), + [anon_sym_const] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_switch] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_await] = ACTIONS(3301), + [anon_sym_while] = ACTIONS(3301), + [anon_sym_do] = ACTIONS(3301), + [anon_sym_try] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_debugger] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_throw] = ACTIONS(3301), + [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_case] = ACTIONS(3301), + [anon_sym_yield] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_LTtemplate_GT] = ACTIONS(3301), + [anon_sym_DQUOTE] = ACTIONS(3301), + [anon_sym_SQUOTE] = ACTIONS(3301), + [anon_sym_class] = ACTIONS(3301), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_function] = ACTIONS(3301), + [anon_sym_new] = ACTIONS(3301), + [anon_sym_using] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_void] = ACTIONS(3301), + [anon_sym_delete] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3301), + [sym_number] = ACTIONS(3301), + [sym_private_property_identifier] = ACTIONS(3301), + [sym_this] = ACTIONS(3301), + [sym_super] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_null] = ACTIONS(3301), + [sym_undefined] = ACTIONS(3301), + [anon_sym_AT] = ACTIONS(3301), + [anon_sym_static] = ACTIONS(3301), + [anon_sym_readonly] = ACTIONS(3301), + [anon_sym_get] = ACTIONS(3301), + [anon_sym_set] = ACTIONS(3301), + [anon_sym_declare] = ACTIONS(3301), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3301), + [anon_sym_module] = ACTIONS(3301), + [anon_sym_any] = ACTIONS(3301), + [anon_sym_number] = ACTIONS(3301), + [anon_sym_boolean] = ACTIONS(3301), + [anon_sym_string] = ACTIONS(3301), + [anon_sym_symbol] = ACTIONS(3301), + [anon_sym_object] = ACTIONS(3301), + [anon_sym_abstract] = ACTIONS(3301), + [anon_sym_interface] = ACTIONS(3301), + [anon_sym_enum] = ACTIONS(3301), [sym_html_comment] = ACTIONS(5), }, [1473] = { [sym_comment] = STATE(1473), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_finally] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), + [sym_identifier] = ACTIONS(3303), + [anon_sym_export] = ACTIONS(3303), + [anon_sym_default] = ACTIONS(3303), + [anon_sym_type] = ACTIONS(3303), + [anon_sym_namespace] = ACTIONS(3303), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_typeof] = ACTIONS(3303), + [anon_sym_import] = ACTIONS(3303), + [anon_sym_with] = ACTIONS(3303), + [anon_sym_var] = ACTIONS(3303), + [anon_sym_let] = ACTIONS(3303), + [anon_sym_const] = ACTIONS(3303), + [anon_sym_BANG] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_switch] = ACTIONS(3303), + [anon_sym_for] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_await] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3303), + [anon_sym_do] = ACTIONS(3303), + [anon_sym_try] = ACTIONS(3303), + [anon_sym_break] = ACTIONS(3303), + [anon_sym_continue] = ACTIONS(3303), + [anon_sym_debugger] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3303), + [anon_sym_throw] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3303), + [anon_sym_case] = ACTIONS(3303), + [anon_sym_yield] = ACTIONS(3303), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_LTtemplate_GT] = ACTIONS(3303), + [anon_sym_DQUOTE] = ACTIONS(3303), + [anon_sym_SQUOTE] = ACTIONS(3303), + [anon_sym_class] = ACTIONS(3303), + [anon_sym_async] = ACTIONS(3303), + [anon_sym_function] = ACTIONS(3303), + [anon_sym_new] = ACTIONS(3303), + [anon_sym_using] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_SLASH] = ACTIONS(3303), + [anon_sym_LT] = ACTIONS(3303), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_void] = ACTIONS(3303), + [anon_sym_delete] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(3303), + [anon_sym_DASH_DASH] = ACTIONS(3303), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3303), + [sym_number] = ACTIONS(3303), + [sym_private_property_identifier] = ACTIONS(3303), + [sym_this] = ACTIONS(3303), + [sym_super] = ACTIONS(3303), + [sym_true] = ACTIONS(3303), + [sym_false] = ACTIONS(3303), + [sym_null] = ACTIONS(3303), + [sym_undefined] = ACTIONS(3303), + [anon_sym_AT] = ACTIONS(3303), + [anon_sym_static] = ACTIONS(3303), + [anon_sym_readonly] = ACTIONS(3303), + [anon_sym_get] = ACTIONS(3303), + [anon_sym_set] = ACTIONS(3303), + [anon_sym_declare] = ACTIONS(3303), + [anon_sym_public] = ACTIONS(3303), + [anon_sym_private] = ACTIONS(3303), + [anon_sym_protected] = ACTIONS(3303), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_module] = ACTIONS(3303), + [anon_sym_any] = ACTIONS(3303), + [anon_sym_number] = ACTIONS(3303), + [anon_sym_boolean] = ACTIONS(3303), + [anon_sym_string] = ACTIONS(3303), + [anon_sym_symbol] = ACTIONS(3303), + [anon_sym_object] = ACTIONS(3303), + [anon_sym_abstract] = ACTIONS(3303), + [anon_sym_interface] = ACTIONS(3303), + [anon_sym_enum] = ACTIONS(3303), [sym_html_comment] = ACTIONS(5), }, [1474] = { [sym_comment] = STATE(1474), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3401), + [anon_sym_export] = ACTIONS(3401), + [anon_sym_default] = ACTIONS(3401), + [anon_sym_type] = ACTIONS(3401), + [anon_sym_namespace] = ACTIONS(3401), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_RBRACE] = ACTIONS(3401), + [anon_sym_typeof] = ACTIONS(3401), + [anon_sym_import] = ACTIONS(3401), + [anon_sym_with] = ACTIONS(3401), + [anon_sym_var] = ACTIONS(3401), + [anon_sym_let] = ACTIONS(3401), + [anon_sym_const] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_if] = ACTIONS(3401), + [anon_sym_switch] = ACTIONS(3401), + [anon_sym_for] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_await] = ACTIONS(3401), + [anon_sym_while] = ACTIONS(3401), + [anon_sym_do] = ACTIONS(3401), + [anon_sym_try] = ACTIONS(3401), + [anon_sym_break] = ACTIONS(3401), + [anon_sym_continue] = ACTIONS(3401), + [anon_sym_debugger] = ACTIONS(3401), + [anon_sym_return] = ACTIONS(3401), + [anon_sym_throw] = ACTIONS(3401), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_case] = ACTIONS(3401), + [anon_sym_yield] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LTtemplate_GT] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3401), + [anon_sym_SQUOTE] = ACTIONS(3401), + [anon_sym_class] = ACTIONS(3401), + [anon_sym_async] = ACTIONS(3401), + [anon_sym_function] = ACTIONS(3401), + [anon_sym_new] = ACTIONS(3401), + [anon_sym_using] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3401), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_void] = ACTIONS(3401), + [anon_sym_delete] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH] = ACTIONS(3401), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [sym_html_comment] = ACTIONS(5), - }, - [1475] = { - [sym_comment] = STATE(1475), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3401), + [sym_number] = ACTIONS(3401), + [sym_private_property_identifier] = ACTIONS(3401), + [sym_this] = ACTIONS(3401), + [sym_super] = ACTIONS(3401), + [sym_true] = ACTIONS(3401), + [sym_false] = ACTIONS(3401), + [sym_null] = ACTIONS(3401), + [sym_undefined] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3401), + [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_abstract] = ACTIONS(3401), + [anon_sym_interface] = ACTIONS(3401), + [anon_sym_enum] = ACTIONS(3401), + [sym_html_comment] = ACTIONS(5), + }, + [1475] = { + [sym_comment] = STATE(1475), + [sym_identifier] = ACTIONS(3401), + [anon_sym_export] = ACTIONS(3401), + [anon_sym_default] = ACTIONS(3401), + [anon_sym_type] = ACTIONS(3401), + [anon_sym_namespace] = ACTIONS(3401), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_RBRACE] = ACTIONS(3401), + [anon_sym_typeof] = ACTIONS(3401), + [anon_sym_import] = ACTIONS(3401), + [anon_sym_with] = ACTIONS(3401), + [anon_sym_var] = ACTIONS(3401), + [anon_sym_let] = ACTIONS(3401), + [anon_sym_const] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_if] = ACTIONS(3401), + [anon_sym_switch] = ACTIONS(3401), + [anon_sym_for] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_await] = ACTIONS(3401), + [anon_sym_while] = ACTIONS(3401), + [anon_sym_do] = ACTIONS(3401), + [anon_sym_try] = ACTIONS(3401), + [anon_sym_break] = ACTIONS(3401), + [anon_sym_continue] = ACTIONS(3401), + [anon_sym_debugger] = ACTIONS(3401), + [anon_sym_return] = ACTIONS(3401), + [anon_sym_throw] = ACTIONS(3401), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_case] = ACTIONS(3401), + [anon_sym_yield] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LTtemplate_GT] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3401), + [anon_sym_SQUOTE] = ACTIONS(3401), + [anon_sym_class] = ACTIONS(3401), + [anon_sym_async] = ACTIONS(3401), + [anon_sym_function] = ACTIONS(3401), + [anon_sym_new] = ACTIONS(3401), + [anon_sym_using] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3401), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_void] = ACTIONS(3401), + [anon_sym_delete] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH] = ACTIONS(3401), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3401), + [sym_number] = ACTIONS(3401), + [sym_private_property_identifier] = ACTIONS(3401), + [sym_this] = ACTIONS(3401), + [sym_super] = ACTIONS(3401), + [sym_true] = ACTIONS(3401), + [sym_false] = ACTIONS(3401), + [sym_null] = ACTIONS(3401), + [sym_undefined] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3401), + [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_abstract] = ACTIONS(3401), + [anon_sym_interface] = ACTIONS(3401), + [anon_sym_enum] = ACTIONS(3401), [sym_html_comment] = ACTIONS(5), }, [1476] = { [sym_comment] = STATE(1476), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [ts_builtin_sym_end] = ACTIONS(3663), + [sym_identifier] = ACTIONS(3435), + [anon_sym_export] = ACTIONS(3435), + [anon_sym_type] = ACTIONS(3435), + [anon_sym_namespace] = ACTIONS(3435), + [anon_sym_LBRACE] = ACTIONS(3435), + [anon_sym_RBRACE] = ACTIONS(3435), + [anon_sym_typeof] = ACTIONS(3435), + [anon_sym_import] = ACTIONS(3435), + [anon_sym_with] = ACTIONS(3435), + [anon_sym_var] = ACTIONS(3435), + [anon_sym_let] = ACTIONS(3435), + [anon_sym_const] = ACTIONS(3435), + [anon_sym_BANG] = ACTIONS(3435), + [anon_sym_else] = ACTIONS(3435), + [anon_sym_if] = ACTIONS(3435), + [anon_sym_switch] = ACTIONS(3435), + [anon_sym_for] = ACTIONS(3435), + [anon_sym_LPAREN] = ACTIONS(3435), + [anon_sym_await] = ACTIONS(3435), + [anon_sym_while] = ACTIONS(3435), + [anon_sym_do] = ACTIONS(3435), + [anon_sym_try] = ACTIONS(3435), + [anon_sym_break] = ACTIONS(3435), + [anon_sym_continue] = ACTIONS(3435), + [anon_sym_debugger] = ACTIONS(3435), + [anon_sym_return] = ACTIONS(3435), + [anon_sym_throw] = ACTIONS(3435), + [anon_sym_SEMI] = ACTIONS(3435), + [anon_sym_yield] = ACTIONS(3435), + [anon_sym_LBRACK] = ACTIONS(3435), + [anon_sym_LTtemplate_GT] = ACTIONS(3435), + [anon_sym_DQUOTE] = ACTIONS(3435), + [anon_sym_SQUOTE] = ACTIONS(3435), + [anon_sym_class] = ACTIONS(3435), + [anon_sym_async] = ACTIONS(3435), + [anon_sym_function] = ACTIONS(3435), + [anon_sym_new] = ACTIONS(3435), + [anon_sym_using] = ACTIONS(3435), + [anon_sym_PLUS] = ACTIONS(3435), + [anon_sym_DASH] = ACTIONS(3435), + [anon_sym_SLASH] = ACTIONS(3435), + [anon_sym_LT] = ACTIONS(3435), + [anon_sym_TILDE] = ACTIONS(3435), + [anon_sym_void] = ACTIONS(3435), + [anon_sym_delete] = ACTIONS(3435), + [anon_sym_PLUS_PLUS] = ACTIONS(3435), + [anon_sym_DASH_DASH] = ACTIONS(3435), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3435), + [sym_number] = ACTIONS(3435), + [sym_private_property_identifier] = ACTIONS(3435), + [sym_this] = ACTIONS(3435), + [sym_super] = ACTIONS(3435), + [sym_true] = ACTIONS(3435), + [sym_false] = ACTIONS(3435), + [sym_null] = ACTIONS(3435), + [sym_undefined] = ACTIONS(3435), + [anon_sym_AT] = ACTIONS(3435), + [anon_sym_static] = ACTIONS(3435), + [anon_sym_readonly] = ACTIONS(3435), + [anon_sym_get] = ACTIONS(3435), + [anon_sym_set] = ACTIONS(3435), + [anon_sym_declare] = ACTIONS(3435), + [anon_sym_public] = ACTIONS(3435), + [anon_sym_private] = ACTIONS(3435), + [anon_sym_protected] = ACTIONS(3435), + [anon_sym_override] = ACTIONS(3435), + [anon_sym_module] = ACTIONS(3435), + [anon_sym_any] = ACTIONS(3435), + [anon_sym_number] = ACTIONS(3435), + [anon_sym_boolean] = ACTIONS(3435), + [anon_sym_string] = ACTIONS(3435), + [anon_sym_symbol] = ACTIONS(3435), + [anon_sym_object] = ACTIONS(3435), + [anon_sym_abstract] = ACTIONS(3435), + [anon_sym_interface] = ACTIONS(3435), + [anon_sym_enum] = ACTIONS(3435), [sym_html_comment] = ACTIONS(5), }, [1477] = { [sym_comment] = STATE(1477), - [sym_identifier] = ACTIONS(3415), - [anon_sym_export] = ACTIONS(3415), - [anon_sym_default] = ACTIONS(3415), - [anon_sym_type] = ACTIONS(3415), - [anon_sym_namespace] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_RBRACE] = ACTIONS(3415), - [anon_sym_typeof] = ACTIONS(3415), - [anon_sym_import] = ACTIONS(3415), - [anon_sym_with] = ACTIONS(3415), - [anon_sym_var] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_const] = ACTIONS(3415), - [anon_sym_BANG] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_switch] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_await] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_break] = ACTIONS(3415), - [anon_sym_continue] = ACTIONS(3415), - [anon_sym_debugger] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_throw] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3415), - [anon_sym_case] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LTtemplate_GT] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3415), - [anon_sym_class] = ACTIONS(3415), - [anon_sym_async] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_using] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_TILDE] = ACTIONS(3415), - [anon_sym_void] = ACTIONS(3415), - [anon_sym_delete] = ACTIONS(3415), - [anon_sym_PLUS_PLUS] = ACTIONS(3415), - [anon_sym_DASH_DASH] = ACTIONS(3415), + [ts_builtin_sym_end] = ACTIONS(2324), + [sym_identifier] = ACTIONS(2182), + [anon_sym_export] = ACTIONS(2182), + [anon_sym_type] = ACTIONS(2182), + [anon_sym_namespace] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(2182), + [anon_sym_typeof] = ACTIONS(2182), + [anon_sym_import] = ACTIONS(2182), + [anon_sym_with] = ACTIONS(2182), + [anon_sym_var] = ACTIONS(2182), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_BANG] = ACTIONS(2182), + [anon_sym_else] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_switch] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_LPAREN] = ACTIONS(2182), + [anon_sym_await] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_do] = ACTIONS(2182), + [anon_sym_try] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_debugger] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_throw] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2182), + [anon_sym_yield] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LTtemplate_GT] = ACTIONS(2182), + [anon_sym_DQUOTE] = ACTIONS(2182), + [anon_sym_SQUOTE] = ACTIONS(2182), + [anon_sym_class] = ACTIONS(2182), + [anon_sym_async] = ACTIONS(2182), + [anon_sym_function] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2182), + [anon_sym_using] = ACTIONS(2182), + [anon_sym_PLUS] = ACTIONS(2182), + [anon_sym_DASH] = ACTIONS(2182), + [anon_sym_SLASH] = ACTIONS(2182), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_TILDE] = ACTIONS(2182), + [anon_sym_void] = ACTIONS(2182), + [anon_sym_delete] = ACTIONS(2182), + [anon_sym_PLUS_PLUS] = ACTIONS(2182), + [anon_sym_DASH_DASH] = ACTIONS(2182), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3415), - [sym_number] = ACTIONS(3415), - [sym_private_property_identifier] = ACTIONS(3415), - [sym_this] = ACTIONS(3415), - [sym_super] = ACTIONS(3415), - [sym_true] = ACTIONS(3415), - [sym_false] = ACTIONS(3415), - [sym_null] = ACTIONS(3415), - [sym_undefined] = ACTIONS(3415), - [anon_sym_AT] = ACTIONS(3415), - [anon_sym_static] = ACTIONS(3415), - [anon_sym_readonly] = ACTIONS(3415), - [anon_sym_get] = ACTIONS(3415), - [anon_sym_set] = ACTIONS(3415), - [anon_sym_declare] = ACTIONS(3415), - [anon_sym_public] = ACTIONS(3415), - [anon_sym_private] = ACTIONS(3415), - [anon_sym_protected] = ACTIONS(3415), - [anon_sym_override] = ACTIONS(3415), - [anon_sym_module] = ACTIONS(3415), - [anon_sym_any] = ACTIONS(3415), - [anon_sym_number] = ACTIONS(3415), - [anon_sym_boolean] = ACTIONS(3415), - [anon_sym_string] = ACTIONS(3415), - [anon_sym_symbol] = ACTIONS(3415), - [anon_sym_object] = ACTIONS(3415), - [anon_sym_abstract] = ACTIONS(3415), - [anon_sym_interface] = ACTIONS(3415), - [anon_sym_enum] = ACTIONS(3415), + [anon_sym_BQUOTE] = ACTIONS(2182), + [sym_number] = ACTIONS(2182), + [sym_private_property_identifier] = ACTIONS(2182), + [sym_this] = ACTIONS(2182), + [sym_super] = ACTIONS(2182), + [sym_true] = ACTIONS(2182), + [sym_false] = ACTIONS(2182), + [sym_null] = ACTIONS(2182), + [sym_undefined] = ACTIONS(2182), + [anon_sym_AT] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_readonly] = ACTIONS(2182), + [anon_sym_get] = ACTIONS(2182), + [anon_sym_set] = ACTIONS(2182), + [anon_sym_declare] = ACTIONS(2182), + [anon_sym_public] = ACTIONS(2182), + [anon_sym_private] = ACTIONS(2182), + [anon_sym_protected] = ACTIONS(2182), + [anon_sym_override] = ACTIONS(2182), + [anon_sym_module] = ACTIONS(2182), + [anon_sym_any] = ACTIONS(2182), + [anon_sym_number] = ACTIONS(2182), + [anon_sym_boolean] = ACTIONS(2182), + [anon_sym_string] = ACTIONS(2182), + [anon_sym_symbol] = ACTIONS(2182), + [anon_sym_object] = ACTIONS(2182), + [anon_sym_abstract] = ACTIONS(2182), + [anon_sym_interface] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), [sym_html_comment] = ACTIONS(5), }, [1478] = { [sym_comment] = STATE(1478), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3311), + [anon_sym_export] = ACTIONS(3311), + [anon_sym_default] = ACTIONS(3311), + [anon_sym_type] = ACTIONS(3311), + [anon_sym_namespace] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_typeof] = ACTIONS(3311), + [anon_sym_import] = ACTIONS(3311), + [anon_sym_with] = ACTIONS(3311), + [anon_sym_var] = ACTIONS(3311), + [anon_sym_let] = ACTIONS(3311), + [anon_sym_const] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_switch] = ACTIONS(3311), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_await] = ACTIONS(3311), + [anon_sym_while] = ACTIONS(3311), + [anon_sym_do] = ACTIONS(3311), + [anon_sym_try] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_debugger] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_throw] = ACTIONS(3311), + [anon_sym_SEMI] = ACTIONS(3311), + [anon_sym_case] = ACTIONS(3311), + [anon_sym_yield] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_LTtemplate_GT] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(3311), + [anon_sym_SQUOTE] = ACTIONS(3311), + [anon_sym_class] = ACTIONS(3311), + [anon_sym_async] = ACTIONS(3311), + [anon_sym_function] = ACTIONS(3311), + [anon_sym_new] = ACTIONS(3311), + [anon_sym_using] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_void] = ACTIONS(3311), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3311), + [sym_number] = ACTIONS(3311), + [sym_private_property_identifier] = ACTIONS(3311), + [sym_this] = ACTIONS(3311), + [sym_super] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_null] = ACTIONS(3311), + [sym_undefined] = ACTIONS(3311), + [anon_sym_AT] = ACTIONS(3311), + [anon_sym_static] = ACTIONS(3311), + [anon_sym_readonly] = ACTIONS(3311), + [anon_sym_get] = ACTIONS(3311), + [anon_sym_set] = ACTIONS(3311), + [anon_sym_declare] = ACTIONS(3311), + [anon_sym_public] = ACTIONS(3311), + [anon_sym_private] = ACTIONS(3311), + [anon_sym_protected] = ACTIONS(3311), + [anon_sym_override] = ACTIONS(3311), + [anon_sym_module] = ACTIONS(3311), + [anon_sym_any] = ACTIONS(3311), + [anon_sym_number] = ACTIONS(3311), + [anon_sym_boolean] = ACTIONS(3311), + [anon_sym_string] = ACTIONS(3311), + [anon_sym_symbol] = ACTIONS(3311), + [anon_sym_object] = ACTIONS(3311), + [anon_sym_abstract] = ACTIONS(3311), + [anon_sym_interface] = ACTIONS(3311), + [anon_sym_enum] = ACTIONS(3311), [sym_html_comment] = ACTIONS(5), }, [1479] = { [sym_comment] = STATE(1479), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [sym_identifier] = ACTIONS(3315), + [anon_sym_export] = ACTIONS(3315), + [anon_sym_default] = ACTIONS(3315), + [anon_sym_type] = ACTIONS(3315), + [anon_sym_namespace] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3315), + [anon_sym_RBRACE] = ACTIONS(3315), + [anon_sym_typeof] = ACTIONS(3315), + [anon_sym_import] = ACTIONS(3315), + [anon_sym_with] = ACTIONS(3315), + [anon_sym_var] = ACTIONS(3315), + [anon_sym_let] = ACTIONS(3315), + [anon_sym_const] = ACTIONS(3315), + [anon_sym_BANG] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_switch] = ACTIONS(3315), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3315), + [anon_sym_await] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3315), + [anon_sym_do] = ACTIONS(3315), + [anon_sym_try] = ACTIONS(3315), + [anon_sym_break] = ACTIONS(3315), + [anon_sym_continue] = ACTIONS(3315), + [anon_sym_debugger] = ACTIONS(3315), + [anon_sym_return] = ACTIONS(3315), + [anon_sym_throw] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym_case] = ACTIONS(3315), + [anon_sym_yield] = ACTIONS(3315), + [anon_sym_LBRACK] = ACTIONS(3315), + [anon_sym_LTtemplate_GT] = ACTIONS(3315), + [anon_sym_DQUOTE] = ACTIONS(3315), + [anon_sym_SQUOTE] = ACTIONS(3315), + [anon_sym_class] = ACTIONS(3315), + [anon_sym_async] = ACTIONS(3315), + [anon_sym_function] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(3315), + [anon_sym_using] = ACTIONS(3315), + [anon_sym_PLUS] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3315), + [anon_sym_SLASH] = ACTIONS(3315), + [anon_sym_LT] = ACTIONS(3315), + [anon_sym_TILDE] = ACTIONS(3315), + [anon_sym_void] = ACTIONS(3315), + [anon_sym_delete] = ACTIONS(3315), + [anon_sym_PLUS_PLUS] = ACTIONS(3315), + [anon_sym_DASH_DASH] = ACTIONS(3315), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3315), + [sym_number] = ACTIONS(3315), + [sym_private_property_identifier] = ACTIONS(3315), + [sym_this] = ACTIONS(3315), + [sym_super] = ACTIONS(3315), + [sym_true] = ACTIONS(3315), + [sym_false] = ACTIONS(3315), + [sym_null] = ACTIONS(3315), + [sym_undefined] = ACTIONS(3315), + [anon_sym_AT] = ACTIONS(3315), + [anon_sym_static] = ACTIONS(3315), + [anon_sym_readonly] = ACTIONS(3315), + [anon_sym_get] = ACTIONS(3315), + [anon_sym_set] = ACTIONS(3315), + [anon_sym_declare] = ACTIONS(3315), + [anon_sym_public] = ACTIONS(3315), + [anon_sym_private] = ACTIONS(3315), + [anon_sym_protected] = ACTIONS(3315), + [anon_sym_override] = ACTIONS(3315), + [anon_sym_module] = ACTIONS(3315), + [anon_sym_any] = ACTIONS(3315), + [anon_sym_number] = ACTIONS(3315), + [anon_sym_boolean] = ACTIONS(3315), + [anon_sym_string] = ACTIONS(3315), + [anon_sym_symbol] = ACTIONS(3315), + [anon_sym_object] = ACTIONS(3315), + [anon_sym_abstract] = ACTIONS(3315), + [anon_sym_interface] = ACTIONS(3315), + [anon_sym_enum] = ACTIONS(3315), [sym_html_comment] = ACTIONS(5), }, [1480] = { [sym_comment] = STATE(1480), - [sym_identifier] = ACTIONS(3363), - [anon_sym_export] = ACTIONS(3363), - [anon_sym_default] = ACTIONS(3363), - [anon_sym_type] = ACTIONS(3363), - [anon_sym_namespace] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_typeof] = ACTIONS(3363), - [anon_sym_import] = ACTIONS(3363), - [anon_sym_with] = ACTIONS(3363), - [anon_sym_var] = ACTIONS(3363), - [anon_sym_let] = ACTIONS(3363), - [anon_sym_const] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_switch] = ACTIONS(3363), - [anon_sym_for] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_await] = ACTIONS(3363), - [anon_sym_while] = ACTIONS(3363), - [anon_sym_do] = ACTIONS(3363), - [anon_sym_try] = ACTIONS(3363), - [anon_sym_break] = ACTIONS(3363), - [anon_sym_continue] = ACTIONS(3363), - [anon_sym_debugger] = ACTIONS(3363), - [anon_sym_return] = ACTIONS(3363), - [anon_sym_throw] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_case] = ACTIONS(3363), - [anon_sym_yield] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3363), - [anon_sym_LTtemplate_GT] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(3363), - [anon_sym_SQUOTE] = ACTIONS(3363), - [anon_sym_class] = ACTIONS(3363), - [anon_sym_async] = ACTIONS(3363), - [anon_sym_function] = ACTIONS(3363), - [anon_sym_new] = ACTIONS(3363), - [anon_sym_using] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3363), - [anon_sym_void] = ACTIONS(3363), - [anon_sym_delete] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DASH_DASH] = ACTIONS(3363), + [ts_builtin_sym_end] = ACTIONS(3665), + [sym_identifier] = ACTIONS(3453), + [anon_sym_export] = ACTIONS(3453), + [anon_sym_type] = ACTIONS(3453), + [anon_sym_namespace] = ACTIONS(3453), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_RBRACE] = ACTIONS(3453), + [anon_sym_typeof] = ACTIONS(3453), + [anon_sym_import] = ACTIONS(3453), + [anon_sym_with] = ACTIONS(3453), + [anon_sym_var] = ACTIONS(3453), + [anon_sym_let] = ACTIONS(3453), + [anon_sym_const] = ACTIONS(3453), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_else] = ACTIONS(3453), + [anon_sym_if] = ACTIONS(3453), + [anon_sym_switch] = ACTIONS(3453), + [anon_sym_for] = ACTIONS(3453), + [anon_sym_LPAREN] = ACTIONS(3453), + [anon_sym_await] = ACTIONS(3453), + [anon_sym_while] = ACTIONS(3453), + [anon_sym_do] = ACTIONS(3453), + [anon_sym_try] = ACTIONS(3453), + [anon_sym_break] = ACTIONS(3453), + [anon_sym_continue] = ACTIONS(3453), + [anon_sym_debugger] = ACTIONS(3453), + [anon_sym_return] = ACTIONS(3453), + [anon_sym_throw] = ACTIONS(3453), + [anon_sym_SEMI] = ACTIONS(3453), + [anon_sym_yield] = ACTIONS(3453), + [anon_sym_LBRACK] = ACTIONS(3453), + [anon_sym_LTtemplate_GT] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [anon_sym_SQUOTE] = ACTIONS(3453), + [anon_sym_class] = ACTIONS(3453), + [anon_sym_async] = ACTIONS(3453), + [anon_sym_function] = ACTIONS(3453), + [anon_sym_new] = ACTIONS(3453), + [anon_sym_using] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3453), + [anon_sym_SLASH] = ACTIONS(3453), + [anon_sym_LT] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [anon_sym_void] = ACTIONS(3453), + [anon_sym_delete] = ACTIONS(3453), + [anon_sym_PLUS_PLUS] = ACTIONS(3453), + [anon_sym_DASH_DASH] = ACTIONS(3453), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3363), - [sym_number] = ACTIONS(3363), - [sym_private_property_identifier] = ACTIONS(3363), - [sym_this] = ACTIONS(3363), - [sym_super] = ACTIONS(3363), - [sym_true] = ACTIONS(3363), - [sym_false] = ACTIONS(3363), - [sym_null] = ACTIONS(3363), - [sym_undefined] = ACTIONS(3363), - [anon_sym_AT] = ACTIONS(3363), - [anon_sym_static] = ACTIONS(3363), - [anon_sym_readonly] = ACTIONS(3363), - [anon_sym_get] = ACTIONS(3363), - [anon_sym_set] = ACTIONS(3363), - [anon_sym_declare] = ACTIONS(3363), - [anon_sym_public] = ACTIONS(3363), - [anon_sym_private] = ACTIONS(3363), - [anon_sym_protected] = ACTIONS(3363), - [anon_sym_override] = ACTIONS(3363), - [anon_sym_module] = ACTIONS(3363), - [anon_sym_any] = ACTIONS(3363), - [anon_sym_number] = ACTIONS(3363), - [anon_sym_boolean] = ACTIONS(3363), - [anon_sym_string] = ACTIONS(3363), - [anon_sym_symbol] = ACTIONS(3363), - [anon_sym_object] = ACTIONS(3363), - [anon_sym_abstract] = ACTIONS(3363), - [anon_sym_interface] = ACTIONS(3363), - [anon_sym_enum] = ACTIONS(3363), + [anon_sym_BQUOTE] = ACTIONS(3453), + [sym_number] = ACTIONS(3453), + [sym_private_property_identifier] = ACTIONS(3453), + [sym_this] = ACTIONS(3453), + [sym_super] = ACTIONS(3453), + [sym_true] = ACTIONS(3453), + [sym_false] = ACTIONS(3453), + [sym_null] = ACTIONS(3453), + [sym_undefined] = ACTIONS(3453), + [anon_sym_AT] = ACTIONS(3453), + [anon_sym_static] = ACTIONS(3453), + [anon_sym_readonly] = ACTIONS(3453), + [anon_sym_get] = ACTIONS(3453), + [anon_sym_set] = ACTIONS(3453), + [anon_sym_declare] = ACTIONS(3453), + [anon_sym_public] = ACTIONS(3453), + [anon_sym_private] = ACTIONS(3453), + [anon_sym_protected] = ACTIONS(3453), + [anon_sym_override] = ACTIONS(3453), + [anon_sym_module] = ACTIONS(3453), + [anon_sym_any] = ACTIONS(3453), + [anon_sym_number] = ACTIONS(3453), + [anon_sym_boolean] = ACTIONS(3453), + [anon_sym_string] = ACTIONS(3453), + [anon_sym_symbol] = ACTIONS(3453), + [anon_sym_object] = ACTIONS(3453), + [anon_sym_abstract] = ACTIONS(3453), + [anon_sym_interface] = ACTIONS(3453), + [anon_sym_enum] = ACTIONS(3453), [sym_html_comment] = ACTIONS(5), }, [1481] = { [sym_comment] = STATE(1481), - [sym_identifier] = ACTIONS(3361), - [anon_sym_export] = ACTIONS(3361), - [anon_sym_default] = ACTIONS(3361), - [anon_sym_type] = ACTIONS(3361), - [anon_sym_namespace] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_typeof] = ACTIONS(3361), - [anon_sym_import] = ACTIONS(3361), - [anon_sym_with] = ACTIONS(3361), - [anon_sym_var] = ACTIONS(3361), - [anon_sym_let] = ACTIONS(3361), - [anon_sym_const] = ACTIONS(3361), - [anon_sym_BANG] = ACTIONS(3361), - [anon_sym_if] = ACTIONS(3361), - [anon_sym_switch] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3361), - [anon_sym_await] = ACTIONS(3361), - [anon_sym_while] = ACTIONS(3361), - [anon_sym_do] = ACTIONS(3361), - [anon_sym_try] = ACTIONS(3361), - [anon_sym_break] = ACTIONS(3361), - [anon_sym_continue] = ACTIONS(3361), - [anon_sym_debugger] = ACTIONS(3361), - [anon_sym_return] = ACTIONS(3361), - [anon_sym_throw] = ACTIONS(3361), - [anon_sym_SEMI] = ACTIONS(3361), - [anon_sym_case] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_LTtemplate_GT] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(3361), - [anon_sym_SQUOTE] = ACTIONS(3361), - [anon_sym_class] = ACTIONS(3361), - [anon_sym_async] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3361), - [anon_sym_using] = ACTIONS(3361), - [anon_sym_PLUS] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_SLASH] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_void] = ACTIONS(3361), - [anon_sym_delete] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3361), - [sym_number] = ACTIONS(3361), - [sym_private_property_identifier] = ACTIONS(3361), - [sym_this] = ACTIONS(3361), - [sym_super] = ACTIONS(3361), - [sym_true] = ACTIONS(3361), - [sym_false] = ACTIONS(3361), - [sym_null] = ACTIONS(3361), - [sym_undefined] = ACTIONS(3361), - [anon_sym_AT] = ACTIONS(3361), - [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_abstract] = ACTIONS(3361), - [anon_sym_interface] = ACTIONS(3361), - [anon_sym_enum] = ACTIONS(3361), + [ts_builtin_sym_end] = ACTIONS(3667), + [sym_identifier] = ACTIONS(3451), + [anon_sym_export] = ACTIONS(3451), + [anon_sym_type] = ACTIONS(3451), + [anon_sym_namespace] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_RBRACE] = ACTIONS(3451), + [anon_sym_typeof] = ACTIONS(3451), + [anon_sym_import] = ACTIONS(3451), + [anon_sym_with] = ACTIONS(3451), + [anon_sym_var] = ACTIONS(3451), + [anon_sym_let] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3451), + [anon_sym_BANG] = ACTIONS(3451), + [anon_sym_else] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_switch] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_await] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_break] = ACTIONS(3451), + [anon_sym_continue] = ACTIONS(3451), + [anon_sym_debugger] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_throw] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3451), + [anon_sym_yield] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_LTtemplate_GT] = ACTIONS(3451), + [anon_sym_DQUOTE] = ACTIONS(3451), + [anon_sym_SQUOTE] = ACTIONS(3451), + [anon_sym_class] = ACTIONS(3451), + [anon_sym_async] = ACTIONS(3451), + [anon_sym_function] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_using] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_SLASH] = ACTIONS(3451), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_TILDE] = ACTIONS(3451), + [anon_sym_void] = ACTIONS(3451), + [anon_sym_delete] = ACTIONS(3451), + [anon_sym_PLUS_PLUS] = ACTIONS(3451), + [anon_sym_DASH_DASH] = ACTIONS(3451), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3451), + [sym_number] = ACTIONS(3451), + [sym_private_property_identifier] = ACTIONS(3451), + [sym_this] = ACTIONS(3451), + [sym_super] = ACTIONS(3451), + [sym_true] = ACTIONS(3451), + [sym_false] = ACTIONS(3451), + [sym_null] = ACTIONS(3451), + [sym_undefined] = ACTIONS(3451), + [anon_sym_AT] = ACTIONS(3451), + [anon_sym_static] = ACTIONS(3451), + [anon_sym_readonly] = ACTIONS(3451), + [anon_sym_get] = ACTIONS(3451), + [anon_sym_set] = ACTIONS(3451), + [anon_sym_declare] = ACTIONS(3451), + [anon_sym_public] = ACTIONS(3451), + [anon_sym_private] = ACTIONS(3451), + [anon_sym_protected] = ACTIONS(3451), + [anon_sym_override] = ACTIONS(3451), + [anon_sym_module] = ACTIONS(3451), + [anon_sym_any] = ACTIONS(3451), + [anon_sym_number] = ACTIONS(3451), + [anon_sym_boolean] = ACTIONS(3451), + [anon_sym_string] = ACTIONS(3451), + [anon_sym_symbol] = ACTIONS(3451), + [anon_sym_object] = ACTIONS(3451), + [anon_sym_abstract] = ACTIONS(3451), + [anon_sym_interface] = ACTIONS(3451), + [anon_sym_enum] = ACTIONS(3451), [sym_html_comment] = ACTIONS(5), }, [1482] = { [sym_comment] = STATE(1482), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [ts_builtin_sym_end] = ACTIONS(2180), + [sym_identifier] = ACTIONS(2178), + [anon_sym_export] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_typeof] = ACTIONS(2178), + [anon_sym_import] = ACTIONS(2178), + [anon_sym_with] = ACTIONS(2178), + [anon_sym_var] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_else] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_await] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_debugger] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_LTtemplate_GT] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_TILDE] = ACTIONS(2178), + [anon_sym_void] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_PLUS_PLUS] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2178), + [sym_number] = ACTIONS(2178), + [sym_private_property_identifier] = ACTIONS(2178), + [sym_this] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [sym_null] = ACTIONS(2178), + [sym_undefined] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_readonly] = ACTIONS(2178), + [anon_sym_get] = ACTIONS(2178), + [anon_sym_set] = ACTIONS(2178), + [anon_sym_declare] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_protected] = ACTIONS(2178), + [anon_sym_override] = ACTIONS(2178), + [anon_sym_module] = ACTIONS(2178), + [anon_sym_any] = ACTIONS(2178), + [anon_sym_number] = ACTIONS(2178), + [anon_sym_boolean] = ACTIONS(2178), + [anon_sym_string] = ACTIONS(2178), + [anon_sym_symbol] = ACTIONS(2178), + [anon_sym_object] = ACTIONS(2178), + [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_interface] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), [sym_html_comment] = ACTIONS(5), }, [1483] = { [sym_comment] = STATE(1483), + [ts_builtin_sym_end] = ACTIONS(3669), + [sym_identifier] = ACTIONS(3449), + [anon_sym_export] = ACTIONS(3449), + [anon_sym_type] = ACTIONS(3449), + [anon_sym_namespace] = ACTIONS(3449), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_RBRACE] = ACTIONS(3449), + [anon_sym_typeof] = ACTIONS(3449), + [anon_sym_import] = ACTIONS(3449), + [anon_sym_with] = ACTIONS(3449), + [anon_sym_var] = ACTIONS(3449), + [anon_sym_let] = ACTIONS(3449), + [anon_sym_const] = ACTIONS(3449), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_else] = ACTIONS(3449), + [anon_sym_if] = ACTIONS(3449), + [anon_sym_switch] = ACTIONS(3449), + [anon_sym_for] = ACTIONS(3449), + [anon_sym_LPAREN] = ACTIONS(3449), + [anon_sym_await] = ACTIONS(3449), + [anon_sym_while] = ACTIONS(3449), + [anon_sym_do] = ACTIONS(3449), + [anon_sym_try] = ACTIONS(3449), + [anon_sym_break] = ACTIONS(3449), + [anon_sym_continue] = ACTIONS(3449), + [anon_sym_debugger] = ACTIONS(3449), + [anon_sym_return] = ACTIONS(3449), + [anon_sym_throw] = ACTIONS(3449), + [anon_sym_SEMI] = ACTIONS(3449), + [anon_sym_yield] = ACTIONS(3449), + [anon_sym_LBRACK] = ACTIONS(3449), + [anon_sym_LTtemplate_GT] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [anon_sym_SQUOTE] = ACTIONS(3449), + [anon_sym_class] = ACTIONS(3449), + [anon_sym_async] = ACTIONS(3449), + [anon_sym_function] = ACTIONS(3449), + [anon_sym_new] = ACTIONS(3449), + [anon_sym_using] = ACTIONS(3449), + [anon_sym_PLUS] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_SLASH] = ACTIONS(3449), + [anon_sym_LT] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3449), + [anon_sym_void] = ACTIONS(3449), + [anon_sym_delete] = ACTIONS(3449), + [anon_sym_PLUS_PLUS] = ACTIONS(3449), + [anon_sym_DASH_DASH] = ACTIONS(3449), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3449), + [sym_number] = ACTIONS(3449), + [sym_private_property_identifier] = ACTIONS(3449), + [sym_this] = ACTIONS(3449), + [sym_super] = ACTIONS(3449), + [sym_true] = ACTIONS(3449), + [sym_false] = ACTIONS(3449), + [sym_null] = ACTIONS(3449), + [sym_undefined] = ACTIONS(3449), + [anon_sym_AT] = ACTIONS(3449), + [anon_sym_static] = ACTIONS(3449), + [anon_sym_readonly] = ACTIONS(3449), + [anon_sym_get] = ACTIONS(3449), + [anon_sym_set] = ACTIONS(3449), + [anon_sym_declare] = ACTIONS(3449), + [anon_sym_public] = ACTIONS(3449), + [anon_sym_private] = ACTIONS(3449), + [anon_sym_protected] = ACTIONS(3449), + [anon_sym_override] = ACTIONS(3449), + [anon_sym_module] = ACTIONS(3449), + [anon_sym_any] = ACTIONS(3449), + [anon_sym_number] = ACTIONS(3449), + [anon_sym_boolean] = ACTIONS(3449), + [anon_sym_string] = ACTIONS(3449), + [anon_sym_symbol] = ACTIONS(3449), + [anon_sym_object] = ACTIONS(3449), + [anon_sym_abstract] = ACTIONS(3449), + [anon_sym_interface] = ACTIONS(3449), + [anon_sym_enum] = ACTIONS(3449), + [sym_html_comment] = ACTIONS(5), + }, + [1484] = { + [sym_comment] = STATE(1484), + [sym_identifier] = ACTIONS(3373), + [anon_sym_export] = ACTIONS(3373), + [anon_sym_default] = ACTIONS(3373), + [anon_sym_type] = ACTIONS(3373), + [anon_sym_namespace] = ACTIONS(3373), + [anon_sym_LBRACE] = ACTIONS(3373), + [anon_sym_RBRACE] = ACTIONS(3373), + [anon_sym_typeof] = ACTIONS(3373), + [anon_sym_import] = ACTIONS(3373), + [anon_sym_with] = ACTIONS(3373), + [anon_sym_var] = ACTIONS(3373), + [anon_sym_let] = ACTIONS(3373), + [anon_sym_const] = ACTIONS(3373), + [anon_sym_BANG] = ACTIONS(3373), + [anon_sym_if] = ACTIONS(3373), + [anon_sym_switch] = ACTIONS(3373), + [anon_sym_for] = ACTIONS(3373), + [anon_sym_LPAREN] = ACTIONS(3373), + [anon_sym_await] = ACTIONS(3373), + [anon_sym_while] = ACTIONS(3373), + [anon_sym_do] = ACTIONS(3373), + [anon_sym_try] = ACTIONS(3373), + [anon_sym_break] = ACTIONS(3373), + [anon_sym_continue] = ACTIONS(3373), + [anon_sym_debugger] = ACTIONS(3373), + [anon_sym_return] = ACTIONS(3373), + [anon_sym_throw] = ACTIONS(3373), + [anon_sym_SEMI] = ACTIONS(3373), + [anon_sym_case] = ACTIONS(3373), + [anon_sym_yield] = ACTIONS(3373), + [anon_sym_LBRACK] = ACTIONS(3373), + [anon_sym_LTtemplate_GT] = ACTIONS(3373), + [anon_sym_DQUOTE] = ACTIONS(3373), + [anon_sym_SQUOTE] = ACTIONS(3373), + [anon_sym_class] = ACTIONS(3373), + [anon_sym_async] = ACTIONS(3373), + [anon_sym_function] = ACTIONS(3373), + [anon_sym_new] = ACTIONS(3373), + [anon_sym_using] = ACTIONS(3373), + [anon_sym_PLUS] = ACTIONS(3373), + [anon_sym_DASH] = ACTIONS(3373), + [anon_sym_SLASH] = ACTIONS(3373), + [anon_sym_LT] = ACTIONS(3373), + [anon_sym_TILDE] = ACTIONS(3373), + [anon_sym_void] = ACTIONS(3373), + [anon_sym_delete] = ACTIONS(3373), + [anon_sym_PLUS_PLUS] = ACTIONS(3373), + [anon_sym_DASH_DASH] = ACTIONS(3373), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3373), + [sym_number] = ACTIONS(3373), + [sym_private_property_identifier] = ACTIONS(3373), + [sym_this] = ACTIONS(3373), + [sym_super] = ACTIONS(3373), + [sym_true] = ACTIONS(3373), + [sym_false] = ACTIONS(3373), + [sym_null] = ACTIONS(3373), + [sym_undefined] = ACTIONS(3373), + [anon_sym_AT] = ACTIONS(3373), + [anon_sym_static] = ACTIONS(3373), + [anon_sym_readonly] = ACTIONS(3373), + [anon_sym_get] = ACTIONS(3373), + [anon_sym_set] = ACTIONS(3373), + [anon_sym_declare] = ACTIONS(3373), + [anon_sym_public] = ACTIONS(3373), + [anon_sym_private] = ACTIONS(3373), + [anon_sym_protected] = ACTIONS(3373), + [anon_sym_override] = ACTIONS(3373), + [anon_sym_module] = ACTIONS(3373), + [anon_sym_any] = ACTIONS(3373), + [anon_sym_number] = ACTIONS(3373), + [anon_sym_boolean] = ACTIONS(3373), + [anon_sym_string] = ACTIONS(3373), + [anon_sym_symbol] = ACTIONS(3373), + [anon_sym_object] = ACTIONS(3373), + [anon_sym_abstract] = ACTIONS(3373), + [anon_sym_interface] = ACTIONS(3373), + [anon_sym_enum] = ACTIONS(3373), + [sym_html_comment] = ACTIONS(5), + }, + [1485] = { + [sym_comment] = STATE(1485), + [sym_identifier] = ACTIONS(3371), + [anon_sym_export] = ACTIONS(3371), + [anon_sym_default] = ACTIONS(3371), + [anon_sym_type] = ACTIONS(3371), + [anon_sym_namespace] = ACTIONS(3371), + [anon_sym_LBRACE] = ACTIONS(3371), + [anon_sym_RBRACE] = ACTIONS(3371), + [anon_sym_typeof] = ACTIONS(3371), + [anon_sym_import] = ACTIONS(3371), + [anon_sym_with] = ACTIONS(3371), + [anon_sym_var] = ACTIONS(3371), + [anon_sym_let] = ACTIONS(3371), + [anon_sym_const] = ACTIONS(3371), + [anon_sym_BANG] = ACTIONS(3371), + [anon_sym_if] = ACTIONS(3371), + [anon_sym_switch] = ACTIONS(3371), + [anon_sym_for] = ACTIONS(3371), + [anon_sym_LPAREN] = ACTIONS(3371), + [anon_sym_await] = ACTIONS(3371), + [anon_sym_while] = ACTIONS(3371), + [anon_sym_do] = ACTIONS(3371), + [anon_sym_try] = ACTIONS(3371), + [anon_sym_break] = ACTIONS(3371), + [anon_sym_continue] = ACTIONS(3371), + [anon_sym_debugger] = ACTIONS(3371), + [anon_sym_return] = ACTIONS(3371), + [anon_sym_throw] = ACTIONS(3371), + [anon_sym_SEMI] = ACTIONS(3371), + [anon_sym_case] = ACTIONS(3371), + [anon_sym_yield] = ACTIONS(3371), + [anon_sym_LBRACK] = ACTIONS(3371), + [anon_sym_LTtemplate_GT] = ACTIONS(3371), + [anon_sym_DQUOTE] = ACTIONS(3371), + [anon_sym_SQUOTE] = ACTIONS(3371), + [anon_sym_class] = ACTIONS(3371), + [anon_sym_async] = ACTIONS(3371), + [anon_sym_function] = ACTIONS(3371), + [anon_sym_new] = ACTIONS(3371), + [anon_sym_using] = ACTIONS(3371), + [anon_sym_PLUS] = ACTIONS(3371), + [anon_sym_DASH] = ACTIONS(3371), + [anon_sym_SLASH] = ACTIONS(3371), + [anon_sym_LT] = ACTIONS(3371), + [anon_sym_TILDE] = ACTIONS(3371), + [anon_sym_void] = ACTIONS(3371), + [anon_sym_delete] = ACTIONS(3371), + [anon_sym_PLUS_PLUS] = ACTIONS(3371), + [anon_sym_DASH_DASH] = ACTIONS(3371), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3371), + [sym_number] = ACTIONS(3371), + [sym_private_property_identifier] = ACTIONS(3371), + [sym_this] = ACTIONS(3371), + [sym_super] = ACTIONS(3371), + [sym_true] = ACTIONS(3371), + [sym_false] = ACTIONS(3371), + [sym_null] = ACTIONS(3371), + [sym_undefined] = ACTIONS(3371), + [anon_sym_AT] = ACTIONS(3371), + [anon_sym_static] = ACTIONS(3371), + [anon_sym_readonly] = ACTIONS(3371), + [anon_sym_get] = ACTIONS(3371), + [anon_sym_set] = ACTIONS(3371), + [anon_sym_declare] = ACTIONS(3371), + [anon_sym_public] = ACTIONS(3371), + [anon_sym_private] = ACTIONS(3371), + [anon_sym_protected] = ACTIONS(3371), + [anon_sym_override] = ACTIONS(3371), + [anon_sym_module] = ACTIONS(3371), + [anon_sym_any] = ACTIONS(3371), + [anon_sym_number] = ACTIONS(3371), + [anon_sym_boolean] = ACTIONS(3371), + [anon_sym_string] = ACTIONS(3371), + [anon_sym_symbol] = ACTIONS(3371), + [anon_sym_object] = ACTIONS(3371), + [anon_sym_abstract] = ACTIONS(3371), + [anon_sym_interface] = ACTIONS(3371), + [anon_sym_enum] = ACTIONS(3371), + [sym_html_comment] = ACTIONS(5), + }, + [1486] = { + [sym_comment] = STATE(1486), + [ts_builtin_sym_end] = ACTIONS(2306), + [sym_identifier] = ACTIONS(2304), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_type] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2304), + [anon_sym_LBRACE] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_typeof] = ACTIONS(2304), + [anon_sym_import] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(2304), + [anon_sym_var] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_switch] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_await] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_debugger] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_throw] = ACTIONS(2304), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_yield] = ACTIONS(2304), + [anon_sym_LBRACK] = ACTIONS(2304), + [anon_sym_LTtemplate_GT] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2304), + [anon_sym_SQUOTE] = ACTIONS(2304), + [anon_sym_class] = ACTIONS(2304), + [anon_sym_async] = ACTIONS(2304), + [anon_sym_function] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2304), + [anon_sym_using] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2304), + [anon_sym_DASH] = ACTIONS(2304), + [anon_sym_SLASH] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2304), + [anon_sym_void] = ACTIONS(2304), + [anon_sym_delete] = ACTIONS(2304), + [anon_sym_PLUS_PLUS] = ACTIONS(2304), + [anon_sym_DASH_DASH] = ACTIONS(2304), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2304), + [sym_number] = ACTIONS(2304), + [sym_private_property_identifier] = ACTIONS(2304), + [sym_this] = ACTIONS(2304), + [sym_super] = ACTIONS(2304), + [sym_true] = ACTIONS(2304), + [sym_false] = ACTIONS(2304), + [sym_null] = ACTIONS(2304), + [sym_undefined] = ACTIONS(2304), + [anon_sym_AT] = ACTIONS(2304), + [anon_sym_static] = ACTIONS(2304), + [anon_sym_readonly] = ACTIONS(2304), + [anon_sym_get] = ACTIONS(2304), + [anon_sym_set] = ACTIONS(2304), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_public] = ACTIONS(2304), + [anon_sym_private] = ACTIONS(2304), + [anon_sym_protected] = ACTIONS(2304), + [anon_sym_override] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_any] = ACTIONS(2304), + [anon_sym_number] = ACTIONS(2304), + [anon_sym_boolean] = ACTIONS(2304), + [anon_sym_string] = ACTIONS(2304), + [anon_sym_symbol] = ACTIONS(2304), + [anon_sym_object] = ACTIONS(2304), + [anon_sym_abstract] = ACTIONS(2304), + [anon_sym_interface] = ACTIONS(2304), + [anon_sym_enum] = ACTIONS(2304), + [sym__automatic_semicolon] = ACTIONS(2306), + [sym_html_comment] = ACTIONS(5), + }, + [1487] = { + [sym_comment] = STATE(1487), + [sym_identifier] = ACTIONS(3369), + [anon_sym_export] = ACTIONS(3369), + [anon_sym_default] = ACTIONS(3369), + [anon_sym_type] = ACTIONS(3369), + [anon_sym_namespace] = ACTIONS(3369), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_RBRACE] = ACTIONS(3369), + [anon_sym_typeof] = ACTIONS(3369), + [anon_sym_import] = ACTIONS(3369), + [anon_sym_with] = ACTIONS(3369), + [anon_sym_var] = ACTIONS(3369), + [anon_sym_let] = ACTIONS(3369), + [anon_sym_const] = ACTIONS(3369), + [anon_sym_BANG] = ACTIONS(3369), + [anon_sym_if] = ACTIONS(3369), + [anon_sym_switch] = ACTIONS(3369), + [anon_sym_for] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_await] = ACTIONS(3369), + [anon_sym_while] = ACTIONS(3369), + [anon_sym_do] = ACTIONS(3369), + [anon_sym_try] = ACTIONS(3369), + [anon_sym_break] = ACTIONS(3369), + [anon_sym_continue] = ACTIONS(3369), + [anon_sym_debugger] = ACTIONS(3369), + [anon_sym_return] = ACTIONS(3369), + [anon_sym_throw] = ACTIONS(3369), + [anon_sym_SEMI] = ACTIONS(3369), + [anon_sym_case] = ACTIONS(3369), + [anon_sym_yield] = ACTIONS(3369), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_LTtemplate_GT] = ACTIONS(3369), + [anon_sym_DQUOTE] = ACTIONS(3369), + [anon_sym_SQUOTE] = ACTIONS(3369), + [anon_sym_class] = ACTIONS(3369), + [anon_sym_async] = ACTIONS(3369), + [anon_sym_function] = ACTIONS(3369), + [anon_sym_new] = ACTIONS(3369), + [anon_sym_using] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_SLASH] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3369), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_void] = ACTIONS(3369), + [anon_sym_delete] = ACTIONS(3369), + [anon_sym_PLUS_PLUS] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(3369), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3369), + [sym_number] = ACTIONS(3369), + [sym_private_property_identifier] = ACTIONS(3369), + [sym_this] = ACTIONS(3369), + [sym_super] = ACTIONS(3369), + [sym_true] = ACTIONS(3369), + [sym_false] = ACTIONS(3369), + [sym_null] = ACTIONS(3369), + [sym_undefined] = ACTIONS(3369), + [anon_sym_AT] = ACTIONS(3369), + [anon_sym_static] = ACTIONS(3369), + [anon_sym_readonly] = ACTIONS(3369), + [anon_sym_get] = ACTIONS(3369), + [anon_sym_set] = ACTIONS(3369), + [anon_sym_declare] = ACTIONS(3369), + [anon_sym_public] = ACTIONS(3369), + [anon_sym_private] = ACTIONS(3369), + [anon_sym_protected] = ACTIONS(3369), + [anon_sym_override] = ACTIONS(3369), + [anon_sym_module] = ACTIONS(3369), + [anon_sym_any] = ACTIONS(3369), + [anon_sym_number] = ACTIONS(3369), + [anon_sym_boolean] = ACTIONS(3369), + [anon_sym_string] = ACTIONS(3369), + [anon_sym_symbol] = ACTIONS(3369), + [anon_sym_object] = ACTIONS(3369), + [anon_sym_abstract] = ACTIONS(3369), + [anon_sym_interface] = ACTIONS(3369), + [anon_sym_enum] = ACTIONS(3369), + [sym_html_comment] = ACTIONS(5), + }, + [1488] = { + [sym_comment] = STATE(1488), + [sym_identifier] = ACTIONS(3367), + [anon_sym_export] = ACTIONS(3367), + [anon_sym_default] = ACTIONS(3367), + [anon_sym_type] = ACTIONS(3367), + [anon_sym_namespace] = ACTIONS(3367), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_typeof] = ACTIONS(3367), + [anon_sym_import] = ACTIONS(3367), + [anon_sym_with] = ACTIONS(3367), + [anon_sym_var] = ACTIONS(3367), + [anon_sym_let] = ACTIONS(3367), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), + [anon_sym_switch] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_await] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_do] = ACTIONS(3367), + [anon_sym_try] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_debugger] = ACTIONS(3367), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_throw] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3367), + [anon_sym_case] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [anon_sym_LTtemplate_GT] = ACTIONS(3367), + [anon_sym_DQUOTE] = ACTIONS(3367), + [anon_sym_SQUOTE] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_function] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_using] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(3367), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_TILDE] = ACTIONS(3367), + [anon_sym_void] = ACTIONS(3367), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_PLUS_PLUS] = ACTIONS(3367), + [anon_sym_DASH_DASH] = ACTIONS(3367), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3367), + [sym_number] = ACTIONS(3367), + [sym_private_property_identifier] = ACTIONS(3367), + [sym_this] = ACTIONS(3367), + [sym_super] = ACTIONS(3367), + [sym_true] = ACTIONS(3367), + [sym_false] = ACTIONS(3367), + [sym_null] = ACTIONS(3367), + [sym_undefined] = ACTIONS(3367), + [anon_sym_AT] = ACTIONS(3367), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_get] = ACTIONS(3367), + [anon_sym_set] = ACTIONS(3367), + [anon_sym_declare] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3367), + [anon_sym_module] = ACTIONS(3367), + [anon_sym_any] = ACTIONS(3367), + [anon_sym_number] = ACTIONS(3367), + [anon_sym_boolean] = ACTIONS(3367), + [anon_sym_string] = ACTIONS(3367), + [anon_sym_symbol] = ACTIONS(3367), + [anon_sym_object] = ACTIONS(3367), + [anon_sym_abstract] = ACTIONS(3367), + [anon_sym_interface] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), + [sym_html_comment] = ACTIONS(5), + }, + [1489] = { + [sym_comment] = STATE(1489), + [sym_identifier] = ACTIONS(3367), + [anon_sym_export] = ACTIONS(3367), + [anon_sym_default] = ACTIONS(3367), + [anon_sym_type] = ACTIONS(3367), + [anon_sym_namespace] = ACTIONS(3367), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_typeof] = ACTIONS(3367), + [anon_sym_import] = ACTIONS(3367), + [anon_sym_with] = ACTIONS(3367), + [anon_sym_var] = ACTIONS(3367), + [anon_sym_let] = ACTIONS(3367), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), + [anon_sym_switch] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_await] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_do] = ACTIONS(3367), + [anon_sym_try] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_debugger] = ACTIONS(3367), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_throw] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3367), + [anon_sym_case] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [anon_sym_LTtemplate_GT] = ACTIONS(3367), + [anon_sym_DQUOTE] = ACTIONS(3367), + [anon_sym_SQUOTE] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_function] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_using] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(3367), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_TILDE] = ACTIONS(3367), + [anon_sym_void] = ACTIONS(3367), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_PLUS_PLUS] = ACTIONS(3367), + [anon_sym_DASH_DASH] = ACTIONS(3367), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3367), + [sym_number] = ACTIONS(3367), + [sym_private_property_identifier] = ACTIONS(3367), + [sym_this] = ACTIONS(3367), + [sym_super] = ACTIONS(3367), + [sym_true] = ACTIONS(3367), + [sym_false] = ACTIONS(3367), + [sym_null] = ACTIONS(3367), + [sym_undefined] = ACTIONS(3367), + [anon_sym_AT] = ACTIONS(3367), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_get] = ACTIONS(3367), + [anon_sym_set] = ACTIONS(3367), + [anon_sym_declare] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3367), + [anon_sym_module] = ACTIONS(3367), + [anon_sym_any] = ACTIONS(3367), + [anon_sym_number] = ACTIONS(3367), + [anon_sym_boolean] = ACTIONS(3367), + [anon_sym_string] = ACTIONS(3367), + [anon_sym_symbol] = ACTIONS(3367), + [anon_sym_object] = ACTIONS(3367), + [anon_sym_abstract] = ACTIONS(3367), + [anon_sym_interface] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), + [sym_html_comment] = ACTIONS(5), + }, + [1490] = { + [sym_comment] = STATE(1490), + [sym_identifier] = ACTIONS(3365), + [anon_sym_export] = ACTIONS(3365), + [anon_sym_default] = ACTIONS(3365), + [anon_sym_type] = ACTIONS(3365), + [anon_sym_namespace] = ACTIONS(3365), + [anon_sym_LBRACE] = ACTIONS(3365), + [anon_sym_RBRACE] = ACTIONS(3365), + [anon_sym_typeof] = ACTIONS(3365), + [anon_sym_import] = ACTIONS(3365), + [anon_sym_with] = ACTIONS(3365), + [anon_sym_var] = ACTIONS(3365), + [anon_sym_let] = ACTIONS(3365), + [anon_sym_const] = ACTIONS(3365), + [anon_sym_BANG] = ACTIONS(3365), + [anon_sym_if] = ACTIONS(3365), + [anon_sym_switch] = ACTIONS(3365), + [anon_sym_for] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_await] = ACTIONS(3365), + [anon_sym_while] = ACTIONS(3365), + [anon_sym_do] = ACTIONS(3365), + [anon_sym_try] = ACTIONS(3365), + [anon_sym_break] = ACTIONS(3365), + [anon_sym_continue] = ACTIONS(3365), + [anon_sym_debugger] = ACTIONS(3365), + [anon_sym_return] = ACTIONS(3365), + [anon_sym_throw] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3365), + [anon_sym_case] = ACTIONS(3365), + [anon_sym_yield] = ACTIONS(3365), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LTtemplate_GT] = ACTIONS(3365), + [anon_sym_DQUOTE] = ACTIONS(3365), + [anon_sym_SQUOTE] = ACTIONS(3365), + [anon_sym_class] = ACTIONS(3365), + [anon_sym_async] = ACTIONS(3365), + [anon_sym_function] = ACTIONS(3365), + [anon_sym_new] = ACTIONS(3365), + [anon_sym_using] = ACTIONS(3365), + [anon_sym_PLUS] = ACTIONS(3365), + [anon_sym_DASH] = ACTIONS(3365), + [anon_sym_SLASH] = ACTIONS(3365), + [anon_sym_LT] = ACTIONS(3365), + [anon_sym_TILDE] = ACTIONS(3365), + [anon_sym_void] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3365), + [anon_sym_PLUS_PLUS] = ACTIONS(3365), + [anon_sym_DASH_DASH] = ACTIONS(3365), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3365), + [sym_number] = ACTIONS(3365), + [sym_private_property_identifier] = ACTIONS(3365), + [sym_this] = ACTIONS(3365), + [sym_super] = ACTIONS(3365), + [sym_true] = ACTIONS(3365), + [sym_false] = ACTIONS(3365), + [sym_null] = ACTIONS(3365), + [sym_undefined] = ACTIONS(3365), + [anon_sym_AT] = ACTIONS(3365), + [anon_sym_static] = ACTIONS(3365), + [anon_sym_readonly] = ACTIONS(3365), + [anon_sym_get] = ACTIONS(3365), + [anon_sym_set] = ACTIONS(3365), + [anon_sym_declare] = ACTIONS(3365), + [anon_sym_public] = ACTIONS(3365), + [anon_sym_private] = ACTIONS(3365), + [anon_sym_protected] = ACTIONS(3365), + [anon_sym_override] = ACTIONS(3365), + [anon_sym_module] = ACTIONS(3365), + [anon_sym_any] = ACTIONS(3365), + [anon_sym_number] = ACTIONS(3365), + [anon_sym_boolean] = ACTIONS(3365), + [anon_sym_string] = ACTIONS(3365), + [anon_sym_symbol] = ACTIONS(3365), + [anon_sym_object] = ACTIONS(3365), + [anon_sym_abstract] = ACTIONS(3365), + [anon_sym_interface] = ACTIONS(3365), + [anon_sym_enum] = ACTIONS(3365), + [sym_html_comment] = ACTIONS(5), + }, + [1491] = { + [sym_comment] = STATE(1491), + [sym_identifier] = ACTIONS(3363), + [anon_sym_export] = ACTIONS(3363), + [anon_sym_default] = ACTIONS(3363), + [anon_sym_type] = ACTIONS(3363), + [anon_sym_namespace] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3363), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_typeof] = ACTIONS(3363), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_const] = ACTIONS(3363), + [anon_sym_BANG] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_await] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_debugger] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3363), + [anon_sym_case] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3363), + [anon_sym_LTtemplate_GT] = ACTIONS(3363), + [anon_sym_DQUOTE] = ACTIONS(3363), + [anon_sym_SQUOTE] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_async] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [anon_sym_void] = ACTIONS(3363), + [anon_sym_delete] = ACTIONS(3363), + [anon_sym_PLUS_PLUS] = ACTIONS(3363), + [anon_sym_DASH_DASH] = ACTIONS(3363), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3363), + [sym_number] = ACTIONS(3363), + [sym_private_property_identifier] = ACTIONS(3363), + [sym_this] = ACTIONS(3363), + [sym_super] = ACTIONS(3363), + [sym_true] = ACTIONS(3363), + [sym_false] = ACTIONS(3363), + [sym_null] = ACTIONS(3363), + [sym_undefined] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_get] = ACTIONS(3363), + [anon_sym_set] = ACTIONS(3363), + [anon_sym_declare] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_protected] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_module] = ACTIONS(3363), + [anon_sym_any] = ACTIONS(3363), + [anon_sym_number] = ACTIONS(3363), + [anon_sym_boolean] = ACTIONS(3363), + [anon_sym_string] = ACTIONS(3363), + [anon_sym_symbol] = ACTIONS(3363), + [anon_sym_object] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), + [sym_html_comment] = ACTIONS(5), + }, + [1492] = { + [sym_comment] = STATE(1492), + [sym_identifier] = ACTIONS(3357), + [anon_sym_export] = ACTIONS(3357), + [anon_sym_default] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3357), + [anon_sym_namespace] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3357), + [anon_sym_typeof] = ACTIONS(3357), + [anon_sym_import] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3357), + [anon_sym_var] = ACTIONS(3357), + [anon_sym_let] = ACTIONS(3357), + [anon_sym_const] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3357), + [anon_sym_if] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_await] = ACTIONS(3357), + [anon_sym_while] = ACTIONS(3357), + [anon_sym_do] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3357), + [anon_sym_break] = ACTIONS(3357), + [anon_sym_continue] = ACTIONS(3357), + [anon_sym_debugger] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3357), + [anon_sym_throw] = ACTIONS(3357), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_case] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_LTtemplate_GT] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_class] = ACTIONS(3357), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3357), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_void] = ACTIONS(3357), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3357), + [sym_number] = ACTIONS(3357), + [sym_private_property_identifier] = ACTIONS(3357), + [sym_this] = ACTIONS(3357), + [sym_super] = ACTIONS(3357), + [sym_true] = ACTIONS(3357), + [sym_false] = ACTIONS(3357), + [sym_null] = ACTIONS(3357), + [sym_undefined] = ACTIONS(3357), + [anon_sym_AT] = ACTIONS(3357), + [anon_sym_static] = ACTIONS(3357), + [anon_sym_readonly] = ACTIONS(3357), + [anon_sym_get] = ACTIONS(3357), + [anon_sym_set] = ACTIONS(3357), + [anon_sym_declare] = ACTIONS(3357), + [anon_sym_public] = ACTIONS(3357), + [anon_sym_private] = ACTIONS(3357), + [anon_sym_protected] = ACTIONS(3357), + [anon_sym_override] = ACTIONS(3357), + [anon_sym_module] = ACTIONS(3357), + [anon_sym_any] = ACTIONS(3357), + [anon_sym_number] = ACTIONS(3357), + [anon_sym_boolean] = ACTIONS(3357), + [anon_sym_string] = ACTIONS(3357), + [anon_sym_symbol] = ACTIONS(3357), + [anon_sym_object] = ACTIONS(3357), + [anon_sym_abstract] = ACTIONS(3357), + [anon_sym_interface] = ACTIONS(3357), + [anon_sym_enum] = ACTIONS(3357), + [sym_html_comment] = ACTIONS(5), + }, + [1493] = { + [sym_comment] = STATE(1493), + [ts_builtin_sym_end] = ACTIONS(3671), + [sym_identifier] = ACTIONS(3355), + [anon_sym_export] = ACTIONS(3355), + [anon_sym_type] = ACTIONS(3355), + [anon_sym_namespace] = ACTIONS(3355), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_RBRACE] = ACTIONS(3355), + [anon_sym_typeof] = ACTIONS(3355), + [anon_sym_import] = ACTIONS(3355), + [anon_sym_with] = ACTIONS(3355), + [anon_sym_var] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_const] = ACTIONS(3355), + [anon_sym_BANG] = ACTIONS(3355), + [anon_sym_else] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_switch] = ACTIONS(3355), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_await] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_break] = ACTIONS(3355), + [anon_sym_continue] = ACTIONS(3355), + [anon_sym_debugger] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_throw] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LTtemplate_GT] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_SQUOTE] = ACTIONS(3355), + [anon_sym_class] = ACTIONS(3355), + [anon_sym_async] = ACTIONS(3355), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_using] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_SLASH] = ACTIONS(3355), + [anon_sym_LT] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3355), + [anon_sym_void] = ACTIONS(3355), + [anon_sym_delete] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3355), + [sym_number] = ACTIONS(3355), + [sym_private_property_identifier] = ACTIONS(3355), + [sym_this] = ACTIONS(3355), + [sym_super] = ACTIONS(3355), + [sym_true] = ACTIONS(3355), + [sym_false] = ACTIONS(3355), + [sym_null] = ACTIONS(3355), + [sym_undefined] = ACTIONS(3355), + [anon_sym_AT] = ACTIONS(3355), + [anon_sym_static] = ACTIONS(3355), + [anon_sym_readonly] = ACTIONS(3355), + [anon_sym_get] = ACTIONS(3355), + [anon_sym_set] = ACTIONS(3355), + [anon_sym_declare] = ACTIONS(3355), + [anon_sym_public] = ACTIONS(3355), + [anon_sym_private] = ACTIONS(3355), + [anon_sym_protected] = ACTIONS(3355), + [anon_sym_override] = ACTIONS(3355), + [anon_sym_module] = ACTIONS(3355), + [anon_sym_any] = ACTIONS(3355), + [anon_sym_number] = ACTIONS(3355), + [anon_sym_boolean] = ACTIONS(3355), + [anon_sym_string] = ACTIONS(3355), + [anon_sym_symbol] = ACTIONS(3355), + [anon_sym_object] = ACTIONS(3355), + [anon_sym_abstract] = ACTIONS(3355), + [anon_sym_interface] = ACTIONS(3355), + [anon_sym_enum] = ACTIONS(3355), + [sym_html_comment] = ACTIONS(5), + }, + [1494] = { + [sym_comment] = STATE(1494), + [ts_builtin_sym_end] = ACTIONS(3673), [sym_identifier] = ACTIONS(3351), [anon_sym_export] = ACTIONS(3351), - [anon_sym_default] = ACTIONS(3351), [anon_sym_type] = ACTIONS(3351), [anon_sym_namespace] = ACTIONS(3351), [anon_sym_LBRACE] = ACTIONS(3351), @@ -184190,6 +184773,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3351), [anon_sym_const] = ACTIONS(3351), [anon_sym_BANG] = ACTIONS(3351), + [anon_sym_else] = ACTIONS(3351), [anon_sym_if] = ACTIONS(3351), [anon_sym_switch] = ACTIONS(3351), [anon_sym_for] = ACTIONS(3351), @@ -184204,7 +184788,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3351), [anon_sym_throw] = ACTIONS(3351), [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_case] = ACTIONS(3351), [anon_sym_yield] = ACTIONS(3351), [anon_sym_LBRACK] = ACTIONS(3351), [anon_sym_LTtemplate_GT] = ACTIONS(3351), @@ -184256,1077 +184839,911 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3351), [sym_html_comment] = ACTIONS(5), }, - [1484] = { - [sym_comment] = STATE(1484), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1495] = { + [sym_comment] = STATE(1495), + [ts_builtin_sym_end] = ACTIONS(3675), + [sym_identifier] = ACTIONS(3345), + [anon_sym_export] = ACTIONS(3345), + [anon_sym_type] = ACTIONS(3345), + [anon_sym_namespace] = ACTIONS(3345), + [anon_sym_LBRACE] = ACTIONS(3345), + [anon_sym_RBRACE] = ACTIONS(3345), + [anon_sym_typeof] = ACTIONS(3345), + [anon_sym_import] = ACTIONS(3345), + [anon_sym_with] = ACTIONS(3345), + [anon_sym_var] = ACTIONS(3345), + [anon_sym_let] = ACTIONS(3345), + [anon_sym_const] = ACTIONS(3345), + [anon_sym_BANG] = ACTIONS(3345), + [anon_sym_else] = ACTIONS(3345), + [anon_sym_if] = ACTIONS(3345), + [anon_sym_switch] = ACTIONS(3345), + [anon_sym_for] = ACTIONS(3345), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_await] = ACTIONS(3345), + [anon_sym_while] = ACTIONS(3345), + [anon_sym_do] = ACTIONS(3345), + [anon_sym_try] = ACTIONS(3345), + [anon_sym_break] = ACTIONS(3345), + [anon_sym_continue] = ACTIONS(3345), + [anon_sym_debugger] = ACTIONS(3345), + [anon_sym_return] = ACTIONS(3345), + [anon_sym_throw] = ACTIONS(3345), + [anon_sym_SEMI] = ACTIONS(3345), + [anon_sym_yield] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_LTtemplate_GT] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(3345), + [anon_sym_SQUOTE] = ACTIONS(3345), + [anon_sym_class] = ACTIONS(3345), + [anon_sym_async] = ACTIONS(3345), + [anon_sym_function] = ACTIONS(3345), + [anon_sym_new] = ACTIONS(3345), + [anon_sym_using] = ACTIONS(3345), + [anon_sym_PLUS] = ACTIONS(3345), + [anon_sym_DASH] = ACTIONS(3345), + [anon_sym_SLASH] = ACTIONS(3345), + [anon_sym_LT] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3345), + [anon_sym_void] = ACTIONS(3345), + [anon_sym_delete] = ACTIONS(3345), + [anon_sym_PLUS_PLUS] = ACTIONS(3345), + [anon_sym_DASH_DASH] = ACTIONS(3345), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3345), + [sym_number] = ACTIONS(3345), + [sym_private_property_identifier] = ACTIONS(3345), + [sym_this] = ACTIONS(3345), + [sym_super] = ACTIONS(3345), + [sym_true] = ACTIONS(3345), + [sym_false] = ACTIONS(3345), + [sym_null] = ACTIONS(3345), + [sym_undefined] = ACTIONS(3345), + [anon_sym_AT] = ACTIONS(3345), + [anon_sym_static] = ACTIONS(3345), + [anon_sym_readonly] = ACTIONS(3345), + [anon_sym_get] = ACTIONS(3345), + [anon_sym_set] = ACTIONS(3345), + [anon_sym_declare] = ACTIONS(3345), + [anon_sym_public] = ACTIONS(3345), + [anon_sym_private] = ACTIONS(3345), + [anon_sym_protected] = ACTIONS(3345), + [anon_sym_override] = ACTIONS(3345), + [anon_sym_module] = ACTIONS(3345), + [anon_sym_any] = ACTIONS(3345), + [anon_sym_number] = ACTIONS(3345), + [anon_sym_boolean] = ACTIONS(3345), + [anon_sym_string] = ACTIONS(3345), + [anon_sym_symbol] = ACTIONS(3345), + [anon_sym_object] = ACTIONS(3345), + [anon_sym_abstract] = ACTIONS(3345), + [anon_sym_interface] = ACTIONS(3345), + [anon_sym_enum] = ACTIONS(3345), [sym_html_comment] = ACTIONS(5), }, - [1485] = { - [sym_comment] = STATE(1485), - [sym_identifier] = ACTIONS(3413), - [anon_sym_export] = ACTIONS(3413), - [anon_sym_default] = ACTIONS(3413), - [anon_sym_type] = ACTIONS(3413), - [anon_sym_namespace] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_RBRACE] = ACTIONS(3413), - [anon_sym_typeof] = ACTIONS(3413), - [anon_sym_import] = ACTIONS(3413), - [anon_sym_with] = ACTIONS(3413), - [anon_sym_var] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_const] = ACTIONS(3413), - [anon_sym_BANG] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_await] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_break] = ACTIONS(3413), - [anon_sym_continue] = ACTIONS(3413), - [anon_sym_debugger] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_throw] = ACTIONS(3413), - [anon_sym_SEMI] = ACTIONS(3413), - [anon_sym_case] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LTtemplate_GT] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_SQUOTE] = ACTIONS(3413), - [anon_sym_class] = ACTIONS(3413), - [anon_sym_async] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_using] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_SLASH] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_void] = ACTIONS(3413), - [anon_sym_delete] = ACTIONS(3413), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3413), + [1496] = { + [sym_comment] = STATE(1496), + [ts_builtin_sym_end] = ACTIONS(3677), + [sym_identifier] = ACTIONS(3343), + [anon_sym_export] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3343), + [anon_sym_LBRACE] = ACTIONS(3343), + [anon_sym_RBRACE] = ACTIONS(3343), + [anon_sym_typeof] = ACTIONS(3343), + [anon_sym_import] = ACTIONS(3343), + [anon_sym_with] = ACTIONS(3343), + [anon_sym_var] = ACTIONS(3343), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_const] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3343), + [anon_sym_else] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_switch] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_LPAREN] = ACTIONS(3343), + [anon_sym_await] = ACTIONS(3343), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_do] = ACTIONS(3343), + [anon_sym_try] = ACTIONS(3343), + [anon_sym_break] = ACTIONS(3343), + [anon_sym_continue] = ACTIONS(3343), + [anon_sym_debugger] = ACTIONS(3343), + [anon_sym_return] = ACTIONS(3343), + [anon_sym_throw] = ACTIONS(3343), + [anon_sym_SEMI] = ACTIONS(3343), + [anon_sym_yield] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3343), + [anon_sym_LTtemplate_GT] = ACTIONS(3343), + [anon_sym_DQUOTE] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(3343), + [anon_sym_class] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_function] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3343), + [anon_sym_using] = ACTIONS(3343), + [anon_sym_PLUS] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3343), + [anon_sym_SLASH] = ACTIONS(3343), + [anon_sym_LT] = ACTIONS(3343), + [anon_sym_TILDE] = ACTIONS(3343), + [anon_sym_void] = ACTIONS(3343), + [anon_sym_delete] = ACTIONS(3343), + [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3343), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3413), - [sym_number] = ACTIONS(3413), - [sym_private_property_identifier] = ACTIONS(3413), - [sym_this] = ACTIONS(3413), - [sym_super] = ACTIONS(3413), - [sym_true] = ACTIONS(3413), - [sym_false] = ACTIONS(3413), - [sym_null] = ACTIONS(3413), - [sym_undefined] = ACTIONS(3413), - [anon_sym_AT] = ACTIONS(3413), - [anon_sym_static] = ACTIONS(3413), - [anon_sym_readonly] = ACTIONS(3413), - [anon_sym_get] = ACTIONS(3413), - [anon_sym_set] = ACTIONS(3413), - [anon_sym_declare] = ACTIONS(3413), - [anon_sym_public] = ACTIONS(3413), - [anon_sym_private] = ACTIONS(3413), - [anon_sym_protected] = ACTIONS(3413), - [anon_sym_override] = ACTIONS(3413), - [anon_sym_module] = ACTIONS(3413), - [anon_sym_any] = ACTIONS(3413), - [anon_sym_number] = ACTIONS(3413), - [anon_sym_boolean] = ACTIONS(3413), - [anon_sym_string] = ACTIONS(3413), - [anon_sym_symbol] = ACTIONS(3413), - [anon_sym_object] = ACTIONS(3413), - [anon_sym_abstract] = ACTIONS(3413), - [anon_sym_interface] = ACTIONS(3413), - [anon_sym_enum] = ACTIONS(3413), - [sym_html_comment] = ACTIONS(5), - }, - [1486] = { - [sym_comment] = STATE(1486), - [sym_identifier] = ACTIONS(3411), - [anon_sym_export] = ACTIONS(3411), - [anon_sym_default] = ACTIONS(3411), - [anon_sym_type] = ACTIONS(3411), - [anon_sym_namespace] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3411), - [anon_sym_RBRACE] = ACTIONS(3411), - [anon_sym_typeof] = ACTIONS(3411), - [anon_sym_import] = ACTIONS(3411), - [anon_sym_with] = ACTIONS(3411), - [anon_sym_var] = ACTIONS(3411), - [anon_sym_let] = ACTIONS(3411), - [anon_sym_const] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_await] = ACTIONS(3411), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_try] = ACTIONS(3411), - [anon_sym_break] = ACTIONS(3411), - [anon_sym_continue] = ACTIONS(3411), - [anon_sym_debugger] = ACTIONS(3411), - [anon_sym_return] = ACTIONS(3411), - [anon_sym_throw] = ACTIONS(3411), - [anon_sym_SEMI] = ACTIONS(3411), - [anon_sym_case] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3411), - [anon_sym_LTtemplate_GT] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3411), - [anon_sym_class] = ACTIONS(3411), - [anon_sym_async] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3411), - [anon_sym_using] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_SLASH] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3411), - [anon_sym_void] = ACTIONS(3411), - [anon_sym_delete] = ACTIONS(3411), - [anon_sym_PLUS_PLUS] = ACTIONS(3411), - [anon_sym_DASH_DASH] = ACTIONS(3411), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3411), - [sym_number] = ACTIONS(3411), - [sym_private_property_identifier] = ACTIONS(3411), - [sym_this] = ACTIONS(3411), - [sym_super] = ACTIONS(3411), - [sym_true] = ACTIONS(3411), - [sym_false] = ACTIONS(3411), - [sym_null] = ACTIONS(3411), - [sym_undefined] = ACTIONS(3411), - [anon_sym_AT] = ACTIONS(3411), - [anon_sym_static] = ACTIONS(3411), - [anon_sym_readonly] = ACTIONS(3411), - [anon_sym_get] = ACTIONS(3411), - [anon_sym_set] = ACTIONS(3411), - [anon_sym_declare] = ACTIONS(3411), - [anon_sym_public] = ACTIONS(3411), - [anon_sym_private] = ACTIONS(3411), - [anon_sym_protected] = ACTIONS(3411), - [anon_sym_override] = ACTIONS(3411), - [anon_sym_module] = ACTIONS(3411), - [anon_sym_any] = ACTIONS(3411), - [anon_sym_number] = ACTIONS(3411), - [anon_sym_boolean] = ACTIONS(3411), - [anon_sym_string] = ACTIONS(3411), - [anon_sym_symbol] = ACTIONS(3411), - [anon_sym_object] = ACTIONS(3411), - [anon_sym_abstract] = ACTIONS(3411), - [anon_sym_interface] = ACTIONS(3411), - [anon_sym_enum] = ACTIONS(3411), + [anon_sym_BQUOTE] = ACTIONS(3343), + [sym_number] = ACTIONS(3343), + [sym_private_property_identifier] = ACTIONS(3343), + [sym_this] = ACTIONS(3343), + [sym_super] = ACTIONS(3343), + [sym_true] = ACTIONS(3343), + [sym_false] = ACTIONS(3343), + [sym_null] = ACTIONS(3343), + [sym_undefined] = ACTIONS(3343), + [anon_sym_AT] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3343), + [anon_sym_get] = ACTIONS(3343), + [anon_sym_set] = ACTIONS(3343), + [anon_sym_declare] = ACTIONS(3343), + [anon_sym_public] = ACTIONS(3343), + [anon_sym_private] = ACTIONS(3343), + [anon_sym_protected] = ACTIONS(3343), + [anon_sym_override] = ACTIONS(3343), + [anon_sym_module] = ACTIONS(3343), + [anon_sym_any] = ACTIONS(3343), + [anon_sym_number] = ACTIONS(3343), + [anon_sym_boolean] = ACTIONS(3343), + [anon_sym_string] = ACTIONS(3343), + [anon_sym_symbol] = ACTIONS(3343), + [anon_sym_object] = ACTIONS(3343), + [anon_sym_abstract] = ACTIONS(3343), + [anon_sym_interface] = ACTIONS(3343), + [anon_sym_enum] = ACTIONS(3343), [sym_html_comment] = ACTIONS(5), }, - [1487] = { - [sym_comment] = STATE(1487), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1497] = { + [sym_comment] = STATE(1497), + [sym_identifier] = ACTIONS(3357), + [anon_sym_export] = ACTIONS(3357), + [anon_sym_default] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3357), + [anon_sym_namespace] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3357), + [anon_sym_typeof] = ACTIONS(3357), + [anon_sym_import] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3357), + [anon_sym_var] = ACTIONS(3357), + [anon_sym_let] = ACTIONS(3357), + [anon_sym_const] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3357), + [anon_sym_if] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_await] = ACTIONS(3357), + [anon_sym_while] = ACTIONS(3357), + [anon_sym_do] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3357), + [anon_sym_break] = ACTIONS(3357), + [anon_sym_continue] = ACTIONS(3357), + [anon_sym_debugger] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3357), + [anon_sym_throw] = ACTIONS(3357), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_case] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_LTtemplate_GT] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_class] = ACTIONS(3357), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3357), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_void] = ACTIONS(3357), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3357), + [sym_number] = ACTIONS(3357), + [sym_private_property_identifier] = ACTIONS(3357), + [sym_this] = ACTIONS(3357), + [sym_super] = ACTIONS(3357), + [sym_true] = ACTIONS(3357), + [sym_false] = ACTIONS(3357), + [sym_null] = ACTIONS(3357), + [sym_undefined] = ACTIONS(3357), + [anon_sym_AT] = ACTIONS(3357), + [anon_sym_static] = ACTIONS(3357), + [anon_sym_readonly] = ACTIONS(3357), + [anon_sym_get] = ACTIONS(3357), + [anon_sym_set] = ACTIONS(3357), + [anon_sym_declare] = ACTIONS(3357), + [anon_sym_public] = ACTIONS(3357), + [anon_sym_private] = ACTIONS(3357), + [anon_sym_protected] = ACTIONS(3357), + [anon_sym_override] = ACTIONS(3357), + [anon_sym_module] = ACTIONS(3357), + [anon_sym_any] = ACTIONS(3357), + [anon_sym_number] = ACTIONS(3357), + [anon_sym_boolean] = ACTIONS(3357), + [anon_sym_string] = ACTIONS(3357), + [anon_sym_symbol] = ACTIONS(3357), + [anon_sym_object] = ACTIONS(3357), + [anon_sym_abstract] = ACTIONS(3357), + [anon_sym_interface] = ACTIONS(3357), + [anon_sym_enum] = ACTIONS(3357), [sym_html_comment] = ACTIONS(5), }, - [1488] = { - [sym_comment] = STATE(1488), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1498] = { + [sym_comment] = STATE(1498), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), + [sym__automatic_semicolon] = ACTIONS(3679), [sym_html_comment] = ACTIONS(5), }, - [1489] = { - [sym_comment] = STATE(1489), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [1499] = { + [sym_comment] = STATE(1499), + [ts_builtin_sym_end] = ACTIONS(2380), + [sym_identifier] = ACTIONS(2272), + [anon_sym_export] = ACTIONS(2272), + [anon_sym_type] = ACTIONS(2272), + [anon_sym_namespace] = ACTIONS(2272), + [anon_sym_LBRACE] = ACTIONS(2272), + [anon_sym_RBRACE] = ACTIONS(2272), + [anon_sym_typeof] = ACTIONS(2272), + [anon_sym_import] = ACTIONS(2272), + [anon_sym_with] = ACTIONS(2272), + [anon_sym_var] = ACTIONS(2272), + [anon_sym_let] = ACTIONS(2272), + [anon_sym_const] = ACTIONS(2272), + [anon_sym_BANG] = ACTIONS(2272), + [anon_sym_if] = ACTIONS(2272), + [anon_sym_switch] = ACTIONS(2272), + [anon_sym_for] = ACTIONS(2272), + [anon_sym_LPAREN] = ACTIONS(2272), + [anon_sym_await] = ACTIONS(2272), + [anon_sym_while] = ACTIONS(2272), + [anon_sym_do] = ACTIONS(2272), + [anon_sym_try] = ACTIONS(2272), + [anon_sym_break] = ACTIONS(2272), + [anon_sym_continue] = ACTIONS(2272), + [anon_sym_debugger] = ACTIONS(2272), + [anon_sym_return] = ACTIONS(2272), + [anon_sym_throw] = ACTIONS(2272), + [anon_sym_SEMI] = ACTIONS(2272), + [anon_sym_yield] = ACTIONS(2272), + [anon_sym_LBRACK] = ACTIONS(2272), + [anon_sym_LTtemplate_GT] = ACTIONS(2272), + [anon_sym_DQUOTE] = ACTIONS(2272), + [anon_sym_SQUOTE] = ACTIONS(2272), + [anon_sym_class] = ACTIONS(2272), + [anon_sym_async] = ACTIONS(2272), + [anon_sym_function] = ACTIONS(2272), + [anon_sym_new] = ACTIONS(2272), + [anon_sym_using] = ACTIONS(2272), + [anon_sym_PLUS] = ACTIONS(2272), + [anon_sym_DASH] = ACTIONS(2272), + [anon_sym_SLASH] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(2272), + [anon_sym_TILDE] = ACTIONS(2272), + [anon_sym_void] = ACTIONS(2272), + [anon_sym_delete] = ACTIONS(2272), + [anon_sym_PLUS_PLUS] = ACTIONS(2272), + [anon_sym_DASH_DASH] = ACTIONS(2272), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2272), + [sym_number] = ACTIONS(2272), + [sym_private_property_identifier] = ACTIONS(2272), + [sym_this] = ACTIONS(2272), + [sym_super] = ACTIONS(2272), + [sym_true] = ACTIONS(2272), + [sym_false] = ACTIONS(2272), + [sym_null] = ACTIONS(2272), + [sym_undefined] = ACTIONS(2272), + [anon_sym_AT] = ACTIONS(2272), + [anon_sym_static] = ACTIONS(2272), + [anon_sym_readonly] = ACTIONS(2272), + [anon_sym_get] = ACTIONS(2272), + [anon_sym_set] = ACTIONS(2272), + [anon_sym_declare] = ACTIONS(2272), + [anon_sym_public] = ACTIONS(2272), + [anon_sym_private] = ACTIONS(2272), + [anon_sym_protected] = ACTIONS(2272), + [anon_sym_override] = ACTIONS(2272), + [anon_sym_module] = ACTIONS(2272), + [anon_sym_any] = ACTIONS(2272), + [anon_sym_number] = ACTIONS(2272), + [anon_sym_boolean] = ACTIONS(2272), + [anon_sym_string] = ACTIONS(2272), + [anon_sym_symbol] = ACTIONS(2272), + [anon_sym_object] = ACTIONS(2272), + [anon_sym_abstract] = ACTIONS(2272), + [anon_sym_interface] = ACTIONS(2272), + [anon_sym_enum] = ACTIONS(2272), + [sym__automatic_semicolon] = ACTIONS(2494), [sym_html_comment] = ACTIONS(5), }, - [1490] = { - [sym_comment] = STATE(1490), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [1500] = { + [sym_comment] = STATE(1500), + [ts_builtin_sym_end] = ACTIONS(2376), + [sym_identifier] = ACTIONS(2264), + [anon_sym_export] = ACTIONS(2264), + [anon_sym_type] = ACTIONS(2264), + [anon_sym_namespace] = ACTIONS(2264), + [anon_sym_LBRACE] = ACTIONS(2264), + [anon_sym_RBRACE] = ACTIONS(2264), + [anon_sym_typeof] = ACTIONS(2264), + [anon_sym_import] = ACTIONS(2264), + [anon_sym_with] = ACTIONS(2264), + [anon_sym_var] = ACTIONS(2264), + [anon_sym_let] = ACTIONS(2264), + [anon_sym_const] = ACTIONS(2264), + [anon_sym_BANG] = ACTIONS(2264), + [anon_sym_if] = ACTIONS(2264), + [anon_sym_switch] = ACTIONS(2264), + [anon_sym_for] = ACTIONS(2264), + [anon_sym_LPAREN] = ACTIONS(2264), + [anon_sym_await] = ACTIONS(2264), + [anon_sym_while] = ACTIONS(2264), + [anon_sym_do] = ACTIONS(2264), + [anon_sym_try] = ACTIONS(2264), + [anon_sym_break] = ACTIONS(2264), + [anon_sym_continue] = ACTIONS(2264), + [anon_sym_debugger] = ACTIONS(2264), + [anon_sym_return] = ACTIONS(2264), + [anon_sym_throw] = ACTIONS(2264), + [anon_sym_SEMI] = ACTIONS(2264), + [anon_sym_yield] = ACTIONS(2264), + [anon_sym_LBRACK] = ACTIONS(2264), + [anon_sym_LTtemplate_GT] = ACTIONS(2264), + [anon_sym_DQUOTE] = ACTIONS(2264), + [anon_sym_SQUOTE] = ACTIONS(2264), + [anon_sym_class] = ACTIONS(2264), + [anon_sym_async] = ACTIONS(2264), + [anon_sym_function] = ACTIONS(2264), + [anon_sym_new] = ACTIONS(2264), + [anon_sym_using] = ACTIONS(2264), + [anon_sym_PLUS] = ACTIONS(2264), + [anon_sym_DASH] = ACTIONS(2264), + [anon_sym_SLASH] = ACTIONS(2264), + [anon_sym_LT] = ACTIONS(2264), + [anon_sym_TILDE] = ACTIONS(2264), + [anon_sym_void] = ACTIONS(2264), + [anon_sym_delete] = ACTIONS(2264), + [anon_sym_PLUS_PLUS] = ACTIONS(2264), + [anon_sym_DASH_DASH] = ACTIONS(2264), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2264), + [sym_number] = ACTIONS(2264), + [sym_private_property_identifier] = ACTIONS(2264), + [sym_this] = ACTIONS(2264), + [sym_super] = ACTIONS(2264), + [sym_true] = ACTIONS(2264), + [sym_false] = ACTIONS(2264), + [sym_null] = ACTIONS(2264), + [sym_undefined] = ACTIONS(2264), + [anon_sym_AT] = ACTIONS(2264), + [anon_sym_static] = ACTIONS(2264), + [anon_sym_readonly] = ACTIONS(2264), + [anon_sym_get] = ACTIONS(2264), + [anon_sym_set] = ACTIONS(2264), + [anon_sym_declare] = ACTIONS(2264), + [anon_sym_public] = ACTIONS(2264), + [anon_sym_private] = ACTIONS(2264), + [anon_sym_protected] = ACTIONS(2264), + [anon_sym_override] = ACTIONS(2264), + [anon_sym_module] = ACTIONS(2264), + [anon_sym_any] = ACTIONS(2264), + [anon_sym_number] = ACTIONS(2264), + [anon_sym_boolean] = ACTIONS(2264), + [anon_sym_string] = ACTIONS(2264), + [anon_sym_symbol] = ACTIONS(2264), + [anon_sym_object] = ACTIONS(2264), + [anon_sym_abstract] = ACTIONS(2264), + [anon_sym_interface] = ACTIONS(2264), + [anon_sym_enum] = ACTIONS(2264), + [sym__automatic_semicolon] = ACTIONS(2492), [sym_html_comment] = ACTIONS(5), }, - [1491] = { - [sym_comment] = STATE(1491), - [sym_identifier] = ACTIONS(3411), - [anon_sym_export] = ACTIONS(3411), - [anon_sym_default] = ACTIONS(3411), - [anon_sym_type] = ACTIONS(3411), - [anon_sym_namespace] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3411), - [anon_sym_RBRACE] = ACTIONS(3411), - [anon_sym_typeof] = ACTIONS(3411), - [anon_sym_import] = ACTIONS(3411), - [anon_sym_with] = ACTIONS(3411), - [anon_sym_var] = ACTIONS(3411), - [anon_sym_let] = ACTIONS(3411), - [anon_sym_const] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_await] = ACTIONS(3411), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_try] = ACTIONS(3411), - [anon_sym_break] = ACTIONS(3411), - [anon_sym_continue] = ACTIONS(3411), - [anon_sym_debugger] = ACTIONS(3411), - [anon_sym_return] = ACTIONS(3411), - [anon_sym_throw] = ACTIONS(3411), - [anon_sym_SEMI] = ACTIONS(3411), - [anon_sym_case] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3411), - [anon_sym_LTtemplate_GT] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3411), - [anon_sym_class] = ACTIONS(3411), - [anon_sym_async] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3411), - [anon_sym_using] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_SLASH] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3411), - [anon_sym_void] = ACTIONS(3411), - [anon_sym_delete] = ACTIONS(3411), - [anon_sym_PLUS_PLUS] = ACTIONS(3411), - [anon_sym_DASH_DASH] = ACTIONS(3411), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3411), - [sym_number] = ACTIONS(3411), - [sym_private_property_identifier] = ACTIONS(3411), - [sym_this] = ACTIONS(3411), - [sym_super] = ACTIONS(3411), - [sym_true] = ACTIONS(3411), - [sym_false] = ACTIONS(3411), - [sym_null] = ACTIONS(3411), - [sym_undefined] = ACTIONS(3411), - [anon_sym_AT] = ACTIONS(3411), - [anon_sym_static] = ACTIONS(3411), - [anon_sym_readonly] = ACTIONS(3411), - [anon_sym_get] = ACTIONS(3411), - [anon_sym_set] = ACTIONS(3411), - [anon_sym_declare] = ACTIONS(3411), - [anon_sym_public] = ACTIONS(3411), - [anon_sym_private] = ACTIONS(3411), - [anon_sym_protected] = ACTIONS(3411), - [anon_sym_override] = ACTIONS(3411), - [anon_sym_module] = ACTIONS(3411), - [anon_sym_any] = ACTIONS(3411), - [anon_sym_number] = ACTIONS(3411), - [anon_sym_boolean] = ACTIONS(3411), - [anon_sym_string] = ACTIONS(3411), - [anon_sym_symbol] = ACTIONS(3411), - [anon_sym_object] = ACTIONS(3411), - [anon_sym_abstract] = ACTIONS(3411), - [anon_sym_interface] = ACTIONS(3411), - [anon_sym_enum] = ACTIONS(3411), + [1501] = { + [sym_comment] = STATE(1501), + [ts_builtin_sym_end] = ACTIONS(2370), + [sym_identifier] = ACTIONS(2242), + [anon_sym_export] = ACTIONS(2242), + [anon_sym_type] = ACTIONS(2242), + [anon_sym_namespace] = ACTIONS(2242), + [anon_sym_LBRACE] = ACTIONS(2242), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_typeof] = ACTIONS(2242), + [anon_sym_import] = ACTIONS(2242), + [anon_sym_with] = ACTIONS(2242), + [anon_sym_var] = ACTIONS(2242), + [anon_sym_let] = ACTIONS(2242), + [anon_sym_const] = ACTIONS(2242), + [anon_sym_BANG] = ACTIONS(2242), + [anon_sym_if] = ACTIONS(2242), + [anon_sym_switch] = ACTIONS(2242), + [anon_sym_for] = ACTIONS(2242), + [anon_sym_LPAREN] = ACTIONS(2242), + [anon_sym_await] = ACTIONS(2242), + [anon_sym_while] = ACTIONS(2242), + [anon_sym_do] = ACTIONS(2242), + [anon_sym_try] = ACTIONS(2242), + [anon_sym_break] = ACTIONS(2242), + [anon_sym_continue] = ACTIONS(2242), + [anon_sym_debugger] = ACTIONS(2242), + [anon_sym_return] = ACTIONS(2242), + [anon_sym_throw] = ACTIONS(2242), + [anon_sym_SEMI] = ACTIONS(2242), + [anon_sym_yield] = ACTIONS(2242), + [anon_sym_LBRACK] = ACTIONS(2242), + [anon_sym_LTtemplate_GT] = ACTIONS(2242), + [anon_sym_DQUOTE] = ACTIONS(2242), + [anon_sym_SQUOTE] = ACTIONS(2242), + [anon_sym_class] = ACTIONS(2242), + [anon_sym_async] = ACTIONS(2242), + [anon_sym_function] = ACTIONS(2242), + [anon_sym_new] = ACTIONS(2242), + [anon_sym_using] = ACTIONS(2242), + [anon_sym_PLUS] = ACTIONS(2242), + [anon_sym_DASH] = ACTIONS(2242), + [anon_sym_SLASH] = ACTIONS(2242), + [anon_sym_LT] = ACTIONS(2242), + [anon_sym_TILDE] = ACTIONS(2242), + [anon_sym_void] = ACTIONS(2242), + [anon_sym_delete] = ACTIONS(2242), + [anon_sym_PLUS_PLUS] = ACTIONS(2242), + [anon_sym_DASH_DASH] = ACTIONS(2242), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2242), + [sym_number] = ACTIONS(2242), + [sym_private_property_identifier] = ACTIONS(2242), + [sym_this] = ACTIONS(2242), + [sym_super] = ACTIONS(2242), + [sym_true] = ACTIONS(2242), + [sym_false] = ACTIONS(2242), + [sym_null] = ACTIONS(2242), + [sym_undefined] = ACTIONS(2242), + [anon_sym_AT] = ACTIONS(2242), + [anon_sym_static] = ACTIONS(2242), + [anon_sym_readonly] = ACTIONS(2242), + [anon_sym_get] = ACTIONS(2242), + [anon_sym_set] = ACTIONS(2242), + [anon_sym_declare] = ACTIONS(2242), + [anon_sym_public] = ACTIONS(2242), + [anon_sym_private] = ACTIONS(2242), + [anon_sym_protected] = ACTIONS(2242), + [anon_sym_override] = ACTIONS(2242), + [anon_sym_module] = ACTIONS(2242), + [anon_sym_any] = ACTIONS(2242), + [anon_sym_number] = ACTIONS(2242), + [anon_sym_boolean] = ACTIONS(2242), + [anon_sym_string] = ACTIONS(2242), + [anon_sym_symbol] = ACTIONS(2242), + [anon_sym_object] = ACTIONS(2242), + [anon_sym_abstract] = ACTIONS(2242), + [anon_sym_interface] = ACTIONS(2242), + [anon_sym_enum] = ACTIONS(2242), + [sym__automatic_semicolon] = ACTIONS(2464), [sym_html_comment] = ACTIONS(5), }, - [1492] = { - [sym_comment] = STATE(1492), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_default] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_case] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1502] = { + [sym_comment] = STATE(1502), + [ts_builtin_sym_end] = ACTIONS(2366), + [sym_identifier] = ACTIONS(2152), + [anon_sym_export] = ACTIONS(2152), + [anon_sym_type] = ACTIONS(2152), + [anon_sym_namespace] = ACTIONS(2152), + [anon_sym_LBRACE] = ACTIONS(2152), + [anon_sym_RBRACE] = ACTIONS(2152), + [anon_sym_typeof] = ACTIONS(2152), + [anon_sym_import] = ACTIONS(2152), + [anon_sym_with] = ACTIONS(2152), + [anon_sym_var] = ACTIONS(2152), + [anon_sym_let] = ACTIONS(2152), + [anon_sym_const] = ACTIONS(2152), + [anon_sym_BANG] = ACTIONS(2152), + [anon_sym_if] = ACTIONS(2152), + [anon_sym_switch] = ACTIONS(2152), + [anon_sym_for] = ACTIONS(2152), + [anon_sym_LPAREN] = ACTIONS(2152), + [anon_sym_await] = ACTIONS(2152), + [anon_sym_while] = ACTIONS(2152), + [anon_sym_do] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2152), + [anon_sym_break] = ACTIONS(2152), + [anon_sym_continue] = ACTIONS(2152), + [anon_sym_debugger] = ACTIONS(2152), + [anon_sym_return] = ACTIONS(2152), + [anon_sym_throw] = ACTIONS(2152), + [anon_sym_SEMI] = ACTIONS(2152), + [anon_sym_yield] = ACTIONS(2152), + [anon_sym_LBRACK] = ACTIONS(2152), + [anon_sym_LTtemplate_GT] = ACTIONS(2152), + [anon_sym_DQUOTE] = ACTIONS(2152), + [anon_sym_SQUOTE] = ACTIONS(2152), + [anon_sym_class] = ACTIONS(2152), + [anon_sym_async] = ACTIONS(2152), + [anon_sym_function] = ACTIONS(2152), + [anon_sym_new] = ACTIONS(2152), + [anon_sym_using] = ACTIONS(2152), + [anon_sym_PLUS] = ACTIONS(2152), + [anon_sym_DASH] = ACTIONS(2152), + [anon_sym_SLASH] = ACTIONS(2152), + [anon_sym_LT] = ACTIONS(2152), + [anon_sym_TILDE] = ACTIONS(2152), + [anon_sym_void] = ACTIONS(2152), + [anon_sym_delete] = ACTIONS(2152), + [anon_sym_PLUS_PLUS] = ACTIONS(2152), + [anon_sym_DASH_DASH] = ACTIONS(2152), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(2152), + [sym_number] = ACTIONS(2152), + [sym_private_property_identifier] = ACTIONS(2152), + [sym_this] = ACTIONS(2152), + [sym_super] = ACTIONS(2152), + [sym_true] = ACTIONS(2152), + [sym_false] = ACTIONS(2152), + [sym_null] = ACTIONS(2152), + [sym_undefined] = ACTIONS(2152), + [anon_sym_AT] = ACTIONS(2152), + [anon_sym_static] = ACTIONS(2152), + [anon_sym_readonly] = ACTIONS(2152), + [anon_sym_get] = ACTIONS(2152), + [anon_sym_set] = ACTIONS(2152), + [anon_sym_declare] = ACTIONS(2152), + [anon_sym_public] = ACTIONS(2152), + [anon_sym_private] = ACTIONS(2152), + [anon_sym_protected] = ACTIONS(2152), + [anon_sym_override] = ACTIONS(2152), + [anon_sym_module] = ACTIONS(2152), + [anon_sym_any] = ACTIONS(2152), + [anon_sym_number] = ACTIONS(2152), + [anon_sym_boolean] = ACTIONS(2152), + [anon_sym_string] = ACTIONS(2152), + [anon_sym_symbol] = ACTIONS(2152), + [anon_sym_object] = ACTIONS(2152), + [anon_sym_abstract] = ACTIONS(2152), + [anon_sym_interface] = ACTIONS(2152), + [anon_sym_enum] = ACTIONS(2152), + [sym__automatic_semicolon] = ACTIONS(2482), [sym_html_comment] = ACTIONS(5), }, - [1493] = { - [sym_comment] = STATE(1493), - [sym_identifier] = ACTIONS(3407), - [anon_sym_export] = ACTIONS(3407), - [anon_sym_default] = ACTIONS(3407), - [anon_sym_type] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_RBRACE] = ACTIONS(3407), - [anon_sym_typeof] = ACTIONS(3407), - [anon_sym_import] = ACTIONS(3407), - [anon_sym_with] = ACTIONS(3407), - [anon_sym_var] = ACTIONS(3407), - [anon_sym_let] = ACTIONS(3407), - [anon_sym_const] = ACTIONS(3407), - [anon_sym_BANG] = ACTIONS(3407), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_switch] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_await] = ACTIONS(3407), - [anon_sym_while] = ACTIONS(3407), - [anon_sym_do] = ACTIONS(3407), - [anon_sym_try] = ACTIONS(3407), - [anon_sym_break] = ACTIONS(3407), - [anon_sym_continue] = ACTIONS(3407), - [anon_sym_debugger] = ACTIONS(3407), - [anon_sym_return] = ACTIONS(3407), - [anon_sym_throw] = ACTIONS(3407), - [anon_sym_SEMI] = ACTIONS(3407), - [anon_sym_case] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3407), - [anon_sym_LTtemplate_GT] = ACTIONS(3407), - [anon_sym_DQUOTE] = ACTIONS(3407), - [anon_sym_SQUOTE] = ACTIONS(3407), - [anon_sym_class] = ACTIONS(3407), - [anon_sym_async] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3407), - [anon_sym_using] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_SLASH] = ACTIONS(3407), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3407), - [anon_sym_void] = ACTIONS(3407), - [anon_sym_delete] = ACTIONS(3407), - [anon_sym_PLUS_PLUS] = ACTIONS(3407), - [anon_sym_DASH_DASH] = ACTIONS(3407), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3407), - [sym_number] = ACTIONS(3407), - [sym_private_property_identifier] = ACTIONS(3407), - [sym_this] = ACTIONS(3407), - [sym_super] = ACTIONS(3407), - [sym_true] = ACTIONS(3407), - [sym_false] = ACTIONS(3407), - [sym_null] = ACTIONS(3407), - [sym_undefined] = ACTIONS(3407), - [anon_sym_AT] = ACTIONS(3407), - [anon_sym_static] = ACTIONS(3407), - [anon_sym_readonly] = ACTIONS(3407), - [anon_sym_get] = ACTIONS(3407), - [anon_sym_set] = ACTIONS(3407), - [anon_sym_declare] = ACTIONS(3407), - [anon_sym_public] = ACTIONS(3407), - [anon_sym_private] = ACTIONS(3407), - [anon_sym_protected] = ACTIONS(3407), - [anon_sym_override] = ACTIONS(3407), - [anon_sym_module] = ACTIONS(3407), - [anon_sym_any] = ACTIONS(3407), - [anon_sym_number] = ACTIONS(3407), - [anon_sym_boolean] = ACTIONS(3407), - [anon_sym_string] = ACTIONS(3407), - [anon_sym_symbol] = ACTIONS(3407), - [anon_sym_object] = ACTIONS(3407), - [anon_sym_abstract] = ACTIONS(3407), - [anon_sym_interface] = ACTIONS(3407), - [anon_sym_enum] = ACTIONS(3407), + [1503] = { + [sym_comment] = STATE(1503), + [ts_builtin_sym_end] = ACTIONS(2362), + [sym_identifier] = ACTIONS(2234), + [anon_sym_export] = ACTIONS(2234), + [anon_sym_type] = ACTIONS(2234), + [anon_sym_namespace] = ACTIONS(2234), + [anon_sym_LBRACE] = ACTIONS(2234), + [anon_sym_RBRACE] = ACTIONS(2234), + [anon_sym_typeof] = ACTIONS(2234), + [anon_sym_import] = ACTIONS(2234), + [anon_sym_with] = ACTIONS(2234), + [anon_sym_var] = ACTIONS(2234), + [anon_sym_let] = ACTIONS(2234), + [anon_sym_const] = ACTIONS(2234), + [anon_sym_BANG] = ACTIONS(2234), + [anon_sym_if] = ACTIONS(2234), + [anon_sym_switch] = ACTIONS(2234), + [anon_sym_for] = ACTIONS(2234), + [anon_sym_LPAREN] = ACTIONS(2234), + [anon_sym_await] = ACTIONS(2234), + [anon_sym_while] = ACTIONS(2234), + [anon_sym_do] = ACTIONS(2234), + [anon_sym_try] = ACTIONS(2234), + [anon_sym_break] = ACTIONS(2234), + [anon_sym_continue] = ACTIONS(2234), + [anon_sym_debugger] = ACTIONS(2234), + [anon_sym_return] = ACTIONS(2234), + [anon_sym_throw] = ACTIONS(2234), + [anon_sym_SEMI] = ACTIONS(2234), + [anon_sym_yield] = ACTIONS(2234), + [anon_sym_LBRACK] = ACTIONS(2234), + [anon_sym_LTtemplate_GT] = ACTIONS(2234), + [anon_sym_DQUOTE] = ACTIONS(2234), + [anon_sym_SQUOTE] = ACTIONS(2234), + [anon_sym_class] = ACTIONS(2234), + [anon_sym_async] = ACTIONS(2234), + [anon_sym_function] = ACTIONS(2234), + [anon_sym_new] = ACTIONS(2234), + [anon_sym_using] = ACTIONS(2234), + [anon_sym_PLUS] = ACTIONS(2234), + [anon_sym_DASH] = ACTIONS(2234), + [anon_sym_SLASH] = ACTIONS(2234), + [anon_sym_LT] = ACTIONS(2234), + [anon_sym_TILDE] = ACTIONS(2234), + [anon_sym_void] = ACTIONS(2234), + [anon_sym_delete] = ACTIONS(2234), + [anon_sym_PLUS_PLUS] = ACTIONS(2234), + [anon_sym_DASH_DASH] = ACTIONS(2234), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2234), + [sym_number] = ACTIONS(2234), + [sym_private_property_identifier] = ACTIONS(2234), + [sym_this] = ACTIONS(2234), + [sym_super] = ACTIONS(2234), + [sym_true] = ACTIONS(2234), + [sym_false] = ACTIONS(2234), + [sym_null] = ACTIONS(2234), + [sym_undefined] = ACTIONS(2234), + [anon_sym_AT] = ACTIONS(2234), + [anon_sym_static] = ACTIONS(2234), + [anon_sym_readonly] = ACTIONS(2234), + [anon_sym_get] = ACTIONS(2234), + [anon_sym_set] = ACTIONS(2234), + [anon_sym_declare] = ACTIONS(2234), + [anon_sym_public] = ACTIONS(2234), + [anon_sym_private] = ACTIONS(2234), + [anon_sym_protected] = ACTIONS(2234), + [anon_sym_override] = ACTIONS(2234), + [anon_sym_module] = ACTIONS(2234), + [anon_sym_any] = ACTIONS(2234), + [anon_sym_number] = ACTIONS(2234), + [anon_sym_boolean] = ACTIONS(2234), + [anon_sym_string] = ACTIONS(2234), + [anon_sym_symbol] = ACTIONS(2234), + [anon_sym_object] = ACTIONS(2234), + [anon_sym_abstract] = ACTIONS(2234), + [anon_sym_interface] = ACTIONS(2234), + [anon_sym_enum] = ACTIONS(2234), + [sym__automatic_semicolon] = ACTIONS(2488), [sym_html_comment] = ACTIONS(5), }, - [1494] = { - [sym_comment] = STATE(1494), - [sym_identifier] = ACTIONS(3281), - [anon_sym_export] = ACTIONS(3281), - [anon_sym_default] = ACTIONS(3281), - [anon_sym_type] = ACTIONS(3281), - [anon_sym_namespace] = ACTIONS(3281), - [anon_sym_LBRACE] = ACTIONS(3281), - [anon_sym_RBRACE] = ACTIONS(3281), - [anon_sym_typeof] = ACTIONS(3281), - [anon_sym_import] = ACTIONS(3281), - [anon_sym_with] = ACTIONS(3281), - [anon_sym_var] = ACTIONS(3281), - [anon_sym_let] = ACTIONS(3281), - [anon_sym_const] = ACTIONS(3281), - [anon_sym_BANG] = ACTIONS(3281), - [anon_sym_if] = ACTIONS(3281), - [anon_sym_switch] = ACTIONS(3281), - [anon_sym_for] = ACTIONS(3281), - [anon_sym_LPAREN] = ACTIONS(3281), - [anon_sym_await] = ACTIONS(3281), - [anon_sym_while] = ACTIONS(3281), - [anon_sym_do] = ACTIONS(3281), - [anon_sym_try] = ACTIONS(3281), - [anon_sym_break] = ACTIONS(3281), - [anon_sym_continue] = ACTIONS(3281), - [anon_sym_debugger] = ACTIONS(3281), - [anon_sym_return] = ACTIONS(3281), - [anon_sym_throw] = ACTIONS(3281), - [anon_sym_SEMI] = ACTIONS(3281), - [anon_sym_case] = ACTIONS(3281), - [anon_sym_yield] = ACTIONS(3281), - [anon_sym_LBRACK] = ACTIONS(3281), - [anon_sym_LTtemplate_GT] = ACTIONS(3281), - [anon_sym_DQUOTE] = ACTIONS(3281), - [anon_sym_SQUOTE] = ACTIONS(3281), - [anon_sym_class] = ACTIONS(3281), - [anon_sym_async] = ACTIONS(3281), - [anon_sym_function] = ACTIONS(3281), - [anon_sym_new] = ACTIONS(3281), - [anon_sym_using] = ACTIONS(3281), - [anon_sym_PLUS] = ACTIONS(3281), - [anon_sym_DASH] = ACTIONS(3281), - [anon_sym_SLASH] = ACTIONS(3281), - [anon_sym_LT] = ACTIONS(3281), - [anon_sym_TILDE] = ACTIONS(3281), - [anon_sym_void] = ACTIONS(3281), - [anon_sym_delete] = ACTIONS(3281), - [anon_sym_PLUS_PLUS] = ACTIONS(3281), - [anon_sym_DASH_DASH] = ACTIONS(3281), + [1504] = { + [sym_comment] = STATE(1504), + [ts_builtin_sym_end] = ACTIONS(2164), + [sym_identifier] = ACTIONS(2160), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_type] = ACTIONS(2160), + [anon_sym_namespace] = ACTIONS(2160), + [anon_sym_LBRACE] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_typeof] = ACTIONS(2160), + [anon_sym_import] = ACTIONS(2160), + [anon_sym_with] = ACTIONS(2160), + [anon_sym_var] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [anon_sym_BANG] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_switch] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_await] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_debugger] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_throw] = ACTIONS(2160), + [anon_sym_SEMI] = ACTIONS(2160), + [anon_sym_yield] = ACTIONS(2160), + [anon_sym_LBRACK] = ACTIONS(2160), + [anon_sym_LTtemplate_GT] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [anon_sym_SQUOTE] = ACTIONS(2160), + [anon_sym_class] = ACTIONS(2160), + [anon_sym_async] = ACTIONS(2160), + [anon_sym_function] = ACTIONS(2160), + [anon_sym_new] = ACTIONS(2160), + [anon_sym_using] = ACTIONS(2160), + [anon_sym_PLUS] = ACTIONS(2160), + [anon_sym_DASH] = ACTIONS(2160), + [anon_sym_SLASH] = ACTIONS(2160), + [anon_sym_LT] = ACTIONS(2160), + [anon_sym_TILDE] = ACTIONS(2160), + [anon_sym_void] = ACTIONS(2160), + [anon_sym_delete] = ACTIONS(2160), + [anon_sym_PLUS_PLUS] = ACTIONS(2160), + [anon_sym_DASH_DASH] = ACTIONS(2160), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3281), - [sym_number] = ACTIONS(3281), - [sym_private_property_identifier] = ACTIONS(3281), - [sym_this] = ACTIONS(3281), - [sym_super] = ACTIONS(3281), - [sym_true] = ACTIONS(3281), - [sym_false] = ACTIONS(3281), - [sym_null] = ACTIONS(3281), - [sym_undefined] = ACTIONS(3281), - [anon_sym_AT] = ACTIONS(3281), - [anon_sym_static] = ACTIONS(3281), - [anon_sym_readonly] = ACTIONS(3281), - [anon_sym_get] = ACTIONS(3281), - [anon_sym_set] = ACTIONS(3281), - [anon_sym_declare] = ACTIONS(3281), - [anon_sym_public] = ACTIONS(3281), - [anon_sym_private] = ACTIONS(3281), - [anon_sym_protected] = ACTIONS(3281), - [anon_sym_override] = ACTIONS(3281), - [anon_sym_module] = ACTIONS(3281), - [anon_sym_any] = ACTIONS(3281), - [anon_sym_number] = ACTIONS(3281), - [anon_sym_boolean] = ACTIONS(3281), - [anon_sym_string] = ACTIONS(3281), - [anon_sym_symbol] = ACTIONS(3281), - [anon_sym_object] = ACTIONS(3281), - [anon_sym_abstract] = ACTIONS(3281), - [anon_sym_interface] = ACTIONS(3281), - [anon_sym_enum] = ACTIONS(3281), - [sym_html_comment] = ACTIONS(5), - }, - [1495] = { - [sym_comment] = STATE(1495), - [sym_identifier] = ACTIONS(3437), - [anon_sym_export] = ACTIONS(3437), - [anon_sym_default] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_typeof] = ACTIONS(3437), - [anon_sym_import] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_var] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_switch] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_await] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_debugger] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_throw] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_case] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LTtemplate_GT] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_SQUOTE] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_async] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_using] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_void] = ACTIONS(3437), - [anon_sym_delete] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3437), - [sym_number] = ACTIONS(3437), - [sym_private_property_identifier] = ACTIONS(3437), - [sym_this] = ACTIONS(3437), - [sym_super] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_null] = ACTIONS(3437), - [sym_undefined] = ACTIONS(3437), - [anon_sym_AT] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_readonly] = ACTIONS(3437), - [anon_sym_get] = ACTIONS(3437), - [anon_sym_set] = ACTIONS(3437), - [anon_sym_declare] = ACTIONS(3437), - [anon_sym_public] = ACTIONS(3437), - [anon_sym_private] = ACTIONS(3437), - [anon_sym_protected] = ACTIONS(3437), - [anon_sym_override] = ACTIONS(3437), - [anon_sym_module] = ACTIONS(3437), - [anon_sym_any] = ACTIONS(3437), - [anon_sym_number] = ACTIONS(3437), - [anon_sym_boolean] = ACTIONS(3437), - [anon_sym_string] = ACTIONS(3437), - [anon_sym_symbol] = ACTIONS(3437), - [anon_sym_object] = ACTIONS(3437), - [anon_sym_abstract] = ACTIONS(3437), - [anon_sym_interface] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), + [anon_sym_BQUOTE] = ACTIONS(2160), + [sym_number] = ACTIONS(2160), + [sym_private_property_identifier] = ACTIONS(2160), + [sym_this] = ACTIONS(2160), + [sym_super] = ACTIONS(2160), + [sym_true] = ACTIONS(2160), + [sym_false] = ACTIONS(2160), + [sym_null] = ACTIONS(2160), + [sym_undefined] = ACTIONS(2160), + [anon_sym_AT] = ACTIONS(2160), + [anon_sym_static] = ACTIONS(2160), + [anon_sym_readonly] = ACTIONS(2160), + [anon_sym_get] = ACTIONS(2160), + [anon_sym_set] = ACTIONS(2160), + [anon_sym_declare] = ACTIONS(2160), + [anon_sym_public] = ACTIONS(2160), + [anon_sym_private] = ACTIONS(2160), + [anon_sym_protected] = ACTIONS(2160), + [anon_sym_override] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_any] = ACTIONS(2160), + [anon_sym_number] = ACTIONS(2160), + [anon_sym_boolean] = ACTIONS(2160), + [anon_sym_string] = ACTIONS(2160), + [anon_sym_symbol] = ACTIONS(2160), + [anon_sym_object] = ACTIONS(2160), + [anon_sym_abstract] = ACTIONS(2160), + [anon_sym_interface] = ACTIONS(2160), + [anon_sym_enum] = ACTIONS(2160), [sym_html_comment] = ACTIONS(5), }, - [1496] = { - [sym_comment] = STATE(1496), - [sym_identifier] = ACTIONS(3405), - [anon_sym_export] = ACTIONS(3405), - [anon_sym_default] = ACTIONS(3405), - [anon_sym_type] = ACTIONS(3405), - [anon_sym_namespace] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_typeof] = ACTIONS(3405), - [anon_sym_import] = ACTIONS(3405), - [anon_sym_with] = ACTIONS(3405), - [anon_sym_var] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_const] = ACTIONS(3405), - [anon_sym_BANG] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_switch] = ACTIONS(3405), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_await] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_break] = ACTIONS(3405), - [anon_sym_continue] = ACTIONS(3405), - [anon_sym_debugger] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_throw] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_case] = ACTIONS(3405), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LTtemplate_GT] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_SQUOTE] = ACTIONS(3405), - [anon_sym_class] = ACTIONS(3405), - [anon_sym_async] = ACTIONS(3405), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_using] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_SLASH] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_void] = ACTIONS(3405), - [anon_sym_delete] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3405), + [1505] = { + [sym_comment] = STATE(1505), + [ts_builtin_sym_end] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3405), - [sym_number] = ACTIONS(3405), - [sym_private_property_identifier] = ACTIONS(3405), - [sym_this] = ACTIONS(3405), - [sym_super] = ACTIONS(3405), - [sym_true] = ACTIONS(3405), - [sym_false] = ACTIONS(3405), - [sym_null] = ACTIONS(3405), - [sym_undefined] = ACTIONS(3405), - [anon_sym_AT] = ACTIONS(3405), - [anon_sym_static] = ACTIONS(3405), - [anon_sym_readonly] = ACTIONS(3405), - [anon_sym_get] = ACTIONS(3405), - [anon_sym_set] = ACTIONS(3405), - [anon_sym_declare] = ACTIONS(3405), - [anon_sym_public] = ACTIONS(3405), - [anon_sym_private] = ACTIONS(3405), - [anon_sym_protected] = ACTIONS(3405), - [anon_sym_override] = ACTIONS(3405), - [anon_sym_module] = ACTIONS(3405), - [anon_sym_any] = ACTIONS(3405), - [anon_sym_number] = ACTIONS(3405), - [anon_sym_boolean] = ACTIONS(3405), - [anon_sym_string] = ACTIONS(3405), - [anon_sym_symbol] = ACTIONS(3405), - [anon_sym_object] = ACTIONS(3405), - [anon_sym_abstract] = ACTIONS(3405), - [anon_sym_interface] = ACTIONS(3405), - [anon_sym_enum] = ACTIONS(3405), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, - [1497] = { - [sym_comment] = STATE(1497), + [1506] = { + [sym_comment] = STATE(1506), + [ts_builtin_sym_end] = ACTIONS(3663), [sym_identifier] = ACTIONS(3435), [anon_sym_export] = ACTIONS(3435), - [anon_sym_default] = ACTIONS(3435), [anon_sym_type] = ACTIONS(3435), [anon_sym_namespace] = ACTIONS(3435), [anon_sym_LBRACE] = ACTIONS(3435), @@ -185352,7 +185769,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3435), [anon_sym_throw] = ACTIONS(3435), [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym_case] = ACTIONS(3435), [anon_sym_yield] = ACTIONS(3435), [anon_sym_LBRACK] = ACTIONS(3435), [anon_sym_LTtemplate_GT] = ACTIONS(3435), @@ -185404,3049 +185820,3336 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3435), [sym_html_comment] = ACTIONS(5), }, - [1498] = { - [sym_comment] = STATE(1498), - [sym_identifier] = ACTIONS(3403), - [anon_sym_export] = ACTIONS(3403), - [anon_sym_default] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_namespace] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_typeof] = ACTIONS(3403), - [anon_sym_import] = ACTIONS(3403), - [anon_sym_with] = ACTIONS(3403), - [anon_sym_var] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_switch] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_await] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_debugger] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_throw] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_case] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LTtemplate_GT] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_class] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_using] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_void] = ACTIONS(3403), - [anon_sym_delete] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(3403), + [1507] = { + [sym_comment] = STATE(1507), + [ts_builtin_sym_end] = ACTIONS(2324), + [sym_identifier] = ACTIONS(2182), + [anon_sym_export] = ACTIONS(2182), + [anon_sym_type] = ACTIONS(2182), + [anon_sym_namespace] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(2182), + [anon_sym_typeof] = ACTIONS(2182), + [anon_sym_import] = ACTIONS(2182), + [anon_sym_with] = ACTIONS(2182), + [anon_sym_var] = ACTIONS(2182), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_BANG] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_switch] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_LPAREN] = ACTIONS(2182), + [anon_sym_await] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_do] = ACTIONS(2182), + [anon_sym_try] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_debugger] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_throw] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2182), + [anon_sym_yield] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LTtemplate_GT] = ACTIONS(2182), + [anon_sym_DQUOTE] = ACTIONS(2182), + [anon_sym_SQUOTE] = ACTIONS(2182), + [anon_sym_class] = ACTIONS(2182), + [anon_sym_async] = ACTIONS(2182), + [anon_sym_function] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2182), + [anon_sym_using] = ACTIONS(2182), + [anon_sym_PLUS] = ACTIONS(2182), + [anon_sym_DASH] = ACTIONS(2182), + [anon_sym_SLASH] = ACTIONS(2182), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_TILDE] = ACTIONS(2182), + [anon_sym_void] = ACTIONS(2182), + [anon_sym_delete] = ACTIONS(2182), + [anon_sym_PLUS_PLUS] = ACTIONS(2182), + [anon_sym_DASH_DASH] = ACTIONS(2182), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3403), - [sym_number] = ACTIONS(3403), - [sym_private_property_identifier] = ACTIONS(3403), - [sym_this] = ACTIONS(3403), - [sym_super] = ACTIONS(3403), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [sym_null] = ACTIONS(3403), - [sym_undefined] = ACTIONS(3403), - [anon_sym_AT] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3403), - [anon_sym_readonly] = ACTIONS(3403), - [anon_sym_get] = ACTIONS(3403), - [anon_sym_set] = ACTIONS(3403), - [anon_sym_declare] = ACTIONS(3403), - [anon_sym_public] = ACTIONS(3403), - [anon_sym_private] = ACTIONS(3403), - [anon_sym_protected] = ACTIONS(3403), - [anon_sym_override] = ACTIONS(3403), - [anon_sym_module] = ACTIONS(3403), - [anon_sym_any] = ACTIONS(3403), - [anon_sym_number] = ACTIONS(3403), - [anon_sym_boolean] = ACTIONS(3403), - [anon_sym_string] = ACTIONS(3403), - [anon_sym_symbol] = ACTIONS(3403), - [anon_sym_object] = ACTIONS(3403), - [anon_sym_abstract] = ACTIONS(3403), - [anon_sym_interface] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), + [anon_sym_BQUOTE] = ACTIONS(2182), + [sym_number] = ACTIONS(2182), + [sym_private_property_identifier] = ACTIONS(2182), + [sym_this] = ACTIONS(2182), + [sym_super] = ACTIONS(2182), + [sym_true] = ACTIONS(2182), + [sym_false] = ACTIONS(2182), + [sym_null] = ACTIONS(2182), + [sym_undefined] = ACTIONS(2182), + [anon_sym_AT] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_readonly] = ACTIONS(2182), + [anon_sym_get] = ACTIONS(2182), + [anon_sym_set] = ACTIONS(2182), + [anon_sym_declare] = ACTIONS(2182), + [anon_sym_public] = ACTIONS(2182), + [anon_sym_private] = ACTIONS(2182), + [anon_sym_protected] = ACTIONS(2182), + [anon_sym_override] = ACTIONS(2182), + [anon_sym_module] = ACTIONS(2182), + [anon_sym_any] = ACTIONS(2182), + [anon_sym_number] = ACTIONS(2182), + [anon_sym_boolean] = ACTIONS(2182), + [anon_sym_string] = ACTIONS(2182), + [anon_sym_symbol] = ACTIONS(2182), + [anon_sym_object] = ACTIONS(2182), + [anon_sym_abstract] = ACTIONS(2182), + [anon_sym_interface] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), [sym_html_comment] = ACTIONS(5), }, - [1499] = { - [sym_comment] = STATE(1499), - [sym_identifier] = ACTIONS(3285), - [anon_sym_export] = ACTIONS(3285), - [anon_sym_default] = ACTIONS(3285), - [anon_sym_type] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_typeof] = ACTIONS(3285), - [anon_sym_import] = ACTIONS(3285), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_var] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3285), - [anon_sym_const] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3285), - [anon_sym_switch] = ACTIONS(3285), - [anon_sym_for] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_await] = ACTIONS(3285), - [anon_sym_while] = ACTIONS(3285), - [anon_sym_do] = ACTIONS(3285), - [anon_sym_try] = ACTIONS(3285), - [anon_sym_break] = ACTIONS(3285), - [anon_sym_continue] = ACTIONS(3285), - [anon_sym_debugger] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3285), - [anon_sym_throw] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_case] = ACTIONS(3285), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LTtemplate_GT] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_SQUOTE] = ACTIONS(3285), - [anon_sym_class] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3285), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_using] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_void] = ACTIONS(3285), - [anon_sym_delete] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), + [1508] = { + [sym_comment] = STATE(1508), + [ts_builtin_sym_end] = ACTIONS(3569), + [sym_identifier] = ACTIONS(3395), + [anon_sym_export] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_typeof] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3395), + [anon_sym_with] = ACTIONS(3395), + [anon_sym_var] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_debugger] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_LTtemplate_GT] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_function] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_SLASH] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_void] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3395), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3285), - [sym_number] = ACTIONS(3285), - [sym_private_property_identifier] = ACTIONS(3285), - [sym_this] = ACTIONS(3285), - [sym_super] = ACTIONS(3285), - [sym_true] = ACTIONS(3285), - [sym_false] = ACTIONS(3285), - [sym_null] = ACTIONS(3285), - [sym_undefined] = ACTIONS(3285), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_static] = ACTIONS(3285), - [anon_sym_readonly] = ACTIONS(3285), - [anon_sym_get] = ACTIONS(3285), - [anon_sym_set] = ACTIONS(3285), - [anon_sym_declare] = ACTIONS(3285), - [anon_sym_public] = ACTIONS(3285), - [anon_sym_private] = ACTIONS(3285), - [anon_sym_protected] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3285), - [anon_sym_module] = ACTIONS(3285), - [anon_sym_any] = ACTIONS(3285), - [anon_sym_number] = ACTIONS(3285), - [anon_sym_boolean] = ACTIONS(3285), - [anon_sym_string] = ACTIONS(3285), - [anon_sym_symbol] = ACTIONS(3285), - [anon_sym_object] = ACTIONS(3285), - [anon_sym_abstract] = ACTIONS(3285), - [anon_sym_interface] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3285), + [anon_sym_BQUOTE] = ACTIONS(3395), + [sym_number] = ACTIONS(3395), + [sym_private_property_identifier] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [sym_null] = ACTIONS(3395), + [sym_undefined] = ACTIONS(3395), + [anon_sym_AT] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_get] = ACTIONS(3395), + [anon_sym_set] = ACTIONS(3395), + [anon_sym_declare] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_private] = ACTIONS(3395), + [anon_sym_protected] = ACTIONS(3395), + [anon_sym_override] = ACTIONS(3395), + [anon_sym_module] = ACTIONS(3395), + [anon_sym_any] = ACTIONS(3395), + [anon_sym_number] = ACTIONS(3395), + [anon_sym_boolean] = ACTIONS(3395), + [anon_sym_string] = ACTIONS(3395), + [anon_sym_symbol] = ACTIONS(3395), + [anon_sym_object] = ACTIONS(3395), + [anon_sym_abstract] = ACTIONS(3395), + [anon_sym_interface] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), [sym_html_comment] = ACTIONS(5), }, - [1500] = { - [sym_comment] = STATE(1500), - [sym_identifier] = ACTIONS(3403), - [anon_sym_export] = ACTIONS(3403), - [anon_sym_default] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_namespace] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_typeof] = ACTIONS(3403), - [anon_sym_import] = ACTIONS(3403), - [anon_sym_with] = ACTIONS(3403), - [anon_sym_var] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_switch] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_await] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_debugger] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_throw] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_case] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LTtemplate_GT] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_class] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_using] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_void] = ACTIONS(3403), - [anon_sym_delete] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(3403), + [1509] = { + [sym_comment] = STATE(1509), + [ts_builtin_sym_end] = ACTIONS(3665), + [sym_identifier] = ACTIONS(3453), + [anon_sym_export] = ACTIONS(3453), + [anon_sym_type] = ACTIONS(3453), + [anon_sym_namespace] = ACTIONS(3453), + [anon_sym_LBRACE] = ACTIONS(3453), + [anon_sym_RBRACE] = ACTIONS(3453), + [anon_sym_typeof] = ACTIONS(3453), + [anon_sym_import] = ACTIONS(3453), + [anon_sym_with] = ACTIONS(3453), + [anon_sym_var] = ACTIONS(3453), + [anon_sym_let] = ACTIONS(3453), + [anon_sym_const] = ACTIONS(3453), + [anon_sym_BANG] = ACTIONS(3453), + [anon_sym_if] = ACTIONS(3453), + [anon_sym_switch] = ACTIONS(3453), + [anon_sym_for] = ACTIONS(3453), + [anon_sym_LPAREN] = ACTIONS(3453), + [anon_sym_await] = ACTIONS(3453), + [anon_sym_while] = ACTIONS(3453), + [anon_sym_do] = ACTIONS(3453), + [anon_sym_try] = ACTIONS(3453), + [anon_sym_break] = ACTIONS(3453), + [anon_sym_continue] = ACTIONS(3453), + [anon_sym_debugger] = ACTIONS(3453), + [anon_sym_return] = ACTIONS(3453), + [anon_sym_throw] = ACTIONS(3453), + [anon_sym_SEMI] = ACTIONS(3453), + [anon_sym_yield] = ACTIONS(3453), + [anon_sym_LBRACK] = ACTIONS(3453), + [anon_sym_LTtemplate_GT] = ACTIONS(3453), + [anon_sym_DQUOTE] = ACTIONS(3453), + [anon_sym_SQUOTE] = ACTIONS(3453), + [anon_sym_class] = ACTIONS(3453), + [anon_sym_async] = ACTIONS(3453), + [anon_sym_function] = ACTIONS(3453), + [anon_sym_new] = ACTIONS(3453), + [anon_sym_using] = ACTIONS(3453), + [anon_sym_PLUS] = ACTIONS(3453), + [anon_sym_DASH] = ACTIONS(3453), + [anon_sym_SLASH] = ACTIONS(3453), + [anon_sym_LT] = ACTIONS(3453), + [anon_sym_TILDE] = ACTIONS(3453), + [anon_sym_void] = ACTIONS(3453), + [anon_sym_delete] = ACTIONS(3453), + [anon_sym_PLUS_PLUS] = ACTIONS(3453), + [anon_sym_DASH_DASH] = ACTIONS(3453), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3403), - [sym_number] = ACTIONS(3403), - [sym_private_property_identifier] = ACTIONS(3403), - [sym_this] = ACTIONS(3403), - [sym_super] = ACTIONS(3403), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [sym_null] = ACTIONS(3403), - [sym_undefined] = ACTIONS(3403), - [anon_sym_AT] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3403), - [anon_sym_readonly] = ACTIONS(3403), - [anon_sym_get] = ACTIONS(3403), - [anon_sym_set] = ACTIONS(3403), - [anon_sym_declare] = ACTIONS(3403), - [anon_sym_public] = ACTIONS(3403), - [anon_sym_private] = ACTIONS(3403), - [anon_sym_protected] = ACTIONS(3403), - [anon_sym_override] = ACTIONS(3403), - [anon_sym_module] = ACTIONS(3403), - [anon_sym_any] = ACTIONS(3403), - [anon_sym_number] = ACTIONS(3403), - [anon_sym_boolean] = ACTIONS(3403), - [anon_sym_string] = ACTIONS(3403), - [anon_sym_symbol] = ACTIONS(3403), - [anon_sym_object] = ACTIONS(3403), - [anon_sym_abstract] = ACTIONS(3403), - [anon_sym_interface] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), - [sym_html_comment] = ACTIONS(5), - }, - [1501] = { - [sym_comment] = STATE(1501), - [sym_identifier] = ACTIONS(3259), - [anon_sym_export] = ACTIONS(3259), - [anon_sym_default] = ACTIONS(3259), - [anon_sym_type] = ACTIONS(3259), - [anon_sym_namespace] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_RBRACE] = ACTIONS(3259), - [anon_sym_typeof] = ACTIONS(3259), - [anon_sym_import] = ACTIONS(3259), - [anon_sym_with] = ACTIONS(3259), - [anon_sym_var] = ACTIONS(3259), - [anon_sym_let] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_switch] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3259), - [anon_sym_await] = ACTIONS(3259), - [anon_sym_while] = ACTIONS(3259), - [anon_sym_do] = ACTIONS(3259), - [anon_sym_try] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_debugger] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_throw] = ACTIONS(3259), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_case] = ACTIONS(3259), - [anon_sym_yield] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_LTtemplate_GT] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(3259), - [anon_sym_SQUOTE] = ACTIONS(3259), - [anon_sym_class] = ACTIONS(3259), - [anon_sym_async] = ACTIONS(3259), - [anon_sym_function] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3259), - [anon_sym_using] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_SLASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_void] = ACTIONS(3259), - [anon_sym_delete] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3259), - [sym_number] = ACTIONS(3259), - [sym_private_property_identifier] = ACTIONS(3259), - [sym_this] = ACTIONS(3259), - [sym_super] = ACTIONS(3259), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [sym_null] = ACTIONS(3259), - [sym_undefined] = ACTIONS(3259), - [anon_sym_AT] = ACTIONS(3259), - [anon_sym_static] = ACTIONS(3259), - [anon_sym_readonly] = ACTIONS(3259), - [anon_sym_get] = ACTIONS(3259), - [anon_sym_set] = ACTIONS(3259), - [anon_sym_declare] = ACTIONS(3259), - [anon_sym_public] = ACTIONS(3259), - [anon_sym_private] = ACTIONS(3259), - [anon_sym_protected] = ACTIONS(3259), - [anon_sym_override] = ACTIONS(3259), - [anon_sym_module] = ACTIONS(3259), - [anon_sym_any] = ACTIONS(3259), - [anon_sym_number] = ACTIONS(3259), - [anon_sym_boolean] = ACTIONS(3259), - [anon_sym_string] = ACTIONS(3259), - [anon_sym_symbol] = ACTIONS(3259), - [anon_sym_object] = ACTIONS(3259), - [anon_sym_abstract] = ACTIONS(3259), - [anon_sym_interface] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), + [anon_sym_BQUOTE] = ACTIONS(3453), + [sym_number] = ACTIONS(3453), + [sym_private_property_identifier] = ACTIONS(3453), + [sym_this] = ACTIONS(3453), + [sym_super] = ACTIONS(3453), + [sym_true] = ACTIONS(3453), + [sym_false] = ACTIONS(3453), + [sym_null] = ACTIONS(3453), + [sym_undefined] = ACTIONS(3453), + [anon_sym_AT] = ACTIONS(3453), + [anon_sym_static] = ACTIONS(3453), + [anon_sym_readonly] = ACTIONS(3453), + [anon_sym_get] = ACTIONS(3453), + [anon_sym_set] = ACTIONS(3453), + [anon_sym_declare] = ACTIONS(3453), + [anon_sym_public] = ACTIONS(3453), + [anon_sym_private] = ACTIONS(3453), + [anon_sym_protected] = ACTIONS(3453), + [anon_sym_override] = ACTIONS(3453), + [anon_sym_module] = ACTIONS(3453), + [anon_sym_any] = ACTIONS(3453), + [anon_sym_number] = ACTIONS(3453), + [anon_sym_boolean] = ACTIONS(3453), + [anon_sym_string] = ACTIONS(3453), + [anon_sym_symbol] = ACTIONS(3453), + [anon_sym_object] = ACTIONS(3453), + [anon_sym_abstract] = ACTIONS(3453), + [anon_sym_interface] = ACTIONS(3453), + [anon_sym_enum] = ACTIONS(3453), [sym_html_comment] = ACTIONS(5), }, - [1502] = { - [sym_comment] = STATE(1502), - [sym_identifier] = ACTIONS(3433), - [anon_sym_export] = ACTIONS(3433), - [anon_sym_default] = ACTIONS(3433), - [anon_sym_type] = ACTIONS(3433), - [anon_sym_namespace] = ACTIONS(3433), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_RBRACE] = ACTIONS(3433), - [anon_sym_typeof] = ACTIONS(3433), - [anon_sym_import] = ACTIONS(3433), - [anon_sym_with] = ACTIONS(3433), - [anon_sym_var] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_const] = ACTIONS(3433), - [anon_sym_BANG] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_switch] = ACTIONS(3433), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_await] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_break] = ACTIONS(3433), - [anon_sym_continue] = ACTIONS(3433), - [anon_sym_debugger] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_throw] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_case] = ACTIONS(3433), - [anon_sym_yield] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LTtemplate_GT] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [anon_sym_SQUOTE] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_async] = ACTIONS(3433), - [anon_sym_function] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_using] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_SLASH] = ACTIONS(3433), - [anon_sym_LT] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_void] = ACTIONS(3433), - [anon_sym_delete] = ACTIONS(3433), - [anon_sym_PLUS_PLUS] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3433), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3433), - [sym_number] = ACTIONS(3433), - [sym_private_property_identifier] = ACTIONS(3433), - [sym_this] = ACTIONS(3433), - [sym_super] = ACTIONS(3433), - [sym_true] = ACTIONS(3433), - [sym_false] = ACTIONS(3433), - [sym_null] = ACTIONS(3433), - [sym_undefined] = ACTIONS(3433), - [anon_sym_AT] = ACTIONS(3433), - [anon_sym_static] = ACTIONS(3433), - [anon_sym_readonly] = ACTIONS(3433), - [anon_sym_get] = ACTIONS(3433), - [anon_sym_set] = ACTIONS(3433), - [anon_sym_declare] = ACTIONS(3433), - [anon_sym_public] = ACTIONS(3433), - [anon_sym_private] = ACTIONS(3433), - [anon_sym_protected] = ACTIONS(3433), - [anon_sym_override] = ACTIONS(3433), - [anon_sym_module] = ACTIONS(3433), - [anon_sym_any] = ACTIONS(3433), - [anon_sym_number] = ACTIONS(3433), - [anon_sym_boolean] = ACTIONS(3433), - [anon_sym_string] = ACTIONS(3433), - [anon_sym_symbol] = ACTIONS(3433), - [anon_sym_object] = ACTIONS(3433), - [anon_sym_abstract] = ACTIONS(3433), - [anon_sym_interface] = ACTIONS(3433), - [anon_sym_enum] = ACTIONS(3433), + [1510] = { + [sym_comment] = STATE(1510), + [ts_builtin_sym_end] = ACTIONS(3561), + [sym_identifier] = ACTIONS(3305), + [anon_sym_export] = ACTIONS(3305), + [anon_sym_type] = ACTIONS(3305), + [anon_sym_namespace] = ACTIONS(3305), + [anon_sym_LBRACE] = ACTIONS(3305), + [anon_sym_RBRACE] = ACTIONS(3305), + [anon_sym_typeof] = ACTIONS(3305), + [anon_sym_import] = ACTIONS(3305), + [anon_sym_with] = ACTIONS(3305), + [anon_sym_var] = ACTIONS(3305), + [anon_sym_let] = ACTIONS(3305), + [anon_sym_const] = ACTIONS(3305), + [anon_sym_BANG] = ACTIONS(3305), + [anon_sym_if] = ACTIONS(3305), + [anon_sym_switch] = ACTIONS(3305), + [anon_sym_for] = ACTIONS(3305), + [anon_sym_LPAREN] = ACTIONS(3305), + [anon_sym_await] = ACTIONS(3305), + [anon_sym_while] = ACTIONS(3305), + [anon_sym_do] = ACTIONS(3305), + [anon_sym_try] = ACTIONS(3305), + [anon_sym_break] = ACTIONS(3305), + [anon_sym_continue] = ACTIONS(3305), + [anon_sym_debugger] = ACTIONS(3305), + [anon_sym_return] = ACTIONS(3305), + [anon_sym_throw] = ACTIONS(3305), + [anon_sym_SEMI] = ACTIONS(3305), + [anon_sym_yield] = ACTIONS(3305), + [anon_sym_LBRACK] = ACTIONS(3305), + [anon_sym_LTtemplate_GT] = ACTIONS(3305), + [anon_sym_DQUOTE] = ACTIONS(3305), + [anon_sym_SQUOTE] = ACTIONS(3305), + [anon_sym_class] = ACTIONS(3305), + [anon_sym_async] = ACTIONS(3305), + [anon_sym_function] = ACTIONS(3305), + [anon_sym_new] = ACTIONS(3305), + [anon_sym_using] = ACTIONS(3305), + [anon_sym_PLUS] = ACTIONS(3305), + [anon_sym_DASH] = ACTIONS(3305), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_LT] = ACTIONS(3305), + [anon_sym_TILDE] = ACTIONS(3305), + [anon_sym_void] = ACTIONS(3305), + [anon_sym_delete] = ACTIONS(3305), + [anon_sym_PLUS_PLUS] = ACTIONS(3305), + [anon_sym_DASH_DASH] = ACTIONS(3305), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3305), + [sym_number] = ACTIONS(3305), + [sym_private_property_identifier] = ACTIONS(3305), + [sym_this] = ACTIONS(3305), + [sym_super] = ACTIONS(3305), + [sym_true] = ACTIONS(3305), + [sym_false] = ACTIONS(3305), + [sym_null] = ACTIONS(3305), + [sym_undefined] = ACTIONS(3305), + [anon_sym_AT] = ACTIONS(3305), + [anon_sym_static] = ACTIONS(3305), + [anon_sym_readonly] = ACTIONS(3305), + [anon_sym_get] = ACTIONS(3305), + [anon_sym_set] = ACTIONS(3305), + [anon_sym_declare] = ACTIONS(3305), + [anon_sym_public] = ACTIONS(3305), + [anon_sym_private] = ACTIONS(3305), + [anon_sym_protected] = ACTIONS(3305), + [anon_sym_override] = ACTIONS(3305), + [anon_sym_module] = ACTIONS(3305), + [anon_sym_any] = ACTIONS(3305), + [anon_sym_number] = ACTIONS(3305), + [anon_sym_boolean] = ACTIONS(3305), + [anon_sym_string] = ACTIONS(3305), + [anon_sym_symbol] = ACTIONS(3305), + [anon_sym_object] = ACTIONS(3305), + [anon_sym_abstract] = ACTIONS(3305), + [anon_sym_interface] = ACTIONS(3305), + [anon_sym_enum] = ACTIONS(3305), [sym_html_comment] = ACTIONS(5), }, - [1503] = { - [sym_comment] = STATE(1503), - [sym_identifier] = ACTIONS(3287), - [anon_sym_export] = ACTIONS(3287), - [anon_sym_default] = ACTIONS(3287), - [anon_sym_type] = ACTIONS(3287), - [anon_sym_namespace] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(3287), - [anon_sym_typeof] = ACTIONS(3287), - [anon_sym_import] = ACTIONS(3287), - [anon_sym_with] = ACTIONS(3287), - [anon_sym_var] = ACTIONS(3287), - [anon_sym_let] = ACTIONS(3287), - [anon_sym_const] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3287), - [anon_sym_if] = ACTIONS(3287), - [anon_sym_switch] = ACTIONS(3287), - [anon_sym_for] = ACTIONS(3287), - [anon_sym_LPAREN] = ACTIONS(3287), - [anon_sym_await] = ACTIONS(3287), - [anon_sym_while] = ACTIONS(3287), - [anon_sym_do] = ACTIONS(3287), - [anon_sym_try] = ACTIONS(3287), - [anon_sym_break] = ACTIONS(3287), - [anon_sym_continue] = ACTIONS(3287), - [anon_sym_debugger] = ACTIONS(3287), - [anon_sym_return] = ACTIONS(3287), - [anon_sym_throw] = ACTIONS(3287), - [anon_sym_SEMI] = ACTIONS(3287), - [anon_sym_case] = ACTIONS(3287), - [anon_sym_yield] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(3287), - [anon_sym_LTtemplate_GT] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(3287), - [anon_sym_SQUOTE] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3287), - [anon_sym_async] = ACTIONS(3287), - [anon_sym_function] = ACTIONS(3287), - [anon_sym_new] = ACTIONS(3287), - [anon_sym_using] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3287), - [anon_sym_DASH] = ACTIONS(3287), - [anon_sym_SLASH] = ACTIONS(3287), - [anon_sym_LT] = ACTIONS(3287), - [anon_sym_TILDE] = ACTIONS(3287), - [anon_sym_void] = ACTIONS(3287), - [anon_sym_delete] = ACTIONS(3287), - [anon_sym_PLUS_PLUS] = ACTIONS(3287), - [anon_sym_DASH_DASH] = ACTIONS(3287), + [1511] = { + [sym_comment] = STATE(1511), + [ts_builtin_sym_end] = ACTIONS(3569), + [sym_identifier] = ACTIONS(3395), + [anon_sym_export] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_typeof] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3395), + [anon_sym_with] = ACTIONS(3395), + [anon_sym_var] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_debugger] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_LTtemplate_GT] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_function] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_SLASH] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_void] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3395), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3287), - [sym_number] = ACTIONS(3287), - [sym_private_property_identifier] = ACTIONS(3287), - [sym_this] = ACTIONS(3287), - [sym_super] = ACTIONS(3287), - [sym_true] = ACTIONS(3287), - [sym_false] = ACTIONS(3287), - [sym_null] = ACTIONS(3287), - [sym_undefined] = ACTIONS(3287), - [anon_sym_AT] = ACTIONS(3287), - [anon_sym_static] = ACTIONS(3287), - [anon_sym_readonly] = ACTIONS(3287), - [anon_sym_get] = ACTIONS(3287), - [anon_sym_set] = ACTIONS(3287), - [anon_sym_declare] = ACTIONS(3287), - [anon_sym_public] = ACTIONS(3287), - [anon_sym_private] = ACTIONS(3287), - [anon_sym_protected] = ACTIONS(3287), - [anon_sym_override] = ACTIONS(3287), - [anon_sym_module] = ACTIONS(3287), - [anon_sym_any] = ACTIONS(3287), - [anon_sym_number] = ACTIONS(3287), - [anon_sym_boolean] = ACTIONS(3287), - [anon_sym_string] = ACTIONS(3287), - [anon_sym_symbol] = ACTIONS(3287), - [anon_sym_object] = ACTIONS(3287), - [anon_sym_abstract] = ACTIONS(3287), - [anon_sym_interface] = ACTIONS(3287), - [anon_sym_enum] = ACTIONS(3287), + [anon_sym_BQUOTE] = ACTIONS(3395), + [sym_number] = ACTIONS(3395), + [sym_private_property_identifier] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [sym_null] = ACTIONS(3395), + [sym_undefined] = ACTIONS(3395), + [anon_sym_AT] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_get] = ACTIONS(3395), + [anon_sym_set] = ACTIONS(3395), + [anon_sym_declare] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_private] = ACTIONS(3395), + [anon_sym_protected] = ACTIONS(3395), + [anon_sym_override] = ACTIONS(3395), + [anon_sym_module] = ACTIONS(3395), + [anon_sym_any] = ACTIONS(3395), + [anon_sym_number] = ACTIONS(3395), + [anon_sym_boolean] = ACTIONS(3395), + [anon_sym_string] = ACTIONS(3395), + [anon_sym_symbol] = ACTIONS(3395), + [anon_sym_object] = ACTIONS(3395), + [anon_sym_abstract] = ACTIONS(3395), + [anon_sym_interface] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), [sym_html_comment] = ACTIONS(5), }, - [1504] = { - [sym_comment] = STATE(1504), - [sym_identifier] = ACTIONS(3289), - [anon_sym_export] = ACTIONS(3289), - [anon_sym_default] = ACTIONS(3289), - [anon_sym_type] = ACTIONS(3289), - [anon_sym_namespace] = ACTIONS(3289), - [anon_sym_LBRACE] = ACTIONS(3289), - [anon_sym_RBRACE] = ACTIONS(3289), - [anon_sym_typeof] = ACTIONS(3289), - [anon_sym_import] = ACTIONS(3289), - [anon_sym_with] = ACTIONS(3289), - [anon_sym_var] = ACTIONS(3289), - [anon_sym_let] = ACTIONS(3289), - [anon_sym_const] = ACTIONS(3289), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_if] = ACTIONS(3289), - [anon_sym_switch] = ACTIONS(3289), - [anon_sym_for] = ACTIONS(3289), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_await] = ACTIONS(3289), - [anon_sym_while] = ACTIONS(3289), - [anon_sym_do] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3289), - [anon_sym_break] = ACTIONS(3289), - [anon_sym_continue] = ACTIONS(3289), - [anon_sym_debugger] = ACTIONS(3289), - [anon_sym_return] = ACTIONS(3289), - [anon_sym_throw] = ACTIONS(3289), - [anon_sym_SEMI] = ACTIONS(3289), - [anon_sym_case] = ACTIONS(3289), - [anon_sym_yield] = ACTIONS(3289), - [anon_sym_LBRACK] = ACTIONS(3289), - [anon_sym_LTtemplate_GT] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(3289), - [anon_sym_SQUOTE] = ACTIONS(3289), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_async] = ACTIONS(3289), - [anon_sym_function] = ACTIONS(3289), - [anon_sym_new] = ACTIONS(3289), - [anon_sym_using] = ACTIONS(3289), - [anon_sym_PLUS] = ACTIONS(3289), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_SLASH] = ACTIONS(3289), - [anon_sym_LT] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_void] = ACTIONS(3289), - [anon_sym_delete] = ACTIONS(3289), - [anon_sym_PLUS_PLUS] = ACTIONS(3289), - [anon_sym_DASH_DASH] = ACTIONS(3289), + [1512] = { + [sym_comment] = STATE(1512), + [ts_builtin_sym_end] = ACTIONS(3621), + [sym_identifier] = ACTIONS(3239), + [anon_sym_export] = ACTIONS(3239), + [anon_sym_type] = ACTIONS(3239), + [anon_sym_namespace] = ACTIONS(3239), + [anon_sym_LBRACE] = ACTIONS(3239), + [anon_sym_RBRACE] = ACTIONS(3239), + [anon_sym_typeof] = ACTIONS(3239), + [anon_sym_import] = ACTIONS(3239), + [anon_sym_with] = ACTIONS(3239), + [anon_sym_var] = ACTIONS(3239), + [anon_sym_let] = ACTIONS(3239), + [anon_sym_const] = ACTIONS(3239), + [anon_sym_BANG] = ACTIONS(3239), + [anon_sym_if] = ACTIONS(3239), + [anon_sym_switch] = ACTIONS(3239), + [anon_sym_for] = ACTIONS(3239), + [anon_sym_LPAREN] = ACTIONS(3239), + [anon_sym_await] = ACTIONS(3239), + [anon_sym_while] = ACTIONS(3239), + [anon_sym_do] = ACTIONS(3239), + [anon_sym_try] = ACTIONS(3239), + [anon_sym_break] = ACTIONS(3239), + [anon_sym_continue] = ACTIONS(3239), + [anon_sym_debugger] = ACTIONS(3239), + [anon_sym_return] = ACTIONS(3239), + [anon_sym_throw] = ACTIONS(3239), + [anon_sym_SEMI] = ACTIONS(3239), + [anon_sym_yield] = ACTIONS(3239), + [anon_sym_LBRACK] = ACTIONS(3239), + [anon_sym_LTtemplate_GT] = ACTIONS(3239), + [anon_sym_DQUOTE] = ACTIONS(3239), + [anon_sym_SQUOTE] = ACTIONS(3239), + [anon_sym_class] = ACTIONS(3239), + [anon_sym_async] = ACTIONS(3239), + [anon_sym_function] = ACTIONS(3239), + [anon_sym_new] = ACTIONS(3239), + [anon_sym_using] = ACTIONS(3239), + [anon_sym_PLUS] = ACTIONS(3239), + [anon_sym_DASH] = ACTIONS(3239), + [anon_sym_SLASH] = ACTIONS(3239), + [anon_sym_LT] = ACTIONS(3239), + [anon_sym_TILDE] = ACTIONS(3239), + [anon_sym_void] = ACTIONS(3239), + [anon_sym_delete] = ACTIONS(3239), + [anon_sym_PLUS_PLUS] = ACTIONS(3239), + [anon_sym_DASH_DASH] = ACTIONS(3239), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3289), - [sym_number] = ACTIONS(3289), - [sym_private_property_identifier] = ACTIONS(3289), - [sym_this] = ACTIONS(3289), - [sym_super] = ACTIONS(3289), - [sym_true] = ACTIONS(3289), - [sym_false] = ACTIONS(3289), - [sym_null] = ACTIONS(3289), - [sym_undefined] = ACTIONS(3289), - [anon_sym_AT] = ACTIONS(3289), - [anon_sym_static] = ACTIONS(3289), - [anon_sym_readonly] = ACTIONS(3289), - [anon_sym_get] = ACTIONS(3289), - [anon_sym_set] = ACTIONS(3289), - [anon_sym_declare] = ACTIONS(3289), - [anon_sym_public] = ACTIONS(3289), - [anon_sym_private] = ACTIONS(3289), - [anon_sym_protected] = ACTIONS(3289), - [anon_sym_override] = ACTIONS(3289), - [anon_sym_module] = ACTIONS(3289), - [anon_sym_any] = ACTIONS(3289), - [anon_sym_number] = ACTIONS(3289), - [anon_sym_boolean] = ACTIONS(3289), - [anon_sym_string] = ACTIONS(3289), - [anon_sym_symbol] = ACTIONS(3289), - [anon_sym_object] = ACTIONS(3289), - [anon_sym_abstract] = ACTIONS(3289), - [anon_sym_interface] = ACTIONS(3289), - [anon_sym_enum] = ACTIONS(3289), + [anon_sym_BQUOTE] = ACTIONS(3239), + [sym_number] = ACTIONS(3239), + [sym_private_property_identifier] = ACTIONS(3239), + [sym_this] = ACTIONS(3239), + [sym_super] = ACTIONS(3239), + [sym_true] = ACTIONS(3239), + [sym_false] = ACTIONS(3239), + [sym_null] = ACTIONS(3239), + [sym_undefined] = ACTIONS(3239), + [anon_sym_AT] = ACTIONS(3239), + [anon_sym_static] = ACTIONS(3239), + [anon_sym_readonly] = ACTIONS(3239), + [anon_sym_get] = ACTIONS(3239), + [anon_sym_set] = ACTIONS(3239), + [anon_sym_declare] = ACTIONS(3239), + [anon_sym_public] = ACTIONS(3239), + [anon_sym_private] = ACTIONS(3239), + [anon_sym_protected] = ACTIONS(3239), + [anon_sym_override] = ACTIONS(3239), + [anon_sym_module] = ACTIONS(3239), + [anon_sym_any] = ACTIONS(3239), + [anon_sym_number] = ACTIONS(3239), + [anon_sym_boolean] = ACTIONS(3239), + [anon_sym_string] = ACTIONS(3239), + [anon_sym_symbol] = ACTIONS(3239), + [anon_sym_object] = ACTIONS(3239), + [anon_sym_abstract] = ACTIONS(3239), + [anon_sym_interface] = ACTIONS(3239), + [anon_sym_enum] = ACTIONS(3239), [sym_html_comment] = ACTIONS(5), }, - [1505] = { - [sym_comment] = STATE(1505), - [sym_identifier] = ACTIONS(3291), - [anon_sym_export] = ACTIONS(3291), - [anon_sym_default] = ACTIONS(3291), - [anon_sym_type] = ACTIONS(3291), - [anon_sym_namespace] = ACTIONS(3291), - [anon_sym_LBRACE] = ACTIONS(3291), - [anon_sym_RBRACE] = ACTIONS(3291), - [anon_sym_typeof] = ACTIONS(3291), - [anon_sym_import] = ACTIONS(3291), - [anon_sym_with] = ACTIONS(3291), - [anon_sym_var] = ACTIONS(3291), - [anon_sym_let] = ACTIONS(3291), - [anon_sym_const] = ACTIONS(3291), - [anon_sym_BANG] = ACTIONS(3291), - [anon_sym_if] = ACTIONS(3291), - [anon_sym_switch] = ACTIONS(3291), - [anon_sym_for] = ACTIONS(3291), - [anon_sym_LPAREN] = ACTIONS(3291), - [anon_sym_await] = ACTIONS(3291), - [anon_sym_while] = ACTIONS(3291), - [anon_sym_do] = ACTIONS(3291), - [anon_sym_try] = ACTIONS(3291), - [anon_sym_break] = ACTIONS(3291), - [anon_sym_continue] = ACTIONS(3291), - [anon_sym_debugger] = ACTIONS(3291), - [anon_sym_return] = ACTIONS(3291), - [anon_sym_throw] = ACTIONS(3291), - [anon_sym_SEMI] = ACTIONS(3291), - [anon_sym_case] = ACTIONS(3291), - [anon_sym_yield] = ACTIONS(3291), - [anon_sym_LBRACK] = ACTIONS(3291), - [anon_sym_LTtemplate_GT] = ACTIONS(3291), - [anon_sym_DQUOTE] = ACTIONS(3291), - [anon_sym_SQUOTE] = ACTIONS(3291), - [anon_sym_class] = ACTIONS(3291), - [anon_sym_async] = ACTIONS(3291), - [anon_sym_function] = ACTIONS(3291), - [anon_sym_new] = ACTIONS(3291), - [anon_sym_using] = ACTIONS(3291), - [anon_sym_PLUS] = ACTIONS(3291), - [anon_sym_DASH] = ACTIONS(3291), - [anon_sym_SLASH] = ACTIONS(3291), - [anon_sym_LT] = ACTIONS(3291), - [anon_sym_TILDE] = ACTIONS(3291), - [anon_sym_void] = ACTIONS(3291), - [anon_sym_delete] = ACTIONS(3291), - [anon_sym_PLUS_PLUS] = ACTIONS(3291), - [anon_sym_DASH_DASH] = ACTIONS(3291), + [1513] = { + [sym_comment] = STATE(1513), + [ts_builtin_sym_end] = ACTIONS(3613), + [sym_identifier] = ACTIONS(3245), + [anon_sym_export] = ACTIONS(3245), + [anon_sym_type] = ACTIONS(3245), + [anon_sym_namespace] = ACTIONS(3245), + [anon_sym_LBRACE] = ACTIONS(3245), + [anon_sym_RBRACE] = ACTIONS(3245), + [anon_sym_typeof] = ACTIONS(3245), + [anon_sym_import] = ACTIONS(3245), + [anon_sym_with] = ACTIONS(3245), + [anon_sym_var] = ACTIONS(3245), + [anon_sym_let] = ACTIONS(3245), + [anon_sym_const] = ACTIONS(3245), + [anon_sym_BANG] = ACTIONS(3245), + [anon_sym_if] = ACTIONS(3245), + [anon_sym_switch] = ACTIONS(3245), + [anon_sym_for] = ACTIONS(3245), + [anon_sym_LPAREN] = ACTIONS(3245), + [anon_sym_await] = ACTIONS(3245), + [anon_sym_while] = ACTIONS(3245), + [anon_sym_do] = ACTIONS(3245), + [anon_sym_try] = ACTIONS(3245), + [anon_sym_break] = ACTIONS(3245), + [anon_sym_continue] = ACTIONS(3245), + [anon_sym_debugger] = ACTIONS(3245), + [anon_sym_return] = ACTIONS(3245), + [anon_sym_throw] = ACTIONS(3245), + [anon_sym_SEMI] = ACTIONS(3245), + [anon_sym_yield] = ACTIONS(3245), + [anon_sym_LBRACK] = ACTIONS(3245), + [anon_sym_LTtemplate_GT] = ACTIONS(3245), + [anon_sym_DQUOTE] = ACTIONS(3245), + [anon_sym_SQUOTE] = ACTIONS(3245), + [anon_sym_class] = ACTIONS(3245), + [anon_sym_async] = ACTIONS(3245), + [anon_sym_function] = ACTIONS(3245), + [anon_sym_new] = ACTIONS(3245), + [anon_sym_using] = ACTIONS(3245), + [anon_sym_PLUS] = ACTIONS(3245), + [anon_sym_DASH] = ACTIONS(3245), + [anon_sym_SLASH] = ACTIONS(3245), + [anon_sym_LT] = ACTIONS(3245), + [anon_sym_TILDE] = ACTIONS(3245), + [anon_sym_void] = ACTIONS(3245), + [anon_sym_delete] = ACTIONS(3245), + [anon_sym_PLUS_PLUS] = ACTIONS(3245), + [anon_sym_DASH_DASH] = ACTIONS(3245), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3291), - [sym_number] = ACTIONS(3291), - [sym_private_property_identifier] = ACTIONS(3291), - [sym_this] = ACTIONS(3291), - [sym_super] = ACTIONS(3291), - [sym_true] = ACTIONS(3291), - [sym_false] = ACTIONS(3291), - [sym_null] = ACTIONS(3291), - [sym_undefined] = ACTIONS(3291), - [anon_sym_AT] = ACTIONS(3291), - [anon_sym_static] = ACTIONS(3291), - [anon_sym_readonly] = ACTIONS(3291), - [anon_sym_get] = ACTIONS(3291), - [anon_sym_set] = ACTIONS(3291), - [anon_sym_declare] = ACTIONS(3291), - [anon_sym_public] = ACTIONS(3291), - [anon_sym_private] = ACTIONS(3291), - [anon_sym_protected] = ACTIONS(3291), - [anon_sym_override] = ACTIONS(3291), - [anon_sym_module] = ACTIONS(3291), - [anon_sym_any] = ACTIONS(3291), - [anon_sym_number] = ACTIONS(3291), - [anon_sym_boolean] = ACTIONS(3291), - [anon_sym_string] = ACTIONS(3291), - [anon_sym_symbol] = ACTIONS(3291), - [anon_sym_object] = ACTIONS(3291), - [anon_sym_abstract] = ACTIONS(3291), - [anon_sym_interface] = ACTIONS(3291), - [anon_sym_enum] = ACTIONS(3291), + [anon_sym_BQUOTE] = ACTIONS(3245), + [sym_number] = ACTIONS(3245), + [sym_private_property_identifier] = ACTIONS(3245), + [sym_this] = ACTIONS(3245), + [sym_super] = ACTIONS(3245), + [sym_true] = ACTIONS(3245), + [sym_false] = ACTIONS(3245), + [sym_null] = ACTIONS(3245), + [sym_undefined] = ACTIONS(3245), + [anon_sym_AT] = ACTIONS(3245), + [anon_sym_static] = ACTIONS(3245), + [anon_sym_readonly] = ACTIONS(3245), + [anon_sym_get] = ACTIONS(3245), + [anon_sym_set] = ACTIONS(3245), + [anon_sym_declare] = ACTIONS(3245), + [anon_sym_public] = ACTIONS(3245), + [anon_sym_private] = ACTIONS(3245), + [anon_sym_protected] = ACTIONS(3245), + [anon_sym_override] = ACTIONS(3245), + [anon_sym_module] = ACTIONS(3245), + [anon_sym_any] = ACTIONS(3245), + [anon_sym_number] = ACTIONS(3245), + [anon_sym_boolean] = ACTIONS(3245), + [anon_sym_string] = ACTIONS(3245), + [anon_sym_symbol] = ACTIONS(3245), + [anon_sym_object] = ACTIONS(3245), + [anon_sym_abstract] = ACTIONS(3245), + [anon_sym_interface] = ACTIONS(3245), + [anon_sym_enum] = ACTIONS(3245), [sym_html_comment] = ACTIONS(5), }, - [1506] = { - [sym_comment] = STATE(1506), - [sym_identifier] = ACTIONS(3257), - [anon_sym_export] = ACTIONS(3257), - [anon_sym_default] = ACTIONS(3257), - [anon_sym_type] = ACTIONS(3257), - [anon_sym_namespace] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_RBRACE] = ACTIONS(3257), - [anon_sym_typeof] = ACTIONS(3257), - [anon_sym_import] = ACTIONS(3257), - [anon_sym_with] = ACTIONS(3257), - [anon_sym_var] = ACTIONS(3257), - [anon_sym_let] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_switch] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_await] = ACTIONS(3257), - [anon_sym_while] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_try] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_debugger] = ACTIONS(3257), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_throw] = ACTIONS(3257), - [anon_sym_SEMI] = ACTIONS(3257), - [anon_sym_case] = ACTIONS(3257), - [anon_sym_yield] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_LTtemplate_GT] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3257), - [anon_sym_class] = ACTIONS(3257), - [anon_sym_async] = ACTIONS(3257), - [anon_sym_function] = ACTIONS(3257), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_using] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_SLASH] = ACTIONS(3257), - [anon_sym_LT] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_void] = ACTIONS(3257), - [anon_sym_delete] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3257), - [sym_number] = ACTIONS(3257), - [sym_private_property_identifier] = ACTIONS(3257), - [sym_this] = ACTIONS(3257), - [sym_super] = ACTIONS(3257), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [sym_null] = ACTIONS(3257), - [sym_undefined] = ACTIONS(3257), - [anon_sym_AT] = ACTIONS(3257), - [anon_sym_static] = ACTIONS(3257), - [anon_sym_readonly] = ACTIONS(3257), - [anon_sym_get] = ACTIONS(3257), - [anon_sym_set] = ACTIONS(3257), - [anon_sym_declare] = ACTIONS(3257), - [anon_sym_public] = ACTIONS(3257), - [anon_sym_private] = ACTIONS(3257), - [anon_sym_protected] = ACTIONS(3257), - [anon_sym_override] = ACTIONS(3257), - [anon_sym_module] = ACTIONS(3257), - [anon_sym_any] = ACTIONS(3257), - [anon_sym_number] = ACTIONS(3257), - [anon_sym_boolean] = ACTIONS(3257), - [anon_sym_string] = ACTIONS(3257), - [anon_sym_symbol] = ACTIONS(3257), - [anon_sym_object] = ACTIONS(3257), - [anon_sym_abstract] = ACTIONS(3257), - [anon_sym_interface] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), + [1514] = { + [sym_comment] = STATE(1514), + [ts_builtin_sym_end] = ACTIONS(3513), + [sym_identifier] = ACTIONS(3361), + [anon_sym_export] = ACTIONS(3361), + [anon_sym_type] = ACTIONS(3361), + [anon_sym_namespace] = ACTIONS(3361), + [anon_sym_LBRACE] = ACTIONS(3361), + [anon_sym_RBRACE] = ACTIONS(3361), + [anon_sym_typeof] = ACTIONS(3361), + [anon_sym_import] = ACTIONS(3361), + [anon_sym_with] = ACTIONS(3361), + [anon_sym_var] = ACTIONS(3361), + [anon_sym_let] = ACTIONS(3361), + [anon_sym_const] = ACTIONS(3361), + [anon_sym_BANG] = ACTIONS(3361), + [anon_sym_if] = ACTIONS(3361), + [anon_sym_switch] = ACTIONS(3361), + [anon_sym_for] = ACTIONS(3361), + [anon_sym_LPAREN] = ACTIONS(3361), + [anon_sym_await] = ACTIONS(3361), + [anon_sym_while] = ACTIONS(3361), + [anon_sym_do] = ACTIONS(3361), + [anon_sym_try] = ACTIONS(3361), + [anon_sym_break] = ACTIONS(3361), + [anon_sym_continue] = ACTIONS(3361), + [anon_sym_debugger] = ACTIONS(3361), + [anon_sym_return] = ACTIONS(3361), + [anon_sym_throw] = ACTIONS(3361), + [anon_sym_SEMI] = ACTIONS(3361), + [anon_sym_yield] = ACTIONS(3361), + [anon_sym_LBRACK] = ACTIONS(3361), + [anon_sym_LTtemplate_GT] = ACTIONS(3361), + [anon_sym_DQUOTE] = ACTIONS(3361), + [anon_sym_SQUOTE] = ACTIONS(3361), + [anon_sym_class] = ACTIONS(3361), + [anon_sym_async] = ACTIONS(3361), + [anon_sym_function] = ACTIONS(3361), + [anon_sym_new] = ACTIONS(3361), + [anon_sym_using] = ACTIONS(3361), + [anon_sym_PLUS] = ACTIONS(3361), + [anon_sym_DASH] = ACTIONS(3361), + [anon_sym_SLASH] = ACTIONS(3361), + [anon_sym_LT] = ACTIONS(3361), + [anon_sym_TILDE] = ACTIONS(3361), + [anon_sym_void] = ACTIONS(3361), + [anon_sym_delete] = ACTIONS(3361), + [anon_sym_PLUS_PLUS] = ACTIONS(3361), + [anon_sym_DASH_DASH] = ACTIONS(3361), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3361), + [sym_number] = ACTIONS(3361), + [sym_private_property_identifier] = ACTIONS(3361), + [sym_this] = ACTIONS(3361), + [sym_super] = ACTIONS(3361), + [sym_true] = ACTIONS(3361), + [sym_false] = ACTIONS(3361), + [sym_null] = ACTIONS(3361), + [sym_undefined] = ACTIONS(3361), + [anon_sym_AT] = ACTIONS(3361), + [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_abstract] = ACTIONS(3361), + [anon_sym_interface] = ACTIONS(3361), + [anon_sym_enum] = ACTIONS(3361), [sym_html_comment] = ACTIONS(5), }, - [1507] = { - [sym_comment] = STATE(1507), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_default] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_case] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), + [1515] = { + [sym_comment] = STATE(1515), + [ts_builtin_sym_end] = ACTIONS(3569), + [sym_identifier] = ACTIONS(3395), + [anon_sym_export] = ACTIONS(3395), + [anon_sym_type] = ACTIONS(3395), + [anon_sym_namespace] = ACTIONS(3395), + [anon_sym_LBRACE] = ACTIONS(3395), + [anon_sym_RBRACE] = ACTIONS(3395), + [anon_sym_typeof] = ACTIONS(3395), + [anon_sym_import] = ACTIONS(3395), + [anon_sym_with] = ACTIONS(3395), + [anon_sym_var] = ACTIONS(3395), + [anon_sym_let] = ACTIONS(3395), + [anon_sym_const] = ACTIONS(3395), + [anon_sym_BANG] = ACTIONS(3395), + [anon_sym_if] = ACTIONS(3395), + [anon_sym_switch] = ACTIONS(3395), + [anon_sym_for] = ACTIONS(3395), + [anon_sym_LPAREN] = ACTIONS(3395), + [anon_sym_await] = ACTIONS(3395), + [anon_sym_while] = ACTIONS(3395), + [anon_sym_do] = ACTIONS(3395), + [anon_sym_try] = ACTIONS(3395), + [anon_sym_break] = ACTIONS(3395), + [anon_sym_continue] = ACTIONS(3395), + [anon_sym_debugger] = ACTIONS(3395), + [anon_sym_return] = ACTIONS(3395), + [anon_sym_throw] = ACTIONS(3395), + [anon_sym_SEMI] = ACTIONS(3395), + [anon_sym_yield] = ACTIONS(3395), + [anon_sym_LBRACK] = ACTIONS(3395), + [anon_sym_LTtemplate_GT] = ACTIONS(3395), + [anon_sym_DQUOTE] = ACTIONS(3395), + [anon_sym_SQUOTE] = ACTIONS(3395), + [anon_sym_class] = ACTIONS(3395), + [anon_sym_async] = ACTIONS(3395), + [anon_sym_function] = ACTIONS(3395), + [anon_sym_new] = ACTIONS(3395), + [anon_sym_using] = ACTIONS(3395), + [anon_sym_PLUS] = ACTIONS(3395), + [anon_sym_DASH] = ACTIONS(3395), + [anon_sym_SLASH] = ACTIONS(3395), + [anon_sym_LT] = ACTIONS(3395), + [anon_sym_TILDE] = ACTIONS(3395), + [anon_sym_void] = ACTIONS(3395), + [anon_sym_delete] = ACTIONS(3395), + [anon_sym_PLUS_PLUS] = ACTIONS(3395), + [anon_sym_DASH_DASH] = ACTIONS(3395), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), + [anon_sym_BQUOTE] = ACTIONS(3395), + [sym_number] = ACTIONS(3395), + [sym_private_property_identifier] = ACTIONS(3395), + [sym_this] = ACTIONS(3395), + [sym_super] = ACTIONS(3395), + [sym_true] = ACTIONS(3395), + [sym_false] = ACTIONS(3395), + [sym_null] = ACTIONS(3395), + [sym_undefined] = ACTIONS(3395), + [anon_sym_AT] = ACTIONS(3395), + [anon_sym_static] = ACTIONS(3395), + [anon_sym_readonly] = ACTIONS(3395), + [anon_sym_get] = ACTIONS(3395), + [anon_sym_set] = ACTIONS(3395), + [anon_sym_declare] = ACTIONS(3395), + [anon_sym_public] = ACTIONS(3395), + [anon_sym_private] = ACTIONS(3395), + [anon_sym_protected] = ACTIONS(3395), + [anon_sym_override] = ACTIONS(3395), + [anon_sym_module] = ACTIONS(3395), + [anon_sym_any] = ACTIONS(3395), + [anon_sym_number] = ACTIONS(3395), + [anon_sym_boolean] = ACTIONS(3395), + [anon_sym_string] = ACTIONS(3395), + [anon_sym_symbol] = ACTIONS(3395), + [anon_sym_object] = ACTIONS(3395), + [anon_sym_abstract] = ACTIONS(3395), + [anon_sym_interface] = ACTIONS(3395), + [anon_sym_enum] = ACTIONS(3395), [sym_html_comment] = ACTIONS(5), }, - [1508] = { - [sym_comment] = STATE(1508), - [ts_builtin_sym_end] = ACTIONS(3605), - [sym_identifier] = ACTIONS(3325), - [anon_sym_export] = ACTIONS(3325), - [anon_sym_type] = ACTIONS(3325), - [anon_sym_namespace] = ACTIONS(3325), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_typeof] = ACTIONS(3325), - [anon_sym_import] = ACTIONS(3325), - [anon_sym_with] = ACTIONS(3325), - [anon_sym_var] = ACTIONS(3325), - [anon_sym_let] = ACTIONS(3325), - [anon_sym_const] = ACTIONS(3325), - [anon_sym_BANG] = ACTIONS(3325), - [anon_sym_else] = ACTIONS(3325), - [anon_sym_if] = ACTIONS(3325), - [anon_sym_switch] = ACTIONS(3325), - [anon_sym_for] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_await] = ACTIONS(3325), - [anon_sym_while] = ACTIONS(3325), - [anon_sym_do] = ACTIONS(3325), - [anon_sym_try] = ACTIONS(3325), - [anon_sym_break] = ACTIONS(3325), - [anon_sym_continue] = ACTIONS(3325), - [anon_sym_debugger] = ACTIONS(3325), - [anon_sym_return] = ACTIONS(3325), - [anon_sym_throw] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_yield] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_LTtemplate_GT] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(3325), - [anon_sym_SQUOTE] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_async] = ACTIONS(3325), - [anon_sym_function] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_using] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_SLASH] = ACTIONS(3325), - [anon_sym_LT] = ACTIONS(3325), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_void] = ACTIONS(3325), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_PLUS_PLUS] = ACTIONS(3325), - [anon_sym_DASH_DASH] = ACTIONS(3325), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3325), - [sym_number] = ACTIONS(3325), - [sym_private_property_identifier] = ACTIONS(3325), - [sym_this] = ACTIONS(3325), - [sym_super] = ACTIONS(3325), - [sym_true] = ACTIONS(3325), - [sym_false] = ACTIONS(3325), - [sym_null] = ACTIONS(3325), - [sym_undefined] = ACTIONS(3325), - [anon_sym_AT] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_readonly] = ACTIONS(3325), - [anon_sym_get] = ACTIONS(3325), - [anon_sym_set] = ACTIONS(3325), - [anon_sym_declare] = ACTIONS(3325), - [anon_sym_public] = ACTIONS(3325), - [anon_sym_private] = ACTIONS(3325), - [anon_sym_protected] = ACTIONS(3325), - [anon_sym_override] = ACTIONS(3325), - [anon_sym_module] = ACTIONS(3325), - [anon_sym_any] = ACTIONS(3325), - [anon_sym_number] = ACTIONS(3325), - [anon_sym_boolean] = ACTIONS(3325), - [anon_sym_string] = ACTIONS(3325), - [anon_sym_symbol] = ACTIONS(3325), - [anon_sym_object] = ACTIONS(3325), - [anon_sym_abstract] = ACTIONS(3325), - [anon_sym_interface] = ACTIONS(3325), - [anon_sym_enum] = ACTIONS(3325), + [1516] = { + [sym_comment] = STATE(1516), + [ts_builtin_sym_end] = ACTIONS(3563), + [sym_identifier] = ACTIONS(3309), + [anon_sym_export] = ACTIONS(3309), + [anon_sym_type] = ACTIONS(3309), + [anon_sym_namespace] = ACTIONS(3309), + [anon_sym_LBRACE] = ACTIONS(3309), + [anon_sym_RBRACE] = ACTIONS(3309), + [anon_sym_typeof] = ACTIONS(3309), + [anon_sym_import] = ACTIONS(3309), + [anon_sym_with] = ACTIONS(3309), + [anon_sym_var] = ACTIONS(3309), + [anon_sym_let] = ACTIONS(3309), + [anon_sym_const] = ACTIONS(3309), + [anon_sym_BANG] = ACTIONS(3309), + [anon_sym_if] = ACTIONS(3309), + [anon_sym_switch] = ACTIONS(3309), + [anon_sym_for] = ACTIONS(3309), + [anon_sym_LPAREN] = ACTIONS(3309), + [anon_sym_await] = ACTIONS(3309), + [anon_sym_while] = ACTIONS(3309), + [anon_sym_do] = ACTIONS(3309), + [anon_sym_try] = ACTIONS(3309), + [anon_sym_break] = ACTIONS(3309), + [anon_sym_continue] = ACTIONS(3309), + [anon_sym_debugger] = ACTIONS(3309), + [anon_sym_return] = ACTIONS(3309), + [anon_sym_throw] = ACTIONS(3309), + [anon_sym_SEMI] = ACTIONS(3309), + [anon_sym_yield] = ACTIONS(3309), + [anon_sym_LBRACK] = ACTIONS(3309), + [anon_sym_LTtemplate_GT] = ACTIONS(3309), + [anon_sym_DQUOTE] = ACTIONS(3309), + [anon_sym_SQUOTE] = ACTIONS(3309), + [anon_sym_class] = ACTIONS(3309), + [anon_sym_async] = ACTIONS(3309), + [anon_sym_function] = ACTIONS(3309), + [anon_sym_new] = ACTIONS(3309), + [anon_sym_using] = ACTIONS(3309), + [anon_sym_PLUS] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_SLASH] = ACTIONS(3309), + [anon_sym_LT] = ACTIONS(3309), + [anon_sym_TILDE] = ACTIONS(3309), + [anon_sym_void] = ACTIONS(3309), + [anon_sym_delete] = ACTIONS(3309), + [anon_sym_PLUS_PLUS] = ACTIONS(3309), + [anon_sym_DASH_DASH] = ACTIONS(3309), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3309), + [sym_number] = ACTIONS(3309), + [sym_private_property_identifier] = ACTIONS(3309), + [sym_this] = ACTIONS(3309), + [sym_super] = ACTIONS(3309), + [sym_true] = ACTIONS(3309), + [sym_false] = ACTIONS(3309), + [sym_null] = ACTIONS(3309), + [sym_undefined] = ACTIONS(3309), + [anon_sym_AT] = ACTIONS(3309), + [anon_sym_static] = ACTIONS(3309), + [anon_sym_readonly] = ACTIONS(3309), + [anon_sym_get] = ACTIONS(3309), + [anon_sym_set] = ACTIONS(3309), + [anon_sym_declare] = ACTIONS(3309), + [anon_sym_public] = ACTIONS(3309), + [anon_sym_private] = ACTIONS(3309), + [anon_sym_protected] = ACTIONS(3309), + [anon_sym_override] = ACTIONS(3309), + [anon_sym_module] = ACTIONS(3309), + [anon_sym_any] = ACTIONS(3309), + [anon_sym_number] = ACTIONS(3309), + [anon_sym_boolean] = ACTIONS(3309), + [anon_sym_string] = ACTIONS(3309), + [anon_sym_symbol] = ACTIONS(3309), + [anon_sym_object] = ACTIONS(3309), + [anon_sym_abstract] = ACTIONS(3309), + [anon_sym_interface] = ACTIONS(3309), + [anon_sym_enum] = ACTIONS(3309), [sym_html_comment] = ACTIONS(5), }, - [1509] = { - [sym_comment] = STATE(1509), - [sym_identifier] = ACTIONS(3293), - [anon_sym_export] = ACTIONS(3293), - [anon_sym_default] = ACTIONS(3293), - [anon_sym_type] = ACTIONS(3293), - [anon_sym_namespace] = ACTIONS(3293), - [anon_sym_LBRACE] = ACTIONS(3293), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_typeof] = ACTIONS(3293), - [anon_sym_import] = ACTIONS(3293), - [anon_sym_with] = ACTIONS(3293), - [anon_sym_var] = ACTIONS(3293), - [anon_sym_let] = ACTIONS(3293), - [anon_sym_const] = ACTIONS(3293), - [anon_sym_BANG] = ACTIONS(3293), - [anon_sym_if] = ACTIONS(3293), - [anon_sym_switch] = ACTIONS(3293), - [anon_sym_for] = ACTIONS(3293), - [anon_sym_LPAREN] = ACTIONS(3293), - [anon_sym_await] = ACTIONS(3293), - [anon_sym_while] = ACTIONS(3293), - [anon_sym_do] = ACTIONS(3293), - [anon_sym_try] = ACTIONS(3293), - [anon_sym_break] = ACTIONS(3293), - [anon_sym_continue] = ACTIONS(3293), - [anon_sym_debugger] = ACTIONS(3293), - [anon_sym_return] = ACTIONS(3293), - [anon_sym_throw] = ACTIONS(3293), - [anon_sym_SEMI] = ACTIONS(3293), - [anon_sym_case] = ACTIONS(3293), - [anon_sym_yield] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_LTtemplate_GT] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_SQUOTE] = ACTIONS(3293), - [anon_sym_class] = ACTIONS(3293), - [anon_sym_async] = ACTIONS(3293), - [anon_sym_function] = ACTIONS(3293), - [anon_sym_new] = ACTIONS(3293), - [anon_sym_using] = ACTIONS(3293), - [anon_sym_PLUS] = ACTIONS(3293), - [anon_sym_DASH] = ACTIONS(3293), - [anon_sym_SLASH] = ACTIONS(3293), - [anon_sym_LT] = ACTIONS(3293), - [anon_sym_TILDE] = ACTIONS(3293), - [anon_sym_void] = ACTIONS(3293), - [anon_sym_delete] = ACTIONS(3293), - [anon_sym_PLUS_PLUS] = ACTIONS(3293), - [anon_sym_DASH_DASH] = ACTIONS(3293), + [1517] = { + [sym_comment] = STATE(1517), + [ts_builtin_sym_end] = ACTIONS(3509), + [sym_identifier] = ACTIONS(3387), + [anon_sym_export] = ACTIONS(3387), + [anon_sym_type] = ACTIONS(3387), + [anon_sym_namespace] = ACTIONS(3387), + [anon_sym_LBRACE] = ACTIONS(3387), + [anon_sym_RBRACE] = ACTIONS(3387), + [anon_sym_typeof] = ACTIONS(3387), + [anon_sym_import] = ACTIONS(3387), + [anon_sym_with] = ACTIONS(3387), + [anon_sym_var] = ACTIONS(3387), + [anon_sym_let] = ACTIONS(3387), + [anon_sym_const] = ACTIONS(3387), + [anon_sym_BANG] = ACTIONS(3387), + [anon_sym_if] = ACTIONS(3387), + [anon_sym_switch] = ACTIONS(3387), + [anon_sym_for] = ACTIONS(3387), + [anon_sym_LPAREN] = ACTIONS(3387), + [anon_sym_await] = ACTIONS(3387), + [anon_sym_while] = ACTIONS(3387), + [anon_sym_do] = ACTIONS(3387), + [anon_sym_try] = ACTIONS(3387), + [anon_sym_break] = ACTIONS(3387), + [anon_sym_continue] = ACTIONS(3387), + [anon_sym_debugger] = ACTIONS(3387), + [anon_sym_return] = ACTIONS(3387), + [anon_sym_throw] = ACTIONS(3387), + [anon_sym_SEMI] = ACTIONS(3387), + [anon_sym_yield] = ACTIONS(3387), + [anon_sym_LBRACK] = ACTIONS(3387), + [anon_sym_LTtemplate_GT] = ACTIONS(3387), + [anon_sym_DQUOTE] = ACTIONS(3387), + [anon_sym_SQUOTE] = ACTIONS(3387), + [anon_sym_class] = ACTIONS(3387), + [anon_sym_async] = ACTIONS(3387), + [anon_sym_function] = ACTIONS(3387), + [anon_sym_new] = ACTIONS(3387), + [anon_sym_using] = ACTIONS(3387), + [anon_sym_PLUS] = ACTIONS(3387), + [anon_sym_DASH] = ACTIONS(3387), + [anon_sym_SLASH] = ACTIONS(3387), + [anon_sym_LT] = ACTIONS(3387), + [anon_sym_TILDE] = ACTIONS(3387), + [anon_sym_void] = ACTIONS(3387), + [anon_sym_delete] = ACTIONS(3387), + [anon_sym_PLUS_PLUS] = ACTIONS(3387), + [anon_sym_DASH_DASH] = ACTIONS(3387), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3293), - [sym_number] = ACTIONS(3293), - [sym_private_property_identifier] = ACTIONS(3293), - [sym_this] = ACTIONS(3293), - [sym_super] = ACTIONS(3293), - [sym_true] = ACTIONS(3293), - [sym_false] = ACTIONS(3293), - [sym_null] = ACTIONS(3293), - [sym_undefined] = ACTIONS(3293), - [anon_sym_AT] = ACTIONS(3293), - [anon_sym_static] = ACTIONS(3293), - [anon_sym_readonly] = ACTIONS(3293), - [anon_sym_get] = ACTIONS(3293), - [anon_sym_set] = ACTIONS(3293), - [anon_sym_declare] = ACTIONS(3293), - [anon_sym_public] = ACTIONS(3293), - [anon_sym_private] = ACTIONS(3293), - [anon_sym_protected] = ACTIONS(3293), - [anon_sym_override] = ACTIONS(3293), - [anon_sym_module] = ACTIONS(3293), - [anon_sym_any] = ACTIONS(3293), - [anon_sym_number] = ACTIONS(3293), - [anon_sym_boolean] = ACTIONS(3293), - [anon_sym_string] = ACTIONS(3293), - [anon_sym_symbol] = ACTIONS(3293), - [anon_sym_object] = ACTIONS(3293), - [anon_sym_abstract] = ACTIONS(3293), - [anon_sym_interface] = ACTIONS(3293), - [anon_sym_enum] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3387), + [sym_number] = ACTIONS(3387), + [sym_private_property_identifier] = ACTIONS(3387), + [sym_this] = ACTIONS(3387), + [sym_super] = ACTIONS(3387), + [sym_true] = ACTIONS(3387), + [sym_false] = ACTIONS(3387), + [sym_null] = ACTIONS(3387), + [sym_undefined] = ACTIONS(3387), + [anon_sym_AT] = ACTIONS(3387), + [anon_sym_static] = ACTIONS(3387), + [anon_sym_readonly] = ACTIONS(3387), + [anon_sym_get] = ACTIONS(3387), + [anon_sym_set] = ACTIONS(3387), + [anon_sym_declare] = ACTIONS(3387), + [anon_sym_public] = ACTIONS(3387), + [anon_sym_private] = ACTIONS(3387), + [anon_sym_protected] = ACTIONS(3387), + [anon_sym_override] = ACTIONS(3387), + [anon_sym_module] = ACTIONS(3387), + [anon_sym_any] = ACTIONS(3387), + [anon_sym_number] = ACTIONS(3387), + [anon_sym_boolean] = ACTIONS(3387), + [anon_sym_string] = ACTIONS(3387), + [anon_sym_symbol] = ACTIONS(3387), + [anon_sym_object] = ACTIONS(3387), + [anon_sym_abstract] = ACTIONS(3387), + [anon_sym_interface] = ACTIONS(3387), + [anon_sym_enum] = ACTIONS(3387), [sym_html_comment] = ACTIONS(5), }, - [1510] = { - [sym_comment] = STATE(1510), - [ts_builtin_sym_end] = ACTIONS(3607), - [sym_identifier] = ACTIONS(3323), - [anon_sym_export] = ACTIONS(3323), - [anon_sym_type] = ACTIONS(3323), - [anon_sym_namespace] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_RBRACE] = ACTIONS(3323), - [anon_sym_typeof] = ACTIONS(3323), - [anon_sym_import] = ACTIONS(3323), - [anon_sym_with] = ACTIONS(3323), - [anon_sym_var] = ACTIONS(3323), - [anon_sym_let] = ACTIONS(3323), - [anon_sym_const] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_else] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_switch] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_await] = ACTIONS(3323), - [anon_sym_while] = ACTIONS(3323), - [anon_sym_do] = ACTIONS(3323), - [anon_sym_try] = ACTIONS(3323), - [anon_sym_break] = ACTIONS(3323), - [anon_sym_continue] = ACTIONS(3323), - [anon_sym_debugger] = ACTIONS(3323), - [anon_sym_return] = ACTIONS(3323), - [anon_sym_throw] = ACTIONS(3323), - [anon_sym_SEMI] = ACTIONS(3323), - [anon_sym_yield] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3323), - [anon_sym_LTtemplate_GT] = ACTIONS(3323), - [anon_sym_DQUOTE] = ACTIONS(3323), - [anon_sym_SQUOTE] = ACTIONS(3323), - [anon_sym_class] = ACTIONS(3323), - [anon_sym_async] = ACTIONS(3323), - [anon_sym_function] = ACTIONS(3323), - [anon_sym_new] = ACTIONS(3323), - [anon_sym_using] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_void] = ACTIONS(3323), - [anon_sym_delete] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3323), - [anon_sym_DASH_DASH] = ACTIONS(3323), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3323), - [sym_number] = ACTIONS(3323), - [sym_private_property_identifier] = ACTIONS(3323), - [sym_this] = ACTIONS(3323), - [sym_super] = ACTIONS(3323), - [sym_true] = ACTIONS(3323), - [sym_false] = ACTIONS(3323), - [sym_null] = ACTIONS(3323), - [sym_undefined] = ACTIONS(3323), - [anon_sym_AT] = ACTIONS(3323), - [anon_sym_static] = ACTIONS(3323), - [anon_sym_readonly] = ACTIONS(3323), - [anon_sym_get] = ACTIONS(3323), - [anon_sym_set] = ACTIONS(3323), - [anon_sym_declare] = ACTIONS(3323), - [anon_sym_public] = ACTIONS(3323), - [anon_sym_private] = ACTIONS(3323), - [anon_sym_protected] = ACTIONS(3323), - [anon_sym_override] = ACTIONS(3323), - [anon_sym_module] = ACTIONS(3323), - [anon_sym_any] = ACTIONS(3323), - [anon_sym_number] = ACTIONS(3323), - [anon_sym_boolean] = ACTIONS(3323), - [anon_sym_string] = ACTIONS(3323), - [anon_sym_symbol] = ACTIONS(3323), - [anon_sym_object] = ACTIONS(3323), - [anon_sym_abstract] = ACTIONS(3323), - [anon_sym_interface] = ACTIONS(3323), - [anon_sym_enum] = ACTIONS(3323), + [1518] = { + [sym_comment] = STATE(1518), + [ts_builtin_sym_end] = ACTIONS(3565), + [sym_identifier] = ACTIONS(3321), + [anon_sym_export] = ACTIONS(3321), + [anon_sym_type] = ACTIONS(3321), + [anon_sym_namespace] = ACTIONS(3321), + [anon_sym_LBRACE] = ACTIONS(3321), + [anon_sym_RBRACE] = ACTIONS(3321), + [anon_sym_typeof] = ACTIONS(3321), + [anon_sym_import] = ACTIONS(3321), + [anon_sym_with] = ACTIONS(3321), + [anon_sym_var] = ACTIONS(3321), + [anon_sym_let] = ACTIONS(3321), + [anon_sym_const] = ACTIONS(3321), + [anon_sym_BANG] = ACTIONS(3321), + [anon_sym_if] = ACTIONS(3321), + [anon_sym_switch] = ACTIONS(3321), + [anon_sym_for] = ACTIONS(3321), + [anon_sym_LPAREN] = ACTIONS(3321), + [anon_sym_await] = ACTIONS(3321), + [anon_sym_while] = ACTIONS(3321), + [anon_sym_do] = ACTIONS(3321), + [anon_sym_try] = ACTIONS(3321), + [anon_sym_break] = ACTIONS(3321), + [anon_sym_continue] = ACTIONS(3321), + [anon_sym_debugger] = ACTIONS(3321), + [anon_sym_return] = ACTIONS(3321), + [anon_sym_throw] = ACTIONS(3321), + [anon_sym_SEMI] = ACTIONS(3321), + [anon_sym_yield] = ACTIONS(3321), + [anon_sym_LBRACK] = ACTIONS(3321), + [anon_sym_LTtemplate_GT] = ACTIONS(3321), + [anon_sym_DQUOTE] = ACTIONS(3321), + [anon_sym_SQUOTE] = ACTIONS(3321), + [anon_sym_class] = ACTIONS(3321), + [anon_sym_async] = ACTIONS(3321), + [anon_sym_function] = ACTIONS(3321), + [anon_sym_new] = ACTIONS(3321), + [anon_sym_using] = ACTIONS(3321), + [anon_sym_PLUS] = ACTIONS(3321), + [anon_sym_DASH] = ACTIONS(3321), + [anon_sym_SLASH] = ACTIONS(3321), + [anon_sym_LT] = ACTIONS(3321), + [anon_sym_TILDE] = ACTIONS(3321), + [anon_sym_void] = ACTIONS(3321), + [anon_sym_delete] = ACTIONS(3321), + [anon_sym_PLUS_PLUS] = ACTIONS(3321), + [anon_sym_DASH_DASH] = ACTIONS(3321), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3321), + [sym_number] = ACTIONS(3321), + [sym_private_property_identifier] = ACTIONS(3321), + [sym_this] = ACTIONS(3321), + [sym_super] = ACTIONS(3321), + [sym_true] = ACTIONS(3321), + [sym_false] = ACTIONS(3321), + [sym_null] = ACTIONS(3321), + [sym_undefined] = ACTIONS(3321), + [anon_sym_AT] = ACTIONS(3321), + [anon_sym_static] = ACTIONS(3321), + [anon_sym_readonly] = ACTIONS(3321), + [anon_sym_get] = ACTIONS(3321), + [anon_sym_set] = ACTIONS(3321), + [anon_sym_declare] = ACTIONS(3321), + [anon_sym_public] = ACTIONS(3321), + [anon_sym_private] = ACTIONS(3321), + [anon_sym_protected] = ACTIONS(3321), + [anon_sym_override] = ACTIONS(3321), + [anon_sym_module] = ACTIONS(3321), + [anon_sym_any] = ACTIONS(3321), + [anon_sym_number] = ACTIONS(3321), + [anon_sym_boolean] = ACTIONS(3321), + [anon_sym_string] = ACTIONS(3321), + [anon_sym_symbol] = ACTIONS(3321), + [anon_sym_object] = ACTIONS(3321), + [anon_sym_abstract] = ACTIONS(3321), + [anon_sym_interface] = ACTIONS(3321), + [anon_sym_enum] = ACTIONS(3321), [sym_html_comment] = ACTIONS(5), }, - [1511] = { - [sym_comment] = STATE(1511), - [ts_builtin_sym_end] = ACTIONS(2162), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), + [1519] = { + [sym_comment] = STATE(1519), + [ts_builtin_sym_end] = ACTIONS(3515), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1512] = { - [sym_comment] = STATE(1512), - [ts_builtin_sym_end] = ACTIONS(3609), - [sym_identifier] = ACTIONS(3263), - [anon_sym_export] = ACTIONS(3263), - [anon_sym_type] = ACTIONS(3263), - [anon_sym_namespace] = ACTIONS(3263), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_RBRACE] = ACTIONS(3263), - [anon_sym_typeof] = ACTIONS(3263), - [anon_sym_import] = ACTIONS(3263), - [anon_sym_with] = ACTIONS(3263), - [anon_sym_var] = ACTIONS(3263), - [anon_sym_let] = ACTIONS(3263), - [anon_sym_const] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_else] = ACTIONS(3263), - [anon_sym_if] = ACTIONS(3263), - [anon_sym_switch] = ACTIONS(3263), - [anon_sym_for] = ACTIONS(3263), - [anon_sym_LPAREN] = ACTIONS(3263), - [anon_sym_await] = ACTIONS(3263), - [anon_sym_while] = ACTIONS(3263), - [anon_sym_do] = ACTIONS(3263), - [anon_sym_try] = ACTIONS(3263), - [anon_sym_break] = ACTIONS(3263), - [anon_sym_continue] = ACTIONS(3263), - [anon_sym_debugger] = ACTIONS(3263), - [anon_sym_return] = ACTIONS(3263), - [anon_sym_throw] = ACTIONS(3263), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym_yield] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3263), - [anon_sym_LTtemplate_GT] = ACTIONS(3263), - [anon_sym_DQUOTE] = ACTIONS(3263), - [anon_sym_SQUOTE] = ACTIONS(3263), - [anon_sym_class] = ACTIONS(3263), - [anon_sym_async] = ACTIONS(3263), - [anon_sym_function] = ACTIONS(3263), - [anon_sym_new] = ACTIONS(3263), - [anon_sym_using] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(3263), - [anon_sym_SLASH] = ACTIONS(3263), - [anon_sym_LT] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_void] = ACTIONS(3263), - [anon_sym_delete] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3263), - [sym_number] = ACTIONS(3263), - [sym_private_property_identifier] = ACTIONS(3263), - [sym_this] = ACTIONS(3263), - [sym_super] = ACTIONS(3263), - [sym_true] = ACTIONS(3263), - [sym_false] = ACTIONS(3263), - [sym_null] = ACTIONS(3263), - [sym_undefined] = ACTIONS(3263), - [anon_sym_AT] = ACTIONS(3263), - [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_abstract] = ACTIONS(3263), - [anon_sym_interface] = ACTIONS(3263), - [anon_sym_enum] = ACTIONS(3263), + [1520] = { + [sym_comment] = STATE(1520), + [ts_builtin_sym_end] = ACTIONS(3617), + [sym_identifier] = ACTIONS(3243), + [anon_sym_export] = ACTIONS(3243), + [anon_sym_type] = ACTIONS(3243), + [anon_sym_namespace] = ACTIONS(3243), + [anon_sym_LBRACE] = ACTIONS(3243), + [anon_sym_RBRACE] = ACTIONS(3243), + [anon_sym_typeof] = ACTIONS(3243), + [anon_sym_import] = ACTIONS(3243), + [anon_sym_with] = ACTIONS(3243), + [anon_sym_var] = ACTIONS(3243), + [anon_sym_let] = ACTIONS(3243), + [anon_sym_const] = ACTIONS(3243), + [anon_sym_BANG] = ACTIONS(3243), + [anon_sym_if] = ACTIONS(3243), + [anon_sym_switch] = ACTIONS(3243), + [anon_sym_for] = ACTIONS(3243), + [anon_sym_LPAREN] = ACTIONS(3243), + [anon_sym_await] = ACTIONS(3243), + [anon_sym_while] = ACTIONS(3243), + [anon_sym_do] = ACTIONS(3243), + [anon_sym_try] = ACTIONS(3243), + [anon_sym_break] = ACTIONS(3243), + [anon_sym_continue] = ACTIONS(3243), + [anon_sym_debugger] = ACTIONS(3243), + [anon_sym_return] = ACTIONS(3243), + [anon_sym_throw] = ACTIONS(3243), + [anon_sym_SEMI] = ACTIONS(3243), + [anon_sym_yield] = ACTIONS(3243), + [anon_sym_LBRACK] = ACTIONS(3243), + [anon_sym_LTtemplate_GT] = ACTIONS(3243), + [anon_sym_DQUOTE] = ACTIONS(3243), + [anon_sym_SQUOTE] = ACTIONS(3243), + [anon_sym_class] = ACTIONS(3243), + [anon_sym_async] = ACTIONS(3243), + [anon_sym_function] = ACTIONS(3243), + [anon_sym_new] = ACTIONS(3243), + [anon_sym_using] = ACTIONS(3243), + [anon_sym_PLUS] = ACTIONS(3243), + [anon_sym_DASH] = ACTIONS(3243), + [anon_sym_SLASH] = ACTIONS(3243), + [anon_sym_LT] = ACTIONS(3243), + [anon_sym_TILDE] = ACTIONS(3243), + [anon_sym_void] = ACTIONS(3243), + [anon_sym_delete] = ACTIONS(3243), + [anon_sym_PLUS_PLUS] = ACTIONS(3243), + [anon_sym_DASH_DASH] = ACTIONS(3243), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3243), + [sym_number] = ACTIONS(3243), + [sym_private_property_identifier] = ACTIONS(3243), + [sym_this] = ACTIONS(3243), + [sym_super] = ACTIONS(3243), + [sym_true] = ACTIONS(3243), + [sym_false] = ACTIONS(3243), + [sym_null] = ACTIONS(3243), + [sym_undefined] = ACTIONS(3243), + [anon_sym_AT] = ACTIONS(3243), + [anon_sym_static] = ACTIONS(3243), + [anon_sym_readonly] = ACTIONS(3243), + [anon_sym_get] = ACTIONS(3243), + [anon_sym_set] = ACTIONS(3243), + [anon_sym_declare] = ACTIONS(3243), + [anon_sym_public] = ACTIONS(3243), + [anon_sym_private] = ACTIONS(3243), + [anon_sym_protected] = ACTIONS(3243), + [anon_sym_override] = ACTIONS(3243), + [anon_sym_module] = ACTIONS(3243), + [anon_sym_any] = ACTIONS(3243), + [anon_sym_number] = ACTIONS(3243), + [anon_sym_boolean] = ACTIONS(3243), + [anon_sym_string] = ACTIONS(3243), + [anon_sym_symbol] = ACTIONS(3243), + [anon_sym_object] = ACTIONS(3243), + [anon_sym_abstract] = ACTIONS(3243), + [anon_sym_interface] = ACTIONS(3243), + [anon_sym_enum] = ACTIONS(3243), [sym_html_comment] = ACTIONS(5), }, - [1513] = { - [sym_comment] = STATE(1513), + [1521] = { + [sym_comment] = STATE(1521), [ts_builtin_sym_end] = ACTIONS(3611), - [sym_identifier] = ACTIONS(3293), - [anon_sym_export] = ACTIONS(3293), - [anon_sym_type] = ACTIONS(3293), - [anon_sym_namespace] = ACTIONS(3293), - [anon_sym_LBRACE] = ACTIONS(3293), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_typeof] = ACTIONS(3293), - [anon_sym_import] = ACTIONS(3293), - [anon_sym_with] = ACTIONS(3293), - [anon_sym_var] = ACTIONS(3293), - [anon_sym_let] = ACTIONS(3293), - [anon_sym_const] = ACTIONS(3293), - [anon_sym_BANG] = ACTIONS(3293), - [anon_sym_else] = ACTIONS(3293), - [anon_sym_if] = ACTIONS(3293), - [anon_sym_switch] = ACTIONS(3293), - [anon_sym_for] = ACTIONS(3293), - [anon_sym_LPAREN] = ACTIONS(3293), - [anon_sym_await] = ACTIONS(3293), - [anon_sym_while] = ACTIONS(3293), - [anon_sym_do] = ACTIONS(3293), - [anon_sym_try] = ACTIONS(3293), - [anon_sym_break] = ACTIONS(3293), - [anon_sym_continue] = ACTIONS(3293), - [anon_sym_debugger] = ACTIONS(3293), - [anon_sym_return] = ACTIONS(3293), - [anon_sym_throw] = ACTIONS(3293), - [anon_sym_SEMI] = ACTIONS(3293), - [anon_sym_yield] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_LTtemplate_GT] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_SQUOTE] = ACTIONS(3293), - [anon_sym_class] = ACTIONS(3293), - [anon_sym_async] = ACTIONS(3293), - [anon_sym_function] = ACTIONS(3293), - [anon_sym_new] = ACTIONS(3293), - [anon_sym_using] = ACTIONS(3293), - [anon_sym_PLUS] = ACTIONS(3293), - [anon_sym_DASH] = ACTIONS(3293), - [anon_sym_SLASH] = ACTIONS(3293), - [anon_sym_LT] = ACTIONS(3293), - [anon_sym_TILDE] = ACTIONS(3293), - [anon_sym_void] = ACTIONS(3293), - [anon_sym_delete] = ACTIONS(3293), - [anon_sym_PLUS_PLUS] = ACTIONS(3293), - [anon_sym_DASH_DASH] = ACTIONS(3293), + [sym_identifier] = ACTIONS(3235), + [anon_sym_export] = ACTIONS(3235), + [anon_sym_type] = ACTIONS(3235), + [anon_sym_namespace] = ACTIONS(3235), + [anon_sym_LBRACE] = ACTIONS(3235), + [anon_sym_RBRACE] = ACTIONS(3235), + [anon_sym_typeof] = ACTIONS(3235), + [anon_sym_import] = ACTIONS(3235), + [anon_sym_with] = ACTIONS(3235), + [anon_sym_var] = ACTIONS(3235), + [anon_sym_let] = ACTIONS(3235), + [anon_sym_const] = ACTIONS(3235), + [anon_sym_BANG] = ACTIONS(3235), + [anon_sym_if] = ACTIONS(3235), + [anon_sym_switch] = ACTIONS(3235), + [anon_sym_for] = ACTIONS(3235), + [anon_sym_LPAREN] = ACTIONS(3235), + [anon_sym_await] = ACTIONS(3235), + [anon_sym_while] = ACTIONS(3235), + [anon_sym_do] = ACTIONS(3235), + [anon_sym_try] = ACTIONS(3235), + [anon_sym_break] = ACTIONS(3235), + [anon_sym_continue] = ACTIONS(3235), + [anon_sym_debugger] = ACTIONS(3235), + [anon_sym_return] = ACTIONS(3235), + [anon_sym_throw] = ACTIONS(3235), + [anon_sym_SEMI] = ACTIONS(3235), + [anon_sym_yield] = ACTIONS(3235), + [anon_sym_LBRACK] = ACTIONS(3235), + [anon_sym_LTtemplate_GT] = ACTIONS(3235), + [anon_sym_DQUOTE] = ACTIONS(3235), + [anon_sym_SQUOTE] = ACTIONS(3235), + [anon_sym_class] = ACTIONS(3235), + [anon_sym_async] = ACTIONS(3235), + [anon_sym_function] = ACTIONS(3235), + [anon_sym_new] = ACTIONS(3235), + [anon_sym_using] = ACTIONS(3235), + [anon_sym_PLUS] = ACTIONS(3235), + [anon_sym_DASH] = ACTIONS(3235), + [anon_sym_SLASH] = ACTIONS(3235), + [anon_sym_LT] = ACTIONS(3235), + [anon_sym_TILDE] = ACTIONS(3235), + [anon_sym_void] = ACTIONS(3235), + [anon_sym_delete] = ACTIONS(3235), + [anon_sym_PLUS_PLUS] = ACTIONS(3235), + [anon_sym_DASH_DASH] = ACTIONS(3235), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3293), - [sym_number] = ACTIONS(3293), - [sym_private_property_identifier] = ACTIONS(3293), - [sym_this] = ACTIONS(3293), - [sym_super] = ACTIONS(3293), - [sym_true] = ACTIONS(3293), - [sym_false] = ACTIONS(3293), - [sym_null] = ACTIONS(3293), - [sym_undefined] = ACTIONS(3293), - [anon_sym_AT] = ACTIONS(3293), - [anon_sym_static] = ACTIONS(3293), - [anon_sym_readonly] = ACTIONS(3293), - [anon_sym_get] = ACTIONS(3293), - [anon_sym_set] = ACTIONS(3293), - [anon_sym_declare] = ACTIONS(3293), - [anon_sym_public] = ACTIONS(3293), - [anon_sym_private] = ACTIONS(3293), - [anon_sym_protected] = ACTIONS(3293), - [anon_sym_override] = ACTIONS(3293), - [anon_sym_module] = ACTIONS(3293), - [anon_sym_any] = ACTIONS(3293), - [anon_sym_number] = ACTIONS(3293), - [anon_sym_boolean] = ACTIONS(3293), - [anon_sym_string] = ACTIONS(3293), - [anon_sym_symbol] = ACTIONS(3293), - [anon_sym_object] = ACTIONS(3293), - [anon_sym_abstract] = ACTIONS(3293), - [anon_sym_interface] = ACTIONS(3293), - [anon_sym_enum] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3235), + [sym_number] = ACTIONS(3235), + [sym_private_property_identifier] = ACTIONS(3235), + [sym_this] = ACTIONS(3235), + [sym_super] = ACTIONS(3235), + [sym_true] = ACTIONS(3235), + [sym_false] = ACTIONS(3235), + [sym_null] = ACTIONS(3235), + [sym_undefined] = ACTIONS(3235), + [anon_sym_AT] = ACTIONS(3235), + [anon_sym_static] = ACTIONS(3235), + [anon_sym_readonly] = ACTIONS(3235), + [anon_sym_get] = ACTIONS(3235), + [anon_sym_set] = ACTIONS(3235), + [anon_sym_declare] = ACTIONS(3235), + [anon_sym_public] = ACTIONS(3235), + [anon_sym_private] = ACTIONS(3235), + [anon_sym_protected] = ACTIONS(3235), + [anon_sym_override] = ACTIONS(3235), + [anon_sym_module] = ACTIONS(3235), + [anon_sym_any] = ACTIONS(3235), + [anon_sym_number] = ACTIONS(3235), + [anon_sym_boolean] = ACTIONS(3235), + [anon_sym_string] = ACTIONS(3235), + [anon_sym_symbol] = ACTIONS(3235), + [anon_sym_object] = ACTIONS(3235), + [anon_sym_abstract] = ACTIONS(3235), + [anon_sym_interface] = ACTIONS(3235), + [anon_sym_enum] = ACTIONS(3235), [sym_html_comment] = ACTIONS(5), }, - [1514] = { - [sym_comment] = STATE(1514), - [ts_builtin_sym_end] = ACTIONS(3613), - [sym_identifier] = ACTIONS(3227), - [anon_sym_export] = ACTIONS(3227), - [anon_sym_type] = ACTIONS(3227), - [anon_sym_namespace] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_RBRACE] = ACTIONS(3227), - [anon_sym_typeof] = ACTIONS(3227), - [anon_sym_import] = ACTIONS(3227), - [anon_sym_with] = ACTIONS(3227), - [anon_sym_var] = ACTIONS(3227), - [anon_sym_let] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_else] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_switch] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_await] = ACTIONS(3227), - [anon_sym_while] = ACTIONS(3227), - [anon_sym_do] = ACTIONS(3227), - [anon_sym_try] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_debugger] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_throw] = ACTIONS(3227), - [anon_sym_SEMI] = ACTIONS(3227), - [anon_sym_yield] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_LTtemplate_GT] = ACTIONS(3227), - [anon_sym_DQUOTE] = ACTIONS(3227), - [anon_sym_SQUOTE] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_async] = ACTIONS(3227), - [anon_sym_function] = ACTIONS(3227), - [anon_sym_new] = ACTIONS(3227), - [anon_sym_using] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_void] = ACTIONS(3227), - [anon_sym_delete] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), + [1522] = { + [sym_comment] = STATE(1522), + [ts_builtin_sym_end] = ACTIONS(3609), + [sym_identifier] = ACTIONS(3221), + [anon_sym_export] = ACTIONS(3221), + [anon_sym_type] = ACTIONS(3221), + [anon_sym_namespace] = ACTIONS(3221), + [anon_sym_LBRACE] = ACTIONS(3221), + [anon_sym_RBRACE] = ACTIONS(3221), + [anon_sym_typeof] = ACTIONS(3221), + [anon_sym_import] = ACTIONS(3221), + [anon_sym_with] = ACTIONS(3221), + [anon_sym_var] = ACTIONS(3221), + [anon_sym_let] = ACTIONS(3221), + [anon_sym_const] = ACTIONS(3221), + [anon_sym_BANG] = ACTIONS(3221), + [anon_sym_if] = ACTIONS(3221), + [anon_sym_switch] = ACTIONS(3221), + [anon_sym_for] = ACTIONS(3221), + [anon_sym_LPAREN] = ACTIONS(3221), + [anon_sym_await] = ACTIONS(3221), + [anon_sym_while] = ACTIONS(3221), + [anon_sym_do] = ACTIONS(3221), + [anon_sym_try] = ACTIONS(3221), + [anon_sym_break] = ACTIONS(3221), + [anon_sym_continue] = ACTIONS(3221), + [anon_sym_debugger] = ACTIONS(3221), + [anon_sym_return] = ACTIONS(3221), + [anon_sym_throw] = ACTIONS(3221), + [anon_sym_SEMI] = ACTIONS(3221), + [anon_sym_yield] = ACTIONS(3221), + [anon_sym_LBRACK] = ACTIONS(3221), + [anon_sym_LTtemplate_GT] = ACTIONS(3221), + [anon_sym_DQUOTE] = ACTIONS(3221), + [anon_sym_SQUOTE] = ACTIONS(3221), + [anon_sym_class] = ACTIONS(3221), + [anon_sym_async] = ACTIONS(3221), + [anon_sym_function] = ACTIONS(3221), + [anon_sym_new] = ACTIONS(3221), + [anon_sym_using] = ACTIONS(3221), + [anon_sym_PLUS] = ACTIONS(3221), + [anon_sym_DASH] = ACTIONS(3221), + [anon_sym_SLASH] = ACTIONS(3221), + [anon_sym_LT] = ACTIONS(3221), + [anon_sym_TILDE] = ACTIONS(3221), + [anon_sym_void] = ACTIONS(3221), + [anon_sym_delete] = ACTIONS(3221), + [anon_sym_PLUS_PLUS] = ACTIONS(3221), + [anon_sym_DASH_DASH] = ACTIONS(3221), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3227), - [sym_number] = ACTIONS(3227), - [sym_private_property_identifier] = ACTIONS(3227), - [sym_this] = ACTIONS(3227), - [sym_super] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_null] = ACTIONS(3227), - [sym_undefined] = ACTIONS(3227), - [anon_sym_AT] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_readonly] = ACTIONS(3227), - [anon_sym_get] = ACTIONS(3227), - [anon_sym_set] = ACTIONS(3227), - [anon_sym_declare] = ACTIONS(3227), - [anon_sym_public] = ACTIONS(3227), - [anon_sym_private] = ACTIONS(3227), - [anon_sym_protected] = ACTIONS(3227), - [anon_sym_override] = ACTIONS(3227), - [anon_sym_module] = ACTIONS(3227), - [anon_sym_any] = ACTIONS(3227), - [anon_sym_number] = ACTIONS(3227), - [anon_sym_boolean] = ACTIONS(3227), - [anon_sym_string] = ACTIONS(3227), - [anon_sym_symbol] = ACTIONS(3227), - [anon_sym_object] = ACTIONS(3227), - [anon_sym_abstract] = ACTIONS(3227), - [anon_sym_interface] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), - [sym_html_comment] = ACTIONS(5), - }, - [1515] = { - [sym_comment] = STATE(1515), - [ts_builtin_sym_end] = ACTIONS(2264), - [sym_identifier] = ACTIONS(2262), - [anon_sym_export] = ACTIONS(2262), - [anon_sym_type] = ACTIONS(2262), - [anon_sym_namespace] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_import] = ACTIONS(2262), - [anon_sym_with] = ACTIONS(2262), - [anon_sym_var] = ACTIONS(2262), - [anon_sym_let] = ACTIONS(2262), - [anon_sym_const] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_if] = ACTIONS(2262), - [anon_sym_switch] = ACTIONS(2262), - [anon_sym_for] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_await] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2262), - [anon_sym_do] = ACTIONS(2262), - [anon_sym_try] = ACTIONS(2262), - [anon_sym_break] = ACTIONS(2262), - [anon_sym_continue] = ACTIONS(2262), - [anon_sym_debugger] = ACTIONS(2262), - [anon_sym_return] = ACTIONS(2262), - [anon_sym_throw] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_yield] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_LTtemplate_GT] = ACTIONS(2262), - [anon_sym_DQUOTE] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(2262), - [anon_sym_class] = ACTIONS(2262), - [anon_sym_async] = ACTIONS(2262), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_new] = ACTIONS(2262), - [anon_sym_using] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_SLASH] = ACTIONS(2262), - [anon_sym_LT] = ACTIONS(2262), - [anon_sym_TILDE] = ACTIONS(2262), - [anon_sym_void] = ACTIONS(2262), - [anon_sym_delete] = ACTIONS(2262), - [anon_sym_PLUS_PLUS] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(2262), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2262), - [sym_number] = ACTIONS(2262), - [sym_private_property_identifier] = ACTIONS(2262), - [sym_this] = ACTIONS(2262), - [sym_super] = ACTIONS(2262), - [sym_true] = ACTIONS(2262), - [sym_false] = ACTIONS(2262), - [sym_null] = ACTIONS(2262), - [sym_undefined] = ACTIONS(2262), - [anon_sym_AT] = ACTIONS(2262), - [anon_sym_static] = ACTIONS(2262), - [anon_sym_readonly] = ACTIONS(2262), - [anon_sym_get] = ACTIONS(2262), - [anon_sym_set] = ACTIONS(2262), - [anon_sym_declare] = ACTIONS(2262), - [anon_sym_public] = ACTIONS(2262), - [anon_sym_private] = ACTIONS(2262), - [anon_sym_protected] = ACTIONS(2262), - [anon_sym_override] = ACTIONS(2262), - [anon_sym_module] = ACTIONS(2262), - [anon_sym_any] = ACTIONS(2262), - [anon_sym_number] = ACTIONS(2262), - [anon_sym_boolean] = ACTIONS(2262), - [anon_sym_string] = ACTIONS(2262), - [anon_sym_symbol] = ACTIONS(2262), - [anon_sym_object] = ACTIONS(2262), - [anon_sym_abstract] = ACTIONS(2262), - [anon_sym_interface] = ACTIONS(2262), - [anon_sym_enum] = ACTIONS(2262), - [sym__automatic_semicolon] = ACTIONS(2264), + [anon_sym_BQUOTE] = ACTIONS(3221), + [sym_number] = ACTIONS(3221), + [sym_private_property_identifier] = ACTIONS(3221), + [sym_this] = ACTIONS(3221), + [sym_super] = ACTIONS(3221), + [sym_true] = ACTIONS(3221), + [sym_false] = ACTIONS(3221), + [sym_null] = ACTIONS(3221), + [sym_undefined] = ACTIONS(3221), + [anon_sym_AT] = ACTIONS(3221), + [anon_sym_static] = ACTIONS(3221), + [anon_sym_readonly] = ACTIONS(3221), + [anon_sym_get] = ACTIONS(3221), + [anon_sym_set] = ACTIONS(3221), + [anon_sym_declare] = ACTIONS(3221), + [anon_sym_public] = ACTIONS(3221), + [anon_sym_private] = ACTIONS(3221), + [anon_sym_protected] = ACTIONS(3221), + [anon_sym_override] = ACTIONS(3221), + [anon_sym_module] = ACTIONS(3221), + [anon_sym_any] = ACTIONS(3221), + [anon_sym_number] = ACTIONS(3221), + [anon_sym_boolean] = ACTIONS(3221), + [anon_sym_string] = ACTIONS(3221), + [anon_sym_symbol] = ACTIONS(3221), + [anon_sym_object] = ACTIONS(3221), + [anon_sym_abstract] = ACTIONS(3221), + [anon_sym_interface] = ACTIONS(3221), + [anon_sym_enum] = ACTIONS(3221), [sym_html_comment] = ACTIONS(5), }, - [1516] = { - [sym_comment] = STATE(1516), - [sym_identifier] = ACTIONS(3347), - [anon_sym_export] = ACTIONS(3347), - [anon_sym_default] = ACTIONS(3347), - [anon_sym_type] = ACTIONS(3347), - [anon_sym_namespace] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_typeof] = ACTIONS(3347), - [anon_sym_import] = ACTIONS(3347), - [anon_sym_with] = ACTIONS(3347), - [anon_sym_var] = ACTIONS(3347), - [anon_sym_let] = ACTIONS(3347), - [anon_sym_const] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_switch] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_await] = ACTIONS(3347), - [anon_sym_while] = ACTIONS(3347), - [anon_sym_do] = ACTIONS(3347), - [anon_sym_try] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_debugger] = ACTIONS(3347), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_throw] = ACTIONS(3347), - [anon_sym_SEMI] = ACTIONS(3347), - [anon_sym_case] = ACTIONS(3347), - [anon_sym_yield] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3347), - [anon_sym_LTtemplate_GT] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_SQUOTE] = ACTIONS(3347), - [anon_sym_class] = ACTIONS(3347), - [anon_sym_async] = ACTIONS(3347), - [anon_sym_function] = ACTIONS(3347), - [anon_sym_new] = ACTIONS(3347), - [anon_sym_using] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_void] = ACTIONS(3347), - [anon_sym_delete] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3347), - [anon_sym_DASH_DASH] = ACTIONS(3347), + [1523] = { + [sym_comment] = STATE(1523), + [ts_builtin_sym_end] = ACTIONS(3515), + [sym_identifier] = ACTIONS(3219), + [anon_sym_export] = ACTIONS(3219), + [anon_sym_type] = ACTIONS(3219), + [anon_sym_namespace] = ACTIONS(3219), + [anon_sym_LBRACE] = ACTIONS(3219), + [anon_sym_RBRACE] = ACTIONS(3219), + [anon_sym_typeof] = ACTIONS(3219), + [anon_sym_import] = ACTIONS(3219), + [anon_sym_with] = ACTIONS(3219), + [anon_sym_var] = ACTIONS(3219), + [anon_sym_let] = ACTIONS(3219), + [anon_sym_const] = ACTIONS(3219), + [anon_sym_BANG] = ACTIONS(3219), + [anon_sym_if] = ACTIONS(3219), + [anon_sym_switch] = ACTIONS(3219), + [anon_sym_for] = ACTIONS(3219), + [anon_sym_LPAREN] = ACTIONS(3219), + [anon_sym_await] = ACTIONS(3219), + [anon_sym_while] = ACTIONS(3219), + [anon_sym_do] = ACTIONS(3219), + [anon_sym_try] = ACTIONS(3219), + [anon_sym_break] = ACTIONS(3219), + [anon_sym_continue] = ACTIONS(3219), + [anon_sym_debugger] = ACTIONS(3219), + [anon_sym_return] = ACTIONS(3219), + [anon_sym_throw] = ACTIONS(3219), + [anon_sym_SEMI] = ACTIONS(3219), + [anon_sym_yield] = ACTIONS(3219), + [anon_sym_LBRACK] = ACTIONS(3219), + [anon_sym_LTtemplate_GT] = ACTIONS(3219), + [anon_sym_DQUOTE] = ACTIONS(3219), + [anon_sym_SQUOTE] = ACTIONS(3219), + [anon_sym_class] = ACTIONS(3219), + [anon_sym_async] = ACTIONS(3219), + [anon_sym_function] = ACTIONS(3219), + [anon_sym_new] = ACTIONS(3219), + [anon_sym_using] = ACTIONS(3219), + [anon_sym_PLUS] = ACTIONS(3219), + [anon_sym_DASH] = ACTIONS(3219), + [anon_sym_SLASH] = ACTIONS(3219), + [anon_sym_LT] = ACTIONS(3219), + [anon_sym_TILDE] = ACTIONS(3219), + [anon_sym_void] = ACTIONS(3219), + [anon_sym_delete] = ACTIONS(3219), + [anon_sym_PLUS_PLUS] = ACTIONS(3219), + [anon_sym_DASH_DASH] = ACTIONS(3219), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3347), - [sym_number] = ACTIONS(3347), - [sym_private_property_identifier] = ACTIONS(3347), - [sym_this] = ACTIONS(3347), - [sym_super] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_null] = ACTIONS(3347), - [sym_undefined] = ACTIONS(3347), - [anon_sym_AT] = ACTIONS(3347), - [anon_sym_static] = ACTIONS(3347), - [anon_sym_readonly] = ACTIONS(3347), - [anon_sym_get] = ACTIONS(3347), - [anon_sym_set] = ACTIONS(3347), - [anon_sym_declare] = ACTIONS(3347), - [anon_sym_public] = ACTIONS(3347), - [anon_sym_private] = ACTIONS(3347), - [anon_sym_protected] = ACTIONS(3347), - [anon_sym_override] = ACTIONS(3347), - [anon_sym_module] = ACTIONS(3347), - [anon_sym_any] = ACTIONS(3347), - [anon_sym_number] = ACTIONS(3347), - [anon_sym_boolean] = ACTIONS(3347), - [anon_sym_string] = ACTIONS(3347), - [anon_sym_symbol] = ACTIONS(3347), - [anon_sym_object] = ACTIONS(3347), - [anon_sym_abstract] = ACTIONS(3347), - [anon_sym_interface] = ACTIONS(3347), - [anon_sym_enum] = ACTIONS(3347), + [anon_sym_BQUOTE] = ACTIONS(3219), + [sym_number] = ACTIONS(3219), + [sym_private_property_identifier] = ACTIONS(3219), + [sym_this] = ACTIONS(3219), + [sym_super] = ACTIONS(3219), + [sym_true] = ACTIONS(3219), + [sym_false] = ACTIONS(3219), + [sym_null] = ACTIONS(3219), + [sym_undefined] = ACTIONS(3219), + [anon_sym_AT] = ACTIONS(3219), + [anon_sym_static] = ACTIONS(3219), + [anon_sym_readonly] = ACTIONS(3219), + [anon_sym_get] = ACTIONS(3219), + [anon_sym_set] = ACTIONS(3219), + [anon_sym_declare] = ACTIONS(3219), + [anon_sym_public] = ACTIONS(3219), + [anon_sym_private] = ACTIONS(3219), + [anon_sym_protected] = ACTIONS(3219), + [anon_sym_override] = ACTIONS(3219), + [anon_sym_module] = ACTIONS(3219), + [anon_sym_any] = ACTIONS(3219), + [anon_sym_number] = ACTIONS(3219), + [anon_sym_boolean] = ACTIONS(3219), + [anon_sym_string] = ACTIONS(3219), + [anon_sym_symbol] = ACTIONS(3219), + [anon_sym_object] = ACTIONS(3219), + [anon_sym_abstract] = ACTIONS(3219), + [anon_sym_interface] = ACTIONS(3219), + [anon_sym_enum] = ACTIONS(3219), [sym_html_comment] = ACTIONS(5), }, - [1517] = { - [sym_comment] = STATE(1517), - [sym_identifier] = ACTIONS(3345), - [anon_sym_export] = ACTIONS(3345), - [anon_sym_default] = ACTIONS(3345), - [anon_sym_type] = ACTIONS(3345), - [anon_sym_namespace] = ACTIONS(3345), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_typeof] = ACTIONS(3345), - [anon_sym_import] = ACTIONS(3345), - [anon_sym_with] = ACTIONS(3345), - [anon_sym_var] = ACTIONS(3345), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_const] = ACTIONS(3345), - [anon_sym_BANG] = ACTIONS(3345), - [anon_sym_if] = ACTIONS(3345), - [anon_sym_switch] = ACTIONS(3345), - [anon_sym_for] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_await] = ACTIONS(3345), - [anon_sym_while] = ACTIONS(3345), - [anon_sym_do] = ACTIONS(3345), - [anon_sym_try] = ACTIONS(3345), - [anon_sym_break] = ACTIONS(3345), - [anon_sym_continue] = ACTIONS(3345), - [anon_sym_debugger] = ACTIONS(3345), - [anon_sym_return] = ACTIONS(3345), - [anon_sym_throw] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_case] = ACTIONS(3345), - [anon_sym_yield] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_LTtemplate_GT] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(3345), - [anon_sym_SQUOTE] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_async] = ACTIONS(3345), - [anon_sym_function] = ACTIONS(3345), - [anon_sym_new] = ACTIONS(3345), - [anon_sym_using] = ACTIONS(3345), - [anon_sym_PLUS] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_SLASH] = ACTIONS(3345), - [anon_sym_LT] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_void] = ACTIONS(3345), - [anon_sym_delete] = ACTIONS(3345), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_DASH_DASH] = ACTIONS(3345), + [1524] = { + [sym_comment] = STATE(1524), + [ts_builtin_sym_end] = ACTIONS(3567), + [sym_identifier] = ACTIONS(3333), + [anon_sym_export] = ACTIONS(3333), + [anon_sym_type] = ACTIONS(3333), + [anon_sym_namespace] = ACTIONS(3333), + [anon_sym_LBRACE] = ACTIONS(3333), + [anon_sym_RBRACE] = ACTIONS(3333), + [anon_sym_typeof] = ACTIONS(3333), + [anon_sym_import] = ACTIONS(3333), + [anon_sym_with] = ACTIONS(3333), + [anon_sym_var] = ACTIONS(3333), + [anon_sym_let] = ACTIONS(3333), + [anon_sym_const] = ACTIONS(3333), + [anon_sym_BANG] = ACTIONS(3333), + [anon_sym_if] = ACTIONS(3333), + [anon_sym_switch] = ACTIONS(3333), + [anon_sym_for] = ACTIONS(3333), + [anon_sym_LPAREN] = ACTIONS(3333), + [anon_sym_await] = ACTIONS(3333), + [anon_sym_while] = ACTIONS(3333), + [anon_sym_do] = ACTIONS(3333), + [anon_sym_try] = ACTIONS(3333), + [anon_sym_break] = ACTIONS(3333), + [anon_sym_continue] = ACTIONS(3333), + [anon_sym_debugger] = ACTIONS(3333), + [anon_sym_return] = ACTIONS(3333), + [anon_sym_throw] = ACTIONS(3333), + [anon_sym_SEMI] = ACTIONS(3333), + [anon_sym_yield] = ACTIONS(3333), + [anon_sym_LBRACK] = ACTIONS(3333), + [anon_sym_LTtemplate_GT] = ACTIONS(3333), + [anon_sym_DQUOTE] = ACTIONS(3333), + [anon_sym_SQUOTE] = ACTIONS(3333), + [anon_sym_class] = ACTIONS(3333), + [anon_sym_async] = ACTIONS(3333), + [anon_sym_function] = ACTIONS(3333), + [anon_sym_new] = ACTIONS(3333), + [anon_sym_using] = ACTIONS(3333), + [anon_sym_PLUS] = ACTIONS(3333), + [anon_sym_DASH] = ACTIONS(3333), + [anon_sym_SLASH] = ACTIONS(3333), + [anon_sym_LT] = ACTIONS(3333), + [anon_sym_TILDE] = ACTIONS(3333), + [anon_sym_void] = ACTIONS(3333), + [anon_sym_delete] = ACTIONS(3333), + [anon_sym_PLUS_PLUS] = ACTIONS(3333), + [anon_sym_DASH_DASH] = ACTIONS(3333), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3345), - [sym_number] = ACTIONS(3345), - [sym_private_property_identifier] = ACTIONS(3345), - [sym_this] = ACTIONS(3345), - [sym_super] = ACTIONS(3345), - [sym_true] = ACTIONS(3345), - [sym_false] = ACTIONS(3345), - [sym_null] = ACTIONS(3345), - [sym_undefined] = ACTIONS(3345), - [anon_sym_AT] = ACTIONS(3345), - [anon_sym_static] = ACTIONS(3345), - [anon_sym_readonly] = ACTIONS(3345), - [anon_sym_get] = ACTIONS(3345), - [anon_sym_set] = ACTIONS(3345), - [anon_sym_declare] = ACTIONS(3345), - [anon_sym_public] = ACTIONS(3345), - [anon_sym_private] = ACTIONS(3345), - [anon_sym_protected] = ACTIONS(3345), - [anon_sym_override] = ACTIONS(3345), - [anon_sym_module] = ACTIONS(3345), - [anon_sym_any] = ACTIONS(3345), - [anon_sym_number] = ACTIONS(3345), - [anon_sym_boolean] = ACTIONS(3345), - [anon_sym_string] = ACTIONS(3345), - [anon_sym_symbol] = ACTIONS(3345), - [anon_sym_object] = ACTIONS(3345), - [anon_sym_abstract] = ACTIONS(3345), - [anon_sym_interface] = ACTIONS(3345), - [anon_sym_enum] = ACTIONS(3345), + [anon_sym_BQUOTE] = ACTIONS(3333), + [sym_number] = ACTIONS(3333), + [sym_private_property_identifier] = ACTIONS(3333), + [sym_this] = ACTIONS(3333), + [sym_super] = ACTIONS(3333), + [sym_true] = ACTIONS(3333), + [sym_false] = ACTIONS(3333), + [sym_null] = ACTIONS(3333), + [sym_undefined] = ACTIONS(3333), + [anon_sym_AT] = ACTIONS(3333), + [anon_sym_static] = ACTIONS(3333), + [anon_sym_readonly] = ACTIONS(3333), + [anon_sym_get] = ACTIONS(3333), + [anon_sym_set] = ACTIONS(3333), + [anon_sym_declare] = ACTIONS(3333), + [anon_sym_public] = ACTIONS(3333), + [anon_sym_private] = ACTIONS(3333), + [anon_sym_protected] = ACTIONS(3333), + [anon_sym_override] = ACTIONS(3333), + [anon_sym_module] = ACTIONS(3333), + [anon_sym_any] = ACTIONS(3333), + [anon_sym_number] = ACTIONS(3333), + [anon_sym_boolean] = ACTIONS(3333), + [anon_sym_string] = ACTIONS(3333), + [anon_sym_symbol] = ACTIONS(3333), + [anon_sym_object] = ACTIONS(3333), + [anon_sym_abstract] = ACTIONS(3333), + [anon_sym_interface] = ACTIONS(3333), + [anon_sym_enum] = ACTIONS(3333), [sym_html_comment] = ACTIONS(5), }, - [1518] = { - [sym_comment] = STATE(1518), - [sym_identifier] = ACTIONS(3421), - [anon_sym_export] = ACTIONS(3421), - [anon_sym_default] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_namespace] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_typeof] = ACTIONS(3421), - [anon_sym_import] = ACTIONS(3421), - [anon_sym_with] = ACTIONS(3421), - [anon_sym_var] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_const] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_switch] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_await] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_break] = ACTIONS(3421), - [anon_sym_continue] = ACTIONS(3421), - [anon_sym_debugger] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_throw] = ACTIONS(3421), - [anon_sym_SEMI] = ACTIONS(3421), - [anon_sym_case] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LTtemplate_GT] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_SQUOTE] = ACTIONS(3421), - [anon_sym_class] = ACTIONS(3421), - [anon_sym_async] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_using] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_SLASH] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_void] = ACTIONS(3421), - [anon_sym_delete] = ACTIONS(3421), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3421), - [sym_number] = ACTIONS(3421), - [sym_private_property_identifier] = ACTIONS(3421), - [sym_this] = ACTIONS(3421), - [sym_super] = ACTIONS(3421), - [sym_true] = ACTIONS(3421), - [sym_false] = ACTIONS(3421), - [sym_null] = ACTIONS(3421), - [sym_undefined] = ACTIONS(3421), - [anon_sym_AT] = ACTIONS(3421), - [anon_sym_static] = ACTIONS(3421), - [anon_sym_readonly] = ACTIONS(3421), - [anon_sym_get] = ACTIONS(3421), - [anon_sym_set] = ACTIONS(3421), - [anon_sym_declare] = ACTIONS(3421), - [anon_sym_public] = ACTIONS(3421), - [anon_sym_private] = ACTIONS(3421), - [anon_sym_protected] = ACTIONS(3421), - [anon_sym_override] = ACTIONS(3421), - [anon_sym_module] = ACTIONS(3421), - [anon_sym_any] = ACTIONS(3421), - [anon_sym_number] = ACTIONS(3421), - [anon_sym_boolean] = ACTIONS(3421), - [anon_sym_string] = ACTIONS(3421), - [anon_sym_symbol] = ACTIONS(3421), - [anon_sym_object] = ACTIONS(3421), - [anon_sym_abstract] = ACTIONS(3421), - [anon_sym_interface] = ACTIONS(3421), - [anon_sym_enum] = ACTIONS(3421), + [1525] = { + [sym_comment] = STATE(1525), + [ts_builtin_sym_end] = ACTIONS(2306), + [sym_identifier] = ACTIONS(2304), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_type] = ACTIONS(2304), + [anon_sym_namespace] = ACTIONS(2304), + [anon_sym_LBRACE] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_typeof] = ACTIONS(2304), + [anon_sym_import] = ACTIONS(2304), + [anon_sym_with] = ACTIONS(2304), + [anon_sym_var] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [anon_sym_BANG] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_switch] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_await] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_debugger] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_throw] = ACTIONS(2304), + [anon_sym_SEMI] = ACTIONS(2304), + [anon_sym_yield] = ACTIONS(2304), + [anon_sym_LBRACK] = ACTIONS(2304), + [anon_sym_LTtemplate_GT] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2304), + [anon_sym_SQUOTE] = ACTIONS(2304), + [anon_sym_class] = ACTIONS(2304), + [anon_sym_async] = ACTIONS(2304), + [anon_sym_function] = ACTIONS(2304), + [anon_sym_new] = ACTIONS(2304), + [anon_sym_using] = ACTIONS(2304), + [anon_sym_PLUS] = ACTIONS(2304), + [anon_sym_DASH] = ACTIONS(2304), + [anon_sym_SLASH] = ACTIONS(2304), + [anon_sym_LT] = ACTIONS(2304), + [anon_sym_TILDE] = ACTIONS(2304), + [anon_sym_void] = ACTIONS(2304), + [anon_sym_delete] = ACTIONS(2304), + [anon_sym_PLUS_PLUS] = ACTIONS(2304), + [anon_sym_DASH_DASH] = ACTIONS(2304), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2304), + [sym_number] = ACTIONS(2304), + [sym_private_property_identifier] = ACTIONS(2304), + [sym_this] = ACTIONS(2304), + [sym_super] = ACTIONS(2304), + [sym_true] = ACTIONS(2304), + [sym_false] = ACTIONS(2304), + [sym_null] = ACTIONS(2304), + [sym_undefined] = ACTIONS(2304), + [anon_sym_AT] = ACTIONS(2304), + [anon_sym_static] = ACTIONS(2304), + [anon_sym_readonly] = ACTIONS(2304), + [anon_sym_get] = ACTIONS(2304), + [anon_sym_set] = ACTIONS(2304), + [anon_sym_declare] = ACTIONS(2304), + [anon_sym_public] = ACTIONS(2304), + [anon_sym_private] = ACTIONS(2304), + [anon_sym_protected] = ACTIONS(2304), + [anon_sym_override] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_any] = ACTIONS(2304), + [anon_sym_number] = ACTIONS(2304), + [anon_sym_boolean] = ACTIONS(2304), + [anon_sym_string] = ACTIONS(2304), + [anon_sym_symbol] = ACTIONS(2304), + [anon_sym_object] = ACTIONS(2304), + [anon_sym_abstract] = ACTIONS(2304), + [anon_sym_interface] = ACTIONS(2304), + [anon_sym_enum] = ACTIONS(2304), [sym_html_comment] = ACTIONS(5), }, - [1519] = { - [sym_comment] = STATE(1519), + [1526] = { + [sym_comment] = STATE(1526), [ts_builtin_sym_end] = ACTIONS(3615), - [sym_identifier] = ACTIONS(3229), - [anon_sym_export] = ACTIONS(3229), - [anon_sym_type] = ACTIONS(3229), - [anon_sym_namespace] = ACTIONS(3229), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_typeof] = ACTIONS(3229), - [anon_sym_import] = ACTIONS(3229), - [anon_sym_with] = ACTIONS(3229), - [anon_sym_var] = ACTIONS(3229), - [anon_sym_let] = ACTIONS(3229), - [anon_sym_const] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_else] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3229), - [anon_sym_switch] = ACTIONS(3229), - [anon_sym_for] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_await] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3229), - [anon_sym_do] = ACTIONS(3229), - [anon_sym_try] = ACTIONS(3229), - [anon_sym_break] = ACTIONS(3229), - [anon_sym_continue] = ACTIONS(3229), - [anon_sym_debugger] = ACTIONS(3229), - [anon_sym_return] = ACTIONS(3229), - [anon_sym_throw] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_yield] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_LTtemplate_GT] = ACTIONS(3229), - [anon_sym_DQUOTE] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_class] = ACTIONS(3229), - [anon_sym_async] = ACTIONS(3229), - [anon_sym_function] = ACTIONS(3229), - [anon_sym_new] = ACTIONS(3229), - [anon_sym_using] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_void] = ACTIONS(3229), - [anon_sym_delete] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3229), - [sym_number] = ACTIONS(3229), - [sym_private_property_identifier] = ACTIONS(3229), - [sym_this] = ACTIONS(3229), - [sym_super] = ACTIONS(3229), - [sym_true] = ACTIONS(3229), - [sym_false] = ACTIONS(3229), - [sym_null] = ACTIONS(3229), - [sym_undefined] = ACTIONS(3229), - [anon_sym_AT] = ACTIONS(3229), - [anon_sym_static] = ACTIONS(3229), - [anon_sym_readonly] = ACTIONS(3229), - [anon_sym_get] = ACTIONS(3229), - [anon_sym_set] = ACTIONS(3229), - [anon_sym_declare] = ACTIONS(3229), - [anon_sym_public] = ACTIONS(3229), - [anon_sym_private] = ACTIONS(3229), - [anon_sym_protected] = ACTIONS(3229), - [anon_sym_override] = ACTIONS(3229), - [anon_sym_module] = ACTIONS(3229), - [anon_sym_any] = ACTIONS(3229), - [anon_sym_number] = ACTIONS(3229), - [anon_sym_boolean] = ACTIONS(3229), - [anon_sym_string] = ACTIONS(3229), - [anon_sym_symbol] = ACTIONS(3229), - [anon_sym_object] = ACTIONS(3229), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_interface] = ACTIONS(3229), - [anon_sym_enum] = ACTIONS(3229), + [sym_identifier] = ACTIONS(3247), + [anon_sym_export] = ACTIONS(3247), + [anon_sym_type] = ACTIONS(3247), + [anon_sym_namespace] = ACTIONS(3247), + [anon_sym_LBRACE] = ACTIONS(3247), + [anon_sym_RBRACE] = ACTIONS(3247), + [anon_sym_typeof] = ACTIONS(3247), + [anon_sym_import] = ACTIONS(3247), + [anon_sym_with] = ACTIONS(3247), + [anon_sym_var] = ACTIONS(3247), + [anon_sym_let] = ACTIONS(3247), + [anon_sym_const] = ACTIONS(3247), + [anon_sym_BANG] = ACTIONS(3247), + [anon_sym_if] = ACTIONS(3247), + [anon_sym_switch] = ACTIONS(3247), + [anon_sym_for] = ACTIONS(3247), + [anon_sym_LPAREN] = ACTIONS(3247), + [anon_sym_await] = ACTIONS(3247), + [anon_sym_while] = ACTIONS(3247), + [anon_sym_do] = ACTIONS(3247), + [anon_sym_try] = ACTIONS(3247), + [anon_sym_break] = ACTIONS(3247), + [anon_sym_continue] = ACTIONS(3247), + [anon_sym_debugger] = ACTIONS(3247), + [anon_sym_return] = ACTIONS(3247), + [anon_sym_throw] = ACTIONS(3247), + [anon_sym_SEMI] = ACTIONS(3247), + [anon_sym_yield] = ACTIONS(3247), + [anon_sym_LBRACK] = ACTIONS(3247), + [anon_sym_LTtemplate_GT] = ACTIONS(3247), + [anon_sym_DQUOTE] = ACTIONS(3247), + [anon_sym_SQUOTE] = ACTIONS(3247), + [anon_sym_class] = ACTIONS(3247), + [anon_sym_async] = ACTIONS(3247), + [anon_sym_function] = ACTIONS(3247), + [anon_sym_new] = ACTIONS(3247), + [anon_sym_using] = ACTIONS(3247), + [anon_sym_PLUS] = ACTIONS(3247), + [anon_sym_DASH] = ACTIONS(3247), + [anon_sym_SLASH] = ACTIONS(3247), + [anon_sym_LT] = ACTIONS(3247), + [anon_sym_TILDE] = ACTIONS(3247), + [anon_sym_void] = ACTIONS(3247), + [anon_sym_delete] = ACTIONS(3247), + [anon_sym_PLUS_PLUS] = ACTIONS(3247), + [anon_sym_DASH_DASH] = ACTIONS(3247), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3247), + [sym_number] = ACTIONS(3247), + [sym_private_property_identifier] = ACTIONS(3247), + [sym_this] = ACTIONS(3247), + [sym_super] = ACTIONS(3247), + [sym_true] = ACTIONS(3247), + [sym_false] = ACTIONS(3247), + [sym_null] = ACTIONS(3247), + [sym_undefined] = ACTIONS(3247), + [anon_sym_AT] = ACTIONS(3247), + [anon_sym_static] = ACTIONS(3247), + [anon_sym_readonly] = ACTIONS(3247), + [anon_sym_get] = ACTIONS(3247), + [anon_sym_set] = ACTIONS(3247), + [anon_sym_declare] = ACTIONS(3247), + [anon_sym_public] = ACTIONS(3247), + [anon_sym_private] = ACTIONS(3247), + [anon_sym_protected] = ACTIONS(3247), + [anon_sym_override] = ACTIONS(3247), + [anon_sym_module] = ACTIONS(3247), + [anon_sym_any] = ACTIONS(3247), + [anon_sym_number] = ACTIONS(3247), + [anon_sym_boolean] = ACTIONS(3247), + [anon_sym_string] = ACTIONS(3247), + [anon_sym_symbol] = ACTIONS(3247), + [anon_sym_object] = ACTIONS(3247), + [anon_sym_abstract] = ACTIONS(3247), + [anon_sym_interface] = ACTIONS(3247), + [anon_sym_enum] = ACTIONS(3247), [sym_html_comment] = ACTIONS(5), }, - [1520] = { - [sym_comment] = STATE(1520), - [ts_builtin_sym_end] = ACTIONS(3617), - [sym_identifier] = ACTIONS(3319), - [anon_sym_export] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_namespace] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_typeof] = ACTIONS(3319), - [anon_sym_import] = ACTIONS(3319), - [anon_sym_with] = ACTIONS(3319), - [anon_sym_var] = ACTIONS(3319), - [anon_sym_let] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_else] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_switch] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_await] = ACTIONS(3319), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_do] = ACTIONS(3319), - [anon_sym_try] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_debugger] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_throw] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3319), - [anon_sym_yield] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_LTtemplate_GT] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3319), - [anon_sym_class] = ACTIONS(3319), - [anon_sym_async] = ACTIONS(3319), - [anon_sym_function] = ACTIONS(3319), - [anon_sym_new] = ACTIONS(3319), - [anon_sym_using] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_void] = ACTIONS(3319), - [anon_sym_delete] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3319), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3319), - [sym_number] = ACTIONS(3319), - [sym_private_property_identifier] = ACTIONS(3319), - [sym_this] = ACTIONS(3319), - [sym_super] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_null] = ACTIONS(3319), - [sym_undefined] = ACTIONS(3319), - [anon_sym_AT] = ACTIONS(3319), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_readonly] = ACTIONS(3319), - [anon_sym_get] = ACTIONS(3319), - [anon_sym_set] = ACTIONS(3319), - [anon_sym_declare] = ACTIONS(3319), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3319), - [anon_sym_module] = ACTIONS(3319), - [anon_sym_any] = ACTIONS(3319), - [anon_sym_number] = ACTIONS(3319), - [anon_sym_boolean] = ACTIONS(3319), - [anon_sym_string] = ACTIONS(3319), - [anon_sym_symbol] = ACTIONS(3319), - [anon_sym_object] = ACTIONS(3319), - [anon_sym_abstract] = ACTIONS(3319), - [anon_sym_interface] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [sym_html_comment] = ACTIONS(5), - }, - [1521] = { - [sym_comment] = STATE(1521), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1522] = { - [sym_comment] = STATE(1522), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1523] = { - [sym_comment] = STATE(1523), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1524] = { - [sym_comment] = STATE(1524), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1525] = { - [sym_comment] = STATE(1525), - [ts_builtin_sym_end] = ACTIONS(2298), - [sym_identifier] = ACTIONS(2296), - [anon_sym_export] = ACTIONS(2296), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_namespace] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2296), - [anon_sym_RBRACE] = ACTIONS(2296), - [anon_sym_typeof] = ACTIONS(2296), - [anon_sym_import] = ACTIONS(2296), - [anon_sym_with] = ACTIONS(2296), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_const] = ACTIONS(2296), - [anon_sym_BANG] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_switch] = ACTIONS(2296), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2296), - [anon_sym_await] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(2296), - [anon_sym_try] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_debugger] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_throw] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2296), - [anon_sym_yield] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2296), - [anon_sym_LTtemplate_GT] = ACTIONS(2296), - [anon_sym_DQUOTE] = ACTIONS(2296), - [anon_sym_SQUOTE] = ACTIONS(2296), - [anon_sym_class] = ACTIONS(2296), - [anon_sym_async] = ACTIONS(2296), - [anon_sym_function] = ACTIONS(2296), - [anon_sym_new] = ACTIONS(2296), - [anon_sym_using] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_TILDE] = ACTIONS(2296), - [anon_sym_void] = ACTIONS(2296), - [anon_sym_delete] = ACTIONS(2296), - [anon_sym_PLUS_PLUS] = ACTIONS(2296), - [anon_sym_DASH_DASH] = ACTIONS(2296), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2296), - [sym_number] = ACTIONS(2296), - [sym_private_property_identifier] = ACTIONS(2296), - [sym_this] = ACTIONS(2296), - [sym_super] = ACTIONS(2296), - [sym_true] = ACTIONS(2296), - [sym_false] = ACTIONS(2296), - [sym_null] = ACTIONS(2296), - [sym_undefined] = ACTIONS(2296), - [anon_sym_AT] = ACTIONS(2296), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_readonly] = ACTIONS(2296), - [anon_sym_get] = ACTIONS(2296), - [anon_sym_set] = ACTIONS(2296), - [anon_sym_declare] = ACTIONS(2296), - [anon_sym_public] = ACTIONS(2296), - [anon_sym_private] = ACTIONS(2296), - [anon_sym_protected] = ACTIONS(2296), - [anon_sym_override] = ACTIONS(2296), - [anon_sym_module] = ACTIONS(2296), - [anon_sym_any] = ACTIONS(2296), - [anon_sym_number] = ACTIONS(2296), - [anon_sym_boolean] = ACTIONS(2296), - [anon_sym_string] = ACTIONS(2296), - [anon_sym_symbol] = ACTIONS(2296), - [anon_sym_object] = ACTIONS(2296), - [anon_sym_abstract] = ACTIONS(2296), - [anon_sym_interface] = ACTIONS(2296), - [anon_sym_enum] = ACTIONS(2296), - [sym__automatic_semicolon] = ACTIONS(2298), - [sym_html_comment] = ACTIONS(5), - }, - [1526] = { - [sym_comment] = STATE(1526), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1527] = { - [sym_statement_block] = STATE(1727), - [sym_comment] = STATE(1527), - [ts_builtin_sym_end] = ACTIONS(2113), - [sym_identifier] = ACTIONS(2109), - [anon_sym_export] = ACTIONS(2109), - [anon_sym_type] = ACTIONS(2109), - [anon_sym_namespace] = ACTIONS(2109), - [anon_sym_LBRACE] = ACTIONS(3389), - [anon_sym_RBRACE] = ACTIONS(2109), - [anon_sym_typeof] = ACTIONS(2109), - [anon_sym_import] = ACTIONS(2109), - [anon_sym_with] = ACTIONS(2109), - [anon_sym_var] = ACTIONS(2109), - [anon_sym_let] = ACTIONS(2109), - [anon_sym_const] = ACTIONS(2109), - [anon_sym_BANG] = ACTIONS(2109), - [anon_sym_if] = ACTIONS(2109), - [anon_sym_switch] = ACTIONS(2109), - [anon_sym_for] = ACTIONS(2109), - [anon_sym_LPAREN] = ACTIONS(2109), - [anon_sym_await] = ACTIONS(2109), - [anon_sym_while] = ACTIONS(2109), - [anon_sym_do] = ACTIONS(2109), - [anon_sym_try] = 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(2109), - [anon_sym_yield] = ACTIONS(2109), - [anon_sym_LBRACK] = ACTIONS(2109), - [anon_sym_LTtemplate_GT] = ACTIONS(2109), - [anon_sym_DQUOTE] = ACTIONS(2109), - [anon_sym_SQUOTE] = ACTIONS(2109), - [anon_sym_class] = ACTIONS(2109), - [anon_sym_async] = ACTIONS(2109), - [anon_sym_function] = ACTIONS(2109), - [anon_sym_new] = ACTIONS(2109), - [anon_sym_using] = ACTIONS(2109), - [anon_sym_PLUS] = ACTIONS(2109), - [anon_sym_DASH] = ACTIONS(2109), - [anon_sym_SLASH] = ACTIONS(2109), - [anon_sym_LT] = ACTIONS(2109), - [anon_sym_TILDE] = ACTIONS(2109), - [anon_sym_void] = ACTIONS(2109), - [anon_sym_delete] = ACTIONS(2109), - [anon_sym_PLUS_PLUS] = ACTIONS(2109), - [anon_sym_DASH_DASH] = ACTIONS(2109), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2109), - [sym_number] = ACTIONS(2109), - [sym_private_property_identifier] = ACTIONS(2109), - [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(2109), - [anon_sym_static] = ACTIONS(2109), - [anon_sym_readonly] = ACTIONS(2109), - [anon_sym_get] = ACTIONS(2109), - [anon_sym_set] = ACTIONS(2109), - [anon_sym_declare] = ACTIONS(2109), - [anon_sym_public] = ACTIONS(2109), - [anon_sym_private] = ACTIONS(2109), - [anon_sym_protected] = ACTIONS(2109), - [anon_sym_override] = ACTIONS(2109), - [anon_sym_module] = ACTIONS(2109), - [anon_sym_any] = ACTIONS(2109), - [anon_sym_number] = ACTIONS(2109), - [anon_sym_boolean] = ACTIONS(2109), - [anon_sym_string] = ACTIONS(2109), - [anon_sym_symbol] = ACTIONS(2109), - [anon_sym_object] = ACTIONS(2109), - [anon_sym_abstract] = ACTIONS(2109), - [anon_sym_interface] = ACTIONS(2109), - [anon_sym_enum] = ACTIONS(2109), + [1527] = { + [sym_comment] = STATE(1527), + [ts_builtin_sym_end] = ACTIONS(2262), + [sym_identifier] = ACTIONS(2260), + [anon_sym_export] = ACTIONS(2260), + [anon_sym_type] = ACTIONS(2260), + [anon_sym_namespace] = ACTIONS(2260), + [anon_sym_LBRACE] = ACTIONS(2260), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_typeof] = ACTIONS(2260), + [anon_sym_import] = ACTIONS(2260), + [anon_sym_with] = ACTIONS(2260), + [anon_sym_var] = ACTIONS(2260), + [anon_sym_let] = ACTIONS(2260), + [anon_sym_const] = ACTIONS(2260), + [anon_sym_BANG] = ACTIONS(2260), + [anon_sym_if] = ACTIONS(2260), + [anon_sym_switch] = ACTIONS(2260), + [anon_sym_for] = ACTIONS(2260), + [anon_sym_LPAREN] = ACTIONS(2260), + [anon_sym_await] = ACTIONS(2260), + [anon_sym_while] = ACTIONS(2260), + [anon_sym_do] = ACTIONS(2260), + [anon_sym_try] = ACTIONS(2260), + [anon_sym_break] = ACTIONS(2260), + [anon_sym_continue] = ACTIONS(2260), + [anon_sym_debugger] = ACTIONS(2260), + [anon_sym_return] = ACTIONS(2260), + [anon_sym_throw] = ACTIONS(2260), + [anon_sym_SEMI] = ACTIONS(2260), + [anon_sym_yield] = ACTIONS(2260), + [anon_sym_LBRACK] = ACTIONS(2260), + [anon_sym_LTtemplate_GT] = ACTIONS(2260), + [anon_sym_DQUOTE] = ACTIONS(2260), + [anon_sym_SQUOTE] = ACTIONS(2260), + [anon_sym_class] = ACTIONS(2260), + [anon_sym_async] = ACTIONS(2260), + [anon_sym_function] = ACTIONS(2260), + [anon_sym_new] = ACTIONS(2260), + [anon_sym_using] = ACTIONS(2260), + [anon_sym_PLUS] = ACTIONS(2260), + [anon_sym_DASH] = ACTIONS(2260), + [anon_sym_SLASH] = ACTIONS(2260), + [anon_sym_LT] = ACTIONS(2260), + [anon_sym_TILDE] = ACTIONS(2260), + [anon_sym_void] = ACTIONS(2260), + [anon_sym_delete] = ACTIONS(2260), + [anon_sym_PLUS_PLUS] = ACTIONS(2260), + [anon_sym_DASH_DASH] = ACTIONS(2260), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2260), + [sym_number] = ACTIONS(2260), + [sym_private_property_identifier] = ACTIONS(2260), + [sym_this] = ACTIONS(2260), + [sym_super] = ACTIONS(2260), + [sym_true] = ACTIONS(2260), + [sym_false] = ACTIONS(2260), + [sym_null] = ACTIONS(2260), + [sym_undefined] = ACTIONS(2260), + [anon_sym_AT] = ACTIONS(2260), + [anon_sym_static] = ACTIONS(2260), + [anon_sym_readonly] = ACTIONS(2260), + [anon_sym_get] = ACTIONS(2260), + [anon_sym_set] = ACTIONS(2260), + [anon_sym_declare] = ACTIONS(2260), + [anon_sym_public] = ACTIONS(2260), + [anon_sym_private] = ACTIONS(2260), + [anon_sym_protected] = ACTIONS(2260), + [anon_sym_override] = ACTIONS(2260), + [anon_sym_module] = ACTIONS(2260), + [anon_sym_any] = ACTIONS(2260), + [anon_sym_number] = ACTIONS(2260), + [anon_sym_boolean] = ACTIONS(2260), + [anon_sym_string] = ACTIONS(2260), + [anon_sym_symbol] = ACTIONS(2260), + [anon_sym_object] = ACTIONS(2260), + [anon_sym_abstract] = ACTIONS(2260), + [anon_sym_interface] = ACTIONS(2260), + [anon_sym_enum] = ACTIONS(2260), [sym_html_comment] = ACTIONS(5), }, [1528] = { [sym_comment] = STATE(1528), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_else] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), + [ts_builtin_sym_end] = ACTIONS(3535), + [sym_identifier] = ACTIONS(3279), + [anon_sym_export] = ACTIONS(3279), + [anon_sym_type] = ACTIONS(3279), + [anon_sym_namespace] = ACTIONS(3279), + [anon_sym_LBRACE] = ACTIONS(3279), + [anon_sym_RBRACE] = ACTIONS(3279), + [anon_sym_typeof] = ACTIONS(3279), + [anon_sym_import] = ACTIONS(3279), + [anon_sym_with] = ACTIONS(3279), + [anon_sym_var] = ACTIONS(3279), + [anon_sym_let] = ACTIONS(3279), + [anon_sym_const] = ACTIONS(3279), + [anon_sym_BANG] = ACTIONS(3279), + [anon_sym_if] = ACTIONS(3279), + [anon_sym_switch] = ACTIONS(3279), + [anon_sym_for] = ACTIONS(3279), + [anon_sym_LPAREN] = ACTIONS(3279), + [anon_sym_await] = ACTIONS(3279), + [anon_sym_while] = ACTIONS(3279), + [anon_sym_do] = ACTIONS(3279), + [anon_sym_try] = ACTIONS(3279), + [anon_sym_break] = ACTIONS(3279), + [anon_sym_continue] = ACTIONS(3279), + [anon_sym_debugger] = ACTIONS(3279), + [anon_sym_return] = ACTIONS(3279), + [anon_sym_throw] = ACTIONS(3279), + [anon_sym_SEMI] = ACTIONS(3279), + [anon_sym_yield] = ACTIONS(3279), + [anon_sym_LBRACK] = ACTIONS(3279), + [anon_sym_LTtemplate_GT] = ACTIONS(3279), + [anon_sym_DQUOTE] = ACTIONS(3279), + [anon_sym_SQUOTE] = ACTIONS(3279), + [anon_sym_class] = ACTIONS(3279), + [anon_sym_async] = ACTIONS(3279), + [anon_sym_function] = ACTIONS(3279), + [anon_sym_new] = ACTIONS(3279), + [anon_sym_using] = ACTIONS(3279), + [anon_sym_PLUS] = ACTIONS(3279), + [anon_sym_DASH] = ACTIONS(3279), + [anon_sym_SLASH] = ACTIONS(3279), + [anon_sym_LT] = ACTIONS(3279), + [anon_sym_TILDE] = ACTIONS(3279), + [anon_sym_void] = ACTIONS(3279), + [anon_sym_delete] = ACTIONS(3279), + [anon_sym_PLUS_PLUS] = ACTIONS(3279), + [anon_sym_DASH_DASH] = ACTIONS(3279), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3279), + [sym_number] = ACTIONS(3279), + [sym_private_property_identifier] = ACTIONS(3279), + [sym_this] = ACTIONS(3279), + [sym_super] = ACTIONS(3279), + [sym_true] = ACTIONS(3279), + [sym_false] = ACTIONS(3279), + [sym_null] = ACTIONS(3279), + [sym_undefined] = ACTIONS(3279), + [anon_sym_AT] = ACTIONS(3279), + [anon_sym_static] = ACTIONS(3279), + [anon_sym_readonly] = ACTIONS(3279), + [anon_sym_get] = ACTIONS(3279), + [anon_sym_set] = ACTIONS(3279), + [anon_sym_declare] = ACTIONS(3279), + [anon_sym_public] = ACTIONS(3279), + [anon_sym_private] = ACTIONS(3279), + [anon_sym_protected] = ACTIONS(3279), + [anon_sym_override] = ACTIONS(3279), + [anon_sym_module] = ACTIONS(3279), + [anon_sym_any] = ACTIONS(3279), + [anon_sym_number] = ACTIONS(3279), + [anon_sym_boolean] = ACTIONS(3279), + [anon_sym_string] = ACTIONS(3279), + [anon_sym_symbol] = ACTIONS(3279), + [anon_sym_object] = ACTIONS(3279), + [anon_sym_abstract] = ACTIONS(3279), + [anon_sym_interface] = ACTIONS(3279), + [anon_sym_enum] = ACTIONS(3279), [sym_html_comment] = ACTIONS(5), }, [1529] = { [sym_comment] = STATE(1529), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), + [ts_builtin_sym_end] = ACTIONS(3533), + [sym_identifier] = ACTIONS(3431), + [anon_sym_export] = ACTIONS(3431), + [anon_sym_type] = ACTIONS(3431), + [anon_sym_namespace] = ACTIONS(3431), + [anon_sym_LBRACE] = ACTIONS(3431), + [anon_sym_RBRACE] = ACTIONS(3431), + [anon_sym_typeof] = ACTIONS(3431), + [anon_sym_import] = ACTIONS(3431), + [anon_sym_with] = ACTIONS(3431), + [anon_sym_var] = ACTIONS(3431), + [anon_sym_let] = ACTIONS(3431), + [anon_sym_const] = ACTIONS(3431), + [anon_sym_BANG] = ACTIONS(3431), + [anon_sym_if] = ACTIONS(3431), + [anon_sym_switch] = ACTIONS(3431), + [anon_sym_for] = ACTIONS(3431), + [anon_sym_LPAREN] = ACTIONS(3431), + [anon_sym_await] = ACTIONS(3431), + [anon_sym_while] = ACTIONS(3431), + [anon_sym_do] = ACTIONS(3431), + [anon_sym_try] = ACTIONS(3431), + [anon_sym_break] = ACTIONS(3431), + [anon_sym_continue] = ACTIONS(3431), + [anon_sym_debugger] = ACTIONS(3431), + [anon_sym_return] = ACTIONS(3431), + [anon_sym_throw] = ACTIONS(3431), + [anon_sym_SEMI] = ACTIONS(3431), + [anon_sym_yield] = ACTIONS(3431), + [anon_sym_LBRACK] = ACTIONS(3431), + [anon_sym_LTtemplate_GT] = ACTIONS(3431), + [anon_sym_DQUOTE] = ACTIONS(3431), + [anon_sym_SQUOTE] = ACTIONS(3431), + [anon_sym_class] = ACTIONS(3431), + [anon_sym_async] = ACTIONS(3431), + [anon_sym_function] = ACTIONS(3431), + [anon_sym_new] = ACTIONS(3431), + [anon_sym_using] = ACTIONS(3431), + [anon_sym_PLUS] = ACTIONS(3431), + [anon_sym_DASH] = ACTIONS(3431), + [anon_sym_SLASH] = ACTIONS(3431), + [anon_sym_LT] = ACTIONS(3431), + [anon_sym_TILDE] = ACTIONS(3431), + [anon_sym_void] = ACTIONS(3431), + [anon_sym_delete] = ACTIONS(3431), + [anon_sym_PLUS_PLUS] = ACTIONS(3431), + [anon_sym_DASH_DASH] = ACTIONS(3431), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3431), + [sym_number] = ACTIONS(3431), + [sym_private_property_identifier] = ACTIONS(3431), + [sym_this] = ACTIONS(3431), + [sym_super] = ACTIONS(3431), + [sym_true] = ACTIONS(3431), + [sym_false] = ACTIONS(3431), + [sym_null] = ACTIONS(3431), + [sym_undefined] = ACTIONS(3431), + [anon_sym_AT] = ACTIONS(3431), + [anon_sym_static] = ACTIONS(3431), + [anon_sym_readonly] = ACTIONS(3431), + [anon_sym_get] = ACTIONS(3431), + [anon_sym_set] = ACTIONS(3431), + [anon_sym_declare] = ACTIONS(3431), + [anon_sym_public] = ACTIONS(3431), + [anon_sym_private] = ACTIONS(3431), + [anon_sym_protected] = ACTIONS(3431), + [anon_sym_override] = ACTIONS(3431), + [anon_sym_module] = ACTIONS(3431), + [anon_sym_any] = ACTIONS(3431), + [anon_sym_number] = ACTIONS(3431), + [anon_sym_boolean] = ACTIONS(3431), + [anon_sym_string] = ACTIONS(3431), + [anon_sym_symbol] = ACTIONS(3431), + [anon_sym_object] = ACTIONS(3431), + [anon_sym_abstract] = ACTIONS(3431), + [anon_sym_interface] = ACTIONS(3431), + [anon_sym_enum] = ACTIONS(3431), [sym_html_comment] = ACTIONS(5), }, [1530] = { [sym_comment] = STATE(1530), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), + [ts_builtin_sym_end] = ACTIONS(3531), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3285), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_debugger] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LTtemplate_GT] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_void] = ACTIONS(3285), + [anon_sym_delete] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), + [anon_sym_BQUOTE] = ACTIONS(3285), + [sym_number] = ACTIONS(3285), + [sym_private_property_identifier] = ACTIONS(3285), + [sym_this] = ACTIONS(3285), + [sym_super] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_null] = ACTIONS(3285), + [sym_undefined] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_get] = ACTIONS(3285), + [anon_sym_set] = ACTIONS(3285), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_any] = ACTIONS(3285), + [anon_sym_number] = ACTIONS(3285), + [anon_sym_boolean] = ACTIONS(3285), + [anon_sym_string] = ACTIONS(3285), + [anon_sym_symbol] = ACTIONS(3285), + [anon_sym_object] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), [sym_html_comment] = ACTIONS(5), }, [1531] = { [sym_comment] = STATE(1531), - [sym_identifier] = ACTIONS(3619), - [anon_sym_export] = ACTIONS(3619), - [anon_sym_default] = ACTIONS(3619), - [anon_sym_type] = ACTIONS(3619), - [anon_sym_namespace] = ACTIONS(3619), - [anon_sym_LBRACE] = ACTIONS(3619), - [anon_sym_RBRACE] = ACTIONS(3619), - [anon_sym_typeof] = ACTIONS(3619), - [anon_sym_import] = ACTIONS(3619), - [anon_sym_with] = ACTIONS(3619), - [anon_sym_var] = ACTIONS(3619), - [anon_sym_let] = ACTIONS(3619), - [anon_sym_const] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_if] = ACTIONS(3619), - [anon_sym_switch] = ACTIONS(3619), - [anon_sym_for] = ACTIONS(3619), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_await] = ACTIONS(3619), - [anon_sym_while] = ACTIONS(3619), - [anon_sym_do] = ACTIONS(3619), - [anon_sym_try] = ACTIONS(3619), - [anon_sym_break] = ACTIONS(3619), - [anon_sym_continue] = ACTIONS(3619), - [anon_sym_debugger] = ACTIONS(3619), - [anon_sym_return] = ACTIONS(3619), - [anon_sym_throw] = ACTIONS(3619), - [anon_sym_SEMI] = ACTIONS(3619), - [anon_sym_case] = ACTIONS(3619), - [anon_sym_yield] = ACTIONS(3619), - [anon_sym_LBRACK] = ACTIONS(3619), - [anon_sym_LTtemplate_GT] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(3619), - [anon_sym_SQUOTE] = ACTIONS(3619), - [anon_sym_class] = ACTIONS(3619), - [anon_sym_async] = ACTIONS(3619), - [anon_sym_function] = ACTIONS(3619), - [anon_sym_new] = ACTIONS(3619), - [anon_sym_using] = ACTIONS(3619), - [anon_sym_PLUS] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_SLASH] = ACTIONS(3619), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_TILDE] = ACTIONS(3619), - [anon_sym_void] = ACTIONS(3619), - [anon_sym_delete] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3619), - [anon_sym_DASH_DASH] = ACTIONS(3619), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3619), - [sym_number] = ACTIONS(3619), - [sym_private_property_identifier] = ACTIONS(3619), - [sym_this] = ACTIONS(3619), - [sym_super] = ACTIONS(3619), - [sym_true] = ACTIONS(3619), - [sym_false] = ACTIONS(3619), - [sym_null] = ACTIONS(3619), - [sym_undefined] = ACTIONS(3619), - [anon_sym_AT] = ACTIONS(3619), - [anon_sym_static] = ACTIONS(3619), - [anon_sym_readonly] = ACTIONS(3619), - [anon_sym_get] = ACTIONS(3619), - [anon_sym_set] = ACTIONS(3619), - [anon_sym_declare] = ACTIONS(3619), - [anon_sym_public] = ACTIONS(3619), - [anon_sym_private] = ACTIONS(3619), - [anon_sym_protected] = ACTIONS(3619), - [anon_sym_override] = ACTIONS(3619), - [anon_sym_module] = ACTIONS(3619), - [anon_sym_any] = ACTIONS(3619), - [anon_sym_number] = ACTIONS(3619), - [anon_sym_boolean] = ACTIONS(3619), - [anon_sym_string] = ACTIONS(3619), - [anon_sym_symbol] = ACTIONS(3619), - [anon_sym_object] = ACTIONS(3619), - [anon_sym_abstract] = ACTIONS(3619), - [anon_sym_interface] = ACTIONS(3619), - [anon_sym_enum] = ACTIONS(3619), + [ts_builtin_sym_end] = ACTIONS(3531), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3285), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_debugger] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LTtemplate_GT] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_void] = ACTIONS(3285), + [anon_sym_delete] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3285), + [sym_number] = ACTIONS(3285), + [sym_private_property_identifier] = ACTIONS(3285), + [sym_this] = ACTIONS(3285), + [sym_super] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_null] = ACTIONS(3285), + [sym_undefined] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_get] = ACTIONS(3285), + [anon_sym_set] = ACTIONS(3285), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_any] = ACTIONS(3285), + [anon_sym_number] = ACTIONS(3285), + [anon_sym_boolean] = ACTIONS(3285), + [anon_sym_string] = ACTIONS(3285), + [anon_sym_symbol] = ACTIONS(3285), + [anon_sym_object] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), [sym_html_comment] = ACTIONS(5), }, [1532] = { [sym_comment] = STATE(1532), - [sym_identifier] = ACTIONS(3251), - [anon_sym_export] = ACTIONS(3251), - [anon_sym_default] = ACTIONS(3251), - [anon_sym_type] = ACTIONS(3251), - [anon_sym_namespace] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_RBRACE] = ACTIONS(3251), - [anon_sym_typeof] = ACTIONS(3251), - [anon_sym_import] = ACTIONS(3251), - [anon_sym_with] = ACTIONS(3251), - [anon_sym_var] = ACTIONS(3251), - [anon_sym_let] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_switch] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_await] = ACTIONS(3251), - [anon_sym_while] = ACTIONS(3251), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_try] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_debugger] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_throw] = ACTIONS(3251), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_case] = ACTIONS(3251), - [anon_sym_yield] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_LTtemplate_GT] = ACTIONS(3251), - [anon_sym_DQUOTE] = ACTIONS(3251), - [anon_sym_SQUOTE] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_async] = ACTIONS(3251), - [anon_sym_function] = ACTIONS(3251), - [anon_sym_new] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_SLASH] = ACTIONS(3251), - [anon_sym_LT] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_void] = ACTIONS(3251), - [anon_sym_delete] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3251), - [sym_number] = ACTIONS(3251), - [sym_private_property_identifier] = ACTIONS(3251), - [sym_this] = ACTIONS(3251), - [sym_super] = ACTIONS(3251), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [sym_null] = ACTIONS(3251), - [sym_undefined] = ACTIONS(3251), - [anon_sym_AT] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_readonly] = ACTIONS(3251), - [anon_sym_get] = ACTIONS(3251), - [anon_sym_set] = ACTIONS(3251), - [anon_sym_declare] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_protected] = ACTIONS(3251), - [anon_sym_override] = ACTIONS(3251), - [anon_sym_module] = ACTIONS(3251), - [anon_sym_any] = ACTIONS(3251), - [anon_sym_number] = ACTIONS(3251), - [anon_sym_boolean] = ACTIONS(3251), - [anon_sym_string] = ACTIONS(3251), - [anon_sym_symbol] = ACTIONS(3251), - [anon_sym_object] = ACTIONS(3251), - [anon_sym_abstract] = ACTIONS(3251), - [anon_sym_interface] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), + [ts_builtin_sym_end] = ACTIONS(2252), + [sym_identifier] = ACTIONS(2250), + [anon_sym_export] = ACTIONS(2250), + [anon_sym_type] = ACTIONS(2250), + [anon_sym_namespace] = ACTIONS(2250), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(2250), + [anon_sym_import] = ACTIONS(2250), + [anon_sym_with] = ACTIONS(2250), + [anon_sym_var] = ACTIONS(2250), + [anon_sym_let] = ACTIONS(2250), + [anon_sym_const] = ACTIONS(2250), + [anon_sym_BANG] = ACTIONS(2250), + [anon_sym_if] = ACTIONS(2250), + [anon_sym_switch] = ACTIONS(2250), + [anon_sym_for] = ACTIONS(2250), + [anon_sym_LPAREN] = ACTIONS(2250), + [anon_sym_await] = ACTIONS(2250), + [anon_sym_while] = ACTIONS(2250), + [anon_sym_do] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2250), + [anon_sym_break] = ACTIONS(2250), + [anon_sym_continue] = ACTIONS(2250), + [anon_sym_debugger] = ACTIONS(2250), + [anon_sym_return] = ACTIONS(2250), + [anon_sym_throw] = ACTIONS(2250), + [anon_sym_SEMI] = ACTIONS(2250), + [anon_sym_yield] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(2250), + [anon_sym_LTtemplate_GT] = ACTIONS(2250), + [anon_sym_DQUOTE] = ACTIONS(2250), + [anon_sym_SQUOTE] = ACTIONS(2250), + [anon_sym_class] = ACTIONS(2250), + [anon_sym_async] = ACTIONS(2250), + [anon_sym_function] = ACTIONS(2250), + [anon_sym_new] = ACTIONS(2250), + [anon_sym_using] = ACTIONS(2250), + [anon_sym_PLUS] = ACTIONS(2250), + [anon_sym_DASH] = ACTIONS(2250), + [anon_sym_SLASH] = ACTIONS(2250), + [anon_sym_LT] = ACTIONS(2250), + [anon_sym_TILDE] = ACTIONS(2250), + [anon_sym_void] = ACTIONS(2250), + [anon_sym_delete] = ACTIONS(2250), + [anon_sym_PLUS_PLUS] = ACTIONS(2250), + [anon_sym_DASH_DASH] = ACTIONS(2250), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2250), + [sym_number] = ACTIONS(2250), + [sym_private_property_identifier] = ACTIONS(2250), + [sym_this] = ACTIONS(2250), + [sym_super] = ACTIONS(2250), + [sym_true] = ACTIONS(2250), + [sym_false] = ACTIONS(2250), + [sym_null] = ACTIONS(2250), + [sym_undefined] = ACTIONS(2250), + [anon_sym_AT] = ACTIONS(2250), + [anon_sym_static] = ACTIONS(2250), + [anon_sym_readonly] = ACTIONS(2250), + [anon_sym_get] = ACTIONS(2250), + [anon_sym_set] = ACTIONS(2250), + [anon_sym_declare] = ACTIONS(2250), + [anon_sym_public] = ACTIONS(2250), + [anon_sym_private] = ACTIONS(2250), + [anon_sym_protected] = ACTIONS(2250), + [anon_sym_override] = ACTIONS(2250), + [anon_sym_module] = ACTIONS(2250), + [anon_sym_any] = ACTIONS(2250), + [anon_sym_number] = ACTIONS(2250), + [anon_sym_boolean] = ACTIONS(2250), + [anon_sym_string] = ACTIONS(2250), + [anon_sym_symbol] = ACTIONS(2250), + [anon_sym_object] = ACTIONS(2250), + [anon_sym_abstract] = ACTIONS(2250), + [anon_sym_interface] = ACTIONS(2250), + [anon_sym_enum] = ACTIONS(2250), [sym_html_comment] = ACTIONS(5), }, [1533] = { [sym_comment] = STATE(1533), - [sym_identifier] = ACTIONS(3241), - [anon_sym_export] = ACTIONS(3241), - [anon_sym_default] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3241), - [anon_sym_namespace] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_typeof] = ACTIONS(3241), - [anon_sym_import] = ACTIONS(3241), - [anon_sym_with] = ACTIONS(3241), - [anon_sym_var] = ACTIONS(3241), - [anon_sym_let] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_BANG] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym_await] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_try] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_debugger] = ACTIONS(3241), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_throw] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym_case] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_LTtemplate_GT] = ACTIONS(3241), - [anon_sym_DQUOTE] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3241), - [anon_sym_class] = ACTIONS(3241), - [anon_sym_async] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3241), - [anon_sym_using] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_SLASH] = ACTIONS(3241), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_void] = ACTIONS(3241), - [anon_sym_delete] = ACTIONS(3241), - [anon_sym_PLUS_PLUS] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3241), + [ts_builtin_sym_end] = ACTIONS(3571), + [sym_identifier] = ACTIONS(3403), + [anon_sym_export] = ACTIONS(3403), + [anon_sym_type] = ACTIONS(3403), + [anon_sym_namespace] = ACTIONS(3403), + [anon_sym_LBRACE] = ACTIONS(3403), + [anon_sym_RBRACE] = ACTIONS(3403), + [anon_sym_typeof] = ACTIONS(3403), + [anon_sym_import] = ACTIONS(3403), + [anon_sym_with] = ACTIONS(3403), + [anon_sym_var] = ACTIONS(3403), + [anon_sym_let] = ACTIONS(3403), + [anon_sym_const] = ACTIONS(3403), + [anon_sym_BANG] = ACTIONS(3403), + [anon_sym_if] = ACTIONS(3403), + [anon_sym_switch] = ACTIONS(3403), + [anon_sym_for] = ACTIONS(3403), + [anon_sym_LPAREN] = ACTIONS(3403), + [anon_sym_await] = ACTIONS(3403), + [anon_sym_while] = ACTIONS(3403), + [anon_sym_do] = ACTIONS(3403), + [anon_sym_try] = ACTIONS(3403), + [anon_sym_break] = ACTIONS(3403), + [anon_sym_continue] = ACTIONS(3403), + [anon_sym_debugger] = ACTIONS(3403), + [anon_sym_return] = ACTIONS(3403), + [anon_sym_throw] = ACTIONS(3403), + [anon_sym_SEMI] = ACTIONS(3403), + [anon_sym_yield] = ACTIONS(3403), + [anon_sym_LBRACK] = ACTIONS(3403), + [anon_sym_LTtemplate_GT] = ACTIONS(3403), + [anon_sym_DQUOTE] = ACTIONS(3403), + [anon_sym_SQUOTE] = ACTIONS(3403), + [anon_sym_class] = ACTIONS(3403), + [anon_sym_async] = ACTIONS(3403), + [anon_sym_function] = ACTIONS(3403), + [anon_sym_new] = ACTIONS(3403), + [anon_sym_using] = ACTIONS(3403), + [anon_sym_PLUS] = ACTIONS(3403), + [anon_sym_DASH] = ACTIONS(3403), + [anon_sym_SLASH] = ACTIONS(3403), + [anon_sym_LT] = ACTIONS(3403), + [anon_sym_TILDE] = ACTIONS(3403), + [anon_sym_void] = ACTIONS(3403), + [anon_sym_delete] = ACTIONS(3403), + [anon_sym_PLUS_PLUS] = ACTIONS(3403), + [anon_sym_DASH_DASH] = ACTIONS(3403), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3241), - [sym_number] = ACTIONS(3241), - [sym_private_property_identifier] = ACTIONS(3241), - [sym_this] = ACTIONS(3241), - [sym_super] = ACTIONS(3241), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [sym_null] = ACTIONS(3241), - [sym_undefined] = ACTIONS(3241), - [anon_sym_AT] = ACTIONS(3241), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_readonly] = ACTIONS(3241), - [anon_sym_get] = ACTIONS(3241), - [anon_sym_set] = ACTIONS(3241), - [anon_sym_declare] = ACTIONS(3241), - [anon_sym_public] = ACTIONS(3241), - [anon_sym_private] = ACTIONS(3241), - [anon_sym_protected] = ACTIONS(3241), - [anon_sym_override] = ACTIONS(3241), - [anon_sym_module] = ACTIONS(3241), - [anon_sym_any] = ACTIONS(3241), - [anon_sym_number] = ACTIONS(3241), - [anon_sym_boolean] = ACTIONS(3241), - [anon_sym_string] = ACTIONS(3241), - [anon_sym_symbol] = ACTIONS(3241), - [anon_sym_object] = ACTIONS(3241), - [anon_sym_abstract] = ACTIONS(3241), - [anon_sym_interface] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), + [anon_sym_BQUOTE] = ACTIONS(3403), + [sym_number] = ACTIONS(3403), + [sym_private_property_identifier] = ACTIONS(3403), + [sym_this] = ACTIONS(3403), + [sym_super] = ACTIONS(3403), + [sym_true] = ACTIONS(3403), + [sym_false] = ACTIONS(3403), + [sym_null] = ACTIONS(3403), + [sym_undefined] = ACTIONS(3403), + [anon_sym_AT] = ACTIONS(3403), + [anon_sym_static] = ACTIONS(3403), + [anon_sym_readonly] = ACTIONS(3403), + [anon_sym_get] = ACTIONS(3403), + [anon_sym_set] = ACTIONS(3403), + [anon_sym_declare] = ACTIONS(3403), + [anon_sym_public] = ACTIONS(3403), + [anon_sym_private] = ACTIONS(3403), + [anon_sym_protected] = ACTIONS(3403), + [anon_sym_override] = ACTIONS(3403), + [anon_sym_module] = ACTIONS(3403), + [anon_sym_any] = ACTIONS(3403), + [anon_sym_number] = ACTIONS(3403), + [anon_sym_boolean] = ACTIONS(3403), + [anon_sym_string] = ACTIONS(3403), + [anon_sym_symbol] = ACTIONS(3403), + [anon_sym_object] = ACTIONS(3403), + [anon_sym_abstract] = ACTIONS(3403), + [anon_sym_interface] = ACTIONS(3403), + [anon_sym_enum] = ACTIONS(3403), [sym_html_comment] = ACTIONS(5), }, [1534] = { [sym_comment] = STATE(1534), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [ts_builtin_sym_end] = ACTIONS(3505), + [sym_identifier] = ACTIONS(3401), + [anon_sym_export] = ACTIONS(3401), + [anon_sym_type] = ACTIONS(3401), + [anon_sym_namespace] = ACTIONS(3401), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_RBRACE] = ACTIONS(3401), + [anon_sym_typeof] = ACTIONS(3401), + [anon_sym_import] = ACTIONS(3401), + [anon_sym_with] = ACTIONS(3401), + [anon_sym_var] = ACTIONS(3401), + [anon_sym_let] = ACTIONS(3401), + [anon_sym_const] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_if] = ACTIONS(3401), + [anon_sym_switch] = ACTIONS(3401), + [anon_sym_for] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_await] = ACTIONS(3401), + [anon_sym_while] = ACTIONS(3401), + [anon_sym_do] = ACTIONS(3401), + [anon_sym_try] = ACTIONS(3401), + [anon_sym_break] = ACTIONS(3401), + [anon_sym_continue] = ACTIONS(3401), + [anon_sym_debugger] = ACTIONS(3401), + [anon_sym_return] = ACTIONS(3401), + [anon_sym_throw] = ACTIONS(3401), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_yield] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LTtemplate_GT] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3401), + [anon_sym_SQUOTE] = ACTIONS(3401), + [anon_sym_class] = ACTIONS(3401), + [anon_sym_async] = ACTIONS(3401), + [anon_sym_function] = ACTIONS(3401), + [anon_sym_new] = ACTIONS(3401), + [anon_sym_using] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3401), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_void] = ACTIONS(3401), + [anon_sym_delete] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH] = ACTIONS(3401), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1535] = { - [sym_comment] = STATE(1535), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3401), + [sym_number] = ACTIONS(3401), + [sym_private_property_identifier] = ACTIONS(3401), + [sym_this] = ACTIONS(3401), + [sym_super] = ACTIONS(3401), + [sym_true] = ACTIONS(3401), + [sym_false] = ACTIONS(3401), + [sym_null] = ACTIONS(3401), + [sym_undefined] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3401), + [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_abstract] = ACTIONS(3401), + [anon_sym_interface] = ACTIONS(3401), + [anon_sym_enum] = ACTIONS(3401), + [sym_html_comment] = ACTIONS(5), + }, + [1535] = { + [sym_comment] = STATE(1535), + [ts_builtin_sym_end] = ACTIONS(3505), + [sym_identifier] = ACTIONS(3401), + [anon_sym_export] = ACTIONS(3401), + [anon_sym_type] = ACTIONS(3401), + [anon_sym_namespace] = ACTIONS(3401), + [anon_sym_LBRACE] = ACTIONS(3401), + [anon_sym_RBRACE] = ACTIONS(3401), + [anon_sym_typeof] = ACTIONS(3401), + [anon_sym_import] = ACTIONS(3401), + [anon_sym_with] = ACTIONS(3401), + [anon_sym_var] = ACTIONS(3401), + [anon_sym_let] = ACTIONS(3401), + [anon_sym_const] = ACTIONS(3401), + [anon_sym_BANG] = ACTIONS(3401), + [anon_sym_if] = ACTIONS(3401), + [anon_sym_switch] = ACTIONS(3401), + [anon_sym_for] = ACTIONS(3401), + [anon_sym_LPAREN] = ACTIONS(3401), + [anon_sym_await] = ACTIONS(3401), + [anon_sym_while] = ACTIONS(3401), + [anon_sym_do] = ACTIONS(3401), + [anon_sym_try] = ACTIONS(3401), + [anon_sym_break] = ACTIONS(3401), + [anon_sym_continue] = ACTIONS(3401), + [anon_sym_debugger] = ACTIONS(3401), + [anon_sym_return] = ACTIONS(3401), + [anon_sym_throw] = ACTIONS(3401), + [anon_sym_SEMI] = ACTIONS(3401), + [anon_sym_yield] = ACTIONS(3401), + [anon_sym_LBRACK] = ACTIONS(3401), + [anon_sym_LTtemplate_GT] = ACTIONS(3401), + [anon_sym_DQUOTE] = ACTIONS(3401), + [anon_sym_SQUOTE] = ACTIONS(3401), + [anon_sym_class] = ACTIONS(3401), + [anon_sym_async] = ACTIONS(3401), + [anon_sym_function] = ACTIONS(3401), + [anon_sym_new] = ACTIONS(3401), + [anon_sym_using] = ACTIONS(3401), + [anon_sym_PLUS] = ACTIONS(3401), + [anon_sym_DASH] = ACTIONS(3401), + [anon_sym_SLASH] = ACTIONS(3401), + [anon_sym_LT] = ACTIONS(3401), + [anon_sym_TILDE] = ACTIONS(3401), + [anon_sym_void] = ACTIONS(3401), + [anon_sym_delete] = ACTIONS(3401), + [anon_sym_PLUS_PLUS] = ACTIONS(3401), + [anon_sym_DASH_DASH] = ACTIONS(3401), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3401), + [sym_number] = ACTIONS(3401), + [sym_private_property_identifier] = ACTIONS(3401), + [sym_this] = ACTIONS(3401), + [sym_super] = ACTIONS(3401), + [sym_true] = ACTIONS(3401), + [sym_false] = ACTIONS(3401), + [sym_null] = ACTIONS(3401), + [sym_undefined] = ACTIONS(3401), + [anon_sym_AT] = ACTIONS(3401), + [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_abstract] = ACTIONS(3401), + [anon_sym_interface] = ACTIONS(3401), + [anon_sym_enum] = ACTIONS(3401), + [sym_html_comment] = ACTIONS(5), + }, + [1536] = { + [sym_comment] = STATE(1536), + [ts_builtin_sym_end] = ACTIONS(3531), + [sym_identifier] = ACTIONS(3285), + [anon_sym_export] = ACTIONS(3285), + [anon_sym_type] = ACTIONS(3285), + [anon_sym_namespace] = ACTIONS(3285), + [anon_sym_LBRACE] = ACTIONS(3285), + [anon_sym_RBRACE] = ACTIONS(3285), + [anon_sym_typeof] = ACTIONS(3285), + [anon_sym_import] = ACTIONS(3285), + [anon_sym_with] = ACTIONS(3285), + [anon_sym_var] = ACTIONS(3285), + [anon_sym_let] = ACTIONS(3285), + [anon_sym_const] = ACTIONS(3285), + [anon_sym_BANG] = ACTIONS(3285), + [anon_sym_if] = ACTIONS(3285), + [anon_sym_switch] = ACTIONS(3285), + [anon_sym_for] = ACTIONS(3285), + [anon_sym_LPAREN] = ACTIONS(3285), + [anon_sym_await] = ACTIONS(3285), + [anon_sym_while] = ACTIONS(3285), + [anon_sym_do] = ACTIONS(3285), + [anon_sym_try] = ACTIONS(3285), + [anon_sym_break] = ACTIONS(3285), + [anon_sym_continue] = ACTIONS(3285), + [anon_sym_debugger] = ACTIONS(3285), + [anon_sym_return] = ACTIONS(3285), + [anon_sym_throw] = ACTIONS(3285), + [anon_sym_SEMI] = ACTIONS(3285), + [anon_sym_yield] = ACTIONS(3285), + [anon_sym_LBRACK] = ACTIONS(3285), + [anon_sym_LTtemplate_GT] = ACTIONS(3285), + [anon_sym_DQUOTE] = ACTIONS(3285), + [anon_sym_SQUOTE] = ACTIONS(3285), + [anon_sym_class] = ACTIONS(3285), + [anon_sym_async] = ACTIONS(3285), + [anon_sym_function] = ACTIONS(3285), + [anon_sym_new] = ACTIONS(3285), + [anon_sym_using] = ACTIONS(3285), + [anon_sym_PLUS] = ACTIONS(3285), + [anon_sym_DASH] = ACTIONS(3285), + [anon_sym_SLASH] = ACTIONS(3285), + [anon_sym_LT] = ACTIONS(3285), + [anon_sym_TILDE] = ACTIONS(3285), + [anon_sym_void] = ACTIONS(3285), + [anon_sym_delete] = ACTIONS(3285), + [anon_sym_PLUS_PLUS] = ACTIONS(3285), + [anon_sym_DASH_DASH] = ACTIONS(3285), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3285), + [sym_number] = ACTIONS(3285), + [sym_private_property_identifier] = ACTIONS(3285), + [sym_this] = ACTIONS(3285), + [sym_super] = ACTIONS(3285), + [sym_true] = ACTIONS(3285), + [sym_false] = ACTIONS(3285), + [sym_null] = ACTIONS(3285), + [sym_undefined] = ACTIONS(3285), + [anon_sym_AT] = ACTIONS(3285), + [anon_sym_static] = ACTIONS(3285), + [anon_sym_readonly] = ACTIONS(3285), + [anon_sym_get] = ACTIONS(3285), + [anon_sym_set] = ACTIONS(3285), + [anon_sym_declare] = ACTIONS(3285), + [anon_sym_public] = ACTIONS(3285), + [anon_sym_private] = ACTIONS(3285), + [anon_sym_protected] = ACTIONS(3285), + [anon_sym_override] = ACTIONS(3285), + [anon_sym_module] = ACTIONS(3285), + [anon_sym_any] = ACTIONS(3285), + [anon_sym_number] = ACTIONS(3285), + [anon_sym_boolean] = ACTIONS(3285), + [anon_sym_string] = ACTIONS(3285), + [anon_sym_symbol] = ACTIONS(3285), + [anon_sym_object] = ACTIONS(3285), + [anon_sym_abstract] = ACTIONS(3285), + [anon_sym_interface] = ACTIONS(3285), + [anon_sym_enum] = ACTIONS(3285), + [sym_html_comment] = ACTIONS(5), + }, + [1537] = { + [sym_comment] = STATE(1537), + [ts_builtin_sym_end] = ACTIONS(3519), + [sym_identifier] = ACTIONS(3331), + [anon_sym_export] = ACTIONS(3331), + [anon_sym_type] = ACTIONS(3331), + [anon_sym_namespace] = ACTIONS(3331), + [anon_sym_LBRACE] = ACTIONS(3331), + [anon_sym_RBRACE] = ACTIONS(3331), + [anon_sym_typeof] = ACTIONS(3331), + [anon_sym_import] = ACTIONS(3331), + [anon_sym_with] = ACTIONS(3331), + [anon_sym_var] = ACTIONS(3331), + [anon_sym_let] = ACTIONS(3331), + [anon_sym_const] = ACTIONS(3331), + [anon_sym_BANG] = ACTIONS(3331), + [anon_sym_if] = ACTIONS(3331), + [anon_sym_switch] = ACTIONS(3331), + [anon_sym_for] = ACTIONS(3331), + [anon_sym_LPAREN] = ACTIONS(3331), + [anon_sym_await] = ACTIONS(3331), + [anon_sym_while] = ACTIONS(3331), + [anon_sym_do] = ACTIONS(3331), + [anon_sym_try] = ACTIONS(3331), + [anon_sym_break] = ACTIONS(3331), + [anon_sym_continue] = ACTIONS(3331), + [anon_sym_debugger] = ACTIONS(3331), + [anon_sym_return] = ACTIONS(3331), + [anon_sym_throw] = ACTIONS(3331), + [anon_sym_SEMI] = ACTIONS(3331), + [anon_sym_yield] = ACTIONS(3331), + [anon_sym_LBRACK] = ACTIONS(3331), + [anon_sym_LTtemplate_GT] = ACTIONS(3331), + [anon_sym_DQUOTE] = ACTIONS(3331), + [anon_sym_SQUOTE] = ACTIONS(3331), + [anon_sym_class] = ACTIONS(3331), + [anon_sym_async] = ACTIONS(3331), + [anon_sym_function] = ACTIONS(3331), + [anon_sym_new] = ACTIONS(3331), + [anon_sym_using] = ACTIONS(3331), + [anon_sym_PLUS] = ACTIONS(3331), + [anon_sym_DASH] = ACTIONS(3331), + [anon_sym_SLASH] = ACTIONS(3331), + [anon_sym_LT] = ACTIONS(3331), + [anon_sym_TILDE] = ACTIONS(3331), + [anon_sym_void] = ACTIONS(3331), + [anon_sym_delete] = ACTIONS(3331), + [anon_sym_PLUS_PLUS] = ACTIONS(3331), + [anon_sym_DASH_DASH] = ACTIONS(3331), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3331), + [sym_number] = ACTIONS(3331), + [sym_private_property_identifier] = ACTIONS(3331), + [sym_this] = ACTIONS(3331), + [sym_super] = ACTIONS(3331), + [sym_true] = ACTIONS(3331), + [sym_false] = ACTIONS(3331), + [sym_null] = ACTIONS(3331), + [sym_undefined] = ACTIONS(3331), + [anon_sym_AT] = ACTIONS(3331), + [anon_sym_static] = ACTIONS(3331), + [anon_sym_readonly] = ACTIONS(3331), + [anon_sym_get] = ACTIONS(3331), + [anon_sym_set] = ACTIONS(3331), + [anon_sym_declare] = ACTIONS(3331), + [anon_sym_public] = ACTIONS(3331), + [anon_sym_private] = ACTIONS(3331), + [anon_sym_protected] = ACTIONS(3331), + [anon_sym_override] = ACTIONS(3331), + [anon_sym_module] = ACTIONS(3331), + [anon_sym_any] = ACTIONS(3331), + [anon_sym_number] = ACTIONS(3331), + [anon_sym_boolean] = ACTIONS(3331), + [anon_sym_string] = ACTIONS(3331), + [anon_sym_symbol] = ACTIONS(3331), + [anon_sym_object] = ACTIONS(3331), + [anon_sym_abstract] = ACTIONS(3331), + [anon_sym_interface] = ACTIONS(3331), + [anon_sym_enum] = ACTIONS(3331), + [sym_html_comment] = ACTIONS(5), + }, + [1538] = { + [sym_comment] = STATE(1538), + [ts_builtin_sym_end] = ACTIONS(3607), + [sym_identifier] = ACTIONS(3319), + [anon_sym_export] = ACTIONS(3319), + [anon_sym_type] = ACTIONS(3319), + [anon_sym_namespace] = ACTIONS(3319), + [anon_sym_LBRACE] = ACTIONS(3319), + [anon_sym_RBRACE] = ACTIONS(3319), + [anon_sym_typeof] = ACTIONS(3319), + [anon_sym_import] = ACTIONS(3319), + [anon_sym_with] = ACTIONS(3319), + [anon_sym_var] = ACTIONS(3319), + [anon_sym_let] = ACTIONS(3319), + [anon_sym_const] = ACTIONS(3319), + [anon_sym_BANG] = ACTIONS(3319), + [anon_sym_if] = ACTIONS(3319), + [anon_sym_switch] = ACTIONS(3319), + [anon_sym_for] = ACTIONS(3319), + [anon_sym_LPAREN] = ACTIONS(3319), + [anon_sym_await] = ACTIONS(3319), + [anon_sym_while] = ACTIONS(3319), + [anon_sym_do] = ACTIONS(3319), + [anon_sym_try] = ACTIONS(3319), + [anon_sym_break] = ACTIONS(3319), + [anon_sym_continue] = ACTIONS(3319), + [anon_sym_debugger] = ACTIONS(3319), + [anon_sym_return] = ACTIONS(3319), + [anon_sym_throw] = ACTIONS(3319), + [anon_sym_SEMI] = ACTIONS(3319), + [anon_sym_yield] = ACTIONS(3319), + [anon_sym_LBRACK] = ACTIONS(3319), + [anon_sym_LTtemplate_GT] = ACTIONS(3319), + [anon_sym_DQUOTE] = ACTIONS(3319), + [anon_sym_SQUOTE] = ACTIONS(3319), + [anon_sym_class] = ACTIONS(3319), + [anon_sym_async] = ACTIONS(3319), + [anon_sym_function] = ACTIONS(3319), + [anon_sym_new] = ACTIONS(3319), + [anon_sym_using] = ACTIONS(3319), + [anon_sym_PLUS] = ACTIONS(3319), + [anon_sym_DASH] = ACTIONS(3319), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_LT] = ACTIONS(3319), + [anon_sym_TILDE] = ACTIONS(3319), + [anon_sym_void] = ACTIONS(3319), + [anon_sym_delete] = ACTIONS(3319), + [anon_sym_PLUS_PLUS] = ACTIONS(3319), + [anon_sym_DASH_DASH] = ACTIONS(3319), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3319), + [sym_number] = ACTIONS(3319), + [sym_private_property_identifier] = ACTIONS(3319), + [sym_this] = ACTIONS(3319), + [sym_super] = ACTIONS(3319), + [sym_true] = ACTIONS(3319), + [sym_false] = ACTIONS(3319), + [sym_null] = ACTIONS(3319), + [sym_undefined] = ACTIONS(3319), + [anon_sym_AT] = ACTIONS(3319), + [anon_sym_static] = ACTIONS(3319), + [anon_sym_readonly] = ACTIONS(3319), + [anon_sym_get] = ACTIONS(3319), + [anon_sym_set] = ACTIONS(3319), + [anon_sym_declare] = ACTIONS(3319), + [anon_sym_public] = ACTIONS(3319), + [anon_sym_private] = ACTIONS(3319), + [anon_sym_protected] = ACTIONS(3319), + [anon_sym_override] = ACTIONS(3319), + [anon_sym_module] = ACTIONS(3319), + [anon_sym_any] = ACTIONS(3319), + [anon_sym_number] = ACTIONS(3319), + [anon_sym_boolean] = ACTIONS(3319), + [anon_sym_string] = ACTIONS(3319), + [anon_sym_symbol] = ACTIONS(3319), + [anon_sym_object] = ACTIONS(3319), + [anon_sym_abstract] = ACTIONS(3319), + [anon_sym_interface] = ACTIONS(3319), + [anon_sym_enum] = ACTIONS(3319), + [sym_html_comment] = ACTIONS(5), + }, + [1539] = { + [sym_comment] = STATE(1539), + [ts_builtin_sym_end] = ACTIONS(3529), + [sym_identifier] = ACTIONS(3299), + [anon_sym_export] = ACTIONS(3299), + [anon_sym_type] = ACTIONS(3299), + [anon_sym_namespace] = ACTIONS(3299), + [anon_sym_LBRACE] = ACTIONS(3299), + [anon_sym_RBRACE] = ACTIONS(3299), + [anon_sym_typeof] = ACTIONS(3299), + [anon_sym_import] = ACTIONS(3299), + [anon_sym_with] = ACTIONS(3299), + [anon_sym_var] = ACTIONS(3299), + [anon_sym_let] = ACTIONS(3299), + [anon_sym_const] = ACTIONS(3299), + [anon_sym_BANG] = ACTIONS(3299), + [anon_sym_if] = ACTIONS(3299), + [anon_sym_switch] = ACTIONS(3299), + [anon_sym_for] = ACTIONS(3299), + [anon_sym_LPAREN] = ACTIONS(3299), + [anon_sym_await] = ACTIONS(3299), + [anon_sym_while] = ACTIONS(3299), + [anon_sym_do] = ACTIONS(3299), + [anon_sym_try] = ACTIONS(3299), + [anon_sym_break] = ACTIONS(3299), + [anon_sym_continue] = ACTIONS(3299), + [anon_sym_debugger] = ACTIONS(3299), + [anon_sym_return] = ACTIONS(3299), + [anon_sym_throw] = ACTIONS(3299), + [anon_sym_SEMI] = ACTIONS(3299), + [anon_sym_yield] = ACTIONS(3299), + [anon_sym_LBRACK] = ACTIONS(3299), + [anon_sym_LTtemplate_GT] = ACTIONS(3299), + [anon_sym_DQUOTE] = ACTIONS(3299), + [anon_sym_SQUOTE] = ACTIONS(3299), + [anon_sym_class] = ACTIONS(3299), + [anon_sym_async] = ACTIONS(3299), + [anon_sym_function] = ACTIONS(3299), + [anon_sym_new] = ACTIONS(3299), + [anon_sym_using] = ACTIONS(3299), + [anon_sym_PLUS] = ACTIONS(3299), + [anon_sym_DASH] = ACTIONS(3299), + [anon_sym_SLASH] = ACTIONS(3299), + [anon_sym_LT] = ACTIONS(3299), + [anon_sym_TILDE] = ACTIONS(3299), + [anon_sym_void] = ACTIONS(3299), + [anon_sym_delete] = ACTIONS(3299), + [anon_sym_PLUS_PLUS] = ACTIONS(3299), + [anon_sym_DASH_DASH] = ACTIONS(3299), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3299), + [sym_number] = ACTIONS(3299), + [sym_private_property_identifier] = ACTIONS(3299), + [sym_this] = ACTIONS(3299), + [sym_super] = ACTIONS(3299), + [sym_true] = ACTIONS(3299), + [sym_false] = ACTIONS(3299), + [sym_null] = ACTIONS(3299), + [sym_undefined] = ACTIONS(3299), + [anon_sym_AT] = ACTIONS(3299), + [anon_sym_static] = ACTIONS(3299), + [anon_sym_readonly] = ACTIONS(3299), + [anon_sym_get] = ACTIONS(3299), + [anon_sym_set] = ACTIONS(3299), + [anon_sym_declare] = ACTIONS(3299), + [anon_sym_public] = ACTIONS(3299), + [anon_sym_private] = ACTIONS(3299), + [anon_sym_protected] = ACTIONS(3299), + [anon_sym_override] = ACTIONS(3299), + [anon_sym_module] = ACTIONS(3299), + [anon_sym_any] = ACTIONS(3299), + [anon_sym_number] = ACTIONS(3299), + [anon_sym_boolean] = ACTIONS(3299), + [anon_sym_string] = ACTIONS(3299), + [anon_sym_symbol] = ACTIONS(3299), + [anon_sym_object] = ACTIONS(3299), + [anon_sym_abstract] = ACTIONS(3299), + [anon_sym_interface] = ACTIONS(3299), + [anon_sym_enum] = ACTIONS(3299), + [sym_html_comment] = ACTIONS(5), + }, + [1540] = { + [sym_comment] = STATE(1540), + [ts_builtin_sym_end] = ACTIONS(2198), + [sym_identifier] = ACTIONS(2196), + [anon_sym_export] = ACTIONS(2196), + [anon_sym_type] = ACTIONS(2196), + [anon_sym_namespace] = ACTIONS(2196), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_typeof] = ACTIONS(2196), + [anon_sym_import] = ACTIONS(2196), + [anon_sym_with] = ACTIONS(2196), + [anon_sym_var] = ACTIONS(2196), + [anon_sym_let] = ACTIONS(2196), + [anon_sym_const] = ACTIONS(2196), + [anon_sym_BANG] = ACTIONS(2196), + [anon_sym_if] = ACTIONS(2196), + [anon_sym_switch] = ACTIONS(2196), + [anon_sym_for] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_await] = ACTIONS(2196), + [anon_sym_while] = ACTIONS(2196), + [anon_sym_do] = ACTIONS(2196), + [anon_sym_try] = ACTIONS(2196), + [anon_sym_break] = ACTIONS(2196), + [anon_sym_continue] = ACTIONS(2196), + [anon_sym_debugger] = ACTIONS(2196), + [anon_sym_return] = ACTIONS(2196), + [anon_sym_throw] = ACTIONS(2196), + [anon_sym_SEMI] = ACTIONS(2196), + [anon_sym_yield] = ACTIONS(2196), + [anon_sym_LBRACK] = ACTIONS(2196), + [anon_sym_LTtemplate_GT] = ACTIONS(2196), + [anon_sym_DQUOTE] = ACTIONS(2196), + [anon_sym_SQUOTE] = ACTIONS(2196), + [anon_sym_class] = ACTIONS(2196), + [anon_sym_async] = ACTIONS(2196), + [anon_sym_function] = ACTIONS(2196), + [anon_sym_new] = ACTIONS(2196), + [anon_sym_using] = ACTIONS(2196), + [anon_sym_PLUS] = ACTIONS(2196), + [anon_sym_DASH] = ACTIONS(2196), + [anon_sym_SLASH] = ACTIONS(2196), + [anon_sym_LT] = ACTIONS(2196), + [anon_sym_TILDE] = ACTIONS(2196), + [anon_sym_void] = ACTIONS(2196), + [anon_sym_delete] = ACTIONS(2196), + [anon_sym_PLUS_PLUS] = ACTIONS(2196), + [anon_sym_DASH_DASH] = ACTIONS(2196), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2196), + [sym_number] = ACTIONS(2196), + [sym_private_property_identifier] = ACTIONS(2196), + [sym_this] = ACTIONS(2196), + [sym_super] = ACTIONS(2196), + [sym_true] = ACTIONS(2196), + [sym_false] = ACTIONS(2196), + [sym_null] = ACTIONS(2196), + [sym_undefined] = ACTIONS(2196), + [anon_sym_AT] = ACTIONS(2196), + [anon_sym_static] = ACTIONS(2196), + [anon_sym_readonly] = ACTIONS(2196), + [anon_sym_get] = ACTIONS(2196), + [anon_sym_set] = ACTIONS(2196), + [anon_sym_declare] = ACTIONS(2196), + [anon_sym_public] = ACTIONS(2196), + [anon_sym_private] = ACTIONS(2196), + [anon_sym_protected] = ACTIONS(2196), + [anon_sym_override] = ACTIONS(2196), + [anon_sym_module] = ACTIONS(2196), + [anon_sym_any] = ACTIONS(2196), + [anon_sym_number] = ACTIONS(2196), + [anon_sym_boolean] = ACTIONS(2196), + [anon_sym_string] = ACTIONS(2196), + [anon_sym_symbol] = ACTIONS(2196), + [anon_sym_object] = ACTIONS(2196), + [anon_sym_abstract] = ACTIONS(2196), + [anon_sym_interface] = ACTIONS(2196), + [anon_sym_enum] = ACTIONS(2196), + [sym_html_comment] = ACTIONS(5), + }, + [1541] = { + [sym_comment] = STATE(1541), + [ts_builtin_sym_end] = ACTIONS(3521), + [sym_identifier] = ACTIONS(3329), + [anon_sym_export] = ACTIONS(3329), + [anon_sym_type] = ACTIONS(3329), + [anon_sym_namespace] = ACTIONS(3329), + [anon_sym_LBRACE] = ACTIONS(3329), + [anon_sym_RBRACE] = ACTIONS(3329), + [anon_sym_typeof] = ACTIONS(3329), + [anon_sym_import] = ACTIONS(3329), + [anon_sym_with] = ACTIONS(3329), + [anon_sym_var] = ACTIONS(3329), + [anon_sym_let] = ACTIONS(3329), + [anon_sym_const] = ACTIONS(3329), + [anon_sym_BANG] = ACTIONS(3329), + [anon_sym_if] = ACTIONS(3329), + [anon_sym_switch] = ACTIONS(3329), + [anon_sym_for] = ACTIONS(3329), + [anon_sym_LPAREN] = ACTIONS(3329), + [anon_sym_await] = ACTIONS(3329), + [anon_sym_while] = ACTIONS(3329), + [anon_sym_do] = ACTIONS(3329), + [anon_sym_try] = ACTIONS(3329), + [anon_sym_break] = ACTIONS(3329), + [anon_sym_continue] = ACTIONS(3329), + [anon_sym_debugger] = ACTIONS(3329), + [anon_sym_return] = ACTIONS(3329), + [anon_sym_throw] = ACTIONS(3329), + [anon_sym_SEMI] = ACTIONS(3329), + [anon_sym_yield] = ACTIONS(3329), + [anon_sym_LBRACK] = ACTIONS(3329), + [anon_sym_LTtemplate_GT] = ACTIONS(3329), + [anon_sym_DQUOTE] = ACTIONS(3329), + [anon_sym_SQUOTE] = ACTIONS(3329), + [anon_sym_class] = ACTIONS(3329), + [anon_sym_async] = ACTIONS(3329), + [anon_sym_function] = ACTIONS(3329), + [anon_sym_new] = ACTIONS(3329), + [anon_sym_using] = ACTIONS(3329), + [anon_sym_PLUS] = ACTIONS(3329), + [anon_sym_DASH] = ACTIONS(3329), + [anon_sym_SLASH] = ACTIONS(3329), + [anon_sym_LT] = ACTIONS(3329), + [anon_sym_TILDE] = ACTIONS(3329), + [anon_sym_void] = ACTIONS(3329), + [anon_sym_delete] = ACTIONS(3329), + [anon_sym_PLUS_PLUS] = ACTIONS(3329), + [anon_sym_DASH_DASH] = ACTIONS(3329), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3329), + [sym_number] = ACTIONS(3329), + [sym_private_property_identifier] = ACTIONS(3329), + [sym_this] = ACTIONS(3329), + [sym_super] = ACTIONS(3329), + [sym_true] = ACTIONS(3329), + [sym_false] = ACTIONS(3329), + [sym_null] = ACTIONS(3329), + [sym_undefined] = ACTIONS(3329), + [anon_sym_AT] = ACTIONS(3329), + [anon_sym_static] = ACTIONS(3329), + [anon_sym_readonly] = ACTIONS(3329), + [anon_sym_get] = ACTIONS(3329), + [anon_sym_set] = ACTIONS(3329), + [anon_sym_declare] = ACTIONS(3329), + [anon_sym_public] = ACTIONS(3329), + [anon_sym_private] = ACTIONS(3329), + [anon_sym_protected] = ACTIONS(3329), + [anon_sym_override] = ACTIONS(3329), + [anon_sym_module] = ACTIONS(3329), + [anon_sym_any] = ACTIONS(3329), + [anon_sym_number] = ACTIONS(3329), + [anon_sym_boolean] = ACTIONS(3329), + [anon_sym_string] = ACTIONS(3329), + [anon_sym_symbol] = ACTIONS(3329), + [anon_sym_object] = ACTIONS(3329), + [anon_sym_abstract] = ACTIONS(3329), + [anon_sym_interface] = ACTIONS(3329), + [anon_sym_enum] = ACTIONS(3329), + [sym_html_comment] = ACTIONS(5), + }, + [1542] = { + [sym_comment] = STATE(1542), + [ts_builtin_sym_end] = ACTIONS(3627), + [sym_identifier] = ACTIONS(3391), + [anon_sym_export] = ACTIONS(3391), + [anon_sym_type] = ACTIONS(3391), + [anon_sym_namespace] = ACTIONS(3391), + [anon_sym_LBRACE] = ACTIONS(3391), + [anon_sym_RBRACE] = ACTIONS(3391), + [anon_sym_typeof] = ACTIONS(3391), + [anon_sym_import] = ACTIONS(3391), + [anon_sym_with] = ACTIONS(3391), + [anon_sym_var] = ACTIONS(3391), + [anon_sym_let] = ACTIONS(3391), + [anon_sym_const] = ACTIONS(3391), + [anon_sym_BANG] = ACTIONS(3391), + [anon_sym_if] = ACTIONS(3391), + [anon_sym_switch] = ACTIONS(3391), + [anon_sym_for] = ACTIONS(3391), + [anon_sym_LPAREN] = ACTIONS(3391), + [anon_sym_await] = ACTIONS(3391), + [anon_sym_while] = ACTIONS(3391), + [anon_sym_do] = ACTIONS(3391), + [anon_sym_try] = ACTIONS(3391), + [anon_sym_break] = ACTIONS(3391), + [anon_sym_continue] = ACTIONS(3391), + [anon_sym_debugger] = ACTIONS(3391), + [anon_sym_return] = ACTIONS(3391), + [anon_sym_throw] = ACTIONS(3391), + [anon_sym_SEMI] = ACTIONS(3391), + [anon_sym_yield] = ACTIONS(3391), + [anon_sym_LBRACK] = ACTIONS(3391), + [anon_sym_LTtemplate_GT] = ACTIONS(3391), + [anon_sym_DQUOTE] = ACTIONS(3391), + [anon_sym_SQUOTE] = ACTIONS(3391), + [anon_sym_class] = ACTIONS(3391), + [anon_sym_async] = ACTIONS(3391), + [anon_sym_function] = ACTIONS(3391), + [anon_sym_new] = ACTIONS(3391), + [anon_sym_using] = ACTIONS(3391), + [anon_sym_PLUS] = ACTIONS(3391), + [anon_sym_DASH] = ACTIONS(3391), + [anon_sym_SLASH] = ACTIONS(3391), + [anon_sym_LT] = ACTIONS(3391), + [anon_sym_TILDE] = ACTIONS(3391), + [anon_sym_void] = ACTIONS(3391), + [anon_sym_delete] = ACTIONS(3391), + [anon_sym_PLUS_PLUS] = ACTIONS(3391), + [anon_sym_DASH_DASH] = ACTIONS(3391), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3391), + [sym_number] = ACTIONS(3391), + [sym_private_property_identifier] = ACTIONS(3391), + [sym_this] = ACTIONS(3391), + [sym_super] = ACTIONS(3391), + [sym_true] = ACTIONS(3391), + [sym_false] = ACTIONS(3391), + [sym_null] = ACTIONS(3391), + [sym_undefined] = ACTIONS(3391), + [anon_sym_AT] = ACTIONS(3391), + [anon_sym_static] = ACTIONS(3391), + [anon_sym_readonly] = ACTIONS(3391), + [anon_sym_get] = ACTIONS(3391), + [anon_sym_set] = ACTIONS(3391), + [anon_sym_declare] = ACTIONS(3391), + [anon_sym_public] = ACTIONS(3391), + [anon_sym_private] = ACTIONS(3391), + [anon_sym_protected] = ACTIONS(3391), + [anon_sym_override] = ACTIONS(3391), + [anon_sym_module] = ACTIONS(3391), + [anon_sym_any] = ACTIONS(3391), + [anon_sym_number] = ACTIONS(3391), + [anon_sym_boolean] = ACTIONS(3391), + [anon_sym_string] = ACTIONS(3391), + [anon_sym_symbol] = ACTIONS(3391), + [anon_sym_object] = ACTIONS(3391), + [anon_sym_abstract] = ACTIONS(3391), + [anon_sym_interface] = ACTIONS(3391), + [anon_sym_enum] = ACTIONS(3391), + [sym_html_comment] = ACTIONS(5), + }, + [1543] = { + [sym_comment] = STATE(1543), + [ts_builtin_sym_end] = ACTIONS(3667), + [sym_identifier] = ACTIONS(3451), + [anon_sym_export] = ACTIONS(3451), + [anon_sym_type] = ACTIONS(3451), + [anon_sym_namespace] = ACTIONS(3451), + [anon_sym_LBRACE] = ACTIONS(3451), + [anon_sym_RBRACE] = ACTIONS(3451), + [anon_sym_typeof] = ACTIONS(3451), + [anon_sym_import] = ACTIONS(3451), + [anon_sym_with] = ACTIONS(3451), + [anon_sym_var] = ACTIONS(3451), + [anon_sym_let] = ACTIONS(3451), + [anon_sym_const] = ACTIONS(3451), + [anon_sym_BANG] = ACTIONS(3451), + [anon_sym_if] = ACTIONS(3451), + [anon_sym_switch] = ACTIONS(3451), + [anon_sym_for] = ACTIONS(3451), + [anon_sym_LPAREN] = ACTIONS(3451), + [anon_sym_await] = ACTIONS(3451), + [anon_sym_while] = ACTIONS(3451), + [anon_sym_do] = ACTIONS(3451), + [anon_sym_try] = ACTIONS(3451), + [anon_sym_break] = ACTIONS(3451), + [anon_sym_continue] = ACTIONS(3451), + [anon_sym_debugger] = ACTIONS(3451), + [anon_sym_return] = ACTIONS(3451), + [anon_sym_throw] = ACTIONS(3451), + [anon_sym_SEMI] = ACTIONS(3451), + [anon_sym_yield] = ACTIONS(3451), + [anon_sym_LBRACK] = ACTIONS(3451), + [anon_sym_LTtemplate_GT] = ACTIONS(3451), + [anon_sym_DQUOTE] = ACTIONS(3451), + [anon_sym_SQUOTE] = ACTIONS(3451), + [anon_sym_class] = ACTIONS(3451), + [anon_sym_async] = ACTIONS(3451), + [anon_sym_function] = ACTIONS(3451), + [anon_sym_new] = ACTIONS(3451), + [anon_sym_using] = ACTIONS(3451), + [anon_sym_PLUS] = ACTIONS(3451), + [anon_sym_DASH] = ACTIONS(3451), + [anon_sym_SLASH] = ACTIONS(3451), + [anon_sym_LT] = ACTIONS(3451), + [anon_sym_TILDE] = ACTIONS(3451), + [anon_sym_void] = ACTIONS(3451), + [anon_sym_delete] = ACTIONS(3451), + [anon_sym_PLUS_PLUS] = ACTIONS(3451), + [anon_sym_DASH_DASH] = ACTIONS(3451), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3451), + [sym_number] = ACTIONS(3451), + [sym_private_property_identifier] = ACTIONS(3451), + [sym_this] = ACTIONS(3451), + [sym_super] = ACTIONS(3451), + [sym_true] = ACTIONS(3451), + [sym_false] = ACTIONS(3451), + [sym_null] = ACTIONS(3451), + [sym_undefined] = ACTIONS(3451), + [anon_sym_AT] = ACTIONS(3451), + [anon_sym_static] = ACTIONS(3451), + [anon_sym_readonly] = ACTIONS(3451), + [anon_sym_get] = ACTIONS(3451), + [anon_sym_set] = ACTIONS(3451), + [anon_sym_declare] = ACTIONS(3451), + [anon_sym_public] = ACTIONS(3451), + [anon_sym_private] = ACTIONS(3451), + [anon_sym_protected] = ACTIONS(3451), + [anon_sym_override] = ACTIONS(3451), + [anon_sym_module] = ACTIONS(3451), + [anon_sym_any] = ACTIONS(3451), + [anon_sym_number] = ACTIONS(3451), + [anon_sym_boolean] = ACTIONS(3451), + [anon_sym_string] = ACTIONS(3451), + [anon_sym_symbol] = ACTIONS(3451), + [anon_sym_object] = ACTIONS(3451), + [anon_sym_abstract] = ACTIONS(3451), + [anon_sym_interface] = ACTIONS(3451), + [anon_sym_enum] = ACTIONS(3451), + [sym_html_comment] = ACTIONS(5), + }, + [1544] = { + [sym_comment] = STATE(1544), + [ts_builtin_sym_end] = ACTIONS(3649), + [sym_identifier] = ACTIONS(3455), + [anon_sym_export] = ACTIONS(3455), + [anon_sym_type] = ACTIONS(3455), + [anon_sym_namespace] = ACTIONS(3455), + [anon_sym_LBRACE] = ACTIONS(3455), + [anon_sym_RBRACE] = ACTIONS(3455), + [anon_sym_typeof] = ACTIONS(3455), + [anon_sym_import] = ACTIONS(3455), + [anon_sym_with] = ACTIONS(3455), + [anon_sym_var] = ACTIONS(3455), + [anon_sym_let] = ACTIONS(3455), + [anon_sym_const] = ACTIONS(3455), + [anon_sym_BANG] = ACTIONS(3455), + [anon_sym_if] = ACTIONS(3455), + [anon_sym_switch] = ACTIONS(3455), + [anon_sym_for] = ACTIONS(3455), + [anon_sym_LPAREN] = ACTIONS(3455), + [anon_sym_await] = ACTIONS(3455), + [anon_sym_while] = ACTIONS(3455), + [anon_sym_do] = ACTIONS(3455), + [anon_sym_try] = ACTIONS(3455), + [anon_sym_break] = ACTIONS(3455), + [anon_sym_continue] = ACTIONS(3455), + [anon_sym_debugger] = ACTIONS(3455), + [anon_sym_return] = ACTIONS(3455), + [anon_sym_throw] = ACTIONS(3455), + [anon_sym_SEMI] = ACTIONS(3455), + [anon_sym_yield] = ACTIONS(3455), + [anon_sym_LBRACK] = ACTIONS(3455), + [anon_sym_LTtemplate_GT] = ACTIONS(3455), + [anon_sym_DQUOTE] = ACTIONS(3455), + [anon_sym_SQUOTE] = ACTIONS(3455), + [anon_sym_class] = ACTIONS(3455), + [anon_sym_async] = ACTIONS(3455), + [anon_sym_function] = ACTIONS(3455), + [anon_sym_new] = ACTIONS(3455), + [anon_sym_using] = ACTIONS(3455), + [anon_sym_PLUS] = ACTIONS(3455), + [anon_sym_DASH] = ACTIONS(3455), + [anon_sym_SLASH] = ACTIONS(3455), + [anon_sym_LT] = ACTIONS(3455), + [anon_sym_TILDE] = ACTIONS(3455), + [anon_sym_void] = ACTIONS(3455), + [anon_sym_delete] = ACTIONS(3455), + [anon_sym_PLUS_PLUS] = ACTIONS(3455), + [anon_sym_DASH_DASH] = ACTIONS(3455), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3455), + [sym_number] = ACTIONS(3455), + [sym_private_property_identifier] = ACTIONS(3455), + [sym_this] = ACTIONS(3455), + [sym_super] = ACTIONS(3455), + [sym_true] = ACTIONS(3455), + [sym_false] = ACTIONS(3455), + [sym_null] = ACTIONS(3455), + [sym_undefined] = ACTIONS(3455), + [anon_sym_AT] = ACTIONS(3455), + [anon_sym_static] = ACTIONS(3455), + [anon_sym_readonly] = ACTIONS(3455), + [anon_sym_get] = ACTIONS(3455), + [anon_sym_set] = ACTIONS(3455), + [anon_sym_declare] = ACTIONS(3455), + [anon_sym_public] = ACTIONS(3455), + [anon_sym_private] = ACTIONS(3455), + [anon_sym_protected] = ACTIONS(3455), + [anon_sym_override] = ACTIONS(3455), + [anon_sym_module] = ACTIONS(3455), + [anon_sym_any] = ACTIONS(3455), + [anon_sym_number] = ACTIONS(3455), + [anon_sym_boolean] = ACTIONS(3455), + [anon_sym_string] = ACTIONS(3455), + [anon_sym_symbol] = ACTIONS(3455), + [anon_sym_object] = ACTIONS(3455), + [anon_sym_abstract] = ACTIONS(3455), + [anon_sym_interface] = ACTIONS(3455), + [anon_sym_enum] = ACTIONS(3455), + [sym_html_comment] = ACTIONS(5), + }, + [1545] = { + [sym_comment] = STATE(1545), + [ts_builtin_sym_end] = ACTIONS(3669), + [sym_identifier] = ACTIONS(3449), + [anon_sym_export] = ACTIONS(3449), + [anon_sym_type] = ACTIONS(3449), + [anon_sym_namespace] = ACTIONS(3449), + [anon_sym_LBRACE] = ACTIONS(3449), + [anon_sym_RBRACE] = ACTIONS(3449), + [anon_sym_typeof] = ACTIONS(3449), + [anon_sym_import] = ACTIONS(3449), + [anon_sym_with] = ACTIONS(3449), + [anon_sym_var] = ACTIONS(3449), + [anon_sym_let] = ACTIONS(3449), + [anon_sym_const] = ACTIONS(3449), + [anon_sym_BANG] = ACTIONS(3449), + [anon_sym_if] = ACTIONS(3449), + [anon_sym_switch] = ACTIONS(3449), + [anon_sym_for] = ACTIONS(3449), + [anon_sym_LPAREN] = ACTIONS(3449), + [anon_sym_await] = ACTIONS(3449), + [anon_sym_while] = ACTIONS(3449), + [anon_sym_do] = ACTIONS(3449), + [anon_sym_try] = ACTIONS(3449), + [anon_sym_break] = ACTIONS(3449), + [anon_sym_continue] = ACTIONS(3449), + [anon_sym_debugger] = ACTIONS(3449), + [anon_sym_return] = ACTIONS(3449), + [anon_sym_throw] = ACTIONS(3449), + [anon_sym_SEMI] = ACTIONS(3449), + [anon_sym_yield] = ACTIONS(3449), + [anon_sym_LBRACK] = ACTIONS(3449), + [anon_sym_LTtemplate_GT] = ACTIONS(3449), + [anon_sym_DQUOTE] = ACTIONS(3449), + [anon_sym_SQUOTE] = ACTIONS(3449), + [anon_sym_class] = ACTIONS(3449), + [anon_sym_async] = ACTIONS(3449), + [anon_sym_function] = ACTIONS(3449), + [anon_sym_new] = ACTIONS(3449), + [anon_sym_using] = ACTIONS(3449), + [anon_sym_PLUS] = ACTIONS(3449), + [anon_sym_DASH] = ACTIONS(3449), + [anon_sym_SLASH] = ACTIONS(3449), + [anon_sym_LT] = ACTIONS(3449), + [anon_sym_TILDE] = ACTIONS(3449), + [anon_sym_void] = ACTIONS(3449), + [anon_sym_delete] = ACTIONS(3449), + [anon_sym_PLUS_PLUS] = ACTIONS(3449), + [anon_sym_DASH_DASH] = ACTIONS(3449), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3449), + [sym_number] = ACTIONS(3449), + [sym_private_property_identifier] = ACTIONS(3449), + [sym_this] = ACTIONS(3449), + [sym_super] = ACTIONS(3449), + [sym_true] = ACTIONS(3449), + [sym_false] = ACTIONS(3449), + [sym_null] = ACTIONS(3449), + [sym_undefined] = ACTIONS(3449), + [anon_sym_AT] = ACTIONS(3449), + [anon_sym_static] = ACTIONS(3449), + [anon_sym_readonly] = ACTIONS(3449), + [anon_sym_get] = ACTIONS(3449), + [anon_sym_set] = ACTIONS(3449), + [anon_sym_declare] = ACTIONS(3449), + [anon_sym_public] = ACTIONS(3449), + [anon_sym_private] = ACTIONS(3449), + [anon_sym_protected] = ACTIONS(3449), + [anon_sym_override] = ACTIONS(3449), + [anon_sym_module] = ACTIONS(3449), + [anon_sym_any] = ACTIONS(3449), + [anon_sym_number] = ACTIONS(3449), + [anon_sym_boolean] = ACTIONS(3449), + [anon_sym_string] = ACTIONS(3449), + [anon_sym_symbol] = ACTIONS(3449), + [anon_sym_object] = ACTIONS(3449), + [anon_sym_abstract] = ACTIONS(3449), + [anon_sym_interface] = ACTIONS(3449), + [anon_sym_enum] = ACTIONS(3449), + [sym_html_comment] = ACTIONS(5), + }, + [1546] = { + [sym_comment] = STATE(1546), + [ts_builtin_sym_end] = ACTIONS(3625), + [sym_identifier] = ACTIONS(3233), + [anon_sym_export] = ACTIONS(3233), + [anon_sym_type] = ACTIONS(3233), + [anon_sym_namespace] = ACTIONS(3233), + [anon_sym_LBRACE] = ACTIONS(3233), + [anon_sym_RBRACE] = ACTIONS(3233), + [anon_sym_typeof] = ACTIONS(3233), + [anon_sym_import] = ACTIONS(3233), + [anon_sym_with] = ACTIONS(3233), + [anon_sym_var] = ACTIONS(3233), + [anon_sym_let] = ACTIONS(3233), + [anon_sym_const] = ACTIONS(3233), + [anon_sym_BANG] = ACTIONS(3233), + [anon_sym_if] = ACTIONS(3233), + [anon_sym_switch] = ACTIONS(3233), + [anon_sym_for] = ACTIONS(3233), + [anon_sym_LPAREN] = ACTIONS(3233), + [anon_sym_await] = ACTIONS(3233), + [anon_sym_while] = ACTIONS(3233), + [anon_sym_do] = ACTIONS(3233), + [anon_sym_try] = ACTIONS(3233), + [anon_sym_break] = ACTIONS(3233), + [anon_sym_continue] = ACTIONS(3233), + [anon_sym_debugger] = ACTIONS(3233), + [anon_sym_return] = ACTIONS(3233), + [anon_sym_throw] = ACTIONS(3233), + [anon_sym_SEMI] = ACTIONS(3233), + [anon_sym_yield] = ACTIONS(3233), + [anon_sym_LBRACK] = ACTIONS(3233), + [anon_sym_LTtemplate_GT] = ACTIONS(3233), + [anon_sym_DQUOTE] = ACTIONS(3233), + [anon_sym_SQUOTE] = ACTIONS(3233), + [anon_sym_class] = ACTIONS(3233), + [anon_sym_async] = ACTIONS(3233), + [anon_sym_function] = ACTIONS(3233), + [anon_sym_new] = ACTIONS(3233), + [anon_sym_using] = ACTIONS(3233), + [anon_sym_PLUS] = ACTIONS(3233), + [anon_sym_DASH] = ACTIONS(3233), + [anon_sym_SLASH] = ACTIONS(3233), + [anon_sym_LT] = ACTIONS(3233), + [anon_sym_TILDE] = ACTIONS(3233), + [anon_sym_void] = ACTIONS(3233), + [anon_sym_delete] = ACTIONS(3233), + [anon_sym_PLUS_PLUS] = ACTIONS(3233), + [anon_sym_DASH_DASH] = ACTIONS(3233), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3233), + [sym_number] = ACTIONS(3233), + [sym_private_property_identifier] = ACTIONS(3233), + [sym_this] = ACTIONS(3233), + [sym_super] = ACTIONS(3233), + [sym_true] = ACTIONS(3233), + [sym_false] = ACTIONS(3233), + [sym_null] = ACTIONS(3233), + [sym_undefined] = ACTIONS(3233), + [anon_sym_AT] = ACTIONS(3233), + [anon_sym_static] = ACTIONS(3233), + [anon_sym_readonly] = ACTIONS(3233), + [anon_sym_get] = ACTIONS(3233), + [anon_sym_set] = ACTIONS(3233), + [anon_sym_declare] = ACTIONS(3233), + [anon_sym_public] = ACTIONS(3233), + [anon_sym_private] = ACTIONS(3233), + [anon_sym_protected] = ACTIONS(3233), + [anon_sym_override] = ACTIONS(3233), + [anon_sym_module] = ACTIONS(3233), + [anon_sym_any] = ACTIONS(3233), + [anon_sym_number] = ACTIONS(3233), + [anon_sym_boolean] = ACTIONS(3233), + [anon_sym_string] = ACTIONS(3233), + [anon_sym_symbol] = ACTIONS(3233), + [anon_sym_object] = ACTIONS(3233), + [anon_sym_abstract] = ACTIONS(3233), + [anon_sym_interface] = ACTIONS(3233), + [anon_sym_enum] = ACTIONS(3233), + [sym_html_comment] = ACTIONS(5), + }, + [1547] = { + [sym_comment] = STATE(1547), + [ts_builtin_sym_end] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), + [sym_html_comment] = ACTIONS(5), + }, + [1548] = { + [sym_comment] = STATE(1548), + [ts_builtin_sym_end] = ACTIONS(3523), + [sym_identifier] = ACTIONS(3327), + [anon_sym_export] = ACTIONS(3327), + [anon_sym_type] = ACTIONS(3327), + [anon_sym_namespace] = ACTIONS(3327), + [anon_sym_LBRACE] = ACTIONS(3327), + [anon_sym_RBRACE] = ACTIONS(3327), [anon_sym_typeof] = ACTIONS(3327), [anon_sym_import] = ACTIONS(3327), [anon_sym_with] = ACTIONS(3327), @@ -188468,7 +189171,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_return] = ACTIONS(3327), [anon_sym_throw] = ACTIONS(3327), [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), [anon_sym_yield] = ACTIONS(3327), [anon_sym_LBRACK] = ACTIONS(3327), [anon_sym_LTtemplate_GT] = ACTIONS(3327), @@ -188520,92 +189222,982 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3327), [sym_html_comment] = ACTIONS(5), }, - [1536] = { - [sym_comment] = STATE(1536), - [ts_builtin_sym_end] = ACTIONS(3621), - [sym_identifier] = ACTIONS(3369), - [anon_sym_export] = ACTIONS(3369), - [anon_sym_type] = ACTIONS(3369), - [anon_sym_namespace] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_RBRACE] = ACTIONS(3369), - [anon_sym_typeof] = ACTIONS(3369), - [anon_sym_import] = ACTIONS(3369), - [anon_sym_with] = ACTIONS(3369), - [anon_sym_var] = ACTIONS(3369), - [anon_sym_let] = ACTIONS(3369), - [anon_sym_const] = ACTIONS(3369), - [anon_sym_BANG] = ACTIONS(3369), - [anon_sym_else] = ACTIONS(3369), - [anon_sym_if] = ACTIONS(3369), - [anon_sym_switch] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_await] = ACTIONS(3369), - [anon_sym_while] = ACTIONS(3369), - [anon_sym_do] = ACTIONS(3369), - [anon_sym_try] = ACTIONS(3369), - [anon_sym_break] = ACTIONS(3369), - [anon_sym_continue] = ACTIONS(3369), - [anon_sym_debugger] = ACTIONS(3369), - [anon_sym_return] = ACTIONS(3369), - [anon_sym_throw] = ACTIONS(3369), - [anon_sym_SEMI] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_LTtemplate_GT] = ACTIONS(3369), - [anon_sym_DQUOTE] = ACTIONS(3369), - [anon_sym_SQUOTE] = ACTIONS(3369), - [anon_sym_class] = ACTIONS(3369), - [anon_sym_async] = ACTIONS(3369), - [anon_sym_function] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3369), - [anon_sym_using] = ACTIONS(3369), - [anon_sym_PLUS] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_SLASH] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_void] = ACTIONS(3369), - [anon_sym_delete] = ACTIONS(3369), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), + [1549] = { + [sym_comment] = STATE(1549), + [ts_builtin_sym_end] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3369), - [sym_number] = ACTIONS(3369), - [sym_private_property_identifier] = ACTIONS(3369), - [sym_this] = ACTIONS(3369), - [sym_super] = ACTIONS(3369), - [sym_true] = ACTIONS(3369), - [sym_false] = ACTIONS(3369), - [sym_null] = ACTIONS(3369), - [sym_undefined] = ACTIONS(3369), - [anon_sym_AT] = ACTIONS(3369), - [anon_sym_static] = ACTIONS(3369), - [anon_sym_readonly] = ACTIONS(3369), - [anon_sym_get] = ACTIONS(3369), - [anon_sym_set] = ACTIONS(3369), - [anon_sym_declare] = ACTIONS(3369), - [anon_sym_public] = ACTIONS(3369), - [anon_sym_private] = ACTIONS(3369), - [anon_sym_protected] = ACTIONS(3369), - [anon_sym_override] = ACTIONS(3369), - [anon_sym_module] = ACTIONS(3369), - [anon_sym_any] = ACTIONS(3369), - [anon_sym_number] = ACTIONS(3369), - [anon_sym_boolean] = ACTIONS(3369), - [anon_sym_string] = ACTIONS(3369), - [anon_sym_symbol] = ACTIONS(3369), - [anon_sym_object] = ACTIONS(3369), - [anon_sym_abstract] = ACTIONS(3369), - [anon_sym_interface] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(3369), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, - [1537] = { - [sym_comment] = STATE(1537), - [ts_builtin_sym_end] = ACTIONS(3623), - [sym_identifier] = ACTIONS(3373), + [1550] = { + [sym_comment] = STATE(1550), + [ts_builtin_sym_end] = ACTIONS(3605), + [sym_identifier] = ACTIONS(3383), + [anon_sym_export] = ACTIONS(3383), + [anon_sym_type] = ACTIONS(3383), + [anon_sym_namespace] = ACTIONS(3383), + [anon_sym_LBRACE] = ACTIONS(3383), + [anon_sym_RBRACE] = ACTIONS(3383), + [anon_sym_typeof] = ACTIONS(3383), + [anon_sym_import] = ACTIONS(3383), + [anon_sym_with] = ACTIONS(3383), + [anon_sym_var] = ACTIONS(3383), + [anon_sym_let] = ACTIONS(3383), + [anon_sym_const] = ACTIONS(3383), + [anon_sym_BANG] = ACTIONS(3383), + [anon_sym_if] = ACTIONS(3383), + [anon_sym_switch] = ACTIONS(3383), + [anon_sym_for] = ACTIONS(3383), + [anon_sym_LPAREN] = ACTIONS(3383), + [anon_sym_await] = ACTIONS(3383), + [anon_sym_while] = ACTIONS(3383), + [anon_sym_do] = ACTIONS(3383), + [anon_sym_try] = ACTIONS(3383), + [anon_sym_break] = ACTIONS(3383), + [anon_sym_continue] = ACTIONS(3383), + [anon_sym_debugger] = ACTIONS(3383), + [anon_sym_return] = ACTIONS(3383), + [anon_sym_throw] = ACTIONS(3383), + [anon_sym_SEMI] = ACTIONS(3383), + [anon_sym_yield] = ACTIONS(3383), + [anon_sym_LBRACK] = ACTIONS(3383), + [anon_sym_LTtemplate_GT] = ACTIONS(3383), + [anon_sym_DQUOTE] = ACTIONS(3383), + [anon_sym_SQUOTE] = ACTIONS(3383), + [anon_sym_class] = ACTIONS(3383), + [anon_sym_async] = ACTIONS(3383), + [anon_sym_function] = ACTIONS(3383), + [anon_sym_new] = ACTIONS(3383), + [anon_sym_using] = ACTIONS(3383), + [anon_sym_PLUS] = ACTIONS(3383), + [anon_sym_DASH] = ACTIONS(3383), + [anon_sym_SLASH] = ACTIONS(3383), + [anon_sym_LT] = ACTIONS(3383), + [anon_sym_TILDE] = ACTIONS(3383), + [anon_sym_void] = ACTIONS(3383), + [anon_sym_delete] = ACTIONS(3383), + [anon_sym_PLUS_PLUS] = ACTIONS(3383), + [anon_sym_DASH_DASH] = ACTIONS(3383), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3383), + [sym_number] = ACTIONS(3383), + [sym_private_property_identifier] = ACTIONS(3383), + [sym_this] = ACTIONS(3383), + [sym_super] = ACTIONS(3383), + [sym_true] = ACTIONS(3383), + [sym_false] = ACTIONS(3383), + [sym_null] = ACTIONS(3383), + [sym_undefined] = ACTIONS(3383), + [anon_sym_AT] = ACTIONS(3383), + [anon_sym_static] = ACTIONS(3383), + [anon_sym_readonly] = ACTIONS(3383), + [anon_sym_get] = ACTIONS(3383), + [anon_sym_set] = ACTIONS(3383), + [anon_sym_declare] = ACTIONS(3383), + [anon_sym_public] = ACTIONS(3383), + [anon_sym_private] = ACTIONS(3383), + [anon_sym_protected] = ACTIONS(3383), + [anon_sym_override] = ACTIONS(3383), + [anon_sym_module] = ACTIONS(3383), + [anon_sym_any] = ACTIONS(3383), + [anon_sym_number] = ACTIONS(3383), + [anon_sym_boolean] = ACTIONS(3383), + [anon_sym_string] = ACTIONS(3383), + [anon_sym_symbol] = ACTIONS(3383), + [anon_sym_object] = ACTIONS(3383), + [anon_sym_abstract] = ACTIONS(3383), + [anon_sym_interface] = ACTIONS(3383), + [anon_sym_enum] = ACTIONS(3383), + [sym_html_comment] = ACTIONS(5), + }, + [1551] = { + [sym_comment] = STATE(1551), + [ts_builtin_sym_end] = ACTIONS(3671), + [sym_identifier] = ACTIONS(3355), + [anon_sym_export] = ACTIONS(3355), + [anon_sym_type] = ACTIONS(3355), + [anon_sym_namespace] = ACTIONS(3355), + [anon_sym_LBRACE] = ACTIONS(3355), + [anon_sym_RBRACE] = ACTIONS(3355), + [anon_sym_typeof] = ACTIONS(3355), + [anon_sym_import] = ACTIONS(3355), + [anon_sym_with] = ACTIONS(3355), + [anon_sym_var] = ACTIONS(3355), + [anon_sym_let] = ACTIONS(3355), + [anon_sym_const] = ACTIONS(3355), + [anon_sym_BANG] = ACTIONS(3355), + [anon_sym_if] = ACTIONS(3355), + [anon_sym_switch] = ACTIONS(3355), + [anon_sym_for] = ACTIONS(3355), + [anon_sym_LPAREN] = ACTIONS(3355), + [anon_sym_await] = ACTIONS(3355), + [anon_sym_while] = ACTIONS(3355), + [anon_sym_do] = ACTIONS(3355), + [anon_sym_try] = ACTIONS(3355), + [anon_sym_break] = ACTIONS(3355), + [anon_sym_continue] = ACTIONS(3355), + [anon_sym_debugger] = ACTIONS(3355), + [anon_sym_return] = ACTIONS(3355), + [anon_sym_throw] = ACTIONS(3355), + [anon_sym_SEMI] = ACTIONS(3355), + [anon_sym_yield] = ACTIONS(3355), + [anon_sym_LBRACK] = ACTIONS(3355), + [anon_sym_LTtemplate_GT] = ACTIONS(3355), + [anon_sym_DQUOTE] = ACTIONS(3355), + [anon_sym_SQUOTE] = ACTIONS(3355), + [anon_sym_class] = ACTIONS(3355), + [anon_sym_async] = ACTIONS(3355), + [anon_sym_function] = ACTIONS(3355), + [anon_sym_new] = ACTIONS(3355), + [anon_sym_using] = ACTIONS(3355), + [anon_sym_PLUS] = ACTIONS(3355), + [anon_sym_DASH] = ACTIONS(3355), + [anon_sym_SLASH] = ACTIONS(3355), + [anon_sym_LT] = ACTIONS(3355), + [anon_sym_TILDE] = ACTIONS(3355), + [anon_sym_void] = ACTIONS(3355), + [anon_sym_delete] = ACTIONS(3355), + [anon_sym_PLUS_PLUS] = ACTIONS(3355), + [anon_sym_DASH_DASH] = ACTIONS(3355), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3355), + [sym_number] = ACTIONS(3355), + [sym_private_property_identifier] = ACTIONS(3355), + [sym_this] = ACTIONS(3355), + [sym_super] = ACTIONS(3355), + [sym_true] = ACTIONS(3355), + [sym_false] = ACTIONS(3355), + [sym_null] = ACTIONS(3355), + [sym_undefined] = ACTIONS(3355), + [anon_sym_AT] = ACTIONS(3355), + [anon_sym_static] = ACTIONS(3355), + [anon_sym_readonly] = ACTIONS(3355), + [anon_sym_get] = ACTIONS(3355), + [anon_sym_set] = ACTIONS(3355), + [anon_sym_declare] = ACTIONS(3355), + [anon_sym_public] = ACTIONS(3355), + [anon_sym_private] = ACTIONS(3355), + [anon_sym_protected] = ACTIONS(3355), + [anon_sym_override] = ACTIONS(3355), + [anon_sym_module] = ACTIONS(3355), + [anon_sym_any] = ACTIONS(3355), + [anon_sym_number] = ACTIONS(3355), + [anon_sym_boolean] = ACTIONS(3355), + [anon_sym_string] = ACTIONS(3355), + [anon_sym_symbol] = ACTIONS(3355), + [anon_sym_object] = ACTIONS(3355), + [anon_sym_abstract] = ACTIONS(3355), + [anon_sym_interface] = ACTIONS(3355), + [anon_sym_enum] = ACTIONS(3355), + [sym_html_comment] = ACTIONS(5), + }, + [1552] = { + [sym_comment] = STATE(1552), + [ts_builtin_sym_end] = ACTIONS(3503), + [sym_identifier] = ACTIONS(3407), + [anon_sym_export] = ACTIONS(3407), + [anon_sym_type] = ACTIONS(3407), + [anon_sym_namespace] = ACTIONS(3407), + [anon_sym_LBRACE] = ACTIONS(3407), + [anon_sym_RBRACE] = ACTIONS(3407), + [anon_sym_typeof] = ACTIONS(3407), + [anon_sym_import] = ACTIONS(3407), + [anon_sym_with] = ACTIONS(3407), + [anon_sym_var] = ACTIONS(3407), + [anon_sym_let] = ACTIONS(3407), + [anon_sym_const] = ACTIONS(3407), + [anon_sym_BANG] = ACTIONS(3407), + [anon_sym_if] = ACTIONS(3407), + [anon_sym_switch] = ACTIONS(3407), + [anon_sym_for] = ACTIONS(3407), + [anon_sym_LPAREN] = ACTIONS(3407), + [anon_sym_await] = ACTIONS(3407), + [anon_sym_while] = ACTIONS(3407), + [anon_sym_do] = ACTIONS(3407), + [anon_sym_try] = ACTIONS(3407), + [anon_sym_break] = ACTIONS(3407), + [anon_sym_continue] = ACTIONS(3407), + [anon_sym_debugger] = ACTIONS(3407), + [anon_sym_return] = ACTIONS(3407), + [anon_sym_throw] = ACTIONS(3407), + [anon_sym_SEMI] = ACTIONS(3407), + [anon_sym_yield] = ACTIONS(3407), + [anon_sym_LBRACK] = ACTIONS(3407), + [anon_sym_LTtemplate_GT] = ACTIONS(3407), + [anon_sym_DQUOTE] = ACTIONS(3407), + [anon_sym_SQUOTE] = ACTIONS(3407), + [anon_sym_class] = ACTIONS(3407), + [anon_sym_async] = ACTIONS(3407), + [anon_sym_function] = ACTIONS(3407), + [anon_sym_new] = ACTIONS(3407), + [anon_sym_using] = ACTIONS(3407), + [anon_sym_PLUS] = ACTIONS(3407), + [anon_sym_DASH] = ACTIONS(3407), + [anon_sym_SLASH] = ACTIONS(3407), + [anon_sym_LT] = ACTIONS(3407), + [anon_sym_TILDE] = ACTIONS(3407), + [anon_sym_void] = ACTIONS(3407), + [anon_sym_delete] = ACTIONS(3407), + [anon_sym_PLUS_PLUS] = ACTIONS(3407), + [anon_sym_DASH_DASH] = ACTIONS(3407), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3407), + [sym_number] = ACTIONS(3407), + [sym_private_property_identifier] = ACTIONS(3407), + [sym_this] = ACTIONS(3407), + [sym_super] = ACTIONS(3407), + [sym_true] = ACTIONS(3407), + [sym_false] = ACTIONS(3407), + [sym_null] = ACTIONS(3407), + [sym_undefined] = ACTIONS(3407), + [anon_sym_AT] = ACTIONS(3407), + [anon_sym_static] = ACTIONS(3407), + [anon_sym_readonly] = ACTIONS(3407), + [anon_sym_get] = ACTIONS(3407), + [anon_sym_set] = ACTIONS(3407), + [anon_sym_declare] = ACTIONS(3407), + [anon_sym_public] = ACTIONS(3407), + [anon_sym_private] = ACTIONS(3407), + [anon_sym_protected] = ACTIONS(3407), + [anon_sym_override] = ACTIONS(3407), + [anon_sym_module] = ACTIONS(3407), + [anon_sym_any] = ACTIONS(3407), + [anon_sym_number] = ACTIONS(3407), + [anon_sym_boolean] = ACTIONS(3407), + [anon_sym_string] = ACTIONS(3407), + [anon_sym_symbol] = ACTIONS(3407), + [anon_sym_object] = ACTIONS(3407), + [anon_sym_abstract] = ACTIONS(3407), + [anon_sym_interface] = ACTIONS(3407), + [anon_sym_enum] = ACTIONS(3407), + [sym_html_comment] = ACTIONS(5), + }, + [1553] = { + [sym_comment] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(3673), + [sym_identifier] = ACTIONS(3351), + [anon_sym_export] = ACTIONS(3351), + [anon_sym_type] = ACTIONS(3351), + [anon_sym_namespace] = ACTIONS(3351), + [anon_sym_LBRACE] = ACTIONS(3351), + [anon_sym_RBRACE] = ACTIONS(3351), + [anon_sym_typeof] = ACTIONS(3351), + [anon_sym_import] = ACTIONS(3351), + [anon_sym_with] = ACTIONS(3351), + [anon_sym_var] = ACTIONS(3351), + [anon_sym_let] = ACTIONS(3351), + [anon_sym_const] = ACTIONS(3351), + [anon_sym_BANG] = ACTIONS(3351), + [anon_sym_if] = ACTIONS(3351), + [anon_sym_switch] = ACTIONS(3351), + [anon_sym_for] = ACTIONS(3351), + [anon_sym_LPAREN] = ACTIONS(3351), + [anon_sym_await] = ACTIONS(3351), + [anon_sym_while] = ACTIONS(3351), + [anon_sym_do] = ACTIONS(3351), + [anon_sym_try] = ACTIONS(3351), + [anon_sym_break] = ACTIONS(3351), + [anon_sym_continue] = ACTIONS(3351), + [anon_sym_debugger] = ACTIONS(3351), + [anon_sym_return] = ACTIONS(3351), + [anon_sym_throw] = ACTIONS(3351), + [anon_sym_SEMI] = ACTIONS(3351), + [anon_sym_yield] = ACTIONS(3351), + [anon_sym_LBRACK] = ACTIONS(3351), + [anon_sym_LTtemplate_GT] = ACTIONS(3351), + [anon_sym_DQUOTE] = ACTIONS(3351), + [anon_sym_SQUOTE] = ACTIONS(3351), + [anon_sym_class] = ACTIONS(3351), + [anon_sym_async] = ACTIONS(3351), + [anon_sym_function] = ACTIONS(3351), + [anon_sym_new] = ACTIONS(3351), + [anon_sym_using] = ACTIONS(3351), + [anon_sym_PLUS] = ACTIONS(3351), + [anon_sym_DASH] = ACTIONS(3351), + [anon_sym_SLASH] = ACTIONS(3351), + [anon_sym_LT] = ACTIONS(3351), + [anon_sym_TILDE] = ACTIONS(3351), + [anon_sym_void] = ACTIONS(3351), + [anon_sym_delete] = ACTIONS(3351), + [anon_sym_PLUS_PLUS] = ACTIONS(3351), + [anon_sym_DASH_DASH] = ACTIONS(3351), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3351), + [sym_number] = ACTIONS(3351), + [sym_private_property_identifier] = ACTIONS(3351), + [sym_this] = ACTIONS(3351), + [sym_super] = ACTIONS(3351), + [sym_true] = ACTIONS(3351), + [sym_false] = ACTIONS(3351), + [sym_null] = ACTIONS(3351), + [sym_undefined] = ACTIONS(3351), + [anon_sym_AT] = ACTIONS(3351), + [anon_sym_static] = ACTIONS(3351), + [anon_sym_readonly] = ACTIONS(3351), + [anon_sym_get] = ACTIONS(3351), + [anon_sym_set] = ACTIONS(3351), + [anon_sym_declare] = ACTIONS(3351), + [anon_sym_public] = ACTIONS(3351), + [anon_sym_private] = ACTIONS(3351), + [anon_sym_protected] = ACTIONS(3351), + [anon_sym_override] = ACTIONS(3351), + [anon_sym_module] = ACTIONS(3351), + [anon_sym_any] = ACTIONS(3351), + [anon_sym_number] = ACTIONS(3351), + [anon_sym_boolean] = ACTIONS(3351), + [anon_sym_string] = ACTIONS(3351), + [anon_sym_symbol] = ACTIONS(3351), + [anon_sym_object] = ACTIONS(3351), + [anon_sym_abstract] = ACTIONS(3351), + [anon_sym_interface] = ACTIONS(3351), + [anon_sym_enum] = ACTIONS(3351), + [sym_html_comment] = ACTIONS(5), + }, + [1554] = { + [sym_comment] = STATE(1554), + [ts_builtin_sym_end] = ACTIONS(3643), + [sym_identifier] = ACTIONS(3459), + [anon_sym_export] = ACTIONS(3459), + [anon_sym_type] = ACTIONS(3459), + [anon_sym_namespace] = ACTIONS(3459), + [anon_sym_LBRACE] = ACTIONS(3459), + [anon_sym_RBRACE] = ACTIONS(3459), + [anon_sym_typeof] = ACTIONS(3459), + [anon_sym_import] = ACTIONS(3459), + [anon_sym_with] = ACTIONS(3459), + [anon_sym_var] = ACTIONS(3459), + [anon_sym_let] = ACTIONS(3459), + [anon_sym_const] = ACTIONS(3459), + [anon_sym_BANG] = ACTIONS(3459), + [anon_sym_if] = ACTIONS(3459), + [anon_sym_switch] = ACTIONS(3459), + [anon_sym_for] = ACTIONS(3459), + [anon_sym_LPAREN] = ACTIONS(3459), + [anon_sym_await] = ACTIONS(3459), + [anon_sym_while] = ACTIONS(3459), + [anon_sym_do] = ACTIONS(3459), + [anon_sym_try] = ACTIONS(3459), + [anon_sym_break] = ACTIONS(3459), + [anon_sym_continue] = ACTIONS(3459), + [anon_sym_debugger] = ACTIONS(3459), + [anon_sym_return] = ACTIONS(3459), + [anon_sym_throw] = ACTIONS(3459), + [anon_sym_SEMI] = ACTIONS(3459), + [anon_sym_yield] = ACTIONS(3459), + [anon_sym_LBRACK] = ACTIONS(3459), + [anon_sym_LTtemplate_GT] = ACTIONS(3459), + [anon_sym_DQUOTE] = ACTIONS(3459), + [anon_sym_SQUOTE] = ACTIONS(3459), + [anon_sym_class] = ACTIONS(3459), + [anon_sym_async] = ACTIONS(3459), + [anon_sym_function] = ACTIONS(3459), + [anon_sym_new] = ACTIONS(3459), + [anon_sym_using] = ACTIONS(3459), + [anon_sym_PLUS] = ACTIONS(3459), + [anon_sym_DASH] = ACTIONS(3459), + [anon_sym_SLASH] = ACTIONS(3459), + [anon_sym_LT] = ACTIONS(3459), + [anon_sym_TILDE] = ACTIONS(3459), + [anon_sym_void] = ACTIONS(3459), + [anon_sym_delete] = ACTIONS(3459), + [anon_sym_PLUS_PLUS] = ACTIONS(3459), + [anon_sym_DASH_DASH] = ACTIONS(3459), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3459), + [sym_number] = ACTIONS(3459), + [sym_private_property_identifier] = ACTIONS(3459), + [sym_this] = ACTIONS(3459), + [sym_super] = ACTIONS(3459), + [sym_true] = ACTIONS(3459), + [sym_false] = ACTIONS(3459), + [sym_null] = ACTIONS(3459), + [sym_undefined] = ACTIONS(3459), + [anon_sym_AT] = ACTIONS(3459), + [anon_sym_static] = ACTIONS(3459), + [anon_sym_readonly] = ACTIONS(3459), + [anon_sym_get] = ACTIONS(3459), + [anon_sym_set] = ACTIONS(3459), + [anon_sym_declare] = ACTIONS(3459), + [anon_sym_public] = ACTIONS(3459), + [anon_sym_private] = ACTIONS(3459), + [anon_sym_protected] = ACTIONS(3459), + [anon_sym_override] = ACTIONS(3459), + [anon_sym_module] = ACTIONS(3459), + [anon_sym_any] = ACTIONS(3459), + [anon_sym_number] = ACTIONS(3459), + [anon_sym_boolean] = ACTIONS(3459), + [anon_sym_string] = ACTIONS(3459), + [anon_sym_symbol] = ACTIONS(3459), + [anon_sym_object] = ACTIONS(3459), + [anon_sym_abstract] = ACTIONS(3459), + [anon_sym_interface] = ACTIONS(3459), + [anon_sym_enum] = ACTIONS(3459), + [sym_html_comment] = ACTIONS(5), + }, + [1555] = { + [sym_comment] = STATE(1555), + [ts_builtin_sym_end] = ACTIONS(3675), + [sym_identifier] = ACTIONS(3345), + [anon_sym_export] = ACTIONS(3345), + [anon_sym_type] = ACTIONS(3345), + [anon_sym_namespace] = ACTIONS(3345), + [anon_sym_LBRACE] = ACTIONS(3345), + [anon_sym_RBRACE] = ACTIONS(3345), + [anon_sym_typeof] = ACTIONS(3345), + [anon_sym_import] = ACTIONS(3345), + [anon_sym_with] = ACTIONS(3345), + [anon_sym_var] = ACTIONS(3345), + [anon_sym_let] = ACTIONS(3345), + [anon_sym_const] = ACTIONS(3345), + [anon_sym_BANG] = ACTIONS(3345), + [anon_sym_if] = ACTIONS(3345), + [anon_sym_switch] = ACTIONS(3345), + [anon_sym_for] = ACTIONS(3345), + [anon_sym_LPAREN] = ACTIONS(3345), + [anon_sym_await] = ACTIONS(3345), + [anon_sym_while] = ACTIONS(3345), + [anon_sym_do] = ACTIONS(3345), + [anon_sym_try] = ACTIONS(3345), + [anon_sym_break] = ACTIONS(3345), + [anon_sym_continue] = ACTIONS(3345), + [anon_sym_debugger] = ACTIONS(3345), + [anon_sym_return] = ACTIONS(3345), + [anon_sym_throw] = ACTIONS(3345), + [anon_sym_SEMI] = ACTIONS(3345), + [anon_sym_yield] = ACTIONS(3345), + [anon_sym_LBRACK] = ACTIONS(3345), + [anon_sym_LTtemplate_GT] = ACTIONS(3345), + [anon_sym_DQUOTE] = ACTIONS(3345), + [anon_sym_SQUOTE] = ACTIONS(3345), + [anon_sym_class] = ACTIONS(3345), + [anon_sym_async] = ACTIONS(3345), + [anon_sym_function] = ACTIONS(3345), + [anon_sym_new] = ACTIONS(3345), + [anon_sym_using] = ACTIONS(3345), + [anon_sym_PLUS] = ACTIONS(3345), + [anon_sym_DASH] = ACTIONS(3345), + [anon_sym_SLASH] = ACTIONS(3345), + [anon_sym_LT] = ACTIONS(3345), + [anon_sym_TILDE] = ACTIONS(3345), + [anon_sym_void] = ACTIONS(3345), + [anon_sym_delete] = ACTIONS(3345), + [anon_sym_PLUS_PLUS] = ACTIONS(3345), + [anon_sym_DASH_DASH] = ACTIONS(3345), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3345), + [sym_number] = ACTIONS(3345), + [sym_private_property_identifier] = ACTIONS(3345), + [sym_this] = ACTIONS(3345), + [sym_super] = ACTIONS(3345), + [sym_true] = ACTIONS(3345), + [sym_false] = ACTIONS(3345), + [sym_null] = ACTIONS(3345), + [sym_undefined] = ACTIONS(3345), + [anon_sym_AT] = ACTIONS(3345), + [anon_sym_static] = ACTIONS(3345), + [anon_sym_readonly] = ACTIONS(3345), + [anon_sym_get] = ACTIONS(3345), + [anon_sym_set] = ACTIONS(3345), + [anon_sym_declare] = ACTIONS(3345), + [anon_sym_public] = ACTIONS(3345), + [anon_sym_private] = ACTIONS(3345), + [anon_sym_protected] = ACTIONS(3345), + [anon_sym_override] = ACTIONS(3345), + [anon_sym_module] = ACTIONS(3345), + [anon_sym_any] = ACTIONS(3345), + [anon_sym_number] = ACTIONS(3345), + [anon_sym_boolean] = ACTIONS(3345), + [anon_sym_string] = ACTIONS(3345), + [anon_sym_symbol] = ACTIONS(3345), + [anon_sym_object] = ACTIONS(3345), + [anon_sym_abstract] = ACTIONS(3345), + [anon_sym_interface] = ACTIONS(3345), + [anon_sym_enum] = ACTIONS(3345), + [sym_html_comment] = ACTIONS(5), + }, + [1556] = { + [sym_comment] = STATE(1556), + [ts_builtin_sym_end] = ACTIONS(3677), + [sym_identifier] = ACTIONS(3343), + [anon_sym_export] = ACTIONS(3343), + [anon_sym_type] = ACTIONS(3343), + [anon_sym_namespace] = ACTIONS(3343), + [anon_sym_LBRACE] = ACTIONS(3343), + [anon_sym_RBRACE] = ACTIONS(3343), + [anon_sym_typeof] = ACTIONS(3343), + [anon_sym_import] = ACTIONS(3343), + [anon_sym_with] = ACTIONS(3343), + [anon_sym_var] = ACTIONS(3343), + [anon_sym_let] = ACTIONS(3343), + [anon_sym_const] = ACTIONS(3343), + [anon_sym_BANG] = ACTIONS(3343), + [anon_sym_if] = ACTIONS(3343), + [anon_sym_switch] = ACTIONS(3343), + [anon_sym_for] = ACTIONS(3343), + [anon_sym_LPAREN] = ACTIONS(3343), + [anon_sym_await] = ACTIONS(3343), + [anon_sym_while] = ACTIONS(3343), + [anon_sym_do] = ACTIONS(3343), + [anon_sym_try] = ACTIONS(3343), + [anon_sym_break] = ACTIONS(3343), + [anon_sym_continue] = ACTIONS(3343), + [anon_sym_debugger] = ACTIONS(3343), + [anon_sym_return] = ACTIONS(3343), + [anon_sym_throw] = ACTIONS(3343), + [anon_sym_SEMI] = ACTIONS(3343), + [anon_sym_yield] = ACTIONS(3343), + [anon_sym_LBRACK] = ACTIONS(3343), + [anon_sym_LTtemplate_GT] = ACTIONS(3343), + [anon_sym_DQUOTE] = ACTIONS(3343), + [anon_sym_SQUOTE] = ACTIONS(3343), + [anon_sym_class] = ACTIONS(3343), + [anon_sym_async] = ACTIONS(3343), + [anon_sym_function] = ACTIONS(3343), + [anon_sym_new] = ACTIONS(3343), + [anon_sym_using] = ACTIONS(3343), + [anon_sym_PLUS] = ACTIONS(3343), + [anon_sym_DASH] = ACTIONS(3343), + [anon_sym_SLASH] = ACTIONS(3343), + [anon_sym_LT] = ACTIONS(3343), + [anon_sym_TILDE] = ACTIONS(3343), + [anon_sym_void] = ACTIONS(3343), + [anon_sym_delete] = ACTIONS(3343), + [anon_sym_PLUS_PLUS] = ACTIONS(3343), + [anon_sym_DASH_DASH] = ACTIONS(3343), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3343), + [sym_number] = ACTIONS(3343), + [sym_private_property_identifier] = ACTIONS(3343), + [sym_this] = ACTIONS(3343), + [sym_super] = ACTIONS(3343), + [sym_true] = ACTIONS(3343), + [sym_false] = ACTIONS(3343), + [sym_null] = ACTIONS(3343), + [sym_undefined] = ACTIONS(3343), + [anon_sym_AT] = ACTIONS(3343), + [anon_sym_static] = ACTIONS(3343), + [anon_sym_readonly] = ACTIONS(3343), + [anon_sym_get] = ACTIONS(3343), + [anon_sym_set] = ACTIONS(3343), + [anon_sym_declare] = ACTIONS(3343), + [anon_sym_public] = ACTIONS(3343), + [anon_sym_private] = ACTIONS(3343), + [anon_sym_protected] = ACTIONS(3343), + [anon_sym_override] = ACTIONS(3343), + [anon_sym_module] = ACTIONS(3343), + [anon_sym_any] = ACTIONS(3343), + [anon_sym_number] = ACTIONS(3343), + [anon_sym_boolean] = ACTIONS(3343), + [anon_sym_string] = ACTIONS(3343), + [anon_sym_symbol] = ACTIONS(3343), + [anon_sym_object] = ACTIONS(3343), + [anon_sym_abstract] = ACTIONS(3343), + [anon_sym_interface] = ACTIONS(3343), + [anon_sym_enum] = ACTIONS(3343), + [sym_html_comment] = ACTIONS(5), + }, + [1557] = { + [sym_comment] = STATE(1557), + [ts_builtin_sym_end] = ACTIONS(3525), + [sym_identifier] = ACTIONS(3323), + [anon_sym_export] = ACTIONS(3323), + [anon_sym_type] = ACTIONS(3323), + [anon_sym_namespace] = ACTIONS(3323), + [anon_sym_LBRACE] = ACTIONS(3323), + [anon_sym_RBRACE] = ACTIONS(3323), + [anon_sym_typeof] = ACTIONS(3323), + [anon_sym_import] = ACTIONS(3323), + [anon_sym_with] = ACTIONS(3323), + [anon_sym_var] = ACTIONS(3323), + [anon_sym_let] = ACTIONS(3323), + [anon_sym_const] = ACTIONS(3323), + [anon_sym_BANG] = ACTIONS(3323), + [anon_sym_if] = ACTIONS(3323), + [anon_sym_switch] = ACTIONS(3323), + [anon_sym_for] = ACTIONS(3323), + [anon_sym_LPAREN] = ACTIONS(3323), + [anon_sym_await] = ACTIONS(3323), + [anon_sym_while] = ACTIONS(3323), + [anon_sym_do] = ACTIONS(3323), + [anon_sym_try] = ACTIONS(3323), + [anon_sym_break] = ACTIONS(3323), + [anon_sym_continue] = ACTIONS(3323), + [anon_sym_debugger] = ACTIONS(3323), + [anon_sym_return] = ACTIONS(3323), + [anon_sym_throw] = ACTIONS(3323), + [anon_sym_SEMI] = ACTIONS(3323), + [anon_sym_yield] = ACTIONS(3323), + [anon_sym_LBRACK] = ACTIONS(3323), + [anon_sym_LTtemplate_GT] = ACTIONS(3323), + [anon_sym_DQUOTE] = ACTIONS(3323), + [anon_sym_SQUOTE] = ACTIONS(3323), + [anon_sym_class] = ACTIONS(3323), + [anon_sym_async] = ACTIONS(3323), + [anon_sym_function] = ACTIONS(3323), + [anon_sym_new] = ACTIONS(3323), + [anon_sym_using] = ACTIONS(3323), + [anon_sym_PLUS] = ACTIONS(3323), + [anon_sym_DASH] = ACTIONS(3323), + [anon_sym_SLASH] = ACTIONS(3323), + [anon_sym_LT] = ACTIONS(3323), + [anon_sym_TILDE] = ACTIONS(3323), + [anon_sym_void] = ACTIONS(3323), + [anon_sym_delete] = ACTIONS(3323), + [anon_sym_PLUS_PLUS] = ACTIONS(3323), + [anon_sym_DASH_DASH] = ACTIONS(3323), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3323), + [sym_number] = ACTIONS(3323), + [sym_private_property_identifier] = ACTIONS(3323), + [sym_this] = ACTIONS(3323), + [sym_super] = ACTIONS(3323), + [sym_true] = ACTIONS(3323), + [sym_false] = ACTIONS(3323), + [sym_null] = ACTIONS(3323), + [sym_undefined] = ACTIONS(3323), + [anon_sym_AT] = ACTIONS(3323), + [anon_sym_static] = ACTIONS(3323), + [anon_sym_readonly] = ACTIONS(3323), + [anon_sym_get] = ACTIONS(3323), + [anon_sym_set] = ACTIONS(3323), + [anon_sym_declare] = ACTIONS(3323), + [anon_sym_public] = ACTIONS(3323), + [anon_sym_private] = ACTIONS(3323), + [anon_sym_protected] = ACTIONS(3323), + [anon_sym_override] = ACTIONS(3323), + [anon_sym_module] = ACTIONS(3323), + [anon_sym_any] = ACTIONS(3323), + [anon_sym_number] = ACTIONS(3323), + [anon_sym_boolean] = ACTIONS(3323), + [anon_sym_string] = ACTIONS(3323), + [anon_sym_symbol] = ACTIONS(3323), + [anon_sym_object] = ACTIONS(3323), + [anon_sym_abstract] = ACTIONS(3323), + [anon_sym_interface] = ACTIONS(3323), + [anon_sym_enum] = ACTIONS(3323), + [sym_html_comment] = ACTIONS(5), + }, + [1558] = { + [sym_comment] = STATE(1558), + [ts_builtin_sym_end] = ACTIONS(3603), + [sym_identifier] = ACTIONS(3385), + [anon_sym_export] = ACTIONS(3385), + [anon_sym_type] = ACTIONS(3385), + [anon_sym_namespace] = ACTIONS(3385), + [anon_sym_LBRACE] = ACTIONS(3385), + [anon_sym_RBRACE] = ACTIONS(3385), + [anon_sym_typeof] = ACTIONS(3385), + [anon_sym_import] = ACTIONS(3385), + [anon_sym_with] = ACTIONS(3385), + [anon_sym_var] = ACTIONS(3385), + [anon_sym_let] = ACTIONS(3385), + [anon_sym_const] = ACTIONS(3385), + [anon_sym_BANG] = ACTIONS(3385), + [anon_sym_if] = ACTIONS(3385), + [anon_sym_switch] = ACTIONS(3385), + [anon_sym_for] = ACTIONS(3385), + [anon_sym_LPAREN] = ACTIONS(3385), + [anon_sym_await] = ACTIONS(3385), + [anon_sym_while] = ACTIONS(3385), + [anon_sym_do] = ACTIONS(3385), + [anon_sym_try] = ACTIONS(3385), + [anon_sym_break] = ACTIONS(3385), + [anon_sym_continue] = ACTIONS(3385), + [anon_sym_debugger] = ACTIONS(3385), + [anon_sym_return] = ACTIONS(3385), + [anon_sym_throw] = ACTIONS(3385), + [anon_sym_SEMI] = ACTIONS(3385), + [anon_sym_yield] = ACTIONS(3385), + [anon_sym_LBRACK] = ACTIONS(3385), + [anon_sym_LTtemplate_GT] = ACTIONS(3385), + [anon_sym_DQUOTE] = ACTIONS(3385), + [anon_sym_SQUOTE] = ACTIONS(3385), + [anon_sym_class] = ACTIONS(3385), + [anon_sym_async] = ACTIONS(3385), + [anon_sym_function] = ACTIONS(3385), + [anon_sym_new] = ACTIONS(3385), + [anon_sym_using] = ACTIONS(3385), + [anon_sym_PLUS] = ACTIONS(3385), + [anon_sym_DASH] = ACTIONS(3385), + [anon_sym_SLASH] = ACTIONS(3385), + [anon_sym_LT] = ACTIONS(3385), + [anon_sym_TILDE] = ACTIONS(3385), + [anon_sym_void] = ACTIONS(3385), + [anon_sym_delete] = ACTIONS(3385), + [anon_sym_PLUS_PLUS] = ACTIONS(3385), + [anon_sym_DASH_DASH] = ACTIONS(3385), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3385), + [sym_number] = ACTIONS(3385), + [sym_private_property_identifier] = ACTIONS(3385), + [sym_this] = ACTIONS(3385), + [sym_super] = ACTIONS(3385), + [sym_true] = ACTIONS(3385), + [sym_false] = ACTIONS(3385), + [sym_null] = ACTIONS(3385), + [sym_undefined] = ACTIONS(3385), + [anon_sym_AT] = ACTIONS(3385), + [anon_sym_static] = ACTIONS(3385), + [anon_sym_readonly] = ACTIONS(3385), + [anon_sym_get] = ACTIONS(3385), + [anon_sym_set] = ACTIONS(3385), + [anon_sym_declare] = ACTIONS(3385), + [anon_sym_public] = ACTIONS(3385), + [anon_sym_private] = ACTIONS(3385), + [anon_sym_protected] = ACTIONS(3385), + [anon_sym_override] = ACTIONS(3385), + [anon_sym_module] = ACTIONS(3385), + [anon_sym_any] = ACTIONS(3385), + [anon_sym_number] = ACTIONS(3385), + [anon_sym_boolean] = ACTIONS(3385), + [anon_sym_string] = ACTIONS(3385), + [anon_sym_symbol] = ACTIONS(3385), + [anon_sym_object] = ACTIONS(3385), + [anon_sym_abstract] = ACTIONS(3385), + [anon_sym_interface] = ACTIONS(3385), + [anon_sym_enum] = ACTIONS(3385), + [sym_html_comment] = ACTIONS(5), + }, + [1559] = { + [sym_comment] = STATE(1559), + [ts_builtin_sym_end] = ACTIONS(3475), + [sym_identifier] = ACTIONS(3423), + [anon_sym_export] = ACTIONS(3423), + [anon_sym_type] = ACTIONS(3423), + [anon_sym_namespace] = ACTIONS(3423), + [anon_sym_LBRACE] = ACTIONS(3423), + [anon_sym_RBRACE] = ACTIONS(3423), + [anon_sym_typeof] = ACTIONS(3423), + [anon_sym_import] = ACTIONS(3423), + [anon_sym_with] = ACTIONS(3423), + [anon_sym_var] = ACTIONS(3423), + [anon_sym_let] = ACTIONS(3423), + [anon_sym_const] = ACTIONS(3423), + [anon_sym_BANG] = ACTIONS(3423), + [anon_sym_if] = ACTIONS(3423), + [anon_sym_switch] = ACTIONS(3423), + [anon_sym_for] = ACTIONS(3423), + [anon_sym_LPAREN] = ACTIONS(3423), + [anon_sym_await] = ACTIONS(3423), + [anon_sym_while] = ACTIONS(3423), + [anon_sym_do] = ACTIONS(3423), + [anon_sym_try] = ACTIONS(3423), + [anon_sym_break] = ACTIONS(3423), + [anon_sym_continue] = ACTIONS(3423), + [anon_sym_debugger] = ACTIONS(3423), + [anon_sym_return] = ACTIONS(3423), + [anon_sym_throw] = ACTIONS(3423), + [anon_sym_SEMI] = ACTIONS(3423), + [anon_sym_yield] = ACTIONS(3423), + [anon_sym_LBRACK] = ACTIONS(3423), + [anon_sym_LTtemplate_GT] = ACTIONS(3423), + [anon_sym_DQUOTE] = ACTIONS(3423), + [anon_sym_SQUOTE] = ACTIONS(3423), + [anon_sym_class] = ACTIONS(3423), + [anon_sym_async] = ACTIONS(3423), + [anon_sym_function] = ACTIONS(3423), + [anon_sym_new] = ACTIONS(3423), + [anon_sym_using] = ACTIONS(3423), + [anon_sym_PLUS] = ACTIONS(3423), + [anon_sym_DASH] = ACTIONS(3423), + [anon_sym_SLASH] = ACTIONS(3423), + [anon_sym_LT] = ACTIONS(3423), + [anon_sym_TILDE] = ACTIONS(3423), + [anon_sym_void] = ACTIONS(3423), + [anon_sym_delete] = ACTIONS(3423), + [anon_sym_PLUS_PLUS] = ACTIONS(3423), + [anon_sym_DASH_DASH] = ACTIONS(3423), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3423), + [sym_number] = ACTIONS(3423), + [sym_private_property_identifier] = ACTIONS(3423), + [sym_this] = ACTIONS(3423), + [sym_super] = ACTIONS(3423), + [sym_true] = ACTIONS(3423), + [sym_false] = ACTIONS(3423), + [sym_null] = ACTIONS(3423), + [sym_undefined] = ACTIONS(3423), + [anon_sym_AT] = ACTIONS(3423), + [anon_sym_static] = ACTIONS(3423), + [anon_sym_readonly] = ACTIONS(3423), + [anon_sym_get] = ACTIONS(3423), + [anon_sym_set] = ACTIONS(3423), + [anon_sym_declare] = ACTIONS(3423), + [anon_sym_public] = ACTIONS(3423), + [anon_sym_private] = ACTIONS(3423), + [anon_sym_protected] = ACTIONS(3423), + [anon_sym_override] = ACTIONS(3423), + [anon_sym_module] = ACTIONS(3423), + [anon_sym_any] = ACTIONS(3423), + [anon_sym_number] = ACTIONS(3423), + [anon_sym_boolean] = ACTIONS(3423), + [anon_sym_string] = ACTIONS(3423), + [anon_sym_symbol] = ACTIONS(3423), + [anon_sym_object] = ACTIONS(3423), + [anon_sym_abstract] = ACTIONS(3423), + [anon_sym_interface] = ACTIONS(3423), + [anon_sym_enum] = ACTIONS(3423), + [sym_html_comment] = ACTIONS(5), + }, + [1560] = { + [sym_comment] = STATE(1560), + [ts_builtin_sym_end] = ACTIONS(3629), + [sym_identifier] = ACTIONS(3227), + [anon_sym_export] = ACTIONS(3227), + [anon_sym_type] = ACTIONS(3227), + [anon_sym_namespace] = ACTIONS(3227), + [anon_sym_LBRACE] = ACTIONS(3227), + [anon_sym_RBRACE] = ACTIONS(3227), + [anon_sym_typeof] = ACTIONS(3227), + [anon_sym_import] = ACTIONS(3227), + [anon_sym_with] = ACTIONS(3227), + [anon_sym_var] = ACTIONS(3227), + [anon_sym_let] = ACTIONS(3227), + [anon_sym_const] = ACTIONS(3227), + [anon_sym_BANG] = ACTIONS(3227), + [anon_sym_if] = ACTIONS(3227), + [anon_sym_switch] = ACTIONS(3227), + [anon_sym_for] = ACTIONS(3227), + [anon_sym_LPAREN] = ACTIONS(3227), + [anon_sym_await] = ACTIONS(3227), + [anon_sym_while] = ACTIONS(3227), + [anon_sym_do] = ACTIONS(3227), + [anon_sym_try] = ACTIONS(3227), + [anon_sym_break] = ACTIONS(3227), + [anon_sym_continue] = ACTIONS(3227), + [anon_sym_debugger] = ACTIONS(3227), + [anon_sym_return] = ACTIONS(3227), + [anon_sym_throw] = ACTIONS(3227), + [anon_sym_SEMI] = ACTIONS(3227), + [anon_sym_yield] = ACTIONS(3227), + [anon_sym_LBRACK] = ACTIONS(3227), + [anon_sym_LTtemplate_GT] = ACTIONS(3227), + [anon_sym_DQUOTE] = ACTIONS(3227), + [anon_sym_SQUOTE] = ACTIONS(3227), + [anon_sym_class] = ACTIONS(3227), + [anon_sym_async] = ACTIONS(3227), + [anon_sym_function] = ACTIONS(3227), + [anon_sym_new] = ACTIONS(3227), + [anon_sym_using] = ACTIONS(3227), + [anon_sym_PLUS] = ACTIONS(3227), + [anon_sym_DASH] = ACTIONS(3227), + [anon_sym_SLASH] = ACTIONS(3227), + [anon_sym_LT] = ACTIONS(3227), + [anon_sym_TILDE] = ACTIONS(3227), + [anon_sym_void] = ACTIONS(3227), + [anon_sym_delete] = ACTIONS(3227), + [anon_sym_PLUS_PLUS] = ACTIONS(3227), + [anon_sym_DASH_DASH] = ACTIONS(3227), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3227), + [sym_number] = ACTIONS(3227), + [sym_private_property_identifier] = ACTIONS(3227), + [sym_this] = ACTIONS(3227), + [sym_super] = ACTIONS(3227), + [sym_true] = ACTIONS(3227), + [sym_false] = ACTIONS(3227), + [sym_null] = ACTIONS(3227), + [sym_undefined] = ACTIONS(3227), + [anon_sym_AT] = ACTIONS(3227), + [anon_sym_static] = ACTIONS(3227), + [anon_sym_readonly] = ACTIONS(3227), + [anon_sym_get] = ACTIONS(3227), + [anon_sym_set] = ACTIONS(3227), + [anon_sym_declare] = ACTIONS(3227), + [anon_sym_public] = ACTIONS(3227), + [anon_sym_private] = ACTIONS(3227), + [anon_sym_protected] = ACTIONS(3227), + [anon_sym_override] = ACTIONS(3227), + [anon_sym_module] = ACTIONS(3227), + [anon_sym_any] = ACTIONS(3227), + [anon_sym_number] = ACTIONS(3227), + [anon_sym_boolean] = ACTIONS(3227), + [anon_sym_string] = ACTIONS(3227), + [anon_sym_symbol] = ACTIONS(3227), + [anon_sym_object] = ACTIONS(3227), + [anon_sym_abstract] = ACTIONS(3227), + [anon_sym_interface] = ACTIONS(3227), + [anon_sym_enum] = ACTIONS(3227), + [sym_html_comment] = ACTIONS(5), + }, + [1561] = { + [sym_comment] = STATE(1561), + [ts_builtin_sym_end] = ACTIONS(3537), + [sym_identifier] = ACTIONS(3373), [anon_sym_export] = ACTIONS(3373), [anon_sym_type] = ACTIONS(3373), [anon_sym_namespace] = ACTIONS(3373), @@ -188618,7 +190210,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3373), [anon_sym_const] = ACTIONS(3373), [anon_sym_BANG] = ACTIONS(3373), - [anon_sym_else] = ACTIONS(3373), [anon_sym_if] = ACTIONS(3373), [anon_sym_switch] = ACTIONS(3373), [anon_sym_for] = ACTIONS(3373), @@ -188684,91 +190275,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3373), [sym_html_comment] = ACTIONS(5), }, - [1538] = { - [sym_comment] = STATE(1538), - [ts_builtin_sym_end] = ACTIONS(3625), - [sym_identifier] = ACTIONS(3437), - [anon_sym_export] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_typeof] = ACTIONS(3437), - [anon_sym_import] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_var] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_else] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_switch] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_await] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_debugger] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_throw] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LTtemplate_GT] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_SQUOTE] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_async] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_using] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_void] = ACTIONS(3437), - [anon_sym_delete] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3437), - [sym_number] = ACTIONS(3437), - [sym_private_property_identifier] = ACTIONS(3437), - [sym_this] = ACTIONS(3437), - [sym_super] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_null] = ACTIONS(3437), - [sym_undefined] = ACTIONS(3437), - [anon_sym_AT] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_readonly] = ACTIONS(3437), - [anon_sym_get] = ACTIONS(3437), - [anon_sym_set] = ACTIONS(3437), - [anon_sym_declare] = ACTIONS(3437), - [anon_sym_public] = ACTIONS(3437), - [anon_sym_private] = ACTIONS(3437), - [anon_sym_protected] = ACTIONS(3437), - [anon_sym_override] = ACTIONS(3437), - [anon_sym_module] = ACTIONS(3437), - [anon_sym_any] = ACTIONS(3437), - [anon_sym_number] = ACTIONS(3437), - [anon_sym_boolean] = ACTIONS(3437), - [anon_sym_string] = ACTIONS(3437), - [anon_sym_symbol] = ACTIONS(3437), - [anon_sym_object] = ACTIONS(3437), - [anon_sym_abstract] = ACTIONS(3437), - [anon_sym_interface] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), - [sym_html_comment] = ACTIONS(5), - }, - [1539] = { - [sym_comment] = STATE(1539), - [ts_builtin_sym_end] = ACTIONS(3627), + [1562] = { + [sym_comment] = STATE(1562), + [ts_builtin_sym_end] = ACTIONS(3527), [sym_identifier] = ACTIONS(3317), [anon_sym_export] = ACTIONS(3317), [anon_sym_type] = ACTIONS(3317), @@ -188782,7 +190291,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3317), [anon_sym_const] = ACTIONS(3317), [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_else] = ACTIONS(3317), [anon_sym_if] = ACTIONS(3317), [anon_sym_switch] = ACTIONS(3317), [anon_sym_for] = ACTIONS(3317), @@ -188848,14178 +190356,1305 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3317), [sym_html_comment] = ACTIONS(5), }, - [1540] = { - [sym_comment] = STATE(1540), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), + [1563] = { + [sym_comment] = STATE(1563), + [ts_builtin_sym_end] = ACTIONS(3619), + [sym_identifier] = ACTIONS(3241), + [anon_sym_export] = ACTIONS(3241), + [anon_sym_type] = ACTIONS(3241), + [anon_sym_namespace] = ACTIONS(3241), + [anon_sym_LBRACE] = ACTIONS(3241), + [anon_sym_RBRACE] = ACTIONS(3241), + [anon_sym_typeof] = ACTIONS(3241), + [anon_sym_import] = ACTIONS(3241), + [anon_sym_with] = ACTIONS(3241), + [anon_sym_var] = ACTIONS(3241), + [anon_sym_let] = ACTIONS(3241), + [anon_sym_const] = ACTIONS(3241), + [anon_sym_BANG] = ACTIONS(3241), + [anon_sym_if] = ACTIONS(3241), + [anon_sym_switch] = ACTIONS(3241), + [anon_sym_for] = ACTIONS(3241), + [anon_sym_LPAREN] = ACTIONS(3241), + [anon_sym_await] = ACTIONS(3241), + [anon_sym_while] = ACTIONS(3241), + [anon_sym_do] = ACTIONS(3241), + [anon_sym_try] = ACTIONS(3241), + [anon_sym_break] = ACTIONS(3241), + [anon_sym_continue] = ACTIONS(3241), + [anon_sym_debugger] = ACTIONS(3241), + [anon_sym_return] = ACTIONS(3241), + [anon_sym_throw] = ACTIONS(3241), + [anon_sym_SEMI] = ACTIONS(3241), + [anon_sym_yield] = ACTIONS(3241), + [anon_sym_LBRACK] = ACTIONS(3241), + [anon_sym_LTtemplate_GT] = ACTIONS(3241), + [anon_sym_DQUOTE] = ACTIONS(3241), + [anon_sym_SQUOTE] = ACTIONS(3241), + [anon_sym_class] = ACTIONS(3241), + [anon_sym_async] = ACTIONS(3241), + [anon_sym_function] = ACTIONS(3241), + [anon_sym_new] = ACTIONS(3241), + [anon_sym_using] = ACTIONS(3241), + [anon_sym_PLUS] = ACTIONS(3241), + [anon_sym_DASH] = ACTIONS(3241), + [anon_sym_SLASH] = ACTIONS(3241), + [anon_sym_LT] = ACTIONS(3241), + [anon_sym_TILDE] = ACTIONS(3241), + [anon_sym_void] = ACTIONS(3241), + [anon_sym_delete] = ACTIONS(3241), + [anon_sym_PLUS_PLUS] = ACTIONS(3241), + [anon_sym_DASH_DASH] = ACTIONS(3241), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), + [anon_sym_BQUOTE] = ACTIONS(3241), + [sym_number] = ACTIONS(3241), + [sym_private_property_identifier] = ACTIONS(3241), + [sym_this] = ACTIONS(3241), + [sym_super] = ACTIONS(3241), + [sym_true] = ACTIONS(3241), + [sym_false] = ACTIONS(3241), + [sym_null] = ACTIONS(3241), + [sym_undefined] = ACTIONS(3241), + [anon_sym_AT] = ACTIONS(3241), + [anon_sym_static] = ACTIONS(3241), + [anon_sym_readonly] = ACTIONS(3241), + [anon_sym_get] = ACTIONS(3241), + [anon_sym_set] = ACTIONS(3241), + [anon_sym_declare] = ACTIONS(3241), + [anon_sym_public] = ACTIONS(3241), + [anon_sym_private] = ACTIONS(3241), + [anon_sym_protected] = ACTIONS(3241), + [anon_sym_override] = ACTIONS(3241), + [anon_sym_module] = ACTIONS(3241), + [anon_sym_any] = ACTIONS(3241), + [anon_sym_number] = ACTIONS(3241), + [anon_sym_boolean] = ACTIONS(3241), + [anon_sym_string] = ACTIONS(3241), + [anon_sym_symbol] = ACTIONS(3241), + [anon_sym_object] = ACTIONS(3241), + [anon_sym_abstract] = ACTIONS(3241), + [anon_sym_interface] = ACTIONS(3241), + [anon_sym_enum] = ACTIONS(3241), [sym_html_comment] = ACTIONS(5), }, - [1541] = { - [sym_comment] = STATE(1541), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), + [1564] = { + [sym_comment] = STATE(1564), + [ts_builtin_sym_end] = ACTIONS(3557), + [sym_identifier] = ACTIONS(3295), + [anon_sym_export] = ACTIONS(3295), + [anon_sym_type] = ACTIONS(3295), + [anon_sym_namespace] = ACTIONS(3295), + [anon_sym_LBRACE] = ACTIONS(3295), + [anon_sym_RBRACE] = ACTIONS(3295), + [anon_sym_typeof] = ACTIONS(3295), + [anon_sym_import] = ACTIONS(3295), + [anon_sym_with] = ACTIONS(3295), + [anon_sym_var] = ACTIONS(3295), + [anon_sym_let] = ACTIONS(3295), + [anon_sym_const] = ACTIONS(3295), + [anon_sym_BANG] = ACTIONS(3295), + [anon_sym_if] = ACTIONS(3295), + [anon_sym_switch] = ACTIONS(3295), + [anon_sym_for] = ACTIONS(3295), + [anon_sym_LPAREN] = ACTIONS(3295), + [anon_sym_await] = ACTIONS(3295), + [anon_sym_while] = ACTIONS(3295), + [anon_sym_do] = ACTIONS(3295), + [anon_sym_try] = ACTIONS(3295), + [anon_sym_break] = ACTIONS(3295), + [anon_sym_continue] = ACTIONS(3295), + [anon_sym_debugger] = ACTIONS(3295), + [anon_sym_return] = ACTIONS(3295), + [anon_sym_throw] = ACTIONS(3295), + [anon_sym_SEMI] = ACTIONS(3295), + [anon_sym_yield] = ACTIONS(3295), + [anon_sym_LBRACK] = ACTIONS(3295), + [anon_sym_LTtemplate_GT] = ACTIONS(3295), + [anon_sym_DQUOTE] = ACTIONS(3295), + [anon_sym_SQUOTE] = ACTIONS(3295), + [anon_sym_class] = ACTIONS(3295), + [anon_sym_async] = ACTIONS(3295), + [anon_sym_function] = ACTIONS(3295), + [anon_sym_new] = ACTIONS(3295), + [anon_sym_using] = ACTIONS(3295), + [anon_sym_PLUS] = ACTIONS(3295), + [anon_sym_DASH] = ACTIONS(3295), + [anon_sym_SLASH] = ACTIONS(3295), + [anon_sym_LT] = ACTIONS(3295), + [anon_sym_TILDE] = ACTIONS(3295), + [anon_sym_void] = ACTIONS(3295), + [anon_sym_delete] = ACTIONS(3295), + [anon_sym_PLUS_PLUS] = ACTIONS(3295), + [anon_sym_DASH_DASH] = ACTIONS(3295), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), + [anon_sym_BQUOTE] = ACTIONS(3295), + [sym_number] = ACTIONS(3295), + [sym_private_property_identifier] = ACTIONS(3295), + [sym_this] = ACTIONS(3295), + [sym_super] = ACTIONS(3295), + [sym_true] = ACTIONS(3295), + [sym_false] = ACTIONS(3295), + [sym_null] = ACTIONS(3295), + [sym_undefined] = ACTIONS(3295), + [anon_sym_AT] = ACTIONS(3295), + [anon_sym_static] = ACTIONS(3295), + [anon_sym_readonly] = ACTIONS(3295), + [anon_sym_get] = ACTIONS(3295), + [anon_sym_set] = ACTIONS(3295), + [anon_sym_declare] = ACTIONS(3295), + [anon_sym_public] = ACTIONS(3295), + [anon_sym_private] = ACTIONS(3295), + [anon_sym_protected] = ACTIONS(3295), + [anon_sym_override] = ACTIONS(3295), + [anon_sym_module] = ACTIONS(3295), + [anon_sym_any] = ACTIONS(3295), + [anon_sym_number] = ACTIONS(3295), + [anon_sym_boolean] = ACTIONS(3295), + [anon_sym_string] = ACTIONS(3295), + [anon_sym_symbol] = ACTIONS(3295), + [anon_sym_object] = ACTIONS(3295), + [anon_sym_abstract] = ACTIONS(3295), + [anon_sym_interface] = ACTIONS(3295), + [anon_sym_enum] = ACTIONS(3295), [sym_html_comment] = ACTIONS(5), }, - [1542] = { - [sym_comment] = STATE(1542), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [1565] = { + [sym_comment] = STATE(1565), + [ts_builtin_sym_end] = ACTIONS(2302), + [sym_identifier] = ACTIONS(2300), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_type] = ACTIONS(2300), + [anon_sym_namespace] = ACTIONS(2300), + [anon_sym_LBRACE] = ACTIONS(2300), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_typeof] = ACTIONS(2300), + [anon_sym_import] = ACTIONS(2300), + [anon_sym_with] = ACTIONS(2300), + [anon_sym_var] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [anon_sym_BANG] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_switch] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_await] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_debugger] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_throw] = ACTIONS(2300), + [anon_sym_SEMI] = ACTIONS(2300), + [anon_sym_yield] = ACTIONS(2300), + [anon_sym_LBRACK] = ACTIONS(2300), + [anon_sym_LTtemplate_GT] = ACTIONS(2300), + [anon_sym_DQUOTE] = ACTIONS(2300), + [anon_sym_SQUOTE] = ACTIONS(2300), + [anon_sym_class] = ACTIONS(2300), + [anon_sym_async] = ACTIONS(2300), + [anon_sym_function] = ACTIONS(2300), + [anon_sym_new] = ACTIONS(2300), + [anon_sym_using] = ACTIONS(2300), + [anon_sym_PLUS] = ACTIONS(2300), + [anon_sym_DASH] = ACTIONS(2300), + [anon_sym_SLASH] = ACTIONS(2300), + [anon_sym_LT] = ACTIONS(2300), + [anon_sym_TILDE] = ACTIONS(2300), + [anon_sym_void] = ACTIONS(2300), + [anon_sym_delete] = ACTIONS(2300), + [anon_sym_PLUS_PLUS] = ACTIONS(2300), + [anon_sym_DASH_DASH] = ACTIONS(2300), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2300), + [sym_number] = ACTIONS(2300), + [sym_private_property_identifier] = ACTIONS(2300), + [sym_this] = ACTIONS(2300), + [sym_super] = ACTIONS(2300), + [sym_true] = ACTIONS(2300), + [sym_false] = ACTIONS(2300), + [sym_null] = ACTIONS(2300), + [sym_undefined] = ACTIONS(2300), + [anon_sym_AT] = ACTIONS(2300), + [anon_sym_static] = ACTIONS(2300), + [anon_sym_readonly] = ACTIONS(2300), + [anon_sym_get] = ACTIONS(2300), + [anon_sym_set] = ACTIONS(2300), + [anon_sym_declare] = ACTIONS(2300), + [anon_sym_public] = ACTIONS(2300), + [anon_sym_private] = ACTIONS(2300), + [anon_sym_protected] = ACTIONS(2300), + [anon_sym_override] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_any] = ACTIONS(2300), + [anon_sym_number] = ACTIONS(2300), + [anon_sym_boolean] = ACTIONS(2300), + [anon_sym_string] = ACTIONS(2300), + [anon_sym_symbol] = ACTIONS(2300), + [anon_sym_object] = ACTIONS(2300), + [anon_sym_abstract] = ACTIONS(2300), + [anon_sym_interface] = ACTIONS(2300), + [anon_sym_enum] = ACTIONS(2300), [sym_html_comment] = ACTIONS(5), }, - [1543] = { - [sym_comment] = STATE(1543), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), + [1566] = { + [sym_comment] = STATE(1566), + [ts_builtin_sym_end] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, - [1544] = { - [sym_comment] = STATE(1544), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_default] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_case] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), + [1567] = { + [sym_comment] = STATE(1567), + [ts_builtin_sym_end] = ACTIONS(3471), + [sym_identifier] = ACTIONS(3399), + [anon_sym_export] = ACTIONS(3399), + [anon_sym_type] = ACTIONS(3399), + [anon_sym_namespace] = ACTIONS(3399), + [anon_sym_LBRACE] = ACTIONS(3399), + [anon_sym_RBRACE] = ACTIONS(3399), + [anon_sym_typeof] = ACTIONS(3399), + [anon_sym_import] = ACTIONS(3399), + [anon_sym_with] = ACTIONS(3399), + [anon_sym_var] = ACTIONS(3399), + [anon_sym_let] = ACTIONS(3399), + [anon_sym_const] = ACTIONS(3399), + [anon_sym_BANG] = ACTIONS(3399), + [anon_sym_if] = ACTIONS(3399), + [anon_sym_switch] = ACTIONS(3399), + [anon_sym_for] = ACTIONS(3399), + [anon_sym_LPAREN] = ACTIONS(3399), + [anon_sym_await] = ACTIONS(3399), + [anon_sym_while] = ACTIONS(3399), + [anon_sym_do] = ACTIONS(3399), + [anon_sym_try] = ACTIONS(3399), + [anon_sym_break] = ACTIONS(3399), + [anon_sym_continue] = ACTIONS(3399), + [anon_sym_debugger] = ACTIONS(3399), + [anon_sym_return] = ACTIONS(3399), + [anon_sym_throw] = ACTIONS(3399), + [anon_sym_SEMI] = ACTIONS(3399), + [anon_sym_yield] = ACTIONS(3399), + [anon_sym_LBRACK] = ACTIONS(3399), + [anon_sym_LTtemplate_GT] = ACTIONS(3399), + [anon_sym_DQUOTE] = ACTIONS(3399), + [anon_sym_SQUOTE] = ACTIONS(3399), + [anon_sym_class] = ACTIONS(3399), + [anon_sym_async] = ACTIONS(3399), + [anon_sym_function] = ACTIONS(3399), + [anon_sym_new] = ACTIONS(3399), + [anon_sym_using] = ACTIONS(3399), + [anon_sym_PLUS] = ACTIONS(3399), + [anon_sym_DASH] = ACTIONS(3399), + [anon_sym_SLASH] = ACTIONS(3399), + [anon_sym_LT] = ACTIONS(3399), + [anon_sym_TILDE] = ACTIONS(3399), + [anon_sym_void] = ACTIONS(3399), + [anon_sym_delete] = ACTIONS(3399), + [anon_sym_PLUS_PLUS] = ACTIONS(3399), + [anon_sym_DASH_DASH] = ACTIONS(3399), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), - [sym_html_comment] = ACTIONS(5), - }, - [1545] = { - [sym_comment] = STATE(1545), - [ts_builtin_sym_end] = ACTIONS(2420), - [sym_identifier] = ACTIONS(2266), - [anon_sym_export] = ACTIONS(2266), - [anon_sym_type] = ACTIONS(2266), - [anon_sym_namespace] = ACTIONS(2266), - [anon_sym_LBRACE] = ACTIONS(2266), - [anon_sym_RBRACE] = ACTIONS(2266), - [anon_sym_typeof] = ACTIONS(2266), - [anon_sym_import] = ACTIONS(2266), - [anon_sym_with] = ACTIONS(2266), - [anon_sym_var] = ACTIONS(2266), - [anon_sym_let] = ACTIONS(2266), - [anon_sym_const] = ACTIONS(2266), - [anon_sym_BANG] = ACTIONS(2266), - [anon_sym_if] = ACTIONS(2266), - [anon_sym_switch] = ACTIONS(2266), - [anon_sym_for] = ACTIONS(2266), - [anon_sym_LPAREN] = ACTIONS(2266), - [anon_sym_await] = ACTIONS(2266), - [anon_sym_while] = ACTIONS(2266), - [anon_sym_do] = ACTIONS(2266), - [anon_sym_try] = ACTIONS(2266), - [anon_sym_break] = ACTIONS(2266), - [anon_sym_continue] = ACTIONS(2266), - [anon_sym_debugger] = ACTIONS(2266), - [anon_sym_return] = ACTIONS(2266), - [anon_sym_throw] = ACTIONS(2266), - [anon_sym_SEMI] = ACTIONS(2266), - [anon_sym_yield] = ACTIONS(2266), - [anon_sym_LBRACK] = ACTIONS(2266), - [anon_sym_LTtemplate_GT] = ACTIONS(2266), - [anon_sym_DQUOTE] = ACTIONS(2266), - [anon_sym_SQUOTE] = ACTIONS(2266), - [anon_sym_class] = ACTIONS(2266), - [anon_sym_async] = ACTIONS(2266), - [anon_sym_function] = ACTIONS(2266), - [anon_sym_new] = ACTIONS(2266), - [anon_sym_using] = ACTIONS(2266), - [anon_sym_PLUS] = ACTIONS(2266), - [anon_sym_DASH] = ACTIONS(2266), - [anon_sym_SLASH] = ACTIONS(2266), - [anon_sym_LT] = ACTIONS(2266), - [anon_sym_TILDE] = ACTIONS(2266), - [anon_sym_void] = ACTIONS(2266), - [anon_sym_delete] = ACTIONS(2266), - [anon_sym_PLUS_PLUS] = ACTIONS(2266), - [anon_sym_DASH_DASH] = ACTIONS(2266), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2266), - [sym_number] = ACTIONS(2266), - [sym_private_property_identifier] = ACTIONS(2266), - [sym_this] = ACTIONS(2266), - [sym_super] = ACTIONS(2266), - [sym_true] = ACTIONS(2266), - [sym_false] = ACTIONS(2266), - [sym_null] = ACTIONS(2266), - [sym_undefined] = ACTIONS(2266), - [anon_sym_AT] = ACTIONS(2266), - [anon_sym_static] = ACTIONS(2266), - [anon_sym_readonly] = ACTIONS(2266), - [anon_sym_get] = ACTIONS(2266), - [anon_sym_set] = ACTIONS(2266), - [anon_sym_declare] = ACTIONS(2266), - [anon_sym_public] = ACTIONS(2266), - [anon_sym_private] = ACTIONS(2266), - [anon_sym_protected] = ACTIONS(2266), - [anon_sym_override] = ACTIONS(2266), - [anon_sym_module] = ACTIONS(2266), - [anon_sym_any] = ACTIONS(2266), - [anon_sym_number] = ACTIONS(2266), - [anon_sym_boolean] = ACTIONS(2266), - [anon_sym_string] = ACTIONS(2266), - [anon_sym_symbol] = ACTIONS(2266), - [anon_sym_object] = ACTIONS(2266), - [anon_sym_abstract] = ACTIONS(2266), - [anon_sym_interface] = ACTIONS(2266), - [anon_sym_enum] = ACTIONS(2266), - [sym__automatic_semicolon] = ACTIONS(2502), + [anon_sym_BQUOTE] = ACTIONS(3399), + [sym_number] = ACTIONS(3399), + [sym_private_property_identifier] = ACTIONS(3399), + [sym_this] = ACTIONS(3399), + [sym_super] = ACTIONS(3399), + [sym_true] = ACTIONS(3399), + [sym_false] = ACTIONS(3399), + [sym_null] = ACTIONS(3399), + [sym_undefined] = ACTIONS(3399), + [anon_sym_AT] = ACTIONS(3399), + [anon_sym_static] = ACTIONS(3399), + [anon_sym_readonly] = ACTIONS(3399), + [anon_sym_get] = ACTIONS(3399), + [anon_sym_set] = ACTIONS(3399), + [anon_sym_declare] = ACTIONS(3399), + [anon_sym_public] = ACTIONS(3399), + [anon_sym_private] = ACTIONS(3399), + [anon_sym_protected] = ACTIONS(3399), + [anon_sym_override] = ACTIONS(3399), + [anon_sym_module] = ACTIONS(3399), + [anon_sym_any] = ACTIONS(3399), + [anon_sym_number] = ACTIONS(3399), + [anon_sym_boolean] = ACTIONS(3399), + [anon_sym_string] = ACTIONS(3399), + [anon_sym_symbol] = ACTIONS(3399), + [anon_sym_object] = ACTIONS(3399), + [anon_sym_abstract] = ACTIONS(3399), + [anon_sym_interface] = ACTIONS(3399), + [anon_sym_enum] = ACTIONS(3399), [sym_html_comment] = ACTIONS(5), }, - [1546] = { - [sym_comment] = STATE(1546), - [ts_builtin_sym_end] = ACTIONS(3629), - [sym_identifier] = ACTIONS(3379), - [anon_sym_export] = ACTIONS(3379), - [anon_sym_type] = ACTIONS(3379), - [anon_sym_namespace] = ACTIONS(3379), - [anon_sym_LBRACE] = ACTIONS(3379), - [anon_sym_RBRACE] = ACTIONS(3379), - [anon_sym_typeof] = ACTIONS(3379), - [anon_sym_import] = ACTIONS(3379), - [anon_sym_with] = ACTIONS(3379), - [anon_sym_var] = ACTIONS(3379), - [anon_sym_let] = ACTIONS(3379), - [anon_sym_const] = ACTIONS(3379), - [anon_sym_BANG] = ACTIONS(3379), - [anon_sym_else] = ACTIONS(3379), - [anon_sym_if] = ACTIONS(3379), - [anon_sym_switch] = ACTIONS(3379), - [anon_sym_for] = ACTIONS(3379), - [anon_sym_LPAREN] = ACTIONS(3379), - [anon_sym_await] = ACTIONS(3379), - [anon_sym_while] = ACTIONS(3379), - [anon_sym_do] = ACTIONS(3379), - [anon_sym_try] = ACTIONS(3379), - [anon_sym_break] = ACTIONS(3379), - [anon_sym_continue] = ACTIONS(3379), - [anon_sym_debugger] = ACTIONS(3379), - [anon_sym_return] = ACTIONS(3379), - [anon_sym_throw] = ACTIONS(3379), - [anon_sym_SEMI] = ACTIONS(3379), - [anon_sym_yield] = ACTIONS(3379), - [anon_sym_LBRACK] = ACTIONS(3379), - [anon_sym_LTtemplate_GT] = ACTIONS(3379), - [anon_sym_DQUOTE] = ACTIONS(3379), - [anon_sym_SQUOTE] = ACTIONS(3379), - [anon_sym_class] = ACTIONS(3379), - [anon_sym_async] = ACTIONS(3379), - [anon_sym_function] = ACTIONS(3379), - [anon_sym_new] = ACTIONS(3379), - [anon_sym_using] = ACTIONS(3379), - [anon_sym_PLUS] = ACTIONS(3379), - [anon_sym_DASH] = ACTIONS(3379), - [anon_sym_SLASH] = ACTIONS(3379), - [anon_sym_LT] = ACTIONS(3379), - [anon_sym_TILDE] = ACTIONS(3379), - [anon_sym_void] = ACTIONS(3379), - [anon_sym_delete] = ACTIONS(3379), - [anon_sym_PLUS_PLUS] = ACTIONS(3379), - [anon_sym_DASH_DASH] = ACTIONS(3379), + [1568] = { + [sym_comment] = STATE(1568), + [ts_builtin_sym_end] = ACTIONS(3555), + [sym_identifier] = ACTIONS(3231), + [anon_sym_export] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_namespace] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3231), + [anon_sym_RBRACE] = ACTIONS(3231), + [anon_sym_typeof] = ACTIONS(3231), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_with] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3231), + [anon_sym_let] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [anon_sym_BANG] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_switch] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(3231), + [anon_sym_await] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_do] = ACTIONS(3231), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_debugger] = ACTIONS(3231), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_throw] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3231), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3231), + [anon_sym_LTtemplate_GT] = ACTIONS(3231), + [anon_sym_DQUOTE] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_function] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_using] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_SLASH] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_TILDE] = ACTIONS(3231), + [anon_sym_void] = ACTIONS(3231), + [anon_sym_delete] = ACTIONS(3231), + [anon_sym_PLUS_PLUS] = ACTIONS(3231), + [anon_sym_DASH_DASH] = ACTIONS(3231), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3379), - [sym_number] = ACTIONS(3379), - [sym_private_property_identifier] = ACTIONS(3379), - [sym_this] = ACTIONS(3379), - [sym_super] = ACTIONS(3379), - [sym_true] = ACTIONS(3379), - [sym_false] = ACTIONS(3379), - [sym_null] = ACTIONS(3379), - [sym_undefined] = ACTIONS(3379), - [anon_sym_AT] = ACTIONS(3379), - [anon_sym_static] = ACTIONS(3379), - [anon_sym_readonly] = ACTIONS(3379), - [anon_sym_get] = ACTIONS(3379), - [anon_sym_set] = ACTIONS(3379), - [anon_sym_declare] = ACTIONS(3379), - [anon_sym_public] = ACTIONS(3379), - [anon_sym_private] = ACTIONS(3379), - [anon_sym_protected] = ACTIONS(3379), - [anon_sym_override] = ACTIONS(3379), - [anon_sym_module] = ACTIONS(3379), - [anon_sym_any] = ACTIONS(3379), - [anon_sym_number] = ACTIONS(3379), - [anon_sym_boolean] = ACTIONS(3379), - [anon_sym_string] = ACTIONS(3379), - [anon_sym_symbol] = ACTIONS(3379), - [anon_sym_object] = ACTIONS(3379), - [anon_sym_abstract] = ACTIONS(3379), - [anon_sym_interface] = ACTIONS(3379), - [anon_sym_enum] = ACTIONS(3379), + [anon_sym_BQUOTE] = ACTIONS(3231), + [sym_number] = ACTIONS(3231), + [sym_private_property_identifier] = ACTIONS(3231), + [sym_this] = ACTIONS(3231), + [sym_super] = ACTIONS(3231), + [sym_true] = ACTIONS(3231), + [sym_false] = ACTIONS(3231), + [sym_null] = ACTIONS(3231), + [sym_undefined] = ACTIONS(3231), + [anon_sym_AT] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3231), + [anon_sym_get] = ACTIONS(3231), + [anon_sym_set] = ACTIONS(3231), + [anon_sym_declare] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_private] = ACTIONS(3231), + [anon_sym_protected] = ACTIONS(3231), + [anon_sym_override] = ACTIONS(3231), + [anon_sym_module] = ACTIONS(3231), + [anon_sym_any] = ACTIONS(3231), + [anon_sym_number] = ACTIONS(3231), + [anon_sym_boolean] = ACTIONS(3231), + [anon_sym_string] = ACTIONS(3231), + [anon_sym_symbol] = ACTIONS(3231), + [anon_sym_object] = ACTIONS(3231), + [anon_sym_abstract] = ACTIONS(3231), + [anon_sym_interface] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), [sym_html_comment] = ACTIONS(5), }, - [1547] = { - [sym_comment] = STATE(1547), - [ts_builtin_sym_end] = ACTIONS(2424), - [sym_identifier] = ACTIONS(2194), - [anon_sym_export] = ACTIONS(2194), - [anon_sym_type] = ACTIONS(2194), - [anon_sym_namespace] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_typeof] = ACTIONS(2194), - [anon_sym_import] = ACTIONS(2194), - [anon_sym_with] = ACTIONS(2194), - [anon_sym_var] = ACTIONS(2194), - [anon_sym_let] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [anon_sym_BANG] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_switch] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_await] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_debugger] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_throw] = ACTIONS(2194), - [anon_sym_SEMI] = ACTIONS(2194), - [anon_sym_yield] = ACTIONS(2194), - [anon_sym_LBRACK] = ACTIONS(2194), - [anon_sym_LTtemplate_GT] = ACTIONS(2194), - [anon_sym_DQUOTE] = ACTIONS(2194), - [anon_sym_SQUOTE] = ACTIONS(2194), - [anon_sym_class] = ACTIONS(2194), - [anon_sym_async] = ACTIONS(2194), - [anon_sym_function] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2194), - [anon_sym_using] = ACTIONS(2194), - [anon_sym_PLUS] = ACTIONS(2194), - [anon_sym_DASH] = ACTIONS(2194), - [anon_sym_SLASH] = ACTIONS(2194), - [anon_sym_LT] = ACTIONS(2194), - [anon_sym_TILDE] = ACTIONS(2194), - [anon_sym_void] = ACTIONS(2194), - [anon_sym_delete] = ACTIONS(2194), - [anon_sym_PLUS_PLUS] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2194), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2194), - [sym_number] = ACTIONS(2194), - [sym_private_property_identifier] = ACTIONS(2194), - [sym_this] = ACTIONS(2194), - [sym_super] = ACTIONS(2194), - [sym_true] = ACTIONS(2194), - [sym_false] = ACTIONS(2194), - [sym_null] = ACTIONS(2194), - [sym_undefined] = ACTIONS(2194), - [anon_sym_AT] = ACTIONS(2194), - [anon_sym_static] = ACTIONS(2194), - [anon_sym_readonly] = ACTIONS(2194), - [anon_sym_get] = ACTIONS(2194), - [anon_sym_set] = ACTIONS(2194), - [anon_sym_declare] = ACTIONS(2194), - [anon_sym_public] = ACTIONS(2194), - [anon_sym_private] = ACTIONS(2194), - [anon_sym_protected] = ACTIONS(2194), - [anon_sym_override] = ACTIONS(2194), - [anon_sym_module] = ACTIONS(2194), - [anon_sym_any] = ACTIONS(2194), - [anon_sym_number] = ACTIONS(2194), - [anon_sym_boolean] = ACTIONS(2194), - [anon_sym_string] = ACTIONS(2194), - [anon_sym_symbol] = ACTIONS(2194), - [anon_sym_object] = ACTIONS(2194), - [anon_sym_abstract] = ACTIONS(2194), - [anon_sym_interface] = ACTIONS(2194), - [anon_sym_enum] = ACTIONS(2194), - [sym__automatic_semicolon] = ACTIONS(2500), + [1569] = { + [sym_comment] = STATE(1569), + [ts_builtin_sym_end] = ACTIONS(3479), + [sym_identifier] = ACTIONS(3405), + [anon_sym_export] = ACTIONS(3405), + [anon_sym_type] = ACTIONS(3405), + [anon_sym_namespace] = ACTIONS(3405), + [anon_sym_LBRACE] = ACTIONS(3405), + [anon_sym_RBRACE] = ACTIONS(3405), + [anon_sym_typeof] = ACTIONS(3405), + [anon_sym_import] = ACTIONS(3405), + [anon_sym_with] = ACTIONS(3405), + [anon_sym_var] = ACTIONS(3405), + [anon_sym_let] = ACTIONS(3405), + [anon_sym_const] = ACTIONS(3405), + [anon_sym_BANG] = ACTIONS(3405), + [anon_sym_if] = ACTIONS(3405), + [anon_sym_switch] = ACTIONS(3405), + [anon_sym_for] = ACTIONS(3405), + [anon_sym_LPAREN] = ACTIONS(3405), + [anon_sym_await] = ACTIONS(3405), + [anon_sym_while] = ACTIONS(3405), + [anon_sym_do] = ACTIONS(3405), + [anon_sym_try] = ACTIONS(3405), + [anon_sym_break] = ACTIONS(3405), + [anon_sym_continue] = ACTIONS(3405), + [anon_sym_debugger] = ACTIONS(3405), + [anon_sym_return] = ACTIONS(3405), + [anon_sym_throw] = ACTIONS(3405), + [anon_sym_SEMI] = ACTIONS(3405), + [anon_sym_yield] = ACTIONS(3405), + [anon_sym_LBRACK] = ACTIONS(3405), + [anon_sym_LTtemplate_GT] = ACTIONS(3405), + [anon_sym_DQUOTE] = ACTIONS(3405), + [anon_sym_SQUOTE] = ACTIONS(3405), + [anon_sym_class] = ACTIONS(3405), + [anon_sym_async] = ACTIONS(3405), + [anon_sym_function] = ACTIONS(3405), + [anon_sym_new] = ACTIONS(3405), + [anon_sym_using] = ACTIONS(3405), + [anon_sym_PLUS] = ACTIONS(3405), + [anon_sym_DASH] = ACTIONS(3405), + [anon_sym_SLASH] = ACTIONS(3405), + [anon_sym_LT] = ACTIONS(3405), + [anon_sym_TILDE] = ACTIONS(3405), + [anon_sym_void] = ACTIONS(3405), + [anon_sym_delete] = ACTIONS(3405), + [anon_sym_PLUS_PLUS] = ACTIONS(3405), + [anon_sym_DASH_DASH] = ACTIONS(3405), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3405), + [sym_number] = ACTIONS(3405), + [sym_private_property_identifier] = ACTIONS(3405), + [sym_this] = ACTIONS(3405), + [sym_super] = ACTIONS(3405), + [sym_true] = ACTIONS(3405), + [sym_false] = ACTIONS(3405), + [sym_null] = ACTIONS(3405), + [sym_undefined] = ACTIONS(3405), + [anon_sym_AT] = ACTIONS(3405), + [anon_sym_static] = ACTIONS(3405), + [anon_sym_readonly] = ACTIONS(3405), + [anon_sym_get] = ACTIONS(3405), + [anon_sym_set] = ACTIONS(3405), + [anon_sym_declare] = ACTIONS(3405), + [anon_sym_public] = ACTIONS(3405), + [anon_sym_private] = ACTIONS(3405), + [anon_sym_protected] = ACTIONS(3405), + [anon_sym_override] = ACTIONS(3405), + [anon_sym_module] = ACTIONS(3405), + [anon_sym_any] = ACTIONS(3405), + [anon_sym_number] = ACTIONS(3405), + [anon_sym_boolean] = ACTIONS(3405), + [anon_sym_string] = ACTIONS(3405), + [anon_sym_symbol] = ACTIONS(3405), + [anon_sym_object] = ACTIONS(3405), + [anon_sym_abstract] = ACTIONS(3405), + [anon_sym_interface] = ACTIONS(3405), + [anon_sym_enum] = ACTIONS(3405), [sym_html_comment] = ACTIONS(5), }, - [1548] = { - [sym_comment] = STATE(1548), - [ts_builtin_sym_end] = ACTIONS(2428), - [sym_identifier] = ACTIONS(2168), - [anon_sym_export] = ACTIONS(2168), - [anon_sym_type] = ACTIONS(2168), - [anon_sym_namespace] = ACTIONS(2168), - [anon_sym_LBRACE] = ACTIONS(2168), - [anon_sym_RBRACE] = ACTIONS(2168), - [anon_sym_typeof] = ACTIONS(2168), - [anon_sym_import] = ACTIONS(2168), - [anon_sym_with] = ACTIONS(2168), - [anon_sym_var] = ACTIONS(2168), - [anon_sym_let] = ACTIONS(2168), - [anon_sym_const] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(2168), - [anon_sym_if] = ACTIONS(2168), - [anon_sym_switch] = ACTIONS(2168), - [anon_sym_for] = ACTIONS(2168), - [anon_sym_LPAREN] = ACTIONS(2168), - [anon_sym_await] = ACTIONS(2168), - [anon_sym_while] = ACTIONS(2168), - [anon_sym_do] = ACTIONS(2168), - [anon_sym_try] = ACTIONS(2168), - [anon_sym_break] = ACTIONS(2168), - [anon_sym_continue] = ACTIONS(2168), - [anon_sym_debugger] = ACTIONS(2168), - [anon_sym_return] = ACTIONS(2168), - [anon_sym_throw] = ACTIONS(2168), - [anon_sym_SEMI] = ACTIONS(2168), - [anon_sym_yield] = ACTIONS(2168), - [anon_sym_LBRACK] = ACTIONS(2168), - [anon_sym_LTtemplate_GT] = ACTIONS(2168), - [anon_sym_DQUOTE] = ACTIONS(2168), - [anon_sym_SQUOTE] = ACTIONS(2168), - [anon_sym_class] = ACTIONS(2168), - [anon_sym_async] = ACTIONS(2168), - [anon_sym_function] = ACTIONS(2168), - [anon_sym_new] = ACTIONS(2168), - [anon_sym_using] = ACTIONS(2168), - [anon_sym_PLUS] = ACTIONS(2168), - [anon_sym_DASH] = ACTIONS(2168), - [anon_sym_SLASH] = ACTIONS(2168), - [anon_sym_LT] = ACTIONS(2168), - [anon_sym_TILDE] = ACTIONS(2168), - [anon_sym_void] = ACTIONS(2168), - [anon_sym_delete] = ACTIONS(2168), - [anon_sym_PLUS_PLUS] = ACTIONS(2168), - [anon_sym_DASH_DASH] = ACTIONS(2168), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2168), - [sym_number] = ACTIONS(2168), - [sym_private_property_identifier] = ACTIONS(2168), - [sym_this] = ACTIONS(2168), - [sym_super] = ACTIONS(2168), - [sym_true] = ACTIONS(2168), - [sym_false] = ACTIONS(2168), - [sym_null] = ACTIONS(2168), - [sym_undefined] = ACTIONS(2168), - [anon_sym_AT] = ACTIONS(2168), - [anon_sym_static] = ACTIONS(2168), - [anon_sym_readonly] = ACTIONS(2168), - [anon_sym_get] = ACTIONS(2168), - [anon_sym_set] = ACTIONS(2168), - [anon_sym_declare] = ACTIONS(2168), - [anon_sym_public] = ACTIONS(2168), - [anon_sym_private] = ACTIONS(2168), - [anon_sym_protected] = ACTIONS(2168), - [anon_sym_override] = ACTIONS(2168), - [anon_sym_module] = ACTIONS(2168), - [anon_sym_any] = ACTIONS(2168), - [anon_sym_number] = ACTIONS(2168), - [anon_sym_boolean] = ACTIONS(2168), - [anon_sym_string] = ACTIONS(2168), - [anon_sym_symbol] = ACTIONS(2168), - [anon_sym_object] = ACTIONS(2168), - [anon_sym_abstract] = ACTIONS(2168), - [anon_sym_interface] = ACTIONS(2168), - [anon_sym_enum] = ACTIONS(2168), - [sym__automatic_semicolon] = ACTIONS(2498), + [1570] = { + [sym_comment] = STATE(1570), + [ts_builtin_sym_end] = ACTIONS(3465), + [sym_identifier] = ACTIONS(3357), + [anon_sym_export] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3357), + [anon_sym_namespace] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3357), + [anon_sym_typeof] = ACTIONS(3357), + [anon_sym_import] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3357), + [anon_sym_var] = ACTIONS(3357), + [anon_sym_let] = ACTIONS(3357), + [anon_sym_const] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3357), + [anon_sym_if] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_await] = ACTIONS(3357), + [anon_sym_while] = ACTIONS(3357), + [anon_sym_do] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3357), + [anon_sym_break] = ACTIONS(3357), + [anon_sym_continue] = ACTIONS(3357), + [anon_sym_debugger] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3357), + [anon_sym_throw] = ACTIONS(3357), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_LTtemplate_GT] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_class] = ACTIONS(3357), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3357), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_void] = ACTIONS(3357), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3357), + [sym_number] = ACTIONS(3357), + [sym_private_property_identifier] = ACTIONS(3357), + [sym_this] = ACTIONS(3357), + [sym_super] = ACTIONS(3357), + [sym_true] = ACTIONS(3357), + [sym_false] = ACTIONS(3357), + [sym_null] = ACTIONS(3357), + [sym_undefined] = ACTIONS(3357), + [anon_sym_AT] = ACTIONS(3357), + [anon_sym_static] = ACTIONS(3357), + [anon_sym_readonly] = ACTIONS(3357), + [anon_sym_get] = ACTIONS(3357), + [anon_sym_set] = ACTIONS(3357), + [anon_sym_declare] = ACTIONS(3357), + [anon_sym_public] = ACTIONS(3357), + [anon_sym_private] = ACTIONS(3357), + [anon_sym_protected] = ACTIONS(3357), + [anon_sym_override] = ACTIONS(3357), + [anon_sym_module] = ACTIONS(3357), + [anon_sym_any] = ACTIONS(3357), + [anon_sym_number] = ACTIONS(3357), + [anon_sym_boolean] = ACTIONS(3357), + [anon_sym_string] = ACTIONS(3357), + [anon_sym_symbol] = ACTIONS(3357), + [anon_sym_object] = ACTIONS(3357), + [anon_sym_abstract] = ACTIONS(3357), + [anon_sym_interface] = ACTIONS(3357), + [anon_sym_enum] = ACTIONS(3357), [sym_html_comment] = ACTIONS(5), }, - [1549] = { - [sym_comment] = STATE(1549), - [ts_builtin_sym_end] = ACTIONS(2404), - [sym_identifier] = ACTIONS(2280), - [anon_sym_export] = ACTIONS(2280), - [anon_sym_type] = ACTIONS(2280), - [anon_sym_namespace] = ACTIONS(2280), - [anon_sym_LBRACE] = ACTIONS(2280), - [anon_sym_RBRACE] = ACTIONS(2280), - [anon_sym_typeof] = ACTIONS(2280), - [anon_sym_import] = ACTIONS(2280), - [anon_sym_with] = ACTIONS(2280), - [anon_sym_var] = ACTIONS(2280), - [anon_sym_let] = ACTIONS(2280), - [anon_sym_const] = ACTIONS(2280), - [anon_sym_BANG] = ACTIONS(2280), - [anon_sym_if] = ACTIONS(2280), - [anon_sym_switch] = ACTIONS(2280), - [anon_sym_for] = ACTIONS(2280), - [anon_sym_LPAREN] = ACTIONS(2280), - [anon_sym_await] = ACTIONS(2280), - [anon_sym_while] = ACTIONS(2280), - [anon_sym_do] = ACTIONS(2280), - [anon_sym_try] = ACTIONS(2280), - [anon_sym_break] = ACTIONS(2280), - [anon_sym_continue] = ACTIONS(2280), - [anon_sym_debugger] = ACTIONS(2280), - [anon_sym_return] = ACTIONS(2280), - [anon_sym_throw] = ACTIONS(2280), - [anon_sym_SEMI] = ACTIONS(2280), - [anon_sym_yield] = ACTIONS(2280), - [anon_sym_LBRACK] = ACTIONS(2280), - [anon_sym_LTtemplate_GT] = ACTIONS(2280), - [anon_sym_DQUOTE] = ACTIONS(2280), - [anon_sym_SQUOTE] = ACTIONS(2280), - [anon_sym_class] = ACTIONS(2280), - [anon_sym_async] = ACTIONS(2280), - [anon_sym_function] = ACTIONS(2280), - [anon_sym_new] = ACTIONS(2280), - [anon_sym_using] = ACTIONS(2280), - [anon_sym_PLUS] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_SLASH] = ACTIONS(2280), - [anon_sym_LT] = ACTIONS(2280), - [anon_sym_TILDE] = ACTIONS(2280), - [anon_sym_void] = ACTIONS(2280), - [anon_sym_delete] = ACTIONS(2280), - [anon_sym_PLUS_PLUS] = ACTIONS(2280), - [anon_sym_DASH_DASH] = ACTIONS(2280), + [1571] = { + [sym_comment] = STATE(1571), + [ts_builtin_sym_end] = ACTIONS(3481), + [sym_identifier] = ACTIONS(3419), + [anon_sym_export] = ACTIONS(3419), + [anon_sym_type] = ACTIONS(3419), + [anon_sym_namespace] = ACTIONS(3419), + [anon_sym_LBRACE] = ACTIONS(3419), + [anon_sym_RBRACE] = ACTIONS(3419), + [anon_sym_typeof] = ACTIONS(3419), + [anon_sym_import] = ACTIONS(3419), + [anon_sym_with] = ACTIONS(3419), + [anon_sym_var] = ACTIONS(3419), + [anon_sym_let] = ACTIONS(3419), + [anon_sym_const] = ACTIONS(3419), + [anon_sym_BANG] = ACTIONS(3419), + [anon_sym_if] = ACTIONS(3419), + [anon_sym_switch] = ACTIONS(3419), + [anon_sym_for] = ACTIONS(3419), + [anon_sym_LPAREN] = ACTIONS(3419), + [anon_sym_await] = ACTIONS(3419), + [anon_sym_while] = ACTIONS(3419), + [anon_sym_do] = ACTIONS(3419), + [anon_sym_try] = ACTIONS(3419), + [anon_sym_break] = ACTIONS(3419), + [anon_sym_continue] = ACTIONS(3419), + [anon_sym_debugger] = ACTIONS(3419), + [anon_sym_return] = ACTIONS(3419), + [anon_sym_throw] = ACTIONS(3419), + [anon_sym_SEMI] = ACTIONS(3419), + [anon_sym_yield] = ACTIONS(3419), + [anon_sym_LBRACK] = ACTIONS(3419), + [anon_sym_LTtemplate_GT] = ACTIONS(3419), + [anon_sym_DQUOTE] = ACTIONS(3419), + [anon_sym_SQUOTE] = ACTIONS(3419), + [anon_sym_class] = ACTIONS(3419), + [anon_sym_async] = ACTIONS(3419), + [anon_sym_function] = ACTIONS(3419), + [anon_sym_new] = ACTIONS(3419), + [anon_sym_using] = ACTIONS(3419), + [anon_sym_PLUS] = ACTIONS(3419), + [anon_sym_DASH] = ACTIONS(3419), + [anon_sym_SLASH] = ACTIONS(3419), + [anon_sym_LT] = ACTIONS(3419), + [anon_sym_TILDE] = ACTIONS(3419), + [anon_sym_void] = ACTIONS(3419), + [anon_sym_delete] = ACTIONS(3419), + [anon_sym_PLUS_PLUS] = ACTIONS(3419), + [anon_sym_DASH_DASH] = ACTIONS(3419), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2280), - [sym_number] = ACTIONS(2280), - [sym_private_property_identifier] = ACTIONS(2280), - [sym_this] = ACTIONS(2280), - [sym_super] = ACTIONS(2280), - [sym_true] = ACTIONS(2280), - [sym_false] = ACTIONS(2280), - [sym_null] = ACTIONS(2280), - [sym_undefined] = ACTIONS(2280), - [anon_sym_AT] = ACTIONS(2280), - [anon_sym_static] = ACTIONS(2280), - [anon_sym_readonly] = ACTIONS(2280), - [anon_sym_get] = ACTIONS(2280), - [anon_sym_set] = ACTIONS(2280), - [anon_sym_declare] = ACTIONS(2280), - [anon_sym_public] = ACTIONS(2280), - [anon_sym_private] = ACTIONS(2280), - [anon_sym_protected] = ACTIONS(2280), - [anon_sym_override] = ACTIONS(2280), - [anon_sym_module] = ACTIONS(2280), - [anon_sym_any] = ACTIONS(2280), - [anon_sym_number] = ACTIONS(2280), - [anon_sym_boolean] = ACTIONS(2280), - [anon_sym_string] = ACTIONS(2280), - [anon_sym_symbol] = ACTIONS(2280), - [anon_sym_object] = ACTIONS(2280), - [anon_sym_abstract] = ACTIONS(2280), - [anon_sym_interface] = ACTIONS(2280), - [anon_sym_enum] = ACTIONS(2280), - [sym__automatic_semicolon] = ACTIONS(2492), + [anon_sym_BQUOTE] = ACTIONS(3419), + [sym_number] = ACTIONS(3419), + [sym_private_property_identifier] = ACTIONS(3419), + [sym_this] = ACTIONS(3419), + [sym_super] = ACTIONS(3419), + [sym_true] = ACTIONS(3419), + [sym_false] = ACTIONS(3419), + [sym_null] = ACTIONS(3419), + [sym_undefined] = ACTIONS(3419), + [anon_sym_AT] = ACTIONS(3419), + [anon_sym_static] = ACTIONS(3419), + [anon_sym_readonly] = ACTIONS(3419), + [anon_sym_get] = ACTIONS(3419), + [anon_sym_set] = ACTIONS(3419), + [anon_sym_declare] = ACTIONS(3419), + [anon_sym_public] = ACTIONS(3419), + [anon_sym_private] = ACTIONS(3419), + [anon_sym_protected] = ACTIONS(3419), + [anon_sym_override] = ACTIONS(3419), + [anon_sym_module] = ACTIONS(3419), + [anon_sym_any] = ACTIONS(3419), + [anon_sym_number] = ACTIONS(3419), + [anon_sym_boolean] = ACTIONS(3419), + [anon_sym_string] = ACTIONS(3419), + [anon_sym_symbol] = ACTIONS(3419), + [anon_sym_object] = ACTIONS(3419), + [anon_sym_abstract] = ACTIONS(3419), + [anon_sym_interface] = ACTIONS(3419), + [anon_sym_enum] = ACTIONS(3419), [sym_html_comment] = ACTIONS(5), }, - [1550] = { - [sym_comment] = STATE(1550), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_default] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_case] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [sym_html_comment] = ACTIONS(5), - }, - [1551] = { - [sym_comment] = STATE(1551), - [ts_builtin_sym_end] = ACTIONS(2400), - [sym_identifier] = ACTIONS(2302), - [anon_sym_export] = ACTIONS(2302), - [anon_sym_type] = ACTIONS(2302), - [anon_sym_namespace] = ACTIONS(2302), - [anon_sym_LBRACE] = ACTIONS(2302), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_typeof] = ACTIONS(2302), - [anon_sym_import] = ACTIONS(2302), - [anon_sym_with] = ACTIONS(2302), - [anon_sym_var] = ACTIONS(2302), - [anon_sym_let] = ACTIONS(2302), - [anon_sym_const] = ACTIONS(2302), - [anon_sym_BANG] = ACTIONS(2302), - [anon_sym_if] = ACTIONS(2302), - [anon_sym_switch] = ACTIONS(2302), - [anon_sym_for] = ACTIONS(2302), - [anon_sym_LPAREN] = ACTIONS(2302), - [anon_sym_await] = ACTIONS(2302), - [anon_sym_while] = ACTIONS(2302), - [anon_sym_do] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2302), - [anon_sym_break] = ACTIONS(2302), - [anon_sym_continue] = ACTIONS(2302), - [anon_sym_debugger] = ACTIONS(2302), - [anon_sym_return] = ACTIONS(2302), - [anon_sym_throw] = ACTIONS(2302), - [anon_sym_SEMI] = ACTIONS(2302), - [anon_sym_yield] = ACTIONS(2302), - [anon_sym_LBRACK] = ACTIONS(2302), - [anon_sym_LTtemplate_GT] = ACTIONS(2302), - [anon_sym_DQUOTE] = ACTIONS(2302), - [anon_sym_SQUOTE] = ACTIONS(2302), - [anon_sym_class] = ACTIONS(2302), - [anon_sym_async] = ACTIONS(2302), - [anon_sym_function] = ACTIONS(2302), - [anon_sym_new] = ACTIONS(2302), - [anon_sym_using] = ACTIONS(2302), - [anon_sym_PLUS] = ACTIONS(2302), - [anon_sym_DASH] = ACTIONS(2302), - [anon_sym_SLASH] = ACTIONS(2302), - [anon_sym_LT] = ACTIONS(2302), - [anon_sym_TILDE] = ACTIONS(2302), - [anon_sym_void] = ACTIONS(2302), - [anon_sym_delete] = ACTIONS(2302), - [anon_sym_PLUS_PLUS] = ACTIONS(2302), - [anon_sym_DASH_DASH] = ACTIONS(2302), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2302), - [sym_number] = ACTIONS(2302), - [sym_private_property_identifier] = ACTIONS(2302), - [sym_this] = ACTIONS(2302), - [sym_super] = ACTIONS(2302), - [sym_true] = ACTIONS(2302), - [sym_false] = ACTIONS(2302), - [sym_null] = ACTIONS(2302), - [sym_undefined] = ACTIONS(2302), - [anon_sym_AT] = ACTIONS(2302), - [anon_sym_static] = ACTIONS(2302), - [anon_sym_readonly] = ACTIONS(2302), - [anon_sym_get] = ACTIONS(2302), - [anon_sym_set] = ACTIONS(2302), - [anon_sym_declare] = ACTIONS(2302), - [anon_sym_public] = ACTIONS(2302), - [anon_sym_private] = ACTIONS(2302), - [anon_sym_protected] = ACTIONS(2302), - [anon_sym_override] = ACTIONS(2302), - [anon_sym_module] = ACTIONS(2302), - [anon_sym_any] = ACTIONS(2302), - [anon_sym_number] = ACTIONS(2302), - [anon_sym_boolean] = ACTIONS(2302), - [anon_sym_string] = ACTIONS(2302), - [anon_sym_symbol] = ACTIONS(2302), - [anon_sym_object] = ACTIONS(2302), - [anon_sym_abstract] = ACTIONS(2302), - [anon_sym_interface] = ACTIONS(2302), - [anon_sym_enum] = ACTIONS(2302), - [sym__automatic_semicolon] = ACTIONS(2490), - [sym_html_comment] = ACTIONS(5), - }, - [1552] = { - [sym_comment] = STATE(1552), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_default] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_namespace] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2246), - [anon_sym_import] = ACTIONS(2246), - [anon_sym_with] = ACTIONS(2246), - [anon_sym_var] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_debugger] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_throw] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_case] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LTtemplate_GT] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_class] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2246), - [anon_sym_delete] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_private_property_identifier] = ACTIONS(2246), - [sym_this] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_undefined] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_readonly] = ACTIONS(2246), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_declare] = ACTIONS(2246), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_override] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_any] = ACTIONS(2246), - [anon_sym_number] = ACTIONS(2246), - [anon_sym_boolean] = ACTIONS(2246), - [anon_sym_string] = ACTIONS(2246), - [anon_sym_symbol] = ACTIONS(2246), - [anon_sym_object] = ACTIONS(2246), - [anon_sym_abstract] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), - [sym_html_comment] = ACTIONS(5), - }, - [1553] = { - [sym_comment] = STATE(1553), - [ts_builtin_sym_end] = ACTIONS(3627), - [sym_identifier] = ACTIONS(3317), - [anon_sym_export] = ACTIONS(3317), - [anon_sym_type] = ACTIONS(3317), - [anon_sym_namespace] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_typeof] = ACTIONS(3317), - [anon_sym_import] = ACTIONS(3317), - [anon_sym_with] = ACTIONS(3317), - [anon_sym_var] = ACTIONS(3317), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_const] = ACTIONS(3317), - [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_else] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3317), - [anon_sym_switch] = ACTIONS(3317), - [anon_sym_for] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_await] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3317), - [anon_sym_do] = ACTIONS(3317), - [anon_sym_try] = ACTIONS(3317), - [anon_sym_break] = ACTIONS(3317), - [anon_sym_continue] = ACTIONS(3317), - [anon_sym_debugger] = ACTIONS(3317), - [anon_sym_return] = ACTIONS(3317), - [anon_sym_throw] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_yield] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_LTtemplate_GT] = ACTIONS(3317), - [anon_sym_DQUOTE] = ACTIONS(3317), - [anon_sym_SQUOTE] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_async] = ACTIONS(3317), - [anon_sym_function] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_using] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_void] = ACTIONS(3317), - [anon_sym_delete] = ACTIONS(3317), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3317), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3317), - [sym_number] = ACTIONS(3317), - [sym_private_property_identifier] = ACTIONS(3317), - [sym_this] = ACTIONS(3317), - [sym_super] = ACTIONS(3317), - [sym_true] = ACTIONS(3317), - [sym_false] = ACTIONS(3317), - [sym_null] = ACTIONS(3317), - [sym_undefined] = ACTIONS(3317), - [anon_sym_AT] = ACTIONS(3317), - [anon_sym_static] = ACTIONS(3317), - [anon_sym_readonly] = ACTIONS(3317), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3317), - [anon_sym_public] = ACTIONS(3317), - [anon_sym_private] = ACTIONS(3317), - [anon_sym_protected] = ACTIONS(3317), - [anon_sym_override] = ACTIONS(3317), - [anon_sym_module] = ACTIONS(3317), - [anon_sym_any] = ACTIONS(3317), - [anon_sym_number] = ACTIONS(3317), - [anon_sym_boolean] = ACTIONS(3317), - [anon_sym_string] = ACTIONS(3317), - [anon_sym_symbol] = ACTIONS(3317), - [anon_sym_object] = ACTIONS(3317), - [anon_sym_abstract] = ACTIONS(3317), - [anon_sym_interface] = ACTIONS(3317), - [anon_sym_enum] = ACTIONS(3317), - [sym_html_comment] = ACTIONS(5), - }, - [1554] = { - [sym_comment] = STATE(1554), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1555] = { - [sym_comment] = STATE(1555), - [ts_builtin_sym_end] = ACTIONS(3631), - [sym_identifier] = ACTIONS(3315), - [anon_sym_export] = ACTIONS(3315), - [anon_sym_type] = ACTIONS(3315), - [anon_sym_namespace] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_typeof] = ACTIONS(3315), - [anon_sym_import] = ACTIONS(3315), - [anon_sym_with] = ACTIONS(3315), - [anon_sym_var] = ACTIONS(3315), - [anon_sym_let] = ACTIONS(3315), - [anon_sym_const] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_else] = ACTIONS(3315), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_switch] = ACTIONS(3315), - [anon_sym_for] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_await] = ACTIONS(3315), - [anon_sym_while] = ACTIONS(3315), - [anon_sym_do] = ACTIONS(3315), - [anon_sym_try] = ACTIONS(3315), - [anon_sym_break] = ACTIONS(3315), - [anon_sym_continue] = ACTIONS(3315), - [anon_sym_debugger] = ACTIONS(3315), - [anon_sym_return] = ACTIONS(3315), - [anon_sym_throw] = ACTIONS(3315), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym_yield] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3315), - [anon_sym_LTtemplate_GT] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3315), - [anon_sym_class] = ACTIONS(3315), - [anon_sym_async] = ACTIONS(3315), - [anon_sym_function] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(3315), - [anon_sym_using] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_SLASH] = ACTIONS(3315), - [anon_sym_LT] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3315), - [anon_sym_void] = ACTIONS(3315), - [anon_sym_delete] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3315), - [sym_number] = ACTIONS(3315), - [sym_private_property_identifier] = ACTIONS(3315), - [sym_this] = ACTIONS(3315), - [sym_super] = ACTIONS(3315), - [sym_true] = ACTIONS(3315), - [sym_false] = ACTIONS(3315), - [sym_null] = ACTIONS(3315), - [sym_undefined] = ACTIONS(3315), - [anon_sym_AT] = ACTIONS(3315), - [anon_sym_static] = ACTIONS(3315), - [anon_sym_readonly] = ACTIONS(3315), - [anon_sym_get] = ACTIONS(3315), - [anon_sym_set] = ACTIONS(3315), - [anon_sym_declare] = ACTIONS(3315), - [anon_sym_public] = ACTIONS(3315), - [anon_sym_private] = ACTIONS(3315), - [anon_sym_protected] = ACTIONS(3315), - [anon_sym_override] = ACTIONS(3315), - [anon_sym_module] = ACTIONS(3315), - [anon_sym_any] = ACTIONS(3315), - [anon_sym_number] = ACTIONS(3315), - [anon_sym_boolean] = ACTIONS(3315), - [anon_sym_string] = ACTIONS(3315), - [anon_sym_symbol] = ACTIONS(3315), - [anon_sym_object] = ACTIONS(3315), - [anon_sym_abstract] = ACTIONS(3315), - [anon_sym_interface] = ACTIONS(3315), - [anon_sym_enum] = ACTIONS(3315), - [sym_html_comment] = ACTIONS(5), - }, - [1556] = { - [sym_comment] = STATE(1556), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1557] = { - [sym_comment] = STATE(1557), - [ts_builtin_sym_end] = ACTIONS(3633), - [sym_identifier] = ACTIONS(3313), - [anon_sym_export] = ACTIONS(3313), - [anon_sym_type] = ACTIONS(3313), - [anon_sym_namespace] = ACTIONS(3313), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_RBRACE] = ACTIONS(3313), - [anon_sym_typeof] = ACTIONS(3313), - [anon_sym_import] = ACTIONS(3313), - [anon_sym_with] = ACTIONS(3313), - [anon_sym_var] = ACTIONS(3313), - [anon_sym_let] = ACTIONS(3313), - [anon_sym_const] = ACTIONS(3313), - [anon_sym_BANG] = ACTIONS(3313), - [anon_sym_else] = ACTIONS(3313), - [anon_sym_if] = ACTIONS(3313), - [anon_sym_switch] = ACTIONS(3313), - [anon_sym_for] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3313), - [anon_sym_await] = ACTIONS(3313), - [anon_sym_while] = ACTIONS(3313), - [anon_sym_do] = ACTIONS(3313), - [anon_sym_try] = ACTIONS(3313), - [anon_sym_break] = ACTIONS(3313), - [anon_sym_continue] = ACTIONS(3313), - [anon_sym_debugger] = ACTIONS(3313), - [anon_sym_return] = ACTIONS(3313), - [anon_sym_throw] = ACTIONS(3313), - [anon_sym_SEMI] = ACTIONS(3313), - [anon_sym_yield] = ACTIONS(3313), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LTtemplate_GT] = ACTIONS(3313), - [anon_sym_DQUOTE] = ACTIONS(3313), - [anon_sym_SQUOTE] = ACTIONS(3313), - [anon_sym_class] = ACTIONS(3313), - [anon_sym_async] = ACTIONS(3313), - [anon_sym_function] = ACTIONS(3313), - [anon_sym_new] = ACTIONS(3313), - [anon_sym_using] = ACTIONS(3313), - [anon_sym_PLUS] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(3313), - [anon_sym_SLASH] = ACTIONS(3313), - [anon_sym_LT] = ACTIONS(3313), - [anon_sym_TILDE] = ACTIONS(3313), - [anon_sym_void] = ACTIONS(3313), - [anon_sym_delete] = ACTIONS(3313), - [anon_sym_PLUS_PLUS] = ACTIONS(3313), - [anon_sym_DASH_DASH] = ACTIONS(3313), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3313), - [sym_number] = ACTIONS(3313), - [sym_private_property_identifier] = ACTIONS(3313), - [sym_this] = ACTIONS(3313), - [sym_super] = ACTIONS(3313), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [sym_null] = ACTIONS(3313), - [sym_undefined] = ACTIONS(3313), - [anon_sym_AT] = ACTIONS(3313), - [anon_sym_static] = ACTIONS(3313), - [anon_sym_readonly] = ACTIONS(3313), - [anon_sym_get] = ACTIONS(3313), - [anon_sym_set] = ACTIONS(3313), - [anon_sym_declare] = ACTIONS(3313), - [anon_sym_public] = ACTIONS(3313), - [anon_sym_private] = ACTIONS(3313), - [anon_sym_protected] = ACTIONS(3313), - [anon_sym_override] = ACTIONS(3313), - [anon_sym_module] = ACTIONS(3313), - [anon_sym_any] = ACTIONS(3313), - [anon_sym_number] = ACTIONS(3313), - [anon_sym_boolean] = ACTIONS(3313), - [anon_sym_string] = ACTIONS(3313), - [anon_sym_symbol] = ACTIONS(3313), - [anon_sym_object] = ACTIONS(3313), - [anon_sym_abstract] = ACTIONS(3313), - [anon_sym_interface] = ACTIONS(3313), - [anon_sym_enum] = ACTIONS(3313), - [sym_html_comment] = ACTIONS(5), - }, - [1558] = { - [sym_comment] = STATE(1558), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_default] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_case] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), - [sym_html_comment] = ACTIONS(5), - }, - [1559] = { - [sym_comment] = STATE(1559), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_default] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_case] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), - [sym_html_comment] = ACTIONS(5), - }, - [1560] = { - [sym_comment] = STATE(1560), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym__automatic_semicolon] = ACTIONS(3635), - [sym_html_comment] = ACTIONS(5), - }, - [1561] = { - [sym_comment] = STATE(1561), - [sym_identifier] = ACTIONS(3419), - [anon_sym_export] = ACTIONS(3419), - [anon_sym_default] = ACTIONS(3419), - [anon_sym_type] = ACTIONS(3419), - [anon_sym_namespace] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_typeof] = ACTIONS(3419), - [anon_sym_import] = ACTIONS(3419), - [anon_sym_with] = ACTIONS(3419), - [anon_sym_var] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_const] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_switch] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_await] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_break] = ACTIONS(3419), - [anon_sym_continue] = ACTIONS(3419), - [anon_sym_debugger] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_throw] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_case] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LTtemplate_GT] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [anon_sym_class] = ACTIONS(3419), - [anon_sym_async] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_using] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3419), - [anon_sym_void] = ACTIONS(3419), - [anon_sym_delete] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3419), - [anon_sym_DASH_DASH] = ACTIONS(3419), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3419), - [sym_number] = ACTIONS(3419), - [sym_private_property_identifier] = ACTIONS(3419), - [sym_this] = ACTIONS(3419), - [sym_super] = ACTIONS(3419), - [sym_true] = ACTIONS(3419), - [sym_false] = ACTIONS(3419), - [sym_null] = ACTIONS(3419), - [sym_undefined] = ACTIONS(3419), - [anon_sym_AT] = ACTIONS(3419), - [anon_sym_static] = ACTIONS(3419), - [anon_sym_readonly] = ACTIONS(3419), - [anon_sym_get] = ACTIONS(3419), - [anon_sym_set] = ACTIONS(3419), - [anon_sym_declare] = ACTIONS(3419), - [anon_sym_public] = ACTIONS(3419), - [anon_sym_private] = ACTIONS(3419), - [anon_sym_protected] = ACTIONS(3419), - [anon_sym_override] = ACTIONS(3419), - [anon_sym_module] = ACTIONS(3419), - [anon_sym_any] = ACTIONS(3419), - [anon_sym_number] = ACTIONS(3419), - [anon_sym_boolean] = ACTIONS(3419), - [anon_sym_string] = ACTIONS(3419), - [anon_sym_symbol] = ACTIONS(3419), - [anon_sym_object] = ACTIONS(3419), - [anon_sym_abstract] = ACTIONS(3419), - [anon_sym_interface] = ACTIONS(3419), - [anon_sym_enum] = ACTIONS(3419), - [sym_html_comment] = ACTIONS(5), - }, - [1562] = { - [sym_comment] = STATE(1562), - [ts_builtin_sym_end] = ACTIONS(3637), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [sym_html_comment] = ACTIONS(5), - }, - [1563] = { - [sym_comment] = STATE(1563), - [ts_builtin_sym_end] = ACTIONS(3637), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [sym_html_comment] = ACTIONS(5), - }, - [1564] = { - [sym_comment] = STATE(1564), - [ts_builtin_sym_end] = ACTIONS(3637), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [sym_html_comment] = ACTIONS(5), - }, - [1565] = { - [sym_comment] = STATE(1565), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1566] = { - [sym_comment] = STATE(1566), - [ts_builtin_sym_end] = ACTIONS(3637), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [sym_html_comment] = ACTIONS(5), - }, - [1567] = { - [sym_comment] = STATE(1567), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1568] = { - [sym_comment] = STATE(1568), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1569] = { - [sym_comment] = STATE(1569), - [sym_identifier] = ACTIONS(3263), - [anon_sym_export] = ACTIONS(3263), - [anon_sym_default] = ACTIONS(3263), - [anon_sym_type] = ACTIONS(3263), - [anon_sym_namespace] = ACTIONS(3263), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_RBRACE] = ACTIONS(3263), - [anon_sym_typeof] = ACTIONS(3263), - [anon_sym_import] = ACTIONS(3263), - [anon_sym_with] = ACTIONS(3263), - [anon_sym_var] = ACTIONS(3263), - [anon_sym_let] = ACTIONS(3263), - [anon_sym_const] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_if] = ACTIONS(3263), - [anon_sym_switch] = ACTIONS(3263), - [anon_sym_for] = ACTIONS(3263), - [anon_sym_LPAREN] = ACTIONS(3263), - [anon_sym_await] = ACTIONS(3263), - [anon_sym_while] = ACTIONS(3263), - [anon_sym_do] = ACTIONS(3263), - [anon_sym_try] = ACTIONS(3263), - [anon_sym_break] = ACTIONS(3263), - [anon_sym_continue] = ACTIONS(3263), - [anon_sym_debugger] = ACTIONS(3263), - [anon_sym_return] = ACTIONS(3263), - [anon_sym_throw] = ACTIONS(3263), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym_case] = ACTIONS(3263), - [anon_sym_yield] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3263), - [anon_sym_LTtemplate_GT] = ACTIONS(3263), - [anon_sym_DQUOTE] = ACTIONS(3263), - [anon_sym_SQUOTE] = ACTIONS(3263), - [anon_sym_class] = ACTIONS(3263), - [anon_sym_async] = ACTIONS(3263), - [anon_sym_function] = ACTIONS(3263), - [anon_sym_new] = ACTIONS(3263), - [anon_sym_using] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(3263), - [anon_sym_SLASH] = ACTIONS(3263), - [anon_sym_LT] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_void] = ACTIONS(3263), - [anon_sym_delete] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3263), - [sym_number] = ACTIONS(3263), - [sym_private_property_identifier] = ACTIONS(3263), - [sym_this] = ACTIONS(3263), - [sym_super] = ACTIONS(3263), - [sym_true] = ACTIONS(3263), - [sym_false] = ACTIONS(3263), - [sym_null] = ACTIONS(3263), - [sym_undefined] = ACTIONS(3263), - [anon_sym_AT] = ACTIONS(3263), - [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_abstract] = ACTIONS(3263), - [anon_sym_interface] = ACTIONS(3263), - [anon_sym_enum] = ACTIONS(3263), - [sym_html_comment] = ACTIONS(5), - }, - [1570] = { - [sym_comment] = STATE(1570), - [ts_builtin_sym_end] = ACTIONS(3639), - [sym_identifier] = ACTIONS(3241), - [anon_sym_export] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3241), - [anon_sym_namespace] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_typeof] = ACTIONS(3241), - [anon_sym_import] = ACTIONS(3241), - [anon_sym_with] = ACTIONS(3241), - [anon_sym_var] = ACTIONS(3241), - [anon_sym_let] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_BANG] = ACTIONS(3241), - [anon_sym_else] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym_await] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_try] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_debugger] = ACTIONS(3241), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_throw] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_LTtemplate_GT] = ACTIONS(3241), - [anon_sym_DQUOTE] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3241), - [anon_sym_class] = ACTIONS(3241), - [anon_sym_async] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3241), - [anon_sym_using] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_SLASH] = ACTIONS(3241), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_void] = ACTIONS(3241), - [anon_sym_delete] = ACTIONS(3241), - [anon_sym_PLUS_PLUS] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3241), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3241), - [sym_number] = ACTIONS(3241), - [sym_private_property_identifier] = ACTIONS(3241), - [sym_this] = ACTIONS(3241), - [sym_super] = ACTIONS(3241), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [sym_null] = ACTIONS(3241), - [sym_undefined] = ACTIONS(3241), - [anon_sym_AT] = ACTIONS(3241), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_readonly] = ACTIONS(3241), - [anon_sym_get] = ACTIONS(3241), - [anon_sym_set] = ACTIONS(3241), - [anon_sym_declare] = ACTIONS(3241), - [anon_sym_public] = ACTIONS(3241), - [anon_sym_private] = ACTIONS(3241), - [anon_sym_protected] = ACTIONS(3241), - [anon_sym_override] = ACTIONS(3241), - [anon_sym_module] = ACTIONS(3241), - [anon_sym_any] = ACTIONS(3241), - [anon_sym_number] = ACTIONS(3241), - [anon_sym_boolean] = ACTIONS(3241), - [anon_sym_string] = ACTIONS(3241), - [anon_sym_symbol] = ACTIONS(3241), - [anon_sym_object] = ACTIONS(3241), - [anon_sym_abstract] = ACTIONS(3241), - [anon_sym_interface] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), - [sym_html_comment] = ACTIONS(5), - }, - [1571] = { - [sym_comment] = STATE(1571), - [ts_builtin_sym_end] = ACTIONS(3641), - [sym_identifier] = ACTIONS(3251), - [anon_sym_export] = ACTIONS(3251), - [anon_sym_type] = ACTIONS(3251), - [anon_sym_namespace] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_RBRACE] = ACTIONS(3251), - [anon_sym_typeof] = ACTIONS(3251), - [anon_sym_import] = ACTIONS(3251), - [anon_sym_with] = ACTIONS(3251), - [anon_sym_var] = ACTIONS(3251), - [anon_sym_let] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_else] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_switch] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_await] = ACTIONS(3251), - [anon_sym_while] = ACTIONS(3251), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_try] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_debugger] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_throw] = ACTIONS(3251), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_yield] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_LTtemplate_GT] = ACTIONS(3251), - [anon_sym_DQUOTE] = ACTIONS(3251), - [anon_sym_SQUOTE] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_async] = ACTIONS(3251), - [anon_sym_function] = ACTIONS(3251), - [anon_sym_new] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_SLASH] = ACTIONS(3251), - [anon_sym_LT] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_void] = ACTIONS(3251), - [anon_sym_delete] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3251), - [sym_number] = ACTIONS(3251), - [sym_private_property_identifier] = ACTIONS(3251), - [sym_this] = ACTIONS(3251), - [sym_super] = ACTIONS(3251), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [sym_null] = ACTIONS(3251), - [sym_undefined] = ACTIONS(3251), - [anon_sym_AT] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_readonly] = ACTIONS(3251), - [anon_sym_get] = ACTIONS(3251), - [anon_sym_set] = ACTIONS(3251), - [anon_sym_declare] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_protected] = ACTIONS(3251), - [anon_sym_override] = ACTIONS(3251), - [anon_sym_module] = ACTIONS(3251), - [anon_sym_any] = ACTIONS(3251), - [anon_sym_number] = ACTIONS(3251), - [anon_sym_boolean] = ACTIONS(3251), - [anon_sym_string] = ACTIONS(3251), - [anon_sym_symbol] = ACTIONS(3251), - [anon_sym_object] = ACTIONS(3251), - [anon_sym_abstract] = ACTIONS(3251), - [anon_sym_interface] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [sym_html_comment] = ACTIONS(5), - }, - [1572] = { - [sym_comment] = STATE(1572), - [ts_builtin_sym_end] = ACTIONS(3637), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [sym_html_comment] = ACTIONS(5), - }, - [1573] = { - [sym_comment] = STATE(1573), - [ts_builtin_sym_end] = ACTIONS(3637), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_else] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [sym_html_comment] = ACTIONS(5), - }, - [1574] = { - [sym_comment] = STATE(1574), - [ts_builtin_sym_end] = ACTIONS(3165), - [sym_identifier] = ACTIONS(3163), - [anon_sym_export] = ACTIONS(3163), - [anon_sym_type] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_RBRACE] = ACTIONS(3163), - [anon_sym_typeof] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_with] = ACTIONS(3163), - [anon_sym_var] = ACTIONS(3163), - [anon_sym_let] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_await] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_debugger] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_LTtemplate_GT] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_async] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_SLASH] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_void] = ACTIONS(3163), - [anon_sym_delete] = ACTIONS(3163), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3163), - [sym_number] = ACTIONS(3163), - [sym_private_property_identifier] = ACTIONS(3163), - [sym_this] = ACTIONS(3163), - [sym_super] = ACTIONS(3163), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [sym_null] = ACTIONS(3163), - [sym_undefined] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_readonly] = ACTIONS(3163), - [anon_sym_get] = ACTIONS(3163), - [anon_sym_set] = ACTIONS(3163), - [anon_sym_declare] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_override] = ACTIONS(3163), - [anon_sym_module] = ACTIONS(3163), - [anon_sym_any] = ACTIONS(3163), - [anon_sym_number] = ACTIONS(3163), - [anon_sym_boolean] = ACTIONS(3163), - [anon_sym_string] = ACTIONS(3163), - [anon_sym_symbol] = ACTIONS(3163), - [anon_sym_object] = ACTIONS(3163), - [anon_sym_abstract] = ACTIONS(3163), - [anon_sym_interface] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [sym__automatic_semicolon] = ACTIONS(3165), - [sym_html_comment] = ACTIONS(5), - }, - [1575] = { - [sym_comment] = STATE(1575), - [ts_builtin_sym_end] = ACTIONS(3643), - [sym_identifier] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_else] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_debugger] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_LTtemplate_GT] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3395), - [sym_number] = ACTIONS(3395), - [sym_private_property_identifier] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - [sym_super] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_get] = ACTIONS(3395), - [anon_sym_set] = ACTIONS(3395), - [anon_sym_declare] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_any] = ACTIONS(3395), - [anon_sym_number] = ACTIONS(3395), - [anon_sym_boolean] = ACTIONS(3395), - [anon_sym_string] = ACTIONS(3395), - [anon_sym_symbol] = ACTIONS(3395), - [anon_sym_object] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), - [sym_html_comment] = ACTIONS(5), - }, - [1576] = { - [sym_comment] = STATE(1576), - [sym_identifier] = ACTIONS(3323), - [anon_sym_export] = ACTIONS(3323), - [anon_sym_default] = ACTIONS(3323), - [anon_sym_type] = ACTIONS(3323), - [anon_sym_namespace] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_RBRACE] = ACTIONS(3323), - [anon_sym_typeof] = ACTIONS(3323), - [anon_sym_import] = ACTIONS(3323), - [anon_sym_with] = ACTIONS(3323), - [anon_sym_var] = ACTIONS(3323), - [anon_sym_let] = ACTIONS(3323), - [anon_sym_const] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_switch] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_await] = ACTIONS(3323), - [anon_sym_while] = ACTIONS(3323), - [anon_sym_do] = ACTIONS(3323), - [anon_sym_try] = ACTIONS(3323), - [anon_sym_break] = ACTIONS(3323), - [anon_sym_continue] = ACTIONS(3323), - [anon_sym_debugger] = ACTIONS(3323), - [anon_sym_return] = ACTIONS(3323), - [anon_sym_throw] = ACTIONS(3323), - [anon_sym_SEMI] = ACTIONS(3323), - [anon_sym_case] = ACTIONS(3323), - [anon_sym_yield] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3323), - [anon_sym_LTtemplate_GT] = ACTIONS(3323), - [anon_sym_DQUOTE] = ACTIONS(3323), - [anon_sym_SQUOTE] = ACTIONS(3323), - [anon_sym_class] = ACTIONS(3323), - [anon_sym_async] = ACTIONS(3323), - [anon_sym_function] = ACTIONS(3323), - [anon_sym_new] = ACTIONS(3323), - [anon_sym_using] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_void] = ACTIONS(3323), - [anon_sym_delete] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3323), - [anon_sym_DASH_DASH] = ACTIONS(3323), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3323), - [sym_number] = ACTIONS(3323), - [sym_private_property_identifier] = ACTIONS(3323), - [sym_this] = ACTIONS(3323), - [sym_super] = ACTIONS(3323), - [sym_true] = ACTIONS(3323), - [sym_false] = ACTIONS(3323), - [sym_null] = ACTIONS(3323), - [sym_undefined] = ACTIONS(3323), - [anon_sym_AT] = ACTIONS(3323), - [anon_sym_static] = ACTIONS(3323), - [anon_sym_readonly] = ACTIONS(3323), - [anon_sym_get] = ACTIONS(3323), - [anon_sym_set] = ACTIONS(3323), - [anon_sym_declare] = ACTIONS(3323), - [anon_sym_public] = ACTIONS(3323), - [anon_sym_private] = ACTIONS(3323), - [anon_sym_protected] = ACTIONS(3323), - [anon_sym_override] = ACTIONS(3323), - [anon_sym_module] = ACTIONS(3323), - [anon_sym_any] = ACTIONS(3323), - [anon_sym_number] = ACTIONS(3323), - [anon_sym_boolean] = ACTIONS(3323), - [anon_sym_string] = ACTIONS(3323), - [anon_sym_symbol] = ACTIONS(3323), - [anon_sym_object] = ACTIONS(3323), - [anon_sym_abstract] = ACTIONS(3323), - [anon_sym_interface] = ACTIONS(3323), - [anon_sym_enum] = ACTIONS(3323), - [sym_html_comment] = ACTIONS(5), - }, - [1577] = { - [sym_comment] = STATE(1577), - [ts_builtin_sym_end] = ACTIONS(2390), - [sym_identifier] = ACTIONS(2228), - [anon_sym_export] = ACTIONS(2228), - [anon_sym_type] = ACTIONS(2228), - [anon_sym_namespace] = ACTIONS(2228), - [anon_sym_LBRACE] = ACTIONS(2228), - [anon_sym_RBRACE] = ACTIONS(2228), - [anon_sym_typeof] = ACTIONS(2228), - [anon_sym_import] = ACTIONS(2228), - [anon_sym_with] = ACTIONS(2228), - [anon_sym_var] = ACTIONS(2228), - [anon_sym_let] = ACTIONS(2228), - [anon_sym_const] = ACTIONS(2228), - [anon_sym_BANG] = ACTIONS(2228), - [anon_sym_if] = ACTIONS(2228), - [anon_sym_switch] = ACTIONS(2228), - [anon_sym_for] = ACTIONS(2228), - [anon_sym_LPAREN] = ACTIONS(2228), - [anon_sym_await] = ACTIONS(2228), - [anon_sym_while] = ACTIONS(2228), - [anon_sym_do] = ACTIONS(2228), - [anon_sym_try] = ACTIONS(2228), - [anon_sym_break] = ACTIONS(2228), - [anon_sym_continue] = ACTIONS(2228), - [anon_sym_debugger] = ACTIONS(2228), - [anon_sym_return] = ACTIONS(2228), - [anon_sym_throw] = ACTIONS(2228), - [anon_sym_SEMI] = ACTIONS(2228), - [anon_sym_yield] = ACTIONS(2228), - [anon_sym_LBRACK] = ACTIONS(2228), - [anon_sym_LTtemplate_GT] = ACTIONS(2228), - [anon_sym_DQUOTE] = ACTIONS(2228), - [anon_sym_SQUOTE] = ACTIONS(2228), - [anon_sym_class] = ACTIONS(2228), - [anon_sym_async] = ACTIONS(2228), - [anon_sym_function] = ACTIONS(2228), - [anon_sym_new] = ACTIONS(2228), - [anon_sym_using] = ACTIONS(2228), - [anon_sym_PLUS] = ACTIONS(2228), - [anon_sym_DASH] = ACTIONS(2228), - [anon_sym_SLASH] = ACTIONS(2228), - [anon_sym_LT] = ACTIONS(2228), - [anon_sym_TILDE] = ACTIONS(2228), - [anon_sym_void] = ACTIONS(2228), - [anon_sym_delete] = ACTIONS(2228), - [anon_sym_PLUS_PLUS] = ACTIONS(2228), - [anon_sym_DASH_DASH] = ACTIONS(2228), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2228), - [sym_number] = ACTIONS(2228), - [sym_private_property_identifier] = ACTIONS(2228), - [sym_this] = ACTIONS(2228), - [sym_super] = ACTIONS(2228), - [sym_true] = ACTIONS(2228), - [sym_false] = ACTIONS(2228), - [sym_null] = ACTIONS(2228), - [sym_undefined] = ACTIONS(2228), - [anon_sym_AT] = ACTIONS(2228), - [anon_sym_static] = ACTIONS(2228), - [anon_sym_readonly] = ACTIONS(2228), - [anon_sym_get] = ACTIONS(2228), - [anon_sym_set] = ACTIONS(2228), - [anon_sym_declare] = ACTIONS(2228), - [anon_sym_public] = ACTIONS(2228), - [anon_sym_private] = ACTIONS(2228), - [anon_sym_protected] = ACTIONS(2228), - [anon_sym_override] = ACTIONS(2228), - [anon_sym_module] = ACTIONS(2228), - [anon_sym_any] = ACTIONS(2228), - [anon_sym_number] = ACTIONS(2228), - [anon_sym_boolean] = ACTIONS(2228), - [anon_sym_string] = ACTIONS(2228), - [anon_sym_symbol] = ACTIONS(2228), - [anon_sym_object] = ACTIONS(2228), - [anon_sym_abstract] = ACTIONS(2228), - [anon_sym_interface] = ACTIONS(2228), - [anon_sym_enum] = ACTIONS(2228), - [sym__automatic_semicolon] = ACTIONS(2444), - [sym_html_comment] = ACTIONS(5), - }, - [1578] = { - [sym_comment] = STATE(1578), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_else] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [sym_html_comment] = ACTIONS(5), - }, - [1579] = { - [sym_comment] = STATE(1579), - [ts_builtin_sym_end] = ACTIONS(2248), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_namespace] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2246), - [anon_sym_import] = ACTIONS(2246), - [anon_sym_with] = ACTIONS(2246), - [anon_sym_var] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_debugger] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_throw] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LTtemplate_GT] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_class] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2246), - [anon_sym_delete] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_private_property_identifier] = ACTIONS(2246), - [sym_this] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_undefined] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_readonly] = ACTIONS(2246), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_declare] = ACTIONS(2246), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_override] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_any] = ACTIONS(2246), - [anon_sym_number] = ACTIONS(2246), - [anon_sym_boolean] = ACTIONS(2246), - [anon_sym_string] = ACTIONS(2246), - [anon_sym_symbol] = ACTIONS(2246), - [anon_sym_object] = ACTIONS(2246), - [anon_sym_abstract] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), - [sym__automatic_semicolon] = ACTIONS(2248), - [sym_html_comment] = ACTIONS(5), - }, - [1580] = { - [sym_comment] = STATE(1580), - [ts_builtin_sym_end] = ACTIONS(2218), - [sym_identifier] = ACTIONS(2216), - [anon_sym_export] = ACTIONS(2216), - [anon_sym_type] = ACTIONS(2216), - [anon_sym_namespace] = ACTIONS(2216), - [anon_sym_LBRACE] = ACTIONS(2216), - [anon_sym_RBRACE] = ACTIONS(2216), - [anon_sym_typeof] = ACTIONS(2216), - [anon_sym_import] = ACTIONS(2216), - [anon_sym_with] = ACTIONS(2216), - [anon_sym_var] = ACTIONS(2216), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_const] = ACTIONS(2216), - [anon_sym_BANG] = ACTIONS(2216), - [anon_sym_else] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_switch] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2216), - [anon_sym_await] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2216), - [anon_sym_do] = ACTIONS(2216), - [anon_sym_try] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_debugger] = ACTIONS(2216), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_throw] = ACTIONS(2216), - [anon_sym_SEMI] = ACTIONS(2216), - [anon_sym_yield] = ACTIONS(2216), - [anon_sym_LBRACK] = ACTIONS(2216), - [anon_sym_LTtemplate_GT] = ACTIONS(2216), - [anon_sym_DQUOTE] = ACTIONS(2216), - [anon_sym_SQUOTE] = ACTIONS(2216), - [anon_sym_class] = ACTIONS(2216), - [anon_sym_async] = ACTIONS(2216), - [anon_sym_function] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2216), - [anon_sym_using] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2216), - [anon_sym_SLASH] = ACTIONS(2216), - [anon_sym_LT] = ACTIONS(2216), - [anon_sym_TILDE] = ACTIONS(2216), - [anon_sym_void] = ACTIONS(2216), - [anon_sym_delete] = ACTIONS(2216), - [anon_sym_PLUS_PLUS] = ACTIONS(2216), - [anon_sym_DASH_DASH] = ACTIONS(2216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2216), - [sym_number] = ACTIONS(2216), - [sym_private_property_identifier] = ACTIONS(2216), - [sym_this] = ACTIONS(2216), - [sym_super] = ACTIONS(2216), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_undefined] = ACTIONS(2216), - [anon_sym_AT] = ACTIONS(2216), - [anon_sym_static] = ACTIONS(2216), - [anon_sym_readonly] = ACTIONS(2216), - [anon_sym_get] = ACTIONS(2216), - [anon_sym_set] = ACTIONS(2216), - [anon_sym_declare] = ACTIONS(2216), - [anon_sym_public] = ACTIONS(2216), - [anon_sym_private] = ACTIONS(2216), - [anon_sym_protected] = ACTIONS(2216), - [anon_sym_override] = ACTIONS(2216), - [anon_sym_module] = ACTIONS(2216), - [anon_sym_any] = ACTIONS(2216), - [anon_sym_number] = ACTIONS(2216), - [anon_sym_boolean] = ACTIONS(2216), - [anon_sym_string] = ACTIONS(2216), - [anon_sym_symbol] = ACTIONS(2216), - [anon_sym_object] = ACTIONS(2216), - [anon_sym_abstract] = ACTIONS(2216), - [anon_sym_interface] = ACTIONS(2216), - [anon_sym_enum] = ACTIONS(2216), - [sym_html_comment] = ACTIONS(5), - }, - [1581] = { - [sym_comment] = STATE(1581), - [ts_builtin_sym_end] = ACTIONS(3645), - [sym_identifier] = ACTIONS(3435), - [anon_sym_export] = ACTIONS(3435), - [anon_sym_type] = ACTIONS(3435), - [anon_sym_namespace] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_RBRACE] = ACTIONS(3435), - [anon_sym_typeof] = ACTIONS(3435), - [anon_sym_import] = ACTIONS(3435), - [anon_sym_with] = ACTIONS(3435), - [anon_sym_var] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_const] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3435), - [anon_sym_else] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_switch] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_await] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_break] = ACTIONS(3435), - [anon_sym_continue] = ACTIONS(3435), - [anon_sym_debugger] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_throw] = ACTIONS(3435), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_LTtemplate_GT] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3435), - [anon_sym_class] = ACTIONS(3435), - [anon_sym_async] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_using] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_SLASH] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_void] = ACTIONS(3435), - [anon_sym_delete] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_DASH_DASH] = ACTIONS(3435), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3435), - [sym_number] = ACTIONS(3435), - [sym_private_property_identifier] = ACTIONS(3435), - [sym_this] = ACTIONS(3435), - [sym_super] = ACTIONS(3435), - [sym_true] = ACTIONS(3435), - [sym_false] = ACTIONS(3435), - [sym_null] = ACTIONS(3435), - [sym_undefined] = ACTIONS(3435), - [anon_sym_AT] = ACTIONS(3435), - [anon_sym_static] = ACTIONS(3435), - [anon_sym_readonly] = ACTIONS(3435), - [anon_sym_get] = ACTIONS(3435), - [anon_sym_set] = ACTIONS(3435), - [anon_sym_declare] = ACTIONS(3435), - [anon_sym_public] = ACTIONS(3435), - [anon_sym_private] = ACTIONS(3435), - [anon_sym_protected] = ACTIONS(3435), - [anon_sym_override] = ACTIONS(3435), - [anon_sym_module] = ACTIONS(3435), - [anon_sym_any] = ACTIONS(3435), - [anon_sym_number] = ACTIONS(3435), - [anon_sym_boolean] = ACTIONS(3435), - [anon_sym_string] = ACTIONS(3435), - [anon_sym_symbol] = ACTIONS(3435), - [anon_sym_object] = ACTIONS(3435), - [anon_sym_abstract] = ACTIONS(3435), - [anon_sym_interface] = ACTIONS(3435), - [anon_sym_enum] = ACTIONS(3435), - [sym_html_comment] = ACTIONS(5), - }, - [1582] = { - [sym_comment] = STATE(1582), - [ts_builtin_sym_end] = ACTIONS(3647), - [sym_identifier] = ACTIONS(3447), - [anon_sym_export] = ACTIONS(3447), - [anon_sym_type] = ACTIONS(3447), - [anon_sym_namespace] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_RBRACE] = ACTIONS(3447), - [anon_sym_typeof] = ACTIONS(3447), - [anon_sym_import] = ACTIONS(3447), - [anon_sym_with] = ACTIONS(3447), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_const] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_else] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_await] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_break] = ACTIONS(3447), - [anon_sym_continue] = ACTIONS(3447), - [anon_sym_debugger] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_throw] = ACTIONS(3447), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LTtemplate_GT] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_class] = ACTIONS(3447), - [anon_sym_async] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_using] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3447), - [anon_sym_void] = ACTIONS(3447), - [anon_sym_delete] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_DASH_DASH] = ACTIONS(3447), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3447), - [sym_number] = ACTIONS(3447), - [sym_private_property_identifier] = ACTIONS(3447), - [sym_this] = ACTIONS(3447), - [sym_super] = ACTIONS(3447), - [sym_true] = ACTIONS(3447), - [sym_false] = ACTIONS(3447), - [sym_null] = ACTIONS(3447), - [sym_undefined] = ACTIONS(3447), - [anon_sym_AT] = ACTIONS(3447), - [anon_sym_static] = ACTIONS(3447), - [anon_sym_readonly] = ACTIONS(3447), - [anon_sym_get] = ACTIONS(3447), - [anon_sym_set] = ACTIONS(3447), - [anon_sym_declare] = ACTIONS(3447), - [anon_sym_public] = ACTIONS(3447), - [anon_sym_private] = ACTIONS(3447), - [anon_sym_protected] = ACTIONS(3447), - [anon_sym_override] = ACTIONS(3447), - [anon_sym_module] = ACTIONS(3447), - [anon_sym_any] = ACTIONS(3447), - [anon_sym_number] = ACTIONS(3447), - [anon_sym_boolean] = ACTIONS(3447), - [anon_sym_string] = ACTIONS(3447), - [anon_sym_symbol] = ACTIONS(3447), - [anon_sym_object] = ACTIONS(3447), - [anon_sym_abstract] = ACTIONS(3447), - [anon_sym_interface] = ACTIONS(3447), - [anon_sym_enum] = ACTIONS(3447), - [sym_html_comment] = ACTIONS(5), - }, - [1583] = { - [sym_comment] = STATE(1583), - [ts_builtin_sym_end] = ACTIONS(3649), - [sym_identifier] = ACTIONS(3445), - [anon_sym_export] = ACTIONS(3445), - [anon_sym_type] = ACTIONS(3445), - [anon_sym_namespace] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_typeof] = ACTIONS(3445), - [anon_sym_import] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), - [anon_sym_BANG] = ACTIONS(3445), - [anon_sym_else] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_await] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_break] = ACTIONS(3445), - [anon_sym_continue] = ACTIONS(3445), - [anon_sym_debugger] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_throw] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LTtemplate_GT] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_SQUOTE] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_async] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_using] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_void] = ACTIONS(3445), - [anon_sym_delete] = ACTIONS(3445), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3445), - [sym_number] = ACTIONS(3445), - [sym_private_property_identifier] = ACTIONS(3445), - [sym_this] = ACTIONS(3445), - [sym_super] = ACTIONS(3445), - [sym_true] = ACTIONS(3445), - [sym_false] = ACTIONS(3445), - [sym_null] = ACTIONS(3445), - [sym_undefined] = ACTIONS(3445), - [anon_sym_AT] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_readonly] = ACTIONS(3445), - [anon_sym_get] = ACTIONS(3445), - [anon_sym_set] = ACTIONS(3445), - [anon_sym_declare] = ACTIONS(3445), - [anon_sym_public] = ACTIONS(3445), - [anon_sym_private] = ACTIONS(3445), - [anon_sym_protected] = ACTIONS(3445), - [anon_sym_override] = ACTIONS(3445), - [anon_sym_module] = ACTIONS(3445), - [anon_sym_any] = ACTIONS(3445), - [anon_sym_number] = ACTIONS(3445), - [anon_sym_boolean] = ACTIONS(3445), - [anon_sym_string] = ACTIONS(3445), - [anon_sym_symbol] = ACTIONS(3445), - [anon_sym_object] = ACTIONS(3445), - [anon_sym_abstract] = ACTIONS(3445), - [anon_sym_interface] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), - [sym_html_comment] = ACTIONS(5), - }, - [1584] = { - [sym_comment] = STATE(1584), - [ts_builtin_sym_end] = ACTIONS(3649), - [sym_identifier] = ACTIONS(3445), - [anon_sym_export] = ACTIONS(3445), - [anon_sym_type] = ACTIONS(3445), - [anon_sym_namespace] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_typeof] = ACTIONS(3445), - [anon_sym_import] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), - [anon_sym_BANG] = ACTIONS(3445), - [anon_sym_else] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_await] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_break] = ACTIONS(3445), - [anon_sym_continue] = ACTIONS(3445), - [anon_sym_debugger] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_throw] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LTtemplate_GT] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_SQUOTE] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_async] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_using] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_void] = ACTIONS(3445), - [anon_sym_delete] = ACTIONS(3445), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3445), - [sym_number] = ACTIONS(3445), - [sym_private_property_identifier] = ACTIONS(3445), - [sym_this] = ACTIONS(3445), - [sym_super] = ACTIONS(3445), - [sym_true] = ACTIONS(3445), - [sym_false] = ACTIONS(3445), - [sym_null] = ACTIONS(3445), - [sym_undefined] = ACTIONS(3445), - [anon_sym_AT] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_readonly] = ACTIONS(3445), - [anon_sym_get] = ACTIONS(3445), - [anon_sym_set] = ACTIONS(3445), - [anon_sym_declare] = ACTIONS(3445), - [anon_sym_public] = ACTIONS(3445), - [anon_sym_private] = ACTIONS(3445), - [anon_sym_protected] = ACTIONS(3445), - [anon_sym_override] = ACTIONS(3445), - [anon_sym_module] = ACTIONS(3445), - [anon_sym_any] = ACTIONS(3445), - [anon_sym_number] = ACTIONS(3445), - [anon_sym_boolean] = ACTIONS(3445), - [anon_sym_string] = ACTIONS(3445), - [anon_sym_symbol] = ACTIONS(3445), - [anon_sym_object] = ACTIONS(3445), - [anon_sym_abstract] = ACTIONS(3445), - [anon_sym_interface] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), - [sym_html_comment] = ACTIONS(5), - }, - [1585] = { - [sym_comment] = STATE(1585), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1586] = { - [sym_comment] = STATE(1586), - [ts_builtin_sym_end] = ACTIONS(3651), - [sym_identifier] = ACTIONS(3399), - [anon_sym_export] = ACTIONS(3399), - [anon_sym_type] = ACTIONS(3399), - [anon_sym_namespace] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_RBRACE] = ACTIONS(3399), - [anon_sym_typeof] = ACTIONS(3399), - [anon_sym_import] = ACTIONS(3399), - [anon_sym_with] = ACTIONS(3399), - [anon_sym_var] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_const] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3399), - [anon_sym_else] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_switch] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_await] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_break] = ACTIONS(3399), - [anon_sym_continue] = ACTIONS(3399), - [anon_sym_debugger] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_throw] = ACTIONS(3399), - [anon_sym_SEMI] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_LTtemplate_GT] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_SQUOTE] = ACTIONS(3399), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_async] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_using] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_SLASH] = ACTIONS(3399), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3399), - [anon_sym_void] = ACTIONS(3399), - [anon_sym_delete] = ACTIONS(3399), - [anon_sym_PLUS_PLUS] = ACTIONS(3399), - [anon_sym_DASH_DASH] = ACTIONS(3399), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3399), - [sym_number] = ACTIONS(3399), - [sym_private_property_identifier] = ACTIONS(3399), - [sym_this] = ACTIONS(3399), - [sym_super] = ACTIONS(3399), - [sym_true] = ACTIONS(3399), - [sym_false] = ACTIONS(3399), - [sym_null] = ACTIONS(3399), - [sym_undefined] = ACTIONS(3399), - [anon_sym_AT] = ACTIONS(3399), - [anon_sym_static] = ACTIONS(3399), - [anon_sym_readonly] = ACTIONS(3399), - [anon_sym_get] = ACTIONS(3399), - [anon_sym_set] = ACTIONS(3399), - [anon_sym_declare] = ACTIONS(3399), - [anon_sym_public] = ACTIONS(3399), - [anon_sym_private] = ACTIONS(3399), - [anon_sym_protected] = ACTIONS(3399), - [anon_sym_override] = ACTIONS(3399), - [anon_sym_module] = ACTIONS(3399), - [anon_sym_any] = ACTIONS(3399), - [anon_sym_number] = ACTIONS(3399), - [anon_sym_boolean] = ACTIONS(3399), - [anon_sym_string] = ACTIONS(3399), - [anon_sym_symbol] = ACTIONS(3399), - [anon_sym_object] = ACTIONS(3399), - [anon_sym_abstract] = ACTIONS(3399), - [anon_sym_interface] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3399), - [sym_html_comment] = ACTIONS(5), - }, - [1587] = { - [sym_comment] = STATE(1587), - [ts_builtin_sym_end] = ACTIONS(3653), - [sym_identifier] = ACTIONS(3449), - [anon_sym_export] = ACTIONS(3449), - [anon_sym_type] = ACTIONS(3449), - [anon_sym_namespace] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym_typeof] = ACTIONS(3449), - [anon_sym_import] = ACTIONS(3449), - [anon_sym_with] = ACTIONS(3449), - [anon_sym_var] = ACTIONS(3449), - [anon_sym_let] = ACTIONS(3449), - [anon_sym_const] = ACTIONS(3449), - [anon_sym_BANG] = ACTIONS(3449), - [anon_sym_else] = ACTIONS(3449), - [anon_sym_if] = ACTIONS(3449), - [anon_sym_switch] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_await] = ACTIONS(3449), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(3449), - [anon_sym_try] = ACTIONS(3449), - [anon_sym_break] = ACTIONS(3449), - [anon_sym_continue] = ACTIONS(3449), - [anon_sym_debugger] = ACTIONS(3449), - [anon_sym_return] = ACTIONS(3449), - [anon_sym_throw] = ACTIONS(3449), - [anon_sym_SEMI] = ACTIONS(3449), - [anon_sym_yield] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LTtemplate_GT] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [anon_sym_SQUOTE] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_async] = ACTIONS(3449), - [anon_sym_function] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_using] = ACTIONS(3449), - [anon_sym_PLUS] = ACTIONS(3449), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_SLASH] = ACTIONS(3449), - [anon_sym_LT] = ACTIONS(3449), - [anon_sym_TILDE] = ACTIONS(3449), - [anon_sym_void] = ACTIONS(3449), - [anon_sym_delete] = ACTIONS(3449), - [anon_sym_PLUS_PLUS] = ACTIONS(3449), - [anon_sym_DASH_DASH] = ACTIONS(3449), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3449), - [sym_number] = ACTIONS(3449), - [sym_private_property_identifier] = ACTIONS(3449), - [sym_this] = ACTIONS(3449), - [sym_super] = ACTIONS(3449), - [sym_true] = ACTIONS(3449), - [sym_false] = ACTIONS(3449), - [sym_null] = ACTIONS(3449), - [sym_undefined] = ACTIONS(3449), - [anon_sym_AT] = ACTIONS(3449), - [anon_sym_static] = ACTIONS(3449), - [anon_sym_readonly] = ACTIONS(3449), - [anon_sym_get] = ACTIONS(3449), - [anon_sym_set] = ACTIONS(3449), - [anon_sym_declare] = ACTIONS(3449), - [anon_sym_public] = ACTIONS(3449), - [anon_sym_private] = ACTIONS(3449), - [anon_sym_protected] = ACTIONS(3449), - [anon_sym_override] = ACTIONS(3449), - [anon_sym_module] = ACTIONS(3449), - [anon_sym_any] = ACTIONS(3449), - [anon_sym_number] = ACTIONS(3449), - [anon_sym_boolean] = ACTIONS(3449), - [anon_sym_string] = ACTIONS(3449), - [anon_sym_symbol] = ACTIONS(3449), - [anon_sym_object] = ACTIONS(3449), - [anon_sym_abstract] = ACTIONS(3449), - [anon_sym_interface] = ACTIONS(3449), - [anon_sym_enum] = ACTIONS(3449), - [sym_html_comment] = ACTIONS(5), - }, - [1588] = { - [sym_comment] = STATE(1588), - [sym_identifier] = ACTIONS(3325), - [anon_sym_export] = ACTIONS(3325), - [anon_sym_default] = ACTIONS(3325), - [anon_sym_type] = ACTIONS(3325), - [anon_sym_namespace] = ACTIONS(3325), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_typeof] = ACTIONS(3325), - [anon_sym_import] = ACTIONS(3325), - [anon_sym_with] = ACTIONS(3325), - [anon_sym_var] = ACTIONS(3325), - [anon_sym_let] = ACTIONS(3325), - [anon_sym_const] = ACTIONS(3325), - [anon_sym_BANG] = ACTIONS(3325), - [anon_sym_if] = ACTIONS(3325), - [anon_sym_switch] = ACTIONS(3325), - [anon_sym_for] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_await] = ACTIONS(3325), - [anon_sym_while] = ACTIONS(3325), - [anon_sym_do] = ACTIONS(3325), - [anon_sym_try] = ACTIONS(3325), - [anon_sym_break] = ACTIONS(3325), - [anon_sym_continue] = ACTIONS(3325), - [anon_sym_debugger] = ACTIONS(3325), - [anon_sym_return] = ACTIONS(3325), - [anon_sym_throw] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_case] = ACTIONS(3325), - [anon_sym_yield] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_LTtemplate_GT] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(3325), - [anon_sym_SQUOTE] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_async] = ACTIONS(3325), - [anon_sym_function] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_using] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_SLASH] = ACTIONS(3325), - [anon_sym_LT] = ACTIONS(3325), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_void] = ACTIONS(3325), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_PLUS_PLUS] = ACTIONS(3325), - [anon_sym_DASH_DASH] = ACTIONS(3325), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3325), - [sym_number] = ACTIONS(3325), - [sym_private_property_identifier] = ACTIONS(3325), - [sym_this] = ACTIONS(3325), - [sym_super] = ACTIONS(3325), - [sym_true] = ACTIONS(3325), - [sym_false] = ACTIONS(3325), - [sym_null] = ACTIONS(3325), - [sym_undefined] = ACTIONS(3325), - [anon_sym_AT] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_readonly] = ACTIONS(3325), - [anon_sym_get] = ACTIONS(3325), - [anon_sym_set] = ACTIONS(3325), - [anon_sym_declare] = ACTIONS(3325), - [anon_sym_public] = ACTIONS(3325), - [anon_sym_private] = ACTIONS(3325), - [anon_sym_protected] = ACTIONS(3325), - [anon_sym_override] = ACTIONS(3325), - [anon_sym_module] = ACTIONS(3325), - [anon_sym_any] = ACTIONS(3325), - [anon_sym_number] = ACTIONS(3325), - [anon_sym_boolean] = ACTIONS(3325), - [anon_sym_string] = ACTIONS(3325), - [anon_sym_symbol] = ACTIONS(3325), - [anon_sym_object] = ACTIONS(3325), - [anon_sym_abstract] = ACTIONS(3325), - [anon_sym_interface] = ACTIONS(3325), - [anon_sym_enum] = ACTIONS(3325), - [sym_html_comment] = ACTIONS(5), - }, - [1589] = { - [sym_comment] = STATE(1589), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1590] = { - [sym_comment] = STATE(1590), - [sym_identifier] = ACTIONS(3313), - [anon_sym_export] = ACTIONS(3313), - [anon_sym_default] = ACTIONS(3313), - [anon_sym_type] = ACTIONS(3313), - [anon_sym_namespace] = ACTIONS(3313), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_RBRACE] = ACTIONS(3313), - [anon_sym_typeof] = ACTIONS(3313), - [anon_sym_import] = ACTIONS(3313), - [anon_sym_with] = ACTIONS(3313), - [anon_sym_var] = ACTIONS(3313), - [anon_sym_let] = ACTIONS(3313), - [anon_sym_const] = ACTIONS(3313), - [anon_sym_BANG] = ACTIONS(3313), - [anon_sym_if] = ACTIONS(3313), - [anon_sym_switch] = ACTIONS(3313), - [anon_sym_for] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3313), - [anon_sym_await] = ACTIONS(3313), - [anon_sym_while] = ACTIONS(3313), - [anon_sym_do] = ACTIONS(3313), - [anon_sym_try] = ACTIONS(3313), - [anon_sym_break] = ACTIONS(3313), - [anon_sym_continue] = ACTIONS(3313), - [anon_sym_debugger] = ACTIONS(3313), - [anon_sym_return] = ACTIONS(3313), - [anon_sym_throw] = ACTIONS(3313), - [anon_sym_SEMI] = ACTIONS(3313), - [anon_sym_case] = ACTIONS(3313), - [anon_sym_yield] = ACTIONS(3313), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LTtemplate_GT] = ACTIONS(3313), - [anon_sym_DQUOTE] = ACTIONS(3313), - [anon_sym_SQUOTE] = ACTIONS(3313), - [anon_sym_class] = ACTIONS(3313), - [anon_sym_async] = ACTIONS(3313), - [anon_sym_function] = ACTIONS(3313), - [anon_sym_new] = ACTIONS(3313), - [anon_sym_using] = ACTIONS(3313), - [anon_sym_PLUS] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(3313), - [anon_sym_SLASH] = ACTIONS(3313), - [anon_sym_LT] = ACTIONS(3313), - [anon_sym_TILDE] = ACTIONS(3313), - [anon_sym_void] = ACTIONS(3313), - [anon_sym_delete] = ACTIONS(3313), - [anon_sym_PLUS_PLUS] = ACTIONS(3313), - [anon_sym_DASH_DASH] = ACTIONS(3313), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3313), - [sym_number] = ACTIONS(3313), - [sym_private_property_identifier] = ACTIONS(3313), - [sym_this] = ACTIONS(3313), - [sym_super] = ACTIONS(3313), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [sym_null] = ACTIONS(3313), - [sym_undefined] = ACTIONS(3313), - [anon_sym_AT] = ACTIONS(3313), - [anon_sym_static] = ACTIONS(3313), - [anon_sym_readonly] = ACTIONS(3313), - [anon_sym_get] = ACTIONS(3313), - [anon_sym_set] = ACTIONS(3313), - [anon_sym_declare] = ACTIONS(3313), - [anon_sym_public] = ACTIONS(3313), - [anon_sym_private] = ACTIONS(3313), - [anon_sym_protected] = ACTIONS(3313), - [anon_sym_override] = ACTIONS(3313), - [anon_sym_module] = ACTIONS(3313), - [anon_sym_any] = ACTIONS(3313), - [anon_sym_number] = ACTIONS(3313), - [anon_sym_boolean] = ACTIONS(3313), - [anon_sym_string] = ACTIONS(3313), - [anon_sym_symbol] = ACTIONS(3313), - [anon_sym_object] = ACTIONS(3313), - [anon_sym_abstract] = ACTIONS(3313), - [anon_sym_interface] = ACTIONS(3313), - [anon_sym_enum] = ACTIONS(3313), - [sym_html_comment] = ACTIONS(5), - }, - [1591] = { - [sym_comment] = STATE(1591), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1592] = { - [sym_comment] = STATE(1592), - [sym_identifier] = ACTIONS(3315), - [anon_sym_export] = ACTIONS(3315), - [anon_sym_default] = ACTIONS(3315), - [anon_sym_type] = ACTIONS(3315), - [anon_sym_namespace] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_typeof] = ACTIONS(3315), - [anon_sym_import] = ACTIONS(3315), - [anon_sym_with] = ACTIONS(3315), - [anon_sym_var] = ACTIONS(3315), - [anon_sym_let] = ACTIONS(3315), - [anon_sym_const] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_switch] = ACTIONS(3315), - [anon_sym_for] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_await] = ACTIONS(3315), - [anon_sym_while] = ACTIONS(3315), - [anon_sym_do] = ACTIONS(3315), - [anon_sym_try] = ACTIONS(3315), - [anon_sym_break] = ACTIONS(3315), - [anon_sym_continue] = ACTIONS(3315), - [anon_sym_debugger] = ACTIONS(3315), - [anon_sym_return] = ACTIONS(3315), - [anon_sym_throw] = ACTIONS(3315), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym_case] = ACTIONS(3315), - [anon_sym_yield] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3315), - [anon_sym_LTtemplate_GT] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3315), - [anon_sym_class] = ACTIONS(3315), - [anon_sym_async] = ACTIONS(3315), - [anon_sym_function] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(3315), - [anon_sym_using] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_SLASH] = ACTIONS(3315), - [anon_sym_LT] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3315), - [anon_sym_void] = ACTIONS(3315), - [anon_sym_delete] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3315), - [sym_number] = ACTIONS(3315), - [sym_private_property_identifier] = ACTIONS(3315), - [sym_this] = ACTIONS(3315), - [sym_super] = ACTIONS(3315), - [sym_true] = ACTIONS(3315), - [sym_false] = ACTIONS(3315), - [sym_null] = ACTIONS(3315), - [sym_undefined] = ACTIONS(3315), - [anon_sym_AT] = ACTIONS(3315), - [anon_sym_static] = ACTIONS(3315), - [anon_sym_readonly] = ACTIONS(3315), - [anon_sym_get] = ACTIONS(3315), - [anon_sym_set] = ACTIONS(3315), - [anon_sym_declare] = ACTIONS(3315), - [anon_sym_public] = ACTIONS(3315), - [anon_sym_private] = ACTIONS(3315), - [anon_sym_protected] = ACTIONS(3315), - [anon_sym_override] = ACTIONS(3315), - [anon_sym_module] = ACTIONS(3315), - [anon_sym_any] = ACTIONS(3315), - [anon_sym_number] = ACTIONS(3315), - [anon_sym_boolean] = ACTIONS(3315), - [anon_sym_string] = ACTIONS(3315), - [anon_sym_symbol] = ACTIONS(3315), - [anon_sym_object] = ACTIONS(3315), - [anon_sym_abstract] = ACTIONS(3315), - [anon_sym_interface] = ACTIONS(3315), - [anon_sym_enum] = ACTIONS(3315), - [sym_html_comment] = ACTIONS(5), - }, - [1593] = { - [sym_comment] = STATE(1593), - [sym_identifier] = ACTIONS(3317), - [anon_sym_export] = ACTIONS(3317), - [anon_sym_default] = ACTIONS(3317), - [anon_sym_type] = ACTIONS(3317), - [anon_sym_namespace] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_typeof] = ACTIONS(3317), - [anon_sym_import] = ACTIONS(3317), - [anon_sym_with] = ACTIONS(3317), - [anon_sym_var] = ACTIONS(3317), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_const] = ACTIONS(3317), - [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3317), - [anon_sym_switch] = ACTIONS(3317), - [anon_sym_for] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_await] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3317), - [anon_sym_do] = ACTIONS(3317), - [anon_sym_try] = ACTIONS(3317), - [anon_sym_break] = ACTIONS(3317), - [anon_sym_continue] = ACTIONS(3317), - [anon_sym_debugger] = ACTIONS(3317), - [anon_sym_return] = ACTIONS(3317), - [anon_sym_throw] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_case] = ACTIONS(3317), - [anon_sym_yield] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_LTtemplate_GT] = ACTIONS(3317), - [anon_sym_DQUOTE] = ACTIONS(3317), - [anon_sym_SQUOTE] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_async] = ACTIONS(3317), - [anon_sym_function] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_using] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_void] = ACTIONS(3317), - [anon_sym_delete] = ACTIONS(3317), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3317), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3317), - [sym_number] = ACTIONS(3317), - [sym_private_property_identifier] = ACTIONS(3317), - [sym_this] = ACTIONS(3317), - [sym_super] = ACTIONS(3317), - [sym_true] = ACTIONS(3317), - [sym_false] = ACTIONS(3317), - [sym_null] = ACTIONS(3317), - [sym_undefined] = ACTIONS(3317), - [anon_sym_AT] = ACTIONS(3317), - [anon_sym_static] = ACTIONS(3317), - [anon_sym_readonly] = ACTIONS(3317), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3317), - [anon_sym_public] = ACTIONS(3317), - [anon_sym_private] = ACTIONS(3317), - [anon_sym_protected] = ACTIONS(3317), - [anon_sym_override] = ACTIONS(3317), - [anon_sym_module] = ACTIONS(3317), - [anon_sym_any] = ACTIONS(3317), - [anon_sym_number] = ACTIONS(3317), - [anon_sym_boolean] = ACTIONS(3317), - [anon_sym_string] = ACTIONS(3317), - [anon_sym_symbol] = ACTIONS(3317), - [anon_sym_object] = ACTIONS(3317), - [anon_sym_abstract] = ACTIONS(3317), - [anon_sym_interface] = ACTIONS(3317), - [anon_sym_enum] = ACTIONS(3317), - [sym_html_comment] = ACTIONS(5), - }, - [1594] = { - [sym_comment] = STATE(1594), - [sym_identifier] = ACTIONS(3317), - [anon_sym_export] = ACTIONS(3317), - [anon_sym_default] = ACTIONS(3317), - [anon_sym_type] = ACTIONS(3317), - [anon_sym_namespace] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_typeof] = ACTIONS(3317), - [anon_sym_import] = ACTIONS(3317), - [anon_sym_with] = ACTIONS(3317), - [anon_sym_var] = ACTIONS(3317), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_const] = ACTIONS(3317), - [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3317), - [anon_sym_switch] = ACTIONS(3317), - [anon_sym_for] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_await] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3317), - [anon_sym_do] = ACTIONS(3317), - [anon_sym_try] = ACTIONS(3317), - [anon_sym_break] = ACTIONS(3317), - [anon_sym_continue] = ACTIONS(3317), - [anon_sym_debugger] = ACTIONS(3317), - [anon_sym_return] = ACTIONS(3317), - [anon_sym_throw] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_case] = ACTIONS(3317), - [anon_sym_yield] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_LTtemplate_GT] = ACTIONS(3317), - [anon_sym_DQUOTE] = ACTIONS(3317), - [anon_sym_SQUOTE] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_async] = ACTIONS(3317), - [anon_sym_function] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_using] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_void] = ACTIONS(3317), - [anon_sym_delete] = ACTIONS(3317), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3317), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3317), - [sym_number] = ACTIONS(3317), - [sym_private_property_identifier] = ACTIONS(3317), - [sym_this] = ACTIONS(3317), - [sym_super] = ACTIONS(3317), - [sym_true] = ACTIONS(3317), - [sym_false] = ACTIONS(3317), - [sym_null] = ACTIONS(3317), - [sym_undefined] = ACTIONS(3317), - [anon_sym_AT] = ACTIONS(3317), - [anon_sym_static] = ACTIONS(3317), - [anon_sym_readonly] = ACTIONS(3317), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3317), - [anon_sym_public] = ACTIONS(3317), - [anon_sym_private] = ACTIONS(3317), - [anon_sym_protected] = ACTIONS(3317), - [anon_sym_override] = ACTIONS(3317), - [anon_sym_module] = ACTIONS(3317), - [anon_sym_any] = ACTIONS(3317), - [anon_sym_number] = ACTIONS(3317), - [anon_sym_boolean] = ACTIONS(3317), - [anon_sym_string] = ACTIONS(3317), - [anon_sym_symbol] = ACTIONS(3317), - [anon_sym_object] = ACTIONS(3317), - [anon_sym_abstract] = ACTIONS(3317), - [anon_sym_interface] = ACTIONS(3317), - [anon_sym_enum] = ACTIONS(3317), - [sym_html_comment] = ACTIONS(5), - }, - [1595] = { - [sym_comment] = STATE(1595), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_else] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1596] = { - [sym_comment] = STATE(1596), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1597] = { - [sym_comment] = STATE(1597), - [sym_identifier] = ACTIONS(3319), - [anon_sym_export] = ACTIONS(3319), - [anon_sym_default] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_namespace] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_typeof] = ACTIONS(3319), - [anon_sym_import] = ACTIONS(3319), - [anon_sym_with] = ACTIONS(3319), - [anon_sym_var] = ACTIONS(3319), - [anon_sym_let] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_switch] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_await] = ACTIONS(3319), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_do] = ACTIONS(3319), - [anon_sym_try] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_debugger] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_throw] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3319), - [anon_sym_case] = ACTIONS(3319), - [anon_sym_yield] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_LTtemplate_GT] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3319), - [anon_sym_class] = ACTIONS(3319), - [anon_sym_async] = ACTIONS(3319), - [anon_sym_function] = ACTIONS(3319), - [anon_sym_new] = ACTIONS(3319), - [anon_sym_using] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_void] = ACTIONS(3319), - [anon_sym_delete] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3319), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3319), - [sym_number] = ACTIONS(3319), - [sym_private_property_identifier] = ACTIONS(3319), - [sym_this] = ACTIONS(3319), - [sym_super] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_null] = ACTIONS(3319), - [sym_undefined] = ACTIONS(3319), - [anon_sym_AT] = ACTIONS(3319), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_readonly] = ACTIONS(3319), - [anon_sym_get] = ACTIONS(3319), - [anon_sym_set] = ACTIONS(3319), - [anon_sym_declare] = ACTIONS(3319), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3319), - [anon_sym_module] = ACTIONS(3319), - [anon_sym_any] = ACTIONS(3319), - [anon_sym_number] = ACTIONS(3319), - [anon_sym_boolean] = ACTIONS(3319), - [anon_sym_string] = ACTIONS(3319), - [anon_sym_symbol] = ACTIONS(3319), - [anon_sym_object] = ACTIONS(3319), - [anon_sym_abstract] = ACTIONS(3319), - [anon_sym_interface] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [sym_html_comment] = ACTIONS(5), - }, - [1598] = { - [sym_comment] = STATE(1598), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1599] = { - [sym_comment] = STATE(1599), - [ts_builtin_sym_end] = ACTIONS(3655), - [sym_identifier] = ACTIONS(3409), - [anon_sym_export] = ACTIONS(3409), - [anon_sym_type] = ACTIONS(3409), - [anon_sym_namespace] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_typeof] = ACTIONS(3409), - [anon_sym_import] = ACTIONS(3409), - [anon_sym_with] = ACTIONS(3409), - [anon_sym_var] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_const] = ACTIONS(3409), - [anon_sym_BANG] = ACTIONS(3409), - [anon_sym_else] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_switch] = ACTIONS(3409), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_await] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_break] = ACTIONS(3409), - [anon_sym_continue] = ACTIONS(3409), - [anon_sym_debugger] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_throw] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LTtemplate_GT] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_SQUOTE] = ACTIONS(3409), - [anon_sym_class] = ACTIONS(3409), - [anon_sym_async] = ACTIONS(3409), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_using] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_SLASH] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_void] = ACTIONS(3409), - [anon_sym_delete] = ACTIONS(3409), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3409), - [sym_number] = ACTIONS(3409), - [sym_private_property_identifier] = ACTIONS(3409), - [sym_this] = ACTIONS(3409), - [sym_super] = ACTIONS(3409), - [sym_true] = ACTIONS(3409), - [sym_false] = ACTIONS(3409), - [sym_null] = ACTIONS(3409), - [sym_undefined] = ACTIONS(3409), - [anon_sym_AT] = ACTIONS(3409), - [anon_sym_static] = ACTIONS(3409), - [anon_sym_readonly] = ACTIONS(3409), - [anon_sym_get] = ACTIONS(3409), - [anon_sym_set] = ACTIONS(3409), - [anon_sym_declare] = ACTIONS(3409), - [anon_sym_public] = ACTIONS(3409), - [anon_sym_private] = ACTIONS(3409), - [anon_sym_protected] = ACTIONS(3409), - [anon_sym_override] = ACTIONS(3409), - [anon_sym_module] = ACTIONS(3409), - [anon_sym_any] = ACTIONS(3409), - [anon_sym_number] = ACTIONS(3409), - [anon_sym_boolean] = ACTIONS(3409), - [anon_sym_string] = ACTIONS(3409), - [anon_sym_symbol] = ACTIONS(3409), - [anon_sym_object] = ACTIONS(3409), - [anon_sym_abstract] = ACTIONS(3409), - [anon_sym_interface] = ACTIONS(3409), - [anon_sym_enum] = ACTIONS(3409), - [sym_html_comment] = ACTIONS(5), - }, - [1600] = { - [sym_comment] = STATE(1600), - [ts_builtin_sym_end] = ACTIONS(3657), - [sym_identifier] = ACTIONS(3381), - [anon_sym_export] = ACTIONS(3381), - [anon_sym_type] = ACTIONS(3381), - [anon_sym_namespace] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_typeof] = ACTIONS(3381), - [anon_sym_import] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3381), - [anon_sym_var] = ACTIONS(3381), - [anon_sym_let] = ACTIONS(3381), - [anon_sym_const] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3381), - [anon_sym_else] = ACTIONS(3381), - [anon_sym_if] = ACTIONS(3381), - [anon_sym_switch] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_await] = ACTIONS(3381), - [anon_sym_while] = ACTIONS(3381), - [anon_sym_do] = ACTIONS(3381), - [anon_sym_try] = ACTIONS(3381), - [anon_sym_break] = ACTIONS(3381), - [anon_sym_continue] = ACTIONS(3381), - [anon_sym_debugger] = ACTIONS(3381), - [anon_sym_return] = ACTIONS(3381), - [anon_sym_throw] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LTtemplate_GT] = ACTIONS(3381), - [anon_sym_DQUOTE] = ACTIONS(3381), - [anon_sym_SQUOTE] = ACTIONS(3381), - [anon_sym_class] = ACTIONS(3381), - [anon_sym_async] = ACTIONS(3381), - [anon_sym_function] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3381), - [anon_sym_using] = ACTIONS(3381), - [anon_sym_PLUS] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_SLASH] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_void] = ACTIONS(3381), - [anon_sym_delete] = ACTIONS(3381), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3381), - [sym_number] = ACTIONS(3381), - [sym_private_property_identifier] = ACTIONS(3381), - [sym_this] = ACTIONS(3381), - [sym_super] = ACTIONS(3381), - [sym_true] = ACTIONS(3381), - [sym_false] = ACTIONS(3381), - [sym_null] = ACTIONS(3381), - [sym_undefined] = ACTIONS(3381), - [anon_sym_AT] = ACTIONS(3381), - [anon_sym_static] = ACTIONS(3381), - [anon_sym_readonly] = ACTIONS(3381), - [anon_sym_get] = ACTIONS(3381), - [anon_sym_set] = ACTIONS(3381), - [anon_sym_declare] = ACTIONS(3381), - [anon_sym_public] = ACTIONS(3381), - [anon_sym_private] = ACTIONS(3381), - [anon_sym_protected] = ACTIONS(3381), - [anon_sym_override] = ACTIONS(3381), - [anon_sym_module] = ACTIONS(3381), - [anon_sym_any] = ACTIONS(3381), - [anon_sym_number] = ACTIONS(3381), - [anon_sym_boolean] = ACTIONS(3381), - [anon_sym_string] = ACTIONS(3381), - [anon_sym_symbol] = ACTIONS(3381), - [anon_sym_object] = ACTIONS(3381), - [anon_sym_abstract] = ACTIONS(3381), - [anon_sym_interface] = ACTIONS(3381), - [anon_sym_enum] = ACTIONS(3381), - [sym_html_comment] = ACTIONS(5), - }, - [1601] = { - [sym_comment] = STATE(1601), - [ts_builtin_sym_end] = ACTIONS(3655), - [sym_identifier] = ACTIONS(3409), - [anon_sym_export] = ACTIONS(3409), - [anon_sym_type] = ACTIONS(3409), - [anon_sym_namespace] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_typeof] = ACTIONS(3409), - [anon_sym_import] = ACTIONS(3409), - [anon_sym_with] = ACTIONS(3409), - [anon_sym_var] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_const] = ACTIONS(3409), - [anon_sym_BANG] = ACTIONS(3409), - [anon_sym_else] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_switch] = ACTIONS(3409), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_await] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_break] = ACTIONS(3409), - [anon_sym_continue] = ACTIONS(3409), - [anon_sym_debugger] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_throw] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LTtemplate_GT] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_SQUOTE] = ACTIONS(3409), - [anon_sym_class] = ACTIONS(3409), - [anon_sym_async] = ACTIONS(3409), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_using] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_SLASH] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_void] = ACTIONS(3409), - [anon_sym_delete] = ACTIONS(3409), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3409), - [sym_number] = ACTIONS(3409), - [sym_private_property_identifier] = ACTIONS(3409), - [sym_this] = ACTIONS(3409), - [sym_super] = ACTIONS(3409), - [sym_true] = ACTIONS(3409), - [sym_false] = ACTIONS(3409), - [sym_null] = ACTIONS(3409), - [sym_undefined] = ACTIONS(3409), - [anon_sym_AT] = ACTIONS(3409), - [anon_sym_static] = ACTIONS(3409), - [anon_sym_readonly] = ACTIONS(3409), - [anon_sym_get] = ACTIONS(3409), - [anon_sym_set] = ACTIONS(3409), - [anon_sym_declare] = ACTIONS(3409), - [anon_sym_public] = ACTIONS(3409), - [anon_sym_private] = ACTIONS(3409), - [anon_sym_protected] = ACTIONS(3409), - [anon_sym_override] = ACTIONS(3409), - [anon_sym_module] = ACTIONS(3409), - [anon_sym_any] = ACTIONS(3409), - [anon_sym_number] = ACTIONS(3409), - [anon_sym_boolean] = ACTIONS(3409), - [anon_sym_string] = ACTIONS(3409), - [anon_sym_symbol] = ACTIONS(3409), - [anon_sym_object] = ACTIONS(3409), - [anon_sym_abstract] = ACTIONS(3409), - [anon_sym_interface] = ACTIONS(3409), - [anon_sym_enum] = ACTIONS(3409), - [sym_html_comment] = ACTIONS(5), - }, - [1602] = { - [sym_comment] = STATE(1602), - [ts_builtin_sym_end] = ACTIONS(3659), - [sym_identifier] = ACTIONS(3259), - [anon_sym_export] = ACTIONS(3259), - [anon_sym_type] = ACTIONS(3259), - [anon_sym_namespace] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_RBRACE] = ACTIONS(3259), - [anon_sym_typeof] = ACTIONS(3259), - [anon_sym_import] = ACTIONS(3259), - [anon_sym_with] = ACTIONS(3259), - [anon_sym_var] = ACTIONS(3259), - [anon_sym_let] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_else] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_switch] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3259), - [anon_sym_await] = ACTIONS(3259), - [anon_sym_while] = ACTIONS(3259), - [anon_sym_do] = ACTIONS(3259), - [anon_sym_try] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_debugger] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_throw] = ACTIONS(3259), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_yield] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_LTtemplate_GT] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(3259), - [anon_sym_SQUOTE] = ACTIONS(3259), - [anon_sym_class] = ACTIONS(3259), - [anon_sym_async] = ACTIONS(3259), - [anon_sym_function] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3259), - [anon_sym_using] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_SLASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_void] = ACTIONS(3259), - [anon_sym_delete] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3259), - [sym_number] = ACTIONS(3259), - [sym_private_property_identifier] = ACTIONS(3259), - [sym_this] = ACTIONS(3259), - [sym_super] = ACTIONS(3259), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [sym_null] = ACTIONS(3259), - [sym_undefined] = ACTIONS(3259), - [anon_sym_AT] = ACTIONS(3259), - [anon_sym_static] = ACTIONS(3259), - [anon_sym_readonly] = ACTIONS(3259), - [anon_sym_get] = ACTIONS(3259), - [anon_sym_set] = ACTIONS(3259), - [anon_sym_declare] = ACTIONS(3259), - [anon_sym_public] = ACTIONS(3259), - [anon_sym_private] = ACTIONS(3259), - [anon_sym_protected] = ACTIONS(3259), - [anon_sym_override] = ACTIONS(3259), - [anon_sym_module] = ACTIONS(3259), - [anon_sym_any] = ACTIONS(3259), - [anon_sym_number] = ACTIONS(3259), - [anon_sym_boolean] = ACTIONS(3259), - [anon_sym_string] = ACTIONS(3259), - [anon_sym_symbol] = ACTIONS(3259), - [anon_sym_object] = ACTIONS(3259), - [anon_sym_abstract] = ACTIONS(3259), - [anon_sym_interface] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), - [sym_html_comment] = ACTIONS(5), - }, - [1603] = { - [sym_comment] = STATE(1603), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1604] = { - [sym_comment] = STATE(1604), - [ts_builtin_sym_end] = ACTIONS(3661), - [sym_identifier] = ACTIONS(3257), - [anon_sym_export] = ACTIONS(3257), - [anon_sym_type] = ACTIONS(3257), - [anon_sym_namespace] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_RBRACE] = ACTIONS(3257), - [anon_sym_typeof] = ACTIONS(3257), - [anon_sym_import] = ACTIONS(3257), - [anon_sym_with] = ACTIONS(3257), - [anon_sym_var] = ACTIONS(3257), - [anon_sym_let] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_else] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_switch] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_await] = ACTIONS(3257), - [anon_sym_while] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_try] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_debugger] = ACTIONS(3257), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_throw] = ACTIONS(3257), - [anon_sym_SEMI] = ACTIONS(3257), - [anon_sym_yield] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_LTtemplate_GT] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3257), - [anon_sym_class] = ACTIONS(3257), - [anon_sym_async] = ACTIONS(3257), - [anon_sym_function] = ACTIONS(3257), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_using] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_SLASH] = ACTIONS(3257), - [anon_sym_LT] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_void] = ACTIONS(3257), - [anon_sym_delete] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3257), - [sym_number] = ACTIONS(3257), - [sym_private_property_identifier] = ACTIONS(3257), - [sym_this] = ACTIONS(3257), - [sym_super] = ACTIONS(3257), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [sym_null] = ACTIONS(3257), - [sym_undefined] = ACTIONS(3257), - [anon_sym_AT] = ACTIONS(3257), - [anon_sym_static] = ACTIONS(3257), - [anon_sym_readonly] = ACTIONS(3257), - [anon_sym_get] = ACTIONS(3257), - [anon_sym_set] = ACTIONS(3257), - [anon_sym_declare] = ACTIONS(3257), - [anon_sym_public] = ACTIONS(3257), - [anon_sym_private] = ACTIONS(3257), - [anon_sym_protected] = ACTIONS(3257), - [anon_sym_override] = ACTIONS(3257), - [anon_sym_module] = ACTIONS(3257), - [anon_sym_any] = ACTIONS(3257), - [anon_sym_number] = ACTIONS(3257), - [anon_sym_boolean] = ACTIONS(3257), - [anon_sym_string] = ACTIONS(3257), - [anon_sym_symbol] = ACTIONS(3257), - [anon_sym_object] = ACTIONS(3257), - [anon_sym_abstract] = ACTIONS(3257), - [anon_sym_interface] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), - [sym_html_comment] = ACTIONS(5), - }, - [1605] = { - [sym_comment] = STATE(1605), - [ts_builtin_sym_end] = ACTIONS(3663), - [sym_identifier] = ACTIONS(3253), - [anon_sym_export] = ACTIONS(3253), - [anon_sym_type] = ACTIONS(3253), - [anon_sym_namespace] = ACTIONS(3253), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_RBRACE] = ACTIONS(3253), - [anon_sym_typeof] = ACTIONS(3253), - [anon_sym_import] = ACTIONS(3253), - [anon_sym_with] = ACTIONS(3253), - [anon_sym_var] = ACTIONS(3253), - [anon_sym_let] = ACTIONS(3253), - [anon_sym_const] = ACTIONS(3253), - [anon_sym_BANG] = ACTIONS(3253), - [anon_sym_else] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_switch] = ACTIONS(3253), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_LPAREN] = ACTIONS(3253), - [anon_sym_await] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_break] = ACTIONS(3253), - [anon_sym_continue] = ACTIONS(3253), - [anon_sym_debugger] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_throw] = ACTIONS(3253), - [anon_sym_SEMI] = ACTIONS(3253), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_LTtemplate_GT] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [anon_sym_SQUOTE] = ACTIONS(3253), - [anon_sym_class] = ACTIONS(3253), - [anon_sym_async] = ACTIONS(3253), - [anon_sym_function] = ACTIONS(3253), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_using] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_SLASH] = ACTIONS(3253), - [anon_sym_LT] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_void] = ACTIONS(3253), - [anon_sym_delete] = ACTIONS(3253), - [anon_sym_PLUS_PLUS] = ACTIONS(3253), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3253), - [sym_number] = ACTIONS(3253), - [sym_private_property_identifier] = ACTIONS(3253), - [sym_this] = ACTIONS(3253), - [sym_super] = ACTIONS(3253), - [sym_true] = ACTIONS(3253), - [sym_false] = ACTIONS(3253), - [sym_null] = ACTIONS(3253), - [sym_undefined] = ACTIONS(3253), - [anon_sym_AT] = ACTIONS(3253), - [anon_sym_static] = ACTIONS(3253), - [anon_sym_readonly] = ACTIONS(3253), - [anon_sym_get] = ACTIONS(3253), - [anon_sym_set] = ACTIONS(3253), - [anon_sym_declare] = ACTIONS(3253), - [anon_sym_public] = ACTIONS(3253), - [anon_sym_private] = ACTIONS(3253), - [anon_sym_protected] = ACTIONS(3253), - [anon_sym_override] = ACTIONS(3253), - [anon_sym_module] = ACTIONS(3253), - [anon_sym_any] = ACTIONS(3253), - [anon_sym_number] = ACTIONS(3253), - [anon_sym_boolean] = ACTIONS(3253), - [anon_sym_string] = ACTIONS(3253), - [anon_sym_symbol] = ACTIONS(3253), - [anon_sym_object] = ACTIONS(3253), - [anon_sym_abstract] = ACTIONS(3253), - [anon_sym_interface] = ACTIONS(3253), - [anon_sym_enum] = ACTIONS(3253), - [sym_html_comment] = ACTIONS(5), - }, - [1606] = { - [sym_comment] = STATE(1606), - [ts_builtin_sym_end] = ACTIONS(3665), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_else] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [sym_html_comment] = ACTIONS(5), - }, - [1607] = { - [sym_comment] = STATE(1607), - [ts_builtin_sym_end] = ACTIONS(3265), - [sym_identifier] = ACTIONS(3203), - [anon_sym_export] = ACTIONS(3203), - [anon_sym_type] = ACTIONS(3203), - [anon_sym_namespace] = ACTIONS(3203), - [anon_sym_LBRACE] = ACTIONS(3203), - [anon_sym_RBRACE] = ACTIONS(3203), - [anon_sym_typeof] = ACTIONS(3203), - [anon_sym_import] = ACTIONS(3203), - [anon_sym_with] = ACTIONS(3203), - [anon_sym_var] = ACTIONS(3203), - [anon_sym_let] = ACTIONS(3203), - [anon_sym_const] = ACTIONS(3203), - [anon_sym_BANG] = ACTIONS(3203), - [anon_sym_if] = ACTIONS(3203), - [anon_sym_switch] = ACTIONS(3203), - [anon_sym_for] = ACTIONS(3203), - [anon_sym_LPAREN] = ACTIONS(3203), - [anon_sym_await] = ACTIONS(3203), - [anon_sym_while] = ACTIONS(3203), - [anon_sym_do] = ACTIONS(3203), - [anon_sym_try] = ACTIONS(3203), - [anon_sym_break] = ACTIONS(3203), - [anon_sym_continue] = ACTIONS(3203), - [anon_sym_debugger] = ACTIONS(3203), - [anon_sym_return] = ACTIONS(3203), - [anon_sym_throw] = ACTIONS(3203), - [anon_sym_SEMI] = ACTIONS(3667), - [anon_sym_yield] = ACTIONS(3203), - [anon_sym_LBRACK] = ACTIONS(3203), - [anon_sym_LTtemplate_GT] = ACTIONS(3203), - [anon_sym_DQUOTE] = ACTIONS(3203), - [anon_sym_SQUOTE] = ACTIONS(3203), - [anon_sym_class] = ACTIONS(3203), - [anon_sym_async] = ACTIONS(3203), - [anon_sym_function] = ACTIONS(3203), - [anon_sym_new] = ACTIONS(3203), - [anon_sym_using] = ACTIONS(3203), - [anon_sym_PLUS] = ACTIONS(3203), - [anon_sym_DASH] = ACTIONS(3203), - [anon_sym_SLASH] = ACTIONS(3203), - [anon_sym_LT] = ACTIONS(3203), - [anon_sym_TILDE] = ACTIONS(3203), - [anon_sym_void] = ACTIONS(3203), - [anon_sym_delete] = ACTIONS(3203), - [anon_sym_PLUS_PLUS] = ACTIONS(3203), - [anon_sym_DASH_DASH] = ACTIONS(3203), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3203), - [sym_number] = ACTIONS(3203), - [sym_private_property_identifier] = ACTIONS(3203), - [sym_this] = ACTIONS(3203), - [sym_super] = ACTIONS(3203), - [sym_true] = ACTIONS(3203), - [sym_false] = ACTIONS(3203), - [sym_null] = ACTIONS(3203), - [sym_undefined] = ACTIONS(3203), - [anon_sym_AT] = ACTIONS(3203), - [anon_sym_static] = ACTIONS(3203), - [anon_sym_readonly] = ACTIONS(3203), - [anon_sym_get] = ACTIONS(3203), - [anon_sym_set] = ACTIONS(3203), - [anon_sym_declare] = ACTIONS(3203), - [anon_sym_public] = ACTIONS(3203), - [anon_sym_private] = ACTIONS(3203), - [anon_sym_protected] = ACTIONS(3203), - [anon_sym_override] = ACTIONS(3203), - [anon_sym_module] = ACTIONS(3203), - [anon_sym_any] = ACTIONS(3203), - [anon_sym_number] = ACTIONS(3203), - [anon_sym_boolean] = ACTIONS(3203), - [anon_sym_string] = ACTIONS(3203), - [anon_sym_symbol] = ACTIONS(3203), - [anon_sym_object] = ACTIONS(3203), - [anon_sym_abstract] = ACTIONS(3203), - [anon_sym_interface] = ACTIONS(3203), - [anon_sym_enum] = ACTIONS(3203), - [sym__automatic_semicolon] = ACTIONS(3669), - [sym_html_comment] = ACTIONS(5), - }, - [1608] = { - [sym_comment] = STATE(1608), - [ts_builtin_sym_end] = ACTIONS(3671), - [sym_identifier] = ACTIONS(3423), - [anon_sym_export] = ACTIONS(3423), - [anon_sym_type] = ACTIONS(3423), - [anon_sym_namespace] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_RBRACE] = ACTIONS(3423), - [anon_sym_typeof] = ACTIONS(3423), - [anon_sym_import] = ACTIONS(3423), - [anon_sym_with] = ACTIONS(3423), - [anon_sym_var] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_BANG] = ACTIONS(3423), - [anon_sym_else] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_switch] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_await] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_break] = ACTIONS(3423), - [anon_sym_continue] = ACTIONS(3423), - [anon_sym_debugger] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_throw] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LTtemplate_GT] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_SQUOTE] = ACTIONS(3423), - [anon_sym_class] = ACTIONS(3423), - [anon_sym_async] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_using] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3423), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_TILDE] = ACTIONS(3423), - [anon_sym_void] = ACTIONS(3423), - [anon_sym_delete] = ACTIONS(3423), - [anon_sym_PLUS_PLUS] = ACTIONS(3423), - [anon_sym_DASH_DASH] = ACTIONS(3423), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3423), - [sym_number] = ACTIONS(3423), - [sym_private_property_identifier] = ACTIONS(3423), - [sym_this] = ACTIONS(3423), - [sym_super] = ACTIONS(3423), - [sym_true] = ACTIONS(3423), - [sym_false] = ACTIONS(3423), - [sym_null] = ACTIONS(3423), - [sym_undefined] = ACTIONS(3423), - [anon_sym_AT] = ACTIONS(3423), - [anon_sym_static] = ACTIONS(3423), - [anon_sym_readonly] = ACTIONS(3423), - [anon_sym_get] = ACTIONS(3423), - [anon_sym_set] = ACTIONS(3423), - [anon_sym_declare] = ACTIONS(3423), - [anon_sym_public] = ACTIONS(3423), - [anon_sym_private] = ACTIONS(3423), - [anon_sym_protected] = ACTIONS(3423), - [anon_sym_override] = ACTIONS(3423), - [anon_sym_module] = ACTIONS(3423), - [anon_sym_any] = ACTIONS(3423), - [anon_sym_number] = ACTIONS(3423), - [anon_sym_boolean] = ACTIONS(3423), - [anon_sym_string] = ACTIONS(3423), - [anon_sym_symbol] = ACTIONS(3423), - [anon_sym_object] = ACTIONS(3423), - [anon_sym_abstract] = ACTIONS(3423), - [anon_sym_interface] = ACTIONS(3423), - [anon_sym_enum] = ACTIONS(3423), - [sym_html_comment] = ACTIONS(5), - }, - [1609] = { - [sym_comment] = STATE(1609), - [sym_identifier] = ACTIONS(3271), - [anon_sym_export] = ACTIONS(3271), - [anon_sym_default] = ACTIONS(3271), - [anon_sym_type] = ACTIONS(3271), - [anon_sym_namespace] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_RBRACE] = ACTIONS(3271), - [anon_sym_typeof] = ACTIONS(3271), - [anon_sym_import] = ACTIONS(3271), - [anon_sym_with] = ACTIONS(3271), - [anon_sym_var] = ACTIONS(3271), - [anon_sym_let] = ACTIONS(3271), - [anon_sym_const] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_switch] = ACTIONS(3271), - [anon_sym_for] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_await] = ACTIONS(3271), - [anon_sym_while] = ACTIONS(3271), - [anon_sym_do] = ACTIONS(3271), - [anon_sym_try] = ACTIONS(3271), - [anon_sym_break] = ACTIONS(3271), - [anon_sym_continue] = ACTIONS(3271), - [anon_sym_debugger] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3271), - [anon_sym_throw] = ACTIONS(3271), - [anon_sym_SEMI] = ACTIONS(3271), - [anon_sym_case] = ACTIONS(3271), - [anon_sym_yield] = ACTIONS(3271), - [anon_sym_LBRACK] = ACTIONS(3271), - [anon_sym_LTtemplate_GT] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3271), - [anon_sym_SQUOTE] = ACTIONS(3271), - [anon_sym_class] = ACTIONS(3271), - [anon_sym_async] = ACTIONS(3271), - [anon_sym_function] = ACTIONS(3271), - [anon_sym_new] = ACTIONS(3271), - [anon_sym_using] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(3271), - [anon_sym_SLASH] = ACTIONS(3271), - [anon_sym_LT] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_void] = ACTIONS(3271), - [anon_sym_delete] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3271), - [sym_number] = ACTIONS(3271), - [sym_private_property_identifier] = ACTIONS(3271), - [sym_this] = ACTIONS(3271), - [sym_super] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_null] = ACTIONS(3271), - [sym_undefined] = ACTIONS(3271), - [anon_sym_AT] = ACTIONS(3271), - [anon_sym_static] = ACTIONS(3271), - [anon_sym_readonly] = ACTIONS(3271), - [anon_sym_get] = ACTIONS(3271), - [anon_sym_set] = ACTIONS(3271), - [anon_sym_declare] = ACTIONS(3271), - [anon_sym_public] = ACTIONS(3271), - [anon_sym_private] = ACTIONS(3271), - [anon_sym_protected] = ACTIONS(3271), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3271), - [anon_sym_any] = ACTIONS(3271), - [anon_sym_number] = ACTIONS(3271), - [anon_sym_boolean] = ACTIONS(3271), - [anon_sym_string] = ACTIONS(3271), - [anon_sym_symbol] = ACTIONS(3271), - [anon_sym_object] = ACTIONS(3271), - [anon_sym_abstract] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3271), - [anon_sym_enum] = ACTIONS(3271), - [sym_html_comment] = ACTIONS(5), - }, - [1610] = { - [sym_comment] = STATE(1610), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_default] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_case] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1611] = { - [sym_comment] = STATE(1611), - [ts_builtin_sym_end] = ACTIONS(3673), - [sym_identifier] = ACTIONS(3425), - [anon_sym_export] = ACTIONS(3425), - [anon_sym_type] = ACTIONS(3425), - [anon_sym_namespace] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_RBRACE] = ACTIONS(3425), - [anon_sym_typeof] = ACTIONS(3425), - [anon_sym_import] = ACTIONS(3425), - [anon_sym_with] = ACTIONS(3425), - [anon_sym_var] = ACTIONS(3425), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_const] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_else] = ACTIONS(3425), - [anon_sym_if] = ACTIONS(3425), - [anon_sym_switch] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_await] = ACTIONS(3425), - [anon_sym_while] = ACTIONS(3425), - [anon_sym_do] = ACTIONS(3425), - [anon_sym_try] = ACTIONS(3425), - [anon_sym_break] = ACTIONS(3425), - [anon_sym_continue] = ACTIONS(3425), - [anon_sym_debugger] = ACTIONS(3425), - [anon_sym_return] = ACTIONS(3425), - [anon_sym_throw] = ACTIONS(3425), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_LTtemplate_GT] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(3425), - [anon_sym_SQUOTE] = ACTIONS(3425), - [anon_sym_class] = ACTIONS(3425), - [anon_sym_async] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3425), - [anon_sym_using] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_SLASH] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_void] = ACTIONS(3425), - [anon_sym_delete] = ACTIONS(3425), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_DASH_DASH] = ACTIONS(3425), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3425), - [sym_number] = ACTIONS(3425), - [sym_private_property_identifier] = ACTIONS(3425), - [sym_this] = ACTIONS(3425), - [sym_super] = ACTIONS(3425), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [sym_null] = ACTIONS(3425), - [sym_undefined] = ACTIONS(3425), - [anon_sym_AT] = ACTIONS(3425), - [anon_sym_static] = ACTIONS(3425), - [anon_sym_readonly] = ACTIONS(3425), - [anon_sym_get] = ACTIONS(3425), - [anon_sym_set] = ACTIONS(3425), - [anon_sym_declare] = ACTIONS(3425), - [anon_sym_public] = ACTIONS(3425), - [anon_sym_private] = ACTIONS(3425), - [anon_sym_protected] = ACTIONS(3425), - [anon_sym_override] = ACTIONS(3425), - [anon_sym_module] = ACTIONS(3425), - [anon_sym_any] = ACTIONS(3425), - [anon_sym_number] = ACTIONS(3425), - [anon_sym_boolean] = ACTIONS(3425), - [anon_sym_string] = ACTIONS(3425), - [anon_sym_symbol] = ACTIONS(3425), - [anon_sym_object] = ACTIONS(3425), - [anon_sym_abstract] = ACTIONS(3425), - [anon_sym_interface] = ACTIONS(3425), - [anon_sym_enum] = ACTIONS(3425), - [sym_html_comment] = ACTIONS(5), - }, - [1612] = { - [sym_comment] = STATE(1612), - [ts_builtin_sym_end] = ACTIONS(3261), - [sym_identifier] = ACTIONS(3209), - [anon_sym_export] = ACTIONS(3209), - [anon_sym_type] = ACTIONS(3209), - [anon_sym_namespace] = ACTIONS(3209), - [anon_sym_LBRACE] = ACTIONS(3209), - [anon_sym_RBRACE] = ACTIONS(3209), - [anon_sym_typeof] = ACTIONS(3209), - [anon_sym_import] = ACTIONS(3209), - [anon_sym_with] = ACTIONS(3209), - [anon_sym_var] = ACTIONS(3209), - [anon_sym_let] = ACTIONS(3209), - [anon_sym_const] = ACTIONS(3209), - [anon_sym_BANG] = ACTIONS(3209), - [anon_sym_if] = ACTIONS(3209), - [anon_sym_switch] = ACTIONS(3209), - [anon_sym_for] = ACTIONS(3209), - [anon_sym_LPAREN] = ACTIONS(3209), - [anon_sym_await] = ACTIONS(3209), - [anon_sym_while] = ACTIONS(3209), - [anon_sym_do] = ACTIONS(3209), - [anon_sym_try] = ACTIONS(3209), - [anon_sym_break] = ACTIONS(3209), - [anon_sym_continue] = ACTIONS(3209), - [anon_sym_debugger] = ACTIONS(3209), - [anon_sym_return] = ACTIONS(3209), - [anon_sym_throw] = ACTIONS(3209), - [anon_sym_SEMI] = ACTIONS(3209), - [anon_sym_finally] = ACTIONS(3209), - [anon_sym_yield] = ACTIONS(3209), - [anon_sym_LBRACK] = ACTIONS(3209), - [anon_sym_LTtemplate_GT] = ACTIONS(3209), - [anon_sym_DQUOTE] = ACTIONS(3209), - [anon_sym_SQUOTE] = ACTIONS(3209), - [anon_sym_class] = ACTIONS(3209), - [anon_sym_async] = ACTIONS(3209), - [anon_sym_function] = ACTIONS(3209), - [anon_sym_new] = ACTIONS(3209), - [anon_sym_using] = ACTIONS(3209), - [anon_sym_PLUS] = ACTIONS(3209), - [anon_sym_DASH] = ACTIONS(3209), - [anon_sym_SLASH] = ACTIONS(3209), - [anon_sym_LT] = ACTIONS(3209), - [anon_sym_TILDE] = ACTIONS(3209), - [anon_sym_void] = ACTIONS(3209), - [anon_sym_delete] = ACTIONS(3209), - [anon_sym_PLUS_PLUS] = ACTIONS(3209), - [anon_sym_DASH_DASH] = ACTIONS(3209), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3209), - [sym_number] = ACTIONS(3209), - [sym_private_property_identifier] = ACTIONS(3209), - [sym_this] = ACTIONS(3209), - [sym_super] = ACTIONS(3209), - [sym_true] = ACTIONS(3209), - [sym_false] = ACTIONS(3209), - [sym_null] = ACTIONS(3209), - [sym_undefined] = ACTIONS(3209), - [anon_sym_AT] = ACTIONS(3209), - [anon_sym_static] = ACTIONS(3209), - [anon_sym_readonly] = ACTIONS(3209), - [anon_sym_get] = ACTIONS(3209), - [anon_sym_set] = ACTIONS(3209), - [anon_sym_declare] = ACTIONS(3209), - [anon_sym_public] = ACTIONS(3209), - [anon_sym_private] = ACTIONS(3209), - [anon_sym_protected] = ACTIONS(3209), - [anon_sym_override] = ACTIONS(3209), - [anon_sym_module] = ACTIONS(3209), - [anon_sym_any] = ACTIONS(3209), - [anon_sym_number] = ACTIONS(3209), - [anon_sym_boolean] = ACTIONS(3209), - [anon_sym_string] = ACTIONS(3209), - [anon_sym_symbol] = ACTIONS(3209), - [anon_sym_object] = ACTIONS(3209), - [anon_sym_abstract] = ACTIONS(3209), - [anon_sym_interface] = ACTIONS(3209), - [anon_sym_enum] = ACTIONS(3209), - [sym_html_comment] = ACTIONS(5), - }, - [1613] = { - [sym_comment] = STATE(1613), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_default] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_case] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym_html_comment] = ACTIONS(5), - }, - [1614] = { - [sym_comment] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(3675), - [sym_identifier] = ACTIONS(3427), - [anon_sym_export] = ACTIONS(3427), - [anon_sym_type] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_RBRACE] = ACTIONS(3427), - [anon_sym_typeof] = ACTIONS(3427), - [anon_sym_import] = ACTIONS(3427), - [anon_sym_with] = ACTIONS(3427), - [anon_sym_var] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_else] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_switch] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_await] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_debugger] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_throw] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3427), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LTtemplate_GT] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_SQUOTE] = ACTIONS(3427), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_async] = ACTIONS(3427), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_SLASH] = ACTIONS(3427), - [anon_sym_LT] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3427), - [anon_sym_void] = ACTIONS(3427), - [anon_sym_delete] = ACTIONS(3427), - [anon_sym_PLUS_PLUS] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3427), - [sym_number] = ACTIONS(3427), - [sym_private_property_identifier] = ACTIONS(3427), - [sym_this] = ACTIONS(3427), - [sym_super] = ACTIONS(3427), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [sym_null] = ACTIONS(3427), - [sym_undefined] = ACTIONS(3427), - [anon_sym_AT] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_readonly] = ACTIONS(3427), - [anon_sym_get] = ACTIONS(3427), - [anon_sym_set] = ACTIONS(3427), - [anon_sym_declare] = ACTIONS(3427), - [anon_sym_public] = ACTIONS(3427), - [anon_sym_private] = ACTIONS(3427), - [anon_sym_protected] = ACTIONS(3427), - [anon_sym_override] = ACTIONS(3427), - [anon_sym_module] = ACTIONS(3427), - [anon_sym_any] = ACTIONS(3427), - [anon_sym_number] = ACTIONS(3427), - [anon_sym_boolean] = ACTIONS(3427), - [anon_sym_string] = ACTIONS(3427), - [anon_sym_symbol] = ACTIONS(3427), - [anon_sym_object] = ACTIONS(3427), - [anon_sym_abstract] = ACTIONS(3427), - [anon_sym_interface] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), - [sym_html_comment] = ACTIONS(5), - }, - [1615] = { - [sym_comment] = STATE(1615), - [ts_builtin_sym_end] = ACTIONS(3509), - [sym_identifier] = ACTIONS(3351), - [anon_sym_export] = ACTIONS(3351), - [anon_sym_type] = ACTIONS(3351), - [anon_sym_namespace] = ACTIONS(3351), - [anon_sym_LBRACE] = ACTIONS(3351), - [anon_sym_RBRACE] = ACTIONS(3351), - [anon_sym_typeof] = ACTIONS(3351), - [anon_sym_import] = ACTIONS(3351), - [anon_sym_with] = ACTIONS(3351), - [anon_sym_var] = ACTIONS(3351), - [anon_sym_let] = ACTIONS(3351), - [anon_sym_const] = ACTIONS(3351), - [anon_sym_BANG] = ACTIONS(3351), - [anon_sym_if] = ACTIONS(3351), - [anon_sym_switch] = ACTIONS(3351), - [anon_sym_for] = ACTIONS(3351), - [anon_sym_LPAREN] = ACTIONS(3351), - [anon_sym_await] = ACTIONS(3351), - [anon_sym_while] = ACTIONS(3351), - [anon_sym_do] = ACTIONS(3351), - [anon_sym_try] = ACTIONS(3351), - [anon_sym_break] = ACTIONS(3351), - [anon_sym_continue] = ACTIONS(3351), - [anon_sym_debugger] = ACTIONS(3351), - [anon_sym_return] = ACTIONS(3351), - [anon_sym_throw] = ACTIONS(3351), - [anon_sym_SEMI] = ACTIONS(3351), - [anon_sym_yield] = ACTIONS(3351), - [anon_sym_LBRACK] = ACTIONS(3351), - [anon_sym_LTtemplate_GT] = ACTIONS(3351), - [anon_sym_DQUOTE] = ACTIONS(3351), - [anon_sym_SQUOTE] = ACTIONS(3351), - [anon_sym_class] = ACTIONS(3351), - [anon_sym_async] = ACTIONS(3351), - [anon_sym_function] = ACTIONS(3351), - [anon_sym_new] = ACTIONS(3351), - [anon_sym_using] = ACTIONS(3351), - [anon_sym_PLUS] = ACTIONS(3351), - [anon_sym_DASH] = ACTIONS(3351), - [anon_sym_SLASH] = ACTIONS(3351), - [anon_sym_LT] = ACTIONS(3351), - [anon_sym_TILDE] = ACTIONS(3351), - [anon_sym_void] = ACTIONS(3351), - [anon_sym_delete] = ACTIONS(3351), - [anon_sym_PLUS_PLUS] = ACTIONS(3351), - [anon_sym_DASH_DASH] = ACTIONS(3351), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3351), - [sym_number] = ACTIONS(3351), - [sym_private_property_identifier] = ACTIONS(3351), - [sym_this] = ACTIONS(3351), - [sym_super] = ACTIONS(3351), - [sym_true] = ACTIONS(3351), - [sym_false] = ACTIONS(3351), - [sym_null] = ACTIONS(3351), - [sym_undefined] = ACTIONS(3351), - [anon_sym_AT] = ACTIONS(3351), - [anon_sym_static] = ACTIONS(3351), - [anon_sym_readonly] = ACTIONS(3351), - [anon_sym_get] = ACTIONS(3351), - [anon_sym_set] = ACTIONS(3351), - [anon_sym_declare] = ACTIONS(3351), - [anon_sym_public] = ACTIONS(3351), - [anon_sym_private] = ACTIONS(3351), - [anon_sym_protected] = ACTIONS(3351), - [anon_sym_override] = ACTIONS(3351), - [anon_sym_module] = ACTIONS(3351), - [anon_sym_any] = ACTIONS(3351), - [anon_sym_number] = ACTIONS(3351), - [anon_sym_boolean] = ACTIONS(3351), - [anon_sym_string] = ACTIONS(3351), - [anon_sym_symbol] = ACTIONS(3351), - [anon_sym_object] = ACTIONS(3351), - [anon_sym_abstract] = ACTIONS(3351), - [anon_sym_interface] = ACTIONS(3351), - [anon_sym_enum] = ACTIONS(3351), - [sym_html_comment] = ACTIONS(5), - }, - [1616] = { - [sym_comment] = STATE(1616), - [ts_builtin_sym_end] = ACTIONS(3529), - [sym_identifier] = ACTIONS(3461), - [anon_sym_export] = ACTIONS(3461), - [anon_sym_type] = ACTIONS(3461), - [anon_sym_namespace] = ACTIONS(3461), - [anon_sym_LBRACE] = ACTIONS(3461), - [anon_sym_RBRACE] = ACTIONS(3461), - [anon_sym_typeof] = ACTIONS(3461), - [anon_sym_import] = ACTIONS(3461), - [anon_sym_with] = ACTIONS(3461), - [anon_sym_var] = ACTIONS(3461), - [anon_sym_let] = ACTIONS(3461), - [anon_sym_const] = ACTIONS(3461), - [anon_sym_BANG] = ACTIONS(3461), - [anon_sym_if] = ACTIONS(3461), - [anon_sym_switch] = ACTIONS(3461), - [anon_sym_for] = ACTIONS(3461), - [anon_sym_LPAREN] = ACTIONS(3461), - [anon_sym_await] = ACTIONS(3461), - [anon_sym_while] = ACTIONS(3461), - [anon_sym_do] = ACTIONS(3461), - [anon_sym_try] = ACTIONS(3461), - [anon_sym_break] = ACTIONS(3461), - [anon_sym_continue] = ACTIONS(3461), - [anon_sym_debugger] = ACTIONS(3461), - [anon_sym_return] = ACTIONS(3461), - [anon_sym_throw] = ACTIONS(3461), - [anon_sym_SEMI] = ACTIONS(3461), - [anon_sym_yield] = ACTIONS(3461), - [anon_sym_LBRACK] = ACTIONS(3461), - [anon_sym_LTtemplate_GT] = ACTIONS(3461), - [anon_sym_DQUOTE] = ACTIONS(3461), - [anon_sym_SQUOTE] = ACTIONS(3461), - [anon_sym_class] = ACTIONS(3461), - [anon_sym_async] = ACTIONS(3461), - [anon_sym_function] = ACTIONS(3461), - [anon_sym_new] = ACTIONS(3461), - [anon_sym_using] = ACTIONS(3461), - [anon_sym_PLUS] = ACTIONS(3461), - [anon_sym_DASH] = ACTIONS(3461), - [anon_sym_SLASH] = ACTIONS(3461), - [anon_sym_LT] = ACTIONS(3461), - [anon_sym_TILDE] = ACTIONS(3461), - [anon_sym_void] = ACTIONS(3461), - [anon_sym_delete] = ACTIONS(3461), - [anon_sym_PLUS_PLUS] = ACTIONS(3461), - [anon_sym_DASH_DASH] = ACTIONS(3461), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3461), - [sym_number] = ACTIONS(3461), - [sym_private_property_identifier] = ACTIONS(3461), - [sym_this] = ACTIONS(3461), - [sym_super] = ACTIONS(3461), - [sym_true] = ACTIONS(3461), - [sym_false] = ACTIONS(3461), - [sym_null] = ACTIONS(3461), - [sym_undefined] = ACTIONS(3461), - [anon_sym_AT] = ACTIONS(3461), - [anon_sym_static] = ACTIONS(3461), - [anon_sym_readonly] = ACTIONS(3461), - [anon_sym_get] = ACTIONS(3461), - [anon_sym_set] = ACTIONS(3461), - [anon_sym_declare] = ACTIONS(3461), - [anon_sym_public] = ACTIONS(3461), - [anon_sym_private] = ACTIONS(3461), - [anon_sym_protected] = ACTIONS(3461), - [anon_sym_override] = ACTIONS(3461), - [anon_sym_module] = ACTIONS(3461), - [anon_sym_any] = ACTIONS(3461), - [anon_sym_number] = ACTIONS(3461), - [anon_sym_boolean] = ACTIONS(3461), - [anon_sym_string] = ACTIONS(3461), - [anon_sym_symbol] = ACTIONS(3461), - [anon_sym_object] = ACTIONS(3461), - [anon_sym_abstract] = ACTIONS(3461), - [anon_sym_interface] = ACTIONS(3461), - [anon_sym_enum] = ACTIONS(3461), - [sym_html_comment] = ACTIONS(5), - }, - [1617] = { - [sym_comment] = STATE(1617), - [ts_builtin_sym_end] = ACTIONS(3575), - [sym_identifier] = ACTIONS(3403), - [anon_sym_export] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_namespace] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_typeof] = ACTIONS(3403), - [anon_sym_import] = ACTIONS(3403), - [anon_sym_with] = ACTIONS(3403), - [anon_sym_var] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_switch] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_await] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_debugger] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_throw] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LTtemplate_GT] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_class] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_using] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_void] = ACTIONS(3403), - [anon_sym_delete] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(3403), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3403), - [sym_number] = ACTIONS(3403), - [sym_private_property_identifier] = ACTIONS(3403), - [sym_this] = ACTIONS(3403), - [sym_super] = ACTIONS(3403), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [sym_null] = ACTIONS(3403), - [sym_undefined] = ACTIONS(3403), - [anon_sym_AT] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3403), - [anon_sym_readonly] = ACTIONS(3403), - [anon_sym_get] = ACTIONS(3403), - [anon_sym_set] = ACTIONS(3403), - [anon_sym_declare] = ACTIONS(3403), - [anon_sym_public] = ACTIONS(3403), - [anon_sym_private] = ACTIONS(3403), - [anon_sym_protected] = ACTIONS(3403), - [anon_sym_override] = ACTIONS(3403), - [anon_sym_module] = ACTIONS(3403), - [anon_sym_any] = ACTIONS(3403), - [anon_sym_number] = ACTIONS(3403), - [anon_sym_boolean] = ACTIONS(3403), - [anon_sym_string] = ACTIONS(3403), - [anon_sym_symbol] = ACTIONS(3403), - [anon_sym_object] = ACTIONS(3403), - [anon_sym_abstract] = ACTIONS(3403), - [anon_sym_interface] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), - [sym_html_comment] = ACTIONS(5), - }, - [1618] = { - [sym_comment] = STATE(1618), - [ts_builtin_sym_end] = ACTIONS(3575), - [sym_identifier] = ACTIONS(3403), - [anon_sym_export] = ACTIONS(3403), - [anon_sym_type] = ACTIONS(3403), - [anon_sym_namespace] = ACTIONS(3403), - [anon_sym_LBRACE] = ACTIONS(3403), - [anon_sym_RBRACE] = ACTIONS(3403), - [anon_sym_typeof] = ACTIONS(3403), - [anon_sym_import] = ACTIONS(3403), - [anon_sym_with] = ACTIONS(3403), - [anon_sym_var] = ACTIONS(3403), - [anon_sym_let] = ACTIONS(3403), - [anon_sym_const] = ACTIONS(3403), - [anon_sym_BANG] = ACTIONS(3403), - [anon_sym_if] = ACTIONS(3403), - [anon_sym_switch] = ACTIONS(3403), - [anon_sym_for] = ACTIONS(3403), - [anon_sym_LPAREN] = ACTIONS(3403), - [anon_sym_await] = ACTIONS(3403), - [anon_sym_while] = ACTIONS(3403), - [anon_sym_do] = ACTIONS(3403), - [anon_sym_try] = ACTIONS(3403), - [anon_sym_break] = ACTIONS(3403), - [anon_sym_continue] = ACTIONS(3403), - [anon_sym_debugger] = ACTIONS(3403), - [anon_sym_return] = ACTIONS(3403), - [anon_sym_throw] = ACTIONS(3403), - [anon_sym_SEMI] = ACTIONS(3403), - [anon_sym_yield] = ACTIONS(3403), - [anon_sym_LBRACK] = ACTIONS(3403), - [anon_sym_LTtemplate_GT] = ACTIONS(3403), - [anon_sym_DQUOTE] = ACTIONS(3403), - [anon_sym_SQUOTE] = ACTIONS(3403), - [anon_sym_class] = ACTIONS(3403), - [anon_sym_async] = ACTIONS(3403), - [anon_sym_function] = ACTIONS(3403), - [anon_sym_new] = ACTIONS(3403), - [anon_sym_using] = ACTIONS(3403), - [anon_sym_PLUS] = ACTIONS(3403), - [anon_sym_DASH] = ACTIONS(3403), - [anon_sym_SLASH] = ACTIONS(3403), - [anon_sym_LT] = ACTIONS(3403), - [anon_sym_TILDE] = ACTIONS(3403), - [anon_sym_void] = ACTIONS(3403), - [anon_sym_delete] = ACTIONS(3403), - [anon_sym_PLUS_PLUS] = ACTIONS(3403), - [anon_sym_DASH_DASH] = ACTIONS(3403), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3403), - [sym_number] = ACTIONS(3403), - [sym_private_property_identifier] = ACTIONS(3403), - [sym_this] = ACTIONS(3403), - [sym_super] = ACTIONS(3403), - [sym_true] = ACTIONS(3403), - [sym_false] = ACTIONS(3403), - [sym_null] = ACTIONS(3403), - [sym_undefined] = ACTIONS(3403), - [anon_sym_AT] = ACTIONS(3403), - [anon_sym_static] = ACTIONS(3403), - [anon_sym_readonly] = ACTIONS(3403), - [anon_sym_get] = ACTIONS(3403), - [anon_sym_set] = ACTIONS(3403), - [anon_sym_declare] = ACTIONS(3403), - [anon_sym_public] = ACTIONS(3403), - [anon_sym_private] = ACTIONS(3403), - [anon_sym_protected] = ACTIONS(3403), - [anon_sym_override] = ACTIONS(3403), - [anon_sym_module] = ACTIONS(3403), - [anon_sym_any] = ACTIONS(3403), - [anon_sym_number] = ACTIONS(3403), - [anon_sym_boolean] = ACTIONS(3403), - [anon_sym_string] = ACTIONS(3403), - [anon_sym_symbol] = ACTIONS(3403), - [anon_sym_object] = ACTIONS(3403), - [anon_sym_abstract] = ACTIONS(3403), - [anon_sym_interface] = ACTIONS(3403), - [anon_sym_enum] = ACTIONS(3403), - [sym_html_comment] = ACTIONS(5), - }, - [1619] = { - [sym_comment] = STATE(1619), - [ts_builtin_sym_end] = ACTIONS(3573), - [sym_identifier] = ACTIONS(3405), - [anon_sym_export] = ACTIONS(3405), - [anon_sym_type] = ACTIONS(3405), - [anon_sym_namespace] = ACTIONS(3405), - [anon_sym_LBRACE] = ACTIONS(3405), - [anon_sym_RBRACE] = ACTIONS(3405), - [anon_sym_typeof] = ACTIONS(3405), - [anon_sym_import] = ACTIONS(3405), - [anon_sym_with] = ACTIONS(3405), - [anon_sym_var] = ACTIONS(3405), - [anon_sym_let] = ACTIONS(3405), - [anon_sym_const] = ACTIONS(3405), - [anon_sym_BANG] = ACTIONS(3405), - [anon_sym_if] = ACTIONS(3405), - [anon_sym_switch] = ACTIONS(3405), - [anon_sym_for] = ACTIONS(3405), - [anon_sym_LPAREN] = ACTIONS(3405), - [anon_sym_await] = ACTIONS(3405), - [anon_sym_while] = ACTIONS(3405), - [anon_sym_do] = ACTIONS(3405), - [anon_sym_try] = ACTIONS(3405), - [anon_sym_break] = ACTIONS(3405), - [anon_sym_continue] = ACTIONS(3405), - [anon_sym_debugger] = ACTIONS(3405), - [anon_sym_return] = ACTIONS(3405), - [anon_sym_throw] = ACTIONS(3405), - [anon_sym_SEMI] = ACTIONS(3405), - [anon_sym_yield] = ACTIONS(3405), - [anon_sym_LBRACK] = ACTIONS(3405), - [anon_sym_LTtemplate_GT] = ACTIONS(3405), - [anon_sym_DQUOTE] = ACTIONS(3405), - [anon_sym_SQUOTE] = ACTIONS(3405), - [anon_sym_class] = ACTIONS(3405), - [anon_sym_async] = ACTIONS(3405), - [anon_sym_function] = ACTIONS(3405), - [anon_sym_new] = ACTIONS(3405), - [anon_sym_using] = ACTIONS(3405), - [anon_sym_PLUS] = ACTIONS(3405), - [anon_sym_DASH] = ACTIONS(3405), - [anon_sym_SLASH] = ACTIONS(3405), - [anon_sym_LT] = ACTIONS(3405), - [anon_sym_TILDE] = ACTIONS(3405), - [anon_sym_void] = ACTIONS(3405), - [anon_sym_delete] = ACTIONS(3405), - [anon_sym_PLUS_PLUS] = ACTIONS(3405), - [anon_sym_DASH_DASH] = ACTIONS(3405), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3405), - [sym_number] = ACTIONS(3405), - [sym_private_property_identifier] = ACTIONS(3405), - [sym_this] = ACTIONS(3405), - [sym_super] = ACTIONS(3405), - [sym_true] = ACTIONS(3405), - [sym_false] = ACTIONS(3405), - [sym_null] = ACTIONS(3405), - [sym_undefined] = ACTIONS(3405), - [anon_sym_AT] = ACTIONS(3405), - [anon_sym_static] = ACTIONS(3405), - [anon_sym_readonly] = ACTIONS(3405), - [anon_sym_get] = ACTIONS(3405), - [anon_sym_set] = ACTIONS(3405), - [anon_sym_declare] = ACTIONS(3405), - [anon_sym_public] = ACTIONS(3405), - [anon_sym_private] = ACTIONS(3405), - [anon_sym_protected] = ACTIONS(3405), - [anon_sym_override] = ACTIONS(3405), - [anon_sym_module] = ACTIONS(3405), - [anon_sym_any] = ACTIONS(3405), - [anon_sym_number] = ACTIONS(3405), - [anon_sym_boolean] = ACTIONS(3405), - [anon_sym_string] = ACTIONS(3405), - [anon_sym_symbol] = ACTIONS(3405), - [anon_sym_object] = ACTIONS(3405), - [anon_sym_abstract] = ACTIONS(3405), - [anon_sym_interface] = ACTIONS(3405), - [anon_sym_enum] = ACTIONS(3405), - [sym_html_comment] = ACTIONS(5), - }, - [1620] = { - [sym_comment] = STATE(1620), - [ts_builtin_sym_end] = ACTIONS(3639), - [sym_identifier] = ACTIONS(3241), - [anon_sym_export] = ACTIONS(3241), - [anon_sym_type] = ACTIONS(3241), - [anon_sym_namespace] = ACTIONS(3241), - [anon_sym_LBRACE] = ACTIONS(3241), - [anon_sym_RBRACE] = ACTIONS(3241), - [anon_sym_typeof] = ACTIONS(3241), - [anon_sym_import] = ACTIONS(3241), - [anon_sym_with] = ACTIONS(3241), - [anon_sym_var] = ACTIONS(3241), - [anon_sym_let] = ACTIONS(3241), - [anon_sym_const] = ACTIONS(3241), - [anon_sym_BANG] = ACTIONS(3241), - [anon_sym_if] = ACTIONS(3241), - [anon_sym_switch] = ACTIONS(3241), - [anon_sym_for] = ACTIONS(3241), - [anon_sym_LPAREN] = ACTIONS(3241), - [anon_sym_await] = ACTIONS(3241), - [anon_sym_while] = ACTIONS(3241), - [anon_sym_do] = ACTIONS(3241), - [anon_sym_try] = ACTIONS(3241), - [anon_sym_break] = ACTIONS(3241), - [anon_sym_continue] = ACTIONS(3241), - [anon_sym_debugger] = ACTIONS(3241), - [anon_sym_return] = ACTIONS(3241), - [anon_sym_throw] = ACTIONS(3241), - [anon_sym_SEMI] = ACTIONS(3241), - [anon_sym_yield] = ACTIONS(3241), - [anon_sym_LBRACK] = ACTIONS(3241), - [anon_sym_LTtemplate_GT] = ACTIONS(3241), - [anon_sym_DQUOTE] = ACTIONS(3241), - [anon_sym_SQUOTE] = ACTIONS(3241), - [anon_sym_class] = ACTIONS(3241), - [anon_sym_async] = ACTIONS(3241), - [anon_sym_function] = ACTIONS(3241), - [anon_sym_new] = ACTIONS(3241), - [anon_sym_using] = ACTIONS(3241), - [anon_sym_PLUS] = ACTIONS(3241), - [anon_sym_DASH] = ACTIONS(3241), - [anon_sym_SLASH] = ACTIONS(3241), - [anon_sym_LT] = ACTIONS(3241), - [anon_sym_TILDE] = ACTIONS(3241), - [anon_sym_void] = ACTIONS(3241), - [anon_sym_delete] = ACTIONS(3241), - [anon_sym_PLUS_PLUS] = ACTIONS(3241), - [anon_sym_DASH_DASH] = ACTIONS(3241), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3241), - [sym_number] = ACTIONS(3241), - [sym_private_property_identifier] = ACTIONS(3241), - [sym_this] = ACTIONS(3241), - [sym_super] = ACTIONS(3241), - [sym_true] = ACTIONS(3241), - [sym_false] = ACTIONS(3241), - [sym_null] = ACTIONS(3241), - [sym_undefined] = ACTIONS(3241), - [anon_sym_AT] = ACTIONS(3241), - [anon_sym_static] = ACTIONS(3241), - [anon_sym_readonly] = ACTIONS(3241), - [anon_sym_get] = ACTIONS(3241), - [anon_sym_set] = ACTIONS(3241), - [anon_sym_declare] = ACTIONS(3241), - [anon_sym_public] = ACTIONS(3241), - [anon_sym_private] = ACTIONS(3241), - [anon_sym_protected] = ACTIONS(3241), - [anon_sym_override] = ACTIONS(3241), - [anon_sym_module] = ACTIONS(3241), - [anon_sym_any] = ACTIONS(3241), - [anon_sym_number] = ACTIONS(3241), - [anon_sym_boolean] = ACTIONS(3241), - [anon_sym_string] = ACTIONS(3241), - [anon_sym_symbol] = ACTIONS(3241), - [anon_sym_object] = ACTIONS(3241), - [anon_sym_abstract] = ACTIONS(3241), - [anon_sym_interface] = ACTIONS(3241), - [anon_sym_enum] = ACTIONS(3241), - [sym_html_comment] = ACTIONS(5), - }, - [1621] = { - [sym_comment] = STATE(1621), - [ts_builtin_sym_end] = ACTIONS(3569), - [sym_identifier] = ACTIONS(3407), - [anon_sym_export] = ACTIONS(3407), - [anon_sym_type] = ACTIONS(3407), - [anon_sym_namespace] = ACTIONS(3407), - [anon_sym_LBRACE] = ACTIONS(3407), - [anon_sym_RBRACE] = ACTIONS(3407), - [anon_sym_typeof] = ACTIONS(3407), - [anon_sym_import] = ACTIONS(3407), - [anon_sym_with] = ACTIONS(3407), - [anon_sym_var] = ACTIONS(3407), - [anon_sym_let] = ACTIONS(3407), - [anon_sym_const] = ACTIONS(3407), - [anon_sym_BANG] = ACTIONS(3407), - [anon_sym_if] = ACTIONS(3407), - [anon_sym_switch] = ACTIONS(3407), - [anon_sym_for] = ACTIONS(3407), - [anon_sym_LPAREN] = ACTIONS(3407), - [anon_sym_await] = ACTIONS(3407), - [anon_sym_while] = ACTIONS(3407), - [anon_sym_do] = ACTIONS(3407), - [anon_sym_try] = ACTIONS(3407), - [anon_sym_break] = ACTIONS(3407), - [anon_sym_continue] = ACTIONS(3407), - [anon_sym_debugger] = ACTIONS(3407), - [anon_sym_return] = ACTIONS(3407), - [anon_sym_throw] = ACTIONS(3407), - [anon_sym_SEMI] = ACTIONS(3407), - [anon_sym_yield] = ACTIONS(3407), - [anon_sym_LBRACK] = ACTIONS(3407), - [anon_sym_LTtemplate_GT] = ACTIONS(3407), - [anon_sym_DQUOTE] = ACTIONS(3407), - [anon_sym_SQUOTE] = ACTIONS(3407), - [anon_sym_class] = ACTIONS(3407), - [anon_sym_async] = ACTIONS(3407), - [anon_sym_function] = ACTIONS(3407), - [anon_sym_new] = ACTIONS(3407), - [anon_sym_using] = ACTIONS(3407), - [anon_sym_PLUS] = ACTIONS(3407), - [anon_sym_DASH] = ACTIONS(3407), - [anon_sym_SLASH] = ACTIONS(3407), - [anon_sym_LT] = ACTIONS(3407), - [anon_sym_TILDE] = ACTIONS(3407), - [anon_sym_void] = ACTIONS(3407), - [anon_sym_delete] = ACTIONS(3407), - [anon_sym_PLUS_PLUS] = ACTIONS(3407), - [anon_sym_DASH_DASH] = ACTIONS(3407), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3407), - [sym_number] = ACTIONS(3407), - [sym_private_property_identifier] = ACTIONS(3407), - [sym_this] = ACTIONS(3407), - [sym_super] = ACTIONS(3407), - [sym_true] = ACTIONS(3407), - [sym_false] = ACTIONS(3407), - [sym_null] = ACTIONS(3407), - [sym_undefined] = ACTIONS(3407), - [anon_sym_AT] = ACTIONS(3407), - [anon_sym_static] = ACTIONS(3407), - [anon_sym_readonly] = ACTIONS(3407), - [anon_sym_get] = ACTIONS(3407), - [anon_sym_set] = ACTIONS(3407), - [anon_sym_declare] = ACTIONS(3407), - [anon_sym_public] = ACTIONS(3407), - [anon_sym_private] = ACTIONS(3407), - [anon_sym_protected] = ACTIONS(3407), - [anon_sym_override] = ACTIONS(3407), - [anon_sym_module] = ACTIONS(3407), - [anon_sym_any] = ACTIONS(3407), - [anon_sym_number] = ACTIONS(3407), - [anon_sym_boolean] = ACTIONS(3407), - [anon_sym_string] = ACTIONS(3407), - [anon_sym_symbol] = ACTIONS(3407), - [anon_sym_object] = ACTIONS(3407), - [anon_sym_abstract] = ACTIONS(3407), - [anon_sym_interface] = ACTIONS(3407), - [anon_sym_enum] = ACTIONS(3407), - [sym_html_comment] = ACTIONS(5), - }, - [1622] = { - [sym_comment] = STATE(1622), - [ts_builtin_sym_end] = ACTIONS(3647), - [sym_identifier] = ACTIONS(3447), - [anon_sym_export] = ACTIONS(3447), - [anon_sym_type] = ACTIONS(3447), - [anon_sym_namespace] = ACTIONS(3447), - [anon_sym_LBRACE] = ACTIONS(3447), - [anon_sym_RBRACE] = ACTIONS(3447), - [anon_sym_typeof] = ACTIONS(3447), - [anon_sym_import] = ACTIONS(3447), - [anon_sym_with] = ACTIONS(3447), - [anon_sym_var] = ACTIONS(3447), - [anon_sym_let] = ACTIONS(3447), - [anon_sym_const] = ACTIONS(3447), - [anon_sym_BANG] = ACTIONS(3447), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_switch] = ACTIONS(3447), - [anon_sym_for] = ACTIONS(3447), - [anon_sym_LPAREN] = ACTIONS(3447), - [anon_sym_await] = ACTIONS(3447), - [anon_sym_while] = ACTIONS(3447), - [anon_sym_do] = ACTIONS(3447), - [anon_sym_try] = ACTIONS(3447), - [anon_sym_break] = ACTIONS(3447), - [anon_sym_continue] = ACTIONS(3447), - [anon_sym_debugger] = ACTIONS(3447), - [anon_sym_return] = ACTIONS(3447), - [anon_sym_throw] = ACTIONS(3447), - [anon_sym_SEMI] = ACTIONS(3447), - [anon_sym_yield] = ACTIONS(3447), - [anon_sym_LBRACK] = ACTIONS(3447), - [anon_sym_LTtemplate_GT] = ACTIONS(3447), - [anon_sym_DQUOTE] = ACTIONS(3447), - [anon_sym_SQUOTE] = ACTIONS(3447), - [anon_sym_class] = ACTIONS(3447), - [anon_sym_async] = ACTIONS(3447), - [anon_sym_function] = ACTIONS(3447), - [anon_sym_new] = ACTIONS(3447), - [anon_sym_using] = ACTIONS(3447), - [anon_sym_PLUS] = ACTIONS(3447), - [anon_sym_DASH] = ACTIONS(3447), - [anon_sym_SLASH] = ACTIONS(3447), - [anon_sym_LT] = ACTIONS(3447), - [anon_sym_TILDE] = ACTIONS(3447), - [anon_sym_void] = ACTIONS(3447), - [anon_sym_delete] = ACTIONS(3447), - [anon_sym_PLUS_PLUS] = ACTIONS(3447), - [anon_sym_DASH_DASH] = ACTIONS(3447), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3447), - [sym_number] = ACTIONS(3447), - [sym_private_property_identifier] = ACTIONS(3447), - [sym_this] = ACTIONS(3447), - [sym_super] = ACTIONS(3447), - [sym_true] = ACTIONS(3447), - [sym_false] = ACTIONS(3447), - [sym_null] = ACTIONS(3447), - [sym_undefined] = ACTIONS(3447), - [anon_sym_AT] = ACTIONS(3447), - [anon_sym_static] = ACTIONS(3447), - [anon_sym_readonly] = ACTIONS(3447), - [anon_sym_get] = ACTIONS(3447), - [anon_sym_set] = ACTIONS(3447), - [anon_sym_declare] = ACTIONS(3447), - [anon_sym_public] = ACTIONS(3447), - [anon_sym_private] = ACTIONS(3447), - [anon_sym_protected] = ACTIONS(3447), - [anon_sym_override] = ACTIONS(3447), - [anon_sym_module] = ACTIONS(3447), - [anon_sym_any] = ACTIONS(3447), - [anon_sym_number] = ACTIONS(3447), - [anon_sym_boolean] = ACTIONS(3447), - [anon_sym_string] = ACTIONS(3447), - [anon_sym_symbol] = ACTIONS(3447), - [anon_sym_object] = ACTIONS(3447), - [anon_sym_abstract] = ACTIONS(3447), - [anon_sym_interface] = ACTIONS(3447), - [anon_sym_enum] = ACTIONS(3447), - [sym_html_comment] = ACTIONS(5), - }, - [1623] = { - [sym_comment] = STATE(1623), - [ts_builtin_sym_end] = ACTIONS(3641), - [sym_identifier] = ACTIONS(3251), - [anon_sym_export] = ACTIONS(3251), - [anon_sym_type] = ACTIONS(3251), - [anon_sym_namespace] = ACTIONS(3251), - [anon_sym_LBRACE] = ACTIONS(3251), - [anon_sym_RBRACE] = ACTIONS(3251), - [anon_sym_typeof] = ACTIONS(3251), - [anon_sym_import] = ACTIONS(3251), - [anon_sym_with] = ACTIONS(3251), - [anon_sym_var] = ACTIONS(3251), - [anon_sym_let] = ACTIONS(3251), - [anon_sym_const] = ACTIONS(3251), - [anon_sym_BANG] = ACTIONS(3251), - [anon_sym_if] = ACTIONS(3251), - [anon_sym_switch] = ACTIONS(3251), - [anon_sym_for] = ACTIONS(3251), - [anon_sym_LPAREN] = ACTIONS(3251), - [anon_sym_await] = ACTIONS(3251), - [anon_sym_while] = ACTIONS(3251), - [anon_sym_do] = ACTIONS(3251), - [anon_sym_try] = ACTIONS(3251), - [anon_sym_break] = ACTIONS(3251), - [anon_sym_continue] = ACTIONS(3251), - [anon_sym_debugger] = ACTIONS(3251), - [anon_sym_return] = ACTIONS(3251), - [anon_sym_throw] = ACTIONS(3251), - [anon_sym_SEMI] = ACTIONS(3251), - [anon_sym_yield] = ACTIONS(3251), - [anon_sym_LBRACK] = ACTIONS(3251), - [anon_sym_LTtemplate_GT] = ACTIONS(3251), - [anon_sym_DQUOTE] = ACTIONS(3251), - [anon_sym_SQUOTE] = ACTIONS(3251), - [anon_sym_class] = ACTIONS(3251), - [anon_sym_async] = ACTIONS(3251), - [anon_sym_function] = ACTIONS(3251), - [anon_sym_new] = ACTIONS(3251), - [anon_sym_using] = ACTIONS(3251), - [anon_sym_PLUS] = ACTIONS(3251), - [anon_sym_DASH] = ACTIONS(3251), - [anon_sym_SLASH] = ACTIONS(3251), - [anon_sym_LT] = ACTIONS(3251), - [anon_sym_TILDE] = ACTIONS(3251), - [anon_sym_void] = ACTIONS(3251), - [anon_sym_delete] = ACTIONS(3251), - [anon_sym_PLUS_PLUS] = ACTIONS(3251), - [anon_sym_DASH_DASH] = ACTIONS(3251), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3251), - [sym_number] = ACTIONS(3251), - [sym_private_property_identifier] = ACTIONS(3251), - [sym_this] = ACTIONS(3251), - [sym_super] = ACTIONS(3251), - [sym_true] = ACTIONS(3251), - [sym_false] = ACTIONS(3251), - [sym_null] = ACTIONS(3251), - [sym_undefined] = ACTIONS(3251), - [anon_sym_AT] = ACTIONS(3251), - [anon_sym_static] = ACTIONS(3251), - [anon_sym_readonly] = ACTIONS(3251), - [anon_sym_get] = ACTIONS(3251), - [anon_sym_set] = ACTIONS(3251), - [anon_sym_declare] = ACTIONS(3251), - [anon_sym_public] = ACTIONS(3251), - [anon_sym_private] = ACTIONS(3251), - [anon_sym_protected] = ACTIONS(3251), - [anon_sym_override] = ACTIONS(3251), - [anon_sym_module] = ACTIONS(3251), - [anon_sym_any] = ACTIONS(3251), - [anon_sym_number] = ACTIONS(3251), - [anon_sym_boolean] = ACTIONS(3251), - [anon_sym_string] = ACTIONS(3251), - [anon_sym_symbol] = ACTIONS(3251), - [anon_sym_object] = ACTIONS(3251), - [anon_sym_abstract] = ACTIONS(3251), - [anon_sym_interface] = ACTIONS(3251), - [anon_sym_enum] = ACTIONS(3251), - [sym_html_comment] = ACTIONS(5), - }, - [1624] = { - [sym_comment] = STATE(1624), - [ts_builtin_sym_end] = ACTIONS(3605), - [sym_identifier] = ACTIONS(3325), - [anon_sym_export] = ACTIONS(3325), - [anon_sym_type] = ACTIONS(3325), - [anon_sym_namespace] = ACTIONS(3325), - [anon_sym_LBRACE] = ACTIONS(3325), - [anon_sym_RBRACE] = ACTIONS(3325), - [anon_sym_typeof] = ACTIONS(3325), - [anon_sym_import] = ACTIONS(3325), - [anon_sym_with] = ACTIONS(3325), - [anon_sym_var] = ACTIONS(3325), - [anon_sym_let] = ACTIONS(3325), - [anon_sym_const] = ACTIONS(3325), - [anon_sym_BANG] = ACTIONS(3325), - [anon_sym_if] = ACTIONS(3325), - [anon_sym_switch] = ACTIONS(3325), - [anon_sym_for] = ACTIONS(3325), - [anon_sym_LPAREN] = ACTIONS(3325), - [anon_sym_await] = ACTIONS(3325), - [anon_sym_while] = ACTIONS(3325), - [anon_sym_do] = ACTIONS(3325), - [anon_sym_try] = ACTIONS(3325), - [anon_sym_break] = ACTIONS(3325), - [anon_sym_continue] = ACTIONS(3325), - [anon_sym_debugger] = ACTIONS(3325), - [anon_sym_return] = ACTIONS(3325), - [anon_sym_throw] = ACTIONS(3325), - [anon_sym_SEMI] = ACTIONS(3325), - [anon_sym_yield] = ACTIONS(3325), - [anon_sym_LBRACK] = ACTIONS(3325), - [anon_sym_LTtemplate_GT] = ACTIONS(3325), - [anon_sym_DQUOTE] = ACTIONS(3325), - [anon_sym_SQUOTE] = ACTIONS(3325), - [anon_sym_class] = ACTIONS(3325), - [anon_sym_async] = ACTIONS(3325), - [anon_sym_function] = ACTIONS(3325), - [anon_sym_new] = ACTIONS(3325), - [anon_sym_using] = ACTIONS(3325), - [anon_sym_PLUS] = ACTIONS(3325), - [anon_sym_DASH] = ACTIONS(3325), - [anon_sym_SLASH] = ACTIONS(3325), - [anon_sym_LT] = ACTIONS(3325), - [anon_sym_TILDE] = ACTIONS(3325), - [anon_sym_void] = ACTIONS(3325), - [anon_sym_delete] = ACTIONS(3325), - [anon_sym_PLUS_PLUS] = ACTIONS(3325), - [anon_sym_DASH_DASH] = ACTIONS(3325), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3325), - [sym_number] = ACTIONS(3325), - [sym_private_property_identifier] = ACTIONS(3325), - [sym_this] = ACTIONS(3325), - [sym_super] = ACTIONS(3325), - [sym_true] = ACTIONS(3325), - [sym_false] = ACTIONS(3325), - [sym_null] = ACTIONS(3325), - [sym_undefined] = ACTIONS(3325), - [anon_sym_AT] = ACTIONS(3325), - [anon_sym_static] = ACTIONS(3325), - [anon_sym_readonly] = ACTIONS(3325), - [anon_sym_get] = ACTIONS(3325), - [anon_sym_set] = ACTIONS(3325), - [anon_sym_declare] = ACTIONS(3325), - [anon_sym_public] = ACTIONS(3325), - [anon_sym_private] = ACTIONS(3325), - [anon_sym_protected] = ACTIONS(3325), - [anon_sym_override] = ACTIONS(3325), - [anon_sym_module] = ACTIONS(3325), - [anon_sym_any] = ACTIONS(3325), - [anon_sym_number] = ACTIONS(3325), - [anon_sym_boolean] = ACTIONS(3325), - [anon_sym_string] = ACTIONS(3325), - [anon_sym_symbol] = ACTIONS(3325), - [anon_sym_object] = ACTIONS(3325), - [anon_sym_abstract] = ACTIONS(3325), - [anon_sym_interface] = ACTIONS(3325), - [anon_sym_enum] = ACTIONS(3325), - [sym_html_comment] = ACTIONS(5), - }, - [1625] = { - [sym_comment] = STATE(1625), - [ts_builtin_sym_end] = ACTIONS(3485), - [sym_identifier] = ACTIONS(3243), - [anon_sym_export] = ACTIONS(3243), - [anon_sym_type] = ACTIONS(3243), - [anon_sym_namespace] = ACTIONS(3243), - [anon_sym_LBRACE] = ACTIONS(3243), - [anon_sym_RBRACE] = ACTIONS(3243), - [anon_sym_typeof] = ACTIONS(3243), - [anon_sym_import] = ACTIONS(3243), - [anon_sym_with] = ACTIONS(3243), - [anon_sym_var] = ACTIONS(3243), - [anon_sym_let] = ACTIONS(3243), - [anon_sym_const] = ACTIONS(3243), - [anon_sym_BANG] = ACTIONS(3243), - [anon_sym_if] = ACTIONS(3243), - [anon_sym_switch] = ACTIONS(3243), - [anon_sym_for] = ACTIONS(3243), - [anon_sym_LPAREN] = ACTIONS(3243), - [anon_sym_await] = ACTIONS(3243), - [anon_sym_while] = ACTIONS(3243), - [anon_sym_do] = ACTIONS(3243), - [anon_sym_try] = ACTIONS(3243), - [anon_sym_break] = ACTIONS(3243), - [anon_sym_continue] = ACTIONS(3243), - [anon_sym_debugger] = ACTIONS(3243), - [anon_sym_return] = ACTIONS(3243), - [anon_sym_throw] = ACTIONS(3243), - [anon_sym_SEMI] = ACTIONS(3243), - [anon_sym_yield] = ACTIONS(3243), - [anon_sym_LBRACK] = ACTIONS(3243), - [anon_sym_LTtemplate_GT] = ACTIONS(3243), - [anon_sym_DQUOTE] = ACTIONS(3243), - [anon_sym_SQUOTE] = ACTIONS(3243), - [anon_sym_class] = ACTIONS(3243), - [anon_sym_async] = ACTIONS(3243), - [anon_sym_function] = ACTIONS(3243), - [anon_sym_new] = ACTIONS(3243), - [anon_sym_using] = ACTIONS(3243), - [anon_sym_PLUS] = ACTIONS(3243), - [anon_sym_DASH] = ACTIONS(3243), - [anon_sym_SLASH] = ACTIONS(3243), - [anon_sym_LT] = ACTIONS(3243), - [anon_sym_TILDE] = ACTIONS(3243), - [anon_sym_void] = ACTIONS(3243), - [anon_sym_delete] = ACTIONS(3243), - [anon_sym_PLUS_PLUS] = ACTIONS(3243), - [anon_sym_DASH_DASH] = ACTIONS(3243), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3243), - [sym_number] = ACTIONS(3243), - [sym_private_property_identifier] = ACTIONS(3243), - [sym_this] = ACTIONS(3243), - [sym_super] = ACTIONS(3243), - [sym_true] = ACTIONS(3243), - [sym_false] = ACTIONS(3243), - [sym_null] = ACTIONS(3243), - [sym_undefined] = ACTIONS(3243), - [anon_sym_AT] = ACTIONS(3243), - [anon_sym_static] = ACTIONS(3243), - [anon_sym_readonly] = ACTIONS(3243), - [anon_sym_get] = ACTIONS(3243), - [anon_sym_set] = ACTIONS(3243), - [anon_sym_declare] = ACTIONS(3243), - [anon_sym_public] = ACTIONS(3243), - [anon_sym_private] = ACTIONS(3243), - [anon_sym_protected] = ACTIONS(3243), - [anon_sym_override] = ACTIONS(3243), - [anon_sym_module] = ACTIONS(3243), - [anon_sym_any] = ACTIONS(3243), - [anon_sym_number] = ACTIONS(3243), - [anon_sym_boolean] = ACTIONS(3243), - [anon_sym_string] = ACTIONS(3243), - [anon_sym_symbol] = ACTIONS(3243), - [anon_sym_object] = ACTIONS(3243), - [anon_sym_abstract] = ACTIONS(3243), - [anon_sym_interface] = ACTIONS(3243), - [anon_sym_enum] = ACTIONS(3243), - [sym_html_comment] = ACTIONS(5), - }, - [1626] = { - [sym_comment] = STATE(1626), - [ts_builtin_sym_end] = ACTIONS(3637), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [sym_html_comment] = ACTIONS(5), - }, - [1627] = { - [sym_comment] = STATE(1627), - [ts_builtin_sym_end] = ACTIONS(3637), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [sym_html_comment] = ACTIONS(5), - }, - [1628] = { - [sym_comment] = STATE(1628), - [ts_builtin_sym_end] = ACTIONS(3567), - [sym_identifier] = ACTIONS(3457), - [anon_sym_export] = ACTIONS(3457), - [anon_sym_type] = ACTIONS(3457), - [anon_sym_namespace] = ACTIONS(3457), - [anon_sym_LBRACE] = ACTIONS(3457), - [anon_sym_RBRACE] = ACTIONS(3457), - [anon_sym_typeof] = ACTIONS(3457), - [anon_sym_import] = ACTIONS(3457), - [anon_sym_with] = ACTIONS(3457), - [anon_sym_var] = ACTIONS(3457), - [anon_sym_let] = ACTIONS(3457), - [anon_sym_const] = ACTIONS(3457), - [anon_sym_BANG] = ACTIONS(3457), - [anon_sym_if] = ACTIONS(3457), - [anon_sym_switch] = ACTIONS(3457), - [anon_sym_for] = ACTIONS(3457), - [anon_sym_LPAREN] = ACTIONS(3457), - [anon_sym_await] = ACTIONS(3457), - [anon_sym_while] = ACTIONS(3457), - [anon_sym_do] = ACTIONS(3457), - [anon_sym_try] = ACTIONS(3457), - [anon_sym_break] = ACTIONS(3457), - [anon_sym_continue] = ACTIONS(3457), - [anon_sym_debugger] = ACTIONS(3457), - [anon_sym_return] = ACTIONS(3457), - [anon_sym_throw] = ACTIONS(3457), - [anon_sym_SEMI] = ACTIONS(3457), - [anon_sym_yield] = ACTIONS(3457), - [anon_sym_LBRACK] = ACTIONS(3457), - [anon_sym_LTtemplate_GT] = ACTIONS(3457), - [anon_sym_DQUOTE] = ACTIONS(3457), - [anon_sym_SQUOTE] = ACTIONS(3457), - [anon_sym_class] = ACTIONS(3457), - [anon_sym_async] = ACTIONS(3457), - [anon_sym_function] = ACTIONS(3457), - [anon_sym_new] = ACTIONS(3457), - [anon_sym_using] = ACTIONS(3457), - [anon_sym_PLUS] = ACTIONS(3457), - [anon_sym_DASH] = ACTIONS(3457), - [anon_sym_SLASH] = ACTIONS(3457), - [anon_sym_LT] = ACTIONS(3457), - [anon_sym_TILDE] = ACTIONS(3457), - [anon_sym_void] = ACTIONS(3457), - [anon_sym_delete] = ACTIONS(3457), - [anon_sym_PLUS_PLUS] = ACTIONS(3457), - [anon_sym_DASH_DASH] = ACTIONS(3457), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3457), - [sym_number] = ACTIONS(3457), - [sym_private_property_identifier] = ACTIONS(3457), - [sym_this] = ACTIONS(3457), - [sym_super] = ACTIONS(3457), - [sym_true] = ACTIONS(3457), - [sym_false] = ACTIONS(3457), - [sym_null] = ACTIONS(3457), - [sym_undefined] = ACTIONS(3457), - [anon_sym_AT] = ACTIONS(3457), - [anon_sym_static] = ACTIONS(3457), - [anon_sym_readonly] = ACTIONS(3457), - [anon_sym_get] = ACTIONS(3457), - [anon_sym_set] = ACTIONS(3457), - [anon_sym_declare] = ACTIONS(3457), - [anon_sym_public] = ACTIONS(3457), - [anon_sym_private] = ACTIONS(3457), - [anon_sym_protected] = ACTIONS(3457), - [anon_sym_override] = ACTIONS(3457), - [anon_sym_module] = ACTIONS(3457), - [anon_sym_any] = ACTIONS(3457), - [anon_sym_number] = ACTIONS(3457), - [anon_sym_boolean] = ACTIONS(3457), - [anon_sym_string] = ACTIONS(3457), - [anon_sym_symbol] = ACTIONS(3457), - [anon_sym_object] = ACTIONS(3457), - [anon_sym_abstract] = ACTIONS(3457), - [anon_sym_interface] = ACTIONS(3457), - [anon_sym_enum] = ACTIONS(3457), - [sym_html_comment] = ACTIONS(5), - }, - [1629] = { - [sym_comment] = STATE(1629), - [ts_builtin_sym_end] = ACTIONS(3479), - [sym_identifier] = ACTIONS(3245), - [anon_sym_export] = ACTIONS(3245), - [anon_sym_type] = ACTIONS(3245), - [anon_sym_namespace] = ACTIONS(3245), - [anon_sym_LBRACE] = ACTIONS(3245), - [anon_sym_RBRACE] = ACTIONS(3245), - [anon_sym_typeof] = ACTIONS(3245), - [anon_sym_import] = ACTIONS(3245), - [anon_sym_with] = ACTIONS(3245), - [anon_sym_var] = ACTIONS(3245), - [anon_sym_let] = ACTIONS(3245), - [anon_sym_const] = ACTIONS(3245), - [anon_sym_BANG] = ACTIONS(3245), - [anon_sym_if] = ACTIONS(3245), - [anon_sym_switch] = ACTIONS(3245), - [anon_sym_for] = ACTIONS(3245), - [anon_sym_LPAREN] = ACTIONS(3245), - [anon_sym_await] = ACTIONS(3245), - [anon_sym_while] = ACTIONS(3245), - [anon_sym_do] = ACTIONS(3245), - [anon_sym_try] = ACTIONS(3245), - [anon_sym_break] = ACTIONS(3245), - [anon_sym_continue] = ACTIONS(3245), - [anon_sym_debugger] = ACTIONS(3245), - [anon_sym_return] = ACTIONS(3245), - [anon_sym_throw] = ACTIONS(3245), - [anon_sym_SEMI] = ACTIONS(3245), - [anon_sym_yield] = ACTIONS(3245), - [anon_sym_LBRACK] = ACTIONS(3245), - [anon_sym_LTtemplate_GT] = ACTIONS(3245), - [anon_sym_DQUOTE] = ACTIONS(3245), - [anon_sym_SQUOTE] = ACTIONS(3245), - [anon_sym_class] = ACTIONS(3245), - [anon_sym_async] = ACTIONS(3245), - [anon_sym_function] = ACTIONS(3245), - [anon_sym_new] = ACTIONS(3245), - [anon_sym_using] = ACTIONS(3245), - [anon_sym_PLUS] = ACTIONS(3245), - [anon_sym_DASH] = ACTIONS(3245), - [anon_sym_SLASH] = ACTIONS(3245), - [anon_sym_LT] = ACTIONS(3245), - [anon_sym_TILDE] = ACTIONS(3245), - [anon_sym_void] = ACTIONS(3245), - [anon_sym_delete] = ACTIONS(3245), - [anon_sym_PLUS_PLUS] = ACTIONS(3245), - [anon_sym_DASH_DASH] = ACTIONS(3245), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3245), - [sym_number] = ACTIONS(3245), - [sym_private_property_identifier] = ACTIONS(3245), - [sym_this] = ACTIONS(3245), - [sym_super] = ACTIONS(3245), - [sym_true] = ACTIONS(3245), - [sym_false] = ACTIONS(3245), - [sym_null] = ACTIONS(3245), - [sym_undefined] = ACTIONS(3245), - [anon_sym_AT] = ACTIONS(3245), - [anon_sym_static] = ACTIONS(3245), - [anon_sym_readonly] = ACTIONS(3245), - [anon_sym_get] = ACTIONS(3245), - [anon_sym_set] = ACTIONS(3245), - [anon_sym_declare] = ACTIONS(3245), - [anon_sym_public] = ACTIONS(3245), - [anon_sym_private] = ACTIONS(3245), - [anon_sym_protected] = ACTIONS(3245), - [anon_sym_override] = ACTIONS(3245), - [anon_sym_module] = ACTIONS(3245), - [anon_sym_any] = ACTIONS(3245), - [anon_sym_number] = ACTIONS(3245), - [anon_sym_boolean] = ACTIONS(3245), - [anon_sym_string] = ACTIONS(3245), - [anon_sym_symbol] = ACTIONS(3245), - [anon_sym_object] = ACTIONS(3245), - [anon_sym_abstract] = ACTIONS(3245), - [anon_sym_interface] = ACTIONS(3245), - [anon_sym_enum] = ACTIONS(3245), - [sym_html_comment] = ACTIONS(5), - }, - [1630] = { - [sym_comment] = STATE(1630), - [ts_builtin_sym_end] = ACTIONS(3565), - [sym_identifier] = ACTIONS(3411), - [anon_sym_export] = ACTIONS(3411), - [anon_sym_type] = ACTIONS(3411), - [anon_sym_namespace] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3411), - [anon_sym_RBRACE] = ACTIONS(3411), - [anon_sym_typeof] = ACTIONS(3411), - [anon_sym_import] = ACTIONS(3411), - [anon_sym_with] = ACTIONS(3411), - [anon_sym_var] = ACTIONS(3411), - [anon_sym_let] = ACTIONS(3411), - [anon_sym_const] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_await] = ACTIONS(3411), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_try] = ACTIONS(3411), - [anon_sym_break] = ACTIONS(3411), - [anon_sym_continue] = ACTIONS(3411), - [anon_sym_debugger] = ACTIONS(3411), - [anon_sym_return] = ACTIONS(3411), - [anon_sym_throw] = ACTIONS(3411), - [anon_sym_SEMI] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3411), - [anon_sym_LTtemplate_GT] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3411), - [anon_sym_class] = ACTIONS(3411), - [anon_sym_async] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3411), - [anon_sym_using] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_SLASH] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3411), - [anon_sym_void] = ACTIONS(3411), - [anon_sym_delete] = ACTIONS(3411), - [anon_sym_PLUS_PLUS] = ACTIONS(3411), - [anon_sym_DASH_DASH] = ACTIONS(3411), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3411), - [sym_number] = ACTIONS(3411), - [sym_private_property_identifier] = ACTIONS(3411), - [sym_this] = ACTIONS(3411), - [sym_super] = ACTIONS(3411), - [sym_true] = ACTIONS(3411), - [sym_false] = ACTIONS(3411), - [sym_null] = ACTIONS(3411), - [sym_undefined] = ACTIONS(3411), - [anon_sym_AT] = ACTIONS(3411), - [anon_sym_static] = ACTIONS(3411), - [anon_sym_readonly] = ACTIONS(3411), - [anon_sym_get] = ACTIONS(3411), - [anon_sym_set] = ACTIONS(3411), - [anon_sym_declare] = ACTIONS(3411), - [anon_sym_public] = ACTIONS(3411), - [anon_sym_private] = ACTIONS(3411), - [anon_sym_protected] = ACTIONS(3411), - [anon_sym_override] = ACTIONS(3411), - [anon_sym_module] = ACTIONS(3411), - [anon_sym_any] = ACTIONS(3411), - [anon_sym_number] = ACTIONS(3411), - [anon_sym_boolean] = ACTIONS(3411), - [anon_sym_string] = ACTIONS(3411), - [anon_sym_symbol] = ACTIONS(3411), - [anon_sym_object] = ACTIONS(3411), - [anon_sym_abstract] = ACTIONS(3411), - [anon_sym_interface] = ACTIONS(3411), - [anon_sym_enum] = ACTIONS(3411), - [sym_html_comment] = ACTIONS(5), - }, - [1631] = { - [sym_comment] = STATE(1631), - [ts_builtin_sym_end] = ACTIONS(3565), - [sym_identifier] = ACTIONS(3411), - [anon_sym_export] = ACTIONS(3411), - [anon_sym_type] = ACTIONS(3411), - [anon_sym_namespace] = ACTIONS(3411), - [anon_sym_LBRACE] = ACTIONS(3411), - [anon_sym_RBRACE] = ACTIONS(3411), - [anon_sym_typeof] = ACTIONS(3411), - [anon_sym_import] = ACTIONS(3411), - [anon_sym_with] = ACTIONS(3411), - [anon_sym_var] = ACTIONS(3411), - [anon_sym_let] = ACTIONS(3411), - [anon_sym_const] = ACTIONS(3411), - [anon_sym_BANG] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3411), - [anon_sym_switch] = ACTIONS(3411), - [anon_sym_for] = ACTIONS(3411), - [anon_sym_LPAREN] = ACTIONS(3411), - [anon_sym_await] = ACTIONS(3411), - [anon_sym_while] = ACTIONS(3411), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_try] = ACTIONS(3411), - [anon_sym_break] = ACTIONS(3411), - [anon_sym_continue] = ACTIONS(3411), - [anon_sym_debugger] = ACTIONS(3411), - [anon_sym_return] = ACTIONS(3411), - [anon_sym_throw] = ACTIONS(3411), - [anon_sym_SEMI] = ACTIONS(3411), - [anon_sym_yield] = ACTIONS(3411), - [anon_sym_LBRACK] = ACTIONS(3411), - [anon_sym_LTtemplate_GT] = ACTIONS(3411), - [anon_sym_DQUOTE] = ACTIONS(3411), - [anon_sym_SQUOTE] = ACTIONS(3411), - [anon_sym_class] = ACTIONS(3411), - [anon_sym_async] = ACTIONS(3411), - [anon_sym_function] = ACTIONS(3411), - [anon_sym_new] = ACTIONS(3411), - [anon_sym_using] = ACTIONS(3411), - [anon_sym_PLUS] = ACTIONS(3411), - [anon_sym_DASH] = ACTIONS(3411), - [anon_sym_SLASH] = ACTIONS(3411), - [anon_sym_LT] = ACTIONS(3411), - [anon_sym_TILDE] = ACTIONS(3411), - [anon_sym_void] = ACTIONS(3411), - [anon_sym_delete] = ACTIONS(3411), - [anon_sym_PLUS_PLUS] = ACTIONS(3411), - [anon_sym_DASH_DASH] = ACTIONS(3411), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3411), - [sym_number] = ACTIONS(3411), - [sym_private_property_identifier] = ACTIONS(3411), - [sym_this] = ACTIONS(3411), - [sym_super] = ACTIONS(3411), - [sym_true] = ACTIONS(3411), - [sym_false] = ACTIONS(3411), - [sym_null] = ACTIONS(3411), - [sym_undefined] = ACTIONS(3411), - [anon_sym_AT] = ACTIONS(3411), - [anon_sym_static] = ACTIONS(3411), - [anon_sym_readonly] = ACTIONS(3411), - [anon_sym_get] = ACTIONS(3411), - [anon_sym_set] = ACTIONS(3411), - [anon_sym_declare] = ACTIONS(3411), - [anon_sym_public] = ACTIONS(3411), - [anon_sym_private] = ACTIONS(3411), - [anon_sym_protected] = ACTIONS(3411), - [anon_sym_override] = ACTIONS(3411), - [anon_sym_module] = ACTIONS(3411), - [anon_sym_any] = ACTIONS(3411), - [anon_sym_number] = ACTIONS(3411), - [anon_sym_boolean] = ACTIONS(3411), - [anon_sym_string] = ACTIONS(3411), - [anon_sym_symbol] = ACTIONS(3411), - [anon_sym_object] = ACTIONS(3411), - [anon_sym_abstract] = ACTIONS(3411), - [anon_sym_interface] = ACTIONS(3411), - [anon_sym_enum] = ACTIONS(3411), - [sym_html_comment] = ACTIONS(5), - }, - [1632] = { - [sym_comment] = STATE(1632), - [ts_builtin_sym_end] = ACTIONS(3607), - [sym_identifier] = ACTIONS(3323), - [anon_sym_export] = ACTIONS(3323), - [anon_sym_type] = ACTIONS(3323), - [anon_sym_namespace] = ACTIONS(3323), - [anon_sym_LBRACE] = ACTIONS(3323), - [anon_sym_RBRACE] = ACTIONS(3323), - [anon_sym_typeof] = ACTIONS(3323), - [anon_sym_import] = ACTIONS(3323), - [anon_sym_with] = ACTIONS(3323), - [anon_sym_var] = ACTIONS(3323), - [anon_sym_let] = ACTIONS(3323), - [anon_sym_const] = ACTIONS(3323), - [anon_sym_BANG] = ACTIONS(3323), - [anon_sym_if] = ACTIONS(3323), - [anon_sym_switch] = ACTIONS(3323), - [anon_sym_for] = ACTIONS(3323), - [anon_sym_LPAREN] = ACTIONS(3323), - [anon_sym_await] = ACTIONS(3323), - [anon_sym_while] = ACTIONS(3323), - [anon_sym_do] = ACTIONS(3323), - [anon_sym_try] = ACTIONS(3323), - [anon_sym_break] = ACTIONS(3323), - [anon_sym_continue] = ACTIONS(3323), - [anon_sym_debugger] = ACTIONS(3323), - [anon_sym_return] = ACTIONS(3323), - [anon_sym_throw] = ACTIONS(3323), - [anon_sym_SEMI] = ACTIONS(3323), - [anon_sym_yield] = ACTIONS(3323), - [anon_sym_LBRACK] = ACTIONS(3323), - [anon_sym_LTtemplate_GT] = ACTIONS(3323), - [anon_sym_DQUOTE] = ACTIONS(3323), - [anon_sym_SQUOTE] = ACTIONS(3323), - [anon_sym_class] = ACTIONS(3323), - [anon_sym_async] = ACTIONS(3323), - [anon_sym_function] = ACTIONS(3323), - [anon_sym_new] = ACTIONS(3323), - [anon_sym_using] = ACTIONS(3323), - [anon_sym_PLUS] = ACTIONS(3323), - [anon_sym_DASH] = ACTIONS(3323), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_LT] = ACTIONS(3323), - [anon_sym_TILDE] = ACTIONS(3323), - [anon_sym_void] = ACTIONS(3323), - [anon_sym_delete] = ACTIONS(3323), - [anon_sym_PLUS_PLUS] = ACTIONS(3323), - [anon_sym_DASH_DASH] = ACTIONS(3323), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3323), - [sym_number] = ACTIONS(3323), - [sym_private_property_identifier] = ACTIONS(3323), - [sym_this] = ACTIONS(3323), - [sym_super] = ACTIONS(3323), - [sym_true] = ACTIONS(3323), - [sym_false] = ACTIONS(3323), - [sym_null] = ACTIONS(3323), - [sym_undefined] = ACTIONS(3323), - [anon_sym_AT] = ACTIONS(3323), - [anon_sym_static] = ACTIONS(3323), - [anon_sym_readonly] = ACTIONS(3323), - [anon_sym_get] = ACTIONS(3323), - [anon_sym_set] = ACTIONS(3323), - [anon_sym_declare] = ACTIONS(3323), - [anon_sym_public] = ACTIONS(3323), - [anon_sym_private] = ACTIONS(3323), - [anon_sym_protected] = ACTIONS(3323), - [anon_sym_override] = ACTIONS(3323), - [anon_sym_module] = ACTIONS(3323), - [anon_sym_any] = ACTIONS(3323), - [anon_sym_number] = ACTIONS(3323), - [anon_sym_boolean] = ACTIONS(3323), - [anon_sym_string] = ACTIONS(3323), - [anon_sym_symbol] = ACTIONS(3323), - [anon_sym_object] = ACTIONS(3323), - [anon_sym_abstract] = ACTIONS(3323), - [anon_sym_interface] = ACTIONS(3323), - [anon_sym_enum] = ACTIONS(3323), - [sym_html_comment] = ACTIONS(5), - }, - [1633] = { - [sym_comment] = STATE(1633), - [ts_builtin_sym_end] = ACTIONS(3561), - [sym_identifier] = ACTIONS(3413), - [anon_sym_export] = ACTIONS(3413), - [anon_sym_type] = ACTIONS(3413), - [anon_sym_namespace] = ACTIONS(3413), - [anon_sym_LBRACE] = ACTIONS(3413), - [anon_sym_RBRACE] = ACTIONS(3413), - [anon_sym_typeof] = ACTIONS(3413), - [anon_sym_import] = ACTIONS(3413), - [anon_sym_with] = ACTIONS(3413), - [anon_sym_var] = ACTIONS(3413), - [anon_sym_let] = ACTIONS(3413), - [anon_sym_const] = ACTIONS(3413), - [anon_sym_BANG] = ACTIONS(3413), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_switch] = ACTIONS(3413), - [anon_sym_for] = ACTIONS(3413), - [anon_sym_LPAREN] = ACTIONS(3413), - [anon_sym_await] = ACTIONS(3413), - [anon_sym_while] = ACTIONS(3413), - [anon_sym_do] = ACTIONS(3413), - [anon_sym_try] = ACTIONS(3413), - [anon_sym_break] = ACTIONS(3413), - [anon_sym_continue] = ACTIONS(3413), - [anon_sym_debugger] = ACTIONS(3413), - [anon_sym_return] = ACTIONS(3413), - [anon_sym_throw] = ACTIONS(3413), - [anon_sym_SEMI] = ACTIONS(3413), - [anon_sym_yield] = ACTIONS(3413), - [anon_sym_LBRACK] = ACTIONS(3413), - [anon_sym_LTtemplate_GT] = ACTIONS(3413), - [anon_sym_DQUOTE] = ACTIONS(3413), - [anon_sym_SQUOTE] = ACTIONS(3413), - [anon_sym_class] = ACTIONS(3413), - [anon_sym_async] = ACTIONS(3413), - [anon_sym_function] = ACTIONS(3413), - [anon_sym_new] = ACTIONS(3413), - [anon_sym_using] = ACTIONS(3413), - [anon_sym_PLUS] = ACTIONS(3413), - [anon_sym_DASH] = ACTIONS(3413), - [anon_sym_SLASH] = ACTIONS(3413), - [anon_sym_LT] = ACTIONS(3413), - [anon_sym_TILDE] = ACTIONS(3413), - [anon_sym_void] = ACTIONS(3413), - [anon_sym_delete] = ACTIONS(3413), - [anon_sym_PLUS_PLUS] = ACTIONS(3413), - [anon_sym_DASH_DASH] = ACTIONS(3413), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3413), - [sym_number] = ACTIONS(3413), - [sym_private_property_identifier] = ACTIONS(3413), - [sym_this] = ACTIONS(3413), - [sym_super] = ACTIONS(3413), - [sym_true] = ACTIONS(3413), - [sym_false] = ACTIONS(3413), - [sym_null] = ACTIONS(3413), - [sym_undefined] = ACTIONS(3413), - [anon_sym_AT] = ACTIONS(3413), - [anon_sym_static] = ACTIONS(3413), - [anon_sym_readonly] = ACTIONS(3413), - [anon_sym_get] = ACTIONS(3413), - [anon_sym_set] = ACTIONS(3413), - [anon_sym_declare] = ACTIONS(3413), - [anon_sym_public] = ACTIONS(3413), - [anon_sym_private] = ACTIONS(3413), - [anon_sym_protected] = ACTIONS(3413), - [anon_sym_override] = ACTIONS(3413), - [anon_sym_module] = ACTIONS(3413), - [anon_sym_any] = ACTIONS(3413), - [anon_sym_number] = ACTIONS(3413), - [anon_sym_boolean] = ACTIONS(3413), - [anon_sym_string] = ACTIONS(3413), - [anon_sym_symbol] = ACTIONS(3413), - [anon_sym_object] = ACTIONS(3413), - [anon_sym_abstract] = ACTIONS(3413), - [anon_sym_interface] = ACTIONS(3413), - [anon_sym_enum] = ACTIONS(3413), - [sym_html_comment] = ACTIONS(5), - }, - [1634] = { - [sym_comment] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(3581), - [sym_identifier] = ACTIONS(3271), - [anon_sym_export] = ACTIONS(3271), - [anon_sym_type] = ACTIONS(3271), - [anon_sym_namespace] = ACTIONS(3271), - [anon_sym_LBRACE] = ACTIONS(3271), - [anon_sym_RBRACE] = ACTIONS(3271), - [anon_sym_typeof] = ACTIONS(3271), - [anon_sym_import] = ACTIONS(3271), - [anon_sym_with] = ACTIONS(3271), - [anon_sym_var] = ACTIONS(3271), - [anon_sym_let] = ACTIONS(3271), - [anon_sym_const] = ACTIONS(3271), - [anon_sym_BANG] = ACTIONS(3271), - [anon_sym_if] = ACTIONS(3271), - [anon_sym_switch] = ACTIONS(3271), - [anon_sym_for] = ACTIONS(3271), - [anon_sym_LPAREN] = ACTIONS(3271), - [anon_sym_await] = ACTIONS(3271), - [anon_sym_while] = ACTIONS(3271), - [anon_sym_do] = ACTIONS(3271), - [anon_sym_try] = ACTIONS(3271), - [anon_sym_break] = ACTIONS(3271), - [anon_sym_continue] = ACTIONS(3271), - [anon_sym_debugger] = ACTIONS(3271), - [anon_sym_return] = ACTIONS(3271), - [anon_sym_throw] = ACTIONS(3271), - [anon_sym_SEMI] = ACTIONS(3271), - [anon_sym_yield] = ACTIONS(3271), - [anon_sym_LBRACK] = ACTIONS(3271), - [anon_sym_LTtemplate_GT] = ACTIONS(3271), - [anon_sym_DQUOTE] = ACTIONS(3271), - [anon_sym_SQUOTE] = ACTIONS(3271), - [anon_sym_class] = ACTIONS(3271), - [anon_sym_async] = ACTIONS(3271), - [anon_sym_function] = ACTIONS(3271), - [anon_sym_new] = ACTIONS(3271), - [anon_sym_using] = ACTIONS(3271), - [anon_sym_PLUS] = ACTIONS(3271), - [anon_sym_DASH] = ACTIONS(3271), - [anon_sym_SLASH] = ACTIONS(3271), - [anon_sym_LT] = ACTIONS(3271), - [anon_sym_TILDE] = ACTIONS(3271), - [anon_sym_void] = ACTIONS(3271), - [anon_sym_delete] = ACTIONS(3271), - [anon_sym_PLUS_PLUS] = ACTIONS(3271), - [anon_sym_DASH_DASH] = ACTIONS(3271), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3271), - [sym_number] = ACTIONS(3271), - [sym_private_property_identifier] = ACTIONS(3271), - [sym_this] = ACTIONS(3271), - [sym_super] = ACTIONS(3271), - [sym_true] = ACTIONS(3271), - [sym_false] = ACTIONS(3271), - [sym_null] = ACTIONS(3271), - [sym_undefined] = ACTIONS(3271), - [anon_sym_AT] = ACTIONS(3271), - [anon_sym_static] = ACTIONS(3271), - [anon_sym_readonly] = ACTIONS(3271), - [anon_sym_get] = ACTIONS(3271), - [anon_sym_set] = ACTIONS(3271), - [anon_sym_declare] = ACTIONS(3271), - [anon_sym_public] = ACTIONS(3271), - [anon_sym_private] = ACTIONS(3271), - [anon_sym_protected] = ACTIONS(3271), - [anon_sym_override] = ACTIONS(3271), - [anon_sym_module] = ACTIONS(3271), - [anon_sym_any] = ACTIONS(3271), - [anon_sym_number] = ACTIONS(3271), - [anon_sym_boolean] = ACTIONS(3271), - [anon_sym_string] = ACTIONS(3271), - [anon_sym_symbol] = ACTIONS(3271), - [anon_sym_object] = ACTIONS(3271), - [anon_sym_abstract] = ACTIONS(3271), - [anon_sym_interface] = ACTIONS(3271), - [anon_sym_enum] = ACTIONS(3271), - [sym_html_comment] = ACTIONS(5), - }, - [1635] = { - [sym_comment] = STATE(1635), - [ts_builtin_sym_end] = ACTIONS(3477), - [sym_identifier] = ACTIONS(3247), - [anon_sym_export] = ACTIONS(3247), - [anon_sym_type] = ACTIONS(3247), - [anon_sym_namespace] = ACTIONS(3247), - [anon_sym_LBRACE] = ACTIONS(3247), - [anon_sym_RBRACE] = ACTIONS(3247), - [anon_sym_typeof] = ACTIONS(3247), - [anon_sym_import] = ACTIONS(3247), - [anon_sym_with] = ACTIONS(3247), - [anon_sym_var] = ACTIONS(3247), - [anon_sym_let] = ACTIONS(3247), - [anon_sym_const] = ACTIONS(3247), - [anon_sym_BANG] = ACTIONS(3247), - [anon_sym_if] = ACTIONS(3247), - [anon_sym_switch] = ACTIONS(3247), - [anon_sym_for] = ACTIONS(3247), - [anon_sym_LPAREN] = ACTIONS(3247), - [anon_sym_await] = ACTIONS(3247), - [anon_sym_while] = ACTIONS(3247), - [anon_sym_do] = ACTIONS(3247), - [anon_sym_try] = ACTIONS(3247), - [anon_sym_break] = ACTIONS(3247), - [anon_sym_continue] = ACTIONS(3247), - [anon_sym_debugger] = ACTIONS(3247), - [anon_sym_return] = ACTIONS(3247), - [anon_sym_throw] = ACTIONS(3247), - [anon_sym_SEMI] = ACTIONS(3247), - [anon_sym_yield] = ACTIONS(3247), - [anon_sym_LBRACK] = ACTIONS(3247), - [anon_sym_LTtemplate_GT] = ACTIONS(3247), - [anon_sym_DQUOTE] = ACTIONS(3247), - [anon_sym_SQUOTE] = ACTIONS(3247), - [anon_sym_class] = ACTIONS(3247), - [anon_sym_async] = ACTIONS(3247), - [anon_sym_function] = ACTIONS(3247), - [anon_sym_new] = ACTIONS(3247), - [anon_sym_using] = ACTIONS(3247), - [anon_sym_PLUS] = ACTIONS(3247), - [anon_sym_DASH] = ACTIONS(3247), - [anon_sym_SLASH] = ACTIONS(3247), - [anon_sym_LT] = ACTIONS(3247), - [anon_sym_TILDE] = ACTIONS(3247), - [anon_sym_void] = ACTIONS(3247), - [anon_sym_delete] = ACTIONS(3247), - [anon_sym_PLUS_PLUS] = ACTIONS(3247), - [anon_sym_DASH_DASH] = ACTIONS(3247), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3247), - [sym_number] = ACTIONS(3247), - [sym_private_property_identifier] = ACTIONS(3247), - [sym_this] = ACTIONS(3247), - [sym_super] = ACTIONS(3247), - [sym_true] = ACTIONS(3247), - [sym_false] = ACTIONS(3247), - [sym_null] = ACTIONS(3247), - [sym_undefined] = ACTIONS(3247), - [anon_sym_AT] = ACTIONS(3247), - [anon_sym_static] = ACTIONS(3247), - [anon_sym_readonly] = ACTIONS(3247), - [anon_sym_get] = ACTIONS(3247), - [anon_sym_set] = ACTIONS(3247), - [anon_sym_declare] = ACTIONS(3247), - [anon_sym_public] = ACTIONS(3247), - [anon_sym_private] = ACTIONS(3247), - [anon_sym_protected] = ACTIONS(3247), - [anon_sym_override] = ACTIONS(3247), - [anon_sym_module] = ACTIONS(3247), - [anon_sym_any] = ACTIONS(3247), - [anon_sym_number] = ACTIONS(3247), - [anon_sym_boolean] = ACTIONS(3247), - [anon_sym_string] = ACTIONS(3247), - [anon_sym_symbol] = ACTIONS(3247), - [anon_sym_object] = ACTIONS(3247), - [anon_sym_abstract] = ACTIONS(3247), - [anon_sym_interface] = ACTIONS(3247), - [anon_sym_enum] = ACTIONS(3247), - [sym_html_comment] = ACTIONS(5), - }, - [1636] = { - [sym_comment] = STATE(1636), - [ts_builtin_sym_end] = ACTIONS(3609), - [sym_identifier] = ACTIONS(3263), - [anon_sym_export] = ACTIONS(3263), - [anon_sym_type] = ACTIONS(3263), - [anon_sym_namespace] = ACTIONS(3263), - [anon_sym_LBRACE] = ACTIONS(3263), - [anon_sym_RBRACE] = ACTIONS(3263), - [anon_sym_typeof] = ACTIONS(3263), - [anon_sym_import] = ACTIONS(3263), - [anon_sym_with] = ACTIONS(3263), - [anon_sym_var] = ACTIONS(3263), - [anon_sym_let] = ACTIONS(3263), - [anon_sym_const] = ACTIONS(3263), - [anon_sym_BANG] = ACTIONS(3263), - [anon_sym_if] = ACTIONS(3263), - [anon_sym_switch] = ACTIONS(3263), - [anon_sym_for] = ACTIONS(3263), - [anon_sym_LPAREN] = ACTIONS(3263), - [anon_sym_await] = ACTIONS(3263), - [anon_sym_while] = ACTIONS(3263), - [anon_sym_do] = ACTIONS(3263), - [anon_sym_try] = ACTIONS(3263), - [anon_sym_break] = ACTIONS(3263), - [anon_sym_continue] = ACTIONS(3263), - [anon_sym_debugger] = ACTIONS(3263), - [anon_sym_return] = ACTIONS(3263), - [anon_sym_throw] = ACTIONS(3263), - [anon_sym_SEMI] = ACTIONS(3263), - [anon_sym_yield] = ACTIONS(3263), - [anon_sym_LBRACK] = ACTIONS(3263), - [anon_sym_LTtemplate_GT] = ACTIONS(3263), - [anon_sym_DQUOTE] = ACTIONS(3263), - [anon_sym_SQUOTE] = ACTIONS(3263), - [anon_sym_class] = ACTIONS(3263), - [anon_sym_async] = ACTIONS(3263), - [anon_sym_function] = ACTIONS(3263), - [anon_sym_new] = ACTIONS(3263), - [anon_sym_using] = ACTIONS(3263), - [anon_sym_PLUS] = ACTIONS(3263), - [anon_sym_DASH] = ACTIONS(3263), - [anon_sym_SLASH] = ACTIONS(3263), - [anon_sym_LT] = ACTIONS(3263), - [anon_sym_TILDE] = ACTIONS(3263), - [anon_sym_void] = ACTIONS(3263), - [anon_sym_delete] = ACTIONS(3263), - [anon_sym_PLUS_PLUS] = ACTIONS(3263), - [anon_sym_DASH_DASH] = ACTIONS(3263), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3263), - [sym_number] = ACTIONS(3263), - [sym_private_property_identifier] = ACTIONS(3263), - [sym_this] = ACTIONS(3263), - [sym_super] = ACTIONS(3263), - [sym_true] = ACTIONS(3263), - [sym_false] = ACTIONS(3263), - [sym_null] = ACTIONS(3263), - [sym_undefined] = ACTIONS(3263), - [anon_sym_AT] = ACTIONS(3263), - [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_abstract] = ACTIONS(3263), - [anon_sym_interface] = ACTIONS(3263), - [anon_sym_enum] = ACTIONS(3263), - [sym_html_comment] = ACTIONS(5), - }, - [1637] = { - [sym_comment] = STATE(1637), - [ts_builtin_sym_end] = ACTIONS(3663), - [sym_identifier] = ACTIONS(3253), - [anon_sym_export] = ACTIONS(3253), - [anon_sym_type] = ACTIONS(3253), - [anon_sym_namespace] = ACTIONS(3253), - [anon_sym_LBRACE] = ACTIONS(3253), - [anon_sym_RBRACE] = ACTIONS(3253), - [anon_sym_typeof] = ACTIONS(3253), - [anon_sym_import] = ACTIONS(3253), - [anon_sym_with] = ACTIONS(3253), - [anon_sym_var] = ACTIONS(3253), - [anon_sym_let] = ACTIONS(3253), - [anon_sym_const] = ACTIONS(3253), - [anon_sym_BANG] = ACTIONS(3253), - [anon_sym_if] = ACTIONS(3253), - [anon_sym_switch] = ACTIONS(3253), - [anon_sym_for] = ACTIONS(3253), - [anon_sym_LPAREN] = ACTIONS(3253), - [anon_sym_await] = ACTIONS(3253), - [anon_sym_while] = ACTIONS(3253), - [anon_sym_do] = ACTIONS(3253), - [anon_sym_try] = ACTIONS(3253), - [anon_sym_break] = ACTIONS(3253), - [anon_sym_continue] = ACTIONS(3253), - [anon_sym_debugger] = ACTIONS(3253), - [anon_sym_return] = ACTIONS(3253), - [anon_sym_throw] = ACTIONS(3253), - [anon_sym_SEMI] = ACTIONS(3253), - [anon_sym_yield] = ACTIONS(3253), - [anon_sym_LBRACK] = ACTIONS(3253), - [anon_sym_LTtemplate_GT] = ACTIONS(3253), - [anon_sym_DQUOTE] = ACTIONS(3253), - [anon_sym_SQUOTE] = ACTIONS(3253), - [anon_sym_class] = ACTIONS(3253), - [anon_sym_async] = ACTIONS(3253), - [anon_sym_function] = ACTIONS(3253), - [anon_sym_new] = ACTIONS(3253), - [anon_sym_using] = ACTIONS(3253), - [anon_sym_PLUS] = ACTIONS(3253), - [anon_sym_DASH] = ACTIONS(3253), - [anon_sym_SLASH] = ACTIONS(3253), - [anon_sym_LT] = ACTIONS(3253), - [anon_sym_TILDE] = ACTIONS(3253), - [anon_sym_void] = ACTIONS(3253), - [anon_sym_delete] = ACTIONS(3253), - [anon_sym_PLUS_PLUS] = ACTIONS(3253), - [anon_sym_DASH_DASH] = ACTIONS(3253), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3253), - [sym_number] = ACTIONS(3253), - [sym_private_property_identifier] = ACTIONS(3253), - [sym_this] = ACTIONS(3253), - [sym_super] = ACTIONS(3253), - [sym_true] = ACTIONS(3253), - [sym_false] = ACTIONS(3253), - [sym_null] = ACTIONS(3253), - [sym_undefined] = ACTIONS(3253), - [anon_sym_AT] = ACTIONS(3253), - [anon_sym_static] = ACTIONS(3253), - [anon_sym_readonly] = ACTIONS(3253), - [anon_sym_get] = ACTIONS(3253), - [anon_sym_set] = ACTIONS(3253), - [anon_sym_declare] = ACTIONS(3253), - [anon_sym_public] = ACTIONS(3253), - [anon_sym_private] = ACTIONS(3253), - [anon_sym_protected] = ACTIONS(3253), - [anon_sym_override] = ACTIONS(3253), - [anon_sym_module] = ACTIONS(3253), - [anon_sym_any] = ACTIONS(3253), - [anon_sym_number] = ACTIONS(3253), - [anon_sym_boolean] = ACTIONS(3253), - [anon_sym_string] = ACTIONS(3253), - [anon_sym_symbol] = ACTIONS(3253), - [anon_sym_object] = ACTIONS(3253), - [anon_sym_abstract] = ACTIONS(3253), - [anon_sym_interface] = ACTIONS(3253), - [anon_sym_enum] = ACTIONS(3253), - [sym_html_comment] = ACTIONS(5), - }, - [1638] = { - [sym_comment] = STATE(1638), - [ts_builtin_sym_end] = ACTIONS(2264), - [sym_identifier] = ACTIONS(2262), - [anon_sym_export] = ACTIONS(2262), - [anon_sym_type] = ACTIONS(2262), - [anon_sym_namespace] = ACTIONS(2262), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_RBRACE] = ACTIONS(2262), - [anon_sym_typeof] = ACTIONS(2262), - [anon_sym_import] = ACTIONS(2262), - [anon_sym_with] = ACTIONS(2262), - [anon_sym_var] = ACTIONS(2262), - [anon_sym_let] = ACTIONS(2262), - [anon_sym_const] = ACTIONS(2262), - [anon_sym_BANG] = ACTIONS(2262), - [anon_sym_if] = ACTIONS(2262), - [anon_sym_switch] = ACTIONS(2262), - [anon_sym_for] = ACTIONS(2262), - [anon_sym_LPAREN] = ACTIONS(2262), - [anon_sym_await] = ACTIONS(2262), - [anon_sym_while] = ACTIONS(2262), - [anon_sym_do] = ACTIONS(2262), - [anon_sym_try] = ACTIONS(2262), - [anon_sym_break] = ACTIONS(2262), - [anon_sym_continue] = ACTIONS(2262), - [anon_sym_debugger] = ACTIONS(2262), - [anon_sym_return] = ACTIONS(2262), - [anon_sym_throw] = ACTIONS(2262), - [anon_sym_SEMI] = ACTIONS(2262), - [anon_sym_yield] = ACTIONS(2262), - [anon_sym_LBRACK] = ACTIONS(2262), - [anon_sym_LTtemplate_GT] = ACTIONS(2262), - [anon_sym_DQUOTE] = ACTIONS(2262), - [anon_sym_SQUOTE] = ACTIONS(2262), - [anon_sym_class] = ACTIONS(2262), - [anon_sym_async] = ACTIONS(2262), - [anon_sym_function] = ACTIONS(2262), - [anon_sym_new] = ACTIONS(2262), - [anon_sym_using] = ACTIONS(2262), - [anon_sym_PLUS] = ACTIONS(2262), - [anon_sym_DASH] = ACTIONS(2262), - [anon_sym_SLASH] = ACTIONS(2262), - [anon_sym_LT] = ACTIONS(2262), - [anon_sym_TILDE] = ACTIONS(2262), - [anon_sym_void] = ACTIONS(2262), - [anon_sym_delete] = ACTIONS(2262), - [anon_sym_PLUS_PLUS] = ACTIONS(2262), - [anon_sym_DASH_DASH] = ACTIONS(2262), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2262), - [sym_number] = ACTIONS(2262), - [sym_private_property_identifier] = ACTIONS(2262), - [sym_this] = ACTIONS(2262), - [sym_super] = ACTIONS(2262), - [sym_true] = ACTIONS(2262), - [sym_false] = ACTIONS(2262), - [sym_null] = ACTIONS(2262), - [sym_undefined] = ACTIONS(2262), - [anon_sym_AT] = ACTIONS(2262), - [anon_sym_static] = ACTIONS(2262), - [anon_sym_readonly] = ACTIONS(2262), - [anon_sym_get] = ACTIONS(2262), - [anon_sym_set] = ACTIONS(2262), - [anon_sym_declare] = ACTIONS(2262), - [anon_sym_public] = ACTIONS(2262), - [anon_sym_private] = ACTIONS(2262), - [anon_sym_protected] = ACTIONS(2262), - [anon_sym_override] = ACTIONS(2262), - [anon_sym_module] = ACTIONS(2262), - [anon_sym_any] = ACTIONS(2262), - [anon_sym_number] = ACTIONS(2262), - [anon_sym_boolean] = ACTIONS(2262), - [anon_sym_string] = ACTIONS(2262), - [anon_sym_symbol] = ACTIONS(2262), - [anon_sym_object] = ACTIONS(2262), - [anon_sym_abstract] = ACTIONS(2262), - [anon_sym_interface] = ACTIONS(2262), - [anon_sym_enum] = ACTIONS(2262), - [sym_html_comment] = ACTIONS(5), - }, - [1639] = { - [sym_comment] = STATE(1639), - [ts_builtin_sym_end] = ACTIONS(3541), - [sym_identifier] = ACTIONS(3415), - [anon_sym_export] = ACTIONS(3415), - [anon_sym_type] = ACTIONS(3415), - [anon_sym_namespace] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(3415), - [anon_sym_RBRACE] = ACTIONS(3415), - [anon_sym_typeof] = ACTIONS(3415), - [anon_sym_import] = ACTIONS(3415), - [anon_sym_with] = ACTIONS(3415), - [anon_sym_var] = ACTIONS(3415), - [anon_sym_let] = ACTIONS(3415), - [anon_sym_const] = ACTIONS(3415), - [anon_sym_BANG] = ACTIONS(3415), - [anon_sym_if] = ACTIONS(3415), - [anon_sym_switch] = ACTIONS(3415), - [anon_sym_for] = ACTIONS(3415), - [anon_sym_LPAREN] = ACTIONS(3415), - [anon_sym_await] = ACTIONS(3415), - [anon_sym_while] = ACTIONS(3415), - [anon_sym_do] = ACTIONS(3415), - [anon_sym_try] = ACTIONS(3415), - [anon_sym_break] = ACTIONS(3415), - [anon_sym_continue] = ACTIONS(3415), - [anon_sym_debugger] = ACTIONS(3415), - [anon_sym_return] = ACTIONS(3415), - [anon_sym_throw] = ACTIONS(3415), - [anon_sym_SEMI] = ACTIONS(3415), - [anon_sym_yield] = ACTIONS(3415), - [anon_sym_LBRACK] = ACTIONS(3415), - [anon_sym_LTtemplate_GT] = ACTIONS(3415), - [anon_sym_DQUOTE] = ACTIONS(3415), - [anon_sym_SQUOTE] = ACTIONS(3415), - [anon_sym_class] = ACTIONS(3415), - [anon_sym_async] = ACTIONS(3415), - [anon_sym_function] = ACTIONS(3415), - [anon_sym_new] = ACTIONS(3415), - [anon_sym_using] = ACTIONS(3415), - [anon_sym_PLUS] = ACTIONS(3415), - [anon_sym_DASH] = ACTIONS(3415), - [anon_sym_SLASH] = ACTIONS(3415), - [anon_sym_LT] = ACTIONS(3415), - [anon_sym_TILDE] = ACTIONS(3415), - [anon_sym_void] = ACTIONS(3415), - [anon_sym_delete] = ACTIONS(3415), - [anon_sym_PLUS_PLUS] = ACTIONS(3415), - [anon_sym_DASH_DASH] = ACTIONS(3415), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3415), - [sym_number] = ACTIONS(3415), - [sym_private_property_identifier] = ACTIONS(3415), - [sym_this] = ACTIONS(3415), - [sym_super] = ACTIONS(3415), - [sym_true] = ACTIONS(3415), - [sym_false] = ACTIONS(3415), - [sym_null] = ACTIONS(3415), - [sym_undefined] = ACTIONS(3415), - [anon_sym_AT] = ACTIONS(3415), - [anon_sym_static] = ACTIONS(3415), - [anon_sym_readonly] = ACTIONS(3415), - [anon_sym_get] = ACTIONS(3415), - [anon_sym_set] = ACTIONS(3415), - [anon_sym_declare] = ACTIONS(3415), - [anon_sym_public] = ACTIONS(3415), - [anon_sym_private] = ACTIONS(3415), - [anon_sym_protected] = ACTIONS(3415), - [anon_sym_override] = ACTIONS(3415), - [anon_sym_module] = ACTIONS(3415), - [anon_sym_any] = ACTIONS(3415), - [anon_sym_number] = ACTIONS(3415), - [anon_sym_boolean] = ACTIONS(3415), - [anon_sym_string] = ACTIONS(3415), - [anon_sym_symbol] = ACTIONS(3415), - [anon_sym_object] = ACTIONS(3415), - [anon_sym_abstract] = ACTIONS(3415), - [anon_sym_interface] = ACTIONS(3415), - [anon_sym_enum] = ACTIONS(3415), - [sym_html_comment] = ACTIONS(5), - }, - [1640] = { - [sym_comment] = STATE(1640), - [ts_builtin_sym_end] = ACTIONS(3585), - [sym_identifier] = ACTIONS(3345), - [anon_sym_export] = ACTIONS(3345), - [anon_sym_type] = ACTIONS(3345), - [anon_sym_namespace] = ACTIONS(3345), - [anon_sym_LBRACE] = ACTIONS(3345), - [anon_sym_RBRACE] = ACTIONS(3345), - [anon_sym_typeof] = ACTIONS(3345), - [anon_sym_import] = ACTIONS(3345), - [anon_sym_with] = ACTIONS(3345), - [anon_sym_var] = ACTIONS(3345), - [anon_sym_let] = ACTIONS(3345), - [anon_sym_const] = ACTIONS(3345), - [anon_sym_BANG] = ACTIONS(3345), - [anon_sym_if] = ACTIONS(3345), - [anon_sym_switch] = ACTIONS(3345), - [anon_sym_for] = ACTIONS(3345), - [anon_sym_LPAREN] = ACTIONS(3345), - [anon_sym_await] = ACTIONS(3345), - [anon_sym_while] = ACTIONS(3345), - [anon_sym_do] = ACTIONS(3345), - [anon_sym_try] = ACTIONS(3345), - [anon_sym_break] = ACTIONS(3345), - [anon_sym_continue] = ACTIONS(3345), - [anon_sym_debugger] = ACTIONS(3345), - [anon_sym_return] = ACTIONS(3345), - [anon_sym_throw] = ACTIONS(3345), - [anon_sym_SEMI] = ACTIONS(3345), - [anon_sym_yield] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(3345), - [anon_sym_LTtemplate_GT] = ACTIONS(3345), - [anon_sym_DQUOTE] = ACTIONS(3345), - [anon_sym_SQUOTE] = ACTIONS(3345), - [anon_sym_class] = ACTIONS(3345), - [anon_sym_async] = ACTIONS(3345), - [anon_sym_function] = ACTIONS(3345), - [anon_sym_new] = ACTIONS(3345), - [anon_sym_using] = ACTIONS(3345), - [anon_sym_PLUS] = ACTIONS(3345), - [anon_sym_DASH] = ACTIONS(3345), - [anon_sym_SLASH] = ACTIONS(3345), - [anon_sym_LT] = ACTIONS(3345), - [anon_sym_TILDE] = ACTIONS(3345), - [anon_sym_void] = ACTIONS(3345), - [anon_sym_delete] = ACTIONS(3345), - [anon_sym_PLUS_PLUS] = ACTIONS(3345), - [anon_sym_DASH_DASH] = ACTIONS(3345), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3345), - [sym_number] = ACTIONS(3345), - [sym_private_property_identifier] = ACTIONS(3345), - [sym_this] = ACTIONS(3345), - [sym_super] = ACTIONS(3345), - [sym_true] = ACTIONS(3345), - [sym_false] = ACTIONS(3345), - [sym_null] = ACTIONS(3345), - [sym_undefined] = ACTIONS(3345), - [anon_sym_AT] = ACTIONS(3345), - [anon_sym_static] = ACTIONS(3345), - [anon_sym_readonly] = ACTIONS(3345), - [anon_sym_get] = ACTIONS(3345), - [anon_sym_set] = ACTIONS(3345), - [anon_sym_declare] = ACTIONS(3345), - [anon_sym_public] = ACTIONS(3345), - [anon_sym_private] = ACTIONS(3345), - [anon_sym_protected] = ACTIONS(3345), - [anon_sym_override] = ACTIONS(3345), - [anon_sym_module] = ACTIONS(3345), - [anon_sym_any] = ACTIONS(3345), - [anon_sym_number] = ACTIONS(3345), - [anon_sym_boolean] = ACTIONS(3345), - [anon_sym_string] = ACTIONS(3345), - [anon_sym_symbol] = ACTIONS(3345), - [anon_sym_object] = ACTIONS(3345), - [anon_sym_abstract] = ACTIONS(3345), - [anon_sym_interface] = ACTIONS(3345), - [anon_sym_enum] = ACTIONS(3345), - [sym_html_comment] = ACTIONS(5), - }, - [1641] = { - [sym_comment] = STATE(1641), - [ts_builtin_sym_end] = ACTIONS(3613), - [sym_identifier] = ACTIONS(3227), - [anon_sym_export] = ACTIONS(3227), - [anon_sym_type] = ACTIONS(3227), - [anon_sym_namespace] = ACTIONS(3227), - [anon_sym_LBRACE] = ACTIONS(3227), - [anon_sym_RBRACE] = ACTIONS(3227), - [anon_sym_typeof] = ACTIONS(3227), - [anon_sym_import] = ACTIONS(3227), - [anon_sym_with] = ACTIONS(3227), - [anon_sym_var] = ACTIONS(3227), - [anon_sym_let] = ACTIONS(3227), - [anon_sym_const] = ACTIONS(3227), - [anon_sym_BANG] = ACTIONS(3227), - [anon_sym_if] = ACTIONS(3227), - [anon_sym_switch] = ACTIONS(3227), - [anon_sym_for] = ACTIONS(3227), - [anon_sym_LPAREN] = ACTIONS(3227), - [anon_sym_await] = ACTIONS(3227), - [anon_sym_while] = ACTIONS(3227), - [anon_sym_do] = ACTIONS(3227), - [anon_sym_try] = ACTIONS(3227), - [anon_sym_break] = ACTIONS(3227), - [anon_sym_continue] = ACTIONS(3227), - [anon_sym_debugger] = ACTIONS(3227), - [anon_sym_return] = ACTIONS(3227), - [anon_sym_throw] = ACTIONS(3227), - [anon_sym_SEMI] = ACTIONS(3227), - [anon_sym_yield] = ACTIONS(3227), - [anon_sym_LBRACK] = ACTIONS(3227), - [anon_sym_LTtemplate_GT] = ACTIONS(3227), - [anon_sym_DQUOTE] = ACTIONS(3227), - [anon_sym_SQUOTE] = ACTIONS(3227), - [anon_sym_class] = ACTIONS(3227), - [anon_sym_async] = ACTIONS(3227), - [anon_sym_function] = ACTIONS(3227), - [anon_sym_new] = ACTIONS(3227), - [anon_sym_using] = ACTIONS(3227), - [anon_sym_PLUS] = ACTIONS(3227), - [anon_sym_DASH] = ACTIONS(3227), - [anon_sym_SLASH] = ACTIONS(3227), - [anon_sym_LT] = ACTIONS(3227), - [anon_sym_TILDE] = ACTIONS(3227), - [anon_sym_void] = ACTIONS(3227), - [anon_sym_delete] = ACTIONS(3227), - [anon_sym_PLUS_PLUS] = ACTIONS(3227), - [anon_sym_DASH_DASH] = ACTIONS(3227), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3227), - [sym_number] = ACTIONS(3227), - [sym_private_property_identifier] = ACTIONS(3227), - [sym_this] = ACTIONS(3227), - [sym_super] = ACTIONS(3227), - [sym_true] = ACTIONS(3227), - [sym_false] = ACTIONS(3227), - [sym_null] = ACTIONS(3227), - [sym_undefined] = ACTIONS(3227), - [anon_sym_AT] = ACTIONS(3227), - [anon_sym_static] = ACTIONS(3227), - [anon_sym_readonly] = ACTIONS(3227), - [anon_sym_get] = ACTIONS(3227), - [anon_sym_set] = ACTIONS(3227), - [anon_sym_declare] = ACTIONS(3227), - [anon_sym_public] = ACTIONS(3227), - [anon_sym_private] = ACTIONS(3227), - [anon_sym_protected] = ACTIONS(3227), - [anon_sym_override] = ACTIONS(3227), - [anon_sym_module] = ACTIONS(3227), - [anon_sym_any] = ACTIONS(3227), - [anon_sym_number] = ACTIONS(3227), - [anon_sym_boolean] = ACTIONS(3227), - [anon_sym_string] = ACTIONS(3227), - [anon_sym_symbol] = ACTIONS(3227), - [anon_sym_object] = ACTIONS(3227), - [anon_sym_abstract] = ACTIONS(3227), - [anon_sym_interface] = ACTIONS(3227), - [anon_sym_enum] = ACTIONS(3227), - [sym_html_comment] = ACTIONS(5), - }, - [1642] = { - [sym_comment] = STATE(1642), - [ts_builtin_sym_end] = ACTIONS(3583), - [sym_identifier] = ACTIONS(3347), - [anon_sym_export] = ACTIONS(3347), - [anon_sym_type] = ACTIONS(3347), - [anon_sym_namespace] = ACTIONS(3347), - [anon_sym_LBRACE] = ACTIONS(3347), - [anon_sym_RBRACE] = ACTIONS(3347), - [anon_sym_typeof] = ACTIONS(3347), - [anon_sym_import] = ACTIONS(3347), - [anon_sym_with] = ACTIONS(3347), - [anon_sym_var] = ACTIONS(3347), - [anon_sym_let] = ACTIONS(3347), - [anon_sym_const] = ACTIONS(3347), - [anon_sym_BANG] = ACTIONS(3347), - [anon_sym_if] = ACTIONS(3347), - [anon_sym_switch] = ACTIONS(3347), - [anon_sym_for] = ACTIONS(3347), - [anon_sym_LPAREN] = ACTIONS(3347), - [anon_sym_await] = ACTIONS(3347), - [anon_sym_while] = ACTIONS(3347), - [anon_sym_do] = ACTIONS(3347), - [anon_sym_try] = ACTIONS(3347), - [anon_sym_break] = ACTIONS(3347), - [anon_sym_continue] = ACTIONS(3347), - [anon_sym_debugger] = ACTIONS(3347), - [anon_sym_return] = ACTIONS(3347), - [anon_sym_throw] = ACTIONS(3347), - [anon_sym_SEMI] = ACTIONS(3347), - [anon_sym_yield] = ACTIONS(3347), - [anon_sym_LBRACK] = ACTIONS(3347), - [anon_sym_LTtemplate_GT] = ACTIONS(3347), - [anon_sym_DQUOTE] = ACTIONS(3347), - [anon_sym_SQUOTE] = ACTIONS(3347), - [anon_sym_class] = ACTIONS(3347), - [anon_sym_async] = ACTIONS(3347), - [anon_sym_function] = ACTIONS(3347), - [anon_sym_new] = ACTIONS(3347), - [anon_sym_using] = ACTIONS(3347), - [anon_sym_PLUS] = ACTIONS(3347), - [anon_sym_DASH] = ACTIONS(3347), - [anon_sym_SLASH] = ACTIONS(3347), - [anon_sym_LT] = ACTIONS(3347), - [anon_sym_TILDE] = ACTIONS(3347), - [anon_sym_void] = ACTIONS(3347), - [anon_sym_delete] = ACTIONS(3347), - [anon_sym_PLUS_PLUS] = ACTIONS(3347), - [anon_sym_DASH_DASH] = ACTIONS(3347), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3347), - [sym_number] = ACTIONS(3347), - [sym_private_property_identifier] = ACTIONS(3347), - [sym_this] = ACTIONS(3347), - [sym_super] = ACTIONS(3347), - [sym_true] = ACTIONS(3347), - [sym_false] = ACTIONS(3347), - [sym_null] = ACTIONS(3347), - [sym_undefined] = ACTIONS(3347), - [anon_sym_AT] = ACTIONS(3347), - [anon_sym_static] = ACTIONS(3347), - [anon_sym_readonly] = ACTIONS(3347), - [anon_sym_get] = ACTIONS(3347), - [anon_sym_set] = ACTIONS(3347), - [anon_sym_declare] = ACTIONS(3347), - [anon_sym_public] = ACTIONS(3347), - [anon_sym_private] = ACTIONS(3347), - [anon_sym_protected] = ACTIONS(3347), - [anon_sym_override] = ACTIONS(3347), - [anon_sym_module] = ACTIONS(3347), - [anon_sym_any] = ACTIONS(3347), - [anon_sym_number] = ACTIONS(3347), - [anon_sym_boolean] = ACTIONS(3347), - [anon_sym_string] = ACTIONS(3347), - [anon_sym_symbol] = ACTIONS(3347), - [anon_sym_object] = ACTIONS(3347), - [anon_sym_abstract] = ACTIONS(3347), - [anon_sym_interface] = ACTIONS(3347), - [anon_sym_enum] = ACTIONS(3347), - [sym_html_comment] = ACTIONS(5), - }, - [1643] = { - [sym_comment] = STATE(1643), - [ts_builtin_sym_end] = ACTIONS(3615), - [sym_identifier] = ACTIONS(3229), - [anon_sym_export] = ACTIONS(3229), - [anon_sym_type] = ACTIONS(3229), - [anon_sym_namespace] = ACTIONS(3229), - [anon_sym_LBRACE] = ACTIONS(3229), - [anon_sym_RBRACE] = ACTIONS(3229), - [anon_sym_typeof] = ACTIONS(3229), - [anon_sym_import] = ACTIONS(3229), - [anon_sym_with] = ACTIONS(3229), - [anon_sym_var] = ACTIONS(3229), - [anon_sym_let] = ACTIONS(3229), - [anon_sym_const] = ACTIONS(3229), - [anon_sym_BANG] = ACTIONS(3229), - [anon_sym_if] = ACTIONS(3229), - [anon_sym_switch] = ACTIONS(3229), - [anon_sym_for] = ACTIONS(3229), - [anon_sym_LPAREN] = ACTIONS(3229), - [anon_sym_await] = ACTIONS(3229), - [anon_sym_while] = ACTIONS(3229), - [anon_sym_do] = ACTIONS(3229), - [anon_sym_try] = ACTIONS(3229), - [anon_sym_break] = ACTIONS(3229), - [anon_sym_continue] = ACTIONS(3229), - [anon_sym_debugger] = ACTIONS(3229), - [anon_sym_return] = ACTIONS(3229), - [anon_sym_throw] = ACTIONS(3229), - [anon_sym_SEMI] = ACTIONS(3229), - [anon_sym_yield] = ACTIONS(3229), - [anon_sym_LBRACK] = ACTIONS(3229), - [anon_sym_LTtemplate_GT] = ACTIONS(3229), - [anon_sym_DQUOTE] = ACTIONS(3229), - [anon_sym_SQUOTE] = ACTIONS(3229), - [anon_sym_class] = ACTIONS(3229), - [anon_sym_async] = ACTIONS(3229), - [anon_sym_function] = ACTIONS(3229), - [anon_sym_new] = ACTIONS(3229), - [anon_sym_using] = ACTIONS(3229), - [anon_sym_PLUS] = ACTIONS(3229), - [anon_sym_DASH] = ACTIONS(3229), - [anon_sym_SLASH] = ACTIONS(3229), - [anon_sym_LT] = ACTIONS(3229), - [anon_sym_TILDE] = ACTIONS(3229), - [anon_sym_void] = ACTIONS(3229), - [anon_sym_delete] = ACTIONS(3229), - [anon_sym_PLUS_PLUS] = ACTIONS(3229), - [anon_sym_DASH_DASH] = ACTIONS(3229), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3229), - [sym_number] = ACTIONS(3229), - [sym_private_property_identifier] = ACTIONS(3229), - [sym_this] = ACTIONS(3229), - [sym_super] = ACTIONS(3229), - [sym_true] = ACTIONS(3229), - [sym_false] = ACTIONS(3229), - [sym_null] = ACTIONS(3229), - [sym_undefined] = ACTIONS(3229), - [anon_sym_AT] = ACTIONS(3229), - [anon_sym_static] = ACTIONS(3229), - [anon_sym_readonly] = ACTIONS(3229), - [anon_sym_get] = ACTIONS(3229), - [anon_sym_set] = ACTIONS(3229), - [anon_sym_declare] = ACTIONS(3229), - [anon_sym_public] = ACTIONS(3229), - [anon_sym_private] = ACTIONS(3229), - [anon_sym_protected] = ACTIONS(3229), - [anon_sym_override] = ACTIONS(3229), - [anon_sym_module] = ACTIONS(3229), - [anon_sym_any] = ACTIONS(3229), - [anon_sym_number] = ACTIONS(3229), - [anon_sym_boolean] = ACTIONS(3229), - [anon_sym_string] = ACTIONS(3229), - [anon_sym_symbol] = ACTIONS(3229), - [anon_sym_object] = ACTIONS(3229), - [anon_sym_abstract] = ACTIONS(3229), - [anon_sym_interface] = ACTIONS(3229), - [anon_sym_enum] = ACTIONS(3229), - [sym_html_comment] = ACTIONS(5), - }, - [1644] = { - [sym_comment] = STATE(1644), - [ts_builtin_sym_end] = ACTIONS(3673), - [sym_identifier] = ACTIONS(3425), - [anon_sym_export] = ACTIONS(3425), - [anon_sym_type] = ACTIONS(3425), - [anon_sym_namespace] = ACTIONS(3425), - [anon_sym_LBRACE] = ACTIONS(3425), - [anon_sym_RBRACE] = ACTIONS(3425), - [anon_sym_typeof] = ACTIONS(3425), - [anon_sym_import] = ACTIONS(3425), - [anon_sym_with] = ACTIONS(3425), - [anon_sym_var] = ACTIONS(3425), - [anon_sym_let] = ACTIONS(3425), - [anon_sym_const] = ACTIONS(3425), - [anon_sym_BANG] = ACTIONS(3425), - [anon_sym_if] = ACTIONS(3425), - [anon_sym_switch] = ACTIONS(3425), - [anon_sym_for] = ACTIONS(3425), - [anon_sym_LPAREN] = ACTIONS(3425), - [anon_sym_await] = ACTIONS(3425), - [anon_sym_while] = ACTIONS(3425), - [anon_sym_do] = ACTIONS(3425), - [anon_sym_try] = ACTIONS(3425), - [anon_sym_break] = ACTIONS(3425), - [anon_sym_continue] = ACTIONS(3425), - [anon_sym_debugger] = ACTIONS(3425), - [anon_sym_return] = ACTIONS(3425), - [anon_sym_throw] = ACTIONS(3425), - [anon_sym_SEMI] = ACTIONS(3425), - [anon_sym_yield] = ACTIONS(3425), - [anon_sym_LBRACK] = ACTIONS(3425), - [anon_sym_LTtemplate_GT] = ACTIONS(3425), - [anon_sym_DQUOTE] = ACTIONS(3425), - [anon_sym_SQUOTE] = ACTIONS(3425), - [anon_sym_class] = ACTIONS(3425), - [anon_sym_async] = ACTIONS(3425), - [anon_sym_function] = ACTIONS(3425), - [anon_sym_new] = ACTIONS(3425), - [anon_sym_using] = ACTIONS(3425), - [anon_sym_PLUS] = ACTIONS(3425), - [anon_sym_DASH] = ACTIONS(3425), - [anon_sym_SLASH] = ACTIONS(3425), - [anon_sym_LT] = ACTIONS(3425), - [anon_sym_TILDE] = ACTIONS(3425), - [anon_sym_void] = ACTIONS(3425), - [anon_sym_delete] = ACTIONS(3425), - [anon_sym_PLUS_PLUS] = ACTIONS(3425), - [anon_sym_DASH_DASH] = ACTIONS(3425), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3425), - [sym_number] = ACTIONS(3425), - [sym_private_property_identifier] = ACTIONS(3425), - [sym_this] = ACTIONS(3425), - [sym_super] = ACTIONS(3425), - [sym_true] = ACTIONS(3425), - [sym_false] = ACTIONS(3425), - [sym_null] = ACTIONS(3425), - [sym_undefined] = ACTIONS(3425), - [anon_sym_AT] = ACTIONS(3425), - [anon_sym_static] = ACTIONS(3425), - [anon_sym_readonly] = ACTIONS(3425), - [anon_sym_get] = ACTIONS(3425), - [anon_sym_set] = ACTIONS(3425), - [anon_sym_declare] = ACTIONS(3425), - [anon_sym_public] = ACTIONS(3425), - [anon_sym_private] = ACTIONS(3425), - [anon_sym_protected] = ACTIONS(3425), - [anon_sym_override] = ACTIONS(3425), - [anon_sym_module] = ACTIONS(3425), - [anon_sym_any] = ACTIONS(3425), - [anon_sym_number] = ACTIONS(3425), - [anon_sym_boolean] = ACTIONS(3425), - [anon_sym_string] = ACTIONS(3425), - [anon_sym_symbol] = ACTIONS(3425), - [anon_sym_object] = ACTIONS(3425), - [anon_sym_abstract] = ACTIONS(3425), - [anon_sym_interface] = ACTIONS(3425), - [anon_sym_enum] = ACTIONS(3425), - [sym_html_comment] = ACTIONS(5), - }, - [1645] = { - [sym_comment] = STATE(1645), - [ts_builtin_sym_end] = ACTIONS(3493), - [sym_identifier] = ACTIONS(3361), - [anon_sym_export] = ACTIONS(3361), - [anon_sym_type] = ACTIONS(3361), - [anon_sym_namespace] = ACTIONS(3361), - [anon_sym_LBRACE] = ACTIONS(3361), - [anon_sym_RBRACE] = ACTIONS(3361), - [anon_sym_typeof] = ACTIONS(3361), - [anon_sym_import] = ACTIONS(3361), - [anon_sym_with] = ACTIONS(3361), - [anon_sym_var] = ACTIONS(3361), - [anon_sym_let] = ACTIONS(3361), - [anon_sym_const] = ACTIONS(3361), - [anon_sym_BANG] = ACTIONS(3361), - [anon_sym_if] = ACTIONS(3361), - [anon_sym_switch] = ACTIONS(3361), - [anon_sym_for] = ACTIONS(3361), - [anon_sym_LPAREN] = ACTIONS(3361), - [anon_sym_await] = ACTIONS(3361), - [anon_sym_while] = ACTIONS(3361), - [anon_sym_do] = ACTIONS(3361), - [anon_sym_try] = ACTIONS(3361), - [anon_sym_break] = ACTIONS(3361), - [anon_sym_continue] = ACTIONS(3361), - [anon_sym_debugger] = ACTIONS(3361), - [anon_sym_return] = ACTIONS(3361), - [anon_sym_throw] = ACTIONS(3361), - [anon_sym_SEMI] = ACTIONS(3361), - [anon_sym_yield] = ACTIONS(3361), - [anon_sym_LBRACK] = ACTIONS(3361), - [anon_sym_LTtemplate_GT] = ACTIONS(3361), - [anon_sym_DQUOTE] = ACTIONS(3361), - [anon_sym_SQUOTE] = ACTIONS(3361), - [anon_sym_class] = ACTIONS(3361), - [anon_sym_async] = ACTIONS(3361), - [anon_sym_function] = ACTIONS(3361), - [anon_sym_new] = ACTIONS(3361), - [anon_sym_using] = ACTIONS(3361), - [anon_sym_PLUS] = ACTIONS(3361), - [anon_sym_DASH] = ACTIONS(3361), - [anon_sym_SLASH] = ACTIONS(3361), - [anon_sym_LT] = ACTIONS(3361), - [anon_sym_TILDE] = ACTIONS(3361), - [anon_sym_void] = ACTIONS(3361), - [anon_sym_delete] = ACTIONS(3361), - [anon_sym_PLUS_PLUS] = ACTIONS(3361), - [anon_sym_DASH_DASH] = ACTIONS(3361), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3361), - [sym_number] = ACTIONS(3361), - [sym_private_property_identifier] = ACTIONS(3361), - [sym_this] = ACTIONS(3361), - [sym_super] = ACTIONS(3361), - [sym_true] = ACTIONS(3361), - [sym_false] = ACTIONS(3361), - [sym_null] = ACTIONS(3361), - [sym_undefined] = ACTIONS(3361), - [anon_sym_AT] = ACTIONS(3361), - [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_abstract] = ACTIONS(3361), - [anon_sym_interface] = ACTIONS(3361), - [anon_sym_enum] = ACTIONS(3361), - [sym_html_comment] = ACTIONS(5), - }, - [1646] = { - [sym_comment] = STATE(1646), - [ts_builtin_sym_end] = ACTIONS(3551), - [sym_identifier] = ACTIONS(3375), - [anon_sym_export] = ACTIONS(3375), - [anon_sym_type] = ACTIONS(3375), - [anon_sym_namespace] = ACTIONS(3375), - [anon_sym_LBRACE] = ACTIONS(3375), - [anon_sym_RBRACE] = ACTIONS(3375), - [anon_sym_typeof] = ACTIONS(3375), - [anon_sym_import] = ACTIONS(3375), - [anon_sym_with] = ACTIONS(3375), - [anon_sym_var] = ACTIONS(3375), - [anon_sym_let] = ACTIONS(3375), - [anon_sym_const] = ACTIONS(3375), - [anon_sym_BANG] = ACTIONS(3375), - [anon_sym_if] = ACTIONS(3375), - [anon_sym_switch] = ACTIONS(3375), - [anon_sym_for] = ACTIONS(3375), - [anon_sym_LPAREN] = ACTIONS(3375), - [anon_sym_await] = ACTIONS(3375), - [anon_sym_while] = ACTIONS(3375), - [anon_sym_do] = ACTIONS(3375), - [anon_sym_try] = ACTIONS(3375), - [anon_sym_break] = ACTIONS(3375), - [anon_sym_continue] = ACTIONS(3375), - [anon_sym_debugger] = ACTIONS(3375), - [anon_sym_return] = ACTIONS(3375), - [anon_sym_throw] = ACTIONS(3375), - [anon_sym_SEMI] = ACTIONS(3375), - [anon_sym_yield] = ACTIONS(3375), - [anon_sym_LBRACK] = ACTIONS(3375), - [anon_sym_LTtemplate_GT] = ACTIONS(3375), - [anon_sym_DQUOTE] = ACTIONS(3375), - [anon_sym_SQUOTE] = ACTIONS(3375), - [anon_sym_class] = ACTIONS(3375), - [anon_sym_async] = ACTIONS(3375), - [anon_sym_function] = ACTIONS(3375), - [anon_sym_new] = ACTIONS(3375), - [anon_sym_using] = ACTIONS(3375), - [anon_sym_PLUS] = ACTIONS(3375), - [anon_sym_DASH] = ACTIONS(3375), - [anon_sym_SLASH] = ACTIONS(3375), - [anon_sym_LT] = ACTIONS(3375), - [anon_sym_TILDE] = ACTIONS(3375), - [anon_sym_void] = ACTIONS(3375), - [anon_sym_delete] = ACTIONS(3375), - [anon_sym_PLUS_PLUS] = ACTIONS(3375), - [anon_sym_DASH_DASH] = ACTIONS(3375), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3375), - [sym_number] = ACTIONS(3375), - [sym_private_property_identifier] = ACTIONS(3375), - [sym_this] = ACTIONS(3375), - [sym_super] = ACTIONS(3375), - [sym_true] = ACTIONS(3375), - [sym_false] = ACTIONS(3375), - [sym_null] = ACTIONS(3375), - [sym_undefined] = ACTIONS(3375), - [anon_sym_AT] = ACTIONS(3375), - [anon_sym_static] = ACTIONS(3375), - [anon_sym_readonly] = ACTIONS(3375), - [anon_sym_get] = ACTIONS(3375), - [anon_sym_set] = ACTIONS(3375), - [anon_sym_declare] = ACTIONS(3375), - [anon_sym_public] = ACTIONS(3375), - [anon_sym_private] = ACTIONS(3375), - [anon_sym_protected] = ACTIONS(3375), - [anon_sym_override] = ACTIONS(3375), - [anon_sym_module] = ACTIONS(3375), - [anon_sym_any] = ACTIONS(3375), - [anon_sym_number] = ACTIONS(3375), - [anon_sym_boolean] = ACTIONS(3375), - [anon_sym_string] = ACTIONS(3375), - [anon_sym_symbol] = ACTIONS(3375), - [anon_sym_object] = ACTIONS(3375), - [anon_sym_abstract] = ACTIONS(3375), - [anon_sym_interface] = ACTIONS(3375), - [anon_sym_enum] = ACTIONS(3375), - [sym_html_comment] = ACTIONS(5), - }, - [1647] = { - [sym_comment] = STATE(1647), - [ts_builtin_sym_end] = ACTIONS(2350), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(2176), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LTtemplate_GT] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_number] = ACTIONS(2176), - [sym_private_property_identifier] = ACTIONS(2176), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), - [sym_html_comment] = ACTIONS(5), - }, - [1648] = { - [sym_comment] = STATE(1648), - [ts_builtin_sym_end] = ACTIONS(3617), - [sym_identifier] = ACTIONS(3319), - [anon_sym_export] = ACTIONS(3319), - [anon_sym_type] = ACTIONS(3319), - [anon_sym_namespace] = ACTIONS(3319), - [anon_sym_LBRACE] = ACTIONS(3319), - [anon_sym_RBRACE] = ACTIONS(3319), - [anon_sym_typeof] = ACTIONS(3319), - [anon_sym_import] = ACTIONS(3319), - [anon_sym_with] = ACTIONS(3319), - [anon_sym_var] = ACTIONS(3319), - [anon_sym_let] = ACTIONS(3319), - [anon_sym_const] = ACTIONS(3319), - [anon_sym_BANG] = ACTIONS(3319), - [anon_sym_if] = ACTIONS(3319), - [anon_sym_switch] = ACTIONS(3319), - [anon_sym_for] = ACTIONS(3319), - [anon_sym_LPAREN] = ACTIONS(3319), - [anon_sym_await] = ACTIONS(3319), - [anon_sym_while] = ACTIONS(3319), - [anon_sym_do] = ACTIONS(3319), - [anon_sym_try] = ACTIONS(3319), - [anon_sym_break] = ACTIONS(3319), - [anon_sym_continue] = ACTIONS(3319), - [anon_sym_debugger] = ACTIONS(3319), - [anon_sym_return] = ACTIONS(3319), - [anon_sym_throw] = ACTIONS(3319), - [anon_sym_SEMI] = ACTIONS(3319), - [anon_sym_yield] = ACTIONS(3319), - [anon_sym_LBRACK] = ACTIONS(3319), - [anon_sym_LTtemplate_GT] = ACTIONS(3319), - [anon_sym_DQUOTE] = ACTIONS(3319), - [anon_sym_SQUOTE] = ACTIONS(3319), - [anon_sym_class] = ACTIONS(3319), - [anon_sym_async] = ACTIONS(3319), - [anon_sym_function] = ACTIONS(3319), - [anon_sym_new] = ACTIONS(3319), - [anon_sym_using] = ACTIONS(3319), - [anon_sym_PLUS] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_SLASH] = ACTIONS(3319), - [anon_sym_LT] = ACTIONS(3319), - [anon_sym_TILDE] = ACTIONS(3319), - [anon_sym_void] = ACTIONS(3319), - [anon_sym_delete] = ACTIONS(3319), - [anon_sym_PLUS_PLUS] = ACTIONS(3319), - [anon_sym_DASH_DASH] = ACTIONS(3319), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3319), - [sym_number] = ACTIONS(3319), - [sym_private_property_identifier] = ACTIONS(3319), - [sym_this] = ACTIONS(3319), - [sym_super] = ACTIONS(3319), - [sym_true] = ACTIONS(3319), - [sym_false] = ACTIONS(3319), - [sym_null] = ACTIONS(3319), - [sym_undefined] = ACTIONS(3319), - [anon_sym_AT] = ACTIONS(3319), - [anon_sym_static] = ACTIONS(3319), - [anon_sym_readonly] = ACTIONS(3319), - [anon_sym_get] = ACTIONS(3319), - [anon_sym_set] = ACTIONS(3319), - [anon_sym_declare] = ACTIONS(3319), - [anon_sym_public] = ACTIONS(3319), - [anon_sym_private] = ACTIONS(3319), - [anon_sym_protected] = ACTIONS(3319), - [anon_sym_override] = ACTIONS(3319), - [anon_sym_module] = ACTIONS(3319), - [anon_sym_any] = ACTIONS(3319), - [anon_sym_number] = ACTIONS(3319), - [anon_sym_boolean] = ACTIONS(3319), - [anon_sym_string] = ACTIONS(3319), - [anon_sym_symbol] = ACTIONS(3319), - [anon_sym_object] = ACTIONS(3319), - [anon_sym_abstract] = ACTIONS(3319), - [anon_sym_interface] = ACTIONS(3319), - [anon_sym_enum] = ACTIONS(3319), - [sym_html_comment] = ACTIONS(5), - }, - [1649] = { - [sym_comment] = STATE(1649), - [ts_builtin_sym_end] = ACTIONS(3649), - [sym_identifier] = ACTIONS(3445), - [anon_sym_export] = ACTIONS(3445), - [anon_sym_type] = ACTIONS(3445), - [anon_sym_namespace] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_typeof] = ACTIONS(3445), - [anon_sym_import] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), - [anon_sym_BANG] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_await] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_break] = ACTIONS(3445), - [anon_sym_continue] = ACTIONS(3445), - [anon_sym_debugger] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_throw] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LTtemplate_GT] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_SQUOTE] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_async] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_using] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_void] = ACTIONS(3445), - [anon_sym_delete] = ACTIONS(3445), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3445), - [sym_number] = ACTIONS(3445), - [sym_private_property_identifier] = ACTIONS(3445), - [sym_this] = ACTIONS(3445), - [sym_super] = ACTIONS(3445), - [sym_true] = ACTIONS(3445), - [sym_false] = ACTIONS(3445), - [sym_null] = ACTIONS(3445), - [sym_undefined] = ACTIONS(3445), - [anon_sym_AT] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_readonly] = ACTIONS(3445), - [anon_sym_get] = ACTIONS(3445), - [anon_sym_set] = ACTIONS(3445), - [anon_sym_declare] = ACTIONS(3445), - [anon_sym_public] = ACTIONS(3445), - [anon_sym_private] = ACTIONS(3445), - [anon_sym_protected] = ACTIONS(3445), - [anon_sym_override] = ACTIONS(3445), - [anon_sym_module] = ACTIONS(3445), - [anon_sym_any] = ACTIONS(3445), - [anon_sym_number] = ACTIONS(3445), - [anon_sym_boolean] = ACTIONS(3445), - [anon_sym_string] = ACTIONS(3445), - [anon_sym_symbol] = ACTIONS(3445), - [anon_sym_object] = ACTIONS(3445), - [anon_sym_abstract] = ACTIONS(3445), - [anon_sym_interface] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), - [sym_html_comment] = ACTIONS(5), - }, - [1650] = { - [sym_comment] = STATE(1650), - [ts_builtin_sym_end] = ACTIONS(3649), - [sym_identifier] = ACTIONS(3445), - [anon_sym_export] = ACTIONS(3445), - [anon_sym_type] = ACTIONS(3445), - [anon_sym_namespace] = ACTIONS(3445), - [anon_sym_LBRACE] = ACTIONS(3445), - [anon_sym_RBRACE] = ACTIONS(3445), - [anon_sym_typeof] = ACTIONS(3445), - [anon_sym_import] = ACTIONS(3445), - [anon_sym_with] = ACTIONS(3445), - [anon_sym_var] = ACTIONS(3445), - [anon_sym_let] = ACTIONS(3445), - [anon_sym_const] = ACTIONS(3445), - [anon_sym_BANG] = ACTIONS(3445), - [anon_sym_if] = ACTIONS(3445), - [anon_sym_switch] = ACTIONS(3445), - [anon_sym_for] = ACTIONS(3445), - [anon_sym_LPAREN] = ACTIONS(3445), - [anon_sym_await] = ACTIONS(3445), - [anon_sym_while] = ACTIONS(3445), - [anon_sym_do] = ACTIONS(3445), - [anon_sym_try] = ACTIONS(3445), - [anon_sym_break] = ACTIONS(3445), - [anon_sym_continue] = ACTIONS(3445), - [anon_sym_debugger] = ACTIONS(3445), - [anon_sym_return] = ACTIONS(3445), - [anon_sym_throw] = ACTIONS(3445), - [anon_sym_SEMI] = ACTIONS(3445), - [anon_sym_yield] = ACTIONS(3445), - [anon_sym_LBRACK] = ACTIONS(3445), - [anon_sym_LTtemplate_GT] = ACTIONS(3445), - [anon_sym_DQUOTE] = ACTIONS(3445), - [anon_sym_SQUOTE] = ACTIONS(3445), - [anon_sym_class] = ACTIONS(3445), - [anon_sym_async] = ACTIONS(3445), - [anon_sym_function] = ACTIONS(3445), - [anon_sym_new] = ACTIONS(3445), - [anon_sym_using] = ACTIONS(3445), - [anon_sym_PLUS] = ACTIONS(3445), - [anon_sym_DASH] = ACTIONS(3445), - [anon_sym_SLASH] = ACTIONS(3445), - [anon_sym_LT] = ACTIONS(3445), - [anon_sym_TILDE] = ACTIONS(3445), - [anon_sym_void] = ACTIONS(3445), - [anon_sym_delete] = ACTIONS(3445), - [anon_sym_PLUS_PLUS] = ACTIONS(3445), - [anon_sym_DASH_DASH] = ACTIONS(3445), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3445), - [sym_number] = ACTIONS(3445), - [sym_private_property_identifier] = ACTIONS(3445), - [sym_this] = ACTIONS(3445), - [sym_super] = ACTIONS(3445), - [sym_true] = ACTIONS(3445), - [sym_false] = ACTIONS(3445), - [sym_null] = ACTIONS(3445), - [sym_undefined] = ACTIONS(3445), - [anon_sym_AT] = ACTIONS(3445), - [anon_sym_static] = ACTIONS(3445), - [anon_sym_readonly] = ACTIONS(3445), - [anon_sym_get] = ACTIONS(3445), - [anon_sym_set] = ACTIONS(3445), - [anon_sym_declare] = ACTIONS(3445), - [anon_sym_public] = ACTIONS(3445), - [anon_sym_private] = ACTIONS(3445), - [anon_sym_protected] = ACTIONS(3445), - [anon_sym_override] = ACTIONS(3445), - [anon_sym_module] = ACTIONS(3445), - [anon_sym_any] = ACTIONS(3445), - [anon_sym_number] = ACTIONS(3445), - [anon_sym_boolean] = ACTIONS(3445), - [anon_sym_string] = ACTIONS(3445), - [anon_sym_symbol] = ACTIONS(3445), - [anon_sym_object] = ACTIONS(3445), - [anon_sym_abstract] = ACTIONS(3445), - [anon_sym_interface] = ACTIONS(3445), - [anon_sym_enum] = ACTIONS(3445), - [sym_html_comment] = ACTIONS(5), - }, - [1651] = { - [sym_comment] = STATE(1651), - [ts_builtin_sym_end] = ACTIONS(3533), - [sym_identifier] = ACTIONS(3309), - [anon_sym_export] = ACTIONS(3309), - [anon_sym_type] = ACTIONS(3309), - [anon_sym_namespace] = ACTIONS(3309), - [anon_sym_LBRACE] = ACTIONS(3309), - [anon_sym_RBRACE] = ACTIONS(3309), - [anon_sym_typeof] = ACTIONS(3309), - [anon_sym_import] = ACTIONS(3309), - [anon_sym_with] = ACTIONS(3309), - [anon_sym_var] = ACTIONS(3309), - [anon_sym_let] = ACTIONS(3309), - [anon_sym_const] = ACTIONS(3309), - [anon_sym_BANG] = ACTIONS(3309), - [anon_sym_if] = ACTIONS(3309), - [anon_sym_switch] = ACTIONS(3309), - [anon_sym_for] = ACTIONS(3309), - [anon_sym_LPAREN] = ACTIONS(3309), - [anon_sym_await] = ACTIONS(3309), - [anon_sym_while] = ACTIONS(3309), - [anon_sym_do] = ACTIONS(3309), - [anon_sym_try] = ACTIONS(3309), - [anon_sym_break] = ACTIONS(3309), - [anon_sym_continue] = ACTIONS(3309), - [anon_sym_debugger] = ACTIONS(3309), - [anon_sym_return] = ACTIONS(3309), - [anon_sym_throw] = ACTIONS(3309), - [anon_sym_SEMI] = ACTIONS(3309), - [anon_sym_yield] = ACTIONS(3309), - [anon_sym_LBRACK] = ACTIONS(3309), - [anon_sym_LTtemplate_GT] = ACTIONS(3309), - [anon_sym_DQUOTE] = ACTIONS(3309), - [anon_sym_SQUOTE] = ACTIONS(3309), - [anon_sym_class] = ACTIONS(3309), - [anon_sym_async] = ACTIONS(3309), - [anon_sym_function] = ACTIONS(3309), - [anon_sym_new] = ACTIONS(3309), - [anon_sym_using] = ACTIONS(3309), - [anon_sym_PLUS] = ACTIONS(3309), - [anon_sym_DASH] = ACTIONS(3309), - [anon_sym_SLASH] = ACTIONS(3309), - [anon_sym_LT] = ACTIONS(3309), - [anon_sym_TILDE] = ACTIONS(3309), - [anon_sym_void] = ACTIONS(3309), - [anon_sym_delete] = ACTIONS(3309), - [anon_sym_PLUS_PLUS] = ACTIONS(3309), - [anon_sym_DASH_DASH] = ACTIONS(3309), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3309), - [sym_number] = ACTIONS(3309), - [sym_private_property_identifier] = ACTIONS(3309), - [sym_this] = ACTIONS(3309), - [sym_super] = ACTIONS(3309), - [sym_true] = ACTIONS(3309), - [sym_false] = ACTIONS(3309), - [sym_null] = ACTIONS(3309), - [sym_undefined] = ACTIONS(3309), - [anon_sym_AT] = ACTIONS(3309), - [anon_sym_static] = ACTIONS(3309), - [anon_sym_readonly] = ACTIONS(3309), - [anon_sym_get] = ACTIONS(3309), - [anon_sym_set] = ACTIONS(3309), - [anon_sym_declare] = ACTIONS(3309), - [anon_sym_public] = ACTIONS(3309), - [anon_sym_private] = ACTIONS(3309), - [anon_sym_protected] = ACTIONS(3309), - [anon_sym_override] = ACTIONS(3309), - [anon_sym_module] = ACTIONS(3309), - [anon_sym_any] = ACTIONS(3309), - [anon_sym_number] = ACTIONS(3309), - [anon_sym_boolean] = ACTIONS(3309), - [anon_sym_string] = ACTIONS(3309), - [anon_sym_symbol] = ACTIONS(3309), - [anon_sym_object] = ACTIONS(3309), - [anon_sym_abstract] = ACTIONS(3309), - [anon_sym_interface] = ACTIONS(3309), - [anon_sym_enum] = ACTIONS(3309), - [sym_html_comment] = ACTIONS(5), - }, - [1652] = { - [sym_comment] = STATE(1652), - [ts_builtin_sym_end] = ACTIONS(3531), - [sym_identifier] = ACTIONS(3417), - [anon_sym_export] = ACTIONS(3417), - [anon_sym_type] = ACTIONS(3417), - [anon_sym_namespace] = ACTIONS(3417), - [anon_sym_LBRACE] = ACTIONS(3417), - [anon_sym_RBRACE] = ACTIONS(3417), - [anon_sym_typeof] = ACTIONS(3417), - [anon_sym_import] = ACTIONS(3417), - [anon_sym_with] = ACTIONS(3417), - [anon_sym_var] = ACTIONS(3417), - [anon_sym_let] = ACTIONS(3417), - [anon_sym_const] = ACTIONS(3417), - [anon_sym_BANG] = ACTIONS(3417), - [anon_sym_if] = ACTIONS(3417), - [anon_sym_switch] = ACTIONS(3417), - [anon_sym_for] = ACTIONS(3417), - [anon_sym_LPAREN] = ACTIONS(3417), - [anon_sym_await] = ACTIONS(3417), - [anon_sym_while] = ACTIONS(3417), - [anon_sym_do] = ACTIONS(3417), - [anon_sym_try] = ACTIONS(3417), - [anon_sym_break] = ACTIONS(3417), - [anon_sym_continue] = ACTIONS(3417), - [anon_sym_debugger] = ACTIONS(3417), - [anon_sym_return] = ACTIONS(3417), - [anon_sym_throw] = ACTIONS(3417), - [anon_sym_SEMI] = ACTIONS(3417), - [anon_sym_yield] = ACTIONS(3417), - [anon_sym_LBRACK] = ACTIONS(3417), - [anon_sym_LTtemplate_GT] = ACTIONS(3417), - [anon_sym_DQUOTE] = ACTIONS(3417), - [anon_sym_SQUOTE] = ACTIONS(3417), - [anon_sym_class] = ACTIONS(3417), - [anon_sym_async] = ACTIONS(3417), - [anon_sym_function] = ACTIONS(3417), - [anon_sym_new] = ACTIONS(3417), - [anon_sym_using] = ACTIONS(3417), - [anon_sym_PLUS] = ACTIONS(3417), - [anon_sym_DASH] = ACTIONS(3417), - [anon_sym_SLASH] = ACTIONS(3417), - [anon_sym_LT] = ACTIONS(3417), - [anon_sym_TILDE] = ACTIONS(3417), - [anon_sym_void] = ACTIONS(3417), - [anon_sym_delete] = ACTIONS(3417), - [anon_sym_PLUS_PLUS] = ACTIONS(3417), - [anon_sym_DASH_DASH] = ACTIONS(3417), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3417), - [sym_number] = ACTIONS(3417), - [sym_private_property_identifier] = ACTIONS(3417), - [sym_this] = ACTIONS(3417), - [sym_super] = ACTIONS(3417), - [sym_true] = ACTIONS(3417), - [sym_false] = ACTIONS(3417), - [sym_null] = ACTIONS(3417), - [sym_undefined] = ACTIONS(3417), - [anon_sym_AT] = ACTIONS(3417), - [anon_sym_static] = ACTIONS(3417), - [anon_sym_readonly] = ACTIONS(3417), - [anon_sym_get] = ACTIONS(3417), - [anon_sym_set] = ACTIONS(3417), - [anon_sym_declare] = ACTIONS(3417), - [anon_sym_public] = ACTIONS(3417), - [anon_sym_private] = ACTIONS(3417), - [anon_sym_protected] = ACTIONS(3417), - [anon_sym_override] = ACTIONS(3417), - [anon_sym_module] = ACTIONS(3417), - [anon_sym_any] = ACTIONS(3417), - [anon_sym_number] = ACTIONS(3417), - [anon_sym_boolean] = ACTIONS(3417), - [anon_sym_string] = ACTIONS(3417), - [anon_sym_symbol] = ACTIONS(3417), - [anon_sym_object] = ACTIONS(3417), - [anon_sym_abstract] = ACTIONS(3417), - [anon_sym_interface] = ACTIONS(3417), - [anon_sym_enum] = ACTIONS(3417), - [sym_html_comment] = ACTIONS(5), - }, - [1653] = { - [sym_comment] = STATE(1653), - [ts_builtin_sym_end] = ACTIONS(3627), - [sym_identifier] = ACTIONS(3317), - [anon_sym_export] = ACTIONS(3317), - [anon_sym_type] = ACTIONS(3317), - [anon_sym_namespace] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_typeof] = ACTIONS(3317), - [anon_sym_import] = ACTIONS(3317), - [anon_sym_with] = ACTIONS(3317), - [anon_sym_var] = ACTIONS(3317), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_const] = ACTIONS(3317), - [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3317), - [anon_sym_switch] = ACTIONS(3317), - [anon_sym_for] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_await] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3317), - [anon_sym_do] = ACTIONS(3317), - [anon_sym_try] = ACTIONS(3317), - [anon_sym_break] = ACTIONS(3317), - [anon_sym_continue] = ACTIONS(3317), - [anon_sym_debugger] = ACTIONS(3317), - [anon_sym_return] = ACTIONS(3317), - [anon_sym_throw] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_yield] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_LTtemplate_GT] = ACTIONS(3317), - [anon_sym_DQUOTE] = ACTIONS(3317), - [anon_sym_SQUOTE] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_async] = ACTIONS(3317), - [anon_sym_function] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_using] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_void] = ACTIONS(3317), - [anon_sym_delete] = ACTIONS(3317), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3317), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3317), - [sym_number] = ACTIONS(3317), - [sym_private_property_identifier] = ACTIONS(3317), - [sym_this] = ACTIONS(3317), - [sym_super] = ACTIONS(3317), - [sym_true] = ACTIONS(3317), - [sym_false] = ACTIONS(3317), - [sym_null] = ACTIONS(3317), - [sym_undefined] = ACTIONS(3317), - [anon_sym_AT] = ACTIONS(3317), - [anon_sym_static] = ACTIONS(3317), - [anon_sym_readonly] = ACTIONS(3317), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3317), - [anon_sym_public] = ACTIONS(3317), - [anon_sym_private] = ACTIONS(3317), - [anon_sym_protected] = ACTIONS(3317), - [anon_sym_override] = ACTIONS(3317), - [anon_sym_module] = ACTIONS(3317), - [anon_sym_any] = ACTIONS(3317), - [anon_sym_number] = ACTIONS(3317), - [anon_sym_boolean] = ACTIONS(3317), - [anon_sym_string] = ACTIONS(3317), - [anon_sym_symbol] = ACTIONS(3317), - [anon_sym_object] = ACTIONS(3317), - [anon_sym_abstract] = ACTIONS(3317), - [anon_sym_interface] = ACTIONS(3317), - [anon_sym_enum] = ACTIONS(3317), - [sym_html_comment] = ACTIONS(5), - }, - [1654] = { - [sym_comment] = STATE(1654), - [ts_builtin_sym_end] = ACTIONS(3627), - [sym_identifier] = ACTIONS(3317), - [anon_sym_export] = ACTIONS(3317), - [anon_sym_type] = ACTIONS(3317), - [anon_sym_namespace] = ACTIONS(3317), - [anon_sym_LBRACE] = ACTIONS(3317), - [anon_sym_RBRACE] = ACTIONS(3317), - [anon_sym_typeof] = ACTIONS(3317), - [anon_sym_import] = ACTIONS(3317), - [anon_sym_with] = ACTIONS(3317), - [anon_sym_var] = ACTIONS(3317), - [anon_sym_let] = ACTIONS(3317), - [anon_sym_const] = ACTIONS(3317), - [anon_sym_BANG] = ACTIONS(3317), - [anon_sym_if] = ACTIONS(3317), - [anon_sym_switch] = ACTIONS(3317), - [anon_sym_for] = ACTIONS(3317), - [anon_sym_LPAREN] = ACTIONS(3317), - [anon_sym_await] = ACTIONS(3317), - [anon_sym_while] = ACTIONS(3317), - [anon_sym_do] = ACTIONS(3317), - [anon_sym_try] = ACTIONS(3317), - [anon_sym_break] = ACTIONS(3317), - [anon_sym_continue] = ACTIONS(3317), - [anon_sym_debugger] = ACTIONS(3317), - [anon_sym_return] = ACTIONS(3317), - [anon_sym_throw] = ACTIONS(3317), - [anon_sym_SEMI] = ACTIONS(3317), - [anon_sym_yield] = ACTIONS(3317), - [anon_sym_LBRACK] = ACTIONS(3317), - [anon_sym_LTtemplate_GT] = ACTIONS(3317), - [anon_sym_DQUOTE] = ACTIONS(3317), - [anon_sym_SQUOTE] = ACTIONS(3317), - [anon_sym_class] = ACTIONS(3317), - [anon_sym_async] = ACTIONS(3317), - [anon_sym_function] = ACTIONS(3317), - [anon_sym_new] = ACTIONS(3317), - [anon_sym_using] = ACTIONS(3317), - [anon_sym_PLUS] = ACTIONS(3317), - [anon_sym_DASH] = ACTIONS(3317), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_LT] = ACTIONS(3317), - [anon_sym_TILDE] = ACTIONS(3317), - [anon_sym_void] = ACTIONS(3317), - [anon_sym_delete] = ACTIONS(3317), - [anon_sym_PLUS_PLUS] = ACTIONS(3317), - [anon_sym_DASH_DASH] = ACTIONS(3317), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3317), - [sym_number] = ACTIONS(3317), - [sym_private_property_identifier] = ACTIONS(3317), - [sym_this] = ACTIONS(3317), - [sym_super] = ACTIONS(3317), - [sym_true] = ACTIONS(3317), - [sym_false] = ACTIONS(3317), - [sym_null] = ACTIONS(3317), - [sym_undefined] = ACTIONS(3317), - [anon_sym_AT] = ACTIONS(3317), - [anon_sym_static] = ACTIONS(3317), - [anon_sym_readonly] = ACTIONS(3317), - [anon_sym_get] = ACTIONS(3317), - [anon_sym_set] = ACTIONS(3317), - [anon_sym_declare] = ACTIONS(3317), - [anon_sym_public] = ACTIONS(3317), - [anon_sym_private] = ACTIONS(3317), - [anon_sym_protected] = ACTIONS(3317), - [anon_sym_override] = ACTIONS(3317), - [anon_sym_module] = ACTIONS(3317), - [anon_sym_any] = ACTIONS(3317), - [anon_sym_number] = ACTIONS(3317), - [anon_sym_boolean] = ACTIONS(3317), - [anon_sym_string] = ACTIONS(3317), - [anon_sym_symbol] = ACTIONS(3317), - [anon_sym_object] = ACTIONS(3317), - [anon_sym_abstract] = ACTIONS(3317), - [anon_sym_interface] = ACTIONS(3317), - [anon_sym_enum] = ACTIONS(3317), - [sym_html_comment] = ACTIONS(5), - }, - [1655] = { - [sym_comment] = STATE(1655), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1656] = { - [sym_comment] = STATE(1656), - [ts_builtin_sym_end] = ACTIONS(3637), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [sym_html_comment] = ACTIONS(5), - }, - [1657] = { - [sym_comment] = STATE(1657), - [ts_builtin_sym_end] = ACTIONS(3535), - [sym_identifier] = ACTIONS(3307), - [anon_sym_export] = ACTIONS(3307), - [anon_sym_type] = ACTIONS(3307), - [anon_sym_namespace] = ACTIONS(3307), - [anon_sym_LBRACE] = ACTIONS(3307), - [anon_sym_RBRACE] = ACTIONS(3307), - [anon_sym_typeof] = ACTIONS(3307), - [anon_sym_import] = ACTIONS(3307), - [anon_sym_with] = ACTIONS(3307), - [anon_sym_var] = ACTIONS(3307), - [anon_sym_let] = ACTIONS(3307), - [anon_sym_const] = ACTIONS(3307), - [anon_sym_BANG] = ACTIONS(3307), - [anon_sym_if] = ACTIONS(3307), - [anon_sym_switch] = ACTIONS(3307), - [anon_sym_for] = ACTIONS(3307), - [anon_sym_LPAREN] = ACTIONS(3307), - [anon_sym_await] = ACTIONS(3307), - [anon_sym_while] = ACTIONS(3307), - [anon_sym_do] = ACTIONS(3307), - [anon_sym_try] = ACTIONS(3307), - [anon_sym_break] = ACTIONS(3307), - [anon_sym_continue] = ACTIONS(3307), - [anon_sym_debugger] = ACTIONS(3307), - [anon_sym_return] = ACTIONS(3307), - [anon_sym_throw] = ACTIONS(3307), - [anon_sym_SEMI] = ACTIONS(3307), - [anon_sym_yield] = ACTIONS(3307), - [anon_sym_LBRACK] = ACTIONS(3307), - [anon_sym_LTtemplate_GT] = ACTIONS(3307), - [anon_sym_DQUOTE] = ACTIONS(3307), - [anon_sym_SQUOTE] = ACTIONS(3307), - [anon_sym_class] = ACTIONS(3307), - [anon_sym_async] = ACTIONS(3307), - [anon_sym_function] = ACTIONS(3307), - [anon_sym_new] = ACTIONS(3307), - [anon_sym_using] = ACTIONS(3307), - [anon_sym_PLUS] = ACTIONS(3307), - [anon_sym_DASH] = ACTIONS(3307), - [anon_sym_SLASH] = ACTIONS(3307), - [anon_sym_LT] = ACTIONS(3307), - [anon_sym_TILDE] = ACTIONS(3307), - [anon_sym_void] = ACTIONS(3307), - [anon_sym_delete] = ACTIONS(3307), - [anon_sym_PLUS_PLUS] = ACTIONS(3307), - [anon_sym_DASH_DASH] = ACTIONS(3307), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3307), - [sym_number] = ACTIONS(3307), - [sym_private_property_identifier] = ACTIONS(3307), - [sym_this] = ACTIONS(3307), - [sym_super] = ACTIONS(3307), - [sym_true] = ACTIONS(3307), - [sym_false] = ACTIONS(3307), - [sym_null] = ACTIONS(3307), - [sym_undefined] = ACTIONS(3307), - [anon_sym_AT] = ACTIONS(3307), - [anon_sym_static] = ACTIONS(3307), - [anon_sym_readonly] = ACTIONS(3307), - [anon_sym_get] = ACTIONS(3307), - [anon_sym_set] = ACTIONS(3307), - [anon_sym_declare] = ACTIONS(3307), - [anon_sym_public] = ACTIONS(3307), - [anon_sym_private] = ACTIONS(3307), - [anon_sym_protected] = ACTIONS(3307), - [anon_sym_override] = ACTIONS(3307), - [anon_sym_module] = ACTIONS(3307), - [anon_sym_any] = ACTIONS(3307), - [anon_sym_number] = ACTIONS(3307), - [anon_sym_boolean] = ACTIONS(3307), - [anon_sym_string] = ACTIONS(3307), - [anon_sym_symbol] = ACTIONS(3307), - [anon_sym_object] = ACTIONS(3307), - [anon_sym_abstract] = ACTIONS(3307), - [anon_sym_interface] = ACTIONS(3307), - [anon_sym_enum] = ACTIONS(3307), - [sym_html_comment] = ACTIONS(5), - }, - [1658] = { - [sym_comment] = STATE(1658), - [ts_builtin_sym_end] = ACTIONS(3549), - [sym_identifier] = ACTIONS(3295), - [anon_sym_export] = ACTIONS(3295), - [anon_sym_type] = ACTIONS(3295), - [anon_sym_namespace] = ACTIONS(3295), - [anon_sym_LBRACE] = ACTIONS(3295), - [anon_sym_RBRACE] = ACTIONS(3295), - [anon_sym_typeof] = ACTIONS(3295), - [anon_sym_import] = ACTIONS(3295), - [anon_sym_with] = ACTIONS(3295), - [anon_sym_var] = ACTIONS(3295), - [anon_sym_let] = ACTIONS(3295), - [anon_sym_const] = ACTIONS(3295), - [anon_sym_BANG] = ACTIONS(3295), - [anon_sym_if] = ACTIONS(3295), - [anon_sym_switch] = ACTIONS(3295), - [anon_sym_for] = ACTIONS(3295), - [anon_sym_LPAREN] = ACTIONS(3295), - [anon_sym_await] = ACTIONS(3295), - [anon_sym_while] = ACTIONS(3295), - [anon_sym_do] = ACTIONS(3295), - [anon_sym_try] = ACTIONS(3295), - [anon_sym_break] = ACTIONS(3295), - [anon_sym_continue] = ACTIONS(3295), - [anon_sym_debugger] = ACTIONS(3295), - [anon_sym_return] = ACTIONS(3295), - [anon_sym_throw] = ACTIONS(3295), - [anon_sym_SEMI] = ACTIONS(3295), - [anon_sym_yield] = ACTIONS(3295), - [anon_sym_LBRACK] = ACTIONS(3295), - [anon_sym_LTtemplate_GT] = ACTIONS(3295), - [anon_sym_DQUOTE] = ACTIONS(3295), - [anon_sym_SQUOTE] = ACTIONS(3295), - [anon_sym_class] = ACTIONS(3295), - [anon_sym_async] = ACTIONS(3295), - [anon_sym_function] = ACTIONS(3295), - [anon_sym_new] = ACTIONS(3295), - [anon_sym_using] = ACTIONS(3295), - [anon_sym_PLUS] = ACTIONS(3295), - [anon_sym_DASH] = ACTIONS(3295), - [anon_sym_SLASH] = ACTIONS(3295), - [anon_sym_LT] = ACTIONS(3295), - [anon_sym_TILDE] = ACTIONS(3295), - [anon_sym_void] = ACTIONS(3295), - [anon_sym_delete] = ACTIONS(3295), - [anon_sym_PLUS_PLUS] = ACTIONS(3295), - [anon_sym_DASH_DASH] = ACTIONS(3295), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3295), - [sym_number] = ACTIONS(3295), - [sym_private_property_identifier] = ACTIONS(3295), - [sym_this] = ACTIONS(3295), - [sym_super] = ACTIONS(3295), - [sym_true] = ACTIONS(3295), - [sym_false] = ACTIONS(3295), - [sym_null] = ACTIONS(3295), - [sym_undefined] = ACTIONS(3295), - [anon_sym_AT] = ACTIONS(3295), - [anon_sym_static] = ACTIONS(3295), - [anon_sym_readonly] = ACTIONS(3295), - [anon_sym_get] = ACTIONS(3295), - [anon_sym_set] = ACTIONS(3295), - [anon_sym_declare] = ACTIONS(3295), - [anon_sym_public] = ACTIONS(3295), - [anon_sym_private] = ACTIONS(3295), - [anon_sym_protected] = ACTIONS(3295), - [anon_sym_override] = ACTIONS(3295), - [anon_sym_module] = ACTIONS(3295), - [anon_sym_any] = ACTIONS(3295), - [anon_sym_number] = ACTIONS(3295), - [anon_sym_boolean] = ACTIONS(3295), - [anon_sym_string] = ACTIONS(3295), - [anon_sym_symbol] = ACTIONS(3295), - [anon_sym_object] = ACTIONS(3295), - [anon_sym_abstract] = ACTIONS(3295), - [anon_sym_interface] = ACTIONS(3295), - [anon_sym_enum] = ACTIONS(3295), - [sym_html_comment] = ACTIONS(5), - }, - [1659] = { - [sym_comment] = STATE(1659), - [ts_builtin_sym_end] = ACTIONS(3637), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [sym_html_comment] = ACTIONS(5), - }, - [1660] = { - [sym_comment] = STATE(1660), - [ts_builtin_sym_end] = ACTIONS(3637), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [sym_html_comment] = ACTIONS(5), - }, - [1661] = { - [sym_comment] = STATE(1661), - [ts_builtin_sym_end] = ACTIONS(3637), - [sym_identifier] = ACTIONS(3223), - [anon_sym_export] = ACTIONS(3223), - [anon_sym_type] = ACTIONS(3223), - [anon_sym_namespace] = ACTIONS(3223), - [anon_sym_LBRACE] = ACTIONS(3223), - [anon_sym_RBRACE] = ACTIONS(3223), - [anon_sym_typeof] = ACTIONS(3223), - [anon_sym_import] = ACTIONS(3223), - [anon_sym_with] = ACTIONS(3223), - [anon_sym_var] = ACTIONS(3223), - [anon_sym_let] = ACTIONS(3223), - [anon_sym_const] = ACTIONS(3223), - [anon_sym_BANG] = ACTIONS(3223), - [anon_sym_if] = ACTIONS(3223), - [anon_sym_switch] = ACTIONS(3223), - [anon_sym_for] = ACTIONS(3223), - [anon_sym_LPAREN] = ACTIONS(3223), - [anon_sym_await] = ACTIONS(3223), - [anon_sym_while] = ACTIONS(3223), - [anon_sym_do] = ACTIONS(3223), - [anon_sym_try] = ACTIONS(3223), - [anon_sym_break] = ACTIONS(3223), - [anon_sym_continue] = ACTIONS(3223), - [anon_sym_debugger] = ACTIONS(3223), - [anon_sym_return] = ACTIONS(3223), - [anon_sym_throw] = ACTIONS(3223), - [anon_sym_SEMI] = ACTIONS(3223), - [anon_sym_yield] = ACTIONS(3223), - [anon_sym_LBRACK] = ACTIONS(3223), - [anon_sym_LTtemplate_GT] = ACTIONS(3223), - [anon_sym_DQUOTE] = ACTIONS(3223), - [anon_sym_SQUOTE] = ACTIONS(3223), - [anon_sym_class] = ACTIONS(3223), - [anon_sym_async] = ACTIONS(3223), - [anon_sym_function] = ACTIONS(3223), - [anon_sym_new] = ACTIONS(3223), - [anon_sym_using] = ACTIONS(3223), - [anon_sym_PLUS] = ACTIONS(3223), - [anon_sym_DASH] = ACTIONS(3223), - [anon_sym_SLASH] = ACTIONS(3223), - [anon_sym_LT] = ACTIONS(3223), - [anon_sym_TILDE] = ACTIONS(3223), - [anon_sym_void] = ACTIONS(3223), - [anon_sym_delete] = ACTIONS(3223), - [anon_sym_PLUS_PLUS] = ACTIONS(3223), - [anon_sym_DASH_DASH] = ACTIONS(3223), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3223), - [sym_number] = ACTIONS(3223), - [sym_private_property_identifier] = ACTIONS(3223), - [sym_this] = ACTIONS(3223), - [sym_super] = ACTIONS(3223), - [sym_true] = ACTIONS(3223), - [sym_false] = ACTIONS(3223), - [sym_null] = ACTIONS(3223), - [sym_undefined] = ACTIONS(3223), - [anon_sym_AT] = ACTIONS(3223), - [anon_sym_static] = ACTIONS(3223), - [anon_sym_readonly] = ACTIONS(3223), - [anon_sym_get] = ACTIONS(3223), - [anon_sym_set] = ACTIONS(3223), - [anon_sym_declare] = ACTIONS(3223), - [anon_sym_public] = ACTIONS(3223), - [anon_sym_private] = ACTIONS(3223), - [anon_sym_protected] = ACTIONS(3223), - [anon_sym_override] = ACTIONS(3223), - [anon_sym_module] = ACTIONS(3223), - [anon_sym_any] = ACTIONS(3223), - [anon_sym_number] = ACTIONS(3223), - [anon_sym_boolean] = ACTIONS(3223), - [anon_sym_string] = ACTIONS(3223), - [anon_sym_symbol] = ACTIONS(3223), - [anon_sym_object] = ACTIONS(3223), - [anon_sym_abstract] = ACTIONS(3223), - [anon_sym_interface] = ACTIONS(3223), - [anon_sym_enum] = ACTIONS(3223), - [sym_html_comment] = ACTIONS(5), - }, - [1662] = { - [sym_comment] = STATE(1662), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1663] = { - [sym_comment] = STATE(1663), - [ts_builtin_sym_end] = ACTIONS(3553), - [sym_identifier] = ACTIONS(3279), - [anon_sym_export] = ACTIONS(3279), - [anon_sym_type] = ACTIONS(3279), - [anon_sym_namespace] = ACTIONS(3279), - [anon_sym_LBRACE] = ACTIONS(3279), - [anon_sym_RBRACE] = ACTIONS(3279), - [anon_sym_typeof] = ACTIONS(3279), - [anon_sym_import] = ACTIONS(3279), - [anon_sym_with] = ACTIONS(3279), - [anon_sym_var] = ACTIONS(3279), - [anon_sym_let] = ACTIONS(3279), - [anon_sym_const] = ACTIONS(3279), - [anon_sym_BANG] = ACTIONS(3279), - [anon_sym_if] = ACTIONS(3279), - [anon_sym_switch] = ACTIONS(3279), - [anon_sym_for] = ACTIONS(3279), - [anon_sym_LPAREN] = ACTIONS(3279), - [anon_sym_await] = ACTIONS(3279), - [anon_sym_while] = ACTIONS(3279), - [anon_sym_do] = ACTIONS(3279), - [anon_sym_try] = ACTIONS(3279), - [anon_sym_break] = ACTIONS(3279), - [anon_sym_continue] = ACTIONS(3279), - [anon_sym_debugger] = ACTIONS(3279), - [anon_sym_return] = ACTIONS(3279), - [anon_sym_throw] = ACTIONS(3279), - [anon_sym_SEMI] = ACTIONS(3279), - [anon_sym_yield] = ACTIONS(3279), - [anon_sym_LBRACK] = ACTIONS(3279), - [anon_sym_LTtemplate_GT] = ACTIONS(3279), - [anon_sym_DQUOTE] = ACTIONS(3279), - [anon_sym_SQUOTE] = ACTIONS(3279), - [anon_sym_class] = ACTIONS(3279), - [anon_sym_async] = ACTIONS(3279), - [anon_sym_function] = ACTIONS(3279), - [anon_sym_new] = ACTIONS(3279), - [anon_sym_using] = ACTIONS(3279), - [anon_sym_PLUS] = ACTIONS(3279), - [anon_sym_DASH] = ACTIONS(3279), - [anon_sym_SLASH] = ACTIONS(3279), - [anon_sym_LT] = ACTIONS(3279), - [anon_sym_TILDE] = ACTIONS(3279), - [anon_sym_void] = ACTIONS(3279), - [anon_sym_delete] = ACTIONS(3279), - [anon_sym_PLUS_PLUS] = ACTIONS(3279), - [anon_sym_DASH_DASH] = ACTIONS(3279), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3279), - [sym_number] = ACTIONS(3279), - [sym_private_property_identifier] = ACTIONS(3279), - [sym_this] = ACTIONS(3279), - [sym_super] = ACTIONS(3279), - [sym_true] = ACTIONS(3279), - [sym_false] = ACTIONS(3279), - [sym_null] = ACTIONS(3279), - [sym_undefined] = ACTIONS(3279), - [anon_sym_AT] = ACTIONS(3279), - [anon_sym_static] = ACTIONS(3279), - [anon_sym_readonly] = ACTIONS(3279), - [anon_sym_get] = ACTIONS(3279), - [anon_sym_set] = ACTIONS(3279), - [anon_sym_declare] = ACTIONS(3279), - [anon_sym_public] = ACTIONS(3279), - [anon_sym_private] = ACTIONS(3279), - [anon_sym_protected] = ACTIONS(3279), - [anon_sym_override] = ACTIONS(3279), - [anon_sym_module] = ACTIONS(3279), - [anon_sym_any] = ACTIONS(3279), - [anon_sym_number] = ACTIONS(3279), - [anon_sym_boolean] = ACTIONS(3279), - [anon_sym_string] = ACTIONS(3279), - [anon_sym_symbol] = ACTIONS(3279), - [anon_sym_object] = ACTIONS(3279), - [anon_sym_abstract] = ACTIONS(3279), - [anon_sym_interface] = ACTIONS(3279), - [anon_sym_enum] = ACTIONS(3279), - [sym_html_comment] = ACTIONS(5), - }, - [1664] = { - [sym_comment] = STATE(1664), - [ts_builtin_sym_end] = ACTIONS(3657), - [sym_identifier] = ACTIONS(3381), - [anon_sym_export] = ACTIONS(3381), - [anon_sym_type] = ACTIONS(3381), - [anon_sym_namespace] = ACTIONS(3381), - [anon_sym_LBRACE] = ACTIONS(3381), - [anon_sym_RBRACE] = ACTIONS(3381), - [anon_sym_typeof] = ACTIONS(3381), - [anon_sym_import] = ACTIONS(3381), - [anon_sym_with] = ACTIONS(3381), - [anon_sym_var] = ACTIONS(3381), - [anon_sym_let] = ACTIONS(3381), - [anon_sym_const] = ACTIONS(3381), - [anon_sym_BANG] = ACTIONS(3381), - [anon_sym_if] = ACTIONS(3381), - [anon_sym_switch] = ACTIONS(3381), - [anon_sym_for] = ACTIONS(3381), - [anon_sym_LPAREN] = ACTIONS(3381), - [anon_sym_await] = ACTIONS(3381), - [anon_sym_while] = ACTIONS(3381), - [anon_sym_do] = ACTIONS(3381), - [anon_sym_try] = ACTIONS(3381), - [anon_sym_break] = ACTIONS(3381), - [anon_sym_continue] = ACTIONS(3381), - [anon_sym_debugger] = ACTIONS(3381), - [anon_sym_return] = ACTIONS(3381), - [anon_sym_throw] = ACTIONS(3381), - [anon_sym_SEMI] = ACTIONS(3381), - [anon_sym_yield] = ACTIONS(3381), - [anon_sym_LBRACK] = ACTIONS(3381), - [anon_sym_LTtemplate_GT] = ACTIONS(3381), - [anon_sym_DQUOTE] = ACTIONS(3381), - [anon_sym_SQUOTE] = ACTIONS(3381), - [anon_sym_class] = ACTIONS(3381), - [anon_sym_async] = ACTIONS(3381), - [anon_sym_function] = ACTIONS(3381), - [anon_sym_new] = ACTIONS(3381), - [anon_sym_using] = ACTIONS(3381), - [anon_sym_PLUS] = ACTIONS(3381), - [anon_sym_DASH] = ACTIONS(3381), - [anon_sym_SLASH] = ACTIONS(3381), - [anon_sym_LT] = ACTIONS(3381), - [anon_sym_TILDE] = ACTIONS(3381), - [anon_sym_void] = ACTIONS(3381), - [anon_sym_delete] = ACTIONS(3381), - [anon_sym_PLUS_PLUS] = ACTIONS(3381), - [anon_sym_DASH_DASH] = ACTIONS(3381), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3381), - [sym_number] = ACTIONS(3381), - [sym_private_property_identifier] = ACTIONS(3381), - [sym_this] = ACTIONS(3381), - [sym_super] = ACTIONS(3381), - [sym_true] = ACTIONS(3381), - [sym_false] = ACTIONS(3381), - [sym_null] = ACTIONS(3381), - [sym_undefined] = ACTIONS(3381), - [anon_sym_AT] = ACTIONS(3381), - [anon_sym_static] = ACTIONS(3381), - [anon_sym_readonly] = ACTIONS(3381), - [anon_sym_get] = ACTIONS(3381), - [anon_sym_set] = ACTIONS(3381), - [anon_sym_declare] = ACTIONS(3381), - [anon_sym_public] = ACTIONS(3381), - [anon_sym_private] = ACTIONS(3381), - [anon_sym_protected] = ACTIONS(3381), - [anon_sym_override] = ACTIONS(3381), - [anon_sym_module] = ACTIONS(3381), - [anon_sym_any] = ACTIONS(3381), - [anon_sym_number] = ACTIONS(3381), - [anon_sym_boolean] = ACTIONS(3381), - [anon_sym_string] = ACTIONS(3381), - [anon_sym_symbol] = ACTIONS(3381), - [anon_sym_object] = ACTIONS(3381), - [anon_sym_abstract] = ACTIONS(3381), - [anon_sym_interface] = ACTIONS(3381), - [anon_sym_enum] = ACTIONS(3381), - [sym_html_comment] = ACTIONS(5), - }, - [1665] = { - [sym_comment] = STATE(1665), - [ts_builtin_sym_end] = ACTIONS(3555), - [sym_identifier] = ACTIONS(3275), - [anon_sym_export] = ACTIONS(3275), - [anon_sym_type] = ACTIONS(3275), - [anon_sym_namespace] = ACTIONS(3275), - [anon_sym_LBRACE] = ACTIONS(3275), - [anon_sym_RBRACE] = ACTIONS(3275), - [anon_sym_typeof] = ACTIONS(3275), - [anon_sym_import] = ACTIONS(3275), - [anon_sym_with] = ACTIONS(3275), - [anon_sym_var] = ACTIONS(3275), - [anon_sym_let] = ACTIONS(3275), - [anon_sym_const] = ACTIONS(3275), - [anon_sym_BANG] = ACTIONS(3275), - [anon_sym_if] = ACTIONS(3275), - [anon_sym_switch] = ACTIONS(3275), - [anon_sym_for] = ACTIONS(3275), - [anon_sym_LPAREN] = ACTIONS(3275), - [anon_sym_await] = ACTIONS(3275), - [anon_sym_while] = ACTIONS(3275), - [anon_sym_do] = ACTIONS(3275), - [anon_sym_try] = ACTIONS(3275), - [anon_sym_break] = ACTIONS(3275), - [anon_sym_continue] = ACTIONS(3275), - [anon_sym_debugger] = ACTIONS(3275), - [anon_sym_return] = ACTIONS(3275), - [anon_sym_throw] = ACTIONS(3275), - [anon_sym_SEMI] = ACTIONS(3275), - [anon_sym_yield] = ACTIONS(3275), - [anon_sym_LBRACK] = ACTIONS(3275), - [anon_sym_LTtemplate_GT] = ACTIONS(3275), - [anon_sym_DQUOTE] = ACTIONS(3275), - [anon_sym_SQUOTE] = ACTIONS(3275), - [anon_sym_class] = ACTIONS(3275), - [anon_sym_async] = ACTIONS(3275), - [anon_sym_function] = ACTIONS(3275), - [anon_sym_new] = ACTIONS(3275), - [anon_sym_using] = ACTIONS(3275), - [anon_sym_PLUS] = ACTIONS(3275), - [anon_sym_DASH] = ACTIONS(3275), - [anon_sym_SLASH] = ACTIONS(3275), - [anon_sym_LT] = ACTIONS(3275), - [anon_sym_TILDE] = ACTIONS(3275), - [anon_sym_void] = ACTIONS(3275), - [anon_sym_delete] = ACTIONS(3275), - [anon_sym_PLUS_PLUS] = ACTIONS(3275), - [anon_sym_DASH_DASH] = ACTIONS(3275), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3275), - [sym_number] = ACTIONS(3275), - [sym_private_property_identifier] = ACTIONS(3275), - [sym_this] = ACTIONS(3275), - [sym_super] = ACTIONS(3275), - [sym_true] = ACTIONS(3275), - [sym_false] = ACTIONS(3275), - [sym_null] = ACTIONS(3275), - [sym_undefined] = ACTIONS(3275), - [anon_sym_AT] = ACTIONS(3275), - [anon_sym_static] = ACTIONS(3275), - [anon_sym_readonly] = ACTIONS(3275), - [anon_sym_get] = ACTIONS(3275), - [anon_sym_set] = ACTIONS(3275), - [anon_sym_declare] = ACTIONS(3275), - [anon_sym_public] = ACTIONS(3275), - [anon_sym_private] = ACTIONS(3275), - [anon_sym_protected] = ACTIONS(3275), - [anon_sym_override] = ACTIONS(3275), - [anon_sym_module] = ACTIONS(3275), - [anon_sym_any] = ACTIONS(3275), - [anon_sym_number] = ACTIONS(3275), - [anon_sym_boolean] = ACTIONS(3275), - [anon_sym_string] = ACTIONS(3275), - [anon_sym_symbol] = ACTIONS(3275), - [anon_sym_object] = ACTIONS(3275), - [anon_sym_abstract] = ACTIONS(3275), - [anon_sym_interface] = ACTIONS(3275), - [anon_sym_enum] = ACTIONS(3275), - [sym_html_comment] = ACTIONS(5), - }, - [1666] = { - [sym_comment] = STATE(1666), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1667] = { - [sym_comment] = STATE(1667), - [ts_builtin_sym_end] = ACTIONS(3577), - [sym_identifier] = ACTIONS(3459), - [anon_sym_export] = ACTIONS(3459), - [anon_sym_type] = ACTIONS(3459), - [anon_sym_namespace] = ACTIONS(3459), - [anon_sym_LBRACE] = ACTIONS(3459), - [anon_sym_RBRACE] = ACTIONS(3459), - [anon_sym_typeof] = ACTIONS(3459), - [anon_sym_import] = ACTIONS(3459), - [anon_sym_with] = ACTIONS(3459), - [anon_sym_var] = ACTIONS(3459), - [anon_sym_let] = ACTIONS(3459), - [anon_sym_const] = ACTIONS(3459), - [anon_sym_BANG] = ACTIONS(3459), - [anon_sym_if] = ACTIONS(3459), - [anon_sym_switch] = ACTIONS(3459), - [anon_sym_for] = ACTIONS(3459), - [anon_sym_LPAREN] = ACTIONS(3459), - [anon_sym_await] = ACTIONS(3459), - [anon_sym_while] = ACTIONS(3459), - [anon_sym_do] = ACTIONS(3459), - [anon_sym_try] = ACTIONS(3459), - [anon_sym_break] = ACTIONS(3459), - [anon_sym_continue] = ACTIONS(3459), - [anon_sym_debugger] = ACTIONS(3459), - [anon_sym_return] = ACTIONS(3459), - [anon_sym_throw] = ACTIONS(3459), - [anon_sym_SEMI] = ACTIONS(3459), - [anon_sym_yield] = ACTIONS(3459), - [anon_sym_LBRACK] = ACTIONS(3459), - [anon_sym_LTtemplate_GT] = ACTIONS(3459), - [anon_sym_DQUOTE] = ACTIONS(3459), - [anon_sym_SQUOTE] = ACTIONS(3459), - [anon_sym_class] = ACTIONS(3459), - [anon_sym_async] = ACTIONS(3459), - [anon_sym_function] = ACTIONS(3459), - [anon_sym_new] = ACTIONS(3459), - [anon_sym_using] = ACTIONS(3459), - [anon_sym_PLUS] = ACTIONS(3459), - [anon_sym_DASH] = ACTIONS(3459), - [anon_sym_SLASH] = ACTIONS(3459), - [anon_sym_LT] = ACTIONS(3459), - [anon_sym_TILDE] = ACTIONS(3459), - [anon_sym_void] = ACTIONS(3459), - [anon_sym_delete] = ACTIONS(3459), - [anon_sym_PLUS_PLUS] = ACTIONS(3459), - [anon_sym_DASH_DASH] = ACTIONS(3459), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3459), - [sym_number] = ACTIONS(3459), - [sym_private_property_identifier] = ACTIONS(3459), - [sym_this] = ACTIONS(3459), - [sym_super] = ACTIONS(3459), - [sym_true] = ACTIONS(3459), - [sym_false] = ACTIONS(3459), - [sym_null] = ACTIONS(3459), - [sym_undefined] = ACTIONS(3459), - [anon_sym_AT] = ACTIONS(3459), - [anon_sym_static] = ACTIONS(3459), - [anon_sym_readonly] = ACTIONS(3459), - [anon_sym_get] = ACTIONS(3459), - [anon_sym_set] = ACTIONS(3459), - [anon_sym_declare] = ACTIONS(3459), - [anon_sym_public] = ACTIONS(3459), - [anon_sym_private] = ACTIONS(3459), - [anon_sym_protected] = ACTIONS(3459), - [anon_sym_override] = ACTIONS(3459), - [anon_sym_module] = ACTIONS(3459), - [anon_sym_any] = ACTIONS(3459), - [anon_sym_number] = ACTIONS(3459), - [anon_sym_boolean] = ACTIONS(3459), - [anon_sym_string] = ACTIONS(3459), - [anon_sym_symbol] = ACTIONS(3459), - [anon_sym_object] = ACTIONS(3459), - [anon_sym_abstract] = ACTIONS(3459), - [anon_sym_interface] = ACTIONS(3459), - [anon_sym_enum] = ACTIONS(3459), - [sym_html_comment] = ACTIONS(5), - }, - [1668] = { - [sym_comment] = STATE(1668), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym_identifier] = ACTIONS(2190), - [anon_sym_export] = ACTIONS(2190), - [anon_sym_type] = ACTIONS(2190), - [anon_sym_namespace] = ACTIONS(2190), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [anon_sym_typeof] = ACTIONS(2190), - [anon_sym_import] = ACTIONS(2190), - [anon_sym_with] = ACTIONS(2190), - [anon_sym_var] = ACTIONS(2190), - [anon_sym_let] = ACTIONS(2190), - [anon_sym_const] = ACTIONS(2190), - [anon_sym_BANG] = ACTIONS(2190), - [anon_sym_if] = ACTIONS(2190), - [anon_sym_switch] = ACTIONS(2190), - [anon_sym_for] = ACTIONS(2190), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2190), - [anon_sym_while] = ACTIONS(2190), - [anon_sym_do] = ACTIONS(2190), - [anon_sym_try] = ACTIONS(2190), - [anon_sym_break] = ACTIONS(2190), - [anon_sym_continue] = ACTIONS(2190), - [anon_sym_debugger] = ACTIONS(2190), - [anon_sym_return] = ACTIONS(2190), - [anon_sym_throw] = ACTIONS(2190), - [anon_sym_SEMI] = ACTIONS(2190), - [anon_sym_yield] = ACTIONS(2190), - [anon_sym_LBRACK] = ACTIONS(2190), - [anon_sym_LTtemplate_GT] = ACTIONS(2190), - [anon_sym_DQUOTE] = ACTIONS(2190), - [anon_sym_SQUOTE] = ACTIONS(2190), - [anon_sym_class] = ACTIONS(2190), - [anon_sym_async] = ACTIONS(2190), - [anon_sym_function] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2190), - [anon_sym_using] = ACTIONS(2190), - [anon_sym_PLUS] = ACTIONS(2190), - [anon_sym_DASH] = ACTIONS(2190), - [anon_sym_SLASH] = ACTIONS(2190), - [anon_sym_LT] = ACTIONS(2190), - [anon_sym_TILDE] = ACTIONS(2190), - [anon_sym_void] = ACTIONS(2190), - [anon_sym_delete] = ACTIONS(2190), - [anon_sym_PLUS_PLUS] = ACTIONS(2190), - [anon_sym_DASH_DASH] = ACTIONS(2190), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2190), - [sym_number] = ACTIONS(2190), - [sym_private_property_identifier] = ACTIONS(2190), - [sym_this] = ACTIONS(2190), - [sym_super] = ACTIONS(2190), - [sym_true] = ACTIONS(2190), - [sym_false] = ACTIONS(2190), - [sym_null] = ACTIONS(2190), - [sym_undefined] = ACTIONS(2190), - [anon_sym_AT] = ACTIONS(2190), - [anon_sym_static] = ACTIONS(2190), - [anon_sym_readonly] = ACTIONS(2190), - [anon_sym_get] = ACTIONS(2190), - [anon_sym_set] = ACTIONS(2190), - [anon_sym_declare] = ACTIONS(2190), - [anon_sym_public] = ACTIONS(2190), - [anon_sym_private] = ACTIONS(2190), - [anon_sym_protected] = ACTIONS(2190), - [anon_sym_override] = ACTIONS(2190), - [anon_sym_module] = ACTIONS(2190), - [anon_sym_any] = ACTIONS(2190), - [anon_sym_number] = ACTIONS(2190), - [anon_sym_boolean] = ACTIONS(2190), - [anon_sym_string] = ACTIONS(2190), - [anon_sym_symbol] = ACTIONS(2190), - [anon_sym_object] = ACTIONS(2190), - [anon_sym_abstract] = ACTIONS(2190), - [anon_sym_interface] = ACTIONS(2190), - [anon_sym_enum] = ACTIONS(2190), - [sym_html_comment] = ACTIONS(5), - }, - [1669] = { - [sym_comment] = STATE(1669), - [ts_builtin_sym_end] = ACTIONS(3643), - [sym_identifier] = ACTIONS(3395), - [anon_sym_export] = ACTIONS(3395), - [anon_sym_type] = ACTIONS(3395), - [anon_sym_namespace] = ACTIONS(3395), - [anon_sym_LBRACE] = ACTIONS(3395), - [anon_sym_RBRACE] = ACTIONS(3395), - [anon_sym_typeof] = ACTIONS(3395), - [anon_sym_import] = ACTIONS(3395), - [anon_sym_with] = ACTIONS(3395), - [anon_sym_var] = ACTIONS(3395), - [anon_sym_let] = ACTIONS(3395), - [anon_sym_const] = ACTIONS(3395), - [anon_sym_BANG] = ACTIONS(3395), - [anon_sym_if] = ACTIONS(3395), - [anon_sym_switch] = ACTIONS(3395), - [anon_sym_for] = ACTIONS(3395), - [anon_sym_LPAREN] = ACTIONS(3395), - [anon_sym_await] = ACTIONS(3395), - [anon_sym_while] = ACTIONS(3395), - [anon_sym_do] = ACTIONS(3395), - [anon_sym_try] = ACTIONS(3395), - [anon_sym_break] = ACTIONS(3395), - [anon_sym_continue] = ACTIONS(3395), - [anon_sym_debugger] = ACTIONS(3395), - [anon_sym_return] = ACTIONS(3395), - [anon_sym_throw] = ACTIONS(3395), - [anon_sym_SEMI] = ACTIONS(3395), - [anon_sym_yield] = ACTIONS(3395), - [anon_sym_LBRACK] = ACTIONS(3395), - [anon_sym_LTtemplate_GT] = ACTIONS(3395), - [anon_sym_DQUOTE] = ACTIONS(3395), - [anon_sym_SQUOTE] = ACTIONS(3395), - [anon_sym_class] = ACTIONS(3395), - [anon_sym_async] = ACTIONS(3395), - [anon_sym_function] = ACTIONS(3395), - [anon_sym_new] = ACTIONS(3395), - [anon_sym_using] = ACTIONS(3395), - [anon_sym_PLUS] = ACTIONS(3395), - [anon_sym_DASH] = ACTIONS(3395), - [anon_sym_SLASH] = ACTIONS(3395), - [anon_sym_LT] = ACTIONS(3395), - [anon_sym_TILDE] = ACTIONS(3395), - [anon_sym_void] = ACTIONS(3395), - [anon_sym_delete] = ACTIONS(3395), - [anon_sym_PLUS_PLUS] = ACTIONS(3395), - [anon_sym_DASH_DASH] = ACTIONS(3395), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3395), - [sym_number] = ACTIONS(3395), - [sym_private_property_identifier] = ACTIONS(3395), - [sym_this] = ACTIONS(3395), - [sym_super] = ACTIONS(3395), - [sym_true] = ACTIONS(3395), - [sym_false] = ACTIONS(3395), - [sym_null] = ACTIONS(3395), - [sym_undefined] = ACTIONS(3395), - [anon_sym_AT] = ACTIONS(3395), - [anon_sym_static] = ACTIONS(3395), - [anon_sym_readonly] = ACTIONS(3395), - [anon_sym_get] = ACTIONS(3395), - [anon_sym_set] = ACTIONS(3395), - [anon_sym_declare] = ACTIONS(3395), - [anon_sym_public] = ACTIONS(3395), - [anon_sym_private] = ACTIONS(3395), - [anon_sym_protected] = ACTIONS(3395), - [anon_sym_override] = ACTIONS(3395), - [anon_sym_module] = ACTIONS(3395), - [anon_sym_any] = ACTIONS(3395), - [anon_sym_number] = ACTIONS(3395), - [anon_sym_boolean] = ACTIONS(3395), - [anon_sym_string] = ACTIONS(3395), - [anon_sym_symbol] = ACTIONS(3395), - [anon_sym_object] = ACTIONS(3395), - [anon_sym_abstract] = ACTIONS(3395), - [anon_sym_interface] = ACTIONS(3395), - [anon_sym_enum] = ACTIONS(3395), - [sym_html_comment] = ACTIONS(5), - }, - [1670] = { - [sym_comment] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(3491), - [sym_identifier] = ACTIONS(3363), - [anon_sym_export] = ACTIONS(3363), - [anon_sym_type] = ACTIONS(3363), - [anon_sym_namespace] = ACTIONS(3363), - [anon_sym_LBRACE] = ACTIONS(3363), - [anon_sym_RBRACE] = ACTIONS(3363), - [anon_sym_typeof] = ACTIONS(3363), - [anon_sym_import] = ACTIONS(3363), - [anon_sym_with] = ACTIONS(3363), - [anon_sym_var] = ACTIONS(3363), - [anon_sym_let] = ACTIONS(3363), - [anon_sym_const] = ACTIONS(3363), - [anon_sym_BANG] = ACTIONS(3363), - [anon_sym_if] = ACTIONS(3363), - [anon_sym_switch] = ACTIONS(3363), - [anon_sym_for] = ACTIONS(3363), - [anon_sym_LPAREN] = ACTIONS(3363), - [anon_sym_await] = ACTIONS(3363), - [anon_sym_while] = ACTIONS(3363), - [anon_sym_do] = ACTIONS(3363), - [anon_sym_try] = ACTIONS(3363), - [anon_sym_break] = ACTIONS(3363), - [anon_sym_continue] = ACTIONS(3363), - [anon_sym_debugger] = ACTIONS(3363), - [anon_sym_return] = ACTIONS(3363), - [anon_sym_throw] = ACTIONS(3363), - [anon_sym_SEMI] = ACTIONS(3363), - [anon_sym_yield] = ACTIONS(3363), - [anon_sym_LBRACK] = ACTIONS(3363), - [anon_sym_LTtemplate_GT] = ACTIONS(3363), - [anon_sym_DQUOTE] = ACTIONS(3363), - [anon_sym_SQUOTE] = ACTIONS(3363), - [anon_sym_class] = ACTIONS(3363), - [anon_sym_async] = ACTIONS(3363), - [anon_sym_function] = ACTIONS(3363), - [anon_sym_new] = ACTIONS(3363), - [anon_sym_using] = ACTIONS(3363), - [anon_sym_PLUS] = ACTIONS(3363), - [anon_sym_DASH] = ACTIONS(3363), - [anon_sym_SLASH] = ACTIONS(3363), - [anon_sym_LT] = ACTIONS(3363), - [anon_sym_TILDE] = ACTIONS(3363), - [anon_sym_void] = ACTIONS(3363), - [anon_sym_delete] = ACTIONS(3363), - [anon_sym_PLUS_PLUS] = ACTIONS(3363), - [anon_sym_DASH_DASH] = ACTIONS(3363), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3363), - [sym_number] = ACTIONS(3363), - [sym_private_property_identifier] = ACTIONS(3363), - [sym_this] = ACTIONS(3363), - [sym_super] = ACTIONS(3363), - [sym_true] = ACTIONS(3363), - [sym_false] = ACTIONS(3363), - [sym_null] = ACTIONS(3363), - [sym_undefined] = ACTIONS(3363), - [anon_sym_AT] = ACTIONS(3363), - [anon_sym_static] = ACTIONS(3363), - [anon_sym_readonly] = ACTIONS(3363), - [anon_sym_get] = ACTIONS(3363), - [anon_sym_set] = ACTIONS(3363), - [anon_sym_declare] = ACTIONS(3363), - [anon_sym_public] = ACTIONS(3363), - [anon_sym_private] = ACTIONS(3363), - [anon_sym_protected] = ACTIONS(3363), - [anon_sym_override] = ACTIONS(3363), - [anon_sym_module] = ACTIONS(3363), - [anon_sym_any] = ACTIONS(3363), - [anon_sym_number] = ACTIONS(3363), - [anon_sym_boolean] = ACTIONS(3363), - [anon_sym_string] = ACTIONS(3363), - [anon_sym_symbol] = ACTIONS(3363), - [anon_sym_object] = ACTIONS(3363), - [anon_sym_abstract] = ACTIONS(3363), - [anon_sym_interface] = ACTIONS(3363), - [anon_sym_enum] = ACTIONS(3363), - [sym_html_comment] = ACTIONS(5), - }, - [1671] = { - [sym_comment] = STATE(1671), - [ts_builtin_sym_end] = ACTIONS(3489), - [sym_identifier] = ACTIONS(3367), - [anon_sym_export] = ACTIONS(3367), - [anon_sym_type] = ACTIONS(3367), - [anon_sym_namespace] = ACTIONS(3367), - [anon_sym_LBRACE] = ACTIONS(3367), - [anon_sym_RBRACE] = ACTIONS(3367), - [anon_sym_typeof] = ACTIONS(3367), - [anon_sym_import] = ACTIONS(3367), - [anon_sym_with] = ACTIONS(3367), - [anon_sym_var] = ACTIONS(3367), - [anon_sym_let] = ACTIONS(3367), - [anon_sym_const] = ACTIONS(3367), - [anon_sym_BANG] = ACTIONS(3367), - [anon_sym_if] = ACTIONS(3367), - [anon_sym_switch] = ACTIONS(3367), - [anon_sym_for] = ACTIONS(3367), - [anon_sym_LPAREN] = ACTIONS(3367), - [anon_sym_await] = ACTIONS(3367), - [anon_sym_while] = ACTIONS(3367), - [anon_sym_do] = ACTIONS(3367), - [anon_sym_try] = ACTIONS(3367), - [anon_sym_break] = ACTIONS(3367), - [anon_sym_continue] = ACTIONS(3367), - [anon_sym_debugger] = ACTIONS(3367), - [anon_sym_return] = ACTIONS(3367), - [anon_sym_throw] = ACTIONS(3367), - [anon_sym_SEMI] = ACTIONS(3367), - [anon_sym_yield] = ACTIONS(3367), - [anon_sym_LBRACK] = ACTIONS(3367), - [anon_sym_LTtemplate_GT] = ACTIONS(3367), - [anon_sym_DQUOTE] = ACTIONS(3367), - [anon_sym_SQUOTE] = ACTIONS(3367), - [anon_sym_class] = ACTIONS(3367), - [anon_sym_async] = ACTIONS(3367), - [anon_sym_function] = ACTIONS(3367), - [anon_sym_new] = ACTIONS(3367), - [anon_sym_using] = ACTIONS(3367), - [anon_sym_PLUS] = ACTIONS(3367), - [anon_sym_DASH] = ACTIONS(3367), - [anon_sym_SLASH] = ACTIONS(3367), - [anon_sym_LT] = ACTIONS(3367), - [anon_sym_TILDE] = ACTIONS(3367), - [anon_sym_void] = ACTIONS(3367), - [anon_sym_delete] = ACTIONS(3367), - [anon_sym_PLUS_PLUS] = ACTIONS(3367), - [anon_sym_DASH_DASH] = ACTIONS(3367), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3367), - [sym_number] = ACTIONS(3367), - [sym_private_property_identifier] = ACTIONS(3367), - [sym_this] = ACTIONS(3367), - [sym_super] = ACTIONS(3367), - [sym_true] = ACTIONS(3367), - [sym_false] = ACTIONS(3367), - [sym_null] = ACTIONS(3367), - [sym_undefined] = ACTIONS(3367), - [anon_sym_AT] = ACTIONS(3367), - [anon_sym_static] = ACTIONS(3367), - [anon_sym_readonly] = ACTIONS(3367), - [anon_sym_get] = ACTIONS(3367), - [anon_sym_set] = ACTIONS(3367), - [anon_sym_declare] = ACTIONS(3367), - [anon_sym_public] = ACTIONS(3367), - [anon_sym_private] = ACTIONS(3367), - [anon_sym_protected] = ACTIONS(3367), - [anon_sym_override] = ACTIONS(3367), - [anon_sym_module] = ACTIONS(3367), - [anon_sym_any] = ACTIONS(3367), - [anon_sym_number] = ACTIONS(3367), - [anon_sym_boolean] = ACTIONS(3367), - [anon_sym_string] = ACTIONS(3367), - [anon_sym_symbol] = ACTIONS(3367), - [anon_sym_object] = ACTIONS(3367), - [anon_sym_abstract] = ACTIONS(3367), - [anon_sym_interface] = ACTIONS(3367), - [anon_sym_enum] = ACTIONS(3367), - [sym_html_comment] = ACTIONS(5), - }, - [1672] = { - [sym_comment] = STATE(1672), - [ts_builtin_sym_end] = ACTIONS(3651), - [sym_identifier] = ACTIONS(3399), - [anon_sym_export] = ACTIONS(3399), - [anon_sym_type] = ACTIONS(3399), - [anon_sym_namespace] = ACTIONS(3399), - [anon_sym_LBRACE] = ACTIONS(3399), - [anon_sym_RBRACE] = ACTIONS(3399), - [anon_sym_typeof] = ACTIONS(3399), - [anon_sym_import] = ACTIONS(3399), - [anon_sym_with] = ACTIONS(3399), - [anon_sym_var] = ACTIONS(3399), - [anon_sym_let] = ACTIONS(3399), - [anon_sym_const] = ACTIONS(3399), - [anon_sym_BANG] = ACTIONS(3399), - [anon_sym_if] = ACTIONS(3399), - [anon_sym_switch] = ACTIONS(3399), - [anon_sym_for] = ACTIONS(3399), - [anon_sym_LPAREN] = ACTIONS(3399), - [anon_sym_await] = ACTIONS(3399), - [anon_sym_while] = ACTIONS(3399), - [anon_sym_do] = ACTIONS(3399), - [anon_sym_try] = ACTIONS(3399), - [anon_sym_break] = ACTIONS(3399), - [anon_sym_continue] = ACTIONS(3399), - [anon_sym_debugger] = ACTIONS(3399), - [anon_sym_return] = ACTIONS(3399), - [anon_sym_throw] = ACTIONS(3399), - [anon_sym_SEMI] = ACTIONS(3399), - [anon_sym_yield] = ACTIONS(3399), - [anon_sym_LBRACK] = ACTIONS(3399), - [anon_sym_LTtemplate_GT] = ACTIONS(3399), - [anon_sym_DQUOTE] = ACTIONS(3399), - [anon_sym_SQUOTE] = ACTIONS(3399), - [anon_sym_class] = ACTIONS(3399), - [anon_sym_async] = ACTIONS(3399), - [anon_sym_function] = ACTIONS(3399), - [anon_sym_new] = ACTIONS(3399), - [anon_sym_using] = ACTIONS(3399), - [anon_sym_PLUS] = ACTIONS(3399), - [anon_sym_DASH] = ACTIONS(3399), - [anon_sym_SLASH] = ACTIONS(3399), - [anon_sym_LT] = ACTIONS(3399), - [anon_sym_TILDE] = ACTIONS(3399), - [anon_sym_void] = ACTIONS(3399), - [anon_sym_delete] = ACTIONS(3399), - [anon_sym_PLUS_PLUS] = ACTIONS(3399), - [anon_sym_DASH_DASH] = ACTIONS(3399), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3399), - [sym_number] = ACTIONS(3399), - [sym_private_property_identifier] = ACTIONS(3399), - [sym_this] = ACTIONS(3399), - [sym_super] = ACTIONS(3399), - [sym_true] = ACTIONS(3399), - [sym_false] = ACTIONS(3399), - [sym_null] = ACTIONS(3399), - [sym_undefined] = ACTIONS(3399), - [anon_sym_AT] = ACTIONS(3399), - [anon_sym_static] = ACTIONS(3399), - [anon_sym_readonly] = ACTIONS(3399), - [anon_sym_get] = ACTIONS(3399), - [anon_sym_set] = ACTIONS(3399), - [anon_sym_declare] = ACTIONS(3399), - [anon_sym_public] = ACTIONS(3399), - [anon_sym_private] = ACTIONS(3399), - [anon_sym_protected] = ACTIONS(3399), - [anon_sym_override] = ACTIONS(3399), - [anon_sym_module] = ACTIONS(3399), - [anon_sym_any] = ACTIONS(3399), - [anon_sym_number] = ACTIONS(3399), - [anon_sym_boolean] = ACTIONS(3399), - [anon_sym_string] = ACTIONS(3399), - [anon_sym_symbol] = ACTIONS(3399), - [anon_sym_object] = ACTIONS(3399), - [anon_sym_abstract] = ACTIONS(3399), - [anon_sym_interface] = ACTIONS(3399), - [anon_sym_enum] = ACTIONS(3399), - [sym_html_comment] = ACTIONS(5), - }, - [1673] = { - [sym_comment] = STATE(1673), - [ts_builtin_sym_end] = ACTIONS(3559), - [sym_identifier] = ACTIONS(3273), - [anon_sym_export] = ACTIONS(3273), - [anon_sym_type] = ACTIONS(3273), - [anon_sym_namespace] = ACTIONS(3273), - [anon_sym_LBRACE] = ACTIONS(3273), - [anon_sym_RBRACE] = ACTIONS(3273), - [anon_sym_typeof] = ACTIONS(3273), - [anon_sym_import] = ACTIONS(3273), - [anon_sym_with] = ACTIONS(3273), - [anon_sym_var] = ACTIONS(3273), - [anon_sym_let] = ACTIONS(3273), - [anon_sym_const] = ACTIONS(3273), - [anon_sym_BANG] = ACTIONS(3273), - [anon_sym_if] = ACTIONS(3273), - [anon_sym_switch] = ACTIONS(3273), - [anon_sym_for] = ACTIONS(3273), - [anon_sym_LPAREN] = ACTIONS(3273), - [anon_sym_await] = ACTIONS(3273), - [anon_sym_while] = ACTIONS(3273), - [anon_sym_do] = ACTIONS(3273), - [anon_sym_try] = ACTIONS(3273), - [anon_sym_break] = ACTIONS(3273), - [anon_sym_continue] = ACTIONS(3273), - [anon_sym_debugger] = ACTIONS(3273), - [anon_sym_return] = ACTIONS(3273), - [anon_sym_throw] = ACTIONS(3273), - [anon_sym_SEMI] = ACTIONS(3273), - [anon_sym_yield] = ACTIONS(3273), - [anon_sym_LBRACK] = ACTIONS(3273), - [anon_sym_LTtemplate_GT] = ACTIONS(3273), - [anon_sym_DQUOTE] = ACTIONS(3273), - [anon_sym_SQUOTE] = ACTIONS(3273), - [anon_sym_class] = ACTIONS(3273), - [anon_sym_async] = ACTIONS(3273), - [anon_sym_function] = ACTIONS(3273), - [anon_sym_new] = ACTIONS(3273), - [anon_sym_using] = ACTIONS(3273), - [anon_sym_PLUS] = ACTIONS(3273), - [anon_sym_DASH] = ACTIONS(3273), - [anon_sym_SLASH] = ACTIONS(3273), - [anon_sym_LT] = ACTIONS(3273), - [anon_sym_TILDE] = ACTIONS(3273), - [anon_sym_void] = ACTIONS(3273), - [anon_sym_delete] = ACTIONS(3273), - [anon_sym_PLUS_PLUS] = ACTIONS(3273), - [anon_sym_DASH_DASH] = ACTIONS(3273), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3273), - [sym_number] = ACTIONS(3273), - [sym_private_property_identifier] = ACTIONS(3273), - [sym_this] = ACTIONS(3273), - [sym_super] = ACTIONS(3273), - [sym_true] = ACTIONS(3273), - [sym_false] = ACTIONS(3273), - [sym_null] = ACTIONS(3273), - [sym_undefined] = ACTIONS(3273), - [anon_sym_AT] = ACTIONS(3273), - [anon_sym_static] = ACTIONS(3273), - [anon_sym_readonly] = ACTIONS(3273), - [anon_sym_get] = ACTIONS(3273), - [anon_sym_set] = ACTIONS(3273), - [anon_sym_declare] = ACTIONS(3273), - [anon_sym_public] = ACTIONS(3273), - [anon_sym_private] = ACTIONS(3273), - [anon_sym_protected] = ACTIONS(3273), - [anon_sym_override] = ACTIONS(3273), - [anon_sym_module] = ACTIONS(3273), - [anon_sym_any] = ACTIONS(3273), - [anon_sym_number] = ACTIONS(3273), - [anon_sym_boolean] = ACTIONS(3273), - [anon_sym_string] = ACTIONS(3273), - [anon_sym_symbol] = ACTIONS(3273), - [anon_sym_object] = ACTIONS(3273), - [anon_sym_abstract] = ACTIONS(3273), - [anon_sym_interface] = ACTIONS(3273), - [anon_sym_enum] = ACTIONS(3273), - [sym_html_comment] = ACTIONS(5), - }, - [1674] = { - [sym_comment] = STATE(1674), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1675] = { - [sym_comment] = STATE(1675), - [ts_builtin_sym_end] = ACTIONS(3655), - [sym_identifier] = ACTIONS(3409), - [anon_sym_export] = ACTIONS(3409), - [anon_sym_type] = ACTIONS(3409), - [anon_sym_namespace] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_typeof] = ACTIONS(3409), - [anon_sym_import] = ACTIONS(3409), - [anon_sym_with] = ACTIONS(3409), - [anon_sym_var] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_const] = ACTIONS(3409), - [anon_sym_BANG] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_switch] = ACTIONS(3409), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_await] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_break] = ACTIONS(3409), - [anon_sym_continue] = ACTIONS(3409), - [anon_sym_debugger] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_throw] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LTtemplate_GT] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_SQUOTE] = ACTIONS(3409), - [anon_sym_class] = ACTIONS(3409), - [anon_sym_async] = ACTIONS(3409), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_using] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_SLASH] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_void] = ACTIONS(3409), - [anon_sym_delete] = ACTIONS(3409), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3409), - [sym_number] = ACTIONS(3409), - [sym_private_property_identifier] = ACTIONS(3409), - [sym_this] = ACTIONS(3409), - [sym_super] = ACTIONS(3409), - [sym_true] = ACTIONS(3409), - [sym_false] = ACTIONS(3409), - [sym_null] = ACTIONS(3409), - [sym_undefined] = ACTIONS(3409), - [anon_sym_AT] = ACTIONS(3409), - [anon_sym_static] = ACTIONS(3409), - [anon_sym_readonly] = ACTIONS(3409), - [anon_sym_get] = ACTIONS(3409), - [anon_sym_set] = ACTIONS(3409), - [anon_sym_declare] = ACTIONS(3409), - [anon_sym_public] = ACTIONS(3409), - [anon_sym_private] = ACTIONS(3409), - [anon_sym_protected] = ACTIONS(3409), - [anon_sym_override] = ACTIONS(3409), - [anon_sym_module] = ACTIONS(3409), - [anon_sym_any] = ACTIONS(3409), - [anon_sym_number] = ACTIONS(3409), - [anon_sym_boolean] = ACTIONS(3409), - [anon_sym_string] = ACTIONS(3409), - [anon_sym_symbol] = ACTIONS(3409), - [anon_sym_object] = ACTIONS(3409), - [anon_sym_abstract] = ACTIONS(3409), - [anon_sym_interface] = ACTIONS(3409), - [anon_sym_enum] = ACTIONS(3409), - [sym_html_comment] = ACTIONS(5), - }, - [1676] = { - [sym_comment] = STATE(1676), - [ts_builtin_sym_end] = ACTIONS(3655), - [sym_identifier] = ACTIONS(3409), - [anon_sym_export] = ACTIONS(3409), - [anon_sym_type] = ACTIONS(3409), - [anon_sym_namespace] = ACTIONS(3409), - [anon_sym_LBRACE] = ACTIONS(3409), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_typeof] = ACTIONS(3409), - [anon_sym_import] = ACTIONS(3409), - [anon_sym_with] = ACTIONS(3409), - [anon_sym_var] = ACTIONS(3409), - [anon_sym_let] = ACTIONS(3409), - [anon_sym_const] = ACTIONS(3409), - [anon_sym_BANG] = ACTIONS(3409), - [anon_sym_if] = ACTIONS(3409), - [anon_sym_switch] = ACTIONS(3409), - [anon_sym_for] = ACTIONS(3409), - [anon_sym_LPAREN] = ACTIONS(3409), - [anon_sym_await] = ACTIONS(3409), - [anon_sym_while] = ACTIONS(3409), - [anon_sym_do] = ACTIONS(3409), - [anon_sym_try] = ACTIONS(3409), - [anon_sym_break] = ACTIONS(3409), - [anon_sym_continue] = ACTIONS(3409), - [anon_sym_debugger] = ACTIONS(3409), - [anon_sym_return] = ACTIONS(3409), - [anon_sym_throw] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_yield] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(3409), - [anon_sym_LTtemplate_GT] = ACTIONS(3409), - [anon_sym_DQUOTE] = ACTIONS(3409), - [anon_sym_SQUOTE] = ACTIONS(3409), - [anon_sym_class] = ACTIONS(3409), - [anon_sym_async] = ACTIONS(3409), - [anon_sym_function] = ACTIONS(3409), - [anon_sym_new] = ACTIONS(3409), - [anon_sym_using] = ACTIONS(3409), - [anon_sym_PLUS] = ACTIONS(3409), - [anon_sym_DASH] = ACTIONS(3409), - [anon_sym_SLASH] = ACTIONS(3409), - [anon_sym_LT] = ACTIONS(3409), - [anon_sym_TILDE] = ACTIONS(3409), - [anon_sym_void] = ACTIONS(3409), - [anon_sym_delete] = ACTIONS(3409), - [anon_sym_PLUS_PLUS] = ACTIONS(3409), - [anon_sym_DASH_DASH] = ACTIONS(3409), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3409), - [sym_number] = ACTIONS(3409), - [sym_private_property_identifier] = ACTIONS(3409), - [sym_this] = ACTIONS(3409), - [sym_super] = ACTIONS(3409), - [sym_true] = ACTIONS(3409), - [sym_false] = ACTIONS(3409), - [sym_null] = ACTIONS(3409), - [sym_undefined] = ACTIONS(3409), - [anon_sym_AT] = ACTIONS(3409), - [anon_sym_static] = ACTIONS(3409), - [anon_sym_readonly] = ACTIONS(3409), - [anon_sym_get] = ACTIONS(3409), - [anon_sym_set] = ACTIONS(3409), - [anon_sym_declare] = ACTIONS(3409), - [anon_sym_public] = ACTIONS(3409), - [anon_sym_private] = ACTIONS(3409), - [anon_sym_protected] = ACTIONS(3409), - [anon_sym_override] = ACTIONS(3409), - [anon_sym_module] = ACTIONS(3409), - [anon_sym_any] = ACTIONS(3409), - [anon_sym_number] = ACTIONS(3409), - [anon_sym_boolean] = ACTIONS(3409), - [anon_sym_string] = ACTIONS(3409), - [anon_sym_symbol] = ACTIONS(3409), - [anon_sym_object] = ACTIONS(3409), - [anon_sym_abstract] = ACTIONS(3409), - [anon_sym_interface] = ACTIONS(3409), - [anon_sym_enum] = ACTIONS(3409), - [sym_html_comment] = ACTIONS(5), - }, - [1677] = { - [sym_comment] = STATE(1677), - [ts_builtin_sym_end] = ACTIONS(3631), - [sym_identifier] = ACTIONS(3315), - [anon_sym_export] = ACTIONS(3315), - [anon_sym_type] = ACTIONS(3315), - [anon_sym_namespace] = ACTIONS(3315), - [anon_sym_LBRACE] = ACTIONS(3315), - [anon_sym_RBRACE] = ACTIONS(3315), - [anon_sym_typeof] = ACTIONS(3315), - [anon_sym_import] = ACTIONS(3315), - [anon_sym_with] = ACTIONS(3315), - [anon_sym_var] = ACTIONS(3315), - [anon_sym_let] = ACTIONS(3315), - [anon_sym_const] = ACTIONS(3315), - [anon_sym_BANG] = ACTIONS(3315), - [anon_sym_if] = ACTIONS(3315), - [anon_sym_switch] = ACTIONS(3315), - [anon_sym_for] = ACTIONS(3315), - [anon_sym_LPAREN] = ACTIONS(3315), - [anon_sym_await] = ACTIONS(3315), - [anon_sym_while] = ACTIONS(3315), - [anon_sym_do] = ACTIONS(3315), - [anon_sym_try] = ACTIONS(3315), - [anon_sym_break] = ACTIONS(3315), - [anon_sym_continue] = ACTIONS(3315), - [anon_sym_debugger] = ACTIONS(3315), - [anon_sym_return] = ACTIONS(3315), - [anon_sym_throw] = ACTIONS(3315), - [anon_sym_SEMI] = ACTIONS(3315), - [anon_sym_yield] = ACTIONS(3315), - [anon_sym_LBRACK] = ACTIONS(3315), - [anon_sym_LTtemplate_GT] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3315), - [anon_sym_SQUOTE] = ACTIONS(3315), - [anon_sym_class] = ACTIONS(3315), - [anon_sym_async] = ACTIONS(3315), - [anon_sym_function] = ACTIONS(3315), - [anon_sym_new] = ACTIONS(3315), - [anon_sym_using] = ACTIONS(3315), - [anon_sym_PLUS] = ACTIONS(3315), - [anon_sym_DASH] = ACTIONS(3315), - [anon_sym_SLASH] = ACTIONS(3315), - [anon_sym_LT] = ACTIONS(3315), - [anon_sym_TILDE] = ACTIONS(3315), - [anon_sym_void] = ACTIONS(3315), - [anon_sym_delete] = ACTIONS(3315), - [anon_sym_PLUS_PLUS] = ACTIONS(3315), - [anon_sym_DASH_DASH] = ACTIONS(3315), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3315), - [sym_number] = ACTIONS(3315), - [sym_private_property_identifier] = ACTIONS(3315), - [sym_this] = ACTIONS(3315), - [sym_super] = ACTIONS(3315), - [sym_true] = ACTIONS(3315), - [sym_false] = ACTIONS(3315), - [sym_null] = ACTIONS(3315), - [sym_undefined] = ACTIONS(3315), - [anon_sym_AT] = ACTIONS(3315), - [anon_sym_static] = ACTIONS(3315), - [anon_sym_readonly] = ACTIONS(3315), - [anon_sym_get] = ACTIONS(3315), - [anon_sym_set] = ACTIONS(3315), - [anon_sym_declare] = ACTIONS(3315), - [anon_sym_public] = ACTIONS(3315), - [anon_sym_private] = ACTIONS(3315), - [anon_sym_protected] = ACTIONS(3315), - [anon_sym_override] = ACTIONS(3315), - [anon_sym_module] = ACTIONS(3315), - [anon_sym_any] = ACTIONS(3315), - [anon_sym_number] = ACTIONS(3315), - [anon_sym_boolean] = ACTIONS(3315), - [anon_sym_string] = ACTIONS(3315), - [anon_sym_symbol] = ACTIONS(3315), - [anon_sym_object] = ACTIONS(3315), - [anon_sym_abstract] = ACTIONS(3315), - [anon_sym_interface] = ACTIONS(3315), - [anon_sym_enum] = ACTIONS(3315), - [sym_html_comment] = ACTIONS(5), - }, - [1678] = { - [sym_comment] = STATE(1678), - [ts_builtin_sym_end] = ACTIONS(3497), - [sym_identifier] = ACTIONS(3329), - [anon_sym_export] = ACTIONS(3329), - [anon_sym_type] = ACTIONS(3329), - [anon_sym_namespace] = ACTIONS(3329), - [anon_sym_LBRACE] = ACTIONS(3329), - [anon_sym_RBRACE] = ACTIONS(3329), - [anon_sym_typeof] = ACTIONS(3329), - [anon_sym_import] = ACTIONS(3329), - [anon_sym_with] = ACTIONS(3329), - [anon_sym_var] = ACTIONS(3329), - [anon_sym_let] = ACTIONS(3329), - [anon_sym_const] = ACTIONS(3329), - [anon_sym_BANG] = ACTIONS(3329), - [anon_sym_if] = ACTIONS(3329), - [anon_sym_switch] = ACTIONS(3329), - [anon_sym_for] = ACTIONS(3329), - [anon_sym_LPAREN] = ACTIONS(3329), - [anon_sym_await] = ACTIONS(3329), - [anon_sym_while] = ACTIONS(3329), - [anon_sym_do] = ACTIONS(3329), - [anon_sym_try] = ACTIONS(3329), - [anon_sym_break] = ACTIONS(3329), - [anon_sym_continue] = ACTIONS(3329), - [anon_sym_debugger] = ACTIONS(3329), - [anon_sym_return] = ACTIONS(3329), - [anon_sym_throw] = ACTIONS(3329), - [anon_sym_SEMI] = ACTIONS(3329), - [anon_sym_yield] = ACTIONS(3329), - [anon_sym_LBRACK] = ACTIONS(3329), - [anon_sym_LTtemplate_GT] = ACTIONS(3329), - [anon_sym_DQUOTE] = ACTIONS(3329), - [anon_sym_SQUOTE] = ACTIONS(3329), - [anon_sym_class] = ACTIONS(3329), - [anon_sym_async] = ACTIONS(3329), - [anon_sym_function] = ACTIONS(3329), - [anon_sym_new] = ACTIONS(3329), - [anon_sym_using] = ACTIONS(3329), - [anon_sym_PLUS] = ACTIONS(3329), - [anon_sym_DASH] = ACTIONS(3329), - [anon_sym_SLASH] = ACTIONS(3329), - [anon_sym_LT] = ACTIONS(3329), - [anon_sym_TILDE] = ACTIONS(3329), - [anon_sym_void] = ACTIONS(3329), - [anon_sym_delete] = ACTIONS(3329), - [anon_sym_PLUS_PLUS] = ACTIONS(3329), - [anon_sym_DASH_DASH] = ACTIONS(3329), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3329), - [sym_number] = ACTIONS(3329), - [sym_private_property_identifier] = ACTIONS(3329), - [sym_this] = ACTIONS(3329), - [sym_super] = ACTIONS(3329), - [sym_true] = ACTIONS(3329), - [sym_false] = ACTIONS(3329), - [sym_null] = ACTIONS(3329), - [sym_undefined] = ACTIONS(3329), - [anon_sym_AT] = ACTIONS(3329), - [anon_sym_static] = ACTIONS(3329), - [anon_sym_readonly] = ACTIONS(3329), - [anon_sym_get] = ACTIONS(3329), - [anon_sym_set] = ACTIONS(3329), - [anon_sym_declare] = ACTIONS(3329), - [anon_sym_public] = ACTIONS(3329), - [anon_sym_private] = ACTIONS(3329), - [anon_sym_protected] = ACTIONS(3329), - [anon_sym_override] = ACTIONS(3329), - [anon_sym_module] = ACTIONS(3329), - [anon_sym_any] = ACTIONS(3329), - [anon_sym_number] = ACTIONS(3329), - [anon_sym_boolean] = ACTIONS(3329), - [anon_sym_string] = ACTIONS(3329), - [anon_sym_symbol] = ACTIONS(3329), - [anon_sym_object] = ACTIONS(3329), - [anon_sym_abstract] = ACTIONS(3329), - [anon_sym_interface] = ACTIONS(3329), - [anon_sym_enum] = ACTIONS(3329), - [sym_html_comment] = ACTIONS(5), - }, - [1679] = { - [sym_comment] = STATE(1679), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1680] = { - [sym_comment] = STATE(1680), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1681] = { - [sym_comment] = STATE(1681), - [ts_builtin_sym_end] = ACTIONS(3677), - [sym_identifier] = ACTIONS(3619), - [anon_sym_export] = ACTIONS(3619), - [anon_sym_type] = ACTIONS(3619), - [anon_sym_namespace] = ACTIONS(3619), - [anon_sym_LBRACE] = ACTIONS(3619), - [anon_sym_RBRACE] = ACTIONS(3619), - [anon_sym_typeof] = ACTIONS(3619), - [anon_sym_import] = ACTIONS(3619), - [anon_sym_with] = ACTIONS(3619), - [anon_sym_var] = ACTIONS(3619), - [anon_sym_let] = ACTIONS(3619), - [anon_sym_const] = ACTIONS(3619), - [anon_sym_BANG] = ACTIONS(3619), - [anon_sym_if] = ACTIONS(3619), - [anon_sym_switch] = ACTIONS(3619), - [anon_sym_for] = ACTIONS(3619), - [anon_sym_LPAREN] = ACTIONS(3619), - [anon_sym_await] = ACTIONS(3619), - [anon_sym_while] = ACTIONS(3619), - [anon_sym_do] = ACTIONS(3619), - [anon_sym_try] = ACTIONS(3619), - [anon_sym_break] = ACTIONS(3619), - [anon_sym_continue] = ACTIONS(3619), - [anon_sym_debugger] = ACTIONS(3619), - [anon_sym_return] = ACTIONS(3619), - [anon_sym_throw] = ACTIONS(3619), - [anon_sym_SEMI] = ACTIONS(3619), - [anon_sym_yield] = ACTIONS(3619), - [anon_sym_LBRACK] = ACTIONS(3619), - [anon_sym_LTtemplate_GT] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(3619), - [anon_sym_SQUOTE] = ACTIONS(3619), - [anon_sym_class] = ACTIONS(3619), - [anon_sym_async] = ACTIONS(3619), - [anon_sym_function] = ACTIONS(3619), - [anon_sym_new] = ACTIONS(3619), - [anon_sym_using] = ACTIONS(3619), - [anon_sym_PLUS] = ACTIONS(3619), - [anon_sym_DASH] = ACTIONS(3619), - [anon_sym_SLASH] = ACTIONS(3619), - [anon_sym_LT] = ACTIONS(3619), - [anon_sym_TILDE] = ACTIONS(3619), - [anon_sym_void] = ACTIONS(3619), - [anon_sym_delete] = ACTIONS(3619), - [anon_sym_PLUS_PLUS] = ACTIONS(3619), - [anon_sym_DASH_DASH] = ACTIONS(3619), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3619), - [sym_number] = ACTIONS(3619), - [sym_private_property_identifier] = ACTIONS(3619), - [sym_this] = ACTIONS(3619), - [sym_super] = ACTIONS(3619), - [sym_true] = ACTIONS(3619), - [sym_false] = ACTIONS(3619), - [sym_null] = ACTIONS(3619), - [sym_undefined] = ACTIONS(3619), - [anon_sym_AT] = ACTIONS(3619), - [anon_sym_static] = ACTIONS(3619), - [anon_sym_readonly] = ACTIONS(3619), - [anon_sym_get] = ACTIONS(3619), - [anon_sym_set] = ACTIONS(3619), - [anon_sym_declare] = ACTIONS(3619), - [anon_sym_public] = ACTIONS(3619), - [anon_sym_private] = ACTIONS(3619), - [anon_sym_protected] = ACTIONS(3619), - [anon_sym_override] = ACTIONS(3619), - [anon_sym_module] = ACTIONS(3619), - [anon_sym_any] = ACTIONS(3619), - [anon_sym_number] = ACTIONS(3619), - [anon_sym_boolean] = ACTIONS(3619), - [anon_sym_string] = ACTIONS(3619), - [anon_sym_symbol] = ACTIONS(3619), - [anon_sym_object] = ACTIONS(3619), - [anon_sym_abstract] = ACTIONS(3619), - [anon_sym_interface] = ACTIONS(3619), - [anon_sym_enum] = ACTIONS(3619), - [sym_html_comment] = ACTIONS(5), - }, - [1682] = { - [sym_comment] = STATE(1682), - [ts_builtin_sym_end] = ACTIONS(2254), - [sym_identifier] = ACTIONS(2252), - [anon_sym_export] = ACTIONS(2252), - [anon_sym_type] = ACTIONS(2252), - [anon_sym_namespace] = ACTIONS(2252), - [anon_sym_LBRACE] = ACTIONS(2252), - [anon_sym_RBRACE] = ACTIONS(2252), - [anon_sym_typeof] = ACTIONS(2252), - [anon_sym_import] = ACTIONS(2252), - [anon_sym_with] = ACTIONS(2252), - [anon_sym_var] = ACTIONS(2252), - [anon_sym_let] = ACTIONS(2252), - [anon_sym_const] = ACTIONS(2252), - [anon_sym_BANG] = ACTIONS(2252), - [anon_sym_if] = ACTIONS(2252), - [anon_sym_switch] = ACTIONS(2252), - [anon_sym_for] = ACTIONS(2252), - [anon_sym_LPAREN] = ACTIONS(2252), - [anon_sym_await] = ACTIONS(2252), - [anon_sym_while] = ACTIONS(2252), - [anon_sym_do] = ACTIONS(2252), - [anon_sym_try] = ACTIONS(2252), - [anon_sym_break] = ACTIONS(2252), - [anon_sym_continue] = ACTIONS(2252), - [anon_sym_debugger] = ACTIONS(2252), - [anon_sym_return] = ACTIONS(2252), - [anon_sym_throw] = ACTIONS(2252), - [anon_sym_SEMI] = ACTIONS(2252), - [anon_sym_yield] = ACTIONS(2252), - [anon_sym_LBRACK] = ACTIONS(2252), - [anon_sym_LTtemplate_GT] = ACTIONS(2252), - [anon_sym_DQUOTE] = ACTIONS(2252), - [anon_sym_SQUOTE] = ACTIONS(2252), - [anon_sym_class] = ACTIONS(2252), - [anon_sym_async] = ACTIONS(2252), - [anon_sym_function] = ACTIONS(2252), - [anon_sym_new] = ACTIONS(2252), - [anon_sym_using] = ACTIONS(2252), - [anon_sym_PLUS] = ACTIONS(2252), - [anon_sym_DASH] = ACTIONS(2252), - [anon_sym_SLASH] = ACTIONS(2252), - [anon_sym_LT] = ACTIONS(2252), - [anon_sym_TILDE] = ACTIONS(2252), - [anon_sym_void] = ACTIONS(2252), - [anon_sym_delete] = ACTIONS(2252), - [anon_sym_PLUS_PLUS] = ACTIONS(2252), - [anon_sym_DASH_DASH] = ACTIONS(2252), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2252), - [sym_number] = ACTIONS(2252), - [sym_private_property_identifier] = ACTIONS(2252), - [sym_this] = ACTIONS(2252), - [sym_super] = ACTIONS(2252), - [sym_true] = ACTIONS(2252), - [sym_false] = ACTIONS(2252), - [sym_null] = ACTIONS(2252), - [sym_undefined] = ACTIONS(2252), - [anon_sym_AT] = ACTIONS(2252), - [anon_sym_static] = ACTIONS(2252), - [anon_sym_readonly] = ACTIONS(2252), - [anon_sym_get] = ACTIONS(2252), - [anon_sym_set] = ACTIONS(2252), - [anon_sym_declare] = ACTIONS(2252), - [anon_sym_public] = ACTIONS(2252), - [anon_sym_private] = ACTIONS(2252), - [anon_sym_protected] = ACTIONS(2252), - [anon_sym_override] = ACTIONS(2252), - [anon_sym_module] = ACTIONS(2252), - [anon_sym_any] = ACTIONS(2252), - [anon_sym_number] = ACTIONS(2252), - [anon_sym_boolean] = ACTIONS(2252), - [anon_sym_string] = ACTIONS(2252), - [anon_sym_symbol] = ACTIONS(2252), - [anon_sym_object] = ACTIONS(2252), - [anon_sym_abstract] = ACTIONS(2252), - [anon_sym_interface] = ACTIONS(2252), - [anon_sym_enum] = ACTIONS(2252), - [sym_html_comment] = ACTIONS(5), - }, - [1683] = { - [sym_comment] = STATE(1683), - [ts_builtin_sym_end] = ACTIONS(3625), - [sym_identifier] = ACTIONS(3437), - [anon_sym_export] = ACTIONS(3437), - [anon_sym_type] = ACTIONS(3437), - [anon_sym_namespace] = ACTIONS(3437), - [anon_sym_LBRACE] = ACTIONS(3437), - [anon_sym_RBRACE] = ACTIONS(3437), - [anon_sym_typeof] = ACTIONS(3437), - [anon_sym_import] = ACTIONS(3437), - [anon_sym_with] = ACTIONS(3437), - [anon_sym_var] = ACTIONS(3437), - [anon_sym_let] = ACTIONS(3437), - [anon_sym_const] = ACTIONS(3437), - [anon_sym_BANG] = ACTIONS(3437), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_switch] = ACTIONS(3437), - [anon_sym_for] = ACTIONS(3437), - [anon_sym_LPAREN] = ACTIONS(3437), - [anon_sym_await] = ACTIONS(3437), - [anon_sym_while] = ACTIONS(3437), - [anon_sym_do] = ACTIONS(3437), - [anon_sym_try] = ACTIONS(3437), - [anon_sym_break] = ACTIONS(3437), - [anon_sym_continue] = ACTIONS(3437), - [anon_sym_debugger] = ACTIONS(3437), - [anon_sym_return] = ACTIONS(3437), - [anon_sym_throw] = ACTIONS(3437), - [anon_sym_SEMI] = ACTIONS(3437), - [anon_sym_yield] = ACTIONS(3437), - [anon_sym_LBRACK] = ACTIONS(3437), - [anon_sym_LTtemplate_GT] = ACTIONS(3437), - [anon_sym_DQUOTE] = ACTIONS(3437), - [anon_sym_SQUOTE] = ACTIONS(3437), - [anon_sym_class] = ACTIONS(3437), - [anon_sym_async] = ACTIONS(3437), - [anon_sym_function] = ACTIONS(3437), - [anon_sym_new] = ACTIONS(3437), - [anon_sym_using] = ACTIONS(3437), - [anon_sym_PLUS] = ACTIONS(3437), - [anon_sym_DASH] = ACTIONS(3437), - [anon_sym_SLASH] = ACTIONS(3437), - [anon_sym_LT] = ACTIONS(3437), - [anon_sym_TILDE] = ACTIONS(3437), - [anon_sym_void] = ACTIONS(3437), - [anon_sym_delete] = ACTIONS(3437), - [anon_sym_PLUS_PLUS] = ACTIONS(3437), - [anon_sym_DASH_DASH] = ACTIONS(3437), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3437), - [sym_number] = ACTIONS(3437), - [sym_private_property_identifier] = ACTIONS(3437), - [sym_this] = ACTIONS(3437), - [sym_super] = ACTIONS(3437), - [sym_true] = ACTIONS(3437), - [sym_false] = ACTIONS(3437), - [sym_null] = ACTIONS(3437), - [sym_undefined] = ACTIONS(3437), - [anon_sym_AT] = ACTIONS(3437), - [anon_sym_static] = ACTIONS(3437), - [anon_sym_readonly] = ACTIONS(3437), - [anon_sym_get] = ACTIONS(3437), - [anon_sym_set] = ACTIONS(3437), - [anon_sym_declare] = ACTIONS(3437), - [anon_sym_public] = ACTIONS(3437), - [anon_sym_private] = ACTIONS(3437), - [anon_sym_protected] = ACTIONS(3437), - [anon_sym_override] = ACTIONS(3437), - [anon_sym_module] = ACTIONS(3437), - [anon_sym_any] = ACTIONS(3437), - [anon_sym_number] = ACTIONS(3437), - [anon_sym_boolean] = ACTIONS(3437), - [anon_sym_string] = ACTIONS(3437), - [anon_sym_symbol] = ACTIONS(3437), - [anon_sym_object] = ACTIONS(3437), - [anon_sym_abstract] = ACTIONS(3437), - [anon_sym_interface] = ACTIONS(3437), - [anon_sym_enum] = ACTIONS(3437), - [sym_html_comment] = ACTIONS(5), - }, - [1684] = { - [sym_comment] = STATE(1684), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1685] = { - [sym_comment] = STATE(1685), - [ts_builtin_sym_end] = ACTIONS(3671), - [sym_identifier] = ACTIONS(3423), - [anon_sym_export] = ACTIONS(3423), - [anon_sym_type] = ACTIONS(3423), - [anon_sym_namespace] = ACTIONS(3423), - [anon_sym_LBRACE] = ACTIONS(3423), - [anon_sym_RBRACE] = ACTIONS(3423), - [anon_sym_typeof] = ACTIONS(3423), - [anon_sym_import] = ACTIONS(3423), - [anon_sym_with] = ACTIONS(3423), - [anon_sym_var] = ACTIONS(3423), - [anon_sym_let] = ACTIONS(3423), - [anon_sym_const] = ACTIONS(3423), - [anon_sym_BANG] = ACTIONS(3423), - [anon_sym_if] = ACTIONS(3423), - [anon_sym_switch] = ACTIONS(3423), - [anon_sym_for] = ACTIONS(3423), - [anon_sym_LPAREN] = ACTIONS(3423), - [anon_sym_await] = ACTIONS(3423), - [anon_sym_while] = ACTIONS(3423), - [anon_sym_do] = ACTIONS(3423), - [anon_sym_try] = ACTIONS(3423), - [anon_sym_break] = ACTIONS(3423), - [anon_sym_continue] = ACTIONS(3423), - [anon_sym_debugger] = ACTIONS(3423), - [anon_sym_return] = ACTIONS(3423), - [anon_sym_throw] = ACTIONS(3423), - [anon_sym_SEMI] = ACTIONS(3423), - [anon_sym_yield] = ACTIONS(3423), - [anon_sym_LBRACK] = ACTIONS(3423), - [anon_sym_LTtemplate_GT] = ACTIONS(3423), - [anon_sym_DQUOTE] = ACTIONS(3423), - [anon_sym_SQUOTE] = ACTIONS(3423), - [anon_sym_class] = ACTIONS(3423), - [anon_sym_async] = ACTIONS(3423), - [anon_sym_function] = ACTIONS(3423), - [anon_sym_new] = ACTIONS(3423), - [anon_sym_using] = ACTIONS(3423), - [anon_sym_PLUS] = ACTIONS(3423), - [anon_sym_DASH] = ACTIONS(3423), - [anon_sym_SLASH] = ACTIONS(3423), - [anon_sym_LT] = ACTIONS(3423), - [anon_sym_TILDE] = ACTIONS(3423), - [anon_sym_void] = ACTIONS(3423), - [anon_sym_delete] = ACTIONS(3423), - [anon_sym_PLUS_PLUS] = ACTIONS(3423), - [anon_sym_DASH_DASH] = ACTIONS(3423), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3423), - [sym_number] = ACTIONS(3423), - [sym_private_property_identifier] = ACTIONS(3423), - [sym_this] = ACTIONS(3423), - [sym_super] = ACTIONS(3423), - [sym_true] = ACTIONS(3423), - [sym_false] = ACTIONS(3423), - [sym_null] = ACTIONS(3423), - [sym_undefined] = ACTIONS(3423), - [anon_sym_AT] = ACTIONS(3423), - [anon_sym_static] = ACTIONS(3423), - [anon_sym_readonly] = ACTIONS(3423), - [anon_sym_get] = ACTIONS(3423), - [anon_sym_set] = ACTIONS(3423), - [anon_sym_declare] = ACTIONS(3423), - [anon_sym_public] = ACTIONS(3423), - [anon_sym_private] = ACTIONS(3423), - [anon_sym_protected] = ACTIONS(3423), - [anon_sym_override] = ACTIONS(3423), - [anon_sym_module] = ACTIONS(3423), - [anon_sym_any] = ACTIONS(3423), - [anon_sym_number] = ACTIONS(3423), - [anon_sym_boolean] = ACTIONS(3423), - [anon_sym_string] = ACTIONS(3423), - [anon_sym_symbol] = ACTIONS(3423), - [anon_sym_object] = ACTIONS(3423), - [anon_sym_abstract] = ACTIONS(3423), - [anon_sym_interface] = ACTIONS(3423), - [anon_sym_enum] = ACTIONS(3423), - [sym_html_comment] = ACTIONS(5), - }, - [1686] = { - [sym_comment] = STATE(1686), - [ts_builtin_sym_end] = ACTIONS(3499), - [sym_identifier] = ACTIONS(3225), - [anon_sym_export] = ACTIONS(3225), - [anon_sym_type] = ACTIONS(3225), - [anon_sym_namespace] = ACTIONS(3225), - [anon_sym_LBRACE] = ACTIONS(3225), - [anon_sym_RBRACE] = ACTIONS(3225), - [anon_sym_typeof] = ACTIONS(3225), - [anon_sym_import] = ACTIONS(3225), - [anon_sym_with] = ACTIONS(3225), - [anon_sym_var] = ACTIONS(3225), - [anon_sym_let] = ACTIONS(3225), - [anon_sym_const] = ACTIONS(3225), - [anon_sym_BANG] = ACTIONS(3225), - [anon_sym_if] = ACTIONS(3225), - [anon_sym_switch] = ACTIONS(3225), - [anon_sym_for] = ACTIONS(3225), - [anon_sym_LPAREN] = ACTIONS(3225), - [anon_sym_await] = ACTIONS(3225), - [anon_sym_while] = ACTIONS(3225), - [anon_sym_do] = ACTIONS(3225), - [anon_sym_try] = ACTIONS(3225), - [anon_sym_break] = ACTIONS(3225), - [anon_sym_continue] = ACTIONS(3225), - [anon_sym_debugger] = ACTIONS(3225), - [anon_sym_return] = ACTIONS(3225), - [anon_sym_throw] = ACTIONS(3225), - [anon_sym_SEMI] = ACTIONS(3225), - [anon_sym_yield] = ACTIONS(3225), - [anon_sym_LBRACK] = ACTIONS(3225), - [anon_sym_LTtemplate_GT] = ACTIONS(3225), - [anon_sym_DQUOTE] = ACTIONS(3225), - [anon_sym_SQUOTE] = ACTIONS(3225), - [anon_sym_class] = ACTIONS(3225), - [anon_sym_async] = ACTIONS(3225), - [anon_sym_function] = ACTIONS(3225), - [anon_sym_new] = ACTIONS(3225), - [anon_sym_using] = ACTIONS(3225), - [anon_sym_PLUS] = ACTIONS(3225), - [anon_sym_DASH] = ACTIONS(3225), - [anon_sym_SLASH] = ACTIONS(3225), - [anon_sym_LT] = ACTIONS(3225), - [anon_sym_TILDE] = ACTIONS(3225), - [anon_sym_void] = ACTIONS(3225), - [anon_sym_delete] = ACTIONS(3225), - [anon_sym_PLUS_PLUS] = ACTIONS(3225), - [anon_sym_DASH_DASH] = ACTIONS(3225), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3225), - [sym_number] = ACTIONS(3225), - [sym_private_property_identifier] = ACTIONS(3225), - [sym_this] = ACTIONS(3225), - [sym_super] = ACTIONS(3225), - [sym_true] = ACTIONS(3225), - [sym_false] = ACTIONS(3225), - [sym_null] = ACTIONS(3225), - [sym_undefined] = ACTIONS(3225), - [anon_sym_AT] = ACTIONS(3225), - [anon_sym_static] = ACTIONS(3225), - [anon_sym_readonly] = ACTIONS(3225), - [anon_sym_get] = ACTIONS(3225), - [anon_sym_set] = ACTIONS(3225), - [anon_sym_declare] = ACTIONS(3225), - [anon_sym_public] = ACTIONS(3225), - [anon_sym_private] = ACTIONS(3225), - [anon_sym_protected] = ACTIONS(3225), - [anon_sym_override] = ACTIONS(3225), - [anon_sym_module] = ACTIONS(3225), - [anon_sym_any] = ACTIONS(3225), - [anon_sym_number] = ACTIONS(3225), - [anon_sym_boolean] = ACTIONS(3225), - [anon_sym_string] = ACTIONS(3225), - [anon_sym_symbol] = ACTIONS(3225), - [anon_sym_object] = ACTIONS(3225), - [anon_sym_abstract] = ACTIONS(3225), - [anon_sym_interface] = ACTIONS(3225), - [anon_sym_enum] = ACTIONS(3225), - [sym_html_comment] = ACTIONS(5), - }, - [1687] = { - [sym_comment] = STATE(1687), - [ts_builtin_sym_end] = ACTIONS(3501), - [sym_identifier] = ACTIONS(3331), - [anon_sym_export] = ACTIONS(3331), - [anon_sym_type] = ACTIONS(3331), - [anon_sym_namespace] = ACTIONS(3331), - [anon_sym_LBRACE] = ACTIONS(3331), - [anon_sym_RBRACE] = ACTIONS(3331), - [anon_sym_typeof] = ACTIONS(3331), - [anon_sym_import] = ACTIONS(3331), - [anon_sym_with] = ACTIONS(3331), - [anon_sym_var] = ACTIONS(3331), - [anon_sym_let] = ACTIONS(3331), - [anon_sym_const] = ACTIONS(3331), - [anon_sym_BANG] = ACTIONS(3331), - [anon_sym_if] = ACTIONS(3331), - [anon_sym_switch] = ACTIONS(3331), - [anon_sym_for] = ACTIONS(3331), - [anon_sym_LPAREN] = ACTIONS(3331), - [anon_sym_await] = ACTIONS(3331), - [anon_sym_while] = ACTIONS(3331), - [anon_sym_do] = ACTIONS(3331), - [anon_sym_try] = ACTIONS(3331), - [anon_sym_break] = ACTIONS(3331), - [anon_sym_continue] = ACTIONS(3331), - [anon_sym_debugger] = ACTIONS(3331), - [anon_sym_return] = ACTIONS(3331), - [anon_sym_throw] = ACTIONS(3331), - [anon_sym_SEMI] = ACTIONS(3331), - [anon_sym_yield] = ACTIONS(3331), - [anon_sym_LBRACK] = ACTIONS(3331), - [anon_sym_LTtemplate_GT] = ACTIONS(3331), - [anon_sym_DQUOTE] = ACTIONS(3331), - [anon_sym_SQUOTE] = ACTIONS(3331), - [anon_sym_class] = ACTIONS(3331), - [anon_sym_async] = ACTIONS(3331), - [anon_sym_function] = ACTIONS(3331), - [anon_sym_new] = ACTIONS(3331), - [anon_sym_using] = ACTIONS(3331), - [anon_sym_PLUS] = ACTIONS(3331), - [anon_sym_DASH] = ACTIONS(3331), - [anon_sym_SLASH] = ACTIONS(3331), - [anon_sym_LT] = ACTIONS(3331), - [anon_sym_TILDE] = ACTIONS(3331), - [anon_sym_void] = ACTIONS(3331), - [anon_sym_delete] = ACTIONS(3331), - [anon_sym_PLUS_PLUS] = ACTIONS(3331), - [anon_sym_DASH_DASH] = ACTIONS(3331), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3331), - [sym_number] = ACTIONS(3331), - [sym_private_property_identifier] = ACTIONS(3331), - [sym_this] = ACTIONS(3331), - [sym_super] = ACTIONS(3331), - [sym_true] = ACTIONS(3331), - [sym_false] = ACTIONS(3331), - [sym_null] = ACTIONS(3331), - [sym_undefined] = ACTIONS(3331), - [anon_sym_AT] = ACTIONS(3331), - [anon_sym_static] = ACTIONS(3331), - [anon_sym_readonly] = ACTIONS(3331), - [anon_sym_get] = ACTIONS(3331), - [anon_sym_set] = ACTIONS(3331), - [anon_sym_declare] = ACTIONS(3331), - [anon_sym_public] = ACTIONS(3331), - [anon_sym_private] = ACTIONS(3331), - [anon_sym_protected] = ACTIONS(3331), - [anon_sym_override] = ACTIONS(3331), - [anon_sym_module] = ACTIONS(3331), - [anon_sym_any] = ACTIONS(3331), - [anon_sym_number] = ACTIONS(3331), - [anon_sym_boolean] = ACTIONS(3331), - [anon_sym_string] = ACTIONS(3331), - [anon_sym_symbol] = ACTIONS(3331), - [anon_sym_object] = ACTIONS(3331), - [anon_sym_abstract] = ACTIONS(3331), - [anon_sym_interface] = ACTIONS(3331), - [anon_sym_enum] = ACTIONS(3331), - [sym_html_comment] = ACTIONS(5), - }, - [1688] = { - [sym_comment] = STATE(1688), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1689] = { - [sym_comment] = STATE(1689), - [ts_builtin_sym_end] = ACTIONS(3579), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), - [sym_html_comment] = ACTIONS(5), - }, - [1690] = { - [sym_comment] = STATE(1690), - [ts_builtin_sym_end] = ACTIONS(2162), - [sym_identifier] = ACTIONS(2160), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_type] = ACTIONS(2160), - [anon_sym_namespace] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2160), - [anon_sym_import] = ACTIONS(2160), - [anon_sym_with] = ACTIONS(2160), - [anon_sym_var] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_switch] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_debugger] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_throw] = ACTIONS(2160), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_yield] = ACTIONS(2160), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LTtemplate_GT] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [anon_sym_class] = ACTIONS(2160), - [anon_sym_async] = ACTIONS(2160), - [anon_sym_function] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2160), - [anon_sym_using] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2160), - [anon_sym_DASH] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2160), - [anon_sym_delete] = ACTIONS(2160), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_private_property_identifier] = ACTIONS(2160), - [sym_this] = ACTIONS(2160), - [sym_super] = ACTIONS(2160), - [sym_true] = ACTIONS(2160), - [sym_false] = ACTIONS(2160), - [sym_null] = ACTIONS(2160), - [sym_undefined] = ACTIONS(2160), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2160), - [anon_sym_readonly] = ACTIONS(2160), - [anon_sym_get] = ACTIONS(2160), - [anon_sym_set] = ACTIONS(2160), - [anon_sym_declare] = ACTIONS(2160), - [anon_sym_public] = ACTIONS(2160), - [anon_sym_private] = ACTIONS(2160), - [anon_sym_protected] = ACTIONS(2160), - [anon_sym_override] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_any] = ACTIONS(2160), - [anon_sym_number] = ACTIONS(2160), - [anon_sym_boolean] = ACTIONS(2160), - [anon_sym_string] = ACTIONS(2160), - [anon_sym_symbol] = ACTIONS(2160), - [anon_sym_object] = ACTIONS(2160), - [anon_sym_abstract] = ACTIONS(2160), - [anon_sym_interface] = ACTIONS(2160), - [anon_sym_enum] = ACTIONS(2160), - [sym_html_comment] = ACTIONS(5), - }, - [1691] = { - [sym_comment] = STATE(1691), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1692] = { - [sym_comment] = STATE(1692), - [ts_builtin_sym_end] = ACTIONS(3675), - [sym_identifier] = ACTIONS(3427), - [anon_sym_export] = ACTIONS(3427), - [anon_sym_type] = ACTIONS(3427), - [anon_sym_namespace] = ACTIONS(3427), - [anon_sym_LBRACE] = ACTIONS(3427), - [anon_sym_RBRACE] = ACTIONS(3427), - [anon_sym_typeof] = ACTIONS(3427), - [anon_sym_import] = ACTIONS(3427), - [anon_sym_with] = ACTIONS(3427), - [anon_sym_var] = ACTIONS(3427), - [anon_sym_let] = ACTIONS(3427), - [anon_sym_const] = ACTIONS(3427), - [anon_sym_BANG] = ACTIONS(3427), - [anon_sym_if] = ACTIONS(3427), - [anon_sym_switch] = ACTIONS(3427), - [anon_sym_for] = ACTIONS(3427), - [anon_sym_LPAREN] = ACTIONS(3427), - [anon_sym_await] = ACTIONS(3427), - [anon_sym_while] = ACTIONS(3427), - [anon_sym_do] = ACTIONS(3427), - [anon_sym_try] = ACTIONS(3427), - [anon_sym_break] = ACTIONS(3427), - [anon_sym_continue] = ACTIONS(3427), - [anon_sym_debugger] = ACTIONS(3427), - [anon_sym_return] = ACTIONS(3427), - [anon_sym_throw] = ACTIONS(3427), - [anon_sym_SEMI] = ACTIONS(3427), - [anon_sym_yield] = ACTIONS(3427), - [anon_sym_LBRACK] = ACTIONS(3427), - [anon_sym_LTtemplate_GT] = ACTIONS(3427), - [anon_sym_DQUOTE] = ACTIONS(3427), - [anon_sym_SQUOTE] = ACTIONS(3427), - [anon_sym_class] = ACTIONS(3427), - [anon_sym_async] = ACTIONS(3427), - [anon_sym_function] = ACTIONS(3427), - [anon_sym_new] = ACTIONS(3427), - [anon_sym_using] = ACTIONS(3427), - [anon_sym_PLUS] = ACTIONS(3427), - [anon_sym_DASH] = ACTIONS(3427), - [anon_sym_SLASH] = ACTIONS(3427), - [anon_sym_LT] = ACTIONS(3427), - [anon_sym_TILDE] = ACTIONS(3427), - [anon_sym_void] = ACTIONS(3427), - [anon_sym_delete] = ACTIONS(3427), - [anon_sym_PLUS_PLUS] = ACTIONS(3427), - [anon_sym_DASH_DASH] = ACTIONS(3427), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3427), - [sym_number] = ACTIONS(3427), - [sym_private_property_identifier] = ACTIONS(3427), - [sym_this] = ACTIONS(3427), - [sym_super] = ACTIONS(3427), - [sym_true] = ACTIONS(3427), - [sym_false] = ACTIONS(3427), - [sym_null] = ACTIONS(3427), - [sym_undefined] = ACTIONS(3427), - [anon_sym_AT] = ACTIONS(3427), - [anon_sym_static] = ACTIONS(3427), - [anon_sym_readonly] = ACTIONS(3427), - [anon_sym_get] = ACTIONS(3427), - [anon_sym_set] = ACTIONS(3427), - [anon_sym_declare] = ACTIONS(3427), - [anon_sym_public] = ACTIONS(3427), - [anon_sym_private] = ACTIONS(3427), - [anon_sym_protected] = ACTIONS(3427), - [anon_sym_override] = ACTIONS(3427), - [anon_sym_module] = ACTIONS(3427), - [anon_sym_any] = ACTIONS(3427), - [anon_sym_number] = ACTIONS(3427), - [anon_sym_boolean] = ACTIONS(3427), - [anon_sym_string] = ACTIONS(3427), - [anon_sym_symbol] = ACTIONS(3427), - [anon_sym_object] = ACTIONS(3427), - [anon_sym_abstract] = ACTIONS(3427), - [anon_sym_interface] = ACTIONS(3427), - [anon_sym_enum] = ACTIONS(3427), - [sym_html_comment] = ACTIONS(5), - }, - [1693] = { - [sym_comment] = STATE(1693), - [ts_builtin_sym_end] = ACTIONS(3579), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), - [sym_html_comment] = ACTIONS(5), - }, - [1694] = { - [sym_comment] = STATE(1694), - [ts_builtin_sym_end] = ACTIONS(3579), - [sym_identifier] = ACTIONS(3277), - [anon_sym_export] = ACTIONS(3277), - [anon_sym_type] = ACTIONS(3277), - [anon_sym_namespace] = ACTIONS(3277), - [anon_sym_LBRACE] = ACTIONS(3277), - [anon_sym_RBRACE] = ACTIONS(3277), - [anon_sym_typeof] = ACTIONS(3277), - [anon_sym_import] = ACTIONS(3277), - [anon_sym_with] = ACTIONS(3277), - [anon_sym_var] = ACTIONS(3277), - [anon_sym_let] = ACTIONS(3277), - [anon_sym_const] = ACTIONS(3277), - [anon_sym_BANG] = ACTIONS(3277), - [anon_sym_if] = ACTIONS(3277), - [anon_sym_switch] = ACTIONS(3277), - [anon_sym_for] = ACTIONS(3277), - [anon_sym_LPAREN] = ACTIONS(3277), - [anon_sym_await] = ACTIONS(3277), - [anon_sym_while] = ACTIONS(3277), - [anon_sym_do] = ACTIONS(3277), - [anon_sym_try] = ACTIONS(3277), - [anon_sym_break] = ACTIONS(3277), - [anon_sym_continue] = ACTIONS(3277), - [anon_sym_debugger] = ACTIONS(3277), - [anon_sym_return] = ACTIONS(3277), - [anon_sym_throw] = ACTIONS(3277), - [anon_sym_SEMI] = ACTIONS(3277), - [anon_sym_yield] = ACTIONS(3277), - [anon_sym_LBRACK] = ACTIONS(3277), - [anon_sym_LTtemplate_GT] = ACTIONS(3277), - [anon_sym_DQUOTE] = ACTIONS(3277), - [anon_sym_SQUOTE] = ACTIONS(3277), - [anon_sym_class] = ACTIONS(3277), - [anon_sym_async] = ACTIONS(3277), - [anon_sym_function] = ACTIONS(3277), - [anon_sym_new] = ACTIONS(3277), - [anon_sym_using] = ACTIONS(3277), - [anon_sym_PLUS] = ACTIONS(3277), - [anon_sym_DASH] = ACTIONS(3277), - [anon_sym_SLASH] = ACTIONS(3277), - [anon_sym_LT] = ACTIONS(3277), - [anon_sym_TILDE] = ACTIONS(3277), - [anon_sym_void] = ACTIONS(3277), - [anon_sym_delete] = ACTIONS(3277), - [anon_sym_PLUS_PLUS] = ACTIONS(3277), - [anon_sym_DASH_DASH] = ACTIONS(3277), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3277), - [sym_number] = ACTIONS(3277), - [sym_private_property_identifier] = ACTIONS(3277), - [sym_this] = ACTIONS(3277), - [sym_super] = ACTIONS(3277), - [sym_true] = ACTIONS(3277), - [sym_false] = ACTIONS(3277), - [sym_null] = ACTIONS(3277), - [sym_undefined] = ACTIONS(3277), - [anon_sym_AT] = ACTIONS(3277), - [anon_sym_static] = ACTIONS(3277), - [anon_sym_readonly] = ACTIONS(3277), - [anon_sym_get] = ACTIONS(3277), - [anon_sym_set] = ACTIONS(3277), - [anon_sym_declare] = ACTIONS(3277), - [anon_sym_public] = ACTIONS(3277), - [anon_sym_private] = ACTIONS(3277), - [anon_sym_protected] = ACTIONS(3277), - [anon_sym_override] = ACTIONS(3277), - [anon_sym_module] = ACTIONS(3277), - [anon_sym_any] = ACTIONS(3277), - [anon_sym_number] = ACTIONS(3277), - [anon_sym_boolean] = ACTIONS(3277), - [anon_sym_string] = ACTIONS(3277), - [anon_sym_symbol] = ACTIONS(3277), - [anon_sym_object] = ACTIONS(3277), - [anon_sym_abstract] = ACTIONS(3277), - [anon_sym_interface] = ACTIONS(3277), - [anon_sym_enum] = ACTIONS(3277), - [sym_html_comment] = ACTIONS(5), - }, - [1695] = { - [sym_comment] = STATE(1695), - [ts_builtin_sym_end] = ACTIONS(3475), - [sym_identifier] = ACTIONS(3221), - [anon_sym_export] = ACTIONS(3221), - [anon_sym_type] = ACTIONS(3221), - [anon_sym_namespace] = ACTIONS(3221), - [anon_sym_LBRACE] = ACTIONS(3221), - [anon_sym_RBRACE] = ACTIONS(3221), - [anon_sym_typeof] = ACTIONS(3221), - [anon_sym_import] = ACTIONS(3221), - [anon_sym_with] = ACTIONS(3221), - [anon_sym_var] = ACTIONS(3221), - [anon_sym_let] = ACTIONS(3221), - [anon_sym_const] = ACTIONS(3221), - [anon_sym_BANG] = ACTIONS(3221), - [anon_sym_if] = ACTIONS(3221), - [anon_sym_switch] = ACTIONS(3221), - [anon_sym_for] = ACTIONS(3221), - [anon_sym_LPAREN] = ACTIONS(3221), - [anon_sym_await] = ACTIONS(3221), - [anon_sym_while] = ACTIONS(3221), - [anon_sym_do] = ACTIONS(3221), - [anon_sym_try] = ACTIONS(3221), - [anon_sym_break] = ACTIONS(3221), - [anon_sym_continue] = ACTIONS(3221), - [anon_sym_debugger] = ACTIONS(3221), - [anon_sym_return] = ACTIONS(3221), - [anon_sym_throw] = ACTIONS(3221), - [anon_sym_SEMI] = ACTIONS(3221), - [anon_sym_yield] = ACTIONS(3221), - [anon_sym_LBRACK] = ACTIONS(3221), - [anon_sym_LTtemplate_GT] = ACTIONS(3221), - [anon_sym_DQUOTE] = ACTIONS(3221), - [anon_sym_SQUOTE] = ACTIONS(3221), - [anon_sym_class] = ACTIONS(3221), - [anon_sym_async] = ACTIONS(3221), - [anon_sym_function] = ACTIONS(3221), - [anon_sym_new] = ACTIONS(3221), - [anon_sym_using] = ACTIONS(3221), - [anon_sym_PLUS] = ACTIONS(3221), - [anon_sym_DASH] = ACTIONS(3221), - [anon_sym_SLASH] = ACTIONS(3221), - [anon_sym_LT] = ACTIONS(3221), - [anon_sym_TILDE] = ACTIONS(3221), - [anon_sym_void] = ACTIONS(3221), - [anon_sym_delete] = ACTIONS(3221), - [anon_sym_PLUS_PLUS] = ACTIONS(3221), - [anon_sym_DASH_DASH] = ACTIONS(3221), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3221), - [sym_number] = ACTIONS(3221), - [sym_private_property_identifier] = ACTIONS(3221), - [sym_this] = ACTIONS(3221), - [sym_super] = ACTIONS(3221), - [sym_true] = ACTIONS(3221), - [sym_false] = ACTIONS(3221), - [sym_null] = ACTIONS(3221), - [sym_undefined] = ACTIONS(3221), - [anon_sym_AT] = ACTIONS(3221), - [anon_sym_static] = ACTIONS(3221), - [anon_sym_readonly] = ACTIONS(3221), - [anon_sym_get] = ACTIONS(3221), - [anon_sym_set] = ACTIONS(3221), - [anon_sym_declare] = ACTIONS(3221), - [anon_sym_public] = ACTIONS(3221), - [anon_sym_private] = ACTIONS(3221), - [anon_sym_protected] = ACTIONS(3221), - [anon_sym_override] = ACTIONS(3221), - [anon_sym_module] = ACTIONS(3221), - [anon_sym_any] = ACTIONS(3221), - [anon_sym_number] = ACTIONS(3221), - [anon_sym_boolean] = ACTIONS(3221), - [anon_sym_string] = ACTIONS(3221), - [anon_sym_symbol] = ACTIONS(3221), - [anon_sym_object] = ACTIONS(3221), - [anon_sym_abstract] = ACTIONS(3221), - [anon_sym_interface] = ACTIONS(3221), - [anon_sym_enum] = ACTIONS(3221), - [sym_html_comment] = ACTIONS(5), - }, - [1696] = { - [sym_comment] = STATE(1696), - [ts_builtin_sym_end] = ACTIONS(3511), - [sym_identifier] = ACTIONS(3333), - [anon_sym_export] = ACTIONS(3333), - [anon_sym_type] = ACTIONS(3333), - [anon_sym_namespace] = ACTIONS(3333), - [anon_sym_LBRACE] = ACTIONS(3333), - [anon_sym_RBRACE] = ACTIONS(3333), - [anon_sym_typeof] = ACTIONS(3333), - [anon_sym_import] = ACTIONS(3333), - [anon_sym_with] = ACTIONS(3333), - [anon_sym_var] = ACTIONS(3333), - [anon_sym_let] = ACTIONS(3333), - [anon_sym_const] = ACTIONS(3333), - [anon_sym_BANG] = ACTIONS(3333), - [anon_sym_if] = ACTIONS(3333), - [anon_sym_switch] = ACTIONS(3333), - [anon_sym_for] = ACTIONS(3333), - [anon_sym_LPAREN] = ACTIONS(3333), - [anon_sym_await] = ACTIONS(3333), - [anon_sym_while] = ACTIONS(3333), - [anon_sym_do] = ACTIONS(3333), - [anon_sym_try] = ACTIONS(3333), - [anon_sym_break] = ACTIONS(3333), - [anon_sym_continue] = ACTIONS(3333), - [anon_sym_debugger] = ACTIONS(3333), - [anon_sym_return] = ACTIONS(3333), - [anon_sym_throw] = ACTIONS(3333), - [anon_sym_SEMI] = ACTIONS(3333), - [anon_sym_yield] = ACTIONS(3333), - [anon_sym_LBRACK] = ACTIONS(3333), - [anon_sym_LTtemplate_GT] = ACTIONS(3333), - [anon_sym_DQUOTE] = ACTIONS(3333), - [anon_sym_SQUOTE] = ACTIONS(3333), - [anon_sym_class] = ACTIONS(3333), - [anon_sym_async] = ACTIONS(3333), - [anon_sym_function] = ACTIONS(3333), - [anon_sym_new] = ACTIONS(3333), - [anon_sym_using] = ACTIONS(3333), - [anon_sym_PLUS] = ACTIONS(3333), - [anon_sym_DASH] = ACTIONS(3333), - [anon_sym_SLASH] = ACTIONS(3333), - [anon_sym_LT] = ACTIONS(3333), - [anon_sym_TILDE] = ACTIONS(3333), - [anon_sym_void] = ACTIONS(3333), - [anon_sym_delete] = ACTIONS(3333), - [anon_sym_PLUS_PLUS] = ACTIONS(3333), - [anon_sym_DASH_DASH] = ACTIONS(3333), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3333), - [sym_number] = ACTIONS(3333), - [sym_private_property_identifier] = ACTIONS(3333), - [sym_this] = ACTIONS(3333), - [sym_super] = ACTIONS(3333), - [sym_true] = ACTIONS(3333), - [sym_false] = ACTIONS(3333), - [sym_null] = ACTIONS(3333), - [sym_undefined] = ACTIONS(3333), - [anon_sym_AT] = ACTIONS(3333), - [anon_sym_static] = ACTIONS(3333), - [anon_sym_readonly] = ACTIONS(3333), - [anon_sym_get] = ACTIONS(3333), - [anon_sym_set] = ACTIONS(3333), - [anon_sym_declare] = ACTIONS(3333), - [anon_sym_public] = ACTIONS(3333), - [anon_sym_private] = ACTIONS(3333), - [anon_sym_protected] = ACTIONS(3333), - [anon_sym_override] = ACTIONS(3333), - [anon_sym_module] = ACTIONS(3333), - [anon_sym_any] = ACTIONS(3333), - [anon_sym_number] = ACTIONS(3333), - [anon_sym_boolean] = ACTIONS(3333), - [anon_sym_string] = ACTIONS(3333), - [anon_sym_symbol] = ACTIONS(3333), - [anon_sym_object] = ACTIONS(3333), - [anon_sym_abstract] = ACTIONS(3333), - [anon_sym_interface] = ACTIONS(3333), - [anon_sym_enum] = ACTIONS(3333), - [sym_html_comment] = ACTIONS(5), - }, - [1697] = { - [sym_comment] = STATE(1697), - [ts_builtin_sym_end] = ACTIONS(3473), - [sym_identifier] = ACTIONS(3219), - [anon_sym_export] = ACTIONS(3219), - [anon_sym_type] = ACTIONS(3219), - [anon_sym_namespace] = ACTIONS(3219), - [anon_sym_LBRACE] = ACTIONS(3219), - [anon_sym_RBRACE] = ACTIONS(3219), - [anon_sym_typeof] = ACTIONS(3219), - [anon_sym_import] = ACTIONS(3219), - [anon_sym_with] = ACTIONS(3219), - [anon_sym_var] = ACTIONS(3219), - [anon_sym_let] = ACTIONS(3219), - [anon_sym_const] = ACTIONS(3219), - [anon_sym_BANG] = ACTIONS(3219), - [anon_sym_if] = ACTIONS(3219), - [anon_sym_switch] = ACTIONS(3219), - [anon_sym_for] = ACTIONS(3219), - [anon_sym_LPAREN] = ACTIONS(3219), - [anon_sym_await] = ACTIONS(3219), - [anon_sym_while] = ACTIONS(3219), - [anon_sym_do] = ACTIONS(3219), - [anon_sym_try] = ACTIONS(3219), - [anon_sym_break] = ACTIONS(3219), - [anon_sym_continue] = ACTIONS(3219), - [anon_sym_debugger] = ACTIONS(3219), - [anon_sym_return] = ACTIONS(3219), - [anon_sym_throw] = ACTIONS(3219), - [anon_sym_SEMI] = ACTIONS(3219), - [anon_sym_yield] = ACTIONS(3219), - [anon_sym_LBRACK] = ACTIONS(3219), - [anon_sym_LTtemplate_GT] = ACTIONS(3219), - [anon_sym_DQUOTE] = ACTIONS(3219), - [anon_sym_SQUOTE] = ACTIONS(3219), - [anon_sym_class] = ACTIONS(3219), - [anon_sym_async] = ACTIONS(3219), - [anon_sym_function] = ACTIONS(3219), - [anon_sym_new] = ACTIONS(3219), - [anon_sym_using] = ACTIONS(3219), - [anon_sym_PLUS] = ACTIONS(3219), - [anon_sym_DASH] = ACTIONS(3219), - [anon_sym_SLASH] = ACTIONS(3219), - [anon_sym_LT] = ACTIONS(3219), - [anon_sym_TILDE] = ACTIONS(3219), - [anon_sym_void] = ACTIONS(3219), - [anon_sym_delete] = ACTIONS(3219), - [anon_sym_PLUS_PLUS] = ACTIONS(3219), - [anon_sym_DASH_DASH] = ACTIONS(3219), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3219), - [sym_number] = ACTIONS(3219), - [sym_private_property_identifier] = ACTIONS(3219), - [sym_this] = ACTIONS(3219), - [sym_super] = ACTIONS(3219), - [sym_true] = ACTIONS(3219), - [sym_false] = ACTIONS(3219), - [sym_null] = ACTIONS(3219), - [sym_undefined] = ACTIONS(3219), - [anon_sym_AT] = ACTIONS(3219), - [anon_sym_static] = ACTIONS(3219), - [anon_sym_readonly] = ACTIONS(3219), - [anon_sym_get] = ACTIONS(3219), - [anon_sym_set] = ACTIONS(3219), - [anon_sym_declare] = ACTIONS(3219), - [anon_sym_public] = ACTIONS(3219), - [anon_sym_private] = ACTIONS(3219), - [anon_sym_protected] = ACTIONS(3219), - [anon_sym_override] = ACTIONS(3219), - [anon_sym_module] = ACTIONS(3219), - [anon_sym_any] = ACTIONS(3219), - [anon_sym_number] = ACTIONS(3219), - [anon_sym_boolean] = ACTIONS(3219), - [anon_sym_string] = ACTIONS(3219), - [anon_sym_symbol] = ACTIONS(3219), - [anon_sym_object] = ACTIONS(3219), - [anon_sym_abstract] = ACTIONS(3219), - [anon_sym_interface] = ACTIONS(3219), - [anon_sym_enum] = ACTIONS(3219), - [sym_html_comment] = ACTIONS(5), - }, - [1698] = { - [sym_comment] = STATE(1698), - [ts_builtin_sym_end] = ACTIONS(3645), - [sym_identifier] = ACTIONS(3435), - [anon_sym_export] = ACTIONS(3435), - [anon_sym_type] = ACTIONS(3435), - [anon_sym_namespace] = ACTIONS(3435), - [anon_sym_LBRACE] = ACTIONS(3435), - [anon_sym_RBRACE] = ACTIONS(3435), - [anon_sym_typeof] = ACTIONS(3435), - [anon_sym_import] = ACTIONS(3435), - [anon_sym_with] = ACTIONS(3435), - [anon_sym_var] = ACTIONS(3435), - [anon_sym_let] = ACTIONS(3435), - [anon_sym_const] = ACTIONS(3435), - [anon_sym_BANG] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3435), - [anon_sym_switch] = ACTIONS(3435), - [anon_sym_for] = ACTIONS(3435), - [anon_sym_LPAREN] = ACTIONS(3435), - [anon_sym_await] = ACTIONS(3435), - [anon_sym_while] = ACTIONS(3435), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_try] = ACTIONS(3435), - [anon_sym_break] = ACTIONS(3435), - [anon_sym_continue] = ACTIONS(3435), - [anon_sym_debugger] = ACTIONS(3435), - [anon_sym_return] = ACTIONS(3435), - [anon_sym_throw] = ACTIONS(3435), - [anon_sym_SEMI] = ACTIONS(3435), - [anon_sym_yield] = ACTIONS(3435), - [anon_sym_LBRACK] = ACTIONS(3435), - [anon_sym_LTtemplate_GT] = ACTIONS(3435), - [anon_sym_DQUOTE] = ACTIONS(3435), - [anon_sym_SQUOTE] = ACTIONS(3435), - [anon_sym_class] = ACTIONS(3435), - [anon_sym_async] = ACTIONS(3435), - [anon_sym_function] = ACTIONS(3435), - [anon_sym_new] = ACTIONS(3435), - [anon_sym_using] = ACTIONS(3435), - [anon_sym_PLUS] = ACTIONS(3435), - [anon_sym_DASH] = ACTIONS(3435), - [anon_sym_SLASH] = ACTIONS(3435), - [anon_sym_LT] = ACTIONS(3435), - [anon_sym_TILDE] = ACTIONS(3435), - [anon_sym_void] = ACTIONS(3435), - [anon_sym_delete] = ACTIONS(3435), - [anon_sym_PLUS_PLUS] = ACTIONS(3435), - [anon_sym_DASH_DASH] = ACTIONS(3435), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3435), - [sym_number] = ACTIONS(3435), - [sym_private_property_identifier] = ACTIONS(3435), - [sym_this] = ACTIONS(3435), - [sym_super] = ACTIONS(3435), - [sym_true] = ACTIONS(3435), - [sym_false] = ACTIONS(3435), - [sym_null] = ACTIONS(3435), - [sym_undefined] = ACTIONS(3435), - [anon_sym_AT] = ACTIONS(3435), - [anon_sym_static] = ACTIONS(3435), - [anon_sym_readonly] = ACTIONS(3435), - [anon_sym_get] = ACTIONS(3435), - [anon_sym_set] = ACTIONS(3435), - [anon_sym_declare] = ACTIONS(3435), - [anon_sym_public] = ACTIONS(3435), - [anon_sym_private] = ACTIONS(3435), - [anon_sym_protected] = ACTIONS(3435), - [anon_sym_override] = ACTIONS(3435), - [anon_sym_module] = ACTIONS(3435), - [anon_sym_any] = ACTIONS(3435), - [anon_sym_number] = ACTIONS(3435), - [anon_sym_boolean] = ACTIONS(3435), - [anon_sym_string] = ACTIONS(3435), - [anon_sym_symbol] = ACTIONS(3435), - [anon_sym_object] = ACTIONS(3435), - [anon_sym_abstract] = ACTIONS(3435), - [anon_sym_interface] = ACTIONS(3435), - [anon_sym_enum] = ACTIONS(3435), - [sym_html_comment] = ACTIONS(5), - }, - [1699] = { - [sym_comment] = STATE(1699), - [ts_builtin_sym_end] = ACTIONS(3591), - [sym_identifier] = ACTIONS(3429), - [anon_sym_export] = ACTIONS(3429), - [anon_sym_type] = ACTIONS(3429), - [anon_sym_namespace] = ACTIONS(3429), - [anon_sym_LBRACE] = ACTIONS(3429), - [anon_sym_RBRACE] = ACTIONS(3429), - [anon_sym_typeof] = ACTIONS(3429), - [anon_sym_import] = ACTIONS(3429), - [anon_sym_with] = ACTIONS(3429), - [anon_sym_var] = ACTIONS(3429), - [anon_sym_let] = ACTIONS(3429), - [anon_sym_const] = ACTIONS(3429), - [anon_sym_BANG] = ACTIONS(3429), - [anon_sym_if] = ACTIONS(3429), - [anon_sym_switch] = ACTIONS(3429), - [anon_sym_for] = ACTIONS(3429), - [anon_sym_LPAREN] = ACTIONS(3429), - [anon_sym_await] = ACTIONS(3429), - [anon_sym_while] = ACTIONS(3429), - [anon_sym_do] = ACTIONS(3429), - [anon_sym_try] = ACTIONS(3429), - [anon_sym_break] = ACTIONS(3429), - [anon_sym_continue] = ACTIONS(3429), - [anon_sym_debugger] = ACTIONS(3429), - [anon_sym_return] = ACTIONS(3429), - [anon_sym_throw] = ACTIONS(3429), - [anon_sym_SEMI] = ACTIONS(3429), - [anon_sym_yield] = ACTIONS(3429), - [anon_sym_LBRACK] = ACTIONS(3429), - [anon_sym_LTtemplate_GT] = ACTIONS(3429), - [anon_sym_DQUOTE] = ACTIONS(3429), - [anon_sym_SQUOTE] = ACTIONS(3429), - [anon_sym_class] = ACTIONS(3429), - [anon_sym_async] = ACTIONS(3429), - [anon_sym_function] = ACTIONS(3429), - [anon_sym_new] = ACTIONS(3429), - [anon_sym_using] = ACTIONS(3429), - [anon_sym_PLUS] = ACTIONS(3429), - [anon_sym_DASH] = ACTIONS(3429), - [anon_sym_SLASH] = ACTIONS(3429), - [anon_sym_LT] = ACTIONS(3429), - [anon_sym_TILDE] = ACTIONS(3429), - [anon_sym_void] = ACTIONS(3429), - [anon_sym_delete] = ACTIONS(3429), - [anon_sym_PLUS_PLUS] = ACTIONS(3429), - [anon_sym_DASH_DASH] = ACTIONS(3429), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3429), - [sym_number] = ACTIONS(3429), - [sym_private_property_identifier] = ACTIONS(3429), - [sym_this] = ACTIONS(3429), - [sym_super] = ACTIONS(3429), - [sym_true] = ACTIONS(3429), - [sym_false] = ACTIONS(3429), - [sym_null] = ACTIONS(3429), - [sym_undefined] = ACTIONS(3429), - [anon_sym_AT] = ACTIONS(3429), - [anon_sym_static] = ACTIONS(3429), - [anon_sym_readonly] = ACTIONS(3429), - [anon_sym_get] = ACTIONS(3429), - [anon_sym_set] = ACTIONS(3429), - [anon_sym_declare] = ACTIONS(3429), - [anon_sym_public] = ACTIONS(3429), - [anon_sym_private] = ACTIONS(3429), - [anon_sym_protected] = ACTIONS(3429), - [anon_sym_override] = ACTIONS(3429), - [anon_sym_module] = ACTIONS(3429), - [anon_sym_any] = ACTIONS(3429), - [anon_sym_number] = ACTIONS(3429), - [anon_sym_boolean] = ACTIONS(3429), - [anon_sym_string] = ACTIONS(3429), - [anon_sym_symbol] = ACTIONS(3429), - [anon_sym_object] = ACTIONS(3429), - [anon_sym_abstract] = ACTIONS(3429), - [anon_sym_interface] = ACTIONS(3429), - [anon_sym_enum] = ACTIONS(3429), - [sym_html_comment] = ACTIONS(5), - }, - [1700] = { - [sym_comment] = STATE(1700), - [ts_builtin_sym_end] = ACTIONS(3471), - [sym_identifier] = ACTIONS(3249), - [anon_sym_export] = ACTIONS(3249), - [anon_sym_type] = ACTIONS(3249), - [anon_sym_namespace] = ACTIONS(3249), - [anon_sym_LBRACE] = ACTIONS(3249), - [anon_sym_RBRACE] = ACTIONS(3249), - [anon_sym_typeof] = ACTIONS(3249), - [anon_sym_import] = ACTIONS(3249), - [anon_sym_with] = ACTIONS(3249), - [anon_sym_var] = ACTIONS(3249), - [anon_sym_let] = ACTIONS(3249), - [anon_sym_const] = ACTIONS(3249), - [anon_sym_BANG] = ACTIONS(3249), - [anon_sym_if] = ACTIONS(3249), - [anon_sym_switch] = ACTIONS(3249), - [anon_sym_for] = ACTIONS(3249), - [anon_sym_LPAREN] = ACTIONS(3249), - [anon_sym_await] = ACTIONS(3249), - [anon_sym_while] = ACTIONS(3249), - [anon_sym_do] = ACTIONS(3249), - [anon_sym_try] = ACTIONS(3249), - [anon_sym_break] = ACTIONS(3249), - [anon_sym_continue] = ACTIONS(3249), - [anon_sym_debugger] = ACTIONS(3249), - [anon_sym_return] = ACTIONS(3249), - [anon_sym_throw] = ACTIONS(3249), - [anon_sym_SEMI] = ACTIONS(3249), - [anon_sym_yield] = ACTIONS(3249), - [anon_sym_LBRACK] = ACTIONS(3249), - [anon_sym_LTtemplate_GT] = ACTIONS(3249), - [anon_sym_DQUOTE] = ACTIONS(3249), - [anon_sym_SQUOTE] = ACTIONS(3249), - [anon_sym_class] = ACTIONS(3249), - [anon_sym_async] = ACTIONS(3249), - [anon_sym_function] = ACTIONS(3249), - [anon_sym_new] = ACTIONS(3249), - [anon_sym_using] = ACTIONS(3249), - [anon_sym_PLUS] = ACTIONS(3249), - [anon_sym_DASH] = ACTIONS(3249), - [anon_sym_SLASH] = ACTIONS(3249), - [anon_sym_LT] = ACTIONS(3249), - [anon_sym_TILDE] = ACTIONS(3249), - [anon_sym_void] = ACTIONS(3249), - [anon_sym_delete] = ACTIONS(3249), - [anon_sym_PLUS_PLUS] = ACTIONS(3249), - [anon_sym_DASH_DASH] = ACTIONS(3249), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3249), - [sym_number] = ACTIONS(3249), - [sym_private_property_identifier] = ACTIONS(3249), - [sym_this] = ACTIONS(3249), - [sym_super] = ACTIONS(3249), - [sym_true] = ACTIONS(3249), - [sym_false] = ACTIONS(3249), - [sym_null] = ACTIONS(3249), - [sym_undefined] = ACTIONS(3249), - [anon_sym_AT] = ACTIONS(3249), - [anon_sym_static] = ACTIONS(3249), - [anon_sym_readonly] = ACTIONS(3249), - [anon_sym_get] = ACTIONS(3249), - [anon_sym_set] = ACTIONS(3249), - [anon_sym_declare] = ACTIONS(3249), - [anon_sym_public] = ACTIONS(3249), - [anon_sym_private] = ACTIONS(3249), - [anon_sym_protected] = ACTIONS(3249), - [anon_sym_override] = ACTIONS(3249), - [anon_sym_module] = ACTIONS(3249), - [anon_sym_any] = ACTIONS(3249), - [anon_sym_number] = ACTIONS(3249), - [anon_sym_boolean] = ACTIONS(3249), - [anon_sym_string] = ACTIONS(3249), - [anon_sym_symbol] = ACTIONS(3249), - [anon_sym_object] = ACTIONS(3249), - [anon_sym_abstract] = ACTIONS(3249), - [anon_sym_interface] = ACTIONS(3249), - [anon_sym_enum] = ACTIONS(3249), - [sym_html_comment] = ACTIONS(5), - }, - [1701] = { - [sym_comment] = STATE(1701), - [ts_builtin_sym_end] = ACTIONS(3545), - [sym_identifier] = ACTIONS(3239), - [anon_sym_export] = ACTIONS(3239), - [anon_sym_type] = ACTIONS(3239), - [anon_sym_namespace] = ACTIONS(3239), - [anon_sym_LBRACE] = ACTIONS(3239), - [anon_sym_RBRACE] = ACTIONS(3239), - [anon_sym_typeof] = ACTIONS(3239), - [anon_sym_import] = ACTIONS(3239), - [anon_sym_with] = ACTIONS(3239), - [anon_sym_var] = ACTIONS(3239), - [anon_sym_let] = ACTIONS(3239), - [anon_sym_const] = ACTIONS(3239), - [anon_sym_BANG] = ACTIONS(3239), - [anon_sym_if] = ACTIONS(3239), - [anon_sym_switch] = ACTIONS(3239), - [anon_sym_for] = ACTIONS(3239), - [anon_sym_LPAREN] = ACTIONS(3239), - [anon_sym_await] = ACTIONS(3239), - [anon_sym_while] = ACTIONS(3239), - [anon_sym_do] = ACTIONS(3239), - [anon_sym_try] = ACTIONS(3239), - [anon_sym_break] = ACTIONS(3239), - [anon_sym_continue] = ACTIONS(3239), - [anon_sym_debugger] = ACTIONS(3239), - [anon_sym_return] = ACTIONS(3239), - [anon_sym_throw] = ACTIONS(3239), - [anon_sym_SEMI] = ACTIONS(3239), - [anon_sym_yield] = ACTIONS(3239), - [anon_sym_LBRACK] = ACTIONS(3239), - [anon_sym_LTtemplate_GT] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(3239), - [anon_sym_SQUOTE] = ACTIONS(3239), - [anon_sym_class] = ACTIONS(3239), - [anon_sym_async] = ACTIONS(3239), - [anon_sym_function] = ACTIONS(3239), - [anon_sym_new] = ACTIONS(3239), - [anon_sym_using] = ACTIONS(3239), - [anon_sym_PLUS] = ACTIONS(3239), - [anon_sym_DASH] = ACTIONS(3239), - [anon_sym_SLASH] = ACTIONS(3239), - [anon_sym_LT] = ACTIONS(3239), - [anon_sym_TILDE] = ACTIONS(3239), - [anon_sym_void] = ACTIONS(3239), - [anon_sym_delete] = ACTIONS(3239), - [anon_sym_PLUS_PLUS] = ACTIONS(3239), - [anon_sym_DASH_DASH] = ACTIONS(3239), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3239), - [sym_number] = ACTIONS(3239), - [sym_private_property_identifier] = ACTIONS(3239), - [sym_this] = ACTIONS(3239), - [sym_super] = ACTIONS(3239), - [sym_true] = ACTIONS(3239), - [sym_false] = ACTIONS(3239), - [sym_null] = ACTIONS(3239), - [sym_undefined] = ACTIONS(3239), - [anon_sym_AT] = ACTIONS(3239), - [anon_sym_static] = ACTIONS(3239), - [anon_sym_readonly] = ACTIONS(3239), - [anon_sym_get] = ACTIONS(3239), - [anon_sym_set] = ACTIONS(3239), - [anon_sym_declare] = ACTIONS(3239), - [anon_sym_public] = ACTIONS(3239), - [anon_sym_private] = ACTIONS(3239), - [anon_sym_protected] = ACTIONS(3239), - [anon_sym_override] = ACTIONS(3239), - [anon_sym_module] = ACTIONS(3239), - [anon_sym_any] = ACTIONS(3239), - [anon_sym_number] = ACTIONS(3239), - [anon_sym_boolean] = ACTIONS(3239), - [anon_sym_string] = ACTIONS(3239), - [anon_sym_symbol] = ACTIONS(3239), - [anon_sym_object] = ACTIONS(3239), - [anon_sym_abstract] = ACTIONS(3239), - [anon_sym_interface] = ACTIONS(3239), - [anon_sym_enum] = ACTIONS(3239), - [sym_html_comment] = ACTIONS(5), - }, - [1702] = { - [sym_comment] = STATE(1702), - [ts_builtin_sym_end] = ACTIONS(3547), - [sym_identifier] = ACTIONS(3433), - [anon_sym_export] = ACTIONS(3433), - [anon_sym_type] = ACTIONS(3433), - [anon_sym_namespace] = ACTIONS(3433), - [anon_sym_LBRACE] = ACTIONS(3433), - [anon_sym_RBRACE] = ACTIONS(3433), - [anon_sym_typeof] = ACTIONS(3433), - [anon_sym_import] = ACTIONS(3433), - [anon_sym_with] = ACTIONS(3433), - [anon_sym_var] = ACTIONS(3433), - [anon_sym_let] = ACTIONS(3433), - [anon_sym_const] = ACTIONS(3433), - [anon_sym_BANG] = ACTIONS(3433), - [anon_sym_if] = ACTIONS(3433), - [anon_sym_switch] = ACTIONS(3433), - [anon_sym_for] = ACTIONS(3433), - [anon_sym_LPAREN] = ACTIONS(3433), - [anon_sym_await] = ACTIONS(3433), - [anon_sym_while] = ACTIONS(3433), - [anon_sym_do] = ACTIONS(3433), - [anon_sym_try] = ACTIONS(3433), - [anon_sym_break] = ACTIONS(3433), - [anon_sym_continue] = ACTIONS(3433), - [anon_sym_debugger] = ACTIONS(3433), - [anon_sym_return] = ACTIONS(3433), - [anon_sym_throw] = ACTIONS(3433), - [anon_sym_SEMI] = ACTIONS(3433), - [anon_sym_yield] = ACTIONS(3433), - [anon_sym_LBRACK] = ACTIONS(3433), - [anon_sym_LTtemplate_GT] = ACTIONS(3433), - [anon_sym_DQUOTE] = ACTIONS(3433), - [anon_sym_SQUOTE] = ACTIONS(3433), - [anon_sym_class] = ACTIONS(3433), - [anon_sym_async] = ACTIONS(3433), - [anon_sym_function] = ACTIONS(3433), - [anon_sym_new] = ACTIONS(3433), - [anon_sym_using] = ACTIONS(3433), - [anon_sym_PLUS] = ACTIONS(3433), - [anon_sym_DASH] = ACTIONS(3433), - [anon_sym_SLASH] = ACTIONS(3433), - [anon_sym_LT] = ACTIONS(3433), - [anon_sym_TILDE] = ACTIONS(3433), - [anon_sym_void] = ACTIONS(3433), - [anon_sym_delete] = ACTIONS(3433), - [anon_sym_PLUS_PLUS] = ACTIONS(3433), - [anon_sym_DASH_DASH] = ACTIONS(3433), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3433), - [sym_number] = ACTIONS(3433), - [sym_private_property_identifier] = ACTIONS(3433), - [sym_this] = ACTIONS(3433), - [sym_super] = ACTIONS(3433), - [sym_true] = ACTIONS(3433), - [sym_false] = ACTIONS(3433), - [sym_null] = ACTIONS(3433), - [sym_undefined] = ACTIONS(3433), - [anon_sym_AT] = ACTIONS(3433), - [anon_sym_static] = ACTIONS(3433), - [anon_sym_readonly] = ACTIONS(3433), - [anon_sym_get] = ACTIONS(3433), - [anon_sym_set] = ACTIONS(3433), - [anon_sym_declare] = ACTIONS(3433), - [anon_sym_public] = ACTIONS(3433), - [anon_sym_private] = ACTIONS(3433), - [anon_sym_protected] = ACTIONS(3433), - [anon_sym_override] = ACTIONS(3433), - [anon_sym_module] = ACTIONS(3433), - [anon_sym_any] = ACTIONS(3433), - [anon_sym_number] = ACTIONS(3433), - [anon_sym_boolean] = ACTIONS(3433), - [anon_sym_string] = ACTIONS(3433), - [anon_sym_symbol] = ACTIONS(3433), - [anon_sym_object] = ACTIONS(3433), - [anon_sym_abstract] = ACTIONS(3433), - [anon_sym_interface] = ACTIONS(3433), - [anon_sym_enum] = ACTIONS(3433), - [sym_html_comment] = ACTIONS(5), - }, - [1703] = { - [sym_comment] = STATE(1703), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1704] = { - [sym_comment] = STATE(1704), - [ts_builtin_sym_end] = ACTIONS(3539), - [sym_identifier] = ACTIONS(3233), - [anon_sym_export] = ACTIONS(3233), - [anon_sym_type] = ACTIONS(3233), - [anon_sym_namespace] = ACTIONS(3233), - [anon_sym_LBRACE] = ACTIONS(3233), - [anon_sym_RBRACE] = ACTIONS(3233), - [anon_sym_typeof] = ACTIONS(3233), - [anon_sym_import] = ACTIONS(3233), - [anon_sym_with] = ACTIONS(3233), - [anon_sym_var] = ACTIONS(3233), - [anon_sym_let] = ACTIONS(3233), - [anon_sym_const] = ACTIONS(3233), - [anon_sym_BANG] = ACTIONS(3233), - [anon_sym_if] = ACTIONS(3233), - [anon_sym_switch] = ACTIONS(3233), - [anon_sym_for] = ACTIONS(3233), - [anon_sym_LPAREN] = ACTIONS(3233), - [anon_sym_await] = ACTIONS(3233), - [anon_sym_while] = ACTIONS(3233), - [anon_sym_do] = ACTIONS(3233), - [anon_sym_try] = ACTIONS(3233), - [anon_sym_break] = ACTIONS(3233), - [anon_sym_continue] = ACTIONS(3233), - [anon_sym_debugger] = ACTIONS(3233), - [anon_sym_return] = ACTIONS(3233), - [anon_sym_throw] = ACTIONS(3233), - [anon_sym_SEMI] = ACTIONS(3233), - [anon_sym_yield] = ACTIONS(3233), - [anon_sym_LBRACK] = ACTIONS(3233), - [anon_sym_LTtemplate_GT] = ACTIONS(3233), - [anon_sym_DQUOTE] = ACTIONS(3233), - [anon_sym_SQUOTE] = ACTIONS(3233), - [anon_sym_class] = ACTIONS(3233), - [anon_sym_async] = ACTIONS(3233), - [anon_sym_function] = ACTIONS(3233), - [anon_sym_new] = ACTIONS(3233), - [anon_sym_using] = ACTIONS(3233), - [anon_sym_PLUS] = ACTIONS(3233), - [anon_sym_DASH] = ACTIONS(3233), - [anon_sym_SLASH] = ACTIONS(3233), - [anon_sym_LT] = ACTIONS(3233), - [anon_sym_TILDE] = ACTIONS(3233), - [anon_sym_void] = ACTIONS(3233), - [anon_sym_delete] = ACTIONS(3233), - [anon_sym_PLUS_PLUS] = ACTIONS(3233), - [anon_sym_DASH_DASH] = ACTIONS(3233), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3233), - [sym_number] = ACTIONS(3233), - [sym_private_property_identifier] = ACTIONS(3233), - [sym_this] = ACTIONS(3233), - [sym_super] = ACTIONS(3233), - [sym_true] = ACTIONS(3233), - [sym_false] = ACTIONS(3233), - [sym_null] = ACTIONS(3233), - [sym_undefined] = ACTIONS(3233), - [anon_sym_AT] = ACTIONS(3233), - [anon_sym_static] = ACTIONS(3233), - [anon_sym_readonly] = ACTIONS(3233), - [anon_sym_get] = ACTIONS(3233), - [anon_sym_set] = ACTIONS(3233), - [anon_sym_declare] = ACTIONS(3233), - [anon_sym_public] = ACTIONS(3233), - [anon_sym_private] = ACTIONS(3233), - [anon_sym_protected] = ACTIONS(3233), - [anon_sym_override] = ACTIONS(3233), - [anon_sym_module] = ACTIONS(3233), - [anon_sym_any] = ACTIONS(3233), - [anon_sym_number] = ACTIONS(3233), - [anon_sym_boolean] = ACTIONS(3233), - [anon_sym_string] = ACTIONS(3233), - [anon_sym_symbol] = ACTIONS(3233), - [anon_sym_object] = ACTIONS(3233), - [anon_sym_abstract] = ACTIONS(3233), - [anon_sym_interface] = ACTIONS(3233), - [anon_sym_enum] = ACTIONS(3233), - [sym_html_comment] = ACTIONS(5), - }, - [1705] = { - [sym_comment] = STATE(1705), - [ts_builtin_sym_end] = ACTIONS(3633), - [sym_identifier] = ACTIONS(3313), - [anon_sym_export] = ACTIONS(3313), - [anon_sym_type] = ACTIONS(3313), - [anon_sym_namespace] = ACTIONS(3313), - [anon_sym_LBRACE] = ACTIONS(3313), - [anon_sym_RBRACE] = ACTIONS(3313), - [anon_sym_typeof] = ACTIONS(3313), - [anon_sym_import] = ACTIONS(3313), - [anon_sym_with] = ACTIONS(3313), - [anon_sym_var] = ACTIONS(3313), - [anon_sym_let] = ACTIONS(3313), - [anon_sym_const] = ACTIONS(3313), - [anon_sym_BANG] = ACTIONS(3313), - [anon_sym_if] = ACTIONS(3313), - [anon_sym_switch] = ACTIONS(3313), - [anon_sym_for] = ACTIONS(3313), - [anon_sym_LPAREN] = ACTIONS(3313), - [anon_sym_await] = ACTIONS(3313), - [anon_sym_while] = ACTIONS(3313), - [anon_sym_do] = ACTIONS(3313), - [anon_sym_try] = ACTIONS(3313), - [anon_sym_break] = ACTIONS(3313), - [anon_sym_continue] = ACTIONS(3313), - [anon_sym_debugger] = ACTIONS(3313), - [anon_sym_return] = ACTIONS(3313), - [anon_sym_throw] = ACTIONS(3313), - [anon_sym_SEMI] = ACTIONS(3313), - [anon_sym_yield] = ACTIONS(3313), - [anon_sym_LBRACK] = ACTIONS(3313), - [anon_sym_LTtemplate_GT] = ACTIONS(3313), - [anon_sym_DQUOTE] = ACTIONS(3313), - [anon_sym_SQUOTE] = ACTIONS(3313), - [anon_sym_class] = ACTIONS(3313), - [anon_sym_async] = ACTIONS(3313), - [anon_sym_function] = ACTIONS(3313), - [anon_sym_new] = ACTIONS(3313), - [anon_sym_using] = ACTIONS(3313), - [anon_sym_PLUS] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(3313), - [anon_sym_SLASH] = ACTIONS(3313), - [anon_sym_LT] = ACTIONS(3313), - [anon_sym_TILDE] = ACTIONS(3313), - [anon_sym_void] = ACTIONS(3313), - [anon_sym_delete] = ACTIONS(3313), - [anon_sym_PLUS_PLUS] = ACTIONS(3313), - [anon_sym_DASH_DASH] = ACTIONS(3313), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3313), - [sym_number] = ACTIONS(3313), - [sym_private_property_identifier] = ACTIONS(3313), - [sym_this] = ACTIONS(3313), - [sym_super] = ACTIONS(3313), - [sym_true] = ACTIONS(3313), - [sym_false] = ACTIONS(3313), - [sym_null] = ACTIONS(3313), - [sym_undefined] = ACTIONS(3313), - [anon_sym_AT] = ACTIONS(3313), - [anon_sym_static] = ACTIONS(3313), - [anon_sym_readonly] = ACTIONS(3313), - [anon_sym_get] = ACTIONS(3313), - [anon_sym_set] = ACTIONS(3313), - [anon_sym_declare] = ACTIONS(3313), - [anon_sym_public] = ACTIONS(3313), - [anon_sym_private] = ACTIONS(3313), - [anon_sym_protected] = ACTIONS(3313), - [anon_sym_override] = ACTIONS(3313), - [anon_sym_module] = ACTIONS(3313), - [anon_sym_any] = ACTIONS(3313), - [anon_sym_number] = ACTIONS(3313), - [anon_sym_boolean] = ACTIONS(3313), - [anon_sym_string] = ACTIONS(3313), - [anon_sym_symbol] = ACTIONS(3313), - [anon_sym_object] = ACTIONS(3313), - [anon_sym_abstract] = ACTIONS(3313), - [anon_sym_interface] = ACTIONS(3313), - [anon_sym_enum] = ACTIONS(3313), - [sym_html_comment] = ACTIONS(5), - }, - [1706] = { - [sym_comment] = STATE(1706), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1707] = { - [sym_comment] = STATE(1707), - [ts_builtin_sym_end] = ACTIONS(3527), - [sym_identifier] = ACTIONS(3453), - [anon_sym_export] = ACTIONS(3453), - [anon_sym_type] = ACTIONS(3453), - [anon_sym_namespace] = ACTIONS(3453), - [anon_sym_LBRACE] = ACTIONS(3453), - [anon_sym_RBRACE] = ACTIONS(3453), - [anon_sym_typeof] = ACTIONS(3453), - [anon_sym_import] = ACTIONS(3453), - [anon_sym_with] = ACTIONS(3453), - [anon_sym_var] = ACTIONS(3453), - [anon_sym_let] = ACTIONS(3453), - [anon_sym_const] = ACTIONS(3453), - [anon_sym_BANG] = ACTIONS(3453), - [anon_sym_if] = ACTIONS(3453), - [anon_sym_switch] = ACTIONS(3453), - [anon_sym_for] = ACTIONS(3453), - [anon_sym_LPAREN] = ACTIONS(3453), - [anon_sym_await] = ACTIONS(3453), - [anon_sym_while] = ACTIONS(3453), - [anon_sym_do] = ACTIONS(3453), - [anon_sym_try] = ACTIONS(3453), - [anon_sym_break] = ACTIONS(3453), - [anon_sym_continue] = ACTIONS(3453), - [anon_sym_debugger] = ACTIONS(3453), - [anon_sym_return] = ACTIONS(3453), - [anon_sym_throw] = ACTIONS(3453), - [anon_sym_SEMI] = ACTIONS(3453), - [anon_sym_yield] = ACTIONS(3453), - [anon_sym_LBRACK] = ACTIONS(3453), - [anon_sym_LTtemplate_GT] = ACTIONS(3453), - [anon_sym_DQUOTE] = ACTIONS(3453), - [anon_sym_SQUOTE] = ACTIONS(3453), - [anon_sym_class] = ACTIONS(3453), - [anon_sym_async] = ACTIONS(3453), - [anon_sym_function] = ACTIONS(3453), - [anon_sym_new] = ACTIONS(3453), - [anon_sym_using] = ACTIONS(3453), - [anon_sym_PLUS] = ACTIONS(3453), - [anon_sym_DASH] = ACTIONS(3453), - [anon_sym_SLASH] = ACTIONS(3453), - [anon_sym_LT] = ACTIONS(3453), - [anon_sym_TILDE] = ACTIONS(3453), - [anon_sym_void] = ACTIONS(3453), - [anon_sym_delete] = ACTIONS(3453), - [anon_sym_PLUS_PLUS] = ACTIONS(3453), - [anon_sym_DASH_DASH] = ACTIONS(3453), + [1572] = { + [sym_comment] = STATE(1572), + [ts_builtin_sym_end] = ACTIONS(3483), + [sym_identifier] = ACTIONS(3421), + [anon_sym_export] = ACTIONS(3421), + [anon_sym_type] = ACTIONS(3421), + [anon_sym_namespace] = ACTIONS(3421), + [anon_sym_LBRACE] = ACTIONS(3421), + [anon_sym_RBRACE] = ACTIONS(3421), + [anon_sym_typeof] = ACTIONS(3421), + [anon_sym_import] = ACTIONS(3421), + [anon_sym_with] = ACTIONS(3421), + [anon_sym_var] = ACTIONS(3421), + [anon_sym_let] = ACTIONS(3421), + [anon_sym_const] = ACTIONS(3421), + [anon_sym_BANG] = ACTIONS(3421), + [anon_sym_if] = ACTIONS(3421), + [anon_sym_switch] = ACTIONS(3421), + [anon_sym_for] = ACTIONS(3421), + [anon_sym_LPAREN] = ACTIONS(3421), + [anon_sym_await] = ACTIONS(3421), + [anon_sym_while] = ACTIONS(3421), + [anon_sym_do] = ACTIONS(3421), + [anon_sym_try] = ACTIONS(3421), + [anon_sym_break] = ACTIONS(3421), + [anon_sym_continue] = ACTIONS(3421), + [anon_sym_debugger] = ACTIONS(3421), + [anon_sym_return] = ACTIONS(3421), + [anon_sym_throw] = ACTIONS(3421), + [anon_sym_SEMI] = ACTIONS(3421), + [anon_sym_yield] = ACTIONS(3421), + [anon_sym_LBRACK] = ACTIONS(3421), + [anon_sym_LTtemplate_GT] = ACTIONS(3421), + [anon_sym_DQUOTE] = ACTIONS(3421), + [anon_sym_SQUOTE] = ACTIONS(3421), + [anon_sym_class] = ACTIONS(3421), + [anon_sym_async] = ACTIONS(3421), + [anon_sym_function] = ACTIONS(3421), + [anon_sym_new] = ACTIONS(3421), + [anon_sym_using] = ACTIONS(3421), + [anon_sym_PLUS] = ACTIONS(3421), + [anon_sym_DASH] = ACTIONS(3421), + [anon_sym_SLASH] = ACTIONS(3421), + [anon_sym_LT] = ACTIONS(3421), + [anon_sym_TILDE] = ACTIONS(3421), + [anon_sym_void] = ACTIONS(3421), + [anon_sym_delete] = ACTIONS(3421), + [anon_sym_PLUS_PLUS] = ACTIONS(3421), + [anon_sym_DASH_DASH] = ACTIONS(3421), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3453), - [sym_number] = ACTIONS(3453), - [sym_private_property_identifier] = ACTIONS(3453), - [sym_this] = ACTIONS(3453), - [sym_super] = ACTIONS(3453), - [sym_true] = ACTIONS(3453), - [sym_false] = ACTIONS(3453), - [sym_null] = ACTIONS(3453), - [sym_undefined] = ACTIONS(3453), - [anon_sym_AT] = ACTIONS(3453), - [anon_sym_static] = ACTIONS(3453), - [anon_sym_readonly] = ACTIONS(3453), - [anon_sym_get] = ACTIONS(3453), - [anon_sym_set] = ACTIONS(3453), - [anon_sym_declare] = ACTIONS(3453), - [anon_sym_public] = ACTIONS(3453), - [anon_sym_private] = ACTIONS(3453), - [anon_sym_protected] = ACTIONS(3453), - [anon_sym_override] = ACTIONS(3453), - [anon_sym_module] = ACTIONS(3453), - [anon_sym_any] = ACTIONS(3453), - [anon_sym_number] = ACTIONS(3453), - [anon_sym_boolean] = ACTIONS(3453), - [anon_sym_string] = ACTIONS(3453), - [anon_sym_symbol] = ACTIONS(3453), - [anon_sym_object] = ACTIONS(3453), - [anon_sym_abstract] = ACTIONS(3453), - [anon_sym_interface] = ACTIONS(3453), - [anon_sym_enum] = ACTIONS(3453), + [anon_sym_BQUOTE] = ACTIONS(3421), + [sym_number] = ACTIONS(3421), + [sym_private_property_identifier] = ACTIONS(3421), + [sym_this] = ACTIONS(3421), + [sym_super] = ACTIONS(3421), + [sym_true] = ACTIONS(3421), + [sym_false] = ACTIONS(3421), + [sym_null] = ACTIONS(3421), + [sym_undefined] = ACTIONS(3421), + [anon_sym_AT] = ACTIONS(3421), + [anon_sym_static] = ACTIONS(3421), + [anon_sym_readonly] = ACTIONS(3421), + [anon_sym_get] = ACTIONS(3421), + [anon_sym_set] = ACTIONS(3421), + [anon_sym_declare] = ACTIONS(3421), + [anon_sym_public] = ACTIONS(3421), + [anon_sym_private] = ACTIONS(3421), + [anon_sym_protected] = ACTIONS(3421), + [anon_sym_override] = ACTIONS(3421), + [anon_sym_module] = ACTIONS(3421), + [anon_sym_any] = ACTIONS(3421), + [anon_sym_number] = ACTIONS(3421), + [anon_sym_boolean] = ACTIONS(3421), + [anon_sym_string] = ACTIONS(3421), + [anon_sym_symbol] = ACTIONS(3421), + [anon_sym_object] = ACTIONS(3421), + [anon_sym_abstract] = ACTIONS(3421), + [anon_sym_interface] = ACTIONS(3421), + [anon_sym_enum] = ACTIONS(3421), [sym_html_comment] = ACTIONS(5), }, - [1708] = { - [sym_comment] = STATE(1708), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1573] = { + [sym_comment] = STATE(1573), + [ts_builtin_sym_end] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, - [1709] = { - [sym_comment] = STATE(1709), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1574] = { + [sym_comment] = STATE(1574), + [ts_builtin_sym_end] = ACTIONS(3485), + [sym_identifier] = ACTIONS(3441), + [anon_sym_export] = ACTIONS(3441), + [anon_sym_type] = ACTIONS(3441), + [anon_sym_namespace] = ACTIONS(3441), + [anon_sym_LBRACE] = ACTIONS(3441), + [anon_sym_RBRACE] = ACTIONS(3441), + [anon_sym_typeof] = ACTIONS(3441), + [anon_sym_import] = ACTIONS(3441), + [anon_sym_with] = ACTIONS(3441), + [anon_sym_var] = ACTIONS(3441), + [anon_sym_let] = ACTIONS(3441), + [anon_sym_const] = ACTIONS(3441), + [anon_sym_BANG] = ACTIONS(3441), + [anon_sym_if] = ACTIONS(3441), + [anon_sym_switch] = ACTIONS(3441), + [anon_sym_for] = ACTIONS(3441), + [anon_sym_LPAREN] = ACTIONS(3441), + [anon_sym_await] = ACTIONS(3441), + [anon_sym_while] = ACTIONS(3441), + [anon_sym_do] = ACTIONS(3441), + [anon_sym_try] = ACTIONS(3441), + [anon_sym_break] = ACTIONS(3441), + [anon_sym_continue] = ACTIONS(3441), + [anon_sym_debugger] = ACTIONS(3441), + [anon_sym_return] = ACTIONS(3441), + [anon_sym_throw] = ACTIONS(3441), + [anon_sym_SEMI] = ACTIONS(3441), + [anon_sym_yield] = ACTIONS(3441), + [anon_sym_LBRACK] = ACTIONS(3441), + [anon_sym_LTtemplate_GT] = ACTIONS(3441), + [anon_sym_DQUOTE] = ACTIONS(3441), + [anon_sym_SQUOTE] = ACTIONS(3441), + [anon_sym_class] = ACTIONS(3441), + [anon_sym_async] = ACTIONS(3441), + [anon_sym_function] = ACTIONS(3441), + [anon_sym_new] = ACTIONS(3441), + [anon_sym_using] = ACTIONS(3441), + [anon_sym_PLUS] = ACTIONS(3441), + [anon_sym_DASH] = ACTIONS(3441), + [anon_sym_SLASH] = ACTIONS(3441), + [anon_sym_LT] = ACTIONS(3441), + [anon_sym_TILDE] = ACTIONS(3441), + [anon_sym_void] = ACTIONS(3441), + [anon_sym_delete] = ACTIONS(3441), + [anon_sym_PLUS_PLUS] = ACTIONS(3441), + [anon_sym_DASH_DASH] = ACTIONS(3441), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3441), + [sym_number] = ACTIONS(3441), + [sym_private_property_identifier] = ACTIONS(3441), + [sym_this] = ACTIONS(3441), + [sym_super] = ACTIONS(3441), + [sym_true] = ACTIONS(3441), + [sym_false] = ACTIONS(3441), + [sym_null] = ACTIONS(3441), + [sym_undefined] = ACTIONS(3441), + [anon_sym_AT] = ACTIONS(3441), + [anon_sym_static] = ACTIONS(3441), + [anon_sym_readonly] = ACTIONS(3441), + [anon_sym_get] = ACTIONS(3441), + [anon_sym_set] = ACTIONS(3441), + [anon_sym_declare] = ACTIONS(3441), + [anon_sym_public] = ACTIONS(3441), + [anon_sym_private] = ACTIONS(3441), + [anon_sym_protected] = ACTIONS(3441), + [anon_sym_override] = ACTIONS(3441), + [anon_sym_module] = ACTIONS(3441), + [anon_sym_any] = ACTIONS(3441), + [anon_sym_number] = ACTIONS(3441), + [anon_sym_boolean] = ACTIONS(3441), + [anon_sym_string] = ACTIONS(3441), + [anon_sym_symbol] = ACTIONS(3441), + [anon_sym_object] = ACTIONS(3441), + [anon_sym_abstract] = ACTIONS(3441), + [anon_sym_interface] = ACTIONS(3441), + [anon_sym_enum] = ACTIONS(3441), [sym_html_comment] = ACTIONS(5), }, - [1710] = { - [sym_comment] = STATE(1710), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1575] = { + [sym_comment] = STATE(1575), + [ts_builtin_sym_end] = ACTIONS(3487), + [sym_identifier] = ACTIONS(3445), + [anon_sym_export] = ACTIONS(3445), + [anon_sym_type] = ACTIONS(3445), + [anon_sym_namespace] = ACTIONS(3445), + [anon_sym_LBRACE] = ACTIONS(3445), + [anon_sym_RBRACE] = ACTIONS(3445), + [anon_sym_typeof] = ACTIONS(3445), + [anon_sym_import] = ACTIONS(3445), + [anon_sym_with] = ACTIONS(3445), + [anon_sym_var] = ACTIONS(3445), + [anon_sym_let] = ACTIONS(3445), + [anon_sym_const] = ACTIONS(3445), + [anon_sym_BANG] = ACTIONS(3445), + [anon_sym_if] = ACTIONS(3445), + [anon_sym_switch] = ACTIONS(3445), + [anon_sym_for] = ACTIONS(3445), + [anon_sym_LPAREN] = ACTIONS(3445), + [anon_sym_await] = ACTIONS(3445), + [anon_sym_while] = ACTIONS(3445), + [anon_sym_do] = ACTIONS(3445), + [anon_sym_try] = ACTIONS(3445), + [anon_sym_break] = ACTIONS(3445), + [anon_sym_continue] = ACTIONS(3445), + [anon_sym_debugger] = ACTIONS(3445), + [anon_sym_return] = ACTIONS(3445), + [anon_sym_throw] = ACTIONS(3445), + [anon_sym_SEMI] = ACTIONS(3445), + [anon_sym_yield] = ACTIONS(3445), + [anon_sym_LBRACK] = ACTIONS(3445), + [anon_sym_LTtemplate_GT] = ACTIONS(3445), + [anon_sym_DQUOTE] = ACTIONS(3445), + [anon_sym_SQUOTE] = ACTIONS(3445), + [anon_sym_class] = ACTIONS(3445), + [anon_sym_async] = ACTIONS(3445), + [anon_sym_function] = ACTIONS(3445), + [anon_sym_new] = ACTIONS(3445), + [anon_sym_using] = ACTIONS(3445), + [anon_sym_PLUS] = ACTIONS(3445), + [anon_sym_DASH] = ACTIONS(3445), + [anon_sym_SLASH] = ACTIONS(3445), + [anon_sym_LT] = ACTIONS(3445), + [anon_sym_TILDE] = ACTIONS(3445), + [anon_sym_void] = ACTIONS(3445), + [anon_sym_delete] = ACTIONS(3445), + [anon_sym_PLUS_PLUS] = ACTIONS(3445), + [anon_sym_DASH_DASH] = ACTIONS(3445), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3445), + [sym_number] = ACTIONS(3445), + [sym_private_property_identifier] = ACTIONS(3445), + [sym_this] = ACTIONS(3445), + [sym_super] = ACTIONS(3445), + [sym_true] = ACTIONS(3445), + [sym_false] = ACTIONS(3445), + [sym_null] = ACTIONS(3445), + [sym_undefined] = ACTIONS(3445), + [anon_sym_AT] = ACTIONS(3445), + [anon_sym_static] = ACTIONS(3445), + [anon_sym_readonly] = ACTIONS(3445), + [anon_sym_get] = ACTIONS(3445), + [anon_sym_set] = ACTIONS(3445), + [anon_sym_declare] = ACTIONS(3445), + [anon_sym_public] = ACTIONS(3445), + [anon_sym_private] = ACTIONS(3445), + [anon_sym_protected] = ACTIONS(3445), + [anon_sym_override] = ACTIONS(3445), + [anon_sym_module] = ACTIONS(3445), + [anon_sym_any] = ACTIONS(3445), + [anon_sym_number] = ACTIONS(3445), + [anon_sym_boolean] = ACTIONS(3445), + [anon_sym_string] = ACTIONS(3445), + [anon_sym_symbol] = ACTIONS(3445), + [anon_sym_object] = ACTIONS(3445), + [anon_sym_abstract] = ACTIONS(3445), + [anon_sym_interface] = ACTIONS(3445), + [anon_sym_enum] = ACTIONS(3445), [sym_html_comment] = ACTIONS(5), }, - [1711] = { - [sym_comment] = STATE(1711), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1576] = { + [sym_comment] = STATE(1576), + [ts_builtin_sym_end] = ACTIONS(3601), + [sym_identifier] = ACTIONS(3255), + [anon_sym_export] = ACTIONS(3255), + [anon_sym_type] = ACTIONS(3255), + [anon_sym_namespace] = ACTIONS(3255), + [anon_sym_LBRACE] = ACTIONS(3255), + [anon_sym_RBRACE] = ACTIONS(3255), + [anon_sym_typeof] = ACTIONS(3255), + [anon_sym_import] = ACTIONS(3255), + [anon_sym_with] = ACTIONS(3255), + [anon_sym_var] = ACTIONS(3255), + [anon_sym_let] = ACTIONS(3255), + [anon_sym_const] = ACTIONS(3255), + [anon_sym_BANG] = ACTIONS(3255), + [anon_sym_if] = ACTIONS(3255), + [anon_sym_switch] = ACTIONS(3255), + [anon_sym_for] = ACTIONS(3255), + [anon_sym_LPAREN] = ACTIONS(3255), + [anon_sym_await] = ACTIONS(3255), + [anon_sym_while] = ACTIONS(3255), + [anon_sym_do] = ACTIONS(3255), + [anon_sym_try] = ACTIONS(3255), + [anon_sym_break] = ACTIONS(3255), + [anon_sym_continue] = ACTIONS(3255), + [anon_sym_debugger] = ACTIONS(3255), + [anon_sym_return] = ACTIONS(3255), + [anon_sym_throw] = ACTIONS(3255), + [anon_sym_SEMI] = ACTIONS(3255), + [anon_sym_yield] = ACTIONS(3255), + [anon_sym_LBRACK] = ACTIONS(3255), + [anon_sym_LTtemplate_GT] = ACTIONS(3255), + [anon_sym_DQUOTE] = ACTIONS(3255), + [anon_sym_SQUOTE] = ACTIONS(3255), + [anon_sym_class] = ACTIONS(3255), + [anon_sym_async] = ACTIONS(3255), + [anon_sym_function] = ACTIONS(3255), + [anon_sym_new] = ACTIONS(3255), + [anon_sym_using] = ACTIONS(3255), + [anon_sym_PLUS] = ACTIONS(3255), + [anon_sym_DASH] = ACTIONS(3255), + [anon_sym_SLASH] = ACTIONS(3255), + [anon_sym_LT] = ACTIONS(3255), + [anon_sym_TILDE] = ACTIONS(3255), + [anon_sym_void] = ACTIONS(3255), + [anon_sym_delete] = ACTIONS(3255), + [anon_sym_PLUS_PLUS] = ACTIONS(3255), + [anon_sym_DASH_DASH] = ACTIONS(3255), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3255), + [sym_number] = ACTIONS(3255), + [sym_private_property_identifier] = ACTIONS(3255), + [sym_this] = ACTIONS(3255), + [sym_super] = ACTIONS(3255), + [sym_true] = ACTIONS(3255), + [sym_false] = ACTIONS(3255), + [sym_null] = ACTIONS(3255), + [sym_undefined] = ACTIONS(3255), + [anon_sym_AT] = ACTIONS(3255), + [anon_sym_static] = ACTIONS(3255), + [anon_sym_readonly] = ACTIONS(3255), + [anon_sym_get] = ACTIONS(3255), + [anon_sym_set] = ACTIONS(3255), + [anon_sym_declare] = ACTIONS(3255), + [anon_sym_public] = ACTIONS(3255), + [anon_sym_private] = ACTIONS(3255), + [anon_sym_protected] = ACTIONS(3255), + [anon_sym_override] = ACTIONS(3255), + [anon_sym_module] = ACTIONS(3255), + [anon_sym_any] = ACTIONS(3255), + [anon_sym_number] = ACTIONS(3255), + [anon_sym_boolean] = ACTIONS(3255), + [anon_sym_string] = ACTIONS(3255), + [anon_sym_symbol] = ACTIONS(3255), + [anon_sym_object] = ACTIONS(3255), + [anon_sym_abstract] = ACTIONS(3255), + [anon_sym_interface] = ACTIONS(3255), + [anon_sym_enum] = ACTIONS(3255), [sym_html_comment] = ACTIONS(5), }, - [1712] = { - [sym_comment] = STATE(1712), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1577] = { + [sym_comment] = STATE(1577), + [ts_builtin_sym_end] = ACTIONS(3489), + [sym_identifier] = ACTIONS(3447), + [anon_sym_export] = ACTIONS(3447), + [anon_sym_type] = ACTIONS(3447), + [anon_sym_namespace] = ACTIONS(3447), + [anon_sym_LBRACE] = ACTIONS(3447), + [anon_sym_RBRACE] = ACTIONS(3447), + [anon_sym_typeof] = ACTIONS(3447), + [anon_sym_import] = ACTIONS(3447), + [anon_sym_with] = ACTIONS(3447), + [anon_sym_var] = ACTIONS(3447), + [anon_sym_let] = ACTIONS(3447), + [anon_sym_const] = ACTIONS(3447), + [anon_sym_BANG] = ACTIONS(3447), + [anon_sym_if] = ACTIONS(3447), + [anon_sym_switch] = ACTIONS(3447), + [anon_sym_for] = ACTIONS(3447), + [anon_sym_LPAREN] = ACTIONS(3447), + [anon_sym_await] = ACTIONS(3447), + [anon_sym_while] = ACTIONS(3447), + [anon_sym_do] = ACTIONS(3447), + [anon_sym_try] = ACTIONS(3447), + [anon_sym_break] = ACTIONS(3447), + [anon_sym_continue] = ACTIONS(3447), + [anon_sym_debugger] = ACTIONS(3447), + [anon_sym_return] = ACTIONS(3447), + [anon_sym_throw] = ACTIONS(3447), + [anon_sym_SEMI] = ACTIONS(3447), + [anon_sym_yield] = ACTIONS(3447), + [anon_sym_LBRACK] = ACTIONS(3447), + [anon_sym_LTtemplate_GT] = ACTIONS(3447), + [anon_sym_DQUOTE] = ACTIONS(3447), + [anon_sym_SQUOTE] = ACTIONS(3447), + [anon_sym_class] = ACTIONS(3447), + [anon_sym_async] = ACTIONS(3447), + [anon_sym_function] = ACTIONS(3447), + [anon_sym_new] = ACTIONS(3447), + [anon_sym_using] = ACTIONS(3447), + [anon_sym_PLUS] = ACTIONS(3447), + [anon_sym_DASH] = ACTIONS(3447), + [anon_sym_SLASH] = ACTIONS(3447), + [anon_sym_LT] = ACTIONS(3447), + [anon_sym_TILDE] = ACTIONS(3447), + [anon_sym_void] = ACTIONS(3447), + [anon_sym_delete] = ACTIONS(3447), + [anon_sym_PLUS_PLUS] = ACTIONS(3447), + [anon_sym_DASH_DASH] = ACTIONS(3447), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3447), + [sym_number] = ACTIONS(3447), + [sym_private_property_identifier] = ACTIONS(3447), + [sym_this] = ACTIONS(3447), + [sym_super] = ACTIONS(3447), + [sym_true] = ACTIONS(3447), + [sym_false] = ACTIONS(3447), + [sym_null] = ACTIONS(3447), + [sym_undefined] = ACTIONS(3447), + [anon_sym_AT] = ACTIONS(3447), + [anon_sym_static] = ACTIONS(3447), + [anon_sym_readonly] = ACTIONS(3447), + [anon_sym_get] = ACTIONS(3447), + [anon_sym_set] = ACTIONS(3447), + [anon_sym_declare] = ACTIONS(3447), + [anon_sym_public] = ACTIONS(3447), + [anon_sym_private] = ACTIONS(3447), + [anon_sym_protected] = ACTIONS(3447), + [anon_sym_override] = ACTIONS(3447), + [anon_sym_module] = ACTIONS(3447), + [anon_sym_any] = ACTIONS(3447), + [anon_sym_number] = ACTIONS(3447), + [anon_sym_boolean] = ACTIONS(3447), + [anon_sym_string] = ACTIONS(3447), + [anon_sym_symbol] = ACTIONS(3447), + [anon_sym_object] = ACTIONS(3447), + [anon_sym_abstract] = ACTIONS(3447), + [anon_sym_interface] = ACTIONS(3447), + [anon_sym_enum] = ACTIONS(3447), [sym_html_comment] = ACTIONS(5), }, - [1713] = { - [sym_comment] = STATE(1713), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [1578] = { + [sym_comment] = STATE(1578), + [ts_builtin_sym_end] = ACTIONS(3491), + [sym_identifier] = ACTIONS(3439), + [anon_sym_export] = ACTIONS(3439), + [anon_sym_type] = ACTIONS(3439), + [anon_sym_namespace] = ACTIONS(3439), + [anon_sym_LBRACE] = ACTIONS(3439), + [anon_sym_RBRACE] = ACTIONS(3439), + [anon_sym_typeof] = ACTIONS(3439), + [anon_sym_import] = ACTIONS(3439), + [anon_sym_with] = ACTIONS(3439), + [anon_sym_var] = ACTIONS(3439), + [anon_sym_let] = ACTIONS(3439), + [anon_sym_const] = ACTIONS(3439), + [anon_sym_BANG] = ACTIONS(3439), + [anon_sym_if] = ACTIONS(3439), + [anon_sym_switch] = ACTIONS(3439), + [anon_sym_for] = ACTIONS(3439), + [anon_sym_LPAREN] = ACTIONS(3439), + [anon_sym_await] = ACTIONS(3439), + [anon_sym_while] = ACTIONS(3439), + [anon_sym_do] = ACTIONS(3439), + [anon_sym_try] = ACTIONS(3439), + [anon_sym_break] = ACTIONS(3439), + [anon_sym_continue] = ACTIONS(3439), + [anon_sym_debugger] = ACTIONS(3439), + [anon_sym_return] = ACTIONS(3439), + [anon_sym_throw] = ACTIONS(3439), + [anon_sym_SEMI] = ACTIONS(3439), + [anon_sym_yield] = ACTIONS(3439), + [anon_sym_LBRACK] = ACTIONS(3439), + [anon_sym_LTtemplate_GT] = ACTIONS(3439), + [anon_sym_DQUOTE] = ACTIONS(3439), + [anon_sym_SQUOTE] = ACTIONS(3439), + [anon_sym_class] = ACTIONS(3439), + [anon_sym_async] = ACTIONS(3439), + [anon_sym_function] = ACTIONS(3439), + [anon_sym_new] = ACTIONS(3439), + [anon_sym_using] = ACTIONS(3439), + [anon_sym_PLUS] = ACTIONS(3439), + [anon_sym_DASH] = ACTIONS(3439), + [anon_sym_SLASH] = ACTIONS(3439), + [anon_sym_LT] = ACTIONS(3439), + [anon_sym_TILDE] = ACTIONS(3439), + [anon_sym_void] = ACTIONS(3439), + [anon_sym_delete] = ACTIONS(3439), + [anon_sym_PLUS_PLUS] = ACTIONS(3439), + [anon_sym_DASH_DASH] = ACTIONS(3439), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3439), + [sym_number] = ACTIONS(3439), + [sym_private_property_identifier] = ACTIONS(3439), + [sym_this] = ACTIONS(3439), + [sym_super] = ACTIONS(3439), + [sym_true] = ACTIONS(3439), + [sym_false] = ACTIONS(3439), + [sym_null] = ACTIONS(3439), + [sym_undefined] = ACTIONS(3439), + [anon_sym_AT] = ACTIONS(3439), + [anon_sym_static] = ACTIONS(3439), + [anon_sym_readonly] = ACTIONS(3439), + [anon_sym_get] = ACTIONS(3439), + [anon_sym_set] = ACTIONS(3439), + [anon_sym_declare] = ACTIONS(3439), + [anon_sym_public] = ACTIONS(3439), + [anon_sym_private] = ACTIONS(3439), + [anon_sym_protected] = ACTIONS(3439), + [anon_sym_override] = ACTIONS(3439), + [anon_sym_module] = ACTIONS(3439), + [anon_sym_any] = ACTIONS(3439), + [anon_sym_number] = ACTIONS(3439), + [anon_sym_boolean] = ACTIONS(3439), + [anon_sym_string] = ACTIONS(3439), + [anon_sym_symbol] = ACTIONS(3439), + [anon_sym_object] = ACTIONS(3439), + [anon_sym_abstract] = ACTIONS(3439), + [anon_sym_interface] = ACTIONS(3439), + [anon_sym_enum] = ACTIONS(3439), [sym_html_comment] = ACTIONS(5), }, - [1714] = { - [sym_comment] = STATE(1714), - [ts_builtin_sym_end] = ACTIONS(3629), + [1579] = { + [sym_comment] = STATE(1579), + [ts_builtin_sym_end] = ACTIONS(3631), [sym_identifier] = ACTIONS(3379), [anon_sym_export] = ACTIONS(3379), [anon_sym_type] = ACTIONS(3379), @@ -203098,1710 +191733,1224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3379), [sym_html_comment] = ACTIONS(5), }, - [1715] = { - [sym_comment] = STATE(1715), - [ts_builtin_sym_end] = ACTIONS(3537), - [sym_identifier] = ACTIONS(3231), - [anon_sym_export] = ACTIONS(3231), - [anon_sym_type] = ACTIONS(3231), - [anon_sym_namespace] = ACTIONS(3231), - [anon_sym_LBRACE] = ACTIONS(3231), - [anon_sym_RBRACE] = ACTIONS(3231), - [anon_sym_typeof] = ACTIONS(3231), - [anon_sym_import] = ACTIONS(3231), - [anon_sym_with] = ACTIONS(3231), - [anon_sym_var] = ACTIONS(3231), - [anon_sym_let] = ACTIONS(3231), - [anon_sym_const] = ACTIONS(3231), - [anon_sym_BANG] = ACTIONS(3231), - [anon_sym_if] = ACTIONS(3231), - [anon_sym_switch] = ACTIONS(3231), - [anon_sym_for] = ACTIONS(3231), - [anon_sym_LPAREN] = ACTIONS(3231), - [anon_sym_await] = ACTIONS(3231), - [anon_sym_while] = ACTIONS(3231), - [anon_sym_do] = ACTIONS(3231), - [anon_sym_try] = ACTIONS(3231), - [anon_sym_break] = ACTIONS(3231), - [anon_sym_continue] = ACTIONS(3231), - [anon_sym_debugger] = ACTIONS(3231), - [anon_sym_return] = ACTIONS(3231), - [anon_sym_throw] = ACTIONS(3231), - [anon_sym_SEMI] = ACTIONS(3231), - [anon_sym_yield] = ACTIONS(3231), - [anon_sym_LBRACK] = ACTIONS(3231), - [anon_sym_LTtemplate_GT] = ACTIONS(3231), - [anon_sym_DQUOTE] = ACTIONS(3231), - [anon_sym_SQUOTE] = ACTIONS(3231), - [anon_sym_class] = ACTIONS(3231), - [anon_sym_async] = ACTIONS(3231), - [anon_sym_function] = ACTIONS(3231), - [anon_sym_new] = ACTIONS(3231), - [anon_sym_using] = ACTIONS(3231), - [anon_sym_PLUS] = ACTIONS(3231), - [anon_sym_DASH] = ACTIONS(3231), - [anon_sym_SLASH] = ACTIONS(3231), - [anon_sym_LT] = ACTIONS(3231), - [anon_sym_TILDE] = ACTIONS(3231), - [anon_sym_void] = ACTIONS(3231), - [anon_sym_delete] = ACTIONS(3231), - [anon_sym_PLUS_PLUS] = ACTIONS(3231), - [anon_sym_DASH_DASH] = ACTIONS(3231), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3231), - [sym_number] = ACTIONS(3231), - [sym_private_property_identifier] = ACTIONS(3231), - [sym_this] = ACTIONS(3231), - [sym_super] = ACTIONS(3231), - [sym_true] = ACTIONS(3231), - [sym_false] = ACTIONS(3231), - [sym_null] = ACTIONS(3231), - [sym_undefined] = ACTIONS(3231), - [anon_sym_AT] = ACTIONS(3231), - [anon_sym_static] = ACTIONS(3231), - [anon_sym_readonly] = ACTIONS(3231), - [anon_sym_get] = ACTIONS(3231), - [anon_sym_set] = ACTIONS(3231), - [anon_sym_declare] = ACTIONS(3231), - [anon_sym_public] = ACTIONS(3231), - [anon_sym_private] = ACTIONS(3231), - [anon_sym_protected] = ACTIONS(3231), - [anon_sym_override] = ACTIONS(3231), - [anon_sym_module] = ACTIONS(3231), - [anon_sym_any] = ACTIONS(3231), - [anon_sym_number] = ACTIONS(3231), - [anon_sym_boolean] = ACTIONS(3231), - [anon_sym_string] = ACTIONS(3231), - [anon_sym_symbol] = ACTIONS(3231), - [anon_sym_object] = ACTIONS(3231), - [anon_sym_abstract] = ACTIONS(3231), - [anon_sym_interface] = ACTIONS(3231), - [anon_sym_enum] = ACTIONS(3231), - [sym_html_comment] = ACTIONS(5), - }, - [1716] = { - [sym_comment] = STATE(1716), - [ts_builtin_sym_end] = ACTIONS(3623), - [sym_identifier] = ACTIONS(3373), - [anon_sym_export] = ACTIONS(3373), - [anon_sym_type] = ACTIONS(3373), - [anon_sym_namespace] = ACTIONS(3373), - [anon_sym_LBRACE] = ACTIONS(3373), - [anon_sym_RBRACE] = ACTIONS(3373), - [anon_sym_typeof] = ACTIONS(3373), - [anon_sym_import] = ACTIONS(3373), - [anon_sym_with] = ACTIONS(3373), - [anon_sym_var] = ACTIONS(3373), - [anon_sym_let] = ACTIONS(3373), - [anon_sym_const] = ACTIONS(3373), - [anon_sym_BANG] = ACTIONS(3373), - [anon_sym_if] = ACTIONS(3373), - [anon_sym_switch] = ACTIONS(3373), - [anon_sym_for] = ACTIONS(3373), - [anon_sym_LPAREN] = ACTIONS(3373), - [anon_sym_await] = ACTIONS(3373), - [anon_sym_while] = ACTIONS(3373), - [anon_sym_do] = ACTIONS(3373), - [anon_sym_try] = ACTIONS(3373), - [anon_sym_break] = ACTIONS(3373), - [anon_sym_continue] = ACTIONS(3373), - [anon_sym_debugger] = ACTIONS(3373), - [anon_sym_return] = ACTIONS(3373), - [anon_sym_throw] = ACTIONS(3373), - [anon_sym_SEMI] = ACTIONS(3373), - [anon_sym_yield] = ACTIONS(3373), - [anon_sym_LBRACK] = ACTIONS(3373), - [anon_sym_LTtemplate_GT] = ACTIONS(3373), - [anon_sym_DQUOTE] = ACTIONS(3373), - [anon_sym_SQUOTE] = ACTIONS(3373), - [anon_sym_class] = ACTIONS(3373), - [anon_sym_async] = ACTIONS(3373), - [anon_sym_function] = ACTIONS(3373), - [anon_sym_new] = ACTIONS(3373), - [anon_sym_using] = ACTIONS(3373), - [anon_sym_PLUS] = ACTIONS(3373), - [anon_sym_DASH] = ACTIONS(3373), - [anon_sym_SLASH] = ACTIONS(3373), - [anon_sym_LT] = ACTIONS(3373), - [anon_sym_TILDE] = ACTIONS(3373), - [anon_sym_void] = ACTIONS(3373), - [anon_sym_delete] = ACTIONS(3373), - [anon_sym_PLUS_PLUS] = ACTIONS(3373), - [anon_sym_DASH_DASH] = ACTIONS(3373), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3373), - [sym_number] = ACTIONS(3373), - [sym_private_property_identifier] = ACTIONS(3373), - [sym_this] = ACTIONS(3373), - [sym_super] = ACTIONS(3373), - [sym_true] = ACTIONS(3373), - [sym_false] = ACTIONS(3373), - [sym_null] = ACTIONS(3373), - [sym_undefined] = ACTIONS(3373), - [anon_sym_AT] = ACTIONS(3373), - [anon_sym_static] = ACTIONS(3373), - [anon_sym_readonly] = ACTIONS(3373), - [anon_sym_get] = ACTIONS(3373), - [anon_sym_set] = ACTIONS(3373), - [anon_sym_declare] = ACTIONS(3373), - [anon_sym_public] = ACTIONS(3373), - [anon_sym_private] = ACTIONS(3373), - [anon_sym_protected] = ACTIONS(3373), - [anon_sym_override] = ACTIONS(3373), - [anon_sym_module] = ACTIONS(3373), - [anon_sym_any] = ACTIONS(3373), - [anon_sym_number] = ACTIONS(3373), - [anon_sym_boolean] = ACTIONS(3373), - [anon_sym_string] = ACTIONS(3373), - [anon_sym_symbol] = ACTIONS(3373), - [anon_sym_object] = ACTIONS(3373), - [anon_sym_abstract] = ACTIONS(3373), - [anon_sym_interface] = ACTIONS(3373), - [anon_sym_enum] = ACTIONS(3373), - [sym_html_comment] = ACTIONS(5), - }, - [1717] = { - [sym_comment] = STATE(1717), - [ts_builtin_sym_end] = ACTIONS(3621), - [sym_identifier] = ACTIONS(3369), - [anon_sym_export] = ACTIONS(3369), - [anon_sym_type] = ACTIONS(3369), - [anon_sym_namespace] = ACTIONS(3369), - [anon_sym_LBRACE] = ACTIONS(3369), - [anon_sym_RBRACE] = ACTIONS(3369), - [anon_sym_typeof] = ACTIONS(3369), - [anon_sym_import] = ACTIONS(3369), - [anon_sym_with] = ACTIONS(3369), - [anon_sym_var] = ACTIONS(3369), - [anon_sym_let] = ACTIONS(3369), - [anon_sym_const] = ACTIONS(3369), - [anon_sym_BANG] = ACTIONS(3369), - [anon_sym_if] = ACTIONS(3369), - [anon_sym_switch] = ACTIONS(3369), - [anon_sym_for] = ACTIONS(3369), - [anon_sym_LPAREN] = ACTIONS(3369), - [anon_sym_await] = ACTIONS(3369), - [anon_sym_while] = ACTIONS(3369), - [anon_sym_do] = ACTIONS(3369), - [anon_sym_try] = ACTIONS(3369), - [anon_sym_break] = ACTIONS(3369), - [anon_sym_continue] = ACTIONS(3369), - [anon_sym_debugger] = ACTIONS(3369), - [anon_sym_return] = ACTIONS(3369), - [anon_sym_throw] = ACTIONS(3369), - [anon_sym_SEMI] = ACTIONS(3369), - [anon_sym_yield] = ACTIONS(3369), - [anon_sym_LBRACK] = ACTIONS(3369), - [anon_sym_LTtemplate_GT] = ACTIONS(3369), - [anon_sym_DQUOTE] = ACTIONS(3369), - [anon_sym_SQUOTE] = ACTIONS(3369), - [anon_sym_class] = ACTIONS(3369), - [anon_sym_async] = ACTIONS(3369), - [anon_sym_function] = ACTIONS(3369), - [anon_sym_new] = ACTIONS(3369), - [anon_sym_using] = ACTIONS(3369), - [anon_sym_PLUS] = ACTIONS(3369), - [anon_sym_DASH] = ACTIONS(3369), - [anon_sym_SLASH] = ACTIONS(3369), - [anon_sym_LT] = ACTIONS(3369), - [anon_sym_TILDE] = ACTIONS(3369), - [anon_sym_void] = ACTIONS(3369), - [anon_sym_delete] = ACTIONS(3369), - [anon_sym_PLUS_PLUS] = ACTIONS(3369), - [anon_sym_DASH_DASH] = ACTIONS(3369), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3369), - [sym_number] = ACTIONS(3369), - [sym_private_property_identifier] = ACTIONS(3369), - [sym_this] = ACTIONS(3369), - [sym_super] = ACTIONS(3369), - [sym_true] = ACTIONS(3369), - [sym_false] = ACTIONS(3369), - [sym_null] = ACTIONS(3369), - [sym_undefined] = ACTIONS(3369), - [anon_sym_AT] = ACTIONS(3369), - [anon_sym_static] = ACTIONS(3369), - [anon_sym_readonly] = ACTIONS(3369), - [anon_sym_get] = ACTIONS(3369), - [anon_sym_set] = ACTIONS(3369), - [anon_sym_declare] = ACTIONS(3369), - [anon_sym_public] = ACTIONS(3369), - [anon_sym_private] = ACTIONS(3369), - [anon_sym_protected] = ACTIONS(3369), - [anon_sym_override] = ACTIONS(3369), - [anon_sym_module] = ACTIONS(3369), - [anon_sym_any] = ACTIONS(3369), - [anon_sym_number] = ACTIONS(3369), - [anon_sym_boolean] = ACTIONS(3369), - [anon_sym_string] = ACTIONS(3369), - [anon_sym_symbol] = ACTIONS(3369), - [anon_sym_object] = ACTIONS(3369), - [anon_sym_abstract] = ACTIONS(3369), - [anon_sym_interface] = ACTIONS(3369), - [anon_sym_enum] = ACTIONS(3369), - [sym_html_comment] = ACTIONS(5), - }, - [1718] = { - [sym_comment] = STATE(1718), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1719] = { - [sym_comment] = STATE(1719), - [ts_builtin_sym_end] = ACTIONS(3557), - [sym_identifier] = ACTIONS(3401), - [anon_sym_export] = ACTIONS(3401), - [anon_sym_type] = ACTIONS(3401), - [anon_sym_namespace] = ACTIONS(3401), - [anon_sym_LBRACE] = ACTIONS(3401), - [anon_sym_RBRACE] = ACTIONS(3401), - [anon_sym_typeof] = ACTIONS(3401), - [anon_sym_import] = ACTIONS(3401), - [anon_sym_with] = ACTIONS(3401), - [anon_sym_var] = ACTIONS(3401), - [anon_sym_let] = ACTIONS(3401), - [anon_sym_const] = ACTIONS(3401), - [anon_sym_BANG] = ACTIONS(3401), - [anon_sym_if] = ACTIONS(3401), - [anon_sym_switch] = ACTIONS(3401), - [anon_sym_for] = ACTIONS(3401), - [anon_sym_LPAREN] = ACTIONS(3401), - [anon_sym_await] = ACTIONS(3401), - [anon_sym_while] = ACTIONS(3401), - [anon_sym_do] = ACTIONS(3401), - [anon_sym_try] = ACTIONS(3401), - [anon_sym_break] = ACTIONS(3401), - [anon_sym_continue] = ACTIONS(3401), - [anon_sym_debugger] = ACTIONS(3401), - [anon_sym_return] = ACTIONS(3401), - [anon_sym_throw] = ACTIONS(3401), - [anon_sym_SEMI] = ACTIONS(3401), - [anon_sym_yield] = ACTIONS(3401), - [anon_sym_LBRACK] = ACTIONS(3401), - [anon_sym_LTtemplate_GT] = ACTIONS(3401), - [anon_sym_DQUOTE] = ACTIONS(3401), - [anon_sym_SQUOTE] = ACTIONS(3401), - [anon_sym_class] = ACTIONS(3401), - [anon_sym_async] = ACTIONS(3401), - [anon_sym_function] = ACTIONS(3401), - [anon_sym_new] = ACTIONS(3401), - [anon_sym_using] = ACTIONS(3401), - [anon_sym_PLUS] = ACTIONS(3401), - [anon_sym_DASH] = ACTIONS(3401), - [anon_sym_SLASH] = ACTIONS(3401), - [anon_sym_LT] = ACTIONS(3401), - [anon_sym_TILDE] = ACTIONS(3401), - [anon_sym_void] = ACTIONS(3401), - [anon_sym_delete] = ACTIONS(3401), - [anon_sym_PLUS_PLUS] = ACTIONS(3401), - [anon_sym_DASH_DASH] = ACTIONS(3401), + [1580] = { + [sym_comment] = STATE(1580), + [ts_builtin_sym_end] = ACTIONS(2324), + [sym_identifier] = ACTIONS(2182), + [anon_sym_export] = ACTIONS(2182), + [anon_sym_type] = ACTIONS(2182), + [anon_sym_namespace] = ACTIONS(2182), + [anon_sym_LBRACE] = ACTIONS(2182), + [anon_sym_RBRACE] = ACTIONS(2182), + [anon_sym_typeof] = ACTIONS(2182), + [anon_sym_import] = ACTIONS(2182), + [anon_sym_with] = ACTIONS(2182), + [anon_sym_var] = ACTIONS(2182), + [anon_sym_let] = ACTIONS(2182), + [anon_sym_const] = ACTIONS(2182), + [anon_sym_BANG] = ACTIONS(2182), + [anon_sym_if] = ACTIONS(2182), + [anon_sym_switch] = ACTIONS(2182), + [anon_sym_for] = ACTIONS(2182), + [anon_sym_LPAREN] = ACTIONS(2182), + [anon_sym_await] = ACTIONS(2182), + [anon_sym_while] = ACTIONS(2182), + [anon_sym_do] = ACTIONS(2182), + [anon_sym_try] = ACTIONS(2182), + [anon_sym_break] = ACTIONS(2182), + [anon_sym_continue] = ACTIONS(2182), + [anon_sym_debugger] = ACTIONS(2182), + [anon_sym_return] = ACTIONS(2182), + [anon_sym_throw] = ACTIONS(2182), + [anon_sym_SEMI] = ACTIONS(2182), + [anon_sym_yield] = ACTIONS(2182), + [anon_sym_LBRACK] = ACTIONS(2182), + [anon_sym_LTtemplate_GT] = ACTIONS(2182), + [anon_sym_DQUOTE] = ACTIONS(2182), + [anon_sym_SQUOTE] = ACTIONS(2182), + [anon_sym_class] = ACTIONS(2182), + [anon_sym_async] = ACTIONS(2182), + [anon_sym_function] = ACTIONS(2182), + [anon_sym_new] = ACTIONS(2182), + [anon_sym_using] = ACTIONS(2182), + [anon_sym_PLUS] = ACTIONS(2182), + [anon_sym_DASH] = ACTIONS(2182), + [anon_sym_SLASH] = ACTIONS(2182), + [anon_sym_LT] = ACTIONS(2182), + [anon_sym_TILDE] = ACTIONS(2182), + [anon_sym_void] = ACTIONS(2182), + [anon_sym_delete] = ACTIONS(2182), + [anon_sym_PLUS_PLUS] = ACTIONS(2182), + [anon_sym_DASH_DASH] = ACTIONS(2182), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3401), - [sym_number] = ACTIONS(3401), - [sym_private_property_identifier] = ACTIONS(3401), - [sym_this] = ACTIONS(3401), - [sym_super] = ACTIONS(3401), - [sym_true] = ACTIONS(3401), - [sym_false] = ACTIONS(3401), - [sym_null] = ACTIONS(3401), - [sym_undefined] = ACTIONS(3401), - [anon_sym_AT] = ACTIONS(3401), - [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_abstract] = ACTIONS(3401), - [anon_sym_interface] = ACTIONS(3401), - [anon_sym_enum] = ACTIONS(3401), + [anon_sym_BQUOTE] = ACTIONS(2182), + [sym_number] = ACTIONS(2182), + [sym_private_property_identifier] = ACTIONS(2182), + [sym_this] = ACTIONS(2182), + [sym_super] = ACTIONS(2182), + [sym_true] = ACTIONS(2182), + [sym_false] = ACTIONS(2182), + [sym_null] = ACTIONS(2182), + [sym_undefined] = ACTIONS(2182), + [anon_sym_AT] = ACTIONS(2182), + [anon_sym_static] = ACTIONS(2182), + [anon_sym_readonly] = ACTIONS(2182), + [anon_sym_get] = ACTIONS(2182), + [anon_sym_set] = ACTIONS(2182), + [anon_sym_declare] = ACTIONS(2182), + [anon_sym_public] = ACTIONS(2182), + [anon_sym_private] = ACTIONS(2182), + [anon_sym_protected] = ACTIONS(2182), + [anon_sym_override] = ACTIONS(2182), + [anon_sym_module] = ACTIONS(2182), + [anon_sym_any] = ACTIONS(2182), + [anon_sym_number] = ACTIONS(2182), + [anon_sym_boolean] = ACTIONS(2182), + [anon_sym_string] = ACTIONS(2182), + [anon_sym_symbol] = ACTIONS(2182), + [anon_sym_object] = ACTIONS(2182), + [anon_sym_abstract] = ACTIONS(2182), + [anon_sym_interface] = ACTIONS(2182), + [anon_sym_enum] = ACTIONS(2182), [sym_html_comment] = ACTIONS(5), }, - [1720] = { - [sym_comment] = STATE(1720), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1581] = { + [sym_comment] = STATE(1581), + [ts_builtin_sym_end] = ACTIONS(3493), + [sym_identifier] = ACTIONS(3437), + [anon_sym_export] = ACTIONS(3437), + [anon_sym_type] = ACTIONS(3437), + [anon_sym_namespace] = ACTIONS(3437), + [anon_sym_LBRACE] = ACTIONS(3437), + [anon_sym_RBRACE] = ACTIONS(3437), + [anon_sym_typeof] = ACTIONS(3437), + [anon_sym_import] = ACTIONS(3437), + [anon_sym_with] = ACTIONS(3437), + [anon_sym_var] = ACTIONS(3437), + [anon_sym_let] = ACTIONS(3437), + [anon_sym_const] = ACTIONS(3437), + [anon_sym_BANG] = ACTIONS(3437), + [anon_sym_if] = ACTIONS(3437), + [anon_sym_switch] = ACTIONS(3437), + [anon_sym_for] = ACTIONS(3437), + [anon_sym_LPAREN] = ACTIONS(3437), + [anon_sym_await] = ACTIONS(3437), + [anon_sym_while] = ACTIONS(3437), + [anon_sym_do] = ACTIONS(3437), + [anon_sym_try] = ACTIONS(3437), + [anon_sym_break] = ACTIONS(3437), + [anon_sym_continue] = ACTIONS(3437), + [anon_sym_debugger] = ACTIONS(3437), + [anon_sym_return] = ACTIONS(3437), + [anon_sym_throw] = ACTIONS(3437), + [anon_sym_SEMI] = ACTIONS(3437), + [anon_sym_yield] = ACTIONS(3437), + [anon_sym_LBRACK] = ACTIONS(3437), + [anon_sym_LTtemplate_GT] = ACTIONS(3437), + [anon_sym_DQUOTE] = ACTIONS(3437), + [anon_sym_SQUOTE] = ACTIONS(3437), + [anon_sym_class] = ACTIONS(3437), + [anon_sym_async] = ACTIONS(3437), + [anon_sym_function] = ACTIONS(3437), + [anon_sym_new] = ACTIONS(3437), + [anon_sym_using] = ACTIONS(3437), + [anon_sym_PLUS] = ACTIONS(3437), + [anon_sym_DASH] = ACTIONS(3437), + [anon_sym_SLASH] = ACTIONS(3437), + [anon_sym_LT] = ACTIONS(3437), + [anon_sym_TILDE] = ACTIONS(3437), + [anon_sym_void] = ACTIONS(3437), + [anon_sym_delete] = ACTIONS(3437), + [anon_sym_PLUS_PLUS] = ACTIONS(3437), + [anon_sym_DASH_DASH] = ACTIONS(3437), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3437), + [sym_number] = ACTIONS(3437), + [sym_private_property_identifier] = ACTIONS(3437), + [sym_this] = ACTIONS(3437), + [sym_super] = ACTIONS(3437), + [sym_true] = ACTIONS(3437), + [sym_false] = ACTIONS(3437), + [sym_null] = ACTIONS(3437), + [sym_undefined] = ACTIONS(3437), + [anon_sym_AT] = ACTIONS(3437), + [anon_sym_static] = ACTIONS(3437), + [anon_sym_readonly] = ACTIONS(3437), + [anon_sym_get] = ACTIONS(3437), + [anon_sym_set] = ACTIONS(3437), + [anon_sym_declare] = ACTIONS(3437), + [anon_sym_public] = ACTIONS(3437), + [anon_sym_private] = ACTIONS(3437), + [anon_sym_protected] = ACTIONS(3437), + [anon_sym_override] = ACTIONS(3437), + [anon_sym_module] = ACTIONS(3437), + [anon_sym_any] = ACTIONS(3437), + [anon_sym_number] = ACTIONS(3437), + [anon_sym_boolean] = ACTIONS(3437), + [anon_sym_string] = ACTIONS(3437), + [anon_sym_symbol] = ACTIONS(3437), + [anon_sym_object] = ACTIONS(3437), + [anon_sym_abstract] = ACTIONS(3437), + [anon_sym_interface] = ACTIONS(3437), + [anon_sym_enum] = ACTIONS(3437), [sym_html_comment] = ACTIONS(5), }, - [1721] = { - [sym_comment] = STATE(1721), + [1582] = { + [sym_comment] = STATE(1582), [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [sym_html_comment] = ACTIONS(5), - }, - [1722] = { - [sym_comment] = STATE(1722), - [ts_builtin_sym_end] = ACTIONS(2218), - [sym_identifier] = ACTIONS(2216), - [anon_sym_export] = ACTIONS(2216), - [anon_sym_type] = ACTIONS(2216), - [anon_sym_namespace] = ACTIONS(2216), - [anon_sym_LBRACE] = ACTIONS(2216), - [anon_sym_RBRACE] = ACTIONS(2216), - [anon_sym_typeof] = ACTIONS(2216), - [anon_sym_import] = ACTIONS(2216), - [anon_sym_with] = ACTIONS(2216), - [anon_sym_var] = ACTIONS(2216), - [anon_sym_let] = ACTIONS(2216), - [anon_sym_const] = ACTIONS(2216), - [anon_sym_BANG] = ACTIONS(2216), - [anon_sym_if] = ACTIONS(2216), - [anon_sym_switch] = ACTIONS(2216), - [anon_sym_for] = ACTIONS(2216), - [anon_sym_LPAREN] = ACTIONS(2216), - [anon_sym_await] = ACTIONS(2216), - [anon_sym_while] = ACTIONS(2216), - [anon_sym_do] = ACTIONS(2216), - [anon_sym_try] = ACTIONS(2216), - [anon_sym_break] = ACTIONS(2216), - [anon_sym_continue] = ACTIONS(2216), - [anon_sym_debugger] = ACTIONS(2216), - [anon_sym_return] = ACTIONS(2216), - [anon_sym_throw] = ACTIONS(2216), - [anon_sym_SEMI] = ACTIONS(2216), - [anon_sym_yield] = ACTIONS(2216), - [anon_sym_LBRACK] = ACTIONS(2216), - [anon_sym_LTtemplate_GT] = ACTIONS(2216), - [anon_sym_DQUOTE] = ACTIONS(2216), - [anon_sym_SQUOTE] = ACTIONS(2216), - [anon_sym_class] = ACTIONS(2216), - [anon_sym_async] = ACTIONS(2216), - [anon_sym_function] = ACTIONS(2216), - [anon_sym_new] = ACTIONS(2216), - [anon_sym_using] = ACTIONS(2216), - [anon_sym_PLUS] = ACTIONS(2216), - [anon_sym_DASH] = ACTIONS(2216), - [anon_sym_SLASH] = ACTIONS(2216), - [anon_sym_LT] = ACTIONS(2216), - [anon_sym_TILDE] = ACTIONS(2216), - [anon_sym_void] = ACTIONS(2216), - [anon_sym_delete] = ACTIONS(2216), - [anon_sym_PLUS_PLUS] = ACTIONS(2216), - [anon_sym_DASH_DASH] = ACTIONS(2216), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2216), - [sym_number] = ACTIONS(2216), - [sym_private_property_identifier] = ACTIONS(2216), - [sym_this] = ACTIONS(2216), - [sym_super] = ACTIONS(2216), - [sym_true] = ACTIONS(2216), - [sym_false] = ACTIONS(2216), - [sym_null] = ACTIONS(2216), - [sym_undefined] = ACTIONS(2216), - [anon_sym_AT] = ACTIONS(2216), - [anon_sym_static] = ACTIONS(2216), - [anon_sym_readonly] = ACTIONS(2216), - [anon_sym_get] = ACTIONS(2216), - [anon_sym_set] = ACTIONS(2216), - [anon_sym_declare] = ACTIONS(2216), - [anon_sym_public] = ACTIONS(2216), - [anon_sym_private] = ACTIONS(2216), - [anon_sym_protected] = ACTIONS(2216), - [anon_sym_override] = ACTIONS(2216), - [anon_sym_module] = ACTIONS(2216), - [anon_sym_any] = ACTIONS(2216), - [anon_sym_number] = ACTIONS(2216), - [anon_sym_boolean] = ACTIONS(2216), - [anon_sym_string] = ACTIONS(2216), - [anon_sym_symbol] = ACTIONS(2216), - [anon_sym_object] = ACTIONS(2216), - [anon_sym_abstract] = ACTIONS(2216), - [anon_sym_interface] = ACTIONS(2216), - [anon_sym_enum] = ACTIONS(2216), - [sym_html_comment] = ACTIONS(5), - }, - [1723] = { - [sym_comment] = STATE(1723), - [ts_builtin_sym_end] = ACTIONS(3519), - [sym_identifier] = ACTIONS(3451), - [anon_sym_export] = ACTIONS(3451), - [anon_sym_type] = ACTIONS(3451), - [anon_sym_namespace] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3451), - [anon_sym_typeof] = ACTIONS(3451), - [anon_sym_import] = ACTIONS(3451), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_var] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_const] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_switch] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_await] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_break] = ACTIONS(3451), - [anon_sym_continue] = ACTIONS(3451), - [anon_sym_debugger] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_throw] = ACTIONS(3451), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LTtemplate_GT] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_class] = ACTIONS(3451), - [anon_sym_async] = ACTIONS(3451), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_using] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_SLASH] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_void] = ACTIONS(3451), - [anon_sym_delete] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_DASH_DASH] = ACTIONS(3451), + [sym_identifier] = ACTIONS(3357), + [anon_sym_export] = ACTIONS(3357), + [anon_sym_type] = ACTIONS(3357), + [anon_sym_namespace] = ACTIONS(3357), + [anon_sym_LBRACE] = ACTIONS(3357), + [anon_sym_RBRACE] = ACTIONS(3357), + [anon_sym_typeof] = ACTIONS(3357), + [anon_sym_import] = ACTIONS(3357), + [anon_sym_with] = ACTIONS(3357), + [anon_sym_var] = ACTIONS(3357), + [anon_sym_let] = ACTIONS(3357), + [anon_sym_const] = ACTIONS(3357), + [anon_sym_BANG] = ACTIONS(3357), + [anon_sym_if] = ACTIONS(3357), + [anon_sym_switch] = ACTIONS(3357), + [anon_sym_for] = ACTIONS(3357), + [anon_sym_LPAREN] = ACTIONS(3357), + [anon_sym_await] = ACTIONS(3357), + [anon_sym_while] = ACTIONS(3357), + [anon_sym_do] = ACTIONS(3357), + [anon_sym_try] = ACTIONS(3357), + [anon_sym_break] = ACTIONS(3357), + [anon_sym_continue] = ACTIONS(3357), + [anon_sym_debugger] = ACTIONS(3357), + [anon_sym_return] = ACTIONS(3357), + [anon_sym_throw] = ACTIONS(3357), + [anon_sym_SEMI] = ACTIONS(3357), + [anon_sym_yield] = ACTIONS(3357), + [anon_sym_LBRACK] = ACTIONS(3357), + [anon_sym_LTtemplate_GT] = ACTIONS(3357), + [anon_sym_DQUOTE] = ACTIONS(3357), + [anon_sym_SQUOTE] = ACTIONS(3357), + [anon_sym_class] = ACTIONS(3357), + [anon_sym_async] = ACTIONS(3357), + [anon_sym_function] = ACTIONS(3357), + [anon_sym_new] = ACTIONS(3357), + [anon_sym_using] = ACTIONS(3357), + [anon_sym_PLUS] = ACTIONS(3357), + [anon_sym_DASH] = ACTIONS(3357), + [anon_sym_SLASH] = ACTIONS(3357), + [anon_sym_LT] = ACTIONS(3357), + [anon_sym_TILDE] = ACTIONS(3357), + [anon_sym_void] = ACTIONS(3357), + [anon_sym_delete] = ACTIONS(3357), + [anon_sym_PLUS_PLUS] = ACTIONS(3357), + [anon_sym_DASH_DASH] = ACTIONS(3357), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3451), - [sym_number] = ACTIONS(3451), - [sym_private_property_identifier] = ACTIONS(3451), - [sym_this] = ACTIONS(3451), - [sym_super] = ACTIONS(3451), - [sym_true] = ACTIONS(3451), - [sym_false] = ACTIONS(3451), - [sym_null] = ACTIONS(3451), - [sym_undefined] = ACTIONS(3451), - [anon_sym_AT] = ACTIONS(3451), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3451), - [anon_sym_get] = ACTIONS(3451), - [anon_sym_set] = ACTIONS(3451), - [anon_sym_declare] = ACTIONS(3451), - [anon_sym_public] = ACTIONS(3451), - [anon_sym_private] = ACTIONS(3451), - [anon_sym_protected] = ACTIONS(3451), - [anon_sym_override] = ACTIONS(3451), - [anon_sym_module] = ACTIONS(3451), - [anon_sym_any] = ACTIONS(3451), - [anon_sym_number] = ACTIONS(3451), - [anon_sym_boolean] = ACTIONS(3451), - [anon_sym_string] = ACTIONS(3451), - [anon_sym_symbol] = ACTIONS(3451), - [anon_sym_object] = ACTIONS(3451), - [anon_sym_abstract] = ACTIONS(3451), - [anon_sym_interface] = ACTIONS(3451), - [anon_sym_enum] = ACTIONS(3451), + [anon_sym_BQUOTE] = ACTIONS(3357), + [sym_number] = ACTIONS(3357), + [sym_private_property_identifier] = ACTIONS(3357), + [sym_this] = ACTIONS(3357), + [sym_super] = ACTIONS(3357), + [sym_true] = ACTIONS(3357), + [sym_false] = ACTIONS(3357), + [sym_null] = ACTIONS(3357), + [sym_undefined] = ACTIONS(3357), + [anon_sym_AT] = ACTIONS(3357), + [anon_sym_static] = ACTIONS(3357), + [anon_sym_readonly] = ACTIONS(3357), + [anon_sym_get] = ACTIONS(3357), + [anon_sym_set] = ACTIONS(3357), + [anon_sym_declare] = ACTIONS(3357), + [anon_sym_public] = ACTIONS(3357), + [anon_sym_private] = ACTIONS(3357), + [anon_sym_protected] = ACTIONS(3357), + [anon_sym_override] = ACTIONS(3357), + [anon_sym_module] = ACTIONS(3357), + [anon_sym_any] = ACTIONS(3357), + [anon_sym_number] = ACTIONS(3357), + [anon_sym_boolean] = ACTIONS(3357), + [anon_sym_string] = ACTIONS(3357), + [anon_sym_symbol] = ACTIONS(3357), + [anon_sym_object] = ACTIONS(3357), + [anon_sym_abstract] = ACTIONS(3357), + [anon_sym_interface] = ACTIONS(3357), + [anon_sym_enum] = ACTIONS(3357), [sym_html_comment] = ACTIONS(5), }, - [1724] = { - [sym_comment] = STATE(1724), - [ts_builtin_sym_end] = ACTIONS(3653), - [sym_identifier] = ACTIONS(3449), - [anon_sym_export] = ACTIONS(3449), - [anon_sym_type] = ACTIONS(3449), - [anon_sym_namespace] = ACTIONS(3449), - [anon_sym_LBRACE] = ACTIONS(3449), - [anon_sym_RBRACE] = ACTIONS(3449), - [anon_sym_typeof] = ACTIONS(3449), - [anon_sym_import] = ACTIONS(3449), - [anon_sym_with] = ACTIONS(3449), - [anon_sym_var] = ACTIONS(3449), - [anon_sym_let] = ACTIONS(3449), - [anon_sym_const] = ACTIONS(3449), - [anon_sym_BANG] = ACTIONS(3449), - [anon_sym_if] = ACTIONS(3449), - [anon_sym_switch] = ACTIONS(3449), - [anon_sym_for] = ACTIONS(3449), - [anon_sym_LPAREN] = ACTIONS(3449), - [anon_sym_await] = ACTIONS(3449), - [anon_sym_while] = ACTIONS(3449), - [anon_sym_do] = ACTIONS(3449), - [anon_sym_try] = ACTIONS(3449), - [anon_sym_break] = ACTIONS(3449), - [anon_sym_continue] = ACTIONS(3449), - [anon_sym_debugger] = ACTIONS(3449), - [anon_sym_return] = ACTIONS(3449), - [anon_sym_throw] = ACTIONS(3449), - [anon_sym_SEMI] = ACTIONS(3449), - [anon_sym_yield] = ACTIONS(3449), - [anon_sym_LBRACK] = ACTIONS(3449), - [anon_sym_LTtemplate_GT] = ACTIONS(3449), - [anon_sym_DQUOTE] = ACTIONS(3449), - [anon_sym_SQUOTE] = ACTIONS(3449), - [anon_sym_class] = ACTIONS(3449), - [anon_sym_async] = ACTIONS(3449), - [anon_sym_function] = ACTIONS(3449), - [anon_sym_new] = ACTIONS(3449), - [anon_sym_using] = ACTIONS(3449), - [anon_sym_PLUS] = ACTIONS(3449), - [anon_sym_DASH] = ACTIONS(3449), - [anon_sym_SLASH] = ACTIONS(3449), - [anon_sym_LT] = ACTIONS(3449), - [anon_sym_TILDE] = ACTIONS(3449), - [anon_sym_void] = ACTIONS(3449), - [anon_sym_delete] = ACTIONS(3449), - [anon_sym_PLUS_PLUS] = ACTIONS(3449), - [anon_sym_DASH_DASH] = ACTIONS(3449), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3449), - [sym_number] = ACTIONS(3449), - [sym_private_property_identifier] = ACTIONS(3449), - [sym_this] = ACTIONS(3449), - [sym_super] = ACTIONS(3449), - [sym_true] = ACTIONS(3449), - [sym_false] = ACTIONS(3449), - [sym_null] = ACTIONS(3449), - [sym_undefined] = ACTIONS(3449), - [anon_sym_AT] = ACTIONS(3449), - [anon_sym_static] = ACTIONS(3449), - [anon_sym_readonly] = ACTIONS(3449), - [anon_sym_get] = ACTIONS(3449), - [anon_sym_set] = ACTIONS(3449), - [anon_sym_declare] = ACTIONS(3449), - [anon_sym_public] = ACTIONS(3449), - [anon_sym_private] = ACTIONS(3449), - [anon_sym_protected] = ACTIONS(3449), - [anon_sym_override] = ACTIONS(3449), - [anon_sym_module] = ACTIONS(3449), - [anon_sym_any] = ACTIONS(3449), - [anon_sym_number] = ACTIONS(3449), - [anon_sym_boolean] = ACTIONS(3449), - [anon_sym_string] = ACTIONS(3449), - [anon_sym_symbol] = ACTIONS(3449), - [anon_sym_object] = ACTIONS(3449), - [anon_sym_abstract] = ACTIONS(3449), - [anon_sym_interface] = ACTIONS(3449), - [anon_sym_enum] = ACTIONS(3449), + [1583] = { + [sym_comment] = STATE(1583), + [ts_builtin_sym_end] = ACTIONS(3681), + [sym_identifier] = ACTIONS(3575), + [anon_sym_export] = ACTIONS(3575), + [anon_sym_type] = ACTIONS(3575), + [anon_sym_namespace] = ACTIONS(3575), + [anon_sym_LBRACE] = ACTIONS(3575), + [anon_sym_RBRACE] = ACTIONS(3575), + [anon_sym_typeof] = ACTIONS(3575), + [anon_sym_import] = ACTIONS(3575), + [anon_sym_with] = ACTIONS(3575), + [anon_sym_var] = ACTIONS(3575), + [anon_sym_let] = ACTIONS(3575), + [anon_sym_const] = ACTIONS(3575), + [anon_sym_BANG] = ACTIONS(3575), + [anon_sym_if] = ACTIONS(3575), + [anon_sym_switch] = ACTIONS(3575), + [anon_sym_for] = ACTIONS(3575), + [anon_sym_LPAREN] = ACTIONS(3575), + [anon_sym_await] = ACTIONS(3575), + [anon_sym_while] = ACTIONS(3575), + [anon_sym_do] = ACTIONS(3575), + [anon_sym_try] = ACTIONS(3575), + [anon_sym_break] = ACTIONS(3575), + [anon_sym_continue] = ACTIONS(3575), + [anon_sym_debugger] = ACTIONS(3575), + [anon_sym_return] = ACTIONS(3575), + [anon_sym_throw] = ACTIONS(3575), + [anon_sym_SEMI] = ACTIONS(3575), + [anon_sym_yield] = ACTIONS(3575), + [anon_sym_LBRACK] = ACTIONS(3575), + [anon_sym_LTtemplate_GT] = ACTIONS(3575), + [anon_sym_DQUOTE] = ACTIONS(3575), + [anon_sym_SQUOTE] = ACTIONS(3575), + [anon_sym_class] = ACTIONS(3575), + [anon_sym_async] = ACTIONS(3575), + [anon_sym_function] = ACTIONS(3575), + [anon_sym_new] = ACTIONS(3575), + [anon_sym_using] = ACTIONS(3575), + [anon_sym_PLUS] = ACTIONS(3575), + [anon_sym_DASH] = ACTIONS(3575), + [anon_sym_SLASH] = ACTIONS(3575), + [anon_sym_LT] = ACTIONS(3575), + [anon_sym_TILDE] = ACTIONS(3575), + [anon_sym_void] = ACTIONS(3575), + [anon_sym_delete] = ACTIONS(3575), + [anon_sym_PLUS_PLUS] = ACTIONS(3575), + [anon_sym_DASH_DASH] = ACTIONS(3575), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3575), + [sym_number] = ACTIONS(3575), + [sym_private_property_identifier] = ACTIONS(3575), + [sym_this] = ACTIONS(3575), + [sym_super] = ACTIONS(3575), + [sym_true] = ACTIONS(3575), + [sym_false] = ACTIONS(3575), + [sym_null] = ACTIONS(3575), + [sym_undefined] = ACTIONS(3575), + [anon_sym_AT] = ACTIONS(3575), + [anon_sym_static] = ACTIONS(3575), + [anon_sym_readonly] = ACTIONS(3575), + [anon_sym_get] = ACTIONS(3575), + [anon_sym_set] = ACTIONS(3575), + [anon_sym_declare] = ACTIONS(3575), + [anon_sym_public] = ACTIONS(3575), + [anon_sym_private] = ACTIONS(3575), + [anon_sym_protected] = ACTIONS(3575), + [anon_sym_override] = ACTIONS(3575), + [anon_sym_module] = ACTIONS(3575), + [anon_sym_any] = ACTIONS(3575), + [anon_sym_number] = ACTIONS(3575), + [anon_sym_boolean] = ACTIONS(3575), + [anon_sym_string] = ACTIONS(3575), + [anon_sym_symbol] = ACTIONS(3575), + [anon_sym_object] = ACTIONS(3575), + [anon_sym_abstract] = ACTIONS(3575), + [anon_sym_interface] = ACTIONS(3575), + [anon_sym_enum] = ACTIONS(3575), [sym_html_comment] = ACTIONS(5), }, - [1725] = { - [sym_comment] = STATE(1725), - [ts_builtin_sym_end] = ACTIONS(3525), - [sym_identifier] = ACTIONS(3455), - [anon_sym_export] = ACTIONS(3455), - [anon_sym_type] = ACTIONS(3455), - [anon_sym_namespace] = ACTIONS(3455), - [anon_sym_LBRACE] = ACTIONS(3455), - [anon_sym_RBRACE] = ACTIONS(3455), - [anon_sym_typeof] = ACTIONS(3455), - [anon_sym_import] = ACTIONS(3455), - [anon_sym_with] = ACTIONS(3455), - [anon_sym_var] = ACTIONS(3455), - [anon_sym_let] = ACTIONS(3455), - [anon_sym_const] = ACTIONS(3455), - [anon_sym_BANG] = ACTIONS(3455), - [anon_sym_if] = ACTIONS(3455), - [anon_sym_switch] = ACTIONS(3455), - [anon_sym_for] = ACTIONS(3455), - [anon_sym_LPAREN] = ACTIONS(3455), - [anon_sym_await] = ACTIONS(3455), - [anon_sym_while] = ACTIONS(3455), - [anon_sym_do] = ACTIONS(3455), - [anon_sym_try] = ACTIONS(3455), - [anon_sym_break] = ACTIONS(3455), - [anon_sym_continue] = ACTIONS(3455), - [anon_sym_debugger] = ACTIONS(3455), - [anon_sym_return] = ACTIONS(3455), - [anon_sym_throw] = ACTIONS(3455), - [anon_sym_SEMI] = ACTIONS(3455), - [anon_sym_yield] = ACTIONS(3455), - [anon_sym_LBRACK] = ACTIONS(3455), - [anon_sym_LTtemplate_GT] = ACTIONS(3455), - [anon_sym_DQUOTE] = ACTIONS(3455), - [anon_sym_SQUOTE] = ACTIONS(3455), - [anon_sym_class] = ACTIONS(3455), - [anon_sym_async] = ACTIONS(3455), - [anon_sym_function] = ACTIONS(3455), - [anon_sym_new] = ACTIONS(3455), - [anon_sym_using] = ACTIONS(3455), - [anon_sym_PLUS] = ACTIONS(3455), - [anon_sym_DASH] = ACTIONS(3455), - [anon_sym_SLASH] = ACTIONS(3455), - [anon_sym_LT] = ACTIONS(3455), - [anon_sym_TILDE] = ACTIONS(3455), - [anon_sym_void] = ACTIONS(3455), - [anon_sym_delete] = ACTIONS(3455), - [anon_sym_PLUS_PLUS] = ACTIONS(3455), - [anon_sym_DASH_DASH] = ACTIONS(3455), + [1584] = { + [sym_comment] = STATE(1584), + [ts_builtin_sym_end] = ACTIONS(3633), + [sym_identifier] = ACTIONS(3375), + [anon_sym_export] = ACTIONS(3375), + [anon_sym_type] = ACTIONS(3375), + [anon_sym_namespace] = ACTIONS(3375), + [anon_sym_LBRACE] = ACTIONS(3375), + [anon_sym_RBRACE] = ACTIONS(3375), + [anon_sym_typeof] = ACTIONS(3375), + [anon_sym_import] = ACTIONS(3375), + [anon_sym_with] = ACTIONS(3375), + [anon_sym_var] = ACTIONS(3375), + [anon_sym_let] = ACTIONS(3375), + [anon_sym_const] = ACTIONS(3375), + [anon_sym_BANG] = ACTIONS(3375), + [anon_sym_if] = ACTIONS(3375), + [anon_sym_switch] = ACTIONS(3375), + [anon_sym_for] = ACTIONS(3375), + [anon_sym_LPAREN] = ACTIONS(3375), + [anon_sym_await] = ACTIONS(3375), + [anon_sym_while] = ACTIONS(3375), + [anon_sym_do] = ACTIONS(3375), + [anon_sym_try] = ACTIONS(3375), + [anon_sym_break] = ACTIONS(3375), + [anon_sym_continue] = ACTIONS(3375), + [anon_sym_debugger] = ACTIONS(3375), + [anon_sym_return] = ACTIONS(3375), + [anon_sym_throw] = ACTIONS(3375), + [anon_sym_SEMI] = ACTIONS(3375), + [anon_sym_yield] = ACTIONS(3375), + [anon_sym_LBRACK] = ACTIONS(3375), + [anon_sym_LTtemplate_GT] = ACTIONS(3375), + [anon_sym_DQUOTE] = ACTIONS(3375), + [anon_sym_SQUOTE] = ACTIONS(3375), + [anon_sym_class] = ACTIONS(3375), + [anon_sym_async] = ACTIONS(3375), + [anon_sym_function] = ACTIONS(3375), + [anon_sym_new] = ACTIONS(3375), + [anon_sym_using] = ACTIONS(3375), + [anon_sym_PLUS] = ACTIONS(3375), + [anon_sym_DASH] = ACTIONS(3375), + [anon_sym_SLASH] = ACTIONS(3375), + [anon_sym_LT] = ACTIONS(3375), + [anon_sym_TILDE] = ACTIONS(3375), + [anon_sym_void] = ACTIONS(3375), + [anon_sym_delete] = ACTIONS(3375), + [anon_sym_PLUS_PLUS] = ACTIONS(3375), + [anon_sym_DASH_DASH] = ACTIONS(3375), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3455), - [sym_number] = ACTIONS(3455), - [sym_private_property_identifier] = ACTIONS(3455), - [sym_this] = ACTIONS(3455), - [sym_super] = ACTIONS(3455), - [sym_true] = ACTIONS(3455), - [sym_false] = ACTIONS(3455), - [sym_null] = ACTIONS(3455), - [sym_undefined] = ACTIONS(3455), - [anon_sym_AT] = ACTIONS(3455), - [anon_sym_static] = ACTIONS(3455), - [anon_sym_readonly] = ACTIONS(3455), - [anon_sym_get] = ACTIONS(3455), - [anon_sym_set] = ACTIONS(3455), - [anon_sym_declare] = ACTIONS(3455), - [anon_sym_public] = ACTIONS(3455), - [anon_sym_private] = ACTIONS(3455), - [anon_sym_protected] = ACTIONS(3455), - [anon_sym_override] = ACTIONS(3455), - [anon_sym_module] = ACTIONS(3455), - [anon_sym_any] = ACTIONS(3455), - [anon_sym_number] = ACTIONS(3455), - [anon_sym_boolean] = ACTIONS(3455), - [anon_sym_string] = ACTIONS(3455), - [anon_sym_symbol] = ACTIONS(3455), - [anon_sym_object] = ACTIONS(3455), - [anon_sym_abstract] = ACTIONS(3455), - [anon_sym_interface] = ACTIONS(3455), - [anon_sym_enum] = ACTIONS(3455), + [anon_sym_BQUOTE] = ACTIONS(3375), + [sym_number] = ACTIONS(3375), + [sym_private_property_identifier] = ACTIONS(3375), + [sym_this] = ACTIONS(3375), + [sym_super] = ACTIONS(3375), + [sym_true] = ACTIONS(3375), + [sym_false] = ACTIONS(3375), + [sym_null] = ACTIONS(3375), + [sym_undefined] = ACTIONS(3375), + [anon_sym_AT] = ACTIONS(3375), + [anon_sym_static] = ACTIONS(3375), + [anon_sym_readonly] = ACTIONS(3375), + [anon_sym_get] = ACTIONS(3375), + [anon_sym_set] = ACTIONS(3375), + [anon_sym_declare] = ACTIONS(3375), + [anon_sym_public] = ACTIONS(3375), + [anon_sym_private] = ACTIONS(3375), + [anon_sym_protected] = ACTIONS(3375), + [anon_sym_override] = ACTIONS(3375), + [anon_sym_module] = ACTIONS(3375), + [anon_sym_any] = ACTIONS(3375), + [anon_sym_number] = ACTIONS(3375), + [anon_sym_boolean] = ACTIONS(3375), + [anon_sym_string] = ACTIONS(3375), + [anon_sym_symbol] = ACTIONS(3375), + [anon_sym_object] = ACTIONS(3375), + [anon_sym_abstract] = ACTIONS(3375), + [anon_sym_interface] = ACTIONS(3375), + [anon_sym_enum] = ACTIONS(3375), [sym_html_comment] = ACTIONS(5), }, - [1726] = { - [sym_comment] = STATE(1726), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [1585] = { + [sym_comment] = STATE(1585), + [ts_builtin_sym_end] = ACTIONS(3555), + [sym_identifier] = ACTIONS(3231), + [anon_sym_export] = ACTIONS(3231), + [anon_sym_type] = ACTIONS(3231), + [anon_sym_namespace] = ACTIONS(3231), + [anon_sym_LBRACE] = ACTIONS(3231), + [anon_sym_RBRACE] = ACTIONS(3231), + [anon_sym_typeof] = ACTIONS(3231), + [anon_sym_import] = ACTIONS(3231), + [anon_sym_with] = ACTIONS(3231), + [anon_sym_var] = ACTIONS(3231), + [anon_sym_let] = ACTIONS(3231), + [anon_sym_const] = ACTIONS(3231), + [anon_sym_BANG] = ACTIONS(3231), + [anon_sym_if] = ACTIONS(3231), + [anon_sym_switch] = ACTIONS(3231), + [anon_sym_for] = ACTIONS(3231), + [anon_sym_LPAREN] = ACTIONS(3231), + [anon_sym_await] = ACTIONS(3231), + [anon_sym_while] = ACTIONS(3231), + [anon_sym_do] = ACTIONS(3231), + [anon_sym_try] = ACTIONS(3231), + [anon_sym_break] = ACTIONS(3231), + [anon_sym_continue] = ACTIONS(3231), + [anon_sym_debugger] = ACTIONS(3231), + [anon_sym_return] = ACTIONS(3231), + [anon_sym_throw] = ACTIONS(3231), + [anon_sym_SEMI] = ACTIONS(3231), + [anon_sym_yield] = ACTIONS(3231), + [anon_sym_LBRACK] = ACTIONS(3231), + [anon_sym_LTtemplate_GT] = ACTIONS(3231), + [anon_sym_DQUOTE] = ACTIONS(3231), + [anon_sym_SQUOTE] = ACTIONS(3231), + [anon_sym_class] = ACTIONS(3231), + [anon_sym_async] = ACTIONS(3231), + [anon_sym_function] = ACTIONS(3231), + [anon_sym_new] = ACTIONS(3231), + [anon_sym_using] = ACTIONS(3231), + [anon_sym_PLUS] = ACTIONS(3231), + [anon_sym_DASH] = ACTIONS(3231), + [anon_sym_SLASH] = ACTIONS(3231), + [anon_sym_LT] = ACTIONS(3231), + [anon_sym_TILDE] = ACTIONS(3231), + [anon_sym_void] = ACTIONS(3231), + [anon_sym_delete] = ACTIONS(3231), + [anon_sym_PLUS_PLUS] = ACTIONS(3231), + [anon_sym_DASH_DASH] = ACTIONS(3231), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3231), + [sym_number] = ACTIONS(3231), + [sym_private_property_identifier] = ACTIONS(3231), + [sym_this] = ACTIONS(3231), + [sym_super] = ACTIONS(3231), + [sym_true] = ACTIONS(3231), + [sym_false] = ACTIONS(3231), + [sym_null] = ACTIONS(3231), + [sym_undefined] = ACTIONS(3231), + [anon_sym_AT] = ACTIONS(3231), + [anon_sym_static] = ACTIONS(3231), + [anon_sym_readonly] = ACTIONS(3231), + [anon_sym_get] = ACTIONS(3231), + [anon_sym_set] = ACTIONS(3231), + [anon_sym_declare] = ACTIONS(3231), + [anon_sym_public] = ACTIONS(3231), + [anon_sym_private] = ACTIONS(3231), + [anon_sym_protected] = ACTIONS(3231), + [anon_sym_override] = ACTIONS(3231), + [anon_sym_module] = ACTIONS(3231), + [anon_sym_any] = ACTIONS(3231), + [anon_sym_number] = ACTIONS(3231), + [anon_sym_boolean] = ACTIONS(3231), + [anon_sym_string] = ACTIONS(3231), + [anon_sym_symbol] = ACTIONS(3231), + [anon_sym_object] = ACTIONS(3231), + [anon_sym_abstract] = ACTIONS(3231), + [anon_sym_interface] = ACTIONS(3231), + [anon_sym_enum] = ACTIONS(3231), [sym_html_comment] = ACTIONS(5), }, - [1727] = { - [sym_comment] = STATE(1727), - [ts_builtin_sym_end] = ACTIONS(2260), - [sym_identifier] = ACTIONS(2258), - [anon_sym_export] = ACTIONS(2258), - [anon_sym_type] = ACTIONS(2258), - [anon_sym_namespace] = ACTIONS(2258), - [anon_sym_LBRACE] = ACTIONS(2258), - [anon_sym_RBRACE] = ACTIONS(2258), - [anon_sym_typeof] = ACTIONS(2258), - [anon_sym_import] = ACTIONS(2258), - [anon_sym_with] = ACTIONS(2258), - [anon_sym_var] = ACTIONS(2258), - [anon_sym_let] = ACTIONS(2258), - [anon_sym_const] = ACTIONS(2258), - [anon_sym_BANG] = ACTIONS(2258), - [anon_sym_if] = ACTIONS(2258), - [anon_sym_switch] = ACTIONS(2258), - [anon_sym_for] = ACTIONS(2258), - [anon_sym_LPAREN] = ACTIONS(2258), - [anon_sym_await] = ACTIONS(2258), - [anon_sym_while] = ACTIONS(2258), - [anon_sym_do] = ACTIONS(2258), - [anon_sym_try] = ACTIONS(2258), - [anon_sym_break] = ACTIONS(2258), - [anon_sym_continue] = ACTIONS(2258), - [anon_sym_debugger] = ACTIONS(2258), - [anon_sym_return] = ACTIONS(2258), - [anon_sym_throw] = ACTIONS(2258), - [anon_sym_SEMI] = ACTIONS(2258), - [anon_sym_yield] = ACTIONS(2258), - [anon_sym_LBRACK] = ACTIONS(2258), - [anon_sym_LTtemplate_GT] = ACTIONS(2258), - [anon_sym_DQUOTE] = ACTIONS(2258), - [anon_sym_SQUOTE] = ACTIONS(2258), - [anon_sym_class] = ACTIONS(2258), - [anon_sym_async] = ACTIONS(2258), - [anon_sym_function] = ACTIONS(2258), - [anon_sym_new] = ACTIONS(2258), - [anon_sym_using] = ACTIONS(2258), - [anon_sym_PLUS] = ACTIONS(2258), - [anon_sym_DASH] = ACTIONS(2258), - [anon_sym_SLASH] = ACTIONS(2258), - [anon_sym_LT] = ACTIONS(2258), - [anon_sym_TILDE] = ACTIONS(2258), - [anon_sym_void] = ACTIONS(2258), - [anon_sym_delete] = ACTIONS(2258), - [anon_sym_PLUS_PLUS] = ACTIONS(2258), - [anon_sym_DASH_DASH] = ACTIONS(2258), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2258), - [sym_number] = ACTIONS(2258), - [sym_private_property_identifier] = ACTIONS(2258), - [sym_this] = ACTIONS(2258), - [sym_super] = ACTIONS(2258), - [sym_true] = ACTIONS(2258), - [sym_false] = ACTIONS(2258), - [sym_null] = ACTIONS(2258), - [sym_undefined] = ACTIONS(2258), - [anon_sym_AT] = ACTIONS(2258), - [anon_sym_static] = ACTIONS(2258), - [anon_sym_readonly] = ACTIONS(2258), - [anon_sym_get] = ACTIONS(2258), - [anon_sym_set] = ACTIONS(2258), - [anon_sym_declare] = ACTIONS(2258), - [anon_sym_public] = ACTIONS(2258), - [anon_sym_private] = ACTIONS(2258), - [anon_sym_protected] = ACTIONS(2258), - [anon_sym_override] = ACTIONS(2258), - [anon_sym_module] = ACTIONS(2258), - [anon_sym_any] = ACTIONS(2258), - [anon_sym_number] = ACTIONS(2258), - [anon_sym_boolean] = ACTIONS(2258), - [anon_sym_string] = ACTIONS(2258), - [anon_sym_symbol] = ACTIONS(2258), - [anon_sym_object] = ACTIONS(2258), - [anon_sym_abstract] = ACTIONS(2258), - [anon_sym_interface] = ACTIONS(2258), - [anon_sym_enum] = ACTIONS(2258), + [1586] = { + [sym_comment] = STATE(1586), + [ts_builtin_sym_end] = ACTIONS(3517), + [sym_identifier] = ACTIONS(3293), + [anon_sym_export] = ACTIONS(3293), + [anon_sym_type] = ACTIONS(3293), + [anon_sym_namespace] = ACTIONS(3293), + [anon_sym_LBRACE] = ACTIONS(3293), + [anon_sym_RBRACE] = ACTIONS(3293), + [anon_sym_typeof] = ACTIONS(3293), + [anon_sym_import] = ACTIONS(3293), + [anon_sym_with] = ACTIONS(3293), + [anon_sym_var] = ACTIONS(3293), + [anon_sym_let] = ACTIONS(3293), + [anon_sym_const] = ACTIONS(3293), + [anon_sym_BANG] = ACTIONS(3293), + [anon_sym_if] = ACTIONS(3293), + [anon_sym_switch] = ACTIONS(3293), + [anon_sym_for] = ACTIONS(3293), + [anon_sym_LPAREN] = ACTIONS(3293), + [anon_sym_await] = ACTIONS(3293), + [anon_sym_while] = ACTIONS(3293), + [anon_sym_do] = ACTIONS(3293), + [anon_sym_try] = ACTIONS(3293), + [anon_sym_break] = ACTIONS(3293), + [anon_sym_continue] = ACTIONS(3293), + [anon_sym_debugger] = ACTIONS(3293), + [anon_sym_return] = ACTIONS(3293), + [anon_sym_throw] = ACTIONS(3293), + [anon_sym_SEMI] = ACTIONS(3293), + [anon_sym_yield] = ACTIONS(3293), + [anon_sym_LBRACK] = ACTIONS(3293), + [anon_sym_LTtemplate_GT] = ACTIONS(3293), + [anon_sym_DQUOTE] = ACTIONS(3293), + [anon_sym_SQUOTE] = ACTIONS(3293), + [anon_sym_class] = ACTIONS(3293), + [anon_sym_async] = ACTIONS(3293), + [anon_sym_function] = ACTIONS(3293), + [anon_sym_new] = ACTIONS(3293), + [anon_sym_using] = ACTIONS(3293), + [anon_sym_PLUS] = ACTIONS(3293), + [anon_sym_DASH] = ACTIONS(3293), + [anon_sym_SLASH] = ACTIONS(3293), + [anon_sym_LT] = ACTIONS(3293), + [anon_sym_TILDE] = ACTIONS(3293), + [anon_sym_void] = ACTIONS(3293), + [anon_sym_delete] = ACTIONS(3293), + [anon_sym_PLUS_PLUS] = ACTIONS(3293), + [anon_sym_DASH_DASH] = ACTIONS(3293), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3293), + [sym_number] = ACTIONS(3293), + [sym_private_property_identifier] = ACTIONS(3293), + [sym_this] = ACTIONS(3293), + [sym_super] = ACTIONS(3293), + [sym_true] = ACTIONS(3293), + [sym_false] = ACTIONS(3293), + [sym_null] = ACTIONS(3293), + [sym_undefined] = ACTIONS(3293), + [anon_sym_AT] = ACTIONS(3293), + [anon_sym_static] = ACTIONS(3293), + [anon_sym_readonly] = ACTIONS(3293), + [anon_sym_get] = ACTIONS(3293), + [anon_sym_set] = ACTIONS(3293), + [anon_sym_declare] = ACTIONS(3293), + [anon_sym_public] = ACTIONS(3293), + [anon_sym_private] = ACTIONS(3293), + [anon_sym_protected] = ACTIONS(3293), + [anon_sym_override] = ACTIONS(3293), + [anon_sym_module] = ACTIONS(3293), + [anon_sym_any] = ACTIONS(3293), + [anon_sym_number] = ACTIONS(3293), + [anon_sym_boolean] = ACTIONS(3293), + [anon_sym_string] = ACTIONS(3293), + [anon_sym_symbol] = ACTIONS(3293), + [anon_sym_object] = ACTIONS(3293), + [anon_sym_abstract] = ACTIONS(3293), + [anon_sym_interface] = ACTIONS(3293), + [anon_sym_enum] = ACTIONS(3293), [sym_html_comment] = ACTIONS(5), }, - [1728] = { - [sym_comment] = STATE(1728), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1587] = { + [sym_comment] = STATE(1587), + [ts_builtin_sym_end] = ACTIONS(3495), + [sym_identifier] = ACTIONS(3429), + [anon_sym_export] = ACTIONS(3429), + [anon_sym_type] = ACTIONS(3429), + [anon_sym_namespace] = ACTIONS(3429), + [anon_sym_LBRACE] = ACTIONS(3429), + [anon_sym_RBRACE] = ACTIONS(3429), + [anon_sym_typeof] = ACTIONS(3429), + [anon_sym_import] = ACTIONS(3429), + [anon_sym_with] = ACTIONS(3429), + [anon_sym_var] = ACTIONS(3429), + [anon_sym_let] = ACTIONS(3429), + [anon_sym_const] = ACTIONS(3429), + [anon_sym_BANG] = ACTIONS(3429), + [anon_sym_if] = ACTIONS(3429), + [anon_sym_switch] = ACTIONS(3429), + [anon_sym_for] = ACTIONS(3429), + [anon_sym_LPAREN] = ACTIONS(3429), + [anon_sym_await] = ACTIONS(3429), + [anon_sym_while] = ACTIONS(3429), + [anon_sym_do] = ACTIONS(3429), + [anon_sym_try] = ACTIONS(3429), + [anon_sym_break] = ACTIONS(3429), + [anon_sym_continue] = ACTIONS(3429), + [anon_sym_debugger] = ACTIONS(3429), + [anon_sym_return] = ACTIONS(3429), + [anon_sym_throw] = ACTIONS(3429), + [anon_sym_SEMI] = ACTIONS(3429), + [anon_sym_yield] = ACTIONS(3429), + [anon_sym_LBRACK] = ACTIONS(3429), + [anon_sym_LTtemplate_GT] = ACTIONS(3429), + [anon_sym_DQUOTE] = ACTIONS(3429), + [anon_sym_SQUOTE] = ACTIONS(3429), + [anon_sym_class] = ACTIONS(3429), + [anon_sym_async] = ACTIONS(3429), + [anon_sym_function] = ACTIONS(3429), + [anon_sym_new] = ACTIONS(3429), + [anon_sym_using] = ACTIONS(3429), + [anon_sym_PLUS] = ACTIONS(3429), + [anon_sym_DASH] = ACTIONS(3429), + [anon_sym_SLASH] = ACTIONS(3429), + [anon_sym_LT] = ACTIONS(3429), + [anon_sym_TILDE] = ACTIONS(3429), + [anon_sym_void] = ACTIONS(3429), + [anon_sym_delete] = ACTIONS(3429), + [anon_sym_PLUS_PLUS] = ACTIONS(3429), + [anon_sym_DASH_DASH] = ACTIONS(3429), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3429), + [sym_number] = ACTIONS(3429), + [sym_private_property_identifier] = ACTIONS(3429), + [sym_this] = ACTIONS(3429), + [sym_super] = ACTIONS(3429), + [sym_true] = ACTIONS(3429), + [sym_false] = ACTIONS(3429), + [sym_null] = ACTIONS(3429), + [sym_undefined] = ACTIONS(3429), + [anon_sym_AT] = ACTIONS(3429), + [anon_sym_static] = ACTIONS(3429), + [anon_sym_readonly] = ACTIONS(3429), + [anon_sym_get] = ACTIONS(3429), + [anon_sym_set] = ACTIONS(3429), + [anon_sym_declare] = ACTIONS(3429), + [anon_sym_public] = ACTIONS(3429), + [anon_sym_private] = ACTIONS(3429), + [anon_sym_protected] = ACTIONS(3429), + [anon_sym_override] = ACTIONS(3429), + [anon_sym_module] = ACTIONS(3429), + [anon_sym_any] = ACTIONS(3429), + [anon_sym_number] = ACTIONS(3429), + [anon_sym_boolean] = ACTIONS(3429), + [anon_sym_string] = ACTIONS(3429), + [anon_sym_symbol] = ACTIONS(3429), + [anon_sym_object] = ACTIONS(3429), + [anon_sym_abstract] = ACTIONS(3429), + [anon_sym_interface] = ACTIONS(3429), + [anon_sym_enum] = ACTIONS(3429), [sym_html_comment] = ACTIONS(5), }, - [1729] = { - [sym_comment] = STATE(1729), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1588] = { + [sym_comment] = STATE(1588), + [ts_builtin_sym_end] = ACTIONS(3661), + [sym_identifier] = ACTIONS(3425), + [anon_sym_export] = ACTIONS(3425), + [anon_sym_type] = ACTIONS(3425), + [anon_sym_namespace] = ACTIONS(3425), + [anon_sym_LBRACE] = ACTIONS(3425), + [anon_sym_RBRACE] = ACTIONS(3425), + [anon_sym_typeof] = ACTIONS(3425), + [anon_sym_import] = ACTIONS(3425), + [anon_sym_with] = ACTIONS(3425), + [anon_sym_var] = ACTIONS(3425), + [anon_sym_let] = ACTIONS(3425), + [anon_sym_const] = ACTIONS(3425), + [anon_sym_BANG] = ACTIONS(3425), + [anon_sym_if] = ACTIONS(3425), + [anon_sym_switch] = ACTIONS(3425), + [anon_sym_for] = ACTIONS(3425), + [anon_sym_LPAREN] = ACTIONS(3425), + [anon_sym_await] = ACTIONS(3425), + [anon_sym_while] = ACTIONS(3425), + [anon_sym_do] = ACTIONS(3425), + [anon_sym_try] = ACTIONS(3425), + [anon_sym_break] = ACTIONS(3425), + [anon_sym_continue] = ACTIONS(3425), + [anon_sym_debugger] = ACTIONS(3425), + [anon_sym_return] = ACTIONS(3425), + [anon_sym_throw] = ACTIONS(3425), + [anon_sym_SEMI] = ACTIONS(3425), + [anon_sym_yield] = ACTIONS(3425), + [anon_sym_LBRACK] = ACTIONS(3425), + [anon_sym_LTtemplate_GT] = ACTIONS(3425), + [anon_sym_DQUOTE] = ACTIONS(3425), + [anon_sym_SQUOTE] = ACTIONS(3425), + [anon_sym_class] = ACTIONS(3425), + [anon_sym_async] = ACTIONS(3425), + [anon_sym_function] = ACTIONS(3425), + [anon_sym_new] = ACTIONS(3425), + [anon_sym_using] = ACTIONS(3425), + [anon_sym_PLUS] = ACTIONS(3425), + [anon_sym_DASH] = ACTIONS(3425), + [anon_sym_SLASH] = ACTIONS(3425), + [anon_sym_LT] = ACTIONS(3425), + [anon_sym_TILDE] = ACTIONS(3425), + [anon_sym_void] = ACTIONS(3425), + [anon_sym_delete] = ACTIONS(3425), + [anon_sym_PLUS_PLUS] = ACTIONS(3425), + [anon_sym_DASH_DASH] = ACTIONS(3425), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3425), + [sym_number] = ACTIONS(3425), + [sym_private_property_identifier] = ACTIONS(3425), + [sym_this] = ACTIONS(3425), + [sym_super] = ACTIONS(3425), + [sym_true] = ACTIONS(3425), + [sym_false] = ACTIONS(3425), + [sym_null] = ACTIONS(3425), + [sym_undefined] = ACTIONS(3425), + [anon_sym_AT] = ACTIONS(3425), + [anon_sym_static] = ACTIONS(3425), + [anon_sym_readonly] = ACTIONS(3425), + [anon_sym_get] = ACTIONS(3425), + [anon_sym_set] = ACTIONS(3425), + [anon_sym_declare] = ACTIONS(3425), + [anon_sym_public] = ACTIONS(3425), + [anon_sym_private] = ACTIONS(3425), + [anon_sym_protected] = ACTIONS(3425), + [anon_sym_override] = ACTIONS(3425), + [anon_sym_module] = ACTIONS(3425), + [anon_sym_any] = ACTIONS(3425), + [anon_sym_number] = ACTIONS(3425), + [anon_sym_boolean] = ACTIONS(3425), + [anon_sym_string] = ACTIONS(3425), + [anon_sym_symbol] = ACTIONS(3425), + [anon_sym_object] = ACTIONS(3425), + [anon_sym_abstract] = ACTIONS(3425), + [anon_sym_interface] = ACTIONS(3425), + [anon_sym_enum] = ACTIONS(3425), [sym_html_comment] = ACTIONS(5), }, - [1730] = { - [sym_comment] = STATE(1730), - [ts_builtin_sym_end] = ACTIONS(3513), - [sym_identifier] = ACTIONS(3337), - [anon_sym_export] = ACTIONS(3337), - [anon_sym_type] = ACTIONS(3337), - [anon_sym_namespace] = ACTIONS(3337), - [anon_sym_LBRACE] = ACTIONS(3337), - [anon_sym_RBRACE] = ACTIONS(3337), - [anon_sym_typeof] = ACTIONS(3337), - [anon_sym_import] = ACTIONS(3337), - [anon_sym_with] = ACTIONS(3337), - [anon_sym_var] = ACTIONS(3337), - [anon_sym_let] = ACTIONS(3337), - [anon_sym_const] = ACTIONS(3337), - [anon_sym_BANG] = ACTIONS(3337), - [anon_sym_if] = ACTIONS(3337), - [anon_sym_switch] = ACTIONS(3337), - [anon_sym_for] = ACTIONS(3337), - [anon_sym_LPAREN] = ACTIONS(3337), - [anon_sym_await] = ACTIONS(3337), - [anon_sym_while] = ACTIONS(3337), - [anon_sym_do] = ACTIONS(3337), - [anon_sym_try] = ACTIONS(3337), - [anon_sym_break] = ACTIONS(3337), - [anon_sym_continue] = ACTIONS(3337), - [anon_sym_debugger] = ACTIONS(3337), - [anon_sym_return] = ACTIONS(3337), - [anon_sym_throw] = ACTIONS(3337), - [anon_sym_SEMI] = ACTIONS(3337), - [anon_sym_yield] = ACTIONS(3337), - [anon_sym_LBRACK] = ACTIONS(3337), - [anon_sym_LTtemplate_GT] = ACTIONS(3337), - [anon_sym_DQUOTE] = ACTIONS(3337), - [anon_sym_SQUOTE] = ACTIONS(3337), - [anon_sym_class] = ACTIONS(3337), - [anon_sym_async] = ACTIONS(3337), - [anon_sym_function] = ACTIONS(3337), - [anon_sym_new] = ACTIONS(3337), - [anon_sym_using] = ACTIONS(3337), - [anon_sym_PLUS] = ACTIONS(3337), - [anon_sym_DASH] = ACTIONS(3337), - [anon_sym_SLASH] = ACTIONS(3337), - [anon_sym_LT] = ACTIONS(3337), - [anon_sym_TILDE] = ACTIONS(3337), - [anon_sym_void] = ACTIONS(3337), - [anon_sym_delete] = ACTIONS(3337), - [anon_sym_PLUS_PLUS] = ACTIONS(3337), - [anon_sym_DASH_DASH] = ACTIONS(3337), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3337), - [sym_number] = ACTIONS(3337), - [sym_private_property_identifier] = ACTIONS(3337), - [sym_this] = ACTIONS(3337), - [sym_super] = ACTIONS(3337), - [sym_true] = ACTIONS(3337), - [sym_false] = ACTIONS(3337), - [sym_null] = ACTIONS(3337), - [sym_undefined] = ACTIONS(3337), - [anon_sym_AT] = ACTIONS(3337), - [anon_sym_static] = ACTIONS(3337), - [anon_sym_readonly] = ACTIONS(3337), - [anon_sym_get] = ACTIONS(3337), - [anon_sym_set] = ACTIONS(3337), - [anon_sym_declare] = ACTIONS(3337), - [anon_sym_public] = ACTIONS(3337), - [anon_sym_private] = ACTIONS(3337), - [anon_sym_protected] = ACTIONS(3337), - [anon_sym_override] = ACTIONS(3337), - [anon_sym_module] = ACTIONS(3337), - [anon_sym_any] = ACTIONS(3337), - [anon_sym_number] = ACTIONS(3337), - [anon_sym_boolean] = ACTIONS(3337), - [anon_sym_string] = ACTIONS(3337), - [anon_sym_symbol] = ACTIONS(3337), - [anon_sym_object] = ACTIONS(3337), - [anon_sym_abstract] = ACTIONS(3337), - [anon_sym_interface] = ACTIONS(3337), - [anon_sym_enum] = ACTIONS(3337), + [1589] = { + [sym_comment] = STATE(1589), + [ts_builtin_sym_end] = ACTIONS(3553), + [sym_identifier] = ACTIONS(3249), + [anon_sym_export] = ACTIONS(3249), + [anon_sym_type] = ACTIONS(3249), + [anon_sym_namespace] = ACTIONS(3249), + [anon_sym_LBRACE] = ACTIONS(3249), + [anon_sym_RBRACE] = ACTIONS(3249), + [anon_sym_typeof] = ACTIONS(3249), + [anon_sym_import] = ACTIONS(3249), + [anon_sym_with] = ACTIONS(3249), + [anon_sym_var] = ACTIONS(3249), + [anon_sym_let] = ACTIONS(3249), + [anon_sym_const] = ACTIONS(3249), + [anon_sym_BANG] = ACTIONS(3249), + [anon_sym_if] = ACTIONS(3249), + [anon_sym_switch] = ACTIONS(3249), + [anon_sym_for] = ACTIONS(3249), + [anon_sym_LPAREN] = ACTIONS(3249), + [anon_sym_await] = ACTIONS(3249), + [anon_sym_while] = ACTIONS(3249), + [anon_sym_do] = ACTIONS(3249), + [anon_sym_try] = ACTIONS(3249), + [anon_sym_break] = ACTIONS(3249), + [anon_sym_continue] = ACTIONS(3249), + [anon_sym_debugger] = ACTIONS(3249), + [anon_sym_return] = ACTIONS(3249), + [anon_sym_throw] = ACTIONS(3249), + [anon_sym_SEMI] = ACTIONS(3249), + [anon_sym_yield] = ACTIONS(3249), + [anon_sym_LBRACK] = ACTIONS(3249), + [anon_sym_LTtemplate_GT] = ACTIONS(3249), + [anon_sym_DQUOTE] = ACTIONS(3249), + [anon_sym_SQUOTE] = ACTIONS(3249), + [anon_sym_class] = ACTIONS(3249), + [anon_sym_async] = ACTIONS(3249), + [anon_sym_function] = ACTIONS(3249), + [anon_sym_new] = ACTIONS(3249), + [anon_sym_using] = ACTIONS(3249), + [anon_sym_PLUS] = ACTIONS(3249), + [anon_sym_DASH] = ACTIONS(3249), + [anon_sym_SLASH] = ACTIONS(3249), + [anon_sym_LT] = ACTIONS(3249), + [anon_sym_TILDE] = ACTIONS(3249), + [anon_sym_void] = ACTIONS(3249), + [anon_sym_delete] = ACTIONS(3249), + [anon_sym_PLUS_PLUS] = ACTIONS(3249), + [anon_sym_DASH_DASH] = ACTIONS(3249), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3249), + [sym_number] = ACTIONS(3249), + [sym_private_property_identifier] = ACTIONS(3249), + [sym_this] = ACTIONS(3249), + [sym_super] = ACTIONS(3249), + [sym_true] = ACTIONS(3249), + [sym_false] = ACTIONS(3249), + [sym_null] = ACTIONS(3249), + [sym_undefined] = ACTIONS(3249), + [anon_sym_AT] = ACTIONS(3249), + [anon_sym_static] = ACTIONS(3249), + [anon_sym_readonly] = ACTIONS(3249), + [anon_sym_get] = ACTIONS(3249), + [anon_sym_set] = ACTIONS(3249), + [anon_sym_declare] = ACTIONS(3249), + [anon_sym_public] = ACTIONS(3249), + [anon_sym_private] = ACTIONS(3249), + [anon_sym_protected] = ACTIONS(3249), + [anon_sym_override] = ACTIONS(3249), + [anon_sym_module] = ACTIONS(3249), + [anon_sym_any] = ACTIONS(3249), + [anon_sym_number] = ACTIONS(3249), + [anon_sym_boolean] = ACTIONS(3249), + [anon_sym_string] = ACTIONS(3249), + [anon_sym_symbol] = ACTIONS(3249), + [anon_sym_object] = ACTIONS(3249), + [anon_sym_abstract] = ACTIONS(3249), + [anon_sym_interface] = ACTIONS(3249), + [anon_sym_enum] = ACTIONS(3249), [sym_html_comment] = ACTIONS(5), }, - [1731] = { - [sym_comment] = STATE(1731), - [ts_builtin_sym_end] = ACTIONS(3659), - [sym_identifier] = ACTIONS(3259), - [anon_sym_export] = ACTIONS(3259), - [anon_sym_type] = ACTIONS(3259), - [anon_sym_namespace] = ACTIONS(3259), - [anon_sym_LBRACE] = ACTIONS(3259), - [anon_sym_RBRACE] = ACTIONS(3259), - [anon_sym_typeof] = ACTIONS(3259), - [anon_sym_import] = ACTIONS(3259), - [anon_sym_with] = ACTIONS(3259), - [anon_sym_var] = ACTIONS(3259), - [anon_sym_let] = ACTIONS(3259), - [anon_sym_const] = ACTIONS(3259), - [anon_sym_BANG] = ACTIONS(3259), - [anon_sym_if] = ACTIONS(3259), - [anon_sym_switch] = ACTIONS(3259), - [anon_sym_for] = ACTIONS(3259), - [anon_sym_LPAREN] = ACTIONS(3259), - [anon_sym_await] = ACTIONS(3259), - [anon_sym_while] = ACTIONS(3259), - [anon_sym_do] = ACTIONS(3259), - [anon_sym_try] = ACTIONS(3259), - [anon_sym_break] = ACTIONS(3259), - [anon_sym_continue] = ACTIONS(3259), - [anon_sym_debugger] = ACTIONS(3259), - [anon_sym_return] = ACTIONS(3259), - [anon_sym_throw] = ACTIONS(3259), - [anon_sym_SEMI] = ACTIONS(3259), - [anon_sym_yield] = ACTIONS(3259), - [anon_sym_LBRACK] = ACTIONS(3259), - [anon_sym_LTtemplate_GT] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(3259), - [anon_sym_SQUOTE] = ACTIONS(3259), - [anon_sym_class] = ACTIONS(3259), - [anon_sym_async] = ACTIONS(3259), - [anon_sym_function] = ACTIONS(3259), - [anon_sym_new] = ACTIONS(3259), - [anon_sym_using] = ACTIONS(3259), - [anon_sym_PLUS] = ACTIONS(3259), - [anon_sym_DASH] = ACTIONS(3259), - [anon_sym_SLASH] = ACTIONS(3259), - [anon_sym_LT] = ACTIONS(3259), - [anon_sym_TILDE] = ACTIONS(3259), - [anon_sym_void] = ACTIONS(3259), - [anon_sym_delete] = ACTIONS(3259), - [anon_sym_PLUS_PLUS] = ACTIONS(3259), - [anon_sym_DASH_DASH] = ACTIONS(3259), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3259), - [sym_number] = ACTIONS(3259), - [sym_private_property_identifier] = ACTIONS(3259), - [sym_this] = ACTIONS(3259), - [sym_super] = ACTIONS(3259), - [sym_true] = ACTIONS(3259), - [sym_false] = ACTIONS(3259), - [sym_null] = ACTIONS(3259), - [sym_undefined] = ACTIONS(3259), - [anon_sym_AT] = ACTIONS(3259), - [anon_sym_static] = ACTIONS(3259), - [anon_sym_readonly] = ACTIONS(3259), - [anon_sym_get] = ACTIONS(3259), - [anon_sym_set] = ACTIONS(3259), - [anon_sym_declare] = ACTIONS(3259), - [anon_sym_public] = ACTIONS(3259), - [anon_sym_private] = ACTIONS(3259), - [anon_sym_protected] = ACTIONS(3259), - [anon_sym_override] = ACTIONS(3259), - [anon_sym_module] = ACTIONS(3259), - [anon_sym_any] = ACTIONS(3259), - [anon_sym_number] = ACTIONS(3259), - [anon_sym_boolean] = ACTIONS(3259), - [anon_sym_string] = ACTIONS(3259), - [anon_sym_symbol] = ACTIONS(3259), - [anon_sym_object] = ACTIONS(3259), - [anon_sym_abstract] = ACTIONS(3259), - [anon_sym_interface] = ACTIONS(3259), - [anon_sym_enum] = ACTIONS(3259), + [1590] = { + [sym_comment] = STATE(1590), + [ts_builtin_sym_end] = ACTIONS(2290), + [sym_identifier] = ACTIONS(2288), + [anon_sym_export] = ACTIONS(2288), + [anon_sym_type] = ACTIONS(2288), + [anon_sym_namespace] = ACTIONS(2288), + [anon_sym_LBRACE] = ACTIONS(2288), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_typeof] = ACTIONS(2288), + [anon_sym_import] = ACTIONS(2288), + [anon_sym_with] = ACTIONS(2288), + [anon_sym_var] = ACTIONS(2288), + [anon_sym_let] = ACTIONS(2288), + [anon_sym_const] = ACTIONS(2288), + [anon_sym_BANG] = ACTIONS(2288), + [anon_sym_if] = ACTIONS(2288), + [anon_sym_switch] = ACTIONS(2288), + [anon_sym_for] = ACTIONS(2288), + [anon_sym_LPAREN] = ACTIONS(2288), + [anon_sym_await] = ACTIONS(2288), + [anon_sym_while] = ACTIONS(2288), + [anon_sym_do] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2288), + [anon_sym_break] = ACTIONS(2288), + [anon_sym_continue] = ACTIONS(2288), + [anon_sym_debugger] = ACTIONS(2288), + [anon_sym_return] = ACTIONS(2288), + [anon_sym_throw] = ACTIONS(2288), + [anon_sym_SEMI] = ACTIONS(2288), + [anon_sym_yield] = ACTIONS(2288), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_LTtemplate_GT] = ACTIONS(2288), + [anon_sym_DQUOTE] = ACTIONS(2288), + [anon_sym_SQUOTE] = ACTIONS(2288), + [anon_sym_class] = ACTIONS(2288), + [anon_sym_async] = ACTIONS(2288), + [anon_sym_function] = ACTIONS(2288), + [anon_sym_new] = ACTIONS(2288), + [anon_sym_using] = ACTIONS(2288), + [anon_sym_PLUS] = ACTIONS(2288), + [anon_sym_DASH] = ACTIONS(2288), + [anon_sym_SLASH] = ACTIONS(2288), + [anon_sym_LT] = ACTIONS(2288), + [anon_sym_TILDE] = ACTIONS(2288), + [anon_sym_void] = ACTIONS(2288), + [anon_sym_delete] = ACTIONS(2288), + [anon_sym_PLUS_PLUS] = ACTIONS(2288), + [anon_sym_DASH_DASH] = ACTIONS(2288), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2288), + [sym_number] = ACTIONS(2288), + [sym_private_property_identifier] = ACTIONS(2288), + [sym_this] = ACTIONS(2288), + [sym_super] = ACTIONS(2288), + [sym_true] = ACTIONS(2288), + [sym_false] = ACTIONS(2288), + [sym_null] = ACTIONS(2288), + [sym_undefined] = ACTIONS(2288), + [anon_sym_AT] = ACTIONS(2288), + [anon_sym_static] = ACTIONS(2288), + [anon_sym_readonly] = ACTIONS(2288), + [anon_sym_get] = ACTIONS(2288), + [anon_sym_set] = ACTIONS(2288), + [anon_sym_declare] = ACTIONS(2288), + [anon_sym_public] = ACTIONS(2288), + [anon_sym_private] = ACTIONS(2288), + [anon_sym_protected] = ACTIONS(2288), + [anon_sym_override] = ACTIONS(2288), + [anon_sym_module] = ACTIONS(2288), + [anon_sym_any] = ACTIONS(2288), + [anon_sym_number] = ACTIONS(2288), + [anon_sym_boolean] = ACTIONS(2288), + [anon_sym_string] = ACTIONS(2288), + [anon_sym_symbol] = ACTIONS(2288), + [anon_sym_object] = ACTIONS(2288), + [anon_sym_abstract] = ACTIONS(2288), + [anon_sym_interface] = ACTIONS(2288), + [anon_sym_enum] = ACTIONS(2288), [sym_html_comment] = ACTIONS(5), }, - [1732] = { - [sym_comment] = STATE(1732), - [ts_builtin_sym_end] = ACTIONS(3515), - [sym_identifier] = ACTIONS(3339), - [anon_sym_export] = ACTIONS(3339), - [anon_sym_type] = ACTIONS(3339), - [anon_sym_namespace] = ACTIONS(3339), - [anon_sym_LBRACE] = ACTIONS(3339), - [anon_sym_RBRACE] = ACTIONS(3339), - [anon_sym_typeof] = ACTIONS(3339), - [anon_sym_import] = ACTIONS(3339), - [anon_sym_with] = ACTIONS(3339), - [anon_sym_var] = ACTIONS(3339), - [anon_sym_let] = ACTIONS(3339), - [anon_sym_const] = ACTIONS(3339), - [anon_sym_BANG] = ACTIONS(3339), - [anon_sym_if] = ACTIONS(3339), - [anon_sym_switch] = ACTIONS(3339), - [anon_sym_for] = ACTIONS(3339), - [anon_sym_LPAREN] = ACTIONS(3339), - [anon_sym_await] = ACTIONS(3339), - [anon_sym_while] = ACTIONS(3339), - [anon_sym_do] = ACTIONS(3339), - [anon_sym_try] = ACTIONS(3339), - [anon_sym_break] = ACTIONS(3339), - [anon_sym_continue] = ACTIONS(3339), - [anon_sym_debugger] = ACTIONS(3339), - [anon_sym_return] = ACTIONS(3339), - [anon_sym_throw] = ACTIONS(3339), - [anon_sym_SEMI] = ACTIONS(3339), - [anon_sym_yield] = ACTIONS(3339), - [anon_sym_LBRACK] = ACTIONS(3339), - [anon_sym_LTtemplate_GT] = ACTIONS(3339), - [anon_sym_DQUOTE] = ACTIONS(3339), - [anon_sym_SQUOTE] = ACTIONS(3339), - [anon_sym_class] = ACTIONS(3339), - [anon_sym_async] = ACTIONS(3339), - [anon_sym_function] = ACTIONS(3339), - [anon_sym_new] = ACTIONS(3339), - [anon_sym_using] = ACTIONS(3339), - [anon_sym_PLUS] = ACTIONS(3339), - [anon_sym_DASH] = ACTIONS(3339), - [anon_sym_SLASH] = ACTIONS(3339), - [anon_sym_LT] = ACTIONS(3339), - [anon_sym_TILDE] = ACTIONS(3339), - [anon_sym_void] = ACTIONS(3339), - [anon_sym_delete] = ACTIONS(3339), - [anon_sym_PLUS_PLUS] = ACTIONS(3339), - [anon_sym_DASH_DASH] = ACTIONS(3339), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3339), - [sym_number] = ACTIONS(3339), - [sym_private_property_identifier] = ACTIONS(3339), - [sym_this] = ACTIONS(3339), - [sym_super] = ACTIONS(3339), - [sym_true] = ACTIONS(3339), - [sym_false] = ACTIONS(3339), - [sym_null] = ACTIONS(3339), - [sym_undefined] = ACTIONS(3339), - [anon_sym_AT] = ACTIONS(3339), - [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_abstract] = ACTIONS(3339), - [anon_sym_interface] = ACTIONS(3339), - [anon_sym_enum] = ACTIONS(3339), + [1591] = { + [sym_comment] = STATE(1591), + [ts_builtin_sym_end] = ACTIONS(3599), + [sym_identifier] = ACTIONS(3271), + [anon_sym_export] = ACTIONS(3271), + [anon_sym_type] = ACTIONS(3271), + [anon_sym_namespace] = ACTIONS(3271), + [anon_sym_LBRACE] = ACTIONS(3271), + [anon_sym_RBRACE] = ACTIONS(3271), + [anon_sym_typeof] = ACTIONS(3271), + [anon_sym_import] = ACTIONS(3271), + [anon_sym_with] = ACTIONS(3271), + [anon_sym_var] = ACTIONS(3271), + [anon_sym_let] = ACTIONS(3271), + [anon_sym_const] = ACTIONS(3271), + [anon_sym_BANG] = ACTIONS(3271), + [anon_sym_if] = ACTIONS(3271), + [anon_sym_switch] = ACTIONS(3271), + [anon_sym_for] = ACTIONS(3271), + [anon_sym_LPAREN] = ACTIONS(3271), + [anon_sym_await] = ACTIONS(3271), + [anon_sym_while] = ACTIONS(3271), + [anon_sym_do] = ACTIONS(3271), + [anon_sym_try] = ACTIONS(3271), + [anon_sym_break] = ACTIONS(3271), + [anon_sym_continue] = ACTIONS(3271), + [anon_sym_debugger] = ACTIONS(3271), + [anon_sym_return] = ACTIONS(3271), + [anon_sym_throw] = ACTIONS(3271), + [anon_sym_SEMI] = ACTIONS(3271), + [anon_sym_yield] = ACTIONS(3271), + [anon_sym_LBRACK] = ACTIONS(3271), + [anon_sym_LTtemplate_GT] = ACTIONS(3271), + [anon_sym_DQUOTE] = ACTIONS(3271), + [anon_sym_SQUOTE] = ACTIONS(3271), + [anon_sym_class] = ACTIONS(3271), + [anon_sym_async] = ACTIONS(3271), + [anon_sym_function] = ACTIONS(3271), + [anon_sym_new] = ACTIONS(3271), + [anon_sym_using] = ACTIONS(3271), + [anon_sym_PLUS] = ACTIONS(3271), + [anon_sym_DASH] = ACTIONS(3271), + [anon_sym_SLASH] = ACTIONS(3271), + [anon_sym_LT] = ACTIONS(3271), + [anon_sym_TILDE] = ACTIONS(3271), + [anon_sym_void] = ACTIONS(3271), + [anon_sym_delete] = ACTIONS(3271), + [anon_sym_PLUS_PLUS] = ACTIONS(3271), + [anon_sym_DASH_DASH] = ACTIONS(3271), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3271), + [sym_number] = ACTIONS(3271), + [sym_private_property_identifier] = ACTIONS(3271), + [sym_this] = ACTIONS(3271), + [sym_super] = ACTIONS(3271), + [sym_true] = ACTIONS(3271), + [sym_false] = ACTIONS(3271), + [sym_null] = ACTIONS(3271), + [sym_undefined] = ACTIONS(3271), + [anon_sym_AT] = ACTIONS(3271), + [anon_sym_static] = ACTIONS(3271), + [anon_sym_readonly] = ACTIONS(3271), + [anon_sym_get] = ACTIONS(3271), + [anon_sym_set] = ACTIONS(3271), + [anon_sym_declare] = ACTIONS(3271), + [anon_sym_public] = ACTIONS(3271), + [anon_sym_private] = ACTIONS(3271), + [anon_sym_protected] = ACTIONS(3271), + [anon_sym_override] = ACTIONS(3271), + [anon_sym_module] = ACTIONS(3271), + [anon_sym_any] = ACTIONS(3271), + [anon_sym_number] = ACTIONS(3271), + [anon_sym_boolean] = ACTIONS(3271), + [anon_sym_string] = ACTIONS(3271), + [anon_sym_symbol] = ACTIONS(3271), + [anon_sym_object] = ACTIONS(3271), + [anon_sym_abstract] = ACTIONS(3271), + [anon_sym_interface] = ACTIONS(3271), + [anon_sym_enum] = ACTIONS(3271), [sym_html_comment] = ACTIONS(5), }, - [1733] = { - [sym_comment] = STATE(1733), - [ts_builtin_sym_end] = ACTIONS(3611), - [sym_identifier] = ACTIONS(3293), - [anon_sym_export] = ACTIONS(3293), - [anon_sym_type] = ACTIONS(3293), - [anon_sym_namespace] = ACTIONS(3293), - [anon_sym_LBRACE] = ACTIONS(3293), - [anon_sym_RBRACE] = ACTIONS(3293), - [anon_sym_typeof] = ACTIONS(3293), - [anon_sym_import] = ACTIONS(3293), - [anon_sym_with] = ACTIONS(3293), - [anon_sym_var] = ACTIONS(3293), - [anon_sym_let] = ACTIONS(3293), - [anon_sym_const] = ACTIONS(3293), - [anon_sym_BANG] = ACTIONS(3293), - [anon_sym_if] = ACTIONS(3293), - [anon_sym_switch] = ACTIONS(3293), - [anon_sym_for] = ACTIONS(3293), - [anon_sym_LPAREN] = ACTIONS(3293), - [anon_sym_await] = ACTIONS(3293), - [anon_sym_while] = ACTIONS(3293), - [anon_sym_do] = ACTIONS(3293), - [anon_sym_try] = ACTIONS(3293), - [anon_sym_break] = ACTIONS(3293), - [anon_sym_continue] = ACTIONS(3293), - [anon_sym_debugger] = ACTIONS(3293), - [anon_sym_return] = ACTIONS(3293), - [anon_sym_throw] = ACTIONS(3293), - [anon_sym_SEMI] = ACTIONS(3293), - [anon_sym_yield] = ACTIONS(3293), - [anon_sym_LBRACK] = ACTIONS(3293), - [anon_sym_LTtemplate_GT] = ACTIONS(3293), - [anon_sym_DQUOTE] = ACTIONS(3293), - [anon_sym_SQUOTE] = ACTIONS(3293), - [anon_sym_class] = ACTIONS(3293), - [anon_sym_async] = ACTIONS(3293), - [anon_sym_function] = ACTIONS(3293), - [anon_sym_new] = ACTIONS(3293), - [anon_sym_using] = ACTIONS(3293), - [anon_sym_PLUS] = ACTIONS(3293), - [anon_sym_DASH] = ACTIONS(3293), - [anon_sym_SLASH] = ACTIONS(3293), - [anon_sym_LT] = ACTIONS(3293), - [anon_sym_TILDE] = ACTIONS(3293), - [anon_sym_void] = ACTIONS(3293), - [anon_sym_delete] = ACTIONS(3293), - [anon_sym_PLUS_PLUS] = ACTIONS(3293), - [anon_sym_DASH_DASH] = ACTIONS(3293), + [1592] = { + [sym_comment] = STATE(1592), + [ts_builtin_sym_end] = ACTIONS(3597), + [sym_identifier] = ACTIONS(3275), + [anon_sym_export] = ACTIONS(3275), + [anon_sym_type] = ACTIONS(3275), + [anon_sym_namespace] = ACTIONS(3275), + [anon_sym_LBRACE] = ACTIONS(3275), + [anon_sym_RBRACE] = ACTIONS(3275), + [anon_sym_typeof] = ACTIONS(3275), + [anon_sym_import] = ACTIONS(3275), + [anon_sym_with] = ACTIONS(3275), + [anon_sym_var] = ACTIONS(3275), + [anon_sym_let] = ACTIONS(3275), + [anon_sym_const] = ACTIONS(3275), + [anon_sym_BANG] = ACTIONS(3275), + [anon_sym_if] = ACTIONS(3275), + [anon_sym_switch] = ACTIONS(3275), + [anon_sym_for] = ACTIONS(3275), + [anon_sym_LPAREN] = ACTIONS(3275), + [anon_sym_await] = ACTIONS(3275), + [anon_sym_while] = ACTIONS(3275), + [anon_sym_do] = ACTIONS(3275), + [anon_sym_try] = ACTIONS(3275), + [anon_sym_break] = ACTIONS(3275), + [anon_sym_continue] = ACTIONS(3275), + [anon_sym_debugger] = ACTIONS(3275), + [anon_sym_return] = ACTIONS(3275), + [anon_sym_throw] = ACTIONS(3275), + [anon_sym_SEMI] = ACTIONS(3275), + [anon_sym_yield] = ACTIONS(3275), + [anon_sym_LBRACK] = ACTIONS(3275), + [anon_sym_LTtemplate_GT] = ACTIONS(3275), + [anon_sym_DQUOTE] = ACTIONS(3275), + [anon_sym_SQUOTE] = ACTIONS(3275), + [anon_sym_class] = ACTIONS(3275), + [anon_sym_async] = ACTIONS(3275), + [anon_sym_function] = ACTIONS(3275), + [anon_sym_new] = ACTIONS(3275), + [anon_sym_using] = ACTIONS(3275), + [anon_sym_PLUS] = ACTIONS(3275), + [anon_sym_DASH] = ACTIONS(3275), + [anon_sym_SLASH] = ACTIONS(3275), + [anon_sym_LT] = ACTIONS(3275), + [anon_sym_TILDE] = ACTIONS(3275), + [anon_sym_void] = ACTIONS(3275), + [anon_sym_delete] = ACTIONS(3275), + [anon_sym_PLUS_PLUS] = ACTIONS(3275), + [anon_sym_DASH_DASH] = ACTIONS(3275), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3293), - [sym_number] = ACTIONS(3293), - [sym_private_property_identifier] = ACTIONS(3293), - [sym_this] = ACTIONS(3293), - [sym_super] = ACTIONS(3293), - [sym_true] = ACTIONS(3293), - [sym_false] = ACTIONS(3293), - [sym_null] = ACTIONS(3293), - [sym_undefined] = ACTIONS(3293), - [anon_sym_AT] = ACTIONS(3293), - [anon_sym_static] = ACTIONS(3293), - [anon_sym_readonly] = ACTIONS(3293), - [anon_sym_get] = ACTIONS(3293), - [anon_sym_set] = ACTIONS(3293), - [anon_sym_declare] = ACTIONS(3293), - [anon_sym_public] = ACTIONS(3293), - [anon_sym_private] = ACTIONS(3293), - [anon_sym_protected] = ACTIONS(3293), - [anon_sym_override] = ACTIONS(3293), - [anon_sym_module] = ACTIONS(3293), - [anon_sym_any] = ACTIONS(3293), - [anon_sym_number] = ACTIONS(3293), - [anon_sym_boolean] = ACTIONS(3293), - [anon_sym_string] = ACTIONS(3293), - [anon_sym_symbol] = ACTIONS(3293), - [anon_sym_object] = ACTIONS(3293), - [anon_sym_abstract] = ACTIONS(3293), - [anon_sym_interface] = ACTIONS(3293), - [anon_sym_enum] = ACTIONS(3293), + [anon_sym_BQUOTE] = ACTIONS(3275), + [sym_number] = ACTIONS(3275), + [sym_private_property_identifier] = ACTIONS(3275), + [sym_this] = ACTIONS(3275), + [sym_super] = ACTIONS(3275), + [sym_true] = ACTIONS(3275), + [sym_false] = ACTIONS(3275), + [sym_null] = ACTIONS(3275), + [sym_undefined] = ACTIONS(3275), + [anon_sym_AT] = ACTIONS(3275), + [anon_sym_static] = ACTIONS(3275), + [anon_sym_readonly] = ACTIONS(3275), + [anon_sym_get] = ACTIONS(3275), + [anon_sym_set] = ACTIONS(3275), + [anon_sym_declare] = ACTIONS(3275), + [anon_sym_public] = ACTIONS(3275), + [anon_sym_private] = ACTIONS(3275), + [anon_sym_protected] = ACTIONS(3275), + [anon_sym_override] = ACTIONS(3275), + [anon_sym_module] = ACTIONS(3275), + [anon_sym_any] = ACTIONS(3275), + [anon_sym_number] = ACTIONS(3275), + [anon_sym_boolean] = ACTIONS(3275), + [anon_sym_string] = ACTIONS(3275), + [anon_sym_symbol] = ACTIONS(3275), + [anon_sym_object] = ACTIONS(3275), + [anon_sym_abstract] = ACTIONS(3275), + [anon_sym_interface] = ACTIONS(3275), + [anon_sym_enum] = ACTIONS(3275), [sym_html_comment] = ACTIONS(5), }, - [1734] = { - [sym_comment] = STATE(1734), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [1593] = { + [sym_comment] = STATE(1593), + [ts_builtin_sym_end] = ACTIONS(3623), + [sym_identifier] = ACTIONS(3237), + [anon_sym_export] = ACTIONS(3237), + [anon_sym_type] = ACTIONS(3237), + [anon_sym_namespace] = ACTIONS(3237), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_RBRACE] = ACTIONS(3237), + [anon_sym_typeof] = ACTIONS(3237), + [anon_sym_import] = ACTIONS(3237), + [anon_sym_with] = ACTIONS(3237), + [anon_sym_var] = ACTIONS(3237), + [anon_sym_let] = ACTIONS(3237), + [anon_sym_const] = ACTIONS(3237), + [anon_sym_BANG] = ACTIONS(3237), + [anon_sym_if] = ACTIONS(3237), + [anon_sym_switch] = ACTIONS(3237), + [anon_sym_for] = ACTIONS(3237), + [anon_sym_LPAREN] = ACTIONS(3237), + [anon_sym_await] = ACTIONS(3237), + [anon_sym_while] = ACTIONS(3237), + [anon_sym_do] = ACTIONS(3237), + [anon_sym_try] = ACTIONS(3237), + [anon_sym_break] = ACTIONS(3237), + [anon_sym_continue] = ACTIONS(3237), + [anon_sym_debugger] = ACTIONS(3237), + [anon_sym_return] = ACTIONS(3237), + [anon_sym_throw] = ACTIONS(3237), + [anon_sym_SEMI] = ACTIONS(3237), + [anon_sym_yield] = ACTIONS(3237), + [anon_sym_LBRACK] = ACTIONS(3237), + [anon_sym_LTtemplate_GT] = ACTIONS(3237), + [anon_sym_DQUOTE] = ACTIONS(3237), + [anon_sym_SQUOTE] = ACTIONS(3237), + [anon_sym_class] = ACTIONS(3237), + [anon_sym_async] = ACTIONS(3237), + [anon_sym_function] = ACTIONS(3237), + [anon_sym_new] = ACTIONS(3237), + [anon_sym_using] = ACTIONS(3237), + [anon_sym_PLUS] = ACTIONS(3237), + [anon_sym_DASH] = ACTIONS(3237), + [anon_sym_SLASH] = ACTIONS(3237), + [anon_sym_LT] = ACTIONS(3237), + [anon_sym_TILDE] = ACTIONS(3237), + [anon_sym_void] = ACTIONS(3237), + [anon_sym_delete] = ACTIONS(3237), + [anon_sym_PLUS_PLUS] = ACTIONS(3237), + [anon_sym_DASH_DASH] = ACTIONS(3237), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3237), + [sym_number] = ACTIONS(3237), + [sym_private_property_identifier] = ACTIONS(3237), + [sym_this] = ACTIONS(3237), + [sym_super] = ACTIONS(3237), + [sym_true] = ACTIONS(3237), + [sym_false] = ACTIONS(3237), + [sym_null] = ACTIONS(3237), + [sym_undefined] = ACTIONS(3237), + [anon_sym_AT] = ACTIONS(3237), + [anon_sym_static] = ACTIONS(3237), + [anon_sym_readonly] = ACTIONS(3237), + [anon_sym_get] = ACTIONS(3237), + [anon_sym_set] = ACTIONS(3237), + [anon_sym_declare] = ACTIONS(3237), + [anon_sym_public] = ACTIONS(3237), + [anon_sym_private] = ACTIONS(3237), + [anon_sym_protected] = ACTIONS(3237), + [anon_sym_override] = ACTIONS(3237), + [anon_sym_module] = ACTIONS(3237), + [anon_sym_any] = ACTIONS(3237), + [anon_sym_number] = ACTIONS(3237), + [anon_sym_boolean] = ACTIONS(3237), + [anon_sym_string] = ACTIONS(3237), + [anon_sym_symbol] = ACTIONS(3237), + [anon_sym_object] = ACTIONS(3237), + [anon_sym_abstract] = ACTIONS(3237), + [anon_sym_interface] = ACTIONS(3237), + [anon_sym_enum] = ACTIONS(3237), [sym_html_comment] = ACTIONS(5), }, - [1735] = { - [sym_comment] = STATE(1735), - [ts_builtin_sym_end] = ACTIONS(3519), - [sym_identifier] = ACTIONS(3451), - [anon_sym_export] = ACTIONS(3451), - [anon_sym_type] = ACTIONS(3451), - [anon_sym_namespace] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3451), - [anon_sym_typeof] = ACTIONS(3451), - [anon_sym_import] = ACTIONS(3451), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_var] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_const] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_switch] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_await] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_break] = ACTIONS(3451), - [anon_sym_continue] = ACTIONS(3451), - [anon_sym_debugger] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_throw] = ACTIONS(3451), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LTtemplate_GT] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_class] = ACTIONS(3451), - [anon_sym_async] = ACTIONS(3451), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_using] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_SLASH] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_void] = ACTIONS(3451), - [anon_sym_delete] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_DASH_DASH] = ACTIONS(3451), + [1594] = { + [sym_comment] = STATE(1594), + [ts_builtin_sym_end] = ACTIONS(3595), + [sym_identifier] = ACTIONS(3277), + [anon_sym_export] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_namespace] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_typeof] = ACTIONS(3277), + [anon_sym_import] = ACTIONS(3277), + [anon_sym_with] = ACTIONS(3277), + [anon_sym_var] = ACTIONS(3277), + [anon_sym_let] = ACTIONS(3277), + [anon_sym_const] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_switch] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_await] = ACTIONS(3277), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_do] = ACTIONS(3277), + [anon_sym_try] = ACTIONS(3277), + [anon_sym_break] = ACTIONS(3277), + [anon_sym_continue] = ACTIONS(3277), + [anon_sym_debugger] = ACTIONS(3277), + [anon_sym_return] = ACTIONS(3277), + [anon_sym_throw] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_yield] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_LTtemplate_GT] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(3277), + [anon_sym_SQUOTE] = ACTIONS(3277), + [anon_sym_class] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_function] = ACTIONS(3277), + [anon_sym_new] = ACTIONS(3277), + [anon_sym_using] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_void] = ACTIONS(3277), + [anon_sym_delete] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3451), - [sym_number] = ACTIONS(3451), - [sym_private_property_identifier] = ACTIONS(3451), - [sym_this] = ACTIONS(3451), - [sym_super] = ACTIONS(3451), - [sym_true] = ACTIONS(3451), - [sym_false] = ACTIONS(3451), - [sym_null] = ACTIONS(3451), - [sym_undefined] = ACTIONS(3451), - [anon_sym_AT] = ACTIONS(3451), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3451), - [anon_sym_get] = ACTIONS(3451), - [anon_sym_set] = ACTIONS(3451), - [anon_sym_declare] = ACTIONS(3451), - [anon_sym_public] = ACTIONS(3451), - [anon_sym_private] = ACTIONS(3451), - [anon_sym_protected] = ACTIONS(3451), - [anon_sym_override] = ACTIONS(3451), - [anon_sym_module] = ACTIONS(3451), - [anon_sym_any] = ACTIONS(3451), - [anon_sym_number] = ACTIONS(3451), - [anon_sym_boolean] = ACTIONS(3451), - [anon_sym_string] = ACTIONS(3451), - [anon_sym_symbol] = ACTIONS(3451), - [anon_sym_object] = ACTIONS(3451), - [anon_sym_abstract] = ACTIONS(3451), - [anon_sym_interface] = ACTIONS(3451), - [anon_sym_enum] = ACTIONS(3451), + [anon_sym_BQUOTE] = ACTIONS(3277), + [sym_number] = ACTIONS(3277), + [sym_private_property_identifier] = ACTIONS(3277), + [sym_this] = ACTIONS(3277), + [sym_super] = ACTIONS(3277), + [sym_true] = ACTIONS(3277), + [sym_false] = ACTIONS(3277), + [sym_null] = ACTIONS(3277), + [sym_undefined] = ACTIONS(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_static] = ACTIONS(3277), + [anon_sym_readonly] = ACTIONS(3277), + [anon_sym_get] = ACTIONS(3277), + [anon_sym_set] = ACTIONS(3277), + [anon_sym_declare] = ACTIONS(3277), + [anon_sym_public] = ACTIONS(3277), + [anon_sym_private] = ACTIONS(3277), + [anon_sym_protected] = ACTIONS(3277), + [anon_sym_override] = ACTIONS(3277), + [anon_sym_module] = ACTIONS(3277), + [anon_sym_any] = ACTIONS(3277), + [anon_sym_number] = ACTIONS(3277), + [anon_sym_boolean] = ACTIONS(3277), + [anon_sym_string] = ACTIONS(3277), + [anon_sym_symbol] = ACTIONS(3277), + [anon_sym_object] = ACTIONS(3277), + [anon_sym_abstract] = ACTIONS(3277), + [anon_sym_interface] = ACTIONS(3277), + [anon_sym_enum] = ACTIONS(3277), [sym_html_comment] = ACTIONS(5), }, - [1736] = { - [sym_comment] = STATE(1736), - [ts_builtin_sym_end] = ACTIONS(3601), + [1595] = { + [sym_comment] = STATE(1595), + [ts_builtin_sym_end] = ACTIONS(3507), [sym_identifier] = ACTIONS(3291), [anon_sym_export] = ACTIONS(3291), [anon_sym_type] = ACTIONS(3291), @@ -204880,1386 +193029,1062 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3291), [sym_html_comment] = ACTIONS(5), }, - [1737] = { - [sym_comment] = STATE(1737), - [ts_builtin_sym_end] = ACTIONS(3519), - [sym_identifier] = ACTIONS(3451), - [anon_sym_export] = ACTIONS(3451), - [anon_sym_type] = ACTIONS(3451), - [anon_sym_namespace] = ACTIONS(3451), - [anon_sym_LBRACE] = ACTIONS(3451), - [anon_sym_RBRACE] = ACTIONS(3451), - [anon_sym_typeof] = ACTIONS(3451), - [anon_sym_import] = ACTIONS(3451), - [anon_sym_with] = ACTIONS(3451), - [anon_sym_var] = ACTIONS(3451), - [anon_sym_let] = ACTIONS(3451), - [anon_sym_const] = ACTIONS(3451), - [anon_sym_BANG] = ACTIONS(3451), - [anon_sym_if] = ACTIONS(3451), - [anon_sym_switch] = ACTIONS(3451), - [anon_sym_for] = ACTIONS(3451), - [anon_sym_LPAREN] = ACTIONS(3451), - [anon_sym_await] = ACTIONS(3451), - [anon_sym_while] = ACTIONS(3451), - [anon_sym_do] = ACTIONS(3451), - [anon_sym_try] = ACTIONS(3451), - [anon_sym_break] = ACTIONS(3451), - [anon_sym_continue] = ACTIONS(3451), - [anon_sym_debugger] = ACTIONS(3451), - [anon_sym_return] = ACTIONS(3451), - [anon_sym_throw] = ACTIONS(3451), - [anon_sym_SEMI] = ACTIONS(3451), - [anon_sym_yield] = ACTIONS(3451), - [anon_sym_LBRACK] = ACTIONS(3451), - [anon_sym_LTtemplate_GT] = ACTIONS(3451), - [anon_sym_DQUOTE] = ACTIONS(3451), - [anon_sym_SQUOTE] = ACTIONS(3451), - [anon_sym_class] = ACTIONS(3451), - [anon_sym_async] = ACTIONS(3451), - [anon_sym_function] = ACTIONS(3451), - [anon_sym_new] = ACTIONS(3451), - [anon_sym_using] = ACTIONS(3451), - [anon_sym_PLUS] = ACTIONS(3451), - [anon_sym_DASH] = ACTIONS(3451), - [anon_sym_SLASH] = ACTIONS(3451), - [anon_sym_LT] = ACTIONS(3451), - [anon_sym_TILDE] = ACTIONS(3451), - [anon_sym_void] = ACTIONS(3451), - [anon_sym_delete] = ACTIONS(3451), - [anon_sym_PLUS_PLUS] = ACTIONS(3451), - [anon_sym_DASH_DASH] = ACTIONS(3451), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3451), - [sym_number] = ACTIONS(3451), - [sym_private_property_identifier] = ACTIONS(3451), - [sym_this] = ACTIONS(3451), - [sym_super] = ACTIONS(3451), - [sym_true] = ACTIONS(3451), - [sym_false] = ACTIONS(3451), - [sym_null] = ACTIONS(3451), - [sym_undefined] = ACTIONS(3451), - [anon_sym_AT] = ACTIONS(3451), - [anon_sym_static] = ACTIONS(3451), - [anon_sym_readonly] = ACTIONS(3451), - [anon_sym_get] = ACTIONS(3451), - [anon_sym_set] = ACTIONS(3451), - [anon_sym_declare] = ACTIONS(3451), - [anon_sym_public] = ACTIONS(3451), - [anon_sym_private] = ACTIONS(3451), - [anon_sym_protected] = ACTIONS(3451), - [anon_sym_override] = ACTIONS(3451), - [anon_sym_module] = ACTIONS(3451), - [anon_sym_any] = ACTIONS(3451), - [anon_sym_number] = ACTIONS(3451), - [anon_sym_boolean] = ACTIONS(3451), - [anon_sym_string] = ACTIONS(3451), - [anon_sym_symbol] = ACTIONS(3451), - [anon_sym_object] = ACTIONS(3451), - [anon_sym_abstract] = ACTIONS(3451), - [anon_sym_interface] = ACTIONS(3451), - [anon_sym_enum] = ACTIONS(3451), - [sym_html_comment] = ACTIONS(5), - }, - [1738] = { - [sym_comment] = STATE(1738), - [ts_builtin_sym_end] = ACTIONS(3599), - [sym_identifier] = ACTIONS(3289), - [anon_sym_export] = ACTIONS(3289), - [anon_sym_type] = ACTIONS(3289), - [anon_sym_namespace] = ACTIONS(3289), - [anon_sym_LBRACE] = ACTIONS(3289), - [anon_sym_RBRACE] = ACTIONS(3289), - [anon_sym_typeof] = ACTIONS(3289), - [anon_sym_import] = ACTIONS(3289), - [anon_sym_with] = ACTIONS(3289), - [anon_sym_var] = ACTIONS(3289), - [anon_sym_let] = ACTIONS(3289), - [anon_sym_const] = ACTIONS(3289), - [anon_sym_BANG] = ACTIONS(3289), - [anon_sym_if] = ACTIONS(3289), - [anon_sym_switch] = ACTIONS(3289), - [anon_sym_for] = ACTIONS(3289), - [anon_sym_LPAREN] = ACTIONS(3289), - [anon_sym_await] = ACTIONS(3289), - [anon_sym_while] = ACTIONS(3289), - [anon_sym_do] = ACTIONS(3289), - [anon_sym_try] = ACTIONS(3289), - [anon_sym_break] = ACTIONS(3289), - [anon_sym_continue] = ACTIONS(3289), - [anon_sym_debugger] = ACTIONS(3289), - [anon_sym_return] = ACTIONS(3289), - [anon_sym_throw] = ACTIONS(3289), - [anon_sym_SEMI] = ACTIONS(3289), - [anon_sym_yield] = ACTIONS(3289), - [anon_sym_LBRACK] = ACTIONS(3289), - [anon_sym_LTtemplate_GT] = ACTIONS(3289), - [anon_sym_DQUOTE] = ACTIONS(3289), - [anon_sym_SQUOTE] = ACTIONS(3289), - [anon_sym_class] = ACTIONS(3289), - [anon_sym_async] = ACTIONS(3289), - [anon_sym_function] = ACTIONS(3289), - [anon_sym_new] = ACTIONS(3289), - [anon_sym_using] = ACTIONS(3289), - [anon_sym_PLUS] = ACTIONS(3289), - [anon_sym_DASH] = ACTIONS(3289), - [anon_sym_SLASH] = ACTIONS(3289), - [anon_sym_LT] = ACTIONS(3289), - [anon_sym_TILDE] = ACTIONS(3289), - [anon_sym_void] = ACTIONS(3289), - [anon_sym_delete] = ACTIONS(3289), - [anon_sym_PLUS_PLUS] = ACTIONS(3289), - [anon_sym_DASH_DASH] = ACTIONS(3289), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3289), - [sym_number] = ACTIONS(3289), - [sym_private_property_identifier] = ACTIONS(3289), - [sym_this] = ACTIONS(3289), - [sym_super] = ACTIONS(3289), - [sym_true] = ACTIONS(3289), - [sym_false] = ACTIONS(3289), - [sym_null] = ACTIONS(3289), - [sym_undefined] = ACTIONS(3289), - [anon_sym_AT] = ACTIONS(3289), - [anon_sym_static] = ACTIONS(3289), - [anon_sym_readonly] = ACTIONS(3289), - [anon_sym_get] = ACTIONS(3289), - [anon_sym_set] = ACTIONS(3289), - [anon_sym_declare] = ACTIONS(3289), - [anon_sym_public] = ACTIONS(3289), - [anon_sym_private] = ACTIONS(3289), - [anon_sym_protected] = ACTIONS(3289), - [anon_sym_override] = ACTIONS(3289), - [anon_sym_module] = ACTIONS(3289), - [anon_sym_any] = ACTIONS(3289), - [anon_sym_number] = ACTIONS(3289), - [anon_sym_boolean] = ACTIONS(3289), - [anon_sym_string] = ACTIONS(3289), - [anon_sym_symbol] = ACTIONS(3289), - [anon_sym_object] = ACTIONS(3289), - [anon_sym_abstract] = ACTIONS(3289), - [anon_sym_interface] = ACTIONS(3289), - [anon_sym_enum] = ACTIONS(3289), - [sym_html_comment] = ACTIONS(5), - }, - [1739] = { - [sym_comment] = STATE(1739), - [ts_builtin_sym_end] = ACTIONS(3483), - [sym_identifier] = ACTIONS(3441), - [anon_sym_export] = ACTIONS(3441), - [anon_sym_type] = ACTIONS(3441), - [anon_sym_namespace] = ACTIONS(3441), - [anon_sym_LBRACE] = ACTIONS(3441), - [anon_sym_RBRACE] = ACTIONS(3441), - [anon_sym_typeof] = ACTIONS(3441), - [anon_sym_import] = ACTIONS(3441), - [anon_sym_with] = ACTIONS(3441), - [anon_sym_var] = ACTIONS(3441), - [anon_sym_let] = ACTIONS(3441), - [anon_sym_const] = ACTIONS(3441), - [anon_sym_BANG] = ACTIONS(3441), - [anon_sym_if] = ACTIONS(3441), - [anon_sym_switch] = ACTIONS(3441), - [anon_sym_for] = ACTIONS(3441), - [anon_sym_LPAREN] = ACTIONS(3441), - [anon_sym_await] = ACTIONS(3441), - [anon_sym_while] = ACTIONS(3441), - [anon_sym_do] = ACTIONS(3441), - [anon_sym_try] = ACTIONS(3441), - [anon_sym_break] = ACTIONS(3441), - [anon_sym_continue] = ACTIONS(3441), - [anon_sym_debugger] = ACTIONS(3441), - [anon_sym_return] = ACTIONS(3441), - [anon_sym_throw] = ACTIONS(3441), - [anon_sym_SEMI] = ACTIONS(3441), - [anon_sym_yield] = ACTIONS(3441), - [anon_sym_LBRACK] = ACTIONS(3441), - [anon_sym_LTtemplate_GT] = ACTIONS(3441), - [anon_sym_DQUOTE] = ACTIONS(3441), - [anon_sym_SQUOTE] = ACTIONS(3441), - [anon_sym_class] = ACTIONS(3441), - [anon_sym_async] = ACTIONS(3441), - [anon_sym_function] = ACTIONS(3441), - [anon_sym_new] = ACTIONS(3441), - [anon_sym_using] = ACTIONS(3441), - [anon_sym_PLUS] = ACTIONS(3441), - [anon_sym_DASH] = ACTIONS(3441), - [anon_sym_SLASH] = ACTIONS(3441), - [anon_sym_LT] = ACTIONS(3441), - [anon_sym_TILDE] = ACTIONS(3441), - [anon_sym_void] = ACTIONS(3441), - [anon_sym_delete] = ACTIONS(3441), - [anon_sym_PLUS_PLUS] = ACTIONS(3441), - [anon_sym_DASH_DASH] = ACTIONS(3441), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3441), - [sym_number] = ACTIONS(3441), - [sym_private_property_identifier] = ACTIONS(3441), - [sym_this] = ACTIONS(3441), - [sym_super] = ACTIONS(3441), - [sym_true] = ACTIONS(3441), - [sym_false] = ACTIONS(3441), - [sym_null] = ACTIONS(3441), - [sym_undefined] = ACTIONS(3441), - [anon_sym_AT] = ACTIONS(3441), - [anon_sym_static] = ACTIONS(3441), - [anon_sym_readonly] = ACTIONS(3441), - [anon_sym_get] = ACTIONS(3441), - [anon_sym_set] = ACTIONS(3441), - [anon_sym_declare] = ACTIONS(3441), - [anon_sym_public] = ACTIONS(3441), - [anon_sym_private] = ACTIONS(3441), - [anon_sym_protected] = ACTIONS(3441), - [anon_sym_override] = ACTIONS(3441), - [anon_sym_module] = ACTIONS(3441), - [anon_sym_any] = ACTIONS(3441), - [anon_sym_number] = ACTIONS(3441), - [anon_sym_boolean] = ACTIONS(3441), - [anon_sym_string] = ACTIONS(3441), - [anon_sym_symbol] = ACTIONS(3441), - [anon_sym_object] = ACTIONS(3441), - [anon_sym_abstract] = ACTIONS(3441), - [anon_sym_interface] = ACTIONS(3441), - [anon_sym_enum] = ACTIONS(3441), - [sym_html_comment] = ACTIONS(5), - }, - [1740] = { - [sym_comment] = STATE(1740), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1741] = { - [sym_comment] = STATE(1741), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), - [sym_html_comment] = ACTIONS(5), - }, - [1742] = { - [sym_comment] = STATE(1742), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1743] = { - [sym_comment] = STATE(1743), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1596] = { + [sym_comment] = STATE(1596), + [ts_builtin_sym_end] = ACTIONS(3595), + [sym_identifier] = ACTIONS(3277), + [anon_sym_export] = ACTIONS(3277), + [anon_sym_type] = ACTIONS(3277), + [anon_sym_namespace] = ACTIONS(3277), + [anon_sym_LBRACE] = ACTIONS(3277), + [anon_sym_RBRACE] = ACTIONS(3277), + [anon_sym_typeof] = ACTIONS(3277), + [anon_sym_import] = ACTIONS(3277), + [anon_sym_with] = ACTIONS(3277), + [anon_sym_var] = ACTIONS(3277), + [anon_sym_let] = ACTIONS(3277), + [anon_sym_const] = ACTIONS(3277), + [anon_sym_BANG] = ACTIONS(3277), + [anon_sym_if] = ACTIONS(3277), + [anon_sym_switch] = ACTIONS(3277), + [anon_sym_for] = ACTIONS(3277), + [anon_sym_LPAREN] = ACTIONS(3277), + [anon_sym_await] = ACTIONS(3277), + [anon_sym_while] = ACTIONS(3277), + [anon_sym_do] = ACTIONS(3277), + [anon_sym_try] = ACTIONS(3277), + [anon_sym_break] = ACTIONS(3277), + [anon_sym_continue] = ACTIONS(3277), + [anon_sym_debugger] = ACTIONS(3277), + [anon_sym_return] = ACTIONS(3277), + [anon_sym_throw] = ACTIONS(3277), + [anon_sym_SEMI] = ACTIONS(3277), + [anon_sym_yield] = ACTIONS(3277), + [anon_sym_LBRACK] = ACTIONS(3277), + [anon_sym_LTtemplate_GT] = ACTIONS(3277), + [anon_sym_DQUOTE] = ACTIONS(3277), + [anon_sym_SQUOTE] = ACTIONS(3277), + [anon_sym_class] = ACTIONS(3277), + [anon_sym_async] = ACTIONS(3277), + [anon_sym_function] = ACTIONS(3277), + [anon_sym_new] = ACTIONS(3277), + [anon_sym_using] = ACTIONS(3277), + [anon_sym_PLUS] = ACTIONS(3277), + [anon_sym_DASH] = ACTIONS(3277), + [anon_sym_SLASH] = ACTIONS(3277), + [anon_sym_LT] = ACTIONS(3277), + [anon_sym_TILDE] = ACTIONS(3277), + [anon_sym_void] = ACTIONS(3277), + [anon_sym_delete] = ACTIONS(3277), + [anon_sym_PLUS_PLUS] = ACTIONS(3277), + [anon_sym_DASH_DASH] = ACTIONS(3277), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3277), + [sym_number] = ACTIONS(3277), + [sym_private_property_identifier] = ACTIONS(3277), + [sym_this] = ACTIONS(3277), + [sym_super] = ACTIONS(3277), + [sym_true] = ACTIONS(3277), + [sym_false] = ACTIONS(3277), + [sym_null] = ACTIONS(3277), + [sym_undefined] = ACTIONS(3277), + [anon_sym_AT] = ACTIONS(3277), + [anon_sym_static] = ACTIONS(3277), + [anon_sym_readonly] = ACTIONS(3277), + [anon_sym_get] = ACTIONS(3277), + [anon_sym_set] = ACTIONS(3277), + [anon_sym_declare] = ACTIONS(3277), + [anon_sym_public] = ACTIONS(3277), + [anon_sym_private] = ACTIONS(3277), + [anon_sym_protected] = ACTIONS(3277), + [anon_sym_override] = ACTIONS(3277), + [anon_sym_module] = ACTIONS(3277), + [anon_sym_any] = ACTIONS(3277), + [anon_sym_number] = ACTIONS(3277), + [anon_sym_boolean] = ACTIONS(3277), + [anon_sym_string] = ACTIONS(3277), + [anon_sym_symbol] = ACTIONS(3277), + [anon_sym_object] = ACTIONS(3277), + [anon_sym_abstract] = ACTIONS(3277), + [anon_sym_interface] = ACTIONS(3277), + [anon_sym_enum] = ACTIONS(3277), [sym_html_comment] = ACTIONS(5), }, - [1744] = { - [sym_comment] = STATE(1744), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1597] = { + [sym_comment] = STATE(1597), + [ts_builtin_sym_end] = ACTIONS(3549), + [sym_identifier] = ACTIONS(3363), + [anon_sym_export] = ACTIONS(3363), + [anon_sym_type] = ACTIONS(3363), + [anon_sym_namespace] = ACTIONS(3363), + [anon_sym_LBRACE] = ACTIONS(3363), + [anon_sym_RBRACE] = ACTIONS(3363), + [anon_sym_typeof] = ACTIONS(3363), + [anon_sym_import] = ACTIONS(3363), + [anon_sym_with] = ACTIONS(3363), + [anon_sym_var] = ACTIONS(3363), + [anon_sym_let] = ACTIONS(3363), + [anon_sym_const] = ACTIONS(3363), + [anon_sym_BANG] = ACTIONS(3363), + [anon_sym_if] = ACTIONS(3363), + [anon_sym_switch] = ACTIONS(3363), + [anon_sym_for] = ACTIONS(3363), + [anon_sym_LPAREN] = ACTIONS(3363), + [anon_sym_await] = ACTIONS(3363), + [anon_sym_while] = ACTIONS(3363), + [anon_sym_do] = ACTIONS(3363), + [anon_sym_try] = ACTIONS(3363), + [anon_sym_break] = ACTIONS(3363), + [anon_sym_continue] = ACTIONS(3363), + [anon_sym_debugger] = ACTIONS(3363), + [anon_sym_return] = ACTIONS(3363), + [anon_sym_throw] = ACTIONS(3363), + [anon_sym_SEMI] = ACTIONS(3363), + [anon_sym_yield] = ACTIONS(3363), + [anon_sym_LBRACK] = ACTIONS(3363), + [anon_sym_LTtemplate_GT] = ACTIONS(3363), + [anon_sym_DQUOTE] = ACTIONS(3363), + [anon_sym_SQUOTE] = ACTIONS(3363), + [anon_sym_class] = ACTIONS(3363), + [anon_sym_async] = ACTIONS(3363), + [anon_sym_function] = ACTIONS(3363), + [anon_sym_new] = ACTIONS(3363), + [anon_sym_using] = ACTIONS(3363), + [anon_sym_PLUS] = ACTIONS(3363), + [anon_sym_DASH] = ACTIONS(3363), + [anon_sym_SLASH] = ACTIONS(3363), + [anon_sym_LT] = ACTIONS(3363), + [anon_sym_TILDE] = ACTIONS(3363), + [anon_sym_void] = ACTIONS(3363), + [anon_sym_delete] = ACTIONS(3363), + [anon_sym_PLUS_PLUS] = ACTIONS(3363), + [anon_sym_DASH_DASH] = ACTIONS(3363), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3363), + [sym_number] = ACTIONS(3363), + [sym_private_property_identifier] = ACTIONS(3363), + [sym_this] = ACTIONS(3363), + [sym_super] = ACTIONS(3363), + [sym_true] = ACTIONS(3363), + [sym_false] = ACTIONS(3363), + [sym_null] = ACTIONS(3363), + [sym_undefined] = ACTIONS(3363), + [anon_sym_AT] = ACTIONS(3363), + [anon_sym_static] = ACTIONS(3363), + [anon_sym_readonly] = ACTIONS(3363), + [anon_sym_get] = ACTIONS(3363), + [anon_sym_set] = ACTIONS(3363), + [anon_sym_declare] = ACTIONS(3363), + [anon_sym_public] = ACTIONS(3363), + [anon_sym_private] = ACTIONS(3363), + [anon_sym_protected] = ACTIONS(3363), + [anon_sym_override] = ACTIONS(3363), + [anon_sym_module] = ACTIONS(3363), + [anon_sym_any] = ACTIONS(3363), + [anon_sym_number] = ACTIONS(3363), + [anon_sym_boolean] = ACTIONS(3363), + [anon_sym_string] = ACTIONS(3363), + [anon_sym_symbol] = ACTIONS(3363), + [anon_sym_object] = ACTIONS(3363), + [anon_sym_abstract] = ACTIONS(3363), + [anon_sym_interface] = ACTIONS(3363), + [anon_sym_enum] = ACTIONS(3363), [sym_html_comment] = ACTIONS(5), }, - [1745] = { - [sym_comment] = STATE(1745), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [1598] = { + [sym_comment] = STATE(1598), + [ts_builtin_sym_end] = ACTIONS(3547), + [sym_identifier] = ACTIONS(3365), + [anon_sym_export] = ACTIONS(3365), + [anon_sym_type] = ACTIONS(3365), + [anon_sym_namespace] = ACTIONS(3365), + [anon_sym_LBRACE] = ACTIONS(3365), + [anon_sym_RBRACE] = ACTIONS(3365), + [anon_sym_typeof] = ACTIONS(3365), + [anon_sym_import] = ACTIONS(3365), + [anon_sym_with] = ACTIONS(3365), + [anon_sym_var] = ACTIONS(3365), + [anon_sym_let] = ACTIONS(3365), + [anon_sym_const] = ACTIONS(3365), + [anon_sym_BANG] = ACTIONS(3365), + [anon_sym_if] = ACTIONS(3365), + [anon_sym_switch] = ACTIONS(3365), + [anon_sym_for] = ACTIONS(3365), + [anon_sym_LPAREN] = ACTIONS(3365), + [anon_sym_await] = ACTIONS(3365), + [anon_sym_while] = ACTIONS(3365), + [anon_sym_do] = ACTIONS(3365), + [anon_sym_try] = ACTIONS(3365), + [anon_sym_break] = ACTIONS(3365), + [anon_sym_continue] = ACTIONS(3365), + [anon_sym_debugger] = ACTIONS(3365), + [anon_sym_return] = ACTIONS(3365), + [anon_sym_throw] = ACTIONS(3365), + [anon_sym_SEMI] = ACTIONS(3365), + [anon_sym_yield] = ACTIONS(3365), + [anon_sym_LBRACK] = ACTIONS(3365), + [anon_sym_LTtemplate_GT] = ACTIONS(3365), + [anon_sym_DQUOTE] = ACTIONS(3365), + [anon_sym_SQUOTE] = ACTIONS(3365), + [anon_sym_class] = ACTIONS(3365), + [anon_sym_async] = ACTIONS(3365), + [anon_sym_function] = ACTIONS(3365), + [anon_sym_new] = ACTIONS(3365), + [anon_sym_using] = ACTIONS(3365), + [anon_sym_PLUS] = ACTIONS(3365), + [anon_sym_DASH] = ACTIONS(3365), + [anon_sym_SLASH] = ACTIONS(3365), + [anon_sym_LT] = ACTIONS(3365), + [anon_sym_TILDE] = ACTIONS(3365), + [anon_sym_void] = ACTIONS(3365), + [anon_sym_delete] = ACTIONS(3365), + [anon_sym_PLUS_PLUS] = ACTIONS(3365), + [anon_sym_DASH_DASH] = ACTIONS(3365), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3365), + [sym_number] = ACTIONS(3365), + [sym_private_property_identifier] = ACTIONS(3365), + [sym_this] = ACTIONS(3365), + [sym_super] = ACTIONS(3365), + [sym_true] = ACTIONS(3365), + [sym_false] = ACTIONS(3365), + [sym_null] = ACTIONS(3365), + [sym_undefined] = ACTIONS(3365), + [anon_sym_AT] = ACTIONS(3365), + [anon_sym_static] = ACTIONS(3365), + [anon_sym_readonly] = ACTIONS(3365), + [anon_sym_get] = ACTIONS(3365), + [anon_sym_set] = ACTIONS(3365), + [anon_sym_declare] = ACTIONS(3365), + [anon_sym_public] = ACTIONS(3365), + [anon_sym_private] = ACTIONS(3365), + [anon_sym_protected] = ACTIONS(3365), + [anon_sym_override] = ACTIONS(3365), + [anon_sym_module] = ACTIONS(3365), + [anon_sym_any] = ACTIONS(3365), + [anon_sym_number] = ACTIONS(3365), + [anon_sym_boolean] = ACTIONS(3365), + [anon_sym_string] = ACTIONS(3365), + [anon_sym_symbol] = ACTIONS(3365), + [anon_sym_object] = ACTIONS(3365), + [anon_sym_abstract] = ACTIONS(3365), + [anon_sym_interface] = ACTIONS(3365), + [anon_sym_enum] = ACTIONS(3365), [sym_html_comment] = ACTIONS(5), }, - [1746] = { - [sym_comment] = STATE(1746), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1599] = { + [sym_comment] = STATE(1599), + [ts_builtin_sym_end] = ACTIONS(3659), + [sym_identifier] = ACTIONS(3433), + [anon_sym_export] = ACTIONS(3433), + [anon_sym_type] = ACTIONS(3433), + [anon_sym_namespace] = ACTIONS(3433), + [anon_sym_LBRACE] = ACTIONS(3433), + [anon_sym_RBRACE] = ACTIONS(3433), + [anon_sym_typeof] = ACTIONS(3433), + [anon_sym_import] = ACTIONS(3433), + [anon_sym_with] = ACTIONS(3433), + [anon_sym_var] = ACTIONS(3433), + [anon_sym_let] = ACTIONS(3433), + [anon_sym_const] = ACTIONS(3433), + [anon_sym_BANG] = ACTIONS(3433), + [anon_sym_if] = ACTIONS(3433), + [anon_sym_switch] = ACTIONS(3433), + [anon_sym_for] = ACTIONS(3433), + [anon_sym_LPAREN] = ACTIONS(3433), + [anon_sym_await] = ACTIONS(3433), + [anon_sym_while] = ACTIONS(3433), + [anon_sym_do] = ACTIONS(3433), + [anon_sym_try] = ACTIONS(3433), + [anon_sym_break] = ACTIONS(3433), + [anon_sym_continue] = ACTIONS(3433), + [anon_sym_debugger] = ACTIONS(3433), + [anon_sym_return] = ACTIONS(3433), + [anon_sym_throw] = ACTIONS(3433), + [anon_sym_SEMI] = ACTIONS(3433), + [anon_sym_yield] = ACTIONS(3433), + [anon_sym_LBRACK] = ACTIONS(3433), + [anon_sym_LTtemplate_GT] = ACTIONS(3433), + [anon_sym_DQUOTE] = ACTIONS(3433), + [anon_sym_SQUOTE] = ACTIONS(3433), + [anon_sym_class] = ACTIONS(3433), + [anon_sym_async] = ACTIONS(3433), + [anon_sym_function] = ACTIONS(3433), + [anon_sym_new] = ACTIONS(3433), + [anon_sym_using] = ACTIONS(3433), + [anon_sym_PLUS] = ACTIONS(3433), + [anon_sym_DASH] = ACTIONS(3433), + [anon_sym_SLASH] = ACTIONS(3433), + [anon_sym_LT] = ACTIONS(3433), + [anon_sym_TILDE] = ACTIONS(3433), + [anon_sym_void] = ACTIONS(3433), + [anon_sym_delete] = ACTIONS(3433), + [anon_sym_PLUS_PLUS] = ACTIONS(3433), + [anon_sym_DASH_DASH] = ACTIONS(3433), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3433), + [sym_number] = ACTIONS(3433), + [sym_private_property_identifier] = ACTIONS(3433), + [sym_this] = ACTIONS(3433), + [sym_super] = ACTIONS(3433), + [sym_true] = ACTIONS(3433), + [sym_false] = ACTIONS(3433), + [sym_null] = ACTIONS(3433), + [sym_undefined] = ACTIONS(3433), + [anon_sym_AT] = ACTIONS(3433), + [anon_sym_static] = ACTIONS(3433), + [anon_sym_readonly] = ACTIONS(3433), + [anon_sym_get] = ACTIONS(3433), + [anon_sym_set] = ACTIONS(3433), + [anon_sym_declare] = ACTIONS(3433), + [anon_sym_public] = ACTIONS(3433), + [anon_sym_private] = ACTIONS(3433), + [anon_sym_protected] = ACTIONS(3433), + [anon_sym_override] = ACTIONS(3433), + [anon_sym_module] = ACTIONS(3433), + [anon_sym_any] = ACTIONS(3433), + [anon_sym_number] = ACTIONS(3433), + [anon_sym_boolean] = ACTIONS(3433), + [anon_sym_string] = ACTIONS(3433), + [anon_sym_symbol] = ACTIONS(3433), + [anon_sym_object] = ACTIONS(3433), + [anon_sym_abstract] = ACTIONS(3433), + [anon_sym_interface] = ACTIONS(3433), + [anon_sym_enum] = ACTIONS(3433), [sym_html_comment] = ACTIONS(5), }, - [1747] = { - [sym_comment] = STATE(1747), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [1600] = { + [sym_comment] = STATE(1600), + [ts_builtin_sym_end] = ACTIONS(2180), + [sym_identifier] = ACTIONS(2178), + [anon_sym_export] = ACTIONS(2178), + [anon_sym_type] = ACTIONS(2178), + [anon_sym_namespace] = ACTIONS(2178), + [anon_sym_LBRACE] = ACTIONS(2178), + [anon_sym_RBRACE] = ACTIONS(2178), + [anon_sym_typeof] = ACTIONS(2178), + [anon_sym_import] = ACTIONS(2178), + [anon_sym_with] = ACTIONS(2178), + [anon_sym_var] = ACTIONS(2178), + [anon_sym_let] = ACTIONS(2178), + [anon_sym_const] = ACTIONS(2178), + [anon_sym_BANG] = ACTIONS(2178), + [anon_sym_if] = ACTIONS(2178), + [anon_sym_switch] = ACTIONS(2178), + [anon_sym_for] = ACTIONS(2178), + [anon_sym_LPAREN] = ACTIONS(2178), + [anon_sym_await] = ACTIONS(2178), + [anon_sym_while] = ACTIONS(2178), + [anon_sym_do] = ACTIONS(2178), + [anon_sym_try] = ACTIONS(2178), + [anon_sym_break] = ACTIONS(2178), + [anon_sym_continue] = ACTIONS(2178), + [anon_sym_debugger] = ACTIONS(2178), + [anon_sym_return] = ACTIONS(2178), + [anon_sym_throw] = ACTIONS(2178), + [anon_sym_SEMI] = ACTIONS(2178), + [anon_sym_yield] = ACTIONS(2178), + [anon_sym_LBRACK] = ACTIONS(2178), + [anon_sym_LTtemplate_GT] = ACTIONS(2178), + [anon_sym_DQUOTE] = ACTIONS(2178), + [anon_sym_SQUOTE] = ACTIONS(2178), + [anon_sym_class] = ACTIONS(2178), + [anon_sym_async] = ACTIONS(2178), + [anon_sym_function] = ACTIONS(2178), + [anon_sym_new] = ACTIONS(2178), + [anon_sym_using] = ACTIONS(2178), + [anon_sym_PLUS] = ACTIONS(2178), + [anon_sym_DASH] = ACTIONS(2178), + [anon_sym_SLASH] = ACTIONS(2178), + [anon_sym_LT] = ACTIONS(2178), + [anon_sym_TILDE] = ACTIONS(2178), + [anon_sym_void] = ACTIONS(2178), + [anon_sym_delete] = ACTIONS(2178), + [anon_sym_PLUS_PLUS] = ACTIONS(2178), + [anon_sym_DASH_DASH] = ACTIONS(2178), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2178), + [sym_number] = ACTIONS(2178), + [sym_private_property_identifier] = ACTIONS(2178), + [sym_this] = ACTIONS(2178), + [sym_super] = ACTIONS(2178), + [sym_true] = ACTIONS(2178), + [sym_false] = ACTIONS(2178), + [sym_null] = ACTIONS(2178), + [sym_undefined] = ACTIONS(2178), + [anon_sym_AT] = ACTIONS(2178), + [anon_sym_static] = ACTIONS(2178), + [anon_sym_readonly] = ACTIONS(2178), + [anon_sym_get] = ACTIONS(2178), + [anon_sym_set] = ACTIONS(2178), + [anon_sym_declare] = ACTIONS(2178), + [anon_sym_public] = ACTIONS(2178), + [anon_sym_private] = ACTIONS(2178), + [anon_sym_protected] = ACTIONS(2178), + [anon_sym_override] = ACTIONS(2178), + [anon_sym_module] = ACTIONS(2178), + [anon_sym_any] = ACTIONS(2178), + [anon_sym_number] = ACTIONS(2178), + [anon_sym_boolean] = ACTIONS(2178), + [anon_sym_string] = ACTIONS(2178), + [anon_sym_symbol] = ACTIONS(2178), + [anon_sym_object] = ACTIONS(2178), + [anon_sym_abstract] = ACTIONS(2178), + [anon_sym_interface] = ACTIONS(2178), + [anon_sym_enum] = ACTIONS(2178), [sym_html_comment] = ACTIONS(5), }, - [1748] = { - [sym_comment] = STATE(1748), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [1601] = { + [sym_comment] = STATE(1601), + [ts_builtin_sym_end] = ACTIONS(3469), + [sym_identifier] = ACTIONS(3443), + [anon_sym_export] = ACTIONS(3443), + [anon_sym_type] = ACTIONS(3443), + [anon_sym_namespace] = ACTIONS(3443), + [anon_sym_LBRACE] = ACTIONS(3443), + [anon_sym_RBRACE] = ACTIONS(3443), + [anon_sym_typeof] = ACTIONS(3443), + [anon_sym_import] = ACTIONS(3443), + [anon_sym_with] = ACTIONS(3443), + [anon_sym_var] = ACTIONS(3443), + [anon_sym_let] = ACTIONS(3443), + [anon_sym_const] = ACTIONS(3443), + [anon_sym_BANG] = ACTIONS(3443), + [anon_sym_if] = ACTIONS(3443), + [anon_sym_switch] = ACTIONS(3443), + [anon_sym_for] = ACTIONS(3443), + [anon_sym_LPAREN] = ACTIONS(3443), + [anon_sym_await] = ACTIONS(3443), + [anon_sym_while] = ACTIONS(3443), + [anon_sym_do] = ACTIONS(3443), + [anon_sym_try] = ACTIONS(3443), + [anon_sym_break] = ACTIONS(3443), + [anon_sym_continue] = ACTIONS(3443), + [anon_sym_debugger] = ACTIONS(3443), + [anon_sym_return] = ACTIONS(3443), + [anon_sym_throw] = ACTIONS(3443), + [anon_sym_SEMI] = ACTIONS(3443), + [anon_sym_yield] = ACTIONS(3443), + [anon_sym_LBRACK] = ACTIONS(3443), + [anon_sym_LTtemplate_GT] = ACTIONS(3443), + [anon_sym_DQUOTE] = ACTIONS(3443), + [anon_sym_SQUOTE] = ACTIONS(3443), + [anon_sym_class] = ACTIONS(3443), + [anon_sym_async] = ACTIONS(3443), + [anon_sym_function] = ACTIONS(3443), + [anon_sym_new] = ACTIONS(3443), + [anon_sym_using] = ACTIONS(3443), + [anon_sym_PLUS] = ACTIONS(3443), + [anon_sym_DASH] = ACTIONS(3443), + [anon_sym_SLASH] = ACTIONS(3443), + [anon_sym_LT] = ACTIONS(3443), + [anon_sym_TILDE] = ACTIONS(3443), + [anon_sym_void] = ACTIONS(3443), + [anon_sym_delete] = ACTIONS(3443), + [anon_sym_PLUS_PLUS] = ACTIONS(3443), + [anon_sym_DASH_DASH] = ACTIONS(3443), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3443), + [sym_number] = ACTIONS(3443), + [sym_private_property_identifier] = ACTIONS(3443), + [sym_this] = ACTIONS(3443), + [sym_super] = ACTIONS(3443), + [sym_true] = ACTIONS(3443), + [sym_false] = ACTIONS(3443), + [sym_null] = ACTIONS(3443), + [sym_undefined] = ACTIONS(3443), + [anon_sym_AT] = ACTIONS(3443), + [anon_sym_static] = ACTIONS(3443), + [anon_sym_readonly] = ACTIONS(3443), + [anon_sym_get] = ACTIONS(3443), + [anon_sym_set] = ACTIONS(3443), + [anon_sym_declare] = ACTIONS(3443), + [anon_sym_public] = ACTIONS(3443), + [anon_sym_private] = ACTIONS(3443), + [anon_sym_protected] = ACTIONS(3443), + [anon_sym_override] = ACTIONS(3443), + [anon_sym_module] = ACTIONS(3443), + [anon_sym_any] = ACTIONS(3443), + [anon_sym_number] = ACTIONS(3443), + [anon_sym_boolean] = ACTIONS(3443), + [anon_sym_string] = ACTIONS(3443), + [anon_sym_symbol] = ACTIONS(3443), + [anon_sym_object] = ACTIONS(3443), + [anon_sym_abstract] = ACTIONS(3443), + [anon_sym_interface] = ACTIONS(3443), + [anon_sym_enum] = ACTIONS(3443), [sym_html_comment] = ACTIONS(5), }, - [1749] = { - [sym_comment] = STATE(1749), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [1602] = { + [sym_comment] = STATE(1602), + [ts_builtin_sym_end] = ACTIONS(3467), + [sym_identifier] = ACTIONS(3393), + [anon_sym_export] = ACTIONS(3393), + [anon_sym_type] = ACTIONS(3393), + [anon_sym_namespace] = ACTIONS(3393), + [anon_sym_LBRACE] = ACTIONS(3393), + [anon_sym_RBRACE] = ACTIONS(3393), + [anon_sym_typeof] = ACTIONS(3393), + [anon_sym_import] = ACTIONS(3393), + [anon_sym_with] = ACTIONS(3393), + [anon_sym_var] = ACTIONS(3393), + [anon_sym_let] = ACTIONS(3393), + [anon_sym_const] = ACTIONS(3393), + [anon_sym_BANG] = ACTIONS(3393), + [anon_sym_if] = ACTIONS(3393), + [anon_sym_switch] = ACTIONS(3393), + [anon_sym_for] = ACTIONS(3393), + [anon_sym_LPAREN] = ACTIONS(3393), + [anon_sym_await] = ACTIONS(3393), + [anon_sym_while] = ACTIONS(3393), + [anon_sym_do] = ACTIONS(3393), + [anon_sym_try] = ACTIONS(3393), + [anon_sym_break] = ACTIONS(3393), + [anon_sym_continue] = ACTIONS(3393), + [anon_sym_debugger] = ACTIONS(3393), + [anon_sym_return] = ACTIONS(3393), + [anon_sym_throw] = ACTIONS(3393), + [anon_sym_SEMI] = ACTIONS(3393), + [anon_sym_yield] = ACTIONS(3393), + [anon_sym_LBRACK] = ACTIONS(3393), + [anon_sym_LTtemplate_GT] = ACTIONS(3393), + [anon_sym_DQUOTE] = ACTIONS(3393), + [anon_sym_SQUOTE] = ACTIONS(3393), + [anon_sym_class] = ACTIONS(3393), + [anon_sym_async] = ACTIONS(3393), + [anon_sym_function] = ACTIONS(3393), + [anon_sym_new] = ACTIONS(3393), + [anon_sym_using] = ACTIONS(3393), + [anon_sym_PLUS] = ACTIONS(3393), + [anon_sym_DASH] = ACTIONS(3393), + [anon_sym_SLASH] = ACTIONS(3393), + [anon_sym_LT] = ACTIONS(3393), + [anon_sym_TILDE] = ACTIONS(3393), + [anon_sym_void] = ACTIONS(3393), + [anon_sym_delete] = ACTIONS(3393), + [anon_sym_PLUS_PLUS] = ACTIONS(3393), + [anon_sym_DASH_DASH] = ACTIONS(3393), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3393), + [sym_number] = ACTIONS(3393), + [sym_private_property_identifier] = ACTIONS(3393), + [sym_this] = ACTIONS(3393), + [sym_super] = ACTIONS(3393), + [sym_true] = ACTIONS(3393), + [sym_false] = ACTIONS(3393), + [sym_null] = ACTIONS(3393), + [sym_undefined] = ACTIONS(3393), + [anon_sym_AT] = ACTIONS(3393), + [anon_sym_static] = ACTIONS(3393), + [anon_sym_readonly] = ACTIONS(3393), + [anon_sym_get] = ACTIONS(3393), + [anon_sym_set] = ACTIONS(3393), + [anon_sym_declare] = ACTIONS(3393), + [anon_sym_public] = ACTIONS(3393), + [anon_sym_private] = ACTIONS(3393), + [anon_sym_protected] = ACTIONS(3393), + [anon_sym_override] = ACTIONS(3393), + [anon_sym_module] = ACTIONS(3393), + [anon_sym_any] = ACTIONS(3393), + [anon_sym_number] = ACTIONS(3393), + [anon_sym_boolean] = ACTIONS(3393), + [anon_sym_string] = ACTIONS(3393), + [anon_sym_symbol] = ACTIONS(3393), + [anon_sym_object] = ACTIONS(3393), + [anon_sym_abstract] = ACTIONS(3393), + [anon_sym_interface] = ACTIONS(3393), + [anon_sym_enum] = ACTIONS(3393), [sym_html_comment] = ACTIONS(5), }, - [1750] = { - [sym_comment] = STATE(1750), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), + [1603] = { + [sym_comment] = STATE(1603), + [ts_builtin_sym_end] = ACTIONS(3593), + [sym_identifier] = ACTIONS(3287), + [anon_sym_export] = ACTIONS(3287), + [anon_sym_type] = ACTIONS(3287), + [anon_sym_namespace] = ACTIONS(3287), + [anon_sym_LBRACE] = ACTIONS(3287), + [anon_sym_RBRACE] = ACTIONS(3287), + [anon_sym_typeof] = ACTIONS(3287), + [anon_sym_import] = ACTIONS(3287), + [anon_sym_with] = ACTIONS(3287), + [anon_sym_var] = ACTIONS(3287), + [anon_sym_let] = ACTIONS(3287), + [anon_sym_const] = ACTIONS(3287), + [anon_sym_BANG] = ACTIONS(3287), + [anon_sym_if] = ACTIONS(3287), + [anon_sym_switch] = ACTIONS(3287), + [anon_sym_for] = ACTIONS(3287), + [anon_sym_LPAREN] = ACTIONS(3287), + [anon_sym_await] = ACTIONS(3287), + [anon_sym_while] = ACTIONS(3287), + [anon_sym_do] = ACTIONS(3287), + [anon_sym_try] = ACTIONS(3287), + [anon_sym_break] = ACTIONS(3287), + [anon_sym_continue] = ACTIONS(3287), + [anon_sym_debugger] = ACTIONS(3287), + [anon_sym_return] = ACTIONS(3287), + [anon_sym_throw] = ACTIONS(3287), + [anon_sym_SEMI] = ACTIONS(3287), + [anon_sym_yield] = ACTIONS(3287), + [anon_sym_LBRACK] = ACTIONS(3287), + [anon_sym_LTtemplate_GT] = ACTIONS(3287), + [anon_sym_DQUOTE] = ACTIONS(3287), + [anon_sym_SQUOTE] = ACTIONS(3287), + [anon_sym_class] = ACTIONS(3287), + [anon_sym_async] = ACTIONS(3287), + [anon_sym_function] = ACTIONS(3287), + [anon_sym_new] = ACTIONS(3287), + [anon_sym_using] = ACTIONS(3287), + [anon_sym_PLUS] = ACTIONS(3287), + [anon_sym_DASH] = ACTIONS(3287), + [anon_sym_SLASH] = ACTIONS(3287), + [anon_sym_LT] = ACTIONS(3287), + [anon_sym_TILDE] = ACTIONS(3287), + [anon_sym_void] = ACTIONS(3287), + [anon_sym_delete] = ACTIONS(3287), + [anon_sym_PLUS_PLUS] = ACTIONS(3287), + [anon_sym_DASH_DASH] = ACTIONS(3287), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [anon_sym_BQUOTE] = ACTIONS(3287), + [sym_number] = ACTIONS(3287), + [sym_private_property_identifier] = ACTIONS(3287), + [sym_this] = ACTIONS(3287), + [sym_super] = ACTIONS(3287), + [sym_true] = ACTIONS(3287), + [sym_false] = ACTIONS(3287), + [sym_null] = ACTIONS(3287), + [sym_undefined] = ACTIONS(3287), + [anon_sym_AT] = ACTIONS(3287), + [anon_sym_static] = ACTIONS(3287), + [anon_sym_readonly] = ACTIONS(3287), + [anon_sym_get] = ACTIONS(3287), + [anon_sym_set] = ACTIONS(3287), + [anon_sym_declare] = ACTIONS(3287), + [anon_sym_public] = ACTIONS(3287), + [anon_sym_private] = ACTIONS(3287), + [anon_sym_protected] = ACTIONS(3287), + [anon_sym_override] = ACTIONS(3287), + [anon_sym_module] = ACTIONS(3287), + [anon_sym_any] = ACTIONS(3287), + [anon_sym_number] = ACTIONS(3287), + [anon_sym_boolean] = ACTIONS(3287), + [anon_sym_string] = ACTIONS(3287), + [anon_sym_symbol] = ACTIONS(3287), + [anon_sym_object] = ACTIONS(3287), + [anon_sym_abstract] = ACTIONS(3287), + [anon_sym_interface] = ACTIONS(3287), + [anon_sym_enum] = ACTIONS(3287), [sym_html_comment] = ACTIONS(5), }, - [1751] = { - [sym_comment] = STATE(1751), - [ts_builtin_sym_end] = ACTIONS(3465), - [sym_identifier] = ACTIONS(3217), - [anon_sym_export] = ACTIONS(3217), - [anon_sym_type] = ACTIONS(3217), - [anon_sym_namespace] = ACTIONS(3217), - [anon_sym_LBRACE] = ACTIONS(3217), - [anon_sym_RBRACE] = ACTIONS(3217), - [anon_sym_typeof] = ACTIONS(3217), - [anon_sym_import] = ACTIONS(3217), - [anon_sym_with] = ACTIONS(3217), - [anon_sym_var] = ACTIONS(3217), - [anon_sym_let] = ACTIONS(3217), - [anon_sym_const] = ACTIONS(3217), - [anon_sym_BANG] = ACTIONS(3217), - [anon_sym_if] = ACTIONS(3217), - [anon_sym_switch] = ACTIONS(3217), - [anon_sym_for] = ACTIONS(3217), - [anon_sym_LPAREN] = ACTIONS(3217), - [anon_sym_await] = ACTIONS(3217), - [anon_sym_while] = ACTIONS(3217), - [anon_sym_do] = ACTIONS(3217), - [anon_sym_try] = ACTIONS(3217), - [anon_sym_break] = ACTIONS(3217), - [anon_sym_continue] = ACTIONS(3217), - [anon_sym_debugger] = ACTIONS(3217), - [anon_sym_return] = ACTIONS(3217), - [anon_sym_throw] = ACTIONS(3217), - [anon_sym_SEMI] = ACTIONS(3217), - [anon_sym_yield] = ACTIONS(3217), - [anon_sym_LBRACK] = ACTIONS(3217), - [anon_sym_LTtemplate_GT] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(3217), - [anon_sym_SQUOTE] = ACTIONS(3217), - [anon_sym_class] = ACTIONS(3217), - [anon_sym_async] = ACTIONS(3217), - [anon_sym_function] = ACTIONS(3217), - [anon_sym_new] = ACTIONS(3217), - [anon_sym_using] = ACTIONS(3217), - [anon_sym_PLUS] = ACTIONS(3217), - [anon_sym_DASH] = ACTIONS(3217), - [anon_sym_SLASH] = ACTIONS(3217), - [anon_sym_LT] = ACTIONS(3217), - [anon_sym_TILDE] = ACTIONS(3217), - [anon_sym_void] = ACTIONS(3217), - [anon_sym_delete] = ACTIONS(3217), - [anon_sym_PLUS_PLUS] = ACTIONS(3217), - [anon_sym_DASH_DASH] = ACTIONS(3217), + [1604] = { + [sym_comment] = STATE(1604), + [ts_builtin_sym_end] = ACTIONS(3645), + [sym_identifier] = ACTIONS(3353), + [anon_sym_export] = ACTIONS(3353), + [anon_sym_type] = ACTIONS(3353), + [anon_sym_namespace] = ACTIONS(3353), + [anon_sym_LBRACE] = ACTIONS(3353), + [anon_sym_RBRACE] = ACTIONS(3353), + [anon_sym_typeof] = ACTIONS(3353), + [anon_sym_import] = ACTIONS(3353), + [anon_sym_with] = ACTIONS(3353), + [anon_sym_var] = ACTIONS(3353), + [anon_sym_let] = ACTIONS(3353), + [anon_sym_const] = ACTIONS(3353), + [anon_sym_BANG] = ACTIONS(3353), + [anon_sym_if] = ACTIONS(3353), + [anon_sym_switch] = ACTIONS(3353), + [anon_sym_for] = ACTIONS(3353), + [anon_sym_LPAREN] = ACTIONS(3353), + [anon_sym_await] = ACTIONS(3353), + [anon_sym_while] = ACTIONS(3353), + [anon_sym_do] = ACTIONS(3353), + [anon_sym_try] = ACTIONS(3353), + [anon_sym_break] = ACTIONS(3353), + [anon_sym_continue] = ACTIONS(3353), + [anon_sym_debugger] = ACTIONS(3353), + [anon_sym_return] = ACTIONS(3353), + [anon_sym_throw] = ACTIONS(3353), + [anon_sym_SEMI] = ACTIONS(3353), + [anon_sym_yield] = ACTIONS(3353), + [anon_sym_LBRACK] = ACTIONS(3353), + [anon_sym_LTtemplate_GT] = ACTIONS(3353), + [anon_sym_DQUOTE] = ACTIONS(3353), + [anon_sym_SQUOTE] = ACTIONS(3353), + [anon_sym_class] = ACTIONS(3353), + [anon_sym_async] = ACTIONS(3353), + [anon_sym_function] = ACTIONS(3353), + [anon_sym_new] = ACTIONS(3353), + [anon_sym_using] = ACTIONS(3353), + [anon_sym_PLUS] = ACTIONS(3353), + [anon_sym_DASH] = ACTIONS(3353), + [anon_sym_SLASH] = ACTIONS(3353), + [anon_sym_LT] = ACTIONS(3353), + [anon_sym_TILDE] = ACTIONS(3353), + [anon_sym_void] = ACTIONS(3353), + [anon_sym_delete] = ACTIONS(3353), + [anon_sym_PLUS_PLUS] = ACTIONS(3353), + [anon_sym_DASH_DASH] = ACTIONS(3353), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3217), - [sym_number] = ACTIONS(3217), - [sym_private_property_identifier] = ACTIONS(3217), - [sym_this] = ACTIONS(3217), - [sym_super] = ACTIONS(3217), - [sym_true] = ACTIONS(3217), - [sym_false] = ACTIONS(3217), - [sym_null] = ACTIONS(3217), - [sym_undefined] = ACTIONS(3217), - [anon_sym_AT] = ACTIONS(3217), - [anon_sym_static] = ACTIONS(3217), - [anon_sym_readonly] = ACTIONS(3217), - [anon_sym_get] = ACTIONS(3217), - [anon_sym_set] = ACTIONS(3217), - [anon_sym_declare] = ACTIONS(3217), - [anon_sym_public] = ACTIONS(3217), - [anon_sym_private] = ACTIONS(3217), - [anon_sym_protected] = ACTIONS(3217), - [anon_sym_override] = ACTIONS(3217), - [anon_sym_module] = ACTIONS(3217), - [anon_sym_any] = ACTIONS(3217), - [anon_sym_number] = ACTIONS(3217), - [anon_sym_boolean] = ACTIONS(3217), - [anon_sym_string] = ACTIONS(3217), - [anon_sym_symbol] = ACTIONS(3217), - [anon_sym_object] = ACTIONS(3217), - [anon_sym_abstract] = ACTIONS(3217), - [anon_sym_interface] = ACTIONS(3217), - [anon_sym_enum] = ACTIONS(3217), + [anon_sym_BQUOTE] = ACTIONS(3353), + [sym_number] = ACTIONS(3353), + [sym_private_property_identifier] = ACTIONS(3353), + [sym_this] = ACTIONS(3353), + [sym_super] = ACTIONS(3353), + [sym_true] = ACTIONS(3353), + [sym_false] = ACTIONS(3353), + [sym_null] = ACTIONS(3353), + [sym_undefined] = ACTIONS(3353), + [anon_sym_AT] = ACTIONS(3353), + [anon_sym_static] = ACTIONS(3353), + [anon_sym_readonly] = ACTIONS(3353), + [anon_sym_get] = ACTIONS(3353), + [anon_sym_set] = ACTIONS(3353), + [anon_sym_declare] = ACTIONS(3353), + [anon_sym_public] = ACTIONS(3353), + [anon_sym_private] = ACTIONS(3353), + [anon_sym_protected] = ACTIONS(3353), + [anon_sym_override] = ACTIONS(3353), + [anon_sym_module] = ACTIONS(3353), + [anon_sym_any] = ACTIONS(3353), + [anon_sym_number] = ACTIONS(3353), + [anon_sym_boolean] = ACTIONS(3353), + [anon_sym_string] = ACTIONS(3353), + [anon_sym_symbol] = ACTIONS(3353), + [anon_sym_object] = ACTIONS(3353), + [anon_sym_abstract] = ACTIONS(3353), + [anon_sym_interface] = ACTIONS(3353), + [anon_sym_enum] = ACTIONS(3353), + [sym_html_comment] = ACTIONS(5), + }, + [1605] = { + [sym_comment] = STATE(1605), + [ts_builtin_sym_end] = ACTIONS(3511), + [sym_identifier] = ACTIONS(3377), + [anon_sym_export] = ACTIONS(3377), + [anon_sym_type] = ACTIONS(3377), + [anon_sym_namespace] = ACTIONS(3377), + [anon_sym_LBRACE] = ACTIONS(3377), + [anon_sym_RBRACE] = ACTIONS(3377), + [anon_sym_typeof] = ACTIONS(3377), + [anon_sym_import] = ACTIONS(3377), + [anon_sym_with] = ACTIONS(3377), + [anon_sym_var] = ACTIONS(3377), + [anon_sym_let] = ACTIONS(3377), + [anon_sym_const] = ACTIONS(3377), + [anon_sym_BANG] = ACTIONS(3377), + [anon_sym_if] = ACTIONS(3377), + [anon_sym_switch] = ACTIONS(3377), + [anon_sym_for] = ACTIONS(3377), + [anon_sym_LPAREN] = ACTIONS(3377), + [anon_sym_await] = ACTIONS(3377), + [anon_sym_while] = ACTIONS(3377), + [anon_sym_do] = ACTIONS(3377), + [anon_sym_try] = ACTIONS(3377), + [anon_sym_break] = ACTIONS(3377), + [anon_sym_continue] = ACTIONS(3377), + [anon_sym_debugger] = ACTIONS(3377), + [anon_sym_return] = ACTIONS(3377), + [anon_sym_throw] = ACTIONS(3377), + [anon_sym_SEMI] = ACTIONS(3377), + [anon_sym_yield] = ACTIONS(3377), + [anon_sym_LBRACK] = ACTIONS(3377), + [anon_sym_LTtemplate_GT] = ACTIONS(3377), + [anon_sym_DQUOTE] = ACTIONS(3377), + [anon_sym_SQUOTE] = ACTIONS(3377), + [anon_sym_class] = ACTIONS(3377), + [anon_sym_async] = ACTIONS(3377), + [anon_sym_function] = ACTIONS(3377), + [anon_sym_new] = ACTIONS(3377), + [anon_sym_using] = ACTIONS(3377), + [anon_sym_PLUS] = ACTIONS(3377), + [anon_sym_DASH] = ACTIONS(3377), + [anon_sym_SLASH] = ACTIONS(3377), + [anon_sym_LT] = ACTIONS(3377), + [anon_sym_TILDE] = ACTIONS(3377), + [anon_sym_void] = ACTIONS(3377), + [anon_sym_delete] = ACTIONS(3377), + [anon_sym_PLUS_PLUS] = ACTIONS(3377), + [anon_sym_DASH_DASH] = ACTIONS(3377), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3377), + [sym_number] = ACTIONS(3377), + [sym_private_property_identifier] = ACTIONS(3377), + [sym_this] = ACTIONS(3377), + [sym_super] = ACTIONS(3377), + [sym_true] = ACTIONS(3377), + [sym_false] = ACTIONS(3377), + [sym_null] = ACTIONS(3377), + [sym_undefined] = ACTIONS(3377), + [anon_sym_AT] = ACTIONS(3377), + [anon_sym_static] = ACTIONS(3377), + [anon_sym_readonly] = ACTIONS(3377), + [anon_sym_get] = ACTIONS(3377), + [anon_sym_set] = ACTIONS(3377), + [anon_sym_declare] = ACTIONS(3377), + [anon_sym_public] = ACTIONS(3377), + [anon_sym_private] = ACTIONS(3377), + [anon_sym_protected] = ACTIONS(3377), + [anon_sym_override] = ACTIONS(3377), + [anon_sym_module] = ACTIONS(3377), + [anon_sym_any] = ACTIONS(3377), + [anon_sym_number] = ACTIONS(3377), + [anon_sym_boolean] = ACTIONS(3377), + [anon_sym_string] = ACTIONS(3377), + [anon_sym_symbol] = ACTIONS(3377), + [anon_sym_object] = ACTIONS(3377), + [anon_sym_abstract] = ACTIONS(3377), + [anon_sym_interface] = ACTIONS(3377), + [anon_sym_enum] = ACTIONS(3377), [sym_html_comment] = ACTIONS(5), }, - [1752] = { - [sym_comment] = STATE(1752), - [ts_builtin_sym_end] = ACTIONS(3587), - [sym_identifier] = ACTIONS(3419), - [anon_sym_export] = ACTIONS(3419), - [anon_sym_type] = ACTIONS(3419), - [anon_sym_namespace] = ACTIONS(3419), - [anon_sym_LBRACE] = ACTIONS(3419), - [anon_sym_RBRACE] = ACTIONS(3419), - [anon_sym_typeof] = ACTIONS(3419), - [anon_sym_import] = ACTIONS(3419), - [anon_sym_with] = ACTIONS(3419), - [anon_sym_var] = ACTIONS(3419), - [anon_sym_let] = ACTIONS(3419), - [anon_sym_const] = ACTIONS(3419), - [anon_sym_BANG] = ACTIONS(3419), - [anon_sym_if] = ACTIONS(3419), - [anon_sym_switch] = ACTIONS(3419), - [anon_sym_for] = ACTIONS(3419), - [anon_sym_LPAREN] = ACTIONS(3419), - [anon_sym_await] = ACTIONS(3419), - [anon_sym_while] = ACTIONS(3419), - [anon_sym_do] = ACTIONS(3419), - [anon_sym_try] = ACTIONS(3419), - [anon_sym_break] = ACTIONS(3419), - [anon_sym_continue] = ACTIONS(3419), - [anon_sym_debugger] = ACTIONS(3419), - [anon_sym_return] = ACTIONS(3419), - [anon_sym_throw] = ACTIONS(3419), - [anon_sym_SEMI] = ACTIONS(3419), - [anon_sym_yield] = ACTIONS(3419), - [anon_sym_LBRACK] = ACTIONS(3419), - [anon_sym_LTtemplate_GT] = ACTIONS(3419), - [anon_sym_DQUOTE] = ACTIONS(3419), - [anon_sym_SQUOTE] = ACTIONS(3419), - [anon_sym_class] = ACTIONS(3419), - [anon_sym_async] = ACTIONS(3419), - [anon_sym_function] = ACTIONS(3419), - [anon_sym_new] = ACTIONS(3419), - [anon_sym_using] = ACTIONS(3419), - [anon_sym_PLUS] = ACTIONS(3419), - [anon_sym_DASH] = ACTIONS(3419), - [anon_sym_SLASH] = ACTIONS(3419), - [anon_sym_LT] = ACTIONS(3419), - [anon_sym_TILDE] = ACTIONS(3419), - [anon_sym_void] = ACTIONS(3419), - [anon_sym_delete] = ACTIONS(3419), - [anon_sym_PLUS_PLUS] = ACTIONS(3419), - [anon_sym_DASH_DASH] = ACTIONS(3419), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3419), - [sym_number] = ACTIONS(3419), - [sym_private_property_identifier] = ACTIONS(3419), - [sym_this] = ACTIONS(3419), - [sym_super] = ACTIONS(3419), - [sym_true] = ACTIONS(3419), - [sym_false] = ACTIONS(3419), - [sym_null] = ACTIONS(3419), - [sym_undefined] = ACTIONS(3419), - [anon_sym_AT] = ACTIONS(3419), - [anon_sym_static] = ACTIONS(3419), - [anon_sym_readonly] = ACTIONS(3419), - [anon_sym_get] = ACTIONS(3419), - [anon_sym_set] = ACTIONS(3419), - [anon_sym_declare] = ACTIONS(3419), - [anon_sym_public] = ACTIONS(3419), - [anon_sym_private] = ACTIONS(3419), - [anon_sym_protected] = ACTIONS(3419), - [anon_sym_override] = ACTIONS(3419), - [anon_sym_module] = ACTIONS(3419), - [anon_sym_any] = ACTIONS(3419), - [anon_sym_number] = ACTIONS(3419), - [anon_sym_boolean] = ACTIONS(3419), - [anon_sym_string] = ACTIONS(3419), - [anon_sym_symbol] = ACTIONS(3419), - [anon_sym_object] = ACTIONS(3419), - [anon_sym_abstract] = ACTIONS(3419), - [anon_sym_interface] = ACTIONS(3419), - [anon_sym_enum] = ACTIONS(3419), + [1606] = { + [sym_comment] = STATE(1606), + [ts_builtin_sym_end] = ACTIONS(3657), + [sym_identifier] = ACTIONS(3283), + [anon_sym_export] = ACTIONS(3283), + [anon_sym_type] = ACTIONS(3283), + [anon_sym_namespace] = ACTIONS(3283), + [anon_sym_LBRACE] = ACTIONS(3283), + [anon_sym_RBRACE] = ACTIONS(3283), + [anon_sym_typeof] = ACTIONS(3283), + [anon_sym_import] = ACTIONS(3283), + [anon_sym_with] = ACTIONS(3283), + [anon_sym_var] = ACTIONS(3283), + [anon_sym_let] = ACTIONS(3283), + [anon_sym_const] = ACTIONS(3283), + [anon_sym_BANG] = ACTIONS(3283), + [anon_sym_if] = ACTIONS(3283), + [anon_sym_switch] = ACTIONS(3283), + [anon_sym_for] = ACTIONS(3283), + [anon_sym_LPAREN] = ACTIONS(3283), + [anon_sym_await] = ACTIONS(3283), + [anon_sym_while] = ACTIONS(3283), + [anon_sym_do] = ACTIONS(3283), + [anon_sym_try] = ACTIONS(3283), + [anon_sym_break] = ACTIONS(3283), + [anon_sym_continue] = ACTIONS(3283), + [anon_sym_debugger] = ACTIONS(3283), + [anon_sym_return] = ACTIONS(3283), + [anon_sym_throw] = ACTIONS(3283), + [anon_sym_SEMI] = ACTIONS(3283), + [anon_sym_yield] = ACTIONS(3283), + [anon_sym_LBRACK] = ACTIONS(3283), + [anon_sym_LTtemplate_GT] = ACTIONS(3283), + [anon_sym_DQUOTE] = ACTIONS(3283), + [anon_sym_SQUOTE] = ACTIONS(3283), + [anon_sym_class] = ACTIONS(3283), + [anon_sym_async] = ACTIONS(3283), + [anon_sym_function] = ACTIONS(3283), + [anon_sym_new] = ACTIONS(3283), + [anon_sym_using] = ACTIONS(3283), + [anon_sym_PLUS] = ACTIONS(3283), + [anon_sym_DASH] = ACTIONS(3283), + [anon_sym_SLASH] = ACTIONS(3283), + [anon_sym_LT] = ACTIONS(3283), + [anon_sym_TILDE] = ACTIONS(3283), + [anon_sym_void] = ACTIONS(3283), + [anon_sym_delete] = ACTIONS(3283), + [anon_sym_PLUS_PLUS] = ACTIONS(3283), + [anon_sym_DASH_DASH] = ACTIONS(3283), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3283), + [sym_number] = ACTIONS(3283), + [sym_private_property_identifier] = ACTIONS(3283), + [sym_this] = ACTIONS(3283), + [sym_super] = ACTIONS(3283), + [sym_true] = ACTIONS(3283), + [sym_false] = ACTIONS(3283), + [sym_null] = ACTIONS(3283), + [sym_undefined] = ACTIONS(3283), + [anon_sym_AT] = ACTIONS(3283), + [anon_sym_static] = ACTIONS(3283), + [anon_sym_readonly] = ACTIONS(3283), + [anon_sym_get] = ACTIONS(3283), + [anon_sym_set] = ACTIONS(3283), + [anon_sym_declare] = ACTIONS(3283), + [anon_sym_public] = ACTIONS(3283), + [anon_sym_private] = ACTIONS(3283), + [anon_sym_protected] = ACTIONS(3283), + [anon_sym_override] = ACTIONS(3283), + [anon_sym_module] = ACTIONS(3283), + [anon_sym_any] = ACTIONS(3283), + [anon_sym_number] = ACTIONS(3283), + [anon_sym_boolean] = ACTIONS(3283), + [anon_sym_string] = ACTIONS(3283), + [anon_sym_symbol] = ACTIONS(3283), + [anon_sym_object] = ACTIONS(3283), + [anon_sym_abstract] = ACTIONS(3283), + [anon_sym_interface] = ACTIONS(3283), + [anon_sym_enum] = ACTIONS(3283), [sym_html_comment] = ACTIONS(5), }, - [1753] = { - [sym_comment] = STATE(1753), - [ts_builtin_sym_end] = ACTIONS(2298), - [sym_identifier] = ACTIONS(2296), - [anon_sym_export] = ACTIONS(2296), - [anon_sym_type] = ACTIONS(2296), - [anon_sym_namespace] = ACTIONS(2296), - [anon_sym_LBRACE] = ACTIONS(2296), - [anon_sym_RBRACE] = ACTIONS(2296), - [anon_sym_typeof] = ACTIONS(2296), - [anon_sym_import] = ACTIONS(2296), - [anon_sym_with] = ACTIONS(2296), - [anon_sym_var] = ACTIONS(2296), - [anon_sym_let] = ACTIONS(2296), - [anon_sym_const] = ACTIONS(2296), - [anon_sym_BANG] = ACTIONS(2296), - [anon_sym_if] = ACTIONS(2296), - [anon_sym_switch] = ACTIONS(2296), - [anon_sym_for] = ACTIONS(2296), - [anon_sym_LPAREN] = ACTIONS(2296), - [anon_sym_await] = ACTIONS(2296), - [anon_sym_while] = ACTIONS(2296), - [anon_sym_do] = ACTIONS(2296), - [anon_sym_try] = ACTIONS(2296), - [anon_sym_break] = ACTIONS(2296), - [anon_sym_continue] = ACTIONS(2296), - [anon_sym_debugger] = ACTIONS(2296), - [anon_sym_return] = ACTIONS(2296), - [anon_sym_throw] = ACTIONS(2296), - [anon_sym_SEMI] = ACTIONS(2296), - [anon_sym_yield] = ACTIONS(2296), - [anon_sym_LBRACK] = ACTIONS(2296), - [anon_sym_LTtemplate_GT] = ACTIONS(2296), - [anon_sym_DQUOTE] = ACTIONS(2296), - [anon_sym_SQUOTE] = ACTIONS(2296), - [anon_sym_class] = ACTIONS(2296), - [anon_sym_async] = ACTIONS(2296), - [anon_sym_function] = ACTIONS(2296), - [anon_sym_new] = ACTIONS(2296), - [anon_sym_using] = ACTIONS(2296), - [anon_sym_PLUS] = ACTIONS(2296), - [anon_sym_DASH] = ACTIONS(2296), - [anon_sym_SLASH] = ACTIONS(2296), - [anon_sym_LT] = ACTIONS(2296), - [anon_sym_TILDE] = ACTIONS(2296), - [anon_sym_void] = ACTIONS(2296), - [anon_sym_delete] = ACTIONS(2296), - [anon_sym_PLUS_PLUS] = ACTIONS(2296), - [anon_sym_DASH_DASH] = ACTIONS(2296), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2296), - [sym_number] = ACTIONS(2296), - [sym_private_property_identifier] = ACTIONS(2296), - [sym_this] = ACTIONS(2296), - [sym_super] = ACTIONS(2296), - [sym_true] = ACTIONS(2296), - [sym_false] = ACTIONS(2296), - [sym_null] = ACTIONS(2296), - [sym_undefined] = ACTIONS(2296), - [anon_sym_AT] = ACTIONS(2296), - [anon_sym_static] = ACTIONS(2296), - [anon_sym_readonly] = ACTIONS(2296), - [anon_sym_get] = ACTIONS(2296), - [anon_sym_set] = ACTIONS(2296), - [anon_sym_declare] = ACTIONS(2296), - [anon_sym_public] = ACTIONS(2296), - [anon_sym_private] = ACTIONS(2296), - [anon_sym_protected] = ACTIONS(2296), - [anon_sym_override] = ACTIONS(2296), - [anon_sym_module] = ACTIONS(2296), - [anon_sym_any] = ACTIONS(2296), - [anon_sym_number] = ACTIONS(2296), - [anon_sym_boolean] = ACTIONS(2296), - [anon_sym_string] = ACTIONS(2296), - [anon_sym_symbol] = ACTIONS(2296), - [anon_sym_object] = ACTIONS(2296), - [anon_sym_abstract] = ACTIONS(2296), - [anon_sym_interface] = ACTIONS(2296), - [anon_sym_enum] = ACTIONS(2296), + [1607] = { + [sym_comment] = STATE(1607), + [ts_builtin_sym_end] = ACTIONS(3591), + [sym_identifier] = ACTIONS(3417), + [anon_sym_export] = ACTIONS(3417), + [anon_sym_type] = ACTIONS(3417), + [anon_sym_namespace] = ACTIONS(3417), + [anon_sym_LBRACE] = ACTIONS(3417), + [anon_sym_RBRACE] = ACTIONS(3417), + [anon_sym_typeof] = ACTIONS(3417), + [anon_sym_import] = ACTIONS(3417), + [anon_sym_with] = ACTIONS(3417), + [anon_sym_var] = ACTIONS(3417), + [anon_sym_let] = ACTIONS(3417), + [anon_sym_const] = ACTIONS(3417), + [anon_sym_BANG] = ACTIONS(3417), + [anon_sym_if] = ACTIONS(3417), + [anon_sym_switch] = ACTIONS(3417), + [anon_sym_for] = ACTIONS(3417), + [anon_sym_LPAREN] = ACTIONS(3417), + [anon_sym_await] = ACTIONS(3417), + [anon_sym_while] = ACTIONS(3417), + [anon_sym_do] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3417), + [anon_sym_break] = ACTIONS(3417), + [anon_sym_continue] = ACTIONS(3417), + [anon_sym_debugger] = ACTIONS(3417), + [anon_sym_return] = ACTIONS(3417), + [anon_sym_throw] = ACTIONS(3417), + [anon_sym_SEMI] = ACTIONS(3417), + [anon_sym_yield] = ACTIONS(3417), + [anon_sym_LBRACK] = ACTIONS(3417), + [anon_sym_LTtemplate_GT] = ACTIONS(3417), + [anon_sym_DQUOTE] = ACTIONS(3417), + [anon_sym_SQUOTE] = ACTIONS(3417), + [anon_sym_class] = ACTIONS(3417), + [anon_sym_async] = ACTIONS(3417), + [anon_sym_function] = ACTIONS(3417), + [anon_sym_new] = ACTIONS(3417), + [anon_sym_using] = ACTIONS(3417), + [anon_sym_PLUS] = ACTIONS(3417), + [anon_sym_DASH] = ACTIONS(3417), + [anon_sym_SLASH] = ACTIONS(3417), + [anon_sym_LT] = ACTIONS(3417), + [anon_sym_TILDE] = ACTIONS(3417), + [anon_sym_void] = ACTIONS(3417), + [anon_sym_delete] = ACTIONS(3417), + [anon_sym_PLUS_PLUS] = ACTIONS(3417), + [anon_sym_DASH_DASH] = ACTIONS(3417), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3417), + [sym_number] = ACTIONS(3417), + [sym_private_property_identifier] = ACTIONS(3417), + [sym_this] = ACTIONS(3417), + [sym_super] = ACTIONS(3417), + [sym_true] = ACTIONS(3417), + [sym_false] = ACTIONS(3417), + [sym_null] = ACTIONS(3417), + [sym_undefined] = ACTIONS(3417), + [anon_sym_AT] = ACTIONS(3417), + [anon_sym_static] = ACTIONS(3417), + [anon_sym_readonly] = ACTIONS(3417), + [anon_sym_get] = ACTIONS(3417), + [anon_sym_set] = ACTIONS(3417), + [anon_sym_declare] = ACTIONS(3417), + [anon_sym_public] = ACTIONS(3417), + [anon_sym_private] = ACTIONS(3417), + [anon_sym_protected] = ACTIONS(3417), + [anon_sym_override] = ACTIONS(3417), + [anon_sym_module] = ACTIONS(3417), + [anon_sym_any] = ACTIONS(3417), + [anon_sym_number] = ACTIONS(3417), + [anon_sym_boolean] = ACTIONS(3417), + [anon_sym_string] = ACTIONS(3417), + [anon_sym_symbol] = ACTIONS(3417), + [anon_sym_object] = ACTIONS(3417), + [anon_sym_abstract] = ACTIONS(3417), + [anon_sym_interface] = ACTIONS(3417), + [anon_sym_enum] = ACTIONS(3417), [sym_html_comment] = ACTIONS(5), }, - [1754] = { - [sym_comment] = STATE(1754), + [1608] = { + [sym_comment] = STATE(1608), [ts_builtin_sym_end] = ACTIONS(3589), + [sym_identifier] = ACTIONS(3427), + [anon_sym_export] = ACTIONS(3427), + [anon_sym_type] = ACTIONS(3427), + [anon_sym_namespace] = ACTIONS(3427), + [anon_sym_LBRACE] = ACTIONS(3427), + [anon_sym_RBRACE] = ACTIONS(3427), + [anon_sym_typeof] = ACTIONS(3427), + [anon_sym_import] = ACTIONS(3427), + [anon_sym_with] = ACTIONS(3427), + [anon_sym_var] = ACTIONS(3427), + [anon_sym_let] = ACTIONS(3427), + [anon_sym_const] = ACTIONS(3427), + [anon_sym_BANG] = ACTIONS(3427), + [anon_sym_if] = ACTIONS(3427), + [anon_sym_switch] = ACTIONS(3427), + [anon_sym_for] = ACTIONS(3427), + [anon_sym_LPAREN] = ACTIONS(3427), + [anon_sym_await] = ACTIONS(3427), + [anon_sym_while] = ACTIONS(3427), + [anon_sym_do] = ACTIONS(3427), + [anon_sym_try] = ACTIONS(3427), + [anon_sym_break] = ACTIONS(3427), + [anon_sym_continue] = ACTIONS(3427), + [anon_sym_debugger] = ACTIONS(3427), + [anon_sym_return] = ACTIONS(3427), + [anon_sym_throw] = ACTIONS(3427), + [anon_sym_SEMI] = ACTIONS(3427), + [anon_sym_yield] = ACTIONS(3427), + [anon_sym_LBRACK] = ACTIONS(3427), + [anon_sym_LTtemplate_GT] = ACTIONS(3427), + [anon_sym_DQUOTE] = ACTIONS(3427), + [anon_sym_SQUOTE] = ACTIONS(3427), + [anon_sym_class] = ACTIONS(3427), + [anon_sym_async] = ACTIONS(3427), + [anon_sym_function] = ACTIONS(3427), + [anon_sym_new] = ACTIONS(3427), + [anon_sym_using] = ACTIONS(3427), + [anon_sym_PLUS] = ACTIONS(3427), + [anon_sym_DASH] = ACTIONS(3427), + [anon_sym_SLASH] = ACTIONS(3427), + [anon_sym_LT] = ACTIONS(3427), + [anon_sym_TILDE] = ACTIONS(3427), + [anon_sym_void] = ACTIONS(3427), + [anon_sym_delete] = ACTIONS(3427), + [anon_sym_PLUS_PLUS] = ACTIONS(3427), + [anon_sym_DASH_DASH] = ACTIONS(3427), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3427), + [sym_number] = ACTIONS(3427), + [sym_private_property_identifier] = ACTIONS(3427), + [sym_this] = ACTIONS(3427), + [sym_super] = ACTIONS(3427), + [sym_true] = ACTIONS(3427), + [sym_false] = ACTIONS(3427), + [sym_null] = ACTIONS(3427), + [sym_undefined] = ACTIONS(3427), + [anon_sym_AT] = ACTIONS(3427), + [anon_sym_static] = ACTIONS(3427), + [anon_sym_readonly] = ACTIONS(3427), + [anon_sym_get] = ACTIONS(3427), + [anon_sym_set] = ACTIONS(3427), + [anon_sym_declare] = ACTIONS(3427), + [anon_sym_public] = ACTIONS(3427), + [anon_sym_private] = ACTIONS(3427), + [anon_sym_protected] = ACTIONS(3427), + [anon_sym_override] = ACTIONS(3427), + [anon_sym_module] = ACTIONS(3427), + [anon_sym_any] = ACTIONS(3427), + [anon_sym_number] = ACTIONS(3427), + [anon_sym_boolean] = ACTIONS(3427), + [anon_sym_string] = ACTIONS(3427), + [anon_sym_symbol] = ACTIONS(3427), + [anon_sym_object] = ACTIONS(3427), + [anon_sym_abstract] = ACTIONS(3427), + [anon_sym_interface] = ACTIONS(3427), + [anon_sym_enum] = ACTIONS(3427), + [sym_html_comment] = ACTIONS(5), + }, + [1609] = { + [sym_comment] = STATE(1609), + [ts_builtin_sym_end] = ACTIONS(3497), [sym_identifier] = ACTIONS(3281), [anon_sym_export] = ACTIONS(3281), [anon_sym_type] = ACTIONS(3281), @@ -206338,576 +194163,1224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3281), [sym_html_comment] = ACTIONS(5), }, - [1755] = { - [sym_comment] = STATE(1755), - [ts_builtin_sym_end] = ACTIONS(3661), - [sym_identifier] = ACTIONS(3257), - [anon_sym_export] = ACTIONS(3257), - [anon_sym_type] = ACTIONS(3257), - [anon_sym_namespace] = ACTIONS(3257), - [anon_sym_LBRACE] = ACTIONS(3257), - [anon_sym_RBRACE] = ACTIONS(3257), - [anon_sym_typeof] = ACTIONS(3257), - [anon_sym_import] = ACTIONS(3257), - [anon_sym_with] = ACTIONS(3257), - [anon_sym_var] = ACTIONS(3257), - [anon_sym_let] = ACTIONS(3257), - [anon_sym_const] = ACTIONS(3257), - [anon_sym_BANG] = ACTIONS(3257), - [anon_sym_if] = ACTIONS(3257), - [anon_sym_switch] = ACTIONS(3257), - [anon_sym_for] = ACTIONS(3257), - [anon_sym_LPAREN] = ACTIONS(3257), - [anon_sym_await] = ACTIONS(3257), - [anon_sym_while] = ACTIONS(3257), - [anon_sym_do] = ACTIONS(3257), - [anon_sym_try] = ACTIONS(3257), - [anon_sym_break] = ACTIONS(3257), - [anon_sym_continue] = ACTIONS(3257), - [anon_sym_debugger] = ACTIONS(3257), - [anon_sym_return] = ACTIONS(3257), - [anon_sym_throw] = ACTIONS(3257), - [anon_sym_SEMI] = ACTIONS(3257), - [anon_sym_yield] = ACTIONS(3257), - [anon_sym_LBRACK] = ACTIONS(3257), - [anon_sym_LTtemplate_GT] = ACTIONS(3257), - [anon_sym_DQUOTE] = ACTIONS(3257), - [anon_sym_SQUOTE] = ACTIONS(3257), - [anon_sym_class] = ACTIONS(3257), - [anon_sym_async] = ACTIONS(3257), - [anon_sym_function] = ACTIONS(3257), - [anon_sym_new] = ACTIONS(3257), - [anon_sym_using] = ACTIONS(3257), - [anon_sym_PLUS] = ACTIONS(3257), - [anon_sym_DASH] = ACTIONS(3257), - [anon_sym_SLASH] = ACTIONS(3257), - [anon_sym_LT] = ACTIONS(3257), - [anon_sym_TILDE] = ACTIONS(3257), - [anon_sym_void] = ACTIONS(3257), - [anon_sym_delete] = ACTIONS(3257), - [anon_sym_PLUS_PLUS] = ACTIONS(3257), - [anon_sym_DASH_DASH] = ACTIONS(3257), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3257), - [sym_number] = ACTIONS(3257), - [sym_private_property_identifier] = ACTIONS(3257), - [sym_this] = ACTIONS(3257), - [sym_super] = ACTIONS(3257), - [sym_true] = ACTIONS(3257), - [sym_false] = ACTIONS(3257), - [sym_null] = ACTIONS(3257), - [sym_undefined] = ACTIONS(3257), - [anon_sym_AT] = ACTIONS(3257), - [anon_sym_static] = ACTIONS(3257), - [anon_sym_readonly] = ACTIONS(3257), - [anon_sym_get] = ACTIONS(3257), - [anon_sym_set] = ACTIONS(3257), - [anon_sym_declare] = ACTIONS(3257), - [anon_sym_public] = ACTIONS(3257), - [anon_sym_private] = ACTIONS(3257), - [anon_sym_protected] = ACTIONS(3257), - [anon_sym_override] = ACTIONS(3257), - [anon_sym_module] = ACTIONS(3257), - [anon_sym_any] = ACTIONS(3257), - [anon_sym_number] = ACTIONS(3257), - [anon_sym_boolean] = ACTIONS(3257), - [anon_sym_string] = ACTIONS(3257), - [anon_sym_symbol] = ACTIONS(3257), - [anon_sym_object] = ACTIONS(3257), - [anon_sym_abstract] = ACTIONS(3257), - [anon_sym_interface] = ACTIONS(3257), - [anon_sym_enum] = ACTIONS(3257), + [1610] = { + [sym_comment] = STATE(1610), + [ts_builtin_sym_end] = ACTIONS(3499), + [sym_identifier] = ACTIONS(3413), + [anon_sym_export] = ACTIONS(3413), + [anon_sym_type] = ACTIONS(3413), + [anon_sym_namespace] = ACTIONS(3413), + [anon_sym_LBRACE] = ACTIONS(3413), + [anon_sym_RBRACE] = ACTIONS(3413), + [anon_sym_typeof] = ACTIONS(3413), + [anon_sym_import] = ACTIONS(3413), + [anon_sym_with] = ACTIONS(3413), + [anon_sym_var] = ACTIONS(3413), + [anon_sym_let] = ACTIONS(3413), + [anon_sym_const] = ACTIONS(3413), + [anon_sym_BANG] = ACTIONS(3413), + [anon_sym_if] = ACTIONS(3413), + [anon_sym_switch] = ACTIONS(3413), + [anon_sym_for] = ACTIONS(3413), + [anon_sym_LPAREN] = ACTIONS(3413), + [anon_sym_await] = ACTIONS(3413), + [anon_sym_while] = ACTIONS(3413), + [anon_sym_do] = ACTIONS(3413), + [anon_sym_try] = ACTIONS(3413), + [anon_sym_break] = ACTIONS(3413), + [anon_sym_continue] = ACTIONS(3413), + [anon_sym_debugger] = ACTIONS(3413), + [anon_sym_return] = ACTIONS(3413), + [anon_sym_throw] = ACTIONS(3413), + [anon_sym_SEMI] = ACTIONS(3413), + [anon_sym_yield] = ACTIONS(3413), + [anon_sym_LBRACK] = ACTIONS(3413), + [anon_sym_LTtemplate_GT] = ACTIONS(3413), + [anon_sym_DQUOTE] = ACTIONS(3413), + [anon_sym_SQUOTE] = ACTIONS(3413), + [anon_sym_class] = ACTIONS(3413), + [anon_sym_async] = ACTIONS(3413), + [anon_sym_function] = ACTIONS(3413), + [anon_sym_new] = ACTIONS(3413), + [anon_sym_using] = ACTIONS(3413), + [anon_sym_PLUS] = ACTIONS(3413), + [anon_sym_DASH] = ACTIONS(3413), + [anon_sym_SLASH] = ACTIONS(3413), + [anon_sym_LT] = ACTIONS(3413), + [anon_sym_TILDE] = ACTIONS(3413), + [anon_sym_void] = ACTIONS(3413), + [anon_sym_delete] = ACTIONS(3413), + [anon_sym_PLUS_PLUS] = ACTIONS(3413), + [anon_sym_DASH_DASH] = ACTIONS(3413), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3413), + [sym_number] = ACTIONS(3413), + [sym_private_property_identifier] = ACTIONS(3413), + [sym_this] = ACTIONS(3413), + [sym_super] = ACTIONS(3413), + [sym_true] = ACTIONS(3413), + [sym_false] = ACTIONS(3413), + [sym_null] = ACTIONS(3413), + [sym_undefined] = ACTIONS(3413), + [anon_sym_AT] = ACTIONS(3413), + [anon_sym_static] = ACTIONS(3413), + [anon_sym_readonly] = ACTIONS(3413), + [anon_sym_get] = ACTIONS(3413), + [anon_sym_set] = ACTIONS(3413), + [anon_sym_declare] = ACTIONS(3413), + [anon_sym_public] = ACTIONS(3413), + [anon_sym_private] = ACTIONS(3413), + [anon_sym_protected] = ACTIONS(3413), + [anon_sym_override] = ACTIONS(3413), + [anon_sym_module] = ACTIONS(3413), + [anon_sym_any] = ACTIONS(3413), + [anon_sym_number] = ACTIONS(3413), + [anon_sym_boolean] = ACTIONS(3413), + [anon_sym_string] = ACTIONS(3413), + [anon_sym_symbol] = ACTIONS(3413), + [anon_sym_object] = ACTIONS(3413), + [anon_sym_abstract] = ACTIONS(3413), + [anon_sym_interface] = ACTIONS(3413), + [anon_sym_enum] = ACTIONS(3413), [sym_html_comment] = ACTIONS(5), }, - [1756] = { - [sym_comment] = STATE(1756), - [ts_builtin_sym_end] = ACTIONS(3467), - [sym_identifier] = ACTIONS(3387), - [anon_sym_export] = ACTIONS(3387), - [anon_sym_type] = ACTIONS(3387), - [anon_sym_namespace] = ACTIONS(3387), - [anon_sym_LBRACE] = ACTIONS(3387), - [anon_sym_RBRACE] = ACTIONS(3387), - [anon_sym_typeof] = ACTIONS(3387), - [anon_sym_import] = ACTIONS(3387), - [anon_sym_with] = ACTIONS(3387), - [anon_sym_var] = ACTIONS(3387), - [anon_sym_let] = ACTIONS(3387), - [anon_sym_const] = ACTIONS(3387), - [anon_sym_BANG] = ACTIONS(3387), - [anon_sym_if] = ACTIONS(3387), - [anon_sym_switch] = ACTIONS(3387), - [anon_sym_for] = ACTIONS(3387), - [anon_sym_LPAREN] = ACTIONS(3387), - [anon_sym_await] = ACTIONS(3387), - [anon_sym_while] = ACTIONS(3387), - [anon_sym_do] = ACTIONS(3387), - [anon_sym_try] = ACTIONS(3387), - [anon_sym_break] = ACTIONS(3387), - [anon_sym_continue] = ACTIONS(3387), - [anon_sym_debugger] = ACTIONS(3387), - [anon_sym_return] = ACTIONS(3387), - [anon_sym_throw] = ACTIONS(3387), - [anon_sym_SEMI] = ACTIONS(3387), - [anon_sym_yield] = ACTIONS(3387), - [anon_sym_LBRACK] = ACTIONS(3387), - [anon_sym_LTtemplate_GT] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(3387), - [anon_sym_SQUOTE] = ACTIONS(3387), - [anon_sym_class] = ACTIONS(3387), - [anon_sym_async] = ACTIONS(3387), - [anon_sym_function] = ACTIONS(3387), - [anon_sym_new] = ACTIONS(3387), - [anon_sym_using] = ACTIONS(3387), - [anon_sym_PLUS] = ACTIONS(3387), - [anon_sym_DASH] = ACTIONS(3387), - [anon_sym_SLASH] = ACTIONS(3387), - [anon_sym_LT] = ACTIONS(3387), - [anon_sym_TILDE] = ACTIONS(3387), - [anon_sym_void] = ACTIONS(3387), - [anon_sym_delete] = ACTIONS(3387), - [anon_sym_PLUS_PLUS] = ACTIONS(3387), - [anon_sym_DASH_DASH] = ACTIONS(3387), + [1611] = { + [sym_comment] = STATE(1611), + [ts_builtin_sym_end] = ACTIONS(3473), + [sym_identifier] = ACTIONS(3347), + [anon_sym_export] = ACTIONS(3347), + [anon_sym_type] = ACTIONS(3347), + [anon_sym_namespace] = ACTIONS(3347), + [anon_sym_LBRACE] = ACTIONS(3347), + [anon_sym_RBRACE] = ACTIONS(3347), + [anon_sym_typeof] = ACTIONS(3347), + [anon_sym_import] = ACTIONS(3347), + [anon_sym_with] = ACTIONS(3347), + [anon_sym_var] = ACTIONS(3347), + [anon_sym_let] = ACTIONS(3347), + [anon_sym_const] = ACTIONS(3347), + [anon_sym_BANG] = ACTIONS(3347), + [anon_sym_if] = ACTIONS(3347), + [anon_sym_switch] = ACTIONS(3347), + [anon_sym_for] = ACTIONS(3347), + [anon_sym_LPAREN] = ACTIONS(3347), + [anon_sym_await] = ACTIONS(3347), + [anon_sym_while] = ACTIONS(3347), + [anon_sym_do] = ACTIONS(3347), + [anon_sym_try] = ACTIONS(3347), + [anon_sym_break] = ACTIONS(3347), + [anon_sym_continue] = ACTIONS(3347), + [anon_sym_debugger] = ACTIONS(3347), + [anon_sym_return] = ACTIONS(3347), + [anon_sym_throw] = ACTIONS(3347), + [anon_sym_SEMI] = ACTIONS(3347), + [anon_sym_yield] = ACTIONS(3347), + [anon_sym_LBRACK] = ACTIONS(3347), + [anon_sym_LTtemplate_GT] = ACTIONS(3347), + [anon_sym_DQUOTE] = ACTIONS(3347), + [anon_sym_SQUOTE] = ACTIONS(3347), + [anon_sym_class] = ACTIONS(3347), + [anon_sym_async] = ACTIONS(3347), + [anon_sym_function] = ACTIONS(3347), + [anon_sym_new] = ACTIONS(3347), + [anon_sym_using] = ACTIONS(3347), + [anon_sym_PLUS] = ACTIONS(3347), + [anon_sym_DASH] = ACTIONS(3347), + [anon_sym_SLASH] = ACTIONS(3347), + [anon_sym_LT] = ACTIONS(3347), + [anon_sym_TILDE] = ACTIONS(3347), + [anon_sym_void] = ACTIONS(3347), + [anon_sym_delete] = ACTIONS(3347), + [anon_sym_PLUS_PLUS] = ACTIONS(3347), + [anon_sym_DASH_DASH] = ACTIONS(3347), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3387), - [sym_number] = ACTIONS(3387), - [sym_private_property_identifier] = ACTIONS(3387), - [sym_this] = ACTIONS(3387), - [sym_super] = ACTIONS(3387), - [sym_true] = ACTIONS(3387), - [sym_false] = ACTIONS(3387), - [sym_null] = ACTIONS(3387), - [sym_undefined] = ACTIONS(3387), - [anon_sym_AT] = ACTIONS(3387), - [anon_sym_static] = ACTIONS(3387), - [anon_sym_readonly] = ACTIONS(3387), - [anon_sym_get] = ACTIONS(3387), - [anon_sym_set] = ACTIONS(3387), - [anon_sym_declare] = ACTIONS(3387), - [anon_sym_public] = ACTIONS(3387), - [anon_sym_private] = ACTIONS(3387), - [anon_sym_protected] = ACTIONS(3387), - [anon_sym_override] = ACTIONS(3387), - [anon_sym_module] = ACTIONS(3387), - [anon_sym_any] = ACTIONS(3387), - [anon_sym_number] = ACTIONS(3387), - [anon_sym_boolean] = ACTIONS(3387), - [anon_sym_string] = ACTIONS(3387), - [anon_sym_symbol] = ACTIONS(3387), - [anon_sym_object] = ACTIONS(3387), - [anon_sym_abstract] = ACTIONS(3387), - [anon_sym_interface] = ACTIONS(3387), - [anon_sym_enum] = ACTIONS(3387), + [anon_sym_BQUOTE] = ACTIONS(3347), + [sym_number] = ACTIONS(3347), + [sym_private_property_identifier] = ACTIONS(3347), + [sym_this] = ACTIONS(3347), + [sym_super] = ACTIONS(3347), + [sym_true] = ACTIONS(3347), + [sym_false] = ACTIONS(3347), + [sym_null] = ACTIONS(3347), + [sym_undefined] = ACTIONS(3347), + [anon_sym_AT] = ACTIONS(3347), + [anon_sym_static] = ACTIONS(3347), + [anon_sym_readonly] = ACTIONS(3347), + [anon_sym_get] = ACTIONS(3347), + [anon_sym_set] = ACTIONS(3347), + [anon_sym_declare] = ACTIONS(3347), + [anon_sym_public] = ACTIONS(3347), + [anon_sym_private] = ACTIONS(3347), + [anon_sym_protected] = ACTIONS(3347), + [anon_sym_override] = ACTIONS(3347), + [anon_sym_module] = ACTIONS(3347), + [anon_sym_any] = ACTIONS(3347), + [anon_sym_number] = ACTIONS(3347), + [anon_sym_boolean] = ACTIONS(3347), + [anon_sym_string] = ACTIONS(3347), + [anon_sym_symbol] = ACTIONS(3347), + [anon_sym_object] = ACTIONS(3347), + [anon_sym_abstract] = ACTIONS(3347), + [anon_sym_interface] = ACTIONS(3347), + [anon_sym_enum] = ACTIONS(3347), [sym_html_comment] = ACTIONS(5), }, - [1757] = { - [sym_comment] = STATE(1757), - [ts_builtin_sym_end] = ACTIONS(3469), - [sym_identifier] = ACTIONS(3377), - [anon_sym_export] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_namespace] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_typeof] = ACTIONS(3377), - [anon_sym_import] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3377), - [anon_sym_var] = ACTIONS(3377), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_const] = ACTIONS(3377), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_switch] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_await] = ACTIONS(3377), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_do] = ACTIONS(3377), - [anon_sym_try] = ACTIONS(3377), - [anon_sym_break] = ACTIONS(3377), - [anon_sym_continue] = ACTIONS(3377), - [anon_sym_debugger] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3377), - [anon_sym_throw] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_LTtemplate_GT] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_using] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_SLASH] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_void] = ACTIONS(3377), - [anon_sym_delete] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), + [1612] = { + [sym_comment] = STATE(1612), + [ts_builtin_sym_end] = ACTIONS(3641), + [sym_identifier] = ACTIONS(3289), + [anon_sym_export] = ACTIONS(3289), + [anon_sym_type] = ACTIONS(3289), + [anon_sym_namespace] = ACTIONS(3289), + [anon_sym_LBRACE] = ACTIONS(3289), + [anon_sym_RBRACE] = ACTIONS(3289), + [anon_sym_typeof] = ACTIONS(3289), + [anon_sym_import] = ACTIONS(3289), + [anon_sym_with] = ACTIONS(3289), + [anon_sym_var] = ACTIONS(3289), + [anon_sym_let] = ACTIONS(3289), + [anon_sym_const] = ACTIONS(3289), + [anon_sym_BANG] = ACTIONS(3289), + [anon_sym_if] = ACTIONS(3289), + [anon_sym_switch] = ACTIONS(3289), + [anon_sym_for] = ACTIONS(3289), + [anon_sym_LPAREN] = ACTIONS(3289), + [anon_sym_await] = ACTIONS(3289), + [anon_sym_while] = ACTIONS(3289), + [anon_sym_do] = ACTIONS(3289), + [anon_sym_try] = ACTIONS(3289), + [anon_sym_break] = ACTIONS(3289), + [anon_sym_continue] = ACTIONS(3289), + [anon_sym_debugger] = ACTIONS(3289), + [anon_sym_return] = ACTIONS(3289), + [anon_sym_throw] = ACTIONS(3289), + [anon_sym_SEMI] = ACTIONS(3289), + [anon_sym_yield] = ACTIONS(3289), + [anon_sym_LBRACK] = ACTIONS(3289), + [anon_sym_LTtemplate_GT] = ACTIONS(3289), + [anon_sym_DQUOTE] = ACTIONS(3289), + [anon_sym_SQUOTE] = ACTIONS(3289), + [anon_sym_class] = ACTIONS(3289), + [anon_sym_async] = ACTIONS(3289), + [anon_sym_function] = ACTIONS(3289), + [anon_sym_new] = ACTIONS(3289), + [anon_sym_using] = ACTIONS(3289), + [anon_sym_PLUS] = ACTIONS(3289), + [anon_sym_DASH] = ACTIONS(3289), + [anon_sym_SLASH] = ACTIONS(3289), + [anon_sym_LT] = ACTIONS(3289), + [anon_sym_TILDE] = ACTIONS(3289), + [anon_sym_void] = ACTIONS(3289), + [anon_sym_delete] = ACTIONS(3289), + [anon_sym_PLUS_PLUS] = ACTIONS(3289), + [anon_sym_DASH_DASH] = ACTIONS(3289), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3289), + [sym_number] = ACTIONS(3289), + [sym_private_property_identifier] = ACTIONS(3289), + [sym_this] = ACTIONS(3289), + [sym_super] = ACTIONS(3289), + [sym_true] = ACTIONS(3289), + [sym_false] = ACTIONS(3289), + [sym_null] = ACTIONS(3289), + [sym_undefined] = ACTIONS(3289), + [anon_sym_AT] = ACTIONS(3289), + [anon_sym_static] = ACTIONS(3289), + [anon_sym_readonly] = ACTIONS(3289), + [anon_sym_get] = ACTIONS(3289), + [anon_sym_set] = ACTIONS(3289), + [anon_sym_declare] = ACTIONS(3289), + [anon_sym_public] = ACTIONS(3289), + [anon_sym_private] = ACTIONS(3289), + [anon_sym_protected] = ACTIONS(3289), + [anon_sym_override] = ACTIONS(3289), + [anon_sym_module] = ACTIONS(3289), + [anon_sym_any] = ACTIONS(3289), + [anon_sym_number] = ACTIONS(3289), + [anon_sym_boolean] = ACTIONS(3289), + [anon_sym_string] = ACTIONS(3289), + [anon_sym_symbol] = ACTIONS(3289), + [anon_sym_object] = ACTIONS(3289), + [anon_sym_abstract] = ACTIONS(3289), + [anon_sym_interface] = ACTIONS(3289), + [anon_sym_enum] = ACTIONS(3289), + [sym_html_comment] = ACTIONS(5), + }, + [1613] = { + [sym_comment] = STATE(1613), + [ts_builtin_sym_end] = ACTIONS(3573), + [sym_identifier] = ACTIONS(3315), + [anon_sym_export] = ACTIONS(3315), + [anon_sym_type] = ACTIONS(3315), + [anon_sym_namespace] = ACTIONS(3315), + [anon_sym_LBRACE] = ACTIONS(3315), + [anon_sym_RBRACE] = ACTIONS(3315), + [anon_sym_typeof] = ACTIONS(3315), + [anon_sym_import] = ACTIONS(3315), + [anon_sym_with] = ACTIONS(3315), + [anon_sym_var] = ACTIONS(3315), + [anon_sym_let] = ACTIONS(3315), + [anon_sym_const] = ACTIONS(3315), + [anon_sym_BANG] = ACTIONS(3315), + [anon_sym_if] = ACTIONS(3315), + [anon_sym_switch] = ACTIONS(3315), + [anon_sym_for] = ACTIONS(3315), + [anon_sym_LPAREN] = ACTIONS(3315), + [anon_sym_await] = ACTIONS(3315), + [anon_sym_while] = ACTIONS(3315), + [anon_sym_do] = ACTIONS(3315), + [anon_sym_try] = ACTIONS(3315), + [anon_sym_break] = ACTIONS(3315), + [anon_sym_continue] = ACTIONS(3315), + [anon_sym_debugger] = ACTIONS(3315), + [anon_sym_return] = ACTIONS(3315), + [anon_sym_throw] = ACTIONS(3315), + [anon_sym_SEMI] = ACTIONS(3315), + [anon_sym_yield] = ACTIONS(3315), + [anon_sym_LBRACK] = ACTIONS(3315), + [anon_sym_LTtemplate_GT] = ACTIONS(3315), + [anon_sym_DQUOTE] = ACTIONS(3315), + [anon_sym_SQUOTE] = ACTIONS(3315), + [anon_sym_class] = ACTIONS(3315), + [anon_sym_async] = ACTIONS(3315), + [anon_sym_function] = ACTIONS(3315), + [anon_sym_new] = ACTIONS(3315), + [anon_sym_using] = ACTIONS(3315), + [anon_sym_PLUS] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3315), + [anon_sym_SLASH] = ACTIONS(3315), + [anon_sym_LT] = ACTIONS(3315), + [anon_sym_TILDE] = ACTIONS(3315), + [anon_sym_void] = ACTIONS(3315), + [anon_sym_delete] = ACTIONS(3315), + [anon_sym_PLUS_PLUS] = ACTIONS(3315), + [anon_sym_DASH_DASH] = ACTIONS(3315), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3315), + [sym_number] = ACTIONS(3315), + [sym_private_property_identifier] = ACTIONS(3315), + [sym_this] = ACTIONS(3315), + [sym_super] = ACTIONS(3315), + [sym_true] = ACTIONS(3315), + [sym_false] = ACTIONS(3315), + [sym_null] = ACTIONS(3315), + [sym_undefined] = ACTIONS(3315), + [anon_sym_AT] = ACTIONS(3315), + [anon_sym_static] = ACTIONS(3315), + [anon_sym_readonly] = ACTIONS(3315), + [anon_sym_get] = ACTIONS(3315), + [anon_sym_set] = ACTIONS(3315), + [anon_sym_declare] = ACTIONS(3315), + [anon_sym_public] = ACTIONS(3315), + [anon_sym_private] = ACTIONS(3315), + [anon_sym_protected] = ACTIONS(3315), + [anon_sym_override] = ACTIONS(3315), + [anon_sym_module] = ACTIONS(3315), + [anon_sym_any] = ACTIONS(3315), + [anon_sym_number] = ACTIONS(3315), + [anon_sym_boolean] = ACTIONS(3315), + [anon_sym_string] = ACTIONS(3315), + [anon_sym_symbol] = ACTIONS(3315), + [anon_sym_object] = ACTIONS(3315), + [anon_sym_abstract] = ACTIONS(3315), + [anon_sym_interface] = ACTIONS(3315), + [anon_sym_enum] = ACTIONS(3315), + [sym_html_comment] = ACTIONS(5), + }, + [1614] = { + [sym_comment] = STATE(1614), + [ts_builtin_sym_end] = ACTIONS(3501), + [sym_identifier] = ACTIONS(3389), + [anon_sym_export] = ACTIONS(3389), + [anon_sym_type] = ACTIONS(3389), + [anon_sym_namespace] = ACTIONS(3389), + [anon_sym_LBRACE] = ACTIONS(3389), + [anon_sym_RBRACE] = ACTIONS(3389), + [anon_sym_typeof] = ACTIONS(3389), + [anon_sym_import] = ACTIONS(3389), + [anon_sym_with] = ACTIONS(3389), + [anon_sym_var] = ACTIONS(3389), + [anon_sym_let] = ACTIONS(3389), + [anon_sym_const] = ACTIONS(3389), + [anon_sym_BANG] = ACTIONS(3389), + [anon_sym_if] = ACTIONS(3389), + [anon_sym_switch] = ACTIONS(3389), + [anon_sym_for] = ACTIONS(3389), + [anon_sym_LPAREN] = ACTIONS(3389), + [anon_sym_await] = ACTIONS(3389), + [anon_sym_while] = ACTIONS(3389), + [anon_sym_do] = ACTIONS(3389), + [anon_sym_try] = ACTIONS(3389), + [anon_sym_break] = ACTIONS(3389), + [anon_sym_continue] = ACTIONS(3389), + [anon_sym_debugger] = ACTIONS(3389), + [anon_sym_return] = ACTIONS(3389), + [anon_sym_throw] = ACTIONS(3389), + [anon_sym_SEMI] = ACTIONS(3389), + [anon_sym_yield] = ACTIONS(3389), + [anon_sym_LBRACK] = ACTIONS(3389), + [anon_sym_LTtemplate_GT] = ACTIONS(3389), + [anon_sym_DQUOTE] = ACTIONS(3389), + [anon_sym_SQUOTE] = ACTIONS(3389), + [anon_sym_class] = ACTIONS(3389), + [anon_sym_async] = ACTIONS(3389), + [anon_sym_function] = ACTIONS(3389), + [anon_sym_new] = ACTIONS(3389), + [anon_sym_using] = ACTIONS(3389), + [anon_sym_PLUS] = ACTIONS(3389), + [anon_sym_DASH] = ACTIONS(3389), + [anon_sym_SLASH] = ACTIONS(3389), + [anon_sym_LT] = ACTIONS(3389), + [anon_sym_TILDE] = ACTIONS(3389), + [anon_sym_void] = ACTIONS(3389), + [anon_sym_delete] = ACTIONS(3389), + [anon_sym_PLUS_PLUS] = ACTIONS(3389), + [anon_sym_DASH_DASH] = ACTIONS(3389), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3389), + [sym_number] = ACTIONS(3389), + [sym_private_property_identifier] = ACTIONS(3389), + [sym_this] = ACTIONS(3389), + [sym_super] = ACTIONS(3389), + [sym_true] = ACTIONS(3389), + [sym_false] = ACTIONS(3389), + [sym_null] = ACTIONS(3389), + [sym_undefined] = ACTIONS(3389), + [anon_sym_AT] = ACTIONS(3389), + [anon_sym_static] = ACTIONS(3389), + [anon_sym_readonly] = ACTIONS(3389), + [anon_sym_get] = ACTIONS(3389), + [anon_sym_set] = ACTIONS(3389), + [anon_sym_declare] = ACTIONS(3389), + [anon_sym_public] = ACTIONS(3389), + [anon_sym_private] = ACTIONS(3389), + [anon_sym_protected] = ACTIONS(3389), + [anon_sym_override] = ACTIONS(3389), + [anon_sym_module] = ACTIONS(3389), + [anon_sym_any] = ACTIONS(3389), + [anon_sym_number] = ACTIONS(3389), + [anon_sym_boolean] = ACTIONS(3389), + [anon_sym_string] = ACTIONS(3389), + [anon_sym_symbol] = ACTIONS(3389), + [anon_sym_object] = ACTIONS(3389), + [anon_sym_abstract] = ACTIONS(3389), + [anon_sym_interface] = ACTIONS(3389), + [anon_sym_enum] = ACTIONS(3389), + [sym_html_comment] = ACTIONS(5), + }, + [1615] = { + [sym_comment] = STATE(1615), + [ts_builtin_sym_end] = ACTIONS(3587), + [sym_identifier] = ACTIONS(3415), + [anon_sym_export] = ACTIONS(3415), + [anon_sym_type] = ACTIONS(3415), + [anon_sym_namespace] = ACTIONS(3415), + [anon_sym_LBRACE] = ACTIONS(3415), + [anon_sym_RBRACE] = ACTIONS(3415), + [anon_sym_typeof] = ACTIONS(3415), + [anon_sym_import] = ACTIONS(3415), + [anon_sym_with] = ACTIONS(3415), + [anon_sym_var] = ACTIONS(3415), + [anon_sym_let] = ACTIONS(3415), + [anon_sym_const] = ACTIONS(3415), + [anon_sym_BANG] = ACTIONS(3415), + [anon_sym_if] = ACTIONS(3415), + [anon_sym_switch] = ACTIONS(3415), + [anon_sym_for] = ACTIONS(3415), + [anon_sym_LPAREN] = ACTIONS(3415), + [anon_sym_await] = ACTIONS(3415), + [anon_sym_while] = ACTIONS(3415), + [anon_sym_do] = ACTIONS(3415), + [anon_sym_try] = ACTIONS(3415), + [anon_sym_break] = ACTIONS(3415), + [anon_sym_continue] = ACTIONS(3415), + [anon_sym_debugger] = ACTIONS(3415), + [anon_sym_return] = ACTIONS(3415), + [anon_sym_throw] = ACTIONS(3415), + [anon_sym_SEMI] = ACTIONS(3415), + [anon_sym_yield] = ACTIONS(3415), + [anon_sym_LBRACK] = ACTIONS(3415), + [anon_sym_LTtemplate_GT] = ACTIONS(3415), + [anon_sym_DQUOTE] = ACTIONS(3415), + [anon_sym_SQUOTE] = ACTIONS(3415), + [anon_sym_class] = ACTIONS(3415), + [anon_sym_async] = ACTIONS(3415), + [anon_sym_function] = ACTIONS(3415), + [anon_sym_new] = ACTIONS(3415), + [anon_sym_using] = ACTIONS(3415), + [anon_sym_PLUS] = ACTIONS(3415), + [anon_sym_DASH] = ACTIONS(3415), + [anon_sym_SLASH] = ACTIONS(3415), + [anon_sym_LT] = ACTIONS(3415), + [anon_sym_TILDE] = ACTIONS(3415), + [anon_sym_void] = ACTIONS(3415), + [anon_sym_delete] = ACTIONS(3415), + [anon_sym_PLUS_PLUS] = ACTIONS(3415), + [anon_sym_DASH_DASH] = ACTIONS(3415), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3415), + [sym_number] = ACTIONS(3415), + [sym_private_property_identifier] = ACTIONS(3415), + [sym_this] = ACTIONS(3415), + [sym_super] = ACTIONS(3415), + [sym_true] = ACTIONS(3415), + [sym_false] = ACTIONS(3415), + [sym_null] = ACTIONS(3415), + [sym_undefined] = ACTIONS(3415), + [anon_sym_AT] = ACTIONS(3415), + [anon_sym_static] = ACTIONS(3415), + [anon_sym_readonly] = ACTIONS(3415), + [anon_sym_get] = ACTIONS(3415), + [anon_sym_set] = ACTIONS(3415), + [anon_sym_declare] = ACTIONS(3415), + [anon_sym_public] = ACTIONS(3415), + [anon_sym_private] = ACTIONS(3415), + [anon_sym_protected] = ACTIONS(3415), + [anon_sym_override] = ACTIONS(3415), + [anon_sym_module] = ACTIONS(3415), + [anon_sym_any] = ACTIONS(3415), + [anon_sym_number] = ACTIONS(3415), + [anon_sym_boolean] = ACTIONS(3415), + [anon_sym_string] = ACTIONS(3415), + [anon_sym_symbol] = ACTIONS(3415), + [anon_sym_object] = ACTIONS(3415), + [anon_sym_abstract] = ACTIONS(3415), + [anon_sym_interface] = ACTIONS(3415), + [anon_sym_enum] = ACTIONS(3415), + [sym_html_comment] = ACTIONS(5), + }, + [1616] = { + [sym_comment] = STATE(1616), + [ts_builtin_sym_end] = ACTIONS(3585), + [sym_identifier] = ACTIONS(3297), + [anon_sym_export] = ACTIONS(3297), + [anon_sym_type] = ACTIONS(3297), + [anon_sym_namespace] = ACTIONS(3297), + [anon_sym_LBRACE] = ACTIONS(3297), + [anon_sym_RBRACE] = ACTIONS(3297), + [anon_sym_typeof] = ACTIONS(3297), + [anon_sym_import] = ACTIONS(3297), + [anon_sym_with] = ACTIONS(3297), + [anon_sym_var] = ACTIONS(3297), + [anon_sym_let] = ACTIONS(3297), + [anon_sym_const] = ACTIONS(3297), + [anon_sym_BANG] = ACTIONS(3297), + [anon_sym_if] = ACTIONS(3297), + [anon_sym_switch] = ACTIONS(3297), + [anon_sym_for] = ACTIONS(3297), + [anon_sym_LPAREN] = ACTIONS(3297), + [anon_sym_await] = ACTIONS(3297), + [anon_sym_while] = ACTIONS(3297), + [anon_sym_do] = ACTIONS(3297), + [anon_sym_try] = ACTIONS(3297), + [anon_sym_break] = ACTIONS(3297), + [anon_sym_continue] = ACTIONS(3297), + [anon_sym_debugger] = ACTIONS(3297), + [anon_sym_return] = ACTIONS(3297), + [anon_sym_throw] = ACTIONS(3297), + [anon_sym_SEMI] = ACTIONS(3297), + [anon_sym_yield] = ACTIONS(3297), + [anon_sym_LBRACK] = ACTIONS(3297), + [anon_sym_LTtemplate_GT] = ACTIONS(3297), + [anon_sym_DQUOTE] = ACTIONS(3297), + [anon_sym_SQUOTE] = ACTIONS(3297), + [anon_sym_class] = ACTIONS(3297), + [anon_sym_async] = ACTIONS(3297), + [anon_sym_function] = ACTIONS(3297), + [anon_sym_new] = ACTIONS(3297), + [anon_sym_using] = ACTIONS(3297), + [anon_sym_PLUS] = ACTIONS(3297), + [anon_sym_DASH] = ACTIONS(3297), + [anon_sym_SLASH] = ACTIONS(3297), + [anon_sym_LT] = ACTIONS(3297), + [anon_sym_TILDE] = ACTIONS(3297), + [anon_sym_void] = ACTIONS(3297), + [anon_sym_delete] = ACTIONS(3297), + [anon_sym_PLUS_PLUS] = ACTIONS(3297), + [anon_sym_DASH_DASH] = ACTIONS(3297), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3297), + [sym_number] = ACTIONS(3297), + [sym_private_property_identifier] = ACTIONS(3297), + [sym_this] = ACTIONS(3297), + [sym_super] = ACTIONS(3297), + [sym_true] = ACTIONS(3297), + [sym_false] = ACTIONS(3297), + [sym_null] = ACTIONS(3297), + [sym_undefined] = ACTIONS(3297), + [anon_sym_AT] = ACTIONS(3297), + [anon_sym_static] = ACTIONS(3297), + [anon_sym_readonly] = ACTIONS(3297), + [anon_sym_get] = ACTIONS(3297), + [anon_sym_set] = ACTIONS(3297), + [anon_sym_declare] = ACTIONS(3297), + [anon_sym_public] = ACTIONS(3297), + [anon_sym_private] = ACTIONS(3297), + [anon_sym_protected] = ACTIONS(3297), + [anon_sym_override] = ACTIONS(3297), + [anon_sym_module] = ACTIONS(3297), + [anon_sym_any] = ACTIONS(3297), + [anon_sym_number] = ACTIONS(3297), + [anon_sym_boolean] = ACTIONS(3297), + [anon_sym_string] = ACTIONS(3297), + [anon_sym_symbol] = ACTIONS(3297), + [anon_sym_object] = ACTIONS(3297), + [anon_sym_abstract] = ACTIONS(3297), + [anon_sym_interface] = ACTIONS(3297), + [anon_sym_enum] = ACTIONS(3297), + [sym_html_comment] = ACTIONS(5), + }, + [1617] = { + [sym_comment] = STATE(1617), + [ts_builtin_sym_end] = ACTIONS(3635), + [sym_identifier] = ACTIONS(3225), + [anon_sym_export] = ACTIONS(3225), + [anon_sym_type] = ACTIONS(3225), + [anon_sym_namespace] = ACTIONS(3225), + [anon_sym_LBRACE] = ACTIONS(3225), + [anon_sym_RBRACE] = ACTIONS(3225), + [anon_sym_typeof] = ACTIONS(3225), + [anon_sym_import] = ACTIONS(3225), + [anon_sym_with] = ACTIONS(3225), + [anon_sym_var] = ACTIONS(3225), + [anon_sym_let] = ACTIONS(3225), + [anon_sym_const] = ACTIONS(3225), + [anon_sym_BANG] = ACTIONS(3225), + [anon_sym_if] = ACTIONS(3225), + [anon_sym_switch] = ACTIONS(3225), + [anon_sym_for] = ACTIONS(3225), + [anon_sym_LPAREN] = ACTIONS(3225), + [anon_sym_await] = ACTIONS(3225), + [anon_sym_while] = ACTIONS(3225), + [anon_sym_do] = ACTIONS(3225), + [anon_sym_try] = ACTIONS(3225), + [anon_sym_break] = ACTIONS(3225), + [anon_sym_continue] = ACTIONS(3225), + [anon_sym_debugger] = ACTIONS(3225), + [anon_sym_return] = ACTIONS(3225), + [anon_sym_throw] = ACTIONS(3225), + [anon_sym_SEMI] = ACTIONS(3225), + [anon_sym_yield] = ACTIONS(3225), + [anon_sym_LBRACK] = ACTIONS(3225), + [anon_sym_LTtemplate_GT] = ACTIONS(3225), + [anon_sym_DQUOTE] = ACTIONS(3225), + [anon_sym_SQUOTE] = ACTIONS(3225), + [anon_sym_class] = ACTIONS(3225), + [anon_sym_async] = ACTIONS(3225), + [anon_sym_function] = ACTIONS(3225), + [anon_sym_new] = ACTIONS(3225), + [anon_sym_using] = ACTIONS(3225), + [anon_sym_PLUS] = ACTIONS(3225), + [anon_sym_DASH] = ACTIONS(3225), + [anon_sym_SLASH] = ACTIONS(3225), + [anon_sym_LT] = ACTIONS(3225), + [anon_sym_TILDE] = ACTIONS(3225), + [anon_sym_void] = ACTIONS(3225), + [anon_sym_delete] = ACTIONS(3225), + [anon_sym_PLUS_PLUS] = ACTIONS(3225), + [anon_sym_DASH_DASH] = ACTIONS(3225), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3225), + [sym_number] = ACTIONS(3225), + [sym_private_property_identifier] = ACTIONS(3225), + [sym_this] = ACTIONS(3225), + [sym_super] = ACTIONS(3225), + [sym_true] = ACTIONS(3225), + [sym_false] = ACTIONS(3225), + [sym_null] = ACTIONS(3225), + [sym_undefined] = ACTIONS(3225), + [anon_sym_AT] = ACTIONS(3225), + [anon_sym_static] = ACTIONS(3225), + [anon_sym_readonly] = ACTIONS(3225), + [anon_sym_get] = ACTIONS(3225), + [anon_sym_set] = ACTIONS(3225), + [anon_sym_declare] = ACTIONS(3225), + [anon_sym_public] = ACTIONS(3225), + [anon_sym_private] = ACTIONS(3225), + [anon_sym_protected] = ACTIONS(3225), + [anon_sym_override] = ACTIONS(3225), + [anon_sym_module] = ACTIONS(3225), + [anon_sym_any] = ACTIONS(3225), + [anon_sym_number] = ACTIONS(3225), + [anon_sym_boolean] = ACTIONS(3225), + [anon_sym_string] = ACTIONS(3225), + [anon_sym_symbol] = ACTIONS(3225), + [anon_sym_object] = ACTIONS(3225), + [anon_sym_abstract] = ACTIONS(3225), + [anon_sym_interface] = ACTIONS(3225), + [anon_sym_enum] = ACTIONS(3225), + [sym_html_comment] = ACTIONS(5), + }, + [1618] = { + [sym_comment] = STATE(1618), + [ts_builtin_sym_end] = ACTIONS(3583), + [sym_identifier] = ACTIONS(3301), + [anon_sym_export] = ACTIONS(3301), + [anon_sym_type] = ACTIONS(3301), + [anon_sym_namespace] = ACTIONS(3301), + [anon_sym_LBRACE] = ACTIONS(3301), + [anon_sym_RBRACE] = ACTIONS(3301), + [anon_sym_typeof] = ACTIONS(3301), + [anon_sym_import] = ACTIONS(3301), + [anon_sym_with] = ACTIONS(3301), + [anon_sym_var] = ACTIONS(3301), + [anon_sym_let] = ACTIONS(3301), + [anon_sym_const] = ACTIONS(3301), + [anon_sym_BANG] = ACTIONS(3301), + [anon_sym_if] = ACTIONS(3301), + [anon_sym_switch] = ACTIONS(3301), + [anon_sym_for] = ACTIONS(3301), + [anon_sym_LPAREN] = ACTIONS(3301), + [anon_sym_await] = ACTIONS(3301), + [anon_sym_while] = ACTIONS(3301), + [anon_sym_do] = ACTIONS(3301), + [anon_sym_try] = ACTIONS(3301), + [anon_sym_break] = ACTIONS(3301), + [anon_sym_continue] = ACTIONS(3301), + [anon_sym_debugger] = ACTIONS(3301), + [anon_sym_return] = ACTIONS(3301), + [anon_sym_throw] = ACTIONS(3301), + [anon_sym_SEMI] = ACTIONS(3301), + [anon_sym_yield] = ACTIONS(3301), + [anon_sym_LBRACK] = ACTIONS(3301), + [anon_sym_LTtemplate_GT] = ACTIONS(3301), + [anon_sym_DQUOTE] = ACTIONS(3301), + [anon_sym_SQUOTE] = ACTIONS(3301), + [anon_sym_class] = ACTIONS(3301), + [anon_sym_async] = ACTIONS(3301), + [anon_sym_function] = ACTIONS(3301), + [anon_sym_new] = ACTIONS(3301), + [anon_sym_using] = ACTIONS(3301), + [anon_sym_PLUS] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_SLASH] = ACTIONS(3301), + [anon_sym_LT] = ACTIONS(3301), + [anon_sym_TILDE] = ACTIONS(3301), + [anon_sym_void] = ACTIONS(3301), + [anon_sym_delete] = ACTIONS(3301), + [anon_sym_PLUS_PLUS] = ACTIONS(3301), + [anon_sym_DASH_DASH] = ACTIONS(3301), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3301), + [sym_number] = ACTIONS(3301), + [sym_private_property_identifier] = ACTIONS(3301), + [sym_this] = ACTIONS(3301), + [sym_super] = ACTIONS(3301), + [sym_true] = ACTIONS(3301), + [sym_false] = ACTIONS(3301), + [sym_null] = ACTIONS(3301), + [sym_undefined] = ACTIONS(3301), + [anon_sym_AT] = ACTIONS(3301), + [anon_sym_static] = ACTIONS(3301), + [anon_sym_readonly] = ACTIONS(3301), + [anon_sym_get] = ACTIONS(3301), + [anon_sym_set] = ACTIONS(3301), + [anon_sym_declare] = ACTIONS(3301), + [anon_sym_public] = ACTIONS(3301), + [anon_sym_private] = ACTIONS(3301), + [anon_sym_protected] = ACTIONS(3301), + [anon_sym_override] = ACTIONS(3301), + [anon_sym_module] = ACTIONS(3301), + [anon_sym_any] = ACTIONS(3301), + [anon_sym_number] = ACTIONS(3301), + [anon_sym_boolean] = ACTIONS(3301), + [anon_sym_string] = ACTIONS(3301), + [anon_sym_symbol] = ACTIONS(3301), + [anon_sym_object] = ACTIONS(3301), + [anon_sym_abstract] = ACTIONS(3301), + [anon_sym_interface] = ACTIONS(3301), + [anon_sym_enum] = ACTIONS(3301), + [sym_html_comment] = ACTIONS(5), + }, + [1619] = { + [sym_comment] = STATE(1619), + [ts_builtin_sym_end] = ACTIONS(3577), + [sym_identifier] = ACTIONS(3311), + [anon_sym_export] = ACTIONS(3311), + [anon_sym_type] = ACTIONS(3311), + [anon_sym_namespace] = ACTIONS(3311), + [anon_sym_LBRACE] = ACTIONS(3311), + [anon_sym_RBRACE] = ACTIONS(3311), + [anon_sym_typeof] = ACTIONS(3311), + [anon_sym_import] = ACTIONS(3311), + [anon_sym_with] = ACTIONS(3311), + [anon_sym_var] = ACTIONS(3311), + [anon_sym_let] = ACTIONS(3311), + [anon_sym_const] = ACTIONS(3311), + [anon_sym_BANG] = ACTIONS(3311), + [anon_sym_if] = ACTIONS(3311), + [anon_sym_switch] = ACTIONS(3311), + [anon_sym_for] = ACTIONS(3311), + [anon_sym_LPAREN] = ACTIONS(3311), + [anon_sym_await] = ACTIONS(3311), + [anon_sym_while] = ACTIONS(3311), + [anon_sym_do] = ACTIONS(3311), + [anon_sym_try] = ACTIONS(3311), + [anon_sym_break] = ACTIONS(3311), + [anon_sym_continue] = ACTIONS(3311), + [anon_sym_debugger] = ACTIONS(3311), + [anon_sym_return] = ACTIONS(3311), + [anon_sym_throw] = ACTIONS(3311), + [anon_sym_SEMI] = ACTIONS(3311), + [anon_sym_yield] = ACTIONS(3311), + [anon_sym_LBRACK] = ACTIONS(3311), + [anon_sym_LTtemplate_GT] = ACTIONS(3311), + [anon_sym_DQUOTE] = ACTIONS(3311), + [anon_sym_SQUOTE] = ACTIONS(3311), + [anon_sym_class] = ACTIONS(3311), + [anon_sym_async] = ACTIONS(3311), + [anon_sym_function] = ACTIONS(3311), + [anon_sym_new] = ACTIONS(3311), + [anon_sym_using] = ACTIONS(3311), + [anon_sym_PLUS] = ACTIONS(3311), + [anon_sym_DASH] = ACTIONS(3311), + [anon_sym_SLASH] = ACTIONS(3311), + [anon_sym_LT] = ACTIONS(3311), + [anon_sym_TILDE] = ACTIONS(3311), + [anon_sym_void] = ACTIONS(3311), + [anon_sym_delete] = ACTIONS(3311), + [anon_sym_PLUS_PLUS] = ACTIONS(3311), + [anon_sym_DASH_DASH] = ACTIONS(3311), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3311), + [sym_number] = ACTIONS(3311), + [sym_private_property_identifier] = ACTIONS(3311), + [sym_this] = ACTIONS(3311), + [sym_super] = ACTIONS(3311), + [sym_true] = ACTIONS(3311), + [sym_false] = ACTIONS(3311), + [sym_null] = ACTIONS(3311), + [sym_undefined] = ACTIONS(3311), + [anon_sym_AT] = ACTIONS(3311), + [anon_sym_static] = ACTIONS(3311), + [anon_sym_readonly] = ACTIONS(3311), + [anon_sym_get] = ACTIONS(3311), + [anon_sym_set] = ACTIONS(3311), + [anon_sym_declare] = ACTIONS(3311), + [anon_sym_public] = ACTIONS(3311), + [anon_sym_private] = ACTIONS(3311), + [anon_sym_protected] = ACTIONS(3311), + [anon_sym_override] = ACTIONS(3311), + [anon_sym_module] = ACTIONS(3311), + [anon_sym_any] = ACTIONS(3311), + [anon_sym_number] = ACTIONS(3311), + [anon_sym_boolean] = ACTIONS(3311), + [anon_sym_string] = ACTIONS(3311), + [anon_sym_symbol] = ACTIONS(3311), + [anon_sym_object] = ACTIONS(3311), + [anon_sym_abstract] = ACTIONS(3311), + [anon_sym_interface] = ACTIONS(3311), + [anon_sym_enum] = ACTIONS(3311), + [sym_html_comment] = ACTIONS(5), + }, + [1620] = { + [sym_comment] = STATE(1620), + [ts_builtin_sym_end] = ACTIONS(3637), + [sym_identifier] = ACTIONS(3217), + [anon_sym_export] = ACTIONS(3217), + [anon_sym_type] = ACTIONS(3217), + [anon_sym_namespace] = ACTIONS(3217), + [anon_sym_LBRACE] = ACTIONS(3217), + [anon_sym_RBRACE] = ACTIONS(3217), + [anon_sym_typeof] = ACTIONS(3217), + [anon_sym_import] = ACTIONS(3217), + [anon_sym_with] = ACTIONS(3217), + [anon_sym_var] = ACTIONS(3217), + [anon_sym_let] = ACTIONS(3217), + [anon_sym_const] = ACTIONS(3217), + [anon_sym_BANG] = ACTIONS(3217), + [anon_sym_if] = ACTIONS(3217), + [anon_sym_switch] = ACTIONS(3217), + [anon_sym_for] = ACTIONS(3217), + [anon_sym_LPAREN] = ACTIONS(3217), + [anon_sym_await] = ACTIONS(3217), + [anon_sym_while] = ACTIONS(3217), + [anon_sym_do] = ACTIONS(3217), + [anon_sym_try] = ACTIONS(3217), + [anon_sym_break] = ACTIONS(3217), + [anon_sym_continue] = ACTIONS(3217), + [anon_sym_debugger] = ACTIONS(3217), + [anon_sym_return] = ACTIONS(3217), + [anon_sym_throw] = ACTIONS(3217), + [anon_sym_SEMI] = ACTIONS(3217), + [anon_sym_yield] = ACTIONS(3217), + [anon_sym_LBRACK] = ACTIONS(3217), + [anon_sym_LTtemplate_GT] = ACTIONS(3217), + [anon_sym_DQUOTE] = ACTIONS(3217), + [anon_sym_SQUOTE] = ACTIONS(3217), + [anon_sym_class] = ACTIONS(3217), + [anon_sym_async] = ACTIONS(3217), + [anon_sym_function] = ACTIONS(3217), + [anon_sym_new] = ACTIONS(3217), + [anon_sym_using] = ACTIONS(3217), + [anon_sym_PLUS] = ACTIONS(3217), + [anon_sym_DASH] = ACTIONS(3217), + [anon_sym_SLASH] = ACTIONS(3217), + [anon_sym_LT] = ACTIONS(3217), + [anon_sym_TILDE] = ACTIONS(3217), + [anon_sym_void] = ACTIONS(3217), + [anon_sym_delete] = ACTIONS(3217), + [anon_sym_PLUS_PLUS] = ACTIONS(3217), + [anon_sym_DASH_DASH] = ACTIONS(3217), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3377), - [sym_number] = ACTIONS(3377), - [sym_private_property_identifier] = ACTIONS(3377), - [sym_this] = ACTIONS(3377), - [sym_super] = ACTIONS(3377), - [sym_true] = ACTIONS(3377), - [sym_false] = ACTIONS(3377), - [sym_null] = ACTIONS(3377), - [sym_undefined] = ACTIONS(3377), - [anon_sym_AT] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_readonly] = ACTIONS(3377), - [anon_sym_get] = ACTIONS(3377), - [anon_sym_set] = ACTIONS(3377), - [anon_sym_declare] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_protected] = ACTIONS(3377), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_any] = ACTIONS(3377), - [anon_sym_number] = ACTIONS(3377), - [anon_sym_boolean] = ACTIONS(3377), - [anon_sym_string] = ACTIONS(3377), - [anon_sym_symbol] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_abstract] = ACTIONS(3377), - [anon_sym_interface] = ACTIONS(3377), - [anon_sym_enum] = ACTIONS(3377), + [anon_sym_BQUOTE] = ACTIONS(3217), + [sym_number] = ACTIONS(3217), + [sym_private_property_identifier] = ACTIONS(3217), + [sym_this] = ACTIONS(3217), + [sym_super] = ACTIONS(3217), + [sym_true] = ACTIONS(3217), + [sym_false] = ACTIONS(3217), + [sym_null] = ACTIONS(3217), + [sym_undefined] = ACTIONS(3217), + [anon_sym_AT] = ACTIONS(3217), + [anon_sym_static] = ACTIONS(3217), + [anon_sym_readonly] = ACTIONS(3217), + [anon_sym_get] = ACTIONS(3217), + [anon_sym_set] = ACTIONS(3217), + [anon_sym_declare] = ACTIONS(3217), + [anon_sym_public] = ACTIONS(3217), + [anon_sym_private] = ACTIONS(3217), + [anon_sym_protected] = ACTIONS(3217), + [anon_sym_override] = ACTIONS(3217), + [anon_sym_module] = ACTIONS(3217), + [anon_sym_any] = ACTIONS(3217), + [anon_sym_number] = ACTIONS(3217), + [anon_sym_boolean] = ACTIONS(3217), + [anon_sym_string] = ACTIONS(3217), + [anon_sym_symbol] = ACTIONS(3217), + [anon_sym_object] = ACTIONS(3217), + [anon_sym_abstract] = ACTIONS(3217), + [anon_sym_interface] = ACTIONS(3217), + [anon_sym_enum] = ACTIONS(3217), [sym_html_comment] = ACTIONS(5), }, - [1758] = { - [sym_comment] = STATE(1758), - [ts_builtin_sym_end] = ACTIONS(3603), - [sym_identifier] = ACTIONS(3421), - [anon_sym_export] = ACTIONS(3421), - [anon_sym_type] = ACTIONS(3421), - [anon_sym_namespace] = ACTIONS(3421), - [anon_sym_LBRACE] = ACTIONS(3421), - [anon_sym_RBRACE] = ACTIONS(3421), - [anon_sym_typeof] = ACTIONS(3421), - [anon_sym_import] = ACTIONS(3421), - [anon_sym_with] = ACTIONS(3421), - [anon_sym_var] = ACTIONS(3421), - [anon_sym_let] = ACTIONS(3421), - [anon_sym_const] = ACTIONS(3421), - [anon_sym_BANG] = ACTIONS(3421), - [anon_sym_if] = ACTIONS(3421), - [anon_sym_switch] = ACTIONS(3421), - [anon_sym_for] = ACTIONS(3421), - [anon_sym_LPAREN] = ACTIONS(3421), - [anon_sym_await] = ACTIONS(3421), - [anon_sym_while] = ACTIONS(3421), - [anon_sym_do] = ACTIONS(3421), - [anon_sym_try] = ACTIONS(3421), - [anon_sym_break] = ACTIONS(3421), - [anon_sym_continue] = ACTIONS(3421), - [anon_sym_debugger] = ACTIONS(3421), - [anon_sym_return] = ACTIONS(3421), - [anon_sym_throw] = ACTIONS(3421), - [anon_sym_SEMI] = ACTIONS(3421), - [anon_sym_yield] = ACTIONS(3421), - [anon_sym_LBRACK] = ACTIONS(3421), - [anon_sym_LTtemplate_GT] = ACTIONS(3421), - [anon_sym_DQUOTE] = ACTIONS(3421), - [anon_sym_SQUOTE] = ACTIONS(3421), - [anon_sym_class] = ACTIONS(3421), - [anon_sym_async] = ACTIONS(3421), - [anon_sym_function] = ACTIONS(3421), - [anon_sym_new] = ACTIONS(3421), - [anon_sym_using] = ACTIONS(3421), - [anon_sym_PLUS] = ACTIONS(3421), - [anon_sym_DASH] = ACTIONS(3421), - [anon_sym_SLASH] = ACTIONS(3421), - [anon_sym_LT] = ACTIONS(3421), - [anon_sym_TILDE] = ACTIONS(3421), - [anon_sym_void] = ACTIONS(3421), - [anon_sym_delete] = ACTIONS(3421), - [anon_sym_PLUS_PLUS] = ACTIONS(3421), - [anon_sym_DASH_DASH] = ACTIONS(3421), + [1621] = { + [sym_comment] = STATE(1621), + [ts_builtin_sym_end] = ACTIONS(3639), + [sym_identifier] = ACTIONS(3223), + [anon_sym_export] = ACTIONS(3223), + [anon_sym_type] = ACTIONS(3223), + [anon_sym_namespace] = ACTIONS(3223), + [anon_sym_LBRACE] = ACTIONS(3223), + [anon_sym_RBRACE] = ACTIONS(3223), + [anon_sym_typeof] = ACTIONS(3223), + [anon_sym_import] = ACTIONS(3223), + [anon_sym_with] = ACTIONS(3223), + [anon_sym_var] = ACTIONS(3223), + [anon_sym_let] = ACTIONS(3223), + [anon_sym_const] = ACTIONS(3223), + [anon_sym_BANG] = ACTIONS(3223), + [anon_sym_if] = ACTIONS(3223), + [anon_sym_switch] = ACTIONS(3223), + [anon_sym_for] = ACTIONS(3223), + [anon_sym_LPAREN] = ACTIONS(3223), + [anon_sym_await] = ACTIONS(3223), + [anon_sym_while] = ACTIONS(3223), + [anon_sym_do] = ACTIONS(3223), + [anon_sym_try] = ACTIONS(3223), + [anon_sym_break] = ACTIONS(3223), + [anon_sym_continue] = ACTIONS(3223), + [anon_sym_debugger] = ACTIONS(3223), + [anon_sym_return] = ACTIONS(3223), + [anon_sym_throw] = ACTIONS(3223), + [anon_sym_SEMI] = ACTIONS(3223), + [anon_sym_yield] = ACTIONS(3223), + [anon_sym_LBRACK] = ACTIONS(3223), + [anon_sym_LTtemplate_GT] = ACTIONS(3223), + [anon_sym_DQUOTE] = ACTIONS(3223), + [anon_sym_SQUOTE] = ACTIONS(3223), + [anon_sym_class] = ACTIONS(3223), + [anon_sym_async] = ACTIONS(3223), + [anon_sym_function] = ACTIONS(3223), + [anon_sym_new] = ACTIONS(3223), + [anon_sym_using] = ACTIONS(3223), + [anon_sym_PLUS] = ACTIONS(3223), + [anon_sym_DASH] = ACTIONS(3223), + [anon_sym_SLASH] = ACTIONS(3223), + [anon_sym_LT] = ACTIONS(3223), + [anon_sym_TILDE] = ACTIONS(3223), + [anon_sym_void] = ACTIONS(3223), + [anon_sym_delete] = ACTIONS(3223), + [anon_sym_PLUS_PLUS] = ACTIONS(3223), + [anon_sym_DASH_DASH] = ACTIONS(3223), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3421), - [sym_number] = ACTIONS(3421), - [sym_private_property_identifier] = ACTIONS(3421), - [sym_this] = ACTIONS(3421), - [sym_super] = ACTIONS(3421), - [sym_true] = ACTIONS(3421), - [sym_false] = ACTIONS(3421), - [sym_null] = ACTIONS(3421), - [sym_undefined] = ACTIONS(3421), - [anon_sym_AT] = ACTIONS(3421), - [anon_sym_static] = ACTIONS(3421), - [anon_sym_readonly] = ACTIONS(3421), - [anon_sym_get] = ACTIONS(3421), - [anon_sym_set] = ACTIONS(3421), - [anon_sym_declare] = ACTIONS(3421), - [anon_sym_public] = ACTIONS(3421), - [anon_sym_private] = ACTIONS(3421), - [anon_sym_protected] = ACTIONS(3421), - [anon_sym_override] = ACTIONS(3421), - [anon_sym_module] = ACTIONS(3421), - [anon_sym_any] = ACTIONS(3421), - [anon_sym_number] = ACTIONS(3421), - [anon_sym_boolean] = ACTIONS(3421), - [anon_sym_string] = ACTIONS(3421), - [anon_sym_symbol] = ACTIONS(3421), - [anon_sym_object] = ACTIONS(3421), - [anon_sym_abstract] = ACTIONS(3421), - [anon_sym_interface] = ACTIONS(3421), - [anon_sym_enum] = ACTIONS(3421), + [anon_sym_BQUOTE] = ACTIONS(3223), + [sym_number] = ACTIONS(3223), + [sym_private_property_identifier] = ACTIONS(3223), + [sym_this] = ACTIONS(3223), + [sym_super] = ACTIONS(3223), + [sym_true] = ACTIONS(3223), + [sym_false] = ACTIONS(3223), + [sym_null] = ACTIONS(3223), + [sym_undefined] = ACTIONS(3223), + [anon_sym_AT] = ACTIONS(3223), + [anon_sym_static] = ACTIONS(3223), + [anon_sym_readonly] = ACTIONS(3223), + [anon_sym_get] = ACTIONS(3223), + [anon_sym_set] = ACTIONS(3223), + [anon_sym_declare] = ACTIONS(3223), + [anon_sym_public] = ACTIONS(3223), + [anon_sym_private] = ACTIONS(3223), + [anon_sym_protected] = ACTIONS(3223), + [anon_sym_override] = ACTIONS(3223), + [anon_sym_module] = ACTIONS(3223), + [anon_sym_any] = ACTIONS(3223), + [anon_sym_number] = ACTIONS(3223), + [anon_sym_boolean] = ACTIONS(3223), + [anon_sym_string] = ACTIONS(3223), + [anon_sym_symbol] = ACTIONS(3223), + [anon_sym_object] = ACTIONS(3223), + [anon_sym_abstract] = ACTIONS(3223), + [anon_sym_interface] = ACTIONS(3223), + [anon_sym_enum] = ACTIONS(3223), [sym_html_comment] = ACTIONS(5), }, - [1759] = { - [sym_comment] = STATE(1759), - [ts_builtin_sym_end] = ACTIONS(3469), - [sym_identifier] = ACTIONS(3377), - [anon_sym_export] = ACTIONS(3377), - [anon_sym_type] = ACTIONS(3377), - [anon_sym_namespace] = ACTIONS(3377), - [anon_sym_LBRACE] = ACTIONS(3377), - [anon_sym_RBRACE] = ACTIONS(3377), - [anon_sym_typeof] = ACTIONS(3377), - [anon_sym_import] = ACTIONS(3377), - [anon_sym_with] = ACTIONS(3377), - [anon_sym_var] = ACTIONS(3377), - [anon_sym_let] = ACTIONS(3377), - [anon_sym_const] = ACTIONS(3377), - [anon_sym_BANG] = ACTIONS(3377), - [anon_sym_if] = ACTIONS(3377), - [anon_sym_switch] = ACTIONS(3377), - [anon_sym_for] = ACTIONS(3377), - [anon_sym_LPAREN] = ACTIONS(3377), - [anon_sym_await] = ACTIONS(3377), - [anon_sym_while] = ACTIONS(3377), - [anon_sym_do] = ACTIONS(3377), - [anon_sym_try] = ACTIONS(3377), - [anon_sym_break] = ACTIONS(3377), - [anon_sym_continue] = ACTIONS(3377), - [anon_sym_debugger] = ACTIONS(3377), - [anon_sym_return] = ACTIONS(3377), - [anon_sym_throw] = ACTIONS(3377), - [anon_sym_SEMI] = ACTIONS(3377), - [anon_sym_yield] = ACTIONS(3377), - [anon_sym_LBRACK] = ACTIONS(3377), - [anon_sym_LTtemplate_GT] = ACTIONS(3377), - [anon_sym_DQUOTE] = ACTIONS(3377), - [anon_sym_SQUOTE] = ACTIONS(3377), - [anon_sym_class] = ACTIONS(3377), - [anon_sym_async] = ACTIONS(3377), - [anon_sym_function] = ACTIONS(3377), - [anon_sym_new] = ACTIONS(3377), - [anon_sym_using] = ACTIONS(3377), - [anon_sym_PLUS] = ACTIONS(3377), - [anon_sym_DASH] = ACTIONS(3377), - [anon_sym_SLASH] = ACTIONS(3377), - [anon_sym_LT] = ACTIONS(3377), - [anon_sym_TILDE] = ACTIONS(3377), - [anon_sym_void] = ACTIONS(3377), - [anon_sym_delete] = ACTIONS(3377), - [anon_sym_PLUS_PLUS] = ACTIONS(3377), - [anon_sym_DASH_DASH] = ACTIONS(3377), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3377), - [sym_number] = ACTIONS(3377), - [sym_private_property_identifier] = ACTIONS(3377), - [sym_this] = ACTIONS(3377), - [sym_super] = ACTIONS(3377), - [sym_true] = ACTIONS(3377), - [sym_false] = ACTIONS(3377), - [sym_null] = ACTIONS(3377), - [sym_undefined] = ACTIONS(3377), - [anon_sym_AT] = ACTIONS(3377), - [anon_sym_static] = ACTIONS(3377), - [anon_sym_readonly] = ACTIONS(3377), - [anon_sym_get] = ACTIONS(3377), - [anon_sym_set] = ACTIONS(3377), - [anon_sym_declare] = ACTIONS(3377), - [anon_sym_public] = ACTIONS(3377), - [anon_sym_private] = ACTIONS(3377), - [anon_sym_protected] = ACTIONS(3377), - [anon_sym_override] = ACTIONS(3377), - [anon_sym_module] = ACTIONS(3377), - [anon_sym_any] = ACTIONS(3377), - [anon_sym_number] = ACTIONS(3377), - [anon_sym_boolean] = ACTIONS(3377), - [anon_sym_string] = ACTIONS(3377), - [anon_sym_symbol] = ACTIONS(3377), - [anon_sym_object] = ACTIONS(3377), - [anon_sym_abstract] = ACTIONS(3377), - [anon_sym_interface] = ACTIONS(3377), - [anon_sym_enum] = ACTIONS(3377), + [1622] = { + [sym_comment] = STATE(1622), + [ts_builtin_sym_end] = ACTIONS(3579), + [sym_identifier] = ACTIONS(3303), + [anon_sym_export] = ACTIONS(3303), + [anon_sym_type] = ACTIONS(3303), + [anon_sym_namespace] = ACTIONS(3303), + [anon_sym_LBRACE] = ACTIONS(3303), + [anon_sym_RBRACE] = ACTIONS(3303), + [anon_sym_typeof] = ACTIONS(3303), + [anon_sym_import] = ACTIONS(3303), + [anon_sym_with] = ACTIONS(3303), + [anon_sym_var] = ACTIONS(3303), + [anon_sym_let] = ACTIONS(3303), + [anon_sym_const] = ACTIONS(3303), + [anon_sym_BANG] = ACTIONS(3303), + [anon_sym_if] = ACTIONS(3303), + [anon_sym_switch] = ACTIONS(3303), + [anon_sym_for] = ACTIONS(3303), + [anon_sym_LPAREN] = ACTIONS(3303), + [anon_sym_await] = ACTIONS(3303), + [anon_sym_while] = ACTIONS(3303), + [anon_sym_do] = ACTIONS(3303), + [anon_sym_try] = ACTIONS(3303), + [anon_sym_break] = ACTIONS(3303), + [anon_sym_continue] = ACTIONS(3303), + [anon_sym_debugger] = ACTIONS(3303), + [anon_sym_return] = ACTIONS(3303), + [anon_sym_throw] = ACTIONS(3303), + [anon_sym_SEMI] = ACTIONS(3303), + [anon_sym_yield] = ACTIONS(3303), + [anon_sym_LBRACK] = ACTIONS(3303), + [anon_sym_LTtemplate_GT] = ACTIONS(3303), + [anon_sym_DQUOTE] = ACTIONS(3303), + [anon_sym_SQUOTE] = ACTIONS(3303), + [anon_sym_class] = ACTIONS(3303), + [anon_sym_async] = ACTIONS(3303), + [anon_sym_function] = ACTIONS(3303), + [anon_sym_new] = ACTIONS(3303), + [anon_sym_using] = ACTIONS(3303), + [anon_sym_PLUS] = ACTIONS(3303), + [anon_sym_DASH] = ACTIONS(3303), + [anon_sym_SLASH] = ACTIONS(3303), + [anon_sym_LT] = ACTIONS(3303), + [anon_sym_TILDE] = ACTIONS(3303), + [anon_sym_void] = ACTIONS(3303), + [anon_sym_delete] = ACTIONS(3303), + [anon_sym_PLUS_PLUS] = ACTIONS(3303), + [anon_sym_DASH_DASH] = ACTIONS(3303), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3303), + [sym_number] = ACTIONS(3303), + [sym_private_property_identifier] = ACTIONS(3303), + [sym_this] = ACTIONS(3303), + [sym_super] = ACTIONS(3303), + [sym_true] = ACTIONS(3303), + [sym_false] = ACTIONS(3303), + [sym_null] = ACTIONS(3303), + [sym_undefined] = ACTIONS(3303), + [anon_sym_AT] = ACTIONS(3303), + [anon_sym_static] = ACTIONS(3303), + [anon_sym_readonly] = ACTIONS(3303), + [anon_sym_get] = ACTIONS(3303), + [anon_sym_set] = ACTIONS(3303), + [anon_sym_declare] = ACTIONS(3303), + [anon_sym_public] = ACTIONS(3303), + [anon_sym_private] = ACTIONS(3303), + [anon_sym_protected] = ACTIONS(3303), + [anon_sym_override] = ACTIONS(3303), + [anon_sym_module] = ACTIONS(3303), + [anon_sym_any] = ACTIONS(3303), + [anon_sym_number] = ACTIONS(3303), + [anon_sym_boolean] = ACTIONS(3303), + [anon_sym_string] = ACTIONS(3303), + [anon_sym_symbol] = ACTIONS(3303), + [anon_sym_object] = ACTIONS(3303), + [anon_sym_abstract] = ACTIONS(3303), + [anon_sym_interface] = ACTIONS(3303), + [anon_sym_enum] = ACTIONS(3303), [sym_html_comment] = ACTIONS(5), }, - [1760] = { - [sym_comment] = STATE(1760), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), + [1623] = { + [sym_comment] = STATE(1623), + [ts_builtin_sym_end] = ACTIONS(3581), + [sym_identifier] = ACTIONS(3267), + [anon_sym_export] = ACTIONS(3267), + [anon_sym_type] = ACTIONS(3267), + [anon_sym_namespace] = ACTIONS(3267), + [anon_sym_LBRACE] = ACTIONS(3267), + [anon_sym_RBRACE] = ACTIONS(3267), + [anon_sym_typeof] = ACTIONS(3267), + [anon_sym_import] = ACTIONS(3267), + [anon_sym_with] = ACTIONS(3267), + [anon_sym_var] = ACTIONS(3267), + [anon_sym_let] = ACTIONS(3267), + [anon_sym_const] = ACTIONS(3267), + [anon_sym_BANG] = ACTIONS(3267), + [anon_sym_if] = ACTIONS(3267), + [anon_sym_switch] = ACTIONS(3267), + [anon_sym_for] = ACTIONS(3267), + [anon_sym_LPAREN] = ACTIONS(3267), + [anon_sym_await] = ACTIONS(3267), + [anon_sym_while] = ACTIONS(3267), + [anon_sym_do] = ACTIONS(3267), + [anon_sym_try] = ACTIONS(3267), + [anon_sym_break] = ACTIONS(3267), + [anon_sym_continue] = ACTIONS(3267), + [anon_sym_debugger] = ACTIONS(3267), + [anon_sym_return] = ACTIONS(3267), + [anon_sym_throw] = ACTIONS(3267), + [anon_sym_SEMI] = ACTIONS(3267), + [anon_sym_yield] = ACTIONS(3267), + [anon_sym_LBRACK] = ACTIONS(3267), + [anon_sym_LTtemplate_GT] = ACTIONS(3267), + [anon_sym_DQUOTE] = ACTIONS(3267), + [anon_sym_SQUOTE] = ACTIONS(3267), + [anon_sym_class] = ACTIONS(3267), + [anon_sym_async] = ACTIONS(3267), + [anon_sym_function] = ACTIONS(3267), + [anon_sym_new] = ACTIONS(3267), + [anon_sym_using] = ACTIONS(3267), + [anon_sym_PLUS] = ACTIONS(3267), + [anon_sym_DASH] = ACTIONS(3267), + [anon_sym_SLASH] = ACTIONS(3267), + [anon_sym_LT] = ACTIONS(3267), + [anon_sym_TILDE] = ACTIONS(3267), + [anon_sym_void] = ACTIONS(3267), + [anon_sym_delete] = ACTIONS(3267), + [anon_sym_PLUS_PLUS] = ACTIONS(3267), + [anon_sym_DASH_DASH] = ACTIONS(3267), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3267), + [sym_number] = ACTIONS(3267), + [sym_private_property_identifier] = ACTIONS(3267), + [sym_this] = ACTIONS(3267), + [sym_super] = ACTIONS(3267), + [sym_true] = ACTIONS(3267), + [sym_false] = ACTIONS(3267), + [sym_null] = ACTIONS(3267), + [sym_undefined] = ACTIONS(3267), + [anon_sym_AT] = ACTIONS(3267), + [anon_sym_static] = ACTIONS(3267), + [anon_sym_readonly] = ACTIONS(3267), + [anon_sym_get] = ACTIONS(3267), + [anon_sym_set] = ACTIONS(3267), + [anon_sym_declare] = ACTIONS(3267), + [anon_sym_public] = ACTIONS(3267), + [anon_sym_private] = ACTIONS(3267), + [anon_sym_protected] = ACTIONS(3267), + [anon_sym_override] = ACTIONS(3267), + [anon_sym_module] = ACTIONS(3267), + [anon_sym_any] = ACTIONS(3267), + [anon_sym_number] = ACTIONS(3267), + [anon_sym_boolean] = ACTIONS(3267), + [anon_sym_string] = ACTIONS(3267), + [anon_sym_symbol] = ACTIONS(3267), + [anon_sym_object] = ACTIONS(3267), + [anon_sym_abstract] = ACTIONS(3267), + [anon_sym_interface] = ACTIONS(3267), + [anon_sym_enum] = ACTIONS(3267), [sym_html_comment] = ACTIONS(5), }, - [1761] = { - [sym_comment] = STATE(1761), - [ts_builtin_sym_end] = ACTIONS(2248), - [sym_identifier] = ACTIONS(2246), - [anon_sym_export] = ACTIONS(2246), - [anon_sym_type] = ACTIONS(2246), - [anon_sym_namespace] = ACTIONS(2246), - [anon_sym_LBRACE] = ACTIONS(2246), - [anon_sym_RBRACE] = ACTIONS(2246), - [anon_sym_typeof] = ACTIONS(2246), - [anon_sym_import] = ACTIONS(2246), - [anon_sym_with] = ACTIONS(2246), - [anon_sym_var] = ACTIONS(2246), - [anon_sym_let] = ACTIONS(2246), - [anon_sym_const] = ACTIONS(2246), - [anon_sym_BANG] = ACTIONS(2246), - [anon_sym_if] = ACTIONS(2246), - [anon_sym_switch] = ACTIONS(2246), - [anon_sym_for] = ACTIONS(2246), - [anon_sym_LPAREN] = ACTIONS(2246), - [anon_sym_await] = ACTIONS(2246), - [anon_sym_while] = ACTIONS(2246), - [anon_sym_do] = ACTIONS(2246), - [anon_sym_try] = ACTIONS(2246), - [anon_sym_break] = ACTIONS(2246), - [anon_sym_continue] = ACTIONS(2246), - [anon_sym_debugger] = ACTIONS(2246), - [anon_sym_return] = ACTIONS(2246), - [anon_sym_throw] = ACTIONS(2246), - [anon_sym_SEMI] = ACTIONS(2246), - [anon_sym_yield] = ACTIONS(2246), - [anon_sym_LBRACK] = ACTIONS(2246), - [anon_sym_LTtemplate_GT] = ACTIONS(2246), - [anon_sym_DQUOTE] = ACTIONS(2246), - [anon_sym_SQUOTE] = ACTIONS(2246), - [anon_sym_class] = ACTIONS(2246), - [anon_sym_async] = ACTIONS(2246), - [anon_sym_function] = ACTIONS(2246), - [anon_sym_new] = ACTIONS(2246), - [anon_sym_using] = ACTIONS(2246), - [anon_sym_PLUS] = ACTIONS(2246), - [anon_sym_DASH] = ACTIONS(2246), - [anon_sym_SLASH] = ACTIONS(2246), - [anon_sym_LT] = ACTIONS(2246), - [anon_sym_TILDE] = ACTIONS(2246), - [anon_sym_void] = ACTIONS(2246), - [anon_sym_delete] = ACTIONS(2246), - [anon_sym_PLUS_PLUS] = ACTIONS(2246), - [anon_sym_DASH_DASH] = ACTIONS(2246), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2246), - [sym_number] = ACTIONS(2246), - [sym_private_property_identifier] = ACTIONS(2246), - [sym_this] = ACTIONS(2246), - [sym_super] = ACTIONS(2246), - [sym_true] = ACTIONS(2246), - [sym_false] = ACTIONS(2246), - [sym_null] = ACTIONS(2246), - [sym_undefined] = ACTIONS(2246), - [anon_sym_AT] = ACTIONS(2246), - [anon_sym_static] = ACTIONS(2246), - [anon_sym_readonly] = ACTIONS(2246), - [anon_sym_get] = ACTIONS(2246), - [anon_sym_set] = ACTIONS(2246), - [anon_sym_declare] = ACTIONS(2246), - [anon_sym_public] = ACTIONS(2246), - [anon_sym_private] = ACTIONS(2246), - [anon_sym_protected] = ACTIONS(2246), - [anon_sym_override] = ACTIONS(2246), - [anon_sym_module] = ACTIONS(2246), - [anon_sym_any] = ACTIONS(2246), - [anon_sym_number] = ACTIONS(2246), - [anon_sym_boolean] = ACTIONS(2246), - [anon_sym_string] = ACTIONS(2246), - [anon_sym_symbol] = ACTIONS(2246), - [anon_sym_object] = ACTIONS(2246), - [anon_sym_abstract] = ACTIONS(2246), - [anon_sym_interface] = ACTIONS(2246), - [anon_sym_enum] = ACTIONS(2246), + [1624] = { + [sym_comment] = STATE(1624), + [ts_builtin_sym_end] = ACTIONS(3647), + [sym_identifier] = ACTIONS(3359), + [anon_sym_export] = ACTIONS(3359), + [anon_sym_type] = ACTIONS(3359), + [anon_sym_namespace] = ACTIONS(3359), + [anon_sym_LBRACE] = ACTIONS(3359), + [anon_sym_RBRACE] = ACTIONS(3359), + [anon_sym_typeof] = ACTIONS(3359), + [anon_sym_import] = ACTIONS(3359), + [anon_sym_with] = ACTIONS(3359), + [anon_sym_var] = ACTIONS(3359), + [anon_sym_let] = ACTIONS(3359), + [anon_sym_const] = ACTIONS(3359), + [anon_sym_BANG] = ACTIONS(3359), + [anon_sym_if] = ACTIONS(3359), + [anon_sym_switch] = ACTIONS(3359), + [anon_sym_for] = ACTIONS(3359), + [anon_sym_LPAREN] = ACTIONS(3359), + [anon_sym_await] = ACTIONS(3359), + [anon_sym_while] = ACTIONS(3359), + [anon_sym_do] = ACTIONS(3359), + [anon_sym_try] = ACTIONS(3359), + [anon_sym_break] = ACTIONS(3359), + [anon_sym_continue] = ACTIONS(3359), + [anon_sym_debugger] = ACTIONS(3359), + [anon_sym_return] = ACTIONS(3359), + [anon_sym_throw] = ACTIONS(3359), + [anon_sym_SEMI] = ACTIONS(3359), + [anon_sym_yield] = ACTIONS(3359), + [anon_sym_LBRACK] = ACTIONS(3359), + [anon_sym_LTtemplate_GT] = ACTIONS(3359), + [anon_sym_DQUOTE] = ACTIONS(3359), + [anon_sym_SQUOTE] = ACTIONS(3359), + [anon_sym_class] = ACTIONS(3359), + [anon_sym_async] = ACTIONS(3359), + [anon_sym_function] = ACTIONS(3359), + [anon_sym_new] = ACTIONS(3359), + [anon_sym_using] = ACTIONS(3359), + [anon_sym_PLUS] = ACTIONS(3359), + [anon_sym_DASH] = ACTIONS(3359), + [anon_sym_SLASH] = ACTIONS(3359), + [anon_sym_LT] = ACTIONS(3359), + [anon_sym_TILDE] = ACTIONS(3359), + [anon_sym_void] = ACTIONS(3359), + [anon_sym_delete] = ACTIONS(3359), + [anon_sym_PLUS_PLUS] = ACTIONS(3359), + [anon_sym_DASH_DASH] = ACTIONS(3359), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3359), + [sym_number] = ACTIONS(3359), + [sym_private_property_identifier] = ACTIONS(3359), + [sym_this] = ACTIONS(3359), + [sym_super] = ACTIONS(3359), + [sym_true] = ACTIONS(3359), + [sym_false] = ACTIONS(3359), + [sym_null] = ACTIONS(3359), + [sym_undefined] = ACTIONS(3359), + [anon_sym_AT] = ACTIONS(3359), + [anon_sym_static] = ACTIONS(3359), + [anon_sym_readonly] = ACTIONS(3359), + [anon_sym_get] = ACTIONS(3359), + [anon_sym_set] = ACTIONS(3359), + [anon_sym_declare] = ACTIONS(3359), + [anon_sym_public] = ACTIONS(3359), + [anon_sym_private] = ACTIONS(3359), + [anon_sym_protected] = ACTIONS(3359), + [anon_sym_override] = ACTIONS(3359), + [anon_sym_module] = ACTIONS(3359), + [anon_sym_any] = ACTIONS(3359), + [anon_sym_number] = ACTIONS(3359), + [anon_sym_boolean] = ACTIONS(3359), + [anon_sym_string] = ACTIONS(3359), + [anon_sym_symbol] = ACTIONS(3359), + [anon_sym_object] = ACTIONS(3359), + [anon_sym_abstract] = ACTIONS(3359), + [anon_sym_interface] = ACTIONS(3359), + [anon_sym_enum] = ACTIONS(3359), [sym_html_comment] = ACTIONS(5), }, - [1762] = { - [sym_comment] = STATE(1762), - [ts_builtin_sym_end] = ACTIONS(3481), + [1625] = { + [sym_comment] = STATE(1625), + [ts_builtin_sym_end] = ACTIONS(3539), [sym_identifier] = ACTIONS(3371), [anon_sym_export] = ACTIONS(3371), [anon_sym_type] = ACTIONS(3371), @@ -206986,495 +195459,414 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3371), [sym_html_comment] = ACTIONS(5), }, - [1763] = { - [sym_comment] = STATE(1763), - [ts_builtin_sym_end] = ACTIONS(3523), - [sym_identifier] = ACTIONS(3311), - [anon_sym_export] = ACTIONS(3311), - [anon_sym_type] = ACTIONS(3311), - [anon_sym_namespace] = ACTIONS(3311), - [anon_sym_LBRACE] = ACTIONS(3311), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_typeof] = ACTIONS(3311), - [anon_sym_import] = ACTIONS(3311), - [anon_sym_with] = ACTIONS(3311), - [anon_sym_var] = ACTIONS(3311), - [anon_sym_let] = ACTIONS(3311), - [anon_sym_const] = ACTIONS(3311), - [anon_sym_BANG] = ACTIONS(3311), - [anon_sym_if] = ACTIONS(3311), - [anon_sym_switch] = ACTIONS(3311), - [anon_sym_for] = ACTIONS(3311), - [anon_sym_LPAREN] = ACTIONS(3311), - [anon_sym_await] = ACTIONS(3311), - [anon_sym_while] = ACTIONS(3311), - [anon_sym_do] = ACTIONS(3311), - [anon_sym_try] = ACTIONS(3311), - [anon_sym_break] = ACTIONS(3311), - [anon_sym_continue] = ACTIONS(3311), - [anon_sym_debugger] = ACTIONS(3311), - [anon_sym_return] = ACTIONS(3311), - [anon_sym_throw] = ACTIONS(3311), - [anon_sym_SEMI] = ACTIONS(3311), - [anon_sym_yield] = ACTIONS(3311), - [anon_sym_LBRACK] = ACTIONS(3311), - [anon_sym_LTtemplate_GT] = ACTIONS(3311), - [anon_sym_DQUOTE] = ACTIONS(3311), - [anon_sym_SQUOTE] = ACTIONS(3311), - [anon_sym_class] = ACTIONS(3311), - [anon_sym_async] = ACTIONS(3311), - [anon_sym_function] = ACTIONS(3311), - [anon_sym_new] = ACTIONS(3311), - [anon_sym_using] = ACTIONS(3311), - [anon_sym_PLUS] = ACTIONS(3311), - [anon_sym_DASH] = ACTIONS(3311), - [anon_sym_SLASH] = ACTIONS(3311), - [anon_sym_LT] = ACTIONS(3311), - [anon_sym_TILDE] = ACTIONS(3311), - [anon_sym_void] = ACTIONS(3311), - [anon_sym_delete] = ACTIONS(3311), - [anon_sym_PLUS_PLUS] = ACTIONS(3311), - [anon_sym_DASH_DASH] = ACTIONS(3311), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3311), - [sym_number] = ACTIONS(3311), - [sym_private_property_identifier] = ACTIONS(3311), - [sym_this] = ACTIONS(3311), - [sym_super] = ACTIONS(3311), - [sym_true] = ACTIONS(3311), - [sym_false] = ACTIONS(3311), - [sym_null] = ACTIONS(3311), - [sym_undefined] = ACTIONS(3311), - [anon_sym_AT] = ACTIONS(3311), - [anon_sym_static] = ACTIONS(3311), - [anon_sym_readonly] = ACTIONS(3311), - [anon_sym_get] = ACTIONS(3311), - [anon_sym_set] = ACTIONS(3311), - [anon_sym_declare] = ACTIONS(3311), - [anon_sym_public] = ACTIONS(3311), - [anon_sym_private] = ACTIONS(3311), - [anon_sym_protected] = ACTIONS(3311), - [anon_sym_override] = ACTIONS(3311), - [anon_sym_module] = ACTIONS(3311), - [anon_sym_any] = ACTIONS(3311), - [anon_sym_number] = ACTIONS(3311), - [anon_sym_boolean] = ACTIONS(3311), - [anon_sym_string] = ACTIONS(3311), - [anon_sym_symbol] = ACTIONS(3311), - [anon_sym_object] = ACTIONS(3311), - [anon_sym_abstract] = ACTIONS(3311), - [anon_sym_interface] = ACTIONS(3311), - [anon_sym_enum] = ACTIONS(3311), + [1626] = { + [sym_comment] = STATE(1626), + [ts_builtin_sym_end] = ACTIONS(3551), + [sym_identifier] = ACTIONS(3269), + [anon_sym_export] = ACTIONS(3269), + [anon_sym_type] = ACTIONS(3269), + [anon_sym_namespace] = ACTIONS(3269), + [anon_sym_LBRACE] = ACTIONS(3269), + [anon_sym_RBRACE] = ACTIONS(3269), + [anon_sym_typeof] = ACTIONS(3269), + [anon_sym_import] = ACTIONS(3269), + [anon_sym_with] = ACTIONS(3269), + [anon_sym_var] = ACTIONS(3269), + [anon_sym_let] = ACTIONS(3269), + [anon_sym_const] = ACTIONS(3269), + [anon_sym_BANG] = ACTIONS(3269), + [anon_sym_if] = ACTIONS(3269), + [anon_sym_switch] = ACTIONS(3269), + [anon_sym_for] = ACTIONS(3269), + [anon_sym_LPAREN] = ACTIONS(3269), + [anon_sym_await] = ACTIONS(3269), + [anon_sym_while] = ACTIONS(3269), + [anon_sym_do] = ACTIONS(3269), + [anon_sym_try] = ACTIONS(3269), + [anon_sym_break] = ACTIONS(3269), + [anon_sym_continue] = ACTIONS(3269), + [anon_sym_debugger] = ACTIONS(3269), + [anon_sym_return] = ACTIONS(3269), + [anon_sym_throw] = ACTIONS(3269), + [anon_sym_SEMI] = ACTIONS(3269), + [anon_sym_yield] = ACTIONS(3269), + [anon_sym_LBRACK] = ACTIONS(3269), + [anon_sym_LTtemplate_GT] = ACTIONS(3269), + [anon_sym_DQUOTE] = ACTIONS(3269), + [anon_sym_SQUOTE] = ACTIONS(3269), + [anon_sym_class] = ACTIONS(3269), + [anon_sym_async] = ACTIONS(3269), + [anon_sym_function] = ACTIONS(3269), + [anon_sym_new] = ACTIONS(3269), + [anon_sym_using] = ACTIONS(3269), + [anon_sym_PLUS] = ACTIONS(3269), + [anon_sym_DASH] = ACTIONS(3269), + [anon_sym_SLASH] = ACTIONS(3269), + [anon_sym_LT] = ACTIONS(3269), + [anon_sym_TILDE] = ACTIONS(3269), + [anon_sym_void] = ACTIONS(3269), + [anon_sym_delete] = ACTIONS(3269), + [anon_sym_PLUS_PLUS] = ACTIONS(3269), + [anon_sym_DASH_DASH] = ACTIONS(3269), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3269), + [sym_number] = ACTIONS(3269), + [sym_private_property_identifier] = ACTIONS(3269), + [sym_this] = ACTIONS(3269), + [sym_super] = ACTIONS(3269), + [sym_true] = ACTIONS(3269), + [sym_false] = ACTIONS(3269), + [sym_null] = ACTIONS(3269), + [sym_undefined] = ACTIONS(3269), + [anon_sym_AT] = ACTIONS(3269), + [anon_sym_static] = ACTIONS(3269), + [anon_sym_readonly] = ACTIONS(3269), + [anon_sym_get] = ACTIONS(3269), + [anon_sym_set] = ACTIONS(3269), + [anon_sym_declare] = ACTIONS(3269), + [anon_sym_public] = ACTIONS(3269), + [anon_sym_private] = ACTIONS(3269), + [anon_sym_protected] = ACTIONS(3269), + [anon_sym_override] = ACTIONS(3269), + [anon_sym_module] = ACTIONS(3269), + [anon_sym_any] = ACTIONS(3269), + [anon_sym_number] = ACTIONS(3269), + [anon_sym_boolean] = ACTIONS(3269), + [anon_sym_string] = ACTIONS(3269), + [anon_sym_symbol] = ACTIONS(3269), + [anon_sym_object] = ACTIONS(3269), + [anon_sym_abstract] = ACTIONS(3269), + [anon_sym_interface] = ACTIONS(3269), + [anon_sym_enum] = ACTIONS(3269), [sym_html_comment] = ACTIONS(5), }, - [1764] = { - [sym_comment] = STATE(1764), - [ts_builtin_sym_end] = ACTIONS(3665), - [sym_identifier] = ACTIONS(3255), - [anon_sym_export] = ACTIONS(3255), - [anon_sym_type] = ACTIONS(3255), - [anon_sym_namespace] = ACTIONS(3255), - [anon_sym_LBRACE] = ACTIONS(3255), - [anon_sym_RBRACE] = ACTIONS(3255), - [anon_sym_typeof] = ACTIONS(3255), - [anon_sym_import] = ACTIONS(3255), - [anon_sym_with] = ACTIONS(3255), - [anon_sym_var] = ACTIONS(3255), - [anon_sym_let] = ACTIONS(3255), - [anon_sym_const] = ACTIONS(3255), - [anon_sym_BANG] = ACTIONS(3255), - [anon_sym_if] = ACTIONS(3255), - [anon_sym_switch] = ACTIONS(3255), - [anon_sym_for] = ACTIONS(3255), - [anon_sym_LPAREN] = ACTIONS(3255), - [anon_sym_await] = ACTIONS(3255), - [anon_sym_while] = ACTIONS(3255), - [anon_sym_do] = ACTIONS(3255), - [anon_sym_try] = ACTIONS(3255), - [anon_sym_break] = ACTIONS(3255), - [anon_sym_continue] = ACTIONS(3255), - [anon_sym_debugger] = ACTIONS(3255), - [anon_sym_return] = ACTIONS(3255), - [anon_sym_throw] = ACTIONS(3255), - [anon_sym_SEMI] = ACTIONS(3255), - [anon_sym_yield] = ACTIONS(3255), - [anon_sym_LBRACK] = ACTIONS(3255), - [anon_sym_LTtemplate_GT] = ACTIONS(3255), - [anon_sym_DQUOTE] = ACTIONS(3255), - [anon_sym_SQUOTE] = ACTIONS(3255), - [anon_sym_class] = ACTIONS(3255), - [anon_sym_async] = ACTIONS(3255), - [anon_sym_function] = ACTIONS(3255), - [anon_sym_new] = ACTIONS(3255), - [anon_sym_using] = ACTIONS(3255), - [anon_sym_PLUS] = ACTIONS(3255), - [anon_sym_DASH] = ACTIONS(3255), - [anon_sym_SLASH] = ACTIONS(3255), - [anon_sym_LT] = ACTIONS(3255), - [anon_sym_TILDE] = ACTIONS(3255), - [anon_sym_void] = ACTIONS(3255), - [anon_sym_delete] = ACTIONS(3255), - [anon_sym_PLUS_PLUS] = ACTIONS(3255), - [anon_sym_DASH_DASH] = ACTIONS(3255), + [1627] = { + [sym_comment] = STATE(1627), + [ts_builtin_sym_end] = ACTIONS(3541), + [sym_identifier] = ACTIONS(3369), + [anon_sym_export] = ACTIONS(3369), + [anon_sym_type] = ACTIONS(3369), + [anon_sym_namespace] = ACTIONS(3369), + [anon_sym_LBRACE] = ACTIONS(3369), + [anon_sym_RBRACE] = ACTIONS(3369), + [anon_sym_typeof] = ACTIONS(3369), + [anon_sym_import] = ACTIONS(3369), + [anon_sym_with] = ACTIONS(3369), + [anon_sym_var] = ACTIONS(3369), + [anon_sym_let] = ACTIONS(3369), + [anon_sym_const] = ACTIONS(3369), + [anon_sym_BANG] = ACTIONS(3369), + [anon_sym_if] = ACTIONS(3369), + [anon_sym_switch] = ACTIONS(3369), + [anon_sym_for] = ACTIONS(3369), + [anon_sym_LPAREN] = ACTIONS(3369), + [anon_sym_await] = ACTIONS(3369), + [anon_sym_while] = ACTIONS(3369), + [anon_sym_do] = ACTIONS(3369), + [anon_sym_try] = ACTIONS(3369), + [anon_sym_break] = ACTIONS(3369), + [anon_sym_continue] = ACTIONS(3369), + [anon_sym_debugger] = ACTIONS(3369), + [anon_sym_return] = ACTIONS(3369), + [anon_sym_throw] = ACTIONS(3369), + [anon_sym_SEMI] = ACTIONS(3369), + [anon_sym_yield] = ACTIONS(3369), + [anon_sym_LBRACK] = ACTIONS(3369), + [anon_sym_LTtemplate_GT] = ACTIONS(3369), + [anon_sym_DQUOTE] = ACTIONS(3369), + [anon_sym_SQUOTE] = ACTIONS(3369), + [anon_sym_class] = ACTIONS(3369), + [anon_sym_async] = ACTIONS(3369), + [anon_sym_function] = ACTIONS(3369), + [anon_sym_new] = ACTIONS(3369), + [anon_sym_using] = ACTIONS(3369), + [anon_sym_PLUS] = ACTIONS(3369), + [anon_sym_DASH] = ACTIONS(3369), + [anon_sym_SLASH] = ACTIONS(3369), + [anon_sym_LT] = ACTIONS(3369), + [anon_sym_TILDE] = ACTIONS(3369), + [anon_sym_void] = ACTIONS(3369), + [anon_sym_delete] = ACTIONS(3369), + [anon_sym_PLUS_PLUS] = ACTIONS(3369), + [anon_sym_DASH_DASH] = ACTIONS(3369), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3255), - [sym_number] = ACTIONS(3255), - [sym_private_property_identifier] = ACTIONS(3255), - [sym_this] = ACTIONS(3255), - [sym_super] = ACTIONS(3255), - [sym_true] = ACTIONS(3255), - [sym_false] = ACTIONS(3255), - [sym_null] = ACTIONS(3255), - [sym_undefined] = ACTIONS(3255), - [anon_sym_AT] = ACTIONS(3255), - [anon_sym_static] = ACTIONS(3255), - [anon_sym_readonly] = ACTIONS(3255), - [anon_sym_get] = ACTIONS(3255), - [anon_sym_set] = ACTIONS(3255), - [anon_sym_declare] = ACTIONS(3255), - [anon_sym_public] = ACTIONS(3255), - [anon_sym_private] = ACTIONS(3255), - [anon_sym_protected] = ACTIONS(3255), - [anon_sym_override] = ACTIONS(3255), - [anon_sym_module] = ACTIONS(3255), - [anon_sym_any] = ACTIONS(3255), - [anon_sym_number] = ACTIONS(3255), - [anon_sym_boolean] = ACTIONS(3255), - [anon_sym_string] = ACTIONS(3255), - [anon_sym_symbol] = ACTIONS(3255), - [anon_sym_object] = ACTIONS(3255), - [anon_sym_abstract] = ACTIONS(3255), - [anon_sym_interface] = ACTIONS(3255), - [anon_sym_enum] = ACTIONS(3255), - [sym_html_comment] = ACTIONS(5), - }, - [1765] = { - [sym_comment] = STATE(1765), - [ts_builtin_sym_end] = ACTIONS(3521), - [sym_identifier] = ACTIONS(3397), - [anon_sym_export] = ACTIONS(3397), - [anon_sym_type] = ACTIONS(3397), - [anon_sym_namespace] = ACTIONS(3397), - [anon_sym_LBRACE] = ACTIONS(3397), - [anon_sym_RBRACE] = ACTIONS(3397), - [anon_sym_typeof] = ACTIONS(3397), - [anon_sym_import] = ACTIONS(3397), - [anon_sym_with] = ACTIONS(3397), - [anon_sym_var] = ACTIONS(3397), - [anon_sym_let] = ACTIONS(3397), - [anon_sym_const] = ACTIONS(3397), - [anon_sym_BANG] = ACTIONS(3397), - [anon_sym_if] = ACTIONS(3397), - [anon_sym_switch] = ACTIONS(3397), - [anon_sym_for] = ACTIONS(3397), - [anon_sym_LPAREN] = ACTIONS(3397), - [anon_sym_await] = ACTIONS(3397), - [anon_sym_while] = ACTIONS(3397), - [anon_sym_do] = ACTIONS(3397), - [anon_sym_try] = ACTIONS(3397), - [anon_sym_break] = ACTIONS(3397), - [anon_sym_continue] = ACTIONS(3397), - [anon_sym_debugger] = ACTIONS(3397), - [anon_sym_return] = ACTIONS(3397), - [anon_sym_throw] = ACTIONS(3397), - [anon_sym_SEMI] = ACTIONS(3397), - [anon_sym_yield] = ACTIONS(3397), - [anon_sym_LBRACK] = ACTIONS(3397), - [anon_sym_LTtemplate_GT] = ACTIONS(3397), - [anon_sym_DQUOTE] = ACTIONS(3397), - [anon_sym_SQUOTE] = ACTIONS(3397), - [anon_sym_class] = ACTIONS(3397), - [anon_sym_async] = ACTIONS(3397), - [anon_sym_function] = ACTIONS(3397), - [anon_sym_new] = ACTIONS(3397), - [anon_sym_using] = ACTIONS(3397), - [anon_sym_PLUS] = ACTIONS(3397), - [anon_sym_DASH] = ACTIONS(3397), - [anon_sym_SLASH] = ACTIONS(3397), - [anon_sym_LT] = ACTIONS(3397), - [anon_sym_TILDE] = ACTIONS(3397), - [anon_sym_void] = ACTIONS(3397), - [anon_sym_delete] = ACTIONS(3397), - [anon_sym_PLUS_PLUS] = ACTIONS(3397), - [anon_sym_DASH_DASH] = ACTIONS(3397), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3397), - [sym_number] = ACTIONS(3397), - [sym_private_property_identifier] = ACTIONS(3397), - [sym_this] = ACTIONS(3397), - [sym_super] = ACTIONS(3397), - [sym_true] = ACTIONS(3397), - [sym_false] = ACTIONS(3397), - [sym_null] = ACTIONS(3397), - [sym_undefined] = ACTIONS(3397), - [anon_sym_AT] = ACTIONS(3397), - [anon_sym_static] = ACTIONS(3397), - [anon_sym_readonly] = ACTIONS(3397), - [anon_sym_get] = ACTIONS(3397), - [anon_sym_set] = ACTIONS(3397), - [anon_sym_declare] = ACTIONS(3397), - [anon_sym_public] = ACTIONS(3397), - [anon_sym_private] = ACTIONS(3397), - [anon_sym_protected] = ACTIONS(3397), - [anon_sym_override] = ACTIONS(3397), - [anon_sym_module] = ACTIONS(3397), - [anon_sym_any] = ACTIONS(3397), - [anon_sym_number] = ACTIONS(3397), - [anon_sym_boolean] = ACTIONS(3397), - [anon_sym_string] = ACTIONS(3397), - [anon_sym_symbol] = ACTIONS(3397), - [anon_sym_object] = ACTIONS(3397), - [anon_sym_abstract] = ACTIONS(3397), - [anon_sym_interface] = ACTIONS(3397), - [anon_sym_enum] = ACTIONS(3397), + [anon_sym_BQUOTE] = ACTIONS(3369), + [sym_number] = ACTIONS(3369), + [sym_private_property_identifier] = ACTIONS(3369), + [sym_this] = ACTIONS(3369), + [sym_super] = ACTIONS(3369), + [sym_true] = ACTIONS(3369), + [sym_false] = ACTIONS(3369), + [sym_null] = ACTIONS(3369), + [sym_undefined] = ACTIONS(3369), + [anon_sym_AT] = ACTIONS(3369), + [anon_sym_static] = ACTIONS(3369), + [anon_sym_readonly] = ACTIONS(3369), + [anon_sym_get] = ACTIONS(3369), + [anon_sym_set] = ACTIONS(3369), + [anon_sym_declare] = ACTIONS(3369), + [anon_sym_public] = ACTIONS(3369), + [anon_sym_private] = ACTIONS(3369), + [anon_sym_protected] = ACTIONS(3369), + [anon_sym_override] = ACTIONS(3369), + [anon_sym_module] = ACTIONS(3369), + [anon_sym_any] = ACTIONS(3369), + [anon_sym_number] = ACTIONS(3369), + [anon_sym_boolean] = ACTIONS(3369), + [anon_sym_string] = ACTIONS(3369), + [anon_sym_symbol] = ACTIONS(3369), + [anon_sym_object] = ACTIONS(3369), + [anon_sym_abstract] = ACTIONS(3369), + [anon_sym_interface] = ACTIONS(3369), + [anon_sym_enum] = ACTIONS(3369), [sym_html_comment] = ACTIONS(5), }, - [1766] = { - [sym_comment] = STATE(1766), - [ts_builtin_sym_end] = ACTIONS(3517), - [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_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_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_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_abstract] = ACTIONS(3341), - [anon_sym_interface] = ACTIONS(3341), - [anon_sym_enum] = ACTIONS(3341), + [1628] = { + [sym_comment] = STATE(1628), + [ts_builtin_sym_end] = ACTIONS(3543), + [sym_identifier] = ACTIONS(3367), + [anon_sym_export] = ACTIONS(3367), + [anon_sym_type] = ACTIONS(3367), + [anon_sym_namespace] = ACTIONS(3367), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_typeof] = ACTIONS(3367), + [anon_sym_import] = ACTIONS(3367), + [anon_sym_with] = ACTIONS(3367), + [anon_sym_var] = ACTIONS(3367), + [anon_sym_let] = ACTIONS(3367), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), + [anon_sym_switch] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_await] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_do] = ACTIONS(3367), + [anon_sym_try] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_debugger] = ACTIONS(3367), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_throw] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [anon_sym_LTtemplate_GT] = ACTIONS(3367), + [anon_sym_DQUOTE] = ACTIONS(3367), + [anon_sym_SQUOTE] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_function] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_using] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(3367), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_TILDE] = ACTIONS(3367), + [anon_sym_void] = ACTIONS(3367), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_PLUS_PLUS] = ACTIONS(3367), + [anon_sym_DASH_DASH] = ACTIONS(3367), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3367), + [sym_number] = ACTIONS(3367), + [sym_private_property_identifier] = ACTIONS(3367), + [sym_this] = ACTIONS(3367), + [sym_super] = ACTIONS(3367), + [sym_true] = ACTIONS(3367), + [sym_false] = ACTIONS(3367), + [sym_null] = ACTIONS(3367), + [sym_undefined] = ACTIONS(3367), + [anon_sym_AT] = ACTIONS(3367), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_get] = ACTIONS(3367), + [anon_sym_set] = ACTIONS(3367), + [anon_sym_declare] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3367), + [anon_sym_module] = ACTIONS(3367), + [anon_sym_any] = ACTIONS(3367), + [anon_sym_number] = ACTIONS(3367), + [anon_sym_boolean] = ACTIONS(3367), + [anon_sym_string] = ACTIONS(3367), + [anon_sym_symbol] = ACTIONS(3367), + [anon_sym_object] = ACTIONS(3367), + [anon_sym_abstract] = ACTIONS(3367), + [anon_sym_interface] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), [sym_html_comment] = ACTIONS(5), }, - [1767] = { - [sym_comment] = STATE(1767), + [1629] = { + [sym_comment] = STATE(1629), [ts_builtin_sym_end] = ACTIONS(3543), - [sym_identifier] = ACTIONS(3235), - [anon_sym_export] = ACTIONS(3235), - [anon_sym_type] = ACTIONS(3235), - [anon_sym_namespace] = ACTIONS(3235), - [anon_sym_LBRACE] = ACTIONS(3235), - [anon_sym_RBRACE] = ACTIONS(3235), - [anon_sym_typeof] = ACTIONS(3235), - [anon_sym_import] = ACTIONS(3235), - [anon_sym_with] = ACTIONS(3235), - [anon_sym_var] = ACTIONS(3235), - [anon_sym_let] = ACTIONS(3235), - [anon_sym_const] = ACTIONS(3235), - [anon_sym_BANG] = ACTIONS(3235), - [anon_sym_if] = ACTIONS(3235), - [anon_sym_switch] = ACTIONS(3235), - [anon_sym_for] = ACTIONS(3235), - [anon_sym_LPAREN] = ACTIONS(3235), - [anon_sym_await] = ACTIONS(3235), - [anon_sym_while] = ACTIONS(3235), - [anon_sym_do] = ACTIONS(3235), - [anon_sym_try] = ACTIONS(3235), - [anon_sym_break] = ACTIONS(3235), - [anon_sym_continue] = ACTIONS(3235), - [anon_sym_debugger] = ACTIONS(3235), - [anon_sym_return] = ACTIONS(3235), - [anon_sym_throw] = ACTIONS(3235), - [anon_sym_SEMI] = ACTIONS(3235), - [anon_sym_yield] = ACTIONS(3235), - [anon_sym_LBRACK] = ACTIONS(3235), - [anon_sym_LTtemplate_GT] = ACTIONS(3235), - [anon_sym_DQUOTE] = ACTIONS(3235), - [anon_sym_SQUOTE] = ACTIONS(3235), - [anon_sym_class] = ACTIONS(3235), - [anon_sym_async] = ACTIONS(3235), - [anon_sym_function] = ACTIONS(3235), - [anon_sym_new] = ACTIONS(3235), - [anon_sym_using] = ACTIONS(3235), - [anon_sym_PLUS] = ACTIONS(3235), - [anon_sym_DASH] = ACTIONS(3235), - [anon_sym_SLASH] = ACTIONS(3235), - [anon_sym_LT] = ACTIONS(3235), - [anon_sym_TILDE] = ACTIONS(3235), - [anon_sym_void] = ACTIONS(3235), - [anon_sym_delete] = ACTIONS(3235), - [anon_sym_PLUS_PLUS] = ACTIONS(3235), - [anon_sym_DASH_DASH] = ACTIONS(3235), + [sym_identifier] = ACTIONS(3367), + [anon_sym_export] = ACTIONS(3367), + [anon_sym_type] = ACTIONS(3367), + [anon_sym_namespace] = ACTIONS(3367), + [anon_sym_LBRACE] = ACTIONS(3367), + [anon_sym_RBRACE] = ACTIONS(3367), + [anon_sym_typeof] = ACTIONS(3367), + [anon_sym_import] = ACTIONS(3367), + [anon_sym_with] = ACTIONS(3367), + [anon_sym_var] = ACTIONS(3367), + [anon_sym_let] = ACTIONS(3367), + [anon_sym_const] = ACTIONS(3367), + [anon_sym_BANG] = ACTIONS(3367), + [anon_sym_if] = ACTIONS(3367), + [anon_sym_switch] = ACTIONS(3367), + [anon_sym_for] = ACTIONS(3367), + [anon_sym_LPAREN] = ACTIONS(3367), + [anon_sym_await] = ACTIONS(3367), + [anon_sym_while] = ACTIONS(3367), + [anon_sym_do] = ACTIONS(3367), + [anon_sym_try] = ACTIONS(3367), + [anon_sym_break] = ACTIONS(3367), + [anon_sym_continue] = ACTIONS(3367), + [anon_sym_debugger] = ACTIONS(3367), + [anon_sym_return] = ACTIONS(3367), + [anon_sym_throw] = ACTIONS(3367), + [anon_sym_SEMI] = ACTIONS(3367), + [anon_sym_yield] = ACTIONS(3367), + [anon_sym_LBRACK] = ACTIONS(3367), + [anon_sym_LTtemplate_GT] = ACTIONS(3367), + [anon_sym_DQUOTE] = ACTIONS(3367), + [anon_sym_SQUOTE] = ACTIONS(3367), + [anon_sym_class] = ACTIONS(3367), + [anon_sym_async] = ACTIONS(3367), + [anon_sym_function] = ACTIONS(3367), + [anon_sym_new] = ACTIONS(3367), + [anon_sym_using] = ACTIONS(3367), + [anon_sym_PLUS] = ACTIONS(3367), + [anon_sym_DASH] = ACTIONS(3367), + [anon_sym_SLASH] = ACTIONS(3367), + [anon_sym_LT] = ACTIONS(3367), + [anon_sym_TILDE] = ACTIONS(3367), + [anon_sym_void] = ACTIONS(3367), + [anon_sym_delete] = ACTIONS(3367), + [anon_sym_PLUS_PLUS] = ACTIONS(3367), + [anon_sym_DASH_DASH] = ACTIONS(3367), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3235), - [sym_number] = ACTIONS(3235), - [sym_private_property_identifier] = ACTIONS(3235), - [sym_this] = ACTIONS(3235), - [sym_super] = ACTIONS(3235), - [sym_true] = ACTIONS(3235), - [sym_false] = ACTIONS(3235), - [sym_null] = ACTIONS(3235), - [sym_undefined] = ACTIONS(3235), - [anon_sym_AT] = ACTIONS(3235), - [anon_sym_static] = ACTIONS(3235), - [anon_sym_readonly] = ACTIONS(3235), - [anon_sym_get] = ACTIONS(3235), - [anon_sym_set] = ACTIONS(3235), - [anon_sym_declare] = ACTIONS(3235), - [anon_sym_public] = ACTIONS(3235), - [anon_sym_private] = ACTIONS(3235), - [anon_sym_protected] = ACTIONS(3235), - [anon_sym_override] = ACTIONS(3235), - [anon_sym_module] = ACTIONS(3235), - [anon_sym_any] = ACTIONS(3235), - [anon_sym_number] = ACTIONS(3235), - [anon_sym_boolean] = ACTIONS(3235), - [anon_sym_string] = ACTIONS(3235), - [anon_sym_symbol] = ACTIONS(3235), - [anon_sym_object] = ACTIONS(3235), - [anon_sym_abstract] = ACTIONS(3235), - [anon_sym_interface] = ACTIONS(3235), - [anon_sym_enum] = ACTIONS(3235), + [anon_sym_BQUOTE] = ACTIONS(3367), + [sym_number] = ACTIONS(3367), + [sym_private_property_identifier] = ACTIONS(3367), + [sym_this] = ACTIONS(3367), + [sym_super] = ACTIONS(3367), + [sym_true] = ACTIONS(3367), + [sym_false] = ACTIONS(3367), + [sym_null] = ACTIONS(3367), + [sym_undefined] = ACTIONS(3367), + [anon_sym_AT] = ACTIONS(3367), + [anon_sym_static] = ACTIONS(3367), + [anon_sym_readonly] = ACTIONS(3367), + [anon_sym_get] = ACTIONS(3367), + [anon_sym_set] = ACTIONS(3367), + [anon_sym_declare] = ACTIONS(3367), + [anon_sym_public] = ACTIONS(3367), + [anon_sym_private] = ACTIONS(3367), + [anon_sym_protected] = ACTIONS(3367), + [anon_sym_override] = ACTIONS(3367), + [anon_sym_module] = ACTIONS(3367), + [anon_sym_any] = ACTIONS(3367), + [anon_sym_number] = ACTIONS(3367), + [anon_sym_boolean] = ACTIONS(3367), + [anon_sym_string] = ACTIONS(3367), + [anon_sym_symbol] = ACTIONS(3367), + [anon_sym_object] = ACTIONS(3367), + [anon_sym_abstract] = ACTIONS(3367), + [anon_sym_interface] = ACTIONS(3367), + [anon_sym_enum] = ACTIONS(3367), [sym_html_comment] = ACTIONS(5), }, - [1768] = { - [sym_comment] = STATE(1768), - [ts_builtin_sym_end] = ACTIONS(3507), - [sym_identifier] = ACTIONS(3343), - [anon_sym_export] = ACTIONS(3343), - [anon_sym_type] = ACTIONS(3343), - [anon_sym_namespace] = ACTIONS(3343), - [anon_sym_LBRACE] = ACTIONS(3343), - [anon_sym_RBRACE] = ACTIONS(3343), - [anon_sym_typeof] = ACTIONS(3343), - [anon_sym_import] = ACTIONS(3343), - [anon_sym_with] = ACTIONS(3343), - [anon_sym_var] = ACTIONS(3343), - [anon_sym_let] = ACTIONS(3343), - [anon_sym_const] = ACTIONS(3343), - [anon_sym_BANG] = ACTIONS(3343), - [anon_sym_if] = ACTIONS(3343), - [anon_sym_switch] = ACTIONS(3343), - [anon_sym_for] = ACTIONS(3343), - [anon_sym_LPAREN] = ACTIONS(3343), - [anon_sym_await] = ACTIONS(3343), - [anon_sym_while] = ACTIONS(3343), - [anon_sym_do] = ACTIONS(3343), - [anon_sym_try] = ACTIONS(3343), - [anon_sym_break] = ACTIONS(3343), - [anon_sym_continue] = ACTIONS(3343), - [anon_sym_debugger] = ACTIONS(3343), - [anon_sym_return] = ACTIONS(3343), - [anon_sym_throw] = ACTIONS(3343), - [anon_sym_SEMI] = ACTIONS(3343), - [anon_sym_yield] = ACTIONS(3343), - [anon_sym_LBRACK] = ACTIONS(3343), - [anon_sym_LTtemplate_GT] = ACTIONS(3343), - [anon_sym_DQUOTE] = ACTIONS(3343), - [anon_sym_SQUOTE] = ACTIONS(3343), - [anon_sym_class] = ACTIONS(3343), - [anon_sym_async] = ACTIONS(3343), - [anon_sym_function] = ACTIONS(3343), - [anon_sym_new] = ACTIONS(3343), - [anon_sym_using] = ACTIONS(3343), - [anon_sym_PLUS] = ACTIONS(3343), - [anon_sym_DASH] = ACTIONS(3343), - [anon_sym_SLASH] = ACTIONS(3343), - [anon_sym_LT] = ACTIONS(3343), - [anon_sym_TILDE] = ACTIONS(3343), - [anon_sym_void] = ACTIONS(3343), - [anon_sym_delete] = ACTIONS(3343), - [anon_sym_PLUS_PLUS] = ACTIONS(3343), - [anon_sym_DASH_DASH] = ACTIONS(3343), + [1630] = { + [sym_comment] = STATE(1630), + [ts_builtin_sym_end] = ACTIONS(3545), + [sym_identifier] = ACTIONS(3273), + [anon_sym_export] = ACTIONS(3273), + [anon_sym_type] = ACTIONS(3273), + [anon_sym_namespace] = ACTIONS(3273), + [anon_sym_LBRACE] = ACTIONS(3273), + [anon_sym_RBRACE] = ACTIONS(3273), + [anon_sym_typeof] = ACTIONS(3273), + [anon_sym_import] = ACTIONS(3273), + [anon_sym_with] = ACTIONS(3273), + [anon_sym_var] = ACTIONS(3273), + [anon_sym_let] = ACTIONS(3273), + [anon_sym_const] = ACTIONS(3273), + [anon_sym_BANG] = ACTIONS(3273), + [anon_sym_if] = ACTIONS(3273), + [anon_sym_switch] = ACTIONS(3273), + [anon_sym_for] = ACTIONS(3273), + [anon_sym_LPAREN] = ACTIONS(3273), + [anon_sym_await] = ACTIONS(3273), + [anon_sym_while] = ACTIONS(3273), + [anon_sym_do] = ACTIONS(3273), + [anon_sym_try] = ACTIONS(3273), + [anon_sym_break] = ACTIONS(3273), + [anon_sym_continue] = ACTIONS(3273), + [anon_sym_debugger] = ACTIONS(3273), + [anon_sym_return] = ACTIONS(3273), + [anon_sym_throw] = ACTIONS(3273), + [anon_sym_SEMI] = ACTIONS(3273), + [anon_sym_yield] = ACTIONS(3273), + [anon_sym_LBRACK] = ACTIONS(3273), + [anon_sym_LTtemplate_GT] = ACTIONS(3273), + [anon_sym_DQUOTE] = ACTIONS(3273), + [anon_sym_SQUOTE] = ACTIONS(3273), + [anon_sym_class] = ACTIONS(3273), + [anon_sym_async] = ACTIONS(3273), + [anon_sym_function] = ACTIONS(3273), + [anon_sym_new] = ACTIONS(3273), + [anon_sym_using] = ACTIONS(3273), + [anon_sym_PLUS] = ACTIONS(3273), + [anon_sym_DASH] = ACTIONS(3273), + [anon_sym_SLASH] = ACTIONS(3273), + [anon_sym_LT] = ACTIONS(3273), + [anon_sym_TILDE] = ACTIONS(3273), + [anon_sym_void] = ACTIONS(3273), + [anon_sym_delete] = ACTIONS(3273), + [anon_sym_PLUS_PLUS] = ACTIONS(3273), + [anon_sym_DASH_DASH] = ACTIONS(3273), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3343), - [sym_number] = ACTIONS(3343), - [sym_private_property_identifier] = ACTIONS(3343), - [sym_this] = ACTIONS(3343), - [sym_super] = ACTIONS(3343), - [sym_true] = ACTIONS(3343), - [sym_false] = ACTIONS(3343), - [sym_null] = ACTIONS(3343), - [sym_undefined] = ACTIONS(3343), - [anon_sym_AT] = ACTIONS(3343), - [anon_sym_static] = ACTIONS(3343), - [anon_sym_readonly] = ACTIONS(3343), - [anon_sym_get] = ACTIONS(3343), - [anon_sym_set] = ACTIONS(3343), - [anon_sym_declare] = ACTIONS(3343), - [anon_sym_public] = ACTIONS(3343), - [anon_sym_private] = ACTIONS(3343), - [anon_sym_protected] = ACTIONS(3343), - [anon_sym_override] = ACTIONS(3343), - [anon_sym_module] = ACTIONS(3343), - [anon_sym_any] = ACTIONS(3343), - [anon_sym_number] = ACTIONS(3343), - [anon_sym_boolean] = ACTIONS(3343), - [anon_sym_string] = ACTIONS(3343), - [anon_sym_symbol] = ACTIONS(3343), - [anon_sym_object] = ACTIONS(3343), - [anon_sym_abstract] = ACTIONS(3343), - [anon_sym_interface] = ACTIONS(3343), - [anon_sym_enum] = ACTIONS(3343), + [anon_sym_BQUOTE] = ACTIONS(3273), + [sym_number] = ACTIONS(3273), + [sym_private_property_identifier] = ACTIONS(3273), + [sym_this] = ACTIONS(3273), + [sym_super] = ACTIONS(3273), + [sym_true] = ACTIONS(3273), + [sym_false] = ACTIONS(3273), + [sym_null] = ACTIONS(3273), + [sym_undefined] = ACTIONS(3273), + [anon_sym_AT] = ACTIONS(3273), + [anon_sym_static] = ACTIONS(3273), + [anon_sym_readonly] = ACTIONS(3273), + [anon_sym_get] = ACTIONS(3273), + [anon_sym_set] = ACTIONS(3273), + [anon_sym_declare] = ACTIONS(3273), + [anon_sym_public] = ACTIONS(3273), + [anon_sym_private] = ACTIONS(3273), + [anon_sym_protected] = ACTIONS(3273), + [anon_sym_override] = ACTIONS(3273), + [anon_sym_module] = ACTIONS(3273), + [anon_sym_any] = ACTIONS(3273), + [anon_sym_number] = ACTIONS(3273), + [anon_sym_boolean] = ACTIONS(3273), + [anon_sym_string] = ACTIONS(3273), + [anon_sym_symbol] = ACTIONS(3273), + [anon_sym_object] = ACTIONS(3273), + [anon_sym_abstract] = ACTIONS(3273), + [anon_sym_interface] = ACTIONS(3273), + [anon_sym_enum] = ACTIONS(3273), [sym_html_comment] = ACTIONS(5), }, - [1769] = { - [sym_comment] = STATE(1769), - [ts_builtin_sym_end] = ACTIONS(3505), + [1631] = { + [sym_comment] = STATE(1631), + [ts_builtin_sym_end] = ACTIONS(3477), [sym_identifier] = ACTIONS(3349), [anon_sym_export] = ACTIONS(3349), [anon_sym_type] = ACTIONS(3349), @@ -207553,865 +195945,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(3349), [sym_html_comment] = ACTIONS(5), }, - [1770] = { - [sym_comment] = STATE(1770), - [ts_builtin_sym_end] = ACTIONS(3593), - [sym_identifier] = ACTIONS(3359), - [anon_sym_export] = ACTIONS(3359), - [anon_sym_type] = ACTIONS(3359), - [anon_sym_namespace] = ACTIONS(3359), - [anon_sym_LBRACE] = ACTIONS(3359), - [anon_sym_RBRACE] = ACTIONS(3359), - [anon_sym_typeof] = ACTIONS(3359), - [anon_sym_import] = ACTIONS(3359), - [anon_sym_with] = ACTIONS(3359), - [anon_sym_var] = ACTIONS(3359), - [anon_sym_let] = ACTIONS(3359), - [anon_sym_const] = ACTIONS(3359), - [anon_sym_BANG] = ACTIONS(3359), - [anon_sym_if] = ACTIONS(3359), - [anon_sym_switch] = ACTIONS(3359), - [anon_sym_for] = ACTIONS(3359), - [anon_sym_LPAREN] = ACTIONS(3359), - [anon_sym_await] = ACTIONS(3359), - [anon_sym_while] = ACTIONS(3359), - [anon_sym_do] = ACTIONS(3359), - [anon_sym_try] = ACTIONS(3359), - [anon_sym_break] = ACTIONS(3359), - [anon_sym_continue] = ACTIONS(3359), - [anon_sym_debugger] = ACTIONS(3359), - [anon_sym_return] = ACTIONS(3359), - [anon_sym_throw] = ACTIONS(3359), - [anon_sym_SEMI] = ACTIONS(3359), - [anon_sym_yield] = ACTIONS(3359), - [anon_sym_LBRACK] = ACTIONS(3359), - [anon_sym_LTtemplate_GT] = ACTIONS(3359), - [anon_sym_DQUOTE] = ACTIONS(3359), - [anon_sym_SQUOTE] = ACTIONS(3359), - [anon_sym_class] = ACTIONS(3359), - [anon_sym_async] = ACTIONS(3359), - [anon_sym_function] = ACTIONS(3359), - [anon_sym_new] = ACTIONS(3359), - [anon_sym_using] = ACTIONS(3359), - [anon_sym_PLUS] = ACTIONS(3359), - [anon_sym_DASH] = ACTIONS(3359), - [anon_sym_SLASH] = ACTIONS(3359), - [anon_sym_LT] = ACTIONS(3359), - [anon_sym_TILDE] = ACTIONS(3359), - [anon_sym_void] = ACTIONS(3359), - [anon_sym_delete] = ACTIONS(3359), - [anon_sym_PLUS_PLUS] = ACTIONS(3359), - [anon_sym_DASH_DASH] = ACTIONS(3359), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3359), - [sym_number] = ACTIONS(3359), - [sym_private_property_identifier] = ACTIONS(3359), - [sym_this] = ACTIONS(3359), - [sym_super] = ACTIONS(3359), - [sym_true] = ACTIONS(3359), - [sym_false] = ACTIONS(3359), - [sym_null] = ACTIONS(3359), - [sym_undefined] = ACTIONS(3359), - [anon_sym_AT] = ACTIONS(3359), - [anon_sym_static] = ACTIONS(3359), - [anon_sym_readonly] = ACTIONS(3359), - [anon_sym_get] = ACTIONS(3359), - [anon_sym_set] = ACTIONS(3359), - [anon_sym_declare] = ACTIONS(3359), - [anon_sym_public] = ACTIONS(3359), - [anon_sym_private] = ACTIONS(3359), - [anon_sym_protected] = ACTIONS(3359), - [anon_sym_override] = ACTIONS(3359), - [anon_sym_module] = ACTIONS(3359), - [anon_sym_any] = ACTIONS(3359), - [anon_sym_number] = ACTIONS(3359), - [anon_sym_boolean] = ACTIONS(3359), - [anon_sym_string] = ACTIONS(3359), - [anon_sym_symbol] = ACTIONS(3359), - [anon_sym_object] = ACTIONS(3359), - [anon_sym_abstract] = ACTIONS(3359), - [anon_sym_interface] = ACTIONS(3359), - [anon_sym_enum] = ACTIONS(3359), - [sym_html_comment] = ACTIONS(5), - }, - [1771] = { - [sym_comment] = STATE(1771), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1772] = { - [sym_comment] = STATE(1772), - [ts_builtin_sym_end] = ACTIONS(2350), - [sym_identifier] = ACTIONS(2176), - [anon_sym_export] = ACTIONS(2176), - [anon_sym_type] = ACTIONS(2176), - [anon_sym_namespace] = ACTIONS(2176), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_typeof] = ACTIONS(2176), - [anon_sym_import] = ACTIONS(2176), - [anon_sym_with] = ACTIONS(2176), - [anon_sym_var] = ACTIONS(2176), - [anon_sym_let] = ACTIONS(2176), - [anon_sym_const] = ACTIONS(2176), - [anon_sym_BANG] = ACTIONS(2176), - [anon_sym_if] = ACTIONS(2176), - [anon_sym_switch] = ACTIONS(2176), - [anon_sym_for] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_await] = ACTIONS(2176), - [anon_sym_while] = ACTIONS(2176), - [anon_sym_do] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2176), - [anon_sym_break] = ACTIONS(2176), - [anon_sym_continue] = ACTIONS(2176), - [anon_sym_debugger] = ACTIONS(2176), - [anon_sym_return] = ACTIONS(2176), - [anon_sym_throw] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_yield] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LTtemplate_GT] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [anon_sym_SQUOTE] = ACTIONS(2176), - [anon_sym_class] = ACTIONS(2176), - [anon_sym_async] = ACTIONS(2176), - [anon_sym_function] = ACTIONS(2176), - [anon_sym_new] = ACTIONS(2176), - [anon_sym_using] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(2176), - [anon_sym_DASH] = ACTIONS(2176), - [anon_sym_SLASH] = ACTIONS(2176), - [anon_sym_LT] = ACTIONS(2176), - [anon_sym_TILDE] = ACTIONS(2176), - [anon_sym_void] = ACTIONS(2176), - [anon_sym_delete] = ACTIONS(2176), - [anon_sym_PLUS_PLUS] = ACTIONS(2176), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2176), - [sym_number] = ACTIONS(2176), - [sym_private_property_identifier] = ACTIONS(2176), - [sym_this] = ACTIONS(2176), - [sym_super] = ACTIONS(2176), - [sym_true] = ACTIONS(2176), - [sym_false] = ACTIONS(2176), - [sym_null] = ACTIONS(2176), - [sym_undefined] = ACTIONS(2176), - [anon_sym_AT] = ACTIONS(2176), - [anon_sym_static] = ACTIONS(2176), - [anon_sym_readonly] = ACTIONS(2176), - [anon_sym_get] = ACTIONS(2176), - [anon_sym_set] = ACTIONS(2176), - [anon_sym_declare] = ACTIONS(2176), - [anon_sym_public] = ACTIONS(2176), - [anon_sym_private] = ACTIONS(2176), - [anon_sym_protected] = ACTIONS(2176), - [anon_sym_override] = ACTIONS(2176), - [anon_sym_module] = ACTIONS(2176), - [anon_sym_any] = ACTIONS(2176), - [anon_sym_number] = ACTIONS(2176), - [anon_sym_boolean] = ACTIONS(2176), - [anon_sym_string] = ACTIONS(2176), - [anon_sym_symbol] = ACTIONS(2176), - [anon_sym_object] = ACTIONS(2176), - [anon_sym_abstract] = ACTIONS(2176), - [anon_sym_interface] = ACTIONS(2176), - [anon_sym_enum] = ACTIONS(2176), - [sym_html_comment] = ACTIONS(5), - }, - [1773] = { - [sym_comment] = STATE(1773), - [ts_builtin_sym_end] = ACTIONS(3595), - [sym_identifier] = ACTIONS(3285), - [anon_sym_export] = ACTIONS(3285), - [anon_sym_type] = ACTIONS(3285), - [anon_sym_namespace] = ACTIONS(3285), - [anon_sym_LBRACE] = ACTIONS(3285), - [anon_sym_RBRACE] = ACTIONS(3285), - [anon_sym_typeof] = ACTIONS(3285), - [anon_sym_import] = ACTIONS(3285), - [anon_sym_with] = ACTIONS(3285), - [anon_sym_var] = ACTIONS(3285), - [anon_sym_let] = ACTIONS(3285), - [anon_sym_const] = ACTIONS(3285), - [anon_sym_BANG] = ACTIONS(3285), - [anon_sym_if] = ACTIONS(3285), - [anon_sym_switch] = ACTIONS(3285), - [anon_sym_for] = ACTIONS(3285), - [anon_sym_LPAREN] = ACTIONS(3285), - [anon_sym_await] = ACTIONS(3285), - [anon_sym_while] = ACTIONS(3285), - [anon_sym_do] = ACTIONS(3285), - [anon_sym_try] = ACTIONS(3285), - [anon_sym_break] = ACTIONS(3285), - [anon_sym_continue] = ACTIONS(3285), - [anon_sym_debugger] = ACTIONS(3285), - [anon_sym_return] = ACTIONS(3285), - [anon_sym_throw] = ACTIONS(3285), - [anon_sym_SEMI] = ACTIONS(3285), - [anon_sym_yield] = ACTIONS(3285), - [anon_sym_LBRACK] = ACTIONS(3285), - [anon_sym_LTtemplate_GT] = ACTIONS(3285), - [anon_sym_DQUOTE] = ACTIONS(3285), - [anon_sym_SQUOTE] = ACTIONS(3285), - [anon_sym_class] = ACTIONS(3285), - [anon_sym_async] = ACTIONS(3285), - [anon_sym_function] = ACTIONS(3285), - [anon_sym_new] = ACTIONS(3285), - [anon_sym_using] = ACTIONS(3285), - [anon_sym_PLUS] = ACTIONS(3285), - [anon_sym_DASH] = ACTIONS(3285), - [anon_sym_SLASH] = ACTIONS(3285), - [anon_sym_LT] = ACTIONS(3285), - [anon_sym_TILDE] = ACTIONS(3285), - [anon_sym_void] = ACTIONS(3285), - [anon_sym_delete] = ACTIONS(3285), - [anon_sym_PLUS_PLUS] = ACTIONS(3285), - [anon_sym_DASH_DASH] = ACTIONS(3285), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3285), - [sym_number] = ACTIONS(3285), - [sym_private_property_identifier] = ACTIONS(3285), - [sym_this] = ACTIONS(3285), - [sym_super] = ACTIONS(3285), - [sym_true] = ACTIONS(3285), - [sym_false] = ACTIONS(3285), - [sym_null] = ACTIONS(3285), - [sym_undefined] = ACTIONS(3285), - [anon_sym_AT] = ACTIONS(3285), - [anon_sym_static] = ACTIONS(3285), - [anon_sym_readonly] = ACTIONS(3285), - [anon_sym_get] = ACTIONS(3285), - [anon_sym_set] = ACTIONS(3285), - [anon_sym_declare] = ACTIONS(3285), - [anon_sym_public] = ACTIONS(3285), - [anon_sym_private] = ACTIONS(3285), - [anon_sym_protected] = ACTIONS(3285), - [anon_sym_override] = ACTIONS(3285), - [anon_sym_module] = ACTIONS(3285), - [anon_sym_any] = ACTIONS(3285), - [anon_sym_number] = ACTIONS(3285), - [anon_sym_boolean] = ACTIONS(3285), - [anon_sym_string] = ACTIONS(3285), - [anon_sym_symbol] = ACTIONS(3285), - [anon_sym_object] = ACTIONS(3285), - [anon_sym_abstract] = ACTIONS(3285), - [anon_sym_interface] = ACTIONS(3285), - [anon_sym_enum] = ACTIONS(3285), - [sym_html_comment] = ACTIONS(5), - }, - [1774] = { - [sym_comment] = STATE(1774), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1775] = { - [sym_comment] = STATE(1775), - [ts_builtin_sym_end] = ACTIONS(3495), - [sym_identifier] = ACTIONS(3357), - [anon_sym_export] = ACTIONS(3357), - [anon_sym_type] = ACTIONS(3357), - [anon_sym_namespace] = ACTIONS(3357), - [anon_sym_LBRACE] = ACTIONS(3357), - [anon_sym_RBRACE] = ACTIONS(3357), - [anon_sym_typeof] = ACTIONS(3357), - [anon_sym_import] = ACTIONS(3357), - [anon_sym_with] = ACTIONS(3357), - [anon_sym_var] = ACTIONS(3357), - [anon_sym_let] = ACTIONS(3357), - [anon_sym_const] = ACTIONS(3357), - [anon_sym_BANG] = ACTIONS(3357), - [anon_sym_if] = ACTIONS(3357), - [anon_sym_switch] = ACTIONS(3357), - [anon_sym_for] = ACTIONS(3357), - [anon_sym_LPAREN] = ACTIONS(3357), - [anon_sym_await] = ACTIONS(3357), - [anon_sym_while] = ACTIONS(3357), - [anon_sym_do] = ACTIONS(3357), - [anon_sym_try] = ACTIONS(3357), - [anon_sym_break] = ACTIONS(3357), - [anon_sym_continue] = ACTIONS(3357), - [anon_sym_debugger] = ACTIONS(3357), - [anon_sym_return] = ACTIONS(3357), - [anon_sym_throw] = ACTIONS(3357), - [anon_sym_SEMI] = ACTIONS(3357), - [anon_sym_yield] = ACTIONS(3357), - [anon_sym_LBRACK] = ACTIONS(3357), - [anon_sym_LTtemplate_GT] = ACTIONS(3357), - [anon_sym_DQUOTE] = ACTIONS(3357), - [anon_sym_SQUOTE] = ACTIONS(3357), - [anon_sym_class] = ACTIONS(3357), - [anon_sym_async] = ACTIONS(3357), - [anon_sym_function] = ACTIONS(3357), - [anon_sym_new] = ACTIONS(3357), - [anon_sym_using] = ACTIONS(3357), - [anon_sym_PLUS] = ACTIONS(3357), - [anon_sym_DASH] = ACTIONS(3357), - [anon_sym_SLASH] = ACTIONS(3357), - [anon_sym_LT] = ACTIONS(3357), - [anon_sym_TILDE] = ACTIONS(3357), - [anon_sym_void] = ACTIONS(3357), - [anon_sym_delete] = ACTIONS(3357), - [anon_sym_PLUS_PLUS] = ACTIONS(3357), - [anon_sym_DASH_DASH] = ACTIONS(3357), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3357), - [sym_number] = ACTIONS(3357), - [sym_private_property_identifier] = ACTIONS(3357), - [sym_this] = ACTIONS(3357), - [sym_super] = ACTIONS(3357), - [sym_true] = ACTIONS(3357), - [sym_false] = ACTIONS(3357), - [sym_null] = ACTIONS(3357), - [sym_undefined] = ACTIONS(3357), - [anon_sym_AT] = ACTIONS(3357), - [anon_sym_static] = ACTIONS(3357), - [anon_sym_readonly] = ACTIONS(3357), - [anon_sym_get] = ACTIONS(3357), - [anon_sym_set] = ACTIONS(3357), - [anon_sym_declare] = ACTIONS(3357), - [anon_sym_public] = ACTIONS(3357), - [anon_sym_private] = ACTIONS(3357), - [anon_sym_protected] = ACTIONS(3357), - [anon_sym_override] = ACTIONS(3357), - [anon_sym_module] = ACTIONS(3357), - [anon_sym_any] = ACTIONS(3357), - [anon_sym_number] = ACTIONS(3357), - [anon_sym_boolean] = ACTIONS(3357), - [anon_sym_string] = ACTIONS(3357), - [anon_sym_symbol] = ACTIONS(3357), - [anon_sym_object] = ACTIONS(3357), - [anon_sym_abstract] = ACTIONS(3357), - [anon_sym_interface] = ACTIONS(3357), - [anon_sym_enum] = ACTIONS(3357), - [sym_html_comment] = ACTIONS(5), - }, - [1776] = { - [sym_comment] = STATE(1776), - [ts_builtin_sym_end] = ACTIONS(3503), - [sym_identifier] = ACTIONS(3353), - [anon_sym_export] = ACTIONS(3353), - [anon_sym_type] = ACTIONS(3353), - [anon_sym_namespace] = ACTIONS(3353), - [anon_sym_LBRACE] = ACTIONS(3353), - [anon_sym_RBRACE] = ACTIONS(3353), - [anon_sym_typeof] = ACTIONS(3353), - [anon_sym_import] = ACTIONS(3353), - [anon_sym_with] = ACTIONS(3353), - [anon_sym_var] = ACTIONS(3353), - [anon_sym_let] = ACTIONS(3353), - [anon_sym_const] = ACTIONS(3353), - [anon_sym_BANG] = ACTIONS(3353), - [anon_sym_if] = ACTIONS(3353), - [anon_sym_switch] = ACTIONS(3353), - [anon_sym_for] = ACTIONS(3353), - [anon_sym_LPAREN] = ACTIONS(3353), - [anon_sym_await] = ACTIONS(3353), - [anon_sym_while] = ACTIONS(3353), - [anon_sym_do] = ACTIONS(3353), - [anon_sym_try] = ACTIONS(3353), - [anon_sym_break] = ACTIONS(3353), - [anon_sym_continue] = ACTIONS(3353), - [anon_sym_debugger] = ACTIONS(3353), - [anon_sym_return] = ACTIONS(3353), - [anon_sym_throw] = ACTIONS(3353), - [anon_sym_SEMI] = ACTIONS(3353), - [anon_sym_yield] = ACTIONS(3353), - [anon_sym_LBRACK] = ACTIONS(3353), - [anon_sym_LTtemplate_GT] = ACTIONS(3353), - [anon_sym_DQUOTE] = ACTIONS(3353), - [anon_sym_SQUOTE] = ACTIONS(3353), - [anon_sym_class] = ACTIONS(3353), - [anon_sym_async] = ACTIONS(3353), - [anon_sym_function] = ACTIONS(3353), - [anon_sym_new] = ACTIONS(3353), - [anon_sym_using] = ACTIONS(3353), - [anon_sym_PLUS] = ACTIONS(3353), - [anon_sym_DASH] = ACTIONS(3353), - [anon_sym_SLASH] = ACTIONS(3353), - [anon_sym_LT] = ACTIONS(3353), - [anon_sym_TILDE] = ACTIONS(3353), - [anon_sym_void] = ACTIONS(3353), - [anon_sym_delete] = ACTIONS(3353), - [anon_sym_PLUS_PLUS] = ACTIONS(3353), - [anon_sym_DASH_DASH] = ACTIONS(3353), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3353), - [sym_number] = ACTIONS(3353), - [sym_private_property_identifier] = ACTIONS(3353), - [sym_this] = ACTIONS(3353), - [sym_super] = ACTIONS(3353), - [sym_true] = ACTIONS(3353), - [sym_false] = ACTIONS(3353), - [sym_null] = ACTIONS(3353), - [sym_undefined] = ACTIONS(3353), - [anon_sym_AT] = ACTIONS(3353), - [anon_sym_static] = ACTIONS(3353), - [anon_sym_readonly] = ACTIONS(3353), - [anon_sym_get] = ACTIONS(3353), - [anon_sym_set] = ACTIONS(3353), - [anon_sym_declare] = ACTIONS(3353), - [anon_sym_public] = ACTIONS(3353), - [anon_sym_private] = ACTIONS(3353), - [anon_sym_protected] = ACTIONS(3353), - [anon_sym_override] = ACTIONS(3353), - [anon_sym_module] = ACTIONS(3353), - [anon_sym_any] = ACTIONS(3353), - [anon_sym_number] = ACTIONS(3353), - [anon_sym_boolean] = ACTIONS(3353), - [anon_sym_string] = ACTIONS(3353), - [anon_sym_symbol] = ACTIONS(3353), - [anon_sym_object] = ACTIONS(3353), - [anon_sym_abstract] = ACTIONS(3353), - [anon_sym_interface] = ACTIONS(3353), - [anon_sym_enum] = ACTIONS(3353), - [sym_html_comment] = ACTIONS(5), - }, - [1777] = { - [sym_comment] = STATE(1777), - [ts_builtin_sym_end] = ACTIONS(3463), - [sym_identifier] = ACTIONS(3327), - [anon_sym_export] = ACTIONS(3327), - [anon_sym_type] = ACTIONS(3327), - [anon_sym_namespace] = ACTIONS(3327), - [anon_sym_LBRACE] = ACTIONS(3327), - [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_typeof] = ACTIONS(3327), - [anon_sym_import] = ACTIONS(3327), - [anon_sym_with] = ACTIONS(3327), - [anon_sym_var] = ACTIONS(3327), - [anon_sym_let] = ACTIONS(3327), - [anon_sym_const] = ACTIONS(3327), - [anon_sym_BANG] = ACTIONS(3327), - [anon_sym_if] = ACTIONS(3327), - [anon_sym_switch] = ACTIONS(3327), - [anon_sym_for] = ACTIONS(3327), - [anon_sym_LPAREN] = ACTIONS(3327), - [anon_sym_await] = ACTIONS(3327), - [anon_sym_while] = ACTIONS(3327), - [anon_sym_do] = ACTIONS(3327), - [anon_sym_try] = ACTIONS(3327), - [anon_sym_break] = ACTIONS(3327), - [anon_sym_continue] = ACTIONS(3327), - [anon_sym_debugger] = ACTIONS(3327), - [anon_sym_return] = ACTIONS(3327), - [anon_sym_throw] = ACTIONS(3327), - [anon_sym_SEMI] = ACTIONS(3327), - [anon_sym_yield] = ACTIONS(3327), - [anon_sym_LBRACK] = ACTIONS(3327), - [anon_sym_LTtemplate_GT] = ACTIONS(3327), - [anon_sym_DQUOTE] = ACTIONS(3327), - [anon_sym_SQUOTE] = ACTIONS(3327), - [anon_sym_class] = ACTIONS(3327), - [anon_sym_async] = ACTIONS(3327), - [anon_sym_function] = ACTIONS(3327), - [anon_sym_new] = ACTIONS(3327), - [anon_sym_using] = ACTIONS(3327), - [anon_sym_PLUS] = ACTIONS(3327), - [anon_sym_DASH] = ACTIONS(3327), - [anon_sym_SLASH] = ACTIONS(3327), - [anon_sym_LT] = ACTIONS(3327), - [anon_sym_TILDE] = ACTIONS(3327), - [anon_sym_void] = ACTIONS(3327), - [anon_sym_delete] = ACTIONS(3327), - [anon_sym_PLUS_PLUS] = ACTIONS(3327), - [anon_sym_DASH_DASH] = ACTIONS(3327), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3327), - [sym_number] = ACTIONS(3327), - [sym_private_property_identifier] = ACTIONS(3327), - [sym_this] = ACTIONS(3327), - [sym_super] = ACTIONS(3327), - [sym_true] = ACTIONS(3327), - [sym_false] = ACTIONS(3327), - [sym_null] = ACTIONS(3327), - [sym_undefined] = ACTIONS(3327), - [anon_sym_AT] = ACTIONS(3327), - [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_abstract] = ACTIONS(3327), - [anon_sym_interface] = ACTIONS(3327), - [anon_sym_enum] = ACTIONS(3327), - [sym_html_comment] = ACTIONS(5), - }, - [1778] = { - [sym_comment] = STATE(1778), - [ts_builtin_sym_end] = ACTIONS(3597), - [sym_identifier] = ACTIONS(3287), - [anon_sym_export] = ACTIONS(3287), - [anon_sym_type] = ACTIONS(3287), - [anon_sym_namespace] = ACTIONS(3287), - [anon_sym_LBRACE] = ACTIONS(3287), - [anon_sym_RBRACE] = ACTIONS(3287), - [anon_sym_typeof] = ACTIONS(3287), - [anon_sym_import] = ACTIONS(3287), - [anon_sym_with] = ACTIONS(3287), - [anon_sym_var] = ACTIONS(3287), - [anon_sym_let] = ACTIONS(3287), - [anon_sym_const] = ACTIONS(3287), - [anon_sym_BANG] = ACTIONS(3287), - [anon_sym_if] = ACTIONS(3287), - [anon_sym_switch] = ACTIONS(3287), - [anon_sym_for] = ACTIONS(3287), - [anon_sym_LPAREN] = ACTIONS(3287), - [anon_sym_await] = ACTIONS(3287), - [anon_sym_while] = ACTIONS(3287), - [anon_sym_do] = ACTIONS(3287), - [anon_sym_try] = ACTIONS(3287), - [anon_sym_break] = ACTIONS(3287), - [anon_sym_continue] = ACTIONS(3287), - [anon_sym_debugger] = ACTIONS(3287), - [anon_sym_return] = ACTIONS(3287), - [anon_sym_throw] = ACTIONS(3287), - [anon_sym_SEMI] = ACTIONS(3287), - [anon_sym_yield] = ACTIONS(3287), - [anon_sym_LBRACK] = ACTIONS(3287), - [anon_sym_LTtemplate_GT] = ACTIONS(3287), - [anon_sym_DQUOTE] = ACTIONS(3287), - [anon_sym_SQUOTE] = ACTIONS(3287), - [anon_sym_class] = ACTIONS(3287), - [anon_sym_async] = ACTIONS(3287), - [anon_sym_function] = ACTIONS(3287), - [anon_sym_new] = ACTIONS(3287), - [anon_sym_using] = ACTIONS(3287), - [anon_sym_PLUS] = ACTIONS(3287), - [anon_sym_DASH] = ACTIONS(3287), - [anon_sym_SLASH] = ACTIONS(3287), - [anon_sym_LT] = ACTIONS(3287), - [anon_sym_TILDE] = ACTIONS(3287), - [anon_sym_void] = ACTIONS(3287), - [anon_sym_delete] = ACTIONS(3287), - [anon_sym_PLUS_PLUS] = ACTIONS(3287), - [anon_sym_DASH_DASH] = ACTIONS(3287), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3287), - [sym_number] = ACTIONS(3287), - [sym_private_property_identifier] = ACTIONS(3287), - [sym_this] = ACTIONS(3287), - [sym_super] = ACTIONS(3287), - [sym_true] = ACTIONS(3287), - [sym_false] = ACTIONS(3287), - [sym_null] = ACTIONS(3287), - [sym_undefined] = ACTIONS(3287), - [anon_sym_AT] = ACTIONS(3287), - [anon_sym_static] = ACTIONS(3287), - [anon_sym_readonly] = ACTIONS(3287), - [anon_sym_get] = ACTIONS(3287), - [anon_sym_set] = ACTIONS(3287), - [anon_sym_declare] = ACTIONS(3287), - [anon_sym_public] = ACTIONS(3287), - [anon_sym_private] = ACTIONS(3287), - [anon_sym_protected] = ACTIONS(3287), - [anon_sym_override] = ACTIONS(3287), - [anon_sym_module] = ACTIONS(3287), - [anon_sym_any] = ACTIONS(3287), - [anon_sym_number] = ACTIONS(3287), - [anon_sym_boolean] = ACTIONS(3287), - [anon_sym_string] = ACTIONS(3287), - [anon_sym_symbol] = ACTIONS(3287), - [anon_sym_object] = ACTIONS(3287), - [anon_sym_abstract] = ACTIONS(3287), - [anon_sym_interface] = ACTIONS(3287), - [anon_sym_enum] = ACTIONS(3287), - [sym_html_comment] = ACTIONS(5), - }, - [1779] = { - [sym_comment] = STATE(1779), - [ts_builtin_sym_end] = ACTIONS(3487), - [sym_identifier] = ACTIONS(3355), - [anon_sym_export] = ACTIONS(3355), - [anon_sym_type] = ACTIONS(3355), - [anon_sym_namespace] = ACTIONS(3355), - [anon_sym_LBRACE] = ACTIONS(3355), - [anon_sym_RBRACE] = ACTIONS(3355), - [anon_sym_typeof] = ACTIONS(3355), - [anon_sym_import] = ACTIONS(3355), - [anon_sym_with] = ACTIONS(3355), - [anon_sym_var] = ACTIONS(3355), - [anon_sym_let] = ACTIONS(3355), - [anon_sym_const] = ACTIONS(3355), - [anon_sym_BANG] = ACTIONS(3355), - [anon_sym_if] = ACTIONS(3355), - [anon_sym_switch] = ACTIONS(3355), - [anon_sym_for] = ACTIONS(3355), - [anon_sym_LPAREN] = ACTIONS(3355), - [anon_sym_await] = ACTIONS(3355), - [anon_sym_while] = ACTIONS(3355), - [anon_sym_do] = ACTIONS(3355), - [anon_sym_try] = ACTIONS(3355), - [anon_sym_break] = ACTIONS(3355), - [anon_sym_continue] = ACTIONS(3355), - [anon_sym_debugger] = ACTIONS(3355), - [anon_sym_return] = ACTIONS(3355), - [anon_sym_throw] = ACTIONS(3355), - [anon_sym_SEMI] = ACTIONS(3355), - [anon_sym_yield] = ACTIONS(3355), - [anon_sym_LBRACK] = ACTIONS(3355), - [anon_sym_LTtemplate_GT] = ACTIONS(3355), - [anon_sym_DQUOTE] = ACTIONS(3355), - [anon_sym_SQUOTE] = ACTIONS(3355), - [anon_sym_class] = ACTIONS(3355), - [anon_sym_async] = ACTIONS(3355), - [anon_sym_function] = ACTIONS(3355), - [anon_sym_new] = ACTIONS(3355), - [anon_sym_using] = ACTIONS(3355), - [anon_sym_PLUS] = ACTIONS(3355), - [anon_sym_DASH] = ACTIONS(3355), - [anon_sym_SLASH] = ACTIONS(3355), - [anon_sym_LT] = ACTIONS(3355), - [anon_sym_TILDE] = ACTIONS(3355), - [anon_sym_void] = ACTIONS(3355), - [anon_sym_delete] = ACTIONS(3355), - [anon_sym_PLUS_PLUS] = ACTIONS(3355), - [anon_sym_DASH_DASH] = ACTIONS(3355), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3355), - [sym_number] = ACTIONS(3355), - [sym_private_property_identifier] = ACTIONS(3355), - [sym_this] = ACTIONS(3355), - [sym_super] = ACTIONS(3355), - [sym_true] = ACTIONS(3355), - [sym_false] = ACTIONS(3355), - [sym_null] = ACTIONS(3355), - [sym_undefined] = ACTIONS(3355), - [anon_sym_AT] = ACTIONS(3355), - [anon_sym_static] = ACTIONS(3355), - [anon_sym_readonly] = ACTIONS(3355), - [anon_sym_get] = ACTIONS(3355), - [anon_sym_set] = ACTIONS(3355), - [anon_sym_declare] = ACTIONS(3355), - [anon_sym_public] = ACTIONS(3355), - [anon_sym_private] = ACTIONS(3355), - [anon_sym_protected] = ACTIONS(3355), - [anon_sym_override] = ACTIONS(3355), - [anon_sym_module] = ACTIONS(3355), - [anon_sym_any] = ACTIONS(3355), - [anon_sym_number] = ACTIONS(3355), - [anon_sym_boolean] = ACTIONS(3355), - [anon_sym_string] = ACTIONS(3355), - [anon_sym_symbol] = ACTIONS(3355), - [anon_sym_object] = ACTIONS(3355), - [anon_sym_abstract] = ACTIONS(3355), - [anon_sym_interface] = ACTIONS(3355), - [anon_sym_enum] = ACTIONS(3355), - [sym_html_comment] = ACTIONS(5), - }, - [1780] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1780), - [sym_formal_parameters] = STATE(7428), - [sym_rest_pattern] = STATE(6811), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(5822), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(3679), + [1632] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1632), + [sym_formal_parameters] = STATE(7245), + [sym_rest_pattern] = STATE(6689), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(5786), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_COMMA] = ACTIONS(3681), + [anon_sym_COMMA] = ACTIONS(3685), [anon_sym_typeof] = ACTIONS(1959), [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3683), + [anon_sym_RBRACK] = ACTIONS(3687), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1971), @@ -208443,55 +196025,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1781] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1781), - [sym_formal_parameters] = STATE(7428), - [sym_rest_pattern] = STATE(6811), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6249), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(3679), + [1633] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1633), + [sym_formal_parameters] = STATE(7245), + [sym_rest_pattern] = STATE(6689), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(6066), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_COMMA] = ACTIONS(3687), + [anon_sym_COMMA] = ACTIONS(3691), [anon_sym_typeof] = ACTIONS(1959), [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3689), + [anon_sym_RBRACK] = ACTIONS(3693), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1971), @@ -208523,55 +196105,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1782] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1782), - [sym_formal_parameters] = STATE(7428), - [sym_rest_pattern] = STATE(6811), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6213), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(3679), + [1634] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1634), + [sym_formal_parameters] = STATE(7245), + [sym_rest_pattern] = STATE(6689), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(5813), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_COMMA] = ACTIONS(3691), + [anon_sym_COMMA] = ACTIONS(3695), [anon_sym_typeof] = ACTIONS(1959), [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3693), + [anon_sym_RBRACK] = ACTIONS(3697), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1971), @@ -208603,55 +196185,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1783] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1783), - [sym_formal_parameters] = STATE(7428), - [sym_rest_pattern] = STATE(6811), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6194), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(3679), + [1635] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1635), + [sym_formal_parameters] = STATE(7245), + [sym_rest_pattern] = STATE(6689), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(5854), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_COMMA] = ACTIONS(3695), + [anon_sym_COMMA] = ACTIONS(3699), [anon_sym_typeof] = ACTIONS(1959), [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3697), + [anon_sym_RBRACK] = ACTIONS(3701), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1971), @@ -208683,55 +196265,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1784] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1784), - [sym_formal_parameters] = STATE(7428), - [sym_rest_pattern] = STATE(6811), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(5996), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(3679), + [1636] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1636), + [sym_formal_parameters] = STATE(7245), + [sym_rest_pattern] = STATE(6689), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(5906), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_COMMA] = ACTIONS(3699), + [anon_sym_COMMA] = ACTIONS(3703), [anon_sym_typeof] = ACTIONS(1959), [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3701), + [anon_sym_RBRACK] = ACTIONS(3705), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1971), @@ -208763,291 +196345,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1785] = { - [sym_comment] = STATE(1785), - [sym_identifier] = ACTIONS(3703), - [anon_sym_export] = ACTIONS(3703), - [anon_sym_type] = ACTIONS(3703), - [anon_sym_namespace] = ACTIONS(3703), - [anon_sym_LBRACE] = ACTIONS(3703), - [anon_sym_typeof] = ACTIONS(3703), - [anon_sym_import] = ACTIONS(3703), - [anon_sym_with] = ACTIONS(3703), - [anon_sym_var] = ACTIONS(3703), - [anon_sym_let] = ACTIONS(3703), - [anon_sym_const] = ACTIONS(3703), - [anon_sym_BANG] = ACTIONS(3703), - [anon_sym_if] = ACTIONS(3703), - [anon_sym_switch] = ACTIONS(3703), - [anon_sym_for] = ACTIONS(3703), - [anon_sym_LPAREN] = ACTIONS(3703), - [anon_sym_await] = ACTIONS(3703), - [anon_sym_while] = ACTIONS(3703), - [anon_sym_do] = ACTIONS(3703), - [anon_sym_try] = ACTIONS(3703), - [anon_sym_break] = ACTIONS(3703), - [anon_sym_continue] = ACTIONS(3703), - [anon_sym_debugger] = ACTIONS(3703), - [anon_sym_return] = ACTIONS(3703), - [anon_sym_throw] = ACTIONS(3703), - [anon_sym_SEMI] = ACTIONS(3703), - [anon_sym_yield] = ACTIONS(3703), - [anon_sym_LBRACK] = ACTIONS(3703), - [anon_sym_LTtemplate_GT] = ACTIONS(3703), - [anon_sym_DQUOTE] = ACTIONS(3703), - [anon_sym_SQUOTE] = ACTIONS(3703), - [anon_sym_class] = ACTIONS(3703), - [anon_sym_async] = ACTIONS(3703), - [anon_sym_function] = ACTIONS(3703), - [anon_sym_new] = ACTIONS(3703), - [anon_sym_using] = ACTIONS(3703), - [anon_sym_PLUS] = ACTIONS(3703), - [anon_sym_DASH] = ACTIONS(3703), - [anon_sym_SLASH] = ACTIONS(3703), - [anon_sym_LT] = ACTIONS(3703), - [anon_sym_TILDE] = ACTIONS(3703), - [anon_sym_void] = ACTIONS(3703), - [anon_sym_delete] = ACTIONS(3703), - [anon_sym_PLUS_PLUS] = ACTIONS(3703), - [anon_sym_DASH_DASH] = ACTIONS(3703), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3703), - [sym_number] = ACTIONS(3703), - [sym_private_property_identifier] = ACTIONS(3703), - [sym_this] = ACTIONS(3703), - [sym_super] = ACTIONS(3703), - [sym_true] = ACTIONS(3703), - [sym_false] = ACTIONS(3703), - [sym_null] = ACTIONS(3703), - [sym_undefined] = ACTIONS(3703), - [anon_sym_AT] = ACTIONS(3703), - [anon_sym_static] = ACTIONS(3703), - [anon_sym_readonly] = ACTIONS(3703), - [anon_sym_get] = ACTIONS(3703), - [anon_sym_set] = ACTIONS(3703), - [anon_sym_declare] = ACTIONS(3703), - [anon_sym_public] = ACTIONS(3703), - [anon_sym_private] = ACTIONS(3703), - [anon_sym_protected] = ACTIONS(3703), - [anon_sym_override] = ACTIONS(3703), - [anon_sym_module] = ACTIONS(3703), - [anon_sym_any] = ACTIONS(3703), - [anon_sym_number] = ACTIONS(3703), - [anon_sym_boolean] = ACTIONS(3703), - [anon_sym_string] = ACTIONS(3703), - [anon_sym_symbol] = ACTIONS(3703), - [anon_sym_object] = ACTIONS(3703), - [anon_sym_abstract] = ACTIONS(3703), - [anon_sym_interface] = ACTIONS(3703), - [anon_sym_enum] = ACTIONS(3703), - [sym_html_comment] = ACTIONS(5), - }, - [1786] = { - [sym_comment] = STATE(1786), - [sym_identifier] = ACTIONS(3705), - [anon_sym_export] = ACTIONS(3705), - [anon_sym_type] = ACTIONS(3705), - [anon_sym_namespace] = ACTIONS(3705), - [anon_sym_LBRACE] = ACTIONS(3705), - [anon_sym_typeof] = ACTIONS(3705), - [anon_sym_import] = ACTIONS(3705), - [anon_sym_with] = ACTIONS(3705), - [anon_sym_var] = ACTIONS(3705), - [anon_sym_let] = ACTIONS(3705), - [anon_sym_const] = ACTIONS(3705), - [anon_sym_BANG] = ACTIONS(3705), - [anon_sym_if] = ACTIONS(3705), - [anon_sym_switch] = ACTIONS(3705), - [anon_sym_for] = ACTIONS(3705), - [anon_sym_LPAREN] = ACTIONS(3705), - [anon_sym_await] = ACTIONS(3705), - [anon_sym_while] = ACTIONS(3705), - [anon_sym_do] = ACTIONS(3705), - [anon_sym_try] = ACTIONS(3705), - [anon_sym_break] = ACTIONS(3705), - [anon_sym_continue] = ACTIONS(3705), - [anon_sym_debugger] = ACTIONS(3705), - [anon_sym_return] = ACTIONS(3705), - [anon_sym_throw] = ACTIONS(3705), - [anon_sym_SEMI] = ACTIONS(3705), - [anon_sym_yield] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3705), - [anon_sym_LTtemplate_GT] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(3705), - [anon_sym_SQUOTE] = ACTIONS(3705), - [anon_sym_class] = ACTIONS(3705), - [anon_sym_async] = ACTIONS(3705), - [anon_sym_function] = ACTIONS(3705), - [anon_sym_new] = ACTIONS(3705), - [anon_sym_using] = ACTIONS(3705), - [anon_sym_PLUS] = ACTIONS(3705), - [anon_sym_DASH] = ACTIONS(3705), - [anon_sym_SLASH] = ACTIONS(3705), - [anon_sym_LT] = ACTIONS(3705), - [anon_sym_TILDE] = ACTIONS(3705), - [anon_sym_void] = ACTIONS(3705), - [anon_sym_delete] = ACTIONS(3705), - [anon_sym_PLUS_PLUS] = ACTIONS(3705), - [anon_sym_DASH_DASH] = ACTIONS(3705), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3705), - [sym_number] = ACTIONS(3705), - [sym_private_property_identifier] = ACTIONS(3705), - [sym_this] = ACTIONS(3705), - [sym_super] = ACTIONS(3705), - [sym_true] = ACTIONS(3705), - [sym_false] = ACTIONS(3705), - [sym_null] = ACTIONS(3705), - [sym_undefined] = ACTIONS(3705), - [anon_sym_AT] = ACTIONS(3705), - [anon_sym_static] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(3705), - [anon_sym_get] = ACTIONS(3705), - [anon_sym_set] = ACTIONS(3705), - [anon_sym_declare] = ACTIONS(3705), - [anon_sym_public] = ACTIONS(3705), - [anon_sym_private] = ACTIONS(3705), - [anon_sym_protected] = ACTIONS(3705), - [anon_sym_override] = ACTIONS(3705), - [anon_sym_module] = ACTIONS(3705), - [anon_sym_any] = ACTIONS(3705), - [anon_sym_number] = ACTIONS(3705), - [anon_sym_boolean] = ACTIONS(3705), - [anon_sym_string] = ACTIONS(3705), - [anon_sym_symbol] = ACTIONS(3705), - [anon_sym_object] = ACTIONS(3705), - [anon_sym_abstract] = ACTIONS(3705), - [anon_sym_interface] = ACTIONS(3705), - [anon_sym_enum] = ACTIONS(3705), - [sym_html_comment] = ACTIONS(5), - }, - [1787] = { - [sym_comment] = STATE(1787), - [sym_identifier] = ACTIONS(3707), - [anon_sym_export] = ACTIONS(3707), - [anon_sym_type] = ACTIONS(3707), - [anon_sym_namespace] = ACTIONS(3707), - [anon_sym_LBRACE] = ACTIONS(3707), - [anon_sym_typeof] = ACTIONS(3707), - [anon_sym_import] = ACTIONS(3707), - [anon_sym_with] = ACTIONS(3707), - [anon_sym_var] = ACTIONS(3707), - [anon_sym_let] = ACTIONS(3707), - [anon_sym_const] = ACTIONS(3707), - [anon_sym_BANG] = ACTIONS(3707), - [anon_sym_if] = ACTIONS(3707), - [anon_sym_switch] = ACTIONS(3707), - [anon_sym_for] = ACTIONS(3707), - [anon_sym_LPAREN] = ACTIONS(3707), - [anon_sym_await] = ACTIONS(3707), - [anon_sym_while] = ACTIONS(3707), - [anon_sym_do] = ACTIONS(3707), - [anon_sym_try] = ACTIONS(3707), - [anon_sym_break] = ACTIONS(3707), - [anon_sym_continue] = ACTIONS(3707), - [anon_sym_debugger] = ACTIONS(3707), - [anon_sym_return] = ACTIONS(3707), - [anon_sym_throw] = ACTIONS(3707), - [anon_sym_SEMI] = ACTIONS(3707), - [anon_sym_yield] = ACTIONS(3707), - [anon_sym_LBRACK] = ACTIONS(3707), - [anon_sym_LTtemplate_GT] = ACTIONS(3707), - [anon_sym_DQUOTE] = ACTIONS(3707), - [anon_sym_SQUOTE] = ACTIONS(3707), - [anon_sym_class] = ACTIONS(3707), - [anon_sym_async] = ACTIONS(3707), - [anon_sym_function] = ACTIONS(3707), - [anon_sym_new] = ACTIONS(3707), - [anon_sym_using] = ACTIONS(3707), - [anon_sym_PLUS] = ACTIONS(3707), - [anon_sym_DASH] = ACTIONS(3707), - [anon_sym_SLASH] = ACTIONS(3707), - [anon_sym_LT] = ACTIONS(3707), - [anon_sym_TILDE] = ACTIONS(3707), - [anon_sym_void] = ACTIONS(3707), - [anon_sym_delete] = ACTIONS(3707), - [anon_sym_PLUS_PLUS] = ACTIONS(3707), - [anon_sym_DASH_DASH] = ACTIONS(3707), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3707), - [sym_number] = ACTIONS(3707), - [sym_private_property_identifier] = ACTIONS(3707), - [sym_this] = ACTIONS(3707), - [sym_super] = ACTIONS(3707), - [sym_true] = ACTIONS(3707), - [sym_false] = ACTIONS(3707), - [sym_null] = ACTIONS(3707), - [sym_undefined] = ACTIONS(3707), - [anon_sym_AT] = ACTIONS(3707), - [anon_sym_static] = ACTIONS(3707), - [anon_sym_readonly] = ACTIONS(3707), - [anon_sym_get] = ACTIONS(3707), - [anon_sym_set] = ACTIONS(3707), - [anon_sym_declare] = ACTIONS(3707), - [anon_sym_public] = ACTIONS(3707), - [anon_sym_private] = ACTIONS(3707), - [anon_sym_protected] = ACTIONS(3707), - [anon_sym_override] = ACTIONS(3707), - [anon_sym_module] = ACTIONS(3707), - [anon_sym_any] = ACTIONS(3707), - [anon_sym_number] = ACTIONS(3707), - [anon_sym_boolean] = ACTIONS(3707), - [anon_sym_string] = ACTIONS(3707), - [anon_sym_symbol] = ACTIONS(3707), - [anon_sym_object] = ACTIONS(3707), - [anon_sym_abstract] = ACTIONS(3707), - [anon_sym_interface] = ACTIONS(3707), - [anon_sym_enum] = ACTIONS(3707), - [sym_html_comment] = ACTIONS(5), - }, - [1788] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1788), - [sym_formal_parameters] = STATE(7428), - [sym_rest_pattern] = STATE(6811), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6869), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(3679), + [1637] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1637), + [sym_formal_parameters] = STATE(7245), + [sym_rest_pattern] = STATE(6689), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(6685), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3709), + [anon_sym_RBRACK] = ACTIONS(3707), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1971), @@ -209079,133 +196424,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1789] = { - [sym_comment] = STATE(1789), - [sym_identifier] = ACTIONS(3705), - [anon_sym_export] = ACTIONS(3705), - [anon_sym_type] = ACTIONS(3705), - [anon_sym_namespace] = ACTIONS(3705), - [anon_sym_LBRACE] = ACTIONS(3705), - [anon_sym_typeof] = ACTIONS(3705), - [anon_sym_import] = ACTIONS(3705), - [anon_sym_with] = ACTIONS(3705), - [anon_sym_var] = ACTIONS(3705), - [anon_sym_let] = ACTIONS(3705), - [anon_sym_const] = ACTIONS(3705), - [anon_sym_BANG] = ACTIONS(3705), - [anon_sym_if] = ACTIONS(3705), - [anon_sym_switch] = ACTIONS(3705), - [anon_sym_for] = ACTIONS(3705), - [anon_sym_LPAREN] = ACTIONS(3705), - [anon_sym_await] = ACTIONS(3705), - [anon_sym_while] = ACTIONS(3705), - [anon_sym_do] = ACTIONS(3705), - [anon_sym_try] = ACTIONS(3705), - [anon_sym_break] = ACTIONS(3705), - [anon_sym_continue] = ACTIONS(3705), - [anon_sym_debugger] = ACTIONS(3705), - [anon_sym_return] = ACTIONS(3705), - [anon_sym_throw] = ACTIONS(3705), - [anon_sym_SEMI] = ACTIONS(3705), - [anon_sym_yield] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3705), - [anon_sym_LTtemplate_GT] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(3705), - [anon_sym_SQUOTE] = ACTIONS(3705), - [anon_sym_class] = ACTIONS(3705), - [anon_sym_async] = ACTIONS(3705), - [anon_sym_function] = ACTIONS(3705), - [anon_sym_new] = ACTIONS(3705), - [anon_sym_using] = ACTIONS(3705), - [anon_sym_PLUS] = ACTIONS(3705), - [anon_sym_DASH] = ACTIONS(3705), - [anon_sym_SLASH] = ACTIONS(3705), - [anon_sym_LT] = ACTIONS(3705), - [anon_sym_TILDE] = ACTIONS(3705), - [anon_sym_void] = ACTIONS(3705), - [anon_sym_delete] = ACTIONS(3705), - [anon_sym_PLUS_PLUS] = ACTIONS(3705), - [anon_sym_DASH_DASH] = ACTIONS(3705), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3705), - [sym_number] = ACTIONS(3705), - [sym_private_property_identifier] = ACTIONS(3705), - [sym_this] = ACTIONS(3705), - [sym_super] = ACTIONS(3705), - [sym_true] = ACTIONS(3705), - [sym_false] = ACTIONS(3705), - [sym_null] = ACTIONS(3705), - [sym_undefined] = ACTIONS(3705), - [anon_sym_AT] = ACTIONS(3705), - [anon_sym_static] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(3705), - [anon_sym_get] = ACTIONS(3705), - [anon_sym_set] = ACTIONS(3705), - [anon_sym_declare] = ACTIONS(3705), - [anon_sym_public] = ACTIONS(3705), - [anon_sym_private] = ACTIONS(3705), - [anon_sym_protected] = ACTIONS(3705), - [anon_sym_override] = ACTIONS(3705), - [anon_sym_module] = ACTIONS(3705), - [anon_sym_any] = ACTIONS(3705), - [anon_sym_number] = ACTIONS(3705), - [anon_sym_boolean] = ACTIONS(3705), - [anon_sym_string] = ACTIONS(3705), - [anon_sym_symbol] = ACTIONS(3705), - [anon_sym_object] = ACTIONS(3705), - [anon_sym_abstract] = ACTIONS(3705), - [anon_sym_interface] = ACTIONS(3705), - [anon_sym_enum] = ACTIONS(3705), - [sym_html_comment] = ACTIONS(5), - }, - [1790] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1790), - [sym_formal_parameters] = STATE(7428), - [sym_rest_pattern] = STATE(6811), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6869), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(3679), + [1638] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1638), + [sym_formal_parameters] = STATE(7245), + [sym_rest_pattern] = STATE(6689), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(6685), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3711), + [anon_sym_RBRACK] = ACTIONS(3709), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1971), @@ -209237,54 +196503,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1791] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1791), - [sym_formal_parameters] = STATE(7428), - [sym_rest_pattern] = STATE(6811), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6869), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(3679), + [1639] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1639), + [sym_formal_parameters] = STATE(7245), + [sym_rest_pattern] = STATE(6689), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(6685), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3713), + [anon_sym_RBRACK] = ACTIONS(3711), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1971), @@ -209316,54 +196582,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1792] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1792), - [sym_formal_parameters] = STATE(7428), - [sym_rest_pattern] = STATE(6811), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6869), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(3679), + [1640] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1640), + [sym_formal_parameters] = STATE(7245), + [sym_rest_pattern] = STATE(6689), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(6685), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3715), + [anon_sym_RBRACK] = ACTIONS(3713), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1971), @@ -209395,359 +196661,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1793] = { - [sym_comment] = STATE(1793), - [sym_identifier] = ACTIONS(3705), - [anon_sym_export] = ACTIONS(3705), - [anon_sym_type] = ACTIONS(3705), - [anon_sym_namespace] = ACTIONS(3705), - [anon_sym_LBRACE] = ACTIONS(3705), - [anon_sym_typeof] = ACTIONS(3705), - [anon_sym_import] = ACTIONS(3705), - [anon_sym_with] = ACTIONS(3705), - [anon_sym_var] = ACTIONS(3705), - [anon_sym_let] = ACTIONS(3705), - [anon_sym_const] = ACTIONS(3705), - [anon_sym_BANG] = ACTIONS(3705), - [anon_sym_if] = ACTIONS(3705), - [anon_sym_switch] = ACTIONS(3705), - [anon_sym_for] = ACTIONS(3705), - [anon_sym_LPAREN] = ACTIONS(3705), - [anon_sym_await] = ACTIONS(3705), - [anon_sym_while] = ACTIONS(3705), - [anon_sym_do] = ACTIONS(3705), - [anon_sym_try] = ACTIONS(3705), - [anon_sym_break] = ACTIONS(3705), - [anon_sym_continue] = ACTIONS(3705), - [anon_sym_debugger] = ACTIONS(3705), - [anon_sym_return] = ACTIONS(3705), - [anon_sym_throw] = ACTIONS(3705), - [anon_sym_SEMI] = ACTIONS(3705), - [anon_sym_yield] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3705), - [anon_sym_LTtemplate_GT] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(3705), - [anon_sym_SQUOTE] = ACTIONS(3705), - [anon_sym_class] = ACTIONS(3705), - [anon_sym_async] = ACTIONS(3705), - [anon_sym_function] = ACTIONS(3705), - [anon_sym_new] = ACTIONS(3705), - [anon_sym_using] = ACTIONS(3705), - [anon_sym_PLUS] = ACTIONS(3705), - [anon_sym_DASH] = ACTIONS(3705), - [anon_sym_SLASH] = ACTIONS(3705), - [anon_sym_LT] = ACTIONS(3705), - [anon_sym_TILDE] = ACTIONS(3705), - [anon_sym_void] = ACTIONS(3705), - [anon_sym_delete] = ACTIONS(3705), - [anon_sym_PLUS_PLUS] = ACTIONS(3705), - [anon_sym_DASH_DASH] = ACTIONS(3705), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3705), - [sym_number] = ACTIONS(3705), - [sym_private_property_identifier] = ACTIONS(3705), - [sym_this] = ACTIONS(3705), - [sym_super] = ACTIONS(3705), - [sym_true] = ACTIONS(3705), - [sym_false] = ACTIONS(3705), - [sym_null] = ACTIONS(3705), - [sym_undefined] = ACTIONS(3705), - [anon_sym_AT] = ACTIONS(3705), - [anon_sym_static] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(3705), - [anon_sym_get] = ACTIONS(3705), - [anon_sym_set] = ACTIONS(3705), - [anon_sym_declare] = ACTIONS(3705), - [anon_sym_public] = ACTIONS(3705), - [anon_sym_private] = ACTIONS(3705), - [anon_sym_protected] = ACTIONS(3705), - [anon_sym_override] = ACTIONS(3705), - [anon_sym_module] = ACTIONS(3705), - [anon_sym_any] = ACTIONS(3705), - [anon_sym_number] = ACTIONS(3705), - [anon_sym_boolean] = ACTIONS(3705), - [anon_sym_string] = ACTIONS(3705), - [anon_sym_symbol] = ACTIONS(3705), - [anon_sym_object] = ACTIONS(3705), - [anon_sym_abstract] = ACTIONS(3705), - [anon_sym_interface] = ACTIONS(3705), - [anon_sym_enum] = ACTIONS(3705), - [sym_html_comment] = ACTIONS(5), - }, - [1794] = { - [sym_comment] = STATE(1794), - [sym_identifier] = ACTIONS(3705), - [anon_sym_export] = ACTIONS(3705), - [anon_sym_type] = ACTIONS(3705), - [anon_sym_namespace] = ACTIONS(3705), - [anon_sym_LBRACE] = ACTIONS(3705), - [anon_sym_typeof] = ACTIONS(3705), - [anon_sym_import] = ACTIONS(3705), - [anon_sym_with] = ACTIONS(3705), - [anon_sym_var] = ACTIONS(3705), - [anon_sym_let] = ACTIONS(3705), - [anon_sym_const] = ACTIONS(3705), - [anon_sym_BANG] = ACTIONS(3705), - [anon_sym_if] = ACTIONS(3705), - [anon_sym_switch] = ACTIONS(3705), - [anon_sym_for] = ACTIONS(3705), - [anon_sym_LPAREN] = ACTIONS(3705), - [anon_sym_await] = ACTIONS(3705), - [anon_sym_while] = ACTIONS(3705), - [anon_sym_do] = ACTIONS(3705), - [anon_sym_try] = ACTIONS(3705), - [anon_sym_break] = ACTIONS(3705), - [anon_sym_continue] = ACTIONS(3705), - [anon_sym_debugger] = ACTIONS(3705), - [anon_sym_return] = ACTIONS(3705), - [anon_sym_throw] = ACTIONS(3705), - [anon_sym_SEMI] = ACTIONS(3705), - [anon_sym_yield] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3705), - [anon_sym_LTtemplate_GT] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(3705), - [anon_sym_SQUOTE] = ACTIONS(3705), - [anon_sym_class] = ACTIONS(3705), - [anon_sym_async] = ACTIONS(3705), - [anon_sym_function] = ACTIONS(3705), - [anon_sym_new] = ACTIONS(3705), - [anon_sym_using] = ACTIONS(3705), - [anon_sym_PLUS] = ACTIONS(3705), - [anon_sym_DASH] = ACTIONS(3705), - [anon_sym_SLASH] = ACTIONS(3705), - [anon_sym_LT] = ACTIONS(3705), - [anon_sym_TILDE] = ACTIONS(3705), - [anon_sym_void] = ACTIONS(3705), - [anon_sym_delete] = ACTIONS(3705), - [anon_sym_PLUS_PLUS] = ACTIONS(3705), - [anon_sym_DASH_DASH] = ACTIONS(3705), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3705), - [sym_number] = ACTIONS(3705), - [sym_private_property_identifier] = ACTIONS(3705), - [sym_this] = ACTIONS(3705), - [sym_super] = ACTIONS(3705), - [sym_true] = ACTIONS(3705), - [sym_false] = ACTIONS(3705), - [sym_null] = ACTIONS(3705), - [sym_undefined] = ACTIONS(3705), - [anon_sym_AT] = ACTIONS(3705), - [anon_sym_static] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(3705), - [anon_sym_get] = ACTIONS(3705), - [anon_sym_set] = ACTIONS(3705), - [anon_sym_declare] = ACTIONS(3705), - [anon_sym_public] = ACTIONS(3705), - [anon_sym_private] = ACTIONS(3705), - [anon_sym_protected] = ACTIONS(3705), - [anon_sym_override] = ACTIONS(3705), - [anon_sym_module] = ACTIONS(3705), - [anon_sym_any] = ACTIONS(3705), - [anon_sym_number] = ACTIONS(3705), - [anon_sym_boolean] = ACTIONS(3705), - [anon_sym_string] = ACTIONS(3705), - [anon_sym_symbol] = ACTIONS(3705), - [anon_sym_object] = ACTIONS(3705), - [anon_sym_abstract] = ACTIONS(3705), - [anon_sym_interface] = ACTIONS(3705), - [anon_sym_enum] = ACTIONS(3705), - [sym_html_comment] = ACTIONS(5), - }, - [1795] = { - [sym_comment] = STATE(1795), - [sym_identifier] = ACTIONS(3705), - [anon_sym_export] = ACTIONS(3705), - [anon_sym_type] = ACTIONS(3705), - [anon_sym_namespace] = ACTIONS(3705), - [anon_sym_LBRACE] = ACTIONS(3705), - [anon_sym_typeof] = ACTIONS(3705), - [anon_sym_import] = ACTIONS(3705), - [anon_sym_with] = ACTIONS(3705), - [anon_sym_var] = ACTIONS(3705), - [anon_sym_let] = ACTIONS(3705), - [anon_sym_const] = ACTIONS(3705), - [anon_sym_BANG] = ACTIONS(3705), - [anon_sym_if] = ACTIONS(3705), - [anon_sym_switch] = ACTIONS(3705), - [anon_sym_for] = ACTIONS(3705), - [anon_sym_LPAREN] = ACTIONS(3705), - [anon_sym_await] = ACTIONS(3705), - [anon_sym_while] = ACTIONS(3705), - [anon_sym_do] = ACTIONS(3705), - [anon_sym_try] = ACTIONS(3705), - [anon_sym_break] = ACTIONS(3705), - [anon_sym_continue] = ACTIONS(3705), - [anon_sym_debugger] = ACTIONS(3705), - [anon_sym_return] = ACTIONS(3705), - [anon_sym_throw] = ACTIONS(3705), - [anon_sym_SEMI] = ACTIONS(3705), - [anon_sym_yield] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3705), - [anon_sym_LTtemplate_GT] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(3705), - [anon_sym_SQUOTE] = ACTIONS(3705), - [anon_sym_class] = ACTIONS(3705), - [anon_sym_async] = ACTIONS(3705), - [anon_sym_function] = ACTIONS(3705), - [anon_sym_new] = ACTIONS(3705), - [anon_sym_using] = ACTIONS(3705), - [anon_sym_PLUS] = ACTIONS(3705), - [anon_sym_DASH] = ACTIONS(3705), - [anon_sym_SLASH] = ACTIONS(3705), - [anon_sym_LT] = ACTIONS(3705), - [anon_sym_TILDE] = ACTIONS(3705), - [anon_sym_void] = ACTIONS(3705), - [anon_sym_delete] = ACTIONS(3705), - [anon_sym_PLUS_PLUS] = ACTIONS(3705), - [anon_sym_DASH_DASH] = ACTIONS(3705), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3705), - [sym_number] = ACTIONS(3705), - [sym_private_property_identifier] = ACTIONS(3705), - [sym_this] = ACTIONS(3705), - [sym_super] = ACTIONS(3705), - [sym_true] = ACTIONS(3705), - [sym_false] = ACTIONS(3705), - [sym_null] = ACTIONS(3705), - [sym_undefined] = ACTIONS(3705), - [anon_sym_AT] = ACTIONS(3705), - [anon_sym_static] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(3705), - [anon_sym_get] = ACTIONS(3705), - [anon_sym_set] = ACTIONS(3705), - [anon_sym_declare] = ACTIONS(3705), - [anon_sym_public] = ACTIONS(3705), - [anon_sym_private] = ACTIONS(3705), - [anon_sym_protected] = ACTIONS(3705), - [anon_sym_override] = ACTIONS(3705), - [anon_sym_module] = ACTIONS(3705), - [anon_sym_any] = ACTIONS(3705), - [anon_sym_number] = ACTIONS(3705), - [anon_sym_boolean] = ACTIONS(3705), - [anon_sym_string] = ACTIONS(3705), - [anon_sym_symbol] = ACTIONS(3705), - [anon_sym_object] = ACTIONS(3705), - [anon_sym_abstract] = ACTIONS(3705), - [anon_sym_interface] = ACTIONS(3705), - [anon_sym_enum] = ACTIONS(3705), - [sym_html_comment] = ACTIONS(5), - }, - [1796] = { - [sym_comment] = STATE(1796), - [sym_identifier] = ACTIONS(3705), - [anon_sym_export] = ACTIONS(3705), - [anon_sym_type] = ACTIONS(3705), - [anon_sym_namespace] = ACTIONS(3705), - [anon_sym_LBRACE] = ACTIONS(3705), - [anon_sym_typeof] = ACTIONS(3705), - [anon_sym_import] = ACTIONS(3705), - [anon_sym_with] = ACTIONS(3705), - [anon_sym_var] = ACTIONS(3705), - [anon_sym_let] = ACTIONS(3705), - [anon_sym_const] = ACTIONS(3705), - [anon_sym_BANG] = ACTIONS(3705), - [anon_sym_if] = ACTIONS(3705), - [anon_sym_switch] = ACTIONS(3705), - [anon_sym_for] = ACTIONS(3705), - [anon_sym_LPAREN] = ACTIONS(3705), - [anon_sym_await] = ACTIONS(3705), - [anon_sym_while] = ACTIONS(3705), - [anon_sym_do] = ACTIONS(3705), - [anon_sym_try] = ACTIONS(3705), - [anon_sym_break] = ACTIONS(3705), - [anon_sym_continue] = ACTIONS(3705), - [anon_sym_debugger] = ACTIONS(3705), - [anon_sym_return] = ACTIONS(3705), - [anon_sym_throw] = ACTIONS(3705), - [anon_sym_SEMI] = ACTIONS(3705), - [anon_sym_yield] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3705), - [anon_sym_LTtemplate_GT] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(3705), - [anon_sym_SQUOTE] = ACTIONS(3705), - [anon_sym_class] = ACTIONS(3705), - [anon_sym_async] = ACTIONS(3705), - [anon_sym_function] = ACTIONS(3705), - [anon_sym_new] = ACTIONS(3705), - [anon_sym_using] = ACTIONS(3705), - [anon_sym_PLUS] = ACTIONS(3705), - [anon_sym_DASH] = ACTIONS(3705), - [anon_sym_SLASH] = ACTIONS(3705), - [anon_sym_LT] = ACTIONS(3705), - [anon_sym_TILDE] = ACTIONS(3705), - [anon_sym_void] = ACTIONS(3705), - [anon_sym_delete] = ACTIONS(3705), - [anon_sym_PLUS_PLUS] = ACTIONS(3705), - [anon_sym_DASH_DASH] = ACTIONS(3705), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3705), - [sym_number] = ACTIONS(3705), - [sym_private_property_identifier] = ACTIONS(3705), - [sym_this] = ACTIONS(3705), - [sym_super] = ACTIONS(3705), - [sym_true] = ACTIONS(3705), - [sym_false] = ACTIONS(3705), - [sym_null] = ACTIONS(3705), - [sym_undefined] = ACTIONS(3705), - [anon_sym_AT] = ACTIONS(3705), - [anon_sym_static] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(3705), - [anon_sym_get] = ACTIONS(3705), - [anon_sym_set] = ACTIONS(3705), - [anon_sym_declare] = ACTIONS(3705), - [anon_sym_public] = ACTIONS(3705), - [anon_sym_private] = ACTIONS(3705), - [anon_sym_protected] = ACTIONS(3705), - [anon_sym_override] = ACTIONS(3705), - [anon_sym_module] = ACTIONS(3705), - [anon_sym_any] = ACTIONS(3705), - [anon_sym_number] = ACTIONS(3705), - [anon_sym_boolean] = ACTIONS(3705), - [anon_sym_string] = ACTIONS(3705), - [anon_sym_symbol] = ACTIONS(3705), - [anon_sym_object] = ACTIONS(3705), - [anon_sym_abstract] = ACTIONS(3705), - [anon_sym_interface] = ACTIONS(3705), - [anon_sym_enum] = ACTIONS(3705), + [1641] = { + [sym_comment] = STATE(1641), + [sym_identifier] = ACTIONS(3715), + [anon_sym_export] = ACTIONS(3715), + [anon_sym_type] = ACTIONS(3715), + [anon_sym_namespace] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3715), + [anon_sym_typeof] = ACTIONS(3715), + [anon_sym_import] = ACTIONS(3715), + [anon_sym_with] = ACTIONS(3715), + [anon_sym_var] = ACTIONS(3715), + [anon_sym_let] = ACTIONS(3715), + [anon_sym_const] = ACTIONS(3715), + [anon_sym_BANG] = ACTIONS(3715), + [anon_sym_if] = ACTIONS(3715), + [anon_sym_switch] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3715), + [anon_sym_await] = ACTIONS(3715), + [anon_sym_while] = ACTIONS(3715), + [anon_sym_do] = ACTIONS(3715), + [anon_sym_try] = ACTIONS(3715), + [anon_sym_break] = ACTIONS(3715), + [anon_sym_continue] = ACTIONS(3715), + [anon_sym_debugger] = ACTIONS(3715), + [anon_sym_return] = ACTIONS(3715), + [anon_sym_throw] = ACTIONS(3715), + [anon_sym_SEMI] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3715), + [anon_sym_LBRACK] = ACTIONS(3715), + [anon_sym_LTtemplate_GT] = ACTIONS(3715), + [anon_sym_DQUOTE] = ACTIONS(3715), + [anon_sym_SQUOTE] = ACTIONS(3715), + [anon_sym_class] = ACTIONS(3715), + [anon_sym_async] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3715), + [anon_sym_new] = ACTIONS(3715), + [anon_sym_using] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3715), + [anon_sym_DASH] = ACTIONS(3715), + [anon_sym_SLASH] = ACTIONS(3715), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_TILDE] = ACTIONS(3715), + [anon_sym_void] = ACTIONS(3715), + [anon_sym_delete] = ACTIONS(3715), + [anon_sym_PLUS_PLUS] = ACTIONS(3715), + [anon_sym_DASH_DASH] = ACTIONS(3715), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3715), + [sym_number] = ACTIONS(3715), + [sym_private_property_identifier] = ACTIONS(3715), + [sym_this] = ACTIONS(3715), + [sym_super] = ACTIONS(3715), + [sym_true] = ACTIONS(3715), + [sym_false] = ACTIONS(3715), + [sym_null] = ACTIONS(3715), + [sym_undefined] = ACTIONS(3715), + [anon_sym_AT] = ACTIONS(3715), + [anon_sym_static] = ACTIONS(3715), + [anon_sym_readonly] = ACTIONS(3715), + [anon_sym_get] = ACTIONS(3715), + [anon_sym_set] = ACTIONS(3715), + [anon_sym_declare] = ACTIONS(3715), + [anon_sym_public] = ACTIONS(3715), + [anon_sym_private] = ACTIONS(3715), + [anon_sym_protected] = ACTIONS(3715), + [anon_sym_override] = ACTIONS(3715), + [anon_sym_module] = ACTIONS(3715), + [anon_sym_any] = ACTIONS(3715), + [anon_sym_number] = ACTIONS(3715), + [anon_sym_boolean] = ACTIONS(3715), + [anon_sym_string] = ACTIONS(3715), + [anon_sym_symbol] = ACTIONS(3715), + [anon_sym_object] = ACTIONS(3715), + [anon_sym_abstract] = ACTIONS(3715), + [anon_sym_interface] = ACTIONS(3715), + [anon_sym_enum] = ACTIONS(3715), [sym_html_comment] = ACTIONS(5), }, - [1797] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1797), - [sym_formal_parameters] = STATE(7428), - [sym_rest_pattern] = STATE(6811), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6869), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(3679), + [1642] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1642), + [sym_formal_parameters] = STATE(7245), + [sym_rest_pattern] = STATE(6689), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(6685), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), @@ -209758,7 +196787,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1971), @@ -209790,212 +196819,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1798] = { - [sym_comment] = STATE(1798), - [sym_identifier] = ACTIONS(3719), - [anon_sym_export] = ACTIONS(3719), - [anon_sym_type] = ACTIONS(3719), - [anon_sym_namespace] = ACTIONS(3719), - [anon_sym_LBRACE] = ACTIONS(3719), - [anon_sym_typeof] = ACTIONS(3719), - [anon_sym_import] = ACTIONS(3719), - [anon_sym_with] = ACTIONS(3719), - [anon_sym_var] = ACTIONS(3719), - [anon_sym_let] = ACTIONS(3719), - [anon_sym_const] = ACTIONS(3719), - [anon_sym_BANG] = ACTIONS(3719), - [anon_sym_if] = ACTIONS(3719), - [anon_sym_switch] = ACTIONS(3719), - [anon_sym_for] = ACTIONS(3719), - [anon_sym_LPAREN] = ACTIONS(3719), - [anon_sym_await] = ACTIONS(3719), - [anon_sym_while] = ACTIONS(3719), - [anon_sym_do] = ACTIONS(3719), - [anon_sym_try] = ACTIONS(3719), - [anon_sym_break] = ACTIONS(3719), - [anon_sym_continue] = ACTIONS(3719), - [anon_sym_debugger] = ACTIONS(3719), - [anon_sym_return] = ACTIONS(3719), - [anon_sym_throw] = ACTIONS(3719), - [anon_sym_SEMI] = ACTIONS(3719), - [anon_sym_yield] = ACTIONS(3719), - [anon_sym_LBRACK] = ACTIONS(3719), - [anon_sym_LTtemplate_GT] = ACTIONS(3719), - [anon_sym_DQUOTE] = ACTIONS(3719), - [anon_sym_SQUOTE] = ACTIONS(3719), - [anon_sym_class] = ACTIONS(3719), - [anon_sym_async] = ACTIONS(3719), - [anon_sym_function] = ACTIONS(3719), - [anon_sym_new] = ACTIONS(3719), - [anon_sym_using] = ACTIONS(3719), - [anon_sym_PLUS] = ACTIONS(3719), - [anon_sym_DASH] = ACTIONS(3719), - [anon_sym_SLASH] = ACTIONS(3719), - [anon_sym_LT] = ACTIONS(3719), - [anon_sym_TILDE] = ACTIONS(3719), - [anon_sym_void] = ACTIONS(3719), - [anon_sym_delete] = ACTIONS(3719), - [anon_sym_PLUS_PLUS] = ACTIONS(3719), - [anon_sym_DASH_DASH] = ACTIONS(3719), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3719), - [sym_number] = ACTIONS(3719), - [sym_private_property_identifier] = ACTIONS(3719), - [sym_this] = ACTIONS(3719), - [sym_super] = ACTIONS(3719), - [sym_true] = ACTIONS(3719), - [sym_false] = ACTIONS(3719), - [sym_null] = ACTIONS(3719), - [sym_undefined] = ACTIONS(3719), - [anon_sym_AT] = ACTIONS(3719), - [anon_sym_static] = ACTIONS(3719), - [anon_sym_readonly] = ACTIONS(3719), - [anon_sym_get] = ACTIONS(3719), - [anon_sym_set] = ACTIONS(3719), - [anon_sym_declare] = ACTIONS(3719), - [anon_sym_public] = ACTIONS(3719), - [anon_sym_private] = ACTIONS(3719), - [anon_sym_protected] = ACTIONS(3719), - [anon_sym_override] = ACTIONS(3719), - [anon_sym_module] = ACTIONS(3719), - [anon_sym_any] = ACTIONS(3719), - [anon_sym_number] = ACTIONS(3719), - [anon_sym_boolean] = ACTIONS(3719), - [anon_sym_string] = ACTIONS(3719), - [anon_sym_symbol] = ACTIONS(3719), - [anon_sym_object] = ACTIONS(3719), - [anon_sym_abstract] = ACTIONS(3719), - [anon_sym_interface] = ACTIONS(3719), - [anon_sym_enum] = ACTIONS(3719), - [sym_html_comment] = ACTIONS(5), - }, - [1799] = { - [sym_comment] = STATE(1799), - [sym_identifier] = ACTIONS(3173), - [anon_sym_export] = ACTIONS(3173), - [anon_sym_type] = ACTIONS(3173), - [anon_sym_namespace] = ACTIONS(3173), - [anon_sym_LBRACE] = ACTIONS(3173), - [anon_sym_typeof] = ACTIONS(3173), - [anon_sym_import] = ACTIONS(3173), - [anon_sym_with] = ACTIONS(3173), - [anon_sym_var] = ACTIONS(3173), - [anon_sym_let] = ACTIONS(3173), - [anon_sym_const] = ACTIONS(3173), - [anon_sym_BANG] = ACTIONS(3173), - [anon_sym_if] = ACTIONS(3173), - [anon_sym_switch] = ACTIONS(3173), - [anon_sym_for] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3173), - [anon_sym_await] = ACTIONS(3173), - [anon_sym_while] = ACTIONS(3173), - [anon_sym_do] = ACTIONS(3173), - [anon_sym_try] = ACTIONS(3173), - [anon_sym_break] = ACTIONS(3173), - [anon_sym_continue] = ACTIONS(3173), - [anon_sym_debugger] = ACTIONS(3173), - [anon_sym_return] = ACTIONS(3173), - [anon_sym_throw] = ACTIONS(3173), - [anon_sym_SEMI] = ACTIONS(3173), - [anon_sym_yield] = ACTIONS(3173), - [anon_sym_LBRACK] = ACTIONS(3173), - [anon_sym_LTtemplate_GT] = ACTIONS(3173), - [anon_sym_DQUOTE] = ACTIONS(3173), - [anon_sym_SQUOTE] = ACTIONS(3173), - [anon_sym_class] = ACTIONS(3173), - [anon_sym_async] = ACTIONS(3173), - [anon_sym_function] = ACTIONS(3173), - [anon_sym_new] = ACTIONS(3173), - [anon_sym_using] = ACTIONS(3173), - [anon_sym_PLUS] = ACTIONS(3173), - [anon_sym_DASH] = ACTIONS(3173), - [anon_sym_SLASH] = ACTIONS(3173), - [anon_sym_LT] = ACTIONS(3173), - [anon_sym_TILDE] = ACTIONS(3173), - [anon_sym_void] = ACTIONS(3173), - [anon_sym_delete] = ACTIONS(3173), - [anon_sym_PLUS_PLUS] = ACTIONS(3173), - [anon_sym_DASH_DASH] = ACTIONS(3173), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3173), - [sym_number] = ACTIONS(3173), - [sym_private_property_identifier] = ACTIONS(3173), - [sym_this] = ACTIONS(3173), - [sym_super] = ACTIONS(3173), - [sym_true] = ACTIONS(3173), - [sym_false] = ACTIONS(3173), - [sym_null] = ACTIONS(3173), - [sym_undefined] = ACTIONS(3173), - [anon_sym_AT] = ACTIONS(3173), - [anon_sym_static] = ACTIONS(3173), - [anon_sym_readonly] = ACTIONS(3173), - [anon_sym_get] = ACTIONS(3173), - [anon_sym_set] = ACTIONS(3173), - [anon_sym_declare] = ACTIONS(3173), - [anon_sym_public] = ACTIONS(3173), - [anon_sym_private] = ACTIONS(3173), - [anon_sym_protected] = ACTIONS(3173), - [anon_sym_override] = ACTIONS(3173), - [anon_sym_module] = ACTIONS(3173), - [anon_sym_any] = ACTIONS(3173), - [anon_sym_number] = ACTIONS(3173), - [anon_sym_boolean] = ACTIONS(3173), - [anon_sym_string] = ACTIONS(3173), - [anon_sym_symbol] = ACTIONS(3173), - [anon_sym_object] = ACTIONS(3173), - [anon_sym_abstract] = ACTIONS(3173), - [anon_sym_interface] = ACTIONS(3173), - [anon_sym_enum] = ACTIONS(3173), + [1643] = { + [sym_comment] = STATE(1643), + [sym_identifier] = ACTIONS(3715), + [anon_sym_export] = ACTIONS(3715), + [anon_sym_type] = ACTIONS(3715), + [anon_sym_namespace] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3715), + [anon_sym_typeof] = ACTIONS(3715), + [anon_sym_import] = ACTIONS(3715), + [anon_sym_with] = ACTIONS(3715), + [anon_sym_var] = ACTIONS(3715), + [anon_sym_let] = ACTIONS(3715), + [anon_sym_const] = ACTIONS(3715), + [anon_sym_BANG] = ACTIONS(3715), + [anon_sym_if] = ACTIONS(3715), + [anon_sym_switch] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3715), + [anon_sym_await] = ACTIONS(3715), + [anon_sym_while] = ACTIONS(3715), + [anon_sym_do] = ACTIONS(3715), + [anon_sym_try] = ACTIONS(3715), + [anon_sym_break] = ACTIONS(3715), + [anon_sym_continue] = ACTIONS(3715), + [anon_sym_debugger] = ACTIONS(3715), + [anon_sym_return] = ACTIONS(3715), + [anon_sym_throw] = ACTIONS(3715), + [anon_sym_SEMI] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3715), + [anon_sym_LBRACK] = ACTIONS(3715), + [anon_sym_LTtemplate_GT] = ACTIONS(3715), + [anon_sym_DQUOTE] = ACTIONS(3715), + [anon_sym_SQUOTE] = ACTIONS(3715), + [anon_sym_class] = ACTIONS(3715), + [anon_sym_async] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3715), + [anon_sym_new] = ACTIONS(3715), + [anon_sym_using] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3715), + [anon_sym_DASH] = ACTIONS(3715), + [anon_sym_SLASH] = ACTIONS(3715), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_TILDE] = ACTIONS(3715), + [anon_sym_void] = ACTIONS(3715), + [anon_sym_delete] = ACTIONS(3715), + [anon_sym_PLUS_PLUS] = ACTIONS(3715), + [anon_sym_DASH_DASH] = ACTIONS(3715), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3715), + [sym_number] = ACTIONS(3715), + [sym_private_property_identifier] = ACTIONS(3715), + [sym_this] = ACTIONS(3715), + [sym_super] = ACTIONS(3715), + [sym_true] = ACTIONS(3715), + [sym_false] = ACTIONS(3715), + [sym_null] = ACTIONS(3715), + [sym_undefined] = ACTIONS(3715), + [anon_sym_AT] = ACTIONS(3715), + [anon_sym_static] = ACTIONS(3715), + [anon_sym_readonly] = ACTIONS(3715), + [anon_sym_get] = ACTIONS(3715), + [anon_sym_set] = ACTIONS(3715), + [anon_sym_declare] = ACTIONS(3715), + [anon_sym_public] = ACTIONS(3715), + [anon_sym_private] = ACTIONS(3715), + [anon_sym_protected] = ACTIONS(3715), + [anon_sym_override] = ACTIONS(3715), + [anon_sym_module] = ACTIONS(3715), + [anon_sym_any] = ACTIONS(3715), + [anon_sym_number] = ACTIONS(3715), + [anon_sym_boolean] = ACTIONS(3715), + [anon_sym_string] = ACTIONS(3715), + [anon_sym_symbol] = ACTIONS(3715), + [anon_sym_object] = ACTIONS(3715), + [anon_sym_abstract] = ACTIONS(3715), + [anon_sym_interface] = ACTIONS(3715), + [anon_sym_enum] = ACTIONS(3715), [sym_html_comment] = ACTIONS(5), }, - [1800] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1800), - [sym_formal_parameters] = STATE(7428), - [sym_rest_pattern] = STATE(6811), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6869), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(3679), + [1644] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1644), + [sym_formal_parameters] = STATE(7245), + [sym_rest_pattern] = STATE(6689), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(6685), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3721), + [anon_sym_RBRACK] = ACTIONS(3719), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1971), @@ -210027,291 +196977,133 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1801] = { - [sym_comment] = STATE(1801), - [sym_identifier] = ACTIONS(3705), - [anon_sym_export] = ACTIONS(3705), - [anon_sym_type] = ACTIONS(3705), - [anon_sym_namespace] = ACTIONS(3705), - [anon_sym_LBRACE] = ACTIONS(3705), - [anon_sym_typeof] = ACTIONS(3705), - [anon_sym_import] = ACTIONS(3705), - [anon_sym_with] = ACTIONS(3705), - [anon_sym_var] = ACTIONS(3705), - [anon_sym_let] = ACTIONS(3705), - [anon_sym_const] = ACTIONS(3705), - [anon_sym_BANG] = ACTIONS(3705), - [anon_sym_if] = ACTIONS(3705), - [anon_sym_switch] = ACTIONS(3705), - [anon_sym_for] = ACTIONS(3705), - [anon_sym_LPAREN] = ACTIONS(3705), - [anon_sym_await] = ACTIONS(3705), - [anon_sym_while] = ACTIONS(3705), - [anon_sym_do] = ACTIONS(3705), - [anon_sym_try] = ACTIONS(3705), - [anon_sym_break] = ACTIONS(3705), - [anon_sym_continue] = ACTIONS(3705), - [anon_sym_debugger] = ACTIONS(3705), - [anon_sym_return] = ACTIONS(3705), - [anon_sym_throw] = ACTIONS(3705), - [anon_sym_SEMI] = ACTIONS(3705), - [anon_sym_yield] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3705), - [anon_sym_LTtemplate_GT] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(3705), - [anon_sym_SQUOTE] = ACTIONS(3705), - [anon_sym_class] = ACTIONS(3705), - [anon_sym_async] = ACTIONS(3705), - [anon_sym_function] = ACTIONS(3705), - [anon_sym_new] = ACTIONS(3705), - [anon_sym_using] = ACTIONS(3705), - [anon_sym_PLUS] = ACTIONS(3705), - [anon_sym_DASH] = ACTIONS(3705), - [anon_sym_SLASH] = ACTIONS(3705), - [anon_sym_LT] = ACTIONS(3705), - [anon_sym_TILDE] = ACTIONS(3705), - [anon_sym_void] = ACTIONS(3705), - [anon_sym_delete] = ACTIONS(3705), - [anon_sym_PLUS_PLUS] = ACTIONS(3705), - [anon_sym_DASH_DASH] = ACTIONS(3705), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3705), - [sym_number] = ACTIONS(3705), - [sym_private_property_identifier] = ACTIONS(3705), - [sym_this] = ACTIONS(3705), - [sym_super] = ACTIONS(3705), - [sym_true] = ACTIONS(3705), - [sym_false] = ACTIONS(3705), - [sym_null] = ACTIONS(3705), - [sym_undefined] = ACTIONS(3705), - [anon_sym_AT] = ACTIONS(3705), - [anon_sym_static] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(3705), - [anon_sym_get] = ACTIONS(3705), - [anon_sym_set] = ACTIONS(3705), - [anon_sym_declare] = ACTIONS(3705), - [anon_sym_public] = ACTIONS(3705), - [anon_sym_private] = ACTIONS(3705), - [anon_sym_protected] = ACTIONS(3705), - [anon_sym_override] = ACTIONS(3705), - [anon_sym_module] = ACTIONS(3705), - [anon_sym_any] = ACTIONS(3705), - [anon_sym_number] = ACTIONS(3705), - [anon_sym_boolean] = ACTIONS(3705), - [anon_sym_string] = ACTIONS(3705), - [anon_sym_symbol] = ACTIONS(3705), - [anon_sym_object] = ACTIONS(3705), - [anon_sym_abstract] = ACTIONS(3705), - [anon_sym_interface] = ACTIONS(3705), - [anon_sym_enum] = ACTIONS(3705), - [sym_html_comment] = ACTIONS(5), - }, - [1802] = { - [sym_comment] = STATE(1802), - [sym_identifier] = ACTIONS(3163), - [anon_sym_export] = ACTIONS(3163), - [anon_sym_type] = ACTIONS(3163), - [anon_sym_namespace] = ACTIONS(3163), - [anon_sym_LBRACE] = ACTIONS(3163), - [anon_sym_typeof] = ACTIONS(3163), - [anon_sym_import] = ACTIONS(3163), - [anon_sym_with] = ACTIONS(3163), - [anon_sym_var] = ACTIONS(3163), - [anon_sym_let] = ACTIONS(3163), - [anon_sym_const] = ACTIONS(3163), - [anon_sym_BANG] = ACTIONS(3163), - [anon_sym_if] = ACTIONS(3163), - [anon_sym_switch] = ACTIONS(3163), - [anon_sym_for] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3163), - [anon_sym_await] = ACTIONS(3163), - [anon_sym_while] = ACTIONS(3163), - [anon_sym_do] = ACTIONS(3163), - [anon_sym_try] = ACTIONS(3163), - [anon_sym_break] = ACTIONS(3163), - [anon_sym_continue] = ACTIONS(3163), - [anon_sym_debugger] = ACTIONS(3163), - [anon_sym_return] = ACTIONS(3163), - [anon_sym_throw] = ACTIONS(3163), - [anon_sym_SEMI] = ACTIONS(3163), - [anon_sym_yield] = ACTIONS(3163), - [anon_sym_LBRACK] = ACTIONS(3163), - [anon_sym_LTtemplate_GT] = ACTIONS(3163), - [anon_sym_DQUOTE] = ACTIONS(3163), - [anon_sym_SQUOTE] = ACTIONS(3163), - [anon_sym_class] = ACTIONS(3163), - [anon_sym_async] = ACTIONS(3163), - [anon_sym_function] = ACTIONS(3163), - [anon_sym_new] = ACTIONS(3163), - [anon_sym_using] = ACTIONS(3163), - [anon_sym_PLUS] = ACTIONS(3163), - [anon_sym_DASH] = ACTIONS(3163), - [anon_sym_SLASH] = ACTIONS(3163), - [anon_sym_LT] = ACTIONS(3163), - [anon_sym_TILDE] = ACTIONS(3163), - [anon_sym_void] = ACTIONS(3163), - [anon_sym_delete] = ACTIONS(3163), - [anon_sym_PLUS_PLUS] = ACTIONS(3163), - [anon_sym_DASH_DASH] = ACTIONS(3163), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3163), - [sym_number] = ACTIONS(3163), - [sym_private_property_identifier] = ACTIONS(3163), - [sym_this] = ACTIONS(3163), - [sym_super] = ACTIONS(3163), - [sym_true] = ACTIONS(3163), - [sym_false] = ACTIONS(3163), - [sym_null] = ACTIONS(3163), - [sym_undefined] = ACTIONS(3163), - [anon_sym_AT] = ACTIONS(3163), - [anon_sym_static] = ACTIONS(3163), - [anon_sym_readonly] = ACTIONS(3163), - [anon_sym_get] = ACTIONS(3163), - [anon_sym_set] = ACTIONS(3163), - [anon_sym_declare] = ACTIONS(3163), - [anon_sym_public] = ACTIONS(3163), - [anon_sym_private] = ACTIONS(3163), - [anon_sym_protected] = ACTIONS(3163), - [anon_sym_override] = ACTIONS(3163), - [anon_sym_module] = ACTIONS(3163), - [anon_sym_any] = ACTIONS(3163), - [anon_sym_number] = ACTIONS(3163), - [anon_sym_boolean] = ACTIONS(3163), - [anon_sym_string] = ACTIONS(3163), - [anon_sym_symbol] = ACTIONS(3163), - [anon_sym_object] = ACTIONS(3163), - [anon_sym_abstract] = ACTIONS(3163), - [anon_sym_interface] = ACTIONS(3163), - [anon_sym_enum] = ACTIONS(3163), - [sym_html_comment] = ACTIONS(5), - }, - [1803] = { - [sym_comment] = STATE(1803), - [sym_identifier] = ACTIONS(3705), - [anon_sym_export] = ACTIONS(3705), - [anon_sym_type] = ACTIONS(3705), - [anon_sym_namespace] = ACTIONS(3705), - [anon_sym_LBRACE] = ACTIONS(3705), - [anon_sym_typeof] = ACTIONS(3705), - [anon_sym_import] = ACTIONS(3705), - [anon_sym_with] = ACTIONS(3705), - [anon_sym_var] = ACTIONS(3705), - [anon_sym_let] = ACTIONS(3705), - [anon_sym_const] = ACTIONS(3705), - [anon_sym_BANG] = ACTIONS(3705), - [anon_sym_if] = ACTIONS(3705), - [anon_sym_switch] = ACTIONS(3705), - [anon_sym_for] = ACTIONS(3705), - [anon_sym_LPAREN] = ACTIONS(3705), - [anon_sym_await] = ACTIONS(3705), - [anon_sym_while] = ACTIONS(3705), - [anon_sym_do] = ACTIONS(3705), - [anon_sym_try] = ACTIONS(3705), - [anon_sym_break] = ACTIONS(3705), - [anon_sym_continue] = ACTIONS(3705), - [anon_sym_debugger] = ACTIONS(3705), - [anon_sym_return] = ACTIONS(3705), - [anon_sym_throw] = ACTIONS(3705), - [anon_sym_SEMI] = ACTIONS(3705), - [anon_sym_yield] = ACTIONS(3705), - [anon_sym_LBRACK] = ACTIONS(3705), - [anon_sym_LTtemplate_GT] = ACTIONS(3705), - [anon_sym_DQUOTE] = ACTIONS(3705), - [anon_sym_SQUOTE] = ACTIONS(3705), - [anon_sym_class] = ACTIONS(3705), - [anon_sym_async] = ACTIONS(3705), - [anon_sym_function] = ACTIONS(3705), - [anon_sym_new] = ACTIONS(3705), - [anon_sym_using] = ACTIONS(3705), - [anon_sym_PLUS] = ACTIONS(3705), - [anon_sym_DASH] = ACTIONS(3705), - [anon_sym_SLASH] = ACTIONS(3705), - [anon_sym_LT] = ACTIONS(3705), - [anon_sym_TILDE] = ACTIONS(3705), - [anon_sym_void] = ACTIONS(3705), - [anon_sym_delete] = ACTIONS(3705), - [anon_sym_PLUS_PLUS] = ACTIONS(3705), - [anon_sym_DASH_DASH] = ACTIONS(3705), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3705), - [sym_number] = ACTIONS(3705), - [sym_private_property_identifier] = ACTIONS(3705), - [sym_this] = ACTIONS(3705), - [sym_super] = ACTIONS(3705), - [sym_true] = ACTIONS(3705), - [sym_false] = ACTIONS(3705), - [sym_null] = ACTIONS(3705), - [sym_undefined] = ACTIONS(3705), - [anon_sym_AT] = ACTIONS(3705), - [anon_sym_static] = ACTIONS(3705), - [anon_sym_readonly] = ACTIONS(3705), - [anon_sym_get] = ACTIONS(3705), - [anon_sym_set] = ACTIONS(3705), - [anon_sym_declare] = ACTIONS(3705), - [anon_sym_public] = ACTIONS(3705), - [anon_sym_private] = ACTIONS(3705), - [anon_sym_protected] = ACTIONS(3705), - [anon_sym_override] = ACTIONS(3705), - [anon_sym_module] = ACTIONS(3705), - [anon_sym_any] = ACTIONS(3705), - [anon_sym_number] = ACTIONS(3705), - [anon_sym_boolean] = ACTIONS(3705), - [anon_sym_string] = ACTIONS(3705), - [anon_sym_symbol] = ACTIONS(3705), - [anon_sym_object] = ACTIONS(3705), - [anon_sym_abstract] = ACTIONS(3705), - [anon_sym_interface] = ACTIONS(3705), - [anon_sym_enum] = ACTIONS(3705), + [1645] = { + [sym_comment] = STATE(1645), + [sym_identifier] = ACTIONS(3207), + [anon_sym_export] = ACTIONS(3207), + [anon_sym_type] = ACTIONS(3207), + [anon_sym_namespace] = ACTIONS(3207), + [anon_sym_LBRACE] = ACTIONS(3207), + [anon_sym_typeof] = ACTIONS(3207), + [anon_sym_import] = ACTIONS(3207), + [anon_sym_with] = ACTIONS(3207), + [anon_sym_var] = ACTIONS(3207), + [anon_sym_let] = ACTIONS(3207), + [anon_sym_const] = ACTIONS(3207), + [anon_sym_BANG] = ACTIONS(3207), + [anon_sym_if] = ACTIONS(3207), + [anon_sym_switch] = ACTIONS(3207), + [anon_sym_for] = ACTIONS(3207), + [anon_sym_LPAREN] = ACTIONS(3207), + [anon_sym_await] = ACTIONS(3207), + [anon_sym_while] = ACTIONS(3207), + [anon_sym_do] = ACTIONS(3207), + [anon_sym_try] = ACTIONS(3207), + [anon_sym_break] = ACTIONS(3207), + [anon_sym_continue] = ACTIONS(3207), + [anon_sym_debugger] = ACTIONS(3207), + [anon_sym_return] = ACTIONS(3207), + [anon_sym_throw] = ACTIONS(3207), + [anon_sym_SEMI] = ACTIONS(3207), + [anon_sym_yield] = ACTIONS(3207), + [anon_sym_LBRACK] = ACTIONS(3207), + [anon_sym_LTtemplate_GT] = ACTIONS(3207), + [anon_sym_DQUOTE] = ACTIONS(3207), + [anon_sym_SQUOTE] = ACTIONS(3207), + [anon_sym_class] = ACTIONS(3207), + [anon_sym_async] = ACTIONS(3207), + [anon_sym_function] = ACTIONS(3207), + [anon_sym_new] = ACTIONS(3207), + [anon_sym_using] = ACTIONS(3207), + [anon_sym_PLUS] = ACTIONS(3207), + [anon_sym_DASH] = ACTIONS(3207), + [anon_sym_SLASH] = ACTIONS(3207), + [anon_sym_LT] = ACTIONS(3207), + [anon_sym_TILDE] = ACTIONS(3207), + [anon_sym_void] = ACTIONS(3207), + [anon_sym_delete] = ACTIONS(3207), + [anon_sym_PLUS_PLUS] = ACTIONS(3207), + [anon_sym_DASH_DASH] = ACTIONS(3207), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3207), + [sym_number] = ACTIONS(3207), + [sym_private_property_identifier] = ACTIONS(3207), + [sym_this] = ACTIONS(3207), + [sym_super] = ACTIONS(3207), + [sym_true] = ACTIONS(3207), + [sym_false] = ACTIONS(3207), + [sym_null] = ACTIONS(3207), + [sym_undefined] = ACTIONS(3207), + [anon_sym_AT] = ACTIONS(3207), + [anon_sym_static] = ACTIONS(3207), + [anon_sym_readonly] = ACTIONS(3207), + [anon_sym_get] = ACTIONS(3207), + [anon_sym_set] = ACTIONS(3207), + [anon_sym_declare] = ACTIONS(3207), + [anon_sym_public] = ACTIONS(3207), + [anon_sym_private] = ACTIONS(3207), + [anon_sym_protected] = ACTIONS(3207), + [anon_sym_override] = ACTIONS(3207), + [anon_sym_module] = ACTIONS(3207), + [anon_sym_any] = ACTIONS(3207), + [anon_sym_number] = ACTIONS(3207), + [anon_sym_boolean] = ACTIONS(3207), + [anon_sym_string] = ACTIONS(3207), + [anon_sym_symbol] = ACTIONS(3207), + [anon_sym_object] = ACTIONS(3207), + [anon_sym_abstract] = ACTIONS(3207), + [anon_sym_interface] = ACTIONS(3207), + [anon_sym_enum] = ACTIONS(3207), [sym_html_comment] = ACTIONS(5), }, - [1804] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1804), - [sym_formal_parameters] = STATE(7428), - [sym_rest_pattern] = STATE(6811), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6869), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(3679), + [1646] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1646), + [sym_formal_parameters] = STATE(7245), + [sym_rest_pattern] = STATE(6689), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(6685), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3723), + [anon_sym_RBRACK] = ACTIONS(3721), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1971), @@ -210343,43 +197135,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1805] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1805), - [sym_formal_parameters] = STATE(7428), - [sym_rest_pattern] = STATE(6811), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6869), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(3679), + [1647] = { + [sym_comment] = STATE(1647), + [sym_identifier] = ACTIONS(3723), + [anon_sym_export] = ACTIONS(3723), + [anon_sym_type] = ACTIONS(3723), + [anon_sym_namespace] = ACTIONS(3723), + [anon_sym_LBRACE] = ACTIONS(3723), + [anon_sym_typeof] = ACTIONS(3723), + [anon_sym_import] = ACTIONS(3723), + [anon_sym_with] = ACTIONS(3723), + [anon_sym_var] = ACTIONS(3723), + [anon_sym_let] = ACTIONS(3723), + [anon_sym_const] = ACTIONS(3723), + [anon_sym_BANG] = ACTIONS(3723), + [anon_sym_if] = ACTIONS(3723), + [anon_sym_switch] = ACTIONS(3723), + [anon_sym_for] = ACTIONS(3723), + [anon_sym_LPAREN] = ACTIONS(3723), + [anon_sym_await] = ACTIONS(3723), + [anon_sym_while] = ACTIONS(3723), + [anon_sym_do] = ACTIONS(3723), + [anon_sym_try] = ACTIONS(3723), + [anon_sym_break] = ACTIONS(3723), + [anon_sym_continue] = ACTIONS(3723), + [anon_sym_debugger] = ACTIONS(3723), + [anon_sym_return] = ACTIONS(3723), + [anon_sym_throw] = ACTIONS(3723), + [anon_sym_SEMI] = ACTIONS(3723), + [anon_sym_yield] = ACTIONS(3723), + [anon_sym_LBRACK] = ACTIONS(3723), + [anon_sym_LTtemplate_GT] = ACTIONS(3723), + [anon_sym_DQUOTE] = ACTIONS(3723), + [anon_sym_SQUOTE] = ACTIONS(3723), + [anon_sym_class] = ACTIONS(3723), + [anon_sym_async] = ACTIONS(3723), + [anon_sym_function] = ACTIONS(3723), + [anon_sym_new] = ACTIONS(3723), + [anon_sym_using] = ACTIONS(3723), + [anon_sym_PLUS] = ACTIONS(3723), + [anon_sym_DASH] = ACTIONS(3723), + [anon_sym_SLASH] = ACTIONS(3723), + [anon_sym_LT] = ACTIONS(3723), + [anon_sym_TILDE] = ACTIONS(3723), + [anon_sym_void] = ACTIONS(3723), + [anon_sym_delete] = ACTIONS(3723), + [anon_sym_PLUS_PLUS] = ACTIONS(3723), + [anon_sym_DASH_DASH] = ACTIONS(3723), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3723), + [sym_number] = ACTIONS(3723), + [sym_private_property_identifier] = ACTIONS(3723), + [sym_this] = ACTIONS(3723), + [sym_super] = ACTIONS(3723), + [sym_true] = ACTIONS(3723), + [sym_false] = ACTIONS(3723), + [sym_null] = ACTIONS(3723), + [sym_undefined] = ACTIONS(3723), + [anon_sym_AT] = ACTIONS(3723), + [anon_sym_static] = ACTIONS(3723), + [anon_sym_readonly] = ACTIONS(3723), + [anon_sym_get] = ACTIONS(3723), + [anon_sym_set] = ACTIONS(3723), + [anon_sym_declare] = ACTIONS(3723), + [anon_sym_public] = ACTIONS(3723), + [anon_sym_private] = ACTIONS(3723), + [anon_sym_protected] = ACTIONS(3723), + [anon_sym_override] = ACTIONS(3723), + [anon_sym_module] = ACTIONS(3723), + [anon_sym_any] = ACTIONS(3723), + [anon_sym_number] = ACTIONS(3723), + [anon_sym_boolean] = ACTIONS(3723), + [anon_sym_string] = ACTIONS(3723), + [anon_sym_symbol] = ACTIONS(3723), + [anon_sym_object] = ACTIONS(3723), + [anon_sym_abstract] = ACTIONS(3723), + [anon_sym_interface] = ACTIONS(3723), + [anon_sym_enum] = ACTIONS(3723), + [sym_html_comment] = ACTIONS(5), + }, + [1648] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1648), + [sym_formal_parameters] = STATE(7245), + [sym_rest_pattern] = STATE(6689), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(6685), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), @@ -210390,7 +197261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1971), @@ -210422,54 +197293,765 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1806] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1806), - [sym_formal_parameters] = STATE(7428), - [sym_rest_pattern] = STATE(6811), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6869), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(3679), + [1649] = { + [sym_comment] = STATE(1649), + [sym_identifier] = ACTIONS(3727), + [anon_sym_export] = ACTIONS(3727), + [anon_sym_type] = ACTIONS(3727), + [anon_sym_namespace] = ACTIONS(3727), + [anon_sym_LBRACE] = ACTIONS(3727), + [anon_sym_typeof] = ACTIONS(3727), + [anon_sym_import] = ACTIONS(3727), + [anon_sym_with] = ACTIONS(3727), + [anon_sym_var] = ACTIONS(3727), + [anon_sym_let] = ACTIONS(3727), + [anon_sym_const] = ACTIONS(3727), + [anon_sym_BANG] = ACTIONS(3727), + [anon_sym_if] = ACTIONS(3727), + [anon_sym_switch] = ACTIONS(3727), + [anon_sym_for] = ACTIONS(3727), + [anon_sym_LPAREN] = ACTIONS(3727), + [anon_sym_await] = ACTIONS(3727), + [anon_sym_while] = ACTIONS(3727), + [anon_sym_do] = ACTIONS(3727), + [anon_sym_try] = ACTIONS(3727), + [anon_sym_break] = ACTIONS(3727), + [anon_sym_continue] = ACTIONS(3727), + [anon_sym_debugger] = ACTIONS(3727), + [anon_sym_return] = ACTIONS(3727), + [anon_sym_throw] = ACTIONS(3727), + [anon_sym_SEMI] = ACTIONS(3727), + [anon_sym_yield] = ACTIONS(3727), + [anon_sym_LBRACK] = ACTIONS(3727), + [anon_sym_LTtemplate_GT] = ACTIONS(3727), + [anon_sym_DQUOTE] = ACTIONS(3727), + [anon_sym_SQUOTE] = ACTIONS(3727), + [anon_sym_class] = ACTIONS(3727), + [anon_sym_async] = ACTIONS(3727), + [anon_sym_function] = ACTIONS(3727), + [anon_sym_new] = ACTIONS(3727), + [anon_sym_using] = ACTIONS(3727), + [anon_sym_PLUS] = ACTIONS(3727), + [anon_sym_DASH] = ACTIONS(3727), + [anon_sym_SLASH] = ACTIONS(3727), + [anon_sym_LT] = ACTIONS(3727), + [anon_sym_TILDE] = ACTIONS(3727), + [anon_sym_void] = ACTIONS(3727), + [anon_sym_delete] = ACTIONS(3727), + [anon_sym_PLUS_PLUS] = ACTIONS(3727), + [anon_sym_DASH_DASH] = ACTIONS(3727), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3727), + [sym_number] = ACTIONS(3727), + [sym_private_property_identifier] = ACTIONS(3727), + [sym_this] = ACTIONS(3727), + [sym_super] = ACTIONS(3727), + [sym_true] = ACTIONS(3727), + [sym_false] = ACTIONS(3727), + [sym_null] = ACTIONS(3727), + [sym_undefined] = ACTIONS(3727), + [anon_sym_AT] = ACTIONS(3727), + [anon_sym_static] = ACTIONS(3727), + [anon_sym_readonly] = ACTIONS(3727), + [anon_sym_get] = ACTIONS(3727), + [anon_sym_set] = ACTIONS(3727), + [anon_sym_declare] = ACTIONS(3727), + [anon_sym_public] = ACTIONS(3727), + [anon_sym_private] = ACTIONS(3727), + [anon_sym_protected] = ACTIONS(3727), + [anon_sym_override] = ACTIONS(3727), + [anon_sym_module] = ACTIONS(3727), + [anon_sym_any] = ACTIONS(3727), + [anon_sym_number] = ACTIONS(3727), + [anon_sym_boolean] = ACTIONS(3727), + [anon_sym_string] = ACTIONS(3727), + [anon_sym_symbol] = ACTIONS(3727), + [anon_sym_object] = ACTIONS(3727), + [anon_sym_abstract] = ACTIONS(3727), + [anon_sym_interface] = ACTIONS(3727), + [anon_sym_enum] = ACTIONS(3727), + [sym_html_comment] = ACTIONS(5), + }, + [1650] = { + [sym_comment] = STATE(1650), + [sym_identifier] = ACTIONS(3715), + [anon_sym_export] = ACTIONS(3715), + [anon_sym_type] = ACTIONS(3715), + [anon_sym_namespace] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3715), + [anon_sym_typeof] = ACTIONS(3715), + [anon_sym_import] = ACTIONS(3715), + [anon_sym_with] = ACTIONS(3715), + [anon_sym_var] = ACTIONS(3715), + [anon_sym_let] = ACTIONS(3715), + [anon_sym_const] = ACTIONS(3715), + [anon_sym_BANG] = ACTIONS(3715), + [anon_sym_if] = ACTIONS(3715), + [anon_sym_switch] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3715), + [anon_sym_await] = ACTIONS(3715), + [anon_sym_while] = ACTIONS(3715), + [anon_sym_do] = ACTIONS(3715), + [anon_sym_try] = ACTIONS(3715), + [anon_sym_break] = ACTIONS(3715), + [anon_sym_continue] = ACTIONS(3715), + [anon_sym_debugger] = ACTIONS(3715), + [anon_sym_return] = ACTIONS(3715), + [anon_sym_throw] = ACTIONS(3715), + [anon_sym_SEMI] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3715), + [anon_sym_LBRACK] = ACTIONS(3715), + [anon_sym_LTtemplate_GT] = ACTIONS(3715), + [anon_sym_DQUOTE] = ACTIONS(3715), + [anon_sym_SQUOTE] = ACTIONS(3715), + [anon_sym_class] = ACTIONS(3715), + [anon_sym_async] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3715), + [anon_sym_new] = ACTIONS(3715), + [anon_sym_using] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3715), + [anon_sym_DASH] = ACTIONS(3715), + [anon_sym_SLASH] = ACTIONS(3715), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_TILDE] = ACTIONS(3715), + [anon_sym_void] = ACTIONS(3715), + [anon_sym_delete] = ACTIONS(3715), + [anon_sym_PLUS_PLUS] = ACTIONS(3715), + [anon_sym_DASH_DASH] = ACTIONS(3715), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3715), + [sym_number] = ACTIONS(3715), + [sym_private_property_identifier] = ACTIONS(3715), + [sym_this] = ACTIONS(3715), + [sym_super] = ACTIONS(3715), + [sym_true] = ACTIONS(3715), + [sym_false] = ACTIONS(3715), + [sym_null] = ACTIONS(3715), + [sym_undefined] = ACTIONS(3715), + [anon_sym_AT] = ACTIONS(3715), + [anon_sym_static] = ACTIONS(3715), + [anon_sym_readonly] = ACTIONS(3715), + [anon_sym_get] = ACTIONS(3715), + [anon_sym_set] = ACTIONS(3715), + [anon_sym_declare] = ACTIONS(3715), + [anon_sym_public] = ACTIONS(3715), + [anon_sym_private] = ACTIONS(3715), + [anon_sym_protected] = ACTIONS(3715), + [anon_sym_override] = ACTIONS(3715), + [anon_sym_module] = ACTIONS(3715), + [anon_sym_any] = ACTIONS(3715), + [anon_sym_number] = ACTIONS(3715), + [anon_sym_boolean] = ACTIONS(3715), + [anon_sym_string] = ACTIONS(3715), + [anon_sym_symbol] = ACTIONS(3715), + [anon_sym_object] = ACTIONS(3715), + [anon_sym_abstract] = ACTIONS(3715), + [anon_sym_interface] = ACTIONS(3715), + [anon_sym_enum] = ACTIONS(3715), + [sym_html_comment] = ACTIONS(5), + }, + [1651] = { + [sym_comment] = STATE(1651), + [sym_identifier] = ACTIONS(3729), + [anon_sym_export] = ACTIONS(3729), + [anon_sym_type] = ACTIONS(3729), + [anon_sym_namespace] = ACTIONS(3729), + [anon_sym_LBRACE] = ACTIONS(3729), + [anon_sym_typeof] = ACTIONS(3729), + [anon_sym_import] = ACTIONS(3729), + [anon_sym_with] = ACTIONS(3729), + [anon_sym_var] = ACTIONS(3729), + [anon_sym_let] = ACTIONS(3729), + [anon_sym_const] = ACTIONS(3729), + [anon_sym_BANG] = ACTIONS(3729), + [anon_sym_if] = ACTIONS(3729), + [anon_sym_switch] = ACTIONS(3729), + [anon_sym_for] = ACTIONS(3729), + [anon_sym_LPAREN] = ACTIONS(3729), + [anon_sym_await] = ACTIONS(3729), + [anon_sym_while] = ACTIONS(3729), + [anon_sym_do] = ACTIONS(3729), + [anon_sym_try] = ACTIONS(3729), + [anon_sym_break] = ACTIONS(3729), + [anon_sym_continue] = ACTIONS(3729), + [anon_sym_debugger] = ACTIONS(3729), + [anon_sym_return] = ACTIONS(3729), + [anon_sym_throw] = ACTIONS(3729), + [anon_sym_SEMI] = ACTIONS(3729), + [anon_sym_yield] = ACTIONS(3729), + [anon_sym_LBRACK] = ACTIONS(3729), + [anon_sym_LTtemplate_GT] = ACTIONS(3729), + [anon_sym_DQUOTE] = ACTIONS(3729), + [anon_sym_SQUOTE] = ACTIONS(3729), + [anon_sym_class] = ACTIONS(3729), + [anon_sym_async] = ACTIONS(3729), + [anon_sym_function] = ACTIONS(3729), + [anon_sym_new] = ACTIONS(3729), + [anon_sym_using] = ACTIONS(3729), + [anon_sym_PLUS] = ACTIONS(3729), + [anon_sym_DASH] = ACTIONS(3729), + [anon_sym_SLASH] = ACTIONS(3729), + [anon_sym_LT] = ACTIONS(3729), + [anon_sym_TILDE] = ACTIONS(3729), + [anon_sym_void] = ACTIONS(3729), + [anon_sym_delete] = ACTIONS(3729), + [anon_sym_PLUS_PLUS] = ACTIONS(3729), + [anon_sym_DASH_DASH] = ACTIONS(3729), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3729), + [sym_number] = ACTIONS(3729), + [sym_private_property_identifier] = ACTIONS(3729), + [sym_this] = ACTIONS(3729), + [sym_super] = ACTIONS(3729), + [sym_true] = ACTIONS(3729), + [sym_false] = ACTIONS(3729), + [sym_null] = ACTIONS(3729), + [sym_undefined] = ACTIONS(3729), + [anon_sym_AT] = ACTIONS(3729), + [anon_sym_static] = ACTIONS(3729), + [anon_sym_readonly] = ACTIONS(3729), + [anon_sym_get] = ACTIONS(3729), + [anon_sym_set] = ACTIONS(3729), + [anon_sym_declare] = ACTIONS(3729), + [anon_sym_public] = ACTIONS(3729), + [anon_sym_private] = ACTIONS(3729), + [anon_sym_protected] = ACTIONS(3729), + [anon_sym_override] = ACTIONS(3729), + [anon_sym_module] = ACTIONS(3729), + [anon_sym_any] = ACTIONS(3729), + [anon_sym_number] = ACTIONS(3729), + [anon_sym_boolean] = ACTIONS(3729), + [anon_sym_string] = ACTIONS(3729), + [anon_sym_symbol] = ACTIONS(3729), + [anon_sym_object] = ACTIONS(3729), + [anon_sym_abstract] = ACTIONS(3729), + [anon_sym_interface] = ACTIONS(3729), + [anon_sym_enum] = ACTIONS(3729), + [sym_html_comment] = ACTIONS(5), + }, + [1652] = { + [sym_comment] = STATE(1652), + [sym_identifier] = ACTIONS(3715), + [anon_sym_export] = ACTIONS(3715), + [anon_sym_type] = ACTIONS(3715), + [anon_sym_namespace] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3715), + [anon_sym_typeof] = ACTIONS(3715), + [anon_sym_import] = ACTIONS(3715), + [anon_sym_with] = ACTIONS(3715), + [anon_sym_var] = ACTIONS(3715), + [anon_sym_let] = ACTIONS(3715), + [anon_sym_const] = ACTIONS(3715), + [anon_sym_BANG] = ACTIONS(3715), + [anon_sym_if] = ACTIONS(3715), + [anon_sym_switch] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3715), + [anon_sym_await] = ACTIONS(3715), + [anon_sym_while] = ACTIONS(3715), + [anon_sym_do] = ACTIONS(3715), + [anon_sym_try] = ACTIONS(3715), + [anon_sym_break] = ACTIONS(3715), + [anon_sym_continue] = ACTIONS(3715), + [anon_sym_debugger] = ACTIONS(3715), + [anon_sym_return] = ACTIONS(3715), + [anon_sym_throw] = ACTIONS(3715), + [anon_sym_SEMI] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3715), + [anon_sym_LBRACK] = ACTIONS(3715), + [anon_sym_LTtemplate_GT] = ACTIONS(3715), + [anon_sym_DQUOTE] = ACTIONS(3715), + [anon_sym_SQUOTE] = ACTIONS(3715), + [anon_sym_class] = ACTIONS(3715), + [anon_sym_async] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3715), + [anon_sym_new] = ACTIONS(3715), + [anon_sym_using] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3715), + [anon_sym_DASH] = ACTIONS(3715), + [anon_sym_SLASH] = ACTIONS(3715), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_TILDE] = ACTIONS(3715), + [anon_sym_void] = ACTIONS(3715), + [anon_sym_delete] = ACTIONS(3715), + [anon_sym_PLUS_PLUS] = ACTIONS(3715), + [anon_sym_DASH_DASH] = ACTIONS(3715), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3715), + [sym_number] = ACTIONS(3715), + [sym_private_property_identifier] = ACTIONS(3715), + [sym_this] = ACTIONS(3715), + [sym_super] = ACTIONS(3715), + [sym_true] = ACTIONS(3715), + [sym_false] = ACTIONS(3715), + [sym_null] = ACTIONS(3715), + [sym_undefined] = ACTIONS(3715), + [anon_sym_AT] = ACTIONS(3715), + [anon_sym_static] = ACTIONS(3715), + [anon_sym_readonly] = ACTIONS(3715), + [anon_sym_get] = ACTIONS(3715), + [anon_sym_set] = ACTIONS(3715), + [anon_sym_declare] = ACTIONS(3715), + [anon_sym_public] = ACTIONS(3715), + [anon_sym_private] = ACTIONS(3715), + [anon_sym_protected] = ACTIONS(3715), + [anon_sym_override] = ACTIONS(3715), + [anon_sym_module] = ACTIONS(3715), + [anon_sym_any] = ACTIONS(3715), + [anon_sym_number] = ACTIONS(3715), + [anon_sym_boolean] = ACTIONS(3715), + [anon_sym_string] = ACTIONS(3715), + [anon_sym_symbol] = ACTIONS(3715), + [anon_sym_object] = ACTIONS(3715), + [anon_sym_abstract] = ACTIONS(3715), + [anon_sym_interface] = ACTIONS(3715), + [anon_sym_enum] = ACTIONS(3715), + [sym_html_comment] = ACTIONS(5), + }, + [1653] = { + [sym_comment] = STATE(1653), + [sym_identifier] = ACTIONS(3213), + [anon_sym_export] = ACTIONS(3213), + [anon_sym_type] = ACTIONS(3213), + [anon_sym_namespace] = ACTIONS(3213), + [anon_sym_LBRACE] = ACTIONS(3213), + [anon_sym_typeof] = ACTIONS(3213), + [anon_sym_import] = ACTIONS(3213), + [anon_sym_with] = ACTIONS(3213), + [anon_sym_var] = ACTIONS(3213), + [anon_sym_let] = ACTIONS(3213), + [anon_sym_const] = ACTIONS(3213), + [anon_sym_BANG] = ACTIONS(3213), + [anon_sym_if] = ACTIONS(3213), + [anon_sym_switch] = ACTIONS(3213), + [anon_sym_for] = ACTIONS(3213), + [anon_sym_LPAREN] = ACTIONS(3213), + [anon_sym_await] = ACTIONS(3213), + [anon_sym_while] = ACTIONS(3213), + [anon_sym_do] = ACTIONS(3213), + [anon_sym_try] = ACTIONS(3213), + [anon_sym_break] = ACTIONS(3213), + [anon_sym_continue] = ACTIONS(3213), + [anon_sym_debugger] = ACTIONS(3213), + [anon_sym_return] = ACTIONS(3213), + [anon_sym_throw] = ACTIONS(3213), + [anon_sym_SEMI] = ACTIONS(3213), + [anon_sym_yield] = ACTIONS(3213), + [anon_sym_LBRACK] = ACTIONS(3213), + [anon_sym_LTtemplate_GT] = ACTIONS(3213), + [anon_sym_DQUOTE] = ACTIONS(3213), + [anon_sym_SQUOTE] = ACTIONS(3213), + [anon_sym_class] = ACTIONS(3213), + [anon_sym_async] = ACTIONS(3213), + [anon_sym_function] = ACTIONS(3213), + [anon_sym_new] = ACTIONS(3213), + [anon_sym_using] = ACTIONS(3213), + [anon_sym_PLUS] = ACTIONS(3213), + [anon_sym_DASH] = ACTIONS(3213), + [anon_sym_SLASH] = ACTIONS(3213), + [anon_sym_LT] = ACTIONS(3213), + [anon_sym_TILDE] = ACTIONS(3213), + [anon_sym_void] = ACTIONS(3213), + [anon_sym_delete] = ACTIONS(3213), + [anon_sym_PLUS_PLUS] = ACTIONS(3213), + [anon_sym_DASH_DASH] = ACTIONS(3213), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3213), + [sym_number] = ACTIONS(3213), + [sym_private_property_identifier] = ACTIONS(3213), + [sym_this] = ACTIONS(3213), + [sym_super] = ACTIONS(3213), + [sym_true] = ACTIONS(3213), + [sym_false] = ACTIONS(3213), + [sym_null] = ACTIONS(3213), + [sym_undefined] = ACTIONS(3213), + [anon_sym_AT] = ACTIONS(3213), + [anon_sym_static] = ACTIONS(3213), + [anon_sym_readonly] = ACTIONS(3213), + [anon_sym_get] = ACTIONS(3213), + [anon_sym_set] = ACTIONS(3213), + [anon_sym_declare] = ACTIONS(3213), + [anon_sym_public] = ACTIONS(3213), + [anon_sym_private] = ACTIONS(3213), + [anon_sym_protected] = ACTIONS(3213), + [anon_sym_override] = ACTIONS(3213), + [anon_sym_module] = ACTIONS(3213), + [anon_sym_any] = ACTIONS(3213), + [anon_sym_number] = ACTIONS(3213), + [anon_sym_boolean] = ACTIONS(3213), + [anon_sym_string] = ACTIONS(3213), + [anon_sym_symbol] = ACTIONS(3213), + [anon_sym_object] = ACTIONS(3213), + [anon_sym_abstract] = ACTIONS(3213), + [anon_sym_interface] = ACTIONS(3213), + [anon_sym_enum] = ACTIONS(3213), + [sym_html_comment] = ACTIONS(5), + }, + [1654] = { + [sym_comment] = STATE(1654), + [sym_identifier] = ACTIONS(3715), + [anon_sym_export] = ACTIONS(3715), + [anon_sym_type] = ACTIONS(3715), + [anon_sym_namespace] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3715), + [anon_sym_typeof] = ACTIONS(3715), + [anon_sym_import] = ACTIONS(3715), + [anon_sym_with] = ACTIONS(3715), + [anon_sym_var] = ACTIONS(3715), + [anon_sym_let] = ACTIONS(3715), + [anon_sym_const] = ACTIONS(3715), + [anon_sym_BANG] = ACTIONS(3715), + [anon_sym_if] = ACTIONS(3715), + [anon_sym_switch] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3715), + [anon_sym_await] = ACTIONS(3715), + [anon_sym_while] = ACTIONS(3715), + [anon_sym_do] = ACTIONS(3715), + [anon_sym_try] = ACTIONS(3715), + [anon_sym_break] = ACTIONS(3715), + [anon_sym_continue] = ACTIONS(3715), + [anon_sym_debugger] = ACTIONS(3715), + [anon_sym_return] = ACTIONS(3715), + [anon_sym_throw] = ACTIONS(3715), + [anon_sym_SEMI] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3715), + [anon_sym_LBRACK] = ACTIONS(3715), + [anon_sym_LTtemplate_GT] = ACTIONS(3715), + [anon_sym_DQUOTE] = ACTIONS(3715), + [anon_sym_SQUOTE] = ACTIONS(3715), + [anon_sym_class] = ACTIONS(3715), + [anon_sym_async] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3715), + [anon_sym_new] = ACTIONS(3715), + [anon_sym_using] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3715), + [anon_sym_DASH] = ACTIONS(3715), + [anon_sym_SLASH] = ACTIONS(3715), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_TILDE] = ACTIONS(3715), + [anon_sym_void] = ACTIONS(3715), + [anon_sym_delete] = ACTIONS(3715), + [anon_sym_PLUS_PLUS] = ACTIONS(3715), + [anon_sym_DASH_DASH] = ACTIONS(3715), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3715), + [sym_number] = ACTIONS(3715), + [sym_private_property_identifier] = ACTIONS(3715), + [sym_this] = ACTIONS(3715), + [sym_super] = ACTIONS(3715), + [sym_true] = ACTIONS(3715), + [sym_false] = ACTIONS(3715), + [sym_null] = ACTIONS(3715), + [sym_undefined] = ACTIONS(3715), + [anon_sym_AT] = ACTIONS(3715), + [anon_sym_static] = ACTIONS(3715), + [anon_sym_readonly] = ACTIONS(3715), + [anon_sym_get] = ACTIONS(3715), + [anon_sym_set] = ACTIONS(3715), + [anon_sym_declare] = ACTIONS(3715), + [anon_sym_public] = ACTIONS(3715), + [anon_sym_private] = ACTIONS(3715), + [anon_sym_protected] = ACTIONS(3715), + [anon_sym_override] = ACTIONS(3715), + [anon_sym_module] = ACTIONS(3715), + [anon_sym_any] = ACTIONS(3715), + [anon_sym_number] = ACTIONS(3715), + [anon_sym_boolean] = ACTIONS(3715), + [anon_sym_string] = ACTIONS(3715), + [anon_sym_symbol] = ACTIONS(3715), + [anon_sym_object] = ACTIONS(3715), + [anon_sym_abstract] = ACTIONS(3715), + [anon_sym_interface] = ACTIONS(3715), + [anon_sym_enum] = ACTIONS(3715), + [sym_html_comment] = ACTIONS(5), + }, + [1655] = { + [sym_comment] = STATE(1655), + [sym_identifier] = ACTIONS(3715), + [anon_sym_export] = ACTIONS(3715), + [anon_sym_type] = ACTIONS(3715), + [anon_sym_namespace] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3715), + [anon_sym_typeof] = ACTIONS(3715), + [anon_sym_import] = ACTIONS(3715), + [anon_sym_with] = ACTIONS(3715), + [anon_sym_var] = ACTIONS(3715), + [anon_sym_let] = ACTIONS(3715), + [anon_sym_const] = ACTIONS(3715), + [anon_sym_BANG] = ACTIONS(3715), + [anon_sym_if] = ACTIONS(3715), + [anon_sym_switch] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3715), + [anon_sym_await] = ACTIONS(3715), + [anon_sym_while] = ACTIONS(3715), + [anon_sym_do] = ACTIONS(3715), + [anon_sym_try] = ACTIONS(3715), + [anon_sym_break] = ACTIONS(3715), + [anon_sym_continue] = ACTIONS(3715), + [anon_sym_debugger] = ACTIONS(3715), + [anon_sym_return] = ACTIONS(3715), + [anon_sym_throw] = ACTIONS(3715), + [anon_sym_SEMI] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3715), + [anon_sym_LBRACK] = ACTIONS(3715), + [anon_sym_LTtemplate_GT] = ACTIONS(3715), + [anon_sym_DQUOTE] = ACTIONS(3715), + [anon_sym_SQUOTE] = ACTIONS(3715), + [anon_sym_class] = ACTIONS(3715), + [anon_sym_async] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3715), + [anon_sym_new] = ACTIONS(3715), + [anon_sym_using] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3715), + [anon_sym_DASH] = ACTIONS(3715), + [anon_sym_SLASH] = ACTIONS(3715), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_TILDE] = ACTIONS(3715), + [anon_sym_void] = ACTIONS(3715), + [anon_sym_delete] = ACTIONS(3715), + [anon_sym_PLUS_PLUS] = ACTIONS(3715), + [anon_sym_DASH_DASH] = ACTIONS(3715), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3715), + [sym_number] = ACTIONS(3715), + [sym_private_property_identifier] = ACTIONS(3715), + [sym_this] = ACTIONS(3715), + [sym_super] = ACTIONS(3715), + [sym_true] = ACTIONS(3715), + [sym_false] = ACTIONS(3715), + [sym_null] = ACTIONS(3715), + [sym_undefined] = ACTIONS(3715), + [anon_sym_AT] = ACTIONS(3715), + [anon_sym_static] = ACTIONS(3715), + [anon_sym_readonly] = ACTIONS(3715), + [anon_sym_get] = ACTIONS(3715), + [anon_sym_set] = ACTIONS(3715), + [anon_sym_declare] = ACTIONS(3715), + [anon_sym_public] = ACTIONS(3715), + [anon_sym_private] = ACTIONS(3715), + [anon_sym_protected] = ACTIONS(3715), + [anon_sym_override] = ACTIONS(3715), + [anon_sym_module] = ACTIONS(3715), + [anon_sym_any] = ACTIONS(3715), + [anon_sym_number] = ACTIONS(3715), + [anon_sym_boolean] = ACTIONS(3715), + [anon_sym_string] = ACTIONS(3715), + [anon_sym_symbol] = ACTIONS(3715), + [anon_sym_object] = ACTIONS(3715), + [anon_sym_abstract] = ACTIONS(3715), + [anon_sym_interface] = ACTIONS(3715), + [anon_sym_enum] = ACTIONS(3715), + [sym_html_comment] = ACTIONS(5), + }, + [1656] = { + [sym_comment] = STATE(1656), + [sym_identifier] = ACTIONS(3715), + [anon_sym_export] = ACTIONS(3715), + [anon_sym_type] = ACTIONS(3715), + [anon_sym_namespace] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3715), + [anon_sym_typeof] = ACTIONS(3715), + [anon_sym_import] = ACTIONS(3715), + [anon_sym_with] = ACTIONS(3715), + [anon_sym_var] = ACTIONS(3715), + [anon_sym_let] = ACTIONS(3715), + [anon_sym_const] = ACTIONS(3715), + [anon_sym_BANG] = ACTIONS(3715), + [anon_sym_if] = ACTIONS(3715), + [anon_sym_switch] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3715), + [anon_sym_await] = ACTIONS(3715), + [anon_sym_while] = ACTIONS(3715), + [anon_sym_do] = ACTIONS(3715), + [anon_sym_try] = ACTIONS(3715), + [anon_sym_break] = ACTIONS(3715), + [anon_sym_continue] = ACTIONS(3715), + [anon_sym_debugger] = ACTIONS(3715), + [anon_sym_return] = ACTIONS(3715), + [anon_sym_throw] = ACTIONS(3715), + [anon_sym_SEMI] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3715), + [anon_sym_LBRACK] = ACTIONS(3715), + [anon_sym_LTtemplate_GT] = ACTIONS(3715), + [anon_sym_DQUOTE] = ACTIONS(3715), + [anon_sym_SQUOTE] = ACTIONS(3715), + [anon_sym_class] = ACTIONS(3715), + [anon_sym_async] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3715), + [anon_sym_new] = ACTIONS(3715), + [anon_sym_using] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3715), + [anon_sym_DASH] = ACTIONS(3715), + [anon_sym_SLASH] = ACTIONS(3715), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_TILDE] = ACTIONS(3715), + [anon_sym_void] = ACTIONS(3715), + [anon_sym_delete] = ACTIONS(3715), + [anon_sym_PLUS_PLUS] = ACTIONS(3715), + [anon_sym_DASH_DASH] = ACTIONS(3715), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3715), + [sym_number] = ACTIONS(3715), + [sym_private_property_identifier] = ACTIONS(3715), + [sym_this] = ACTIONS(3715), + [sym_super] = ACTIONS(3715), + [sym_true] = ACTIONS(3715), + [sym_false] = ACTIONS(3715), + [sym_null] = ACTIONS(3715), + [sym_undefined] = ACTIONS(3715), + [anon_sym_AT] = ACTIONS(3715), + [anon_sym_static] = ACTIONS(3715), + [anon_sym_readonly] = ACTIONS(3715), + [anon_sym_get] = ACTIONS(3715), + [anon_sym_set] = ACTIONS(3715), + [anon_sym_declare] = ACTIONS(3715), + [anon_sym_public] = ACTIONS(3715), + [anon_sym_private] = ACTIONS(3715), + [anon_sym_protected] = ACTIONS(3715), + [anon_sym_override] = ACTIONS(3715), + [anon_sym_module] = ACTIONS(3715), + [anon_sym_any] = ACTIONS(3715), + [anon_sym_number] = ACTIONS(3715), + [anon_sym_boolean] = ACTIONS(3715), + [anon_sym_string] = ACTIONS(3715), + [anon_sym_symbol] = ACTIONS(3715), + [anon_sym_object] = ACTIONS(3715), + [anon_sym_abstract] = ACTIONS(3715), + [anon_sym_interface] = ACTIONS(3715), + [anon_sym_enum] = ACTIONS(3715), + [sym_html_comment] = ACTIONS(5), + }, + [1657] = { + [sym_comment] = STATE(1657), + [sym_identifier] = ACTIONS(3715), + [anon_sym_export] = ACTIONS(3715), + [anon_sym_type] = ACTIONS(3715), + [anon_sym_namespace] = ACTIONS(3715), + [anon_sym_LBRACE] = ACTIONS(3715), + [anon_sym_typeof] = ACTIONS(3715), + [anon_sym_import] = ACTIONS(3715), + [anon_sym_with] = ACTIONS(3715), + [anon_sym_var] = ACTIONS(3715), + [anon_sym_let] = ACTIONS(3715), + [anon_sym_const] = ACTIONS(3715), + [anon_sym_BANG] = ACTIONS(3715), + [anon_sym_if] = ACTIONS(3715), + [anon_sym_switch] = ACTIONS(3715), + [anon_sym_for] = ACTIONS(3715), + [anon_sym_LPAREN] = ACTIONS(3715), + [anon_sym_await] = ACTIONS(3715), + [anon_sym_while] = ACTIONS(3715), + [anon_sym_do] = ACTIONS(3715), + [anon_sym_try] = ACTIONS(3715), + [anon_sym_break] = ACTIONS(3715), + [anon_sym_continue] = ACTIONS(3715), + [anon_sym_debugger] = ACTIONS(3715), + [anon_sym_return] = ACTIONS(3715), + [anon_sym_throw] = ACTIONS(3715), + [anon_sym_SEMI] = ACTIONS(3715), + [anon_sym_yield] = ACTIONS(3715), + [anon_sym_LBRACK] = ACTIONS(3715), + [anon_sym_LTtemplate_GT] = ACTIONS(3715), + [anon_sym_DQUOTE] = ACTIONS(3715), + [anon_sym_SQUOTE] = ACTIONS(3715), + [anon_sym_class] = ACTIONS(3715), + [anon_sym_async] = ACTIONS(3715), + [anon_sym_function] = ACTIONS(3715), + [anon_sym_new] = ACTIONS(3715), + [anon_sym_using] = ACTIONS(3715), + [anon_sym_PLUS] = ACTIONS(3715), + [anon_sym_DASH] = ACTIONS(3715), + [anon_sym_SLASH] = ACTIONS(3715), + [anon_sym_LT] = ACTIONS(3715), + [anon_sym_TILDE] = ACTIONS(3715), + [anon_sym_void] = ACTIONS(3715), + [anon_sym_delete] = ACTIONS(3715), + [anon_sym_PLUS_PLUS] = ACTIONS(3715), + [anon_sym_DASH_DASH] = ACTIONS(3715), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3715), + [sym_number] = ACTIONS(3715), + [sym_private_property_identifier] = ACTIONS(3715), + [sym_this] = ACTIONS(3715), + [sym_super] = ACTIONS(3715), + [sym_true] = ACTIONS(3715), + [sym_false] = ACTIONS(3715), + [sym_null] = ACTIONS(3715), + [sym_undefined] = ACTIONS(3715), + [anon_sym_AT] = ACTIONS(3715), + [anon_sym_static] = ACTIONS(3715), + [anon_sym_readonly] = ACTIONS(3715), + [anon_sym_get] = ACTIONS(3715), + [anon_sym_set] = ACTIONS(3715), + [anon_sym_declare] = ACTIONS(3715), + [anon_sym_public] = ACTIONS(3715), + [anon_sym_private] = ACTIONS(3715), + [anon_sym_protected] = ACTIONS(3715), + [anon_sym_override] = ACTIONS(3715), + [anon_sym_module] = ACTIONS(3715), + [anon_sym_any] = ACTIONS(3715), + [anon_sym_number] = ACTIONS(3715), + [anon_sym_boolean] = ACTIONS(3715), + [anon_sym_string] = ACTIONS(3715), + [anon_sym_symbol] = ACTIONS(3715), + [anon_sym_object] = ACTIONS(3715), + [anon_sym_abstract] = ACTIONS(3715), + [anon_sym_interface] = ACTIONS(3715), + [anon_sym_enum] = ACTIONS(3715), + [sym_html_comment] = ACTIONS(5), + }, + [1658] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1658), + [sym_formal_parameters] = STATE(7245), + [sym_rest_pattern] = STATE(6689), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(6685), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3727), + [anon_sym_RBRACK] = ACTIONS(3731), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1971), @@ -210501,54 +198083,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1807] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1807), - [sym_formal_parameters] = STATE(7428), - [sym_rest_pattern] = STATE(6811), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6869), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(3679), + [1659] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1659), + [sym_formal_parameters] = STATE(7245), + [sym_rest_pattern] = STATE(6689), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(6685), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(3729), + [anon_sym_RBRACK] = ACTIONS(3733), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1971), @@ -210580,120 +198162,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1808] = { - [sym_import] = STATE(6319), - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1808), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type_query_member_expression_in_type_annotation] = STATE(4265), - [sym__type_query_call_expression_in_type_annotation] = STATE(4497), - [sym_asserts] = STATE(4838), - [sym__type] = STATE(4275), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_predicate] = STATE(4836), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4157), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), - [sym_identifier] = ACTIONS(3731), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(3733), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_asserts] = ACTIONS(3735), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1809] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1809), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(4307), - [sym__type_query_call_expression_in_type_annotation] = STATE(4793), - [sym_asserts] = STATE(6889), - [sym__type] = STATE(4316), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_predicate] = STATE(6890), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3927), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(3737), + [1660] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1660), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(4255), + [sym__type_query_call_expression_in_type_annotation] = STATE(4398), + [sym_asserts] = STATE(6764), + [sym__type] = STATE(4252), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_predicate] = STATE(6751), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3776), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3735), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), @@ -210713,7 +198217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(3739), + [sym_this] = ACTIONS(3737), [sym_true] = ACTIONS(1977), [sym_false] = ACTIONS(1977), [sym_null] = ACTIONS(1977), @@ -210727,7 +198231,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(206), [anon_sym_object] = ACTIONS(206), [anon_sym_abstract] = ACTIONS(198), - [anon_sym_asserts] = ACTIONS(3741), + [anon_sym_asserts] = ACTIONS(3739), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), [anon_sym_unique] = ACTIONS(204), @@ -210736,43 +198240,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1810] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1810), - [sym_formal_parameters] = STATE(7428), - [sym_rest_pattern] = STATE(6811), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4840), - [sym_tuple_parameter] = STATE(6821), - [sym_optional_tuple_parameter] = STATE(6821), - [sym_optional_type] = STATE(6821), - [sym_rest_type] = STATE(6821), - [sym__tuple_type_member] = STATE(6869), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(3679), + [1661] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1661), + [sym_formal_parameters] = STATE(7245), + [sym_rest_pattern] = STATE(6689), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4814), + [sym_tuple_parameter] = STATE(6690), + [sym_optional_tuple_parameter] = STATE(6690), + [sym_optional_type] = STATE(6690), + [sym_rest_type] = STATE(6690), + [sym__tuple_type_member] = STATE(6685), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3683), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), @@ -210782,7 +198286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3685), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3689), [anon_sym_AMP] = ACTIONS(164), [anon_sym_PIPE] = ACTIONS(166), [anon_sym_PLUS] = ACTIONS(1971), @@ -210814,117 +198318,195 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1811] = { - [sym_import] = STATE(5875), - [sym_nested_identifier] = STATE(7189), - [sym_string] = STATE(4340), - [sym_comment] = STATE(1811), - [sym_formal_parameters] = STATE(7503), - [sym_nested_type_identifier] = STATE(4262), - [sym__type_query_member_expression_in_type_annotation] = STATE(4500), - [sym__type_query_call_expression_in_type_annotation] = STATE(4843), - [sym_asserts] = STATE(5396), - [sym__type] = STATE(4498), - [sym_constructor_type] = STATE(4457), - [sym__primary_type] = STATE(4489), - [sym_template_literal_type] = STATE(4482), - [sym_infer_type] = STATE(4457), - [sym_conditional_type] = STATE(4482), - [sym_generic_type] = STATE(4482), - [sym_type_predicate] = STATE(5391), - [sym_type_query] = STATE(4482), - [sym_index_type_query] = STATE(4482), - [sym_lookup_type] = STATE(4482), - [sym_literal_type] = STATE(4482), - [sym__number] = STATE(4473), - [sym_existential_type] = STATE(4482), - [sym_flow_maybe_type] = STATE(4482), - [sym_parenthesized_type] = STATE(4482), - [sym_predefined_type] = STATE(4279), - [sym_object_type] = STATE(4482), - [sym_type_parameters] = STATE(7119), - [sym_array_type] = STATE(4482), - [sym_tuple_type] = STATE(4482), - [sym_readonly_type] = STATE(4457), - [sym_union_type] = STATE(4482), - [sym_intersection_type] = STATE(4482), - [sym_function_type] = STATE(4457), - [sym_identifier] = ACTIONS(3743), - [anon_sym_STAR] = ACTIONS(3745), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_typeof] = ACTIONS(3749), + [1662] = { + [sym_import] = STATE(6014), + [sym_nested_identifier] = STATE(7006), + [sym_string] = STATE(4247), + [sym_comment] = STATE(1662), + [sym_formal_parameters] = STATE(7134), + [sym_nested_type_identifier] = STATE(4103), + [sym__type_query_member_expression_in_type_annotation] = STATE(4379), + [sym__type_query_call_expression_in_type_annotation] = STATE(4791), + [sym_asserts] = STATE(5286), + [sym__type] = STATE(4378), + [sym_constructor_type] = STATE(4153), + [sym__primary_type] = STATE(4154), + [sym_template_literal_type] = STATE(4155), + [sym_infer_type] = STATE(4153), + [sym_conditional_type] = STATE(4155), + [sym_generic_type] = STATE(4155), + [sym_type_predicate] = STATE(5282), + [sym_type_query] = STATE(4155), + [sym_index_type_query] = STATE(4155), + [sym_lookup_type] = STATE(4155), + [sym_literal_type] = STATE(4155), + [sym__number] = STATE(4156), + [sym_existential_type] = STATE(4155), + [sym_flow_maybe_type] = STATE(4155), + [sym_parenthesized_type] = STATE(4155), + [sym_predefined_type] = STATE(4145), + [sym_object_type] = STATE(4155), + [sym_type_parameters] = STATE(6916), + [sym_array_type] = STATE(4155), + [sym_tuple_type] = STATE(4155), + [sym_readonly_type] = STATE(4153), + [sym_union_type] = STATE(4155), + [sym_intersection_type] = STATE(4155), + [sym_function_type] = STATE(4153), + [sym_identifier] = ACTIONS(3741), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_typeof] = ACTIONS(3747), [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(3751), - [anon_sym_LPAREN] = ACTIONS(3753), - [anon_sym_LBRACK] = ACTIONS(3755), - [anon_sym_DQUOTE] = ACTIONS(3757), - [anon_sym_SQUOTE] = ACTIONS(3759), - [anon_sym_new] = ACTIONS(3761), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3767), - [anon_sym_DASH] = ACTIONS(3767), + [anon_sym_const] = ACTIONS(3749), + [anon_sym_LPAREN] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3755), + [anon_sym_SQUOTE] = ACTIONS(3757), + [anon_sym_new] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_PIPE] = ACTIONS(3763), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3769), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3771), - [sym_number] = ACTIONS(3773), - [sym_this] = ACTIONS(3775), - [sym_true] = ACTIONS(3773), - [sym_false] = ACTIONS(3773), - [sym_null] = ACTIONS(3773), - [sym_undefined] = ACTIONS(3773), - [anon_sym_readonly] = ACTIONS(3777), - [anon_sym_QMARK] = ACTIONS(3779), - [anon_sym_any] = ACTIONS(3769), - [anon_sym_number] = ACTIONS(3769), - [anon_sym_boolean] = ACTIONS(3769), - [anon_sym_string] = ACTIONS(3769), - [anon_sym_symbol] = ACTIONS(3769), - [anon_sym_object] = ACTIONS(3769), - [anon_sym_abstract] = ACTIONS(3781), - [anon_sym_asserts] = ACTIONS(3783), - [anon_sym_infer] = ACTIONS(3785), - [anon_sym_keyof] = ACTIONS(3787), - [anon_sym_unique] = ACTIONS(3789), - [anon_sym_unknown] = ACTIONS(3769), - [anon_sym_never] = ACTIONS(3769), - [anon_sym_LBRACE_PIPE] = ACTIONS(3747), + [anon_sym_void] = ACTIONS(3767), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3769), + [sym_number] = ACTIONS(3771), + [sym_this] = ACTIONS(3773), + [sym_true] = ACTIONS(3771), + [sym_false] = ACTIONS(3771), + [sym_null] = ACTIONS(3771), + [sym_undefined] = ACTIONS(3771), + [anon_sym_readonly] = ACTIONS(3775), + [anon_sym_QMARK] = ACTIONS(3777), + [anon_sym_any] = ACTIONS(3767), + [anon_sym_number] = ACTIONS(3767), + [anon_sym_boolean] = ACTIONS(3767), + [anon_sym_string] = ACTIONS(3767), + [anon_sym_symbol] = ACTIONS(3767), + [anon_sym_object] = ACTIONS(3767), + [anon_sym_abstract] = ACTIONS(3779), + [anon_sym_asserts] = ACTIONS(3781), + [anon_sym_infer] = ACTIONS(3783), + [anon_sym_keyof] = ACTIONS(3785), + [anon_sym_unique] = ACTIONS(3787), + [anon_sym_unknown] = ACTIONS(3767), + [anon_sym_never] = ACTIONS(3767), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), [sym_html_comment] = ACTIONS(5), }, - [1812] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1812), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1663] = { + [sym_import] = STATE(5766), + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1663), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type_query_member_expression_in_type_annotation] = STATE(4140), + [sym__type_query_call_expression_in_type_annotation] = STATE(4366), + [sym_asserts] = STATE(4789), + [sym__type] = STATE(4144), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_predicate] = STATE(4784), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4004), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), + [sym_identifier] = ACTIONS(3789), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(3791), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_asserts] = ACTIONS(3793), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1664] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1664), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -210933,7 +198515,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3791), + [anon_sym_GT] = ACTIONS(3795), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -210968,48 +198550,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1813] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1813), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(4920), - [sym__type_query_call_expression_in_type_annotation] = STATE(5695), - [sym__type] = STATE(4919), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_type_parameter] = STATE(6320), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(3793), + [1665] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1665), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(3795), + [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_GT] = ACTIONS(3797), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -211044,39 +198626,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1814] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1814), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1666] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1666), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -211085,7 +198667,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3797), + [anon_sym_GT] = ACTIONS(3799), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -211120,39 +198702,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1815] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1815), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1667] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1667), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -211161,7 +198743,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3799), + [anon_sym_GT] = ACTIONS(3801), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -211196,39 +198778,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1816] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1816), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1668] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1668), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -211237,7 +198819,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3801), + [anon_sym_GT] = ACTIONS(3803), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -211272,39 +198854,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1817] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1817), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1669] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1669), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -211313,7 +198895,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3803), + [anon_sym_GT] = ACTIONS(3805), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -211348,39 +198930,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1818] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1818), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1670] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1670), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -211389,7 +198971,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3805), + [anon_sym_GT] = ACTIONS(3807), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -211424,39 +199006,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1819] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1819), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1671] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1671), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -211465,7 +199047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3807), + [anon_sym_GT] = ACTIONS(3809), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -211500,39 +199082,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1820] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1820), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1672] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1672), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -211541,7 +199123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3809), + [anon_sym_GT] = ACTIONS(3811), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -211576,39 +199158,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1821] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1821), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1673] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1673), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -211617,7 +199199,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3811), + [anon_sym_GT] = ACTIONS(3813), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -211652,39 +199234,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1822] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1822), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1674] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1674), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -211693,7 +199275,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3813), + [anon_sym_GT] = ACTIONS(3815), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -211728,39 +199310,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1823] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1823), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1675] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1675), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -211769,7 +199351,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3815), + [anon_sym_GT] = ACTIONS(3817), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -211804,39 +199386,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1824] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1824), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1676] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1676), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -211845,7 +199427,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3817), + [anon_sym_GT] = ACTIONS(3819), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -211880,39 +199462,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1825] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1825), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1677] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1677), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -211921,7 +199503,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3819), + [anon_sym_GT] = ACTIONS(3821), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -211956,48 +199538,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1826] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1826), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(1957), + [1678] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1678), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(4664), + [sym__type_query_call_expression_in_type_annotation] = STATE(5574), + [sym__type] = STATE(4661), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_type_parameter] = STATE(5700), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3823), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(131), + [anon_sym_const] = ACTIONS(3825), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3821), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -212032,39 +199614,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1827] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1827), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1679] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1679), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -212073,7 +199655,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3823), + [anon_sym_GT] = ACTIONS(3827), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -212108,39 +199690,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1828] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1828), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1680] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1680), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -212149,7 +199731,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3825), + [anon_sym_GT] = ACTIONS(3829), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -212184,39 +199766,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1829] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1829), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1681] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1681), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -212225,7 +199807,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3827), + [anon_sym_GT] = ACTIONS(3831), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -212260,39 +199842,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1830] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1830), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1682] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1682), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -212301,7 +199883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3829), + [anon_sym_GT] = ACTIONS(3833), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -212336,39 +199918,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1831] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1831), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1683] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1683), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -212377,7 +199959,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3831), + [anon_sym_GT] = ACTIONS(3835), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -212412,39 +199994,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1832] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1832), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1684] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1684), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -212453,7 +200035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3833), + [anon_sym_GT] = ACTIONS(3837), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -212488,39 +200070,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1833] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1833), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1685] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1685), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -212529,7 +200111,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3835), + [anon_sym_GT] = ACTIONS(3839), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -212564,39 +200146,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1834] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1834), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1686] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1686), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -212605,7 +200187,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3837), + [anon_sym_GT] = ACTIONS(3841), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -212640,39 +200222,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1835] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1835), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1687] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1687), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -212681,7 +200263,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3839), + [anon_sym_GT] = ACTIONS(3843), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -212716,39 +200298,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1836] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1836), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1688] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1688), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -212757,7 +200339,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3841), + [anon_sym_GT] = ACTIONS(3845), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -212792,39 +200374,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1837] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1837), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1689] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1689), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -212833,7 +200415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3843), + [anon_sym_GT] = ACTIONS(3847), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -212868,39 +200450,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1838] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1838), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1690] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1690), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -212909,7 +200491,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3845), + [anon_sym_GT] = ACTIONS(3849), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -212944,39 +200526,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1839] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1839), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1691] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1691), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -212985,7 +200567,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3847), + [anon_sym_GT] = ACTIONS(3851), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -213020,39 +200602,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1840] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1840), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1692] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1692), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -213061,7 +200643,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3849), + [anon_sym_GT] = ACTIONS(3853), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -213096,39 +200678,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1841] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1841), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1693] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1693), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -213137,7 +200719,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3851), + [anon_sym_GT] = ACTIONS(3855), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -213172,39 +200754,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1842] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1842), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1694] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1694), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -213213,7 +200795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3853), + [anon_sym_GT] = ACTIONS(3857), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -213248,39 +200830,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1843] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1843), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1695] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1695), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -213289,7 +200871,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3855), + [anon_sym_GT] = ACTIONS(3859), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -213324,39 +200906,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1844] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1844), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1696] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1696), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -213365,7 +200947,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3857), + [anon_sym_GT] = ACTIONS(3861), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -213400,39 +200982,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1845] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1845), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1697] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1697), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -213441,7 +201023,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3859), + [anon_sym_GT] = ACTIONS(3863), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -213476,39 +201058,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1846] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1846), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1698] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1698), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -213517,7 +201099,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3861), + [anon_sym_GT] = ACTIONS(3865), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -213552,39 +201134,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1847] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1847), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1699] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1699), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -213593,7 +201175,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3863), + [anon_sym_GT] = ACTIONS(3867), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -213628,39 +201210,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1848] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1848), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1700] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1700), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -213669,7 +201251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3865), + [anon_sym_GT] = ACTIONS(3869), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -213704,39 +201286,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1849] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1849), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1701] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1701), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -213745,7 +201327,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3867), + [anon_sym_GT] = ACTIONS(3871), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -213780,39 +201362,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1850] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1850), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1702] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1702), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -213821,7 +201403,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3869), + [anon_sym_GT] = ACTIONS(3873), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -213856,39 +201438,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1851] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1851), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1703] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1703), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -213897,7 +201479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3871), + [anon_sym_GT] = ACTIONS(3875), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -213932,39 +201514,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1852] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1852), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1704] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1704), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -213973,7 +201555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3873), + [anon_sym_GT] = ACTIONS(3877), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -214008,39 +201590,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1853] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1853), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1705] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1705), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -214049,7 +201631,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3875), + [anon_sym_GT] = ACTIONS(3879), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -214084,39 +201666,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1854] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1854), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1706] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1706), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -214125,7 +201707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_GT] = ACTIONS(3877), + [anon_sym_GT] = ACTIONS(3881), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -214160,39 +201742,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1855] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1855), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(4956), - [sym__type_query_call_expression_in_type_annotation] = STATE(5644), - [sym__type] = STATE(4954), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1707] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1707), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(4781), + [sym__type_query_call_expression_in_type_annotation] = STATE(5532), + [sym__type] = STATE(4707), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -214235,39 +201817,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1856] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1856), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(4863), - [sym__type_query_call_expression_in_type_annotation] = STATE(5680), - [sym__type] = STATE(4864), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1708] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1708), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(4255), + [sym__type_query_call_expression_in_type_annotation] = STATE(4398), + [sym__type] = STATE(4252), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -214310,114 +201892,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1857] = { - [sym_import] = STATE(6319), - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1857), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type_query_member_expression_in_type_annotation] = STATE(4265), - [sym__type_query_call_expression_in_type_annotation] = STATE(4497), - [sym__type] = STATE(4275), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_import] = ACTIONS(129), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1858] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1858), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(4862), - [sym__type_query_call_expression_in_type_annotation] = STATE(5570), - [sym__type] = STATE(4859), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1709] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1709), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(5104), + [sym__type_query_call_expression_in_type_annotation] = STATE(5930), + [sym__type] = STATE(5105), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -214460,39 +201967,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1859] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1859), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(4807), - [sym__type_query_call_expression_in_type_annotation] = STATE(5633), - [sym__type] = STATE(4806), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1710] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1710), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(4721), + [sym__type_query_call_expression_in_type_annotation] = STATE(5454), + [sym__type] = STATE(4681), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -214535,39 +202042,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1860] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1860), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(4953), - [sym__type_query_call_expression_in_type_annotation] = STATE(5690), - [sym__type] = STATE(4945), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1711] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1711), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(4828), + [sym__type_query_call_expression_in_type_annotation] = STATE(5541), + [sym__type] = STATE(4829), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -214610,39 +202117,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1861] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1861), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(4831), - [sym__type_query_call_expression_in_type_annotation] = STATE(5737), - [sym__type] = STATE(4832), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1712] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1712), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(4697), + [sym__type_query_call_expression_in_type_annotation] = STATE(5393), + [sym__type] = STATE(4690), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -214685,39 +202192,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1862] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1862), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(5488), - [sym__type_query_call_expression_in_type_annotation] = STATE(6090), - [sym__type] = STATE(5455), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1713] = { + [sym_import] = STATE(5766), + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1713), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type_query_member_expression_in_type_annotation] = STATE(4140), + [sym__type_query_call_expression_in_type_annotation] = STATE(4366), + [sym__type] = STATE(4144), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_import] = ACTIONS(129), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1714] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1714), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(4736), + [sym__type_query_call_expression_in_type_annotation] = STATE(5461), + [sym__type] = STATE(4737), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -214760,39 +202342,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1863] = { - [sym_import] = STATE(6324), - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1863), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type_query_member_expression_in_type_annotation] = STATE(4307), - [sym__type_query_call_expression_in_type_annotation] = STATE(4793), - [sym__type] = STATE(4316), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1715] = { + [sym_import] = STATE(5696), + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1715), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type_query_member_expression_in_type_annotation] = STATE(4717), + [sym__type_query_call_expression_in_type_annotation] = STATE(5373), + [sym__type] = STATE(4719), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -214835,39 +202417,187 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1864] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1864), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym_asserts] = STATE(3952), - [sym__type] = STATE(3953), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_predicate] = STATE(3952), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3927), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(3737), + [1716] = { + [sym_nested_identifier] = STATE(6973), + [sym_string] = STATE(2430), + [sym_comment] = STATE(1716), + [sym_formal_parameters] = STATE(7150), + [sym_nested_type_identifier] = STATE(2302), + [sym_asserts] = STATE(2356), + [sym__type] = STATE(2357), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2427), + [sym_template_literal_type] = STATE(2426), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2426), + [sym_generic_type] = STATE(2426), + [sym_type_predicate] = STATE(2356), + [sym_type_query] = STATE(2426), + [sym_index_type_query] = STATE(2426), + [sym_lookup_type] = STATE(2426), + [sym_literal_type] = STATE(2426), + [sym__number] = STATE(2422), + [sym_existential_type] = STATE(2426), + [sym_flow_maybe_type] = STATE(2426), + [sym_parenthesized_type] = STATE(2426), + [sym_predefined_type] = STATE(2299), + [sym_object_type] = STATE(2426), + [sym_type_parameters] = STATE(6889), + [sym_array_type] = STATE(2426), + [sym_tuple_type] = STATE(2426), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2426), + [sym_intersection_type] = STATE(2426), + [sym_function_type] = STATE(2428), + [sym_identifier] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3905), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), + [sym_this] = ACTIONS(3911), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_asserts] = ACTIONS(3919), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_html_comment] = ACTIONS(5), + }, + [1717] = { + [sym_nested_identifier] = STATE(7006), + [sym_string] = STATE(4247), + [sym_comment] = STATE(1717), + [sym_formal_parameters] = STATE(7134), + [sym_nested_type_identifier] = STATE(4103), + [sym_asserts] = STATE(4259), + [sym__type] = STATE(4257), + [sym_constructor_type] = STATE(4153), + [sym__primary_type] = STATE(4154), + [sym_template_literal_type] = STATE(4155), + [sym_infer_type] = STATE(4153), + [sym_conditional_type] = STATE(4155), + [sym_generic_type] = STATE(4155), + [sym_type_predicate] = STATE(4259), + [sym_type_query] = STATE(4155), + [sym_index_type_query] = STATE(4155), + [sym_lookup_type] = STATE(4155), + [sym_literal_type] = STATE(4155), + [sym__number] = STATE(4156), + [sym_existential_type] = STATE(4155), + [sym_flow_maybe_type] = STATE(4155), + [sym_parenthesized_type] = STATE(4155), + [sym_predefined_type] = STATE(4145), + [sym_object_type] = STATE(4155), + [sym_type_parameters] = STATE(6916), + [sym_array_type] = STATE(4155), + [sym_tuple_type] = STATE(4155), + [sym_readonly_type] = STATE(4153), + [sym_union_type] = STATE(4155), + [sym_intersection_type] = STATE(4155), + [sym_function_type] = STATE(4153), + [sym_identifier] = ACTIONS(3741), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_typeof] = ACTIONS(3747), + [anon_sym_const] = ACTIONS(3749), + [anon_sym_LPAREN] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3755), + [anon_sym_SQUOTE] = ACTIONS(3757), + [anon_sym_new] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_PIPE] = ACTIONS(3763), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3767), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3769), + [sym_number] = ACTIONS(3771), + [sym_this] = ACTIONS(3773), + [sym_true] = ACTIONS(3771), + [sym_false] = ACTIONS(3771), + [sym_null] = ACTIONS(3771), + [sym_undefined] = ACTIONS(3771), + [anon_sym_readonly] = ACTIONS(3775), + [anon_sym_QMARK] = ACTIONS(3777), + [anon_sym_any] = ACTIONS(3767), + [anon_sym_number] = ACTIONS(3767), + [anon_sym_boolean] = ACTIONS(3767), + [anon_sym_string] = ACTIONS(3767), + [anon_sym_symbol] = ACTIONS(3767), + [anon_sym_object] = ACTIONS(3767), + [anon_sym_abstract] = ACTIONS(3779), + [anon_sym_asserts] = ACTIONS(3781), + [anon_sym_infer] = ACTIONS(3783), + [anon_sym_keyof] = ACTIONS(3785), + [anon_sym_unique] = ACTIONS(3787), + [anon_sym_unknown] = ACTIONS(3767), + [anon_sym_never] = ACTIONS(3767), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [sym_html_comment] = ACTIONS(5), + }, + [1718] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1718), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym_asserts] = STATE(3791), + [sym__type] = STATE(3789), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_predicate] = STATE(3791), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3776), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3735), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), @@ -214886,7 +202616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(3739), + [sym_this] = ACTIONS(3737), [sym_true] = ACTIONS(1977), [sym_false] = ACTIONS(1977), [sym_null] = ACTIONS(1977), @@ -214900,7 +202630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(206), [anon_sym_object] = ACTIONS(206), [anon_sym_abstract] = ACTIONS(198), - [anon_sym_asserts] = ACTIONS(3741), + [anon_sym_asserts] = ACTIONS(3739), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), [anon_sym_unique] = ACTIONS(204), @@ -214909,557 +202639,409 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1865] = { - [sym_nested_identifier] = STATE(7360), - [sym_string] = STATE(3048), - [sym_comment] = STATE(1865), - [sym_formal_parameters] = STATE(7424), - [sym_nested_type_identifier] = STATE(2840), - [sym_asserts] = STATE(2998), - [sym__type] = STATE(3000), - [sym_constructor_type] = STATE(3044), - [sym__primary_type] = STATE(3039), - [sym_template_literal_type] = STATE(3036), - [sym_infer_type] = STATE(3044), - [sym_conditional_type] = STATE(3036), - [sym_generic_type] = STATE(3036), - [sym_type_predicate] = STATE(2998), - [sym_type_query] = STATE(3036), - [sym_index_type_query] = STATE(3036), - [sym_lookup_type] = STATE(3036), - [sym_literal_type] = STATE(3036), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3036), - [sym_flow_maybe_type] = STATE(3036), - [sym_parenthesized_type] = STATE(3036), - [sym_predefined_type] = STATE(2878), - [sym_object_type] = STATE(3036), - [sym_type_parameters] = STATE(6722), - [sym_array_type] = STATE(3036), - [sym_tuple_type] = STATE(3036), - [sym_readonly_type] = STATE(3044), - [sym_union_type] = STATE(3036), - [sym_intersection_type] = STATE(3036), - [sym_function_type] = STATE(3044), - [sym_identifier] = ACTIONS(3879), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3883), - [anon_sym_typeof] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3891), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3901), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3903), - [sym_number] = ACTIONS(3905), - [sym_this] = ACTIONS(3907), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_null] = ACTIONS(3905), - [sym_undefined] = ACTIONS(3905), - [anon_sym_readonly] = ACTIONS(3909), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_any] = ACTIONS(3901), - [anon_sym_number] = ACTIONS(3901), - [anon_sym_boolean] = ACTIONS(3901), - [anon_sym_string] = ACTIONS(3901), - [anon_sym_symbol] = ACTIONS(3901), - [anon_sym_object] = ACTIONS(3901), - [anon_sym_abstract] = ACTIONS(3913), - [anon_sym_asserts] = ACTIONS(3915), - [anon_sym_infer] = ACTIONS(3917), - [anon_sym_keyof] = ACTIONS(3919), - [anon_sym_unique] = ACTIONS(3921), - [anon_sym_unknown] = ACTIONS(3901), - [anon_sym_never] = ACTIONS(3901), - [anon_sym_LBRACE_PIPE] = ACTIONS(3883), - [sym_html_comment] = ACTIONS(5), - }, - [1866] = { - [sym_nested_identifier] = STATE(7189), - [sym_string] = STATE(4340), - [sym_comment] = STATE(1866), - [sym_formal_parameters] = STATE(7503), - [sym_nested_type_identifier] = STATE(4262), - [sym_asserts] = STATE(4472), - [sym__type] = STATE(4463), - [sym_constructor_type] = STATE(4457), - [sym__primary_type] = STATE(4489), - [sym_template_literal_type] = STATE(4482), - [sym_infer_type] = STATE(4457), - [sym_conditional_type] = STATE(4482), - [sym_generic_type] = STATE(4482), - [sym_type_predicate] = STATE(4472), - [sym_type_query] = STATE(4482), - [sym_index_type_query] = STATE(4482), - [sym_lookup_type] = STATE(4482), - [sym_literal_type] = STATE(4482), - [sym__number] = STATE(4473), - [sym_existential_type] = STATE(4482), - [sym_flow_maybe_type] = STATE(4482), - [sym_parenthesized_type] = STATE(4482), - [sym_predefined_type] = STATE(4279), - [sym_object_type] = STATE(4482), - [sym_type_parameters] = STATE(7119), - [sym_array_type] = STATE(4482), - [sym_tuple_type] = STATE(4482), - [sym_readonly_type] = STATE(4457), - [sym_union_type] = STATE(4482), - [sym_intersection_type] = STATE(4482), - [sym_function_type] = STATE(4457), - [sym_identifier] = ACTIONS(3743), - [anon_sym_STAR] = ACTIONS(3745), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_typeof] = ACTIONS(3749), - [anon_sym_const] = ACTIONS(3751), - [anon_sym_LPAREN] = ACTIONS(3753), - [anon_sym_LBRACK] = ACTIONS(3755), - [anon_sym_DQUOTE] = ACTIONS(3757), - [anon_sym_SQUOTE] = ACTIONS(3759), - [anon_sym_new] = ACTIONS(3761), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3767), - [anon_sym_DASH] = ACTIONS(3767), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3769), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3771), - [sym_number] = ACTIONS(3773), - [sym_this] = ACTIONS(3775), - [sym_true] = ACTIONS(3773), - [sym_false] = ACTIONS(3773), - [sym_null] = ACTIONS(3773), - [sym_undefined] = ACTIONS(3773), - [anon_sym_readonly] = ACTIONS(3777), - [anon_sym_QMARK] = ACTIONS(3779), - [anon_sym_any] = ACTIONS(3769), - [anon_sym_number] = ACTIONS(3769), - [anon_sym_boolean] = ACTIONS(3769), - [anon_sym_string] = ACTIONS(3769), - [anon_sym_symbol] = ACTIONS(3769), - [anon_sym_object] = ACTIONS(3769), - [anon_sym_abstract] = ACTIONS(3781), - [anon_sym_asserts] = ACTIONS(3783), - [anon_sym_infer] = ACTIONS(3785), - [anon_sym_keyof] = ACTIONS(3787), - [anon_sym_unique] = ACTIONS(3789), - [anon_sym_unknown] = ACTIONS(3769), - [anon_sym_never] = ACTIONS(3769), - [anon_sym_LBRACE_PIPE] = ACTIONS(3747), - [sym_html_comment] = ACTIONS(5), - }, - [1867] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1867), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym_asserts] = STATE(4246), - [sym__type] = STATE(4228), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_predicate] = STATE(4246), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4157), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), - [sym_identifier] = ACTIONS(3731), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [1719] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1719), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym_asserts] = STATE(4073), + [sym__type] = STATE(4114), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_predicate] = STATE(4073), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4004), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), + [sym_identifier] = ACTIONS(3789), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(3733), + [sym_this] = ACTIONS(3791), [sym_true] = ACTIONS(2001), [sym_false] = ACTIONS(2001), [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_asserts] = ACTIONS(3735), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_asserts] = ACTIONS(3793), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), [sym_html_comment] = ACTIONS(5), }, - [1868] = { - [sym_nested_identifier] = STATE(7157), - [sym_string] = STATE(2499), - [sym_comment] = STATE(1868), - [sym_formal_parameters] = STATE(7383), - [sym_nested_type_identifier] = STATE(2449), - [sym_asserts] = STATE(2495), - [sym__type] = STATE(2496), - [sym_constructor_type] = STATE(2482), - [sym__primary_type] = STATE(2493), - [sym_template_literal_type] = STATE(2467), - [sym_infer_type] = STATE(2482), - [sym_conditional_type] = STATE(2467), - [sym_generic_type] = STATE(2467), - [sym_type_predicate] = STATE(2495), - [sym_type_query] = STATE(2467), - [sym_index_type_query] = STATE(2467), - [sym_lookup_type] = STATE(2467), - [sym_literal_type] = STATE(2467), - [sym__number] = STATE(2576), - [sym_existential_type] = STATE(2467), - [sym_flow_maybe_type] = STATE(2467), - [sym_parenthesized_type] = STATE(2467), - [sym_predefined_type] = STATE(2456), - [sym_object_type] = STATE(2467), - [sym_type_parameters] = STATE(7072), - [sym_array_type] = STATE(2467), - [sym_tuple_type] = STATE(2467), - [sym_readonly_type] = STATE(2482), - [sym_union_type] = STATE(2467), - [sym_intersection_type] = STATE(2467), - [sym_function_type] = STATE(2482), - [sym_identifier] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_typeof] = ACTIONS(3929), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), + [1720] = { + [sym_nested_identifier] = STATE(7006), + [sym_string] = STATE(4247), + [sym_comment] = STATE(1720), + [sym_formal_parameters] = STATE(7134), + [sym_nested_type_identifier] = STATE(4103), + [sym_asserts] = STATE(4311), + [sym__type] = STATE(4312), + [sym_constructor_type] = STATE(4153), + [sym__primary_type] = STATE(4154), + [sym_template_literal_type] = STATE(4155), + [sym_infer_type] = STATE(4153), + [sym_conditional_type] = STATE(4155), + [sym_generic_type] = STATE(4155), + [sym_type_predicate] = STATE(4311), + [sym_type_query] = STATE(4155), + [sym_index_type_query] = STATE(4155), + [sym_lookup_type] = STATE(4155), + [sym_literal_type] = STATE(4155), + [sym__number] = STATE(4156), + [sym_existential_type] = STATE(4155), + [sym_flow_maybe_type] = STATE(4155), + [sym_parenthesized_type] = STATE(4155), + [sym_predefined_type] = STATE(4145), + [sym_object_type] = STATE(4155), + [sym_type_parameters] = STATE(6916), + [sym_array_type] = STATE(4155), + [sym_tuple_type] = STATE(4155), + [sym_readonly_type] = STATE(4153), + [sym_union_type] = STATE(4155), + [sym_intersection_type] = STATE(4155), + [sym_function_type] = STATE(4153), + [sym_identifier] = ACTIONS(3741), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_typeof] = ACTIONS(3747), + [anon_sym_const] = ACTIONS(3749), + [anon_sym_LPAREN] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3755), + [anon_sym_SQUOTE] = ACTIONS(3757), + [anon_sym_new] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_PIPE] = ACTIONS(3763), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3945), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3947), - [sym_number] = ACTIONS(3949), - [sym_this] = ACTIONS(3951), - [sym_true] = ACTIONS(3949), - [sym_false] = ACTIONS(3949), - [sym_null] = ACTIONS(3949), - [sym_undefined] = ACTIONS(3949), - [anon_sym_readonly] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_any] = ACTIONS(3945), - [anon_sym_number] = ACTIONS(3945), - [anon_sym_boolean] = ACTIONS(3945), - [anon_sym_string] = ACTIONS(3945), - [anon_sym_symbol] = ACTIONS(3945), - [anon_sym_object] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(3957), - [anon_sym_asserts] = ACTIONS(3959), - [anon_sym_infer] = ACTIONS(3961), - [anon_sym_keyof] = ACTIONS(3963), - [anon_sym_unique] = ACTIONS(3965), - [anon_sym_unknown] = ACTIONS(3945), - [anon_sym_never] = ACTIONS(3945), - [anon_sym_LBRACE_PIPE] = ACTIONS(3927), + [anon_sym_void] = ACTIONS(3767), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3769), + [sym_number] = ACTIONS(3771), + [sym_this] = ACTIONS(3773), + [sym_true] = ACTIONS(3771), + [sym_false] = ACTIONS(3771), + [sym_null] = ACTIONS(3771), + [sym_undefined] = ACTIONS(3771), + [anon_sym_readonly] = ACTIONS(3775), + [anon_sym_QMARK] = ACTIONS(3777), + [anon_sym_any] = ACTIONS(3767), + [anon_sym_number] = ACTIONS(3767), + [anon_sym_boolean] = ACTIONS(3767), + [anon_sym_string] = ACTIONS(3767), + [anon_sym_symbol] = ACTIONS(3767), + [anon_sym_object] = ACTIONS(3767), + [anon_sym_abstract] = ACTIONS(3779), + [anon_sym_asserts] = ACTIONS(3781), + [anon_sym_infer] = ACTIONS(3783), + [anon_sym_keyof] = ACTIONS(3785), + [anon_sym_unique] = ACTIONS(3787), + [anon_sym_unknown] = ACTIONS(3767), + [anon_sym_never] = ACTIONS(3767), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), [sym_html_comment] = ACTIONS(5), }, - [1869] = { - [sym_nested_identifier] = STATE(7360), - [sym_string] = STATE(3048), - [sym_comment] = STATE(1869), - [sym_formal_parameters] = STATE(7424), - [sym_nested_type_identifier] = STATE(2840), - [sym_asserts] = STATE(3096), - [sym__type] = STATE(3097), - [sym_constructor_type] = STATE(3044), - [sym__primary_type] = STATE(3039), - [sym_template_literal_type] = STATE(3036), - [sym_infer_type] = STATE(3044), - [sym_conditional_type] = STATE(3036), - [sym_generic_type] = STATE(3036), - [sym_type_predicate] = STATE(3096), - [sym_type_query] = STATE(3036), - [sym_index_type_query] = STATE(3036), - [sym_lookup_type] = STATE(3036), - [sym_literal_type] = STATE(3036), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3036), - [sym_flow_maybe_type] = STATE(3036), - [sym_parenthesized_type] = STATE(3036), - [sym_predefined_type] = STATE(2878), - [sym_object_type] = STATE(3036), - [sym_type_parameters] = STATE(6722), - [sym_array_type] = STATE(3036), - [sym_tuple_type] = STATE(3036), - [sym_readonly_type] = STATE(3044), - [sym_union_type] = STATE(3036), - [sym_intersection_type] = STATE(3036), - [sym_function_type] = STATE(3044), - [sym_identifier] = ACTIONS(3879), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3883), - [anon_sym_typeof] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3891), + [1721] = { + [sym_nested_identifier] = STATE(7198), + [sym_string] = STATE(2867), + [sym_comment] = STATE(1721), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(2711), + [sym_asserts] = STATE(2876), + [sym__type] = STATE(2875), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2842), + [sym_template_literal_type] = STATE(2841), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2841), + [sym_generic_type] = STATE(2841), + [sym_type_predicate] = STATE(2876), + [sym_type_query] = STATE(2841), + [sym_index_type_query] = STATE(2841), + [sym_lookup_type] = STATE(2841), + [sym_literal_type] = STATE(2841), + [sym__number] = STATE(2835), + [sym_existential_type] = STATE(2841), + [sym_flow_maybe_type] = STATE(2841), + [sym_parenthesized_type] = STATE(2841), + [sym_predefined_type] = STATE(2746), + [sym_object_type] = STATE(2841), + [sym_type_parameters] = STATE(6539), + [sym_array_type] = STATE(2841), + [sym_tuple_type] = STATE(2841), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2841), + [sym_intersection_type] = STATE(2841), + [sym_function_type] = STATE(2843), + [sym_identifier] = ACTIONS(3927), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3901), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3903), - [sym_number] = ACTIONS(3905), - [sym_this] = ACTIONS(3907), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_null] = ACTIONS(3905), - [sym_undefined] = ACTIONS(3905), - [anon_sym_readonly] = ACTIONS(3909), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_any] = ACTIONS(3901), - [anon_sym_number] = ACTIONS(3901), - [anon_sym_boolean] = ACTIONS(3901), - [anon_sym_string] = ACTIONS(3901), - [anon_sym_symbol] = ACTIONS(3901), - [anon_sym_object] = ACTIONS(3901), - [anon_sym_abstract] = ACTIONS(3913), - [anon_sym_asserts] = ACTIONS(3915), - [anon_sym_infer] = ACTIONS(3917), - [anon_sym_keyof] = ACTIONS(3919), - [anon_sym_unique] = ACTIONS(3921), - [anon_sym_unknown] = ACTIONS(3901), - [anon_sym_never] = ACTIONS(3901), - [anon_sym_LBRACE_PIPE] = ACTIONS(3883), + [anon_sym_void] = ACTIONS(3949), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), + [sym_this] = ACTIONS(3955), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_asserts] = ACTIONS(3963), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), [sym_html_comment] = ACTIONS(5), }, - [1870] = { - [sym_nested_identifier] = STATE(7189), - [sym_string] = STATE(4340), - [sym_comment] = STATE(1870), - [sym_formal_parameters] = STATE(7503), - [sym_nested_type_identifier] = STATE(4262), - [sym_asserts] = STATE(4420), - [sym__type] = STATE(4419), - [sym_constructor_type] = STATE(4457), - [sym__primary_type] = STATE(4489), - [sym_template_literal_type] = STATE(4482), - [sym_infer_type] = STATE(4457), - [sym_conditional_type] = STATE(4482), - [sym_generic_type] = STATE(4482), - [sym_type_predicate] = STATE(4420), - [sym_type_query] = STATE(4482), - [sym_index_type_query] = STATE(4482), - [sym_lookup_type] = STATE(4482), - [sym_literal_type] = STATE(4482), - [sym__number] = STATE(4473), - [sym_existential_type] = STATE(4482), - [sym_flow_maybe_type] = STATE(4482), - [sym_parenthesized_type] = STATE(4482), - [sym_predefined_type] = STATE(4279), - [sym_object_type] = STATE(4482), - [sym_type_parameters] = STATE(7119), - [sym_array_type] = STATE(4482), - [sym_tuple_type] = STATE(4482), - [sym_readonly_type] = STATE(4457), - [sym_union_type] = STATE(4482), - [sym_intersection_type] = STATE(4482), - [sym_function_type] = STATE(4457), - [sym_identifier] = ACTIONS(3743), - [anon_sym_STAR] = ACTIONS(3745), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_typeof] = ACTIONS(3749), - [anon_sym_const] = ACTIONS(3751), - [anon_sym_LPAREN] = ACTIONS(3753), - [anon_sym_LBRACK] = ACTIONS(3755), - [anon_sym_DQUOTE] = ACTIONS(3757), - [anon_sym_SQUOTE] = ACTIONS(3759), - [anon_sym_new] = ACTIONS(3761), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3767), - [anon_sym_DASH] = ACTIONS(3767), + [1722] = { + [sym_nested_identifier] = STATE(7198), + [sym_string] = STATE(2867), + [sym_comment] = STATE(1722), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(2711), + [sym_asserts] = STATE(2956), + [sym__type] = STATE(2953), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2842), + [sym_template_literal_type] = STATE(2841), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2841), + [sym_generic_type] = STATE(2841), + [sym_type_predicate] = STATE(2956), + [sym_type_query] = STATE(2841), + [sym_index_type_query] = STATE(2841), + [sym_lookup_type] = STATE(2841), + [sym_literal_type] = STATE(2841), + [sym__number] = STATE(2835), + [sym_existential_type] = STATE(2841), + [sym_flow_maybe_type] = STATE(2841), + [sym_parenthesized_type] = STATE(2841), + [sym_predefined_type] = STATE(2746), + [sym_object_type] = STATE(2841), + [sym_type_parameters] = STATE(6539), + [sym_array_type] = STATE(2841), + [sym_tuple_type] = STATE(2841), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2841), + [sym_intersection_type] = STATE(2841), + [sym_function_type] = STATE(2843), + [sym_identifier] = ACTIONS(3927), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3769), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3771), - [sym_number] = ACTIONS(3773), - [sym_this] = ACTIONS(3775), - [sym_true] = ACTIONS(3773), - [sym_false] = ACTIONS(3773), - [sym_null] = ACTIONS(3773), - [sym_undefined] = ACTIONS(3773), - [anon_sym_readonly] = ACTIONS(3777), - [anon_sym_QMARK] = ACTIONS(3779), - [anon_sym_any] = ACTIONS(3769), - [anon_sym_number] = ACTIONS(3769), - [anon_sym_boolean] = ACTIONS(3769), - [anon_sym_string] = ACTIONS(3769), - [anon_sym_symbol] = ACTIONS(3769), - [anon_sym_object] = ACTIONS(3769), - [anon_sym_abstract] = ACTIONS(3781), - [anon_sym_asserts] = ACTIONS(3783), - [anon_sym_infer] = ACTIONS(3785), - [anon_sym_keyof] = ACTIONS(3787), - [anon_sym_unique] = ACTIONS(3789), - [anon_sym_unknown] = ACTIONS(3769), - [anon_sym_never] = ACTIONS(3769), - [anon_sym_LBRACE_PIPE] = ACTIONS(3747), + [anon_sym_void] = ACTIONS(3949), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), + [sym_this] = ACTIONS(3955), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_asserts] = ACTIONS(3963), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), [sym_html_comment] = ACTIONS(5), }, - [1871] = { - [sym_nested_identifier] = STATE(7157), - [sym_string] = STATE(2499), - [sym_comment] = STATE(1871), - [sym_formal_parameters] = STATE(7383), - [sym_nested_type_identifier] = STATE(2449), - [sym_asserts] = STATE(2567), - [sym__type] = STATE(2566), - [sym_constructor_type] = STATE(2482), - [sym__primary_type] = STATE(2493), - [sym_template_literal_type] = STATE(2467), - [sym_infer_type] = STATE(2482), - [sym_conditional_type] = STATE(2467), - [sym_generic_type] = STATE(2467), - [sym_type_predicate] = STATE(2567), - [sym_type_query] = STATE(2467), - [sym_index_type_query] = STATE(2467), - [sym_lookup_type] = STATE(2467), - [sym_literal_type] = STATE(2467), - [sym__number] = STATE(2576), - [sym_existential_type] = STATE(2467), - [sym_flow_maybe_type] = STATE(2467), - [sym_parenthesized_type] = STATE(2467), - [sym_predefined_type] = STATE(2456), - [sym_object_type] = STATE(2467), - [sym_type_parameters] = STATE(7072), - [sym_array_type] = STATE(2467), - [sym_tuple_type] = STATE(2467), - [sym_readonly_type] = STATE(2482), - [sym_union_type] = STATE(2467), - [sym_intersection_type] = STATE(2467), - [sym_function_type] = STATE(2482), - [sym_identifier] = ACTIONS(3923), - [anon_sym_STAR] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_typeof] = ACTIONS(3929), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), + [1723] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1723), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym_asserts] = STATE(4066), + [sym__type] = STATE(4096), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_predicate] = STATE(4066), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4004), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), + [sym_identifier] = ACTIONS(3789), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3945), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3947), - [sym_number] = ACTIONS(3949), - [sym_this] = ACTIONS(3951), - [sym_true] = ACTIONS(3949), - [sym_false] = ACTIONS(3949), - [sym_null] = ACTIONS(3949), - [sym_undefined] = ACTIONS(3949), - [anon_sym_readonly] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_any] = ACTIONS(3945), - [anon_sym_number] = ACTIONS(3945), - [anon_sym_boolean] = ACTIONS(3945), - [anon_sym_string] = ACTIONS(3945), - [anon_sym_symbol] = ACTIONS(3945), - [anon_sym_object] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(3957), - [anon_sym_asserts] = ACTIONS(3959), - [anon_sym_infer] = ACTIONS(3961), - [anon_sym_keyof] = ACTIONS(3963), - [anon_sym_unique] = ACTIONS(3965), - [anon_sym_unknown] = ACTIONS(3945), - [anon_sym_never] = ACTIONS(3945), - [anon_sym_LBRACE_PIPE] = ACTIONS(3927), + [anon_sym_void] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(3791), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_asserts] = ACTIONS(3793), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), [sym_html_comment] = ACTIONS(5), }, - [1872] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1872), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym_asserts] = STATE(4025), - [sym__type] = STATE(3928), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_predicate] = STATE(4025), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3927), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(3737), + [1724] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1724), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym_asserts] = STATE(3782), + [sym__type] = STATE(3831), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_predicate] = STATE(3782), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3776), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(3735), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), [anon_sym_typeof] = ACTIONS(1959), @@ -215478,7 +203060,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1975), [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(3739), + [sym_this] = ACTIONS(3737), [sym_true] = ACTIONS(1977), [sym_false] = ACTIONS(1977), [sym_null] = ACTIONS(1977), @@ -215492,7 +203074,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(206), [anon_sym_object] = ACTIONS(206), [anon_sym_abstract] = ACTIONS(198), - [anon_sym_asserts] = ACTIONS(3741), + [anon_sym_asserts] = ACTIONS(3739), [anon_sym_infer] = ACTIONS(200), [anon_sym_keyof] = ACTIONS(202), [anon_sym_unique] = ACTIONS(204), @@ -215501,980 +203083,980 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1873] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1873), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym_asserts] = STATE(4258), - [sym__type] = STATE(4213), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_predicate] = STATE(4258), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4157), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), - [sym_identifier] = ACTIONS(3731), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), + [1725] = { + [sym_nested_identifier] = STATE(6973), + [sym_string] = STATE(2430), + [sym_comment] = STATE(1725), + [sym_formal_parameters] = STATE(7150), + [sym_nested_type_identifier] = STATE(2302), + [sym_asserts] = STATE(2360), + [sym__type] = STATE(2359), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2427), + [sym_template_literal_type] = STATE(2426), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2426), + [sym_generic_type] = STATE(2426), + [sym_type_predicate] = STATE(2360), + [sym_type_query] = STATE(2426), + [sym_index_type_query] = STATE(2426), + [sym_lookup_type] = STATE(2426), + [sym_literal_type] = STATE(2426), + [sym__number] = STATE(2422), + [sym_existential_type] = STATE(2426), + [sym_flow_maybe_type] = STATE(2426), + [sym_parenthesized_type] = STATE(2426), + [sym_predefined_type] = STATE(2299), + [sym_object_type] = STATE(2426), + [sym_type_parameters] = STATE(6889), + [sym_array_type] = STATE(2426), + [sym_tuple_type] = STATE(2426), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2426), + [sym_intersection_type] = STATE(2426), + [sym_function_type] = STATE(2428), + [sym_identifier] = ACTIONS(3883), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(3733), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_asserts] = ACTIONS(3735), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), + [anon_sym_void] = ACTIONS(3905), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), + [sym_this] = ACTIONS(3911), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_asserts] = ACTIONS(3919), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), [sym_html_comment] = ACTIONS(5), }, - [1874] = { - [sym_export_statement] = STATE(4856), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6388), - [sym_array_pattern] = STATE(4344), - [sym__call_signature] = STATE(5291), - [sym__destructuring_pattern] = STATE(7382), - [sym_spread_element] = STATE(6380), - [sym_string] = STATE(4240), - [sym_comment] = STATE(1874), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4276), - [sym_rest_pattern] = STATE(6388), - [sym_method_definition] = STATE(6380), - [sym_pair] = STATE(6380), - [sym_pair_pattern] = STATE(6388), - [sym__property_name] = STATE(4086), - [sym_computed_property_name] = STATE(4240), - [sym_method_signature] = STATE(4856), - [sym_accessibility_modifier] = STATE(3756), - [sym_override_modifier] = STATE(3769), - [sym_call_signature] = STATE(4856), - [sym_property_signature] = STATE(4856), - [sym_type_parameters] = STATE(6903), - [sym_construct_signature] = STATE(4856), - [sym_index_signature] = STATE(4856), - [aux_sym_export_statement_repeat1] = STATE(5606), - [aux_sym_object_repeat1] = STATE(6347), - [aux_sym_object_pattern_repeat1] = STATE(6379), - [sym_identifier] = ACTIONS(3967), - [anon_sym_export] = ACTIONS(3969), - [anon_sym_STAR] = ACTIONS(3971), - [anon_sym_type] = ACTIONS(3967), - [anon_sym_namespace] = ACTIONS(3967), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3975), - [anon_sym_RBRACE] = ACTIONS(3977), - [anon_sym_let] = ACTIONS(3967), - [anon_sym_LPAREN] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3981), - [anon_sym_LBRACK] = ACTIONS(3983), + [1726] = { + [sym_export_statement] = STATE(4788), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(5630), + [sym_array_pattern] = STATE(4286), + [sym__call_signature] = STATE(5009), + [sym__destructuring_pattern] = STATE(7199), + [sym_spread_element] = STATE(5708), + [sym_string] = STATE(4102), + [sym_comment] = STATE(1726), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4128), + [sym_rest_pattern] = STATE(5630), + [sym_method_definition] = STATE(5708), + [sym_pair] = STATE(5708), + [sym_pair_pattern] = STATE(5630), + [sym__property_name] = STATE(3981), + [sym_computed_property_name] = STATE(4102), + [sym_method_signature] = STATE(4788), + [sym_accessibility_modifier] = STATE(3566), + [sym_override_modifier] = STATE(3630), + [sym_call_signature] = STATE(4788), + [sym_property_signature] = STATE(4788), + [sym_type_parameters] = STATE(6358), + [sym_construct_signature] = STATE(4788), + [sym_index_signature] = STATE(4788), + [aux_sym_export_statement_repeat1] = STATE(5525), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_identifier] = ACTIONS(3971), + [anon_sym_export] = ACTIONS(3973), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_type] = ACTIONS(3971), + [anon_sym_namespace] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_RBRACE] = ACTIONS(3981), + [anon_sym_let] = ACTIONS(3971), + [anon_sym_LPAREN] = ACTIONS(3983), + [anon_sym_SEMI] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(3985), - [anon_sym_new] = ACTIONS(3987), + [anon_sym_async] = ACTIONS(3989), + [anon_sym_new] = ACTIONS(3991), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3989), - [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), [anon_sym_LT] = ACTIONS(1973), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3991), - [sym_private_property_identifier] = ACTIONS(3991), + [sym_number] = ACTIONS(3995), + [sym_private_property_identifier] = ACTIONS(3995), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3993), - [anon_sym_readonly] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(3997), - [anon_sym_set] = ACTIONS(3997), - [anon_sym_declare] = ACTIONS(3967), - [anon_sym_public] = ACTIONS(3999), - [anon_sym_private] = ACTIONS(3999), - [anon_sym_protected] = ACTIONS(3999), - [anon_sym_override] = ACTIONS(4001), - [anon_sym_module] = ACTIONS(3967), - [anon_sym_any] = ACTIONS(3967), - [anon_sym_number] = ACTIONS(3967), - [anon_sym_boolean] = ACTIONS(3967), - [anon_sym_string] = ACTIONS(3967), - [anon_sym_symbol] = ACTIONS(3967), - [anon_sym_object] = ACTIONS(3967), - [anon_sym_abstract] = ACTIONS(4003), - [anon_sym_PIPE_RBRACE] = ACTIONS(4005), + [anon_sym_static] = ACTIONS(3997), + [anon_sym_readonly] = ACTIONS(3999), + [anon_sym_get] = ACTIONS(4001), + [anon_sym_set] = ACTIONS(4001), + [anon_sym_declare] = ACTIONS(3971), + [anon_sym_public] = ACTIONS(4003), + [anon_sym_private] = ACTIONS(4003), + [anon_sym_protected] = ACTIONS(4003), + [anon_sym_override] = ACTIONS(4005), + [anon_sym_module] = ACTIONS(3971), + [anon_sym_any] = ACTIONS(3971), + [anon_sym_number] = ACTIONS(3971), + [anon_sym_boolean] = ACTIONS(3971), + [anon_sym_string] = ACTIONS(3971), + [anon_sym_symbol] = ACTIONS(3971), + [anon_sym_object] = ACTIONS(3971), + [anon_sym_abstract] = ACTIONS(4007), + [anon_sym_PIPE_RBRACE] = ACTIONS(4009), [sym_html_comment] = ACTIONS(5), }, - [1875] = { - [sym_export_statement] = STATE(4856), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6388), - [sym_array_pattern] = STATE(4344), - [sym__call_signature] = STATE(5291), - [sym__destructuring_pattern] = STATE(7382), - [sym_spread_element] = STATE(6380), - [sym_string] = STATE(4240), - [sym_comment] = STATE(1875), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4276), - [sym_rest_pattern] = STATE(6388), - [sym_method_definition] = STATE(6380), - [sym_pair] = STATE(6380), - [sym_pair_pattern] = STATE(6388), - [sym__property_name] = STATE(4086), - [sym_computed_property_name] = STATE(4240), - [sym_method_signature] = STATE(4856), - [sym_accessibility_modifier] = STATE(3756), - [sym_override_modifier] = STATE(3769), - [sym_call_signature] = STATE(4856), - [sym_property_signature] = STATE(4856), - [sym_type_parameters] = STATE(6903), - [sym_construct_signature] = STATE(4856), - [sym_index_signature] = STATE(4856), - [aux_sym_export_statement_repeat1] = STATE(5606), - [aux_sym_object_repeat1] = STATE(6347), - [aux_sym_object_pattern_repeat1] = STATE(6379), - [sym_identifier] = ACTIONS(3967), - [anon_sym_export] = ACTIONS(3969), - [anon_sym_STAR] = ACTIONS(3971), - [anon_sym_type] = ACTIONS(3967), - [anon_sym_namespace] = ACTIONS(3967), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3975), - [anon_sym_RBRACE] = ACTIONS(4007), - [anon_sym_let] = ACTIONS(3967), - [anon_sym_LPAREN] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3981), - [anon_sym_LBRACK] = ACTIONS(3983), + [1727] = { + [sym_export_statement] = STATE(4788), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(5630), + [sym_array_pattern] = STATE(4286), + [sym__call_signature] = STATE(5009), + [sym__destructuring_pattern] = STATE(7199), + [sym_spread_element] = STATE(5631), + [sym_string] = STATE(4102), + [sym_comment] = STATE(1727), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4128), + [sym_rest_pattern] = STATE(5630), + [sym_method_definition] = STATE(5631), + [sym_pair] = STATE(5631), + [sym_pair_pattern] = STATE(5630), + [sym__property_name] = STATE(3981), + [sym_computed_property_name] = STATE(4102), + [sym_method_signature] = STATE(4788), + [sym_accessibility_modifier] = STATE(3566), + [sym_override_modifier] = STATE(3630), + [sym_call_signature] = STATE(4788), + [sym_property_signature] = STATE(4788), + [sym_type_parameters] = STATE(6358), + [sym_construct_signature] = STATE(4788), + [sym_index_signature] = STATE(4788), + [aux_sym_export_statement_repeat1] = STATE(5525), + [aux_sym_object_repeat1] = STATE(5649), + [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_identifier] = ACTIONS(4011), + [anon_sym_export] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_type] = ACTIONS(4011), + [anon_sym_namespace] = ACTIONS(4011), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_RBRACE] = ACTIONS(4015), + [anon_sym_let] = ACTIONS(4011), + [anon_sym_LPAREN] = ACTIONS(3983), + [anon_sym_SEMI] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(3985), - [anon_sym_new] = ACTIONS(3987), + [anon_sym_async] = ACTIONS(4017), + [anon_sym_new] = ACTIONS(4019), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3989), - [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), [anon_sym_LT] = ACTIONS(1973), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3991), - [sym_private_property_identifier] = ACTIONS(3991), + [sym_number] = ACTIONS(3995), + [sym_private_property_identifier] = ACTIONS(3995), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(3993), - [anon_sym_readonly] = ACTIONS(3995), - [anon_sym_get] = ACTIONS(3997), - [anon_sym_set] = ACTIONS(3997), - [anon_sym_declare] = ACTIONS(3967), - [anon_sym_public] = ACTIONS(3999), - [anon_sym_private] = ACTIONS(3999), - [anon_sym_protected] = ACTIONS(3999), - [anon_sym_override] = ACTIONS(4001), - [anon_sym_module] = ACTIONS(3967), - [anon_sym_any] = ACTIONS(3967), - [anon_sym_number] = ACTIONS(3967), - [anon_sym_boolean] = ACTIONS(3967), - [anon_sym_string] = ACTIONS(3967), - [anon_sym_symbol] = ACTIONS(3967), - [anon_sym_object] = ACTIONS(3967), - [anon_sym_abstract] = ACTIONS(4003), - [anon_sym_PIPE_RBRACE] = ACTIONS(4005), + [anon_sym_static] = ACTIONS(4021), + [anon_sym_readonly] = ACTIONS(4023), + [anon_sym_get] = ACTIONS(4025), + [anon_sym_set] = ACTIONS(4025), + [anon_sym_declare] = ACTIONS(4011), + [anon_sym_public] = ACTIONS(4027), + [anon_sym_private] = ACTIONS(4027), + [anon_sym_protected] = ACTIONS(4027), + [anon_sym_override] = ACTIONS(4029), + [anon_sym_module] = ACTIONS(4011), + [anon_sym_any] = ACTIONS(4011), + [anon_sym_number] = ACTIONS(4011), + [anon_sym_boolean] = ACTIONS(4011), + [anon_sym_string] = ACTIONS(4011), + [anon_sym_symbol] = ACTIONS(4011), + [anon_sym_object] = ACTIONS(4011), + [anon_sym_abstract] = ACTIONS(4007), + [anon_sym_PIPE_RBRACE] = ACTIONS(4009), [sym_html_comment] = ACTIONS(5), }, - [1876] = { - [sym_export_statement] = STATE(4856), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6388), - [sym_array_pattern] = STATE(4344), - [sym__call_signature] = STATE(5291), - [sym__destructuring_pattern] = STATE(7382), - [sym_spread_element] = STATE(6391), - [sym_string] = STATE(4240), - [sym_comment] = STATE(1876), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4276), - [sym_rest_pattern] = STATE(6388), - [sym_method_definition] = STATE(6391), - [sym_pair] = STATE(6391), - [sym_pair_pattern] = STATE(6388), - [sym__property_name] = STATE(4086), - [sym_computed_property_name] = STATE(4240), - [sym_method_signature] = STATE(4856), - [sym_accessibility_modifier] = STATE(3756), - [sym_override_modifier] = STATE(3769), - [sym_call_signature] = STATE(4856), - [sym_property_signature] = STATE(4856), - [sym_type_parameters] = STATE(6903), - [sym_construct_signature] = STATE(4856), - [sym_index_signature] = STATE(4856), - [aux_sym_export_statement_repeat1] = STATE(5606), - [aux_sym_object_repeat1] = STATE(6384), - [aux_sym_object_pattern_repeat1] = STATE(6379), - [sym_identifier] = ACTIONS(4009), - [anon_sym_export] = ACTIONS(4011), - [anon_sym_STAR] = ACTIONS(3971), - [anon_sym_type] = ACTIONS(4009), - [anon_sym_namespace] = ACTIONS(4009), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3975), - [anon_sym_RBRACE] = ACTIONS(4013), - [anon_sym_let] = ACTIONS(4009), - [anon_sym_LPAREN] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3981), - [anon_sym_LBRACK] = ACTIONS(3983), + [1728] = { + [sym_export_statement] = STATE(4788), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(5630), + [sym_array_pattern] = STATE(4286), + [sym__call_signature] = STATE(5009), + [sym__destructuring_pattern] = STATE(7199), + [sym_spread_element] = STATE(5708), + [sym_string] = STATE(4102), + [sym_comment] = STATE(1728), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4128), + [sym_rest_pattern] = STATE(5630), + [sym_method_definition] = STATE(5708), + [sym_pair] = STATE(5708), + [sym_pair_pattern] = STATE(5630), + [sym__property_name] = STATE(3981), + [sym_computed_property_name] = STATE(4102), + [sym_method_signature] = STATE(4788), + [sym_accessibility_modifier] = STATE(3566), + [sym_override_modifier] = STATE(3630), + [sym_call_signature] = STATE(4788), + [sym_property_signature] = STATE(4788), + [sym_type_parameters] = STATE(6358), + [sym_construct_signature] = STATE(4788), + [sym_index_signature] = STATE(4788), + [aux_sym_export_statement_repeat1] = STATE(5525), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_identifier] = ACTIONS(4031), + [anon_sym_export] = ACTIONS(4033), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_type] = ACTIONS(4031), + [anon_sym_namespace] = ACTIONS(4031), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_let] = ACTIONS(4031), + [anon_sym_LPAREN] = ACTIONS(3983), + [anon_sym_SEMI] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4015), - [anon_sym_new] = ACTIONS(4017), + [anon_sym_async] = ACTIONS(4037), + [anon_sym_new] = ACTIONS(4039), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3989), - [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), [anon_sym_LT] = ACTIONS(1973), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3991), - [sym_private_property_identifier] = ACTIONS(3991), + [sym_number] = ACTIONS(3995), + [sym_private_property_identifier] = ACTIONS(3995), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4019), - [anon_sym_readonly] = ACTIONS(4021), - [anon_sym_get] = ACTIONS(4023), - [anon_sym_set] = ACTIONS(4023), - [anon_sym_declare] = ACTIONS(4009), - [anon_sym_public] = ACTIONS(4025), - [anon_sym_private] = ACTIONS(4025), - [anon_sym_protected] = ACTIONS(4025), - [anon_sym_override] = ACTIONS(4027), - [anon_sym_module] = ACTIONS(4009), - [anon_sym_any] = ACTIONS(4009), - [anon_sym_number] = ACTIONS(4009), - [anon_sym_boolean] = ACTIONS(4009), - [anon_sym_string] = ACTIONS(4009), - [anon_sym_symbol] = ACTIONS(4009), - [anon_sym_object] = ACTIONS(4009), - [anon_sym_abstract] = ACTIONS(4003), - [anon_sym_PIPE_RBRACE] = ACTIONS(4005), + [anon_sym_static] = ACTIONS(4041), + [anon_sym_readonly] = ACTIONS(4043), + [anon_sym_get] = ACTIONS(4045), + [anon_sym_set] = ACTIONS(4045), + [anon_sym_declare] = ACTIONS(4031), + [anon_sym_public] = ACTIONS(4047), + [anon_sym_private] = ACTIONS(4047), + [anon_sym_protected] = ACTIONS(4047), + [anon_sym_override] = ACTIONS(4049), + [anon_sym_module] = ACTIONS(4031), + [anon_sym_any] = ACTIONS(4031), + [anon_sym_number] = ACTIONS(4031), + [anon_sym_boolean] = ACTIONS(4031), + [anon_sym_string] = ACTIONS(4031), + [anon_sym_symbol] = ACTIONS(4031), + [anon_sym_object] = ACTIONS(4031), + [anon_sym_abstract] = ACTIONS(4007), + [anon_sym_PIPE_RBRACE] = ACTIONS(4009), [sym_html_comment] = ACTIONS(5), }, - [1877] = { - [sym_export_statement] = STATE(4856), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6388), - [sym_array_pattern] = STATE(4344), - [sym__call_signature] = STATE(5291), - [sym__destructuring_pattern] = STATE(7382), - [sym_spread_element] = STATE(6391), - [sym_string] = STATE(4240), - [sym_comment] = STATE(1877), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4276), - [sym_rest_pattern] = STATE(6388), - [sym_method_definition] = STATE(6391), - [sym_pair] = STATE(6391), - [sym_pair_pattern] = STATE(6388), - [sym__property_name] = STATE(4086), - [sym_computed_property_name] = STATE(4240), - [sym_method_signature] = STATE(4856), - [sym_accessibility_modifier] = STATE(3756), - [sym_override_modifier] = STATE(3769), - [sym_call_signature] = STATE(4856), - [sym_property_signature] = STATE(4856), - [sym_type_parameters] = STATE(6903), - [sym_construct_signature] = STATE(4856), - [sym_index_signature] = STATE(4856), - [aux_sym_export_statement_repeat1] = STATE(5606), - [aux_sym_object_repeat1] = STATE(6384), - [aux_sym_object_pattern_repeat1] = STATE(6379), - [sym_identifier] = ACTIONS(4029), - [anon_sym_export] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(3971), - [anon_sym_type] = ACTIONS(4029), - [anon_sym_namespace] = ACTIONS(4029), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3975), - [anon_sym_RBRACE] = ACTIONS(4033), - [anon_sym_let] = ACTIONS(4029), - [anon_sym_LPAREN] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3981), - [anon_sym_LBRACK] = ACTIONS(3983), + [1729] = { + [sym_export_statement] = STATE(4788), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(5630), + [sym_array_pattern] = STATE(4286), + [sym__call_signature] = STATE(5009), + [sym__destructuring_pattern] = STATE(7199), + [sym_spread_element] = STATE(5708), + [sym_string] = STATE(4102), + [sym_comment] = STATE(1729), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4128), + [sym_rest_pattern] = STATE(5630), + [sym_method_definition] = STATE(5708), + [sym_pair] = STATE(5708), + [sym_pair_pattern] = STATE(5630), + [sym__property_name] = STATE(3981), + [sym_computed_property_name] = STATE(4102), + [sym_method_signature] = STATE(4788), + [sym_accessibility_modifier] = STATE(3566), + [sym_override_modifier] = STATE(3630), + [sym_call_signature] = STATE(4788), + [sym_property_signature] = STATE(4788), + [sym_type_parameters] = STATE(6358), + [sym_construct_signature] = STATE(4788), + [sym_index_signature] = STATE(4788), + [aux_sym_export_statement_repeat1] = STATE(5525), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_identifier] = ACTIONS(4051), + [anon_sym_export] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_type] = ACTIONS(4051), + [anon_sym_namespace] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_RBRACE] = ACTIONS(4055), + [anon_sym_let] = ACTIONS(4051), + [anon_sym_LPAREN] = ACTIONS(3983), + [anon_sym_SEMI] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4035), - [anon_sym_new] = ACTIONS(4037), + [anon_sym_async] = ACTIONS(4057), + [anon_sym_new] = ACTIONS(4059), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3989), - [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), [anon_sym_LT] = ACTIONS(1973), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3991), - [sym_private_property_identifier] = ACTIONS(3991), + [sym_number] = ACTIONS(3995), + [sym_private_property_identifier] = ACTIONS(3995), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4039), - [anon_sym_readonly] = ACTIONS(4041), - [anon_sym_get] = ACTIONS(4043), - [anon_sym_set] = ACTIONS(4043), - [anon_sym_declare] = ACTIONS(4029), - [anon_sym_public] = ACTIONS(4045), - [anon_sym_private] = ACTIONS(4045), - [anon_sym_protected] = ACTIONS(4045), - [anon_sym_override] = ACTIONS(4047), - [anon_sym_module] = ACTIONS(4029), - [anon_sym_any] = ACTIONS(4029), - [anon_sym_number] = ACTIONS(4029), - [anon_sym_boolean] = ACTIONS(4029), - [anon_sym_string] = ACTIONS(4029), - [anon_sym_symbol] = ACTIONS(4029), - [anon_sym_object] = ACTIONS(4029), - [anon_sym_abstract] = ACTIONS(4003), - [anon_sym_PIPE_RBRACE] = ACTIONS(4005), + [anon_sym_static] = ACTIONS(4061), + [anon_sym_readonly] = ACTIONS(4063), + [anon_sym_get] = ACTIONS(4065), + [anon_sym_set] = ACTIONS(4065), + [anon_sym_declare] = ACTIONS(4051), + [anon_sym_public] = ACTIONS(4067), + [anon_sym_private] = ACTIONS(4067), + [anon_sym_protected] = ACTIONS(4067), + [anon_sym_override] = ACTIONS(4069), + [anon_sym_module] = ACTIONS(4051), + [anon_sym_any] = ACTIONS(4051), + [anon_sym_number] = ACTIONS(4051), + [anon_sym_boolean] = ACTIONS(4051), + [anon_sym_string] = ACTIONS(4051), + [anon_sym_symbol] = ACTIONS(4051), + [anon_sym_object] = ACTIONS(4051), + [anon_sym_abstract] = ACTIONS(4007), + [anon_sym_PIPE_RBRACE] = ACTIONS(4009), [sym_html_comment] = ACTIONS(5), }, - [1878] = { - [sym_export_statement] = STATE(4856), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6388), - [sym_array_pattern] = STATE(4344), - [sym__call_signature] = STATE(5291), - [sym__destructuring_pattern] = STATE(7382), - [sym_spread_element] = STATE(6391), - [sym_string] = STATE(4240), - [sym_comment] = STATE(1878), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4276), - [sym_rest_pattern] = STATE(6388), - [sym_method_definition] = STATE(6391), - [sym_pair] = STATE(6391), - [sym_pair_pattern] = STATE(6388), - [sym__property_name] = STATE(4086), - [sym_computed_property_name] = STATE(4240), - [sym_method_signature] = STATE(4856), - [sym_accessibility_modifier] = STATE(3756), - [sym_override_modifier] = STATE(3769), - [sym_call_signature] = STATE(4856), - [sym_property_signature] = STATE(4856), - [sym_type_parameters] = STATE(6903), - [sym_construct_signature] = STATE(4856), - [sym_index_signature] = STATE(4856), - [aux_sym_export_statement_repeat1] = STATE(5606), - [aux_sym_object_repeat1] = STATE(6384), - [aux_sym_object_pattern_repeat1] = STATE(6379), - [sym_identifier] = ACTIONS(4009), - [anon_sym_export] = ACTIONS(4011), - [anon_sym_STAR] = ACTIONS(3971), - [anon_sym_type] = ACTIONS(4009), - [anon_sym_namespace] = ACTIONS(4009), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3975), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_let] = ACTIONS(4009), - [anon_sym_LPAREN] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3981), - [anon_sym_LBRACK] = ACTIONS(3983), + [1730] = { + [sym_export_statement] = STATE(4788), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(5630), + [sym_array_pattern] = STATE(4286), + [sym__call_signature] = STATE(5009), + [sym__destructuring_pattern] = STATE(7199), + [sym_spread_element] = STATE(5708), + [sym_string] = STATE(4102), + [sym_comment] = STATE(1730), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4128), + [sym_rest_pattern] = STATE(5630), + [sym_method_definition] = STATE(5708), + [sym_pair] = STATE(5708), + [sym_pair_pattern] = STATE(5630), + [sym__property_name] = STATE(3981), + [sym_computed_property_name] = STATE(4102), + [sym_method_signature] = STATE(4788), + [sym_accessibility_modifier] = STATE(3566), + [sym_override_modifier] = STATE(3630), + [sym_call_signature] = STATE(4788), + [sym_property_signature] = STATE(4788), + [sym_type_parameters] = STATE(6358), + [sym_construct_signature] = STATE(4788), + [sym_index_signature] = STATE(4788), + [aux_sym_export_statement_repeat1] = STATE(5525), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_identifier] = ACTIONS(4071), + [anon_sym_export] = ACTIONS(4073), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_type] = ACTIONS(4071), + [anon_sym_namespace] = ACTIONS(4071), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_RBRACE] = ACTIONS(4075), + [anon_sym_let] = ACTIONS(4071), + [anon_sym_LPAREN] = ACTIONS(3983), + [anon_sym_SEMI] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4015), - [anon_sym_new] = ACTIONS(4017), + [anon_sym_async] = ACTIONS(4077), + [anon_sym_new] = ACTIONS(4079), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3989), - [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), [anon_sym_LT] = ACTIONS(1973), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3991), - [sym_private_property_identifier] = ACTIONS(3991), + [sym_number] = ACTIONS(3995), + [sym_private_property_identifier] = ACTIONS(3995), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4019), - [anon_sym_readonly] = ACTIONS(4021), - [anon_sym_get] = ACTIONS(4023), - [anon_sym_set] = ACTIONS(4023), - [anon_sym_declare] = ACTIONS(4009), - [anon_sym_public] = ACTIONS(4025), - [anon_sym_private] = ACTIONS(4025), - [anon_sym_protected] = ACTIONS(4025), - [anon_sym_override] = ACTIONS(4027), - [anon_sym_module] = ACTIONS(4009), - [anon_sym_any] = ACTIONS(4009), - [anon_sym_number] = ACTIONS(4009), - [anon_sym_boolean] = ACTIONS(4009), - [anon_sym_string] = ACTIONS(4009), - [anon_sym_symbol] = ACTIONS(4009), - [anon_sym_object] = ACTIONS(4009), - [anon_sym_abstract] = ACTIONS(4003), - [anon_sym_PIPE_RBRACE] = ACTIONS(4005), + [anon_sym_static] = ACTIONS(4081), + [anon_sym_readonly] = ACTIONS(4083), + [anon_sym_get] = ACTIONS(4085), + [anon_sym_set] = ACTIONS(4085), + [anon_sym_declare] = ACTIONS(4071), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4089), + [anon_sym_module] = ACTIONS(4071), + [anon_sym_any] = ACTIONS(4071), + [anon_sym_number] = ACTIONS(4071), + [anon_sym_boolean] = ACTIONS(4071), + [anon_sym_string] = ACTIONS(4071), + [anon_sym_symbol] = ACTIONS(4071), + [anon_sym_object] = ACTIONS(4071), + [anon_sym_abstract] = ACTIONS(4007), + [anon_sym_PIPE_RBRACE] = ACTIONS(4009), [sym_html_comment] = ACTIONS(5), }, - [1879] = { - [sym_export_statement] = STATE(4856), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6388), - [sym_array_pattern] = STATE(4344), - [sym__call_signature] = STATE(5291), - [sym__destructuring_pattern] = STATE(7382), - [sym_spread_element] = STATE(6391), - [sym_string] = STATE(4240), - [sym_comment] = STATE(1879), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4276), - [sym_rest_pattern] = STATE(6388), - [sym_method_definition] = STATE(6391), - [sym_pair] = STATE(6391), - [sym_pair_pattern] = STATE(6388), - [sym__property_name] = STATE(4086), - [sym_computed_property_name] = STATE(4240), - [sym_method_signature] = STATE(4856), - [sym_accessibility_modifier] = STATE(3756), - [sym_override_modifier] = STATE(3769), - [sym_call_signature] = STATE(4856), - [sym_property_signature] = STATE(4856), - [sym_type_parameters] = STATE(6903), - [sym_construct_signature] = STATE(4856), - [sym_index_signature] = STATE(4856), - [aux_sym_export_statement_repeat1] = STATE(5606), - [aux_sym_object_repeat1] = STATE(6384), - [aux_sym_object_pattern_repeat1] = STATE(6379), - [sym_identifier] = ACTIONS(4029), - [anon_sym_export] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(3971), - [anon_sym_type] = ACTIONS(4029), - [anon_sym_namespace] = ACTIONS(4029), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3975), - [anon_sym_RBRACE] = ACTIONS(4051), - [anon_sym_let] = ACTIONS(4029), - [anon_sym_LPAREN] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3981), - [anon_sym_LBRACK] = ACTIONS(3983), + [1731] = { + [sym_export_statement] = STATE(4788), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(5630), + [sym_array_pattern] = STATE(4286), + [sym__call_signature] = STATE(5009), + [sym__destructuring_pattern] = STATE(7199), + [sym_spread_element] = STATE(5708), + [sym_string] = STATE(4102), + [sym_comment] = STATE(1731), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4128), + [sym_rest_pattern] = STATE(5630), + [sym_method_definition] = STATE(5708), + [sym_pair] = STATE(5708), + [sym_pair_pattern] = STATE(5630), + [sym__property_name] = STATE(3981), + [sym_computed_property_name] = STATE(4102), + [sym_method_signature] = STATE(4788), + [sym_accessibility_modifier] = STATE(3566), + [sym_override_modifier] = STATE(3630), + [sym_call_signature] = STATE(4788), + [sym_property_signature] = STATE(4788), + [sym_type_parameters] = STATE(6358), + [sym_construct_signature] = STATE(4788), + [sym_index_signature] = STATE(4788), + [aux_sym_export_statement_repeat1] = STATE(5525), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_identifier] = ACTIONS(4071), + [anon_sym_export] = ACTIONS(4073), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_type] = ACTIONS(4071), + [anon_sym_namespace] = ACTIONS(4071), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_RBRACE] = ACTIONS(4091), + [anon_sym_let] = ACTIONS(4071), + [anon_sym_LPAREN] = ACTIONS(3983), + [anon_sym_SEMI] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4035), - [anon_sym_new] = ACTIONS(4037), + [anon_sym_async] = ACTIONS(4077), + [anon_sym_new] = ACTIONS(4079), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3989), - [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), [anon_sym_LT] = ACTIONS(1973), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3991), - [sym_private_property_identifier] = ACTIONS(3991), + [sym_number] = ACTIONS(3995), + [sym_private_property_identifier] = ACTIONS(3995), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4039), - [anon_sym_readonly] = ACTIONS(4041), - [anon_sym_get] = ACTIONS(4043), - [anon_sym_set] = ACTIONS(4043), - [anon_sym_declare] = ACTIONS(4029), - [anon_sym_public] = ACTIONS(4045), - [anon_sym_private] = ACTIONS(4045), - [anon_sym_protected] = ACTIONS(4045), - [anon_sym_override] = ACTIONS(4047), - [anon_sym_module] = ACTIONS(4029), - [anon_sym_any] = ACTIONS(4029), - [anon_sym_number] = ACTIONS(4029), - [anon_sym_boolean] = ACTIONS(4029), - [anon_sym_string] = ACTIONS(4029), - [anon_sym_symbol] = ACTIONS(4029), - [anon_sym_object] = ACTIONS(4029), - [anon_sym_abstract] = ACTIONS(4003), - [anon_sym_PIPE_RBRACE] = ACTIONS(4005), + [anon_sym_static] = ACTIONS(4081), + [anon_sym_readonly] = ACTIONS(4083), + [anon_sym_get] = ACTIONS(4085), + [anon_sym_set] = ACTIONS(4085), + [anon_sym_declare] = ACTIONS(4071), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4089), + [anon_sym_module] = ACTIONS(4071), + [anon_sym_any] = ACTIONS(4071), + [anon_sym_number] = ACTIONS(4071), + [anon_sym_boolean] = ACTIONS(4071), + [anon_sym_string] = ACTIONS(4071), + [anon_sym_symbol] = ACTIONS(4071), + [anon_sym_object] = ACTIONS(4071), + [anon_sym_abstract] = ACTIONS(4007), + [anon_sym_PIPE_RBRACE] = ACTIONS(4009), [sym_html_comment] = ACTIONS(5), }, - [1880] = { - [sym_export_statement] = STATE(4856), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6388), - [sym_array_pattern] = STATE(4344), - [sym__call_signature] = STATE(5291), - [sym__destructuring_pattern] = STATE(7382), - [sym_spread_element] = STATE(6391), - [sym_string] = STATE(4240), - [sym_comment] = STATE(1880), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4276), - [sym_rest_pattern] = STATE(6388), - [sym_method_definition] = STATE(6391), - [sym_pair] = STATE(6391), - [sym_pair_pattern] = STATE(6388), - [sym__property_name] = STATE(4086), - [sym_computed_property_name] = STATE(4240), - [sym_method_signature] = STATE(4856), - [sym_accessibility_modifier] = STATE(3756), - [sym_override_modifier] = STATE(3769), - [sym_call_signature] = STATE(4856), - [sym_property_signature] = STATE(4856), - [sym_type_parameters] = STATE(6903), - [sym_construct_signature] = STATE(4856), - [sym_index_signature] = STATE(4856), - [aux_sym_export_statement_repeat1] = STATE(5606), - [aux_sym_object_repeat1] = STATE(6384), - [aux_sym_object_pattern_repeat1] = STATE(6379), - [sym_identifier] = ACTIONS(4009), - [anon_sym_export] = ACTIONS(4011), - [anon_sym_STAR] = ACTIONS(3971), - [anon_sym_type] = ACTIONS(4009), - [anon_sym_namespace] = ACTIONS(4009), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3975), - [anon_sym_RBRACE] = ACTIONS(4053), - [anon_sym_let] = ACTIONS(4009), - [anon_sym_LPAREN] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3981), - [anon_sym_LBRACK] = ACTIONS(3983), + [1732] = { + [sym_export_statement] = STATE(4788), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(5630), + [sym_array_pattern] = STATE(4286), + [sym__call_signature] = STATE(5009), + [sym__destructuring_pattern] = STATE(7199), + [sym_spread_element] = STATE(5708), + [sym_string] = STATE(4102), + [sym_comment] = STATE(1732), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4128), + [sym_rest_pattern] = STATE(5630), + [sym_method_definition] = STATE(5708), + [sym_pair] = STATE(5708), + [sym_pair_pattern] = STATE(5630), + [sym__property_name] = STATE(3981), + [sym_computed_property_name] = STATE(4102), + [sym_method_signature] = STATE(4788), + [sym_accessibility_modifier] = STATE(3566), + [sym_override_modifier] = STATE(3630), + [sym_call_signature] = STATE(4788), + [sym_property_signature] = STATE(4788), + [sym_type_parameters] = STATE(6358), + [sym_construct_signature] = STATE(4788), + [sym_index_signature] = STATE(4788), + [aux_sym_export_statement_repeat1] = STATE(5525), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_identifier] = ACTIONS(3971), + [anon_sym_export] = ACTIONS(3973), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_type] = ACTIONS(3971), + [anon_sym_namespace] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_RBRACE] = ACTIONS(4091), + [anon_sym_let] = ACTIONS(3971), + [anon_sym_LPAREN] = ACTIONS(3983), + [anon_sym_SEMI] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4015), - [anon_sym_new] = ACTIONS(4017), + [anon_sym_async] = ACTIONS(3989), + [anon_sym_new] = ACTIONS(3991), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3989), - [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), [anon_sym_LT] = ACTIONS(1973), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3991), - [sym_private_property_identifier] = ACTIONS(3991), + [sym_number] = ACTIONS(3995), + [sym_private_property_identifier] = ACTIONS(3995), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4019), - [anon_sym_readonly] = ACTIONS(4021), - [anon_sym_get] = ACTIONS(4023), - [anon_sym_set] = ACTIONS(4023), - [anon_sym_declare] = ACTIONS(4009), - [anon_sym_public] = ACTIONS(4025), - [anon_sym_private] = ACTIONS(4025), - [anon_sym_protected] = ACTIONS(4025), - [anon_sym_override] = ACTIONS(4027), - [anon_sym_module] = ACTIONS(4009), - [anon_sym_any] = ACTIONS(4009), - [anon_sym_number] = ACTIONS(4009), - [anon_sym_boolean] = ACTIONS(4009), - [anon_sym_string] = ACTIONS(4009), - [anon_sym_symbol] = ACTIONS(4009), - [anon_sym_object] = ACTIONS(4009), - [anon_sym_abstract] = ACTIONS(4003), - [anon_sym_PIPE_RBRACE] = ACTIONS(4005), + [anon_sym_static] = ACTIONS(3997), + [anon_sym_readonly] = ACTIONS(3999), + [anon_sym_get] = ACTIONS(4001), + [anon_sym_set] = ACTIONS(4001), + [anon_sym_declare] = ACTIONS(3971), + [anon_sym_public] = ACTIONS(4003), + [anon_sym_private] = ACTIONS(4003), + [anon_sym_protected] = ACTIONS(4003), + [anon_sym_override] = ACTIONS(4005), + [anon_sym_module] = ACTIONS(3971), + [anon_sym_any] = ACTIONS(3971), + [anon_sym_number] = ACTIONS(3971), + [anon_sym_boolean] = ACTIONS(3971), + [anon_sym_string] = ACTIONS(3971), + [anon_sym_symbol] = ACTIONS(3971), + [anon_sym_object] = ACTIONS(3971), + [anon_sym_abstract] = ACTIONS(4007), + [anon_sym_PIPE_RBRACE] = ACTIONS(4009), [sym_html_comment] = ACTIONS(5), }, - [1881] = { - [sym_export_statement] = STATE(4856), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6388), - [sym_array_pattern] = STATE(4344), - [sym__call_signature] = STATE(5291), - [sym__destructuring_pattern] = STATE(7382), - [sym_spread_element] = STATE(6391), - [sym_string] = STATE(4240), - [sym_comment] = STATE(1881), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4276), - [sym_rest_pattern] = STATE(6388), - [sym_method_definition] = STATE(6391), - [sym_pair] = STATE(6391), - [sym_pair_pattern] = STATE(6388), - [sym__property_name] = STATE(4086), - [sym_computed_property_name] = STATE(4240), - [sym_method_signature] = STATE(4856), - [sym_accessibility_modifier] = STATE(3756), - [sym_override_modifier] = STATE(3769), - [sym_call_signature] = STATE(4856), - [sym_property_signature] = STATE(4856), - [sym_type_parameters] = STATE(6903), - [sym_construct_signature] = STATE(4856), - [sym_index_signature] = STATE(4856), - [aux_sym_export_statement_repeat1] = STATE(5606), - [aux_sym_object_repeat1] = STATE(6384), - [aux_sym_object_pattern_repeat1] = STATE(6379), - [sym_identifier] = ACTIONS(4055), - [anon_sym_export] = ACTIONS(4057), - [anon_sym_STAR] = ACTIONS(3971), - [anon_sym_type] = ACTIONS(4055), - [anon_sym_namespace] = ACTIONS(4055), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3975), - [anon_sym_RBRACE] = ACTIONS(4059), - [anon_sym_let] = ACTIONS(4055), - [anon_sym_LPAREN] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3981), - [anon_sym_LBRACK] = ACTIONS(3983), + [1733] = { + [sym_export_statement] = STATE(4788), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(5630), + [sym_array_pattern] = STATE(4286), + [sym__call_signature] = STATE(5009), + [sym__destructuring_pattern] = STATE(7199), + [sym_spread_element] = STATE(5708), + [sym_string] = STATE(4102), + [sym_comment] = STATE(1733), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4128), + [sym_rest_pattern] = STATE(5630), + [sym_method_definition] = STATE(5708), + [sym_pair] = STATE(5708), + [sym_pair_pattern] = STATE(5630), + [sym__property_name] = STATE(3981), + [sym_computed_property_name] = STATE(4102), + [sym_method_signature] = STATE(4788), + [sym_accessibility_modifier] = STATE(3566), + [sym_override_modifier] = STATE(3630), + [sym_call_signature] = STATE(4788), + [sym_property_signature] = STATE(4788), + [sym_type_parameters] = STATE(6358), + [sym_construct_signature] = STATE(4788), + [sym_index_signature] = STATE(4788), + [aux_sym_export_statement_repeat1] = STATE(5525), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_identifier] = ACTIONS(4071), + [anon_sym_export] = ACTIONS(4073), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_type] = ACTIONS(4071), + [anon_sym_namespace] = ACTIONS(4071), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_RBRACE] = ACTIONS(4035), + [anon_sym_let] = ACTIONS(4071), + [anon_sym_LPAREN] = ACTIONS(3983), + [anon_sym_SEMI] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4061), - [anon_sym_new] = ACTIONS(4063), + [anon_sym_async] = ACTIONS(4077), + [anon_sym_new] = ACTIONS(4079), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3989), - [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), [anon_sym_LT] = ACTIONS(1973), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3991), - [sym_private_property_identifier] = ACTIONS(3991), + [sym_number] = ACTIONS(3995), + [sym_private_property_identifier] = ACTIONS(3995), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4065), - [anon_sym_readonly] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4069), - [anon_sym_set] = ACTIONS(4069), - [anon_sym_declare] = ACTIONS(4055), - [anon_sym_public] = ACTIONS(4071), - [anon_sym_private] = ACTIONS(4071), - [anon_sym_protected] = ACTIONS(4071), - [anon_sym_override] = ACTIONS(4073), - [anon_sym_module] = ACTIONS(4055), - [anon_sym_any] = ACTIONS(4055), - [anon_sym_number] = ACTIONS(4055), - [anon_sym_boolean] = ACTIONS(4055), - [anon_sym_string] = ACTIONS(4055), - [anon_sym_symbol] = ACTIONS(4055), - [anon_sym_object] = ACTIONS(4055), - [anon_sym_abstract] = ACTIONS(4003), - [anon_sym_PIPE_RBRACE] = ACTIONS(4005), + [anon_sym_static] = ACTIONS(4081), + [anon_sym_readonly] = ACTIONS(4083), + [anon_sym_get] = ACTIONS(4085), + [anon_sym_set] = ACTIONS(4085), + [anon_sym_declare] = ACTIONS(4071), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4089), + [anon_sym_module] = ACTIONS(4071), + [anon_sym_any] = ACTIONS(4071), + [anon_sym_number] = ACTIONS(4071), + [anon_sym_boolean] = ACTIONS(4071), + [anon_sym_string] = ACTIONS(4071), + [anon_sym_symbol] = ACTIONS(4071), + [anon_sym_object] = ACTIONS(4071), + [anon_sym_abstract] = ACTIONS(4007), + [anon_sym_PIPE_RBRACE] = ACTIONS(4009), [sym_html_comment] = ACTIONS(5), }, - [1882] = { - [sym_export_statement] = STATE(4856), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6388), - [sym_array_pattern] = STATE(4344), - [sym__call_signature] = STATE(5291), - [sym__destructuring_pattern] = STATE(7382), - [sym_spread_element] = STATE(6391), - [sym_string] = STATE(4240), - [sym_comment] = STATE(1882), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4276), - [sym_rest_pattern] = STATE(6388), - [sym_method_definition] = STATE(6391), - [sym_pair] = STATE(6391), - [sym_pair_pattern] = STATE(6388), - [sym__property_name] = STATE(4086), - [sym_computed_property_name] = STATE(4240), - [sym_method_signature] = STATE(4856), - [sym_accessibility_modifier] = STATE(3756), - [sym_override_modifier] = STATE(3769), - [sym_call_signature] = STATE(4856), - [sym_property_signature] = STATE(4856), - [sym_type_parameters] = STATE(6903), - [sym_construct_signature] = STATE(4856), - [sym_index_signature] = STATE(4856), - [aux_sym_export_statement_repeat1] = STATE(5606), - [aux_sym_object_repeat1] = STATE(6384), - [aux_sym_object_pattern_repeat1] = STATE(6379), - [sym_identifier] = ACTIONS(4075), - [anon_sym_export] = ACTIONS(4077), - [anon_sym_STAR] = ACTIONS(3971), - [anon_sym_type] = ACTIONS(4075), - [anon_sym_namespace] = ACTIONS(4075), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3975), - [anon_sym_RBRACE] = ACTIONS(4053), - [anon_sym_let] = ACTIONS(4075), - [anon_sym_LPAREN] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3981), - [anon_sym_LBRACK] = ACTIONS(3983), + [1734] = { + [sym_export_statement] = STATE(4788), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(5630), + [sym_array_pattern] = STATE(4286), + [sym__call_signature] = STATE(5009), + [sym__destructuring_pattern] = STATE(7199), + [sym_spread_element] = STATE(5708), + [sym_string] = STATE(4102), + [sym_comment] = STATE(1734), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4128), + [sym_rest_pattern] = STATE(5630), + [sym_method_definition] = STATE(5708), + [sym_pair] = STATE(5708), + [sym_pair_pattern] = STATE(5630), + [sym__property_name] = STATE(3981), + [sym_computed_property_name] = STATE(4102), + [sym_method_signature] = STATE(4788), + [sym_accessibility_modifier] = STATE(3566), + [sym_override_modifier] = STATE(3630), + [sym_call_signature] = STATE(4788), + [sym_property_signature] = STATE(4788), + [sym_type_parameters] = STATE(6358), + [sym_construct_signature] = STATE(4788), + [sym_index_signature] = STATE(4788), + [aux_sym_export_statement_repeat1] = STATE(5525), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_identifier] = ACTIONS(3971), + [anon_sym_export] = ACTIONS(3973), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_type] = ACTIONS(3971), + [anon_sym_namespace] = ACTIONS(3971), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_RBRACE] = ACTIONS(4093), + [anon_sym_let] = ACTIONS(3971), + [anon_sym_LPAREN] = ACTIONS(3983), + [anon_sym_SEMI] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4079), - [anon_sym_new] = ACTIONS(4081), + [anon_sym_async] = ACTIONS(3989), + [anon_sym_new] = ACTIONS(3991), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3989), - [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), [anon_sym_LT] = ACTIONS(1973), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3991), - [sym_private_property_identifier] = ACTIONS(3991), + [sym_number] = ACTIONS(3995), + [sym_private_property_identifier] = ACTIONS(3995), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4083), - [anon_sym_readonly] = ACTIONS(4085), - [anon_sym_get] = ACTIONS(4087), - [anon_sym_set] = ACTIONS(4087), - [anon_sym_declare] = ACTIONS(4075), - [anon_sym_public] = ACTIONS(4089), - [anon_sym_private] = ACTIONS(4089), - [anon_sym_protected] = ACTIONS(4089), - [anon_sym_override] = ACTIONS(4091), - [anon_sym_module] = ACTIONS(4075), - [anon_sym_any] = ACTIONS(4075), - [anon_sym_number] = ACTIONS(4075), - [anon_sym_boolean] = ACTIONS(4075), - [anon_sym_string] = ACTIONS(4075), - [anon_sym_symbol] = ACTIONS(4075), - [anon_sym_object] = ACTIONS(4075), - [anon_sym_abstract] = ACTIONS(4003), - [anon_sym_PIPE_RBRACE] = ACTIONS(4005), + [anon_sym_static] = ACTIONS(3997), + [anon_sym_readonly] = ACTIONS(3999), + [anon_sym_get] = ACTIONS(4001), + [anon_sym_set] = ACTIONS(4001), + [anon_sym_declare] = ACTIONS(3971), + [anon_sym_public] = ACTIONS(4003), + [anon_sym_private] = ACTIONS(4003), + [anon_sym_protected] = ACTIONS(4003), + [anon_sym_override] = ACTIONS(4005), + [anon_sym_module] = ACTIONS(3971), + [anon_sym_any] = ACTIONS(3971), + [anon_sym_number] = ACTIONS(3971), + [anon_sym_boolean] = ACTIONS(3971), + [anon_sym_string] = ACTIONS(3971), + [anon_sym_symbol] = ACTIONS(3971), + [anon_sym_object] = ACTIONS(3971), + [anon_sym_abstract] = ACTIONS(4007), + [anon_sym_PIPE_RBRACE] = ACTIONS(4009), [sym_html_comment] = ACTIONS(5), }, - [1883] = { - [sym_export_statement] = STATE(4856), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6388), - [sym_array_pattern] = STATE(4344), - [sym__call_signature] = STATE(5291), - [sym__destructuring_pattern] = STATE(7382), - [sym_spread_element] = STATE(6391), - [sym_string] = STATE(4240), - [sym_comment] = STATE(1883), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4276), - [sym_rest_pattern] = STATE(6388), - [sym_method_definition] = STATE(6391), - [sym_pair] = STATE(6391), - [sym_pair_pattern] = STATE(6388), - [sym__property_name] = STATE(4086), - [sym_computed_property_name] = STATE(4240), - [sym_method_signature] = STATE(4856), - [sym_accessibility_modifier] = STATE(3756), - [sym_override_modifier] = STATE(3769), - [sym_call_signature] = STATE(4856), - [sym_property_signature] = STATE(4856), - [sym_type_parameters] = STATE(6903), - [sym_construct_signature] = STATE(4856), - [sym_index_signature] = STATE(4856), - [aux_sym_export_statement_repeat1] = STATE(5606), - [aux_sym_object_repeat1] = STATE(6384), - [aux_sym_object_pattern_repeat1] = STATE(6379), - [sym_identifier] = ACTIONS(4029), - [anon_sym_export] = ACTIONS(4031), - [anon_sym_STAR] = ACTIONS(3971), - [anon_sym_type] = ACTIONS(4029), - [anon_sym_namespace] = ACTIONS(4029), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3975), - [anon_sym_RBRACE] = ACTIONS(4049), - [anon_sym_let] = ACTIONS(4029), - [anon_sym_LPAREN] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3981), - [anon_sym_LBRACK] = ACTIONS(3983), + [1735] = { + [sym_export_statement] = STATE(4837), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(5630), + [sym_array_pattern] = STATE(4286), + [sym__call_signature] = STATE(5009), + [sym__destructuring_pattern] = STATE(7199), + [sym_spread_element] = STATE(5708), + [sym_string] = STATE(4102), + [sym_comment] = STATE(1735), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4128), + [sym_rest_pattern] = STATE(5630), + [sym_method_definition] = STATE(5708), + [sym_pair] = STATE(5708), + [sym_pair_pattern] = STATE(5630), + [sym__property_name] = STATE(3981), + [sym_computed_property_name] = STATE(4102), + [sym_method_signature] = STATE(4837), + [sym_accessibility_modifier] = STATE(3566), + [sym_override_modifier] = STATE(3630), + [sym_call_signature] = STATE(4837), + [sym_property_signature] = STATE(4837), + [sym_type_parameters] = STATE(6358), + [sym_construct_signature] = STATE(4837), + [sym_index_signature] = STATE(4837), + [aux_sym_export_statement_repeat1] = STATE(5525), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_identifier] = ACTIONS(4071), + [anon_sym_export] = ACTIONS(4073), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_type] = ACTIONS(4071), + [anon_sym_namespace] = ACTIONS(4071), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(4095), + [anon_sym_RBRACE] = ACTIONS(4097), + [anon_sym_let] = ACTIONS(4071), + [anon_sym_LPAREN] = ACTIONS(3983), + [anon_sym_SEMI] = ACTIONS(4099), + [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4035), - [anon_sym_new] = ACTIONS(4037), + [anon_sym_async] = ACTIONS(4077), + [anon_sym_new] = ACTIONS(4079), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3989), - [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), [anon_sym_LT] = ACTIONS(1973), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3991), - [sym_private_property_identifier] = ACTIONS(3991), + [sym_number] = ACTIONS(3995), + [sym_private_property_identifier] = ACTIONS(3995), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4039), - [anon_sym_readonly] = ACTIONS(4041), - [anon_sym_get] = ACTIONS(4043), - [anon_sym_set] = ACTIONS(4043), - [anon_sym_declare] = ACTIONS(4029), - [anon_sym_public] = ACTIONS(4045), - [anon_sym_private] = ACTIONS(4045), - [anon_sym_protected] = ACTIONS(4045), - [anon_sym_override] = ACTIONS(4047), - [anon_sym_module] = ACTIONS(4029), - [anon_sym_any] = ACTIONS(4029), - [anon_sym_number] = ACTIONS(4029), - [anon_sym_boolean] = ACTIONS(4029), - [anon_sym_string] = ACTIONS(4029), - [anon_sym_symbol] = ACTIONS(4029), - [anon_sym_object] = ACTIONS(4029), - [anon_sym_abstract] = ACTIONS(4003), - [anon_sym_PIPE_RBRACE] = ACTIONS(4005), + [anon_sym_static] = ACTIONS(4081), + [anon_sym_readonly] = ACTIONS(4083), + [anon_sym_get] = ACTIONS(4085), + [anon_sym_set] = ACTIONS(4085), + [anon_sym_declare] = ACTIONS(4071), + [anon_sym_public] = ACTIONS(4087), + [anon_sym_private] = ACTIONS(4087), + [anon_sym_protected] = ACTIONS(4087), + [anon_sym_override] = ACTIONS(4089), + [anon_sym_module] = ACTIONS(4071), + [anon_sym_any] = ACTIONS(4071), + [anon_sym_number] = ACTIONS(4071), + [anon_sym_boolean] = ACTIONS(4071), + [anon_sym_string] = ACTIONS(4071), + [anon_sym_symbol] = ACTIONS(4071), + [anon_sym_object] = ACTIONS(4071), + [anon_sym_abstract] = ACTIONS(4007), + [anon_sym_PIPE_RBRACE] = ACTIONS(4101), [sym_html_comment] = ACTIONS(5), }, - [1884] = { - [sym_export_statement] = STATE(4850), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6388), - [sym_array_pattern] = STATE(4344), - [sym__call_signature] = STATE(5291), - [sym__destructuring_pattern] = STATE(7382), - [sym_spread_element] = STATE(6391), - [sym_string] = STATE(4240), - [sym_comment] = STATE(1884), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4276), - [sym_rest_pattern] = STATE(6388), - [sym_method_definition] = STATE(6391), - [sym_pair] = STATE(6391), - [sym_pair_pattern] = STATE(6388), - [sym__property_name] = STATE(4086), - [sym_computed_property_name] = STATE(4240), - [sym_method_signature] = STATE(4850), - [sym_accessibility_modifier] = STATE(3756), - [sym_override_modifier] = STATE(3769), - [sym_call_signature] = STATE(4850), - [sym_property_signature] = STATE(4850), - [sym_type_parameters] = STATE(6903), - [sym_construct_signature] = STATE(4850), - [sym_index_signature] = STATE(4850), - [aux_sym_export_statement_repeat1] = STATE(5606), - [aux_sym_object_repeat1] = STATE(6384), - [aux_sym_object_pattern_repeat1] = STATE(6379), - [sym_identifier] = ACTIONS(4009), - [anon_sym_export] = ACTIONS(4011), - [anon_sym_STAR] = ACTIONS(3971), - [anon_sym_type] = ACTIONS(4009), - [anon_sym_namespace] = ACTIONS(4009), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(4093), - [anon_sym_RBRACE] = ACTIONS(4095), - [anon_sym_let] = ACTIONS(4009), - [anon_sym_LPAREN] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(4097), - [anon_sym_LBRACK] = ACTIONS(3983), + [1736] = { + [sym_export_statement] = STATE(4788), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(5630), + [sym_array_pattern] = STATE(4286), + [sym__call_signature] = STATE(5009), + [sym__destructuring_pattern] = STATE(7199), + [sym_spread_element] = STATE(5631), + [sym_string] = STATE(4102), + [sym_comment] = STATE(1736), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4128), + [sym_rest_pattern] = STATE(5630), + [sym_method_definition] = STATE(5631), + [sym_pair] = STATE(5631), + [sym_pair_pattern] = STATE(5630), + [sym__property_name] = STATE(3981), + [sym_computed_property_name] = STATE(4102), + [sym_method_signature] = STATE(4788), + [sym_accessibility_modifier] = STATE(3566), + [sym_override_modifier] = STATE(3630), + [sym_call_signature] = STATE(4788), + [sym_property_signature] = STATE(4788), + [sym_type_parameters] = STATE(6358), + [sym_construct_signature] = STATE(4788), + [sym_index_signature] = STATE(4788), + [aux_sym_export_statement_repeat1] = STATE(5525), + [aux_sym_object_repeat1] = STATE(5649), + [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_identifier] = ACTIONS(4011), + [anon_sym_export] = ACTIONS(4013), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_type] = ACTIONS(4011), + [anon_sym_namespace] = ACTIONS(4011), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_RBRACE] = ACTIONS(4103), + [anon_sym_let] = ACTIONS(4011), + [anon_sym_LPAREN] = ACTIONS(3983), + [anon_sym_SEMI] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4015), - [anon_sym_new] = ACTIONS(4017), + [anon_sym_async] = ACTIONS(4017), + [anon_sym_new] = ACTIONS(4019), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3989), - [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), [anon_sym_LT] = ACTIONS(1973), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3991), - [sym_private_property_identifier] = ACTIONS(3991), + [sym_number] = ACTIONS(3995), + [sym_private_property_identifier] = ACTIONS(3995), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4019), - [anon_sym_readonly] = ACTIONS(4021), - [anon_sym_get] = ACTIONS(4023), - [anon_sym_set] = ACTIONS(4023), - [anon_sym_declare] = ACTIONS(4009), - [anon_sym_public] = ACTIONS(4025), - [anon_sym_private] = ACTIONS(4025), - [anon_sym_protected] = ACTIONS(4025), - [anon_sym_override] = ACTIONS(4027), - [anon_sym_module] = ACTIONS(4009), - [anon_sym_any] = ACTIONS(4009), - [anon_sym_number] = ACTIONS(4009), - [anon_sym_boolean] = ACTIONS(4009), - [anon_sym_string] = ACTIONS(4009), - [anon_sym_symbol] = ACTIONS(4009), - [anon_sym_object] = ACTIONS(4009), - [anon_sym_abstract] = ACTIONS(4003), - [anon_sym_PIPE_RBRACE] = ACTIONS(4099), + [anon_sym_static] = ACTIONS(4021), + [anon_sym_readonly] = ACTIONS(4023), + [anon_sym_get] = ACTIONS(4025), + [anon_sym_set] = ACTIONS(4025), + [anon_sym_declare] = ACTIONS(4011), + [anon_sym_public] = ACTIONS(4027), + [anon_sym_private] = ACTIONS(4027), + [anon_sym_protected] = ACTIONS(4027), + [anon_sym_override] = ACTIONS(4029), + [anon_sym_module] = ACTIONS(4011), + [anon_sym_any] = ACTIONS(4011), + [anon_sym_number] = ACTIONS(4011), + [anon_sym_boolean] = ACTIONS(4011), + [anon_sym_string] = ACTIONS(4011), + [anon_sym_symbol] = ACTIONS(4011), + [anon_sym_object] = ACTIONS(4011), + [anon_sym_abstract] = ACTIONS(4007), + [anon_sym_PIPE_RBRACE] = ACTIONS(4009), [sym_html_comment] = ACTIONS(5), }, - [1885] = { - [sym_export_statement] = STATE(4856), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6388), - [sym_array_pattern] = STATE(4344), - [sym__call_signature] = STATE(5291), - [sym__destructuring_pattern] = STATE(7382), - [sym_spread_element] = STATE(6391), - [sym_string] = STATE(4240), - [sym_comment] = STATE(1885), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4276), - [sym_rest_pattern] = STATE(6388), - [sym_method_definition] = STATE(6391), - [sym_pair] = STATE(6391), - [sym_pair_pattern] = STATE(6388), - [sym__property_name] = STATE(4086), - [sym_computed_property_name] = STATE(4240), - [sym_method_signature] = STATE(4856), - [sym_accessibility_modifier] = STATE(3756), - [sym_override_modifier] = STATE(3769), - [sym_call_signature] = STATE(4856), - [sym_property_signature] = STATE(4856), - [sym_type_parameters] = STATE(6903), - [sym_construct_signature] = STATE(4856), - [sym_index_signature] = STATE(4856), - [aux_sym_export_statement_repeat1] = STATE(5606), - [aux_sym_object_repeat1] = STATE(6384), - [aux_sym_object_pattern_repeat1] = STATE(6379), - [sym_identifier] = ACTIONS(4055), - [anon_sym_export] = ACTIONS(4057), - [anon_sym_STAR] = ACTIONS(3971), - [anon_sym_type] = ACTIONS(4055), - [anon_sym_namespace] = ACTIONS(4055), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(3975), - [anon_sym_RBRACE] = ACTIONS(4101), - [anon_sym_let] = ACTIONS(4055), - [anon_sym_LPAREN] = ACTIONS(3979), - [anon_sym_SEMI] = ACTIONS(3981), - [anon_sym_LBRACK] = ACTIONS(3983), + [1737] = { + [sym_export_statement] = STATE(4788), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(5630), + [sym_array_pattern] = STATE(4286), + [sym__call_signature] = STATE(5009), + [sym__destructuring_pattern] = STATE(7199), + [sym_spread_element] = STATE(5708), + [sym_string] = STATE(4102), + [sym_comment] = STATE(1737), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4128), + [sym_rest_pattern] = STATE(5630), + [sym_method_definition] = STATE(5708), + [sym_pair] = STATE(5708), + [sym_pair_pattern] = STATE(5630), + [sym__property_name] = STATE(3981), + [sym_computed_property_name] = STATE(4102), + [sym_method_signature] = STATE(4788), + [sym_accessibility_modifier] = STATE(3566), + [sym_override_modifier] = STATE(3630), + [sym_call_signature] = STATE(4788), + [sym_property_signature] = STATE(4788), + [sym_type_parameters] = STATE(6358), + [sym_construct_signature] = STATE(4788), + [sym_index_signature] = STATE(4788), + [aux_sym_export_statement_repeat1] = STATE(5525), + [aux_sym_object_repeat1] = STATE(5712), + [aux_sym_object_pattern_repeat1] = STATE(5632), + [sym_identifier] = ACTIONS(4051), + [anon_sym_export] = ACTIONS(4053), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_type] = ACTIONS(4051), + [anon_sym_namespace] = ACTIONS(4051), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(3979), + [anon_sym_RBRACE] = ACTIONS(4105), + [anon_sym_let] = ACTIONS(4051), + [anon_sym_LPAREN] = ACTIONS(3983), + [anon_sym_SEMI] = ACTIONS(3985), + [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4061), - [anon_sym_new] = ACTIONS(4063), + [anon_sym_async] = ACTIONS(4057), + [anon_sym_new] = ACTIONS(4059), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3989), - [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), [anon_sym_LT] = ACTIONS(1973), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3991), - [sym_private_property_identifier] = ACTIONS(3991), + [sym_number] = ACTIONS(3995), + [sym_private_property_identifier] = ACTIONS(3995), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4065), - [anon_sym_readonly] = ACTIONS(4067), - [anon_sym_get] = ACTIONS(4069), - [anon_sym_set] = ACTIONS(4069), - [anon_sym_declare] = ACTIONS(4055), - [anon_sym_public] = ACTIONS(4071), - [anon_sym_private] = ACTIONS(4071), - [anon_sym_protected] = ACTIONS(4071), - [anon_sym_override] = ACTIONS(4073), - [anon_sym_module] = ACTIONS(4055), - [anon_sym_any] = ACTIONS(4055), - [anon_sym_number] = ACTIONS(4055), - [anon_sym_boolean] = ACTIONS(4055), - [anon_sym_string] = ACTIONS(4055), - [anon_sym_symbol] = ACTIONS(4055), - [anon_sym_object] = ACTIONS(4055), - [anon_sym_abstract] = ACTIONS(4003), - [anon_sym_PIPE_RBRACE] = ACTIONS(4005), + [anon_sym_static] = ACTIONS(4061), + [anon_sym_readonly] = ACTIONS(4063), + [anon_sym_get] = ACTIONS(4065), + [anon_sym_set] = ACTIONS(4065), + [anon_sym_declare] = ACTIONS(4051), + [anon_sym_public] = ACTIONS(4067), + [anon_sym_private] = ACTIONS(4067), + [anon_sym_protected] = ACTIONS(4067), + [anon_sym_override] = ACTIONS(4069), + [anon_sym_module] = ACTIONS(4051), + [anon_sym_any] = ACTIONS(4051), + [anon_sym_number] = ACTIONS(4051), + [anon_sym_boolean] = ACTIONS(4051), + [anon_sym_string] = ACTIONS(4051), + [anon_sym_symbol] = ACTIONS(4051), + [anon_sym_object] = ACTIONS(4051), + [anon_sym_abstract] = ACTIONS(4007), + [anon_sym_PIPE_RBRACE] = ACTIONS(4009), [sym_html_comment] = ACTIONS(5), }, - [1886] = { - [sym_variable_declarator] = STATE(5708), - [sym_object_pattern] = STATE(4537), - [sym_array_pattern] = STATE(4537), - [sym__destructuring_pattern] = STATE(4584), - [sym_comment] = STATE(1886), - [aux_sym_object_repeat1] = STATE(6287), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(4103), + [1738] = { + [sym_nested_identifier] = STATE(1047), + [sym_string] = STATE(1381), + [sym_comment] = STATE(1738), + [sym__module] = STATE(1543), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_identifier] = ACTIONS(4107), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4105), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_RBRACE] = ACTIONS(1045), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(4107), + [anon_sym_COLON] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4109), + [anon_sym_SQUOTE] = ACTIONS(4111), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -216517,42 +204099,186 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1887] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1887), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5521), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1739] = { + [sym_nested_identifier] = STATE(357), + [sym_string] = STATE(367), + [sym_comment] = STATE(1739), + [sym__module] = STATE(462), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_identifier] = ACTIONS(4113), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(958), + [anon_sym_as] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(4115), + [anon_sym_SQUOTE] = ACTIONS(4117), + [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2782), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [1740] = { + [sym_variable_declarator] = STATE(5582), + [sym_object_pattern] = STATE(4591), + [sym_array_pattern] = STATE(4591), + [sym__destructuring_pattern] = STATE(4481), + [sym_comment] = STATE(1740), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_identifier] = ACTIONS(4119), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(958), + [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4121), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(1051), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2782), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [1741] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1741), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5585), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -216560,7 +204286,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(4109), + [anon_sym_RBRACK] = ACTIONS(4125), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -216595,30 +204321,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1888] = { - [sym_nested_identifier] = STATE(381), - [sym_string] = STATE(338), - [sym_comment] = STATE(1888), - [sym__module] = STATE(462), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(4111), + [1742] = { + [sym_nested_identifier] = STATE(1047), + [sym_string] = STATE(1381), + [sym_comment] = STATE(1742), + [sym__module] = STATE(1543), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_identifier] = ACTIONS(4107), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1051), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(966), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4113), - [anon_sym_SQUOTE] = ACTIONS(4115), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4109), + [anon_sym_SQUOTE] = ACTIONS(4111), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -216661,36 +204387,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1889] = { - [sym_variable_declarator] = STATE(5708), - [sym_object_pattern] = STATE(4537), - [sym_array_pattern] = STATE(4537), - [sym__destructuring_pattern] = STATE(4584), - [sym_comment] = STATE(1889), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(4103), + [1743] = { + [sym_variable_declarator] = STATE(5582), + [sym_object_pattern] = STATE(4591), + [sym_array_pattern] = STATE(4591), + [sym__destructuring_pattern] = STATE(4481), + [sym_comment] = STATE(1743), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_identifier] = ACTIONS(4119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4105), + [anon_sym_LBRACE] = ACTIONS(4121), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(4107), + [anon_sym_COLON] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(4123), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -216733,108 +204459,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1890] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1890), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5534), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(4117), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [1744] = { + [sym_nested_identifier] = STATE(357), + [sym_string] = STATE(367), + [sym_comment] = STATE(1744), + [sym__module] = STATE(462), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_identifier] = ACTIONS(4113), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(958), + [anon_sym_as] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(4115), + [anon_sym_SQUOTE] = ACTIONS(4117), + [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2782), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(985), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1891] = { - [sym_nested_identifier] = STATE(381), - [sym_string] = STATE(338), - [sym_comment] = STATE(1891), - [sym__module] = STATE(462), - [aux_sym_object_repeat1] = STATE(6287), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(4111), + [1745] = { + [sym_nested_identifier] = STATE(1047), + [sym_string] = STATE(1381), + [sym_comment] = STATE(1745), + [sym__module] = STATE(1543), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_identifier] = ACTIONS(4107), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1055), + [anon_sym_RBRACE] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(966), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4113), - [anon_sym_SQUOTE] = ACTIONS(4115), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4109), + [anon_sym_SQUOTE] = ACTIONS(4111), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -216877,42 +204603,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1892] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1892), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5743), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1746] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1746), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5405), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -216920,7 +204646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(4119), + [anon_sym_RBRACK] = ACTIONS(4127), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -216955,30 +204681,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1893] = { - [sym_nested_identifier] = STATE(1197), - [sym_string] = STATE(1527), - [sym_comment] = STATE(1893), - [sym__module] = STATE(1730), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(4121), + [1747] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1747), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5452), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_RBRACK] = ACTIONS(4129), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(206), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(198), + [anon_sym_infer] = ACTIONS(200), + [anon_sym_keyof] = ACTIONS(202), + [anon_sym_unique] = ACTIONS(204), + [anon_sym_unknown] = ACTIONS(206), + [anon_sym_never] = ACTIONS(206), + [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [sym_html_comment] = ACTIONS(5), + }, + [1748] = { + [sym_nested_identifier] = STATE(357), + [sym_string] = STATE(367), + [sym_comment] = STATE(1748), + [sym__module] = STATE(462), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_identifier] = ACTIONS(4113), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), + [anon_sym_RBRACE] = ACTIONS(1045), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(966), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4123), - [anon_sym_SQUOTE] = ACTIONS(4125), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4115), + [anon_sym_SQUOTE] = ACTIONS(4117), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -217021,36 +204819,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1894] = { - [sym_nested_identifier] = STATE(1197), - [sym_string] = STATE(1527), - [sym_comment] = STATE(1894), - [sym__module] = STATE(1730), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(4121), + [1749] = { + [sym_variable_declarator] = STATE(5582), + [sym_object_pattern] = STATE(4591), + [sym_array_pattern] = STATE(4591), + [sym__destructuring_pattern] = STATE(4481), + [sym_comment] = STATE(1749), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_identifier] = ACTIONS(4119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4121), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_RBRACE] = ACTIONS(1045), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(4123), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4123), - [anon_sym_SQUOTE] = ACTIONS(4125), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -217093,114 +204891,541 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_satisfies] = ACTIONS(118), [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [1895] = { - [sym_nested_identifier] = STATE(1197), - [sym_string] = STATE(1527), - [sym_comment] = STATE(1895), - [sym__module] = STATE(1730), - [aux_sym_object_repeat1] = STATE(6287), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(4121), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1055), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4123), - [anon_sym_SQUOTE] = ACTIONS(4125), - [anon_sym_EQ_GT] = ACTIONS(1035), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), + [1750] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1750), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5480), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_RBRACK] = ACTIONS(4131), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(206), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(198), + [anon_sym_infer] = ACTIONS(200), + [anon_sym_keyof] = ACTIONS(202), + [anon_sym_unique] = ACTIONS(204), + [anon_sym_unknown] = ACTIONS(206), + [anon_sym_never] = ACTIONS(206), + [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [sym_html_comment] = ACTIONS(5), + }, + [1751] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1751), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5499), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_RBRACK] = ACTIONS(4133), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(206), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(198), + [anon_sym_infer] = ACTIONS(200), + [anon_sym_keyof] = ACTIONS(202), + [anon_sym_unique] = ACTIONS(204), + [anon_sym_unknown] = ACTIONS(206), + [anon_sym_never] = ACTIONS(206), + [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [sym_html_comment] = ACTIONS(5), + }, + [1752] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1752), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5401), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(206), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(198), + [anon_sym_infer] = ACTIONS(200), + [anon_sym_keyof] = ACTIONS(202), + [anon_sym_unique] = ACTIONS(204), + [anon_sym_unknown] = ACTIONS(206), + [anon_sym_never] = ACTIONS(206), + [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [sym_html_comment] = ACTIONS(5), + }, + [1753] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1753), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4853), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1754] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1754), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5117), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1755] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1755), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3889), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(206), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(198), + [anon_sym_infer] = ACTIONS(200), + [anon_sym_keyof] = ACTIONS(202), + [anon_sym_unique] = ACTIONS(204), + [anon_sym_unknown] = ACTIONS(206), + [anon_sym_never] = ACTIONS(206), + [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [sym_html_comment] = ACTIONS(5), + }, + [1756] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1756), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5581), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(206), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(198), + [anon_sym_infer] = ACTIONS(200), + [anon_sym_keyof] = ACTIONS(202), + [anon_sym_unique] = ACTIONS(204), + [anon_sym_unknown] = ACTIONS(206), + [anon_sym_never] = ACTIONS(206), + [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1896] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1896), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5688), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1757] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1757), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5449), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -217208,7 +205433,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(4127), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -217243,36 +205467,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1897] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1897), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5576), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1758] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1758), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5411), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -217280,7 +205504,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(131), [anon_sym_LPAREN] = ACTIONS(1961), [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_RBRACK] = ACTIONS(4129), [anon_sym_DQUOTE] = ACTIONS(1965), [anon_sym_SQUOTE] = ACTIONS(1967), [anon_sym_new] = ACTIONS(1969), @@ -217315,196 +205538,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1898] = { - [sym_variable_declarator] = STATE(5708), - [sym_object_pattern] = STATE(4537), - [sym_array_pattern] = STATE(4537), - [sym__destructuring_pattern] = STATE(4584), - [sym_comment] = STATE(1898), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(4103), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4105), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(4107), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), + [1759] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1759), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4345), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), [sym_html_comment] = ACTIONS(5), }, - [1899] = { - [sym_nested_identifier] = STATE(381), - [sym_string] = STATE(338), - [sym_comment] = STATE(1899), - [sym__module] = STATE(462), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(4111), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4113), - [anon_sym_SQUOTE] = ACTIONS(4115), - [anon_sym_EQ_GT] = ACTIONS(1035), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), + [1760] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1760), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4353), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), [sym_html_comment] = ACTIONS(5), }, - [1900] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1900), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(5397), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [1761] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1761), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4350), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -217514,123 +205735,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), [sym_html_comment] = ACTIONS(5), }, - [1901] = { - [sym_nested_identifier] = STATE(7360), - [sym_string] = STATE(3048), - [sym_comment] = STATE(1901), - [sym_formal_parameters] = STATE(7424), - [sym_nested_type_identifier] = STATE(2840), - [sym__type] = STATE(2948), - [sym_constructor_type] = STATE(3044), - [sym__primary_type] = STATE(3039), - [sym_template_literal_type] = STATE(3036), - [sym_infer_type] = STATE(3044), - [sym_conditional_type] = STATE(3036), - [sym_generic_type] = STATE(3036), - [sym_type_query] = STATE(3036), - [sym_index_type_query] = STATE(3036), - [sym_lookup_type] = STATE(3036), - [sym_literal_type] = STATE(3036), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3036), - [sym_flow_maybe_type] = STATE(3036), - [sym_parenthesized_type] = STATE(3036), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(3036), - [sym_type_parameters] = STATE(6722), - [sym_array_type] = STATE(3036), - [sym_tuple_type] = STATE(3036), - [sym_readonly_type] = STATE(3044), - [sym_union_type] = STATE(3036), - [sym_intersection_type] = STATE(3036), - [sym_function_type] = STATE(3044), - [sym_identifier] = ACTIONS(4131), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3883), - [anon_sym_typeof] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3891), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), + [1762] = { + [sym_nested_identifier] = STATE(6973), + [sym_string] = STATE(2430), + [sym_comment] = STATE(1762), + [sym_formal_parameters] = STATE(7150), + [sym_nested_type_identifier] = STATE(2302), + [sym__type] = STATE(2339), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2427), + [sym_template_literal_type] = STATE(2426), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2426), + [sym_generic_type] = STATE(2426), + [sym_type_query] = STATE(2426), + [sym_index_type_query] = STATE(2426), + [sym_lookup_type] = STATE(2426), + [sym_literal_type] = STATE(2426), + [sym__number] = STATE(2422), + [sym_existential_type] = STATE(2426), + [sym_flow_maybe_type] = STATE(2426), + [sym_parenthesized_type] = STATE(2426), + [sym_predefined_type] = STATE(2426), + [sym_object_type] = STATE(2426), + [sym_type_parameters] = STATE(6889), + [sym_array_type] = STATE(2426), + [sym_tuple_type] = STATE(2426), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2426), + [sym_intersection_type] = STATE(2426), + [sym_function_type] = STATE(2428), + [sym_identifier] = ACTIONS(4135), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3901), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3903), - [sym_number] = ACTIONS(3905), - [sym_this] = ACTIONS(4133), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_null] = ACTIONS(3905), - [sym_undefined] = ACTIONS(3905), - [anon_sym_readonly] = ACTIONS(3909), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_any] = ACTIONS(3901), - [anon_sym_number] = ACTIONS(3901), - [anon_sym_boolean] = ACTIONS(3901), - [anon_sym_string] = ACTIONS(3901), - [anon_sym_symbol] = ACTIONS(3901), - [anon_sym_object] = ACTIONS(3901), - [anon_sym_abstract] = ACTIONS(3913), - [anon_sym_infer] = ACTIONS(3917), - [anon_sym_keyof] = ACTIONS(3919), - [anon_sym_unique] = ACTIONS(3921), - [anon_sym_unknown] = ACTIONS(3901), - [anon_sym_never] = ACTIONS(3901), - [anon_sym_LBRACE_PIPE] = ACTIONS(3883), + [anon_sym_void] = ACTIONS(3905), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), + [sym_this] = ACTIONS(4137), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), [sym_html_comment] = ACTIONS(5), }, - [1902] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1902), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4890), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1763] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1763), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5218), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1764] = { + [sym_nested_identifier] = STATE(6973), + [sym_string] = STATE(2430), + [sym_comment] = STATE(1764), + [sym_formal_parameters] = STATE(7150), + [sym_nested_type_identifier] = STATE(2302), + [sym__type] = STATE(2416), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2427), + [sym_template_literal_type] = STATE(2426), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2426), + [sym_generic_type] = STATE(2426), + [sym_type_query] = STATE(2426), + [sym_index_type_query] = STATE(2426), + [sym_lookup_type] = STATE(2426), + [sym_literal_type] = STATE(2426), + [sym__number] = STATE(2422), + [sym_existential_type] = STATE(2426), + [sym_flow_maybe_type] = STATE(2426), + [sym_parenthesized_type] = STATE(2426), + [sym_predefined_type] = STATE(2426), + [sym_object_type] = STATE(2426), + [sym_type_parameters] = STATE(6889), + [sym_array_type] = STATE(2426), + [sym_tuple_type] = STATE(2426), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2426), + [sym_intersection_type] = STATE(2426), + [sym_function_type] = STATE(2428), + [sym_identifier] = ACTIONS(4135), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3905), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), + [sym_this] = ACTIONS(4137), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_html_comment] = ACTIONS(5), + }, + [1765] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1765), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3849), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -217672,36 +206035,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1903] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1903), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5452), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1766] = { + [sym_nested_identifier] = STATE(7198), + [sym_string] = STATE(2867), + [sym_comment] = STATE(1766), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(2711), + [sym__type] = STATE(2815), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2842), + [sym_template_literal_type] = STATE(2841), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2841), + [sym_generic_type] = STATE(2841), + [sym_type_query] = STATE(2841), + [sym_index_type_query] = STATE(2841), + [sym_lookup_type] = STATE(2841), + [sym_literal_type] = STATE(2841), + [sym__number] = STATE(2835), + [sym_existential_type] = STATE(2841), + [sym_flow_maybe_type] = STATE(2841), + [sym_parenthesized_type] = STATE(2841), + [sym_predefined_type] = STATE(2841), + [sym_object_type] = STATE(2841), + [sym_type_parameters] = STATE(6539), + [sym_array_type] = STATE(2841), + [sym_tuple_type] = STATE(2841), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2841), + [sym_intersection_type] = STATE(2841), + [sym_function_type] = STATE(2843), + [sym_identifier] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3949), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), + [sym_this] = ACTIONS(4141), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_html_comment] = ACTIONS(5), + }, + [1767] = { + [sym_nested_identifier] = STATE(7198), + [sym_string] = STATE(2867), + [sym_comment] = STATE(1767), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(2711), + [sym__type] = STATE(2816), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2842), + [sym_template_literal_type] = STATE(2841), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2841), + [sym_generic_type] = STATE(2841), + [sym_type_query] = STATE(2841), + [sym_index_type_query] = STATE(2841), + [sym_lookup_type] = STATE(2841), + [sym_literal_type] = STATE(2841), + [sym__number] = STATE(2835), + [sym_existential_type] = STATE(2841), + [sym_flow_maybe_type] = STATE(2841), + [sym_parenthesized_type] = STATE(2841), + [sym_predefined_type] = STATE(2841), + [sym_object_type] = STATE(2841), + [sym_type_parameters] = STATE(6539), + [sym_array_type] = STATE(2841), + [sym_tuple_type] = STATE(2841), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2841), + [sym_intersection_type] = STATE(2841), + [sym_function_type] = STATE(2843), + [sym_identifier] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3949), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), + [sym_this] = ACTIONS(4141), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_html_comment] = ACTIONS(5), + }, + [1768] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1768), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3783), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -217743,36 +206248,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1904] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1904), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5651), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1769] = { + [sym_nested_identifier] = STATE(7198), + [sym_string] = STATE(2867), + [sym_comment] = STATE(1769), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(2711), + [sym__type] = STATE(5907), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(2866), + [sym_template_literal_type] = STATE(2841), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(2841), + [sym_generic_type] = STATE(2841), + [sym_type_query] = STATE(2841), + [sym_index_type_query] = STATE(2841), + [sym_lookup_type] = STATE(2841), + [sym_literal_type] = STATE(2841), + [sym__number] = STATE(2835), + [sym_existential_type] = STATE(2841), + [sym_flow_maybe_type] = STATE(2841), + [sym_parenthesized_type] = STATE(2841), + [sym_predefined_type] = STATE(2841), + [sym_object_type] = STATE(2841), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(2841), + [sym_tuple_type] = STATE(2841), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(2841), + [sym_intersection_type] = STATE(2841), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3949), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), + [sym_this] = ACTIONS(4141), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(198), + [anon_sym_infer] = ACTIONS(200), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_html_comment] = ACTIONS(5), + }, + [1770] = { + [sym_nested_identifier] = STATE(7198), + [sym_string] = STATE(2867), + [sym_comment] = STATE(1770), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(2711), + [sym__type] = STATE(5907), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(2864), + [sym_template_literal_type] = STATE(2841), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(2841), + [sym_generic_type] = STATE(2841), + [sym_type_query] = STATE(2841), + [sym_index_type_query] = STATE(2841), + [sym_lookup_type] = STATE(2841), + [sym_literal_type] = STATE(2841), + [sym__number] = STATE(2835), + [sym_existential_type] = STATE(2841), + [sym_flow_maybe_type] = STATE(2841), + [sym_parenthesized_type] = STATE(2841), + [sym_predefined_type] = STATE(2841), + [sym_object_type] = STATE(2841), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(2841), + [sym_tuple_type] = STATE(2841), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(2841), + [sym_intersection_type] = STATE(2841), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3949), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), + [sym_this] = ACTIONS(4141), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(198), + [anon_sym_infer] = ACTIONS(200), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_html_comment] = ACTIONS(5), + }, + [1771] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1771), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5794), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3863), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -217814,36 +206461,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1905] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1905), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(6192), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(5449), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(5539), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1772] = { + [sym_nested_identifier] = STATE(7198), + [sym_string] = STATE(2867), + [sym_comment] = STATE(1772), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(2711), + [sym__type] = STATE(2863), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2842), + [sym_template_literal_type] = STATE(2841), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2841), + [sym_generic_type] = STATE(2841), + [sym_type_query] = STATE(2841), + [sym_index_type_query] = STATE(2841), + [sym_lookup_type] = STATE(2841), + [sym_literal_type] = STATE(2841), + [sym__number] = STATE(2835), + [sym_existential_type] = STATE(2841), + [sym_flow_maybe_type] = STATE(2841), + [sym_parenthesized_type] = STATE(2841), + [sym_predefined_type] = STATE(2841), + [sym_object_type] = STATE(2841), + [sym_type_parameters] = STATE(6539), + [sym_array_type] = STATE(2841), + [sym_tuple_type] = STATE(2841), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2841), + [sym_intersection_type] = STATE(2841), + [sym_function_type] = STATE(2843), + [sym_identifier] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3949), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), + [sym_this] = ACTIONS(4141), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_html_comment] = ACTIONS(5), + }, + [1773] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1773), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5794), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(5100), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(5482), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -217885,52 +206603,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1906] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1906), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(5479), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [1774] = { + [sym_nested_identifier] = STATE(7198), + [sym_string] = STATE(2867), + [sym_comment] = STATE(1774), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(2711), + [sym__type] = STATE(2859), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2842), + [sym_template_literal_type] = STATE(2841), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2841), + [sym_generic_type] = STATE(2841), + [sym_type_query] = STATE(2841), + [sym_index_type_query] = STATE(2841), + [sym_lookup_type] = STATE(2841), + [sym_literal_type] = STATE(2841), + [sym__number] = STATE(2835), + [sym_existential_type] = STATE(2841), + [sym_flow_maybe_type] = STATE(2841), + [sym_parenthesized_type] = STATE(2841), + [sym_predefined_type] = STATE(2841), + [sym_object_type] = STATE(2841), + [sym_type_parameters] = STATE(6539), + [sym_array_type] = STATE(2841), + [sym_tuple_type] = STATE(2841), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2841), + [sym_intersection_type] = STATE(2841), + [sym_function_type] = STATE(2843), + [sym_identifier] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3949), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), + [sym_this] = ACTIONS(4141), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_html_comment] = ACTIONS(5), + }, + [1775] = { + [sym_nested_identifier] = STATE(7198), + [sym_string] = STATE(2867), + [sym_comment] = STATE(1775), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(2711), + [sym__type] = STATE(2858), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2842), + [sym_template_literal_type] = STATE(2841), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2841), + [sym_generic_type] = STATE(2841), + [sym_type_query] = STATE(2841), + [sym_index_type_query] = STATE(2841), + [sym_lookup_type] = STATE(2841), + [sym_literal_type] = STATE(2841), + [sym__number] = STATE(2835), + [sym_existential_type] = STATE(2841), + [sym_flow_maybe_type] = STATE(2841), + [sym_parenthesized_type] = STATE(2841), + [sym_predefined_type] = STATE(2841), + [sym_object_type] = STATE(2841), + [sym_type_parameters] = STATE(6539), + [sym_array_type] = STATE(2841), + [sym_tuple_type] = STATE(2841), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2841), + [sym_intersection_type] = STATE(2841), + [sym_function_type] = STATE(2843), + [sym_identifier] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3949), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), + [sym_this] = ACTIONS(4141), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_html_comment] = ACTIONS(5), + }, + [1776] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1776), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4062), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -217940,52 +206800,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), [sym_html_comment] = ACTIONS(5), }, - [1907] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1907), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5616), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1777] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1777), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4061), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1778] = { + [sym_nested_identifier] = STATE(7006), + [sym_string] = STATE(4247), + [sym_comment] = STATE(1778), + [sym_formal_parameters] = STATE(7134), + [sym_nested_type_identifier] = STATE(4103), + [sym__type] = STATE(4318), + [sym_constructor_type] = STATE(4153), + [sym__primary_type] = STATE(4154), + [sym_template_literal_type] = STATE(4155), + [sym_infer_type] = STATE(4153), + [sym_conditional_type] = STATE(4155), + [sym_generic_type] = STATE(4155), + [sym_type_query] = STATE(4155), + [sym_index_type_query] = STATE(4155), + [sym_lookup_type] = STATE(4155), + [sym_literal_type] = STATE(4155), + [sym__number] = STATE(4156), + [sym_existential_type] = STATE(4155), + [sym_flow_maybe_type] = STATE(4155), + [sym_parenthesized_type] = STATE(4155), + [sym_predefined_type] = STATE(4155), + [sym_object_type] = STATE(4155), + [sym_type_parameters] = STATE(6916), + [sym_array_type] = STATE(4155), + [sym_tuple_type] = STATE(4155), + [sym_readonly_type] = STATE(4153), + [sym_union_type] = STATE(4155), + [sym_intersection_type] = STATE(4155), + [sym_function_type] = STATE(4153), + [sym_identifier] = ACTIONS(4143), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_typeof] = ACTIONS(3747), + [anon_sym_const] = ACTIONS(3749), + [anon_sym_LPAREN] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3755), + [anon_sym_SQUOTE] = ACTIONS(3757), + [anon_sym_new] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_PIPE] = ACTIONS(3763), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3767), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3769), + [sym_number] = ACTIONS(3771), + [sym_this] = ACTIONS(4145), + [sym_true] = ACTIONS(3771), + [sym_false] = ACTIONS(3771), + [sym_null] = ACTIONS(3771), + [sym_undefined] = ACTIONS(3771), + [anon_sym_readonly] = ACTIONS(3775), + [anon_sym_QMARK] = ACTIONS(3777), + [anon_sym_any] = ACTIONS(3767), + [anon_sym_number] = ACTIONS(3767), + [anon_sym_boolean] = ACTIONS(3767), + [anon_sym_string] = ACTIONS(3767), + [anon_sym_symbol] = ACTIONS(3767), + [anon_sym_object] = ACTIONS(3767), + [anon_sym_abstract] = ACTIONS(3779), + [anon_sym_infer] = ACTIONS(3783), + [anon_sym_keyof] = ACTIONS(3785), + [anon_sym_unique] = ACTIONS(3787), + [anon_sym_unknown] = ACTIONS(3767), + [anon_sym_never] = ACTIONS(3767), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [sym_html_comment] = ACTIONS(5), + }, + [1779] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1779), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4079), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1780] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1780), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5590), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -218027,107 +207100,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1908] = { - [sym_nested_identifier] = STATE(7157), - [sym_string] = STATE(2499), - [sym_comment] = STATE(1908), - [sym_formal_parameters] = STATE(7383), - [sym_nested_type_identifier] = STATE(2449), - [sym__type] = STATE(2570), - [sym_constructor_type] = STATE(2482), - [sym__primary_type] = STATE(2493), - [sym_template_literal_type] = STATE(2467), - [sym_infer_type] = STATE(2482), - [sym_conditional_type] = STATE(2467), - [sym_generic_type] = STATE(2467), - [sym_type_query] = STATE(2467), - [sym_index_type_query] = STATE(2467), - [sym_lookup_type] = STATE(2467), - [sym_literal_type] = STATE(2467), - [sym__number] = STATE(2576), - [sym_existential_type] = STATE(2467), - [sym_flow_maybe_type] = STATE(2467), - [sym_parenthesized_type] = STATE(2467), - [sym_predefined_type] = STATE(2467), - [sym_object_type] = STATE(2467), - [sym_type_parameters] = STATE(7072), - [sym_array_type] = STATE(2467), - [sym_tuple_type] = STATE(2467), - [sym_readonly_type] = STATE(2482), - [sym_union_type] = STATE(2467), - [sym_intersection_type] = STATE(2467), - [sym_function_type] = STATE(2482), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_typeof] = ACTIONS(3929), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), + [1781] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1781), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3864), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3945), + [anon_sym_void] = ACTIONS(206), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3947), - [sym_number] = ACTIONS(3949), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3949), - [sym_false] = ACTIONS(3949), - [sym_null] = ACTIONS(3949), - [sym_undefined] = ACTIONS(3949), - [anon_sym_readonly] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_any] = ACTIONS(3945), - [anon_sym_number] = ACTIONS(3945), - [anon_sym_boolean] = ACTIONS(3945), - [anon_sym_string] = ACTIONS(3945), - [anon_sym_symbol] = ACTIONS(3945), - [anon_sym_object] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(3957), - [anon_sym_infer] = ACTIONS(3961), - [anon_sym_keyof] = ACTIONS(3963), - [anon_sym_unique] = ACTIONS(3965), - [anon_sym_unknown] = ACTIONS(3945), - [anon_sym_never] = ACTIONS(3945), - [anon_sym_LBRACE_PIPE] = ACTIONS(3927), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(198), + [anon_sym_infer] = ACTIONS(200), + [anon_sym_keyof] = ACTIONS(202), + [anon_sym_unique] = ACTIONS(204), + [anon_sym_unknown] = ACTIONS(206), + [anon_sym_never] = ACTIONS(206), + [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1909] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1909), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4001), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1782] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1782), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5455), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -218169,107 +207242,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1910] = { - [sym_nested_identifier] = STATE(7189), - [sym_string] = STATE(4340), - [sym_comment] = STATE(1910), - [sym_formal_parameters] = STATE(7503), - [sym_nested_type_identifier] = STATE(4262), - [sym__type] = STATE(4427), - [sym_constructor_type] = STATE(4457), - [sym__primary_type] = STATE(4489), - [sym_template_literal_type] = STATE(4482), - [sym_infer_type] = STATE(4457), - [sym_conditional_type] = STATE(4482), - [sym_generic_type] = STATE(4482), - [sym_type_query] = STATE(4482), - [sym_index_type_query] = STATE(4482), - [sym_lookup_type] = STATE(4482), - [sym_literal_type] = STATE(4482), - [sym__number] = STATE(4473), - [sym_existential_type] = STATE(4482), - [sym_flow_maybe_type] = STATE(4482), - [sym_parenthesized_type] = STATE(4482), - [sym_predefined_type] = STATE(4482), - [sym_object_type] = STATE(4482), - [sym_type_parameters] = STATE(7119), - [sym_array_type] = STATE(4482), - [sym_tuple_type] = STATE(4482), - [sym_readonly_type] = STATE(4457), - [sym_union_type] = STATE(4482), - [sym_intersection_type] = STATE(4482), - [sym_function_type] = STATE(4457), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3745), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_typeof] = ACTIONS(3749), - [anon_sym_const] = ACTIONS(3751), - [anon_sym_LPAREN] = ACTIONS(3753), - [anon_sym_LBRACK] = ACTIONS(3755), - [anon_sym_DQUOTE] = ACTIONS(3757), - [anon_sym_SQUOTE] = ACTIONS(3759), - [anon_sym_new] = ACTIONS(3761), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3767), - [anon_sym_DASH] = ACTIONS(3767), + [1783] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1783), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5091), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3769), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3771), - [sym_number] = ACTIONS(3773), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3773), - [sym_false] = ACTIONS(3773), - [sym_null] = ACTIONS(3773), - [sym_undefined] = ACTIONS(3773), - [anon_sym_readonly] = ACTIONS(3777), - [anon_sym_QMARK] = ACTIONS(3779), - [anon_sym_any] = ACTIONS(3769), - [anon_sym_number] = ACTIONS(3769), - [anon_sym_boolean] = ACTIONS(3769), - [anon_sym_string] = ACTIONS(3769), - [anon_sym_symbol] = ACTIONS(3769), - [anon_sym_object] = ACTIONS(3769), - [anon_sym_abstract] = ACTIONS(3781), - [anon_sym_infer] = ACTIONS(3785), - [anon_sym_keyof] = ACTIONS(3787), - [anon_sym_unique] = ACTIONS(3789), - [anon_sym_unknown] = ACTIONS(3769), - [anon_sym_never] = ACTIONS(3769), - [anon_sym_LBRACE_PIPE] = ACTIONS(3747), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), [sym_html_comment] = ACTIONS(5), }, - [1911] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1911), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5575), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1784] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1784), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5406), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -218311,36 +207384,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1912] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1912), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(3955), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1785] = { + [sym_nested_identifier] = STATE(7006), + [sym_string] = STATE(4247), + [sym_comment] = STATE(1785), + [sym_formal_parameters] = STATE(7134), + [sym_nested_type_identifier] = STATE(4103), + [sym__type] = STATE(4166), + [sym_constructor_type] = STATE(4153), + [sym__primary_type] = STATE(4154), + [sym_template_literal_type] = STATE(4155), + [sym_infer_type] = STATE(4153), + [sym_conditional_type] = STATE(4155), + [sym_generic_type] = STATE(4155), + [sym_type_query] = STATE(4155), + [sym_index_type_query] = STATE(4155), + [sym_lookup_type] = STATE(4155), + [sym_literal_type] = STATE(4155), + [sym__number] = STATE(4156), + [sym_existential_type] = STATE(4155), + [sym_flow_maybe_type] = STATE(4155), + [sym_parenthesized_type] = STATE(4155), + [sym_predefined_type] = STATE(4155), + [sym_object_type] = STATE(4155), + [sym_type_parameters] = STATE(6916), + [sym_array_type] = STATE(4155), + [sym_tuple_type] = STATE(4155), + [sym_readonly_type] = STATE(4153), + [sym_union_type] = STATE(4155), + [sym_intersection_type] = STATE(4155), + [sym_function_type] = STATE(4153), + [sym_identifier] = ACTIONS(4143), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_typeof] = ACTIONS(3747), + [anon_sym_const] = ACTIONS(3749), + [anon_sym_LPAREN] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3755), + [anon_sym_SQUOTE] = ACTIONS(3757), + [anon_sym_new] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_PIPE] = ACTIONS(3763), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3767), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3769), + [sym_number] = ACTIONS(3771), + [sym_this] = ACTIONS(4145), + [sym_true] = ACTIONS(3771), + [sym_false] = ACTIONS(3771), + [sym_null] = ACTIONS(3771), + [sym_undefined] = ACTIONS(3771), + [anon_sym_readonly] = ACTIONS(3775), + [anon_sym_QMARK] = ACTIONS(3777), + [anon_sym_any] = ACTIONS(3767), + [anon_sym_number] = ACTIONS(3767), + [anon_sym_boolean] = ACTIONS(3767), + [anon_sym_string] = ACTIONS(3767), + [anon_sym_symbol] = ACTIONS(3767), + [anon_sym_object] = ACTIONS(3767), + [anon_sym_abstract] = ACTIONS(3779), + [anon_sym_infer] = ACTIONS(3783), + [anon_sym_keyof] = ACTIONS(3785), + [anon_sym_unique] = ACTIONS(3787), + [anon_sym_unknown] = ACTIONS(3767), + [anon_sym_never] = ACTIONS(3767), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [sym_html_comment] = ACTIONS(5), + }, + [1786] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1786), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5492), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -218382,36 +207526,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1913] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1913), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(3956), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1787] = { + [sym_nested_identifier] = STATE(7006), + [sym_string] = STATE(4247), + [sym_comment] = STATE(1787), + [sym_formal_parameters] = STATE(7134), + [sym_nested_type_identifier] = STATE(4103), + [sym__type] = STATE(4183), + [sym_constructor_type] = STATE(4153), + [sym__primary_type] = STATE(4154), + [sym_template_literal_type] = STATE(4155), + [sym_infer_type] = STATE(4153), + [sym_conditional_type] = STATE(4155), + [sym_generic_type] = STATE(4155), + [sym_type_query] = STATE(4155), + [sym_index_type_query] = STATE(4155), + [sym_lookup_type] = STATE(4155), + [sym_literal_type] = STATE(4155), + [sym__number] = STATE(4156), + [sym_existential_type] = STATE(4155), + [sym_flow_maybe_type] = STATE(4155), + [sym_parenthesized_type] = STATE(4155), + [sym_predefined_type] = STATE(4155), + [sym_object_type] = STATE(4155), + [sym_type_parameters] = STATE(6916), + [sym_array_type] = STATE(4155), + [sym_tuple_type] = STATE(4155), + [sym_readonly_type] = STATE(4153), + [sym_union_type] = STATE(4155), + [sym_intersection_type] = STATE(4155), + [sym_function_type] = STATE(4153), + [sym_identifier] = ACTIONS(4143), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_typeof] = ACTIONS(3747), + [anon_sym_const] = ACTIONS(3749), + [anon_sym_LPAREN] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3755), + [anon_sym_SQUOTE] = ACTIONS(3757), + [anon_sym_new] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_PIPE] = ACTIONS(3763), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3767), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3769), + [sym_number] = ACTIONS(3771), + [sym_this] = ACTIONS(4145), + [sym_true] = ACTIONS(3771), + [sym_false] = ACTIONS(3771), + [sym_null] = ACTIONS(3771), + [sym_undefined] = ACTIONS(3771), + [anon_sym_readonly] = ACTIONS(3775), + [anon_sym_QMARK] = ACTIONS(3777), + [anon_sym_any] = ACTIONS(3767), + [anon_sym_number] = ACTIONS(3767), + [anon_sym_boolean] = ACTIONS(3767), + [anon_sym_string] = ACTIONS(3767), + [anon_sym_symbol] = ACTIONS(3767), + [anon_sym_object] = ACTIONS(3767), + [anon_sym_abstract] = ACTIONS(3779), + [anon_sym_infer] = ACTIONS(3783), + [anon_sym_keyof] = ACTIONS(3785), + [anon_sym_unique] = ACTIONS(3787), + [anon_sym_unknown] = ACTIONS(3767), + [anon_sym_never] = ACTIONS(3767), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [sym_html_comment] = ACTIONS(5), + }, + [1788] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1788), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5103), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -218453,107 +207668,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1914] = { - [sym_nested_identifier] = STATE(7189), - [sym_string] = STATE(4340), - [sym_comment] = STATE(1914), - [sym_formal_parameters] = STATE(7503), - [sym_nested_type_identifier] = STATE(4262), - [sym__type] = STATE(4435), - [sym_constructor_type] = STATE(4457), - [sym__primary_type] = STATE(4489), - [sym_template_literal_type] = STATE(4482), - [sym_infer_type] = STATE(4457), - [sym_conditional_type] = STATE(4482), - [sym_generic_type] = STATE(4482), - [sym_type_query] = STATE(4482), - [sym_index_type_query] = STATE(4482), - [sym_lookup_type] = STATE(4482), - [sym_literal_type] = STATE(4482), - [sym__number] = STATE(4473), - [sym_existential_type] = STATE(4482), - [sym_flow_maybe_type] = STATE(4482), - [sym_parenthesized_type] = STATE(4482), - [sym_predefined_type] = STATE(4482), - [sym_object_type] = STATE(4482), - [sym_type_parameters] = STATE(7119), - [sym_array_type] = STATE(4482), - [sym_tuple_type] = STATE(4482), - [sym_readonly_type] = STATE(4457), - [sym_union_type] = STATE(4482), - [sym_intersection_type] = STATE(4482), - [sym_function_type] = STATE(4457), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3745), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_typeof] = ACTIONS(3749), - [anon_sym_const] = ACTIONS(3751), - [anon_sym_LPAREN] = ACTIONS(3753), - [anon_sym_LBRACK] = ACTIONS(3755), - [anon_sym_DQUOTE] = ACTIONS(3757), - [anon_sym_SQUOTE] = ACTIONS(3759), - [anon_sym_new] = ACTIONS(3761), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3767), - [anon_sym_DASH] = ACTIONS(3767), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3769), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3771), - [sym_number] = ACTIONS(3773), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3773), - [sym_false] = ACTIONS(3773), - [sym_null] = ACTIONS(3773), - [sym_undefined] = ACTIONS(3773), - [anon_sym_readonly] = ACTIONS(3777), - [anon_sym_QMARK] = ACTIONS(3779), - [anon_sym_any] = ACTIONS(3769), - [anon_sym_number] = ACTIONS(3769), - [anon_sym_boolean] = ACTIONS(3769), - [anon_sym_string] = ACTIONS(3769), - [anon_sym_symbol] = ACTIONS(3769), - [anon_sym_object] = ACTIONS(3769), - [anon_sym_abstract] = ACTIONS(3781), - [anon_sym_infer] = ACTIONS(3785), - [anon_sym_keyof] = ACTIONS(3787), - [anon_sym_unique] = ACTIONS(3789), - [anon_sym_unknown] = ACTIONS(3769), - [anon_sym_never] = ACTIONS(3769), - [anon_sym_LBRACE_PIPE] = ACTIONS(3747), - [sym_html_comment] = ACTIONS(5), - }, - [1915] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1915), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5569), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1789] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1789), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4700), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -218595,36 +207739,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1916] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1916), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(3949), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1790] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1790), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5400), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -218666,675 +207810,604 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1917] = { - [sym_nested_identifier] = STATE(7360), - [sym_string] = STATE(3048), - [sym_comment] = STATE(1917), - [sym_formal_parameters] = STATE(7424), - [sym_nested_type_identifier] = STATE(2840), - [sym__type] = STATE(3094), - [sym_constructor_type] = STATE(3044), - [sym__primary_type] = STATE(3039), - [sym_template_literal_type] = STATE(3036), - [sym_infer_type] = STATE(3044), - [sym_conditional_type] = STATE(3036), - [sym_generic_type] = STATE(3036), - [sym_type_query] = STATE(3036), - [sym_index_type_query] = STATE(3036), - [sym_lookup_type] = STATE(3036), - [sym_literal_type] = STATE(3036), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3036), - [sym_flow_maybe_type] = STATE(3036), - [sym_parenthesized_type] = STATE(3036), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(3036), - [sym_type_parameters] = STATE(6722), - [sym_array_type] = STATE(3036), - [sym_tuple_type] = STATE(3036), - [sym_readonly_type] = STATE(3044), - [sym_union_type] = STATE(3036), - [sym_intersection_type] = STATE(3036), - [sym_function_type] = STATE(3044), - [sym_identifier] = ACTIONS(4131), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3883), - [anon_sym_typeof] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3891), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3901), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3903), - [sym_number] = ACTIONS(3905), - [sym_this] = ACTIONS(4133), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_null] = ACTIONS(3905), - [sym_undefined] = ACTIONS(3905), - [anon_sym_readonly] = ACTIONS(3909), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_any] = ACTIONS(3901), - [anon_sym_number] = ACTIONS(3901), - [anon_sym_boolean] = ACTIONS(3901), - [anon_sym_string] = ACTIONS(3901), - [anon_sym_symbol] = ACTIONS(3901), - [anon_sym_object] = ACTIONS(3901), - [anon_sym_abstract] = ACTIONS(3913), - [anon_sym_infer] = ACTIONS(3917), - [anon_sym_keyof] = ACTIONS(3919), - [anon_sym_unique] = ACTIONS(3921), - [anon_sym_unknown] = ACTIONS(3901), - [anon_sym_never] = ACTIONS(3901), - [anon_sym_LBRACE_PIPE] = ACTIONS(3883), - [sym_html_comment] = ACTIONS(5), - }, - [1918] = { - [sym_nested_identifier] = STATE(7360), - [sym_string] = STATE(3048), - [sym_comment] = STATE(1918), - [sym_formal_parameters] = STATE(7424), - [sym_nested_type_identifier] = STATE(2840), - [sym__type] = STATE(3092), - [sym_constructor_type] = STATE(3044), - [sym__primary_type] = STATE(3039), - [sym_template_literal_type] = STATE(3036), - [sym_infer_type] = STATE(3044), - [sym_conditional_type] = STATE(3036), - [sym_generic_type] = STATE(3036), - [sym_type_query] = STATE(3036), - [sym_index_type_query] = STATE(3036), - [sym_lookup_type] = STATE(3036), - [sym_literal_type] = STATE(3036), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3036), - [sym_flow_maybe_type] = STATE(3036), - [sym_parenthesized_type] = STATE(3036), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(3036), - [sym_type_parameters] = STATE(6722), - [sym_array_type] = STATE(3036), - [sym_tuple_type] = STATE(3036), - [sym_readonly_type] = STATE(3044), - [sym_union_type] = STATE(3036), - [sym_intersection_type] = STATE(3036), - [sym_function_type] = STATE(3044), - [sym_identifier] = ACTIONS(4131), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3883), - [anon_sym_typeof] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3891), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), + [1791] = { + [sym_nested_identifier] = STATE(7006), + [sym_string] = STATE(4247), + [sym_comment] = STATE(1791), + [sym_formal_parameters] = STATE(7134), + [sym_nested_type_identifier] = STATE(4103), + [sym__type] = STATE(4206), + [sym_constructor_type] = STATE(4153), + [sym__primary_type] = STATE(4154), + [sym_template_literal_type] = STATE(4155), + [sym_infer_type] = STATE(4153), + [sym_conditional_type] = STATE(4155), + [sym_generic_type] = STATE(4155), + [sym_type_query] = STATE(4155), + [sym_index_type_query] = STATE(4155), + [sym_lookup_type] = STATE(4155), + [sym_literal_type] = STATE(4155), + [sym__number] = STATE(4156), + [sym_existential_type] = STATE(4155), + [sym_flow_maybe_type] = STATE(4155), + [sym_parenthesized_type] = STATE(4155), + [sym_predefined_type] = STATE(4155), + [sym_object_type] = STATE(4155), + [sym_type_parameters] = STATE(6916), + [sym_array_type] = STATE(4155), + [sym_tuple_type] = STATE(4155), + [sym_readonly_type] = STATE(4153), + [sym_union_type] = STATE(4155), + [sym_intersection_type] = STATE(4155), + [sym_function_type] = STATE(4153), + [sym_identifier] = ACTIONS(4143), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_typeof] = ACTIONS(3747), + [anon_sym_const] = ACTIONS(3749), + [anon_sym_LPAREN] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3755), + [anon_sym_SQUOTE] = ACTIONS(3757), + [anon_sym_new] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_PIPE] = ACTIONS(3763), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3901), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3903), - [sym_number] = ACTIONS(3905), - [sym_this] = ACTIONS(4133), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_null] = ACTIONS(3905), - [sym_undefined] = ACTIONS(3905), - [anon_sym_readonly] = ACTIONS(3909), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_any] = ACTIONS(3901), - [anon_sym_number] = ACTIONS(3901), - [anon_sym_boolean] = ACTIONS(3901), - [anon_sym_string] = ACTIONS(3901), - [anon_sym_symbol] = ACTIONS(3901), - [anon_sym_object] = ACTIONS(3901), - [anon_sym_abstract] = ACTIONS(3913), - [anon_sym_infer] = ACTIONS(3917), - [anon_sym_keyof] = ACTIONS(3919), - [anon_sym_unique] = ACTIONS(3921), - [anon_sym_unknown] = ACTIONS(3901), - [anon_sym_never] = ACTIONS(3901), - [anon_sym_LBRACE_PIPE] = ACTIONS(3883), - [sym_html_comment] = ACTIONS(5), - }, - [1919] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1919), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(5323), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_void] = ACTIONS(3767), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3769), + [sym_number] = ACTIONS(3771), + [sym_this] = ACTIONS(4145), + [sym_true] = ACTIONS(3771), + [sym_false] = ACTIONS(3771), + [sym_null] = ACTIONS(3771), + [sym_undefined] = ACTIONS(3771), + [anon_sym_readonly] = ACTIONS(3775), + [anon_sym_QMARK] = ACTIONS(3777), + [anon_sym_any] = ACTIONS(3767), + [anon_sym_number] = ACTIONS(3767), + [anon_sym_boolean] = ACTIONS(3767), + [anon_sym_string] = ACTIONS(3767), + [anon_sym_symbol] = ACTIONS(3767), + [anon_sym_object] = ACTIONS(3767), + [anon_sym_abstract] = ACTIONS(3779), + [anon_sym_infer] = ACTIONS(3783), + [anon_sym_keyof] = ACTIONS(3785), + [anon_sym_unique] = ACTIONS(3787), + [anon_sym_unknown] = ACTIONS(3767), + [anon_sym_never] = ACTIONS(3767), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [sym_html_comment] = ACTIONS(5), + }, + [1792] = { + [sym_nested_identifier] = STATE(6973), + [sym_string] = STATE(2430), + [sym_comment] = STATE(1792), + [sym_formal_parameters] = STATE(7150), + [sym_nested_type_identifier] = STATE(2302), + [sym__type] = STATE(2424), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2427), + [sym_template_literal_type] = STATE(2426), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2426), + [sym_generic_type] = STATE(2426), + [sym_type_query] = STATE(2426), + [sym_index_type_query] = STATE(2426), + [sym_lookup_type] = STATE(2426), + [sym_literal_type] = STATE(2426), + [sym__number] = STATE(2422), + [sym_existential_type] = STATE(2426), + [sym_flow_maybe_type] = STATE(2426), + [sym_parenthesized_type] = STATE(2426), + [sym_predefined_type] = STATE(2426), + [sym_object_type] = STATE(2426), + [sym_type_parameters] = STATE(6889), + [sym_array_type] = STATE(2426), + [sym_tuple_type] = STATE(2426), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2426), + [sym_intersection_type] = STATE(2426), + [sym_function_type] = STATE(2428), + [sym_identifier] = ACTIONS(4135), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(3905), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1920] = { - [sym_nested_identifier] = STATE(7189), - [sym_string] = STATE(4340), - [sym_comment] = STATE(1920), - [sym_formal_parameters] = STATE(7503), - [sym_nested_type_identifier] = STATE(4262), - [sym__type] = STATE(4388), - [sym_constructor_type] = STATE(4457), - [sym__primary_type] = STATE(4489), - [sym_template_literal_type] = STATE(4482), - [sym_infer_type] = STATE(4457), - [sym_conditional_type] = STATE(4482), - [sym_generic_type] = STATE(4482), - [sym_type_query] = STATE(4482), - [sym_index_type_query] = STATE(4482), - [sym_lookup_type] = STATE(4482), - [sym_literal_type] = STATE(4482), - [sym__number] = STATE(4473), - [sym_existential_type] = STATE(4482), - [sym_flow_maybe_type] = STATE(4482), - [sym_parenthesized_type] = STATE(4482), - [sym_predefined_type] = STATE(4482), - [sym_object_type] = STATE(4482), - [sym_type_parameters] = STATE(7119), - [sym_array_type] = STATE(4482), - [sym_tuple_type] = STATE(4482), - [sym_readonly_type] = STATE(4457), - [sym_union_type] = STATE(4482), - [sym_intersection_type] = STATE(4482), - [sym_function_type] = STATE(4457), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3745), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_typeof] = ACTIONS(3749), - [anon_sym_const] = ACTIONS(3751), - [anon_sym_LPAREN] = ACTIONS(3753), - [anon_sym_LBRACK] = ACTIONS(3755), - [anon_sym_DQUOTE] = ACTIONS(3757), - [anon_sym_SQUOTE] = ACTIONS(3759), - [anon_sym_new] = ACTIONS(3761), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3767), - [anon_sym_DASH] = ACTIONS(3767), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), + [sym_this] = ACTIONS(4137), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_html_comment] = ACTIONS(5), + }, + [1793] = { + [sym_nested_identifier] = STATE(7006), + [sym_string] = STATE(4247), + [sym_comment] = STATE(1793), + [sym_formal_parameters] = STATE(7134), + [sym_nested_type_identifier] = STATE(4103), + [sym__type] = STATE(4168), + [sym_constructor_type] = STATE(4153), + [sym__primary_type] = STATE(4154), + [sym_template_literal_type] = STATE(4155), + [sym_infer_type] = STATE(4153), + [sym_conditional_type] = STATE(4155), + [sym_generic_type] = STATE(4155), + [sym_type_query] = STATE(4155), + [sym_index_type_query] = STATE(4155), + [sym_lookup_type] = STATE(4155), + [sym_literal_type] = STATE(4155), + [sym__number] = STATE(4156), + [sym_existential_type] = STATE(4155), + [sym_flow_maybe_type] = STATE(4155), + [sym_parenthesized_type] = STATE(4155), + [sym_predefined_type] = STATE(4155), + [sym_object_type] = STATE(4155), + [sym_type_parameters] = STATE(6916), + [sym_array_type] = STATE(4155), + [sym_tuple_type] = STATE(4155), + [sym_readonly_type] = STATE(4153), + [sym_union_type] = STATE(4155), + [sym_intersection_type] = STATE(4155), + [sym_function_type] = STATE(4153), + [sym_identifier] = ACTIONS(4143), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_typeof] = ACTIONS(3747), + [anon_sym_const] = ACTIONS(3749), + [anon_sym_LPAREN] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3755), + [anon_sym_SQUOTE] = ACTIONS(3757), + [anon_sym_new] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_PIPE] = ACTIONS(3763), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3769), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3771), - [sym_number] = ACTIONS(3773), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3773), - [sym_false] = ACTIONS(3773), - [sym_null] = ACTIONS(3773), - [sym_undefined] = ACTIONS(3773), - [anon_sym_readonly] = ACTIONS(3777), - [anon_sym_QMARK] = ACTIONS(3779), - [anon_sym_any] = ACTIONS(3769), - [anon_sym_number] = ACTIONS(3769), - [anon_sym_boolean] = ACTIONS(3769), - [anon_sym_string] = ACTIONS(3769), - [anon_sym_symbol] = ACTIONS(3769), - [anon_sym_object] = ACTIONS(3769), - [anon_sym_abstract] = ACTIONS(3781), - [anon_sym_infer] = ACTIONS(3785), - [anon_sym_keyof] = ACTIONS(3787), - [anon_sym_unique] = ACTIONS(3789), - [anon_sym_unknown] = ACTIONS(3769), - [anon_sym_never] = ACTIONS(3769), - [anon_sym_LBRACE_PIPE] = ACTIONS(3747), - [sym_html_comment] = ACTIONS(5), - }, - [1921] = { - [sym_nested_identifier] = STATE(7189), - [sym_string] = STATE(4340), - [sym_comment] = STATE(1921), - [sym_formal_parameters] = STATE(7503), - [sym_nested_type_identifier] = STATE(4262), - [sym__type] = STATE(4385), - [sym_constructor_type] = STATE(4457), - [sym__primary_type] = STATE(4489), - [sym_template_literal_type] = STATE(4482), - [sym_infer_type] = STATE(4457), - [sym_conditional_type] = STATE(4482), - [sym_generic_type] = STATE(4482), - [sym_type_query] = STATE(4482), - [sym_index_type_query] = STATE(4482), - [sym_lookup_type] = STATE(4482), - [sym_literal_type] = STATE(4482), - [sym__number] = STATE(4473), - [sym_existential_type] = STATE(4482), - [sym_flow_maybe_type] = STATE(4482), - [sym_parenthesized_type] = STATE(4482), - [sym_predefined_type] = STATE(4482), - [sym_object_type] = STATE(4482), - [sym_type_parameters] = STATE(7119), - [sym_array_type] = STATE(4482), - [sym_tuple_type] = STATE(4482), - [sym_readonly_type] = STATE(4457), - [sym_union_type] = STATE(4482), - [sym_intersection_type] = STATE(4482), - [sym_function_type] = STATE(4457), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3745), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_typeof] = ACTIONS(3749), - [anon_sym_const] = ACTIONS(3751), - [anon_sym_LPAREN] = ACTIONS(3753), - [anon_sym_LBRACK] = ACTIONS(3755), - [anon_sym_DQUOTE] = ACTIONS(3757), - [anon_sym_SQUOTE] = ACTIONS(3759), - [anon_sym_new] = ACTIONS(3761), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3767), - [anon_sym_DASH] = ACTIONS(3767), + [anon_sym_void] = ACTIONS(3767), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3769), + [sym_number] = ACTIONS(3771), + [sym_this] = ACTIONS(4145), + [sym_true] = ACTIONS(3771), + [sym_false] = ACTIONS(3771), + [sym_null] = ACTIONS(3771), + [sym_undefined] = ACTIONS(3771), + [anon_sym_readonly] = ACTIONS(3775), + [anon_sym_QMARK] = ACTIONS(3777), + [anon_sym_any] = ACTIONS(3767), + [anon_sym_number] = ACTIONS(3767), + [anon_sym_boolean] = ACTIONS(3767), + [anon_sym_string] = ACTIONS(3767), + [anon_sym_symbol] = ACTIONS(3767), + [anon_sym_object] = ACTIONS(3767), + [anon_sym_abstract] = ACTIONS(3779), + [anon_sym_infer] = ACTIONS(3783), + [anon_sym_keyof] = ACTIONS(3785), + [anon_sym_unique] = ACTIONS(3787), + [anon_sym_unknown] = ACTIONS(3767), + [anon_sym_never] = ACTIONS(3767), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [sym_html_comment] = ACTIONS(5), + }, + [1794] = { + [sym_nested_identifier] = STATE(6973), + [sym_string] = STATE(2430), + [sym_comment] = STATE(1794), + [sym_formal_parameters] = STATE(7150), + [sym_nested_type_identifier] = STATE(2302), + [sym__type] = STATE(2324), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2427), + [sym_template_literal_type] = STATE(2426), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2426), + [sym_generic_type] = STATE(2426), + [sym_type_query] = STATE(2426), + [sym_index_type_query] = STATE(2426), + [sym_lookup_type] = STATE(2426), + [sym_literal_type] = STATE(2426), + [sym__number] = STATE(2422), + [sym_existential_type] = STATE(2426), + [sym_flow_maybe_type] = STATE(2426), + [sym_parenthesized_type] = STATE(2426), + [sym_predefined_type] = STATE(2426), + [sym_object_type] = STATE(2426), + [sym_type_parameters] = STATE(6889), + [sym_array_type] = STATE(2426), + [sym_tuple_type] = STATE(2426), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2426), + [sym_intersection_type] = STATE(2426), + [sym_function_type] = STATE(2428), + [sym_identifier] = ACTIONS(4135), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3769), + [anon_sym_void] = ACTIONS(3905), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3771), - [sym_number] = ACTIONS(3773), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3773), - [sym_false] = ACTIONS(3773), - [sym_null] = ACTIONS(3773), - [sym_undefined] = ACTIONS(3773), - [anon_sym_readonly] = ACTIONS(3777), - [anon_sym_QMARK] = ACTIONS(3779), - [anon_sym_any] = ACTIONS(3769), - [anon_sym_number] = ACTIONS(3769), - [anon_sym_boolean] = ACTIONS(3769), - [anon_sym_string] = ACTIONS(3769), - [anon_sym_symbol] = ACTIONS(3769), - [anon_sym_object] = ACTIONS(3769), - [anon_sym_abstract] = ACTIONS(3781), - [anon_sym_infer] = ACTIONS(3785), - [anon_sym_keyof] = ACTIONS(3787), - [anon_sym_unique] = ACTIONS(3789), - [anon_sym_unknown] = ACTIONS(3769), - [anon_sym_never] = ACTIONS(3769), - [anon_sym_LBRACE_PIPE] = ACTIONS(3747), - [sym_html_comment] = ACTIONS(5), - }, - [1922] = { - [sym_nested_identifier] = STATE(7157), - [sym_string] = STATE(2499), - [sym_comment] = STATE(1922), - [sym_formal_parameters] = STATE(7383), - [sym_nested_type_identifier] = STATE(2449), - [sym__type] = STATE(2519), - [sym_constructor_type] = STATE(2482), - [sym__primary_type] = STATE(2493), - [sym_template_literal_type] = STATE(2467), - [sym_infer_type] = STATE(2482), - [sym_conditional_type] = STATE(2467), - [sym_generic_type] = STATE(2467), - [sym_type_query] = STATE(2467), - [sym_index_type_query] = STATE(2467), - [sym_lookup_type] = STATE(2467), - [sym_literal_type] = STATE(2467), - [sym__number] = STATE(2576), - [sym_existential_type] = STATE(2467), - [sym_flow_maybe_type] = STATE(2467), - [sym_parenthesized_type] = STATE(2467), - [sym_predefined_type] = STATE(2467), - [sym_object_type] = STATE(2467), - [sym_type_parameters] = STATE(7072), - [sym_array_type] = STATE(2467), - [sym_tuple_type] = STATE(2467), - [sym_readonly_type] = STATE(2482), - [sym_union_type] = STATE(2467), - [sym_intersection_type] = STATE(2467), - [sym_function_type] = STATE(2482), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), + [sym_this] = ACTIONS(4137), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_html_comment] = ACTIONS(5), + }, + [1795] = { + [sym_nested_identifier] = STATE(6973), + [sym_string] = STATE(2430), + [sym_comment] = STATE(1795), + [sym_formal_parameters] = STATE(7150), + [sym_nested_type_identifier] = STATE(2302), + [sym__type] = STATE(2420), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2427), + [sym_template_literal_type] = STATE(2426), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2426), + [sym_generic_type] = STATE(2426), + [sym_type_query] = STATE(2426), + [sym_index_type_query] = STATE(2426), + [sym_lookup_type] = STATE(2426), + [sym_literal_type] = STATE(2426), + [sym__number] = STATE(2422), + [sym_existential_type] = STATE(2426), + [sym_flow_maybe_type] = STATE(2426), + [sym_parenthesized_type] = STATE(2426), + [sym_predefined_type] = STATE(2426), + [sym_object_type] = STATE(2426), + [sym_type_parameters] = STATE(6889), + [sym_array_type] = STATE(2426), + [sym_tuple_type] = STATE(2426), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2426), + [sym_intersection_type] = STATE(2426), + [sym_function_type] = STATE(2428), [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_typeof] = ACTIONS(3929), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3945), + [anon_sym_void] = ACTIONS(3905), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3947), - [sym_number] = ACTIONS(3949), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3949), - [sym_false] = ACTIONS(3949), - [sym_null] = ACTIONS(3949), - [sym_undefined] = ACTIONS(3949), - [anon_sym_readonly] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_any] = ACTIONS(3945), - [anon_sym_number] = ACTIONS(3945), - [anon_sym_boolean] = ACTIONS(3945), - [anon_sym_string] = ACTIONS(3945), - [anon_sym_symbol] = ACTIONS(3945), - [anon_sym_object] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(3957), - [anon_sym_infer] = ACTIONS(3961), - [anon_sym_keyof] = ACTIONS(3963), - [anon_sym_unique] = ACTIONS(3965), - [anon_sym_unknown] = ACTIONS(3945), - [anon_sym_never] = ACTIONS(3945), - [anon_sym_LBRACE_PIPE] = ACTIONS(3927), - [sym_html_comment] = ACTIONS(5), - }, - [1923] = { - [sym_nested_identifier] = STATE(7157), - [sym_string] = STATE(2499), - [sym_comment] = STATE(1923), - [sym_formal_parameters] = STATE(7383), - [sym_nested_type_identifier] = STATE(2449), - [sym__type] = STATE(2569), - [sym_constructor_type] = STATE(2482), - [sym__primary_type] = STATE(2493), - [sym_template_literal_type] = STATE(2467), - [sym_infer_type] = STATE(2482), - [sym_conditional_type] = STATE(2467), - [sym_generic_type] = STATE(2467), - [sym_type_query] = STATE(2467), - [sym_index_type_query] = STATE(2467), - [sym_lookup_type] = STATE(2467), - [sym_literal_type] = STATE(2467), - [sym__number] = STATE(2576), - [sym_existential_type] = STATE(2467), - [sym_flow_maybe_type] = STATE(2467), - [sym_parenthesized_type] = STATE(2467), - [sym_predefined_type] = STATE(2467), - [sym_object_type] = STATE(2467), - [sym_type_parameters] = STATE(7072), - [sym_array_type] = STATE(2467), - [sym_tuple_type] = STATE(2467), - [sym_readonly_type] = STATE(2482), - [sym_union_type] = STATE(2467), - [sym_intersection_type] = STATE(2467), - [sym_function_type] = STATE(2482), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_html_comment] = ACTIONS(5), + }, + [1796] = { + [sym_nested_identifier] = STATE(6973), + [sym_string] = STATE(2430), + [sym_comment] = STATE(1796), + [sym_formal_parameters] = STATE(7150), + [sym_nested_type_identifier] = STATE(2302), + [sym__type] = STATE(2325), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2427), + [sym_template_literal_type] = STATE(2426), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2426), + [sym_generic_type] = STATE(2426), + [sym_type_query] = STATE(2426), + [sym_index_type_query] = STATE(2426), + [sym_lookup_type] = STATE(2426), + [sym_literal_type] = STATE(2426), + [sym__number] = STATE(2422), + [sym_existential_type] = STATE(2426), + [sym_flow_maybe_type] = STATE(2426), + [sym_parenthesized_type] = STATE(2426), + [sym_predefined_type] = STATE(2426), + [sym_object_type] = STATE(2426), + [sym_type_parameters] = STATE(6889), + [sym_array_type] = STATE(2426), + [sym_tuple_type] = STATE(2426), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2426), + [sym_intersection_type] = STATE(2426), + [sym_function_type] = STATE(2428), [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_typeof] = ACTIONS(3929), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3945), + [anon_sym_void] = ACTIONS(3905), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3947), - [sym_number] = ACTIONS(3949), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3949), - [sym_false] = ACTIONS(3949), - [sym_null] = ACTIONS(3949), - [sym_undefined] = ACTIONS(3949), - [anon_sym_readonly] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_any] = ACTIONS(3945), - [anon_sym_number] = ACTIONS(3945), - [anon_sym_boolean] = ACTIONS(3945), - [anon_sym_string] = ACTIONS(3945), - [anon_sym_symbol] = ACTIONS(3945), - [anon_sym_object] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(3957), - [anon_sym_infer] = ACTIONS(3961), - [anon_sym_keyof] = ACTIONS(3963), - [anon_sym_unique] = ACTIONS(3965), - [anon_sym_unknown] = ACTIONS(3945), - [anon_sym_never] = ACTIONS(3945), - [anon_sym_LBRACE_PIPE] = ACTIONS(3927), - [sym_html_comment] = ACTIONS(5), - }, - [1924] = { - [sym_nested_identifier] = STATE(7360), - [sym_string] = STATE(3048), - [sym_comment] = STATE(1924), - [sym_formal_parameters] = STATE(7424), - [sym_nested_type_identifier] = STATE(2840), - [sym__type] = STATE(2931), - [sym_constructor_type] = STATE(3044), - [sym__primary_type] = STATE(3039), - [sym_template_literal_type] = STATE(3036), - [sym_infer_type] = STATE(3044), - [sym_conditional_type] = STATE(3036), - [sym_generic_type] = STATE(3036), - [sym_type_query] = STATE(3036), - [sym_index_type_query] = STATE(3036), - [sym_lookup_type] = STATE(3036), - [sym_literal_type] = STATE(3036), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3036), - [sym_flow_maybe_type] = STATE(3036), - [sym_parenthesized_type] = STATE(3036), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(3036), - [sym_type_parameters] = STATE(6722), - [sym_array_type] = STATE(3036), - [sym_tuple_type] = STATE(3036), - [sym_readonly_type] = STATE(3044), - [sym_union_type] = STATE(3036), - [sym_intersection_type] = STATE(3036), - [sym_function_type] = STATE(3044), - [sym_identifier] = ACTIONS(4131), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3883), - [anon_sym_typeof] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3891), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3901), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3903), - [sym_number] = ACTIONS(3905), - [sym_this] = ACTIONS(4133), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_null] = ACTIONS(3905), - [sym_undefined] = ACTIONS(3905), - [anon_sym_readonly] = ACTIONS(3909), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_any] = ACTIONS(3901), - [anon_sym_number] = ACTIONS(3901), - [anon_sym_boolean] = ACTIONS(3901), - [anon_sym_string] = ACTIONS(3901), - [anon_sym_symbol] = ACTIONS(3901), - [anon_sym_object] = ACTIONS(3901), - [anon_sym_abstract] = ACTIONS(3913), - [anon_sym_infer] = ACTIONS(3917), - [anon_sym_keyof] = ACTIONS(3919), - [anon_sym_unique] = ACTIONS(3921), - [anon_sym_unknown] = ACTIONS(3901), - [anon_sym_never] = ACTIONS(3901), - [anon_sym_LBRACE_PIPE] = ACTIONS(3883), - [sym_html_comment] = ACTIONS(5), - }, - [1925] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1925), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(5158), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_html_comment] = ACTIONS(5), + }, + [1797] = { + [sym_nested_identifier] = STATE(6973), + [sym_string] = STATE(2430), + [sym_comment] = STATE(1797), + [sym_formal_parameters] = STATE(7150), + [sym_nested_type_identifier] = STATE(2302), + [sym__type] = STATE(2395), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2427), + [sym_template_literal_type] = STATE(2426), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2426), + [sym_generic_type] = STATE(2426), + [sym_type_query] = STATE(2426), + [sym_index_type_query] = STATE(2426), + [sym_lookup_type] = STATE(2426), + [sym_literal_type] = STATE(2426), + [sym__number] = STATE(2422), + [sym_existential_type] = STATE(2426), + [sym_flow_maybe_type] = STATE(2426), + [sym_parenthesized_type] = STATE(2426), + [sym_predefined_type] = STATE(2426), + [sym_object_type] = STATE(2426), + [sym_type_parameters] = STATE(6889), + [sym_array_type] = STATE(2426), + [sym_tuple_type] = STATE(2426), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2426), + [sym_intersection_type] = STATE(2426), + [sym_function_type] = STATE(2428), + [sym_identifier] = ACTIONS(4135), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(3905), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1926] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1926), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4000), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), + [sym_this] = ACTIONS(4137), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_html_comment] = ACTIONS(5), + }, + [1798] = { + [sym_nested_identifier] = STATE(7006), + [sym_string] = STATE(4247), + [sym_comment] = STATE(1798), + [sym_formal_parameters] = STATE(7134), + [sym_nested_type_identifier] = STATE(4103), + [sym__type] = STATE(4319), + [sym_constructor_type] = STATE(4153), + [sym__primary_type] = STATE(4154), + [sym_template_literal_type] = STATE(4155), + [sym_infer_type] = STATE(4153), + [sym_conditional_type] = STATE(4155), + [sym_generic_type] = STATE(4155), + [sym_type_query] = STATE(4155), + [sym_index_type_query] = STATE(4155), + [sym_lookup_type] = STATE(4155), + [sym_literal_type] = STATE(4155), + [sym__number] = STATE(4156), + [sym_existential_type] = STATE(4155), + [sym_flow_maybe_type] = STATE(4155), + [sym_parenthesized_type] = STATE(4155), + [sym_predefined_type] = STATE(4155), + [sym_object_type] = STATE(4155), + [sym_type_parameters] = STATE(6916), + [sym_array_type] = STATE(4155), + [sym_tuple_type] = STATE(4155), + [sym_readonly_type] = STATE(4153), + [sym_union_type] = STATE(4155), + [sym_intersection_type] = STATE(4155), + [sym_function_type] = STATE(4153), + [sym_identifier] = ACTIONS(4143), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_typeof] = ACTIONS(3747), + [anon_sym_const] = ACTIONS(3749), + [anon_sym_LPAREN] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3755), + [anon_sym_SQUOTE] = ACTIONS(3757), + [anon_sym_new] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_PIPE] = ACTIONS(3763), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3767), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3769), + [sym_number] = ACTIONS(3771), + [sym_this] = ACTIONS(4145), + [sym_true] = ACTIONS(3771), + [sym_false] = ACTIONS(3771), + [sym_null] = ACTIONS(3771), + [sym_undefined] = ACTIONS(3771), + [anon_sym_readonly] = ACTIONS(3775), + [anon_sym_QMARK] = ACTIONS(3777), + [anon_sym_any] = ACTIONS(3767), + [anon_sym_number] = ACTIONS(3767), + [anon_sym_boolean] = ACTIONS(3767), + [anon_sym_string] = ACTIONS(3767), + [anon_sym_symbol] = ACTIONS(3767), + [anon_sym_object] = ACTIONS(3767), + [anon_sym_abstract] = ACTIONS(3779), + [anon_sym_infer] = ACTIONS(3783), + [anon_sym_keyof] = ACTIONS(3785), + [anon_sym_unique] = ACTIONS(3787), + [anon_sym_unknown] = ACTIONS(3767), + [anon_sym_never] = ACTIONS(3767), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [sym_html_comment] = ACTIONS(5), + }, + [1799] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1799), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3821), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -219376,52 +208449,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1927] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1927), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(4519), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [1800] = { + [sym_nested_identifier] = STATE(6973), + [sym_string] = STATE(2430), + [sym_comment] = STATE(1800), + [sym_formal_parameters] = STATE(7150), + [sym_nested_type_identifier] = STATE(2302), + [sym__type] = STATE(2393), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2427), + [sym_template_literal_type] = STATE(2426), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2426), + [sym_generic_type] = STATE(2426), + [sym_type_query] = STATE(2426), + [sym_index_type_query] = STATE(2426), + [sym_lookup_type] = STATE(2426), + [sym_literal_type] = STATE(2426), + [sym__number] = STATE(2422), + [sym_existential_type] = STATE(2426), + [sym_flow_maybe_type] = STATE(2426), + [sym_parenthesized_type] = STATE(2426), + [sym_predefined_type] = STATE(2426), + [sym_object_type] = STATE(2426), + [sym_type_parameters] = STATE(6889), + [sym_array_type] = STATE(2426), + [sym_tuple_type] = STATE(2426), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2426), + [sym_intersection_type] = STATE(2426), + [sym_function_type] = STATE(2428), + [sym_identifier] = ACTIONS(4135), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3905), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), + [sym_this] = ACTIONS(4137), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_html_comment] = ACTIONS(5), + }, + [1801] = { + [sym_nested_identifier] = STATE(7006), + [sym_string] = STATE(4247), + [sym_comment] = STATE(1801), + [sym_formal_parameters] = STATE(7134), + [sym_nested_type_identifier] = STATE(4103), + [sym__type] = STATE(4179), + [sym_constructor_type] = STATE(4153), + [sym__primary_type] = STATE(4154), + [sym_template_literal_type] = STATE(4155), + [sym_infer_type] = STATE(4153), + [sym_conditional_type] = STATE(4155), + [sym_generic_type] = STATE(4155), + [sym_type_query] = STATE(4155), + [sym_index_type_query] = STATE(4155), + [sym_lookup_type] = STATE(4155), + [sym_literal_type] = STATE(4155), + [sym__number] = STATE(4156), + [sym_existential_type] = STATE(4155), + [sym_flow_maybe_type] = STATE(4155), + [sym_parenthesized_type] = STATE(4155), + [sym_predefined_type] = STATE(4155), + [sym_object_type] = STATE(4155), + [sym_type_parameters] = STATE(6916), + [sym_array_type] = STATE(4155), + [sym_tuple_type] = STATE(4155), + [sym_readonly_type] = STATE(4153), + [sym_union_type] = STATE(4155), + [sym_intersection_type] = STATE(4155), + [sym_function_type] = STATE(4153), + [sym_identifier] = ACTIONS(4143), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_typeof] = ACTIONS(3747), + [anon_sym_const] = ACTIONS(3749), + [anon_sym_LPAREN] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3755), + [anon_sym_SQUOTE] = ACTIONS(3757), + [anon_sym_new] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_PIPE] = ACTIONS(3763), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3767), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3769), + [sym_number] = ACTIONS(3771), + [sym_this] = ACTIONS(4145), + [sym_true] = ACTIONS(3771), + [sym_false] = ACTIONS(3771), + [sym_null] = ACTIONS(3771), + [sym_undefined] = ACTIONS(3771), + [anon_sym_readonly] = ACTIONS(3775), + [anon_sym_QMARK] = ACTIONS(3777), + [anon_sym_any] = ACTIONS(3767), + [anon_sym_number] = ACTIONS(3767), + [anon_sym_boolean] = ACTIONS(3767), + [anon_sym_string] = ACTIONS(3767), + [anon_sym_symbol] = ACTIONS(3767), + [anon_sym_object] = ACTIONS(3767), + [anon_sym_abstract] = ACTIONS(3779), + [anon_sym_infer] = ACTIONS(3783), + [anon_sym_keyof] = ACTIONS(3785), + [anon_sym_unique] = ACTIONS(3787), + [anon_sym_unknown] = ACTIONS(3767), + [anon_sym_never] = ACTIONS(3767), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [sym_html_comment] = ACTIONS(5), + }, + [1802] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1802), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4970), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -219431,139 +208646,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1928] = { - [sym_nested_identifier] = STATE(7189), - [sym_string] = STATE(4340), - [sym_comment] = STATE(1928), - [sym_formal_parameters] = STATE(7503), - [sym_nested_type_identifier] = STATE(4262), - [sym__type] = STATE(4433), - [sym_constructor_type] = STATE(4457), - [sym__primary_type] = STATE(4489), - [sym_template_literal_type] = STATE(4482), - [sym_infer_type] = STATE(4457), - [sym_conditional_type] = STATE(4482), - [sym_generic_type] = STATE(4482), - [sym_type_query] = STATE(4482), - [sym_index_type_query] = STATE(4482), - [sym_lookup_type] = STATE(4482), - [sym_literal_type] = STATE(4482), - [sym__number] = STATE(4473), - [sym_existential_type] = STATE(4482), - [sym_flow_maybe_type] = STATE(4482), - [sym_parenthesized_type] = STATE(4482), - [sym_predefined_type] = STATE(4482), - [sym_object_type] = STATE(4482), - [sym_type_parameters] = STATE(7119), - [sym_array_type] = STATE(4482), - [sym_tuple_type] = STATE(4482), - [sym_readonly_type] = STATE(4457), - [sym_union_type] = STATE(4482), - [sym_intersection_type] = STATE(4482), - [sym_function_type] = STATE(4457), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3745), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_typeof] = ACTIONS(3749), - [anon_sym_const] = ACTIONS(3751), - [anon_sym_LPAREN] = ACTIONS(3753), - [anon_sym_LBRACK] = ACTIONS(3755), - [anon_sym_DQUOTE] = ACTIONS(3757), - [anon_sym_SQUOTE] = ACTIONS(3759), - [anon_sym_new] = ACTIONS(3761), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3767), - [anon_sym_DASH] = ACTIONS(3767), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3769), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3771), - [sym_number] = ACTIONS(3773), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3773), - [sym_false] = ACTIONS(3773), - [sym_null] = ACTIONS(3773), - [sym_undefined] = ACTIONS(3773), - [anon_sym_readonly] = ACTIONS(3777), - [anon_sym_QMARK] = ACTIONS(3779), - [anon_sym_any] = ACTIONS(3769), - [anon_sym_number] = ACTIONS(3769), - [anon_sym_boolean] = ACTIONS(3769), - [anon_sym_string] = ACTIONS(3769), - [anon_sym_symbol] = ACTIONS(3769), - [anon_sym_object] = ACTIONS(3769), - [anon_sym_abstract] = ACTIONS(3781), - [anon_sym_infer] = ACTIONS(3785), - [anon_sym_keyof] = ACTIONS(3787), - [anon_sym_unique] = ACTIONS(3789), - [anon_sym_unknown] = ACTIONS(3769), - [anon_sym_never] = ACTIONS(3769), - [anon_sym_LBRACE_PIPE] = ACTIONS(3747), - [sym_html_comment] = ACTIONS(5), - }, - [1929] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1929), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(4518), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1803] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1803), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5336), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -219573,210 +208717,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1930] = { - [sym_nested_identifier] = STATE(7360), - [sym_string] = STATE(3048), - [sym_comment] = STATE(1930), - [sym_formal_parameters] = STATE(7424), - [sym_nested_type_identifier] = STATE(2840), - [sym__type] = STATE(2944), - [sym_constructor_type] = STATE(3044), - [sym__primary_type] = STATE(3039), - [sym_template_literal_type] = STATE(3036), - [sym_infer_type] = STATE(3044), - [sym_conditional_type] = STATE(3036), - [sym_generic_type] = STATE(3036), - [sym_type_query] = STATE(3036), - [sym_index_type_query] = STATE(3036), - [sym_lookup_type] = STATE(3036), - [sym_literal_type] = STATE(3036), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3036), - [sym_flow_maybe_type] = STATE(3036), - [sym_parenthesized_type] = STATE(3036), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(3036), - [sym_type_parameters] = STATE(6722), - [sym_array_type] = STATE(3036), - [sym_tuple_type] = STATE(3036), - [sym_readonly_type] = STATE(3044), - [sym_union_type] = STATE(3036), - [sym_intersection_type] = STATE(3036), - [sym_function_type] = STATE(3044), - [sym_identifier] = ACTIONS(4131), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3883), - [anon_sym_typeof] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3891), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3901), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3903), - [sym_number] = ACTIONS(3905), - [sym_this] = ACTIONS(4133), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_null] = ACTIONS(3905), - [sym_undefined] = ACTIONS(3905), - [anon_sym_readonly] = ACTIONS(3909), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_any] = ACTIONS(3901), - [anon_sym_number] = ACTIONS(3901), - [anon_sym_boolean] = ACTIONS(3901), - [anon_sym_string] = ACTIONS(3901), - [anon_sym_symbol] = ACTIONS(3901), - [anon_sym_object] = ACTIONS(3901), - [anon_sym_abstract] = ACTIONS(3913), - [anon_sym_infer] = ACTIONS(3917), - [anon_sym_keyof] = ACTIONS(3919), - [anon_sym_unique] = ACTIONS(3921), - [anon_sym_unknown] = ACTIONS(3901), - [anon_sym_never] = ACTIONS(3901), - [anon_sym_LBRACE_PIPE] = ACTIONS(3883), - [sym_html_comment] = ACTIONS(5), - }, - [1931] = { - [sym_nested_identifier] = STATE(7157), - [sym_string] = STATE(2499), - [sym_comment] = STATE(1931), - [sym_formal_parameters] = STATE(7383), - [sym_nested_type_identifier] = STATE(2449), - [sym__type] = STATE(2581), - [sym_constructor_type] = STATE(2482), - [sym__primary_type] = STATE(2493), - [sym_template_literal_type] = STATE(2467), - [sym_infer_type] = STATE(2482), - [sym_conditional_type] = STATE(2467), - [sym_generic_type] = STATE(2467), - [sym_type_query] = STATE(2467), - [sym_index_type_query] = STATE(2467), - [sym_lookup_type] = STATE(2467), - [sym_literal_type] = STATE(2467), - [sym__number] = STATE(2576), - [sym_existential_type] = STATE(2467), - [sym_flow_maybe_type] = STATE(2467), - [sym_parenthesized_type] = STATE(2467), - [sym_predefined_type] = STATE(2467), - [sym_object_type] = STATE(2467), - [sym_type_parameters] = STATE(7072), - [sym_array_type] = STATE(2467), - [sym_tuple_type] = STATE(2467), - [sym_readonly_type] = STATE(2482), - [sym_union_type] = STATE(2467), - [sym_intersection_type] = STATE(2467), - [sym_function_type] = STATE(2482), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_typeof] = ACTIONS(3929), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3945), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3947), - [sym_number] = ACTIONS(3949), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3949), - [sym_false] = ACTIONS(3949), - [sym_null] = ACTIONS(3949), - [sym_undefined] = ACTIONS(3949), - [anon_sym_readonly] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_any] = ACTIONS(3945), - [anon_sym_number] = ACTIONS(3945), - [anon_sym_boolean] = ACTIONS(3945), - [anon_sym_string] = ACTIONS(3945), - [anon_sym_symbol] = ACTIONS(3945), - [anon_sym_object] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(3957), - [anon_sym_infer] = ACTIONS(3961), - [anon_sym_keyof] = ACTIONS(3963), - [anon_sym_unique] = ACTIONS(3965), - [anon_sym_unknown] = ACTIONS(3945), - [anon_sym_never] = ACTIONS(3945), - [anon_sym_LBRACE_PIPE] = ACTIONS(3927), - [sym_html_comment] = ACTIONS(5), - }, - [1932] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1932), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(5133), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1804] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1804), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5022), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -219786,336 +208788,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1933] = { - [sym_nested_identifier] = STATE(7157), - [sym_string] = STATE(2499), - [sym_comment] = STATE(1933), - [sym_formal_parameters] = STATE(7383), - [sym_nested_type_identifier] = STATE(2449), - [sym__type] = STATE(2518), - [sym_constructor_type] = STATE(2482), - [sym__primary_type] = STATE(2493), - [sym_template_literal_type] = STATE(2467), - [sym_infer_type] = STATE(2482), - [sym_conditional_type] = STATE(2467), - [sym_generic_type] = STATE(2467), - [sym_type_query] = STATE(2467), - [sym_index_type_query] = STATE(2467), - [sym_lookup_type] = STATE(2467), - [sym_literal_type] = STATE(2467), - [sym__number] = STATE(2576), - [sym_existential_type] = STATE(2467), - [sym_flow_maybe_type] = STATE(2467), - [sym_parenthesized_type] = STATE(2467), - [sym_predefined_type] = STATE(2467), - [sym_object_type] = STATE(2467), - [sym_type_parameters] = STATE(7072), - [sym_array_type] = STATE(2467), - [sym_tuple_type] = STATE(2467), - [sym_readonly_type] = STATE(2482), - [sym_union_type] = STATE(2467), - [sym_intersection_type] = STATE(2467), - [sym_function_type] = STATE(2482), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_typeof] = ACTIONS(3929), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3945), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3947), - [sym_number] = ACTIONS(3949), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3949), - [sym_false] = ACTIONS(3949), - [sym_null] = ACTIONS(3949), - [sym_undefined] = ACTIONS(3949), - [anon_sym_readonly] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_any] = ACTIONS(3945), - [anon_sym_number] = ACTIONS(3945), - [anon_sym_boolean] = ACTIONS(3945), - [anon_sym_string] = ACTIONS(3945), - [anon_sym_symbol] = ACTIONS(3945), - [anon_sym_object] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(3957), - [anon_sym_infer] = ACTIONS(3961), - [anon_sym_keyof] = ACTIONS(3963), - [anon_sym_unique] = ACTIONS(3965), - [anon_sym_unknown] = ACTIONS(3945), - [anon_sym_never] = ACTIONS(3945), - [anon_sym_LBRACE_PIPE] = ACTIONS(3927), - [sym_html_comment] = ACTIONS(5), - }, - [1934] = { - [sym_nested_identifier] = STATE(7157), - [sym_string] = STATE(2499), - [sym_comment] = STATE(1934), - [sym_formal_parameters] = STATE(7383), - [sym_nested_type_identifier] = STATE(2449), - [sym__type] = STATE(2532), - [sym_constructor_type] = STATE(2482), - [sym__primary_type] = STATE(2493), - [sym_template_literal_type] = STATE(2467), - [sym_infer_type] = STATE(2482), - [sym_conditional_type] = STATE(2467), - [sym_generic_type] = STATE(2467), - [sym_type_query] = STATE(2467), - [sym_index_type_query] = STATE(2467), - [sym_lookup_type] = STATE(2467), - [sym_literal_type] = STATE(2467), - [sym__number] = STATE(2576), - [sym_existential_type] = STATE(2467), - [sym_flow_maybe_type] = STATE(2467), - [sym_parenthesized_type] = STATE(2467), - [sym_predefined_type] = STATE(2467), - [sym_object_type] = STATE(2467), - [sym_type_parameters] = STATE(7072), - [sym_array_type] = STATE(2467), - [sym_tuple_type] = STATE(2467), - [sym_readonly_type] = STATE(2482), - [sym_union_type] = STATE(2467), - [sym_intersection_type] = STATE(2467), - [sym_function_type] = STATE(2482), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_typeof] = ACTIONS(3929), - [anon_sym_const] = ACTIONS(4143), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3945), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3947), - [sym_number] = ACTIONS(3949), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3949), - [sym_false] = ACTIONS(3949), - [sym_null] = ACTIONS(3949), - [sym_undefined] = ACTIONS(3949), - [anon_sym_readonly] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_any] = ACTIONS(3945), - [anon_sym_number] = ACTIONS(3945), - [anon_sym_boolean] = ACTIONS(3945), - [anon_sym_string] = ACTIONS(3945), - [anon_sym_symbol] = ACTIONS(3945), - [anon_sym_object] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(3957), - [anon_sym_infer] = ACTIONS(3961), - [anon_sym_keyof] = ACTIONS(3963), - [anon_sym_unique] = ACTIONS(3965), - [anon_sym_unknown] = ACTIONS(3945), - [anon_sym_never] = ACTIONS(3945), - [anon_sym_LBRACE_PIPE] = ACTIONS(3927), - [sym_html_comment] = ACTIONS(5), - }, - [1935] = { - [sym_nested_identifier] = STATE(7157), - [sym_string] = STATE(2499), - [sym_comment] = STATE(1935), - [sym_formal_parameters] = STATE(7383), - [sym_nested_type_identifier] = STATE(2449), - [sym__type] = STATE(2520), - [sym_constructor_type] = STATE(2482), - [sym__primary_type] = STATE(2493), - [sym_template_literal_type] = STATE(2467), - [sym_infer_type] = STATE(2482), - [sym_conditional_type] = STATE(2467), - [sym_generic_type] = STATE(2467), - [sym_type_query] = STATE(2467), - [sym_index_type_query] = STATE(2467), - [sym_lookup_type] = STATE(2467), - [sym_literal_type] = STATE(2467), - [sym__number] = STATE(2576), - [sym_existential_type] = STATE(2467), - [sym_flow_maybe_type] = STATE(2467), - [sym_parenthesized_type] = STATE(2467), - [sym_predefined_type] = STATE(2467), - [sym_object_type] = STATE(2467), - [sym_type_parameters] = STATE(7072), - [sym_array_type] = STATE(2467), - [sym_tuple_type] = STATE(2467), - [sym_readonly_type] = STATE(2482), - [sym_union_type] = STATE(2467), - [sym_intersection_type] = STATE(2467), - [sym_function_type] = STATE(2482), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_typeof] = ACTIONS(3929), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3945), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3947), - [sym_number] = ACTIONS(3949), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3949), - [sym_false] = ACTIONS(3949), - [sym_null] = ACTIONS(3949), - [sym_undefined] = ACTIONS(3949), - [anon_sym_readonly] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_any] = ACTIONS(3945), - [anon_sym_number] = ACTIONS(3945), - [anon_sym_boolean] = ACTIONS(3945), - [anon_sym_string] = ACTIONS(3945), - [anon_sym_symbol] = ACTIONS(3945), - [anon_sym_object] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(3957), - [anon_sym_infer] = ACTIONS(3961), - [anon_sym_keyof] = ACTIONS(3963), - [anon_sym_unique] = ACTIONS(3965), - [anon_sym_unknown] = ACTIONS(3945), - [anon_sym_never] = ACTIONS(3945), - [anon_sym_LBRACE_PIPE] = ACTIONS(3927), - [sym_html_comment] = ACTIONS(5), - }, - [1936] = { - [sym_nested_identifier] = STATE(7360), - [sym_string] = STATE(3048), - [sym_comment] = STATE(1936), - [sym_formal_parameters] = STATE(7424), - [sym_nested_type_identifier] = STATE(2840), - [sym__type] = STATE(2973), - [sym_constructor_type] = STATE(3044), - [sym__primary_type] = STATE(3039), - [sym_template_literal_type] = STATE(3036), - [sym_infer_type] = STATE(3044), - [sym_conditional_type] = STATE(3036), - [sym_generic_type] = STATE(3036), - [sym_type_query] = STATE(3036), - [sym_index_type_query] = STATE(3036), - [sym_lookup_type] = STATE(3036), - [sym_literal_type] = STATE(3036), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3036), - [sym_flow_maybe_type] = STATE(3036), - [sym_parenthesized_type] = STATE(3036), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(3036), - [sym_type_parameters] = STATE(6722), - [sym_array_type] = STATE(3036), - [sym_tuple_type] = STATE(3036), - [sym_readonly_type] = STATE(3044), - [sym_union_type] = STATE(3036), - [sym_intersection_type] = STATE(3036), - [sym_function_type] = STATE(3044), - [sym_identifier] = ACTIONS(4131), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3883), - [anon_sym_typeof] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(4145), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3891), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1805] = { + [sym_nested_identifier] = STATE(7198), + [sym_string] = STATE(2867), + [sym_comment] = STATE(1805), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(2711), + [sym__type] = STATE(2785), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2842), + [sym_template_literal_type] = STATE(2841), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2841), + [sym_generic_type] = STATE(2841), + [sym_type_query] = STATE(2841), + [sym_index_type_query] = STATE(2841), + [sym_lookup_type] = STATE(2841), + [sym_literal_type] = STATE(2841), + [sym__number] = STATE(2835), + [sym_existential_type] = STATE(2841), + [sym_flow_maybe_type] = STATE(2841), + [sym_parenthesized_type] = STATE(2841), + [sym_predefined_type] = STATE(2841), + [sym_object_type] = STATE(2841), + [sym_type_parameters] = STATE(6539), + [sym_array_type] = STATE(2841), + [sym_tuple_type] = STATE(2841), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2841), + [sym_intersection_type] = STATE(2841), + [sym_function_type] = STATE(2843), + [sym_identifier] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3901), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3903), - [sym_number] = ACTIONS(3905), - [sym_this] = ACTIONS(4133), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_null] = ACTIONS(3905), - [sym_undefined] = ACTIONS(3905), - [anon_sym_readonly] = ACTIONS(3909), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_any] = ACTIONS(3901), - [anon_sym_number] = ACTIONS(3901), - [anon_sym_boolean] = ACTIONS(3901), - [anon_sym_string] = ACTIONS(3901), - [anon_sym_symbol] = ACTIONS(3901), - [anon_sym_object] = ACTIONS(3901), - [anon_sym_abstract] = ACTIONS(3913), - [anon_sym_infer] = ACTIONS(3917), - [anon_sym_keyof] = ACTIONS(3919), - [anon_sym_unique] = ACTIONS(3921), - [anon_sym_unknown] = ACTIONS(3901), - [anon_sym_never] = ACTIONS(3901), - [anon_sym_LBRACE_PIPE] = ACTIONS(3883), - [sym_html_comment] = ACTIONS(5), - }, - [1937] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1937), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5726), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [anon_sym_void] = ACTIONS(3949), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), + [sym_this] = ACTIONS(4141), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_html_comment] = ACTIONS(5), + }, + [1806] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1806), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3886), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -220157,320 +208946,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1938] = { - [sym_nested_identifier] = STATE(7360), - [sym_string] = STATE(3048), - [sym_comment] = STATE(1938), - [sym_formal_parameters] = STATE(7424), - [sym_nested_type_identifier] = STATE(2840), - [sym__type] = STATE(3009), - [sym_constructor_type] = STATE(3044), - [sym__primary_type] = STATE(3039), - [sym_template_literal_type] = STATE(3036), - [sym_infer_type] = STATE(3044), - [sym_conditional_type] = STATE(3036), - [sym_generic_type] = STATE(3036), - [sym_type_query] = STATE(3036), - [sym_index_type_query] = STATE(3036), - [sym_lookup_type] = STATE(3036), - [sym_literal_type] = STATE(3036), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3036), - [sym_flow_maybe_type] = STATE(3036), - [sym_parenthesized_type] = STATE(3036), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(3036), - [sym_type_parameters] = STATE(6722), - [sym_array_type] = STATE(3036), - [sym_tuple_type] = STATE(3036), - [sym_readonly_type] = STATE(3044), - [sym_union_type] = STATE(3036), - [sym_intersection_type] = STATE(3036), - [sym_function_type] = STATE(3044), - [sym_identifier] = ACTIONS(4131), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3883), - [anon_sym_typeof] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3891), + [1807] = { + [sym_nested_identifier] = STATE(7198), + [sym_string] = STATE(2867), + [sym_comment] = STATE(1807), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(2711), + [sym__type] = STATE(2878), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2842), + [sym_template_literal_type] = STATE(2841), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2841), + [sym_generic_type] = STATE(2841), + [sym_type_query] = STATE(2841), + [sym_index_type_query] = STATE(2841), + [sym_lookup_type] = STATE(2841), + [sym_literal_type] = STATE(2841), + [sym__number] = STATE(2835), + [sym_existential_type] = STATE(2841), + [sym_flow_maybe_type] = STATE(2841), + [sym_parenthesized_type] = STATE(2841), + [sym_predefined_type] = STATE(2841), + [sym_object_type] = STATE(2841), + [sym_type_parameters] = STATE(6539), + [sym_array_type] = STATE(2841), + [sym_tuple_type] = STATE(2841), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2841), + [sym_intersection_type] = STATE(2841), + [sym_function_type] = STATE(2843), + [sym_identifier] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3901), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3903), - [sym_number] = ACTIONS(3905), - [sym_this] = ACTIONS(4133), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_null] = ACTIONS(3905), - [sym_undefined] = ACTIONS(3905), - [anon_sym_readonly] = ACTIONS(3909), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_any] = ACTIONS(3901), - [anon_sym_number] = ACTIONS(3901), - [anon_sym_boolean] = ACTIONS(3901), - [anon_sym_string] = ACTIONS(3901), - [anon_sym_symbol] = ACTIONS(3901), - [anon_sym_object] = ACTIONS(3901), - [anon_sym_abstract] = ACTIONS(3913), - [anon_sym_infer] = ACTIONS(3917), - [anon_sym_keyof] = ACTIONS(3919), - [anon_sym_unique] = ACTIONS(3921), - [anon_sym_unknown] = ACTIONS(3901), - [anon_sym_never] = ACTIONS(3901), - [anon_sym_LBRACE_PIPE] = ACTIONS(3883), - [sym_html_comment] = ACTIONS(5), - }, - [1939] = { - [sym_nested_identifier] = STATE(7189), - [sym_string] = STATE(4340), - [sym_comment] = STATE(1939), - [sym_formal_parameters] = STATE(7503), - [sym_nested_type_identifier] = STATE(4262), - [sym__type] = STATE(4331), - [sym_constructor_type] = STATE(4457), - [sym__primary_type] = STATE(4489), - [sym_template_literal_type] = STATE(4482), - [sym_infer_type] = STATE(4457), - [sym_conditional_type] = STATE(4482), - [sym_generic_type] = STATE(4482), - [sym_type_query] = STATE(4482), - [sym_index_type_query] = STATE(4482), - [sym_lookup_type] = STATE(4482), - [sym_literal_type] = STATE(4482), - [sym__number] = STATE(4473), - [sym_existential_type] = STATE(4482), - [sym_flow_maybe_type] = STATE(4482), - [sym_parenthesized_type] = STATE(4482), - [sym_predefined_type] = STATE(4482), - [sym_object_type] = STATE(4482), - [sym_type_parameters] = STATE(7119), - [sym_array_type] = STATE(4482), - [sym_tuple_type] = STATE(4482), - [sym_readonly_type] = STATE(4457), - [sym_union_type] = STATE(4482), - [sym_intersection_type] = STATE(4482), - [sym_function_type] = STATE(4457), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3745), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_typeof] = ACTIONS(3749), - [anon_sym_const] = ACTIONS(3751), - [anon_sym_LPAREN] = ACTIONS(3753), - [anon_sym_LBRACK] = ACTIONS(3755), - [anon_sym_DQUOTE] = ACTIONS(3757), - [anon_sym_SQUOTE] = ACTIONS(3759), - [anon_sym_new] = ACTIONS(3761), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3767), - [anon_sym_DASH] = ACTIONS(3767), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3769), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3771), - [sym_number] = ACTIONS(3773), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3773), - [sym_false] = ACTIONS(3773), - [sym_null] = ACTIONS(3773), - [sym_undefined] = ACTIONS(3773), - [anon_sym_readonly] = ACTIONS(3777), - [anon_sym_QMARK] = ACTIONS(3779), - [anon_sym_any] = ACTIONS(3769), - [anon_sym_number] = ACTIONS(3769), - [anon_sym_boolean] = ACTIONS(3769), - [anon_sym_string] = ACTIONS(3769), - [anon_sym_symbol] = ACTIONS(3769), - [anon_sym_object] = ACTIONS(3769), - [anon_sym_abstract] = ACTIONS(3781), - [anon_sym_infer] = ACTIONS(3785), - [anon_sym_keyof] = ACTIONS(3787), - [anon_sym_unique] = ACTIONS(3789), - [anon_sym_unknown] = ACTIONS(3769), - [anon_sym_never] = ACTIONS(3769), - [anon_sym_LBRACE_PIPE] = ACTIONS(3747), - [sym_html_comment] = ACTIONS(5), - }, - [1940] = { - [sym_nested_identifier] = STATE(7189), - [sym_string] = STATE(4340), - [sym_comment] = STATE(1940), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(4262), - [sym__type] = STATE(6253), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(4379), - [sym_template_literal_type] = STATE(4482), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(4482), - [sym_generic_type] = STATE(4482), - [sym_type_query] = STATE(4482), - [sym_index_type_query] = STATE(4482), - [sym_lookup_type] = STATE(4482), - [sym_literal_type] = STATE(4482), - [sym__number] = STATE(4473), - [sym_existential_type] = STATE(4482), - [sym_flow_maybe_type] = STATE(4482), - [sym_parenthesized_type] = STATE(4482), - [sym_predefined_type] = STATE(4482), - [sym_object_type] = STATE(4482), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(4482), - [sym_tuple_type] = STATE(4482), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(4482), - [sym_intersection_type] = STATE(4482), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3745), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_typeof] = ACTIONS(3749), - [anon_sym_const] = ACTIONS(3751), - [anon_sym_LPAREN] = ACTIONS(3753), - [anon_sym_LBRACK] = ACTIONS(3755), - [anon_sym_DQUOTE] = ACTIONS(3757), - [anon_sym_SQUOTE] = ACTIONS(3759), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3767), - [anon_sym_DASH] = ACTIONS(3767), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3769), + [anon_sym_void] = ACTIONS(3949), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3771), - [sym_number] = ACTIONS(3773), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3773), - [sym_false] = ACTIONS(3773), - [sym_null] = ACTIONS(3773), - [sym_undefined] = ACTIONS(3773), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(3779), - [anon_sym_any] = ACTIONS(3769), - [anon_sym_number] = ACTIONS(3769), - [anon_sym_boolean] = ACTIONS(3769), - [anon_sym_string] = ACTIONS(3769), - [anon_sym_symbol] = ACTIONS(3769), - [anon_sym_object] = ACTIONS(3769), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(3787), - [anon_sym_unique] = ACTIONS(3789), - [anon_sym_unknown] = ACTIONS(3769), - [anon_sym_never] = ACTIONS(3769), - [anon_sym_LBRACE_PIPE] = ACTIONS(3747), - [sym_html_comment] = ACTIONS(5), - }, - [1941] = { - [sym_nested_identifier] = STATE(7157), - [sym_string] = STATE(2499), - [sym_comment] = STATE(1941), - [sym_formal_parameters] = STATE(7383), - [sym_nested_type_identifier] = STATE(2449), - [sym__type] = STATE(2524), - [sym_constructor_type] = STATE(2482), - [sym__primary_type] = STATE(2493), - [sym_template_literal_type] = STATE(2467), - [sym_infer_type] = STATE(2482), - [sym_conditional_type] = STATE(2467), - [sym_generic_type] = STATE(2467), - [sym_type_query] = STATE(2467), - [sym_index_type_query] = STATE(2467), - [sym_lookup_type] = STATE(2467), - [sym_literal_type] = STATE(2467), - [sym__number] = STATE(2576), - [sym_existential_type] = STATE(2467), - [sym_flow_maybe_type] = STATE(2467), - [sym_parenthesized_type] = STATE(2467), - [sym_predefined_type] = STATE(2467), - [sym_object_type] = STATE(2467), - [sym_type_parameters] = STATE(7072), - [sym_array_type] = STATE(2467), - [sym_tuple_type] = STATE(2467), - [sym_readonly_type] = STATE(2482), - [sym_union_type] = STATE(2467), - [sym_intersection_type] = STATE(2467), - [sym_function_type] = STATE(2482), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_typeof] = ACTIONS(3929), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3945), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3947), - [sym_number] = ACTIONS(3949), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3949), - [sym_false] = ACTIONS(3949), - [sym_null] = ACTIONS(3949), - [sym_undefined] = ACTIONS(3949), - [anon_sym_readonly] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_any] = ACTIONS(3945), - [anon_sym_number] = ACTIONS(3945), - [anon_sym_boolean] = ACTIONS(3945), - [anon_sym_string] = ACTIONS(3945), - [anon_sym_symbol] = ACTIONS(3945), - [anon_sym_object] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(3957), - [anon_sym_infer] = ACTIONS(3961), - [anon_sym_keyof] = ACTIONS(3963), - [anon_sym_unique] = ACTIONS(3965), - [anon_sym_unknown] = ACTIONS(3945), - [anon_sym_never] = ACTIONS(3945), - [anon_sym_LBRACE_PIPE] = ACTIONS(3927), - [sym_html_comment] = ACTIONS(5), - }, - [1942] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1942), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5298), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_html_comment] = ACTIONS(5), + }, + [1808] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1808), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3844), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -220512,52 +209088,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1943] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1943), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(4257), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [1809] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1809), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5343), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -220567,68 +209143,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1944] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1944), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(4227), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1810] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1810), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5354), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -220638,352 +209214,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1945] = { - [sym_nested_identifier] = STATE(7189), - [sym_string] = STATE(4340), - [sym_comment] = STATE(1945), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(4262), - [sym__type] = STATE(6253), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(4377), - [sym_template_literal_type] = STATE(4482), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(4482), - [sym_generic_type] = STATE(4482), - [sym_type_query] = STATE(4482), - [sym_index_type_query] = STATE(4482), - [sym_lookup_type] = STATE(4482), - [sym_literal_type] = STATE(4482), - [sym__number] = STATE(4473), - [sym_existential_type] = STATE(4482), - [sym_flow_maybe_type] = STATE(4482), - [sym_parenthesized_type] = STATE(4482), - [sym_predefined_type] = STATE(4482), - [sym_object_type] = STATE(4482), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(4482), - [sym_tuple_type] = STATE(4482), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(4482), - [sym_intersection_type] = STATE(4482), - [sym_function_type] = STATE(3975), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1811] = { + [sym_nested_identifier] = STATE(7198), + [sym_string] = STATE(2867), + [sym_comment] = STATE(1811), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(2711), + [sym__type] = STATE(2946), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2842), + [sym_template_literal_type] = STATE(2841), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2841), + [sym_generic_type] = STATE(2841), + [sym_type_query] = STATE(2841), + [sym_index_type_query] = STATE(2841), + [sym_lookup_type] = STATE(2841), + [sym_literal_type] = STATE(2841), + [sym__number] = STATE(2835), + [sym_existential_type] = STATE(2841), + [sym_flow_maybe_type] = STATE(2841), + [sym_parenthesized_type] = STATE(2841), + [sym_predefined_type] = STATE(2841), + [sym_object_type] = STATE(2841), + [sym_type_parameters] = STATE(6539), + [sym_array_type] = STATE(2841), + [sym_tuple_type] = STATE(2841), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2841), + [sym_intersection_type] = STATE(2841), + [sym_function_type] = STATE(2843), [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3745), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_typeof] = ACTIONS(3749), - [anon_sym_const] = ACTIONS(3751), - [anon_sym_LPAREN] = ACTIONS(3753), - [anon_sym_LBRACK] = ACTIONS(3755), - [anon_sym_DQUOTE] = ACTIONS(3757), - [anon_sym_SQUOTE] = ACTIONS(3759), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3767), - [anon_sym_DASH] = ACTIONS(3767), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3769), + [anon_sym_void] = ACTIONS(3949), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3771), - [sym_number] = ACTIONS(3773), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3773), - [sym_false] = ACTIONS(3773), - [sym_null] = ACTIONS(3773), - [sym_undefined] = ACTIONS(3773), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_html_comment] = ACTIONS(5), + }, + [1812] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1812), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5456), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(1957), + [anon_sym_STAR] = ACTIONS(113), + [anon_sym_LBRACE] = ACTIONS(208), + [anon_sym_typeof] = ACTIONS(1959), + [anon_sym_const] = ACTIONS(131), + [anon_sym_LPAREN] = ACTIONS(1961), + [anon_sym_LBRACK] = ACTIONS(1963), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(164), + [anon_sym_PIPE] = ACTIONS(166), + [anon_sym_PLUS] = ACTIONS(1971), + [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(206), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(3779), - [anon_sym_any] = ACTIONS(3769), - [anon_sym_number] = ACTIONS(3769), - [anon_sym_boolean] = ACTIONS(3769), - [anon_sym_string] = ACTIONS(3769), - [anon_sym_symbol] = ACTIONS(3769), - [anon_sym_object] = ACTIONS(3769), + [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(3787), - [anon_sym_unique] = ACTIONS(3789), - [anon_sym_unknown] = ACTIONS(3769), - [anon_sym_never] = ACTIONS(3769), - [anon_sym_LBRACE_PIPE] = ACTIONS(3747), - [sym_html_comment] = ACTIONS(5), - }, - [1946] = { - [sym_nested_identifier] = STATE(7189), - [sym_string] = STATE(4340), - [sym_comment] = STATE(1946), - [sym_formal_parameters] = STATE(7503), - [sym_nested_type_identifier] = STATE(4262), - [sym__type] = STATE(4376), - [sym_constructor_type] = STATE(4457), - [sym__primary_type] = STATE(4489), - [sym_template_literal_type] = STATE(4482), - [sym_infer_type] = STATE(4457), - [sym_conditional_type] = STATE(4482), - [sym_generic_type] = STATE(4482), - [sym_type_query] = STATE(4482), - [sym_index_type_query] = STATE(4482), - [sym_lookup_type] = STATE(4482), - [sym_literal_type] = STATE(4482), - [sym__number] = STATE(4473), - [sym_existential_type] = STATE(4482), - [sym_flow_maybe_type] = STATE(4482), - [sym_parenthesized_type] = STATE(4482), - [sym_predefined_type] = STATE(4482), - [sym_object_type] = STATE(4482), - [sym_type_parameters] = STATE(7119), - [sym_array_type] = STATE(4482), - [sym_tuple_type] = STATE(4482), - [sym_readonly_type] = STATE(4457), - [sym_union_type] = STATE(4482), - [sym_intersection_type] = STATE(4482), - [sym_function_type] = STATE(4457), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3745), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_typeof] = ACTIONS(3749), - [anon_sym_const] = ACTIONS(3751), - [anon_sym_LPAREN] = ACTIONS(3753), - [anon_sym_LBRACK] = ACTIONS(3755), - [anon_sym_DQUOTE] = ACTIONS(3757), - [anon_sym_SQUOTE] = ACTIONS(3759), - [anon_sym_new] = ACTIONS(3761), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3767), - [anon_sym_DASH] = ACTIONS(3767), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3769), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3771), - [sym_number] = ACTIONS(3773), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3773), - [sym_false] = ACTIONS(3773), - [sym_null] = ACTIONS(3773), - [sym_undefined] = ACTIONS(3773), - [anon_sym_readonly] = ACTIONS(3777), - [anon_sym_QMARK] = ACTIONS(3779), - [anon_sym_any] = ACTIONS(3769), - [anon_sym_number] = ACTIONS(3769), - [anon_sym_boolean] = ACTIONS(3769), - [anon_sym_string] = ACTIONS(3769), - [anon_sym_symbol] = ACTIONS(3769), - [anon_sym_object] = ACTIONS(3769), - [anon_sym_abstract] = ACTIONS(3781), - [anon_sym_infer] = ACTIONS(3785), - [anon_sym_keyof] = ACTIONS(3787), - [anon_sym_unique] = ACTIONS(3789), - [anon_sym_unknown] = ACTIONS(3769), - [anon_sym_never] = ACTIONS(3769), - [anon_sym_LBRACE_PIPE] = ACTIONS(3747), - [sym_html_comment] = ACTIONS(5), - }, - [1947] = { - [sym_nested_identifier] = STATE(7189), - [sym_string] = STATE(4340), - [sym_comment] = STATE(1947), - [sym_formal_parameters] = STATE(7503), - [sym_nested_type_identifier] = STATE(4262), - [sym__type] = STATE(4372), - [sym_constructor_type] = STATE(4457), - [sym__primary_type] = STATE(4489), - [sym_template_literal_type] = STATE(4482), - [sym_infer_type] = STATE(4457), - [sym_conditional_type] = STATE(4482), - [sym_generic_type] = STATE(4482), - [sym_type_query] = STATE(4482), - [sym_index_type_query] = STATE(4482), - [sym_lookup_type] = STATE(4482), - [sym_literal_type] = STATE(4482), - [sym__number] = STATE(4473), - [sym_existential_type] = STATE(4482), - [sym_flow_maybe_type] = STATE(4482), - [sym_parenthesized_type] = STATE(4482), - [sym_predefined_type] = STATE(4482), - [sym_object_type] = STATE(4482), - [sym_type_parameters] = STATE(7119), - [sym_array_type] = STATE(4482), - [sym_tuple_type] = STATE(4482), - [sym_readonly_type] = STATE(4457), - [sym_union_type] = STATE(4482), - [sym_intersection_type] = STATE(4482), - [sym_function_type] = STATE(4457), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3745), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_typeof] = ACTIONS(3749), - [anon_sym_const] = ACTIONS(3751), - [anon_sym_LPAREN] = ACTIONS(3753), - [anon_sym_LBRACK] = ACTIONS(3755), - [anon_sym_DQUOTE] = ACTIONS(3757), - [anon_sym_SQUOTE] = ACTIONS(3759), - [anon_sym_new] = ACTIONS(3761), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3767), - [anon_sym_DASH] = ACTIONS(3767), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3769), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3771), - [sym_number] = ACTIONS(3773), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3773), - [sym_false] = ACTIONS(3773), - [sym_null] = ACTIONS(3773), - [sym_undefined] = ACTIONS(3773), - [anon_sym_readonly] = ACTIONS(3777), - [anon_sym_QMARK] = ACTIONS(3779), - [anon_sym_any] = ACTIONS(3769), - [anon_sym_number] = ACTIONS(3769), - [anon_sym_boolean] = ACTIONS(3769), - [anon_sym_string] = ACTIONS(3769), - [anon_sym_symbol] = ACTIONS(3769), - [anon_sym_object] = ACTIONS(3769), - [anon_sym_abstract] = ACTIONS(3781), - [anon_sym_infer] = ACTIONS(3785), - [anon_sym_keyof] = ACTIONS(3787), - [anon_sym_unique] = ACTIONS(3789), - [anon_sym_unknown] = ACTIONS(3769), - [anon_sym_never] = ACTIONS(3769), - [anon_sym_LBRACE_PIPE] = ACTIONS(3747), - [sym_html_comment] = ACTIONS(5), - }, - [1948] = { - [sym_nested_identifier] = STATE(7189), - [sym_string] = STATE(4340), - [sym_comment] = STATE(1948), - [sym_formal_parameters] = STATE(7503), - [sym_nested_type_identifier] = STATE(4262), - [sym__type] = STATE(4371), - [sym_constructor_type] = STATE(4457), - [sym__primary_type] = STATE(4489), - [sym_template_literal_type] = STATE(4482), - [sym_infer_type] = STATE(4457), - [sym_conditional_type] = STATE(4482), - [sym_generic_type] = STATE(4482), - [sym_type_query] = STATE(4482), - [sym_index_type_query] = STATE(4482), - [sym_lookup_type] = STATE(4482), - [sym_literal_type] = STATE(4482), - [sym__number] = STATE(4473), - [sym_existential_type] = STATE(4482), - [sym_flow_maybe_type] = STATE(4482), - [sym_parenthesized_type] = STATE(4482), - [sym_predefined_type] = STATE(4482), - [sym_object_type] = STATE(4482), - [sym_type_parameters] = STATE(7119), - [sym_array_type] = STATE(4482), - [sym_tuple_type] = STATE(4482), - [sym_readonly_type] = STATE(4457), - [sym_union_type] = STATE(4482), - [sym_intersection_type] = STATE(4482), - [sym_function_type] = STATE(4457), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3745), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_typeof] = ACTIONS(3749), - [anon_sym_const] = ACTIONS(3751), - [anon_sym_LPAREN] = ACTIONS(3753), - [anon_sym_LBRACK] = ACTIONS(3755), - [anon_sym_DQUOTE] = ACTIONS(3757), - [anon_sym_SQUOTE] = ACTIONS(3759), - [anon_sym_new] = ACTIONS(3761), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3767), - [anon_sym_DASH] = ACTIONS(3767), + [anon_sym_keyof] = ACTIONS(202), + [anon_sym_unique] = ACTIONS(204), + [anon_sym_unknown] = ACTIONS(206), + [anon_sym_never] = ACTIONS(206), + [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [sym_html_comment] = ACTIONS(5), + }, + [1813] = { + [sym_nested_identifier] = STATE(6973), + [sym_string] = STATE(2430), + [sym_comment] = STATE(1813), + [sym_formal_parameters] = STATE(7150), + [sym_nested_type_identifier] = STATE(2302), + [sym__type] = STATE(2421), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2427), + [sym_template_literal_type] = STATE(2426), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2426), + [sym_generic_type] = STATE(2426), + [sym_type_query] = STATE(2426), + [sym_index_type_query] = STATE(2426), + [sym_lookup_type] = STATE(2426), + [sym_literal_type] = STATE(2426), + [sym__number] = STATE(2422), + [sym_existential_type] = STATE(2426), + [sym_flow_maybe_type] = STATE(2426), + [sym_parenthesized_type] = STATE(2426), + [sym_predefined_type] = STATE(2426), + [sym_object_type] = STATE(2426), + [sym_type_parameters] = STATE(6889), + [sym_array_type] = STATE(2426), + [sym_tuple_type] = STATE(2426), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2426), + [sym_intersection_type] = STATE(2426), + [sym_function_type] = STATE(2428), + [sym_identifier] = ACTIONS(4135), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(4147), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3769), + [anon_sym_void] = ACTIONS(3905), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3771), - [sym_number] = ACTIONS(3773), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3773), - [sym_false] = ACTIONS(3773), - [sym_null] = ACTIONS(3773), - [sym_undefined] = ACTIONS(3773), - [anon_sym_readonly] = ACTIONS(3777), - [anon_sym_QMARK] = ACTIONS(3779), - [anon_sym_any] = ACTIONS(3769), - [anon_sym_number] = ACTIONS(3769), - [anon_sym_boolean] = ACTIONS(3769), - [anon_sym_string] = ACTIONS(3769), - [anon_sym_symbol] = ACTIONS(3769), - [anon_sym_object] = ACTIONS(3769), - [anon_sym_abstract] = ACTIONS(3781), - [anon_sym_infer] = ACTIONS(3785), - [anon_sym_keyof] = ACTIONS(3787), - [anon_sym_unique] = ACTIONS(3789), - [anon_sym_unknown] = ACTIONS(3769), - [anon_sym_never] = ACTIONS(3769), - [anon_sym_LBRACE_PIPE] = ACTIONS(3747), - [sym_html_comment] = ACTIONS(5), - }, - [1949] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1949), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(4517), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), + [sym_this] = ACTIONS(4137), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_html_comment] = ACTIONS(5), + }, + [1814] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1814), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5032), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -220993,194 +209498,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1950] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1950), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(5195), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1815] = { + [sym_nested_identifier] = STATE(6973), + [sym_string] = STATE(2430), + [sym_comment] = STATE(1815), + [sym_formal_parameters] = STATE(7150), + [sym_nested_type_identifier] = STATE(2302), + [sym__type] = STATE(2346), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2427), + [sym_template_literal_type] = STATE(2426), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2426), + [sym_generic_type] = STATE(2426), + [sym_type_query] = STATE(2426), + [sym_index_type_query] = STATE(2426), + [sym_lookup_type] = STATE(2426), + [sym_literal_type] = STATE(2426), + [sym__number] = STATE(2422), + [sym_existential_type] = STATE(2426), + [sym_flow_maybe_type] = STATE(2426), + [sym_parenthesized_type] = STATE(2426), + [sym_predefined_type] = STATE(2426), + [sym_object_type] = STATE(2426), + [sym_type_parameters] = STATE(6889), + [sym_array_type] = STATE(2426), + [sym_tuple_type] = STATE(2426), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2426), + [sym_intersection_type] = STATE(2426), + [sym_function_type] = STATE(2428), + [sym_identifier] = ACTIONS(4135), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(3905), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1951] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1951), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(5474), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), + [sym_this] = ACTIONS(4137), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_html_comment] = ACTIONS(5), + }, + [1816] = { + [sym_nested_identifier] = STATE(7006), + [sym_string] = STATE(4247), + [sym_comment] = STATE(1816), + [sym_formal_parameters] = STATE(7134), + [sym_nested_type_identifier] = STATE(4103), + [sym__type] = STATE(4310), + [sym_constructor_type] = STATE(4153), + [sym__primary_type] = STATE(4154), + [sym_template_literal_type] = STATE(4155), + [sym_infer_type] = STATE(4153), + [sym_conditional_type] = STATE(4155), + [sym_generic_type] = STATE(4155), + [sym_type_query] = STATE(4155), + [sym_index_type_query] = STATE(4155), + [sym_lookup_type] = STATE(4155), + [sym_literal_type] = STATE(4155), + [sym__number] = STATE(4156), + [sym_existential_type] = STATE(4155), + [sym_flow_maybe_type] = STATE(4155), + [sym_parenthesized_type] = STATE(4155), + [sym_predefined_type] = STATE(4155), + [sym_object_type] = STATE(4155), + [sym_type_parameters] = STATE(6916), + [sym_array_type] = STATE(4155), + [sym_tuple_type] = STATE(4155), + [sym_readonly_type] = STATE(4153), + [sym_union_type] = STATE(4155), + [sym_intersection_type] = STATE(4155), + [sym_function_type] = STATE(4153), + [sym_identifier] = ACTIONS(4143), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_typeof] = ACTIONS(3747), + [anon_sym_const] = ACTIONS(3749), + [anon_sym_LPAREN] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3755), + [anon_sym_SQUOTE] = ACTIONS(3757), + [anon_sym_new] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_PIPE] = ACTIONS(3763), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1952] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1952), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5683), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [anon_sym_void] = ACTIONS(3767), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3769), + [sym_number] = ACTIONS(3771), + [sym_this] = ACTIONS(4145), + [sym_true] = ACTIONS(3771), + [sym_false] = ACTIONS(3771), + [sym_null] = ACTIONS(3771), + [sym_undefined] = ACTIONS(3771), + [anon_sym_readonly] = ACTIONS(3775), + [anon_sym_QMARK] = ACTIONS(3777), + [anon_sym_any] = ACTIONS(3767), + [anon_sym_number] = ACTIONS(3767), + [anon_sym_boolean] = ACTIONS(3767), + [anon_sym_string] = ACTIONS(3767), + [anon_sym_symbol] = ACTIONS(3767), + [anon_sym_object] = ACTIONS(3767), + [anon_sym_abstract] = ACTIONS(3779), + [anon_sym_infer] = ACTIONS(3783), + [anon_sym_keyof] = ACTIONS(3785), + [anon_sym_unique] = ACTIONS(3787), + [anon_sym_unknown] = ACTIONS(3767), + [anon_sym_never] = ACTIONS(3767), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [sym_html_comment] = ACTIONS(5), + }, + [1817] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1817), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5144), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -221222,249 +209727,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1953] = { - [sym_nested_identifier] = STATE(7189), - [sym_string] = STATE(4340), - [sym_comment] = STATE(1953), - [sym_formal_parameters] = STATE(7503), - [sym_nested_type_identifier] = STATE(4262), - [sym__type] = STATE(4428), - [sym_constructor_type] = STATE(4457), - [sym__primary_type] = STATE(4489), - [sym_template_literal_type] = STATE(4482), - [sym_infer_type] = STATE(4457), - [sym_conditional_type] = STATE(4482), - [sym_generic_type] = STATE(4482), - [sym_type_query] = STATE(4482), - [sym_index_type_query] = STATE(4482), - [sym_lookup_type] = STATE(4482), - [sym_literal_type] = STATE(4482), - [sym__number] = STATE(4473), - [sym_existential_type] = STATE(4482), - [sym_flow_maybe_type] = STATE(4482), - [sym_parenthesized_type] = STATE(4482), - [sym_predefined_type] = STATE(4482), - [sym_object_type] = STATE(4482), - [sym_type_parameters] = STATE(7119), - [sym_array_type] = STATE(4482), - [sym_tuple_type] = STATE(4482), - [sym_readonly_type] = STATE(4457), - [sym_union_type] = STATE(4482), - [sym_intersection_type] = STATE(4482), - [sym_function_type] = STATE(4457), + [1818] = { + [sym_nested_identifier] = STATE(7198), + [sym_string] = STATE(2867), + [sym_comment] = STATE(1818), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(2711), + [sym__type] = STATE(2944), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2842), + [sym_template_literal_type] = STATE(2841), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2841), + [sym_generic_type] = STATE(2841), + [sym_type_query] = STATE(2841), + [sym_index_type_query] = STATE(2841), + [sym_lookup_type] = STATE(2841), + [sym_literal_type] = STATE(2841), + [sym__number] = STATE(2835), + [sym_existential_type] = STATE(2841), + [sym_flow_maybe_type] = STATE(2841), + [sym_parenthesized_type] = STATE(2841), + [sym_predefined_type] = STATE(2841), + [sym_object_type] = STATE(2841), + [sym_type_parameters] = STATE(6539), + [sym_array_type] = STATE(2841), + [sym_tuple_type] = STATE(2841), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2841), + [sym_intersection_type] = STATE(2841), + [sym_function_type] = STATE(2843), [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3745), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_typeof] = ACTIONS(3749), - [anon_sym_const] = ACTIONS(3751), - [anon_sym_LPAREN] = ACTIONS(3753), - [anon_sym_LBRACK] = ACTIONS(3755), - [anon_sym_DQUOTE] = ACTIONS(3757), - [anon_sym_SQUOTE] = ACTIONS(3759), - [anon_sym_new] = ACTIONS(3761), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3767), - [anon_sym_DASH] = ACTIONS(3767), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3769), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3771), - [sym_number] = ACTIONS(3773), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3773), - [sym_false] = ACTIONS(3773), - [sym_null] = ACTIONS(3773), - [sym_undefined] = ACTIONS(3773), - [anon_sym_readonly] = ACTIONS(3777), - [anon_sym_QMARK] = ACTIONS(3779), - [anon_sym_any] = ACTIONS(3769), - [anon_sym_number] = ACTIONS(3769), - [anon_sym_boolean] = ACTIONS(3769), - [anon_sym_string] = ACTIONS(3769), - [anon_sym_symbol] = ACTIONS(3769), - [anon_sym_object] = ACTIONS(3769), - [anon_sym_abstract] = ACTIONS(3781), - [anon_sym_infer] = ACTIONS(3785), - [anon_sym_keyof] = ACTIONS(3787), - [anon_sym_unique] = ACTIONS(3789), - [anon_sym_unknown] = ACTIONS(3769), - [anon_sym_never] = ACTIONS(3769), - [anon_sym_LBRACE_PIPE] = ACTIONS(3747), - [sym_html_comment] = ACTIONS(5), - }, - [1954] = { - [sym_nested_identifier] = STATE(7360), - [sym_string] = STATE(3048), - [sym_comment] = STATE(1954), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(2840), - [sym__type] = STATE(6210), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(2956), - [sym_template_literal_type] = STATE(3036), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3036), - [sym_generic_type] = STATE(3036), - [sym_type_query] = STATE(3036), - [sym_index_type_query] = STATE(3036), - [sym_lookup_type] = STATE(3036), - [sym_literal_type] = STATE(3036), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3036), - [sym_flow_maybe_type] = STATE(3036), - [sym_parenthesized_type] = STATE(3036), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(3036), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3036), - [sym_tuple_type] = STATE(3036), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3036), - [sym_intersection_type] = STATE(3036), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(4131), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3883), - [anon_sym_typeof] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3891), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3901), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3903), - [sym_number] = ACTIONS(3905), - [sym_this] = ACTIONS(4133), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_null] = ACTIONS(3905), - [sym_undefined] = ACTIONS(3905), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_any] = ACTIONS(3901), - [anon_sym_number] = ACTIONS(3901), - [anon_sym_boolean] = ACTIONS(3901), - [anon_sym_string] = ACTIONS(3901), - [anon_sym_symbol] = ACTIONS(3901), - [anon_sym_object] = ACTIONS(3901), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(3919), - [anon_sym_unique] = ACTIONS(3921), - [anon_sym_unknown] = ACTIONS(3901), - [anon_sym_never] = ACTIONS(3901), - [anon_sym_LBRACE_PIPE] = ACTIONS(3883), - [sym_html_comment] = ACTIONS(5), - }, - [1955] = { - [sym_nested_identifier] = STATE(7189), - [sym_string] = STATE(4340), - [sym_comment] = STATE(1955), - [sym_formal_parameters] = STATE(7503), - [sym_nested_type_identifier] = STATE(4262), - [sym__type] = STATE(4469), - [sym_constructor_type] = STATE(4457), - [sym__primary_type] = STATE(4489), - [sym_template_literal_type] = STATE(4482), - [sym_infer_type] = STATE(4457), - [sym_conditional_type] = STATE(4482), - [sym_generic_type] = STATE(4482), - [sym_type_query] = STATE(4482), - [sym_index_type_query] = STATE(4482), - [sym_lookup_type] = STATE(4482), - [sym_literal_type] = STATE(4482), - [sym__number] = STATE(4473), - [sym_existential_type] = STATE(4482), - [sym_flow_maybe_type] = STATE(4482), - [sym_parenthesized_type] = STATE(4482), - [sym_predefined_type] = STATE(4482), - [sym_object_type] = STATE(4482), - [sym_type_parameters] = STATE(7119), - [sym_array_type] = STATE(4482), - [sym_tuple_type] = STATE(4482), - [sym_readonly_type] = STATE(4457), - [sym_union_type] = STATE(4482), - [sym_intersection_type] = STATE(4482), - [sym_function_type] = STATE(4457), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3745), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_typeof] = ACTIONS(3749), - [anon_sym_const] = ACTIONS(3751), - [anon_sym_LPAREN] = ACTIONS(3753), - [anon_sym_LBRACK] = ACTIONS(3755), - [anon_sym_DQUOTE] = ACTIONS(3757), - [anon_sym_SQUOTE] = ACTIONS(3759), - [anon_sym_new] = ACTIONS(3761), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3767), - [anon_sym_DASH] = ACTIONS(3767), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3769), + [anon_sym_void] = ACTIONS(3949), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3771), - [sym_number] = ACTIONS(3773), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3773), - [sym_false] = ACTIONS(3773), - [sym_null] = ACTIONS(3773), - [sym_undefined] = ACTIONS(3773), - [anon_sym_readonly] = ACTIONS(3777), - [anon_sym_QMARK] = ACTIONS(3779), - [anon_sym_any] = ACTIONS(3769), - [anon_sym_number] = ACTIONS(3769), - [anon_sym_boolean] = ACTIONS(3769), - [anon_sym_string] = ACTIONS(3769), - [anon_sym_symbol] = ACTIONS(3769), - [anon_sym_object] = ACTIONS(3769), - [anon_sym_abstract] = ACTIONS(3781), - [anon_sym_infer] = ACTIONS(3785), - [anon_sym_keyof] = ACTIONS(3787), - [anon_sym_unique] = ACTIONS(3789), - [anon_sym_unknown] = ACTIONS(3769), - [anon_sym_never] = ACTIONS(3769), - [anon_sym_LBRACE_PIPE] = ACTIONS(3747), - [sym_html_comment] = ACTIONS(5), - }, - [1956] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1956), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4861), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_html_comment] = ACTIONS(5), + }, + [1819] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1819), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5519), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -221506,478 +209869,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1957] = { - [sym_nested_identifier] = STATE(7157), - [sym_string] = STATE(2499), - [sym_comment] = STATE(1957), - [sym_formal_parameters] = STATE(7383), - [sym_nested_type_identifier] = STATE(2449), - [sym__type] = STATE(2526), - [sym_constructor_type] = STATE(2482), - [sym__primary_type] = STATE(2493), - [sym_template_literal_type] = STATE(2467), - [sym_infer_type] = STATE(2482), - [sym_conditional_type] = STATE(2467), - [sym_generic_type] = STATE(2467), - [sym_type_query] = STATE(2467), - [sym_index_type_query] = STATE(2467), - [sym_lookup_type] = STATE(2467), - [sym_literal_type] = STATE(2467), - [sym__number] = STATE(2576), - [sym_existential_type] = STATE(2467), - [sym_flow_maybe_type] = STATE(2467), - [sym_parenthesized_type] = STATE(2467), - [sym_predefined_type] = STATE(2467), - [sym_object_type] = STATE(2467), - [sym_type_parameters] = STATE(7072), - [sym_array_type] = STATE(2467), - [sym_tuple_type] = STATE(2467), - [sym_readonly_type] = STATE(2482), - [sym_union_type] = STATE(2467), - [sym_intersection_type] = STATE(2467), - [sym_function_type] = STATE(2482), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_typeof] = ACTIONS(3929), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3945), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3947), - [sym_number] = ACTIONS(3949), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3949), - [sym_false] = ACTIONS(3949), - [sym_null] = ACTIONS(3949), - [sym_undefined] = ACTIONS(3949), - [anon_sym_readonly] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_any] = ACTIONS(3945), - [anon_sym_number] = ACTIONS(3945), - [anon_sym_boolean] = ACTIONS(3945), - [anon_sym_string] = ACTIONS(3945), - [anon_sym_symbol] = ACTIONS(3945), - [anon_sym_object] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(3957), - [anon_sym_infer] = ACTIONS(3961), - [anon_sym_keyof] = ACTIONS(3963), - [anon_sym_unique] = ACTIONS(3965), - [anon_sym_unknown] = ACTIONS(3945), - [anon_sym_never] = ACTIONS(3945), - [anon_sym_LBRACE_PIPE] = ACTIONS(3927), - [sym_html_comment] = ACTIONS(5), - }, - [1958] = { - [sym_nested_identifier] = STATE(7157), - [sym_string] = STATE(2499), - [sym_comment] = STATE(1958), - [sym_formal_parameters] = STATE(7383), - [sym_nested_type_identifier] = STATE(2449), - [sym__type] = STATE(2523), - [sym_constructor_type] = STATE(2482), - [sym__primary_type] = STATE(2493), - [sym_template_literal_type] = STATE(2467), - [sym_infer_type] = STATE(2482), - [sym_conditional_type] = STATE(2467), - [sym_generic_type] = STATE(2467), - [sym_type_query] = STATE(2467), - [sym_index_type_query] = STATE(2467), - [sym_lookup_type] = STATE(2467), - [sym_literal_type] = STATE(2467), - [sym__number] = STATE(2576), - [sym_existential_type] = STATE(2467), - [sym_flow_maybe_type] = STATE(2467), - [sym_parenthesized_type] = STATE(2467), - [sym_predefined_type] = STATE(2467), - [sym_object_type] = STATE(2467), - [sym_type_parameters] = STATE(7072), - [sym_array_type] = STATE(2467), - [sym_tuple_type] = STATE(2467), - [sym_readonly_type] = STATE(2482), - [sym_union_type] = STATE(2467), - [sym_intersection_type] = STATE(2467), - [sym_function_type] = STATE(2482), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_typeof] = ACTIONS(3929), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3945), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3947), - [sym_number] = ACTIONS(3949), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3949), - [sym_false] = ACTIONS(3949), - [sym_null] = ACTIONS(3949), - [sym_undefined] = ACTIONS(3949), - [anon_sym_readonly] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_any] = ACTIONS(3945), - [anon_sym_number] = ACTIONS(3945), - [anon_sym_boolean] = ACTIONS(3945), - [anon_sym_string] = ACTIONS(3945), - [anon_sym_symbol] = ACTIONS(3945), - [anon_sym_object] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(3957), - [anon_sym_infer] = ACTIONS(3961), - [anon_sym_keyof] = ACTIONS(3963), - [anon_sym_unique] = ACTIONS(3965), - [anon_sym_unknown] = ACTIONS(3945), - [anon_sym_never] = ACTIONS(3945), - [anon_sym_LBRACE_PIPE] = ACTIONS(3927), - [sym_html_comment] = ACTIONS(5), - }, - [1959] = { - [sym_nested_identifier] = STATE(7360), - [sym_string] = STATE(3048), - [sym_comment] = STATE(1959), - [sym_formal_parameters] = STATE(7424), - [sym_nested_type_identifier] = STATE(2840), - [sym__type] = STATE(2996), - [sym_constructor_type] = STATE(3044), - [sym__primary_type] = STATE(3039), - [sym_template_literal_type] = STATE(3036), - [sym_infer_type] = STATE(3044), - [sym_conditional_type] = STATE(3036), - [sym_generic_type] = STATE(3036), - [sym_type_query] = STATE(3036), - [sym_index_type_query] = STATE(3036), - [sym_lookup_type] = STATE(3036), - [sym_literal_type] = STATE(3036), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3036), - [sym_flow_maybe_type] = STATE(3036), - [sym_parenthesized_type] = STATE(3036), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(3036), - [sym_type_parameters] = STATE(6722), - [sym_array_type] = STATE(3036), - [sym_tuple_type] = STATE(3036), - [sym_readonly_type] = STATE(3044), - [sym_union_type] = STATE(3036), - [sym_intersection_type] = STATE(3036), - [sym_function_type] = STATE(3044), - [sym_identifier] = ACTIONS(4131), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3883), - [anon_sym_typeof] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3891), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3901), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3903), - [sym_number] = ACTIONS(3905), - [sym_this] = ACTIONS(4133), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_null] = ACTIONS(3905), - [sym_undefined] = ACTIONS(3905), - [anon_sym_readonly] = ACTIONS(3909), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_any] = ACTIONS(3901), - [anon_sym_number] = ACTIONS(3901), - [anon_sym_boolean] = ACTIONS(3901), - [anon_sym_string] = ACTIONS(3901), - [anon_sym_symbol] = ACTIONS(3901), - [anon_sym_object] = ACTIONS(3901), - [anon_sym_abstract] = ACTIONS(3913), - [anon_sym_infer] = ACTIONS(3917), - [anon_sym_keyof] = ACTIONS(3919), - [anon_sym_unique] = ACTIONS(3921), - [anon_sym_unknown] = ACTIONS(3901), - [anon_sym_never] = ACTIONS(3901), - [anon_sym_LBRACE_PIPE] = ACTIONS(3883), - [sym_html_comment] = ACTIONS(5), - }, - [1960] = { - [sym_nested_identifier] = STATE(7360), - [sym_string] = STATE(3048), - [sym_comment] = STATE(1960), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(2840), - [sym__type] = STATE(6210), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(2954), - [sym_template_literal_type] = STATE(3036), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3036), - [sym_generic_type] = STATE(3036), - [sym_type_query] = STATE(3036), - [sym_index_type_query] = STATE(3036), - [sym_lookup_type] = STATE(3036), - [sym_literal_type] = STATE(3036), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3036), - [sym_flow_maybe_type] = STATE(3036), - [sym_parenthesized_type] = STATE(3036), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(3036), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3036), - [sym_tuple_type] = STATE(3036), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3036), - [sym_intersection_type] = STATE(3036), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(4131), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3883), - [anon_sym_typeof] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3891), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3901), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3903), - [sym_number] = ACTIONS(3905), - [sym_this] = ACTIONS(4133), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_null] = ACTIONS(3905), - [sym_undefined] = ACTIONS(3905), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_any] = ACTIONS(3901), - [anon_sym_number] = ACTIONS(3901), - [anon_sym_boolean] = ACTIONS(3901), - [anon_sym_string] = ACTIONS(3901), - [anon_sym_symbol] = ACTIONS(3901), - [anon_sym_object] = ACTIONS(3901), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(3919), - [anon_sym_unique] = ACTIONS(3921), - [anon_sym_unknown] = ACTIONS(3901), - [anon_sym_never] = ACTIONS(3901), - [anon_sym_LBRACE_PIPE] = ACTIONS(3883), - [sym_html_comment] = ACTIONS(5), - }, - [1961] = { - [sym_nested_identifier] = STATE(7360), - [sym_string] = STATE(3048), - [sym_comment] = STATE(1961), - [sym_formal_parameters] = STATE(7424), - [sym_nested_type_identifier] = STATE(2840), - [sym__type] = STATE(2993), - [sym_constructor_type] = STATE(3044), - [sym__primary_type] = STATE(3039), - [sym_template_literal_type] = STATE(3036), - [sym_infer_type] = STATE(3044), - [sym_conditional_type] = STATE(3036), - [sym_generic_type] = STATE(3036), - [sym_type_query] = STATE(3036), - [sym_index_type_query] = STATE(3036), - [sym_lookup_type] = STATE(3036), - [sym_literal_type] = STATE(3036), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3036), - [sym_flow_maybe_type] = STATE(3036), - [sym_parenthesized_type] = STATE(3036), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(3036), - [sym_type_parameters] = STATE(6722), - [sym_array_type] = STATE(3036), - [sym_tuple_type] = STATE(3036), - [sym_readonly_type] = STATE(3044), - [sym_union_type] = STATE(3036), - [sym_intersection_type] = STATE(3036), - [sym_function_type] = STATE(3044), - [sym_identifier] = ACTIONS(4131), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3883), - [anon_sym_typeof] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3891), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3901), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3903), - [sym_number] = ACTIONS(3905), - [sym_this] = ACTIONS(4133), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_null] = ACTIONS(3905), - [sym_undefined] = ACTIONS(3905), - [anon_sym_readonly] = ACTIONS(3909), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_any] = ACTIONS(3901), - [anon_sym_number] = ACTIONS(3901), - [anon_sym_boolean] = ACTIONS(3901), - [anon_sym_string] = ACTIONS(3901), - [anon_sym_symbol] = ACTIONS(3901), - [anon_sym_object] = ACTIONS(3901), - [anon_sym_abstract] = ACTIONS(3913), - [anon_sym_infer] = ACTIONS(3917), - [anon_sym_keyof] = ACTIONS(3919), - [anon_sym_unique] = ACTIONS(3921), - [anon_sym_unknown] = ACTIONS(3901), - [anon_sym_never] = ACTIONS(3901), - [anon_sym_LBRACE_PIPE] = ACTIONS(3883), - [sym_html_comment] = ACTIONS(5), - }, - [1962] = { - [sym_nested_identifier] = STATE(7157), - [sym_string] = STATE(2499), - [sym_comment] = STATE(1962), - [sym_formal_parameters] = STATE(7383), - [sym_nested_type_identifier] = STATE(2449), - [sym__type] = STATE(2468), - [sym_constructor_type] = STATE(2482), - [sym__primary_type] = STATE(2493), - [sym_template_literal_type] = STATE(2467), - [sym_infer_type] = STATE(2482), - [sym_conditional_type] = STATE(2467), - [sym_generic_type] = STATE(2467), - [sym_type_query] = STATE(2467), - [sym_index_type_query] = STATE(2467), - [sym_lookup_type] = STATE(2467), - [sym_literal_type] = STATE(2467), - [sym__number] = STATE(2576), - [sym_existential_type] = STATE(2467), - [sym_flow_maybe_type] = STATE(2467), - [sym_parenthesized_type] = STATE(2467), - [sym_predefined_type] = STATE(2467), - [sym_object_type] = STATE(2467), - [sym_type_parameters] = STATE(7072), - [sym_array_type] = STATE(2467), - [sym_tuple_type] = STATE(2467), - [sym_readonly_type] = STATE(2482), - [sym_union_type] = STATE(2467), - [sym_intersection_type] = STATE(2467), - [sym_function_type] = STATE(2482), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_typeof] = ACTIONS(3929), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3945), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3947), - [sym_number] = ACTIONS(3949), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3949), - [sym_false] = ACTIONS(3949), - [sym_null] = ACTIONS(3949), - [sym_undefined] = ACTIONS(3949), - [anon_sym_readonly] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_any] = ACTIONS(3945), - [anon_sym_number] = ACTIONS(3945), - [anon_sym_boolean] = ACTIONS(3945), - [anon_sym_string] = ACTIONS(3945), - [anon_sym_symbol] = ACTIONS(3945), - [anon_sym_object] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(3957), - [anon_sym_infer] = ACTIONS(3961), - [anon_sym_keyof] = ACTIONS(3963), - [anon_sym_unique] = ACTIONS(3965), - [anon_sym_unknown] = ACTIONS(3945), - [anon_sym_never] = ACTIONS(3945), - [anon_sym_LBRACE_PIPE] = ACTIONS(3927), - [sym_html_comment] = ACTIONS(5), - }, - [1963] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1963), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(5081), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [1820] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1820), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4083), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -221987,123 +209924,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1964] = { - [sym_nested_identifier] = STATE(7360), - [sym_string] = STATE(3048), - [sym_comment] = STATE(1964), - [sym_formal_parameters] = STATE(7424), - [sym_nested_type_identifier] = STATE(2840), - [sym__type] = STATE(3139), - [sym_constructor_type] = STATE(3044), - [sym__primary_type] = STATE(3039), - [sym_template_literal_type] = STATE(3036), - [sym_infer_type] = STATE(3044), - [sym_conditional_type] = STATE(3036), - [sym_generic_type] = STATE(3036), - [sym_type_query] = STATE(3036), - [sym_index_type_query] = STATE(3036), - [sym_lookup_type] = STATE(3036), - [sym_literal_type] = STATE(3036), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3036), - [sym_flow_maybe_type] = STATE(3036), - [sym_parenthesized_type] = STATE(3036), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(3036), - [sym_type_parameters] = STATE(6722), - [sym_array_type] = STATE(3036), - [sym_tuple_type] = STATE(3036), - [sym_readonly_type] = STATE(3044), - [sym_union_type] = STATE(3036), - [sym_intersection_type] = STATE(3036), - [sym_function_type] = STATE(3044), - [sym_identifier] = ACTIONS(4131), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3883), - [anon_sym_typeof] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3891), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1821] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1821), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5844), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(4068), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3901), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3903), - [sym_number] = ACTIONS(3905), - [sym_this] = ACTIONS(4133), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_null] = ACTIONS(3905), - [sym_undefined] = ACTIONS(3905), - [anon_sym_readonly] = ACTIONS(3909), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_any] = ACTIONS(3901), - [anon_sym_number] = ACTIONS(3901), - [anon_sym_boolean] = ACTIONS(3901), - [anon_sym_string] = ACTIONS(3901), - [anon_sym_symbol] = ACTIONS(3901), - [anon_sym_object] = ACTIONS(3901), - [anon_sym_abstract] = ACTIONS(3913), - [anon_sym_infer] = ACTIONS(3917), - [anon_sym_keyof] = ACTIONS(3919), - [anon_sym_unique] = ACTIONS(3921), - [anon_sym_unknown] = ACTIONS(3901), - [anon_sym_never] = ACTIONS(3901), - [anon_sym_LBRACE_PIPE] = ACTIONS(3883), - [sym_html_comment] = ACTIONS(5), - }, - [1965] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1965), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5623), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [anon_sym_void] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(198), + [anon_sym_infer] = ACTIONS(200), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1822] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1822), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5165), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -222119,62 +210056,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(1971), [anon_sym_DASH] = ACTIONS(1971), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(206), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1975), + [sym_number] = ACTIONS(1977), + [sym_this] = ACTIONS(1979), + [sym_true] = ACTIONS(1977), + [sym_false] = ACTIONS(1977), + [sym_null] = ACTIONS(1977), + [sym_undefined] = ACTIONS(1977), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(194), + [anon_sym_any] = ACTIONS(206), + [anon_sym_number] = ACTIONS(206), + [anon_sym_boolean] = ACTIONS(206), + [anon_sym_string] = ACTIONS(206), + [anon_sym_symbol] = ACTIONS(206), + [anon_sym_object] = ACTIONS(206), + [anon_sym_abstract] = ACTIONS(198), + [anon_sym_infer] = ACTIONS(200), + [anon_sym_keyof] = ACTIONS(202), + [anon_sym_unique] = ACTIONS(204), + [anon_sym_unknown] = ACTIONS(206), + [anon_sym_never] = ACTIONS(206), + [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [sym_html_comment] = ACTIONS(5), + }, + [1823] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1823), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4069), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1824] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1824), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4113), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), [sym_html_comment] = ACTIONS(5), }, - [1966] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1966), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5720), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1825] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1825), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5594), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -222216,36 +210295,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1967] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1967), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5632), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1826] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1826), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3892), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -222287,107 +210366,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1968] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1968), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(5083), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1969] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1969), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(3948), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1827] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1827), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3836), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -222429,194 +210437,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1970] = { - [sym_nested_identifier] = STATE(7360), - [sym_string] = STATE(3048), - [sym_comment] = STATE(1970), - [sym_formal_parameters] = STATE(7424), - [sym_nested_type_identifier] = STATE(2840), - [sym__type] = STATE(2953), - [sym_constructor_type] = STATE(3044), - [sym__primary_type] = STATE(3039), - [sym_template_literal_type] = STATE(3036), - [sym_infer_type] = STATE(3044), - [sym_conditional_type] = STATE(3036), - [sym_generic_type] = STATE(3036), - [sym_type_query] = STATE(3036), - [sym_index_type_query] = STATE(3036), - [sym_lookup_type] = STATE(3036), - [sym_literal_type] = STATE(3036), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3036), - [sym_flow_maybe_type] = STATE(3036), - [sym_parenthesized_type] = STATE(3036), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(3036), - [sym_type_parameters] = STATE(6722), - [sym_array_type] = STATE(3036), - [sym_tuple_type] = STATE(3036), - [sym_readonly_type] = STATE(3044), - [sym_union_type] = STATE(3036), - [sym_intersection_type] = STATE(3036), - [sym_function_type] = STATE(3044), - [sym_identifier] = ACTIONS(4131), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3883), - [anon_sym_typeof] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3891), + [1828] = { + [sym_nested_identifier] = STATE(7198), + [sym_string] = STATE(2867), + [sym_comment] = STATE(1828), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(2711), + [sym__type] = STATE(2879), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2842), + [sym_template_literal_type] = STATE(2841), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2841), + [sym_generic_type] = STATE(2841), + [sym_type_query] = STATE(2841), + [sym_index_type_query] = STATE(2841), + [sym_lookup_type] = STATE(2841), + [sym_literal_type] = STATE(2841), + [sym__number] = STATE(2835), + [sym_existential_type] = STATE(2841), + [sym_flow_maybe_type] = STATE(2841), + [sym_parenthesized_type] = STATE(2841), + [sym_predefined_type] = STATE(2841), + [sym_object_type] = STATE(2841), + [sym_type_parameters] = STATE(6539), + [sym_array_type] = STATE(2841), + [sym_tuple_type] = STATE(2841), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2841), + [sym_intersection_type] = STATE(2841), + [sym_function_type] = STATE(2843), + [sym_identifier] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3901), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3903), - [sym_number] = ACTIONS(3905), - [sym_this] = ACTIONS(4133), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_null] = ACTIONS(3905), - [sym_undefined] = ACTIONS(3905), - [anon_sym_readonly] = ACTIONS(3909), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_any] = ACTIONS(3901), - [anon_sym_number] = ACTIONS(3901), - [anon_sym_boolean] = ACTIONS(3901), - [anon_sym_string] = ACTIONS(3901), - [anon_sym_symbol] = ACTIONS(3901), - [anon_sym_object] = ACTIONS(3901), - [anon_sym_abstract] = ACTIONS(3913), - [anon_sym_infer] = ACTIONS(3917), - [anon_sym_keyof] = ACTIONS(3919), - [anon_sym_unique] = ACTIONS(3921), - [anon_sym_unknown] = ACTIONS(3901), - [anon_sym_never] = ACTIONS(3901), - [anon_sym_LBRACE_PIPE] = ACTIONS(3883), - [sym_html_comment] = ACTIONS(5), - }, - [1971] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1971), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(5339), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(3949), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1972] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1972), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(5390), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), + [sym_this] = ACTIONS(4141), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_html_comment] = ACTIONS(5), + }, + [1829] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1829), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4848), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -222626,68 +210563,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1973] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1973), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(4254), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1830] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1830), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4088), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -222697,68 +210634,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1974] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1974), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(5265), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1831] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1831), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4081), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -222768,68 +210705,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1975] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1975), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(5151), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1832] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1832), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5844), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(4099), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_new] = ACTIONS(1969), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -222838,124 +210775,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_false] = ACTIONS(2001), [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1976] = { - [sym_nested_identifier] = STATE(7360), - [sym_string] = STATE(3048), - [sym_comment] = STATE(1976), - [sym_formal_parameters] = STATE(7424), - [sym_nested_type_identifier] = STATE(2840), - [sym__type] = STATE(3131), - [sym_constructor_type] = STATE(3044), - [sym__primary_type] = STATE(3039), - [sym_template_literal_type] = STATE(3036), - [sym_infer_type] = STATE(3044), - [sym_conditional_type] = STATE(3036), - [sym_generic_type] = STATE(3036), - [sym_type_query] = STATE(3036), - [sym_index_type_query] = STATE(3036), - [sym_lookup_type] = STATE(3036), - [sym_literal_type] = STATE(3036), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3036), - [sym_flow_maybe_type] = STATE(3036), - [sym_parenthesized_type] = STATE(3036), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(3036), - [sym_type_parameters] = STATE(6722), - [sym_array_type] = STATE(3036), - [sym_tuple_type] = STATE(3036), - [sym_readonly_type] = STATE(3044), - [sym_union_type] = STATE(3036), - [sym_intersection_type] = STATE(3036), - [sym_function_type] = STATE(3044), - [sym_identifier] = ACTIONS(4131), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3883), - [anon_sym_typeof] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3891), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3901), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3903), - [sym_number] = ACTIONS(3905), - [sym_this] = ACTIONS(4133), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_null] = ACTIONS(3905), - [sym_undefined] = ACTIONS(3905), - [anon_sym_readonly] = ACTIONS(3909), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_any] = ACTIONS(3901), - [anon_sym_number] = ACTIONS(3901), - [anon_sym_boolean] = ACTIONS(3901), - [anon_sym_string] = ACTIONS(3901), - [anon_sym_symbol] = ACTIONS(3901), - [anon_sym_object] = ACTIONS(3901), - [anon_sym_abstract] = ACTIONS(3913), - [anon_sym_infer] = ACTIONS(3917), - [anon_sym_keyof] = ACTIONS(3919), - [anon_sym_unique] = ACTIONS(3921), - [anon_sym_unknown] = ACTIONS(3901), - [anon_sym_never] = ACTIONS(3901), - [anon_sym_LBRACE_PIPE] = ACTIONS(3883), - [sym_html_comment] = ACTIONS(5), - }, - [1977] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1977), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(6192), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3985), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [anon_sym_readonly] = ACTIONS(1981), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(198), + [anon_sym_infer] = ACTIONS(200), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1833] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1833), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5442), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -222997,52 +210863,265 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1978] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1978), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(4218), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [1834] = { + [sym_nested_identifier] = STATE(7198), + [sym_string] = STATE(2867), + [sym_comment] = STATE(1834), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(2711), + [sym__type] = STATE(2917), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2842), + [sym_template_literal_type] = STATE(2841), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2841), + [sym_generic_type] = STATE(2841), + [sym_type_query] = STATE(2841), + [sym_index_type_query] = STATE(2841), + [sym_lookup_type] = STATE(2841), + [sym_literal_type] = STATE(2841), + [sym__number] = STATE(2835), + [sym_existential_type] = STATE(2841), + [sym_flow_maybe_type] = STATE(2841), + [sym_parenthesized_type] = STATE(2841), + [sym_predefined_type] = STATE(2841), + [sym_object_type] = STATE(2841), + [sym_type_parameters] = STATE(6539), + [sym_array_type] = STATE(2841), + [sym_tuple_type] = STATE(2841), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2841), + [sym_intersection_type] = STATE(2841), + [sym_function_type] = STATE(2843), + [sym_identifier] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3949), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), + [sym_this] = ACTIONS(4141), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_html_comment] = ACTIONS(5), + }, + [1835] = { + [sym_nested_identifier] = STATE(7198), + [sym_string] = STATE(2867), + [sym_comment] = STATE(1835), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(2711), + [sym__type] = STATE(2975), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2842), + [sym_template_literal_type] = STATE(2841), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2841), + [sym_generic_type] = STATE(2841), + [sym_type_query] = STATE(2841), + [sym_index_type_query] = STATE(2841), + [sym_lookup_type] = STATE(2841), + [sym_literal_type] = STATE(2841), + [sym__number] = STATE(2835), + [sym_existential_type] = STATE(2841), + [sym_flow_maybe_type] = STATE(2841), + [sym_parenthesized_type] = STATE(2841), + [sym_predefined_type] = STATE(2841), + [sym_object_type] = STATE(2841), + [sym_type_parameters] = STATE(6539), + [sym_array_type] = STATE(2841), + [sym_tuple_type] = STATE(2841), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2841), + [sym_intersection_type] = STATE(2841), + [sym_function_type] = STATE(2843), + [sym_identifier] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3949), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), + [sym_this] = ACTIONS(4141), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_html_comment] = ACTIONS(5), + }, + [1836] = { + [sym_nested_identifier] = STATE(7198), + [sym_string] = STATE(2867), + [sym_comment] = STATE(1836), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(2711), + [sym__type] = STATE(2937), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2842), + [sym_template_literal_type] = STATE(2841), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2841), + [sym_generic_type] = STATE(2841), + [sym_type_query] = STATE(2841), + [sym_index_type_query] = STATE(2841), + [sym_lookup_type] = STATE(2841), + [sym_literal_type] = STATE(2841), + [sym__number] = STATE(2835), + [sym_existential_type] = STATE(2841), + [sym_flow_maybe_type] = STATE(2841), + [sym_parenthesized_type] = STATE(2841), + [sym_predefined_type] = STATE(2841), + [sym_object_type] = STATE(2841), + [sym_type_parameters] = STATE(6539), + [sym_array_type] = STATE(2841), + [sym_tuple_type] = STATE(2841), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2841), + [sym_intersection_type] = STATE(2841), + [sym_function_type] = STATE(2843), + [sym_identifier] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3949), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), + [sym_this] = ACTIONS(4141), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_html_comment] = ACTIONS(5), + }, + [1837] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1837), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5214), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -223052,52 +211131,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1979] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1979), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5712), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1838] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1838), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5437), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -223139,52 +211218,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1980] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1980), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(5166), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [1839] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1839), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4089), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -223194,139 +211273,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1981] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1981), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5573), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1840] = { + [sym_nested_identifier] = STATE(6973), + [sym_string] = STATE(2430), + [sym_comment] = STATE(1840), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(2302), + [sym__type] = STATE(5817), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(2321), + [sym_template_literal_type] = STATE(2426), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(2426), + [sym_generic_type] = STATE(2426), + [sym_type_query] = STATE(2426), + [sym_index_type_query] = STATE(2426), + [sym_lookup_type] = STATE(2426), + [sym_literal_type] = STATE(2426), + [sym__number] = STATE(2422), + [sym_existential_type] = STATE(2426), + [sym_flow_maybe_type] = STATE(2426), + [sym_parenthesized_type] = STATE(2426), + [sym_predefined_type] = STATE(2426), + [sym_object_type] = STATE(2426), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(2426), + [sym_tuple_type] = STATE(2426), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(2426), + [sym_intersection_type] = STATE(2426), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(4135), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(3905), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), + [sym_this] = ACTIONS(4137), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), [sym_html_comment] = ACTIONS(5), }, - [1982] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1982), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(4224), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [1841] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1841), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5327), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1842] = { + [sym_nested_identifier] = STATE(7006), + [sym_string] = STATE(4247), + [sym_comment] = STATE(1842), + [sym_formal_parameters] = STATE(7134), + [sym_nested_type_identifier] = STATE(4103), + [sym__type] = STATE(4272), + [sym_constructor_type] = STATE(4153), + [sym__primary_type] = STATE(4154), + [sym_template_literal_type] = STATE(4155), + [sym_infer_type] = STATE(4153), + [sym_conditional_type] = STATE(4155), + [sym_generic_type] = STATE(4155), + [sym_type_query] = STATE(4155), + [sym_index_type_query] = STATE(4155), + [sym_lookup_type] = STATE(4155), + [sym_literal_type] = STATE(4155), + [sym__number] = STATE(4156), + [sym_existential_type] = STATE(4155), + [sym_flow_maybe_type] = STATE(4155), + [sym_parenthesized_type] = STATE(4155), + [sym_predefined_type] = STATE(4155), + [sym_object_type] = STATE(4155), + [sym_type_parameters] = STATE(6916), + [sym_array_type] = STATE(4155), + [sym_tuple_type] = STATE(4155), + [sym_readonly_type] = STATE(4153), + [sym_union_type] = STATE(4155), + [sym_intersection_type] = STATE(4155), + [sym_function_type] = STATE(4153), + [sym_identifier] = ACTIONS(4143), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_typeof] = ACTIONS(3747), + [anon_sym_const] = ACTIONS(3749), + [anon_sym_LPAREN] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3755), + [anon_sym_SQUOTE] = ACTIONS(3757), + [anon_sym_new] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_PIPE] = ACTIONS(3763), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3767), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3769), + [sym_number] = ACTIONS(3771), + [sym_this] = ACTIONS(4145), + [sym_true] = ACTIONS(3771), + [sym_false] = ACTIONS(3771), + [sym_null] = ACTIONS(3771), + [sym_undefined] = ACTIONS(3771), + [anon_sym_readonly] = ACTIONS(3775), + [anon_sym_QMARK] = ACTIONS(3777), + [anon_sym_any] = ACTIONS(3767), + [anon_sym_number] = ACTIONS(3767), + [anon_sym_boolean] = ACTIONS(3767), + [anon_sym_string] = ACTIONS(3767), + [anon_sym_symbol] = ACTIONS(3767), + [anon_sym_object] = ACTIONS(3767), + [anon_sym_abstract] = ACTIONS(3779), + [anon_sym_infer] = ACTIONS(3783), + [anon_sym_keyof] = ACTIONS(3785), + [anon_sym_unique] = ACTIONS(3787), + [anon_sym_unknown] = ACTIONS(3767), + [anon_sym_never] = ACTIONS(3767), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [sym_html_comment] = ACTIONS(5), + }, + [1843] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1843), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5080), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -223336,52 +211557,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1983] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1983), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(6192), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(4002), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1844] = { + [sym_nested_identifier] = STATE(7006), + [sym_string] = STATE(4247), + [sym_comment] = STATE(1844), + [sym_formal_parameters] = STATE(7134), + [sym_nested_type_identifier] = STATE(4103), + [sym__type] = STATE(4265), + [sym_constructor_type] = STATE(4153), + [sym__primary_type] = STATE(4154), + [sym_template_literal_type] = STATE(4155), + [sym_infer_type] = STATE(4153), + [sym_conditional_type] = STATE(4155), + [sym_generic_type] = STATE(4155), + [sym_type_query] = STATE(4155), + [sym_index_type_query] = STATE(4155), + [sym_lookup_type] = STATE(4155), + [sym_literal_type] = STATE(4155), + [sym__number] = STATE(4156), + [sym_existential_type] = STATE(4155), + [sym_flow_maybe_type] = STATE(4155), + [sym_parenthesized_type] = STATE(4155), + [sym_predefined_type] = STATE(4155), + [sym_object_type] = STATE(4155), + [sym_type_parameters] = STATE(6916), + [sym_array_type] = STATE(4155), + [sym_tuple_type] = STATE(4155), + [sym_readonly_type] = STATE(4153), + [sym_union_type] = STATE(4155), + [sym_intersection_type] = STATE(4155), + [sym_function_type] = STATE(4153), + [sym_identifier] = ACTIONS(4143), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_typeof] = ACTIONS(3747), + [anon_sym_const] = ACTIONS(3749), + [anon_sym_LPAREN] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3755), + [anon_sym_SQUOTE] = ACTIONS(3757), + [anon_sym_new] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_PIPE] = ACTIONS(3763), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3767), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3769), + [sym_number] = ACTIONS(3771), + [sym_this] = ACTIONS(4145), + [sym_true] = ACTIONS(3771), + [sym_false] = ACTIONS(3771), + [sym_null] = ACTIONS(3771), + [sym_undefined] = ACTIONS(3771), + [anon_sym_readonly] = ACTIONS(3775), + [anon_sym_QMARK] = ACTIONS(3777), + [anon_sym_any] = ACTIONS(3767), + [anon_sym_number] = ACTIONS(3767), + [anon_sym_boolean] = ACTIONS(3767), + [anon_sym_string] = ACTIONS(3767), + [anon_sym_symbol] = ACTIONS(3767), + [anon_sym_object] = ACTIONS(3767), + [anon_sym_abstract] = ACTIONS(3779), + [anon_sym_infer] = ACTIONS(3783), + [anon_sym_keyof] = ACTIONS(3785), + [anon_sym_unique] = ACTIONS(3787), + [anon_sym_unknown] = ACTIONS(3767), + [anon_sym_never] = ACTIONS(3767), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [sym_html_comment] = ACTIONS(5), + }, + [1845] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1845), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5391), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -223423,194 +211715,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1984] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1984), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(4230), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1985] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1985), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(4215), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1986] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1986), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(4212), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [1846] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1846), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5308), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -223620,68 +211770,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1987] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1987), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(4208), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1847] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1847), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5140), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -223691,194 +211841,194 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1988] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1988), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(5821), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(4205), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1848] = { + [sym_nested_identifier] = STATE(7198), + [sym_string] = STATE(2867), + [sym_comment] = STATE(1848), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(2711), + [sym__type] = STATE(2925), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2842), + [sym_template_literal_type] = STATE(2841), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2841), + [sym_generic_type] = STATE(2841), + [sym_type_query] = STATE(2841), + [sym_index_type_query] = STATE(2841), + [sym_lookup_type] = STATE(2841), + [sym_literal_type] = STATE(2841), + [sym__number] = STATE(2835), + [sym_existential_type] = STATE(2841), + [sym_flow_maybe_type] = STATE(2841), + [sym_parenthesized_type] = STATE(2841), + [sym_predefined_type] = STATE(2841), + [sym_object_type] = STATE(2841), + [sym_type_parameters] = STATE(6539), + [sym_array_type] = STATE(2841), + [sym_tuple_type] = STATE(2841), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2841), + [sym_intersection_type] = STATE(2841), + [sym_function_type] = STATE(2843), + [sym_identifier] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(4149), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(3949), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1989] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(1989), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(5821), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(4202), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), + [sym_this] = ACTIONS(4141), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_html_comment] = ACTIONS(5), + }, + [1849] = { + [sym_nested_identifier] = STATE(6973), + [sym_string] = STATE(2430), + [sym_comment] = STATE(1849), + [sym_formal_parameters] = STATE(7150), + [sym_nested_type_identifier] = STATE(2302), + [sym__type] = STATE(2347), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2427), + [sym_template_literal_type] = STATE(2426), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2426), + [sym_generic_type] = STATE(2426), + [sym_type_query] = STATE(2426), + [sym_index_type_query] = STATE(2426), + [sym_lookup_type] = STATE(2426), + [sym_literal_type] = STATE(2426), + [sym__number] = STATE(2422), + [sym_existential_type] = STATE(2426), + [sym_flow_maybe_type] = STATE(2426), + [sym_parenthesized_type] = STATE(2426), + [sym_predefined_type] = STATE(2426), + [sym_object_type] = STATE(2426), + [sym_type_parameters] = STATE(6889), + [sym_array_type] = STATE(2426), + [sym_tuple_type] = STATE(2426), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2426), + [sym_intersection_type] = STATE(2426), + [sym_function_type] = STATE(2428), + [sym_identifier] = ACTIONS(4135), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(3905), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [1990] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1990), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4003), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), + [sym_this] = ACTIONS(4137), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_html_comment] = ACTIONS(5), + }, + [1850] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1850), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5794), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3859), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -223920,391 +212070,320 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1991] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1991), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5714), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), + [1851] = { + [sym_nested_identifier] = STATE(7006), + [sym_string] = STATE(4247), + [sym_comment] = STATE(1851), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(4103), + [sym__type] = STATE(6070), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(4214), + [sym_template_literal_type] = STATE(4155), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(4155), + [sym_generic_type] = STATE(4155), + [sym_type_query] = STATE(4155), + [sym_index_type_query] = STATE(4155), + [sym_lookup_type] = STATE(4155), + [sym_literal_type] = STATE(4155), + [sym__number] = STATE(4156), + [sym_existential_type] = STATE(4155), + [sym_flow_maybe_type] = STATE(4155), + [sym_parenthesized_type] = STATE(4155), + [sym_predefined_type] = STATE(4155), + [sym_object_type] = STATE(4155), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(4155), + [sym_tuple_type] = STATE(4155), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(4155), + [sym_intersection_type] = STATE(4155), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(4143), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_typeof] = ACTIONS(3747), + [anon_sym_const] = ACTIONS(3749), + [anon_sym_LPAREN] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3755), + [anon_sym_SQUOTE] = ACTIONS(3757), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_PIPE] = ACTIONS(3763), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), + [anon_sym_void] = ACTIONS(3767), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3769), + [sym_number] = ACTIONS(3771), + [sym_this] = ACTIONS(4145), + [sym_true] = ACTIONS(3771), + [sym_false] = ACTIONS(3771), + [sym_null] = ACTIONS(3771), + [sym_undefined] = ACTIONS(3771), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), + [anon_sym_QMARK] = ACTIONS(3777), + [anon_sym_any] = ACTIONS(3767), + [anon_sym_number] = ACTIONS(3767), + [anon_sym_boolean] = ACTIONS(3767), + [anon_sym_string] = ACTIONS(3767), + [anon_sym_symbol] = ACTIONS(3767), + [anon_sym_object] = ACTIONS(3767), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_keyof] = ACTIONS(3785), + [anon_sym_unique] = ACTIONS(3787), + [anon_sym_unknown] = ACTIONS(3767), + [anon_sym_never] = ACTIONS(3767), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), [sym_html_comment] = ACTIONS(5), }, - [1992] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1992), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5698), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), + [1852] = { + [sym_nested_identifier] = STATE(7006), + [sym_string] = STATE(4247), + [sym_comment] = STATE(1852), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(4103), + [sym__type] = STATE(6070), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(4212), + [sym_template_literal_type] = STATE(4155), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(4155), + [sym_generic_type] = STATE(4155), + [sym_type_query] = STATE(4155), + [sym_index_type_query] = STATE(4155), + [sym_lookup_type] = STATE(4155), + [sym_literal_type] = STATE(4155), + [sym__number] = STATE(4156), + [sym_existential_type] = STATE(4155), + [sym_flow_maybe_type] = STATE(4155), + [sym_parenthesized_type] = STATE(4155), + [sym_predefined_type] = STATE(4155), + [sym_object_type] = STATE(4155), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(4155), + [sym_tuple_type] = STATE(4155), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(4155), + [sym_intersection_type] = STATE(4155), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(4143), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_typeof] = ACTIONS(3747), + [anon_sym_const] = ACTIONS(3749), + [anon_sym_LPAREN] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3755), + [anon_sym_SQUOTE] = ACTIONS(3757), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_PIPE] = ACTIONS(3763), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), + [anon_sym_void] = ACTIONS(3767), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3769), + [sym_number] = ACTIONS(3771), + [sym_this] = ACTIONS(4145), + [sym_true] = ACTIONS(3771), + [sym_false] = ACTIONS(3771), + [sym_null] = ACTIONS(3771), + [sym_undefined] = ACTIONS(3771), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), + [anon_sym_QMARK] = ACTIONS(3777), + [anon_sym_any] = ACTIONS(3767), + [anon_sym_number] = ACTIONS(3767), + [anon_sym_boolean] = ACTIONS(3767), + [anon_sym_string] = ACTIONS(3767), + [anon_sym_symbol] = ACTIONS(3767), + [anon_sym_object] = ACTIONS(3767), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_keyof] = ACTIONS(3785), + [anon_sym_unique] = ACTIONS(3787), + [anon_sym_unknown] = ACTIONS(3767), + [anon_sym_never] = ACTIONS(3767), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), [sym_html_comment] = ACTIONS(5), }, - [1993] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1993), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5171), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), + [1853] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1853), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4115), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), [sym_html_comment] = ACTIONS(5), }, - [1994] = { - [sym_nested_identifier] = STATE(7360), - [sym_string] = STATE(3048), - [sym_comment] = STATE(1994), - [sym_formal_parameters] = STATE(7424), - [sym_nested_type_identifier] = STATE(2840), - [sym__type] = STATE(2947), - [sym_constructor_type] = STATE(3044), - [sym__primary_type] = STATE(3039), - [sym_template_literal_type] = STATE(3036), - [sym_infer_type] = STATE(3044), - [sym_conditional_type] = STATE(3036), - [sym_generic_type] = STATE(3036), - [sym_type_query] = STATE(3036), - [sym_index_type_query] = STATE(3036), - [sym_lookup_type] = STATE(3036), - [sym_literal_type] = STATE(3036), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3036), - [sym_flow_maybe_type] = STATE(3036), - [sym_parenthesized_type] = STATE(3036), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(3036), - [sym_type_parameters] = STATE(6722), - [sym_array_type] = STATE(3036), - [sym_tuple_type] = STATE(3036), - [sym_readonly_type] = STATE(3044), - [sym_union_type] = STATE(3036), - [sym_intersection_type] = STATE(3036), - [sym_function_type] = STATE(3044), - [sym_identifier] = ACTIONS(4131), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3883), - [anon_sym_typeof] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3891), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3901), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3903), - [sym_number] = ACTIONS(3905), - [sym_this] = ACTIONS(4133), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_null] = ACTIONS(3905), - [sym_undefined] = ACTIONS(3905), - [anon_sym_readonly] = ACTIONS(3909), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_any] = ACTIONS(3901), - [anon_sym_number] = ACTIONS(3901), - [anon_sym_boolean] = ACTIONS(3901), - [anon_sym_string] = ACTIONS(3901), - [anon_sym_symbol] = ACTIONS(3901), - [anon_sym_object] = ACTIONS(3901), - [anon_sym_abstract] = ACTIONS(3913), - [anon_sym_infer] = ACTIONS(3917), - [anon_sym_keyof] = ACTIONS(3919), - [anon_sym_unique] = ACTIONS(3921), - [anon_sym_unknown] = ACTIONS(3901), - [anon_sym_never] = ACTIONS(3901), - [anon_sym_LBRACE_PIPE] = ACTIONS(3883), - [sym_html_comment] = ACTIONS(5), - }, - [1995] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1995), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5694), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), + [1854] = { + [sym_nested_identifier] = STATE(6973), + [sym_string] = STATE(2430), + [sym_comment] = STATE(1854), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(2302), + [sym__type] = STATE(5817), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(2396), + [sym_template_literal_type] = STATE(2426), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(2426), + [sym_generic_type] = STATE(2426), + [sym_type_query] = STATE(2426), + [sym_index_type_query] = STATE(2426), + [sym_lookup_type] = STATE(2426), + [sym_literal_type] = STATE(2426), + [sym__number] = STATE(2422), + [sym_existential_type] = STATE(2426), + [sym_flow_maybe_type] = STATE(2426), + [sym_parenthesized_type] = STATE(2426), + [sym_predefined_type] = STATE(2426), + [sym_object_type] = STATE(2426), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(2426), + [sym_tuple_type] = STATE(2426), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(2426), + [sym_intersection_type] = STATE(2426), + [sym_function_type] = STATE(3865), + [sym_identifier] = ACTIONS(4135), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), + [anon_sym_void] = ACTIONS(3905), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), + [sym_this] = ACTIONS(4137), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), [anon_sym_abstract] = ACTIONS(198), [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), [sym_html_comment] = ACTIONS(5), }, - [1996] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(1996), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4034), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1855] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1855), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3817), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -224346,336 +212425,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [1997] = { - [sym_nested_identifier] = STATE(7157), - [sym_string] = STATE(2499), - [sym_comment] = STATE(1997), - [sym_formal_parameters] = STATE(7383), - [sym_nested_type_identifier] = STATE(2449), - [sym__type] = STATE(2556), - [sym_constructor_type] = STATE(2482), - [sym__primary_type] = STATE(2493), - [sym_template_literal_type] = STATE(2467), - [sym_infer_type] = STATE(2482), - [sym_conditional_type] = STATE(2467), - [sym_generic_type] = STATE(2467), - [sym_type_query] = STATE(2467), - [sym_index_type_query] = STATE(2467), - [sym_lookup_type] = STATE(2467), - [sym_literal_type] = STATE(2467), - [sym__number] = STATE(2576), - [sym_existential_type] = STATE(2467), - [sym_flow_maybe_type] = STATE(2467), - [sym_parenthesized_type] = STATE(2467), - [sym_predefined_type] = STATE(2467), - [sym_object_type] = STATE(2467), - [sym_type_parameters] = STATE(7072), - [sym_array_type] = STATE(2467), - [sym_tuple_type] = STATE(2467), - [sym_readonly_type] = STATE(2482), - [sym_union_type] = STATE(2467), - [sym_intersection_type] = STATE(2467), - [sym_function_type] = STATE(2482), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_typeof] = ACTIONS(3929), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3945), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3947), - [sym_number] = ACTIONS(3949), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3949), - [sym_false] = ACTIONS(3949), - [sym_null] = ACTIONS(3949), - [sym_undefined] = ACTIONS(3949), - [anon_sym_readonly] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_any] = ACTIONS(3945), - [anon_sym_number] = ACTIONS(3945), - [anon_sym_boolean] = ACTIONS(3945), - [anon_sym_string] = ACTIONS(3945), - [anon_sym_symbol] = ACTIONS(3945), - [anon_sym_object] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(3957), - [anon_sym_infer] = ACTIONS(3961), - [anon_sym_keyof] = ACTIONS(3963), - [anon_sym_unique] = ACTIONS(3965), - [anon_sym_unknown] = ACTIONS(3945), - [anon_sym_never] = ACTIONS(3945), - [anon_sym_LBRACE_PIPE] = ACTIONS(3927), - [sym_html_comment] = ACTIONS(5), - }, - [1998] = { - [sym_nested_identifier] = STATE(7157), - [sym_string] = STATE(2499), - [sym_comment] = STATE(1998), - [sym_formal_parameters] = STATE(7383), - [sym_nested_type_identifier] = STATE(2449), - [sym__type] = STATE(2572), - [sym_constructor_type] = STATE(2482), - [sym__primary_type] = STATE(2493), - [sym_template_literal_type] = STATE(2467), - [sym_infer_type] = STATE(2482), - [sym_conditional_type] = STATE(2467), - [sym_generic_type] = STATE(2467), - [sym_type_query] = STATE(2467), - [sym_index_type_query] = STATE(2467), - [sym_lookup_type] = STATE(2467), - [sym_literal_type] = STATE(2467), - [sym__number] = STATE(2576), - [sym_existential_type] = STATE(2467), - [sym_flow_maybe_type] = STATE(2467), - [sym_parenthesized_type] = STATE(2467), - [sym_predefined_type] = STATE(2467), - [sym_object_type] = STATE(2467), - [sym_type_parameters] = STATE(7072), - [sym_array_type] = STATE(2467), - [sym_tuple_type] = STATE(2467), - [sym_readonly_type] = STATE(2482), - [sym_union_type] = STATE(2467), - [sym_intersection_type] = STATE(2467), - [sym_function_type] = STATE(2482), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_typeof] = ACTIONS(3929), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3945), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3947), - [sym_number] = ACTIONS(3949), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3949), - [sym_false] = ACTIONS(3949), - [sym_null] = ACTIONS(3949), - [sym_undefined] = ACTIONS(3949), - [anon_sym_readonly] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_any] = ACTIONS(3945), - [anon_sym_number] = ACTIONS(3945), - [anon_sym_boolean] = ACTIONS(3945), - [anon_sym_string] = ACTIONS(3945), - [anon_sym_symbol] = ACTIONS(3945), - [anon_sym_object] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(3957), - [anon_sym_infer] = ACTIONS(3961), - [anon_sym_keyof] = ACTIONS(3963), - [anon_sym_unique] = ACTIONS(3965), - [anon_sym_unknown] = ACTIONS(3945), - [anon_sym_never] = ACTIONS(3945), - [anon_sym_LBRACE_PIPE] = ACTIONS(3927), - [sym_html_comment] = ACTIONS(5), - }, - [1999] = { - [sym_nested_identifier] = STATE(7157), - [sym_string] = STATE(2499), - [sym_comment] = STATE(1999), - [sym_formal_parameters] = STATE(7383), - [sym_nested_type_identifier] = STATE(2449), - [sym__type] = STATE(2568), - [sym_constructor_type] = STATE(2482), - [sym__primary_type] = STATE(2493), - [sym_template_literal_type] = STATE(2467), - [sym_infer_type] = STATE(2482), - [sym_conditional_type] = STATE(2467), - [sym_generic_type] = STATE(2467), - [sym_type_query] = STATE(2467), - [sym_index_type_query] = STATE(2467), - [sym_lookup_type] = STATE(2467), - [sym_literal_type] = STATE(2467), - [sym__number] = STATE(2576), - [sym_existential_type] = STATE(2467), - [sym_flow_maybe_type] = STATE(2467), - [sym_parenthesized_type] = STATE(2467), - [sym_predefined_type] = STATE(2467), - [sym_object_type] = STATE(2467), - [sym_type_parameters] = STATE(7072), - [sym_array_type] = STATE(2467), - [sym_tuple_type] = STATE(2467), - [sym_readonly_type] = STATE(2482), - [sym_union_type] = STATE(2467), - [sym_intersection_type] = STATE(2467), - [sym_function_type] = STATE(2482), - [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_typeof] = ACTIONS(3929), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3945), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3947), - [sym_number] = ACTIONS(3949), - [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3949), - [sym_false] = ACTIONS(3949), - [sym_null] = ACTIONS(3949), - [sym_undefined] = ACTIONS(3949), - [anon_sym_readonly] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_any] = ACTIONS(3945), - [anon_sym_number] = ACTIONS(3945), - [anon_sym_boolean] = ACTIONS(3945), - [anon_sym_string] = ACTIONS(3945), - [anon_sym_symbol] = ACTIONS(3945), - [anon_sym_object] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(3957), - [anon_sym_infer] = ACTIONS(3961), - [anon_sym_keyof] = ACTIONS(3963), - [anon_sym_unique] = ACTIONS(3965), - [anon_sym_unknown] = ACTIONS(3945), - [anon_sym_never] = ACTIONS(3945), - [anon_sym_LBRACE_PIPE] = ACTIONS(3927), - [sym_html_comment] = ACTIONS(5), - }, - [2000] = { - [sym_nested_identifier] = STATE(7157), - [sym_string] = STATE(2499), - [sym_comment] = STATE(2000), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(2449), - [sym__type] = STATE(6000), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(2555), - [sym_template_literal_type] = STATE(2467), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(2467), - [sym_generic_type] = STATE(2467), - [sym_type_query] = STATE(2467), - [sym_index_type_query] = STATE(2467), - [sym_lookup_type] = STATE(2467), - [sym_literal_type] = STATE(2467), - [sym__number] = STATE(2576), - [sym_existential_type] = STATE(2467), - [sym_flow_maybe_type] = STATE(2467), - [sym_parenthesized_type] = STATE(2467), - [sym_predefined_type] = STATE(2467), - [sym_object_type] = STATE(2467), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(2467), - [sym_tuple_type] = STATE(2467), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(2467), - [sym_intersection_type] = STATE(2467), - [sym_function_type] = STATE(3975), + [1856] = { + [sym_nested_identifier] = STATE(6973), + [sym_string] = STATE(2430), + [sym_comment] = STATE(1856), + [sym_formal_parameters] = STATE(7150), + [sym_nested_type_identifier] = STATE(2302), + [sym__type] = STATE(2397), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2427), + [sym_template_literal_type] = STATE(2426), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2426), + [sym_generic_type] = STATE(2426), + [sym_type_query] = STATE(2426), + [sym_index_type_query] = STATE(2426), + [sym_lookup_type] = STATE(2426), + [sym_literal_type] = STATE(2426), + [sym__number] = STATE(2422), + [sym_existential_type] = STATE(2426), + [sym_flow_maybe_type] = STATE(2426), + [sym_parenthesized_type] = STATE(2426), + [sym_predefined_type] = STATE(2426), + [sym_object_type] = STATE(2426), + [sym_type_parameters] = STATE(6889), + [sym_array_type] = STATE(2426), + [sym_tuple_type] = STATE(2426), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2426), + [sym_intersection_type] = STATE(2426), + [sym_function_type] = STATE(2428), [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_typeof] = ACTIONS(3929), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3945), + [anon_sym_void] = ACTIONS(3905), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3947), - [sym_number] = ACTIONS(3949), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3949), - [sym_false] = ACTIONS(3949), - [sym_null] = ACTIONS(3949), - [sym_undefined] = ACTIONS(3949), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_any] = ACTIONS(3945), - [anon_sym_number] = ACTIONS(3945), - [anon_sym_boolean] = ACTIONS(3945), - [anon_sym_string] = ACTIONS(3945), - [anon_sym_symbol] = ACTIONS(3945), - [anon_sym_object] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(3963), - [anon_sym_unique] = ACTIONS(3965), - [anon_sym_unknown] = ACTIONS(3945), - [anon_sym_never] = ACTIONS(3945), - [anon_sym_LBRACE_PIPE] = ACTIONS(3927), - [sym_html_comment] = ACTIONS(5), - }, - [2001] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(2001), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(4220), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_html_comment] = ACTIONS(5), + }, + [1857] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1857), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5274), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -224685,52 +212551,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [2002] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(2002), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4038), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1858] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1858), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5481), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -224772,36 +212638,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [2003] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(2003), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4022), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1859] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1859), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(4770), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -224843,36 +212709,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [2004] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(2004), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4037), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1860] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1860), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3835), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -224914,36 +212780,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [2005] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(2005), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(4019), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1861] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1861), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(5271), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), + [sym_identifier] = ACTIONS(1983), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), + [anon_sym_typeof] = ACTIONS(1985), + [anon_sym_const] = ACTIONS(1357), + [anon_sym_LPAREN] = ACTIONS(1987), + [anon_sym_LBRACK] = ACTIONS(1989), + [anon_sym_DQUOTE] = ACTIONS(1991), + [anon_sym_SQUOTE] = ACTIONS(1993), + [anon_sym_new] = ACTIONS(1995), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), + [anon_sym_PLUS] = ACTIONS(1997), + [anon_sym_DASH] = ACTIONS(1997), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(1395), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1999), + [sym_number] = ACTIONS(2001), + [sym_this] = ACTIONS(2003), + [sym_true] = ACTIONS(2001), + [sym_false] = ACTIONS(2001), + [sym_null] = ACTIONS(2001), + [sym_undefined] = ACTIONS(2001), + [anon_sym_readonly] = ACTIONS(2005), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1862] = { + [sym_nested_identifier] = STATE(6973), + [sym_string] = STATE(2430), + [sym_comment] = STATE(1862), + [sym_formal_parameters] = STATE(7150), + [sym_nested_type_identifier] = STATE(2302), + [sym__type] = STATE(2409), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2427), + [sym_template_literal_type] = STATE(2426), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2426), + [sym_generic_type] = STATE(2426), + [sym_type_query] = STATE(2426), + [sym_index_type_query] = STATE(2426), + [sym_lookup_type] = STATE(2426), + [sym_literal_type] = STATE(2426), + [sym__number] = STATE(2422), + [sym_existential_type] = STATE(2426), + [sym_flow_maybe_type] = STATE(2426), + [sym_parenthesized_type] = STATE(2426), + [sym_predefined_type] = STATE(2426), + [sym_object_type] = STATE(2426), + [sym_type_parameters] = STATE(6889), + [sym_array_type] = STATE(2426), + [sym_tuple_type] = STATE(2426), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2426), + [sym_intersection_type] = STATE(2426), + [sym_function_type] = STATE(2428), + [sym_identifier] = ACTIONS(4135), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3905), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), + [sym_this] = ACTIONS(4137), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_html_comment] = ACTIONS(5), + }, + [1863] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1863), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(5598), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -224985,36 +212993,178 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [2006] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(2006), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5535), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1864] = { + [sym_nested_identifier] = STATE(7006), + [sym_string] = STATE(4247), + [sym_comment] = STATE(1864), + [sym_formal_parameters] = STATE(7134), + [sym_nested_type_identifier] = STATE(4103), + [sym__type] = STATE(4211), + [sym_constructor_type] = STATE(4153), + [sym__primary_type] = STATE(4154), + [sym_template_literal_type] = STATE(4155), + [sym_infer_type] = STATE(4153), + [sym_conditional_type] = STATE(4155), + [sym_generic_type] = STATE(4155), + [sym_type_query] = STATE(4155), + [sym_index_type_query] = STATE(4155), + [sym_lookup_type] = STATE(4155), + [sym_literal_type] = STATE(4155), + [sym__number] = STATE(4156), + [sym_existential_type] = STATE(4155), + [sym_flow_maybe_type] = STATE(4155), + [sym_parenthesized_type] = STATE(4155), + [sym_predefined_type] = STATE(4155), + [sym_object_type] = STATE(4155), + [sym_type_parameters] = STATE(6916), + [sym_array_type] = STATE(4155), + [sym_tuple_type] = STATE(4155), + [sym_readonly_type] = STATE(4153), + [sym_union_type] = STATE(4155), + [sym_intersection_type] = STATE(4155), + [sym_function_type] = STATE(4153), + [sym_identifier] = ACTIONS(4143), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_typeof] = ACTIONS(3747), + [anon_sym_const] = ACTIONS(3749), + [anon_sym_LPAREN] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3755), + [anon_sym_SQUOTE] = ACTIONS(3757), + [anon_sym_new] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_PIPE] = ACTIONS(3763), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3767), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3769), + [sym_number] = ACTIONS(3771), + [sym_this] = ACTIONS(4145), + [sym_true] = ACTIONS(3771), + [sym_false] = ACTIONS(3771), + [sym_null] = ACTIONS(3771), + [sym_undefined] = ACTIONS(3771), + [anon_sym_readonly] = ACTIONS(3775), + [anon_sym_QMARK] = ACTIONS(3777), + [anon_sym_any] = ACTIONS(3767), + [anon_sym_number] = ACTIONS(3767), + [anon_sym_boolean] = ACTIONS(3767), + [anon_sym_string] = ACTIONS(3767), + [anon_sym_symbol] = ACTIONS(3767), + [anon_sym_object] = ACTIONS(3767), + [anon_sym_abstract] = ACTIONS(3779), + [anon_sym_infer] = ACTIONS(3783), + [anon_sym_keyof] = ACTIONS(3785), + [anon_sym_unique] = ACTIONS(3787), + [anon_sym_unknown] = ACTIONS(3767), + [anon_sym_never] = ACTIONS(3767), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [sym_html_comment] = ACTIONS(5), + }, + [1865] = { + [sym_nested_identifier] = STATE(7006), + [sym_string] = STATE(4247), + [sym_comment] = STATE(1865), + [sym_formal_parameters] = STATE(7134), + [sym_nested_type_identifier] = STATE(4103), + [sym__type] = STATE(4297), + [sym_constructor_type] = STATE(4153), + [sym__primary_type] = STATE(4154), + [sym_template_literal_type] = STATE(4155), + [sym_infer_type] = STATE(4153), + [sym_conditional_type] = STATE(4155), + [sym_generic_type] = STATE(4155), + [sym_type_query] = STATE(4155), + [sym_index_type_query] = STATE(4155), + [sym_lookup_type] = STATE(4155), + [sym_literal_type] = STATE(4155), + [sym__number] = STATE(4156), + [sym_existential_type] = STATE(4155), + [sym_flow_maybe_type] = STATE(4155), + [sym_parenthesized_type] = STATE(4155), + [sym_predefined_type] = STATE(4155), + [sym_object_type] = STATE(4155), + [sym_type_parameters] = STATE(6916), + [sym_array_type] = STATE(4155), + [sym_tuple_type] = STATE(4155), + [sym_readonly_type] = STATE(4153), + [sym_union_type] = STATE(4155), + [sym_intersection_type] = STATE(4155), + [sym_function_type] = STATE(4153), + [sym_identifier] = ACTIONS(4143), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_typeof] = ACTIONS(3747), + [anon_sym_const] = ACTIONS(3749), + [anon_sym_LPAREN] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3755), + [anon_sym_SQUOTE] = ACTIONS(3757), + [anon_sym_new] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_PIPE] = ACTIONS(3763), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3767), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3769), + [sym_number] = ACTIONS(3771), + [sym_this] = ACTIONS(4145), + [sym_true] = ACTIONS(3771), + [sym_false] = ACTIONS(3771), + [sym_null] = ACTIONS(3771), + [sym_undefined] = ACTIONS(3771), + [anon_sym_readonly] = ACTIONS(3775), + [anon_sym_QMARK] = ACTIONS(3777), + [anon_sym_any] = ACTIONS(3767), + [anon_sym_number] = ACTIONS(3767), + [anon_sym_boolean] = ACTIONS(3767), + [anon_sym_string] = ACTIONS(3767), + [anon_sym_symbol] = ACTIONS(3767), + [anon_sym_object] = ACTIONS(3767), + [anon_sym_abstract] = ACTIONS(3779), + [anon_sym_infer] = ACTIONS(3783), + [anon_sym_keyof] = ACTIONS(3785), + [anon_sym_unique] = ACTIONS(3787), + [anon_sym_unknown] = ACTIONS(3767), + [anon_sym_never] = ACTIONS(3767), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [sym_html_comment] = ACTIONS(5), + }, + [1866] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1866), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3787), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -225056,107 +213206,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [2007] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(2007), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(4223), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [2008] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(2008), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5704), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), + [1867] = { + [sym_nested_identifier] = STATE(7246), + [sym_string] = STATE(3848), + [sym_comment] = STATE(1867), + [sym_formal_parameters] = STATE(7245), + [sym_nested_type_identifier] = STATE(3759), + [sym__type] = STATE(3792), + [sym_constructor_type] = STATE(3865), + [sym__primary_type] = STATE(3866), + [sym_template_literal_type] = STATE(3867), + [sym_infer_type] = STATE(3865), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3880), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(6477), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(3865), + [sym_union_type] = STATE(3867), + [sym_intersection_type] = STATE(3867), + [sym_function_type] = STATE(3865), [sym_identifier] = ACTIONS(1957), [anon_sym_STAR] = ACTIONS(113), [anon_sym_LBRACE] = ACTIONS(208), @@ -225198,194 +213277,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(208), [sym_html_comment] = ACTIONS(5), }, - [2009] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(2009), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(4222), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [2010] = { - [sym_nested_identifier] = STATE(7157), - [sym_string] = STATE(2499), - [sym_comment] = STATE(2010), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(2449), - [sym__type] = STATE(6000), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(2553), - [sym_template_literal_type] = STATE(2467), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(2467), - [sym_generic_type] = STATE(2467), - [sym_type_query] = STATE(2467), - [sym_index_type_query] = STATE(2467), - [sym_lookup_type] = STATE(2467), - [sym_literal_type] = STATE(2467), - [sym__number] = STATE(2576), - [sym_existential_type] = STATE(2467), - [sym_flow_maybe_type] = STATE(2467), - [sym_parenthesized_type] = STATE(2467), - [sym_predefined_type] = STATE(2467), - [sym_object_type] = STATE(2467), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(2467), - [sym_tuple_type] = STATE(2467), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(2467), - [sym_intersection_type] = STATE(2467), - [sym_function_type] = STATE(3975), + [1868] = { + [sym_nested_identifier] = STATE(6973), + [sym_string] = STATE(2430), + [sym_comment] = STATE(1868), + [sym_formal_parameters] = STATE(7150), + [sym_nested_type_identifier] = STATE(2302), + [sym__type] = STATE(2410), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2427), + [sym_template_literal_type] = STATE(2426), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2426), + [sym_generic_type] = STATE(2426), + [sym_type_query] = STATE(2426), + [sym_index_type_query] = STATE(2426), + [sym_lookup_type] = STATE(2426), + [sym_literal_type] = STATE(2426), + [sym__number] = STATE(2422), + [sym_existential_type] = STATE(2426), + [sym_flow_maybe_type] = STATE(2426), + [sym_parenthesized_type] = STATE(2426), + [sym_predefined_type] = STATE(2426), + [sym_object_type] = STATE(2426), + [sym_type_parameters] = STATE(6889), + [sym_array_type] = STATE(2426), + [sym_tuple_type] = STATE(2426), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2426), + [sym_intersection_type] = STATE(2426), + [sym_function_type] = STATE(2428), [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_typeof] = ACTIONS(3929), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3945), + [anon_sym_void] = ACTIONS(3905), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3947), - [sym_number] = ACTIONS(3949), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3949), - [sym_false] = ACTIONS(3949), - [sym_null] = ACTIONS(3949), - [sym_undefined] = ACTIONS(3949), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_any] = ACTIONS(3945), - [anon_sym_number] = ACTIONS(3945), - [anon_sym_boolean] = ACTIONS(3945), - [anon_sym_string] = ACTIONS(3945), - [anon_sym_symbol] = ACTIONS(3945), - [anon_sym_object] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(3963), - [anon_sym_unique] = ACTIONS(3965), - [anon_sym_unknown] = ACTIONS(3945), - [anon_sym_never] = ACTIONS(3945), - [anon_sym_LBRACE_PIPE] = ACTIONS(3927), - [sym_html_comment] = ACTIONS(5), - }, - [2011] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(2011), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(5093), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), + [sym_html_comment] = ACTIONS(5), + }, + [1869] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1869), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4098), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -225395,565 +213403,281 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [2012] = { - [sym_nested_identifier] = STATE(7157), - [sym_string] = STATE(2499), - [sym_comment] = STATE(2012), - [sym_formal_parameters] = STATE(7383), - [sym_nested_type_identifier] = STATE(2449), - [sym__type] = STATE(2472), - [sym_constructor_type] = STATE(2482), - [sym__primary_type] = STATE(2493), - [sym_template_literal_type] = STATE(2467), - [sym_infer_type] = STATE(2482), - [sym_conditional_type] = STATE(2467), - [sym_generic_type] = STATE(2467), - [sym_type_query] = STATE(2467), - [sym_index_type_query] = STATE(2467), - [sym_lookup_type] = STATE(2467), - [sym_literal_type] = STATE(2467), - [sym__number] = STATE(2576), - [sym_existential_type] = STATE(2467), - [sym_flow_maybe_type] = STATE(2467), - [sym_parenthesized_type] = STATE(2467), - [sym_predefined_type] = STATE(2467), - [sym_object_type] = STATE(2467), - [sym_type_parameters] = STATE(7072), - [sym_array_type] = STATE(2467), - [sym_tuple_type] = STATE(2467), - [sym_readonly_type] = STATE(2482), - [sym_union_type] = STATE(2467), - [sym_intersection_type] = STATE(2467), - [sym_function_type] = STATE(2482), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1870] = { + [sym_nested_identifier] = STATE(6973), + [sym_string] = STATE(2430), + [sym_comment] = STATE(1870), + [sym_formal_parameters] = STATE(7150), + [sym_nested_type_identifier] = STATE(2302), + [sym__type] = STATE(2340), + [sym_constructor_type] = STATE(2428), + [sym__primary_type] = STATE(2427), + [sym_template_literal_type] = STATE(2426), + [sym_infer_type] = STATE(2428), + [sym_conditional_type] = STATE(2426), + [sym_generic_type] = STATE(2426), + [sym_type_query] = STATE(2426), + [sym_index_type_query] = STATE(2426), + [sym_lookup_type] = STATE(2426), + [sym_literal_type] = STATE(2426), + [sym__number] = STATE(2422), + [sym_existential_type] = STATE(2426), + [sym_flow_maybe_type] = STATE(2426), + [sym_parenthesized_type] = STATE(2426), + [sym_predefined_type] = STATE(2426), + [sym_object_type] = STATE(2426), + [sym_type_parameters] = STATE(6889), + [sym_array_type] = STATE(2426), + [sym_tuple_type] = STATE(2426), + [sym_readonly_type] = STATE(2428), + [sym_union_type] = STATE(2426), + [sym_intersection_type] = STATE(2426), + [sym_function_type] = STATE(2428), [sym_identifier] = ACTIONS(4135), - [anon_sym_STAR] = ACTIONS(3925), - [anon_sym_LBRACE] = ACTIONS(3927), - [anon_sym_typeof] = ACTIONS(3929), - [anon_sym_const] = ACTIONS(3931), - [anon_sym_LPAREN] = ACTIONS(3933), - [anon_sym_LBRACK] = ACTIONS(3935), + [anon_sym_STAR] = ACTIONS(3885), + [anon_sym_LBRACE] = ACTIONS(3887), + [anon_sym_typeof] = ACTIONS(3889), + [anon_sym_const] = ACTIONS(3891), + [anon_sym_LPAREN] = ACTIONS(3893), + [anon_sym_LBRACK] = ACTIONS(3895), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_new] = ACTIONS(3937), - [anon_sym_AMP] = ACTIONS(3939), - [anon_sym_PIPE] = ACTIONS(3941), - [anon_sym_PLUS] = ACTIONS(3943), - [anon_sym_DASH] = ACTIONS(3943), + [anon_sym_new] = ACTIONS(3897), + [anon_sym_AMP] = ACTIONS(3899), + [anon_sym_PIPE] = ACTIONS(3901), + [anon_sym_PLUS] = ACTIONS(3903), + [anon_sym_DASH] = ACTIONS(3903), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3945), + [anon_sym_void] = ACTIONS(3905), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3947), - [sym_number] = ACTIONS(3949), + [anon_sym_BQUOTE] = ACTIONS(3907), + [sym_number] = ACTIONS(3909), [sym_this] = ACTIONS(4137), - [sym_true] = ACTIONS(3949), - [sym_false] = ACTIONS(3949), - [sym_null] = ACTIONS(3949), - [sym_undefined] = ACTIONS(3949), - [anon_sym_readonly] = ACTIONS(3953), - [anon_sym_QMARK] = ACTIONS(3955), - [anon_sym_any] = ACTIONS(3945), - [anon_sym_number] = ACTIONS(3945), - [anon_sym_boolean] = ACTIONS(3945), - [anon_sym_string] = ACTIONS(3945), - [anon_sym_symbol] = ACTIONS(3945), - [anon_sym_object] = ACTIONS(3945), - [anon_sym_abstract] = ACTIONS(3957), - [anon_sym_infer] = ACTIONS(3961), - [anon_sym_keyof] = ACTIONS(3963), - [anon_sym_unique] = ACTIONS(3965), - [anon_sym_unknown] = ACTIONS(3945), - [anon_sym_never] = ACTIONS(3945), - [anon_sym_LBRACE_PIPE] = ACTIONS(3927), - [sym_html_comment] = ACTIONS(5), - }, - [2013] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(2013), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(5457), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [2014] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(2014), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(5537), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [sym_true] = ACTIONS(3909), + [sym_false] = ACTIONS(3909), + [sym_null] = ACTIONS(3909), + [sym_undefined] = ACTIONS(3909), + [anon_sym_readonly] = ACTIONS(3913), + [anon_sym_QMARK] = ACTIONS(3915), + [anon_sym_any] = ACTIONS(3905), + [anon_sym_number] = ACTIONS(3905), + [anon_sym_boolean] = ACTIONS(3905), + [anon_sym_string] = ACTIONS(3905), + [anon_sym_symbol] = ACTIONS(3905), + [anon_sym_object] = ACTIONS(3905), + [anon_sym_abstract] = ACTIONS(3917), + [anon_sym_infer] = ACTIONS(3921), + [anon_sym_keyof] = ACTIONS(3923), + [anon_sym_unique] = ACTIONS(3925), + [anon_sym_unknown] = ACTIONS(3905), + [anon_sym_never] = ACTIONS(3905), + [anon_sym_LBRACE_PIPE] = ACTIONS(3887), [sym_html_comment] = ACTIONS(5), }, - [2015] = { - [sym_nested_identifier] = STATE(7360), - [sym_string] = STATE(3048), - [sym_comment] = STATE(2015), - [sym_formal_parameters] = STATE(7424), - [sym_nested_type_identifier] = STATE(2840), - [sym__type] = STATE(3106), - [sym_constructor_type] = STATE(3044), - [sym__primary_type] = STATE(3039), - [sym_template_literal_type] = STATE(3036), - [sym_infer_type] = STATE(3044), - [sym_conditional_type] = STATE(3036), - [sym_generic_type] = STATE(3036), - [sym_type_query] = STATE(3036), - [sym_index_type_query] = STATE(3036), - [sym_lookup_type] = STATE(3036), - [sym_literal_type] = STATE(3036), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3036), - [sym_flow_maybe_type] = STATE(3036), - [sym_parenthesized_type] = STATE(3036), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(3036), - [sym_type_parameters] = STATE(6722), - [sym_array_type] = STATE(3036), - [sym_tuple_type] = STATE(3036), - [sym_readonly_type] = STATE(3044), - [sym_union_type] = STATE(3036), - [sym_intersection_type] = STATE(3036), - [sym_function_type] = STATE(3044), - [sym_identifier] = ACTIONS(4131), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3883), - [anon_sym_typeof] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3891), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3901), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3903), - [sym_number] = ACTIONS(3905), - [sym_this] = ACTIONS(4133), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_null] = ACTIONS(3905), - [sym_undefined] = ACTIONS(3905), - [anon_sym_readonly] = ACTIONS(3909), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_any] = ACTIONS(3901), - [anon_sym_number] = ACTIONS(3901), - [anon_sym_boolean] = ACTIONS(3901), - [anon_sym_string] = ACTIONS(3901), - [anon_sym_symbol] = ACTIONS(3901), - [anon_sym_object] = ACTIONS(3901), - [anon_sym_abstract] = ACTIONS(3913), - [anon_sym_infer] = ACTIONS(3917), - [anon_sym_keyof] = ACTIONS(3919), - [anon_sym_unique] = ACTIONS(3921), - [anon_sym_unknown] = ACTIONS(3901), - [anon_sym_never] = ACTIONS(3901), - [anon_sym_LBRACE_PIPE] = ACTIONS(3883), - [sym_html_comment] = ACTIONS(5), - }, - [2016] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(2016), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(5211), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), - [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), - [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), - [anon_sym_PLUS] = ACTIONS(1997), - [anon_sym_DASH] = ACTIONS(1997), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1999), - [sym_number] = ACTIONS(2001), - [sym_this] = ACTIONS(2003), - [sym_true] = ACTIONS(2001), - [sym_false] = ACTIONS(2001), - [sym_null] = ACTIONS(2001), - [sym_undefined] = ACTIONS(2001), - [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [2017] = { - [sym_nested_identifier] = STATE(7360), - [sym_string] = STATE(3048), - [sym_comment] = STATE(2017), - [sym_formal_parameters] = STATE(7424), - [sym_nested_type_identifier] = STATE(2840), - [sym__type] = STATE(3107), - [sym_constructor_type] = STATE(3044), - [sym__primary_type] = STATE(3039), - [sym_template_literal_type] = STATE(3036), - [sym_infer_type] = STATE(3044), - [sym_conditional_type] = STATE(3036), - [sym_generic_type] = STATE(3036), - [sym_type_query] = STATE(3036), - [sym_index_type_query] = STATE(3036), - [sym_lookup_type] = STATE(3036), - [sym_literal_type] = STATE(3036), - [sym__number] = STATE(3031), - [sym_existential_type] = STATE(3036), - [sym_flow_maybe_type] = STATE(3036), - [sym_parenthesized_type] = STATE(3036), - [sym_predefined_type] = STATE(3036), - [sym_object_type] = STATE(3036), - [sym_type_parameters] = STATE(6722), - [sym_array_type] = STATE(3036), - [sym_tuple_type] = STATE(3036), - [sym_readonly_type] = STATE(3044), - [sym_union_type] = STATE(3036), - [sym_intersection_type] = STATE(3036), - [sym_function_type] = STATE(3044), - [sym_identifier] = ACTIONS(4131), - [anon_sym_STAR] = ACTIONS(3881), - [anon_sym_LBRACE] = ACTIONS(3883), - [anon_sym_typeof] = ACTIONS(3885), - [anon_sym_const] = ACTIONS(3887), - [anon_sym_LPAREN] = ACTIONS(3889), - [anon_sym_LBRACK] = ACTIONS(3891), + [1871] = { + [sym_nested_identifier] = STATE(7198), + [sym_string] = STATE(2867), + [sym_comment] = STATE(1871), + [sym_formal_parameters] = STATE(7145), + [sym_nested_type_identifier] = STATE(2711), + [sym__type] = STATE(2789), + [sym_constructor_type] = STATE(2843), + [sym__primary_type] = STATE(2842), + [sym_template_literal_type] = STATE(2841), + [sym_infer_type] = STATE(2843), + [sym_conditional_type] = STATE(2841), + [sym_generic_type] = STATE(2841), + [sym_type_query] = STATE(2841), + [sym_index_type_query] = STATE(2841), + [sym_lookup_type] = STATE(2841), + [sym_literal_type] = STATE(2841), + [sym__number] = STATE(2835), + [sym_existential_type] = STATE(2841), + [sym_flow_maybe_type] = STATE(2841), + [sym_parenthesized_type] = STATE(2841), + [sym_predefined_type] = STATE(2841), + [sym_object_type] = STATE(2841), + [sym_type_parameters] = STATE(6539), + [sym_array_type] = STATE(2841), + [sym_tuple_type] = STATE(2841), + [sym_readonly_type] = STATE(2843), + [sym_union_type] = STATE(2841), + [sym_intersection_type] = STATE(2841), + [sym_function_type] = STATE(2843), + [sym_identifier] = ACTIONS(4139), + [anon_sym_STAR] = ACTIONS(3929), + [anon_sym_LBRACE] = ACTIONS(3931), + [anon_sym_typeof] = ACTIONS(3933), + [anon_sym_const] = ACTIONS(3935), + [anon_sym_LPAREN] = ACTIONS(3937), + [anon_sym_LBRACK] = ACTIONS(3939), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_new] = ACTIONS(3893), - [anon_sym_AMP] = ACTIONS(3895), - [anon_sym_PIPE] = ACTIONS(3897), - [anon_sym_PLUS] = ACTIONS(3899), - [anon_sym_DASH] = ACTIONS(3899), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3901), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3903), - [sym_number] = ACTIONS(3905), - [sym_this] = ACTIONS(4133), - [sym_true] = ACTIONS(3905), - [sym_false] = ACTIONS(3905), - [sym_null] = ACTIONS(3905), - [sym_undefined] = ACTIONS(3905), - [anon_sym_readonly] = ACTIONS(3909), - [anon_sym_QMARK] = ACTIONS(3911), - [anon_sym_any] = ACTIONS(3901), - [anon_sym_number] = ACTIONS(3901), - [anon_sym_boolean] = ACTIONS(3901), - [anon_sym_string] = ACTIONS(3901), - [anon_sym_symbol] = ACTIONS(3901), - [anon_sym_object] = ACTIONS(3901), - [anon_sym_abstract] = ACTIONS(3913), - [anon_sym_infer] = ACTIONS(3917), - [anon_sym_keyof] = ACTIONS(3919), - [anon_sym_unique] = ACTIONS(3921), - [anon_sym_unknown] = ACTIONS(3901), - [anon_sym_never] = ACTIONS(3901), - [anon_sym_LBRACE_PIPE] = ACTIONS(3883), - [sym_html_comment] = ACTIONS(5), - }, - [2018] = { - [sym_nested_identifier] = STATE(7189), - [sym_string] = STATE(4340), - [sym_comment] = STATE(2018), - [sym_formal_parameters] = STATE(7503), - [sym_nested_type_identifier] = STATE(4262), - [sym__type] = STATE(4329), - [sym_constructor_type] = STATE(4457), - [sym__primary_type] = STATE(4489), - [sym_template_literal_type] = STATE(4482), - [sym_infer_type] = STATE(4457), - [sym_conditional_type] = STATE(4482), - [sym_generic_type] = STATE(4482), - [sym_type_query] = STATE(4482), - [sym_index_type_query] = STATE(4482), - [sym_lookup_type] = STATE(4482), - [sym_literal_type] = STATE(4482), - [sym__number] = STATE(4473), - [sym_existential_type] = STATE(4482), - [sym_flow_maybe_type] = STATE(4482), - [sym_parenthesized_type] = STATE(4482), - [sym_predefined_type] = STATE(4482), - [sym_object_type] = STATE(4482), - [sym_type_parameters] = STATE(7119), - [sym_array_type] = STATE(4482), - [sym_tuple_type] = STATE(4482), - [sym_readonly_type] = STATE(4457), - [sym_union_type] = STATE(4482), - [sym_intersection_type] = STATE(4482), - [sym_function_type] = STATE(4457), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3745), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_typeof] = ACTIONS(3749), - [anon_sym_const] = ACTIONS(3751), - [anon_sym_LPAREN] = ACTIONS(3753), - [anon_sym_LBRACK] = ACTIONS(3755), - [anon_sym_DQUOTE] = ACTIONS(3757), - [anon_sym_SQUOTE] = ACTIONS(3759), - [anon_sym_new] = ACTIONS(3761), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3767), - [anon_sym_DASH] = ACTIONS(3767), + [anon_sym_new] = ACTIONS(3941), + [anon_sym_AMP] = ACTIONS(3943), + [anon_sym_PIPE] = ACTIONS(3945), + [anon_sym_PLUS] = ACTIONS(3947), + [anon_sym_DASH] = ACTIONS(3947), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3769), + [anon_sym_void] = ACTIONS(3949), [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3771), - [sym_number] = ACTIONS(3773), + [anon_sym_BQUOTE] = ACTIONS(3951), + [sym_number] = ACTIONS(3953), [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3773), - [sym_false] = ACTIONS(3773), - [sym_null] = ACTIONS(3773), - [sym_undefined] = ACTIONS(3773), - [anon_sym_readonly] = ACTIONS(3777), - [anon_sym_QMARK] = ACTIONS(3779), - [anon_sym_any] = ACTIONS(3769), - [anon_sym_number] = ACTIONS(3769), - [anon_sym_boolean] = ACTIONS(3769), - [anon_sym_string] = ACTIONS(3769), - [anon_sym_symbol] = ACTIONS(3769), - [anon_sym_object] = ACTIONS(3769), - [anon_sym_abstract] = ACTIONS(3781), - [anon_sym_infer] = ACTIONS(3785), - [anon_sym_keyof] = ACTIONS(3787), - [anon_sym_unique] = ACTIONS(3789), - [anon_sym_unknown] = ACTIONS(3769), - [anon_sym_never] = ACTIONS(3769), - [anon_sym_LBRACE_PIPE] = ACTIONS(3747), - [sym_html_comment] = ACTIONS(5), - }, - [2019] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(2019), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(4250), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [sym_true] = ACTIONS(3953), + [sym_false] = ACTIONS(3953), + [sym_null] = ACTIONS(3953), + [sym_undefined] = ACTIONS(3953), + [anon_sym_readonly] = ACTIONS(3957), + [anon_sym_QMARK] = ACTIONS(3959), + [anon_sym_any] = ACTIONS(3949), + [anon_sym_number] = ACTIONS(3949), + [anon_sym_boolean] = ACTIONS(3949), + [anon_sym_string] = ACTIONS(3949), + [anon_sym_symbol] = ACTIONS(3949), + [anon_sym_object] = ACTIONS(3949), + [anon_sym_abstract] = ACTIONS(3961), + [anon_sym_infer] = ACTIONS(3965), + [anon_sym_keyof] = ACTIONS(3967), + [anon_sym_unique] = ACTIONS(3969), + [anon_sym_unknown] = ACTIONS(3949), + [anon_sym_never] = ACTIONS(3949), + [anon_sym_LBRACE_PIPE] = ACTIONS(3931), + [sym_html_comment] = ACTIONS(5), + }, + [1872] = { + [sym_nested_identifier] = STATE(7006), + [sym_string] = STATE(4247), + [sym_comment] = STATE(1872), + [sym_formal_parameters] = STATE(7134), + [sym_nested_type_identifier] = STATE(4103), + [sym__type] = STATE(4207), + [sym_constructor_type] = STATE(4153), + [sym__primary_type] = STATE(4154), + [sym_template_literal_type] = STATE(4155), + [sym_infer_type] = STATE(4153), + [sym_conditional_type] = STATE(4155), + [sym_generic_type] = STATE(4155), + [sym_type_query] = STATE(4155), + [sym_index_type_query] = STATE(4155), + [sym_lookup_type] = STATE(4155), + [sym_literal_type] = STATE(4155), + [sym__number] = STATE(4156), + [sym_existential_type] = STATE(4155), + [sym_flow_maybe_type] = STATE(4155), + [sym_parenthesized_type] = STATE(4155), + [sym_predefined_type] = STATE(4155), + [sym_object_type] = STATE(4155), + [sym_type_parameters] = STATE(6916), + [sym_array_type] = STATE(4155), + [sym_tuple_type] = STATE(4155), + [sym_readonly_type] = STATE(4153), + [sym_union_type] = STATE(4155), + [sym_intersection_type] = STATE(4155), + [sym_function_type] = STATE(4153), + [sym_identifier] = ACTIONS(4143), + [anon_sym_STAR] = ACTIONS(3743), + [anon_sym_LBRACE] = ACTIONS(3745), + [anon_sym_typeof] = ACTIONS(3747), + [anon_sym_const] = ACTIONS(3749), + [anon_sym_LPAREN] = ACTIONS(3751), + [anon_sym_LBRACK] = ACTIONS(3753), + [anon_sym_DQUOTE] = ACTIONS(3755), + [anon_sym_SQUOTE] = ACTIONS(3757), + [anon_sym_new] = ACTIONS(3759), + [anon_sym_AMP] = ACTIONS(3761), + [anon_sym_PIPE] = ACTIONS(3763), + [anon_sym_PLUS] = ACTIONS(3765), + [anon_sym_DASH] = ACTIONS(3765), + [anon_sym_LT] = ACTIONS(1973), + [anon_sym_void] = ACTIONS(3767), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3769), + [sym_number] = ACTIONS(3771), + [sym_this] = ACTIONS(4145), + [sym_true] = ACTIONS(3771), + [sym_false] = ACTIONS(3771), + [sym_null] = ACTIONS(3771), + [sym_undefined] = ACTIONS(3771), + [anon_sym_readonly] = ACTIONS(3775), + [anon_sym_QMARK] = ACTIONS(3777), + [anon_sym_any] = ACTIONS(3767), + [anon_sym_number] = ACTIONS(3767), + [anon_sym_boolean] = ACTIONS(3767), + [anon_sym_string] = ACTIONS(3767), + [anon_sym_symbol] = ACTIONS(3767), + [anon_sym_object] = ACTIONS(3767), + [anon_sym_abstract] = ACTIONS(3779), + [anon_sym_infer] = ACTIONS(3783), + [anon_sym_keyof] = ACTIONS(3785), + [anon_sym_unique] = ACTIONS(3787), + [anon_sym_unknown] = ACTIONS(3767), + [anon_sym_never] = ACTIONS(3767), + [anon_sym_LBRACE_PIPE] = ACTIONS(3745), + [sym_html_comment] = ACTIONS(5), + }, + [1873] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1873), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4112), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -225963,210 +213687,68 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [2020] = { - [sym_nested_identifier] = STATE(7429), - [sym_string] = STATE(3966), - [sym_comment] = STATE(2020), - [sym_formal_parameters] = STATE(7428), - [sym_nested_type_identifier] = STATE(3903), - [sym__type] = STATE(3960), - [sym_constructor_type] = STATE(3975), - [sym__primary_type] = STATE(3976), - [sym_template_literal_type] = STATE(3978), - [sym_infer_type] = STATE(3975), - [sym_conditional_type] = STATE(3978), - [sym_generic_type] = STATE(3978), - [sym_type_query] = STATE(3978), - [sym_index_type_query] = STATE(3978), - [sym_lookup_type] = STATE(3978), - [sym_literal_type] = STATE(3978), - [sym__number] = STATE(3979), - [sym_existential_type] = STATE(3978), - [sym_flow_maybe_type] = STATE(3978), - [sym_parenthesized_type] = STATE(3978), - [sym_predefined_type] = STATE(3978), - [sym_object_type] = STATE(3978), - [sym_type_parameters] = STATE(6627), - [sym_array_type] = STATE(3978), - [sym_tuple_type] = STATE(3978), - [sym_readonly_type] = STATE(3975), - [sym_union_type] = STATE(3978), - [sym_intersection_type] = STATE(3978), - [sym_function_type] = STATE(3975), - [sym_identifier] = ACTIONS(1957), - [anon_sym_STAR] = ACTIONS(113), - [anon_sym_LBRACE] = ACTIONS(208), - [anon_sym_typeof] = ACTIONS(1959), - [anon_sym_const] = ACTIONS(131), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_new] = ACTIONS(1969), - [anon_sym_AMP] = ACTIONS(164), - [anon_sym_PIPE] = ACTIONS(166), - [anon_sym_PLUS] = ACTIONS(1971), - [anon_sym_DASH] = ACTIONS(1971), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(206), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1975), - [sym_number] = ACTIONS(1977), - [sym_this] = ACTIONS(1979), - [sym_true] = ACTIONS(1977), - [sym_false] = ACTIONS(1977), - [sym_null] = ACTIONS(1977), - [sym_undefined] = ACTIONS(1977), - [anon_sym_readonly] = ACTIONS(1981), - [anon_sym_QMARK] = ACTIONS(194), - [anon_sym_any] = ACTIONS(206), - [anon_sym_number] = ACTIONS(206), - [anon_sym_boolean] = ACTIONS(206), - [anon_sym_string] = ACTIONS(206), - [anon_sym_symbol] = ACTIONS(206), - [anon_sym_object] = ACTIONS(206), - [anon_sym_abstract] = ACTIONS(198), - [anon_sym_infer] = ACTIONS(200), - [anon_sym_keyof] = ACTIONS(202), - [anon_sym_unique] = ACTIONS(204), - [anon_sym_unknown] = ACTIONS(206), - [anon_sym_never] = ACTIONS(206), - [anon_sym_LBRACE_PIPE] = ACTIONS(208), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), [sym_html_comment] = ACTIONS(5), }, - [2021] = { - [sym_nested_identifier] = STATE(7189), - [sym_string] = STATE(4340), - [sym_comment] = STATE(2021), - [sym_formal_parameters] = STATE(7503), - [sym_nested_type_identifier] = STATE(4262), - [sym__type] = STATE(4466), - [sym_constructor_type] = STATE(4457), - [sym__primary_type] = STATE(4489), - [sym_template_literal_type] = STATE(4482), - [sym_infer_type] = STATE(4457), - [sym_conditional_type] = STATE(4482), - [sym_generic_type] = STATE(4482), - [sym_type_query] = STATE(4482), - [sym_index_type_query] = STATE(4482), - [sym_lookup_type] = STATE(4482), - [sym_literal_type] = STATE(4482), - [sym__number] = STATE(4473), - [sym_existential_type] = STATE(4482), - [sym_flow_maybe_type] = STATE(4482), - [sym_parenthesized_type] = STATE(4482), - [sym_predefined_type] = STATE(4482), - [sym_object_type] = STATE(4482), - [sym_type_parameters] = STATE(7119), - [sym_array_type] = STATE(4482), - [sym_tuple_type] = STATE(4482), - [sym_readonly_type] = STATE(4457), - [sym_union_type] = STATE(4482), - [sym_intersection_type] = STATE(4482), - [sym_function_type] = STATE(4457), - [sym_identifier] = ACTIONS(4139), - [anon_sym_STAR] = ACTIONS(3745), - [anon_sym_LBRACE] = ACTIONS(3747), - [anon_sym_typeof] = ACTIONS(3749), - [anon_sym_const] = ACTIONS(3751), - [anon_sym_LPAREN] = ACTIONS(3753), - [anon_sym_LBRACK] = ACTIONS(3755), - [anon_sym_DQUOTE] = ACTIONS(3757), - [anon_sym_SQUOTE] = ACTIONS(3759), - [anon_sym_new] = ACTIONS(3761), - [anon_sym_AMP] = ACTIONS(3763), - [anon_sym_PIPE] = ACTIONS(3765), - [anon_sym_PLUS] = ACTIONS(3767), - [anon_sym_DASH] = ACTIONS(3767), - [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(3769), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3771), - [sym_number] = ACTIONS(3773), - [sym_this] = ACTIONS(4141), - [sym_true] = ACTIONS(3773), - [sym_false] = ACTIONS(3773), - [sym_null] = ACTIONS(3773), - [sym_undefined] = ACTIONS(3773), - [anon_sym_readonly] = ACTIONS(3777), - [anon_sym_QMARK] = ACTIONS(3779), - [anon_sym_any] = ACTIONS(3769), - [anon_sym_number] = ACTIONS(3769), - [anon_sym_boolean] = ACTIONS(3769), - [anon_sym_string] = ACTIONS(3769), - [anon_sym_symbol] = ACTIONS(3769), - [anon_sym_object] = ACTIONS(3769), - [anon_sym_abstract] = ACTIONS(3781), - [anon_sym_infer] = ACTIONS(3785), - [anon_sym_keyof] = ACTIONS(3787), - [anon_sym_unique] = ACTIONS(3789), - [anon_sym_unknown] = ACTIONS(3769), - [anon_sym_never] = ACTIONS(3769), - [anon_sym_LBRACE_PIPE] = ACTIONS(3747), - [sym_html_comment] = ACTIONS(5), - }, - [2022] = { - [sym_nested_identifier] = STATE(7209), - [sym_string] = STATE(4255), - [sym_comment] = STATE(2022), - [sym_formal_parameters] = STATE(7255), - [sym_nested_type_identifier] = STATE(4090), - [sym__type] = STATE(5463), - [sym_constructor_type] = STATE(4260), - [sym__primary_type] = STATE(4214), - [sym_template_literal_type] = STATE(4232), - [sym_infer_type] = STATE(4260), - [sym_conditional_type] = STATE(4232), - [sym_generic_type] = STATE(4232), - [sym_type_query] = STATE(4232), - [sym_index_type_query] = STATE(4232), - [sym_lookup_type] = STATE(4232), - [sym_literal_type] = STATE(4232), - [sym__number] = STATE(4231), - [sym_existential_type] = STATE(4232), - [sym_flow_maybe_type] = STATE(4232), - [sym_parenthesized_type] = STATE(4232), - [sym_predefined_type] = STATE(4232), - [sym_object_type] = STATE(4232), - [sym_type_parameters] = STATE(6952), - [sym_array_type] = STATE(4232), - [sym_tuple_type] = STATE(4232), - [sym_readonly_type] = STATE(4260), - [sym_union_type] = STATE(4232), - [sym_intersection_type] = STATE(4232), - [sym_function_type] = STATE(4260), + [1874] = { + [sym_nested_identifier] = STATE(7039), + [sym_string] = STATE(4090), + [sym_comment] = STATE(1874), + [sym_formal_parameters] = STATE(7114), + [sym_nested_type_identifier] = STATE(3972), + [sym__type] = STATE(4109), + [sym_constructor_type] = STATE(4087), + [sym__primary_type] = STATE(4085), + [sym_template_literal_type] = STATE(4072), + [sym_infer_type] = STATE(4087), + [sym_conditional_type] = STATE(4072), + [sym_generic_type] = STATE(4072), + [sym_type_query] = STATE(4072), + [sym_index_type_query] = STATE(4072), + [sym_lookup_type] = STATE(4072), + [sym_literal_type] = STATE(4072), + [sym__number] = STATE(4067), + [sym_existential_type] = STATE(4072), + [sym_flow_maybe_type] = STATE(4072), + [sym_parenthesized_type] = STATE(4072), + [sym_predefined_type] = STATE(4072), + [sym_object_type] = STATE(4072), + [sym_type_parameters] = STATE(6769), + [sym_array_type] = STATE(4072), + [sym_tuple_type] = STATE(4072), + [sym_readonly_type] = STATE(4087), + [sym_union_type] = STATE(4072), + [sym_intersection_type] = STATE(4072), + [sym_function_type] = STATE(4087), [sym_identifier] = ACTIONS(1983), - [anon_sym_STAR] = ACTIONS(1331), - [anon_sym_LBRACE] = ACTIONS(1377), + [anon_sym_STAR] = ACTIONS(1351), + [anon_sym_LBRACE] = ACTIONS(1397), [anon_sym_typeof] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1337), + [anon_sym_const] = ACTIONS(1357), [anon_sym_LPAREN] = ACTIONS(1987), [anon_sym_LBRACK] = ACTIONS(1989), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), [anon_sym_new] = ACTIONS(1995), - [anon_sym_AMP] = ACTIONS(1345), - [anon_sym_PIPE] = ACTIONS(1347), + [anon_sym_AMP] = ACTIONS(1365), + [anon_sym_PIPE] = ACTIONS(1367), [anon_sym_PLUS] = ACTIONS(1997), [anon_sym_DASH] = ACTIONS(1997), [anon_sym_LT] = ACTIONS(1973), - [anon_sym_void] = ACTIONS(1375), + [anon_sym_void] = ACTIONS(1395), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(1999), [sym_number] = ACTIONS(2001), @@ -226176,28 +213758,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(2001), [sym_undefined] = ACTIONS(2001), [anon_sym_readonly] = ACTIONS(2005), - [anon_sym_QMARK] = ACTIONS(1363), - [anon_sym_any] = ACTIONS(1375), - [anon_sym_number] = ACTIONS(1375), - [anon_sym_boolean] = ACTIONS(1375), - [anon_sym_string] = ACTIONS(1375), - [anon_sym_symbol] = ACTIONS(1375), - [anon_sym_object] = ACTIONS(1375), - [anon_sym_abstract] = ACTIONS(1367), - [anon_sym_infer] = ACTIONS(1369), - [anon_sym_keyof] = ACTIONS(1371), - [anon_sym_unique] = ACTIONS(1373), - [anon_sym_unknown] = ACTIONS(1375), - [anon_sym_never] = ACTIONS(1375), - [anon_sym_LBRACE_PIPE] = ACTIONS(1377), - [sym_html_comment] = ACTIONS(5), - }, - [2023] = { - [sym_nested_identifier] = STATE(2469), - [sym_string] = STATE(2489), - [sym_comment] = STATE(2023), - [sym__module] = STATE(2669), - [sym_identifier] = ACTIONS(4147), + [anon_sym_QMARK] = ACTIONS(1383), + [anon_sym_any] = ACTIONS(1395), + [anon_sym_number] = ACTIONS(1395), + [anon_sym_boolean] = ACTIONS(1395), + [anon_sym_string] = ACTIONS(1395), + [anon_sym_symbol] = ACTIONS(1395), + [anon_sym_object] = ACTIONS(1395), + [anon_sym_abstract] = ACTIONS(1387), + [anon_sym_infer] = ACTIONS(1389), + [anon_sym_keyof] = ACTIONS(1391), + [anon_sym_unique] = ACTIONS(1393), + [anon_sym_unknown] = ACTIONS(1395), + [anon_sym_never] = ACTIONS(1395), + [anon_sym_LBRACE_PIPE] = ACTIONS(1397), + [sym_html_comment] = ACTIONS(5), + }, + [1875] = { + [sym_nested_identifier] = STATE(2434), + [sym_string] = STATE(2315), + [sym_comment] = STATE(1875), + [sym__module] = STATE(2634), + [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), [anon_sym_EQ] = ACTIONS(212), [anon_sym_as] = ACTIONS(118), @@ -226262,12 +213844,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2024] = { - [sym_nested_identifier] = STATE(2469), - [sym_string] = STATE(2489), - [sym_comment] = STATE(2024), - [sym__module] = STATE(2669), - [sym_identifier] = ACTIONS(4147), + [1876] = { + [sym_nested_identifier] = STATE(2434), + [sym_string] = STATE(2315), + [sym_comment] = STATE(1876), + [sym__module] = STATE(2634), + [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), @@ -226332,165 +213914,165 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2025] = { - [sym_export_statement] = STATE(4849), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6695), - [sym_array_pattern] = STATE(4344), - [sym__call_signature] = STATE(5291), - [sym__destructuring_pattern] = STATE(7382), - [sym_spread_element] = STATE(6696), - [sym_string] = STATE(4240), - [sym_comment] = STATE(2025), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4276), - [sym_rest_pattern] = STATE(6695), - [sym_method_definition] = STATE(6696), - [sym_pair] = STATE(6696), - [sym_pair_pattern] = STATE(6695), - [sym__property_name] = STATE(4086), - [sym_computed_property_name] = STATE(4240), - [sym_method_signature] = STATE(4849), - [sym_accessibility_modifier] = STATE(3756), - [sym_override_modifier] = STATE(3769), - [sym_call_signature] = STATE(4849), - [sym_property_signature] = STATE(4849), - [sym_type_parameters] = STATE(6903), - [sym_construct_signature] = STATE(4849), - [sym_index_signature] = STATE(4849), - [aux_sym_export_statement_repeat1] = STATE(5606), - [sym_identifier] = ACTIONS(4149), - [anon_sym_export] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(3971), - [anon_sym_type] = ACTIONS(4149), - [anon_sym_namespace] = ACTIONS(4149), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(4153), - [anon_sym_RBRACE] = ACTIONS(4153), - [anon_sym_let] = ACTIONS(4149), - [anon_sym_LPAREN] = ACTIONS(3979), - [anon_sym_LBRACK] = ACTIONS(3983), + [1877] = { + [sym_export_statement] = STATE(4843), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(6537), + [sym_array_pattern] = STATE(4286), + [sym__call_signature] = STATE(5009), + [sym__destructuring_pattern] = STATE(7199), + [sym_spread_element] = STATE(6538), + [sym_string] = STATE(4102), + [sym_comment] = STATE(1877), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4128), + [sym_rest_pattern] = STATE(6537), + [sym_method_definition] = STATE(6538), + [sym_pair] = STATE(6538), + [sym_pair_pattern] = STATE(6537), + [sym__property_name] = STATE(3981), + [sym_computed_property_name] = STATE(4102), + [sym_method_signature] = STATE(4843), + [sym_accessibility_modifier] = STATE(3566), + [sym_override_modifier] = STATE(3630), + [sym_call_signature] = STATE(4843), + [sym_property_signature] = STATE(4843), + [sym_type_parameters] = STATE(6358), + [sym_construct_signature] = STATE(4843), + [sym_index_signature] = STATE(4843), + [aux_sym_export_statement_repeat1] = STATE(5525), + [sym_identifier] = ACTIONS(4153), + [anon_sym_export] = ACTIONS(4155), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_type] = ACTIONS(4153), + [anon_sym_namespace] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(4157), + [anon_sym_RBRACE] = ACTIONS(4157), + [anon_sym_let] = ACTIONS(4153), + [anon_sym_LPAREN] = ACTIONS(3983), + [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4156), - [anon_sym_new] = ACTIONS(4158), + [anon_sym_async] = ACTIONS(4160), + [anon_sym_new] = ACTIONS(4162), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3989), - [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), [anon_sym_LT] = ACTIONS(1973), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3991), - [sym_private_property_identifier] = ACTIONS(3991), + [sym_number] = ACTIONS(3995), + [sym_private_property_identifier] = ACTIONS(3995), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_readonly] = ACTIONS(4162), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_declare] = ACTIONS(4149), - [anon_sym_public] = ACTIONS(4166), - [anon_sym_private] = ACTIONS(4166), - [anon_sym_protected] = ACTIONS(4166), - [anon_sym_override] = ACTIONS(4168), - [anon_sym_module] = ACTIONS(4149), - [anon_sym_any] = ACTIONS(4149), - [anon_sym_number] = ACTIONS(4149), - [anon_sym_boolean] = ACTIONS(4149), - [anon_sym_string] = ACTIONS(4149), - [anon_sym_symbol] = ACTIONS(4149), - [anon_sym_object] = ACTIONS(4149), - [anon_sym_abstract] = ACTIONS(4003), - [sym_html_comment] = ACTIONS(5), - }, - [2026] = { - [sym_export_statement] = STATE(4841), - [sym_object_pattern] = STATE(4344), - [sym_object_assignment_pattern] = STATE(6695), - [sym_array_pattern] = STATE(4344), - [sym__call_signature] = STATE(5291), - [sym__destructuring_pattern] = STATE(7382), - [sym_spread_element] = STATE(6696), - [sym_string] = STATE(4240), - [sym_comment] = STATE(2026), - [sym_decorator] = STATE(5733), - [sym_formal_parameters] = STATE(4276), - [sym_rest_pattern] = STATE(6695), - [sym_method_definition] = STATE(6696), - [sym_pair] = STATE(6696), - [sym_pair_pattern] = STATE(6695), - [sym__property_name] = STATE(4086), - [sym_computed_property_name] = STATE(4240), - [sym_method_signature] = STATE(4841), - [sym_accessibility_modifier] = STATE(3756), - [sym_override_modifier] = STATE(3769), - [sym_call_signature] = STATE(4841), - [sym_property_signature] = STATE(4841), - [sym_type_parameters] = STATE(6903), - [sym_construct_signature] = STATE(4841), - [sym_index_signature] = STATE(4841), - [aux_sym_export_statement_repeat1] = STATE(5606), - [sym_identifier] = ACTIONS(4149), - [anon_sym_export] = ACTIONS(4151), - [anon_sym_STAR] = ACTIONS(3971), - [anon_sym_type] = ACTIONS(4149), - [anon_sym_namespace] = ACTIONS(4149), - [anon_sym_LBRACE] = ACTIONS(3973), - [anon_sym_COMMA] = ACTIONS(4153), - [anon_sym_RBRACE] = ACTIONS(4153), - [anon_sym_let] = ACTIONS(4149), - [anon_sym_LPAREN] = ACTIONS(3979), - [anon_sym_LBRACK] = ACTIONS(3983), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_readonly] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4168), + [anon_sym_set] = ACTIONS(4168), + [anon_sym_declare] = ACTIONS(4153), + [anon_sym_public] = ACTIONS(4170), + [anon_sym_private] = ACTIONS(4170), + [anon_sym_protected] = ACTIONS(4170), + [anon_sym_override] = ACTIONS(4172), + [anon_sym_module] = ACTIONS(4153), + [anon_sym_any] = ACTIONS(4153), + [anon_sym_number] = ACTIONS(4153), + [anon_sym_boolean] = ACTIONS(4153), + [anon_sym_string] = ACTIONS(4153), + [anon_sym_symbol] = ACTIONS(4153), + [anon_sym_object] = ACTIONS(4153), + [anon_sym_abstract] = ACTIONS(4007), + [sym_html_comment] = ACTIONS(5), + }, + [1878] = { + [sym_export_statement] = STATE(4687), + [sym_object_pattern] = STATE(4286), + [sym_object_assignment_pattern] = STATE(6537), + [sym_array_pattern] = STATE(4286), + [sym__call_signature] = STATE(5009), + [sym__destructuring_pattern] = STATE(7199), + [sym_spread_element] = STATE(6538), + [sym_string] = STATE(4102), + [sym_comment] = STATE(1878), + [sym_decorator] = STATE(5596), + [sym_formal_parameters] = STATE(4128), + [sym_rest_pattern] = STATE(6537), + [sym_method_definition] = STATE(6538), + [sym_pair] = STATE(6538), + [sym_pair_pattern] = STATE(6537), + [sym__property_name] = STATE(3981), + [sym_computed_property_name] = STATE(4102), + [sym_method_signature] = STATE(4687), + [sym_accessibility_modifier] = STATE(3566), + [sym_override_modifier] = STATE(3630), + [sym_call_signature] = STATE(4687), + [sym_property_signature] = STATE(4687), + [sym_type_parameters] = STATE(6358), + [sym_construct_signature] = STATE(4687), + [sym_index_signature] = STATE(4687), + [aux_sym_export_statement_repeat1] = STATE(5525), + [sym_identifier] = ACTIONS(4153), + [anon_sym_export] = ACTIONS(4155), + [anon_sym_STAR] = ACTIONS(3975), + [anon_sym_type] = ACTIONS(4153), + [anon_sym_namespace] = ACTIONS(4153), + [anon_sym_LBRACE] = ACTIONS(3977), + [anon_sym_COMMA] = ACTIONS(4157), + [anon_sym_RBRACE] = ACTIONS(4157), + [anon_sym_let] = ACTIONS(4153), + [anon_sym_LPAREN] = ACTIONS(3983), + [anon_sym_LBRACK] = ACTIONS(3987), [anon_sym_DQUOTE] = ACTIONS(1991), [anon_sym_SQUOTE] = ACTIONS(1993), - [anon_sym_async] = ACTIONS(4156), - [anon_sym_new] = ACTIONS(4158), + [anon_sym_async] = ACTIONS(4160), + [anon_sym_new] = ACTIONS(4162), [anon_sym_DOT_DOT_DOT] = ACTIONS(241), - [anon_sym_PLUS] = ACTIONS(3989), - [anon_sym_DASH] = ACTIONS(3989), + [anon_sym_PLUS] = ACTIONS(3993), + [anon_sym_DASH] = ACTIONS(3993), [anon_sym_LT] = ACTIONS(1973), [aux_sym_comment_token1] = ACTIONS(3), - [sym_number] = ACTIONS(3991), - [sym_private_property_identifier] = ACTIONS(3991), + [sym_number] = ACTIONS(3995), + [sym_private_property_identifier] = ACTIONS(3995), [anon_sym_AT] = ACTIONS(95), - [anon_sym_static] = ACTIONS(4160), - [anon_sym_readonly] = ACTIONS(4162), - [anon_sym_get] = ACTIONS(4164), - [anon_sym_set] = ACTIONS(4164), - [anon_sym_declare] = ACTIONS(4149), - [anon_sym_public] = ACTIONS(4166), - [anon_sym_private] = ACTIONS(4166), - [anon_sym_protected] = ACTIONS(4166), - [anon_sym_override] = ACTIONS(4168), - [anon_sym_module] = ACTIONS(4149), - [anon_sym_any] = ACTIONS(4149), - [anon_sym_number] = ACTIONS(4149), - [anon_sym_boolean] = ACTIONS(4149), - [anon_sym_string] = ACTIONS(4149), - [anon_sym_symbol] = ACTIONS(4149), - [anon_sym_object] = ACTIONS(4149), - [anon_sym_abstract] = ACTIONS(4003), - [sym_html_comment] = ACTIONS(5), - }, - [2027] = { - [sym_variable_declarator] = STATE(5708), - [sym_object_pattern] = STATE(4537), - [sym_array_pattern] = STATE(4537), - [sym__destructuring_pattern] = STATE(4584), - [sym_comment] = STATE(2027), - [sym_identifier] = ACTIONS(4103), + [anon_sym_static] = ACTIONS(4164), + [anon_sym_readonly] = ACTIONS(4166), + [anon_sym_get] = ACTIONS(4168), + [anon_sym_set] = ACTIONS(4168), + [anon_sym_declare] = ACTIONS(4153), + [anon_sym_public] = ACTIONS(4170), + [anon_sym_private] = ACTIONS(4170), + [anon_sym_protected] = ACTIONS(4170), + [anon_sym_override] = ACTIONS(4172), + [anon_sym_module] = ACTIONS(4153), + [anon_sym_any] = ACTIONS(4153), + [anon_sym_number] = ACTIONS(4153), + [anon_sym_boolean] = ACTIONS(4153), + [anon_sym_string] = ACTIONS(4153), + [anon_sym_symbol] = ACTIONS(4153), + [anon_sym_object] = ACTIONS(4153), + [anon_sym_abstract] = ACTIONS(4007), + [sym_html_comment] = ACTIONS(5), + }, + [1879] = { + [sym_nested_identifier] = STATE(1047), + [sym_string] = STATE(1381), + [sym_comment] = STATE(1879), + [sym__module] = STATE(1543), + [sym_identifier] = ACTIONS(4107), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4105), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1238), - [anon_sym_LBRACK] = ACTIONS(4107), + [anon_sym_COLON] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4109), + [anon_sym_SQUOTE] = ACTIONS(4111), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -226538,28 +214120,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2028] = { - [sym_nested_identifier] = STATE(2469), - [sym_string] = STATE(2489), - [sym_comment] = STATE(2028), - [sym__module] = STATE(2669), - [sym_identifier] = ACTIONS(4147), + [1880] = { + [sym_nested_identifier] = STATE(2301), + [sym_string] = STATE(2300), + [sym_comment] = STATE(1880), + [sym__module] = STATE(2449), + [sym_identifier] = ACTIONS(4174), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1218), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(1224), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -226603,30 +214184,236 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2029] = { - [sym_nested_identifier] = STATE(2469), - [sym_string] = STATE(2489), - [sym_comment] = STATE(2029), - [sym__module] = STATE(2669), - [sym_identifier] = ACTIONS(4147), + [1881] = { + [sym_variable_declarator] = STATE(5381), + [sym_object_pattern] = STATE(4591), + [sym_array_pattern] = STATE(4591), + [sym__destructuring_pattern] = STATE(4481), + [sym_comment] = STATE(1881), + [sym_identifier] = ACTIONS(4119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_LBRACE] = ACTIONS(4121), + [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(124), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1236), + [anon_sym_LBRACK] = ACTIONS(4123), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [1882] = { + [sym_nested_identifier] = STATE(970), + [sym_string] = STATE(976), + [sym_comment] = STATE(1882), + [sym__module] = STATE(1211), + [sym_identifier] = ACTIONS(4176), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_as] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(4178), + [anon_sym_SQUOTE] = ACTIONS(4180), + [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [1883] = { + [sym_nested_identifier] = STATE(325), + [sym_string] = STATE(324), + [sym_comment] = STATE(1883), + [sym__module] = STATE(394), + [sym_identifier] = ACTIONS(4182), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(1207), + [anon_sym_as] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1236), + [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_GT] = ACTIONS(118), + [anon_sym_DOT] = ACTIONS(118), + [anon_sym_DQUOTE] = ACTIONS(4184), + [anon_sym_SQUOTE] = ACTIONS(4186), + [anon_sym_EQ_GT] = ACTIONS(977), + [anon_sym_QMARK_DOT] = ACTIONS(118), + [anon_sym_PLUS_EQ] = ACTIONS(160), + [anon_sym_DASH_EQ] = ACTIONS(160), + [anon_sym_STAR_EQ] = ACTIONS(160), + [anon_sym_SLASH_EQ] = ACTIONS(160), + [anon_sym_PERCENT_EQ] = ACTIONS(160), + [anon_sym_CARET_EQ] = ACTIONS(160), + [anon_sym_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_EQ] = ACTIONS(160), + [anon_sym_GT_GT_EQ] = ACTIONS(160), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), + [anon_sym_LT_LT_EQ] = ACTIONS(160), + [anon_sym_STAR_STAR_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP_EQ] = ACTIONS(160), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), + [anon_sym_AMP_AMP] = ACTIONS(118), + [anon_sym_PIPE_PIPE] = ACTIONS(118), + [anon_sym_GT_GT] = ACTIONS(118), + [anon_sym_GT_GT_GT] = ACTIONS(118), + [anon_sym_LT_LT] = ACTIONS(118), + [anon_sym_AMP] = ACTIONS(118), + [anon_sym_CARET] = ACTIONS(118), + [anon_sym_PIPE] = ACTIONS(118), + [anon_sym_PLUS] = ACTIONS(118), + [anon_sym_DASH] = ACTIONS(118), + [anon_sym_SLASH] = ACTIONS(118), + [anon_sym_PERCENT] = ACTIONS(118), + [anon_sym_STAR_STAR] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ] = ACTIONS(118), + [anon_sym_EQ_EQ_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ] = ACTIONS(118), + [anon_sym_BANG_EQ_EQ] = ACTIONS(118), + [anon_sym_GT_EQ] = ACTIONS(118), + [anon_sym_QMARK_QMARK] = ACTIONS(118), + [anon_sym_instanceof] = ACTIONS(118), + [anon_sym_PLUS_PLUS] = ACTIONS(118), + [anon_sym_DASH_DASH] = ACTIONS(118), + [aux_sym_comment_token1] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), + [sym__ternary_qmark] = ACTIONS(210), + [sym_html_comment] = ACTIONS(5), + }, + [1884] = { + [sym_nested_identifier] = STATE(2434), + [sym_string] = STATE(2315), + [sym_comment] = STATE(1884), + [sym__module] = STATE(2634), + [sym_identifier] = ACTIONS(4151), + [anon_sym_STAR] = ACTIONS(118), + [anon_sym_EQ] = ACTIONS(1183), + [anon_sym_as] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), + [anon_sym_BANG] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1193), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -226669,32 +214456,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(215), [anon_sym_satisfies] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2030] = { - [sym_variable_declarator] = STATE(5604), - [sym_object_pattern] = STATE(4537), - [sym_array_pattern] = STATE(4537), - [sym__destructuring_pattern] = STATE(4584), - [sym_comment] = STATE(2030), - [sym_identifier] = ACTIONS(4103), + [1885] = { + [sym_nested_identifier] = STATE(357), + [sym_string] = STATE(367), + [sym_comment] = STATE(1885), + [sym__module] = STATE(462), + [sym_identifier] = ACTIONS(4113), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4105), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(4107), + [anon_sym_COLON] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4115), + [anon_sym_SQUOTE] = ACTIONS(4117), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -226742,95 +214528,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2031] = { - [sym_variable_declarator] = STATE(5725), - [sym_object_pattern] = STATE(4537), - [sym_array_pattern] = STATE(4537), - [sym__destructuring_pattern] = STATE(4584), - [sym_comment] = STATE(2031), - [sym_identifier] = ACTIONS(4103), + [1886] = { + [sym_nested_identifier] = STATE(990), + [sym_string] = STATE(1086), + [sym_comment] = STATE(1886), + [sym__module] = STATE(1431), + [sym_identifier] = ACTIONS(4188), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4105), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(4107), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [2032] = { - [sym_variable_declarator] = STATE(5597), - [sym_object_pattern] = STATE(4537), - [sym_array_pattern] = STATE(4537), - [sym__destructuring_pattern] = STATE(4461), - [sym_comment] = STATE(2032), - [sym_identifier] = ACTIONS(4170), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1179), - [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4105), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(1231), - [anon_sym_of] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(4107), + [anon_sym_COLON] = ACTIONS(1236), + [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4190), + [anon_sym_SQUOTE] = ACTIONS(4192), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -226878,27 +214596,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2033] = { - [sym_variable_declarator] = STATE(5716), - [sym_object_pattern] = STATE(4537), - [sym_array_pattern] = STATE(4537), - [sym__destructuring_pattern] = STATE(4584), - [sym_comment] = STATE(2033), - [sym_identifier] = ACTIONS(4103), + [1887] = { + [sym_variable_declarator] = STATE(5389), + [sym_object_pattern] = STATE(4591), + [sym_array_pattern] = STATE(4591), + [sym__destructuring_pattern] = STATE(4481), + [sym_comment] = STATE(1887), + [sym_identifier] = ACTIONS(4119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4105), + [anon_sym_LBRACE] = ACTIONS(4121), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(4107), + [anon_sym_COLON] = ACTIONS(1230), + [anon_sym_LBRACK] = ACTIONS(4123), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -226946,27 +214664,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2034] = { - [sym_nested_identifier] = STATE(324), - [sym_string] = STATE(325), - [sym_comment] = STATE(2034), - [sym__module] = STATE(349), - [sym_identifier] = ACTIONS(4172), + [1888] = { + [sym_variable_declarator] = STATE(5582), + [sym_object_pattern] = STATE(4591), + [sym_array_pattern] = STATE(4591), + [sym__destructuring_pattern] = STATE(4481), + [sym_comment] = STATE(1888), + [sym_identifier] = ACTIONS(4119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4121), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1181), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1234), + [anon_sym_LBRACK] = ACTIONS(4123), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4174), - [anon_sym_SQUOTE] = ACTIONS(4176), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -227014,27 +214732,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2035] = { - [sym_nested_identifier] = STATE(992), - [sym_string] = STATE(1046), - [sym_comment] = STATE(2035), - [sym__module] = STATE(1320), - [sym_identifier] = ACTIONS(4178), + [1889] = { + [sym_nested_identifier] = STATE(2301), + [sym_string] = STATE(2300), + [sym_comment] = STATE(1889), + [sym__module] = STATE(2449), + [sym_identifier] = ACTIONS(4174), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), + [anon_sym_in] = ACTIONS(1209), + [anon_sym_of] = ACTIONS(1212), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1199), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4180), - [anon_sym_SQUOTE] = ACTIONS(4182), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(67), + [anon_sym_SQUOTE] = ACTIONS(69), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -227082,14 +214800,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2036] = { - [sym_nested_identifier] = STATE(1197), - [sym_string] = STATE(1527), - [sym_comment] = STATE(2036), - [sym__module] = STATE(1730), - [sym_identifier] = ACTIONS(4121), + [1890] = { + [sym_nested_identifier] = STATE(984), + [sym_string] = STATE(1095), + [sym_comment] = STATE(1890), + [sym__module] = STATE(1481), + [sym_identifier] = ACTIONS(4194), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), @@ -227100,9 +214818,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4123), - [anon_sym_SQUOTE] = ACTIONS(4125), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4196), + [anon_sym_SQUOTE] = ACTIONS(4198), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -227150,95 +214868,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2037] = { - [sym_nested_identifier] = STATE(317), - [sym_string] = STATE(316), - [sym_comment] = STATE(2037), - [sym__module] = STATE(342), - [sym_identifier] = ACTIONS(4184), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1179), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1199), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4186), - [anon_sym_SQUOTE] = ACTIONS(4188), - [anon_sym_EQ_GT] = ACTIONS(1035), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [2038] = { - [sym_nested_identifier] = STATE(2447), - [sym_string] = STATE(2460), - [sym_comment] = STATE(2038), - [sym__module] = STATE(2604), - [sym_identifier] = ACTIONS(4190), + [1891] = { + [sym_nested_identifier] = STATE(2301), + [sym_string] = STATE(2300), + [sym_comment] = STATE(1891), + [sym__module] = STATE(2449), + [sym_identifier] = ACTIONS(4174), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1229), + [anon_sym_COLON] = ACTIONS(1232), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -227286,28 +214936,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2039] = { - [sym_nested_identifier] = STATE(2469), - [sym_string] = STATE(2489), - [sym_comment] = STATE(2039), - [sym__module] = STATE(2669), - [sym_identifier] = ACTIONS(4147), + [1892] = { + [sym_nested_identifier] = STATE(2434), + [sym_string] = STATE(2315), + [sym_comment] = STATE(1892), + [sym__module] = STATE(2634), + [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1205), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(1242), - [anon_sym_RBRACE] = ACTIONS(1242), + [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1117), + [anon_sym_SEMI] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(1242), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -227351,30 +215000,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2040] = { - [sym_nested_identifier] = STATE(294), - [sym_string] = STATE(293), - [sym_comment] = STATE(2040), - [sym__module] = STATE(323), - [sym_identifier] = ACTIONS(4192), + [1893] = { + [sym_nested_identifier] = STATE(2434), + [sym_string] = STATE(2315), + [sym_comment] = STATE(1893), + [sym__module] = STATE(2634), + [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), + [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1236), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4194), - [anon_sym_SQUOTE] = ACTIONS(4196), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_EQ_GT] = ACTIONS(1224), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -227422,27 +215072,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2041] = { - [sym_nested_identifier] = STATE(5025), - [sym_string] = STATE(5740), - [sym_comment] = STATE(2041), - [sym__module] = STATE(6887), - [sym_identifier] = ACTIONS(4198), + [1894] = { + [sym_variable_declarator] = STATE(5556), + [sym_object_pattern] = STATE(4591), + [sym_array_pattern] = STATE(4591), + [sym__destructuring_pattern] = STATE(4285), + [sym_comment] = STATE(1894), + [sym_identifier] = ACTIONS(4200), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4121), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(118), + [anon_sym_in] = ACTIONS(1209), + [anon_sym_of] = ACTIONS(1212), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1229), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_LBRACK] = ACTIONS(4123), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(1965), - [anon_sym_SQUOTE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -227490,27 +215140,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2042] = { - [sym_nested_identifier] = STATE(2447), - [sym_string] = STATE(2460), - [sym_comment] = STATE(2042), - [sym__module] = STATE(2604), - [sym_identifier] = ACTIONS(4190), + [1895] = { + [sym_nested_identifier] = STATE(317), + [sym_string] = STATE(318), + [sym_comment] = STATE(1895), + [sym__module] = STATE(360), + [sym_identifier] = ACTIONS(4202), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1238), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4204), + [anon_sym_SQUOTE] = ACTIONS(4206), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -227558,14 +215208,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2043] = { - [sym_nested_identifier] = STATE(2469), - [sym_string] = STATE(2489), - [sym_comment] = STATE(2043), - [sym__module] = STATE(2669), - [sym_identifier] = ACTIONS(4147), + [1896] = { + [sym_nested_identifier] = STATE(2301), + [sym_string] = STATE(2300), + [sym_comment] = STATE(1896), + [sym__module] = STATE(2449), + [sym_identifier] = ACTIONS(4174), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_RBRACE] = ACTIONS(118), @@ -227576,77 +215226,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1035), - [anon_sym_QMARK_DOT] = ACTIONS(118), - [anon_sym_PLUS_EQ] = ACTIONS(160), - [anon_sym_DASH_EQ] = ACTIONS(160), - [anon_sym_STAR_EQ] = ACTIONS(160), - [anon_sym_SLASH_EQ] = ACTIONS(160), - [anon_sym_PERCENT_EQ] = ACTIONS(160), - [anon_sym_CARET_EQ] = ACTIONS(160), - [anon_sym_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_EQ] = ACTIONS(160), - [anon_sym_GT_GT_EQ] = ACTIONS(160), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(160), - [anon_sym_LT_LT_EQ] = ACTIONS(160), - [anon_sym_STAR_STAR_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP_EQ] = ACTIONS(160), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(160), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(160), - [anon_sym_AMP_AMP] = ACTIONS(118), - [anon_sym_PIPE_PIPE] = ACTIONS(118), - [anon_sym_GT_GT] = ACTIONS(118), - [anon_sym_GT_GT_GT] = ACTIONS(118), - [anon_sym_LT_LT] = ACTIONS(118), - [anon_sym_AMP] = ACTIONS(118), - [anon_sym_CARET] = ACTIONS(118), - [anon_sym_PIPE] = ACTIONS(118), - [anon_sym_PLUS] = ACTIONS(118), - [anon_sym_DASH] = ACTIONS(118), - [anon_sym_SLASH] = ACTIONS(118), - [anon_sym_PERCENT] = ACTIONS(118), - [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), - [anon_sym_LT_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ] = ACTIONS(118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ] = ACTIONS(118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(118), - [anon_sym_GT_EQ] = ACTIONS(118), - [anon_sym_QMARK_QMARK] = ACTIONS(118), - [anon_sym_instanceof] = ACTIONS(118), - [anon_sym_PLUS_PLUS] = ACTIONS(118), - [anon_sym_DASH_DASH] = ACTIONS(118), - [aux_sym_comment_token1] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), - [sym__ternary_qmark] = ACTIONS(210), - [sym_html_comment] = ACTIONS(5), - }, - [2044] = { - [sym_nested_identifier] = STATE(2447), - [sym_string] = STATE(2460), - [sym_comment] = STATE(2044), - [sym__module] = STATE(2604), - [sym_identifier] = ACTIONS(4190), - [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1179), - [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_in] = ACTIONS(1231), - [anon_sym_of] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_GT] = ACTIONS(118), - [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(67), [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -227694,27 +215276,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2045] = { - [sym_nested_identifier] = STATE(381), - [sym_string] = STATE(338), - [sym_comment] = STATE(2045), - [sym__module] = STATE(462), - [sym_identifier] = ACTIONS(4111), + [1897] = { + [sym_nested_identifier] = STATE(2434), + [sym_string] = STATE(2315), + [sym_comment] = STATE(1897), + [sym__module] = STATE(2634), + [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(115), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(124), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_RPAREN] = ACTIONS(124), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1238), + [anon_sym_COLON] = ACTIONS(124), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4113), - [anon_sym_SQUOTE] = ACTIONS(4115), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -227757,32 +215339,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(215), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2046] = { - [sym_nested_identifier] = STATE(1002), - [sym_string] = STATE(1231), - [sym_comment] = STATE(2046), - [sym__module] = STATE(1271), - [sym_identifier] = ACTIONS(4200), + [1898] = { + [sym_nested_identifier] = STATE(296), + [sym_string] = STATE(294), + [sym_comment] = STATE(1898), + [sym__module] = STATE(312), + [sym_identifier] = ACTIONS(4208), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1181), + [anon_sym_COLON] = ACTIONS(1230), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4202), - [anon_sym_SQUOTE] = ACTIONS(4204), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(4210), + [anon_sym_SQUOTE] = ACTIONS(4212), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -227830,27 +215412,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2047] = { - [sym_variable_declarator] = STATE(5696), - [sym_object_pattern] = STATE(4537), - [sym_array_pattern] = STATE(4537), - [sym__destructuring_pattern] = STATE(4584), - [sym_comment] = STATE(2047), - [sym_identifier] = ACTIONS(4103), + [1899] = { + [sym_variable_declarator] = STATE(5562), + [sym_object_pattern] = STATE(4591), + [sym_array_pattern] = STATE(4591), + [sym__destructuring_pattern] = STATE(4481), + [sym_comment] = STATE(1899), + [sym_identifier] = ACTIONS(4119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(4105), + [anon_sym_LBRACE] = ACTIONS(4121), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(4107), + [anon_sym_COLON] = ACTIONS(1232), + [anon_sym_LBRACK] = ACTIONS(4123), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -227898,27 +215480,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2048] = { - [sym_nested_identifier] = STATE(949), - [sym_string] = STATE(1009), - [sym_comment] = STATE(2048), - [sym__module] = STATE(1149), - [sym_identifier] = ACTIONS(4206), + [1900] = { + [sym_variable_declarator] = STATE(5421), + [sym_object_pattern] = STATE(4591), + [sym_array_pattern] = STATE(4591), + [sym__destructuring_pattern] = STATE(4481), + [sym_comment] = STATE(1900), + [sym_identifier] = ACTIONS(4119), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1179), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(4121), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1238), + [anon_sym_LBRACK] = ACTIONS(4123), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(4208), - [anon_sym_SQUOTE] = ACTIONS(4210), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -227966,27 +215548,27 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2049] = { - [sym_nested_identifier] = STATE(2447), - [sym_string] = STATE(2460), - [sym_comment] = STATE(2049), - [sym__module] = STATE(2604), - [sym_identifier] = ACTIONS(4190), + [1901] = { + [sym_nested_identifier] = STATE(4878), + [sym_string] = STATE(5584), + [sym_comment] = STATE(1901), + [sym__module] = STATE(6342), + [sym_identifier] = ACTIONS(4214), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1189), + [anon_sym_EQ] = ACTIONS(1207), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1232), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(67), - [anon_sym_SQUOTE] = ACTIONS(69), - [anon_sym_EQ_GT] = ACTIONS(1183), + [anon_sym_DQUOTE] = ACTIONS(1965), + [anon_sym_SQUOTE] = ACTIONS(1967), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -228034,12 +215616,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2050] = { - [sym_nested_identifier] = STATE(2469), - [sym_string] = STATE(2489), - [sym_comment] = STATE(2050), - [sym__module] = STATE(2669), - [sym_identifier] = ACTIONS(4147), + [1902] = { + [sym_nested_identifier] = STATE(2434), + [sym_string] = STATE(2315), + [sym_comment] = STATE(1902), + [sym__module] = STATE(2634), + [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), @@ -228055,7 +215637,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_GT] = ACTIONS(1193), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -228102,27 +215684,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2051] = { - [sym_nested_identifier] = STATE(2469), - [sym_string] = STATE(2489), - [sym_comment] = STATE(2051), - [sym__module] = STATE(2669), - [sym_identifier] = ACTIONS(4147), + [1903] = { + [sym_nested_identifier] = STATE(2434), + [sym_string] = STATE(2315), + [sym_comment] = STATE(1903), + [sym__module] = STATE(2634), + [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(1183), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_COMMA] = ACTIONS(1243), + [anon_sym_RBRACE] = ACTIONS(1243), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_of] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(1117), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(1243), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1183), + [anon_sym_EQ_GT] = ACTIONS(1193), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -228166,29 +215749,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2052] = { - [sym_comment] = STATE(2052), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(4212), + [1904] = { + [sym_nested_identifier] = STATE(2434), + [sym_string] = STATE(2315), + [sym_comment] = STATE(1904), + [sym__module] = STATE(2634), + [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(1250), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1057), + [anon_sym_COMMA] = ACTIONS(215), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(1255), [anon_sym_LBRACK] = ACTIONS(118), + [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_EQ_GT] = ACTIONS(1259), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -228218,7 +215802,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), + [anon_sym_LT] = ACTIONS(118), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -228231,32 +215815,29 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2053] = { - [sym_nested_identifier] = STATE(2469), - [sym_string] = STATE(2489), - [sym_comment] = STATE(2053), - [sym__module] = STATE(2669), - [sym_identifier] = ACTIONS(4147), + [1905] = { + [sym_comment] = STATE(1905), + [aux_sym_object_repeat1] = STATE(5732), + [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_identifier] = ACTIONS(4216), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(1051), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(966), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -228286,7 +215867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2782), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -228299,31 +215880,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2054] = { - [sym_nested_identifier] = STATE(2469), - [sym_string] = STATE(2489), - [sym_comment] = STATE(2054), - [sym__module] = STATE(2669), - [sym_identifier] = ACTIONS(4147), + [1906] = { + [sym_comment] = STATE(1906), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_identifier] = ACTIONS(4216), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1289), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), - [anon_sym_LBRACE] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(1045), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(966), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1265), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -228353,7 +215934,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2782), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -228366,32 +215947,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_satisfies] = ACTIONS(118), - [anon_sym_implements] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2055] = { - [sym_nested_identifier] = STATE(2469), - [sym_string] = STATE(2489), - [sym_comment] = STATE(2055), - [sym__module] = STATE(2669), - [sym_identifier] = ACTIONS(4147), + [1907] = { + [sym_nested_identifier] = STATE(2434), + [sym_string] = STATE(2315), + [sym_comment] = STATE(1907), + [sym__module] = STATE(2634), + [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1262), + [anon_sym_EQ] = ACTIONS(1263), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(124), - [anon_sym_RBRACE] = ACTIONS(124), + [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_RPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), - [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1215), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -228438,25 +216020,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2056] = { - [sym_comment] = STATE(2056), - [aux_sym_object_repeat1] = STATE(6276), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(4212), + [1908] = { + [sym_nested_identifier] = STATE(2434), + [sym_string] = STATE(2315), + [sym_comment] = STATE(1908), + [sym__module] = STATE(2634), + [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(1275), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1022), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_EQ_GT] = ACTIONS(1281), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -228486,7 +216069,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), + [anon_sym_LT] = ACTIONS(118), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -228499,33 +216082,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), + [anon_sym_implements] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2057] = { - [sym_nested_identifier] = STATE(2469), - [sym_string] = STATE(2489), - [sym_comment] = STATE(2057), - [sym__module] = STATE(2669), - [sym_identifier] = ACTIONS(4147), + [1909] = { + [sym_comment] = STATE(1909), + [aux_sym_object_repeat1] = STATE(5839), + [aux_sym_object_pattern_repeat1] = STATE(5734), + [sym_identifier] = ACTIONS(4216), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1115), + [anon_sym_EQ] = ACTIONS(958), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), + [anon_sym_RBRACE] = ACTIONS(964), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(118), + [anon_sym_LPAREN] = ACTIONS(2782), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), + [anon_sym_SEMI] = ACTIONS(118), + [anon_sym_COLON] = ACTIONS(966), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_DQUOTE] = ACTIONS(144), - [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(977), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -228555,7 +216135,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(118), + [anon_sym_LT] = ACTIONS(2782), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -228568,31 +216148,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), + [anon_sym_QMARK] = ACTIONS(985), [anon_sym_satisfies] = ACTIONS(118), + [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2058] = { - [sym_nested_identifier] = STATE(2469), - [sym_string] = STATE(2489), - [sym_comment] = STATE(2058), - [sym__module] = STATE(2669), - [sym_identifier] = ACTIONS(4147), + [1910] = { + [sym_nested_identifier] = STATE(2434), + [sym_string] = STATE(2315), + [sym_comment] = STATE(1910), + [sym__module] = STATE(2634), + [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1240), [anon_sym_as] = ACTIONS(118), - [anon_sym_COMMA] = ACTIONS(215), + [anon_sym_COMMA] = ACTIONS(124), + [anon_sym_RBRACE] = ACTIONS(124), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1254), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_RBRACK] = ACTIONS(124), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(1258), + [anon_sym_EQ_GT] = ACTIONS(1193), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -228639,27 +216221,26 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2059] = { - [sym_nested_identifier] = STATE(2469), - [sym_string] = STATE(2489), - [sym_comment] = STATE(2059), - [sym__module] = STATE(2669), - [sym_identifier] = ACTIONS(4147), + [1911] = { + [sym_nested_identifier] = STATE(2434), + [sym_string] = STATE(2315), + [sym_comment] = STATE(1911), + [sym__module] = STATE(2634), + [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1240), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), + [anon_sym_LBRACE] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), [anon_sym_BANG] = ACTIONS(118), [anon_sym_LPAREN] = ACTIONS(118), - [anon_sym_RPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), [anon_sym_DQUOTE] = ACTIONS(144), [anon_sym_SQUOTE] = ACTIONS(146), - [anon_sym_EQ_GT] = ACTIONS(154), + [anon_sym_EQ_GT] = ACTIONS(1281), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -228703,28 +216284,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), [anon_sym_satisfies] = ACTIONS(118), + [anon_sym_implements] = ACTIONS(118), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, - [2060] = { - [sym_comment] = STATE(2060), - [aux_sym_object_repeat1] = STATE(6287), - [aux_sym_object_pattern_repeat1] = STATE(6281), - [sym_identifier] = ACTIONS(4212), + [1912] = { + [sym_nested_identifier] = STATE(2434), + [sym_string] = STATE(2315), + [sym_comment] = STATE(1912), + [sym__module] = STATE(2634), + [sym_identifier] = ACTIONS(4151), [anon_sym_STAR] = ACTIONS(118), - [anon_sym_EQ] = ACTIONS(1016), + [anon_sym_EQ] = ACTIONS(1115), [anon_sym_as] = ACTIONS(118), [anon_sym_COMMA] = ACTIONS(118), - [anon_sym_RBRACE] = ACTIONS(1055), [anon_sym_BANG] = ACTIONS(118), - [anon_sym_LPAREN] = ACTIONS(2782), + [anon_sym_LPAREN] = ACTIONS(118), + [anon_sym_RPAREN] = ACTIONS(118), [anon_sym_in] = ACTIONS(118), - [anon_sym_SEMI] = ACTIONS(118), - [anon_sym_COLON] = ACTIONS(1024), + [anon_sym_COLON] = ACTIONS(118), [anon_sym_LBRACK] = ACTIONS(118), [anon_sym_GT] = ACTIONS(118), [anon_sym_DOT] = ACTIONS(118), - [anon_sym_EQ_GT] = ACTIONS(1035), + [anon_sym_DQUOTE] = ACTIONS(144), + [anon_sym_SQUOTE] = ACTIONS(146), + [anon_sym_EQ_GT] = ACTIONS(154), [anon_sym_QMARK_DOT] = ACTIONS(118), [anon_sym_PLUS_EQ] = ACTIONS(160), [anon_sym_DASH_EQ] = ACTIONS(160), @@ -228754,7 +216338,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SLASH] = ACTIONS(118), [anon_sym_PERCENT] = ACTIONS(118), [anon_sym_STAR_STAR] = ACTIONS(118), - [anon_sym_LT] = ACTIONS(2782), + [anon_sym_LT] = ACTIONS(118), [anon_sym_LT_EQ] = ACTIONS(118), [anon_sym_EQ_EQ] = ACTIONS(118), [anon_sym_EQ_EQ_EQ] = ACTIONS(118), @@ -228767,16 +216351,93 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DASH_DASH] = ACTIONS(118), [aux_sym_comment_token1] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(118), - [anon_sym_QMARK] = ACTIONS(1043), [anon_sym_satisfies] = ACTIONS(118), - [sym__automatic_semicolon] = ACTIONS(210), [sym__ternary_qmark] = ACTIONS(210), [sym_html_comment] = ACTIONS(5), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 15, + [0] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1265), 1, + anon_sym_EQ_GT, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(4119), 1, + sym_identifier, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + STATE(1913), 1, + sym_comment, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(5562), 1, + sym_variable_declarator, + ACTIONS(210), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 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, + [93] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -228787,21 +216448,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(210), 1, sym__ternary_qmark, - ACTIONS(1258), 1, + ACTIONS(1259), 1, anon_sym_EQ_GT, - ACTIONS(1281), 1, + ACTIONS(1267), 1, anon_sym_EQ, - ACTIONS(1283), 1, + ACTIONS(1269), 1, anon_sym_COLON, - ACTIONS(4147), 1, + ACTIONS(4151), 1, sym_identifier, - STATE(2061), 1, + STATE(1914), 1, sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, + STATE(2315), 1, sym_string, - STATE(2669), 1, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, sym__module, ACTIONS(160), 15, anon_sym_PLUS_EQ, @@ -228856,14 +216517,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95] = 5, + [188] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1265), 1, + anon_sym_EQ_GT, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(4194), 1, + sym_identifier, + ACTIONS(4196), 1, + anon_sym_DQUOTE, + ACTIONS(4198), 1, + anon_sym_SQUOTE, + STATE(984), 1, + sym_nested_identifier, + STATE(1095), 1, + sym_string, + STATE(1481), 1, + sym__module, + STATE(1915), 1, + sym_comment, + ACTIONS(210), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 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, + [281] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2062), 1, + STATE(1916), 1, sym_comment, - ACTIONS(4214), 23, + ACTIONS(4218), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -228887,7 +216627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(4216), 38, + ACTIONS(4220), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -228926,32 +216666,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [170] = 15, + [356] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1043), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(1917), 1, + sym_comment, + ACTIONS(4222), 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(2769), 1, + ACTIONS(4224), 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, + [431] = 5, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2799), 1, - anon_sym_RBRACE, - ACTIONS(4220), 1, + STATE(1918), 1, + sym_comment, + ACTIONS(4226), 23, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(4224), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + 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(4228), 38, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4227), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_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, + [506] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(4231), 1, - anon_sym_LT, - STATE(2063), 1, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(4176), 1, + sym_identifier, + ACTIONS(4178), 1, + anon_sym_DQUOTE, + ACTIONS(4180), 1, + anon_sym_SQUOTE, + STATE(970), 1, + sym_nested_identifier, + STATE(976), 1, + sym_string, + STATE(1211), 1, + sym__module, + STATE(1919), 1, sym_comment, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(6287), 1, - aux_sym_object_repeat1, - ACTIONS(4229), 15, + ACTIONS(210), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -228967,29 +216848,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 17, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(118), 36, + 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4218), 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, @@ -229003,37 +216872,45 @@ static const uint16_t ts_small_parse_table[] = { 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, - [265] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [599] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, + ACTIONS(958), 1, anon_sym_EQ, - ACTIONS(1277), 1, + ACTIONS(985), 1, + anon_sym_QMARK, + ACTIONS(2766), 1, + anon_sym_LPAREN, + ACTIONS(2769), 1, + anon_sym_COLON, + ACTIONS(2778), 1, anon_sym_EQ_GT, - ACTIONS(4103), 1, - sym_identifier, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - STATE(2064), 1, + ACTIONS(2782), 1, + anon_sym_LT, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2799), 1, + anon_sym_RBRACE, + STATE(1920), 1, sym_comment, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(5708), 1, - sym_variable_declarator, - ACTIONS(210), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(160), 15, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229049,16 +216926,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, - anon_sym_STAR, + ACTIONS(210), 17, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_GT, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(118), 20, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -229072,27 +216962,17 @@ static const uint16_t ts_small_parse_table[] = { 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, - [358] = 5, + [694] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2065), 1, + STATE(1921), 1, sym_comment, - ACTIONS(4234), 23, + ACTIONS(4230), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -229116,7 +216996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(4236), 38, + ACTIONS(4232), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -229155,32 +217035,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [433] = 14, + [769] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1277), 1, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(4184), 1, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(4119), 1, sym_identifier, - ACTIONS(4186), 1, - anon_sym_DQUOTE, - ACTIONS(4188), 1, - anon_sym_SQUOTE, - STATE(316), 1, - sym_string, - STATE(317), 1, - sym_nested_identifier, - STATE(342), 1, - sym__module, - STATE(2066), 1, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + STATE(1922), 1, sym_comment, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(5421), 1, + sym_variable_declarator, ACTIONS(210), 2, sym__automatic_semicolon, sym__ternary_qmark, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -229197,14 +217078,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(118), 35, 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, @@ -229234,33 +217114,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [526] = 14, + [862] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1277), 1, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(4103), 1, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(4188), 1, sym_identifier, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - STATE(2067), 1, + ACTIONS(4190), 1, + anon_sym_DQUOTE, + ACTIONS(4192), 1, + anon_sym_SQUOTE, + STATE(990), 1, + sym_nested_identifier, + STATE(1086), 1, + sym_string, + STATE(1431), 1, + sym__module, + STATE(1923), 1, sym_comment, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(5604), 1, - sym_variable_declarator, ACTIONS(210), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -229277,13 +217156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(118), 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, @@ -229313,29 +217193,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [619] = 14, + [955] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(1277), 1, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(4147), 1, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(4202), 1, sym_identifier, - STATE(2068), 1, - sym_comment, - STATE(2469), 1, + ACTIONS(4204), 1, + anon_sym_DQUOTE, + ACTIONS(4206), 1, + anon_sym_SQUOTE, + STATE(317), 1, sym_nested_identifier, - STATE(2489), 1, + STATE(318), 1, sym_string, - STATE(2669), 1, + STATE(360), 1, sym__module, + STATE(1924), 1, + sym_comment, ACTIONS(210), 2, sym__automatic_semicolon, sym__ternary_qmark, @@ -229392,34 +217272,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [712] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [1048] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(1925), 1, + sym_comment, + ACTIONS(4234), 23, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(1277), 1, - anon_sym_EQ_GT, - ACTIONS(4103), 1, - sym_identifier, - ACTIONS(4105), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + 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(4236), 38, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(4107), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - STATE(2069), 1, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [1123] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4240), 1, + anon_sym_EQ, + ACTIONS(4246), 1, + anon_sym_LPAREN, + ACTIONS(4248), 1, + anon_sym_DOT, + ACTIONS(4250), 1, + anon_sym_EQ_GT, + ACTIONS(4252), 1, + anon_sym_QMARK_DOT, + ACTIONS(4258), 1, + anon_sym_LT, + STATE(1926), 1, sym_comment, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(5696), 1, - sym_variable_declarator, - ACTIONS(210), 2, + STATE(3961), 1, + sym_arguments, + STATE(4080), 1, + sym_type_arguments, + ACTIONS(4256), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4244), 7, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4242), 11, sym__ternary_qmark, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(160), 15, + 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(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229435,48 +217404,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(4238), 18, 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] = 15, + [1220] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1016), 1, + ACTIONS(958), 1, anon_sym_EQ, - ACTIONS(1043), 1, + ACTIONS(985), 1, anon_sym_QMARK, ACTIONS(2766), 1, anon_sym_LPAREN, @@ -229490,11 +217442,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comment_token1, ACTIONS(2801), 1, anon_sym_RBRACE, - STATE(2070), 1, + STATE(1927), 1, sym_comment, - STATE(6276), 1, + STATE(5732), 1, aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, ACTIONS(2780), 15, anon_sym_PLUS_EQ, @@ -229551,59 +217503,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [900] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [1315] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1277), 1, - anon_sym_EQ_GT, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4198), 1, - sym_identifier, - STATE(2071), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(1928), 1, sym_comment, - STATE(5025), 1, - sym_nested_identifier, - STATE(5740), 1, - sym_string, - STATE(6887), 1, - sym__module, - ACTIONS(210), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(160), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(4260), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, 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, @@ -229618,44 +217530,76 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_QMARK, + anon_sym_QMARK, + ACTIONS(4262), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [993] = 14, + anon_sym_implements, + [1390] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1277), 1, - anon_sym_EQ_GT, - ACTIONS(4178), 1, - sym_identifier, - ACTIONS(4180), 1, + ACTIONS(144), 1, anon_sym_DQUOTE, - ACTIONS(4182), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - STATE(992), 1, - sym_nested_identifier, - STATE(1046), 1, + ACTIONS(210), 1, + sym__ternary_qmark, + ACTIONS(1255), 1, + anon_sym_COLON, + ACTIONS(1259), 1, + anon_sym_EQ_GT, + ACTIONS(1267), 1, + anon_sym_EQ, + ACTIONS(4151), 1, + sym_identifier, + STATE(1929), 1, + sym_comment, + STATE(2315), 1, sym_string, - STATE(1320), 1, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, sym__module, - STATE(2072), 1, - sym_comment, - ACTIONS(210), 2, - sym__automatic_semicolon, - sym__ternary_qmark, ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -229678,8 +217622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -229709,28 +217653,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1086] = 14, + [1485] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1277), 1, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(4121), 1, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(4107), 1, sym_identifier, - ACTIONS(4123), 1, + ACTIONS(4109), 1, anon_sym_DQUOTE, - ACTIONS(4125), 1, + ACTIONS(4111), 1, anon_sym_SQUOTE, - STATE(1197), 1, + STATE(1047), 1, sym_nested_identifier, - STATE(1527), 1, + STATE(1381), 1, sym_string, - STATE(1730), 1, + STATE(1543), 1, sym__module, - STATE(2073), 1, + STATE(1930), 1, sym_comment, ACTIONS(210), 2, sym__automatic_semicolon, @@ -229788,32 +217732,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1179] = 15, + [1578] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1016), 1, - anon_sym_EQ, - ACTIONS(1043), 1, - anon_sym_QMARK, - ACTIONS(2766), 1, - anon_sym_LPAREN, - ACTIONS(2769), 1, - anon_sym_COLON, - ACTIONS(2778), 1, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(2782), 1, - anon_sym_LT, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2799), 1, - anon_sym_RBRACE, - STATE(2074), 1, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4214), 1, + sym_identifier, + STATE(1931), 1, sym_comment, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(6287), 1, - aux_sym_object_repeat1, - ACTIONS(2780), 15, + STATE(4878), 1, + sym_nested_identifier, + STATE(5584), 1, + sym_string, + STATE(6342), 1, + sym__module, + ACTIONS(210), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -229829,29 +217774,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 17, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(118), 36, + 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -229865,34 +217798,44 @@ static const uint16_t ts_small_parse_table[] = { 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, - [1274] = 14, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [1671] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1277), 1, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(4103), 1, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(4119), 1, sym_identifier, - ACTIONS(4105), 1, + ACTIONS(4121), 1, anon_sym_LBRACE, - ACTIONS(4107), 1, + ACTIONS(4123), 1, anon_sym_LBRACK, - STATE(2075), 1, + STATE(1932), 1, sym_comment, - STATE(4584), 1, + STATE(4481), 1, sym__destructuring_pattern, - STATE(5716), 1, + STATE(5389), 1, sym_variable_declarator, ACTIONS(210), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4537), 2, + STATE(4591), 2, sym_object_pattern, sym_array_pattern, ACTIONS(160), 15, @@ -229947,53 +217890,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1367] = 16, + [1764] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4238), 1, - anon_sym_EQ, - ACTIONS(4242), 1, - anon_sym_LPAREN, - ACTIONS(4244), 1, - anon_sym_DOT, - ACTIONS(4246), 1, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(4248), 1, - anon_sym_QMARK_DOT, - ACTIONS(4252), 1, - anon_sym_LT, - STATE(2076), 1, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(4182), 1, + sym_identifier, + ACTIONS(4184), 1, + anon_sym_DQUOTE, + ACTIONS(4186), 1, + anon_sym_SQUOTE, + STATE(324), 1, + sym_string, + STATE(325), 1, + sym_nested_identifier, + STATE(394), 1, + sym__module, + STATE(1933), 1, sym_comment, - STATE(4096), 1, - sym_arguments, - STATE(4259), 1, - sym_type_arguments, - ACTIONS(4250), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4240), 7, + ACTIONS(210), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4222), 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(4229), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230009,26 +217932,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 18, + ACTIONS(118), 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, - [1464] = 15, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [1857] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -230037,24 +217978,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(146), 1, anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(1254), 1, - anon_sym_COLON, - ACTIONS(1258), 1, - anon_sym_EQ_GT, - ACTIONS(1281), 1, + ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(4147), 1, + ACTIONS(1265), 1, + anon_sym_EQ_GT, + ACTIONS(4151), 1, sym_identifier, - STATE(2077), 1, + STATE(1934), 1, sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, + STATE(2315), 1, sym_string, - STATE(2669), 1, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, sym__module, + ACTIONS(210), 2, + sym__automatic_semicolon, + sym__ternary_qmark, ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -230077,8 +218017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -230108,32 +218048,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1559] = 15, + [1950] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1043), 1, + ACTIONS(958), 1, + anon_sym_EQ, + ACTIONS(985), 1, anon_sym_QMARK, ACTIONS(2756), 1, anon_sym_RBRACE, + ACTIONS(2766), 1, + anon_sym_LPAREN, ACTIONS(2769), 1, anon_sym_COLON, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4220), 1, - anon_sym_EQ, - ACTIONS(4224), 1, - anon_sym_LPAREN, - ACTIONS(4227), 1, + ACTIONS(2778), 1, anon_sym_EQ_GT, - ACTIONS(4231), 1, + ACTIONS(2782), 1, anon_sym_LT, - STATE(2078), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(1935), 1, sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4229), 15, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230149,7 +218089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 17, + ACTIONS(210), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -230167,7 +218107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 20, + ACTIONS(118), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -230188,33 +218128,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [1654] = 14, + [2045] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1277), 1, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(4103), 1, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(4113), 1, sym_identifier, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - STATE(2079), 1, + ACTIONS(4115), 1, + anon_sym_DQUOTE, + ACTIONS(4117), 1, + anon_sym_SQUOTE, + STATE(357), 1, + sym_nested_identifier, + STATE(367), 1, + sym_string, + STATE(462), 1, + sym__module, + STATE(1936), 1, sym_comment, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(5725), 1, - sym_variable_declarator, ACTIONS(210), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -230231,13 +218170,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(118), 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, @@ -230267,33 +218207,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1747] = 14, + [2138] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1277), 1, + ACTIONS(67), 1, + anon_sym_DQUOTE, + ACTIONS(69), 1, + anon_sym_SQUOTE, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(4103), 1, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(4174), 1, sym_identifier, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - STATE(2080), 1, + STATE(1937), 1, sym_comment, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(5592), 1, - sym_variable_declarator, + STATE(2300), 1, + sym_string, + STATE(2301), 1, + sym_nested_identifier, + STATE(2449), 1, + sym__module, ACTIONS(210), 2, sym__automatic_semicolon, sym__ternary_qmark, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -230310,13 +218249,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(118), 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, @@ -230346,36 +218286,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [1840] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, + [2231] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(124), 1, - anon_sym_RBRACK, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(215), 1, - anon_sym_COMMA, - ACTIONS(1249), 1, + ACTIONS(985), 1, + anon_sym_QMARK, + ACTIONS(2769), 1, + anon_sym_COLON, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2799), 1, + anon_sym_RBRACE, + ACTIONS(4264), 1, anon_sym_EQ, - ACTIONS(1258), 1, + ACTIONS(4266), 1, + anon_sym_LPAREN, + ACTIONS(4269), 1, anon_sym_EQ_GT, - ACTIONS(4147), 1, - sym_identifier, - STATE(2081), 1, + ACTIONS(4271), 1, + anon_sym_LT, + STATE(1938), 1, sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, - sym_string, - STATE(2669), 1, - sym__module, - ACTIONS(160), 15, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230391,52 +218327,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, - anon_sym_STAR, + ACTIONS(4242), 17, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, + anon_sym_COMMA, + 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, - [1937] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2082), 1, - sym_comment, - ACTIONS(4254), 23, + ACTIONS(4238), 20, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -230453,76 +218363,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, 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(4256), 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, - [2012] = 14, + [2326] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1277), 1, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(4200), 1, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(4119), 1, sym_identifier, - ACTIONS(4202), 1, - anon_sym_DQUOTE, - ACTIONS(4204), 1, - anon_sym_SQUOTE, - STATE(1002), 1, - sym_nested_identifier, - STATE(1231), 1, - sym_string, - STATE(1271), 1, - sym__module, - STATE(2083), 1, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + STATE(1939), 1, sym_comment, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(5582), 1, + sym_variable_declarator, ACTIONS(210), 2, sym__automatic_semicolon, sym__ternary_qmark, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -230539,14 +218409,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(118), 35, 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, @@ -230576,51 +218445,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2105] = 5, + [2419] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2084), 1, - sym_comment, - ACTIONS(4258), 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(4260), 38, + ACTIONS(124), 1, + anon_sym_RBRACK, + ACTIONS(144), 1, + anon_sym_DQUOTE, + ACTIONS(146), 1, + anon_sym_SQUOTE, + ACTIONS(210), 1, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(215), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1250), 1, + anon_sym_EQ, + ACTIONS(1259), 1, + anon_sym_EQ_GT, + ACTIONS(4151), 1, + sym_identifier, + STATE(1940), 1, + sym_comment, + STATE(2315), 1, + sym_string, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, + sym__module, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230636,29 +218490,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [2180] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2085), 1, - sym_comment, - ACTIONS(4262), 23, + ACTIONS(118), 35, anon_sym_STAR, - anon_sym_EQ, + 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, @@ -230673,75 +218514,45 @@ static const uint16_t ts_small_parse_table[] = { 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(4264), 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, 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, - anon_sym_implements, - [2255] = 14, + [2516] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1277), 1, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(4111), 1, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(4119), 1, sym_identifier, - ACTIONS(4113), 1, - anon_sym_DQUOTE, - ACTIONS(4115), 1, - anon_sym_SQUOTE, - STATE(338), 1, - sym_string, - STATE(381), 1, - sym_nested_identifier, - STATE(462), 1, - sym__module, - STATE(2086), 1, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + STATE(1941), 1, sym_comment, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(5468), 1, + sym_variable_declarator, ACTIONS(210), 2, sym__automatic_semicolon, sym__ternary_qmark, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -230758,14 +218569,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(118), 35, 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, @@ -230795,32 +218605,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2348] = 15, + [2609] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1043), 1, + ACTIONS(985), 1, anon_sym_QMARK, + ACTIONS(2756), 1, + anon_sym_RBRACE, ACTIONS(2769), 1, anon_sym_COLON, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2801), 1, - anon_sym_RBRACE, - ACTIONS(4220), 1, + ACTIONS(4264), 1, anon_sym_EQ, - ACTIONS(4224), 1, + ACTIONS(4266), 1, anon_sym_LPAREN, - ACTIONS(4227), 1, + ACTIONS(4269), 1, anon_sym_EQ_GT, - ACTIONS(4231), 1, + ACTIONS(4271), 1, anon_sym_LT, - STATE(2087), 1, + STATE(1942), 1, sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4229), 15, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -230836,7 +218646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 17, + ACTIONS(4242), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -230854,7 +218664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 20, + ACTIONS(4238), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -230875,32 +218685,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [2443] = 14, + [2704] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(67), 1, - anon_sym_DQUOTE, - ACTIONS(69), 1, - anon_sym_SQUOTE, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1277), 1, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(4190), 1, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(4119), 1, sym_identifier, - STATE(2088), 1, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + STATE(1943), 1, sym_comment, - STATE(2447), 1, - sym_nested_identifier, - STATE(2460), 1, - sym_string, - STATE(2604), 1, - sym__module, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(5381), 1, + sym_variable_declarator, ACTIONS(210), 2, sym__automatic_semicolon, sym__ternary_qmark, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -230917,14 +218728,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(118), 35, 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, @@ -230954,29 +218764,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2536] = 14, + [2797] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1277), 1, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(1991), 1, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(4208), 1, + sym_identifier, + ACTIONS(4210), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(4212), 1, anon_sym_SQUOTE, - ACTIONS(4266), 1, - sym_identifier, - STATE(2089), 1, - sym_comment, - STATE(4507), 1, - sym_nested_identifier, - STATE(4684), 1, + STATE(294), 1, sym_string, - STATE(5107), 1, + STATE(296), 1, + sym_nested_identifier, + STATE(312), 1, sym__module, + STATE(1944), 1, + sym_comment, ACTIONS(210), 2, sym__automatic_semicolon, sym__ternary_qmark, @@ -231033,33 +218843,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [2629] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [2890] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1277), 1, - anon_sym_EQ_GT, - ACTIONS(4172), 1, - sym_identifier, - ACTIONS(4174), 1, - anon_sym_DQUOTE, - ACTIONS(4176), 1, - anon_sym_SQUOTE, - STATE(324), 1, - sym_nested_identifier, - STATE(325), 1, - sym_string, - STATE(349), 1, - sym__module, - STATE(2090), 1, + ACTIONS(985), 1, + anon_sym_QMARK, + ACTIONS(2769), 1, + anon_sym_COLON, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2801), 1, + anon_sym_RBRACE, + ACTIONS(4264), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_LPAREN, + ACTIONS(4269), 1, + anon_sym_EQ_GT, + ACTIONS(4271), 1, + anon_sym_LT, + STATE(1945), 1, sym_comment, - ACTIONS(210), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(160), 15, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231075,17 +218884,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, - anon_sym_STAR, + ACTIONS(4242), 17, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_in, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4238), 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, @@ -231099,27 +218920,17 @@ static const uint16_t ts_small_parse_table[] = { 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, - [2722] = 5, + [2985] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2091), 1, + STATE(1946), 1, sym_comment, - ACTIONS(4268), 23, + ACTIONS(4274), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -231143,7 +218954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_QMARK, - ACTIONS(4270), 38, + ACTIONS(4276), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -231182,32 +218993,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [2797] = 15, + [3060] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1016), 1, - anon_sym_EQ, - ACTIONS(1043), 1, - anon_sym_QMARK, - ACTIONS(2756), 1, - anon_sym_RBRACE, - ACTIONS(2766), 1, - anon_sym_LPAREN, - ACTIONS(2769), 1, - anon_sym_COLON, - ACTIONS(2778), 1, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(2782), 1, - anon_sym_LT, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2092), 1, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4278), 1, + sym_identifier, + STATE(1947), 1, sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2780), 15, + STATE(4357), 1, + sym_nested_identifier, + STATE(4587), 1, + sym_string, + STATE(4991), 1, + sym__module, + ACTIONS(210), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231223,29 +219035,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 17, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(118), 36, + 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 20, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -231259,36 +219059,66 @@ static const uint16_t ts_small_parse_table[] = { 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, - [2892] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [3153] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1277), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4269), 1, anon_sym_EQ_GT, - ACTIONS(4192), 1, - sym_identifier, - ACTIONS(4194), 1, - anon_sym_DQUOTE, - ACTIONS(4196), 1, - anon_sym_SQUOTE, - STATE(293), 1, - sym_string, - STATE(294), 1, - sym_nested_identifier, - STATE(323), 1, - sym__module, - STATE(2093), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, + anon_sym_DOT, + ACTIONS(4286), 1, + anon_sym_QMARK_DOT, + ACTIONS(4288), 1, + anon_sym_LT, + STATE(1948), 1, sym_comment, - ACTIONS(210), 2, + STATE(3750), 1, + sym_arguments, + STATE(3890), 1, + sym_type_arguments, + ACTIONS(4244), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4256), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4242), 14, sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(160), 15, + 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(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231304,51 +219134,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(4238), 17, 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, - [2985] = 5, + [3249] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2094), 1, + STATE(1949), 1, sym_comment, - ACTIONS(4272), 23, + ACTIONS(3207), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -231371,8 +219182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_QMARK, - ACTIONS(4274), 38, + ACTIONS(3209), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -231411,32 +219221,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [3060] = 14, + [3323] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1277), 1, - anon_sym_EQ_GT, - ACTIONS(4206), 1, - sym_identifier, - ACTIONS(4208), 1, + ACTIONS(144), 1, anon_sym_DQUOTE, - ACTIONS(4210), 1, + ACTIONS(146), 1, anon_sym_SQUOTE, - STATE(949), 1, - sym_nested_identifier, - STATE(1009), 1, + ACTIONS(210), 1, + sym__ternary_qmark, + ACTIONS(1259), 1, + anon_sym_EQ_GT, + ACTIONS(1267), 1, + anon_sym_EQ, + ACTIONS(4151), 1, + sym_identifier, + STATE(1950), 1, + sym_comment, + STATE(2315), 1, sym_string, - STATE(1149), 1, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, sym__module, - STATE(2095), 1, - sym_comment, - ACTIONS(210), 2, - sym__automatic_semicolon, - sym__ternary_qmark, ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -231459,8 +219268,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -231490,16 +219299,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3153] = 7, + [3415] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4276), 1, + ACTIONS(144), 1, + anon_sym_DQUOTE, + ACTIONS(146), 1, + anon_sym_SQUOTE, + ACTIONS(210), 1, + sym__ternary_qmark, + ACTIONS(1299), 1, + anon_sym_EQ_GT, + ACTIONS(1319), 1, anon_sym_EQ, - STATE(2096), 1, + ACTIONS(4151), 1, + sym_identifier, + STATE(1951), 1, sym_comment, - ACTIONS(4229), 15, + STATE(2315), 1, + sym_string, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, + sym__module, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231515,11 +219340,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(118), 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, @@ -231534,34 +219365,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PERCENT, anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(4222), 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, 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, - anon_sym_implements, - [3231] = 14, + [3507] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -231572,19 +219388,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(210), 1, sym__ternary_qmark, - ACTIONS(1258), 1, + ACTIONS(217), 1, anon_sym_EQ_GT, - ACTIONS(1281), 1, + ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(4147), 1, + ACTIONS(1209), 1, + anon_sym_in, + ACTIONS(1212), 1, + anon_sym_of, + ACTIONS(4151), 1, sym_identifier, - STATE(2097), 1, + STATE(1952), 1, sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, + STATE(2315), 1, sym_string, - STATE(2669), 1, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, sym__module, ACTIONS(160), 15, anon_sym_PLUS_EQ, @@ -231602,14 +219422,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(118), 34, 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, @@ -231639,43 +219457,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3323] = 16, + [3603] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4238), 1, - anon_sym_EQ, - ACTIONS(4246), 1, + ACTIONS(4250), 1, anon_sym_EQ_GT, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(4280), 1, + ACTIONS(4290), 1, + anon_sym_EQ, + ACTIONS(4297), 1, + anon_sym_COLON, + ACTIONS(4299), 1, + anon_sym_LBRACK, + ACTIONS(4302), 1, anon_sym_DOT, - ACTIONS(4282), 1, - anon_sym_QMARK_DOT, - ACTIONS(4284), 1, + ACTIONS(4308), 1, anon_sym_LT, - STATE(2098), 1, + ACTIONS(4311), 1, + anon_sym_QMARK, + ACTIONS(4314), 1, + anon_sym_extends, + STATE(1953), 1, sym_comment, - STATE(3922), 1, - sym_arguments, - STATE(4004), 1, + STATE(3823), 1, sym_type_arguments, - ACTIONS(4240), 3, + STATE(6856), 1, + sym_type_annotation, + ACTIONS(4293), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4250), 3, - anon_sym_GT, + anon_sym_RBRACK, + ACTIONS(4305), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4222), 14, + ACTIONS(4242), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -231685,7 +219504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231701,10 +219520,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(4238), 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, @@ -231719,7 +219539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3419] = 14, + [3703] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -231732,17 +219552,17 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(1258), 1, + ACTIONS(1259), 1, anon_sym_EQ_GT, - ACTIONS(4147), 1, + ACTIONS(4151), 1, sym_identifier, - STATE(2099), 1, + STATE(1954), 1, sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, + STATE(2315), 1, sym_string, - STATE(2669), 1, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, sym__module, ACTIONS(160), 15, anon_sym_PLUS_EQ, @@ -231797,7 +219617,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3511] = 14, + [3795] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -231810,17 +219630,17 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(1309), 1, + ACTIONS(1311), 1, anon_sym_EQ_GT, - ACTIONS(4147), 1, + ACTIONS(4151), 1, sym_identifier, - STATE(2100), 1, + STATE(1955), 1, sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, + STATE(2315), 1, sym_string, - STATE(2669), 1, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, sym__module, ACTIONS(160), 15, anon_sym_PLUS_EQ, @@ -231844,7 +219664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -231875,50 +219695,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3603] = 5, + [3887] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2101), 1, - sym_comment, - ACTIONS(3173), 22, - anon_sym_STAR, + ACTIONS(4240), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4250), 1, + anon_sym_EQ_GT, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, + anon_sym_DOT, + ACTIONS(4286), 1, + anon_sym_QMARK_DOT, + ACTIONS(4288), 1, + anon_sym_LT, + STATE(1956), 1, + sym_comment, + STATE(3750), 1, + sym_arguments, + STATE(3890), 1, + sym_type_arguments, + ACTIONS(4244), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4256), 3, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_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(3175), 38, + ACTIONS(4242), 14, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -231934,17 +219757,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [3677] = 14, + ACTIONS(4238), 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, + [3983] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -231955,19 +219786,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(210), 1, sym__ternary_qmark, - ACTIONS(1303), 1, + ACTIONS(1305), 1, anon_sym_EQ, - ACTIONS(1309), 1, + ACTIONS(1311), 1, anon_sym_EQ_GT, - ACTIONS(4147), 1, + ACTIONS(4151), 1, sym_identifier, - STATE(2102), 1, + STATE(1957), 1, sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, + STATE(2315), 1, sym_string, - STATE(2669), 1, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, sym__module, ACTIONS(160), 15, anon_sym_PLUS_EQ, @@ -231991,7 +219822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -232022,42 +219853,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3769] = 16, + [4075] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4227), 1, - anon_sym_EQ_GT, - ACTIONS(4278), 1, + ACTIONS(4316), 1, + anon_sym_EQ, + STATE(1958), 1, + sym_comment, + ACTIONS(4254), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4238), 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(4242), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4280), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4282), 1, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [4153] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4282), 1, + anon_sym_LPAREN, ACTIONS(4284), 1, - anon_sym_LT, + anon_sym_DOT, ACTIONS(4286), 1, + anon_sym_QMARK_DOT, + ACTIONS(4288), 1, + anon_sym_LT, + ACTIONS(4318), 1, anon_sym_EQ, - STATE(2103), 1, + ACTIONS(4320), 1, + anon_sym_EQ_GT, + STATE(1959), 1, sym_comment, - STATE(3922), 1, + STATE(3750), 1, sym_arguments, - STATE(4004), 1, + STATE(3890), 1, sym_type_arguments, - ACTIONS(4240), 3, + ACTIONS(4244), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4250), 3, + ACTIONS(4256), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4222), 14, + ACTIONS(4242), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -232068,7 +219970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232084,7 +219986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(4238), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232102,7 +220004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [3865] = 14, + [4249] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -232113,19 +220015,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(210), 1, sym__ternary_qmark, - ACTIONS(1319), 1, - anon_sym_EQ, - ACTIONS(1325), 1, + ACTIONS(217), 1, anon_sym_EQ_GT, - ACTIONS(4147), 1, + ACTIONS(1115), 1, + anon_sym_EQ, + ACTIONS(1117), 1, + anon_sym_COLON, + ACTIONS(4151), 1, sym_identifier, - STATE(2104), 1, + STATE(1960), 1, sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, + STATE(2315), 1, sym_string, - STATE(2669), 1, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, sym__module, ACTIONS(160), 15, anon_sym_PLUS_EQ, @@ -232143,13 +220047,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(118), 35, 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, @@ -232180,89 +220083,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [3957] = 18, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_EQ_GT, - ACTIONS(4288), 1, - anon_sym_EQ, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(4297), 1, - anon_sym_LBRACK, - ACTIONS(4300), 1, - anon_sym_DOT, - ACTIONS(4306), 1, - anon_sym_LT, - ACTIONS(4309), 1, - anon_sym_QMARK, - ACTIONS(4312), 1, - anon_sym_extends, - STATE(2105), 1, - sym_comment, - STATE(4013), 1, - sym_type_arguments, - STATE(7041), 1, - sym_type_annotation, - ACTIONS(4291), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4303), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4222), 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(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 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, - [4057] = 14, + [4343] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -232275,17 +220096,17 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(1325), 1, + ACTIONS(1299), 1, anon_sym_EQ_GT, - ACTIONS(4147), 1, + ACTIONS(4151), 1, sym_identifier, - STATE(2106), 1, + STATE(1961), 1, sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, + STATE(2315), 1, sym_string, - STATE(2669), 1, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, sym__module, ACTIONS(160), 15, anon_sym_PLUS_EQ, @@ -232309,7 +220130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_in, - anon_sym_COLON, + anon_sym_of, anon_sym_LBRACK, anon_sym_GT, anon_sym_DOT, @@ -232340,14 +220161,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4149] = 5, + [4435] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2107), 1, + STATE(1962), 1, sym_comment, - ACTIONS(3163), 22, + ACTIONS(3213), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -232370,7 +220191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3165), 38, + ACTIONS(3215), 38, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -232409,36 +220230,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [4223] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, + [4509] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(217), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4250), 1, anon_sym_EQ_GT, - ACTIONS(1115), 1, + ACTIONS(4290), 1, anon_sym_EQ, - ACTIONS(1231), 1, - anon_sym_in, - ACTIONS(1234), 1, - anon_sym_of, - ACTIONS(4147), 1, - sym_identifier, - STATE(2108), 1, + ACTIONS(4299), 1, + anon_sym_LBRACK, + ACTIONS(4322), 1, + anon_sym_DOT, + ACTIONS(4325), 1, + anon_sym_LT, + STATE(1963), 1, sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, - sym_string, - STATE(2669), 1, - sym__module, - ACTIONS(160), 15, + STATE(4055), 1, + sym_type_arguments, + ACTIONS(4293), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4305), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4314), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4242), 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(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232454,88 +220290,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 34, + ACTIONS(4238), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_in, 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, - [4319] = 16, + [4603] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(4280), 1, + ACTIONS(4302), 1, anon_sym_DOT, - ACTIONS(4282), 1, - anon_sym_QMARK_DOT, - ACTIONS(4284), 1, + ACTIONS(4308), 1, anon_sym_LT, ACTIONS(4314), 1, + anon_sym_extends, + ACTIONS(4318), 1, anon_sym_EQ, - ACTIONS(4316), 1, + ACTIONS(4320), 1, anon_sym_EQ_GT, - STATE(2109), 1, + STATE(1964), 1, sym_comment, - STATE(3922), 1, - sym_arguments, - STATE(4004), 1, + STATE(3823), 1, sym_type_arguments, - ACTIONS(4240), 3, + ACTIONS(4299), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4250), 3, + ACTIONS(4305), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4222), 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(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232551,7 +220351,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(4242), 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(4238), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232569,40 +220386,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4415] = 15, + [4694] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(212), 1, + anon_sym_EQ, + ACTIONS(215), 1, + anon_sym_QMARK, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4246), 1, + ACTIONS(4330), 1, anon_sym_EQ_GT, - ACTIONS(4288), 1, - anon_sym_EQ, - ACTIONS(4297), 1, - anon_sym_LBRACK, - ACTIONS(4318), 1, - anon_sym_DOT, - ACTIONS(4321), 1, - anon_sym_LT, - STATE(2110), 1, + STATE(1965), 1, sym_comment, - STATE(4210), 1, - sym_type_arguments, - ACTIONS(4291), 2, + ACTIONS(4328), 5, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4303), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4312), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4222), 13, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(210), 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, @@ -232613,7 +220421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232629,7 +220437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 18, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232639,16 +220447,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4509] = 15, + [4777] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -232663,17 +220474,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(1117), 1, - anon_sym_COLON, - ACTIONS(4147), 1, + ACTIONS(4151), 1, sym_identifier, - STATE(2111), 1, + STATE(1966), 1, sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, + STATE(2315), 1, sym_string, - STATE(2669), 1, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, sym__module, ACTIONS(160), 15, anon_sym_PLUS_EQ, @@ -232727,42 +220536,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [4603] = 17, + [4868] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4297), 1, - anon_sym_LBRACK, - ACTIONS(4300), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, anon_sym_DOT, - ACTIONS(4306), 1, + ACTIONS(4286), 1, + anon_sym_QMARK_DOT, + ACTIONS(4288), 1, anon_sym_LT, - ACTIONS(4312), 1, - anon_sym_extends, - ACTIONS(4324), 1, - anon_sym_EQ, - ACTIONS(4329), 1, - anon_sym_RPAREN, ACTIONS(4332), 1, - anon_sym_EQ_GT, + anon_sym_EQ, ACTIONS(4334), 1, - anon_sym_QMARK, - STATE(2112), 1, + anon_sym_EQ_GT, + STATE(1967), 1, sym_comment, - STATE(4013), 1, + STATE(3750), 1, + sym_arguments, + STATE(3890), 1, sym_type_arguments, - ACTIONS(4303), 2, + ACTIONS(4244), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4256), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4327), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4222), 13, + ACTIONS(4242), 13, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -232772,7 +220581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232788,11 +220597,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 18, + ACTIONS(4238), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -232807,35 +220615,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4700] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [4963] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(217), 1, - anon_sym_EQ_GT, - ACTIONS(1115), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4240), 1, anon_sym_EQ, - ACTIONS(1231), 1, - anon_sym_in, - ACTIONS(1234), 1, - anon_sym_of, - ACTIONS(3973), 1, - anon_sym_LBRACE, - ACTIONS(4336), 1, - sym_identifier, - ACTIONS(4338), 1, - anon_sym_LBRACK, - STATE(2113), 1, + ACTIONS(4250), 1, + anon_sym_EQ_GT, + ACTIONS(4302), 1, + anon_sym_DOT, + ACTIONS(4308), 1, + anon_sym_LT, + ACTIONS(4314), 1, + anon_sym_extends, + STATE(1968), 1, sym_comment, - STATE(6926), 1, - sym__destructuring_pattern, - STATE(4344), 2, - sym_object_pattern, - sym_array_pattern, - ACTIONS(160), 15, + STATE(3823), 1, + sym_type_arguments, + ACTIONS(4299), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4305), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -232851,75 +220657,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 33, - anon_sym_STAR, + ACTIONS(4242), 16, + sym__ternary_qmark, 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, - [4793] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4238), 1, - anon_sym_EQ, - ACTIONS(4246), 1, - anon_sym_EQ_GT, - ACTIONS(4278), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4280), 1, - anon_sym_DOT, - ACTIONS(4282), 1, - anon_sym_QMARK_DOT, - ACTIONS(4284), 1, - anon_sym_LT, - STATE(2114), 1, - sym_comment, - STATE(3922), 1, - sym_arguments, - STATE(4004), 1, - sym_type_arguments, - ACTIONS(4250), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(4240), 4, - anon_sym_COMMA, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4222), 11, - sym__ternary_qmark, - anon_sym_as, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -232929,27 +220674,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 18, + ACTIONS(4238), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -232964,31 +220692,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4888] = 10, + [5054] = 17, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, + ACTIONS(4293), 1, + anon_sym_RPAREN, + ACTIONS(4299), 1, + anon_sym_LBRACK, + ACTIONS(4302), 1, + anon_sym_DOT, + ACTIONS(4308), 1, + anon_sym_LT, + ACTIONS(4314), 1, + anon_sym_extends, + ACTIONS(4336), 1, anon_sym_EQ, - ACTIONS(4332), 1, + ACTIONS(4342), 1, anon_sym_EQ_GT, - ACTIONS(4343), 1, + ACTIONS(4344), 1, anon_sym_QMARK, - STATE(2115), 1, + STATE(1969), 1, sym_comment, - ACTIONS(4341), 5, + STATE(3823), 1, + sym_type_arguments, + ACTIONS(4305), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4339), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4222), 15, + ACTIONS(4242), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -232999,7 +220737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233015,7 +220753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4238), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233025,19 +220763,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [4971] = 14, + [5151] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -233050,17 +220785,17 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(217), 1, anon_sym_EQ_GT, - ACTIONS(1393), 1, + ACTIONS(1341), 1, anon_sym_EQ, - ACTIONS(4147), 1, + ACTIONS(4151), 1, sym_identifier, - STATE(2116), 1, + STATE(1970), 1, sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, + STATE(2315), 1, sym_string, - STATE(2669), 1, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, sym__module, ACTIONS(160), 15, anon_sym_PLUS_EQ, @@ -233114,32 +220849,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5062] = 10, + [5242] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4348), 1, + anon_sym_LPAREN, + ACTIONS(4350), 1, + anon_sym_DOT, + STATE(1971), 1, + sym_comment, + STATE(2021), 1, + sym_arguments, + ACTIONS(4346), 56, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [5319] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(212), 1, - anon_sym_EQ, - ACTIONS(215), 1, - anon_sym_QMARK, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4347), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, + anon_sym_DOT, + ACTIONS(4286), 1, + anon_sym_QMARK_DOT, + ACTIONS(4288), 1, + anon_sym_LT, + ACTIONS(4352), 1, + anon_sym_EQ, + ACTIONS(4354), 1, anon_sym_EQ_GT, - STATE(2117), 1, + STATE(1972), 1, sym_comment, - ACTIONS(4345), 5, + STATE(3750), 1, + sym_arguments, + STATE(3890), 1, + sym_type_arguments, + ACTIONS(4244), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(210), 15, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4256), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4242), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -233149,7 +220963,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + anon_sym_implements, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233165,29 +220980,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4238), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5145] = 14, + [5414] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -233200,17 +221011,17 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(217), 1, anon_sym_EQ_GT, - ACTIONS(1381), 1, + ACTIONS(1345), 1, anon_sym_EQ, - ACTIONS(4147), 1, + ACTIONS(4151), 1, sym_identifier, - STATE(2118), 1, + STATE(1973), 1, sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, + STATE(2315), 1, sym_string, - STATE(2669), 1, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, sym__module, ACTIONS(160), 15, anon_sym_PLUS_EQ, @@ -233264,141 +221075,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5236] = 14, + [5505] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(217), 1, - anon_sym_EQ_GT, - ACTIONS(1387), 1, - anon_sym_EQ, - ACTIONS(4147), 1, - sym_identifier, - STATE(2119), 1, + ACTIONS(4358), 1, + anon_sym_class, + ACTIONS(4361), 1, + anon_sym_AT, + STATE(1974), 1, sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, - sym_string, - STATE(2669), 1, - sym__module, - ACTIONS(160), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, - anon_sym_STAR, - anon_sym_as, + STATE(1987), 1, + aux_sym_export_statement_repeat1, + STATE(2040), 1, + sym_decorator, + ACTIONS(4356), 55, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, anon_sym_BANG, anon_sym_LPAREN, - anon_sym_in, + anon_sym_await, + anon_sym_yield, 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_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, 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_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [5327] = 5, + sym_number, + sym_identifier, + sym_private_property_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, + [5584] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2120), 1, - sym_comment, - ACTIONS(4262), 22, - anon_sym_STAR, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, + anon_sym_DOT, + ACTIONS(4286), 1, + anon_sym_QMARK_DOT, + ACTIONS(4288), 1, + anon_sym_LT, + ACTIONS(4342), 1, + anon_sym_EQ_GT, + ACTIONS(4364), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + STATE(1975), 1, + sym_comment, + STATE(3750), 1, + sym_arguments, + STATE(3890), 1, + sym_type_arguments, + ACTIONS(4244), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4256), 3, anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_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(4264), 37, + ACTIONS(4242), 13, 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, @@ -233408,33 +221191,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [5400] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(217), 1, - anon_sym_EQ_GT, - ACTIONS(1389), 1, - anon_sym_EQ, - ACTIONS(4147), 1, - sym_identifier, - STATE(2121), 1, - sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, - sym_string, - STATE(2669), 1, - sym__module, - ACTIONS(160), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233450,43 +221207,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(4238), 17, 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, - [5491] = 14, + [5679] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -233499,17 +221238,17 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(217), 1, anon_sym_EQ_GT, - ACTIONS(1385), 1, + ACTIONS(1329), 1, anon_sym_EQ, - ACTIONS(4147), 1, + ACTIONS(4151), 1, sym_identifier, - STATE(2122), 1, + STATE(1976), 1, sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, + STATE(2315), 1, sym_string, - STATE(2669), 1, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, sym__module, ACTIONS(160), 15, anon_sym_PLUS_EQ, @@ -233563,41 +221302,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5582] = 17, + [5770] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4291), 1, - anon_sym_RPAREN, - ACTIONS(4297), 1, - anon_sym_LBRACK, - ACTIONS(4300), 1, - anon_sym_DOT, - ACTIONS(4306), 1, - anon_sym_LT, - ACTIONS(4312), 1, - anon_sym_extends, - ACTIONS(4334), 1, + ACTIONS(4344), 1, anon_sym_QMARK, - ACTIONS(4349), 1, + ACTIONS(4366), 1, anon_sym_EQ, - ACTIONS(4355), 1, + ACTIONS(4371), 1, anon_sym_EQ_GT, - STATE(2123), 1, + STATE(1977), 1, sym_comment, - STATE(4013), 1, - sym_type_arguments, - ACTIONS(4303), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4352), 2, + ACTIONS(4369), 5, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4222), 13, + anon_sym_RBRACK, + ACTIONS(4242), 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, @@ -233608,7 +221337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233624,7 +221353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 18, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233634,86 +221363,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [5679] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4359), 1, - anon_sym_LPAREN, - ACTIONS(4361), 1, - anon_sym_DOT, - STATE(2124), 1, - sym_comment, - STATE(2199), 1, - sym_arguments, - ACTIONS(4357), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [5756] = 14, + [5853] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -233726,17 +221388,17 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(217), 1, anon_sym_EQ_GT, - ACTIONS(1379), 1, + ACTIONS(1347), 1, anon_sym_EQ, - ACTIONS(4147), 1, + ACTIONS(4151), 1, sym_identifier, - STATE(2125), 1, + STATE(1978), 1, sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, + STATE(2315), 1, sym_string, - STATE(2669), 1, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, sym__module, ACTIONS(160), 15, anon_sym_PLUS_EQ, @@ -233790,49 +221452,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [5847] = 5, + [5944] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2126), 1, - sym_comment, - ACTIONS(4272), 22, - anon_sym_STAR, + ACTIONS(210), 1, + sym__ternary_qmark, + ACTIONS(217), 1, + anon_sym_EQ_GT, + ACTIONS(1115), 1, anon_sym_EQ, - anon_sym_BANG, + ACTIONS(1209), 1, anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_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(4274), 37, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(1212), 1, + anon_sym_of, + ACTIONS(3977), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4373), 1, + sym_identifier, + ACTIONS(4375), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + STATE(1979), 1, + sym_comment, + STATE(6742), 1, + sym__destructuring_pattern, + STATE(4286), 2, + sym_object_pattern, + sym_array_pattern, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233848,51 +221496,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 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, - anon_sym_implements, - [5920] = 16, + [6037] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4278), 1, + ACTIONS(4240), 1, + anon_sym_EQ, + ACTIONS(4250), 1, + anon_sym_EQ_GT, + ACTIONS(4282), 1, anon_sym_LPAREN, - ACTIONS(4280), 1, + ACTIONS(4284), 1, anon_sym_DOT, - ACTIONS(4282), 1, + ACTIONS(4286), 1, anon_sym_QMARK_DOT, - ACTIONS(4284), 1, + ACTIONS(4288), 1, anon_sym_LT, - ACTIONS(4363), 1, - anon_sym_EQ, - ACTIONS(4365), 1, - anon_sym_EQ_GT, - STATE(2127), 1, + STATE(1980), 1, sym_comment, - STATE(3922), 1, + STATE(3750), 1, sym_arguments, - STATE(4004), 1, + STATE(3890), 1, sym_type_arguments, - ACTIONS(4240), 3, + ACTIONS(4256), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(4244), 4, anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4250), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4222), 13, + ACTIONS(4242), 11, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -233902,8 +221574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233919,10 +221590,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(4238), 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, @@ -233937,33 +221609,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6015] = 14, + [6132] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1240), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4300), 1, - anon_sym_DOT, - ACTIONS(4306), 1, - anon_sym_LT, - ACTIONS(4312), 1, - anon_sym_extends, - ACTIONS(4314), 1, - anon_sym_EQ, - ACTIONS(4316), 1, + ACTIONS(4378), 1, + anon_sym_LBRACK, + ACTIONS(4381), 1, anon_sym_EQ_GT, - STATE(2128), 1, + STATE(1981), 1, sym_comment, - STATE(4013), 1, - sym_type_arguments, - ACTIONS(4297), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4303), 3, - anon_sym_GT, + ACTIONS(4383), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4229), 15, + ACTIONS(2063), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(210), 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(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -233979,27 +221663,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 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(4218), 17, + ACTIONS(118), 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, @@ -234011,10 +221679,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6106] = 14, + [6217] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -234027,17 +221696,17 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(217), 1, anon_sym_EQ_GT, - ACTIONS(1391), 1, + ACTIONS(1331), 1, anon_sym_EQ, - ACTIONS(4147), 1, + ACTIONS(4151), 1, sym_identifier, - STATE(2129), 1, + STATE(1982), 1, sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, + STATE(2315), 1, sym_string, - STATE(2669), 1, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, sym__module, ACTIONS(160), 15, anon_sym_PLUS_EQ, @@ -234091,33 +221760,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [6197] = 14, + [6308] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4227), 1, + ACTIONS(4269), 1, anon_sym_EQ_GT, - ACTIONS(4286), 1, + ACTIONS(4280), 1, anon_sym_EQ, - ACTIONS(4300), 1, + ACTIONS(4302), 1, anon_sym_DOT, - ACTIONS(4306), 1, + ACTIONS(4308), 1, anon_sym_LT, - ACTIONS(4312), 1, + ACTIONS(4314), 1, anon_sym_extends, - STATE(2130), 1, + STATE(1983), 1, sym_comment, - STATE(4013), 1, + STATE(3823), 1, sym_type_arguments, - ACTIONS(4297), 2, + ACTIONS(4299), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4303), 3, + ACTIONS(4305), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234133,7 +221802,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 16, + ACTIONS(4242), 16, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -234150,7 +221819,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 17, + ACTIONS(4238), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234168,7 +221837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6288] = 14, + [6399] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -234181,17 +221850,17 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(217), 1, anon_sym_EQ_GT, - ACTIONS(1395), 1, + ACTIONS(1333), 1, anon_sym_EQ, - ACTIONS(4147), 1, + ACTIONS(4151), 1, sym_identifier, - STATE(2131), 1, + STATE(1984), 1, sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, + STATE(2315), 1, sym_string, - STATE(2669), 1, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, sym__module, ACTIONS(160), 15, anon_sym_PLUS_EQ, @@ -234245,34 +221914,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [6379] = 11, + [6490] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1262), 1, + ACTIONS(144), 1, + anon_sym_DQUOTE, + ACTIONS(146), 1, + anon_sym_SQUOTE, + ACTIONS(210), 1, + sym__ternary_qmark, + ACTIONS(217), 1, + anon_sym_EQ_GT, + ACTIONS(1337), 1, anon_sym_EQ, + ACTIONS(4151), 1, + sym_identifier, + STATE(1985), 1, + sym_comment, + STATE(2315), 1, + sym_string, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, + sym__module, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 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, + [6581] = 17, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4367), 1, + ACTIONS(4299), 1, anon_sym_LBRACK, - ACTIONS(4370), 1, + ACTIONS(4302), 1, + anon_sym_DOT, + ACTIONS(4308), 1, + anon_sym_LT, + ACTIONS(4314), 1, + anon_sym_extends, + ACTIONS(4344), 1, + anon_sym_QMARK, + ACTIONS(4366), 1, + anon_sym_EQ, + ACTIONS(4371), 1, anon_sym_EQ_GT, - STATE(2132), 1, + ACTIONS(4386), 1, + anon_sym_RPAREN, + STATE(1986), 1, sym_comment, - ACTIONS(4372), 2, + STATE(3823), 1, + sym_type_arguments, + ACTIONS(4305), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2063), 6, - sym__automatic_semicolon, + ACTIONS(4369), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(210), 14, + anon_sym_COLON, + ACTIONS(4242), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -234283,7 +222036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234299,7 +222052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 19, + ACTIONS(4238), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234315,26 +222068,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6464] = 8, + [6678] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4377), 1, - anon_sym_class, - ACTIONS(4380), 1, + ACTIONS(4361), 1, anon_sym_AT, - STATE(2133), 1, + STATE(2040), 1, + sym_decorator, + STATE(1987), 2, sym_comment, - STATE(2139), 1, aux_sym_export_statement_repeat1, - STATE(2189), 1, - sym_decorator, - ACTIONS(4375), 55, + ACTIONS(4356), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -234350,6 +222099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LTtemplate_GT, anon_sym_DQUOTE, anon_sym_SQUOTE, + anon_sym_class, anon_sym_async, anon_sym_function, anon_sym_new, @@ -234390,163 +222140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [6543] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(4280), 1, - anon_sym_DOT, - ACTIONS(4282), 1, - anon_sym_QMARK_DOT, - ACTIONS(4284), 1, - anon_sym_LT, - ACTIONS(4355), 1, - anon_sym_EQ_GT, - ACTIONS(4383), 1, - anon_sym_EQ, - STATE(2134), 1, - sym_comment, - STATE(3922), 1, - sym_arguments, - STATE(4004), 1, - sym_type_arguments, - ACTIONS(4250), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4240), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4222), 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(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 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, - [6638] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4238), 1, - anon_sym_EQ, - ACTIONS(4246), 1, - anon_sym_EQ_GT, - ACTIONS(4300), 1, - anon_sym_DOT, - ACTIONS(4306), 1, - anon_sym_LT, - ACTIONS(4312), 1, - anon_sym_extends, - STATE(2135), 1, - sym_comment, - STATE(4013), 1, - sym_type_arguments, - ACTIONS(4297), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4303), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4218), 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, - [6729] = 10, + [6753] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(1115), 1, @@ -234555,11 +222149,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4347), 1, + ACTIONS(4330), 1, anon_sym_EQ_GT, - STATE(2136), 1, + STATE(1988), 1, sym_comment, - ACTIONS(4385), 5, + ACTIONS(4389), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, @@ -234619,86 +222213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [6812] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(4280), 1, - anon_sym_DOT, - ACTIONS(4282), 1, - anon_sym_QMARK_DOT, - ACTIONS(4284), 1, - anon_sym_LT, - ACTIONS(4355), 1, - anon_sym_EQ_GT, - ACTIONS(4383), 1, - anon_sym_EQ, - STATE(2137), 1, - sym_comment, - STATE(3922), 1, - sym_arguments, - STATE(4004), 1, - sym_type_arguments, - ACTIONS(4240), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4250), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4222), 13, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 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, - [6907] = 14, + [6836] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -234711,185 +222226,19 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(217), 1, anon_sym_EQ_GT, - ACTIONS(1383), 1, + ACTIONS(1343), 1, anon_sym_EQ, - ACTIONS(4147), 1, - sym_identifier, - STATE(2138), 1, - sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, - sym_string, - STATE(2669), 1, - sym__module, - ACTIONS(160), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 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, - [6998] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4380), 1, - anon_sym_AT, - STATE(2189), 1, - sym_decorator, - STATE(2139), 2, - sym_comment, - aux_sym_export_statement_repeat1, - ACTIONS(4375), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, + ACTIONS(4151), 1, sym_identifier, - sym_private_property_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, - [7073] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(4280), 1, - anon_sym_DOT, - ACTIONS(4282), 1, - anon_sym_QMARK_DOT, - ACTIONS(4284), 1, - anon_sym_LT, - ACTIONS(4387), 1, - anon_sym_EQ, - ACTIONS(4389), 1, - anon_sym_EQ_GT, - STATE(2140), 1, + STATE(1989), 1, sym_comment, - STATE(3922), 1, - sym_arguments, - STATE(4004), 1, - sym_type_arguments, - ACTIONS(4240), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4250), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4222), 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(4229), 15, + STATE(2315), 1, + sym_string, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, + sym__module, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234905,44 +222254,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(118), 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, - [7168] = 10, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [6927] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4324), 1, + ACTIONS(4316), 1, anon_sym_EQ, - ACTIONS(4332), 1, + ACTIONS(4371), 1, anon_sym_EQ_GT, - ACTIONS(4334), 1, + ACTIONS(4393), 1, anon_sym_QMARK, - STATE(2141), 1, + STATE(1990), 1, sym_comment, - ACTIONS(4327), 5, + ACTIONS(4391), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4222), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -234958,7 +222325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -234974,7 +222341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234996,57 +222363,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7251] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [7010] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - anon_sym_SQUOTE, - ACTIONS(210), 1, - sym__ternary_qmark, - ACTIONS(217), 1, - anon_sym_EQ_GT, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(4147), 1, - sym_identifier, - STATE(2142), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(1991), 1, sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, - sym_string, - STATE(2669), 1, - sym__module, - ACTIONS(160), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 35, + ACTIONS(4226), 22, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, 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, @@ -235061,19 +222390,48 @@ static const uint16_t ts_small_parse_table[] = { 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_QMARK_QMARK, + ACTIONS(4228), 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_QMARK_QMARK, anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [7342] = 14, + anon_sym_implements, + [7083] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -235086,17 +222444,17 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, ACTIONS(217), 1, anon_sym_EQ_GT, - ACTIONS(1397), 1, + ACTIONS(1335), 1, anon_sym_EQ, - ACTIONS(4147), 1, + ACTIONS(4151), 1, sym_identifier, - STATE(2143), 1, + STATE(1992), 1, sym_comment, - STATE(2469), 1, - sym_nested_identifier, - STATE(2489), 1, + STATE(2315), 1, sym_string, - STATE(2669), 1, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, sym__module, ACTIONS(160), 15, anon_sym_PLUS_EQ, @@ -235150,24 +222508,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [7433] = 10, + [7174] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(1993), 1, + sym_comment, + ACTIONS(4230), 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(4232), 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, + [7247] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1035), 1, + ACTIONS(144), 1, + anon_sym_DQUOTE, + ACTIONS(146), 1, + anon_sym_SQUOTE, + ACTIONS(210), 1, + sym__ternary_qmark, + ACTIONS(217), 1, anon_sym_EQ_GT, - ACTIONS(1179), 1, + ACTIONS(1339), 1, anon_sym_EQ, - ACTIONS(1236), 1, - anon_sym_COLON, - ACTIONS(4391), 1, + ACTIONS(4151), 1, sym_identifier, - STATE(2144), 1, + STATE(1994), 1, sym_comment, - ACTIONS(210), 2, - sym__automatic_semicolon, - sym__ternary_qmark, + STATE(2315), 1, + sym_string, + STATE(2434), 1, + sym_nested_identifier, + STATE(2634), 1, + sym__module, ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -235184,14 +222617,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 37, + ACTIONS(118), 35, 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, @@ -235222,41 +222653,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [7515] = 16, + [7338] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4278), 1, + ACTIONS(4282), 1, anon_sym_LPAREN, - ACTIONS(4280), 1, + ACTIONS(4284), 1, anon_sym_DOT, - ACTIONS(4282), 1, + ACTIONS(4286), 1, anon_sym_QMARK_DOT, - ACTIONS(4284), 1, + ACTIONS(4288), 1, anon_sym_LT, - ACTIONS(4393), 1, - anon_sym_EQ, - ACTIONS(4395), 1, + ACTIONS(4342), 1, anon_sym_EQ_GT, - STATE(2145), 1, + ACTIONS(4364), 1, + anon_sym_EQ, + STATE(1995), 1, sym_comment, - STATE(3922), 1, + STATE(3750), 1, sym_arguments, - STATE(4004), 1, + STATE(3890), 1, sym_type_arguments, - ACTIONS(4240), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4250), 3, - anon_sym_GT, + ACTIONS(4256), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4222), 12, + ACTIONS(4244), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4242), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -235266,7 +222697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235282,10 +222713,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(4238), 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, @@ -235300,35 +222732,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7609] = 13, + [7433] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(212), 1, - anon_sym_EQ, - ACTIONS(215), 1, - anon_sym_QMARK, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4347), 1, + ACTIONS(4302), 1, + anon_sym_DOT, + ACTIONS(4308), 1, + anon_sym_LT, + ACTIONS(4314), 1, + anon_sym_extends, + ACTIONS(4352), 1, + anon_sym_EQ, + ACTIONS(4354), 1, anon_sym_EQ_GT, - ACTIONS(4367), 1, - anon_sym_LBRACK, - STATE(2146), 1, + STATE(1996), 1, sym_comment, - ACTIONS(2063), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(4345), 2, + STATE(3823), 1, + sym_type_arguments, + ACTIONS(4299), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4372), 2, + anon_sym_LBRACK, + ACTIONS(4305), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(210), 14, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -235339,7 +222773,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + anon_sym_implements, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235355,11 +222790,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 19, + ACTIONS(4238), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -235371,45 +222805,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7697] = 16, + [7523] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(1997), 1, + sym_comment, + ACTIONS(4395), 58, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DOT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [7593] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(4280), 1, + ACTIONS(4299), 1, + anon_sym_LBRACK, + ACTIONS(4302), 1, anon_sym_DOT, - ACTIONS(4282), 1, - anon_sym_QMARK_DOT, - ACTIONS(4284), 1, + ACTIONS(4308), 1, anon_sym_LT, - ACTIONS(4397), 1, + ACTIONS(4332), 1, anon_sym_EQ, - ACTIONS(4399), 1, + ACTIONS(4334), 1, anon_sym_EQ_GT, - STATE(2147), 1, + STATE(1998), 1, sym_comment, - STATE(3922), 1, - sym_arguments, - STATE(4004), 1, + STATE(3823), 1, sym_type_arguments, - ACTIONS(4240), 3, + ACTIONS(4314), 2, anon_sym_COMMA, - anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4250), 3, + ACTIONS(4305), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4222), 12, + ACTIONS(4242), 15, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -235419,7 +222916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235435,7 +222932,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(4238), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -235453,40 +222950,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7791] = 16, + [7683] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, + ACTIONS(4316), 1, anon_sym_EQ, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(4280), 1, - anon_sym_DOT, - ACTIONS(4282), 1, - anon_sym_QMARK_DOT, - ACTIONS(4284), 1, - anon_sym_LT, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - STATE(2148), 1, + ACTIONS(4393), 1, + anon_sym_QMARK, + STATE(1999), 1, sym_comment, - STATE(3922), 1, - sym_arguments, - STATE(4004), 1, - sym_type_arguments, - ACTIONS(4250), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4240), 4, + ACTIONS(4391), 5, anon_sym_COMMA, - anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4222), 11, + ACTIONS(4242), 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, @@ -235496,7 +222983,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235512,7 +222999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 18, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -235522,29 +223009,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7885] = 10, + [7763] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1035), 1, + ACTIONS(977), 1, anon_sym_EQ_GT, - ACTIONS(1179), 1, + ACTIONS(1207), 1, anon_sym_EQ, - ACTIONS(1199), 1, + ACTIONS(1236), 1, anon_sym_COLON, - ACTIONS(4401), 1, + ACTIONS(4397), 1, sym_identifier, - STATE(2149), 1, + STATE(2000), 1, sym_comment, ACTIONS(210), 2, sym__automatic_semicolon, @@ -235603,49 +223093,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [7967] = 14, + [7845] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4300), 1, - anon_sym_DOT, - ACTIONS(4306), 1, - anon_sym_LT, - ACTIONS(4312), 1, - anon_sym_extends, - ACTIONS(4355), 1, + ACTIONS(977), 1, anon_sym_EQ_GT, - ACTIONS(4383), 1, + ACTIONS(1207), 1, anon_sym_EQ, - STATE(2150), 1, + ACTIONS(1230), 1, + anon_sym_COLON, + ACTIONS(4399), 1, + sym_identifier, + STATE(2001), 1, sym_comment, - STATE(4013), 1, - sym_type_arguments, - ACTIONS(4297), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4303), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4222), 15, + ACTIONS(210), 2, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235661,43 +223127,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(118), 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, - [8057] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [7927] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1035), 1, - anon_sym_EQ_GT, - ACTIONS(1179), 1, + ACTIONS(1207), 1, anon_sym_EQ, - ACTIONS(1238), 1, - anon_sym_COLON, - ACTIONS(4212), 1, - sym_identifier, - STATE(2151), 1, + ACTIONS(2063), 1, + anon_sym_extends, + ACTIONS(2778), 1, + anon_sym_EQ_GT, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2002), 1, sym_comment, - ACTIONS(210), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(4378), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4383), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235713,74 +223201,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 37, - anon_sym_STAR, + ACTIONS(210), 17, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_in, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(118), 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_AMP, anon_sym_CARET, - 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, - [8139] = 14, + [8011] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4300), 1, + ACTIONS(4240), 1, + anon_sym_EQ, + ACTIONS(4250), 1, + anon_sym_EQ_GT, + ACTIONS(4299), 1, + anon_sym_LBRACK, + ACTIONS(4302), 1, anon_sym_DOT, - ACTIONS(4306), 1, + ACTIONS(4308), 1, anon_sym_LT, - ACTIONS(4312), 1, + ACTIONS(4314), 1, anon_sym_extends, - ACTIONS(4363), 1, - anon_sym_EQ, - ACTIONS(4365), 1, - anon_sym_EQ_GT, - STATE(2152), 1, + ACTIONS(4391), 1, + anon_sym_COLON, + STATE(2003), 1, sym_comment, - STATE(4013), 1, + STATE(3823), 1, sym_type_arguments, - ACTIONS(4297), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4303), 3, - anon_sym_GT, + ACTIONS(4305), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4222), 15, + ACTIONS(4401), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4242), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -235792,8 +223281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235809,10 +223297,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(4238), 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, @@ -235827,41 +223316,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8229] = 16, + [8105] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4278), 1, + ACTIONS(4282), 1, anon_sym_LPAREN, - ACTIONS(4280), 1, + ACTIONS(4284), 1, anon_sym_DOT, - ACTIONS(4282), 1, + ACTIONS(4286), 1, anon_sym_QMARK_DOT, - ACTIONS(4284), 1, + ACTIONS(4288), 1, anon_sym_LT, - ACTIONS(4403), 1, - anon_sym_EQ, ACTIONS(4405), 1, + anon_sym_EQ, + ACTIONS(4407), 1, anon_sym_EQ_GT, - STATE(2153), 1, + STATE(2004), 1, sym_comment, - STATE(3922), 1, + STATE(3750), 1, sym_arguments, - STATE(4004), 1, + STATE(3890), 1, sym_type_arguments, - ACTIONS(4240), 3, + ACTIONS(4244), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4250), 3, + ACTIONS(4256), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4222), 12, + ACTIONS(4242), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -235871,7 +223360,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -235887,7 +223376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(4238), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -235905,105 +223394,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8323] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2154), 1, - sym_comment, - ACTIONS(3401), 58, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_await, - anon_sym_SEMI, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [8393] = 16, + [8199] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4238), 1, - anon_sym_EQ, - ACTIONS(4246), 1, - anon_sym_EQ_GT, - ACTIONS(4297), 1, - anon_sym_LBRACK, - ACTIONS(4300), 1, + ACTIONS(4302), 1, anon_sym_DOT, - ACTIONS(4306), 1, + ACTIONS(4308), 1, anon_sym_LT, - ACTIONS(4312), 1, + ACTIONS(4314), 1, anon_sym_extends, - ACTIONS(4341), 1, - anon_sym_COLON, - STATE(2155), 1, + ACTIONS(4342), 1, + anon_sym_EQ_GT, + ACTIONS(4364), 1, + anon_sym_EQ, + STATE(2005), 1, sym_comment, - STATE(4013), 1, + STATE(3823), 1, sym_type_arguments, - ACTIONS(4303), 2, + ACTIONS(4299), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4305), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4407), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4222), 13, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -236014,7 +223436,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236030,11 +223452,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 18, + ACTIONS(4238), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -236049,23 +223470,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8487] = 11, + [8289] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1205), 1, + ACTIONS(1218), 1, anon_sym_EQ, ACTIONS(2063), 1, anon_sym_extends, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4370), 1, + ACTIONS(4409), 1, anon_sym_EQ_GT, - STATE(2156), 1, + STATE(2006), 1, sym_comment, - ACTIONS(4367), 2, + ACTIONS(4378), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4372), 3, + ACTIONS(4383), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, @@ -236086,12 +223507,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, ACTIONS(210), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -236122,25 +223543,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8571] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [8373] = 13, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1035), 1, - anon_sym_EQ_GT, - ACTIONS(1179), 1, + ACTIONS(212), 1, anon_sym_EQ, - ACTIONS(1229), 1, - anon_sym_COLON, - ACTIONS(4411), 1, - sym_identifier, - STATE(2157), 1, + ACTIONS(215), 1, + anon_sym_QMARK, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4330), 1, + anon_sym_EQ_GT, + ACTIONS(4378), 1, + anon_sym_LBRACK, + STATE(2007), 1, sym_comment, - ACTIONS(210), 2, - sym__automatic_semicolon, + ACTIONS(2063), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(4328), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4383), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(210), 14, sym__ternary_qmark, - ACTIONS(160), 15, + 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(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236156,73 +223598,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 37, + ACTIONS(118), 19, 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, - [8653] = 15, + [8461] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4297), 1, + ACTIONS(4299), 1, anon_sym_LBRACK, - ACTIONS(4300), 1, + ACTIONS(4302), 1, anon_sym_DOT, - ACTIONS(4306), 1, + ACTIONS(4308), 1, anon_sym_LT, - ACTIONS(4332), 1, + ACTIONS(4316), 1, + anon_sym_EQ, + ACTIONS(4371), 1, anon_sym_EQ_GT, - ACTIONS(4341), 1, + ACTIONS(4391), 1, anon_sym_COLON, - STATE(2158), 1, + STATE(2008), 1, sym_comment, - STATE(4013), 1, + STATE(3823), 1, sym_type_arguments, - ACTIONS(4303), 2, + ACTIONS(4305), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4312), 3, + ACTIONS(4314), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4222), 13, + ACTIONS(4242), 13, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -236236,7 +223660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236252,7 +223676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 18, + ACTIONS(4238), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -236271,93 +223695,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8745] = 4, + [8553] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2159), 1, - sym_comment, - ACTIONS(4413), 58, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DOT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [8815] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1179), 1, - anon_sym_EQ, - ACTIONS(2063), 1, - anon_sym_extends, - ACTIONS(2778), 1, + ACTIONS(977), 1, anon_sym_EQ_GT, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2160), 1, + ACTIONS(1207), 1, + anon_sym_EQ, + ACTIONS(1232), 1, + anon_sym_COLON, + ACTIONS(4411), 1, + sym_identifier, + STATE(2009), 1, sym_comment, - ACTIONS(4367), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4372), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2780), 15, + ACTIONS(210), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236373,64 +223729,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 17, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(118), 37, + anon_sym_STAR, anon_sym_as, - anon_sym_RBRACE, + 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 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_AMP, anon_sym_CARET, + 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, - [8899] = 11, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [8635] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1189), 1, - anon_sym_EQ, - ACTIONS(2063), 1, - anon_sym_extends, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4415), 1, + ACTIONS(977), 1, anon_sym_EQ_GT, - STATE(2161), 1, + ACTIONS(1207), 1, + anon_sym_EQ, + ACTIONS(1238), 1, + anon_sym_COLON, + ACTIONS(4413), 1, + sym_identifier, + STATE(2010), 1, sym_comment, - ACTIONS(4367), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4372), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2780), 15, + ACTIONS(210), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236446,51 +223801,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 17, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(118), 37, + anon_sym_STAR, anon_sym_as, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_of, + anon_sym_in, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 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_AMP, anon_sym_CARET, + 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, - [8983] = 4, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [8717] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2162), 1, + STATE(2011), 1, sym_comment, - ACTIONS(3333), 58, + ACTIONS(3433), 58, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -236549,25 +223905,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [9053] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [8787] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1035), 1, - anon_sym_EQ_GT, - ACTIONS(1179), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, + anon_sym_DOT, + ACTIONS(4286), 1, + anon_sym_QMARK_DOT, + ACTIONS(4288), 1, + anon_sym_LT, + ACTIONS(4316), 1, anon_sym_EQ, - ACTIONS(1181), 1, - anon_sym_COLON, - ACTIONS(4417), 1, - sym_identifier, - STATE(2163), 1, + ACTIONS(4371), 1, + anon_sym_EQ_GT, + STATE(2012), 1, sym_comment, - ACTIONS(210), 2, - sym__automatic_semicolon, + STATE(3750), 1, + sym_arguments, + STATE(3890), 1, + sym_type_arguments, + ACTIONS(4256), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4244), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4242), 11, sym__ternary_qmark, - ACTIONS(160), 15, + 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(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236583,45 +223964,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 37, + ACTIONS(4238), 18, 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, - [9135] = 13, + [8881] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(115), 1, @@ -236630,19 +223992,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4367), 1, + ACTIONS(4378), 1, anon_sym_LBRACK, - ACTIONS(4422), 1, + ACTIONS(4418), 1, anon_sym_EQ_GT, - STATE(2164), 1, + STATE(2013), 1, sym_comment, ACTIONS(2063), 2, anon_sym_RPAREN, anon_sym_extends, - ACTIONS(4372), 2, + ACTIONS(4383), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4419), 2, + ACTIONS(4415), 2, anon_sym_COMMA, anon_sym_COLON, ACTIONS(210), 14, @@ -236696,50 +224058,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9223] = 16, + [8969] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4238), 1, - anon_sym_EQ, - ACTIONS(4246), 1, + ACTIONS(977), 1, anon_sym_EQ_GT, - ACTIONS(4278), 1, + ACTIONS(1207), 1, + anon_sym_EQ, + ACTIONS(1234), 1, + anon_sym_COLON, + ACTIONS(4216), 1, + sym_identifier, + STATE(2014), 1, + sym_comment, + ACTIONS(210), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(160), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 37, + anon_sym_STAR, + anon_sym_as, + anon_sym_COMMA, + anon_sym_BANG, anon_sym_LPAREN, - ACTIONS(4280), 1, + anon_sym_in, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4282), 1, anon_sym_QMARK_DOT, - ACTIONS(4284), 1, - anon_sym_LT, - STATE(2165), 1, - sym_comment, - STATE(3922), 1, - sym_arguments, - STATE(4004), 1, - sym_type_arguments, - ACTIONS(4250), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_AMP, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(4240), 3, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4222), 12, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + 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, - ACTIONS(4229), 15, + [9051] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1183), 1, + anon_sym_EQ, + ACTIONS(2063), 1, + anon_sym_extends, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4381), 1, + anon_sym_EQ_GT, + STATE(2015), 1, + sym_comment, + ACTIONS(4378), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4383), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236755,11 +224166,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 18, + ACTIONS(210), 17, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(118), 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, @@ -236771,42 +224199,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9317] = 14, + [9135] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4297), 1, - anon_sym_LBRACK, - ACTIONS(4300), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, anon_sym_DOT, - ACTIONS(4306), 1, + ACTIONS(4286), 1, + anon_sym_QMARK_DOT, + ACTIONS(4288), 1, anon_sym_LT, - ACTIONS(4387), 1, + ACTIONS(4420), 1, anon_sym_EQ, - ACTIONS(4389), 1, + ACTIONS(4422), 1, anon_sym_EQ_GT, - STATE(2166), 1, + STATE(2016), 1, sym_comment, - STATE(4013), 1, + STATE(3750), 1, + sym_arguments, + STATE(3890), 1, sym_type_arguments, - ACTIONS(4312), 2, + ACTIONS(4244), 3, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4303), 3, + ACTIONS(4256), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4222), 15, - sym__automatic_semicolon, + ACTIONS(4242), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -236816,7 +224247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236832,7 +224263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(4238), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -236850,24 +224281,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9407] = 9, + [9229] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4343), 1, + ACTIONS(4344), 1, anon_sym_QMARK, - STATE(2167), 1, + ACTIONS(4366), 1, + anon_sym_EQ, + STATE(2017), 1, sym_comment, - ACTIONS(4341), 5, + ACTIONS(4369), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(4222), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -236883,7 +224314,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236899,7 +224330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -236921,30 +224352,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9487] = 9, + [9309] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4324), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, + anon_sym_DOT, + ACTIONS(4286), 1, + anon_sym_QMARK_DOT, + ACTIONS(4288), 1, + anon_sym_LT, + ACTIONS(4424), 1, anon_sym_EQ, - ACTIONS(4334), 1, - anon_sym_QMARK, - STATE(2168), 1, + ACTIONS(4426), 1, + anon_sym_EQ_GT, + STATE(2018), 1, sym_comment, - ACTIONS(4327), 5, + STATE(3750), 1, + sym_arguments, + STATE(3890), 1, + sym_type_arguments, + ACTIONS(4244), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4222), 15, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4256), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4242), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -236954,7 +224396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -236970,40 +224412,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4238), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9567] = 8, + [9403] = 16, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4415), 1, + ACTIONS(4240), 1, + anon_sym_EQ, + ACTIONS(4250), 1, anon_sym_EQ_GT, - STATE(2169), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, + anon_sym_DOT, + ACTIONS(4286), 1, + anon_sym_QMARK_DOT, + ACTIONS(4288), 1, + anon_sym_LT, + STATE(2019), 1, sym_comment, - ACTIONS(2780), 15, + STATE(3750), 1, + sym_arguments, + STATE(3890), 1, + sym_type_arguments, + ACTIONS(4256), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4244), 3, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4242), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237019,27 +224489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 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(118), 21, + ACTIONS(4238), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -237049,26 +224499,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9644] = 4, + [9497] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2170), 1, + STATE(2020), 1, sym_comment, - ACTIONS(3227), 57, + ACTIONS(3453), 58, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -237078,6 +224525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_let, anon_sym_BANG, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_await, anon_sym_SEMI, anon_sym_yield, @@ -237126,18 +224574,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [9713] = 8, + [9567] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2021), 1, + sym_comment, + ACTIONS(4428), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [9636] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1183), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4246), 1, + ACTIONS(4381), 1, anon_sym_EQ_GT, - ACTIONS(4276), 1, - anon_sym_EQ, - STATE(2171), 1, + STATE(2022), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237153,7 +224666,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 19, + ACTIONS(210), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -237173,7 +224686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -237195,48 +224708,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9790] = 5, + [9713] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2172), 1, - sym_comment, - ACTIONS(4214), 22, - anon_sym_STAR, + ACTIONS(2971), 1, + anon_sym_COLON, + ACTIONS(4269), 1, + anon_sym_EQ_GT, + ACTIONS(4280), 1, 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(4216), 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, + STATE(2023), 1, + sym_comment, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237252,6 +224737,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(4242), 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, @@ -237261,83 +224756,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [9861] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2173), 1, - sym_comment, - ACTIONS(4357), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, + ACTIONS(4238), 21, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [9930] = 9, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [9792] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1179), 1, + ACTIONS(1207), 1, anon_sym_EQ, ACTIONS(2778), 1, anon_sym_EQ_GT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2933), 1, + ACTIONS(2895), 1, anon_sym_COLON, - STATE(2174), 1, + STATE(2024), 1, sym_comment, ACTIONS(2780), 15, anon_sym_PLUS_EQ, @@ -237396,47 +224848,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10009] = 14, + [9871] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1115), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4238), 1, - anon_sym_EQ, - ACTIONS(4246), 1, + ACTIONS(4381), 1, anon_sym_EQ_GT, - ACTIONS(4300), 1, - anon_sym_DOT, - ACTIONS(4306), 1, - anon_sym_LT, - ACTIONS(4312), 1, - anon_sym_extends, - STATE(2175), 1, + STATE(2025), 1, sym_comment, - STATE(4013), 1, - sym_type_arguments, - ACTIONS(4297), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4303), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4222), 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(4229), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237452,7 +224875,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 18, + ACTIONS(210), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -237462,29 +224905,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10098] = 9, + [9948] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1207), 1, + anon_sym_EQ, + ACTIONS(2778), 1, + anon_sym_EQ_GT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2895), 1, + ACTIONS(2971), 1, anon_sym_COLON, - ACTIONS(4227), 1, - anon_sym_EQ_GT, - ACTIONS(4286), 1, - anon_sym_EQ, - STATE(2176), 1, + STATE(2026), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237500,7 +224946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 18, + ACTIONS(210), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -237519,7 +224965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -237541,21 +224987,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10177] = 10, + [10027] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1179), 1, + ACTIONS(1263), 1, anon_sym_EQ, - ACTIONS(1231), 1, - anon_sym_in, - ACTIONS(2778), 1, - anon_sym_EQ_GT, + ACTIONS(2063), 1, + anon_sym_extends, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4424), 1, - anon_sym_of, - STATE(2177), 1, + ACTIONS(4418), 1, + anon_sym_EQ_GT, + STATE(2027), 1, sym_comment, + ACTIONS(4378), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4383), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -237572,14 +225023,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 18, - sym__automatic_semicolon, + ACTIONS(210), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -237591,18 +225040,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 20, + ACTIONS(118), 18, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -237612,16 +225059,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10258] = 5, + [10110] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2178), 1, + ACTIONS(4269), 1, + anon_sym_EQ_GT, + ACTIONS(4316), 1, + anon_sym_EQ, + STATE(2028), 1, sym_comment, - ACTIONS(3173), 22, + ACTIONS(4254), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4242), 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(4238), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -237642,18 +225128,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3175), 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, + [10187] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2895), 1, + anon_sym_COLON, + ACTIONS(4269), 1, + anon_sym_EQ_GT, + ACTIONS(4280), 1, + anon_sym_EQ, + STATE(2029), 1, + sym_comment, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237669,6 +225157,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(4242), 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, @@ -237678,18 +225176,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10329] = 8, + ACTIONS(4238), 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, + [10266] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2030), 1, + sym_comment, + ACTIONS(4430), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [10335] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4314), 1, - anon_sym_EQ, - ACTIONS(4316), 1, + ACTIONS(4269), 1, anon_sym_EQ_GT, - STATE(2179), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + STATE(2031), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237705,13 +225290,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 19, + ACTIONS(4242), 19, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -237725,7 +225310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -237747,26 +225332,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10406] = 11, + [10412] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, + ACTIONS(1207), 1, anon_sym_EQ, + ACTIONS(1209), 1, + anon_sym_in, + ACTIONS(2778), 1, + anon_sym_EQ_GT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3023), 1, - anon_sym_EQ_GT, - ACTIONS(4367), 1, - anon_sym_LBRACK, - STATE(2180), 1, + ACTIONS(4432), 1, + anon_sym_of, + STATE(2032), 1, sym_comment, - ACTIONS(2063), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4372), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -237783,12 +225363,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 16, + ACTIONS(210), 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, @@ -237800,16 +225382,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 18, + ACTIONS(118), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -237819,18 +225403,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10489] = 8, + [10493] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1205), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4370), 1, + ACTIONS(2873), 1, + anon_sym_COLON, + ACTIONS(4269), 1, anon_sym_EQ_GT, - STATE(2181), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + STATE(2033), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237846,15 +225432,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 19, + ACTIONS(4242), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -237866,7 +225451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -237888,38 +225473,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10566] = 14, + [10572] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4297), 1, - anon_sym_LBRACK, - ACTIONS(4300), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, anon_sym_DOT, - ACTIONS(4306), 1, + ACTIONS(4286), 1, + anon_sym_QMARK_DOT, + ACTIONS(4288), 1, anon_sym_LT, - ACTIONS(4397), 1, + ACTIONS(4316), 1, anon_sym_EQ, - ACTIONS(4399), 1, + ACTIONS(4371), 1, anon_sym_EQ_GT, - STATE(2182), 1, + STATE(2034), 1, sym_comment, - STATE(4013), 1, + STATE(3750), 1, + sym_arguments, + STATE(3890), 1, sym_type_arguments, - ACTIONS(4312), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4303), 3, - anon_sym_GT, + ACTIONS(4256), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4222), 14, + ACTIONS(4244), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4242), 11, 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, @@ -237929,7 +225515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -237945,10 +225531,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(4238), 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, @@ -237963,14 +225550,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10655] = 5, + [10665] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2183), 1, + STATE(2035), 1, sym_comment, - ACTIONS(4268), 22, + ACTIONS(3213), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -237993,7 +225580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4270), 35, + ACTIONS(3215), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -238029,38 +225616,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10726] = 14, + [10736] = 13, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1183), 1, + anon_sym_EQ, + ACTIONS(2063), 1, + anon_sym_extends, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4297), 1, + ACTIONS(4378), 1, anon_sym_LBRACK, - ACTIONS(4300), 1, - anon_sym_DOT, - ACTIONS(4306), 1, - anon_sym_LT, - ACTIONS(4403), 1, - anon_sym_EQ, - ACTIONS(4405), 1, + ACTIONS(4381), 1, anon_sym_EQ_GT, - STATE(2184), 1, + ACTIONS(4389), 1, + anon_sym_COLON, + STATE(2036), 1, sym_comment, - STATE(4013), 1, - sym_type_arguments, - ACTIONS(4312), 2, + ACTIONS(4383), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4434), 2, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4303), 3, + anon_sym_RBRACK, + ACTIONS(210), 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(2780), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_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, + [10823] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2037), 1, + sym_comment, + ACTIONS(4234), 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, - ACTIONS(4222), 14, + anon_sym_PLUS, + anon_sym_DASH, + anon_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(4236), 35, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_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, @@ -238070,7 +225756,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + [10894] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2038), 1, + sym_comment, + ACTIONS(4438), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [10963] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2039), 1, + sym_comment, + ACTIONS(3375), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_SEMI, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [11032] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2040), 1, + sym_comment, + ACTIONS(4440), 57, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_DOT_DOT_DOT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [11101] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1207), 1, + anon_sym_EQ, + ACTIONS(2778), 1, + anon_sym_EQ_GT, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2873), 1, + anon_sym_COLON, + STATE(2041), 1, + sym_comment, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238086,40 +225980,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(210), 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(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10815] = 6, + [11180] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2185), 1, + ACTIONS(4269), 1, + anon_sym_EQ_GT, + ACTIONS(4280), 1, + anon_sym_EQ, + ACTIONS(4442), 1, + anon_sym_in, + ACTIONS(4445), 1, + anon_sym_of, + STATE(2042), 1, sym_comment, - ACTIONS(4426), 3, + ACTIONS(4254), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4242), 18, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(4272), 22, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4238), 20, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -238138,15 +226092,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4274), 32, - sym__ternary_qmark, - anon_sym_as, + [11261] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1275), 1, + anon_sym_EQ, + ACTIONS(2063), 1, + anon_sym_extends, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4447), 1, + anon_sym_EQ_GT, + STATE(2043), 1, + sym_comment, + ACTIONS(4378), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(4383), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238162,6 +226128,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(210), 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, @@ -238171,29 +226144,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [10888] = 10, + anon_sym_implements, + ACTIONS(118), 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, + [11344] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4334), 1, - anon_sym_QMARK, - ACTIONS(4349), 1, + ACTIONS(4299), 1, + anon_sym_LBRACK, + ACTIONS(4302), 1, + anon_sym_DOT, + ACTIONS(4308), 1, + anon_sym_LT, + ACTIONS(4405), 1, anon_sym_EQ, - ACTIONS(4355), 1, + ACTIONS(4407), 1, anon_sym_EQ_GT, - STATE(2186), 1, + STATE(2044), 1, sym_comment, - ACTIONS(4352), 3, + STATE(3823), 1, + sym_type_arguments, + ACTIONS(4314), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4222), 15, + anon_sym_extends, + ACTIONS(4305), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4242), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -238204,7 +226205,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238220,36 +226221,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4238), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10969] = 4, + [11433] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2187), 1, + STATE(2045), 1, sym_comment, - ACTIONS(4428), 57, + ACTIONS(3379), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -238260,6 +226257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_await, + anon_sym_SEMI, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -238270,7 +226268,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_new, anon_sym_using, - anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -238307,41 +226304,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [11038] = 8, + [11502] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4227), 1, - anon_sym_EQ_GT, - ACTIONS(4286), 1, + ACTIONS(4336), 1, anon_sym_EQ, - STATE(2188), 1, + ACTIONS(4342), 1, + anon_sym_EQ_GT, + ACTIONS(4344), 1, + anon_sym_QMARK, + STATE(2046), 1, sym_comment, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 19, - sym__automatic_semicolon, + ACTIONS(4339), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4242), 15, 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, @@ -238354,7 +226337,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4254), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238376,105 +226375,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11115] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2189), 1, - sym_comment, - ACTIONS(4430), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [11184] = 10, + [11583] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(115), 1, - anon_sym_EQ, - ACTIONS(215), 1, - anon_sym_QMARK, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4422), 1, + ACTIONS(4240), 1, + anon_sym_EQ, + ACTIONS(4250), 1, anon_sym_EQ_GT, - STATE(2190), 1, + STATE(2047), 1, sym_comment, - ACTIONS(4419), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(210), 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(2780), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238490,7 +226402,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4242), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238512,44 +226444,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11265] = 13, + [11660] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1205), 1, + ACTIONS(1291), 1, anon_sym_EQ, - ACTIONS(2063), 1, - anon_sym_extends, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4367), 1, - anon_sym_LBRACK, - ACTIONS(4370), 1, + ACTIONS(3023), 1, anon_sym_EQ_GT, - ACTIONS(4385), 1, - anon_sym_COLON, - STATE(2191), 1, + ACTIONS(4378), 1, + anon_sym_LBRACK, + STATE(2048), 1, sym_comment, - ACTIONS(4372), 2, + ACTIONS(2063), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4383), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4432), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(210), 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(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -238566,11 +226480,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 19, + ACTIONS(210), 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(118), 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, @@ -238586,20 +226516,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11352] = 9, + [11743] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1179), 1, - anon_sym_EQ, - ACTIONS(2778), 1, - anon_sym_EQ_GT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2971), 1, - anon_sym_COLON, - STATE(2192), 1, + ACTIONS(4250), 1, + anon_sym_EQ_GT, + ACTIONS(4316), 1, + anon_sym_EQ, + STATE(2049), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238615,14 +226543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 18, - sym__automatic_semicolon, + ACTIONS(4242), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -238634,7 +226563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238656,17 +226585,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11431] = 8, + [11820] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, + ACTIONS(1183), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4370), 1, + ACTIONS(4381), 1, anon_sym_EQ_GT, - STATE(2193), 1, + ACTIONS(4389), 1, + anon_sym_COLON, + STATE(2050), 1, sym_comment, + ACTIONS(4449), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(210), 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(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -238683,26 +226634,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 19, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, @@ -238725,39 +226656,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11508] = 16, + [11901] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(4280), 1, + ACTIONS(4299), 1, + anon_sym_LBRACK, + ACTIONS(4302), 1, anon_sym_DOT, - ACTIONS(4282), 1, - anon_sym_QMARK_DOT, - ACTIONS(4284), 1, + ACTIONS(4308), 1, anon_sym_LT, - ACTIONS(4332), 1, + ACTIONS(4424), 1, + anon_sym_EQ, + ACTIONS(4426), 1, anon_sym_EQ_GT, - STATE(2194), 1, + STATE(2051), 1, sym_comment, - STATE(3922), 1, - sym_arguments, - STATE(4004), 1, + STATE(3823), 1, sym_type_arguments, - ACTIONS(4250), 2, + ACTIONS(4314), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4305), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4240), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4222), 11, + ACTIONS(4242), 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, @@ -238767,7 +226697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238783,11 +226713,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 18, + ACTIONS(4238), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -238802,18 +226731,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11601] = 9, + [11990] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1179), 1, + ACTIONS(1115), 1, anon_sym_EQ, ACTIONS(2778), 1, anon_sym_EQ_GT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2895), 1, - anon_sym_COLON, - STATE(2195), 1, + STATE(2052), 1, sym_comment, ACTIONS(2780), 15, anon_sym_PLUS_EQ, @@ -238831,11 +226758,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 18, + ACTIONS(210), 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, @@ -238872,20 +226800,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11680] = 9, + [12067] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2971), 1, - anon_sym_COLON, - ACTIONS(4227), 1, - anon_sym_EQ_GT, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(4284), 1, + anon_sym_DOT, ACTIONS(4286), 1, + anon_sym_QMARK_DOT, + ACTIONS(4288), 1, + anon_sym_LT, + ACTIONS(4316), 1, anon_sym_EQ, - STATE(2196), 1, + ACTIONS(4371), 1, + anon_sym_EQ_GT, + STATE(2053), 1, + sym_comment, + STATE(3750), 1, + sym_arguments, + STATE(3890), 1, + sym_type_arguments, + ACTIONS(4244), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4256), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4242), 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(4254), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4238), 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, + [12160] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4318), 1, + anon_sym_EQ, + ACTIONS(4320), 1, + anon_sym_EQ_GT, + STATE(2054), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -238901,12 +226904,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 18, + ACTIONS(4242), 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, @@ -238920,7 +226924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238942,17 +226946,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11759] = 8, + [12237] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1189), 1, + ACTIONS(115), 1, anon_sym_EQ, + ACTIONS(215), 1, + anon_sym_QMARK, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4415), 1, + ACTIONS(4418), 1, anon_sym_EQ_GT, - STATE(2197), 1, + STATE(2055), 1, sym_comment, + ACTIONS(4415), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(210), 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(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -238969,26 +226995,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 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(118), 21, anon_sym_STAR, anon_sym_BANG, @@ -239011,40 +227017,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11836] = 16, + [12318] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, + ACTIONS(4240), 1, anon_sym_EQ, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(4280), 1, + ACTIONS(4250), 1, + anon_sym_EQ_GT, + ACTIONS(4302), 1, anon_sym_DOT, - ACTIONS(4282), 1, - anon_sym_QMARK_DOT, - ACTIONS(4284), 1, + ACTIONS(4308), 1, anon_sym_LT, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - STATE(2198), 1, + ACTIONS(4314), 1, + anon_sym_extends, + STATE(2056), 1, sym_comment, - STATE(3922), 1, - sym_arguments, - STATE(4004), 1, + STATE(3823), 1, sym_type_arguments, - ACTIONS(4240), 3, - anon_sym_COMMA, + ACTIONS(4299), 2, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4250), 3, - anon_sym_GT, + ACTIONS(4305), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4222), 11, + ACTIONS(4242), 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, @@ -239054,7 +227057,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239070,10 +227073,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(4238), 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, @@ -239088,102 +227092,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11929] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2199), 1, - sym_comment, - ACTIONS(4436), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [11998] = 14, + [12407] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4297), 1, - anon_sym_LBRACK, - ACTIONS(4300), 1, - anon_sym_DOT, - ACTIONS(4306), 1, - anon_sym_LT, - ACTIONS(4393), 1, - anon_sym_EQ, - ACTIONS(4395), 1, + ACTIONS(2933), 1, + anon_sym_COLON, + ACTIONS(4269), 1, anon_sym_EQ_GT, - STATE(2200), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + STATE(2057), 1, sym_comment, - STATE(4013), 1, - sym_type_arguments, - ACTIONS(4312), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4303), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4222), 14, + ACTIONS(4254), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4242), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -239194,7 +227140,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4238), 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, + [12486] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1207), 1, + anon_sym_EQ, + ACTIONS(2778), 1, + anon_sym_EQ_GT, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2933), 1, + anon_sym_COLON, + STATE(2058), 1, + sym_comment, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239210,32 +227191,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(210), 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(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12087] = 4, + [12565] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2201), 1, + STATE(2059), 1, sym_comment, - ACTIONS(3229), 57, + ACTIONS(3417), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -239293,85 +227297,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [12156] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4227), 1, - anon_sym_EQ_GT, - ACTIONS(4286), 1, - anon_sym_EQ, - ACTIONS(4438), 1, - anon_sym_in, - ACTIONS(4441), 1, - anon_sym_of, - STATE(2202), 1, - sym_comment, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 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(4218), 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, - [12237] = 4, + [12634] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2203), 1, + STATE(2060), 1, sym_comment, - ACTIONS(3219), 57, + ACTIONS(3427), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -239429,16 +227362,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [12306] = 8, + [12703] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1179), 1, + ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(2778), 1, - anon_sym_EQ_GT, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2204), 1, + ACTIONS(4409), 1, + anon_sym_EQ_GT, + STATE(2061), 1, sym_comment, ACTIONS(2780), 15, anon_sym_PLUS_EQ, @@ -239461,8 +227394,8 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -239498,30 +227431,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12383] = 10, + [12780] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1205), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4370), 1, - anon_sym_EQ_GT, - ACTIONS(4385), 1, - anon_sym_COLON, - STATE(2205), 1, + STATE(2062), 1, sym_comment, - ACTIONS(4443), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(210), 15, + ACTIONS(4230), 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(4232), 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, @@ -239531,7 +227497,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + [12851] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4316), 1, + anon_sym_EQ, + STATE(2063), 1, + sym_comment, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239547,7 +227522,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4242), 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(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239569,14 +227565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12464] = 4, + [12926] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2206), 1, + STATE(2064), 1, sym_comment, - ACTIONS(3221), 57, + ACTIONS(4452), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -239587,7 +227583,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_LPAREN, anon_sym_await, - anon_sym_SEMI, anon_sym_yield, anon_sym_LBRACK, anon_sym_LTtemplate_GT, @@ -239598,6 +227593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, anon_sym_new, anon_sym_using, + anon_sym_DOT_DOT_DOT, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -239634,85 +227630,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [12533] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [12995] = 12, ACTIONS(5), 1, sym_html_comment, - STATE(2207), 1, + ACTIONS(1115), 1, + anon_sym_EQ, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4330), 1, + anon_sym_EQ_GT, + ACTIONS(4378), 1, + anon_sym_LBRACK, + ACTIONS(4389), 1, + anon_sym_COLON, + STATE(2065), 1, sym_comment, - ACTIONS(4446), 57, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, + ACTIONS(4383), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2063), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(210), 14, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_DOT_DOT_DOT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [12602] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2208), 1, - sym_comment, - ACTIONS(4448), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(4262), 22, + anon_sym_satisfies, + ACTIONS(2780), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 19, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -239721,9 +227693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -239733,15 +227703,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4264), 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, + [13080] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4316), 1, + anon_sym_EQ, + ACTIONS(4320), 1, + anon_sym_EQ_GT, + STATE(2066), 1, + sym_comment, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239757,41 +227730,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [12675] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1262), 1, - anon_sym_EQ, - ACTIONS(2061), 1, - anon_sym_QMARK, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4367), 1, - anon_sym_LBRACK, - ACTIONS(4370), 1, - anon_sym_EQ_GT, - STATE(2209), 1, - sym_comment, - ACTIONS(4372), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2063), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(210), 14, + ACTIONS(4242), 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, @@ -239803,23 +227750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 19, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239829,7 +227760,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -239839,14 +227772,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12760] = 5, + [13157] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2210), 1, + STATE(2067), 1, sym_comment, - ACTIONS(4262), 22, + ACTIONS(4454), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(4226), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -239869,15 +227806,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4264), 35, - sym__automatic_semicolon, + ACTIONS(4228), 32, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -239905,27 +227839,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [12831] = 11, + [13230] = 14, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, - anon_sym_EQ, - ACTIONS(2063), 1, - anon_sym_extends, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4450), 1, + ACTIONS(4299), 1, + anon_sym_LBRACK, + ACTIONS(4302), 1, + anon_sym_DOT, + ACTIONS(4308), 1, + anon_sym_LT, + ACTIONS(4420), 1, + anon_sym_EQ, + ACTIONS(4422), 1, anon_sym_EQ_GT, - STATE(2211), 1, + STATE(2068), 1, sym_comment, - ACTIONS(4367), 2, + STATE(3823), 1, + sym_type_arguments, + ACTIONS(4314), 2, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4372), 3, + anon_sym_extends, + ACTIONS(4305), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2780), 15, + ACTIONS(4242), 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(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -239941,24 +227896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 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(118), 18, + ACTIONS(4238), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239973,24 +227911,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12914] = 9, + [13319] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1179), 1, - anon_sym_EQ, - ACTIONS(2778), 1, - anon_sym_EQ_GT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2835), 1, - anon_sym_COLON, - STATE(2212), 1, + STATE(2069), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4226), 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(4228), 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, @@ -240006,16 +227971,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 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, @@ -240025,36 +227980,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [12993] = 5, + [13390] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2213), 1, + STATE(2070), 1, sym_comment, - ACTIONS(4234), 22, + ACTIONS(4274), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -240077,7 +228010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4236), 35, + ACTIONS(4276), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -240113,18 +228046,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13064] = 9, + [13461] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1179), 1, + ACTIONS(1218), 1, anon_sym_EQ, - ACTIONS(2778), 1, - anon_sym_EQ_GT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2857), 1, - anon_sym_COLON, - STATE(2214), 1, + ACTIONS(4409), 1, + anon_sym_EQ_GT, + STATE(2071), 1, sym_comment, ACTIONS(2780), 15, anon_sym_PLUS_EQ, @@ -240142,12 +228073,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 18, + ACTIONS(210), 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, @@ -240183,18 +228115,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13143] = 8, + [13538] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4238), 1, + ACTIONS(1207), 1, anon_sym_EQ, - ACTIONS(4246), 1, + ACTIONS(2778), 1, anon_sym_EQ_GT, - STATE(2215), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2072), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -240210,15 +228142,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 19, + ACTIONS(210), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -240230,7 +228162,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240252,44 +228184,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13220] = 12, + [13615] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4347), 1, - anon_sym_EQ_GT, - ACTIONS(4367), 1, - anon_sym_LBRACK, - ACTIONS(4385), 1, - anon_sym_COLON, - STATE(2216), 1, + STATE(2073), 1, sym_comment, - ACTIONS(4372), 2, + ACTIONS(4222), 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, - ACTIONS(2063), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(210), 14, + anon_sym_PLUS, + anon_sym_DASH, + anon_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(4224), 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -240305,34 +228241,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 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, - [13305] = 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [13686] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2217), 1, + STATE(2074), 1, sym_comment, - ACTIONS(4254), 22, + ACTIONS(4218), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -240355,7 +228280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4256), 35, + ACTIONS(4220), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -240391,20 +228316,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13376] = 9, + [13757] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2835), 1, - anon_sym_COLON, - ACTIONS(4227), 1, - anon_sym_EQ_GT, - ACTIONS(4286), 1, - anon_sym_EQ, - STATE(2218), 1, + STATE(2075), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4456), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(4230), 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(4232), 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, @@ -240420,16 +228374,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 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, @@ -240439,8 +228383,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + [13830] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2076), 1, + sym_comment, + ACTIONS(4230), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -240461,18 +228413,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13455] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4316), 1, - anon_sym_EQ_GT, - STATE(2219), 1, - sym_comment, - ACTIONS(4229), 15, + ACTIONS(4232), 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, @@ -240488,17 +228440,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 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, @@ -240508,36 +228449,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 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, - [13532] = 5, + [13901] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2220), 1, + STATE(2077), 1, sym_comment, - ACTIONS(4258), 22, + ACTIONS(4226), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -240560,7 +228479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4260), 35, + ACTIONS(4228), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -240596,26 +228515,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13603] = 11, + [13972] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1240), 1, + ACTIONS(1207), 1, anon_sym_EQ, - ACTIONS(2063), 1, - anon_sym_extends, + ACTIONS(2778), 1, + anon_sym_EQ_GT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4422), 1, - anon_sym_EQ_GT, - STATE(2221), 1, + ACTIONS(2853), 1, + anon_sym_COLON, + STATE(2078), 1, sym_comment, - ACTIONS(4367), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4372), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -240632,12 +228544,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 16, + ACTIONS(210), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -240649,16 +228563,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 18, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -240668,16 +228585,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13686] = 7, + [14051] = 12, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1240), 1, + anon_sym_EQ, + ACTIONS(2061), 1, + anon_sym_QMARK, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, - anon_sym_EQ, - STATE(2222), 1, + ACTIONS(4378), 1, + anon_sym_LBRACK, + ACTIONS(4381), 1, + anon_sym_EQ_GT, + STATE(2079), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4383), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2063), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(210), 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(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -240693,28 +228638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 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(4218), 21, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240724,9 +228648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -240736,14 +228658,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13761] = 5, + [14136] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2223), 1, + STATE(2080), 1, sym_comment, - ACTIONS(4262), 22, + ACTIONS(3207), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -240766,7 +228688,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4264), 35, + ACTIONS(3209), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -240802,14 +228724,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13832] = 5, + [14207] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2224), 1, + STATE(2081), 1, sym_comment, - ACTIONS(4272), 22, + ACTIONS(4260), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -240832,7 +228754,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4274), 35, + ACTIONS(4262), 35, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -240868,18 +228790,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [13903] = 8, + [14278] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(2778), 1, - anon_sym_EQ_GT, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2225), 1, + ACTIONS(2853), 1, + anon_sym_COLON, + ACTIONS(4269), 1, + anon_sym_EQ_GT, + ACTIONS(4280), 1, + anon_sym_EQ, + STATE(2082), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -240895,12 +228819,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 19, + ACTIONS(4242), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -240915,7 +228838,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240937,14 +228860,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13980] = 4, + [14357] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2226), 1, + STATE(2083), 1, sym_comment, - ACTIONS(4452), 57, + ACTIONS(4346), 57, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -241002,14 +228925,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [14049] = 5, + [14426] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2227), 1, + ACTIONS(4454), 1, + anon_sym_COMMA, + STATE(2084), 1, sym_comment, - ACTIONS(3163), 22, + ACTIONS(4226), 22, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -241032,16 +228957,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3165), 35, - sym__automatic_semicolon, + ACTIONS(4228), 33, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, @@ -241068,90 +228991,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [14120] = 9, + [14498] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2857), 1, - anon_sym_COLON, - ACTIONS(4227), 1, - anon_sym_EQ_GT, - ACTIONS(4286), 1, + ACTIONS(4316), 1, anon_sym_EQ, - STATE(2228), 1, - sym_comment, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 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(4218), 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, - [14199] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2933), 1, - anon_sym_COLON, - ACTIONS(4227), 1, + ACTIONS(4354), 1, anon_sym_EQ_GT, - ACTIONS(4286), 1, - anon_sym_EQ, - STATE(2229), 1, + STATE(2085), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -241167,13 +229018,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 18, - sym__automatic_semicolon, + ACTIONS(4242), 18, 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, @@ -241186,38 +229036,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 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, - [14278] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2230), 1, - sym_comment, - ACTIONS(4272), 22, + anon_sym_implements, + ACTIONS(4238), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -241238,54 +229059,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4274), 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, - [14349] = 8, + [14574] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4227), 1, - anon_sym_EQ_GT, - ACTIONS(4276), 1, + ACTIONS(4240), 1, anon_sym_EQ, - STATE(2231), 1, + STATE(2086), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -241301,15 +229084,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 19, - sym__automatic_semicolon, + ACTIONS(4242), 19, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -241321,7 +229104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241343,14 +229126,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14426] = 4, + [14648] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2232), 1, + STATE(2087), 1, sym_comment, - ACTIONS(4454), 56, + ACTIONS(4458), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -241407,152 +229190,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [14494] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4238), 1, - anon_sym_EQ, - ACTIONS(4246), 1, - anon_sym_EQ_GT, - STATE(2233), 1, - sym_comment, - ACTIONS(4456), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4222), 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(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 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, - [14572] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1277), 1, - anon_sym_EQ_GT, - ACTIONS(4212), 1, - sym_identifier, - STATE(2234), 1, - sym_comment, - ACTIONS(210), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(160), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 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, - [14650] = 4, + [14716] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2235), 1, + STATE(2088), 1, sym_comment, - ACTIONS(4459), 56, + ACTIONS(4460), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -241609,14 +229254,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [14718] = 4, + [14784] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2236), 1, + STATE(2089), 1, sym_comment, - ACTIONS(4461), 56, + ACTIONS(4462), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -241673,23 +229318,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [14786] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [14852] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, + ACTIONS(1263), 1, anon_sym_EQ, - ACTIONS(1277), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4418), 1, anon_sym_EQ_GT, - ACTIONS(4463), 1, - sym_identifier, - STATE(2237), 1, + STATE(2090), 1, sym_comment, - ACTIONS(210), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -241705,17 +229345,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, - anon_sym_STAR, + ACTIONS(210), 18, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(118), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -241730,30 +229383,19 @@ static const uint16_t ts_small_parse_table[] = { 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, - [14864] = 8, + [14928] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, + ACTIONS(4318), 1, anon_sym_EQ, - ACTIONS(4355), 1, - anon_sym_EQ_GT, - STATE(2238), 1, + STATE(2091), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -241769,13 +229411,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 18, + ACTIONS(4242), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -241788,7 +229431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241810,23 +229453,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14940] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [15002] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1277), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4250), 1, anon_sym_EQ_GT, - ACTIONS(4401), 1, - sym_identifier, - STATE(2239), 1, + ACTIONS(4290), 1, + anon_sym_EQ, + STATE(2092), 1, sym_comment, - ACTIONS(210), 2, - sym__automatic_semicolon, + ACTIONS(4339), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4242), 15, sym__ternary_qmark, - ACTIONS(160), 15, + 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(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -241842,17 +229500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, + ACTIONS(4238), 21, 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, @@ -241867,39 +229519,42 @@ static const uint16_t ts_small_parse_table[] = { 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, - [15018] = 11, + [15080] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1249), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4345), 1, - anon_sym_COMMA, - ACTIONS(4419), 1, - anon_sym_RBRACK, - ACTIONS(4465), 1, - anon_sym_COLON, - ACTIONS(4467), 1, - anon_sym_EQ_GT, - STATE(2240), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + STATE(2093), 1, sym_comment, - ACTIONS(210), 15, + ACTIONS(4254), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4242), 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, @@ -241912,7 +229567,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4238), 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] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1265), 1, + anon_sym_EQ_GT, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(4411), 1, + sym_identifier, + STATE(2094), 1, + sym_comment, + ACTIONS(210), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -241928,11 +229621,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(118), 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, @@ -241947,21 +229646,30 @@ static const uint16_t ts_small_parse_table[] = { 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, - [15100] = 8, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [15232] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1289), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4450), 1, + ACTIONS(4342), 1, anon_sym_EQ_GT, - STATE(2241), 1, + ACTIONS(4364), 1, + anon_sym_EQ, + STATE(2095), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -241977,12 +229685,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 18, + ACTIONS(4242), 18, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -241995,8 +229704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(118), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242018,47 +229726,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15176] = 14, + [15308] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, + ACTIONS(4280), 1, anon_sym_EQ, - ACTIONS(4297), 1, - anon_sym_LBRACK, - ACTIONS(4300), 1, - anon_sym_DOT, - ACTIONS(4306), 1, - anon_sym_LT, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - STATE(2242), 1, + ACTIONS(4442), 1, + anon_sym_in, + ACTIONS(4445), 1, + anon_sym_of, + STATE(2096), 1, sym_comment, - STATE(4013), 1, - sym_type_arguments, - ACTIONS(4312), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4303), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4222), 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(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -242074,41 +229755,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 17, + ACTIONS(4242), 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(4238), 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_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15264] = 11, + [15386] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1281), 1, + ACTIONS(1305), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4367), 1, + ACTIONS(4378), 1, anon_sym_LBRACK, - ACTIONS(4467), 1, + ACTIONS(4464), 1, anon_sym_EQ_GT, - STATE(2243), 1, + STATE(2097), 1, sym_comment, ACTIONS(2063), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4372), 3, + ACTIONS(4383), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, @@ -242116,7 +229819,7 @@ static const uint16_t ts_small_parse_table[] = { sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -242163,97 +229866,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15346] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4426), 1, - anon_sym_COMMA, - STATE(2244), 1, - sym_comment, - ACTIONS(4272), 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(4274), 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, - [15418] = 11, + [15468] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1319), 1, + ACTIONS(1240), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4367), 1, - anon_sym_LBRACK, - ACTIONS(4469), 1, + ACTIONS(4381), 1, anon_sym_EQ_GT, - STATE(2245), 1, + STATE(2098), 1, sym_comment, - ACTIONS(2063), 2, + ACTIONS(4415), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4372), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_RBRACE, + anon_sym_RBRACK, ACTIONS(210), 15, 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, @@ -242281,16 +229913,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 18, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -242300,145 +229935,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15500] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [15546] = 11, ACTIONS(5), 1, sym_html_comment, - STATE(2246), 1, - sym_comment, - ACTIONS(4471), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [15568] = 4, - ACTIONS(3), 1, + ACTIONS(1183), 1, + anon_sym_EQ, + ACTIONS(2063), 1, + anon_sym_extends, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2247), 1, + ACTIONS(4381), 1, + anon_sym_EQ_GT, + STATE(2099), 1, sym_comment, - ACTIONS(4473), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, + ACTIONS(4378), 2, + anon_sym_RBRACE, anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, + ACTIONS(4383), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(210), 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, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [15636] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4450), 1, - anon_sym_EQ_GT, - STATE(2248), 1, - sym_comment, + anon_sym_satisfies, ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -242455,26 +229986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 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(118), 21, + ACTIONS(118), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242484,9 +229996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -242496,22 +230006,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15712] = 9, + [15628] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4238), 1, + ACTIONS(4240), 1, anon_sym_EQ, - ACTIONS(4341), 1, + ACTIONS(4391), 1, anon_sym_COLON, - STATE(2249), 1, + STATE(2100), 1, sym_comment, - ACTIONS(4456), 3, + ACTIONS(4466), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(4222), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -242527,7 +230037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -242543,7 +230053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242565,38 +230075,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15790] = 8, + [15706] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, + ACTIONS(4240), 1, anon_sym_EQ, - ACTIONS(4365), 1, + ACTIONS(4250), 1, anon_sym_EQ_GT, - STATE(2250), 1, + STATE(2101), 1, sym_comment, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 18, + ACTIONS(4466), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -242610,41 +230106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4218), 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, - [15866] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4422), 1, - anon_sym_EQ_GT, - STATE(2251), 1, - sym_comment, - ACTIONS(2780), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -242660,26 +230122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242701,18 +230144,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15942] = 8, + [15784] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1240), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4422), 1, + ACTIONS(4352), 1, + anon_sym_EQ, + ACTIONS(4354), 1, anon_sym_EQ_GT, - STATE(2252), 1, + STATE(2102), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -242728,13 +230171,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 18, + ACTIONS(4242), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -242747,7 +230189,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + anon_sym_implements, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242769,14 +230212,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16018] = 4, + [15860] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(2103), 1, + sym_comment, + ACTIONS(4469), 56, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [15928] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2253), 1, + STATE(2104), 1, sym_comment, - ACTIONS(4475), 56, + ACTIONS(4471), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242833,38 +230340,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16086] = 9, + [15996] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4334), 1, - anon_sym_QMARK, - ACTIONS(4349), 1, + ACTIONS(1265), 1, + anon_sym_EQ_GT, + ACTIONS(1291), 1, anon_sym_EQ, - STATE(2254), 1, + ACTIONS(4399), 1, + sym_identifier, + STATE(2105), 1, sym_comment, - ACTIONS(4352), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4222), 15, + ACTIONS(210), 2, + sym__automatic_semicolon, 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(4229), 15, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -242880,11 +230372,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(118), 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, @@ -242899,17 +230397,26 @@ static const uint16_t ts_small_parse_table[] = { 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, - [16164] = 4, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [16074] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2255), 1, + STATE(2106), 1, sym_comment, - ACTIONS(4477), 56, + ACTIONS(4469), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -242966,80 +230473,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16232] = 6, + [16142] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4448), 1, - anon_sym_COMMA, - STATE(2256), 1, + STATE(2107), 1, sym_comment, - ACTIONS(4262), 22, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(4473), 56, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - ACTIONS(4264), 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_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - [16304] = 4, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [16210] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2257), 1, + STATE(2108), 1, sym_comment, - ACTIONS(4479), 56, + ACTIONS(4473), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -243096,223 +230601,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16372] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [16278] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4286), 1, - anon_sym_EQ, - ACTIONS(4438), 1, - anon_sym_in, - ACTIONS(4441), 1, - anon_sym_of, - STATE(2258), 1, - sym_comment, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 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(4218), 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, - [16450] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1205), 1, - anon_sym_EQ, - ACTIONS(2063), 1, - anon_sym_extends, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4370), 1, - anon_sym_EQ_GT, - STATE(2259), 1, + STATE(2109), 1, sym_comment, - ACTIONS(4367), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4372), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(210), 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(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 19, - anon_sym_STAR, + ACTIONS(4475), 56, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, anon_sym_BANG, - anon_sym_in, - anon_sym_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_LPAREN, + anon_sym_await, + anon_sym_yield, + anon_sym_LBRACK, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_using, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [16532] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4246), 1, - anon_sym_EQ_GT, - ACTIONS(4288), 1, - anon_sym_EQ, - STATE(2260), 1, - sym_comment, - ACTIONS(4352), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4222), 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_TILDE, + anon_sym_void, + anon_sym_delete, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 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, - [16610] = 4, + sym_number, + sym_identifier, + sym_private_property_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [16346] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(2261), 1, + STATE(2110), 1, sym_comment, - ACTIONS(4471), 56, + ACTIONS(4477), 56, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -243369,26 +230729,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [16678] = 12, + [16414] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4327), 1, - anon_sym_COMMA, - ACTIONS(4352), 1, - anon_sym_RBRACK, - ACTIONS(4395), 1, - anon_sym_EQ_GT, - ACTIONS(4481), 1, + ACTIONS(4336), 1, anon_sym_EQ, - ACTIONS(4484), 1, - anon_sym_in, - ACTIONS(4486), 1, - anon_sym_COLON, - STATE(2262), 1, + ACTIONS(4344), 1, + anon_sym_QMARK, + STATE(2111), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4339), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -243404,7 +230760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -243420,9 +230776,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 20, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -243441,16 +230798,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16762] = 7, + [16492] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4286), 1, + ACTIONS(1265), 1, + anon_sym_EQ_GT, + ACTIONS(1291), 1, anon_sym_EQ, - STATE(2263), 1, + ACTIONS(4397), 1, + sym_identifier, + STATE(2112), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(210), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -243466,31 +230830,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 19, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(118), 36, + anon_sym_STAR, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4218), 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, @@ -243505,25 +230855,38 @@ static const uint16_t ts_small_parse_table[] = { 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, - [16836] = 9, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [16570] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1262), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4370), 1, + ACTIONS(4339), 1, + anon_sym_RBRACK, + ACTIONS(4369), 1, + anon_sym_COMMA, + ACTIONS(4407), 1, anon_sym_EQ_GT, - STATE(2264), 1, + ACTIONS(4479), 1, + anon_sym_EQ, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + anon_sym_COLON, + STATE(2113), 1, sym_comment, - ACTIONS(4419), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(210), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -243539,7 +230902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -243555,10 +230918,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4238), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -243577,31 +230939,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16914] = 11, + [16654] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1303), 1, + ACTIONS(1250), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4367), 1, - anon_sym_LBRACK, + ACTIONS(4328), 1, + anon_sym_COMMA, + ACTIONS(4415), 1, + anon_sym_RBRACK, + ACTIONS(4486), 1, + anon_sym_COLON, ACTIONS(4488), 1, anon_sym_EQ_GT, - STATE(2265), 1, + STATE(2114), 1, sym_comment, - ACTIONS(2063), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4372), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, ACTIONS(210), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -243629,16 +230988,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 18, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -243648,18 +231010,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16996] = 8, + [16736] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1115), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4355), 1, + ACTIONS(4447), 1, anon_sym_EQ_GT, - ACTIONS(4383), 1, - anon_sym_EQ, - STATE(2266), 1, + STATE(2115), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -243675,13 +231037,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 18, + ACTIONS(210), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -243694,8 +231055,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + anon_sym_implements, + ACTIONS(118), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [16812] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4456), 1, + anon_sym_COMMA, + STATE(2116), 1, + sym_comment, + ACTIONS(4230), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -243716,18 +231110,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17072] = 9, + ACTIONS(4232), 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, + [16884] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1277), 1, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(4417), 1, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(4413), 1, sym_identifier, - STATE(2267), 1, + STATE(2117), 1, sym_comment, ACTIONS(210), 2, sym__automatic_semicolon, @@ -243785,144 +231213,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [17150] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2268), 1, - sym_comment, - ACTIONS(4490), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [17218] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(2269), 1, - sym_comment, - ACTIONS(4479), 56, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_LBRACE, - anon_sym_typeof, - anon_sym_import, - anon_sym_let, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_await, - anon_sym_yield, - anon_sym_LBRACK, - anon_sym_LTtemplate_GT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_using, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_TILDE, - anon_sym_void, - anon_sym_delete, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - sym_number, - sym_identifier, - sym_private_property_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_AT, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [17286] = 7, + [16962] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4238), 1, + ACTIONS(4316), 1, anon_sym_EQ, - STATE(2270), 1, + ACTIONS(4342), 1, + anon_sym_EQ_GT, + STATE(2118), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -243938,15 +231240,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 19, + ACTIONS(4242), 18, 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, @@ -243958,7 +231259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243980,16 +231281,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17360] = 7, + [17038] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4314), 1, + ACTIONS(4299), 1, + anon_sym_LBRACK, + ACTIONS(4302), 1, + anon_sym_DOT, + ACTIONS(4308), 1, + anon_sym_LT, + ACTIONS(4316), 1, anon_sym_EQ, - STATE(2271), 1, + ACTIONS(4371), 1, + anon_sym_EQ_GT, + STATE(2119), 1, sym_comment, - ACTIONS(4229), 15, + STATE(3823), 1, + sym_type_arguments, + ACTIONS(4314), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4305), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4242), 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(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -244005,60 +231337,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 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(4218), 21, + ACTIONS(4238), 17, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_STAR_STAR, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17434] = 8, + [17126] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4363), 1, - anon_sym_EQ, - ACTIONS(4365), 1, + ACTIONS(1265), 1, anon_sym_EQ_GT, - STATE(2272), 1, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(4216), 1, + sym_identifier, + STATE(2120), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(210), 2, + sym__automatic_semicolon, + sym__ternary_qmark, + ACTIONS(160), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -244074,30 +231387,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 18, - sym__ternary_qmark, + ACTIONS(118), 36, + anon_sym_STAR, anon_sym_as, - anon_sym_LBRACE, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_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(4218), 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, @@ -244112,26 +231412,30 @@ static const uint16_t ts_small_parse_table[] = { 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, - [17510] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [17204] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, + ACTIONS(1275), 1, anon_sym_EQ, - ACTIONS(1277), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4447), 1, anon_sym_EQ_GT, - ACTIONS(4411), 1, - sym_identifier, - STATE(2273), 1, + STATE(2121), 1, sym_comment, - ACTIONS(210), 2, - sym__automatic_semicolon, - sym__ternary_qmark, - ACTIONS(160), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -244147,17 +231451,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 36, - anon_sym_STAR, + ACTIONS(210), 18, + sym__ternary_qmark, anon_sym_as, - anon_sym_BANG, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_in, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_GT, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_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(118), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -244172,30 +231489,21 @@ static const uint16_t ts_small_parse_table[] = { 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, - [17588] = 9, + [17280] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, - anon_sym_EQ, - ACTIONS(1277), 1, + ACTIONS(1265), 1, anon_sym_EQ_GT, - ACTIONS(4391), 1, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(4490), 1, sym_identifier, - STATE(2274), 1, + STATE(2122), 1, sym_comment, ACTIONS(210), 2, sym__automatic_semicolon, @@ -244253,111 +231561,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [17666] = 34, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3979), 1, - anon_sym_LPAREN, - ACTIONS(4003), 1, - anon_sym_abstract, - ACTIONS(4494), 1, - anon_sym_export, - ACTIONS(4496), 1, - anon_sym_STAR, - ACTIONS(4502), 1, - anon_sym_LBRACK, - ACTIONS(4504), 1, - anon_sym_async, - ACTIONS(4506), 1, - anon_sym_new, - ACTIONS(4508), 1, - anon_sym_static, - ACTIONS(4510), 1, - anon_sym_readonly, - ACTIONS(4516), 1, - anon_sym_override, - STATE(2275), 1, - sym_comment, - STATE(3724), 1, - sym_accessibility_modifier, - STATE(3781), 1, - sym_override_modifier, - STATE(4100), 1, - sym__property_name, - STATE(4276), 1, - sym_formal_parameters, - STATE(5291), 1, - sym__call_signature, - STATE(5606), 1, - aux_sym_export_statement_repeat1, - STATE(5733), 1, - sym_decorator, - STATE(6903), 1, - sym_type_parameters, - ACTIONS(3989), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4498), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4500), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4512), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4514), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4895), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4492), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [17793] = 9, + [17358] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1281), 1, + ACTIONS(1115), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4465), 1, - anon_sym_COLON, - ACTIONS(4467), 1, + ACTIONS(4418), 1, anon_sym_EQ_GT, - STATE(2276), 1, + STATE(2123), 1, sym_comment, ACTIONS(2780), 15, anon_sym_PLUS_EQ, @@ -244375,12 +231588,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 16, + ACTIONS(210), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, 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, @@ -244414,24 +231629,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17870] = 8, + [17434] = 11, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1267), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4288), 1, - anon_sym_EQ, - STATE(2277), 1, + ACTIONS(4378), 1, + anon_sym_LBRACK, + ACTIONS(4488), 1, + anon_sym_EQ_GT, + STATE(2124), 1, sym_comment, - ACTIONS(4352), 3, + ACTIONS(2063), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4222), 15, + anon_sym_extends, + ACTIONS(4383), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(210), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -244443,7 +231665,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -244459,51 +231681,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 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, - [17945] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4448), 1, - anon_sym_COMMA, - STATE(2278), 1, - sym_comment, - ACTIONS(4262), 22, + ACTIONS(118), 18, 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, @@ -244513,30 +231700,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4264), 32, - sym__automatic_semicolon, + [17516] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1319), 1, + anon_sym_EQ, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4378), 1, + anon_sym_LBRACK, + ACTIONS(4492), 1, + anon_sym_EQ_GT, + STATE(2125), 1, + sym_comment, + ACTIONS(2063), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4383), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(210), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_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, @@ -244546,22 +231736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [18016] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4393), 1, - anon_sym_EQ, - ACTIONS(4395), 1, - anon_sym_EQ_GT, - ACTIONS(4484), 1, - anon_sym_in, - ACTIONS(4486), 1, - anon_sym_COLON, - STATE(2279), 1, - sym_comment, - ACTIONS(4229), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -244577,35 +231752,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 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(4218), 20, + ACTIONS(118), 18, anon_sym_STAR, anon_sym_BANG, - anon_sym_GT, + anon_sym_in, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_AMP, anon_sym_CARET, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, @@ -244615,92 +231771,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18095] = 34, + [17598] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3979), 1, - anon_sym_LPAREN, - ACTIONS(4003), 1, - anon_sym_abstract, - ACTIONS(4494), 1, + STATE(2126), 1, + sym_comment, + ACTIONS(4494), 56, anon_sym_export, - ACTIONS(4496), 1, - anon_sym_STAR, - ACTIONS(4502), 1, + anon_sym_type, + anon_sym_namespace, + anon_sym_LBRACE, + anon_sym_typeof, + anon_sym_import, + anon_sym_let, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_await, + anon_sym_yield, anon_sym_LBRACK, - ACTIONS(4504), 1, + anon_sym_LTtemplate_GT, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_class, anon_sym_async, - ACTIONS(4506), 1, + anon_sym_function, anon_sym_new, - ACTIONS(4508), 1, - anon_sym_static, - ACTIONS(4510), 1, - anon_sym_readonly, - ACTIONS(4516), 1, - anon_sym_override, - STATE(2280), 1, - sym_comment, - STATE(3724), 1, - sym_accessibility_modifier, - STATE(3781), 1, - sym_override_modifier, - STATE(4100), 1, - sym__property_name, - STATE(4276), 1, - sym_formal_parameters, - STATE(5291), 1, - sym__call_signature, - STATE(5606), 1, - aux_sym_export_statement_repeat1, - STATE(5733), 1, - sym_decorator, - STATE(6903), 1, - sym_type_parameters, - ACTIONS(3989), 2, + anon_sym_using, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_TILDE, + anon_sym_void, + anon_sym_delete, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, sym_number, + sym_identifier, sym_private_property_identifier, - ACTIONS(4512), 2, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - ACTIONS(4518), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4520), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4514), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4936), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4492), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -244708,18 +231835,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18222] = 6, + [17666] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1267), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4426), 1, - anon_sym_COMMA, - STATE(2281), 1, + ACTIONS(4486), 1, + anon_sym_COLON, + ACTIONS(4488), 1, + anon_sym_EQ_GT, + STATE(2127), 1, sym_comment, - ACTIONS(4272), 22, + ACTIONS(2780), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(210), 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(118), 21, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -244740,15 +231903,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(4274), 32, - sym__automatic_semicolon, + [17743] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4339), 1, + anon_sym_RBRACK, + ACTIONS(4369), 1, + anon_sym_COMMA, + ACTIONS(4407), 1, + anon_sym_EQ_GT, + ACTIONS(4479), 1, + anon_sym_EQ, + STATE(2128), 1, + sym_comment, + ACTIONS(4242), 15, 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(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -244764,25 +231950,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [18293] = 8, + ACTIONS(4238), 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, + [17822] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1271), 1, + ACTIONS(1115), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(3023), 1, anon_sym_EQ_GT, - STATE(2282), 1, + STATE(2129), 1, sym_comment, ACTIONS(2780), 15, anon_sym_PLUS_EQ, @@ -244840,7 +232039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18368] = 34, + [17897] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -244853,74 +232052,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2283), 1, + STATE(2130), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4522), 2, + ACTIONS(4502), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4524), 2, + ACTIONS(4504), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4885), 6, + STATE(4753), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -244933,73 +232132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18495] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4383), 1, - anon_sym_EQ, - STATE(2284), 1, - sym_comment, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4218), 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, - [18568] = 34, + [18024] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -245012,74 +232145,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2285), 1, + STATE(2131), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4097), 2, + ACTIONS(4099), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4099), 2, + ACTIONS(4101), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4850), 6, + STATE(4837), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -245092,16 +232225,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18695] = 7, + [18151] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4363), 1, + ACTIONS(4332), 1, anon_sym_EQ, - STATE(2286), 1, + ACTIONS(4334), 1, + anon_sym_EQ_GT, + STATE(2132), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -245117,12 +232252,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 18, + ACTIONS(4242), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -245135,8 +232270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245158,26 +232292,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18768] = 10, + [18226] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1249), 1, + ACTIONS(1115), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4345), 1, - anon_sym_COMMA, - ACTIONS(4419), 1, - anon_sym_RBRACK, - ACTIONS(4467), 1, + ACTIONS(4330), 1, anon_sym_EQ_GT, - STATE(2287), 1, + ACTIONS(4378), 1, + anon_sym_LBRACK, + STATE(2133), 1, sym_comment, - ACTIONS(210), 15, + ACTIONS(2063), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4383), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(210), 14, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -245205,8 +232343,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(118), 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, + [18307] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4456), 1, + anon_sym_COMMA, + STATE(2134), 1, + sym_comment, + ACTIONS(4230), 22, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -245227,7 +232394,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18847] = 34, + ACTIONS(4232), 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, + [18378] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -245240,74 +232440,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2288), 1, + STATE(2135), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3985), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4526), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4528), 2, + ACTIONS(4009), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4926), 6, + STATE(4788), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -245320,7 +232520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [18974] = 34, + [18505] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -245333,74 +232533,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2289), 1, + STATE(2136), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - ACTIONS(4530), 2, + ACTIONS(4522), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4532), 2, + ACTIONS(4524), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4799), 6, + STATE(4785), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -245413,67 +232613,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19101] = 11, + [18632] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4347), 1, - anon_sym_EQ_GT, - ACTIONS(4367), 1, - anon_sym_LBRACK, - STATE(2290), 1, - sym_comment, - ACTIONS(2063), 2, + ACTIONS(4454), 1, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4372), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(210), 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(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 18, + STATE(2137), 1, + sym_comment, + ACTIONS(4226), 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, @@ -245483,28 +232645,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19182] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4327), 1, - anon_sym_COMMA, - ACTIONS(4352), 1, - anon_sym_RBRACK, - ACTIONS(4395), 1, - anon_sym_EQ_GT, - ACTIONS(4481), 1, - anon_sym_EQ, - STATE(2291), 1, - sym_comment, - ACTIONS(4222), 15, + ACTIONS(4228), 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, @@ -245514,7 +232678,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + [18703] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1291), 1, + anon_sym_EQ, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(3023), 1, + anon_sym_EQ_GT, + STATE(2138), 1, + sym_comment, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -245530,7 +232705,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(210), 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(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245552,7 +232745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19261] = 34, + [18778] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -245565,74 +232758,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2292), 1, + STATE(2139), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3981), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4005), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + ACTIONS(4526), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4528), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4856), 6, + STATE(4698), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -245645,85 +232838,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19388] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(3023), 1, - anon_sym_EQ_GT, - STATE(2293), 1, - sym_comment, - ACTIONS(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 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(118), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19463] = 8, + [18905] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4387), 1, + ACTIONS(4316), 1, anon_sym_EQ, - ACTIONS(4389), 1, + ACTIONS(4334), 1, anon_sym_EQ_GT, - STATE(2294), 1, + STATE(2140), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -245739,7 +232865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 17, + ACTIONS(4242), 17, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -245757,7 +232883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245779,142 +232905,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19538] = 8, + [18980] = 34, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4389), 1, - anon_sym_EQ_GT, - STATE(2295), 1, - sym_comment, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 17, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4007), 1, + anon_sym_abstract, + ACTIONS(4498), 1, + anon_sym_export, + ACTIONS(4500), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_LBRACK, + ACTIONS(4508), 1, + anon_sym_async, + ACTIONS(4510), 1, + anon_sym_new, + ACTIONS(4512), 1, + anon_sym_static, + ACTIONS(4514), 1, + anon_sym_readonly, + ACTIONS(4520), 1, + anon_sym_override, + STATE(2141), 1, + sym_comment, + STATE(3591), 1, + sym_accessibility_modifier, + STATE(3622), 1, + sym_override_modifier, + STATE(3956), 1, + sym__property_name, + STATE(4128), 1, + sym_formal_parameters, + STATE(5009), 1, + sym__call_signature, + STATE(5525), 1, + aux_sym_export_statement_repeat1, + STATE(5596), 1, + sym_decorator, + STATE(6358), 1, + sym_type_parameters, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19613] = 9, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4530), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4532), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4518), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4812), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4496), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [19107] = 34, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1281), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4467), 1, - anon_sym_EQ_GT, - ACTIONS(4534), 1, - anon_sym_COLON, - STATE(2296), 1, - sym_comment, - ACTIONS(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 16, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(3983), 1, 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(118), 21, + ACTIONS(4007), 1, + anon_sym_abstract, + ACTIONS(4498), 1, + anon_sym_export, + ACTIONS(4500), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_LBRACK, + ACTIONS(4508), 1, + anon_sym_async, + ACTIONS(4510), 1, + anon_sym_new, + ACTIONS(4512), 1, + anon_sym_static, + ACTIONS(4514), 1, + anon_sym_readonly, + ACTIONS(4520), 1, + anon_sym_override, + STATE(2142), 1, + sym_comment, + STATE(3591), 1, + sym_accessibility_modifier, + STATE(3622), 1, + sym_override_modifier, + STATE(3956), 1, + sym__property_name, + STATE(4128), 1, + sym_formal_parameters, + STATE(5009), 1, + sym__call_signature, + STATE(5525), 1, + aux_sym_export_statement_repeat1, + STATE(5596), 1, + sym_decorator, + STATE(6358), 1, + sym_type_parameters, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [19690] = 34, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4534), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4536), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4518), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4750), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4496), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [19234] = 34, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -245927,74 +233104,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2297), 1, + STATE(2143), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - ACTIONS(4536), 2, + ACTIONS(4538), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4538), 2, + ACTIONS(4540), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4865), 6, + STATE(4674), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -246007,22 +233184,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [19817] = 10, + [19361] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4393), 1, + ACTIONS(4364), 1, anon_sym_EQ, - ACTIONS(4395), 1, - anon_sym_EQ_GT, - ACTIONS(4484), 1, - anon_sym_in, - ACTIONS(4540), 1, - anon_sym_COLON, - STATE(2298), 1, + STATE(2144), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -246038,12 +233209,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 16, + ACTIONS(4242), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, 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, @@ -246055,9 +233228,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 20, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -246076,111 +233250,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19896] = 34, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3979), 1, - anon_sym_LPAREN, - ACTIONS(4003), 1, - anon_sym_abstract, - ACTIONS(4494), 1, - anon_sym_export, - ACTIONS(4496), 1, - anon_sym_STAR, - ACTIONS(4502), 1, - anon_sym_LBRACK, - ACTIONS(4504), 1, - anon_sym_async, - ACTIONS(4506), 1, - anon_sym_new, - ACTIONS(4508), 1, - anon_sym_static, - ACTIONS(4510), 1, - anon_sym_readonly, - ACTIONS(4516), 1, - anon_sym_override, - STATE(2299), 1, - sym_comment, - STATE(3724), 1, - sym_accessibility_modifier, - STATE(3781), 1, - sym_override_modifier, - STATE(4100), 1, - sym__property_name, - STATE(4276), 1, - sym_formal_parameters, - STATE(5291), 1, - sym__call_signature, - STATE(5606), 1, - aux_sym_export_statement_repeat1, - STATE(5733), 1, - sym_decorator, - STATE(6903), 1, - sym_type_parameters, - ACTIONS(3989), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4512), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4542), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(4544), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4514), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4837), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4492), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [20023] = 8, + [19434] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1319), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4469), 1, - anon_sym_EQ_GT, - STATE(2300), 1, + ACTIONS(4352), 1, + anon_sym_EQ, + STATE(2145), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -246196,11 +233275,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 16, + ACTIONS(4242), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -246213,7 +233293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + anon_sym_implements, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246235,38 +233316,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20097] = 8, + [19507] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4488), 1, - anon_sym_EQ_GT, - STATE(2301), 1, + ACTIONS(4290), 1, + anon_sym_EQ, + STATE(2146), 1, sym_comment, - ACTIONS(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 16, + ACTIONS(4339), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -246279,7 +233345,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4254), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246301,16 +233383,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20171] = 7, + [19582] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4387), 1, + ACTIONS(4405), 1, anon_sym_EQ, - STATE(2302), 1, + ACTIONS(4407), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4484), 1, + anon_sym_COLON, + STATE(2147), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -246326,13 +233414,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 17, - sym__automatic_semicolon, + ACTIONS(4242), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -246344,10 +233431,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4238), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -246366,24 +233452,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20243] = 9, + [19661] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4327), 1, - anon_sym_COMMA, - ACTIONS(4352), 1, - anon_sym_RBRACK, - ACTIONS(4481), 1, + ACTIONS(4405), 1, anon_sym_EQ, - STATE(2303), 1, + ACTIONS(4407), 1, + anon_sym_EQ_GT, + ACTIONS(4482), 1, + anon_sym_in, + ACTIONS(4542), 1, + anon_sym_COLON, + STATE(2148), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4254), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4242), 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, @@ -246395,7 +233500,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4238), 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, + [19740] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1267), 1, + anon_sym_EQ, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4488), 1, + anon_sym_EQ_GT, + ACTIONS(4544), 1, + anon_sym_COLON, + STATE(2149), 1, + sym_comment, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -246411,7 +233550,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(210), 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(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246433,18 +233589,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20319] = 9, + [19817] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, + ACTIONS(1250), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4347), 1, + ACTIONS(4328), 1, + anon_sym_COMMA, + ACTIONS(4415), 1, + anon_sym_RBRACK, + ACTIONS(4488), 1, anon_sym_EQ_GT, - ACTIONS(4385), 1, - anon_sym_COLON, - STATE(2304), 1, + STATE(2150), 1, sym_comment, ACTIONS(210), 15, sym__ternary_qmark, @@ -246500,18 +233658,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20395] = 8, + [19896] = 34, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(4007), 1, + anon_sym_abstract, + ACTIONS(4498), 1, + anon_sym_export, + ACTIONS(4500), 1, + anon_sym_STAR, + ACTIONS(4506), 1, + anon_sym_LBRACK, + ACTIONS(4508), 1, + anon_sym_async, + ACTIONS(4510), 1, + anon_sym_new, + ACTIONS(4512), 1, + anon_sym_static, + ACTIONS(4514), 1, + anon_sym_readonly, + ACTIONS(4520), 1, + anon_sym_override, + STATE(2151), 1, + sym_comment, + STATE(3591), 1, + sym_accessibility_modifier, + STATE(3622), 1, + sym_override_modifier, + STATE(3956), 1, + sym__property_name, + STATE(4128), 1, + sym_formal_parameters, + STATE(5009), 1, + sym__call_signature, + STATE(5525), 1, + aux_sym_export_statement_repeat1, + STATE(5596), 1, + sym_decorator, + STATE(6358), 1, + sym_type_parameters, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4546), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4548), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4518), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4740), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4496), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [20023] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, + ACTIONS(4405), 1, anon_sym_EQ, - ACTIONS(4399), 1, + ACTIONS(4407), 1, anon_sym_EQ_GT, - STATE(2305), 1, + STATE(2152), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -246527,12 +233778,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 16, + ACTIONS(4242), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -246544,7 +233795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246566,39 +233817,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20469] = 8, + [20097] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1115), 1, + anon_sym_EQ, + ACTIONS(1209), 1, + anon_sym_in, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4395), 1, + ACTIONS(4330), 1, anon_sym_EQ_GT, - STATE(2306), 1, + ACTIONS(4432), 1, + anon_sym_of, + STATE(2153), 1, sym_comment, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 16, + ACTIONS(210), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -246610,10 +233848,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(2780), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -246632,18 +233885,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20543] = 8, + [20175] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1303), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4488), 1, + ACTIONS(4420), 1, + anon_sym_EQ, + ACTIONS(4422), 1, anon_sym_EQ_GT, - STATE(2307), 1, + STATE(2154), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -246659,11 +233912,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 16, + ACTIONS(4242), 16, 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, @@ -246676,7 +233929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246698,22 +233951,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20617] = 10, + [20249] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, + ACTIONS(4339), 1, + anon_sym_RBRACK, + ACTIONS(4369), 1, + anon_sym_COMMA, + ACTIONS(4479), 1, anon_sym_EQ, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - ACTIONS(4438), 1, - anon_sym_in, - ACTIONS(4441), 1, - anon_sym_of, - STATE(2308), 1, + STATE(2155), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -246729,7 +233980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -246745,9 +233996,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 20, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -246766,18 +234018,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20695] = 8, + [20325] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1115), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4405), 1, + ACTIONS(4488), 1, anon_sym_EQ_GT, - STATE(2309), 1, + STATE(2156), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -246793,12 +234045,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 16, + ACTIONS(210), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -246810,7 +234062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246832,18 +234084,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20769] = 8, + [20399] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4393), 1, + ACTIONS(4316), 1, anon_sym_EQ, - ACTIONS(4395), 1, + ACTIONS(4407), 1, anon_sym_EQ_GT, - STATE(2310), 1, + STATE(2157), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -246859,7 +234111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 16, + ACTIONS(4242), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -246876,7 +234128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246898,16 +234150,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20843] = 8, + [20473] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1281), 1, + ACTIONS(1267), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4467), 1, + ACTIONS(4488), 1, anon_sym_EQ_GT, - STATE(2311), 1, + STATE(2158), 1, sym_comment, ACTIONS(2780), 15, anon_sym_PLUS_EQ, @@ -246964,18 +234216,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20917] = 8, + [20547] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4467), 1, - anon_sym_EQ_GT, - STATE(2312), 1, + ACTIONS(4332), 1, + anon_sym_EQ, + STATE(2159), 1, sym_comment, - ACTIONS(2780), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -246991,12 +234241,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(210), 16, + ACTIONS(4242), 17, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -247008,7 +234259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(118), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247030,16 +234281,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20991] = 8, + [20619] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, + ACTIONS(1305), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4469), 1, + ACTIONS(4464), 1, anon_sym_EQ_GT, - STATE(2313), 1, + STATE(2160), 1, sym_comment, ACTIONS(2780), 15, anon_sym_PLUS_EQ, @@ -247096,18 +234347,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21065] = 8, + [20693] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4397), 1, + ACTIONS(4316), 1, anon_sym_EQ, - ACTIONS(4399), 1, + ACTIONS(4426), 1, anon_sym_EQ_GT, - STATE(2314), 1, + STATE(2161), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -247123,7 +234374,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 16, + ACTIONS(4242), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -247140,7 +234391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247162,18 +234413,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21139] = 8, + [20767] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1115), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4403), 1, - anon_sym_EQ, - ACTIONS(4405), 1, + ACTIONS(4492), 1, anon_sym_EQ_GT, - STATE(2315), 1, + STATE(2162), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -247189,11 +234440,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 16, + ACTIONS(210), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -247206,7 +234457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247228,37 +234479,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21213] = 10, + [20841] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(1115), 1, anon_sym_EQ, - ACTIONS(1231), 1, - anon_sym_in, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4347), 1, + ACTIONS(4464), 1, anon_sym_EQ_GT, - ACTIONS(4424), 1, - anon_sym_of, - STATE(2316), 1, + STATE(2163), 1, sym_comment, - ACTIONS(210), 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(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -247275,222 +234506,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 20, - 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, - [21291] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3979), 1, - anon_sym_LPAREN, - ACTIONS(4003), 1, - anon_sym_abstract, - ACTIONS(4494), 1, - anon_sym_export, - ACTIONS(4496), 1, - anon_sym_STAR, - ACTIONS(4502), 1, - anon_sym_LBRACK, - ACTIONS(4504), 1, - anon_sym_async, - ACTIONS(4506), 1, - anon_sym_new, - ACTIONS(4508), 1, - anon_sym_static, - ACTIONS(4510), 1, - anon_sym_readonly, - ACTIONS(4516), 1, - anon_sym_override, - STATE(2317), 1, - sym_comment, - STATE(3724), 1, - sym_accessibility_modifier, - STATE(3781), 1, - sym_override_modifier, - STATE(4100), 1, - sym__property_name, - STATE(4276), 1, - sym_formal_parameters, - STATE(5291), 1, - sym__call_signature, - STATE(5606), 1, - aux_sym_export_statement_repeat1, - STATE(5733), 1, - sym_decorator, - STATE(6903), 1, - sym_type_parameters, - ACTIONS(3989), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4512), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4546), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4514), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5263), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4492), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [21414] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3979), 1, - anon_sym_LPAREN, - ACTIONS(4003), 1, - anon_sym_abstract, - ACTIONS(4494), 1, - anon_sym_export, - ACTIONS(4496), 1, - anon_sym_STAR, - ACTIONS(4502), 1, - anon_sym_LBRACK, - ACTIONS(4504), 1, - anon_sym_async, - ACTIONS(4506), 1, - anon_sym_new, - ACTIONS(4508), 1, - anon_sym_static, - ACTIONS(4510), 1, - anon_sym_readonly, - ACTIONS(4516), 1, - anon_sym_override, - STATE(2318), 1, - sym_comment, - STATE(3724), 1, - sym_accessibility_modifier, - STATE(3781), 1, - sym_override_modifier, - STATE(4100), 1, - sym__property_name, - STATE(4276), 1, - sym_formal_parameters, - STATE(5291), 1, - sym__call_signature, - STATE(5606), 1, - aux_sym_export_statement_repeat1, - STATE(5733), 1, - sym_decorator, - STATE(6903), 1, - sym_type_parameters, - ACTIONS(3989), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4512), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4548), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4514), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5263), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4492), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [21537] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - ACTIONS(4550), 1, - anon_sym_EQ, - STATE(2319), 1, - sym_comment, - ACTIONS(4222), 15, + ACTIONS(210), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -247503,23 +234523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247541,33 +234545,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21610] = 8, + [20915] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1385), 1, + ACTIONS(1319), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4347), 1, + ACTIONS(4492), 1, anon_sym_EQ_GT, - STATE(2320), 1, + STATE(2164), 1, sym_comment, - ACTIONS(210), 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(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -247584,6 +234572,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(210), 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(118), 21, anon_sym_STAR, anon_sym_BANG, @@ -247606,106 +234611,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21683] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3979), 1, - anon_sym_LPAREN, - ACTIONS(4003), 1, - anon_sym_abstract, - ACTIONS(4494), 1, - anon_sym_export, - ACTIONS(4496), 1, - anon_sym_STAR, - ACTIONS(4502), 1, - anon_sym_LBRACK, - ACTIONS(4504), 1, - anon_sym_async, - ACTIONS(4506), 1, - anon_sym_new, - ACTIONS(4508), 1, - anon_sym_static, - ACTIONS(4510), 1, - anon_sym_readonly, - ACTIONS(4516), 1, - anon_sym_override, - STATE(2321), 1, - sym_comment, - STATE(3724), 1, - sym_accessibility_modifier, - STATE(3781), 1, - sym_override_modifier, - STATE(4100), 1, - sym__property_name, - STATE(4276), 1, - sym_formal_parameters, - STATE(5291), 1, - sym__call_signature, - STATE(5606), 1, - aux_sym_export_statement_repeat1, - STATE(5733), 1, - sym_decorator, - STATE(6903), 1, - sym_type_parameters, - ACTIONS(3989), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4512), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4552), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4514), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5263), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4492), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [21806] = 7, + [20989] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4403), 1, + ACTIONS(4316), 1, anon_sym_EQ, - STATE(2322), 1, + ACTIONS(4422), 1, + anon_sym_EQ_GT, + STATE(2165), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -247721,7 +234638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 16, + ACTIONS(4242), 16, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -247738,7 +234655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247760,18 +234677,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21877] = 8, + [21063] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1115), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4332), 1, + ACTIONS(4330), 1, anon_sym_EQ_GT, - ACTIONS(4554), 1, - anon_sym_EQ, - STATE(2323), 1, + ACTIONS(4389), 1, + anon_sym_COLON, + STATE(2166), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(210), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -247787,7 +234706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -247803,7 +234722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247825,124 +234744,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21950] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3979), 1, - anon_sym_LPAREN, - ACTIONS(4003), 1, - anon_sym_abstract, - ACTIONS(4494), 1, - anon_sym_export, - ACTIONS(4496), 1, - anon_sym_STAR, - ACTIONS(4502), 1, - anon_sym_LBRACK, - ACTIONS(4504), 1, - anon_sym_async, - ACTIONS(4506), 1, - anon_sym_new, - ACTIONS(4508), 1, - anon_sym_static, - ACTIONS(4510), 1, - anon_sym_readonly, - ACTIONS(4516), 1, - anon_sym_override, - STATE(2324), 1, - sym_comment, - STATE(3724), 1, - sym_accessibility_modifier, - STATE(3781), 1, - sym_override_modifier, - STATE(4100), 1, - sym__property_name, - STATE(4276), 1, - sym_formal_parameters, - STATE(5291), 1, - sym__call_signature, - STATE(5606), 1, - aux_sym_export_statement_repeat1, - STATE(5733), 1, - sym_decorator, - STATE(6903), 1, - sym_type_parameters, - ACTIONS(3989), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4512), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4556), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4514), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5263), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4492), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [22073] = 8, + [21139] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - ACTIONS(4558), 1, + ACTIONS(4424), 1, anon_sym_EQ, - STATE(2325), 1, + ACTIONS(4426), 1, + anon_sym_EQ_GT, + STATE(2167), 1, sym_comment, - ACTIONS(4222), 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(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -247958,7 +234771,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4242), 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(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247980,187 +234810,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22146] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3979), 1, - anon_sym_LPAREN, - ACTIONS(4003), 1, - anon_sym_abstract, - ACTIONS(4494), 1, - anon_sym_export, - ACTIONS(4496), 1, - anon_sym_STAR, - ACTIONS(4502), 1, - anon_sym_LBRACK, - ACTIONS(4504), 1, - anon_sym_async, - ACTIONS(4506), 1, - anon_sym_new, - ACTIONS(4508), 1, - anon_sym_static, - ACTIONS(4510), 1, - anon_sym_readonly, - ACTIONS(4516), 1, - anon_sym_override, - STATE(2326), 1, - sym_comment, - STATE(3724), 1, - sym_accessibility_modifier, - STATE(3781), 1, - sym_override_modifier, - STATE(4100), 1, - sym__property_name, - STATE(4276), 1, - sym_formal_parameters, - STATE(5291), 1, - sym__call_signature, - STATE(5606), 1, - aux_sym_export_statement_repeat1, - STATE(5733), 1, - sym_decorator, - STATE(6903), 1, - sym_type_parameters, - ACTIONS(3989), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4512), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4560), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4514), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5263), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4492), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [22269] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, + [21213] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3979), 1, - anon_sym_LPAREN, - ACTIONS(4003), 1, - anon_sym_abstract, - ACTIONS(4494), 1, - anon_sym_export, - ACTIONS(4496), 1, - anon_sym_STAR, - ACTIONS(4502), 1, - anon_sym_LBRACK, - ACTIONS(4504), 1, - anon_sym_async, - ACTIONS(4506), 1, - anon_sym_new, - ACTIONS(4508), 1, - anon_sym_static, - ACTIONS(4510), 1, - anon_sym_readonly, - ACTIONS(4516), 1, - anon_sym_override, - STATE(2327), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4316), 1, + anon_sym_EQ, + ACTIONS(4371), 1, + anon_sym_EQ_GT, + ACTIONS(4442), 1, + anon_sym_in, + ACTIONS(4445), 1, + anon_sym_of, + STATE(2168), 1, sym_comment, - STATE(3724), 1, - sym_accessibility_modifier, - STATE(3781), 1, - sym_override_modifier, - STATE(4100), 1, - sym__property_name, - STATE(4276), 1, - sym_formal_parameters, - STATE(5291), 1, - sym__call_signature, - STATE(5606), 1, - aux_sym_export_statement_repeat1, - STATE(5733), 1, - sym_decorator, - STATE(6903), 1, - sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(4242), 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(4254), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4238), 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, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4512), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4562), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4514), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5263), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4492), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [22392] = 33, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [21291] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -248173,71 +234891,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2328), 1, + STATE(2169), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - ACTIONS(4564), 2, + ACTIONS(4550), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -248250,18 +234968,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22515] = 8, + [21414] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4332), 1, + ACTIONS(4371), 1, anon_sym_EQ_GT, - ACTIONS(4566), 1, + ACTIONS(4552), 1, anon_sym_EQ, - STATE(2329), 1, + STATE(2170), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -248277,7 +234995,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -248293,7 +235011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248315,16 +235033,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22588] = 8, + [21487] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1383), 1, + ACTIONS(1337), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4347), 1, + ACTIONS(4330), 1, anon_sym_EQ_GT, - STATE(2330), 1, + STATE(2171), 1, sym_comment, ACTIONS(210), 15, sym__ternary_qmark, @@ -248380,83 +235098,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22661] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4341), 1, - anon_sym_COLON, - STATE(2331), 1, - sym_comment, - ACTIONS(4222), 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(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 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, - [22734] = 8, + [21560] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1387), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4347), 1, + ACTIONS(4371), 1, anon_sym_EQ_GT, - STATE(2332), 1, + ACTIONS(4554), 1, + anon_sym_EQ, + STATE(2172), 1, sym_comment, - ACTIONS(210), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -248472,7 +235125,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -248488,7 +235141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248510,7 +235163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22807] = 33, + [21633] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -248523,71 +235176,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2333), 1, + STATE(2173), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - ACTIONS(4568), 2, + ACTIONS(4556), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -248600,18 +235253,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [22930] = 8, + [21756] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1115), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4347), 1, + ACTIONS(4371), 1, anon_sym_EQ_GT, - STATE(2334), 1, + ACTIONS(4558), 1, + anon_sym_EQ, + STATE(2174), 1, sym_comment, - ACTIONS(210), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -248627,7 +235280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -248643,7 +235296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248665,18 +235318,173 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23003] = 8, + [21829] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4332), 1, + ACTIONS(4316), 1, + anon_sym_EQ, + ACTIONS(4371), 1, anon_sym_EQ_GT, - ACTIONS(4570), 1, + STATE(2175), 1, + sym_comment, + ACTIONS(4242), 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(4254), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4238), 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, + [21902] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(4007), 1, + anon_sym_abstract, + ACTIONS(4498), 1, + anon_sym_export, + ACTIONS(4500), 1, + anon_sym_STAR, + ACTIONS(4506), 1, + anon_sym_LBRACK, + ACTIONS(4508), 1, + anon_sym_async, + ACTIONS(4510), 1, + anon_sym_new, + ACTIONS(4512), 1, + anon_sym_static, + ACTIONS(4514), 1, + anon_sym_readonly, + ACTIONS(4520), 1, + anon_sym_override, + STATE(2176), 1, + sym_comment, + STATE(3591), 1, + sym_accessibility_modifier, + STATE(3622), 1, + sym_override_modifier, + STATE(3956), 1, + sym__property_name, + STATE(4128), 1, + sym_formal_parameters, + STATE(5009), 1, + sym__call_signature, + STATE(5525), 1, + aux_sym_export_statement_repeat1, + STATE(5596), 1, + sym_decorator, + STATE(6358), 1, + sym_type_parameters, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4560), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4518), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5151), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4496), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [22025] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4316), 1, anon_sym_EQ, - STATE(2335), 1, + ACTIONS(4391), 1, + anon_sym_COLON, + STATE(2177), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -248692,7 +235500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -248708,7 +235516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248730,16 +235538,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23076] = 8, + [22098] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1389), 1, + ACTIONS(1329), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4347), 1, + ACTIONS(4330), 1, anon_sym_EQ_GT, - STATE(2336), 1, + STATE(2178), 1, sym_comment, ACTIONS(210), 15, sym__ternary_qmark, @@ -248795,7 +235603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23149] = 33, + [22171] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -248808,71 +235616,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2337), 1, + STATE(2179), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - ACTIONS(4572), 2, + ACTIONS(4562), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -248885,7 +235693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23272] = 33, + [22294] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -248898,71 +235706,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, + ACTIONS(4514), 1, + anon_sym_readonly, + ACTIONS(4520), 1, + anon_sym_override, + STATE(2180), 1, + sym_comment, + STATE(3591), 1, + sym_accessibility_modifier, + STATE(3622), 1, + sym_override_modifier, + STATE(3956), 1, + sym__property_name, + STATE(4128), 1, + sym_formal_parameters, + STATE(5009), 1, + sym__call_signature, + STATE(5525), 1, + aux_sym_export_statement_repeat1, + STATE(5596), 1, + sym_decorator, + STATE(6358), 1, + sym_type_parameters, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4564), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4518), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5151), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4496), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [22417] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(4007), 1, + anon_sym_abstract, + ACTIONS(4498), 1, + anon_sym_export, + ACTIONS(4500), 1, + anon_sym_STAR, + ACTIONS(4506), 1, + anon_sym_LBRACK, + ACTIONS(4508), 1, + anon_sym_async, ACTIONS(4510), 1, + anon_sym_new, + ACTIONS(4512), 1, + anon_sym_static, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2338), 1, + STATE(2181), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - ACTIONS(4574), 2, + ACTIONS(4566), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -248975,18 +235873,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23395] = 8, + [22540] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1391), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4347), 1, + ACTIONS(4371), 1, anon_sym_EQ_GT, - STATE(2339), 1, + ACTIONS(4568), 1, + anon_sym_EQ, + STATE(2182), 1, sym_comment, - ACTIONS(210), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -249002,7 +235900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -249018,7 +235916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249040,7 +235938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23468] = 33, + [22613] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -249053,71 +235951,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2340), 1, + STATE(2183), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - ACTIONS(4576), 2, + ACTIONS(4570), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -249130,82 +236028,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [23591] = 7, + [22736] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4393), 1, - anon_sym_EQ, - STATE(2341), 1, - sym_comment, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 16, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(3983), 1, 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(4218), 21, + ACTIONS(4007), 1, + anon_sym_abstract, + ACTIONS(4498), 1, + anon_sym_export, + ACTIONS(4500), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_LBRACK, + ACTIONS(4508), 1, + anon_sym_async, + ACTIONS(4510), 1, + anon_sym_new, + ACTIONS(4512), 1, + anon_sym_static, + ACTIONS(4514), 1, + anon_sym_readonly, + ACTIONS(4520), 1, + anon_sym_override, + STATE(2184), 1, + sym_comment, + STATE(3591), 1, + sym_accessibility_modifier, + STATE(3622), 1, + sym_override_modifier, + STATE(3956), 1, + sym__property_name, + STATE(4128), 1, + sym_formal_parameters, + STATE(5009), 1, + sym__call_signature, + STATE(5525), 1, + aux_sym_export_statement_repeat1, + STATE(5596), 1, + sym_decorator, + STATE(6358), 1, + sym_type_parameters, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4572), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4518), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5151), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4496), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [22859] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1973), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [23662] = 8, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(4007), 1, + anon_sym_abstract, + ACTIONS(4498), 1, + anon_sym_export, + ACTIONS(4500), 1, + anon_sym_STAR, + ACTIONS(4506), 1, + anon_sym_LBRACK, + ACTIONS(4508), 1, + anon_sym_async, + ACTIONS(4510), 1, + anon_sym_new, + ACTIONS(4512), 1, + anon_sym_static, + ACTIONS(4514), 1, + anon_sym_readonly, + ACTIONS(4520), 1, + anon_sym_override, + STATE(2185), 1, + sym_comment, + STATE(3591), 1, + sym_accessibility_modifier, + STATE(3622), 1, + sym_override_modifier, + STATE(3956), 1, + sym__property_name, + STATE(4128), 1, + sym_formal_parameters, + STATE(5009), 1, + sym__call_signature, + STATE(5525), 1, + aux_sym_export_statement_repeat1, + STATE(5596), 1, + sym_decorator, + STATE(6358), 1, + sym_type_parameters, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4574), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4518), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5151), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4496), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [22982] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1333), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4332), 1, + ACTIONS(4330), 1, anon_sym_EQ_GT, - ACTIONS(4578), 1, - anon_sym_EQ, - STATE(2342), 1, + STATE(2186), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(210), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -249221,7 +236235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -249237,7 +236251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249259,18 +236273,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23735] = 8, + [23055] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1341), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4332), 1, + ACTIONS(4330), 1, anon_sym_EQ_GT, - ACTIONS(4580), 1, - anon_sym_EQ, - STATE(2343), 1, + STATE(2187), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(210), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -249286,7 +236300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -249302,7 +236316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249324,20 +236338,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23808] = 9, + [23128] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(4007), 1, + anon_sym_abstract, + ACTIONS(4498), 1, + anon_sym_export, + ACTIONS(4500), 1, + anon_sym_STAR, + ACTIONS(4506), 1, + anon_sym_LBRACK, + ACTIONS(4508), 1, + anon_sym_async, + ACTIONS(4510), 1, + anon_sym_new, + ACTIONS(4512), 1, + anon_sym_static, + ACTIONS(4514), 1, + anon_sym_readonly, + ACTIONS(4520), 1, + anon_sym_override, + STATE(2188), 1, + sym_comment, + STATE(3591), 1, + sym_accessibility_modifier, + STATE(3622), 1, + sym_override_modifier, + STATE(3956), 1, + sym__property_name, + STATE(4128), 1, + sym_formal_parameters, + STATE(5009), 1, + sym__call_signature, + STATE(5525), 1, + aux_sym_export_statement_repeat1, + STATE(5596), 1, + sym_decorator, + STATE(6358), 1, + sym_type_parameters, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4576), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4518), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5151), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4496), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [23251] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1345), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4438), 1, - anon_sym_in, - ACTIONS(4441), 1, - anon_sym_of, - STATE(2344), 1, + ACTIONS(4330), 1, + anon_sym_EQ_GT, + STATE(2189), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(210), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -249353,7 +236455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -249369,9 +236471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 20, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -249390,7 +236493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23883] = 33, + [23324] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -249403,71 +236506,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2345), 1, + STATE(2190), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - ACTIONS(4582), 2, + ACTIONS(4578), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -249480,7 +236583,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24006] = 33, + [23447] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4371), 1, + anon_sym_EQ_GT, + ACTIONS(4580), 1, + anon_sym_EQ, + STATE(2191), 1, + sym_comment, + ACTIONS(4242), 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(4254), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4238), 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, + [23520] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -249493,71 +236661,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2346), 1, + STATE(2192), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - ACTIONS(4584), 2, + ACTIONS(4582), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -249570,7 +236738,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24129] = 33, + [23643] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1331), 1, + anon_sym_EQ, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4330), 1, + anon_sym_EQ_GT, + STATE(2193), 1, + sym_comment, + ACTIONS(210), 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(2780), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [23716] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -249583,71 +236816,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2347), 1, + STATE(2194), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - ACTIONS(4586), 2, + ACTIONS(4584), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -249660,18 +236893,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24252] = 8, + [23839] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4332), 1, + ACTIONS(4371), 1, anon_sym_EQ_GT, - ACTIONS(4588), 1, + ACTIONS(4586), 1, anon_sym_EQ, - STATE(2348), 1, + STATE(2195), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -249687,7 +236920,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -249703,7 +236936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249725,18 +236958,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24325] = 8, + [23912] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1335), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4332), 1, + ACTIONS(4330), 1, anon_sym_EQ_GT, - ACTIONS(4590), 1, - anon_sym_EQ, - STATE(2349), 1, + STATE(2196), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(210), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -249752,7 +236985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(2780), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -249768,7 +237001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249790,7 +237023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24398] = 33, + [23985] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -249803,71 +237036,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2350), 1, + STATE(2197), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - ACTIONS(4592), 2, + ACTIONS(4588), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -249880,7 +237113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24521] = 33, + [24108] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -249893,71 +237126,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2351), 1, + STATE(2198), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - ACTIONS(4594), 2, + ACTIONS(4590), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -249970,202 +237203,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24644] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [24231] = 33, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - STATE(2352), 1, - sym_comment, - ACTIONS(4222), 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(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 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, - [24717] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1379), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4347), 1, - anon_sym_EQ_GT, - STATE(2353), 1, - sym_comment, - ACTIONS(210), 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(2780), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1973), 1, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [24790] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - ACTIONS(4596), 1, - anon_sym_EQ, - STATE(2354), 1, - sym_comment, - ACTIONS(4222), 15, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(3983), 1, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - ACTIONS(4229), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4007), 1, + anon_sym_abstract, + ACTIONS(4498), 1, + anon_sym_export, + ACTIONS(4500), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, + ACTIONS(4506), 1, + anon_sym_LBRACK, + ACTIONS(4508), 1, + anon_sym_async, + ACTIONS(4510), 1, + anon_sym_new, + ACTIONS(4512), 1, + anon_sym_static, + ACTIONS(4514), 1, + anon_sym_readonly, + ACTIONS(4520), 1, + anon_sym_override, + STATE(2199), 1, + sym_comment, + STATE(3591), 1, + sym_accessibility_modifier, + STATE(3622), 1, + sym_override_modifier, + STATE(3956), 1, + sym__property_name, + STATE(4128), 1, + sym_formal_parameters, + STATE(5009), 1, + sym__call_signature, + STATE(5525), 1, + aux_sym_export_statement_repeat1, + STATE(5596), 1, + sym_decorator, + STATE(6358), 1, + sym_type_parameters, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - [24863] = 33, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4592), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4518), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5151), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4496), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [24354] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -250178,71 +237306,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2355), 1, + STATE(2200), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - ACTIONS(4598), 2, + ACTIONS(4594), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -250255,7 +237383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [24986] = 33, + [24477] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -250268,71 +237396,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2356), 1, + STATE(2201), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - ACTIONS(4600), 2, + ACTIONS(4596), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -250345,7 +237473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25109] = 33, + [24600] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -250358,71 +237486,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2357), 1, + STATE(2202), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - ACTIONS(4602), 2, + ACTIONS(4598), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -250435,16 +237563,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25232] = 7, + [24723] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4397), 1, + ACTIONS(4371), 1, + anon_sym_EQ_GT, + ACTIONS(4600), 1, anon_sym_EQ, - STATE(2358), 1, + STATE(2203), 1, sym_comment, - ACTIONS(4229), 15, + ACTIONS(4242), 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(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -250460,11 +237606,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4222), 16, + ACTIONS(4238), 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, + [24796] = 33, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(95), 1, + anon_sym_AT, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(3983), 1, + anon_sym_LPAREN, + ACTIONS(4007), 1, + anon_sym_abstract, + ACTIONS(4498), 1, + anon_sym_export, + ACTIONS(4500), 1, + anon_sym_STAR, + ACTIONS(4506), 1, + anon_sym_LBRACK, + ACTIONS(4508), 1, + anon_sym_async, + ACTIONS(4510), 1, + anon_sym_new, + ACTIONS(4512), 1, + anon_sym_static, + ACTIONS(4514), 1, + anon_sym_readonly, + ACTIONS(4520), 1, + anon_sym_override, + STATE(2204), 1, + sym_comment, + STATE(3591), 1, + sym_accessibility_modifier, + STATE(3622), 1, + sym_override_modifier, + STATE(3956), 1, + sym__property_name, + STATE(4128), 1, + sym_formal_parameters, + STATE(5009), 1, + sym__call_signature, + STATE(5525), 1, + aux_sym_export_statement_repeat1, + STATE(5596), 1, + sym_decorator, + STATE(6358), 1, + sym_type_parameters, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4516), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4602), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4518), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5151), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4496), 12, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [24919] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1115), 1, + anon_sym_EQ, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4330), 1, + anon_sym_EQ_GT, + STATE(2205), 1, + sym_comment, + ACTIONS(210), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -250477,7 +237745,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4218), 21, + ACTIONS(2780), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(118), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250499,7 +237783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25303] = 33, + [24992] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -250512,71 +237796,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2359), 1, + STATE(2206), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, ACTIONS(4604), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -250589,7 +237873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25426] = 33, + [25115] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -250602,71 +237886,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2360), 1, + STATE(2207), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, ACTIONS(4606), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -250679,7 +237963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25549] = 33, + [25238] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -250692,71 +237976,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2361), 1, + STATE(2208), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, ACTIONS(4608), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -250769,16 +238053,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25672] = 8, + [25361] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4371), 1, + anon_sym_EQ_GT, + ACTIONS(4610), 1, + anon_sym_EQ, + STATE(2209), 1, + sym_comment, + ACTIONS(4242), 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(4254), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4238), 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, + [25434] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1393), 1, + ACTIONS(1339), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4347), 1, + ACTIONS(4330), 1, anon_sym_EQ_GT, - STATE(2362), 1, + STATE(2210), 1, sym_comment, ACTIONS(210), 15, sym__ternary_qmark, @@ -250834,16 +238183,209 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25745] = 8, + [25507] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4371), 1, + anon_sym_EQ_GT, + ACTIONS(4612), 1, + anon_sym_EQ, + STATE(2211), 1, + sym_comment, + ACTIONS(4242), 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(4254), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4238), 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, + [25580] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4405), 1, + anon_sym_EQ, + STATE(2212), 1, + sym_comment, + ACTIONS(4254), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4242), 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(4238), 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, + [25651] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4424), 1, + anon_sym_EQ, + STATE(2213), 1, + sym_comment, + ACTIONS(4254), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4242), 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(4238), 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, + [25722] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1395), 1, + ACTIONS(1343), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4347), 1, + ACTIONS(4330), 1, anon_sym_EQ_GT, - STATE(2363), 1, + STATE(2214), 1, sym_comment, ACTIONS(210), 15, sym__ternary_qmark, @@ -250899,7 +238441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25818] = 33, + [25795] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -250912,71 +238454,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2364), 1, + STATE(2215), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - ACTIONS(4610), 2, + ACTIONS(4614), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -250989,7 +238531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [25941] = 33, + [25918] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -251002,71 +238544,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2365), 1, + STATE(2216), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - ACTIONS(4612), 2, + ACTIONS(4616), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -251079,16 +238621,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [26064] = 8, + [26041] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1381), 1, + ACTIONS(1347), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4347), 1, + ACTIONS(4330), 1, anon_sym_EQ_GT, - STATE(2366), 1, + STATE(2217), 1, sym_comment, ACTIONS(210), 15, sym__ternary_qmark, @@ -251144,7 +238686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [26137] = 33, + [26114] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -251157,71 +238699,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2367), 1, + STATE(2218), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - ACTIONS(4614), 2, + ACTIONS(4618), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -251234,7 +238776,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [26260] = 33, + [26237] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4371), 1, + anon_sym_EQ_GT, + ACTIONS(4620), 1, + anon_sym_EQ, + STATE(2219), 1, + sym_comment, + ACTIONS(4242), 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(4254), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4238), 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, + [26310] = 33, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -251247,71 +238854,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2368), 1, + STATE(2220), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - ACTIONS(4616), 2, + ACTIONS(4622), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -251324,108 +238931,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [26383] = 33, - ACTIONS(3), 1, - aux_sym_comment_token1, + [26433] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(95), 1, - anon_sym_AT, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4420), 1, + anon_sym_EQ, + STATE(2221), 1, + sym_comment, + ACTIONS(4254), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(4242), 16, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4003), 1, - anon_sym_abstract, - ACTIONS(4494), 1, - anon_sym_export, - ACTIONS(4496), 1, - anon_sym_STAR, - ACTIONS(4502), 1, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4504), 1, - anon_sym_async, - ACTIONS(4506), 1, - anon_sym_new, - ACTIONS(4508), 1, - anon_sym_static, - ACTIONS(4510), 1, - anon_sym_readonly, - ACTIONS(4516), 1, - anon_sym_override, - STATE(2369), 1, - sym_comment, - STATE(3724), 1, - sym_accessibility_modifier, - STATE(3781), 1, - sym_override_modifier, - STATE(4100), 1, - sym__property_name, - STATE(4276), 1, - sym_formal_parameters, - STATE(5291), 1, - sym__call_signature, - STATE(5606), 1, - aux_sym_export_statement_repeat1, - STATE(5733), 1, - sym_decorator, - STATE(6903), 1, - sym_type_parameters, - ACTIONS(3989), 2, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + ACTIONS(4238), 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, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4512), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4618), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4514), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5263), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4492), 12, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [26506] = 8, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [26504] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1397), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4347), 1, - anon_sym_EQ_GT, - STATE(2370), 1, + ACTIONS(4316), 1, + anon_sym_EQ, + ACTIONS(4442), 1, + anon_sym_in, + ACTIONS(4445), 1, + anon_sym_of, + STATE(2222), 1, sym_comment, - ACTIONS(210), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -251441,7 +239024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(2780), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -251457,10 +239040,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(118), 21, + ACTIONS(4238), 20, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -251484,11 +239066,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4566), 1, + ACTIONS(4620), 1, anon_sym_EQ, - STATE(2371), 1, + STATE(2223), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -251504,7 +239086,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -251520,7 +239102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251547,11 +239129,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4588), 1, + ACTIONS(4600), 1, anon_sym_EQ, - STATE(2372), 1, + STATE(2224), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -251567,7 +239149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -251583,7 +239165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251610,11 +239192,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4550), 1, + ACTIONS(4612), 1, anon_sym_EQ, - STATE(2373), 1, + STATE(2225), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -251630,7 +239212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -251646,7 +239228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251673,11 +239255,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4590), 1, + ACTIONS(4586), 1, anon_sym_EQ, - STATE(2374), 1, + STATE(2226), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -251693,7 +239275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -251709,7 +239291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251736,11 +239318,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4558), 1, + ACTIONS(4610), 1, anon_sym_EQ, - STATE(2375), 1, + STATE(2227), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -251756,7 +239338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -251772,7 +239354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251799,11 +239381,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4554), 1, + ACTIONS(4558), 1, anon_sym_EQ, - STATE(2376), 1, + STATE(2228), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -251819,7 +239401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -251835,7 +239417,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251862,11 +239444,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4578), 1, + ACTIONS(4552), 1, anon_sym_EQ, - STATE(2377), 1, + STATE(2229), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -251882,7 +239464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -251898,7 +239480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251925,11 +239507,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4596), 1, + ACTIONS(4568), 1, anon_sym_EQ, - STATE(2378), 1, + STATE(2230), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -251945,7 +239527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -251961,7 +239543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251990,9 +239572,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_comment_token1, ACTIONS(4580), 1, anon_sym_EQ, - STATE(2379), 1, + STATE(2231), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -252008,7 +239590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -252024,7 +239606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252051,11 +239633,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4570), 1, + ACTIONS(4554), 1, anon_sym_EQ, - STATE(2380), 1, + STATE(2232), 1, sym_comment, - ACTIONS(4222), 15, + ACTIONS(4242), 15, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -252071,7 +239653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(4229), 15, + ACTIONS(4254), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -252087,7 +239669,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(4218), 21, + ACTIONS(4238), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252122,68 +239704,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2381), 1, + STATE(2233), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4932), 6, + STATE(4775), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -252209,68 +239791,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2382), 1, + STATE(2234), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4872), 6, + STATE(4843), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -252296,68 +239878,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2383), 1, + STATE(2235), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4849), 6, + STATE(4687), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -252383,68 +239965,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2384), 1, + STATE(2236), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4889), 6, + STATE(4729), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -252470,68 +240052,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2385), 1, + STATE(2237), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4897), 6, + STATE(4811), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -252557,68 +240139,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2386), 1, + STATE(2238), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5263), 6, + STATE(4826), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -252644,68 +240226,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2387), 1, + STATE(2239), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4841), 6, + STATE(4793), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -252731,68 +240313,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2388), 1, + STATE(2240), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4846), 6, + STATE(4654), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -252818,68 +240400,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2389), 1, + STATE(2241), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4866), 6, + STATE(4655), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -252905,68 +240487,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3979), 1, + ACTIONS(3983), 1, anon_sym_LPAREN, - ACTIONS(4003), 1, + ACTIONS(4007), 1, anon_sym_abstract, - ACTIONS(4494), 1, + ACTIONS(4498), 1, anon_sym_export, - ACTIONS(4496), 1, + ACTIONS(4500), 1, anon_sym_STAR, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4504), 1, + ACTIONS(4508), 1, anon_sym_async, - ACTIONS(4506), 1, + ACTIONS(4510), 1, anon_sym_new, - ACTIONS(4508), 1, + ACTIONS(4512), 1, anon_sym_static, - ACTIONS(4510), 1, + ACTIONS(4514), 1, anon_sym_readonly, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - STATE(2390), 1, + STATE(2242), 1, sym_comment, - STATE(3724), 1, + STATE(3591), 1, sym_accessibility_modifier, - STATE(3781), 1, + STATE(3622), 1, sym_override_modifier, - STATE(4100), 1, + STATE(3956), 1, sym__property_name, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5291), 1, + STATE(5009), 1, sym__call_signature, - STATE(5606), 1, + STATE(5525), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4512), 2, + ACTIONS(4516), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4514), 3, + ACTIONS(4518), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4812), 6, + STATE(5151), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4492), 12, + ACTIONS(4496), 12, anon_sym_type, anon_sym_namespace, anon_sym_let, @@ -253012,41 +240594,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(3053), 1, anon_sym_enum, - ACTIONS(4620), 1, + ACTIONS(4624), 1, anon_sym_STAR, - ACTIONS(4622), 1, + ACTIONS(4626), 1, anon_sym_default, - ACTIONS(4624), 1, + ACTIONS(4628), 1, anon_sym_type, - ACTIONS(4626), 1, + ACTIONS(4630), 1, anon_sym_EQ, - ACTIONS(4628), 1, + ACTIONS(4632), 1, anon_sym_as, - ACTIONS(4630), 1, + ACTIONS(4634), 1, anon_sym_COMMA, - ACTIONS(4633), 1, + ACTIONS(4637), 1, anon_sym_RBRACE, - ACTIONS(4638), 1, + ACTIONS(4642), 1, anon_sym_module, - STATE(2391), 1, + STATE(2243), 1, sym_comment, - STATE(5109), 1, - sym_internal_module, - STATE(5110), 1, - sym_declaration, - STATE(5142), 1, + STATE(4885), 1, aux_sym_export_statement_repeat1, - STATE(5608), 1, + STATE(4986), 1, + sym_declaration, + STATE(4993), 1, + sym_internal_module, + STATE(5565), 1, sym_export_clause, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - STATE(7061), 1, + STATE(5839), 1, + aux_sym_object_repeat1, + STATE(6878), 1, sym_namespace_export, - ACTIONS(4636), 7, + ACTIONS(4640), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -253054,7 +240636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5108), 13, + STATE(5000), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -253101,41 +240683,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(3053), 1, anon_sym_enum, - ACTIONS(4620), 1, + ACTIONS(4624), 1, anon_sym_STAR, - ACTIONS(4622), 1, + ACTIONS(4626), 1, anon_sym_default, - ACTIONS(4624), 1, + ACTIONS(4628), 1, anon_sym_type, - ACTIONS(4626), 1, + ACTIONS(4630), 1, anon_sym_EQ, - ACTIONS(4628), 1, + ACTIONS(4632), 1, anon_sym_as, - ACTIONS(4630), 1, + ACTIONS(4634), 1, anon_sym_COMMA, - ACTIONS(4638), 1, + ACTIONS(4642), 1, anon_sym_module, - ACTIONS(4640), 1, + ACTIONS(4644), 1, anon_sym_RBRACE, - STATE(2392), 1, + STATE(2244), 1, sym_comment, - STATE(5109), 1, - sym_internal_module, - STATE(5110), 1, - sym_declaration, - STATE(5142), 1, + STATE(4885), 1, aux_sym_export_statement_repeat1, - STATE(5608), 1, + STATE(4986), 1, + sym_declaration, + STATE(4993), 1, + sym_internal_module, + STATE(5565), 1, sym_export_clause, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - STATE(7061), 1, + STATE(5839), 1, + aux_sym_object_repeat1, + STATE(6878), 1, sym_namespace_export, - ACTIONS(4636), 7, + ACTIONS(4640), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -253143,7 +240725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5108), 13, + STATE(5000), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -253190,41 +240772,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(3053), 1, anon_sym_enum, - ACTIONS(4620), 1, + ACTIONS(4624), 1, anon_sym_STAR, - ACTIONS(4622), 1, + ACTIONS(4626), 1, anon_sym_default, - ACTIONS(4624), 1, + ACTIONS(4628), 1, anon_sym_type, - ACTIONS(4626), 1, + ACTIONS(4630), 1, anon_sym_EQ, - ACTIONS(4628), 1, + ACTIONS(4632), 1, anon_sym_as, - ACTIONS(4630), 1, + ACTIONS(4634), 1, anon_sym_COMMA, - ACTIONS(4638), 1, + ACTIONS(4642), 1, anon_sym_module, - ACTIONS(4643), 1, + ACTIONS(4647), 1, anon_sym_RBRACE, - STATE(2393), 1, + STATE(2245), 1, sym_comment, - STATE(5109), 1, - sym_internal_module, - STATE(5110), 1, - sym_declaration, - STATE(5142), 1, + STATE(4885), 1, aux_sym_export_statement_repeat1, - STATE(5608), 1, + STATE(4986), 1, + sym_declaration, + STATE(4993), 1, + sym_internal_module, + STATE(5565), 1, sym_export_clause, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - STATE(6287), 1, + STATE(5839), 1, aux_sym_object_repeat1, - STATE(7061), 1, + STATE(6878), 1, sym_namespace_export, - ACTIONS(4636), 7, + ACTIONS(4640), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -253232,7 +240814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5108), 13, + STATE(5000), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -253279,41 +240861,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(3053), 1, anon_sym_enum, - ACTIONS(4620), 1, + ACTIONS(4624), 1, anon_sym_STAR, - ACTIONS(4622), 1, + ACTIONS(4626), 1, anon_sym_default, - ACTIONS(4624), 1, + ACTIONS(4628), 1, anon_sym_type, - ACTIONS(4626), 1, + ACTIONS(4630), 1, anon_sym_EQ, - ACTIONS(4628), 1, + ACTIONS(4632), 1, anon_sym_as, - ACTIONS(4630), 1, + ACTIONS(4634), 1, anon_sym_COMMA, - ACTIONS(4638), 1, + ACTIONS(4642), 1, anon_sym_module, - ACTIONS(4646), 1, + ACTIONS(4650), 1, anon_sym_RBRACE, - STATE(2394), 1, + STATE(2246), 1, sym_comment, - STATE(5109), 1, - sym_internal_module, - STATE(5110), 1, - sym_declaration, - STATE(5142), 1, + STATE(4885), 1, aux_sym_export_statement_repeat1, - STATE(5608), 1, + STATE(4986), 1, + sym_declaration, + STATE(4993), 1, + sym_internal_module, + STATE(5565), 1, sym_export_clause, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6276), 1, + STATE(5732), 1, aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - STATE(7061), 1, + STATE(6878), 1, sym_namespace_export, - ACTIONS(4636), 7, + ACTIONS(4640), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -253321,7 +240903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5108), 13, + STATE(5000), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -253368,41 +240950,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(3053), 1, anon_sym_enum, - ACTIONS(4620), 1, + ACTIONS(4624), 1, anon_sym_STAR, - ACTIONS(4622), 1, + ACTIONS(4626), 1, anon_sym_default, - ACTIONS(4624), 1, + ACTIONS(4628), 1, anon_sym_type, - ACTIONS(4626), 1, + ACTIONS(4630), 1, anon_sym_EQ, - ACTIONS(4628), 1, + ACTIONS(4632), 1, anon_sym_as, - ACTIONS(4630), 1, + ACTIONS(4634), 1, anon_sym_COMMA, - ACTIONS(4638), 1, + ACTIONS(4642), 1, anon_sym_module, - ACTIONS(4649), 1, + ACTIONS(4653), 1, anon_sym_RBRACE, - STATE(2395), 1, + STATE(2247), 1, sym_comment, - STATE(5109), 1, - sym_internal_module, - STATE(5110), 1, - sym_declaration, - STATE(5142), 1, + STATE(4885), 1, aux_sym_export_statement_repeat1, - STATE(5608), 1, + STATE(4986), 1, + sym_declaration, + STATE(4993), 1, + sym_internal_module, + STATE(5565), 1, sym_export_clause, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - STATE(7061), 1, + STATE(5839), 1, + aux_sym_object_repeat1, + STATE(6878), 1, sym_namespace_export, - ACTIONS(4636), 7, + ACTIONS(4640), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -253410,7 +240992,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5108), 13, + STATE(5000), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -253433,69 +241015,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, + ACTIONS(4656), 1, anon_sym_STAR, - ACTIONS(4654), 1, + ACTIONS(4658), 1, anon_sym_RBRACE, - ACTIONS(4656), 1, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - STATE(2396), 1, + STATE(2248), 1, sym_comment, - STATE(2424), 1, + STATE(2254), 1, aux_sym_class_body_repeat1, - STATE(3535), 1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -253518,69 +241100,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4674), 1, + ACTIONS(4678), 1, anon_sym_RBRACE, - STATE(2397), 1, + STATE(2249), 1, sym_comment, - STATE(2406), 1, + STATE(2265), 1, aux_sym_class_body_repeat1, - STATE(3535), 1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -253603,69 +241185,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, - anon_sym_abstract, + anon_sym_declare, ACTIONS(4676), 1, + anon_sym_abstract, + ACTIONS(4680), 1, anon_sym_RBRACE, - STATE(2398), 1, + STATE(2250), 1, sym_comment, - STATE(2425), 1, + STATE(2254), 1, aux_sym_class_body_repeat1, - STATE(3535), 1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -253694,59 +241276,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(3973), 1, + ACTIONS(3977), 1, anon_sym_LBRACE, - ACTIONS(4680), 1, + ACTIONS(4684), 1, anon_sym_RBRACE, - ACTIONS(4682), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(4684), 1, + ACTIONS(4688), 1, anon_sym_async, - ACTIONS(4686), 1, + ACTIONS(4690), 1, anon_sym_static, - ACTIONS(4688), 1, + ACTIONS(4692), 1, anon_sym_readonly, - ACTIONS(4694), 1, + ACTIONS(4698), 1, anon_sym_override, - STATE(2399), 1, + STATE(2251), 1, sym_comment, - STATE(3744), 1, + STATE(3593), 1, sym_accessibility_modifier, - STATE(3771), 1, + STATE(3621), 1, sym_override_modifier, - STATE(4551), 1, + STATE(4441), 1, sym__property_name, - STATE(6379), 1, + STATE(5632), 1, aux_sym_object_pattern_repeat1, - STATE(6384), 1, + STATE(5649), 1, aux_sym_object_repeat1, - STATE(7382), 1, + STATE(7199), 1, sym__destructuring_pattern, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(4690), 2, + ACTIONS(4694), 2, anon_sym_get, anon_sym_set, - STATE(4344), 2, + STATE(4286), 2, sym_object_pattern, sym_array_pattern, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4692), 3, + ACTIONS(4696), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6388), 3, + STATE(5630), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(6391), 3, + STATE(5631), 3, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(4678), 14, + ACTIONS(4682), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -253770,69 +241352,154 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, + anon_sym_readonly, + ACTIONS(4672), 1, anon_sym_declare, + ACTIONS(4676), 1, + anon_sym_abstract, + ACTIONS(4700), 1, + anon_sym_RBRACE, + STATE(2252), 1, + sym_comment, + STATE(2253), 1, + aux_sym_class_body_repeat1, + STATE(3368), 1, + aux_sym_export_statement_repeat1, + STATE(3515), 1, + sym_method_definition, + STATE(3533), 1, + sym_class_static_block, + STATE(3542), 1, + sym_accessibility_modifier, + STATE(3627), 1, + sym_override_modifier, + STATE(3652), 1, + sym_decorator, + STATE(3898), 1, + sym__property_name, + STATE(5528), 1, + sym_method_signature, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4670), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4674), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5785), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4496), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [29668] = 32, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4506), 1, + anon_sym_LBRACK, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, + anon_sym_SEMI, + ACTIONS(4662), 1, + anon_sym_async, + ACTIONS(4664), 1, + anon_sym_AT, + ACTIONS(4666), 1, + anon_sym_static, + ACTIONS(4668), 1, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4696), 1, + ACTIONS(4702), 1, anon_sym_RBRACE, - STATE(2400), 1, + STATE(2253), 1, sym_comment, - STATE(2401), 1, + STATE(2254), 1, aux_sym_class_body_repeat1, - STATE(3535), 1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -253846,77 +241513,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29668] = 31, + [29785] = 31, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4701), 1, + ACTIONS(4707), 1, anon_sym_STAR, - ACTIONS(4704), 1, + ACTIONS(4710), 1, anon_sym_RBRACE, - ACTIONS(4706), 1, + ACTIONS(4712), 1, anon_sym_SEMI, - ACTIONS(4709), 1, + ACTIONS(4715), 1, anon_sym_LBRACK, - ACTIONS(4712), 1, + ACTIONS(4718), 1, anon_sym_DQUOTE, - ACTIONS(4715), 1, + ACTIONS(4721), 1, anon_sym_SQUOTE, - ACTIONS(4718), 1, + ACTIONS(4724), 1, anon_sym_async, - ACTIONS(4727), 1, + ACTIONS(4733), 1, anon_sym_AT, - ACTIONS(4730), 1, + ACTIONS(4736), 1, anon_sym_static, - ACTIONS(4733), 1, - anon_sym_readonly, ACTIONS(4739), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4745), 1, + anon_sym_declare, + ACTIONS(4751), 1, anon_sym_override, - ACTIONS(4748), 1, + ACTIONS(4754), 1, anon_sym_abstract, - STATE(3535), 1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(4721), 2, + ACTIONS(4727), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4724), 2, + ACTIONS(4730), 2, sym_number, sym_private_property_identifier, - ACTIONS(4736), 2, + ACTIONS(4742), 2, anon_sym_get, anon_sym_set, - STATE(2401), 2, + STATE(2254), 2, sym_comment, aux_sym_class_body_repeat1, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4742), 3, + ACTIONS(4748), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4698), 13, + ACTIONS(4704), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -253930,7 +241597,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29783] = 32, + [29900] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -253939,69 +241606,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4751), 1, + ACTIONS(4757), 1, anon_sym_RBRACE, - STATE(2402), 1, - sym_comment, - STATE(2428), 1, + STATE(2254), 1, aux_sym_class_body_repeat1, - STATE(3535), 1, + STATE(2255), 1, + sym_comment, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -254015,7 +241682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [29900] = 32, + [30017] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -254024,69 +241691,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4753), 1, + ACTIONS(4759), 1, anon_sym_RBRACE, - STATE(2401), 1, + STATE(2250), 1, aux_sym_class_body_repeat1, - STATE(2403), 1, + STATE(2256), 1, sym_comment, - STATE(3535), 1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -254100,81 +241767,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30017] = 29, + [30134] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(223), 1, - anon_sym_STAR, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(241), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3973), 1, - anon_sym_LBRACE, - ACTIONS(4682), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4757), 1, - anon_sym_RBRACE, - ACTIONS(4759), 1, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, + anon_sym_SEMI, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4761), 1, + ACTIONS(4664), 1, + anon_sym_AT, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4763), 1, + ACTIONS(4668), 1, anon_sym_readonly, - ACTIONS(4769), 1, - anon_sym_override, - STATE(2404), 1, + ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, + anon_sym_abstract, + ACTIONS(4761), 1, + anon_sym_RBRACE, + STATE(2254), 1, + aux_sym_class_body_repeat1, + STATE(2257), 1, sym_comment, - STATE(3744), 1, + STATE(3368), 1, + aux_sym_export_statement_repeat1, + STATE(3515), 1, + sym_method_definition, + STATE(3533), 1, + sym_class_static_block, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3771), 1, + STATE(3627), 1, sym_override_modifier, - STATE(4551), 1, + STATE(3652), 1, + sym_decorator, + STATE(3898), 1, sym__property_name, - STATE(6379), 1, - aux_sym_object_pattern_repeat1, - STATE(6384), 1, - aux_sym_object_repeat1, - STATE(7382), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, + STATE(5528), 1, + sym_method_signature, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4765), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4344), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4767), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6388), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(6391), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(4755), 14, + STATE(5785), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -254182,7 +241852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30128] = 32, + [30251] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -254191,69 +241861,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4771), 1, + ACTIONS(4763), 1, anon_sym_RBRACE, - STATE(2405), 1, + STATE(2258), 1, sym_comment, - STATE(2416), 1, + STATE(2261), 1, aux_sym_class_body_repeat1, - STATE(3535), 1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -254267,7 +241937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30245] = 32, + [30368] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -254276,75 +241946,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4773), 1, + ACTIONS(4765), 1, anon_sym_RBRACE, - STATE(2401), 1, - aux_sym_class_body_repeat1, - STATE(2406), 1, + STATE(2259), 1, sym_comment, - STATE(3535), 1, + STATE(2266), 1, + aux_sym_class_body_repeat1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [30485] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(223), 1, + anon_sym_STAR, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(241), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(4769), 1, + anon_sym_RBRACE, + ACTIONS(4771), 1, + anon_sym_async, + ACTIONS(4773), 1, + anon_sym_static, + ACTIONS(4775), 1, + anon_sym_readonly, + ACTIONS(4781), 1, + anon_sym_override, + STATE(2260), 1, + sym_comment, + STATE(3593), 1, + sym_accessibility_modifier, + STATE(3621), 1, + sym_override_modifier, + STATE(4441), 1, + sym__property_name, + STATE(5632), 1, + aux_sym_object_pattern_repeat1, + STATE(5712), 1, + aux_sym_object_repeat1, + STATE(7199), 1, + sym__destructuring_pattern, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4777), 2, + anon_sym_get, + anon_sym_set, + STATE(4286), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4779), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5630), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5708), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4767), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -254352,7 +242104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30362] = 32, + [30596] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -254361,75 +242113,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4775), 1, + ACTIONS(4783), 1, anon_sym_RBRACE, - STATE(2401), 1, + STATE(2254), 1, aux_sym_class_body_repeat1, - STATE(2407), 1, + STATE(2261), 1, sym_comment, - STATE(3535), 1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [30713] = 29, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(223), 1, + anon_sym_STAR, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(241), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(4787), 1, + anon_sym_RBRACE, + ACTIONS(4789), 1, + anon_sym_async, + ACTIONS(4791), 1, + anon_sym_static, + ACTIONS(4793), 1, + anon_sym_readonly, + ACTIONS(4799), 1, + anon_sym_override, + STATE(2262), 1, + sym_comment, + STATE(3593), 1, + sym_accessibility_modifier, + STATE(3621), 1, + sym_override_modifier, + STATE(4441), 1, + sym__property_name, + STATE(5632), 1, + aux_sym_object_pattern_repeat1, + STATE(5712), 1, + aux_sym_object_repeat1, + STATE(7199), 1, + sym__destructuring_pattern, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4795), 2, + anon_sym_get, + anon_sym_set, + STATE(4286), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4797), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5630), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5708), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4785), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -254437,7 +242271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30479] = 32, + [30824] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -254446,69 +242280,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4777), 1, + ACTIONS(4801), 1, anon_sym_RBRACE, - STATE(2401), 1, - aux_sym_class_body_repeat1, - STATE(2408), 1, + STATE(2263), 1, sym_comment, - STATE(3535), 1, + STATE(2264), 1, + aux_sym_class_body_repeat1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -254522,7 +242356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30596] = 32, + [30941] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -254531,69 +242365,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4779), 1, + ACTIONS(4803), 1, anon_sym_RBRACE, - STATE(2408), 1, + STATE(2254), 1, aux_sym_class_body_repeat1, - STATE(2409), 1, + STATE(2264), 1, sym_comment, - STATE(3535), 1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -254607,7 +242441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30713] = 32, + [31058] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -254616,69 +242450,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4781), 1, + ACTIONS(4805), 1, anon_sym_RBRACE, - STATE(2410), 1, - sym_comment, - STATE(2426), 1, + STATE(2254), 1, aux_sym_class_body_repeat1, - STATE(3535), 1, + STATE(2265), 1, + sym_comment, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -254692,81 +242526,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30830] = 29, + [31175] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(223), 1, - anon_sym_STAR, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(241), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3973), 1, - anon_sym_LBRACE, - ACTIONS(4682), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4785), 1, - anon_sym_RBRACE, - ACTIONS(4787), 1, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, + anon_sym_SEMI, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4789), 1, + ACTIONS(4664), 1, + anon_sym_AT, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4791), 1, + ACTIONS(4668), 1, anon_sym_readonly, - ACTIONS(4797), 1, - anon_sym_override, - STATE(2411), 1, + ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, + anon_sym_abstract, + ACTIONS(4807), 1, + anon_sym_RBRACE, + STATE(2254), 1, + aux_sym_class_body_repeat1, + STATE(2266), 1, sym_comment, - STATE(3744), 1, + STATE(3368), 1, + aux_sym_export_statement_repeat1, + STATE(3515), 1, + sym_method_definition, + STATE(3533), 1, + sym_class_static_block, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3771), 1, + STATE(3627), 1, sym_override_modifier, - STATE(4551), 1, + STATE(3652), 1, + sym_decorator, + STATE(3898), 1, sym__property_name, - STATE(6347), 1, - aux_sym_object_repeat1, - STATE(6379), 1, - aux_sym_object_pattern_repeat1, - STATE(7382), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, + STATE(5528), 1, + sym_method_signature, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4793), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4344), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4795), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6380), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(6388), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(4783), 14, + STATE(5785), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -254774,81 +242611,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [30941] = 29, + [31292] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(223), 1, - anon_sym_STAR, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(241), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(3973), 1, - anon_sym_LBRACE, - ACTIONS(4682), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4801), 1, - anon_sym_RBRACE, - ACTIONS(4803), 1, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, + anon_sym_SEMI, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4805), 1, + ACTIONS(4664), 1, + anon_sym_AT, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4807), 1, + ACTIONS(4668), 1, anon_sym_readonly, - ACTIONS(4813), 1, - anon_sym_override, - STATE(2412), 1, + ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, + anon_sym_abstract, + ACTIONS(4809), 1, + anon_sym_RBRACE, + STATE(2257), 1, + aux_sym_class_body_repeat1, + STATE(2267), 1, sym_comment, - STATE(3744), 1, + STATE(3368), 1, + aux_sym_export_statement_repeat1, + STATE(3515), 1, + sym_method_definition, + STATE(3533), 1, + sym_class_static_block, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3771), 1, + STATE(3627), 1, sym_override_modifier, - STATE(4551), 1, + STATE(3652), 1, + sym_decorator, + STATE(3898), 1, sym__property_name, - STATE(6347), 1, - aux_sym_object_repeat1, - STATE(6379), 1, - aux_sym_object_pattern_repeat1, - STATE(7382), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, + STATE(5528), 1, + sym_method_signature, + ACTIONS(3993), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4809), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4344), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4811), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6380), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(6388), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(4799), 14, + STATE(5785), 3, + sym_public_field_definition, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -254856,7 +242696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31052] = 32, + [31409] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -254865,69 +242705,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4815), 1, + ACTIONS(4811), 1, anon_sym_RBRACE, - STATE(2403), 1, - aux_sym_class_body_repeat1, - STATE(2413), 1, + STATE(2268), 1, sym_comment, - STATE(3535), 1, + STATE(2274), 1, + aux_sym_class_body_repeat1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -254941,7 +242781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31169] = 32, + [31526] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -254950,69 +242790,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4817), 1, + ACTIONS(4813), 1, anon_sym_RBRACE, - STATE(2400), 1, - aux_sym_class_body_repeat1, - STATE(2414), 1, + STATE(2269), 1, sym_comment, - STATE(3535), 1, + STATE(2271), 1, + aux_sym_class_body_repeat1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -255026,7 +242866,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31286] = 29, + [31643] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -255041,59 +242881,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(3973), 1, + ACTIONS(3977), 1, anon_sym_LBRACE, - ACTIONS(4682), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(4821), 1, + ACTIONS(4817), 1, anon_sym_RBRACE, - ACTIONS(4823), 1, + ACTIONS(4819), 1, anon_sym_async, - ACTIONS(4825), 1, + ACTIONS(4821), 1, anon_sym_static, - ACTIONS(4827), 1, + ACTIONS(4823), 1, anon_sym_readonly, - ACTIONS(4833), 1, + ACTIONS(4829), 1, anon_sym_override, - STATE(2415), 1, + STATE(2270), 1, sym_comment, - STATE(3744), 1, + STATE(3593), 1, sym_accessibility_modifier, - STATE(3771), 1, + STATE(3621), 1, sym_override_modifier, - STATE(4551), 1, + STATE(4441), 1, sym__property_name, - STATE(6379), 1, + STATE(5632), 1, aux_sym_object_pattern_repeat1, - STATE(6384), 1, + STATE(5712), 1, aux_sym_object_repeat1, - STATE(7382), 1, + STATE(7199), 1, sym__destructuring_pattern, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(4829), 2, + ACTIONS(4825), 2, anon_sym_get, anon_sym_set, - STATE(4344), 2, + STATE(4286), 2, sym_object_pattern, sym_array_pattern, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4831), 3, + ACTIONS(4827), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6388), 3, + STATE(5630), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(6391), 3, + STATE(5708), 3, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(4819), 14, + ACTIONS(4815), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -255108,7 +242948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31397] = 32, + [31754] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -255117,69 +242957,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4835), 1, + ACTIONS(4831), 1, anon_sym_RBRACE, - STATE(2401), 1, + STATE(2254), 1, aux_sym_class_body_repeat1, - STATE(2416), 1, + STATE(2271), 1, sym_comment, - STATE(3535), 1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -255193,7 +243033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31514] = 32, + [31871] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -255202,154 +243042,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, - anon_sym_SEMI, - ACTIONS(4658), 1, - anon_sym_async, - ACTIONS(4660), 1, - anon_sym_AT, - ACTIONS(4662), 1, - anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, - ACTIONS(4668), 1, - anon_sym_declare, - ACTIONS(4672), 1, - anon_sym_abstract, - ACTIONS(4837), 1, - anon_sym_RBRACE, - STATE(2417), 1, - sym_comment, - STATE(2418), 1, - aux_sym_class_body_repeat1, - STATE(3535), 1, - aux_sym_export_statement_repeat1, - STATE(3646), 1, - sym_method_definition, - STATE(3680), 1, - sym_class_static_block, - STATE(3699), 1, - sym_accessibility_modifier, - STATE(3773), 1, - sym_override_modifier, - STATE(3812), 1, - sym_decorator, - STATE(4053), 1, - sym__property_name, - STATE(5626), 1, - sym_method_signature, - ACTIONS(3989), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4666), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6200), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4492), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [31631] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4502), 1, - anon_sym_LBRACK, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4652), 1, anon_sym_STAR, - ACTIONS(4656), 1, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4839), 1, + ACTIONS(4833), 1, anon_sym_RBRACE, - STATE(2401), 1, + STATE(2254), 1, aux_sym_class_body_repeat1, - STATE(2418), 1, + STATE(2272), 1, sym_comment, - STATE(3535), 1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -255363,7 +243118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31748] = 32, + [31988] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -255372,69 +243127,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4841), 1, + ACTIONS(4835), 1, anon_sym_RBRACE, - STATE(2401), 1, + STATE(2248), 1, aux_sym_class_body_repeat1, - STATE(2419), 1, + STATE(2273), 1, sym_comment, - STATE(3535), 1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -255448,7 +243203,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31865] = 32, + [32105] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -255457,69 +243212,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4843), 1, + ACTIONS(4837), 1, anon_sym_RBRACE, - STATE(2420), 1, - sym_comment, - STATE(2431), 1, + STATE(2254), 1, aux_sym_class_body_repeat1, - STATE(3535), 1, + STATE(2274), 1, + sym_comment, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -255533,7 +243288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [31982] = 29, + [32222] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -255548,59 +243303,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(3973), 1, + ACTIONS(3977), 1, anon_sym_LBRACE, - ACTIONS(4682), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(4847), 1, + ACTIONS(4841), 1, anon_sym_RBRACE, - ACTIONS(4849), 1, + ACTIONS(4843), 1, anon_sym_async, - ACTIONS(4851), 1, + ACTIONS(4845), 1, anon_sym_static, - ACTIONS(4853), 1, + ACTIONS(4847), 1, anon_sym_readonly, - ACTIONS(4859), 1, + ACTIONS(4853), 1, anon_sym_override, - STATE(2421), 1, + STATE(2275), 1, sym_comment, - STATE(3744), 1, + STATE(3593), 1, sym_accessibility_modifier, - STATE(3771), 1, + STATE(3621), 1, sym_override_modifier, - STATE(4551), 1, + STATE(4441), 1, sym__property_name, - STATE(6379), 1, + STATE(5632), 1, aux_sym_object_pattern_repeat1, - STATE(6384), 1, + STATE(5649), 1, aux_sym_object_repeat1, - STATE(7382), 1, + STATE(7199), 1, sym__destructuring_pattern, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(4855), 2, + ACTIONS(4849), 2, anon_sym_get, anon_sym_set, - STATE(4344), 2, + STATE(4286), 2, sym_object_pattern, sym_array_pattern, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4857), 3, + ACTIONS(4851), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6388), 3, + STATE(5630), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(6391), 3, + STATE(5631), 3, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(4845), 14, + ACTIONS(4839), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -255615,7 +243370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32093] = 32, + [32333] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -255624,69 +243379,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4861), 1, + ACTIONS(4855), 1, anon_sym_RBRACE, - STATE(2401), 1, + STATE(2254), 1, aux_sym_class_body_repeat1, - STATE(2422), 1, + STATE(2276), 1, sym_comment, - STATE(3535), 1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -255700,7 +243455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32210] = 32, + [32450] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -255709,69 +243464,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4863), 1, + ACTIONS(4857), 1, anon_sym_RBRACE, - STATE(2422), 1, + STATE(2272), 1, aux_sym_class_body_repeat1, - STATE(2423), 1, + STATE(2277), 1, sym_comment, - STATE(3535), 1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -255785,7 +243540,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32327] = 32, + [32567] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -255794,69 +243549,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4865), 1, + ACTIONS(4859), 1, anon_sym_RBRACE, - STATE(2401), 1, - aux_sym_class_body_repeat1, - STATE(2424), 1, + STATE(2278), 1, sym_comment, - STATE(3535), 1, + STATE(2282), 1, + aux_sym_class_body_repeat1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -255870,7 +243625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32444] = 32, + [32684] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -255879,69 +243634,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4867), 1, + ACTIONS(4861), 1, anon_sym_RBRACE, - STATE(2401), 1, + STATE(2254), 1, aux_sym_class_body_repeat1, - STATE(2425), 1, + STATE(2279), 1, sym_comment, - STATE(3535), 1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -255955,7 +243710,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32561] = 32, + [32801] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -255964,69 +243719,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4869), 1, + ACTIONS(4863), 1, anon_sym_RBRACE, - STATE(2401), 1, - aux_sym_class_body_repeat1, - STATE(2426), 1, + STATE(2280), 1, sym_comment, - STATE(3535), 1, + STATE(2287), 1, + aux_sym_class_body_repeat1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -256040,7 +243795,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32678] = 32, + [32918] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -256049,69 +243804,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4871), 1, + ACTIONS(4865), 1, anon_sym_RBRACE, - STATE(2427), 1, - sym_comment, - STATE(2430), 1, + STATE(2276), 1, aux_sym_class_body_repeat1, - STATE(3535), 1, + STATE(2281), 1, + sym_comment, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -256125,7 +243880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32795] = 32, + [33035] = 32, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -256134,69 +243889,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4873), 1, + ACTIONS(4867), 1, anon_sym_RBRACE, - STATE(2401), 1, + STATE(2254), 1, aux_sym_class_body_repeat1, - STATE(2428), 1, + STATE(2282), 1, sym_comment, - STATE(3535), 1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -256210,7 +243965,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [32912] = 29, + [33152] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -256225,59 +243980,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(3973), 1, + ACTIONS(3977), 1, anon_sym_LBRACE, - ACTIONS(4682), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(4877), 1, + ACTIONS(4871), 1, anon_sym_RBRACE, - ACTIONS(4879), 1, + ACTIONS(4873), 1, anon_sym_async, - ACTIONS(4881), 1, + ACTIONS(4875), 1, anon_sym_static, - ACTIONS(4883), 1, + ACTIONS(4877), 1, anon_sym_readonly, - ACTIONS(4889), 1, + ACTIONS(4883), 1, anon_sym_override, - STATE(2429), 1, + STATE(2283), 1, sym_comment, - STATE(3744), 1, + STATE(3593), 1, sym_accessibility_modifier, - STATE(3771), 1, + STATE(3621), 1, sym_override_modifier, - STATE(4551), 1, + STATE(4441), 1, sym__property_name, - STATE(6379), 1, + STATE(5632), 1, aux_sym_object_pattern_repeat1, - STATE(6384), 1, + STATE(5712), 1, aux_sym_object_repeat1, - STATE(7382), 1, + STATE(7199), 1, sym__destructuring_pattern, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(4885), 2, + ACTIONS(4879), 2, anon_sym_get, anon_sym_set, - STATE(4344), 2, + STATE(4286), 2, sym_object_pattern, sym_array_pattern, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4887), 3, + ACTIONS(4881), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6388), 3, + STATE(5630), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(6391), 3, + STATE(5708), 3, sym_spread_element, sym_method_definition, sym_pair, - ACTIONS(4875), 14, + ACTIONS(4869), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -256292,254 +244047,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [33023] = 32, + [33263] = 29, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4502), 1, - anon_sym_LBRACK, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4652), 1, + ACTIONS(223), 1, anon_sym_STAR, - ACTIONS(4656), 1, - anon_sym_SEMI, - ACTIONS(4658), 1, - anon_sym_async, - ACTIONS(4660), 1, - anon_sym_AT, - ACTIONS(4662), 1, - anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, - ACTIONS(4668), 1, - anon_sym_declare, - ACTIONS(4672), 1, - anon_sym_abstract, - ACTIONS(4891), 1, - anon_sym_RBRACE, - STATE(2401), 1, - aux_sym_class_body_repeat1, - STATE(2430), 1, - sym_comment, - STATE(3535), 1, - aux_sym_export_statement_repeat1, - STATE(3646), 1, - sym_method_definition, - STATE(3680), 1, - sym_class_static_block, - STATE(3699), 1, - sym_accessibility_modifier, - STATE(3773), 1, - sym_override_modifier, - STATE(3812), 1, - sym_decorator, - STATE(4053), 1, - sym__property_name, - STATE(5626), 1, - sym_method_signature, - ACTIONS(3989), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4666), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6200), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4492), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [33140] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(241), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(4686), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, - ACTIONS(4656), 1, - anon_sym_SEMI, - ACTIONS(4658), 1, - anon_sym_async, - ACTIONS(4660), 1, - anon_sym_AT, - ACTIONS(4662), 1, - anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, - ACTIONS(4668), 1, - anon_sym_declare, - ACTIONS(4672), 1, - anon_sym_abstract, - ACTIONS(4893), 1, + ACTIONS(4887), 1, anon_sym_RBRACE, - STATE(2401), 1, - aux_sym_class_body_repeat1, - STATE(2431), 1, - sym_comment, - STATE(3535), 1, - aux_sym_export_statement_repeat1, - STATE(3646), 1, - sym_method_definition, - STATE(3680), 1, - sym_class_static_block, - STATE(3699), 1, - sym_accessibility_modifier, - STATE(3773), 1, - sym_override_modifier, - STATE(3812), 1, - sym_decorator, - STATE(4053), 1, - sym__property_name, - STATE(5626), 1, - sym_method_signature, - ACTIONS(3989), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4666), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6200), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4492), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [33257] = 32, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4502), 1, - anon_sym_LBRACK, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, - ACTIONS(4656), 1, - anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4889), 1, anon_sym_async, - ACTIONS(4660), 1, - anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4891), 1, anon_sym_static, - ACTIONS(4664), 1, + ACTIONS(4893), 1, anon_sym_readonly, - ACTIONS(4668), 1, - anon_sym_declare, - ACTIONS(4672), 1, - anon_sym_abstract, - ACTIONS(4895), 1, - anon_sym_RBRACE, - STATE(2407), 1, - aux_sym_class_body_repeat1, - STATE(2432), 1, + ACTIONS(4899), 1, + anon_sym_override, + STATE(2284), 1, sym_comment, - STATE(3535), 1, - aux_sym_export_statement_repeat1, - STATE(3646), 1, - sym_method_definition, - STATE(3680), 1, - sym_class_static_block, - STATE(3699), 1, + STATE(3593), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3621), 1, sym_override_modifier, - STATE(3812), 1, - sym_decorator, - STATE(4053), 1, + STATE(4441), 1, sym__property_name, - STATE(5626), 1, - sym_method_signature, - ACTIONS(3989), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3991), 2, + STATE(5632), 1, + aux_sym_object_pattern_repeat1, + STATE(5712), 1, + aux_sym_object_repeat1, + STATE(7199), 1, + sym__destructuring_pattern, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4895), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4286), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4897), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, - sym_public_field_definition, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4492), 13, + STATE(5630), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5708), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(4885), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, anon_sym_new, sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, @@ -256556,69 +244138,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4897), 1, + ACTIONS(4901), 1, anon_sym_RBRACE, - STATE(2419), 1, + STATE(2279), 1, aux_sym_class_body_repeat1, - STATE(2433), 1, + STATE(2285), 1, sym_comment, - STATE(3535), 1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -256641,69 +244223,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4899), 1, + ACTIONS(4903), 1, anon_sym_RBRACE, - STATE(2434), 1, - sym_comment, - STATE(2435), 1, + STATE(2255), 1, aux_sym_class_body_repeat1, - STATE(3535), 1, + STATE(2286), 1, + sym_comment, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -256726,69 +244308,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4502), 1, + ACTIONS(4506), 1, anon_sym_LBRACK, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4652), 1, - anon_sym_STAR, ACTIONS(4656), 1, + anon_sym_STAR, + ACTIONS(4660), 1, anon_sym_SEMI, - ACTIONS(4658), 1, + ACTIONS(4662), 1, anon_sym_async, - ACTIONS(4660), 1, + ACTIONS(4664), 1, anon_sym_AT, - ACTIONS(4662), 1, + ACTIONS(4666), 1, anon_sym_static, - ACTIONS(4664), 1, - anon_sym_readonly, ACTIONS(4668), 1, - anon_sym_declare, + anon_sym_readonly, ACTIONS(4672), 1, + anon_sym_declare, + ACTIONS(4676), 1, anon_sym_abstract, - ACTIONS(4901), 1, + ACTIONS(4905), 1, anon_sym_RBRACE, - STATE(2401), 1, + STATE(2254), 1, aux_sym_class_body_repeat1, - STATE(2435), 1, + STATE(2287), 1, sym_comment, - STATE(3535), 1, + STATE(3368), 1, aux_sym_export_statement_repeat1, - STATE(3646), 1, + STATE(3515), 1, sym_method_definition, - STATE(3680), 1, + STATE(3533), 1, sym_class_static_block, - STATE(3699), 1, + STATE(3542), 1, sym_accessibility_modifier, - STATE(3773), 1, + STATE(3627), 1, sym_override_modifier, - STATE(3812), 1, + STATE(3652), 1, sym_decorator, - STATE(4053), 1, + STATE(3898), 1, sym__property_name, - STATE(5626), 1, + STATE(5528), 1, sym_method_signature, - ACTIONS(3989), 2, + ACTIONS(3993), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(4666), 2, + ACTIONS(4670), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4670), 3, + ACTIONS(4674), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6200), 3, + STATE(5785), 3, sym_public_field_definition, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4492), 13, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -256807,9 +244389,9 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2436), 1, + STATE(2288), 1, sym_comment, - ACTIONS(2160), 14, + ACTIONS(2250), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256824,7 +244406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(2162), 34, + ACTIONS(2252), 34, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -256859,7 +244441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_PIPE_RBRACE, - [33787] = 31, + [33787] = 32, ACTIONS(5), 1, sym_html_comment, ACTIONS(2754), 1, @@ -256892,43 +244474,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(3053), 1, anon_sym_enum, - ACTIONS(4620), 1, + ACTIONS(4624), 1, anon_sym_STAR, - ACTIONS(4622), 1, + ACTIONS(4626), 1, anon_sym_default, - ACTIONS(4624), 1, - anon_sym_type, ACTIONS(4628), 1, + anon_sym_type, + ACTIONS(4630), 1, + anon_sym_EQ, + ACTIONS(4632), 1, anon_sym_as, - ACTIONS(4638), 1, + ACTIONS(4642), 1, anon_sym_module, - ACTIONS(4903), 1, - anon_sym_EQ, - STATE(2437), 1, + STATE(2289), 1, sym_comment, - STATE(5109), 1, - sym_internal_module, - STATE(5110), 1, - sym_declaration, - STATE(5142), 1, + STATE(4885), 1, aux_sym_export_statement_repeat1, - STATE(5608), 1, + STATE(4986), 1, + sym_declaration, + STATE(4993), 1, + sym_internal_module, + STATE(5565), 1, sym_export_clause, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(7061), 1, + STATE(6878), 1, sym_namespace_export, - ACTIONS(4636), 9, - sym__automatic_semicolon, + ACTIONS(4907), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(4640), 7, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5108), 13, + STATE(5000), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -256942,64 +244525,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [33901] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2438), 1, - sym_comment, - ACTIONS(2216), 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(2218), 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, - [33963] = 32, + [33903] = 31, ACTIONS(5), 1, sym_html_comment, ACTIONS(2754), 1, @@ -257032,44 +244558,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(3053), 1, anon_sym_enum, - ACTIONS(4620), 1, - anon_sym_STAR, - ACTIONS(4622), 1, - anon_sym_default, ACTIONS(4624), 1, - anon_sym_type, + anon_sym_STAR, ACTIONS(4626), 1, - anon_sym_EQ, + anon_sym_default, ACTIONS(4628), 1, + anon_sym_type, + ACTIONS(4632), 1, anon_sym_as, - ACTIONS(4638), 1, + ACTIONS(4642), 1, anon_sym_module, - STATE(2439), 1, + ACTIONS(4911), 1, + anon_sym_EQ, + STATE(2290), 1, sym_comment, - STATE(5109), 1, - sym_internal_module, - STATE(5110), 1, - sym_declaration, - STATE(5142), 1, + STATE(4885), 1, aux_sym_export_statement_repeat1, - STATE(5608), 1, + STATE(4986), 1, + sym_declaration, + STATE(4993), 1, + sym_internal_module, + STATE(5565), 1, sym_export_clause, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(7061), 1, + STATE(6878), 1, sym_namespace_export, - ACTIONS(4905), 2, + ACTIONS(4640), 9, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4636), 7, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(5108), 13, + STATE(5000), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -257083,30 +244608,79 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [34079] = 13, + [34017] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + STATE(2291), 1, + sym_comment, + ACTIONS(2260), 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(2262), 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, - ACTIONS(4915), 1, + anon_sym_of, + anon_sym_while, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4917), 1, anon_sym_DOT, - ACTIONS(4919), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [34079] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4915), 1, + anon_sym_DOT, + ACTIONS(4917), 1, anon_sym_LT, - STATE(2440), 1, + ACTIONS(4919), 1, + anon_sym_is, + STATE(2292), 1, sym_comment, - STATE(2564), 1, + STATE(2402), 1, sym_type_arguments, - STATE(2650), 1, - sym_arguments, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(4909), 12, + ACTIONS(4913), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257119,16 +244693,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 27, + ACTIONS(4314), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_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, @@ -257146,25 +244723,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [34156] = 10, + [34148] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4921), 1, + ACTIONS(4917), 1, anon_sym_LT, + ACTIONS(4921), 1, + anon_sym_LPAREN, ACTIONS(4923), 1, anon_sym_DOT, - STATE(2441), 1, + STATE(2293), 1, sym_comment, - STATE(2538), 1, - sym_arguments, - STATE(2539), 1, + STATE(2373), 1, sym_type_arguments, - ACTIONS(4250), 12, + STATE(2374), 1, + sym_arguments, + ACTIONS(4256), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257177,7 +244755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4240), 30, + ACTIONS(4244), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257208,7 +244786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34227] = 26, + [34219] = 26, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -257221,9 +244799,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(3973), 1, + ACTIONS(3977), 1, anon_sym_LBRACE, - ACTIONS(4682), 1, + ACTIONS(4686), 1, anon_sym_LBRACK, ACTIONS(4927), 1, anon_sym_async, @@ -257233,40 +244811,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(4937), 1, anon_sym_override, - STATE(2442), 1, + STATE(2294), 1, sym_comment, - STATE(3744), 1, + STATE(3593), 1, sym_accessibility_modifier, - STATE(3771), 1, + STATE(3621), 1, sym_override_modifier, - STATE(4551), 1, + STATE(4441), 1, sym__property_name, - STATE(7382), 1, + STATE(7199), 1, sym__destructuring_pattern, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(4153), 2, + ACTIONS(4157), 2, anon_sym_COMMA, anon_sym_RBRACE, ACTIONS(4933), 2, anon_sym_get, anon_sym_set, - STATE(4344), 2, + STATE(4286), 2, sym_object_pattern, sym_array_pattern, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(4935), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(6695), 3, + STATE(6537), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(6696), 3, + STATE(6538), 3, sym_spread_element, sym_method_definition, sym_pair, @@ -257285,23 +244863,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [34330] = 10, + [34322] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4921), 1, + ACTIONS(4917), 1, anon_sym_LT, + ACTIONS(4921), 1, + anon_sym_LPAREN, ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, anon_sym_DOT, - STATE(2443), 1, + ACTIONS(4947), 1, + anon_sym_QMARK_DOT, + STATE(2295), 1, sym_comment, - STATE(2525), 1, + STATE(2418), 1, sym_type_arguments, - STATE(2527), 1, + STATE(2574), 1, sym_arguments, + STATE(5791), 1, + sym_optional_chain, ACTIONS(4939), 12, anon_sym_STAR, anon_sym_BANG, @@ -257315,7 +244899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4941), 30, + ACTIONS(4941), 27, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257324,9 +244908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -257344,24 +244926,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [34401] = 9, + [34399] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4917), 1, anon_sym_LT, - ACTIONS(4947), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4953), 1, anon_sym_DOT, - ACTIONS(4949), 1, - anon_sym_is, - STATE(2444), 1, + STATE(2296), 1, sym_comment, - STATE(2558), 1, + STATE(2368), 1, sym_type_arguments, - ACTIONS(4945), 12, + STATE(2369), 1, + sym_arguments, + ACTIONS(4949), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257374,13 +244957,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4312), 31, + ACTIONS(4951), 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, @@ -257411,19 +244993,19 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4921), 1, + ACTIONS(4917), 1, anon_sym_LT, - ACTIONS(4955), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, anon_sym_DOT, - STATE(2445), 1, + STATE(2297), 1, sym_comment, - STATE(2511), 1, + STATE(2371), 1, sym_type_arguments, - STATE(2513), 1, + STATE(2372), 1, sym_arguments, - ACTIONS(4951), 12, + ACTIONS(4955), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257436,7 +245018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 30, + ACTIONS(4957), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257467,20 +245049,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34541] = 8, + [34541] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + STATE(2298), 1, + sym_comment, + ACTIONS(4430), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(4947), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK, + ACTIONS(4961), 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, - STATE(2446), 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, + anon_sym_extends, + anon_sym_implements, + [34601] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4967), 1, + anon_sym_is, + STATE(2299), 1, sym_comment, - STATE(2558), 1, - sym_type_arguments, - ACTIONS(4945), 12, + ACTIONS(4963), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257491,9 +245124,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4312), 31, + ACTIONS(4965), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257505,6 +245139,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -257525,20 +245160,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34607] = 8, + [34663] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4957), 1, + ACTIONS(4969), 1, anon_sym_LBRACE, - ACTIONS(4959), 1, + STATE(2300), 1, + sym_comment, + STATE(2464), 1, + sym_statement_block, + ACTIONS(2126), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2130), 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, - STATE(2447), 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, + anon_sym_PIPE_RBRACE, + [34727] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4969), 1, + anon_sym_LBRACE, + ACTIONS(4971), 1, + anon_sym_DOT, + STATE(2301), 1, sym_comment, - STATE(2671), 1, + STATE(2464), 1, sym_statement_block, - ACTIONS(2109), 13, + ACTIONS(2126), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257552,7 +245244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2113), 30, + ACTIONS(2130), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -257583,14 +245275,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_PIPE_RBRACE, - [34673] = 5, + [34793] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2448), 1, + ACTIONS(4917), 1, + anon_sym_LT, + STATE(2302), 1, + sym_comment, + STATE(2387), 1, + sym_type_arguments, + ACTIONS(4963), 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(4965), 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] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4919), 1, + anon_sym_is, + STATE(2303), 1, sym_comment, - ACTIONS(2160), 14, + ACTIONS(4973), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257604,8 +245355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(2162), 32, + ACTIONS(4975), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257638,18 +245388,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34733] = 7, + [34919] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4921), 1, + ACTIONS(4969), 1, + anon_sym_LBRACE, + ACTIONS(4977), 1, + anon_sym_DOT, + STATE(2304), 1, + sym_comment, + STATE(2464), 1, + sym_statement_block, + ACTIONS(2126), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_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(2449), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2130), 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, + [34985] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2305), 1, sym_comment, - STATE(2549), 1, - sym_type_arguments, - ACTIONS(4961), 12, + ACTIONS(2061), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257660,9 +245464,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 32, + ACTIONS(2063), 33, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257695,14 +245500,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34797] = 5, + anon_sym_is, + [35045] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2450), 1, + STATE(2306), 1, sym_comment, - ACTIONS(4446), 14, + ACTIONS(4452), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257717,7 +245523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(4965), 32, + ACTIONS(4979), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257750,14 +245556,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34857] = 5, + [35105] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2451), 1, + STATE(2307), 1, sym_comment, - ACTIONS(4452), 14, + ACTIONS(2250), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257772,7 +245578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(4967), 32, + ACTIONS(2252), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257805,18 +245611,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [34917] = 7, + [35165] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2144), 1, + ACTIONS(2146), 1, anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, + ACTIONS(4981), 1, sym__automatic_semicolon, - STATE(2452), 1, + STATE(2308), 1, sym_comment, - ACTIONS(2140), 13, + ACTIONS(2142), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257830,7 +245636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2166), 31, + ACTIONS(2222), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257862,16 +245668,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [34981] = 6, + [35229] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4949), 1, + STATE(2309), 1, + sym_comment, + ACTIONS(4983), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4985), 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, - STATE(2453), 1, + [35289] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2310), 1, sym_comment, - ACTIONS(4971), 13, + ACTIONS(4438), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257885,7 +245744,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4973), 32, + anon_sym_QMARK, + ACTIONS(4987), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257918,14 +245778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35043] = 5, + [35349] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2454), 1, + STATE(2311), 1, sym_comment, - ACTIONS(4428), 14, + ACTIONS(2260), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257940,7 +245800,343 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK, - ACTIONS(4975), 32, + ACTIONS(2262), 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, + [35409] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4915), 1, + anon_sym_DOT, + ACTIONS(4917), 1, + anon_sym_LT, + STATE(2312), 1, + sym_comment, + STATE(2402), 1, + sym_type_arguments, + ACTIONS(4913), 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(4314), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_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, + [35475] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + STATE(2313), 1, + sym_comment, + STATE(2625), 2, + sym_template_string, + sym_arguments, + ACTIONS(4989), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4991), 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, + [35541] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4919), 1, + anon_sym_is, + STATE(2314), 1, + sym_comment, + ACTIONS(4995), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4997), 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, + [35603] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4999), 1, + anon_sym_LBRACE, + STATE(2315), 1, + sym_comment, + STATE(2603), 1, + sym_statement_block, + ACTIONS(2126), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2130), 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, + [35666] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2316), 1, + sym_comment, + ACTIONS(5001), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5003), 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, + [35725] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2317), 1, + sym_comment, + ACTIONS(5005), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5007), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -257973,14 +246169,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35103] = 5, + [35784] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2455), 1, + STATE(2318), 1, sym_comment, - ACTIONS(2216), 14, + ACTIONS(5001), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257994,8 +246190,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_QMARK, - ACTIONS(2218), 32, + ACTIONS(5003), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258028,16 +246223,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35163] = 6, + [35843] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4977), 1, - anon_sym_is, - STATE(2456), 1, + STATE(2319), 1, sym_comment, - ACTIONS(4961), 13, + ACTIONS(5005), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258051,7 +246244,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 32, + ACTIONS(5007), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258084,14 +246277,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35225] = 5, + [35902] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2457), 1, + STATE(2320), 1, sym_comment, - ACTIONS(4979), 13, + ACTIONS(5009), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258105,7 +246298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4981), 33, + ACTIONS(5011), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258138,73 +246331,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [35285] = 8, + [35961] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4957), 1, - anon_sym_LBRACE, - ACTIONS(4983), 1, - anon_sym_DOT, - STATE(2458), 1, - sym_comment, - STATE(2671), 1, - sym_statement_block, - ACTIONS(2109), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2113), 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, + ACTIONS(5017), 1, 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, - [35351] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2459), 1, + STATE(2321), 1, sym_comment, - ACTIONS(2061), 13, + ACTIONS(5013), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258218,7 +246354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2063), 33, + ACTIONS(5015), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258228,7 +246364,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -258251,19 +246386,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - anon_sym_is, - [35411] = 7, + [36022] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4957), 1, - anon_sym_LBRACE, - STATE(2460), 1, + ACTIONS(4316), 1, + anon_sym_EQ, + STATE(2322), 1, sym_comment, - STATE(2671), 1, - sym_statement_block, - ACTIONS(2109), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258277,18 +246409,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2113), 31, - sym__automatic_semicolon, + ACTIONS(4242), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -258308,22 +246440,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [35475] = 8, + anon_sym_implements, + [36083] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - STATE(2461), 1, + STATE(2323), 1, sym_comment, - STATE(2609), 2, - sym_template_string, - sym_arguments, - ACTIONS(4985), 13, + ACTIONS(5019), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258337,12 +246462,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4987), 29, + ACTIONS(5021), 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, @@ -258365,32 +246491,36 @@ 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_extends, anon_sym_implements, - [35541] = 6, + [36142] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4949), 1, - anon_sym_is, - STATE(2462), 1, + ACTIONS(5027), 1, + anon_sym_AMP, + ACTIONS(5029), 1, + anon_sym_PIPE, + ACTIONS(5031), 1, + anon_sym_extends, + STATE(2324), 1, sym_comment, - ACTIONS(4991), 13, + ACTIONS(5023), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4993), 32, + ACTIONS(5025), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258421,30 +246551,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [35603] = 5, + [36207] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2463), 1, + ACTIONS(5027), 1, + anon_sym_AMP, + ACTIONS(5029), 1, + anon_sym_PIPE, + ACTIONS(5031), 1, + anon_sym_extends, + STATE(2325), 1, sym_comment, - ACTIONS(4995), 13, + ACTIONS(5033), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4997), 32, + ACTIONS(5035), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258475,16 +246608,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [35662] = 5, + [36272] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2464), 1, + STATE(2326), 1, sym_comment, - ACTIONS(4999), 13, + ACTIONS(5009), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258498,7 +246630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5001), 32, + ACTIONS(5011), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258531,14 +246663,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35721] = 5, + [36331] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2465), 1, + STATE(2327), 1, sym_comment, - ACTIONS(5003), 13, + ACTIONS(5019), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258552,7 +246684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5005), 32, + ACTIONS(5021), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258585,68 +246717,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35780] = 5, + [36390] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2466), 1, - sym_comment, - ACTIONS(5007), 13, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5037), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5009), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, anon_sym_COMMA, + ACTIONS(5044), 1, anon_sym_RBRACE, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(5049), 1, + anon_sym_async, + ACTIONS(5051), 1, + anon_sym_readonly, + STATE(2328), 1, + sym_comment, + STATE(3626), 1, + sym_override_modifier, + STATE(3950), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5053), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [35839] = 5, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4496), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [36485] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2467), 1, + STATE(2329), 1, sym_comment, - ACTIONS(4961), 13, + ACTIONS(5055), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258660,7 +246810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 32, + ACTIONS(5057), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258693,14 +246843,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35898] = 5, + [36544] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2468), 1, + STATE(2330), 1, sym_comment, - ACTIONS(5011), 13, + ACTIONS(5059), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258714,7 +246864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5013), 32, + ACTIONS(5061), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258747,20 +246897,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [35957] = 8, + [36603] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5015), 1, - anon_sym_LBRACE, - ACTIONS(5017), 1, - anon_sym_DOT, - STATE(2469), 1, + STATE(2331), 1, sym_comment, - STATE(2766), 1, - sym_statement_block, - ACTIONS(2109), 13, + ACTIONS(3289), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258774,9 +246918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2113), 29, + ACTIONS(3641), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -258785,6 +246930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -258803,15 +246949,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [36022] = 5, + [36662] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2470), 1, + STATE(2332), 1, sym_comment, - ACTIONS(3435), 13, + ACTIONS(3291), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258825,7 +246972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3645), 32, + ACTIONS(3507), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258858,14 +247005,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36081] = 5, + [36721] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2471), 1, + STATE(2333), 1, sym_comment, - ACTIONS(5003), 13, + ACTIONS(5063), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258879,7 +247026,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5005), 32, + ACTIONS(5065), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258912,32 +247059,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36140] = 8, + [36780] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5023), 1, - anon_sym_AMP, - ACTIONS(5025), 1, - anon_sym_PIPE, - ACTIONS(5027), 1, - anon_sym_extends, - STATE(2472), 1, + ACTIONS(5067), 1, + sym__automatic_semicolon, + STATE(2334), 1, sym_comment, - ACTIONS(5019), 11, + ACTIONS(2160), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5021), 31, + ACTIONS(2164), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -258969,14 +247114,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [36205] = 5, + [36841] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2473), 1, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4947), 1, + anon_sym_QMARK_DOT, + STATE(2335), 1, sym_comment, - ACTIONS(5029), 13, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(2184), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258990,7 +247143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5031), 32, + ACTIONS(2186), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259000,10 +247153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -259021,124 +247171,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [36264] = 5, + [36908] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2474), 1, - sym_comment, - ACTIONS(5029), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5031), 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, + ACTIONS(4297), 1, anon_sym_COLON, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4945), 1, anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5073), 1, + anon_sym_COMMA, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5077), 1, + anon_sym_RPAREN, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5083), 1, anon_sym_AMP_AMP, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5087), 1, + anon_sym_GT_GT, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5093), 1, anon_sym_CARET, + ACTIONS(5095), 1, + anon_sym_PIPE, + ACTIONS(5099), 1, anon_sym_PERCENT, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5103), 1, + anon_sym_LT, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5115), 1, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [36323] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2475), 1, + ACTIONS(5117), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2336), 1, sym_comment, - ACTIONS(5029), 13, + STATE(5791), 1, + sym_optional_chain, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + STATE(7325), 1, + sym_type_annotation, + ACTIONS(5069), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5089), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5031), 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, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [36382] = 5, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5105), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [37033] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2476), 1, + STATE(2337), 1, sym_comment, - ACTIONS(5033), 13, + ACTIONS(3293), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259152,7 +247280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5035), 32, + ACTIONS(3517), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259185,14 +247313,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36441] = 5, + [37092] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2477), 1, + STATE(2338), 1, sym_comment, - ACTIONS(5033), 13, + ACTIONS(5119), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259206,7 +247334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5035), 32, + ACTIONS(5121), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259239,20 +247367,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36500] = 5, + [37151] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2478), 1, + ACTIONS(5027), 1, + anon_sym_AMP, + STATE(2339), 1, sym_comment, - ACTIONS(5033), 13, + ACTIONS(5123), 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, @@ -259260,7 +247389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5035), 32, + ACTIONS(5125), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259293,16 +247422,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36559] = 6, + [37212] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5041), 1, - anon_sym_DOT, - STATE(2479), 1, + STATE(2340), 1, sym_comment, - ACTIONS(5037), 13, + ACTIONS(5127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259316,7 +247443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5039), 31, + ACTIONS(5129), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259328,6 +247455,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -259348,14 +247476,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36620] = 5, + [37271] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2480), 1, + STATE(2341), 1, sym_comment, - ACTIONS(5044), 13, + ACTIONS(5131), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259369,7 +247497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5046), 32, + ACTIONS(5133), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259402,14 +247530,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36679] = 5, + [37330] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2481), 1, + STATE(2342), 1, sym_comment, - ACTIONS(5048), 13, + ACTIONS(5055), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259423,7 +247551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 32, + ACTIONS(5057), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259456,14 +247584,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36738] = 5, + [37389] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2482), 1, + STATE(2343), 1, sym_comment, - ACTIONS(5052), 13, + ACTIONS(5131), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259477,7 +247605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5054), 32, + ACTIONS(5133), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259510,43 +247638,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [36797] = 9, + [37448] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2144), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3587), 1, - anon_sym_extends, - STATE(2483), 1, + STATE(2344), 1, sym_comment, - ACTIONS(5056), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5059), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2142), 10, + ACTIONS(4494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2148), 28, + ACTIONS(5135), 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, @@ -259567,44 +247690,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [36864] = 9, + [37507] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5064), 1, - anon_sym_EQ, - ACTIONS(5074), 1, - anon_sym_extends, - STATE(2484), 1, + STATE(2345), 1, sym_comment, - ACTIONS(5068), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5071), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5062), 10, + ACTIONS(5137), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5066), 28, + ACTIONS(5139), 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, @@ -259625,108 +247744,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [36931] = 38, + [37566] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5084), 1, - anon_sym_RPAREN, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5090), 1, - anon_sym_AMP_AMP, - ACTIONS(5092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, - anon_sym_GT_GT, - ACTIONS(5098), 1, - anon_sym_AMP, - ACTIONS(5100), 1, - anon_sym_CARET, - ACTIONS(5102), 1, - anon_sym_PIPE, - ACTIONS(5106), 1, - anon_sym_PERCENT, - ACTIONS(5108), 1, - anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - ACTIONS(5118), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(2485), 1, - sym_comment, - STATE(6060), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, - sym_optional_chain, - STATE(7475), 1, - sym_type_annotation, - ACTIONS(5076), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5086), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5096), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5114), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5116), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5112), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [37056] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5015), 1, - anon_sym_LBRACE, - ACTIONS(5126), 1, - anon_sym_DOT, - STATE(2486), 1, + STATE(2346), 1, sym_comment, - STATE(2766), 1, - sym_statement_block, - ACTIONS(2109), 13, + ACTIONS(5141), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259740,9 +247767,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2113), 29, + ACTIONS(5143), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -259751,6 +247779,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -259769,29 +247798,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, - [37121] = 5, + [37625] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2487), 1, + ACTIONS(5027), 1, + anon_sym_AMP, + ACTIONS(5029), 1, + anon_sym_PIPE, + ACTIONS(5031), 1, + anon_sym_extends, + STATE(2347), 1, sym_comment, - ACTIONS(5128), 13, + ACTIONS(5145), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5130), 32, + ACTIONS(5147), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259822,18 +247856,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [37180] = 6, + [37690] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5132), 1, - sym__automatic_semicolon, - STATE(2488), 1, + STATE(2348), 1, sym_comment, - ACTIONS(2190), 13, + ACTIONS(4995), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259847,7 +247878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2192), 31, + ACTIONS(4997), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259878,19 +247909,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [37241] = 7, + [37749] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5015), 1, - anon_sym_LBRACE, - STATE(2489), 1, + STATE(2349), 1, sym_comment, - STATE(2766), 1, - sym_statement_block, - ACTIONS(2109), 13, + ACTIONS(4477), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259904,9 +247932,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2113), 30, + ACTIONS(5149), 32, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -259934,17 +247963,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [37304] = 6, + [37808] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5134), 1, - anon_sym_DOT, - STATE(2490), 1, + STATE(2350), 1, sym_comment, - ACTIONS(5037), 13, + ACTIONS(4475), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259958,7 +247986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5039), 31, + ACTIONS(5151), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -259970,6 +247998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -259990,41 +248019,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37365] = 7, + [37867] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2491), 1, + STATE(2351), 1, sym_comment, - ACTIONS(5137), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5139), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(4473), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 29, + ACTIONS(5153), 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, @@ -260045,15 +248071,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [37428] = 5, + [37926] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2492), 1, + STATE(2352), 1, sym_comment, - ACTIONS(5003), 13, + ACTIONS(4471), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260067,7 +248094,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5005), 32, + ACTIONS(5155), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260100,16 +248127,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37487] = 6, + [37985] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5141), 1, - anon_sym_LBRACK, - STATE(2493), 1, + STATE(2353), 1, sym_comment, - ACTIONS(5052), 13, + ACTIONS(5157), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260123,7 +248148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5054), 31, + ACTIONS(5159), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260133,6 +248158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -260155,101 +248181,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37548] = 38, + [38044] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(4913), 1, + STATE(2354), 1, + sym_comment, + ACTIONS(4473), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5153), 32, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4915), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4917), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, - anon_sym_GT_GT, - ACTIONS(5098), 1, - anon_sym_AMP, - ACTIONS(5100), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5102), 1, - anon_sym_PIPE, - ACTIONS(5106), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - ACTIONS(5118), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(5124), 1, - sym__ternary_qmark, - ACTIONS(5143), 1, - anon_sym_RPAREN, - STATE(2461), 1, - sym_type_arguments, - STATE(2494), 1, + anon_sym_extends, + anon_sym_implements, + [38103] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2355), 1, sym_comment, - STATE(6060), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, - sym_optional_chain, - STATE(7394), 1, - sym_type_annotation, - ACTIONS(5076), 2, + ACTIONS(4469), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5086), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5104), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5161), 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, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5112), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [37673] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_implements, + [38162] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2495), 1, + STATE(2356), 1, sym_comment, - ACTIONS(5145), 13, + ACTIONS(5163), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260263,7 +248310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5147), 32, + ACTIONS(5165), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260296,20 +248343,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37732] = 8, + [38221] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5023), 1, + ACTIONS(5027), 1, anon_sym_AMP, - ACTIONS(5025), 1, + ACTIONS(5029), 1, anon_sym_PIPE, - ACTIONS(5027), 1, + ACTIONS(5031), 1, anon_sym_extends, - STATE(2496), 1, + STATE(2357), 1, sym_comment, - ACTIONS(5145), 11, + ACTIONS(5163), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260321,7 +248368,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5147), 31, + ACTIONS(5165), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260353,86 +248400,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [37797] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5149), 1, - anon_sym_STAR, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, - anon_sym_COMMA, - ACTIONS(5156), 1, - anon_sym_RBRACE, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_async, - ACTIONS(5163), 1, - anon_sym_readonly, - STATE(2497), 1, - sym_comment, - STATE(3780), 1, - sym_override_modifier, - STATE(4103), 1, - sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5165), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4492), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [37892] = 5, + [38286] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2498), 1, + STATE(2358), 1, sym_comment, - ACTIONS(4971), 13, + ACTIONS(4469), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260446,7 +248421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4973), 32, + ACTIONS(5161), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260479,28 +248454,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [37951] = 5, + [38345] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2499), 1, + ACTIONS(5027), 1, + anon_sym_AMP, + ACTIONS(5029), 1, + anon_sym_PIPE, + ACTIONS(5031), 1, + anon_sym_extends, + STATE(2359), 1, sym_comment, - ACTIONS(5167), 13, + ACTIONS(5167), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5169), 32, + ACTIONS(5169), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260531,16 +248510,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [38010] = 5, + [38410] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2500), 1, + STATE(2360), 1, sym_comment, - ACTIONS(4479), 13, + ACTIONS(5167), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260554,7 +248532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5171), 32, + ACTIONS(5169), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260587,14 +248565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38069] = 5, + [38469] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2501), 1, + ACTIONS(5175), 1, + anon_sym_DOT, + STATE(2361), 1, sym_comment, - ACTIONS(4479), 13, + ACTIONS(5171), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260608,7 +248588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5171), 32, + ACTIONS(5173), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260620,7 +248600,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -260641,14 +248620,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38128] = 5, + [38530] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2502), 1, + STATE(2362), 1, sym_comment, - ACTIONS(3433), 13, + ACTIONS(3283), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260662,7 +248641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3547), 32, + ACTIONS(3657), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260695,14 +248674,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38187] = 5, + [38589] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2503), 1, + ACTIONS(5178), 1, + anon_sym_DOT, + STATE(2363), 1, sym_comment, - ACTIONS(5173), 13, + ACTIONS(5171), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260716,7 +248697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5175), 32, + ACTIONS(5173), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260728,7 +248709,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -260749,14 +248729,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38246] = 5, + [38650] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2504), 1, + STATE(2364), 1, sym_comment, - ACTIONS(5177), 13, + ACTIONS(5181), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260770,7 +248750,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5179), 32, + ACTIONS(5183), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260803,22 +248783,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38305] = 9, + [38709] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4919), 1, - anon_sym_QMARK_DOT, - STATE(2505), 1, + STATE(2365), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(2178), 13, + ACTIONS(5185), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260832,7 +248804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2180), 28, + ACTIONS(5187), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260842,7 +248814,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -260860,15 +248835,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [38372] = 5, + [38768] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2506), 1, + STATE(2366), 1, sym_comment, - ACTIONS(3419), 13, + ACTIONS(5189), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260882,7 +248858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3587), 32, + ACTIONS(5191), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260915,14 +248891,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38431] = 5, + [38827] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2507), 1, + ACTIONS(4297), 1, + anon_sym_COLON, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5073), 1, + anon_sym_COMMA, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5087), 1, + anon_sym_GT_GT, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5093), 1, + anon_sym_CARET, + ACTIONS(5095), 1, + anon_sym_PIPE, + ACTIONS(5099), 1, + anon_sym_PERCENT, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, + anon_sym_LT, + ACTIONS(5111), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, + sym__ternary_qmark, + ACTIONS(5193), 1, + anon_sym_RPAREN, + STATE(2313), 1, + sym_type_arguments, + STATE(2367), 1, sym_comment, - ACTIONS(5181), 13, + STATE(5791), 1, + sym_optional_chain, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + STATE(7154), 1, + sym_type_annotation, + ACTIONS(5069), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5079), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5089), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5097), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5109), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5105), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [38952] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2368), 1, + sym_comment, + ACTIONS(5195), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260936,7 +248999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5183), 32, + ACTIONS(5197), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -260969,14 +249032,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38490] = 5, + [39011] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2508), 1, + STATE(2369), 1, sym_comment, - ACTIONS(4471), 13, + ACTIONS(5199), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260990,7 +249053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5185), 32, + ACTIONS(5201), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261023,101 +249086,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38549] = 38, + [39070] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4295), 1, + ACTIONS(4297), 1, anon_sym_COLON, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5080), 1, + ACTIONS(5073), 1, anon_sym_COMMA, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5117), 1, sym__ternary_qmark, - ACTIONS(5187), 1, + ACTIONS(5203), 1, anon_sym_RPAREN, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2509), 1, + STATE(2370), 1, sym_comment, - STATE(6060), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - STATE(7494), 1, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + STATE(7022), 1, sym_type_annotation, - ACTIONS(5076), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [38674] = 5, + [39195] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2510), 1, + STATE(2371), 1, sym_comment, - ACTIONS(5177), 13, + ACTIONS(5205), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261131,7 +249194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5179), 32, + ACTIONS(5207), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261164,14 +249227,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38733] = 5, + [39254] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2511), 1, + STATE(2372), 1, sym_comment, - ACTIONS(5189), 13, + ACTIONS(5209), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261185,7 +249248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 32, + ACTIONS(5211), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261218,86 +249281,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38792] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5149), 1, - anon_sym_STAR, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, - anon_sym_COMMA, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_async, - ACTIONS(5163), 1, - anon_sym_readonly, - ACTIONS(5193), 1, - anon_sym_RBRACE, - STATE(2512), 1, - sym_comment, - STATE(3780), 1, - sym_override_modifier, - STATE(4103), 1, - sym__property_name, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(6287), 1, - aux_sym_object_repeat1, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5165), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4492), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [38887] = 5, + [39313] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2513), 1, + STATE(2373), 1, sym_comment, - ACTIONS(5196), 13, + ACTIONS(5213), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261311,7 +249302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5198), 32, + ACTIONS(5215), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261344,14 +249335,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [38946] = 5, + [39372] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2514), 1, + STATE(2374), 1, sym_comment, - ACTIONS(4471), 13, + ACTIONS(5217), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261365,7 +249356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5185), 32, + ACTIONS(5219), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261398,14 +249389,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39005] = 5, + [39431] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2515), 1, + ACTIONS(4297), 1, + anon_sym_COLON, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5073), 1, + anon_sym_COMMA, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5087), 1, + anon_sym_GT_GT, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5093), 1, + anon_sym_CARET, + ACTIONS(5095), 1, + anon_sym_PIPE, + ACTIONS(5099), 1, + anon_sym_PERCENT, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, + anon_sym_LT, + ACTIONS(5111), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, + sym__ternary_qmark, + ACTIONS(5221), 1, + anon_sym_RPAREN, + STATE(2313), 1, + sym_type_arguments, + STATE(2375), 1, sym_comment, - ACTIONS(4477), 13, + STATE(5791), 1, + sym_optional_chain, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + STATE(6979), 1, + sym_type_annotation, + ACTIONS(5069), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5079), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5089), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5097), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5109), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5105), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [39556] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2376), 1, + sym_comment, + ACTIONS(5223), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261419,7 +249497,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5200), 32, + ACTIONS(5225), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261452,14 +249530,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39064] = 5, + [39615] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2516), 1, + STATE(2377), 1, sym_comment, - ACTIONS(4991), 13, + ACTIONS(5227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261473,7 +249551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4993), 32, + ACTIONS(5229), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261506,7 +249584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39123] = 23, + [39674] = 23, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -261515,51 +249593,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5149), 1, + ACTIONS(5037), 1, anon_sym_STAR, - ACTIONS(5151), 1, + ACTIONS(5039), 1, anon_sym_EQ, - ACTIONS(5153), 1, + ACTIONS(5041), 1, anon_sym_COMMA, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(5049), 1, anon_sym_async, - ACTIONS(5163), 1, + ACTIONS(5051), 1, anon_sym_readonly, - ACTIONS(5202), 1, + ACTIONS(5231), 1, anon_sym_RBRACE, - STATE(2517), 1, + STATE(2378), 1, sym_comment, - STATE(3780), 1, + STATE(3626), 1, sym_override_modifier, - STATE(4103), 1, + STATE(3950), 1, sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3991), 2, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(5165), 2, + ACTIONS(5053), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4492), 18, + ACTIONS(4496), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -261578,14 +249656,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [39218] = 5, + [39769] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2518), 1, + STATE(2379), 1, sym_comment, - ACTIONS(5205), 13, + ACTIONS(4462), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261599,7 +249677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5207), 32, + ACTIONS(5234), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261632,32 +249710,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39277] = 8, + [39828] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5023), 1, + STATE(2380), 1, + sym_comment, + ACTIONS(4460), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5025), 1, anon_sym_PIPE, - ACTIONS(5027), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5236), 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, - STATE(2519), 1, + anon_sym_implements, + [39887] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2381), 1, sym_comment, - ACTIONS(5209), 11, + ACTIONS(5227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 31, + ACTIONS(5229), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261688,15 +249816,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [39342] = 5, + [39946] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2520), 1, + STATE(2382), 1, sym_comment, - ACTIONS(5213), 13, + ACTIONS(5227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261710,7 +249839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5215), 32, + ACTIONS(5229), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261743,101 +249872,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39401] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5090), 1, - anon_sym_AMP_AMP, - ACTIONS(5092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, - anon_sym_GT_GT, - ACTIONS(5098), 1, - anon_sym_AMP, - ACTIONS(5100), 1, - anon_sym_CARET, - ACTIONS(5102), 1, - anon_sym_PIPE, - ACTIONS(5106), 1, - anon_sym_PERCENT, - ACTIONS(5108), 1, - anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - ACTIONS(5118), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, - sym__ternary_qmark, - ACTIONS(5217), 1, - anon_sym_RPAREN, - STATE(2461), 1, - sym_type_arguments, - STATE(2521), 1, - sym_comment, - STATE(6060), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, - sym_optional_chain, - STATE(7362), 1, - sym_type_annotation, - ACTIONS(5076), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5086), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5096), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5114), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5116), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5112), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [39526] = 5, + [40005] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2522), 1, + STATE(2383), 1, sym_comment, - ACTIONS(3437), 13, + ACTIONS(5238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261851,7 +249893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3625), 32, + ACTIONS(5240), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261884,14 +249926,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39585] = 5, + [40064] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2523), 1, + STATE(2384), 1, sym_comment, - ACTIONS(5219), 13, + ACTIONS(5238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261905,7 +249947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5221), 32, + ACTIONS(5240), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261938,21 +249980,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39644] = 6, + [40123] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5023), 1, - anon_sym_AMP, - STATE(2524), 1, + STATE(2385), 1, sym_comment, - ACTIONS(5223), 12, + ACTIONS(5238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -261960,7 +250001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5225), 32, + ACTIONS(5240), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -261993,14 +250034,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39705] = 5, + [40182] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2525), 1, + STATE(2386), 1, sym_comment, - ACTIONS(5227), 13, + ACTIONS(4458), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262014,7 +250055,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5229), 32, + ACTIONS(5242), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262047,14 +250088,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39764] = 5, + [40241] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2526), 1, + STATE(2387), 1, sym_comment, - ACTIONS(5231), 13, + ACTIONS(5244), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262068,7 +250109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5233), 32, + ACTIONS(5246), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262101,14 +250142,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39823] = 5, + [40300] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2527), 1, + STATE(2388), 1, sym_comment, - ACTIONS(5235), 13, + ACTIONS(5248), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262122,7 +250163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5237), 32, + ACTIONS(5250), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262155,14 +250196,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [39882] = 5, + [40359] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2528), 1, + ACTIONS(5217), 1, + anon_sym_QMARK, + STATE(2389), 1, sym_comment, - ACTIONS(5239), 13, + ACTIONS(5219), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262176,15 +250222,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5241), 32, + ACTIONS(5254), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -262207,16 +250251,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [39941] = 5, + [40422] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2529), 1, + STATE(2390), 1, sym_comment, - ACTIONS(5243), 13, + ACTIONS(5248), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262230,7 +250273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5245), 32, + ACTIONS(5250), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262263,14 +250306,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40000] = 5, + [40481] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2530), 1, + STATE(2391), 1, sym_comment, - ACTIONS(5247), 13, + ACTIONS(5248), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262284,7 +250327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5249), 32, + ACTIONS(5250), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262317,14 +250360,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40059] = 5, + [40540] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2531), 1, + STATE(2392), 1, sym_comment, - ACTIONS(5247), 13, + ACTIONS(5256), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262338,7 +250381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5249), 32, + ACTIONS(5258), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262371,32 +250414,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40118] = 8, + [40599] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5023), 1, - anon_sym_AMP, - ACTIONS(5025), 1, - anon_sym_PIPE, - ACTIONS(5027), 1, - anon_sym_extends, - STATE(2532), 1, + STATE(2393), 1, sym_comment, - ACTIONS(5251), 11, + ACTIONS(5260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5253), 31, + ACTIONS(5262), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262427,191 +250466,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [40183] = 38, + [40658] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5090), 1, - anon_sym_AMP_AMP, - ACTIONS(5092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, - anon_sym_GT_GT, - ACTIONS(5098), 1, - anon_sym_AMP, - ACTIONS(5100), 1, - anon_sym_CARET, - ACTIONS(5102), 1, - anon_sym_PIPE, - ACTIONS(5106), 1, - anon_sym_PERCENT, - ACTIONS(5108), 1, - anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - ACTIONS(5118), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, - sym__ternary_qmark, - ACTIONS(5255), 1, - anon_sym_RPAREN, - STATE(2461), 1, - sym_type_arguments, - STATE(2533), 1, + ACTIONS(5268), 1, + anon_sym_extends, + STATE(2394), 1, sym_comment, - STATE(6060), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, - sym_optional_chain, - STATE(7608), 1, - sym_type_annotation, - ACTIONS(5076), 2, + ACTIONS(5264), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5086), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5104), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5112), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [40308] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(4913), 1, + ACTIONS(5266), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4915), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4917), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, - anon_sym_GT_GT, - ACTIONS(5098), 1, - anon_sym_AMP, - ACTIONS(5100), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5102), 1, - anon_sym_PIPE, - ACTIONS(5106), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - ACTIONS(5118), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, - sym__ternary_qmark, - ACTIONS(5257), 1, - anon_sym_RPAREN, - STATE(2461), 1, - sym_type_arguments, - STATE(2534), 1, - sym_comment, - STATE(6060), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, - sym_optional_chain, - STATE(7277), 1, - sym_type_annotation, - ACTIONS(5076), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5086), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5096), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5114), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5116), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5112), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [40433] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [40719] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4963), 1, - anon_sym_extends, - STATE(2535), 1, + STATE(2395), 1, sym_comment, - ACTIONS(5251), 13, + ACTIONS(5270), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262625,7 +250544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5253), 31, + ACTIONS(5272), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262656,29 +250575,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [40494] = 5, + [40778] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2536), 1, + ACTIONS(5017), 1, + anon_sym_LBRACK, + ACTIONS(5280), 1, + anon_sym_extends, + STATE(2396), 1, sym_comment, - ACTIONS(5247), 13, + ACTIONS(5278), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5274), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5249), 32, + ACTIONS(5276), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262688,7 +250613,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -262709,30 +250633,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [40553] = 5, + [40843] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2537), 1, + ACTIONS(5027), 1, + anon_sym_AMP, + ACTIONS(5029), 1, + anon_sym_PIPE, + ACTIONS(5031), 1, + anon_sym_extends, + STATE(2397), 1, sym_comment, - ACTIONS(4995), 13, + ACTIONS(5282), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4997), 32, + ACTIONS(5284), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262763,16 +250690,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [40612] = 5, + [40908] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2538), 1, + STATE(2398), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(5286), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262786,7 +250712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5261), 32, + ACTIONS(5288), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262819,14 +250745,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40671] = 5, + [40967] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2539), 1, + STATE(2399), 1, sym_comment, - ACTIONS(5263), 13, + ACTIONS(5290), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262840,7 +250766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5265), 32, + ACTIONS(5292), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262873,14 +250799,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40730] = 5, + [41026] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2540), 1, + ACTIONS(4297), 1, + anon_sym_COLON, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5073), 1, + anon_sym_COMMA, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5087), 1, + anon_sym_GT_GT, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5093), 1, + anon_sym_CARET, + ACTIONS(5095), 1, + anon_sym_PIPE, + ACTIONS(5099), 1, + anon_sym_PERCENT, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, + anon_sym_LT, + ACTIONS(5111), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, + sym__ternary_qmark, + ACTIONS(5294), 1, + anon_sym_RPAREN, + STATE(2313), 1, + sym_type_arguments, + STATE(2400), 1, sym_comment, - ACTIONS(4995), 13, + STATE(5791), 1, + sym_optional_chain, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + STATE(7100), 1, + sym_type_annotation, + ACTIONS(5069), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5079), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5089), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5097), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5109), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5105), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [41151] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2401), 1, + sym_comment, + ACTIONS(5290), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262894,7 +250907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4997), 32, + ACTIONS(5292), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262927,14 +250940,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40789] = 5, + [41210] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2541), 1, + STATE(2402), 1, sym_comment, - ACTIONS(5267), 13, + ACTIONS(5296), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262948,7 +250961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5269), 32, + ACTIONS(5298), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -262981,86 +250994,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [40848] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5149), 1, - anon_sym_STAR, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, - anon_sym_COMMA, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_async, - ACTIONS(5163), 1, - anon_sym_readonly, - ACTIONS(5271), 1, - anon_sym_RBRACE, - STATE(2542), 1, - sym_comment, - STATE(3780), 1, - sym_override_modifier, - STATE(4103), 1, - sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5165), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4492), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [40943] = 5, + [41269] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2543), 1, + STATE(2403), 1, sym_comment, - ACTIONS(5267), 13, + ACTIONS(5290), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263074,7 +251015,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5269), 32, + ACTIONS(5292), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -263107,14 +251048,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41002] = 5, + [41328] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2544), 1, + STATE(2404), 1, sym_comment, - ACTIONS(4475), 13, + ACTIONS(5300), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263128,7 +251069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5274), 32, + ACTIONS(5302), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -263161,14 +251102,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41061] = 5, + [41387] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2545), 1, + STATE(2405), 1, sym_comment, - ACTIONS(4490), 13, + ACTIONS(5300), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263182,7 +251123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5276), 32, + ACTIONS(5302), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -263215,14 +251156,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41120] = 5, + [41446] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2546), 1, + STATE(2406), 1, sym_comment, - ACTIONS(5181), 13, + ACTIONS(5304), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263236,7 +251177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5183), 32, + ACTIONS(5306), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -263269,14 +251210,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41179] = 5, + [41505] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2547), 1, + STATE(2407), 1, sym_comment, - ACTIONS(4473), 13, + ACTIONS(5300), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263290,7 +251231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5278), 32, + ACTIONS(5302), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -263323,101 +251264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41238] = 38, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5090), 1, - anon_sym_AMP_AMP, - ACTIONS(5092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, - anon_sym_GT_GT, - ACTIONS(5098), 1, - anon_sym_AMP, - ACTIONS(5100), 1, - anon_sym_CARET, - ACTIONS(5102), 1, - anon_sym_PIPE, - ACTIONS(5106), 1, - anon_sym_PERCENT, - ACTIONS(5108), 1, - anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - ACTIONS(5118), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, - sym__ternary_qmark, - ACTIONS(5280), 1, - anon_sym_RPAREN, - STATE(2461), 1, - sym_type_arguments, - STATE(2548), 1, - sym_comment, - STATE(6060), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, - sym_optional_chain, - STATE(7526), 1, - sym_type_annotation, - ACTIONS(5076), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5086), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5096), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5114), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5116), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5112), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [41363] = 5, + [41564] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2549), 1, + STATE(2408), 1, sym_comment, - ACTIONS(5282), 13, + ACTIONS(5308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263431,7 +251285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5284), 32, + ACTIONS(5310), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -263464,20 +251318,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41422] = 5, + [41623] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2550), 1, + ACTIONS(5027), 1, + anon_sym_AMP, + STATE(2409), 1, sym_comment, - ACTIONS(5267), 13, + ACTIONS(5312), 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, @@ -263485,7 +251340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5269), 32, + ACTIONS(5314), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -263518,14 +251373,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41481] = 5, + [41684] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2551), 1, + STATE(2410), 1, sym_comment, - ACTIONS(5286), 13, + ACTIONS(5316), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263539,7 +251394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5288), 32, + ACTIONS(5318), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -263572,88 +251427,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41540] = 23, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5149), 1, - anon_sym_STAR, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, - anon_sym_COMMA, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_async, - ACTIONS(5163), 1, - anon_sym_readonly, - ACTIONS(5290), 1, - anon_sym_RBRACE, - STATE(2552), 1, - sym_comment, - STATE(3780), 1, - sym_override_modifier, - STATE(4103), 1, - sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5165), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4492), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [41635] = 6, + [41743] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5141), 1, - anon_sym_LBRACK, - STATE(2553), 1, + STATE(2411), 1, sym_comment, - ACTIONS(5293), 13, + ACTIONS(5320), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263667,7 +251448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5295), 31, + ACTIONS(5322), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -263677,6 +251458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -263699,16 +251481,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41696] = 6, + [41802] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5301), 1, - anon_sym_extends, - STATE(2554), 1, + STATE(2412), 1, sym_comment, - ACTIONS(5297), 13, + ACTIONS(5324), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263722,7 +251502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5299), 31, + ACTIONS(5326), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -263753,34 +251533,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [41757] = 8, + [41861] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5054), 1, - anon_sym_extends, - ACTIONS(5141), 1, - anon_sym_LBRACK, - STATE(2555), 1, + STATE(2413), 1, sym_comment, - ACTIONS(5052), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5303), 11, + ACTIONS(5328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5305), 30, + ACTIONS(5330), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -263790,6 +251566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -263810,33 +251587,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [41822] = 8, + [41920] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5023), 1, - anon_sym_AMP, - ACTIONS(5025), 1, - anon_sym_PIPE, - ACTIONS(5027), 1, - anon_sym_extends, - STATE(2556), 1, + STATE(2414), 1, sym_comment, - ACTIONS(5307), 11, + ACTIONS(5328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5309), 31, + ACTIONS(5330), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -263867,15 +251641,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [41887] = 5, + [41979] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2557), 1, + STATE(2415), 1, sym_comment, - ACTIONS(5311), 13, + ACTIONS(5328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263889,7 +251664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5313), 32, + ACTIONS(5330), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -263922,14 +251697,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [41946] = 5, + [42038] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2558), 1, + STATE(2416), 1, sym_comment, - ACTIONS(5315), 13, + ACTIONS(5332), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263943,7 +251718,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5317), 32, + ACTIONS(5334), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -263976,14 +251751,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42005] = 5, + [42097] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2559), 1, + ACTIONS(5340), 1, + anon_sym_DOT, + STATE(2417), 1, sym_comment, - ACTIONS(5319), 13, + ACTIONS(5336), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263997,7 +251774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5321), 32, + ACTIONS(5338), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264009,7 +251786,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -264030,101 +251806,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42064] = 38, + [42158] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5090), 1, - anon_sym_AMP_AMP, - ACTIONS(5092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, - anon_sym_GT_GT, - ACTIONS(5098), 1, - anon_sym_AMP, - ACTIONS(5100), 1, - anon_sym_CARET, - ACTIONS(5102), 1, - anon_sym_PIPE, - ACTIONS(5106), 1, - anon_sym_PERCENT, - ACTIONS(5108), 1, - anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - ACTIONS(5118), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, - sym__ternary_qmark, - ACTIONS(5323), 1, - anon_sym_RPAREN, - STATE(2461), 1, - sym_type_arguments, - STATE(2560), 1, + STATE(2418), 1, sym_comment, - STATE(6060), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, - sym_optional_chain, - STATE(7334), 1, - sym_type_annotation, - ACTIONS(5076), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5086), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5096), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5114), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5116), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, + STATE(2591), 1, sym_arguments, - ACTIONS(5112), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [42189] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2561), 1, - sym_comment, - ACTIONS(3421), 13, + ACTIONS(5342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264138,13 +251831,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3603), 32, + ACTIONS(5344), 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, @@ -264169,16 +251861,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [42248] = 5, + [42221] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2562), 1, + ACTIONS(4965), 1, + anon_sym_extends, + STATE(2419), 1, sym_comment, - ACTIONS(2204), 13, + ACTIONS(5346), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264192,19 +251885,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2206), 32, - sym__automatic_semicolon, + ACTIONS(5348), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -264224,29 +251916,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [42307] = 5, + anon_sym_implements, + [42282] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2563), 1, + ACTIONS(5027), 1, + anon_sym_AMP, + ACTIONS(5029), 1, + anon_sym_PIPE, + ACTIONS(5031), 1, + anon_sym_extends, + STATE(2420), 1, sym_comment, - ACTIONS(5139), 13, + ACTIONS(5350), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5137), 32, + ACTIONS(5352), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264277,39 +251973,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [42366] = 7, + [42347] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - STATE(2564), 1, + ACTIONS(5027), 1, + anon_sym_AMP, + ACTIONS(5029), 1, + anon_sym_PIPE, + ACTIONS(5031), 1, + anon_sym_extends, + STATE(2421), 1, sym_comment, - STATE(2704), 1, - sym_arguments, - ACTIONS(5325), 13, + ACTIONS(5346), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5327), 30, + ACTIONS(5348), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, @@ -264335,14 +252031,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [42429] = 5, + [42412] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2565), 1, + STATE(2422), 1, sym_comment, - ACTIONS(2274), 13, + ACTIONS(5354), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264356,19 +252052,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2276), 32, - sym__automatic_semicolon, + ACTIONS(5356), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -264388,21 +252083,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [42488] = 8, + anon_sym_extends, + anon_sym_implements, + [42471] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5023), 1, + ACTIONS(4297), 1, + anon_sym_COLON, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5073), 1, + anon_sym_COMMA, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5087), 1, + anon_sym_GT_GT, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5025), 1, + ACTIONS(5093), 1, + anon_sym_CARET, + ACTIONS(5095), 1, anon_sym_PIPE, + ACTIONS(5099), 1, + anon_sym_PERCENT, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, + anon_sym_LT, + ACTIONS(5111), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, + sym__ternary_qmark, + ACTIONS(5358), 1, + anon_sym_RPAREN, + STATE(2313), 1, + sym_type_arguments, + STATE(2423), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + STATE(7314), 1, + sym_type_annotation, + ACTIONS(5069), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5079), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5089), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5097), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5109), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5105), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [42596] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, ACTIONS(5027), 1, + anon_sym_AMP, + ACTIONS(5029), 1, + anon_sym_PIPE, + ACTIONS(5031), 1, anon_sym_extends, - STATE(2566), 1, + STATE(2424), 1, sym_comment, - ACTIONS(5329), 11, + ACTIONS(5360), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264414,7 +252197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5331), 31, + ACTIONS(5362), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264446,14 +252229,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [42553] = 5, + [42661] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2567), 1, + ACTIONS(4297), 1, + anon_sym_COLON, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5073), 1, + anon_sym_COMMA, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5087), 1, + anon_sym_GT_GT, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5093), 1, + anon_sym_CARET, + ACTIONS(5095), 1, + anon_sym_PIPE, + ACTIONS(5099), 1, + anon_sym_PERCENT, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, + anon_sym_LT, + ACTIONS(5111), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, + sym__ternary_qmark, + ACTIONS(5364), 1, + anon_sym_RPAREN, + STATE(2313), 1, + sym_type_arguments, + STATE(2425), 1, sym_comment, - ACTIONS(5329), 13, + STATE(5791), 1, + sym_optional_chain, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + STATE(7404), 1, + sym_type_annotation, + ACTIONS(5069), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5079), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5089), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5097), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5109), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5105), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [42786] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2426), 1, + sym_comment, + ACTIONS(4963), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264467,7 +252337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5331), 32, + ACTIONS(4965), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264500,32 +252370,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42612] = 8, + [42845] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5023), 1, - anon_sym_AMP, - ACTIONS(5025), 1, - anon_sym_PIPE, - ACTIONS(5027), 1, - anon_sym_extends, - STATE(2568), 1, + ACTIONS(5017), 1, + anon_sym_LBRACK, + STATE(2427), 1, sym_comment, - ACTIONS(5333), 11, + ACTIONS(5278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5335), 31, + ACTIONS(5280), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264535,7 +252403,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -264556,22 +252423,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [42677] = 6, + [42906] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5023), 1, - anon_sym_AMP, - STATE(2569), 1, + STATE(2428), 1, sym_comment, - ACTIONS(5337), 12, + ACTIONS(5278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -264579,7 +252446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5339), 32, + ACTIONS(5280), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264612,14 +252479,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42738] = 5, + [42965] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2570), 1, + STATE(2429), 1, sym_comment, - ACTIONS(5341), 13, + ACTIONS(4973), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264633,7 +252500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5343), 32, + ACTIONS(4975), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264666,14 +252533,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42797] = 5, + [43024] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2571), 1, + STATE(2430), 1, sym_comment, - ACTIONS(5345), 13, + ACTIONS(5366), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264687,7 +252554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5347), 32, + ACTIONS(5368), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264720,32 +252587,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [42856] = 8, + [43083] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5037), 1, + anon_sym_STAR, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(5049), 1, + anon_sym_async, + ACTIONS(5051), 1, + anon_sym_readonly, + ACTIONS(5370), 1, + anon_sym_RBRACE, + STATE(2431), 1, + sym_comment, + STATE(3626), 1, + sym_override_modifier, + STATE(3950), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5053), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4496), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [43178] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5023), 1, - anon_sym_AMP, - ACTIONS(5025), 1, - anon_sym_PIPE, - ACTIONS(5027), 1, - anon_sym_extends, - STATE(2572), 1, + STATE(2432), 1, sym_comment, - ACTIONS(5349), 11, + ACTIONS(5373), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5351), 31, + ACTIONS(5375), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264776,15 +252711,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + anon_sym_extends, anon_sym_implements, - [42921] = 5, + [43237] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2573), 1, + ACTIONS(4981), 1, + sym__automatic_semicolon, + STATE(2433), 1, sym_comment, - ACTIONS(4454), 13, + ACTIONS(2142), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264798,7 +252736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5353), 32, + ACTIONS(2222), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -264829,16 +252767,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [42980] = 5, + [43298] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2574), 1, + ACTIONS(4999), 1, + anon_sym_LBRACE, + ACTIONS(5377), 1, + anon_sym_DOT, + STATE(2434), 1, sym_comment, - ACTIONS(5355), 13, + STATE(2603), 1, + sym_statement_block, + ACTIONS(2126), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264852,10 +252795,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5074), 32, + ACTIONS(2130), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -264864,7 +252806,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -264883,21 +252824,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [43039] = 7, + [43363] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5259), 1, - anon_sym_QMARK, - STATE(2575), 1, + ACTIONS(4999), 1, + anon_sym_LBRACE, + ACTIONS(5379), 1, + anon_sym_DOT, + STATE(2435), 1, sym_comment, - ACTIONS(5261), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5357), 13, + STATE(2603), 1, + sym_statement_block, + ACTIONS(2126), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264911,17 +252852,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5359), 29, + ACTIONS(2130), 29, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -264941,38 +252882,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [43102] = 5, + [43428] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5037), 1, + anon_sym_STAR, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(5049), 1, + anon_sym_async, + ACTIONS(5051), 1, + anon_sym_readonly, + ACTIONS(5381), 1, + anon_sym_RBRACE, + STATE(2436), 1, + sym_comment, + STATE(3626), 1, + sym_override_modifier, + STATE(3950), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5053), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4496), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [43523] = 23, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5037), 1, + anon_sym_STAR, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(5049), 1, + anon_sym_async, + ACTIONS(5051), 1, + anon_sym_readonly, + ACTIONS(5384), 1, + anon_sym_RBRACE, + STATE(2437), 1, + sym_comment, + STATE(3626), 1, + sym_override_modifier, + STATE(3950), 1, + sym__property_name, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5053), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4496), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [43618] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2576), 1, + ACTIONS(4297), 1, + anon_sym_COLON, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5073), 1, + anon_sym_COMMA, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5087), 1, + anon_sym_GT_GT, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5093), 1, + anon_sym_CARET, + ACTIONS(5095), 1, + anon_sym_PIPE, + ACTIONS(5099), 1, + anon_sym_PERCENT, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, + anon_sym_LT, + ACTIONS(5111), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, + sym__ternary_qmark, + ACTIONS(5387), 1, + anon_sym_RPAREN, + STATE(2313), 1, + sym_type_arguments, + STATE(2438), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + STATE(7420), 1, + sym_type_annotation, + ACTIONS(5069), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5079), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5089), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5097), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5109), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5105), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [43743] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2439), 1, sym_comment, - ACTIONS(5361), 13, + ACTIONS(5308), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5310), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4238), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5363), 32, + ACTIONS(4242), 29, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -264993,42 +253168,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [43161] = 6, + [43806] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, + ACTIONS(5322), 1, + anon_sym_extends, + ACTIONS(5391), 1, anon_sym_EQ, - STATE(2577), 1, + STATE(2440), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(5395), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5398), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5389), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 31, + ACTIONS(5393), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -265050,40 +253227,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [43222] = 6, + [43873] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2146), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4969), 1, - sym__automatic_semicolon, - STATE(2578), 1, + ACTIONS(3581), 1, + anon_sym_extends, + STATE(2441), 1, sym_comment, - ACTIONS(2140), 13, + ACTIONS(5401), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5404), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2144), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2166), 31, + ACTIONS(2150), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -265105,68 +253285,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [43283] = 5, + [43940] = 38, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2579), 1, - sym_comment, - ACTIONS(4461), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5365), 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, + ACTIONS(4297), 1, anon_sym_COLON, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4945), 1, anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5073), 1, + anon_sym_COMMA, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5083), 1, anon_sym_AMP_AMP, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5087), 1, + anon_sym_GT_GT, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5093), 1, anon_sym_CARET, + ACTIONS(5095), 1, + anon_sym_PIPE, + ACTIONS(5099), 1, anon_sym_PERCENT, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5103), 1, + anon_sym_LT, + ACTIONS(5111), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, + sym__ternary_qmark, + ACTIONS(5407), 1, + anon_sym_RPAREN, + STATE(2313), 1, + sym_type_arguments, + STATE(2442), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + STATE(7151), 1, + sym_type_annotation, + ACTIONS(5069), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5079), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5089), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5097), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5107), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [43342] = 5, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5105), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [44065] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2580), 1, + STATE(2443), 1, sym_comment, - ACTIONS(4459), 13, + ACTIONS(2166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265180,18 +253393,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5367), 32, + ACTIONS(2168), 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_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -265211,45 +253425,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, - [43401] = 8, + anon_sym_PIPE_RBRACE, + [44124] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5023), 1, - anon_sym_AMP, - ACTIONS(5025), 1, - anon_sym_PIPE, - ACTIONS(5027), 1, - anon_sym_extends, - STATE(2581), 1, + STATE(2444), 1, sym_comment, - ACTIONS(5369), 11, + ACTIONS(2172), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5371), 31, + ACTIONS(2174), 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_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -265269,15 +253479,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [43466] = 5, + anon_sym_PIPE_RBRACE, + [44183] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2582), 1, + STATE(2445), 1, sym_comment, - ACTIONS(5373), 13, + ACTIONS(3267), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265291,7 +253501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5375), 32, + ACTIONS(3581), 32, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -265324,14 +253534,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_satisfies, anon_sym_extends, anon_sym_implements, - [43525] = 5, + [44242] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2583), 1, + STATE(2446), 1, sym_comment, - ACTIONS(5377), 13, + ACTIONS(5409), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265345,7 +253555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5379), 32, + ACTIONS(5411), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -265376,18 +253586,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [43584] = 6, + [44300] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5385), 1, - anon_sym_DOT, - STATE(2584), 1, + STATE(2447), 1, sym_comment, - ACTIONS(5381), 13, + ACTIONS(5391), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5413), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5389), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265401,18 +253617,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5383), 31, + ACTIONS(5393), 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, anon_sym_PIPE_PIPE, @@ -265431,124 +253642,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [43645] = 5, + [44362] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2585), 1, - sym_comment, - ACTIONS(5387), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5389), 32, - sym__ternary_qmark, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5420), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5430), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5432), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5434), 1, anon_sym_AMP_AMP, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5438), 1, + anon_sym_GT_GT, + ACTIONS(5442), 1, + anon_sym_AMP, + ACTIONS(5444), 1, anon_sym_CARET, + ACTIONS(5446), 1, + anon_sym_PIPE, + ACTIONS(5450), 1, anon_sym_PERCENT, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5466), 1, anon_sym_BQUOTE, + ACTIONS(5468), 1, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [43704] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2586), 1, + ACTIONS(5470), 1, + sym__ternary_qmark, + STATE(2448), 1, sym_comment, - ACTIONS(5391), 13, + STATE(2656), 1, + sym_type_arguments, + STATE(5567), 1, + aux_sym_sequence_expression_repeat1, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5416), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5428), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5440), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5393), 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, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [43763] = 5, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5456), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [44482] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2587), 1, + STATE(2449), 1, sym_comment, - ACTIONS(5395), 13, + ACTIONS(2196), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265562,18 +253747,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5397), 32, + ACTIONS(2198), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -265593,16 +253778,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [43822] = 5, + anon_sym_PIPE_RBRACE, + [44540] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2588), 1, + STATE(2450), 1, sym_comment, - ACTIONS(5387), 13, + ACTIONS(2146), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5472), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2144), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265616,18 +253809,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5389), 32, + ACTIONS(2150), 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, @@ -265647,16 +253834,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [43881] = 5, + [44602] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2589), 1, + ACTIONS(5391), 1, + anon_sym_EQ, + STATE(2451), 1, sym_comment, - ACTIONS(5391), 13, + ACTIONS(5389), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265670,7 +253857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5393), 32, + ACTIONS(5393), 30, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -265678,7 +253865,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -265701,103 +253887,178 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, anon_sym_implements, - [43940] = 38, + [44662] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5470), 1, sym__ternary_qmark, - ACTIONS(5399), 1, - anon_sym_RPAREN, - STATE(2461), 1, - sym_type_arguments, - STATE(2590), 1, + STATE(2452), 1, sym_comment, - STATE(6060), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, sym_optional_chain, - STATE(7516), 1, - sym_type_annotation, - ACTIONS(5076), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [44065] = 5, + ACTIONS(5475), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [44778] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5037), 1, + anon_sym_STAR, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5049), 1, + anon_sym_async, + ACTIONS(5231), 1, + anon_sym_RBRACE, + ACTIONS(5477), 1, + anon_sym_LBRACK, + STATE(2453), 1, + sym_comment, + STATE(3950), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5053), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4496), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [44866] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2591), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5483), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2454), 1, sym_comment, - ACTIONS(5401), 13, + STATE(5791), 1, + sym_optional_chain, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5479), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265808,18 +254069,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5403), 32, + ACTIONS(5481), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -265840,307 +254096,425 @@ 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_extends, - anon_sym_implements, - [44124] = 5, + [44936] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2592), 1, - sym_comment, - ACTIONS(5128), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5130), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4921), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4943), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4945), 1, anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, + ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5495), 1, + anon_sym_GT_GT, + ACTIONS(5499), 1, + anon_sym_AMP, + ACTIONS(5501), 1, anon_sym_CARET, + ACTIONS(5503), 1, + anon_sym_PIPE, + ACTIONS(5507), 1, anon_sym_PERCENT, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5517), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5519), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2455), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [44183] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2593), 1, - sym_comment, - ACTIONS(5401), 13, + ACTIONS(5485), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5497), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5403), 32, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5515), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5511), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5487), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, + [45052] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, + ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5495), 1, + anon_sym_GT_GT, + ACTIONS(5499), 1, + anon_sym_AMP, + ACTIONS(5501), 1, anon_sym_CARET, + ACTIONS(5503), 1, + anon_sym_PIPE, + ACTIONS(5507), 1, anon_sym_PERCENT, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5517), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5519), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2456), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5489), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5497), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5513), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5511), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - anon_sym_implements, - [44242] = 29, + ACTIONS(5521), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [45168] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5409), 1, - anon_sym_BANG, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5419), 1, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5421), 1, + ACTIONS(5493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5425), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(5427), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(5429), 1, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(5433), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5435), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5437), 1, - anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - STATE(2594), 1, - sym_comment, - STATE(2830), 1, + ACTIONS(5517), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5519), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(6311), 1, + STATE(2457), 1, + sym_comment, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5405), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5413), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5423), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5431), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5441), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5443), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5439), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 9, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5523), 4, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [44348] = 34, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [45284] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5419), 1, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5421), 1, + ACTIONS(5493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5425), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(5427), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(5429), 1, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(5433), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5435), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5437), 1, - anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5517), 1, anon_sym_QMARK_QMARK, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5461), 1, + ACTIONS(5519), 1, sym__ternary_qmark, - STATE(2595), 1, - sym_comment, - STATE(2830), 1, + STATE(2313), 1, sym_type_arguments, - STATE(6311), 1, + STATE(2458), 1, + sym_comment, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5405), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5413), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5423), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5431), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5441), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5443), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5439), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5451), 4, - sym__automatic_semicolon, + ACTIONS(5525), 4, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [44464] = 15, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [45400] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5467), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5483), 1, anon_sym_LT, - STATE(2596), 1, - sym_comment, - STATE(2830), 1, + ACTIONS(5491), 1, + anon_sym_AMP_AMP, + ACTIONS(5493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5495), 1, + anon_sym_GT_GT, + ACTIONS(5499), 1, + anon_sym_AMP, + ACTIONS(5501), 1, + anon_sym_CARET, + ACTIONS(5503), 1, + anon_sym_PIPE, + ACTIONS(5507), 1, + anon_sym_PERCENT, + ACTIONS(5509), 1, + anon_sym_STAR_STAR, + ACTIONS(5517), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5519), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(6311), 1, + STATE(2459), 1, + sym_comment, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3272), 2, + ACTIONS(5485), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5489), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5497), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5513), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5515), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5463), 12, + ACTIONS(5511), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5527), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [45516] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2460), 1, + sym_comment, + ACTIONS(5529), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266151,15 +254525,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5465), 20, - sym__automatic_semicolon, + ACTIONS(5531), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -266173,219 +254555,252 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [44542] = 36, + anon_sym_implements, + [45574] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5472), 1, - anon_sym_COMMA, - ACTIONS(5478), 1, + ACTIONS(5537), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5539), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5541), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5547), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5549), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5553), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5557), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5565), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5567), 1, sym__ternary_qmark, - STATE(2597), 1, + STATE(2461), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(5685), 1, - aux_sym_sequence_expression_repeat1, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5533), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5535), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5476), 2, + ACTIONS(5543), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5551), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5561), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5563), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5559), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5525), 4, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, anon_sym_SEMI, - ACTIONS(5484), 2, + [45690] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5537), 1, + anon_sym_AMP_AMP, + ACTIONS(5539), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5541), 1, + anon_sym_GT_GT, + ACTIONS(5545), 1, + anon_sym_AMP, + ACTIONS(5547), 1, + anon_sym_CARET, + ACTIONS(5549), 1, + anon_sym_PIPE, + ACTIONS(5553), 1, + anon_sym_PERCENT, + ACTIONS(5555), 1, + anon_sym_STAR_STAR, + ACTIONS(5557), 1, + anon_sym_LT, + ACTIONS(5565), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5567), 1, + sym__ternary_qmark, + STATE(2462), 1, + sym_comment, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5533), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5535), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5543), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5551), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5563), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5559), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [44662] = 5, + ACTIONS(5527), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [45806] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2598), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5541), 1, + anon_sym_GT_GT, + ACTIONS(5553), 1, + anon_sym_PERCENT, + ACTIONS(5555), 1, + anon_sym_STAR_STAR, + ACTIONS(5557), 1, + anon_sym_LT, + STATE(2463), 1, sym_comment, - ACTIONS(2184), 13, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5533), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5543), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5551), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2188), 31, + ACTIONS(5569), 16, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [44720] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5149), 1, - anon_sym_STAR, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, - anon_sym_COMMA, - ACTIONS(5271), 1, - anon_sym_RBRACE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - STATE(2599), 1, - sym_comment, - STATE(4882), 1, - sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5512), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [44806] = 5, + [45896] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2600), 1, + STATE(2464), 1, sym_comment, - ACTIONS(2290), 13, + ACTIONS(2178), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266399,18 +254814,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2294), 31, + ACTIONS(2180), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -266430,110 +254845,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [44864] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5514), 1, - anon_sym_STAR, - ACTIONS(5516), 1, - anon_sym_LBRACE, - ACTIONS(5518), 1, - anon_sym_async, - ACTIONS(5520), 1, - anon_sym_readonly, - STATE(2601), 1, - sym_comment, - STATE(3673), 1, - sym_statement_block, - STATE(3783), 1, - sym_override_modifier, - STATE(4070), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5522), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4492), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [44952] = 8, + anon_sym_PIPE_RBRACE, + [45954] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4973), 1, - anon_sym_extends, - STATE(2602), 1, + ACTIONS(5575), 1, + anon_sym_EQ, + STATE(2465), 1, sym_comment, - ACTIONS(5524), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5527), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(5573), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 28, + ACTIONS(5577), 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, @@ -266555,82 +254900,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45016] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5149), 1, - anon_sym_STAR, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, - anon_sym_COMMA, - ACTIONS(5161), 1, - anon_sym_async, - ACTIONS(5202), 1, - anon_sym_RBRACE, - ACTIONS(5530), 1, - anon_sym_LBRACK, - STATE(2603), 1, - sym_comment, - STATE(4103), 1, - sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5165), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4492), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [45104] = 5, + [46014] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2146), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2604), 1, + STATE(2466), 1, sym_comment, - ACTIONS(2252), 13, + ACTIONS(2144), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266644,18 +254923,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2254), 31, - sym__automatic_semicolon, + ACTIONS(2150), 30, 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_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -266675,59 +254953,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [45162] = 20, + anon_sym_implements, + [46074] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5149), 1, + ACTIONS(5037), 1, anon_sym_STAR, - ACTIONS(5151), 1, + ACTIONS(5039), 1, anon_sym_EQ, - ACTIONS(5153), 1, + ACTIONS(5041), 1, anon_sym_COMMA, - ACTIONS(5161), 1, - anon_sym_async, - ACTIONS(5271), 1, + ACTIONS(5231), 1, anon_sym_RBRACE, - ACTIONS(5530), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(2605), 1, + STATE(2467), 1, sym_comment, - STATE(4103), 1, + STATE(4693), 1, sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3991), 2, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(5165), 2, + ACTIONS(5581), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4492), 20, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -266744,217 +255021,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [45250] = 36, + [46160] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5472), 1, - anon_sym_COMMA, - ACTIONS(5478), 1, - anon_sym_AMP_AMP, - ACTIONS(5480), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, - anon_sym_GT_GT, - ACTIONS(5486), 1, - anon_sym_AMP, - ACTIONS(5488), 1, - anon_sym_CARET, - ACTIONS(5490), 1, - anon_sym_PIPE, - ACTIONS(5494), 1, - anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5583), 1, anon_sym_LT, - ACTIONS(5506), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, - sym__ternary_qmark, - STATE(2606), 1, + STATE(2468), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(5685), 1, - aux_sym_sequence_expression_repeat1, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5474), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5492), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5532), 2, + ACTIONS(5569), 19, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, anon_sym_SEMI, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5500), 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [45370] = 36, + anon_sym_satisfies, + [46240] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5472), 1, - anon_sym_COMMA, - ACTIONS(5478), 1, - anon_sym_AMP_AMP, - ACTIONS(5480), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5541), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5547), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5549), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5553), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5557), 1, anon_sym_LT, - ACTIONS(5506), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, - sym__ternary_qmark, - STATE(2607), 1, + ACTIONS(5571), 1, + anon_sym_BANG, + STATE(2469), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(5685), 1, - aux_sym_sequence_expression_repeat1, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5533), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5535), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5543), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5551), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5563), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5534), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5559), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [45490] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5536), 1, - anon_sym_LT, - STATE(2608), 1, - sym_comment, - STATE(2830), 1, - sym_type_arguments, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5463), 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(5465), 20, + ACTIONS(5569), 10, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -266963,26 +255159,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_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, - [45568] = 5, + [46344] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2609), 1, + STATE(2470), 1, sym_comment, - ACTIONS(5539), 13, + ACTIONS(2310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266996,7 +255182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5541), 31, + ACTIONS(2314), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -267028,14 +255214,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45626] = 5, + [46402] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2610), 1, + STATE(2471), 1, sym_comment, - ACTIONS(2240), 13, + ACTIONS(2294), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267049,7 +255235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2244), 31, + ACTIONS(2298), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -267081,96 +255267,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [45684] = 34, + [46460] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5419), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5537), 1, anon_sym_AMP_AMP, - ACTIONS(5421), 1, + ACTIONS(5541), 1, anon_sym_GT_GT, - ACTIONS(5425), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5427), 1, + ACTIONS(5547), 1, anon_sym_CARET, - ACTIONS(5429), 1, + ACTIONS(5549), 1, anon_sym_PIPE, - ACTIONS(5433), 1, + ACTIONS(5553), 1, anon_sym_PERCENT, - ACTIONS(5435), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5437), 1, + ACTIONS(5557), 1, anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(5571), 1, + anon_sym_BANG, + STATE(2472), 1, + sym_comment, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5533), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5535), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5543), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5551), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5561), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5563), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5559), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5569), 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, + [46566] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, anon_sym_as, - ACTIONS(5453), 1, + ACTIONS(5422), 1, anon_sym_BANG, - ACTIONS(5455), 1, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_AMP_AMP, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5438), 1, + anon_sym_GT_GT, + ACTIONS(5442), 1, + anon_sym_AMP, + ACTIONS(5444), 1, + anon_sym_CARET, + ACTIONS(5446), 1, + anon_sym_PIPE, + ACTIONS(5450), 1, + anon_sym_PERCENT, + ACTIONS(5452), 1, + anon_sym_STAR_STAR, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5459), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5461), 1, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2611), 1, + ACTIONS(5586), 1, + anon_sym_COMMA, + ACTIONS(5589), 1, + anon_sym_RBRACE, + STATE(2473), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5405), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5413), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5423), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5431), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5441), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5443), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3272), 2, + ACTIONS(5591), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5439), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5543), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [45800] = 5, + [46686] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2612), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5597), 1, + anon_sym_LT, + STATE(2474), 1, sym_comment, - ACTIONS(2210), 13, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5593), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267181,176 +255468,293 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2214), 31, + ACTIONS(5595), 20, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_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, + [46764] = 21, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4943), 1, anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5495), 1, + anon_sym_GT_GT, + ACTIONS(5507), 1, + anon_sym_PERCENT, + ACTIONS(5509), 1, + anon_sym_STAR_STAR, + STATE(2313), 1, + sym_type_arguments, + STATE(2475), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5497), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5505), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 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(5569), 16, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_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, + [46854] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5509), 1, + anon_sym_STAR_STAR, + ACTIONS(5600), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2476), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 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(5569), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [45858] = 34, + [46934] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5419), 1, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5421), 1, + ACTIONS(5493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5425), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(5427), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(5429), 1, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(5433), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5435), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5437), 1, - anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5517), 1, anon_sym_QMARK_QMARK, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5461), 1, + ACTIONS(5519), 1, sym__ternary_qmark, - STATE(2613), 1, - sym_comment, - STATE(2830), 1, + STATE(2313), 1, sym_type_arguments, - STATE(6311), 1, + STATE(2477), 1, + sym_comment, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5405), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5413), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5423), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5431), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5441), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5443), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5439), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5545), 4, - sym__automatic_semicolon, + ACTIONS(5603), 4, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [45974] = 21, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [47050] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5421), 1, - anon_sym_GT_GT, - ACTIONS(5433), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5553), 1, anon_sym_PERCENT, - ACTIONS(5435), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5437), 1, + ACTIONS(5583), 1, anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - STATE(2614), 1, + STATE(2478), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5405), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5533), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5423), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5431), 2, + ACTIONS(5551), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5409), 7, + ACTIONS(5571), 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(5407), 16, + ACTIONS(5569), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -267359,6 +255763,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -267367,421 +255773,920 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [46064] = 5, + [47136] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2615), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5495), 1, + anon_sym_GT_GT, + ACTIONS(5499), 1, + anon_sym_AMP, + ACTIONS(5501), 1, + anon_sym_CARET, + ACTIONS(5503), 1, + anon_sym_PIPE, + ACTIONS(5507), 1, + anon_sym_PERCENT, + ACTIONS(5509), 1, + anon_sym_STAR_STAR, + ACTIONS(5571), 1, + anon_sym_BANG, + STATE(2313), 1, + sym_type_arguments, + STATE(2479), 1, sym_comment, - ACTIONS(2296), 13, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, + ACTIONS(5497), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5513), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5515), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5511), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5569), 10, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [47240] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, + anon_sym_AMP_AMP, + ACTIONS(5495), 1, anon_sym_GT_GT, + ACTIONS(5499), 1, anon_sym_AMP, + ACTIONS(5501), 1, + anon_sym_CARET, + ACTIONS(5503), 1, anon_sym_PIPE, + ACTIONS(5507), 1, + anon_sym_PERCENT, + ACTIONS(5509), 1, + anon_sym_STAR_STAR, + ACTIONS(5571), 1, + anon_sym_BANG, + STATE(2313), 1, + sym_type_arguments, + STATE(2480), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5489), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5497), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2298), 31, - sym__automatic_semicolon, + ACTIONS(5515), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5511), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5569), 9, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [47346] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + ACTIONS(4943), 1, anon_sym_LBRACK, + ACTIONS(4945), 1, anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5507), 1, + anon_sym_PERCENT, + ACTIONS(5509), 1, + anon_sym_STAR_STAR, + ACTIONS(5600), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2481), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5505), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 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(5569), 18, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [46122] = 36, + [47432] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5478), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - ACTIONS(5547), 1, + ACTIONS(5586), 1, anon_sym_COMMA, - ACTIONS(5550), 1, + ACTIONS(5589), 1, anon_sym_RBRACE, - STATE(2616), 1, + STATE(2482), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5552), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5521), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [46242] = 34, + [47552] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5495), 1, + anon_sym_GT_GT, + ACTIONS(5507), 1, + anon_sym_PERCENT, + ACTIONS(5509), 1, + anon_sym_STAR_STAR, + STATE(2313), 1, + sym_type_arguments, + STATE(2483), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5489), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5497), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5513), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5515), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5511), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5571), 3, anon_sym_BANG, - ACTIONS(5459), 1, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5569), 11, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - ACTIONS(5478), 1, + [47650] = 36, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2617), 1, + ACTIONS(5589), 1, + anon_sym_RBRACE, + ACTIONS(5605), 1, + anon_sym_COMMA, + STATE(2484), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5525), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5554), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [46358] = 34, + [47770] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5478), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2618), 1, + ACTIONS(5608), 1, + anon_sym_COMMA, + ACTIONS(5611), 1, + anon_sym_RBRACE, + STATE(2485), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5525), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5556), 4, - sym__automatic_semicolon, + [47890] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5368), 1, + anon_sym_extends, + STATE(2486), 1, + sym_comment, + ACTIONS(5613), 2, anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5616), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4238), 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(4242), 28, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_SEMI, - [46474] = 34, + 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, + [47954] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, - anon_sym_AMP_AMP, - ACTIONS(5566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(5576), 1, - anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - ACTIONS(5592), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, + STATE(2313), 1, + sym_type_arguments, + STATE(2487), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5489), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5497), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5513), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5515), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5571), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5511), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5569), 10, sym__ternary_qmark, - STATE(2461), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [48056] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5495), 1, + anon_sym_GT_GT, + ACTIONS(5499), 1, + anon_sym_AMP, + ACTIONS(5507), 1, + anon_sym_PERCENT, + ACTIONS(5509), 1, + anon_sym_STAR_STAR, + STATE(2313), 1, sym_type_arguments, - STATE(2619), 1, + STATE(2488), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5571), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5560), 4, + ACTIONS(5569), 11, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - [46590] = 16, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [48156] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5435), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5541), 1, + anon_sym_GT_GT, + ACTIONS(5553), 1, + anon_sym_PERCENT, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5447), 1, + ACTIONS(5557), 1, + anon_sym_LT, + STATE(2489), 1, + sym_comment, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5533), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5535), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5543), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5551), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5561), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5563), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5559), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5571), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5569), 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, + [48254] = 26, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5596), 1, + ACTIONS(5541), 1, + anon_sym_GT_GT, + ACTIONS(5545), 1, + anon_sym_AMP, + ACTIONS(5553), 1, + anon_sym_PERCENT, + ACTIONS(5555), 1, + anon_sym_STAR_STAR, + ACTIONS(5557), 1, anon_sym_LT, - STATE(2620), 1, + STATE(2490), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3272), 2, + ACTIONS(5533), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5535), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5543), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5551), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5561), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5563), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5571), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5409), 12, + ACTIONS(5559), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5569), 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, + [48354] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2491), 1, + sym_comment, + ACTIONS(5575), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5619), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5573), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267792,65 +256697,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 19, - sym__automatic_semicolon, + ACTIONS(5577), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [46670] = 18, + [48416] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5603), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5507), 1, + anon_sym_PERCENT, + ACTIONS(5509), 1, + anon_sym_STAR_STAR, + ACTIONS(5600), 1, anon_sym_LT, - STATE(2621), 1, - sym_comment, - STATE(2830), 1, + STATE(2313), 1, sym_type_arguments, - STATE(6311), 1, + STATE(2492), 1, + sym_comment, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3272), 2, + ACTIONS(5485), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5599), 11, - anon_sym_STAR, + ACTIONS(5571), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -267858,94 +256770,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5601), 18, - sym__automatic_semicolon, + ACTIONS(5569), 18, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [46754] = 28, + anon_sym_satisfies, + [48500] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5409), 1, - anon_sym_BANG, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5421), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5541), 1, anon_sym_GT_GT, - ACTIONS(5425), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5427), 1, + ACTIONS(5547), 1, anon_sym_CARET, - ACTIONS(5429), 1, - anon_sym_PIPE, - ACTIONS(5433), 1, + ACTIONS(5553), 1, anon_sym_PERCENT, - ACTIONS(5435), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5437), 1, + ACTIONS(5557), 1, anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - STATE(2622), 1, + STATE(2493), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5405), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5533), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5413), 2, + ACTIONS(5535), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5423), 2, + ACTIONS(5543), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5431), 2, + ACTIONS(5551), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5441), 2, + ACTIONS(5561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5443), 2, + ACTIONS(5563), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, + ACTIONS(5571), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5439), 3, + ACTIONS(5559), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 10, + ACTIONS(5569), 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, + [48602] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5553), 1, + anon_sym_PERCENT, + ACTIONS(5555), 1, + anon_sym_STAR_STAR, + ACTIONS(5583), 1, + anon_sym_LT, + STATE(2494), 1, + sym_comment, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5533), 2, + anon_sym_STAR, + anon_sym_SLASH, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 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(5569), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -267954,16 +256922,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_satisfies, - [46858] = 5, + [48686] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2623), 1, + STATE(2495), 1, sym_comment, - ACTIONS(5606), 13, + ACTIONS(5622), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267977,7 +256953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5545), 31, + ACTIONS(5487), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -268009,98 +256985,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [46916] = 36, + [48744] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5472), 1, - anon_sym_COMMA, - ACTIONS(5478), 1, - anon_sym_AMP_AMP, - ACTIONS(5480), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, - anon_sym_GT_GT, - ACTIONS(5486), 1, - anon_sym_AMP, - ACTIONS(5488), 1, - anon_sym_CARET, - ACTIONS(5490), 1, - anon_sym_PIPE, - ACTIONS(5494), 1, - anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5583), 1, anon_sym_LT, - ACTIONS(5506), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, - sym__ternary_qmark, - STATE(2624), 1, + STATE(2496), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(5685), 1, - aux_sym_sequence_expression_repeat1, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5474), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5492), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5608), 2, + ACTIONS(5569), 17, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_COMMA, + anon_sym_of, anon_sym_SEMI, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5500), 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [47036] = 5, + [48830] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2625), 1, + STATE(2497), 1, sym_comment, - ACTIONS(5610), 13, + ACTIONS(2274), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268114,7 +257073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5612), 31, + ACTIONS(2278), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -268146,14 +257105,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47094] = 5, + [48888] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2626), 1, + STATE(2498), 1, sym_comment, - ACTIONS(5614), 13, + ACTIONS(2266), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268167,7 +257126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5616), 31, + ACTIONS(2270), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -268199,14 +257158,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47152] = 5, + [48946] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2627), 1, + STATE(2499), 1, sym_comment, - ACTIONS(5618), 13, + ACTIONS(2244), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268220,7 +257179,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5620), 31, + ACTIONS(2248), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -268252,105 +257211,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47210] = 19, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5433), 1, - anon_sym_PERCENT, - ACTIONS(5435), 1, - anon_sym_STAR_STAR, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5596), 1, - anon_sym_LT, - STATE(2628), 1, - sym_comment, - STATE(2830), 1, - sym_type_arguments, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5405), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5431), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 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(5407), 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, - [47296] = 16, + [49004] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5582), 1, - anon_sym_STAR_STAR, - ACTIONS(5622), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2629), 1, + STATE(2500), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 12, + ACTIONS(2154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268361,36 +257229,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 19, + ACTIONS(2158), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [47376] = 5, + anon_sym_implements, + [49062] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2630), 1, + STATE(2501), 1, sym_comment, - ACTIONS(5625), 13, + ACTIONS(2236), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268404,7 +257285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5627), 31, + ACTIONS(2240), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -268436,336 +257317,403 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [47434] = 35, + [49120] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5413), 1, - anon_sym_GT, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5419), 1, - anon_sym_AMP_AMP, - ACTIONS(5421), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5541), 1, anon_sym_GT_GT, - ACTIONS(5425), 1, - anon_sym_AMP, - ACTIONS(5427), 1, - anon_sym_CARET, - ACTIONS(5429), 1, - anon_sym_PIPE, - ACTIONS(5433), 1, + ACTIONS(5553), 1, anon_sym_PERCENT, - ACTIONS(5435), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5437), 1, + ACTIONS(5557), 1, anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5461), 1, - sym__ternary_qmark, - ACTIONS(5631), 1, - anon_sym_in, - STATE(2631), 1, + STATE(2502), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5405), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5533), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5423), 2, + ACTIONS(5535), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5543), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5431), 2, + ACTIONS(5551), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5441), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5443), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5439), 3, + ACTIONS(5559), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5629), 4, + ACTIONS(5571), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5569), 13, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [47552] = 25, + 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, + [49214] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5421), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5537), 1, + anon_sym_AMP_AMP, + ACTIONS(5539), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5541), 1, anon_sym_GT_GT, - ACTIONS(5433), 1, + ACTIONS(5545), 1, + anon_sym_AMP, + ACTIONS(5547), 1, + anon_sym_CARET, + ACTIONS(5549), 1, + anon_sym_PIPE, + ACTIONS(5553), 1, anon_sym_PERCENT, - ACTIONS(5435), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5437), 1, + ACTIONS(5557), 1, anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - STATE(2632), 1, + ACTIONS(5571), 1, + anon_sym_BANG, + STATE(2503), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5405), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5533), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5413), 2, + ACTIONS(5535), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5423), 2, + ACTIONS(5543), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5431), 2, + ACTIONS(5551), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5441), 2, + ACTIONS(5561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5443), 2, + ACTIONS(5563), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5409), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5439), 3, + ACTIONS(5559), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 11, + ACTIONS(5569), 8, 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, - [47650] = 26, + [49322] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5421), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5537), 1, + anon_sym_AMP_AMP, + ACTIONS(5539), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5541), 1, anon_sym_GT_GT, - ACTIONS(5425), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5433), 1, + ACTIONS(5547), 1, + anon_sym_CARET, + ACTIONS(5549), 1, + anon_sym_PIPE, + ACTIONS(5553), 1, anon_sym_PERCENT, - ACTIONS(5435), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5437), 1, + ACTIONS(5557), 1, anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - STATE(2633), 1, + ACTIONS(5565), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5567), 1, + sym__ternary_qmark, + STATE(2504), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5405), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5533), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5409), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5413), 2, + ACTIONS(5535), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5423), 2, + ACTIONS(5543), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5431), 2, + ACTIONS(5551), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5441), 2, + ACTIONS(5561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5443), 2, + ACTIONS(5563), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5439), 3, + ACTIONS(5559), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 11, + ACTIONS(5624), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [47750] = 34, + [49438] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5037), 1, + anon_sym_STAR, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5049), 1, + anon_sym_async, + ACTIONS(5370), 1, + anon_sym_RBRACE, + ACTIONS(5477), 1, + anon_sym_LBRACK, + STATE(2505), 1, + sym_comment, + STATE(3950), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5053), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4496), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [49526] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5564), 1, + ACTIONS(5537), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, + ACTIONS(5539), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5541), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5547), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(5549), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5553), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(5557), 1, anon_sym_LT, - ACTIONS(5592), 1, + ACTIONS(5565), 1, anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, + ACTIONS(5567), 1, sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(2634), 1, + STATE(2506), 1, sym_comment, - STATE(6297), 1, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5533), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5535), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5543), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5551), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5563), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5559), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5634), 4, + ACTIONS(5626), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [47866] = 10, + anon_sym_of, + anon_sym_SEMI, + [49642] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5636), 1, + ACTIONS(5628), 1, anon_sym_DOT, - ACTIONS(5638), 1, + ACTIONS(5630), 1, anon_sym_LT, - STATE(2635), 1, + ACTIONS(5632), 1, + anon_sym_is, + STATE(2507), 1, sym_comment, - STATE(3073), 1, - sym_arguments, - STATE(3074), 1, + STATE(2862), 1, sym_type_arguments, - ACTIONS(4951), 12, + ACTIONS(4913), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268778,12 +257726,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 27, + ACTIONS(4314), 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, @@ -268806,175 +257755,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [47934] = 27, + [49708] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5421), 1, - anon_sym_GT_GT, - ACTIONS(5425), 1, - anon_sym_AMP, - ACTIONS(5427), 1, - anon_sym_CARET, - ACTIONS(5433), 1, - anon_sym_PERCENT, - ACTIONS(5435), 1, - anon_sym_STAR_STAR, - ACTIONS(5437), 1, - anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - STATE(2636), 1, + STATE(2508), 1, sym_comment, - STATE(2830), 1, - sym_type_arguments, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5405), 2, + ACTIONS(5634), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5409), 2, anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5413), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5423), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5431), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5441), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5443), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5439), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 10, - sym__automatic_semicolon, + ACTIONS(5636), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [48036] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5415), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5417), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5472), 1, - anon_sym_COMMA, - ACTIONS(5478), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5480), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, - anon_sym_GT_GT, - ACTIONS(5486), 1, - anon_sym_AMP, - ACTIONS(5488), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5490), 1, - anon_sym_PIPE, - ACTIONS(5494), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, - anon_sym_LT, - ACTIONS(5506), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, - sym__ternary_qmark, - STATE(2637), 1, - sym_comment, - STATE(2830), 1, - sym_type_arguments, - STATE(5685), 1, - aux_sym_sequence_expression_repeat1, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [49766] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2509), 1, + sym_comment, + ACTIONS(5638), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5474), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5492), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5640), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5640), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5500), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [48156] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [49824] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5037), 1, + anon_sym_STAR, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5370), 1, + anon_sym_RBRACE, + ACTIONS(5579), 1, + anon_sym_LBRACK, + STATE(2510), 1, + sym_comment, + STATE(4693), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5581), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [49910] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5064), 1, - anon_sym_EQ, - STATE(2638), 1, + STATE(2511), 1, sym_comment, - ACTIONS(5062), 13, + ACTIONS(5642), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268988,7 +257949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5066), 30, + ACTIONS(5644), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -268996,6 +257957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -269019,36 +257981,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [48216] = 15, + [49968] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5642), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2639), 1, + STATE(2512), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5463), 12, + ACTIONS(5646), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -269059,15 +257999,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5465), 20, + ACTIONS(5648), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -269081,276 +258029,354 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [48294] = 34, + anon_sym_implements, + [50026] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5592), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(2640), 1, + STATE(2513), 1, sym_comment, - STATE(6297), 1, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5589), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5650), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5645), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [48410] = 18, + [50144] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5433), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5537), 1, + anon_sym_AMP_AMP, + ACTIONS(5539), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5541), 1, + anon_sym_GT_GT, + ACTIONS(5545), 1, + anon_sym_AMP, + ACTIONS(5547), 1, + anon_sym_CARET, + ACTIONS(5549), 1, + anon_sym_PIPE, + ACTIONS(5553), 1, anon_sym_PERCENT, - ACTIONS(5435), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5596), 1, + ACTIONS(5557), 1, anon_sym_LT, - STATE(2641), 1, + ACTIONS(5565), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5567), 1, + sym__ternary_qmark, + STATE(2514), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5405), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 10, - anon_sym_BANG, + ACTIONS(5533), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5535), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5543), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5551), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 18, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_LT_EQ, + ACTIONS(5563), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5559), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [48494] = 34, + ACTIONS(5652), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [50260] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5420), 1, + anon_sym_COMMA, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5478), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2642), 1, + STATE(2515), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5567), 1, + aux_sym_sequence_expression_repeat1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5654), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5647), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [48610] = 19, + [50380] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5420), 1, + anon_sym_COMMA, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5435), 1, + ACTIONS(5434), 1, + anon_sym_AMP_AMP, + ACTIONS(5436), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5438), 1, + anon_sym_GT_GT, + ACTIONS(5442), 1, + anon_sym_AMP, + ACTIONS(5444), 1, + anon_sym_CARET, + ACTIONS(5446), 1, + anon_sym_PIPE, + ACTIONS(5450), 1, + anon_sym_PERCENT, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5447), 1, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5462), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5596), 1, - anon_sym_LT, - STATE(2643), 1, + ACTIONS(5470), 1, + sym__ternary_qmark, + STATE(2516), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5567), 1, + aux_sym_sequence_expression_repeat1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5416), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5426), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5440), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5448), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5458), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5460), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3272), 2, + ACTIONS(5656), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5409), 11, + ACTIONS(5456), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [50500] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2517), 1, + sym_comment, + ACTIONS(2172), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -269359,44 +258385,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 17, - sym__automatic_semicolon, + ACTIONS(2174), 31, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [48696] = 10, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [50558] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5638), 1, - anon_sym_LT, - ACTIONS(5649), 1, - anon_sym_DOT, - STATE(2644), 1, + STATE(2518), 1, sym_comment, - STATE(3071), 1, - sym_arguments, - STATE(3072), 1, - sym_type_arguments, - ACTIONS(4939), 12, + ACTIONS(2166), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -269407,17 +258438,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4941), 27, - sym__automatic_semicolon, + ACTIONS(2168), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -269436,127 +258472,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [48764] = 36, + anon_sym_implements, + [50616] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, + STATE(2519), 1, + sym_comment, + ACTIONS(2288), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5478), 1, - anon_sym_AMP_AMP, - ACTIONS(5480), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(5486), 1, anon_sym_AMP, - ACTIONS(5488), 1, - anon_sym_CARET, - ACTIONS(5490), 1, anon_sym_PIPE, - ACTIONS(5494), 1, - anon_sym_PERCENT, - ACTIONS(5496), 1, - anon_sym_STAR_STAR, - ACTIONS(5498), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(5506), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2290), 31, + sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(5547), 1, + anon_sym_as, anon_sym_COMMA, - ACTIONS(5550), 1, anon_sym_RBRACE, - STATE(2645), 1, - sym_comment, - STATE(2830), 1, - sym_type_arguments, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5451), 2, - sym__automatic_semicolon, + anon_sym_else, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_while, anon_sym_SEMI, - ACTIONS(5470), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5474), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5484), 2, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5502), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5504), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5500), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [48884] = 18, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_PIPE_RBRACE, + [50674] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5651), 1, + ACTIONS(5509), 1, + anon_sym_STAR_STAR, + ACTIONS(5600), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2646), 1, + STATE(2520), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5599), 11, + ACTIONS(5571), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -269568,7 +258575,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5601), 18, + ACTIONS(5569), 17, sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, @@ -269580,349 +258587,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [48968] = 34, + [50760] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5478), 1, - anon_sym_AMP_AMP, - ACTIONS(5480), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, - anon_sym_GT_GT, - ACTIONS(5486), 1, - anon_sym_AMP, - ACTIONS(5488), 1, - anon_sym_CARET, - ACTIONS(5490), 1, - anon_sym_PIPE, - ACTIONS(5494), 1, - anon_sym_PERCENT, - ACTIONS(5496), 1, - anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5662), 1, anon_sym_LT, - ACTIONS(5506), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, - sym__ternary_qmark, - STATE(2647), 1, + STATE(2521), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5658), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5474), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5492), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5660), 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, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5500), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5645), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [49084] = 34, + [50844] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, - anon_sym_AMP_AMP, - ACTIONS(5566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, - anon_sym_AMP, - ACTIONS(5574), 1, - anon_sym_CARET, - ACTIONS(5576), 1, - anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - ACTIONS(5592), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, - sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2648), 1, + STATE(2522), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5590), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5647), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [49200] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5638), 1, - anon_sym_LT, - ACTIONS(5654), 1, - anon_sym_DOT, - STATE(2649), 1, - sym_comment, - STATE(3069), 1, - sym_arguments, - STATE(3070), 1, - sym_type_arguments, - ACTIONS(4250), 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(4240), 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, + ACTIONS(5511), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [49268] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2650), 1, - sym_comment, - ACTIONS(5656), 13, - anon_sym_STAR, + ACTIONS(5571), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5658), 31, + ACTIONS(5569), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [49326] = 5, + [50938] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2651), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, + anon_sym_AMP_AMP, + ACTIONS(5493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5495), 1, + anon_sym_GT_GT, + ACTIONS(5499), 1, + anon_sym_AMP, + ACTIONS(5501), 1, + anon_sym_CARET, + ACTIONS(5503), 1, + anon_sym_PIPE, + ACTIONS(5507), 1, + anon_sym_PERCENT, + ACTIONS(5509), 1, + anon_sym_STAR_STAR, + ACTIONS(5571), 1, + anon_sym_BANG, + STATE(2313), 1, + sym_type_arguments, + STATE(2523), 1, sym_comment, - ACTIONS(5660), 13, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5497), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5662), 31, + ACTIONS(5515), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5511), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5569), 8, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [49384] = 5, + [51046] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2652), 1, + STATE(2524), 1, sym_comment, - ACTIONS(5664), 13, + ACTIONS(5665), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -269936,7 +258829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5666), 31, + ACTIONS(5667), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -269968,348 +258861,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [49442] = 36, + [51104] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5453), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5472), 1, - anon_sym_COMMA, - ACTIONS(5478), 1, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, - anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5517), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5519), 1, sym__ternary_qmark, - STATE(2653), 1, - sym_comment, - STATE(2830), 1, + STATE(2313), 1, sym_type_arguments, - STATE(5685), 1, - aux_sym_sequence_expression_repeat1, - STATE(6311), 1, + STATE(2525), 1, + sym_comment, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5668), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3272), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [49562] = 36, + ACTIONS(5624), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [51220] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5420), 1, + anon_sym_COMMA, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5472), 1, - anon_sym_COMMA, - ACTIONS(5478), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2654), 1, + STATE(2526), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(5685), 1, + STATE(5567), 1, aux_sym_sequence_expression_repeat1, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5670), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5669), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [49682] = 36, + [51340] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5453), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5472), 1, - anon_sym_COMMA, - ACTIONS(5478), 1, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, - anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5517), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5519), 1, sym__ternary_qmark, - STATE(2655), 1, - sym_comment, - STATE(2830), 1, + STATE(2313), 1, sym_type_arguments, - STATE(5685), 1, - aux_sym_sequence_expression_repeat1, - STATE(6311), 1, + STATE(2527), 1, + sym_comment, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5474), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5484), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5492), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5502), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5504), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5672), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5500), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [49802] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5419), 1, - anon_sym_AMP_AMP, - ACTIONS(5421), 1, - anon_sym_GT_GT, - ACTIONS(5425), 1, - anon_sym_AMP, - ACTIONS(5427), 1, - anon_sym_CARET, - ACTIONS(5429), 1, - anon_sym_PIPE, - ACTIONS(5433), 1, - anon_sym_PERCENT, - ACTIONS(5435), 1, - anon_sym_STAR_STAR, - ACTIONS(5437), 1, - anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5461), 1, - sym__ternary_qmark, - STATE(2656), 1, - sym_comment, - STATE(2830), 1, - sym_type_arguments, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5405), 2, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5413), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5423), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5431), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5441), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5443), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5439), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5674), 4, - sym__automatic_semicolon, + ACTIONS(5626), 4, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [49918] = 5, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [51456] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2657), 1, + STATE(2528), 1, sym_comment, - ACTIONS(5676), 13, + ACTIONS(5671), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270323,7 +259130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5678), 31, + ACTIONS(5673), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -270355,169 +259162,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [49976] = 23, + [51514] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5421), 1, - anon_sym_GT_GT, - ACTIONS(5433), 1, - anon_sym_PERCENT, - ACTIONS(5435), 1, - anon_sym_STAR_STAR, - ACTIONS(5437), 1, - anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - STATE(2658), 1, - sym_comment, - STATE(2830), 1, - sym_type_arguments, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5405), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5413), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5423), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5431), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5439), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5409), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5407), 13, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(5418), 1, 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, - [50070] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5419), 1, - anon_sym_AMP_AMP, - ACTIONS(5421), 1, - anon_sym_GT_GT, - ACTIONS(5425), 1, - anon_sym_AMP, - ACTIONS(5427), 1, - anon_sym_CARET, - ACTIONS(5429), 1, - anon_sym_PIPE, - ACTIONS(5433), 1, - anon_sym_PERCENT, - ACTIONS(5435), 1, - anon_sym_STAR_STAR, - ACTIONS(5437), 1, - anon_sym_LT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5459), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5461), 1, - sym__ternary_qmark, - STATE(2659), 1, + ACTIONS(5675), 1, + anon_sym_LT, + STATE(2529), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5405), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5413), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5423), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5431), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5441), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5443), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5439), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5556), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [50186] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2660), 1, - sym_comment, - ACTIONS(5680), 13, + ACTIONS(5658), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -270526,23 +259207,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5682), 31, + ACTIONS(5660), 18, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -270556,19 +259228,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [50244] = 5, + [51598] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2661), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5682), 1, + anon_sym_LT, + STATE(2530), 1, sym_comment, - ACTIONS(2154), 13, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, + sym_optional_chain, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270579,23 +259265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2158), 31, + ACTIONS(5680), 22, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -270611,641 +259289,840 @@ 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, - [50302] = 36, + [51674] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5478), 1, + ACTIONS(5535), 1, + anon_sym_GT, + ACTIONS(5537), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5539), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5541), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5547), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5549), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5553), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5557), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5565), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5567), 1, sym__ternary_qmark, - ACTIONS(5550), 1, - anon_sym_RBRACE, - ACTIONS(5684), 1, - anon_sym_COMMA, - STATE(2662), 1, + ACTIONS(5687), 1, + anon_sym_in, + STATE(2531), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5533), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5543), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5551), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5563), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5543), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5559), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [50422] = 5, + ACTIONS(5685), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [51792] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2663), 1, - sym_comment, - ACTIONS(2312), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2316), 31, - sym__ternary_qmark, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5420), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5430), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5432), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5434), 1, anon_sym_AMP_AMP, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5438), 1, + anon_sym_GT_GT, + ACTIONS(5442), 1, + anon_sym_AMP, + ACTIONS(5444), 1, anon_sym_CARET, + ACTIONS(5446), 1, + anon_sym_PIPE, + ACTIONS(5450), 1, anon_sym_PERCENT, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5462), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, + sym__ternary_qmark, + STATE(2532), 1, + sym_comment, + STATE(2656), 1, + sym_type_arguments, + STATE(5567), 1, + aux_sym_sequence_expression_repeat1, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5416), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5426), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5440), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5448), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5458), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [50480] = 30, + ACTIONS(5690), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5456), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [51912] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5409), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, anon_sym_BANG, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5419), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5421), 1, + ACTIONS(5436), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5425), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5427), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5429), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5433), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5435), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5437), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5447), 1, + ACTIONS(5462), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5455), 1, - anon_sym_PIPE_PIPE, - STATE(2664), 1, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, + sym__ternary_qmark, + STATE(2533), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5405), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5413), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5423), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5431), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5441), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5443), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5439), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 8, + ACTIONS(5626), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [50588] = 5, + [52028] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2665), 1, - sym_comment, - ACTIONS(2246), 13, - anon_sym_STAR, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_AMP_AMP, + ACTIONS(5436), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5438), 1, anon_sym_GT_GT, + ACTIONS(5442), 1, anon_sym_AMP, + ACTIONS(5444), 1, + anon_sym_CARET, + ACTIONS(5446), 1, anon_sym_PIPE, + ACTIONS(5450), 1, + anon_sym_PERCENT, + ACTIONS(5452), 1, + anon_sym_STAR_STAR, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5462), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, + sym__ternary_qmark, + STATE(2534), 1, + sym_comment, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5416), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5426), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5440), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2248), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5460), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5456), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5624), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + [52144] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4943), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4945), 1, anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, + ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5495), 1, + anon_sym_GT_GT, + ACTIONS(5499), 1, + anon_sym_AMP, + ACTIONS(5501), 1, anon_sym_CARET, + ACTIONS(5503), 1, + anon_sym_PIPE, + ACTIONS(5507), 1, anon_sym_PERCENT, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5517), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5519), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2535), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5489), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5497), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5513), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5511), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [50646] = 34, + ACTIONS(5692), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [52260] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5419), 1, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5421), 1, + ACTIONS(5493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5425), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(5427), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(5429), 1, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(5433), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5435), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5437), 1, - anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5517), 1, anon_sym_QMARK_QMARK, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5461), 1, + ACTIONS(5519), 1, sym__ternary_qmark, - STATE(2666), 1, - sym_comment, - STATE(2830), 1, + STATE(2313), 1, sym_type_arguments, - STATE(6311), 1, + STATE(2536), 1, + sym_comment, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5405), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5413), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5423), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5431), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5441), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5443), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5439), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5687), 4, - sym__automatic_semicolon, + ACTIONS(5694), 4, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [50762] = 34, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [52376] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5419), 1, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5421), 1, + ACTIONS(5493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5425), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(5427), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(5429), 1, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(5433), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5435), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5437), 1, - anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5517), 1, anon_sym_QMARK_QMARK, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5461), 1, + ACTIONS(5519), 1, sym__ternary_qmark, - STATE(2667), 1, - sym_comment, - STATE(2830), 1, + STATE(2313), 1, sym_type_arguments, - STATE(6311), 1, + STATE(2537), 1, + sym_comment, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5405), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5413), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5423), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5431), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5441), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5443), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5439), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5689), 4, - sym__automatic_semicolon, + ACTIONS(5696), 4, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [50878] = 34, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [52492] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5453), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5478), 1, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, - anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5517), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5519), 1, sym__ternary_qmark, - STATE(2668), 1, - sym_comment, - STATE(2830), 1, + STATE(2313), 1, sym_type_arguments, - STATE(6311), 1, + STATE(2538), 1, + sym_comment, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5634), 4, - sym__automatic_semicolon, + ACTIONS(5698), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - [50994] = 5, + anon_sym_COLON, + anon_sym_RBRACK, + [52608] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2669), 1, - sym_comment, - ACTIONS(2252), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2254), 31, - sym__ternary_qmark, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5420), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5430), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5432), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5434), 1, anon_sym_AMP_AMP, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5438), 1, + anon_sym_GT_GT, + ACTIONS(5442), 1, + anon_sym_AMP, + ACTIONS(5444), 1, anon_sym_CARET, + ACTIONS(5446), 1, + anon_sym_PIPE, + ACTIONS(5450), 1, anon_sym_PERCENT, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(5466), 1, anon_sym_BQUOTE, + ACTIONS(5468), 1, anon_sym_satisfies, - anon_sym_implements, - [51052] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5638), 1, - anon_sym_LT, - ACTIONS(5691), 1, - anon_sym_DOT, - ACTIONS(5693), 1, - anon_sym_is, - STATE(2670), 1, + ACTIONS(5470), 1, + sym__ternary_qmark, + STATE(2539), 1, sym_comment, - STATE(2952), 1, + STATE(2656), 1, sym_type_arguments, - ACTIONS(4945), 12, + STATE(5567), 1, + aux_sym_sequence_expression_repeat1, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5416), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5440), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4312), 28, + ACTIONS(5460), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5700), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5456), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [52728] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, + ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5495), 1, + anon_sym_GT_GT, + ACTIONS(5499), 1, + anon_sym_AMP, + ACTIONS(5501), 1, anon_sym_CARET, + ACTIONS(5503), 1, + anon_sym_PIPE, + ACTIONS(5507), 1, anon_sym_PERCENT, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5517), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5519), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2540), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5489), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5497), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5513), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5511), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [51118] = 5, + ACTIONS(5702), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [52844] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2671), 1, + STATE(2541), 1, sym_comment, - ACTIONS(2258), 13, + ACTIONS(2228), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271259,18 +260136,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2260), 31, - sym__automatic_semicolon, + ACTIONS(2232), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -271290,17 +260167,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [51176] = 6, + anon_sym_implements, + [52902] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5697), 1, - anon_sym_EQ, - STATE(2672), 1, + STATE(2542), 1, sym_comment, - ACTIONS(5695), 13, + ACTIONS(2214), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271314,7 +260189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5699), 30, + ACTIONS(2218), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -271322,6 +260197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -271345,14 +260221,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [51236] = 5, + [52960] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2673), 1, + STATE(2543), 1, sym_comment, - ACTIONS(5701), 13, + ACTIONS(2206), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271366,7 +260242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5703), 31, + ACTIONS(2210), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -271398,14 +260274,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [51294] = 5, + [53018] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2674), 1, + STATE(2544), 1, sym_comment, - ACTIONS(5705), 13, + ACTIONS(2300), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271419,7 +260295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5687), 31, + ACTIONS(2302), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -271451,14 +260327,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [51352] = 5, + [53076] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2675), 1, + STATE(2545), 1, sym_comment, - ACTIONS(2296), 13, + ACTIONS(2190), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271472,7 +260348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2298), 31, + ACTIONS(2194), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -271504,436 +260380,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [51410] = 36, + [53134] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5420), 1, + anon_sym_COMMA, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5472), 1, - anon_sym_COMMA, - ACTIONS(5478), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2676), 1, + STATE(2546), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(5685), 1, + STATE(5567), 1, aux_sym_sequence_expression_repeat1, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5707), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5704), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [51530] = 36, + [53254] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5472), 1, - anon_sym_COMMA, - ACTIONS(5478), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5506), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, - sym__ternary_qmark, - STATE(2677), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5571), 1, + anon_sym_BANG, + STATE(2547), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(5685), 1, - aux_sym_sequence_expression_repeat1, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5709), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5500), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [51650] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, - anon_sym_AMP_AMP, - ACTIONS(5566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, - anon_sym_GT_GT, - ACTIONS(5572), 1, - anon_sym_AMP, - ACTIONS(5574), 1, - anon_sym_CARET, - ACTIONS(5576), 1, - anon_sym_PIPE, - ACTIONS(5580), 1, - anon_sym_PERCENT, - ACTIONS(5582), 1, - anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - ACTIONS(5592), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(2678), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5558), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5562), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5570), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5588), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5590), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5556), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [51766] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2679), 1, - sym_comment, - ACTIONS(4218), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4222), 31, + ACTIONS(5569), 8, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + anon_sym_SEMI, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [51824] = 34, + [53362] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5478), 1, - anon_sym_AMP_AMP, - ACTIONS(5480), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, - anon_sym_AMP, - ACTIONS(5488), 1, - anon_sym_CARET, - ACTIONS(5490), 1, - anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5506), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, - sym__ternary_qmark, - STATE(2680), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + STATE(2548), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5504), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5500), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5711), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [51940] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5496), 1, - anon_sym_STAR_STAR, - ACTIONS(5713), 1, - anon_sym_LT, - STATE(2681), 1, - sym_comment, - STATE(2830), 1, - sym_type_arguments, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5409), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5456), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5571), 5, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 19, + ACTIONS(5569), 13, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -271942,25 +260608,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_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, - [52020] = 5, + [53456] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2682), 1, + STATE(2549), 1, sym_comment, - ACTIONS(5716), 13, + ACTIONS(5252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271974,7 +260634,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5718), 31, + ACTIONS(5254), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -272006,16 +260666,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [52078] = 6, + [53514] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2144), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2683), 1, + STATE(2550), 1, sym_comment, - ACTIONS(2142), 13, + ACTIONS(5706), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272029,7 +260687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2148), 30, + ACTIONS(5708), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -272037,6 +260695,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -272060,97 +260719,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [52138] = 34, + [53572] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5452), 1, + anon_sym_STAR_STAR, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5478), 1, - anon_sym_AMP_AMP, - ACTIONS(5480), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, - anon_sym_GT_GT, - ACTIONS(5486), 1, - anon_sym_AMP, - ACTIONS(5488), 1, - anon_sym_CARET, - ACTIONS(5490), 1, - anon_sym_PIPE, - ACTIONS(5494), 1, - anon_sym_PERCENT, - ACTIONS(5496), 1, - anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5710), 1, anon_sym_LT, - ACTIONS(5506), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, - sym__ternary_qmark, - STATE(2684), 1, + STATE(2551), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5474), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5492), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5500), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5560), 4, + ACTIONS(5569), 17, sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [52254] = 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [53658] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2685), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5450), 1, + anon_sym_PERCENT, + ACTIONS(5452), 1, + anon_sym_STAR_STAR, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5710), 1, + anon_sym_LT, + STATE(2552), 1, sym_comment, - ACTIONS(2178), 13, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5416), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -272159,822 +260831,694 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2180), 31, + ACTIONS(5569), 18, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [52312] = 34, + [53742] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, - anon_sym_AMP_AMP, - ACTIONS(5566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5576), 1, - anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5592), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(2686), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + STATE(2553), 1, sym_comment, - STATE(6297), 1, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5571), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5720), 4, + ACTIONS(5569), 10, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [52428] = 36, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [53844] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5472), 1, - anon_sym_COMMA, - ACTIONS(5478), 1, - anon_sym_AMP_AMP, - ACTIONS(5480), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5488), 1, - anon_sym_CARET, - ACTIONS(5490), 1, - anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5506), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, - sym__ternary_qmark, - STATE(2687), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + STATE(2554), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(5685), 1, - aux_sym_sequence_expression_repeat1, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5722), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3272), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5571), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [52548] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5149), 1, - anon_sym_STAR, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, - anon_sym_COMMA, - ACTIONS(5202), 1, - anon_sym_RBRACE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - STATE(2688), 1, - sym_comment, - STATE(4882), 1, - sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5512), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [52634] = 20, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(5569), 11, sym__automatic_semicolon, - ACTIONS(5149), 1, - anon_sym_STAR, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(5161), 1, - anon_sym_async, - ACTIONS(5193), 1, anon_sym_RBRACE, - ACTIONS(5530), 1, - anon_sym_LBRACK, - STATE(2689), 1, - sym_comment, - STATE(4103), 1, - sym__property_name, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(6287), 1, - aux_sym_object_repeat1, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5165), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4492), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [52722] = 34, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [53944] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5419), 1, - anon_sym_AMP_AMP, - ACTIONS(5421), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5425), 1, - anon_sym_AMP, - ACTIONS(5427), 1, - anon_sym_CARET, - ACTIONS(5429), 1, - anon_sym_PIPE, - ACTIONS(5433), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5435), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5437), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5461), 1, - sym__ternary_qmark, - STATE(2690), 1, + STATE(2555), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5405), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5413), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5423), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5431), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5441), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5443), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5439), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5645), 4, + ACTIONS(5571), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5569), 11, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - [52838] = 34, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [54042] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2556), 1, + sym_comment, + ACTIONS(5713), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5715), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [54100] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5450), 1, + anon_sym_PERCENT, + ACTIONS(5452), 1, + anon_sym_STAR_STAR, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, + ACTIONS(5710), 1, + anon_sym_LT, + STATE(2557), 1, + sym_comment, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5416), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5448), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 8, anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5478), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5569), 18, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, - ACTIONS(5480), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + 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, + [54186] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_AMP_AMP, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5506), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, - sym__ternary_qmark, - STATE(2691), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5571), 1, + anon_sym_BANG, + STATE(2558), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5451), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [52954] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(5569), 9, sym__automatic_semicolon, - ACTIONS(5149), 1, - anon_sym_STAR, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(5193), 1, anon_sym_RBRACE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - STATE(2692), 1, - sym_comment, - STATE(4882), 1, - sym__property_name, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(6287), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5512), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [53040] = 28, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [54292] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5409), 1, - anon_sym_BANG, - ACTIONS(5568), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(5454), 1, anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2693), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5571), 1, + anon_sym_BANG, + STATE(2559), 1, sym_comment, - STATE(6297), 1, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 10, + ACTIONS(5569), 10, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [53144] = 34, + [54396] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5564), 1, + ACTIONS(5537), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, + ACTIONS(5539), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5541), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5547), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(5549), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5553), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(5557), 1, anon_sym_LT, - ACTIONS(5592), 1, + ACTIONS(5565), 1, anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, + ACTIONS(5567), 1, sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(2694), 1, + STATE(2560), 1, sym_comment, - STATE(6297), 1, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5533), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5535), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5543), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5551), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5563), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5559), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5711), 4, + ACTIONS(5692), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [53260] = 34, + anon_sym_of, + anon_sym_SEMI, + [54512] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5478), 1, + ACTIONS(5537), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5539), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5541), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5547), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5549), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5553), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5557), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5565), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5567), 1, sym__ternary_qmark, - STATE(2695), 1, + STATE(2561), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5533), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5535), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5543), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5551), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5563), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5559), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5724), 4, + ACTIONS(5523), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [53376] = 5, + [54628] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2696), 1, + STATE(2562), 1, sym_comment, - ACTIONS(5726), 13, + ACTIONS(5717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272988,7 +261532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5728), 31, + ACTIONS(5719), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -273020,14 +261564,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53434] = 5, + [54686] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2697), 1, + STATE(2563), 1, sym_comment, - ACTIONS(2274), 13, + ACTIONS(5721), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273041,7 +261585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2276), 31, + ACTIONS(5723), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -273073,14 +261617,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53492] = 5, + [54744] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2698), 1, + STATE(2564), 1, sym_comment, - ACTIONS(2204), 13, + ACTIONS(5725), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273094,7 +261638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2206), 31, + ACTIONS(5727), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -273126,14 +261670,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [53550] = 5, + [54802] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2699), 1, + STATE(2565), 1, sym_comment, - ACTIONS(2246), 13, + ACTIONS(5729), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273147,18 +261691,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2248), 31, - sym__automatic_semicolon, + ACTIONS(5731), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -273178,314 +261722,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [53608] = 29, + anon_sym_implements, + [54860] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5409), 1, - anon_sym_BANG, - ACTIONS(5564), 1, - anon_sym_AMP_AMP, - ACTIONS(5568), 1, - anon_sym_GT_GT, - ACTIONS(5572), 1, - anon_sym_AMP, - ACTIONS(5574), 1, - anon_sym_CARET, - ACTIONS(5576), 1, - anon_sym_PIPE, - ACTIONS(5580), 1, - anon_sym_PERCENT, - ACTIONS(5582), 1, - anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2700), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5562), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5570), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5588), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5590), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5586), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 9, - sym__ternary_qmark, + ACTIONS(5418), 1, anon_sym_as, + ACTIONS(5420), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [53714] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5478), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2701), 1, + STATE(2566), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5567), 1, + aux_sym_sequence_expression_repeat1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5733), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5674), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [53830] = 19, + [54980] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5580), 1, - anon_sym_PERCENT, - ACTIONS(5582), 1, - anon_sym_STAR_STAR, - ACTIONS(5622), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5483), 1, anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2702), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5578), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 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(5407), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(5491), 1, anon_sym_AMP_AMP, + ACTIONS(5493), 1, 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, - [53916] = 25, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5568), 1, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5580), 1, + ACTIONS(5499), 1, + anon_sym_AMP, + ACTIONS(5501), 1, + anon_sym_CARET, + ACTIONS(5503), 1, + anon_sym_PIPE, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - STATE(2461), 1, + ACTIONS(5517), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5519), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(2703), 1, + STATE(2567), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5409), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5586), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 11, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5475), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_COLON, anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [54014] = 5, + [55096] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2704), 1, + STATE(2568), 1, sym_comment, - ACTIONS(5730), 13, + ACTIONS(5735), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273499,7 +261910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5732), 31, + ACTIONS(5737), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -273531,83 +261942,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [54072] = 21, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5568), 1, - anon_sym_GT_GT, - ACTIONS(5580), 1, - anon_sym_PERCENT, - ACTIONS(5582), 1, - anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2705), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5570), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5578), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 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(5407), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_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, - [54162] = 5, + [55154] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2706), 1, + STATE(2569), 1, sym_comment, - ACTIONS(5734), 13, + ACTIONS(5739), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273621,7 +261963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5736), 31, + ACTIONS(5741), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -273653,421 +261995,467 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [54220] = 34, + [55212] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5420), 1, + anon_sym_COMMA, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5592), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(2707), 1, + STATE(2570), 1, sym_comment, - STATE(6297), 1, + STATE(2656), 1, + sym_type_arguments, + STATE(5567), 1, + aux_sym_sequence_expression_repeat1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5743), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5545), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [54336] = 35, + [55332] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5420), 1, + anon_sym_COMMA, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5478), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2708), 1, + STATE(2571), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5567), 1, + aux_sym_sequence_expression_repeat1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5550), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5738), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5745), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54454] = 36, + [55452] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5420), 1, + anon_sym_COMMA, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5472), 1, - anon_sym_COMMA, - ACTIONS(5478), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2709), 1, + STATE(2572), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(5685), 1, + STATE(5567), 1, aux_sym_sequence_expression_repeat1, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5740), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5747), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [54574] = 34, + [55572] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5592), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(2710), 1, + STATE(2573), 1, sym_comment, - STATE(6297), 1, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5543), 4, + ACTIONS(5652), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [54690] = 28, + anon_sym_SEMI, + [55688] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5409), 1, + STATE(2574), 1, + sym_comment, + ACTIONS(5749), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5411), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5751), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5415), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5417), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5482), 1, - anon_sym_GT_GT, - ACTIONS(5486), 1, - anon_sym_AMP, - ACTIONS(5488), 1, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5490), 1, - anon_sym_PIPE, - ACTIONS(5494), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, - anon_sym_LT, - STATE(2711), 1, - sym_comment, - STATE(2830), 1, - sym_type_arguments, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [55746] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5306), 1, + anon_sym_extends, + STATE(2575), 1, + sym_comment, + ACTIONS(5753), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5756), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5729), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5474), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(5484), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5492), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5500), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 10, - sym__automatic_semicolon, + ACTIONS(5731), 28, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [54794] = 5, + anon_sym_implements, + [55810] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2712), 1, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5630), 1, + anon_sym_LT, + ACTIONS(5759), 1, + anon_sym_DOT, + STATE(2576), 1, sym_comment, - ACTIONS(5742), 13, + STATE(2977), 1, + sym_arguments, + STATE(2979), 1, + sym_type_arguments, + ACTIONS(4256), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274078,22 +262466,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5634), 31, + ACTIONS(4244), 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_AMP_AMP, anon_sym_PIPE_PIPE, @@ -274112,92 +262495,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [54852] = 29, + anon_sym_extends, + [55878] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5409), 1, - anon_sym_BANG, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5478), 1, - anon_sym_AMP_AMP, - ACTIONS(5482), 1, - anon_sym_GT_GT, - ACTIONS(5486), 1, - anon_sym_AMP, - ACTIONS(5488), 1, - anon_sym_CARET, - ACTIONS(5490), 1, - anon_sym_PIPE, - ACTIONS(5494), 1, - anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5710), 1, anon_sym_LT, - STATE(2713), 1, + STATE(2577), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5474), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5484), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5492), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5502), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5504), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 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, - [54958] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2714), 1, - sym_comment, - ACTIONS(5744), 13, + ACTIONS(5571), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274208,116 +262538,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5645), 31, + ACTIONS(5569), 19, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [55016] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5149), 1, - anon_sym_STAR, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, - anon_sym_COMMA, - ACTIONS(5290), 1, - anon_sym_RBRACE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - STATE(2715), 1, - sym_comment, - STATE(4882), 1, - sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5512), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [55102] = 5, + [55958] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2716), 1, + STATE(2578), 1, sym_comment, - ACTIONS(5746), 13, + ACTIONS(2288), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274331,7 +262581,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5748), 31, + ACTIONS(2290), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -274363,14 +262613,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [55160] = 5, + [56016] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2717), 1, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5630), 1, + anon_sym_LT, + ACTIONS(5761), 1, + anon_sym_DOT, + STATE(2579), 1, sym_comment, - ACTIONS(5750), 13, + STATE(2980), 1, + sym_arguments, + STATE(2982), 1, + sym_type_arguments, + ACTIONS(4955), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274381,22 +262641,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5752), 31, + ACTIONS(4957), 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_AMP_AMP, anon_sym_PIPE_PIPE, @@ -274415,156 +262670,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [55218] = 19, + anon_sym_extends, + [56084] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5494), 1, - anon_sym_PERCENT, - ACTIONS(5496), 1, - anon_sym_STAR_STAR, - ACTIONS(5713), 1, + ACTIONS(5630), 1, anon_sym_LT, - STATE(2718), 1, + ACTIONS(5763), 1, + anon_sym_DOT, + STATE(2580), 1, sym_comment, - STATE(2830), 1, + STATE(2983), 1, + sym_arguments, + STATE(2985), 1, sym_type_arguments, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(4949), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5492), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 18, + ACTIONS(4951), 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_satisfies, - [55304] = 26, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5568), 1, - anon_sym_GT_GT, - ACTIONS(5572), 1, - anon_sym_AMP, - ACTIONS(5580), 1, - anon_sym_PERCENT, - ACTIONS(5582), 1, - anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2719), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5409), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5558), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5562), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5570), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5588), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5590), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5586), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 11, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, anon_sym_satisfies, - [55404] = 5, + anon_sym_extends, + [56152] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2720), 1, + ACTIONS(5765), 1, + sym__automatic_semicolon, + STATE(2581), 1, sym_comment, - ACTIONS(5754), 13, + ACTIONS(2142), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -274578,18 +262752,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5647), 31, + ACTIONS(2222), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -274609,203 +262782,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [55462] = 36, + anon_sym_PIPE_RBRACE, + [56212] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5037), 1, + anon_sym_STAR, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5049), 1, + anon_sym_async, + ACTIONS(5384), 1, + anon_sym_RBRACE, + ACTIONS(5477), 1, + anon_sym_LBRACK, + STATE(2582), 1, + sym_comment, + STATE(3950), 1, + sym__property_name, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5053), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4496), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [56300] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5420), 1, + anon_sym_COMMA, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5472), 1, - anon_sym_COMMA, - ACTIONS(5478), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2721), 1, + STATE(2583), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(5685), 1, + STATE(5567), 1, aux_sym_sequence_expression_repeat1, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5756), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5767), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [55582] = 27, + [56420] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5568), 1, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5537), 1, + anon_sym_AMP_AMP, + ACTIONS(5539), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5541), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5547), 1, anon_sym_CARET, - ACTIONS(5580), 1, + ACTIONS(5549), 1, + anon_sym_PIPE, + ACTIONS(5553), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(5557), 1, anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2722), 1, + ACTIONS(5565), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5567), 1, + sym__ternary_qmark, + STATE(2584), 1, sym_comment, - STATE(6297), 1, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5409), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5558), 2, + ACTIONS(5533), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5535), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5543), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5551), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5563), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5559), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 10, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5475), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [55684] = 18, + anon_sym_of, + anon_sym_SEMI, + [56536] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5580), 1, - anon_sym_PERCENT, - ACTIONS(5582), 1, - anon_sym_STAR_STAR, - ACTIONS(5622), 1, + ACTIONS(5630), 1, anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2723), 1, + ACTIONS(5769), 1, + anon_sym_QMARK_DOT, + STATE(2585), 1, sym_comment, - STATE(6297), 1, + STATE(2916), 1, + sym_type_arguments, + STATE(3088), 1, + sym_arguments, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(4939), 12, anon_sym_STAR, - anon_sym_SLASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -274814,161 +263050,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 18, + ACTIONS(4941), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, + 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, - [55768] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5419), 1, - anon_sym_AMP_AMP, - ACTIONS(5421), 1, - anon_sym_GT_GT, - ACTIONS(5425), 1, - anon_sym_AMP, - ACTIONS(5427), 1, - anon_sym_CARET, - ACTIONS(5429), 1, - anon_sym_PIPE, - ACTIONS(5433), 1, - anon_sym_PERCENT, - ACTIONS(5435), 1, - anon_sym_STAR_STAR, - ACTIONS(5437), 1, - anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5461), 1, - sym__ternary_qmark, - STATE(2724), 1, - sym_comment, - STATE(2830), 1, - sym_type_arguments, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5405), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5413), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5423), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5431), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5441), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5443), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5439), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5554), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [55884] = 20, + anon_sym_BQUOTE, + anon_sym_satisfies, + [56610] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5149), 1, + ACTIONS(5037), 1, anon_sym_STAR, - ACTIONS(5151), 1, + ACTIONS(5039), 1, anon_sym_EQ, - ACTIONS(5153), 1, + ACTIONS(5041), 1, anon_sym_COMMA, - ACTIONS(5161), 1, - anon_sym_async, - ACTIONS(5290), 1, + ACTIONS(5384), 1, anon_sym_RBRACE, - ACTIONS(5530), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(2725), 1, + STATE(2586), 1, sym_comment, - STATE(4103), 1, + STATE(4693), 1, sym__property_name, - STATE(6276), 1, + STATE(5732), 1, aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(5165), 2, + ACTIONS(5581), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4492), 20, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -274985,87 +263145,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [55972] = 25, + [56696] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5482), 1, - anon_sym_GT_GT, - ACTIONS(5494), 1, - anon_sym_PERCENT, - ACTIONS(5496), 1, - anon_sym_STAR_STAR, - ACTIONS(5498), 1, - anon_sym_LT, - STATE(2726), 1, - sym_comment, - STATE(2830), 1, - sym_type_arguments, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5474), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5484), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5492), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5502), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5504), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5500), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 11, + ACTIONS(5771), 1, 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, - [56070] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2727), 1, + STATE(2587), 1, sym_comment, - ACTIONS(5758), 13, + ACTIONS(2160), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275079,18 +263168,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5760), 31, + ACTIONS(2164), 30, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -275110,42 +263198,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [56128] = 8, + anon_sym_PIPE_RBRACE, + [56756] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5321), 1, - anon_sym_extends, - STATE(2728), 1, + STATE(2588), 1, sym_comment, - ACTIONS(5766), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5769), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5762), 10, + ACTIONS(5773), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5764), 28, + ACTIONS(5775), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -275167,45 +263252,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [56192] = 19, + [56814] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5582), 1, - anon_sym_STAR_STAR, - ACTIONS(5622), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2729), 1, + STATE(2589), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 11, + ACTIONS(5777), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -275214,117 +263270,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 17, + ACTIONS(5779), 31, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [56278] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [56872] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5482), 1, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5537), 1, + anon_sym_AMP_AMP, + ACTIONS(5539), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5541), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5494), 1, + ACTIONS(5547), 1, + anon_sym_CARET, + ACTIONS(5549), 1, + anon_sym_PIPE, + ACTIONS(5553), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5557), 1, anon_sym_LT, - STATE(2730), 1, + ACTIONS(5565), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5567), 1, + sym__ternary_qmark, + STATE(2590), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5533), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5535), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5543), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5551), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5563), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5559), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 11, + ACTIONS(5694), 4, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [56378] = 7, + [56988] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2731), 1, + STATE(2591), 1, sym_comment, - ACTIONS(5064), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5772), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5062), 13, + ACTIONS(5781), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275338,12 +263408,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5066), 24, + ACTIONS(5783), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -275363,96 +263439,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [56440] = 34, + anon_sym_implements, + [57046] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5564), 1, + ACTIONS(5537), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, + ACTIONS(5539), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5541), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5547), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(5549), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5553), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(5557), 1, anon_sym_LT, - ACTIONS(5592), 1, + ACTIONS(5565), 1, anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, + ACTIONS(5567), 1, sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(2732), 1, + STATE(2592), 1, sym_comment, - STATE(6297), 1, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5533), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5535), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5543), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5551), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5563), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5559), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5674), 4, + ACTIONS(5696), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [56556] = 5, + anon_sym_of, + anon_sym_SEMI, + [57162] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2733), 1, + STATE(2593), 1, sym_comment, - ACTIONS(5775), 13, + ACTIONS(2160), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275466,18 +263543,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 31, + ACTIONS(2164), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -275497,166 +263574,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [56614] = 34, + anon_sym_PIPE_RBRACE, + [57220] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5478), 1, - anon_sym_AMP_AMP, - ACTIONS(5480), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, - anon_sym_AMP, - ACTIONS(5488), 1, - anon_sym_CARET, - ACTIONS(5490), 1, - anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5506), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, - sym__ternary_qmark, - STATE(2734), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + STATE(2594), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 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(5504), 2, + ACTIONS(5569), 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, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5500), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5689), 4, + anon_sym_satisfies, + [57310] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, sym__automatic_semicolon, + ACTIONS(5037), 1, + anon_sym_STAR, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, anon_sym_COMMA, + ACTIONS(5381), 1, anon_sym_RBRACE, + ACTIONS(5579), 1, + anon_sym_LBRACK, + STATE(2595), 1, + sym_comment, + STATE(4693), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5581), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_LPAREN, anon_sym_SEMI, - [56730] = 21, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [57396] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5482), 1, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5537), 1, + anon_sym_AMP_AMP, + ACTIONS(5539), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5541), 1, anon_sym_GT_GT, - ACTIONS(5494), 1, + ACTIONS(5545), 1, + anon_sym_AMP, + ACTIONS(5547), 1, + anon_sym_CARET, + ACTIONS(5549), 1, + anon_sym_PIPE, + ACTIONS(5553), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5557), 1, anon_sym_LT, - STATE(2735), 1, + ACTIONS(5565), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5567), 1, + sym__ternary_qmark, + STATE(2596), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5533), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5484), 2, + ACTIONS(5535), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5543), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5551), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 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, + ACTIONS(5563), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5559), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [56820] = 5, + ACTIONS(5698), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_of, + anon_sym_SEMI, + [57512] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2736), 1, + STATE(2597), 1, sym_comment, - ACTIONS(2262), 13, + ACTIONS(5785), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275670,7 +263814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2264), 31, + ACTIONS(5787), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -275702,246 +263846,262 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [56878] = 34, + [57570] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5478), 1, + ACTIONS(5537), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5539), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5541), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5547), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5549), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5553), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5557), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5565), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5567), 1, sym__ternary_qmark, - STATE(2737), 1, + STATE(2598), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5533), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5535), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5543), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5551), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5563), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5559), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5687), 4, + ACTIONS(5702), 4, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, - [56994] = 8, + [57686] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5169), 1, - anon_sym_extends, - STATE(2738), 1, - sym_comment, - ACTIONS(5779), 2, - anon_sym_COMMA, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5782), 3, - anon_sym_GT, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_AMP_AMP, + ACTIONS(5436), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5438), 1, + anon_sym_GT_GT, + ACTIONS(5442), 1, anon_sym_AMP, + ACTIONS(5444), 1, + anon_sym_CARET, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(5450), 1, + anon_sym_PERCENT, + ACTIONS(5452), 1, + anon_sym_STAR_STAR, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5462), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, + sym__ternary_qmark, + STATE(2599), 1, + sym_comment, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5416), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5426), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5440), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 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, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [57058] = 27, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5456), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5527), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [57802] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5420), 1, + anon_sym_COMMA, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5482), 1, + ACTIONS(5434), 1, + anon_sym_AMP_AMP, + ACTIONS(5436), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5494), 1, + ACTIONS(5446), 1, + anon_sym_PIPE, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - STATE(2739), 1, + ACTIONS(5462), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, + sym__ternary_qmark, + STATE(2600), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5567), 1, + aux_sym_sequence_expression_repeat1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5789), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 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, - [57160] = 14, + [57922] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5789), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2740), 1, + STATE(2601), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5785), 12, + ACTIONS(5791), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275952,15 +264112,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 22, + ACTIONS(5696), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -275976,15 +264144,99 @@ 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, + [57980] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_AMP_AMP, + ACTIONS(5436), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5438), 1, + anon_sym_GT_GT, + ACTIONS(5442), 1, + anon_sym_AMP, + ACTIONS(5444), 1, + anon_sym_CARET, + ACTIONS(5446), 1, + anon_sym_PIPE, + ACTIONS(5450), 1, + anon_sym_PERCENT, + ACTIONS(5452), 1, + anon_sym_STAR_STAR, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5462), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, anon_sym_satisfies, - [57236] = 5, + ACTIONS(5470), 1, + sym__ternary_qmark, + STATE(2602), 1, + sym_comment, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5416), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5426), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5440), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5448), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5458), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5460), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5456), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5525), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [58096] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2741), 1, + STATE(2603), 1, sym_comment, - ACTIONS(5792), 13, + ACTIONS(2178), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -275998,7 +264250,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5794), 31, + ACTIONS(2180), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -276030,14 +264282,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [57294] = 5, + [58154] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2742), 1, + STATE(2604), 1, sym_comment, - ACTIONS(2190), 13, + ACTIONS(5793), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -276051,7 +264303,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2192), 31, + ACTIONS(5694), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -276083,209 +264335,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [57352] = 34, + [58212] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5419), 1, - anon_sym_AMP_AMP, - ACTIONS(5421), 1, - anon_sym_GT_GT, - ACTIONS(5425), 1, - anon_sym_AMP, - ACTIONS(5427), 1, - anon_sym_CARET, - ACTIONS(5429), 1, - anon_sym_PIPE, - ACTIONS(5433), 1, - anon_sym_PERCENT, - ACTIONS(5435), 1, - anon_sym_STAR_STAR, - ACTIONS(5437), 1, - anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(5418), 1, anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5461), 1, - sym__ternary_qmark, - STATE(2743), 1, - sym_comment, - STATE(2830), 1, - sym_type_arguments, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5405), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5413), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5423), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5431), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5441), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5443), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5439), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5647), 4, - sym__automatic_semicolon, + ACTIONS(5420), 1, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [57468] = 36, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5472), 1, - anon_sym_COMMA, - ACTIONS(5478), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2744), 1, + STATE(2605), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(5685), 1, + STATE(5567), 1, aux_sym_sequence_expression_repeat1, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5796), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5795), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [57588] = 18, + [58332] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5494), 1, - anon_sym_PERCENT, - ACTIONS(5496), 1, - anon_sym_STAR_STAR, - ACTIONS(5713), 1, - anon_sym_LT, - STATE(2745), 1, + STATE(2606), 1, sym_comment, - STATE(2830), 1, - sym_type_arguments, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5797), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -276294,133 +264436,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 18, - sym__automatic_semicolon, + ACTIONS(5692), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [57672] = 34, + anon_sym_implements, + [58390] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5420), 1, + anon_sym_COMMA, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5592), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(2746), 1, + STATE(2607), 1, sym_comment, - STATE(6297), 1, + STATE(2656), 1, + sym_type_arguments, + STATE(5567), 1, + aux_sym_sequence_expression_repeat1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5799), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5689), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [57788] = 13, + [58510] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5638), 1, - anon_sym_LT, - ACTIONS(5798), 1, - anon_sym_QMARK_DOT, - STATE(2747), 1, + STATE(2608), 1, sym_comment, - STATE(3047), 1, - sym_type_arguments, - STATE(3193), 1, - sym_arguments, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(4909), 12, + ACTIONS(5801), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -276431,74 +264574,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 24, - sym__automatic_semicolon, + ACTIONS(5803), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, 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, - [57862] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5411), 1, anon_sym_LPAREN, - ACTIONS(5437), 1, - anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - STATE(2748), 1, - sym_comment, - STATE(2830), 1, - sym_type_arguments, - STATE(6311), 1, - sym_optional_chain, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5800), 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(5802), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -276516,121 +264606,128 @@ 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, - [57932] = 14, + anon_sym_implements, + [58568] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5804), 1, - anon_sym_LT, - STATE(2749), 1, - sym_comment, - STATE(2830), 1, - sym_type_arguments, - STATE(6311), 1, - sym_optional_chain, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5785), 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(5787), 22, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5037), 1, + anon_sym_STAR, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, anon_sym_COMMA, + ACTIONS(5049), 1, + anon_sym_async, + ACTIONS(5381), 1, anon_sym_RBRACE, + ACTIONS(5477), 1, + anon_sym_LBRACK, + STATE(2609), 1, + sym_comment, + STATE(3950), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5053), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [58008] = 20, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4496), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [58656] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5149), 1, + ACTIONS(5037), 1, anon_sym_STAR, - ACTIONS(5151), 1, + ACTIONS(5039), 1, anon_sym_EQ, - ACTIONS(5153), 1, + ACTIONS(5041), 1, anon_sym_COMMA, - ACTIONS(5156), 1, + ACTIONS(5044), 1, anon_sym_RBRACE, - ACTIONS(5161), 1, - anon_sym_async, - ACTIONS(5530), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(2750), 1, + STATE(2610), 1, sym_comment, - STATE(4103), 1, + STATE(4693), 1, sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3991), 2, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(5165), 2, + ACTIONS(5581), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4492), 20, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -276647,14 +264744,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [58096] = 5, + [58742] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2751), 1, + STATE(2611), 1, sym_comment, - ACTIONS(5762), 13, + ACTIONS(2304), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -276668,7 +264765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5764), 31, + ACTIONS(2306), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -276700,550 +264797,381 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [58154] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5584), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2752), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5800), 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(5802), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_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, - [58224] = 23, + [58800] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5568), 1, - anon_sym_GT_GT, - ACTIONS(5580), 1, - anon_sym_PERCENT, - ACTIONS(5582), 1, - anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2753), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5562), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5570), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5578), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5586), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5409), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5407), 13, - sym__ternary_qmark, + ACTIONS(5418), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [58318] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5592), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(2754), 1, + STATE(2612), 1, sym_comment, - STATE(6297), 1, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5724), 4, + ACTIONS(5523), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [58916] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5037), 1, + anon_sym_STAR, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, anon_sym_COMMA, + ACTIONS(5044), 1, anon_sym_RBRACE, + ACTIONS(5049), 1, + anon_sym_async, + ACTIONS(5477), 1, + anon_sym_LBRACK, + STATE(2613), 1, + sym_comment, + STATE(3950), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5053), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, - [58434] = 34, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4496), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [59004] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5419), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5537), 1, anon_sym_AMP_AMP, - ACTIONS(5421), 1, + ACTIONS(5539), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5541), 1, anon_sym_GT_GT, - ACTIONS(5425), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5427), 1, + ACTIONS(5547), 1, anon_sym_CARET, - ACTIONS(5429), 1, + ACTIONS(5549), 1, anon_sym_PIPE, - ACTIONS(5433), 1, + ACTIONS(5553), 1, anon_sym_PERCENT, - ACTIONS(5435), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5437), 1, + ACTIONS(5557), 1, anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, + ACTIONS(5565), 1, anon_sym_QMARK_QMARK, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5461), 1, + ACTIONS(5567), 1, sym__ternary_qmark, - STATE(2755), 1, + STATE(2614), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5405), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5533), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5413), 2, + ACTIONS(5535), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5423), 2, + ACTIONS(5543), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5431), 2, + ACTIONS(5551), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5441), 2, + ACTIONS(5561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5443), 2, + ACTIONS(5563), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5439), 3, + ACTIONS(5559), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5634), 4, + ACTIONS(5521), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_of, anon_sym_SEMI, - [58550] = 34, + [59120] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5564), 1, + ACTIONS(5537), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, + ACTIONS(5539), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5541), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5545), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5547), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(5549), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5553), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5555), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(5557), 1, anon_sym_LT, - ACTIONS(5592), 1, + ACTIONS(5565), 1, anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, + ACTIONS(5567), 1, sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(2756), 1, + STATE(2615), 1, sym_comment, - STATE(6297), 1, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5533), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5535), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5543), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5551), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5561), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5563), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5559), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5687), 4, + ACTIONS(5487), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [58666] = 34, + anon_sym_of, + anon_sym_SEMI, + [59236] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5419), 1, - anon_sym_AMP_AMP, - ACTIONS(5421), 1, - anon_sym_GT_GT, - ACTIONS(5425), 1, - anon_sym_AMP, - ACTIONS(5427), 1, - anon_sym_CARET, - ACTIONS(5429), 1, - anon_sym_PIPE, - ACTIONS(5433), 1, - anon_sym_PERCENT, - ACTIONS(5435), 1, - anon_sym_STAR_STAR, - ACTIONS(5437), 1, - anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5461), 1, - sym__ternary_qmark, - STATE(2757), 1, + STATE(2616), 1, sym_comment, - STATE(2830), 1, - sym_type_arguments, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5405), 2, + ACTIONS(5805), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5413), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5423), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5431), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5441), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5443), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5439), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5724), 4, - sym__automatic_semicolon, + ACTIONS(5807), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [58782] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4915), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4917), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, anon_sym_QMARK_DOT, - ACTIONS(5409), 1, - anon_sym_BANG, - ACTIONS(5564), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, - anon_sym_GT_GT, - ACTIONS(5572), 1, - anon_sym_AMP, - ACTIONS(5574), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5576), 1, - anon_sym_PIPE, - ACTIONS(5580), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2758), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5562), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5570), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5588), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5590), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5586), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [58890] = 5, + anon_sym_implements, + [59294] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2759), 1, + STATE(2617), 1, sym_comment, - ACTIONS(5357), 13, + ACTIONS(5809), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -277257,7 +265185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5359), 31, + ACTIONS(5811), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -277289,96 +265217,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [58948] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5419), 1, - anon_sym_AMP_AMP, - ACTIONS(5421), 1, - anon_sym_GT_GT, - ACTIONS(5425), 1, - anon_sym_AMP, - ACTIONS(5427), 1, - anon_sym_CARET, - ACTIONS(5429), 1, - anon_sym_PIPE, - ACTIONS(5433), 1, - anon_sym_PERCENT, - ACTIONS(5435), 1, - anon_sym_STAR_STAR, - ACTIONS(5437), 1, - anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5455), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5461), 1, - sym__ternary_qmark, - STATE(2760), 1, - sym_comment, - STATE(2830), 1, - sym_type_arguments, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5405), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5413), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5423), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5431), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5441), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5443), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5439), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5711), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [59064] = 5, + [59352] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2761), 1, + STATE(2618), 1, sym_comment, - ACTIONS(5807), 13, + ACTIONS(5813), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -277392,7 +265238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5809), 31, + ACTIONS(5527), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -277424,199 +265270,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [59122] = 36, + [59410] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5472), 1, - anon_sym_COMMA, - ACTIONS(5478), 1, - anon_sym_AMP_AMP, - ACTIONS(5480), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, - anon_sym_GT_GT, - ACTIONS(5486), 1, - anon_sym_AMP, - ACTIONS(5488), 1, - anon_sym_CARET, - ACTIONS(5490), 1, - anon_sym_PIPE, - ACTIONS(5494), 1, - anon_sym_PERCENT, - ACTIONS(5496), 1, - anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5557), 1, anon_sym_LT, - ACTIONS(5506), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, - sym__ternary_qmark, - STATE(2762), 1, + STATE(2619), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(5685), 1, - aux_sym_sequence_expression_repeat1, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5479), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5474), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5492), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5811), 2, + ACTIONS(5481), 25, sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_of, anon_sym_SEMI, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5500), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [59242] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, anon_sym_DOT, - ACTIONS(5419), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(5421), 1, - anon_sym_GT_GT, - ACTIONS(5425), 1, - anon_sym_AMP, - ACTIONS(5427), 1, - anon_sym_CARET, - ACTIONS(5429), 1, - anon_sym_PIPE, - ACTIONS(5433), 1, - anon_sym_PERCENT, - ACTIONS(5435), 1, - anon_sym_STAR_STAR, - ACTIONS(5437), 1, - anon_sym_LT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5455), 1, anon_sym_PIPE_PIPE, - ACTIONS(5457), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5461), 1, - sym__ternary_qmark, - STATE(2763), 1, - sym_comment, - STATE(2830), 1, - sym_type_arguments, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5405), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5413), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5423), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5431), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5441), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5443), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5439), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5560), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, - [59358] = 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [59480] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5813), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5815), 1, anon_sym_LT, - STATE(2764), 1, - sym_comment, - STATE(2830), 1, + STATE(2313), 1, sym_type_arguments, - STATE(6311), 1, + STATE(2620), 1, + sym_comment, + STATE(5791), 1, sym_optional_chain, - STATE(3272), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5785), 12, + ACTIONS(5593), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -277629,13 +265371,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 22, - sym__automatic_semicolon, + ACTIONS(5595), 20, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -277649,32 +265391,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_satisfies, - [59434] = 11, + [59558] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5447), 1, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5498), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5818), 1, anon_sym_LT, - STATE(2765), 1, - sym_comment, - STATE(2830), 1, + STATE(2313), 1, sym_type_arguments, - STATE(6311), 1, + STATE(2621), 1, + sym_comment, + STATE(5791), 1, sym_optional_chain, - STATE(3272), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5800), 12, + ACTIONS(5658), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -277685,16 +265439,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5802), 25, - sym__automatic_semicolon, + ACTIONS(5660), 18, 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_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -277708,154 +265458,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [59504] = 5, + [59642] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2766), 1, - sym_comment, - ACTIONS(2258), 13, - anon_sym_STAR, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_AMP_AMP, + ACTIONS(5436), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5438), 1, anon_sym_GT_GT, + ACTIONS(5442), 1, anon_sym_AMP, + ACTIONS(5444), 1, + anon_sym_CARET, + ACTIONS(5446), 1, anon_sym_PIPE, + ACTIONS(5450), 1, + anon_sym_PERCENT, + ACTIONS(5452), 1, + anon_sym_STAR_STAR, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5462), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, + sym__ternary_qmark, + STATE(2622), 1, + sym_comment, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5416), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5426), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5440), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2260), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5460), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5456), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5521), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + [59758] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(5430), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(5432), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5434), 1, anon_sym_AMP_AMP, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5438), 1, + anon_sym_GT_GT, + ACTIONS(5442), 1, + anon_sym_AMP, + ACTIONS(5444), 1, anon_sym_CARET, + ACTIONS(5446), 1, + anon_sym_PIPE, + ACTIONS(5450), 1, anon_sym_PERCENT, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5462), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, + sym__ternary_qmark, + STATE(2623), 1, + sym_comment, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5416), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5426), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5440), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5448), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5458), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [59562] = 36, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5456), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5487), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [59874] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5472), 1, - anon_sym_COMMA, - ACTIONS(5478), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2767), 1, + STATE(2624), 1, sym_comment, - STATE(2830), 1, - sym_type_arguments, - STATE(5685), 1, - aux_sym_sequence_expression_repeat1, - STATE(6311), 1, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5816), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3272), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [59682] = 5, + ACTIONS(5702), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [59990] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2768), 1, + STATE(2625), 1, sym_comment, - ACTIONS(2304), 13, + ACTIONS(5821), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -277869,7 +265725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2308), 31, + ACTIONS(5823), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -277901,14 +265757,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [59740] = 5, + [60048] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2769), 1, + STATE(2626), 1, sym_comment, - ACTIONS(2282), 13, + ACTIONS(2304), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -277922,18 +265778,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2286), 31, + ACTIONS(2306), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -277953,82 +265809,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [59798] = 19, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5496), 1, - anon_sym_STAR_STAR, - ACTIONS(5713), 1, - anon_sym_LT, - STATE(2770), 1, - sym_comment, - STATE(2830), 1, - sym_type_arguments, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 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(5407), 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, - [59884] = 5, + anon_sym_PIPE_RBRACE, + [60106] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2771), 1, + STATE(2627), 1, sym_comment, - ACTIONS(5818), 13, + ACTIONS(2300), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278042,18 +265831,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5820), 31, + ACTIONS(2302), 31, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_else, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_while, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -278073,150 +265862,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [59942] = 5, + anon_sym_PIPE_RBRACE, + [60164] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2772), 1, - sym_comment, - ACTIONS(2170), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2174), 31, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4921), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(4943), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4945), 1, anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, + ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5495), 1, + anon_sym_GT_GT, + ACTIONS(5499), 1, + anon_sym_AMP, + ACTIONS(5501), 1, anon_sym_CARET, + ACTIONS(5503), 1, + anon_sym_PIPE, + ACTIONS(5507), 1, anon_sym_PERCENT, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5517), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5519), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2628), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5489), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5497), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5513), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5511), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [60000] = 34, + ACTIONS(5652), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [60280] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5420), 1, + anon_sym_COMMA, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5478), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2773), 1, + STATE(2629), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5567), 1, + aux_sym_sequence_expression_repeat1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5825), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5545), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - [60116] = 5, + [60400] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2774), 1, + STATE(2630), 1, sym_comment, - ACTIONS(5822), 13, + ACTIONS(2282), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278230,7 +266050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5824), 31, + ACTIONS(2286), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -278262,14 +266082,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [60174] = 5, + [60458] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2775), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5827), 1, + anon_sym_LT, + STATE(2631), 1, sym_comment, - ACTIONS(5826), 13, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, + sym_optional_chain, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278280,23 +266119,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5828), 31, + ACTIONS(5680), 22, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -278312,99 +266143,97 @@ 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, - [60232] = 34, + [60534] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5478), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2776), 1, + STATE(2632), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5543), 4, + ACTIONS(5692), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - [60348] = 5, + [60650] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2777), 1, + STATE(2633), 1, sym_comment, - ACTIONS(2196), 13, + ACTIONS(5830), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278418,7 +266247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2200), 31, + ACTIONS(5832), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -278450,14 +266279,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [60406] = 5, + [60708] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2778), 1, + STATE(2634), 1, sym_comment, - ACTIONS(5830), 13, + ACTIONS(2196), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278471,7 +266300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5832), 31, + ACTIONS(2198), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -278503,12 +266332,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [60464] = 5, + [60766] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2779), 1, + STATE(2635), 1, sym_comment, ACTIONS(5834), 13, anon_sym_STAR, @@ -278556,344 +266385,320 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [60522] = 5, + [60824] = 20, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2780), 1, - sym_comment, - ACTIONS(2268), 13, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(5838), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2272), 31, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5840), 1, anon_sym_LBRACE, + ACTIONS(5842), 1, + anon_sym_async, + ACTIONS(5844), 1, + anon_sym_readonly, + ACTIONS(5848), 1, + sym__automatic_semicolon, + STATE(2636), 1, + sym_comment, + STATE(3521), 1, + sym_statement_block, + STATE(3617), 1, + sym_override_modifier, + STATE(3904), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5846), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_implements, - [60580] = 34, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4496), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [60912] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5592), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(2781), 1, + STATE(2637), 1, sym_comment, - STATE(6297), 1, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5451), 4, + ACTIONS(5694), 4, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [60696] = 34, + anon_sym_SEMI, + [61028] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + STATE(2638), 1, + sym_comment, + ACTIONS(5851), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5853), 31, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4915), 1, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4917), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, - anon_sym_GT_GT, - ACTIONS(5572), 1, - anon_sym_AMP, - ACTIONS(5574), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5576), 1, - anon_sym_PIPE, - ACTIONS(5580), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - ACTIONS(5592), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(2782), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5562), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5570), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5588), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5590), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5586), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5554), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [60812] = 36, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [61086] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5478), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, sym__ternary_qmark, - ACTIONS(5838), 1, - anon_sym_COMMA, - ACTIONS(5841), 1, - anon_sym_RBRACE, - STATE(2783), 1, + STATE(2639), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5543), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3272), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [60932] = 18, + ACTIONS(5696), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [61202] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5843), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5855), 1, anon_sym_LT, - STATE(2784), 1, - sym_comment, - STATE(2830), 1, + STATE(2313), 1, sym_type_arguments, - STATE(6311), 1, + STATE(2640), 1, + sym_comment, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5599), 11, + ACTIONS(5678), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -278904,12 +266709,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5601), 18, - sym__automatic_semicolon, + ACTIONS(5680), 22, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -278923,14 +266729,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [61016] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [61278] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2785), 1, + STATE(2641), 1, sym_comment, - ACTIONS(5846), 13, + ACTIONS(2160), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278944,7 +266753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5848), 31, + ACTIONS(2164), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -278976,91 +266785,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [61074] = 5, + [61336] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2786), 1, + ACTIONS(4975), 1, + anon_sym_extends, + STATE(2642), 1, sym_comment, - ACTIONS(2190), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(5858), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5861), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2192), 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, - [61132] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2787), 1, - sym_comment, - ACTIONS(2230), 13, + ACTIONS(4238), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2234), 31, + ACTIONS(4242), 28, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -279082,87 +266841,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [61190] = 23, + [61400] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5482), 1, - anon_sym_GT_GT, - ACTIONS(5494), 1, - anon_sym_PERCENT, - ACTIONS(5496), 1, - anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5864), 1, anon_sym_LT, - STATE(2788), 1, + STATE(2643), 1, sym_comment, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5474), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5484), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5492), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5409), 5, + ACTIONS(5593), 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(5407), 13, + ACTIONS(5595), 20, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_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, - [61284] = 6, + [61478] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5850), 1, - sym__automatic_semicolon, - STATE(2789), 1, + STATE(2644), 1, sym_comment, - ACTIONS(2190), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279176,17 +266925,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2192), 30, + ACTIONS(4242), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -279206,82 +266956,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [61344] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5149), 1, - anon_sym_STAR, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, - anon_sym_COMMA, - ACTIONS(5156), 1, - anon_sym_RBRACE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - STATE(2790), 1, - sym_comment, - STATE(4882), 1, - sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5512), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [61430] = 5, + anon_sym_implements, + [61536] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2791), 1, + STATE(2645), 1, sym_comment, - ACTIONS(5852), 13, + ACTIONS(2184), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279295,7 +266978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5724), 31, + ACTIONS(2186), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -279327,23 +267010,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [61488] = 7, + [61594] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2792), 1, + STATE(2646), 1, sym_comment, - ACTIONS(2144), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5854), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(2142), 13, + ACTIONS(5867), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279357,12 +267031,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2148), 24, + ACTIONS(5624), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -279382,16 +267062,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61550] = 6, + anon_sym_implements, + [61652] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5857), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5434), 1, + anon_sym_AMP_AMP, + ACTIONS(5436), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5438), 1, + anon_sym_GT_GT, + ACTIONS(5442), 1, + anon_sym_AMP, + ACTIONS(5444), 1, + anon_sym_CARET, + ACTIONS(5446), 1, + anon_sym_PIPE, + ACTIONS(5450), 1, + anon_sym_PERCENT, + ACTIONS(5452), 1, + anon_sym_STAR_STAR, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5462), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, + sym__ternary_qmark, + STATE(2647), 1, + sym_comment, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5416), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5426), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5440), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5448), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5458), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5460), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5456), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5698), 4, sym__automatic_semicolon, - STATE(2793), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + [61768] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2648), 1, sym_comment, - ACTIONS(2140), 13, + ACTIONS(5869), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279405,17 +267166,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2166), 30, + ACTIONS(5871), 31, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_of, - anon_sym_while, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -279435,15 +267197,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_PIPE_RBRACE, - [61610] = 5, + anon_sym_implements, + [61826] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2794), 1, + STATE(2649), 1, sym_comment, - ACTIONS(5859), 13, + ACTIONS(5873), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279457,7 +267219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5861), 31, + ACTIONS(5875), 31, sym__ternary_qmark, anon_sym_as, anon_sym_LBRACE, @@ -279489,14 +267251,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_implements, - [61668] = 5, + [61884] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2795), 1, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5454), 1, + anon_sym_LT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + STATE(2650), 1, sym_comment, - ACTIONS(5863), 13, + STATE(2656), 1, + sym_type_arguments, + STATE(5716), 1, + sym_optional_chain, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5479), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279507,21 +267282,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5865), 31, + ACTIONS(5481), 25, + 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, @@ -279539,26 +267309,17 @@ 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, - [61726] = 7, + [61954] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2796), 1, + ACTIONS(5632), 1, + anon_sym_is, + STATE(2651), 1, sym_comment, - ACTIONS(5697), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5867), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5695), 13, + ACTIONS(4995), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279572,11 +267333,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5699), 24, + ACTIONS(4997), 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, @@ -279597,487 +267362,490 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [61788] = 30, + anon_sym_extends, + [62013] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5409), 1, - anon_sym_BANG, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5478), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5103), 1, anon_sym_LT, - STATE(2797), 1, - sym_comment, - STATE(2830), 1, + ACTIONS(5111), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(6311), 1, + STATE(2652), 1, + sym_comment, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 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, - [61896] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2798), 1, - sym_comment, - ACTIONS(2262), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2264), 31, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5624), 3, 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, - [61954] = 36, + anon_sym_RPAREN, + anon_sym_COLON, + [62128] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5592), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, - sym__ternary_qmark, - ACTIONS(5870), 1, - anon_sym_COMMA, - ACTIONS(5872), 1, - anon_sym_RBRACK, - STATE(2461), 1, + ACTIONS(5571), 1, + anon_sym_BANG, + STATE(2313), 1, sym_type_arguments, - STATE(2799), 1, + STATE(2653), 1, sym_comment, - STATE(5271), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62073] = 16, + ACTIONS(5569), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [62235] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5874), 1, + ACTIONS(5087), 1, + anon_sym_GT_GT, + ACTIONS(5099), 1, + anon_sym_PERCENT, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5876), 1, + ACTIONS(5103), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2800), 1, + STATE(2654), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5069), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5079), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5089), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5097), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5409), 12, - anon_sym_STAR, + ACTIONS(5105), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5571), 5, anon_sym_BANG, - anon_sym_in, - 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(5407), 18, + ACTIONS(5569), 12, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_satisfies, - anon_sym_implements, - [62152] = 28, + [62328] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5409), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5887), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5889), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5891), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5895), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5897), 1, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, anon_sym_LT, - STATE(2461), 1, + ACTIONS(5111), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(2801), 1, + STATE(2655), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5879), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5881), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5893), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5105), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5626), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [62443] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + STATE(2656), 1, + sym_comment, + STATE(3115), 2, sym_template_string, sym_arguments, - ACTIONS(5899), 3, + ACTIONS(4989), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4991), 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_instanceof, - ACTIONS(5407), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_satisfies, - anon_sym_implements, - [62255] = 29, + [62506] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5409), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5874), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5883), 1, - anon_sym_GT_GT, - ACTIONS(5887), 1, - anon_sym_AMP, - ACTIONS(5889), 1, - anon_sym_CARET, - ACTIONS(5891), 1, - anon_sym_PIPE, - ACTIONS(5895), 1, - anon_sym_PERCENT, - ACTIONS(5897), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5877), 1, anon_sym_LT, - ACTIONS(5905), 1, - anon_sym_AMP_AMP, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2802), 1, + STATE(2657), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5879), 2, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5881), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5893), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5899), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 8, + ACTIONS(5569), 16, sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [62360] = 19, + anon_sym_instanceof, + [62591] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5874), 1, + ACTIONS(5099), 1, + anon_sym_PERCENT, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5876), 1, + ACTIONS(5877), 1, anon_sym_LT, - ACTIONS(5895), 1, - anon_sym_PERCENT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2803), 1, + STATE(2658), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5879), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5893), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5409), 8, + ACTIONS(5571), 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(5407), 17, + ACTIONS(5569), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -280090,446 +267858,472 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - anon_sym_implements, - [62445] = 36, + [62674] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5517), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5519), 1, sym__ternary_qmark, - ACTIONS(5907), 1, + ACTIONS(5880), 1, anon_sym_COMMA, - ACTIONS(5909), 1, - anon_sym_RPAREN, - STATE(2461), 1, + ACTIONS(5882), 1, + anon_sym_RBRACK, + STATE(2313), 1, sym_type_arguments, - STATE(2804), 1, + STATE(2659), 1, sym_comment, - STATE(6297), 1, + STATE(4999), 1, + aux_sym_sequence_expression_repeat1, + STATE(5791), 1, sym_optional_chain, - STATE(6317), 1, - aux_sym_array_repeat1, - ACTIONS(5076), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [62564] = 25, + [62793] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5895), 1, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5093), 1, + anon_sym_CARET, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5897), 1, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2805), 1, + STATE(2660), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5879), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5881), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5893), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 3, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5571), 2, anon_sym_BANG, - anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5899), 3, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 10, + ACTIONS(5569), 9, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_satisfies, - anon_sym_implements, - [62661] = 26, + [62894] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5887), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5895), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5897), 1, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2806), 1, + STATE(2661), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5409), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5879), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5881), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5893), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5571), 2, + anon_sym_BANG, + anon_sym_PIPE, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5899), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 10, + ACTIONS(5569), 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, - [62760] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4343), 1, - anon_sym_QMARK, - STATE(2807), 1, - sym_comment, - ACTIONS(4341), 5, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4218), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4222), 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, - [62823] = 27, + [62993] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5890), 1, + anon_sym_AMP_AMP, + ACTIONS(5892), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5894), 1, anon_sym_GT_GT, - ACTIONS(5887), 1, + ACTIONS(5898), 1, anon_sym_AMP, - ACTIONS(5889), 1, + ACTIONS(5900), 1, anon_sym_CARET, - ACTIONS(5895), 1, + ACTIONS(5902), 1, + anon_sym_PIPE, + ACTIONS(5906), 1, anon_sym_PERCENT, - ACTIONS(5897), 1, + ACTIONS(5908), 1, + anon_sym_STAR_STAR, + ACTIONS(5910), 1, anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2808), 1, + ACTIONS(5918), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5920), 1, + sym__ternary_qmark, + STATE(2662), 1, sym_comment, - STATE(6297), 1, + STATE(3028), 1, + sym_type_arguments, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5409), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5879), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5881), 2, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, + ACTIONS(5896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5893), 2, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + ACTIONS(5914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, + ACTIONS(5916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5899), 3, + ACTIONS(5886), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + [63108] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(5922), 1, + anon_sym_static, + ACTIONS(5924), 1, + anon_sym_readonly, + ACTIONS(5926), 1, + anon_sym_abstract, + STATE(2663), 1, + sym_comment, + STATE(3571), 1, + sym_accessibility_modifier, + STATE(3669), 1, + sym_override_modifier, + STATE(4195), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4674), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(985), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [62924] = 18, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4496), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [63193] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5874), 1, + ACTIONS(5087), 1, + anon_sym_GT_GT, + ACTIONS(5099), 1, + anon_sym_PERCENT, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5876), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5895), 1, - anon_sym_PERCENT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2809), 1, + STATE(2664), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5879), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 10, - anon_sym_BANG, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5089), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 17, + ACTIONS(5109), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5105), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5571), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5569), 10, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_LT_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, - [63007] = 7, + [63290] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2810), 1, + STATE(2665), 1, sym_comment, - ACTIONS(2144), 2, + ACTIONS(5391), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5911), 5, + ACTIONS(5928), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(2142), 13, + ACTIONS(5389), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280543,7 +268337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2148), 23, + ACTIONS(5393), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -280567,764 +268361,733 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [63068] = 34, + [63351] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, - anon_sym_AMP_AMP, - ACTIONS(5566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, - anon_sym_GT_GT, - ACTIONS(5572), 1, - anon_sym_AMP, - ACTIONS(5574), 1, - anon_sym_CARET, - ACTIONS(5576), 1, - anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(5877), 1, anon_sym_LT, - ACTIONS(5592), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, - sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2811), 1, + STATE(2666), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5570), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5590), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5586), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5913), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - [63183] = 19, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5876), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2812), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5409), 11, - anon_sym_STAR, + ACTIONS(5571), 8, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 16, + ACTIONS(5569), 17, sym__ternary_qmark, - anon_sym_LBRACE, + anon_sym_as, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [63268] = 34, + anon_sym_satisfies, + [63436] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5073), 1, + anon_sym_COMMA, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5117), 1, sym__ternary_qmark, - STATE(2461), 1, + ACTIONS(5930), 1, + anon_sym_RPAREN, + STATE(2313), 1, sym_type_arguments, - STATE(2813), 1, + STATE(2667), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5451), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [63383] = 6, + [63555] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5693), 1, - anon_sym_is, - STATE(2814), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5087), 1, + anon_sym_GT_GT, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5093), 1, + anon_sym_CARET, + ACTIONS(5095), 1, + anon_sym_PIPE, + ACTIONS(5099), 1, + anon_sym_PERCENT, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, + anon_sym_LT, + ACTIONS(5571), 1, + anon_sym_BANG, + STATE(2313), 1, + sym_type_arguments, + STATE(2668), 1, sym_comment, - ACTIONS(4991), 13, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5069), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5089), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4993), 29, - sym__automatic_semicolon, + ACTIONS(5109), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5105), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5569), 8, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [63442] = 35, + [63660] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5451), 1, + ACTIONS(5073), 1, anon_sym_COMMA, - ACTIONS(5453), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5478), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, sym__ternary_qmark, - STATE(2815), 1, - sym_comment, - STATE(2830), 1, + ACTIONS(5932), 1, + anon_sym_RPAREN, + STATE(2313), 1, sym_type_arguments, - STATE(6311), 1, + STATE(2669), 1, + sym_comment, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5470), 2, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5915), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3272), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63559] = 34, + [63779] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, - anon_sym_AMP_AMP, - ACTIONS(5092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5118), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, - sym__ternary_qmark, - STATE(2461), 1, + ACTIONS(5571), 1, + anon_sym_BANG, + STATE(2313), 1, sym_type_arguments, - STATE(2816), 1, + STATE(2670), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5724), 3, + ACTIONS(5569), 9, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [63674] = 34, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [63882] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5874), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5883), 1, - anon_sym_GT_GT, - ACTIONS(5887), 1, - anon_sym_AMP, - ACTIONS(5889), 1, - anon_sym_CARET, - ACTIONS(5891), 1, - anon_sym_PIPE, - ACTIONS(5895), 1, - anon_sym_PERCENT, - ACTIONS(5897), 1, + ACTIONS(5877), 1, anon_sym_LT, - ACTIONS(5905), 1, - anon_sym_AMP_AMP, - ACTIONS(5917), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5919), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5921), 1, - sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2817), 1, + STATE(2671), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5879), 2, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5881), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5893), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5634), 3, - anon_sym_LBRACE, + ACTIONS(5569), 18, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5899), 3, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [63789] = 36, + anon_sym_satisfies, + [63961] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5564), 1, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, + ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - ACTIONS(5592), 1, + ACTIONS(5517), 1, anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, + ACTIONS(5519), 1, sym__ternary_qmark, - ACTIONS(5870), 1, + ACTIONS(5880), 1, anon_sym_COMMA, - ACTIONS(5923), 1, - anon_sym_RBRACE, - STATE(2461), 1, + ACTIONS(5934), 1, + anon_sym_RBRACK, + STATE(2313), 1, sym_type_arguments, - STATE(2818), 1, + STATE(2672), 1, sym_comment, - STATE(5271), 1, + STATE(4999), 1, aux_sym_sequence_expression_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [63908] = 34, + [64080] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, - anon_sym_AMP_AMP, - ACTIONS(5092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5936), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2673), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5593), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(5098), 1, anon_sym_AMP, - ACTIONS(5100), 1, - anon_sym_CARET, - ACTIONS(5102), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5595), 19, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5108), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - ACTIONS(5118), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + anon_sym_instanceof, anon_sym_satisfies, - ACTIONS(5124), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(2819), 1, + [64157] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2674), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(4430), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5086), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5104), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(4961), 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, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5112), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5674), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [64023] = 21, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [64214] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5073), 1, + anon_sym_COMMA, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5895), 1, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5093), 1, + anon_sym_CARET, + ACTIONS(5095), 1, + anon_sym_PIPE, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5897), 1, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, anon_sym_LT, - STATE(2461), 1, + ACTIONS(5111), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, + sym__ternary_qmark, + ACTIONS(5939), 1, + anon_sym_RPAREN, + STATE(2313), 1, sym_type_arguments, - STATE(2820), 1, + STATE(2675), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5879), 2, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5885), 2, + ACTIONS(5079), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5893), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 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, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5105), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [64112] = 20, + [64333] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -281333,57 +269096,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5149), 1, - anon_sym_STAR, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_async, - ACTIONS(5163), 1, + ACTIONS(5941), 1, + anon_sym_static, + ACTIONS(5943), 1, anon_sym_readonly, - STATE(2821), 1, + ACTIONS(5945), 1, + anon_sym_abstract, + STATE(2676), 1, sym_comment, - STATE(3780), 1, + STATE(3574), 1, + sym_accessibility_modifier, + STATE(3648), 1, sym_override_modifier, - STATE(4103), 1, + STATE(4279), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(5165), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5925), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(4674), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(985), 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, - anon_sym_PIPE_RBRACE, - ACTIONS(4492), 18, + ACTIONS(4496), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, @@ -281391,460 +269153,484 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [64199] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5110), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2822), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5800), 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(5802), 24, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [64268] = 35, + [64418] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5451), 1, - anon_sym_COMMA, - ACTIONS(5453), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5478), 1, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, - anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5517), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5519), 1, sym__ternary_qmark, - STATE(2823), 1, - sym_comment, - STATE(2830), 1, + ACTIONS(5880), 1, + anon_sym_COMMA, + ACTIONS(5947), 1, + anon_sym_COLON, + STATE(2313), 1, sym_type_arguments, - STATE(6311), 1, + STATE(2677), 1, + sym_comment, + STATE(4999), 1, + aux_sym_sequence_expression_repeat1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5929), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3272), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64385] = 7, + [64537] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2824), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5087), 1, + anon_sym_GT_GT, + ACTIONS(5099), 1, + anon_sym_PERCENT, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2678), 1, sym_comment, - ACTIONS(5064), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5931), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5062), 13, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5069), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5089), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5097), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5066), 23, + ACTIONS(5569), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [64446] = 34, + [64626] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5887), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5889), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5891), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5895), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5897), 1, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5905), 1, - anon_sym_AMP_AMP, - ACTIONS(5917), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5919), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5921), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2825), 1, + STATE(2679), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5879), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5881), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5893), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5545), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5899), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64561] = 34, + ACTIONS(5527), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [64741] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5073), 1, + anon_sym_COMMA, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5887), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5889), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5891), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5895), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5897), 1, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5905), 1, - anon_sym_AMP_AMP, - ACTIONS(5917), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5919), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5921), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, sym__ternary_qmark, - STATE(2826), 1, - sym_comment, - STATE(3153), 1, + ACTIONS(5949), 1, + anon_sym_RPAREN, + STATE(2313), 1, sym_type_arguments, - STATE(6297), 1, + STATE(2680), 1, + sym_comment, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5879), 2, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5881), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5893), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5899), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5933), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [64676] = 34, + [64860] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5887), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5889), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5891), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5895), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5897), 1, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5905), 1, - anon_sym_AMP_AMP, - ACTIONS(5917), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5919), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5921), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2827), 1, + STATE(2681), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5879), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5881), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5893), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5711), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5899), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [64791] = 7, + ACTIONS(5525), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [64975] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5381), 1, + anon_sym_RBRACE, + ACTIONS(5579), 1, + anon_sym_LBRACK, + STATE(2682), 1, + sym_comment, + STATE(4693), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [65056] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2828), 1, - sym_comment, - ACTIONS(5697), 2, - anon_sym_EQ, + ACTIONS(4344), 1, anon_sym_QMARK, - ACTIONS(5935), 5, + ACTIONS(4366), 1, + anon_sym_EQ, + STATE(2683), 1, + sym_comment, + ACTIONS(4369), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(5695), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281858,7 +269644,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5699), 23, + ACTIONS(4242), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -281882,399 +269668,356 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [64852] = 23, + [65119] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, - anon_sym_GT_GT, - ACTIONS(5895), 1, - anon_sym_PERCENT, - ACTIONS(5897), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2829), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5879), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5881), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5885), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5893), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5899), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5409), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5407), 12, - sym__ternary_qmark, + ACTIONS(5071), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5073), 1, 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, - [64945] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - STATE(2830), 1, - sym_comment, - STATE(3230), 2, - sym_template_string, - sym_arguments, - ACTIONS(4985), 13, - anon_sym_STAR, + ACTIONS(5075), 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(4987), 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, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5083), 1, anon_sym_AMP_AMP, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [65008] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5409), 1, - anon_sym_BANG, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5887), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5889), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5891), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5895), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5897), 1, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5905), 1, - anon_sym_AMP_AMP, - ACTIONS(5917), 1, - anon_sym_PIPE_PIPE, - STATE(2461), 1, + ACTIONS(5111), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, + sym__ternary_qmark, + ACTIONS(5951), 1, + anon_sym_RPAREN, + STATE(2313), 1, sym_type_arguments, - STATE(2831), 1, + STATE(2684), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5879), 2, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5881), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5893), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5899), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 7, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LBRACE, + [65238] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - anon_sym_implements, - [65115] = 34, + ACTIONS(5044), 1, + anon_sym_RBRACE, + ACTIONS(5579), 1, + anon_sym_LBRACK, + STATE(2685), 1, + sym_comment, + STATE(4693), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [65319] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5073), 1, + anon_sym_COMMA, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5887), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5889), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5891), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5895), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5897), 1, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5905), 1, - anon_sym_AMP_AMP, - ACTIONS(5917), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5919), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5921), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, sym__ternary_qmark, - STATE(2461), 1, + ACTIONS(5953), 1, + anon_sym_RPAREN, + STATE(2313), 1, sym_type_arguments, - STATE(2832), 1, + STATE(2686), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5879), 2, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5881), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5893), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5687), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5899), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65230] = 34, + [65438] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, + anon_sym_AMP_AMP, + ACTIONS(5493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5887), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(5889), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(5891), 1, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(5895), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5897), 1, - anon_sym_LT, - ACTIONS(5905), 1, - anon_sym_AMP_AMP, - ACTIONS(5917), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5919), 1, + ACTIONS(5509), 1, + anon_sym_STAR_STAR, + ACTIONS(5517), 1, anon_sym_QMARK_QMARK, - ACTIONS(5921), 1, + ACTIONS(5519), 1, sym__ternary_qmark, - STATE(2461), 1, + ACTIONS(5880), 1, + anon_sym_COMMA, + ACTIONS(5955), 1, + anon_sym_RBRACE, + STATE(2313), 1, sym_type_arguments, - STATE(2833), 1, + STATE(2687), 1, sym_comment, - STATE(6297), 1, + STATE(4999), 1, + aux_sym_sequence_expression_repeat1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5879), 2, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5881), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5893), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5543), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5899), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65345] = 14, + [65557] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5937), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5957), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2834), 1, + STATE(2688), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5785), 12, + ACTIONS(5658), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -282285,9 +270028,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 21, + ACTIONS(5660), 17, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, @@ -282304,399 +270046,349 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [65420] = 34, + [65640] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5887), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5889), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5891), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5895), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5897), 1, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5905), 1, - anon_sym_AMP_AMP, - ACTIONS(5917), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5919), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5921), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2835), 1, + STATE(2689), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5879), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5881), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5893), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5689), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5899), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65535] = 34, + ACTIONS(5692), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [65755] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5887), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5889), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5891), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5895), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5897), 1, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5905), 1, - anon_sym_AMP_AMP, - ACTIONS(5917), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5919), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5921), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2836), 1, + STATE(2690), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5879), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5881), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5893), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5674), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5899), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65650] = 34, + ACTIONS(5694), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [65870] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5887), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5889), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5891), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5895), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5897), 1, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5905), 1, - anon_sym_AMP_AMP, - ACTIONS(5917), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5919), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5921), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2837), 1, + STATE(2691), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5879), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5881), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5893), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5560), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5899), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65765] = 36, + ACTIONS(5696), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [65985] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5117), 1, sym__ternary_qmark, - ACTIONS(5940), 1, + ACTIONS(5960), 1, + anon_sym_COMMA, + ACTIONS(5962), 1, anon_sym_RPAREN, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2838), 1, + STATE(2692), 1, sym_comment, - STATE(6060), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + STATE(5883), 1, + aux_sym_array_repeat1, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [65884] = 5, + [66104] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2839), 1, + STATE(2693), 1, sym_comment, - ACTIONS(4446), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4965), 30, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5575), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5964), 5, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_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, - [65941] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5638), 1, - anon_sym_LT, - STATE(2840), 1, - sym_comment, - STATE(2963), 1, - sym_type_arguments, - ACTIONS(4961), 12, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5573), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282707,17 +270399,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 29, - sym__automatic_semicolon, + ACTIONS(5577), 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, @@ -282738,79 +270426,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [66002] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, - anon_sym_COMMA, - ACTIONS(5156), 1, - anon_sym_RBRACE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - STATE(2841), 1, - sym_comment, - STATE(4882), 1, - sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [66083] = 5, + [66165] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2842), 1, + STATE(2694), 1, sym_comment, - ACTIONS(2061), 13, + ACTIONS(4438), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282824,7 +270447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2063), 30, + ACTIONS(4987), 30, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -282854,202 +270477,208 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_is, - [66140] = 36, + anon_sym_PIPE_RBRACE, + [66222] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5117), 1, sym__ternary_qmark, - ACTIONS(5942), 1, + ACTIONS(5960), 1, + anon_sym_COMMA, + ACTIONS(5966), 1, anon_sym_RPAREN, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2843), 1, + STATE(2695), 1, sym_comment, - STATE(6060), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + STATE(5940), 1, + aux_sym_array_repeat1, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66259] = 34, + [66341] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5117), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2844), 1, + STATE(2696), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5556), 3, + ACTIONS(5652), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [66374] = 5, + [66456] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2845), 1, + ACTIONS(4290), 1, + anon_sym_EQ, + ACTIONS(5613), 1, + anon_sym_LBRACK, + STATE(2697), 1, sym_comment, - ACTIONS(4452), 13, + ACTIONS(5616), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5368), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4238), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4967), 30, - sym__automatic_semicolon, + ACTIONS(4242), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -283069,413 +270698,290 @@ 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, - [66431] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, - anon_sym_COMMA, - ACTIONS(5290), 1, - anon_sym_RBRACE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - STATE(2846), 1, - sym_comment, - STATE(4882), 1, - sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [66512] = 36, + [66521] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5592), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, sym__ternary_qmark, - ACTIONS(5870), 1, - anon_sym_COMMA, - ACTIONS(5944), 1, - anon_sym_RBRACK, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2847), 1, + STATE(2698), 1, sym_comment, - STATE(5271), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66631] = 18, + ACTIONS(5698), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [66636] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5946), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2848), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5599), 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(5601), 17, - sym__ternary_qmark, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(5083), 1, anon_sym_AMP_AMP, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5087), 1, + anon_sym_GT_GT, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5093), 1, anon_sym_CARET, + ACTIONS(5095), 1, + anon_sym_PIPE, + ACTIONS(5099), 1, anon_sym_PERCENT, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [66714] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5949), 1, + ACTIONS(5103), 1, anon_sym_LT, - STATE(2461), 1, + ACTIONS(5111), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(2849), 1, + STATE(2699), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5785), 12, + ACTIONS(5069), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5089), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 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, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_satisfies, - anon_sym_implements, - [66789] = 34, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5105), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5702), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [66751] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5073), 1, + anon_sym_COMMA, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5887), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5889), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5891), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5895), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5897), 1, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5905), 1, - anon_sym_AMP_AMP, - ACTIONS(5917), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5919), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5921), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, sym__ternary_qmark, - STATE(2461), 1, + ACTIONS(5968), 1, + anon_sym_RPAREN, + STATE(2313), 1, sym_type_arguments, - STATE(2850), 1, + STATE(2700), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5879), 2, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5881), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5893), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5556), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5899), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [66904] = 18, + [66870] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2146), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5952), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2851), 1, + ACTIONS(3581), 1, + anon_sym_extends, + STATE(2701), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5599), 11, - anon_sym_STAR, - anon_sym_in, + ACTIONS(5401), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5404), 3, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(2144), 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(5601), 17, + ACTIONS(2150), 26, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, + 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, @@ -283489,37 +270995,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [66987] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66935] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5955), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2852), 1, + STATE(2702), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5463), 12, + ACTIONS(2146), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5970), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(2144), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283530,13 +271026,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5465), 19, + ACTIONS(2150), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -283550,189 +271049,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - [67064] = 35, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5451), 1, - anon_sym_COMMA, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5478), 1, - anon_sym_AMP_AMP, - ACTIONS(5480), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, - anon_sym_GT_GT, - ACTIONS(5486), 1, - anon_sym_AMP, - ACTIONS(5488), 1, - anon_sym_CARET, - ACTIONS(5490), 1, - anon_sym_PIPE, - ACTIONS(5494), 1, - anon_sym_PERCENT, - ACTIONS(5496), 1, - anon_sym_STAR_STAR, - ACTIONS(5498), 1, - anon_sym_LT, - ACTIONS(5506), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, - sym__ternary_qmark, - STATE(2830), 1, - sym_type_arguments, - STATE(2853), 1, - sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5474), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5484), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5492), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5502), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5504), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5552), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5500), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [67181] = 34, + anon_sym_BQUOTE, + anon_sym_satisfies, + [66996] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5073), 1, + anon_sym_COMMA, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5117), 1, sym__ternary_qmark, - STATE(2461), 1, + ACTIONS(5972), 1, + anon_sym_RPAREN, + STATE(2313), 1, sym_type_arguments, - STATE(2854), 1, + STATE(2703), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5647), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [67296] = 8, + [67115] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4324), 1, - anon_sym_EQ, - ACTIONS(4334), 1, - anon_sym_QMARK, - STATE(2855), 1, + STATE(2704), 1, sym_comment, - ACTIONS(4327), 5, + ACTIONS(4983), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4985), 30, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(4218), 13, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_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, + [67172] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2705), 1, + sym_comment, + ACTIONS(2061), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283746,10 +271209,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(2063), 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, @@ -283770,526 +271238,756 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [67359] = 34, + anon_sym_extends, + anon_sym_is, + [67229] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5117), 1, sym__ternary_qmark, - STATE(2461), 1, + ACTIONS(5960), 1, + anon_sym_COMMA, + ACTIONS(5974), 1, + anon_sym_RPAREN, + STATE(2313), 1, sym_type_arguments, - STATE(2856), 1, + STATE(2706), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + STATE(6134), 1, + aux_sym_array_repeat1, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5645), 3, + [67348] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(5384), 1, + anon_sym_RBRACE, + ACTIONS(5579), 1, + anon_sym_LBRACK, + STATE(2707), 1, + sym_comment, + STATE(4693), 1, + sym__property_name, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - [67474] = 34, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [67429] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5073), 1, + anon_sym_COMMA, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5887), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5889), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5891), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5895), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5897), 1, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5905), 1, - anon_sym_AMP_AMP, - ACTIONS(5917), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5919), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5921), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, sym__ternary_qmark, - STATE(2461), 1, + ACTIONS(5976), 1, + anon_sym_RPAREN, + STATE(2313), 1, sym_type_arguments, - STATE(2857), 1, + STATE(2708), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5879), 2, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5881), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5893), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5554), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5899), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67589] = 36, + [67548] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5073), 1, + anon_sym_COMMA, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5592), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, sym__ternary_qmark, - ACTIONS(5870), 1, - anon_sym_COMMA, - ACTIONS(5958), 1, - anon_sym_RBRACK, - STATE(2461), 1, + ACTIONS(5978), 1, + anon_sym_RPAREN, + STATE(2313), 1, sym_type_arguments, - STATE(2858), 1, + STATE(2709), 1, sym_comment, - STATE(5271), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67708] = 34, + [67667] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5322), 1, + anon_sym_extends, + ACTIONS(5391), 1, + anon_sym_EQ, + STATE(2710), 1, + sym_comment, + ACTIONS(5395), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5398), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5389), 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(5393), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4915), 1, + 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, + [67732] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5630), 1, + anon_sym_LT, + STATE(2711), 1, + sym_comment, + STATE(2870), 1, + sym_type_arguments, + ACTIONS(4963), 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(4965), 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, - ACTIONS(4917), 1, anon_sym_DOT, - ACTIONS(4989), 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, + anon_sym_extends, + [67793] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5892), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5894), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5898), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5900), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5902), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5906), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5908), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5910), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5918), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5920), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2859), 1, + STATE(2712), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5475), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5634), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [67823] = 36, + [67908] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5470), 1, sym__ternary_qmark, - ACTIONS(5907), 1, + ACTIONS(5521), 1, anon_sym_COMMA, - ACTIONS(5960), 1, - anon_sym_RPAREN, - STATE(2461), 1, + STATE(2656), 1, sym_type_arguments, - STATE(2860), 1, + STATE(2713), 1, sym_comment, - STATE(6066), 1, - aux_sym_array_repeat1, - STATE(6297), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + ACTIONS(5980), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [67942] = 34, + [68025] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, + anon_sym_AMP_AMP, + ACTIONS(5493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5887), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(5889), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(5891), 1, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(5895), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5897), 1, - anon_sym_LT, - ACTIONS(5905), 1, - anon_sym_AMP_AMP, - ACTIONS(5917), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5919), 1, + ACTIONS(5509), 1, + anon_sym_STAR_STAR, + ACTIONS(5517), 1, anon_sym_QMARK_QMARK, - ACTIONS(5921), 1, + ACTIONS(5519), 1, sym__ternary_qmark, - STATE(2461), 1, + ACTIONS(5982), 1, + anon_sym_COMMA, + ACTIONS(5984), 1, + anon_sym_RBRACK, + STATE(2313), 1, sym_type_arguments, - STATE(2861), 1, + STATE(2714), 1, sym_comment, - STATE(6297), 1, + STATE(5772), 1, + aux_sym_array_repeat1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5879), 2, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5881), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5893), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5645), 3, + ACTIONS(5511), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [68144] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2715), 1, + sym_comment, + ACTIONS(5252), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5254), 30, + sym__ternary_qmark, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5899), 3, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [68057] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [68201] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5962), 1, + ACTIONS(5986), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2862), 1, + STATE(2716), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5463), 12, + ACTIONS(5678), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284302,7 +272000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5465), 19, + ACTIONS(5680), 21, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -284321,867 +272019,616 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_satisfies, - [68134] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5965), 1, - anon_sym_static, - ACTIONS(5967), 1, - anon_sym_readonly, - ACTIONS(5969), 1, - anon_sym_abstract, - STATE(2863), 1, - sym_comment, - STATE(3742), 1, - sym_accessibility_modifier, - STATE(3788), 1, - sym_override_modifier, - STATE(4414), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - ACTIONS(1043), 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(4492), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [68219] = 35, + [68276] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5451), 1, - anon_sym_COMMA, - ACTIONS(5453), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5478), 1, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5892), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5894), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5898), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5900), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5902), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5906), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5908), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5910), 1, anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5918), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5920), 1, sym__ternary_qmark, - STATE(2830), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2864), 1, + STATE(2717), 1, sym_comment, - STATE(6311), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5971), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3272), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5702), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68336] = 34, + [68391] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5892), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5894), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5898), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5900), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5902), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5906), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5908), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5910), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5918), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5920), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2865), 1, + STATE(2718), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5698), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5711), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [68451] = 34, + [68506] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5470), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2656), 1, sym_type_arguments, - STATE(2866), 1, + STATE(2719), 1, sym_comment, - STATE(6297), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5560), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [68566] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2144), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(3587), 1, - anon_sym_extends, - STATE(2867), 1, - sym_comment, - ACTIONS(5056), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5059), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2142), 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(2148), 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, + ACTIONS(5456), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [68631] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(5603), 3, sym__automatic_semicolon, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, anon_sym_COMMA, - ACTIONS(5193), 1, - anon_sym_RBRACE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - STATE(2868), 1, - sym_comment, - STATE(4882), 1, - sym__property_name, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(6287), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [68712] = 36, + [68621] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5517), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5519), 1, sym__ternary_qmark, - ACTIONS(5973), 1, - anon_sym_RPAREN, - STATE(2461), 1, + ACTIONS(5880), 1, + anon_sym_COMMA, + ACTIONS(5989), 1, + anon_sym_RBRACK, + STATE(2313), 1, sym_type_arguments, - STATE(2869), 1, + STATE(2720), 1, sym_comment, - STATE(6060), 1, + STATE(4999), 1, aux_sym_sequence_expression_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [68831] = 34, + [68740] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5453), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5478), 1, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5480), 1, + ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(5488), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(5490), 1, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, - anon_sym_LT, - ACTIONS(5506), 1, + ACTIONS(5517), 1, anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, + ACTIONS(5519), 1, sym__ternary_qmark, - STATE(2830), 1, + ACTIONS(5982), 1, + anon_sym_COMMA, + ACTIONS(5991), 1, + anon_sym_RBRACK, + STATE(2313), 1, sym_type_arguments, - STATE(2870), 1, + STATE(2721), 1, sym_comment, - STATE(6311), 1, + STATE(5772), 1, + aux_sym_array_repeat1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5504), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5720), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [68946] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5975), 1, - anon_sym_static, - ACTIONS(5977), 1, - anon_sym_readonly, - ACTIONS(5979), 1, - anon_sym_abstract, - STATE(2871), 1, - sym_comment, - STATE(3740), 1, - sym_accessibility_modifier, - STATE(3807), 1, - sym_override_modifier, - STATE(4439), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - ACTIONS(1043), 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(4492), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [69031] = 34, + [68859] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5892), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5894), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5898), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5900), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5902), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5906), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5908), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5910), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5918), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5920), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2872), 1, + STATE(2722), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5696), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5689), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [69146] = 34, + [68974] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5892), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5894), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5898), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5900), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5902), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5906), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5908), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5910), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5918), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5920), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2873), 1, + STATE(2723), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5694), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5554), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [69261] = 9, + [69089] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5064), 1, - anon_sym_EQ, - ACTIONS(5074), 1, - anon_sym_extends, - STATE(2874), 1, + ACTIONS(5628), 1, + anon_sym_DOT, + ACTIONS(5630), 1, + anon_sym_LT, + STATE(2724), 1, sym_comment, - ACTIONS(5068), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5071), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5062), 10, + STATE(2862), 1, + sym_type_arguments, + ACTIONS(4913), 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_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5066), 26, + ACTIONS(4314), 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_LBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -285200,844 +272647,853 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [69326] = 34, + anon_sym_extends, + [69152] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5892), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5894), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5898), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5900), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5902), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5906), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5908), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5910), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5918), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5920), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2875), 1, + STATE(2725), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5692), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5687), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [69441] = 36, + [69267] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5470), 1, sym__ternary_qmark, - ACTIONS(5981), 1, - anon_sym_RPAREN, - STATE(2461), 1, + ACTIONS(5521), 1, + anon_sym_COMMA, + STATE(2656), 1, sym_type_arguments, - STATE(2876), 1, + STATE(2726), 1, sym_comment, - STATE(6060), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + ACTIONS(5591), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69560] = 36, + [69384] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5470), 1, sym__ternary_qmark, - ACTIONS(5983), 1, - anon_sym_RPAREN, - STATE(2461), 1, + ACTIONS(5521), 1, + anon_sym_COMMA, + STATE(2656), 1, sym_type_arguments, - STATE(2877), 1, + STATE(2727), 1, sym_comment, - STATE(6060), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + ACTIONS(5993), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69679] = 6, + [69501] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5985), 1, - anon_sym_is, - STATE(2878), 1, - sym_comment, - ACTIONS(4961), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4963), 29, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4921), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4943), 1, anon_sym_LBRACK, + ACTIONS(4945), 1, anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5083), 1, anon_sym_AMP_AMP, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5087), 1, + anon_sym_GT_GT, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5093), 1, anon_sym_CARET, + ACTIONS(5095), 1, + anon_sym_PIPE, + ACTIONS(5099), 1, anon_sym_PERCENT, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5103), 1, + anon_sym_LT, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5115), 1, anon_sym_satisfies, - anon_sym_extends, - [69738] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5693), 1, - anon_sym_is, - STATE(2879), 1, + ACTIONS(5117), 1, + sym__ternary_qmark, + ACTIONS(5960), 1, + anon_sym_COMMA, + ACTIONS(5995), 1, + anon_sym_RPAREN, + STATE(2313), 1, + sym_type_arguments, + STATE(2728), 1, sym_comment, - ACTIONS(4971), 13, + STATE(5661), 1, + aux_sym_array_repeat1, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5069), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5089), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4973), 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, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [69797] = 8, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5105), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [69620] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5638), 1, - anon_sym_LT, - ACTIONS(5691), 1, - anon_sym_DOT, - STATE(2880), 1, - sym_comment, - STATE(2952), 1, - sym_type_arguments, - ACTIONS(4945), 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(4312), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + aux_sym_comment_token1, + ACTIONS(4921), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4943), 1, anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, + ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5495), 1, + anon_sym_GT_GT, + ACTIONS(5499), 1, + anon_sym_AMP, + ACTIONS(5501), 1, anon_sym_CARET, + ACTIONS(5503), 1, + anon_sym_PIPE, + ACTIONS(5507), 1, anon_sym_PERCENT, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5517), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5519), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2729), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5489), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5497), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5513), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5511), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [69860] = 36, + ACTIONS(5997), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + [69735] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5592), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, sym__ternary_qmark, - ACTIONS(5987), 1, - anon_sym_COMMA, - ACTIONS(5989), 1, - anon_sym_RBRACK, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2881), 1, + STATE(2730), 1, sym_comment, - STATE(6233), 1, - aux_sym_array_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [69979] = 34, + ACTIONS(5523), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [69850] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, + ACTIONS(5890), 1, + anon_sym_AMP_AMP, + ACTIONS(5892), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5894), 1, anon_sym_GT_GT, - ACTIONS(5887), 1, + ACTIONS(5898), 1, anon_sym_AMP, - ACTIONS(5889), 1, + ACTIONS(5900), 1, anon_sym_CARET, - ACTIONS(5891), 1, + ACTIONS(5902), 1, anon_sym_PIPE, - ACTIONS(5895), 1, + ACTIONS(5906), 1, anon_sym_PERCENT, - ACTIONS(5897), 1, + ACTIONS(5908), 1, + anon_sym_STAR_STAR, + ACTIONS(5910), 1, anon_sym_LT, - ACTIONS(5905), 1, - anon_sym_AMP_AMP, - ACTIONS(5917), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5919), 1, + ACTIONS(5918), 1, anon_sym_QMARK_QMARK, - ACTIONS(5921), 1, + ACTIONS(5920), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2882), 1, + STATE(2731), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5879), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5881), 2, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, + ACTIONS(5896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5893), 2, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + ACTIONS(5914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, + ACTIONS(5916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5451), 3, + ACTIONS(5626), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5899), 3, + ACTIONS(5912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70094] = 34, + [69965] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, + ACTIONS(5890), 1, + anon_sym_AMP_AMP, + ACTIONS(5892), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5894), 1, anon_sym_GT_GT, - ACTIONS(5887), 1, + ACTIONS(5898), 1, anon_sym_AMP, - ACTIONS(5889), 1, + ACTIONS(5900), 1, anon_sym_CARET, - ACTIONS(5891), 1, + ACTIONS(5902), 1, anon_sym_PIPE, - ACTIONS(5895), 1, + ACTIONS(5906), 1, anon_sym_PERCENT, - ACTIONS(5897), 1, + ACTIONS(5908), 1, + anon_sym_STAR_STAR, + ACTIONS(5910), 1, anon_sym_LT, - ACTIONS(5905), 1, - anon_sym_AMP_AMP, - ACTIONS(5917), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5919), 1, + ACTIONS(5918), 1, anon_sym_QMARK_QMARK, - ACTIONS(5921), 1, + ACTIONS(5920), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2883), 1, + STATE(2732), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5879), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5881), 2, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, + ACTIONS(5896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5893), 2, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + ACTIONS(5914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, + ACTIONS(5916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5647), 3, + ACTIONS(5624), 3, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, - ACTIONS(5899), 3, + ACTIONS(5912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70209] = 36, + [70080] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5517), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5519), 1, sym__ternary_qmark, - ACTIONS(5907), 1, + ACTIONS(5880), 1, anon_sym_COMMA, - ACTIONS(5991), 1, - anon_sym_RPAREN, - STATE(2461), 1, + ACTIONS(5999), 1, + anon_sym_RBRACK, + STATE(2313), 1, sym_type_arguments, - STATE(2884), 1, + STATE(2733), 1, sym_comment, - STATE(6297), 1, + STATE(4999), 1, + aux_sym_sequence_expression_repeat1, + STATE(5791), 1, sym_optional_chain, - STATE(6361), 1, - aux_sym_array_repeat1, - ACTIONS(5076), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70328] = 34, + [70199] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5874), 1, - anon_sym_STAR_STAR, - ACTIONS(5883), 1, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5887), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5889), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5891), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5895), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5897), 1, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5905), 1, - anon_sym_AMP_AMP, - ACTIONS(5917), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5919), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5921), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2885), 1, + STATE(2734), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5879), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5881), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5885), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5893), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5901), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5903), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5724), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5899), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70443] = 11, + ACTIONS(5475), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [70314] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4989), 1, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5897), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(6001), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2886), 1, + STATE(2735), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5800), 12, + ACTIONS(5593), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286050,14 +273506,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5802), 24, + ACTIONS(5595), 19, 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, @@ -286071,462 +273524,575 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_satisfies, anon_sym_implements, - [70512] = 10, + [70391] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5064), 1, - anon_sym_EQ, - ACTIONS(5068), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, anon_sym_LBRACK, - STATE(2887), 1, - sym_comment, - ACTIONS(5071), 2, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5571), 1, + anon_sym_BANG, + ACTIONS(5890), 1, + anon_sym_AMP_AMP, + ACTIONS(5892), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5894), 1, + anon_sym_GT_GT, + ACTIONS(5898), 1, anon_sym_AMP, + ACTIONS(5900), 1, + anon_sym_CARET, + ACTIONS(5902), 1, anon_sym_PIPE, - ACTIONS(5993), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5074), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(5062), 11, + ACTIONS(5906), 1, + anon_sym_PERCENT, + ACTIONS(5908), 1, + anon_sym_STAR_STAR, + ACTIONS(5910), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2736), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5884), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5896), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5066), 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, + ACTIONS(5916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5912), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5569), 7, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [70579] = 34, + anon_sym_implements, + [70498] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5478), 1, - anon_sym_AMP_AMP, - ACTIONS(5480), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5894), 1, anon_sym_GT_GT, - ACTIONS(5486), 1, - anon_sym_AMP, - ACTIONS(5488), 1, - anon_sym_CARET, - ACTIONS(5490), 1, - anon_sym_PIPE, - ACTIONS(5494), 1, + ACTIONS(5906), 1, anon_sym_PERCENT, - ACTIONS(5496), 1, + ACTIONS(5908), 1, anon_sym_STAR_STAR, - ACTIONS(5498), 1, + ACTIONS(5910), 1, anon_sym_LT, - ACTIONS(5506), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, - sym__ternary_qmark, - STATE(2830), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2888), 1, + STATE(2737), 1, sym_comment, - STATE(6311), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5474), 2, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5484), 2, + ACTIONS(5896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5492), 2, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5502), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5504), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5500), 3, + ACTIONS(5912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5629), 3, - sym__automatic_semicolon, + ACTIONS(5571), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5569), 12, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [70694] = 10, + 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, + [70591] = 36, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2144), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5056), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, anon_sym_LBRACK, - STATE(2889), 1, - sym_comment, - ACTIONS(5059), 2, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5087), 1, + anon_sym_GT_GT, + ACTIONS(5091), 1, anon_sym_AMP, + ACTIONS(5093), 1, + anon_sym_CARET, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5997), 2, + ACTIONS(5099), 1, + anon_sym_PERCENT, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, + anon_sym_LT, + ACTIONS(5111), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, + sym__ternary_qmark, + ACTIONS(5960), 1, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3587), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2142), 11, + ACTIONS(6004), 1, + anon_sym_RPAREN, + STATE(2313), 1, + sym_type_arguments, + STATE(2738), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + STATE(6052), 1, + aux_sym_array_repeat1, + ACTIONS(5069), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5089), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2148), 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, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [70761] = 36, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5105), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [70710] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5564), 1, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, + ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - ACTIONS(5592), 1, + ACTIONS(5517), 1, anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, + ACTIONS(5519), 1, sym__ternary_qmark, - ACTIONS(5987), 1, + ACTIONS(5982), 1, anon_sym_COMMA, - ACTIONS(6001), 1, + ACTIONS(6006), 1, anon_sym_RBRACK, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2890), 1, + STATE(2739), 1, sym_comment, - STATE(6216), 1, - aux_sym_array_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + STATE(5885), 1, + aux_sym_array_repeat1, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70880] = 36, + [70829] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6008), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2740), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5658), 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(5660), 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, + [70912] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5462), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5470), 1, sym__ternary_qmark, - ACTIONS(5907), 1, - anon_sym_COMMA, - ACTIONS(6003), 1, - anon_sym_RPAREN, - STATE(2461), 1, + STATE(2656), 1, sym_type_arguments, - STATE(2891), 1, + STATE(2741), 1, sym_comment, - STATE(6136), 1, - aux_sym_array_repeat1, - STATE(6297), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [70999] = 36, + ACTIONS(5685), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [71027] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5892), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5894), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5898), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5900), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5902), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5906), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5908), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5910), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5918), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5920), 1, sym__ternary_qmark, - ACTIONS(5907), 1, - anon_sym_COMMA, - ACTIONS(6005), 1, - anon_sym_RPAREN, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2892), 1, + STATE(2742), 1, sym_comment, - STATE(6080), 1, - aux_sym_array_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5652), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71118] = 5, + [71142] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2893), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(6011), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2743), 1, sym_comment, - ACTIONS(4428), 13, + STATE(5791), 1, + sym_optional_chain, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286537,21 +274103,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4975), 30, - sym__automatic_semicolon, + ACTIONS(5680), 21, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -286567,101 +274125,149 @@ 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_extends, - anon_sym_PIPE_RBRACE, - [71175] = 36, + anon_sym_implements, + [71217] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5564), 1, - anon_sym_AMP_AMP, - ACTIONS(5566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5908), 1, + anon_sym_STAR_STAR, + ACTIONS(6014), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2744), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 11, + anon_sym_STAR, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(5572), 1, anon_sym_AMP, - ACTIONS(5574), 1, - anon_sym_CARET, - ACTIONS(5576), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5569), 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, + [71302] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5906), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5908), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(6014), 1, anon_sym_LT, - ACTIONS(5592), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, - sym__ternary_qmark, - ACTIONS(5870), 1, - anon_sym_COMMA, - ACTIONS(6007), 1, - anon_sym_RBRACK, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2894), 1, + STATE(2745), 1, sym_comment, - STATE(5271), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5578), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5569), 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, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5586), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [71294] = 5, + anon_sym_satisfies, + anon_sym_implements, + [71385] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2895), 1, + ACTIONS(6017), 1, + anon_sym_is, + STATE(2746), 1, sym_comment, - ACTIONS(4979), 13, + ACTIONS(4963), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286675,7 +274281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4981), 30, + ACTIONS(4965), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -286705,15 +274311,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - anon_sym_is, - [71351] = 5, + [71444] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2896), 1, + ACTIONS(5632), 1, + anon_sym_is, + STATE(2747), 1, sym_comment, - ACTIONS(5357), 13, + ACTIONS(4973), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286727,17 +274334,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5359), 30, + ACTIONS(4975), 29, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -286757,643 +274363,865 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [71408] = 36, + anon_sym_extends, + [71503] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, - anon_sym_AMP_AMP, - ACTIONS(5566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5894), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5898), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5900), 1, anon_sym_CARET, - ACTIONS(5576), 1, - anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5906), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5908), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(5910), 1, anon_sym_LT, - ACTIONS(5592), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, - sym__ternary_qmark, - ACTIONS(5987), 1, - anon_sym_COMMA, - ACTIONS(6009), 1, - anon_sym_RBRACK, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2897), 1, + STATE(2748), 1, sym_comment, - STATE(6216), 1, - aux_sym_array_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5571), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71527] = 36, + ACTIONS(5569), 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, + [71604] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, - anon_sym_AMP_AMP, - ACTIONS(5092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5894), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5898), 1, anon_sym_AMP, - ACTIONS(5100), 1, - anon_sym_CARET, - ACTIONS(5102), 1, - anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5906), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5908), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5910), 1, anon_sym_LT, - ACTIONS(5118), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, - sym__ternary_qmark, - ACTIONS(6011), 1, - anon_sym_RPAREN, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2898), 1, + STATE(2749), 1, sym_comment, - STATE(6060), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5571), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [71646] = 36, + ACTIONS(5569), 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, + [71703] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5370), 1, + anon_sym_RBRACE, + ACTIONS(5579), 1, + anon_sym_LBRACK, + STATE(2750), 1, + sym_comment, + STATE(4693), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [71784] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5103), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2751), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5479), 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(5481), 24, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5080), 1, anon_sym_COMMA, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, - anon_sym_GT_GT, - ACTIONS(5098), 1, - anon_sym_AMP, - ACTIONS(5100), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5102), 1, - anon_sym_PIPE, - ACTIONS(5106), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - ACTIONS(5118), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_satisfies, - ACTIONS(5124), 1, - sym__ternary_qmark, - ACTIONS(6013), 1, - anon_sym_RPAREN, - STATE(2461), 1, + [71853] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5894), 1, + anon_sym_GT_GT, + ACTIONS(5906), 1, + anon_sym_PERCENT, + ACTIONS(5908), 1, + anon_sym_STAR_STAR, + ACTIONS(5910), 1, + anon_sym_LT, + STATE(2313), 1, sym_type_arguments, - STATE(2899), 1, + STATE(2752), 1, sym_comment, - STATE(6060), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5912), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5569), 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, + [71950] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5906), 1, + anon_sym_PERCENT, + ACTIONS(5908), 1, + anon_sym_STAR_STAR, + ACTIONS(6014), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2753), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + ACTIONS(5884), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5904), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5571), 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(5569), 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, - [71765] = 34, + anon_sym_satisfies, + anon_sym_implements, + [72035] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5564), 1, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, + ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - ACTIONS(5592), 1, + ACTIONS(5517), 1, anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, + ACTIONS(5519), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2900), 1, + STATE(2754), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(6015), 3, + ACTIONS(6019), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - [71880] = 34, + [72150] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5117), 1, sym__ternary_qmark, - STATE(2461), 1, + ACTIONS(5960), 1, + anon_sym_COMMA, + ACTIONS(6021), 1, + anon_sym_RPAREN, + STATE(2313), 1, sym_type_arguments, - STATE(2901), 1, + STATE(2755), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + STATE(6180), 1, + aux_sym_array_repeat1, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5543), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - [71995] = 36, + [72269] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, + ACTIONS(5571), 1, + anon_sym_BANG, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5894), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5898), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5900), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(5902), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5906), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5908), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(5910), 1, anon_sym_LT, - ACTIONS(5592), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, + STATE(2313), 1, + sym_type_arguments, + STATE(2756), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5884), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5888), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5896), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5904), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5914), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5916), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5912), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5569), 8, sym__ternary_qmark, - ACTIONS(5870), 1, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(6017), 1, - anon_sym_COLON, - STATE(2461), 1, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + anon_sym_implements, + [72374] = 28, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5571), 1, + anon_sym_BANG, + ACTIONS(5894), 1, + anon_sym_GT_GT, + ACTIONS(5898), 1, + anon_sym_AMP, + ACTIONS(5900), 1, + anon_sym_CARET, + ACTIONS(5902), 1, + anon_sym_PIPE, + ACTIONS(5906), 1, + anon_sym_PERCENT, + ACTIONS(5908), 1, + anon_sym_STAR_STAR, + ACTIONS(5910), 1, + anon_sym_LT, + STATE(2313), 1, sym_type_arguments, - STATE(2902), 1, + STATE(2757), 1, sym_comment, - STATE(5271), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72114] = 34, + ACTIONS(5569), 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, + [72477] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5117), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2903), 1, + STATE(2758), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5545), 3, + ACTIONS(5487), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - [72229] = 21, + [72592] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5094), 1, - anon_sym_GT_GT, - ACTIONS(5106), 1, - anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5908), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(6014), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2904), 1, + STATE(2759), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5096), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5409), 7, + ACTIONS(5571), 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(5407), 15, + ACTIONS(5569), 18, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -287401,522 +275229,542 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [72318] = 36, + anon_sym_implements, + [72671] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5117), 1, sym__ternary_qmark, - ACTIONS(6019), 1, - anon_sym_RPAREN, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2905), 1, + STATE(2760), 1, sym_comment, - STATE(6060), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72437] = 36, + ACTIONS(5521), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + [72786] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5080), 1, + ACTIONS(5073), 1, anon_sym_COMMA, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5117), 1, sym__ternary_qmark, - ACTIONS(6021), 1, + ACTIONS(6023), 1, anon_sym_RPAREN, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2906), 1, + STATE(2761), 1, sym_comment, - STATE(6060), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72556] = 36, + [72905] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5894), 1, + anon_sym_GT_GT, + ACTIONS(5906), 1, + anon_sym_PERCENT, + ACTIONS(5908), 1, + anon_sym_STAR_STAR, + ACTIONS(5910), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(2762), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5884), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5896), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5904), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 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(5569), 15, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5080), 1, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(5082), 1, + 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, + [72994] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5892), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5894), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5898), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5900), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5902), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5906), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5908), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5910), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5918), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5920), 1, sym__ternary_qmark, - ACTIONS(6023), 1, - anon_sym_RPAREN, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2907), 1, + STATE(2763), 1, sym_comment, - STATE(6060), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5527), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72675] = 36, + [73109] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5892), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5894), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5898), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5900), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5902), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5906), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5908), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5910), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5918), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5920), 1, sym__ternary_qmark, - ACTIONS(6025), 1, - anon_sym_RPAREN, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2908), 1, + STATE(2764), 1, sym_comment, - STATE(6060), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5525), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [72794] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, - anon_sym_COMMA, - ACTIONS(5271), 1, - anon_sym_RBRACE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - STATE(2909), 1, - sym_comment, - STATE(4882), 1, - sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [72875] = 16, + [73224] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5108), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5890), 1, + anon_sym_AMP_AMP, + ACTIONS(5892), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5894), 1, + anon_sym_GT_GT, + ACTIONS(5898), 1, + anon_sym_AMP, + ACTIONS(5900), 1, + anon_sym_CARET, + ACTIONS(5902), 1, + anon_sym_PIPE, + ACTIONS(5906), 1, + anon_sym_PERCENT, + ACTIONS(5908), 1, anon_sym_STAR_STAR, - ACTIONS(6027), 1, + ACTIONS(5910), 1, anon_sym_LT, - STATE(2461), 1, + ACTIONS(5918), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5920), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(2910), 1, + STATE(2765), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 12, + ACTIONS(5884), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5896), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(5914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 18, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(5916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5523), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5912), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [72954] = 17, + [73339] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5151), 1, + ACTIONS(5037), 1, + anon_sym_STAR, + ACTIONS(5039), 1, anon_sym_EQ, - ACTIONS(5153), 1, - anon_sym_COMMA, - ACTIONS(5202), 1, - anon_sym_RBRACE, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(2911), 1, + ACTIONS(5049), 1, + anon_sym_async, + ACTIONS(5051), 1, + anon_sym_readonly, + STATE(2766), 1, sym_comment, - STATE(4882), 1, + STATE(3626), 1, + sym_override_modifier, + STATE(3950), 1, sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + ACTIONS(5053), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6025), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, + ACTIONS(4496), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -287924,629 +275772,525 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [73035] = 36, + [73426] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5117), 1, sym__ternary_qmark, - ACTIONS(6030), 1, + ACTIONS(5960), 1, + anon_sym_COMMA, + ACTIONS(6029), 1, anon_sym_RPAREN, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2912), 1, + STATE(2767), 1, sym_comment, - STATE(6060), 1, - aux_sym_sequence_expression_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + STATE(6285), 1, + aux_sym_array_repeat1, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [73154] = 28, + [73545] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2146), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5401), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5094), 1, - anon_sym_GT_GT, - ACTIONS(5098), 1, + STATE(2768), 1, + sym_comment, + ACTIONS(5404), 2, anon_sym_AMP, - ACTIONS(5100), 1, - anon_sym_CARET, - ACTIONS(5102), 1, anon_sym_PIPE, - ACTIONS(5106), 1, - anon_sym_PERCENT, - ACTIONS(5108), 1, - anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - ACTIONS(5409), 1, - anon_sym_BANG, - STATE(2461), 1, - sym_type_arguments, - STATE(2913), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(6031), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3581), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2144), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5086), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5104), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5112), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 9, + ACTIONS(2150), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [73257] = 29, + [73612] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5094), 1, + ACTIONS(5436), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5409), 1, - anon_sym_BANG, - STATE(2461), 1, + ACTIONS(5462), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, + sym__ternary_qmark, + ACTIONS(5521), 1, + anon_sym_COMMA, + STATE(2656), 1, sym_type_arguments, - STATE(2914), 1, + STATE(2769), 1, sym_comment, - STATE(6297), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + ACTIONS(6035), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 8, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [73362] = 19, + [73729] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5106), 1, - anon_sym_PERCENT, - ACTIONS(5108), 1, - anon_sym_STAR_STAR, - ACTIONS(6027), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2915), 1, + ACTIONS(4316), 1, + anon_sym_EQ, + ACTIONS(4393), 1, + anon_sym_QMARK, + STATE(2770), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(4391), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(4238), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 17, + ACTIONS(4242), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [73447] = 25, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5094), 1, - anon_sym_GT_GT, - ACTIONS(5106), 1, - anon_sym_PERCENT, - ACTIONS(5108), 1, - anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2916), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5076), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5086), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5096), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5114), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5116), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5112), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5409), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5407), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, anon_sym_satisfies, - [73544] = 26, + [73792] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5094), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5890), 1, + anon_sym_AMP_AMP, + ACTIONS(5892), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5894), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5898), 1, anon_sym_AMP, - ACTIONS(5106), 1, + ACTIONS(5900), 1, + anon_sym_CARET, + ACTIONS(5902), 1, + anon_sym_PIPE, + ACTIONS(5906), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5908), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5910), 1, anon_sym_LT, - STATE(2461), 1, + ACTIONS(5918), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5920), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(2917), 1, + STATE(2771), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5409), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5521), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 10, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [73643] = 27, + [73907] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5094), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5890), 1, + anon_sym_AMP_AMP, + ACTIONS(5892), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5894), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5898), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5900), 1, anon_sym_CARET, - ACTIONS(5106), 1, + ACTIONS(5902), 1, + anon_sym_PIPE, + ACTIONS(5906), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5908), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5910), 1, anon_sym_LT, - STATE(2461), 1, + ACTIONS(5918), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5920), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(2918), 1, + STATE(2772), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5884), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5888), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5896), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5904), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5914), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5916), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5409), 2, - anon_sym_BANG, - anon_sym_PIPE, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5487), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5912), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 9, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [73744] = 18, + [74022] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5391), 1, + anon_sym_EQ, + ACTIONS(5395), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5106), 1, - anon_sym_PERCENT, - ACTIONS(5108), 1, - anon_sym_STAR_STAR, - ACTIONS(6027), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2919), 1, + STATE(2773), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5398), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6037), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5322), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(5389), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 17, + ACTIONS(5393), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [73827] = 19, + [74089] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5108), 1, - anon_sym_STAR_STAR, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6027), 1, + ACTIONS(5910), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2920), 1, + STATE(2774), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5409), 11, + ACTIONS(5479), 12, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -288557,142 +276301,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 16, + ACTIONS(5481), 24, sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [73912] = 35, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5451), 1, - anon_sym_COMMA, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(5478), 1, - anon_sym_AMP_AMP, - ACTIONS(5480), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5482), 1, - anon_sym_GT_GT, - ACTIONS(5486), 1, - anon_sym_AMP, - ACTIONS(5488), 1, - anon_sym_CARET, - ACTIONS(5490), 1, - anon_sym_PIPE, - ACTIONS(5494), 1, - anon_sym_PERCENT, - ACTIONS(5496), 1, - anon_sym_STAR_STAR, - ACTIONS(5498), 1, - anon_sym_LT, - ACTIONS(5506), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5508), 1, - sym__ternary_qmark, - STATE(2830), 1, - sym_type_arguments, - STATE(2921), 1, - sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5470), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5474), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5484), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5492), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5502), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5504), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6032), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5500), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74029] = 9, + anon_sym_satisfies, + anon_sym_implements, + [74158] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4288), 1, - anon_sym_EQ, - ACTIONS(5779), 1, - anon_sym_LBRACK, - STATE(2922), 1, + STATE(2775), 1, sym_comment, - ACTIONS(5782), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5169), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4218), 11, + ACTIONS(4452), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(4979), 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, @@ -288712,440 +276376,447 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74094] = 36, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [74215] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5231), 1, + anon_sym_RBRACE, + ACTIONS(5579), 1, + anon_sym_LBRACK, + STATE(2776), 1, + sym_comment, + STATE(4693), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [74296] = 36, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5073), 1, + anon_sym_COMMA, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(5117), 1, sym__ternary_qmark, - ACTIONS(5907), 1, - anon_sym_COMMA, - ACTIONS(6034), 1, + ACTIONS(6041), 1, anon_sym_RPAREN, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(2923), 1, + STATE(2777), 1, sym_comment, - STATE(6226), 1, - aux_sym_array_repeat1, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5076), 2, + STATE(6195), 1, + aux_sym_sequence_expression_repeat1, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74213] = 23, + [74415] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5094), 1, - anon_sym_GT_GT, - ACTIONS(5106), 1, - anon_sym_PERCENT, - ACTIONS(5108), 1, - anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(2924), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5076), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5086), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5096), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5112), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5409), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5407), 12, - sym__ternary_qmark, + ACTIONS(5418), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [74306] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5434), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(5436), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(5438), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(5442), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(5444), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(5446), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(5450), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(5452), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(5454), 1, anon_sym_LT, - ACTIONS(5409), 1, - anon_sym_BANG, - STATE(2461), 1, + ACTIONS(5462), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(5470), 1, + sym__ternary_qmark, + ACTIONS(5521), 1, + anon_sym_COMMA, + STATE(2656), 1, sym_type_arguments, - STATE(2925), 1, + STATE(2778), 1, sym_comment, - STATE(6297), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5416), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(5426), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(5440), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(5448), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(5458), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(5460), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + ACTIONS(6043), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(5456), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 7, - sym__ternary_qmark, - anon_sym_as, + [74532] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(6045), 1, + anon_sym_STAR, + ACTIONS(6047), 1, + anon_sym_async, + ACTIONS(6051), 1, + anon_sym_abstract, + STATE(2779), 1, + sym_comment, + STATE(3901), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6049), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [74413] = 36, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(4496), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [74610] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(3581), 1, + anon_sym_extends, + ACTIONS(5401), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5090), 1, - anon_sym_AMP_AMP, - ACTIONS(5092), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, - anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(6031), 1, + anon_sym_RPAREN, + STATE(2780), 1, + sym_comment, + ACTIONS(2146), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5404), 2, anon_sym_AMP, - ACTIONS(5100), 1, - anon_sym_CARET, - ACTIONS(5102), 1, anon_sym_PIPE, - ACTIONS(5106), 1, - anon_sym_PERCENT, - ACTIONS(5108), 1, - anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - ACTIONS(5118), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, - sym__ternary_qmark, - ACTIONS(5907), 1, + ACTIONS(5472), 2, anon_sym_COMMA, - ACTIONS(6036), 1, - anon_sym_RPAREN, - STATE(2461), 1, - sym_type_arguments, - STATE(2926), 1, - sym_comment, - STATE(5774), 1, - aux_sym_array_repeat1, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5076), 2, + anon_sym_COLON, + ACTIONS(2144), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5086), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5114), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5116), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5112), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [74532] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + 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(2150), 22, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(6042), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6044), 1, anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, - anon_sym_GT_GT, - ACTIONS(6050), 1, - anon_sym_AMP, - ACTIONS(6052), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6054), 1, - anon_sym_PIPE, - ACTIONS(6058), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, - anon_sym_LT, - ACTIONS(6070), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, - sym__ternary_qmark, - STATE(2830), 1, - sym_type_arguments, - STATE(2927), 1, - sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5674), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [74678] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2146), 1, + anon_sym_EQ, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5765), 1, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6038), 2, + STATE(2781), 1, + sym_comment, + ACTIONS(2142), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6040), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6048), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6056), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, + ACTIONS(2222), 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, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(6064), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [74646] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [74738] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2144), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3419), 1, - anon_sym_QMARK, - ACTIONS(3587), 1, - anon_sym_extends, - ACTIONS(5056), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5911), 1, - anon_sym_COLON, - STATE(2928), 1, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5769), 1, + anon_sym_QMARK_DOT, + STATE(2782), 1, sym_comment, - ACTIONS(5059), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5997), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2142), 11, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(2184), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2148), 22, + ACTIONS(2186), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -289163,129 +276834,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74716] = 34, + [74802] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(6042), 1, + ACTIONS(6057), 1, + anon_sym_SEMI, + ACTIONS(6059), 1, anon_sym_AMP_AMP, - ACTIONS(6044), 1, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, + ACTIONS(6063), 1, anon_sym_GT_GT, - ACTIONS(6050), 1, + ACTIONS(6067), 1, anon_sym_AMP, - ACTIONS(6052), 1, + ACTIONS(6069), 1, anon_sym_CARET, - ACTIONS(6054), 1, + ACTIONS(6071), 1, anon_sym_PIPE, - ACTIONS(6058), 1, + ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, + ACTIONS(6079), 1, anon_sym_LT, - ACTIONS(6070), 1, + ACTIONS(6087), 1, anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, + ACTIONS(6089), 1, + sym__automatic_semicolon, + ACTIONS(6091), 1, sym__ternary_qmark, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(2929), 1, + STATE(2783), 1, sym_comment, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5556), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6038), 2, + ACTIONS(6053), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6040), 2, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6048), 2, + ACTIONS(6065), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6056), 2, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(6064), 3, + ACTIONS(6081), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [74830] = 17, + [74918] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1045), 1, + anon_sym_RBRACE, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5149), 1, - anon_sym_STAR, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5161), 1, + ACTIONS(2991), 1, anon_sym_async, - ACTIONS(5530), 1, + ACTIONS(2993), 1, + anon_sym_readonly, + ACTIONS(2997), 1, + anon_sym_override, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(2930), 1, + ACTIONS(6093), 1, + anon_sym_STAR, + STATE(2784), 1, sym_comment, - STATE(4103), 1, + STATE(3632), 1, + sym_override_modifier, + STATE(4672), 1, sym__property_name, - ACTIONS(3991), 2, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(5165), 2, + ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - ACTIONS(5925), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4492), 20, + ACTIONS(2989), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -289293,12 +276972,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -289306,20 +276983,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [74910] = 8, + [75008] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6074), 1, + ACTIONS(6095), 1, anon_sym_AMP, - ACTIONS(6076), 1, + ACTIONS(6097), 1, anon_sym_PIPE, - ACTIONS(6078), 1, + ACTIONS(6099), 1, anon_sym_extends, - STATE(2931), 1, + STATE(2785), 1, sym_comment, - ACTIONS(5333), 11, + ACTIONS(5350), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289331,7 +277008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5335), 28, + ACTIONS(5352), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -289360,14 +277037,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [74972] = 5, + [75070] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2932), 1, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(6079), 1, + anon_sym_LT, + STATE(2656), 1, + sym_type_arguments, + STATE(2786), 1, sym_comment, - ACTIONS(5181), 13, + STATE(5716), 1, + sym_optional_chain, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5479), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289378,17 +277068,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5183), 29, + ACTIONS(5481), 23, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -289408,102 +277093,160 @@ 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_extends, - [75028] = 35, + [75138] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(6101), 1, + anon_sym_STAR, + ACTIONS(6103), 1, + anon_sym_async, + ACTIONS(6105), 1, + anon_sym_readonly, + STATE(2787), 1, + sym_comment, + STATE(3619), 1, + sym_override_modifier, + STATE(3994), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6107), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 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(4496), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [75220] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(6042), 1, + ACTIONS(6059), 1, anon_sym_AMP_AMP, - ACTIONS(6044), 1, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, + ACTIONS(6063), 1, anon_sym_GT_GT, - ACTIONS(6050), 1, + ACTIONS(6067), 1, anon_sym_AMP, - ACTIONS(6052), 1, + ACTIONS(6069), 1, anon_sym_CARET, - ACTIONS(6054), 1, + ACTIONS(6071), 1, anon_sym_PIPE, - ACTIONS(6058), 1, + ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, + ACTIONS(6079), 1, anon_sym_LT, - ACTIONS(6070), 1, + ACTIONS(6087), 1, anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, + ACTIONS(6091), 1, sym__ternary_qmark, - ACTIONS(6080), 1, - anon_sym_SEMI, - ACTIONS(6082), 1, - sym__automatic_semicolon, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(2933), 1, + STATE(2788), 1, sym_comment, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6038), 2, + ACTIONS(6053), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6040), 2, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6048), 2, + ACTIONS(6065), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6056), 2, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + ACTIONS(6109), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(6064), 3, + ACTIONS(6081), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [75144] = 6, + [75334] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6088), 1, - sym_regex_flags, - STATE(2934), 1, + STATE(2789), 1, sym_comment, - ACTIONS(6084), 16, + ACTIONS(5332), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -289516,17 +277259,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(6086), 25, + ACTIONS(5334), 29, + 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, @@ -289541,29 +277283,98 @@ 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, - [75202] = 8, + anon_sym_satisfies, + anon_sym_extends, + [75390] = 12, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2146), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5169), 1, + ACTIONS(3267), 1, + anon_sym_QMARK, + ACTIONS(3581), 1, anon_sym_extends, - STATE(2935), 1, + ACTIONS(5401), 1, + anon_sym_LBRACK, + ACTIONS(5970), 1, + anon_sym_COLON, + STATE(2790), 1, sym_comment, - ACTIONS(5779), 2, + ACTIONS(5404), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6031), 2, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5782), 3, + anon_sym_RBRACK, + ACTIONS(2144), 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(2150), 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, + [75460] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5320), 1, + anon_sym_QMARK, + ACTIONS(5322), 1, + anon_sym_extends, + ACTIONS(5391), 1, + anon_sym_EQ, + ACTIONS(5395), 1, + anon_sym_LBRACK, + ACTIONS(5928), 1, + anon_sym_COLON, + STATE(2791), 1, + sym_comment, + ACTIONS(5398), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(6037), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5389), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -289571,14 +277382,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 26, - sym__automatic_semicolon, + ACTIONS(5393), 22, 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, @@ -289598,14 +277405,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75264] = 5, + [75530] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2936), 1, + STATE(2792), 1, sym_comment, - ACTIONS(5177), 13, + ACTIONS(5328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289619,7 +277426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5179), 29, + ACTIONS(5330), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -289649,14 +277456,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75320] = 5, + [75586] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1051), 1, + anon_sym_RBRACE, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(2993), 1, + anon_sym_readonly, + ACTIONS(2997), 1, + anon_sym_override, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6093), 1, + anon_sym_STAR, + STATE(2793), 1, + sym_comment, + STATE(3632), 1, + sym_override_modifier, + STATE(4672), 1, + sym__property_name, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [75676] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2937), 1, + STATE(2794), 1, sym_comment, - ACTIONS(5177), 13, + ACTIONS(5328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -289670,7 +277545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5179), 29, + ACTIONS(5330), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -289700,44 +277575,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [75376] = 11, + [75732] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2146), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4973), 1, - anon_sym_extends, - ACTIONS(5524), 1, - anon_sym_LBRACK, - ACTIONS(6095), 1, - anon_sym_RPAREN, - STATE(2938), 1, + STATE(2795), 1, sym_comment, - ACTIONS(5527), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6090), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6092), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4218), 11, + ACTIONS(2144), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(2150), 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, @@ -289757,44 +277627,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75444] = 11, + [75790] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4334), 1, - anon_sym_QMARK, - ACTIONS(4349), 1, - anon_sym_EQ, - ACTIONS(5779), 1, - anon_sym_LBRACK, - STATE(2939), 1, + STATE(2796), 1, sym_comment, - ACTIONS(4352), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5169), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5782), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 11, + ACTIONS(5328), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(5330), 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, @@ -289814,124 +277677,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75512] = 34, + anon_sym_extends, + [75846] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + STATE(2797), 1, + sym_comment, + ACTIONS(5300), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5302), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4915), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4917), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, - anon_sym_GT_GT, - ACTIONS(5572), 1, - anon_sym_AMP, - ACTIONS(5574), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5576), 1, - anon_sym_PIPE, - ACTIONS(5580), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - ACTIONS(5592), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(2940), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5562), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5570), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5588), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5590), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6099), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5586), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [75626] = 11, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [75902] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5068), 1, - anon_sym_LBRACK, - ACTIONS(5074), 1, - anon_sym_extends, - ACTIONS(6101), 1, - anon_sym_RPAREN, - STATE(2941), 1, + STATE(2798), 1, sym_comment, - ACTIONS(5064), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5071), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5931), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5062), 11, + ACTIONS(5300), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5066), 22, + ACTIONS(5302), 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, @@ -289951,125 +277779,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75694] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6104), 1, - anon_sym_STAR, - ACTIONS(6106), 1, - anon_sym_RBRACE, - STATE(2942), 1, - sym_comment, - STATE(3765), 1, - sym_override_modifier, - STATE(4902), 1, - sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [75784] = 18, + anon_sym_extends, + [75958] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(6108), 1, + ACTIONS(6059), 1, + anon_sym_AMP_AMP, + ACTIONS(6061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6063), 1, + anon_sym_GT_GT, + ACTIONS(6067), 1, + anon_sym_AMP, + ACTIONS(6069), 1, + anon_sym_CARET, + ACTIONS(6071), 1, + anon_sym_PIPE, + ACTIONS(6075), 1, + anon_sym_PERCENT, + ACTIONS(6077), 1, + anon_sym_STAR_STAR, + ACTIONS(6079), 1, anon_sym_LT, - STATE(2830), 1, + ACTIONS(6087), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6091), 1, + sym__ternary_qmark, + STATE(2656), 1, sym_type_arguments, - STATE(2943), 1, + STATE(2799), 1, sym_comment, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3272), 2, + ACTIONS(6053), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6055), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6065), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6073), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6083), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6085), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6111), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5599), 11, + ACTIONS(6081), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76072] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(3581), 1, + anon_sym_extends, + ACTIONS(5401), 1, + anon_sym_LBRACK, + ACTIONS(6113), 1, + anon_sym_RPAREN, + STATE(2800), 1, + sym_comment, + ACTIONS(2146), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5404), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5970), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2144), 11, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5601), 16, - sym__automatic_semicolon, + ACTIONS(2150), 22, sym__ternary_qmark, - anon_sym_SEMI, + 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, @@ -290083,32 +277913,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [75866] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [76140] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - STATE(2944), 1, + STATE(2801), 1, sym_comment, - ACTIONS(5349), 11, + ACTIONS(5300), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5351), 28, + ACTIONS(5302), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290137,33 +277967,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [75928] = 14, + anon_sym_extends, + [76196] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(6111), 1, - anon_sym_LT, - STATE(2830), 1, - sym_type_arguments, - STATE(2945), 1, + STATE(2802), 1, sym_comment, - STATE(6311), 1, - sym_optional_chain, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5785), 12, + ACTIONS(5290), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290174,13 +277986,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 20, + ACTIONS(5292), 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, @@ -290196,15 +278016,17 @@ 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, - [76002] = 5, + anon_sym_extends, + [76252] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2946), 1, + STATE(2803), 1, sym_comment, - ACTIONS(5355), 13, + ACTIONS(5290), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290218,7 +278040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5074), 29, + ACTIONS(5292), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290248,14 +278070,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [76058] = 5, + [76308] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2947), 1, + STATE(2804), 1, sym_comment, - ACTIONS(5341), 13, + ACTIONS(5290), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290269,7 +278091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5343), 29, + ACTIONS(5292), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290299,21 +278121,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [76114] = 6, + [76364] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6074), 1, - anon_sym_AMP, - STATE(2948), 1, + STATE(2805), 1, sym_comment, - ACTIONS(5337), 12, + ACTIONS(5286), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -290321,7 +278142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5339), 29, + ACTIONS(5288), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290351,96 +278172,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [76172] = 34, + [76420] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(964), 1, + anon_sym_RBRACE, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(2993), 1, + anon_sym_readonly, + ACTIONS(2997), 1, + anon_sym_override, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6093), 1, + anon_sym_STAR, + STATE(2806), 1, + sym_comment, + STATE(3632), 1, + sym_override_modifier, + STATE(4672), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [76510] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5090), 1, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(6059), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, + ACTIONS(6063), 1, anon_sym_GT_GT, - ACTIONS(5098), 1, + ACTIONS(6067), 1, anon_sym_AMP, - ACTIONS(5100), 1, + ACTIONS(6069), 1, anon_sym_CARET, - ACTIONS(5102), 1, + ACTIONS(6071), 1, anon_sym_PIPE, - ACTIONS(5106), 1, + ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, + ACTIONS(6079), 1, anon_sym_LT, - ACTIONS(5118), 1, + ACTIONS(6087), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, + ACTIONS(6091), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2656), 1, sym_type_arguments, - STATE(2949), 1, + STATE(2807), 1, sym_comment, - STATE(6297), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5487), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6053), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5086), 2, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, + ACTIONS(6065), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5104), 2, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5720), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2759), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5112), 3, + ACTIONS(6081), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [76286] = 5, + [76624] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2950), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(6116), 1, + anon_sym_LT, + STATE(2656), 1, + sym_type_arguments, + STATE(2808), 1, sym_comment, - ACTIONS(5139), 13, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5658), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -290449,21 +278365,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5137), 29, + ACTIONS(5660), 16, sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -290477,127 +278384,314 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [76342] = 5, + [76706] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2951), 1, - sym_comment, - ACTIONS(5319), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5321), 29, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5430), 1, anon_sym_LBRACK, + ACTIONS(5432), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(6059), 1, anon_sym_AMP_AMP, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6063), 1, + anon_sym_GT_GT, + ACTIONS(6067), 1, + anon_sym_AMP, + ACTIONS(6069), 1, anon_sym_CARET, + ACTIONS(6071), 1, + anon_sym_PIPE, + ACTIONS(6075), 1, anon_sym_PERCENT, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6079), 1, + anon_sym_LT, + ACTIONS(6087), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6091), 1, + sym__ternary_qmark, + STATE(2656), 1, + sym_type_arguments, + STATE(2809), 1, + sym_comment, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [76398] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(2952), 1, - sym_comment, - ACTIONS(5315), 13, + ACTIONS(5521), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6053), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6065), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5317), 29, + ACTIONS(6085), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(6081), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [76820] = 17, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5037), 1, + anon_sym_STAR, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5049), 1, + anon_sym_async, + ACTIONS(5477), 1, + anon_sym_LBRACK, + STATE(2810), 1, + sym_comment, + STATE(3950), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5053), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6025), 2, anon_sym_COMMA, anon_sym_RBRACE, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4496), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [76900] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5037), 1, + anon_sym_STAR, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, anon_sym_LBRACK, - anon_sym_DOT, + STATE(2811), 1, + sym_comment, + STATE(4693), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5581), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6025), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [76978] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(6059), 1, anon_sym_AMP_AMP, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6063), 1, + anon_sym_GT_GT, + ACTIONS(6067), 1, + anon_sym_AMP, + ACTIONS(6069), 1, anon_sym_CARET, + ACTIONS(6071), 1, + anon_sym_PIPE, + ACTIONS(6075), 1, anon_sym_PERCENT, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6079), 1, + anon_sym_LT, + ACTIONS(6087), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6091), 1, + sym__ternary_qmark, + STATE(2656), 1, + sym_type_arguments, + STATE(2812), 1, + sym_comment, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5523), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6053), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6055), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6065), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6073), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6083), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(6081), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [76454] = 8, + [77092] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, + ACTIONS(5322), 1, anon_sym_extends, - STATE(2953), 1, + ACTIONS(5395), 1, + anon_sym_LBRACK, + ACTIONS(6119), 1, + anon_sym_RPAREN, + STATE(2813), 1, sym_comment, - ACTIONS(5307), 11, + ACTIONS(5391), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5398), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5928), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5389), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290609,16 +278703,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5309), 28, - sym__automatic_semicolon, + ACTIONS(5393), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -290638,33 +278726,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76516] = 8, + [77160] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5054), 1, - anon_sym_extends, - ACTIONS(6114), 1, - anon_sym_LBRACK, - STATE(2954), 1, + STATE(2814), 1, sym_comment, - ACTIONS(5052), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5303), 11, + ACTIONS(3267), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5305), 27, + ACTIONS(3581), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290673,6 +278756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -290692,16 +278776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76578] = 6, + anon_sym_extends, + [77216] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6116), 1, - anon_sym_extends, - STATE(2955), 1, + STATE(2815), 1, sym_comment, - ACTIONS(5297), 13, + ACTIONS(5270), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290715,7 +278798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5299), 28, + ACTIONS(5272), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290744,16 +278827,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [76636] = 6, + anon_sym_extends, + [77272] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6114), 1, - anon_sym_LBRACK, - STATE(2956), 1, + STATE(2816), 1, sym_comment, - ACTIONS(5293), 13, + ACTIONS(5260), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290767,7 +278849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5295), 28, + ACTIONS(5262), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290776,6 +278858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -290796,14 +278879,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [76694] = 5, + [77328] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2957), 1, + STATE(2817), 1, sym_comment, - ACTIONS(5128), 13, + ACTIONS(5256), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290817,7 +278900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5130), 29, + ACTIONS(5258), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290847,14 +278930,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [76750] = 5, + [77384] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2958), 1, + STATE(2818), 1, sym_comment, - ACTIONS(5173), 13, + ACTIONS(5248), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -290868,7 +278951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5175), 29, + ACTIONS(5250), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -290898,156 +278981,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [76806] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, - anon_sym_AMP_AMP, - ACTIONS(5566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, - anon_sym_GT_GT, - ACTIONS(5572), 1, - anon_sym_AMP, - ACTIONS(5574), 1, - anon_sym_CARET, - ACTIONS(5576), 1, - anon_sym_PIPE, - ACTIONS(5580), 1, - anon_sym_PERCENT, - ACTIONS(5582), 1, - anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - ACTIONS(5592), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(2959), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5562), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5570), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5588), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5590), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5629), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5586), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [76920] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5149), 1, - anon_sym_STAR, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, - anon_sym_LBRACK, - STATE(2960), 1, - sym_comment, - STATE(4882), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5512), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5925), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [76998] = 5, + [77440] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2961), 1, + STATE(2819), 1, sym_comment, - ACTIONS(5048), 13, + ACTIONS(5248), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291061,7 +279002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 29, + ACTIONS(5250), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291091,78 +279032,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77054] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(6118), 1, - anon_sym_STAR, - ACTIONS(6120), 1, - anon_sym_async, - ACTIONS(6122), 1, - anon_sym_readonly, - STATE(2962), 1, - sym_comment, - STATE(3767), 1, - sym_override_modifier, - STATE(4061), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6124), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4492), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [77136] = 5, + [77496] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2963), 1, + STATE(2820), 1, sym_comment, - ACTIONS(5282), 13, + ACTIONS(5248), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291176,7 +279053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5284), 29, + ACTIONS(5250), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291206,14 +279083,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77192] = 5, + [77552] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2964), 1, + STATE(2821), 1, sym_comment, - ACTIONS(5181), 13, + ACTIONS(5238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291227,7 +279104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5183), 29, + ACTIONS(5240), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291257,44 +279134,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77248] = 11, + [77608] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4973), 1, - anon_sym_extends, - ACTIONS(5524), 1, - anon_sym_LBRACK, - ACTIONS(6130), 1, - anon_sym_RPAREN, - STATE(2965), 1, + STATE(2822), 1, sym_comment, - ACTIONS(5527), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6126), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6128), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4218), 11, + ACTIONS(5238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(5240), 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, @@ -291314,16 +279184,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77316] = 6, + anon_sym_extends, + [77664] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6133), 1, - anon_sym_DOT, - STATE(2966), 1, + STATE(2823), 1, sym_comment, - ACTIONS(5381), 13, + ACTIONS(5238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291337,7 +279206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5383), 28, + ACTIONS(5240), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291347,6 +279216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -291366,7 +279236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77374] = 16, + [77720] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -291375,39 +279245,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5514), 1, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(6122), 1, anon_sym_STAR, - ACTIONS(5518), 1, + ACTIONS(6124), 1, anon_sym_async, - ACTIONS(5530), 1, - anon_sym_LBRACK, - ACTIONS(6135), 1, - anon_sym_abstract, - STATE(2967), 1, + ACTIONS(6126), 1, + anon_sym_readonly, + STATE(2824), 1, sym_comment, - STATE(4070), 1, + STATE(3625), 1, + sym_override_modifier, + STATE(3978), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(5522), 2, + ACTIONS(6128), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, + ACTIONS(985), 8, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4492), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(4496), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291415,12 +279289,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -291428,14 +279300,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [77452] = 5, + [77802] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2968), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(6130), 1, + anon_sym_LT, + STATE(2656), 1, + sym_type_arguments, + STATE(2825), 1, sym_comment, - ACTIONS(5377), 13, + STATE(5716), 1, + sym_optional_chain, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291446,21 +279337,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5379), 29, + ACTIONS(5680), 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -291476,17 +279359,15 @@ 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_extends, - [77508] = 5, + [77876] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2969), 1, + STATE(2826), 1, sym_comment, - ACTIONS(4461), 13, + ACTIONS(5227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291500,7 +279381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5365), 29, + ACTIONS(5229), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291530,14 +279411,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77564] = 5, + [77932] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2970), 1, + STATE(2827), 1, sym_comment, - ACTIONS(5401), 13, + ACTIONS(5227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291551,7 +279432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5403), 29, + ACTIONS(5229), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291581,14 +279462,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77620] = 5, + [77988] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2971), 1, + STATE(2828), 1, sym_comment, - ACTIONS(5128), 13, + ACTIONS(5227), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291602,7 +279483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5130), 29, + ACTIONS(5229), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291632,16 +279513,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77676] = 6, + [78044] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4963), 1, - anon_sym_extends, - STATE(2972), 1, + STATE(2829), 1, sym_comment, - ACTIONS(5251), 13, + ACTIONS(5223), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291655,7 +279534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5253), 28, + ACTIONS(5225), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291684,32 +279563,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77734] = 8, + anon_sym_extends, + [78100] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6074), 1, - anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - STATE(2973), 1, + STATE(2830), 1, sym_comment, - ACTIONS(5251), 11, + ACTIONS(4458), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5253), 28, + ACTIONS(5242), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291738,94 +279614,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [77796] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5564), 1, - anon_sym_AMP_AMP, - ACTIONS(5566), 1, - anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, - anon_sym_GT_GT, - ACTIONS(5572), 1, - anon_sym_AMP, - ACTIONS(5574), 1, - anon_sym_CARET, - ACTIONS(5576), 1, - anon_sym_PIPE, - ACTIONS(5580), 1, - anon_sym_PERCENT, - ACTIONS(5582), 1, - anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - ACTIONS(5592), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(2974), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5558), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5562), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5570), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5578), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5588), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5590), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6137), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5586), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [77910] = 5, + anon_sym_extends, + [78156] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2975), 1, + STATE(2831), 1, sym_comment, - ACTIONS(5401), 13, + ACTIONS(4460), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291839,7 +279636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5403), 29, + ACTIONS(5236), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291869,71 +279666,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [77966] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(3587), 1, - anon_sym_extends, - ACTIONS(5056), 1, - anon_sym_LBRACK, - ACTIONS(6139), 1, - anon_sym_RPAREN, - STATE(2976), 1, - sym_comment, - ACTIONS(2144), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5059), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5911), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2142), 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(2148), 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, - [78034] = 5, + [78212] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2977), 1, + STATE(2832), 1, sym_comment, - ACTIONS(5391), 13, + ACTIONS(4462), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -291947,7 +279687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5393), 29, + ACTIONS(5234), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -291977,187 +279717,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [78090] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(6042), 1, - anon_sym_AMP_AMP, - ACTIONS(6044), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, - anon_sym_GT_GT, - ACTIONS(6050), 1, - anon_sym_AMP, - ACTIONS(6052), 1, - anon_sym_CARET, - ACTIONS(6054), 1, - anon_sym_PIPE, - ACTIONS(6058), 1, - anon_sym_PERCENT, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6062), 1, - anon_sym_LT, - ACTIONS(6070), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, - sym__ternary_qmark, - STATE(2830), 1, - sym_type_arguments, - STATE(2978), 1, - sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6038), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6040), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6048), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6056), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6066), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6068), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6142), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(6064), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [78204] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4238), 1, - anon_sym_EQ, - ACTIONS(5169), 1, - anon_sym_extends, - STATE(2979), 1, - sym_comment, - ACTIONS(5779), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5782), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 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(4222), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78268] = 18, + [78268] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4516), 1, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(2993), 1, + anon_sym_readonly, + ACTIONS(2997), 1, anon_sym_override, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6144), 1, + ACTIONS(6093), 1, anon_sym_STAR, - ACTIONS(6146), 1, - anon_sym_async, - ACTIONS(6148), 1, - anon_sym_readonly, - STATE(2980), 1, + ACTIONS(6133), 1, + anon_sym_RBRACE, + STATE(2833), 1, sym_comment, - STATE(3768), 1, + STATE(3632), 1, sym_override_modifier, - STATE(4091), 1, + STATE(4672), 1, sym__property_name, - ACTIONS(3991), 2, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6150), 2, + ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(985), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4492), 18, + ACTIONS(2989), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292176,117 +279785,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [78350] = 35, + [78358] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(6042), 1, + ACTIONS(6059), 1, anon_sym_AMP_AMP, - ACTIONS(6044), 1, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, + ACTIONS(6063), 1, anon_sym_GT_GT, - ACTIONS(6050), 1, + ACTIONS(6067), 1, anon_sym_AMP, - ACTIONS(6052), 1, + ACTIONS(6069), 1, anon_sym_CARET, - ACTIONS(6054), 1, + ACTIONS(6071), 1, anon_sym_PIPE, - ACTIONS(6058), 1, + ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, + ACTIONS(6079), 1, anon_sym_LT, - ACTIONS(6070), 1, + ACTIONS(6087), 1, anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, + ACTIONS(6091), 1, sym__ternary_qmark, - ACTIONS(6152), 1, + ACTIONS(6135), 1, anon_sym_SEMI, - ACTIONS(6154), 1, + ACTIONS(6137), 1, sym__automatic_semicolon, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(2981), 1, + STATE(2834), 1, sym_comment, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6038), 2, + ACTIONS(6053), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6040), 2, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6048), 2, + ACTIONS(6065), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6056), 2, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(6064), 3, + ACTIONS(6081), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78466] = 15, + [78474] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(6156), 1, - anon_sym_LT, - STATE(2830), 1, - sym_type_arguments, - STATE(2982), 1, + STATE(2835), 1, sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5463), 12, + ACTIONS(5354), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292297,13 +279884,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5465), 18, + ACTIONS(5356), 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, @@ -292317,96 +279912,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [78542] = 12, + anon_sym_extends, + [78530] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5064), 1, - anon_sym_EQ, - ACTIONS(5068), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5074), 1, - anon_sym_extends, - ACTIONS(5355), 1, - anon_sym_QMARK, - ACTIONS(5931), 1, - anon_sym_COLON, - STATE(2983), 1, - sym_comment, - ACTIONS(5071), 2, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, + anon_sym_AMP_AMP, + ACTIONS(5493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5495), 1, + anon_sym_GT_GT, + ACTIONS(5499), 1, anon_sym_AMP, + ACTIONS(5501), 1, + anon_sym_CARET, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(5993), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5062), 11, + ACTIONS(5507), 1, + anon_sym_PERCENT, + ACTIONS(5509), 1, + anon_sym_STAR_STAR, + ACTIONS(5517), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5519), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2836), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5497), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5066), 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, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(6139), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5511), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78612] = 5, + [78644] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2984), 1, + ACTIONS(4975), 1, + anon_sym_extends, + ACTIONS(5858), 1, + anon_sym_LBRACK, + ACTIONS(6145), 1, + anon_sym_RPAREN, + STATE(2837), 1, sym_comment, - ACTIONS(5387), 13, + ACTIONS(5861), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6141), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6143), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4238), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5389), 29, - sym__automatic_semicolon, + ACTIONS(4242), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -292426,96 +280054,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [78668] = 34, + [78712] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(6042), 1, + ACTIONS(6059), 1, anon_sym_AMP_AMP, - ACTIONS(6044), 1, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, + ACTIONS(6063), 1, anon_sym_GT_GT, - ACTIONS(6050), 1, + ACTIONS(6067), 1, anon_sym_AMP, - ACTIONS(6052), 1, + ACTIONS(6069), 1, anon_sym_CARET, - ACTIONS(6054), 1, + ACTIONS(6071), 1, anon_sym_PIPE, - ACTIONS(6058), 1, + ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, + ACTIONS(6079), 1, anon_sym_LT, - ACTIONS(6070), 1, + ACTIONS(6087), 1, anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, + ACTIONS(6091), 1, sym__ternary_qmark, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(2985), 1, + STATE(2838), 1, sym_comment, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5451), 2, + ACTIONS(5525), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(6038), 2, + ACTIONS(6053), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6040), 2, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6048), 2, + ACTIONS(6065), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6056), 2, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(6064), 3, + ACTIONS(6081), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [78782] = 5, + [78826] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2986), 1, + ACTIONS(6152), 1, + sym_regex_flags, + STATE(2839), 1, sym_comment, - ACTIONS(5391), 13, + ACTIONS(6148), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -292528,16 +280158,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5393), 29, - sym__automatic_semicolon, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6150), 25, sym__ternary_qmark, - anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -292552,77 +280183,97 @@ 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, - [78838] = 11, + [78884] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5068), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5074), 1, - anon_sym_extends, - ACTIONS(5993), 1, - anon_sym_RPAREN, - STATE(2987), 1, - sym_comment, - ACTIONS(5064), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5071), 2, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(6059), 1, + anon_sym_AMP_AMP, + ACTIONS(6061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6063), 1, + anon_sym_GT_GT, + ACTIONS(6067), 1, anon_sym_AMP, + ACTIONS(6069), 1, + anon_sym_CARET, + ACTIONS(6071), 1, anon_sym_PIPE, - ACTIONS(5772), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5062), 11, + ACTIONS(6075), 1, + anon_sym_PERCENT, + ACTIONS(6077), 1, + anon_sym_STAR_STAR, + ACTIONS(6079), 1, + anon_sym_LT, + ACTIONS(6087), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6091), 1, + sym__ternary_qmark, + STATE(2656), 1, + sym_type_arguments, + STATE(2840), 1, + sym_comment, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5527), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6053), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6065), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5066), 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, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(6081), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [78906] = 5, + [78998] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2988), 1, + STATE(2841), 1, sym_comment, - ACTIONS(4454), 13, + ACTIONS(4963), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292636,7 +280287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5353), 29, + ACTIONS(4965), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -292666,14 +280317,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [78962] = 5, + [79054] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2989), 1, + ACTIONS(6154), 1, + anon_sym_LBRACK, + STATE(2842), 1, sym_comment, - ACTIONS(5387), 13, + ACTIONS(5278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292687,7 +280340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5389), 29, + ACTIONS(5280), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -292696,7 +280349,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -292717,16 +280369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79018] = 6, + [79112] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5261), 1, - anon_sym_extends, - STATE(2990), 1, + STATE(2843), 1, sym_comment, - ACTIONS(5357), 13, + ACTIONS(5278), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292740,7 +280390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5359), 28, + ACTIONS(5280), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -292769,76 +280419,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79076] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(6118), 1, - anon_sym_STAR, - ACTIONS(6120), 1, - anon_sym_async, - ACTIONS(6159), 1, - anon_sym_abstract, - STATE(2991), 1, - sym_comment, - STATE(4059), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6124), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4492), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [79154] = 5, + anon_sym_extends, + [79168] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2992), 1, + ACTIONS(6156), 1, + anon_sym_DOT, + STATE(2844), 1, sym_comment, - ACTIONS(5373), 13, + ACTIONS(5336), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292852,7 +280443,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5375), 29, + ACTIONS(5338), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -292862,7 +280453,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -292882,14 +280472,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79210] = 5, + [79226] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2993), 1, + STATE(2845), 1, sym_comment, - ACTIONS(5205), 13, + ACTIONS(5324), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -292903,7 +280493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5207), 29, + ACTIONS(5326), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -292933,164 +280523,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [79266] = 5, + [79282] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2994), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(6063), 1, + anon_sym_GT_GT, + ACTIONS(6075), 1, + anon_sym_PERCENT, + ACTIONS(6077), 1, + anon_sym_STAR_STAR, + ACTIONS(6079), 1, + anon_sym_LT, + STATE(2656), 1, + sym_type_arguments, + STATE(2846), 1, sym_comment, - ACTIONS(4459), 13, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6053), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6065), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6073), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5367), 29, + ACTIONS(5569), 14, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [79322] = 35, + [79370] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(6042), 1, + ACTIONS(6059), 1, anon_sym_AMP_AMP, - ACTIONS(6044), 1, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, + ACTIONS(6063), 1, anon_sym_GT_GT, - ACTIONS(6050), 1, + ACTIONS(6067), 1, anon_sym_AMP, - ACTIONS(6052), 1, + ACTIONS(6069), 1, anon_sym_CARET, - ACTIONS(6054), 1, + ACTIONS(6071), 1, anon_sym_PIPE, - ACTIONS(6058), 1, + ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, + ACTIONS(6079), 1, anon_sym_LT, - ACTIONS(6070), 1, + ACTIONS(6087), 1, anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, + ACTIONS(6091), 1, sym__ternary_qmark, - ACTIONS(6161), 1, - anon_sym_SEMI, - ACTIONS(6163), 1, - sym__automatic_semicolon, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(2995), 1, + STATE(2847), 1, sym_comment, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6038), 2, + ACTIONS(5652), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6053), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6040), 2, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6048), 2, + ACTIONS(6065), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6056), 2, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(6064), 3, + ACTIONS(6081), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [79438] = 8, + [79484] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6074), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(6077), 1, + anon_sym_STAR_STAR, + ACTIONS(6158), 1, + anon_sym_LT, + STATE(2656), 1, + sym_type_arguments, + STATE(2848), 1, + sym_comment, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6076), 1, anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - STATE(2996), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5569), 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, + [79562] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(162), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(6163), 1, + anon_sym_COMMA, + ACTIONS(6165), 1, + anon_sym_RBRACE, + STATE(2849), 1, + sym_comment, + STATE(5715), 1, + aux_sym_object_pattern_repeat1, + STATE(7163), 1, + sym__property_name, + STATE(7199), 1, + sym__destructuring_pattern, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4286), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + STATE(5697), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(6161), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [79644] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2850), 1, sym_comment, - ACTIONS(5369), 11, + ACTIONS(4973), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5371), 28, + ACTIONS(4975), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -293119,37 +280846,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79500] = 5, + anon_sym_extends, + [79700] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2997), 1, + ACTIONS(5368), 1, + anon_sym_extends, + STATE(2851), 1, sym_comment, - ACTIONS(5345), 13, + ACTIONS(5613), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5616), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4238), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5347), 29, + ACTIONS(4242), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -293169,38 +280901,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [79556] = 5, + [79762] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(2998), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5571), 1, + anon_sym_BANG, + ACTIONS(6063), 1, + anon_sym_GT_GT, + ACTIONS(6067), 1, + anon_sym_AMP, + ACTIONS(6069), 1, + anon_sym_CARET, + ACTIONS(6071), 1, + anon_sym_PIPE, + ACTIONS(6075), 1, + anon_sym_PERCENT, + ACTIONS(6077), 1, + anon_sym_STAR_STAR, + ACTIONS(6079), 1, + anon_sym_LT, + STATE(2656), 1, + sym_type_arguments, + STATE(2852), 1, sym_comment, - ACTIONS(5329), 13, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6053), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(6065), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6073), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6083), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6085), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(6081), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5569), 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, + [79864] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4975), 1, + anon_sym_extends, + ACTIONS(5858), 1, + anon_sym_LBRACK, + ACTIONS(6172), 1, + anon_sym_RPAREN, + STATE(2853), 1, + sym_comment, + ACTIONS(5861), 2, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(6167), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6169), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4238), 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(5331), 29, - sym__automatic_semicolon, + ACTIONS(4242), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -293220,85 +281032,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [79612] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, + [79932] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4336), 1, + anon_sym_EQ, + ACTIONS(4344), 1, + anon_sym_QMARK, + ACTIONS(5613), 1, anon_sym_LBRACK, - ACTIONS(6165), 1, - anon_sym_STAR, - ACTIONS(6167), 1, - anon_sym_async, - ACTIONS(6169), 1, - anon_sym_readonly, - STATE(2999), 1, + STATE(2854), 1, sym_comment, - STATE(3779), 1, - sym_override_modifier, - STATE(4126), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6171), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(4339), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4492), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [79694] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6074), 1, + ACTIONS(5368), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5616), 2, anon_sym_AMP, - ACTIONS(6076), 1, anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - STATE(3000), 1, - sym_comment, - ACTIONS(5329), 11, + ACTIONS(4238), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -293310,16 +281066,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5331), 28, - sym__automatic_semicolon, + ACTIONS(4242), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -293339,151 +281089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [79756] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(6042), 1, - anon_sym_AMP_AMP, - ACTIONS(6044), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, - anon_sym_GT_GT, - ACTIONS(6050), 1, - anon_sym_AMP, - ACTIONS(6052), 1, - anon_sym_CARET, - ACTIONS(6054), 1, - anon_sym_PIPE, - ACTIONS(6058), 1, - anon_sym_PERCENT, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6062), 1, - anon_sym_LT, - ACTIONS(6070), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, - sym__ternary_qmark, - STATE(2830), 1, - sym_type_arguments, - STATE(3001), 1, - sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5724), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6038), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6040), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6048), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6056), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6066), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6068), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(6064), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [79870] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(6173), 1, - anon_sym_STAR, - ACTIONS(6175), 1, - anon_sym_async, - ACTIONS(6177), 1, - anon_sym_readonly, - STATE(3002), 1, - sym_comment, - STATE(3775), 1, - sym_override_modifier, - STATE(4056), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6179), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4492), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [79952] = 22, + [80000] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -293500,34 +281106,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2997), 1, anon_sym_override, - ACTIONS(5151), 1, + ACTIONS(5039), 1, anon_sym_EQ, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6104), 1, + ACTIONS(6093), 1, anon_sym_STAR, - ACTIONS(6181), 1, + ACTIONS(6176), 1, anon_sym_RBRACE, - STATE(3003), 1, + STATE(2855), 1, sym_comment, - STATE(3765), 1, + STATE(3632), 1, sym_override_modifier, - STATE(4902), 1, + STATE(4672), 1, sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -293551,202 +281157,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [80042] = 34, + [80090] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, + ACTIONS(5571), 1, anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(6042), 1, + ACTIONS(6059), 1, anon_sym_AMP_AMP, - ACTIONS(6044), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, + ACTIONS(6063), 1, anon_sym_GT_GT, - ACTIONS(6050), 1, + ACTIONS(6067), 1, anon_sym_AMP, - ACTIONS(6052), 1, + ACTIONS(6069), 1, anon_sym_CARET, - ACTIONS(6054), 1, + ACTIONS(6071), 1, anon_sym_PIPE, - ACTIONS(6058), 1, + ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, + ACTIONS(6079), 1, anon_sym_LT, - ACTIONS(6070), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, - sym__ternary_qmark, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(3004), 1, + STATE(2856), 1, sym_comment, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6038), 2, + ACTIONS(6053), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6040), 2, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6048), 2, + ACTIONS(6065), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6056), 2, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6183), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(6064), 3, + ACTIONS(6081), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [80156] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5569), 7, + sym__automatic_semicolon, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5090), 1, - anon_sym_AMP_AMP, - ACTIONS(5092), 1, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, - anon_sym_GT_GT, - ACTIONS(5098), 1, - anon_sym_AMP, - ACTIONS(5100), 1, - anon_sym_CARET, - ACTIONS(5102), 1, - anon_sym_PIPE, - ACTIONS(5106), 1, - anon_sym_PERCENT, - ACTIONS(5108), 1, - anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - ACTIONS(5118), 1, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, anon_sym_satisfies, - ACTIONS(5124), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3005), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5076), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5086), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5096), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5114), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5116), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6015), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5112), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [80270] = 9, + [80194] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4286), 1, - anon_sym_EQ, - ACTIONS(5169), 1, - anon_sym_extends, - STATE(3006), 1, + STATE(2857), 1, sym_comment, - ACTIONS(5779), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5782), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(5320), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 25, + ACTIONS(5322), 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, @@ -293766,82 +281282,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80334] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1022), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6104), 1, - anon_sym_STAR, - STATE(3007), 1, - sym_comment, - STATE(3765), 1, - sym_override_modifier, - STATE(4902), 1, - sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [80424] = 5, + anon_sym_extends, + [80250] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3008), 1, + STATE(2858), 1, sym_comment, - ACTIONS(4991), 13, + ACTIONS(5316), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -293855,7 +281304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4993), 29, + ACTIONS(5318), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -293885,32 +281334,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [80480] = 8, + [80306] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6074), 1, + ACTIONS(6095), 1, anon_sym_AMP, - ACTIONS(6076), 1, - anon_sym_PIPE, - ACTIONS(6078), 1, - anon_sym_extends, - STATE(3009), 1, + STATE(2859), 1, sym_comment, - ACTIONS(5209), 11, + ACTIONS(5312), 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(5211), 28, + ACTIONS(5314), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -293939,27 +281385,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [80542] = 11, + anon_sym_extends, + [80364] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(6062), 1, - anon_sym_LT, - STATE(2830), 1, - sym_type_arguments, - STATE(3010), 1, + STATE(2860), 1, sym_comment, - STATE(6311), 1, - sym_optional_chain, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5800), 12, + ACTIONS(5308), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -293970,12 +281404,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5802), 23, + ACTIONS(5310), 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, @@ -293995,95 +281434,68 @@ 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, - [80610] = 34, + anon_sym_extends, + [80420] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + STATE(2861), 1, + sym_comment, + ACTIONS(5304), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5306), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4915), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4917), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, - anon_sym_GT_GT, - ACTIONS(5098), 1, - anon_sym_AMP, - ACTIONS(5100), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5102), 1, - anon_sym_PIPE, - ACTIONS(5106), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - ACTIONS(5118), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5124), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3011), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5076), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5086), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(5096), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5104), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5114), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5116), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5629), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5112), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [80724] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [80476] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3012), 1, + STATE(2862), 1, sym_comment, - ACTIONS(3419), 13, + ACTIONS(5296), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -294097,7 +281509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3587), 29, + ACTIONS(5298), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -294127,579 +281539,357 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [80780] = 34, + [80532] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(6042), 1, - anon_sym_AMP_AMP, - ACTIONS(6044), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, - anon_sym_GT_GT, - ACTIONS(6050), 1, + ACTIONS(6095), 1, anon_sym_AMP, - ACTIONS(6052), 1, - anon_sym_CARET, - ACTIONS(6054), 1, + ACTIONS(6097), 1, anon_sym_PIPE, - ACTIONS(6058), 1, - anon_sym_PERCENT, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6062), 1, - anon_sym_LT, - ACTIONS(6070), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, - sym__ternary_qmark, - STATE(2830), 1, - sym_type_arguments, - STATE(3013), 1, + ACTIONS(6099), 1, + anon_sym_extends, + STATE(2863), 1, sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6038), 2, + ACTIONS(5282), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6040), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6048), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6056), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6185), 2, + ACTIONS(5284), 28, sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(6064), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [80894] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5415), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5417), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(6042), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6044), 1, anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, - anon_sym_GT_GT, - ACTIONS(6050), 1, - anon_sym_AMP, - ACTIONS(6052), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6054), 1, - anon_sym_PIPE, - ACTIONS(6058), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, - anon_sym_LT, - ACTIONS(6070), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, - sym__ternary_qmark, - STATE(2830), 1, - sym_type_arguments, - STATE(3014), 1, - sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5560), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6038), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [80594] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5280), 1, + anon_sym_extends, + ACTIONS(6154), 1, + anon_sym_LBRACK, + STATE(2864), 1, + sym_comment, + ACTIONS(5278), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5274), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6040), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6048), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6056), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(6064), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [81008] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5276), 27, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, anon_sym_QMARK_DOT, - ACTIONS(5090), 1, anon_sym_AMP_AMP, - ACTIONS(5092), 1, anon_sym_PIPE_PIPE, - ACTIONS(5094), 1, - anon_sym_GT_GT, - ACTIONS(5098), 1, - anon_sym_AMP, - ACTIONS(5100), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(5102), 1, - anon_sym_PIPE, - ACTIONS(5106), 1, anon_sym_PERCENT, - ACTIONS(5108), 1, anon_sym_STAR_STAR, - ACTIONS(5110), 1, - anon_sym_LT, - ACTIONS(5118), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5122), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - ACTIONS(5124), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3015), 1, + [80656] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(6178), 1, + anon_sym_extends, + STATE(2865), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5076), 2, + ACTIONS(5264), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(5086), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(5096), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(5104), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5114), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5116), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6099), 2, + ACTIONS(5266), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5112), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [81122] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5415), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5417), 1, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(6042), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6044), 1, anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, - anon_sym_GT_GT, - ACTIONS(6050), 1, - anon_sym_AMP, - ACTIONS(6052), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6054), 1, - anon_sym_PIPE, - ACTIONS(6058), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, - anon_sym_LT, - ACTIONS(6070), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, - sym__ternary_qmark, - STATE(2830), 1, - sym_type_arguments, - STATE(3016), 1, - sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5711), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6038), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6040), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6048), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6056), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6066), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6068), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(6064), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [81236] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [80714] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(6154), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, + STATE(2866), 1, + sym_comment, + ACTIONS(5013), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(6042), 1, - anon_sym_AMP_AMP, - ACTIONS(6044), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(6050), 1, anon_sym_AMP, - ACTIONS(6052), 1, - anon_sym_CARET, - ACTIONS(6054), 1, anon_sym_PIPE, - ACTIONS(6058), 1, - anon_sym_PERCENT, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6062), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(6070), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, - sym__ternary_qmark, - STATE(2830), 1, - sym_type_arguments, - STATE(3017), 1, - sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5634), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5015), 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, - ACTIONS(6038), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6040), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6048), 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, - ACTIONS(6056), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6066), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6068), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(6064), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [81350] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [80772] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, + STATE(2867), 1, + sym_comment, + ACTIONS(5366), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(6042), 1, - anon_sym_AMP_AMP, - ACTIONS(6044), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(6050), 1, anon_sym_AMP, - ACTIONS(6052), 1, - anon_sym_CARET, - ACTIONS(6054), 1, anon_sym_PIPE, - ACTIONS(6058), 1, - anon_sym_PERCENT, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6062), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(6070), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, - sym__ternary_qmark, - STATE(2830), 1, - sym_type_arguments, - STATE(3018), 1, - sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5645), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5368), 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, - ACTIONS(6038), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6040), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6048), 2, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6056), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6066), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6068), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(6064), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [81464] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [80828] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5453), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(6042), 1, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(6044), 1, + ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(6050), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(6052), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(6054), 1, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(6058), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, - anon_sym_LT, - ACTIONS(6070), 1, + ACTIONS(5517), 1, anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, + ACTIONS(5519), 1, sym__ternary_qmark, - STATE(2830), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3019), 1, + STATE(2868), 1, sym_comment, - STATE(6311), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5647), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6038), 2, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6040), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6048), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6056), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + ACTIONS(6180), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6064), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [81578] = 6, + [80942] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3020), 1, + STATE(2869), 1, sym_comment, - ACTIONS(5261), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(5357), 13, + ACTIONS(5373), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -294713,12 +281903,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5359), 25, + ACTIONS(5375), 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, @@ -294739,40 +281932,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81636] = 7, + anon_sym_extends, + [80998] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3021), 1, + STATE(2870), 1, sym_comment, - ACTIONS(5139), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5137), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4218), 11, + ACTIONS(5244), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(5246), 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, @@ -294792,80 +281983,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81696] = 9, + anon_sym_extends, + [81054] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5064), 1, - anon_sym_EQ, - ACTIONS(5068), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, anon_sym_LBRACK, - STATE(3022), 1, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(6075), 1, + anon_sym_PERCENT, + ACTIONS(6077), 1, + anon_sym_STAR_STAR, + ACTIONS(6158), 1, + anon_sym_LT, + STATE(2656), 1, + sym_type_arguments, + STATE(2871), 1, sym_comment, - ACTIONS(5074), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5071), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5062), 10, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6053), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6073), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 8, 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_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5066), 25, + ACTIONS(5569), 16, + sym__automatic_semicolon, 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_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, - [81760] = 9, + [81138] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2144), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5056), 1, - anon_sym_LBRACK, - STATE(3023), 1, + ACTIONS(4240), 1, + anon_sym_EQ, + ACTIONS(5368), 1, + anon_sym_extends, + STATE(2872), 1, sym_comment, - ACTIONS(3587), 2, + ACTIONS(5613), 2, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5059), 3, + anon_sym_LBRACK, + ACTIONS(5616), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(2142), 10, + ACTIONS(4238), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -294876,11 +282078,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2148), 25, + ACTIONS(4242), 25, sym__ternary_qmark, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_COLON, anon_sym_RBRACK, anon_sym_DOT, @@ -294902,245 +282104,175 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [81824] = 34, + [81202] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(6042), 1, - anon_sym_AMP_AMP, - ACTIONS(6044), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, + ACTIONS(6063), 1, anon_sym_GT_GT, - ACTIONS(6050), 1, - anon_sym_AMP, - ACTIONS(6052), 1, - anon_sym_CARET, - ACTIONS(6054), 1, - anon_sym_PIPE, - ACTIONS(6058), 1, + ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, + ACTIONS(6079), 1, anon_sym_LT, - ACTIONS(6070), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, - sym__ternary_qmark, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(3024), 1, + STATE(2873), 1, sym_comment, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6038), 2, + ACTIONS(6053), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6040), 2, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6048), 2, + ACTIONS(6065), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6056), 2, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6187), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(6064), 3, + ACTIONS(5571), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6081), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [81938] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(3587), 1, - anon_sym_extends, - ACTIONS(5056), 1, - anon_sym_LBRACK, - ACTIONS(5997), 1, - anon_sym_RPAREN, - STATE(3025), 1, - sym_comment, - ACTIONS(2144), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5059), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5854), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(2142), 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(2148), 22, + ACTIONS(5569), 9, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [82006] = 34, + [81298] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(6042), 1, - anon_sym_AMP_AMP, - ACTIONS(6044), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, + ACTIONS(6063), 1, anon_sym_GT_GT, - ACTIONS(6050), 1, + ACTIONS(6067), 1, anon_sym_AMP, - ACTIONS(6052), 1, - anon_sym_CARET, - ACTIONS(6054), 1, - anon_sym_PIPE, - ACTIONS(6058), 1, + ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, + ACTIONS(6079), 1, anon_sym_LT, - ACTIONS(6070), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, - sym__ternary_qmark, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(3026), 1, + STATE(2874), 1, sym_comment, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5554), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6038), 2, + ACTIONS(5571), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6053), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6040), 2, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6048), 2, + ACTIONS(6065), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6056), 2, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(6064), 3, + ACTIONS(6081), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [82120] = 5, + ACTIONS(5569), 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, + [81396] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3027), 1, + ACTIONS(6095), 1, + anon_sym_AMP, + ACTIONS(6097), 1, + anon_sym_PIPE, + ACTIONS(6099), 1, + anon_sym_extends, + STATE(2875), 1, sym_comment, - ACTIONS(4475), 13, + ACTIONS(5163), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5274), 29, + ACTIONS(5165), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -295169,15 +282301,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [82176] = 5, + [81458] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3028), 1, + STATE(2876), 1, sym_comment, - ACTIONS(4490), 13, + ACTIONS(5163), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -295191,7 +282322,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5276), 29, + ACTIONS(5165), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -295221,14 +282352,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82232] = 5, + [81514] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3029), 1, + STATE(2877), 1, sym_comment, - ACTIONS(4473), 13, + ACTIONS(5157), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -295242,7 +282373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5278), 29, + ACTIONS(5159), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -295272,30 +282403,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82288] = 6, + [81570] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, - anon_sym_EQ, - STATE(3030), 1, + ACTIONS(6095), 1, + anon_sym_AMP, + ACTIONS(6097), 1, + anon_sym_PIPE, + ACTIONS(6099), 1, + anon_sym_extends, + STATE(2878), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(5145), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 28, + ACTIONS(5147), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -295324,14 +282457,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [82346] = 5, + [81632] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3031), 1, + STATE(2879), 1, sym_comment, - ACTIONS(5361), 13, + ACTIONS(5141), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -295345,7 +282478,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5363), 29, + ACTIONS(5143), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -295375,342 +282508,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [82402] = 34, + [81688] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2146), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5401), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(6042), 1, - anon_sym_AMP_AMP, - ACTIONS(6044), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, - anon_sym_GT_GT, - ACTIONS(6050), 1, - anon_sym_AMP, - ACTIONS(6052), 1, - anon_sym_CARET, - ACTIONS(6054), 1, - anon_sym_PIPE, - ACTIONS(6058), 1, - anon_sym_PERCENT, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6062), 1, - anon_sym_LT, - ACTIONS(6070), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, - sym__ternary_qmark, - STATE(2830), 1, - sym_type_arguments, - STATE(3032), 1, + STATE(2880), 1, sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5689), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6038), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6040), 2, - anon_sym_in, + ACTIONS(3581), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5404), 3, anon_sym_GT, - ACTIONS(6048), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6056), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6066), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6068), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(6064), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82516] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(6042), 1, - anon_sym_AMP_AMP, - ACTIONS(6044), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, - anon_sym_GT_GT, - ACTIONS(6050), 1, anon_sym_AMP, - ACTIONS(6052), 1, - anon_sym_CARET, - ACTIONS(6054), 1, anon_sym_PIPE, - ACTIONS(6058), 1, - anon_sym_PERCENT, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6062), 1, - anon_sym_LT, - ACTIONS(6070), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, - sym__ternary_qmark, - STATE(2830), 1, - sym_type_arguments, - STATE(3033), 1, - sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5687), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6038), 2, + ACTIONS(2144), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6040), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(6048), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6056), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(6064), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [82630] = 30, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5409), 1, - anon_sym_BANG, - ACTIONS(5411), 1, + ACTIONS(2150), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(6042), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6044), 1, anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, - anon_sym_GT_GT, - ACTIONS(6050), 1, - anon_sym_AMP, - ACTIONS(6052), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6054), 1, - anon_sym_PIPE, - ACTIONS(6058), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, - anon_sym_LT, - STATE(2830), 1, - sym_type_arguments, - STATE(3034), 1, - sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6038), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6040), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6048), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6056), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6066), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6068), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(6064), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 6, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_SEMI, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [82736] = 23, + [81752] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5391), 1, + anon_sym_EQ, + ACTIONS(5395), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(6046), 1, - anon_sym_GT_GT, - ACTIONS(6058), 1, - anon_sym_PERCENT, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6062), 1, - anon_sym_LT, - STATE(2830), 1, - sym_type_arguments, - STATE(3035), 1, + STATE(2881), 1, sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6038), 2, + ACTIONS(5322), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5398), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5389), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6040), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(6048), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6056), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(6064), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5409), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 11, - sym__automatic_semicolon, + ACTIONS(5393), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + 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, - [82828] = 5, + [81816] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3036), 1, + STATE(2882), 1, sym_comment, - ACTIONS(4961), 13, + ACTIONS(5308), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5310), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4238), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 29, - sym__automatic_semicolon, + ACTIONS(4242), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -295730,46 +282671,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [82884] = 19, + [81876] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6189), 1, - anon_sym_LT, - STATE(2830), 1, - sym_type_arguments, - STATE(3037), 1, + STATE(2883), 1, sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 11, + ACTIONS(5137), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -295778,32 +282689,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 15, + ACTIONS(5139), 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, - [82968] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [81932] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3038), 1, + ACTIONS(5219), 1, + anon_sym_extends, + STATE(2884), 1, sym_comment, - ACTIONS(3421), 13, + ACTIONS(5252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -295817,7 +282745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3603), 29, + ACTIONS(5254), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -295846,17 +282774,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [83024] = 6, + [81990] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6114), 1, - anon_sym_LBRACK, - STATE(3039), 1, + ACTIONS(5575), 1, + anon_sym_EQ, + STATE(2885), 1, sym_comment, - ACTIONS(5052), 13, + ACTIONS(5573), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -295870,7 +282797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5054), 28, + ACTIONS(5577), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -295879,6 +282806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -295898,44 +282826,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [83082] = 18, + [82048] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(6058), 1, - anon_sym_PERCENT, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6189), 1, - anon_sym_LT, - STATE(2830), 1, - sym_type_arguments, - STATE(3040), 1, + STATE(2886), 1, sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6038), 2, + ACTIONS(5131), 13, anon_sym_STAR, - anon_sym_SLASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -295944,249 +282843,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 16, + ACTIONS(5133), 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, - [83164] = 27, + anon_sym_extends, + [82104] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(6046), 1, - anon_sym_GT_GT, - ACTIONS(6050), 1, - anon_sym_AMP, - ACTIONS(6052), 1, - anon_sym_CARET, - ACTIONS(6058), 1, - anon_sym_PERCENT, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6062), 1, - anon_sym_LT, - STATE(2830), 1, - sym_type_arguments, - STATE(3041), 1, + STATE(2887), 1, sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6038), 2, + ACTIONS(5055), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6040), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6048), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6056), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6066), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6068), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(6064), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 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, - [83264] = 26, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(6046), 1, anon_sym_GT_GT, - ACTIONS(6050), 1, anon_sym_AMP, - ACTIONS(6058), 1, - anon_sym_PERCENT, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6062), 1, - anon_sym_LT, - STATE(2830), 1, - sym_type_arguments, - STATE(3042), 1, - sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5409), 2, - anon_sym_BANG, anon_sym_PIPE, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6038), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6040), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6048), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6056), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(6064), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 9, + ACTIONS(5057), 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_QMARK_QMARK, - anon_sym_satisfies, - [83362] = 25, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(6046), 1, - anon_sym_GT_GT, - ACTIONS(6058), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, - anon_sym_LT, - STATE(2830), 1, - sym_type_arguments, - STATE(3043), 1, - sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6038), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6040), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6048), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6056), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6066), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6068), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6064), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 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_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [83458] = 5, + anon_sym_extends, + [82160] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3044), 1, + STATE(2888), 1, sym_comment, - ACTIONS(5052), 13, + ACTIONS(5131), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296200,7 +282949,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5054), 29, + ACTIONS(5133), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -296230,41 +282979,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [83514] = 8, + [82216] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3045), 1, + STATE(2889), 1, sym_comment, - ACTIONS(5769), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5766), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5321), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(5762), 11, + ACTIONS(5055), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5764), 22, + ACTIONS(5057), 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, @@ -296284,14 +283029,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83576] = 5, + anon_sym_extends, + [82272] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3046), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(6182), 1, + anon_sym_LT, + STATE(2656), 1, + sym_type_arguments, + STATE(2890), 1, sym_comment, - ACTIONS(4971), 13, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5593), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296302,21 +283070,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4973), 29, + ACTIONS(5595), 18, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -296330,23 +283090,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [83632] = 7, + [82348] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5411), 1, - anon_sym_LPAREN, - STATE(3047), 1, + STATE(2891), 1, sym_comment, - STATE(3180), 1, - sym_arguments, - ACTIONS(5325), 13, + ACTIONS(5019), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296360,12 +283112,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5327), 27, + ACTIONS(5021), 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, @@ -296388,14 +283141,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [83692] = 5, + anon_sym_extends, + [82404] = 22, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(2993), 1, + anon_sym_readonly, + ACTIONS(2997), 1, + anon_sym_override, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6093), 1, + anon_sym_STAR, + ACTIONS(6185), 1, + anon_sym_RBRACE, + STATE(2892), 1, + sym_comment, + STATE(3632), 1, + sym_override_modifier, + STATE(4672), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [82494] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3048), 1, + STATE(2893), 1, sym_comment, - ACTIONS(5167), 13, + ACTIONS(5009), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296409,7 +283231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5169), 29, + ACTIONS(5011), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -296439,14 +283261,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [83748] = 5, + [82550] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3049), 1, + STATE(2894), 1, sym_comment, - ACTIONS(5395), 13, + ACTIONS(5019), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296460,7 +283282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5397), 29, + ACTIONS(5021), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -296490,242 +283312,145 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [83804] = 19, + [82606] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(6058), 1, - anon_sym_PERCENT, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6189), 1, - anon_sym_LT, - STATE(2830), 1, - sym_type_arguments, - STATE(3050), 1, + STATE(2895), 1, sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6038), 2, + ACTIONS(5009), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6056), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 16, + ACTIONS(5011), 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, - [83888] = 35, + anon_sym_extends, + [82662] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5453), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(6042), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(6044), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(6050), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(6052), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(6054), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(6058), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(6070), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, sym__ternary_qmark, - ACTIONS(6192), 1, - anon_sym_SEMI, - ACTIONS(6194), 1, - sym__automatic_semicolon, - STATE(2830), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3051), 1, + STATE(2896), 1, sym_comment, - STATE(6311), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6038), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6040), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6048), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6056), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(6064), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [84004] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(6042), 1, - anon_sym_AMP_AMP, - ACTIONS(6044), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, - anon_sym_GT_GT, - ACTIONS(6050), 1, - anon_sym_AMP, - ACTIONS(6052), 1, - anon_sym_CARET, - ACTIONS(6054), 1, - anon_sym_PIPE, - ACTIONS(6058), 1, - anon_sym_PERCENT, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6062), 1, - anon_sym_LT, - ACTIONS(6070), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, - sym__ternary_qmark, - STATE(2830), 1, - sym_type_arguments, - STATE(3052), 1, - sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6038), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6040), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6048), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6056), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6066), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6068), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - ACTIONS(6196), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3272), 2, + ACTIONS(5603), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6064), 3, + ACTIONS(5105), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84118] = 6, + [82776] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2144), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3053), 1, + STATE(2897), 1, sym_comment, - ACTIONS(2142), 13, + ACTIONS(5005), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296739,7 +283464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2148), 28, + ACTIONS(5007), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -296768,22 +283493,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84176] = 9, + anon_sym_extends, + [82832] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5798), 1, - anon_sym_QMARK_DOT, - STATE(3054), 1, + STATE(2898), 1, sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(2178), 13, + ACTIONS(5001), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296797,7 +283515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2180), 25, + ACTIONS(5003), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -296806,6 +283524,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -296823,14 +283544,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84240] = 5, + anon_sym_extends, + [82888] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3055), 1, + STATE(2899), 1, sym_comment, - ACTIONS(5286), 13, + ACTIONS(5005), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296844,7 +283566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5288), 29, + ACTIONS(5007), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -296874,14 +283596,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [84296] = 5, + [82944] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2146), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3056), 1, + ACTIONS(6187), 1, + sym__automatic_semicolon, + STATE(2900), 1, sym_comment, - ACTIONS(5267), 13, + ACTIONS(2222), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2144), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296895,14 +283624,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5269), 29, - sym__automatic_semicolon, + ACTIONS(2150), 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_DOT, @@ -296924,15 +283650,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [84352] = 5, + [83006] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5477), 1, + anon_sym_LBRACK, + ACTIONS(5838), 1, + anon_sym_STAR, + ACTIONS(5842), 1, + anon_sym_async, + ACTIONS(6189), 1, + anon_sym_abstract, + STATE(2901), 1, + sym_comment, + STATE(3904), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5846), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 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(4496), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [83084] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3057), 1, + STATE(2902), 1, sym_comment, - ACTIONS(5267), 13, + ACTIONS(5001), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296946,7 +283733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5269), 29, + ACTIONS(5003), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -296976,14 +283763,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [84408] = 5, + [83140] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3058), 1, + STATE(2903), 1, sym_comment, - ACTIONS(3435), 13, + ACTIONS(5059), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -296997,7 +283784,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3645), 29, + ACTIONS(5061), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -297027,41 +283814,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [84464] = 8, + [83196] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4973), 1, - anon_sym_extends, - STATE(3059), 1, + STATE(2904), 1, sym_comment, - ACTIONS(5524), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5527), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(5063), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 26, + ACTIONS(5065), 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, @@ -297081,542 +283864,830 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [84526] = 35, + anon_sym_extends, + [83252] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(6042), 1, - anon_sym_AMP_AMP, - ACTIONS(6044), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, + ACTIONS(6063), 1, anon_sym_GT_GT, - ACTIONS(6050), 1, + ACTIONS(6067), 1, anon_sym_AMP, - ACTIONS(6052), 1, + ACTIONS(6069), 1, anon_sym_CARET, - ACTIONS(6054), 1, - anon_sym_PIPE, - ACTIONS(6058), 1, + ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, + ACTIONS(6079), 1, anon_sym_LT, - ACTIONS(6070), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, + STATE(2656), 1, + sym_type_arguments, + STATE(2905), 1, + sym_comment, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5571), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6053), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6055), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6065), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6073), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6083), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6085), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(6081), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5569), 8, + sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(6198), 1, + anon_sym_as, anon_sym_SEMI, - ACTIONS(6200), 1, - sym__automatic_semicolon, - STATE(2830), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [83352] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(6075), 1, + anon_sym_PERCENT, + ACTIONS(6077), 1, + anon_sym_STAR_STAR, + ACTIONS(6158), 1, + anon_sym_LT, + STATE(2656), 1, sym_type_arguments, - STATE(3060), 1, + STATE(2906), 1, sym_comment, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6038), 2, + ACTIONS(6053), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6040), 2, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6048), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5569), 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, - ACTIONS(6056), 2, + 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, + [83434] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(6077), 1, + anon_sym_STAR_STAR, + ACTIONS(6158), 1, + anon_sym_LT, + STATE(2656), 1, + sym_type_arguments, + STATE(2907), 1, + sym_comment, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 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, - ACTIONS(6066), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, + ACTIONS(5569), 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, - STATE(3272), 2, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [83518] = 23, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(6063), 1, + anon_sym_GT_GT, + ACTIONS(6075), 1, + anon_sym_PERCENT, + ACTIONS(6077), 1, + anon_sym_STAR_STAR, + ACTIONS(6079), 1, + anon_sym_LT, + STATE(2656), 1, + sym_type_arguments, + STATE(2908), 1, + sym_comment, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6053), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6055), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6065), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6073), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(6064), 3, + ACTIONS(6081), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84642] = 29, + ACTIONS(5571), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5569), 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, + [83610] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5409), 1, - anon_sym_BANG, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(6042), 1, + ACTIONS(5571), 1, + anon_sym_BANG, + ACTIONS(6059), 1, anon_sym_AMP_AMP, - ACTIONS(6046), 1, + ACTIONS(6061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6063), 1, anon_sym_GT_GT, - ACTIONS(6050), 1, + ACTIONS(6067), 1, anon_sym_AMP, - ACTIONS(6052), 1, + ACTIONS(6069), 1, anon_sym_CARET, - ACTIONS(6054), 1, + ACTIONS(6071), 1, anon_sym_PIPE, - ACTIONS(6058), 1, + ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, + ACTIONS(6079), 1, anon_sym_LT, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(3061), 1, + STATE(2909), 1, sym_comment, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6038), 2, + ACTIONS(6053), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6040), 2, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6048), 2, + ACTIONS(6065), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6056), 2, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(6064), 3, + ACTIONS(6081), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 7, + ACTIONS(5569), 6, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_SEMI, - anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [84746] = 28, + [83716] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5409), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, anon_sym_BANG, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(6046), 1, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(6059), 1, + anon_sym_AMP_AMP, + ACTIONS(6061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6063), 1, anon_sym_GT_GT, - ACTIONS(6050), 1, + ACTIONS(6067), 1, anon_sym_AMP, - ACTIONS(6052), 1, + ACTIONS(6069), 1, anon_sym_CARET, - ACTIONS(6054), 1, + ACTIONS(6071), 1, anon_sym_PIPE, - ACTIONS(6058), 1, + ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, + ACTIONS(6079), 1, anon_sym_LT, - STATE(2830), 1, + ACTIONS(6087), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6091), 1, + sym__ternary_qmark, + STATE(2656), 1, sym_type_arguments, - STATE(3062), 1, + STATE(2910), 1, sym_comment, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6038), 2, + ACTIONS(6053), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6040), 2, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6048), 2, + ACTIONS(6065), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6056), 2, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + ACTIONS(6191), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(6064), 3, + ACTIONS(6081), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 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, - [84848] = 34, + [83830] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5564), 1, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, + ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(5495), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(5499), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(5501), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(5507), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, - anon_sym_LT, - ACTIONS(5592), 1, + ACTIONS(5517), 1, anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, + ACTIONS(5519), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3063), 1, + STATE(2911), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5550), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5558), 2, + ACTIONS(5485), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(5489), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(5497), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + ACTIONS(5685), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(5511), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [84962] = 34, + [83944] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(162), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + ACTIONS(6163), 1, + anon_sym_COMMA, + ACTIONS(6195), 1, + anon_sym_RBRACE, + STATE(2912), 1, + sym_comment, + STATE(5632), 1, + aux_sym_object_pattern_repeat1, + STATE(7163), 1, + sym__property_name, + STATE(7199), 1, + sym__destructuring_pattern, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4286), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + STATE(5630), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(6193), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [84026] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(5564), 1, + ACTIONS(6059), 1, anon_sym_AMP_AMP, - ACTIONS(5566), 1, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - ACTIONS(5568), 1, + ACTIONS(6063), 1, anon_sym_GT_GT, - ACTIONS(5572), 1, + ACTIONS(6067), 1, anon_sym_AMP, - ACTIONS(5574), 1, + ACTIONS(6069), 1, anon_sym_CARET, - ACTIONS(5576), 1, + ACTIONS(6071), 1, anon_sym_PIPE, - ACTIONS(5580), 1, + ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(5582), 1, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(5584), 1, + ACTIONS(6079), 1, anon_sym_LT, - ACTIONS(5592), 1, + ACTIONS(6087), 1, anon_sym_QMARK_QMARK, - ACTIONS(5594), 1, + ACTIONS(6091), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2656), 1, sym_type_arguments, - STATE(3064), 1, + STATE(2913), 1, sym_comment, - STATE(6297), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5558), 2, + ACTIONS(5624), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6053), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(5562), 2, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - ACTIONS(5570), 2, + ACTIONS(6065), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(5578), 2, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5588), 2, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5590), 2, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(5841), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2759), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(5586), 3, + ACTIONS(6081), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85076] = 5, + [84140] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3065), 1, - sym_comment, - ACTIONS(5267), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5269), 29, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5430), 1, anon_sym_LBRACK, + ACTIONS(5432), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(6059), 1, anon_sym_AMP_AMP, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6063), 1, + anon_sym_GT_GT, + ACTIONS(6067), 1, + anon_sym_AMP, + ACTIONS(6069), 1, anon_sym_CARET, + ACTIONS(6071), 1, + anon_sym_PIPE, + ACTIONS(6075), 1, anon_sym_PERCENT, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6079), 1, + anon_sym_LT, + ACTIONS(6087), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6091), 1, + sym__ternary_qmark, + STATE(2656), 1, + sym_type_arguments, + STATE(2914), 1, + sym_comment, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5626), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6053), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6055), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6065), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6073), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6083), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(6081), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [85132] = 34, + [84254] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(6042), 1, + ACTIONS(6059), 1, anon_sym_AMP_AMP, - ACTIONS(6044), 1, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, + ACTIONS(6063), 1, anon_sym_GT_GT, - ACTIONS(6050), 1, + ACTIONS(6067), 1, anon_sym_AMP, - ACTIONS(6052), 1, + ACTIONS(6069), 1, anon_sym_CARET, - ACTIONS(6054), 1, + ACTIONS(6071), 1, anon_sym_PIPE, - ACTIONS(6058), 1, + ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, + ACTIONS(6079), 1, anon_sym_LT, - ACTIONS(6070), 1, + ACTIONS(6087), 1, anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, + ACTIONS(6091), 1, sym__ternary_qmark, - STATE(2830), 1, + STATE(2656), 1, sym_type_arguments, - STATE(3066), 1, + STATE(2915), 1, sym_comment, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6038), 2, + ACTIONS(5650), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6053), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6040), 2, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6048), 2, + ACTIONS(6065), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6056), 2, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - ACTIONS(6202), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(6064), 3, + ACTIONS(6081), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [85246] = 8, + [84368] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2144), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6204), 1, - sym__automatic_semicolon, - STATE(3067), 1, + ACTIONS(5424), 1, + anon_sym_LPAREN, + STATE(2916), 1, sym_comment, - ACTIONS(2166), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2142), 13, + STATE(3084), 1, + sym_arguments, + ACTIONS(5342), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297630,11 +284701,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2148), 25, + ACTIONS(5344), 27, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, + anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -297656,28 +284729,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [85308] = 5, + [84428] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3068), 1, + ACTIONS(6095), 1, + anon_sym_AMP, + ACTIONS(6097), 1, + anon_sym_PIPE, + ACTIONS(6099), 1, + anon_sym_extends, + STATE(2917), 1, sym_comment, - ACTIONS(4995), 13, + ACTIONS(5360), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4997), 29, + ACTIONS(5362), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -297706,15 +284783,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [85364] = 5, + [84490] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3069), 1, + ACTIONS(4316), 1, + anon_sym_EQ, + STATE(2918), 1, sym_comment, - ACTIONS(5259), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297728,7 +284806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5261), 29, + ACTIONS(4242), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -297757,15 +284835,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [85420] = 5, + [84548] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3070), 1, + STATE(2919), 1, sym_comment, - ACTIONS(5263), 13, + ACTIONS(4995), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -297779,7 +284856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5265), 29, + ACTIONS(4997), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -297809,139 +284886,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [85476] = 5, + [84604] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3071), 1, - sym_comment, - ACTIONS(5235), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5237), 29, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5430), 1, anon_sym_LBRACK, + ACTIONS(5432), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(6059), 1, anon_sym_AMP_AMP, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6063), 1, + anon_sym_GT_GT, + ACTIONS(6067), 1, + anon_sym_AMP, + ACTIONS(6069), 1, anon_sym_CARET, + ACTIONS(6071), 1, + anon_sym_PIPE, + ACTIONS(6075), 1, anon_sym_PERCENT, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6079), 1, + anon_sym_LT, + ACTIONS(6087), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6091), 1, + sym__ternary_qmark, + STATE(2656), 1, + sym_type_arguments, + STATE(2920), 1, + sym_comment, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [85532] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3072), 1, - sym_comment, - ACTIONS(5227), 13, + ACTIONS(6053), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6065), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5229), 29, + ACTIONS(6085), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6197), 2, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(6081), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [85588] = 5, + [84718] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3073), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + ACTIONS(5368), 1, + anon_sym_extends, + STATE(2921), 1, sym_comment, - ACTIONS(5196), 13, + ACTIONS(5613), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5616), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4238), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5198), 29, + ACTIONS(4242), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -297961,38 +285021,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [85644] = 5, + [84782] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3074), 1, + ACTIONS(4975), 1, + anon_sym_extends, + STATE(2922), 1, sym_comment, - ACTIONS(5189), 13, + ACTIONS(5858), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5861), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4238), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5191), 29, + ACTIONS(4242), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -298012,8 +285075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [85700] = 16, + [84844] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -298022,30 +285084,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6173), 1, - anon_sym_STAR, - ACTIONS(6175), 1, - anon_sym_async, - ACTIONS(6206), 1, + ACTIONS(6199), 1, + anon_sym_static, + ACTIONS(6201), 1, + anon_sym_readonly, + ACTIONS(6203), 1, anon_sym_abstract, - STATE(3075), 1, + STATE(2923), 1, sym_comment, - STATE(4056), 1, + STATE(3665), 1, + sym_override_modifier, + STATE(4193), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6179), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -298054,20 +285117,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4492), 20, + ACTIONS(4496), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -298075,109 +285138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [85778] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3076), 1, - sym_comment, - ACTIONS(4995), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4997), 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, - [85834] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3077), 1, - sym_comment, - ACTIONS(4995), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4997), 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, - [85890] = 17, + [84924] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -298186,31 +285147,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6208), 1, - anon_sym_static, - ACTIONS(6210), 1, + ACTIONS(6045), 1, + anon_sym_STAR, + ACTIONS(6047), 1, + anon_sym_async, + ACTIONS(6205), 1, anon_sym_readonly, - ACTIONS(6212), 1, - anon_sym_abstract, - STATE(3078), 1, + STATE(2924), 1, sym_comment, - STATE(3813), 1, + STATE(3628), 1, sym_override_modifier, - STATE(4390), 1, + STATE(3900), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + ACTIONS(6049), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -298219,16 +285183,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4492), 20, + ACTIONS(4496), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_get, - anon_sym_set, + anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -298240,28 +285202,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [85970] = 5, + [85006] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3079), 1, + ACTIONS(6095), 1, + anon_sym_AMP, + ACTIONS(6097), 1, + anon_sym_PIPE, + ACTIONS(6099), 1, + anon_sym_extends, + STATE(2925), 1, sym_comment, - ACTIONS(5247), 13, + ACTIONS(5346), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5249), 29, + ACTIONS(5348), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -298290,118 +285256,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [86026] = 5, + [85068] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3080), 1, - sym_comment, - ACTIONS(5247), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5249), 29, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5430), 1, anon_sym_LBRACK, + ACTIONS(5432), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(6059), 1, anon_sym_AMP_AMP, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6063), 1, + anon_sym_GT_GT, + ACTIONS(6067), 1, + anon_sym_AMP, + ACTIONS(6069), 1, anon_sym_CARET, + ACTIONS(6071), 1, + anon_sym_PIPE, + ACTIONS(6075), 1, anon_sym_PERCENT, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6079), 1, + anon_sym_LT, + ACTIONS(6087), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6091), 1, + sym__ternary_qmark, + STATE(2656), 1, + sym_type_arguments, + STATE(2926), 1, + sym_comment, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [86082] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3081), 1, - sym_comment, - ACTIONS(5247), 13, + ACTIONS(5692), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6053), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6065), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5249), 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, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(6081), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [86138] = 22, + [85182] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(1057), 1, - anon_sym_RBRACE, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, @@ -298412,32 +285353,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2997), 1, anon_sym_override, - ACTIONS(5151), 1, + ACTIONS(5039), 1, anon_sym_EQ, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6104), 1, + ACTIONS(6093), 1, anon_sym_STAR, - STATE(3082), 1, + ACTIONS(6207), 1, + anon_sym_RBRACE, + STATE(2927), 1, sym_comment, - STATE(3765), 1, + STATE(3632), 1, sym_override_modifier, - STATE(4902), 1, + STATE(4672), 1, sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -298461,492 +285404,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [86228] = 7, + [85272] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3083), 1, - sym_comment, - ACTIONS(5137), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5139), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 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(4222), 26, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, anon_sym_as, - anon_sym_RBRACE, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 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, + ACTIONS(5466), 1, anon_sym_BQUOTE, + ACTIONS(5468), 1, anon_sym_satisfies, - [86288] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5321), 1, - anon_sym_extends, - STATE(3084), 1, - sym_comment, - ACTIONS(5766), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5769), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5762), 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(5764), 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, + ACTIONS(6059), 1, anon_sym_AMP_AMP, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6063), 1, + anon_sym_GT_GT, + ACTIONS(6067), 1, + anon_sym_AMP, + ACTIONS(6069), 1, anon_sym_CARET, + ACTIONS(6071), 1, + anon_sym_PIPE, + ACTIONS(6075), 1, anon_sym_PERCENT, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6079), 1, + anon_sym_LT, + ACTIONS(6087), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6091), 1, + sym__ternary_qmark, + STATE(2656), 1, + sym_type_arguments, + STATE(2928), 1, + sym_comment, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [86350] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3085), 1, - sym_comment, - ACTIONS(5311), 13, + ACTIONS(5694), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6053), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6065), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5313), 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, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(6081), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [86406] = 5, + [85386] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3086), 1, - sym_comment, - ACTIONS(4999), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5001), 29, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5430), 1, anon_sym_LBRACK, + ACTIONS(5432), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(6059), 1, anon_sym_AMP_AMP, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6063), 1, + anon_sym_GT_GT, + ACTIONS(6067), 1, + anon_sym_AMP, + ACTIONS(6069), 1, anon_sym_CARET, + ACTIONS(6071), 1, + anon_sym_PIPE, + ACTIONS(6075), 1, anon_sym_PERCENT, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6079), 1, + anon_sym_LT, + ACTIONS(6087), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6091), 1, + sym__ternary_qmark, + STATE(2656), 1, + sym_type_arguments, + STATE(2929), 1, + sym_comment, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [86462] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4636), 1, + ACTIONS(5696), 2, sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(6214), 1, - anon_sym_STAR, - ACTIONS(6216), 1, - anon_sym_async, - ACTIONS(6218), 1, - anon_sym_readonly, - STATE(3087), 1, - sym_comment, - STATE(3772), 1, - sym_override_modifier, - STATE(4117), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6220), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4492), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [86544] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3088), 1, - sym_comment, - ACTIONS(5239), 13, + ACTIONS(6053), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5241), 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, + ACTIONS(6065), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [86600] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3089), 1, - sym_comment, - ACTIONS(4479), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5171), 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, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(6081), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [86656] = 5, + [85500] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3090), 1, - sym_comment, - ACTIONS(5007), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5009), 29, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5430), 1, anon_sym_LBRACK, + ACTIONS(5432), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(6059), 1, anon_sym_AMP_AMP, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6063), 1, + anon_sym_GT_GT, + ACTIONS(6067), 1, + anon_sym_AMP, + ACTIONS(6069), 1, anon_sym_CARET, + ACTIONS(6071), 1, + anon_sym_PIPE, + ACTIONS(6075), 1, anon_sym_PERCENT, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6079), 1, + anon_sym_LT, + ACTIONS(6087), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6091), 1, + sym__ternary_qmark, + STATE(2656), 1, + sym_type_arguments, + STATE(2930), 1, + sym_comment, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [86712] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5041), 1, - anon_sym_DOT, - STATE(3091), 1, - sym_comment, - ACTIONS(5037), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5039), 28, + ACTIONS(5698), 2, sym__automatic_semicolon, - sym__ternary_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, + ACTIONS(6053), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6055), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6065), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6073), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6083), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(6081), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [86770] = 5, + [85614] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3092), 1, + ACTIONS(4965), 1, + anon_sym_extends, + STATE(2931), 1, sym_comment, - ACTIONS(5231), 13, + ACTIONS(5346), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -298960,7 +285667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5233), 29, + ACTIONS(5348), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -298989,66 +285696,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [86826] = 5, + [85672] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3093), 1, - sym_comment, - ACTIONS(3433), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3547), 29, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5430), 1, anon_sym_LBRACK, + ACTIONS(5432), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(6059), 1, anon_sym_AMP_AMP, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6063), 1, + anon_sym_GT_GT, + ACTIONS(6067), 1, + anon_sym_AMP, + ACTIONS(6069), 1, anon_sym_CARET, + ACTIONS(6071), 1, + anon_sym_PIPE, + ACTIONS(6075), 1, anon_sym_PERCENT, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6079), 1, + anon_sym_LT, + ACTIONS(6087), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6091), 1, + sym__ternary_qmark, + STATE(2656), 1, + sym_type_arguments, + STATE(2932), 1, + sym_comment, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5702), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6053), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6055), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6065), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6073), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6083), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(6081), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [86882] = 5, + [85786] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3094), 1, + STATE(2933), 1, sym_comment, - ACTIONS(5219), 13, + ACTIONS(3283), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299062,7 +285797,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5221), 29, + ACTIONS(3657), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299092,123 +285827,261 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [86938] = 6, + [85842] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5134), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5430), 1, + anon_sym_LBRACK, + ACTIONS(5432), 1, anon_sym_DOT, - STATE(3095), 1, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(6059), 1, + anon_sym_AMP_AMP, + ACTIONS(6061), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6063), 1, + anon_sym_GT_GT, + ACTIONS(6067), 1, + anon_sym_AMP, + ACTIONS(6069), 1, + anon_sym_CARET, + ACTIONS(6071), 1, + anon_sym_PIPE, + ACTIONS(6075), 1, + anon_sym_PERCENT, + ACTIONS(6077), 1, + anon_sym_STAR_STAR, + ACTIONS(6079), 1, + anon_sym_LT, + ACTIONS(6087), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6091), 1, + sym__ternary_qmark, + STATE(2656), 1, + sym_type_arguments, + STATE(2934), 1, sym_comment, - ACTIONS(5037), 13, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5475), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6053), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6065), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5039), 28, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(6085), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(6081), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [85956] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5430), 1, anon_sym_LBRACK, - anon_sym_QMARK_DOT, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(6059), 1, anon_sym_AMP_AMP, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6063), 1, + anon_sym_GT_GT, + ACTIONS(6067), 1, + anon_sym_AMP, + ACTIONS(6069), 1, anon_sym_CARET, + ACTIONS(6071), 1, + anon_sym_PIPE, + ACTIONS(6075), 1, anon_sym_PERCENT, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6079), 1, + anon_sym_LT, + ACTIONS(6087), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6091), 1, + sym__ternary_qmark, + STATE(2656), 1, + sym_type_arguments, + STATE(2935), 1, + sym_comment, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [86996] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3096), 1, - sym_comment, - ACTIONS(5145), 13, + ACTIONS(6053), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6065), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5147), 29, + ACTIONS(6085), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(6209), 2, sym__automatic_semicolon, - sym__ternary_qmark, + anon_sym_SEMI, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(6081), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [86070] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5430), 1, anon_sym_LBRACK, + ACTIONS(5432), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(6059), 1, anon_sym_AMP_AMP, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6063), 1, + anon_sym_GT_GT, + ACTIONS(6067), 1, + anon_sym_AMP, + ACTIONS(6069), 1, anon_sym_CARET, + ACTIONS(6071), 1, + anon_sym_PIPE, + ACTIONS(6075), 1, anon_sym_PERCENT, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6079), 1, + anon_sym_LT, + ACTIONS(6087), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6091), 1, + sym__ternary_qmark, + ACTIONS(6211), 1, + anon_sym_SEMI, + ACTIONS(6213), 1, + sym__automatic_semicolon, + STATE(2656), 1, + sym_type_arguments, + STATE(2936), 1, + sym_comment, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6053), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6055), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6065), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6073), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6083), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(6081), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [87052] = 8, + [86186] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6074), 1, + ACTIONS(6095), 1, anon_sym_AMP, - ACTIONS(6076), 1, + ACTIONS(6097), 1, anon_sym_PIPE, - ACTIONS(6078), 1, + ACTIONS(6099), 1, anon_sym_extends, - STATE(3097), 1, + STATE(2937), 1, sym_comment, - ACTIONS(5145), 11, + ACTIONS(5023), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299220,7 +286093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5147), 28, + ACTIONS(5025), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299249,14 +286122,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [87114] = 5, + [86248] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3098), 1, + ACTIONS(5391), 1, + anon_sym_EQ, + STATE(2938), 1, sym_comment, - ACTIONS(4479), 13, + ACTIONS(5389), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299270,7 +286145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5171), 29, + ACTIONS(5393), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299299,67 +286174,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [87170] = 6, + [86306] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5697), 1, - anon_sym_EQ, - STATE(3099), 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, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5430), 1, anon_sym_LBRACK, + ACTIONS(5432), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(6059), 1, anon_sym_AMP_AMP, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6063), 1, + anon_sym_GT_GT, + ACTIONS(6067), 1, + anon_sym_AMP, + ACTIONS(6069), 1, anon_sym_CARET, + ACTIONS(6071), 1, + anon_sym_PIPE, + ACTIONS(6075), 1, anon_sym_PERCENT, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6079), 1, + anon_sym_LT, + ACTIONS(6087), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6091), 1, + sym__ternary_qmark, + STATE(2656), 1, + sym_type_arguments, + STATE(2939), 1, + sym_comment, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6053), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6055), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6065), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6073), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6083), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(6215), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(6081), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [87228] = 5, + [86420] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3100), 1, + STATE(2940), 1, sym_comment, - ACTIONS(4471), 13, + ACTIONS(4469), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299373,7 +286275,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5185), 29, + ACTIONS(5161), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299403,14 +286305,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [87284] = 5, + [86476] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3101), 1, + STATE(2941), 1, sym_comment, - ACTIONS(4471), 13, + ACTIONS(4469), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299424,7 +286326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5185), 29, + ACTIONS(5161), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299454,14 +286356,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [87340] = 5, + [86532] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3102), 1, + STATE(2942), 1, sym_comment, - ACTIONS(4477), 13, + ACTIONS(4473), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299475,7 +286377,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5200), 29, + ACTIONS(5153), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299505,14 +286407,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [87396] = 5, + [86588] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3103), 1, + STATE(2943), 1, sym_comment, - ACTIONS(5044), 13, + ACTIONS(5119), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299526,7 +286428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5046), 29, + ACTIONS(5121), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299556,20 +286458,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [87452] = 5, + [86644] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3104), 1, + ACTIONS(6095), 1, + anon_sym_AMP, + STATE(2944), 1, sym_comment, - ACTIONS(5033), 13, + ACTIONS(5123), 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, @@ -299577,7 +286480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5035), 29, + ACTIONS(5125), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299607,65 +286510,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [87508] = 5, + [86702] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3105), 1, - sym_comment, - ACTIONS(5033), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5035), 29, - sym__automatic_semicolon, - sym__ternary_qmark, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5430), 1, anon_sym_LBRACK, + ACTIONS(5432), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(6059), 1, anon_sym_AMP_AMP, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6063), 1, + anon_sym_GT_GT, + ACTIONS(6067), 1, + anon_sym_AMP, + ACTIONS(6069), 1, anon_sym_CARET, + ACTIONS(6071), 1, + anon_sym_PIPE, + ACTIONS(6075), 1, anon_sym_PERCENT, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6079), 1, + anon_sym_LT, + ACTIONS(6087), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6091), 1, + sym__ternary_qmark, + ACTIONS(6217), 1, + anon_sym_SEMI, + ACTIONS(6219), 1, + sym__automatic_semicolon, + STATE(2656), 1, + sym_type_arguments, + STATE(2945), 1, + sym_comment, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6053), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6055), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6065), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6073), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6083), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(6081), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - anon_sym_extends, - [87564] = 5, + [86818] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3106), 1, + STATE(2946), 1, sym_comment, - ACTIONS(5213), 13, + ACTIONS(5127), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299679,7 +286612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5215), 29, + ACTIONS(5129), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299709,21 +286642,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [87620] = 6, + [86874] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6074), 1, - anon_sym_AMP, - STATE(3107), 1, + STATE(2947), 1, sym_comment, - ACTIONS(5223), 12, + ACTIONS(4473), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, @@ -299731,7 +286663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5225), 29, + ACTIONS(5153), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299761,14 +286693,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [87678] = 5, + [86930] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(6221), 1, + anon_sym_STAR, + ACTIONS(6223), 1, + anon_sym_async, + ACTIONS(6225), 1, + anon_sym_readonly, + STATE(2948), 1, + sym_comment, + STATE(3620), 1, + sym_override_modifier, + STATE(3964), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6227), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 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(4496), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [87012] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3108), 1, + STATE(2949), 1, sym_comment, - ACTIONS(5243), 13, + ACTIONS(4494), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -299782,7 +286778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5245), 29, + ACTIONS(5135), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -299812,37 +286808,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [87734] = 5, + [87068] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3109), 1, + STATE(2950), 1, sym_comment, - ACTIONS(5033), 13, + ACTIONS(5616), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5613), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5368), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4238), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5035), 29, - sym__automatic_semicolon, + ACTIONS(4242), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -299862,100 +286862,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [87790] = 16, + [87130] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6189), 1, - anon_sym_LT, - STATE(2830), 1, - sym_type_arguments, - STATE(3110), 1, + STATE(2951), 1, sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 12, + ACTIONS(5861), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5858), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4975), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4238), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 17, - sym__automatic_semicolon, + ACTIONS(4242), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [87868] = 5, + [87192] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3111), 1, + ACTIONS(4318), 1, + anon_sym_EQ, + ACTIONS(5368), 1, + anon_sym_extends, + STATE(2952), 1, sym_comment, - ACTIONS(5029), 13, + ACTIONS(5613), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5616), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4238), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5031), 29, + ACTIONS(4242), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -299975,29 +286971,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [87924] = 5, + [87256] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3112), 1, + ACTIONS(6095), 1, + anon_sym_AMP, + ACTIONS(6097), 1, + anon_sym_PIPE, + ACTIONS(6099), 1, + anon_sym_extends, + STATE(2953), 1, sym_comment, - ACTIONS(3437), 13, + ACTIONS(5167), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3625), 29, + ACTIONS(5169), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -300026,70 +287025,174 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_extends, - [87980] = 9, + [87318] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4314), 1, - anon_sym_EQ, - ACTIONS(5169), 1, - anon_sym_extends, - STATE(3113), 1, - sym_comment, - ACTIONS(5779), 2, - anon_sym_COMMA, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(5782), 3, - anon_sym_GT, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, + anon_sym_AMP_AMP, + ACTIONS(5493), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5495), 1, + anon_sym_GT_GT, + ACTIONS(5499), 1, anon_sym_AMP, + ACTIONS(5501), 1, + anon_sym_CARET, + ACTIONS(5503), 1, anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(5507), 1, + anon_sym_PERCENT, + ACTIONS(5509), 1, + anon_sym_STAR_STAR, + ACTIONS(5517), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5519), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2954), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5489), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(5497), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5505), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5513), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 25, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5515), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5589), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5511), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87432] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5483), 1, + anon_sym_LT, + ACTIONS(5491), 1, anon_sym_AMP_AMP, + ACTIONS(5493), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5495), 1, + anon_sym_GT_GT, + ACTIONS(5499), 1, + anon_sym_AMP, + ACTIONS(5501), 1, anon_sym_CARET, + ACTIONS(5503), 1, + anon_sym_PIPE, + ACTIONS(5507), 1, anon_sym_PERCENT, + ACTIONS(5509), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(5517), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5519), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2955), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5485), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5489), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5497), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5505), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5513), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5515), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + ACTIONS(5611), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5511), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88044] = 5, + [87546] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3114), 1, + STATE(2956), 1, sym_comment, - ACTIONS(5029), 13, + ACTIONS(5167), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300103,7 +287206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5031), 29, + ACTIONS(5169), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -300133,214 +287236,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [88100] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(6222), 1, - anon_sym_STAR, - ACTIONS(6224), 1, - anon_sym_async, - ACTIONS(6226), 1, - anon_sym_readonly, - STATE(3115), 1, - sym_comment, - STATE(3777), 1, - sym_override_modifier, - STATE(4062), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6228), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4492), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [88182] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6104), 1, - anon_sym_STAR, - ACTIONS(6230), 1, - anon_sym_RBRACE, - STATE(3116), 1, - sym_comment, - STATE(3765), 1, - sym_override_modifier, - STATE(4902), 1, - sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [88272] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6104), 1, - anon_sym_STAR, - ACTIONS(6232), 1, - anon_sym_RBRACE, - STATE(3117), 1, - sym_comment, - STATE(3765), 1, - sym_override_modifier, - STATE(4902), 1, - sym__property_name, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(6287), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [88362] = 5, + [87602] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3118), 1, + ACTIONS(5175), 1, + anon_sym_DOT, + STATE(2957), 1, sym_comment, - ACTIONS(5029), 13, + ACTIONS(5171), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300354,7 +287259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5031), 29, + ACTIONS(5173), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -300364,7 +287269,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -300384,97 +287288,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [88418] = 7, + [87660] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2144), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5857), 1, - sym__automatic_semicolon, - STATE(3119), 1, - sym_comment, - ACTIONS(2140), 13, - anon_sym_STAR, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5083), 1, + anon_sym_AMP_AMP, + ACTIONS(5085), 1, + anon_sym_PIPE_PIPE, + ACTIONS(5087), 1, anon_sym_GT_GT, + ACTIONS(5091), 1, anon_sym_AMP, + ACTIONS(5093), 1, + anon_sym_CARET, + ACTIONS(5095), 1, anon_sym_PIPE, + ACTIONS(5099), 1, + anon_sym_PERCENT, + ACTIONS(5101), 1, + anon_sym_STAR_STAR, + ACTIONS(5103), 1, + anon_sym_LT, + ACTIONS(5111), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2958), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5069), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(5079), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(5089), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2166), 27, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5109), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5685), 2, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5105), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [87774] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(5430), 1, anon_sym_LBRACK, + ACTIONS(5432), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(5468), 1, + anon_sym_satisfies, + ACTIONS(6059), 1, anon_sym_AMP_AMP, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6063), 1, + anon_sym_GT_GT, + ACTIONS(6067), 1, + anon_sym_AMP, + ACTIONS(6069), 1, anon_sym_CARET, + ACTIONS(6071), 1, + anon_sym_PIPE, + ACTIONS(6075), 1, anon_sym_PERCENT, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6079), 1, + anon_sym_LT, + ACTIONS(6087), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6091), 1, + sym__ternary_qmark, + ACTIONS(6229), 1, + anon_sym_SEMI, + ACTIONS(6231), 1, + sym__automatic_semicolon, + STATE(2656), 1, + sym_type_arguments, + STATE(2959), 1, + sym_comment, + STATE(5716), 1, + sym_optional_chain, + ACTIONS(5464), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6053), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6055), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6065), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6073), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6083), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(3068), 2, + sym_template_string, + sym_arguments, + ACTIONS(6081), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [88478] = 11, + [87890] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4973), 1, - anon_sym_extends, - ACTIONS(5524), 1, - anon_sym_LBRACK, - ACTIONS(6236), 1, - anon_sym_RPAREN, - STATE(3120), 1, + STATE(2960), 1, sym_comment, - ACTIONS(5527), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6090), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6234), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(4218), 11, + ACTIONS(3289), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(3641), 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, @@ -300494,14 +287499,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88546] = 5, + anon_sym_extends, + [87946] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3121), 1, + STATE(2961), 1, sym_comment, - ACTIONS(5003), 13, + ACTIONS(4477), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300515,7 +287521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5005), 29, + ACTIONS(5149), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -300545,16 +287551,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [88602] = 6, + [88002] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5064), 1, - anon_sym_EQ, - STATE(3122), 1, + ACTIONS(5178), 1, + anon_sym_DOT, + STATE(2962), 1, sym_comment, - ACTIONS(5062), 13, + ACTIONS(5171), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300568,7 +287574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5066), 28, + ACTIONS(5173), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -300578,7 +287584,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -300597,44 +287602,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88660] = 11, + anon_sym_extends, + [88060] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4324), 1, - anon_sym_EQ, - ACTIONS(4334), 1, - anon_sym_QMARK, - ACTIONS(5779), 1, - anon_sym_LBRACK, - STATE(3123), 1, + STATE(2963), 1, sym_comment, - ACTIONS(4327), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5169), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5782), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 11, + ACTIONS(5181), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(5183), 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, @@ -300654,81 +287653,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [88728] = 21, + anon_sym_extends, + [88116] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(6046), 1, - anon_sym_GT_GT, - ACTIONS(6058), 1, - anon_sym_PERCENT, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6062), 1, - anon_sym_LT, - STATE(2830), 1, - sym_type_arguments, - STATE(3124), 1, + STATE(2964), 1, sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6038), 2, + ACTIONS(4475), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6048), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6056), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 14, + ACTIONS(5151), 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, - [88816] = 5, + anon_sym_extends, + [88172] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3125), 1, + STATE(2965), 1, sym_comment, - ACTIONS(5003), 13, + ACTIONS(3293), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300742,7 +287726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5005), 29, + ACTIONS(3517), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -300772,14 +287756,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [88872] = 5, + [88228] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3126), 1, + STATE(2966), 1, sym_comment, - ACTIONS(5003), 13, + ACTIONS(4471), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -300793,7 +287777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5005), 29, + ACTIONS(5155), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -300823,317 +287807,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [88928] = 34, + [88284] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5306), 1, + anon_sym_extends, + STATE(2967), 1, + sym_comment, + ACTIONS(5753), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(6042), 1, - anon_sym_AMP_AMP, - ACTIONS(6044), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, - anon_sym_GT_GT, - ACTIONS(6050), 1, + ACTIONS(5756), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(6052), 1, - anon_sym_CARET, - ACTIONS(6054), 1, anon_sym_PIPE, - ACTIONS(6058), 1, - anon_sym_PERCENT, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6062), 1, - anon_sym_LT, - ACTIONS(6070), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, - sym__ternary_qmark, - STATE(2830), 1, - sym_type_arguments, - STATE(3127), 1, - sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5545), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6038), 2, + ACTIONS(5729), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6040), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(6048), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6056), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(6064), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [89042] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5731), 26, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(6042), 1, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6044), 1, anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, - anon_sym_GT_GT, - ACTIONS(6050), 1, - anon_sym_AMP, - ACTIONS(6052), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6054), 1, - anon_sym_PIPE, - ACTIONS(6058), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, - anon_sym_LT, - ACTIONS(6070), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, - sym__ternary_qmark, - STATE(2830), 1, - sym_type_arguments, - STATE(3128), 1, - sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5543), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6038), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [88346] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2968), 1, + sym_comment, + ACTIONS(5189), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6040), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6048), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6056), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, + ACTIONS(5191), 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, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(6064), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [89156] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [88402] = 35, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5418), 1, + anon_sym_as, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5415), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(5459), 1, + ACTIONS(5468), 1, anon_sym_satisfies, - ACTIONS(6042), 1, + ACTIONS(6059), 1, anon_sym_AMP_AMP, - ACTIONS(6044), 1, + ACTIONS(6061), 1, anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, + ACTIONS(6063), 1, anon_sym_GT_GT, - ACTIONS(6050), 1, + ACTIONS(6067), 1, anon_sym_AMP, - ACTIONS(6052), 1, + ACTIONS(6069), 1, anon_sym_CARET, - ACTIONS(6054), 1, + ACTIONS(6071), 1, anon_sym_PIPE, - ACTIONS(6058), 1, + ACTIONS(6075), 1, anon_sym_PERCENT, - ACTIONS(6060), 1, + ACTIONS(6077), 1, anon_sym_STAR_STAR, - ACTIONS(6062), 1, + ACTIONS(6079), 1, anon_sym_LT, - ACTIONS(6070), 1, + ACTIONS(6087), 1, anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, + ACTIONS(6091), 1, sym__ternary_qmark, - STATE(2830), 1, + ACTIONS(6233), 1, + anon_sym_SEMI, + ACTIONS(6235), 1, + sym__automatic_semicolon, + STATE(2656), 1, sym_type_arguments, - STATE(3129), 1, + STATE(2969), 1, sym_comment, - STATE(6311), 1, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5445), 2, + ACTIONS(5464), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5738), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6038), 2, + ACTIONS(6053), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6040), 2, + ACTIONS(6055), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6048), 2, + ACTIONS(6065), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6056), 2, + ACTIONS(6073), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6066), 2, + ACTIONS(6083), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6068), 2, + ACTIONS(6085), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(6064), 3, + ACTIONS(6081), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [89270] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(6239), 1, - anon_sym_static, - ACTIONS(6241), 1, - anon_sym_readonly, - ACTIONS(6243), 1, - anon_sym_abstract, - STATE(3130), 1, - sym_comment, - STATE(3836), 1, - sym_override_modifier, - STATE(4403), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4492), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89350] = 5, + [88518] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3131), 1, + STATE(2970), 1, sym_comment, - ACTIONS(5011), 13, + ACTIONS(3291), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -301147,7 +288014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5013), 29, + ACTIONS(3507), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -301177,7 +288044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_satisfies, anon_sym_extends, - [89406] = 16, + [88574] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -301186,30 +288053,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6222), 1, + ACTIONS(6237), 1, anon_sym_STAR, - ACTIONS(6224), 1, + ACTIONS(6239), 1, anon_sym_async, - ACTIONS(6245), 1, - anon_sym_abstract, - STATE(3132), 1, + ACTIONS(6241), 1, + anon_sym_readonly, + STATE(2971), 1, sym_comment, - STATE(4065), 1, + STATE(3634), 1, + sym_override_modifier, + STATE(3917), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6228), 2, + ACTIONS(6243), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -301218,77 +288089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4492), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89484] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1055), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6104), 1, - anon_sym_STAR, - STATE(3133), 1, - sym_comment, - STATE(3765), 1, - sym_override_modifier, - STATE(4902), 1, - sym__property_name, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(6287), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 18, + ACTIONS(4496), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -301307,26 +288108,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [89574] = 8, + [88656] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3134), 1, + ACTIONS(4975), 1, + anon_sym_extends, + ACTIONS(5858), 1, + anon_sym_LBRACK, + ACTIONS(6247), 1, + anon_sym_RPAREN, + STATE(2972), 1, sym_comment, - ACTIONS(5782), 2, + ACTIONS(5861), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5779), 3, + ACTIONS(6167), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6245), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5169), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4218), 11, + anon_sym_COLON, + ACTIONS(4238), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -301338,7 +288142,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(4242), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -301361,26 +288165,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89636] = 8, + [88724] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3135), 1, + ACTIONS(4344), 1, + anon_sym_QMARK, + ACTIONS(4366), 1, + anon_sym_EQ, + ACTIONS(5613), 1, + anon_sym_LBRACK, + STATE(2973), 1, sym_comment, - ACTIONS(5527), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5524), 3, + ACTIONS(4369), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4973), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + anon_sym_COLON, + ACTIONS(5368), 2, + anon_sym_RPAREN, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4218), 11, + ACTIONS(5616), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4238), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -301392,7 +288199,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(4242), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -301415,229 +288222,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [89698] = 35, + [88792] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5449), 1, - anon_sym_as, - ACTIONS(5453), 1, + STATE(2974), 1, + sym_comment, + ACTIONS(5185), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5459), 1, - anon_sym_satisfies, - ACTIONS(6042), 1, - anon_sym_AMP_AMP, - ACTIONS(6044), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6046), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(6050), 1, anon_sym_AMP, - ACTIONS(6052), 1, - anon_sym_CARET, - ACTIONS(6054), 1, anon_sym_PIPE, - ACTIONS(6058), 1, - anon_sym_PERCENT, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6062), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(6070), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6072), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5187), 29, + sym__automatic_semicolon, sym__ternary_qmark, - ACTIONS(6247), 1, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - ACTIONS(6249), 1, - sym__automatic_semicolon, - STATE(2830), 1, - sym_type_arguments, - STATE(3136), 1, - sym_comment, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5445), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6038), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6040), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6048), 2, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6056), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6066), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6068), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(6064), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [89814] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(162), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(3973), 1, - anon_sym_LBRACE, - ACTIONS(4682), 1, - anon_sym_LBRACK, - ACTIONS(6253), 1, - anon_sym_COMMA, - ACTIONS(6255), 1, - anon_sym_RBRACE, - STATE(3137), 1, - sym_comment, - STATE(6379), 1, - aux_sym_object_pattern_repeat1, - STATE(7346), 1, - sym__property_name, - STATE(7382), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4344), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - STATE(6388), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(6251), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89896] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(162), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(3973), 1, - anon_sym_LBRACE, - ACTIONS(4682), 1, - anon_sym_LBRACK, - ACTIONS(6253), 1, - anon_sym_COMMA, - ACTIONS(6259), 1, - anon_sym_RBRACE, - STATE(3138), 1, - sym_comment, - STATE(6381), 1, - aux_sym_object_pattern_repeat1, - STATE(7346), 1, - sym__property_name, - STATE(7382), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4344), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - STATE(6392), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(6257), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [89978] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [88848] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6074), 1, + ACTIONS(6095), 1, anon_sym_AMP, - ACTIONS(6076), 1, + ACTIONS(6097), 1, anon_sym_PIPE, - ACTIONS(6078), 1, + ACTIONS(6099), 1, anon_sym_extends, - STATE(3139), 1, + STATE(2975), 1, sym_comment, - ACTIONS(5019), 11, + ACTIONS(5033), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -301649,7 +288298,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5021), 28, + ACTIONS(5035), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -301678,505 +288327,244 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90040] = 23, + [88910] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6275), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3140), 1, + STATE(2976), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6261), 2, + ACTIONS(5308), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5310), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4238), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6263), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(6267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6269), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6277), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5409), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 10, + ACTIONS(4242), 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, - [90131] = 34, + [88970] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + STATE(2977), 1, + sym_comment, + ACTIONS(5217), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5219), 29, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4915), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4917), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6283), 1, - anon_sym_COLON, - ACTIONS(6285), 1, anon_sym_AMP_AMP, - ACTIONS(6287), 1, anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, - anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_AMP, - ACTIONS(6295), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6297), 1, - anon_sym_PIPE, - ACTIONS(6301), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, - anon_sym_LT, - ACTIONS(6313), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3141), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [89026] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2978), 1, + sym_comment, + ACTIONS(5219), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(5252), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6299), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6307), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [90244] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5254), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4915), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6285), 1, anon_sym_AMP_AMP, - ACTIONS(6287), 1, anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, - anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_AMP, - ACTIONS(6295), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6297), 1, - anon_sym_PIPE, - ACTIONS(6301), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, - anon_sym_LT, - ACTIONS(6313), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, - sym__ternary_qmark, - ACTIONS(6317), 1, - anon_sym_COLON, - STATE(2461), 1, - sym_type_arguments, - STATE(3142), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [89084] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(2979), 1, + sym_comment, + ACTIONS(5213), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6299), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6307), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [90357] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6319), 1, - anon_sym_STAR, - STATE(3143), 1, - sym_comment, - STATE(4942), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6321), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [90430] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4636), 1, + ACTIONS(5215), 29, sym__automatic_semicolon, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(5193), 1, anon_sym_RBRACE, - STATE(3144), 1, - sym_comment, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(6287), 1, - aux_sym_object_repeat1, - ACTIONS(1043), 6, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2470), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - 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, - [90497] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6104), 1, - anon_sym_STAR, - ACTIONS(6230), 1, - anon_sym_RBRACE, - STATE(3145), 1, - sym_comment, - STATE(4902), 1, - sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [90580] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5510), 1, anon_sym_LBRACK, - ACTIONS(6323), 1, - anon_sym_STAR, - STATE(3146), 1, - sym_comment, - STATE(4959), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6325), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [90653] = 9, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_extends, + [89140] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5167), 1, - anon_sym_QMARK, - STATE(3147), 1, + STATE(2980), 1, sym_comment, - ACTIONS(5169), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5782), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5779), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4218), 11, + ACTIONS(5209), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(5211), 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, @@ -302196,149 +288584,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90716] = 34, + anon_sym_extends, + [89196] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6285), 1, + ACTIONS(5083), 1, anon_sym_AMP_AMP, - ACTIONS(6287), 1, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, + ACTIONS(5087), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, + ACTIONS(5091), 1, anon_sym_AMP, - ACTIONS(6295), 1, + ACTIONS(5093), 1, anon_sym_CARET, - ACTIONS(6297), 1, + ACTIONS(5095), 1, anon_sym_PIPE, - ACTIONS(6301), 1, + ACTIONS(5099), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(5103), 1, anon_sym_LT, - ACTIONS(6313), 1, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5117), 1, sym__ternary_qmark, - ACTIONS(6327), 1, - anon_sym_COLON, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3148), 1, + STATE(2981), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(5069), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, + ACTIONS(5089), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6299), 2, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6311), 2, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6307), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [90829] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4238), 1, - anon_sym_EQ, - ACTIONS(4341), 1, - anon_sym_COLON, - ACTIONS(5169), 1, - anon_sym_extends, - ACTIONS(5779), 1, - anon_sym_LBRACK, - STATE(3149), 1, - sym_comment, - ACTIONS(5782), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6329), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6180), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4218), 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(4222), 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_RPAREN, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5105), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [90896] = 5, + [89310] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3150), 1, + STATE(2982), 1, sym_comment, - ACTIONS(5775), 13, + ACTIONS(5205), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302352,7 +288686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5777), 28, + ACTIONS(5207), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -302381,14 +288715,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [90951] = 5, + anon_sym_extends, + [89366] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3151), 1, + STATE(2983), 1, sym_comment, - ACTIONS(5822), 13, + ACTIONS(5199), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302402,7 +288737,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5824), 28, + ACTIONS(5201), 29, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -302431,133 +288766,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91006] = 7, + anon_sym_extends, + [89422] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6333), 1, - sym__automatic_semicolon, - STATE(3152), 1, - sym_comment, - ACTIONS(2416), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2290), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2294), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4921), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4943), 1, anon_sym_LBRACK, + ACTIONS(4945), 1, anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5083), 1, anon_sym_AMP_AMP, + ACTIONS(5085), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5087), 1, + anon_sym_GT_GT, + ACTIONS(5091), 1, + anon_sym_AMP, + ACTIONS(5093), 1, anon_sym_CARET, + ACTIONS(5095), 1, + anon_sym_PIPE, + ACTIONS(5099), 1, anon_sym_PERCENT, + ACTIONS(5101), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5103), 1, + anon_sym_LT, + ACTIONS(5111), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5115), 1, anon_sym_satisfies, - [91065] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - STATE(3153), 1, + ACTIONS(5117), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(2984), 1, sym_comment, - STATE(2609), 2, - sym_template_string, - sym_arguments, - ACTIONS(6335), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(4985), 13, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5069), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(5079), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5089), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(5097), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(5107), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4987), 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, + ACTIONS(5109), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_satisfies, - [91128] = 11, + ACTIONS(6019), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5105), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [89536] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(6275), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3154), 1, + STATE(2985), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5800), 12, + ACTIONS(5195), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -302568,12 +288865,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5802), 22, + ACTIONS(5197), 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, @@ -302592,99 +288895,44 @@ 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, - [91195] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6337), 1, - anon_sym_STAR, - STATE(3155), 1, - sym_comment, - STATE(4955), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6339), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [91268] = 7, + anon_sym_extends, + [89592] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6341), 1, - sym__automatic_semicolon, - STATE(3156), 1, + STATE(2986), 1, sym_comment, - ACTIONS(2412), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2240), 13, + ACTIONS(5756), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5753), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5306), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(5729), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2244), 25, + ACTIONS(5731), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -302704,39 +288952,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91327] = 7, + [89654] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6343), 1, - sym__automatic_semicolon, - STATE(3157), 1, + ACTIONS(5322), 1, + anon_sym_extends, + ACTIONS(5395), 1, + anon_sym_LBRACK, + ACTIONS(6037), 1, + anon_sym_RPAREN, + STATE(2987), 1, sym_comment, - ACTIONS(2408), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2210), 13, + ACTIONS(5391), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5398), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5413), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(5389), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2214), 25, + ACTIONS(5393), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -302756,53 +289009,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91386] = 18, + [89722] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6104), 1, + ACTIONS(6237), 1, anon_sym_STAR, - ACTIONS(6230), 1, - anon_sym_RBRACE, - STATE(3158), 1, + ACTIONS(6239), 1, + anon_sym_async, + ACTIONS(6250), 1, + anon_sym_abstract, + STATE(2988), 1, sym_comment, - STATE(4902), 1, + STATE(3922), 1, sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, + ACTIONS(6243), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(985), 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(2989), 21, + ACTIONS(4496), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -302819,7 +289071,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91467] = 15, + [89800] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -302828,28 +289080,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6323), 1, - anon_sym_STAR, - ACTIONS(6345), 1, - anon_sym_async, - STATE(3159), 1, + ACTIONS(6252), 1, + anon_sym_static, + ACTIONS(6254), 1, + anon_sym_readonly, + ACTIONS(6256), 1, + anon_sym_abstract, + STATE(2989), 1, sym_comment, - STATE(4041), 1, + STATE(3674), 1, + sym_override_modifier, + STATE(4171), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6347), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -302858,20 +289113,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4492), 20, + ACTIONS(4496), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -302879,7 +289134,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91542] = 15, + [89880] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -302888,37 +289143,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6319), 1, + ACTIONS(6258), 1, anon_sym_STAR, - ACTIONS(6349), 1, + ACTIONS(6260), 1, anon_sym_async, - STATE(3160), 1, + ACTIONS(6264), 1, + anon_sym_abstract, + STATE(2990), 1, sym_comment, - STATE(4115), 1, + STATE(3902), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6351), 2, + ACTIONS(6262), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, + 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(4492), 20, + ACTIONS(4496), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -302939,7 +289196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91617] = 15, + [89958] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -302948,28 +289205,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6118), 1, + ACTIONS(6258), 1, anon_sym_STAR, - ACTIONS(6120), 1, + ACTIONS(6260), 1, anon_sym_async, - STATE(3161), 1, + ACTIONS(6266), 1, + anon_sym_readonly, + STATE(2991), 1, sym_comment, - STATE(4057), 1, + STATE(3629), 1, + sym_override_modifier, + STATE(3902), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6124), 2, + ACTIONS(6262), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -302978,7 +289241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4492), 20, + ACTIONS(4496), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -302986,12 +289249,10 @@ static const uint16_t ts_small_parse_table[] = { 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, @@ -302999,93 +289260,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [91692] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6357), 1, - anon_sym_RBRACK, - ACTIONS(6359), 1, - anon_sym_AMP_AMP, - ACTIONS(6361), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6363), 1, - anon_sym_GT_GT, - ACTIONS(6367), 1, - anon_sym_AMP, - ACTIONS(6369), 1, - anon_sym_CARET, - ACTIONS(6371), 1, - anon_sym_PIPE, - ACTIONS(6375), 1, - anon_sym_PERCENT, - ACTIONS(6377), 1, - anon_sym_STAR_STAR, - ACTIONS(6379), 1, - anon_sym_LT, - ACTIONS(6387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6389), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3162), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6355), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6373), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [91805] = 5, + [90040] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3163), 1, + STATE(2992), 1, sym_comment, - ACTIONS(5758), 13, + ACTIONS(5739), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303099,7 +289281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5760), 28, + ACTIONS(5741), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -303128,14 +289310,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91860] = 5, + [90095] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3164), 1, + STATE(2993), 1, sym_comment, - ACTIONS(5754), 13, + ACTIONS(6268), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6270), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303149,15 +289338,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5647), 28, - sym__automatic_semicolon, + ACTIONS(4242), 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, @@ -303178,136 +289362,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [91915] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [90154] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(6272), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6222), 1, - anon_sym_STAR, - STATE(3165), 1, + STATE(2994), 1, sym_comment, - STATE(4935), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6391), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [91988] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, + ACTIONS(2370), 4, anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6104), 1, - anon_sym_STAR, - ACTIONS(6181), 1, anon_sym_RBRACE, - STATE(3166), 1, - sym_comment, - STATE(4902), 1, - sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [92069] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3167), 1, - sym_comment, - ACTIONS(5746), 13, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2244), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303321,15 +289390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5748), 28, - sym__automatic_semicolon, + ACTIONS(2248), 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, @@ -303350,14 +289414,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92124] = 5, + [90213] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3168), 1, + STATE(2995), 1, sym_comment, - ACTIONS(5744), 13, + ACTIONS(5713), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303371,7 +289435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5645), 28, + ACTIONS(5715), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -303400,50 +289464,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92179] = 19, + [90268] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6104), 1, + ACTIONS(6274), 1, anon_sym_STAR, - ACTIONS(6181), 1, - anon_sym_RBRACE, - STATE(3169), 1, + ACTIONS(6276), 1, + anon_sym_async, + STATE(2996), 1, sym_comment, - STATE(4902), 1, + STATE(3993), 1, sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, + ACTIONS(6278), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(985), 8, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(4496), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -303464,123 +289524,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [92262] = 7, + [90343] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6393), 1, - sym__automatic_semicolon, - STATE(3170), 1, + STATE(2997), 1, sym_comment, - ACTIONS(2420), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2268), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2272), 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, - [92321] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5064), 1, + ACTIONS(6280), 2, anon_sym_EQ, - ACTIONS(5931), 1, - anon_sym_of, - ACTIONS(6395), 1, - anon_sym_in, - STATE(3171), 1, - sym_comment, - ACTIONS(5062), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5066), 26, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, + anon_sym_QMARK, + ACTIONS(6282), 3, 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, - [92382] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3172), 1, - sym_comment, - ACTIONS(6398), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(5357), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303594,11 +289552,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5359), 25, + ACTIONS(4242), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -303620,143 +289576,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92439] = 34, + [90402] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5724), 1, + ACTIONS(5475), 1, anon_sym_of, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6275), 1, - anon_sym_LT, - ACTIONS(6400), 1, + ACTIONS(6288), 1, anon_sym_AMP_AMP, - ACTIONS(6402), 1, + ACTIONS(6290), 1, anon_sym_PIPE_PIPE, - ACTIONS(6404), 1, + ACTIONS(6292), 1, + anon_sym_GT_GT, + ACTIONS(6296), 1, anon_sym_AMP, - ACTIONS(6406), 1, + ACTIONS(6298), 1, anon_sym_CARET, - ACTIONS(6408), 1, + ACTIONS(6300), 1, anon_sym_PIPE, - ACTIONS(6414), 1, + ACTIONS(6304), 1, + anon_sym_PERCENT, + ACTIONS(6306), 1, + anon_sym_STAR_STAR, + ACTIONS(6308), 1, + anon_sym_LT, + ACTIONS(6316), 1, anon_sym_QMARK_QMARK, - ACTIONS(6416), 1, + ACTIONS(6318), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3173), 1, + STATE(2998), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6261), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6263), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6267), 2, + ACTIONS(6294), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6269), 2, + ACTIONS(6302), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6410), 2, + ACTIONS(6312), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6412), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6277), 3, + ACTIONS(6310), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [92552] = 5, + [90515] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3174), 1, - sym_comment, - ACTIONS(5742), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5634), 28, + ACTIONS(6320), 1, sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [92607] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3175), 1, + STATE(2999), 1, sym_comment, - ACTIONS(2230), 13, + ACTIONS(2344), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2190), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303770,14 +289681,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2234), 28, - sym__automatic_semicolon, + ACTIONS(2194), 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_DOT, @@ -303799,19 +289707,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92662] = 7, + [90574] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6418), 1, + ACTIONS(6322), 1, sym__automatic_semicolon, - STATE(3176), 1, + STATE(3000), 1, sym_comment, - ACTIONS(2424), 2, + ACTIONS(2348), 2, anon_sym_else, anon_sym_while, - ACTIONS(2196), 13, + ACTIONS(2206), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -303825,7 +289733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2200), 25, + ACTIONS(2210), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -303851,176 +289759,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92721] = 7, + [90633] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6420), 1, - sym__automatic_semicolon, - STATE(3177), 1, - sym_comment, - ACTIONS(2428), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2170), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2174), 25, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4921), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4943), 1, anon_sym_LBRACK, + ACTIONS(4945), 1, anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6328), 1, + anon_sym_COLON, + ACTIONS(6330), 1, anon_sym_AMP_AMP, + ACTIONS(6332), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6334), 1, + anon_sym_GT_GT, + ACTIONS(6338), 1, + anon_sym_AMP, + ACTIONS(6340), 1, anon_sym_CARET, + ACTIONS(6342), 1, + anon_sym_PIPE, + ACTIONS(6346), 1, anon_sym_PERCENT, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6350), 1, + anon_sym_LT, + ACTIONS(6358), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6360), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3001), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [92780] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5530), 1, - anon_sym_LBRACK, - ACTIONS(6214), 1, - anon_sym_STAR, - ACTIONS(6216), 1, - anon_sym_async, - STATE(3178), 1, - sym_comment, - STATE(4117), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6220), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4492), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [92855] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3179), 1, - sym_comment, - ACTIONS(5734), 13, + ACTIONS(6324), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6336), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5736), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6352), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [92910] = 5, + [90746] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3180), 1, + ACTIONS(4318), 1, + anon_sym_EQ, + STATE(3002), 1, sym_comment, - ACTIONS(5730), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304034,12 +289861,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5732), 28, + ACTIONS(4242), 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, @@ -304063,96 +289889,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [92965] = 10, + [90803] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2144), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5056), 1, - anon_sym_LBRACK, - ACTIONS(5911), 1, - anon_sym_COLON, - STATE(3181), 1, + STATE(3003), 1, sym_comment, - ACTIONS(5059), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3587), 3, + ACTIONS(6362), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6364), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2142), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4238), 13, 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(2148), 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, - [93030] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4383), 1, - anon_sym_EQ, - ACTIONS(5169), 1, - anon_sym_extends, - STATE(3182), 1, - sym_comment, - ACTIONS(5779), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5782), 3, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4218), 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(4222), 24, + ACTIONS(4242), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -304172,73 +289941,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93093] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6214), 1, - anon_sym_STAR, - STATE(3183), 1, - sym_comment, - STATE(4848), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6422), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [93166] = 5, + [90862] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3184), 1, + STATE(3004), 1, sym_comment, - ACTIONS(5726), 13, + ACTIONS(5809), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304252,7 +289962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5728), 28, + ACTIONS(5811), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -304281,86 +289991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93221] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5451), 1, - anon_sym_of, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6275), 1, - anon_sym_LT, - ACTIONS(6400), 1, - anon_sym_AMP_AMP, - ACTIONS(6402), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6404), 1, - anon_sym_AMP, - ACTIONS(6406), 1, - anon_sym_CARET, - ACTIONS(6408), 1, - anon_sym_PIPE, - ACTIONS(6414), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6416), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3185), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6269), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6410), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6412), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6277), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [93334] = 14, + [90917] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -304369,33 +290000,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3186), 1, + ACTIONS(6221), 1, + anon_sym_STAR, + STATE(3005), 1, sym_comment, - STATE(4882), 1, + STATE(4682), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(5925), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4552), 2, + ACTIONS(6366), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 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(2989), 23, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -304404,9 +290037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -304419,27 +290050,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93407] = 10, + [90990] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5064), 1, + STATE(3006), 1, + sym_comment, + ACTIONS(5813), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5527), 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, + [91045] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2146), 1, anon_sym_EQ, - ACTIONS(5068), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5401), 1, anon_sym_LBRACK, - ACTIONS(5931), 1, + ACTIONS(5970), 1, anon_sym_COLON, - STATE(3187), 1, + STATE(3007), 1, sym_comment, - ACTIONS(5071), 2, + ACTIONS(5404), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5074), 3, + ACTIONS(3581), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(5062), 11, + ACTIONS(2144), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304451,7 +290132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5066), 22, + ACTIONS(2150), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -304474,98 +290155,177 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93472] = 34, + [91110] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(6285), 1, + ACTIONS(6330), 1, anon_sym_AMP_AMP, - ACTIONS(6287), 1, + ACTIONS(6332), 1, anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, + ACTIONS(6334), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, + ACTIONS(6338), 1, anon_sym_AMP, - ACTIONS(6295), 1, + ACTIONS(6340), 1, anon_sym_CARET, - ACTIONS(6297), 1, + ACTIONS(6342), 1, anon_sym_PIPE, - ACTIONS(6301), 1, + ACTIONS(6346), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6350), 1, anon_sym_LT, - ACTIONS(6313), 1, + ACTIONS(6358), 1, anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, + ACTIONS(6360), 1, sym__ternary_qmark, - ACTIONS(6424), 1, + ACTIONS(6368), 1, anon_sym_COLON, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3188), 1, + STATE(3008), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6324), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6326), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6336), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6354), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6356), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6352), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [91223] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6330), 1, + anon_sym_AMP_AMP, + ACTIONS(6332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, + anon_sym_GT_GT, + ACTIONS(6338), 1, + anon_sym_AMP, + ACTIONS(6340), 1, + anon_sym_CARET, + ACTIONS(6342), 1, + anon_sym_PIPE, + ACTIONS(6346), 1, + anon_sym_PERCENT, + ACTIONS(6348), 1, + anon_sym_STAR_STAR, + ACTIONS(6350), 1, + anon_sym_LT, + ACTIONS(6358), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6360), 1, + sym__ternary_qmark, + ACTIONS(6370), 1, + anon_sym_COLON, + STATE(2313), 1, + sym_type_arguments, + STATE(3009), 1, + sym_comment, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6299), 2, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6311), 2, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6307), 3, + ACTIONS(6352), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [93585] = 7, + [91336] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6426), 1, + ACTIONS(6372), 1, sym__automatic_semicolon, - STATE(3189), 1, + STATE(3010), 1, sym_comment, - ACTIONS(2390), 2, + ACTIONS(2352), 2, anon_sym_else, anon_sym_while, - ACTIONS(2230), 13, + ACTIONS(2214), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304579,7 +290339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2234), 25, + ACTIONS(2218), 25, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -304605,18 +290365,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93644] = 6, + [91395] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6428), 1, - sym_regex_flags, - STATE(3190), 1, + STATE(3011), 1, sym_comment, - ACTIONS(6084), 16, + ACTIONS(6374), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(5252), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -304629,15 +290390,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(6086), 24, - sym__automatic_semicolon, + ACTIONS(5254), 25, 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, @@ -304653,53 +290411,107 @@ 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, + [91452] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5306), 1, + anon_sym_extends, + STATE(3012), 1, + sym_comment, + ACTIONS(5756), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5753), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(5729), 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(5731), 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, - [93701] = 15, + anon_sym_satisfies, + [91513] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6144), 1, + ACTIONS(6237), 1, anon_sym_STAR, - ACTIONS(6146), 1, - anon_sym_async, - STATE(3191), 1, + STATE(3013), 1, sym_comment, - STATE(4091), 1, + STATE(4680), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6150), 2, + ACTIONS(6376), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, + 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(4492), 20, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -304716,37 +290528,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [93776] = 5, + [91586] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3192), 1, + ACTIONS(5391), 1, + anon_sym_EQ, + ACTIONS(5395), 1, + anon_sym_LBRACK, + ACTIONS(5928), 1, + anon_sym_COLON, + STATE(3014), 1, sym_comment, - ACTIONS(5846), 13, + ACTIONS(5398), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5322), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(5389), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5848), 28, - sym__automatic_semicolon, + ACTIONS(5393), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -304766,14 +290583,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93831] = 5, + [91651] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3193), 1, + STATE(3015), 1, sym_comment, - ACTIONS(5656), 13, + ACTIONS(6378), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6380), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304787,15 +290611,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5658), 28, - sym__automatic_semicolon, + ACTIONS(4242), 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, @@ -304816,14 +290635,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93886] = 5, + [91710] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3194), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5702), 1, + anon_sym_of, + ACTIONS(6288), 1, + anon_sym_AMP_AMP, + ACTIONS(6290), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6292), 1, + anon_sym_GT_GT, + ACTIONS(6296), 1, + anon_sym_AMP, + ACTIONS(6298), 1, + anon_sym_CARET, + ACTIONS(6300), 1, + anon_sym_PIPE, + ACTIONS(6304), 1, + anon_sym_PERCENT, + ACTIONS(6306), 1, + anon_sym_STAR_STAR, + ACTIONS(6308), 1, + anon_sym_LT, + ACTIONS(6316), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6318), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3016), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6286), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6294), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6302), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6312), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6314), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6310), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [91823] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3017), 1, sym_comment, - ACTIONS(5660), 13, + ACTIONS(6378), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6380), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304837,15 +290742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5662), 28, - sym__automatic_semicolon, + ACTIONS(4242), 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, @@ -304866,90 +290766,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [93941] = 5, + [91882] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3195), 1, - sym_comment, - ACTIONS(5664), 13, - anon_sym_STAR, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5698), 1, + anon_sym_of, + ACTIONS(6288), 1, + anon_sym_AMP_AMP, + ACTIONS(6290), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6292), 1, anon_sym_GT_GT, + ACTIONS(6296), 1, anon_sym_AMP, + ACTIONS(6298), 1, + anon_sym_CARET, + ACTIONS(6300), 1, anon_sym_PIPE, + ACTIONS(6304), 1, + anon_sym_PERCENT, + ACTIONS(6306), 1, + anon_sym_STAR_STAR, + ACTIONS(6308), 1, + anon_sym_LT, + ACTIONS(6316), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6318), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3018), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6286), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6294), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6302), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6312), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5666), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(6314), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6310), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [91995] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4943), 1, anon_sym_LBRACK, + ACTIONS(4945), 1, anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6330), 1, anon_sym_AMP_AMP, + ACTIONS(6332), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6334), 1, + anon_sym_GT_GT, + ACTIONS(6338), 1, + anon_sym_AMP, + ACTIONS(6340), 1, anon_sym_CARET, + ACTIONS(6342), 1, + anon_sym_PIPE, + ACTIONS(6346), 1, anon_sym_PERCENT, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6350), 1, + anon_sym_LT, + ACTIONS(6358), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6360), 1, + sym__ternary_qmark, + ACTIONS(6382), 1, + anon_sym_COLON, + STATE(2313), 1, + sym_type_arguments, + STATE(3019), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6324), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6326), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6336), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6354), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6352), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [93996] = 8, + [92108] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5697), 1, + ACTIONS(4240), 1, anon_sym_EQ, - ACTIONS(5935), 1, - anon_sym_of, - ACTIONS(6430), 1, - anon_sym_in, - STATE(3196), 1, + ACTIONS(4391), 1, + anon_sym_COLON, + ACTIONS(5368), 1, + anon_sym_extends, + ACTIONS(5613), 1, + anon_sym_LBRACK, + STATE(3020), 1, sym_comment, - ACTIONS(5695), 12, + ACTIONS(5616), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6384), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4238), 11, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5699), 26, - sym__automatic_semicolon, + ACTIONS(4242), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -304969,14 +290980,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94057] = 5, + [92175] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3197), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(6388), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3021), 1, sym_comment, - ACTIONS(5676), 13, + STATE(5791), 1, + sym_optional_chain, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -304987,21 +291017,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5678), 28, - sym__automatic_semicolon, + ACTIONS(5680), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -305017,9 +291038,8 @@ 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, - [94112] = 14, + [92248] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -305028,26 +291048,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6165), 1, + ACTIONS(6101), 1, anon_sym_STAR, - STATE(3198), 1, + STATE(3022), 1, sym_comment, - STATE(4981), 1, + STATE(4767), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6433), 2, + ACTIONS(6391), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -305078,82 +291098,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94185] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [92321] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(6165), 1, - anon_sym_STAR, - ACTIONS(6167), 1, - anon_sym_async, - STATE(3199), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3023), 1, sym_comment, - STATE(4126), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6171), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(2362), 5, + 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(4492), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94260] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2144), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5911), 1, - anon_sym_of, - ACTIONS(6435), 1, - anon_sym_in, - STATE(3200), 1, - sym_comment, - ACTIONS(2142), 12, + ACTIONS(2236), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -305164,13 +291125,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2148), 26, - sym__automatic_semicolon, + ACTIONS(2240), 23, 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, @@ -305191,14 +291149,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94321] = 5, + [92378] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3201), 1, + STATE(3024), 1, sym_comment, - ACTIONS(5762), 13, + ACTIONS(2228), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305212,7 +291170,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5764), 28, + ACTIONS(2232), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -305241,14 +291199,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94376] = 5, + [92433] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3202), 1, + STATE(3025), 1, sym_comment, - ACTIONS(5680), 13, + ACTIONS(2214), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305262,7 +291220,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5682), 28, + ACTIONS(2218), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -305291,7 +291249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94431] = 14, + [92488] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -305300,97 +291258,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6438), 1, + ACTIONS(6393), 1, anon_sym_STAR, - STATE(3203), 1, + STATE(3026), 1, sym_comment, - STATE(4804), 1, + STATE(4836), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6440), 2, + ACTIONS(6395), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, + 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(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94504] = 18, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6104), 1, - anon_sym_STAR, - ACTIONS(6232), 1, - anon_sym_RBRACE, - STATE(3204), 1, - sym_comment, - STATE(4902), 1, - sym__property_name, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(6287), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, ACTIONS(2989), 21, anon_sym_export, anon_sym_type, @@ -305413,100 +291308,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [94585] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(6442), 1, - anon_sym_STAR, - ACTIONS(6444), 1, - anon_sym_async, - STATE(3205), 1, - sym_comment, - STATE(4083), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6446), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4492), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94660] = 8, + [92561] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5321), 1, - anon_sym_extends, - STATE(3206), 1, + STATE(3027), 1, sym_comment, - ACTIONS(5769), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5766), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(5762), 11, + ACTIONS(2206), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5764), 24, + ACTIONS(2210), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -305526,134 +291358,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94721] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6104), 1, - anon_sym_STAR, - ACTIONS(6232), 1, - anon_sym_RBRACE, - STATE(3207), 1, - sym_comment, - STATE(4902), 1, - sym__property_name, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(6287), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [94804] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, - anon_sym_COMMA, - ACTIONS(5193), 1, - anon_sym_RBRACE, - STATE(3208), 1, - sym_comment, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(6287), 1, - aux_sym_object_repeat1, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2474), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - 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, - [94871] = 5, + [92616] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3209), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + STATE(3028), 1, sym_comment, - ACTIONS(5610), 13, + STATE(2625), 2, + sym_template_string, + sym_arguments, + ACTIONS(6397), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(4989), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305667,15 +291390,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5612), 28, - sym__automatic_semicolon, + ACTIONS(4991), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -305694,16 +291411,15 @@ 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, - [94926] = 5, + [92679] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3210), 1, + STATE(3029), 1, sym_comment, - ACTIONS(5606), 13, + ACTIONS(2190), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305717,7 +291433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5545), 28, + ACTIONS(2194), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -305746,20 +291462,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [94981] = 6, + [92734] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3211), 1, + STATE(3030), 1, sym_comment, - ACTIONS(2364), 5, + ACTIONS(2324), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(2154), 13, + ACTIONS(2184), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -305773,7 +291489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2158), 23, + ACTIONS(2186), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -305797,33 +291513,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95038] = 11, + [92791] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5151), 1, + ACTIONS(5039), 1, anon_sym_EQ, - ACTIONS(5153), 1, + ACTIONS(5041), 1, anon_sym_COMMA, - ACTIONS(5202), 1, + ACTIONS(5381), 1, anon_sym_RBRACE, - STATE(3212), 1, + STATE(3031), 1, sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1043), 6, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(985), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2470), 29, + ACTIONS(2452), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -305853,165 +291569,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95105] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, + [92858] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(5514), 1, - anon_sym_STAR, - STATE(3213), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3032), 1, sym_comment, - STATE(4835), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6448), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(5777), 13, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_in, + anon_sym_GT, + 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, - ACTIONS(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [95178] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4636), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5779), 28, sym__automatic_semicolon, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(5202), 1, anon_sym_RBRACE, - STATE(3214), 1, - sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1043), 6, anon_sym_LPAREN, + anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2474), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, 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, - [95245] = 19, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [92913] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6104), 1, + ACTIONS(6393), 1, anon_sym_STAR, - ACTIONS(6106), 1, - anon_sym_RBRACE, - STATE(3215), 1, + ACTIONS(6399), 1, + anon_sym_async, + STATE(3033), 1, sym_comment, - STATE(4902), 1, + STATE(3903), 1, sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, + ACTIONS(6401), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(985), 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(2989), 20, + ACTIONS(4496), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -306032,117 +291679,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95328] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, + [92988] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3034), 1, + sym_comment, + ACTIONS(5801), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5803), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - ACTIONS(1022), 1, anon_sym_RBRACE, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(6104), 1, - anon_sym_STAR, - STATE(3216), 1, - sym_comment, - STATE(4902), 1, - sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [93043] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6330), 1, + anon_sym_AMP_AMP, + ACTIONS(6332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, + anon_sym_GT_GT, + ACTIONS(6338), 1, + anon_sym_AMP, + ACTIONS(6340), 1, + anon_sym_CARET, + ACTIONS(6342), 1, + anon_sym_PIPE, + ACTIONS(6346), 1, + anon_sym_PERCENT, + ACTIONS(6348), 1, + anon_sym_STAR_STAR, + ACTIONS(6350), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [95411] = 18, + ACTIONS(6358), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6360), 1, + sym__ternary_qmark, + ACTIONS(6403), 1, + anon_sym_COLON, + STATE(2313), 1, + sym_type_arguments, + STATE(3035), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6324), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6326), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6336), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6354), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6356), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6352), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93156] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1022), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6104), 1, + ACTIONS(6045), 1, anon_sym_STAR, - STATE(3217), 1, + ACTIONS(6047), 1, + anon_sym_async, + STATE(3036), 1, sym_comment, - STATE(4902), 1, + STATE(3930), 1, sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, + ACTIONS(6049), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(985), 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(2989), 21, + ACTIONS(4496), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -306159,14 +291868,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95492] = 5, + [93231] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3218), 1, + STATE(3037), 1, sym_comment, - ACTIONS(5716), 13, + ACTIONS(6378), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6380), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306180,15 +291896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5718), 28, - sym__automatic_semicolon, + ACTIONS(4242), 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, @@ -306209,21 +291920,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95547] = 7, + [93290] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6450), 1, - sym__automatic_semicolon, - STATE(3219), 1, + STATE(3038), 1, sym_comment, - ACTIONS(2394), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2312), 13, + ACTIONS(5797), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306237,10 +291941,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2316), 23, + ACTIONS(5692), 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, @@ -306261,49 +291970,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95606] = 14, + [93345] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5477), 1, anon_sym_LBRACK, - ACTIONS(6118), 1, + ACTIONS(6221), 1, anon_sym_STAR, - STATE(3220), 1, + ACTIONS(6223), 1, + anon_sym_async, + STATE(3039), 1, sym_comment, - STATE(4947), 1, + STATE(3964), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6452), 2, + ACTIONS(6227), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, + ACTIONS(985), 8, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(4496), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -306320,14 +292030,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95679] = 5, + [93420] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3221), 1, + STATE(3040), 1, sym_comment, - ACTIONS(2154), 13, + ACTIONS(5409), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306341,7 +292051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2158), 28, + ACTIONS(5411), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -306370,44 +292080,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95734] = 18, + [93475] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6104), 1, + ACTIONS(6405), 1, anon_sym_STAR, - ACTIONS(6106), 1, - anon_sym_RBRACE, - STATE(3222), 1, + STATE(3041), 1, sym_comment, - STATE(4902), 1, + STATE(4669), 1, sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, + ACTIONS(6407), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(985), 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, @@ -306433,19 +292139,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [95815] = 7, + [93548] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6454), 1, - sym__automatic_semicolon, - STATE(3223), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(6409), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3042), 1, sym_comment, - ACTIONS(2404), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2282), 13, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5593), 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(5595), 17, + 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_satisfies, + [93623] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3043), 1, + sym_comment, + ACTIONS(5793), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306459,11 +292220,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2286), 25, + ACTIONS(5694), 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, @@ -306485,18 +292249,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95874] = 6, + [93678] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4238), 1, - anon_sym_EQ, - STATE(3224), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6412), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3044), 1, sym_comment, - ACTIONS(4218), 13, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5658), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -306505,18 +292294,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 27, + ACTIONS(5660), 15, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [93759] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5652), 1, anon_sym_COLON, + ACTIONS(6330), 1, + anon_sym_AMP_AMP, + ACTIONS(6332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, + anon_sym_GT_GT, + ACTIONS(6338), 1, + anon_sym_AMP, + ACTIONS(6340), 1, + anon_sym_CARET, + ACTIONS(6342), 1, + anon_sym_PIPE, + ACTIONS(6346), 1, + anon_sym_PERCENT, + ACTIONS(6348), 1, + anon_sym_STAR_STAR, + ACTIONS(6350), 1, + anon_sym_LT, + ACTIONS(6358), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6360), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3045), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6324), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6326), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6336), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6354), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6356), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6352), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [93872] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2146), 1, + anon_sym_EQ, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5401), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + STATE(3046), 1, + sym_comment, + ACTIONS(3581), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5404), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2144), 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(2150), 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, @@ -306536,22 +292445,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95931] = 7, + [93935] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6456), 1, - sym__automatic_semicolon, - STATE(3225), 1, + ACTIONS(5391), 1, + anon_sym_EQ, + ACTIONS(5928), 1, + anon_sym_of, + ACTIONS(6415), 1, + anon_sym_in, + STATE(3047), 1, sym_comment, - ACTIONS(2400), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2304), 13, + ACTIONS(5389), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -306562,7 +292471,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2308), 25, + ACTIONS(5393), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, @@ -306588,26 +292498,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [95990] = 7, + [93996] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3226), 1, + ACTIONS(5391), 1, + anon_sym_EQ, + ACTIONS(5395), 1, + anon_sym_LBRACK, + STATE(3048), 1, sym_comment, - ACTIONS(5139), 2, + ACTIONS(5322), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5398), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5137), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4218), 11, + ACTIONS(5389), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -306615,12 +292527,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 24, + ACTIONS(5393), 24, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -306640,41 +292552,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96049] = 9, + [94059] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5319), 1, - anon_sym_QMARK, - STATE(3227), 1, + STATE(3049), 1, sym_comment, - ACTIONS(5321), 2, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5769), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5766), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(5762), 11, + ACTIONS(5729), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5764), 22, + ACTIONS(5731), 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, @@ -306694,14 +292602,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96112] = 5, + [94114] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3228), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(6418), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3050), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 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(5680), 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, + [94187] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3051), 1, sym_comment, - ACTIONS(2312), 13, + ACTIONS(5721), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306715,7 +292682,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2316), 28, + ACTIONS(5723), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -306744,20 +292711,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96167] = 6, + [94242] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3229), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5696), 1, + anon_sym_of, + ACTIONS(6288), 1, + anon_sym_AMP_AMP, + ACTIONS(6290), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6292), 1, + anon_sym_GT_GT, + ACTIONS(6296), 1, + anon_sym_AMP, + ACTIONS(6298), 1, + anon_sym_CARET, + ACTIONS(6300), 1, + anon_sym_PIPE, + ACTIONS(6304), 1, + anon_sym_PERCENT, + ACTIONS(6306), 1, + anon_sym_STAR_STAR, + ACTIONS(6308), 1, + anon_sym_LT, + ACTIONS(6316), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6318), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3052), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6286), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6294), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6302), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6312), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6314), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6310), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94355] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3053), 1, sym_comment, - ACTIONS(2400), 5, + ACTIONS(2376), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(2304), 13, + ACTIONS(2266), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306771,7 +292817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2308), 23, + ACTIONS(2270), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -306795,14 +292841,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96224] = 5, + [94412] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3230), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5694), 1, + anon_sym_of, + ACTIONS(6288), 1, + anon_sym_AMP_AMP, + ACTIONS(6290), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6292), 1, + anon_sym_GT_GT, + ACTIONS(6296), 1, + anon_sym_AMP, + ACTIONS(6298), 1, + anon_sym_CARET, + ACTIONS(6300), 1, + anon_sym_PIPE, + ACTIONS(6304), 1, + anon_sym_PERCENT, + ACTIONS(6306), 1, + anon_sym_STAR_STAR, + ACTIONS(6308), 1, + anon_sym_LT, + ACTIONS(6316), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6318), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3054), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6286), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6294), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6302), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6312), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6314), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6310), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94525] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3055), 1, + sym_comment, + ACTIONS(2380), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2274), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2278), 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, + [94582] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3056), 1, + sym_comment, + ACTIONS(5725), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5727), 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, + [94637] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3057), 1, sym_comment, - ACTIONS(5539), 13, + ACTIONS(5791), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306816,7 +293042,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5541), 28, + ACTIONS(5696), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -306845,42 +293071,339 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96279] = 10, + [94692] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5692), 1, + anon_sym_of, + ACTIONS(6288), 1, + anon_sym_AMP_AMP, + ACTIONS(6290), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6292), 1, + anon_sym_GT_GT, + ACTIONS(6296), 1, + anon_sym_AMP, + ACTIONS(6298), 1, + anon_sym_CARET, + ACTIONS(6300), 1, + anon_sym_PIPE, + ACTIONS(6304), 1, + anon_sym_PERCENT, + ACTIONS(6306), 1, + anon_sym_STAR_STAR, + ACTIONS(6308), 1, + anon_sym_LT, + ACTIONS(6316), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6318), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3058), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6286), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6294), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6302), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6312), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6314), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6310), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [94805] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5039), 1, anon_sym_EQ, - ACTIONS(4341), 1, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5384), 1, + anon_sym_RBRACE, + STATE(3059), 1, + sym_comment, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(5779), 1, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2452), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, anon_sym_LBRACK, - STATE(3231), 1, + 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, + [94872] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(6421), 1, + sym__automatic_semicolon, + STATE(3060), 1, sym_comment, - ACTIONS(5782), 2, + ACTIONS(2358), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2228), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5169), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2232), 25, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4218), 11, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [94931] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5384), 1, + anon_sym_RBRACE, + STATE(3061), 1, + sym_comment, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2454), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [94998] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6423), 1, + anon_sym_STAR, + STATE(3062), 1, + sym_comment, + STATE(4712), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6425), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 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(2989), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [95071] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3063), 1, + sym_comment, + ACTIONS(5785), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(5787), 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, @@ -306900,7 +293423,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96344] = 15, + [95126] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6093), 1, + anon_sym_STAR, + ACTIONS(6207), 1, + anon_sym_RBRACE, + STATE(3064), 1, + sym_comment, + STATE(4672), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [95209] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -306909,28 +293496,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6173), 1, + ACTIONS(6405), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(6427), 1, anon_sym_async, - STATE(3232), 1, + STATE(3065), 1, sym_comment, - STATE(4056), 1, + STATE(3932), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6179), 2, + ACTIONS(6429), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -306939,7 +293526,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4492), 20, + ACTIONS(4496), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -306960,20 +293547,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96419] = 6, + [95284] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3233), 1, + STATE(3066), 1, sym_comment, - ACTIONS(2404), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2282), 13, + ACTIONS(5735), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -306987,10 +293568,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2286), 23, + ACTIONS(5737), 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, @@ -307011,50 +293597,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [96476] = 11, + [95339] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(5290), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6093), 1, + anon_sym_STAR, + ACTIONS(6207), 1, anon_sym_RBRACE, - STATE(3234), 1, + STATE(3067), 1, sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, + STATE(4672), 1, + sym__property_name, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1043), 6, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2474), 29, + ACTIONS(2989), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -307067,37 +293660,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96543] = 15, + [95420] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3068), 1, + sym_comment, + ACTIONS(5252), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5254), 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, + [95475] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6458), 1, + ACTIONS(6431), 1, anon_sym_STAR, - ACTIONS(6460), 1, - anon_sym_async, - STATE(3235), 1, + STATE(3069), 1, sym_comment, - STATE(4121), 1, + STATE(4742), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6462), 2, + ACTIONS(6433), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -307106,11 +293747,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4492), 20, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -307127,114 +293769,219 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96618] = 34, + [95548] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5554), 1, - anon_sym_of, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6275), 1, - anon_sym_LT, - ACTIONS(6400), 1, + ACTIONS(5702), 1, + anon_sym_COLON, + ACTIONS(6330), 1, anon_sym_AMP_AMP, - ACTIONS(6402), 1, + ACTIONS(6332), 1, anon_sym_PIPE_PIPE, - ACTIONS(6404), 1, + ACTIONS(6334), 1, + anon_sym_GT_GT, + ACTIONS(6338), 1, anon_sym_AMP, - ACTIONS(6406), 1, + ACTIONS(6340), 1, anon_sym_CARET, - ACTIONS(6408), 1, + ACTIONS(6342), 1, anon_sym_PIPE, - ACTIONS(6414), 1, + ACTIONS(6346), 1, + anon_sym_PERCENT, + ACTIONS(6348), 1, + anon_sym_STAR_STAR, + ACTIONS(6350), 1, + anon_sym_LT, + ACTIONS(6358), 1, anon_sym_QMARK_QMARK, - ACTIONS(6416), 1, + ACTIONS(6360), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3236), 1, + STATE(3070), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6261), 2, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6263), 2, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6267), 2, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6269), 2, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6410), 2, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6412), 2, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6277), 3, + ACTIONS(6352), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [95661] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3071), 1, + sym_comment, + ACTIONS(2358), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2228), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2232), 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, + [95718] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(6435), 1, + sym__automatic_semicolon, + STATE(3072), 1, + sym_comment, + ACTIONS(2388), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2294), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2298), 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, - [96731] = 14, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [95777] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6464), 1, + ACTIONS(6437), 1, anon_sym_STAR, - STATE(3237), 1, + ACTIONS(6439), 1, + anon_sym_async, + STATE(3073), 1, sym_comment, - STATE(4960), 1, + STATE(3912), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6466), 2, + ACTIONS(6441), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -307243,12 +293990,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(4496), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -307265,86 +294011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96804] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6285), 1, - anon_sym_AMP_AMP, - ACTIONS(6287), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, - anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_AMP, - ACTIONS(6295), 1, - anon_sym_CARET, - ACTIONS(6297), 1, - anon_sym_PIPE, - ACTIONS(6301), 1, - anon_sym_PERCENT, - ACTIONS(6303), 1, - anon_sym_STAR_STAR, - ACTIONS(6305), 1, - anon_sym_LT, - ACTIONS(6313), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, - sym__ternary_qmark, - ACTIONS(6468), 1, - anon_sym_COLON, - STATE(2461), 1, - sym_type_arguments, - STATE(3238), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6291), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6299), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6309), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6307), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [96917] = 14, + [95852] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -307353,26 +294020,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6173), 1, + ACTIONS(6437), 1, anon_sym_STAR, - STATE(3239), 1, + STATE(3074), 1, sym_comment, - STATE(4934), 1, + STATE(4827), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6470), 2, + ACTIONS(6443), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -307403,21 +294070,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [96990] = 7, + [95925] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3240), 1, + STATE(3075), 1, sym_comment, - ACTIONS(6472), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6474), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, + ACTIONS(5252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307431,10 +294091,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(5254), 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, @@ -307455,14 +294120,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97049] = 5, + [95980] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3241), 1, + STATE(3076), 1, sym_comment, - ACTIONS(5826), 13, + ACTIONS(5646), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307476,7 +294141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5828), 28, + ACTIONS(5648), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -307505,86 +294170,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97104] = 27, + [96035] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6265), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5523), 1, + anon_sym_RBRACK, + ACTIONS(6449), 1, + anon_sym_AMP_AMP, + ACTIONS(6451), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6453), 1, anon_sym_GT_GT, - ACTIONS(6271), 1, + ACTIONS(6457), 1, + anon_sym_AMP, + ACTIONS(6459), 1, + anon_sym_CARET, + ACTIONS(6461), 1, + anon_sym_PIPE, + ACTIONS(6465), 1, anon_sym_PERCENT, - ACTIONS(6273), 1, + ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6275), 1, + ACTIONS(6469), 1, anon_sym_LT, - ACTIONS(6404), 1, - anon_sym_AMP, - ACTIONS(6406), 1, - anon_sym_CARET, - STATE(2461), 1, + ACTIONS(6477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6479), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(3242), 1, + STATE(3077), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5409), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6261), 2, + ACTIONS(6445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6263), 2, + ACTIONS(6447), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6267), 2, + ACTIONS(6455), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6269), 2, + ACTIONS(6463), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6410), 2, + ACTIONS(6473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6412), 2, + ACTIONS(6475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6277), 3, + ACTIONS(6471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 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, - [97203] = 5, + [96148] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3243), 1, + STATE(3078), 1, sym_comment, - ACTIONS(5830), 13, + ACTIONS(5638), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307598,7 +294270,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5832), 28, + ACTIONS(5640), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -307627,14 +294299,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97258] = 5, + [96203] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3244), 1, + STATE(3079), 1, sym_comment, - ACTIONS(5834), 13, + ACTIONS(2398), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307648,15 +294326,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5836), 28, - sym__automatic_semicolon, + ACTIONS(2314), 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, @@ -307677,7 +294350,206 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97313] = 14, + [96260] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(6045), 1, + anon_sym_STAR, + ACTIONS(6047), 1, + anon_sym_async, + STATE(3080), 1, + sym_comment, + STATE(3910), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6049), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 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(4496), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [96335] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(6258), 1, + anon_sym_STAR, + ACTIONS(6260), 1, + anon_sym_async, + STATE(3081), 1, + sym_comment, + STATE(3902), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6262), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 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(4496), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [96410] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6449), 1, + anon_sym_AMP_AMP, + ACTIONS(6451), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6453), 1, + anon_sym_GT_GT, + ACTIONS(6457), 1, + anon_sym_AMP, + ACTIONS(6459), 1, + anon_sym_CARET, + ACTIONS(6461), 1, + anon_sym_PIPE, + ACTIONS(6465), 1, + anon_sym_PERCENT, + ACTIONS(6467), 1, + anon_sym_STAR_STAR, + ACTIONS(6469), 1, + anon_sym_LT, + ACTIONS(6477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6479), 1, + sym__ternary_qmark, + ACTIONS(6481), 1, + anon_sym_RBRACK, + STATE(2313), 1, + sym_type_arguments, + STATE(3082), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6447), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6455), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6463), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6475), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6471), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [96523] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -307686,26 +294558,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6476), 1, + ACTIONS(6258), 1, anon_sym_STAR, - STATE(3245), 1, + STATE(3083), 1, sym_comment, - STATE(4877), 1, + STATE(4718), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6478), 2, + ACTIONS(6483), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -307736,41 +294608,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [97386] = 9, + [96596] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5064), 1, - anon_sym_EQ, - ACTIONS(5068), 1, - anon_sym_LBRACK, - STATE(3246), 1, + STATE(3084), 1, sym_comment, - ACTIONS(5074), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5071), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5062), 10, + 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(5066), 24, + ACTIONS(5783), 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, @@ -307790,41 +294658,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97449] = 9, + [96651] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2144), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5056), 1, - anon_sym_LBRACK, - STATE(3247), 1, + STATE(3085), 1, sym_comment, - ACTIONS(3587), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5059), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2142), 10, + ACTIONS(5671), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2148), 24, + ACTIONS(5673), 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, @@ -307844,22 +294708,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97512] = 7, + [96706] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3248), 1, + ACTIONS(6485), 1, + sym_regex_flags, + STATE(3086), 1, sym_comment, - ACTIONS(6126), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6128), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, + ACTIONS(6148), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -307872,10 +294732,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6150), 24, + 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, @@ -307891,26 +294756,17 @@ 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, - [97571] = 7, + [96763] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6480), 1, - sym__automatic_semicolon, - STATE(3249), 1, + STATE(3087), 1, sym_comment, - ACTIONS(2428), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2170), 13, + ACTIONS(5873), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307924,10 +294780,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2174), 23, + ACTIONS(5875), 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, @@ -307948,21 +294809,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97630] = 7, + [96818] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6482), 1, - sym__automatic_semicolon, - STATE(3250), 1, + STATE(3088), 1, sym_comment, - ACTIONS(2424), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2196), 13, + ACTIONS(5749), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -307976,10 +294830,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2200), 23, + ACTIONS(5751), 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, @@ -308000,20 +294859,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97689] = 6, + [96873] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3251), 1, + STATE(3089), 1, sym_comment, - ACTIONS(2420), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2268), 13, + ACTIONS(5869), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308027,10 +294880,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2272), 23, + ACTIONS(5871), 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, @@ -308051,40 +294909,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97746] = 8, + [96928] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5169), 1, - anon_sym_extends, - STATE(3252), 1, + STATE(3090), 1, sym_comment, - ACTIONS(5782), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5779), 3, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(4218), 11, + 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(4222), 24, + ACTIONS(5624), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -308104,79 +294959,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97807] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(6484), 1, - anon_sym_STAR, - ACTIONS(6486), 1, - anon_sym_async, - STATE(3253), 1, - sym_comment, - STATE(4129), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6488), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4492), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [97882] = 7, + [96983] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6490), 1, - sym__automatic_semicolon, - STATE(3254), 1, + STATE(3091), 1, sym_comment, - ACTIONS(2394), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2312), 13, + ACTIONS(5634), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308190,11 +294980,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2316), 25, + ACTIONS(5636), 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, @@ -308216,86 +295009,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [97941] = 34, + [97038] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5543), 1, + ACTIONS(5626), 1, anon_sym_of, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6275), 1, - anon_sym_LT, - ACTIONS(6400), 1, + ACTIONS(6288), 1, anon_sym_AMP_AMP, - ACTIONS(6402), 1, + ACTIONS(6290), 1, anon_sym_PIPE_PIPE, - ACTIONS(6404), 1, + ACTIONS(6292), 1, + anon_sym_GT_GT, + ACTIONS(6296), 1, anon_sym_AMP, - ACTIONS(6406), 1, + ACTIONS(6298), 1, anon_sym_CARET, - ACTIONS(6408), 1, + ACTIONS(6300), 1, anon_sym_PIPE, - ACTIONS(6414), 1, + ACTIONS(6304), 1, + anon_sym_PERCENT, + ACTIONS(6306), 1, + anon_sym_STAR_STAR, + ACTIONS(6308), 1, + anon_sym_LT, + ACTIONS(6316), 1, anon_sym_QMARK_QMARK, - ACTIONS(6416), 1, + ACTIONS(6318), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3255), 1, + STATE(3092), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6261), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6263), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6267), 2, + ACTIONS(6294), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6269), 2, + ACTIONS(6302), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6410), 2, + ACTIONS(6312), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6412), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6277), 3, + ACTIONS(6310), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98054] = 14, + [97151] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -308304,26 +295097,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6484), 1, + ACTIONS(6487), 1, anon_sym_STAR, - STATE(3256), 1, + STATE(3093), 1, sym_comment, - STATE(4893), 1, + STATE(4761), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6489), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 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(2989), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [97224] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6491), 1, + anon_sym_STAR, + STATE(3094), 1, + sym_comment, + STATE(4689), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6492), 2, + ACTIONS(6493), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -308354,33 +295206,171 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [98127] = 14, + [97297] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6494), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5624), 1, + anon_sym_of, + ACTIONS(6288), 1, + anon_sym_AMP_AMP, + ACTIONS(6290), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6292), 1, + anon_sym_GT_GT, + ACTIONS(6296), 1, + anon_sym_AMP, + ACTIONS(6298), 1, + anon_sym_CARET, + ACTIONS(6300), 1, + anon_sym_PIPE, + ACTIONS(6304), 1, + anon_sym_PERCENT, + ACTIONS(6306), 1, + anon_sym_STAR_STAR, + ACTIONS(6308), 1, anon_sym_LT, - STATE(2461), 1, + ACTIONS(6316), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6318), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(3257), 1, + STATE(3095), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6286), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6294), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6302), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6312), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6314), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6310), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [97410] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5571), 1, + anon_sym_BANG, + ACTIONS(6288), 1, + anon_sym_AMP_AMP, + ACTIONS(6290), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6292), 1, + anon_sym_GT_GT, + ACTIONS(6296), 1, + anon_sym_AMP, + ACTIONS(6298), 1, + anon_sym_CARET, + ACTIONS(6300), 1, + anon_sym_PIPE, + ACTIONS(6304), 1, + anon_sym_PERCENT, + ACTIONS(6306), 1, + anon_sym_STAR_STAR, + ACTIONS(6308), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3096), 1, + sym_comment, + STATE(5791), 1, sym_optional_chain, - STATE(2759), 2, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6286), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6294), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6302), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6312), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6314), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5785), 12, + ACTIONS(6310), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5569), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [97515] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3097), 1, + sym_comment, + ACTIONS(2324), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2184), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308391,12 +295381,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 19, + ACTIONS(2186), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -308412,202 +295409,225 @@ 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, - [98200] = 34, + [97572] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5545), 1, - anon_sym_of, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6275), 1, - anon_sym_LT, - ACTIONS(6400), 1, - anon_sym_AMP_AMP, - ACTIONS(6402), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6404), 1, - anon_sym_AMP, - ACTIONS(6406), 1, - anon_sym_CARET, - ACTIONS(6408), 1, - anon_sym_PIPE, - ACTIONS(6414), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6416), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3258), 1, + ACTIONS(6495), 1, + sym__automatic_semicolon, + STATE(3098), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6261), 2, + ACTIONS(2362), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2236), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6263), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6269), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6410), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6412), 2, + ACTIONS(2240), 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, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6277), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [98313] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [97631] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5556), 1, + ACTIONS(5692), 1, anon_sym_RBRACK, - ACTIONS(6359), 1, + ACTIONS(6449), 1, anon_sym_AMP_AMP, - ACTIONS(6361), 1, + ACTIONS(6451), 1, anon_sym_PIPE_PIPE, - ACTIONS(6363), 1, + ACTIONS(6453), 1, anon_sym_GT_GT, - ACTIONS(6367), 1, + ACTIONS(6457), 1, anon_sym_AMP, - ACTIONS(6369), 1, + ACTIONS(6459), 1, anon_sym_CARET, - ACTIONS(6371), 1, + ACTIONS(6461), 1, anon_sym_PIPE, - ACTIONS(6375), 1, + ACTIONS(6465), 1, anon_sym_PERCENT, - ACTIONS(6377), 1, + ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6379), 1, + ACTIONS(6469), 1, anon_sym_LT, - ACTIONS(6387), 1, + ACTIONS(6477), 1, anon_sym_QMARK_QMARK, - ACTIONS(6389), 1, + ACTIONS(6479), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3259), 1, + STATE(3099), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6353), 2, + ACTIONS(6445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6355), 2, + ACTIONS(6447), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6455), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6373), 2, + ACTIONS(6463), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6383), 2, + ACTIONS(6473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6385), 2, + ACTIONS(6475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6381), 3, + ACTIONS(6471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98426] = 18, + [97744] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6497), 1, + ACTIONS(6292), 1, + anon_sym_GT_GT, + ACTIONS(6304), 1, + anon_sym_PERCENT, + ACTIONS(6306), 1, + anon_sym_STAR_STAR, + ACTIONS(6308), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3260), 1, + STATE(3100), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + ACTIONS(6284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6286), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6294), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6302), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5599), 11, + ACTIONS(6310), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5571), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5569), 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, + [97835] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4336), 1, + anon_sym_EQ, + ACTIONS(4344), 1, + anon_sym_QMARK, + STATE(3101), 1, + sym_comment, + ACTIONS(4339), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4238), 13, anon_sym_STAR, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -308616,11 +295636,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5601), 15, + ACTIONS(4242), 23, sym__ternary_qmark, - anon_sym_RBRACK, + 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, @@ -308634,21 +295659,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [98507] = 7, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [97896] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3261), 1, - sym_comment, - ACTIONS(6090), 2, + ACTIONS(4364), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6234), 3, + ACTIONS(5368), 1, + anon_sym_extends, + STATE(3102), 1, + sym_comment, + ACTIONS(5613), 2, anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5616), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4238), 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(4242), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(4218), 13, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [97959] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3103), 1, + sym_comment, + ACTIONS(5773), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308662,10 +295738,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(5775), 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, @@ -308686,36 +295767,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98566] = 15, + [98014] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(6500), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3262), 1, + ACTIONS(6497), 1, + sym__automatic_semicolon, + STATE(3104), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5463), 12, + ACTIONS(2366), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308726,12 +295790,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5465), 17, + ACTIONS(2158), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -308745,15 +295815,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [98641] = 5, + [98073] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3263), 1, + ACTIONS(6499), 1, + sym__automatic_semicolon, + STATE(3105), 1, sym_comment, - ACTIONS(5852), 13, + ACTIONS(2370), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2244), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308767,14 +295845,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5724), 28, - sym__automatic_semicolon, + ACTIONS(2248), 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_DOT, @@ -308796,183 +295871,256 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [98696] = 34, + [98132] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5560), 1, - anon_sym_of, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6275), 1, - anon_sym_LT, - ACTIONS(6400), 1, + ACTIONS(5652), 1, + anon_sym_RBRACK, + ACTIONS(6449), 1, anon_sym_AMP_AMP, - ACTIONS(6402), 1, + ACTIONS(6451), 1, anon_sym_PIPE_PIPE, - ACTIONS(6404), 1, + ACTIONS(6453), 1, + anon_sym_GT_GT, + ACTIONS(6457), 1, anon_sym_AMP, - ACTIONS(6406), 1, + ACTIONS(6459), 1, anon_sym_CARET, - ACTIONS(6408), 1, + ACTIONS(6461), 1, anon_sym_PIPE, - ACTIONS(6414), 1, + ACTIONS(6465), 1, + anon_sym_PERCENT, + ACTIONS(6467), 1, + anon_sym_STAR_STAR, + ACTIONS(6469), 1, + anon_sym_LT, + ACTIONS(6477), 1, anon_sym_QMARK_QMARK, - ACTIONS(6416), 1, + ACTIONS(6479), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3264), 1, + STATE(3106), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6261), 2, + ACTIONS(6445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6263), 2, + ACTIONS(6447), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6267), 2, + ACTIONS(6455), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6269), 2, + ACTIONS(6463), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6410), 2, + ACTIONS(6473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6412), 2, + ACTIONS(6475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6277), 3, + ACTIONS(6471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [98809] = 21, + [98245] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4352), 1, + anon_sym_EQ, + ACTIONS(5368), 1, + anon_sym_extends, + STATE(3107), 1, + sym_comment, + ACTIONS(5613), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5616), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4238), 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(4242), 24, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, anon_sym_QMARK_DOT, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6273), 1, anon_sym_STAR_STAR, - ACTIONS(6275), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3265), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6261), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + anon_sym_implements, + [98308] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3108), 1, + sym_comment, + ACTIONS(5851), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6269), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 13, + ACTIONS(5853), 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, - [98896] = 16, + [98363] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6503), 1, + ACTIONS(6045), 1, + anon_sym_STAR, + STATE(3109), 1, + sym_comment, + STATE(4711), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6501), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 8, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3266), 1, + anon_sym_QMARK, + ACTIONS(2989), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [98436] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3110), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 12, + ACTIONS(5717), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -308983,115 +296131,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 16, + ACTIONS(5719), 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, - [98973] = 34, + [98491] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5711), 1, - anon_sym_of, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6275), 1, - anon_sym_LT, - ACTIONS(6400), 1, - anon_sym_AMP_AMP, - ACTIONS(6402), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6404), 1, - anon_sym_AMP, - ACTIONS(6406), 1, - anon_sym_CARET, - ACTIONS(6408), 1, - anon_sym_PIPE, - ACTIONS(6414), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6416), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3267), 1, + STATE(3111), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6261), 2, + ACTIONS(6141), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6143), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4238), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6263), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6269), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6410), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6412), 2, + ACTIONS(4242), 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, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6277), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [99086] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [98550] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3268), 1, + STATE(3112), 1, sym_comment, - ACTIONS(2350), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2178), 13, + ACTIONS(5706), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -309105,12 +296236,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2180), 26, + ACTIONS(5708), 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, @@ -309132,20 +296265,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99143] = 6, + [98605] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3269), 1, - sym_comment, - ACTIONS(2390), 5, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, sym__automatic_semicolon, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(5838), 1, + anon_sym_STAR, + STATE(3113), 1, + sym_comment, + STATE(4754), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6503), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2230), 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [98678] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3114), 1, + sym_comment, + ACTIONS(5665), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -309159,10 +296345,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2234), 23, + ACTIONS(5667), 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, @@ -309183,19 +296374,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99200] = 7, + [98733] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6506), 1, - sym__automatic_semicolon, - STATE(3270), 1, + STATE(3115), 1, sym_comment, - ACTIONS(2354), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2184), 13, + ACTIONS(5821), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -309209,11 +296395,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2188), 25, + ACTIONS(5823), 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, @@ -309235,87 +296424,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99259] = 28, + [98788] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5409), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6275), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6505), 1, anon_sym_LT, - ACTIONS(6404), 1, - anon_sym_AMP, - ACTIONS(6406), 1, - anon_sym_CARET, - ACTIONS(6408), 1, - anon_sym_PIPE, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3271), 1, + STATE(3116), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6261), 2, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5658), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6263), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6269), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6410), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6412), 2, + ACTIONS(5660), 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, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6277), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - ACTIONS(5407), 7, + [98869] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(6508), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3117), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5593), 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(5595), 17, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + 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, - [99360] = 5, + [98944] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6093), 1, + anon_sym_STAR, + ACTIONS(6185), 1, + anon_sym_RBRACE, + STATE(3118), 1, + sym_comment, + STATE(4672), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99025] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3272), 1, + STATE(3119), 1, sym_comment, - ACTIONS(5357), 13, + ACTIONS(5622), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -309329,7 +296631,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5359), 28, + ACTIONS(5487), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -309358,223 +296660,461 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99415] = 34, + [99080] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(6405), 1, + anon_sym_STAR, + ACTIONS(6427), 1, + anon_sym_async, + STATE(3120), 1, + sym_comment, + STATE(3914), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6429), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 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(4496), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99155] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6093), 1, + anon_sym_STAR, + ACTIONS(6185), 1, + anon_sym_RBRACE, + STATE(3121), 1, + sym_comment, + STATE(4672), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99238] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5560), 1, + ACTIONS(5702), 1, anon_sym_RBRACK, - ACTIONS(6359), 1, + ACTIONS(6449), 1, anon_sym_AMP_AMP, - ACTIONS(6361), 1, + ACTIONS(6451), 1, anon_sym_PIPE_PIPE, - ACTIONS(6363), 1, + ACTIONS(6453), 1, anon_sym_GT_GT, - ACTIONS(6367), 1, + ACTIONS(6457), 1, anon_sym_AMP, - ACTIONS(6369), 1, + ACTIONS(6459), 1, anon_sym_CARET, - ACTIONS(6371), 1, + ACTIONS(6461), 1, anon_sym_PIPE, - ACTIONS(6375), 1, + ACTIONS(6465), 1, anon_sym_PERCENT, - ACTIONS(6377), 1, + ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6379), 1, + ACTIONS(6469), 1, anon_sym_LT, - ACTIONS(6387), 1, + ACTIONS(6477), 1, anon_sym_QMARK_QMARK, - ACTIONS(6389), 1, + ACTIONS(6479), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3273), 1, + STATE(3122), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6353), 2, + ACTIONS(6445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6355), 2, + ACTIONS(6447), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6455), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6373), 2, + ACTIONS(6463), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6383), 2, + ACTIONS(6473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6385), 2, + ACTIONS(6475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6381), 3, + ACTIONS(6471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [99528] = 8, + [99351] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5524), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, anon_sym_LBRACK, - STATE(3274), 1, - sym_comment, - ACTIONS(4973), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5527), 3, - anon_sym_GT, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5698), 1, + anon_sym_RBRACK, + ACTIONS(6449), 1, + anon_sym_AMP_AMP, + ACTIONS(6451), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6453), 1, + anon_sym_GT_GT, + ACTIONS(6457), 1, anon_sym_AMP, + ACTIONS(6459), 1, + anon_sym_CARET, + ACTIONS(6461), 1, anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(6465), 1, + anon_sym_PERCENT, + ACTIONS(6467), 1, + anon_sym_STAR_STAR, + ACTIONS(6469), 1, + anon_sym_LT, + ACTIONS(6477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6479), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3123), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6445), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6447), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(6455), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6463), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 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, + ACTIONS(6475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6471), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [99589] = 6, + [99464] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3275), 1, - sym_comment, - ACTIONS(2354), 5, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, sym__automatic_semicolon, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(6491), 1, + anon_sym_STAR, + ACTIONS(6511), 1, + anon_sym_async, + STATE(3124), 1, + sym_comment, + STATE(3984), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6513), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 8, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2184), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2188), 23, - sym__ternary_qmark, - anon_sym_as, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4496), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [99539] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, anon_sym_LPAREN, + ACTIONS(4943), 1, anon_sym_LBRACK, + ACTIONS(4945), 1, anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5696), 1, + anon_sym_RBRACK, + ACTIONS(6449), 1, anon_sym_AMP_AMP, + ACTIONS(6451), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6453), 1, + anon_sym_GT_GT, + ACTIONS(6457), 1, + anon_sym_AMP, + ACTIONS(6459), 1, anon_sym_CARET, + ACTIONS(6461), 1, + anon_sym_PIPE, + ACTIONS(6465), 1, anon_sym_PERCENT, + ACTIONS(6467), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6469), 1, + anon_sym_LT, + ACTIONS(6477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6479), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3125), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6447), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6455), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6463), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6471), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [99646] = 8, + [99652] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4334), 1, - anon_sym_QMARK, - ACTIONS(4349), 1, - anon_sym_EQ, - STATE(3276), 1, + ACTIONS(5753), 1, + anon_sym_LBRACK, + STATE(3126), 1, sym_comment, - ACTIONS(4352), 3, + ACTIONS(5306), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, + anon_sym_extends, + ACTIONS(5756), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5729), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(5731), 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, @@ -309594,23 +297134,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99707] = 7, + [99713] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3277), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6306), 1, + anon_sym_STAR_STAR, + ACTIONS(6515), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3127), 1, sym_comment, - ACTIONS(6090), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6092), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -309619,120 +297181,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(5569), 14, sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [99766] = 29, + [99796] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5409), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6275), 1, - anon_sym_LT, - ACTIONS(6400), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6330), 1, anon_sym_AMP_AMP, - ACTIONS(6404), 1, + ACTIONS(6332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, + anon_sym_GT_GT, + ACTIONS(6338), 1, anon_sym_AMP, - ACTIONS(6406), 1, + ACTIONS(6340), 1, anon_sym_CARET, - ACTIONS(6408), 1, + ACTIONS(6342), 1, anon_sym_PIPE, - STATE(2461), 1, + ACTIONS(6346), 1, + anon_sym_PERCENT, + ACTIONS(6348), 1, + anon_sym_STAR_STAR, + ACTIONS(6350), 1, + anon_sym_LT, + ACTIONS(6358), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6360), 1, + sym__ternary_qmark, + ACTIONS(6518), 1, + anon_sym_COLON, + STATE(2313), 1, sym_type_arguments, - STATE(3278), 1, + STATE(3128), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6261), 2, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6263), 2, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6267), 2, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6269), 2, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6410), 2, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6412), 2, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6277), 3, + ACTIONS(6352), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [99869] = 7, + [99909] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6508), 1, - sym__automatic_semicolon, - STATE(3279), 1, + STATE(3129), 1, sym_comment, - ACTIONS(2364), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2154), 13, + ACTIONS(6167), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6245), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -309746,12 +297305,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2158), 25, + ACTIONS(4242), 23, 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, @@ -309772,650 +297329,660 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [99928] = 34, + [99968] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5674), 1, - anon_sym_RBRACK, - ACTIONS(6359), 1, - anon_sym_AMP_AMP, - ACTIONS(6361), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6363), 1, - anon_sym_GT_GT, - ACTIONS(6367), 1, - anon_sym_AMP, - ACTIONS(6369), 1, - anon_sym_CARET, - ACTIONS(6371), 1, - anon_sym_PIPE, - ACTIONS(6375), 1, + ACTIONS(6304), 1, anon_sym_PERCENT, - ACTIONS(6377), 1, + ACTIONS(6306), 1, anon_sym_STAR_STAR, - ACTIONS(6379), 1, + ACTIONS(6515), 1, anon_sym_LT, - ACTIONS(6387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6389), 1, - sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3280), 1, + STATE(3130), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6353), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6355), 2, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6373), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6383), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6385), 2, + ACTIONS(5569), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6381), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [100041] = 19, + anon_sym_satisfies, + [100049] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6503), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3281), 1, + STATE(3131), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6261), 2, + ACTIONS(5805), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6269), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 15, + ACTIONS(5807), 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, - [100124] = 25, + [100104] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6275), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3282), 1, + STATE(3132), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6261), 2, + ACTIONS(6520), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6522), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4238), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6263), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6269), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6410), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6412), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6277), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 8, + ACTIONS(4242), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_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, - [100219] = 34, + [100163] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5231), 1, + anon_sym_RBRACE, + STATE(3133), 1, + sym_comment, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2454), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [100230] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5711), 1, + ACTIONS(5694), 1, anon_sym_RBRACK, - ACTIONS(6359), 1, + ACTIONS(6449), 1, anon_sym_AMP_AMP, - ACTIONS(6361), 1, + ACTIONS(6451), 1, anon_sym_PIPE_PIPE, - ACTIONS(6363), 1, + ACTIONS(6453), 1, anon_sym_GT_GT, - ACTIONS(6367), 1, + ACTIONS(6457), 1, anon_sym_AMP, - ACTIONS(6369), 1, + ACTIONS(6459), 1, anon_sym_CARET, - ACTIONS(6371), 1, + ACTIONS(6461), 1, anon_sym_PIPE, - ACTIONS(6375), 1, + ACTIONS(6465), 1, anon_sym_PERCENT, - ACTIONS(6377), 1, + ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6379), 1, + ACTIONS(6469), 1, anon_sym_LT, - ACTIONS(6387), 1, + ACTIONS(6477), 1, anon_sym_QMARK_QMARK, - ACTIONS(6389), 1, + ACTIONS(6479), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3283), 1, + STATE(3134), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6353), 2, + ACTIONS(6445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6355), 2, + ACTIONS(6447), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6455), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6373), 2, + ACTIONS(6463), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6383), 2, + ACTIONS(6473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6385), 2, + ACTIONS(6475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6381), 3, + ACTIONS(6471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100332] = 34, + [100343] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5231), 1, + anon_sym_RBRACE, + STATE(3135), 1, + sym_comment, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2452), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [100410] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5634), 1, - anon_sym_RBRACK, - ACTIONS(6359), 1, + ACTIONS(6330), 1, anon_sym_AMP_AMP, - ACTIONS(6361), 1, + ACTIONS(6332), 1, anon_sym_PIPE_PIPE, - ACTIONS(6363), 1, + ACTIONS(6334), 1, anon_sym_GT_GT, - ACTIONS(6367), 1, + ACTIONS(6338), 1, anon_sym_AMP, - ACTIONS(6369), 1, + ACTIONS(6340), 1, anon_sym_CARET, - ACTIONS(6371), 1, + ACTIONS(6342), 1, anon_sym_PIPE, - ACTIONS(6375), 1, + ACTIONS(6346), 1, anon_sym_PERCENT, - ACTIONS(6377), 1, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6379), 1, + ACTIONS(6350), 1, anon_sym_LT, - ACTIONS(6387), 1, + ACTIONS(6358), 1, anon_sym_QMARK_QMARK, - ACTIONS(6389), 1, + ACTIONS(6360), 1, sym__ternary_qmark, - STATE(2461), 1, + ACTIONS(6524), 1, + anon_sym_COLON, + STATE(2313), 1, sym_type_arguments, - STATE(3284), 1, + STATE(3136), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6355), 2, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6373), 2, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6383), 2, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6385), 2, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6381), 3, + ACTIONS(6352), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100445] = 34, + [100523] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(6526), 1, + sym__automatic_semicolon, + STATE(3137), 1, + sym_comment, + ACTIONS(2366), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2154), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2158), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4915), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6285), 1, anon_sym_AMP_AMP, - ACTIONS(6287), 1, anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, - anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_AMP, - ACTIONS(6295), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6297), 1, - anon_sym_PIPE, - ACTIONS(6301), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, - anon_sym_LT, - ACTIONS(6313), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, - sym__ternary_qmark, - ACTIONS(6510), 1, - anon_sym_COLON, - STATE(2461), 1, - sym_type_arguments, - STATE(3285), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6291), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6299), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6309), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6311), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6307), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [100558] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [100582] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6275), 1, - anon_sym_LT, - ACTIONS(6404), 1, - anon_sym_AMP, - STATE(2461), 1, - sym_type_arguments, - STATE(3286), 1, + ACTIONS(6528), 1, + sym__automatic_semicolon, + STATE(3138), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5409), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6261), 2, + ACTIONS(2352), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2214), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6263), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6269), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6410), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6412), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6277), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 8, + ACTIONS(2218), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_of, + anon_sym_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, - [100655] = 34, + [100641] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5645), 1, - anon_sym_RBRACK, - ACTIONS(6359), 1, - anon_sym_AMP_AMP, - ACTIONS(6361), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6363), 1, + ACTIONS(6453), 1, anon_sym_GT_GT, - ACTIONS(6367), 1, - anon_sym_AMP, - ACTIONS(6369), 1, - anon_sym_CARET, - ACTIONS(6371), 1, - anon_sym_PIPE, - ACTIONS(6375), 1, + ACTIONS(6465), 1, anon_sym_PERCENT, - ACTIONS(6377), 1, + ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6379), 1, + ACTIONS(6469), 1, anon_sym_LT, - ACTIONS(6387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6389), 1, - sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3287), 1, + STATE(3139), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6353), 2, + ACTIONS(6445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6355), 2, + ACTIONS(6447), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6455), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6373), 2, + ACTIONS(6463), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6381), 3, + ACTIONS(6471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [100768] = 15, + ACTIONS(5571), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5569), 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, + [100732] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6337), 1, + ACTIONS(6093), 1, anon_sym_STAR, - ACTIONS(6512), 1, - anon_sym_async, - STATE(3288), 1, + ACTIONS(6176), 1, + anon_sym_RBRACE, + STATE(3140), 1, sym_comment, - STATE(4046), 1, + STATE(4672), 1, sym__property_name, - ACTIONS(3991), 2, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6514), 2, + ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(985), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4492), 20, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -310432,14 +297999,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [100843] = 5, + [100813] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3289), 1, + STATE(3141), 1, sym_comment, - ACTIONS(5807), 13, + ACTIONS(6520), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6522), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -310453,15 +298027,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5809), 28, - sym__automatic_semicolon, + ACTIONS(4242), 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, @@ -310482,14 +298051,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100898] = 5, + [100872] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3290), 1, + STATE(3142), 1, sym_comment, - ACTIONS(5701), 13, + ACTIONS(6167), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6169), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -310503,15 +298079,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5703), 28, - sym__automatic_semicolon, + ACTIONS(4242), 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, @@ -310532,22 +298103,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [100953] = 8, + [100931] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4286), 1, - anon_sym_EQ, - ACTIONS(4438), 1, - anon_sym_in, - ACTIONS(4441), 1, - anon_sym_of, - STATE(3291), 1, + STATE(3143), 1, sym_comment, - ACTIONS(4218), 12, + ACTIONS(6520), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6522), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -310558,13 +298131,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 26, - sym__automatic_semicolon, + ACTIONS(4242), 23, 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, @@ -310585,40 +298155,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101014] = 8, + [100990] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5766), 1, - anon_sym_LBRACK, - STATE(3292), 1, + STATE(3144), 1, sym_comment, - ACTIONS(5321), 2, + ACTIONS(6530), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(6532), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5769), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5762), 10, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5764), 25, + ACTIONS(4242), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -310638,104 +298207,176 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101075] = 18, + [101049] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6271), 1, + ACTIONS(6292), 1, + anon_sym_GT_GT, + ACTIONS(6296), 1, + anon_sym_AMP, + ACTIONS(6298), 1, + anon_sym_CARET, + ACTIONS(6304), 1, anon_sym_PERCENT, - ACTIONS(6273), 1, + ACTIONS(6306), 1, anon_sym_STAR_STAR, - ACTIONS(6503), 1, + ACTIONS(6308), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3293), 1, + STATE(3145), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6261), 2, + ACTIONS(5571), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 10, - anon_sym_BANG, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6294), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6302), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6312), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 15, + ACTIONS(6314), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6310), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5569), 7, 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, - [101156] = 9, + [101148] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6516), 1, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6093), 1, + anon_sym_STAR, + ACTIONS(6176), 1, + anon_sym_RBRACE, + STATE(3146), 1, + sym_comment, + STATE(4672), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 4, anon_sym_LPAREN, - ACTIONS(6519), 1, anon_sym_COLON, - ACTIONS(6521), 1, anon_sym_LT, - ACTIONS(6524), 1, anon_sym_QMARK, - STATE(3294), 1, + ACTIONS(2989), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [101231] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5858), 1, + anon_sym_LBRACK, + STATE(3147), 1, sym_comment, - ACTIONS(5716), 12, + ACTIONS(4975), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5861), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4238), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5718), 25, - sym__automatic_semicolon, + ACTIONS(4242), 25, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -310755,85 +298396,214 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101219] = 19, + [101292] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5381), 1, + anon_sym_RBRACE, + STATE(3148), 1, + sym_comment, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2454), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [101359] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(6534), 1, + anon_sym_STAR, + ACTIONS(6536), 1, + anon_sym_async, + STATE(3149), 1, + sym_comment, + STATE(3971), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6538), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 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(4496), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [101434] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(6273), 1, + ACTIONS(6330), 1, + anon_sym_AMP_AMP, + ACTIONS(6332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, + anon_sym_GT_GT, + ACTIONS(6338), 1, + anon_sym_AMP, + ACTIONS(6340), 1, + anon_sym_CARET, + ACTIONS(6342), 1, + anon_sym_PIPE, + ACTIONS(6346), 1, + anon_sym_PERCENT, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6503), 1, + ACTIONS(6350), 1, anon_sym_LT, - STATE(2461), 1, + ACTIONS(6358), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6360), 1, + sym__ternary_qmark, + ACTIONS(6540), 1, + anon_sym_COLON, + STATE(2313), 1, sym_type_arguments, - STATE(3295), 1, + STATE(3150), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 11, + ACTIONS(6324), 2, anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6336), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 14, - sym__ternary_qmark, - anon_sym_of, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6352), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - [101302] = 7, + [101547] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6526), 1, + ACTIONS(6542), 1, sym__automatic_semicolon, - STATE(3296), 1, + STATE(3151), 1, sym_comment, - ACTIONS(2416), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2290), 13, + ACTIONS(2376), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2266), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -310847,10 +298617,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2294), 23, + ACTIONS(2270), 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, @@ -310871,115 +298643,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101361] = 5, + [101606] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3297), 1, - sym_comment, - ACTIONS(5792), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5794), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4921), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4943), 1, anon_sym_LBRACK, + ACTIONS(4945), 1, anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5698), 1, + anon_sym_COLON, + ACTIONS(6330), 1, anon_sym_AMP_AMP, + ACTIONS(6332), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6334), 1, + anon_sym_GT_GT, + ACTIONS(6338), 1, + anon_sym_AMP, + ACTIONS(6340), 1, anon_sym_CARET, + ACTIONS(6342), 1, + anon_sym_PIPE, + ACTIONS(6346), 1, anon_sym_PERCENT, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6350), 1, + anon_sym_LT, + ACTIONS(6358), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6360), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3152), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [101416] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4286), 1, - anon_sym_EQ, - STATE(3298), 1, - sym_comment, - ACTIONS(4218), 13, + ACTIONS(6324), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6336), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 27, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6352), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [101473] = 5, + [101719] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3299), 1, + ACTIONS(6544), 1, + sym__automatic_semicolon, + STATE(3153), 1, sym_comment, - ACTIONS(5705), 13, + ACTIONS(2380), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2274), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -310993,14 +298748,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5687), 28, - sym__automatic_semicolon, + ACTIONS(2278), 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_DOT, @@ -311022,89 +298774,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101528] = 6, + [101778] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3300), 1, + ACTIONS(5366), 1, + anon_sym_QMARK, + STATE(3154), 1, sym_comment, - ACTIONS(2412), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2240), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5368), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5616), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2244), 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, - [101585] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3301), 1, - sym_comment, - ACTIONS(2408), 5, - sym__automatic_semicolon, + ACTIONS(5613), 3, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2210), 13, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4238), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2214), 23, + ACTIONS(4242), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -311124,275 +298828,260 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [101642] = 34, + [101841] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5647), 1, - anon_sym_RBRACK, - ACTIONS(6359), 1, - anon_sym_AMP_AMP, - ACTIONS(6361), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6363), 1, + ACTIONS(6292), 1, anon_sym_GT_GT, - ACTIONS(6367), 1, - anon_sym_AMP, - ACTIONS(6369), 1, - anon_sym_CARET, - ACTIONS(6371), 1, - anon_sym_PIPE, - ACTIONS(6375), 1, + ACTIONS(6304), 1, anon_sym_PERCENT, - ACTIONS(6377), 1, + ACTIONS(6306), 1, anon_sym_STAR_STAR, - ACTIONS(6379), 1, + ACTIONS(6308), 1, anon_sym_LT, - ACTIONS(6387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6389), 1, - sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3302), 1, + STATE(3155), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6353), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6355), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6294), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6373), 2, + ACTIONS(6302), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6383), 2, + ACTIONS(6312), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6385), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6381), 3, + ACTIONS(5571), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6310), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101755] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5569), 8, + sym__ternary_qmark, anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5689), 1, - anon_sym_RBRACK, - ACTIONS(6359), 1, + anon_sym_of, anon_sym_AMP_AMP, - ACTIONS(6361), 1, anon_sym_PIPE_PIPE, - ACTIONS(6363), 1, - anon_sym_GT_GT, - ACTIONS(6367), 1, - anon_sym_AMP, - ACTIONS(6369), 1, anon_sym_CARET, - ACTIONS(6371), 1, - anon_sym_PIPE, - ACTIONS(6375), 1, - anon_sym_PERCENT, - ACTIONS(6377), 1, - anon_sym_STAR_STAR, - ACTIONS(6379), 1, - anon_sym_LT, - ACTIONS(6387), 1, anon_sym_QMARK_QMARK, - ACTIONS(6389), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3303), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6353), 2, + anon_sym_satisfies, + [101936] = 24, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(223), 1, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6355), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6373), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [101868] = 34, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2476), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6548), 1, + anon_sym_COMMA, + ACTIONS(6550), 1, + anon_sym_RBRACE, + ACTIONS(6552), 1, + anon_sym_async, + ACTIONS(6554), 1, + anon_sym_static, + ACTIONS(6556), 1, + anon_sym_readonly, + ACTIONS(6562), 1, + anon_sym_override, + STATE(3156), 1, + sym_comment, + STATE(3593), 1, + sym_accessibility_modifier, + STATE(3621), 1, + sym_override_modifier, + STATE(4447), 1, + sym__property_name, + STATE(6098), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6558), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(6560), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6109), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(6546), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102029] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5687), 1, + ACTIONS(5626), 1, anon_sym_RBRACK, - ACTIONS(6359), 1, + ACTIONS(6449), 1, anon_sym_AMP_AMP, - ACTIONS(6361), 1, + ACTIONS(6451), 1, anon_sym_PIPE_PIPE, - ACTIONS(6363), 1, + ACTIONS(6453), 1, anon_sym_GT_GT, - ACTIONS(6367), 1, + ACTIONS(6457), 1, anon_sym_AMP, - ACTIONS(6369), 1, + ACTIONS(6459), 1, anon_sym_CARET, - ACTIONS(6371), 1, + ACTIONS(6461), 1, anon_sym_PIPE, - ACTIONS(6375), 1, + ACTIONS(6465), 1, anon_sym_PERCENT, - ACTIONS(6377), 1, + ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6379), 1, + ACTIONS(6469), 1, anon_sym_LT, - ACTIONS(6387), 1, + ACTIONS(6477), 1, anon_sym_QMARK_QMARK, - ACTIONS(6389), 1, + ACTIONS(6479), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3304), 1, + STATE(3157), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6353), 2, + ACTIONS(6445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6355), 2, + ACTIONS(6447), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6455), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6373), 2, + ACTIONS(6463), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6383), 2, + ACTIONS(6473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6385), 2, + ACTIONS(6475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6381), 3, + ACTIONS(6471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [101981] = 6, + [102142] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4314), 1, + ACTIONS(4316), 1, anon_sym_EQ, - STATE(3305), 1, + ACTIONS(4391), 1, + anon_sym_COLON, + ACTIONS(5613), 1, + anon_sym_LBRACK, + STATE(3158), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(5616), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5368), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4238), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 27, - sym__automatic_semicolon, + ACTIONS(4242), 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, @@ -311412,164 +299101,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102038] = 30, + [102207] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(6405), 1, + anon_sym_STAR, + ACTIONS(6427), 1, + anon_sym_async, + STATE(3159), 1, + sym_comment, + STATE(3913), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6429), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 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(4496), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102282] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5409), 1, + ACTIONS(6304), 1, + anon_sym_PERCENT, + ACTIONS(6306), 1, + anon_sym_STAR_STAR, + ACTIONS(6515), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3160), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6302), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 8, anon_sym_BANG, - ACTIONS(6359), 1, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5569), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_of, anon_sym_AMP_AMP, - ACTIONS(6361), 1, anon_sym_PIPE_PIPE, - ACTIONS(6363), 1, + 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, + [102365] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(6564), 1, + anon_sym_STAR, + ACTIONS(6566), 1, + anon_sym_async, + STATE(3161), 1, + sym_comment, + STATE(3926), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6568), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 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(4496), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102440] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5571), 1, + anon_sym_BANG, + ACTIONS(6288), 1, + anon_sym_AMP_AMP, + ACTIONS(6292), 1, anon_sym_GT_GT, - ACTIONS(6367), 1, + ACTIONS(6296), 1, anon_sym_AMP, - ACTIONS(6369), 1, + ACTIONS(6298), 1, anon_sym_CARET, - ACTIONS(6371), 1, + ACTIONS(6300), 1, anon_sym_PIPE, - ACTIONS(6375), 1, + ACTIONS(6304), 1, anon_sym_PERCENT, - ACTIONS(6377), 1, + ACTIONS(6306), 1, anon_sym_STAR_STAR, - ACTIONS(6379), 1, + ACTIONS(6308), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3306), 1, + STATE(3162), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6353), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6355), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6294), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6373), 2, + ACTIONS(6302), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6383), 2, + ACTIONS(6312), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6385), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6381), 3, + ACTIONS(6310), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 5, + ACTIONS(5569), 6, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_of, + anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [102143] = 23, + [102543] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6363), 1, + ACTIONS(5571), 1, + anon_sym_BANG, + ACTIONS(6292), 1, anon_sym_GT_GT, - ACTIONS(6375), 1, + ACTIONS(6296), 1, + anon_sym_AMP, + ACTIONS(6298), 1, + anon_sym_CARET, + ACTIONS(6300), 1, + anon_sym_PIPE, + ACTIONS(6304), 1, anon_sym_PERCENT, - ACTIONS(6377), 1, + ACTIONS(6306), 1, anon_sym_STAR_STAR, - ACTIONS(6379), 1, + ACTIONS(6308), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3307), 1, + STATE(3163), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6353), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6355), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6294), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6373), 2, + ACTIONS(6302), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2759), 2, + ACTIONS(6312), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6314), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6381), 3, + ACTIONS(6310), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5409), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5407), 10, + ACTIONS(5569), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + 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, - [102234] = 7, + [102644] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3308), 1, + STATE(3164), 1, sym_comment, - ACTIONS(6528), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6530), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, + ACTIONS(2282), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -311583,10 +299453,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(2286), 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, @@ -311607,73 +299482,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102293] = 7, + [102699] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3309), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6570), 1, + anon_sym_STAR, + STATE(3165), 1, sym_comment, - ACTIONS(6528), 2, + STATE(4695), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6572), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 8, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6530), 3, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, - anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4222), 23, - sym__ternary_qmark, - anon_sym_as, + anon_sym_QMARK, + ACTIONS(2989), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [102772] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, anon_sym_LPAREN, + ACTIONS(4943), 1, anon_sym_LBRACK, + ACTIONS(4945), 1, anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(6306), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(6515), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3166), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [102352] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3310), 1, - sym_comment, - ACTIONS(6528), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6530), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -311684,120 +299583,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(5569), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [102411] = 34, + [102849] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(6359), 1, + ACTIONS(6330), 1, anon_sym_AMP_AMP, - ACTIONS(6361), 1, + ACTIONS(6332), 1, anon_sym_PIPE_PIPE, - ACTIONS(6363), 1, + ACTIONS(6334), 1, anon_sym_GT_GT, - ACTIONS(6367), 1, + ACTIONS(6338), 1, anon_sym_AMP, - ACTIONS(6369), 1, + ACTIONS(6340), 1, anon_sym_CARET, - ACTIONS(6371), 1, + ACTIONS(6342), 1, anon_sym_PIPE, - ACTIONS(6375), 1, + ACTIONS(6346), 1, anon_sym_PERCENT, - ACTIONS(6377), 1, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6379), 1, + ACTIONS(6350), 1, anon_sym_LT, - ACTIONS(6387), 1, + ACTIONS(6358), 1, anon_sym_QMARK_QMARK, - ACTIONS(6389), 1, + ACTIONS(6360), 1, sym__ternary_qmark, - ACTIONS(6532), 1, - anon_sym_RBRACK, - STATE(2461), 1, + ACTIONS(6574), 1, + anon_sym_COLON, + STATE(2313), 1, sym_type_arguments, - STATE(3311), 1, + STATE(3167), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6355), 2, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6373), 2, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6383), 2, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6385), 2, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6381), 3, + ACTIONS(6352), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [102524] = 5, + [102962] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3312), 1, + STATE(3168), 1, sym_comment, - ACTIONS(5818), 13, + ACTIONS(5830), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -311811,7 +299702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5820), 28, + ACTIONS(5832), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -311840,211 +299731,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [102579] = 19, + [103017] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6377), 1, + ACTIONS(6292), 1, + anon_sym_GT_GT, + ACTIONS(6304), 1, + anon_sym_PERCENT, + ACTIONS(6306), 1, anon_sym_STAR_STAR, - ACTIONS(6534), 1, + ACTIONS(6308), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3313), 1, + STATE(3169), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 11, + ACTIONS(6284), 2, 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(5407), 14, - sym__ternary_qmark, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6294), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [102662] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3314), 1, - sym_comment, - ACTIONS(6537), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6539), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, - anon_sym_STAR, + ACTIONS(6302), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(5569), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_of, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [102721] = 10, + [103104] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4288), 1, - anon_sym_EQ, - ACTIONS(5167), 1, - anon_sym_QMARK, - ACTIONS(5779), 1, - anon_sym_LBRACK, - STATE(3315), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(6308), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3170), 1, sym_comment, - ACTIONS(5782), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5169), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4218), 11, + STATE(5791), 1, + sym_optional_chain, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5479), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4222), 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, - [102786] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4363), 1, - anon_sym_EQ, - ACTIONS(5169), 1, - anon_sym_extends, - STATE(3316), 1, - sym_comment, - ACTIONS(5779), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5782), 3, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4218), 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(4222), 24, + ACTIONS(5481), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_of, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -312062,441 +299852,392 @@ 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, - [102849] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(162), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(3973), 1, - anon_sym_LBRACE, - ACTIONS(4682), 1, - anon_sym_LBRACK, - STATE(3317), 1, - sym_comment, - STATE(7346), 1, - sym__property_name, - STATE(7382), 1, - sym__destructuring_pattern, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6543), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4344), 2, - sym_object_pattern, - sym_array_pattern, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - STATE(6695), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - ACTIONS(6541), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [102926] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(6337), 1, - anon_sym_STAR, - ACTIONS(6512), 1, - anon_sym_async, - STATE(3318), 1, - sym_comment, - STATE(4048), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6514), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4492), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [103001] = 30, + [103171] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5409), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6275), 1, - anon_sym_LT, - ACTIONS(6400), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5624), 1, + anon_sym_RBRACK, + ACTIONS(6449), 1, anon_sym_AMP_AMP, - ACTIONS(6402), 1, + ACTIONS(6451), 1, anon_sym_PIPE_PIPE, - ACTIONS(6404), 1, + ACTIONS(6453), 1, + anon_sym_GT_GT, + ACTIONS(6457), 1, anon_sym_AMP, - ACTIONS(6406), 1, + ACTIONS(6459), 1, anon_sym_CARET, - ACTIONS(6408), 1, + ACTIONS(6461), 1, anon_sym_PIPE, - STATE(2461), 1, + ACTIONS(6465), 1, + anon_sym_PERCENT, + ACTIONS(6467), 1, + anon_sym_STAR_STAR, + ACTIONS(6469), 1, + anon_sym_LT, + ACTIONS(6477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6479), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(3319), 1, + STATE(3171), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6261), 2, + ACTIONS(6445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6263), 2, + ACTIONS(6447), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6267), 2, + ACTIONS(6455), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6269), 2, + ACTIONS(6463), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6410), 2, + ACTIONS(6473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6412), 2, + ACTIONS(6475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6277), 3, + ACTIONS(6471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 5, - sym__ternary_qmark, - anon_sym_as, - anon_sym_of, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [103106] = 34, + [103284] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5687), 1, + ACTIONS(5487), 1, anon_sym_of, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6275), 1, - anon_sym_LT, - ACTIONS(6400), 1, + ACTIONS(6288), 1, anon_sym_AMP_AMP, - ACTIONS(6402), 1, + ACTIONS(6290), 1, anon_sym_PIPE_PIPE, - ACTIONS(6404), 1, + ACTIONS(6292), 1, + anon_sym_GT_GT, + ACTIONS(6296), 1, anon_sym_AMP, - ACTIONS(6406), 1, + ACTIONS(6298), 1, anon_sym_CARET, - ACTIONS(6408), 1, + ACTIONS(6300), 1, anon_sym_PIPE, - ACTIONS(6414), 1, + ACTIONS(6304), 1, + anon_sym_PERCENT, + ACTIONS(6306), 1, + anon_sym_STAR_STAR, + ACTIONS(6308), 1, + anon_sym_LT, + ACTIONS(6316), 1, anon_sym_QMARK_QMARK, - ACTIONS(6416), 1, + ACTIONS(6318), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3320), 1, + STATE(3172), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6261), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6263), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6267), 2, + ACTIONS(6294), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6269), 2, + ACTIONS(6302), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6410), 2, + ACTIONS(6312), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6412), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6277), 3, + ACTIONS(6310), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [103219] = 34, + [103397] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5674), 1, + ACTIONS(5521), 1, anon_sym_of, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6275), 1, - anon_sym_LT, - ACTIONS(6400), 1, + ACTIONS(6288), 1, anon_sym_AMP_AMP, - ACTIONS(6402), 1, + ACTIONS(6290), 1, anon_sym_PIPE_PIPE, - ACTIONS(6404), 1, + ACTIONS(6292), 1, + anon_sym_GT_GT, + ACTIONS(6296), 1, anon_sym_AMP, - ACTIONS(6406), 1, + ACTIONS(6298), 1, anon_sym_CARET, - ACTIONS(6408), 1, + ACTIONS(6300), 1, anon_sym_PIPE, - ACTIONS(6414), 1, + ACTIONS(6304), 1, + anon_sym_PERCENT, + ACTIONS(6306), 1, + anon_sym_STAR_STAR, + ACTIONS(6308), 1, + anon_sym_LT, + ACTIONS(6316), 1, anon_sym_QMARK_QMARK, - ACTIONS(6416), 1, + ACTIONS(6318), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3321), 1, + STATE(3173), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6261), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6263), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6267), 2, + ACTIONS(6294), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6269), 2, + ACTIONS(6302), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6410), 2, + ACTIONS(6312), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6412), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6277), 3, + ACTIONS(6310), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [103332] = 18, + [103510] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(6375), 1, - anon_sym_PERCENT, - ACTIONS(6377), 1, - anon_sym_STAR_STAR, - ACTIONS(6534), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3322), 1, + ACTIONS(5575), 1, + anon_sym_EQ, + ACTIONS(5964), 1, + anon_sym_of, + ACTIONS(6576), 1, + anon_sym_in, + STATE(3174), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6353), 2, + ACTIONS(5573), 12, anon_sym_STAR, - anon_sym_SLASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 10, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 15, + ACTIONS(5577), 26, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [103413] = 6, + [103571] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6428), 1, - sym_regex_flags, - STATE(3323), 1, - sym_comment, - ACTIONS(6084), 17, - anon_sym_STAR, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, anon_sym_as, + ACTIONS(5075), 1, anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5527), 1, + anon_sym_of, + ACTIONS(6288), 1, + anon_sym_AMP_AMP, + ACTIONS(6290), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6292), 1, + anon_sym_GT_GT, + ACTIONS(6296), 1, + anon_sym_AMP, + ACTIONS(6298), 1, + anon_sym_CARET, + ACTIONS(6300), 1, + anon_sym_PIPE, + ACTIONS(6304), 1, + anon_sym_PERCENT, + ACTIONS(6306), 1, + anon_sym_STAR_STAR, + ACTIONS(6308), 1, + anon_sym_LT, + ACTIONS(6316), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6318), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3175), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6286), 2, anon_sym_in, + anon_sym_GT, + ACTIONS(6294), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6302), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6312), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6314), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6310), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [103684] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2146), 1, + anon_sym_EQ, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5970), 1, anon_sym_of, + ACTIONS(6579), 1, + anon_sym_in, + STATE(3176), 1, + sym_comment, + ACTIONS(2144), 12, + anon_sym_STAR, + anon_sym_BANG, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -312507,11 +300248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - ACTIONS(6086), 23, + ACTIONS(2150), 26, sym__automatic_semicolon, sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -312530,132 +300270,137 @@ 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, - [103470] = 34, + anon_sym_satisfies, + [103745] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5689), 1, + ACTIONS(5525), 1, anon_sym_of, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6275), 1, - anon_sym_LT, - ACTIONS(6400), 1, + ACTIONS(6288), 1, anon_sym_AMP_AMP, - ACTIONS(6402), 1, + ACTIONS(6290), 1, anon_sym_PIPE_PIPE, - ACTIONS(6404), 1, + ACTIONS(6292), 1, + anon_sym_GT_GT, + ACTIONS(6296), 1, anon_sym_AMP, - ACTIONS(6406), 1, + ACTIONS(6298), 1, anon_sym_CARET, - ACTIONS(6408), 1, + ACTIONS(6300), 1, anon_sym_PIPE, - ACTIONS(6414), 1, + ACTIONS(6304), 1, + anon_sym_PERCENT, + ACTIONS(6306), 1, + anon_sym_STAR_STAR, + ACTIONS(6308), 1, + anon_sym_LT, + ACTIONS(6316), 1, anon_sym_QMARK_QMARK, - ACTIONS(6416), 1, + ACTIONS(6318), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3324), 1, + STATE(3177), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6261), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6263), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6267), 2, + ACTIONS(6294), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6269), 2, + ACTIONS(6302), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6410), 2, + ACTIONS(6312), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6412), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6277), 3, + ACTIONS(6310), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [103583] = 15, + [103858] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6118), 1, + ACTIONS(6093), 1, anon_sym_STAR, - ACTIONS(6120), 1, - anon_sym_async, - STATE(3325), 1, + ACTIONS(6133), 1, + anon_sym_RBRACE, + STATE(3178), 1, sym_comment, - STATE(4069), 1, + STATE(4672), 1, sym__property_name, - ACTIONS(3991), 2, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6124), 2, + ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(985), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4492), 20, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -312672,20 +300417,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103658] = 6, + [103939] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3326), 1, + STATE(3179), 1, sym_comment, - ACTIONS(2350), 5, + ACTIONS(2310), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2314), 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_PIPE_RBRACE, - ACTIONS(2178), 13, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [103994] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3180), 1, + sym_comment, + ACTIONS(2294), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -312699,10 +300488,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2180), 23, + ACTIONS(2298), 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, @@ -312723,14 +300517,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103715] = 5, + [104049] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3327), 1, + ACTIONS(5304), 1, + anon_sym_QMARK, + STATE(3181), 1, + sym_comment, + ACTIONS(5306), 2, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5756), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5753), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(5729), 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(5731), 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, + [104112] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(6582), 1, + sym__automatic_semicolon, + STATE(3182), 1, sym_comment, - ACTIONS(5859), 13, + ACTIONS(2388), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2294), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -312744,14 +300597,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5861), 28, - sym__automatic_semicolon, + ACTIONS(2298), 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_DOT, @@ -312773,37 +300623,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103770] = 5, + [104171] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3328), 1, + STATE(3183), 1, + sym_comment, + ACTIONS(2348), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2206), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2210), 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, + [104228] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4290), 1, + anon_sym_EQ, + ACTIONS(5366), 1, + anon_sym_QMARK, + ACTIONS(5613), 1, + anon_sym_LBRACK, + STATE(3184), 1, sym_comment, - ACTIONS(5357), 13, + ACTIONS(5616), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5368), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4238), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5359), 28, - sym__automatic_semicolon, + ACTIONS(4242), 22, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -312823,49 +300729,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [103825] = 14, + [104293] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6144), 1, + ACTIONS(6093), 1, anon_sym_STAR, - STATE(3329), 1, + ACTIONS(6133), 1, + anon_sym_RBRACE, + STATE(3185), 1, sym_comment, - STATE(4826), 1, + STATE(4672), 1, sym__property_name, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6545), 2, + ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(985), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 21, + ACTIONS(2989), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -312882,164 +300793,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [103898] = 7, + [104376] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3330), 1, - sym_comment, - ACTIONS(6547), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6549), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4222), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(4921), 1, anon_sym_LPAREN, + ACTIONS(4943), 1, anon_sym_LBRACK, + ACTIONS(4945), 1, anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5475), 1, + anon_sym_COLON, + ACTIONS(6330), 1, anon_sym_AMP_AMP, + ACTIONS(6332), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [103957] = 27, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(6363), 1, + ACTIONS(6334), 1, anon_sym_GT_GT, - ACTIONS(6367), 1, + ACTIONS(6338), 1, anon_sym_AMP, - ACTIONS(6369), 1, + ACTIONS(6340), 1, anon_sym_CARET, - ACTIONS(6375), 1, + ACTIONS(6342), 1, + anon_sym_PIPE, + ACTIONS(6346), 1, anon_sym_PERCENT, - ACTIONS(6377), 1, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6379), 1, + ACTIONS(6350), 1, anon_sym_LT, - STATE(2461), 1, + ACTIONS(6358), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6360), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(3331), 1, + STATE(3186), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5409), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6355), 2, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6373), 2, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6383), 2, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6385), 2, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6381), 3, + ACTIONS(6352), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 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, - [104056] = 8, + [104489] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5779), 1, - anon_sym_LBRACK, - STATE(3332), 1, + STATE(3187), 1, sym_comment, - ACTIONS(5169), 2, + ACTIONS(2344), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5782), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 10, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2190), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 25, + ACTIONS(2194), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -313059,50 +300923,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104117] = 15, + [104546] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6337), 1, + ACTIONS(6122), 1, anon_sym_STAR, - ACTIONS(6512), 1, - anon_sym_async, - STATE(3333), 1, + STATE(3188), 1, sym_comment, - STATE(4049), 1, + STATE(4728), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6514), 2, + ACTIONS(6584), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, + ACTIONS(985), 8, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4492), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -313119,106 +300982,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104192] = 26, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(6363), 1, - anon_sym_GT_GT, - ACTIONS(6367), 1, - anon_sym_AMP, - ACTIONS(6375), 1, - anon_sym_PERCENT, - ACTIONS(6377), 1, - anon_sym_STAR_STAR, - ACTIONS(6379), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3334), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5409), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6355), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6373), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 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, - [104289] = 14, + [104619] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6458), 1, + ACTIONS(6122), 1, anon_sym_STAR, - STATE(3335), 1, + ACTIONS(6124), 1, + anon_sym_async, + STATE(3189), 1, sym_comment, - STATE(4904), 1, + STATE(3978), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6551), 2, + ACTIONS(6128), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -313227,12 +301021,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2989), 21, + ACTIONS(4496), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -313249,17 +301042,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104362] = 5, + [104694] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3336), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + ACTIONS(4442), 1, + anon_sym_in, + ACTIONS(4445), 1, + anon_sym_of, + STATE(3190), 1, sym_comment, - ACTIONS(2178), 13, + ACTIONS(4238), 12, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -313270,14 +301068,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2180), 28, + ACTIONS(4242), 26, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -313299,203 +301095,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104417] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [104755] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(6586), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(6553), 1, - anon_sym_STAR, - ACTIONS(6555), 1, - anon_sym_async, - STATE(3337), 1, + STATE(3191), 1, sym_comment, - STATE(4050), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6557), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(2428), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2282), 13, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_in, + anon_sym_GT, + 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, - ACTIONS(4492), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [104492] = 25, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2286), 25, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4915), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4917), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, anon_sym_QMARK_DOT, - ACTIONS(6363), 1, - anon_sym_GT_GT, - ACTIONS(6375), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6377), 1, anon_sym_STAR_STAR, - ACTIONS(6379), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3338), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6353), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [104814] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3192), 1, + sym_comment, + ACTIONS(5308), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5310), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4238), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6355), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6373), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6383), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 8, + ACTIONS(4242), 24, sym__ternary_qmark, anon_sym_as, - anon_sym_RBRACK, + 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, - [104587] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6553), 1, - anon_sym_STAR, - STATE(3339), 1, - sym_comment, - STATE(4922), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6559), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [104660] = 5, + [104873] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3340), 1, + STATE(3193), 1, sym_comment, - ACTIONS(5625), 13, + ACTIONS(2428), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2282), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313509,15 +301226,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5627), 28, - sym__automatic_semicolon, + ACTIONS(2286), 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, @@ -313538,35 +301250,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [104715] = 14, + [104930] = 35, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5685), 1, + anon_sym_of, + ACTIONS(6286), 1, + anon_sym_GT, + ACTIONS(6288), 1, + anon_sym_AMP_AMP, + ACTIONS(6290), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6292), 1, + anon_sym_GT_GT, + ACTIONS(6296), 1, + anon_sym_AMP, + ACTIONS(6298), 1, + anon_sym_CARET, + ACTIONS(6300), 1, + anon_sym_PIPE, + ACTIONS(6304), 1, + anon_sym_PERCENT, + ACTIONS(6306), 1, + anon_sym_STAR_STAR, + ACTIONS(6308), 1, + anon_sym_LT, + ACTIONS(6316), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6318), 1, + sym__ternary_qmark, + ACTIONS(6588), 1, + anon_sym_in, + STATE(2313), 1, + sym_type_arguments, + STATE(3194), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6284), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6294), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6302), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6312), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6314), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6310), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [105045] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6442), 1, + ACTIONS(6431), 1, anon_sym_STAR, - STATE(3341), 1, + ACTIONS(6591), 1, + anon_sym_async, + STATE(3195), 1, sym_comment, - STATE(4915), 1, + STATE(3998), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6561), 2, + ACTIONS(6593), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -313575,12 +301369,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2989), 21, + ACTIONS(4496), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -313597,172 +301390,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [104788] = 34, + [105120] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5634), 1, - anon_sym_of, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6275), 1, - anon_sym_LT, - ACTIONS(6400), 1, + ACTIONS(6330), 1, anon_sym_AMP_AMP, - ACTIONS(6402), 1, + ACTIONS(6332), 1, anon_sym_PIPE_PIPE, - ACTIONS(6404), 1, + ACTIONS(6334), 1, + anon_sym_GT_GT, + ACTIONS(6338), 1, anon_sym_AMP, - ACTIONS(6406), 1, + ACTIONS(6340), 1, anon_sym_CARET, - ACTIONS(6408), 1, + ACTIONS(6342), 1, anon_sym_PIPE, - ACTIONS(6414), 1, + ACTIONS(6346), 1, + anon_sym_PERCENT, + ACTIONS(6348), 1, + anon_sym_STAR_STAR, + ACTIONS(6350), 1, + anon_sym_LT, + ACTIONS(6358), 1, anon_sym_QMARK_QMARK, - ACTIONS(6416), 1, + ACTIONS(6360), 1, sym__ternary_qmark, - STATE(2461), 1, + ACTIONS(6595), 1, + anon_sym_COLON, + STATE(2313), 1, sym_type_arguments, - STATE(3342), 1, + STATE(3196), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6261), 2, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6263), 2, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6267), 2, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6269), 2, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6410), 2, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6412), 2, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6277), 3, + ACTIONS(6352), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [104901] = 34, + [105233] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6285), 1, - anon_sym_AMP_AMP, - ACTIONS(6287), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, - anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_AMP, - ACTIONS(6295), 1, - anon_sym_CARET, - ACTIONS(6297), 1, - anon_sym_PIPE, - ACTIONS(6301), 1, - anon_sym_PERCENT, - ACTIONS(6303), 1, - anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6469), 1, anon_sym_LT, - ACTIONS(6313), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, - sym__ternary_qmark, - ACTIONS(6563), 1, - anon_sym_COLON, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3343), 1, + STATE(3197), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6291), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6299), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6309), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6307), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [105014] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3344), 1, - sym_comment, - ACTIONS(5618), 13, + ACTIONS(5479), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -313773,19 +301500,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5620), 28, - sym__automatic_semicolon, + ACTIONS(5481), 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_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -313803,177 +301524,121 @@ 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, - [105069] = 19, + [105300] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(6375), 1, - anon_sym_PERCENT, - ACTIONS(6377), 1, - anon_sym_STAR_STAR, - ACTIONS(6534), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3345), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6373), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 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(5407), 15, - sym__ternary_qmark, + ACTIONS(5071), 1, anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5487), 1, anon_sym_RBRACK, + ACTIONS(6449), 1, anon_sym_AMP_AMP, + ACTIONS(6451), 1, 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, - [105152] = 29, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5409), 1, - anon_sym_BANG, - ACTIONS(6359), 1, - anon_sym_AMP_AMP, - ACTIONS(6363), 1, + ACTIONS(6453), 1, anon_sym_GT_GT, - ACTIONS(6367), 1, + ACTIONS(6457), 1, anon_sym_AMP, - ACTIONS(6369), 1, + ACTIONS(6459), 1, anon_sym_CARET, - ACTIONS(6371), 1, + ACTIONS(6461), 1, anon_sym_PIPE, - ACTIONS(6375), 1, + ACTIONS(6465), 1, anon_sym_PERCENT, - ACTIONS(6377), 1, + ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6379), 1, + ACTIONS(6469), 1, anon_sym_LT, - STATE(2461), 1, + ACTIONS(6477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6479), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(3346), 1, + STATE(3198), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6353), 2, + ACTIONS(6445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6355), 2, + ACTIONS(6447), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6455), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6373), 2, + ACTIONS(6463), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6383), 2, + ACTIONS(6473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6385), 2, + ACTIONS(6475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6381), 3, + ACTIONS(6471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 6, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [105255] = 5, + [105413] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3347), 1, + ACTIONS(4332), 1, + anon_sym_EQ, + ACTIONS(5613), 1, + anon_sym_LBRACK, + STATE(3199), 1, sym_comment, - ACTIONS(2268), 13, + ACTIONS(5368), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5616), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4238), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2272), 28, + ACTIONS(4242), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -313993,14 +301658,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105310] = 5, + [105476] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3348), 1, + ACTIONS(6597), 1, + anon_sym_LPAREN, + ACTIONS(6600), 1, + anon_sym_COLON, + ACTIONS(6602), 1, + anon_sym_LT, + ACTIONS(6605), 1, + anon_sym_QMARK, + STATE(3200), 1, sym_comment, - ACTIONS(2196), 13, + ACTIONS(5665), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -314011,17 +301684,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2200), 28, + ACTIONS(5667), 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, @@ -314043,87 +301712,198 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105365] = 5, + [105539] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3349), 1, - sym_comment, - ACTIONS(2170), 13, - anon_sym_STAR, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5475), 1, + anon_sym_RBRACK, + ACTIONS(6449), 1, + anon_sym_AMP_AMP, + ACTIONS(6451), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6453), 1, anon_sym_GT_GT, + ACTIONS(6457), 1, anon_sym_AMP, + ACTIONS(6459), 1, + anon_sym_CARET, + ACTIONS(6461), 1, anon_sym_PIPE, + ACTIONS(6465), 1, + anon_sym_PERCENT, + ACTIONS(6467), 1, + anon_sym_STAR_STAR, + ACTIONS(6469), 1, + anon_sym_LT, + ACTIONS(6477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6479), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3201), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6447), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6455), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6463), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2174), 28, - sym__automatic_semicolon, - sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(6475), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6471), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [105652] = 34, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + ACTIONS(4943), 1, anon_sym_LBRACK, + ACTIONS(4945), 1, anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6449), 1, anon_sym_AMP_AMP, + ACTIONS(6451), 1, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(6453), 1, + anon_sym_GT_GT, + ACTIONS(6457), 1, + anon_sym_AMP, + ACTIONS(6459), 1, anon_sym_CARET, + ACTIONS(6461), 1, + anon_sym_PIPE, + ACTIONS(6465), 1, anon_sym_PERCENT, + ACTIONS(6467), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6469), 1, + anon_sym_LT, + ACTIONS(6477), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6479), 1, + sym__ternary_qmark, + ACTIONS(6607), 1, + anon_sym_RBRACK, + STATE(2313), 1, + sym_type_arguments, + STATE(3202), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6447), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6455), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6463), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6471), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [105420] = 5, + [105765] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3350), 1, + ACTIONS(5368), 1, + anon_sym_extends, + STATE(3203), 1, sym_comment, - ACTIONS(2282), 13, + ACTIONS(5616), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5613), 3, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4238), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2286), 28, - sym__automatic_semicolon, + ACTIONS(4242), 24, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -314143,149 +301923,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105475] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, - anon_sym_COMMA, - ACTIONS(5156), 1, - anon_sym_RBRACE, - STATE(3351), 1, - sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2474), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - 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, - [105542] = 34, + [105826] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6285), 1, - anon_sym_AMP_AMP, - ACTIONS(6287), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, + ACTIONS(6292), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, + ACTIONS(6296), 1, anon_sym_AMP, - ACTIONS(6295), 1, - anon_sym_CARET, - ACTIONS(6297), 1, - anon_sym_PIPE, - ACTIONS(6301), 1, + ACTIONS(6304), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6306), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6308), 1, anon_sym_LT, - ACTIONS(6313), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, - sym__ternary_qmark, - ACTIONS(6565), 1, - anon_sym_COLON, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3352), 1, + STATE(3204), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(5571), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, + ACTIONS(6294), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6299), 2, + ACTIONS(6302), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, + ACTIONS(6312), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6311), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6307), 3, + ACTIONS(6310), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [105655] = 5, + ACTIONS(5569), 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, + [105923] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3353), 1, + ACTIONS(4240), 1, + anon_sym_EQ, + STATE(3205), 1, sym_comment, - ACTIONS(2304), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -314299,16 +302017,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2308), 28, - sym__automatic_semicolon, + ACTIONS(4242), 27, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -314328,97 +302045,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [105710] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, - anon_sym_COMMA, - ACTIONS(5156), 1, - anon_sym_RBRACE, - STATE(3354), 1, - sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2470), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - 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, - [105777] = 9, + [105980] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4387), 1, - anon_sym_EQ, - ACTIONS(5779), 1, - anon_sym_LBRACK, - STATE(3355), 1, + STATE(3206), 1, sym_comment, - ACTIONS(5169), 2, + ACTIONS(5219), 3, anon_sym_COMMA, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(5782), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(5252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 24, - sym__automatic_semicolon, + ACTIONS(5254), 25, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -314427,104 +302085,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [105840] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5645), 1, - anon_sym_of, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6275), 1, - anon_sym_LT, - ACTIONS(6400), 1, - anon_sym_AMP_AMP, - ACTIONS(6402), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6404), 1, - anon_sym_AMP, - ACTIONS(6406), 1, - anon_sym_CARET, - ACTIONS(6408), 1, - anon_sym_PIPE, - ACTIONS(6414), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6416), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3356), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6261), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6263), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6267), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6269), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6410), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6412), 2, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6277), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [105953] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [106037] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3357), 1, + ACTIONS(6609), 1, + sym__automatic_semicolon, + STATE(3207), 1, sym_comment, - ACTIONS(5863), 13, + ACTIONS(2398), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2310), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -314538,14 +302122,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5865), 28, - sym__automatic_semicolon, + ACTIONS(2314), 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_DOT, @@ -314567,7 +302148,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106008] = 14, + [106096] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -314576,34 +302157,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6567), 1, + ACTIONS(6564), 1, anon_sym_STAR, - STATE(3358), 1, + STATE(3208), 1, sym_comment, - STATE(4974), 1, + STATE(4684), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6569), 2, + ACTIONS(6611), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, + 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(2989), 21, anon_sym_export, anon_sym_type, @@ -314626,14 +302207,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [106081] = 5, + [106169] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3359), 1, + STATE(3209), 1, sym_comment, - ACTIONS(5614), 13, + ACTIONS(5834), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -314647,7 +302228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5616), 28, + ACTIONS(5836), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -314676,95 +302257,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [106136] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(6571), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3360), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5785), 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(5787), 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, - [106209] = 15, + [106224] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6574), 1, + ACTIONS(6613), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3361), 1, + STATE(3210), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5463), 12, + ACTIONS(5593), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -314777,7 +302299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5465), 17, + ACTIONS(5595), 17, sym__ternary_qmark, anon_sym_as, anon_sym_of, @@ -314795,42 +302317,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [106284] = 18, + [106299] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(6577), 1, + ACTIONS(6616), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3362), 1, + STATE(3211), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5599), 11, + ACTIONS(5658), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -314842,7 +302364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5601), 15, + ACTIONS(5660), 15, sym__ternary_qmark, anon_sym_of, anon_sym_AMP_AMP, @@ -314858,115 +302380,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [106365] = 34, + [106380] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5556), 1, + ACTIONS(5652), 1, anon_sym_of, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6275), 1, - anon_sym_LT, - ACTIONS(6400), 1, + ACTIONS(6288), 1, anon_sym_AMP_AMP, - ACTIONS(6402), 1, + ACTIONS(6290), 1, anon_sym_PIPE_PIPE, - ACTIONS(6404), 1, + ACTIONS(6292), 1, + anon_sym_GT_GT, + ACTIONS(6296), 1, anon_sym_AMP, - ACTIONS(6406), 1, + ACTIONS(6298), 1, anon_sym_CARET, - ACTIONS(6408), 1, + ACTIONS(6300), 1, anon_sym_PIPE, - ACTIONS(6414), 1, + ACTIONS(6304), 1, + anon_sym_PERCENT, + ACTIONS(6306), 1, + anon_sym_STAR_STAR, + ACTIONS(6308), 1, + anon_sym_LT, + ACTIONS(6316), 1, anon_sym_QMARK_QMARK, - ACTIONS(6416), 1, + ACTIONS(6318), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3363), 1, + STATE(3212), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6261), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6263), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6267), 2, + ACTIONS(6294), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6269), 2, + ACTIONS(6302), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6410), 2, + ACTIONS(6312), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6412), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6277), 3, + ACTIONS(6310), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [106478] = 14, + [106493] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(6580), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3364), 1, + ACTIONS(6485), 1, + sym_regex_flags, + STATE(3213), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5785), 12, + ACTIONS(6148), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_of, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -314974,12 +302481,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5787), 19, + anon_sym_instanceof, + anon_sym_satisfies, + ACTIONS(6150), 23, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_as, - anon_sym_of, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -314992,95 +302507,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_satisfies, - [106551] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1055), 1, - anon_sym_RBRACE, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6104), 1, - anon_sym_STAR, - STATE(3365), 1, - sym_comment, - STATE(4902), 1, - sym__property_name, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(6287), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [106634] = 11, + anon_sym_BQUOTE, + [106550] = 14, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4989), 1, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(6305), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(6619), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3366), 1, + STATE(3214), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5800), 12, + ACTIONS(5678), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -315093,13 +302549,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5802), 22, + ACTIONS(5680), 19, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, - 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, @@ -315116,279 +302569,258 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_satisfies, - [106701] = 34, + [106623] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5724), 1, - anon_sym_COLON, - ACTIONS(6285), 1, + ACTIONS(5523), 1, + anon_sym_of, + ACTIONS(6288), 1, anon_sym_AMP_AMP, - ACTIONS(6287), 1, + ACTIONS(6290), 1, anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, + ACTIONS(6292), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, + ACTIONS(6296), 1, anon_sym_AMP, - ACTIONS(6295), 1, + ACTIONS(6298), 1, anon_sym_CARET, - ACTIONS(6297), 1, + ACTIONS(6300), 1, anon_sym_PIPE, - ACTIONS(6301), 1, + ACTIONS(6304), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6306), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6308), 1, anon_sym_LT, - ACTIONS(6313), 1, + ACTIONS(6316), 1, anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, + ACTIONS(6318), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3367), 1, + STATE(3215), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6284), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6286), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, + ACTIONS(6294), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6299), 2, + ACTIONS(6302), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, + ACTIONS(6312), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6311), 2, + ACTIONS(6314), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6307), 3, + ACTIONS(6310), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [106814] = 34, + [106736] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5451), 1, - anon_sym_COLON, - ACTIONS(6285), 1, - anon_sym_AMP_AMP, - ACTIONS(6287), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, - anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_AMP, - ACTIONS(6295), 1, - anon_sym_CARET, - ACTIONS(6297), 1, - anon_sym_PIPE, - ACTIONS(6301), 1, - anon_sym_PERCENT, - ACTIONS(6303), 1, - anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6350), 1, anon_sym_LT, - ACTIONS(6313), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, - sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3368), 1, + STATE(3216), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5479), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6299), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6311), 2, + ACTIONS(5481), 22, + sym__ternary_qmark, + anon_sym_as, + 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, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6307), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [106927] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_satisfies, + [106803] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5556), 1, - anon_sym_COLON, - ACTIONS(6285), 1, + ACTIONS(5521), 1, + anon_sym_RBRACK, + ACTIONS(6449), 1, anon_sym_AMP_AMP, - ACTIONS(6287), 1, + ACTIONS(6451), 1, anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, + ACTIONS(6453), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, + ACTIONS(6457), 1, anon_sym_AMP, - ACTIONS(6295), 1, + ACTIONS(6459), 1, anon_sym_CARET, - ACTIONS(6297), 1, + ACTIONS(6461), 1, anon_sym_PIPE, - ACTIONS(6301), 1, + ACTIONS(6465), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6469), 1, anon_sym_LT, - ACTIONS(6313), 1, + ACTIONS(6477), 1, anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, + ACTIONS(6479), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3369), 1, + STATE(3217), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6447), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, + ACTIONS(6455), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6299), 2, + ACTIONS(6463), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, + ACTIONS(6473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6311), 2, + ACTIONS(6475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6307), 3, + ACTIONS(6471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [107040] = 18, + [106916] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(6583), 1, + ACTIONS(6467), 1, + anon_sym_STAR_STAR, + ACTIONS(6622), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3370), 1, + STATE(3218), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5599), 11, + ACTIONS(5571), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -315400,132 +302832,460 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5601), 15, + ACTIONS(5569), 14, sym__ternary_qmark, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [107121] = 34, + [106999] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, + anon_sym_LBRACK, + STATE(3219), 1, + sym_comment, + STATE(4693), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6025), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [107072] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5554), 1, + ACTIONS(5487), 1, anon_sym_COLON, - ACTIONS(6285), 1, + ACTIONS(6330), 1, anon_sym_AMP_AMP, - ACTIONS(6287), 1, + ACTIONS(6332), 1, anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, + ACTIONS(6334), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, + ACTIONS(6338), 1, anon_sym_AMP, - ACTIONS(6295), 1, + ACTIONS(6340), 1, anon_sym_CARET, - ACTIONS(6297), 1, + ACTIONS(6342), 1, anon_sym_PIPE, - ACTIONS(6301), 1, + ACTIONS(6346), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6350), 1, anon_sym_LT, - ACTIONS(6313), 1, + ACTIONS(6358), 1, anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, + ACTIONS(6360), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3371), 1, + STATE(3220), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6299), 2, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6311), 2, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6307), 3, + ACTIONS(6352), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [107234] = 15, + [107185] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6586), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5521), 1, + anon_sym_COLON, + ACTIONS(6330), 1, + anon_sym_AMP_AMP, + ACTIONS(6332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, + anon_sym_GT_GT, + ACTIONS(6338), 1, + anon_sym_AMP, + ACTIONS(6340), 1, + anon_sym_CARET, + ACTIONS(6342), 1, + anon_sym_PIPE, + ACTIONS(6346), 1, + anon_sym_PERCENT, + ACTIONS(6348), 1, + anon_sym_STAR_STAR, + ACTIONS(6350), 1, anon_sym_LT, - STATE(2461), 1, + ACTIONS(6358), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6360), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(3372), 1, + STATE(3221), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + ACTIONS(6324), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6326), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6336), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6354), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6356), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5463), 12, + ACTIONS(6352), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [107298] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(162), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(4686), 1, + anon_sym_LBRACK, + STATE(3222), 1, + sym_comment, + STATE(7163), 1, + sym__property_name, + STATE(7199), 1, + sym__destructuring_pattern, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6627), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4286), 2, + sym_object_pattern, + sym_array_pattern, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + STATE(6537), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + ACTIONS(6625), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [107375] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(6101), 1, + anon_sym_STAR, + ACTIONS(6103), 1, + anon_sym_async, + STATE(3223), 1, + sym_comment, + STATE(3994), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6107), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 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(4496), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [107450] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(964), 1, + anon_sym_RBRACE, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6093), 1, + anon_sym_STAR, + STATE(3224), 1, + sym_comment, + STATE(4672), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [107533] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(6465), 1, + anon_sym_PERCENT, + ACTIONS(6467), 1, + anon_sym_STAR_STAR, + ACTIONS(6622), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3225), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6445), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -315534,20 +303294,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5465), 17, + ACTIONS(5569), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -315555,97 +303312,215 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [107309] = 34, + [107614] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5543), 1, + ACTIONS(5523), 1, anon_sym_COLON, - ACTIONS(6285), 1, + ACTIONS(6330), 1, anon_sym_AMP_AMP, - ACTIONS(6287), 1, + ACTIONS(6332), 1, anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, + ACTIONS(6334), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, + ACTIONS(6338), 1, anon_sym_AMP, - ACTIONS(6295), 1, + ACTIONS(6340), 1, anon_sym_CARET, - ACTIONS(6297), 1, + ACTIONS(6342), 1, anon_sym_PIPE, - ACTIONS(6301), 1, + ACTIONS(6346), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6350), 1, anon_sym_LT, - ACTIONS(6313), 1, + ACTIONS(6358), 1, anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, + ACTIONS(6360), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3373), 1, + STATE(3226), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6299), 2, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6311), 2, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6307), 3, + ACTIONS(6352), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [107422] = 6, + [107727] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6274), 1, + anon_sym_STAR, + STATE(3227), 1, + sym_comment, + STATE(4741), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6629), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 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(2989), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [107800] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(964), 1, + anon_sym_RBRACE, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6093), 1, + anon_sym_STAR, + STATE(3228), 1, + sym_comment, + STATE(4672), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [107881] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3374), 1, + STATE(3229), 1, sym_comment, - ACTIONS(5261), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(5357), 13, + ACTIONS(5529), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -315659,12 +303534,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5359), 25, + ACTIONS(5531), 28, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_of, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -315685,37 +303563,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107479] = 5, + [107936] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3375), 1, + ACTIONS(5613), 1, + anon_sym_LBRACK, + STATE(3230), 1, sym_comment, - ACTIONS(5750), 13, + ACTIONS(5368), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5616), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4238), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5752), 28, - sym__automatic_semicolon, + ACTIONS(4242), 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_AMP_AMP, @@ -315735,268 +303616,532 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [107534] = 35, + [107997] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5629), 1, - anon_sym_of, - ACTIONS(6263), 1, - anon_sym_GT, - ACTIONS(6265), 1, + ACTIONS(6453), 1, anon_sym_GT_GT, - ACTIONS(6271), 1, + ACTIONS(6457), 1, + anon_sym_AMP, + ACTIONS(6459), 1, + anon_sym_CARET, + ACTIONS(6465), 1, anon_sym_PERCENT, - ACTIONS(6273), 1, + ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6275), 1, + ACTIONS(6469), 1, anon_sym_LT, - ACTIONS(6400), 1, - anon_sym_AMP_AMP, - ACTIONS(6402), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6404), 1, - anon_sym_AMP, - ACTIONS(6406), 1, - anon_sym_CARET, - ACTIONS(6408), 1, - anon_sym_PIPE, - ACTIONS(6414), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6416), 1, - sym__ternary_qmark, - ACTIONS(6589), 1, - anon_sym_in, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3376), 1, + STATE(3231), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6261), 2, + ACTIONS(5571), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6267), 2, + ACTIONS(6447), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6455), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6269), 2, + ACTIONS(6463), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6410), 2, + ACTIONS(6473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6412), 2, + ACTIONS(6475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6277), 3, + ACTIONS(6471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [107649] = 34, + ACTIONS(5569), 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, + [108096] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5545), 1, - anon_sym_COLON, - ACTIONS(6285), 1, + ACTIONS(5525), 1, + anon_sym_RBRACK, + ACTIONS(6449), 1, anon_sym_AMP_AMP, - ACTIONS(6287), 1, + ACTIONS(6451), 1, anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, + ACTIONS(6453), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, + ACTIONS(6457), 1, anon_sym_AMP, - ACTIONS(6295), 1, + ACTIONS(6459), 1, anon_sym_CARET, - ACTIONS(6297), 1, + ACTIONS(6461), 1, anon_sym_PIPE, - ACTIONS(6301), 1, + ACTIONS(6465), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6469), 1, anon_sym_LT, - ACTIONS(6313), 1, + ACTIONS(6477), 1, anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, + ACTIONS(6479), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3377), 1, + STATE(3232), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6447), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, + ACTIONS(6455), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6299), 2, + ACTIONS(6463), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, + ACTIONS(6473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6311), 2, + ACTIONS(6475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6307), 3, + ACTIONS(6471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [107762] = 21, + [108209] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6289), 1, + ACTIONS(6453), 1, anon_sym_GT_GT, - ACTIONS(6301), 1, + ACTIONS(6457), 1, + anon_sym_AMP, + ACTIONS(6465), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6469), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3378), 1, + STATE(3233), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5571), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6447), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6455), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6463), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6475), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6471), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5569), 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, + [108306] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(6453), 1, + anon_sym_GT_GT, + ACTIONS(6465), 1, + anon_sym_PERCENT, + ACTIONS(6467), 1, + anon_sym_STAR_STAR, + ACTIONS(6469), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3234), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6447), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6455), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6463), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6473), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6475), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6471), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5569), 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, + [108401] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(6465), 1, + anon_sym_PERCENT, + ACTIONS(6467), 1, + anon_sym_STAR_STAR, + ACTIONS(6622), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3235), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6445), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6463), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 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(5569), 15, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_satisfies, + [108484] = 29, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5571), 1, + anon_sym_BANG, + ACTIONS(6449), 1, + anon_sym_AMP_AMP, + ACTIONS(6453), 1, + anon_sym_GT_GT, + ACTIONS(6457), 1, + anon_sym_AMP, + ACTIONS(6459), 1, + anon_sym_CARET, + ACTIONS(6461), 1, + anon_sym_PIPE, + ACTIONS(6465), 1, + anon_sym_PERCENT, + ACTIONS(6467), 1, + anon_sym_STAR_STAR, + ACTIONS(6469), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3236), 1, + sym_comment, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6291), 2, + ACTIONS(6447), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6455), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6299), 2, + ACTIONS(6463), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 7, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 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, + ACTIONS(6475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6471), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, + ACTIONS(5569), 6, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [107849] = 18, + [108587] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6534), 1, + anon_sym_STAR, + STATE(3237), 1, + sym_comment, + STATE(4824), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6631), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 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(2989), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108660] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(1055), 1, + ACTIONS(1051), 1, anon_sym_RBRACE, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5151), 1, + ACTIONS(5039), 1, anon_sym_EQ, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6104), 1, + ACTIONS(6093), 1, anon_sym_STAR, - STATE(3379), 1, + STATE(3238), 1, sym_comment, - STATE(4902), 1, + STATE(4672), 1, sym__property_name, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(6287), 1, + STATE(5732), 1, aux_sym_object_repeat1, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -316023,342 +304168,412 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [107930] = 16, + [108741] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1051), 1, + anon_sym_RBRACE, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6093), 1, + anon_sym_STAR, + STATE(3239), 1, + sym_comment, + STATE(4672), 1, + sym__property_name, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [108824] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6303), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5525), 1, + anon_sym_COLON, + ACTIONS(6330), 1, + anon_sym_AMP_AMP, + ACTIONS(6332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, + anon_sym_GT_GT, + ACTIONS(6338), 1, + anon_sym_AMP, + ACTIONS(6340), 1, + anon_sym_CARET, + ACTIONS(6342), 1, + anon_sym_PIPE, + ACTIONS(6346), 1, + anon_sym_PERCENT, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6592), 1, + ACTIONS(6350), 1, anon_sym_LT, - STATE(2461), 1, + ACTIONS(6358), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6360), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(3380), 1, + STATE(3240), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 12, + ACTIONS(6324), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6336), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 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, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6352), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [108007] = 28, + [108937] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5409), 1, + ACTIONS(5571), 1, anon_sym_BANG, - ACTIONS(6289), 1, + ACTIONS(6453), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, + ACTIONS(6457), 1, anon_sym_AMP, - ACTIONS(6295), 1, + ACTIONS(6459), 1, anon_sym_CARET, - ACTIONS(6297), 1, + ACTIONS(6461), 1, anon_sym_PIPE, - ACTIONS(6301), 1, + ACTIONS(6465), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6469), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3381), 1, + STATE(3241), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6447), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, + ACTIONS(6455), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6299), 2, + ACTIONS(6463), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, + ACTIONS(6473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6311), 2, + ACTIONS(6475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6307), 3, + ACTIONS(6471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 7, + ACTIONS(5569), 7, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [108108] = 34, + [109038] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5647), 1, - anon_sym_of, - ACTIONS(6265), 1, - anon_sym_GT_GT, - ACTIONS(6271), 1, - anon_sym_PERCENT, - ACTIONS(6273), 1, - anon_sym_STAR_STAR, - ACTIONS(6275), 1, - anon_sym_LT, - ACTIONS(6400), 1, + ACTIONS(5527), 1, + anon_sym_COLON, + ACTIONS(6330), 1, anon_sym_AMP_AMP, - ACTIONS(6402), 1, + ACTIONS(6332), 1, anon_sym_PIPE_PIPE, - ACTIONS(6404), 1, + ACTIONS(6334), 1, + anon_sym_GT_GT, + ACTIONS(6338), 1, anon_sym_AMP, - ACTIONS(6406), 1, + ACTIONS(6340), 1, anon_sym_CARET, - ACTIONS(6408), 1, + ACTIONS(6342), 1, anon_sym_PIPE, - ACTIONS(6414), 1, + ACTIONS(6346), 1, + anon_sym_PERCENT, + ACTIONS(6348), 1, + anon_sym_STAR_STAR, + ACTIONS(6350), 1, + anon_sym_LT, + ACTIONS(6358), 1, anon_sym_QMARK_QMARK, - ACTIONS(6416), 1, + ACTIONS(6360), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3382), 1, + STATE(3242), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6261), 2, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6263), 2, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6267), 2, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6269), 2, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6410), 2, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6412), 2, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6277), 3, + ACTIONS(6352), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [108221] = 29, + [109151] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5409), 1, - anon_sym_BANG, - ACTIONS(6285), 1, - anon_sym_AMP_AMP, - ACTIONS(6289), 1, + ACTIONS(6334), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_AMP, - ACTIONS(6295), 1, - anon_sym_CARET, - ACTIONS(6297), 1, - anon_sym_PIPE, - ACTIONS(6301), 1, + ACTIONS(6346), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6350), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3383), 1, + STATE(3243), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6291), 2, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6299), 2, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6307), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 6, + ACTIONS(5571), 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(5569), 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, - [108324] = 19, + [109238] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6301), 1, - anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6592), 1, + ACTIONS(6633), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3384), 1, + STATE(3244), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6299), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5409), 8, + ACTIONS(5571), 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(5407), 15, + ACTIONS(5569), 16, sym__ternary_qmark, anon_sym_as, anon_sym_COLON, @@ -316367,6 +304582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -316374,390 +304590,272 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [108407] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, - anon_sym_COMMA, - ACTIONS(5290), 1, - anon_sym_RBRACE, - STATE(3385), 1, - sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2470), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - 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, - [108474] = 25, + [109315] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6289), 1, + ACTIONS(5571), 1, + anon_sym_BANG, + ACTIONS(6334), 1, anon_sym_GT_GT, - ACTIONS(6301), 1, + ACTIONS(6338), 1, + anon_sym_AMP, + ACTIONS(6340), 1, + anon_sym_CARET, + ACTIONS(6342), 1, + anon_sym_PIPE, + ACTIONS(6346), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6350), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3386), 1, + STATE(3245), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6299), 2, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6311), 2, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5409), 3, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6307), 3, + ACTIONS(6352), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 8, + ACTIONS(5569), 7, 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, - [108569] = 26, + [109416] = 16, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6289), 1, - anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_AMP, - ACTIONS(6301), 1, - anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6622), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3387), 1, + STATE(3246), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5409), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6279), 2, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 12, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6299), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6307), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 8, + ACTIONS(5569), 16, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_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, - [108666] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(6595), 1, - anon_sym_STAR, - ACTIONS(6597), 1, - anon_sym_async, - STATE(3388), 1, - sym_comment, - STATE(4073), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6599), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4492), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [108741] = 27, + [109493] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6289), 1, + ACTIONS(5571), 1, + anon_sym_BANG, + ACTIONS(6330), 1, + anon_sym_AMP_AMP, + ACTIONS(6334), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, + ACTIONS(6338), 1, anon_sym_AMP, - ACTIONS(6295), 1, + ACTIONS(6340), 1, anon_sym_CARET, - ACTIONS(6301), 1, + ACTIONS(6342), 1, + anon_sym_PIPE, + ACTIONS(6346), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6350), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3389), 1, + STATE(3247), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5409), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6279), 2, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6299), 2, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6311), 2, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6307), 3, + ACTIONS(6352), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 7, + ACTIONS(5569), 6, sym__ternary_qmark, anon_sym_as, anon_sym_COLON, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_QMARK_QMARK, anon_sym_satisfies, - [108840] = 18, + [109596] = 21, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6301), 1, + ACTIONS(6453), 1, + anon_sym_GT_GT, + ACTIONS(6465), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6592), 1, + ACTIONS(6469), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3390), 1, + STATE(3248), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6445), 2, anon_sym_STAR, anon_sym_SLASH, - STATE(2759), 2, + ACTIONS(6455), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6463), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5409), 10, + ACTIONS(5571), 7, anon_sym_BANG, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 15, + ACTIONS(5569), 13, sym__ternary_qmark, anon_sym_as, - anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -316766,214 +304864,266 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_satisfies, - [108921] = 19, + [109683] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6303), 1, + ACTIONS(6346), 1, + anon_sym_PERCENT, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6592), 1, + ACTIONS(6633), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3391), 1, + STATE(3249), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + ACTIONS(6324), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6344), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5409), 11, - anon_sym_STAR, + ACTIONS(5571), 8, + anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 14, + ACTIONS(5569), 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_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, - [109004] = 23, + anon_sym_satisfies, + [109766] = 25, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6289), 1, + ACTIONS(6334), 1, anon_sym_GT_GT, - ACTIONS(6301), 1, + ACTIONS(6346), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6350), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3392), 1, + STATE(3250), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6299), 2, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2759), 2, + ACTIONS(6354), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6356), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6307), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5409), 5, + ACTIONS(5571), 3, anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5407), 10, + ACTIONS(6352), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5569), 8, 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_satisfies, - [109095] = 30, + [109861] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5409), 1, - anon_sym_BANG, - ACTIONS(6285), 1, - anon_sym_AMP_AMP, - ACTIONS(6287), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, + ACTIONS(6334), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, + ACTIONS(6338), 1, anon_sym_AMP, - ACTIONS(6295), 1, - anon_sym_CARET, - ACTIONS(6297), 1, - anon_sym_PIPE, - ACTIONS(6301), 1, + ACTIONS(6346), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6350), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3393), 1, + STATE(3251), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(5571), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6299), 2, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6311), 2, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6307), 3, + ACTIONS(6352), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 5, + ACTIONS(5569), 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, + [109958] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(6636), 1, + anon_sym_LPAREN, + ACTIONS(6639), 1, + anon_sym_COLON, + ACTIONS(6641), 1, + anon_sym_LT, + ACTIONS(6644), 1, + anon_sym_QMARK, + STATE(3252), 1, + sym_comment, + ACTIONS(4238), 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(4242), 25, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [109200] = 14, + [110021] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -316982,34 +305132,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6595), 1, + ACTIONS(6646), 1, anon_sym_STAR, - STATE(3394), 1, + STATE(3253), 1, sym_comment, - STATE(4967), 1, + STATE(4734), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6601), 2, + ACTIONS(6648), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, + ACTIONS(985), 8, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2989), 21, anon_sym_export, anon_sym_type, @@ -317032,226 +305182,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109273] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [110094] = 11, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5687), 1, - anon_sym_COLON, - ACTIONS(6285), 1, - anon_sym_AMP_AMP, - ACTIONS(6287), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, - anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_AMP, - ACTIONS(6295), 1, - anon_sym_CARET, - ACTIONS(6297), 1, - anon_sym_PIPE, - ACTIONS(6301), 1, - anon_sym_PERCENT, - ACTIONS(6303), 1, - anon_sym_STAR_STAR, - ACTIONS(6305), 1, - anon_sym_LT, - ACTIONS(6313), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3395), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6291), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6299), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6309), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6307), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [109386] = 34, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5370), 1, + anon_sym_RBRACE, + STATE(3254), 1, + sym_comment, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(985), 6, anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5689), 1, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(6285), 1, - anon_sym_AMP_AMP, - ACTIONS(6287), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, - anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_AMP, - ACTIONS(6295), 1, - anon_sym_CARET, - ACTIONS(6297), 1, - anon_sym_PIPE, - ACTIONS(6301), 1, - anon_sym_PERCENT, - ACTIONS(6303), 1, - anon_sym_STAR_STAR, - ACTIONS(6305), 1, anon_sym_LT, - ACTIONS(6313), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3396), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6291), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6299), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6309), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6307), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [109499] = 24, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(223), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2454), 29, + anon_sym_export, anon_sym_STAR, - ACTIONS(1965), 1, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(2452), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6605), 1, - anon_sym_COMMA, - ACTIONS(6607), 1, - anon_sym_RBRACE, - ACTIONS(6609), 1, anon_sym_async, - ACTIONS(6611), 1, - anon_sym_static, - ACTIONS(6613), 1, - anon_sym_readonly, - ACTIONS(6619), 1, - anon_sym_override, - STATE(3397), 1, - sym_comment, - STATE(3744), 1, - sym_accessibility_modifier, - STATE(3771), 1, - sym_override_modifier, - STATE(4782), 1, - sym__property_name, - STATE(5913), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, + anon_sym_new, sym_number, + sym_identifier, sym_private_property_identifier, - ACTIONS(6615), 2, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(6617), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5915), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(6603), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -317259,392 +305238,250 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [109592] = 34, + [110161] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5647), 1, - anon_sym_COLON, - ACTIONS(6285), 1, + ACTIONS(5527), 1, + anon_sym_RBRACK, + ACTIONS(6449), 1, anon_sym_AMP_AMP, - ACTIONS(6287), 1, + ACTIONS(6451), 1, anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, + ACTIONS(6453), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, + ACTIONS(6457), 1, anon_sym_AMP, - ACTIONS(6295), 1, + ACTIONS(6459), 1, anon_sym_CARET, - ACTIONS(6297), 1, + ACTIONS(6461), 1, anon_sym_PIPE, - ACTIONS(6301), 1, + ACTIONS(6465), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6469), 1, anon_sym_LT, - ACTIONS(6313), 1, + ACTIONS(6477), 1, anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, + ACTIONS(6479), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3398), 1, + STATE(3255), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6447), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, + ACTIONS(6455), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6299), 2, + ACTIONS(6463), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, + ACTIONS(6473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6311), 2, + ACTIONS(6475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6307), 3, + ACTIONS(6471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [109705] = 34, + [110274] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5370), 1, + anon_sym_RBRACE, + STATE(3256), 1, + sym_comment, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(985), 6, anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5645), 1, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(6285), 1, - anon_sym_AMP_AMP, - ACTIONS(6287), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, - anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_AMP, - ACTIONS(6295), 1, - anon_sym_CARET, - ACTIONS(6297), 1, - anon_sym_PIPE, - ACTIONS(6301), 1, - anon_sym_PERCENT, - ACTIONS(6303), 1, - anon_sym_STAR_STAR, - ACTIONS(6305), 1, anon_sym_LT, - ACTIONS(6313), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3399), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2452), 29, + anon_sym_export, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6291), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6299), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6309), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6307), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [109818] = 34, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [110341] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5634), 1, - anon_sym_COLON, - ACTIONS(6285), 1, - anon_sym_AMP_AMP, - ACTIONS(6287), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, + ACTIONS(6334), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, + ACTIONS(6338), 1, anon_sym_AMP, - ACTIONS(6295), 1, + ACTIONS(6340), 1, anon_sym_CARET, - ACTIONS(6297), 1, - anon_sym_PIPE, - ACTIONS(6301), 1, + ACTIONS(6346), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6350), 1, anon_sym_LT, - ACTIONS(6313), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, - sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3400), 1, + STATE(3257), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6291), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6299), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6309), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6307), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [109931] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5571), 2, anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5711), 1, - anon_sym_COLON, - ACTIONS(6285), 1, - anon_sym_AMP_AMP, - ACTIONS(6287), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, - anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_AMP, - ACTIONS(6295), 1, - anon_sym_CARET, - ACTIONS(6297), 1, anon_sym_PIPE, - ACTIONS(6301), 1, - anon_sym_PERCENT, - ACTIONS(6303), 1, - anon_sym_STAR_STAR, - ACTIONS(6305), 1, - anon_sym_LT, - ACTIONS(6313), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3401), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6291), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6299), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6309), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6311), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6307), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [110044] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6621), 1, - anon_sym_LPAREN, - ACTIONS(6624), 1, - anon_sym_COLON, - ACTIONS(6626), 1, - anon_sym_LT, - ACTIONS(6629), 1, - anon_sym_QMARK, - STATE(3402), 1, - sym_comment, - ACTIONS(4218), 12, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(6326), 2, anon_sym_in, 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(4222), 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, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, + ACTIONS(6344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6354), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6352), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5569), 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, - [110107] = 7, + [110440] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3403), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(6346), 1, + anon_sym_PERCENT, + ACTIONS(6348), 1, + anon_sym_STAR_STAR, + ACTIONS(6633), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3258), 1, sym_comment, - ACTIONS(6631), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6633), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6324), 2, anon_sym_STAR, + anon_sym_SLASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -317653,44 +305490,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(5569), 15, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [110166] = 5, + [110521] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3404), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6348), 1, + anon_sym_STAR_STAR, + ACTIONS(6633), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3259), 1, sym_comment, - ACTIONS(2210), 13, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 11, anon_sym_STAR, - anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, @@ -317699,263 +305555,253 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2214), 28, - sym__automatic_semicolon, + ACTIONS(5569), 14, sym__ternary_qmark, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_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, - [110221] = 7, + [110604] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3405), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(6334), 1, + anon_sym_GT_GT, + ACTIONS(6346), 1, + anon_sym_PERCENT, + ACTIONS(6348), 1, + anon_sym_STAR_STAR, + ACTIONS(6350), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3260), 1, sym_comment, - ACTIONS(6631), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6633), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6324), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6336), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6352), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5571), 5, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(5569), 10, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_satisfies, - [110280] = 34, + [110695] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5560), 1, - anon_sym_COLON, - ACTIONS(6285), 1, + ACTIONS(5571), 1, + anon_sym_BANG, + ACTIONS(6330), 1, anon_sym_AMP_AMP, - ACTIONS(6287), 1, + ACTIONS(6332), 1, anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, + ACTIONS(6334), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, + ACTIONS(6338), 1, anon_sym_AMP, - ACTIONS(6295), 1, + ACTIONS(6340), 1, anon_sym_CARET, - ACTIONS(6297), 1, + ACTIONS(6342), 1, anon_sym_PIPE, - ACTIONS(6301), 1, + ACTIONS(6346), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6350), 1, anon_sym_LT, - ACTIONS(6313), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, - sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3406), 1, + STATE(3261), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6299), 2, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6311), 2, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6307), 3, + ACTIONS(6352), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [110393] = 34, + ACTIONS(5569), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [110800] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5674), 1, + ACTIONS(5624), 1, anon_sym_COLON, - ACTIONS(6285), 1, + ACTIONS(6330), 1, anon_sym_AMP_AMP, - ACTIONS(6287), 1, + ACTIONS(6332), 1, anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, + ACTIONS(6334), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, + ACTIONS(6338), 1, anon_sym_AMP, - ACTIONS(6295), 1, + ACTIONS(6340), 1, anon_sym_CARET, - ACTIONS(6297), 1, + ACTIONS(6342), 1, anon_sym_PIPE, - ACTIONS(6301), 1, + ACTIONS(6346), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6350), 1, anon_sym_LT, - ACTIONS(6313), 1, + ACTIONS(6358), 1, anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, + ACTIONS(6360), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3407), 1, + STATE(3262), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6299), 2, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6311), 2, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6307), 3, + ACTIONS(6352), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [110506] = 7, + [110913] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3408), 1, + STATE(3263), 1, sym_comment, - ACTIONS(6631), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6633), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, + ACTIONS(5642), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -317969,10 +305815,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(5644), 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, @@ -317993,14 +305844,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [110565] = 5, + [110968] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3409), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5626), 1, + anon_sym_COLON, + ACTIONS(6330), 1, + anon_sym_AMP_AMP, + ACTIONS(6332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, + anon_sym_GT_GT, + ACTIONS(6338), 1, + anon_sym_AMP, + ACTIONS(6340), 1, + anon_sym_CARET, + ACTIONS(6342), 1, + anon_sym_PIPE, + ACTIONS(6346), 1, + anon_sym_PERCENT, + ACTIONS(6348), 1, + anon_sym_STAR_STAR, + ACTIONS(6350), 1, + anon_sym_LT, + ACTIONS(6358), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6360), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3264), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6324), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6326), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6336), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6344), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6354), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6356), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6352), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [111081] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3265), 1, sym_comment, - ACTIONS(2240), 13, + ACTIONS(2236), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -318014,7 +305944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2244), 28, + ACTIONS(2240), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -318043,14 +305973,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [110620] = 5, + [111136] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3410), 1, + STATE(3266), 1, sym_comment, - ACTIONS(2290), 13, + ACTIONS(2154), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -318064,7 +305994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2294), 28, + ACTIONS(2158), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -318093,14 +306023,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [110675] = 5, + [111191] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3411), 1, + STATE(3267), 1, sym_comment, - ACTIONS(2184), 13, + ACTIONS(2244), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -318114,7 +306044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2188), 28, + ACTIONS(2248), 28, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -318143,137 +306073,156 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [110730] = 34, + [111246] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + STATE(3268), 1, + sym_comment, + ACTIONS(2266), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2270), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4915), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4917), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6285), 1, anon_sym_AMP_AMP, - ACTIONS(6287), 1, anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, - anon_sym_GT_GT, - ACTIONS(6293), 1, - anon_sym_AMP, - ACTIONS(6295), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6297), 1, - anon_sym_PIPE, - ACTIONS(6301), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, - anon_sym_LT, - ACTIONS(6313), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, - sym__ternary_qmark, - ACTIONS(6635), 1, - anon_sym_COLON, - STATE(2461), 1, - sym_type_arguments, - STATE(3412), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6279), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6281), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6291), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6299), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6309), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6311), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6307), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [110843] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [111301] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, anon_sym_COMMA, - ACTIONS(1057), 1, + ACTIONS(5044), 1, anon_sym_RBRACE, - ACTIONS(1965), 1, + STATE(3269), 1, + sym_comment, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(985), 6, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2454), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, anon_sym_async, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6104), 1, - anon_sym_STAR, - STATE(3413), 1, - sym_comment, - STATE(4902), 1, - sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, + anon_sym_new, sym_number, + sym_identifier, sym_private_property_identifier, - ACTIONS(2995), 2, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [111368] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5041), 1, + anon_sym_COMMA, + ACTIONS(5044), 1, + anon_sym_RBRACE, + STATE(3270), 1, + sym_comment, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(985), 6, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 20, + anon_sym_PIPE_RBRACE, + ACTIONS(2452), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -318286,126 +306235,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [110926] = 28, + [111435] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5409), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(6363), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5692), 1, + anon_sym_COLON, + ACTIONS(6330), 1, + anon_sym_AMP_AMP, + ACTIONS(6332), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6334), 1, anon_sym_GT_GT, - ACTIONS(6367), 1, + ACTIONS(6338), 1, anon_sym_AMP, - ACTIONS(6369), 1, + ACTIONS(6340), 1, anon_sym_CARET, - ACTIONS(6371), 1, + ACTIONS(6342), 1, anon_sym_PIPE, - ACTIONS(6375), 1, + ACTIONS(6346), 1, anon_sym_PERCENT, - ACTIONS(6377), 1, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6379), 1, + ACTIONS(6350), 1, anon_sym_LT, - STATE(2461), 1, + ACTIONS(6358), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6360), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(3414), 1, + STATE(3271), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6355), 2, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6373), 2, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6383), 2, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6385), 2, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6381), 3, + ACTIONS(6352), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 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, - [111027] = 18, + [111548] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(1057), 1, + ACTIONS(1045), 1, anon_sym_RBRACE, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5151), 1, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(5039), 1, anon_sym_EQ, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6104), 1, + ACTIONS(6093), 1, anon_sym_STAR, - STATE(3415), 1, + STATE(3272), 1, sym_comment, - STATE(4902), 1, + STATE(4672), 1, sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(2989), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -318422,38 +306378,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111108] = 16, + [111631] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(6377), 1, - anon_sym_STAR_STAR, - ACTIONS(6534), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3416), 1, + STATE(3273), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 12, + ACTIONS(2184), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -318464,63 +306396,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5407), 16, - sym__ternary_qmark, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_satisfies, - [111185] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(6379), 1, anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3417), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5800), 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(5802), 22, + ACTIONS(2186), 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, @@ -318538,107 +306426,59 @@ 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, - [111252] = 11, + [111686] = 18, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(5271), 1, + ACTIONS(1045), 1, anon_sym_RBRACE, - STATE(3418), 1, - sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1043), 6, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2474), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, + ACTIONS(1965), 1, anon_sym_DQUOTE, + ACTIONS(1967), 1, anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6093), 1, + anon_sym_STAR, + STATE(3274), 1, + sym_comment, + STATE(4672), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, sym_number, - sym_identifier, sym_private_property_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [111319] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5153), 1, - anon_sym_COMMA, - ACTIONS(5271), 1, - anon_sym_RBRACE, - STATE(3419), 1, - sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1043), 6, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2470), 29, + ACTIONS(2989), 21, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -318651,324 +306491,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [111386] = 21, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(6363), 1, - anon_sym_GT_GT, - ACTIONS(6375), 1, - anon_sym_PERCENT, - ACTIONS(6377), 1, - anon_sym_STAR_STAR, - ACTIONS(6379), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3420), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6365), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6373), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 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(5407), 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, - [111473] = 34, + [111767] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5545), 1, - anon_sym_RBRACK, - ACTIONS(6359), 1, + ACTIONS(5694), 1, + anon_sym_COLON, + ACTIONS(6330), 1, anon_sym_AMP_AMP, - ACTIONS(6361), 1, + ACTIONS(6332), 1, anon_sym_PIPE_PIPE, - ACTIONS(6363), 1, + ACTIONS(6334), 1, anon_sym_GT_GT, - ACTIONS(6367), 1, + ACTIONS(6338), 1, anon_sym_AMP, - ACTIONS(6369), 1, + ACTIONS(6340), 1, anon_sym_CARET, - ACTIONS(6371), 1, + ACTIONS(6342), 1, anon_sym_PIPE, - ACTIONS(6375), 1, + ACTIONS(6346), 1, anon_sym_PERCENT, - ACTIONS(6377), 1, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6379), 1, + ACTIONS(6350), 1, anon_sym_LT, - ACTIONS(6387), 1, + ACTIONS(6358), 1, anon_sym_QMARK_QMARK, - ACTIONS(6389), 1, + ACTIONS(6360), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3421), 1, + STATE(3275), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6355), 2, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6373), 2, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6383), 2, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6385), 2, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6381), 3, + ACTIONS(6352), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [111586] = 34, + [111880] = 30, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6285), 1, + ACTIONS(5571), 1, + anon_sym_BANG, + ACTIONS(6449), 1, anon_sym_AMP_AMP, - ACTIONS(6287), 1, + ACTIONS(6451), 1, anon_sym_PIPE_PIPE, - ACTIONS(6289), 1, + ACTIONS(6453), 1, anon_sym_GT_GT, - ACTIONS(6293), 1, + ACTIONS(6457), 1, anon_sym_AMP, - ACTIONS(6295), 1, + ACTIONS(6459), 1, anon_sym_CARET, - ACTIONS(6297), 1, + ACTIONS(6461), 1, anon_sym_PIPE, - ACTIONS(6301), 1, + ACTIONS(6465), 1, anon_sym_PERCENT, - ACTIONS(6303), 1, + ACTIONS(6467), 1, anon_sym_STAR_STAR, - ACTIONS(6305), 1, + ACTIONS(6469), 1, anon_sym_LT, - ACTIONS(6313), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6315), 1, - sym__ternary_qmark, - ACTIONS(6637), 1, - anon_sym_COLON, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3422), 1, + STATE(3276), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6279), 2, + ACTIONS(6445), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6281), 2, + ACTIONS(6447), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6291), 2, + ACTIONS(6455), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6299), 2, + ACTIONS(6463), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6309), 2, + ACTIONS(6473), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6311), 2, + ACTIONS(6475), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6307), 3, + ACTIONS(6471), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [111699] = 34, + ACTIONS(5569), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_satisfies, + [111985] = 34, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(5543), 1, - anon_sym_RBRACK, - ACTIONS(6359), 1, + ACTIONS(5696), 1, + anon_sym_COLON, + ACTIONS(6330), 1, anon_sym_AMP_AMP, - ACTIONS(6361), 1, + ACTIONS(6332), 1, anon_sym_PIPE_PIPE, - ACTIONS(6363), 1, + ACTIONS(6334), 1, anon_sym_GT_GT, - ACTIONS(6367), 1, + ACTIONS(6338), 1, anon_sym_AMP, - ACTIONS(6369), 1, + ACTIONS(6340), 1, anon_sym_CARET, - ACTIONS(6371), 1, + ACTIONS(6342), 1, anon_sym_PIPE, - ACTIONS(6375), 1, + ACTIONS(6346), 1, anon_sym_PERCENT, - ACTIONS(6377), 1, + ACTIONS(6348), 1, anon_sym_STAR_STAR, - ACTIONS(6379), 1, + ACTIONS(6350), 1, anon_sym_LT, - ACTIONS(6387), 1, + ACTIONS(6358), 1, anon_sym_QMARK_QMARK, - ACTIONS(6389), 1, + ACTIONS(6360), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3423), 1, + STATE(3277), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6355), 2, + ACTIONS(6326), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6336), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6373), 2, + ACTIONS(6344), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6383), 2, + ACTIONS(6354), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6385), 2, + ACTIONS(6356), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6381), 3, + ACTIONS(6352), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [111812] = 7, + [112098] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3424), 1, + STATE(3278), 1, sym_comment, - ACTIONS(6639), 2, - anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(6641), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4218), 13, + ACTIONS(2274), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -318982,10 +306745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(2278), 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, @@ -319006,14 +306774,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [111871] = 5, + [112153] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3425), 1, + ACTIONS(4280), 1, + anon_sym_EQ, + STATE(3279), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -319027,14 +306797,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 28, + ACTIONS(4242), 27, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -319056,373 +306825,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [111926] = 34, + [112210] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5724), 1, - anon_sym_RBRACK, - ACTIONS(6359), 1, - anon_sym_AMP_AMP, - ACTIONS(6361), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6363), 1, - anon_sym_GT_GT, - ACTIONS(6367), 1, - anon_sym_AMP, - ACTIONS(6369), 1, - anon_sym_CARET, - ACTIONS(6371), 1, - anon_sym_PIPE, - ACTIONS(6375), 1, - anon_sym_PERCENT, - ACTIONS(6377), 1, - anon_sym_STAR_STAR, - ACTIONS(6379), 1, - anon_sym_LT, - ACTIONS(6387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6389), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3426), 1, + STATE(3280), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6353), 2, + ACTIONS(4238), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6355), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6373), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6383), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6385), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6381), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [112039] = 34, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4242), 28, + sym__automatic_semicolon, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4915), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4917), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5451), 1, - anon_sym_RBRACK, - ACTIONS(6359), 1, anon_sym_AMP_AMP, - ACTIONS(6361), 1, anon_sym_PIPE_PIPE, - ACTIONS(6363), 1, - anon_sym_GT_GT, - ACTIONS(6367), 1, - anon_sym_AMP, - ACTIONS(6369), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6371), 1, - anon_sym_PIPE, - ACTIONS(6375), 1, anon_sym_PERCENT, - ACTIONS(6377), 1, anon_sym_STAR_STAR, - ACTIONS(6379), 1, - anon_sym_LT, - ACTIONS(6387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6389), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3427), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6353), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6355), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6365), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6373), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6383), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6385), 2, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6381), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [112152] = 34, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [112265] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5579), 1, + anon_sym_LBRACK, + STATE(3281), 1, + sym_comment, + STATE(4711), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 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(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112333] = 28, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5554), 1, - anon_sym_RBRACK, - ACTIONS(6359), 1, - anon_sym_AMP_AMP, - ACTIONS(6361), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6363), 1, + ACTIONS(5571), 1, + anon_sym_BANG, + ACTIONS(6654), 1, anon_sym_GT_GT, - ACTIONS(6367), 1, + ACTIONS(6658), 1, anon_sym_AMP, - ACTIONS(6369), 1, + ACTIONS(6660), 1, anon_sym_CARET, - ACTIONS(6371), 1, + ACTIONS(6662), 1, anon_sym_PIPE, - ACTIONS(6375), 1, + ACTIONS(6666), 1, anon_sym_PERCENT, - ACTIONS(6377), 1, + ACTIONS(6668), 1, anon_sym_STAR_STAR, - ACTIONS(6379), 1, + ACTIONS(6670), 1, anon_sym_LT, - ACTIONS(6387), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6389), 1, - sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3428), 1, + STATE(3282), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6353), 2, + ACTIONS(6650), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6355), 2, + ACTIONS(6652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6365), 2, + ACTIONS(6656), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6373), 2, + ACTIONS(6664), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6383), 2, + ACTIONS(6674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6385), 2, + ACTIONS(6676), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6381), 3, + ACTIONS(6672), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [112265] = 16, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6645), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3429), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 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(5407), 15, + ACTIONS(5569), 6, 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, - [112341] = 25, + [112433] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, - anon_sym_GT_GT, - ACTIONS(6658), 1, - anon_sym_PERCENT, - ACTIONS(6660), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3430), 1, + STATE(3283), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6648), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6650), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6654), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6656), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6664), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6666), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 3, + STATE(4805), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 8, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6662), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 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, - [112435] = 12, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112501] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -319431,21 +307068,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3431), 1, + STATE(3284), 1, sym_comment, - STATE(4959), 1, + STATE(4695), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -319478,40 +307115,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112503] = 9, + [112569] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2144), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3587), 1, - anon_sym_extends, - STATE(3432), 1, + ACTIONS(4290), 1, + anon_sym_EQ, + STATE(3285), 1, sym_comment, - ACTIONS(5056), 2, + ACTIONS(4339), 3, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5059), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2142), 11, + anon_sym_RBRACK, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2148), 23, + ACTIONS(4242), 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, @@ -319531,40 +307166,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [112565] = 9, + [112627] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4971), 1, - anon_sym_QMARK, - ACTIONS(4973), 1, + ACTIONS(5219), 1, anon_sym_extends, - STATE(3433), 1, + STATE(3286), 1, sym_comment, - ACTIONS(5527), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5524), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(4218), 11, + ACTIONS(5252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(5254), 26, sym__ternary_qmark, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -319584,84 +307216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [112627] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, - anon_sym_GT_GT, - ACTIONS(6658), 1, - anon_sym_PERCENT, - ACTIONS(6660), 1, - anon_sym_LT, - ACTIONS(6668), 1, - anon_sym_AMP_AMP, - ACTIONS(6670), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6672), 1, - anon_sym_AMP, - ACTIONS(6674), 1, - anon_sym_CARET, - ACTIONS(6676), 1, - anon_sym_PIPE, - ACTIONS(6678), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6680), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3434), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6648), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6650), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6654), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6656), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6664), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6666), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6662), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [112737] = 12, + [112683] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -319670,29 +307225,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3435), 1, + STATE(3287), 1, sym_comment, - STATE(4981), 1, + STATE(4718), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, + 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(2989), 23, anon_sym_export, anon_sym_type, @@ -319717,227 +307272,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [112805] = 18, + [112751] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6682), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3436), 1, + STATE(3288), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5599), 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(5601), 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, - [112885] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6398), 1, + STATE(4689), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 8, anon_sym_COMMA, - STATE(3437), 1, - sym_comment, - ACTIONS(5357), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5359), 26, - sym__ternary_qmark, - anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [112941] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, - anon_sym_GT_GT, - ACTIONS(6658), 1, - anon_sym_PERCENT, - ACTIONS(6660), 1, anon_sym_LT, - ACTIONS(6668), 1, - anon_sym_AMP_AMP, - ACTIONS(6670), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6672), 1, - anon_sym_AMP, - ACTIONS(6674), 1, - anon_sym_CARET, - ACTIONS(6676), 1, - anon_sym_PIPE, - ACTIONS(6678), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6680), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3438), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6648), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6650), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6654), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6656), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6664), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6666), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6662), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [113051] = 16, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [112819] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(1057), 1, - anon_sym_RBRACE, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5151), 1, + ACTIONS(5039), 1, anon_sym_EQ, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3439), 1, + ACTIONS(6133), 1, + anon_sym_RBRACE, + STATE(3289), 1, sym_comment, - STATE(4902), 1, + STATE(4672), 1, sym__property_name, - STATE(6276), 1, + STATE(5732), 1, aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -319966,39 +307388,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113127] = 12, + [112895] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3440), 1, + STATE(3290), 1, sym_comment, - STATE(4893), 1, + STATE(4171), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, + 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(2989), 23, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -320022,7 +307444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113195] = 12, + [112963] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320031,29 +307453,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3441), 1, + STATE(3291), 1, sym_comment, - STATE(4934), 1, + STATE(4728), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, + ACTIONS(985), 8, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2989), 23, anon_sym_export, anon_sym_type, @@ -320078,137 +307500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113263] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, - anon_sym_GT_GT, - ACTIONS(6658), 1, - anon_sym_PERCENT, - ACTIONS(6660), 1, - anon_sym_LT, - ACTIONS(6668), 1, - anon_sym_AMP_AMP, - ACTIONS(6670), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6672), 1, - anon_sym_AMP, - ACTIONS(6674), 1, - anon_sym_CARET, - ACTIONS(6676), 1, - anon_sym_PIPE, - ACTIONS(6678), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6680), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3442), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6648), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6650), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6654), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6656), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6664), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6666), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6662), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [113373] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5064), 1, - anon_sym_EQ, - ACTIONS(5074), 1, - anon_sym_extends, - STATE(3443), 1, - sym_comment, - ACTIONS(5068), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5071), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5062), 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(5066), 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, - [113435] = 12, + [113031] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320217,21 +307509,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3444), 1, + STATE(3292), 1, sym_comment, - STATE(4967), 1, + STATE(4702), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -320264,84 +307556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113503] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, - anon_sym_GT_GT, - ACTIONS(6658), 1, - anon_sym_PERCENT, - ACTIONS(6660), 1, - anon_sym_LT, - ACTIONS(6668), 1, - anon_sym_AMP_AMP, - ACTIONS(6670), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6672), 1, - anon_sym_AMP, - ACTIONS(6674), 1, - anon_sym_CARET, - ACTIONS(6676), 1, - anon_sym_PIPE, - ACTIONS(6678), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6680), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3445), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6648), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6650), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6654), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6656), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6664), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6666), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6662), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [113613] = 12, + [113099] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320350,21 +307565,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3446), 1, + STATE(3293), 1, sym_comment, - STATE(4992), 1, + STATE(4836), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -320397,84 +307612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113681] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, - anon_sym_GT_GT, - ACTIONS(6658), 1, - anon_sym_PERCENT, - ACTIONS(6660), 1, - anon_sym_LT, - ACTIONS(6668), 1, - anon_sym_AMP_AMP, - ACTIONS(6670), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6672), 1, - anon_sym_AMP, - ACTIONS(6674), 1, - anon_sym_CARET, - ACTIONS(6676), 1, - anon_sym_PIPE, - ACTIONS(6678), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6680), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3447), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6648), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6650), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6654), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6656), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6664), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6666), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6662), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [113791] = 12, + [113167] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320483,21 +307621,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3448), 1, + STATE(3294), 1, sym_comment, - STATE(4955), 1, + STATE(4684), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, @@ -320530,84 +307668,205 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [113859] = 33, + [113235] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(6678), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3295), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5593), 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(5595), 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, + [113309] = 18, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(6643), 1, + ACTIONS(6681), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3296), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5658), 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(5660), 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, - ACTIONS(6652), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [113389] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6654), 1, anon_sym_GT_GT, ACTIONS(6658), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(6660), 1, - anon_sym_LT, + anon_sym_CARET, + ACTIONS(6662), 1, + anon_sym_PIPE, + ACTIONS(6666), 1, + anon_sym_PERCENT, ACTIONS(6668), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(6670), 1, + anon_sym_LT, + ACTIONS(6684), 1, + anon_sym_AMP_AMP, + ACTIONS(6686), 1, anon_sym_PIPE_PIPE, - ACTIONS(6672), 1, - anon_sym_AMP, - ACTIONS(6674), 1, - anon_sym_CARET, - ACTIONS(6676), 1, - anon_sym_PIPE, - ACTIONS(6678), 1, + ACTIONS(6688), 1, anon_sym_QMARK_QMARK, - ACTIONS(6680), 1, + ACTIONS(6690), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3449), 1, + STATE(3297), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6648), 2, + ACTIONS(6650), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6650), 2, + ACTIONS(6652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6654), 2, + ACTIONS(6656), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6656), 2, + ACTIONS(6664), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6664), 2, + ACTIONS(6674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6666), 2, + ACTIONS(6676), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6662), 3, + ACTIONS(6672), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [113969] = 20, + [113499] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320616,54 +307875,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5510), 1, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6104), 1, - anon_sym_STAR, - ACTIONS(6605), 1, - anon_sym_COMMA, - ACTIONS(6685), 1, - anon_sym_RBRACE, - STATE(3450), 1, + STATE(3298), 1, sym_comment, - STATE(3765), 1, - sym_override_modifier, - STATE(4902), 1, + STATE(4680), 1, sym__property_name, - STATE(5843), 1, - aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(985), 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(2989), 18, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -320671,16 +307922,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114053] = 6, + [113567] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4383), 1, - anon_sym_EQ, - STATE(3451), 1, + STATE(3299), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(5219), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -320694,14 +307946,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 26, + ACTIONS(5254), 25, + sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [113623] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3300), 1, + sym_comment, + ACTIONS(5308), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + ACTIONS(5310), 4, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4238), 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(4242), 22, + sym__ternary_qmark, + anon_sym_as, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -320721,42 +308023,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [114109] = 16, + [113681] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6181), 1, - anon_sym_RBRACE, - STATE(3452), 1, + STATE(3301), 1, sym_comment, - STATE(4902), 1, + STATE(4734), 1, sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(985), 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(2989), 23, anon_sym_export, anon_sym_type, @@ -320781,7 +308079,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114185] = 12, + [113749] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320790,29 +308088,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3453), 1, + STATE(3302), 1, sym_comment, - STATE(4848), 1, + STATE(4827), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, + 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(2989), 23, anon_sym_export, anon_sym_type, @@ -320837,128 +308135,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114253] = 33, + [113817] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5322), 1, + anon_sym_extends, + ACTIONS(5391), 1, + anon_sym_EQ, + STATE(3303), 1, + sym_comment, + ACTIONS(5395), 2, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5398), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5389), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, + anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, - ACTIONS(6658), 1, - anon_sym_PERCENT, - ACTIONS(6660), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, anon_sym_LT, - ACTIONS(6668), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5393), 23, + sym__ternary_qmark, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, - ACTIONS(6670), 1, anon_sym_PIPE_PIPE, - ACTIONS(6672), 1, - anon_sym_AMP, - ACTIONS(6674), 1, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, - ACTIONS(6676), 1, - anon_sym_PIPE, - ACTIONS(6678), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6680), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3454), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6648), 2, + anon_sym_BQUOTE, + anon_sym_satisfies, + [113879] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5579), 1, + anon_sym_LBRACK, + STATE(3304), 1, + sym_comment, + STATE(4741), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 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(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [113947] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2146), 1, + anon_sym_EQ, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(3581), 1, + anon_sym_extends, + STATE(3305), 1, + sym_comment, + ACTIONS(5401), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5404), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2144), 11, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6650), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6654), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6656), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6664), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6666), 2, + ACTIONS(2150), 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, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6662), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [114363] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [114009] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4405), 1, + anon_sym_EQ, + ACTIONS(5613), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(6687), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3455), 1, + STATE(3306), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5463), 12, + ACTIONS(5368), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5616), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4238), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5465), 16, + ACTIONS(4242), 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, @@ -320972,8 +308346,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_satisfies, - [114437] = 12, + [114071] = 20, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -320982,46 +308359,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(2993), 1, + anon_sym_readonly, + ACTIONS(2997), 1, + anon_sym_override, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3456), 1, + ACTIONS(6093), 1, + anon_sym_STAR, + ACTIONS(6548), 1, + anon_sym_COMMA, + ACTIONS(6692), 1, + anon_sym_RBRACE, + STATE(3307), 1, sym_comment, - STATE(4942), 1, + STATE(3632), 1, + sym_override_modifier, + STATE(4672), 1, sym__property_name, + STATE(5959), 1, + aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(985), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2989), 23, + ACTIONS(2989), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -321029,7 +308414,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114505] = 12, + [114155] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6654), 1, + anon_sym_GT_GT, + ACTIONS(6658), 1, + anon_sym_AMP, + ACTIONS(6660), 1, + anon_sym_CARET, + ACTIONS(6662), 1, + anon_sym_PIPE, + ACTIONS(6666), 1, + anon_sym_PERCENT, + ACTIONS(6668), 1, + anon_sym_STAR_STAR, + ACTIONS(6670), 1, + anon_sym_LT, + ACTIONS(6684), 1, + anon_sym_AMP_AMP, + ACTIONS(6686), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6688), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6690), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3308), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6650), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6656), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6674), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6676), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6672), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [114265] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321038,21 +308500,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3457), 1, + STATE(3309), 1, sym_comment, - STATE(4904), 1, + STATE(4742), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -321085,170 +308547,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [114573] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5415), 1, - anon_sym_LBRACK, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(5453), 1, - anon_sym_BANG, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, - anon_sym_GT_GT, - ACTIONS(6658), 1, - anon_sym_PERCENT, - ACTIONS(6660), 1, - anon_sym_LT, - ACTIONS(6668), 1, - anon_sym_AMP_AMP, - ACTIONS(6670), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6672), 1, - anon_sym_AMP, - ACTIONS(6674), 1, - anon_sym_CARET, - ACTIONS(6676), 1, - anon_sym_PIPE, - ACTIONS(6678), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6680), 1, - sym__ternary_qmark, - STATE(3458), 1, - sym_comment, - STATE(3582), 1, - sym_type_arguments, - STATE(6311), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6648), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6650), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6654), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6656), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6664), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6666), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(3272), 2, - sym_template_string, - sym_arguments, - ACTIONS(6662), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [114683] = 33, + [114333] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, + ACTIONS(6654), 1, anon_sym_GT_GT, ACTIONS(6658), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(6660), 1, - anon_sym_LT, + anon_sym_CARET, + ACTIONS(6662), 1, + anon_sym_PIPE, + ACTIONS(6666), 1, + anon_sym_PERCENT, ACTIONS(6668), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(6670), 1, + anon_sym_LT, + ACTIONS(6684), 1, + anon_sym_AMP_AMP, + ACTIONS(6686), 1, anon_sym_PIPE_PIPE, - ACTIONS(6672), 1, - anon_sym_AMP, - ACTIONS(6674), 1, - anon_sym_CARET, - ACTIONS(6676), 1, - anon_sym_PIPE, - ACTIONS(6678), 1, + ACTIONS(6688), 1, anon_sym_QMARK_QMARK, - ACTIONS(6680), 1, + ACTIONS(6690), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3459), 1, + STATE(3310), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6648), 2, + ACTIONS(6650), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6650), 2, + ACTIONS(6652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6654), 2, + ACTIONS(6656), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6656), 2, + ACTIONS(6664), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6664), 2, + ACTIONS(6674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6666), 2, + ACTIONS(6676), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6662), 3, + ACTIONS(6672), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [114793] = 6, + [114443] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4363), 1, + ACTIONS(4364), 1, anon_sym_EQ, - STATE(3460), 1, + STATE(3311), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -321262,12 +308647,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 26, + ACTIONS(4242), 26, sym__ternary_qmark, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -321288,117 +308674,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - anon_sym_implements, - [114849] = 33, + [114499] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5579), 1, + anon_sym_LBRACK, + STATE(3312), 1, + sym_comment, + STATE(4682), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 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(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [114567] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, + ACTIONS(6654), 1, anon_sym_GT_GT, ACTIONS(6658), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(6660), 1, - anon_sym_LT, + anon_sym_CARET, + ACTIONS(6662), 1, + anon_sym_PIPE, + ACTIONS(6666), 1, + anon_sym_PERCENT, ACTIONS(6668), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(6670), 1, + anon_sym_LT, + ACTIONS(6684), 1, + anon_sym_AMP_AMP, + ACTIONS(6686), 1, anon_sym_PIPE_PIPE, - ACTIONS(6672), 1, - anon_sym_AMP, - ACTIONS(6674), 1, - anon_sym_CARET, - ACTIONS(6676), 1, - anon_sym_PIPE, - ACTIONS(6678), 1, + ACTIONS(6688), 1, anon_sym_QMARK_QMARK, - ACTIONS(6680), 1, + ACTIONS(6690), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3461), 1, + STATE(3313), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6648), 2, + ACTIONS(6650), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6650), 2, + ACTIONS(6652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6654), 2, + ACTIONS(6656), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6656), 2, + ACTIONS(6664), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6664), 2, + ACTIONS(6674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6666), 2, + ACTIONS(6676), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6662), 3, + ACTIONS(6672), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [114959] = 16, + [114677] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1055), 1, - anon_sym_RBRACE, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3462), 1, + STATE(3314), 1, sym_comment, - STATE(4902), 1, + STATE(4669), 1, sym__property_name, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(6287), 1, - aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(985), 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, @@ -321426,295 +308863,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115035] = 11, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(6660), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3463), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5800), 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(5802), 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, - [115101] = 33, + [114745] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, + ACTIONS(6654), 1, anon_sym_GT_GT, ACTIONS(6658), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(6660), 1, - anon_sym_LT, + anon_sym_CARET, + ACTIONS(6662), 1, + anon_sym_PIPE, + ACTIONS(6666), 1, + anon_sym_PERCENT, ACTIONS(6668), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(6670), 1, + anon_sym_LT, + ACTIONS(6684), 1, + anon_sym_AMP_AMP, + ACTIONS(6686), 1, anon_sym_PIPE_PIPE, - ACTIONS(6672), 1, - anon_sym_AMP, - ACTIONS(6674), 1, - anon_sym_CARET, - ACTIONS(6676), 1, - anon_sym_PIPE, - ACTIONS(6678), 1, + ACTIONS(6688), 1, anon_sym_QMARK_QMARK, - ACTIONS(6680), 1, + ACTIONS(6690), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3464), 1, + STATE(3315), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6648), 2, + ACTIONS(6650), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6650), 2, + ACTIONS(6652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6654), 2, + ACTIONS(6656), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6656), 2, + ACTIONS(6664), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6664), 2, + ACTIONS(6674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6666), 2, + ACTIONS(6676), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6662), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [115211] = 14, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(6690), 1, - anon_sym_LT, - STATE(2461), 1, - sym_type_arguments, - STATE(3465), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5785), 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(5787), 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, + ACTIONS(6672), 3, anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_satisfies, - [115283] = 33, + [114855] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, + ACTIONS(6654), 1, anon_sym_GT_GT, ACTIONS(6658), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(6660), 1, - anon_sym_LT, + anon_sym_CARET, + ACTIONS(6662), 1, + anon_sym_PIPE, + ACTIONS(6666), 1, + anon_sym_PERCENT, ACTIONS(6668), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(6670), 1, + anon_sym_LT, + ACTIONS(6684), 1, + anon_sym_AMP_AMP, + ACTIONS(6686), 1, anon_sym_PIPE_PIPE, - ACTIONS(6672), 1, - anon_sym_AMP, - ACTIONS(6674), 1, - anon_sym_CARET, - ACTIONS(6676), 1, - anon_sym_PIPE, - ACTIONS(6678), 1, + ACTIONS(6688), 1, anon_sym_QMARK_QMARK, - ACTIONS(6680), 1, + ACTIONS(6690), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3466), 1, + STATE(3316), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6648), 2, + ACTIONS(6650), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6650), 2, + ACTIONS(6652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6654), 2, + ACTIONS(6656), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6656), 2, + ACTIONS(6664), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6664), 2, + ACTIONS(6674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6666), 2, + ACTIONS(6676), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6662), 3, + ACTIONS(6672), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [115393] = 9, + [114965] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4238), 1, + ACTIONS(4424), 1, anon_sym_EQ, - ACTIONS(5169), 1, - anon_sym_extends, - STATE(3467), 1, - sym_comment, - ACTIONS(5779), 2, - anon_sym_RBRACE, + ACTIONS(5613), 1, anon_sym_LBRACK, - ACTIONS(5782), 2, + STATE(3317), 1, + sym_comment, + ACTIONS(5368), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5616), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4218), 11, + ACTIONS(4238), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -321722,11 +309046,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4242), 23, sym__ternary_qmark, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_of, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -321746,72 +309070,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115455] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - STATE(3468), 1, - sym_comment, - STATE(4449), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(4492), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [115523] = 6, + [115027] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5261), 1, - anon_sym_extends, - STATE(3469), 1, + ACTIONS(4352), 1, + anon_sym_EQ, + STATE(3318), 1, sym_comment, - ACTIONS(5357), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -321825,13 +309093,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5359), 26, + ACTIONS(4242), 26, sym__ternary_qmark, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -321852,39 +309119,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [115579] = 12, + anon_sym_implements, + [115083] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3470), 1, + STATE(3319), 1, sym_comment, - STATE(4974), 1, + STATE(4314), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, + 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(2989), 23, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -321908,7 +309176,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115647] = 12, + [115151] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321917,29 +309185,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3471), 1, + STATE(3320), 1, sym_comment, - STATE(4922), 1, + STATE(4824), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, + ACTIONS(985), 8, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, + anon_sym_PIPE_RBRACE, ACTIONS(2989), 23, anon_sym_export, anon_sym_type, @@ -321964,7 +309232,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115715] = 12, + [115219] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6654), 1, + anon_sym_GT_GT, + ACTIONS(6658), 1, + anon_sym_AMP, + ACTIONS(6660), 1, + anon_sym_CARET, + ACTIONS(6662), 1, + anon_sym_PIPE, + ACTIONS(6666), 1, + anon_sym_PERCENT, + ACTIONS(6668), 1, + anon_sym_STAR_STAR, + ACTIONS(6670), 1, + anon_sym_LT, + ACTIONS(6684), 1, + anon_sym_AMP_AMP, + ACTIONS(6686), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6688), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6690), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3321), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6650), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6656), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6674), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6676), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6672), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [115329] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -321973,21 +309318,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3472), 1, + STATE(3322), 1, sym_comment, - STATE(4826), 1, + STATE(4767), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -322020,347 +309365,301 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [115783] = 33, + [115397] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, + ACTIONS(6654), 1, anon_sym_GT_GT, ACTIONS(6658), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(6660), 1, - anon_sym_LT, + anon_sym_CARET, + ACTIONS(6662), 1, + anon_sym_PIPE, + ACTIONS(6666), 1, + anon_sym_PERCENT, ACTIONS(6668), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(6670), 1, + anon_sym_LT, + ACTIONS(6684), 1, + anon_sym_AMP_AMP, + ACTIONS(6686), 1, anon_sym_PIPE_PIPE, - ACTIONS(6672), 1, - anon_sym_AMP, - ACTIONS(6674), 1, - anon_sym_CARET, - ACTIONS(6676), 1, - anon_sym_PIPE, - ACTIONS(6678), 1, + ACTIONS(6688), 1, anon_sym_QMARK_QMARK, - ACTIONS(6680), 1, + ACTIONS(6690), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3473), 1, + STATE(3323), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6648), 2, + ACTIONS(6650), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6650), 2, + ACTIONS(6652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6654), 2, + ACTIONS(6656), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6656), 2, + ACTIONS(6664), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6664), 2, + ACTIONS(6674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6666), 2, + ACTIONS(6676), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6662), 3, + ACTIONS(6672), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [115893] = 33, + [115507] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, - anon_sym_GT_GT, - ACTIONS(6658), 1, - anon_sym_PERCENT, - ACTIONS(6660), 1, - anon_sym_LT, - ACTIONS(6668), 1, - anon_sym_AMP_AMP, - ACTIONS(6670), 1, - anon_sym_PIPE_PIPE, - ACTIONS(6672), 1, - anon_sym_AMP, - ACTIONS(6674), 1, - anon_sym_CARET, - ACTIONS(6676), 1, - anon_sym_PIPE, - ACTIONS(6678), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6680), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3474), 1, + ACTIONS(5575), 1, + anon_sym_EQ, + ACTIONS(5964), 1, + anon_sym_COLON, + STATE(3324), 1, sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6648), 2, + ACTIONS(5619), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5573), 13, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6650), 2, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6654), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6656), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6664), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6666), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6662), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [116003] = 33, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5577), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4915), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5078), 1, - anon_sym_as, - ACTIONS(5082), 1, - anon_sym_BANG, - ACTIONS(5088), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, - anon_sym_satisfies, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, - anon_sym_GT_GT, - ACTIONS(6658), 1, - anon_sym_PERCENT, - ACTIONS(6660), 1, - anon_sym_LT, - ACTIONS(6668), 1, anon_sym_AMP_AMP, - ACTIONS(6670), 1, anon_sym_PIPE_PIPE, - ACTIONS(6672), 1, - anon_sym_AMP, - ACTIONS(6674), 1, - anon_sym_CARET, - ACTIONS(6676), 1, - anon_sym_PIPE, - ACTIONS(6678), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6680), 1, - sym__ternary_qmark, - STATE(2461), 1, - sym_type_arguments, - STATE(3475), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6648), 2, - anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6650), 2, - anon_sym_in, - anon_sym_GT, - ACTIONS(6654), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6656), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6664), 2, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6666), 2, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6662), 3, - anon_sym_LT_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [116113] = 33, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [115567] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, + ACTIONS(6654), 1, anon_sym_GT_GT, ACTIONS(6658), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(6660), 1, - anon_sym_LT, + anon_sym_CARET, + ACTIONS(6662), 1, + anon_sym_PIPE, + ACTIONS(6666), 1, + anon_sym_PERCENT, ACTIONS(6668), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(6670), 1, + anon_sym_LT, + ACTIONS(6684), 1, + anon_sym_AMP_AMP, + ACTIONS(6686), 1, anon_sym_PIPE_PIPE, - ACTIONS(6672), 1, - anon_sym_AMP, - ACTIONS(6674), 1, - anon_sym_CARET, - ACTIONS(6676), 1, - anon_sym_PIPE, - ACTIONS(6678), 1, + ACTIONS(6688), 1, anon_sym_QMARK_QMARK, - ACTIONS(6680), 1, + ACTIONS(6690), 1, sym__ternary_qmark, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3476), 1, + STATE(3325), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6648), 2, + ACTIONS(6650), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6650), 2, + ACTIONS(6652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6654), 2, + ACTIONS(6656), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6656), 2, + ACTIONS(6664), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6664), 2, + ACTIONS(6674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6666), 2, + ACTIONS(6676), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6662), 3, + ACTIONS(6672), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [116223] = 8, + [115677] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5524), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3477), 1, + STATE(3326), 1, sym_comment, - ACTIONS(4973), 2, + STATE(4754), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 8, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5527), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 10, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [115745] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(6152), 1, + sym_regex_flags, + STATE(3327), 1, + sym_comment, + ACTIONS(6148), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 24, - sym__automatic_semicolon, + anon_sym_instanceof, + anon_sym_satisfies, + anon_sym_implements, + ACTIONS(6150), 22, sym__ternary_qmark, - anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -322375,77 +309674,151 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [115801] = 30, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5571), 1, + anon_sym_BANG, + ACTIONS(6654), 1, + anon_sym_GT_GT, + ACTIONS(6658), 1, + anon_sym_AMP, + ACTIONS(6660), 1, + anon_sym_CARET, + ACTIONS(6662), 1, + anon_sym_PIPE, + ACTIONS(6666), 1, + anon_sym_PERCENT, + ACTIONS(6668), 1, + anon_sym_STAR_STAR, + ACTIONS(6670), 1, + anon_sym_LT, + ACTIONS(6684), 1, + anon_sym_AMP_AMP, + ACTIONS(6686), 1, + anon_sym_PIPE_PIPE, + STATE(2313), 1, + sym_type_arguments, + STATE(3328), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6650), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6656), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6674), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6676), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6672), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5569), 4, + sym__ternary_qmark, + anon_sym_as, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [116283] = 21, + [115905] = 23, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, + ACTIONS(6654), 1, anon_sym_GT_GT, - ACTIONS(6658), 1, + ACTIONS(6666), 1, anon_sym_PERCENT, - ACTIONS(6660), 1, + ACTIONS(6668), 1, + anon_sym_STAR_STAR, + ACTIONS(6670), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3478), 1, + STATE(3329), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6648), 2, + ACTIONS(6650), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6654), 2, + ACTIONS(6652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6656), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6656), 2, + ACTIONS(6664), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5409), 7, + ACTIONS(6672), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5571), 5, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 12, + ACTIONS(5569), 9, 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, - [116369] = 16, + [115995] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -322456,27 +309829,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5151), 1, + ACTIONS(5039), 1, anon_sym_EQ, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6232), 1, + ACTIONS(6185), 1, anon_sym_RBRACE, - STATE(3479), 1, + STATE(3330), 1, sym_comment, - STATE(4902), 1, + STATE(4672), 1, sym__property_name, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - STATE(6287), 1, + STATE(5839), 1, aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -322505,242 +309878,276 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [116445] = 30, + [116071] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(5422), 1, + anon_sym_BANG, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5430), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5409), 1, - anon_sym_BANG, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, + ACTIONS(6654), 1, anon_sym_GT_GT, ACTIONS(6658), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(6660), 1, - anon_sym_LT, + anon_sym_CARET, + ACTIONS(6662), 1, + anon_sym_PIPE, + ACTIONS(6666), 1, + anon_sym_PERCENT, ACTIONS(6668), 1, - anon_sym_AMP_AMP, + anon_sym_STAR_STAR, ACTIONS(6670), 1, + anon_sym_LT, + ACTIONS(6684), 1, + anon_sym_AMP_AMP, + ACTIONS(6686), 1, anon_sym_PIPE_PIPE, - ACTIONS(6672), 1, - anon_sym_AMP, - ACTIONS(6674), 1, - anon_sym_CARET, - ACTIONS(6676), 1, - anon_sym_PIPE, - STATE(2461), 1, - sym_type_arguments, - STATE(3480), 1, + ACTIONS(6688), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6690), 1, + sym__ternary_qmark, + STATE(3331), 1, sym_comment, - STATE(6297), 1, + STATE(3434), 1, + sym_type_arguments, + STATE(5716), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6648), 2, + ACTIONS(6650), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6650), 2, + ACTIONS(6652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6654), 2, + ACTIONS(6656), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6656), 2, + ACTIONS(6664), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6664), 2, + ACTIONS(6674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6666), 2, + ACTIONS(6676), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(3068), 2, sym_template_string, sym_arguments, - ACTIONS(6662), 3, + ACTIONS(6672), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 4, - sym__ternary_qmark, - anon_sym_as, - anon_sym_QMARK_QMARK, - anon_sym_satisfies, - [116549] = 28, + [116181] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6176), 1, + anon_sym_RBRACE, + STATE(3332), 1, + sym_comment, + STATE(4672), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [116257] = 18, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5409), 1, - anon_sym_BANG, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, - anon_sym_GT_GT, - ACTIONS(6658), 1, + ACTIONS(6666), 1, anon_sym_PERCENT, - ACTIONS(6660), 1, + ACTIONS(6668), 1, + anon_sym_STAR_STAR, + ACTIONS(6694), 1, anon_sym_LT, - ACTIONS(6672), 1, - anon_sym_AMP, - ACTIONS(6674), 1, - anon_sym_CARET, - ACTIONS(6676), 1, - anon_sym_PIPE, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3481), 1, + STATE(3333), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6648), 2, + ACTIONS(6650), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6650), 2, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 10, + anon_sym_BANG, anon_sym_in, anon_sym_GT, - ACTIONS(6654), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6656), 2, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6664), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6666), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6662), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 6, + ACTIONS(5569), 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, - [116649] = 29, + [116337] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(5613), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5409), 1, - anon_sym_BANG, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, - anon_sym_GT_GT, - ACTIONS(6658), 1, - anon_sym_PERCENT, - ACTIONS(6660), 1, - anon_sym_LT, - ACTIONS(6668), 1, - anon_sym_AMP_AMP, - ACTIONS(6672), 1, + STATE(3334), 1, + sym_comment, + ACTIONS(5368), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5616), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(6674), 1, - anon_sym_CARET, - ACTIONS(6676), 1, anon_sym_PIPE, - STATE(2461), 1, - sym_type_arguments, - STATE(3482), 1, - sym_comment, - STATE(6297), 1, - sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6648), 2, + ACTIONS(4238), 10, anon_sym_STAR, - anon_sym_SLASH, - ACTIONS(6650), 2, + anon_sym_BANG, anon_sym_in, - anon_sym_GT, - ACTIONS(6654), 2, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - ACTIONS(6656), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6664), 2, + anon_sym_SLASH, + anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6666), 2, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(6662), 3, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5407), 5, + ACTIONS(4242), 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, - [116751] = 8, + [116397] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5766), 1, + ACTIONS(4420), 1, + anon_sym_EQ, + ACTIONS(5613), 1, anon_sym_LBRACK, - STATE(3483), 1, + STATE(3335), 1, sym_comment, - ACTIONS(5321), 2, + ACTIONS(5368), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(5769), 3, + ACTIONS(5616), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5762), 10, + ACTIONS(4238), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -322751,12 +310158,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5764), 24, - sym__automatic_semicolon, + ACTIONS(4242), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -322776,86 +310182,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [116811] = 19, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6104), 1, - anon_sym_STAR, - STATE(3484), 1, - sym_comment, - STATE(3765), 1, - sym_override_modifier, - STATE(4902), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6693), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [116893] = 8, + [116459] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5779), 1, + ACTIONS(5858), 1, anon_sym_LBRACK, - STATE(3485), 1, + STATE(3336), 1, sym_comment, - ACTIONS(5169), 2, + ACTIONS(4975), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(5782), 3, + ACTIONS(5861), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(4238), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -322866,7 +310209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 24, + ACTIONS(4242), 24, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -322891,337 +310234,240 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [116953] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [116519] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5510), 1, - anon_sym_LBRACK, - STATE(3486), 1, - sym_comment, - STATE(4944), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4240), 1, anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(5368), 1, + anon_sym_extends, + STATE(3337), 1, + sym_comment, + ACTIONS(5613), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5616), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4238), 11, + anon_sym_STAR, anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + 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, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [117021] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - STATE(3487), 1, - sym_comment, - STATE(4390), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4242), 23, + sym__ternary_qmark, + anon_sym_as, anon_sym_COMMA, - anon_sym_BANG, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4492), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [117089] = 19, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_satisfies, + [116581] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6645), 1, - anon_sym_LT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6654), 1, + anon_sym_GT_GT, ACTIONS(6658), 1, + anon_sym_AMP, + ACTIONS(6660), 1, + anon_sym_CARET, + ACTIONS(6662), 1, + anon_sym_PIPE, + ACTIONS(6666), 1, anon_sym_PERCENT, - STATE(2461), 1, + ACTIONS(6668), 1, + anon_sym_STAR_STAR, + ACTIONS(6670), 1, + anon_sym_LT, + ACTIONS(6684), 1, + anon_sym_AMP_AMP, + ACTIONS(6686), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6688), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6690), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(3488), 1, + STATE(3338), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6648), 2, + ACTIONS(6650), 2, anon_sym_STAR, anon_sym_SLASH, + ACTIONS(6652), 2, + anon_sym_in, + anon_sym_GT, ACTIONS(6656), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6664), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2759), 2, - sym_template_string, - sym_arguments, - ACTIONS(5409), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 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, + ACTIONS(6676), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6672), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_satisfies, - [117171] = 23, + [116691] = 27, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, + ACTIONS(6654), 1, anon_sym_GT_GT, ACTIONS(6658), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(6660), 1, + anon_sym_CARET, + ACTIONS(6666), 1, + anon_sym_PERCENT, + ACTIONS(6668), 1, + anon_sym_STAR_STAR, + ACTIONS(6670), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3489), 1, + STATE(3339), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6648), 2, + ACTIONS(5571), 2, + anon_sym_BANG, + anon_sym_PIPE, + ACTIONS(6650), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6650), 2, + ACTIONS(6652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6654), 2, + ACTIONS(6656), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6656), 2, + ACTIONS(6664), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2759), 2, + ACTIONS(6674), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6676), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6662), 3, + ACTIONS(6672), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5409), 5, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5407), 9, + ACTIONS(5569), 6, 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, - [117261] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5510), 1, - anon_sym_LBRACK, - STATE(3490), 1, - sym_comment, - STATE(4835), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 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(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [117329] = 6, + [116789] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6088), 1, - sym_regex_flags, - STATE(3491), 1, + ACTIONS(5753), 1, + anon_sym_LBRACK, + STATE(3340), 1, sym_comment, - ACTIONS(6084), 17, + ACTIONS(5306), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5756), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5729), 10, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_satisfies, - anon_sym_implements, - ACTIONS(6086), 22, + ACTIONS(5731), 24, + sym__automatic_semicolon, sym__ternary_qmark, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -323236,47 +310482,49 @@ 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, - [117385] = 19, + anon_sym_satisfies, + [116849] = 19, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5078), 1, + ACTIONS(5071), 1, anon_sym_as, - ACTIONS(5082), 1, + ACTIONS(5075), 1, anon_sym_BANG, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5122), 1, + ACTIONS(5115), 1, anon_sym_satisfies, - ACTIONS(6643), 1, + ACTIONS(6668), 1, anon_sym_STAR_STAR, - ACTIONS(6645), 1, + ACTIONS(6694), 1, anon_sym_LT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3492), 1, + STATE(3341), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5409), 11, + ACTIONS(5571), 11, anon_sym_STAR, anon_sym_in, anon_sym_GT, @@ -323288,7 +310536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 13, + ACTIONS(5569), 13, sym__ternary_qmark, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -323302,43 +310550,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [117467] = 18, + [116931] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6207), 1, + anon_sym_RBRACE, + STATE(3342), 1, + sym_comment, + STATE(4672), 1, + sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [117007] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, - anon_sym_LBRACK, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6645), 1, + ACTIONS(6670), 1, anon_sym_LT, - ACTIONS(6658), 1, - anon_sym_PERCENT, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3493), 1, + STATE(3343), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6648), 2, - anon_sym_STAR, - anon_sym_SLASH, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(5409), 10, + ACTIONS(5479), 12, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -323347,52 +310640,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, + anon_sym_SLASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5407), 14, + ACTIONS(5481), 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, - [117547] = 12, + [117073] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(1051), 1, + anon_sym_RBRACE, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3494), 1, + STATE(3344), 1, sym_comment, - STATE(4960), 1, + STATE(4672), 1, sym__property_name, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(985), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -323420,248 +310725,412 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117615] = 22, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(223), 1, - anon_sym_STAR, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2452), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6700), 1, - anon_sym_async, - ACTIONS(6702), 1, - anon_sym_static, - ACTIONS(6704), 1, - anon_sym_readonly, - ACTIONS(6710), 1, - anon_sym_override, - STATE(3495), 1, - sym_comment, - STATE(3744), 1, - sym_accessibility_modifier, - STATE(3771), 1, - sym_override_modifier, - STATE(4782), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6698), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6706), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(6708), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(6696), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(6696), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [117703] = 27, + [117149] = 26, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, + ACTIONS(6654), 1, anon_sym_GT_GT, ACTIONS(6658), 1, + anon_sym_AMP, + ACTIONS(6666), 1, anon_sym_PERCENT, - ACTIONS(6660), 1, + ACTIONS(6668), 1, + anon_sym_STAR_STAR, + ACTIONS(6670), 1, anon_sym_LT, - ACTIONS(6672), 1, - anon_sym_AMP, - ACTIONS(6674), 1, - anon_sym_CARET, - STATE(2461), 1, + STATE(2313), 1, sym_type_arguments, - STATE(3496), 1, + STATE(3345), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5409), 2, + ACTIONS(5571), 2, anon_sym_BANG, anon_sym_PIPE, - ACTIONS(6648), 2, + ACTIONS(6650), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6650), 2, + ACTIONS(6652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6654), 2, + ACTIONS(6656), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6656), 2, + ACTIONS(6664), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6674), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6676), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6672), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5569), 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, + [117245] = 25, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(6654), 1, + anon_sym_GT_GT, + ACTIONS(6666), 1, + anon_sym_PERCENT, + ACTIONS(6668), 1, + anon_sym_STAR_STAR, + ACTIONS(6670), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3346), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6650), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6656), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, ACTIONS(6664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6666), 2, + ACTIONS(6676), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6662), 3, + ACTIONS(5571), 3, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6672), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 6, + ACTIONS(5569), 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, - [117801] = 7, + [117339] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4288), 1, - anon_sym_EQ, - STATE(3497), 1, + ACTIONS(4973), 1, + anon_sym_QMARK, + ACTIONS(4975), 1, + anon_sym_extends, + STATE(3347), 1, sym_comment, - ACTIONS(4352), 3, + ACTIONS(5861), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5858), 3, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(4218), 13, + ACTIONS(4238), 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(4242), 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, + [117401] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6654), 1, + anon_sym_GT_GT, + ACTIONS(6658), 1, anon_sym_AMP, + ACTIONS(6660), 1, + anon_sym_CARET, + ACTIONS(6662), 1, anon_sym_PIPE, + ACTIONS(6666), 1, + anon_sym_PERCENT, + ACTIONS(6668), 1, + anon_sym_STAR_STAR, + ACTIONS(6670), 1, + anon_sym_LT, + ACTIONS(6684), 1, + anon_sym_AMP_AMP, + ACTIONS(6686), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6688), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6690), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3348), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6650), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6656), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6664), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, + ACTIONS(6674), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6676), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6672), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [117511] = 19, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(6666), 1, + anon_sym_PERCENT, + ACTIONS(6668), 1, + anon_sym_STAR_STAR, + ACTIONS(6694), 1, anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3349), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6650), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6664), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 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(4222), 23, + ACTIONS(5569), 14, 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, - [117859] = 9, + [117593] = 29, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4393), 1, - anon_sym_EQ, - ACTIONS(5779), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, anon_sym_LBRACK, - STATE(3498), 1, - sym_comment, - ACTIONS(5169), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5782), 3, - anon_sym_GT, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5571), 1, + anon_sym_BANG, + ACTIONS(6654), 1, + anon_sym_GT_GT, + ACTIONS(6658), 1, anon_sym_AMP, + ACTIONS(6660), 1, + anon_sym_CARET, + ACTIONS(6662), 1, anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(6666), 1, + anon_sym_PERCENT, + ACTIONS(6668), 1, + anon_sym_STAR_STAR, + ACTIONS(6670), 1, + anon_sym_LT, + ACTIONS(6684), 1, + anon_sym_AMP_AMP, + STATE(2313), 1, + sym_type_arguments, + STATE(3350), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6650), 2, anon_sym_STAR, - anon_sym_BANG, + anon_sym_SLASH, + ACTIONS(6652), 2, anon_sym_in, - anon_sym_GT_GT, + anon_sym_GT, + ACTIONS(6656), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6664), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, + ACTIONS(6674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 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, + ACTIONS(6676), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6672), 3, + anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5569), 5, + sym__ternary_qmark, + anon_sym_as, + anon_sym_PIPE_PIPE, + anon_sym_QMARK_QMARK, anon_sym_satisfies, - [117921] = 12, + [117695] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -323670,46 +311139,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(2993), 1, + anon_sym_readonly, + ACTIONS(2997), 1, + anon_sym_override, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3499), 1, + ACTIONS(6093), 1, + anon_sym_STAR, + STATE(3351), 1, sym_comment, - STATE(4935), 1, + STATE(3632), 1, + sym_override_modifier, + STATE(4672), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6697), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(985), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2989), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -323717,50 +311193,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [117989] = 16, + [117777] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5151), 1, + ACTIONS(4640), 1, + sym__automatic_semicolon, + STATE(3352), 1, + sym_comment, + ACTIONS(985), 10, anon_sym_EQ, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6106), 1, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(3500), 1, - sym_comment, - STATE(4902), 1, - sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(2452), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -323777,59 +311243,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118065] = 16, + [117833] = 22, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, + ACTIONS(223), 1, + anon_sym_STAR, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, + ACTIONS(2476), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6230), 1, - anon_sym_RBRACE, - STATE(3501), 1, + ACTIONS(6704), 1, + anon_sym_async, + ACTIONS(6706), 1, + anon_sym_static, + ACTIONS(6708), 1, + anon_sym_readonly, + ACTIONS(6714), 1, + anon_sym_override, + STATE(3353), 1, sym_comment, - STATE(4902), 1, + STATE(3593), 1, + sym_accessibility_modifier, + STATE(3621), 1, + sym_override_modifier, + STATE(4447), 1, sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + ACTIONS(6702), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6710), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(6712), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(6538), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(6700), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -323837,91 +311309,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118141] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4397), 1, - anon_sym_EQ, - ACTIONS(5779), 1, - anon_sym_LBRACK, - STATE(3502), 1, - sym_comment, - ACTIONS(5169), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5782), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 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(4222), 23, - sym__ternary_qmark, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_of, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_satisfies, - [118203] = 16, + [117921] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(1022), 1, + ACTIONS(1045), 1, anon_sym_RBRACE, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5151), 1, + ACTIONS(5039), 1, anon_sym_EQ, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3503), 1, + STATE(3354), 1, sym_comment, - STATE(4902), 1, + STATE(4672), 1, sym__property_name, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -323950,110 +311369,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118279] = 26, + [117997] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4915), 1, + ACTIONS(4943), 1, anon_sym_LBRACK, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(6643), 1, - anon_sym_STAR_STAR, - ACTIONS(6652), 1, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6654), 1, anon_sym_GT_GT, ACTIONS(6658), 1, - anon_sym_PERCENT, + anon_sym_AMP, ACTIONS(6660), 1, + anon_sym_CARET, + ACTIONS(6662), 1, + anon_sym_PIPE, + ACTIONS(6666), 1, + anon_sym_PERCENT, + ACTIONS(6668), 1, + anon_sym_STAR_STAR, + ACTIONS(6670), 1, anon_sym_LT, - ACTIONS(6672), 1, - anon_sym_AMP, - STATE(2461), 1, + ACTIONS(6684), 1, + anon_sym_AMP_AMP, + ACTIONS(6686), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6688), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6690), 1, + sym__ternary_qmark, + STATE(2313), 1, sym_type_arguments, - STATE(3504), 1, + STATE(3355), 1, sym_comment, - STATE(6297), 1, + STATE(5791), 1, sym_optional_chain, - ACTIONS(5120), 2, + ACTIONS(5113), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5409), 2, - anon_sym_BANG, - anon_sym_PIPE, - ACTIONS(6648), 2, + ACTIONS(6650), 2, anon_sym_STAR, anon_sym_SLASH, - ACTIONS(6650), 2, + ACTIONS(6652), 2, anon_sym_in, anon_sym_GT, - ACTIONS(6654), 2, + ACTIONS(6656), 2, anon_sym_GT_GT_GT, anon_sym_LT_LT, - ACTIONS(6656), 2, + ACTIONS(6664), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6664), 2, + ACTIONS(6674), 2, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6666), 2, + ACTIONS(6676), 2, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, - STATE(2759), 2, + STATE(2549), 2, sym_template_string, sym_arguments, - ACTIONS(6662), 3, + ACTIONS(6672), 3, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5407), 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, - [118375] = 6, + [118107] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4636), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, sym__automatic_semicolon, - STATE(3505), 1, + ACTIONS(5579), 1, + anon_sym_LBRACK, + STATE(3356), 1, sym_comment, - ACTIONS(1043), 10, + STATE(4761), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 8, 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(2470), 29, + ACTIONS(2989), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -324070,17 +311502,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118431] = 6, + [118175] = 33, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3506), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6654), 1, + anon_sym_GT_GT, + ACTIONS(6658), 1, + anon_sym_AMP, + ACTIONS(6660), 1, + anon_sym_CARET, + ACTIONS(6662), 1, + anon_sym_PIPE, + ACTIONS(6666), 1, + anon_sym_PERCENT, + ACTIONS(6668), 1, + anon_sym_STAR_STAR, + ACTIONS(6670), 1, + anon_sym_LT, + ACTIONS(6684), 1, + anon_sym_AMP_AMP, + ACTIONS(6686), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6688), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6690), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3357), 1, sym_comment, - ACTIONS(5261), 2, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6650), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6656), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6674), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6676), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6672), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118285] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(6374), 1, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5357), 13, + STATE(3358), 1, + sym_comment, + ACTIONS(5252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -324094,13 +311602,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5359), 25, - sym__automatic_semicolon, + ACTIONS(5254), 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, @@ -324120,35 +311629,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [118487] = 12, + [118341] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6654), 1, + anon_sym_GT_GT, + ACTIONS(6658), 1, + anon_sym_AMP, + ACTIONS(6660), 1, + anon_sym_CARET, + ACTIONS(6662), 1, + anon_sym_PIPE, + ACTIONS(6666), 1, + anon_sym_PERCENT, + ACTIONS(6668), 1, + anon_sym_STAR_STAR, + ACTIONS(6670), 1, + anon_sym_LT, + ACTIONS(6684), 1, + anon_sym_AMP_AMP, + ACTIONS(6686), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6688), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6690), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3359), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6650), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6656), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6674), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6676), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6672), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118451] = 33, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5071), 1, + anon_sym_as, + ACTIONS(5075), 1, + anon_sym_BANG, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5115), 1, + anon_sym_satisfies, + ACTIONS(6654), 1, + anon_sym_GT_GT, + ACTIONS(6658), 1, + anon_sym_AMP, + ACTIONS(6660), 1, + anon_sym_CARET, + ACTIONS(6662), 1, + anon_sym_PIPE, + ACTIONS(6666), 1, + anon_sym_PERCENT, + ACTIONS(6668), 1, + anon_sym_STAR_STAR, + ACTIONS(6670), 1, + anon_sym_LT, + ACTIONS(6684), 1, + anon_sym_AMP_AMP, + ACTIONS(6686), 1, + anon_sym_PIPE_PIPE, + ACTIONS(6688), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6690), 1, + sym__ternary_qmark, + STATE(2313), 1, + sym_type_arguments, + STATE(3360), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6650), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6652), 2, + anon_sym_in, + anon_sym_GT, + ACTIONS(6656), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6664), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6674), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6676), 2, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(6672), 3, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118561] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(964), 1, + anon_sym_RBRACE, ACTIONS(1965), 1, anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3507), 1, + STATE(3361), 1, sym_comment, - STATE(4877), 1, + STATE(4672), 1, sym__property_name, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(985), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, @@ -324176,20 +311843,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118555] = 7, + [118637] = 21, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(6654), 1, + anon_sym_GT_GT, + ACTIONS(6666), 1, + anon_sym_PERCENT, + ACTIONS(6668), 1, + anon_sym_STAR_STAR, + ACTIONS(6670), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3362), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6650), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(6656), 2, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + ACTIONS(6664), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 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(5569), 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, + [118723] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4238), 1, + ACTIONS(4240), 1, anon_sym_EQ, - STATE(3508), 1, + STATE(3363), 1, sym_comment, - ACTIONS(4456), 3, + ACTIONS(4466), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(4218), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -324203,7 +311935,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4242), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -324227,7 +311959,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [118613] = 12, + [118781] = 16, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(6668), 1, + anon_sym_STAR_STAR, + ACTIONS(6694), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3364), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + ACTIONS(5113), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5571), 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(5569), 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, + [118857] = 14, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4943), 1, + anon_sym_LBRACK, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(6716), 1, + anon_sym_LT, + STATE(2313), 1, + sym_type_arguments, + STATE(3365), 1, + sym_comment, + STATE(5791), 1, + sym_optional_chain, + STATE(2549), 2, + sym_template_string, + sym_arguments, + ACTIONS(5678), 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(5680), 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, + [118929] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -324236,21 +312086,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3509), 1, + STATE(3366), 1, sym_comment, - STATE(4915), 1, + STATE(4712), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 8, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -324283,39 +312133,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118681] = 12, + [118997] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3510), 1, + ACTIONS(6719), 1, + anon_sym_readonly, + STATE(3367), 1, sym_comment, - STATE(4947), 1, + STATE(3697), 1, + sym_override_modifier, + STATE(4314), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 8, + ACTIONS(985), 6, 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(2989), 23, + ACTIONS(4496), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324324,14 +312178,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -324339,107 +312191,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118749] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5697), 1, - anon_sym_EQ, - ACTIONS(5935), 1, - anon_sym_COLON, - STATE(3511), 1, - sym_comment, - ACTIONS(5867), 2, - anon_sym_COMMA, - 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, - [118809] = 12, + [119070] = 25, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5510), 1, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4664), 1, + anon_sym_AT, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3512), 1, + ACTIONS(6721), 1, + anon_sym_STAR, + ACTIONS(6723), 1, + anon_sym_async, + ACTIONS(6725), 1, + anon_sym_static, + ACTIONS(6727), 1, + anon_sym_readonly, + ACTIONS(6731), 1, + anon_sym_declare, + ACTIONS(6733), 1, + anon_sym_abstract, + STATE(3368), 1, sym_comment, - STATE(4804), 1, + STATE(3507), 1, + sym_method_definition, + STATE(3544), 1, + sym_accessibility_modifier, + STATE(3568), 1, + aux_sym_export_statement_repeat1, + STATE(3636), 1, + sym_override_modifier, + STATE(3652), 1, + sym_decorator, + STATE(3893), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + ACTIONS(6729), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 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(2989), 23, + ACTIONS(4674), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + ACTIONS(4496), 13, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -324447,38 +312259,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [118877] = 7, + [119163] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3513), 1, + STATE(3369), 1, sym_comment, - ACTIONS(5139), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, - ACTIONS(5137), 4, + ACTIONS(5853), 3, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4218), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6735), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(6738), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -324498,25 +312308,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [118935] = 9, + [119218] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4403), 1, + ACTIONS(4316), 1, anon_sym_EQ, - ACTIONS(5779), 1, + ACTIONS(5613), 1, anon_sym_LBRACK, - STATE(3514), 1, + STATE(3370), 1, sym_comment, - ACTIONS(5169), 2, + ACTIONS(5368), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(5782), 3, + ACTIONS(5616), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(4238), 10, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -324527,11 +312337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4242), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -324551,38 +312360,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [118997] = 8, + [119279] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5524), 1, - anon_sym_LBRACK, - STATE(3515), 1, + ACTIONS(4332), 1, + anon_sym_EQ, + STATE(3371), 1, sym_comment, - ACTIONS(5527), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4973), 3, - anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4218), 11, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(4242), 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, @@ -324602,7 +312409,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [119056] = 13, + [119334] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -324611,30 +312418,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6712), 1, + ACTIONS(6264), 1, anon_sym_abstract, - STATE(3516), 1, + STATE(3372), 1, sym_comment, - STATE(4298), 1, + STATE(4171), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4492), 23, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324658,20 +312465,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119125] = 8, + [119403] = 18, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(2993), 1, + anon_sym_readonly, + ACTIONS(2997), 1, + anon_sym_override, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6093), 1, + anon_sym_STAR, + STATE(3373), 1, + sym_comment, + STATE(3632), 1, + sym_override_modifier, + STATE(4672), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6741), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [119482] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2144), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(6743), 1, + anon_sym_readonly, + STATE(3374), 1, + sym_comment, + STATE(3674), 1, + sym_override_modifier, + STATE(4171), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4496), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [119555] = 6, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5854), 1, - anon_sym_RBRACK, - ACTIONS(5911), 1, - anon_sym_COMMA, - STATE(3517), 1, + STATE(3375), 1, sym_comment, - ACTIONS(2142), 13, + ACTIONS(5727), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6745), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -324685,7 +312609,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2148), 23, + ACTIONS(6748), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -324709,57 +312633,109 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [119184] = 15, + [119610] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6093), 1, + anon_sym_STAR, + STATE(3376), 1, + sym_comment, + STATE(4672), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6697), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [119685] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(6714), 1, - anon_sym_readonly, - STATE(3518), 1, - sym_comment, - STATE(3813), 1, - sym_override_modifier, - STATE(4390), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(5039), 1, anon_sym_EQ, + STATE(3377), 1, + sym_comment, + ACTIONS(6025), 2, anon_sym_COMMA, - anon_sym_BANG, + anon_sym_RBRACE, + ACTIONS(985), 6, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4492), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(2452), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -324767,28 +312743,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119257] = 8, + [119744] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5151), 1, + ACTIONS(5039), 1, anon_sym_EQ, - STATE(3519), 1, + STATE(3378), 1, sym_comment, - ACTIONS(5925), 2, + ACTIONS(6025), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2474), 29, + ACTIONS(2454), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -324818,7 +312794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119316] = 13, + [119803] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -324827,30 +312803,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6716), 1, + ACTIONS(6751), 1, anon_sym_abstract, - STATE(3520), 1, + STATE(3379), 1, sym_comment, - STATE(4423), 1, + STATE(4309), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4492), 23, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324874,7 +312850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119385] = 18, + [119872] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -324883,21 +312859,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(2993), 1, - anon_sym_readonly, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5510), 1, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6104), 1, + ACTIONS(6093), 1, anon_sym_STAR, - STATE(3521), 1, + STATE(3380), 1, sym_comment, - STATE(3765), 1, - sym_override_modifier, - STATE(4902), 1, + STATE(4672), 1, sym__property_name, ACTIONS(2823), 2, sym_number, @@ -324905,29 +312875,32 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - ACTIONS(6718), 2, + ACTIONS(6697), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 18, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -324935,7 +312908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119464] = 13, + [119945] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -324944,30 +312917,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6206), 1, - anon_sym_abstract, - STATE(3522), 1, + ACTIONS(6753), 1, + anon_sym_readonly, + STATE(3381), 1, sym_comment, - STATE(4390), 1, + STATE(3645), 1, + sym_override_modifier, + STATE(4339), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4492), 23, + ACTIONS(4496), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -324976,73 +312953,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [119533] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6104), 1, - anon_sym_STAR, - STATE(3523), 1, - sym_comment, - STATE(4902), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - ACTIONS(6693), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -325050,18 +312966,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [119608] = 6, + [120018] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3524), 1, + STATE(3382), 1, sym_comment, - ACTIONS(5752), 3, + ACTIONS(5644), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6720), 13, + ACTIONS(6755), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -325075,7 +312991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6723), 23, + ACTIONS(6758), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -325099,78 +313015,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [119663] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(6726), 1, - anon_sym_readonly, - STATE(3525), 1, - sym_comment, - STATE(3837), 1, - sym_override_modifier, - STATE(4335), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4492), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [119736] = 8, + [120073] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5697), 1, - anon_sym_EQ, - ACTIONS(5867), 1, - anon_sym_RBRACK, - ACTIONS(5935), 1, - anon_sym_COMMA, - STATE(3526), 1, + STATE(3383), 1, sym_comment, - ACTIONS(5695), 13, + ACTIONS(2278), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6761), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -325184,7 +313040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5699), 23, + ACTIONS(6764), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -325208,23 +313064,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [119795] = 8, + [120128] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5779), 1, + ACTIONS(5858), 1, anon_sym_LBRACK, - STATE(3527), 1, + STATE(3384), 1, sym_comment, - ACTIONS(5782), 2, + ACTIONS(5861), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5169), 3, + ACTIONS(4975), 3, anon_sym_COMMA, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(4218), 11, + ACTIONS(4238), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -325236,7 +313092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(4242), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -325259,18 +313115,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [119854] = 6, + [120187] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3528), 1, + STATE(3385), 1, sym_comment, - ACTIONS(2158), 3, + ACTIONS(2270), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6728), 13, + ACTIONS(6767), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -325284,7 +313140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6731), 23, + ACTIONS(6770), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -325308,201 +313164,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [119909] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(6734), 1, - anon_sym_abstract, - STATE(3529), 1, - sym_comment, - STATE(4300), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4492), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [119978] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(6736), 1, - anon_sym_readonly, - STATE(3530), 1, - sym_comment, - STATE(3841), 1, - sym_override_modifier, - STATE(4303), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4492), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [120051] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4636), 1, - sym__automatic_semicolon, - STATE(3531), 1, - sym_comment, - ACTIONS(1043), 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(2474), 30, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - 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_abstract, - [120106] = 8, + [120242] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5766), 1, - anon_sym_LBRACK, - STATE(3532), 1, + STATE(3386), 1, sym_comment, - ACTIONS(5769), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5321), 3, + ACTIONS(5723), 3, anon_sym_COMMA, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(5762), 11, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(6773), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5764), 22, + ACTIONS(6776), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -325522,17 +313213,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120165] = 6, + [120297] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3533), 1, - sym_comment, - ACTIONS(5261), 2, + ACTIONS(4339), 1, + anon_sym_RBRACK, + ACTIONS(4369), 1, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5357), 13, + ACTIONS(4479), 1, + anon_sym_EQ, + STATE(3387), 1, + sym_comment, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -325546,12 +313240,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5359), 24, + ACTIONS(4242), 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_AMP_AMP, @@ -325571,7 +313264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120220] = 15, + [120356] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325580,39 +313273,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6104), 1, + ACTIONS(6093), 1, anon_sym_STAR, - STATE(3534), 1, + ACTIONS(6548), 1, + anon_sym_COMMA, + ACTIONS(6692), 1, + anon_sym_RBRACE, + STATE(3388), 1, sym_comment, - STATE(4902), 1, + STATE(4672), 1, sym__property_name, + STATE(5959), 1, + aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - ACTIONS(6693), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(2989), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -325629,75 +313324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [120293] = 25, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(4660), 1, - anon_sym_AT, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(6738), 1, - anon_sym_STAR, - ACTIONS(6740), 1, - anon_sym_async, - ACTIONS(6742), 1, - anon_sym_static, - ACTIONS(6744), 1, - anon_sym_readonly, - ACTIONS(6748), 1, - anon_sym_declare, - ACTIONS(6750), 1, - anon_sym_abstract, - STATE(3535), 1, - sym_comment, - STATE(3611), 1, - sym_method_definition, - STATE(3698), 1, - sym_accessibility_modifier, - STATE(3733), 1, - aux_sym_export_statement_repeat1, - STATE(3764), 1, - sym_override_modifier, - STATE(3812), 1, - sym_decorator, - STATE(4067), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6746), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4670), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - ACTIONS(4492), 13, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [120386] = 16, + [120433] = 16, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325706,19 +313333,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6104), 1, + ACTIONS(6093), 1, anon_sym_STAR, - ACTIONS(6605), 1, + ACTIONS(6548), 1, anon_sym_COMMA, - ACTIONS(6685), 1, + ACTIONS(6692), 1, anon_sym_RBRACE, - STATE(3536), 1, + STATE(3389), 1, sym_comment, - STATE(4902), 1, + STATE(4672), 1, sym__property_name, - STATE(5843), 1, + STATE(5959), 1, aux_sym_object_repeat1, ACTIONS(2823), 2, sym_number, @@ -325726,10 +313353,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, @@ -325756,63 +313383,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [120461] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, + [120508] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(6752), 1, - anon_sym_abstract, - STATE(3537), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3390), 1, sym_comment, - STATE(4449), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_EQ, + ACTIONS(2232), 3, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4492), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [120530] = 15, + ACTIONS(6779), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6782), 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, + [120563] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -325821,34 +313441,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6754), 1, + ACTIONS(6785), 1, anon_sym_readonly, - STATE(3538), 1, + STATE(3391), 1, sym_comment, - STATE(3820), 1, + STATE(3655), 1, sym_override_modifier, - STATE(4449), 1, + STATE(4264), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4492), 21, + ACTIONS(4496), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -325870,87 +313490,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [120603] = 8, + [120636] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4327), 1, - anon_sym_COMMA, - ACTIONS(4352), 1, - anon_sym_RBRACK, - ACTIONS(4481), 1, - anon_sym_EQ, - STATE(3539), 1, + ACTIONS(4975), 1, + anon_sym_extends, + STATE(3392), 1, sym_comment, - ACTIONS(4218), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, + ACTIONS(5858), 2, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5861), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4222), 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, - [120662] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3540), 1, - sym_comment, - ACTIONS(5865), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6756), 13, + ACTIONS(4238), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6759), 23, + ACTIONS(4242), 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, @@ -325970,41 +313541,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120717] = 8, + [120695] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4636), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5151), 1, - anon_sym_EQ, - STATE(3541), 1, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(6787), 1, + anon_sym_abstract, + STATE(3393), 1, sym_comment, - ACTIONS(5925), 2, + STATE(4245), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1043), 6, - anon_sym_LPAREN, + anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2470), 29, + ACTIONS(4496), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -326021,36 +313597,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [120776] = 6, + [120764] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6398), 1, - anon_sym_COMMA, - STATE(3542), 1, + ACTIONS(5753), 1, + anon_sym_LBRACK, + STATE(3394), 1, sym_comment, - ACTIONS(5357), 13, + ACTIONS(5756), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5306), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(5729), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_SLASH, anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5359), 25, - sym__automatic_semicolon, + ACTIONS(5731), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -326070,18 +313648,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120831] = 6, + [120823] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3543), 1, + STATE(3395), 1, sym_comment, - ACTIONS(2308), 3, + ACTIONS(5219), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6762), 13, + anon_sym_extends, + ACTIONS(5252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -326095,11 +313672,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6765), 23, + ACTIONS(5254), 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, @@ -326119,16 +313697,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120886] = 6, + [120878] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4387), 1, - anon_sym_EQ, - STATE(3544), 1, + ACTIONS(6374), 1, + anon_sym_COMMA, + STATE(3396), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(5252), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -326142,7 +313720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 25, + ACTIONS(5254), 25, sym__automatic_semicolon, sym__ternary_qmark, anon_sym_as, @@ -326168,28 +313746,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [120941] = 9, + [120933] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(5779), 1, + ACTIONS(5613), 1, anon_sym_LBRACK, - STATE(3545), 1, + STATE(3397), 1, sym_comment, - ACTIONS(5169), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5782), 3, - anon_sym_GT, + ACTIONS(5616), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4218), 10, + ACTIONS(5368), 3, + anon_sym_COMMA, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4238), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, @@ -326197,7 +313774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 22, + ACTIONS(4242), 22, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -326220,20 +313797,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [121002] = 8, + [120992] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4640), 1, + sym__automatic_semicolon, + STATE(3398), 1, + sym_comment, + ACTIONS(985), 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(2454), 30, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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_abstract, + [121047] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2146), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5064), 1, - anon_sym_EQ, - ACTIONS(5772), 1, + ACTIONS(5472), 1, anon_sym_RBRACK, - ACTIONS(5931), 1, + ACTIONS(5970), 1, anon_sym_COMMA, - STATE(3546), 1, + STATE(3399), 1, sym_comment, - ACTIONS(5062), 13, + ACTIONS(2144), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -326247,7 +313873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5066), 23, + ACTIONS(2150), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -326271,54 +313897,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [121061] = 17, + [121106] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5510), 1, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6104), 1, - anon_sym_STAR, - ACTIONS(6605), 1, - anon_sym_COMMA, - ACTIONS(6685), 1, - anon_sym_RBRACE, - STATE(3547), 1, + ACTIONS(6789), 1, + anon_sym_abstract, + STATE(3400), 1, sym_comment, - STATE(4902), 1, + STATE(4175), 1, sym__property_name, - STATE(5843), 1, - aux_sym_object_repeat1, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, + ACTIONS(985), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 20, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -326331,7 +313953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121138] = 15, + [121175] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326340,34 +313962,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6768), 1, + ACTIONS(6791), 1, anon_sym_readonly, - STATE(3548), 1, + STATE(3401), 1, sym_comment, - STATE(3827), 1, + STATE(3675), 1, sym_override_modifier, - STATE(4426), 1, + STATE(4181), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4492), 21, + ACTIONS(4496), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326389,18 +314011,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121211] = 6, + [121248] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3549), 1, - sym_comment, - ACTIONS(2286), 3, + ACTIONS(5575), 1, + anon_sym_EQ, + ACTIONS(5619), 1, + anon_sym_RBRACK, + ACTIONS(5964), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6770), 13, + STATE(3402), 1, + sym_comment, + ACTIONS(5573), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -326414,7 +314038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6773), 23, + ACTIONS(5577), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -326438,18 +314062,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [121266] = 6, + [121307] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3550), 1, + STATE(3403), 1, sym_comment, - ACTIONS(5616), 3, + ACTIONS(2314), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(6776), 13, + ACTIONS(6793), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -326463,7 +314087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6779), 23, + ACTIONS(6796), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -326487,69 +314111,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [121321] = 8, + [121362] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4973), 1, - anon_sym_extends, - STATE(3551), 1, - sym_comment, - ACTIONS(5524), 2, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5527), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4218), 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(4222), 23, - sym__ternary_qmark, - anon_sym_as, + ACTIONS(5391), 1, + anon_sym_EQ, + ACTIONS(5413), 1, + anon_sym_RBRACK, + ACTIONS(5928), 1, 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, - [121380] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3552), 1, + STATE(3404), 1, sym_comment, - ACTIONS(5620), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6782), 13, + ACTIONS(5389), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -326563,7 +314138,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6785), 23, + ACTIONS(5393), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -326587,55 +314162,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [121435] = 6, + [121421] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3553), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(6799), 1, + anon_sym_abstract, + STATE(3405), 1, sym_comment, - ACTIONS(2188), 3, + STATE(4314), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(6788), 13, - anon_sym_STAR, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6791), 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, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4496), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, [121490] = 12, ACTIONS(3), 1, aux_sym_comment_token1, @@ -326645,35 +314227,193 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3554), 1, + STATE(3406), 1, sym_comment, - STATE(4415), 1, + STATE(4160), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4496), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [121556] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, + anon_sym_LBRACK, + STATE(3407), 1, + sym_comment, + STATE(4234), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4492), 23, + ACTIONS(4496), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [121622] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(6133), 1, + anon_sym_RBRACE, + STATE(3408), 1, + sym_comment, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2452), 29, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + 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, + [121684] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(229), 1, + anon_sym_COMMA, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(6133), 1, + anon_sym_RBRACE, + STATE(3409), 1, + sym_comment, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2454), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -326690,29 +314430,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121556] = 10, + [121746] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(5151), 1, + ACTIONS(5039), 1, anon_sym_EQ, - ACTIONS(6232), 1, + ACTIONS(6185), 1, anon_sym_RBRACE, - STATE(3555), 1, + STATE(3410), 1, sym_comment, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - STATE(6287), 1, + STATE(5839), 1, aux_sym_object_repeat1, - ACTIONS(1043), 4, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2470), 29, + ACTIONS(2454), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -326742,44 +314482,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121618] = 12, + [121808] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - STATE(3556), 1, - sym_comment, - STATE(4425), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_EQ, + ACTIONS(229), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(6185), 1, + anon_sym_RBRACE, + STATE(3411), 1, + sym_comment, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(985), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4492), 23, + ACTIONS(2452), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -326796,37 +314534,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121684] = 12, + [121870] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3557), 1, + ACTIONS(6093), 1, + anon_sym_STAR, + STATE(3412), 1, sym_comment, - STATE(4438), 1, + STATE(4672), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6741), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(985), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4492), 23, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -326836,8 +314578,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -326850,44 +314590,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121750] = 12, + [121940] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - STATE(3558), 1, - sym_comment, - STATE(4446), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_EQ, + ACTIONS(229), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(964), 1, + anon_sym_RBRACE, + ACTIONS(5039), 1, + anon_sym_EQ, + STATE(3413), 1, + sym_comment, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(985), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4492), 23, + ACTIONS(2454), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -326904,7 +314642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121816] = 12, + [122002] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -326913,87 +314651,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3559), 1, + STATE(3414), 1, sym_comment, - STATE(4361), 1, + STATE(4163), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4492), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [121882] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(6106), 1, - anon_sym_RBRACE, - STATE(3560), 1, - sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2474), 29, + ACTIONS(4496), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -327010,7 +314696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [121944] = 12, + [122068] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327019,28 +314705,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3561), 1, + STATE(3415), 1, sym_comment, - STATE(4398), 1, + STATE(4238), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4492), 23, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327064,29 +314750,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122010] = 10, + [122134] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(1057), 1, - anon_sym_RBRACE, - ACTIONS(5151), 1, + ACTIONS(5039), 1, anon_sym_EQ, - STATE(3562), 1, + ACTIONS(6176), 1, + anon_sym_RBRACE, + STATE(3416), 1, sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1043), 4, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2474), 29, + ACTIONS(2454), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -327116,29 +314802,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122072] = 10, + [122196] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(1057), 1, + ACTIONS(964), 1, anon_sym_RBRACE, - ACTIONS(5151), 1, + ACTIONS(5039), 1, anon_sym_EQ, - STATE(3563), 1, + STATE(3417), 1, sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - ACTIONS(1043), 4, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2470), 29, + ACTIONS(2452), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -327168,16 +314854,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122134] = 6, + [122258] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4403), 1, + ACTIONS(4420), 1, anon_sym_EQ, - STATE(3564), 1, + STATE(3418), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -327191,7 +314877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 24, + ACTIONS(4242), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -327216,44 +314902,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [122188] = 12, + [122312] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - STATE(3565), 1, - sym_comment, - STATE(4480), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_EQ, + ACTIONS(229), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(6176), 1, + anon_sym_RBRACE, + STATE(3419), 1, + sym_comment, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(985), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4492), 23, + ACTIONS(2452), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -327270,44 +314954,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122254] = 12, + [122374] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4636), 1, - sym__automatic_semicolon, - ACTIONS(5159), 1, - anon_sym_LBRACK, - STATE(3566), 1, - sym_comment, - STATE(4354), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 6, - anon_sym_EQ, + ACTIONS(229), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(6207), 1, + anon_sym_RBRACE, + STATE(3420), 1, + sym_comment, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(985), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4492), 23, + ACTIONS(2454), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -327324,46 +315006,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122320] = 14, + [122436] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6605), 1, + ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(6685), 1, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(6207), 1, anon_sym_RBRACE, - STATE(3567), 1, + STATE(3421), 1, sym_comment, - STATE(4902), 1, - sym__property_name, - STATE(5843), 1, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, aux_sym_object_repeat1, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2452), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -327380,57 +315058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122390] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2144), 1, - anon_sym_EQ, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5911), 1, - anon_sym_of, - ACTIONS(6435), 1, - anon_sym_in, - STATE(3568), 1, - sym_comment, - ACTIONS(2142), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2148), 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, - [122448] = 12, + [122498] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327439,28 +315067,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3569), 1, + STATE(3422), 1, sym_comment, - STATE(4474), 1, + STATE(4330), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4492), 23, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327484,107 +315112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122514] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5697), 1, - anon_sym_EQ, - ACTIONS(5935), 1, - anon_sym_of, - ACTIONS(6430), 1, - anon_sym_in, - STATE(3570), 1, - sym_comment, - ACTIONS(5695), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(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, - [122572] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5064), 1, - anon_sym_EQ, - ACTIONS(5931), 1, - anon_sym_of, - ACTIONS(6395), 1, - anon_sym_in, - STATE(3571), 1, - sym_comment, - ACTIONS(5062), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5066), 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, - [122630] = 12, + [122564] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327593,28 +315121,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3572), 1, + STATE(3423), 1, sym_comment, - STATE(4443), 1, + STATE(4299), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4492), 23, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -327638,29 +315166,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122696] = 10, + [122630] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(1055), 1, + ACTIONS(1045), 1, anon_sym_RBRACE, - ACTIONS(5151), 1, + ACTIONS(5039), 1, anon_sym_EQ, - STATE(3573), 1, + STATE(3424), 1, sym_comment, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - STATE(6287), 1, + STATE(5839), 1, aux_sym_object_repeat1, - ACTIONS(1043), 4, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2470), 29, + ACTIONS(2452), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -327690,42 +315218,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122758] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [122692] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(5151), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4405), 1, anon_sym_EQ, - ACTIONS(6181), 1, - anon_sym_RBRACE, - STATE(3574), 1, + STATE(3425), 1, sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1043), 4, + ACTIONS(4238), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4242), 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, + [122746] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, + anon_sym_LBRACK, + STATE(3426), 1, + sym_comment, + STATE(4280), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2474), 29, + ACTIONS(4496), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -327742,29 +315320,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122820] = 10, + [122812] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, + ACTIONS(4640), 1, + sym__automatic_semicolon, + STATE(3427), 1, + sym_comment, + ACTIONS(985), 8, anon_sym_COMMA, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(6181), 1, anon_sym_RBRACE, - STATE(3575), 1, - sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1043), 4, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2470), 29, + anon_sym_PIPE_RBRACE, + ACTIONS(2454), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -327794,85 +315368,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [122882] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6104), 1, - anon_sym_STAR, - STATE(3576), 1, - sym_comment, - STATE(4902), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6718), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 21, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [122952] = 10, + [122866] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(1055), 1, + ACTIONS(1045), 1, anon_sym_RBRACE, - ACTIONS(5151), 1, + ACTIONS(5039), 1, anon_sym_EQ, - STATE(3577), 1, + STATE(3428), 1, sym_comment, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - STATE(6287), 1, + STATE(5839), 1, aux_sym_object_repeat1, - ACTIONS(1043), 4, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2474), 29, + ACTIONS(2454), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -327902,42 +315420,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123014] = 10, + [122928] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(6230), 1, - anon_sym_RBRACE, - STATE(3578), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, + anon_sym_LBRACK, + STATE(3429), 1, sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1043), 4, - anon_sym_LPAREN, + STATE(4308), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2470), 29, + ACTIONS(4496), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -327954,7 +315474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123076] = 12, + [122994] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -327963,28 +315483,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3579), 1, + STATE(3430), 1, sym_comment, - STATE(4306), 1, + STATE(4223), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4492), 23, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -328008,42 +315528,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123142] = 10, + [123060] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6548), 1, anon_sym_COMMA, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(6230), 1, + ACTIONS(6692), 1, anon_sym_RBRACE, - STATE(3580), 1, + STATE(3431), 1, sym_comment, - STATE(6276), 1, + STATE(4672), 1, + sym__property_name, + STATE(5959), 1, aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1043), 4, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2474), 29, + ACTIONS(2989), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -328060,38 +315584,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123204] = 6, + [123130] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4636), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4640), 1, sym__automatic_semicolon, - STATE(3581), 1, + ACTIONS(5047), 1, + anon_sym_LBRACK, + STATE(3432), 1, sym_comment, - ACTIONS(1043), 8, + STATE(4243), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 6, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2474), 29, + ACTIONS(4496), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -328108,66 +315638,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123258] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - STATE(3582), 1, - sym_comment, - STATE(3230), 2, - sym_template_string, - sym_arguments, - ACTIONS(4985), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_LT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4987), 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, - [123316] = 6, + [123196] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4397), 1, + ACTIONS(4424), 1, anon_sym_EQ, - STATE(3583), 1, + STATE(3433), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -328181,7 +315661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 24, + ACTIONS(4242), 24, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -328206,22 +315686,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [123370] = 8, + [123250] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4276), 1, - anon_sym_EQ, - ACTIONS(4438), 1, - anon_sym_in, - ACTIONS(4441), 1, - anon_sym_of, - STATE(3584), 1, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + STATE(3434), 1, sym_comment, - ACTIONS(4218), 12, + STATE(3115), 2, + sym_template_string, + sym_arguments, + ACTIONS(4989), 13, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -328232,10 +315714,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4991), 21, sym__ternary_qmark, anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -328254,9 +315735,8 @@ 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, - [123428] = 12, + [123308] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -328265,28 +315745,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3585), 1, + STATE(3435), 1, sym_comment, - STATE(4395), 1, + STATE(4200), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4492), 23, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -328310,45 +315790,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123494] = 13, + [123374] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(5510), 1, - anon_sym_LBRACK, - STATE(3586), 1, - sym_comment, - STATE(4902), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6693), 2, + ACTIONS(229), 1, anon_sym_COMMA, + ACTIONS(1051), 1, anon_sym_RBRACE, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(5039), 1, + anon_sym_EQ, + STATE(3436), 1, + sym_comment, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2452), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -328365,51 +315842,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123562] = 15, + [123436] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(2991), 1, - anon_sym_async, - ACTIONS(5510), 1, + ACTIONS(4640), 1, + sym__automatic_semicolon, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6104), 1, - anon_sym_STAR, - STATE(3587), 1, + STATE(3437), 1, sym_comment, - STATE(4902), 1, + STATE(4157), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(2995), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6718), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, - anon_sym_LPAREN, + ACTIONS(985), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 20, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -328422,29 +315896,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123634] = 10, + [123502] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(229), 1, anon_sym_COMMA, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(6232), 1, + ACTIONS(1051), 1, anon_sym_RBRACE, - STATE(3588), 1, + ACTIONS(5039), 1, + anon_sym_EQ, + STATE(3438), 1, sym_comment, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(6287), 1, + STATE(5732), 1, aux_sym_object_repeat1, - ACTIONS(1043), 4, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2474), 29, + ACTIONS(2454), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -328474,7 +315948,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123696] = 12, + [123564] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -328483,87 +315957,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3589), 1, + STATE(3439), 1, sym_comment, - STATE(4363), 1, + STATE(4335), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4492), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [123762] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(5151), 1, - anon_sym_EQ, - ACTIONS(6106), 1, - anon_sym_RBRACE, - STATE(3590), 1, - sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2470), 29, + ACTIONS(4496), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -328580,7 +316002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123824] = 12, + [123630] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -328589,28 +316011,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3591), 1, + STATE(3440), 1, sym_comment, - STATE(4327), 1, + STATE(4248), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4492), 23, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -328634,19 +316056,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [123890] = 6, + [123696] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2146), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4393), 1, - anon_sym_EQ, - STATE(3592), 1, + ACTIONS(5970), 1, + anon_sym_of, + ACTIONS(6579), 1, + anon_sym_in, + STATE(3441), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(2144), 12, anon_sym_STAR, anon_sym_BANG, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2150), 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, + [123754] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5575), 1, + anon_sym_EQ, + ACTIONS(5964), 1, + anon_sym_of, + ACTIONS(6576), 1, anon_sym_in, + STATE(3442), 1, + sym_comment, + ACTIONS(5573), 12, + anon_sym_STAR, + anon_sym_BANG, anon_sym_GT, anon_sym_GT_GT, anon_sym_AMP, @@ -328657,12 +316132,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 24, + ACTIONS(5577), 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_AMP_AMP, @@ -328682,7 +316156,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [123944] = 12, + [123812] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -328691,28 +316165,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3593), 1, + STATE(3443), 1, sym_comment, - STATE(4313), 1, + STATE(4278), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4492), 23, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -328736,16 +316210,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124010] = 6, + [123878] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6088), 1, + ACTIONS(6152), 1, sym_regex_flags, - STATE(3594), 1, + STATE(3444), 1, sym_comment, - ACTIONS(6084), 17, + ACTIONS(6148), 17, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -328763,8 +316237,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_instanceof, anon_sym_satisfies, - ACTIONS(6086), 20, + ACTIONS(6150), 20, + sym__ternary_qmark, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [123932] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5391), 1, + anon_sym_EQ, + ACTIONS(5928), 1, + anon_sym_of, + ACTIONS(6415), 1, + anon_sym_in, + STATE(3445), 1, + sym_comment, + ACTIONS(5389), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5393), 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, + [123990] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4316), 1, + anon_sym_EQ, + ACTIONS(4442), 1, + anon_sym_in, + ACTIONS(4445), 1, + anon_sym_of, + STATE(3446), 1, + sym_comment, + ACTIONS(4238), 12, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_GT, + anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4242), 23, sym__ternary_qmark, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -328781,10 +316353,12 @@ 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, - [124064] = 12, + anon_sym_satisfies, + [124048] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -328793,28 +316367,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4636), 1, + ACTIONS(4640), 1, sym__automatic_semicolon, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3595), 1, + STATE(3447), 1, sym_comment, - STATE(4337), 1, + STATE(4269), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 6, + ACTIONS(985), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_BANG, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4492), 23, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -328838,94 +316412,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124130] = 10, + [124114] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(229), 1, - anon_sym_COMMA, - ACTIONS(1022), 1, - anon_sym_RBRACE, - ACTIONS(5151), 1, - anon_sym_EQ, - STATE(3596), 1, - sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2470), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_LBRACK, + ACTIONS(1965), 1, anon_sym_DQUOTE, + ACTIONS(1967), 1, anon_sym_SQUOTE, - anon_sym_async, - anon_sym_new, + ACTIONS(5039), 1, + anon_sym_EQ, + ACTIONS(5579), 1, + anon_sym_LBRACK, + STATE(3448), 1, + sym_comment, + STATE(4672), 1, + sym__property_name, + ACTIONS(2823), 2, 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, - [124192] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(229), 1, + ACTIONS(6697), 2, anon_sym_COMMA, - ACTIONS(1022), 1, anon_sym_RBRACE, - ACTIONS(5151), 1, - anon_sym_EQ, - STATE(3597), 1, - sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(1043), 4, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2474), 29, + ACTIONS(2989), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -328942,7 +316467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124254] = 12, + [124182] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -328951,38 +316476,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(2991), 1, + anon_sym_async, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3598), 1, + ACTIONS(6093), 1, + anon_sym_STAR, + STATE(3449), 1, sym_comment, - STATE(4902), 1, + STATE(4672), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6718), 2, + ACTIONS(2995), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6741), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 4, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2989), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -328995,16 +316524,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [124319] = 6, + [124254] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4570), 1, + ACTIONS(4568), 1, anon_sym_EQ, - STATE(3599), 1, + STATE(3450), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -329018,7 +316547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4242), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -329042,16 +316571,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, + [124307] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5579), 1, + anon_sym_LBRACK, + STATE(3451), 1, + sym_comment, + STATE(4672), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6741), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, [124372] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4578), 1, + ACTIONS(4552), 1, anon_sym_EQ, - STATE(3600), 1, + STATE(3452), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -329065,7 +316647,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4242), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -329094,11 +316676,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4588), 1, + ACTIONS(4580), 1, anon_sym_EQ, - STATE(3601), 1, + STATE(3453), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -329112,7 +316694,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4242), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -329141,11 +316723,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4550), 1, + ACTIONS(4586), 1, anon_sym_EQ, - STATE(3602), 1, + STATE(3454), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -329159,7 +316741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4242), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -329188,11 +316770,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4580), 1, + ACTIONS(4600), 1, anon_sym_EQ, - STATE(3603), 1, + STATE(3455), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -329206,7 +316788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4242), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -329235,11 +316817,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4596), 1, + ACTIONS(4612), 1, anon_sym_EQ, - STATE(3604), 1, + STATE(3456), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -329253,7 +316835,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4242), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -329282,11 +316864,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4590), 1, + ACTIONS(4554), 1, anon_sym_EQ, - STATE(3605), 1, + STATE(3457), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -329300,7 +316882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4242), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -329329,11 +316911,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4554), 1, + ACTIONS(4620), 1, anon_sym_EQ, - STATE(3606), 1, + STATE(3458), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -329347,7 +316929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4242), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -329376,11 +316958,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4558), 1, + ACTIONS(4610), 1, anon_sym_EQ, - STATE(3607), 1, + STATE(3459), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -329394,7 +316976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4242), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -329423,11 +317005,11 @@ static const uint16_t ts_small_parse_table[] = { sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4566), 1, + ACTIONS(4558), 1, anon_sym_EQ, - STATE(3608), 1, + STATE(3460), 1, sym_comment, - ACTIONS(4218), 13, + ACTIONS(4238), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -329441,7 +317023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4222), 23, + ACTIONS(4242), 23, sym__ternary_qmark, anon_sym_as, anon_sym_LPAREN, @@ -329465,73 +317047,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_satisfies, - [124849] = 17, + [124849] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(2997), 1, - anon_sym_override, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6794), 1, - anon_sym_STAR, - ACTIONS(6796), 1, - anon_sym_async, - ACTIONS(6798), 1, - anon_sym_readonly, - STATE(3609), 1, - sym_comment, - STATE(3770), 1, - sym_override_modifier, - STATE(4805), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6800), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [124923] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6804), 1, + ACTIONS(6803), 1, sym__automatic_semicolon, - STATE(3610), 1, + STATE(3461), 1, sym_comment, - ACTIONS(6802), 35, + ACTIONS(6801), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -329567,62 +317092,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [124973] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(6808), 1, - anon_sym_SEMI, - ACTIONS(6811), 1, - sym__automatic_semicolon, - STATE(3611), 1, - sym_comment, - ACTIONS(6806), 34, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_RBRACE, - anon_sym_let, - 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_abstract, - [125025] = 5, + [124899] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6815), 1, + ACTIONS(6807), 1, sym__automatic_semicolon, - STATE(3612), 1, + STATE(3462), 1, sym_comment, - ACTIONS(6813), 35, + ACTIONS(6805), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -329658,16 +317137,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125075] = 5, + [124949] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6819), 1, + ACTIONS(6811), 1, sym__automatic_semicolon, - STATE(3613), 1, + STATE(3463), 1, sym_comment, - ACTIONS(6817), 35, + ACTIONS(6809), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -329703,16 +317182,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125125] = 5, + [124999] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6823), 1, + ACTIONS(6815), 1, sym__automatic_semicolon, - STATE(3614), 1, + STATE(3464), 1, sym_comment, - ACTIONS(6821), 35, + ACTIONS(6813), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -329748,16 +317227,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125175] = 5, + [125049] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6827), 1, + ACTIONS(2290), 1, sym__automatic_semicolon, - STATE(3615), 1, + STATE(3465), 1, sym_comment, - ACTIONS(6825), 35, + ACTIONS(2288), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -329793,16 +317272,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125225] = 5, + [125099] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6831), 1, + ACTIONS(6819), 1, sym__automatic_semicolon, - STATE(3616), 1, + STATE(3466), 1, sym_comment, - ACTIONS(6829), 35, + ACTIONS(6817), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -329838,16 +317317,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125275] = 5, + [125149] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6835), 1, + ACTIONS(2164), 1, sym__automatic_semicolon, - STATE(3617), 1, + STATE(3467), 1, sym_comment, - ACTIONS(6833), 35, + ACTIONS(2160), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -329883,34 +317362,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125325] = 5, + [125199] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6831), 1, - sym__automatic_semicolon, - STATE(3618), 1, + ACTIONS(6548), 1, + anon_sym_COMMA, + ACTIONS(6692), 1, + anon_sym_RBRACE, + STATE(3468), 1, sym_comment, - ACTIONS(6829), 35, + STATE(5959), 1, + aux_sym_object_repeat1, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2452), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -329927,25 +317410,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [125375] = 7, + [125255] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(5151), 1, - anon_sym_EQ, - STATE(3619), 1, - sym_comment, - ACTIONS(6693), 2, + ACTIONS(6548), 1, anon_sym_COMMA, + ACTIONS(6692), 1, anon_sym_RBRACE, - ACTIONS(1043), 4, + STATE(3469), 1, + sym_comment, + STATE(5959), 1, + aux_sym_object_repeat1, + ACTIONS(985), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2470), 29, + ACTIONS(2454), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -329975,14 +317458,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [125429] = 5, + [125311] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(6823), 1, sym__automatic_semicolon, - STATE(3620), 1, + STATE(3470), 1, sym_comment, ACTIONS(6821), 35, anon_sym_export, @@ -330020,16 +317503,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125479] = 5, + [125361] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6804), 1, + ACTIONS(6827), 1, sym__automatic_semicolon, - STATE(3621), 1, + STATE(3471), 1, sym_comment, - ACTIONS(6802), 35, + ACTIONS(6825), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330065,63 +317548,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125529] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(5151), 1, - anon_sym_EQ, - STATE(3622), 1, - sym_comment, - ACTIONS(6693), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2474), 29, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - 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, - [125583] = 5, + [125411] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6839), 1, + ACTIONS(6829), 1, sym__automatic_semicolon, - STATE(3623), 1, + STATE(3472), 1, sym_comment, - ACTIONS(6837), 35, + ACTIONS(2142), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330157,16 +317593,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125633] = 5, + [125461] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6835), 1, + ACTIONS(6831), 1, sym__automatic_semicolon, - STATE(3624), 1, + STATE(3473), 1, sym_comment, - ACTIONS(6833), 35, + ACTIONS(2160), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330202,16 +317638,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125683] = 5, + [125511] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6815), 1, + ACTIONS(6835), 1, sym__automatic_semicolon, - STATE(3625), 1, + STATE(3474), 1, sym_comment, - ACTIONS(6813), 35, + ACTIONS(6833), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330247,16 +317683,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125733] = 5, + [125561] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6843), 1, + ACTIONS(6839), 1, sym__automatic_semicolon, - STATE(3626), 1, + STATE(3475), 1, sym_comment, - ACTIONS(6841), 35, + ACTIONS(6837), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330292,16 +317728,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125783] = 5, + [125611] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2248), 1, + ACTIONS(6843), 1, sym__automatic_semicolon, - STATE(3627), 1, + STATE(3476), 1, sym_comment, - ACTIONS(2246), 35, + ACTIONS(6841), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330337,16 +317773,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125833] = 5, + [125661] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6843), 1, + ACTIONS(6803), 1, sym__automatic_semicolon, - STATE(3628), 1, + STATE(3477), 1, sym_comment, - ACTIONS(6841), 35, + ACTIONS(6801), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330382,16 +317818,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125883] = 5, + [125711] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6847), 1, + ACTIONS(6803), 1, sym__automatic_semicolon, - STATE(3629), 1, + STATE(3478), 1, sym_comment, - ACTIONS(6845), 35, + ACTIONS(6801), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330427,16 +317863,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125933] = 5, + [125761] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6835), 1, + ACTIONS(6847), 1, sym__automatic_semicolon, - STATE(3630), 1, + STATE(3479), 1, sym_comment, - ACTIONS(6833), 35, + ACTIONS(6845), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330472,16 +317908,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [125983] = 5, + [125811] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6804), 1, + ACTIONS(6823), 1, sym__automatic_semicolon, - STATE(3631), 1, + STATE(3480), 1, sym_comment, - ACTIONS(6802), 35, + ACTIONS(6821), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330517,16 +317953,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126033] = 5, + [125861] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6804), 1, + ACTIONS(6807), 1, sym__automatic_semicolon, - STATE(3632), 1, + STATE(3481), 1, sym_comment, - ACTIONS(6802), 35, + ACTIONS(6805), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330562,16 +317998,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126083] = 5, + [125911] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6804), 1, + ACTIONS(6803), 1, sym__automatic_semicolon, - STATE(3633), 1, + STATE(3482), 1, sym_comment, - ACTIONS(6802), 35, + ACTIONS(6801), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330607,16 +318043,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126133] = 5, + [125961] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6804), 1, + ACTIONS(6851), 1, sym__automatic_semicolon, - STATE(3634), 1, + STATE(3483), 1, sym_comment, - ACTIONS(6802), 35, + ACTIONS(6849), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330652,16 +318088,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126183] = 5, + [126011] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6851), 1, + ACTIONS(6819), 1, sym__automatic_semicolon, - STATE(3635), 1, + STATE(3484), 1, sym_comment, - ACTIONS(6849), 35, + ACTIONS(6817), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330697,16 +318133,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126233] = 5, + [126061] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6853), 1, + ACTIONS(6807), 1, sym__automatic_semicolon, - STATE(3636), 1, + STATE(3485), 1, sym_comment, - ACTIONS(2140), 35, + ACTIONS(6805), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330742,34 +318178,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126283] = 5, + [126111] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6815), 1, - sym__automatic_semicolon, - STATE(3637), 1, + ACTIONS(5039), 1, + anon_sym_EQ, + STATE(3486), 1, sym_comment, - ACTIONS(6813), 35, + ACTIONS(6697), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2454), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -330786,17 +318225,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [126333] = 5, + [126165] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6857), 1, + ACTIONS(6807), 1, sym__automatic_semicolon, - STATE(3638), 1, + STATE(3487), 1, sym_comment, - ACTIONS(6855), 35, + ACTIONS(6805), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330832,34 +318270,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126383] = 5, + [126215] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6847), 1, - sym__automatic_semicolon, - STATE(3639), 1, + ACTIONS(5039), 1, + anon_sym_EQ, + STATE(3488), 1, sym_comment, - ACTIONS(6845), 35, + ACTIONS(6697), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2452), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -330876,17 +318317,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [126433] = 5, + [126269] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6835), 1, + ACTIONS(6811), 1, sym__automatic_semicolon, - STATE(3640), 1, + STATE(3489), 1, sym_comment, - ACTIONS(6833), 35, + ACTIONS(6809), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330922,16 +318362,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126483] = 5, + [126319] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6859), 1, + ACTIONS(6855), 1, sym__automatic_semicolon, - STATE(3641), 1, + STATE(3490), 1, sym_comment, - ACTIONS(2190), 35, + ACTIONS(6853), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -330967,16 +318407,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126533] = 5, + [126369] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6823), 1, + ACTIONS(6855), 1, sym__automatic_semicolon, - STATE(3642), 1, + STATE(3491), 1, sym_comment, - ACTIONS(6821), 35, + ACTIONS(6853), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331012,16 +318452,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126583] = 5, + [126419] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6851), 1, + ACTIONS(6819), 1, sym__automatic_semicolon, - STATE(3643), 1, + STATE(3492), 1, sym_comment, - ACTIONS(6849), 35, + ACTIONS(6817), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331057,16 +318497,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126633] = 5, + [126469] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6804), 1, + ACTIONS(6815), 1, sym__automatic_semicolon, - STATE(3644), 1, + STATE(3493), 1, sym_comment, - ACTIONS(6802), 35, + ACTIONS(6813), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331102,16 +318542,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126683] = 5, + [126519] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6815), 1, + ACTIONS(6803), 1, sym__automatic_semicolon, - STATE(3645), 1, + STATE(3494), 1, sym_comment, - ACTIONS(6813), 35, + ACTIONS(6801), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331147,24 +318587,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126733] = 6, + [126569] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6863), 1, - anon_sym_SEMI, - ACTIONS(6866), 1, + ACTIONS(6855), 1, sym__automatic_semicolon, - STATE(3646), 1, + STATE(3495), 1, sym_comment, - ACTIONS(6861), 34, + ACTIONS(6853), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -331193,16 +318632,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126785] = 5, + [126619] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6868), 1, + ACTIONS(6811), 1, sym__automatic_semicolon, - STATE(3647), 1, + STATE(3496), 1, sym_comment, - ACTIONS(2140), 35, + ACTIONS(6809), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331238,16 +318677,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126835] = 5, + [126669] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6870), 1, + ACTIONS(6807), 1, sym__automatic_semicolon, - STATE(3648), 1, + STATE(3497), 1, sym_comment, - ACTIONS(2190), 35, + ACTIONS(6805), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331283,16 +318722,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126885] = 5, + [126719] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6831), 1, + ACTIONS(6803), 1, sym__automatic_semicolon, - STATE(3649), 1, + STATE(3498), 1, sym_comment, - ACTIONS(6829), 35, + ACTIONS(6801), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331328,16 +318767,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126935] = 5, + [126769] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6851), 1, + ACTIONS(6815), 1, sym__automatic_semicolon, - STATE(3650), 1, + STATE(3499), 1, sym_comment, - ACTIONS(6849), 35, + ACTIONS(6813), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331373,16 +318812,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [126985] = 5, + [126819] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6831), 1, + ACTIONS(6815), 1, sym__automatic_semicolon, - STATE(3651), 1, + STATE(3500), 1, sym_comment, - ACTIONS(6829), 35, + ACTIONS(6813), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331418,16 +318857,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127035] = 5, + [126869] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6823), 1, + ACTIONS(6811), 1, sym__automatic_semicolon, - STATE(3652), 1, + STATE(3501), 1, sym_comment, - ACTIONS(6821), 35, + ACTIONS(6809), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331463,16 +318902,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127085] = 5, + [126919] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6831), 1, + ACTIONS(6815), 1, sym__automatic_semicolon, - STATE(3653), 1, + STATE(3502), 1, sym_comment, - ACTIONS(6829), 35, + ACTIONS(6813), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331508,16 +318947,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127135] = 5, + [126969] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6823), 1, + ACTIONS(6811), 1, sym__automatic_semicolon, - STATE(3654), 1, + STATE(3503), 1, sym_comment, - ACTIONS(6821), 35, + ACTIONS(6809), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331553,16 +318992,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127185] = 5, + [127019] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6823), 1, + ACTIONS(6857), 1, sym__automatic_semicolon, - STATE(3655), 1, + STATE(3504), 1, sym_comment, - ACTIONS(6821), 35, + ACTIONS(2142), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331598,16 +319037,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127235] = 5, + [127069] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6851), 1, + ACTIONS(6859), 1, sym__automatic_semicolon, - STATE(3656), 1, + STATE(3505), 1, sym_comment, - ACTIONS(6849), 35, + ACTIONS(2160), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331643,16 +319082,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127285] = 5, + [127119] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6815), 1, + ACTIONS(6855), 1, sym__automatic_semicolon, - STATE(3657), 1, + STATE(3506), 1, sym_comment, - ACTIONS(6813), 35, + ACTIONS(6853), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331688,23 +319127,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127335] = 5, + [127169] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6823), 1, + ACTIONS(6863), 1, + anon_sym_SEMI, + ACTIONS(6866), 1, sym__automatic_semicolon, - STATE(3658), 1, + STATE(3507), 1, sym_comment, - ACTIONS(6821), 35, + ACTIONS(6861), 34, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -331733,38 +319173,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127385] = 8, + [127221] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6605), 1, - anon_sym_COMMA, - ACTIONS(6685), 1, - anon_sym_RBRACE, - STATE(3659), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(2997), 1, + anon_sym_override, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6868), 1, + anon_sym_STAR, + ACTIONS(6870), 1, + anon_sym_async, + ACTIONS(6872), 1, + anon_sym_readonly, + STATE(3508), 1, sym_comment, - STATE(5843), 1, - aux_sym_object_repeat1, - ACTIONS(1043), 4, + STATE(3624), 1, + sym_override_modifier, + STATE(4794), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6874), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 3, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2470), 29, + ACTIONS(2989), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [127295] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(6819), 1, + sym__automatic_semicolon, + STATE(3509), 1, + sym_comment, + ACTIONS(6817), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -331781,16 +319274,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127441] = 5, + anon_sym_abstract, + [127345] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6874), 1, + ACTIONS(6878), 1, sym__automatic_semicolon, - STATE(3660), 1, + STATE(3510), 1, sym_comment, - ACTIONS(6872), 35, + ACTIONS(6876), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331826,16 +319320,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127491] = 5, + [127395] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6878), 1, + ACTIONS(6811), 1, sym__automatic_semicolon, - STATE(3661), 1, + STATE(3511), 1, sym_comment, - ACTIONS(6876), 35, + ACTIONS(6809), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331871,14 +319365,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127541] = 5, + [127445] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(6851), 1, sym__automatic_semicolon, - STATE(3662), 1, + STATE(3512), 1, sym_comment, ACTIONS(6849), 35, anon_sym_export, @@ -331916,16 +319410,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127591] = 5, + [127495] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6835), 1, + ACTIONS(6855), 1, sym__automatic_semicolon, - STATE(3663), 1, + STATE(3513), 1, sym_comment, - ACTIONS(6833), 35, + ACTIONS(6853), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -331961,38 +319455,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127641] = 8, + [127545] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6605), 1, - anon_sym_COMMA, - ACTIONS(6685), 1, - anon_sym_RBRACE, - STATE(3664), 1, + ACTIONS(6811), 1, + sym__automatic_semicolon, + STATE(3514), 1, sym_comment, - STATE(5843), 1, - aux_sym_object_repeat1, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2474), 29, + ACTIONS(6809), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -332009,23 +319499,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127697] = 5, + anon_sym_abstract, + [127595] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2192), 1, + ACTIONS(6882), 1, + anon_sym_SEMI, + ACTIONS(6885), 1, sym__automatic_semicolon, - STATE(3665), 1, + STATE(3515), 1, sym_comment, - ACTIONS(2190), 35, + ACTIONS(6880), 34, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, @@ -332054,46 +319546,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [127747] = 13, + [127647] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6880), 1, - anon_sym_STAR, - STATE(3666), 1, + ACTIONS(6803), 1, + sym__automatic_semicolon, + STATE(3516), 1, sym_comment, - STATE(4910), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6882), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(6801), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -332106,47 +319590,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127812] = 14, + anon_sym_abstract, + [127697] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6880), 1, - anon_sym_STAR, - ACTIONS(6884), 1, - anon_sym_async, - STATE(3667), 1, + ACTIONS(6819), 1, + sym__automatic_semicolon, + STATE(3517), 1, sym_comment, - STATE(4910), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6882), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 20, + ACTIONS(6817), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -332159,46 +319635,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127879] = 13, + anon_sym_abstract, + [127747] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6794), 1, - anon_sym_STAR, - STATE(3668), 1, + STATE(3518), 1, sym_comment, - STATE(4805), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6800), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(6887), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -332211,7 +319678,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [127944] = 14, + anon_sym_abstract, + [127794] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -332220,34 +319688,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6794), 1, + ACTIONS(6889), 1, anon_sym_STAR, - ACTIONS(6796), 1, - anon_sym_async, - STATE(3669), 1, + STATE(3519), 1, sym_comment, - STATE(4805), 1, + STATE(4777), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6800), 2, + ACTIONS(6891), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 20, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -332264,14 +319731,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128011] = 4, + [127859] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3670), 1, + STATE(3520), 1, sym_comment, - ACTIONS(6886), 35, + ACTIONS(6893), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -332307,14 +319774,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [128058] = 4, + [127906] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3671), 1, + STATE(3521), 1, sym_comment, - ACTIONS(6886), 35, + ACTIONS(6895), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -332350,47 +319817,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [128105] = 14, + [127953] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6888), 1, - anon_sym_STAR, - ACTIONS(6890), 1, - anon_sym_async, - STATE(3672), 1, + STATE(3522), 1, sym_comment, - STATE(4990), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6892), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 20, + ACTIONS(2288), 35, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -332403,14 +319859,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128172] = 4, + anon_sym_abstract, + [128000] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3673), 1, + STATE(3523), 1, sym_comment, - ACTIONS(6894), 35, + ACTIONS(2160), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -332446,35 +319903,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [128219] = 6, + [128047] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3674), 1, + STATE(3524), 1, sym_comment, - ACTIONS(6718), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2470), 29, + ACTIONS(6897), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -332491,7 +319945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128270] = 13, + anon_sym_abstract, + [128094] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -332500,28 +319955,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6888), 1, - anon_sym_STAR, - STATE(3675), 1, + ACTIONS(6899), 1, + anon_sym_EQ_GT, + STATE(3525), 1, sym_comment, - STATE(4990), 1, + STATE(4794), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6892), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -332531,6 +319983,8 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -332543,35 +319997,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128335] = 6, + [128157] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3676), 1, + STATE(3526), 1, sym_comment, - ACTIONS(6718), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1043), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2474), 29, + ACTIONS(6887), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, + anon_sym_RBRACE, anon_sym_let, + 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, @@ -332588,36 +320039,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128386] = 4, + anon_sym_abstract, + [128204] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3677), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6889), 1, + anon_sym_STAR, + ACTIONS(6901), 1, + anon_sym_async, + STATE(3527), 1, sym_comment, - ACTIONS(2246), 35, + STATE(4777), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6891), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 20, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - anon_sym_SEMI, - anon_sym_LBRACK, + 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, + [128271] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, anon_sym_DQUOTE, + ACTIONS(1967), 1, anon_sym_SQUOTE, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6868), 1, + anon_sym_STAR, + STATE(3528), 1, + sym_comment, + STATE(4794), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6874), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, 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, @@ -332630,8 +320145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [128433] = 13, + [128336] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -332640,33 +320154,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6896), 1, + ACTIONS(6868), 1, anon_sym_STAR, - STATE(3678), 1, + ACTIONS(6870), 1, + anon_sym_async, + STATE(3529), 1, sym_comment, - STATE(4911), 1, + STATE(4794), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6898), 2, + ACTIONS(6874), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 21, + ACTIONS(2989), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, @@ -332683,32 +320198,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128498] = 4, + [128403] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3679), 1, + STATE(3530), 1, sym_comment, - ACTIONS(2190), 35, + ACTIONS(6741), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2452), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -332725,33 +320243,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [128545] = 4, + [128454] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3680), 1, + STATE(3531), 1, sym_comment, - ACTIONS(6861), 35, + ACTIONS(6741), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(985), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2454), 29, anon_sym_export, anon_sym_STAR, anon_sym_type, anon_sym_namespace, - anon_sym_RBRACE, anon_sym_let, - 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, @@ -332768,8 +320288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [128592] = 12, + [128505] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -332778,25 +320297,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6900), 1, - anon_sym_EQ_GT, - STATE(3681), 1, + ACTIONS(6903), 1, + anon_sym_STAR, + STATE(3532), 1, sym_comment, - STATE(4805), 1, + STATE(4769), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + ACTIONS(6905), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -332806,8 +320328,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -332820,14 +320340,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128655] = 4, + [128570] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3682), 1, + STATE(3533), 1, sym_comment, - ACTIONS(6902), 35, + ACTIONS(6880), 35, anon_sym_export, anon_sym_STAR, anon_sym_type, @@ -332863,7 +320383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_object, anon_sym_abstract, - [128702] = 11, + [128617] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -332872,72 +320392,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3683), 1, + ACTIONS(6907), 1, + anon_sym_STAR, + STATE(3534), 1, sym_comment, - STATE(4990), 1, + STATE(4667), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(1043), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(6909), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [128762] = 11, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - STATE(3684), 1, - sym_comment, - STATE(4960), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -332947,8 +320423,6 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -332961,7 +320435,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128822] = 11, + [128682] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -332970,34 +320444,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3685), 1, + ACTIONS(6903), 1, + anon_sym_STAR, + ACTIONS(6911), 1, + anon_sym_async, + STATE(3535), 1, sym_comment, - STATE(4942), 1, + STATE(4769), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + ACTIONS(6905), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(2989), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -333010,34 +320488,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128882] = 7, + [128749] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6904), 1, - anon_sym_LPAREN, - ACTIONS(6906), 1, - anon_sym_DOT, - STATE(3686), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5579), 1, + anon_sym_LBRACK, + STATE(3536), 1, sym_comment, - STATE(3784), 1, - sym_arguments, - ACTIONS(4357), 31, + STATE(4728), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(985), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -333054,8 +320537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [128934] = 11, + [128809] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -333064,19 +320546,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3687), 1, + STATE(3537), 1, sym_comment, - STATE(4992), 1, + STATE(4794), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -333104,7 +320586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [128994] = 11, + [128869] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -333113,19 +320595,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3688), 1, + STATE(3538), 1, sym_comment, - STATE(4911), 1, + STATE(4767), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -333153,7 +320635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129054] = 11, + [128929] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -333162,19 +320644,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3689), 1, + STATE(3539), 1, sym_comment, - STATE(4967), 1, + STATE(4741), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -333202,7 +320684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129114] = 11, + [128989] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -333211,19 +320693,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3690), 1, + STATE(3540), 1, sym_comment, - STATE(4930), 1, + STATE(4836), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -333251,7 +320733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129174] = 11, + [129049] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -333260,19 +320742,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3691), 1, + STATE(3541), 1, sym_comment, - STATE(4922), 1, + STATE(4827), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -333300,48 +320782,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129234] = 11, + [129109] = 19, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3692), 1, + ACTIONS(5838), 1, + anon_sym_STAR, + ACTIONS(5842), 1, + anon_sym_async, + ACTIONS(6913), 1, + anon_sym_static, + ACTIONS(6915), 1, + anon_sym_readonly, + ACTIONS(6917), 1, + anon_sym_declare, + ACTIONS(6919), 1, + anon_sym_abstract, + STATE(3542), 1, sym_comment, - STATE(4974), 1, + STATE(3617), 1, + sym_override_modifier, + STATE(3904), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + ACTIONS(5846), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2989), 23, + ACTIONS(4496), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -333349,7 +320839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129294] = 11, + [129185] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -333358,19 +320848,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3693), 1, + STATE(3543), 1, sym_comment, - STATE(4915), 1, + STATE(4710), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -333398,7 +320888,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129354] = 11, + [129245] = 19, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(6237), 1, + anon_sym_STAR, + ACTIONS(6239), 1, + anon_sym_async, + ACTIONS(6921), 1, + anon_sym_static, + ACTIONS(6923), 1, + anon_sym_readonly, + ACTIONS(6925), 1, + anon_sym_declare, + ACTIONS(6927), 1, + anon_sym_abstract, + STATE(3544), 1, + sym_comment, + STATE(3633), 1, + sym_override_modifier, + STATE(3927), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6243), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4496), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [129321] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -333407,19 +320954,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3694), 1, + STATE(3545), 1, sym_comment, - STATE(4805), 1, + STATE(4667), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -333447,7 +320994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129414] = 11, + [129381] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -333456,19 +321003,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3695), 1, + STATE(3546), 1, sym_comment, - STATE(4912), 1, + STATE(4712), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -333496,7 +321043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129474] = 11, + [129441] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -333505,19 +321052,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3696), 1, + STATE(3547), 1, sym_comment, - STATE(4904), 1, + STATE(4769), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -333545,7 +321092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129534] = 11, + [129501] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -333554,19 +321101,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3697), 1, + STATE(3548), 1, sym_comment, - STATE(4826), 1, + STATE(4779), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -333594,56 +321141,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129594] = 19, + [129561] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(6222), 1, - anon_sym_STAR, - ACTIONS(6224), 1, - anon_sym_async, - ACTIONS(6908), 1, - anon_sym_static, - ACTIONS(6910), 1, - anon_sym_readonly, - ACTIONS(6912), 1, - anon_sym_declare, - ACTIONS(6914), 1, - anon_sym_abstract, - STATE(3698), 1, + ACTIONS(6929), 1, + anon_sym_LPAREN, + ACTIONS(6931), 1, + anon_sym_DOT, + STATE(3549), 1, sym_comment, - STATE(3778), 1, - sym_override_modifier, - STATE(4074), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6228), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4492), 16, + STATE(3668), 1, + sym_arguments, + ACTIONS(4346), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -333651,56 +321185,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129670] = 19, + anon_sym_abstract, + [129613] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(5514), 1, - anon_sym_STAR, - ACTIONS(5518), 1, - anon_sym_async, - ACTIONS(6916), 1, - anon_sym_static, - ACTIONS(6918), 1, - anon_sym_readonly, - ACTIONS(6920), 1, - anon_sym_declare, - ACTIONS(6922), 1, - anon_sym_abstract, - STATE(3699), 1, + STATE(3550), 1, sym_comment, - STATE(3783), 1, - sym_override_modifier, - STATE(4070), 1, + STATE(4669), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(5522), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 16, + ACTIONS(985), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -333708,7 +321235,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129746] = 11, + [129673] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -333717,19 +321244,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3700), 1, + STATE(3551), 1, sym_comment, - STATE(4893), 1, + STATE(4711), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -333757,7 +321284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129806] = 11, + [129733] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -333766,19 +321293,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3701), 1, + STATE(3552), 1, sym_comment, - STATE(4884), 1, + STATE(4804), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -333806,7 +321333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129866] = 11, + [129793] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -333815,19 +321342,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3702), 1, + STATE(3553), 1, sym_comment, - STATE(4877), 1, + STATE(4777), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -333855,7 +321382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129926] = 11, + [129853] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -333864,19 +321391,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3703), 1, + STATE(3554), 1, sym_comment, - STATE(4981), 1, + STATE(4684), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -333904,7 +321431,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [129986] = 11, + [129913] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -333913,19 +321440,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3704), 1, + STATE(3555), 1, sym_comment, - STATE(4804), 1, + STATE(4805), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -333953,7 +321480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130046] = 11, + [129973] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -333962,19 +321489,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3705), 1, + STATE(3556), 1, sym_comment, - STATE(4868), 1, + STATE(4745), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -334002,7 +321529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130106] = 11, + [130033] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -334011,19 +321538,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3706), 1, + STATE(3557), 1, sym_comment, - STATE(4934), 1, + STATE(4718), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -334051,7 +321578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130166] = 11, + [130093] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -334060,19 +321587,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3707), 1, + STATE(3558), 1, sym_comment, - STATE(4910), 1, + STATE(4742), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -334100,7 +321627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130226] = 11, + [130153] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -334109,19 +321636,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3708), 1, + STATE(3559), 1, sym_comment, - STATE(4959), 1, + STATE(4761), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -334149,7 +321676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130286] = 11, + [130213] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -334158,19 +321685,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3709), 1, + STATE(3560), 1, sym_comment, - STATE(4947), 1, + STATE(4689), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -334198,7 +321725,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130346] = 11, + [130273] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -334207,19 +321734,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3710), 1, + STATE(3561), 1, sym_comment, - STATE(4896), 1, + STATE(4713), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -334247,7 +321774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130406] = 11, + [130333] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -334256,19 +321783,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3711), 1, + STATE(3562), 1, sym_comment, - STATE(4962), 1, + STATE(4695), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -334296,7 +321823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130466] = 11, + [130393] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -334305,19 +321832,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3712), 1, + STATE(3563), 1, sym_comment, - STATE(4955), 1, + STATE(4734), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(1043), 3, + ACTIONS(985), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, @@ -334345,68 +321872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130526] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(2961), 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(2973), 1, - anon_sym_class, - ACTIONS(2975), 1, - anon_sym_async, - ACTIONS(2977), 1, - anon_sym_function, - ACTIONS(2979), 1, - anon_sym_declare, - ACTIONS(2981), 1, - anon_sym_module, - ACTIONS(2983), 1, - anon_sym_abstract, - ACTIONS(2985), 1, - anon_sym_interface, - ACTIONS(2987), 1, - anon_sym_enum, - ACTIONS(2999), 1, - anon_sym_type, - ACTIONS(6924), 1, - anon_sym_default, - STATE(1064), 1, - sym_declaration, - STATE(1185), 1, - sym_internal_module, - STATE(3713), 1, - sym_comment, - STATE(5095), 1, - aux_sym_export_statement_repeat1, - STATE(5733), 1, - sym_decorator, - STATE(1205), 13, - sym_variable_declaration, - sym_lexical_declaration, - sym_class_declaration, - sym_function_declaration, - sym_generator_function_declaration, - sym_function_signature, - sym_ambient_declaration, - sym_abstract_class_declaration, - sym_module, - sym_import_alias, - sym_interface_declaration, - sym_enum_declaration, - sym_type_alias_declaration, - [130611] = 12, + [130453] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -334415,22 +321881,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6926), 1, - anon_sym_RBRACE, - STATE(3714), 1, + STATE(3564), 1, sym_comment, - STATE(5621), 1, + STATE(4824), 1, sym__property_name, - STATE(6732), 1, - sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, + ACTIONS(985), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, ACTIONS(2989), 23, anon_sym_export, anon_sym_type, @@ -334455,129 +321921,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130672] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(2885), 1, - anon_sym_namespace, - ACTIONS(2887), 1, - anon_sym_import, - ACTIONS(2889), 1, - anon_sym_var, - ACTIONS(2891), 1, - anon_sym_let, - ACTIONS(2893), 1, - anon_sym_const, - ACTIONS(2897), 1, - anon_sym_class, - ACTIONS(2899), 1, - anon_sym_async, - ACTIONS(2901), 1, - anon_sym_function, - ACTIONS(2903), 1, - anon_sym_declare, - ACTIONS(2907), 1, - anon_sym_abstract, - ACTIONS(2909), 1, - anon_sym_interface, - ACTIONS(2911), 1, - anon_sym_enum, - ACTIONS(3011), 1, - anon_sym_type, - ACTIONS(3013), 1, - anon_sym_module, - ACTIONS(3015), 1, - anon_sym_global, - STATE(3715), 1, - sym_comment, - STATE(5328), 1, - aux_sym_export_statement_repeat1, - STATE(5733), 1, - sym_decorator, - STATE(6925), 1, - sym_internal_module, - STATE(6938), 1, - sym_declaration, - STATE(6924), 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, - [130757] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(3025), 1, - anon_sym_type, - 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(3037), 1, - anon_sym_class, - ACTIONS(3039), 1, - anon_sym_async, - ACTIONS(3041), 1, - anon_sym_function, - ACTIONS(3043), 1, - anon_sym_declare, - ACTIONS(3047), 1, - anon_sym_abstract, - ACTIONS(3051), 1, - anon_sym_interface, - ACTIONS(3053), 1, - anon_sym_enum, - ACTIONS(4638), 1, - anon_sym_module, - ACTIONS(6928), 1, - anon_sym_default, - STATE(3716), 1, - sym_comment, - STATE(5101), 1, - sym_declaration, - STATE(5109), 1, - sym_internal_module, - STATE(5142), 1, - aux_sym_export_statement_repeat1, - STATE(5733), 1, - sym_decorator, - STATE(5108), 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, - [130842] = 12, + [130513] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -334586,22 +321930,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6930), 1, - anon_sym_RBRACE, - STATE(3717), 1, + STATE(3565), 1, sym_comment, - STATE(5494), 1, + STATE(4832), 1, sym__property_name, - STATE(6065), 1, - sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, + ACTIONS(985), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, ACTIONS(2989), 23, anon_sym_export, anon_sym_type, @@ -334626,48 +321970,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130903] = 12, + [130573] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(5037), 1, + anon_sym_STAR, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6932), 1, - anon_sym_RBRACE, - STATE(3718), 1, + ACTIONS(5049), 1, + anon_sym_async, + ACTIONS(5051), 1, + anon_sym_readonly, + ACTIONS(6933), 1, + anon_sym_static, + STATE(3566), 1, sym_comment, - STATE(5621), 1, + STATE(3626), 1, + sym_override_modifier, + STATE(3950), 1, sym__property_name, - STATE(6732), 1, - sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + ACTIONS(5053), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4496), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -334675,7 +322024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [130964] = 12, + [130644] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -334684,20 +322033,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6934), 1, + ACTIONS(6935), 1, anon_sym_RBRACE, - STATE(3719), 1, + STATE(3567), 1, sym_comment, - STATE(5621), 1, + STATE(5446), 1, sym__property_name, - STATE(6732), 1, + STATE(6548), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -334724,39 +322073,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131025] = 12, + [130705] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6936), 1, - anon_sym_RBRACE, - STATE(3720), 1, + sym_html_comment, + ACTIONS(6937), 1, + anon_sym_AT, + STATE(3652), 1, + sym_decorator, + STATE(3568), 2, sym_comment, - STATE(5621), 1, - sym__property_name, - STATE(6732), 1, - sym_enum_assignment, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2989), 23, + aux_sym_export_statement_repeat1, + ACTIONS(4356), 30, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -334773,7 +322115,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131086] = 12, + anon_sym_abstract, + [130754] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -334782,20 +322125,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6938), 1, + ACTIONS(6940), 1, anon_sym_RBRACE, - STATE(3721), 1, + STATE(3569), 1, sym_comment, - STATE(5621), 1, + STATE(5304), 1, sym__property_name, - STATE(6732), 1, + STATE(6133), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -334822,54 +322165,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131147] = 24, + [130815] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(2923), 1, + ACTIONS(2752), 1, anon_sym_namespace, - ACTIONS(2925), 1, + ACTIONS(2758), 1, anon_sym_import, - ACTIONS(2927), 1, + ACTIONS(2760), 1, anon_sym_var, - ACTIONS(2929), 1, + ACTIONS(2762), 1, anon_sym_let, - ACTIONS(2931), 1, + ACTIONS(2764), 1, anon_sym_const, - ACTIONS(2935), 1, + ACTIONS(2772), 1, anon_sym_class, - ACTIONS(2937), 1, + ACTIONS(2774), 1, anon_sym_async, - ACTIONS(2939), 1, + ACTIONS(2776), 1, anon_sym_function, - ACTIONS(2941), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(2789), 1, anon_sym_declare, - ACTIONS(2945), 1, + ACTIONS(2791), 1, + anon_sym_module, + ACTIONS(2793), 1, anon_sym_abstract, - ACTIONS(2947), 1, + ACTIONS(2795), 1, anon_sym_interface, - ACTIONS(2949), 1, + ACTIONS(2797), 1, anon_sym_enum, - ACTIONS(3017), 1, + ACTIONS(2827), 1, anon_sym_type, - ACTIONS(3019), 1, - anon_sym_module, - ACTIONS(3021), 1, - anon_sym_global, - STATE(1274), 1, - sym_declaration, - STATE(1315), 1, + ACTIONS(6942), 1, + anon_sym_default, + STATE(1507), 1, sym_internal_module, - STATE(3722), 1, + STATE(1538), 1, + sym_declaration, + STATE(3570), 1, sym_comment, - STATE(5125), 1, + STATE(4857), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(1318), 13, + STATE(1580), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -334883,56 +322226,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [131232] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6940), 1, - anon_sym_RBRACE, - STATE(3723), 1, - sym_comment, - STATE(5469), 1, - sym__property_name, - STATE(6081), 1, - sym_enum_assignment, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [131293] = 17, + [130900] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -334941,40 +322235,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6214), 1, - anon_sym_STAR, - ACTIONS(6216), 1, - anon_sym_async, - ACTIONS(6218), 1, - anon_sym_readonly, - ACTIONS(6942), 1, + ACTIONS(6252), 1, anon_sym_static, - STATE(3724), 1, + ACTIONS(6254), 1, + anon_sym_readonly, + ACTIONS(6256), 1, + anon_sym_abstract, + STATE(3571), 1, sym_comment, - STATE(3772), 1, + STATE(3674), 1, sym_override_modifier, - STATE(4117), 1, + STATE(4171), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6220), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 17, + ACTIONS(4496), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -334986,7 +322278,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131364] = 24, + [130967] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -335019,21 +322311,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_interface, ACTIONS(2949), 1, anon_sym_enum, - ACTIONS(3017), 1, + ACTIONS(3005), 1, anon_sym_type, ACTIONS(6944), 1, anon_sym_default, - STATE(1255), 1, + STATE(3572), 1, + sym_comment, + STATE(5027), 1, + aux_sym_export_statement_repeat1, + STATE(5596), 1, + sym_decorator, + STATE(6331), 1, + sym_internal_module, + STATE(6422), 1, + sym_declaration, + STATE(6327), 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, + [131052] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(2885), 1, + anon_sym_namespace, + ACTIONS(2887), 1, + anon_sym_import, + ACTIONS(2889), 1, + anon_sym_var, + ACTIONS(2891), 1, + anon_sym_let, + ACTIONS(2893), 1, + anon_sym_const, + ACTIONS(2897), 1, + anon_sym_class, + ACTIONS(2899), 1, + anon_sym_async, + ACTIONS(2901), 1, + anon_sym_function, + ACTIONS(2903), 1, + anon_sym_declare, + ACTIONS(2905), 1, + anon_sym_module, + ACTIONS(2907), 1, + anon_sym_abstract, + ACTIONS(2909), 1, + anon_sym_interface, + ACTIONS(2911), 1, + anon_sym_enum, + ACTIONS(3011), 1, + anon_sym_type, + ACTIONS(6946), 1, + anon_sym_default, + STATE(1402), 1, sym_declaration, - STATE(1315), 1, + STATE(1477), 1, sym_internal_module, - STATE(3725), 1, + STATE(3573), 1, sym_comment, - STATE(5125), 1, + STATE(4898), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(1318), 13, + STATE(1468), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -335047,32 +322400,38 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [131449] = 12, + [131137] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6946), 1, - anon_sym_RBRACE, - STATE(3726), 1, + ACTIONS(6948), 1, + anon_sym_static, + ACTIONS(6950), 1, + anon_sym_readonly, + ACTIONS(6952), 1, + anon_sym_abstract, + STATE(3574), 1, sym_comment, - STATE(5183), 1, + STATE(3643), 1, + sym_override_modifier, + STATE(4194), 1, sym__property_name, - STATE(6316), 1, - sym_enum_assignment, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4496), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -335080,15 +322439,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -335096,7 +322452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131510] = 12, + [131204] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -335105,20 +322461,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6948), 1, + ACTIONS(6954), 1, anon_sym_RBRACE, - STATE(3727), 1, + STATE(3575), 1, sym_comment, - STATE(5621), 1, + STATE(4868), 1, sym__property_name, - STATE(6732), 1, + STATE(5662), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -335145,7 +322501,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131571] = 12, + [131265] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -335154,20 +322510,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6950), 1, + ACTIONS(6956), 1, anon_sym_RBRACE, - STATE(3728), 1, + STATE(3576), 1, sym_comment, - STATE(5621), 1, + STATE(5446), 1, sym__property_name, - STATE(6732), 1, + STATE(6548), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -335194,7 +322550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131632] = 12, + [131326] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -335203,20 +322559,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6952), 1, + ACTIONS(6958), 1, anon_sym_RBRACE, - STATE(3729), 1, + STATE(3577), 1, sym_comment, - STATE(5621), 1, + STATE(5446), 1, sym__property_name, - STATE(6732), 1, + STATE(6548), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -335243,54 +322599,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131693] = 24, + [131387] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2752), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(2923), 1, anon_sym_namespace, - ACTIONS(2758), 1, + ACTIONS(2925), 1, anon_sym_import, - ACTIONS(2760), 1, + ACTIONS(2927), 1, anon_sym_var, - ACTIONS(2762), 1, + ACTIONS(2929), 1, anon_sym_let, - ACTIONS(2764), 1, + ACTIONS(2931), 1, anon_sym_const, - ACTIONS(2772), 1, + ACTIONS(2935), 1, anon_sym_class, - ACTIONS(2774), 1, + ACTIONS(2937), 1, anon_sym_async, - ACTIONS(2776), 1, + ACTIONS(2939), 1, anon_sym_function, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(2789), 1, + ACTIONS(2941), 1, anon_sym_declare, - ACTIONS(2793), 1, + ACTIONS(2945), 1, anon_sym_abstract, - ACTIONS(2795), 1, + ACTIONS(2947), 1, anon_sym_interface, - ACTIONS(2797), 1, + ACTIONS(2949), 1, anon_sym_enum, - ACTIONS(2827), 1, + ACTIONS(3005), 1, anon_sym_type, - ACTIONS(2829), 1, + ACTIONS(3007), 1, anon_sym_module, - ACTIONS(2831), 1, + ACTIONS(3009), 1, anon_sym_global, - STATE(1647), 1, - sym_internal_module, - STATE(1732), 1, - sym_declaration, - STATE(3730), 1, + STATE(3578), 1, sym_comment, - STATE(5112), 1, + STATE(5027), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(1772), 13, + STATE(6331), 1, + sym_internal_module, + STATE(6341), 1, + sym_declaration, + STATE(6327), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -335304,7 +322660,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [131778] = 12, + [131472] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -335313,20 +322669,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6954), 1, + ACTIONS(6960), 1, anon_sym_RBRACE, - STATE(3731), 1, + STATE(3579), 1, sym_comment, - STATE(5621), 1, + STATE(5446), 1, sym__property_name, - STATE(6732), 1, + STATE(6548), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -335353,54 +322709,95 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [131839] = 24, + [131533] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3580), 1, + sym_comment, + ACTIONS(4395), 33, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + 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_abstract, + [131578] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2787), 1, anon_sym_AT, - ACTIONS(2961), 1, + ACTIONS(3025), 1, + anon_sym_type, + ACTIONS(3027), 1, anon_sym_namespace, - ACTIONS(2963), 1, + ACTIONS(3029), 1, anon_sym_import, - ACTIONS(2965), 1, + ACTIONS(3031), 1, anon_sym_var, - ACTIONS(2967), 1, + ACTIONS(3033), 1, anon_sym_let, - ACTIONS(2969), 1, + ACTIONS(3035), 1, anon_sym_const, - ACTIONS(2973), 1, + ACTIONS(3037), 1, anon_sym_class, - ACTIONS(2975), 1, + ACTIONS(3039), 1, anon_sym_async, - ACTIONS(2977), 1, + ACTIONS(3041), 1, anon_sym_function, - ACTIONS(2979), 1, + ACTIONS(3043), 1, anon_sym_declare, - ACTIONS(2983), 1, + ACTIONS(3045), 1, + anon_sym_module, + ACTIONS(3047), 1, anon_sym_abstract, - ACTIONS(2985), 1, + ACTIONS(3049), 1, + anon_sym_global, + ACTIONS(3051), 1, anon_sym_interface, - ACTIONS(2987), 1, + ACTIONS(3053), 1, anon_sym_enum, - ACTIONS(2999), 1, - anon_sym_type, - ACTIONS(3001), 1, - anon_sym_module, - ACTIONS(3003), 1, - anon_sym_global, - STATE(1150), 1, - sym_declaration, - STATE(1185), 1, - sym_internal_module, - STATE(3732), 1, + STATE(3581), 1, sym_comment, - STATE(5095), 1, + STATE(4885), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(4992), 1, + sym_declaration, + STATE(4993), 1, + sym_internal_module, + STATE(5596), 1, sym_decorator, - STATE(1205), 13, + STATE(5000), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -335414,32 +322811,39 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [131924] = 6, + [131663] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(6956), 1, - anon_sym_AT, - STATE(3812), 1, - sym_decorator, - STATE(3733), 2, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6962), 1, + anon_sym_RBRACE, + STATE(3582), 1, sym_comment, - aux_sym_export_statement_repeat1, - ACTIONS(4375), 30, + STATE(5446), 1, + sym__property_name, + STATE(6548), 1, + sym_enum_assignment, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2989), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -335456,8 +322860,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [131973] = 12, + [131724] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(4520), 1, + anon_sym_override, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(6743), 1, + anon_sym_readonly, + ACTIONS(6964), 1, + anon_sym_STAR, + STATE(3583), 1, + sym_comment, + STATE(3631), 1, + sym_override_modifier, + STATE(3905), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6966), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4496), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [131791] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -335466,20 +322921,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6959), 1, + ACTIONS(6968), 1, anon_sym_RBRACE, - STATE(3734), 1, + STATE(3584), 1, sym_comment, - STATE(5143), 1, + STATE(5446), 1, sym__property_name, - STATE(6362), 1, + STATE(6548), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -335506,68 +322961,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132034] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(2847), 1, - anon_sym_namespace, - ACTIONS(2849), 1, - anon_sym_import, - ACTIONS(2851), 1, - anon_sym_var, - ACTIONS(2853), 1, - anon_sym_let, - ACTIONS(2855), 1, - anon_sym_const, - ACTIONS(2859), 1, - anon_sym_class, - ACTIONS(2861), 1, - anon_sym_async, - ACTIONS(2863), 1, - anon_sym_function, - ACTIONS(2865), 1, - anon_sym_declare, - ACTIONS(2867), 1, - anon_sym_module, - ACTIONS(2869), 1, - anon_sym_abstract, - ACTIONS(2871), 1, - anon_sym_interface, - ACTIONS(2873), 1, - anon_sym_enum, - ACTIONS(3005), 1, - anon_sym_type, - ACTIONS(6961), 1, - anon_sym_default, - STATE(1358), 1, - sym_internal_module, - STATE(1605), 1, - sym_declaration, - STATE(3735), 1, - sym_comment, - STATE(5167), 1, - aux_sym_export_statement_repeat1, - STATE(5733), 1, - sym_decorator, - STATE(1364), 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, - [132119] = 12, + [131852] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -335576,20 +322970,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6963), 1, + ACTIONS(6970), 1, anon_sym_RBRACE, - STATE(3736), 1, + STATE(3585), 1, sym_comment, - STATE(5016), 1, + STATE(5446), 1, sym__property_name, - STATE(5773), 1, + STATE(6548), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -335616,7 +323010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132180] = 12, + [131913] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -335625,20 +323019,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6965), 1, + ACTIONS(6972), 1, anon_sym_RBRACE, - STATE(3737), 1, + STATE(3586), 1, sym_comment, - STATE(5621), 1, + STATE(5446), 1, sym__property_name, - STATE(6732), 1, + STATE(6548), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -335665,68 +323059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132241] = 24, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2752), 1, - anon_sym_namespace, - ACTIONS(2758), 1, - anon_sym_import, - ACTIONS(2760), 1, - anon_sym_var, - ACTIONS(2762), 1, - anon_sym_let, - ACTIONS(2764), 1, - anon_sym_const, - ACTIONS(2772), 1, - anon_sym_class, - ACTIONS(2774), 1, - anon_sym_async, - ACTIONS(2776), 1, - anon_sym_function, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(2789), 1, - anon_sym_declare, - ACTIONS(2791), 1, - anon_sym_module, - ACTIONS(2793), 1, - anon_sym_abstract, - ACTIONS(2795), 1, - anon_sym_interface, - ACTIONS(2797), 1, - anon_sym_enum, - ACTIONS(2827), 1, - anon_sym_type, - ACTIONS(6967), 1, - anon_sym_default, - STATE(1637), 1, - sym_declaration, - STATE(1647), 1, - sym_internal_module, - STATE(3738), 1, - sym_comment, - STATE(5112), 1, - aux_sym_export_statement_repeat1, - STATE(5733), 1, - sym_decorator, - STATE(1772), 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, - [132326] = 12, + [131974] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -335735,20 +323068,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6969), 1, + ACTIONS(6974), 1, anon_sym_RBRACE, - STATE(3739), 1, + STATE(3587), 1, sym_comment, - STATE(5621), 1, + STATE(5446), 1, sym__property_name, - STATE(6732), 1, + STATE(6548), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -335775,38 +323108,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132387] = 15, + [132035] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6208), 1, - anon_sym_static, - ACTIONS(6210), 1, - anon_sym_readonly, - ACTIONS(6212), 1, - anon_sym_abstract, - STATE(3740), 1, + ACTIONS(6976), 1, + anon_sym_RBRACE, + STATE(3588), 1, sym_comment, - STATE(3813), 1, - sym_override_modifier, - STATE(4390), 1, + STATE(5446), 1, sym__property_name, - ACTIONS(3991), 2, + STATE(6548), 1, + sym_enum_assignment, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 20, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -335814,12 +323141,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -335827,7 +323157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132454] = 12, + [132096] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -335836,20 +323166,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6971), 1, + ACTIONS(6978), 1, anon_sym_RBRACE, - STATE(3741), 1, + STATE(3589), 1, sym_comment, - STATE(5621), 1, + STATE(5446), 1, sym__property_name, - STATE(6732), 1, + STATE(6548), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -335876,38 +323206,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132515] = 15, + [132157] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6973), 1, - anon_sym_static, - ACTIONS(6975), 1, - anon_sym_readonly, - ACTIONS(6977), 1, - anon_sym_abstract, - STATE(3742), 1, + ACTIONS(6980), 1, + anon_sym_RBRACE, + STATE(3590), 1, sym_comment, - STATE(3830), 1, - sym_override_modifier, - STATE(4418), 1, + STATE(5446), 1, sym__property_name, - ACTIONS(3991), 2, + STATE(6548), 1, + sym_enum_assignment, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 20, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -335915,12 +323239,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, anon_sym_new, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, + anon_sym_override, anon_sym_module, anon_sym_any, anon_sym_number, @@ -335928,7 +323255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132582] = 15, + [132218] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -335937,38 +323264,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6714), 1, - anon_sym_readonly, - ACTIONS(6979), 1, + ACTIONS(6221), 1, anon_sym_STAR, - STATE(3743), 1, + ACTIONS(6223), 1, + anon_sym_async, + ACTIONS(6225), 1, + anon_sym_readonly, + ACTIONS(6982), 1, + anon_sym_static, + STATE(3591), 1, sym_comment, - STATE(3776), 1, + STATE(3620), 1, sym_override_modifier, - STATE(4060), 1, + STATE(3964), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6981), 2, + ACTIONS(6227), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 19, + ACTIONS(4496), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, - anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -335980,7 +323309,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132649] = 17, + [132289] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(2961), 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(2973), 1, + anon_sym_class, + ACTIONS(2975), 1, + anon_sym_async, + ACTIONS(2977), 1, + anon_sym_function, + ACTIONS(2979), 1, + anon_sym_declare, + ACTIONS(2983), 1, + anon_sym_abstract, + ACTIONS(2985), 1, + anon_sym_interface, + ACTIONS(2987), 1, + anon_sym_enum, + ACTIONS(2999), 1, + anon_sym_type, + ACTIONS(3001), 1, + anon_sym_module, + ACTIONS(3003), 1, + anon_sym_global, + STATE(1199), 1, + sym_internal_module, + STATE(1210), 1, + sym_declaration, + STATE(3592), 1, + sym_comment, + STATE(4855), 1, + aux_sym_export_statement_repeat1, + STATE(5596), 1, + sym_decorator, + STATE(1197), 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, + [132374] = 17, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -335995,17 +323385,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(2997), 1, anon_sym_override, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6104), 1, + ACTIONS(6093), 1, anon_sym_STAR, - ACTIONS(6983), 1, + ACTIONS(6984), 1, anon_sym_static, - STATE(3744), 1, + STATE(3593), 1, sym_comment, - STATE(3765), 1, + STATE(3632), 1, sym_override_modifier, - STATE(4902), 1, + STATE(4672), 1, sym__property_name, ACTIONS(2823), 2, sym_number, @@ -336013,7 +323403,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 17, @@ -336034,7 +323424,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132720] = 12, + [132445] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -336043,20 +323433,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6985), 1, + ACTIONS(6986), 1, anon_sym_RBRACE, - STATE(3745), 1, + STATE(3594), 1, sym_comment, - STATE(5621), 1, + STATE(5446), 1, sym__property_name, - STATE(6732), 1, + STATE(6548), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -336083,54 +323473,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [132781] = 24, + [132506] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2787), 1, anon_sym_AT, - ACTIONS(2847), 1, + ACTIONS(2885), 1, anon_sym_namespace, - ACTIONS(2849), 1, + ACTIONS(2887), 1, anon_sym_import, - ACTIONS(2851), 1, + ACTIONS(2889), 1, anon_sym_var, - ACTIONS(2853), 1, + ACTIONS(2891), 1, anon_sym_let, - ACTIONS(2855), 1, + ACTIONS(2893), 1, anon_sym_const, - ACTIONS(2859), 1, + ACTIONS(2897), 1, anon_sym_class, - ACTIONS(2861), 1, + ACTIONS(2899), 1, anon_sym_async, - ACTIONS(2863), 1, + ACTIONS(2901), 1, anon_sym_function, - ACTIONS(2865), 1, + ACTIONS(2903), 1, anon_sym_declare, - ACTIONS(2869), 1, + ACTIONS(2907), 1, anon_sym_abstract, - ACTIONS(2871), 1, + ACTIONS(2909), 1, anon_sym_interface, - ACTIONS(2873), 1, + ACTIONS(2911), 1, anon_sym_enum, - ACTIONS(3005), 1, + ACTIONS(3011), 1, anon_sym_type, - ACTIONS(3007), 1, + ACTIONS(3013), 1, anon_sym_module, - ACTIONS(3009), 1, + ACTIONS(3015), 1, anon_sym_global, - STATE(1322), 1, - sym_declaration, - STATE(1358), 1, + STATE(1477), 1, sym_internal_module, - STATE(3746), 1, + STATE(1483), 1, + sym_declaration, + STATE(3595), 1, sym_comment, - STATE(5167), 1, + STATE(4898), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(1364), 13, + STATE(1468), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -336144,7 +323534,56 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [132866] = 24, + [132591] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6988), 1, + anon_sym_RBRACE, + STATE(3596), 1, + sym_comment, + STATE(5446), 1, + sym__property_name, + STATE(6548), 1, + sym_enum_assignment, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [132652] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, @@ -336171,27 +323610,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_function, ACTIONS(3043), 1, anon_sym_declare, - ACTIONS(3045), 1, - anon_sym_module, ACTIONS(3047), 1, anon_sym_abstract, - ACTIONS(3049), 1, - anon_sym_global, ACTIONS(3051), 1, anon_sym_interface, ACTIONS(3053), 1, anon_sym_enum, - STATE(3747), 1, + ACTIONS(4642), 1, + anon_sym_module, + ACTIONS(6990), 1, + anon_sym_default, + STATE(3597), 1, sym_comment, - STATE(5104), 1, + STATE(4885), 1, + aux_sym_export_statement_repeat1, + STATE(4983), 1, sym_declaration, - STATE(5109), 1, + STATE(4993), 1, sym_internal_module, - STATE(5142), 1, - aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(5108), 13, + STATE(5000), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -336205,154 +323644,68 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [132951] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [132737] = 24, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6987), 1, - anon_sym_RBRACE, - STATE(3748), 1, - sym_comment, - STATE(5621), 1, - sym__property_name, - STATE(6732), 1, - sym_enum_assignment, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [133012] = 12, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6989), 1, - anon_sym_RBRACE, - STATE(3749), 1, - sym_comment, - STATE(5621), 1, - sym__property_name, - STATE(6732), 1, - sym_enum_assignment, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2989), 23, - anon_sym_export, - anon_sym_type, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(2961), 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(2973), 1, + anon_sym_class, + ACTIONS(2975), 1, anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, + ACTIONS(2977), 1, + anon_sym_function, + ACTIONS(2979), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, + ACTIONS(2981), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [133073] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - ACTIONS(6991), 1, - anon_sym_RBRACE, - STATE(3750), 1, - sym_comment, - STATE(5621), 1, - sym__property_name, - STATE(6732), 1, - sym_enum_assignment, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2989), 23, - anon_sym_export, + ACTIONS(2983), 1, + anon_sym_abstract, + ACTIONS(2985), 1, + anon_sym_interface, + ACTIONS(2987), 1, + anon_sym_enum, + ACTIONS(2999), 1, anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_async, - anon_sym_new, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [133134] = 12, + ACTIONS(6992), 1, + anon_sym_default, + STATE(1085), 1, + sym_declaration, + STATE(1199), 1, + sym_internal_module, + STATE(3598), 1, + sym_comment, + STATE(4855), 1, + aux_sym_export_statement_repeat1, + STATE(5596), 1, + sym_decorator, + STATE(1197), 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, + [132822] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -336361,20 +323714,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6993), 1, + ACTIONS(6994), 1, anon_sym_RBRACE, - STATE(3751), 1, + STATE(3599), 1, sym_comment, - STATE(5380), 1, + STATE(5113), 1, sym__property_name, - STATE(6140), 1, + STATE(5939), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -336401,48 +323754,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133195] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [132883] = 24, ACTIONS(5), 1, sym_html_comment, - STATE(3752), 1, - sym_comment, - ACTIONS(4413), 33, - anon_sym_export, - anon_sym_STAR, - anon_sym_type, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(2843), 1, anon_sym_namespace, + ACTIONS(2845), 1, + anon_sym_import, + ACTIONS(2847), 1, + anon_sym_var, + ACTIONS(2849), 1, anon_sym_let, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(2851), 1, + anon_sym_const, + ACTIONS(2855), 1, + anon_sym_class, + ACTIONS(2857), 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, + ACTIONS(2859), 1, + anon_sym_function, + ACTIONS(2861), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_override, + ACTIONS(2863), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, + ACTIONS(2865), 1, anon_sym_abstract, - [133240] = 12, + ACTIONS(2867), 1, + anon_sym_interface, + ACTIONS(2869), 1, + anon_sym_enum, + ACTIONS(3017), 1, + anon_sym_type, + ACTIONS(6996), 1, + anon_sym_default, + STATE(1374), 1, + sym_declaration, + STATE(1445), 1, + sym_internal_module, + STATE(3600), 1, + sym_comment, + STATE(4860), 1, + aux_sym_export_statement_repeat1, + STATE(5596), 1, + sym_decorator, + STATE(1450), 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, + [132968] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -336451,20 +323824,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6995), 1, + ACTIONS(6998), 1, anon_sym_RBRACE, - STATE(3753), 1, + STATE(3601), 1, sym_comment, - STATE(5621), 1, + STATE(5066), 1, sym__property_name, - STATE(6732), 1, + STATE(5882), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -336491,7 +323864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133301] = 12, + [133029] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -336500,20 +323873,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6997), 1, + ACTIONS(7000), 1, anon_sym_RBRACE, - STATE(3754), 1, + STATE(3602), 1, sym_comment, - STATE(5621), 1, + STATE(5446), 1, sym__property_name, - STATE(6732), 1, + STATE(6548), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -336540,7 +323913,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133362] = 12, + [133090] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -336549,20 +323922,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6999), 1, + ACTIONS(7002), 1, anon_sym_RBRACE, - STATE(3755), 1, + STATE(3603), 1, sym_comment, - STATE(5621), 1, + STATE(5446), 1, sym__property_name, - STATE(6732), 1, + STATE(6548), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -336589,108 +323962,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133423] = 17, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(4516), 1, - anon_sym_override, - ACTIONS(5149), 1, - anon_sym_STAR, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(5161), 1, - anon_sym_async, - ACTIONS(5163), 1, - anon_sym_readonly, - ACTIONS(7001), 1, - anon_sym_static, - STATE(3756), 1, - sym_comment, - STATE(3780), 1, - sym_override_modifier, - STATE(4103), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5165), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4492), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_let, - anon_sym_new, - sym_identifier, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_object, - [133494] = 24, + [133151] = 24, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2787), 1, anon_sym_AT, - ACTIONS(2885), 1, + ACTIONS(2843), 1, anon_sym_namespace, - ACTIONS(2887), 1, + ACTIONS(2845), 1, anon_sym_import, - ACTIONS(2889), 1, + ACTIONS(2847), 1, anon_sym_var, - ACTIONS(2891), 1, + ACTIONS(2849), 1, anon_sym_let, - ACTIONS(2893), 1, + ACTIONS(2851), 1, anon_sym_const, - ACTIONS(2897), 1, + ACTIONS(2855), 1, anon_sym_class, - ACTIONS(2899), 1, + ACTIONS(2857), 1, anon_sym_async, - ACTIONS(2901), 1, + ACTIONS(2859), 1, anon_sym_function, - ACTIONS(2903), 1, + ACTIONS(2861), 1, anon_sym_declare, - ACTIONS(2905), 1, - anon_sym_module, - ACTIONS(2907), 1, + ACTIONS(2865), 1, anon_sym_abstract, - ACTIONS(2909), 1, + ACTIONS(2867), 1, anon_sym_interface, - ACTIONS(2911), 1, + ACTIONS(2869), 1, anon_sym_enum, - ACTIONS(3011), 1, + ACTIONS(3017), 1, anon_sym_type, - ACTIONS(7003), 1, - anon_sym_default, - STATE(3757), 1, + ACTIONS(3019), 1, + anon_sym_module, + ACTIONS(3021), 1, + anon_sym_global, + STATE(1432), 1, + sym_declaration, + STATE(1445), 1, + sym_internal_module, + STATE(3604), 1, sym_comment, - STATE(5328), 1, + STATE(4860), 1, aux_sym_export_statement_repeat1, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - STATE(6925), 1, - sym_internal_module, - STATE(7093), 1, - sym_declaration, - STATE(6924), 13, + STATE(1450), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -336704,7 +324023,7 @@ static const uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [133579] = 12, + [133236] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -336713,20 +324032,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(7005), 1, + ACTIONS(7004), 1, anon_sym_RBRACE, - STATE(3758), 1, + STATE(3605), 1, sym_comment, - STATE(5621), 1, + STATE(5197), 1, sym__property_name, - STATE(6732), 1, + STATE(6049), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -336753,7 +324072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133640] = 12, + [133297] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -336762,20 +324081,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(7007), 1, + ACTIONS(7006), 1, anon_sym_RBRACE, - STATE(3759), 1, + STATE(3606), 1, sym_comment, - STATE(5621), 1, + STATE(5446), 1, sym__property_name, - STATE(6732), 1, + STATE(6548), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -336802,7 +324121,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133701] = 15, + [133358] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -336811,30 +324130,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(4516), 1, + ACTIONS(4520), 1, anon_sym_override, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(7009), 1, + ACTIONS(7008), 1, anon_sym_STAR, - ACTIONS(7011), 1, + ACTIONS(7010), 1, anon_sym_readonly, - STATE(3760), 1, + STATE(3607), 1, sym_comment, - STATE(3782), 1, + STATE(3635), 1, sym_override_modifier, - STATE(4068), 1, + STATE(3911), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(7013), 2, + ACTIONS(7012), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 19, + ACTIONS(4496), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -336854,7 +324173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133768] = 12, + [133425] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -336863,20 +324182,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(7015), 1, + ACTIONS(7014), 1, anon_sym_RBRACE, - STATE(3761), 1, + STATE(3608), 1, sym_comment, - STATE(5621), 1, + STATE(5446), 1, sym__property_name, - STATE(6732), 1, + STATE(6548), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -336903,7 +324222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133829] = 12, + [133486] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -336912,20 +324231,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(7017), 1, + ACTIONS(7016), 1, anon_sym_RBRACE, - STATE(3762), 1, + STATE(3609), 1, sym_comment, - STATE(5621), 1, + STATE(5346), 1, sym__property_name, - STATE(6732), 1, + STATE(6284), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -336952,7 +324271,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133890] = 12, + [133547] = 24, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2752), 1, + anon_sym_namespace, + ACTIONS(2758), 1, + anon_sym_import, + ACTIONS(2760), 1, + anon_sym_var, + ACTIONS(2762), 1, + anon_sym_let, + ACTIONS(2764), 1, + anon_sym_const, + ACTIONS(2772), 1, + anon_sym_class, + ACTIONS(2774), 1, + anon_sym_async, + ACTIONS(2776), 1, + anon_sym_function, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(2789), 1, + anon_sym_declare, + ACTIONS(2793), 1, + anon_sym_abstract, + ACTIONS(2795), 1, + anon_sym_interface, + ACTIONS(2797), 1, + anon_sym_enum, + ACTIONS(2827), 1, + anon_sym_type, + ACTIONS(2829), 1, + anon_sym_module, + ACTIONS(2831), 1, + anon_sym_global, + STATE(1507), 1, + sym_internal_module, + STATE(1545), 1, + sym_declaration, + STATE(3610), 1, + sym_comment, + STATE(4857), 1, + aux_sym_export_statement_repeat1, + STATE(5596), 1, + sym_decorator, + STATE(1580), 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, + [133632] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -336961,20 +324341,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(7019), 1, + ACTIONS(7018), 1, anon_sym_RBRACE, - STATE(3763), 1, + STATE(3611), 1, sym_comment, - STATE(5621), 1, + STATE(5446), 1, sym__property_name, - STATE(6732), 1, + STATE(6548), 1, sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -337001,44 +324381,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [133951] = 14, + [133693] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6222), 1, - anon_sym_STAR, - ACTIONS(6224), 1, - anon_sym_async, - ACTIONS(7021), 1, - anon_sym_readonly, - STATE(3764), 1, + ACTIONS(7020), 1, + anon_sym_RBRACE, + STATE(3612), 1, sym_comment, - STATE(4075), 1, + STATE(5446), 1, sym__property_name, - ACTIONS(3991), 2, + STATE(6548), 1, + sym_enum_assignment, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6228), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 19, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -337051,7 +324430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134015] = 14, + [133754] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -337060,35 +324439,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6794), 1, - anon_sym_STAR, - ACTIONS(6796), 1, - anon_sym_async, - ACTIONS(6798), 1, - anon_sym_readonly, - STATE(3765), 1, + ACTIONS(7022), 1, + anon_sym_RBRACE, + STATE(3613), 1, sym_comment, - STATE(4805), 1, + STATE(5446), 1, sym__property_name, + STATE(6548), 1, + sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6800), 2, - anon_sym_get, - anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 19, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -337101,31 +324479,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134079] = 5, + [133815] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3766), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(7024), 1, + anon_sym_RBRACE, + STATE(3614), 1, sym_comment, - ACTIONS(1043), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2470), 29, + STATE(5446), 1, + sym__property_name, + STATE(6548), 1, + sym_enum_assignment, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2989), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -337142,44 +324528,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134125] = 14, + [133876] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6337), 1, - anon_sym_STAR, - ACTIONS(6512), 1, - anon_sym_async, - ACTIONS(7023), 1, - anon_sym_readonly, - STATE(3767), 1, + ACTIONS(7026), 1, + anon_sym_RBRACE, + STATE(3615), 1, sym_comment, - STATE(4047), 1, + STATE(5446), 1, sym__property_name, - ACTIONS(3991), 2, + STATE(6548), 1, + sym_enum_assignment, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6514), 2, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2989), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_async, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(4240), 2, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [133937] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(7028), 1, + anon_sym_RBRACE, + STATE(3616), 1, + sym_comment, + STATE(5446), 1, + sym__property_name, + STATE(6548), 1, + sym_enum_assignment, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 19, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -337192,7 +324626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134189] = 14, + [133998] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -337201,35 +324635,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6458), 1, + ACTIONS(6258), 1, anon_sym_STAR, - ACTIONS(6460), 1, + ACTIONS(6260), 1, anon_sym_async, - ACTIONS(7025), 1, + ACTIONS(6266), 1, anon_sym_readonly, - STATE(3768), 1, + STATE(3617), 1, sym_comment, - STATE(4121), 1, + STATE(3902), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6462), 2, + ACTIONS(6262), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 19, + ACTIONS(4496), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [134062] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3618), 1, + sym_comment, + ACTIONS(985), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2452), 29, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -337242,7 +324717,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134253] = 14, + [134108] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -337251,28 +324726,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5149), 1, - anon_sym_STAR, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(5161), 1, + ACTIONS(6431), 1, + anon_sym_STAR, + ACTIONS(6591), 1, anon_sym_async, - ACTIONS(5163), 1, + ACTIONS(7030), 1, anon_sym_readonly, - STATE(3769), 1, + STATE(3619), 1, sym_comment, - STATE(4103), 1, + STATE(3998), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(5165), 2, + ACTIONS(6593), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 19, + ACTIONS(4496), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -337292,37 +324767,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134317] = 14, + [134172] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6880), 1, + ACTIONS(6122), 1, anon_sym_STAR, - ACTIONS(6884), 1, + ACTIONS(6124), 1, anon_sym_async, - ACTIONS(7027), 1, + ACTIONS(6126), 1, anon_sym_readonly, - STATE(3770), 1, + STATE(3620), 1, sym_comment, - STATE(4910), 1, + STATE(3978), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6882), 2, + ACTIONS(6128), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 19, + ACTIONS(4496), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -337342,7 +324817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134381] = 14, + [134236] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -337355,13 +324830,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_async, ACTIONS(2993), 1, anon_sym_readonly, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6104), 1, + ACTIONS(6093), 1, anon_sym_STAR, - STATE(3771), 1, + STATE(3621), 1, sym_comment, - STATE(4902), 1, + STATE(4672), 1, sym__property_name, ACTIONS(2823), 2, sym_number, @@ -337369,7 +324844,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2995), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 19, @@ -337392,7 +324867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134445] = 14, + [134300] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -337401,28 +324876,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6165), 1, + ACTIONS(6221), 1, anon_sym_STAR, - ACTIONS(6167), 1, + ACTIONS(6223), 1, anon_sym_async, - ACTIONS(6169), 1, + ACTIONS(6225), 1, anon_sym_readonly, - STATE(3772), 1, + STATE(3622), 1, sym_comment, - STATE(4126), 1, + STATE(3964), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6171), 2, + ACTIONS(6227), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 19, + ACTIONS(4496), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -337442,44 +324917,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134509] = 14, + [134364] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(5514), 1, - anon_sym_STAR, - ACTIONS(5518), 1, - anon_sym_async, - ACTIONS(5520), 1, - anon_sym_readonly, - STATE(3773), 1, + STATE(3623), 1, sym_comment, - STATE(4070), 1, + STATE(5446), 1, sym__property_name, - ACTIONS(3991), 2, + STATE(6548), 1, + sym_enum_assignment, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(5522), 2, - anon_sym_get, - anon_sym_set, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 19, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -337492,7 +324964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134573] = 11, + [134422] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -337501,32 +324973,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3774), 1, + ACTIONS(6889), 1, + anon_sym_STAR, + ACTIONS(6901), 1, + anon_sym_async, + ACTIONS(7032), 1, + anon_sym_readonly, + STATE(3624), 1, sym_comment, - STATE(5621), 1, + STATE(4777), 1, sym__property_name, - STATE(6732), 1, - sym_enum_assignment, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + ACTIONS(6891), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(2989), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -337539,7 +325014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134631] = 14, + [134486] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -337548,28 +325023,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6595), 1, + ACTIONS(6491), 1, anon_sym_STAR, - ACTIONS(6597), 1, + ACTIONS(6511), 1, anon_sym_async, - ACTIONS(7029), 1, + ACTIONS(7034), 1, anon_sym_readonly, - STATE(3775), 1, + STATE(3625), 1, sym_comment, - STATE(4073), 1, + STATE(3984), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6599), 2, + ACTIONS(6513), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 19, + ACTIONS(4496), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -337589,42 +325064,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134695] = 12, + [134550] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(7031), 1, + ACTIONS(6101), 1, anon_sym_STAR, - STATE(3776), 1, + ACTIONS(6103), 1, + anon_sym_async, + ACTIONS(6105), 1, + anon_sym_readonly, + STATE(3626), 1, sym_comment, - STATE(4992), 1, + STATE(3994), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(7033), 2, + ACTIONS(6107), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 21, + ACTIONS(4496), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -337637,7 +325114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134755] = 14, + [134614] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -337646,28 +325123,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6118), 1, + ACTIONS(5838), 1, anon_sym_STAR, - ACTIONS(6120), 1, + ACTIONS(5842), 1, anon_sym_async, - ACTIONS(7035), 1, + ACTIONS(5844), 1, anon_sym_readonly, - STATE(3777), 1, + STATE(3627), 1, sym_comment, - STATE(4066), 1, + STATE(3904), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6124), 2, + ACTIONS(5846), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 19, + ACTIONS(4496), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -337687,7 +325164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134819] = 14, + [134678] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -337696,28 +325173,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6118), 1, + ACTIONS(6405), 1, anon_sym_STAR, - ACTIONS(6120), 1, + ACTIONS(6427), 1, anon_sym_async, - ACTIONS(7037), 1, + ACTIONS(7036), 1, anon_sym_readonly, - STATE(3778), 1, + STATE(3628), 1, sym_comment, - STATE(4058), 1, + STATE(3906), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6124), 2, + ACTIONS(6429), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 19, + ACTIONS(4496), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -337737,7 +325214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134883] = 14, + [134742] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -337746,28 +325223,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6319), 1, + ACTIONS(6393), 1, anon_sym_STAR, - ACTIONS(6349), 1, + ACTIONS(6399), 1, anon_sym_async, - ACTIONS(7039), 1, + ACTIONS(7038), 1, anon_sym_readonly, - STATE(3779), 1, + STATE(3629), 1, sym_comment, - STATE(4115), 1, + STATE(3903), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6351), 2, + ACTIONS(6401), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 19, + ACTIONS(4496), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -337787,7 +325264,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [134947] = 14, + [134806] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -337796,28 +325273,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, - anon_sym_LBRACK, - ACTIONS(6144), 1, + ACTIONS(5037), 1, anon_sym_STAR, - ACTIONS(6146), 1, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(5049), 1, anon_sym_async, - ACTIONS(6148), 1, + ACTIONS(5051), 1, anon_sym_readonly, - STATE(3780), 1, + STATE(3630), 1, sym_comment, - STATE(4091), 1, + STATE(3950), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6150), 2, + ACTIONS(5053), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 19, + ACTIONS(4496), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -337837,44 +325314,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135011] = 14, + [134870] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6214), 1, + ACTIONS(7040), 1, anon_sym_STAR, - ACTIONS(6216), 1, - anon_sym_async, - ACTIONS(6218), 1, - anon_sym_readonly, - STATE(3781), 1, + STATE(3631), 1, sym_comment, - STATE(4117), 1, + STATE(4805), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(6220), 2, + ACTIONS(7042), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 19, + ACTIONS(2989), 21, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, + anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -337887,7 +325362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135075] = 12, + [134930] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -337896,33 +325371,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6979), 1, + ACTIONS(6868), 1, anon_sym_STAR, - STATE(3782), 1, + ACTIONS(6870), 1, + anon_sym_async, + ACTIONS(6872), 1, + anon_sym_readonly, + STATE(3632), 1, sym_comment, - STATE(4944), 1, + STATE(4794), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - ACTIONS(7041), 2, + ACTIONS(6874), 2, anon_sym_get, anon_sym_set, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 21, + ACTIONS(2989), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_async, anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -337935,7 +325412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135135] = 14, + [134994] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -337944,28 +325421,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(6173), 1, + ACTIONS(6045), 1, anon_sym_STAR, - ACTIONS(6175), 1, + ACTIONS(6047), 1, anon_sym_async, - ACTIONS(6177), 1, + ACTIONS(7044), 1, anon_sym_readonly, - STATE(3783), 1, + STATE(3633), 1, sym_comment, - STATE(4056), 1, + STATE(3909), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - ACTIONS(6179), 2, + ACTIONS(6049), 2, anon_sym_get, anon_sym_set, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 19, + ACTIONS(4496), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -337985,32 +325462,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135199] = 4, + [135058] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3784), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(6045), 1, + anon_sym_STAR, + ACTIONS(6047), 1, + anon_sym_async, + ACTIONS(7046), 1, + anon_sym_readonly, + STATE(3634), 1, sym_comment, - ACTIONS(4436), 31, + STATE(3920), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6049), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4496), 19, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - anon_sym_LBRACK, + 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, + [135122] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, anon_sym_DQUOTE, + ACTIONS(1967), 1, anon_sym_SQUOTE, + ACTIONS(5579), 1, + anon_sym_LBRACK, + ACTIONS(6964), 1, + anon_sym_STAR, + STATE(3635), 1, + sym_comment, + STATE(4702), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(7048), 2, + anon_sym_get, + anon_sym_set, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2989), 21, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, 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, @@ -338023,8 +325560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [135242] = 11, + [135182] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -338033,21 +325569,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(7043), 1, + ACTIONS(6237), 1, + anon_sym_STAR, + ACTIONS(6239), 1, + anon_sym_async, + ACTIONS(7050), 1, anon_sym_readonly, - STATE(3785), 1, + STATE(3636), 1, sym_comment, - STATE(4430), 1, + STATE(3925), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + ACTIONS(6243), 2, + anon_sym_get, + anon_sym_set, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 22, + ACTIONS(4496), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_new, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + [135246] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5579), 1, + anon_sym_LBRACK, + STATE(3637), 1, + sym_comment, + STATE(4702), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -338056,6 +325640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -338070,30 +325655,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135299] = 11, + [135301] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(7045), 1, - anon_sym_readonly, - STATE(3786), 1, + STATE(3638), 1, sym_comment, - STATE(4360), 1, + STATE(4805), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 22, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -338102,6 +325685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -338125,16 +325709,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3787), 1, + STATE(3639), 1, sym_comment, - STATE(4902), 1, + STATE(4669), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -338161,30 +325745,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135411] = 11, + [135411] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(7047), 1, - anon_sym_readonly, - STATE(3788), 1, + STATE(3640), 1, sym_comment, - STATE(4416), 1, + STATE(4742), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 22, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -338193,6 +325775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -338207,7 +325790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135468] = 11, + [135466] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -338216,21 +325799,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(7049), 1, + ACTIONS(7052), 1, anon_sym_readonly, - STATE(3789), 1, + STATE(3641), 1, sym_comment, - STATE(4401), 1, + STATE(4217), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 22, + ACTIONS(4496), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -338253,7 +325836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135525] = 10, + [135523] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -338262,16 +325845,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3790), 1, + STATE(3642), 1, sym_comment, - STATE(4942), 1, + STATE(4836), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -338298,30 +325881,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135580] = 4, + [135578] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3791), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(7054), 1, + anon_sym_readonly, + STATE(3643), 1, sym_comment, - ACTIONS(4357), 31, + STATE(4239), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4496), 22, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -338336,8 +325927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [135623] = 10, + [135635] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -338346,16 +325936,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3792), 1, + STATE(3644), 1, sym_comment, - STATE(4805), 1, + STATE(4728), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -338382,28 +325972,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135678] = 10, + [135690] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3793), 1, + ACTIONS(7056), 1, + anon_sym_readonly, + STATE(3645), 1, sym_comment, - STATE(4835), 1, + STATE(4274), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4496), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -338412,7 +326004,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -338427,28 +326018,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135733] = 10, + [135747] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3794), 1, + STATE(3646), 1, sym_comment, - STATE(4848), 1, + STATE(4271), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -338472,7 +326063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135788] = 10, + [135802] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -338481,16 +326072,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3795), 1, + STATE(3647), 1, sym_comment, - STATE(4962), 1, + STATE(4711), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -338517,28 +326108,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135843] = 10, + [135857] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3796), 1, + ACTIONS(7058), 1, + anon_sym_readonly, + STATE(3648), 1, sym_comment, - STATE(4960), 1, + STATE(4219), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4496), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -338547,7 +326140,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -338562,28 +326154,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135898] = 10, + [135914] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3797), 1, + ACTIONS(7060), 1, + anon_sym_readonly, + STATE(3649), 1, sym_comment, - STATE(4959), 1, + STATE(4242), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4496), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -338592,7 +326186,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -338607,7 +326200,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [135953] = 10, + [135971] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -338616,16 +326209,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3798), 1, + STATE(3650), 1, sym_comment, - STATE(4955), 1, + STATE(4710), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -338652,28 +326245,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136008] = 10, + [136026] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3799), 1, + ACTIONS(7062), 1, + anon_sym_readonly, + STATE(3651), 1, sym_comment, - STATE(4947), 1, + STATE(4282), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4496), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -338682,7 +326277,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -338697,35 +326291,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136063] = 10, + [136083] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - STATE(3800), 1, + STATE(3652), 1, sym_comment, - STATE(4896), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4440), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -338742,35 +326329,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136118] = 10, + anon_sym_abstract, + [136126] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - STATE(3801), 1, + STATE(3653), 1, sym_comment, - STATE(4935), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4430), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -338787,7 +326368,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136173] = 10, + anon_sym_abstract, + [136169] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -338796,16 +326378,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3802), 1, + STATE(3654), 1, sym_comment, - STATE(4910), 1, + STATE(4693), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -338832,30 +326414,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136228] = 4, + [136224] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3803), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(7064), 1, + anon_sym_readonly, + STATE(3655), 1, sym_comment, - ACTIONS(4446), 31, + STATE(4204), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4496), 22, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -338870,29 +326460,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [136271] = 4, + [136281] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3804), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, + anon_sym_LBRACK, + STATE(3656), 1, sym_comment, - ACTIONS(4452), 31, + STATE(4336), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4496), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -338909,29 +326505,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [136314] = 10, + [136336] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3805), 1, + STATE(3657), 1, sym_comment, - STATE(4934), 1, + STATE(4308), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -338955,28 +326550,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136369] = 10, + [136391] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3806), 1, + STATE(3658), 1, sym_comment, - STATE(4390), 1, + STATE(4824), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 23, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -339000,30 +326595,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136424] = 11, + [136446] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6714), 1, - anon_sym_readonly, - STATE(3807), 1, + STATE(3659), 1, sym_comment, - STATE(4390), 1, + STATE(4712), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 22, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -339032,6 +326625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -339046,7 +326640,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136481] = 10, + [136501] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -339055,16 +326649,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3808), 1, + STATE(3660), 1, sym_comment, - STATE(4992), 1, + STATE(4804), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -339091,7 +326685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136536] = 10, + [136556] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -339100,16 +326694,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3809), 1, + STATE(3661), 1, sym_comment, - STATE(4944), 1, + STATE(4745), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -339136,35 +326730,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136591] = 10, + [136611] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + STATE(3662), 1, + sym_comment, + ACTIONS(4346), 31, + anon_sym_export, + anon_sym_STAR, + anon_sym_type, + anon_sym_namespace, + anon_sym_let, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - STATE(3810), 1, - sym_comment, - STATE(4911), 1, - sym__property_name, - ACTIONS(2823), 2, + anon_sym_async, + anon_sym_new, sym_number, + sym_identifier, sym_private_property_identifier, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2989), 23, + anon_sym_AT, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_override, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_object, + anon_sym_abstract, + [136654] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + STATE(3663), 1, + sym_comment, + ACTIONS(4438), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -339181,28 +326807,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136646] = 10, + anon_sym_abstract, + [136697] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3811), 1, + STATE(3664), 1, sym_comment, - STATE(4449), 1, + STATE(4779), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 23, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -339226,30 +326853,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136701] = 4, + [136752] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3812), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(5047), 1, + anon_sym_LBRACK, + ACTIONS(7066), 1, + anon_sym_readonly, + STATE(3665), 1, sym_comment, - ACTIONS(4430), 31, + STATE(4246), 1, + sym__property_name, + ACTIONS(3995), 2, + sym_number, + sym_private_property_identifier, + STATE(4102), 2, + sym_string, + sym_computed_property_name, + ACTIONS(4496), 22, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -339264,31 +326899,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [136744] = 11, + [136809] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(6754), 1, - anon_sym_readonly, - STATE(3813), 1, + STATE(3666), 1, sym_comment, - STATE(4449), 1, + STATE(4689), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 22, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -339297,6 +326929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -339311,7 +326944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136801] = 10, + [136864] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -339320,16 +326953,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3814), 1, + STATE(3667), 1, sym_comment, - STATE(4930), 1, + STATE(4695), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -339356,35 +326989,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136856] = 10, + [136919] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(5510), 1, - anon_sym_LBRACK, - STATE(3815), 1, + STATE(3668), 1, sym_comment, - STATE(4922), 1, - sym__property_name, - ACTIONS(2823), 2, - sym_number, - sym_private_property_identifier, - STATE(4552), 2, - sym_string, - sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4428), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -339401,28 +327027,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136911] = 10, + anon_sym_abstract, + [136962] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3816), 1, + ACTIONS(6743), 1, + anon_sym_readonly, + STATE(3669), 1, sym_comment, - STATE(4967), 1, + STATE(4171), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4496), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -339431,7 +327060,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -339446,7 +327074,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [136966] = 10, + [137019] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -339455,19 +327083,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3817), 1, + ACTIONS(7068), 1, + anon_sym_readonly, + STATE(3670), 1, sym_comment, - STATE(4431), 1, + STATE(4301), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 23, + ACTIONS(4496), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -339476,7 +327106,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -339491,28 +327120,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137021] = 10, + [137076] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3818), 1, + STATE(3671), 1, sym_comment, - STATE(4974), 1, + STATE(4171), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -339536,7 +327165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137076] = 10, + [137131] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -339545,16 +327174,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3819), 1, + STATE(3672), 1, sym_comment, - STATE(4868), 1, + STATE(4794), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -339581,7 +327210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137131] = 11, + [137186] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -339590,21 +327219,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - ACTIONS(7051), 1, - anon_sym_readonly, - STATE(3820), 1, + STATE(3673), 1, sym_comment, - STATE(4327), 1, + STATE(4314), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 22, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -339613,6 +327240,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -339627,7 +327255,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137188] = 10, + [137241] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -339636,19 +327264,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3821), 1, + ACTIONS(6719), 1, + anon_sym_readonly, + STATE(3674), 1, sym_comment, - STATE(4327), 1, + STATE(4314), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 23, + ACTIONS(4496), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -339657,7 +327287,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -339672,28 +327301,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137243] = 10, + [137298] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3822), 1, + ACTIONS(7070), 1, + anon_sym_readonly, + STATE(3675), 1, sym_comment, - STATE(4915), 1, + STATE(4344), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4496), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -339702,7 +327333,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -339717,28 +327347,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137298] = 10, + [137355] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3823), 1, + STATE(3676), 1, sym_comment, - STATE(4912), 1, + STATE(4337), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -339762,7 +327392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137353] = 10, + [137410] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -339771,16 +327401,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3824), 1, + STATE(3677), 1, sym_comment, - STATE(4990), 1, + STATE(4754), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -339807,28 +327437,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137408] = 10, + [137465] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3825), 1, + STATE(3678), 1, sym_comment, - STATE(4981), 1, + STATE(4215), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -339852,7 +327482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137463] = 10, + [137520] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -339861,16 +327491,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3826), 1, + STATE(3679), 1, sym_comment, - STATE(4904), 1, + STATE(4672), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -339897,30 +327527,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137518] = 11, + [137575] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(7053), 1, - anon_sym_readonly, - STATE(3827), 1, + STATE(3680), 1, sym_comment, - STATE(4310), 1, + STATE(4832), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 22, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -339929,6 +327557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -339943,35 +327572,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137575] = 10, + [137630] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(5159), 1, - anon_sym_LBRACK, - STATE(3828), 1, + STATE(3681), 1, sym_comment, - STATE(4309), 1, - sym__property_name, - ACTIONS(3991), 2, - sym_number, - sym_private_property_identifier, - STATE(4240), 2, - sym_string, - sym_computed_property_name, - ACTIONS(4492), 23, + ACTIONS(4452), 31, anon_sym_export, + anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, + 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, @@ -339988,30 +327610,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137630] = 11, + anon_sym_abstract, + [137673] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(7055), 1, - anon_sym_readonly, - STATE(3829), 1, + STATE(3682), 1, sym_comment, - STATE(4299), 1, + STATE(4718), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 22, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -340020,6 +327641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -340034,30 +327656,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137687] = 11, + [137728] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_readonly, - STATE(3830), 1, + STATE(3683), 1, sym_comment, - STATE(4406), 1, + STATE(4684), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 22, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -340066,6 +327686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -340080,7 +327701,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137744] = 10, + [137783] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -340089,16 +327710,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3831), 1, + STATE(3684), 1, sym_comment, - STATE(4804), 1, + STATE(4741), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -340125,28 +327746,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137799] = 10, + [137838] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3832), 1, + STATE(3685), 1, sym_comment, - STATE(4826), 1, + STATE(4201), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4496), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -340170,7 +327791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137854] = 10, + [137893] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -340179,19 +327800,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3833), 1, + ACTIONS(7072), 1, + anon_sym_readonly, + STATE(3686), 1, sym_comment, - STATE(4486), 1, + STATE(4172), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 23, + ACTIONS(4496), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -340200,7 +327823,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -340215,28 +327837,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137909] = 10, + [137950] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3834), 1, + STATE(3687), 1, sym_comment, - STATE(4442), 1, + STATE(4767), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 23, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -340260,30 +327882,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [137964] = 11, + [138005] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(7059), 1, - anon_sym_readonly, - STATE(3835), 1, + STATE(3688), 1, sym_comment, - STATE(4465), 1, + STATE(4761), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 22, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -340292,6 +327912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -340306,30 +327927,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138021] = 11, + [138060] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(7061), 1, - anon_sym_readonly, - STATE(3836), 1, + STATE(3689), 1, sym_comment, - STATE(4448), 1, + STATE(4777), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 22, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -340338,6 +327957,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -340352,30 +327972,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138078] = 11, + [138115] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(7063), 1, - anon_sym_readonly, - STATE(3837), 1, + STATE(3690), 1, sym_comment, - STATE(4485), 1, + STATE(4734), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 22, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -340384,6 +328002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -340398,7 +328017,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138135] = 10, + [138170] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -340407,16 +328026,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3838), 1, + STATE(3691), 1, sym_comment, - STATE(4893), 1, + STATE(4713), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -340443,28 +328062,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138190] = 10, + [138225] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3839), 1, + STATE(3692), 1, sym_comment, - STATE(4434), 1, + STATE(4827), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 23, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -340488,7 +328107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138245] = 10, + [138280] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -340497,16 +328116,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3840), 1, + STATE(3693), 1, sym_comment, - STATE(4882), 1, + STATE(4667), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -340533,30 +328152,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138300] = 11, + [138335] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5159), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - ACTIONS(7065), 1, - anon_sym_readonly, - STATE(3841), 1, + STATE(3694), 1, sym_comment, - STATE(4429), 1, + STATE(4680), 1, sym__property_name, - ACTIONS(3991), 2, + ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4240), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, - ACTIONS(4492), 22, + ACTIONS(2989), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -340565,6 +328182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -340579,28 +328197,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138357] = 4, + [138390] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(3842), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(5579), 1, + anon_sym_LBRACK, + STATE(3695), 1, sym_comment, - ACTIONS(4428), 31, + STATE(4769), 1, + sym__property_name, + ACTIONS(2823), 2, + sym_number, + sym_private_property_identifier, + STATE(4442), 2, + sym_string, + sym_computed_property_name, + ACTIONS(2989), 23, anon_sym_export, - anon_sym_STAR, anon_sym_type, anon_sym_namespace, anon_sym_let, - 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, @@ -340617,8 +328242,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - anon_sym_abstract, - [138400] = 10, + [138445] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -340627,16 +328251,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5579), 1, anon_sym_LBRACK, - STATE(3843), 1, + STATE(3696), 1, sym_comment, - STATE(4877), 1, + STATE(4682), 1, sym__property_name, ACTIONS(2823), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4442), 2, sym_string, sym_computed_property_name, ACTIONS(2989), 23, @@ -340663,28 +328287,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138455] = 10, + [138500] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(5510), 1, + ACTIONS(5047), 1, anon_sym_LBRACK, - STATE(3844), 1, + ACTIONS(7074), 1, + anon_sym_readonly, + STATE(3697), 1, sym_comment, - STATE(4884), 1, + STATE(4308), 1, sym__property_name, - ACTIONS(2823), 2, + ACTIONS(3995), 2, sym_number, sym_private_property_identifier, - STATE(4552), 2, + STATE(4102), 2, sym_string, sym_computed_property_name, - ACTIONS(2989), 23, + ACTIONS(4496), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -340693,7 +328319,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_new, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -340708,18 +328333,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138510] = 6, + [138557] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7067), 1, + ACTIONS(7076), 1, sym_identifier, - STATE(3845), 1, + STATE(3698), 1, sym_comment, - STATE(7291), 1, + STATE(7124), 1, sym_mapped_type_clause, - ACTIONS(7069), 22, + ACTIONS(7078), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -340742,17 +328367,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_object, - [138550] = 5, + [138597] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3846), 1, + STATE(3699), 1, sym_comment, - ACTIONS(4452), 2, + ACTIONS(4438), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4967), 19, + ACTIONS(4987), 19, anon_sym_export, anon_sym_as, anon_sym_LBRACE, @@ -340772,29 +328397,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_abstract, anon_sym_extends, - [138585] = 11, + [138632] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4278), 1, + ACTIONS(4282), 1, anon_sym_LPAREN, - ACTIONS(4280), 1, + ACTIONS(7080), 1, anon_sym_DOT, - ACTIONS(4282), 1, + ACTIONS(7082), 1, anon_sym_QMARK_DOT, - ACTIONS(7071), 1, + ACTIONS(7084), 1, anon_sym_LT, - STATE(3847), 1, + STATE(3700), 1, sym_comment, - STATE(3922), 1, + STATE(3753), 1, sym_arguments, - STATE(4004), 1, + STATE(3868), 1, sym_type_arguments, - ACTIONS(4250), 2, + ACTIONS(4949), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4240), 13, + ACTIONS(4951), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -340808,29 +328433,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [138632] = 11, + [138679] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4278), 1, + ACTIONS(4282), 1, anon_sym_LPAREN, - ACTIONS(7071), 1, + ACTIONS(7084), 1, anon_sym_LT, - ACTIONS(7073), 1, + ACTIONS(7086), 1, anon_sym_DOT, - ACTIONS(7075), 1, + ACTIONS(7088), 1, anon_sym_QMARK_DOT, - STATE(3848), 1, + STATE(3701), 1, sym_comment, - STATE(3912), 1, + STATE(3751), 1, sym_arguments, - STATE(4011), 1, + STATE(3887), 1, sym_type_arguments, - ACTIONS(4939), 2, + ACTIONS(4955), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4941), 13, + ACTIONS(4957), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -340844,29 +328469,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [138679] = 11, + [138726] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4278), 1, + STATE(3702), 1, + sym_comment, + ACTIONS(4430), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(4961), 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, + anon_sym_PIPE, + anon_sym_AT, + anon_sym_abstract, + anon_sym_extends, + [138761] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4282), 1, anon_sym_LPAREN, - ACTIONS(7071), 1, - anon_sym_LT, - ACTIONS(7077), 1, + ACTIONS(4284), 1, anon_sym_DOT, - ACTIONS(7079), 1, + ACTIONS(4286), 1, anon_sym_QMARK_DOT, - STATE(3849), 1, + ACTIONS(7084), 1, + anon_sym_LT, + STATE(3703), 1, sym_comment, - STATE(3908), 1, + STATE(3750), 1, sym_arguments, - STATE(4036), 1, + STATE(3890), 1, sym_type_arguments, - ACTIONS(4951), 2, + ACTIONS(4256), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4953), 13, + ACTIONS(4244), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -340880,17 +328535,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [138726] = 5, + [138808] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3850), 1, + STATE(3704), 1, sym_comment, - ACTIONS(4446), 2, + ACTIONS(4452), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4965), 19, + ACTIONS(4979), 19, anon_sym_export, anon_sym_as, anon_sym_LBRACE, @@ -340910,137 +328565,523 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_abstract, anon_sym_extends, - [138761] = 5, + [138843] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2250), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3851), 1, + STATE(3705), 1, sym_comment, - ACTIONS(4428), 2, + ACTIONS(2252), 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_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_extends, + [138877] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2260), 1, anon_sym_EQ, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3706), 1, + sym_comment, + ACTIONS(2262), 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_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4975), 19, - anon_sym_export, + anon_sym_extends, + [138911] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3707), 1, + sym_comment, + ACTIONS(5131), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5133), 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_class, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_AT, - anon_sym_abstract, + anon_sym_LT, anon_sym_extends, - [138796] = 5, + [138944] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2216), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3708), 1, + sym_comment, + ACTIONS(5328), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5330), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [138977] = 5, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3852), 1, + STATE(3709), 1, sym_comment, - ACTIONS(2218), 19, + ACTIONS(5248), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5250), 17, 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_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_extends, + [139010] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3710), 1, + sym_comment, + ACTIONS(5248), 2, + anon_sym_EQ, anon_sym_QMARK, + ACTIONS(5250), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [138830] = 5, + [139043] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2160), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3711), 1, + sym_comment, + ACTIONS(5248), 2, anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5250), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [139076] = 5, + ACTIONS(5), 1, + sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3853), 1, + STATE(3712), 1, sym_comment, - ACTIONS(2162), 19, + ACTIONS(5238), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5240), 17, 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_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT, + anon_sym_extends, + [139109] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3713), 1, + sym_comment, + ACTIONS(5238), 2, + anon_sym_EQ, anon_sym_QMARK, + ACTIONS(5240), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [138864] = 9, + [139142] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4945), 1, + STATE(3714), 1, + sym_comment, + ACTIONS(5238), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5240), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [139175] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3715), 1, + sym_comment, + ACTIONS(5227), 2, anon_sym_EQ, - ACTIONS(7071), 1, + anon_sym_QMARK, + ACTIONS(5229), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(7081), 1, + anon_sym_extends, + [139208] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3716), 1, + sym_comment, + ACTIONS(5227), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5229), 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, - ACTIONS(7083), 1, - anon_sym_is, - STATE(3854), 1, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [139241] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3717), 1, sym_comment, - STATE(4013), 1, - sym_type_arguments, - ACTIONS(4312), 14, + ACTIONS(5227), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5229), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, + anon_sym_DOT, anon_sym_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [139274] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3718), 1, + sym_comment, + ACTIONS(5223), 2, + anon_sym_EQ, anon_sym_QMARK, + ACTIONS(5225), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [138905] = 5, + [139307] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3855), 1, + STATE(3719), 1, sym_comment, - ACTIONS(5401), 2, + ACTIONS(5328), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5330), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [139340] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3720), 1, + sym_comment, + ACTIONS(5009), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5011), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [139373] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3721), 1, + sym_comment, + ACTIONS(5019), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5021), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [139406] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3722), 1, + sym_comment, + ACTIONS(5005), 2, + anon_sym_EQ, + anon_sym_QMARK, + ACTIONS(5007), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [139439] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3723), 1, + sym_comment, + ACTIONS(5328), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5403), 17, + ACTIONS(5330), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341058,17 +329099,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [138938] = 5, + [139472] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3856), 1, + STATE(3724), 1, sym_comment, - ACTIONS(5048), 2, + ACTIONS(5300), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5050), 17, + ACTIONS(5302), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341086,17 +329127,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [138971] = 5, + [139505] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3857), 1, + STATE(3725), 1, sym_comment, - ACTIONS(4995), 2, + ACTIONS(5300), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4997), 17, + ACTIONS(5302), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341114,17 +329155,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139004] = 5, + [139538] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3858), 1, + STATE(3726), 1, sym_comment, - ACTIONS(5173), 2, + ACTIONS(5300), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5175), 17, + ACTIONS(5302), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341142,17 +329183,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139037] = 5, + [139571] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3859), 1, + STATE(3727), 1, sym_comment, - ACTIONS(5247), 2, + ACTIONS(5290), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5249), 17, + ACTIONS(5292), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341170,17 +329211,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139070] = 5, + [139604] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3860), 1, + STATE(3728), 1, sym_comment, - ACTIONS(5267), 2, + ACTIONS(5001), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5269), 17, + ACTIONS(5003), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341198,17 +329239,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139103] = 5, + [139637] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3861), 1, + STATE(3729), 1, sym_comment, - ACTIONS(5029), 2, + ACTIONS(5290), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5031), 17, + ACTIONS(5292), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341226,17 +329267,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139136] = 5, + [139670] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3862), 1, + STATE(3730), 1, sym_comment, - ACTIONS(5286), 2, + ACTIONS(5005), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5288), 17, + ACTIONS(5007), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341254,17 +329295,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139169] = 5, + [139703] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3863), 1, + STATE(3731), 1, sym_comment, - ACTIONS(5177), 2, + ACTIONS(5290), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5179), 17, + ACTIONS(5292), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341282,17 +329323,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139202] = 5, + [139736] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3864), 1, + STATE(3732), 1, sym_comment, - ACTIONS(5267), 2, + ACTIONS(5131), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5269), 17, + ACTIONS(5133), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341310,17 +329351,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139235] = 5, + [139769] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3865), 1, + STATE(3733), 1, sym_comment, - ACTIONS(4995), 2, + ACTIONS(5059), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4997), 17, + ACTIONS(5061), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341338,17 +329379,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139268] = 5, + [139802] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3866), 1, + STATE(3734), 1, sym_comment, - ACTIONS(4995), 2, + ACTIONS(5063), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(4997), 17, + ACTIONS(5065), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341366,17 +329407,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139301] = 5, + [139835] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3867), 1, + STATE(3735), 1, sym_comment, - ACTIONS(5181), 2, + ACTIONS(5286), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5183), 17, + ACTIONS(5288), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341394,17 +329435,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139334] = 5, + [139868] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3868), 1, + STATE(3736), 1, sym_comment, - ACTIONS(5177), 2, + ACTIONS(5001), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5179), 17, + ACTIONS(5003), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341422,17 +329463,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139367] = 5, + [139901] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3869), 1, + STATE(3737), 1, sym_comment, - ACTIONS(5181), 2, + ACTIONS(5055), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5183), 17, + ACTIONS(5057), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341450,17 +329491,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139400] = 5, + [139934] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3870), 1, + STATE(3738), 1, sym_comment, - ACTIONS(5128), 2, + ACTIONS(5055), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5130), 17, + ACTIONS(5057), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341478,45 +329519,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139433] = 5, + [139967] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3871), 1, - sym_comment, - ACTIONS(5401), 2, + ACTIONS(4913), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5403), 17, + ACTIONS(7084), 1, + anon_sym_LT, + ACTIONS(7090), 1, + anon_sym_DOT, + ACTIONS(7092), 1, + anon_sym_is, + STATE(3739), 1, + sym_comment, + STATE(3823), 1, + sym_type_arguments, + ACTIONS(4314), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [139466] = 5, + [140008] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3872), 1, + STATE(3740), 1, sym_comment, - ACTIONS(5267), 2, + ACTIONS(5019), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5269), 17, + ACTIONS(5021), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341534,17 +329579,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139499] = 5, + [140041] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3873), 1, + STATE(3741), 1, sym_comment, - ACTIONS(5247), 2, + ACTIONS(5009), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5249), 17, + ACTIONS(5011), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341562,45 +329607,236 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [139532] = 5, + [140074] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(7094), 1, + sym_identifier, + ACTIONS(7096), 1, + anon_sym_STAR, + ACTIONS(7098), 1, + anon_sym_type, + ACTIONS(7100), 1, + anon_sym_LBRACE, + ACTIONS(7102), 1, + anon_sym_typeof, + STATE(3742), 1, + sym_comment, + STATE(5559), 1, + sym_import_require_clause, + STATE(5561), 1, + sym_string, + STATE(6384), 1, + sym__import_identifier, + STATE(6881), 1, + sym_import_clause, + STATE(7332), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(7104), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [140128] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3874), 1, - sym_comment, - ACTIONS(5128), 2, + ACTIONS(4913), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5130), 17, + ACTIONS(7084), 1, + anon_sym_LT, + ACTIONS(7090), 1, + anon_sym_DOT, + STATE(3743), 1, + sym_comment, + STATE(3823), 1, + sym_type_arguments, + ACTIONS(4314), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [139565] = 5, + [140166] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(7096), 1, + anon_sym_STAR, + ACTIONS(7100), 1, + anon_sym_LBRACE, + ACTIONS(7106), 1, + sym_identifier, + ACTIONS(7108), 1, + anon_sym_type, + ACTIONS(7110), 1, + anon_sym_typeof, + STATE(3744), 1, + sym_comment, + STATE(5418), 1, + sym_string, + STATE(5419), 1, + sym_import_require_clause, + STATE(6384), 1, + sym__import_identifier, + STATE(6761), 1, + sym_import_clause, + STATE(7332), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(7104), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [140220] = 16, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(3875), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(7096), 1, + anon_sym_STAR, + ACTIONS(7100), 1, + anon_sym_LBRACE, + ACTIONS(7112), 1, + sym_identifier, + ACTIONS(7114), 1, + anon_sym_type, + ACTIONS(7116), 1, + anon_sym_typeof, + STATE(3745), 1, sym_comment, - ACTIONS(5387), 2, + STATE(5564), 1, + sym_import_require_clause, + STATE(5566), 1, + sym_string, + STATE(6384), 1, + sym__import_identifier, + STATE(6526), 1, + sym_import_clause, + STATE(7332), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(7104), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [140274] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(7096), 1, + anon_sym_STAR, + ACTIONS(7100), 1, + anon_sym_LBRACE, + ACTIONS(7118), 1, + sym_identifier, + ACTIONS(7120), 1, + anon_sym_type, + ACTIONS(7122), 1, + anon_sym_typeof, + STATE(3746), 1, + sym_comment, + STATE(5586), 1, + sym_import_require_clause, + STATE(5589), 1, + sym_string, + STATE(6378), 1, + sym_import_clause, + STATE(6384), 1, + sym__import_identifier, + STATE(7332), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(7104), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [140328] = 16, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(7096), 1, + anon_sym_STAR, + ACTIONS(7100), 1, + anon_sym_LBRACE, + ACTIONS(7124), 1, + sym_identifier, + ACTIONS(7126), 1, + anon_sym_type, + ACTIONS(7128), 1, + anon_sym_typeof, + STATE(3747), 1, + sym_comment, + STATE(5470), 1, + sym_import_require_clause, + STATE(5471), 1, + sym_string, + STATE(6384), 1, + sym__import_identifier, + STATE(6925), 1, + sym_import_clause, + STATE(7332), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(7104), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [140382] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4494), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5389), 17, + STATE(3748), 1, + sym_comment, + ACTIONS(5135), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341611,24 +329847,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [139598] = 5, + [140413] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3876), 1, - sym_comment, - ACTIONS(5247), 2, + ACTIONS(4473), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5249), 17, + STATE(3749), 1, + sym_comment, + ACTIONS(5153), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341639,29 +329873,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [139631] = 5, + [140444] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3877), 1, + STATE(3750), 1, sym_comment, - ACTIONS(5387), 2, + ACTIONS(5217), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5389), 17, + ACTIONS(5219), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -341672,24 +329904,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [139664] = 5, + [140475] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3878), 1, + STATE(3751), 1, sym_comment, - ACTIONS(5044), 2, + ACTIONS(5209), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5046), 17, + ACTIONS(5211), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -341700,52 +329930,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [139697] = 5, + [140506] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3879), 1, - sym_comment, - ACTIONS(5033), 2, + ACTIONS(3267), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5035), 17, + STATE(3752), 1, + sym_comment, + ACTIONS(3581), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_else, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [139730] = 5, + [140537] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3880), 1, + STATE(3753), 1, sym_comment, - ACTIONS(5033), 2, + ACTIONS(5199), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5035), 17, + ACTIONS(5201), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -341756,75 +329982,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [139763] = 5, + [140568] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3881), 1, - sym_comment, - ACTIONS(5033), 2, + ACTIONS(3283), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5035), 17, + STATE(3754), 1, + sym_comment, + ACTIONS(3657), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_else, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [139796] = 5, + [140599] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3882), 1, - sym_comment, - ACTIONS(5029), 2, + ACTIONS(3293), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5031), 17, + STATE(3755), 1, + sym_comment, + ACTIONS(3517), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_else, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [139829] = 5, + [140630] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3883), 1, - sym_comment, - ACTIONS(5029), 2, + ACTIONS(4462), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5031), 17, + STATE(3756), 1, + sym_comment, + ACTIONS(5234), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341835,52 +330055,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [139862] = 5, + [140661] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3884), 1, - sym_comment, - ACTIONS(5003), 2, + ACTIONS(3291), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5005), 17, + STATE(3757), 1, + sym_comment, + ACTIONS(3507), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_else, anon_sym_RPAREN, + anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [139895] = 5, + [140692] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3885), 1, - sym_comment, - ACTIONS(5003), 2, + ACTIONS(4475), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5005), 17, + STATE(3758), 1, + sym_comment, + ACTIONS(5151), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341891,52 +330107,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [139928] = 5, + [140723] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3886), 1, - sym_comment, - ACTIONS(5003), 2, + ACTIONS(4963), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5005), 17, + ACTIONS(7084), 1, + anon_sym_LT, + STATE(3759), 1, + sym_comment, + STATE(3857), 1, + sym_type_arguments, + ACTIONS(4965), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_QMARK, anon_sym_extends, - [139961] = 5, + [140758] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3887), 1, - sym_comment, - ACTIONS(5391), 2, + ACTIONS(4469), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5393), 17, + STATE(3760), 1, + sym_comment, + ACTIONS(5161), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -341947,171 +330161,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - [139994] = 5, + [140789] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3888), 1, + ACTIONS(7130), 1, + anon_sym_DOT, + ACTIONS(7132), 1, + anon_sym_QMARK_DOT, + STATE(3761), 1, sym_comment, - ACTIONS(5391), 2, + ACTIONS(5336), 2, anon_sym_EQ, anon_sym_QMARK, - ACTIONS(5393), 17, + ACTIONS(5338), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [140027] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, + [140824] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7085), 1, - sym_identifier, - ACTIONS(7087), 1, - anon_sym_STAR, - ACTIONS(7089), 1, - anon_sym_type, - ACTIONS(7091), 1, - anon_sym_LBRACE, - ACTIONS(7093), 1, - anon_sym_typeof, - STATE(3889), 1, - sym_comment, - STATE(5601), 1, - sym_string, - STATE(5602), 1, - sym_import_require_clause, - STATE(6552), 1, - sym__import_identifier, - STATE(6944), 1, - sym_import_clause, - STATE(7515), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(7095), 5, - anon_sym_LPAREN, + ACTIONS(2174), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [140081] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7087), 1, - anon_sym_STAR, - ACTIONS(7091), 1, - anon_sym_LBRACE, - ACTIONS(7097), 1, - sym_identifier, - ACTIONS(7099), 1, - anon_sym_type, - ACTIONS(7101), 1, - anon_sym_typeof, - STATE(3890), 1, - sym_comment, - STATE(5718), 1, - sym_import_require_clause, - STATE(5719), 1, - sym_string, - STATE(6552), 1, - sym__import_identifier, - STATE(6709), 1, - sym_import_clause, - STATE(7515), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(7095), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [140135] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7087), 1, - anon_sym_STAR, - ACTIONS(7091), 1, - anon_sym_LBRACE, - ACTIONS(7103), 1, - sym_identifier, - ACTIONS(7105), 1, - anon_sym_type, - ACTIONS(7107), 1, - anon_sym_typeof, - STATE(3891), 1, - sym_comment, - STATE(5585), 1, - sym_string, - STATE(5588), 1, - sym_import_require_clause, - STATE(6552), 1, - sym__import_identifier, - STATE(7115), 1, - sym_import_clause, - STATE(7515), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(7095), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [140189] = 8, - ACTIONS(5), 1, - sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4945), 1, + ACTIONS(5171), 1, anon_sym_EQ, - ACTIONS(7071), 1, - anon_sym_LT, - ACTIONS(7081), 1, - anon_sym_DOT, - STATE(3892), 1, + STATE(3762), 1, sym_comment, - STATE(4013), 1, - sym_type_arguments, - ACTIONS(4312), 14, + ACTIONS(5173), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -342124,99 +330219,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [140227] = 16, - ACTIONS(3), 1, - aux_sym_comment_token1, + [140857] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7087), 1, - anon_sym_STAR, - ACTIONS(7091), 1, - anon_sym_LBRACE, - ACTIONS(7109), 1, - sym_identifier, - ACTIONS(7111), 1, - anon_sym_type, - ACTIONS(7113), 1, - anon_sym_typeof, - STATE(3893), 1, - sym_comment, - STATE(5600), 1, - sym_import_require_clause, - STATE(5605), 1, - sym_string, - STATE(6552), 1, - sym__import_identifier, - STATE(7064), 1, - sym_import_clause, - STATE(7515), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(7095), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [140281] = 16, - ACTIONS(3), 1, + ACTIONS(2250), 1, + anon_sym_PIPE, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7087), 1, - anon_sym_STAR, - ACTIONS(7091), 1, - anon_sym_LBRACE, - ACTIONS(7115), 1, - sym_identifier, - ACTIONS(7117), 1, - anon_sym_type, - ACTIONS(7119), 1, - anon_sym_typeof, - STATE(3894), 1, + STATE(3763), 1, sym_comment, - STATE(5711), 1, - sym_import_require_clause, - STATE(5713), 1, - sym_string, - STATE(6541), 1, - sym_import_clause, - STATE(6552), 1, - sym__import_identifier, - STATE(7515), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(7095), 5, + ACTIONS(2252), 16, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_with, + anon_sym_BANG, anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_LT, - anon_sym_BQUOTE, - [140335] = 5, + anon_sym_QMARK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [140888] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2168), 1, + anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4479), 1, + ACTIONS(5171), 1, anon_sym_EQ, - STATE(3895), 1, + STATE(3764), 1, sym_comment, - ACTIONS(5171), 16, + ACTIONS(5173), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -342225,26 +330272,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, + anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [140366] = 5, + [140921] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3419), 1, + ACTIONS(4458), 1, anon_sym_EQ, - STATE(3896), 1, + STATE(3765), 1, sym_comment, - ACTIONS(3587), 16, + ACTIONS(5242), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -342252,24 +330298,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [140397] = 6, + [140952] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2276), 1, - anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5037), 1, + ACTIONS(4471), 1, anon_sym_EQ, - STATE(3897), 1, + STATE(3766), 1, sym_comment, - ACTIONS(5039), 15, + ACTIONS(5155), 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, @@ -342278,19 +330324,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [140430] = 5, + [140983] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2160), 1, + ACTIONS(2260), 1, anon_sym_PIPE, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3898), 1, + STATE(3767), 1, sym_comment, - ACTIONS(2162), 16, + ACTIONS(2262), 16, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -342307,28 +330353,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140461] = 11, + [141014] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4242), 1, + ACTIONS(4246), 1, anon_sym_LPAREN, - ACTIONS(4244), 1, - anon_sym_DOT, ACTIONS(4248), 1, + anon_sym_DOT, + ACTIONS(4252), 1, anon_sym_QMARK_DOT, - ACTIONS(4250), 1, + ACTIONS(4256), 1, anon_sym_PIPE, - ACTIONS(7121), 1, + ACTIONS(7134), 1, anon_sym_LT, - STATE(3899), 1, + STATE(3768), 1, sym_comment, - STATE(4096), 1, + STATE(3961), 1, sym_arguments, - STATE(4259), 1, + STATE(4080), 1, sym_type_arguments, - ACTIONS(4240), 10, + ACTIONS(4244), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -342339,23 +330385,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140504] = 5, + [141057] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3421), 1, + ACTIONS(4473), 1, anon_sym_EQ, - STATE(3900), 1, + STATE(3769), 1, sym_comment, - ACTIONS(3603), 16, + ACTIONS(5153), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -342363,85 +330408,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [140535] = 11, + [141088] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4242), 1, - anon_sym_LPAREN, - ACTIONS(4939), 1, - anon_sym_PIPE, - ACTIONS(7121), 1, - anon_sym_LT, - ACTIONS(7123), 1, - anon_sym_DOT, - ACTIONS(7125), 1, - anon_sym_QMARK_DOT, - STATE(3901), 1, - sym_comment, - STATE(4085), 1, - sym_arguments, - STATE(4239), 1, - sym_type_arguments, - ACTIONS(4941), 10, - sym__automatic_semicolon, + ACTIONS(4477), 1, anon_sym_EQ, + STATE(3770), 1, + sym_comment, + ACTIONS(5149), 16, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_BQUOTE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [140578] = 5, + [141119] = 11, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2216), 1, - anon_sym_PIPE, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3902), 1, + ACTIONS(4246), 1, + anon_sym_LPAREN, + ACTIONS(4949), 1, + anon_sym_PIPE, + ACTIONS(7134), 1, + anon_sym_LT, + ACTIONS(7136), 1, + anon_sym_DOT, + ACTIONS(7138), 1, + anon_sym_QMARK_DOT, + STATE(3771), 1, sym_comment, - ACTIONS(2218), 16, + STATE(3953), 1, + sym_arguments, + STATE(4093), 1, + sym_type_arguments, + ACTIONS(4951), 10, sym__automatic_semicolon, anon_sym_EQ, 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_AMP, - anon_sym_LT, - anon_sym_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140609] = 7, + [141162] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4961), 1, + ACTIONS(3289), 1, anon_sym_EQ, - ACTIONS(7071), 1, - anon_sym_LT, - STATE(3903), 1, + STATE(3772), 1, sym_comment, - STATE(3974), 1, - sym_type_arguments, - ACTIONS(4963), 14, + ACTIONS(3641), 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, @@ -342451,23 +330495,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [140644] = 5, + [141193] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3437), 1, + ACTIONS(4460), 1, anon_sym_EQ, - STATE(3904), 1, + STATE(3773), 1, sym_comment, - ACTIONS(3625), 16, + ACTIONS(5236), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -342475,30 +330518,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [140675] = 11, + [141224] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4242), 1, + ACTIONS(4246), 1, anon_sym_LPAREN, - ACTIONS(4951), 1, + ACTIONS(4955), 1, anon_sym_PIPE, - ACTIONS(7121), 1, + ACTIONS(7134), 1, anon_sym_LT, - ACTIONS(7127), 1, + ACTIONS(7140), 1, anon_sym_DOT, - ACTIONS(7129), 1, + ACTIONS(7142), 1, anon_sym_QMARK_DOT, - STATE(3905), 1, + STATE(3774), 1, sym_comment, - STATE(4131), 1, + STATE(3959), 1, sym_arguments, - STATE(4206), 1, + STATE(4052), 1, sym_type_arguments, - ACTIONS(4953), 10, + ACTIONS(4957), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -342509,23 +330553,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [140718] = 5, + [141267] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3435), 1, + ACTIONS(4469), 1, anon_sym_EQ, - STATE(3906), 1, + STATE(3775), 1, sym_comment, - ACTIONS(3645), 16, + ACTIONS(5161), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_while, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, @@ -342533,23 +330576,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [140749] = 5, + [141298] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4479), 1, + ACTIONS(4963), 1, anon_sym_EQ, - STATE(3907), 1, + ACTIONS(7144), 1, + anon_sym_is, + STATE(3776), 1, sym_comment, - ACTIONS(5171), 16, + ACTIONS(4965), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -342558,20 +330603,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [140780] = 5, + [141330] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3908), 1, - sym_comment, - ACTIONS(5196), 2, + ACTIONS(4995), 1, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5198), 15, + ACTIONS(7092), 1, + anon_sym_is, + STATE(3777), 1, + sym_comment, + ACTIONS(4997), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -342581,27 +330626,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, - anon_sym_DOT, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - [140811] = 5, + [141362] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4471), 1, + ACTIONS(4973), 1, anon_sym_EQ, - STATE(3909), 1, + ACTIONS(7092), 1, + anon_sym_is, + STATE(3778), 1, sym_comment, - ACTIONS(5185), 16, + ACTIONS(4975), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -342610,24 +330655,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [140842] = 5, + [141394] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4475), 1, + ACTIONS(4983), 1, anon_sym_EQ, - STATE(3910), 1, + STATE(3779), 1, sym_comment, - ACTIONS(5274), 16, + ACTIONS(4985), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -342636,24 +330679,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [140873] = 5, + anon_sym_is, + [141424] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2061), 1, + anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4490), 1, - anon_sym_EQ, - STATE(3911), 1, + STATE(3780), 1, sym_comment, - ACTIONS(5276), 16, + ACTIONS(2063), 15, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -342662,50 +330704,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [140904] = 5, + anon_sym_is, + [141454] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3912), 1, + ACTIONS(5005), 1, + anon_sym_PIPE, + STATE(3781), 1, sym_comment, - ACTIONS(5235), 2, + ACTIONS(5007), 14, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5237), 15, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [140935] = 5, + anon_sym_PIPE_RBRACE, + [141483] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4473), 1, + ACTIONS(5163), 1, anon_sym_EQ, - STATE(3913), 1, + STATE(3782), 1, sym_comment, - ACTIONS(5278), 16, + ACTIONS(5165), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -342714,78 +330753,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [140966] = 5, + [141512] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4459), 1, + ACTIONS(5033), 1, anon_sym_EQ, - STATE(3914), 1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + STATE(3783), 1, sym_comment, - ACTIONS(5367), 16, + ACTIONS(5035), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BQUOTE, anon_sym_QMARK, - anon_sym_extends, - [140997] = 7, + [141547] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7131), 1, + ACTIONS(5019), 1, + anon_sym_PIPE, + STATE(3784), 1, + sym_comment, + ACTIONS(5021), 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, - ACTIONS(7133), 1, anon_sym_QMARK_DOT, - STATE(3915), 1, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [141576] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5286), 1, + anon_sym_PIPE, + STATE(3785), 1, sym_comment, - ACTIONS(5381), 2, + ACTIONS(5288), 14, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5383), 13, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [141032] = 5, + anon_sym_PIPE_RBRACE, + [141605] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4471), 1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7158), 1, + sym_number, + ACTIONS(7160), 1, + anon_sym_unique, + STATE(3786), 1, + sym_comment, + STATE(7172), 2, + sym_string, + sym_predefined_type, + ACTIONS(7156), 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, + [141642] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5316), 1, anon_sym_EQ, - STATE(3916), 1, + STATE(3787), 1, sym_comment, - ACTIONS(5185), 16, + ACTIONS(5318), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -342794,47 +330880,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_BQUOTE, anon_sym_QMARK, anon_sym_extends, - [141063] = 5, + [141671] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4477), 1, + STATE(3788), 1, + sym_comment, + ACTIONS(7162), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [141698] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5167), 1, anon_sym_EQ, - STATE(3917), 1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + STATE(3789), 1, sym_comment, - ACTIONS(5200), 16, + ACTIONS(5169), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BQUOTE, anon_sym_QMARK, - anon_sym_extends, - [141094] = 6, + [141733] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2206), 1, - anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5037), 1, + STATE(3790), 1, + sym_comment, + ACTIONS(7164), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [141760] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5167), 1, anon_sym_EQ, - STATE(3918), 1, + STATE(3791), 1, sym_comment, - ACTIONS(5039), 15, + ACTIONS(5169), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -342847,52 +330977,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT, anon_sym_QMARK, anon_sym_extends, - [141127] = 5, + [141789] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4461), 1, + ACTIONS(5312), 1, anon_sym_EQ, - STATE(3919), 1, + ACTIONS(7146), 1, + anon_sym_AMP, + STATE(3792), 1, sym_comment, - ACTIONS(5365), 16, + ACTIONS(5314), 13, anon_sym_as, anon_sym_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, - [141158] = 5, + [141820] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3433), 1, + ACTIONS(5308), 1, anon_sym_EQ, - STATE(3920), 1, + STATE(3793), 1, sym_comment, - ACTIONS(3547), 16, + ACTIONS(5310), 14, 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, @@ -342902,146 +331028,165 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [141189] = 5, + [141849] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4454), 1, - anon_sym_EQ, - STATE(3921), 1, + ACTIONS(5005), 1, + anon_sym_PIPE, + STATE(3794), 1, sym_comment, - ACTIONS(5353), 16, - anon_sym_as, + ACTIONS(5007), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_BQUOTE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [141220] = 5, + anon_sym_PIPE_RBRACE, + [141878] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3922), 1, + ACTIONS(5001), 1, + anon_sym_PIPE, + STATE(3795), 1, sym_comment, - ACTIONS(5259), 2, + ACTIONS(5003), 14, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_QMARK, - ACTIONS(5261), 15, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - [141251] = 6, + anon_sym_PIPE_RBRACE, + [141907] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4991), 1, - anon_sym_EQ, - ACTIONS(7083), 1, - anon_sym_is, - STATE(3923), 1, + ACTIONS(5009), 1, + anon_sym_PIPE, + STATE(3796), 1, sym_comment, - ACTIONS(4993), 14, - anon_sym_as, + ACTIONS(5011), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [141283] = 5, + anon_sym_PIPE_RBRACE, + [141936] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4979), 1, - anon_sym_EQ, - STATE(3924), 1, + ACTIONS(5019), 1, + anon_sym_PIPE, + STATE(3797), 1, sym_comment, - ACTIONS(4981), 15, - anon_sym_as, + ACTIONS(5021), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - anon_sym_is, - [141313] = 5, + anon_sym_PIPE_RBRACE, + [141965] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2061), 1, - anon_sym_EQ, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3925), 1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7166), 1, + sym_number, + STATE(3798), 1, sym_comment, - ACTIONS(2063), 15, - anon_sym_as, + STATE(7307), 1, + sym_string, + STATE(7308), 1, + sym_predefined_type, + ACTIONS(7156), 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, + [142004] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5001), 1, + anon_sym_PIPE, + STATE(3799), 1, + sym_comment, + ACTIONS(5003), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - anon_sym_is, - [141343] = 6, + anon_sym_PIPE_RBRACE, + [142033] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4971), 1, + ACTIONS(5304), 1, anon_sym_EQ, - ACTIONS(7083), 1, - anon_sym_is, - STATE(3926), 1, + STATE(3800), 1, sym_comment, - ACTIONS(4973), 14, + ACTIONS(5306), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -343056,18 +331201,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [141375] = 6, + [142062] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3801), 1, + sym_comment, + ACTIONS(7168), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [142089] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4961), 1, + ACTIONS(5181), 1, anon_sym_EQ, - ACTIONS(7135), 1, - anon_sym_is, - STATE(3927), 1, + STATE(3802), 1, sym_comment, - ACTIONS(4963), 14, + ACTIONS(5183), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -343082,43 +331248,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [141407] = 8, + [142118] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5145), 1, - anon_sym_EQ, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, + ACTIONS(5300), 1, anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - STATE(3928), 1, + STATE(3803), 1, sym_comment, - ACTIONS(5147), 11, - anon_sym_as, + ACTIONS(5302), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [141442] = 5, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142147] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5181), 1, + ACTIONS(5248), 1, anon_sym_PIPE, - STATE(3929), 1, + STATE(3804), 1, sym_comment, - ACTIONS(5183), 14, + ACTIONS(5250), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343133,54 +331296,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [141471] = 9, + [142176] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7143), 1, - anon_sym_DQUOTE, - ACTIONS(7145), 1, - anon_sym_SQUOTE, - ACTIONS(7149), 1, - sym_number, - ACTIONS(7151), 1, - anon_sym_unique, - STATE(3930), 1, + ACTIONS(5248), 1, + anon_sym_PIPE, + STATE(3805), 1, sym_comment, - STATE(7333), 2, - sym_string, - sym_predefined_type, - ACTIONS(7147), 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, - [141508] = 10, + ACTIONS(5250), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142205] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7143), 1, + ACTIONS(7152), 1, anon_sym_DQUOTE, - ACTIONS(7145), 1, + ACTIONS(7154), 1, anon_sym_SQUOTE, - ACTIONS(7151), 1, + ACTIONS(7160), 1, anon_sym_unique, - ACTIONS(7153), 1, + ACTIONS(7170), 1, sym_number, - STATE(3931), 1, + STATE(3806), 1, sym_comment, - STATE(7336), 1, + STATE(7191), 1, sym_string, - STATE(7337), 1, + STATE(7192), 1, sym_predefined_type, - ACTIONS(7147), 9, + ACTIONS(7156), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -343190,16 +331349,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [141547] = 5, + [142244] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5044), 1, + ACTIONS(5248), 1, anon_sym_PIPE, - STATE(3932), 1, + STATE(3807), 1, sym_comment, - ACTIONS(5046), 14, + ACTIONS(5250), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343214,40 +331373,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [141576] = 5, + [142273] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5033), 1, - anon_sym_PIPE, - STATE(3933), 1, - sym_comment, - ACTIONS(5035), 14, - sym__automatic_semicolon, + ACTIONS(5185), 1, anon_sym_EQ, + STATE(3808), 1, + sym_comment, + ACTIONS(5187), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [141605] = 5, + [142302] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5033), 1, + ACTIONS(5238), 1, anon_sym_PIPE, - STATE(3934), 1, + STATE(3809), 1, sym_comment, - ACTIONS(5035), 14, + ACTIONS(5240), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343262,50 +331421,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [141634] = 5, + [142331] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5033), 1, - anon_sym_PIPE, - STATE(3935), 1, - sym_comment, - ACTIONS(5035), 14, - sym__automatic_semicolon, + ACTIONS(5189), 1, anon_sym_EQ, + STATE(3810), 1, + sym_comment, + ACTIONS(5191), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [141663] = 10, + [142360] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7143), 1, + ACTIONS(7152), 1, anon_sym_DQUOTE, - ACTIONS(7145), 1, + ACTIONS(7154), 1, anon_sym_SQUOTE, - ACTIONS(7151), 1, + ACTIONS(7160), 1, anon_sym_unique, - ACTIONS(7155), 1, + ACTIONS(7172), 1, sym_number, - STATE(3936), 1, + STATE(3811), 1, sym_comment, - STATE(7341), 1, + STATE(7281), 2, sym_string, - STATE(7342), 1, sym_predefined_type, - ACTIONS(7147), 9, + ACTIONS(7156), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -343315,40 +331473,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [141702] = 5, + [142397] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5029), 1, - anon_sym_PIPE, - STATE(3937), 1, + STATE(3812), 1, sym_comment, - ACTIONS(5031), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [141731] = 5, + ACTIONS(7174), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [142424] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5029), 1, + ACTIONS(5238), 1, anon_sym_PIPE, - STATE(3938), 1, + STATE(3813), 1, sym_comment, - ACTIONS(5031), 14, + ACTIONS(5240), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343363,16 +331520,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [141760] = 5, + [142453] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5029), 1, + ACTIONS(5238), 1, anon_sym_PIPE, - STATE(3939), 1, + STATE(3814), 1, sym_comment, - ACTIONS(5031), 14, + ACTIONS(5240), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343387,16 +331544,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [141789] = 5, + [142482] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5003), 1, + ACTIONS(5227), 1, anon_sym_PIPE, - STATE(3940), 1, + STATE(3815), 1, sym_comment, - ACTIONS(5005), 14, + ACTIONS(5229), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343411,14 +331568,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [141818] = 4, + [142511] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3941), 1, + STATE(3816), 1, sym_comment, - ACTIONS(7157), 15, + ACTIONS(7176), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -343434,68 +331591,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [141845] = 4, + [142538] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3942), 1, + ACTIONS(5350), 1, + anon_sym_EQ, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + STATE(3817), 1, sym_comment, - ACTIONS(7159), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [141872] = 10, + ACTIONS(5352), 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, + [142573] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7143), 1, - anon_sym_DQUOTE, - ACTIONS(7145), 1, - anon_sym_SQUOTE, - ACTIONS(7151), 1, - anon_sym_unique, - ACTIONS(7161), 1, - sym_number, - STATE(3943), 1, + ACTIONS(5227), 1, + anon_sym_PIPE, + STATE(3818), 1, sym_comment, - STATE(7289), 1, - sym_predefined_type, - STATE(7352), 1, - sym_string, - ACTIONS(7147), 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, - [141911] = 5, + ACTIONS(5229), 14, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_LT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [142602] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5003), 1, + ACTIONS(5227), 1, anon_sym_PIPE, - STATE(3944), 1, + STATE(3819), 1, sym_comment, - ACTIONS(5005), 14, + ACTIONS(5229), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343510,16 +331666,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [141940] = 5, + [142631] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5003), 1, + ACTIONS(5223), 1, anon_sym_PIPE, - STATE(3945), 1, + STATE(3820), 1, sym_comment, - ACTIONS(5005), 14, + ACTIONS(5225), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -343534,26 +331690,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [141969] = 10, + [142660] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5141), 1, + anon_sym_EQ, + STATE(3821), 1, + sym_comment, + ACTIONS(5143), 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, + [142689] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7143), 1, + ACTIONS(7152), 1, anon_sym_DQUOTE, - ACTIONS(7145), 1, + ACTIONS(7154), 1, anon_sym_SQUOTE, - ACTIONS(7151), 1, + ACTIONS(7160), 1, anon_sym_unique, - ACTIONS(7163), 1, + ACTIONS(7178), 1, sym_number, - STATE(3946), 1, + STATE(3822), 1, sym_comment, - STATE(7589), 1, + STATE(7195), 1, sym_string, - STATE(7590), 1, + STATE(7196), 1, sym_predefined_type, - ACTIONS(7147), 9, + ACTIONS(7156), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -343563,16 +331743,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [142008] = 5, + [142728] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5373), 1, + ACTIONS(5296), 1, anon_sym_EQ, - STATE(3947), 1, + STATE(3823), 1, sym_comment, - ACTIONS(5375), 14, + ACTIONS(5298), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -343587,16 +331767,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [142037] = 5, + [142757] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5205), 1, + ACTIONS(4995), 1, anon_sym_EQ, - STATE(3948), 1, + STATE(3824), 1, sym_comment, - ACTIONS(5207), 14, + ACTIONS(4997), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -343611,76 +331791,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [142066] = 8, + [142786] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5369), 1, - anon_sym_EQ, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - STATE(3949), 1, + STATE(3825), 1, sym_comment, - ACTIONS(5371), 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, - [142101] = 5, + ACTIONS(7180), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [142813] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5345), 1, - anon_sym_EQ, - STATE(3950), 1, + STATE(3826), 1, sym_comment, - ACTIONS(5347), 14, - anon_sym_as, + ACTIONS(7182), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [142840] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7184), 1, + sym_number, + STATE(3827), 1, + sym_comment, + STATE(7289), 1, + sym_string, + STATE(7290), 1, + sym_predefined_type, + ACTIONS(7156), 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, + [142879] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(7134), 1, + anon_sym_LT, + ACTIONS(7186), 1, + anon_sym_DOT, + ACTIONS(7188), 1, + anon_sym_is, + STATE(3828), 1, + sym_comment, + STATE(4055), 1, + sym_type_arguments, + ACTIONS(4314), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [142130] = 9, + anon_sym_PIPE_RBRACE, + [142916] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7143), 1, + ACTIONS(7152), 1, anon_sym_DQUOTE, - ACTIONS(7145), 1, + ACTIONS(7154), 1, anon_sym_SQUOTE, - ACTIONS(7151), 1, + ACTIONS(7160), 1, anon_sym_unique, - ACTIONS(7165), 1, + ACTIONS(7190), 1, sym_number, - STATE(3951), 1, + STATE(3829), 1, sym_comment, - STATE(7579), 2, + STATE(7301), 1, sym_string, + STATE(7303), 1, sym_predefined_type, - ACTIONS(7147), 9, + ACTIONS(7156), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -343690,46 +331923,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [142167] = 5, + [142955] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5329), 1, - anon_sym_EQ, - STATE(3952), 1, + ACTIONS(7192), 1, + anon_sym_LPAREN, + ACTIONS(7194), 1, + anon_sym_DOT, + ACTIONS(7196), 1, + anon_sym_QMARK_DOT, + ACTIONS(7198), 1, + anon_sym_LT, + STATE(3830), 1, sym_comment, - ACTIONS(5331), 14, - anon_sym_as, + STATE(4076), 1, + sym_arguments, + STATE(4294), 1, + sym_type_arguments, + ACTIONS(4244), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [142196] = 8, + [142994] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5329), 1, + ACTIONS(5163), 1, anon_sym_EQ, - ACTIONS(7137), 1, + ACTIONS(7146), 1, anon_sym_AMP, - ACTIONS(7139), 1, + ACTIONS(7148), 1, anon_sym_PIPE, - ACTIONS(7141), 1, + ACTIONS(7150), 1, anon_sym_extends, - STATE(3953), 1, + STATE(3831), 1, sym_comment, - ACTIONS(5331), 11, + ACTIONS(5165), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -343741,46 +331979,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, - [142231] = 5, + [143029] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5267), 1, - anon_sym_PIPE, - STATE(3954), 1, + ACTIONS(7192), 1, + anon_sym_LPAREN, + ACTIONS(7198), 1, + anon_sym_LT, + ACTIONS(7200), 1, + anon_sym_DOT, + ACTIONS(7202), 1, + anon_sym_QMARK_DOT, + STATE(3832), 1, sym_comment, - ACTIONS(5269), 14, + STATE(4077), 1, + sym_arguments, + STATE(4296), 1, + sym_type_arguments, + ACTIONS(4957), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [142260] = 8, + [143068] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5349), 1, + ACTIONS(5373), 1, anon_sym_EQ, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - STATE(3955), 1, + STATE(3833), 1, sym_comment, - ACTIONS(5351), 11, + ACTIONS(5375), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -343791,96 +332028,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - [142295] = 8, + anon_sym_extends, + [143097] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5333), 1, - anon_sym_EQ, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - STATE(3956), 1, + ACTIONS(7192), 1, + anon_sym_LPAREN, + ACTIONS(7198), 1, + anon_sym_LT, + ACTIONS(7204), 1, + anon_sym_DOT, + ACTIONS(7206), 1, + anon_sym_QMARK_DOT, + STATE(3834), 1, sym_comment, - ACTIONS(5335), 11, - anon_sym_as, + STATE(4053), 1, + sym_arguments, + STATE(4298), 1, + sym_type_arguments, + ACTIONS(4951), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - [142330] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7143), 1, - anon_sym_DQUOTE, - ACTIONS(7145), 1, - anon_sym_SQUOTE, - ACTIONS(7151), 1, - anon_sym_unique, - ACTIONS(7167), 1, - sym_number, - STATE(3957), 1, - sym_comment, - STATE(7594), 1, - sym_string, - STATE(7598), 1, - sym_predefined_type, - ACTIONS(7147), 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, - [142369] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3958), 1, - sym_comment, - ACTIONS(7169), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [142396] = 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [143136] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5395), 1, + ACTIONS(5123), 1, anon_sym_EQ, - STATE(3959), 1, + ACTIONS(7146), 1, + anon_sym_AMP, + STATE(3835), 1, sym_comment, - ACTIONS(5397), 14, + ACTIONS(5125), 13, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -343891,26 +332083,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [142425] = 8, + [143167] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5019), 1, + ACTIONS(5127), 1, anon_sym_EQ, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - STATE(3960), 1, + STATE(3836), 1, sym_comment, - ACTIONS(5021), 11, + ACTIONS(5129), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -343921,114 +332106,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - [142460] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7143), 1, - anon_sym_DQUOTE, - ACTIONS(7145), 1, - anon_sym_SQUOTE, - ACTIONS(7151), 1, - anon_sym_unique, - ACTIONS(7171), 1, - sym_number, - STATE(3961), 1, - sym_comment, - STATE(7194), 1, - sym_string, - STATE(7196), 1, - sym_predefined_type, - ACTIONS(7147), 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, - [142499] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7143), 1, - anon_sym_DQUOTE, - ACTIONS(7145), 1, - anon_sym_SQUOTE, - ACTIONS(7151), 1, - anon_sym_unique, - ACTIONS(7173), 1, - sym_number, - STATE(3962), 1, - sym_comment, - STATE(7177), 1, - sym_string, - STATE(7181), 1, - sym_predefined_type, - ACTIONS(7147), 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, - [142538] = 10, + anon_sym_extends, + [143196] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7143), 1, - anon_sym_DQUOTE, - ACTIONS(7145), 1, - anon_sym_SQUOTE, - ACTIONS(7151), 1, - anon_sym_unique, - ACTIONS(7175), 1, - sym_number, - STATE(3963), 1, + STATE(3837), 1, sym_comment, - STATE(7171), 1, - sym_string, - STATE(7174), 1, - sym_predefined_type, - ACTIONS(7147), 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, - [142577] = 10, + ACTIONS(7208), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [143223] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7143), 1, + ACTIONS(7152), 1, anon_sym_DQUOTE, - ACTIONS(7145), 1, + ACTIONS(7154), 1, anon_sym_SQUOTE, - ACTIONS(7151), 1, + ACTIONS(7160), 1, anon_sym_unique, - ACTIONS(7177), 1, + ACTIONS(7210), 1, sym_number, - STATE(3964), 1, + STATE(3838), 1, sym_comment, - STATE(7586), 1, - sym_string, - STATE(7587), 1, + STATE(7316), 1, sym_predefined_type, - ACTIONS(7147), 9, + STATE(7317), 1, + sym_string, + ACTIONS(7156), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -344038,44 +332162,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [142616] = 9, + [143262] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4945), 1, - anon_sym_PIPE, - ACTIONS(7121), 1, - anon_sym_LT, - ACTIONS(7179), 1, - anon_sym_DOT, - ACTIONS(7181), 1, - anon_sym_is, - STATE(3965), 1, - sym_comment, - STATE(4210), 1, - sym_type_arguments, - ACTIONS(4312), 10, - sym__automatic_semicolon, + ACTIONS(5119), 1, anon_sym_EQ, + STATE(3839), 1, + sym_comment, + ACTIONS(5121), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [142653] = 5, + [143291] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5167), 1, + ACTIONS(5324), 1, anon_sym_EQ, - STATE(3966), 1, + STATE(3840), 1, sym_comment, - ACTIONS(5169), 14, + ACTIONS(5326), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -344090,25 +332210,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [142682] = 9, + [143320] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7143), 1, + ACTIONS(7152), 1, anon_sym_DQUOTE, - ACTIONS(7145), 1, + ACTIONS(7154), 1, anon_sym_SQUOTE, - ACTIONS(7151), 1, + ACTIONS(7160), 1, anon_sym_unique, - ACTIONS(7183), 1, + ACTIONS(7212), 1, sym_number, - STATE(3967), 1, + STATE(3841), 1, sym_comment, - STATE(7167), 2, + STATE(7018), 1, sym_string, + STATE(7020), 1, sym_predefined_type, - ACTIONS(7147), 9, + ACTIONS(7156), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -344118,50 +332239,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [142719] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5387), 1, - anon_sym_PIPE, - STATE(3968), 1, - sym_comment, - ACTIONS(5389), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [142748] = 10, + [143359] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7143), 1, + ACTIONS(7152), 1, anon_sym_DQUOTE, - ACTIONS(7145), 1, + ACTIONS(7154), 1, anon_sym_SQUOTE, - ACTIONS(7151), 1, + ACTIONS(7160), 1, anon_sym_unique, - ACTIONS(7185), 1, + ACTIONS(7214), 1, sym_number, - STATE(3969), 1, + STATE(3842), 1, sym_comment, - STATE(7465), 1, + STATE(7015), 1, sym_string, - STATE(7466), 1, + STATE(7016), 1, sym_predefined_type, - ACTIONS(7147), 9, + ACTIONS(7156), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -344171,50 +332268,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [142787] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4971), 1, - anon_sym_EQ, - STATE(3970), 1, - sym_comment, - ACTIONS(4973), 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, - [142816] = 10, + [143398] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7143), 1, + ACTIONS(7152), 1, anon_sym_DQUOTE, - ACTIONS(7145), 1, + ACTIONS(7154), 1, anon_sym_SQUOTE, - ACTIONS(7151), 1, + ACTIONS(7160), 1, anon_sym_unique, - ACTIONS(7187), 1, + ACTIONS(7216), 1, sym_number, - STATE(3971), 1, + STATE(3843), 1, sym_comment, - STATE(7462), 1, + STATE(6994), 1, sym_string, - STATE(7463), 1, + STATE(6999), 1, sym_predefined_type, - ACTIONS(7147), 9, + ACTIONS(7156), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -344224,39 +332297,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [142855] = 4, + [143437] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3972), 1, + ACTIONS(5332), 1, + anon_sym_EQ, + STATE(3844), 1, sym_comment, - ACTIONS(7189), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [142882] = 5, + ACTIONS(5334), 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, + [143466] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5391), 1, + ACTIONS(5300), 1, anon_sym_PIPE, - STATE(3973), 1, + STATE(3845), 1, sym_comment, - ACTIONS(5393), 14, + ACTIONS(5302), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -344271,72 +332345,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [142911] = 5, + [143495] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5282), 1, - anon_sym_EQ, - STATE(3974), 1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7218), 1, + sym_number, + STATE(3846), 1, sym_comment, - ACTIONS(5284), 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, - [142940] = 5, + STATE(6991), 2, + sym_string, + sym_predefined_type, + ACTIONS(7156), 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, + [143532] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5052), 1, - anon_sym_EQ, - STATE(3975), 1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7220), 1, + sym_number, + STATE(3847), 1, sym_comment, - ACTIONS(5054), 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, - [142969] = 6, + STATE(7336), 1, + sym_predefined_type, + STATE(7338), 1, + sym_string, + ACTIONS(7156), 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, + [143571] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5052), 1, + ACTIONS(5366), 1, anon_sym_EQ, - ACTIONS(7191), 1, - anon_sym_LBRACK, - STATE(3976), 1, + STATE(3848), 1, sym_comment, - ACTIONS(5054), 13, + ACTIONS(5368), 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, @@ -344344,40 +332426,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [143000] = 5, + [143600] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5387), 1, - anon_sym_PIPE, - STATE(3977), 1, - sym_comment, - ACTIONS(5389), 14, - sym__automatic_semicolon, + ACTIONS(5023), 1, 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, + ACTIONS(7146), 1, anon_sym_AMP, - anon_sym_LT, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [143029] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4961), 1, - anon_sym_EQ, - STATE(3978), 1, + STATE(3849), 1, sym_comment, - ACTIONS(4963), 14, + ACTIONS(5025), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -344388,20 +332452,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [143058] = 5, + [143635] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5361), 1, + ACTIONS(4973), 1, anon_sym_EQ, - STATE(3979), 1, + STATE(3850), 1, sym_comment, - ACTIONS(5363), 14, + ACTIONS(4975), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -344416,26 +332477,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [143087] = 10, + [143664] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7143), 1, + ACTIONS(7152), 1, anon_sym_DQUOTE, - ACTIONS(7145), 1, + ACTIONS(7154), 1, anon_sym_SQUOTE, - ACTIONS(7151), 1, + ACTIONS(7160), 1, anon_sym_unique, - ACTIONS(7193), 1, + ACTIONS(7222), 1, sym_number, - STATE(3980), 1, + STATE(3851), 1, sym_comment, - STATE(7453), 1, + STATE(7176), 1, sym_string, - STATE(7456), 1, + STATE(7186), 1, sym_predefined_type, - ACTIONS(7147), 9, + ACTIONS(7156), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -344445,86 +332506,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [143126] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5391), 1, - anon_sym_PIPE, - STATE(3981), 1, - sym_comment, - ACTIONS(5393), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [143155] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5247), 1, - anon_sym_PIPE, - STATE(3982), 1, - sym_comment, - ACTIONS(5249), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [143184] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5247), 1, - anon_sym_PIPE, - STATE(3983), 1, - sym_comment, - ACTIONS(5249), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [143213] = 4, + [143703] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3984), 1, + STATE(3852), 1, sym_comment, - ACTIONS(7195), 15, + ACTIONS(7224), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -344540,24 +332529,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [143240] = 6, + [143730] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5293), 1, + ACTIONS(5320), 1, anon_sym_EQ, - ACTIONS(7191), 1, - anon_sym_LBRACK, - STATE(3985), 1, + STATE(3853), 1, sym_comment, - ACTIONS(5295), 13, + ACTIONS(5322), 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, @@ -344565,63 +332553,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [143271] = 4, + [143759] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(3986), 1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7226), 1, + sym_number, + STATE(3854), 1, sym_comment, - ACTIONS(7197), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [143298] = 5, + STATE(7343), 1, + sym_predefined_type, + STATE(7344), 1, + sym_string, + ACTIONS(7156), 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, + [143798] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5247), 1, - anon_sym_PIPE, - STATE(3987), 1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7228), 1, + sym_number, + STATE(3855), 1, sym_comment, - ACTIONS(5249), 14, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [143327] = 5, + STATE(7346), 2, + sym_string, + sym_predefined_type, + ACTIONS(7156), 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, + [143835] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4995), 1, + ACTIONS(5290), 1, anon_sym_PIPE, - STATE(3988), 1, + STATE(3856), 1, sym_comment, - ACTIONS(4997), 14, + ACTIONS(5292), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -344636,18 +332634,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143356] = 6, + [143864] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5297), 1, + ACTIONS(5244), 1, anon_sym_EQ, - ACTIONS(7199), 1, - anon_sym_extends, - STATE(3989), 1, + STATE(3857), 1, sym_comment, - ACTIONS(5299), 13, + ACTIONS(5246), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -344661,16 +332657,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_QMARK, - [143387] = 5, + anon_sym_extends, + [143893] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4995), 1, + ACTIONS(5290), 1, anon_sym_PIPE, - STATE(3990), 1, + STATE(3858), 1, sym_comment, - ACTIONS(4997), 14, + ACTIONS(5292), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -344685,201 +332682,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143416] = 5, + [143922] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4995), 1, - anon_sym_PIPE, - STATE(3991), 1, - sym_comment, - ACTIONS(4997), 14, - sym__automatic_semicolon, + ACTIONS(5013), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(7230), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [143445] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3992), 1, - sym_comment, - ACTIONS(7201), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [143472] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(3993), 1, - sym_comment, - ACTIONS(7203), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [143499] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(7207), 1, - anon_sym_DOT, - ACTIONS(7209), 1, - anon_sym_QMARK_DOT, - ACTIONS(7211), 1, - anon_sym_LT, - STATE(3994), 1, + STATE(3859), 1, sym_comment, - STATE(4238), 1, - sym_arguments, - STATE(4481), 1, - sym_type_arguments, - ACTIONS(4953), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5015), 13, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + 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, - [143538] = 10, + [143953] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(7211), 1, - anon_sym_LT, - ACTIONS(7213), 1, - anon_sym_DOT, - ACTIONS(7215), 1, - anon_sym_QMARK_DOT, - STATE(3995), 1, - sym_comment, - STATE(4236), 1, - sym_arguments, - STATE(4479), 1, - sym_type_arguments, - ACTIONS(4941), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5264), 1, + anon_sym_EQ, + ACTIONS(7232), 1, anon_sym_extends, - [143577] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(7211), 1, - anon_sym_LT, - ACTIONS(7217), 1, - anon_sym_DOT, - ACTIONS(7219), 1, - anon_sym_QMARK_DOT, - STATE(3996), 1, + STATE(3860), 1, sym_comment, - STATE(4235), 1, - sym_arguments, - STATE(4477), 1, - sym_type_arguments, - ACTIONS(4240), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5266), 13, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, + 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, - [143616] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7143), 1, - anon_sym_DQUOTE, - ACTIONS(7145), 1, - anon_sym_SQUOTE, - ACTIONS(7151), 1, - anon_sym_unique, - ACTIONS(7221), 1, - sym_number, - STATE(3997), 1, - sym_comment, - STATE(7447), 2, - sym_string, - sym_predefined_type, - ACTIONS(7147), 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, - [143653] = 5, + anon_sym_QMARK, + [143984] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5267), 1, + ACTIONS(5063), 1, anon_sym_PIPE, - STATE(3998), 1, + STATE(3861), 1, sym_comment, - ACTIONS(5269), 14, + ACTIONS(5065), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -344894,16 +332756,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [143682] = 5, + [144013] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5239), 1, + ACTIONS(5157), 1, anon_sym_EQ, - STATE(3999), 1, + STATE(3862), 1, sym_comment, - ACTIONS(5241), 14, + ACTIONS(5159), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -344918,96 +332780,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [143711] = 5, + [144042] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5231), 1, + ACTIONS(5274), 1, anon_sym_EQ, - STATE(4000), 1, - sym_comment, - ACTIONS(5233), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(7230), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + STATE(3863), 1, + sym_comment, + ACTIONS(5280), 3, anon_sym_AMP, anon_sym_PIPE, - anon_sym_QMARK, anon_sym_extends, - [143740] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5219), 1, - anon_sym_EQ, - STATE(4001), 1, - sym_comment, - ACTIONS(5221), 14, + ACTIONS(5276), 10, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [143769] = 7, + [144075] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5303), 1, + ACTIONS(5282), 1, anon_sym_EQ, - ACTIONS(7191), 1, - anon_sym_LBRACK, - STATE(4002), 1, - sym_comment, - ACTIONS(5054), 3, + ACTIONS(7146), 1, anon_sym_AMP, + ACTIONS(7148), 1, anon_sym_PIPE, + ACTIONS(7150), 1, anon_sym_extends, - ACTIONS(5305), 10, + STATE(3864), 1, + sym_comment, + ACTIONS(5284), 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, - [143802] = 8, + [144110] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5307), 1, + ACTIONS(5278), 1, anon_sym_EQ, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - STATE(4003), 1, + STATE(3865), 1, sym_comment, - ACTIONS(5309), 11, + ACTIONS(5280), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -345018,24 +332853,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_QMARK, - [143837] = 5, + anon_sym_extends, + [144139] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5263), 1, + ACTIONS(5278), 1, anon_sym_EQ, - STATE(4004), 1, + ACTIONS(7230), 1, + anon_sym_LBRACK, + STATE(3866), 1, sym_comment, - ACTIONS(5265), 14, + ACTIONS(5280), 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, @@ -345043,173 +332882,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [143866] = 5, + [144170] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5401), 1, - anon_sym_PIPE, - STATE(4005), 1, - sym_comment, - ACTIONS(5403), 14, - sym__automatic_semicolon, + ACTIONS(4963), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_LT, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [143895] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5128), 1, - anon_sym_PIPE, - STATE(4006), 1, + STATE(3867), 1, sym_comment, - ACTIONS(5130), 14, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(4965), 14, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_LT, + anon_sym_PIPE, + anon_sym_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [143924] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4007), 1, - sym_comment, - ACTIONS(7223), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [143951] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7143), 1, - anon_sym_DQUOTE, - ACTIONS(7145), 1, - anon_sym_SQUOTE, - ACTIONS(7151), 1, - anon_sym_unique, - ACTIONS(7225), 1, - sym_number, - STATE(4008), 1, - sym_comment, - STATE(7323), 2, - sym_string, - sym_predefined_type, - ACTIONS(7147), 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, - [143988] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7143), 1, - anon_sym_DQUOTE, - ACTIONS(7145), 1, - anon_sym_SQUOTE, - ACTIONS(7151), 1, - anon_sym_unique, - ACTIONS(7227), 1, - sym_number, - STATE(4009), 1, - sym_comment, - STATE(7325), 1, - sym_string, - STATE(7326), 1, - sym_predefined_type, - ACTIONS(7147), 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, - [144027] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7143), 1, - anon_sym_DQUOTE, - ACTIONS(7145), 1, - anon_sym_SQUOTE, - ACTIONS(7151), 1, - anon_sym_unique, - ACTIONS(7229), 1, - sym_number, - STATE(4010), 1, - sym_comment, - STATE(7328), 1, - sym_string, - STATE(7329), 1, - sym_predefined_type, - ACTIONS(7147), 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, - [144066] = 5, + [144199] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5227), 1, + ACTIONS(5195), 1, anon_sym_EQ, - STATE(4011), 1, + STATE(3868), 1, sym_comment, - ACTIONS(5229), 14, + ACTIONS(5197), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -345224,26 +332930,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144095] = 10, + [144228] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7143), 1, + ACTIONS(7152), 1, anon_sym_DQUOTE, - ACTIONS(7145), 1, + ACTIONS(7154), 1, anon_sym_SQUOTE, - ACTIONS(7151), 1, + ACTIONS(7160), 1, anon_sym_unique, - ACTIONS(7231), 1, + ACTIONS(7234), 1, sym_number, - STATE(4012), 1, + STATE(3869), 1, sym_comment, - STATE(7331), 1, + STATE(7335), 2, sym_string, - STATE(7332), 1, sym_predefined_type, - ACTIONS(7147), 9, + ACTIONS(7156), 9, anon_sym_void, anon_sym_any, anon_sym_number, @@ -345253,40 +332958,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [144134] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5315), 1, - anon_sym_EQ, - STATE(4013), 1, - sym_comment, - ACTIONS(5317), 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, - [144163] = 5, + [144265] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5267), 1, + ACTIONS(5059), 1, anon_sym_PIPE, - STATE(4014), 1, + STATE(3870), 1, sym_comment, - ACTIONS(5269), 14, + ACTIONS(5061), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -345301,40 +332982,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144192] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4991), 1, - anon_sym_EQ, - STATE(4015), 1, - sym_comment, - ACTIONS(4993), 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, - [144221] = 5, + [144294] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5286), 1, + ACTIONS(5131), 1, anon_sym_PIPE, - STATE(4016), 1, + STATE(3871), 1, sym_comment, - ACTIONS(5288), 14, + ACTIONS(5133), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -345349,40 +333006,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144250] = 5, + [144323] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5243), 1, - anon_sym_EQ, - STATE(4017), 1, - sym_comment, - ACTIONS(5245), 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, - [144279] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5401), 1, + ACTIONS(5009), 1, anon_sym_PIPE, - STATE(4018), 1, + STATE(3872), 1, sym_comment, - ACTIONS(5403), 14, + ACTIONS(5011), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -345397,41 +333030,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144308] = 6, + [144352] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5223), 1, - anon_sym_EQ, - ACTIONS(7137), 1, - anon_sym_AMP, - STATE(4019), 1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7236), 1, + sym_number, + STATE(3873), 1, sym_comment, - ACTIONS(5225), 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_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [144339] = 5, + STATE(7353), 1, + sym_string, + STATE(7355), 1, + sym_predefined_type, + ACTIONS(7156), 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, + [144391] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5048), 1, + ACTIONS(5328), 1, anon_sym_PIPE, - STATE(4020), 1, + STATE(3874), 1, sym_comment, - ACTIONS(5050), 14, + ACTIONS(5330), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -345446,16 +333083,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144368] = 5, + [144420] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5173), 1, + ACTIONS(5328), 1, anon_sym_PIPE, - STATE(4021), 1, + STATE(3875), 1, sym_comment, - ACTIONS(5175), 14, + ACTIONS(5330), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -345470,40 +333107,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144397] = 5, + [144449] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5213), 1, - anon_sym_EQ, - STATE(4022), 1, - sym_comment, - ACTIONS(5215), 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, + ACTIONS(5055), 1, anon_sym_PIPE, - anon_sym_QMARK, - anon_sym_extends, - [144426] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5177), 1, - anon_sym_PIPE, - STATE(4023), 1, + STATE(3876), 1, sym_comment, - ACTIONS(5179), 14, + ACTIONS(5057), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -345518,16 +333131,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144455] = 5, + [144478] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5181), 1, + ACTIONS(5131), 1, anon_sym_PIPE, - STATE(4024), 1, + STATE(3877), 1, sym_comment, - ACTIONS(5183), 14, + ACTIONS(5133), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -345542,16 +333155,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144484] = 5, + [144507] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5145), 1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7238), 1, + sym_number, + STATE(3878), 1, + sym_comment, + STATE(7360), 1, + sym_string, + STATE(7361), 1, + sym_predefined_type, + ACTIONS(7156), 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, + [144546] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5137), 1, anon_sym_EQ, - STATE(4025), 1, + STATE(3879), 1, sym_comment, - ACTIONS(5147), 14, + ACTIONS(5139), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -345566,16 +333208,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144513] = 5, + [144575] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5377), 1, + ACTIONS(5354), 1, anon_sym_EQ, - STATE(4026), 1, + STATE(3880), 1, sym_comment, - ACTIONS(5379), 14, + ACTIONS(5356), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -345590,39 +333232,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144542] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4027), 1, - sym_comment, - ACTIONS(7233), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [144569] = 5, + [144604] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5128), 1, + ACTIONS(5328), 1, anon_sym_PIPE, - STATE(4028), 1, + STATE(3881), 1, sym_comment, - ACTIONS(5130), 14, + ACTIONS(5330), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -345637,88 +333256,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144598] = 5, + [144633] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5319), 1, - anon_sym_EQ, - STATE(4029), 1, + ACTIONS(5300), 1, + anon_sym_PIPE, + STATE(3882), 1, sym_comment, - ACTIONS(5321), 14, - anon_sym_as, + ACTIONS(5302), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [144627] = 5, + anon_sym_PIPE_RBRACE, + [144662] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5007), 1, - anon_sym_EQ, - STATE(4030), 1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + ACTIONS(7160), 1, + anon_sym_unique, + ACTIONS(7240), 1, + sym_number, + STATE(3883), 1, sym_comment, - ACTIONS(5009), 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, - [144656] = 5, + STATE(7367), 1, + sym_string, + STATE(7370), 1, + sym_predefined_type, + ACTIONS(7156), 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, + [144701] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4999), 1, - anon_sym_EQ, - STATE(4031), 1, + ACTIONS(5055), 1, + anon_sym_PIPE, + STATE(3884), 1, sym_comment, - ACTIONS(5001), 14, - anon_sym_as, + ACTIONS(5057), 14, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_QMARK, + anon_sym_LT, anon_sym_extends, - [144685] = 5, + anon_sym_PIPE_RBRACE, + [144730] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5355), 1, + ACTIONS(5256), 1, anon_sym_EQ, - STATE(4032), 1, + STATE(3885), 1, sym_comment, - ACTIONS(5074), 14, + ACTIONS(5258), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -345733,16 +333357,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144714] = 5, + [144759] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5311), 1, + ACTIONS(5260), 1, anon_sym_EQ, - STATE(4033), 1, + STATE(3886), 1, sym_comment, - ACTIONS(5313), 14, + ACTIONS(5262), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -345757,16 +333381,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144743] = 5, + [144788] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5011), 1, + ACTIONS(5205), 1, anon_sym_EQ, - STATE(4034), 1, + STATE(3887), 1, sym_comment, - ACTIONS(5013), 14, + ACTIONS(5207), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -345781,16 +333405,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144772] = 5, + [144817] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5177), 1, + ACTIONS(5290), 1, anon_sym_PIPE, - STATE(4035), 1, + STATE(3888), 1, sym_comment, - ACTIONS(5179), 14, + ACTIONS(5292), 14, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -345805,16 +333429,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [144801] = 5, + [144846] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5189), 1, + ACTIONS(5270), 1, anon_sym_EQ, - STATE(4036), 1, + STATE(3889), 1, sym_comment, - ACTIONS(5191), 14, + ACTIONS(5272), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -345829,16 +333453,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144830] = 5, + [144875] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5341), 1, + ACTIONS(5213), 1, anon_sym_EQ, - STATE(4037), 1, + STATE(3890), 1, sym_comment, - ACTIONS(5343), 14, + ACTIONS(5215), 14, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -345853,41 +333477,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_QMARK, anon_sym_extends, - [144859] = 6, + [144904] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(3891), 1, + sym_comment, + ACTIONS(7242), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [144931] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5337), 1, + ACTIONS(5145), 1, anon_sym_EQ, - ACTIONS(7137), 1, + ACTIONS(7146), 1, anon_sym_AMP, - STATE(4038), 1, - sym_comment, - ACTIONS(5339), 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, + ACTIONS(7148), 1, anon_sym_PIPE, - anon_sym_QMARK, + ACTIONS(7150), 1, anon_sym_extends, - [144890] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5139), 1, - anon_sym_EQ, - STATE(4039), 1, + STATE(3892), 1, sym_comment, - ACTIONS(5137), 14, + ACTIONS(5147), 11, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -345898,106 +333526,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_QMARK, - anon_sym_extends, - [144919] = 13, + [144966] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4630), 1, - anon_sym_COMMA, - ACTIONS(4649), 1, - anon_sym_RBRACE, - ACTIONS(7235), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7237), 1, + ACTIONS(7248), 1, + anon_sym_BANG, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7239), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, anon_sym_LT, - STATE(4040), 1, + ACTIONS(7256), 1, + anon_sym_QMARK, + STATE(3893), 1, sym_comment, - STATE(4705), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(7087), 1, + STATE(5142), 1, + sym_type_annotation, + STATE(5990), 1, + sym__initializer, + STATE(6346), 1, sym_type_parameters, - ACTIONS(4636), 5, + STATE(6893), 1, + sym__call_signature, + ACTIONS(7246), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [144963] = 15, + [145014] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(4634), 1, + anon_sym_COMMA, + ACTIONS(4650), 1, + anon_sym_RBRACE, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7245), 1, - anon_sym_BANG, - ACTIONS(7247), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7251), 1, - anon_sym_QMARK, - STATE(4041), 1, + STATE(3894), 1, sym_comment, - STATE(4978), 1, + STATE(4626), 1, sym_formal_parameters, - STATE(5375), 1, - sym_type_annotation, - STATE(5943), 1, - sym__initializer, - STATE(6489), 1, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(6826), 1, sym_type_parameters, - STATE(6708), 1, - sym__call_signature, - ACTIONS(7243), 3, + ACTIONS(4640), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [145011] = 13, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [145058] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4630), 1, + ACTIONS(4634), 1, anon_sym_COMMA, - ACTIONS(4646), 1, + ACTIONS(4637), 1, anon_sym_RBRACE, - ACTIONS(7235), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7237), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - STATE(4042), 1, + STATE(3895), 1, sym_comment, - STATE(4705), 1, + STATE(4626), 1, sym_formal_parameters, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - STATE(7087), 1, + STATE(5839), 1, + aux_sym_object_repeat1, + STATE(6826), 1, sym_type_parameters, - ACTIONS(4636), 5, + ACTIONS(4640), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [145055] = 15, + [145102] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -346006,70 +333631,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(7087), 1, + ACTIONS(7096), 1, anon_sym_STAR, - ACTIONS(7091), 1, + ACTIONS(7100), 1, anon_sym_LBRACE, - ACTIONS(7253), 1, + ACTIONS(7262), 1, sym_identifier, - ACTIONS(7255), 1, + ACTIONS(7264), 1, anon_sym_type, - STATE(4043), 1, + STATE(3896), 1, sym_comment, - STATE(5561), 1, + STATE(5441), 1, sym_import_require_clause, - STATE(5563), 1, + STATE(5443), 1, sym_string, - STATE(6552), 1, + STATE(6384), 1, sym__import_identifier, - STATE(7082), 1, + STATE(6902), 1, sym_import_clause, - ACTIONS(7257), 2, + ACTIONS(7266), 2, anon_sym_COMMA, anon_sym_from, - STATE(7515), 2, + STATE(7332), 2, sym_namespace_import, sym_named_imports, - [145103] = 8, + [145150] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(204), 1, - anon_sym_unique, - STATE(4044), 1, - sym_comment, - STATE(4345), 1, - sym_type_predicate, - STATE(7146), 1, - sym_predefined_type, - ACTIONS(7259), 2, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(7096), 1, + anon_sym_STAR, + ACTIONS(7100), 1, + anon_sym_LBRACE, + ACTIONS(7262), 1, sym_identifier, - sym_this, - ACTIONS(206), 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, - [145137] = 8, + ACTIONS(7264), 1, + anon_sym_type, + STATE(3897), 1, + sym_comment, + STATE(5536), 1, + sym_import_require_clause, + STATE(5537), 1, + sym_string, + STATE(6384), 1, + sym__import_identifier, + STATE(6899), 1, + sym_import_clause, + ACTIONS(7266), 2, + anon_sym_COMMA, + anon_sym_from, + STATE(7332), 2, + sym_namespace_import, + sym_named_imports, + [145198] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7270), 1, + anon_sym_BANG, + ACTIONS(7272), 1, + anon_sym_LPAREN, + ACTIONS(7274), 1, + anon_sym_QMARK, + STATE(3898), 1, + sym_comment, + STATE(4303), 1, + sym_formal_parameters, + STATE(4725), 1, + sym__call_signature, + STATE(5072), 1, + sym_type_annotation, + STATE(5902), 1, + sym__initializer, + STATE(6464), 1, + sym_type_parameters, + ACTIONS(7268), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [145246] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(204), 1, anon_sym_unique, - STATE(3008), 1, - sym_type_predicate, - STATE(4045), 1, + STATE(3899), 1, sym_comment, - STATE(7408), 1, + STATE(4110), 1, + sym_type_predicate, + STATE(7283), 1, sym_predefined_type, - ACTIONS(7261), 2, + ACTIONS(7276), 2, sym_identifier, sym_this, ACTIONS(206), 9, @@ -346082,269 +333747,238 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [145171] = 15, + [145280] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7265), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7280), 1, anon_sym_BANG, - ACTIONS(7267), 1, + ACTIONS(7282), 1, anon_sym_QMARK, - STATE(4046), 1, + STATE(3900), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(5223), 1, + STATE(5259), 1, sym_type_annotation, - STATE(6259), 1, + STATE(6156), 1, sym__initializer, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6538), 1, + STATE(6447), 1, sym__call_signature, - ACTIONS(7263), 3, + ACTIONS(7278), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145219] = 15, + [145328] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7269), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7284), 1, anon_sym_BANG, - ACTIONS(7271), 1, + ACTIONS(7286), 1, anon_sym_QMARK, - STATE(4047), 1, + STATE(3901), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(5148), 1, + STATE(5263), 1, sym_type_annotation, - STATE(6359), 1, + STATE(6157), 1, sym__initializer, - STATE(6465), 1, - sym__call_signature, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - ACTIONS(7263), 3, + STATE(6440), 1, + sym__call_signature, + ACTIONS(7278), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145267] = 15, + [145376] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, - anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7273), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + ACTIONS(7290), 1, anon_sym_BANG, - ACTIONS(7275), 1, + ACTIONS(7292), 1, anon_sym_QMARK, - STATE(4048), 1, + STATE(3902), 1, sym_comment, - STATE(4978), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(5118), 1, + STATE(4696), 1, + sym__call_signature, + STATE(5171), 1, sym_type_annotation, - STATE(6385), 1, + STATE(6015), 1, sym__initializer, - STATE(6458), 1, - sym__call_signature, - STATE(6489), 1, + STATE(6464), 1, sym_type_parameters, - ACTIONS(7263), 3, + ACTIONS(7288), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145315] = 15, + [145424] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, - anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7277), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + ACTIONS(7296), 1, anon_sym_BANG, - ACTIONS(7279), 1, + ACTIONS(7298), 1, anon_sym_QMARK, - STATE(4049), 1, + STATE(3903), 1, sym_comment, - STATE(4978), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(5199), 1, + STATE(4685), 1, + sym__call_signature, + STATE(5229), 1, sym_type_annotation, - STATE(6289), 1, + STATE(6071), 1, sym__initializer, - STATE(6489), 1, + STATE(6464), 1, sym_type_parameters, - STATE(6528), 1, - sym__call_signature, - ACTIONS(7263), 3, + ACTIONS(7294), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145363] = 15, + [145472] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7283), 1, - anon_sym_BANG, - ACTIONS(7285), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, anon_sym_LPAREN, - ACTIONS(7287), 1, + ACTIONS(7302), 1, + anon_sym_BANG, + ACTIONS(7304), 1, anon_sym_QMARK, - STATE(4050), 1, + STATE(3904), 1, sym_comment, - STATE(4343), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(4870), 1, + STATE(4765), 1, sym__call_signature, - STATE(5243), 1, + STATE(5139), 1, sym_type_annotation, - STATE(6236), 1, + STATE(5974), 1, sym__initializer, - STATE(6498), 1, + STATE(6464), 1, sym_type_parameters, - ACTIONS(7281), 3, + ACTIONS(7300), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145411] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7087), 1, - anon_sym_STAR, - ACTIONS(7091), 1, - anon_sym_LBRACE, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7255), 1, - anon_sym_type, - STATE(4051), 1, - sym_comment, - STATE(5666), 1, - sym_string, - STATE(5667), 1, - sym_import_require_clause, - STATE(6552), 1, - sym__import_identifier, - STATE(6962), 1, - sym_import_clause, - ACTIONS(7257), 2, - anon_sym_COMMA, - anon_sym_from, - STATE(7515), 2, - sym_namespace_import, - sym_named_imports, - [145459] = 13, + [145520] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4630), 1, - anon_sym_COMMA, - ACTIONS(4640), 1, - anon_sym_RBRACE, - ACTIONS(7235), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, anon_sym_LT, - STATE(4052), 1, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(7290), 1, + anon_sym_BANG, + ACTIONS(7306), 1, + anon_sym_QMARK, + STATE(3905), 1, sym_comment, - STATE(4705), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(7087), 1, + STATE(5171), 1, + sym_type_annotation, + STATE(6028), 1, + sym__call_signature, + STATE(6029), 1, + sym__initializer, + STATE(6358), 1, sym_type_parameters, - ACTIONS(4636), 5, + ACTIONS(7288), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [145503] = 15, + [145568] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7285), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7291), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7310), 1, anon_sym_BANG, - ACTIONS(7293), 1, + ACTIONS(7312), 1, anon_sym_QMARK, - STATE(4053), 1, + STATE(3906), 1, sym_comment, - STATE(4343), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(4844), 1, - sym__call_signature, - STATE(5411), 1, + STATE(5326), 1, sym_type_annotation, - STATE(6114), 1, + STATE(6172), 1, sym__initializer, - STATE(6498), 1, + STATE(6312), 1, + sym__call_signature, + STATE(6346), 1, sym_type_parameters, - ACTIONS(7289), 3, + ACTIONS(7308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145551] = 15, + [145616] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -346353,561 +333987,449 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(7087), 1, + ACTIONS(7096), 1, anon_sym_STAR, - ACTIONS(7091), 1, + ACTIONS(7100), 1, anon_sym_LBRACE, - ACTIONS(7253), 1, + ACTIONS(7262), 1, sym_identifier, - ACTIONS(7255), 1, + ACTIONS(7264), 1, anon_sym_type, - STATE(4054), 1, + STATE(3907), 1, sym_comment, - STATE(5664), 1, + STATE(5544), 1, sym_import_require_clause, - STATE(5665), 1, + STATE(5545), 1, sym_string, - STATE(6552), 1, + STATE(6384), 1, sym__import_identifier, - STATE(6755), 1, + STATE(6563), 1, sym_import_clause, - ACTIONS(7257), 2, + ACTIONS(7266), 2, anon_sym_COMMA, anon_sym_from, - STATE(7515), 2, + STATE(7332), 2, sym_namespace_import, sym_named_imports, - [145599] = 13, + [145664] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4630), 1, - anon_sym_COMMA, - ACTIONS(4643), 1, - anon_sym_RBRACE, - ACTIONS(7235), 1, - anon_sym_EQ, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, + ACTIONS(4913), 1, + anon_sym_PIPE, + ACTIONS(7134), 1, anon_sym_LT, - STATE(4055), 1, + ACTIONS(7186), 1, + anon_sym_DOT, + STATE(3908), 1, sym_comment, - STATE(4705), 1, - sym_formal_parameters, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(6287), 1, - aux_sym_object_repeat1, - STATE(7087), 1, - sym_type_parameters, - ACTIONS(4636), 5, + STATE(4055), 1, + sym_type_arguments, + ACTIONS(4314), 10, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [145643] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7285), 1, - anon_sym_LPAREN, - ACTIONS(7297), 1, - anon_sym_BANG, - ACTIONS(7299), 1, - anon_sym_QMARK, - STATE(4056), 1, - sym_comment, - STATE(4343), 1, - sym_formal_parameters, - STATE(4964), 1, - sym__call_signature, - STATE(5136), 1, - sym_type_annotation, - STATE(5818), 1, - sym__initializer, - STATE(6498), 1, - sym_type_parameters, - ACTIONS(7295), 3, - sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [145691] = 15, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [145698] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7303), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7314), 1, anon_sym_BANG, - ACTIONS(7305), 1, + ACTIONS(7316), 1, anon_sym_QMARK, - STATE(4057), 1, + STATE(3909), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(5379), 1, + STATE(5277), 1, sym_type_annotation, - STATE(6137), 1, + STATE(6164), 1, sym__initializer, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6598), 1, + STATE(6417), 1, sym__call_signature, - ACTIONS(7301), 3, + ACTIONS(7278), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145739] = 15, + [145746] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7307), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7318), 1, anon_sym_BANG, - ACTIONS(7309), 1, + ACTIONS(7320), 1, anon_sym_QMARK, - STATE(4058), 1, + STATE(3910), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(5381), 1, + STATE(5278), 1, sym_type_annotation, - STATE(6132), 1, + STATE(6165), 1, sym__initializer, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6601), 1, + STATE(6414), 1, sym__call_signature, - ACTIONS(7301), 3, + ACTIONS(7278), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145787] = 15, + [145794] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, - anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7311), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(7302), 1, anon_sym_BANG, - ACTIONS(7313), 1, + ACTIONS(7322), 1, anon_sym_QMARK, - STATE(4059), 1, + STATE(3911), 1, sym_comment, - STATE(4978), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5431), 1, + STATE(5139), 1, sym_type_annotation, - STATE(6096), 1, + STATE(5978), 1, + sym__call_signature, + STATE(5984), 1, sym__initializer, - STATE(6489), 1, + STATE(6358), 1, sym_type_parameters, - STATE(6626), 1, - sym__call_signature, - ACTIONS(7301), 3, + ACTIONS(7300), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145835] = 15, + [145842] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7297), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7326), 1, anon_sym_BANG, - ACTIONS(7315), 1, + ACTIONS(7328), 1, anon_sym_QMARK, - STATE(4060), 1, + STATE(3912), 1, sym_comment, - STATE(4276), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(5136), 1, + STATE(4971), 1, sym_type_annotation, - STATE(5763), 1, - sym__call_signature, - STATE(5764), 1, + STATE(5759), 1, sym__initializer, - STATE(6903), 1, + STATE(6346), 1, sym_type_parameters, - ACTIONS(7295), 3, + STATE(6768), 1, + sym__call_signature, + ACTIONS(7324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145883] = 15, + [145890] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7317), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7330), 1, anon_sym_BANG, - ACTIONS(7319), 1, + ACTIONS(7332), 1, anon_sym_QMARK, - STATE(4061), 1, + STATE(3913), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(5438), 1, + STATE(5257), 1, sym_type_annotation, - STATE(6091), 1, + STATE(6074), 1, sym__initializer, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6631), 1, + STATE(6511), 1, sym__call_signature, - ACTIONS(7301), 3, + ACTIONS(7308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [145931] = 15, + [145938] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7323), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7334), 1, anon_sym_BANG, - ACTIONS(7325), 1, + ACTIONS(7336), 1, anon_sym_QMARK, - STATE(4062), 1, + STATE(3914), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(5024), 1, + STATE(5331), 1, sym_type_annotation, - STATE(5769), 1, + STATE(6201), 1, sym__initializer, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6804), 1, + STATE(6347), 1, sym__call_signature, - ACTIONS(7321), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [145979] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4945), 1, - anon_sym_PIPE, - ACTIONS(7121), 1, - anon_sym_LT, - ACTIONS(7179), 1, - anon_sym_DOT, - STATE(4063), 1, - sym_comment, - STATE(4210), 1, - sym_type_arguments, - ACTIONS(4312), 10, + ACTIONS(7308), 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, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [146013] = 13, + [145986] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4630), 1, + ACTIONS(4634), 1, anon_sym_COMMA, - ACTIONS(4633), 1, + ACTIONS(4647), 1, anon_sym_RBRACE, - ACTIONS(7235), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7237), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - STATE(4064), 1, + STATE(3915), 1, sym_comment, - STATE(4705), 1, + STATE(4626), 1, sym_formal_parameters, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - STATE(7087), 1, + STATE(5839), 1, + aux_sym_object_repeat1, + STATE(6826), 1, sym_type_parameters, - ACTIONS(4636), 5, + ACTIONS(4640), 5, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [146057] = 15, + [146030] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7247), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7327), 1, - anon_sym_BANG, - ACTIONS(7329), 1, - anon_sym_QMARK, - STATE(4065), 1, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + STATE(3916), 1, sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(5072), 1, - sym_type_annotation, - STATE(5776), 1, - sym__initializer, - STATE(6489), 1, - sym_type_parameters, - STATE(6801), 1, - sym__call_signature, - ACTIONS(7321), 3, - sym__automatic_semicolon, + STATE(2625), 2, + sym_template_string, + sym_arguments, + ACTIONS(5215), 10, anon_sym_COMMA, - anon_sym_SEMI, - [146105] = 15, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_QMARK, + anon_sym_extends, + [146062] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7331), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7340), 1, anon_sym_BANG, - ACTIONS(7333), 1, + ACTIONS(7342), 1, anon_sym_QMARK, - STATE(4066), 1, + STATE(3917), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(5413), 1, + STATE(5176), 1, sym_type_annotation, - STATE(5982), 1, + STATE(6036), 1, sym__initializer, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6673), 1, + STATE(6620), 1, sym__call_signature, - ACTIONS(7301), 3, + ACTIONS(7338), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146153] = 15, + [146110] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7247), 1, - anon_sym_LPAREN, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7337), 1, - anon_sym_BANG, - ACTIONS(7339), 1, - anon_sym_QMARK, - STATE(4067), 1, + ACTIONS(204), 1, + anon_sym_unique, + STATE(3918), 1, sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(5307), 1, - sym_type_annotation, - STATE(5901), 1, - sym__initializer, - STATE(6489), 1, - sym_type_parameters, - STATE(6700), 1, - sym__call_signature, - ACTIONS(7335), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146201] = 15, + STATE(4338), 1, + sym_type_predicate, + STATE(7171), 1, + sym_predefined_type, + ACTIONS(7344), 2, + sym_identifier, + sym_this, + ACTIONS(206), 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, + [146144] = 15, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7343), 1, - anon_sym_BANG, - ACTIONS(7345), 1, - anon_sym_QMARK, - STATE(4068), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(7096), 1, + anon_sym_STAR, + ACTIONS(7100), 1, + anon_sym_LBRACE, + ACTIONS(7262), 1, + sym_identifier, + ACTIONS(7264), 1, + anon_sym_type, + STATE(3919), 1, sym_comment, - STATE(4276), 1, - sym_formal_parameters, - STATE(5404), 1, - sym_type_annotation, - STATE(5945), 1, - sym__initializer, - STATE(5946), 1, - sym__call_signature, - STATE(6903), 1, - sym_type_parameters, - ACTIONS(7341), 3, - sym__automatic_semicolon, + STATE(5483), 1, + sym_string, + STATE(5484), 1, + sym_import_require_clause, + STATE(6384), 1, + sym__import_identifier, + STATE(6779), 1, + sym_import_clause, + ACTIONS(7266), 2, anon_sym_COMMA, - anon_sym_SEMI, - [146249] = 15, + anon_sym_from, + STATE(7332), 2, + sym_namespace_import, + sym_named_imports, + [146192] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7347), 1, - anon_sym_BANG, - ACTIONS(7349), 1, - anon_sym_QMARK, - STATE(4069), 1, - sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(5403), 1, - sym_type_annotation, - STATE(5968), 1, - sym__initializer, - STATE(6489), 1, - sym_type_parameters, - STATE(6684), 1, - sym__call_signature, - ACTIONS(7301), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [146297] = 15, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7285), 1, - anon_sym_LPAREN, - ACTIONS(7343), 1, + ACTIONS(7346), 1, anon_sym_BANG, - ACTIONS(7351), 1, + ACTIONS(7348), 1, anon_sym_QMARK, - STATE(4070), 1, + STATE(3920), 1, sym_comment, - STATE(4343), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(4938), 1, - sym__call_signature, - STATE(5404), 1, + STATE(5237), 1, sym_type_annotation, - STATE(5984), 1, + STATE(6106), 1, sym__initializer, - STATE(6498), 1, + STATE(6346), 1, sym_type_parameters, - ACTIONS(7341), 3, + STATE(6489), 1, + sym__call_signature, + ACTIONS(7278), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146345] = 8, + [146240] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(204), 1, anon_sym_unique, - STATE(4015), 1, + STATE(2919), 1, sym_type_predicate, - STATE(4071), 1, + STATE(3921), 1, sym_comment, - STATE(7200), 1, + STATE(6963), 1, sym_predefined_type, - ACTIONS(7353), 2, + ACTIONS(7350), 2, sym_identifier, sym_this, ACTIONS(206), 9, @@ -346920,20 +334442,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [146379] = 8, + [146274] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_BANG, + ACTIONS(7354), 1, + anon_sym_QMARK, + STATE(3922), 1, + sym_comment, + STATE(4815), 1, + sym_formal_parameters, + STATE(5180), 1, + sym_type_annotation, + STATE(6038), 1, + sym__initializer, + STATE(6346), 1, + sym_type_parameters, + STATE(6617), 1, + sym__call_signature, + ACTIONS(7338), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [146322] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(204), 1, anon_sym_unique, - STATE(4072), 1, - sym_comment, - STATE(4248), 1, + STATE(3824), 1, sym_type_predicate, - STATE(7299), 1, + STATE(3923), 1, + sym_comment, + STATE(7026), 1, sym_predefined_type, - ACTIONS(7355), 2, + ACTIONS(7356), 2, sym_identifier, sym_this, ACTIONS(206), 9, @@ -346946,106 +334501,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [146413] = 15, + [146356] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(4634), 1, + anon_sym_COMMA, + ACTIONS(4644), 1, + anon_sym_RBRACE, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(3924), 1, + sym_comment, + STATE(4626), 1, + sym_formal_parameters, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + STATE(6826), 1, + sym_type_parameters, + ACTIONS(4640), 5, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(7285), 1, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [146400] = 15, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7359), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7358), 1, anon_sym_BANG, - ACTIONS(7361), 1, + ACTIONS(7360), 1, anon_sym_QMARK, - STATE(4073), 1, + STATE(3925), 1, sym_comment, - STATE(4343), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(4918), 1, - sym__call_signature, - STATE(5361), 1, + STATE(5199), 1, sym_type_annotation, - STATE(5937), 1, + STATE(6054), 1, sym__initializer, - STATE(6498), 1, + STATE(6346), 1, sym_type_parameters, - ACTIONS(7357), 3, + STATE(6585), 1, + sym__call_signature, + ACTIONS(7338), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146461] = 15, + [146448] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, - anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7363), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + ACTIONS(7364), 1, anon_sym_BANG, - ACTIONS(7365), 1, + ACTIONS(7366), 1, anon_sym_QMARK, - STATE(4074), 1, + STATE(3926), 1, sym_comment, - STATE(4978), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(5138), 1, + STATE(4704), 1, + sym__call_signature, + STATE(5315), 1, sym_type_annotation, - STATE(5810), 1, + STATE(6185), 1, sym__initializer, - STATE(6489), 1, + STATE(6464), 1, sym_type_parameters, - STATE(6775), 1, - sym__call_signature, - ACTIONS(7321), 3, + ACTIONS(7362), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146509] = 15, + [146496] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7367), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7368), 1, anon_sym_BANG, - ACTIONS(7369), 1, + ACTIONS(7370), 1, anon_sym_QMARK, - STATE(4075), 1, + STATE(3927), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(5139), 1, + STATE(5198), 1, sym_type_annotation, - STATE(5814), 1, + STATE(6050), 1, sym__initializer, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6769), 1, + STATE(6530), 1, sym__call_signature, - ACTIONS(7321), 3, + ACTIONS(7338), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [146557] = 15, + [146544] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4634), 1, + anon_sym_COMMA, + ACTIONS(4653), 1, + anon_sym_RBRACE, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(3928), 1, + sym_comment, + STATE(4626), 1, + sym_formal_parameters, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + STATE(6826), 1, + sym_type_parameters, + ACTIONS(4640), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [146588] = 15, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -347054,77 +334671,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(7087), 1, + ACTIONS(7096), 1, anon_sym_STAR, - ACTIONS(7091), 1, + ACTIONS(7100), 1, anon_sym_LBRACE, - ACTIONS(7253), 1, + ACTIONS(7262), 1, sym_identifier, - ACTIONS(7255), 1, + ACTIONS(7264), 1, anon_sym_type, - STATE(4076), 1, + STATE(3929), 1, sym_comment, - STATE(5654), 1, + STATE(5508), 1, sym_import_require_clause, - STATE(5655), 1, + STATE(5509), 1, sym_string, - STATE(6552), 1, + STATE(6384), 1, sym__import_identifier, - STATE(6715), 1, + STATE(6572), 1, sym_import_clause, - ACTIONS(7257), 2, + ACTIONS(7266), 2, anon_sym_COMMA, anon_sym_from, - STATE(7515), 2, + STATE(7332), 2, sym_namespace_import, sym_named_imports, - [146605] = 15, - ACTIONS(3), 1, - aux_sym_comment_token1, + [146636] = 15, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7087), 1, - anon_sym_STAR, - ACTIONS(7091), 1, - anon_sym_LBRACE, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7255), 1, - anon_sym_type, - STATE(4077), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7372), 1, + anon_sym_BANG, + ACTIONS(7374), 1, + anon_sym_QMARK, + STATE(3930), 1, sym_comment, - STATE(5642), 1, - sym_string, - STATE(5645), 1, - sym_import_require_clause, - STATE(6552), 1, - sym__import_identifier, - STATE(7092), 1, - sym_import_clause, - ACTIONS(7257), 2, + STATE(4815), 1, + sym_formal_parameters, + STATE(5234), 1, + sym_type_annotation, + STATE(6093), 1, + sym__initializer, + STATE(6346), 1, + sym_type_parameters, + STATE(6500), 1, + sym__call_signature, + ACTIONS(7278), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - STATE(7515), 2, - sym_namespace_import, - sym_named_imports, - [146653] = 8, + anon_sym_SEMI, + [146684] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(204), 1, anon_sym_unique, - STATE(2516), 1, + STATE(2348), 1, sym_type_predicate, - STATE(4078), 1, + STATE(3931), 1, sym_comment, - STATE(7536), 1, + STATE(7247), 1, sym_predefined_type, - ACTIONS(7371), 2, + ACTIONS(7376), 2, sym_identifier, sym_this, ACTIONS(206), 9, @@ -347137,61 +334754,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_object, anon_sym_unknown, anon_sym_never, - [146687] = 7, + [146718] = 15, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - STATE(4079), 1, - sym_comment, - STATE(2609), 2, - sym_template_string, - sym_arguments, - ACTIONS(5265), 10, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7378), 1, + anon_sym_BANG, + ACTIONS(7380), 1, anon_sym_QMARK, - anon_sym_extends, - [146719] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4473), 1, - anon_sym_PIPE, - STATE(4080), 1, + STATE(3932), 1, sym_comment, - ACTIONS(5278), 12, + STATE(4815), 1, + sym_formal_parameters, + STATE(5323), 1, + sym_type_annotation, + STATE(6213), 1, + sym__initializer, + STATE(6344), 1, + sym__call_signature, + STATE(6346), 1, + sym_type_parameters, + ACTIONS(7308), 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_AMP, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [146746] = 4, + [146766] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4081), 1, + STATE(3933), 1, sym_comment, - ACTIONS(5183), 13, + ACTIONS(5003), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -347205,64 +334808,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [146771] = 4, + [146791] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4082), 1, + ACTIONS(4475), 1, + anon_sym_PIPE, + STATE(3934), 1, sym_comment, - ACTIONS(4997), 13, + ACTIONS(5151), 12, sym__automatic_semicolon, - sym__function_signature_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_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, anon_sym_extends, - [146796] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7375), 1, - anon_sym_QMARK, - STATE(4083), 1, - sym_comment, - STATE(4276), 1, - sym_formal_parameters, - STATE(4553), 1, - sym__call_signature, - STATE(5325), 1, - sym_type_annotation, - STATE(6903), 1, - sym_type_parameters, - ACTIONS(7373), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [146837] = 4, + [146818] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4084), 1, + STATE(3935), 1, sym_comment, - ACTIONS(5269), 13, + ACTIONS(5330), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -347276,73 +334851,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [146862] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5235), 1, - anon_sym_PIPE, - STATE(4085), 1, - sym_comment, - ACTIONS(5237), 12, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [146889] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7379), 1, - anon_sym_COLON, - ACTIONS(7381), 1, - anon_sym_QMARK, - STATE(4086), 1, - sym_comment, - STATE(4276), 1, - sym_formal_parameters, - STATE(4668), 1, - sym__call_signature, - STATE(5432), 1, - sym_type_annotation, - STATE(6903), 1, - sym_type_parameters, - ACTIONS(7377), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [146930] = 8, + [146843] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7211), 1, + ACTIONS(7198), 1, anon_sym_LT, - ACTIONS(7383), 1, + ACTIONS(7382), 1, anon_sym_DOT, - ACTIONS(7385), 1, + ACTIONS(7384), 1, anon_sym_is, - STATE(4087), 1, + STATE(3936), 1, sym_comment, - STATE(4375), 1, + STATE(4210), 1, sym_type_arguments, - ACTIONS(4312), 9, + ACTIONS(4314), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -347352,14 +334876,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [146963] = 4, + [146876] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4088), 1, + STATE(3937), 1, sym_comment, - ACTIONS(5269), 13, + ACTIONS(5061), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -347373,14 +334897,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [146988] = 4, + [146901] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4089), 1, + STATE(3938), 1, sym_comment, - ACTIONS(5005), 13, + ACTIONS(5302), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -347394,67 +334918,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147013] = 7, + [146926] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4961), 1, + ACTIONS(4494), 1, anon_sym_PIPE, - ACTIONS(7121), 1, - anon_sym_LT, - STATE(4090), 1, + STATE(3939), 1, sym_comment, - STATE(4199), 1, - sym_type_arguments, - ACTIONS(4963), 10, + ACTIONS(5135), 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, - [147044] = 12, + [146953] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7389), 1, - anon_sym_QMARK, - STATE(4091), 1, + ACTIONS(4473), 1, + anon_sym_PIPE, + STATE(3940), 1, sym_comment, - STATE(4276), 1, - sym_formal_parameters, - STATE(4580), 1, - sym__call_signature, - STATE(5185), 1, - sym_type_annotation, - STATE(6903), 1, - sym_type_parameters, - ACTIONS(7387), 5, + ACTIONS(5153), 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, - [147085] = 4, + [146980] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4092), 1, + STATE(3941), 1, sym_comment, - ACTIONS(5005), 13, + ACTIONS(5288), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -347468,35 +334983,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147110] = 4, + [147005] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4093), 1, + ACTIONS(4473), 1, + anon_sym_PIPE, + STATE(3942), 1, sym_comment, - ACTIONS(5005), 13, + ACTIONS(5153), 12, sym__automatic_semicolon, - sym__function_signature_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_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [147032] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4469), 1, anon_sym_PIPE, - anon_sym_LT, + STATE(3943), 1, + sym_comment, + ACTIONS(5161), 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, - [147135] = 4, + anon_sym_PIPE_RBRACE, + [147059] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4094), 1, + STATE(3944), 1, sym_comment, - ACTIONS(5031), 13, + ACTIONS(5292), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -347510,14 +335048,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147160] = 4, + [147084] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4095), 1, + STATE(3945), 1, sym_comment, - ACTIONS(5031), 13, + ACTIONS(5302), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -347531,36 +335069,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147185] = 5, + [147109] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5259), 1, + ACTIONS(4469), 1, anon_sym_PIPE, - STATE(4096), 1, + STATE(3946), 1, sym_comment, - ACTIONS(5261), 12, + ACTIONS(5161), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147212] = 4, + [147136] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4097), 1, + STATE(3947), 1, sym_comment, - ACTIONS(5269), 13, + ACTIONS(5330), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -347574,14 +335112,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147237] = 4, + [147161] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4098), 1, + STATE(3948), 1, sym_comment, - ACTIONS(5288), 13, + ACTIONS(5330), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -347595,14 +335133,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147262] = 4, + [147186] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4099), 1, + STATE(3949), 1, sym_comment, - ACTIONS(5031), 13, + ACTIONS(5292), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -347616,53 +335154,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147287] = 12, + [147211] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7391), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(7388), 1, anon_sym_QMARK, - STATE(4100), 1, + STATE(3950), 1, sym_comment, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5427), 1, + STATE(4524), 1, sym__call_signature, - STATE(5432), 1, + STATE(5150), 1, sym_type_annotation, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(7377), 5, + ACTIONS(7386), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147328] = 8, + [147252] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + STATE(3951), 1, + sym_comment, + ACTIONS(5292), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5263), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, anon_sym_PIPE, - STATE(4101), 1, + anon_sym_LT, + anon_sym_extends, + [147277] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5336), 1, + anon_sym_PIPE, + ACTIONS(7390), 1, + anon_sym_DOT, + ACTIONS(7392), 1, + anon_sym_QMARK_DOT, + STATE(3952), 1, sym_comment, - STATE(2609), 2, - sym_template_string, - sym_arguments, - ACTIONS(5265), 8, + ACTIONS(5338), 10, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, @@ -347670,16 +335228,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147361] = 5, + [147308] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4452), 1, + ACTIONS(5199), 1, anon_sym_PIPE, - STATE(4102), 1, + STATE(3953), 1, sym_comment, - ACTIONS(4967), 12, + ACTIONS(5201), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -347692,43 +335250,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147388] = 12, + [147335] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, + ACTIONS(7084), 1, anon_sym_LT, - ACTIONS(7249), 1, + ACTIONS(7090), 1, + anon_sym_DOT, + ACTIONS(7394), 1, + anon_sym_EQ, + ACTIONS(7399), 1, anon_sym_COLON, - ACTIONS(7395), 1, - anon_sym_QMARK, - STATE(4103), 1, + ACTIONS(7401), 1, + anon_sym_extends, + STATE(3823), 1, + sym_type_arguments, + STATE(3954), 1, sym_comment, - STATE(4276), 1, - sym_formal_parameters, - STATE(4602), 1, - sym__call_signature, - STATE(5276), 1, - sym_type_annotation, - STATE(6903), 1, - sym_type_parameters, - ACTIONS(7393), 5, - sym__automatic_semicolon, + STATE(5520), 1, + sym_constraint, + STATE(6696), 1, + sym_default_type, + ACTIONS(7396), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147429] = 4, + anon_sym_GT, + ACTIONS(4314), 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [147378] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4104), 1, + STATE(3955), 1, sym_comment, - ACTIONS(5035), 13, + ACTIONS(5302), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -347742,36 +335301,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147454] = 5, + [147403] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4490), 1, - anon_sym_PIPE, - STATE(4105), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(7406), 1, + anon_sym_QMARK, + STATE(3956), 1, sym_comment, - ACTIONS(5276), 12, + STATE(4128), 1, + sym_formal_parameters, + STATE(5089), 1, + sym__call_signature, + STATE(5090), 1, + sym_type_annotation, + STATE(6358), 1, + sym_type_parameters, + ACTIONS(7404), 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_AMP, - anon_sym_BQUOTE, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [147481] = 4, + [147444] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4106), 1, + STATE(3957), 1, sym_comment, - ACTIONS(5035), 13, + ACTIONS(5250), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -347785,102 +335351,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147506] = 5, + [147469] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4477), 1, - anon_sym_PIPE, - STATE(4107), 1, + STATE(3958), 1, sym_comment, - ACTIONS(5200), 12, + ACTIONS(5250), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [147533] = 5, + [147494] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4471), 1, + ACTIONS(5209), 1, anon_sym_PIPE, - STATE(4108), 1, + STATE(3959), 1, sym_comment, - ACTIONS(5185), 12, + ACTIONS(5211), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147560] = 5, + [147521] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4475), 1, - anon_sym_PIPE, - STATE(4109), 1, + STATE(3960), 1, sym_comment, - ACTIONS(5274), 12, + ACTIONS(5250), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [147587] = 5, + [147546] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4471), 1, + ACTIONS(5217), 1, anon_sym_PIPE, - STATE(4110), 1, + STATE(3961), 1, sym_comment, - ACTIONS(5185), 12, + ACTIONS(5219), 12, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147614] = 4, + [147573] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4111), 1, + STATE(3962), 1, sym_comment, - ACTIONS(5035), 13, + ACTIONS(5240), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -347894,58 +335458,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147639] = 5, + [147598] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4479), 1, - anon_sym_PIPE, - STATE(4112), 1, + STATE(3963), 1, sym_comment, - ACTIONS(5171), 12, + ACTIONS(5240), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [147666] = 5, + [147623] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4479), 1, - anon_sym_PIPE, - STATE(4113), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(7408), 1, + anon_sym_QMARK, + STATE(3964), 1, sym_comment, - ACTIONS(5171), 12, + STATE(4128), 1, + sym_formal_parameters, + STATE(5149), 1, + sym__call_signature, + STATE(5150), 1, + sym_type_annotation, + STATE(6358), 1, + sym_type_parameters, + ACTIONS(7386), 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_AMP, - anon_sym_BQUOTE, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [147693] = 4, + [147664] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4114), 1, + STATE(3965), 1, sym_comment, - ACTIONS(5046), 13, + ACTIONS(5240), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -347959,141 +335529,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147718] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7399), 1, - anon_sym_QMARK, - STATE(4115), 1, - sym_comment, - STATE(4276), 1, - sym_formal_parameters, - STATE(5303), 1, - sym_type_annotation, - STATE(5310), 1, - sym__call_signature, - STATE(6903), 1, - sym_type_parameters, - ACTIONS(7397), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147759] = 5, + [147689] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4428), 1, - anon_sym_PIPE, - STATE(4116), 1, + STATE(3966), 1, sym_comment, - ACTIONS(4975), 12, + ACTIONS(5007), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [147786] = 12, + [147714] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7401), 1, - anon_sym_QMARK, - STATE(4117), 1, + STATE(3967), 1, sym_comment, - STATE(4276), 1, - sym_formal_parameters, - STATE(5276), 1, - sym_type_annotation, - STATE(5277), 1, - sym__call_signature, - STATE(6903), 1, - sym_type_parameters, - ACTIONS(7393), 5, + ACTIONS(5003), 13, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [147827] = 7, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_extends, + [147739] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5381), 1, - anon_sym_PIPE, - ACTIONS(7403), 1, - anon_sym_DOT, - ACTIONS(7405), 1, - anon_sym_QMARK_DOT, - STATE(4118), 1, + STATE(3968), 1, sym_comment, - ACTIONS(5383), 10, + ACTIONS(5229), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [147858] = 6, + [147764] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2206), 1, - anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5037), 1, - anon_sym_PIPE, - STATE(4119), 1, + STATE(3969), 1, sym_comment, - ACTIONS(5039), 11, + ACTIONS(5007), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [147887] = 4, + [147789] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4120), 1, + STATE(3970), 1, sym_comment, - ACTIONS(4997), 13, + ACTIONS(5011), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -348107,45 +335634,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [147912] = 12, + [147814] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7407), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(7412), 1, anon_sym_QMARK, - STATE(4121), 1, + STATE(3971), 1, sym_comment, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(4559), 1, + STATE(5093), 1, sym__call_signature, - STATE(5303), 1, + STATE(5160), 1, sym_type_annotation, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(7397), 5, + ACTIONS(7410), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [147953] = 5, + [147855] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4446), 1, + ACTIONS(4963), 1, anon_sym_PIPE, - STATE(4122), 1, + ACTIONS(7134), 1, + anon_sym_LT, + STATE(3972), 1, sym_comment, - ACTIONS(4965), 12, + STATE(4091), 1, + sym_type_arguments, + ACTIONS(4965), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -348153,41 +335684,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [147980] = 5, + [147886] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4454), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5213), 1, anon_sym_PIPE, - STATE(4123), 1, + STATE(3973), 1, sym_comment, - ACTIONS(5353), 12, + STATE(2625), 2, + sym_template_string, + sym_arguments, + ACTIONS(5215), 8, 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, - [148007] = 4, + [147919] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4124), 1, + STATE(3974), 1, sym_comment, - ACTIONS(4997), 13, + ACTIONS(5229), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -348201,146 +335733,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148032] = 5, + [147944] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4461), 1, - anon_sym_PIPE, - STATE(4125), 1, + STATE(3975), 1, sym_comment, - ACTIONS(5365), 12, + ACTIONS(5229), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [148059] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, + anon_sym_PIPE, anon_sym_LT, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7409), 1, - anon_sym_QMARK, - STATE(4126), 1, - sym_comment, - STATE(4276), 1, - sym_formal_parameters, - STATE(5177), 1, - sym__call_signature, - STATE(5185), 1, - sym_type_annotation, - STATE(6903), 1, - sym_type_parameters, - ACTIONS(7387), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [148100] = 5, + anon_sym_extends, + [147969] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4459), 1, - anon_sym_PIPE, - STATE(4127), 1, + STATE(3976), 1, sym_comment, - ACTIONS(5367), 12, + ACTIONS(5225), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_BQUOTE, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [148127] = 13, + [147994] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7071), 1, - anon_sym_LT, - ACTIONS(7081), 1, - anon_sym_DOT, - ACTIONS(7411), 1, - anon_sym_EQ, - ACTIONS(7416), 1, - anon_sym_COLON, - ACTIONS(7418), 1, - anon_sym_extends, - STATE(4013), 1, - sym_type_arguments, - STATE(4128), 1, + STATE(3977), 1, sym_comment, - STATE(5617), 1, - sym_constraint, - STATE(6830), 1, - sym_default_type, - ACTIONS(7413), 2, + ACTIONS(5021), 13, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_GT, - ACTIONS(4312), 3, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, anon_sym_PIPE, - [148170] = 12, + anon_sym_LT, + anon_sym_extends, + [148019] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7421), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(7416), 1, anon_sym_QMARK, - STATE(4129), 1, + STATE(3978), 1, sym_comment, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5275), 1, + STATE(5206), 1, sym__call_signature, - STATE(5325), 1, + STATE(5207), 1, sym_type_annotation, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(7373), 5, + ACTIONS(7414), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148211] = 4, + [148060] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4130), 1, + STATE(3979), 1, sym_comment, - ACTIONS(5389), 13, + ACTIONS(5011), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -348354,40 +335846,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148236] = 5, + [148085] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5196), 1, - anon_sym_PIPE, - STATE(4131), 1, + STATE(3980), 1, sym_comment, - ACTIONS(5198), 12, + ACTIONS(5021), 13, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, + [148110] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(7418), 1, + anon_sym_COLON, + ACTIONS(7420), 1, + anon_sym_QMARK, + STATE(3981), 1, + sym_comment, + STATE(4128), 1, + sym_formal_parameters, + STATE(4397), 1, + sym__call_signature, + STATE(5090), 1, + sym_type_annotation, + STATE(6358), 1, + sym_type_parameters, + ACTIONS(7404), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [148263] = 6, + [148151] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2276), 1, + ACTIONS(2174), 1, anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5037), 1, + ACTIONS(5171), 1, anon_sym_PIPE, - STATE(4132), 1, + STATE(3982), 1, sym_comment, - ACTIONS(5039), 11, + ACTIONS(5173), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -348399,14 +335919,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_extends, anon_sym_PIPE_RBRACE, - [148292] = 4, + [148180] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4133), 1, + STATE(3983), 1, sym_comment, - ACTIONS(5249), 13, + ACTIONS(5057), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -348420,56 +335940,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148317] = 4, + [148205] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4134), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(7424), 1, + anon_sym_QMARK, + STATE(3984), 1, sym_comment, - ACTIONS(5050), 13, + STATE(4128), 1, + sym_formal_parameters, + STATE(5296), 1, + sym__call_signature, + STATE(5297), 1, + sym_type_annotation, + STATE(6358), 1, + sym_type_parameters, + ACTIONS(7422), 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_LT, - anon_sym_extends, - [148342] = 4, + anon_sym_PIPE_RBRACE, + [148246] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4135), 1, + ACTIONS(4458), 1, + anon_sym_PIPE, + STATE(3985), 1, sym_comment, - ACTIONS(5175), 13, + ACTIONS(5242), 12, sym__automatic_semicolon, - sym__function_signature_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_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, anon_sym_extends, - [148367] = 4, + anon_sym_PIPE_RBRACE, + [148273] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4136), 1, + STATE(3986), 1, sym_comment, - ACTIONS(5393), 13, + ACTIONS(5133), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -348483,35 +336012,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148392] = 4, + [148298] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4137), 1, + ACTIONS(4460), 1, + anon_sym_PIPE, + STATE(3987), 1, sym_comment, - ACTIONS(5389), 13, + ACTIONS(5236), 12, sym__automatic_semicolon, - sym__function_signature_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_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, anon_sym_extends, - [148417] = 4, + anon_sym_PIPE_RBRACE, + [148325] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4138), 1, + STATE(3988), 1, sym_comment, - ACTIONS(5179), 13, + ACTIONS(5057), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -348525,35 +336055,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148442] = 4, + [148350] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4139), 1, + ACTIONS(4462), 1, + anon_sym_PIPE, + STATE(3989), 1, sym_comment, - ACTIONS(5393), 13, + ACTIONS(5234), 12, sym__automatic_semicolon, - sym__function_signature_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_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, anon_sym_extends, - [148467] = 4, + anon_sym_PIPE_RBRACE, + [148377] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4140), 1, + STATE(3990), 1, sym_comment, - ACTIONS(5179), 13, + ACTIONS(5133), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -348567,119 +336098,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148492] = 4, + [148402] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4141), 1, + ACTIONS(4438), 1, + anon_sym_PIPE, + STATE(3991), 1, sym_comment, - ACTIONS(5249), 13, + ACTIONS(4987), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [148517] = 4, + anon_sym_PIPE_RBRACE, + [148429] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2168), 1, + anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4142), 1, + ACTIONS(5171), 1, + anon_sym_PIPE, + STATE(3992), 1, sym_comment, - ACTIONS(5249), 13, + ACTIONS(5173), 11, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148542] = 4, + anon_sym_PIPE_RBRACE, + [148458] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4143), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(7426), 1, + anon_sym_QMARK, + STATE(3993), 1, sym_comment, - ACTIONS(5183), 13, + STATE(4128), 1, + sym_formal_parameters, + STATE(4633), 1, + sym__call_signature, + STATE(5160), 1, + sym_type_annotation, + STATE(6358), 1, + sym_type_parameters, + ACTIONS(7410), 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_LT, - anon_sym_extends, - [148567] = 4, + anon_sym_PIPE_RBRACE, + [148499] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4144), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(7428), 1, + anon_sym_QMARK, + STATE(3994), 1, sym_comment, - ACTIONS(5130), 13, + STATE(4128), 1, + sym_formal_parameters, + STATE(4390), 1, + sym__call_signature, + STATE(5207), 1, + sym_type_annotation, + STATE(6358), 1, + sym_type_parameters, + ACTIONS(7414), 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_LT, - anon_sym_extends, - [148592] = 4, + anon_sym_PIPE_RBRACE, + [148540] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4145), 1, + ACTIONS(4471), 1, + anon_sym_PIPE, + STATE(3995), 1, sym_comment, - ACTIONS(5403), 13, + ACTIONS(5155), 12, sym__automatic_semicolon, - sym__function_signature_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_PIPE, - anon_sym_LT, + anon_sym_BQUOTE, anon_sym_extends, - [148617] = 4, + anon_sym_PIPE_RBRACE, + [148567] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4146), 1, + STATE(3996), 1, sym_comment, - ACTIONS(5130), 13, + ACTIONS(5065), 13, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -348693,289 +336244,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT, anon_sym_extends, - [148642] = 4, + [148592] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4147), 1, + ACTIONS(4430), 1, + anon_sym_PIPE, + STATE(3997), 1, sym_comment, - ACTIONS(5403), 13, + ACTIONS(4961), 12, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [148667] = 13, + anon_sym_PIPE_RBRACE, + [148619] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7247), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4148), 1, + ACTIONS(7430), 1, + anon_sym_QMARK, + STATE(3998), 1, sym_comment, - STATE(4978), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5388), 1, + STATE(4474), 1, + sym__call_signature, + STATE(5297), 1, sym_type_annotation, - STATE(6118), 1, - sym__initializer, - STATE(6489), 1, + STATE(6358), 1, sym_type_parameters, - STATE(6607), 1, - sym__call_signature, - ACTIONS(7423), 3, + ACTIONS(7422), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [148709] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4630), 1, - anon_sym_COMMA, - ACTIONS(4633), 1, anon_sym_RBRACE, - ACTIONS(7235), 1, - anon_sym_EQ, - STATE(4149), 1, - sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4636), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [148743] = 13, + [148660] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7247), 1, - anon_sym_LPAREN, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4150), 1, + ACTIONS(4452), 1, + anon_sym_PIPE, + STATE(3999), 1, sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(5398), 1, - sym_type_annotation, - STATE(5957), 1, - sym__initializer, - STATE(6489), 1, - sym_type_parameters, - STATE(6691), 1, - sym__call_signature, - ACTIONS(7425), 3, + ACTIONS(4979), 12, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148785] = 13, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7285), 1, - anon_sym_LPAREN, - STATE(4151), 1, - sym_comment, - STATE(4343), 1, - sym_formal_parameters, - STATE(4876), 1, - sym__call_signature, - STATE(4994), 1, - sym_type_annotation, - STATE(6227), 1, - sym__initializer, - STATE(6498), 1, - sym_type_parameters, - ACTIONS(7427), 3, - sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [148827] = 13, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148687] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4152), 1, + ACTIONS(4477), 1, + anon_sym_PIPE, + STATE(4000), 1, sym_comment, - STATE(4276), 1, - sym_formal_parameters, - STATE(5335), 1, - sym_type_annotation, - STATE(5966), 1, - sym__call_signature, - STATE(5967), 1, - sym__initializer, - STATE(6903), 1, - sym_type_parameters, - ACTIONS(7429), 3, + ACTIONS(5149), 12, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - [148869] = 13, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [148714] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4153), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4001), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(5358), 1, + STATE(5223), 1, sym_type_annotation, - STATE(5936), 1, + STATE(6035), 1, sym__initializer, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6703), 1, + STATE(6593), 1, sym__call_signature, - ACTIONS(7425), 3, + ACTIONS(7432), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148911] = 13, + [148756] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, - anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4154), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4002), 1, sym_comment, - STATE(4978), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(5130), 1, + STATE(4679), 1, + sym__call_signature, + STATE(5228), 1, sym_type_annotation, - STATE(5799), 1, + STATE(6067), 1, sym__initializer, - STATE(6489), 1, + STATE(6464), 1, sym_type_parameters, - STATE(6899), 1, - sym__call_signature, - ACTIONS(7431), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [148953] = 13, + [148798] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, - anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4155), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4003), 1, sym_comment, - STATE(4978), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(5410), 1, + STATE(4746), 1, + sym__call_signature, + STATE(5133), 1, sym_type_annotation, - STATE(5977), 1, + STATE(5987), 1, sym__initializer, - STATE(6489), 1, + STATE(6464), 1, sym_type_parameters, - STATE(6677), 1, - sym__call_signature, - ACTIONS(7423), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [148995] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4971), 1, - anon_sym_PIPE, - ACTIONS(7181), 1, - anon_sym_is, - STATE(4156), 1, - sym_comment, - ACTIONS(4973), 10, + ACTIONS(7436), 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, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [149023] = 6, + [148840] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4961), 1, + ACTIONS(4963), 1, anon_sym_PIPE, - ACTIONS(7433), 1, + ACTIONS(7438), 1, anon_sym_is, - STATE(4157), 1, + STATE(4004), 1, sym_comment, - ACTIONS(4963), 10, + ACTIONS(4965), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -348986,93 +336448,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [149051] = 13, + [148868] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7247), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4158), 1, + STATE(4005), 1, sym_comment, - STATE(4978), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5459), 1, + STATE(4503), 1, + sym__call_signature, + STATE(5153), 1, sym_type_annotation, - STATE(6009), 1, - sym__initializer, - STATE(6489), 1, + STATE(6358), 1, sym_type_parameters, - STATE(6666), 1, - sym__call_signature, - ACTIONS(7423), 3, + ACTIONS(7440), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149093] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(7087), 1, - anon_sym_STAR, - ACTIONS(7091), 1, - anon_sym_LBRACE, - ACTIONS(7253), 1, - sym_identifier, - ACTIONS(7255), 1, - anon_sym_type, - STATE(4159), 1, - sym_comment, - STATE(5642), 1, - sym_string, - STATE(5645), 1, - sym_import_require_clause, - STATE(6552), 1, - sym__import_identifier, - STATE(7092), 1, - sym_import_clause, - STATE(7515), 2, - sym_namespace_import, - sym_named_imports, - [149137] = 11, + anon_sym_PIPE_RBRACE, + [148906] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4160), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(4006), 1, sym_comment, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5186), 1, + STATE(4389), 1, sym__call_signature, - STATE(5187), 1, + STATE(5212), 1, sym_type_annotation, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(7435), 5, + ACTIONS(7442), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149175] = 14, + [148944] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -349081,84 +336511,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(7087), 1, + ACTIONS(7096), 1, anon_sym_STAR, - ACTIONS(7091), 1, + ACTIONS(7100), 1, anon_sym_LBRACE, - ACTIONS(7253), 1, + ACTIONS(7262), 1, sym_identifier, - ACTIONS(7255), 1, + ACTIONS(7264), 1, anon_sym_type, - STATE(4161), 1, + STATE(4007), 1, sym_comment, - STATE(5664), 1, + STATE(5536), 1, sym_import_require_clause, - STATE(5665), 1, + STATE(5537), 1, sym_string, - STATE(6552), 1, + STATE(6384), 1, sym__import_identifier, - STATE(6755), 1, + STATE(6899), 1, sym_import_clause, - STATE(7515), 2, + STATE(7332), 2, sym_namespace_import, sym_named_imports, - [149219] = 11, + [148988] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4162), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(4008), 1, sym_comment, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5270), 1, + STATE(5152), 1, sym__call_signature, - STATE(5274), 1, + STATE(5153), 1, sym_type_annotation, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(7437), 5, + ACTIONS(7440), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149257] = 13, + [149026] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4163), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4009), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(5217), 1, + STATE(5240), 1, sym_type_annotation, - STATE(6275), 1, + STATE(6114), 1, sym__initializer, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6534), 1, + STATE(6482), 1, sym__call_signature, - ACTIONS(7439), 3, + ACTIONS(7444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149299] = 14, + [149068] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -349167,148 +336597,168 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(7087), 1, + ACTIONS(7096), 1, anon_sym_STAR, - ACTIONS(7091), 1, + ACTIONS(7100), 1, anon_sym_LBRACE, - ACTIONS(7253), 1, + ACTIONS(7262), 1, sym_identifier, - ACTIONS(7255), 1, + ACTIONS(7264), 1, anon_sym_type, - STATE(4164), 1, + STATE(4010), 1, sym_comment, - STATE(5666), 1, + STATE(5483), 1, sym_string, - STATE(5667), 1, + STATE(5484), 1, sym_import_require_clause, - STATE(6552), 1, + STATE(6384), 1, sym__import_identifier, - STATE(6962), 1, + STATE(6779), 1, sym_import_clause, - STATE(7515), 2, + STATE(7332), 2, sym_namespace_import, sym_named_imports, - [149343] = 13, + [149112] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2061), 1, + anon_sym_PIPE, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4011), 1, + sym_comment, + ACTIONS(2063), 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, + [149138] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4634), 1, + anon_sym_COMMA, + ACTIONS(4637), 1, + anon_sym_RBRACE, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(4012), 1, + sym_comment, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(4640), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [149172] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7285), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(4165), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4013), 1, sym_comment, - STATE(4343), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(4946), 1, - sym__call_signature, - STATE(5374), 1, + STATE(5236), 1, sym_type_annotation, - STATE(5909), 1, + STATE(6100), 1, sym__initializer, - STATE(6498), 1, + STATE(6346), 1, sym_type_parameters, - ACTIONS(7441), 3, + STATE(6493), 1, + sym__call_signature, + ACTIONS(7444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149385] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(7071), 1, - anon_sym_LT, - ACTIONS(7081), 1, - anon_sym_DOT, - ACTIONS(7443), 1, - anon_sym_QMARK, - STATE(4013), 1, - sym_type_arguments, - STATE(4166), 1, - sym_comment, - STATE(7041), 1, - sym_type_annotation, - ACTIONS(4312), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [149421] = 11, + [149214] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4167), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4014), 1, sym_comment, - STATE(4276), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(4562), 1, - sym__call_signature, - STATE(5311), 1, + STATE(4876), 1, sym_type_annotation, - STATE(6903), 1, + STATE(5670), 1, + sym__initializer, + STATE(6346), 1, sym_type_parameters, - ACTIONS(7446), 5, + STATE(6438), 1, + sym__call_signature, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149459] = 13, + [149256] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7247), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4168), 1, + STATE(4015), 1, sym_comment, - STATE(4978), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5179), 1, + STATE(5294), 1, + sym__call_signature, + STATE(5295), 1, sym_type_annotation, - STATE(6307), 1, - sym__initializer, - STATE(6489), 1, + STATE(6358), 1, sym_type_parameters, - STATE(6517), 1, - sym__call_signature, - ACTIONS(7439), 3, + ACTIONS(7448), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149501] = 5, + anon_sym_PIPE_RBRACE, + [149294] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2061), 1, - anon_sym_PIPE, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4169), 1, + ACTIONS(4983), 1, + anon_sym_PIPE, + STATE(4016), 1, sym_comment, - ACTIONS(2063), 11, + ACTIONS(4985), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -349320,7 +336770,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extends, anon_sym_is, anon_sym_PIPE_RBRACE, - [149527] = 14, + [149320] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4017), 1, + sym_comment, + STATE(4815), 1, + sym_formal_parameters, + STATE(4966), 1, + sym_type_annotation, + STATE(5752), 1, + sym__initializer, + STATE(6346), 1, + sym_type_parameters, + STATE(6560), 1, + sym__call_signature, + ACTIONS(7446), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149362] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -349329,39 +336808,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(7087), 1, + ACTIONS(7096), 1, anon_sym_STAR, - ACTIONS(7091), 1, + ACTIONS(7100), 1, anon_sym_LBRACE, - ACTIONS(7253), 1, + ACTIONS(7262), 1, sym_identifier, - ACTIONS(7255), 1, + ACTIONS(7264), 1, anon_sym_type, - STATE(4170), 1, + STATE(4018), 1, sym_comment, - STATE(5654), 1, + STATE(5441), 1, sym_import_require_clause, - STATE(5655), 1, + STATE(5443), 1, sym_string, - STATE(6552), 1, + STATE(6384), 1, sym__import_identifier, - STATE(6715), 1, + STATE(6902), 1, sym_import_clause, - STATE(7515), 2, + STATE(7332), 2, sym_namespace_import, sym_named_imports, - [149571] = 6, + [149406] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(4019), 1, + sym_comment, + STATE(4128), 1, + sym_formal_parameters, + STATE(4578), 1, + sym__call_signature, + STATE(5295), 1, + sym_type_annotation, + STATE(6358), 1, + sym_type_parameters, + ACTIONS(7448), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149444] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4991), 1, + ACTIONS(4973), 1, anon_sym_PIPE, - ACTIONS(7181), 1, + ACTIONS(7188), 1, anon_sym_is, - STATE(4171), 1, + STATE(4020), 1, sym_comment, - ACTIONS(4993), 10, + ACTIONS(4975), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -349372,275 +336878,305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [149599] = 13, + [149472] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7285), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(4172), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4021), 1, sym_comment, - STATE(4343), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(4921), 1, - sym__call_signature, - STATE(5335), 1, + STATE(5306), 1, sym_type_annotation, - STATE(5929), 1, + STATE(6145), 1, sym__initializer, - STATE(6498), 1, + STATE(6346), 1, sym_type_parameters, - ACTIONS(7429), 3, + STATE(6470), 1, + sym__call_signature, + ACTIONS(7432), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149641] = 9, + [149514] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4630), 1, - anon_sym_COMMA, - ACTIONS(4646), 1, - anon_sym_RBRACE, - ACTIONS(7235), 1, - anon_sym_EQ, - STATE(4173), 1, - sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4636), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4297), 1, anon_sym_COLON, + ACTIONS(7084), 1, anon_sym_LT, + ACTIONS(7090), 1, + anon_sym_DOT, + ACTIONS(7450), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [149675] = 13, + STATE(3823), 1, + sym_type_arguments, + STATE(4022), 1, + sym_comment, + STATE(6856), 1, + sym_type_annotation, + ACTIONS(4314), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [149550] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7247), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4174), 1, + STATE(4023), 1, sym_comment, - STATE(4978), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5232), 1, + STATE(4865), 1, sym_type_annotation, - STATE(5845), 1, - sym__initializer, - STATE(6489), 1, - sym_type_parameters, - STATE(6867), 1, + STATE(4866), 1, sym__call_signature, - ACTIONS(7448), 3, + STATE(6358), 1, + sym_type_parameters, + ACTIONS(7453), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [149717] = 13, + anon_sym_PIPE_RBRACE, + [149588] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4175), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4024), 1, sym_comment, - STATE(4276), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(5113), 1, + STATE(4990), 1, sym_type_annotation, - STATE(5750), 1, - sym__call_signature, - STATE(5753), 1, + STATE(5773), 1, sym__initializer, - STATE(6903), 1, + STATE(6346), 1, sym_type_parameters, - ACTIONS(7450), 3, + STATE(6624), 1, + sym__call_signature, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149759] = 13, + [149630] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4176), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4025), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(5279), 1, + STATE(5110), 1, sym_type_annotation, - STATE(6155), 1, + STATE(5971), 1, sym__initializer, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6590), 1, + STATE(6732), 1, sym__call_signature, - ACTIONS(7423), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149801] = 11, + [149672] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4177), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(4026), 1, sym_comment, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5254), 1, - sym_type_annotation, - STATE(5257), 1, + STATE(4574), 1, sym__call_signature, - STATE(6903), 1, + STATE(4865), 1, + sym_type_annotation, + STATE(6358), 1, sym_type_parameters, - ACTIONS(7452), 5, + ACTIONS(7453), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149839] = 11, + [149710] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7249), 1, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4027), 1, + sym_comment, + STATE(4303), 1, + sym_formal_parameters, + STATE(4768), 1, + sym__call_signature, + STATE(5172), 1, + sym_type_annotation, + STATE(6017), 1, + sym__initializer, + STATE(6464), 1, + sym_type_parameters, + ACTIONS(7455), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [149752] = 11, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4178), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(4028), 1, sym_comment, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(4545), 1, + STATE(4627), 1, sym__call_signature, - STATE(5227), 1, + STATE(5192), 1, sym_type_annotation, - STATE(6903), 1, + STATE(6358), 1, sym_type_parameters, - ACTIONS(7454), 5, + ACTIONS(7457), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [149877] = 13, + [149790] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, - anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4179), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(4029), 1, sym_comment, - STATE(4978), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5260), 1, + STATE(5172), 1, sym_type_annotation, - STATE(6231), 1, + STATE(6024), 1, + sym__call_signature, + STATE(6026), 1, sym__initializer, - STATE(6489), 1, + STATE(6358), 1, sym_type_parameters, - STATE(6545), 1, - sym__call_signature, - ACTIONS(7439), 3, + ACTIONS(7455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [149919] = 11, + [149832] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7249), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4180), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4030), 1, sym_comment, - STATE(4276), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(5311), 1, - sym_type_annotation, - STATE(5314), 1, + STATE(4701), 1, sym__call_signature, - STATE(6903), 1, + STATE(5141), 1, + sym_type_annotation, + STATE(5986), 1, + sym__initializer, + STATE(6464), 1, sym_type_parameters, - ACTIONS(7446), 5, + ACTIONS(7459), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [149957] = 9, + [149874] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4630), 1, + ACTIONS(4634), 1, anon_sym_COMMA, - ACTIONS(4643), 1, + ACTIONS(4647), 1, anon_sym_RBRACE, - ACTIONS(7235), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4181), 1, + STATE(4031), 1, sym_comment, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - STATE(6287), 1, + STATE(5839), 1, aux_sym_object_repeat1, - ACTIONS(4636), 7, + ACTIONS(4640), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -349648,61 +337184,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [149991] = 13, + [149908] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7285), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(4182), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4032), 1, sym_comment, - STATE(4343), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(4961), 1, - sym__call_signature, - STATE(5113), 1, + STATE(5253), 1, sym_type_annotation, - STATE(5790), 1, + STATE(6060), 1, sym__initializer, - STATE(6498), 1, + STATE(6346), 1, sym_type_parameters, - ACTIONS(7450), 3, + STATE(6551), 1, + sym__call_signature, + ACTIONS(7432), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150033] = 9, + [149950] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4630), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(4033), 1, + sym_comment, + STATE(4128), 1, + sym_formal_parameters, + STATE(5192), 1, + sym_type_annotation, + STATE(5193), 1, + sym__call_signature, + STATE(6358), 1, + sym_type_parameters, + ACTIONS(7457), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4640), 1, anon_sym_RBRACE, - ACTIONS(7235), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [149988] = 13, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(4183), 1, - sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4636), 7, - sym__automatic_semicolon, + ACTIONS(7250), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(7252), 1, anon_sym_COLON, + ACTIONS(7254), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [150067] = 14, + STATE(4034), 1, + sym_comment, + STATE(4815), 1, + sym_formal_parameters, + STATE(5320), 1, + sym_type_annotation, + STATE(6198), 1, + sym__initializer, + STATE(6346), 1, + sym_type_parameters, + STATE(6350), 1, + sym__call_signature, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [150030] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -349711,258 +337278,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(7087), 1, + ACTIONS(7096), 1, anon_sym_STAR, - ACTIONS(7091), 1, + ACTIONS(7100), 1, anon_sym_LBRACE, - ACTIONS(7253), 1, + ACTIONS(7262), 1, sym_identifier, - ACTIONS(7255), 1, + ACTIONS(7264), 1, anon_sym_type, - STATE(4184), 1, + STATE(4035), 1, sym_comment, - STATE(5561), 1, + STATE(5508), 1, sym_import_require_clause, - STATE(5563), 1, + STATE(5509), 1, sym_string, - STATE(6552), 1, + STATE(6384), 1, sym__import_identifier, - STATE(7082), 1, + STATE(6572), 1, sym_import_clause, - STATE(7515), 2, + STATE(7332), 2, sym_namespace_import, sym_named_imports, - [150111] = 13, + [150074] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7247), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4185), 1, + STATE(4036), 1, sym_comment, - STATE(4978), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5363), 1, + STATE(5209), 1, + sym__call_signature, + STATE(5212), 1, sym_type_annotation, - STATE(6157), 1, - sym__initializer, - STATE(6489), 1, + STATE(6358), 1, sym_type_parameters, - STATE(6588), 1, - sym__call_signature, - ACTIONS(7425), 3, + ACTIONS(7442), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [150153] = 13, + anon_sym_PIPE_RBRACE, + [150112] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4186), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4037), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(5236), 1, + STATE(5284), 1, sym_type_annotation, - STATE(6244), 1, + STATE(6202), 1, sym__initializer, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6543), 1, + STATE(6406), 1, sym__call_signature, - ACTIONS(7439), 3, + ACTIONS(7444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150195] = 11, + [150154] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4187), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4038), 1, sym_comment, - STATE(4276), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(4601), 1, - sym__call_signature, - STATE(5254), 1, + STATE(5195), 1, sym_type_annotation, - STATE(6903), 1, + STATE(6046), 1, + sym__initializer, + STATE(6346), 1, sym_type_parameters, - ACTIONS(7452), 5, + STATE(6713), 1, + sym__call_signature, + ACTIONS(7461), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150233] = 13, + [150196] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7285), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(4188), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4039), 1, sym_comment, - STATE(4343), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(4817), 1, - sym__call_signature, - STATE(5317), 1, + STATE(5329), 1, sym_type_annotation, - STATE(6172), 1, + STATE(6193), 1, sym__initializer, - STATE(6498), 1, + STATE(6346), 1, sym_type_parameters, - ACTIONS(7456), 3, + STATE(6353), 1, + sym__call_signature, + ACTIONS(7432), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150275] = 10, + [150238] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7235), 1, - anon_sym_EQ, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - STATE(4189), 1, - sym_comment, - STATE(4705), 1, - sym_formal_parameters, - STATE(7087), 1, - sym_type_parameters, - ACTIONS(4905), 2, + ACTIONS(4634), 1, anon_sym_COMMA, + ACTIONS(4644), 1, anon_sym_RBRACE, - ACTIONS(4636), 5, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(4040), 1, + sym_comment, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(4640), 7, sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [150311] = 7, + [150272] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7211), 1, - anon_sym_LT, - ACTIONS(7383), 1, - anon_sym_DOT, - STATE(4190), 1, + ACTIONS(4634), 1, + anon_sym_COMMA, + ACTIONS(4653), 1, + anon_sym_RBRACE, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(4041), 1, sym_comment, - STATE(4375), 1, - sym_type_arguments, - ACTIONS(4312), 9, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(4640), 7, 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_AMP, - anon_sym_PIPE, - anon_sym_extends, - [150341] = 13, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [150306] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, - anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4191), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(4042), 1, sym_comment, - STATE(4978), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5237), 1, + STATE(5228), 1, sym_type_annotation, - STATE(5854), 1, + STATE(6091), 1, + sym__call_signature, + STATE(6092), 1, sym__initializer, - STATE(6489), 1, + STATE(6358), 1, sym_type_parameters, - STATE(6745), 1, - sym__call_signature, - ACTIONS(7425), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150383] = 5, + [150348] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4979), 1, - anon_sym_PIPE, - STATE(4192), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4043), 1, sym_comment, - ACTIONS(4981), 11, + STATE(4815), 1, + sym_formal_parameters, + STATE(5275), 1, + sym_type_annotation, + STATE(6161), 1, + sym__initializer, + STATE(6346), 1, + sym_type_parameters, + STATE(6421), 1, + sym__call_signature, + ACTIONS(7444), 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, - anon_sym_extends, - anon_sym_is, - anon_sym_PIPE_RBRACE, - [150409] = 9, + [150390] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4630), 1, + ACTIONS(4634), 1, anon_sym_COMMA, - ACTIONS(4649), 1, + ACTIONS(4650), 1, anon_sym_RBRACE, - ACTIONS(7235), 1, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(4193), 1, + STATE(4044), 1, sym_comment, - STATE(6276), 1, + STATE(5732), 1, aux_sym_object_repeat1, - STATE(6281), 1, + STATE(5734), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4636), 7, + ACTIONS(4640), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -349970,155 +337546,184 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [150443] = 11, + [150424] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, + ACTIONS(7198), 1, anon_sym_LT, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4194), 1, + ACTIONS(7382), 1, + anon_sym_DOT, + STATE(4045), 1, sym_comment, - STATE(4276), 1, - sym_formal_parameters, - STATE(4577), 1, - sym__call_signature, - STATE(5187), 1, - sym_type_annotation, - STATE(6903), 1, - sym_type_parameters, - ACTIONS(7435), 5, + STATE(4210), 1, + sym_type_arguments, + ACTIONS(4314), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150481] = 13, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [150454] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4195), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4046), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(5123), 1, + STATE(5328), 1, sym_type_annotation, - STATE(6377), 1, + STATE(6224), 1, sym__initializer, - STATE(6462), 1, + STATE(6333), 1, sym__call_signature, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - ACTIONS(7439), 3, + ACTIONS(7432), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150523] = 11, + [150496] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4196), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4047), 1, sym_comment, - STATE(4276), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(5227), 1, + STATE(5124), 1, sym_type_annotation, - STATE(5229), 1, - sym__call_signature, - STATE(6903), 1, + STATE(5981), 1, + sym__initializer, + STATE(6346), 1, sym_type_parameters, - ACTIONS(7454), 5, + STATE(6723), 1, + sym__call_signature, + ACTIONS(7463), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [150561] = 11, + [150538] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4197), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(4048), 1, sym_comment, - STATE(4276), 1, + STATE(4626), 1, sym_formal_parameters, - STATE(4554), 1, - sym__call_signature, - STATE(5274), 1, - sym_type_annotation, - STATE(6903), 1, + STATE(6826), 1, sym_type_parameters, - ACTIONS(7437), 5, - sym__automatic_semicolon, + ACTIONS(4907), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(4640), 5, + sym__automatic_semicolon, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [150599] = 13, + [150574] = 13, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7247), 1, - anon_sym_LPAREN, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4198), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4049), 1, sym_comment, - STATE(4978), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(5168), 1, + STATE(4759), 1, + sym__call_signature, + STATE(5314), 1, sym_type_annotation, - STATE(6203), 1, + STATE(6181), 1, sym__initializer, - STATE(6489), 1, + STATE(6464), 1, sym_type_parameters, - STATE(6505), 1, - sym__call_signature, - ACTIONS(7439), 3, + ACTIONS(7465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [150641] = 5, + [150616] = 14, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(7096), 1, + anon_sym_STAR, + ACTIONS(7100), 1, + anon_sym_LBRACE, + ACTIONS(7262), 1, + sym_identifier, + ACTIONS(7264), 1, + anon_sym_type, + STATE(4050), 1, + sym_comment, + STATE(5544), 1, + sym_import_require_clause, + STATE(5545), 1, + sym_string, + STATE(6384), 1, + sym__import_identifier, + STATE(6563), 1, + sym_import_clause, + STATE(7332), 2, + sym_namespace_import, + sym_named_imports, + [150660] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5282), 1, + ACTIONS(4995), 1, anon_sym_PIPE, - STATE(4199), 1, + ACTIONS(7188), 1, + anon_sym_is, + STATE(4051), 1, sym_comment, - ACTIONS(5284), 10, + ACTIONS(4997), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350129,16 +337734,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [150666] = 5, + [150688] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3435), 1, + ACTIONS(5205), 1, anon_sym_PIPE, - STATE(4200), 1, + STATE(4052), 1, sym_comment, - ACTIONS(3645), 10, + ACTIONS(5207), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350149,57 +337754,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [150691] = 5, + [150713] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5319), 1, - anon_sym_PIPE, - STATE(4201), 1, + STATE(4053), 1, sym_comment, - ACTIONS(5321), 10, + ACTIONS(5201), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [150716] = 6, + [150736] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5293), 1, - anon_sym_PIPE, - ACTIONS(7458), 1, - anon_sym_LBRACK, - STATE(4202), 1, + ACTIONS(7467), 1, + anon_sym_DOT, + ACTIONS(7469), 1, + anon_sym_QMARK_DOT, + STATE(4054), 1, sym_comment, - ACTIONS(5295), 9, + ACTIONS(5338), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [150743] = 5, + [150763] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5243), 1, + ACTIONS(5296), 1, anon_sym_PIPE, - STATE(4203), 1, + STATE(4055), 1, sym_comment, - ACTIONS(5245), 10, + ACTIONS(5298), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350210,18 +337814,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [150768] = 6, + [150788] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5297), 1, + ACTIONS(5137), 1, anon_sym_PIPE, - ACTIONS(7460), 1, - anon_sym_extends, - STATE(4204), 1, + STATE(4056), 1, sym_comment, - ACTIONS(5299), 9, + ACTIONS(5139), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350230,39 +337832,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [150795] = 7, + [150813] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5052), 1, + ACTIONS(5119), 1, anon_sym_PIPE, - ACTIONS(7458), 1, - anon_sym_LBRACK, - STATE(4205), 1, + STATE(4057), 1, sym_comment, - ACTIONS(5054), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(5305), 7, + ACTIONS(5121), 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, - [150824] = 5, + [150838] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5189), 1, + ACTIONS(5181), 1, anon_sym_PIPE, - STATE(4206), 1, + STATE(4058), 1, sym_comment, - ACTIONS(5191), 10, + ACTIONS(5183), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350273,16 +337874,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [150849] = 5, + [150863] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3421), 1, + ACTIONS(5256), 1, anon_sym_PIPE, - STATE(4207), 1, + STATE(4059), 1, sym_comment, - ACTIONS(3603), 10, + ACTIONS(5258), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350293,20 +337894,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [150874] = 7, + [150888] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7464), 1, + ACTIONS(3291), 1, anon_sym_PIPE, - ACTIONS(7466), 1, - anon_sym_extends, - STATE(4208), 1, + STATE(4060), 1, sym_comment, - ACTIONS(5309), 8, + ACTIONS(3507), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350314,36 +337911,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [150903] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4209), 1, - sym_comment, - ACTIONS(4965), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [150926] = 5, + anon_sym_PIPE_RBRACE, + [150913] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5315), 1, + ACTIONS(5123), 1, anon_sym_PIPE, - STATE(4210), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + STATE(4061), 1, sym_comment, - ACTIONS(5317), 10, + ACTIONS(5125), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350351,19 +337933,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [150951] = 5, + [150940] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5139), 1, + ACTIONS(5127), 1, anon_sym_PIPE, - STATE(4211), 1, + STATE(4062), 1, sym_comment, - ACTIONS(5137), 10, + ACTIONS(5129), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350374,18 +337955,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [150976] = 6, + [150965] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5337), 1, + ACTIONS(5157), 1, anon_sym_PIPE, - ACTIONS(7462), 1, - anon_sym_AMP, - STATE(4212), 1, + STATE(4063), 1, sym_comment, - ACTIONS(5339), 9, + ACTIONS(5159), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350393,61 +337972,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151003] = 7, + [150990] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7464), 1, - anon_sym_PIPE, - ACTIONS(7466), 1, - anon_sym_extends, - STATE(4213), 1, + STATE(4064), 1, sym_comment, - ACTIONS(5147), 8, + ACTIONS(6600), 11, sym__automatic_semicolon, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [151032] = 6, + [151013] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5052), 1, + ACTIONS(5185), 1, anon_sym_PIPE, - ACTIONS(7458), 1, - anon_sym_LBRACK, - STATE(4214), 1, + STATE(4065), 1, sym_comment, - ACTIONS(5054), 9, + ACTIONS(5187), 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, - [151059] = 5, + [151038] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5341), 1, + ACTIONS(5163), 1, anon_sym_PIPE, - STATE(4215), 1, + STATE(4066), 1, sym_comment, - ACTIONS(5343), 10, + ACTIONS(5165), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350458,16 +338034,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151084] = 5, + [151063] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3437), 1, + ACTIONS(5354), 1, anon_sym_PIPE, - STATE(4216), 1, + STATE(4067), 1, sym_comment, - ACTIONS(3625), 10, + ACTIONS(5356), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350478,37 +338054,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151109] = 6, + [151088] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7468), 1, - anon_sym_DOT, - ACTIONS(7470), 1, - anon_sym_QMARK_DOT, - STATE(4217), 1, + ACTIONS(5013), 1, + anon_sym_PIPE, + ACTIONS(7473), 1, + anon_sym_LBRACK, + STATE(4068), 1, sym_comment, - ACTIONS(5383), 9, + ACTIONS(5015), 9, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [151136] = 5, + anon_sym_PIPE_RBRACE, + [151115] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5205), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7475), 1, anon_sym_PIPE, - STATE(4218), 1, + ACTIONS(7477), 1, + anon_sym_extends, + STATE(4069), 1, sym_comment, - ACTIONS(5207), 10, + ACTIONS(5035), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350516,19 +338096,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [151161] = 5, + [151144] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5239), 1, + ACTIONS(3293), 1, anon_sym_PIPE, - STATE(4219), 1, + STATE(4070), 1, sym_comment, - ACTIONS(5241), 10, + ACTIONS(3517), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350539,16 +338117,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151186] = 5, + [151169] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5231), 1, + ACTIONS(5189), 1, anon_sym_PIPE, - STATE(4220), 1, + STATE(4071), 1, sym_comment, - ACTIONS(5233), 10, + ACTIONS(5191), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350559,39 +338137,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151211] = 4, + [151194] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4221), 1, + ACTIONS(4963), 1, + anon_sym_PIPE, + STATE(4072), 1, sym_comment, - ACTIONS(6519), 11, + ACTIONS(4965), 10, sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [151234] = 7, + [151219] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7464), 1, + ACTIONS(5167), 1, anon_sym_PIPE, - ACTIONS(7466), 1, - anon_sym_extends, - STATE(4222), 1, + STATE(4073), 1, sym_comment, - ACTIONS(5335), 8, + ACTIONS(5169), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350599,17 +338174,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [151263] = 5, + [151244] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5219), 1, + ACTIONS(5373), 1, anon_sym_PIPE, - STATE(4223), 1, + STATE(4074), 1, sym_comment, - ACTIONS(5221), 10, + ACTIONS(5375), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350620,56 +338197,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151288] = 7, + [151269] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7464), 1, - anon_sym_PIPE, - ACTIONS(7466), 1, - anon_sym_extends, - STATE(4224), 1, + STATE(4075), 1, sym_comment, - ACTIONS(5351), 8, + ACTIONS(4979), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [151317] = 5, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [151292] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5373), 1, - anon_sym_PIPE, - STATE(4225), 1, + STATE(4076), 1, sym_comment, - ACTIONS(5375), 10, + ACTIONS(5219), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [151342] = 4, + [151315] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4226), 1, + STATE(4077), 1, sym_comment, - ACTIONS(4975), 11, + ACTIONS(5211), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -350681,16 +338254,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [151365] = 5, + [151338] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5213), 1, + ACTIONS(3267), 1, anon_sym_PIPE, - STATE(4227), 1, + STATE(4078), 1, sym_comment, - ACTIONS(5215), 10, + ACTIONS(3581), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350701,20 +338274,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151390] = 7, + [151363] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, + ACTIONS(7471), 1, anon_sym_AMP, - ACTIONS(7464), 1, + ACTIONS(7475), 1, anon_sym_PIPE, - ACTIONS(7466), 1, + ACTIONS(7477), 1, anon_sym_extends, - STATE(4228), 1, + STATE(4079), 1, sym_comment, - ACTIONS(5331), 8, + ACTIONS(5352), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350723,16 +338296,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [151419] = 5, + [151392] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3433), 1, + ACTIONS(5213), 1, anon_sym_PIPE, - STATE(4229), 1, + STATE(4080), 1, sym_comment, - ACTIONS(3547), 10, + ACTIONS(5215), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350743,20 +338316,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151444] = 7, + [151417] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, + ACTIONS(7471), 1, anon_sym_AMP, - ACTIONS(7464), 1, + ACTIONS(7475), 1, anon_sym_PIPE, - ACTIONS(7466), 1, + ACTIONS(7477), 1, anon_sym_extends, - STATE(4230), 1, + STATE(4081), 1, sym_comment, - ACTIONS(5021), 8, + ACTIONS(5147), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350765,16 +338338,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [151473] = 5, + [151446] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5361), 1, + ACTIONS(5264), 1, anon_sym_PIPE, - STATE(4231), 1, + ACTIONS(7479), 1, + anon_sym_extends, + STATE(4082), 1, sym_comment, - ACTIONS(5363), 10, + ACTIONS(5266), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350783,18 +338358,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [151498] = 5, + [151473] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4961), 1, + ACTIONS(5332), 1, anon_sym_PIPE, - STATE(4232), 1, + STATE(4083), 1, sym_comment, - ACTIONS(4963), 10, + ACTIONS(5334), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350805,94 +338379,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151523] = 5, + [151498] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5355), 1, - anon_sym_PIPE, - STATE(4233), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(4084), 1, sym_comment, - ACTIONS(5074), 10, + STATE(4626), 1, + sym_formal_parameters, + STATE(6826), 1, + sym_type_parameters, + ACTIONS(4640), 7, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [151548] = 5, + [151529] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5395), 1, + ACTIONS(5278), 1, anon_sym_PIPE, - STATE(4234), 1, + ACTIONS(7473), 1, + anon_sym_LBRACK, + STATE(4085), 1, sym_comment, - ACTIONS(5397), 10, + ACTIONS(5280), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151573] = 4, + [151556] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4235), 1, + ACTIONS(5304), 1, + anon_sym_PIPE, + STATE(4086), 1, sym_comment, - ACTIONS(5261), 11, + ACTIONS(5306), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [151596] = 4, + anon_sym_PIPE_RBRACE, + [151581] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4236), 1, + ACTIONS(5278), 1, + anon_sym_PIPE, + STATE(4087), 1, sym_comment, - ACTIONS(5237), 11, + ACTIONS(5280), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [151619] = 5, + anon_sym_PIPE_RBRACE, + [151606] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5377), 1, + ACTIONS(5141), 1, anon_sym_PIPE, - STATE(4237), 1, + STATE(4088), 1, sym_comment, - ACTIONS(5379), 10, + ACTIONS(5143), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350903,35 +338483,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151644] = 4, + [151631] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4238), 1, - sym_comment, - ACTIONS(5198), 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, + ACTIONS(7471), 1, anon_sym_AMP, + ACTIONS(7475), 1, anon_sym_PIPE, + ACTIONS(7477), 1, anon_sym_extends, - [151667] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5227), 1, - anon_sym_PIPE, - STATE(4239), 1, + STATE(4089), 1, sym_comment, - ACTIONS(5229), 10, + ACTIONS(5284), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -350939,106 +338504,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [151692] = 4, + [151660] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4240), 1, + ACTIONS(5366), 1, + anon_sym_PIPE, + STATE(4090), 1, sym_comment, - ACTIONS(6624), 11, + ACTIONS(5368), 10, sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [151715] = 4, + [151685] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4241), 1, + ACTIONS(5244), 1, + anon_sym_PIPE, + STATE(4091), 1, sym_comment, - ACTIONS(4967), 11, + ACTIONS(5246), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [151738] = 14, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7472), 1, - sym_identifier, - ACTIONS(7474), 1, - anon_sym_type, - ACTIONS(7476), 1, - anon_sym_COMMA, - ACTIONS(7478), 1, - anon_sym_RBRACE, - ACTIONS(7480), 1, - anon_sym_typeof, - STATE(4242), 1, - sym_comment, - STATE(5677), 1, - sym_string, - STATE(6243), 1, - sym_import_specifier, - STATE(6721), 1, - sym__import_identifier, - STATE(7361), 1, - sym__module_export_name, - [151781] = 5, + anon_sym_PIPE_RBRACE, + [151710] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2276), 1, - anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4243), 1, + ACTIONS(3289), 1, + anon_sym_PIPE, + STATE(4092), 1, sym_comment, - ACTIONS(5039), 10, + ACTIONS(3641), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [151806] = 5, + anon_sym_PIPE_RBRACE, + [151735] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5007), 1, + ACTIONS(5195), 1, anon_sym_PIPE, - STATE(4244), 1, + STATE(4093), 1, sym_comment, - ACTIONS(5009), 10, + ACTIONS(5197), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -351049,36 +338585,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151831] = 5, + [151760] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2206), 1, - anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4245), 1, + ACTIONS(3283), 1, + anon_sym_PIPE, + STATE(4094), 1, sym_comment, - ACTIONS(5039), 10, + ACTIONS(3657), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, anon_sym_extends, - [151856] = 5, + anon_sym_PIPE_RBRACE, + [151785] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5329), 1, + ACTIONS(5324), 1, anon_sym_PIPE, - STATE(4246), 1, + STATE(4095), 1, sym_comment, - ACTIONS(5331), 10, + ACTIONS(5326), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -351089,16 +338625,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151881] = 5, + [151810] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5345), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7475), 1, anon_sym_PIPE, - STATE(4247), 1, + ACTIONS(7477), 1, + anon_sym_extends, + STATE(4096), 1, sym_comment, - ACTIONS(5347), 10, + ACTIONS(5165), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -351106,19 +338646,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [151906] = 5, + [151839] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4991), 1, + ACTIONS(5308), 1, anon_sym_PIPE, - STATE(4248), 1, + STATE(4097), 1, sym_comment, - ACTIONS(4993), 10, + ACTIONS(5310), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -351129,16 +338667,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151931] = 5, + [151864] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4999), 1, + ACTIONS(5316), 1, anon_sym_PIPE, - STATE(4249), 1, + STATE(4098), 1, sym_comment, - ACTIONS(5001), 10, + ACTIONS(5318), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -351149,74 +338687,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [151956] = 5, + [151889] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5011), 1, + ACTIONS(5278), 1, anon_sym_PIPE, - STATE(4250), 1, + ACTIONS(7473), 1, + anon_sym_LBRACK, + STATE(4099), 1, sym_comment, - ACTIONS(5013), 10, + ACTIONS(5280), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(5276), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [151981] = 5, + [151918] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2174), 1, + anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3419), 1, - anon_sym_PIPE, - STATE(4251), 1, + STATE(4100), 1, sym_comment, - ACTIONS(3587), 10, + ACTIONS(5173), 10, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [152006] = 5, + [151943] = 5, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2168), 1, + anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5311), 1, - anon_sym_PIPE, - STATE(4252), 1, + STATE(4101), 1, sym_comment, - ACTIONS(5313), 10, + ACTIONS(5173), 10, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [152031] = 4, + [151968] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4253), 1, + STATE(4102), 1, sym_comment, - ACTIONS(4636), 11, + ACTIONS(6639), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -351228,80 +338768,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [152054] = 7, + [151991] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7464), 1, - anon_sym_PIPE, - ACTIONS(7466), 1, - anon_sym_extends, - STATE(4254), 1, + ACTIONS(7198), 1, + anon_sym_LT, + STATE(4103), 1, sym_comment, - ACTIONS(5371), 8, + STATE(4216), 1, + sym_type_arguments, + ACTIONS(4965), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [152083] = 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [152018] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5167), 1, - anon_sym_PIPE, - STATE(4255), 1, + STATE(4104), 1, sym_comment, - ACTIONS(5169), 10, + ACTIONS(4640), 11, sym__automatic_semicolon, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [152108] = 5, + [152041] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4971), 1, - anon_sym_PIPE, - STATE(4256), 1, + STATE(4105), 1, sym_comment, - ACTIONS(4973), 10, + ACTIONS(4987), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [152133] = 6, + [152064] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5223), 1, + ACTIONS(4973), 1, anon_sym_PIPE, - ACTIONS(7462), 1, - anon_sym_AMP, - STATE(4257), 1, + STATE(4106), 1, sym_comment, - ACTIONS(5225), 9, + ACTIONS(4975), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -351309,38 +338844,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [152160] = 5, + [152089] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5145), 1, - anon_sym_PIPE, - STATE(4258), 1, + STATE(4107), 1, sym_comment, - ACTIONS(5147), 10, + ACTIONS(4961), 11, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [152185] = 5, + [152112] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5263), 1, + ACTIONS(5320), 1, anon_sym_PIPE, - STATE(4259), 1, + STATE(4108), 1, sym_comment, - ACTIONS(5265), 10, + ACTIONS(5322), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -351351,16 +338886,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [152210] = 5, + [152137] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5052), 1, + ACTIONS(5270), 1, anon_sym_PIPE, - STATE(4260), 1, + STATE(4109), 1, sym_comment, - ACTIONS(5054), 10, + ACTIONS(5272), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -351371,51 +338906,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [152235] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - STATE(4261), 1, - sym_comment, - STATE(4705), 1, - sym_formal_parameters, - STATE(7087), 1, - sym_type_parameters, - ACTIONS(4636), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [152266] = 6, + [152162] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7211), 1, - anon_sym_LT, - STATE(4262), 1, + ACTIONS(4995), 1, + anon_sym_PIPE, + STATE(4110), 1, sym_comment, - STATE(4381), 1, - sym_type_arguments, - ACTIONS(4963), 9, + ACTIONS(4997), 10, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [152293] = 13, + anon_sym_PIPE_RBRACE, + [152187] = 14, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -351424,517 +338935,330 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(7472), 1, + ACTIONS(7481), 1, sym_identifier, - ACTIONS(7474), 1, + ACTIONS(7483), 1, anon_sym_type, - ACTIONS(7480), 1, - anon_sym_typeof, - ACTIONS(7482), 1, + ACTIONS(7485), 1, + anon_sym_COMMA, + ACTIONS(7487), 1, anon_sym_RBRACE, - STATE(4263), 1, + ACTIONS(7489), 1, + anon_sym_typeof, + STATE(4111), 1, sym_comment, - STATE(5677), 1, + STATE(5555), 1, sym_string, - STATE(6721), 1, - sym__import_identifier, - STATE(6954), 1, + STATE(5757), 1, sym_import_specifier, - STATE(7361), 1, + STATE(6566), 1, + sym__import_identifier, + STATE(7178), 1, sym__module_export_name, - [152333] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7484), 1, - sym_identifier, - ACTIONS(7486), 1, - anon_sym_LBRACE, - ACTIONS(7488), 1, - anon_sym_extends, - ACTIONS(7490), 1, - anon_sym_implements, - STATE(3150), 1, - sym_class_body, - STATE(4264), 1, - sym_comment, - STATE(4597), 1, - sym_type_parameters, - STATE(6325), 1, - sym_extends_clause, - STATE(6614), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [152373] = 7, + [152230] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4242), 1, - anon_sym_LPAREN, - ACTIONS(7494), 1, - anon_sym_DOT, - STATE(4265), 1, + ACTIONS(5260), 1, + anon_sym_PIPE, + STATE(4112), 1, sym_comment, - STATE(4504), 1, - sym_arguments, - ACTIONS(7492), 7, + ACTIONS(5262), 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, - [152401] = 6, + [152255] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7235), 1, - anon_sym_EQ, - STATE(4266), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7475), 1, + anon_sym_PIPE, + ACTIONS(7477), 1, + anon_sym_extends, + STATE(4113), 1, sym_comment, - ACTIONS(4905), 2, + ACTIONS(5025), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4636), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [152427] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, + [152284] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7486), 1, - anon_sym_LBRACE, - ACTIONS(7488), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7475), 1, + anon_sym_PIPE, + ACTIONS(7477), 1, anon_sym_extends, - ACTIONS(7490), 1, - anon_sym_implements, - ACTIONS(7496), 1, - sym_identifier, - STATE(3150), 1, - sym_class_body, - STATE(4267), 1, + STATE(4114), 1, sym_comment, - STATE(4597), 1, - sym_type_parameters, - STATE(6325), 1, - sym_extends_clause, - STATE(6614), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [152467] = 4, + ACTIONS(5169), 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, + [152313] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4268), 1, + ACTIONS(5312), 1, + anon_sym_PIPE, + ACTIONS(7471), 1, + anon_sym_AMP, + STATE(4115), 1, sym_comment, - ACTIONS(2063), 10, + ACTIONS(5314), 9, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - anon_sym_is, - [152489] = 12, + anon_sym_PIPE_RBRACE, + [152340] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7498), 1, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7491), 1, sym_identifier, - ACTIONS(7502), 1, - anon_sym_COMMA, - ACTIONS(7504), 1, - anon_sym_RBRACE, - STATE(4269), 1, + ACTIONS(7493), 1, + anon_sym_LBRACE, + ACTIONS(7495), 1, + anon_sym_extends, + ACTIONS(7497), 1, + anon_sym_implements, + STATE(3108), 1, + sym_class_body, + STATE(4116), 1, sym_comment, - STATE(5677), 1, - sym_string, - STATE(6290), 1, - sym__module_export_name, - STATE(6291), 1, - sym_export_specifier, - ACTIONS(7500), 2, - anon_sym_type, - anon_sym_typeof, - [152527] = 13, + STATE(4418), 1, + sym_type_parameters, + STATE(5692), 1, + sym_extends_clause, + STATE(6754), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [152380] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7486), 1, + ACTIONS(7493), 1, anon_sym_LBRACE, - ACTIONS(7488), 1, + ACTIONS(7495), 1, anon_sym_extends, - ACTIONS(7490), 1, + ACTIONS(7497), 1, anon_sym_implements, - ACTIONS(7506), 1, + ACTIONS(7499), 1, sym_identifier, - STATE(3375), 1, + STATE(3032), 1, sym_class_body, - STATE(4270), 1, + STATE(4117), 1, sym_comment, - STATE(4795), 1, + STATE(4548), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6894), 1, + STATE(6451), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [152567] = 13, + [152420] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7486), 1, + ACTIONS(7493), 1, anon_sym_LBRACE, - ACTIONS(7488), 1, + ACTIONS(7495), 1, anon_sym_extends, - ACTIONS(7490), 1, + ACTIONS(7497), 1, anon_sym_implements, - ACTIONS(7508), 1, + ACTIONS(7501), 1, sym_identifier, - STATE(3150), 1, + STATE(3108), 1, sym_class_body, - STATE(4271), 1, + STATE(4118), 1, sym_comment, - STATE(4597), 1, + STATE(4418), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6614), 1, + STATE(6754), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [152607] = 13, + [152460] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7486), 1, + ACTIONS(7493), 1, anon_sym_LBRACE, - ACTIONS(7488), 1, + ACTIONS(7495), 1, anon_sym_extends, - ACTIONS(7490), 1, + ACTIONS(7497), 1, anon_sym_implements, - ACTIONS(7510), 1, + ACTIONS(7503), 1, sym_identifier, - STATE(3150), 1, + STATE(3108), 1, sym_class_body, - STATE(4272), 1, + STATE(4119), 1, sym_comment, - STATE(4597), 1, + STATE(4418), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6614), 1, + STATE(6754), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [152647] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7472), 1, - sym_identifier, - ACTIONS(7474), 1, - anon_sym_type, - ACTIONS(7480), 1, - anon_sym_typeof, - ACTIONS(7512), 1, - anon_sym_RBRACE, - STATE(4273), 1, - sym_comment, - STATE(5677), 1, - sym_string, - STATE(6721), 1, - sym__import_identifier, - STATE(6954), 1, - sym_import_specifier, - STATE(7361), 1, - sym__module_export_name, - [152687] = 13, + [152500] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7486), 1, + ACTIONS(7493), 1, anon_sym_LBRACE, - ACTIONS(7488), 1, + ACTIONS(7495), 1, anon_sym_extends, - ACTIONS(7490), 1, + ACTIONS(7497), 1, anon_sym_implements, - ACTIONS(7514), 1, + ACTIONS(7505), 1, sym_identifier, - STATE(3375), 1, + STATE(3032), 1, sym_class_body, - STATE(4274), 1, + STATE(4120), 1, sym_comment, - STATE(4795), 1, + STATE(4548), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6894), 1, + STATE(6451), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [152727] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7464), 1, - anon_sym_PIPE, - ACTIONS(7466), 1, - anon_sym_extends, - STATE(4275), 1, - sym_comment, - ACTIONS(7516), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [152755] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7520), 1, - anon_sym_COLON, - STATE(4276), 1, - sym_comment, - STATE(4969), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7518), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [152781] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7522), 1, - anon_sym_EQ, - ACTIONS(7526), 1, - anon_sym_BANG, - STATE(4277), 1, - sym_comment, - STATE(5246), 1, - sym_type_annotation, - STATE(5504), 1, - sym__initializer, - ACTIONS(7528), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7524), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152815] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7526), 1, - anon_sym_BANG, - STATE(4278), 1, - sym_comment, - STATE(5246), 1, - sym_type_annotation, - STATE(6237), 1, - sym__initializer, - ACTIONS(7528), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7524), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [152849] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7530), 1, - anon_sym_is, - STATE(4279), 1, - sym_comment, - ACTIONS(4963), 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, - [152873] = 6, + [152540] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7520), 1, + ACTIONS(7509), 1, anon_sym_COLON, - STATE(4280), 1, + STATE(4121), 1, sym_comment, - STATE(4808), 3, + STATE(4782), 3, sym_type_annotation, sym_asserts_annotation, sym_type_predicate_annotation, - ACTIONS(7532), 6, + ACTIONS(7507), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [152899] = 13, + [152566] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7486), 1, + ACTIONS(7493), 1, anon_sym_LBRACE, - ACTIONS(7488), 1, - anon_sym_extends, - ACTIONS(7490), 1, - anon_sym_implements, - ACTIONS(7534), 1, - sym_identifier, - STATE(3150), 1, - sym_class_body, - STATE(4281), 1, - sym_comment, - STATE(4597), 1, - sym_type_parameters, - STATE(6325), 1, - sym_extends_clause, - STATE(6614), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [152939] = 13, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7488), 1, + ACTIONS(7495), 1, anon_sym_extends, - ACTIONS(7490), 1, + ACTIONS(7497), 1, anon_sym_implements, - ACTIONS(7536), 1, + ACTIONS(7511), 1, sym_identifier, - ACTIONS(7538), 1, - anon_sym_LBRACE, - STATE(2733), 1, + STATE(3108), 1, sym_class_body, - STATE(4282), 1, + STATE(4122), 1, sym_comment, - STATE(4570), 1, + STATE(4418), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6584), 1, + STATE(6754), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [152979] = 13, + [152606] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7486), 1, + ACTIONS(7493), 1, anon_sym_LBRACE, - ACTIONS(7488), 1, + ACTIONS(7495), 1, anon_sym_extends, - ACTIONS(7490), 1, + ACTIONS(7497), 1, anon_sym_implements, - ACTIONS(7540), 1, + ACTIONS(7513), 1, sym_identifier, - STATE(3375), 1, + STATE(3032), 1, sym_class_body, - STATE(4283), 1, + STATE(4123), 1, sym_comment, - STATE(4795), 1, + STATE(4548), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6894), 1, + STATE(6451), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [153019] = 5, + [152646] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7385), 1, + ACTIONS(7384), 1, anon_sym_is, - STATE(4284), 1, + STATE(4124), 1, sym_comment, - ACTIONS(4973), 9, + ACTIONS(4997), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -351944,833 +339268,674 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [153043] = 13, + [152670] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7486), 1, + ACTIONS(7493), 1, anon_sym_LBRACE, - ACTIONS(7488), 1, + ACTIONS(7495), 1, anon_sym_extends, - ACTIONS(7490), 1, + ACTIONS(7497), 1, anon_sym_implements, - ACTIONS(7542), 1, + ACTIONS(7515), 1, sym_identifier, - STATE(3375), 1, + STATE(3032), 1, sym_class_body, - STATE(4285), 1, + STATE(4125), 1, sym_comment, - STATE(4795), 1, + STATE(4548), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6894), 1, + STATE(6451), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [153083] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, + [152710] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7472), 1, - sym_identifier, - ACTIONS(7544), 1, - anon_sym_type, - ACTIONS(7546), 1, - anon_sym_as, - STATE(4286), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(4126), 1, sym_comment, - STATE(5677), 1, - sym_string, - STATE(7040), 1, - sym__import_identifier, - STATE(7172), 1, - sym__module_export_name, - ACTIONS(7257), 2, + ACTIONS(4907), 2, anon_sym_COMMA, anon_sym_RBRACE, - [153121] = 13, + ACTIONS(4640), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [152736] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7486), 1, - anon_sym_LBRACE, - ACTIONS(7488), 1, + ACTIONS(7495), 1, anon_sym_extends, - ACTIONS(7490), 1, + ACTIONS(7497), 1, anon_sym_implements, - ACTIONS(7548), 1, + ACTIONS(7517), 1, sym_identifier, - STATE(3375), 1, + ACTIONS(7519), 1, + anon_sym_LBRACE, + STATE(2589), 1, sym_class_body, - STATE(4287), 1, + STATE(4127), 1, sym_comment, - STATE(4795), 1, + STATE(4638), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6894), 1, + STATE(6558), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [153161] = 13, + [152776] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7509), 1, + anon_sym_COLON, + STATE(4128), 1, + sym_comment, + STATE(4665), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7521), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [152802] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7488), 1, + ACTIONS(7493), 1, + anon_sym_LBRACE, + ACTIONS(7495), 1, anon_sym_extends, - ACTIONS(7490), 1, + ACTIONS(7497), 1, anon_sym_implements, - ACTIONS(7538), 1, - anon_sym_LBRACE, - ACTIONS(7550), 1, + ACTIONS(7523), 1, sym_identifier, - STATE(3524), 1, + STATE(3032), 1, sym_class_body, - STATE(4288), 1, + STATE(4129), 1, sym_comment, - STATE(4747), 1, + STATE(4548), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(7104), 1, + STATE(6451), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [153201] = 13, + [152842] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7486), 1, + ACTIONS(7493), 1, anon_sym_LBRACE, - ACTIONS(7488), 1, + ACTIONS(7495), 1, anon_sym_extends, - ACTIONS(7490), 1, + ACTIONS(7497), 1, anon_sym_implements, - ACTIONS(7552), 1, + ACTIONS(7525), 1, sym_identifier, - STATE(3150), 1, + STATE(3032), 1, sym_class_body, - STATE(4289), 1, + STATE(4130), 1, sym_comment, - STATE(4597), 1, + STATE(4548), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6614), 1, + STATE(6451), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [153241] = 13, + [152882] = 12, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7486), 1, - anon_sym_LBRACE, - ACTIONS(7488), 1, - anon_sym_extends, - ACTIONS(7490), 1, - anon_sym_implements, - ACTIONS(7554), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(7527), 1, sym_identifier, - STATE(3150), 1, - sym_class_body, - STATE(4290), 1, + ACTIONS(7531), 1, + anon_sym_COMMA, + ACTIONS(7533), 1, + anon_sym_RBRACE, + STATE(4131), 1, sym_comment, - STATE(4597), 1, - sym_type_parameters, - STATE(6325), 1, - sym_extends_clause, - STATE(6614), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [153281] = 13, + STATE(5555), 1, + sym_string, + STATE(5728), 1, + sym_export_specifier, + STATE(5729), 1, + sym__module_export_name, + ACTIONS(7529), 2, + anon_sym_type, + anon_sym_typeof, + [152920] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7537), 1, + anon_sym_BANG, + STATE(4132), 1, + sym_comment, + STATE(4980), 1, + sym_type_annotation, + STATE(5760), 1, + sym__initializer, + ACTIONS(7539), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7535), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [152954] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7486), 1, - anon_sym_LBRACE, - ACTIONS(7488), 1, - anon_sym_extends, - ACTIONS(7490), 1, - anon_sym_implements, - ACTIONS(7556), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(7481), 1, sym_identifier, - STATE(3375), 1, - sym_class_body, - STATE(4291), 1, + ACTIONS(7483), 1, + anon_sym_type, + ACTIONS(7489), 1, + anon_sym_typeof, + ACTIONS(7541), 1, + anon_sym_RBRACE, + STATE(4133), 1, sym_comment, - STATE(4795), 1, - sym_type_parameters, - STATE(6325), 1, - sym_extends_clause, - STATE(6894), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [153321] = 5, + STATE(5555), 1, + sym_string, + STATE(6566), 1, + sym__import_identifier, + STATE(6766), 1, + sym_import_specifier, + STATE(7178), 1, + sym__module_export_name, + [152994] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7385), 1, - anon_sym_is, - STATE(4292), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7537), 1, + anon_sym_BANG, + ACTIONS(7543), 1, + anon_sym_EQ, + STATE(4134), 1, sym_comment, - ACTIONS(4993), 9, + STATE(4980), 1, + sym_type_annotation, + STATE(5131), 1, + sym__initializer, + ACTIONS(7539), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7535), 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, - [153345] = 13, + [153028] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7486), 1, + ACTIONS(7493), 1, anon_sym_LBRACE, - ACTIONS(7488), 1, + ACTIONS(7495), 1, anon_sym_extends, - ACTIONS(7490), 1, + ACTIONS(7497), 1, anon_sym_implements, - ACTIONS(7558), 1, + ACTIONS(7545), 1, sym_identifier, - STATE(3375), 1, + STATE(3108), 1, sym_class_body, - STATE(4293), 1, + STATE(4135), 1, sym_comment, - STATE(4795), 1, + STATE(4418), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6894), 1, + STATE(6754), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [153385] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4294), 1, - sym_comment, - ACTIONS(4981), 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, - [153407] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - STATE(4295), 1, - sym_comment, - STATE(3230), 2, - sym_template_string, - sym_arguments, - ACTIONS(5265), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [153435] = 13, + [153068] = 13, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7488), 1, + ACTIONS(7493), 1, + anon_sym_LBRACE, + ACTIONS(7495), 1, anon_sym_extends, - ACTIONS(7490), 1, + ACTIONS(7497), 1, anon_sym_implements, - ACTIONS(7538), 1, - anon_sym_LBRACE, - ACTIONS(7560), 1, + ACTIONS(7547), 1, sym_identifier, - STATE(2717), 1, + STATE(3108), 1, sym_class_body, - STATE(4296), 1, + STATE(4136), 1, sym_comment, - STATE(4764), 1, + STATE(4418), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6876), 1, + STATE(6754), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [153475] = 12, + [153108] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7562), 1, - anon_sym_LBRACE, - ACTIONS(7564), 1, + ACTIONS(7495), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7497), 1, anon_sym_implements, - STATE(1200), 1, + ACTIONS(7519), 1, + anon_sym_LBRACE, + ACTIONS(7549), 1, + sym_identifier, + STATE(2638), 1, sym_class_body, - STATE(4297), 1, + STATE(4137), 1, sym_comment, - STATE(4696), 1, + STATE(4560), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6494), 1, + STATE(6752), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [153512] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [153148] = 12, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7568), 1, - anon_sym_BANG, - ACTIONS(7570), 1, - anon_sym_QMARK, - STATE(4298), 1, - sym_comment, - STATE(5188), 1, - sym_type_annotation, - STATE(6313), 1, - sym__initializer, - ACTIONS(7263), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153545] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7572), 1, - anon_sym_BANG, - ACTIONS(7574), 1, - anon_sym_QMARK, - STATE(4299), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(7481), 1, + sym_identifier, + ACTIONS(7551), 1, + anon_sym_type, + ACTIONS(7553), 1, + anon_sym_as, + STATE(4138), 1, sym_comment, - STATE(4999), 1, - sym_type_annotation, - STATE(6430), 1, - sym__initializer, - ACTIONS(7263), 3, - sym__automatic_semicolon, + STATE(5555), 1, + sym_string, + STATE(6860), 1, + sym__import_identifier, + STATE(6989), 1, + sym__module_export_name, + ACTIONS(7266), 2, anon_sym_COMMA, - anon_sym_SEMI, - [153578] = 10, + anon_sym_RBRACE, + [153186] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7576), 1, - anon_sym_BANG, - ACTIONS(7578), 1, - anon_sym_QMARK, - STATE(4300), 1, + STATE(4139), 1, sym_comment, - STATE(4996), 1, - sym_type_annotation, - STATE(6432), 1, - sym__initializer, - ACTIONS(7263), 3, + ACTIONS(2063), 10, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [153611] = 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_is, + [153208] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4301), 1, - sym_comment, - ACTIONS(7580), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4246), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(7557), 1, anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [153632] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4302), 1, + STATE(4140), 1, sym_comment, - ACTIONS(7582), 9, + STATE(4362), 1, + sym_arguments, + ACTIONS(7555), 7, 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, - [153653] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7584), 1, - anon_sym_BANG, - ACTIONS(7586), 1, - anon_sym_QMARK, - STATE(4303), 1, - sym_comment, - STATE(4995), 1, - sym_type_annotation, - STATE(6436), 1, - sym__initializer, - ACTIONS(7263), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153686] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [153236] = 13, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(4304), 1, - sym_comment, - ACTIONS(3603), 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, - [153707] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7493), 1, + anon_sym_LBRACE, + ACTIONS(7495), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7497), 1, anon_sym_implements, - ACTIONS(7588), 1, - anon_sym_LBRACE, - STATE(4305), 1, + ACTIONS(7559), 1, + sym_identifier, + STATE(3108), 1, + sym_class_body, + STATE(4141), 1, sym_comment, - STATE(4717), 1, + STATE(4418), 1, sym_type_parameters, - STATE(5092), 1, - sym_class_body, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6663), 1, + STATE(6754), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [153744] = 10, + [153276] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7590), 1, - anon_sym_BANG, - ACTIONS(7592), 1, - anon_sym_QMARK, - STATE(4306), 1, + STATE(4142), 1, sym_comment, - STATE(5066), 1, - sym_type_annotation, - STATE(6398), 1, - sym__initializer, - ACTIONS(7263), 3, + ACTIONS(4985), 10, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [153777] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + anon_sym_is, + [153298] = 13, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(7594), 1, - anon_sym_EQ, - ACTIONS(7596), 1, - anon_sym_DOT, - STATE(4307), 1, - sym_comment, - STATE(4503), 1, - sym_arguments, - ACTIONS(7492), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [153806] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7495), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7497), 1, anon_sym_implements, - ACTIONS(7588), 1, + ACTIONS(7519), 1, anon_sym_LBRACE, - STATE(4308), 1, + ACTIONS(7561), 1, + sym_identifier, + STATE(3369), 1, + sym_class_body, + STATE(4143), 1, sym_comment, - STATE(4749), 1, + STATE(4476), 1, sym_type_parameters, - STATE(5079), 1, - sym_class_body, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6651), 1, + STATE(6931), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [153843] = 10, + [153338] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7598), 1, - anon_sym_BANG, - ACTIONS(7600), 1, - anon_sym_QMARK, - STATE(4309), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7475), 1, + anon_sym_PIPE, + ACTIONS(7477), 1, + anon_sym_extends, + STATE(4144), 1, sym_comment, - STATE(5141), 1, - sym_type_annotation, - STATE(6365), 1, - sym__initializer, - ACTIONS(7263), 3, + ACTIONS(7563), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [153876] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7241), 1, anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7602), 1, - anon_sym_BANG, - ACTIONS(7604), 1, - anon_sym_QMARK, - STATE(4310), 1, - sym_comment, - STATE(5144), 1, - sym_type_annotation, - STATE(6358), 1, - sym__initializer, - ACTIONS(7263), 3, - sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [153909] = 5, + anon_sym_PIPE_RBRACE, + [153366] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7606), 1, - anon_sym_EQ, - STATE(4311), 1, + ACTIONS(7565), 1, + anon_sym_is, + STATE(4145), 1, sym_comment, - ACTIONS(7608), 8, + ACTIONS(4965), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, 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, - [153932] = 11, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153390] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(7071), 1, - anon_sym_LT, - STATE(4312), 1, + STATE(4146), 1, sym_comment, - STATE(5681), 1, - sym_type_arguments, - STATE(6652), 1, - sym_optional_chain, - STATE(2759), 2, + STATE(3115), 2, sym_template_string, sym_arguments, - [153967] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7610), 1, - anon_sym_BANG, - ACTIONS(7612), 1, - anon_sym_QMARK, - STATE(4313), 1, - sym_comment, - STATE(5157), 1, - sym_type_annotation, - STATE(6341), 1, - sym__initializer, - ACTIONS(7263), 3, - sym__automatic_semicolon, + ACTIONS(5215), 6, anon_sym_COMMA, - anon_sym_SEMI, - [154000] = 5, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153418] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7614), 1, - anon_sym_EQ, - STATE(4314), 1, - sym_comment, - ACTIONS(7582), 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, - [154023] = 5, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(7481), 1, + sym_identifier, + ACTIONS(7483), 1, + anon_sym_type, + ACTIONS(7489), 1, + anon_sym_typeof, + ACTIONS(7567), 1, + anon_sym_RBRACE, + STATE(4147), 1, + sym_comment, + STATE(5555), 1, + sym_string, + STATE(6566), 1, + sym__import_identifier, + STATE(6766), 1, + sym_import_specifier, + STATE(7178), 1, + sym__module_export_name, + [153458] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7616), 1, - anon_sym_EQ, - STATE(4315), 1, + ACTIONS(7384), 1, + anon_sym_is, + STATE(4148), 1, sym_comment, - ACTIONS(7580), 8, + ACTIONS(4975), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, 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, - [154046] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7137), 1, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(7139), 1, anon_sym_PIPE, - ACTIONS(7141), 1, anon_sym_extends, - ACTIONS(7618), 1, - anon_sym_EQ, - STATE(4316), 1, - sym_comment, - ACTIONS(7516), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [154075] = 9, + [153482] = 13, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7235), 1, - anon_sym_EQ, - ACTIONS(7620), 1, - anon_sym_COMMA, - ACTIONS(7622), 1, - anon_sym_RBRACE, - STATE(4317), 1, - sym_comment, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(6287), 1, - aux_sym_object_repeat1, - ACTIONS(4636), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(1973), 1, anon_sym_LT, - anon_sym_QMARK, - [154106] = 12, + ACTIONS(7493), 1, + anon_sym_LBRACE, + ACTIONS(7495), 1, + anon_sym_extends, + ACTIONS(7497), 1, + anon_sym_implements, + ACTIONS(7569), 1, + sym_identifier, + STATE(3032), 1, + sym_class_body, + STATE(4149), 1, + sym_comment, + STATE(4548), 1, + sym_type_parameters, + STATE(5692), 1, + sym_extends_clause, + STATE(6451), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [153522] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7571), 1, + anon_sym_LBRACE, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7624), 1, - anon_sym_LBRACE, - STATE(3269), 1, + STATE(3191), 1, sym_class_body, - STATE(4318), 1, + STATE(4150), 1, sym_comment, - STATE(4702), 1, + STATE(4520), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6672), 1, + STATE(6918), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [154143] = 4, + [153559] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4319), 1, + STATE(4151), 1, sym_comment, - ACTIONS(7608), 9, + ACTIONS(3641), 9, sym__automatic_semicolon, - anon_sym_EQ, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [154164] = 12, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153580] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(7071), 1, - anon_sym_LT, - ACTIONS(7626), 1, - anon_sym_DOT, - STATE(3272), 1, - sym_template_string, - STATE(3542), 1, - sym_arguments, - STATE(4320), 1, + STATE(4152), 1, sym_comment, - STATE(5687), 1, - sym_type_arguments, - STATE(6634), 1, - sym_optional_chain, - [154201] = 4, + ACTIONS(4975), 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, + [153601] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4321), 1, + STATE(4153), 1, sym_comment, - ACTIONS(5397), 9, + ACTIONS(5280), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -352780,50 +339945,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [154222] = 5, + [153622] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7628), 1, - anon_sym_EQ, - STATE(4322), 1, + ACTIONS(7577), 1, + anon_sym_LBRACK, + STATE(4154), 1, sym_comment, - ACTIONS(4448), 8, + ACTIONS(5280), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, 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, - [154245] = 5, + anon_sym_SEMI, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153645] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7630), 1, - anon_sym_EQ, - STATE(4323), 1, + STATE(4155), 1, sym_comment, - ACTIONS(7632), 8, + ACTIONS(4965), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, 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, - [154268] = 4, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [153666] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4324), 1, + STATE(4156), 1, sym_comment, - ACTIONS(3547), 9, + ACTIONS(5356), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -352833,104 +339997,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [154289] = 12, + [153687] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7579), 1, + anon_sym_BANG, + ACTIONS(7581), 1, + anon_sym_QMARK, + STATE(4157), 1, + sym_comment, + STATE(5014), 1, + sym_type_annotation, + STATE(5823), 1, + sym__initializer, + ACTIONS(7324), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153720] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7571), 1, + anon_sym_LBRACE, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7634), 1, - anon_sym_LBRACE, - STATE(1122), 1, + STATE(3024), 1, sym_class_body, - STATE(4325), 1, + STATE(4158), 1, sym_comment, - STATE(4776), 1, + STATE(4517), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6533), 1, + STATE(6735), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [154326] = 5, + [153757] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7636), 1, - anon_sym_EQ, - STATE(4326), 1, - sym_comment, - ACTIONS(4426), 8, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4921), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(4945), 1, anon_sym_DOT, - anon_sym_EQ_GT, - [154349] = 9, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(7084), 1, + anon_sym_LT, + STATE(2549), 1, + sym_template_string, + STATE(3286), 1, + sym_arguments, + STATE(3916), 1, + sym_type_arguments, + STATE(4159), 1, + sym_comment, + STATE(6677), 1, + sym_optional_chain, + [153794] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4327), 1, + ACTIONS(7583), 1, + anon_sym_BANG, + ACTIONS(7585), 1, + anon_sym_QMARK, + STATE(4160), 1, sym_comment, - STATE(5243), 1, + STATE(5264), 1, sym_type_annotation, - STATE(6232), 1, + STATE(6094), 1, sym__initializer, - ACTIONS(7283), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7281), 3, + ACTIONS(7308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154380] = 12, + [153827] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7638), 1, + ACTIONS(7587), 1, anon_sym_LBRACE, - STATE(439), 1, + STATE(973), 1, sym_class_body, - STATE(4328), 1, + STATE(4161), 1, sym_comment, - STATE(4650), 1, + STATE(4438), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(7003), 1, + STATE(6301), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [154417] = 4, + [153864] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4329), 1, + STATE(4162), 1, sym_comment, - ACTIONS(5221), 9, + ACTIONS(2252), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -352940,39 +340135,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [154438] = 12, + [153885] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4163), 1, + sym_comment, + STATE(5129), 1, + sym_type_annotation, + STATE(5992), 1, + sym__initializer, + ACTIONS(7591), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7589), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [153916] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7624), 1, + ACTIONS(7593), 1, anon_sym_LBRACE, - STATE(3275), 1, + STATE(1281), 1, sym_class_body, - STATE(4330), 1, + STATE(4164), 1, sym_comment, - STATE(4750), 1, + STATE(4433), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6647), 1, + STATE(6365), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [154475] = 4, + [153953] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4331), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7593), 1, + anon_sym_LBRACE, + STATE(1349), 1, + sym_class_body, + STATE(4165), 1, + sym_comment, + STATE(4445), 1, + sym_type_parameters, + STATE(5692), 1, + sym_extends_clause, + STATE(6441), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [153990] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4166), 1, sym_comment, - ACTIONS(5233), 9, + ACTIONS(5272), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -352982,39 +340224,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [154496] = 12, + [154011] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7595), 1, + anon_sym_COMMA, + ACTIONS(7597), 1, + anon_sym_RBRACE, + STATE(4167), 1, + sym_comment, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4640), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7640), 1, - anon_sym_LBRACE, - STATE(4332), 1, + anon_sym_QMARK, + [154042] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4168), 1, sym_comment, - STATE(4753), 1, - sym_type_parameters, - STATE(6325), 1, - sym_extends_clause, - STATE(6802), 1, - sym_class_body, - STATE(7073), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [154533] = 4, + ACTIONS(5262), 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, + [154063] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4333), 1, + STATE(4169), 1, sym_comment, - ACTIONS(5241), 9, + ACTIONS(5258), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -353024,239 +340280,267 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [154554] = 12, + [154084] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4989), 1, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(7071), 1, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(7134), 1, anon_sym_LT, - ACTIONS(7642), 1, - anon_sym_DOT, - STATE(2759), 1, + STATE(2549), 1, sym_template_string, - STATE(2896), 1, + STATE(2978), 1, sym_arguments, - STATE(4334), 1, - sym_comment, - STATE(5681), 1, + STATE(3973), 1, sym_type_arguments, - STATE(6652), 1, + STATE(4170), 1, + sym_comment, + STATE(6677), 1, sym_optional_chain, - [154591] = 10, + [154121] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7644), 1, + STATE(4171), 1, + sym_comment, + STATE(5171), 1, + sym_type_annotation, + STATE(6019), 1, + sym__initializer, + ACTIONS(7290), 2, anon_sym_BANG, - ACTIONS(7646), 1, anon_sym_QMARK, - STATE(4335), 1, + ACTIONS(7288), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [154152] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7599), 1, + anon_sym_BANG, + ACTIONS(7601), 1, + anon_sym_QMARK, + STATE(4172), 1, sym_comment, - STATE(5176), 1, + STATE(5287), 1, sym_type_annotation, - STATE(6322), 1, + STATE(6125), 1, sym__initializer, - ACTIONS(7263), 3, + ACTIONS(7308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154624] = 12, + [154185] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7624), 1, + STATE(4173), 1, + sym_comment, + ACTIONS(7603), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, - STATE(3270), 1, - sym_class_body, - STATE(4336), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [154206] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7595), 1, + anon_sym_COMMA, + ACTIONS(7605), 1, + anon_sym_RBRACE, + STATE(4174), 1, sym_comment, - STATE(4758), 1, - sym_type_parameters, - STATE(6325), 1, - sym_extends_clause, - STATE(7095), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [154661] = 10, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(4640), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [154237] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7648), 1, + ACTIONS(7607), 1, anon_sym_BANG, - ACTIONS(7650), 1, + ACTIONS(7609), 1, anon_sym_QMARK, - STATE(4337), 1, + STATE(4175), 1, sym_comment, - STATE(5013), 1, + STATE(5288), 1, sym_type_annotation, - STATE(6409), 1, + STATE(6127), 1, sym__initializer, - ACTIONS(7263), 3, + ACTIONS(7308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [154694] = 6, + [154270] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7652), 1, - anon_sym_COLON, - STATE(4338), 1, + STATE(4176), 1, sym_comment, - STATE(5389), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7532), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(7611), 9, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [154719] = 12, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [154291] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7595), 1, + anon_sym_COMMA, + ACTIONS(7613), 1, + anon_sym_RBRACE, + STATE(4177), 1, + sym_comment, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(4640), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7588), 1, - anon_sym_LBRACE, - STATE(4339), 1, + anon_sym_QMARK, + [154322] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7595), 1, + anon_sym_COMMA, + ACTIONS(7615), 1, + anon_sym_RBRACE, + STATE(4178), 1, sym_comment, - STATE(4751), 1, - sym_type_parameters, - STATE(5060), 1, - sym_class_body, - STATE(6325), 1, - sym_extends_clause, - STATE(6644), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [154756] = 4, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(4640), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [154353] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4340), 1, + ACTIONS(7617), 1, + anon_sym_AMP, + ACTIONS(7619), 1, + anon_sym_PIPE, + ACTIONS(7621), 1, + anon_sym_extends, + STATE(4179), 1, sym_comment, - ACTIONS(5169), 9, + ACTIONS(5035), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [154777] = 11, + [154380] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(7071), 1, - anon_sym_LT, - STATE(4341), 1, + STATE(4180), 1, sym_comment, - STATE(5687), 1, - sym_type_arguments, - STATE(6634), 1, - sym_optional_chain, - STATE(3272), 2, - sym_template_string, - sym_arguments, - [154812] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7654), 1, + ACTIONS(7623), 9, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, - STATE(1314), 1, - sym_class_body, - STATE(4342), 1, - sym_comment, - STATE(4611), 1, - sym_type_parameters, - STATE(6325), 1, - sym_extends_clause, - STATE(6805), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [154849] = 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [154401] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7652), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4343), 1, + ACTIONS(7625), 1, + anon_sym_BANG, + ACTIONS(7627), 1, + anon_sym_QMARK, + STATE(4181), 1, sym_comment, - STATE(5501), 3, + STATE(5303), 1, sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - ACTIONS(7518), 5, + STATE(6020), 1, + sym__initializer, + ACTIONS(7308), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [154874] = 4, + [154434] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4344), 1, + STATE(4182), 1, sym_comment, - ACTIONS(7656), 9, + ACTIONS(7629), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -353266,298 +340550,322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [154895] = 4, + [154455] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4345), 1, - sym_comment, - ACTIONS(4993), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(7617), 1, anon_sym_AMP, + ACTIONS(7619), 1, anon_sym_PIPE, + ACTIONS(7621), 1, anon_sym_extends, - [154916] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4346), 1, + STATE(4183), 1, sym_comment, - ACTIONS(4973), 9, + ACTIONS(5025), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [154937] = 12, + [154482] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7588), 1, + ACTIONS(7631), 1, anon_sym_LBRACE, - STATE(4347), 1, + STATE(1605), 1, + sym_class_body, + STATE(4184), 1, sym_comment, - STATE(4664), 1, + STATE(4526), 1, sym_type_parameters, - STATE(6208), 1, - sym_class_body, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(7118), 1, + STATE(6670), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [154974] = 12, + [154519] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4185), 1, + sym_comment, + ACTIONS(7633), 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, + [154540] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7658), 1, + ACTIONS(7635), 1, anon_sym_LBRACE, - STATE(2598), 1, - sym_class_body, - STATE(4348), 1, + STATE(4186), 1, sym_comment, - STATE(4755), 1, + STATE(4435), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(7109), 1, + STATE(6597), 1, sym_class_heritage, - STATE(7451), 1, + STATE(6629), 1, + sym_class_body, + STATE(7268), 1, sym_implements_clause, - [155011] = 12, + [154577] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7637), 1, + anon_sym_EQ, + STATE(4187), 1, + sym_comment, + ACTIONS(4454), 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, + [154600] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7660), 1, + ACTIONS(7639), 1, anon_sym_LBRACE, - STATE(363), 1, + STATE(1099), 1, sym_class_body, - STATE(4349), 1, + STATE(4188), 1, sym_comment, - STATE(4797), 1, + STATE(4479), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6544), 1, + STATE(6594), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [155048] = 12, + [154637] = 11, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(7527), 1, + sym_identifier, + ACTIONS(7641), 1, + anon_sym_RBRACE, + STATE(4189), 1, + sym_comment, + STATE(5555), 1, + sym_string, + STATE(5729), 1, + sym__module_export_name, + STATE(6815), 1, + sym_export_specifier, + ACTIONS(7529), 2, + anon_sym_type, + anon_sym_typeof, + [154672] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7662), 1, + ACTIONS(7643), 1, anon_sym_LBRACE, - STATE(1483), 1, + STATE(1256), 1, sym_class_body, - STATE(4350), 1, + STATE(4190), 1, sym_comment, - STATE(4770), 1, + STATE(4490), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6516), 1, + STATE(6808), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [155085] = 12, + [154709] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(7645), 1, + anon_sym_EQ, + STATE(4191), 1, + sym_comment, + ACTIONS(4456), 8, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4917), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, anon_sym_DOT, - ACTIONS(4989), 1, + anon_sym_EQ_GT, + [154732] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(7071), 1, + ACTIONS(7084), 1, anon_sym_LT, - STATE(2575), 1, - sym_arguments, - STATE(2759), 1, + ACTIONS(7647), 1, + anon_sym_DOT, + STATE(2549), 1, sym_template_string, - STATE(4079), 1, - sym_type_arguments, - STATE(4351), 1, + STATE(2715), 1, + sym_arguments, + STATE(4192), 1, sym_comment, - STATE(6652), 1, + STATE(5522), 1, + sym_type_arguments, + STATE(6677), 1, sym_optional_chain, - [155122] = 4, + [154769] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4352), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7649), 1, + anon_sym_BANG, + ACTIONS(7651), 1, + anon_sym_QMARK, + STATE(4193), 1, sym_comment, - ACTIONS(3645), 9, + STATE(5266), 1, + sym_type_annotation, + STATE(6171), 1, + sym__initializer, + ACTIONS(7278), 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, - [155143] = 4, + [154802] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4353), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7653), 1, + anon_sym_BANG, + ACTIONS(7655), 1, + anon_sym_QMARK, + STATE(4194), 1, sym_comment, - ACTIONS(3625), 9, + STATE(5246), 1, + sym_type_annotation, + STATE(6138), 1, + sym__initializer, + ACTIONS(7278), 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, - [155164] = 10, + [154835] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7666), 1, - anon_sym_BANG, - ACTIONS(7668), 1, - anon_sym_QMARK, - STATE(4354), 1, + STATE(4195), 1, sym_comment, - STATE(5008), 1, + STATE(5139), 1, sym_type_annotation, - STATE(5758), 1, + STATE(5975), 1, sym__initializer, - ACTIONS(7664), 3, + ACTIONS(7302), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7300), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155197] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(7071), 1, - anon_sym_LT, - ACTIONS(7670), 1, - anon_sym_DOT, - STATE(2759), 1, - sym_template_string, - STATE(3172), 1, - sym_arguments, - STATE(4355), 1, - sym_comment, - STATE(5681), 1, - sym_type_arguments, - STATE(6652), 1, - sym_optional_chain, - [155234] = 12, + [154866] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7660), 1, + ACTIONS(7657), 1, anon_sym_LBRACE, - STATE(372), 1, - sym_class_body, - STATE(4356), 1, + STATE(4196), 1, sym_comment, - STATE(4767), 1, + STATE(4448), 1, sym_type_parameters, - STATE(6325), 1, + STATE(4915), 1, + sym_class_body, + STATE(5692), 1, sym_extends_clause, - STATE(6513), 1, + STATE(6872), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [155271] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(7121), 1, - anon_sym_LT, - STATE(2759), 1, - sym_template_string, - STATE(3020), 1, - sym_arguments, - STATE(4101), 1, - sym_type_arguments, - STATE(4357), 1, - sym_comment, - STATE(6652), 1, - sym_optional_chain, - [155308] = 11, + [154903] = 11, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, @@ -353566,228 +340874,243 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(7498), 1, + ACTIONS(7527), 1, sym_identifier, - ACTIONS(7672), 1, + ACTIONS(7659), 1, anon_sym_RBRACE, - STATE(4358), 1, + STATE(4197), 1, sym_comment, - STATE(5677), 1, + STATE(5555), 1, sym_string, - STATE(6290), 1, + STATE(5729), 1, sym__module_export_name, - STATE(6999), 1, + STATE(6815), 1, sym_export_specifier, - ACTIONS(7500), 2, + ACTIONS(7529), 2, anon_sym_type, anon_sym_typeof, - [155343] = 12, + [154938] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + STATE(4198), 1, + sym_comment, + ACTIONS(2262), 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, + [154959] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4199), 1, + sym_comment, + ACTIONS(7661), 9, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4917), 1, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(7071), 1, - anon_sym_LT, - STATE(2759), 1, - sym_template_string, - STATE(3374), 1, - sym_arguments, - STATE(4079), 1, - sym_type_arguments, - STATE(4359), 1, - sym_comment, - STATE(6652), 1, - sym_optional_chain, - [155380] = 10, + anon_sym_PIPE_RBRACE, + [154980] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7674), 1, + ACTIONS(7663), 1, anon_sym_BANG, - ACTIONS(7676), 1, + ACTIONS(7665), 1, anon_sym_QMARK, - STATE(4360), 1, + STATE(4200), 1, sym_comment, - STATE(4993), 1, + STATE(5019), 1, sym_type_annotation, - STATE(6036), 1, + STATE(5841), 1, sym__initializer, - ACTIONS(7301), 3, + ACTIONS(7324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155413] = 10, + [155013] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7678), 1, + ACTIONS(7667), 1, anon_sym_BANG, - ACTIONS(7680), 1, + ACTIONS(7669), 1, anon_sym_QMARK, - STATE(4361), 1, + STATE(4201), 1, sym_comment, - STATE(5278), 1, + STATE(5049), 1, sym_type_annotation, - STATE(5884), 1, + STATE(5863), 1, sym__initializer, - ACTIONS(7664), 3, + ACTIONS(7324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155446] = 12, + [155046] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7658), 1, + ACTIONS(7671), 1, anon_sym_LBRACE, - STATE(2787), 1, + STATE(389), 1, sym_class_body, - STATE(4362), 1, + STATE(4202), 1, sym_comment, - STATE(4675), 1, + STATE(4570), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6904), 1, + STATE(6586), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [155483] = 9, + [155083] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4203), 1, + sym_comment, + ACTIONS(5326), 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, + [155104] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4363), 1, + ACTIONS(7673), 1, + anon_sym_BANG, + ACTIONS(7675), 1, + anon_sym_QMARK, + STATE(4204), 1, sym_comment, - STATE(5327), 1, + STATE(5050), 1, sym_type_annotation, - STATE(6077), 1, + STATE(5865), 1, sym__initializer, - ACTIONS(7684), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7682), 3, + ACTIONS(7324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [155514] = 12, + [155137] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(1353), 1, - sym_class_body, - STATE(4364), 1, + STATE(4205), 1, sym_comment, - STATE(4646), 1, - sym_type_parameters, - STATE(6325), 1, - sym_extends_clause, - STATE(6992), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [155551] = 4, + ACTIONS(5322), 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, + [155158] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4365), 1, + STATE(4206), 1, sym_comment, - ACTIONS(7688), 9, - anon_sym_EQ, + ACTIONS(5318), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [155572] = 4, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155179] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4366), 1, + ACTIONS(7617), 1, + anon_sym_AMP, + STATE(4207), 1, sym_comment, - ACTIONS(7690), 9, - anon_sym_EQ, + ACTIONS(5314), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [155593] = 9, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [155202] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7235), 1, - anon_sym_EQ, - ACTIONS(7620), 1, - anon_sym_COMMA, - ACTIONS(7692), 1, - anon_sym_RBRACE, - STATE(4367), 1, + STATE(4208), 1, sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4636), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [155624] = 4, + ACTIONS(5310), 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, + [155223] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4368), 1, + STATE(4209), 1, sym_comment, - ACTIONS(5379), 9, + ACTIONS(5306), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -353797,56 +341120,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155645] = 12, + [155244] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7588), 1, - anon_sym_LBRACE, - STATE(4369), 1, + STATE(4210), 1, sym_comment, - STATE(4674), 1, - sym_type_parameters, - STATE(6144), 1, - sym_class_body, - STATE(6325), 1, - sym_extends_clause, - STATE(6881), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [155682] = 4, + ACTIONS(5298), 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, + [155265] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4370), 1, + ACTIONS(7617), 1, + anon_sym_AMP, + ACTIONS(7619), 1, + anon_sym_PIPE, + ACTIONS(7621), 1, + anon_sym_extends, + STATE(4211), 1, sym_comment, - ACTIONS(5074), 9, + ACTIONS(5284), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, + [155292] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7577), 1, + anon_sym_LBRACK, + STATE(4212), 1, + sym_comment, + ACTIONS(5280), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155703] = 4, + ACTIONS(5276), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [155317] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4371), 1, + ACTIONS(7677), 1, + anon_sym_extends, + STATE(4213), 1, sym_comment, - ACTIONS(5343), 9, + ACTIONS(5266), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -353855,33 +341194,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_extends, - [155724] = 5, + [155340] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7694), 1, - anon_sym_AMP, - STATE(4372), 1, + ACTIONS(7577), 1, + anon_sym_LBRACK, + STATE(4214), 1, sym_comment, - ACTIONS(5339), 8, + ACTIONS(5015), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155747] = 4, + [155363] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4373), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7679), 1, + anon_sym_BANG, + ACTIONS(7681), 1, + anon_sym_QMARK, + STATE(4215), 1, + sym_comment, + STATE(5319), 1, + sym_type_annotation, + STATE(6166), 1, + sym__initializer, + ACTIONS(7308), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [155396] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4216), 1, sym_comment, - ACTIONS(5137), 9, + ACTIONS(5246), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -353891,31 +341252,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155768] = 4, + [155417] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4374), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7683), 1, + anon_sym_BANG, + ACTIONS(7685), 1, + anon_sym_QMARK, + STATE(4217), 1, sym_comment, - ACTIONS(5321), 9, + STATE(5267), 1, + sym_type_annotation, + STATE(6159), 1, + sym__initializer, + ACTIONS(7278), 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, - [155789] = 4, + [155450] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4375), 1, + STATE(4218), 1, sym_comment, - ACTIONS(5317), 9, + ACTIONS(3507), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -353925,55 +341292,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [155810] = 7, + [155471] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7694), 1, - anon_sym_AMP, - ACTIONS(7696), 1, - anon_sym_PIPE, - ACTIONS(7698), 1, - anon_sym_extends, - STATE(4376), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7687), 1, + anon_sym_BANG, + ACTIONS(7689), 1, + anon_sym_QMARK, + STATE(4219), 1, sym_comment, - ACTIONS(5309), 6, + STATE(5247), 1, + sym_type_annotation, + STATE(6143), 1, + sym__initializer, + ACTIONS(7278), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [155837] = 6, + [155504] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7700), 1, - anon_sym_LBRACK, - STATE(4377), 1, + STATE(4220), 1, sym_comment, - ACTIONS(5054), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(5305), 5, + ACTIONS(5242), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [155862] = 5, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155525] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7702), 1, - anon_sym_extends, - STATE(4378), 1, + STATE(4221), 1, sym_comment, - ACTIONS(5299), 8, + ACTIONS(5236), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -353982,188 +341348,246 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - [155885] = 5, + anon_sym_extends, + [155546] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7700), 1, - anon_sym_LBRACK, - STATE(4379), 1, + STATE(4222), 1, sym_comment, - ACTIONS(5295), 8, + ACTIONS(5234), 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, - [155908] = 9, + [155567] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7235), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7620), 1, - anon_sym_COMMA, - ACTIONS(7704), 1, - anon_sym_RBRACE, - STATE(4380), 1, - sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4636), 4, - anon_sym_LPAREN, + ACTIONS(7252), 1, anon_sym_COLON, - anon_sym_LT, + ACTIONS(7691), 1, + anon_sym_BANG, + ACTIONS(7693), 1, anon_sym_QMARK, - [155939] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4381), 1, + STATE(4223), 1, sym_comment, - ACTIONS(5284), 9, + STATE(5063), 1, + sym_type_annotation, + STATE(5875), 1, + sym__initializer, + ACTIONS(7324), 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, - [155960] = 12, + [155600] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7588), 1, + ACTIONS(7635), 1, anon_sym_LBRACE, - STATE(4382), 1, + STATE(4224), 1, sym_comment, - STATE(4754), 1, + STATE(4500), 1, sym_type_parameters, - STATE(5046), 1, - sym_class_body, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6621), 1, + STATE(6460), 1, sym_class_heritage, - STATE(7451), 1, + STATE(6835), 1, + sym_class_body, + STATE(7268), 1, sym_implements_clause, - [155997] = 12, + [155637] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(7084), 1, anon_sym_LT, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7634), 1, - anon_sym_LBRACE, - STATE(1208), 1, - sym_class_body, - STATE(4383), 1, + STATE(4225), 1, sym_comment, - STATE(4766), 1, - sym_type_parameters, - STATE(6325), 1, - sym_extends_clause, - STATE(6509), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [156034] = 12, + STATE(5522), 1, + sym_type_arguments, + STATE(6677), 1, + sym_optional_chain, + STATE(2549), 2, + sym_template_string, + sym_arguments, + [155672] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7706), 1, + ACTIONS(7695), 1, anon_sym_LBRACE, - STATE(390), 1, + STATE(1103), 1, sym_class_body, - STATE(4384), 1, + STATE(4226), 1, sym_comment, - STATE(4579), 1, + STATE(4411), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6846), 1, + STATE(6303), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [156071] = 7, + [155709] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7694), 1, - anon_sym_AMP, - ACTIONS(7696), 1, - anon_sym_PIPE, - ACTIONS(7698), 1, - anon_sym_extends, - STATE(4385), 1, + STATE(4227), 1, sym_comment, - ACTIONS(5351), 6, + ACTIONS(3517), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [156098] = 9, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [155730] = 12, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(7481), 1, + sym_identifier, + ACTIONS(7483), 1, + anon_sym_type, + ACTIONS(7489), 1, + anon_sym_typeof, + STATE(4228), 1, + sym_comment, + STATE(5555), 1, + sym_string, + STATE(6566), 1, + sym__import_identifier, + STATE(6766), 1, + sym_import_specifier, + STATE(7178), 1, + sym__module_export_name, + [155767] = 12, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2756), 1, - anon_sym_RBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7235), 1, - anon_sym_EQ, - ACTIONS(7620), 1, - anon_sym_COMMA, - STATE(4386), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7697), 1, + anon_sym_LBRACE, + STATE(404), 1, + sym_class_body, + STATE(4229), 1, sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4636), 4, + STATE(4491), 1, + sym_type_parameters, + STATE(5692), 1, + sym_extends_clause, + STATE(6890), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [155804] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(7084), 1, anon_sym_LT, - anon_sym_QMARK, - [156129] = 4, + ACTIONS(7699), 1, + anon_sym_DOT, + STATE(2549), 1, + sym_template_string, + STATE(3358), 1, + sym_arguments, + STATE(4230), 1, + sym_comment, + STATE(5522), 1, + sym_type_arguments, + STATE(6677), 1, + sym_optional_chain, + [155841] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4387), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7701), 1, + anon_sym_LBRACE, + STATE(319), 1, + sym_class_body, + STATE(4231), 1, + sym_comment, + STATE(4396), 1, + sym_type_parameters, + STATE(5692), 1, + sym_extends_clause, + STATE(6304), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [155878] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4232), 1, sym_comment, - ACTIONS(7708), 9, + ACTIONS(7703), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -354173,137 +341597,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [156150] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7694), 1, - anon_sym_AMP, - ACTIONS(7696), 1, - anon_sym_PIPE, - ACTIONS(7698), 1, - anon_sym_extends, - STATE(4388), 1, - sym_comment, - ACTIONS(5335), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [156177] = 4, + [155899] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4389), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(7084), 1, + anon_sym_LT, + STATE(2389), 1, + sym_arguments, + STATE(2549), 1, + sym_template_string, + STATE(3916), 1, + sym_type_arguments, + STATE(4233), 1, sym_comment, - ACTIONS(5278), 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, - [156198] = 9, + STATE(6677), 1, + sym_optional_chain, + [155936] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4390), 1, - sym_comment, - STATE(5136), 1, - sym_type_annotation, - STATE(5783), 1, - sym__initializer, - ACTIONS(7297), 2, + ACTIONS(7705), 1, anon_sym_BANG, + ACTIONS(7707), 1, anon_sym_QMARK, - ACTIONS(7295), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156229] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4391), 1, + STATE(4234), 1, sym_comment, - ACTIONS(5276), 9, + STATE(4947), 1, + sym_type_annotation, + STATE(5730), 1, + sym__initializer, + ACTIONS(7324), 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, - [156250] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7624), 1, - anon_sym_LBRACE, - STATE(3175), 1, - sym_class_body, - STATE(4392), 1, - sym_comment, - STATE(4779), 1, - sym_type_parameters, - STATE(6325), 1, - sym_extends_clause, - STATE(7024), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [156287] = 9, + [155969] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2799), 1, - anon_sym_RBRACE, - ACTIONS(7235), 1, - anon_sym_EQ, - ACTIONS(7620), 1, - anon_sym_COMMA, - STATE(4393), 1, - sym_comment, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - STATE(6287), 1, - aux_sym_object_repeat1, - ACTIONS(4636), 4, + ACTIONS(4921), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(4945), 1, + anon_sym_DOT, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(7084), 1, anon_sym_LT, - anon_sym_QMARK, - [156318] = 4, + STATE(2549), 1, + sym_template_string, + STATE(3206), 1, + sym_arguments, + STATE(3916), 1, + sym_type_arguments, + STATE(4235), 1, + sym_comment, + STATE(6677), 1, + sym_optional_chain, + [156006] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4394), 1, + STATE(4236), 1, sym_comment, - ACTIONS(5274), 9, + ACTIONS(5375), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -354313,37 +341687,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [156339] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7710), 1, - anon_sym_BANG, - ACTIONS(7712), 1, - anon_sym_QMARK, - STATE(4395), 1, - sym_comment, - STATE(5216), 1, - sym_type_annotation, - STATE(6279), 1, - sym__initializer, - ACTIONS(7263), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156372] = 4, + [156027] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4396), 1, + STATE(4237), 1, sym_comment, - ACTIONS(4448), 9, + ACTIONS(7709), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -354353,525 +341704,477 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_PIPE_RBRACE, - [156393] = 4, + [156048] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4397), 1, - sym_comment, - ACTIONS(7714), 9, + ACTIONS(7244), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(7252), 1, anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(7711), 1, + anon_sym_BANG, + ACTIONS(7713), 1, anon_sym_QMARK, - [156414] = 10, + STATE(4238), 1, + sym_comment, + STATE(5370), 1, + sym_type_annotation, + STATE(6225), 1, + sym__initializer, + ACTIONS(7308), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156081] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7716), 1, + ACTIONS(7715), 1, anon_sym_BANG, - ACTIONS(7718), 1, + ACTIONS(7717), 1, anon_sym_QMARK, - STATE(4398), 1, + STATE(4239), 1, sym_comment, - STATE(5382), 1, + STATE(5369), 1, sym_type_annotation, - STATE(6130), 1, + STATE(6228), 1, sym__initializer, - ACTIONS(7243), 3, + ACTIONS(7308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156447] = 4, + [156114] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4399), 1, - sym_comment, - ACTIONS(5245), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7571), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7573), 1, anon_sym_extends, - [156468] = 12, + ACTIONS(7575), 1, + anon_sym_implements, + STATE(3164), 1, + sym_class_body, + STATE(4240), 1, + sym_comment, + STATE(4454), 1, + sym_type_parameters, + STATE(5692), 1, + sym_extends_clause, + STATE(6842), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [156151] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4917), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(7071), 1, + ACTIONS(7254), 1, anon_sym_LT, - STATE(2759), 1, - sym_template_string, - STATE(3533), 1, - sym_arguments, - STATE(4079), 1, - sym_type_arguments, - STATE(4400), 1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7719), 1, + anon_sym_LBRACE, + STATE(428), 1, + sym_class_body, + STATE(4241), 1, sym_comment, - STATE(6652), 1, - sym_optional_chain, - [156505] = 10, + STATE(4499), 1, + sym_type_parameters, + STATE(5692), 1, + sym_extends_clause, + STATE(6819), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [156188] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7720), 1, + ACTIONS(7721), 1, anon_sym_BANG, - ACTIONS(7722), 1, + ACTIONS(7723), 1, anon_sym_QMARK, - STATE(4401), 1, + STATE(4242), 1, sym_comment, - STATE(5412), 1, + STATE(5362), 1, sym_type_annotation, - STATE(6110), 1, + STATE(6246), 1, sym__initializer, - ACTIONS(7301), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [156538] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4402), 1, - sym_comment, - ACTIONS(7632), 9, + ACTIONS(7308), 3, 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, - [156559] = 10, + [156221] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7724), 1, + ACTIONS(7727), 1, anon_sym_BANG, - ACTIONS(7726), 1, + ACTIONS(7729), 1, anon_sym_QMARK, - STATE(4403), 1, + STATE(4243), 1, sym_comment, - STATE(5414), 1, + STATE(4917), 1, sym_type_annotation, - STATE(6105), 1, + STATE(5704), 1, sym__initializer, - ACTIONS(7301), 3, + ACTIONS(7725), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156592] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4404), 1, - sym_comment, - ACTIONS(7728), 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, - [156613] = 12, + [156254] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7686), 1, + ACTIONS(7701), 1, anon_sym_LBRACE, - STATE(1577), 1, + STATE(330), 1, sym_class_body, - STATE(4405), 1, + STATE(4244), 1, sym_comment, - STATE(4790), 1, + STATE(4512), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6930), 1, + STATE(6315), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [156650] = 10, + [156291] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7730), 1, + ACTIONS(7731), 1, anon_sym_BANG, - ACTIONS(7732), 1, + ACTIONS(7733), 1, anon_sym_QMARK, - STATE(4406), 1, + STATE(4245), 1, sym_comment, - STATE(5009), 1, + STATE(5361), 1, sym_type_annotation, - STATE(6412), 1, + STATE(6248), 1, sym__initializer, - ACTIONS(7263), 3, + ACTIONS(7308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156683] = 12, + [156324] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7734), 1, - anon_sym_LBRACE, - STATE(1615), 1, - sym_class_body, - STATE(4407), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7735), 1, + anon_sym_BANG, + ACTIONS(7737), 1, + anon_sym_QMARK, + STATE(4246), 1, sym_comment, - STATE(4655), 1, - sym_type_parameters, - STATE(6325), 1, - sym_extends_clause, - STATE(7012), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [156720] = 12, + STATE(5268), 1, + sym_type_annotation, + STATE(6104), 1, + sym__initializer, + ACTIONS(7308), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156357] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7640), 1, + STATE(4247), 1, + sym_comment, + ACTIONS(5368), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(4408), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156378] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7739), 1, + anon_sym_BANG, + ACTIONS(7741), 1, + anon_sym_QMARK, + STATE(4248), 1, sym_comment, - STATE(4687), 1, - sym_type_parameters, - STATE(6325), 1, - sym_extends_clause, - STATE(6653), 1, - sym_class_body, - STATE(7074), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [156757] = 12, + STATE(5221), 1, + sym_type_annotation, + STATE(6214), 1, + sym__initializer, + ACTIONS(7725), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156411] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7654), 1, - anon_sym_LBRACE, - STATE(1575), 1, - sym_class_body, - STATE(4409), 1, + STATE(4249), 1, sym_comment, - STATE(4656), 1, - sym_type_parameters, - STATE(6325), 1, - sym_extends_clause, - STATE(6774), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [156794] = 12, + ACTIONS(5161), 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, + [156432] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7736), 1, + ACTIONS(7587), 1, anon_sym_LBRACE, - STATE(997), 1, + STATE(1019), 1, sym_class_body, - STATE(4410), 1, + STATE(4250), 1, sym_comment, - STATE(4703), 1, + STATE(4395), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6482), 1, + STATE(6299), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [156831] = 12, + [156469] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, + ACTIONS(4921), 1, anon_sym_LPAREN, - ACTIONS(4917), 1, + ACTIONS(4945), 1, anon_sym_DOT, - ACTIONS(4989), 1, + ACTIONS(4993), 1, anon_sym_BQUOTE, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(7071), 1, + ACTIONS(7084), 1, anon_sym_LT, - STATE(2759), 1, + STATE(2549), 1, sym_template_string, - STATE(3469), 1, + STATE(3395), 1, sym_arguments, - STATE(4079), 1, + STATE(3916), 1, sym_type_arguments, - STATE(4411), 1, + STATE(4251), 1, sym_comment, - STATE(6652), 1, + STATE(6677), 1, sym_optional_chain, - [156868] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7738), 1, - anon_sym_LBRACE, - STATE(308), 1, - sym_class_body, - STATE(4412), 1, - sym_comment, - STATE(4704), 1, - sym_type_parameters, - STATE(6325), 1, - sym_extends_clause, - STATE(6476), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [156905] = 4, + [156506] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4413), 1, - sym_comment, - ACTIONS(2162), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(7146), 1, anon_sym_AMP, + ACTIONS(7148), 1, anon_sym_PIPE, + ACTIONS(7150), 1, anon_sym_extends, - [156926] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7743), 1, anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7740), 1, - anon_sym_BANG, - ACTIONS(7742), 1, - anon_sym_QMARK, - STATE(4414), 1, + STATE(4252), 1, sym_comment, - STATE(5111), 1, - sym_type_annotation, - STATE(5898), 1, - sym__initializer, - ACTIONS(7321), 3, - sym__automatic_semicolon, + ACTIONS(7563), 5, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [156959] = 10, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [156535] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7744), 1, - anon_sym_BANG, - ACTIONS(7746), 1, - anon_sym_QMARK, - STATE(4415), 1, + ACTIONS(7543), 1, + anon_sym_EQ, + STATE(4253), 1, sym_comment, - STATE(5492), 1, + STATE(4980), 1, sym_type_annotation, - STATE(6067), 1, + STATE(5132), 1, sym__initializer, - ACTIONS(7301), 3, + ACTIONS(7539), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7535), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [156992] = 10, + [156566] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7748), 1, - anon_sym_BANG, - ACTIONS(7750), 1, - anon_sym_QMARK, - STATE(4416), 1, + STATE(4254), 1, sym_comment, - STATE(5497), 1, - sym_type_annotation, - STATE(6168), 1, - sym__initializer, - ACTIONS(7301), 3, + ACTIONS(5161), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [157025] = 9, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156587] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2801), 1, - anon_sym_RBRACE, - ACTIONS(7235), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(7745), 1, anon_sym_EQ, - ACTIONS(7620), 1, - anon_sym_COMMA, - STATE(4417), 1, + ACTIONS(7747), 1, + anon_sym_DOT, + STATE(4255), 1, sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4636), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [157056] = 10, + STATE(4380), 1, + sym_arguments, + ACTIONS(7555), 5, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [156616] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7752), 1, - anon_sym_BANG, - ACTIONS(7754), 1, - anon_sym_QMARK, - STATE(4418), 1, + STATE(4256), 1, sym_comment, - STATE(5503), 1, - sym_type_annotation, - STATE(6055), 1, - sym__initializer, - ACTIONS(7301), 3, + ACTIONS(5153), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [157089] = 7, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [156637] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7694), 1, + ACTIONS(7617), 1, anon_sym_AMP, - ACTIONS(7696), 1, + ACTIONS(7619), 1, anon_sym_PIPE, - ACTIONS(7698), 1, + ACTIONS(7621), 1, anon_sym_extends, - STATE(4419), 1, + STATE(4257), 1, sym_comment, - ACTIONS(5331), 6, + ACTIONS(5165), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [157116] = 4, + [156664] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4420), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(7084), 1, + anon_sym_LT, + STATE(2884), 1, + sym_arguments, + STATE(3068), 1, + sym_template_string, + STATE(4146), 1, + sym_type_arguments, + STATE(4258), 1, + sym_comment, + STATE(6494), 1, + sym_optional_chain, + [156701] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4259), 1, sym_comment, - ACTIONS(5331), 9, + ACTIONS(5165), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -354881,14 +342184,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [157137] = 4, + [156722] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4421), 1, + STATE(4260), 1, sym_comment, - ACTIONS(5347), 9, + ACTIONS(5159), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -354898,575 +342201,722 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [157158] = 12, + [156743] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7562), 1, + ACTIONS(7571), 1, anon_sym_LBRACE, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - STATE(1171), 1, + STATE(3060), 1, sym_class_body, - STATE(4422), 1, + STATE(4261), 1, sym_comment, - STATE(4711), 1, + STATE(4446), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6469), 1, + STATE(6578), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [157195] = 10, + [156780] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4262), 1, + sym_comment, + ACTIONS(5153), 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, + [156801] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4263), 1, + sym_comment, + ACTIONS(5135), 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, + [156822] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7756), 1, + ACTIONS(7749), 1, anon_sym_BANG, - ACTIONS(7758), 1, + ACTIONS(7751), 1, anon_sym_QMARK, - STATE(4423), 1, + STATE(4264), 1, sym_comment, - STATE(5466), 1, + STATE(5360), 1, sym_type_annotation, - STATE(6030), 1, + STATE(6250), 1, sym__initializer, - ACTIONS(7301), 3, + ACTIONS(7308), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [156855] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7617), 1, + anon_sym_AMP, + ACTIONS(7619), 1, + anon_sym_PIPE, + ACTIONS(7621), 1, + anon_sym_extends, + STATE(4265), 1, + sym_comment, + ACTIONS(5147), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [157228] = 12, + anon_sym_LBRACK, + [156882] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7571), 1, + anon_sym_LBRACE, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7624), 1, - anon_sym_LBRACE, - STATE(3189), 1, + STATE(3193), 1, sym_class_body, - STATE(4424), 1, + STATE(4266), 1, sym_comment, - STATE(4606), 1, + STATE(4521), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6742), 1, + STATE(6724), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [157265] = 10, + [156919] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(7084), 1, + anon_sym_LT, + ACTIONS(7753), 1, + anon_sym_DOT, + STATE(3068), 1, + sym_template_string, + STATE(3075), 1, + sym_arguments, + STATE(4267), 1, + sym_comment, + STATE(5568), 1, + sym_type_arguments, + STATE(6494), 1, + sym_optional_chain, + [156956] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2801), 1, + anon_sym_RBRACE, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(7595), 1, + anon_sym_COMMA, + STATE(4268), 1, + sym_comment, + STATE(5732), 1, + aux_sym_object_repeat1, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4640), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [156987] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7760), 1, + ACTIONS(7755), 1, anon_sym_BANG, - ACTIONS(7762), 1, + ACTIONS(7757), 1, anon_sym_QMARK, - STATE(4425), 1, + STATE(4269), 1, sym_comment, - STATE(5502), 1, + STATE(5356), 1, sym_type_annotation, - STATE(6059), 1, + STATE(6269), 1, sym__initializer, - ACTIONS(7243), 3, + ACTIONS(7308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157298] = 10, + [157020] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7759), 1, + anon_sym_LBRACE, + STATE(2630), 1, + sym_class_body, + STATE(4270), 1, + sym_comment, + STATE(4575), 1, + sym_type_parameters, + STATE(5692), 1, + sym_extends_clause, + STATE(6711), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [157057] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7764), 1, + ACTIONS(7761), 1, anon_sym_BANG, - ACTIONS(7766), 1, + ACTIONS(7763), 1, anon_sym_QMARK, - STATE(4426), 1, + STATE(4271), 1, sym_comment, - STATE(5465), 1, + STATE(5348), 1, sym_type_annotation, - STATE(6023), 1, + STATE(6280), 1, sym__initializer, - ACTIONS(7301), 3, + ACTIONS(7308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157331] = 5, + [157090] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7694), 1, - anon_sym_AMP, - STATE(4427), 1, + STATE(4272), 1, sym_comment, - ACTIONS(5225), 8, + ACTIONS(5143), 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, - [157354] = 7, + [157111] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7694), 1, - anon_sym_AMP, - ACTIONS(7696), 1, - anon_sym_PIPE, - ACTIONS(7698), 1, - anon_sym_extends, - STATE(4428), 1, + STATE(4273), 1, sym_comment, - ACTIONS(5371), 6, + ACTIONS(5139), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [157381] = 10, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [157132] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7768), 1, + ACTIONS(7765), 1, anon_sym_BANG, - ACTIONS(7770), 1, + ACTIONS(7767), 1, anon_sym_QMARK, - STATE(4429), 1, + STATE(4274), 1, sym_comment, - STATE(5508), 1, + STATE(5347), 1, sym_type_annotation, - STATE(6049), 1, + STATE(6286), 1, sym__initializer, - ACTIONS(7243), 3, + ACTIONS(7308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157414] = 10, + [157165] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7657), 1, + anon_sym_LBRACE, + STATE(4275), 1, + sym_comment, + STATE(4516), 1, + sym_type_parameters, + STATE(5692), 1, + sym_extends_clause, + STATE(6001), 1, + sym_class_body, + STATE(6571), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [157202] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7769), 1, + anon_sym_LBRACE, + STATE(1049), 1, + sym_class_body, + STATE(4276), 1, + sym_comment, + STATE(4609), 1, + sym_type_parameters, + STATE(5692), 1, + sym_extends_clause, + STATE(6501), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [157239] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + STATE(4277), 1, + sym_comment, + ACTIONS(7771), 9, anon_sym_EQ, - ACTIONS(7249), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - ACTIONS(7772), 1, - anon_sym_BANG, - ACTIONS(7774), 1, + anon_sym_RBRACK, anon_sym_QMARK, - STATE(4430), 1, - sym_comment, - STATE(5117), 1, - sym_type_annotation, - STATE(5793), 1, - sym__initializer, - ACTIONS(7321), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157447] = 10, + [157260] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7776), 1, + ACTIONS(7773), 1, anon_sym_BANG, - ACTIONS(7778), 1, + ACTIONS(7775), 1, anon_sym_QMARK, - STATE(4431), 1, + STATE(4278), 1, sym_comment, - STATE(5437), 1, + STATE(5339), 1, sym_type_annotation, - STATE(5995), 1, + STATE(6251), 1, sym__initializer, - ACTIONS(7301), 3, + ACTIONS(7308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157480] = 9, + [157293] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7235), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7620), 1, - anon_sym_COMMA, - ACTIONS(7780), 1, - anon_sym_RBRACE, - STATE(4432), 1, - sym_comment, - STATE(6276), 1, - aux_sym_object_repeat1, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4636), 4, - anon_sym_LPAREN, + ACTIONS(7252), 1, anon_sym_COLON, - anon_sym_LT, + ACTIONS(7777), 1, + anon_sym_BANG, + ACTIONS(7779), 1, anon_sym_QMARK, - [157511] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4433), 1, + STATE(4279), 1, sym_comment, - ACTIONS(5207), 9, + STATE(5182), 1, + sym_type_annotation, + STATE(6039), 1, + sym__initializer, + ACTIONS(7338), 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, - [157532] = 10, + [157326] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7782), 1, + ACTIONS(7781), 1, anon_sym_BANG, - ACTIONS(7784), 1, + ACTIONS(7783), 1, anon_sym_QMARK, - STATE(4434), 1, + STATE(4280), 1, sym_comment, - STATE(5514), 1, + STATE(5101), 1, sym_type_annotation, - STATE(6047), 1, + STATE(5946), 1, sym__initializer, - ACTIONS(7243), 3, + ACTIONS(7324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157565] = 4, + [157359] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4435), 1, - sym_comment, - ACTIONS(5215), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7573), 1, anon_sym_extends, - [157586] = 4, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7759), 1, + anon_sym_LBRACE, + STATE(2541), 1, + sym_class_body, + STATE(4281), 1, + sym_comment, + STATE(4465), 1, + sym_type_parameters, + STATE(5692), 1, + sym_extends_clause, + STATE(6552), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [157396] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4436), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7785), 1, + anon_sym_BANG, + ACTIONS(7787), 1, + anon_sym_QMARK, + STATE(4282), 1, sym_comment, - ACTIONS(5375), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + STATE(5185), 1, + sym_type_annotation, + STATE(6043), 1, + sym__initializer, + ACTIONS(7338), 3, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [157607] = 12, + [157429] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7786), 1, + ACTIONS(7657), 1, anon_sym_LBRACE, - STATE(1068), 1, - sym_class_body, - STATE(4437), 1, + STATE(4283), 1, sym_comment, - STATE(4619), 1, + STATE(4562), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6797), 1, + STATE(6141), 1, + sym_class_body, + STATE(6734), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [157644] = 10, + [157466] = 9, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2756), 1, + anon_sym_RBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7595), 1, + anon_sym_COMMA, + STATE(4284), 1, + sym_comment, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(4640), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(7788), 1, - anon_sym_BANG, - ACTIONS(7790), 1, + anon_sym_LT, anon_sym_QMARK, - STATE(4438), 1, + [157497] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4285), 1, sym_comment, - STATE(5460), 1, + STATE(4980), 1, sym_type_annotation, - STATE(6026), 1, + STATE(5761), 1, sym__initializer, - ACTIONS(7243), 3, + ACTIONS(7539), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7535), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [157677] = 9, + [157528] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + STATE(4286), 1, + sym_comment, + ACTIONS(7789), 9, anon_sym_EQ, - ACTIONS(7249), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - STATE(4439), 1, - sym_comment, - STATE(5404), 1, - sym_type_annotation, - STATE(5953), 1, - sym__initializer, - ACTIONS(7343), 2, - anon_sym_BANG, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(7341), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [157708] = 12, + [157549] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7706), 1, + ACTIONS(7657), 1, anon_sym_LBRACE, - STATE(369), 1, - sym_class_body, - STATE(4440), 1, + STATE(4287), 1, sym_comment, - STATE(4614), 1, + STATE(4502), 1, sym_type_parameters, - STATE(6325), 1, + STATE(4972), 1, + sym_class_body, + STATE(5692), 1, sym_extends_clause, - STATE(6800), 1, + STATE(6817), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [157745] = 12, + [157586] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(7071), 1, - anon_sym_LT, - ACTIONS(7792), 1, - anon_sym_DOT, - STATE(2759), 1, - sym_template_string, - STATE(3437), 1, - sym_arguments, - STATE(4441), 1, + STATE(4288), 1, sym_comment, - STATE(5681), 1, - sym_type_arguments, - STATE(6652), 1, - sym_optional_chain, - [157782] = 10, + ACTIONS(5149), 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, + [157607] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7794), 1, - anon_sym_BANG, - ACTIONS(7796), 1, - anon_sym_QMARK, - STATE(4442), 1, + STATE(4289), 1, sym_comment, - STATE(5152), 1, - sym_type_annotation, - STATE(6351), 1, - sym__initializer, - ACTIONS(7263), 3, + ACTIONS(3657), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [157815] = 10, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [157628] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7791), 1, anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7798), 1, - anon_sym_BANG, - ACTIONS(7800), 1, - anon_sym_QMARK, - STATE(4443), 1, + STATE(4290), 1, sym_comment, - STATE(5253), 1, - sym_type_annotation, - STATE(5871), 1, - sym__initializer, - ACTIONS(7243), 3, - sym__automatic_semicolon, + ACTIONS(7661), 8, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [157848] = 12, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [157651] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7624), 1, - anon_sym_LBRACE, - STATE(3411), 1, - sym_class_body, - STATE(4444), 1, + STATE(4291), 1, sym_comment, - STATE(4627), 1, - sym_type_parameters, - STATE(6325), 1, - sym_extends_clause, - STATE(6976), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [157885] = 12, + ACTIONS(5151), 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, + [157672] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7736), 1, + ACTIONS(7695), 1, anon_sym_LBRACE, - STATE(1017), 1, + STATE(1135), 1, sym_class_body, - STATE(4445), 1, + STATE(4292), 1, sym_comment, - STATE(4723), 1, + STATE(4588), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6452), 1, + STATE(6311), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [157922] = 10, + [157709] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7802), 1, - anon_sym_BANG, - ACTIONS(7804), 1, - anon_sym_QMARK, - STATE(4446), 1, + STATE(4293), 1, sym_comment, - STATE(5445), 1, - sym_type_annotation, - STATE(6008), 1, - sym__initializer, - ACTIONS(7243), 3, + ACTIONS(5155), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [157955] = 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [157730] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4447), 1, + STATE(4294), 1, sym_comment, - ACTIONS(5171), 9, + ACTIONS(5215), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -355476,59 +342926,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [157976] = 10, + [157751] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(2799), 1, + anon_sym_RBRACE, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7595), 1, + anon_sym_COMMA, + STATE(4295), 1, + sym_comment, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + STATE(5839), 1, + aux_sym_object_repeat1, + ACTIONS(4640), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(7806), 1, - anon_sym_BANG, - ACTIONS(7808), 1, + anon_sym_LT, anon_sym_QMARK, - STATE(4448), 1, - sym_comment, - STATE(5206), 1, - sym_type_annotation, - STATE(6288), 1, - sym__initializer, - ACTIONS(7263), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [158009] = 9, + [157782] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4449), 1, + STATE(4296), 1, sym_comment, - STATE(5361), 1, - sym_type_annotation, - STATE(5947), 1, - sym__initializer, - ACTIONS(7359), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7357), 3, + ACTIONS(5207), 9, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [158040] = 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [157803] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4450), 1, + STATE(4297), 1, sym_comment, - ACTIONS(5171), 9, + ACTIONS(5334), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -355538,39 +342982,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158061] = 12, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5417), 1, - anon_sym_DOT, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(7071), 1, - anon_sym_LT, - STATE(3272), 1, - sym_template_string, - STATE(3506), 1, - sym_arguments, - STATE(4295), 1, - sym_type_arguments, - STATE(4451), 1, - sym_comment, - STATE(6634), 1, - sym_optional_chain, - [158098] = 4, + [157824] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4452), 1, + STATE(4298), 1, sym_comment, - ACTIONS(2218), 9, + ACTIONS(5197), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -355580,73 +342999,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158119] = 12, + [157845] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7793), 1, + anon_sym_BANG, + ACTIONS(7795), 1, + anon_sym_QMARK, + STATE(4299), 1, + sym_comment, + STATE(5248), 1, + sym_type_annotation, + STATE(6147), 1, + sym__initializer, + ACTIONS(7278), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [157878] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, + ACTIONS(5081), 1, anon_sym_QMARK_DOT, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5417), 1, + ACTIONS(5432), 1, anon_sym_DOT, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - ACTIONS(7071), 1, + ACTIONS(7084), 1, anon_sym_LT, - STATE(2990), 1, - sym_arguments, - STATE(3272), 1, - sym_template_string, - STATE(4295), 1, - sym_type_arguments, - STATE(4453), 1, + STATE(4300), 1, sym_comment, - STATE(6634), 1, + STATE(5568), 1, + sym_type_arguments, + STATE(6494), 1, sym_optional_chain, - [158156] = 4, + STATE(3068), 2, + sym_template_string, + sym_arguments, + [157913] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4454), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7797), 1, + anon_sym_BANG, + ACTIONS(7799), 1, + anon_sym_QMARK, + STATE(4301), 1, sym_comment, - ACTIONS(5185), 9, + STATE(5243), 1, + sym_type_annotation, + STATE(6124), 1, + sym__initializer, + ACTIONS(7278), 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, - [158177] = 4, + [157946] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4455), 1, + ACTIONS(7801), 1, + anon_sym_EQ, + STATE(4302), 1, + sym_comment, + ACTIONS(7709), 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, + [157969] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7803), 1, + anon_sym_COLON, + STATE(4303), 1, sym_comment, - ACTIONS(5185), 9, + STATE(5318), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7521), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [158198] = 4, + [157994] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4456), 1, + STATE(4304), 1, sym_comment, - ACTIONS(5200), 9, + ACTIONS(5191), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -355656,14 +343123,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158219] = 4, + [158015] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4457), 1, + STATE(4305), 1, sym_comment, - ACTIONS(5054), 9, + ACTIONS(5187), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -355673,304 +343140,273 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158240] = 12, + [158036] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7738), 1, + ACTIONS(7805), 1, anon_sym_LBRACE, - STATE(318), 1, + STATE(1263), 1, sym_class_body, - STATE(4458), 1, + STATE(4306), 1, sym_comment, - STATE(4698), 1, + STATE(4596), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6445), 1, + STATE(6411), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [158277] = 12, + [158073] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(3553), 1, - sym_class_body, - STATE(4459), 1, + STATE(4307), 1, sym_comment, - STATE(4539), 1, - sym_type_parameters, - STATE(6325), 1, - sym_extends_clause, - STATE(6922), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [158314] = 12, + ACTIONS(5183), 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, + [158094] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7734), 1, - anon_sym_LBRACE, - STATE(1669), 1, - sym_class_body, - STATE(4460), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4308), 1, sym_comment, - STATE(4567), 1, - sym_type_parameters, - STATE(6325), 1, - sym_extends_clause, - STATE(6841), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [158351] = 9, + STATE(5315), 1, + sym_type_annotation, + STATE(6183), 1, + sym__initializer, + ACTIONS(7364), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7362), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [158125] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4461), 1, + ACTIONS(7807), 1, + anon_sym_BANG, + ACTIONS(7809), 1, + anon_sym_QMARK, + STATE(4309), 1, sym_comment, - STATE(5246), 1, + STATE(5242), 1, sym_type_annotation, - STATE(6228), 1, + STATE(6123), 1, sym__initializer, - ACTIONS(7528), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7524), 3, + ACTIONS(7278), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158382] = 11, - ACTIONS(3), 1, + [158158] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7617), 1, + anon_sym_AMP, + ACTIONS(7619), 1, + anon_sym_PIPE, + ACTIONS(7621), 1, + anon_sym_extends, + STATE(4310), 1, + sym_comment, + ACTIONS(5352), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [158185] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7498), 1, - sym_identifier, - ACTIONS(7810), 1, - anon_sym_RBRACE, - STATE(4462), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4311), 1, sym_comment, - STATE(5677), 1, - sym_string, - STATE(6290), 1, - sym__module_export_name, - STATE(6999), 1, - sym_export_specifier, - ACTIONS(7500), 2, - anon_sym_type, - anon_sym_typeof, - [158417] = 7, + ACTIONS(5169), 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, + [158206] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7694), 1, + ACTIONS(7617), 1, anon_sym_AMP, - ACTIONS(7696), 1, + ACTIONS(7619), 1, anon_sym_PIPE, - ACTIONS(7698), 1, + ACTIONS(7621), 1, anon_sym_extends, - STATE(4463), 1, + STATE(4312), 1, sym_comment, - ACTIONS(5147), 6, + ACTIONS(5169), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [158444] = 12, + [158233] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7638), 1, + ACTIONS(7805), 1, anon_sym_LBRACE, - STATE(414), 1, + STATE(1333), 1, sym_class_body, - STATE(4464), 1, + STATE(4313), 1, sym_comment, - STATE(4694), 1, + STATE(4630), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6783), 1, + STATE(6475), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [158481] = 10, + [158270] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7812), 1, - anon_sym_BANG, - ACTIONS(7814), 1, - anon_sym_QMARK, - STATE(4465), 1, + STATE(4314), 1, sym_comment, - STATE(5192), 1, + STATE(5229), 1, sym_type_annotation, - STATE(6309), 1, + STATE(6072), 1, sym__initializer, - ACTIONS(7263), 3, + ACTIONS(7296), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7294), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158514] = 4, + [158301] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4466), 1, - sym_comment, - ACTIONS(5013), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7573), 1, anon_sym_extends, - [158535] = 9, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7759), 1, + anon_sym_LBRACE, + STATE(3390), 1, + sym_class_body, + STATE(4315), 1, + sym_comment, + STATE(4384), 1, + sym_type_parameters, + STATE(5692), 1, + sym_extends_clause, + STATE(6738), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [158338] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7522), 1, + ACTIONS(7811), 1, anon_sym_EQ, - STATE(4467), 1, + STATE(4316), 1, sym_comment, - STATE(5246), 1, - sym_type_annotation, - STATE(5507), 1, - sym__initializer, - ACTIONS(7528), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7524), 3, - sym__automatic_semicolon, + ACTIONS(7603), 8, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [158566] = 12, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7472), 1, - sym_identifier, - ACTIONS(7474), 1, - anon_sym_type, - ACTIONS(7480), 1, - anon_sym_typeof, - STATE(4468), 1, - sym_comment, - STATE(5677), 1, - sym_string, - STATE(6721), 1, - sym__import_identifier, - STATE(6954), 1, - sym_import_specifier, - STATE(7361), 1, - sym__module_export_name, - [158603] = 7, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [158361] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7694), 1, - anon_sym_AMP, - ACTIONS(7696), 1, - anon_sym_PIPE, - ACTIONS(7698), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7573), 1, anon_sym_extends, - STATE(4469), 1, - sym_comment, - ACTIONS(5021), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7719), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [158630] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4470), 1, + STATE(426), 1, + sym_class_body, + STATE(4317), 1, sym_comment, - ACTIONS(4426), 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, - [158651] = 4, + STATE(4471), 1, + sym_type_parameters, + STATE(5692), 1, + sym_extends_clause, + STATE(6635), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [158398] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4471), 1, + STATE(4318), 1, sym_comment, - ACTIONS(3587), 9, + ACTIONS(5129), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -355980,31 +343416,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158672] = 4, + [158419] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4472), 1, + ACTIONS(7617), 1, + anon_sym_AMP, + STATE(4319), 1, sym_comment, - ACTIONS(5147), 9, + ACTIONS(5125), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158693] = 4, + [158442] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4473), 1, + STATE(4320), 1, sym_comment, - ACTIONS(5363), 9, + ACTIONS(5121), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -356014,283 +343451,418 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [158714] = 10, + [158463] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(7084), 1, + anon_sym_LT, + ACTIONS(7813), 1, + anon_sym_DOT, + STATE(2549), 1, + sym_template_string, + STATE(3011), 1, + sym_arguments, + STATE(4321), 1, + sym_comment, + STATE(5522), 1, + sym_type_arguments, + STATE(6677), 1, + sym_optional_chain, + [158500] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7671), 1, + anon_sym_LBRACE, + STATE(377), 1, + sym_class_body, + STATE(4322), 1, + sym_comment, + STATE(4637), 1, + sym_type_parameters, + STATE(5692), 1, + sym_extends_clause, + STATE(6469), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [158537] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7803), 1, anon_sym_COLON, - ACTIONS(7816), 1, - anon_sym_BANG, - ACTIONS(7818), 1, - anon_sym_QMARK, - STATE(4474), 1, + STATE(4323), 1, sym_comment, - STATE(5293), 1, + STATE(5276), 3, sym_type_annotation, - STATE(5889), 1, - sym__initializer, - ACTIONS(7243), 3, + sym_asserts_annotation, + sym_type_predicate_annotation, + ACTIONS(7507), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [158747] = 12, + [158562] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7786), 1, + ACTIONS(7631), 1, anon_sym_LBRACE, - STATE(1133), 1, + STATE(1524), 1, sym_class_body, - STATE(4475), 1, + STATE(4324), 1, sym_comment, - STATE(4605), 1, + STATE(4546), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6818), 1, + STATE(6828), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [158784] = 12, + [158599] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5088), 1, - anon_sym_QMARK_DOT, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(5447), 1, - anon_sym_BQUOTE, - ACTIONS(7071), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7820), 1, - anon_sym_DOT, - STATE(3272), 1, - sym_template_string, - STATE(3328), 1, - sym_arguments, - STATE(4476), 1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7769), 1, + anon_sym_LBRACE, + STATE(1090), 1, + sym_class_body, + STATE(4325), 1, sym_comment, - STATE(5687), 1, - sym_type_arguments, - STATE(6634), 1, - sym_optional_chain, - [158821] = 4, + STATE(4645), 1, + sym_type_parameters, + STATE(5692), 1, + sym_extends_clause, + STATE(6466), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [158636] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4477), 1, - sym_comment, - ACTIONS(5265), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7643), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + STATE(1411), 1, + sym_class_body, + STATE(4326), 1, + sym_comment, + STATE(4427), 1, + sym_type_parameters, + STATE(5692), 1, + sym_extends_clause, + STATE(6773), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [158673] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7573), 1, anon_sym_extends, - [158842] = 12, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7657), 1, + anon_sym_LBRACE, + STATE(4327), 1, + sym_comment, + STATE(4440), 1, + sym_type_parameters, + STATE(4930), 1, + sym_class_body, + STATE(5692), 1, + sym_extends_clause, + STATE(6923), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [158710] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7662), 1, + ACTIONS(7639), 1, anon_sym_LBRACE, - STATE(1355), 1, + STATE(1148), 1, sym_class_body, - STATE(4478), 1, + STATE(4328), 1, sym_comment, - STATE(4530), 1, + STATE(4437), 1, sym_type_parameters, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6484), 1, + STATE(6515), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [158879] = 4, + [158747] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4479), 1, - sym_comment, - ACTIONS(5229), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7573), 1, anon_sym_extends, - [158900] = 10, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7657), 1, + anon_sym_LBRACE, + STATE(4329), 1, + sym_comment, + STATE(4421), 1, + sym_type_parameters, + STATE(4946), 1, + sym_class_body, + STATE(5692), 1, + sym_extends_clause, + STATE(6884), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [158784] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7822), 1, + ACTIONS(7815), 1, anon_sym_BANG, - ACTIONS(7824), 1, + ACTIONS(7817), 1, anon_sym_QMARK, - STATE(4480), 1, + STATE(4330), 1, sym_comment, - STATE(5330), 1, + STATE(4893), 1, sym_type_annotation, - STATE(5916), 1, + STATE(5687), 1, sym__initializer, - ACTIONS(7243), 3, + ACTIONS(7324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [158933] = 4, + [158817] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4481), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(7084), 1, + anon_sym_LT, + ACTIONS(7819), 1, + anon_sym_DOT, + STATE(3068), 1, + sym_template_string, + STATE(3396), 1, + sym_arguments, + STATE(4331), 1, sym_comment, - ACTIONS(5191), 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, - [158954] = 4, + STATE(5568), 1, + sym_type_arguments, + STATE(6494), 1, + sym_optional_chain, + [158854] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4482), 1, + ACTIONS(5081), 1, + anon_sym_QMARK_DOT, + ACTIONS(5424), 1, + anon_sym_LPAREN, + ACTIONS(5432), 1, + anon_sym_DOT, + ACTIONS(5466), 1, + anon_sym_BQUOTE, + ACTIONS(7084), 1, + anon_sym_LT, + STATE(3068), 1, + sym_template_string, + STATE(3299), 1, + sym_arguments, + STATE(4146), 1, + sym_type_arguments, + STATE(4332), 1, sym_comment, - ACTIONS(4963), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(6494), 1, + sym_optional_chain, + [158891] = 12, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7571), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7573), 1, anon_sym_extends, - [158975] = 4, + ACTIONS(7575), 1, + anon_sym_implements, + STATE(3071), 1, + sym_class_body, + STATE(4333), 1, + sym_comment, + STATE(4423), 1, + sym_type_parameters, + STATE(5692), 1, + sym_extends_clause, + STATE(6903), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [158928] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4483), 1, + ACTIONS(7821), 1, + anon_sym_EQ, + STATE(4334), 1, sym_comment, - ACTIONS(5367), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7623), 8, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [158996] = 4, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [158951] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4484), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7823), 1, + anon_sym_BANG, + ACTIONS(7825), 1, + anon_sym_QMARK, + STATE(4335), 1, sym_comment, - ACTIONS(5365), 9, + STATE(4912), 1, + sym_type_annotation, + STATE(5705), 1, + sym__initializer, + ACTIONS(7324), 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, - [159017] = 10, + [158984] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7826), 1, + ACTIONS(7827), 1, anon_sym_BANG, - ACTIONS(7828), 1, + ACTIONS(7829), 1, anon_sym_QMARK, - STATE(4485), 1, + STATE(4336), 1, sym_comment, - STATE(5316), 1, + STATE(5238), 1, sym_type_annotation, - STATE(5902), 1, + STATE(6108), 1, sym__initializer, - ACTIONS(7243), 3, + ACTIONS(7278), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159050] = 10, + [159017] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7830), 1, + ACTIONS(7831), 1, anon_sym_BANG, - ACTIONS(7832), 1, + ACTIONS(7833), 1, anon_sym_QMARK, - STATE(4486), 1, + STATE(4337), 1, sym_comment, - STATE(5312), 1, + STATE(4936), 1, sym_type_annotation, - STATE(5900), 1, + STATE(5714), 1, sym__initializer, - ACTIONS(7243), 3, + ACTIONS(7324), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [159083] = 4, + [159050] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4487), 1, + STATE(4338), 1, sym_comment, - ACTIONS(5313), 9, + ACTIONS(4997), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -356300,49 +343872,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [159104] = 4, + [159071] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4488), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7835), 1, + anon_sym_BANG, + ACTIONS(7837), 1, + anon_sym_QMARK, + STATE(4339), 1, sym_comment, - ACTIONS(5001), 9, + STATE(4846), 1, + sym_type_annotation, + STATE(6118), 1, + sym__initializer, + ACTIONS(7278), 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, - [159125] = 5, + [159104] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7700), 1, - anon_sym_LBRACK, - STATE(4489), 1, + STATE(4340), 1, sym_comment, - ACTIONS(5054), 8, + ACTIONS(4456), 9, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [159148] = 4, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [159125] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4490), 1, + STATE(4341), 1, sym_comment, - ACTIONS(5009), 9, + ACTIONS(3581), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -356352,176 +343929,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [159169] = 4, + [159146] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4491), 1, + STATE(4342), 1, sym_comment, - ACTIONS(5353), 9, + ACTIONS(4454), 9, sym__automatic_semicolon, - sym__function_signature_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_PIPE, - anon_sym_extends, - [159190] = 8, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [159167] = 12, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7834), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7836), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7838), 1, - anon_sym_QMARK_COLON, - STATE(4492), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7697), 1, + anon_sym_LBRACE, + STATE(358), 1, + sym_class_body, + STATE(4343), 1, sym_comment, - STATE(5309), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [159218] = 8, + STATE(4444), 1, + sym_type_parameters, + STATE(5692), 1, + sym_extends_clause, + STATE(6430), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [159204] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7249), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7834), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7836), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7838), 1, - anon_sym_QMARK_COLON, - STATE(4493), 1, + ACTIONS(7839), 1, + anon_sym_BANG, + ACTIONS(7841), 1, + anon_sym_QMARK, + STATE(4344), 1, sym_comment, - STATE(5308), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, + STATE(4937), 1, sym_type_annotation, - [159246] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7498), 1, - sym_identifier, - STATE(4494), 1, - sym_comment, - STATE(5677), 1, - sym_string, - STATE(6290), 1, - sym__module_export_name, - STATE(6999), 1, - sym_export_specifier, - ACTIONS(7500), 2, - anon_sym_type, - anon_sym_typeof, - [159278] = 11, + STATE(5718), 1, + sym__initializer, + ACTIONS(7324), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [159237] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7840), 1, - sym_escape_sequence, - ACTIONS(7842), 1, - anon_sym_BQUOTE, - ACTIONS(7844), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, - sym__template_chars, - STATE(4495), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7475), 1, + anon_sym_PIPE, + ACTIONS(7477), 1, + anon_sym_extends, + STATE(4345), 1, sym_comment, - STATE(4943), 1, - aux_sym_template_string_repeat1, - STATE(5301), 1, - aux_sym_template_literal_type_repeat1, - STATE(5692), 1, - sym_template_substitution, - STATE(6193), 1, - sym_template_type, - [159312] = 10, + ACTIONS(7843), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [159263] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4103), 1, + ACTIONS(4119), 1, sym_identifier, - ACTIONS(4105), 1, + ACTIONS(4121), 1, anon_sym_LBRACE, - ACTIONS(4107), 1, + ACTIONS(4123), 1, anon_sym_LBRACK, - ACTIONS(7848), 1, + ACTIONS(7845), 1, anon_sym_enum, - STATE(4496), 1, + STATE(4346), 1, sym_comment, - STATE(4584), 1, + STATE(4481), 1, sym__destructuring_pattern, - STATE(5725), 1, + STATE(5381), 1, sym_variable_declarator, - STATE(4537), 2, + STATE(4591), 2, sym_object_pattern, sym_array_pattern, - [159344] = 5, + [159295] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7852), 1, - anon_sym_DOT, - STATE(4497), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7847), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7849), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7851), 1, + anon_sym_QMARK_COLON, + STATE(4347), 1, sym_comment, - ACTIONS(7850), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159366] = 7, + STATE(5300), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [159323] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7847), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7849), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7851), 1, + anon_sym_QMARK_COLON, + STATE(4348), 1, + sym_comment, + STATE(5305), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [159351] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7847), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7849), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7851), 1, + anon_sym_QMARK_COLON, + STATE(4349), 1, + sym_comment, + STATE(5167), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [159379] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7694), 1, + ACTIONS(7471), 1, anon_sym_AMP, - ACTIONS(7696), 1, + ACTIONS(7475), 1, anon_sym_PIPE, - ACTIONS(7698), 1, + ACTIONS(7477), 1, anon_sym_extends, - STATE(4498), 1, + STATE(4350), 1, sym_comment, - ACTIONS(7516), 5, + ACTIONS(7853), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [159392] = 5, + anon_sym_PIPE_RBRACE, + [159405] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7854), 1, + ACTIONS(7855), 1, anon_sym_EQ, - STATE(4499), 1, + STATE(4351), 1, sym_comment, - ACTIONS(6398), 7, + ACTIONS(6374), 7, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -356529,132 +344131,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_DOT, anon_sym_EQ_GT, - [159414] = 7, + [159427] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4119), 1, + sym_identifier, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + ACTIONS(7857), 1, + anon_sym_enum, + STATE(4352), 1, + sym_comment, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(5582), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [159459] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(7856), 1, - anon_sym_DOT, - STATE(4500), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7475), 1, + anon_sym_PIPE, + ACTIONS(7477), 1, + anon_sym_extends, + STATE(4353), 1, sym_comment, - STATE(4845), 1, - sym_arguments, - ACTIONS(7492), 5, + ACTIONS(7859), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [159440] = 8, + anon_sym_PIPE_RBRACE, + [159485] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7834), 1, + ACTIONS(7847), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7836), 1, + ACTIONS(7849), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7838), 1, + ACTIONS(7851), 1, anon_sym_QMARK_COLON, - STATE(4501), 1, + STATE(4354), 1, sym_comment, - STATE(5204), 4, + STATE(5312), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [159468] = 11, + [159513] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7840), 1, - sym_escape_sequence, - ACTIONS(7844), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, - sym__template_chars, - ACTIONS(7858), 1, - anon_sym_BQUOTE, - STATE(4502), 1, + ACTIONS(4119), 1, + sym_identifier, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + ACTIONS(7861), 1, + anon_sym_enum, + STATE(4355), 1, sym_comment, - STATE(4943), 1, - aux_sym_template_string_repeat1, - STATE(5301), 1, - aux_sym_template_literal_type_repeat1, - STATE(5692), 1, - sym_template_substitution, - STATE(6193), 1, - sym_template_type, - [159502] = 5, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(5468), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [159545] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7860), 1, - anon_sym_EQ, - STATE(4503), 1, - sym_comment, - ACTIONS(7862), 7, + ACTIONS(7863), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_GT, + ACTIONS(7865), 1, anon_sym_DOT, - anon_sym_EQ_GT, - [159524] = 4, + STATE(4356), 1, + sym_comment, + STATE(4850), 1, + sym_statement_block, + ACTIONS(2130), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [159571] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4504), 1, + ACTIONS(7863), 1, + anon_sym_LBRACE, + ACTIONS(7867), 1, + anon_sym_DOT, + STATE(4357), 1, sym_comment, - ACTIONS(7862), 8, + STATE(4850), 1, + sym_statement_block, + ACTIONS(2130), 5, 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, - [159544] = 11, + [159597] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4119), 1, + sym_identifier, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + ACTIONS(7869), 1, + anon_sym_enum, + STATE(4358), 1, + sym_comment, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(5562), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [159629] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7840), 1, + ACTIONS(7871), 1, sym_escape_sequence, - ACTIONS(7844), 1, + ACTIONS(7873), 1, + anon_sym_BQUOTE, + ACTIONS(7875), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(7877), 1, sym__template_chars, - ACTIONS(7864), 1, - anon_sym_BQUOTE, - STATE(4505), 1, + STATE(4359), 1, sym_comment, - STATE(4914), 1, + STATE(4676), 1, aux_sym_template_string_repeat1, - STATE(5301), 1, + STATE(5015), 1, aux_sym_template_literal_type_repeat1, - STATE(5692), 1, + STATE(5570), 1, sym_template_substitution, - STATE(6193), 1, + STATE(5790), 1, sym_template_type, - [159578] = 4, + [159663] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4506), 1, + STATE(4360), 1, sym_comment, - ACTIONS(6398), 8, + ACTIONS(6374), 8, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -356663,51032 +344313,50618 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_DOT, anon_sym_PIPE_RBRACE, - [159598] = 7, + [159683] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7866), 1, - anon_sym_LBRACE, - ACTIONS(7868), 1, - anon_sym_DOT, - STATE(4507), 1, + ACTIONS(7871), 1, + sym_escape_sequence, + ACTIONS(7875), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7877), 1, + sym__template_chars, + ACTIONS(7879), 1, + anon_sym_BQUOTE, + STATE(4361), 1, sym_comment, - STATE(4997), 1, - sym_statement_block, - ACTIONS(2113), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159624] = 7, + STATE(4743), 1, + aux_sym_template_string_repeat1, + STATE(5024), 1, + aux_sym_template_literal_type_repeat1, + STATE(5570), 1, + sym_template_substitution, + STATE(5790), 1, + sym_template_type, + [159717] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7866), 1, - anon_sym_LBRACE, - ACTIONS(7870), 1, - anon_sym_DOT, - STATE(4508), 1, + STATE(4362), 1, sym_comment, - STATE(4997), 1, - sym_statement_block, - ACTIONS(2113), 5, + ACTIONS(7881), 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, - [159650] = 8, + [159737] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7834), 1, + ACTIONS(7847), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7836), 1, + ACTIONS(7849), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7838), 1, + ACTIONS(7851), 1, anon_sym_QMARK_COLON, - STATE(4509), 1, + STATE(4363), 1, sym_comment, - STATE(5163), 4, + STATE(4862), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [159678] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4103), 1, - sym_identifier, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - ACTIONS(7872), 1, - anon_sym_enum, - STATE(4510), 1, - sym_comment, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(5696), 1, - sym_variable_declarator, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - [159710] = 9, + [159765] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7526), 1, - anon_sym_BANG, - STATE(4511), 1, + ACTIONS(7871), 1, + sym_escape_sequence, + ACTIONS(7875), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7877), 1, + sym__template_chars, + ACTIONS(7883), 1, + anon_sym_BQUOTE, + STATE(4364), 1, sym_comment, - STATE(5246), 1, - sym_type_annotation, - STATE(6237), 1, - sym__initializer, - ACTIONS(7524), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [159740] = 8, + STATE(4743), 1, + aux_sym_template_string_repeat1, + STATE(5015), 1, + aux_sym_template_literal_type_repeat1, + STATE(5570), 1, + sym_template_substitution, + STATE(5790), 1, + sym_template_type, + [159799] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7834), 1, + ACTIONS(7847), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7836), 1, + ACTIONS(7849), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7838), 1, + ACTIONS(7851), 1, anon_sym_QMARK_COLON, - STATE(4512), 1, + STATE(4365), 1, sym_comment, - STATE(5392), 4, + STATE(4858), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [159768] = 10, + [159827] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7887), 1, + anon_sym_DOT, + STATE(4366), 1, + sym_comment, + ACTIONS(7885), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [159849] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4103), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(7527), 1, sym_identifier, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - ACTIONS(7874), 1, - anon_sym_enum, - STATE(4513), 1, + STATE(4367), 1, sym_comment, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(5592), 1, - sym_variable_declarator, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - [159800] = 11, + STATE(5555), 1, + sym_string, + STATE(5729), 1, + sym__module_export_name, + STATE(6815), 1, + sym_export_specifier, + ACTIONS(7529), 2, + anon_sym_type, + anon_sym_typeof, + [159881] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7840), 1, + ACTIONS(7871), 1, sym_escape_sequence, - ACTIONS(7844), 1, + ACTIONS(7875), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(7877), 1, sym__template_chars, - ACTIONS(7876), 1, + ACTIONS(7889), 1, anon_sym_BQUOTE, - STATE(4514), 1, + STATE(4368), 1, sym_comment, - STATE(4914), 1, + STATE(4743), 1, aux_sym_template_string_repeat1, - STATE(5301), 1, + STATE(5015), 1, aux_sym_template_literal_type_repeat1, - STATE(5692), 1, + STATE(5570), 1, sym_template_substitution, - STATE(6193), 1, + STATE(5790), 1, sym_template_type, - [159834] = 8, + [159915] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7834), 1, + ACTIONS(7847), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7836), 1, + ACTIONS(7849), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7838), 1, + ACTIONS(7851), 1, anon_sym_QMARK_COLON, - STATE(4515), 1, + STATE(4369), 1, sym_comment, - STATE(5294), 4, + STATE(5143), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [159862] = 8, + [159943] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7834), 1, + ACTIONS(7847), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7836), 1, + ACTIONS(7849), 1, anon_sym_PLUS_QMARK_COLON, - ACTIONS(7838), 1, + ACTIONS(7851), 1, anon_sym_QMARK_COLON, - STATE(4516), 1, + STATE(4370), 1, sym_comment, - STATE(5289), 4, + STATE(5157), 4, sym_omitting_type_annotation, sym_adding_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [159890] = 7, + [159971] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7464), 1, - anon_sym_PIPE, - ACTIONS(7466), 1, - anon_sym_extends, - STATE(4517), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7847), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7849), 1, + anon_sym_PLUS_QMARK_COLON, + ACTIONS(7851), 1, + anon_sym_QMARK_COLON, + STATE(4371), 1, sym_comment, - ACTIONS(7878), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159916] = 7, + STATE(5232), 4, + sym_omitting_type_annotation, + sym_adding_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [159999] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7464), 1, - anon_sym_PIPE, - ACTIONS(7466), 1, - anon_sym_extends, - STATE(4518), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + ACTIONS(7537), 1, + anon_sym_BANG, + STATE(4372), 1, sym_comment, - ACTIONS(7880), 5, + STATE(4980), 1, + sym_type_annotation, + STATE(5760), 1, + sym__initializer, + ACTIONS(7535), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159942] = 7, + [160029] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7464), 1, - anon_sym_PIPE, - ACTIONS(7466), 1, - anon_sym_extends, - STATE(4519), 1, + ACTIONS(4119), 1, + sym_identifier, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + ACTIONS(7891), 1, + anon_sym_enum, + STATE(4373), 1, sym_comment, - ACTIONS(7882), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [159968] = 8, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(5389), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [160061] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7834), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7836), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7838), 1, - anon_sym_QMARK_COLON, - STATE(4520), 1, + ACTIONS(4119), 1, + sym_identifier, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + ACTIONS(7893), 1, + anon_sym_enum, + STATE(4374), 1, sym_comment, - STATE(5272), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [159996] = 11, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(5421), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [160093] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7840), 1, + ACTIONS(7871), 1, sym_escape_sequence, - ACTIONS(7844), 1, + ACTIONS(7875), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(7877), 1, sym__template_chars, - ACTIONS(7884), 1, + ACTIONS(7895), 1, anon_sym_BQUOTE, - STATE(4521), 1, + STATE(4375), 1, sym_comment, - STATE(4943), 1, + STATE(4743), 1, aux_sym_template_string_repeat1, - STATE(5301), 1, + STATE(5015), 1, aux_sym_template_literal_type_repeat1, - STATE(5692), 1, + STATE(5570), 1, sym_template_substitution, - STATE(6193), 1, + STATE(5790), 1, sym_template_type, - [160030] = 11, + [160127] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7840), 1, + ACTIONS(7871), 1, sym_escape_sequence, - ACTIONS(7844), 1, + ACTIONS(7875), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(7877), 1, sym__template_chars, - ACTIONS(7886), 1, + ACTIONS(7897), 1, anon_sym_BQUOTE, - STATE(4522), 1, + STATE(4376), 1, sym_comment, - STATE(4943), 1, + STATE(4676), 1, aux_sym_template_string_repeat1, - STATE(5301), 1, + STATE(5015), 1, aux_sym_template_literal_type_repeat1, - STATE(5692), 1, + STATE(5570), 1, sym_template_substitution, - STATE(6193), 1, + STATE(5790), 1, sym_template_type, - [160064] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4103), 1, - sym_identifier, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - ACTIONS(7888), 1, - anon_sym_enum, - STATE(4523), 1, - sym_comment, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(5708), 1, - sym_variable_declarator, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - [160096] = 11, + [160161] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7840), 1, + ACTIONS(7871), 1, sym_escape_sequence, - ACTIONS(7844), 1, + ACTIONS(7875), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(7877), 1, sym__template_chars, - ACTIONS(7890), 1, + ACTIONS(7899), 1, anon_sym_BQUOTE, - STATE(4524), 1, + STATE(4377), 1, sym_comment, - STATE(4943), 1, + STATE(4743), 1, aux_sym_template_string_repeat1, - STATE(5170), 1, + STATE(5015), 1, aux_sym_template_literal_type_repeat1, - STATE(5692), 1, + STATE(5570), 1, sym_template_substitution, - STATE(6193), 1, + STATE(5790), 1, sym_template_type, - [160130] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [160195] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4103), 1, - sym_identifier, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - ACTIONS(7892), 1, - anon_sym_enum, - STATE(4525), 1, - sym_comment, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(5604), 1, - sym_variable_declarator, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - [160162] = 10, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7617), 1, + anon_sym_AMP, + ACTIONS(7619), 1, + anon_sym_PIPE, + ACTIONS(7621), 1, + anon_sym_extends, + STATE(4378), 1, + sym_comment, + ACTIONS(7563), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [160221] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4103), 1, - sym_identifier, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - ACTIONS(7894), 1, - anon_sym_enum, - STATE(4526), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7192), 1, + anon_sym_LPAREN, + ACTIONS(7901), 1, + anon_sym_DOT, + STATE(4379), 1, sym_comment, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(5716), 1, - sym_variable_declarator, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - [160194] = 8, + STATE(4834), 1, + sym_arguments, + ACTIONS(7555), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [160247] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7249), 1, - anon_sym_COLON, - ACTIONS(7834), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7836), 1, - anon_sym_PLUS_QMARK_COLON, - ACTIONS(7838), 1, - anon_sym_QMARK_COLON, - STATE(4527), 1, + ACTIONS(7903), 1, + anon_sym_EQ, + STATE(4380), 1, sym_comment, - STATE(5210), 4, - sym_omitting_type_annotation, - sym_adding_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [160222] = 11, + ACTIONS(7881), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_DOT, + anon_sym_EQ_GT, + [160269] = 11, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7840), 1, + ACTIONS(7871), 1, sym_escape_sequence, - ACTIONS(7844), 1, + ACTIONS(7875), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7846), 1, + ACTIONS(7877), 1, sym__template_chars, - ACTIONS(7896), 1, + ACTIONS(7905), 1, anon_sym_BQUOTE, - STATE(4528), 1, + STATE(4381), 1, sym_comment, - STATE(4943), 1, + STATE(4743), 1, aux_sym_template_string_repeat1, - STATE(5301), 1, + STATE(5015), 1, aux_sym_template_literal_type_repeat1, - STATE(5692), 1, + STATE(5570), 1, sym_template_substitution, - STATE(6193), 1, + STATE(5790), 1, sym_template_type, - [160256] = 8, + [160303] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4529), 1, + STATE(4382), 1, sym_comment, - STATE(5360), 1, + STATE(5017), 1, sym_type_annotation, - STATE(6160), 1, + STATE(5834), 1, + sym__initializer, + ACTIONS(7446), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160330] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4383), 1, + sym_comment, + STATE(5365), 1, + sym_type_annotation, + STATE(6209), 1, sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7907), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160283] = 10, + [160357] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7662), 1, + ACTIONS(7759), 1, anon_sym_LBRACE, - STATE(1275), 1, + STATE(3383), 1, sym_class_body, - STATE(4530), 1, + STATE(4384), 1, sym_comment, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6464), 1, + STATE(6651), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [160314] = 6, + [160388] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7249), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4531), 1, + STATE(4385), 1, sym_comment, - STATE(5212), 1, + STATE(5262), 1, sym_type_annotation, - ACTIONS(7898), 5, + STATE(6089), 1, + sym__initializer, + ACTIONS(7432), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160337] = 4, + [160415] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4532), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4386), 1, sym_comment, - ACTIONS(7714), 7, + STATE(4948), 1, + sym_type_annotation, + STATE(5707), 1, + sym__initializer, + ACTIONS(7463), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [160356] = 4, + [160442] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4533), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4387), 1, sym_comment, - ACTIONS(7900), 7, + STATE(5111), 1, + sym_type_annotation, + STATE(5938), 1, + sym__initializer, + ACTIONS(7463), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [160375] = 9, + [160469] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - ACTIONS(7902), 1, + ACTIONS(129), 1, + anon_sym_import, + ACTIONS(7909), 1, sym_identifier, - STATE(4534), 1, + STATE(2296), 1, + sym__type_query_subscript_expression, + STATE(2297), 1, + sym__type_query_member_expression, + STATE(2412), 1, + sym__type_query_instantiation_expression, + STATE(2417), 1, + sym__type_query_call_expression, + STATE(4388), 1, sym_comment, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(5710), 1, - sym_variable_declarator, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - [160404] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5526), 1, + sym_import, + [160500] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7904), 1, - sym_identifier, - ACTIONS(7906), 1, - anon_sym_STAR, - ACTIONS(7908), 1, - anon_sym_LPAREN, - STATE(4535), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(4389), 1, sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(6617), 1, - sym__call_signature, - [160435] = 6, + STATE(6770), 1, + sym_statement_block, + ACTIONS(7913), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [160523] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4536), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(4390), 1, sym_comment, - STATE(5173), 1, - sym_type_annotation, - ACTIONS(7910), 5, + STATE(6789), 1, + sym_statement_block, + ACTIONS(7915), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [160458] = 4, + [160546] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4537), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(4391), 1, sym_comment, - ACTIONS(7656), 7, + STATE(6663), 1, + sym_statement_block, + ACTIONS(7915), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [160477] = 9, + anon_sym_PIPE_RBRACE, + [160569] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4105), 1, + ACTIONS(4121), 1, anon_sym_LBRACE, - ACTIONS(4107), 1, + ACTIONS(4123), 1, anon_sym_LBRACK, - ACTIONS(7902), 1, + ACTIONS(7917), 1, sym_identifier, - STATE(4538), 1, + STATE(4392), 1, sym_comment, - STATE(4584), 1, + STATE(4481), 1, sym__destructuring_pattern, - STATE(5708), 1, + STATE(5420), 1, sym_variable_declarator, - STATE(4537), 2, + STATE(4591), 2, sym_object_pattern, sym_array_pattern, - [160506] = 10, + [160598] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(3543), 1, - sym_class_body, - STATE(4539), 1, - sym_comment, - STATE(6325), 1, - sym_extends_clause, - STATE(6835), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [160537] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(7912), 1, - sym_identifier, - ACTIONS(7914), 1, - anon_sym_STAR, - STATE(4540), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4393), 1, sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(6786), 1, - sym__call_signature, - [160568] = 8, + STATE(5148), 1, + sym_type_annotation, + STATE(6004), 1, + sym__initializer, + ACTIONS(7463), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160625] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4541), 1, + STATE(4394), 1, sym_comment, - STATE(5458), 1, + STATE(5189), 1, sym_type_annotation, - STATE(6021), 1, + STATE(6006), 1, sym__initializer, - ACTIONS(7916), 3, + ACTIONS(7463), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160595] = 6, + [160652] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7587), 1, anon_sym_LBRACE, - STATE(4542), 1, + STATE(979), 1, + sym_class_body, + STATE(4395), 1, sym_comment, - STATE(6754), 1, - sym_statement_block, - ACTIONS(7920), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160618] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(5692), 1, + sym_extends_clause, + STATE(6314), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [160683] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(7922), 1, - sym_identifier, - ACTIONS(7924), 1, - anon_sym_STAR, - STATE(4543), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7701), 1, + anon_sym_LBRACE, + STATE(329), 1, + sym_class_body, + STATE(4396), 1, sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(6617), 1, - sym__call_signature, - [160649] = 6, + STATE(5692), 1, + sym_extends_clause, + STATE(6310), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [160714] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(7911), 1, anon_sym_LBRACE, - STATE(4544), 1, + STATE(4397), 1, sym_comment, - STATE(6747), 1, + STATE(6839), 1, sym_statement_block, - ACTIONS(7926), 5, + ACTIONS(7919), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [160672] = 6, + [160737] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(7921), 1, + anon_sym_EQ, + ACTIONS(7923), 1, + anon_sym_DOT, + STATE(4398), 1, + sym_comment, + ACTIONS(7885), 5, anon_sym_LBRACE, - STATE(4545), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_EQ_GT, + [160760] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4399), 1, sym_comment, - STATE(6512), 1, - sym_statement_block, - ACTIONS(7928), 5, + ACTIONS(7703), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160695] = 8, + anon_sym_COLON, + [160779] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4546), 1, + STATE(4400), 1, sym_comment, - STATE(5335), 1, + STATE(5099), 1, sym_type_annotation, - STATE(5922), 1, + STATE(5944), 1, sym__initializer, - ACTIONS(7429), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160722] = 8, + [160806] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4547), 1, + STATE(4401), 1, sym_comment, - STATE(5454), 1, + STATE(5227), 1, sym_type_annotation, - STATE(6019), 1, + STATE(6040), 1, sym__initializer, - ACTIONS(7916), 3, + ACTIONS(7463), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [160749] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [160833] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(7930), 1, - sym_identifier, - ACTIONS(7932), 1, - anon_sym_STAR, - STATE(4548), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4402), 1, sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(6786), 1, - sym__call_signature, - [160780] = 6, + STATE(5230), 1, + sym_type_annotation, + STATE(6041), 1, + sym__initializer, + ACTIONS(7463), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160860] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(7911), 1, anon_sym_LBRACE, - STATE(4549), 1, + STATE(4403), 1, sym_comment, - STATE(6570), 1, + STATE(6665), 1, sym_statement_block, - ACTIONS(7934), 5, + ACTIONS(7913), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [160803] = 9, + [160883] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4404), 1, + sym_comment, + STATE(5251), 1, + sym_type_annotation, + STATE(6056), 1, + sym__initializer, + ACTIONS(7463), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160910] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4284), 1, + ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7936), 1, + ACTIONS(7925), 1, sym_identifier, - ACTIONS(7938), 1, + ACTIONS(7927), 1, + anon_sym_STAR, + ACTIONS(7929), 1, anon_sym_LPAREN, - STATE(2761), 1, - sym_arguments, - STATE(4550), 1, + STATE(4405), 1, sym_comment, - STATE(6862), 1, - sym_type_arguments, - ACTIONS(7940), 2, - anon_sym_LBRACK, - sym_private_property_identifier, - [160832] = 10, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6648), 1, + sym__call_signature, + [160941] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - ACTIONS(7942), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7944), 1, - anon_sym_QMARK, - STATE(4551), 1, + STATE(4406), 1, sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(6702), 1, - sym__call_signature, - [160863] = 4, + STATE(5255), 1, + sym_type_annotation, + STATE(6062), 1, + sym__initializer, + ACTIONS(7463), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [160968] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4552), 1, - sym_comment, - ACTIONS(6624), 7, + ACTIONS(7931), 1, anon_sym_EQ, + STATE(4407), 1, + sym_comment, + ACTIONS(4369), 6, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, + anon_sym_RBRACK, anon_sym_QMARK, - [160882] = 6, + [160989] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, - anon_sym_LBRACE, - STATE(4553), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4408), 1, sym_comment, - STATE(6514), 1, - sym_statement_block, - ACTIONS(7946), 5, + STATE(5269), 1, + sym_type_annotation, + STATE(6097), 1, + sym__initializer, + ACTIONS(7463), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160905] = 6, + [161016] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, - anon_sym_LBRACE, - STATE(4554), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4409), 1, sym_comment, - STATE(6503), 1, - sym_statement_block, - ACTIONS(7948), 5, + STATE(5096), 1, + sym_type_annotation, + STATE(5942), 1, + sym__initializer, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160928] = 6, + [161043] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4410), 1, + sym_comment, + STATE(5273), 1, + sym_type_annotation, + STATE(6107), 1, + sym__initializer, + ACTIONS(7463), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161070] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7695), 1, anon_sym_LBRACE, - STATE(4555), 1, + STATE(1089), 1, + sym_class_body, + STATE(4411), 1, sym_comment, - STATE(6571), 1, - sym_statement_block, - ACTIONS(7946), 5, + STATE(5692), 1, + sym_extends_clause, + STATE(6305), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [161101] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4412), 1, + sym_comment, + STATE(4900), 1, + sym_type_annotation, + STATE(5691), 1, + sym__initializer, + ACTIONS(7463), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [160951] = 10, - ACTIONS(3), 1, + [161128] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4413), 1, + sym_comment, + STATE(4883), 1, + sym_type_annotation, + STATE(5679), 1, + sym__initializer, + ACTIONS(7463), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161155] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(129), 1, - anon_sym_import, - ACTIONS(7950), 1, - sym_identifier, - STATE(3901), 1, - sym__type_query_member_expression, - STATE(3905), 1, - sym__type_query_subscript_expression, - STATE(4118), 1, - sym__type_query_call_expression, - STATE(4237), 1, - sym__type_query_instantiation_expression, - STATE(4556), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4414), 1, sym_comment, - STATE(5686), 1, - sym_import, - [160982] = 10, - ACTIONS(3), 1, + STATE(5231), 1, + sym_type_annotation, + STATE(6055), 1, + sym__initializer, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161182] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4415), 1, + sym_comment, + STATE(5086), 1, + sym_type_annotation, + STATE(5925), 1, + sym__initializer, + ACTIONS(7446), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [161209] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(7952), 1, - sym_identifier, - ACTIONS(7954), 1, - anon_sym_STAR, - STATE(4557), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7394), 1, + anon_sym_EQ, + STATE(4416), 1, sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(6617), 1, - sym__call_signature, - [161013] = 6, + STATE(5490), 1, + sym_constraint, + STATE(6868), 1, + sym_default_type, + ACTIONS(7399), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(7934), 2, + anon_sym_COMMA, + anon_sym_GT, + [161236] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, - anon_sym_LBRACE, - STATE(4558), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4417), 1, sym_comment, - STATE(6573), 1, - sym_statement_block, - ACTIONS(7948), 5, + STATE(5254), 1, + sym_type_annotation, + STATE(6063), 1, + sym__initializer, + ACTIONS(7432), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [161036] = 6, + [161263] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(7571), 1, anon_sym_LBRACE, - STATE(4559), 1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + STATE(3051), 1, + sym_class_body, + STATE(4418), 1, sym_comment, - STATE(6519), 1, - sym_statement_block, - ACTIONS(7956), 5, + STATE(5692), 1, + sym_extends_clause, + STATE(6818), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [161294] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4419), 1, + sym_comment, + STATE(5301), 1, + sym_type_annotation, + STATE(6128), 1, + sym__initializer, + ACTIONS(7463), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [161059] = 8, + [161321] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4560), 1, + STATE(4420), 1, sym_comment, - STATE(5405), 1, + STATE(5302), 1, sym_type_annotation, - STATE(5973), 1, + STATE(6130), 1, sym__initializer, - ACTIONS(7423), 3, + ACTIONS(7463), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161086] = 8, + [161348] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7657), 1, + anon_sym_LBRACE, + STATE(4421), 1, + sym_comment, + STATE(4922), 1, + sym_class_body, + STATE(5692), 1, + sym_extends_clause, + STATE(6876), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [161379] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4561), 1, + STATE(4422), 1, sym_comment, - STATE(5126), 1, + STATE(5082), 1, sym_type_annotation, - STATE(5795), 1, + STATE(5917), 1, sym__initializer, - ACTIONS(7431), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161113] = 6, + [161406] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(7571), 1, anon_sym_LBRACE, - STATE(4562), 1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + STATE(3055), 1, + sym_class_body, + STATE(4423), 1, sym_comment, - STATE(6522), 1, - sym_statement_block, - ACTIONS(7958), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [161136] = 8, + STATE(5692), 1, + sym_extends_clause, + STATE(6873), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [161437] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4563), 1, + STATE(4424), 1, sym_comment, - STATE(5440), 1, + STATE(5244), 1, sym_type_annotation, - STATE(5999), 1, + STATE(6129), 1, sym__initializer, - ACTIONS(7423), 3, + ACTIONS(7444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161163] = 6, + [161464] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + ACTIONS(7917), 1, + sym_identifier, + STATE(4425), 1, + sym_comment, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(5582), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [161493] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7929), 1, + anon_sym_LPAREN, + ACTIONS(7936), 1, + sym_identifier, + ACTIONS(7938), 1, + anon_sym_STAR, + STATE(4426), 1, + sym_comment, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6454), 1, + sym__call_signature, + [161524] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7643), 1, anon_sym_LBRACE, - STATE(4564), 1, + STATE(1266), 1, + sym_class_body, + STATE(4427), 1, sym_comment, - STATE(6713), 1, - sym_statement_block, - ACTIONS(7956), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [161186] = 10, + STATE(5692), 1, + sym_extends_clause, + STATE(6812), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [161555] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + ACTIONS(7917), 1, + sym_identifier, + STATE(4428), 1, + sym_comment, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(5421), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [161584] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7908), 1, + ACTIONS(7929), 1, anon_sym_LPAREN, - ACTIONS(7960), 1, + ACTIONS(7940), 1, sym_identifier, - ACTIONS(7962), 1, + ACTIONS(7942), 1, anon_sym_STAR, - STATE(4565), 1, + STATE(4429), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6617), 1, + STATE(6648), 1, + sym__call_signature, + [161615] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7929), 1, + anon_sym_LPAREN, + ACTIONS(7944), 1, + sym_identifier, + ACTIONS(7946), 1, + anon_sym_STAR, + STATE(4430), 1, + sym_comment, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6454), 1, sym__call_signature, - [161217] = 6, + [161646] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, - anon_sym_LBRACE, - STATE(4566), 1, + ACTIONS(7948), 1, + anon_sym_COMMA, + ACTIONS(7950), 1, + anon_sym_RBRACE, + STATE(4431), 1, sym_comment, - STATE(6729), 1, - sym_statement_block, - ACTIONS(7958), 5, + STATE(5959), 1, + aux_sym_object_repeat1, + ACTIONS(4640), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [161671] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4432), 1, + sym_comment, + STATE(5245), 1, + sym_type_annotation, + STATE(6135), 1, + sym__initializer, + ACTIONS(7444), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [161240] = 10, + [161698] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7734), 1, + ACTIONS(7593), 1, anon_sym_LBRACE, - STATE(1763), 1, + STATE(1242), 1, sym_class_body, - STATE(4567), 1, + STATE(4433), 1, sym_comment, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6730), 1, + STATE(6425), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [161271] = 8, + [161729] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4568), 1, + STATE(4434), 1, sym_comment, - STATE(5518), 1, + STATE(4989), 1, sym_type_annotation, - STATE(6038), 1, + STATE(5897), 1, sym__initializer, - ACTIONS(7423), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161298] = 8, + [161756] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7635), 1, + anon_sym_LBRACE, + STATE(4435), 1, + sym_comment, + STATE(5692), 1, + sym_extends_clause, + STATE(6474), 1, + sym_class_heritage, + STATE(6803), 1, + sym_class_body, + STATE(7268), 1, + sym_implements_clause, + [161787] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4569), 1, + STATE(4436), 1, sym_comment, - STATE(5515), 1, + STATE(5071), 1, sym_type_annotation, - STATE(6043), 1, + STATE(5889), 1, sym__initializer, - ACTIONS(7423), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161325] = 10, + [161814] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7658), 1, + ACTIONS(7639), 1, anon_sym_LBRACE, - STATE(2657), 1, + STATE(1184), 1, sym_class_body, - STATE(4570), 1, + STATE(4437), 1, sym_comment, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6744), 1, + STATE(6369), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [161356] = 6, + [161845] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7587), 1, anon_sym_LBRACE, - STATE(4571), 1, + STATE(1012), 1, + sym_class_body, + STATE(4438), 1, sym_comment, - STATE(6564), 1, - sym_statement_block, - ACTIONS(7928), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [161379] = 10, + STATE(5692), 1, + sym_extends_clause, + STATE(6296), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [161876] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(129), 1, - anon_sym_import, - ACTIONS(7964), 1, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7929), 1, + anon_sym_LPAREN, + ACTIONS(7952), 1, sym_identifier, - STATE(2635), 1, - sym__type_query_subscript_expression, - STATE(2644), 1, - sym__type_query_member_expression, - STATE(2966), 1, - sym__type_query_call_expression, - STATE(2968), 1, - sym__type_query_instantiation_expression, - STATE(4572), 1, + ACTIONS(7954), 1, + anon_sym_STAR, + STATE(4439), 1, sym_comment, - STATE(5641), 1, - sym_import, - [161410] = 5, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6648), 1, + sym__call_signature, + [161907] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6204), 1, - sym__automatic_semicolon, - STATE(4573), 1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7657), 1, + anon_sym_LBRACE, + STATE(4440), 1, sym_comment, - ACTIONS(2166), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [161431] = 8, + STATE(4909), 1, + sym_class_body, + STATE(5692), 1, + sym_extends_clause, + STATE(6863), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [161938] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7956), 1, anon_sym_COLON, - STATE(4574), 1, + ACTIONS(7958), 1, + anon_sym_QMARK, + STATE(4441), 1, sym_comment, - STATE(5489), 1, - sym_type_annotation, - STATE(6070), 1, - sym__initializer, - ACTIONS(7423), 3, - sym__automatic_semicolon, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6559), 1, + sym__call_signature, + [161969] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4442), 1, + sym_comment, + ACTIONS(6639), 7, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [161458] = 8, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [161988] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4575), 1, + STATE(4443), 1, sym_comment, - STATE(5467), 1, + STATE(5172), 1, sym_type_annotation, - STATE(6075), 1, + STATE(6016), 1, sym__initializer, - ACTIONS(7423), 3, + ACTIONS(7455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161485] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4180), 1, - anon_sym_DQUOTE, - ACTIONS(4182), 1, - anon_sym_SQUOTE, - ACTIONS(7966), 1, - sym_identifier, - ACTIONS(7968), 1, - anon_sym_DOT, - STATE(992), 1, - sym_nested_identifier, - STATE(1046), 1, - sym_string, - STATE(1320), 1, - sym__module, - STATE(4576), 1, - sym_comment, - [161516] = 6, + [162015] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7697), 1, anon_sym_LBRACE, - STATE(4577), 1, + STATE(369), 1, + sym_class_body, + STATE(4444), 1, sym_comment, - STATE(6574), 1, - sym_statement_block, - ACTIONS(7970), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [161539] = 10, + STATE(5692), 1, + sym_extends_clause, + STATE(6364), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [162046] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7972), 1, - anon_sym_LBRACE, - ACTIONS(7974), 1, - anon_sym_LT, - ACTIONS(7976), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7978), 1, - anon_sym_LBRACE_PIPE, - STATE(1604), 1, - sym_object_type, - STATE(4578), 1, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7593), 1, + anon_sym_LBRACE, + STATE(1299), 1, + sym_class_body, + STATE(4445), 1, sym_comment, - STATE(5131), 1, - sym_type_parameters, - STATE(5804), 1, - sym_extends_type_clause, - [161570] = 10, + STATE(5692), 1, + sym_extends_clause, + STATE(6363), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [162077] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7571), 1, + anon_sym_LBRACE, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7706), 1, - anon_sym_LBRACE, - STATE(400), 1, + STATE(3153), 1, sym_class_body, - STATE(4579), 1, + STATE(4446), 1, sym_comment, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6814), 1, + STATE(6461), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [161601] = 6, + [162108] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, - anon_sym_LBRACE, - STATE(4580), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7958), 1, + anon_sym_QMARK, + ACTIONS(7960), 1, + anon_sym_COLON, + STATE(4447), 1, sym_comment, - STATE(6576), 1, - sym_statement_block, - ACTIONS(7980), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [161624] = 6, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6559), 1, + sym__call_signature, + [162139] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7657), 1, anon_sym_LBRACE, - STATE(4581), 1, + STATE(4448), 1, sym_comment, - STATE(6847), 1, - sym_statement_block, - ACTIONS(7980), 5, + STATE(4895), 1, + sym_class_body, + STATE(5692), 1, + sym_extends_clause, + STATE(6824), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [162170] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4449), 1, + sym_comment, + STATE(5261), 1, + sym_type_annotation, + STATE(6087), 1, + sym__initializer, + ACTIONS(7432), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [161647] = 10, + [162197] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7908), 1, + ACTIONS(7929), 1, anon_sym_LPAREN, - ACTIONS(7982), 1, + ACTIONS(7962), 1, sym_identifier, - ACTIONS(7984), 1, + ACTIONS(7964), 1, anon_sym_STAR, - STATE(4582), 1, + STATE(4450), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6786), 1, + STATE(6454), 1, sym__call_signature, - [161678] = 6, + [162228] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, - anon_sym_LBRACE, - STATE(4583), 1, + STATE(4451), 1, sym_comment, - STATE(6849), 1, - sym_statement_block, - ACTIONS(7970), 5, + ACTIONS(7966), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [161701] = 8, + [162247] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4584), 1, + STATE(4452), 1, sym_comment, - STATE(5246), 1, + STATE(5224), 1, sym_type_annotation, - STATE(6228), 1, + STATE(5609), 1, sym__initializer, - ACTIONS(7524), 3, + ACTIONS(7463), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161728] = 8, + [162274] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4585), 1, + STATE(4453), 1, sym_comment, - STATE(5402), 1, + STATE(4849), 1, sym_type_annotation, - STATE(6112), 1, + STATE(5623), 1, sym__initializer, - ACTIONS(7423), 3, + ACTIONS(7463), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161755] = 10, + [162301] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7571), 1, + anon_sym_LBRACE, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + STATE(3027), 1, + sym_class_body, + STATE(4454), 1, + sym_comment, + STATE(5692), 1, + sym_extends_clause, + STATE(6800), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [162332] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(7986), 1, + ACTIONS(129), 1, + anon_sym_import, + ACTIONS(7968), 1, sym_identifier, - ACTIONS(7988), 1, - anon_sym_STAR, - STATE(4586), 1, + STATE(2579), 1, + sym__type_query_member_expression, + STATE(2580), 1, + sym__type_query_subscript_expression, + STATE(2844), 1, + sym__type_query_call_expression, + STATE(2845), 1, + sym__type_query_instantiation_expression, + STATE(4455), 1, sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(6617), 1, - sym__call_signature, - [161786] = 8, + STATE(5497), 1, + sym_import, + [162363] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + ACTIONS(7917), 1, + sym_identifier, + STATE(4456), 1, + sym_comment, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(5389), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [162392] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + ACTIONS(7917), 1, + sym_identifier, + STATE(4457), 1, + sym_comment, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(5891), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [162421] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4587), 1, + STATE(4458), 1, sym_comment, - STATE(5364), 1, + STATE(5353), 1, sym_type_annotation, - STATE(6148), 1, + STATE(6273), 1, sym__initializer, - ACTIONS(7423), 3, + ACTIONS(7907), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161813] = 4, + [162448] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4588), 1, - sym_comment, - ACTIONS(4327), 7, + ACTIONS(7244), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [161832] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4295), 1, + ACTIONS(7252), 1, anon_sym_COLON, - ACTIONS(7990), 1, - anon_sym_EQ, - ACTIONS(7994), 1, - anon_sym_QMARK, - STATE(4589), 1, + STATE(4459), 1, sym_comment, - STATE(5640), 1, + STATE(5367), 1, sym_type_annotation, - STATE(6759), 1, + STATE(6223), 1, sym__initializer, - ACTIONS(7992), 2, + ACTIONS(7907), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - [161861] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7996), 1, - sym_identifier, - ACTIONS(7998), 1, - anon_sym_DOT, - STATE(4590), 1, - sym_comment, - STATE(5025), 1, - sym_nested_identifier, - STATE(5740), 1, - sym_string, - STATE(6887), 1, - sym__module, - [161892] = 10, + anon_sym_SEMI, + [162475] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7908), 1, + ACTIONS(7929), 1, anon_sym_LPAREN, - ACTIONS(8000), 1, + ACTIONS(7970), 1, sym_identifier, - ACTIONS(8002), 1, + ACTIONS(7972), 1, anon_sym_STAR, - STATE(4591), 1, + STATE(4460), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6786), 1, + STATE(6454), 1, sym__call_signature, - [161923] = 10, + [162506] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(208), 1, - anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7974), 1, - anon_sym_LT, - ACTIONS(7976), 1, - anon_sym_extends, - ACTIONS(8004), 1, - anon_sym_LBRACE_PIPE, - STATE(4592), 1, + STATE(4461), 1, sym_comment, - STATE(5290), 1, - sym_type_parameters, - STATE(6198), 1, - sym_extends_type_clause, - STATE(7102), 1, - sym_object_type, - [161954] = 8, + ACTIONS(5964), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [162525] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4593), 1, + STATE(4462), 1, sym_comment, - STATE(5113), 1, + STATE(5010), 1, sym_type_annotation, - STATE(5792), 1, + STATE(5809), 1, sym__initializer, - ACTIONS(7450), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [161981] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + [162552] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(8006), 1, - sym_identifier, - ACTIONS(8008), 1, - anon_sym_STAR, - STATE(4594), 1, - sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(6617), 1, - sym__call_signature, - [162012] = 10, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(8010), 1, - sym_identifier, - ACTIONS(8012), 1, - anon_sym_STAR, - STATE(4595), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4463), 1, sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(6746), 1, - sym__call_signature, - [162043] = 6, + STATE(5057), 1, + sym_type_annotation, + STATE(5870), 1, + sym__initializer, + ACTIONS(7446), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [162579] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7249), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4596), 1, + STATE(4464), 1, sym_comment, - STATE(5299), 1, + STATE(5052), 1, sym_type_annotation, - ACTIONS(8014), 5, + STATE(5868), 1, + sym__initializer, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162066] = 10, + [162606] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7624), 1, + ACTIONS(7759), 1, anon_sym_LBRACE, - STATE(3197), 1, + STATE(2497), 1, sym_class_body, - STATE(4597), 1, + STATE(4465), 1, sym_comment, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6785), 1, + STATE(6446), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [162097] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(8016), 1, - sym_identifier, - ACTIONS(8018), 1, - anon_sym_STAR, - STATE(4598), 1, - sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(6786), 1, - sym__call_signature, - [162128] = 6, + [162637] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, - anon_sym_LBRACE, - STATE(4599), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4466), 1, sym_comment, - STATE(6902), 1, - sym_statement_block, - ACTIONS(8020), 5, + STATE(5371), 1, + sym_type_annotation, + STATE(6221), 1, + sym__initializer, + ACTIONS(7432), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162151] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(129), 1, - anon_sym_import, - ACTIONS(8022), 1, - sym_identifier, - STATE(3848), 1, - sym__type_query_member_expression, - STATE(3849), 1, - sym__type_query_subscript_expression, - STATE(3915), 1, - sym__type_query_call_expression, - STATE(4026), 1, - sym__type_query_instantiation_expression, - STATE(4600), 1, - sym_comment, - STATE(5572), 1, - sym_import, - [162182] = 6, + [162664] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(7911), 1, anon_sym_LBRACE, - STATE(4601), 1, + STATE(4467), 1, sym_comment, - STATE(6985), 1, + STATE(6359), 1, sym_statement_block, - ACTIONS(8024), 5, + ACTIONS(7974), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [162205] = 6, + [162687] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, - anon_sym_LBRACE, - STATE(4602), 1, + STATE(4468), 1, sym_comment, - STATE(6628), 1, - sym_statement_block, - ACTIONS(8026), 5, - sym__automatic_semicolon, + ACTIONS(6600), 7, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162228] = 6, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [162706] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(4121), 1, anon_sym_LBRACE, - STATE(4603), 1, + ACTIONS(4123), 1, + anon_sym_LBRACK, + ACTIONS(7917), 1, + sym_identifier, + STATE(4469), 1, sym_comment, - STATE(6989), 1, - sym_statement_block, - ACTIONS(8026), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [162251] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(5381), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [162735] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8028), 1, - sym_identifier, - STATE(4604), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4470), 1, sym_comment, - ACTIONS(4961), 6, + ACTIONS(7611), 7, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [162272] = 10, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [162754] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7786), 1, + ACTIONS(7719), 1, anon_sym_LBRACE, - STATE(1022), 1, + STATE(408), 1, sym_class_body, - STATE(4605), 1, + STATE(4471), 1, sym_comment, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6799), 1, + STATE(6920), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [162303] = 10, + [162785] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7624), 1, - anon_sym_LBRACE, - STATE(3156), 1, - sym_class_body, - STATE(4606), 1, + ACTIONS(7394), 1, + anon_sym_EQ, + STATE(4472), 1, sym_comment, - STATE(6325), 1, - sym_extends_clause, - STATE(6940), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [162334] = 8, + STATE(5520), 1, + sym_constraint, + STATE(6696), 1, + sym_default_type, + ACTIONS(7399), 2, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(7976), 2, + anon_sym_COMMA, + anon_sym_GT, + [162812] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4607), 1, + STATE(4473), 1, sym_comment, - STATE(5248), 1, + STATE(5228), 1, sym_type_annotation, - STATE(5866), 1, + STATE(6158), 1, sym__initializer, - ACTIONS(7448), 3, + ACTIONS(7434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162361] = 8, + [162839] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4608), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(4474), 1, sym_comment, - STATE(5510), 1, - sym_type_annotation, - STATE(5971), 1, - sym__initializer, - ACTIONS(7916), 3, + STATE(6698), 1, + sym_statement_block, + ACTIONS(7978), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [162388] = 8, + anon_sym_PIPE_RBRACE, + [162862] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4609), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(4475), 1, sym_comment, - STATE(5400), 1, - sym_type_annotation, - STATE(5969), 1, - sym__initializer, - ACTIONS(7916), 3, + STATE(6434), 1, + sym_statement_block, + ACTIONS(7980), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [162415] = 4, + anon_sym_PIPE_RBRACE, + [162885] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4610), 1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7759), 1, + anon_sym_LBRACE, + STATE(3386), 1, + sym_class_body, + STATE(4476), 1, + sym_comment, + STATE(5692), 1, + sym_extends_clause, + STATE(6737), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [162916] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4477), 1, sym_comment, - ACTIONS(4426), 7, + STATE(5106), 1, + sym_type_annotation, + STATE(5958), 1, + sym__initializer, + ACTIONS(7446), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - [162434] = 10, + [162943] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + ACTIONS(7917), 1, + sym_identifier, + STATE(4478), 1, + sym_comment, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(5382), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [162972] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7654), 1, + ACTIONS(7639), 1, anon_sym_LBRACE, - STATE(1434), 1, + STATE(1137), 1, sym_class_body, - STATE(4611), 1, + STATE(4479), 1, sym_comment, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6779), 1, + STATE(6424), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [162465] = 10, + [163003] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7908), 1, + ACTIONS(7929), 1, anon_sym_LPAREN, - ACTIONS(8030), 1, + ACTIONS(7982), 1, sym_identifier, - ACTIONS(8032), 1, + ACTIONS(7984), 1, anon_sym_STAR, - STATE(4612), 1, + STATE(4480), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6594), 1, + STATE(6648), 1, sym__call_signature, - [162496] = 8, + [163034] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4613), 1, + STATE(4481), 1, sym_comment, - STATE(4994), 1, + STATE(4980), 1, sym_type_annotation, - STATE(6221), 1, + STATE(5761), 1, sym__initializer, - ACTIONS(7427), 3, + ACTIONS(7535), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162523] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7706), 1, - anon_sym_LBRACE, - STATE(394), 1, - sym_class_body, - STATE(4614), 1, - sym_comment, - STATE(6325), 1, - sym_extends_clause, - STATE(6776), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [162554] = 9, + [163061] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - ACTIONS(7902), 1, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7929), 1, + anon_sym_LPAREN, + ACTIONS(7986), 1, sym_identifier, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(4615), 1, + ACTIONS(7988), 1, + anon_sym_STAR, + STATE(4482), 1, sym_comment, - STATE(5716), 1, - sym_variable_declarator, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - [162583] = 9, - ACTIONS(3), 1, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6454), 1, + sym__call_signature, + [163092] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7990), 1, + sym__automatic_semicolon, + STATE(4483), 1, + sym_comment, + ACTIONS(2222), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [163113] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - ACTIONS(7902), 1, - sym_identifier, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(4616), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4484), 1, sym_comment, - STATE(5603), 1, - sym_variable_declarator, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - [162612] = 4, + STATE(5280), 1, + sym_type_annotation, + STATE(6110), 1, + sym__initializer, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [163140] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4617), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4485), 1, sym_comment, - ACTIONS(2192), 7, + STATE(5213), 1, + sym_type_annotation, + ACTIONS(7992), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [162631] = 8, + [163163] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4618), 1, + STATE(4486), 1, sym_comment, - STATE(5377), 1, + STATE(5283), 1, sym_type_annotation, - STATE(6142), 1, + STATE(6120), 1, sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7432), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162658] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7786), 1, - anon_sym_LBRACE, - STATE(1174), 1, - sym_class_body, - STATE(4619), 1, - sym_comment, - STATE(6325), 1, - sym_extends_clause, - STATE(6770), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [162689] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(8036), 1, - anon_sym_DOT, - STATE(4620), 1, - sym_comment, - STATE(5611), 1, - sym_arguments, - ACTIONS(8034), 4, - anon_sym_export, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [162714] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - ACTIONS(7902), 1, - sym_identifier, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(4621), 1, - sym_comment, - STATE(5604), 1, - sym_variable_declarator, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - [162743] = 10, + [163190] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4123), 1, + ACTIONS(1991), 1, anon_sym_DQUOTE, - ACTIONS(4125), 1, + ACTIONS(1993), 1, anon_sym_SQUOTE, - ACTIONS(8038), 1, + ACTIONS(7994), 1, sym_identifier, - ACTIONS(8040), 1, + ACTIONS(7996), 1, anon_sym_DOT, - STATE(1197), 1, + STATE(4357), 1, sym_nested_identifier, - STATE(1527), 1, + STATE(4487), 1, + sym_comment, + STATE(4587), 1, sym_string, - STATE(1730), 1, + STATE(4991), 1, sym__module, - STATE(4622), 1, - sym_comment, - [162774] = 7, + [163221] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1397), 1, + anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8042), 1, - anon_sym_COMMA, - ACTIONS(8044), 1, - anon_sym_RBRACE, - STATE(4623), 1, - sym_comment, - STATE(5843), 1, - aux_sym_object_repeat1, - ACTIONS(4636), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(7998), 1, anon_sym_LT, - anon_sym_QMARK, - [162799] = 8, + ACTIONS(8000), 1, + anon_sym_extends, + ACTIONS(8002), 1, + anon_sym_LBRACE_PIPE, + STATE(4488), 1, + sym_comment, + STATE(4985), 1, + sym_object_type, + STATE(5016), 1, + sym_type_parameters, + STATE(5828), 1, + sym_extends_type_clause, + [163252] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4624), 1, + STATE(4489), 1, sym_comment, - STATE(5221), 1, + STATE(5044), 1, sym_type_annotation, - STATE(6254), 1, + STATE(5857), 1, sym__initializer, - ACTIONS(7439), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162826] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - ACTIONS(7902), 1, - sym_identifier, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(4625), 1, - sym_comment, - STATE(5717), 1, - sym_variable_declarator, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - [162855] = 8, + [163279] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4626), 1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7643), 1, + anon_sym_LBRACE, + STATE(1499), 1, + sym_class_body, + STATE(4490), 1, sym_comment, - STATE(5193), 1, - sym_type_annotation, - STATE(6299), 1, - sym__initializer, - ACTIONS(7439), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [162882] = 10, + STATE(5692), 1, + sym_extends_clause, + STATE(6666), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [163310] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7624), 1, + ACTIONS(7697), 1, anon_sym_LBRACE, - STATE(3353), 1, + STATE(355), 1, sym_class_body, - STATE(4627), 1, + STATE(4491), 1, sym_comment, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6843), 1, + STATE(6521), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [162913] = 8, + [163341] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4628), 1, + STATE(4492), 1, sym_comment, - STATE(5165), 1, + STATE(5026), 1, sym_type_annotation, - STATE(6327), 1, + STATE(5852), 1, sym__initializer, - ACTIONS(7439), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162940] = 8, + [163368] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4629), 1, + STATE(4493), 1, sym_comment, - STATE(5159), 1, - sym_type_annotation, - STATE(6334), 1, - sym__initializer, - ACTIONS(7439), 3, + ACTIONS(7633), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [162967] = 8, + anon_sym_COLON, + [163387] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4630), 1, + STATE(4494), 1, sym_comment, - STATE(5156), 1, + STATE(5018), 1, sym_type_annotation, - STATE(6345), 1, + STATE(5836), 1, sym__initializer, - ACTIONS(7439), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [162994] = 8, + [163414] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4631), 1, + STATE(4495), 1, sym_comment, - STATE(5149), 1, + STATE(5133), 1, sym_type_annotation, - STATE(6348), 1, + STATE(5999), 1, sym__initializer, - ACTIONS(7439), 3, + ACTIONS(7436), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163021] = 8, + [163441] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4632), 1, + STATE(4496), 1, sym_comment, - STATE(5140), 1, + STATE(5235), 1, sym_type_annotation, - STATE(6367), 1, + STATE(6099), 1, sym__initializer, - ACTIONS(7439), 3, + ACTIONS(7444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163048] = 8, + [163468] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4633), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(4497), 1, sym_comment, - STATE(5128), 1, - sym_type_annotation, - STATE(6369), 1, - sym__initializer, - ACTIONS(7439), 3, + STATE(6436), 1, + sym_statement_block, + ACTIONS(8004), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [163075] = 8, + anon_sym_PIPE_RBRACE, + [163491] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4634), 1, - sym_comment, - STATE(5006), 1, - sym_type_annotation, - STATE(6410), 1, - sym__initializer, - ACTIONS(7439), 3, + ACTIONS(8006), 1, sym__automatic_semicolon, + STATE(4498), 1, + sym_comment, + ACTIONS(2164), 6, anon_sym_COMMA, - anon_sym_SEMI, - [163102] = 8, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [163512] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4635), 1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7719), 1, + anon_sym_LBRACE, + STATE(453), 1, + sym_class_body, + STATE(4499), 1, sym_comment, - STATE(5002), 1, - sym_type_annotation, - STATE(6434), 1, - sym__initializer, - ACTIONS(7439), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [163129] = 8, + STATE(5692), 1, + sym_extends_clause, + STATE(6671), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [163543] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4636), 1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7635), 1, + anon_sym_LBRACE, + STATE(4500), 1, sym_comment, - STATE(5001), 1, - sym_type_annotation, - STATE(6428), 1, - sym__initializer, - ACTIONS(7439), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [163156] = 8, + STATE(5692), 1, + sym_extends_clause, + STATE(6419), 1, + sym_class_heritage, + STATE(6851), 1, + sym_class_body, + STATE(7268), 1, + sym_implements_clause, + [163574] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4637), 1, + STATE(4501), 1, sym_comment, - STATE(5007), 1, + STATE(4856), 1, sym_type_annotation, - STATE(6424), 1, + STATE(5652), 1, sym__initializer, - ACTIONS(7439), 3, + ACTIONS(8008), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163183] = 10, + [163601] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7974), 1, - anon_sym_LT, - ACTIONS(7976), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(8046), 1, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7657), 1, anon_sym_LBRACE, - ACTIONS(8048), 1, - anon_sym_LBRACE_PIPE, - STATE(1755), 1, - sym_object_type, - STATE(4638), 1, + STATE(4502), 1, sym_comment, - STATE(5318), 1, - sym_type_parameters, - STATE(6183), 1, - sym_extends_type_clause, - [163214] = 8, + STATE(4931), 1, + sym_class_body, + STATE(5692), 1, + sym_extends_clause, + STATE(6906), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [163632] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4639), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(4503), 1, sym_comment, - STATE(5068), 1, - sym_type_annotation, - STATE(6406), 1, - sym__initializer, - ACTIONS(7439), 3, + STATE(6801), 1, + sym_statement_block, + ACTIONS(8010), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [163241] = 8, + anon_sym_PIPE_RBRACE, + [163655] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4640), 1, + STATE(4504), 1, sym_comment, - STATE(5071), 1, + STATE(5108), 1, sym_type_annotation, - STATE(6403), 1, + STATE(5962), 1, sym__initializer, - ACTIONS(7439), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163268] = 8, + [163682] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4641), 1, + STATE(4505), 1, sym_comment, - STATE(5164), 1, + STATE(5309), 1, sym_type_annotation, - STATE(6399), 1, + STATE(6152), 1, sym__initializer, - ACTIONS(7439), 3, + ACTIONS(7432), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163295] = 8, + [163709] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4642), 1, + STATE(4506), 1, sym_comment, - STATE(5094), 1, - sym_type_annotation, - STATE(6395), 1, - sym__initializer, - ACTIONS(7439), 3, - sym__automatic_semicolon, + ACTIONS(4369), 7, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [163322] = 8, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [163728] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4643), 1, + ACTIONS(7998), 1, + anon_sym_LT, + ACTIONS(8000), 1, + anon_sym_extends, + ACTIONS(8012), 1, + anon_sym_LBRACE, + ACTIONS(8014), 1, + anon_sym_LBRACE_PIPE, + STATE(1406), 1, + sym_object_type, + STATE(4507), 1, sym_comment, - STATE(5121), 1, - sym_type_annotation, - STATE(6382), 1, - sym__initializer, - ACTIONS(7439), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [163349] = 9, + STATE(5001), 1, + sym_type_parameters, + STATE(5800), 1, + sym_extends_type_clause, + [163759] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4284), 1, - anon_sym_LT, - ACTIONS(7936), 1, + ACTIONS(4196), 1, + anon_sym_DQUOTE, + ACTIONS(4198), 1, + anon_sym_SQUOTE, + ACTIONS(8016), 1, sym_identifier, - ACTIONS(8050), 1, - anon_sym_LPAREN, - STATE(3289), 1, - sym_arguments, - STATE(4644), 1, + ACTIONS(8018), 1, + anon_sym_DOT, + STATE(984), 1, + sym_nested_identifier, + STATE(1095), 1, + sym_string, + STATE(1481), 1, + sym__module, + STATE(4508), 1, sym_comment, - STATE(6885), 1, - sym_type_arguments, - ACTIONS(7940), 2, + [163790] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, anon_sym_LBRACK, - sym_private_property_identifier, - [163378] = 4, + ACTIONS(8020), 1, + sym_identifier, + STATE(4285), 1, + sym__destructuring_pattern, + STATE(4509), 1, + sym_comment, + STATE(5556), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [163819] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + ACTIONS(8022), 1, + sym_identifier, + STATE(4253), 1, + sym__destructuring_pattern, + STATE(4510), 1, + sym_comment, + STATE(5557), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [163848] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4645), 1, - sym_comment, - ACTIONS(6519), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(4297), 1, anon_sym_COLON, - anon_sym_LT, + ACTIONS(8024), 1, + anon_sym_EQ, + ACTIONS(8028), 1, anon_sym_QMARK, - [163397] = 10, + STATE(4511), 1, + sym_comment, + STATE(5534), 1, + sym_type_annotation, + STATE(6601), 1, + sym__initializer, + ACTIONS(8026), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [163877] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7686), 1, + ACTIONS(7701), 1, anon_sym_LBRACE, - STATE(1551), 1, + STATE(314), 1, sym_class_body, - STATE(4646), 1, + STATE(4512), 1, sym_comment, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6850), 1, + STATE(6861), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [163428] = 8, + [163908] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(129), 1, + anon_sym_import, + ACTIONS(8030), 1, + sym_identifier, + STATE(3771), 1, + sym__type_query_subscript_expression, + STATE(3774), 1, + sym__type_query_member_expression, + STATE(3952), 1, + sym__type_query_call_expression, + STATE(4095), 1, + sym__type_query_instantiation_expression, + STATE(4513), 1, + sym_comment, + STATE(5503), 1, + sym_import, + [163939] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4647), 1, + STATE(4514), 1, sym_comment, - STATE(5160), 1, + STATE(5011), 1, sym_type_annotation, - STATE(6346), 1, + STATE(5819), 1, sym__initializer, - ACTIONS(7439), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163455] = 8, + [163966] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4648), 1, + STATE(4515), 1, sym_comment, - STATE(5197), 1, + STATE(5204), 1, sym_type_annotation, - STATE(6304), 1, - sym__initializer, - ACTIONS(7439), 3, + ACTIONS(8032), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [163482] = 8, + anon_sym_PIPE_RBRACE, + [163989] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4649), 1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7657), 1, + anon_sym_LBRACE, + STATE(4516), 1, sym_comment, - STATE(5201), 1, - sym_type_annotation, - STATE(6294), 1, - sym__initializer, - ACTIONS(7439), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [163509] = 10, + STATE(5692), 1, + sym_extends_clause, + STATE(5926), 1, + sym_class_body, + STATE(6456), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [164020] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7571), 1, + anon_sym_LBRACE, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7638), 1, - anon_sym_LBRACE, - STATE(449), 1, + STATE(3278), 1, sym_class_body, - STATE(4650), 1, + STATE(4517), 1, sym_comment, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6855), 1, + STATE(6659), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [163540] = 8, + [164051] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + ACTIONS(7917), 1, + sym_identifier, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(4518), 1, + sym_comment, + STATE(5388), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [164080] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4651), 1, + STATE(4519), 1, sym_comment, - STATE(5218), 1, + STATE(5351), 1, sym_type_annotation, - STATE(6273), 1, + STATE(6275), 1, sym__initializer, - ACTIONS(7439), 3, + ACTIONS(7907), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163567] = 8, + [164107] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4652), 1, + ACTIONS(7571), 1, + anon_sym_LBRACE, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + STATE(3000), 1, + sym_class_body, + STATE(4520), 1, sym_comment, - STATE(5219), 1, - sym_type_annotation, - STATE(6271), 1, - sym__initializer, - ACTIONS(7439), 3, + STATE(5692), 1, + sym_extends_clause, + STATE(6678), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [164138] = 10, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7571), 1, + anon_sym_LBRACE, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + STATE(3183), 1, + sym_class_body, + STATE(4521), 1, + sym_comment, + STATE(5692), 1, + sym_extends_clause, + STATE(6847), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [164169] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4522), 1, + sym_comment, + ACTIONS(5928), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [163594] = 4, + anon_sym_COLON, + [164188] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4653), 1, + STATE(4523), 1, sym_comment, - ACTIONS(4448), 7, + ACTIONS(5970), 7, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_DOT, - [163613] = 10, + anon_sym_COLON, + [164207] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8052), 1, + ACTIONS(7911), 1, anon_sym_LBRACE, - ACTIONS(8054), 1, - anon_sym_COMMA, - ACTIONS(8056), 1, - anon_sym_DOT, - ACTIONS(8058), 1, - anon_sym_LT, - ACTIONS(8060), 1, - anon_sym_LBRACE_PIPE, - STATE(4654), 1, + STATE(4524), 1, sym_comment, - STATE(5662), 1, - aux_sym_extends_type_clause_repeat1, - STATE(6408), 1, - sym_type_arguments, - [163644] = 10, + STATE(6911), 1, + sym_statement_block, + ACTIONS(8034), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [164230] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7734), 1, - anon_sym_LBRACE, - STATE(1699), 1, - sym_class_body, - STATE(4655), 1, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7929), 1, + anon_sym_LPAREN, + ACTIONS(8036), 1, + sym_identifier, + ACTIONS(8038), 1, + anon_sym_STAR, + STATE(4525), 1, sym_comment, - STATE(6325), 1, - sym_extends_clause, - STATE(6863), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [163675] = 10, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6454), 1, + sym__call_signature, + [164261] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7654), 1, + ACTIONS(7631), 1, anon_sym_LBRACE, - STATE(1329), 1, + STATE(1569), 1, sym_class_body, - STATE(4656), 1, + STATE(4526), 1, sym_comment, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6757), 1, + STATE(6546), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [163706] = 6, + [164292] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7235), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(4657), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4527), 1, sym_comment, - ACTIONS(8062), 2, + STATE(5005), 1, + sym_type_annotation, + STATE(5806), 1, + sym__initializer, + ACTIONS(7446), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4636), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [163729] = 4, + anon_sym_SEMI, + [164319] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4658), 1, - sym_comment, - ACTIONS(7632), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(8040), 1, anon_sym_LBRACE, + ACTIONS(8042), 1, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(8044), 1, anon_sym_DOT, - [163748] = 8, + ACTIONS(8046), 1, + anon_sym_LT, + ACTIONS(8048), 1, + anon_sym_LBRACE_PIPE, + STATE(4528), 1, + sym_comment, + STATE(5459), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5638), 1, + sym_type_arguments, + [164350] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4659), 1, + STATE(4529), 1, sym_comment, - STATE(5230), 1, + STATE(5003), 1, sym_type_annotation, - STATE(6255), 1, + STATE(5802), 1, sym__initializer, - ACTIONS(7439), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163775] = 4, + [164377] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(7481), 1, + sym_identifier, + ACTIONS(7551), 1, + anon_sym_type, + STATE(4530), 1, + sym_comment, + STATE(5555), 1, + sym_string, + STATE(6860), 1, + sym__import_identifier, + STATE(6989), 1, + sym__module_export_name, + [164408] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4660), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4531), 1, sym_comment, - ACTIONS(2248), 7, + STATE(5141), 1, + sym_type_annotation, + STATE(5985), 1, + sym__initializer, + ACTIONS(7459), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [163794] = 4, + [164435] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4661), 1, + STATE(4532), 1, sym_comment, - ACTIONS(7580), 7, + ACTIONS(2174), 7, 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_DOT, - [163813] = 8, + anon_sym_PIPE_RBRACE, + [164454] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4662), 1, + STATE(4533), 1, sym_comment, - STATE(5239), 1, - sym_type_annotation, - STATE(6240), 1, - sym__initializer, - ACTIONS(7439), 3, + ACTIONS(2168), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [163840] = 8, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [164473] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4663), 1, + ACTIONS(7998), 1, + anon_sym_LT, + ACTIONS(8000), 1, + anon_sym_extends, + ACTIONS(8050), 1, + anon_sym_LBRACE, + ACTIONS(8052), 1, + anon_sym_LBRACE_PIPE, + STATE(1030), 1, + sym_object_type, + STATE(4534), 1, sym_comment, - STATE(5345), 1, - sym_type_annotation, - STATE(5925), 1, - sym__initializer, - ACTIONS(7448), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [163867] = 10, + STATE(5358), 1, + sym_type_parameters, + STATE(6260), 1, + sym_extends_type_clause, + [164504] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(4178), 1, + anon_sym_DQUOTE, + ACTIONS(4180), 1, + anon_sym_SQUOTE, + ACTIONS(8054), 1, + sym_identifier, + ACTIONS(8056), 1, + anon_sym_DOT, + STATE(970), 1, + sym_nested_identifier, + STATE(976), 1, + sym_string, + STATE(1211), 1, + sym__module, + STATE(4535), 1, + sym_comment, + [164535] = 10, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7588), 1, - anon_sym_LBRACE, - STATE(4664), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(129), 1, + anon_sym_import, + ACTIONS(8058), 1, + sym_identifier, + STATE(3832), 1, + sym__type_query_member_expression, + STATE(3834), 1, + sym__type_query_subscript_expression, + STATE(4054), 1, + sym__type_query_call_expression, + STATE(4203), 1, + sym__type_query_instantiation_expression, + STATE(4536), 1, sym_comment, - STATE(6308), 1, - sym_class_body, - STATE(6325), 1, - sym_extends_clause, - STATE(7065), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [163898] = 8, + STATE(5432), 1, + sym_import, + [164566] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4665), 1, + STATE(4537), 1, sym_comment, - STATE(5341), 1, + STATE(5330), 1, sym_type_annotation, - STATE(5924), 1, + STATE(6196), 1, sym__initializer, - ACTIONS(7448), 3, + ACTIONS(7432), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163925] = 10, + [164593] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7908), 1, + ACTIONS(7929), 1, anon_sym_LPAREN, - ACTIONS(8065), 1, + ACTIONS(8060), 1, sym_identifier, - ACTIONS(8067), 1, + ACTIONS(8062), 1, anon_sym_STAR, - STATE(4666), 1, + STATE(4538), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6786), 1, + STATE(6648), 1, sym__call_signature, - [163956] = 8, + [164624] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4667), 1, + STATE(4539), 1, sym_comment, - STATE(5329), 1, + STATE(5332), 1, sym_type_annotation, - STATE(5912), 1, + STATE(6210), 1, sym__initializer, - ACTIONS(7448), 3, + ACTIONS(7432), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [163983] = 6, + [164651] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, - anon_sym_LBRACE, - STATE(4668), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4540), 1, sym_comment, - STATE(7005), 1, - sym_statement_block, - ACTIONS(8069), 5, + STATE(5366), 1, + sym_type_annotation, + STATE(6215), 1, + sym__initializer, + ACTIONS(7432), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [164006] = 4, + [164678] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4669), 1, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7929), 1, + anon_sym_LPAREN, + ACTIONS(8064), 1, + sym_identifier, + ACTIONS(8066), 1, + anon_sym_STAR, + STATE(4541), 1, sym_comment, - ACTIONS(7728), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [164025] = 8, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6454), 1, + sym__call_signature, + [164709] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4670), 1, + STATE(4542), 1, sym_comment, - STATE(5322), 1, + STATE(5372), 1, sym_type_annotation, - STATE(5911), 1, + STATE(6218), 1, sym__initializer, - ACTIONS(7448), 3, + ACTIONS(7432), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164052] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7472), 1, - sym_identifier, - ACTIONS(7544), 1, - anon_sym_type, - STATE(4671), 1, - sym_comment, - STATE(5677), 1, - sym_string, - STATE(7040), 1, - sym__import_identifier, - STATE(7172), 1, - sym__module_export_name, - [164083] = 8, + [164736] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4672), 1, + STATE(4543), 1, sym_comment, - STATE(5304), 1, + STATE(5249), 1, sym_type_annotation, - STATE(5894), 1, + STATE(6149), 1, sym__initializer, - ACTIONS(7448), 3, + ACTIONS(7444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164110] = 8, + [164763] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4673), 1, + STATE(4544), 1, sym_comment, - STATE(5295), 1, + STATE(5252), 1, sym_type_annotation, - STATE(5892), 1, + STATE(6150), 1, sym__initializer, - ACTIONS(7448), 3, + ACTIONS(7444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164137] = 10, + [164790] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7588), 1, - anon_sym_LBRACE, - STATE(4674), 1, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7929), 1, + anon_sym_LPAREN, + ACTIONS(8068), 1, + sym_identifier, + ACTIONS(8070), 1, + anon_sym_STAR, + STATE(4545), 1, sym_comment, - STATE(6204), 1, - sym_class_body, - STATE(6325), 1, - sym_extends_clause, - STATE(7121), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [164168] = 10, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6648), 1, + sym__call_signature, + [164821] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7658), 1, + ACTIONS(7631), 1, anon_sym_LBRACE, - STATE(2610), 1, + STATE(1557), 1, sym_class_body, - STATE(4675), 1, + STATE(4546), 1, sym_comment, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(7114), 1, + STATE(6679), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [164199] = 4, + [164852] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4676), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(4547), 1, sym_comment, - ACTIONS(5911), 7, + STATE(6805), 1, + sym_statement_block, + ACTIONS(8034), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [164218] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_PIPE_RBRACE, + [164875] = 10, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4105), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7571), 1, anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - ACTIONS(7902), 1, - sym_identifier, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(4677), 1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + STATE(2995), 1, + sym_class_body, + STATE(4548), 1, sym_comment, - STATE(5590), 1, - sym_variable_declarator, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - [164247] = 4, + STATE(5692), 1, + sym_extends_clause, + STATE(6639), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [164906] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4678), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4549), 1, sym_comment, - ACTIONS(5931), 7, + STATE(5368), 1, + sym_type_annotation, + STATE(6232), 1, + sym__initializer, + ACTIONS(7432), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [164266] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - ACTIONS(7902), 1, - sym_identifier, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(4679), 1, - sym_comment, - STATE(6123), 1, - sym_variable_declarator, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - [164295] = 9, + [164933] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - ACTIONS(8071), 1, + ACTIONS(4190), 1, + anon_sym_DQUOTE, + ACTIONS(4192), 1, + anon_sym_SQUOTE, + ACTIONS(8072), 1, sym_identifier, - STATE(4467), 1, - sym__destructuring_pattern, - STATE(4680), 1, + ACTIONS(8074), 1, + anon_sym_DOT, + STATE(990), 1, + sym_nested_identifier, + STATE(1086), 1, + sym_string, + STATE(1431), 1, + sym__module, + STATE(4550), 1, sym_comment, - STATE(5598), 1, - sym_variable_declarator, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - [164324] = 9, + [164964] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - ACTIONS(8073), 1, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7929), 1, + anon_sym_LPAREN, + ACTIONS(8076), 1, sym_identifier, - STATE(4461), 1, - sym__destructuring_pattern, - STATE(4681), 1, + ACTIONS(8078), 1, + anon_sym_STAR, + STATE(4551), 1, sym_comment, - STATE(5597), 1, - sym_variable_declarator, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - [164353] = 8, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6648), 1, + sym__call_signature, + [164995] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4682), 1, + STATE(4552), 1, sym_comment, - STATE(5283), 1, + STATE(5364), 1, sym_type_annotation, - STATE(5887), 1, + STATE(6243), 1, sym__initializer, - ACTIONS(7448), 3, + ACTIONS(7432), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164380] = 4, + [165022] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4683), 1, + ACTIONS(7998), 1, + anon_sym_LT, + ACTIONS(8000), 1, + anon_sym_extends, + ACTIONS(8080), 1, + anon_sym_LBRACE, + ACTIONS(8082), 1, + anon_sym_LBRACE_PIPE, + STATE(1390), 1, + sym_object_type, + STATE(4553), 1, + sym_comment, + STATE(5258), 1, + sym_type_parameters, + STATE(6081), 1, + sym_extends_type_clause, + [165053] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4554), 1, sym_comment, - ACTIONS(7582), 7, + STATE(4994), 1, + sym_type_annotation, + STATE(5777), 1, + sym__initializer, + ACTIONS(7446), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - [164399] = 6, + [165080] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7866), 1, - anon_sym_LBRACE, - STATE(4684), 1, + STATE(4555), 1, sym_comment, - STATE(4997), 1, - sym_statement_block, - ACTIONS(2113), 5, + ACTIONS(8084), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [164422] = 8, + [165099] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4685), 1, + STATE(4556), 1, sym_comment, - STATE(5282), 1, + STATE(5045), 1, sym_type_annotation, - STATE(5886), 1, + STATE(5858), 1, sym__initializer, - ACTIONS(7448), 3, + ACTIONS(7463), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165126] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4557), 1, + sym_comment, + ACTIONS(8086), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [164449] = 8, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [165145] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4686), 1, + STATE(4558), 1, sym_comment, - STATE(5317), 1, + STATE(5043), 1, sym_type_annotation, - STATE(6186), 1, + STATE(5835), 1, sym__initializer, - ACTIONS(7456), 3, + ACTIONS(7463), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [164476] = 10, + [165172] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(6187), 1, + sym__automatic_semicolon, + STATE(4559), 1, + sym_comment, + ACTIONS(2222), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [165193] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7640), 1, + ACTIONS(7759), 1, anon_sym_LBRACE, - STATE(4687), 1, + STATE(2563), 1, + sym_class_body, + STATE(4560), 1, sym_comment, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6595), 1, - sym_class_body, - STATE(7020), 1, + STATE(6576), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [164507] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - ACTIONS(7902), 1, - sym_identifier, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(4688), 1, - sym_comment, - STATE(5592), 1, - sym_variable_declarator, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - [164536] = 8, + [165224] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4689), 1, + STATE(4561), 1, sym_comment, - STATE(5250), 1, - sym_type_annotation, - STATE(5870), 1, - sym__initializer, - ACTIONS(7448), 3, + ACTIONS(8088), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [164563] = 4, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [165243] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4690), 1, - sym_comment, - ACTIONS(7608), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7657), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - [164582] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(129), 1, - anon_sym_import, - ACTIONS(8075), 1, - sym_identifier, - STATE(2443), 1, - sym__type_query_member_expression, - STATE(2445), 1, - sym__type_query_subscript_expression, - STATE(2583), 1, - sym__type_query_instantiation_expression, - STATE(2584), 1, - sym__type_query_call_expression, - STATE(4691), 1, + STATE(4562), 1, sym_comment, - STATE(5549), 1, - sym_import, - [164613] = 5, + STATE(5692), 1, + sym_extends_clause, + STATE(6009), 1, + sym_class_body, + STATE(6575), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [165274] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8077), 1, - sym__automatic_semicolon, - STATE(4692), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4563), 1, sym_comment, - ACTIONS(2192), 6, + STATE(5359), 1, + sym_type_annotation, + STATE(6262), 1, + sym__initializer, + ACTIONS(7432), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [164634] = 8, + anon_sym_SEMI, + [165301] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7411), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(4693), 1, - sym_comment, - STATE(5617), 1, - sym_constraint, - STATE(6830), 1, - sym_default_type, - ACTIONS(7416), 2, + ACTIONS(7252), 1, anon_sym_COLON, - anon_sym_extends, - ACTIONS(8079), 2, + STATE(4564), 1, + sym_comment, + STATE(5357), 1, + sym_type_annotation, + STATE(6266), 1, + sym__initializer, + ACTIONS(7432), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [164661] = 10, + anon_sym_SEMI, + [165328] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7638), 1, - anon_sym_LBRACE, - STATE(409), 1, - sym_class_body, - STATE(4694), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4565), 1, sym_comment, - STATE(6325), 1, - sym_extends_clause, - STATE(7097), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [164692] = 10, + STATE(5279), 1, + sym_type_annotation, + STATE(6170), 1, + sym__initializer, + ACTIONS(7444), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165355] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(1965), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(1967), 1, anon_sym_SQUOTE, - ACTIONS(8081), 1, + ACTIONS(8090), 1, sym_identifier, - ACTIONS(8083), 1, + ACTIONS(8092), 1, anon_sym_DOT, - STATE(4507), 1, + STATE(4566), 1, + sym_comment, + STATE(4878), 1, sym_nested_identifier, - STATE(4684), 1, + STATE(5584), 1, sym_string, - STATE(4695), 1, - sym_comment, - STATE(5107), 1, + STATE(6342), 1, sym__module, - [164723] = 10, + [165386] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7562), 1, - anon_sym_LBRACE, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - STATE(1124), 1, - sym_class_body, - STATE(4696), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4567), 1, sym_comment, - STATE(6325), 1, - sym_extends_clause, - STATE(6502), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [164754] = 8, + STATE(5350), 1, + sym_type_annotation, + STATE(6276), 1, + sym__initializer, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165413] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4697), 1, + STATE(4568), 1, sym_comment, - STATE(5365), 1, + STATE(5349), 1, sym_type_annotation, - STATE(6146), 1, + STATE(6278), 1, sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165440] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4569), 1, + sym_comment, + ACTIONS(7629), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [164781] = 10, + anon_sym_COLON, + [165459] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7738), 1, + ACTIONS(7671), 1, anon_sym_LBRACE, - STATE(320), 1, + STATE(392), 1, sym_class_body, - STATE(4698), 1, + STATE(4570), 1, sym_comment, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6459), 1, + STATE(6490), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [164812] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1377), 1, - anon_sym_LBRACE, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7974), 1, - anon_sym_LT, - ACTIONS(7976), 1, - anon_sym_extends, - ACTIONS(8085), 1, - anon_sym_LBRACE_PIPE, - STATE(4699), 1, - sym_comment, - STATE(5103), 1, - sym_object_type, - STATE(5448), 1, - sym_type_parameters, - STATE(6011), 1, - sym_extends_type_clause, - [164843] = 4, + [165490] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4700), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4571), 1, sym_comment, - ACTIONS(7708), 7, + STATE(5345), 1, + sym_type_annotation, + STATE(6290), 1, + sym__initializer, + ACTIONS(7432), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [164862] = 4, + [165517] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4701), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(4572), 1, sym_comment, - ACTIONS(2264), 7, + STATE(6545), 1, + sym_statement_block, + ACTIONS(8094), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [164881] = 10, + [165540] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7624), 1, - anon_sym_LBRACE, - STATE(3300), 1, - sym_class_body, - STATE(4702), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4573), 1, sym_comment, - STATE(6325), 1, - sym_extends_clause, - STATE(6659), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [164912] = 10, + STATE(5342), 1, + sym_type_annotation, + STATE(5603), 1, + sym__initializer, + ACTIONS(7432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [165567] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7736), 1, + ACTIONS(7911), 1, anon_sym_LBRACE, - STATE(1014), 1, - sym_class_body, - STATE(4703), 1, + STATE(4574), 1, sym_comment, - STATE(6325), 1, - sym_extends_clause, - STATE(6497), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [164943] = 10, + STATE(6681), 1, + sym_statement_block, + ACTIONS(8096), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [165590] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7738), 1, + ACTIONS(7759), 1, anon_sym_LBRACE, - STATE(335), 1, + STATE(2543), 1, sym_class_body, - STATE(4704), 1, + STATE(4575), 1, sym_comment, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6493), 1, + STATE(6562), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [164974] = 6, + [165621] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7249), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4705), 1, + STATE(4576), 1, sym_comment, - STATE(5284), 1, + STATE(5335), 1, sym_type_annotation, - ACTIONS(8087), 5, + STATE(6235), 1, + sym__initializer, + ACTIONS(7432), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [164997] = 8, + [165648] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4706), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(4577), 1, sym_comment, - STATE(5384), 1, - sym_type_annotation, - STATE(6128), 1, - sym__initializer, - ACTIONS(7425), 3, + STATE(6542), 1, + sym_statement_block, + ACTIONS(7978), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [165024] = 4, + anon_sym_PIPE_RBRACE, + [165671] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4707), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(4578), 1, sym_comment, - ACTIONS(8089), 7, + STATE(6701), 1, + sym_statement_block, + ACTIONS(8094), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [165043] = 8, + [165694] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4708), 1, + STATE(4579), 1, sym_comment, - STATE(5180), 1, + STATE(5333), 1, sym_type_annotation, - STATE(5823), 1, + STATE(6231), 1, sym__initializer, - ACTIONS(7448), 3, + ACTIONS(7432), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165070] = 8, + [165721] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4709), 1, + STATE(4580), 1, sym_comment, - STATE(5161), 1, + STATE(4950), 1, sym_type_annotation, - STATE(5819), 1, + STATE(5727), 1, sym__initializer, - ACTIONS(7448), 3, + ACTIONS(7463), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165097] = 8, + [165748] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4710), 1, + STATE(4581), 1, sym_comment, - STATE(5385), 1, + STATE(5325), 1, sym_type_annotation, - STATE(6126), 1, + STATE(6222), 1, sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7432), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165124] = 10, + [165775] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7562), 1, + ACTIONS(4121), 1, anon_sym_LBRACE, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - STATE(1226), 1, - sym_class_body, - STATE(4711), 1, + ACTIONS(4123), 1, + anon_sym_LBRACK, + ACTIONS(7917), 1, + sym_identifier, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(4582), 1, sym_comment, - STATE(6325), 1, - sym_extends_clause, - STATE(6488), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [165155] = 8, + STATE(5469), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [165804] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4712), 1, + STATE(4583), 1, sym_comment, - STATE(5416), 1, + STATE(4967), 1, sym_type_annotation, - STATE(6121), 1, + STATE(5755), 1, sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165182] = 8, + [165831] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4713), 1, + STATE(4584), 1, sym_comment, - STATE(5436), 1, + STATE(5112), 1, sym_type_annotation, - STATE(6104), 1, + STATE(5976), 1, sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165209] = 4, + [165858] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4714), 1, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + ACTIONS(7917), 1, + sym_identifier, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(4585), 1, sym_comment, - ACTIONS(7690), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [165228] = 4, + STATE(5563), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [165887] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4715), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4586), 1, sym_comment, - ACTIONS(2276), 7, + STATE(4977), 1, + sym_type_annotation, + STATE(5762), 1, + sym__initializer, + ACTIONS(7463), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [165247] = 4, + [165914] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4716), 1, + ACTIONS(7863), 1, + anon_sym_LBRACE, + STATE(4587), 1, sym_comment, - ACTIONS(2206), 7, + STATE(4850), 1, + sym_statement_block, + ACTIONS(2130), 5, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, anon_sym_PIPE_RBRACE, - [165266] = 10, + [165937] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7588), 1, + ACTIONS(7695), 1, anon_sym_LBRACE, - STATE(4717), 1, - sym_comment, - STATE(5061), 1, + STATE(1172), 1, sym_class_body, - STATE(6325), 1, + STATE(4588), 1, + sym_comment, + STATE(5692), 1, sym_extends_clause, - STATE(6646), 1, + STATE(6319), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [165297] = 8, + [165968] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4718), 1, + STATE(4589), 1, sym_comment, - STATE(5470), 1, + STATE(5317), 1, sym_type_annotation, - STATE(6083), 1, + STATE(6192), 1, sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7432), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165324] = 8, + [165995] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7411), 1, - anon_sym_EQ, - STATE(4719), 1, + STATE(4590), 1, sym_comment, - STATE(5542), 1, - sym_constraint, - STATE(7055), 1, - sym_default_type, - ACTIONS(7416), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(8091), 2, + ACTIONS(2164), 7, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [165351] = 8, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [166014] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + STATE(4591), 1, + sym_comment, + ACTIONS(7789), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(7249), 1, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, - STATE(4720), 1, + [166033] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4592), 1, sym_comment, - STATE(5490), 1, + STATE(4877), 1, sym_type_annotation, - STATE(5949), 1, + STATE(5673), 1, sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165378] = 5, + [166060] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8093), 1, - sym__automatic_semicolon, - STATE(4721), 1, + STATE(4593), 1, sym_comment, - ACTIONS(2166), 6, + ACTIONS(2290), 7, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_else, anon_sym_while, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [165399] = 8, + [166079] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4722), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(4594), 1, sym_comment, - STATE(5184), 1, - sym_type_annotation, - STATE(5801), 1, - sym__initializer, - ACTIONS(7448), 3, + STATE(6680), 1, + sym_statement_block, + ACTIONS(8098), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [165426] = 10, + anon_sym_PIPE_RBRACE, + [166102] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + ACTIONS(7917), 1, + sym_identifier, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(4595), 1, + sym_comment, + STATE(5562), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [166131] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7736), 1, + ACTIONS(7805), 1, anon_sym_LBRACE, - STATE(995), 1, + STATE(1231), 1, sym_class_body, - STATE(4723), 1, + STATE(4596), 1, sym_comment, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6479), 1, + STATE(6355), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [165457] = 8, + [166162] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4724), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(4597), 1, sym_comment, - STATE(5374), 1, - sym_type_annotation, - STATE(5944), 1, - sym__initializer, - ACTIONS(7441), 3, + STATE(6672), 1, + sym_statement_block, + ACTIONS(8096), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [165484] = 4, + anon_sym_PIPE_RBRACE, + [166185] = 10, ACTIONS(5), 1, sym_html_comment, + ACTIONS(208), 1, + anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4725), 1, + ACTIONS(7998), 1, + anon_sym_LT, + ACTIONS(8000), 1, + anon_sym_extends, + ACTIONS(8100), 1, + anon_sym_LBRACE_PIPE, + STATE(4598), 1, sym_comment, - ACTIONS(7688), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [165503] = 8, + STATE(5107), 1, + sym_type_parameters, + STATE(5931), 1, + sym_extends_type_clause, + STATE(6395), 1, + sym_object_type, + [166216] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4726), 1, + STATE(4599), 1, sym_comment, - STATE(5505), 1, + STATE(5314), 1, sym_type_annotation, - STATE(6057), 1, + STATE(6179), 1, sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7465), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165530] = 8, + [166243] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4727), 1, + STATE(4600), 1, sym_comment, - STATE(5506), 1, + STATE(5270), 1, sym_type_annotation, - STATE(6052), 1, + STATE(6160), 1, sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165557] = 8, + [166270] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4728), 1, - sym_comment, - STATE(5256), 1, - sym_type_annotation, - STATE(6041), 1, - sym__initializer, - ACTIONS(7425), 3, + ACTIONS(8102), 1, sym__automatic_semicolon, + STATE(4601), 1, + sym_comment, + ACTIONS(2164), 6, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [165584] = 8, + anon_sym_PIPE_RBRACE, + [166291] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4729), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(4602), 1, sym_comment, - STATE(5471), 1, - sym_type_annotation, - STATE(6039), 1, - sym__initializer, - ACTIONS(7425), 3, + STATE(6389), 1, + sym_statement_block, + ACTIONS(8104), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [165611] = 8, + anon_sym_PIPE_RBRACE, + [166314] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7929), 1, + anon_sym_LPAREN, + ACTIONS(8106), 1, + sym_identifier, + ACTIONS(8108), 1, + anon_sym_STAR, + STATE(4603), 1, + sym_comment, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6567), 1, + sym__call_signature, + [166345] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7258), 1, anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4730), 1, + STATE(4604), 1, sym_comment, - STATE(5456), 1, - sym_type_annotation, - STATE(6020), 1, - sym__initializer, - ACTIONS(7425), 3, - sym__automatic_semicolon, + ACTIONS(8110), 2, anon_sym_COMMA, - anon_sym_SEMI, - [165638] = 8, + anon_sym_RBRACE, + ACTIONS(4640), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [166368] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4731), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(4605), 1, sym_comment, - STATE(5120), 1, - sym_type_annotation, - STATE(5797), 1, - sym__initializer, - ACTIONS(7448), 3, + STATE(6387), 1, + sym_statement_block, + ACTIONS(8113), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [165665] = 8, + anon_sym_PIPE_RBRACE, + [166391] = 10, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7929), 1, + anon_sym_LPAREN, + ACTIONS(8115), 1, + sym_identifier, + ACTIONS(8117), 1, + anon_sym_STAR, + STATE(4606), 1, + sym_comment, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6933), 1, + sym__call_signature, + [166422] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4732), 1, + STATE(4607), 1, sym_comment, - STATE(5090), 1, + STATE(4881), 1, sym_type_annotation, - STATE(5782), 1, + STATE(5678), 1, sym__initializer, - ACTIONS(7448), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165692] = 8, + [166449] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4733), 1, + STATE(4608), 1, sym_comment, - STATE(5450), 1, + STATE(4888), 1, sym_type_annotation, - STATE(6018), 1, + STATE(5680), 1, sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165719] = 4, + [166476] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4734), 1, + ACTIONS(7573), 1, + anon_sym_extends, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(7769), 1, + anon_sym_LBRACE, + STATE(1109), 1, + sym_class_body, + STATE(4609), 1, sym_comment, - ACTIONS(2298), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [165738] = 8, + STATE(5692), 1, + sym_extends_clause, + STATE(6468), 1, + sym_class_heritage, + STATE(7268), 1, + sym_implements_clause, + [166507] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4735), 1, + STATE(4610), 1, sym_comment, - STATE(5064), 1, + STATE(4997), 1, sym_type_annotation, - STATE(5781), 1, + STATE(5788), 1, sym__initializer, - ACTIONS(7448), 3, + ACTIONS(7463), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165765] = 8, + [166534] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4736), 1, + STATE(4611), 1, sym_comment, - STATE(5015), 1, + STATE(4889), 1, sym_type_annotation, - STATE(5768), 1, + STATE(5683), 1, sym__initializer, - ACTIONS(7448), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165792] = 8, + [166561] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4737), 1, + STATE(4612), 1, sym_comment, - STATE(5005), 1, + STATE(4892), 1, sym_type_annotation, - STATE(5757), 1, + STATE(5685), 1, sym__initializer, - ACTIONS(7448), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165819] = 8, + [166588] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4738), 1, + STATE(4613), 1, sym_comment, - STATE(5441), 1, + STATE(5002), 1, sym_type_annotation, - STATE(6004), 1, + STATE(5793), 1, sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7463), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165846] = 8, + [166615] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(8119), 1, anon_sym_EQ, - ACTIONS(7249), 1, + STATE(4614), 1, + sym_comment, + ACTIONS(4391), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - STATE(4739), 1, + anon_sym_RBRACK, + anon_sym_QMARK, + [166636] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + ACTIONS(7917), 1, + sym_identifier, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(4615), 1, sym_comment, - STATE(5433), 1, + STATE(5583), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [166665] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4616), 1, + sym_comment, + STATE(4907), 1, sym_type_annotation, - STATE(5993), 1, + STATE(5693), 1, sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165873] = 8, + [166692] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4740), 1, + STATE(4617), 1, sym_comment, - STATE(5429), 1, + STATE(4908), 1, sym_type_annotation, - STATE(5990), 1, + STATE(5701), 1, sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165900] = 8, + [166719] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(4288), 1, + anon_sym_LT, + ACTIONS(8121), 1, + sym_identifier, + ACTIONS(8123), 1, + anon_sym_LPAREN, + STATE(3087), 1, + sym_arguments, + STATE(4618), 1, + sym_comment, + STATE(6749), 1, + sym_type_arguments, + ACTIONS(8125), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [166748] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4741), 1, + STATE(4619), 1, sym_comment, - STATE(5421), 1, + STATE(4933), 1, sym_type_annotation, - STATE(5987), 1, + STATE(5709), 1, sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165927] = 4, + [166775] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4742), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(4620), 1, sym_comment, - ACTIONS(5935), 7, + STATE(4934), 1, + sym_type_annotation, + STATE(5711), 1, + sym__initializer, + ACTIONS(7446), 3, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, anon_sym_SEMI, - anon_sym_COLON, - [165946] = 8, + [166802] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4743), 1, + STATE(4621), 1, sym_comment, - STATE(5181), 1, + STATE(4962), 1, sym_type_annotation, - STATE(5765), 1, + STATE(5620), 1, sym__initializer, - ACTIONS(7448), 3, + ACTIONS(7463), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [165973] = 10, + [166829] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7974), 1, + ACTIONS(7998), 1, anon_sym_LT, - ACTIONS(7976), 1, + ACTIONS(8000), 1, anon_sym_extends, - ACTIONS(8095), 1, + ACTIONS(8127), 1, anon_sym_LBRACE, - ACTIONS(8097), 1, + ACTIONS(8129), 1, anon_sym_LBRACE_PIPE, - STATE(1075), 1, + STATE(1521), 1, sym_object_type, - STATE(4744), 1, + STATE(4622), 1, sym_comment, - STATE(5003), 1, + STATE(5023), 1, sym_type_parameters, - STATE(6422), 1, + STATE(5812), 1, sym_extends_type_clause, - [166004] = 9, + [166860] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - ACTIONS(7902), 1, + ACTIONS(4288), 1, + anon_sym_LT, + ACTIONS(8121), 1, sym_identifier, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(4745), 1, + ACTIONS(8131), 1, + anon_sym_LPAREN, + STATE(2649), 1, + sym_arguments, + STATE(4623), 1, sym_comment, - STATE(5724), 1, - sym_variable_declarator, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - [166033] = 10, + STATE(6782), 1, + sym_type_arguments, + ACTIONS(8125), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [166889] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4208), 1, + ACTIONS(4109), 1, anon_sym_DQUOTE, - ACTIONS(4210), 1, + ACTIONS(4111), 1, anon_sym_SQUOTE, - ACTIONS(8099), 1, + ACTIONS(8133), 1, sym_identifier, - ACTIONS(8101), 1, + ACTIONS(8135), 1, anon_sym_DOT, - STATE(949), 1, + STATE(1047), 1, sym_nested_identifier, - STATE(1009), 1, + STATE(1381), 1, sym_string, - STATE(1149), 1, + STATE(1543), 1, sym__module, - STATE(4746), 1, + STATE(4624), 1, sym_comment, - [166064] = 10, + [166920] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(3550), 1, - sym_class_body, - STATE(4747), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(8139), 1, + anon_sym_DOT, + STATE(4625), 1, sym_comment, - STATE(6325), 1, - sym_extends_clause, - STATE(6921), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [166095] = 8, + STATE(5516), 1, + sym_arguments, + ACTIONS(8137), 4, + anon_sym_export, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [166945] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4748), 1, + STATE(4626), 1, sym_comment, - STATE(5012), 1, + STATE(5147), 1, sym_type_annotation, - STATE(5767), 1, - sym__initializer, - ACTIONS(7448), 3, + ACTIONS(8141), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [166122] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7588), 1, - anon_sym_LBRACE, - STATE(4749), 1, - sym_comment, - STATE(5052), 1, - sym_class_body, - STATE(6325), 1, - sym_extends_clause, - STATE(6623), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [166153] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7624), 1, - anon_sym_LBRACE, - STATE(3229), 1, - sym_class_body, - STATE(4750), 1, - sym_comment, - STATE(6325), 1, - sym_extends_clause, - STATE(6622), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [166184] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7588), 1, - anon_sym_LBRACE, - STATE(4751), 1, - sym_comment, - STATE(5043), 1, - sym_class_body, - STATE(6325), 1, - sym_extends_clause, - STATE(6619), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [166215] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - ACTIONS(7902), 1, - sym_identifier, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(4752), 1, - sym_comment, - STATE(5725), 1, - sym_variable_declarator, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - [166244] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7640), 1, - anon_sym_LBRACE, - STATE(4753), 1, - sym_comment, - STATE(6325), 1, - sym_extends_clause, - STATE(6687), 1, - sym_class_body, - STATE(7083), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [166275] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7588), 1, - anon_sym_LBRACE, - STATE(4754), 1, - sym_comment, - STATE(5033), 1, - sym_class_body, - STATE(6325), 1, - sym_extends_clause, - STATE(6604), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [166306] = 10, + anon_sym_PIPE_RBRACE, + [166968] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7658), 1, + ACTIONS(7911), 1, anon_sym_LBRACE, - STATE(2768), 1, - sym_class_body, - STATE(4755), 1, + STATE(4627), 1, sym_comment, - STATE(6325), 1, - sym_extends_clause, - STATE(7056), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [166337] = 8, + STATE(6695), 1, + sym_statement_block, + ACTIONS(8104), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [166991] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4756), 1, + STATE(4628), 1, sym_comment, - STATE(5399), 1, + STATE(5188), 1, sym_type_annotation, - STATE(5961), 1, + STATE(6045), 1, sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7461), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166364] = 8, + [167018] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4757), 1, + STATE(4629), 1, sym_comment, - STATE(5116), 1, - sym_type_annotation, - STATE(5803), 1, - sym__initializer, - ACTIONS(7448), 3, + ACTIONS(4456), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [166391] = 10, + anon_sym_DOT, + [167037] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7624), 1, + ACTIONS(7805), 1, anon_sym_LBRACE, - STATE(3225), 1, + STATE(1289), 1, sym_class_body, - STATE(4758), 1, + STATE(4630), 1, sym_comment, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(7076), 1, + STATE(6416), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [166422] = 8, + [167068] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4759), 1, + STATE(4631), 1, sym_comment, - STATE(5359), 1, + STATE(4943), 1, sym_type_annotation, - STATE(5941), 1, + STATE(5722), 1, sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166449] = 8, + [167095] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4760), 1, + STATE(4632), 1, sym_comment, - STATE(5137), 1, + STATE(4944), 1, sym_type_annotation, - STATE(5808), 1, + STATE(5724), 1, sym__initializer, - ACTIONS(7448), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166476] = 8, + [167122] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4761), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(4633), 1, sym_comment, - STATE(5209), 1, - sym_type_annotation, - STATE(5839), 1, - sym__initializer, - ACTIONS(7448), 3, + STATE(6682), 1, + sym_statement_block, + ACTIONS(8113), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [166503] = 8, + anon_sym_PIPE_RBRACE, + [167145] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4762), 1, + ACTIONS(4121), 1, + anon_sym_LBRACE, + ACTIONS(4123), 1, + anon_sym_LBRACK, + ACTIONS(7917), 1, + sym_identifier, + STATE(4481), 1, + sym__destructuring_pattern, + STATE(4634), 1, sym_comment, - STATE(5356), 1, - sym_type_annotation, - STATE(5933), 1, - sym__initializer, - ACTIONS(7425), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [166530] = 8, + STATE(5468), 1, + sym_variable_declarator, + STATE(4591), 2, + sym_object_pattern, + sym_array_pattern, + [167174] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4763), 1, + STATE(4635), 1, sym_comment, - STATE(5355), 1, - sym_type_annotation, - STATE(5928), 1, - sym__initializer, - ACTIONS(7425), 3, + ACTIONS(2302), 7, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [166557] = 10, + anon_sym_PIPE_RBRACE, + [167193] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(2626), 1, - sym_class_body, - STATE(4764), 1, + STATE(4636), 1, sym_comment, - STATE(6325), 1, - sym_extends_clause, - STATE(6781), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [166588] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8103), 1, + ACTIONS(4454), 7, sym__automatic_semicolon, - STATE(4765), 1, - sym_comment, - ACTIONS(2192), 6, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [166609] = 10, + anon_sym_DOT, + [167212] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7634), 1, + ACTIONS(7671), 1, anon_sym_LBRACE, - STATE(1239), 1, + STATE(403), 1, sym_class_body, - STATE(4766), 1, + STATE(4637), 1, sym_comment, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6480), 1, + STATE(6413), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [166640] = 10, + [167243] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7660), 1, + ACTIONS(7759), 1, anon_sym_LBRACE, - STATE(379), 1, + STATE(2556), 1, sym_class_body, - STATE(4767), 1, + STATE(4638), 1, sym_comment, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6486), 1, + STATE(6936), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [166671] = 8, + [167274] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4768), 1, + STATE(4639), 1, sym_comment, - STATE(5320), 1, - sym_type_annotation, - STATE(5908), 1, - sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7661), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [166698] = 8, + anon_sym_DOT, + [167293] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4769), 1, + STATE(4640), 1, sym_comment, - STATE(5319), 1, - sym_type_annotation, - STATE(5906), 1, - sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7623), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [166725] = 10, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7662), 1, - anon_sym_LBRACE, - STATE(1380), 1, - sym_class_body, - STATE(4770), 1, - sym_comment, - STATE(6325), 1, - sym_extends_clause, - STATE(6487), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [166756] = 8, + anon_sym_DOT, + [167312] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4771), 1, + STATE(4641), 1, sym_comment, - STATE(5306), 1, + STATE(5239), 1, sym_type_annotation, - STATE(5895), 1, + STATE(6112), 1, sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7444), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [166783] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - ACTIONS(7902), 1, - sym_identifier, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(4772), 1, - sym_comment, - STATE(5699), 1, - sym_variable_declarator, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - [166812] = 8, + [167339] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4773), 1, + STATE(4642), 1, sym_comment, - STATE(5302), 1, - sym_type_annotation, - STATE(5893), 1, - sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7603), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [166839] = 8, + anon_sym_DOT, + [167358] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4774), 1, + STATE(4643), 1, sym_comment, - STATE(5280), 1, + STATE(5298), 1, sym_type_annotation, - STATE(5885), 1, - sym__initializer, - ACTIONS(7425), 3, + ACTIONS(8143), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [166866] = 8, + anon_sym_PIPE_RBRACE, + [167381] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4775), 1, + STATE(4644), 1, sym_comment, - STATE(5269), 1, - sym_type_annotation, - STATE(5878), 1, - sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7709), 7, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - [166893] = 10, + anon_sym_DOT, + [167400] = 10, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, + ACTIONS(7573), 1, anon_sym_extends, - ACTIONS(7566), 1, + ACTIONS(7575), 1, anon_sym_implements, - ACTIONS(7634), 1, + ACTIONS(7769), 1, anon_sym_LBRACE, - STATE(1207), 1, + STATE(1165), 1, sym_class_body, - STATE(4776), 1, + STATE(4645), 1, sym_comment, - STATE(6325), 1, + STATE(5692), 1, sym_extends_clause, - STATE(6511), 1, + STATE(6400), 1, sym_class_heritage, - STATE(7451), 1, + STATE(7268), 1, sym_implements_clause, - [166924] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(4105), 1, - anon_sym_LBRACE, - ACTIONS(4107), 1, - anon_sym_LBRACK, - ACTIONS(7902), 1, - sym_identifier, - STATE(4584), 1, - sym__destructuring_pattern, - STATE(4777), 1, - sym_comment, - STATE(5696), 1, - sym_variable_declarator, - STATE(4537), 2, - sym_object_pattern, - sym_array_pattern, - [166953] = 8, + [167431] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4778), 1, + STATE(4646), 1, sym_comment, - STATE(5203), 1, - sym_type_annotation, - STATE(5836), 1, - sym__initializer, - ACTIONS(8105), 3, + ACTIONS(2306), 7, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [166980] = 10, + anon_sym_PIPE_RBRACE, + [167450] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7624), 1, - anon_sym_LBRACE, - STATE(3409), 1, - sym_class_body, - STATE(4779), 1, + STATE(4647), 1, sym_comment, - STATE(6325), 1, - sym_extends_clause, - STATE(6984), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [167011] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8107), 1, + ACTIONS(7771), 7, + sym__automatic_semicolon, anon_sym_EQ, - STATE(4780), 1, - sym_comment, - ACTIONS(4341), 6, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [167032] = 8, + [167469] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(7249), 1, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4781), 1, + STATE(4648), 1, sym_comment, - STATE(5249), 1, + STATE(4958), 1, sym_type_annotation, - STATE(5869), 1, + STATE(5744), 1, sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167059] = 10, + [167496] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - ACTIONS(7944), 1, - anon_sym_QMARK, - ACTIONS(8109), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + ACTIONS(7252), 1, anon_sym_COLON, - STATE(4782), 1, - sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(6702), 1, - sym__call_signature, - [167090] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4783), 1, + STATE(4649), 1, sym_comment, - ACTIONS(8111), 7, + STATE(4965), 1, + sym_type_annotation, + STATE(5749), 1, + sym__initializer, + ACTIONS(7446), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [167109] = 8, + [167523] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4784), 1, + ACTIONS(8145), 1, + sym_identifier, + STATE(4650), 1, sym_comment, - STATE(5247), 1, - sym_type_annotation, - STATE(5867), 1, - sym__initializer, - ACTIONS(7425), 3, - sym__automatic_semicolon, + ACTIONS(4963), 6, anon_sym_COMMA, - anon_sym_SEMI, - [167136] = 10, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [167544] = 10, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(129), 1, anon_sym_import, - ACTIONS(8113), 1, + ACTIONS(8147), 1, sym_identifier, - STATE(3994), 1, + STATE(3700), 1, sym__type_query_subscript_expression, - STATE(3995), 1, + STATE(3701), 1, sym__type_query_member_expression, - STATE(4217), 1, + STATE(3761), 1, sym__type_query_call_expression, - STATE(4368), 1, + STATE(3840), 1, sym__type_query_instantiation_expression, - STATE(4785), 1, + STATE(4651), 1, sym_comment, - STATE(5653), 1, + STATE(5524), 1, sym_import, - [167167] = 4, + [167575] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4786), 1, + ACTIONS(8149), 1, + anon_sym_default, + ACTIONS(8151), 1, + anon_sym_RBRACE, + ACTIONS(8153), 1, + anon_sym_case, + STATE(4652), 1, + sym_comment, + STATE(4808), 1, + aux_sym_switch_body_repeat1, + STATE(5904), 2, + sym_switch_case, + sym_switch_default, + [167601] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8149), 1, + anon_sym_default, + ACTIONS(8153), 1, + anon_sym_case, + ACTIONS(8155), 1, + anon_sym_RBRACE, + STATE(4653), 1, + sym_comment, + STATE(4808), 1, + aux_sym_switch_body_repeat1, + STATE(5904), 2, + sym_switch_case, + sym_switch_default, + [167627] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4654), 1, sym_comment, - ACTIONS(8115), 7, + STATE(4673), 1, + aux_sym_object_type_repeat1, + ACTIONS(8159), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8157), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_SEMI, + [167649] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4655), 1, + sym_comment, + STATE(4747), 1, + aux_sym_object_type_repeat1, + ACTIONS(8163), 2, anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8161), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, + [167671] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4656), 1, + sym_comment, + STATE(4757), 1, + aux_sym_object_type_repeat1, + ACTIONS(8159), 2, + anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - [167186] = 10, + ACTIONS(8157), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [167693] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4202), 1, - anon_sym_DQUOTE, - ACTIONS(4204), 1, - anon_sym_SQUOTE, - ACTIONS(8117), 1, + ACTIONS(8165), 1, sym_identifier, - ACTIONS(8119), 1, - anon_sym_DOT, - STATE(1002), 1, - sym_nested_identifier, - STATE(1231), 1, - sym_string, - STATE(1271), 1, - sym__module, - STATE(4787), 1, + STATE(4657), 1, sym_comment, - [167217] = 10, + ACTIONS(7104), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [167713] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7974), 1, - anon_sym_LT, - ACTIONS(7976), 1, - anon_sym_extends, - ACTIONS(8121), 1, - anon_sym_LBRACE, - ACTIONS(8123), 1, - anon_sym_LBRACE_PIPE, - STATE(1506), 1, - sym_object_type, - STATE(4788), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8167), 1, + anon_sym_export, + ACTIONS(8169), 1, + anon_sym_class, + ACTIONS(8171), 1, + anon_sym_abstract, + STATE(4658), 1, sym_comment, - STATE(5220), 1, - sym_type_parameters, - STATE(6264), 1, - sym_extends_type_clause, - [167248] = 8, + STATE(4662), 1, + aux_sym_export_statement_repeat1, + STATE(5596), 1, + sym_decorator, + [167741] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4789), 1, + STATE(4659), 1, sym_comment, - STATE(5245), 1, - sym_type_annotation, - STATE(5864), 1, - sym__initializer, - ACTIONS(7425), 3, + STATE(4757), 1, + aux_sym_object_type_repeat1, + ACTIONS(8163), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8161), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167275] = 10, + [167763] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(1384), 1, - sym_class_body, - STATE(4790), 1, + STATE(4660), 1, sym_comment, - STATE(6325), 1, - sym_extends_clause, - STATE(6996), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [167306] = 10, - ACTIONS(3), 1, + ACTIONS(4640), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [167781] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(8173), 1, + anon_sym_COMMA, + ACTIONS(8175), 1, + anon_sym_GT, + STATE(4661), 1, + sym_comment, + STATE(5799), 1, + aux_sym_type_arguments_repeat1, + [167809] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(8125), 1, - sym_identifier, - ACTIONS(8127), 1, - anon_sym_STAR, - STATE(4791), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8179), 1, + anon_sym_AT, + STATE(5596), 1, + sym_decorator, + STATE(4662), 2, sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(6617), 1, - sym__call_signature, - [167337] = 8, + aux_sym_export_statement_repeat1, + ACTIONS(8177), 3, + anon_sym_export, + anon_sym_class, + anon_sym_abstract, + [167831] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4792), 1, + STATE(4663), 1, sym_comment, - STATE(5244), 1, - sym_type_annotation, - STATE(5862), 1, - sym__initializer, - ACTIONS(7425), 3, + ACTIONS(7966), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [167364] = 6, + anon_sym_COLON, + [167849] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8129), 1, - anon_sym_EQ, - ACTIONS(8131), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(7747), 1, anon_sym_DOT, - STATE(4793), 1, - sym_comment, - ACTIONS(7850), 5, - anon_sym_LBRACE, + ACTIONS(8182), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_EQ_GT, - [167387] = 8, + ACTIONS(8184), 1, + anon_sym_GT, + STATE(4380), 1, + sym_arguments, + STATE(4664), 1, + sym_comment, + STATE(5796), 1, + aux_sym_type_arguments_repeat1, + [167877] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(4794), 1, + STATE(4665), 1, sym_comment, - STATE(5240), 1, - sym_type_annotation, - STATE(5857), 1, - sym__initializer, - ACTIONS(7425), 3, + ACTIONS(8186), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [167414] = 10, + anon_sym_PIPE_RBRACE, + [167895] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7624), 1, - anon_sym_LBRACE, - STATE(3359), 1, - sym_class_body, - STATE(4795), 1, + STATE(4666), 1, sym_comment, - STATE(6325), 1, - sym_extends_clause, - STATE(7002), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [167445] = 5, + ACTIONS(2164), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [167913] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8133), 1, - anon_sym_EQ, - STATE(4796), 1, - sym_comment, - ACTIONS(4327), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(8188), 1, anon_sym_QMARK, - [167466] = 10, + STATE(4667), 1, + sym_comment, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6385), 1, + sym__call_signature, + [167941] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7564), 1, - anon_sym_extends, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(7660), 1, - anon_sym_LBRACE, - STATE(368), 1, - sym_class_body, - STATE(4797), 1, + ACTIONS(8190), 1, + anon_sym_COLON, + STATE(4668), 1, sym_comment, - STATE(6325), 1, - sym_extends_clause, - STATE(6529), 1, - sym_class_heritage, - STATE(7451), 1, - sym_implements_clause, - [167497] = 10, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(7507), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + STATE(6753), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [167963] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7908), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(8136), 1, - sym_identifier, - ACTIONS(8138), 1, - anon_sym_STAR, - STATE(4798), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(8192), 1, + anon_sym_QMARK, + STATE(4669), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6786), 1, + STATE(6450), 1, sym__call_signature, - [167528] = 6, + [167991] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4799), 1, + STATE(4670), 1, sym_comment, - STATE(4816), 1, + STATE(4757), 1, aux_sym_object_type_repeat1, - ACTIONS(8142), 2, + ACTIONS(8196), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8140), 3, + ACTIONS(8194), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167550] = 9, - ACTIONS(3), 1, + [168013] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3503), 1, + sym_statement_block, + STATE(4671), 1, + sym_comment, + ACTIONS(8094), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168035] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7908), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(8144), 1, - sym_identifier, - STATE(4800), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(8200), 1, + anon_sym_QMARK, + STATE(4672), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6788), 1, + STATE(6804), 1, sym__call_signature, - [167578] = 8, + [168063] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8146), 1, - anon_sym_default, - ACTIONS(8148), 1, - anon_sym_RBRACE, - ACTIONS(8150), 1, - anon_sym_case, - STATE(4801), 1, + STATE(4673), 1, sym_comment, - STATE(4803), 1, - aux_sym_switch_body_repeat1, - STATE(6120), 2, - sym_switch_case, - sym_switch_default, - [167604] = 9, - ACTIONS(3), 1, + STATE(4757), 1, + aux_sym_object_type_repeat1, + ACTIONS(8204), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8202), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168085] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + STATE(4674), 1, + sym_comment, + STATE(4744), 1, + aux_sym_object_type_repeat1, + ACTIONS(8208), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8206), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168107] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4208), 1, - anon_sym_DQUOTE, - ACTIONS(4210), 1, - anon_sym_SQUOTE, - ACTIONS(8099), 1, - sym_identifier, - STATE(949), 1, - sym_nested_identifier, - STATE(1009), 1, - sym_string, - STATE(1149), 1, - sym__module, - STATE(4802), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8210), 1, + anon_sym_catch, + ACTIONS(8212), 1, + anon_sym_finally, + STATE(4675), 1, sym_comment, - [167632] = 8, + STATE(5404), 1, + sym_catch_clause, + STATE(6307), 1, + sym_finally_clause, + ACTIONS(3125), 2, + anon_sym_else, + anon_sym_while, + [168133] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8146), 1, - anon_sym_default, - ACTIONS(8150), 1, - anon_sym_case, - ACTIONS(8152), 1, - anon_sym_RBRACE, - STATE(4803), 1, + ACTIONS(8214), 1, + anon_sym_BQUOTE, + ACTIONS(8216), 1, + anon_sym_DOLLAR_LBRACE, + STATE(4676), 1, sym_comment, - STATE(4913), 1, - aux_sym_switch_body_repeat1, - STATE(6120), 2, - sym_switch_case, - sym_switch_default, - [167658] = 9, + STATE(4820), 1, + aux_sym_template_string_repeat1, + STATE(5570), 1, + sym_template_substitution, + ACTIONS(7871), 2, + sym__template_chars, + sym_escape_sequence, + [168159] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3500), 1, + sym_statement_block, + STATE(4677), 1, + sym_comment, + ACTIONS(7978), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168181] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(8154), 1, - anon_sym_QMARK, - STATE(4276), 1, - sym_formal_parameters, - STATE(4804), 1, + ACTIONS(7929), 1, + anon_sym_LPAREN, + ACTIONS(8218), 1, + sym_identifier, + STATE(4678), 1, sym_comment, - STATE(5233), 1, - sym__call_signature, - STATE(6903), 1, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, sym_type_parameters, - [167686] = 9, + STATE(6676), 1, + sym__call_signature, + [168209] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3489), 1, + sym_statement_block, + STATE(4679), 1, + sym_comment, + ACTIONS(8094), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168231] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(8156), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(8220), 1, anon_sym_QMARK, - STATE(4805), 1, + STATE(4680), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6986), 1, + STATE(6717), 1, sym__call_signature, - [167714] = 9, + [168259] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, + ACTIONS(7146), 1, anon_sym_AMP, - ACTIONS(7139), 1, + ACTIONS(7148), 1, anon_sym_PIPE, - ACTIONS(7141), 1, + ACTIONS(7150), 1, anon_sym_extends, - ACTIONS(8158), 1, + ACTIONS(8222), 1, anon_sym_COMMA, - ACTIONS(8160), 1, + ACTIONS(8224), 1, anon_sym_GT, - STATE(4806), 1, + STATE(4681), 1, sym_comment, - STATE(6260), 1, + STATE(6077), 1, aux_sym_type_arguments_repeat1, - [167742] = 9, + [168287] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4278), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(7596), 1, - anon_sym_DOT, - ACTIONS(8162), 1, - anon_sym_COMMA, - ACTIONS(8164), 1, - anon_sym_GT, - STATE(4503), 1, - sym_arguments, - STATE(4807), 1, + ACTIONS(8226), 1, + anon_sym_QMARK, + STATE(4128), 1, + sym_formal_parameters, + STATE(4682), 1, sym_comment, - STATE(6256), 1, - aux_sym_type_arguments_repeat1, - [167770] = 4, + STATE(5146), 1, + sym__call_signature, + STATE(6358), 1, + sym_type_parameters, + [168315] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4808), 1, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7929), 1, + anon_sym_LPAREN, + ACTIONS(8228), 1, + sym_identifier, + STATE(4683), 1, sym_comment, - ACTIONS(8166), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [167788] = 5, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6929), 1, + sym__call_signature, + [168343] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4809), 1, - sym_comment, - ACTIONS(8168), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4636), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(7254), 1, anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + ACTIONS(8230), 1, anon_sym_QMARK, - [167808] = 6, + STATE(4303), 1, + sym_formal_parameters, + STATE(4684), 1, + sym_comment, + STATE(4771), 1, + sym__call_signature, + STATE(6464), 1, + sym_type_parameters, + [168371] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(3626), 1, + STATE(3493), 1, sym_statement_block, - STATE(4810), 1, + STATE(4685), 1, sym_comment, - ACTIONS(7928), 4, + ACTIONS(7978), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167830] = 7, + [168393] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8175), 1, - anon_sym_BQUOTE, - ACTIONS(8177), 1, - anon_sym_DOLLAR_LBRACE, - STATE(5692), 1, - sym_template_substitution, - ACTIONS(8172), 2, - sym__template_chars, - sym_escape_sequence, - STATE(4811), 2, + ACTIONS(4178), 1, + anon_sym_DQUOTE, + ACTIONS(4180), 1, + anon_sym_SQUOTE, + ACTIONS(8054), 1, + sym_identifier, + STATE(970), 1, + sym_nested_identifier, + STATE(976), 1, + sym_string, + STATE(1134), 1, + sym__module, + STATE(4686), 1, sym_comment, - aux_sym_template_string_repeat1, - [167854] = 6, + [168421] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4812), 1, + STATE(4687), 1, sym_comment, - STATE(4821), 1, + STATE(4726), 1, aux_sym_object_type_repeat1, - ACTIONS(8182), 2, + ACTIONS(8196), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8180), 3, + ACTIONS(8194), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [167876] = 6, + [168443] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3660), 1, - sym_statement_block, - STATE(4813), 1, + STATE(4688), 1, sym_comment, - ACTIONS(7934), 4, + ACTIONS(8088), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [167898] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_COLON, + [168461] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7908), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(8184), 1, - sym_identifier, - STATE(4814), 1, - sym_comment, - STATE(4978), 1, + ACTIONS(8232), 1, + anon_sym_QMARK, + STATE(4128), 1, sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(7098), 1, + STATE(4689), 1, + sym_comment, + STATE(5293), 1, sym__call_signature, - [167926] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6358), 1, + sym_type_parameters, + [168489] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(8186), 1, - sym_identifier, - STATE(4815), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(8234), 1, + anon_sym_COMMA, + ACTIONS(8236), 1, + anon_sym_GT, + STATE(4690), 1, sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(7098), 1, - sym__call_signature, - [167954] = 6, + STATE(6188), 1, + aux_sym_type_arguments_repeat1, + [168517] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4816), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8238), 1, + anon_sym_export, + ACTIONS(8240), 1, + anon_sym_class, + ACTIONS(8242), 1, + anon_sym_abstract, + STATE(4662), 1, + aux_sym_export_statement_repeat1, + STATE(4691), 1, sym_comment, - STATE(4822), 1, - aux_sym_object_type_repeat1, - ACTIONS(8182), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8180), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [167976] = 6, + STATE(5596), 1, + sym_decorator, + [168545] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(8044), 1, + anon_sym_DOT, + ACTIONS(8046), 1, + anon_sym_LT, + ACTIONS(8244), 1, anon_sym_LBRACE, - STATE(3628), 1, - sym_statement_block, - STATE(4817), 1, + STATE(4692), 1, sym_comment, - ACTIONS(7928), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + STATE(5638), 1, + sym_type_arguments, + ACTIONS(8246), 2, anon_sym_COMMA, - anon_sym_SEMI, - [167998] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_LBRACE_PIPE, + [168571] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4202), 1, - anon_sym_DQUOTE, - ACTIONS(4204), 1, - anon_sym_SQUOTE, - ACTIONS(8117), 1, - sym_identifier, - STATE(1002), 1, - sym_nested_identifier, - STATE(1231), 1, - sym_string, - STATE(1271), 1, - sym__module, - STATE(4818), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(8248), 1, + anon_sym_QMARK, + STATE(4128), 1, + sym_formal_parameters, + STATE(4547), 1, + sym__call_signature, + STATE(4693), 1, sym_comment, - [168026] = 8, + STATE(6358), 1, + sym_type_parameters, + [168599] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8188), 1, - anon_sym_BQUOTE, - ACTIONS(8190), 1, - anon_sym_DOLLAR_LBRACE, - STATE(4819), 1, + ACTIONS(8149), 1, + anon_sym_default, + ACTIONS(8153), 1, + anon_sym_case, + ACTIONS(8250), 1, + anon_sym_RBRACE, + STATE(4694), 1, sym_comment, - STATE(4943), 1, - aux_sym_template_string_repeat1, - STATE(5692), 1, - sym_template_substitution, - ACTIONS(7840), 2, - sym__template_chars, - sym_escape_sequence, - [168052] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(4808), 1, + aux_sym_switch_body_repeat1, + STATE(5904), 2, + sym_switch_case, + sym_switch_default, + [168625] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3973), 1, - anon_sym_LBRACE, - ACTIONS(8192), 1, - sym_identifier, - ACTIONS(8194), 1, - anon_sym_LBRACK, - STATE(4820), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(8252), 1, + anon_sym_QMARK, + STATE(4695), 1, sym_comment, - STATE(5778), 1, - sym__destructuring_pattern, - STATE(4344), 2, - sym_object_pattern, - sym_array_pattern, - [168078] = 6, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6404), 1, + sym__call_signature, + [168653] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4821), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3516), 1, + sym_statement_block, + STATE(4696), 1, sym_comment, - STATE(4822), 1, - aux_sym_object_type_repeat1, - ACTIONS(8198), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8196), 3, + ACTIONS(7915), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168100] = 5, + [168675] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8203), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - STATE(4822), 2, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(7747), 1, + anon_sym_DOT, + ACTIONS(8254), 1, + anon_sym_COMMA, + ACTIONS(8256), 1, + anon_sym_GT, + STATE(4380), 1, + sym_arguments, + STATE(4697), 1, sym_comment, + STATE(6194), 1, + aux_sym_type_arguments_repeat1, + [168703] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4656), 1, aux_sym_object_type_repeat1, - ACTIONS(8200), 3, + STATE(4698), 1, + sym_comment, + ACTIONS(8260), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8258), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168120] = 8, + [168725] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8146), 1, + ACTIONS(8149), 1, anon_sym_default, - ACTIONS(8150), 1, + ACTIONS(8153), 1, anon_sym_case, - ACTIONS(8205), 1, + ACTIONS(8262), 1, anon_sym_RBRACE, - STATE(4823), 1, - sym_comment, - STATE(4913), 1, + STATE(4653), 1, aux_sym_switch_body_repeat1, - STATE(6120), 2, + STATE(4699), 1, + sym_comment, + STATE(5904), 2, sym_switch_case, sym_switch_default, - [168146] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [168751] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4208), 1, - anon_sym_DQUOTE, - ACTIONS(4210), 1, - anon_sym_SQUOTE, - ACTIONS(8099), 1, - sym_identifier, - STATE(949), 1, - sym_nested_identifier, - STATE(1009), 1, - sym_string, - STATE(1069), 1, - sym__module, - STATE(4824), 1, - sym_comment, - [168174] = 8, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + STATE(4700), 1, + sym_comment, + ACTIONS(8264), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [168775] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3973), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8198), 1, anon_sym_LBRACE, - ACTIONS(8194), 1, - anon_sym_LBRACK, - ACTIONS(8207), 1, - sym_identifier, - STATE(4825), 1, + STATE(3510), 1, + sym_statement_block, + STATE(4701), 1, sym_comment, - STATE(5523), 1, - sym__destructuring_pattern, - STATE(4344), 2, - sym_object_pattern, - sym_array_pattern, - [168200] = 9, + ACTIONS(8010), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [168797] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(8209), 1, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(8266), 1, anon_sym_QMARK, - STATE(4276), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(4581), 1, - sym__call_signature, - STATE(4826), 1, + STATE(4702), 1, sym_comment, - STATE(6903), 1, + STATE(6021), 1, + sym__call_signature, + STATE(6358), 1, sym_type_parameters, - [168228] = 8, + [168825] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3973), 1, - anon_sym_LBRACE, - ACTIONS(8194), 1, - anon_sym_LBRACK, - ACTIONS(8211), 1, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7929), 1, + anon_sym_LPAREN, + ACTIONS(8268), 1, sym_identifier, - STATE(4827), 1, + STATE(4703), 1, sym_comment, - STATE(6926), 1, - sym__destructuring_pattern, - STATE(4344), 2, - sym_object_pattern, - sym_array_pattern, - [168254] = 6, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6653), 1, + sym__call_signature, + [168853] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4822), 1, - aux_sym_object_type_repeat1, - STATE(4828), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3512), 1, + sym_statement_block, + STATE(4704), 1, sym_comment, - ACTIONS(8215), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8213), 3, + ACTIONS(8113), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168276] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8217), 1, - anon_sym_export, - ACTIONS(8219), 1, - anon_sym_class, - ACTIONS(8221), 1, - anon_sym_abstract, - STATE(4829), 1, - sym_comment, - STATE(4906), 1, - aux_sym_export_statement_repeat1, - STATE(5733), 1, - sym_decorator, - [168304] = 6, + [168875] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(3640), 1, + STATE(3471), 1, sym_statement_block, - STATE(4830), 1, + STATE(4705), 1, sym_comment, - ACTIONS(7948), 4, + ACTIONS(7974), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168326] = 9, + [168897] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(7596), 1, - anon_sym_DOT, - ACTIONS(8223), 1, - anon_sym_COMMA, - ACTIONS(8225), 1, - anon_sym_GT, - STATE(4503), 1, - sym_arguments, - STATE(4831), 1, + ACTIONS(4196), 1, + anon_sym_DQUOTE, + ACTIONS(4198), 1, + anon_sym_SQUOTE, + ACTIONS(8016), 1, + sym_identifier, + STATE(984), 1, + sym_nested_identifier, + STATE(1095), 1, + sym_string, + STATE(1404), 1, + sym__module, + STATE(4706), 1, sym_comment, - STATE(6437), 1, - aux_sym_type_arguments_repeat1, - [168354] = 9, + [168925] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, + ACTIONS(7146), 1, anon_sym_AMP, - ACTIONS(7139), 1, + ACTIONS(7148), 1, anon_sym_PIPE, - ACTIONS(7141), 1, + ACTIONS(7150), 1, anon_sym_extends, - ACTIONS(8227), 1, + ACTIONS(8270), 1, anon_sym_COMMA, - ACTIONS(8229), 1, + ACTIONS(8272), 1, anon_sym_GT, - STATE(4832), 1, + STATE(4707), 1, sym_comment, - STATE(6418), 1, + STATE(5922), 1, aux_sym_type_arguments_repeat1, - [168382] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3973), 1, - anon_sym_LBRACE, - ACTIONS(8194), 1, - anon_sym_LBRACK, - ACTIONS(8231), 1, - sym_identifier, - STATE(4833), 1, - sym_comment, - STATE(5988), 1, - sym__destructuring_pattern, - STATE(4344), 2, - sym_object_pattern, - sym_array_pattern, - [168408] = 9, + [168953] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4202), 1, + ACTIONS(4196), 1, anon_sym_DQUOTE, - ACTIONS(4204), 1, + ACTIONS(4198), 1, anon_sym_SQUOTE, - ACTIONS(8117), 1, + ACTIONS(8016), 1, sym_identifier, - STATE(1002), 1, + STATE(984), 1, sym_nested_identifier, - STATE(1231), 1, + STATE(1095), 1, sym_string, - STATE(1371), 1, + STATE(1481), 1, sym__module, - STATE(4834), 1, - sym_comment, - [168436] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, - anon_sym_LPAREN, - ACTIONS(8233), 1, - anon_sym_QMARK, - STATE(4343), 1, - sym_formal_parameters, - STATE(4835), 1, + STATE(4708), 1, sym_comment, - STATE(4931), 1, - sym__call_signature, - STATE(6498), 1, - sym_type_parameters, - [168464] = 4, + [168981] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4836), 1, + STATE(4709), 1, sym_comment, - ACTIONS(8235), 6, + ACTIONS(8084), 6, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [168482] = 6, + anon_sym_COLON, + [168999] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4837), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(8274), 1, + anon_sym_QMARK, + STATE(4128), 1, + sym_formal_parameters, + STATE(4475), 1, + sym__call_signature, + STATE(4710), 1, sym_comment, - STATE(4847), 1, - aux_sym_object_type_repeat1, - ACTIONS(8239), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8237), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168504] = 4, + STATE(6358), 1, + sym_type_parameters, + [169027] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4838), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(8276), 1, + anon_sym_QMARK, + STATE(4711), 1, sym_comment, - ACTIONS(8241), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [168522] = 6, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6564), 1, + sym__call_signature, + [169055] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4822), 1, - aux_sym_object_type_repeat1, - STATE(4839), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(8278), 1, + anon_sym_QMARK, + STATE(4128), 1, + sym_formal_parameters, + STATE(4712), 1, sym_comment, - ACTIONS(8245), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8243), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168544] = 8, + STATE(4867), 1, + sym__call_signature, + STATE(6358), 1, + sym_type_parameters, + [169083] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(8249), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(8280), 1, anon_sym_QMARK, - STATE(4840), 1, + STATE(4128), 1, + sym_formal_parameters, + STATE(4713), 1, sym_comment, - ACTIONS(8247), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [168570] = 6, + STATE(6190), 1, + sym__call_signature, + STATE(6358), 1, + sym_type_parameters, + [169111] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4828), 1, - aux_sym_object_type_repeat1, - STATE(4841), 1, + ACTIONS(4178), 1, + anon_sym_DQUOTE, + ACTIONS(4180), 1, + anon_sym_SQUOTE, + ACTIONS(8054), 1, + sym_identifier, + STATE(970), 1, + sym_nested_identifier, + STATE(976), 1, + sym_string, + STATE(1211), 1, + sym__module, + STATE(4714), 1, sym_comment, - ACTIONS(8245), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8243), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168592] = 8, + [169139] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8146), 1, - anon_sym_default, - ACTIONS(8150), 1, - anon_sym_case, - ACTIONS(8251), 1, - anon_sym_RBRACE, - STATE(4842), 1, + STATE(4715), 1, sym_comment, - STATE(4913), 1, - aux_sym_switch_body_repeat1, - STATE(6120), 2, - sym_switch_case, - sym_switch_default, - [168618] = 5, + ACTIONS(8282), 6, + anon_sym_export, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_class, + anon_sym_AT, + anon_sym_abstract, + [169157] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7929), 1, + anon_sym_LPAREN, + ACTIONS(8284), 1, + sym_identifier, + STATE(4716), 1, + sym_comment, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6653), 1, + sym__call_signature, + [169185] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8253), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(7747), 1, anon_sym_DOT, - STATE(4843), 1, - sym_comment, - ACTIONS(7850), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(8286), 1, anon_sym_COMMA, - anon_sym_SEMI, - [168638] = 6, + ACTIONS(8288), 1, + anon_sym_GT, + STATE(4380), 1, + sym_arguments, + STATE(4717), 1, + sym_comment, + STATE(6254), 1, + aux_sym_type_arguments_repeat1, + [169213] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3661), 1, - sym_statement_block, - STATE(4844), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + ACTIONS(8290), 1, + anon_sym_QMARK, + STATE(4303), 1, + sym_formal_parameters, + STATE(4718), 1, sym_comment, - ACTIONS(8069), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168660] = 4, + STATE(4819), 1, + sym__call_signature, + STATE(6464), 1, + sym_type_parameters, + [169241] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4845), 1, - sym_comment, - ACTIONS(7862), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(8292), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_DOT, - [168678] = 6, + ACTIONS(8294), 1, + anon_sym_GT, + STATE(4719), 1, + sym_comment, + STATE(6258), 1, + aux_sym_type_arguments_repeat1, + [169269] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4846), 1, + STATE(4720), 1, sym_comment, - STATE(4852), 1, + STATE(4757), 1, aux_sym_object_type_repeat1, - ACTIONS(8257), 2, + ACTIONS(8298), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8255), 3, + ACTIONS(8296), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168700] = 6, + [169291] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4822), 1, - aux_sym_object_type_repeat1, - STATE(4847), 1, - sym_comment, - ACTIONS(8257), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8255), 3, - sym__automatic_semicolon, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(7747), 1, + anon_sym_DOT, + ACTIONS(8300), 1, anon_sym_COMMA, - anon_sym_SEMI, - [168722] = 9, + ACTIONS(8302), 1, + anon_sym_GT, + STATE(4380), 1, + sym_arguments, + STATE(4721), 1, + sym_comment, + STATE(6073), 1, + aux_sym_type_arguments_repeat1, + [169319] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, + ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(8259), 1, - anon_sym_QMARK, - STATE(4276), 1, - sym_formal_parameters, - STATE(4848), 1, + ACTIONS(7929), 1, + anon_sym_LPAREN, + ACTIONS(8304), 1, + sym_identifier, + STATE(4722), 1, sym_comment, - STATE(5285), 1, - sym__call_signature, - STATE(6903), 1, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, sym_type_parameters, - [168750] = 6, + STATE(6653), 1, + sym__call_signature, + [169347] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4849), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(8090), 1, + sym_identifier, + STATE(4723), 1, sym_comment, - STATE(4972), 1, - aux_sym_object_type_repeat1, - ACTIONS(8263), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8261), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168772] = 6, + STATE(4878), 1, + sym_nested_identifier, + STATE(5584), 1, + sym_string, + STATE(6342), 1, + sym__module, + [169375] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4839), 1, - aux_sym_object_type_repeat1, - STATE(4850), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(8090), 1, + sym_identifier, + STATE(4724), 1, sym_comment, - ACTIONS(8267), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8265), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168794] = 4, + STATE(4878), 1, + sym_nested_identifier, + STATE(5584), 1, + sym_string, + STATE(6381), 1, + sym__module, + [169403] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4851), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3474), 1, + sym_statement_block, + STATE(4725), 1, sym_comment, - ACTIONS(6398), 6, + ACTIONS(7919), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_DOT, - [168812] = 6, + [169425] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4822), 1, - aux_sym_object_type_repeat1, - STATE(4852), 1, + STATE(4726), 1, sym_comment, - ACTIONS(8271), 2, + STATE(4757), 1, + aux_sym_object_type_repeat1, + ACTIONS(8308), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8269), 3, + ACTIONS(8306), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168834] = 8, + [169447] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8146), 1, + ACTIONS(8149), 1, anon_sym_default, - ACTIONS(8150), 1, + ACTIONS(8153), 1, anon_sym_case, - ACTIONS(8273), 1, + ACTIONS(8310), 1, anon_sym_RBRACE, - STATE(4842), 1, + STATE(4694), 1, aux_sym_switch_body_repeat1, - STATE(4853), 1, + STATE(4727), 1, sym_comment, - STATE(6120), 2, + STATE(5904), 2, sym_switch_case, sym_switch_default, - [168860] = 6, + [169473] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4822), 1, - aux_sym_object_type_repeat1, - STATE(4854), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(8312), 1, + anon_sym_QMARK, + STATE(4128), 1, + sym_formal_parameters, + STATE(4728), 1, sym_comment, - ACTIONS(8263), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8261), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168882] = 6, + STATE(5203), 1, + sym__call_signature, + STATE(6358), 1, + sym_type_parameters, + [169501] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4822), 1, - aux_sym_object_type_repeat1, - STATE(4855), 1, + STATE(4729), 1, sym_comment, - ACTIONS(8277), 2, + STATE(4773), 1, + aux_sym_object_type_repeat1, + ACTIONS(8316), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8275), 3, + ACTIONS(8314), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168904] = 6, + [169523] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4854), 1, - aux_sym_object_type_repeat1, - STATE(4856), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3480), 1, + sym_statement_block, + STATE(4730), 1, sym_comment, - ACTIONS(8281), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8279), 3, + ACTIONS(8096), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [168926] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [169545] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(4857), 1, - sym_comment, - ACTIONS(2248), 6, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [168944] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4822), 1, - aux_sym_object_type_repeat1, - STATE(4858), 1, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7929), 1, + anon_sym_LPAREN, + ACTIONS(8318), 1, + sym_identifier, + STATE(4731), 1, sym_comment, - ACTIONS(8285), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8283), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [168966] = 9, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6901), 1, + sym__call_signature, + [169573] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(8287), 1, + ACTIONS(8042), 1, anon_sym_COMMA, - ACTIONS(8289), 1, - anon_sym_GT, - STATE(4859), 1, + ACTIONS(8046), 1, + anon_sym_LT, + ACTIONS(8320), 1, + anon_sym_LBRACE, + ACTIONS(8322), 1, + anon_sym_LBRACE_PIPE, + STATE(4732), 1, sym_comment, - STATE(6007), 1, - aux_sym_type_arguments_repeat1, - [168994] = 9, + STATE(5458), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5637), 1, + sym_type_arguments, + [169601] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(8291), 1, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(8324), 1, sym_identifier, - STATE(4860), 1, + ACTIONS(8326), 1, + anon_sym_LBRACK, + STATE(4733), 1, sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(7098), 1, - sym__call_signature, - [169022] = 9, + STATE(5945), 1, + sym__destructuring_pattern, + STATE(4286), 2, + sym_object_pattern, + sym_array_pattern, + [169627] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(8293), 1, - anon_sym_LBRACE, - ACTIONS(8295), 1, - anon_sym_COMMA, - STATE(4861), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(8328), 1, + anon_sym_QMARK, + STATE(4128), 1, + sym_formal_parameters, + STATE(4594), 1, + sym__call_signature, + STATE(4734), 1, sym_comment, - STATE(6111), 1, - aux_sym_implements_clause_repeat1, - [169050] = 9, + STATE(6358), 1, + sym_type_parameters, + [169655] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(7596), 1, - anon_sym_DOT, - ACTIONS(8297), 1, - anon_sym_COMMA, - ACTIONS(8299), 1, - anon_sym_GT, - STATE(4503), 1, - sym_arguments, - STATE(4862), 1, + ACTIONS(8149), 1, + anon_sym_default, + ACTIONS(8153), 1, + anon_sym_case, + ACTIONS(8330), 1, + anon_sym_RBRACE, + STATE(4735), 1, sym_comment, - STATE(6003), 1, - aux_sym_type_arguments_repeat1, - [169078] = 9, + STATE(4774), 1, + aux_sym_switch_body_repeat1, + STATE(5904), 2, + sym_switch_case, + sym_switch_default, + [169681] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4278), 1, + ACTIONS(4282), 1, anon_sym_LPAREN, - ACTIONS(7596), 1, + ACTIONS(7747), 1, anon_sym_DOT, - ACTIONS(8301), 1, + ACTIONS(8332), 1, anon_sym_COMMA, - ACTIONS(8303), 1, + ACTIONS(8334), 1, anon_sym_GT, - STATE(4503), 1, + STATE(4380), 1, sym_arguments, - STATE(4863), 1, + STATE(4736), 1, sym_comment, - STATE(6274), 1, + STATE(5829), 1, aux_sym_type_arguments_repeat1, - [169106] = 9, + [169709] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, + ACTIONS(7146), 1, anon_sym_AMP, - ACTIONS(7139), 1, + ACTIONS(7148), 1, anon_sym_PIPE, - ACTIONS(7141), 1, + ACTIONS(7150), 1, anon_sym_extends, - ACTIONS(8305), 1, + ACTIONS(8336), 1, anon_sym_COMMA, - ACTIONS(8307), 1, + ACTIONS(8338), 1, anon_sym_GT, - STATE(4864), 1, + STATE(4737), 1, sym_comment, - STATE(6252), 1, + STATE(5808), 1, aux_sym_type_arguments_repeat1, - [169134] = 6, + [169737] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4865), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3479), 1, + sym_statement_block, + STATE(4738), 1, sym_comment, - STATE(4874), 1, - aux_sym_object_type_repeat1, - ACTIONS(8311), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8309), 3, + ACTIONS(8098), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169156] = 6, + [169759] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4866), 1, + ACTIONS(4297), 1, + anon_sym_COLON, + ACTIONS(8024), 1, + anon_sym_EQ, + STATE(4739), 1, sym_comment, - STATE(4878), 1, + STATE(5498), 1, + sym_type_annotation, + STATE(6937), 1, + sym__initializer, + ACTIONS(8340), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [169785] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4740), 1, + sym_comment, + STATE(4797), 1, aux_sym_object_type_repeat1, - ACTIONS(8315), 2, + ACTIONS(8344), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8313), 3, + ACTIONS(8342), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169178] = 8, + [169807] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(7990), 1, - anon_sym_EQ, - STATE(4867), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(8346), 1, + anon_sym_QMARK, + STATE(4128), 1, + sym_formal_parameters, + STATE(4605), 1, + sym__call_signature, + STATE(4741), 1, sym_comment, - STATE(5562), 1, - sym_type_annotation, - STATE(7107), 1, - sym__initializer, - ACTIONS(8317), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [169204] = 9, + STATE(6358), 1, + sym_type_parameters, + [169835] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7285), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(8319), 1, + ACTIONS(8348), 1, anon_sym_QMARK, - STATE(4343), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(4868), 1, - sym_comment, - STATE(4903), 1, + STATE(4577), 1, sym__call_signature, - STATE(6498), 1, + STATE(4742), 1, + sym_comment, + STATE(6358), 1, sym_type_parameters, - [169232] = 9, - ACTIONS(3), 1, + [169863] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8216), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8350), 1, + anon_sym_BQUOTE, + STATE(4743), 1, + sym_comment, + STATE(4820), 1, + aux_sym_template_string_repeat1, + STATE(5570), 1, + sym_template_substitution, + ACTIONS(7871), 2, + sym__template_chars, + sym_escape_sequence, + [169889] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(7996), 1, - sym_identifier, - STATE(4869), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4744), 1, sym_comment, - STATE(5025), 1, - sym_nested_identifier, - STATE(5740), 1, - sym_string, - STATE(6467), 1, - sym__module, - [169260] = 6, + STATE(4757), 1, + aux_sym_object_type_repeat1, + ACTIONS(8316), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8314), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169911] = 9, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + ACTIONS(8352), 1, + anon_sym_QMARK, + STATE(4303), 1, + sym_formal_parameters, + STATE(4745), 1, + sym_comment, + STATE(4798), 1, + sym__call_signature, + STATE(6464), 1, + sym_type_parameters, + [169939] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(3629), 1, + STATE(3470), 1, sym_statement_block, - STATE(4870), 1, + STATE(4746), 1, sym_comment, - ACTIONS(7946), 4, + ACTIONS(8096), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169282] = 9, + [169961] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4747), 1, + sym_comment, + STATE(4757), 1, + aux_sym_object_type_repeat1, + ACTIONS(8356), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8354), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [169983] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8216), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8358), 1, + anon_sym_BQUOTE, + STATE(4743), 1, + aux_sym_template_string_repeat1, + STATE(4748), 1, + sym_comment, + STATE(5570), 1, + sym_template_substitution, + ACTIONS(7871), 2, + sym__template_chars, + sym_escape_sequence, + [170009] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, + ACTIONS(4190), 1, anon_sym_DQUOTE, - ACTIONS(1967), 1, + ACTIONS(4192), 1, anon_sym_SQUOTE, - ACTIONS(7996), 1, + ACTIONS(8072), 1, sym_identifier, - STATE(4871), 1, - sym_comment, - STATE(5025), 1, + STATE(990), 1, sym_nested_identifier, - STATE(5740), 1, + STATE(1086), 1, sym_string, - STATE(6887), 1, + STATE(1431), 1, sym__module, - [169310] = 6, + STATE(4749), 1, + sym_comment, + [170037] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4855), 1, + STATE(4659), 1, aux_sym_object_type_repeat1, - STATE(4872), 1, + STATE(4750), 1, sym_comment, - ACTIONS(8285), 2, + ACTIONS(8362), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8283), 3, + ACTIONS(8360), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169332] = 9, + [170059] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8149), 1, + anon_sym_default, + ACTIONS(8153), 1, + anon_sym_case, + ACTIONS(8364), 1, + anon_sym_RBRACE, + STATE(4652), 1, + aux_sym_switch_body_repeat1, + STATE(4751), 1, + sym_comment, + STATE(5904), 2, + sym_switch_case, + sym_switch_default, + [170085] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1991), 1, + ACTIONS(4190), 1, anon_sym_DQUOTE, - ACTIONS(1993), 1, + ACTIONS(4192), 1, anon_sym_SQUOTE, - ACTIONS(8081), 1, + ACTIONS(8072), 1, sym_identifier, - STATE(4507), 1, + STATE(990), 1, sym_nested_identifier, - STATE(4684), 1, + STATE(1086), 1, sym_string, - STATE(4873), 1, - sym_comment, - STATE(5107), 1, + STATE(1350), 1, sym__module, - [169360] = 6, + STATE(4752), 1, + sym_comment, + [170113] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4822), 1, - aux_sym_object_type_repeat1, - STATE(4874), 1, + STATE(4753), 1, sym_comment, - ACTIONS(8315), 2, + STATE(4776), 1, + aux_sym_object_type_repeat1, + ACTIONS(8368), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8313), 3, + ACTIONS(8366), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169382] = 9, + [170135] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8321), 1, - anon_sym_export, - ACTIONS(8323), 1, - anon_sym_class, - ACTIONS(8325), 1, - anon_sym_abstract, - STATE(4875), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + ACTIONS(8370), 1, + anon_sym_QMARK, + STATE(4303), 1, + sym_formal_parameters, + STATE(4754), 1, sym_comment, - STATE(4906), 1, - aux_sym_export_statement_repeat1, - STATE(5733), 1, - sym_decorator, - [169410] = 6, + STATE(4835), 1, + sym__call_signature, + STATE(6464), 1, + sym_type_parameters, + [170163] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(8326), 1, + anon_sym_LBRACK, + ACTIONS(8372), 1, + sym_identifier, + STATE(4755), 1, + sym_comment, + STATE(5973), 1, + sym__destructuring_pattern, + STATE(4286), 2, + sym_object_pattern, + sym_array_pattern, + [170189] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(3630), 1, + STATE(3485), 1, sym_statement_block, - STATE(4876), 1, + STATE(4756), 1, sym_comment, - ACTIONS(7948), 4, + ACTIONS(8104), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169432] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, - anon_sym_LPAREN, - ACTIONS(8327), 1, - anon_sym_QMARK, - STATE(4343), 1, - sym_formal_parameters, - STATE(4813), 1, - sym__call_signature, - STATE(4877), 1, - sym_comment, - STATE(6498), 1, - sym_type_parameters, - [169460] = 6, + [170211] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4822), 1, - aux_sym_object_type_repeat1, - STATE(4878), 1, - sym_comment, - ACTIONS(8331), 2, + ACTIONS(8377), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8329), 3, + STATE(4757), 2, + sym_comment, + aux_sym_object_type_repeat1, + ACTIONS(8374), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169482] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1991), 1, - anon_sym_DQUOTE, - ACTIONS(1993), 1, - anon_sym_SQUOTE, - ACTIONS(8081), 1, - sym_identifier, - STATE(4507), 1, - sym_nested_identifier, - STATE(4684), 1, - sym_string, - STATE(4879), 1, - sym_comment, - STATE(4998), 1, - sym__module, - [169510] = 4, + [170231] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4880), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8379), 1, + anon_sym_export, + ACTIONS(8381), 1, + anon_sym_class, + ACTIONS(8383), 1, + anon_sym_abstract, + STATE(4662), 1, + aux_sym_export_statement_repeat1, + STATE(4758), 1, sym_comment, - ACTIONS(4636), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [169528] = 6, + STATE(5596), 1, + sym_decorator, + [170259] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(3639), 1, + STATE(3462), 1, sym_statement_block, - STATE(4881), 1, + STATE(4759), 1, sym_comment, - ACTIONS(7946), 4, + ACTIONS(8104), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169550] = 9, + [170281] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7929), 1, + anon_sym_LPAREN, + ACTIONS(8385), 1, + sym_identifier, + STATE(4760), 1, + sym_comment, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6653), 1, + sym__call_signature, + [170309] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(8333), 1, + ACTIONS(7272), 1, + anon_sym_LPAREN, + ACTIONS(8387), 1, anon_sym_QMARK, - STATE(4276), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(4603), 1, + STATE(4738), 1, sym__call_signature, - STATE(4882), 1, + STATE(4761), 1, sym_comment, - STATE(6903), 1, + STATE(6464), 1, sym_type_parameters, - [169578] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [170337] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8146), 1, - anon_sym_default, - ACTIONS(8150), 1, - anon_sym_case, - ACTIONS(8335), 1, - anon_sym_RBRACE, - STATE(4823), 1, - aux_sym_switch_body_repeat1, - STATE(4883), 1, - sym_comment, - STATE(6120), 2, - sym_switch_case, - sym_switch_default, - [169604] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7929), 1, anon_sym_LPAREN, - ACTIONS(8337), 1, - anon_sym_QMARK, - STATE(4884), 1, + ACTIONS(8389), 1, + sym_identifier, + STATE(4762), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6535), 1, + STATE(6901), 1, sym__call_signature, - [169632] = 6, + [170365] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(8326), 1, + anon_sym_LBRACK, + ACTIONS(8391), 1, + sym_identifier, + STATE(4763), 1, + sym_comment, + STATE(5905), 1, + sym__destructuring_pattern, + STATE(4286), 2, + sym_object_pattern, + sym_array_pattern, + [170391] = 8, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(4885), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(8326), 1, + anon_sym_LBRACK, + ACTIONS(8393), 1, + sym_identifier, + STATE(4764), 1, sym_comment, - STATE(4891), 1, - aux_sym_object_type_repeat1, - ACTIONS(8341), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8339), 3, + STATE(6742), 1, + sym__destructuring_pattern, + STATE(4286), 2, + sym_object_pattern, + sym_array_pattern, + [170417] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3495), 1, + sym_statement_block, + STATE(4765), 1, + sym_comment, + ACTIONS(8034), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169654] = 8, + [170439] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8146), 1, - anon_sym_default, - ACTIONS(8150), 1, - anon_sym_case, - ACTIONS(8343), 1, - anon_sym_RBRACE, - STATE(4886), 1, + STATE(4766), 1, sym_comment, - STATE(4913), 1, - aux_sym_switch_body_repeat1, - STATE(6120), 2, - sym_switch_case, - sym_switch_default, - [169680] = 8, + ACTIONS(2290), 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_catch, + anon_sym_finally, + [170457] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8146), 1, - anon_sym_default, - ACTIONS(8150), 1, - anon_sym_case, - ACTIONS(8345), 1, - anon_sym_RBRACE, - STATE(4886), 1, - aux_sym_switch_body_repeat1, - STATE(4887), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + ACTIONS(8395), 1, + anon_sym_QMARK, + STATE(4128), 1, + sym_formal_parameters, + STATE(4391), 1, + sym__call_signature, + STATE(4767), 1, sym_comment, - STATE(6120), 2, - sym_switch_case, - sym_switch_default, - [169706] = 4, + STATE(6358), 1, + sym_type_parameters, + [170485] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4888), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3484), 1, + sym_statement_block, + STATE(4768), 1, sym_comment, - ACTIONS(8111), 6, + ACTIONS(7913), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [169724] = 6, + [170507] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4889), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(8397), 1, + anon_sym_QMARK, + STATE(4769), 1, sym_comment, - STATE(4894), 1, - aux_sym_object_type_repeat1, - ACTIONS(8349), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8347), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169746] = 7, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6540), 1, + sym__call_signature, + [170535] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, + ACTIONS(7146), 1, anon_sym_AMP, - ACTIONS(7139), 1, + ACTIONS(7148), 1, anon_sym_PIPE, - ACTIONS(7141), 1, + ACTIONS(7150), 1, anon_sym_extends, - STATE(4890), 1, - sym_comment, - ACTIONS(8351), 3, - anon_sym_EQ, + ACTIONS(8399), 1, + anon_sym_LBRACE, + ACTIONS(8401), 1, anon_sym_COMMA, - anon_sym_GT, - [169770] = 6, + STATE(4770), 1, + sym_comment, + STATE(5903), 1, + aux_sym_implements_clause_repeat1, + [170563] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4822), 1, - aux_sym_object_type_repeat1, - STATE(4891), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3483), 1, + sym_statement_block, + STATE(4771), 1, sym_comment, - ACTIONS(8349), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8347), 3, + ACTIONS(8113), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169792] = 9, + [170585] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7908), 1, + ACTIONS(7929), 1, anon_sym_LPAREN, - ACTIONS(8353), 1, + ACTIONS(8403), 1, sym_identifier, - STATE(4892), 1, + STATE(4772), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6788), 1, - sym__call_signature, - [169820] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(8355), 1, - anon_sym_QMARK, - STATE(4276), 1, - sym_formal_parameters, - STATE(4893), 1, - sym_comment, - STATE(5268), 1, + STATE(6901), 1, sym__call_signature, - STATE(6903), 1, - sym_type_parameters, - [169848] = 6, + [170613] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4822), 1, + STATE(4757), 1, aux_sym_object_type_repeat1, - STATE(4894), 1, + STATE(4773), 1, sym_comment, - ACTIONS(8359), 2, + ACTIONS(8407), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8357), 3, + ACTIONS(8405), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169870] = 6, + [170635] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4895), 1, - sym_comment, - STATE(4898), 1, - aux_sym_object_type_repeat1, - ACTIONS(8363), 2, + ACTIONS(8149), 1, + anon_sym_default, + ACTIONS(8153), 1, + anon_sym_case, + ACTIONS(8409), 1, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8361), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169892] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(8365), 1, - anon_sym_QMARK, - STATE(4276), 1, - sym_formal_parameters, - STATE(4896), 1, + STATE(4774), 1, sym_comment, - STATE(5372), 1, - sym__call_signature, - STATE(6903), 1, - sym_type_parameters, - [169920] = 6, + STATE(4808), 1, + aux_sym_switch_body_repeat1, + STATE(5904), 2, + sym_switch_case, + sym_switch_default, + [170661] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4897), 1, + STATE(4775), 1, sym_comment, - STATE(4901), 1, + STATE(4790), 1, aux_sym_object_type_repeat1, - ACTIONS(8369), 2, + ACTIONS(8413), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8367), 3, + ACTIONS(8411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169942] = 6, + [170683] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4822), 1, + STATE(4757), 1, aux_sym_object_type_repeat1, - STATE(4898), 1, + STATE(4776), 1, sym_comment, - ACTIONS(8369), 2, + ACTIONS(8413), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8367), 3, + ACTIONS(8411), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [169964] = 6, + [170705] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3613), 1, - sym_statement_block, - STATE(4899), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(8415), 1, + anon_sym_QMARK, + STATE(4777), 1, sym_comment, - ACTIONS(7926), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [169986] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6661), 1, + sym__call_signature, + [170733] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(4900), 1, - sym_comment, - ACTIONS(8115), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [170004] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4822), 1, - aux_sym_object_type_repeat1, - STATE(4901), 1, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7929), 1, + anon_sym_LPAREN, + ACTIONS(8417), 1, + sym_identifier, + STATE(4778), 1, sym_comment, - ACTIONS(8373), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8371), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [170026] = 9, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6901), 1, + sym__call_signature, + [170761] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(8375), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(8419), 1, anon_sym_QMARK, - STATE(4902), 1, + STATE(4779), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6942), 1, + STATE(6683), 1, sym__call_signature, - [170054] = 6, + [170789] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(3977), 1, anon_sym_LBRACE, - STATE(3615), 1, - sym_statement_block, - STATE(4903), 1, + ACTIONS(8326), 1, + anon_sym_LBRACK, + ACTIONS(8421), 1, + sym_identifier, + STATE(4780), 1, sym_comment, - ACTIONS(7920), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [170076] = 9, + STATE(5464), 1, + sym__destructuring_pattern, + STATE(4286), 2, + sym_object_pattern, + sym_array_pattern, + [170815] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, + ACTIONS(4282), 1, anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(8377), 1, - anon_sym_QMARK, - STATE(4276), 1, - sym_formal_parameters, - STATE(4564), 1, - sym__call_signature, - STATE(4904), 1, + ACTIONS(7747), 1, + anon_sym_DOT, + ACTIONS(8423), 1, + anon_sym_COMMA, + ACTIONS(8425), 1, + anon_sym_GT, + STATE(4380), 1, + sym_arguments, + STATE(4781), 1, sym_comment, - STATE(6903), 1, - sym_type_parameters, - [170104] = 5, + STATE(5909), 1, + aux_sym_type_arguments_repeat1, + [170843] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4782), 1, + sym_comment, + ACTIONS(8427), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [170861] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8379), 1, + ACTIONS(8429), 1, sym_identifier, - STATE(4905), 1, + STATE(4783), 1, sym_comment, - ACTIONS(7095), 5, + ACTIONS(7104), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [170124] = 6, + [170881] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8383), 1, - anon_sym_AT, - STATE(5733), 1, - sym_decorator, - STATE(4906), 2, + STATE(4784), 1, sym_comment, - aux_sym_export_statement_repeat1, - ACTIONS(8381), 3, - anon_sym_export, - anon_sym_class, - anon_sym_abstract, - [170146] = 4, + ACTIONS(8431), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [170899] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4907), 1, + STATE(4785), 1, sym_comment, - ACTIONS(8386), 6, - anon_sym_export, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_class, - anon_sym_AT, - anon_sym_abstract, - [170164] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8054), 1, + STATE(4822), 1, + aux_sym_object_type_repeat1, + ACTIONS(8435), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8433), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8058), 1, - anon_sym_LT, - ACTIONS(8388), 1, - anon_sym_LBRACE, - ACTIONS(8390), 1, - anon_sym_LBRACE_PIPE, - STATE(4908), 1, - sym_comment, - STATE(5663), 1, - aux_sym_extends_type_clause_repeat1, - STATE(6411), 1, - sym_type_arguments, - [170192] = 6, + anon_sym_SEMI, + [170921] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8392), 1, - anon_sym_COLON, - STATE(4909), 1, + STATE(4757), 1, + aux_sym_object_type_repeat1, + STATE(4786), 1, sym_comment, - ACTIONS(7532), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6893), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [170214] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(8439), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8437), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [170943] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - ACTIONS(8394), 1, - anon_sym_QMARK, - STATE(4910), 1, - sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(6845), 1, - sym__call_signature, - [170242] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7929), 1, anon_sym_LPAREN, - ACTIONS(8396), 1, - anon_sym_QMARK, - STATE(4911), 1, + ACTIONS(8441), 1, + sym_identifier, + STATE(4787), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6569), 1, + STATE(6653), 1, sym__call_signature, - [170270] = 9, + [170971] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(8398), 1, - anon_sym_QMARK, - STATE(4276), 1, - sym_formal_parameters, - STATE(4912), 1, + STATE(4670), 1, + aux_sym_object_type_repeat1, + STATE(4788), 1, sym_comment, - STATE(6250), 1, - sym__call_signature, - STATE(6903), 1, - sym_type_parameters, - [170298] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8400), 1, - anon_sym_default, - ACTIONS(8403), 1, + ACTIONS(8445), 2, anon_sym_RBRACE, - ACTIONS(8405), 1, - anon_sym_case, - STATE(4913), 2, - sym_comment, - aux_sym_switch_body_repeat1, - STATE(6120), 2, - sym_switch_case, - sym_switch_default, - [170322] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8190), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8408), 1, - anon_sym_BQUOTE, - STATE(4811), 1, - aux_sym_template_string_repeat1, - STATE(4914), 1, - sym_comment, - STATE(5692), 1, - sym_template_substitution, - ACTIONS(7840), 2, - sym__template_chars, - sym_escape_sequence, - [170348] = 9, + anon_sym_PIPE_RBRACE, + ACTIONS(8443), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [170993] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(8410), 1, - anon_sym_QMARK, - STATE(4276), 1, - sym_formal_parameters, - STATE(4555), 1, - sym__call_signature, - STATE(4915), 1, + STATE(4789), 1, sym_comment, - STATE(6903), 1, - sym_type_parameters, - [170376] = 6, + ACTIONS(8447), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [171011] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4822), 1, + STATE(4757), 1, aux_sym_object_type_repeat1, - STATE(4916), 1, + STATE(4790), 1, sym_comment, - ACTIONS(8414), 2, + ACTIONS(8451), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8412), 3, + ACTIONS(8449), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170398] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8416), 1, - anon_sym_export, - ACTIONS(8418), 1, - anon_sym_class, - ACTIONS(8420), 1, - anon_sym_abstract, - STATE(4906), 1, - aux_sym_export_statement_repeat1, - STATE(4917), 1, - sym_comment, - STATE(5733), 1, - sym_decorator, - [170426] = 6, + [171033] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3662), 1, - sym_statement_block, - STATE(4918), 1, + ACTIONS(8453), 1, + anon_sym_DOT, + STATE(4791), 1, sym_comment, - ACTIONS(7956), 4, + ACTIONS(7885), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [170448] = 9, + [171053] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(8422), 1, - anon_sym_COMMA, - ACTIONS(8424), 1, - anon_sym_GT, - STATE(4919), 1, + STATE(4792), 1, sym_comment, - STATE(6187), 1, - aux_sym_type_arguments_repeat1, - [170476] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(7596), 1, - anon_sym_DOT, - ACTIONS(8426), 1, + ACTIONS(8455), 2, anon_sym_COMMA, - ACTIONS(8428), 1, - anon_sym_GT, - STATE(4503), 1, - sym_arguments, - STATE(4920), 1, - sym_comment, - STATE(6190), 1, - aux_sym_type_arguments_repeat1, - [170504] = 6, + anon_sym_RBRACE, + ACTIONS(4640), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [171073] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3610), 1, - sym_statement_block, - STATE(4921), 1, + STATE(4793), 1, sym_comment, - ACTIONS(7958), 4, + STATE(4823), 1, + aux_sym_object_type_repeat1, + ACTIONS(8459), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8457), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170526] = 9, + [171095] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(8430), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(8461), 1, anon_sym_QMARK, - STATE(4343), 1, - sym_formal_parameters, - STATE(4881), 1, - sym__call_signature, - STATE(4922), 1, + STATE(4794), 1, sym_comment, - STATE(6498), 1, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, sym_type_parameters, - [170554] = 9, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + STATE(6802), 1, + sym__call_signature, + [171123] = 9, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8432), 1, - anon_sym_export, - ACTIONS(8434), 1, - anon_sym_class, - ACTIONS(8436), 1, - anon_sym_abstract, - STATE(4906), 1, - aux_sym_export_statement_repeat1, - STATE(4923), 1, - sym_comment, - STATE(5733), 1, - sym_decorator, - [170582] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3644), 1, - sym_statement_block, - STATE(4924), 1, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7929), 1, + anon_sym_LPAREN, + ACTIONS(8463), 1, + sym_identifier, + STATE(4795), 1, sym_comment, - ACTIONS(7958), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [170604] = 6, + STATE(4815), 1, + sym_formal_parameters, + STATE(6346), 1, + sym_type_parameters, + STATE(6901), 1, + sym__call_signature, + [171151] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4822), 1, - aux_sym_object_type_repeat1, - STATE(4925), 1, + ACTIONS(3977), 1, + anon_sym_LBRACE, + ACTIONS(8326), 1, + anon_sym_LBRACK, + ACTIONS(8465), 1, + sym_identifier, + STATE(4796), 1, sym_comment, - ACTIONS(8440), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8438), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [170626] = 6, + STATE(5872), 1, + sym__destructuring_pattern, + STATE(4286), 2, + sym_object_pattern, + sym_array_pattern, + [171177] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4858), 1, + STATE(4757), 1, aux_sym_object_type_repeat1, - STATE(4926), 1, + STATE(4797), 1, sym_comment, - ACTIONS(8444), 2, + ACTIONS(8459), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8442), 3, + ACTIONS(8457), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170648] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8146), 1, - anon_sym_default, - ACTIONS(8150), 1, - anon_sym_case, - ACTIONS(8446), 1, - anon_sym_RBRACE, - STATE(4913), 1, - aux_sym_switch_body_repeat1, - STATE(4927), 1, - sym_comment, - STATE(6120), 2, - sym_switch_case, - sym_switch_default, - [170674] = 8, + [171199] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8056), 1, - anon_sym_DOT, - ACTIONS(8058), 1, - anon_sym_LT, - ACTIONS(8448), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(4928), 1, - sym_comment, - STATE(6408), 1, - sym_type_arguments, - ACTIONS(8450), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [170700] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4929), 1, + STATE(3475), 1, + sym_statement_block, + STATE(4798), 1, sym_comment, - ACTIONS(8089), 6, + ACTIONS(7980), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - [170718] = 9, + [171221] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(8452), 1, - anon_sym_QMARK, - STATE(4276), 1, - sym_formal_parameters, - STATE(4542), 1, - sym__call_signature, - STATE(4930), 1, + ACTIONS(4109), 1, + anon_sym_DQUOTE, + ACTIONS(4111), 1, + anon_sym_SQUOTE, + ACTIONS(8133), 1, + sym_identifier, + STATE(1047), 1, + sym_nested_identifier, + STATE(1381), 1, + sym_string, + STATE(1543), 1, + sym__module, + STATE(4799), 1, sym_comment, - STATE(6903), 1, - sym_type_parameters, - [170746] = 6, + [171249] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(3612), 1, + STATE(3466), 1, sym_statement_block, - STATE(4931), 1, + STATE(4800), 1, sym_comment, - ACTIONS(8026), 4, + ACTIONS(7913), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170768] = 6, + [171271] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4916), 1, - aux_sym_object_type_repeat1, - STATE(4932), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3476), 1, + sym_statement_block, + STATE(4801), 1, sym_comment, - ACTIONS(8440), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8438), 3, + ACTIONS(8004), 4, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170790] = 9, + [171293] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7908), 1, + ACTIONS(7929), 1, anon_sym_LPAREN, - ACTIONS(8454), 1, + ACTIONS(8467), 1, sym_identifier, - STATE(4933), 1, + STATE(4802), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6788), 1, + STATE(6653), 1, sym__call_signature, - [170818] = 9, + [171321] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4757), 1, + aux_sym_object_type_repeat1, + STATE(4803), 1, + sym_comment, + ACTIONS(8471), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8469), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171343] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7285), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(8456), 1, + ACTIONS(8473), 1, anon_sym_QMARK, - STATE(4343), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(4934), 1, + STATE(4804), 1, sym_comment, - STATE(4970), 1, + STATE(5324), 1, sym__call_signature, - STATE(6498), 1, + STATE(6358), 1, sym_type_parameters, - [170846] = 9, + [171371] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(8458), 1, + ACTIONS(8475), 1, anon_sym_QMARK, - STATE(4935), 1, - sym_comment, - STATE(4978), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(6888), 1, + STATE(4805), 1, + sym_comment, + STATE(6090), 1, sym__call_signature, - [170874] = 6, + STATE(6358), 1, + sym_type_parameters, + [171399] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(4925), 1, - aux_sym_object_type_repeat1, - STATE(4936), 1, + ACTIONS(4109), 1, + anon_sym_DQUOTE, + ACTIONS(4111), 1, + anon_sym_SQUOTE, + ACTIONS(8133), 1, + sym_identifier, + STATE(1047), 1, + sym_nested_identifier, + STATE(1381), 1, + sym_string, + STATE(1540), 1, + sym__module, + STATE(4806), 1, sym_comment, - ACTIONS(8462), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8460), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [170896] = 9, + [171427] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7908), 1, + ACTIONS(7929), 1, anon_sym_LPAREN, - ACTIONS(8464), 1, + ACTIONS(8477), 1, sym_identifier, - STATE(4937), 1, + STATE(4807), 1, sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6932), 1, + STATE(6901), 1, sym__call_signature, - [170924] = 6, + [171455] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3625), 1, - sym_statement_block, - STATE(4938), 1, + ACTIONS(8479), 1, + anon_sym_default, + ACTIONS(8482), 1, + anon_sym_RBRACE, + ACTIONS(8484), 1, + anon_sym_case, + STATE(4808), 2, + sym_comment, + aux_sym_switch_body_repeat1, + STATE(5904), 2, + sym_switch_case, + sym_switch_default, + [171479] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4757), 1, + aux_sym_object_type_repeat1, + STATE(4809), 1, sym_comment, - ACTIONS(8026), 4, + ACTIONS(8489), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8487), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [170946] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [171501] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(8466), 1, - sym_identifier, - STATE(4939), 1, - sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(6788), 1, - sym__call_signature, - [170974] = 9, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(8468), 1, - sym_identifier, - STATE(4940), 1, + STATE(4810), 1, sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(7098), 1, - sym__call_signature, - [171002] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(3973), 1, + ACTIONS(6374), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(8194), 1, - anon_sym_LBRACK, - ACTIONS(8470), 1, - sym_identifier, - STATE(4941), 1, - sym_comment, - STATE(6076), 1, - sym__destructuring_pattern, - STATE(4344), 2, - sym_object_pattern, - sym_array_pattern, - [171028] = 9, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DOT, + [171519] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(8472), 1, - anon_sym_QMARK, - STATE(4276), 1, - sym_formal_parameters, - STATE(4942), 1, + STATE(4803), 1, + aux_sym_object_type_repeat1, + STATE(4811), 1, sym_comment, - STATE(5324), 1, - sym__call_signature, - STATE(6903), 1, - sym_type_parameters, - [171056] = 8, + ACTIONS(8489), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8487), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171541] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8190), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8474), 1, - anon_sym_BQUOTE, - STATE(4811), 1, - aux_sym_template_string_repeat1, - STATE(4943), 1, + STATE(4809), 1, + aux_sym_object_type_repeat1, + STATE(4812), 1, sym_comment, - STATE(5692), 1, - sym_template_substitution, - ACTIONS(7840), 2, - sym__template_chars, - sym_escape_sequence, - [171082] = 9, + ACTIONS(8493), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8491), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171563] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(8476), 1, - anon_sym_QMARK, - STATE(4276), 1, - sym_formal_parameters, - STATE(4944), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8495), 1, + anon_sym_export, + ACTIONS(8497), 1, + anon_sym_class, + ACTIONS(8499), 1, + anon_sym_abstract, + STATE(4662), 1, + aux_sym_export_statement_repeat1, + STATE(4813), 1, sym_comment, - STATE(5775), 1, - sym__call_signature, - STATE(6903), 1, - sym_type_parameters, - [171110] = 9, + STATE(5596), 1, + sym_decorator, + [171591] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, + ACTIONS(7146), 1, anon_sym_AMP, - ACTIONS(7139), 1, + ACTIONS(7148), 1, anon_sym_PIPE, - ACTIONS(7141), 1, + ACTIONS(7150), 1, anon_sym_extends, - ACTIONS(8478), 1, - anon_sym_COMMA, - ACTIONS(8480), 1, - anon_sym_GT, - STATE(4945), 1, + ACTIONS(8503), 1, + anon_sym_QMARK, + STATE(4814), 1, sym_comment, - STATE(6202), 1, - aux_sym_type_arguments_repeat1, - [171138] = 6, + ACTIONS(8501), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [171617] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(8190), 1, + anon_sym_COLON, + STATE(4815), 1, + sym_comment, + ACTIONS(7521), 2, anon_sym_LBRACE, - STATE(3638), 1, - sym_statement_block, - STATE(4946), 1, + anon_sym_EQ_GT, + STATE(6510), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [171639] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(7994), 1, + sym_identifier, + STATE(4357), 1, + sym_nested_identifier, + STATE(4587), 1, + sym_string, + STATE(4816), 1, sym_comment, - ACTIONS(8024), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [171160] = 9, + STATE(4851), 1, + sym__module, + [171667] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - ACTIONS(8482), 1, - anon_sym_QMARK, - STATE(4947), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8505), 1, + anon_sym_export, + ACTIONS(8507), 1, + anon_sym_class, + ACTIONS(8509), 1, + anon_sym_abstract, + STATE(4662), 1, + aux_sym_export_statement_repeat1, + STATE(4817), 1, sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(7116), 1, - sym__call_signature, - [171188] = 9, + STATE(5596), 1, + sym_decorator, + [171695] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, ACTIONS(1973), 1, anon_sym_LT, - ACTIONS(7908), 1, + ACTIONS(7929), 1, anon_sym_LPAREN, - ACTIONS(8484), 1, + ACTIONS(8511), 1, sym_identifier, - STATE(4948), 1, - sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(6489), 1, + STATE(4818), 1, + sym_comment, + STATE(6346), 1, sym_type_parameters, - STATE(6788), 1, + STATE(6653), 1, sym__call_signature, - [171216] = 9, - ACTIONS(3), 1, + [171723] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3461), 1, + sym_statement_block, + STATE(4819), 1, + sym_comment, + ACTIONS(7915), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171745] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(8486), 1, - sym_identifier, - STATE(4949), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8516), 1, + anon_sym_BQUOTE, + ACTIONS(8518), 1, + anon_sym_DOLLAR_LBRACE, + STATE(5570), 1, + sym_template_substitution, + ACTIONS(8513), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4820), 2, sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(7098), 1, - sym__call_signature, - [171244] = 8, + aux_sym_template_string_repeat1, + [171769] = 9, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3973), 1, - anon_sym_LBRACE, - ACTIONS(8194), 1, - anon_sym_LBRACK, - ACTIONS(8488), 1, + ACTIONS(1991), 1, + anon_sym_DQUOTE, + ACTIONS(1993), 1, + anon_sym_SQUOTE, + ACTIONS(7994), 1, sym_identifier, - STATE(4950), 1, + STATE(4357), 1, + sym_nested_identifier, + STATE(4587), 1, + sym_string, + STATE(4821), 1, sym_comment, - STATE(6109), 1, - sym__destructuring_pattern, - STATE(4344), 2, - sym_object_pattern, - sym_array_pattern, - [171270] = 8, + STATE(4991), 1, + sym__module, + [171797] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8146), 1, - anon_sym_default, - ACTIONS(8150), 1, - anon_sym_case, - ACTIONS(8490), 1, - anon_sym_RBRACE, - STATE(4927), 1, - aux_sym_switch_body_repeat1, - STATE(4951), 1, + STATE(4757), 1, + aux_sym_object_type_repeat1, + STATE(4822), 1, sym_comment, - STATE(6120), 2, - sym_switch_case, - sym_switch_default, - [171296] = 9, - ACTIONS(3), 1, + ACTIONS(8523), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8521), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171819] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + STATE(4757), 1, + aux_sym_object_type_repeat1, + STATE(4823), 1, + sym_comment, + ACTIONS(8527), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8525), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171841] = 9, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7908), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(8492), 1, - sym_identifier, - STATE(4952), 1, - sym_comment, - STATE(4978), 1, + ACTIONS(8529), 1, + anon_sym_QMARK, + STATE(4128), 1, sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(6951), 1, + STATE(4824), 1, + sym_comment, + STATE(5196), 1, sym__call_signature, - [171324] = 9, + STATE(6358), 1, + sym_type_parameters, + [171869] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(7596), 1, - anon_sym_DOT, - ACTIONS(8494), 1, - anon_sym_COMMA, - ACTIONS(8496), 1, - anon_sym_GT, - STATE(4503), 1, - sym_arguments, - STATE(4953), 1, + STATE(4825), 1, sym_comment, - STATE(6207), 1, - aux_sym_type_arguments_repeat1, - [171352] = 9, + ACTIONS(8086), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_COLON, + [171887] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(8498), 1, - anon_sym_COMMA, - ACTIONS(8500), 1, - anon_sym_GT, - STATE(4954), 1, + STATE(4720), 1, + aux_sym_object_type_repeat1, + STATE(4826), 1, sym_comment, - STATE(5813), 1, - aux_sym_type_arguments_repeat1, - [171380] = 9, + ACTIONS(8523), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8521), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [171909] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(8502), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(8531), 1, anon_sym_QMARK, - STATE(4955), 1, - sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(6489), 1, + STATE(4827), 1, + sym_comment, + STATE(6346), 1, sym_type_parameters, - STATE(7058), 1, + STATE(6412), 1, sym__call_signature, - [171408] = 9, + [171937] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4278), 1, + ACTIONS(4282), 1, anon_sym_LPAREN, - ACTIONS(7596), 1, + ACTIONS(7747), 1, anon_sym_DOT, - ACTIONS(8504), 1, + ACTIONS(8533), 1, anon_sym_COMMA, - ACTIONS(8506), 1, + ACTIONS(8535), 1, anon_sym_GT, - STATE(4503), 1, + STATE(4380), 1, sym_arguments, - STATE(4956), 1, + STATE(4828), 1, sym_comment, STATE(5820), 1, aux_sym_type_arguments_repeat1, - [171436] = 6, + [171965] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3650), 1, - sym_statement_block, - STATE(4957), 1, - sym_comment, - ACTIONS(7956), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(8537), 1, anon_sym_COMMA, - anon_sym_SEMI, - [171458] = 5, + ACTIONS(8539), 1, + anon_sym_GT, + STATE(4829), 1, + sym_comment, + STATE(5824), 1, + aux_sym_type_arguments_repeat1, + [171993] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8508), 1, + ACTIONS(8541), 1, sym_identifier, - STATE(4958), 1, + STATE(4830), 1, sym_comment, - ACTIONS(7095), 5, + ACTIONS(7104), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [171478] = 9, + [172013] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - ACTIONS(8510), 1, - anon_sym_QMARK, - STATE(4959), 1, + ACTIONS(8149), 1, + anon_sym_default, + ACTIONS(8153), 1, + anon_sym_case, + ACTIONS(8543), 1, + anon_sym_RBRACE, + STATE(4831), 1, sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(7018), 1, - sym__call_signature, - [171506] = 9, + STATE(4845), 1, + aux_sym_switch_body_repeat1, + STATE(5904), 2, + sym_switch_case, + sym_switch_default, + [172039] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(8512), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(8545), 1, anon_sym_QMARK, - STATE(4960), 1, - sym_comment, - STATE(4978), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(6489), 1, + STATE(4832), 1, + sym_comment, + STATE(6346), 1, sym_type_parameters, - STATE(7011), 1, + STATE(6399), 1, sym__call_signature, - [171534] = 6, + [172067] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8216), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8547), 1, + anon_sym_BQUOTE, + STATE(4676), 1, + aux_sym_template_string_repeat1, + STATE(4833), 1, + sym_comment, + STATE(5570), 1, + sym_template_substitution, + ACTIONS(7871), 2, + sym__template_chars, + sym_escape_sequence, + [172093] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + STATE(4834), 1, + sym_comment, + ACTIONS(7881), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(3616), 1, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_DOT, + [172111] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3513), 1, sym_statement_block, - STATE(4961), 1, + STATE(4835), 1, sym_comment, - ACTIONS(7970), 4, + ACTIONS(8034), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171556] = 9, + [172133] = 9, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7272), 1, anon_sym_LPAREN, - ACTIONS(8514), 1, + ACTIONS(8549), 1, anon_sym_QMARK, - STATE(4962), 1, - sym_comment, - STATE(4978), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(7008), 1, + STATE(4677), 1, sym__call_signature, - [171584] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(4836), 1, + sym_comment, + STATE(6464), 1, + sym_type_parameters, + [172161] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(8516), 1, - sym_identifier, - STATE(4963), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4837), 1, sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(6788), 1, - sym__call_signature, - [171612] = 6, + STATE(4838), 1, + aux_sym_object_type_repeat1, + ACTIONS(8553), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8551), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172183] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3614), 1, - sym_statement_block, - STATE(4964), 1, + STATE(4757), 1, + aux_sym_object_type_repeat1, + STATE(4838), 1, sym_comment, - ACTIONS(7980), 4, + ACTIONS(8557), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8555), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [171634] = 9, + [172205] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(8559), 1, + sym_identifier, + STATE(4839), 1, + sym_comment, + ACTIONS(7104), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT, - ACTIONS(7908), 1, + anon_sym_BQUOTE, + [172225] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8561), 1, + sym_identifier, + STATE(4840), 1, + sym_comment, + ACTIONS(7104), 5, anon_sym_LPAREN, - ACTIONS(8518), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [172245] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8563), 1, sym_identifier, - STATE(4965), 1, + STATE(4841), 1, sym_comment, - STATE(4978), 1, + ACTIONS(7104), 5, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT, + anon_sym_BQUOTE, + [172265] = 9, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1973), 1, + anon_sym_LT, + ACTIONS(7929), 1, + anon_sym_LPAREN, + ACTIONS(8565), 1, + sym_identifier, + STATE(4815), 1, sym_formal_parameters, - STATE(6489), 1, + STATE(4842), 1, + sym_comment, + STATE(6346), 1, sym_type_parameters, - STATE(7098), 1, + STATE(6901), 1, sym__call_signature, - [171662] = 8, + [172293] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4786), 1, + aux_sym_object_type_repeat1, + STATE(4843), 1, + sym_comment, + ACTIONS(8557), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8555), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172315] = 8, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(3973), 1, + ACTIONS(3977), 1, anon_sym_LBRACE, - ACTIONS(8194), 1, + ACTIONS(8326), 1, anon_sym_LBRACK, - ACTIONS(8520), 1, + ACTIONS(8567), 1, sym_identifier, - STATE(4966), 1, + STATE(4844), 1, sym_comment, - STATE(6153), 1, + STATE(6037), 1, sym__destructuring_pattern, - STATE(4344), 2, + STATE(4286), 2, sym_object_pattern, sym_array_pattern, - [171688] = 9, + [172341] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8149), 1, + anon_sym_default, + ACTIONS(8153), 1, + anon_sym_case, + ACTIONS(8569), 1, + anon_sym_RBRACE, + STATE(4808), 1, + aux_sym_switch_body_repeat1, + STATE(4845), 1, + sym_comment, + STATE(5904), 2, + sym_switch_case, + sym_switch_default, + [172367] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4846), 1, + sym_comment, + STATE(6287), 1, + sym__initializer, + ACTIONS(8571), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172388] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7285), 1, + ACTIONS(7272), 1, anon_sym_LPAREN, - ACTIONS(8522), 1, - anon_sym_QMARK, - STATE(4343), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(4957), 1, - sym__call_signature, - STATE(4967), 1, + STATE(4847), 1, sym_comment, - STATE(6498), 1, + STATE(5069), 1, + sym__call_signature, + STATE(6464), 1, sym_type_parameters, - [171716] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + [172413] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4123), 1, - anon_sym_DQUOTE, - ACTIONS(4125), 1, - anon_sym_SQUOTE, - ACTIONS(8038), 1, - sym_identifier, - STATE(1197), 1, - sym_nested_identifier, - STATE(1527), 1, - sym_string, - STATE(1730), 1, - sym__module, - STATE(4968), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7477), 1, + anon_sym_extends, + ACTIONS(8575), 1, + anon_sym_PIPE, + STATE(4848), 1, sym_comment, - [171744] = 4, + ACTIONS(8573), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [172436] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4969), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4849), 1, sym_comment, - ACTIONS(8524), 6, + STATE(6199), 1, + sym__initializer, + ACTIONS(8577), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [171762] = 6, + [172457] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3652), 1, - sym_statement_block, - STATE(4970), 1, + STATE(4850), 1, sym_comment, - ACTIONS(7980), 4, + ACTIONS(2180), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [171784] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, - anon_sym_LT, - ACTIONS(7908), 1, - anon_sym_LPAREN, - ACTIONS(8526), 1, - sym_identifier, - STATE(4971), 1, - sym_comment, - STATE(4978), 1, - sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(6788), 1, - sym__call_signature, - [171812] = 6, + anon_sym_PIPE_RBRACE, + [172474] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4822), 1, - aux_sym_object_type_repeat1, - STATE(4972), 1, + STATE(4851), 1, sym_comment, - ACTIONS(8530), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8528), 3, + ACTIONS(2198), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [171834] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_PIPE_RBRACE, + [172491] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4180), 1, - anon_sym_DQUOTE, - ACTIONS(4182), 1, - anon_sym_SQUOTE, - ACTIONS(7966), 1, - sym_identifier, - STATE(992), 1, - sym_nested_identifier, - STATE(1046), 1, - sym_string, - STATE(1320), 1, - sym__module, - STATE(4973), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8579), 1, + anon_sym_LBRACE, + ACTIONS(8581), 1, + anon_sym_SEMI, + ACTIONS(8583), 1, + sym__automatic_semicolon, + ACTIONS(8585), 1, + sym__function_signature_automatic_semicolon, + STATE(1174), 1, + sym_statement_block, + STATE(4852), 1, sym_comment, - [171862] = 9, + [172516] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(8532), 1, - anon_sym_QMARK, - STATE(4276), 1, - sym_formal_parameters, - STATE(4549), 1, - sym__call_signature, - STATE(4974), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7477), 1, + anon_sym_extends, + ACTIONS(8575), 1, + anon_sym_PIPE, + STATE(4853), 1, sym_comment, - STATE(6903), 1, - sym_type_parameters, - [171890] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(8587), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [172539] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4123), 1, - anon_sym_DQUOTE, - ACTIONS(4125), 1, - anon_sym_SQUOTE, - ACTIONS(8038), 1, - sym_identifier, - STATE(1197), 1, - sym_nested_identifier, - STATE(1527), 1, - sym_string, - STATE(1682), 1, - sym__module, - STATE(4975), 1, - sym_comment, - [171918] = 9, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1973), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7908), 1, + ACTIONS(7272), 1, anon_sym_LPAREN, - ACTIONS(8534), 1, - sym_identifier, - STATE(4976), 1, - sym_comment, - STATE(4978), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(6489), 1, - sym_type_parameters, - STATE(7098), 1, + STATE(4705), 1, sym__call_signature, - [171946] = 9, + STATE(4854), 1, + sym_comment, + STATE(6464), 1, + sym_type_parameters, + [172564] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2787), 1, anon_sym_AT, - ACTIONS(8536), 1, - anon_sym_export, - ACTIONS(8538), 1, - anon_sym_class, - ACTIONS(8540), 1, + ACTIONS(8383), 1, anon_sym_abstract, - STATE(4906), 1, + ACTIONS(8589), 1, + anon_sym_class, + STATE(4662), 1, aux_sym_export_statement_repeat1, - STATE(4977), 1, + STATE(4855), 1, sym_comment, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - [171974] = 6, + [172589] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8392), 1, - anon_sym_COLON, - STATE(4978), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4856), 1, sym_comment, - ACTIONS(7518), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - STATE(6640), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [171996] = 9, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6197), 1, + sym__initializer, + ACTIONS(8591), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [172610] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(4180), 1, - anon_sym_DQUOTE, - ACTIONS(4182), 1, - anon_sym_SQUOTE, - ACTIONS(7966), 1, - sym_identifier, - STATE(992), 1, - sym_nested_identifier, - STATE(1046), 1, - sym_string, - STATE(1317), 1, - sym__module, - STATE(4979), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8499), 1, + anon_sym_abstract, + ACTIONS(8593), 1, + anon_sym_class, + STATE(4662), 1, + aux_sym_export_statement_repeat1, + STATE(4857), 1, sym_comment, - [172024] = 6, + STATE(5596), 1, + sym_decorator, + [172635] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3623), 1, - sym_statement_block, - STATE(4980), 1, + STATE(4858), 1, sym_comment, - ACTIONS(8020), 4, + ACTIONS(8595), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172046] = 9, + anon_sym_PIPE_RBRACE, + [172652] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, + ACTIONS(5456), 1, + anon_sym_in, + STATE(4859), 1, + sym_comment, + ACTIONS(6639), 4, anon_sym_LPAREN, - ACTIONS(7239), 1, + anon_sym_COLON, anon_sym_LT, - ACTIONS(8542), 1, anon_sym_QMARK, - STATE(4276), 1, - sym_formal_parameters, - STATE(4981), 1, - sym_comment, - STATE(5154), 1, - sym__call_signature, - STATE(6903), 1, - sym_type_parameters, - [172074] = 5, - ACTIONS(3), 1, + [172671] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8171), 1, + anon_sym_abstract, + ACTIONS(8597), 1, + anon_sym_class, + STATE(4662), 1, + aux_sym_export_statement_repeat1, + STATE(4860), 1, + sym_comment, + STATE(5596), 1, + sym_decorator, + [172696] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8544), 1, - sym_identifier, - STATE(4982), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4861), 1, sym_comment, - ACTIONS(7095), 5, + ACTIONS(8599), 5, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT, anon_sym_BQUOTE, - [172094] = 8, + [172713] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8190), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8546), 1, - anon_sym_BQUOTE, - STATE(4914), 1, - aux_sym_template_string_repeat1, - STATE(4983), 1, + STATE(4862), 1, sym_comment, - STATE(5692), 1, - sym_template_substitution, - ACTIONS(7840), 2, - sym__template_chars, - sym_escape_sequence, - [172120] = 6, + ACTIONS(8601), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172730] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2168), 1, + anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(5171), 1, anon_sym_LBRACE, - STATE(3651), 1, - sym_statement_block, - STATE(4984), 1, + STATE(4863), 1, sym_comment, - ACTIONS(7970), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5173), 3, anon_sym_COMMA, - anon_sym_SEMI, - [172142] = 4, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [172751] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(2174), 1, + anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4985), 1, - sym_comment, - ACTIONS(7900), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5171), 1, anon_sym_LBRACE, + STATE(4864), 1, + sym_comment, + ACTIONS(5173), 3, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_COLON, - [172160] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [172772] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8548), 1, - sym_identifier, - STATE(4986), 1, - sym_comment, - ACTIONS(7095), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [172180] = 5, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, + STATE(4865), 1, + sym_comment, + ACTIONS(8603), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172789] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8550), 1, - sym_identifier, - STATE(4987), 1, - sym_comment, - ACTIONS(7095), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [172200] = 5, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, + STATE(4866), 1, + sym_comment, + ACTIONS(8096), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172806] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8552), 1, - sym_identifier, - STATE(4988), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4867), 1, sym_comment, - ACTIONS(7095), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [172220] = 8, + ACTIONS(8098), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172823] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8554), 1, - anon_sym_catch, - ACTIONS(8556), 1, - anon_sym_finally, - STATE(4989), 1, + ACTIONS(8605), 1, + anon_sym_EQ, + ACTIONS(8607), 1, + anon_sym_COMMA, + ACTIONS(8609), 1, + anon_sym_RBRACE, + STATE(4868), 1, sym_comment, - STATE(5564), 1, - sym_catch_clause, - STATE(7077), 1, - sym_finally_clause, - ACTIONS(3127), 2, - anon_sym_else, - anon_sym_while, - [172246] = 9, + STATE(5624), 1, + aux_sym_enum_body_repeat1, + STATE(6674), 1, + sym__initializer, + [172848] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - ACTIONS(8558), 1, - anon_sym_QMARK, - STATE(4978), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(4990), 1, + STATE(4869), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(6724), 1, + STATE(5321), 1, sym__call_signature, - [172274] = 4, + STATE(6358), 1, + sym_type_parameters, + [172873] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4991), 1, + STATE(4870), 1, sym_comment, - ACTIONS(2192), 6, + ACTIONS(3589), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_catch, - anon_sym_finally, - [172292] = 9, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172890] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(8560), 1, - anon_sym_QMARK, - STATE(4276), 1, - sym_formal_parameters, - STATE(4992), 1, + STATE(4871), 1, sym_comment, - STATE(5959), 1, - sym__call_signature, - STATE(6903), 1, - sym_type_parameters, - [172320] = 6, + ACTIONS(3591), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172907] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(4993), 1, + STATE(4872), 1, sym_comment, - STATE(6419), 1, - sym__initializer, - ACTIONS(8562), 3, + ACTIONS(8096), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172341] = 6, + anon_sym_PIPE_RBRACE, + [172924] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(4994), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + ACTIONS(8611), 1, + anon_sym_DOT, + STATE(4873), 1, sym_comment, - STATE(6189), 1, - sym__initializer, - ACTIONS(8564), 3, + STATE(6382), 1, + sym_statement_block, + ACTIONS(2130), 2, + anon_sym_else, + anon_sym_while, + [172947] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4874), 1, + sym_comment, + ACTIONS(3631), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [172964] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4875), 1, + sym_comment, + ACTIONS(3633), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172362] = 6, + anon_sym_PIPE_RBRACE, + [172981] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(4995), 1, + STATE(4876), 1, sym_comment, - STATE(6050), 1, + STATE(6168), 1, sym__initializer, - ACTIONS(8566), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172383] = 6, + [173002] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(4996), 1, + STATE(4877), 1, sym_comment, - STATE(6034), 1, + STATE(6163), 1, sym__initializer, - ACTIONS(8566), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172404] = 4, + [173023] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4997), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + ACTIONS(8615), 1, + anon_sym_DOT, + STATE(4878), 1, + sym_comment, + STATE(6382), 1, + sym_statement_block, + ACTIONS(2130), 2, + anon_sym_else, + anon_sym_while, + [173046] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4879), 1, sym_comment, - ACTIONS(2260), 5, + ACTIONS(3545), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172421] = 4, + [173063] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(4998), 1, + STATE(4880), 1, sym_comment, - ACTIONS(2254), 5, + ACTIONS(3473), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172438] = 6, + [173080] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(4999), 1, + STATE(4881), 1, sym_comment, - STATE(6014), 1, + STATE(6151), 1, sym__initializer, - ACTIONS(8566), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172459] = 8, + [173101] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8568), 1, - anon_sym_LBRACE, - ACTIONS(8570), 1, - anon_sym_SEMI, - ACTIONS(8572), 1, - sym__automatic_semicolon, - ACTIONS(8574), 1, - sym__function_signature_automatic_semicolon, - STATE(332), 1, - sym_statement_block, - STATE(5000), 1, + STATE(4882), 1, sym_comment, - [172484] = 6, + ACTIONS(3645), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173118] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5001), 1, + STATE(4883), 1, sym_comment, - STATE(6013), 1, + STATE(6207), 1, sym__initializer, - ACTIONS(8576), 3, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172505] = 6, + [173139] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5002), 1, + STATE(4884), 1, sym_comment, - STATE(6062), 1, - sym__initializer, - ACTIONS(8576), 3, + ACTIONS(3467), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172526] = 8, + anon_sym_PIPE_RBRACE, + [173156] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7976), 1, - anon_sym_extends, - ACTIONS(8095), 1, - anon_sym_LBRACE, - ACTIONS(8097), 1, - anon_sym_LBRACE_PIPE, - STATE(1179), 1, - sym_object_type, - STATE(5003), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8617), 1, + anon_sym_class, + ACTIONS(8619), 1, + anon_sym_abstract, + STATE(4662), 1, + aux_sym_export_statement_repeat1, + STATE(4885), 1, sym_comment, - STATE(6364), 1, - sym_extends_type_clause, - [172551] = 8, + STATE(5596), 1, + sym_decorator, + [173181] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5004), 1, + ACTIONS(8621), 1, + anon_sym_EQ, + STATE(4886), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(7019), 1, - sym__call_signature, - [172576] = 6, + ACTIONS(4369), 4, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [173200] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + STATE(4887), 1, + sym_comment, + ACTIONS(6245), 5, anon_sym_EQ, - STATE(5005), 1, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [173217] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4888), 1, sym_comment, - STATE(5975), 1, + STATE(6146), 1, sym__initializer, - ACTIONS(8578), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172597] = 6, + [173238] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5006), 1, + STATE(4889), 1, sym_comment, - STATE(6069), 1, + STATE(6142), 1, sym__initializer, - ACTIONS(8576), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172618] = 6, + [173259] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5007), 1, + STATE(4890), 1, sym_comment, - STATE(6010), 1, - sym__initializer, - ACTIONS(8576), 3, + ACTIONS(3469), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173276] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(4891), 1, + sym_comment, + ACTIONS(3471), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172639] = 6, + anon_sym_PIPE_RBRACE, + [173293] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5008), 1, + STATE(4892), 1, sym_comment, - STATE(5974), 1, + STATE(6140), 1, sym__initializer, - ACTIONS(8580), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172660] = 6, + [173314] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5009), 1, + STATE(4893), 1, sym_comment, - STATE(5991), 1, + STATE(6132), 1, sym__initializer, - ACTIONS(8566), 3, + ACTIONS(8624), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172681] = 6, + [173335] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2206), 1, - anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(5010), 1, + STATE(4894), 1, sym_comment, - ACTIONS(5039), 3, + ACTIONS(2398), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [172702] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173352] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2276), 1, - anon_sym_DOT, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5037), 1, - anon_sym_LBRACE, - STATE(5011), 1, + STATE(4895), 1, sym_comment, - ACTIONS(5039), 3, + ACTIONS(3479), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [172723] = 6, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173369] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5012), 1, + STATE(4896), 1, sym_comment, - STATE(5960), 1, - sym__initializer, - ACTIONS(8578), 3, + ACTIONS(3481), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172744] = 6, + anon_sym_PIPE_RBRACE, + [173386] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5013), 1, + STATE(4897), 1, sym_comment, - STATE(5983), 1, - sym__initializer, - ACTIONS(8566), 3, + ACTIONS(3487), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172765] = 8, + anon_sym_PIPE_RBRACE, + [173403] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8570), 1, - anon_sym_SEMI, - ACTIONS(8572), 1, - sym__automatic_semicolon, - ACTIONS(8574), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(8582), 1, - anon_sym_LBRACE, - STATE(986), 1, - sym_statement_block, - STATE(5014), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8509), 1, + anon_sym_abstract, + ACTIONS(8626), 1, + anon_sym_class, + STATE(4662), 1, + aux_sym_export_statement_repeat1, + STATE(4898), 1, sym_comment, - [172790] = 6, + STATE(5596), 1, + sym_decorator, + [173428] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5015), 1, + STATE(4899), 1, sym_comment, - STATE(5976), 1, - sym__initializer, - ACTIONS(8578), 3, + ACTIONS(3489), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [172811] = 8, + anon_sym_PIPE_RBRACE, + [173445] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8584), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(8586), 1, - anon_sym_COMMA, - ACTIONS(8588), 1, - anon_sym_RBRACE, - STATE(5016), 1, + STATE(4900), 1, sym_comment, - STATE(5807), 1, - aux_sym_enum_body_repeat1, - STATE(6858), 1, + STATE(6208), 1, sym__initializer, - [172836] = 4, + ACTIONS(8577), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [173466] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5017), 1, + STATE(4901), 1, sym_comment, - ACTIONS(3613), 5, + ACTIONS(3491), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172853] = 4, + [173483] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5018), 1, + STATE(4902), 1, sym_comment, - ACTIONS(3615), 5, + ACTIONS(3493), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172870] = 8, + [173500] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8590), 1, - anon_sym_LBRACE, - ACTIONS(8592), 1, - anon_sym_SEMI, - ACTIONS(8594), 1, - sym__automatic_semicolon, - ACTIONS(8596), 1, - sym__function_signature_automatic_semicolon, - STATE(404), 1, - sym_statement_block, - STATE(5019), 1, + STATE(4903), 1, sym_comment, - [172895] = 4, + ACTIONS(3495), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173517] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5020), 1, + STATE(4904), 1, sym_comment, - ACTIONS(3535), 5, + ACTIONS(3497), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172912] = 4, + [173534] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5021), 1, + STATE(4905), 1, sym_comment, - ACTIONS(3473), 5, + ACTIONS(3499), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172929] = 4, + [173551] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5022), 1, + STATE(4906), 1, sym_comment, - ACTIONS(3475), 5, + ACTIONS(3509), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [172946] = 8, + [173568] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - STATE(4276), 1, - sym_formal_parameters, - STATE(5023), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4907), 1, sym_comment, - STATE(5948), 1, - sym__call_signature, - STATE(6903), 1, - sym_type_parameters, - [172971] = 6, + STATE(5997), 1, + sym__initializer, + ACTIONS(8613), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [173589] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5024), 1, + STATE(4908), 1, sym_comment, - STATE(5980), 1, + STATE(6121), 1, sym__initializer, - ACTIONS(8598), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [172992] = 7, + [173610] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, - anon_sym_LBRACE, - ACTIONS(8600), 1, - anon_sym_DOT, - STATE(5025), 1, + STATE(4909), 1, sym_comment, - STATE(6468), 1, - sym_statement_block, - ACTIONS(2113), 2, - anon_sym_else, - anon_sym_while, - [173015] = 7, + ACTIONS(2380), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [173627] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, - anon_sym_LBRACE, - ACTIONS(8602), 1, - anon_sym_DOT, - STATE(5026), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_formal_parameters, + STATE(4910), 1, sym_comment, - STATE(6468), 1, - sym_statement_block, - ACTIONS(2113), 2, - anon_sym_else, - anon_sym_while, - [173038] = 4, + STATE(5008), 1, + sym__call_signature, + STATE(6464), 1, + sym_type_parameters, + [173652] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5027), 1, + ACTIONS(8628), 1, + anon_sym_BQUOTE, + ACTIONS(8630), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8632), 1, + sym__template_chars, + STATE(4911), 1, sym_comment, - ACTIONS(3559), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173055] = 4, + STATE(5015), 1, + aux_sym_template_literal_type_repeat1, + STATE(5790), 1, + sym_template_type, + [173677] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5028), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4912), 1, sym_comment, - ACTIONS(3553), 5, + STATE(6111), 1, + sym__initializer, + ACTIONS(8624), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173072] = 4, + [173698] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5029), 1, + STATE(4913), 1, sym_comment, - ACTIONS(3549), 5, + ACTIONS(2376), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173089] = 4, + [173715] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5030), 1, + STATE(4914), 1, sym_comment, - ACTIONS(3671), 5, + ACTIONS(2362), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173106] = 4, + [173732] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5031), 1, + STATE(4915), 1, sym_comment, - ACTIONS(3533), 5, + ACTIONS(3511), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173123] = 4, + [173749] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5032), 1, + STATE(4916), 1, sym_comment, - ACTIONS(2364), 5, + ACTIONS(3515), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173140] = 4, + [173766] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5033), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4917), 1, sym_comment, - ACTIONS(3523), 5, + STATE(6217), 1, + sym__initializer, + ACTIONS(8634), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173157] = 4, + [173787] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5034), 1, + STATE(4918), 1, sym_comment, - ACTIONS(3521), 5, + ACTIONS(3515), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173174] = 4, + [173804] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5035), 1, + STATE(4919), 1, sym_comment, - ACTIONS(3505), 5, + ACTIONS(3519), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173191] = 4, + [173821] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5036), 1, + STATE(4920), 1, sym_comment, - ACTIONS(3503), 5, + ACTIONS(3521), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173208] = 4, + [173838] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5037), 1, + STATE(4921), 1, sym_comment, - ACTIONS(3487), 5, + ACTIONS(3523), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173225] = 4, + [173855] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5038), 1, + STATE(4922), 1, sym_comment, - ACTIONS(3495), 5, + ACTIONS(3525), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173242] = 4, + [173872] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5039), 1, + STATE(4923), 1, sym_comment, - ACTIONS(3593), 5, + ACTIONS(3527), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173259] = 4, + [173889] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5040), 1, + STATE(4924), 1, sym_comment, - ACTIONS(3621), 5, + ACTIONS(3529), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173276] = 4, + [173906] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5041), 1, + STATE(4925), 1, sym_comment, - ACTIONS(3623), 5, + ACTIONS(3531), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173293] = 4, + [173923] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5042), 1, + STATE(4926), 1, sym_comment, - ACTIONS(3657), 5, + ACTIONS(3531), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173310] = 4, + [173940] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5043), 1, + STATE(4927), 1, sym_comment, - ACTIONS(2400), 5, + ACTIONS(3531), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173327] = 4, + [173957] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5044), 1, + STATE(4928), 1, sym_comment, - ACTIONS(2404), 5, + ACTIONS(3613), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173344] = 4, + [173974] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5045), 1, + STATE(4929), 1, sym_comment, - ACTIONS(2420), 5, + ACTIONS(3551), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173361] = 4, + [173991] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5046), 1, + STATE(4930), 1, sym_comment, - ACTIONS(3643), 5, + ACTIONS(2358), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173378] = 4, + [174008] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5047), 1, + STATE(4931), 1, sym_comment, - ACTIONS(3655), 5, + ACTIONS(2348), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173395] = 4, + [174025] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5048), 1, + STATE(4932), 1, sym_comment, - ACTIONS(3655), 5, + ACTIONS(2344), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173412] = 4, + [174042] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5049), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4933), 1, sym_comment, - ACTIONS(3489), 5, + STATE(6096), 1, + sym__initializer, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173429] = 4, + [174063] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5050), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4934), 1, sym_comment, - ACTIONS(3673), 5, + STATE(6095), 1, + sym__initializer, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173446] = 4, + [174084] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5051), 1, + STATE(4935), 1, sym_comment, - ACTIONS(3675), 5, + ACTIONS(3553), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173463] = 4, + [174101] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5052), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4936), 1, sym_comment, - ACTIONS(3591), 5, + STATE(6084), 1, + sym__initializer, + ACTIONS(8624), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173480] = 4, + [174122] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5053), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4937), 1, sym_comment, - ACTIONS(3653), 5, + STATE(6053), 1, + sym__initializer, + ACTIONS(8624), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173497] = 4, + [174143] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5054), 1, + STATE(4938), 1, sym_comment, - ACTIONS(3483), 5, + ACTIONS(3555), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173514] = 4, + [174160] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5055), 1, + STATE(4939), 1, sym_comment, - ACTIONS(3519), 5, + ACTIONS(3555), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173531] = 4, + [174177] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5056), 1, + STATE(4940), 1, sym_comment, - ACTIONS(3519), 5, + ACTIONS(3557), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173548] = 4, + [174194] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5057), 1, + STATE(4941), 1, sym_comment, - ACTIONS(3519), 5, + ACTIONS(3561), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173565] = 4, + [174211] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5058), 1, + STATE(4942), 1, sym_comment, - ACTIONS(3567), 5, + ACTIONS(3563), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173582] = 4, + [174228] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5059), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4943), 1, sym_comment, - ACTIONS(3577), 5, + STATE(6033), 1, + sym__initializer, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173599] = 4, + [174249] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5060), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4944), 1, sym_comment, - ACTIONS(2354), 5, + STATE(6025), 1, + sym__initializer, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173616] = 4, + [174270] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5061), 1, + STATE(4945), 1, sym_comment, - ACTIONS(2412), 5, + ACTIONS(3565), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173633] = 4, + [174287] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5062), 1, + STATE(4946), 1, sym_comment, - ACTIONS(2408), 5, + ACTIONS(3567), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173650] = 4, + [174304] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5063), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4947), 1, sym_comment, - ACTIONS(3467), 5, + STATE(6023), 1, + sym__initializer, + ACTIONS(8624), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173667] = 6, + [174325] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5064), 1, + STATE(4948), 1, sym_comment, - STATE(5979), 1, + STATE(6219), 1, sym__initializer, - ACTIONS(8578), 3, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173688] = 4, + [174346] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5065), 1, + STATE(4949), 1, sym_comment, - ACTIONS(3469), 5, + ACTIONS(3569), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173705] = 6, + [174363] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5066), 1, + STATE(4950), 1, sym_comment, - STATE(6071), 1, + STATE(6220), 1, sym__initializer, - ACTIONS(8566), 3, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [173726] = 4, + [174384] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5067), 1, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(8636), 1, + sym_identifier, + STATE(4951), 1, sym_comment, - ACTIONS(3469), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173743] = 6, + STATE(5555), 1, + sym_string, + STATE(7054), 1, + sym__module_export_name, + [174409] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5068), 1, + STATE(4952), 1, sym_comment, - STATE(5978), 1, - sym__initializer, - ACTIONS(8576), 3, + ACTIONS(3569), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173764] = 8, + anon_sym_PIPE_RBRACE, + [174426] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5069), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8497), 1, + anon_sym_class, + ACTIONS(8499), 1, + anon_sym_abstract, + STATE(4662), 1, + aux_sym_export_statement_repeat1, + STATE(4953), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(7057), 1, - sym__call_signature, - [173789] = 8, + STATE(5596), 1, + sym_decorator, + [174451] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8592), 1, + ACTIONS(8581), 1, anon_sym_SEMI, - ACTIONS(8594), 1, + ACTIONS(8583), 1, sym__automatic_semicolon, - ACTIONS(8596), 1, + ACTIONS(8585), 1, sym__function_signature_automatic_semicolon, - ACTIONS(8604), 1, + ACTIONS(8638), 1, anon_sym_LBRACE, - STATE(1164), 1, + STATE(363), 1, sym_statement_block, - STATE(5070), 1, + STATE(4954), 1, sym_comment, - [173814] = 6, + [174476] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5071), 1, + STATE(4955), 1, sym_comment, - STATE(5965), 1, - sym__initializer, - ACTIONS(8576), 3, + ACTIONS(3569), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173835] = 6, + anon_sym_PIPE_RBRACE, + [174493] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5072), 1, + STATE(4956), 1, sym_comment, - STATE(6022), 1, - sym__initializer, - ACTIONS(8598), 3, + ACTIONS(3587), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [173856] = 4, + anon_sym_PIPE_RBRACE, + [174510] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(8636), 1, + sym_identifier, + STATE(4957), 1, + sym_comment, + STATE(5555), 1, + sym_string, + STATE(5892), 1, + sym__module_export_name, + [174535] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5073), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4958), 1, sym_comment, - ACTIONS(3481), 5, + STATE(5998), 1, + sym__initializer, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173873] = 4, + [174556] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5074), 1, + STATE(4959), 1, sym_comment, - ACTIONS(3659), 5, + ACTIONS(3601), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173890] = 8, + [174573] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7272), 1, anon_sym_LPAREN, - STATE(4978), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(5075), 1, + STATE(4960), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(7062), 1, + STATE(5031), 1, sym__call_signature, - [173915] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5076), 1, - sym_comment, - STATE(6489), 1, + STATE(6464), 1, sym_type_parameters, - STATE(7014), 1, - sym__call_signature, - [173940] = 4, + [174598] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5077), 1, + STATE(4961), 1, sym_comment, - ACTIONS(3491), 5, + ACTIONS(3601), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173957] = 4, + [174615] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5078), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4962), 1, sym_comment, - ACTIONS(3493), 5, + STATE(6238), 1, + sym__initializer, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [173974] = 4, + [174636] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5079), 1, + STATE(4963), 1, sym_comment, - ACTIONS(3509), 5, + ACTIONS(3601), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [173991] = 4, + [174653] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5080), 1, + STATE(4964), 1, sym_comment, - ACTIONS(3579), 5, + ACTIONS(3601), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174008] = 7, + [174670] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7466), 1, - anon_sym_extends, - ACTIONS(8608), 1, - anon_sym_PIPE, - STATE(5081), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4965), 1, sym_comment, - ACTIONS(8606), 2, + STATE(5996), 1, + sym__initializer, + ACTIONS(8613), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [174031] = 4, + [174691] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5082), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4966), 1, sym_comment, - ACTIONS(3579), 5, + STATE(5989), 1, + sym__initializer, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174048] = 7, + [174712] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7466), 1, - anon_sym_extends, - ACTIONS(8608), 1, - anon_sym_PIPE, - STATE(5083), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4967), 1, sym_comment, - ACTIONS(8610), 2, + STATE(5983), 1, + sym__initializer, + ACTIONS(8613), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [174071] = 4, + [174733] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5084), 1, + ACTIONS(8640), 1, + anon_sym_EQ, + STATE(4968), 1, sym_comment, - ACTIONS(3579), 5, - sym__automatic_semicolon, + ACTIONS(4391), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174088] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + [174752] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5085), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(4969), 1, sym_comment, - ACTIONS(3609), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174105] = 4, + STATE(6346), 1, + sym_type_parameters, + STATE(6836), 1, + sym__call_signature, + [174777] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5086), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7477), 1, + anon_sym_extends, + ACTIONS(8575), 1, + anon_sym_PIPE, + STATE(4970), 1, sym_comment, - ACTIONS(3637), 5, + ACTIONS(8642), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174122] = 4, + [174800] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5087), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4971), 1, sym_comment, - ACTIONS(3637), 5, + STATE(5982), 1, + sym__initializer, + ACTIONS(8624), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174139] = 4, + [174821] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5088), 1, + STATE(4972), 1, sym_comment, - ACTIONS(3637), 5, + ACTIONS(2428), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174156] = 4, + [174838] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5089), 1, + STATE(4973), 1, sym_comment, - ACTIONS(3637), 5, + ACTIONS(3603), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174173] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5090), 1, - sym_comment, - STATE(5989), 1, - sym__initializer, - ACTIONS(8578), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [174194] = 8, + [174855] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8604), 1, - anon_sym_LBRACE, - ACTIONS(8612), 1, - anon_sym_SEMI, - ACTIONS(8614), 1, - sym__automatic_semicolon, - ACTIONS(8616), 1, - sym__function_signature_automatic_semicolon, - STATE(1054), 1, - sym_statement_block, - STATE(5091), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(4974), 1, sym_comment, - [174219] = 4, + STATE(6346), 1, + sym_type_parameters, + STATE(6848), 1, + sym__call_signature, + [174880] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5092), 1, + STATE(4975), 1, sym_comment, - ACTIONS(2390), 5, + ACTIONS(3605), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174236] = 7, + [174897] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7466), 1, - anon_sym_extends, - ACTIONS(8608), 1, - anon_sym_PIPE, - STATE(5093), 1, - sym_comment, - ACTIONS(8618), 2, - sym__automatic_semicolon, + ACTIONS(8579), 1, + anon_sym_LBRACE, + ACTIONS(8644), 1, anon_sym_SEMI, - [174259] = 6, + ACTIONS(8646), 1, + sym__automatic_semicolon, + ACTIONS(8648), 1, + sym__function_signature_automatic_semicolon, + STATE(1139), 1, + sym_statement_block, + STATE(4976), 1, + sym_comment, + [174922] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5094), 1, + STATE(4977), 1, sym_comment, - STATE(5962), 1, + STATE(6244), 1, sym__initializer, - ACTIONS(8576), 3, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174280] = 8, + [174943] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8221), 1, - anon_sym_abstract, - ACTIONS(8620), 1, - anon_sym_class, - STATE(4906), 1, - aux_sym_export_statement_repeat1, - STATE(5095), 1, + ACTIONS(8630), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8632), 1, + sym__template_chars, + ACTIONS(8650), 1, + anon_sym_BQUOTE, + STATE(4978), 1, sym_comment, - STATE(5733), 1, - sym_decorator, - [174305] = 4, + STATE(5013), 1, + aux_sym_template_literal_type_repeat1, + STATE(5790), 1, + sym_template_type, + [174968] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5096), 1, - sym_comment, - ACTIONS(3639), 5, - sym__automatic_semicolon, + ACTIONS(4640), 1, + anon_sym_COLON, + ACTIONS(7258), 1, + anon_sym_EQ, + ACTIONS(8652), 1, anon_sym_COMMA, + ACTIONS(8654), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174322] = 4, + STATE(4979), 1, + sym_comment, + STATE(5840), 1, + aux_sym_object_pattern_repeat1, + [174993] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5097), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4980), 1, sym_comment, - ACTIONS(3641), 5, + STATE(5890), 1, + sym__initializer, + ACTIONS(8656), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174339] = 4, + [175014] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5098), 1, + STATE(4981), 1, sym_comment, - ACTIONS(3637), 5, + ACTIONS(3601), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174356] = 4, + [175031] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5099), 1, + STATE(4982), 1, sym_comment, - ACTIONS(3637), 5, + ACTIONS(3601), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174373] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5100), 1, - sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(7068), 1, - sym__call_signature, - [174398] = 4, + [175048] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5101), 1, + STATE(4983), 1, sym_comment, - ACTIONS(3663), 5, + ACTIONS(3607), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174415] = 4, + [175065] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5102), 1, + STATE(4984), 1, sym_comment, - ACTIONS(3665), 5, + ACTIONS(3609), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174432] = 4, + [175082] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5103), 1, + STATE(4985), 1, sym_comment, - ACTIONS(3661), 5, + ACTIONS(3611), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174449] = 4, + [175099] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5104), 1, + STATE(4986), 1, sym_comment, - ACTIONS(3515), 5, + ACTIONS(3663), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174466] = 4, + [175116] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5105), 1, + STATE(4987), 1, sym_comment, - ACTIONS(3497), 5, + ACTIONS(3643), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174483] = 4, + [175133] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5106), 1, + STATE(4988), 1, sym_comment, - ACTIONS(3501), 5, + ACTIONS(3649), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174500] = 4, + [175150] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5107), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4989), 1, sym_comment, - ACTIONS(3513), 5, + STATE(5669), 1, + sym__initializer, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174517] = 4, + [175171] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5108), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(4990), 1, sym_comment, - ACTIONS(2350), 5, + STATE(5602), 1, + sym__initializer, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [174534] = 4, + [175192] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5109), 1, + STATE(4991), 1, sym_comment, - ACTIONS(2350), 5, + ACTIONS(3667), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174551] = 4, + [175209] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5110), 1, + STATE(4992), 1, sym_comment, - ACTIONS(3551), 5, + ACTIONS(3669), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [174568] = 6, + [175226] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5111), 1, + STATE(4993), 1, sym_comment, - STATE(6045), 1, - sym__initializer, - ACTIONS(8598), 3, + ACTIONS(2324), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [174589] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8540), 1, - anon_sym_abstract, - ACTIONS(8622), 1, - anon_sym_class, - STATE(4906), 1, - aux_sym_export_statement_repeat1, - STATE(5112), 1, - sym_comment, - STATE(5733), 1, - sym_decorator, - [174614] = 6, + anon_sym_PIPE_RBRACE, + [175243] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5113), 1, + STATE(4994), 1, sym_comment, - STATE(5931), 1, + STATE(5888), 1, sym__initializer, - ACTIONS(8624), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174635] = 8, + [175264] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5114), 1, + ACTIONS(8630), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8632), 1, + sym__template_chars, + ACTIONS(8658), 1, + anon_sym_BQUOTE, + STATE(4995), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(7101), 1, - sym__call_signature, - [174660] = 5, + STATE(5084), 1, + aux_sym_template_literal_type_repeat1, + STATE(5790), 1, + sym_template_type, + [175289] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5500), 1, - anon_sym_in, - STATE(5115), 1, + ACTIONS(8660), 1, + anon_sym_COMMA, + STATE(4996), 2, sym_comment, - ACTIONS(6624), 4, - anon_sym_LPAREN, + aux_sym_sequence_expression_repeat1, + ACTIONS(5603), 3, + anon_sym_RBRACE, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [174679] = 6, + anon_sym_RBRACK, + [175308] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5116), 1, + STATE(4997), 1, sym_comment, - STATE(5956), 1, + STATE(6247), 1, sym__initializer, - ACTIONS(8578), 3, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174700] = 6, + [175329] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5117), 1, + STATE(4998), 1, sym_comment, - STATE(6082), 1, - sym__initializer, - ACTIONS(8598), 3, - sym__automatic_semicolon, + ACTIONS(6270), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [174721] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [175346] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5118), 1, + ACTIONS(5880), 1, + anon_sym_COMMA, + STATE(4996), 1, + aux_sym_sequence_expression_repeat1, + STATE(4999), 1, sym_comment, - STATE(5954), 1, - sym__initializer, - ACTIONS(8566), 3, + ACTIONS(8663), 3, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_RBRACK, + [175367] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5000), 1, + sym_comment, + ACTIONS(2324), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [174742] = 8, + anon_sym_PIPE_RBRACE, + [175384] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5119), 1, + ACTIONS(8000), 1, + anon_sym_extends, + ACTIONS(8012), 1, + anon_sym_LBRACE, + ACTIONS(8014), 1, + anon_sym_LBRACE_PIPE, + STATE(1347), 1, + sym_object_type, + STATE(5001), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(7110), 1, - sym__call_signature, - [174767] = 6, + STATE(5663), 1, + sym_extends_type_clause, + [175409] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5120), 1, + STATE(5002), 1, sym_comment, - STATE(5994), 1, + STATE(6249), 1, sym__initializer, - ACTIONS(8578), 3, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174788] = 6, + [175430] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5121), 1, + STATE(5003), 1, sym_comment, - STATE(5952), 1, + STATE(5877), 1, sym__initializer, - ACTIONS(8576), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174809] = 8, + [175451] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8568), 1, + ACTIONS(4969), 1, anon_sym_LBRACE, - ACTIONS(8626), 1, + ACTIONS(8665), 1, anon_sym_SEMI, - ACTIONS(8628), 1, + ACTIONS(8667), 1, sym__automatic_semicolon, - ACTIONS(8630), 1, + ACTIONS(8669), 1, sym__function_signature_automatic_semicolon, - STATE(310), 1, + STATE(3138), 1, sym_statement_block, - STATE(5122), 1, + STATE(5004), 1, sym_comment, - [174834] = 6, + [175476] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5123), 1, + STATE(5005), 1, sym_comment, - STATE(5951), 1, + STATE(5874), 1, sym__initializer, - ACTIONS(8576), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174855] = 8, + [175497] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7272), 1, anon_sym_LPAREN, - STATE(4978), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(5124), 1, + STATE(5006), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(7111), 1, + STATE(5077), 1, sym__call_signature, - [174880] = 8, + STATE(6464), 1, + sym_type_parameters, + [175522] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8325), 1, - anon_sym_abstract, - ACTIONS(8632), 1, - anon_sym_class, - STATE(4906), 1, - aux_sym_export_statement_repeat1, - STATE(5125), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5007), 1, sym_comment, - STATE(5733), 1, - sym_decorator, - [174905] = 6, + STATE(6346), 1, + sym_type_parameters, + STATE(6904), 1, + sym__call_signature, + [175547] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5126), 1, - sym_comment, - STATE(6087), 1, - sym__initializer, - ACTIONS(8634), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(8671), 1, + anon_sym_LBRACE, + ACTIONS(8673), 1, anon_sym_SEMI, - [174926] = 8, + ACTIONS(8675), 1, + sym__automatic_semicolon, + ACTIONS(8677), 1, + sym__function_signature_automatic_semicolon, + STATE(437), 1, + sym_statement_block, + STATE(5008), 1, + sym_comment, + [175572] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5127), 1, + STATE(5009), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(7117), 1, - sym__call_signature, - [174951] = 6, + ACTIONS(8679), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [175589] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5128), 1, + STATE(5010), 1, sym_comment, - STATE(6084), 1, + STATE(5742), 1, sym__initializer, - ACTIONS(8576), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [174972] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5129), 1, - sym_comment, - ACTIONS(8636), 5, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT, - anon_sym_BQUOTE, - [174989] = 6, + [175610] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5130), 1, + STATE(5011), 1, sym_comment, - STATE(6088), 1, + STATE(5867), 1, sym__initializer, - ACTIONS(8634), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175010] = 8, + [175631] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7972), 1, - anon_sym_LBRACE, - ACTIONS(7976), 1, - anon_sym_extends, - ACTIONS(7978), 1, - anon_sym_LBRACE_PIPE, - STATE(1297), 1, - sym_object_type, - STATE(5131), 1, + STATE(5012), 1, sym_comment, - STATE(5771), 1, - sym_extends_type_clause, - [175035] = 8, + ACTIONS(6143), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [175648] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5132), 1, + ACTIONS(8630), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8632), 1, + sym__template_chars, + ACTIONS(8681), 1, + anon_sym_BQUOTE, + STATE(5013), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(7120), 1, - sym__call_signature, - [175060] = 7, + STATE(5102), 1, + aux_sym_template_literal_type_repeat1, + STATE(5790), 1, + sym_template_type, + [175673] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7466), 1, - anon_sym_extends, - ACTIONS(8608), 1, - anon_sym_PIPE, - STATE(5133), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5014), 1, sym_comment, - ACTIONS(8638), 2, + STATE(6034), 1, + sym__initializer, + ACTIONS(8624), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [175083] = 8, + [175694] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, - anon_sym_LPAREN, - STATE(4343), 1, - sym_formal_parameters, - STATE(5134), 1, + ACTIONS(8630), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8632), 1, + sym__template_chars, + ACTIONS(8683), 1, + anon_sym_BQUOTE, + STATE(5015), 1, sym_comment, - STATE(5393), 1, - sym__call_signature, - STATE(6498), 1, - sym_type_parameters, - [175108] = 8, + STATE(5102), 1, + aux_sym_template_literal_type_repeat1, + STATE(5790), 1, + sym_template_type, + [175719] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1397), 1, + anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5135), 1, + ACTIONS(8000), 1, + anon_sym_extends, + ACTIONS(8002), 1, + anon_sym_LBRACE_PIPE, + STATE(4942), 1, + sym_object_type, + STATE(5016), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(7009), 1, - sym__call_signature, - [175133] = 6, + STATE(5880), 1, + sym_extends_type_clause, + [175744] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5136), 1, + STATE(5017), 1, sym_comment, - STATE(5930), 1, + STATE(5821), 1, sym__initializer, - ACTIONS(8640), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175154] = 6, + [175765] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5137), 1, + STATE(5018), 1, sym_comment, - STATE(5950), 1, + STATE(5810), 1, sym__initializer, - ACTIONS(8578), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175175] = 6, + [175786] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5138), 1, + STATE(5019), 1, sym_comment, - STATE(6124), 1, + STATE(5805), 1, sym__initializer, - ACTIONS(8598), 3, + ACTIONS(8624), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175196] = 6, + [175807] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5139), 1, + STATE(5020), 1, sym_comment, - STATE(6169), 1, - sym__initializer, - ACTIONS(8598), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(8685), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [175824] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7863), 1, + anon_sym_LBRACE, + ACTIONS(8665), 1, anon_sym_SEMI, - [175217] = 6, + ACTIONS(8667), 1, + sym__automatic_semicolon, + ACTIONS(8669), 1, + sym__function_signature_automatic_semicolon, + STATE(5021), 1, + sym_comment, + STATE(5334), 1, + sym_statement_block, + [175849] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5140), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7477), 1, + anon_sym_extends, + ACTIONS(8575), 1, + anon_sym_PIPE, + STATE(5022), 1, sym_comment, - STATE(6095), 1, - sym__initializer, - ACTIONS(8576), 3, + ACTIONS(8687), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [175238] = 6, + [175872] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5141), 1, + ACTIONS(8000), 1, + anon_sym_extends, + ACTIONS(8127), 1, + anon_sym_LBRACE, + ACTIONS(8129), 1, + anon_sym_LBRACE_PIPE, + STATE(1516), 1, + sym_object_type, + STATE(5023), 1, sym_comment, - STATE(6098), 1, - sym__initializer, - ACTIONS(8566), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175259] = 8, + STATE(5953), 1, + sym_extends_type_clause, + [175897] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8642), 1, - anon_sym_class, - ACTIONS(8644), 1, - anon_sym_abstract, - STATE(4906), 1, - aux_sym_export_statement_repeat1, - STATE(5142), 1, + ACTIONS(8630), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8632), 1, + sym__template_chars, + ACTIONS(8689), 1, + anon_sym_BQUOTE, + STATE(5024), 1, sym_comment, - STATE(5733), 1, - sym_decorator, - [175284] = 8, + STATE(5102), 1, + aux_sym_template_literal_type_repeat1, + STATE(5790), 1, + sym_template_type, + [175922] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8584), 1, - anon_sym_EQ, - ACTIONS(8646), 1, - anon_sym_COMMA, - ACTIONS(8648), 1, - anon_sym_RBRACE, - STATE(5143), 1, + ACTIONS(8190), 1, + anon_sym_COLON, + ACTIONS(8691), 1, + anon_sym_EQ_GT, + STATE(5025), 1, sym_comment, - STATE(6344), 1, - aux_sym_enum_body_repeat1, - STATE(6858), 1, - sym__initializer, - [175309] = 6, + STATE(6510), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [175943] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5144), 1, + STATE(5026), 1, sym_comment, - STATE(6122), 1, + STATE(5787), 1, sym__initializer, - ACTIONS(8566), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175330] = 5, + [175964] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8650), 1, - anon_sym_EQ, - STATE(5145), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8242), 1, + anon_sym_abstract, + ACTIONS(8694), 1, + anon_sym_class, + STATE(4662), 1, + aux_sym_export_statement_repeat1, + STATE(5027), 1, sym_comment, - ACTIONS(4327), 4, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [175349] = 4, + STATE(5596), 1, + sym_decorator, + [175989] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(8636), 1, + sym_identifier, + STATE(5028), 1, + sym_comment, + STATE(5555), 1, + sym_string, + STATE(6813), 1, + sym__module_export_name, + [176014] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5146), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_formal_parameters, + STATE(5029), 1, sym_comment, - ACTIONS(6234), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [175366] = 8, + STATE(5116), 1, + sym__call_signature, + STATE(6464), 1, + sym_type_parameters, + [176039] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8582), 1, - anon_sym_LBRACE, - ACTIONS(8626), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5030), 1, + sym_comment, + STATE(6346), 1, + sym_type_parameters, + STATE(6809), 1, + sym__call_signature, + [176064] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8673), 1, anon_sym_SEMI, - ACTIONS(8628), 1, + ACTIONS(8675), 1, sym__automatic_semicolon, - ACTIONS(8630), 1, + ACTIONS(8677), 1, sym__function_signature_automatic_semicolon, - STATE(1013), 1, + ACTIONS(8696), 1, + anon_sym_LBRACE, + STATE(1262), 1, sym_statement_block, - STATE(5147), 1, + STATE(5031), 1, sym_comment, - [175391] = 6, + [176089] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5148), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7477), 1, + anon_sym_extends, + ACTIONS(8575), 1, + anon_sym_PIPE, + STATE(5032), 1, sym_comment, - STATE(5934), 1, - sym__initializer, - ACTIONS(8566), 3, + ACTIONS(8698), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [175412] = 6, + [176112] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5149), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5033), 1, sym_comment, - STATE(6131), 1, - sym__initializer, - ACTIONS(8576), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175433] = 4, + STATE(6346), 1, + sym_type_parameters, + STATE(6806), 1, + sym__call_signature, + [176137] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5150), 1, - sym_comment, - ACTIONS(7970), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4969), 1, + anon_sym_LBRACE, + ACTIONS(8700), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175450] = 7, + ACTIONS(8702), 1, + sym__automatic_semicolon, + ACTIONS(8704), 1, + sym__function_signature_automatic_semicolon, + STATE(3137), 1, + sym_statement_block, + STATE(5034), 1, + sym_comment, + [176162] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7466), 1, - anon_sym_extends, - ACTIONS(8608), 1, - anon_sym_PIPE, - STATE(5151), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5035), 1, sym_comment, - ACTIONS(8653), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [175473] = 6, + STATE(6313), 1, + sym__call_signature, + STATE(6346), 1, + sym_type_parameters, + [176187] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5152), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5036), 1, sym_comment, - STATE(5829), 1, - sym__initializer, - ACTIONS(8566), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175494] = 8, + STATE(6302), 1, + sym__call_signature, + STATE(6346), 1, + sym_type_parameters, + [176212] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - STATE(4276), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(5153), 1, + STATE(5037), 1, sym_comment, - STATE(5334), 1, + STATE(6298), 1, sym__call_signature, - STATE(6903), 1, + STATE(6346), 1, sym_type_parameters, - [175519] = 4, + [176237] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5154), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_formal_parameters, + STATE(5038), 1, sym_comment, - ACTIONS(7980), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175536] = 8, + STATE(5344), 1, + sym__call_signature, + STATE(6464), 1, + sym_type_parameters, + [176262] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(4978), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, sym_formal_parameters, - STATE(5155), 1, + STATE(5039), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(7001), 1, + STATE(6297), 1, sym__call_signature, - [175561] = 6, + STATE(6346), 1, + sym_type_parameters, + [176287] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5156), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_formal_parameters, + STATE(5040), 1, sym_comment, - STATE(6133), 1, - sym__initializer, - ACTIONS(8576), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175582] = 6, + STATE(5352), 1, + sym__call_signature, + STATE(6464), 1, + sym_type_parameters, + [176312] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5157), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_formal_parameters, + STATE(5041), 1, sym_comment, - STATE(6135), 1, - sym__initializer, - ACTIONS(8566), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [175603] = 7, + STATE(5355), 1, + sym__call_signature, + STATE(6464), 1, + sym_type_parameters, + [176337] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7466), 1, - anon_sym_extends, - ACTIONS(8608), 1, - anon_sym_PIPE, - STATE(5158), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8381), 1, + anon_sym_class, + ACTIONS(8383), 1, + anon_sym_abstract, + STATE(4662), 1, + aux_sym_export_statement_repeat1, + STATE(5042), 1, sym_comment, - ACTIONS(8655), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [175626] = 6, + STATE(5596), 1, + sym_decorator, + [176362] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5159), 1, + STATE(5043), 1, sym_comment, - STATE(6147), 1, + STATE(6126), 1, sym__initializer, - ACTIONS(8576), 3, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175647] = 6, + [176383] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5160), 1, + STATE(5044), 1, sym_comment, - STATE(5921), 1, + STATE(5780), 1, sym__initializer, - ACTIONS(8576), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175668] = 6, + [176404] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5161), 1, + STATE(5045), 1, sym_comment, - STATE(5998), 1, + STATE(6261), 1, sym__initializer, - ACTIONS(8578), 3, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175689] = 8, + [176425] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(4343), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, sym_formal_parameters, - STATE(4924), 1, - sym__call_signature, - STATE(5162), 1, + STATE(5046), 1, sym_comment, - STATE(6498), 1, + STATE(6346), 1, sym_type_parameters, - [175714] = 4, + STATE(6798), 1, + sym__call_signature, + [176450] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5163), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5047), 1, sym_comment, - ACTIONS(8657), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175731] = 6, + STATE(6346), 1, + sym_type_parameters, + STATE(6793), 1, + sym__call_signature, + [176475] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(4640), 1, + anon_sym_COLON, + ACTIONS(7258), 1, anon_sym_EQ, - STATE(5164), 1, - sym_comment, - STATE(5964), 1, - sym__initializer, - ACTIONS(8576), 3, - sym__automatic_semicolon, + ACTIONS(8652), 1, anon_sym_COMMA, - anon_sym_SEMI, - [175752] = 6, + ACTIONS(8706), 1, + anon_sym_RBRACE, + STATE(5048), 1, + sym_comment, + STATE(5734), 1, + aux_sym_object_pattern_repeat1, + [176500] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5165), 1, + STATE(5049), 1, sym_comment, - STATE(6149), 1, + STATE(5776), 1, sym__initializer, - ACTIONS(8576), 3, + ACTIONS(8624), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175773] = 7, + [176521] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7466), 1, - anon_sym_extends, - ACTIONS(8608), 1, - anon_sym_PIPE, - STATE(5166), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5050), 1, sym_comment, - ACTIONS(8659), 2, + STATE(5740), 1, + sym__initializer, + ACTIONS(8624), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [175796] = 8, + [176542] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8420), 1, - anon_sym_abstract, - ACTIONS(8661), 1, - anon_sym_class, - STATE(4906), 1, - aux_sym_export_statement_repeat1, - STATE(5167), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_formal_parameters, + STATE(5051), 1, sym_comment, - STATE(5733), 1, - sym_decorator, - [175821] = 6, + STATE(5363), 1, + sym__call_signature, + STATE(6464), 1, + sym_type_parameters, + [176567] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5168), 1, + STATE(5052), 1, sym_comment, - STATE(5918), 1, + STATE(5703), 1, sym__initializer, - ACTIONS(8576), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [175842] = 8, + [176588] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(4978), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, sym_formal_parameters, - STATE(5169), 1, + STATE(5053), 1, sym_comment, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6958), 1, + STATE(6403), 1, sym__call_signature, - [175867] = 8, + [176613] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8663), 1, - anon_sym_BQUOTE, - ACTIONS(8665), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8667), 1, - sym__template_chars, - STATE(5170), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5054), 1, sym_comment, - STATE(5451), 1, - aux_sym_template_literal_type_repeat1, - STATE(6193), 1, - sym_template_type, - [175892] = 8, + STATE(6346), 1, + sym_type_parameters, + STATE(6462), 1, + sym__call_signature, + [176638] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(8669), 1, - anon_sym_as, - ACTIONS(8671), 1, - anon_sym_RBRACK, - STATE(5171), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5055), 1, sym_comment, - [175917] = 8, + STATE(6346), 1, + sym_type_parameters, + STATE(6467), 1, + sym__call_signature, + [176663] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8673), 1, - anon_sym_LBRACE, - ACTIONS(8675), 1, - anon_sym_SEMI, - ACTIONS(8677), 1, - sym__automatic_semicolon, - ACTIONS(8679), 1, - sym__function_signature_automatic_semicolon, - STATE(1102), 1, - sym_statement_block, - STATE(5172), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_formal_parameters, + STATE(5056), 1, sym_comment, - [175942] = 4, + STATE(5307), 1, + sym__call_signature, + STATE(6464), 1, + sym_type_parameters, + [176688] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5173), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5057), 1, sym_comment, - ACTIONS(8681), 5, + STATE(5702), 1, + sym__initializer, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [175959] = 8, + [176709] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(4343), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, sym_formal_parameters, - STATE(5174), 1, + STATE(5058), 1, sym_comment, - STATE(5288), 1, - sym__call_signature, - STATE(6498), 1, + STATE(6346), 1, sym_type_parameters, - [175984] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8665), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8667), 1, - sym__template_chars, - ACTIONS(8683), 1, - anon_sym_BQUOTE, - STATE(5175), 1, - sym_comment, - STATE(5301), 1, - aux_sym_template_literal_type_repeat1, - STATE(6193), 1, - sym_template_type, - [176009] = 6, + STATE(6488), 1, + sym__call_signature, + [176734] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5176), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_formal_parameters, + STATE(5059), 1, sym_comment, - STATE(5903), 1, - sym__initializer, - ACTIONS(8566), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [176030] = 4, + STATE(5272), 1, + sym__call_signature, + STATE(6464), 1, + sym_type_parameters, + [176759] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5177), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_formal_parameters, + STATE(5060), 1, sym_comment, - ACTIONS(7980), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176047] = 8, + STATE(5265), 1, + sym__call_signature, + STATE(6464), 1, + sym_type_parameters, + [176784] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8665), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8667), 1, - sym__template_chars, - ACTIONS(8685), 1, - anon_sym_BQUOTE, - STATE(5178), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8169), 1, + anon_sym_class, + ACTIONS(8171), 1, + anon_sym_abstract, + STATE(4662), 1, + aux_sym_export_statement_repeat1, + STATE(5061), 1, sym_comment, - STATE(5267), 1, - aux_sym_template_literal_type_repeat1, - STATE(6193), 1, - sym_template_type, - [176072] = 6, + STATE(5596), 1, + sym_decorator, + [176809] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5179), 1, - sym_comment, - STATE(6150), 1, - sym__initializer, - ACTIONS(8576), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(8638), 1, + anon_sym_LBRACE, + ACTIONS(8644), 1, anon_sym_SEMI, - [176093] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5180), 1, - sym_comment, - STATE(6001), 1, - sym__initializer, - ACTIONS(8578), 3, + ACTIONS(8646), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [176114] = 6, + ACTIONS(8648), 1, + sym__function_signature_automatic_semicolon, + STATE(356), 1, + sym_statement_block, + STATE(5062), 1, + sym_comment, + [176834] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5181), 1, + STATE(5063), 1, sym_comment, - STATE(5963), 1, + STATE(5695), 1, sym__initializer, - ACTIONS(8578), 3, + ACTIONS(8624), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176135] = 8, + [176855] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7285), 1, + ACTIONS(7272), 1, anon_sym_LPAREN, - STATE(4343), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(5182), 1, + STATE(5064), 1, sym_comment, - STATE(5344), 1, + STATE(5250), 1, sym__call_signature, - STATE(6498), 1, + STATE(6464), 1, sym_type_parameters, - [176160] = 8, + [176880] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8584), 1, - anon_sym_EQ, - ACTIONS(8687), 1, - anon_sym_COMMA, - ACTIONS(8689), 1, - anon_sym_RBRACE, - STATE(5183), 1, + STATE(5065), 1, sym_comment, - STATE(6350), 1, - aux_sym_enum_body_repeat1, - STATE(6858), 1, - sym__initializer, - [176185] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(6532), 5, anon_sym_EQ, - STATE(5184), 1, - sym_comment, - STATE(5997), 1, - sym__initializer, - ACTIONS(8578), 3, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [176206] = 4, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [176897] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5185), 1, - sym_comment, - ACTIONS(8691), 5, - sym__automatic_semicolon, + ACTIONS(8605), 1, + anon_sym_EQ, + ACTIONS(8708), 1, anon_sym_COMMA, + ACTIONS(8710), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176223] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5186), 1, + STATE(5066), 1, sym_comment, - ACTIONS(7970), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176240] = 4, + STATE(5916), 1, + aux_sym_enum_body_repeat1, + STATE(6674), 1, + sym__initializer, + [176922] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5187), 1, + STATE(5067), 1, sym_comment, - ACTIONS(8693), 5, - sym__automatic_semicolon, + ACTIONS(6522), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176257] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [176939] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5188), 1, + STATE(5068), 1, sym_comment, - STATE(5890), 1, - sym__initializer, - ACTIONS(8566), 3, - sym__automatic_semicolon, + ACTIONS(6522), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [176278] = 8, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [176956] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8590), 1, + ACTIONS(4969), 1, anon_sym_LBRACE, - ACTIONS(8612), 1, + ACTIONS(8712), 1, anon_sym_SEMI, - ACTIONS(8614), 1, + ACTIONS(8714), 1, sym__automatic_semicolon, - ACTIONS(8616), 1, + ACTIONS(8716), 1, sym__function_signature_automatic_semicolon, - STATE(401), 1, + STATE(3010), 1, sym_statement_block, - STATE(5189), 1, + STATE(5069), 1, sym_comment, - [176303] = 4, + [176981] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5190), 1, + STATE(5070), 1, sym_comment, - ACTIONS(6549), 5, + ACTIONS(6522), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [176320] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(8695), 1, - sym_identifier, - STATE(5191), 1, - sym_comment, - STATE(5677), 1, - sym_string, - STATE(7237), 1, - sym__module_export_name, - [176345] = 6, + [176998] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5192), 1, + STATE(5071), 1, sym_comment, - STATE(5874), 1, + STATE(5677), 1, sym__initializer, - ACTIONS(8566), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176366] = 6, + [177019] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5193), 1, + STATE(5072), 1, sym_comment, - STATE(6151), 1, + STATE(5988), 1, sym__initializer, - ACTIONS(8576), 3, + ACTIONS(8718), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176387] = 8, + [177040] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8538), 1, - anon_sym_class, - ACTIONS(8540), 1, - anon_sym_abstract, - STATE(4906), 1, - aux_sym_export_statement_repeat1, - STATE(5194), 1, + ACTIONS(7863), 1, + anon_sym_LBRACE, + ACTIONS(8700), 1, + anon_sym_SEMI, + ACTIONS(8702), 1, + sym__automatic_semicolon, + ACTIONS(8704), 1, + sym__function_signature_automatic_semicolon, + STATE(5073), 1, sym_comment, - STATE(5733), 1, - sym_decorator, - [176412] = 7, + STATE(5337), 1, + sym_statement_block, + [177065] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7466), 1, - anon_sym_extends, - ACTIONS(8608), 1, - anon_sym_PIPE, - STATE(5195), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5074), 1, sym_comment, - ACTIONS(8697), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [176435] = 8, + STATE(6346), 1, + sym_type_parameters, + STATE(6708), 1, + sym__call_signature, + [177090] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(4978), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, sym_formal_parameters, - STATE(5196), 1, + STATE(5075), 1, sym_comment, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6728), 1, + STATE(6867), 1, sym__call_signature, - [176460] = 6, + [177115] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5197), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5076), 1, sym_comment, - STATE(5873), 1, - sym__initializer, - ACTIONS(8576), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + STATE(6346), 1, + sym_type_parameters, + STATE(6938), 1, + sym__call_signature, + [177140] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8671), 1, + anon_sym_LBRACE, + ACTIONS(8720), 1, anon_sym_SEMI, - [176481] = 8, + ACTIONS(8722), 1, + sym__automatic_semicolon, + ACTIONS(8724), 1, + sym__function_signature_automatic_semicolon, + STATE(445), 1, + sym_statement_block, + STATE(5077), 1, + sym_comment, + [177165] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(4978), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, sym_formal_parameters, - STATE(5198), 1, + STATE(5078), 1, sym_comment, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6908), 1, + STATE(6910), 1, sym__call_signature, - [176506] = 6, + [177190] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5199), 1, + ACTIONS(8190), 1, + anon_sym_COLON, + ACTIONS(8726), 1, + anon_sym_EQ_GT, + STATE(5079), 1, sym_comment, - STATE(6152), 1, - sym__initializer, - ACTIONS(8566), 3, + STATE(6510), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [177211] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7477), 1, + anon_sym_extends, + ACTIONS(8575), 1, + anon_sym_PIPE, + STATE(5080), 1, + sym_comment, + ACTIONS(8729), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [176527] = 8, + [177234] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7285), 1, + ACTIONS(7272), 1, anon_sym_LPAREN, - STATE(4343), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(4980), 1, + STATE(5073), 1, sym__call_signature, - STATE(5200), 1, + STATE(5081), 1, sym_comment, - STATE(6498), 1, + STATE(6464), 1, sym_type_parameters, - [176552] = 6, + [177259] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5201), 1, + STATE(5082), 1, sym_comment, - STATE(5872), 1, + STATE(5655), 1, sym__initializer, - ACTIONS(8576), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176573] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(8695), 1, - sym_identifier, - STATE(5202), 1, - sym_comment, - STATE(5677), 1, - sym_string, - STATE(6143), 1, - sym__module_export_name, - [176598] = 6, + [177280] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5203), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5083), 1, sym_comment, - STATE(5942), 1, - sym__initializer, - ACTIONS(8699), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [176619] = 4, + STATE(6346), 1, + sym_type_parameters, + STATE(6850), 1, + sym__call_signature, + [177305] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5204), 1, + ACTIONS(8630), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8632), 1, + sym__template_chars, + ACTIONS(8731), 1, + anon_sym_BQUOTE, + STATE(5084), 1, sym_comment, - ACTIONS(8701), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176636] = 8, + STATE(5102), 1, + aux_sym_template_literal_type_repeat1, + STATE(5790), 1, + sym_template_type, + [177330] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8675), 1, - anon_sym_SEMI, - ACTIONS(8677), 1, - sym__automatic_semicolon, - ACTIONS(8679), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(8703), 1, - anon_sym_LBRACE, - STATE(376), 1, - sym_statement_block, - STATE(5205), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_formal_parameters, + STATE(5034), 1, + sym__call_signature, + STATE(5085), 1, sym_comment, - [176661] = 6, + STATE(6464), 1, + sym_type_parameters, + [177355] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5206), 1, + STATE(5086), 1, sym_comment, - STATE(5865), 1, + STATE(5651), 1, sym__initializer, - ACTIONS(8566), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176682] = 8, + [177376] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7285), 1, + ACTIONS(7272), 1, anon_sym_LPAREN, - STATE(4343), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(5207), 1, - sym_comment, - STATE(5338), 1, + STATE(5021), 1, sym__call_signature, - STATE(6498), 1, + STATE(5087), 1, + sym_comment, + STATE(6464), 1, sym_type_parameters, - [176707] = 8, + [177401] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - STATE(4276), 1, - sym_formal_parameters, - STATE(5150), 1, - sym__call_signature, - STATE(5208), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8619), 1, + anon_sym_abstract, + ACTIONS(8733), 1, + anon_sym_class, + STATE(4662), 1, + aux_sym_export_statement_repeat1, + STATE(5088), 1, sym_comment, - STATE(6903), 1, - sym_type_parameters, - [176732] = 6, + STATE(5596), 1, + sym_decorator, + [177426] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5209), 1, + STATE(5089), 1, sym_comment, - STATE(6002), 1, - sym__initializer, - ACTIONS(8578), 3, + ACTIONS(7919), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [176753] = 4, + anon_sym_PIPE_RBRACE, + [177443] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5210), 1, + STATE(5090), 1, sym_comment, - ACTIONS(8705), 5, + ACTIONS(8735), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [176770] = 7, + [177460] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, + ACTIONS(7471), 1, anon_sym_AMP, - ACTIONS(7466), 1, + ACTIONS(7477), 1, anon_sym_extends, - ACTIONS(8608), 1, + ACTIONS(8575), 1, anon_sym_PIPE, - STATE(5211), 1, - sym_comment, - ACTIONS(8707), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [176793] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5212), 1, + STATE(5091), 1, sym_comment, - ACTIONS(8709), 5, + ACTIONS(8737), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [176810] = 8, + [177483] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7285), 1, + ACTIONS(7272), 1, anon_sym_LPAREN, - STATE(4343), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(5213), 1, - sym_comment, - STATE(5321), 1, + STATE(5004), 1, sym__call_signature, - STATE(6498), 1, + STATE(5092), 1, + sym_comment, + STATE(6464), 1, sym_type_parameters, - [176835] = 5, + [177508] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8711), 1, - anon_sym_EQ, - STATE(5214), 1, + STATE(5093), 1, sym_comment, - ACTIONS(4341), 4, + ACTIONS(8113), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [176854] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8673), 1, - anon_sym_LBRACE, - ACTIONS(8713), 1, anon_sym_SEMI, - ACTIONS(8715), 1, - sym__automatic_semicolon, - ACTIONS(8717), 1, - sym__function_signature_automatic_semicolon, - STATE(1113), 1, - sym_statement_block, - STATE(5215), 1, - sym_comment, - [176879] = 6, + anon_sym_PIPE_RBRACE, + [177525] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5216), 1, + ACTIONS(4297), 1, + anon_sym_COLON, + STATE(5094), 1, sym_comment, - STATE(5860), 1, - sym__initializer, - ACTIONS(8566), 3, - sym__automatic_semicolon, + STATE(6856), 1, + sym_type_annotation, + ACTIONS(4369), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [176900] = 6, + anon_sym_RBRACK, + [177546] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5217), 1, + ACTIONS(8190), 1, + anon_sym_COLON, + ACTIONS(8739), 1, + anon_sym_EQ_GT, + STATE(5095), 1, sym_comment, - STATE(6162), 1, - sym__initializer, - ACTIONS(8576), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [176921] = 6, + STATE(6510), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [177567] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5218), 1, + STATE(5096), 1, sym_comment, - STATE(5859), 1, + STATE(5647), 1, sym__initializer, - ACTIONS(8576), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [176942] = 6, + [177588] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5219), 1, + ACTIONS(8190), 1, + anon_sym_COLON, + ACTIONS(8742), 1, + anon_sym_EQ_GT, + STATE(5097), 1, sym_comment, - STATE(5858), 1, - sym__initializer, - ACTIONS(8576), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [176963] = 8, + STATE(6753), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [177609] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7976), 1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, anon_sym_extends, - ACTIONS(8121), 1, - anon_sym_LBRACE, - ACTIONS(8123), 1, - anon_sym_LBRACE_PIPE, - STATE(1480), 1, - sym_object_type, - STATE(5220), 1, + STATE(5098), 1, sym_comment, - STATE(6314), 1, - sym_extends_type_clause, - [176988] = 6, + ACTIONS(8745), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [177632] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5221), 1, + STATE(5099), 1, sym_comment, - STATE(6163), 1, + STATE(5604), 1, sym__initializer, - ACTIONS(8576), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177009] = 8, + [177653] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5222), 1, + ACTIONS(7230), 1, + anon_sym_LBRACK, + ACTIONS(8747), 1, + anon_sym_RBRACE, + STATE(5100), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(6972), 1, - sym__call_signature, - [177034] = 6, + ACTIONS(5280), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [177674] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5223), 1, + STATE(5101), 1, sym_comment, - STATE(5852), 1, + STATE(5606), 1, sym__initializer, - ACTIONS(8566), 3, + ACTIONS(8624), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177055] = 8, + [177695] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8665), 1, + ACTIONS(8749), 1, + anon_sym_BQUOTE, + ACTIONS(8751), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8667), 1, + ACTIONS(8754), 1, sym__template_chars, - ACTIONS(8719), 1, - anon_sym_BQUOTE, - STATE(5224), 1, + STATE(5790), 1, + sym_template_type, + STATE(5102), 2, sym_comment, - STATE(5451), 1, aux_sym_template_literal_type_repeat1, - STATE(6193), 1, - sym_template_type, - [177080] = 8, + [177718] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5225), 1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + STATE(5103), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(7030), 1, - sym__call_signature, - [177105] = 8, + ACTIONS(8757), 2, + anon_sym_COMMA, + anon_sym_GT, + [177741] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8434), 1, - anon_sym_class, - ACTIONS(8436), 1, - anon_sym_abstract, - STATE(4906), 1, - aux_sym_export_statement_repeat1, - STATE(5226), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(7747), 1, + anon_sym_DOT, + STATE(4380), 1, + sym_arguments, + STATE(5104), 1, sym_comment, - STATE(5733), 1, - sym_decorator, - [177130] = 4, + ACTIONS(8759), 2, + anon_sym_COMMA, + anon_sym_GT, + [177764] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5227), 1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + STATE(5105), 1, sym_comment, - ACTIONS(8721), 5, - sym__automatic_semicolon, + ACTIONS(8761), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177147] = 4, + anon_sym_GT, + [177787] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5228), 1, - sym_comment, - ACTIONS(8723), 5, + ACTIONS(7244), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [177164] = 4, + STATE(5106), 1, + sym_comment, + STATE(5625), 1, + sym__initializer, + ACTIONS(8613), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [177808] = 8, ACTIONS(5), 1, sym_html_comment, + ACTIONS(208), 1, + anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5229), 1, + ACTIONS(8000), 1, + anon_sym_extends, + ACTIONS(8100), 1, + anon_sym_LBRACE_PIPE, + STATE(5107), 1, sym_comment, - ACTIONS(7928), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177181] = 6, + STATE(6047), 1, + sym_extends_type_clause, + STATE(6643), 1, + sym_object_type, + [177833] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5230), 1, + STATE(5108), 1, sym_comment, - STATE(5851), 1, + STATE(5629), 1, sym__initializer, - ACTIONS(8576), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177202] = 8, + [177854] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4636), 1, - anon_sym_COLON, - ACTIONS(7235), 1, - anon_sym_EQ, - ACTIONS(8725), 1, - anon_sym_COMMA, - ACTIONS(8727), 1, - anon_sym_RBRACE, - STATE(5231), 1, + STATE(5109), 1, sym_comment, - STATE(6281), 1, - aux_sym_object_pattern_repeat1, - [177227] = 6, + ACTIONS(8763), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [177871] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5232), 1, + STATE(5110), 1, sym_comment, - STATE(6006), 1, + STATE(5633), 1, sym__initializer, - ACTIONS(8578), 3, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177248] = 4, + [177892] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5233), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5111), 1, sym_comment, - ACTIONS(7934), 5, + STATE(6263), 1, + sym__initializer, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177265] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - STATE(4276), 1, - sym_formal_parameters, - STATE(5234), 1, - sym_comment, - STATE(5362), 1, - sym__call_signature, - STATE(6903), 1, - sym_type_parameters, - [177290] = 4, + [177913] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5235), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5112), 1, sym_comment, - ACTIONS(7928), 5, + STATE(5864), 1, + sym__initializer, + ACTIONS(8613), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177307] = 6, + [177934] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(8605), 1, anon_sym_EQ, - STATE(5236), 1, + ACTIONS(8765), 1, + anon_sym_COMMA, + ACTIONS(8767), 1, + anon_sym_RBRACE, + STATE(5113), 1, sym_comment, - STATE(5850), 1, + STATE(6011), 1, + aux_sym_enum_body_repeat1, + STATE(6674), 1, sym__initializer, - ACTIONS(8576), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177328] = 6, + [177959] = 8, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(1965), 1, + anon_sym_DQUOTE, + ACTIONS(1967), 1, + anon_sym_SQUOTE, + ACTIONS(8636), 1, + sym_identifier, + STATE(5114), 1, + sym_comment, + STATE(5555), 1, + sym_string, + STATE(6669), 1, + sym__module_export_name, + [177984] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5237), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5115), 1, sym_comment, - STATE(5940), 1, - sym__initializer, - ACTIONS(8729), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177349] = 8, + STATE(6346), 1, + sym_type_parameters, + STATE(6667), 1, + sym__call_signature, + [178009] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8703), 1, + ACTIONS(8696), 1, anon_sym_LBRACE, - ACTIONS(8713), 1, + ACTIONS(8720), 1, anon_sym_SEMI, - ACTIONS(8715), 1, + ACTIONS(8722), 1, sym__automatic_semicolon, - ACTIONS(8717), 1, + ACTIONS(8724), 1, sym__function_signature_automatic_semicolon, - STATE(370), 1, + STATE(1502), 1, sym_statement_block, - STATE(5238), 1, - sym_comment, - [177374] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5239), 1, + STATE(5116), 1, sym_comment, - STATE(5849), 1, - sym__initializer, - ACTIONS(8576), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177395] = 6, + [178034] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5240), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7477), 1, + anon_sym_extends, + ACTIONS(8575), 1, + anon_sym_PIPE, + STATE(5117), 1, sym_comment, - STATE(5939), 1, - sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8769), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [177416] = 8, + [178057] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - STATE(4276), 1, + STATE(4815), 1, sym_formal_parameters, - STATE(5241), 1, + STATE(5118), 1, sym_comment, - STATE(6170), 1, - sym__call_signature, - STATE(6903), 1, + STATE(6346), 1, sym_type_parameters, - [177441] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4636), 1, - anon_sym_COLON, - ACTIONS(7235), 1, - anon_sym_EQ, - ACTIONS(8725), 1, - anon_sym_COMMA, - ACTIONS(8731), 1, - anon_sym_RBRACE, - STATE(5242), 1, - sym_comment, - STATE(6272), 1, - aux_sym_object_pattern_repeat1, - [177466] = 6, + STATE(6664), 1, + sym__call_signature, + [178082] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5243), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5119), 1, sym_comment, - STATE(6181), 1, - sym__initializer, - ACTIONS(8733), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177487] = 6, + STATE(6346), 1, + sym_type_parameters, + STATE(6660), 1, + sym__call_signature, + [178107] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5244), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5120), 1, sym_comment, - STATE(5938), 1, - sym__initializer, - ACTIONS(8729), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177508] = 6, + STATE(6346), 1, + sym_type_parameters, + STATE(6367), 1, + sym__call_signature, + [178132] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5245), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5121), 1, sym_comment, - STATE(5935), 1, - sym__initializer, - ACTIONS(8729), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177529] = 6, + STATE(6329), 1, + sym__call_signature, + STATE(6346), 1, + sym_type_parameters, + [178157] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5246), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5122), 1, sym_comment, - STATE(6125), 1, - sym__initializer, - ACTIONS(8735), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177550] = 6, + STATE(6346), 1, + sym_type_parameters, + STATE(6423), 1, + sym__call_signature, + [178182] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5247), 1, - sym_comment, - STATE(5932), 1, - sym__initializer, - ACTIONS(8729), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177571] = 6, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_formal_parameters, + STATE(4852), 1, + sym__call_signature, + STATE(5123), 1, + sym_comment, + STATE(6464), 1, + sym_type_parameters, + [178207] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5248), 1, + STATE(5124), 1, sym_comment, - STATE(6012), 1, + STATE(6267), 1, sym__initializer, - ACTIONS(8578), 3, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177592] = 6, + [178228] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5249), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5125), 1, sym_comment, - STATE(5927), 1, - sym__initializer, - ACTIONS(8729), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177613] = 6, + STATE(6346), 1, + sym_type_parameters, + STATE(6519), 1, + sym__call_signature, + [178253] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5250), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_formal_parameters, + STATE(4954), 1, + sym__call_signature, + STATE(5126), 1, sym_comment, - STATE(6017), 1, - sym__initializer, - ACTIONS(8578), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [177634] = 6, + STATE(6464), 1, + sym_type_parameters, + [178278] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8392), 1, - anon_sym_COLON, - ACTIONS(8737), 1, - anon_sym_EQ_GT, - STATE(5251), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_formal_parameters, + STATE(4976), 1, + sym__call_signature, + STATE(5127), 1, sym_comment, - STATE(6893), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [177655] = 8, + STATE(6464), 1, + sym_type_parameters, + [178303] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4957), 1, - anon_sym_LBRACE, - ACTIONS(8740), 1, - anon_sym_SEMI, - ACTIONS(8742), 1, - sym__automatic_semicolon, - ACTIONS(8744), 1, - sym__function_signature_automatic_semicolon, - STATE(3152), 1, - sym_statement_block, - STATE(5252), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(8507), 1, + anon_sym_class, + ACTIONS(8509), 1, + anon_sym_abstract, + STATE(4662), 1, + aux_sym_export_statement_repeat1, + STATE(5128), 1, sym_comment, - [177680] = 6, + STATE(5596), 1, + sym_decorator, + [178328] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5253), 1, + STATE(5129), 1, sym_comment, - STATE(5926), 1, + STATE(5650), 1, sym__initializer, - ACTIONS(8746), 3, + ACTIONS(8771), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177701] = 4, + [178349] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5254), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_formal_parameters, + STATE(5062), 1, + sym__call_signature, + STATE(5130), 1, sym_comment, - ACTIONS(8748), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177718] = 5, + STATE(6464), 1, + sym_type_parameters, + [178374] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8750), 1, - anon_sym_COMMA, - STATE(5255), 2, + ACTIONS(8775), 1, + anon_sym_in, + ACTIONS(8777), 1, + anon_sym_of, + STATE(5131), 1, sym_comment, - aux_sym_sequence_expression_repeat1, - ACTIONS(5720), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [177737] = 6, + ACTIONS(8773), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [178395] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5256), 1, + ACTIONS(8779), 1, + anon_sym_in, + ACTIONS(8781), 1, + anon_sym_of, + STATE(5132), 1, sym_comment, - STATE(5766), 1, - sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8773), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [177758] = 4, + [178416] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5257), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5133), 1, sym_comment, - ACTIONS(8024), 5, + STATE(5653), 1, + sym__initializer, + ACTIONS(8783), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177775] = 4, + [178437] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5258), 1, + STATE(5134), 1, sym_comment, - ACTIONS(6474), 5, + ACTIONS(6282), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [177792] = 8, + [178454] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, - anon_sym_LPAREN, - STATE(4343), 1, - sym_formal_parameters, - STATE(4810), 1, - sym__call_signature, - STATE(5259), 1, + STATE(5135), 1, sym_comment, - STATE(6498), 1, - sym_type_parameters, - [177817] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(6380), 5, anon_sym_EQ, - STATE(5260), 1, - sym_comment, - STATE(5848), 1, - sym__initializer, - ACTIONS(8576), 3, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [177838] = 8, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [178471] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8665), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8667), 1, - sym__template_chars, - ACTIONS(8753), 1, - anon_sym_BQUOTE, - STATE(5170), 1, - aux_sym_template_literal_type_repeat1, - STATE(5261), 1, + STATE(5136), 1, sym_comment, - STATE(6193), 1, - sym_template_type, - [177863] = 6, + ACTIONS(6380), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [178488] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8392), 1, - anon_sym_COLON, - ACTIONS(8755), 1, - anon_sym_EQ_GT, - STATE(5262), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_formal_parameters, + STATE(4800), 1, + sym__call_signature, + STATE(5137), 1, sym_comment, - STATE(6640), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [177884] = 4, + STATE(6464), 1, + sym_type_parameters, + [178513] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5263), 1, - sym_comment, - ACTIONS(8203), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(7863), 1, + anon_sym_LBRACE, + ACTIONS(8712), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177901] = 4, + ACTIONS(8714), 1, + sym__automatic_semicolon, + ACTIONS(8716), 1, + sym__function_signature_automatic_semicolon, + STATE(5138), 1, + sym_comment, + STATE(6007), 1, + sym_statement_block, + [178538] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5264), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5139), 1, sym_comment, - ACTIONS(7948), 5, + STATE(6018), 1, + sym__initializer, + ACTIONS(8785), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [177918] = 7, + [178559] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, + ACTIONS(7471), 1, anon_sym_AMP, - ACTIONS(7466), 1, + ACTIONS(7477), 1, anon_sym_extends, - ACTIONS(8608), 1, + ACTIONS(8575), 1, anon_sym_PIPE, - STATE(5265), 1, + STATE(5140), 1, sym_comment, - ACTIONS(8758), 2, + ACTIONS(8787), 2, sym__automatic_semicolon, anon_sym_SEMI, - [177941] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - STATE(4276), 1, - sym_formal_parameters, - STATE(5235), 1, - sym__call_signature, - STATE(5266), 1, - sym_comment, - STATE(6903), 1, - sym_type_parameters, - [177966] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8665), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8667), 1, - sym__template_chars, - ACTIONS(8760), 1, - anon_sym_BQUOTE, - STATE(5267), 1, - sym_comment, - STATE(5451), 1, - aux_sym_template_literal_type_repeat1, - STATE(6193), 1, - sym_template_type, - [177991] = 4, + [178582] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5268), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5141), 1, sym_comment, - ACTIONS(7946), 5, + STATE(6027), 1, + sym__initializer, + ACTIONS(8789), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178008] = 6, + [178603] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5269), 1, + STATE(5142), 1, sym_comment, - STATE(5879), 1, + STATE(6048), 1, sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8791), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178029] = 4, + [178624] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5270), 1, + STATE(5143), 1, sym_comment, - ACTIONS(7948), 5, + ACTIONS(8793), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178046] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5870), 1, - anon_sym_COMMA, - STATE(5255), 1, - aux_sym_sequence_expression_repeat1, - STATE(5271), 1, - sym_comment, - ACTIONS(8762), 3, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_RBRACK, - [178067] = 4, + [178641] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5272), 1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + STATE(5144), 1, sym_comment, - ACTIONS(8764), 5, - sym__automatic_semicolon, + ACTIONS(8795), 2, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178084] = 7, + [178664] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8058), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(8766), 1, - anon_sym_LBRACE, - STATE(5273), 1, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(4128), 1, + sym_formal_parameters, + STATE(5145), 1, sym_comment, - STATE(6411), 1, - sym_type_arguments, - ACTIONS(8768), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [178107] = 4, + STATE(5200), 1, + sym__call_signature, + STATE(6358), 1, + sym_type_parameters, + [178689] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5274), 1, + STATE(5146), 1, sym_comment, - ACTIONS(8770), 5, + ACTIONS(8034), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178124] = 4, + [178706] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5275), 1, + STATE(5147), 1, sym_comment, - ACTIONS(7946), 5, + ACTIONS(8797), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178141] = 4, + [178723] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5276), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5148), 1, sym_comment, - ACTIONS(8772), 5, + STATE(6268), 1, + sym__initializer, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178158] = 4, + [178744] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5277), 1, + STATE(5149), 1, sym_comment, - ACTIONS(8026), 5, + ACTIONS(8034), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178175] = 6, + [178761] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5278), 1, + STATE(5150), 1, sym_comment, - STATE(6024), 1, - sym__initializer, - ACTIONS(8580), 3, + ACTIONS(8799), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [178196] = 6, + anon_sym_PIPE_RBRACE, + [178778] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5279), 1, + STATE(5151), 1, sym_comment, - STATE(6214), 1, - sym__initializer, - ACTIONS(8774), 3, + ACTIONS(8377), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [178217] = 6, + anon_sym_PIPE_RBRACE, + [178795] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5280), 1, + STATE(5152), 1, sym_comment, - STATE(5920), 1, - sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8010), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [178238] = 8, + anon_sym_PIPE_RBRACE, + [178812] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8665), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8667), 1, - sym__template_chars, - ACTIONS(8776), 1, - anon_sym_BQUOTE, - STATE(5224), 1, - aux_sym_template_literal_type_repeat1, - STATE(5281), 1, + STATE(5153), 1, sym_comment, - STATE(6193), 1, - sym_template_type, - [178263] = 6, + ACTIONS(8801), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [178829] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5282), 1, + STATE(5154), 1, sym_comment, - STATE(6025), 1, - sym__initializer, - ACTIONS(8578), 3, - sym__automatic_semicolon, + ACTIONS(6380), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_SEMI, - [178284] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [178846] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5283), 1, + ACTIONS(8190), 1, + anon_sym_COLON, + ACTIONS(8803), 1, + anon_sym_EQ_GT, + STATE(5155), 1, sym_comment, - STATE(6027), 1, - sym__initializer, - ACTIONS(8578), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [178305] = 4, + STATE(6753), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [178867] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5284), 1, + STATE(5156), 1, sym_comment, - ACTIONS(8778), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178322] = 4, + ACTIONS(8806), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_extends, + anon_sym_implements, + [178884] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5285), 1, + STATE(5157), 1, sym_comment, - ACTIONS(8026), 5, + ACTIONS(8808), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178339] = 8, + [178901] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7285), 1, + ACTIONS(7272), 1, anon_sym_LPAREN, - STATE(4343), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(5286), 1, - sym_comment, - STATE(5453), 1, + STATE(4801), 1, sym__call_signature, - STATE(6498), 1, + STATE(5158), 1, + sym_comment, + STATE(6464), 1, sym_type_parameters, - [178364] = 8, + [178926] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(4978), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, sym_formal_parameters, - STATE(5287), 1, + STATE(5159), 1, sym_comment, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(7094), 1, + STATE(6534), 1, sym__call_signature, - [178389] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8780), 1, - anon_sym_LBRACE, - ACTIONS(8782), 1, - anon_sym_SEMI, - ACTIONS(8784), 1, - sym__automatic_semicolon, - ACTIONS(8786), 1, - sym__function_signature_automatic_semicolon, - STATE(415), 1, - sym_statement_block, - STATE(5288), 1, - sym_comment, - [178414] = 4, + [178951] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5289), 1, + STATE(5160), 1, sym_comment, - ACTIONS(8788), 5, + ACTIONS(8810), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178431] = 8, + [178968] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(208), 1, - anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7976), 1, - anon_sym_extends, - ACTIONS(8004), 1, - anon_sym_LBRACE_PIPE, - STATE(5290), 1, + ACTIONS(4969), 1, + anon_sym_LBRACE, + ACTIONS(8812), 1, + anon_sym_SEMI, + ACTIONS(8814), 1, + sym__automatic_semicolon, + ACTIONS(8816), 1, + sym__function_signature_automatic_semicolon, + STATE(3104), 1, + sym_statement_block, + STATE(5161), 1, sym_comment, - STATE(6056), 1, - sym_extends_type_clause, - STATE(6790), 1, - sym_object_type, - [178456] = 4, + [178993] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5291), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5162), 1, sym_comment, - ACTIONS(8790), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178473] = 4, + STATE(6346), 1, + sym_type_parameters, + STATE(6543), 1, + sym__call_signature, + [179018] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5292), 1, + STATE(5163), 1, sym_comment, - ACTIONS(6128), 5, + ACTIONS(6364), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - [178490] = 6, + [179035] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5293), 1, + ACTIONS(8630), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8632), 1, + sym__template_chars, + ACTIONS(8818), 1, + anon_sym_BQUOTE, + STATE(5164), 1, sym_comment, - STATE(5917), 1, - sym__initializer, - ACTIONS(8746), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [178511] = 4, + STATE(5256), 1, + aux_sym_template_literal_type_repeat1, + STATE(5790), 1, + sym_template_type, + [179060] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5294), 1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(8820), 1, + anon_sym_as, + ACTIONS(8822), 1, + anon_sym_RBRACK, + STATE(5165), 1, + sym_comment, + [179085] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8630), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8632), 1, + sym__template_chars, + ACTIONS(8824), 1, + anon_sym_BQUOTE, + STATE(5024), 1, + aux_sym_template_literal_type_repeat1, + STATE(5166), 1, + sym_comment, + STATE(5790), 1, + sym_template_type, + [179110] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5167), 1, sym_comment, - ACTIONS(8792), 5, + ACTIONS(8826), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [178528] = 6, + [179127] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5295), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_formal_parameters, + STATE(4671), 1, + sym__call_signature, + STATE(5168), 1, sym_comment, - STATE(6028), 1, - sym__initializer, - ACTIONS(8578), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [178549] = 6, + STATE(6464), 1, + sym_type_parameters, + [179152] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8392), 1, - anon_sym_COLON, - ACTIONS(8794), 1, - anon_sym_EQ_GT, - STATE(5296), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5169), 1, sym_comment, - STATE(6640), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [178570] = 8, + STATE(6346), 1, + sym_type_parameters, + STATE(6397), 1, + sym__call_signature, + [179177] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(4978), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, sym_formal_parameters, - STATE(5297), 1, + STATE(5170), 1, sym_comment, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6568), 1, + STATE(6401), 1, sym__call_signature, - [178595] = 7, + [179202] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - STATE(5298), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5171), 1, sym_comment, - ACTIONS(8797), 2, - anon_sym_LBRACE, + STATE(6068), 1, + sym__initializer, + ACTIONS(8828), 3, + sym__automatic_semicolon, anon_sym_COMMA, - [178618] = 4, + anon_sym_SEMI, + [179223] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5299), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5172), 1, sym_comment, - ACTIONS(8799), 5, + STATE(6069), 1, + sym__initializer, + ACTIONS(8830), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178635] = 8, + [179244] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(4978), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, sym_formal_parameters, - STATE(5300), 1, + STATE(5173), 1, sym_comment, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6753), 1, + STATE(6405), 1, sym__call_signature, - [178660] = 8, + [179269] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8665), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8667), 1, - sym__template_chars, - ACTIONS(8801), 1, - anon_sym_BQUOTE, - STATE(5301), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(4128), 1, + sym_formal_parameters, + STATE(5174), 1, sym_comment, - STATE(5451), 1, - aux_sym_template_literal_type_repeat1, - STATE(6193), 1, - sym_template_type, - [178685] = 6, + STATE(6076), 1, + sym__call_signature, + STATE(6358), 1, + sym_type_parameters, + [179294] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5302), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5175), 1, sym_comment, - STATE(5910), 1, - sym__initializer, - ACTIONS(8729), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [178706] = 4, + STATE(6346), 1, + sym_type_parameters, + STATE(6415), 1, + sym__call_signature, + [179319] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5303), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5176), 1, sym_comment, - ACTIONS(8803), 5, + STATE(6103), 1, + sym__initializer, + ACTIONS(8832), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178723] = 6, + [179340] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5304), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5177), 1, sym_comment, - STATE(6029), 1, - sym__initializer, - ACTIONS(8578), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [178744] = 8, + STATE(6346), 1, + sym_type_parameters, + STATE(6449), 1, + sym__call_signature, + [179365] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(4343), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, sym_formal_parameters, - STATE(4899), 1, - sym__call_signature, - STATE(5305), 1, + STATE(5178), 1, sym_comment, - STATE(6498), 1, + STATE(6346), 1, sym_type_parameters, - [178769] = 6, + STATE(6455), 1, + sym__call_signature, + [179390] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5306), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5179), 1, sym_comment, - STATE(5905), 1, - sym__initializer, - ACTIONS(8729), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [178790] = 6, + STATE(6346), 1, + sym_type_parameters, + STATE(6457), 1, + sym__call_signature, + [179415] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5307), 1, + STATE(5180), 1, sym_comment, - STATE(5805), 1, + STATE(6116), 1, sym__initializer, - ACTIONS(8805), 3, + ACTIONS(8832), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178811] = 4, + [179436] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5308), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5181), 1, sym_comment, - ACTIONS(8807), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178828] = 4, + STATE(6346), 1, + sym_type_parameters, + STATE(6525), 1, + sym__call_signature, + [179461] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5309), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5182), 1, sym_comment, - ACTIONS(8809), 5, + STATE(6137), 1, + sym__initializer, + ACTIONS(8832), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178845] = 4, + [179482] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5310), 1, + ACTIONS(8190), 1, + anon_sym_COLON, + ACTIONS(8834), 1, + anon_sym_EQ_GT, + STATE(5183), 1, sym_comment, - ACTIONS(7956), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178862] = 4, + STATE(6510), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [179503] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5311), 1, + ACTIONS(8190), 1, + anon_sym_COLON, + ACTIONS(8837), 1, + anon_sym_EQ_GT, + STATE(5184), 1, sym_comment, - ACTIONS(8811), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178879] = 6, + STATE(6753), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [179524] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5312), 1, + STATE(5185), 1, sym_comment, - STATE(5899), 1, + STATE(6153), 1, sym__initializer, - ACTIONS(8746), 3, + ACTIONS(8832), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178900] = 4, + [179545] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5313), 1, - sym_comment, - ACTIONS(8813), 5, - anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(7250), 1, anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [178917] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5314), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5186), 1, sym_comment, - ACTIONS(7958), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [178934] = 8, + STATE(6346), 1, + sym_type_parameters, + STATE(6553), 1, + sym__call_signature, + [179570] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(4978), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, sym_formal_parameters, - STATE(5315), 1, + STATE(5187), 1, sym_comment, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - STATE(6572), 1, + STATE(6554), 1, sym__call_signature, - [178959] = 6, + [179595] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5316), 1, + STATE(5188), 1, sym_comment, - STATE(5888), 1, + STATE(6154), 1, sym__initializer, - ACTIONS(8746), 3, + ACTIONS(8840), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [178980] = 6, + [179616] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5317), 1, + STATE(5189), 1, sym_comment, - STATE(5837), 1, + STATE(6270), 1, sym__initializer, - ACTIONS(8815), 3, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179001] = 8, + [179637] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7976), 1, - anon_sym_extends, - ACTIONS(8046), 1, - anon_sym_LBRACE, - ACTIONS(8048), 1, - anon_sym_LBRACE_PIPE, - STATE(1670), 1, - sym_object_type, - STATE(5318), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5190), 1, sym_comment, - STATE(6085), 1, - sym_extends_type_clause, - [179026] = 6, + STATE(6346), 1, + sym_type_parameters, + STATE(6569), 1, + sym__call_signature, + [179662] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5319), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5191), 1, sym_comment, - STATE(5883), 1, - sym__initializer, - ACTIONS(8729), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [179047] = 6, + STATE(6346), 1, + sym_type_parameters, + STATE(6574), 1, + sym__call_signature, + [179687] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5320), 1, + STATE(5192), 1, sym_comment, - STATE(5794), 1, - sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8842), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179068] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7866), 1, - anon_sym_LBRACE, - ACTIONS(8740), 1, - anon_sym_SEMI, - ACTIONS(8742), 1, - sym__automatic_semicolon, - ACTIONS(8744), 1, - sym__function_signature_automatic_semicolon, - STATE(5321), 1, - sym_comment, - STATE(6206), 1, - sym_statement_block, - [179093] = 6, + anon_sym_PIPE_RBRACE, + [179704] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5322), 1, + STATE(5193), 1, sym_comment, - STATE(6033), 1, - sym__initializer, - ACTIONS(8578), 3, + ACTIONS(8104), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179114] = 7, + anon_sym_PIPE_RBRACE, + [179721] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7466), 1, - anon_sym_extends, - ACTIONS(8608), 1, - anon_sym_PIPE, - STATE(5323), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_formal_parameters, + STATE(5194), 1, sym_comment, - ACTIONS(8817), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [179137] = 4, + STATE(5210), 1, + sym__call_signature, + STATE(6464), 1, + sym_type_parameters, + [179746] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5324), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5195), 1, sym_comment, - ACTIONS(7956), 5, + STATE(6155), 1, + sym__initializer, + ACTIONS(8840), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [179154] = 4, + [179767] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5325), 1, + STATE(5196), 1, sym_comment, - ACTIONS(8819), 5, + ACTIONS(8113), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [179171] = 8, + [179784] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - STATE(4276), 1, - sym_formal_parameters, - STATE(5264), 1, - sym__call_signature, - STATE(5326), 1, + ACTIONS(8605), 1, + anon_sym_EQ, + ACTIONS(8844), 1, + anon_sym_COMMA, + ACTIONS(8846), 1, + anon_sym_RBRACE, + STATE(5197), 1, sym_comment, - STATE(6903), 1, - sym_type_parameters, - [179196] = 6, + STATE(6136), 1, + aux_sym_enum_body_repeat1, + STATE(6674), 1, + sym__initializer, + [179809] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5327), 1, + STATE(5198), 1, sym_comment, - STATE(5834), 1, + STATE(6162), 1, sym__initializer, - ACTIONS(8821), 3, + ACTIONS(8832), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179217] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8436), 1, - anon_sym_abstract, - ACTIONS(8823), 1, - anon_sym_class, - STATE(4906), 1, - aux_sym_export_statement_repeat1, - STATE(5328), 1, - sym_comment, - STATE(5733), 1, - sym_decorator, - [179242] = 6, + [179830] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5329), 1, + STATE(5199), 1, sym_comment, - STATE(6035), 1, + STATE(6173), 1, sym__initializer, - ACTIONS(8578), 3, + ACTIONS(8832), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179263] = 6, + [179851] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5330), 1, + STATE(5200), 1, sym_comment, - STATE(5876), 1, - sym__initializer, - ACTIONS(8746), 3, + ACTIONS(7913), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179284] = 8, + anon_sym_PIPE_RBRACE, + [179868] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7285), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - STATE(4343), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5252), 1, - sym__call_signature, - STATE(5331), 1, + STATE(5201), 1, sym_comment, - STATE(6498), 1, + STATE(5290), 1, + sym__call_signature, + STATE(6358), 1, sym_type_parameters, - [179309] = 8, + [179893] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(4343), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, sym_formal_parameters, - STATE(4830), 1, - sym__call_signature, - STATE(5332), 1, + STATE(5202), 1, sym_comment, - STATE(6498), 1, + STATE(6346), 1, sym_type_parameters, - [179334] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(8695), 1, - sym_identifier, - STATE(5333), 1, - sym_comment, - STATE(5677), 1, - sym_string, - STATE(6997), 1, - sym__module_export_name, - [179359] = 4, + STATE(6650), 1, + sym__call_signature, + [179918] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5334), 1, + STATE(5203), 1, sym_comment, - ACTIONS(7958), 5, + ACTIONS(7915), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [179376] = 6, + [179935] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5335), 1, + STATE(5204), 1, sym_comment, - STATE(6220), 1, - sym__initializer, - ACTIONS(8825), 3, + ACTIONS(8848), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179397] = 8, + anon_sym_PIPE_RBRACE, + [179952] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7285), 1, + ACTIONS(7272), 1, anon_sym_LPAREN, - STATE(4343), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(5336), 1, - sym_comment, - STATE(5478), 1, + STATE(5161), 1, sym__call_signature, - STATE(6498), 1, - sym_type_parameters, - [179422] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5337), 1, + STATE(5205), 1, sym_comment, - STATE(6489), 1, + STATE(6464), 1, sym_type_parameters, - STATE(6993), 1, - sym__call_signature, - [179447] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8782), 1, - anon_sym_SEMI, - ACTIONS(8784), 1, - sym__automatic_semicolon, - ACTIONS(8786), 1, - sym__function_signature_automatic_semicolon, - ACTIONS(8827), 1, - anon_sym_LBRACE, - STATE(1370), 1, - sym_statement_block, - STATE(5338), 1, - sym_comment, - [179472] = 7, + [179977] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7466), 1, - anon_sym_extends, - ACTIONS(8608), 1, - anon_sym_PIPE, - STATE(5339), 1, + STATE(5206), 1, sym_comment, - ACTIONS(8829), 2, + ACTIONS(7915), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179495] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5340), 1, - sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(6990), 1, - sym__call_signature, - [179520] = 6, + anon_sym_PIPE_RBRACE, + [179994] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5341), 1, + STATE(5207), 1, sym_comment, - STATE(6037), 1, - sym__initializer, - ACTIONS(8578), 3, + ACTIONS(8850), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179541] = 8, + anon_sym_PIPE_RBRACE, + [180011] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5342), 1, + STATE(5208), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(6496), 1, - sym__call_signature, - [179566] = 8, + ACTIONS(5964), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [180028] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5343), 1, + STATE(5209), 1, sym_comment, - STATE(6485), 1, - sym__call_signature, - STATE(6489), 1, - sym_type_parameters, - [179591] = 8, + ACTIONS(7913), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [180045] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4957), 1, + ACTIONS(7863), 1, anon_sym_LBRACE, - ACTIONS(8831), 1, + ACTIONS(8812), 1, anon_sym_SEMI, - ACTIONS(8833), 1, + ACTIONS(8814), 1, sym__automatic_semicolon, - ACTIONS(8835), 1, + ACTIONS(8816), 1, sym__function_signature_automatic_semicolon, - STATE(3176), 1, - sym_statement_block, - STATE(5344), 1, - sym_comment, - [179616] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5345), 1, + STATE(5210), 1, sym_comment, - STATE(6040), 1, - sym__initializer, - ACTIONS(8578), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [179637] = 8, + STATE(5929), 1, + sym_statement_block, + [180070] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(4978), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, sym_formal_parameters, - STATE(5346), 1, + STATE(5211), 1, sym_comment, - STATE(6481), 1, - sym__call_signature, - STATE(6489), 1, + STATE(6346), 1, sym_type_parameters, - [179662] = 8, + STATE(6707), 1, + sym__call_signature, + [180095] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, - anon_sym_LPAREN, - STATE(4343), 1, - sym_formal_parameters, - STATE(5147), 1, - sym__call_signature, - STATE(5347), 1, + STATE(5212), 1, sym_comment, - STATE(6498), 1, - sym_type_parameters, - [179687] = 8, + ACTIONS(8852), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [180112] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5348), 1, + STATE(5213), 1, sym_comment, - STATE(6461), 1, - sym__call_signature, - STATE(6489), 1, - sym_type_parameters, - [179712] = 8, + ACTIONS(8854), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [180129] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, - anon_sym_LPAREN, - STATE(4343), 1, - sym_formal_parameters, - STATE(5122), 1, - sym__call_signature, - STATE(5349), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7477), 1, + anon_sym_extends, + ACTIONS(8575), 1, + anon_sym_PIPE, + STATE(5214), 1, sym_comment, - STATE(6498), 1, - sym_type_parameters, - [179737] = 8, + ACTIONS(8856), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [180152] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7285), 1, + ACTIONS(7272), 1, anon_sym_LPAREN, - STATE(4343), 1, + STATE(4303), 1, sym_formal_parameters, - STATE(5014), 1, + STATE(5138), 1, sym__call_signature, - STATE(5350), 1, + STATE(5215), 1, sym_comment, - STATE(6498), 1, + STATE(6464), 1, sym_type_parameters, - [179762] = 8, + [180177] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(2787), 1, anon_sym_AT, - ACTIONS(8219), 1, + ACTIONS(8240), 1, anon_sym_class, - ACTIONS(8221), 1, + ACTIONS(8242), 1, anon_sym_abstract, - STATE(4906), 1, + STATE(4662), 1, aux_sym_export_statement_repeat1, - STATE(5351), 1, + STATE(5216), 1, sym_comment, - STATE(5733), 1, + STATE(5596), 1, sym_decorator, - [179787] = 8, + [180202] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - STATE(4978), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5352), 1, + STATE(4872), 1, + sym__call_signature, + STATE(5217), 1, sym_comment, - STATE(6489), 1, + STATE(6358), 1, sym_type_parameters, - STATE(6982), 1, - sym__call_signature, - [179812] = 8, + [180227] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5353), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7477), 1, + anon_sym_extends, + ACTIONS(8575), 1, + anon_sym_PIPE, + STATE(5218), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(6981), 1, - sym__call_signature, - [179837] = 8, + ACTIONS(8858), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [180250] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(8046), 1, anon_sym_LT, - ACTIONS(7285), 1, - anon_sym_LPAREN, - STATE(4343), 1, - sym_formal_parameters, - STATE(5000), 1, - sym__call_signature, - STATE(5354), 1, + ACTIONS(8860), 1, + anon_sym_LBRACE, + STATE(5219), 1, sym_comment, - STATE(6498), 1, - sym_type_parameters, - [179862] = 6, + STATE(5637), 1, + sym_type_arguments, + ACTIONS(8862), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [180273] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5355), 1, + STATE(5220), 1, sym_comment, - STATE(5861), 1, - sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8104), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [179883] = 6, + anon_sym_PIPE_RBRACE, + [180290] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5356), 1, + STATE(5221), 1, sym_comment, - STATE(5856), 1, + STATE(6277), 1, sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8634), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179904] = 4, + [180311] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5357), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, + sym_formal_parameters, + STATE(5222), 1, sym_comment, - ACTIONS(5935), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [179921] = 6, + STATE(6346), 1, + sym_type_parameters, + STATE(6388), 1, + sym__call_signature, + [180336] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5358), 1, + STATE(5223), 1, sym_comment, - STATE(5853), 1, + STATE(5664), 1, sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179942] = 6, + [180357] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5359), 1, + STATE(5224), 1, sym_comment, - STATE(5847), 1, + STATE(6205), 1, sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [179963] = 6, + [180378] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5360), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(4128), 1, + sym_formal_parameters, + STATE(4403), 1, + sym__call_signature, + STATE(5225), 1, sym_comment, - STATE(5830), 1, - sym__initializer, - ACTIONS(8729), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [179984] = 6, + STATE(6358), 1, + sym_type_parameters, + [180403] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5361), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_formal_parameters, + STATE(4756), 1, + sym__call_signature, + STATE(5226), 1, sym_comment, - STATE(6230), 1, - sym__initializer, - ACTIONS(8837), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [180005] = 4, + STATE(6464), 1, + sym_type_parameters, + [180428] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5362), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5227), 1, sym_comment, - ACTIONS(7926), 5, + STATE(6279), 1, + sym__initializer, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180022] = 6, + [180449] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5363), 1, + STATE(5228), 1, sym_comment, - STATE(5802), 1, + STATE(6178), 1, sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8866), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180043] = 6, + [180470] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5364), 1, + STATE(5229), 1, sym_comment, - STATE(6215), 1, + STATE(6182), 1, sym__initializer, - ACTIONS(8774), 3, + ACTIONS(8868), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180064] = 6, + [180491] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5365), 1, + STATE(5230), 1, sym_comment, - STATE(5816), 1, + STATE(6281), 1, sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180085] = 6, + [180512] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8392), 1, - anon_sym_COLON, - ACTIONS(8839), 1, - anon_sym_EQ_GT, - STATE(5366), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5231), 1, sym_comment, - STATE(6640), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [180106] = 6, + STATE(5665), 1, + sym__initializer, + ACTIONS(8864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180533] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8392), 1, - anon_sym_COLON, - ACTIONS(8842), 1, - anon_sym_EQ_GT, - STATE(5367), 1, + STATE(5232), 1, sym_comment, - STATE(6893), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [180127] = 8, + ACTIONS(8870), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [180550] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - STATE(4978), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5368), 1, + STATE(5233), 1, sym_comment, - STATE(6483), 1, + STATE(6184), 1, sym__call_signature, - STATE(6489), 1, + STATE(6358), 1, sym_type_parameters, - [180152] = 8, + [180575] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - STATE(4276), 1, - sym_formal_parameters, - STATE(5369), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5234), 1, sym_comment, - STATE(5487), 1, - sym__call_signature, - STATE(6903), 1, - sym_type_parameters, - [180177] = 8, + STATE(6200), 1, + sym__initializer, + ACTIONS(8571), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180596] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5370), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5235), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(6506), 1, - sym__call_signature, - [180202] = 8, + STATE(6274), 1, + sym__initializer, + ACTIONS(8872), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180617] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5371), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5236), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(6510), 1, - sym__call_signature, - [180227] = 4, + STATE(6211), 1, + sym__initializer, + ACTIONS(8872), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180638] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5372), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5237), 1, sym_comment, - ACTIONS(7920), 5, + STATE(6227), 1, + sym__initializer, + ACTIONS(8571), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180244] = 8, + [180659] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, - anon_sym_LPAREN, - STATE(4343), 1, - sym_formal_parameters, - STATE(5172), 1, - sym__call_signature, - STATE(5373), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5238), 1, sym_comment, - STATE(6498), 1, - sym_type_parameters, - [180269] = 6, + STATE(6237), 1, + sym__initializer, + ACTIONS(8571), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180680] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5374), 1, + STATE(5239), 1, sym_comment, - STATE(5755), 1, + STATE(6240), 1, sym__initializer, - ACTIONS(8845), 3, + ACTIONS(8872), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180290] = 6, + [180701] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5375), 1, + STATE(5240), 1, sym_comment, - STATE(5846), 1, + STATE(6242), 1, sym__initializer, - ACTIONS(8746), 3, + ACTIONS(8872), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180311] = 8, + [180722] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8665), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8667), 1, - sym__template_chars, - ACTIONS(8847), 1, - anon_sym_BQUOTE, - STATE(5376), 1, + ACTIONS(8190), 1, + anon_sym_COLON, + ACTIONS(8874), 1, + anon_sym_EQ_GT, + STATE(5241), 1, sym_comment, - STATE(5439), 1, - aux_sym_template_literal_type_repeat1, - STATE(6193), 1, - sym_template_type, - [180336] = 6, + STATE(6753), 3, + sym_type_annotation, + sym_asserts_annotation, + sym_type_predicate_annotation, + [180743] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5377), 1, + STATE(5242), 1, sym_comment, - STATE(5812), 1, + STATE(6148), 1, sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8571), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180357] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5378), 1, - sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(6527), 1, - sym__call_signature, - [180382] = 6, + [180764] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5379), 1, + STATE(5243), 1, sym_comment, - STATE(6217), 1, + STATE(6257), 1, sym__initializer, - ACTIONS(8562), 3, + ACTIONS(8571), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180403] = 8, + [180785] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8584), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(8849), 1, - anon_sym_COMMA, - ACTIONS(8851), 1, - anon_sym_RBRACE, - STATE(5380), 1, + STATE(5244), 1, sym_comment, - STATE(6107), 1, - aux_sym_enum_body_repeat1, - STATE(6858), 1, + STATE(6255), 1, sym__initializer, - [180428] = 6, + ACTIONS(8872), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180806] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5381), 1, + STATE(5245), 1, sym_comment, - STATE(6242), 1, + STATE(6253), 1, sym__initializer, - ACTIONS(8562), 3, + ACTIONS(8872), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180449] = 6, + [180827] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5382), 1, + STATE(5246), 1, sym_comment, - STATE(5791), 1, + STATE(6229), 1, sym__initializer, - ACTIONS(8746), 3, + ACTIONS(8571), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180470] = 8, + [180848] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, - anon_sym_LPAREN, - STATE(4343), 1, - sym_formal_parameters, - STATE(5205), 1, - sym__call_signature, - STATE(5383), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5247), 1, sym_comment, - STATE(6498), 1, - sym_type_parameters, - [180495] = 6, + STATE(6216), 1, + sym__initializer, + ACTIONS(8571), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180869] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5384), 1, + STATE(5248), 1, sym_comment, - STATE(5788), 1, + STATE(6206), 1, sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8571), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180516] = 6, + [180890] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5385), 1, + STATE(5249), 1, sym_comment, - STATE(5785), 1, + STATE(6204), 1, sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8872), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180537] = 8, + [180911] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, - anon_sym_LPAREN, - STATE(4343), 1, - sym_formal_parameters, - STATE(5215), 1, - sym__call_signature, - STATE(5386), 1, + ACTIONS(8877), 1, + anon_sym_LBRACE, + ACTIONS(8879), 1, + anon_sym_SEMI, + ACTIONS(8881), 1, + sym__automatic_semicolon, + ACTIONS(8883), 1, + sym__function_signature_automatic_semicolon, + STATE(390), 1, + sym_statement_block, + STATE(5250), 1, sym_comment, - STATE(6498), 1, - sym_type_parameters, - [180562] = 8, + [180936] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8323), 1, - anon_sym_class, - ACTIONS(8325), 1, - anon_sym_abstract, - STATE(4906), 1, - aux_sym_export_statement_repeat1, - STATE(5387), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5251), 1, sym_comment, - STATE(5733), 1, - sym_decorator, - [180587] = 6, + STATE(6283), 1, + sym__initializer, + ACTIONS(8577), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [180957] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5388), 1, + STATE(5252), 1, sym_comment, - STATE(6263), 1, + STATE(6203), 1, sym__initializer, - ACTIONS(8774), 3, + ACTIONS(8872), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180608] = 4, + [180978] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5389), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5253), 1, sym_comment, - ACTIONS(8166), 5, + STATE(5666), 1, + sym__initializer, + ACTIONS(8864), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [180625] = 7, + [180999] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7466), 1, - anon_sym_extends, - ACTIONS(8608), 1, - anon_sym_PIPE, - STATE(5390), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5254), 1, sym_comment, - ACTIONS(8853), 2, + STATE(5667), 1, + sym__initializer, + ACTIONS(8864), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [180648] = 4, + [181020] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5391), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5255), 1, sym_comment, - ACTIONS(8235), 5, + STATE(6288), 1, + sym__initializer, + ACTIONS(8577), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [180665] = 4, + [181041] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5392), 1, + ACTIONS(8630), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8632), 1, + sym__template_chars, + ACTIONS(8885), 1, + anon_sym_BQUOTE, + STATE(5102), 1, + aux_sym_template_literal_type_repeat1, + STATE(5256), 1, + sym_comment, + STATE(5790), 1, + sym_template_type, + [181066] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5257), 1, sym_comment, - ACTIONS(8855), 5, + STATE(5668), 1, + sym__initializer, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [180682] = 8, + [181087] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7866), 1, + ACTIONS(8000), 1, + anon_sym_extends, + ACTIONS(8080), 1, anon_sym_LBRACE, - ACTIONS(8831), 1, - anon_sym_SEMI, - ACTIONS(8833), 1, - sym__automatic_semicolon, - ACTIONS(8835), 1, - sym__function_signature_automatic_semicolon, - STATE(5393), 1, + ACTIONS(8082), 1, + anon_sym_LBRACE_PIPE, + STATE(1330), 1, + sym_object_type, + STATE(5258), 1, sym_comment, - STATE(6301), 1, - sym_statement_block, - [180707] = 8, + STATE(6131), 1, + sym_extends_type_clause, + [181112] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - STATE(4276), 1, - sym_formal_parameters, - STATE(5394), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5259), 1, sym_comment, - STATE(6235), 1, - sym__call_signature, - STATE(6903), 1, - sym_type_parameters, - [180732] = 8, + STATE(6189), 1, + sym__initializer, + ACTIONS(8571), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181133] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7285), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - STATE(4343), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5238), 1, + STATE(4572), 1, sym__call_signature, - STATE(5395), 1, + STATE(5260), 1, sym_comment, - STATE(6498), 1, + STATE(6358), 1, sym_type_parameters, - [180757] = 4, + [181158] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5396), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5261), 1, sym_comment, - ACTIONS(8241), 5, + STATE(5674), 1, + sym__initializer, + ACTIONS(8864), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [180774] = 7, + [181179] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7466), 1, - anon_sym_extends, - ACTIONS(8608), 1, - anon_sym_PIPE, - STATE(5397), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5262), 1, sym_comment, - ACTIONS(8857), 2, + STATE(5675), 1, + sym__initializer, + ACTIONS(8864), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [180797] = 6, + [181200] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5398), 1, + STATE(5263), 1, sym_comment, - STATE(5832), 1, + STATE(6139), 1, sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8571), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180818] = 6, + [181221] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5399), 1, + STATE(5264), 1, sym_comment, - STATE(5828), 1, + STATE(5676), 1, sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180839] = 6, + [181242] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8879), 1, + anon_sym_SEMI, + ACTIONS(8881), 1, + sym__automatic_semicolon, + ACTIONS(8883), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(8889), 1, + anon_sym_LBRACE, + STATE(1024), 1, + sym_statement_block, + STATE(5265), 1, + sym_comment, + [181267] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5400), 1, + STATE(5266), 1, sym_comment, - STATE(6042), 1, + STATE(6105), 1, sym__initializer, - ACTIONS(8859), 3, + ACTIONS(8571), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180860] = 4, + [181288] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5401), 1, - sym_comment, - ACTIONS(6539), 5, + ACTIONS(7244), 1, anon_sym_EQ, + STATE(5267), 1, + sym_comment, + STATE(6083), 1, + sym__initializer, + ACTIONS(8571), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [180877] = 6, + anon_sym_SEMI, + [181309] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5402), 1, + STATE(5268), 1, sym_comment, - STATE(6266), 1, + STATE(5681), 1, sym__initializer, - ACTIONS(8774), 3, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180898] = 6, + [181330] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5403), 1, + STATE(5269), 1, sym_comment, - STATE(6282), 1, + STATE(6289), 1, sym__initializer, - ACTIONS(8562), 3, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180919] = 6, + [181351] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5404), 1, + STATE(5270), 1, sym_comment, - STATE(5787), 1, + STATE(6080), 1, sym__initializer, - ACTIONS(8861), 3, + ACTIONS(8872), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [180940] = 6, + [181372] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5405), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7477), 1, + anon_sym_extends, + ACTIONS(8575), 1, + anon_sym_PIPE, + STATE(5271), 1, sym_comment, - STATE(6283), 1, - sym__initializer, - ACTIONS(8774), 3, + ACTIONS(8891), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [180961] = 4, + [181395] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5406), 1, + ACTIONS(8877), 1, + anon_sym_LBRACE, + ACTIONS(8893), 1, + anon_sym_SEMI, + ACTIONS(8895), 1, + sym__automatic_semicolon, + ACTIONS(8897), 1, + sym__function_signature_automatic_semicolon, + STATE(372), 1, + sym_statement_block, + STATE(5272), 1, sym_comment, - ACTIONS(6530), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [180978] = 4, + [181420] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5407), 1, - sym_comment, - ACTIONS(6530), 5, + ACTIONS(7244), 1, anon_sym_EQ, + STATE(5273), 1, + sym_comment, + STATE(6291), 1, + sym__initializer, + ACTIONS(8577), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [180995] = 8, + anon_sym_SEMI, + [181441] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - STATE(4276), 1, - sym_formal_parameters, - STATE(4583), 1, - sym__call_signature, - STATE(5408), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7477), 1, + anon_sym_extends, + ACTIONS(8575), 1, + anon_sym_PIPE, + STATE(5274), 1, sym_comment, - STATE(6903), 1, - sym_type_parameters, - [181020] = 4, + ACTIONS(8899), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [181464] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5409), 1, - sym_comment, - ACTIONS(6530), 5, + ACTIONS(7244), 1, anon_sym_EQ, + STATE(5275), 1, + sym_comment, + STATE(6078), 1, + sym__initializer, + ACTIONS(8872), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [181037] = 6, + anon_sym_SEMI, + [181485] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5410), 1, + STATE(5276), 1, sym_comment, - STATE(6286), 1, - sym__initializer, - ACTIONS(8774), 3, + ACTIONS(8427), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [181058] = 6, + [181502] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5411), 1, + STATE(5277), 1, sym_comment, - STATE(5907), 1, + STATE(6057), 1, sym__initializer, - ACTIONS(8863), 3, + ACTIONS(8571), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181079] = 6, + [181523] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5412), 1, + STATE(5278), 1, sym_comment, - STATE(6267), 1, + STATE(6032), 1, sym__initializer, - ACTIONS(8562), 3, + ACTIONS(8571), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181100] = 6, + [181544] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5413), 1, + STATE(5279), 1, sym_comment, - STATE(6321), 1, + STATE(6031), 1, sym__initializer, - ACTIONS(8562), 3, + ACTIONS(8872), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181121] = 6, + [181565] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5414), 1, + STATE(5280), 1, sym_comment, - STATE(6292), 1, + STATE(5688), 1, sym__initializer, - ACTIONS(8562), 3, + ACTIONS(8864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181142] = 8, + [181586] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - STATE(4978), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5415), 1, + STATE(4602), 1, + sym__call_signature, + STATE(5281), 1, sym_comment, - STATE(6489), 1, + STATE(6358), 1, sym_type_parameters, - STATE(6892), 1, - sym__call_signature, - [181167] = 6, + [181611] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5416), 1, + STATE(5282), 1, sym_comment, - STATE(5780), 1, - sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8431), 5, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - [181188] = 8, + [181628] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5417), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5283), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(6620), 1, - sym__call_signature, - [181213] = 8, + STATE(5689), 1, + sym__initializer, + ACTIONS(8864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181649] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5418), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5284), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(6641), 1, - sym__call_signature, - [181238] = 8, + STATE(6030), 1, + sym__initializer, + ACTIONS(8872), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181670] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - STATE(4978), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5419), 1, + STATE(4597), 1, + sym__call_signature, + STATE(5285), 1, sym_comment, - STATE(6489), 1, + STATE(6358), 1, sym_type_parameters, - STATE(6645), 1, - sym__call_signature, - [181263] = 8, + [181695] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, - anon_sym_LPAREN, - STATE(4343), 1, - sym_formal_parameters, - STATE(5420), 1, + STATE(5286), 1, sym_comment, - STATE(5482), 1, - sym__call_signature, - STATE(6498), 1, - sym_type_parameters, - [181288] = 6, + ACTIONS(8447), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [181712] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5421), 1, + STATE(5287), 1, sym_comment, - STATE(5827), 1, + STATE(5646), 1, sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181309] = 8, + [181733] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5422), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5288), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(6658), 1, - sym__call_signature, - [181334] = 8, + STATE(5706), 1, + sym__initializer, + ACTIONS(8887), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [181754] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7285), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - STATE(4343), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(5423), 1, - sym_comment, - STATE(5476), 1, + STATE(4497), 1, sym__call_signature, - STATE(6498), 1, + STATE(5289), 1, + sym_comment, + STATE(6358), 1, sym_type_parameters, - [181359] = 6, + [181779] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8392), 1, - anon_sym_COLON, - ACTIONS(8865), 1, - anon_sym_EQ_GT, - STATE(5424), 1, + STATE(5290), 1, sym_comment, - STATE(6893), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [181380] = 8, + ACTIONS(8094), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [181796] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7285), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - STATE(4343), 1, + STATE(4128), 1, sym_formal_parameters, - STATE(4984), 1, + STATE(5220), 1, sym__call_signature, - STATE(5425), 1, + STATE(5291), 1, sym_comment, - STATE(6498), 1, + STATE(6358), 1, sym_type_parameters, - [181405] = 8, + [181821] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4957), 1, - anon_sym_LBRACE, - ACTIONS(8868), 1, - anon_sym_SEMI, - ACTIONS(8870), 1, - sym__automatic_semicolon, - ACTIONS(8872), 1, - sym__function_signature_automatic_semicolon, - STATE(3296), 1, - sym_statement_block, - STATE(5426), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(4128), 1, + sym_formal_parameters, + STATE(4467), 1, + sym__call_signature, + STATE(5292), 1, sym_comment, - [181430] = 4, + STATE(6358), 1, + sym_type_parameters, + [181846] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5427), 1, + STATE(5293), 1, sym_comment, - ACTIONS(8069), 5, + ACTIONS(7978), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181447] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, - anon_sym_LPAREN, - STATE(4343), 1, - sym_formal_parameters, - STATE(5428), 1, - sym_comment, - STATE(5462), 1, - sym__call_signature, - STATE(6498), 1, - sym_type_parameters, - [181472] = 6, + [181863] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5429), 1, + STATE(5294), 1, sym_comment, - STATE(5826), 1, - sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8094), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [181493] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8644), 1, - anon_sym_abstract, - ACTIONS(8874), 1, - anon_sym_class, - STATE(4906), 1, - aux_sym_export_statement_repeat1, - STATE(5430), 1, - sym_comment, - STATE(5733), 1, - sym_decorator, - [181518] = 6, + anon_sym_PIPE_RBRACE, + [181880] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5431), 1, + STATE(5295), 1, sym_comment, - STATE(6323), 1, - sym__initializer, - ACTIONS(8562), 3, + ACTIONS(8901), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [181539] = 4, + anon_sym_PIPE_RBRACE, + [181897] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5432), 1, + STATE(5296), 1, sym_comment, - ACTIONS(8876), 5, + ACTIONS(7978), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [181556] = 6, + [181914] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5433), 1, + STATE(5297), 1, sym_comment, - STATE(5825), 1, - sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8903), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [181577] = 4, + anon_sym_PIPE_RBRACE, + [181931] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5434), 1, + STATE(5298), 1, sym_comment, - ACTIONS(6633), 5, - anon_sym_EQ, + ACTIONS(8905), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [181594] = 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [181948] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(4343), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(4815), 1, sym_formal_parameters, - STATE(5426), 1, - sym__call_signature, - STATE(5435), 1, + STATE(5299), 1, sym_comment, - STATE(6498), 1, + STATE(6346), 1, sym_type_parameters, - [181619] = 6, + STATE(6673), 1, + sym__call_signature, + [181973] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5436), 1, + STATE(5300), 1, sym_comment, - STATE(5779), 1, - sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8907), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [181640] = 6, + anon_sym_PIPE_RBRACE, + [181990] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5437), 1, + STATE(5301), 1, sym_comment, - STATE(6337), 1, + STATE(6292), 1, sym__initializer, - ACTIONS(8562), 3, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181661] = 6, + [182011] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5438), 1, + STATE(5302), 1, sym_comment, - STATE(6373), 1, + STATE(6259), 1, sym__initializer, - ACTIONS(8562), 3, + ACTIONS(8577), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181682] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8665), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8667), 1, - sym__template_chars, - ACTIONS(8878), 1, - anon_sym_BQUOTE, - STATE(5439), 1, - sym_comment, - STATE(5451), 1, - aux_sym_template_literal_type_repeat1, - STATE(6193), 1, - sym_template_type, - [181707] = 6, + [182032] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5440), 1, + STATE(5303), 1, sym_comment, - STATE(6338), 1, + STATE(5719), 1, sym__initializer, - ACTIONS(8774), 3, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181728] = 6, + [182053] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(8605), 1, anon_sym_EQ, - STATE(5441), 1, + ACTIONS(8909), 1, + anon_sym_COMMA, + ACTIONS(8911), 1, + anon_sym_RBRACE, + STATE(5304), 1, sym_comment, - STATE(5972), 1, + STATE(6167), 1, + aux_sym_enum_body_repeat1, + STATE(6674), 1, sym__initializer, - ACTIONS(8729), 3, + [182078] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5305), 1, + sym_comment, + ACTIONS(8913), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [181749] = 6, + anon_sym_PIPE_RBRACE, + [182095] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4295), 1, - anon_sym_COLON, - STATE(5442), 1, - sym_comment, - STATE(7041), 1, - sym_type_annotation, - ACTIONS(4327), 3, + ACTIONS(7244), 1, anon_sym_EQ, + STATE(5306), 1, + sym_comment, + STATE(5733), 1, + sym__initializer, + ACTIONS(8864), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [181770] = 8, + anon_sym_SEMI, + [182116] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - STATE(4276), 1, - sym_formal_parameters, - STATE(4566), 1, - sym__call_signature, - STATE(5443), 1, + ACTIONS(8889), 1, + anon_sym_LBRACE, + ACTIONS(8893), 1, + anon_sym_SEMI, + ACTIONS(8895), 1, + sym__automatic_semicolon, + ACTIONS(8897), 1, + sym__function_signature_automatic_semicolon, + STATE(1124), 1, + sym_statement_block, + STATE(5307), 1, sym_comment, - STATE(6903), 1, - sym_type_parameters, - [181795] = 6, + [182141] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8392), 1, - anon_sym_COLON, - ACTIONS(8880), 1, - anon_sym_EQ_GT, - STATE(5444), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7477), 1, + anon_sym_extends, + ACTIONS(8575), 1, + anon_sym_PIPE, + STATE(5308), 1, sym_comment, - STATE(6640), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [181816] = 6, + ACTIONS(8915), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [182164] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5445), 1, + STATE(5309), 1, sym_comment, - STATE(5824), 1, + STATE(5735), 1, sym__initializer, - ACTIONS(8746), 3, + ACTIONS(8864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181837] = 6, + [182185] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8392), 1, + STATE(5310), 1, + sym_comment, + ACTIONS(5928), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - ACTIONS(8883), 1, - anon_sym_EQ_GT, - STATE(5446), 1, + [182202] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5311), 1, sym_comment, - STATE(6893), 3, - sym_type_annotation, - sym_asserts_annotation, - sym_type_predicate_annotation, - [181858] = 7, + ACTIONS(5970), 5, + anon_sym_EQ, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + [182219] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - STATE(5447), 1, + STATE(5312), 1, sym_comment, - ACTIONS(8886), 2, + ACTIONS(8917), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [181881] = 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [182236] = 8, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1377), 1, - anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7976), 1, - anon_sym_extends, - ACTIONS(8085), 1, - anon_sym_LBRACE_PIPE, - STATE(5077), 1, - sym_object_type, - STATE(5448), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4303), 1, + sym_formal_parameters, + STATE(4730), 1, + sym__call_signature, + STATE(5313), 1, sym_comment, - STATE(6063), 1, - sym_extends_type_clause, - [181906] = 6, + STATE(6464), 1, + sym_type_parameters, + [182261] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7191), 1, - anon_sym_LBRACK, - ACTIONS(8888), 1, - anon_sym_RBRACE, - STATE(5449), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5314), 1, sym_comment, - ACTIONS(5054), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [181927] = 6, + STATE(6005), 1, + sym__initializer, + ACTIONS(8919), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182282] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5450), 1, + STATE(5315), 1, sym_comment, - STATE(5815), 1, + STATE(5994), 1, sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8921), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [181948] = 7, + [182303] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8890), 1, - anon_sym_BQUOTE, - ACTIONS(8892), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8895), 1, - sym__template_chars, - STATE(6193), 1, - sym_template_type, - STATE(5451), 2, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(4128), 1, + sym_formal_parameters, + STATE(5316), 1, sym_comment, - aux_sym_template_literal_type_repeat1, - [181971] = 7, + STATE(5980), 1, + sym__call_signature, + STATE(6358), 1, + sym_type_parameters, + [182328] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - STATE(5452), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5317), 1, sym_comment, - ACTIONS(8898), 2, + STATE(5979), 1, + sym__initializer, + ACTIONS(8864), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [181994] = 8, + anon_sym_SEMI, + [182349] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8780), 1, - anon_sym_LBRACE, - ACTIONS(8900), 1, - anon_sym_SEMI, - ACTIONS(8902), 1, + STATE(5318), 1, + sym_comment, + ACTIONS(8186), 5, sym__automatic_semicolon, - ACTIONS(8904), 1, sym__function_signature_automatic_semicolon, - STATE(455), 1, - sym_statement_block, - STATE(5453), 1, - sym_comment, - [182019] = 6, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + [182366] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5454), 1, + STATE(5319), 1, sym_comment, - STATE(6046), 1, + STATE(5738), 1, sym__initializer, - ACTIONS(8859), 3, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182040] = 7, + [182387] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - STATE(5455), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5320), 1, sym_comment, - ACTIONS(8906), 2, + STATE(5977), 1, + sym__initializer, + ACTIONS(8864), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [182063] = 6, + anon_sym_SEMI, + [182408] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5456), 1, + STATE(5321), 1, sym_comment, - STATE(5811), 1, - sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8004), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [182084] = 7, + anon_sym_PIPE_RBRACE, + [182425] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7466), 1, - anon_sym_extends, - ACTIONS(8608), 1, - anon_sym_PIPE, - STATE(5457), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(4128), 1, + sym_formal_parameters, + STATE(5322), 1, sym_comment, - ACTIONS(8908), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [182107] = 6, + STATE(5341), 1, + sym__call_signature, + STATE(6358), 1, + sym_type_parameters, + [182450] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5458), 1, + STATE(5323), 1, sym_comment, - STATE(6048), 1, + STATE(5968), 1, sym__initializer, - ACTIONS(8859), 3, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182128] = 6, + [182471] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5459), 1, + STATE(5324), 1, sym_comment, - STATE(6340), 1, - sym__initializer, - ACTIONS(8774), 3, + ACTIONS(7980), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [182149] = 6, + anon_sym_PIPE_RBRACE, + [182488] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5460), 1, + STATE(5325), 1, sym_comment, - STATE(5806), 1, + STATE(5967), 1, sym__initializer, - ACTIONS(8746), 3, + ACTIONS(8864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182170] = 4, + [182509] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5461), 1, - sym_comment, - ACTIONS(8910), 5, + ACTIONS(7244), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_extends, - anon_sym_implements, - [182187] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7866), 1, - anon_sym_LBRACE, - ACTIONS(8868), 1, - anon_sym_SEMI, - ACTIONS(8870), 1, - sym__automatic_semicolon, - ACTIONS(8872), 1, - sym__function_signature_automatic_semicolon, - STATE(5462), 1, + STATE(5326), 1, sym_comment, - STATE(5513), 1, - sym_statement_block, - [182212] = 7, + STATE(5750), 1, + sym__initializer, + ACTIONS(8887), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182530] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, + ACTIONS(7471), 1, anon_sym_AMP, - ACTIONS(7466), 1, + ACTIONS(7477), 1, anon_sym_extends, - ACTIONS(8608), 1, + ACTIONS(8575), 1, anon_sym_PIPE, - STATE(5463), 1, + STATE(5327), 1, sym_comment, - ACTIONS(8912), 2, + ACTIONS(8923), 2, sym__automatic_semicolon, anon_sym_SEMI, - [182235] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - STATE(4276), 1, - sym_formal_parameters, - STATE(4558), 1, - sym__call_signature, - STATE(5464), 1, - sym_comment, - STATE(6903), 1, - sym_type_parameters, - [182260] = 6, + [182553] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5465), 1, + STATE(5328), 1, sym_comment, - STATE(6357), 1, + STATE(5966), 1, sym__initializer, - ACTIONS(8562), 3, + ACTIONS(8864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182281] = 6, + [182574] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5466), 1, + STATE(5329), 1, sym_comment, - STATE(6374), 1, + STATE(5690), 1, sym__initializer, - ACTIONS(8562), 3, + ACTIONS(8864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182302] = 6, + [182595] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5467), 1, + STATE(5330), 1, sym_comment, - STATE(6387), 1, + STATE(5768), 1, sym__initializer, - ACTIONS(8774), 3, + ACTIONS(8864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182323] = 8, + [182616] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - STATE(4276), 1, - sym_formal_parameters, - STATE(4571), 1, - sym__call_signature, - STATE(5468), 1, - sym_comment, - STATE(6903), 1, - sym_type_parameters, - [182348] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8584), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(8914), 1, - anon_sym_COMMA, - ACTIONS(8916), 1, - anon_sym_RBRACE, - STATE(5469), 1, + STATE(5331), 1, sym_comment, - STATE(5841), 1, - aux_sym_enum_body_repeat1, - STATE(6858), 1, + STATE(5769), 1, sym__initializer, - [182373] = 6, + ACTIONS(8887), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182637] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5470), 1, + STATE(5332), 1, sym_comment, - STATE(5777), 1, + STATE(5778), 1, sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182394] = 6, + [182658] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5471), 1, + STATE(5333), 1, sym_comment, - STATE(5796), 1, + STATE(5964), 1, sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182415] = 8, + [182679] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - STATE(4276), 1, - sym_formal_parameters, - STATE(4544), 1, - sym__call_signature, - STATE(5472), 1, + ACTIONS(6528), 1, + sym__automatic_semicolon, + STATE(5334), 1, sym_comment, - STATE(6903), 1, - sym_type_parameters, - [182440] = 8, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(2352), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [182698] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1965), 1, - anon_sym_DQUOTE, - ACTIONS(1967), 1, - anon_sym_SQUOTE, - ACTIONS(8695), 1, - sym_identifier, - STATE(5473), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5335), 1, sym_comment, - STATE(5677), 1, - sym_string, - STATE(6853), 1, - sym__module_export_name, - [182465] = 7, + STATE(5963), 1, + sym__initializer, + ACTIONS(8864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182719] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, + ACTIONS(7471), 1, anon_sym_AMP, - ACTIONS(7466), 1, + ACTIONS(7477), 1, anon_sym_extends, - ACTIONS(8608), 1, + ACTIONS(8575), 1, anon_sym_PIPE, - STATE(5474), 1, + STATE(5336), 1, sym_comment, - ACTIONS(8918), 2, + ACTIONS(8925), 2, sym__automatic_semicolon, anon_sym_SEMI, - [182488] = 8, + [182742] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - STATE(4276), 1, - sym_formal_parameters, - STATE(4599), 1, - sym__call_signature, - STATE(5475), 1, + ACTIONS(6526), 1, + sym__automatic_semicolon, + STATE(5337), 1, sym_comment, - STATE(6903), 1, - sym_type_parameters, - [182513] = 8, + ACTIONS(2366), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [182761] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4957), 1, - anon_sym_LBRACE, - ACTIONS(8920), 1, - anon_sym_SEMI, - ACTIONS(8922), 1, + ACTIONS(6272), 1, sym__automatic_semicolon, - ACTIONS(8924), 1, - sym__function_signature_automatic_semicolon, - STATE(3250), 1, - sym_statement_block, - STATE(5476), 1, + STATE(5338), 1, sym_comment, - [182538] = 8, + ACTIONS(2370), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [182780] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5477), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5339), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(6851), 1, - sym__call_signature, - [182563] = 8, + STATE(5950), 1, + sym__initializer, + ACTIONS(8887), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182801] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8827), 1, - anon_sym_LBRACE, - ACTIONS(8900), 1, - anon_sym_SEMI, - ACTIONS(8902), 1, + ACTIONS(6435), 1, sym__automatic_semicolon, - ACTIONS(8904), 1, - sym__function_signature_automatic_semicolon, - STATE(1547), 1, - sym_statement_block, - STATE(5478), 1, + STATE(5340), 1, sym_comment, - [182588] = 7, + ACTIONS(2388), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [182820] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7466), 1, - anon_sym_extends, - ACTIONS(8608), 1, - anon_sym_PIPE, - STATE(5479), 1, + STATE(5341), 1, sym_comment, - ACTIONS(8926), 2, + ACTIONS(7974), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [182611] = 8, + anon_sym_PIPE_RBRACE, + [182837] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5480), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5342), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(6848), 1, - sym__call_signature, - [182636] = 8, + STATE(5948), 1, + sym__initializer, + ACTIONS(8864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182858] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5481), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7477), 1, + anon_sym_extends, + ACTIONS(8575), 1, + anon_sym_PIPE, + STATE(5343), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(6844), 1, - sym__call_signature, - [182661] = 8, + ACTIONS(8927), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [182881] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7866), 1, + ACTIONS(8929), 1, anon_sym_LBRACE, - ACTIONS(8920), 1, + ACTIONS(8931), 1, anon_sym_SEMI, - ACTIONS(8922), 1, + ACTIONS(8933), 1, sym__automatic_semicolon, - ACTIONS(8924), 1, + ACTIONS(8935), 1, sym__function_signature_automatic_semicolon, - STATE(5482), 1, - sym_comment, - STATE(5516), 1, + STATE(998), 1, sym_statement_block, - [182686] = 8, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5483), 1, + STATE(5344), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(6773), 1, - sym__call_signature, - [182711] = 8, + [182906] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5484), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5345), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(6792), 1, - sym__call_signature, - [182736] = 8, + STATE(5947), 1, + sym__initializer, + ACTIONS(8864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182927] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5485), 1, + ACTIONS(8605), 1, + anon_sym_EQ, + ACTIONS(8937), 1, + anon_sym_COMMA, + ACTIONS(8939), 1, + anon_sym_RBRACE, + STATE(5346), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(6798), 1, - sym__call_signature, - [182761] = 8, + STATE(6252), 1, + aux_sym_enum_body_repeat1, + STATE(6674), 1, + sym__initializer, + [182952] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, - anon_sym_LPAREN, - STATE(4343), 1, - sym_formal_parameters, - STATE(5070), 1, - sym__call_signature, - STATE(5486), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5347), 1, sym_comment, - STATE(6498), 1, - sym_type_parameters, - [182786] = 4, + STATE(5894), 1, + sym__initializer, + ACTIONS(8887), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [182973] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5487), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5348), 1, sym_comment, - ACTIONS(8020), 5, + STATE(5912), 1, + sym__initializer, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [182803] = 7, + [182994] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(7596), 1, - anon_sym_DOT, - STATE(4503), 1, - sym_arguments, - STATE(5488), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5349), 1, sym_comment, - ACTIONS(8928), 2, + STATE(5901), 1, + sym__initializer, + ACTIONS(8864), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [182826] = 6, + anon_sym_SEMI, + [183015] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5489), 1, + STATE(5350), 1, sym_comment, - STATE(6389), 1, + STATE(5900), 1, sym__initializer, - ACTIONS(8774), 3, + ACTIONS(8864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182847] = 6, + [183036] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5490), 1, + STATE(5351), 1, sym_comment, - STATE(5770), 1, + STATE(6233), 1, sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182868] = 8, + [183057] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4978), 1, - sym_formal_parameters, - STATE(5491), 1, + ACTIONS(8931), 1, + anon_sym_SEMI, + ACTIONS(8933), 1, + sym__automatic_semicolon, + ACTIONS(8935), 1, + sym__function_signature_automatic_semicolon, + ACTIONS(8943), 1, + anon_sym_LBRACE, + STATE(303), 1, + sym_statement_block, + STATE(5352), 1, sym_comment, - STATE(6489), 1, - sym_type_parameters, - STATE(6813), 1, - sym__call_signature, - [182893] = 6, + [183082] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5492), 1, + STATE(5353), 1, sym_comment, - STATE(6390), 1, + STATE(6234), 1, sym__initializer, - ACTIONS(8562), 3, + ACTIONS(8941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [182914] = 8, + [183103] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, - anon_sym_LPAREN, - STATE(4343), 1, - sym_formal_parameters, - STATE(5019), 1, - sym__call_signature, - STATE(5493), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7477), 1, + anon_sym_extends, + ACTIONS(8575), 1, + anon_sym_PIPE, + STATE(5354), 1, sym_comment, - STATE(6498), 1, - sym_type_parameters, - [182939] = 8, + ACTIONS(8945), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [183126] = 8, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8929), 1, + anon_sym_LBRACE, + ACTIONS(8947), 1, + anon_sym_SEMI, + ACTIONS(8949), 1, + sym__automatic_semicolon, + ACTIONS(8951), 1, + sym__function_signature_automatic_semicolon, + STATE(981), 1, + sym_statement_block, + STATE(5355), 1, + sym_comment, + [183151] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8584), 1, + ACTIONS(7244), 1, anon_sym_EQ, - ACTIONS(8930), 1, - anon_sym_COMMA, - ACTIONS(8932), 1, - anon_sym_RBRACE, - STATE(5494), 1, + STATE(5356), 1, sym_comment, - STATE(6099), 1, - aux_sym_enum_body_repeat1, - STATE(6858), 1, + STATE(5886), 1, sym__initializer, - [182964] = 4, + ACTIONS(8887), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183172] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5495), 1, - sym_comment, - ACTIONS(5931), 5, + ACTIONS(7244), 1, anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [182981] = 4, + STATE(5357), 1, + sym_comment, + STATE(5879), 1, + sym__initializer, + ACTIONS(8864), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183193] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5496), 1, + ACTIONS(8000), 1, + anon_sym_extends, + ACTIONS(8050), 1, + anon_sym_LBRACE, + ACTIONS(8052), 1, + anon_sym_LBRACE_PIPE, + STATE(1080), 1, + sym_object_type, + STATE(5358), 1, sym_comment, - ACTIONS(5911), 5, - anon_sym_EQ, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - [182998] = 6, + STATE(6282), 1, + sym_extends_type_clause, + [183218] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5497), 1, + STATE(5359), 1, sym_comment, - STATE(6400), 1, + STATE(5876), 1, sym__initializer, - ACTIONS(8562), 3, + ACTIONS(8864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183019] = 8, + [183239] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, - anon_sym_LPAREN, - STATE(4343), 1, - sym_formal_parameters, - STATE(5091), 1, - sym__call_signature, - STATE(5498), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5360), 1, sym_comment, - STATE(6498), 1, - sym_type_parameters, - [183044] = 8, + STATE(5866), 1, + sym__initializer, + ACTIONS(8887), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183260] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(8418), 1, - anon_sym_class, - ACTIONS(8420), 1, - anon_sym_abstract, - STATE(4906), 1, - aux_sym_export_statement_repeat1, - STATE(5499), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5361), 1, sym_comment, - STATE(5733), 1, - sym_decorator, - [183069] = 8, + STATE(5843), 1, + sym__initializer, + ACTIONS(8887), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183281] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7285), 1, - anon_sym_LPAREN, - STATE(4343), 1, - sym_formal_parameters, - STATE(5189), 1, - sym__call_signature, - STATE(5500), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5362), 1, sym_comment, - STATE(6498), 1, - sym_type_parameters, - [183094] = 4, + STATE(5830), 1, + sym__initializer, + ACTIONS(8887), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [183302] = 8, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5501), 1, - sym_comment, - ACTIONS(8524), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(8943), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(8947), 1, anon_sym_SEMI, - [183111] = 6, + ACTIONS(8949), 1, + sym__automatic_semicolon, + ACTIONS(8951), 1, + sym__function_signature_automatic_semicolon, + STATE(315), 1, + sym_statement_block, + STATE(5363), 1, + sym_comment, + [183327] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5502), 1, + STATE(5364), 1, sym_comment, - STATE(5761), 1, + STATE(5827), 1, sym__initializer, - ACTIONS(8746), 3, + ACTIONS(8864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183132] = 6, + [183348] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5503), 1, + STATE(5365), 1, sym_comment, - STATE(6413), 1, + STATE(6239), 1, sym__initializer, - ACTIONS(8562), 3, + ACTIONS(8941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183153] = 6, + [183369] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8936), 1, - anon_sym_in, - ACTIONS(8938), 1, - anon_sym_of, - STATE(5504), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5366), 1, sym_comment, - ACTIONS(8934), 3, + STATE(5779), 1, + sym__initializer, + ACTIONS(8864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183174] = 6, + [183390] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5505), 1, + STATE(5367), 1, sym_comment, - STATE(5760), 1, + STATE(6236), 1, sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8941), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183195] = 6, + [183411] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5506), 1, + STATE(5368), 1, sym_comment, - STATE(5759), 1, + STATE(5825), 1, sym__initializer, - ACTIONS(8729), 3, + ACTIONS(8864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183216] = 6, + [183432] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8940), 1, - anon_sym_in, - ACTIONS(8942), 1, - anon_sym_of, - STATE(5507), 1, + ACTIONS(7244), 1, + anon_sym_EQ, + STATE(5369), 1, sym_comment, - ACTIONS(8934), 3, + STATE(5807), 1, + sym__initializer, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183237] = 6, + [183453] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5508), 1, + STATE(5370), 1, sym_comment, - STATE(5772), 1, + STATE(5795), 1, sym__initializer, - ACTIONS(8746), 3, + ACTIONS(8887), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183258] = 4, + [183474] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5509), 1, - sym_comment, - ACTIONS(6641), 5, + ACTIONS(7244), 1, anon_sym_EQ, + STATE(5371), 1, + sym_comment, + STATE(5782), 1, + sym__initializer, + ACTIONS(8864), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [183275] = 6, + anon_sym_SEMI, + [183495] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, + ACTIONS(7244), 1, anon_sym_EQ, - STATE(5510), 1, + STATE(5372), 1, sym_comment, - STATE(6044), 1, + STATE(5781), 1, sym__initializer, - ACTIONS(8859), 3, + ACTIONS(8864), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [183296] = 4, + [183516] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5511), 1, - sym_comment, - ACTIONS(6633), 5, - anon_sym_EQ, + ACTIONS(7923), 1, + anon_sym_DOT, + ACTIONS(8953), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [183313] = 4, + ACTIONS(8955), 1, + anon_sym_GT, + STATE(5373), 1, + sym_comment, + STATE(6256), 1, + aux_sym_type_arguments_repeat1, + [183538] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(8957), 1, + anon_sym_DQUOTE, + STATE(5374), 1, + sym_comment, + STATE(5435), 1, + aux_sym_string_repeat1, + ACTIONS(8959), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [183558] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(5512), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8957), 1, + anon_sym_SQUOTE, + STATE(5375), 1, sym_comment, - ACTIONS(6633), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [183330] = 5, + STATE(5436), 1, + aux_sym_string_repeat2, + ACTIONS(8961), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [183578] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8963), 1, + anon_sym_SQUOTE, + STATE(5376), 1, + sym_comment, + STATE(5529), 1, + aux_sym_string_repeat2, + ACTIONS(8961), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [183598] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6526), 1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(5377), 1, + sym_comment, + STATE(6295), 1, + sym__from_clause, + ACTIONS(6043), 2, sym__automatic_semicolon, - STATE(5513), 1, + anon_sym_SEMI, + [183618] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8963), 1, + anon_sym_DQUOTE, + STATE(5378), 1, sym_comment, - ACTIONS(2416), 4, + STATE(5530), 1, + aux_sym_string_repeat1, + ACTIONS(8959), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [183638] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8967), 1, anon_sym_COMMA, - anon_sym_RBRACE, + STATE(5379), 1, + sym_comment, + STATE(5501), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8969), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [183349] = 6, + [183658] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5514), 1, + ACTIONS(8967), 1, + anon_sym_COMMA, + STATE(5380), 1, sym_comment, - STATE(5789), 1, - sym__initializer, - ACTIONS(8746), 3, + STATE(5501), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8971), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [183370] = 6, + [183678] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5515), 1, + ACTIONS(8967), 1, + anon_sym_COMMA, + STATE(5380), 1, + aux_sym_variable_declaration_repeat1, + STATE(5381), 1, sym_comment, - STATE(6438), 1, - sym__initializer, - ACTIONS(8774), 3, + ACTIONS(8973), 2, sym__automatic_semicolon, + anon_sym_SEMI, + [183698] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8967), 1, anon_sym_COMMA, + STATE(5379), 1, + aux_sym_variable_declaration_repeat1, + STATE(5382), 1, + sym_comment, + ACTIONS(8975), 2, + sym__automatic_semicolon, anon_sym_SEMI, - [183391] = 5, + [183718] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8977), 1, + anon_sym_DQUOTE, + STATE(5383), 1, + sym_comment, + STATE(5390), 1, + aux_sym_string_repeat1, + ACTIONS(8959), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [183738] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6482), 1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(5384), 1, + sym_comment, + STATE(6322), 1, + sym__from_clause, + ACTIONS(8979), 2, sym__automatic_semicolon, - STATE(5516), 1, + anon_sym_SEMI, + [183758] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8977), 1, + anon_sym_SQUOTE, + STATE(5385), 1, + sym_comment, + STATE(5392), 1, + aux_sym_string_repeat2, + ACTIONS(8961), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [183778] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8981), 1, + anon_sym_SQUOTE, + STATE(5376), 1, + aux_sym_string_repeat2, + STATE(5386), 1, sym_comment, - ACTIONS(2424), 4, + ACTIONS(8961), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [183798] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8981), 1, + anon_sym_DQUOTE, + STATE(5378), 1, + aux_sym_string_repeat1, + STATE(5387), 1, + sym_comment, + ACTIONS(8959), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [183818] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8967), 1, anon_sym_COMMA, - anon_sym_RBRACE, + STATE(5388), 1, + sym_comment, + STATE(5394), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8983), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [183410] = 5, + [183838] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6480), 1, + ACTIONS(8967), 1, + anon_sym_COMMA, + STATE(5389), 1, + sym_comment, + STATE(5395), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8985), 2, sym__automatic_semicolon, - STATE(5517), 1, + anon_sym_SEMI, + [183858] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8987), 1, + anon_sym_DQUOTE, + STATE(5390), 1, + sym_comment, + STATE(5530), 1, + aux_sym_string_repeat1, + ACTIONS(8959), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [183878] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(8989), 1, + anon_sym_COLON, + STATE(5391), 1, + sym_comment, + [183900] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8987), 1, + anon_sym_SQUOTE, + STATE(5392), 1, sym_comment, - ACTIONS(2428), 4, + STATE(5529), 1, + aux_sym_string_repeat2, + ACTIONS(8961), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [183920] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7923), 1, + anon_sym_DOT, + ACTIONS(8991), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [183429] = 6, + ACTIONS(8993), 1, + anon_sym_GT, + STATE(5393), 1, + sym_comment, + STATE(6191), 1, + aux_sym_type_arguments_repeat1, + [183942] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7241), 1, - anon_sym_EQ, - STATE(5518), 1, + ACTIONS(8967), 1, + anon_sym_COMMA, + STATE(5394), 1, sym_comment, - STATE(6166), 1, - sym__initializer, - ACTIONS(8774), 3, + STATE(5501), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8995), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [183450] = 5, + [183962] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6450), 1, + ACTIONS(8967), 1, + anon_sym_COMMA, + STATE(5395), 1, + sym_comment, + STATE(5501), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8997), 2, sym__automatic_semicolon, - STATE(5519), 1, + anon_sym_SEMI, + [183982] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(5396), 1, sym_comment, - ACTIONS(2394), 4, - anon_sym_COMMA, - anon_sym_RBRACE, + STATE(6760), 1, + sym__from_clause, + ACTIONS(8999), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [183469] = 6, + [184002] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9001), 1, + sym__glimmer_template_content, + ACTIONS(9003), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(2648), 1, + sym_glimmer_closing_tag, + STATE(5397), 1, + sym_comment, + STATE(5816), 1, + aux_sym_glimmer_template_repeat1, + [184024] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8944), 1, + ACTIONS(9005), 1, anon_sym_DQUOTE, - STATE(5520), 1, + STATE(5398), 1, sym_comment, - STATE(5635), 1, + STATE(5402), 1, aux_sym_string_repeat1, - ACTIONS(8946), 2, + ACTIONS(8959), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [183489] = 7, + [184044] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9005), 1, + anon_sym_SQUOTE, + STATE(5399), 1, + sym_comment, + STATE(5403), 1, + aux_sym_string_repeat2, + ACTIONS(8961), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184064] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, + ACTIONS(7146), 1, anon_sym_AMP, - ACTIONS(7139), 1, + ACTIONS(7148), 1, anon_sym_PIPE, - ACTIONS(7141), 1, + ACTIONS(7150), 1, anon_sym_extends, - ACTIONS(8948), 1, + ACTIONS(9007), 1, anon_sym_RBRACK, - STATE(5521), 1, + STATE(5400), 1, sym_comment, - [183511] = 7, + [184086] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(9009), 1, + anon_sym_RBRACK, + STATE(5401), 1, + sym_comment, + [184108] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8950), 1, - sym__glimmer_template_content, - ACTIONS(8952), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(2673), 1, - sym_glimmer_closing_tag, - STATE(5522), 1, + ACTIONS(9011), 1, + anon_sym_DQUOTE, + STATE(5402), 1, sym_comment, - STATE(6179), 1, - aux_sym_glimmer_template_repeat1, - [183533] = 6, + STATE(5530), 1, + aux_sym_string_repeat1, + ACTIONS(8959), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184128] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9011), 1, + anon_sym_SQUOTE, + STATE(5403), 1, + sym_comment, + STATE(5529), 1, + aux_sym_string_repeat2, + ACTIONS(8961), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184148] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8954), 1, - anon_sym_EQ, - STATE(5523), 1, + ACTIONS(8212), 1, + anon_sym_finally, + STATE(5404), 1, sym_comment, - STATE(6836), 1, - sym__initializer, - ACTIONS(7528), 2, - anon_sym_in, - anon_sym_of, - [183553] = 7, + STATE(6611), 1, + sym_finally_clause, + ACTIONS(3181), 2, + anon_sym_else, + anon_sym_while, + [184168] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(5524), 1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(9013), 1, + anon_sym_RBRACK, + STATE(5405), 1, sym_comment, - STATE(6970), 1, - sym_type_parameters, - STATE(7285), 1, - sym_formal_parameters, - [183575] = 5, + [184190] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8956), 1, - anon_sym_COMMA, - ACTIONS(8959), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(5525), 2, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(9015), 1, + anon_sym_RBRACK, + STATE(5406), 1, sym_comment, - aux_sym_variable_declaration_repeat1, - [183593] = 7, + [184212] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(9017), 1, + anon_sym_DQUOTE, + STATE(5407), 1, + sym_comment, + STATE(5409), 1, + aux_sym_string_repeat1, + ACTIONS(8959), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184232] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(5526), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9017), 1, + anon_sym_SQUOTE, + STATE(5408), 1, + sym_comment, + STATE(5410), 1, + aux_sym_string_repeat2, + ACTIONS(8961), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184252] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9019), 1, + anon_sym_DQUOTE, + STATE(5409), 1, sym_comment, - STATE(6978), 1, - sym_type_parameters, - STATE(7298), 1, - sym_formal_parameters, - [183615] = 6, + STATE(5530), 1, + aux_sym_string_repeat1, + ACTIONS(8959), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184272] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8961), 1, + ACTIONS(9019), 1, anon_sym_SQUOTE, - STATE(5527), 1, + STATE(5410), 1, sym_comment, - STATE(5634), 1, + STATE(5529), 1, aux_sym_string_repeat2, - ACTIONS(8963), 2, + ACTIONS(8961), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [183635] = 6, + [184292] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(9021), 1, + anon_sym_COLON, + STATE(5411), 1, + sym_comment, + [184314] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8961), 1, + ACTIONS(9023), 1, anon_sym_DQUOTE, - STATE(5528), 1, + STATE(5412), 1, sym_comment, - STATE(5635), 1, + STATE(5415), 1, aux_sym_string_repeat1, - ACTIONS(8946), 2, + ACTIONS(8959), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [183655] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8054), 1, - anon_sym_COMMA, - ACTIONS(8388), 1, - anon_sym_LBRACE, - ACTIONS(8390), 1, - anon_sym_LBRACE_PIPE, - STATE(5529), 1, - sym_comment, - STATE(5669), 1, - aux_sym_extends_type_clause_repeat1, - [183677] = 7, + [184334] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(9025), 1, anon_sym_with, - ACTIONS(8967), 1, + ACTIONS(9027), 1, anon_sym_SEMI, - ACTIONS(8969), 1, + ACTIONS(9029), 1, sym__automatic_semicolon, - STATE(5530), 1, + STATE(5413), 1, sym_comment, - STATE(6643), 1, + STATE(6465), 1, sym_import_attribute, - [183699] = 4, + [184356] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(9023), 1, + anon_sym_SQUOTE, + STATE(5414), 1, + sym_comment, + STATE(5416), 1, + aux_sym_string_repeat2, + ACTIONS(8961), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184376] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(5531), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9031), 1, + anon_sym_DQUOTE, + STATE(5415), 1, sym_comment, - ACTIONS(8971), 4, - sym__template_chars, + STATE(5530), 1, + aux_sym_string_repeat1, + ACTIONS(8959), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [183715] = 6, + [184396] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8973), 1, + ACTIONS(9031), 1, anon_sym_SQUOTE, - STATE(5527), 1, - aux_sym_string_repeat2, - STATE(5532), 1, + STATE(5416), 1, sym_comment, - ACTIONS(8963), 2, + STATE(5529), 1, + aux_sym_string_repeat2, + ACTIONS(8961), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [183735] = 7, + [184416] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8975), 1, - sym_identifier, - ACTIONS(8977), 1, - anon_sym_const, - ACTIONS(8979), 1, - anon_sym_GT, - STATE(5533), 1, + ACTIONS(9033), 1, + anon_sym_DQUOTE, + STATE(5417), 1, sym_comment, - STATE(7017), 1, - sym_type_parameter, - [183757] = 7, + STATE(5423), 1, + aux_sym_string_repeat1, + ACTIONS(8959), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184436] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(8981), 1, - anon_sym_RBRACK, - STATE(5534), 1, + ACTIONS(9025), 1, + anon_sym_with, + STATE(5418), 1, sym_comment, - [183779] = 7, + STATE(6814), 1, + sym_import_attribute, + ACTIONS(9035), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184456] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(8983), 1, - anon_sym_QMARK, - STATE(5535), 1, + ACTIONS(9025), 1, + anon_sym_with, + STATE(5419), 1, sym_comment, - [183801] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6816), 1, + sym_import_attribute, + ACTIONS(9037), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184476] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8973), 1, - anon_sym_DQUOTE, - STATE(5528), 1, - aux_sym_string_repeat1, - STATE(5536), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8967), 1, + anon_sym_COMMA, + STATE(5420), 1, sym_comment, - ACTIONS(8946), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [183821] = 7, + STATE(5488), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9039), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184496] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(8985), 1, - anon_sym_COLON, - STATE(5537), 1, + ACTIONS(8967), 1, + anon_sym_COMMA, + STATE(5421), 1, sym_comment, - [183843] = 6, + STATE(5489), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9041), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [184516] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8987), 1, + ACTIONS(9033), 1, anon_sym_SQUOTE, - STATE(5538), 1, + STATE(5422), 1, sym_comment, - STATE(5634), 1, + STATE(5424), 1, aux_sym_string_repeat2, - ACTIONS(8963), 2, + ACTIONS(8961), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [183863] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8888), 1, - anon_sym_RBRACE, - STATE(5539), 1, - sym_comment, - ACTIONS(5054), 3, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [183881] = 6, + [184536] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8987), 1, + ACTIONS(9043), 1, anon_sym_DQUOTE, - STATE(5540), 1, + STATE(5423), 1, sym_comment, - STATE(5635), 1, + STATE(5530), 1, aux_sym_string_repeat1, - ACTIONS(8946), 2, + ACTIONS(8959), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [183901] = 5, + [184556] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8989), 1, - sym_escape_sequence, - STATE(5541), 1, + ACTIONS(9043), 1, + anon_sym_SQUOTE, + STATE(5424), 1, sym_comment, - ACTIONS(8991), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [183919] = 6, + STATE(5529), 1, + aux_sym_string_repeat2, + ACTIONS(8961), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184576] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7411), 1, - anon_sym_EQ, - STATE(5542), 1, + ACTIONS(9045), 1, + anon_sym_DQUOTE, + STATE(5425), 1, sym_comment, - STATE(6872), 1, - sym_default_type, - ACTIONS(8994), 2, - anon_sym_COMMA, - anon_sym_GT, - [183939] = 6, + STATE(5427), 1, + aux_sym_string_repeat1, + ACTIONS(8959), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184596] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8996), 1, + ACTIONS(9045), 1, anon_sym_SQUOTE, - STATE(5538), 1, - aux_sym_string_repeat2, - STATE(5543), 1, + STATE(5426), 1, sym_comment, - ACTIONS(8963), 2, + STATE(5428), 1, + aux_sym_string_repeat2, + ACTIONS(8961), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [183959] = 6, + [184616] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8996), 1, + ACTIONS(9047), 1, anon_sym_DQUOTE, - STATE(5540), 1, - aux_sym_string_repeat1, - STATE(5544), 1, + STATE(5427), 1, sym_comment, - ACTIONS(8946), 2, + STATE(5530), 1, + aux_sym_string_repeat1, + ACTIONS(8959), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [183979] = 7, + [184636] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9047), 1, + anon_sym_SQUOTE, + STATE(5428), 1, + sym_comment, + STATE(5529), 1, + aux_sym_string_repeat2, + ACTIONS(8961), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184656] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, + ACTIONS(7146), 1, anon_sym_AMP, - ACTIONS(7139), 1, + ACTIONS(7148), 1, anon_sym_PIPE, - ACTIONS(7141), 1, + ACTIONS(7150), 1, anon_sym_extends, - ACTIONS(8998), 1, + ACTIONS(9049), 1, anon_sym_RPAREN, - STATE(5545), 1, + STATE(5429), 1, sym_comment, - [184001] = 6, + [184678] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9000), 1, + ACTIONS(9051), 1, + anon_sym_DQUOTE, + STATE(5430), 1, + sym_comment, + STATE(5433), 1, + aux_sym_string_repeat1, + ACTIONS(8959), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [184698] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9051), 1, anon_sym_SQUOTE, - STATE(5546), 1, + STATE(5431), 1, sym_comment, - STATE(5634), 1, + STATE(5434), 1, aux_sym_string_repeat2, - ACTIONS(8963), 2, + ACTIONS(8961), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184021] = 7, + [184718] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7192), 1, anon_sym_LPAREN, - STATE(5547), 1, + ACTIONS(7198), 1, + anon_sym_LT, + STATE(4076), 1, + sym_arguments, + STATE(4294), 1, + sym_type_arguments, + STATE(5432), 1, sym_comment, - STATE(7088), 1, - sym_type_parameters, - STATE(7398), 1, - sym_formal_parameters, - [184043] = 6, + [184740] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9000), 1, + ACTIONS(9053), 1, anon_sym_DQUOTE, - STATE(5548), 1, + STATE(5433), 1, sym_comment, - STATE(5635), 1, + STATE(5530), 1, aux_sym_string_repeat1, - ACTIONS(8946), 2, + ACTIONS(8959), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184063] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(9002), 1, - anon_sym_LT, - STATE(2538), 1, - sym_arguments, - STATE(2539), 1, - sym_type_arguments, - STATE(5549), 1, - sym_comment, - [184085] = 6, + [184760] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9004), 1, + ACTIONS(9053), 1, anon_sym_SQUOTE, - STATE(5546), 1, - aux_sym_string_repeat2, - STATE(5550), 1, + STATE(5434), 1, sym_comment, - ACTIONS(8963), 2, + STATE(5529), 1, + aux_sym_string_repeat2, + ACTIONS(8961), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184105] = 6, + [184780] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9004), 1, + ACTIONS(9055), 1, anon_sym_DQUOTE, - STATE(5548), 1, - aux_sym_string_repeat1, - STATE(5551), 1, + STATE(5435), 1, sym_comment, - ACTIONS(8946), 2, + STATE(5530), 1, + aux_sym_string_repeat1, + ACTIONS(8959), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184125] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [184800] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - ACTIONS(7239), 1, - anon_sym_LT, - STATE(4531), 1, - sym_formal_parameters, - STATE(5552), 1, - sym_comment, - STATE(6886), 1, - sym_type_parameters, - [184147] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(5553), 1, + ACTIONS(9055), 1, + anon_sym_SQUOTE, + STATE(5436), 1, sym_comment, - STATE(7096), 1, - sym_type_parameters, - STATE(7406), 1, - sym_formal_parameters, - [184169] = 6, + STATE(5529), 1, + aux_sym_string_repeat2, + ACTIONS(8961), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [184820] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9008), 1, - anon_sym_COMMA, - STATE(5554), 1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(9057), 1, + anon_sym_RBRACK, + STATE(5437), 1, sym_comment, - STATE(5615), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(9006), 2, - anon_sym_LBRACE, - anon_sym_implements, - [184189] = 6, + [184842] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, + ACTIONS(8967), 1, anon_sym_COMMA, - STATE(5525), 1, - aux_sym_variable_declaration_repeat1, - STATE(5555), 1, + STATE(5438), 1, sym_comment, - ACTIONS(9012), 2, + STATE(5501), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9059), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184209] = 6, + [184862] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, + ACTIONS(8967), 1, anon_sym_COMMA, - STATE(5525), 1, - aux_sym_variable_declaration_repeat1, - STATE(5556), 1, + STATE(5439), 1, sym_comment, - ACTIONS(9014), 2, + STATE(5501), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9061), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184229] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9016), 1, - anon_sym_DQUOTE, - STATE(5557), 1, - sym_comment, - STATE(5618), 1, - aux_sym_string_repeat1, - ACTIONS(8946), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [184249] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9016), 1, - anon_sym_SQUOTE, - STATE(5558), 1, - sym_comment, - STATE(5619), 1, - aux_sym_string_repeat2, - ACTIONS(8963), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [184269] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9018), 1, - anon_sym_SQUOTE, - STATE(5559), 1, - sym_comment, - STATE(5634), 1, - aux_sym_string_repeat2, - ACTIONS(8963), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [184289] = 7, + [184882] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(9025), 1, anon_sym_with, - ACTIONS(9020), 1, + ACTIONS(9063), 1, anon_sym_SEMI, - ACTIONS(9022), 1, + ACTIONS(9065), 1, sym__automatic_semicolon, - STATE(5560), 1, + STATE(5440), 1, sym_comment, - STATE(6660), 1, + STATE(6492), 1, sym_import_attribute, - [184311] = 6, + [184904] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(9025), 1, anon_sym_with, - STATE(5561), 1, + STATE(5441), 1, sym_comment, - STATE(6661), 1, + STATE(6495), 1, sym_import_attribute, - ACTIONS(9024), 2, + ACTIONS(9067), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184331] = 6, + [184924] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7990), 1, - anon_sym_EQ, - STATE(5562), 1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(9069), 1, + anon_sym_RBRACK, + STATE(5442), 1, sym_comment, - STATE(6923), 1, - sym__initializer, - ACTIONS(9026), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [184351] = 6, + [184946] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(9025), 1, anon_sym_with, - STATE(5563), 1, + STATE(5443), 1, sym_comment, - STATE(6662), 1, + STATE(6499), 1, sym_import_attribute, - ACTIONS(9028), 2, + ACTIONS(9071), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184371] = 6, + [184966] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8556), 1, - anon_sym_finally, - STATE(5564), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(9073), 1, + anon_sym_class, + STATE(4662), 1, + aux_sym_export_statement_repeat1, + STATE(5444), 1, sym_comment, - STATE(6831), 1, - sym_finally_clause, - ACTIONS(3179), 2, - anon_sym_else, - anon_sym_while, - [184391] = 6, - ACTIONS(3), 1, + STATE(5596), 1, + sym_decorator, + [184988] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(5445), 1, + sym_comment, + STATE(6589), 1, + sym_type_parameters, + STATE(6959), 1, + sym_formal_parameters, + [185010] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9018), 1, - anon_sym_DQUOTE, - STATE(5565), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8605), 1, + anon_sym_EQ, + STATE(5446), 1, sym_comment, - STATE(5635), 1, - aux_sym_string_repeat1, - ACTIONS(8946), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [184411] = 6, + STATE(6674), 1, + sym__initializer, + ACTIONS(9075), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [185030] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, + ACTIONS(8965), 1, anon_sym_from, - STATE(5566), 1, + STATE(5447), 1, sym_comment, - STATE(6596), 1, + STATE(6506), 1, sym__from_clause, - ACTIONS(5738), 2, + ACTIONS(5980), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184431] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [185050] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9032), 1, - anon_sym_SQUOTE, - STATE(5559), 1, - aux_sym_string_repeat2, - STATE(5567), 1, - sym_comment, - ACTIONS(8963), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [184451] = 6, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9032), 1, - anon_sym_DQUOTE, - STATE(5565), 1, - aux_sym_string_repeat1, - STATE(5568), 1, + ACTIONS(9077), 1, + anon_sym_LBRACE, + ACTIONS(9079), 1, + anon_sym_COMMA, + ACTIONS(9082), 1, + anon_sym_LBRACE_PIPE, + STATE(5448), 2, sym_comment, - ACTIONS(8946), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [184471] = 7, + aux_sym_extends_type_clause_repeat1, + [185070] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, + ACTIONS(7146), 1, anon_sym_AMP, - ACTIONS(7139), 1, + ACTIONS(7148), 1, anon_sym_PIPE, - ACTIONS(7141), 1, + ACTIONS(7150), 1, anon_sym_extends, - ACTIONS(9034), 1, + ACTIONS(9084), 1, anon_sym_COLON, - STATE(5569), 1, - sym_comment, - [184493] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8131), 1, - anon_sym_DOT, - ACTIONS(9036), 1, - anon_sym_COMMA, - ACTIONS(9038), 1, - anon_sym_GT, - STATE(5570), 1, + STATE(5449), 1, sym_comment, - STATE(6005), 1, - aux_sym_type_arguments_repeat1, - [184515] = 7, + [185092] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(5571), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(5450), 1, sym_comment, - STATE(7078), 1, + STATE(6610), 1, sym_type_parameters, - STATE(7519), 1, + STATE(7146), 1, sym_formal_parameters, - [184537] = 7, + [185114] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(7071), 1, - anon_sym_LT, - STATE(3922), 1, - sym_arguments, - STATE(4004), 1, - sym_type_arguments, - STATE(5572), 1, + ACTIONS(9086), 1, + sym_identifier, + ACTIONS(9088), 1, + anon_sym_const, + ACTIONS(9090), 1, + anon_sym_GT, + STATE(5451), 1, sym_comment, - [184559] = 7, + STATE(6833), 1, + sym_type_parameter, + [185136] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, + ACTIONS(7146), 1, anon_sym_AMP, - ACTIONS(7139), 1, + ACTIONS(7148), 1, anon_sym_PIPE, - ACTIONS(7141), 1, + ACTIONS(7150), 1, anon_sym_extends, - ACTIONS(9040), 1, + ACTIONS(9092), 1, anon_sym_RBRACK, - STATE(5573), 1, + STATE(5452), 1, sym_comment, - [184581] = 7, - ACTIONS(3), 1, + [185158] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + STATE(5453), 1, + sym_comment, + ACTIONS(3335), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(9094), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185176] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8975), 1, - sym_identifier, - ACTIONS(8977), 1, - anon_sym_const, - ACTIONS(9042), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7923), 1, + anon_sym_DOT, + ACTIONS(9096), 1, + anon_sym_COMMA, + ACTIONS(9098), 1, anon_sym_GT, - STATE(5574), 1, + STATE(5454), 1, sym_comment, - STATE(7017), 1, - sym_type_parameter, - [184603] = 7, + STATE(6075), 1, + aux_sym_type_arguments_repeat1, + [185198] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, + ACTIONS(7146), 1, anon_sym_AMP, - ACTIONS(7139), 1, + ACTIONS(7148), 1, anon_sym_PIPE, - ACTIONS(7141), 1, + ACTIONS(7150), 1, anon_sym_extends, - ACTIONS(9044), 1, + ACTIONS(9100), 1, anon_sym_RBRACK, - STATE(5575), 1, + STATE(5455), 1, sym_comment, - [184625] = 7, + [185220] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, + ACTIONS(7146), 1, anon_sym_AMP, - ACTIONS(7139), 1, + ACTIONS(7148), 1, anon_sym_PIPE, - ACTIONS(7141), 1, + ACTIONS(7150), 1, anon_sym_extends, - ACTIONS(9046), 1, + ACTIONS(9102), 1, anon_sym_RBRACK, - STATE(5576), 1, + STATE(5456), 1, sym_comment, - [184647] = 7, + [185242] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(5577), 1, + ACTIONS(8042), 1, + anon_sym_COMMA, + ACTIONS(9104), 1, + anon_sym_LBRACE, + ACTIONS(9106), 1, + anon_sym_LBRACE_PIPE, + STATE(5448), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5457), 1, sym_comment, - STATE(7054), 1, - sym_type_parameters, - STATE(7530), 1, - sym_formal_parameters, - [184669] = 6, + [185264] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8042), 1, + anon_sym_COMMA, + ACTIONS(9104), 1, + anon_sym_LBRACE, + ACTIONS(9106), 1, + anon_sym_LBRACE_PIPE, + STATE(5448), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5458), 1, + sym_comment, + [185286] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8042), 1, + anon_sym_COMMA, + ACTIONS(9108), 1, + anon_sym_LBRACE, + ACTIONS(9110), 1, + anon_sym_LBRACE_PIPE, + STATE(5448), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5459), 1, + sym_comment, + [185308] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9048), 1, - anon_sym_DQUOTE, - STATE(5578), 1, + ACTIONS(9112), 1, + sym_identifier, + STATE(5219), 1, + sym_nested_type_identifier, + STATE(5460), 1, sym_comment, - STATE(5607), 1, - aux_sym_string_repeat1, - ACTIONS(8946), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [184689] = 6, + STATE(6059), 1, + sym_generic_type, + STATE(6953), 1, + sym_nested_identifier, + [185330] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(5579), 1, + ACTIONS(7923), 1, + anon_sym_DOT, + ACTIONS(9114), 1, + anon_sym_COMMA, + ACTIONS(9116), 1, + anon_sym_GT, + STATE(5461), 1, sym_comment, - STATE(6864), 1, - sym__from_clause, - ACTIONS(9050), 2, - sym__automatic_semicolon, + STATE(5811), 1, + aux_sym_type_arguments_repeat1, + [185352] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9025), 1, + anon_sym_with, + ACTIONS(9118), 1, anon_sym_SEMI, - [184709] = 6, - ACTIONS(3), 1, + ACTIONS(9120), 1, + sym__automatic_semicolon, + STATE(5462), 1, + sym_comment, + STATE(6549), 1, + sym_import_attribute, + [185374] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(9124), 1, + anon_sym_COMMA, + ACTIONS(9122), 2, + anon_sym_LBRACE, + anon_sym_implements, + STATE(5463), 2, + sym_comment, + aux_sym_extends_clause_repeat1, + [185392] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9048), 1, - anon_sym_SQUOTE, - STATE(5580), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9127), 1, + anon_sym_EQ, + STATE(5464), 1, sym_comment, - STATE(5609), 1, - aux_sym_string_repeat2, - ACTIONS(8963), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [184729] = 6, + STATE(6652), 1, + sym__initializer, + ACTIONS(7539), 2, + anon_sym_in, + anon_sym_of, + [185412] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9052), 1, + ACTIONS(9129), 1, anon_sym_SQUOTE, - STATE(5581), 1, + STATE(5465), 1, sym_comment, - STATE(5634), 1, + STATE(5529), 1, aux_sym_string_repeat2, - ACTIONS(8963), 2, + ACTIONS(8961), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184749] = 6, + [185432] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9052), 1, + ACTIONS(9129), 1, anon_sym_DQUOTE, - STATE(5582), 1, + STATE(5466), 1, sym_comment, - STATE(5635), 1, + STATE(5530), 1, aux_sym_string_repeat1, - ACTIONS(8946), 2, + ACTIONS(8959), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184769] = 6, + [185452] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(5583), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(5467), 1, sym_comment, - STATE(6554), 1, - sym__from_clause, - ACTIONS(9054), 2, + STATE(6787), 1, + sym_type_parameters, + STATE(7013), 1, + sym_formal_parameters, + [185474] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8967), 1, + anon_sym_COMMA, + STATE(5438), 1, + aux_sym_variable_declaration_repeat1, + STATE(5468), 1, + sym_comment, + ACTIONS(9131), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184789] = 7, + [185494] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_with, - ACTIONS(9056), 1, - anon_sym_SEMI, - ACTIONS(9058), 1, + ACTIONS(8967), 1, + anon_sym_COMMA, + STATE(5439), 1, + aux_sym_variable_declaration_repeat1, + STATE(5469), 1, + sym_comment, + ACTIONS(9133), 2, sym__automatic_semicolon, - STATE(5584), 1, + anon_sym_SEMI, + [185514] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9025), 1, + anon_sym_with, + STATE(5470), 1, sym_comment, - STATE(6943), 1, + STATE(6605), 1, sym_import_attribute, - [184811] = 6, + ACTIONS(9135), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185534] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(9025), 1, anon_sym_with, - STATE(5585), 1, + STATE(5471), 1, sym_comment, - STATE(6551), 1, + STATE(6606), 1, sym_import_attribute, - ACTIONS(9060), 2, + ACTIONS(9137), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185554] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(5472), 1, + sym_comment, + STATE(6795), 1, + sym_type_parameters, + STATE(7275), 1, + sym_formal_parameters, + [185576] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(5473), 1, + sym_comment, + STATE(6619), 1, + sym__from_clause, + ACTIONS(9139), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185596] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(5474), 1, + sym_comment, + STATE(6616), 1, + sym__from_clause, + ACTIONS(5993), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184831] = 6, + [185616] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8042), 1, + anon_sym_COMMA, + ACTIONS(8320), 1, + anon_sym_LBRACE, + ACTIONS(8322), 1, + anon_sym_LBRACE_PIPE, + STATE(5457), 1, + aux_sym_extends_type_clause_repeat1, + STATE(5475), 1, + sym_comment, + [185638] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5476), 1, + sym_comment, + ACTIONS(9141), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [185654] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9062), 1, - anon_sym_SQUOTE, - STATE(5586), 1, + ACTIONS(9086), 1, + sym_identifier, + ACTIONS(9088), 1, + anon_sym_const, + ACTIONS(9143), 1, + anon_sym_GT, + STATE(5477), 1, sym_comment, - STATE(5634), 1, + STATE(6833), 1, + sym_type_parameter, + [185676] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9145), 1, + anon_sym_SQUOTE, + STATE(5465), 1, aux_sym_string_repeat2, - ACTIONS(8963), 2, + STATE(5478), 1, + sym_comment, + ACTIONS(8961), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [184851] = 6, + [185696] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9062), 1, + ACTIONS(9145), 1, anon_sym_DQUOTE, - STATE(5587), 1, - sym_comment, - STATE(5635), 1, + STATE(5466), 1, aux_sym_string_repeat1, - ACTIONS(8946), 2, + STATE(5479), 1, + sym_comment, + ACTIONS(8959), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [184871] = 6, + [185716] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(9147), 1, + anon_sym_RBRACK, + STATE(5480), 1, + sym_comment, + [185738] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(9149), 1, + anon_sym_QMARK, + STATE(5481), 1, + sym_comment, + [185760] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8747), 1, + anon_sym_RBRACE, + STATE(5482), 1, + sym_comment, + ACTIONS(5280), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [185778] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9025), 1, anon_sym_with, - STATE(5588), 1, + STATE(5483), 1, sym_comment, - STATE(6550), 1, + STATE(6565), 1, sym_import_attribute, - ACTIONS(9064), 2, + ACTIONS(9151), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184891] = 7, + [185798] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(9066), 1, - anon_sym_class, - STATE(4906), 1, - aux_sym_export_statement_repeat1, - STATE(5589), 1, + ACTIONS(9025), 1, + anon_sym_with, + STATE(5484), 1, sym_comment, - STATE(5733), 1, - sym_decorator, - [184913] = 6, + STATE(6561), 1, + sym_import_attribute, + ACTIONS(9153), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185818] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9025), 1, + anon_sym_with, + ACTIONS(9155), 1, + anon_sym_SEMI, + ACTIONS(9157), 1, + sym__automatic_semicolon, + STATE(5485), 1, + sym_comment, + STATE(6557), 1, + sym_import_attribute, + [185840] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9086), 1, + sym_identifier, + ACTIONS(9088), 1, + anon_sym_const, + ACTIONS(9159), 1, + anon_sym_GT, + STATE(5486), 1, + sym_comment, + STATE(6833), 1, + sym_type_parameter, + [185862] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9161), 1, + sym_escape_sequence, + STATE(5487), 1, + sym_comment, + ACTIONS(9163), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [185880] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, + ACTIONS(8967), 1, anon_sym_COMMA, - STATE(5590), 1, + STATE(5488), 1, sym_comment, - STATE(5649), 1, + STATE(5501), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(9068), 2, + ACTIONS(9166), 2, sym__automatic_semicolon, anon_sym_SEMI, - [184933] = 6, + [185900] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4636), 1, - anon_sym_COLON, - ACTIONS(7235), 1, + ACTIONS(8967), 1, + anon_sym_COMMA, + STATE(5489), 1, + sym_comment, + STATE(5501), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(9168), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [185920] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7394), 1, anon_sym_EQ, - STATE(5591), 1, + STATE(5490), 1, sym_comment, - ACTIONS(9070), 2, + STATE(6688), 1, + sym_default_type, + ACTIONS(9170), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [184953] = 6, + anon_sym_GT, + [185940] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, - anon_sym_COMMA, - STATE(5592), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(5491), 1, sym_comment, - STATE(5650), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9072), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [184973] = 6, - ACTIONS(3), 1, + STATE(6905), 1, + sym_type_parameters, + STATE(7078), 1, + sym_formal_parameters, + [185962] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(9172), 1, + anon_sym_COLON, + STATE(5492), 1, + sym_comment, + [185984] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9074), 1, - anon_sym_SQUOTE, - STATE(5581), 1, - aux_sym_string_repeat2, - STATE(5593), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(4485), 1, + sym_formal_parameters, + STATE(5493), 1, sym_comment, - ACTIONS(8963), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [184993] = 7, + STATE(6702), 1, + sym_type_parameters, + [186006] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, anon_sym_LT, - ACTIONS(7247), 1, + STATE(5494), 1, + sym_comment, + STATE(6913), 1, + sym_type_parameters, + STATE(6980), 1, + sym_formal_parameters, + [186028] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(9174), 1, + anon_sym_RPAREN, + STATE(5495), 1, + sym_comment, + [186050] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9178), 1, + anon_sym_COMMA, + STATE(5463), 1, + aux_sym_extends_clause_repeat1, + STATE(5496), 1, + sym_comment, + ACTIONS(9176), 2, + anon_sym_LBRACE, + anon_sym_implements, + [186070] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5424), 1, anon_sym_LPAREN, - STATE(5594), 1, + ACTIONS(9180), 1, + anon_sym_LT, + STATE(2977), 1, + sym_arguments, + STATE(2979), 1, + sym_type_arguments, + STATE(5497), 1, sym_comment, - STATE(6772), 1, + [186092] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8024), 1, + anon_sym_EQ, + STATE(5498), 1, + sym_comment, + STATE(6739), 1, + sym__initializer, + ACTIONS(9182), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [186112] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(9184), 1, + anon_sym_RBRACK, + STATE(5499), 1, + sym_comment, + [186134] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(5500), 1, + sym_comment, + STATE(6892), 1, sym_type_parameters, - STATE(7321), 1, + STATE(7202), 1, sym_formal_parameters, - [185015] = 7, + [186156] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_with, - ACTIONS(9076), 1, - anon_sym_SEMI, - ACTIONS(9078), 1, + ACTIONS(9186), 1, + anon_sym_COMMA, + ACTIONS(9189), 2, sym__automatic_semicolon, - STATE(5595), 1, + anon_sym_SEMI, + STATE(5501), 2, sym_comment, - STATE(7108), 1, - sym_import_attribute, - [185037] = 6, - ACTIONS(3), 1, + aux_sym_variable_declaration_repeat1, + [186174] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(5502), 1, + sym_comment, + STATE(6877), 1, + sym_type_parameters, + STATE(7243), 1, + sym_formal_parameters, + [186196] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9074), 1, - anon_sym_DQUOTE, - STATE(5582), 1, - aux_sym_string_repeat1, - STATE(5596), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4246), 1, + anon_sym_LPAREN, + ACTIONS(7134), 1, + anon_sym_LT, + STATE(3961), 1, + sym_arguments, + STATE(4080), 1, + sym_type_arguments, + STATE(5503), 1, sym_comment, - ACTIONS(8946), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [185057] = 6, + [186218] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, - anon_sym_COMMA, - STATE(5555), 1, - aux_sym_variable_declaration_repeat1, - STATE(5597), 1, - sym_comment, - ACTIONS(9080), 2, - sym__automatic_semicolon, + ACTIONS(9025), 1, + anon_sym_with, + ACTIONS(9191), 1, anon_sym_SEMI, - [185077] = 6, + ACTIONS(9193), 1, + sym__automatic_semicolon, + STATE(5504), 1, + sym_comment, + STATE(6785), 1, + sym_import_attribute, + [186240] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, + ACTIONS(8967), 1, anon_sym_COMMA, - STATE(5556), 1, + STATE(5501), 1, aux_sym_variable_declaration_repeat1, - STATE(5598), 1, + STATE(5505), 1, sym_comment, - ACTIONS(9082), 2, + ACTIONS(9195), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185097] = 5, + [186260] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9084), 1, + ACTIONS(8967), 1, anon_sym_COMMA, - ACTIONS(5720), 2, + STATE(5501), 1, + aux_sym_variable_declaration_repeat1, + STATE(5506), 1, + sym_comment, + ACTIONS(9197), 2, sym__automatic_semicolon, anon_sym_SEMI, - STATE(5599), 2, - sym_comment, - aux_sym_sequence_expression_repeat1, - [185115] = 6, + [186280] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(9025), 1, anon_sym_with, - STATE(5600), 1, + ACTIONS(9199), 1, + anon_sym_SEMI, + ACTIONS(9201), 1, + sym__automatic_semicolon, + STATE(5507), 1, sym_comment, - STATE(6679), 1, + STATE(6700), 1, sym_import_attribute, - ACTIONS(9087), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185135] = 6, + [186302] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(9025), 1, anon_sym_with, - STATE(5601), 1, + STATE(5508), 1, sym_comment, - STATE(6860), 1, + STATE(6704), 1, sym_import_attribute, - ACTIONS(9089), 2, + ACTIONS(9203), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185155] = 6, + [186322] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(9025), 1, anon_sym_with, - STATE(5602), 1, + STATE(5509), 1, sym_comment, - STATE(6859), 1, + STATE(6705), 1, sym_import_attribute, - ACTIONS(9091), 2, + ACTIONS(9205), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185175] = 6, + [186342] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, - anon_sym_COMMA, - STATE(5603), 1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(9207), 1, + anon_sym_RPAREN, + STATE(5510), 1, sym_comment, - STATE(5671), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9093), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185195] = 6, + [186364] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, - anon_sym_COMMA, - STATE(5604), 1, + ACTIONS(4640), 1, + anon_sym_COLON, + ACTIONS(7258), 1, + anon_sym_EQ, + STATE(5511), 1, sym_comment, - STATE(5672), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9095), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185215] = 6, + ACTIONS(9209), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [186384] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(8965), 1, - anon_sym_with, - STATE(5605), 1, + anon_sym_from, + STATE(5512), 1, sym_comment, - STATE(6682), 1, - sym_import_attribute, - ACTIONS(9097), 2, + STATE(6743), 1, + sym__from_clause, + ACTIONS(6035), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185235] = 7, + [186404] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(9099), 1, - anon_sym_export, - STATE(4906), 1, - aux_sym_export_statement_repeat1, - STATE(5606), 1, - sym_comment, - STATE(5733), 1, - sym_decorator, - [185257] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9101), 1, - anon_sym_DQUOTE, - STATE(5607), 1, + ACTIONS(9025), 1, + anon_sym_with, + ACTIONS(9211), 1, + anon_sym_SEMI, + ACTIONS(9213), 1, + sym__automatic_semicolon, + STATE(5513), 1, sym_comment, - STATE(5635), 1, - aux_sym_string_repeat1, - ACTIONS(8946), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [185277] = 6, + STATE(6926), 1, + sym_import_attribute, + [186426] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(5608), 1, - sym_comment, - STATE(6689), 1, - sym__from_clause, - ACTIONS(9103), 2, + ACTIONS(9215), 1, + anon_sym_COMMA, + ACTIONS(5603), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185297] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9101), 1, - anon_sym_SQUOTE, - STATE(5609), 1, + STATE(5514), 2, sym_comment, - STATE(5634), 1, - aux_sym_string_repeat2, - ACTIONS(8963), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [185317] = 7, + aux_sym_sequence_expression_repeat1, + [186444] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9105), 1, + ACTIONS(9218), 1, sym_identifier, - STATE(4908), 1, + STATE(4732), 1, sym_nested_type_identifier, - STATE(5529), 1, + STATE(5475), 1, sym_generic_type, - STATE(5610), 1, + STATE(5515), 1, sym_comment, - STATE(7136), 1, + STATE(6953), 1, sym_nested_identifier, - [185339] = 4, + [186466] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5611), 1, + STATE(5516), 1, sym_comment, - ACTIONS(9107), 4, + ACTIONS(9220), 4, anon_sym_export, anon_sym_class, anon_sym_AT, anon_sym_abstract, - [185355] = 7, + [186482] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8975), 1, + ACTIONS(9086), 1, sym_identifier, - ACTIONS(8977), 1, + ACTIONS(9088), 1, anon_sym_const, - ACTIONS(9109), 1, + ACTIONS(9222), 1, anon_sym_GT, - STATE(5612), 1, + STATE(5517), 1, sym_comment, - STATE(7017), 1, + STATE(6833), 1, sym_type_parameter, - [185377] = 7, + [186504] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(5613), 1, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(5518), 1, sym_comment, - STATE(7025), 1, + STATE(6841), 1, sym_type_parameters, - STATE(7193), 1, + STATE(7010), 1, sym_formal_parameters, - [185399] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5614), 1, - sym_comment, - ACTIONS(3265), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(9111), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185417] = 5, + [186526] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9115), 1, - anon_sym_COMMA, - ACTIONS(9113), 2, - anon_sym_LBRACE, - anon_sym_implements, - STATE(5615), 2, - sym_comment, - aux_sym_extends_clause_repeat1, - [185435] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7137), 1, + ACTIONS(7146), 1, anon_sym_AMP, - ACTIONS(7139), 1, + ACTIONS(7148), 1, anon_sym_PIPE, - ACTIONS(7141), 1, + ACTIONS(7150), 1, anon_sym_extends, - ACTIONS(9118), 1, + ACTIONS(9224), 1, anon_sym_QMARK, - STATE(5616), 1, + STATE(5519), 1, sym_comment, - [185457] = 6, + [186548] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7411), 1, + ACTIONS(7394), 1, anon_sym_EQ, - STATE(5617), 1, + STATE(5520), 1, sym_comment, - STATE(7029), 1, + STATE(6843), 1, sym_default_type, - ACTIONS(9120), 2, + ACTIONS(9226), 2, anon_sym_COMMA, anon_sym_GT, - [185477] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [186568] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9122), 1, - anon_sym_DQUOTE, - STATE(5618), 1, - sym_comment, - STATE(5635), 1, - aux_sym_string_repeat1, - ACTIONS(8946), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [185497] = 6, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(9228), 1, + anon_sym_RPAREN, + STATE(5521), 1, + sym_comment, + [186590] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9122), 1, - anon_sym_SQUOTE, - STATE(5619), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(4993), 1, + anon_sym_BQUOTE, + STATE(5522), 1, sym_comment, - STATE(5634), 1, - aux_sym_string_repeat2, - ACTIONS(8963), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [185517] = 7, + STATE(2625), 2, + sym_template_string, + sym_arguments, + [186610] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, + ACTIONS(7146), 1, anon_sym_AMP, - ACTIONS(7139), 1, + ACTIONS(7148), 1, anon_sym_PIPE, - ACTIONS(7141), 1, + ACTIONS(7150), 1, anon_sym_extends, - ACTIONS(9124), 1, + ACTIONS(9230), 1, anon_sym_RPAREN, - STATE(5620), 1, + STATE(5523), 1, sym_comment, - [185539] = 6, + [186632] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8584), 1, - anon_sym_EQ, - STATE(5621), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(7084), 1, + anon_sym_LT, + STATE(3750), 1, + sym_arguments, + STATE(3890), 1, + sym_type_arguments, + STATE(5524), 1, sym_comment, - STATE(6858), 1, - sym__initializer, - ACTIONS(9126), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [185559] = 6, + [186654] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(5622), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(9232), 1, + anon_sym_export, + STATE(4662), 1, + aux_sym_export_statement_repeat1, + STATE(5525), 1, sym_comment, - STATE(6536), 1, - sym__from_clause, - ACTIONS(5971), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [185579] = 7, + STATE(5596), 1, + sym_decorator, + [186676] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(9128), 1, - anon_sym_RBRACK, - STATE(5623), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + ACTIONS(9234), 1, + anon_sym_LT, + STATE(2373), 1, + sym_type_arguments, + STATE(2374), 1, + sym_arguments, + STATE(5526), 1, sym_comment, - [185601] = 6, + [186698] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9008), 1, + ACTIONS(9178), 1, anon_sym_COMMA, - STATE(5554), 1, + STATE(5496), 1, aux_sym_extends_clause_repeat1, - STATE(5624), 1, + STATE(5527), 1, sym_comment, - ACTIONS(9130), 2, + ACTIONS(9236), 2, anon_sym_LBRACE, anon_sym_implements, - [185621] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9132), 1, - anon_sym_SQUOTE, - STATE(5586), 1, - aux_sym_string_repeat2, - STATE(5625), 1, - sym_comment, - ACTIONS(8963), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [185641] = 4, + [186718] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5626), 1, + STATE(5528), 1, sym_comment, - ACTIONS(6866), 4, + ACTIONS(6885), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [185657] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9132), 1, - anon_sym_DQUOTE, - STATE(5587), 1, - aux_sym_string_repeat1, - STATE(5627), 1, - sym_comment, - ACTIONS(8946), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [185677] = 6, + [186734] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9134), 1, + ACTIONS(9238), 1, anon_sym_SQUOTE, - STATE(5628), 1, - sym_comment, - STATE(5634), 1, - aux_sym_string_repeat2, - ACTIONS(8963), 2, + ACTIONS(9240), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [185697] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8975), 1, - sym_identifier, - ACTIONS(8977), 1, - anon_sym_const, - ACTIONS(9136), 1, - anon_sym_GT, - STATE(5629), 1, + STATE(5529), 2, sym_comment, - STATE(7017), 1, - sym_type_parameter, - [185719] = 6, + aux_sym_string_repeat2, + [186752] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9134), 1, + ACTIONS(9243), 1, anon_sym_DQUOTE, - STATE(5630), 1, - sym_comment, - STATE(5635), 1, - aux_sym_string_repeat1, - ACTIONS(8946), 2, + ACTIONS(9245), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [185739] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9138), 1, - anon_sym_LBRACE, - ACTIONS(9140), 1, - anon_sym_COMMA, - ACTIONS(9143), 1, - anon_sym_LBRACE_PIPE, - STATE(5631), 2, + STATE(5530), 2, sym_comment, - aux_sym_extends_type_clause_repeat1, - [185759] = 7, + aux_sym_string_repeat1, + [186770] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(9145), 1, - anon_sym_RBRACK, - STATE(5632), 1, + ACTIONS(8967), 1, + anon_sym_COMMA, + STATE(5501), 1, + aux_sym_variable_declaration_repeat1, + STATE(5531), 1, sym_comment, - [185781] = 7, + ACTIONS(9248), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186790] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8131), 1, + ACTIONS(7923), 1, anon_sym_DOT, - ACTIONS(9147), 1, + ACTIONS(9250), 1, anon_sym_COMMA, - ACTIONS(9149), 1, + ACTIONS(9252), 1, anon_sym_GT, - STATE(5633), 1, + STATE(5532), 1, sym_comment, - STATE(6258), 1, + STATE(5920), 1, aux_sym_type_arguments_repeat1, - [185803] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9151), 1, - anon_sym_SQUOTE, - ACTIONS(9153), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - STATE(5634), 2, - sym_comment, - aux_sym_string_repeat2, - [185821] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9156), 1, - anon_sym_DQUOTE, - ACTIONS(9158), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - STATE(5635), 2, - sym_comment, - aux_sym_string_repeat1, - [185839] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9161), 1, - anon_sym_SQUOTE, - STATE(5628), 1, - aux_sym_string_repeat2, - STATE(5636), 1, - sym_comment, - ACTIONS(8963), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [185859] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9161), 1, - anon_sym_DQUOTE, - STATE(5630), 1, - aux_sym_string_repeat1, - STATE(5637), 1, - sym_comment, - ACTIONS(8946), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [185879] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(9163), 1, - anon_sym_RPAREN, - STATE(5638), 1, - sym_comment, - [185901] = 7, + [186812] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(2787), 1, - anon_sym_AT, - ACTIONS(9165), 1, - anon_sym_class, - STATE(4906), 1, - aux_sym_export_statement_repeat1, - STATE(5639), 1, + ACTIONS(8967), 1, + anon_sym_COMMA, + STATE(5501), 1, + aux_sym_variable_declaration_repeat1, + STATE(5533), 1, sym_comment, - STATE(5733), 1, - sym_decorator, - [185923] = 6, + ACTIONS(9254), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [186832] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7990), 1, + ACTIONS(8024), 1, anon_sym_EQ, - STATE(5640), 1, + STATE(5534), 1, sym_comment, - STATE(7105), 1, + STATE(6932), 1, sym__initializer, - ACTIONS(9167), 2, + ACTIONS(9256), 2, anon_sym_COMMA, anon_sym_RPAREN, - [185943] = 7, + [186852] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5411), 1, - anon_sym_LPAREN, - ACTIONS(9169), 1, - anon_sym_LT, - STATE(3069), 1, - sym_arguments, - STATE(3070), 1, - sym_type_arguments, - STATE(5641), 1, + ACTIONS(9025), 1, + anon_sym_with, + ACTIONS(9258), 1, + anon_sym_SEMI, + ACTIONS(9260), 1, + sym__automatic_semicolon, + STATE(5535), 1, sym_comment, - [185965] = 6, + STATE(6837), 1, + sym_import_attribute, + [186874] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(9025), 1, anon_sym_with, - STATE(5642), 1, + STATE(5536), 1, sym_comment, - STATE(6532), 1, + STATE(6832), 1, sym_import_attribute, - ACTIONS(9171), 2, + ACTIONS(9262), 2, sym__automatic_semicolon, anon_sym_SEMI, - [185985] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9173), 1, - anon_sym_STAR, - ACTIONS(9175), 1, - anon_sym_LBRACE, - STATE(5643), 1, - sym_comment, - STATE(7149), 2, - sym_namespace_import, - sym_named_imports, - [186005] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8131), 1, - anon_sym_DOT, - ACTIONS(9177), 1, - anon_sym_COMMA, - ACTIONS(9179), 1, - anon_sym_GT, - STATE(5644), 1, - sym_comment, - STATE(5817), 1, - aux_sym_type_arguments_repeat1, - [186027] = 6, + [186894] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(9025), 1, anon_sym_with, - STATE(5645), 1, + STATE(5537), 1, sym_comment, - STATE(6531), 1, + STATE(6829), 1, sym_import_attribute, - ACTIONS(9181), 2, + ACTIONS(9264), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186047] = 6, + [186914] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, - anon_sym_COMMA, - STATE(5525), 1, - aux_sym_variable_declaration_repeat1, - STATE(5646), 1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(5538), 1, sym_comment, - ACTIONS(9183), 2, + STATE(6765), 1, + sym__from_clause, + ACTIONS(5650), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186067] = 7, + [186934] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_with, - ACTIONS(9185), 1, - anon_sym_SEMI, - ACTIONS(9187), 1, - sym__automatic_semicolon, - STATE(5647), 1, + ACTIONS(9266), 1, + anon_sym_STAR, + ACTIONS(9268), 1, + anon_sym_LBRACE, + STATE(5539), 1, sym_comment, - STATE(6530), 1, - sym_import_attribute, - [186089] = 6, + STATE(6966), 2, + sym_namespace_import, + sym_named_imports, + [186954] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, + ACTIONS(8967), 1, anon_sym_COMMA, - STATE(5525), 1, + STATE(5501), 1, aux_sym_variable_declaration_repeat1, - STATE(5648), 1, + STATE(5540), 1, sym_comment, - ACTIONS(9189), 2, + ACTIONS(9270), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186109] = 6, + [186974] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, + ACTIONS(7923), 1, + anon_sym_DOT, + ACTIONS(9272), 1, anon_sym_COMMA, - STATE(5525), 1, - aux_sym_variable_declaration_repeat1, - STATE(5649), 1, + ACTIONS(9274), 1, + anon_sym_GT, + STATE(5541), 1, sym_comment, - ACTIONS(9191), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186129] = 6, + STATE(5822), 1, + aux_sym_type_arguments_repeat1, + [186996] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, + ACTIONS(8967), 1, anon_sym_COMMA, - STATE(5525), 1, + STATE(5501), 1, aux_sym_variable_declaration_repeat1, - STATE(5650), 1, + STATE(5542), 1, sym_comment, - ACTIONS(9193), 2, + ACTIONS(9276), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186149] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(9195), 1, - anon_sym_COLON, - STATE(5651), 1, - sym_comment, - [186171] = 7, + [187016] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(9025), 1, anon_sym_with, - ACTIONS(9197), 1, + ACTIONS(9278), 1, anon_sym_SEMI, - ACTIONS(9199), 1, + ACTIONS(9280), 1, sym__automatic_semicolon, - STATE(5652), 1, + STATE(5543), 1, sym_comment, - STATE(7060), 1, + STATE(6883), 1, sym_import_attribute, - [186193] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(7211), 1, - anon_sym_LT, - STATE(4235), 1, - sym_arguments, - STATE(4477), 1, - sym_type_arguments, - STATE(5653), 1, - sym_comment, - [186215] = 6, + [187038] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(9025), 1, anon_sym_with, - STATE(5654), 1, + STATE(5544), 1, sym_comment, - STATE(7036), 1, + STATE(6853), 1, sym_import_attribute, - ACTIONS(9201), 2, + ACTIONS(9282), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186235] = 6, + [187058] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(9025), 1, anon_sym_with, - STATE(5655), 1, + STATE(5545), 1, sym_comment, - STATE(7035), 1, + STATE(6852), 1, sym_import_attribute, - ACTIONS(9203), 2, + ACTIONS(9284), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186255] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [187078] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, - anon_sym_COMMA, - STATE(5525), 1, - aux_sym_variable_declaration_repeat1, - STATE(5656), 1, - sym_comment, - ACTIONS(9205), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186275] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(5657), 1, + ACTIONS(9286), 1, + anon_sym_SQUOTE, + STATE(5529), 1, + aux_sym_string_repeat2, + STATE(5546), 1, sym_comment, - STATE(6820), 1, - sym__from_clause, - ACTIONS(6032), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186295] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(8961), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [187098] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, - anon_sym_COMMA, - STATE(5525), 1, - aux_sym_variable_declaration_repeat1, - STATE(5658), 1, - sym_comment, - ACTIONS(9207), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186315] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(9209), 1, - anon_sym_RPAREN, - STATE(5659), 1, + ACTIONS(9286), 1, + anon_sym_DQUOTE, + STATE(5530), 1, + aux_sym_string_repeat1, + STATE(5547), 1, sym_comment, - [186337] = 7, + ACTIONS(8959), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [187118] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(9025), 1, anon_sym_with, - ACTIONS(9211), 1, + ACTIONS(9288), 1, anon_sym_SEMI, - ACTIONS(9213), 1, + ACTIONS(9290), 1, sym__automatic_semicolon, - STATE(5660), 1, + STATE(5548), 1, sym_comment, - STATE(6914), 1, + STATE(6435), 1, sym_import_attribute, - [186359] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9215), 1, - sym_identifier, - STATE(5273), 1, - sym_nested_type_identifier, - STATE(5661), 1, - sym_comment, - STATE(5880), 1, - sym_generic_type, - STATE(7136), 1, - sym_nested_identifier, - [186381] = 7, + [187140] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8054), 1, + ACTIONS(9292), 1, + anon_sym_EQ, + ACTIONS(9294), 1, anon_sym_COMMA, - ACTIONS(9217), 1, - anon_sym_LBRACE, - ACTIONS(9219), 1, - anon_sym_LBRACE_PIPE, - STATE(5631), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5662), 1, + ACTIONS(9296), 1, + anon_sym_RBRACK, + STATE(5549), 1, sym_comment, - [186403] = 7, + STATE(5887), 1, + aux_sym_array_pattern_repeat1, + [187162] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8054), 1, - anon_sym_COMMA, - ACTIONS(9221), 1, - anon_sym_LBRACE, - ACTIONS(9223), 1, - anon_sym_LBRACE_PIPE, - STATE(5631), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5663), 1, + ACTIONS(9298), 1, + anon_sym_EQ_GT, + STATE(5550), 1, sym_comment, - [186425] = 6, + ACTIONS(4640), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [187180] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_with, - STATE(5664), 1, + ACTIONS(9300), 1, + anon_sym_EQ_GT, + STATE(5551), 1, sym_comment, - STATE(6913), 1, - sym_import_attribute, - ACTIONS(9225), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186445] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(4640), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [187198] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_with, - STATE(5665), 1, - sym_comment, - STATE(6912), 1, - sym_import_attribute, - ACTIONS(9227), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186465] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_with, - STATE(5666), 1, + ACTIONS(9302), 1, + anon_sym_SQUOTE, + STATE(5529), 1, + aux_sym_string_repeat2, + STATE(5552), 1, sym_comment, - STATE(6817), 1, - sym_import_attribute, - ACTIONS(9229), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186485] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(8961), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [187218] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_with, - STATE(5667), 1, - sym_comment, - STATE(6816), 1, - sym_import_attribute, - ACTIONS(9231), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [186505] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_with, - ACTIONS(9233), 1, - anon_sym_SEMI, - ACTIONS(9235), 1, - sym__automatic_semicolon, - STATE(5668), 1, + ACTIONS(9302), 1, + anon_sym_DQUOTE, + STATE(5530), 1, + aux_sym_string_repeat1, + STATE(5553), 1, sym_comment, - STATE(6815), 1, - sym_import_attribute, - [186527] = 7, + ACTIONS(8959), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [187238] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8054), 1, - anon_sym_COMMA, - ACTIONS(9221), 1, - anon_sym_LBRACE, - ACTIONS(9223), 1, - anon_sym_LBRACE_PIPE, - STATE(5631), 1, - aux_sym_extends_type_clause_repeat1, - STATE(5669), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + ACTIONS(7254), 1, + anon_sym_LT, + STATE(5554), 1, sym_comment, - [186549] = 5, + STATE(6692), 1, + sym_type_parameters, + STATE(7107), 1, + sym_formal_parameters, + [187260] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9237), 1, - anon_sym_EQ_GT, - STATE(5670), 1, + STATE(5555), 1, sym_comment, - ACTIONS(4636), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [186567] = 6, + ACTIONS(9304), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + [187276] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, + ACTIONS(8967), 1, anon_sym_COMMA, - STATE(5525), 1, + STATE(5531), 1, aux_sym_variable_declaration_repeat1, - STATE(5671), 1, + STATE(5556), 1, sym_comment, - ACTIONS(9239), 2, + ACTIONS(9306), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186587] = 6, + [187296] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, + ACTIONS(8967), 1, anon_sym_COMMA, - STATE(5525), 1, + STATE(5533), 1, aux_sym_variable_declaration_repeat1, - STATE(5672), 1, + STATE(5557), 1, sym_comment, - ACTIONS(9241), 2, + ACTIONS(9308), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186607] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9243), 1, - anon_sym_EQ_GT, - STATE(5673), 1, - sym_comment, - ACTIONS(4636), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [186625] = 7, + [187316] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, ACTIONS(8965), 1, - anon_sym_with, - ACTIONS(9245), 1, - anon_sym_SEMI, - ACTIONS(9247), 1, - sym__automatic_semicolon, - STATE(5674), 1, - sym_comment, - STATE(6508), 1, - sym_import_attribute, - [186647] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9030), 1, anon_sym_from, - STATE(5675), 1, + STATE(5558), 1, sym_comment, - STATE(6878), 1, + STATE(6756), 1, sym__from_clause, - ACTIONS(5929), 2, + ACTIONS(5591), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186667] = 7, + [187336] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(5676), 1, + ACTIONS(9025), 1, + anon_sym_with, + STATE(5559), 1, sym_comment, - STATE(6823), 1, - sym_type_parameters, - STATE(7290), 1, - sym_formal_parameters, - [186689] = 4, + STATE(6693), 1, + sym_import_attribute, + ACTIONS(9310), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187356] = 7, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5677), 1, + ACTIONS(9001), 1, + sym__glimmer_template_content, + ACTIONS(9312), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(3089), 1, + sym_glimmer_closing_tag, + STATE(5560), 1, sym_comment, - ACTIONS(9249), 4, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - [186705] = 6, + STATE(5816), 1, + aux_sym_glimmer_template_repeat1, + [187378] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, - anon_sym_COMMA, - STATE(5525), 1, - aux_sym_variable_declaration_repeat1, - STATE(5678), 1, + ACTIONS(9025), 1, + anon_sym_with, + STATE(5561), 1, sym_comment, - ACTIONS(9251), 2, + STATE(6691), 1, + sym_import_attribute, + ACTIONS(9314), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186725] = 6, + [187398] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, + ACTIONS(8967), 1, anon_sym_COMMA, - STATE(5525), 1, + STATE(5505), 1, aux_sym_variable_declaration_repeat1, - STATE(5679), 1, + STATE(5562), 1, sym_comment, - ACTIONS(9253), 2, + ACTIONS(9316), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186745] = 7, + [187418] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8131), 1, - anon_sym_DOT, - ACTIONS(9255), 1, + ACTIONS(8967), 1, anon_sym_COMMA, - ACTIONS(9257), 1, - anon_sym_GT, - STATE(5680), 1, + STATE(5506), 1, + aux_sym_variable_declaration_repeat1, + STATE(5563), 1, sym_comment, - STATE(6261), 1, - aux_sym_type_arguments_repeat1, - [186767] = 6, + ACTIONS(9318), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187438] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - ACTIONS(4989), 1, - anon_sym_BQUOTE, - STATE(5681), 1, + ACTIONS(9025), 1, + anon_sym_with, + STATE(5564), 1, sym_comment, - STATE(2609), 2, - sym_template_string, - sym_arguments, - [186787] = 6, + STATE(6844), 1, + sym_import_attribute, + ACTIONS(9320), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187458] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, + ACTIONS(8965), 1, anon_sym_from, - STATE(5682), 1, + STATE(5565), 1, sym_comment, - STATE(6905), 1, + STATE(6630), 1, sym__from_clause, - ACTIONS(5552), 2, + ACTIONS(9322), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186807] = 7, + [187478] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(9259), 1, - anon_sym_COLON, - STATE(5683), 1, - sym_comment, - [186829] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8950), 1, - sym__glimmer_template_content, - ACTIONS(9261), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(3290), 1, - sym_glimmer_closing_tag, - STATE(5684), 1, + ACTIONS(9025), 1, + anon_sym_with, + STATE(5566), 1, sym_comment, - STATE(6179), 1, - aux_sym_glimmer_template_repeat1, - [186851] = 6, + STATE(6840), 1, + sym_import_attribute, + ACTIONS(9324), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [187498] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5472), 1, + ACTIONS(5420), 1, anon_sym_COMMA, - STATE(5599), 1, + STATE(5514), 1, aux_sym_sequence_expression_repeat1, - STATE(5685), 1, + STATE(5567), 1, sym_comment, - ACTIONS(8762), 2, + ACTIONS(8663), 2, sym__automatic_semicolon, anon_sym_SEMI, - [186871] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4242), 1, - anon_sym_LPAREN, - ACTIONS(7121), 1, - anon_sym_LT, - STATE(4096), 1, - sym_arguments, - STATE(4259), 1, - sym_type_arguments, - STATE(5686), 1, - sym_comment, - [186893] = 6, + [187518] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5411), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - ACTIONS(5447), 1, + ACTIONS(5466), 1, anon_sym_BQUOTE, - STATE(5687), 1, + STATE(5568), 1, sym_comment, - STATE(3230), 2, + STATE(3115), 2, sym_template_string, sym_arguments, - [186913] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(9263), 1, - anon_sym_RBRACK, - STATE(5688), 1, - sym_comment, - [186935] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8944), 1, - anon_sym_SQUOTE, - STATE(5634), 1, - aux_sym_string_repeat2, - STATE(5689), 1, - sym_comment, - ACTIONS(8963), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [186955] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8131), 1, - anon_sym_DOT, - ACTIONS(9265), 1, - anon_sym_COMMA, - ACTIONS(9267), 1, - anon_sym_GT, - STATE(5690), 1, - sym_comment, - STATE(6205), 1, - aux_sym_type_arguments_repeat1, - [186977] = 4, + [187538] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5691), 1, + STATE(5569), 1, sym_comment, - ACTIONS(8034), 4, + ACTIONS(8137), 4, anon_sym_export, anon_sym_class, anon_sym_AT, anon_sym_abstract, - [186993] = 4, + [187554] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5692), 1, + STATE(5570), 1, sym_comment, - ACTIONS(8989), 4, + ACTIONS(9161), 4, sym__template_chars, sym_escape_sequence, anon_sym_BQUOTE, anon_sym_DOLLAR_LBRACE, - [187009] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(9269), 1, - anon_sym_RPAREN, - STATE(5693), 1, - sym_comment, - [187031] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(9271), 1, - anon_sym_RBRACK, - STATE(5694), 1, - sym_comment, - [187053] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8131), 1, - anon_sym_DOT, - ACTIONS(9273), 1, - anon_sym_COMMA, - ACTIONS(9275), 1, - anon_sym_GT, - STATE(5695), 1, - sym_comment, - STATE(6188), 1, - aux_sym_type_arguments_repeat1, - [187075] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9010), 1, - anon_sym_COMMA, - STATE(5678), 1, - aux_sym_variable_declaration_repeat1, - STATE(5696), 1, - sym_comment, - ACTIONS(9277), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187095] = 6, + [187570] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9279), 1, + ACTIONS(9326), 1, anon_sym_SQUOTE, - STATE(5634), 1, + STATE(5552), 1, aux_sym_string_repeat2, - STATE(5697), 1, + STATE(5571), 1, sym_comment, - ACTIONS(8963), 2, + ACTIONS(8961), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [187115] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(9281), 1, - anon_sym_RBRACK, - STATE(5698), 1, - sym_comment, - [187137] = 6, + [187590] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, - anon_sym_COMMA, - STATE(5679), 1, - aux_sym_variable_declaration_repeat1, - STATE(5699), 1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(5572), 1, sym_comment, - ACTIONS(9283), 2, + STATE(6780), 1, + sym__from_clause, + ACTIONS(9328), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187157] = 6, + [187610] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9279), 1, + ACTIONS(9326), 1, anon_sym_DQUOTE, - STATE(5635), 1, + STATE(5553), 1, aux_sym_string_repeat1, - STATE(5700), 1, + STATE(5573), 1, sym_comment, - ACTIONS(8946), 2, + ACTIONS(8959), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [187177] = 6, + [187630] = 7, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7923), 1, + anon_sym_DOT, + ACTIONS(9330), 1, + anon_sym_COMMA, + ACTIONS(9332), 1, + anon_sym_GT, + STATE(5574), 1, + sym_comment, + STATE(5797), 1, + aux_sym_type_arguments_repeat1, + [187652] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9285), 1, + ACTIONS(9334), 1, anon_sym_SQUOTE, - STATE(5689), 1, + STATE(5529), 1, aux_sym_string_repeat2, - STATE(5701), 1, + STATE(5575), 1, sym_comment, - ACTIONS(8963), 2, + ACTIONS(8961), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [187197] = 6, + [187672] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9285), 1, - anon_sym_DQUOTE, - STATE(5520), 1, - aux_sym_string_repeat1, - STATE(5702), 1, + ACTIONS(9001), 1, + sym__glimmer_template_content, + ACTIONS(9003), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(2508), 1, + sym_glimmer_closing_tag, + STATE(5397), 1, + aux_sym_glimmer_template_repeat1, + STATE(5576), 1, sym_comment, - ACTIONS(8946), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [187217] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [187694] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(9287), 1, - anon_sym_EQ, - ACTIONS(9289), 1, - anon_sym_COMMA, - ACTIONS(9291), 1, - anon_sym_RBRACK, - STATE(5703), 1, - sym_comment, - STATE(6212), 1, - aux_sym_array_pattern_repeat1, - [187239] = 7, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(9293), 1, - anon_sym_QMARK, - STATE(5704), 1, + ACTIONS(9334), 1, + anon_sym_DQUOTE, + STATE(5530), 1, + aux_sym_string_repeat1, + STATE(5577), 1, sym_comment, - [187261] = 6, + ACTIONS(8959), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [187714] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9295), 1, + ACTIONS(9336), 1, anon_sym_SQUOTE, - STATE(5634), 1, + STATE(5546), 1, aux_sym_string_repeat2, - STATE(5705), 1, + STATE(5578), 1, sym_comment, - ACTIONS(8963), 2, + ACTIONS(8961), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [187281] = 6, + [187734] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9295), 1, + ACTIONS(9336), 1, anon_sym_DQUOTE, - STATE(5635), 1, + STATE(5547), 1, aux_sym_string_repeat1, - STATE(5706), 1, + STATE(5579), 1, sym_comment, - ACTIONS(8946), 2, + ACTIONS(8959), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [187301] = 7, + [187754] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9287), 1, + ACTIONS(9292), 1, anon_sym_EQ, - ACTIONS(9289), 1, + ACTIONS(9294), 1, anon_sym_COMMA, - ACTIONS(9297), 1, + ACTIONS(9338), 1, anon_sym_RBRACK, - STATE(5707), 1, + STATE(5580), 1, sym_comment, - STATE(6229), 1, + STATE(5774), 1, aux_sym_array_pattern_repeat1, - [187323] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9010), 1, - anon_sym_COMMA, - STATE(5646), 1, - aux_sym_variable_declaration_repeat1, - STATE(5708), 1, - sym_comment, - ACTIONS(9299), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187343] = 7, + [187776] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(5709), 1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(9340), 1, + anon_sym_QMARK, + STATE(5581), 1, sym_comment, - STATE(6793), 1, - sym_type_parameters, - STATE(7160), 1, - sym_formal_parameters, - [187365] = 6, + [187798] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, + ACTIONS(8967), 1, anon_sym_COMMA, - STATE(5648), 1, + STATE(5540), 1, aux_sym_variable_declaration_repeat1, - STATE(5710), 1, + STATE(5582), 1, sym_comment, - ACTIONS(9301), 2, + ACTIONS(9342), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187385] = 6, + [187818] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_with, - STATE(5711), 1, + ACTIONS(8967), 1, + anon_sym_COMMA, + STATE(5542), 1, + aux_sym_variable_declaration_repeat1, + STATE(5583), 1, sym_comment, - STATE(6739), 1, - sym_import_attribute, - ACTIONS(9303), 2, + ACTIONS(9344), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187405] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(9305), 1, - anon_sym_COLON, - STATE(5712), 1, - sym_comment, - [187427] = 6, + [187838] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_with, - STATE(5713), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(5584), 1, sym_comment, - STATE(6734), 1, - sym_import_attribute, - ACTIONS(9307), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187447] = 7, + STATE(6382), 1, + sym_statement_block, + ACTIONS(2130), 2, + anon_sym_else, + anon_sym_while, + [187858] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, + ACTIONS(7146), 1, anon_sym_AMP, - ACTIONS(7139), 1, + ACTIONS(7148), 1, anon_sym_PIPE, - ACTIONS(7141), 1, + ACTIONS(7150), 1, anon_sym_extends, - ACTIONS(9309), 1, - anon_sym_QMARK, - STATE(5714), 1, - sym_comment, - [187469] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9010), 1, - anon_sym_COMMA, - STATE(5525), 1, - aux_sym_variable_declaration_repeat1, - STATE(5715), 1, + ACTIONS(9346), 1, + anon_sym_RBRACK, + STATE(5585), 1, sym_comment, - ACTIONS(9311), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187489] = 6, + [187880] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, - anon_sym_COMMA, - STATE(5656), 1, - aux_sym_variable_declaration_repeat1, - STATE(5716), 1, + ACTIONS(9025), 1, + anon_sym_with, + STATE(5586), 1, sym_comment, - ACTIONS(9313), 2, + STATE(6581), 1, + sym_import_attribute, + ACTIONS(9348), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187509] = 6, + [187900] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, - anon_sym_COMMA, - STATE(5658), 1, - aux_sym_variable_declaration_repeat1, - STATE(5717), 1, + STATE(5587), 1, sym_comment, - ACTIONS(9315), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187529] = 6, + ACTIONS(2168), 4, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_DOT, + [187916] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_with, - STATE(5718), 1, + STATE(5588), 1, sym_comment, - STATE(6711), 1, - sym_import_attribute, - ACTIONS(9317), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187549] = 6, + ACTIONS(2174), 4, + anon_sym_LBRACE, + anon_sym_else, + anon_sym_while, + anon_sym_DOT, + [187932] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8965), 1, + ACTIONS(9025), 1, anon_sym_with, - STATE(5719), 1, + STATE(5589), 1, sym_comment, - STATE(6706), 1, + STATE(6580), 1, sym_import_attribute, - ACTIONS(9319), 2, + ACTIONS(9350), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187569] = 7, + [187952] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, + ACTIONS(7146), 1, anon_sym_AMP, - ACTIONS(7139), 1, + ACTIONS(7148), 1, anon_sym_PIPE, - ACTIONS(7141), 1, + ACTIONS(7150), 1, anon_sym_extends, - ACTIONS(9321), 1, - anon_sym_RBRACK, - STATE(5720), 1, - sym_comment, - [187591] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9323), 1, - anon_sym_DQUOTE, - STATE(5721), 1, - sym_comment, - STATE(5729), 1, - aux_sym_string_repeat1, - ACTIONS(8946), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [187611] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9323), 1, - anon_sym_SQUOTE, - STATE(5722), 1, + ACTIONS(9352), 1, + anon_sym_QMARK, + STATE(5590), 1, sym_comment, - STATE(5732), 1, - aux_sym_string_repeat2, - ACTIONS(8963), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [187631] = 6, + [187974] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(5723), 1, + STATE(5591), 1, sym_comment, - STATE(6449), 1, - sym__from_clause, - ACTIONS(9325), 2, + ACTIONS(3209), 4, sym__automatic_semicolon, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [187651] = 6, + [187990] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, - anon_sym_COMMA, - STATE(5724), 1, + STATE(5592), 1, sym_comment, - STATE(5748), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(9327), 2, + ACTIONS(3215), 4, sym__automatic_semicolon, + anon_sym_else, + anon_sym_while, anon_sym_SEMI, - [187671] = 6, + [188006] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, - anon_sym_COMMA, - STATE(5715), 1, - aux_sym_variable_declaration_repeat1, - STATE(5725), 1, + ACTIONS(2787), 1, + anon_sym_AT, + ACTIONS(9354), 1, + anon_sym_class, + STATE(4662), 1, + aux_sym_export_statement_repeat1, + STATE(5593), 1, sym_comment, - ACTIONS(9329), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187691] = 7, + STATE(5596), 1, + sym_decorator, + [188028] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, + ACTIONS(7146), 1, anon_sym_AMP, - ACTIONS(7139), 1, + ACTIONS(7148), 1, anon_sym_PIPE, - ACTIONS(7141), 1, + ACTIONS(7150), 1, anon_sym_extends, - ACTIONS(9331), 1, + ACTIONS(9356), 1, anon_sym_QMARK, - STATE(5726), 1, - sym_comment, - [187713] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(5727), 1, + STATE(5594), 1, sym_comment, - STATE(6685), 1, - sym__from_clause, - ACTIONS(9333), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [187733] = 6, + [188050] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, + ACTIONS(8965), 1, anon_sym_from, - STATE(5728), 1, + STATE(5595), 1, sym_comment, - STATE(6699), 1, + STATE(6532), 1, sym__from_clause, - ACTIONS(9335), 2, + ACTIONS(9358), 2, sym__automatic_semicolon, anon_sym_SEMI, - [187753] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9337), 1, - anon_sym_DQUOTE, - STATE(5635), 1, - aux_sym_string_repeat1, - STATE(5729), 1, - sym_comment, - ACTIONS(8946), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [187773] = 7, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(8950), 1, - sym__glimmer_template_content, - ACTIONS(8952), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(2779), 1, - sym_glimmer_closing_tag, - STATE(5522), 1, - aux_sym_glimmer_template_repeat1, - STATE(5730), 1, - sym_comment, - [187795] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8965), 1, - anon_sym_with, - ACTIONS(9339), 1, - anon_sym_SEMI, - ACTIONS(9341), 1, - sym__automatic_semicolon, - STATE(5731), 1, - sym_comment, - STATE(6796), 1, - sym_import_attribute, - [187817] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9337), 1, - anon_sym_SQUOTE, - STATE(5634), 1, - aux_sym_string_repeat2, - STATE(5732), 1, - sym_comment, - ACTIONS(8963), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [187837] = 4, + [188070] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5733), 1, + STATE(5596), 1, sym_comment, - ACTIONS(9343), 4, + ACTIONS(9360), 4, anon_sym_export, anon_sym_class, anon_sym_AT, anon_sym_abstract, - [187853] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9345), 1, - anon_sym_SQUOTE, - STATE(5705), 1, - aux_sym_string_repeat2, - STATE(5734), 1, - sym_comment, - ACTIONS(8963), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [187873] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9345), 1, - anon_sym_DQUOTE, - STATE(5706), 1, - aux_sym_string_repeat1, - STATE(5735), 1, - sym_comment, - ACTIONS(8946), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [187893] = 7, + [188086] = 7, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8950), 1, + ACTIONS(9001), 1, sym__glimmer_template_content, - ACTIONS(9261), 1, + ACTIONS(9312), 1, anon_sym_LT_SLASHtemplate_GT, - STATE(3244), 1, + STATE(3091), 1, sym_glimmer_closing_tag, - STATE(5684), 1, + STATE(5560), 1, aux_sym_glimmer_template_repeat1, - STATE(5736), 1, + STATE(5597), 1, sym_comment, - [187915] = 7, + [188108] = 7, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8131), 1, - anon_sym_DOT, - ACTIONS(9347), 1, - anon_sym_COMMA, - ACTIONS(9349), 1, - anon_sym_GT, - STATE(5737), 1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + ACTIONS(9362), 1, + anon_sym_COLON, + STATE(5598), 1, sym_comment, - STATE(6439), 1, - aux_sym_type_arguments_repeat1, - [187937] = 5, + [188130] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9351), 1, + ACTIONS(9364), 1, anon_sym_EQ, - STATE(5738), 1, + STATE(5599), 1, sym_comment, - ACTIONS(4327), 3, + ACTIONS(4369), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RBRACK, - [187955] = 6, + [188148] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9354), 1, + ACTIONS(9367), 1, anon_sym_SQUOTE, - STATE(5697), 1, + STATE(5575), 1, aux_sym_string_repeat2, - STATE(5739), 1, + STATE(5600), 1, sym_comment, - ACTIONS(8963), 2, + ACTIONS(8961), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [187975] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7918), 1, - anon_sym_LBRACE, - STATE(5740), 1, - sym_comment, - STATE(6468), 1, - sym_statement_block, - ACTIONS(2113), 2, - anon_sym_else, - anon_sym_while, - [187995] = 6, + [188168] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9354), 1, + ACTIONS(9367), 1, anon_sym_DQUOTE, - STATE(5700), 1, + STATE(5577), 1, aux_sym_string_repeat1, - STATE(5741), 1, + STATE(5601), 1, sym_comment, - ACTIONS(8946), 2, + ACTIONS(8959), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [188015] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5742), 1, - sym_comment, - ACTIONS(2206), 4, - anon_sym_LBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_DOT, - [188031] = 7, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - ACTIONS(9356), 1, - anon_sym_RBRACK, - STATE(5743), 1, - sym_comment, - [188053] = 4, + [188188] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5744), 1, - sym_comment, - ACTIONS(2276), 4, - anon_sym_LBRACE, - anon_sym_else, - anon_sym_while, - anon_sym_DOT, - [188069] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5745), 1, + STATE(5602), 1, sym_comment, - ACTIONS(3175), 4, + ACTIONS(9369), 3, sym__automatic_semicolon, - anon_sym_else, - anon_sym_while, + anon_sym_COMMA, anon_sym_SEMI, - [188085] = 4, + [188203] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5746), 1, + STATE(5603), 1, sym_comment, - ACTIONS(3165), 4, + ACTIONS(9371), 3, sym__automatic_semicolon, - anon_sym_else, - anon_sym_while, + anon_sym_COMMA, anon_sym_SEMI, - [188101] = 6, + [188218] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(5747), 1, + STATE(5604), 1, sym_comment, - STATE(6450), 1, - sym__from_clause, - ACTIONS(5915), 2, + ACTIONS(9369), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [188121] = 6, + [188233] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9010), 1, - anon_sym_COMMA, - STATE(5525), 1, - aux_sym_variable_declaration_repeat1, - STATE(5748), 1, - sym_comment, - ACTIONS(9358), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [188141] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9360), 1, - sym_identifier, - ACTIONS(9362), 1, - anon_sym_LBRACE, - STATE(5747), 1, - sym_export_clause, - STATE(5749), 1, + ACTIONS(9373), 1, + anon_sym_LPAREN, + ACTIONS(9375), 1, + anon_sym_await, + STATE(89), 1, + sym__for_header, + STATE(5605), 1, sym_comment, - [188160] = 4, + [188252] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5750), 1, + STATE(5606), 1, sym_comment, - ACTIONS(9364), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188175] = 6, + [188267] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9366), 1, + ACTIONS(9379), 1, sym_identifier, - ACTIONS(9368), 1, - anon_sym_LBRACK, - ACTIONS(9370), 1, - sym_private_property_identifier, - STATE(5751), 1, + ACTIONS(9381), 1, + anon_sym_SEMI, + ACTIONS(9383), 1, + sym__automatic_semicolon, + STATE(5607), 1, sym_comment, - [188194] = 6, + [188286] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9372), 1, + ACTIONS(9385), 1, sym_identifier, - ACTIONS(9374), 1, - anon_sym_LBRACK, - ACTIONS(9376), 1, - sym_private_property_identifier, - STATE(5752), 1, + ACTIONS(9387), 1, + anon_sym_SEMI, + ACTIONS(9389), 1, + sym__automatic_semicolon, + STATE(5608), 1, sym_comment, - [188213] = 4, + [188305] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5753), 1, + STATE(5609), 1, sym_comment, - ACTIONS(9378), 3, + ACTIONS(9391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188228] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9380), 1, - sym_identifier, - ACTIONS(9382), 1, - anon_sym_LBRACK, - ACTIONS(9384), 1, - sym_private_property_identifier, - STATE(5754), 1, - sym_comment, - [188247] = 4, + [188320] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5755), 1, + ACTIONS(4471), 1, + anon_sym_LBRACE, + STATE(5610), 1, sym_comment, - ACTIONS(9386), 3, - sym__automatic_semicolon, + ACTIONS(5155), 2, anon_sym_COMMA, - anon_sym_SEMI, - [188262] = 6, + anon_sym_LBRACE_PIPE, + [188337] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9388), 1, + ACTIONS(9393), 1, sym_identifier, - ACTIONS(9390), 1, - anon_sym_LBRACK, - ACTIONS(9392), 1, - sym_private_property_identifier, - STATE(5756), 1, + STATE(4625), 1, + sym_decorator_member_expression, + STATE(5569), 1, + sym_decorator_call_expression, + STATE(5611), 1, sym_comment, - [188281] = 4, + [188356] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5757), 1, + ACTIONS(4475), 1, + anon_sym_LBRACE, + STATE(5612), 1, sym_comment, - ACTIONS(9394), 3, - sym__automatic_semicolon, + ACTIONS(5151), 2, anon_sym_COMMA, - anon_sym_SEMI, - [188296] = 4, + anon_sym_LBRACE_PIPE, + [188373] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5758), 1, + ACTIONS(4477), 1, + anon_sym_LBRACE, + STATE(5613), 1, sym_comment, - ACTIONS(9396), 3, - sym__automatic_semicolon, + ACTIONS(5149), 2, anon_sym_COMMA, - anon_sym_SEMI, - [188311] = 4, + anon_sym_LBRACE_PIPE, + [188390] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5759), 1, + ACTIONS(4494), 1, + anon_sym_LBRACE, + STATE(5614), 1, sym_comment, - ACTIONS(9398), 3, - sym__automatic_semicolon, + ACTIONS(5135), 2, anon_sym_COMMA, - anon_sym_SEMI, - [188326] = 4, + anon_sym_LBRACE_PIPE, + [188407] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5760), 1, + ACTIONS(8965), 1, + anon_sym_from, + ACTIONS(9395), 1, + anon_sym_as, + STATE(5615), 1, sym_comment, - ACTIONS(9398), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188341] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + STATE(6516), 1, + sym__from_clause, + [188426] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(5761), 1, - sym_comment, - ACTIONS(9400), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188356] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9402), 1, - anon_sym_COMMA, - ACTIONS(9404), 1, - anon_sym_RBRACK, - STATE(5762), 1, + ACTIONS(9397), 1, + sym_identifier, + ACTIONS(9399), 1, + anon_sym_LBRACE, + STATE(5558), 1, + sym_export_clause, + STATE(5616), 1, sym_comment, - STATE(5863), 1, - aux_sym_tuple_type_repeat1, - [188375] = 4, + [188445] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5763), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(9401), 1, + anon_sym_EQ, + STATE(5617), 1, sym_comment, - ACTIONS(9406), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188390] = 4, + STATE(7379), 1, + sym_type_parameters, + [188464] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5764), 1, + ACTIONS(4473), 1, + anon_sym_LBRACE, + STATE(5618), 1, sym_comment, - ACTIONS(9408), 3, - sym__automatic_semicolon, + ACTIONS(5153), 2, anon_sym_COMMA, - anon_sym_SEMI, - [188405] = 4, + anon_sym_LBRACE_PIPE, + [188481] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5765), 1, + ACTIONS(4473), 1, + anon_sym_LBRACE, + STATE(5619), 1, sym_comment, - ACTIONS(9394), 3, - sym__automatic_semicolon, + ACTIONS(5153), 2, anon_sym_COMMA, - anon_sym_SEMI, - [188420] = 4, + anon_sym_LBRACE_PIPE, + [188498] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5766), 1, + STATE(5620), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188435] = 4, + [188513] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5767), 1, + ACTIONS(4469), 1, + anon_sym_LBRACE, + STATE(5621), 1, sym_comment, - ACTIONS(9394), 3, - sym__automatic_semicolon, + ACTIONS(5161), 2, anon_sym_COMMA, - anon_sym_SEMI, - [188450] = 4, + anon_sym_LBRACE_PIPE, + [188530] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5768), 1, + ACTIONS(4469), 1, + anon_sym_LBRACE, + STATE(5622), 1, sym_comment, - ACTIONS(9394), 3, - sym__automatic_semicolon, + ACTIONS(5161), 2, anon_sym_COMMA, - anon_sym_SEMI, - [188465] = 4, + anon_sym_LBRACE_PIPE, + [188547] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5769), 1, + STATE(5623), 1, sym_comment, - ACTIONS(9410), 3, + ACTIONS(9391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188480] = 4, + [188562] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5770), 1, - sym_comment, - ACTIONS(9398), 3, - sym__automatic_semicolon, + ACTIONS(9403), 1, anon_sym_COMMA, - anon_sym_SEMI, - [188495] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7972), 1, - anon_sym_LBRACE, - ACTIONS(7978), 1, - anon_sym_LBRACE_PIPE, - STATE(1614), 1, - sym_object_type, - STATE(5771), 1, + ACTIONS(9405), 1, + anon_sym_RBRACE, + STATE(5624), 1, sym_comment, - [188514] = 4, + STATE(6061), 1, + aux_sym_enum_body_repeat1, + [188581] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5772), 1, + STATE(5625), 1, sym_comment, - ACTIONS(9400), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188529] = 6, + [188596] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9412), 1, + ACTIONS(9407), 1, anon_sym_COMMA, - ACTIONS(9414), 1, + ACTIONS(9409), 1, anon_sym_RBRACE, - STATE(5773), 1, + STATE(5626), 1, sym_comment, - STATE(5809), 1, + STATE(6061), 1, aux_sym_enum_body_repeat1, - [188548] = 6, + [188615] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, - anon_sym_COMMA, - ACTIONS(9416), 1, - anon_sym_RPAREN, - STATE(5774), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(9411), 1, + anon_sym_EQ, + STATE(5627), 1, sym_comment, - STATE(6185), 1, - aux_sym_array_repeat1, - [188567] = 4, + STATE(7170), 1, + sym_type_parameters, + [188634] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5775), 1, + ACTIONS(4462), 1, + anon_sym_LBRACE, + STATE(5628), 1, sym_comment, - ACTIONS(9406), 3, - sym__automatic_semicolon, + ACTIONS(5234), 2, anon_sym_COMMA, - anon_sym_SEMI, - [188582] = 4, + anon_sym_LBRACE_PIPE, + [188651] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5776), 1, + STATE(5629), 1, sym_comment, - ACTIONS(9410), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188597] = 4, + [188666] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5777), 1, + ACTIONS(8652), 1, + anon_sym_COMMA, + ACTIONS(9413), 1, + anon_sym_RBRACE, + STATE(5630), 1, sym_comment, - ACTIONS(9398), 3, - sym__automatic_semicolon, + STATE(5741), 1, + aux_sym_object_pattern_repeat1, + [188685] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7948), 1, anon_sym_COMMA, - anon_sym_SEMI, - [188612] = 6, + ACTIONS(9415), 1, + anon_sym_RBRACE, + STATE(5631), 1, + sym_comment, + STATE(5743), 1, + aux_sym_object_repeat1, + [188704] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(9418), 1, - anon_sym_RPAREN, - STATE(5778), 1, + ACTIONS(8652), 1, + anon_sym_COMMA, + ACTIONS(9413), 1, + anon_sym_RBRACE, + STATE(5632), 1, sym_comment, - STATE(7295), 1, - sym_type_annotation, - [188631] = 4, + STATE(5747), 1, + aux_sym_object_pattern_repeat1, + [188723] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5779), 1, + STATE(5633), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188646] = 4, + [188738] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5780), 1, + ACTIONS(9417), 1, + anon_sym_EQ, + STATE(5634), 1, sym_comment, - ACTIONS(9398), 3, - sym__automatic_semicolon, + ACTIONS(9419), 2, anon_sym_COMMA, - anon_sym_SEMI, - [188661] = 4, + anon_sym_from, + [188755] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5781), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(9421), 1, + anon_sym_EQ, + STATE(5635), 1, sym_comment, - ACTIONS(9394), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188676] = 4, + STATE(7357), 1, + sym_type_parameters, + [188774] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5782), 1, + ACTIONS(4460), 1, + anon_sym_LBRACE, + STATE(5636), 1, sym_comment, - ACTIONS(9394), 3, - sym__automatic_semicolon, + ACTIONS(5236), 2, anon_sym_COMMA, - anon_sym_SEMI, - [188691] = 4, + anon_sym_LBRACE_PIPE, + [188791] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5783), 1, + ACTIONS(5244), 1, + anon_sym_LBRACE, + STATE(5637), 1, sym_comment, - ACTIONS(9408), 3, - sym__automatic_semicolon, + ACTIONS(5246), 2, anon_sym_COMMA, - anon_sym_SEMI, - [188706] = 5, + anon_sym_LBRACE_PIPE, + [188808] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7868), 1, - anon_sym_DOT, - STATE(5784), 1, + ACTIONS(5296), 1, + anon_sym_LBRACE, + STATE(5638), 1, sym_comment, - ACTIONS(9420), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [188723] = 4, + ACTIONS(5298), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [188825] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5785), 1, + ACTIONS(9423), 1, + anon_sym_EQ, + STATE(5639), 1, sym_comment, - ACTIONS(9398), 3, - sym__automatic_semicolon, + ACTIONS(9419), 2, anon_sym_COMMA, - anon_sym_SEMI, - [188738] = 5, + anon_sym_from, + [188842] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7870), 1, - anon_sym_DOT, - STATE(5786), 1, + ACTIONS(9425), 1, + anon_sym_LPAREN, + ACTIONS(9427), 1, + anon_sym_await, + STATE(76), 1, + sym__for_header, + STATE(5640), 1, sym_comment, - ACTIONS(9420), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [188755] = 4, + [188861] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5787), 1, + ACTIONS(9429), 1, + anon_sym_EQ, + STATE(5641), 1, sym_comment, - ACTIONS(9422), 3, - sym__automatic_semicolon, + ACTIONS(9419), 2, anon_sym_COMMA, - anon_sym_SEMI, - [188770] = 4, + anon_sym_from, + [188878] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5788), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(9431), 1, + anon_sym_EQ, + STATE(5642), 1, sym_comment, - ACTIONS(9398), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188785] = 4, + STATE(7329), 1, + sym_type_parameters, + [188897] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5789), 1, + STATE(5643), 1, sym_comment, - ACTIONS(9400), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [188800] = 4, + ACTIONS(7966), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [188912] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5790), 1, - sym_comment, - ACTIONS(9378), 3, - sym__automatic_semicolon, + ACTIONS(9433), 1, anon_sym_COMMA, + ACTIONS(9435), 1, + anon_sym_RPAREN, + STATE(5644), 1, + sym_comment, + STATE(5765), 1, + aux_sym_formal_parameters_repeat1, + [188931] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9437), 1, + sym_identifier, + ACTIONS(9439), 1, anon_sym_SEMI, - [188815] = 4, + ACTIONS(9441), 1, + sym__automatic_semicolon, + STATE(5645), 1, + sym_comment, + [188950] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5791), 1, + STATE(5646), 1, sym_comment, - ACTIONS(9400), 3, + ACTIONS(9443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188830] = 4, + [188965] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5792), 1, + STATE(5647), 1, sym_comment, - ACTIONS(9378), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188845] = 4, + [188980] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9445), 1, + sym_identifier, + ACTIONS(9447), 1, + anon_sym_SEMI, + ACTIONS(9449), 1, + sym__automatic_semicolon, + STATE(5648), 1, + sym_comment, + [188999] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5793), 1, - sym_comment, - ACTIONS(9410), 3, - sym__automatic_semicolon, + ACTIONS(7948), 1, anon_sym_COMMA, - anon_sym_SEMI, - [188860] = 4, + ACTIONS(9415), 1, + anon_sym_RBRACE, + STATE(5649), 1, + sym_comment, + STATE(5746), 1, + aux_sym_object_repeat1, + [189018] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5794), 1, + STATE(5650), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9451), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188875] = 4, + [189033] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5795), 1, + STATE(5651), 1, sym_comment, - ACTIONS(9424), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188890] = 4, + [189048] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5796), 1, + STATE(5652), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9453), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188905] = 4, + [189063] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5797), 1, + STATE(5653), 1, sym_comment, - ACTIONS(9394), 3, + ACTIONS(9455), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188920] = 6, + [189078] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, + ACTIONS(9294), 1, anon_sym_COMMA, - ACTIONS(6036), 1, - anon_sym_RPAREN, - STATE(5798), 1, + ACTIONS(9338), 1, + anon_sym_RBRACK, + STATE(5654), 1, sym_comment, - STATE(6185), 1, - aux_sym_array_repeat1, - [188939] = 4, + STATE(5774), 1, + aux_sym_array_pattern_repeat1, + [189097] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5799), 1, + STATE(5655), 1, sym_comment, - ACTIONS(9424), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [188954] = 6, + [189112] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, + ACTIONS(5982), 1, anon_sym_COMMA, - ACTIONS(6036), 1, - anon_sym_RPAREN, - STATE(5774), 1, - aux_sym_array_repeat1, - STATE(5800), 1, + ACTIONS(5984), 1, + anon_sym_RBRACK, + STATE(5656), 1, sym_comment, - [188973] = 4, + STATE(5772), 1, + aux_sym_array_repeat1, + [189131] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5801), 1, - sym_comment, - ACTIONS(9394), 3, - sym__automatic_semicolon, + ACTIONS(5982), 1, anon_sym_COMMA, - anon_sym_SEMI, - [188988] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5802), 1, + ACTIONS(5984), 1, + anon_sym_RBRACK, + STATE(5657), 1, sym_comment, - ACTIONS(9398), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189003] = 4, + STATE(5775), 1, + aux_sym_array_repeat1, + [189150] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5803), 1, + ACTIONS(9457), 1, + anon_sym_EQ, + STATE(5658), 1, sym_comment, - ACTIONS(9394), 3, - sym__automatic_semicolon, + ACTIONS(4369), 2, anon_sym_COMMA, - anon_sym_SEMI, - [189018] = 6, + anon_sym_RBRACK, + [189167] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7972), 1, - anon_sym_LBRACE, - ACTIONS(7978), 1, - anon_sym_LBRACE_PIPE, - STATE(1299), 1, - sym_object_type, - STATE(5804), 1, + ACTIONS(9294), 1, + anon_sym_COMMA, + ACTIONS(9338), 1, + anon_sym_RBRACK, + STATE(5659), 1, sym_comment, - [189037] = 4, + STATE(5783), 1, + aux_sym_array_pattern_repeat1, + [189186] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5805), 1, + ACTIONS(9460), 1, + anon_sym_EQ, + STATE(5660), 1, sym_comment, - ACTIONS(9426), 3, - sym__automatic_semicolon, + ACTIONS(9419), 2, anon_sym_COMMA, - anon_sym_SEMI, - [189052] = 4, + anon_sym_from, + [189203] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5806), 1, - sym_comment, - ACTIONS(9400), 3, - sym__automatic_semicolon, + ACTIONS(5960), 1, anon_sym_COMMA, - anon_sym_SEMI, - [189067] = 6, + ACTIONS(9462), 1, + anon_sym_RPAREN, + STATE(5661), 1, + sym_comment, + STATE(5801), 1, + aux_sym_array_repeat1, + [189222] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9428), 1, + ACTIONS(9464), 1, anon_sym_COMMA, - ACTIONS(9430), 1, + ACTIONS(9466), 1, anon_sym_RBRACE, - STATE(5807), 1, - sym_comment, - STATE(5896), 1, + STATE(5626), 1, aux_sym_enum_body_repeat1, - [189086] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5808), 1, + STATE(5662), 1, sym_comment, - ACTIONS(9394), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189101] = 6, + [189241] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9432), 1, - anon_sym_COMMA, - ACTIONS(9434), 1, - anon_sym_RBRACE, - STATE(5809), 1, + ACTIONS(8012), 1, + anon_sym_LBRACE, + ACTIONS(8014), 1, + anon_sym_LBRACE_PIPE, + STATE(1298), 1, + sym_object_type, + STATE(5663), 1, sym_comment, - STATE(5896), 1, - aux_sym_enum_body_repeat1, - [189120] = 4, + [189260] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5810), 1, + STATE(5664), 1, sym_comment, - ACTIONS(9410), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189135] = 4, + [189275] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5811), 1, + STATE(5665), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189150] = 4, + [189290] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5812), 1, + STATE(5666), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189165] = 6, + [189305] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9436), 1, - anon_sym_COMMA, - ACTIONS(9438), 1, - anon_sym_GT, - STATE(5813), 1, + STATE(5667), 1, sym_comment, - STATE(6089), 1, - aux_sym_type_arguments_repeat1, - [189184] = 4, + ACTIONS(9468), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189320] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5814), 1, + STATE(5668), 1, sym_comment, - ACTIONS(9410), 3, + ACTIONS(9443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189199] = 4, + [189335] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5815), 1, + STATE(5669), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189214] = 4, + [189350] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5816), 1, + STATE(5670), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189229] = 6, + [189365] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9440), 1, - anon_sym_COMMA, - ACTIONS(9442), 1, - anon_sym_GT, - STATE(5817), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(9472), 1, + anon_sym_EQ, + STATE(5671), 1, sym_comment, - STATE(6089), 1, - aux_sym_type_arguments_repeat1, - [189248] = 4, + STATE(7294), 1, + sym_type_parameters, + [189384] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5818), 1, + ACTIONS(9474), 1, + anon_sym_DQUOTE, + STATE(5672), 1, sym_comment, - ACTIONS(9408), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [189263] = 4, + ACTIONS(9476), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [189401] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5819), 1, + STATE(5673), 1, sym_comment, - ACTIONS(9394), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189278] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9444), 1, - anon_sym_COMMA, - ACTIONS(9446), 1, - anon_sym_GT, - STATE(5820), 1, - sym_comment, - STATE(6089), 1, - aux_sym_type_arguments_repeat1, - [189297] = 6, + [189416] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7462), 1, - anon_sym_AMP, - ACTIONS(7466), 1, - anon_sym_extends, - ACTIONS(8608), 1, - anon_sym_PIPE, - STATE(5821), 1, + STATE(5674), 1, sym_comment, - [189316] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9448), 1, + ACTIONS(9468), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9450), 1, - anon_sym_RBRACK, - STATE(5762), 1, - aux_sym_tuple_type_repeat1, - STATE(5822), 1, - sym_comment, - [189335] = 4, + anon_sym_SEMI, + [189431] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5823), 1, + STATE(5675), 1, sym_comment, - ACTIONS(9394), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189350] = 4, + [189446] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5824), 1, + STATE(5676), 1, sym_comment, - ACTIONS(9400), 3, + ACTIONS(9443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189365] = 4, + [189461] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5825), 1, + STATE(5677), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189380] = 4, + [189476] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5826), 1, + STATE(5678), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189395] = 4, + [189491] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5827), 1, + STATE(5679), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189410] = 4, + [189506] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5828), 1, + STATE(5680), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189425] = 4, + [189521] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5829), 1, + STATE(5681), 1, sym_comment, - ACTIONS(9452), 3, + ACTIONS(9443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189440] = 4, + [189536] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9478), 1, + anon_sym_SQUOTE, + STATE(5682), 1, + sym_comment, + ACTIONS(9480), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [189553] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5830), 1, + STATE(5683), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189455] = 6, + [189568] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9454), 1, + ACTIONS(9086), 1, sym_identifier, - ACTIONS(9456), 1, - anon_sym_require, - STATE(5831), 1, + ACTIONS(9088), 1, + anon_sym_const, + STATE(5684), 1, sym_comment, - STATE(6171), 1, - sym_nested_identifier, - [189474] = 4, + STATE(5700), 1, + sym_type_parameter, + [189587] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5832), 1, + STATE(5685), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189489] = 6, + [189602] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9458), 1, - anon_sym_LBRACE, - ACTIONS(9460), 1, - anon_sym_LPAREN, - STATE(1081), 1, - sym_statement_block, - STATE(5833), 1, + ACTIONS(9482), 1, + anon_sym_COMMA, + ACTIONS(9484), 1, + anon_sym_RBRACK, + STATE(5686), 1, sym_comment, - [189508] = 4, + STATE(6002), 1, + aux_sym_tuple_type_repeat1, + [189621] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5834), 1, + STATE(5687), 1, sym_comment, - ACTIONS(9462), 3, + ACTIONS(9486), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189523] = 4, + [189636] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5835), 1, + STATE(5688), 1, sym_comment, - ACTIONS(9464), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [189538] = 4, + [189651] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5836), 1, + STATE(5689), 1, sym_comment, - ACTIONS(9466), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189553] = 4, + [189666] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5837), 1, + STATE(5690), 1, sym_comment, ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189568] = 6, + [189681] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9470), 1, + STATE(5691), 1, + sym_comment, + ACTIONS(9391), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9472), 1, - anon_sym_RPAREN, - STATE(5838), 1, + anon_sym_SEMI, + [189696] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7575), 1, + anon_sym_implements, + ACTIONS(9488), 1, + anon_sym_LBRACE, + STATE(5692), 1, sym_comment, - STATE(6117), 1, - aux_sym_formal_parameters_repeat1, - [189587] = 4, + STATE(7125), 1, + sym_implements_clause, + [189715] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5839), 1, + STATE(5693), 1, sym_comment, - ACTIONS(9394), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189602] = 6, + [189730] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9474), 1, - anon_sym_COMMA, - ACTIONS(9476), 1, - anon_sym_RBRACE, - STATE(5840), 1, + ACTIONS(9490), 1, + anon_sym_LPAREN, + ACTIONS(9492), 1, + anon_sym_await, + STATE(116), 1, + sym__for_header, + STATE(5694), 1, sym_comment, - STATE(5896), 1, - aux_sym_enum_body_repeat1, - [189621] = 6, + [189749] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9478), 1, - anon_sym_COMMA, - ACTIONS(9480), 1, - anon_sym_RBRACE, - STATE(5841), 1, + STATE(5695), 1, sym_comment, - STATE(5896), 1, - aux_sym_enum_body_repeat1, - [189640] = 6, + ACTIONS(9377), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [189764] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8042), 1, - anon_sym_COMMA, - ACTIONS(9482), 1, - anon_sym_RBRACE, - STATE(5842), 1, + ACTIONS(4282), 1, + anon_sym_LPAREN, + ACTIONS(9494), 1, + anon_sym_DOT, + STATE(4351), 1, + sym_arguments, + STATE(5696), 1, sym_comment, - STATE(6262), 1, - aux_sym_object_repeat1, - [189659] = 6, + [189783] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8042), 1, + ACTIONS(8652), 1, anon_sym_COMMA, - ACTIONS(9484), 1, + ACTIONS(9496), 1, anon_sym_RBRACE, - STATE(5843), 1, + STATE(5697), 1, + sym_comment, + STATE(5842), 1, + aux_sym_object_pattern_repeat1, + [189802] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9498), 1, + sym_identifier, + ACTIONS(9500), 1, + anon_sym_SEMI, + ACTIONS(9502), 1, + sym__automatic_semicolon, + STATE(5698), 1, sym_comment, - STATE(6262), 1, - aux_sym_object_repeat1, - [189678] = 6, + [189821] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8975), 1, + ACTIONS(9504), 1, sym_identifier, - ACTIONS(8977), 1, - anon_sym_const, - STATE(5844), 1, + ACTIONS(9506), 1, + anon_sym_SEMI, + ACTIONS(9508), 1, + sym__automatic_semicolon, + STATE(5699), 1, sym_comment, - STATE(7017), 1, - sym_type_parameter, - [189697] = 4, + [189840] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5845), 1, - sym_comment, - ACTIONS(9394), 3, - sym__automatic_semicolon, + ACTIONS(9510), 1, anon_sym_COMMA, - anon_sym_SEMI, - [189712] = 4, + ACTIONS(9512), 1, + anon_sym_GT, + STATE(5700), 1, + sym_comment, + STATE(5804), 1, + aux_sym_type_parameters_repeat1, + [189859] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5846), 1, + STATE(5701), 1, sym_comment, - ACTIONS(9400), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189727] = 4, + [189874] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5847), 1, + STATE(5702), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189742] = 4, + [189889] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5848), 1, + STATE(5703), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189757] = 4, + [189904] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5849), 1, + STATE(5704), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9514), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189772] = 4, + [189919] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5850), 1, + STATE(5705), 1, sym_comment, ACTIONS(9486), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189787] = 4, + [189934] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5851), 1, + STATE(5706), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189802] = 4, + [189949] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5852), 1, + STATE(5707), 1, sym_comment, - ACTIONS(9452), 3, + ACTIONS(9391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189817] = 4, + [189964] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5853), 1, + ACTIONS(7948), 1, + anon_sym_COMMA, + ACTIONS(9516), 1, + anon_sym_RBRACE, + STATE(5708), 1, + sym_comment, + STATE(5846), 1, + aux_sym_object_repeat1, + [189983] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5709), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189832] = 4, + [189998] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9518), 1, + sym_identifier, + ACTIONS(9520), 1, + anon_sym_LBRACK, + ACTIONS(9522), 1, + sym_private_property_identifier, + STATE(5710), 1, + sym_comment, + [190017] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5854), 1, + STATE(5711), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189847] = 4, + [190032] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5855), 1, + ACTIONS(7948), 1, + anon_sym_COMMA, + ACTIONS(9516), 1, + anon_sym_RBRACE, + STATE(5712), 1, sym_comment, - ACTIONS(9490), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [189862] = 4, + STATE(5746), 1, + aux_sym_object_repeat1, + [190051] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(8121), 1, + sym_identifier, + STATE(5713), 1, + sym_comment, + ACTIONS(8125), 2, + anon_sym_LBRACK, + sym_private_property_identifier, + [190068] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5856), 1, + STATE(5714), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9486), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189877] = 4, + [190083] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5857), 1, + ACTIONS(8652), 1, + anon_sym_COMMA, + ACTIONS(9496), 1, + anon_sym_RBRACE, + STATE(5715), 1, + sym_comment, + STATE(5747), 1, + aux_sym_object_pattern_repeat1, + [190102] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9524), 1, + sym_identifier, + ACTIONS(9526), 1, + anon_sym_LBRACK, + ACTIONS(9528), 1, + sym_private_property_identifier, + STATE(5716), 1, + sym_comment, + [190121] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9530), 1, + sym_identifier, + ACTIONS(9532), 1, + anon_sym_LBRACK, + ACTIONS(9534), 1, + sym_private_property_identifier, + STATE(5717), 1, + sym_comment, + [190140] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5718), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9486), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189892] = 4, + [190155] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5858), 1, + STATE(5719), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189907] = 4, + [190170] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5859), 1, + ACTIONS(9536), 1, + anon_sym_COMMA, + ACTIONS(9538), 1, + anon_sym_RPAREN, + STATE(5720), 1, sym_comment, - ACTIONS(9486), 3, + STATE(5873), 1, + aux_sym_formal_parameters_repeat1, + [190189] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9540), 1, + sym_identifier, + ACTIONS(9542), 1, + anon_sym_LBRACK, + ACTIONS(9544), 1, + sym_private_property_identifier, + STATE(5721), 1, + sym_comment, + [190208] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5722), 1, + sym_comment, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189922] = 4, + [190223] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5860), 1, + ACTIONS(9546), 1, + anon_sym_DQUOTE, + ACTIONS(9548), 1, + anon_sym_SQUOTE, + STATE(5723), 1, + sym_comment, + STATE(5826), 1, + sym_string, + [190242] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5724), 1, sym_comment, - ACTIONS(9452), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189937] = 4, + [190257] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9550), 1, + sym_identifier, + ACTIONS(9552), 1, + anon_sym_LBRACK, + ACTIONS(9554), 1, + sym_private_property_identifier, + STATE(5725), 1, + sym_comment, + [190276] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5861), 1, + STATE(5726), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9556), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [189952] = 4, + [190291] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5862), 1, + STATE(5727), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [189967] = 5, + [190306] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9492), 1, + ACTIONS(9558), 1, anon_sym_COMMA, - ACTIONS(9495), 1, - anon_sym_RBRACK, - STATE(5863), 2, + ACTIONS(9560), 1, + anon_sym_RBRACE, + STATE(5728), 1, sym_comment, - aux_sym_tuple_type_repeat1, - [189984] = 4, + STATE(5838), 1, + aux_sym_export_clause_repeat1, + [190325] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5864), 1, + ACTIONS(9562), 1, + anon_sym_as, + STATE(5729), 1, sym_comment, - ACTIONS(9488), 3, - sym__automatic_semicolon, + ACTIONS(9564), 2, anon_sym_COMMA, - anon_sym_SEMI, - [189999] = 4, + anon_sym_RBRACE, + [190342] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5865), 1, + STATE(5730), 1, sym_comment, - ACTIONS(9452), 3, + ACTIONS(9486), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190014] = 4, + [190357] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5866), 1, + ACTIONS(9294), 1, + anon_sym_COMMA, + ACTIONS(9296), 1, + anon_sym_RBRACK, + STATE(5731), 1, sym_comment, - ACTIONS(9394), 3, - sym__automatic_semicolon, + STATE(5887), 1, + aux_sym_array_pattern_repeat1, + [190376] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7948), 1, anon_sym_COMMA, - anon_sym_SEMI, - [190029] = 4, + ACTIONS(9566), 1, + anon_sym_RBRACE, + STATE(5732), 1, + sym_comment, + STATE(5746), 1, + aux_sym_object_repeat1, + [190395] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5867), 1, + STATE(5733), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190044] = 5, + [190410] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4459), 1, - anon_sym_LBRACE, - STATE(5868), 1, - sym_comment, - ACTIONS(5367), 2, + ACTIONS(8652), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [190061] = 4, + ACTIONS(9568), 1, + anon_sym_RBRACE, + STATE(5734), 1, + sym_comment, + STATE(5747), 1, + aux_sym_object_pattern_repeat1, + [190429] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5869), 1, + STATE(5735), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190076] = 4, + [190444] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5870), 1, - sym_comment, - ACTIONS(9394), 3, - sym__automatic_semicolon, + ACTIONS(5982), 1, anon_sym_COMMA, - anon_sym_SEMI, - [190091] = 4, + ACTIONS(6006), 1, + anon_sym_RBRACK, + STATE(5736), 1, + sym_comment, + STATE(5885), 1, + aux_sym_array_repeat1, + [190463] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5871), 1, - sym_comment, - ACTIONS(9497), 3, - sym__automatic_semicolon, + ACTIONS(5982), 1, anon_sym_COMMA, - anon_sym_SEMI, - [190106] = 4, + ACTIONS(6006), 1, + anon_sym_RBRACK, + STATE(5737), 1, + sym_comment, + STATE(5775), 1, + aux_sym_array_repeat1, + [190482] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5872), 1, + STATE(5738), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190121] = 4, + [190497] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5873), 1, - sym_comment, - ACTIONS(9486), 3, - sym__automatic_semicolon, + ACTIONS(9294), 1, anon_sym_COMMA, - anon_sym_SEMI, - [190136] = 4, + ACTIONS(9296), 1, + anon_sym_RBRACK, + STATE(5739), 1, + sym_comment, + STATE(5783), 1, + aux_sym_array_pattern_repeat1, + [190516] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5874), 1, + STATE(5740), 1, sym_comment, - ACTIONS(9452), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190151] = 6, + [190531] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7205), 1, - anon_sym_LPAREN, - ACTIONS(9499), 1, - anon_sym_DOT, - STATE(4851), 1, - sym_arguments, - STATE(5875), 1, + ACTIONS(8652), 1, + anon_sym_COMMA, + ACTIONS(9570), 1, + anon_sym_RBRACE, + STATE(5741), 1, sym_comment, - [190170] = 4, + STATE(5747), 1, + aux_sym_object_pattern_repeat1, + [190550] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5876), 1, + STATE(5742), 1, sym_comment, - ACTIONS(9400), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190185] = 6, + [190565] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9501), 1, - anon_sym_LPAREN, - ACTIONS(9503), 1, - anon_sym_await, - STATE(83), 1, - sym__for_header, - STATE(5877), 1, + ACTIONS(7948), 1, + anon_sym_COMMA, + ACTIONS(9572), 1, + anon_sym_RBRACE, + STATE(5743), 1, sym_comment, - [190204] = 4, + STATE(5746), 1, + aux_sym_object_repeat1, + [190584] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5878), 1, + STATE(5744), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190219] = 4, + [190599] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5879), 1, + ACTIONS(7867), 1, + anon_sym_DOT, + STATE(5745), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9574), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [190234] = 5, + [190616] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8766), 1, - anon_sym_LBRACE, - STATE(5880), 1, - sym_comment, - ACTIONS(8768), 2, + ACTIONS(9576), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [190251] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(9579), 1, + anon_sym_RBRACE, + STATE(5746), 2, + sym_comment, + aux_sym_object_repeat1, + [190633] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9505), 1, - sym_identifier, - ACTIONS(9507), 1, - anon_sym_SEMI, - ACTIONS(9509), 1, - sym__automatic_semicolon, - STATE(5881), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9581), 1, + anon_sym_COMMA, + ACTIONS(9584), 1, + anon_sym_RBRACE, + STATE(5747), 2, sym_comment, - [190270] = 6, + aux_sym_object_pattern_repeat1, + [190650] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9511), 1, + ACTIONS(9586), 1, sym_identifier, - ACTIONS(9513), 1, - anon_sym_SEMI, - ACTIONS(9515), 1, - sym__automatic_semicolon, - STATE(5882), 1, + STATE(1971), 1, + sym_decorator_member_expression, + STATE(2083), 1, + sym_decorator_call_expression, + STATE(5748), 1, sym_comment, - [190289] = 4, + [190669] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5883), 1, + STATE(5749), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190304] = 4, + [190684] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5884), 1, + STATE(5750), 1, sym_comment, - ACTIONS(9396), 3, + ACTIONS(9443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190319] = 4, + [190699] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5885), 1, + ACTIONS(7865), 1, + anon_sym_DOT, + STATE(5751), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9574), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [190334] = 4, + [190716] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5886), 1, + STATE(5752), 1, sym_comment, - ACTIONS(9394), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190349] = 4, + [190731] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5887), 1, + STATE(5753), 1, sym_comment, - ACTIONS(9394), 3, - sym__automatic_semicolon, + ACTIONS(9588), 3, anon_sym_COMMA, - anon_sym_SEMI, - [190364] = 4, + anon_sym_RBRACE, + anon_sym_from, + [190746] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5888), 1, + ACTIONS(9590), 1, + anon_sym_EQ, + STATE(5754), 1, sym_comment, - ACTIONS(9400), 3, - sym__automatic_semicolon, + ACTIONS(9419), 2, anon_sym_COMMA, - anon_sym_SEMI, - [190379] = 4, + anon_sym_from, + [190763] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5889), 1, + STATE(5755), 1, sym_comment, - ACTIONS(9497), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190394] = 4, + [190778] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5890), 1, + ACTIONS(9304), 1, + anon_sym_as, + STATE(5756), 1, sym_comment, - ACTIONS(9452), 3, - sym__automatic_semicolon, + ACTIONS(9419), 2, anon_sym_COMMA, - anon_sym_SEMI, - [190409] = 5, + anon_sym_RBRACE, + [190795] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8797), 1, - anon_sym_LBRACE, - ACTIONS(9517), 1, + ACTIONS(9592), 1, anon_sym_COMMA, - STATE(5891), 2, + ACTIONS(9594), 1, + anon_sym_RBRACE, + STATE(5757), 1, sym_comment, - aux_sym_implements_clause_repeat1, - [190426] = 4, + STATE(5861), 1, + aux_sym_named_imports_repeat1, + [190814] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9596), 1, + sym_identifier, + ACTIONS(9598), 1, + anon_sym_require, + STATE(5758), 1, + sym_comment, + STATE(5869), 1, + sym_nested_identifier, + [190833] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5892), 1, + STATE(5759), 1, sym_comment, - ACTIONS(9394), 3, + ACTIONS(9486), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190441] = 4, + [190848] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5893), 1, + STATE(5760), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(8773), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190456] = 4, + [190863] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5894), 1, + STATE(5761), 1, sym_comment, - ACTIONS(9394), 3, + ACTIONS(8773), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190471] = 4, + [190878] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5895), 1, + STATE(5762), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190486] = 5, + [190893] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9520), 1, - anon_sym_COMMA, - ACTIONS(9523), 1, - anon_sym_RBRACE, - STATE(5896), 2, + ACTIONS(9600), 1, + anon_sym_EQ, + STATE(5763), 1, sym_comment, - aux_sym_enum_body_repeat1, - [190503] = 4, + ACTIONS(4445), 2, + anon_sym_in, + anon_sym_of, + [190910] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5897), 1, + STATE(5764), 1, sym_comment, - ACTIONS(9525), 3, + ACTIONS(8088), 3, anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [190925] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9602), 1, anon_sym_COMMA, - anon_sym_implements, - [190518] = 4, + ACTIONS(9604), 1, + anon_sym_RPAREN, + STATE(5765), 1, + sym_comment, + STATE(5896), 1, + aux_sym_formal_parameters_repeat1, + [190944] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5898), 1, + ACTIONS(4246), 1, + anon_sym_LPAREN, + ACTIONS(9606), 1, + anon_sym_DOT, + STATE(4360), 1, + sym_arguments, + STATE(5766), 1, sym_comment, - ACTIONS(9410), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190533] = 4, + [190963] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5899), 1, + ACTIONS(9608), 1, + anon_sym_LBRACE, + ACTIONS(9610), 1, + anon_sym_LPAREN, + STATE(1456), 1, + sym_statement_block, + STATE(5767), 1, sym_comment, - ACTIONS(9400), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190548] = 4, + [190982] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5900), 1, + STATE(5768), 1, sym_comment, - ACTIONS(9497), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190563] = 4, + [190997] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5901), 1, + STATE(5769), 1, sym_comment, - ACTIONS(9527), 3, + ACTIONS(9443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190578] = 4, + [191012] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5902), 1, + STATE(5770), 1, sym_comment, - ACTIONS(9497), 3, - sym__automatic_semicolon, + ACTIONS(6180), 3, anon_sym_COMMA, - anon_sym_SEMI, - [190593] = 4, + anon_sym_RPAREN, + anon_sym_RBRACK, + [191027] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5903), 1, + ACTIONS(9292), 1, + anon_sym_EQ, + STATE(5771), 1, sym_comment, - ACTIONS(9452), 3, - sym__automatic_semicolon, + ACTIONS(9612), 2, anon_sym_COMMA, - anon_sym_SEMI, - [190608] = 6, + anon_sym_RBRACK, + [191044] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9529), 1, + ACTIONS(5982), 1, anon_sym_COMMA, - ACTIONS(9531), 1, - anon_sym_RPAREN, - STATE(5838), 1, - aux_sym_formal_parameters_repeat1, - STATE(5904), 1, + ACTIONS(9614), 1, + anon_sym_RBRACK, + STATE(5772), 1, sym_comment, - [190627] = 4, + STATE(5775), 1, + aux_sym_array_repeat1, + [191063] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5905), 1, + STATE(5773), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190642] = 4, + [191078] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5906), 1, + ACTIONS(9294), 1, + anon_sym_COMMA, + ACTIONS(9616), 1, + anon_sym_RBRACK, + STATE(5774), 1, + sym_comment, + STATE(5783), 1, + aux_sym_array_pattern_repeat1, + [191097] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(6180), 1, + anon_sym_RBRACK, + ACTIONS(9618), 1, + anon_sym_COMMA, + STATE(5775), 2, + sym_comment, + aux_sym_array_repeat1, + [191114] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5776), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190657] = 4, + [191129] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5907), 1, + STATE(5777), 1, sym_comment, - ACTIONS(9533), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190672] = 4, + [191144] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5908), 1, + STATE(5778), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190687] = 4, + [191159] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5909), 1, + STATE(5779), 1, sym_comment, - ACTIONS(9535), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190702] = 4, + [191174] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5910), 1, + STATE(5780), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190717] = 4, + [191189] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5911), 1, + STATE(5781), 1, sym_comment, - ACTIONS(9394), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190732] = 4, + [191204] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5912), 1, + STATE(5782), 1, sym_comment, - ACTIONS(9394), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190747] = 6, + [191219] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8042), 1, + ACTIONS(9612), 1, + anon_sym_RBRACK, + ACTIONS(9621), 1, anon_sym_COMMA, - ACTIONS(9537), 1, - anon_sym_RBRACE, - STATE(5913), 1, + STATE(5783), 2, sym_comment, - STATE(6262), 1, - aux_sym_object_repeat1, - [190766] = 4, + aux_sym_array_pattern_repeat1, + [191236] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5914), 1, + ACTIONS(9624), 1, + anon_sym_COMMA, + ACTIONS(9626), 1, + anon_sym_GT, + STATE(5784), 1, + sym_comment, + STATE(5923), 1, + aux_sym_type_parameters_repeat1, + [191255] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5785), 1, sym_comment, - ACTIONS(9539), 3, + ACTIONS(6885), 3, sym__automatic_semicolon, - anon_sym_with, + anon_sym_COMMA, anon_sym_SEMI, - [190781] = 6, + [191270] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8042), 1, + ACTIONS(9628), 1, anon_sym_COMMA, - ACTIONS(9537), 1, - anon_sym_RBRACE, - STATE(5842), 1, - aux_sym_object_repeat1, - STATE(5915), 1, + ACTIONS(9630), 1, + anon_sym_RBRACK, + STATE(5786), 1, sym_comment, - [190800] = 4, + STATE(5924), 1, + aux_sym_tuple_type_repeat1, + [191289] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5916), 1, + STATE(5787), 1, sym_comment, - ACTIONS(9497), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190815] = 4, + [191304] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5917), 1, + STATE(5788), 1, sym_comment, - ACTIONS(9400), 3, + ACTIONS(9391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190830] = 4, + [191319] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5918), 1, - sym_comment, - ACTIONS(9486), 3, - sym__automatic_semicolon, + ACTIONS(5960), 1, anon_sym_COMMA, - anon_sym_SEMI, - [190845] = 6, + ACTIONS(5995), 1, + anon_sym_RPAREN, + STATE(5789), 1, + sym_comment, + STATE(5801), 1, + aux_sym_array_repeat1, + [191338] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5790), 1, + sym_comment, + ACTIONS(9632), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [191353] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8975), 1, + ACTIONS(9634), 1, sym_identifier, - ACTIONS(8977), 1, - anon_sym_const, - STATE(5919), 1, + ACTIONS(9636), 1, + anon_sym_LBRACK, + ACTIONS(9638), 1, + sym_private_property_identifier, + STATE(5791), 1, sym_comment, - STATE(6312), 1, - sym_type_parameter, - [190864] = 4, + [191372] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5920), 1, - sym_comment, - ACTIONS(9398), 3, - sym__automatic_semicolon, + ACTIONS(5960), 1, anon_sym_COMMA, - anon_sym_SEMI, - [190879] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5921), 1, + ACTIONS(5995), 1, + anon_sym_RPAREN, + STATE(5661), 1, + aux_sym_array_repeat1, + STATE(5792), 1, sym_comment, - ACTIONS(9486), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190894] = 4, + [191391] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5922), 1, + STATE(5793), 1, sym_comment, - ACTIONS(9541), 3, + ACTIONS(9391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190909] = 4, + [191406] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5923), 1, + ACTIONS(7146), 1, + anon_sym_AMP, + ACTIONS(7148), 1, + anon_sym_PIPE, + ACTIONS(7150), 1, + anon_sym_extends, + STATE(5794), 1, sym_comment, - ACTIONS(8089), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [190924] = 4, + [191425] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5924), 1, + STATE(5795), 1, sym_comment, - ACTIONS(9394), 3, + ACTIONS(9443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [190939] = 4, + [191440] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5925), 1, - sym_comment, - ACTIONS(9394), 3, - sym__automatic_semicolon, + ACTIONS(9640), 1, anon_sym_COMMA, - anon_sym_SEMI, - [190954] = 4, + ACTIONS(9642), 1, + anon_sym_GT, + STATE(5796), 1, + sym_comment, + STATE(5932), 1, + aux_sym_type_arguments_repeat1, + [191459] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5926), 1, - sym_comment, - ACTIONS(9400), 3, - sym__automatic_semicolon, + ACTIONS(9644), 1, anon_sym_COMMA, - anon_sym_SEMI, - [190969] = 4, + ACTIONS(9646), 1, + anon_sym_GT, + STATE(5797), 1, + sym_comment, + STATE(5932), 1, + aux_sym_type_arguments_repeat1, + [191478] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5927), 1, + ACTIONS(9648), 1, + anon_sym_LBRACE, + ACTIONS(9650), 1, + anon_sym_LPAREN, + STATE(1045), 1, + sym_statement_block, + STATE(5798), 1, sym_comment, - ACTIONS(9398), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [190984] = 4, + [191497] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5928), 1, - sym_comment, - ACTIONS(9488), 3, - sym__automatic_semicolon, + ACTIONS(9652), 1, anon_sym_COMMA, - anon_sym_SEMI, - [190999] = 4, + ACTIONS(9654), 1, + anon_sym_GT, + STATE(5799), 1, + sym_comment, + STATE(5932), 1, + aux_sym_type_arguments_repeat1, + [191516] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5929), 1, + ACTIONS(8012), 1, + anon_sym_LBRACE, + ACTIONS(8014), 1, + anon_sym_LBRACE_PIPE, + STATE(1348), 1, + sym_object_type, + STATE(5800), 1, sym_comment, - ACTIONS(9541), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191014] = 4, + [191535] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5930), 1, - sym_comment, - ACTIONS(9543), 3, - sym__automatic_semicolon, + ACTIONS(6180), 1, + anon_sym_RPAREN, + ACTIONS(9656), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191029] = 4, + STATE(5801), 2, + sym_comment, + aux_sym_array_repeat1, + [191552] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5931), 1, + STATE(5802), 1, sym_comment, - ACTIONS(9545), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191044] = 4, + [191567] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5932), 1, + STATE(5803), 1, sym_comment, - ACTIONS(9398), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191059] = 4, + ACTIONS(3457), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [191582] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5933), 1, - sym_comment, - ACTIONS(9488), 3, - sym__automatic_semicolon, + ACTIONS(9659), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191074] = 4, + ACTIONS(9661), 1, + anon_sym_GT, + STATE(5804), 1, + sym_comment, + STATE(5937), 1, + aux_sym_type_parameters_repeat1, + [191601] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5934), 1, + STATE(5805), 1, sym_comment, - ACTIONS(9452), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191089] = 4, + [191616] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5935), 1, + STATE(5806), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191104] = 4, + [191631] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5936), 1, + STATE(5807), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191119] = 4, + [191646] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5937), 1, - sym_comment, - ACTIONS(9547), 3, - sym__automatic_semicolon, + ACTIONS(9663), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191134] = 4, + ACTIONS(9665), 1, + anon_sym_GT, + STATE(5808), 1, + sym_comment, + STATE(5932), 1, + aux_sym_type_arguments_repeat1, + [191665] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5938), 1, + STATE(5809), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191149] = 4, + [191680] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5939), 1, + STATE(5810), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191164] = 4, + [191695] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5940), 1, - sym_comment, - ACTIONS(9398), 3, - sym__automatic_semicolon, + ACTIONS(9667), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191179] = 4, + ACTIONS(9669), 1, + anon_sym_GT, + STATE(5811), 1, + sym_comment, + STATE(5932), 1, + aux_sym_type_arguments_repeat1, + [191714] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5941), 1, + ACTIONS(8127), 1, + anon_sym_LBRACE, + ACTIONS(8129), 1, + anon_sym_LBRACE_PIPE, + STATE(1518), 1, + sym_object_type, + STATE(5812), 1, sym_comment, - ACTIONS(9488), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191194] = 4, + [191733] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5942), 1, - sym_comment, - ACTIONS(9549), 3, - sym__automatic_semicolon, + ACTIONS(9671), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191209] = 4, + ACTIONS(9673), 1, + anon_sym_RBRACK, + STATE(5813), 1, + sym_comment, + STATE(5871), 1, + aux_sym_tuple_type_repeat1, + [191752] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5943), 1, - sym_comment, - ACTIONS(9497), 3, - sym__automatic_semicolon, + ACTIONS(5960), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191224] = 4, + ACTIONS(5966), 1, + anon_sym_RPAREN, + STATE(5814), 1, + sym_comment, + STATE(5940), 1, + aux_sym_array_repeat1, + [191771] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5944), 1, - sym_comment, - ACTIONS(9535), 3, - sym__automatic_semicolon, + ACTIONS(5960), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191239] = 4, + ACTIONS(5966), 1, + anon_sym_RPAREN, + STATE(5801), 1, + aux_sym_array_repeat1, + STATE(5815), 1, + sym_comment, + [191790] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5945), 1, + ACTIONS(9675), 1, + sym__glimmer_template_content, + ACTIONS(9678), 1, + anon_sym_LT_SLASHtemplate_GT, + STATE(5816), 2, sym_comment, - ACTIONS(9551), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191254] = 4, + aux_sym_glimmer_template_repeat1, + [191807] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5946), 1, + ACTIONS(5031), 1, + anon_sym_extends, + ACTIONS(9680), 1, + anon_sym_AMP, + ACTIONS(9682), 1, + anon_sym_PIPE, + STATE(5817), 1, sym_comment, - ACTIONS(9553), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191269] = 4, + [191826] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5947), 1, + ACTIONS(9684), 1, + anon_sym_EQ, + STATE(5818), 1, sym_comment, - ACTIONS(9547), 3, - sym__automatic_semicolon, + ACTIONS(9419), 2, anon_sym_COMMA, - anon_sym_SEMI, - [191284] = 4, + anon_sym_from, + [191843] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5948), 1, + STATE(5819), 1, sym_comment, - ACTIONS(9555), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191299] = 4, + [191858] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5949), 1, - sym_comment, - ACTIONS(9488), 3, - sym__automatic_semicolon, + ACTIONS(9686), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191314] = 4, + ACTIONS(9688), 1, + anon_sym_GT, + STATE(5820), 1, + sym_comment, + STATE(5932), 1, + aux_sym_type_arguments_repeat1, + [191877] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5950), 1, + STATE(5821), 1, sym_comment, - ACTIONS(9557), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191329] = 4, + [191892] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5951), 1, - sym_comment, - ACTIONS(9486), 3, - sym__automatic_semicolon, + ACTIONS(9690), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191344] = 4, + ACTIONS(9692), 1, + anon_sym_GT, + STATE(5822), 1, + sym_comment, + STATE(5932), 1, + aux_sym_type_arguments_repeat1, + [191911] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5952), 1, + STATE(5823), 1, sym_comment, ACTIONS(9486), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191359] = 4, + [191926] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5953), 1, - sym_comment, - ACTIONS(9551), 3, - sym__automatic_semicolon, + ACTIONS(9694), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191374] = 4, + ACTIONS(9696), 1, + anon_sym_GT, + STATE(5824), 1, + sym_comment, + STATE(5932), 1, + aux_sym_type_arguments_repeat1, + [191945] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5954), 1, + STATE(5825), 1, sym_comment, - ACTIONS(9452), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191389] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9362), 1, - anon_sym_LBRACE, - ACTIONS(9559), 1, - sym_identifier, - STATE(5675), 1, - sym_export_clause, - STATE(5955), 1, - sym_comment, - [191408] = 4, + [191960] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5956), 1, + STATE(5826), 1, sym_comment, - ACTIONS(9557), 3, + ACTIONS(9698), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_with, anon_sym_SEMI, - [191423] = 4, + [191975] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5957), 1, + STATE(5827), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191438] = 6, + [191990] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1397), 1, + anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - ACTIONS(9561), 1, - anon_sym_as, - STATE(5958), 1, + ACTIONS(8002), 1, + anon_sym_LBRACE_PIPE, + STATE(4945), 1, + sym_object_type, + STATE(5828), 1, sym_comment, - STATE(6667), 1, - sym__from_clause, - [191457] = 4, + [192009] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5959), 1, - sym_comment, - ACTIONS(9563), 3, - sym__automatic_semicolon, + ACTIONS(9700), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191472] = 4, + ACTIONS(9702), 1, + anon_sym_GT, + STATE(5829), 1, + sym_comment, + STATE(5932), 1, + aux_sym_type_arguments_repeat1, + [192028] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5960), 1, + STATE(5830), 1, sym_comment, - ACTIONS(9557), 3, + ACTIONS(9443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191487] = 4, + [192043] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5961), 1, + ACTIONS(7254), 1, + anon_sym_LT, + ACTIONS(9704), 1, + anon_sym_EQ, + STATE(5831), 1, sym_comment, - ACTIONS(9488), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191502] = 4, + STATE(7077), 1, + sym_type_parameters, + [192062] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5962), 1, - sym_comment, - ACTIONS(9486), 3, - sym__automatic_semicolon, + ACTIONS(5960), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191517] = 4, + ACTIONS(5962), 1, + anon_sym_RPAREN, + STATE(5832), 1, + sym_comment, + STATE(5883), 1, + aux_sym_array_repeat1, + [192081] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5963), 1, - sym_comment, - ACTIONS(9557), 3, - sym__automatic_semicolon, + ACTIONS(5960), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191532] = 4, + ACTIONS(5962), 1, + anon_sym_RPAREN, + STATE(5801), 1, + aux_sym_array_repeat1, + STATE(5833), 1, + sym_comment, + [192100] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5964), 1, + STATE(5834), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191547] = 4, + [192115] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5965), 1, + STATE(5835), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191562] = 4, + [192130] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5966), 1, + STATE(5836), 1, sym_comment, - ACTIONS(9555), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191577] = 4, + [192145] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5967), 1, + STATE(5837), 1, sym_comment, - ACTIONS(9541), 3, + ACTIONS(9706), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [191592] = 4, + [192160] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5968), 1, - sym_comment, - ACTIONS(9565), 3, - sym__automatic_semicolon, + ACTIONS(9708), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191607] = 4, + ACTIONS(9710), 1, + anon_sym_RBRACE, + STATE(5838), 1, + sym_comment, + STATE(5943), 1, + aux_sym_export_clause_repeat1, + [192179] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5969), 1, - sym_comment, - ACTIONS(9567), 3, - sym__automatic_semicolon, + ACTIONS(7948), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191622] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9569), 1, - sym_identifier, - STATE(3686), 1, - sym_decorator_member_expression, - STATE(3791), 1, - sym_decorator_call_expression, - STATE(5970), 1, + ACTIONS(9712), 1, + anon_sym_RBRACE, + STATE(5746), 1, + aux_sym_object_repeat1, + STATE(5839), 1, sym_comment, - [191641] = 4, + [192198] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5971), 1, - sym_comment, - ACTIONS(9567), 3, - sym__automatic_semicolon, + ACTIONS(8652), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191656] = 4, + ACTIONS(9714), 1, + anon_sym_RBRACE, + STATE(5747), 1, + aux_sym_object_pattern_repeat1, + STATE(5840), 1, + sym_comment, + [192217] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5972), 1, + STATE(5841), 1, sym_comment, - ACTIONS(9398), 3, + ACTIONS(9486), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191671] = 4, + [192232] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5973), 1, - sym_comment, - ACTIONS(9571), 3, - sym__automatic_semicolon, + ACTIONS(8652), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191686] = 4, + ACTIONS(9716), 1, + anon_sym_RBRACE, + STATE(5747), 1, + aux_sym_object_pattern_repeat1, + STATE(5842), 1, + sym_comment, + [192251] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5974), 1, + STATE(5843), 1, sym_comment, - ACTIONS(9573), 3, + ACTIONS(9443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191701] = 4, + [192266] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5975), 1, + ACTIONS(7471), 1, + anon_sym_AMP, + ACTIONS(7477), 1, + anon_sym_extends, + ACTIONS(8575), 1, + anon_sym_PIPE, + STATE(5844), 1, sym_comment, - ACTIONS(9557), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191716] = 4, + [192285] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5976), 1, + ACTIONS(9292), 1, + anon_sym_EQ, + STATE(5845), 1, sym_comment, - ACTIONS(9557), 3, - sym__automatic_semicolon, + ACTIONS(9718), 2, anon_sym_COMMA, - anon_sym_SEMI, - [191731] = 4, + anon_sym_RBRACE, + [192302] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5977), 1, - sym_comment, - ACTIONS(9571), 3, - sym__automatic_semicolon, + ACTIONS(7948), 1, anon_sym_COMMA, - anon_sym_SEMI, - [191746] = 4, + ACTIONS(9720), 1, + anon_sym_RBRACE, + STATE(5746), 1, + aux_sym_object_repeat1, + STATE(5846), 1, + sym_comment, + [192321] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5978), 1, + STATE(5847), 1, sym_comment, - ACTIONS(9486), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191761] = 4, + ACTIONS(3461), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [192336] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5979), 1, + ACTIONS(7865), 1, + anon_sym_DOT, + STATE(5848), 1, sym_comment, - ACTIONS(9557), 3, + ACTIONS(9722), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [191776] = 4, + [192353] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5980), 1, + ACTIONS(7867), 1, + anon_sym_DOT, + STATE(5849), 1, sym_comment, - ACTIONS(9575), 3, + ACTIONS(9722), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [191791] = 6, + [192370] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9577), 1, - anon_sym_LBRACE, - ACTIONS(9579), 1, - anon_sym_LPAREN, - STATE(1117), 1, - sym_statement_block, - STATE(5981), 1, + ACTIONS(6609), 1, + sym__automatic_semicolon, + STATE(5850), 1, sym_comment, - [191810] = 4, + ACTIONS(2398), 2, + anon_sym_else, + anon_sym_while, + [192387] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5982), 1, - sym_comment, - ACTIONS(9565), 3, + ACTIONS(6582), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191825] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(5983), 1, + STATE(5851), 1, sym_comment, - ACTIONS(9452), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191840] = 4, + ACTIONS(2388), 2, + anon_sym_else, + anon_sym_while, + [192404] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5984), 1, + STATE(5852), 1, sym_comment, - ACTIONS(9551), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191855] = 6, + [192419] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9581), 1, + ACTIONS(9399), 1, + anon_sym_LBRACE, + ACTIONS(9724), 1, sym_identifier, - ACTIONS(9583), 1, - anon_sym_SEMI, - ACTIONS(9585), 1, - sym__automatic_semicolon, - STATE(5985), 1, + STATE(5377), 1, + sym_export_clause, + STATE(5853), 1, sym_comment, - [191874] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [192438] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9587), 1, - sym_identifier, - ACTIONS(9589), 1, - anon_sym_SEMI, - ACTIONS(9591), 1, - sym__automatic_semicolon, - STATE(5986), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9726), 1, + anon_sym_COMMA, + ACTIONS(9728), 1, + anon_sym_RBRACK, + STATE(5686), 1, + aux_sym_tuple_type_repeat1, + STATE(5854), 1, sym_comment, - [191893] = 4, + [192457] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5987), 1, + ACTIONS(8965), 1, + anon_sym_from, + ACTIONS(9395), 1, + anon_sym_as, + STATE(5855), 1, sym_comment, - ACTIONS(9488), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191908] = 6, + STATE(6330), 1, + sym__from_clause, + [192476] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(9593), 1, - anon_sym_RPAREN, - STATE(5988), 1, + ACTIONS(9730), 1, + anon_sym_as, + STATE(5856), 1, sym_comment, - STATE(7284), 1, - sym_type_annotation, - [191927] = 4, + ACTIONS(9588), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [192493] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5989), 1, + STATE(5857), 1, sym_comment, - ACTIONS(9557), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191942] = 4, + [192508] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5990), 1, + STATE(5858), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [191957] = 4, + [192523] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(7264), 1, + anon_sym_type, + ACTIONS(9732), 1, + sym_identifier, + STATE(5859), 1, + sym_comment, + STATE(6778), 1, + sym__import_identifier, + [192542] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(5991), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7264), 1, + anon_sym_type, + ACTIONS(9732), 1, + sym_identifier, + STATE(5860), 1, sym_comment, - ACTIONS(9452), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [191972] = 6, + STATE(6772), 1, + sym__import_identifier, + [192561] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9595), 1, - anon_sym_LPAREN, - ACTIONS(9597), 1, - anon_sym_await, - STATE(121), 1, - sym__for_header, - STATE(5992), 1, + ACTIONS(9734), 1, + anon_sym_COMMA, + ACTIONS(9736), 1, + anon_sym_RBRACE, + STATE(5861), 1, sym_comment, - [191991] = 4, + STATE(5961), 1, + aux_sym_named_imports_repeat1, + [192580] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5993), 1, + ACTIONS(7865), 1, + anon_sym_DOT, + STATE(5862), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9738), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [192006] = 4, + [192597] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5994), 1, + STATE(5863), 1, sym_comment, - ACTIONS(9557), 3, + ACTIONS(9486), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192021] = 4, + [192612] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5995), 1, + STATE(5864), 1, sym_comment, - ACTIONS(9565), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192036] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9599), 1, - anon_sym_COMMA, - ACTIONS(9601), 1, - anon_sym_RBRACK, - STATE(5996), 1, - sym_comment, - STATE(6054), 1, - aux_sym_tuple_type_repeat1, - [192055] = 4, + [192627] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5997), 1, + STATE(5865), 1, sym_comment, - ACTIONS(9557), 3, + ACTIONS(9486), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192070] = 4, + [192642] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5998), 1, + STATE(5866), 1, sym_comment, - ACTIONS(9557), 3, + ACTIONS(9443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192085] = 4, + [192657] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(5999), 1, + STATE(5867), 1, sym_comment, - ACTIONS(9571), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192100] = 6, + [192672] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5027), 1, - anon_sym_extends, - ACTIONS(9603), 1, - anon_sym_AMP, - ACTIONS(9605), 1, - anon_sym_PIPE, - STATE(6000), 1, + STATE(5868), 1, sym_comment, - [192119] = 4, + ACTIONS(9470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [192687] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6001), 1, + ACTIONS(7867), 1, + anon_sym_DOT, + STATE(5869), 1, sym_comment, - ACTIONS(9557), 3, + ACTIONS(9738), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [192134] = 4, + [192704] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6002), 1, + STATE(5870), 1, sym_comment, - ACTIONS(9557), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192149] = 6, + [192719] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9607), 1, + ACTIONS(9740), 1, anon_sym_COMMA, - ACTIONS(9609), 1, - anon_sym_GT, - STATE(6003), 1, + ACTIONS(9742), 1, + anon_sym_RBRACK, + STATE(5871), 1, sym_comment, - STATE(6089), 1, - aux_sym_type_arguments_repeat1, - [192168] = 4, + STATE(6002), 1, + aux_sym_tuple_type_repeat1, + [192738] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6004), 1, + ACTIONS(4297), 1, + anon_sym_COLON, + ACTIONS(9744), 1, + anon_sym_RPAREN, + STATE(5872), 1, sym_comment, - ACTIONS(9488), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192183] = 6, + STATE(6987), 1, + sym_type_annotation, + [192757] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9611), 1, + ACTIONS(9746), 1, anon_sym_COMMA, - ACTIONS(9613), 1, - anon_sym_GT, - STATE(6005), 1, + ACTIONS(9748), 1, + anon_sym_RPAREN, + STATE(5873), 1, sym_comment, - STATE(6089), 1, - aux_sym_type_arguments_repeat1, - [192202] = 4, + STATE(5896), 1, + aux_sym_formal_parameters_repeat1, + [192776] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6006), 1, + STATE(5874), 1, sym_comment, - ACTIONS(9557), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192217] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9615), 1, - anon_sym_COMMA, - ACTIONS(9617), 1, - anon_sym_GT, - STATE(6007), 1, - sym_comment, - STATE(6089), 1, - aux_sym_type_arguments_repeat1, - [192236] = 4, + [192791] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6008), 1, + STATE(5875), 1, sym_comment, - ACTIONS(9497), 3, + ACTIONS(9486), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192251] = 4, + [192806] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6009), 1, + STATE(5876), 1, sym_comment, - ACTIONS(9571), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192266] = 4, + [192821] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6010), 1, + STATE(5877), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192281] = 6, + [192836] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1377), 1, - anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8085), 1, - anon_sym_LBRACE_PIPE, - STATE(5078), 1, - sym_object_type, - STATE(6011), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + ACTIONS(9750), 1, + anon_sym_LPAREN, + STATE(5878), 1, sym_comment, - [192300] = 4, + STATE(6042), 1, + sym_statement_block, + [192855] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6012), 1, + STATE(5879), 1, sym_comment, - ACTIONS(9557), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192315] = 4, + [192870] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(1397), 1, + anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6013), 1, + ACTIONS(8002), 1, + anon_sym_LBRACE_PIPE, + STATE(4921), 1, + sym_object_type, + STATE(5880), 1, sym_comment, - ACTIONS(9486), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192330] = 4, + [192889] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6014), 1, + ACTIONS(9598), 1, + anon_sym_require, + ACTIONS(9752), 1, + sym_identifier, + STATE(5881), 1, sym_comment, - ACTIONS(9452), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192345] = 6, + STATE(6272), 1, + sym_nested_identifier, + [192908] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, + ACTIONS(9754), 1, anon_sym_COMMA, - ACTIONS(5960), 1, - anon_sym_RPAREN, - STATE(6015), 1, + ACTIONS(9756), 1, + anon_sym_RBRACE, + STATE(5882), 1, sym_comment, - STATE(6066), 1, - aux_sym_array_repeat1, - [192364] = 6, + STATE(5918), 1, + aux_sym_enum_body_repeat1, + [192927] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, - anon_sym_COMMA, ACTIONS(5960), 1, + anon_sym_COMMA, + ACTIONS(9758), 1, anon_sym_RPAREN, - STATE(6016), 1, - sym_comment, - STATE(6185), 1, + STATE(5801), 1, aux_sym_array_repeat1, - [192383] = 4, + STATE(5883), 1, + sym_comment, + [192946] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6017), 1, + STATE(5884), 1, sym_comment, - ACTIONS(9557), 3, + ACTIONS(9760), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192398] = 4, + [192961] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6018), 1, - sym_comment, - ACTIONS(9488), 3, - sym__automatic_semicolon, + ACTIONS(5982), 1, anon_sym_COMMA, - anon_sym_SEMI, - [192413] = 4, + ACTIONS(9762), 1, + anon_sym_RBRACK, + STATE(5775), 1, + aux_sym_array_repeat1, + STATE(5885), 1, + sym_comment, + [192980] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6019), 1, + STATE(5886), 1, sym_comment, - ACTIONS(9567), 3, + ACTIONS(9443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192428] = 4, + [192995] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6020), 1, - sym_comment, - ACTIONS(9488), 3, - sym__automatic_semicolon, + ACTIONS(9294), 1, anon_sym_COMMA, - anon_sym_SEMI, - [192443] = 4, + ACTIONS(9764), 1, + anon_sym_RBRACK, + STATE(5783), 1, + aux_sym_array_pattern_repeat1, + STATE(5887), 1, + sym_comment, + [193014] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6021), 1, + STATE(5888), 1, sym_comment, - ACTIONS(9567), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192458] = 4, + [193029] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6022), 1, + STATE(5889), 1, sym_comment, - ACTIONS(9575), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192473] = 4, + [193044] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6023), 1, + STATE(5890), 1, sym_comment, - ACTIONS(9565), 3, + ACTIONS(9766), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192488] = 4, + [193059] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6024), 1, + STATE(5891), 1, sym_comment, - ACTIONS(9573), 3, + ACTIONS(9189), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192503] = 4, + [193074] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6025), 1, + ACTIONS(9768), 1, + anon_sym_as, + STATE(5892), 1, sym_comment, - ACTIONS(9557), 3, - sym__automatic_semicolon, + ACTIONS(9770), 2, anon_sym_COMMA, - anon_sym_SEMI, - [192518] = 4, + anon_sym_RBRACE, + [193091] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6026), 1, + STATE(5893), 1, sym_comment, - ACTIONS(9497), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192533] = 4, + ACTIONS(8086), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [193106] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6027), 1, + STATE(5894), 1, sym_comment, - ACTIONS(9557), 3, + ACTIONS(9443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192548] = 4, + [193121] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6028), 1, + ACTIONS(9772), 1, + anon_sym_LBRACE, + ACTIONS(9774), 1, + anon_sym_LPAREN, + STATE(1105), 1, + sym_statement_block, + STATE(5895), 1, sym_comment, - ACTIONS(9557), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192563] = 4, + [193140] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6029), 1, - sym_comment, - ACTIONS(9557), 3, - sym__automatic_semicolon, + ACTIONS(9776), 1, anon_sym_COMMA, - anon_sym_SEMI, - [192578] = 4, + ACTIONS(9779), 1, + anon_sym_RPAREN, + STATE(5896), 2, + sym_comment, + aux_sym_formal_parameters_repeat1, + [193157] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6030), 1, + STATE(5897), 1, sym_comment, - ACTIONS(9565), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192593] = 5, + [193172] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7870), 1, - anon_sym_DOT, - STATE(6031), 1, + ACTIONS(9399), 1, + anon_sym_LBRACE, + ACTIONS(9781), 1, + sym_identifier, + STATE(5447), 1, + sym_export_clause, + STATE(5898), 1, sym_comment, - ACTIONS(9619), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [192610] = 5, + [193191] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7868), 1, - anon_sym_DOT, - STATE(6032), 1, + ACTIONS(8965), 1, + anon_sym_from, + ACTIONS(9395), 1, + anon_sym_as, + STATE(5899), 1, sym_comment, - ACTIONS(9619), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [192627] = 4, + STATE(6622), 1, + sym__from_clause, + [193210] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6033), 1, + STATE(5900), 1, sym_comment, - ACTIONS(9557), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192642] = 4, + [193225] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6034), 1, + STATE(5901), 1, sym_comment, - ACTIONS(9452), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192657] = 4, + [193240] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6035), 1, + STATE(5902), 1, sym_comment, - ACTIONS(9557), 3, + ACTIONS(9783), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192672] = 4, + [193255] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6036), 1, - sym_comment, - ACTIONS(9565), 3, - sym__automatic_semicolon, + ACTIONS(8401), 1, anon_sym_COMMA, - anon_sym_SEMI, - [192687] = 4, + ACTIONS(9785), 1, + anon_sym_LBRACE, + STATE(5903), 1, + sym_comment, + STATE(5993), 1, + aux_sym_implements_clause_repeat1, + [193274] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6037), 1, + STATE(5904), 1, sym_comment, - ACTIONS(9557), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192702] = 4, + ACTIONS(9787), 3, + anon_sym_default, + anon_sym_RBRACE, + anon_sym_case, + [193289] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6038), 1, + ACTIONS(4297), 1, + anon_sym_COLON, + ACTIONS(9789), 1, + anon_sym_RPAREN, + STATE(5905), 1, sym_comment, - ACTIONS(9571), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192717] = 4, + STATE(6950), 1, + sym_type_annotation, + [193308] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6039), 1, - sym_comment, - ACTIONS(9488), 3, - sym__automatic_semicolon, + ACTIONS(9791), 1, anon_sym_COMMA, - anon_sym_SEMI, - [192732] = 4, + ACTIONS(9793), 1, + anon_sym_RBRACK, + STATE(5906), 1, + sym_comment, + STATE(6044), 1, + aux_sym_tuple_type_repeat1, + [193327] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6040), 1, + ACTIONS(6099), 1, + anon_sym_extends, + ACTIONS(9795), 1, + anon_sym_AMP, + ACTIONS(9797), 1, + anon_sym_PIPE, + STATE(5907), 1, sym_comment, - ACTIONS(9557), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192747] = 4, + [193346] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6041), 1, + ACTIONS(9598), 1, + anon_sym_require, + ACTIONS(9799), 1, + sym_identifier, + STATE(5908), 1, sym_comment, - ACTIONS(9488), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192762] = 4, + STATE(6102), 1, + sym_nested_identifier, + [193365] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6042), 1, - sym_comment, - ACTIONS(9621), 3, - sym__automatic_semicolon, + ACTIONS(9801), 1, anon_sym_COMMA, - anon_sym_SEMI, - [192777] = 4, + ACTIONS(9803), 1, + anon_sym_GT, + STATE(5909), 1, + sym_comment, + STATE(5932), 1, + aux_sym_type_arguments_repeat1, + [193384] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6043), 1, + ACTIONS(9805), 1, + sym_identifier, + ACTIONS(9807), 1, + anon_sym_LBRACK, + ACTIONS(9809), 1, + sym_private_property_identifier, + STATE(5910), 1, sym_comment, - ACTIONS(9571), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192792] = 4, + [193403] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6044), 1, + ACTIONS(9811), 1, + sym_identifier, + ACTIONS(9813), 1, + anon_sym_LBRACK, + ACTIONS(9815), 1, + sym_private_property_identifier, + STATE(5911), 1, sym_comment, - ACTIONS(9621), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192807] = 4, + [193422] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6045), 1, + STATE(5912), 1, sym_comment, - ACTIONS(9575), 3, + ACTIONS(9443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192822] = 4, + [193437] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(9817), 1, + sym_identifier, + ACTIONS(9819), 1, + anon_sym_LBRACK, + ACTIONS(9821), 1, + sym_private_property_identifier, + STATE(5913), 1, + sym_comment, + [193456] = 6, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(6046), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9399), 1, + anon_sym_LBRACE, + ACTIONS(9823), 1, + sym_identifier, + STATE(5538), 1, + sym_export_clause, + STATE(5914), 1, sym_comment, - ACTIONS(9621), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192837] = 4, + [193475] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6047), 1, + ACTIONS(8965), 1, + anon_sym_from, + ACTIONS(9395), 1, + anon_sym_as, + STATE(5915), 1, sym_comment, - ACTIONS(9497), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [192852] = 4, + STATE(6627), 1, + sym__from_clause, + [193494] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6048), 1, - sym_comment, - ACTIONS(9621), 3, - sym__automatic_semicolon, + ACTIONS(9825), 1, anon_sym_COMMA, - anon_sym_SEMI, - [192867] = 4, + ACTIONS(9827), 1, + anon_sym_RBRACE, + STATE(5916), 1, + sym_comment, + STATE(6061), 1, + aux_sym_enum_body_repeat1, + [193513] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6049), 1, + STATE(5917), 1, sym_comment, - ACTIONS(9497), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [192882] = 4, + [193528] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6050), 1, - sym_comment, - ACTIONS(9452), 3, - sym__automatic_semicolon, + ACTIONS(9829), 1, anon_sym_COMMA, - anon_sym_SEMI, - [192897] = 6, + ACTIONS(9831), 1, + anon_sym_RBRACE, + STATE(5918), 1, + sym_comment, + STATE(6061), 1, + aux_sym_enum_body_repeat1, + [193547] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9362), 1, - anon_sym_LBRACE, - ACTIONS(9623), 1, + ACTIONS(9833), 1, sym_identifier, - STATE(5657), 1, - sym_export_clause, - STATE(6051), 1, + ACTIONS(9835), 1, + anon_sym_LBRACK, + ACTIONS(9837), 1, + sym_private_property_identifier, + STATE(5919), 1, sym_comment, - [192916] = 4, + [193566] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6052), 1, - sym_comment, - ACTIONS(9488), 3, - sym__automatic_semicolon, + ACTIONS(9839), 1, anon_sym_COMMA, - anon_sym_SEMI, - [192931] = 6, + ACTIONS(9841), 1, + anon_sym_GT, + STATE(5920), 1, + sym_comment, + STATE(5932), 1, + aux_sym_type_arguments_repeat1, + [193585] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - ACTIONS(9561), 1, - anon_sym_as, - STATE(6053), 1, + ACTIONS(9843), 1, + anon_sym_COMMA, + ACTIONS(9845), 1, + anon_sym_RPAREN, + STATE(5896), 1, + aux_sym_formal_parameters_repeat1, + STATE(5921), 1, sym_comment, - STATE(6868), 1, - sym__from_clause, - [192950] = 6, + [193604] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9625), 1, + ACTIONS(9847), 1, anon_sym_COMMA, - ACTIONS(9627), 1, - anon_sym_RBRACK, - STATE(5863), 1, - aux_sym_tuple_type_repeat1, - STATE(6054), 1, + ACTIONS(9849), 1, + anon_sym_GT, + STATE(5922), 1, sym_comment, - [192969] = 4, + STATE(5932), 1, + aux_sym_type_arguments_repeat1, + [193623] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6055), 1, - sym_comment, - ACTIONS(9565), 3, - sym__automatic_semicolon, + ACTIONS(9851), 1, anon_sym_COMMA, - anon_sym_SEMI, - [192984] = 6, + ACTIONS(9853), 1, + anon_sym_GT, + STATE(5923), 1, + sym_comment, + STATE(5937), 1, + aux_sym_type_parameters_repeat1, + [193642] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(208), 1, - anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8004), 1, - anon_sym_LBRACE_PIPE, - STATE(6056), 1, + ACTIONS(9855), 1, + anon_sym_COMMA, + ACTIONS(9857), 1, + anon_sym_RBRACK, + STATE(5924), 1, sym_comment, - STATE(6686), 1, - sym_object_type, - [193003] = 4, + STATE(6002), 1, + aux_sym_tuple_type_repeat1, + [193661] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6057), 1, + STATE(5925), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193018] = 6, + [193676] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7143), 1, - anon_sym_DQUOTE, - ACTIONS(7145), 1, - anon_sym_SQUOTE, - STATE(6058), 1, + ACTIONS(6544), 1, + sym__automatic_semicolon, + STATE(5926), 1, sym_comment, - STATE(7280), 1, - sym_string, - [193037] = 4, + ACTIONS(2380), 2, + anon_sym_else, + anon_sym_while, + [193693] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6059), 1, - sym_comment, - ACTIONS(9497), 3, + ACTIONS(6542), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193052] = 6, + STATE(5927), 1, + sym_comment, + ACTIONS(2376), 2, + anon_sym_else, + anon_sym_while, + [193710] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5080), 1, - anon_sym_COMMA, - ACTIONS(8762), 1, - anon_sym_RPAREN, - STATE(6060), 1, + ACTIONS(6499), 1, + sym__automatic_semicolon, + STATE(5928), 1, sym_comment, - STATE(6191), 1, - aux_sym_sequence_expression_repeat1, - [193071] = 5, + ACTIONS(2370), 2, + anon_sym_else, + anon_sym_while, + [193727] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9629), 1, - anon_sym_COMMA, - ACTIONS(9632), 1, - anon_sym_RBRACE, - STATE(6061), 2, + ACTIONS(6497), 1, + sym__automatic_semicolon, + STATE(5929), 1, sym_comment, - aux_sym_named_imports_repeat1, - [193088] = 4, + ACTIONS(2366), 2, + anon_sym_else, + anon_sym_while, + [193744] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6062), 1, + ACTIONS(7923), 1, + anon_sym_DOT, + STATE(5930), 1, sym_comment, - ACTIONS(9486), 3, - sym__automatic_semicolon, + ACTIONS(9859), 2, anon_sym_COMMA, - anon_sym_SEMI, - [193103] = 6, + anon_sym_GT, + [193761] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(1377), 1, + ACTIONS(208), 1, anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8085), 1, + ACTIONS(8100), 1, anon_sym_LBRACE_PIPE, - STATE(5051), 1, - sym_object_type, - STATE(6063), 1, + STATE(5931), 1, sym_comment, - [193122] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6632), 1, + sym_object_type, + [193780] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(7255), 1, - anon_sym_type, - ACTIONS(9634), 1, - sym_identifier, - STATE(6064), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8761), 1, + anon_sym_GT, + ACTIONS(9861), 1, + anon_sym_COMMA, + STATE(5932), 2, sym_comment, - STATE(6794), 1, - sym__import_identifier, - [193141] = 6, + aux_sym_type_arguments_repeat1, + [193797] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9636), 1, - anon_sym_COMMA, - ACTIONS(9638), 1, - anon_sym_RBRACE, - STATE(6065), 1, + ACTIONS(6495), 1, + sym__automatic_semicolon, + STATE(5933), 1, sym_comment, - STATE(6101), 1, - aux_sym_enum_body_repeat1, - [193160] = 6, + ACTIONS(2362), 2, + anon_sym_else, + anon_sym_while, + [193814] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, + ACTIONS(5960), 1, anon_sym_COMMA, - ACTIONS(9640), 1, + ACTIONS(6004), 1, anon_sym_RPAREN, - STATE(6066), 1, + STATE(5934), 1, sym_comment, - STATE(6185), 1, + STATE(6052), 1, aux_sym_array_repeat1, - [193179] = 4, + [193833] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6067), 1, - sym_comment, - ACTIONS(9565), 3, - sym__automatic_semicolon, + ACTIONS(5960), 1, anon_sym_COMMA, - anon_sym_SEMI, - [193194] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9456), 1, - anon_sym_require, - ACTIONS(9642), 1, - sym_identifier, - STATE(5784), 1, - sym_nested_identifier, - STATE(6068), 1, + ACTIONS(6004), 1, + anon_sym_RPAREN, + STATE(5801), 1, + aux_sym_array_repeat1, + STATE(5935), 1, sym_comment, - [193213] = 4, + [193852] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6069), 1, + ACTIONS(4458), 1, + anon_sym_LBRACE, + STATE(5936), 1, sym_comment, - ACTIONS(9486), 3, - sym__automatic_semicolon, + ACTIONS(5242), 2, anon_sym_COMMA, - anon_sym_SEMI, - [193228] = 4, + anon_sym_LBRACE_PIPE, + [193869] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6070), 1, - sym_comment, - ACTIONS(9571), 3, - sym__automatic_semicolon, + ACTIONS(9864), 1, anon_sym_COMMA, - anon_sym_SEMI, - [193243] = 4, + ACTIONS(9867), 1, + anon_sym_GT, + STATE(5937), 2, + sym_comment, + aux_sym_type_parameters_repeat1, + [193886] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6071), 1, + STATE(5938), 1, sym_comment, - ACTIONS(9452), 3, + ACTIONS(9391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193258] = 6, + [193901] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3297), 1, - anon_sym_while, - ACTIONS(9644), 1, - anon_sym_else, - STATE(6072), 1, + ACTIONS(9869), 1, + anon_sym_COMMA, + ACTIONS(9871), 1, + anon_sym_RBRACE, + STATE(5939), 1, sym_comment, - STATE(6987), 1, - sym_else_clause, - [193277] = 5, + STATE(6012), 1, + aux_sym_enum_body_repeat1, + [193920] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8107), 1, - anon_sym_EQ, - STATE(6073), 1, - sym_comment, - ACTIONS(4441), 2, - anon_sym_in, - anon_sym_of, - [193294] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7255), 1, - anon_sym_type, - ACTIONS(9634), 1, - sym_identifier, - STATE(6074), 1, + ACTIONS(5960), 1, + anon_sym_COMMA, + ACTIONS(9873), 1, + anon_sym_RPAREN, + STATE(5801), 1, + aux_sym_array_repeat1, + STATE(5940), 1, sym_comment, - STATE(6842), 1, - sym__import_identifier, - [193313] = 4, + [193939] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6075), 1, + STATE(5941), 1, sym_comment, - ACTIONS(9571), 3, + ACTIONS(9875), 3, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_from, anon_sym_SEMI, - [193328] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(9646), 1, - anon_sym_RPAREN, - STATE(6076), 1, - sym_comment, - STATE(7201), 1, - sym_type_annotation, - [193347] = 4, + [193954] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6077), 1, + STATE(5942), 1, sym_comment, - ACTIONS(9648), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193362] = 5, + [193969] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9650), 1, + ACTIONS(9877), 1, anon_sym_COMMA, - ACTIONS(9653), 1, + ACTIONS(9880), 1, anon_sym_RBRACE, - STATE(6078), 2, + STATE(5943), 2, sym_comment, aux_sym_export_clause_repeat1, - [193379] = 4, + [193986] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6079), 1, + STATE(5944), 1, sym_comment, - ACTIONS(9655), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [193394] = 6, + [194001] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, - anon_sym_COMMA, - ACTIONS(9657), 1, + ACTIONS(4297), 1, + anon_sym_COLON, + ACTIONS(9882), 1, anon_sym_RPAREN, - STATE(6080), 1, + STATE(5945), 1, sym_comment, - STATE(6185), 1, - aux_sym_array_repeat1, - [193413] = 6, + STATE(7028), 1, + sym_type_annotation, + [194020] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9659), 1, - anon_sym_COMMA, - ACTIONS(9661), 1, - anon_sym_RBRACE, - STATE(5840), 1, - aux_sym_enum_body_repeat1, - STATE(6081), 1, + STATE(5946), 1, sym_comment, - [193432] = 4, + ACTIONS(9486), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194035] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6082), 1, + STATE(5947), 1, sym_comment, - ACTIONS(9575), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193447] = 4, + [194050] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6083), 1, + STATE(5948), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193462] = 4, + [194065] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6084), 1, + ACTIONS(9884), 1, + anon_sym_LBRACE, + STATE(5949), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(8806), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [194082] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5950), 1, + sym_comment, + ACTIONS(9443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193477] = 6, + [194097] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8046), 1, - anon_sym_LBRACE, - ACTIONS(8048), 1, - anon_sym_LBRACE_PIPE, - STATE(1692), 1, - sym_object_type, - STATE(6085), 1, + ACTIONS(9886), 1, + anon_sym_LPAREN, + ACTIONS(9888), 1, + anon_sym_await, + STATE(88), 1, + sym__for_header, + STATE(5951), 1, sym_comment, - [193496] = 5, + [194116] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9663), 1, + ACTIONS(7948), 1, anon_sym_COMMA, - ACTIONS(9666), 1, - anon_sym_GT, - STATE(6086), 2, + ACTIONS(9890), 1, + anon_sym_RBRACE, + STATE(5746), 1, + aux_sym_object_repeat1, + STATE(5952), 1, sym_comment, - aux_sym_type_parameters_repeat1, - [193513] = 4, + [194135] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6087), 1, + ACTIONS(8127), 1, + anon_sym_LBRACE, + ACTIONS(8129), 1, + anon_sym_LBRACE_PIPE, + STATE(1548), 1, + sym_object_type, + STATE(5953), 1, + sym_comment, + [194154] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7264), 1, + anon_sym_type, + ACTIONS(9732), 1, + sym_identifier, + STATE(5954), 1, sym_comment, - ACTIONS(9668), 3, + STATE(6656), 1, + sym__import_identifier, + [194173] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9892), 1, + sym_identifier, + ACTIONS(9894), 1, + anon_sym_SEMI, + ACTIONS(9896), 1, sym__automatic_semicolon, - anon_sym_COMMA, + STATE(5955), 1, + sym_comment, + [194192] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9898), 1, + sym_identifier, + ACTIONS(9900), 1, anon_sym_SEMI, - [193528] = 4, + ACTIONS(9902), 1, + sym__automatic_semicolon, + STATE(5956), 1, + sym_comment, + [194211] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9598), 1, + anon_sym_require, + ACTIONS(9904), 1, + sym_identifier, + STATE(5745), 1, + sym_nested_identifier, + STATE(5957), 1, + sym_comment, + [194230] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6088), 1, + STATE(5958), 1, sym_comment, - ACTIONS(9668), 3, + ACTIONS(9470), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193543] = 5, + [194245] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8906), 1, - anon_sym_GT, - ACTIONS(9670), 1, + ACTIONS(7948), 1, + anon_sym_COMMA, + ACTIONS(9906), 1, + anon_sym_RBRACE, + STATE(5746), 1, + aux_sym_object_repeat1, + STATE(5959), 1, + sym_comment, + [194264] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(7264), 1, + anon_sym_type, + ACTIONS(9732), 1, + sym_identifier, + STATE(5960), 1, + sym_comment, + STATE(6657), 1, + sym__import_identifier, + [194283] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9908), 1, anon_sym_COMMA, - STATE(6089), 2, + ACTIONS(9911), 1, + anon_sym_RBRACE, + STATE(5961), 2, sym_comment, - aux_sym_type_arguments_repeat1, - [193560] = 5, + aux_sym_named_imports_repeat1, + [194300] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8131), 1, - anon_sym_DOT, - STATE(6090), 1, + STATE(5962), 1, sym_comment, - ACTIONS(9673), 2, + ACTIONS(9470), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [193577] = 4, + anon_sym_SEMI, + [194315] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6091), 1, + STATE(5963), 1, sym_comment, - ACTIONS(9565), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193592] = 6, + [194330] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9675), 1, - anon_sym_COMMA, - ACTIONS(9677), 1, - anon_sym_RBRACK, - STATE(5863), 1, - aux_sym_tuple_type_repeat1, - STATE(6092), 1, + STATE(5964), 1, sym_comment, - [193611] = 6, + ACTIONS(9468), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194345] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - ACTIONS(9561), 1, - anon_sym_as, - STATE(6093), 1, + ACTIONS(7152), 1, + anon_sym_DQUOTE, + ACTIONS(7154), 1, + anon_sym_SQUOTE, + STATE(5965), 1, sym_comment, - STATE(6692), 1, - sym__from_clause, - [193630] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(7119), 1, + sym_string, + [194364] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9362), 1, - anon_sym_LBRACE, - ACTIONS(9679), 1, - sym_identifier, - STATE(5566), 1, - sym_export_clause, - STATE(6094), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5966), 1, sym_comment, - [193649] = 4, + ACTIONS(9468), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194379] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6095), 1, + STATE(5967), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193664] = 4, + [194394] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6096), 1, + STATE(5968), 1, sym_comment, - ACTIONS(9565), 3, + ACTIONS(9443), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193679] = 6, + [194409] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9681), 1, + ACTIONS(9399), 1, + anon_sym_LBRACE, + ACTIONS(9913), 1, sym_identifier, - ACTIONS(9683), 1, - anon_sym_LBRACK, - ACTIONS(9685), 1, - sym_private_property_identifier, - STATE(6097), 1, + STATE(5474), 1, + sym_export_clause, + STATE(5969), 1, sym_comment, - [193698] = 4, + [194428] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6098), 1, + ACTIONS(8965), 1, + anon_sym_from, + ACTIONS(9395), 1, + anon_sym_as, + STATE(5970), 1, sym_comment, - ACTIONS(9452), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [193713] = 6, + STATE(6720), 1, + sym__from_clause, + [194447] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9687), 1, - anon_sym_COMMA, - ACTIONS(9689), 1, - anon_sym_RBRACE, - STATE(5896), 1, - aux_sym_enum_body_repeat1, - STATE(6099), 1, - sym_comment, - [193732] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9691), 1, - sym_identifier, - ACTIONS(9693), 1, - anon_sym_LBRACK, - ACTIONS(9695), 1, - sym_private_property_identifier, - STATE(6100), 1, + STATE(5971), 1, sym_comment, - [193751] = 6, + ACTIONS(9470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194462] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9697), 1, - anon_sym_COMMA, - ACTIONS(9699), 1, - anon_sym_RBRACE, - STATE(5896), 1, - aux_sym_enum_body_repeat1, - STATE(6101), 1, + STATE(5972), 1, sym_comment, - [193770] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(8084), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [194477] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9701), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_LBRACK, - ACTIONS(9705), 1, - sym_private_property_identifier, - STATE(6102), 1, - sym_comment, - [193789] = 6, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9707), 1, - sym_identifier, - ACTIONS(9709), 1, - anon_sym_LBRACK, - ACTIONS(9711), 1, - sym_private_property_identifier, - STATE(6103), 1, + ACTIONS(4297), 1, + anon_sym_COLON, + ACTIONS(9915), 1, + anon_sym_RPAREN, + STATE(5973), 1, sym_comment, - [193808] = 4, + STATE(7122), 1, + sym_type_annotation, + [194496] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6104), 1, + STATE(5974), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9917), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193823] = 4, + [194511] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6105), 1, + STATE(5975), 1, sym_comment, - ACTIONS(9565), 3, + ACTIONS(9917), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193838] = 6, + [194526] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9713), 1, - anon_sym_COMMA, - ACTIONS(9715), 1, - anon_sym_RBRACE, - STATE(5896), 1, - aux_sym_enum_body_repeat1, - STATE(6106), 1, + STATE(5976), 1, sym_comment, - [193857] = 6, + ACTIONS(9470), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194541] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9717), 1, - anon_sym_COMMA, - ACTIONS(9719), 1, - anon_sym_RBRACE, - STATE(5896), 1, - aux_sym_enum_body_repeat1, - STATE(6107), 1, - sym_comment, - [193876] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9456), 1, - anon_sym_require, - ACTIONS(9721), 1, - sym_identifier, - STATE(6108), 1, + STATE(5977), 1, sym_comment, - STATE(6285), 1, - sym_nested_identifier, - [193895] = 6, + ACTIONS(9468), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194556] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(9723), 1, - anon_sym_RPAREN, - STATE(6109), 1, + STATE(5978), 1, sym_comment, - STATE(7129), 1, - sym_type_annotation, - [193914] = 4, + ACTIONS(9919), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194571] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6110), 1, + STATE(5979), 1, sym_comment, - ACTIONS(9565), 3, + ACTIONS(9468), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193929] = 6, + [194586] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8295), 1, - anon_sym_COMMA, - ACTIONS(9725), 1, - anon_sym_LBRACE, - STATE(5891), 1, - aux_sym_implements_clause_repeat1, - STATE(6111), 1, + STATE(5980), 1, sym_comment, - [193948] = 4, + ACTIONS(9921), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194601] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6112), 1, + STATE(5981), 1, sym_comment, - ACTIONS(9571), 3, + ACTIONS(9391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193963] = 5, + [194616] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9727), 1, - anon_sym_LBRACE, - STATE(6113), 1, + STATE(5982), 1, sym_comment, - ACTIONS(8813), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [193980] = 4, + ACTIONS(9377), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194631] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6114), 1, + STATE(5983), 1, sym_comment, - ACTIONS(9729), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [193995] = 6, + [194646] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - ACTIONS(9561), 1, - anon_sym_as, - STATE(6115), 1, - sym_comment, - STATE(6556), 1, - sym__from_clause, - [194014] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9362), 1, - anon_sym_LBRACE, - ACTIONS(9731), 1, - sym_identifier, - STATE(5622), 1, - sym_export_clause, - STATE(6116), 1, + STATE(5984), 1, sym_comment, - [194033] = 5, + ACTIONS(9917), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194661] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9733), 1, - anon_sym_COMMA, - ACTIONS(9736), 1, - anon_sym_RPAREN, - STATE(6117), 2, + STATE(5985), 1, sym_comment, - aux_sym_formal_parameters_repeat1, - [194050] = 4, + ACTIONS(9923), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194676] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6118), 1, + STATE(5986), 1, sym_comment, - ACTIONS(9571), 3, + ACTIONS(9923), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194065] = 4, + [194691] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6119), 1, + STATE(5987), 1, sym_comment, - ACTIONS(8111), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [194080] = 4, + ACTIONS(9925), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194706] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6120), 1, + STATE(5988), 1, sym_comment, - ACTIONS(9738), 3, - anon_sym_default, - anon_sym_RBRACE, - anon_sym_case, - [194095] = 4, + ACTIONS(9927), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194721] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6121), 1, + STATE(5989), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194110] = 4, + [194736] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6122), 1, + STATE(5990), 1, sym_comment, - ACTIONS(9452), 3, + ACTIONS(9929), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194125] = 4, + [194751] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6123), 1, + STATE(5991), 1, sym_comment, - ACTIONS(8959), 3, - sym__automatic_semicolon, + ACTIONS(9931), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [194140] = 4, + anon_sym_implements, + [194766] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6124), 1, + STATE(5992), 1, sym_comment, - ACTIONS(9575), 3, + ACTIONS(9933), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194155] = 4, + [194781] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6125), 1, - sym_comment, - ACTIONS(9740), 3, - sym__automatic_semicolon, + ACTIONS(8795), 1, + anon_sym_LBRACE, + ACTIONS(9935), 1, anon_sym_COMMA, - anon_sym_SEMI, - [194170] = 4, + STATE(5993), 2, + sym_comment, + aux_sym_implements_clause_repeat1, + [194798] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6126), 1, + STATE(5994), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9938), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194185] = 4, + [194813] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6127), 1, + ACTIONS(7865), 1, + anon_sym_DOT, + STATE(5995), 1, sym_comment, - ACTIONS(9742), 3, + ACTIONS(9940), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [194200] = 4, + [194830] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6128), 1, + STATE(5996), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194215] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [194845] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9456), 1, - anon_sym_require, - ACTIONS(9744), 1, - sym_identifier, - STATE(6129), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(5997), 1, sym_comment, - STATE(6383), 1, - sym_nested_identifier, - [194234] = 4, + ACTIONS(9369), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194860] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6130), 1, + STATE(5998), 1, sym_comment, - ACTIONS(9497), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194249] = 4, + [194875] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6131), 1, + STATE(5999), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9925), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194264] = 4, + [194890] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6132), 1, + ACTIONS(7867), 1, + anon_sym_DOT, + STATE(6000), 1, sym_comment, - ACTIONS(9565), 3, + ACTIONS(9940), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [194279] = 4, + [194907] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6133), 1, - sym_comment, - ACTIONS(9486), 3, + ACTIONS(6421), 1, sym__automatic_semicolon, + STATE(6001), 1, + sym_comment, + ACTIONS(2358), 2, + anon_sym_else, + anon_sym_while, + [194924] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9942), 1, anon_sym_COMMA, - anon_sym_SEMI, - [194294] = 6, + ACTIONS(9945), 1, + anon_sym_RBRACK, + STATE(6002), 2, + sym_comment, + aux_sym_tuple_type_repeat1, + [194941] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9746), 1, - anon_sym_LPAREN, - ACTIONS(9748), 1, - anon_sym_await, - STATE(119), 1, - sym__for_header, - STATE(6134), 1, + STATE(6003), 1, sym_comment, - [194313] = 4, + ACTIONS(9947), 3, + sym__template_chars, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [194956] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6135), 1, + STATE(6004), 1, sym_comment, - ACTIONS(9452), 3, + ACTIONS(9391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194328] = 6, + [194971] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, - anon_sym_COMMA, - ACTIONS(9750), 1, - anon_sym_RPAREN, - STATE(6136), 1, + STATE(6005), 1, sym_comment, - STATE(6185), 1, - aux_sym_array_repeat1, - [194347] = 4, + ACTIONS(9949), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [194986] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6137), 1, + STATE(6006), 1, sym_comment, - ACTIONS(9565), 3, + ACTIONS(9391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194362] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [195001] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9752), 1, - sym_identifier, - ACTIONS(9754), 1, - anon_sym_SEMI, - ACTIONS(9756), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(6372), 1, sym__automatic_semicolon, - STATE(6138), 1, + STATE(6007), 1, sym_comment, - [194381] = 6, + ACTIONS(2352), 2, + anon_sym_else, + anon_sym_while, + [195018] = 6, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9758), 1, + ACTIONS(9086), 1, sym_identifier, - ACTIONS(9760), 1, - anon_sym_SEMI, - ACTIONS(9762), 1, - sym__automatic_semicolon, - STATE(6139), 1, + ACTIONS(9088), 1, + anon_sym_const, + STATE(6008), 1, sym_comment, - [194400] = 6, + STATE(6833), 1, + sym_type_parameter, + [195037] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9764), 1, - anon_sym_COMMA, - ACTIONS(9766), 1, - anon_sym_RBRACE, - STATE(6106), 1, - aux_sym_enum_body_repeat1, - STATE(6140), 1, + ACTIONS(6322), 1, + sym__automatic_semicolon, + STATE(6009), 1, sym_comment, - [194419] = 5, + ACTIONS(2348), 2, + anon_sym_else, + anon_sym_while, + [195054] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9768), 1, - anon_sym_EQ, - STATE(6141), 1, + ACTIONS(6320), 1, + sym__automatic_semicolon, + STATE(6010), 1, sym_comment, - ACTIONS(9770), 2, - anon_sym_COMMA, - anon_sym_from, - [194436] = 4, + ACTIONS(2344), 2, + anon_sym_else, + anon_sym_while, + [195071] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6142), 1, - sym_comment, - ACTIONS(9488), 3, - sym__automatic_semicolon, + ACTIONS(9951), 1, anon_sym_COMMA, - anon_sym_SEMI, - [194451] = 5, + ACTIONS(9953), 1, + anon_sym_RBRACE, + STATE(6011), 1, + sym_comment, + STATE(6061), 1, + aux_sym_enum_body_repeat1, + [195090] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9772), 1, - anon_sym_as, - STATE(6143), 1, - sym_comment, - ACTIONS(9774), 2, + ACTIONS(9955), 1, anon_sym_COMMA, + ACTIONS(9957), 1, anon_sym_RBRACE, - [194468] = 5, + STATE(6012), 1, + sym_comment, + STATE(6061), 1, + aux_sym_enum_body_repeat1, + [195109] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6426), 1, - sym__automatic_semicolon, - STATE(6144), 1, + STATE(6013), 1, sym_comment, - ACTIONS(2390), 2, - anon_sym_else, - anon_sym_while, - [194485] = 6, + ACTIONS(9959), 3, + sym__automatic_semicolon, + anon_sym_from, + anon_sym_SEMI, + [195124] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9776), 1, - anon_sym_COMMA, - ACTIONS(9778), 1, - anon_sym_RBRACK, - STATE(5863), 1, - aux_sym_tuple_type_repeat1, - STATE(6145), 1, + ACTIONS(7192), 1, + anon_sym_LPAREN, + ACTIONS(9961), 1, + anon_sym_DOT, + STATE(4810), 1, + sym_arguments, + STATE(6014), 1, sym_comment, - [194504] = 4, + [195143] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6146), 1, + STATE(6015), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9963), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194519] = 4, + [195158] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6147), 1, + STATE(6016), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9965), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194534] = 4, + [195173] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6148), 1, + STATE(6017), 1, sym_comment, - ACTIONS(9571), 3, + ACTIONS(9965), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194549] = 4, + [195188] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6149), 1, + STATE(6018), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9967), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194564] = 4, + [195203] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6150), 1, + STATE(6019), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9963), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194579] = 4, + [195218] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6151), 1, + STATE(6020), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9969), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194594] = 4, + [195233] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6152), 1, + STATE(6021), 1, sym_comment, - ACTIONS(9452), 3, + ACTIONS(9971), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194609] = 6, + [195248] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4295), 1, - anon_sym_COLON, - ACTIONS(9780), 1, - anon_sym_RPAREN, - STATE(6153), 1, + ACTIONS(9973), 1, + anon_sym_LBRACE, + STATE(6022), 1, sym_comment, - STATE(7170), 1, - sym_type_annotation, - [194628] = 5, + ACTIONS(8763), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [195265] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7868), 1, - anon_sym_DOT, - STATE(6154), 1, + STATE(6023), 1, sym_comment, - ACTIONS(9782), 2, + ACTIONS(9377), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [194645] = 4, + [195280] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6155), 1, + STATE(6024), 1, sym_comment, - ACTIONS(9571), 3, + ACTIONS(9975), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194660] = 5, + [195295] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7870), 1, - anon_sym_DOT, - STATE(6156), 1, + STATE(6025), 1, sym_comment, - ACTIONS(9782), 2, + ACTIONS(9369), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [194677] = 4, + [195310] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6157), 1, + STATE(6026), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9965), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194692] = 6, + [195325] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9784), 1, - anon_sym_COMMA, - ACTIONS(9786), 1, - anon_sym_RBRACE, - STATE(6061), 1, - aux_sym_named_imports_repeat1, - STATE(6158), 1, - sym_comment, - [194711] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7255), 1, - anon_sym_type, - ACTIONS(9634), 1, - sym_identifier, - STATE(6159), 1, + STATE(6027), 1, sym_comment, - STATE(6956), 1, - sym__import_identifier, - [194730] = 4, + ACTIONS(9977), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195340] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6160), 1, + STATE(6028), 1, sym_comment, - ACTIONS(9488), 3, + ACTIONS(9971), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194745] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7255), 1, - anon_sym_type, - ACTIONS(9634), 1, - sym_identifier, - STATE(6161), 1, - sym_comment, - STATE(6964), 1, - sym__import_identifier, - [194764] = 4, + [195355] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6162), 1, + STATE(6029), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9963), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194779] = 4, + [195370] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6163), 1, + STATE(6030), 1, sym_comment, - ACTIONS(9486), 3, + ACTIONS(9979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194794] = 5, + [195385] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9788), 1, - anon_sym_as, - STATE(6164), 1, + STATE(6031), 1, sym_comment, - ACTIONS(9790), 2, + ACTIONS(9979), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [194811] = 6, + anon_sym_SEMI, + [195400] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - ACTIONS(9561), 1, - anon_sym_as, - STATE(6165), 1, + STATE(6032), 1, sym_comment, - STATE(6454), 1, - sym__from_clause, - [194830] = 4, + ACTIONS(9981), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195415] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6166), 1, + STATE(6033), 1, sym_comment, - ACTIONS(9792), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194845] = 5, + [195430] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9287), 1, - anon_sym_EQ, - STATE(6167), 1, + STATE(6034), 1, sym_comment, - ACTIONS(9794), 2, + ACTIONS(9377), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [194862] = 4, + anon_sym_SEMI, + [195445] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6168), 1, + STATE(6035), 1, sym_comment, - ACTIONS(9565), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194877] = 4, + [195460] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6169), 1, + STATE(6036), 1, sym_comment, - ACTIONS(9575), 3, + ACTIONS(9983), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194892] = 4, + [195475] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6170), 1, + ACTIONS(4297), 1, + anon_sym_COLON, + ACTIONS(9985), 1, + anon_sym_RPAREN, + STATE(6037), 1, + sym_comment, + STATE(7136), 1, + sym_type_annotation, + [195494] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6038), 1, sym_comment, - ACTIONS(9796), 3, + ACTIONS(9983), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194907] = 5, + [195509] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7868), 1, - anon_sym_DOT, - STATE(6171), 1, + STATE(6039), 1, sym_comment, - ACTIONS(9798), 2, + ACTIONS(9983), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [194924] = 4, + [195524] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6172), 1, + STATE(6040), 1, sym_comment, - ACTIONS(9800), 3, + ACTIONS(9391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [194939] = 5, + [195539] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7870), 1, - anon_sym_DOT, - STATE(6173), 1, + STATE(6041), 1, sym_comment, - ACTIONS(9798), 2, + ACTIONS(9391), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [194956] = 6, + [195554] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9802), 1, - anon_sym_COMMA, - ACTIONS(9804), 1, - anon_sym_RBRACE, - STATE(6078), 1, - aux_sym_export_clause_repeat1, - STATE(6174), 1, + STATE(6042), 1, sym_comment, - [194975] = 4, + ACTIONS(3341), 3, + anon_sym_else, + anon_sym_while, + anon_sym_finally, + [195569] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6175), 1, + STATE(6043), 1, sym_comment, - ACTIONS(9806), 3, + ACTIONS(9983), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [194990] = 6, + [195584] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(9808), 1, - anon_sym_EQ, - STATE(6176), 1, + ACTIONS(9987), 1, + anon_sym_COMMA, + ACTIONS(9989), 1, + anon_sym_RBRACK, + STATE(6002), 1, + aux_sym_tuple_type_repeat1, + STATE(6044), 1, sym_comment, - STATE(7260), 1, - sym_type_parameters, - [195009] = 4, + [195603] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6177), 1, + STATE(6045), 1, sym_comment, - ACTIONS(9810), 3, + ACTIONS(9991), 3, sym__automatic_semicolon, - anon_sym_with, + anon_sym_COMMA, anon_sym_SEMI, - [195024] = 4, + [195618] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6178), 1, - sym_comment, - ACTIONS(8115), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [195039] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9812), 1, - sym__glimmer_template_content, - ACTIONS(9815), 1, - anon_sym_LT_SLASHtemplate_GT, - STATE(6179), 2, + STATE(6046), 1, sym_comment, - aux_sym_glimmer_template_repeat1, - [195056] = 6, + ACTIONS(9991), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195633] = 6, ACTIONS(5), 1, sym_html_comment, + ACTIONS(208), 1, + anon_sym_LBRACE, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, - anon_sym_COMMA, - ACTIONS(6005), 1, - anon_sym_RPAREN, - STATE(6180), 1, + ACTIONS(8100), 1, + anon_sym_LBRACE_PIPE, + STATE(6047), 1, sym_comment, - STATE(6185), 1, - aux_sym_array_repeat1, - [195075] = 4, + STATE(6807), 1, + sym_object_type, + [195652] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6181), 1, + STATE(6048), 1, sym_comment, - ACTIONS(9817), 3, + ACTIONS(9993), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195090] = 6, + [195667] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, + ACTIONS(9995), 1, anon_sym_COMMA, - ACTIONS(6005), 1, - anon_sym_RPAREN, - STATE(6080), 1, - aux_sym_array_repeat1, - STATE(6182), 1, + ACTIONS(9997), 1, + anon_sym_RBRACE, + STATE(6049), 1, sym_comment, - [195109] = 6, + STATE(6144), 1, + aux_sym_enum_body_repeat1, + [195686] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8046), 1, - anon_sym_LBRACE, - ACTIONS(8048), 1, - anon_sym_LBRACE_PIPE, - STATE(1645), 1, - sym_object_type, - STATE(6183), 1, + STATE(6050), 1, sym_comment, - [195128] = 6, + ACTIONS(9983), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195701] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9819), 1, - anon_sym_COMMA, - ACTIONS(9821), 1, - anon_sym_GT, - STATE(6086), 1, - aux_sym_type_parameters_repeat1, - STATE(6184), 1, + ACTIONS(9999), 1, + anon_sym_LBRACE, + ACTIONS(10001), 1, + anon_sym_LPAREN, + STATE(992), 1, + sym_statement_block, + STATE(6051), 1, sym_comment, - [195147] = 5, + [195720] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6099), 1, - anon_sym_RPAREN, - ACTIONS(9823), 1, + ACTIONS(5960), 1, anon_sym_COMMA, - STATE(6185), 2, - sym_comment, + ACTIONS(10003), 1, + anon_sym_RPAREN, + STATE(5801), 1, aux_sym_array_repeat1, - [195164] = 4, + STATE(6052), 1, + sym_comment, + [195739] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6186), 1, + STATE(6053), 1, sym_comment, - ACTIONS(9800), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195179] = 6, + [195754] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9826), 1, - anon_sym_COMMA, - ACTIONS(9828), 1, - anon_sym_GT, - STATE(6089), 1, - aux_sym_type_arguments_repeat1, - STATE(6187), 1, + STATE(6054), 1, sym_comment, - [195198] = 6, + ACTIONS(9983), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195769] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9830), 1, - anon_sym_COMMA, - ACTIONS(9832), 1, - anon_sym_GT, - STATE(6089), 1, - aux_sym_type_arguments_repeat1, - STATE(6188), 1, + STATE(6055), 1, sym_comment, - [195217] = 4, + ACTIONS(9371), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195784] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6189), 1, + STATE(6056), 1, sym_comment, - ACTIONS(9834), 3, + ACTIONS(9391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195232] = 6, + [195799] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9836), 1, - anon_sym_COMMA, - ACTIONS(9838), 1, - anon_sym_GT, - STATE(6089), 1, - aux_sym_type_arguments_repeat1, - STATE(6190), 1, + STATE(6057), 1, sym_comment, - [195251] = 5, + ACTIONS(9981), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195814] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5720), 1, - anon_sym_RPAREN, - ACTIONS(9840), 1, - anon_sym_COMMA, - STATE(6191), 2, + ACTIONS(9598), 1, + anon_sym_require, + ACTIONS(10005), 1, + sym_identifier, + STATE(6000), 1, + sym_nested_identifier, + STATE(6058), 1, sym_comment, - aux_sym_sequence_expression_repeat1, - [195268] = 6, + [195833] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7137), 1, - anon_sym_AMP, - ACTIONS(7139), 1, - anon_sym_PIPE, - ACTIONS(7141), 1, - anon_sym_extends, - STATE(6192), 1, + ACTIONS(8860), 1, + anon_sym_LBRACE, + STATE(6059), 1, sym_comment, - [195287] = 4, + ACTIONS(8862), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [195850] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6193), 1, + STATE(6060), 1, sym_comment, - ACTIONS(9843), 3, - sym__template_chars, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [195302] = 6, + ACTIONS(9371), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195865] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9845), 1, + ACTIONS(10007), 1, anon_sym_COMMA, - ACTIONS(9847), 1, - anon_sym_RBRACK, - STATE(6092), 1, - aux_sym_tuple_type_repeat1, - STATE(6194), 1, + ACTIONS(10010), 1, + anon_sym_RBRACE, + STATE(6061), 2, sym_comment, - [195321] = 4, + aux_sym_enum_body_repeat1, + [195882] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6195), 1, + STATE(6062), 1, sym_comment, - ACTIONS(3261), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [195336] = 6, + ACTIONS(9391), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195897] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, - anon_sym_COMMA, - ACTIONS(6003), 1, - anon_sym_RPAREN, - STATE(6185), 1, - aux_sym_array_repeat1, - STATE(6196), 1, + STATE(6063), 1, sym_comment, - [195355] = 6, + ACTIONS(9371), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195912] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, - anon_sym_COMMA, - ACTIONS(6003), 1, - anon_sym_RPAREN, - STATE(6136), 1, - aux_sym_array_repeat1, - STATE(6197), 1, + STATE(6064), 1, sym_comment, - [195374] = 6, + ACTIONS(10012), 3, + sym__automatic_semicolon, + anon_sym_with, + anon_sym_SEMI, + [195927] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(208), 1, - anon_sym_LBRACE, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8004), 1, - anon_sym_LBRACE_PIPE, - STATE(6198), 1, + ACTIONS(9086), 1, + sym_identifier, + ACTIONS(9088), 1, + anon_sym_const, + STATE(5784), 1, + sym_type_parameter, + STATE(6065), 1, sym_comment, - STATE(6795), 1, - sym_object_type, - [195393] = 6, + [195946] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9849), 1, + ACTIONS(10014), 1, anon_sym_COMMA, - ACTIONS(9851), 1, - anon_sym_GT, - STATE(6086), 1, - aux_sym_type_parameters_repeat1, - STATE(6199), 1, + ACTIONS(10016), 1, + anon_sym_RBRACK, + STATE(6066), 1, sym_comment, - [195412] = 4, + STATE(6122), 1, + aux_sym_tuple_type_repeat1, + [195965] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6200), 1, + STATE(6067), 1, sym_comment, - ACTIONS(6866), 3, + ACTIONS(10018), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195427] = 5, + [195980] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6343), 1, - sym__automatic_semicolon, - STATE(6201), 1, + STATE(6068), 1, sym_comment, - ACTIONS(2408), 2, - anon_sym_else, - anon_sym_while, - [195444] = 6, + ACTIONS(10020), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [195995] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9853), 1, + STATE(6069), 1, + sym_comment, + ACTIONS(10022), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9855), 1, - anon_sym_GT, - STATE(6089), 1, - aux_sym_type_arguments_repeat1, - STATE(6202), 1, + anon_sym_SEMI, + [196010] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7617), 1, + anon_sym_AMP, + ACTIONS(7619), 1, + anon_sym_PIPE, + ACTIONS(7621), 1, + anon_sym_extends, + STATE(6070), 1, sym_comment, - [195463] = 4, + [196029] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6203), 1, + STATE(6071), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(10024), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195478] = 5, + [196044] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6341), 1, - sym__automatic_semicolon, - STATE(6204), 1, + STATE(6072), 1, sym_comment, - ACTIONS(2412), 2, - anon_sym_else, - anon_sym_while, - [195495] = 6, + ACTIONS(10024), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196059] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9859), 1, + ACTIONS(10026), 1, anon_sym_COMMA, - ACTIONS(9861), 1, + ACTIONS(10028), 1, anon_sym_GT, - STATE(6089), 1, + STATE(5932), 1, aux_sym_type_arguments_repeat1, - STATE(6205), 1, + STATE(6073), 1, sym_comment, - [195514] = 5, + [196078] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6333), 1, - sym__automatic_semicolon, - STATE(6206), 1, + STATE(6074), 1, sym_comment, - ACTIONS(2416), 2, - anon_sym_else, - anon_sym_while, - [195531] = 6, + ACTIONS(9969), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196093] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9863), 1, + ACTIONS(10030), 1, anon_sym_COMMA, - ACTIONS(9865), 1, + ACTIONS(10032), 1, anon_sym_GT, - STATE(6089), 1, + STATE(5932), 1, aux_sym_type_arguments_repeat1, - STATE(6207), 1, + STATE(6075), 1, sym_comment, - [195550] = 5, + [196112] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6506), 1, - sym__automatic_semicolon, - STATE(6208), 1, + STATE(6076), 1, sym_comment, - ACTIONS(2354), 2, - anon_sym_else, - anon_sym_while, - [195567] = 5, + ACTIONS(10034), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196127] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9867), 1, + ACTIONS(10036), 1, anon_sym_COMMA, - ACTIONS(9870), 1, - anon_sym_RBRACK, - STATE(6209), 2, + ACTIONS(10038), 1, + anon_sym_GT, + STATE(5932), 1, + aux_sym_type_arguments_repeat1, + STATE(6077), 1, sym_comment, - aux_sym_array_pattern_repeat1, - [195584] = 6, + [196146] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6078), 1, - anon_sym_extends, - ACTIONS(9872), 1, - anon_sym_AMP, - ACTIONS(9874), 1, - anon_sym_PIPE, - STATE(6210), 1, + STATE(6078), 1, sym_comment, - [195603] = 5, + ACTIONS(9979), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196161] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9399), 1, + anon_sym_LBRACE, + ACTIONS(10040), 1, + sym_identifier, + STATE(5512), 1, + sym_export_clause, + STATE(6079), 1, + sym_comment, + [196180] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6099), 1, - anon_sym_RBRACK, - ACTIONS(9876), 1, - anon_sym_COMMA, - STATE(6211), 2, + STATE(6080), 1, sym_comment, - aux_sym_array_repeat1, - [195620] = 6, + ACTIONS(9979), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196195] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9289), 1, - anon_sym_COMMA, - ACTIONS(9879), 1, - anon_sym_RBRACK, - STATE(6209), 1, - aux_sym_array_pattern_repeat1, - STATE(6212), 1, + ACTIONS(8080), 1, + anon_sym_LBRACE, + ACTIONS(8082), 1, + anon_sym_LBRACE_PIPE, + STATE(1332), 1, + sym_object_type, + STATE(6081), 1, sym_comment, - [195639] = 6, + [196214] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9881), 1, + ACTIONS(10042), 1, anon_sym_COMMA, - ACTIONS(9883), 1, - anon_sym_RBRACK, - STATE(6145), 1, - aux_sym_tuple_type_repeat1, - STATE(6213), 1, + ACTIONS(10044), 1, + anon_sym_RPAREN, + STATE(5921), 1, + aux_sym_formal_parameters_repeat1, + STATE(6082), 1, sym_comment, - [195658] = 4, + [196233] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6214), 1, + STATE(6083), 1, sym_comment, - ACTIONS(9792), 3, + ACTIONS(9981), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195673] = 4, + [196248] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6215), 1, + STATE(6084), 1, sym_comment, - ACTIONS(9792), 3, + ACTIONS(9377), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195688] = 6, + [196263] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5987), 1, + ACTIONS(5960), 1, anon_sym_COMMA, - ACTIONS(9885), 1, - anon_sym_RBRACK, - STATE(6211), 1, - aux_sym_array_repeat1, - STATE(6216), 1, + ACTIONS(5974), 1, + anon_sym_RPAREN, + STATE(6085), 1, sym_comment, - [195707] = 4, + STATE(6134), 1, + aux_sym_array_repeat1, + [196282] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6217), 1, - sym_comment, - ACTIONS(9887), 3, - sym__automatic_semicolon, + ACTIONS(5960), 1, anon_sym_COMMA, - anon_sym_SEMI, - [195722] = 5, + ACTIONS(5974), 1, + anon_sym_RPAREN, + STATE(5801), 1, + aux_sym_array_repeat1, + STATE(6086), 1, + sym_comment, + [196301] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9287), 1, - anon_sym_EQ, - STATE(6218), 1, + STATE(6087), 1, sym_comment, - ACTIONS(9870), 2, + ACTIONS(9371), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [195739] = 4, + anon_sym_SEMI, + [196316] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6219), 1, + ACTIONS(8965), 1, + anon_sym_from, + ACTIONS(9395), 1, + anon_sym_as, + STATE(6088), 1, sym_comment, - ACTIONS(6099), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [195754] = 4, + STATE(6725), 1, + sym__from_clause, + [196335] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6220), 1, + STATE(6089), 1, sym_comment, - ACTIONS(9889), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195769] = 4, + [196350] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6221), 1, + STATE(6090), 1, sym_comment, - ACTIONS(9891), 3, + ACTIONS(10046), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195784] = 6, + [196365] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9893), 1, - anon_sym_LBRACE, - ACTIONS(9895), 1, - anon_sym_LPAREN, - STATE(1612), 1, - sym_statement_block, - STATE(6222), 1, + STATE(6091), 1, sym_comment, - [195803] = 6, + ACTIONS(10034), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196380] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9897), 1, - anon_sym_COMMA, - ACTIONS(9899), 1, - anon_sym_RPAREN, - STATE(6117), 1, - aux_sym_formal_parameters_repeat1, - STATE(6223), 1, + STATE(6092), 1, sym_comment, - [195822] = 5, + ACTIONS(10018), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196395] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6454), 1, - sym__automatic_semicolon, - STATE(6224), 1, + STATE(6093), 1, sym_comment, - ACTIONS(2404), 2, - anon_sym_else, - anon_sym_while, - [195839] = 5, + ACTIONS(10048), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196410] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9901), 1, - anon_sym_EQ, - STATE(6225), 1, + STATE(6094), 1, sym_comment, - ACTIONS(4441), 2, - anon_sym_in, - anon_sym_of, - [195856] = 6, + ACTIONS(9969), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196425] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, - anon_sym_COMMA, - ACTIONS(9903), 1, - anon_sym_RPAREN, - STATE(6185), 1, - aux_sym_array_repeat1, - STATE(6226), 1, + STATE(6095), 1, sym_comment, - [195875] = 4, + ACTIONS(9369), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196440] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6227), 1, + STATE(6096), 1, sym_comment, - ACTIONS(9891), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195890] = 4, + [196455] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6228), 1, + STATE(6097), 1, sym_comment, - ACTIONS(8934), 3, + ACTIONS(9391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195905] = 6, + [196470] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9289), 1, + ACTIONS(7948), 1, anon_sym_COMMA, - ACTIONS(9905), 1, - anon_sym_RBRACK, - STATE(6209), 1, - aux_sym_array_pattern_repeat1, - STATE(6229), 1, + ACTIONS(10050), 1, + anon_sym_RBRACE, + STATE(5746), 1, + aux_sym_object_repeat1, + STATE(6098), 1, sym_comment, - [195924] = 4, + [196489] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6230), 1, + STATE(6099), 1, sym_comment, - ACTIONS(9907), 3, + ACTIONS(10052), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195939] = 4, + [196504] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6231), 1, + STATE(6100), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(10052), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [195954] = 4, + [196519] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6232), 1, + ACTIONS(7865), 1, + anon_sym_DOT, + STATE(6101), 1, sym_comment, - ACTIONS(9909), 3, + ACTIONS(10054), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [195969] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5987), 1, - anon_sym_COMMA, - ACTIONS(9911), 1, - anon_sym_RBRACK, - STATE(6211), 1, - aux_sym_array_repeat1, - STATE(6233), 1, - sym_comment, - [195988] = 6, + [196536] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9913), 1, - anon_sym_LBRACE, - ACTIONS(9915), 1, - anon_sym_LPAREN, - STATE(1006), 1, - sym_statement_block, - STATE(6234), 1, + ACTIONS(7867), 1, + anon_sym_DOT, + STATE(6102), 1, sym_comment, - [196007] = 4, + ACTIONS(10054), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [196553] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6235), 1, + STATE(6103), 1, sym_comment, - ACTIONS(9917), 3, + ACTIONS(10056), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196022] = 4, + [196568] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6236), 1, + STATE(6104), 1, sym_comment, - ACTIONS(9909), 3, + ACTIONS(9969), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196037] = 4, + [196583] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6237), 1, + STATE(6105), 1, sym_comment, - ACTIONS(8934), 3, + ACTIONS(9981), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196052] = 6, + [196598] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, - anon_sym_LBRACE, - ACTIONS(9919), 1, - anon_sym_LPAREN, - STATE(6195), 1, - sym_statement_block, - STATE(6238), 1, + STATE(6106), 1, sym_comment, - [196071] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9921), 1, + ACTIONS(10048), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9923), 1, - anon_sym_RPAREN, - STATE(6117), 1, - aux_sym_formal_parameters_repeat1, - STATE(6239), 1, - sym_comment, - [196090] = 4, + anon_sym_SEMI, + [196613] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6240), 1, + STATE(6107), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196105] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9456), 1, - anon_sym_require, - ACTIONS(9925), 1, - sym_identifier, - STATE(6154), 1, - sym_nested_identifier, - STATE(6241), 1, - sym_comment, - [196124] = 4, + [196628] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6242), 1, + STATE(6108), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(10048), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196139] = 6, + [196643] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9927), 1, + ACTIONS(7948), 1, anon_sym_COMMA, - ACTIONS(9929), 1, + ACTIONS(10050), 1, anon_sym_RBRACE, - STATE(6158), 1, - aux_sym_named_imports_repeat1, - STATE(6243), 1, + STATE(5952), 1, + aux_sym_object_repeat1, + STATE(6109), 1, sym_comment, - [196158] = 4, + [196662] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6244), 1, + STATE(6110), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196173] = 6, + [196677] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, - anon_sym_COMMA, - ACTIONS(6034), 1, - anon_sym_RPAREN, - STATE(6185), 1, - aux_sym_array_repeat1, - STATE(6245), 1, + STATE(6111), 1, sym_comment, - [196192] = 5, + ACTIONS(9377), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196692] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9249), 1, - anon_sym_as, - STATE(6246), 1, + STATE(6112), 1, sym_comment, - ACTIONS(9770), 2, + ACTIONS(10052), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [196209] = 5, + anon_sym_SEMI, + [196707] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9931), 1, - anon_sym_EQ, - STATE(6247), 1, + ACTIONS(10058), 1, + sym_identifier, + ACTIONS(10060), 1, + anon_sym_LBRACK, + ACTIONS(10062), 1, + sym_private_property_identifier, + STATE(6113), 1, sym_comment, - ACTIONS(9770), 2, - anon_sym_COMMA, - anon_sym_from, - [196226] = 6, + [196726] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, - anon_sym_COMMA, - ACTIONS(6034), 1, - anon_sym_RPAREN, - STATE(6226), 1, - aux_sym_array_repeat1, - STATE(6248), 1, + STATE(6114), 1, sym_comment, - [196245] = 6, + ACTIONS(10052), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196741] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9933), 1, - anon_sym_COMMA, - ACTIONS(9935), 1, - anon_sym_RBRACK, - STATE(6249), 1, + ACTIONS(10064), 1, + sym_identifier, + ACTIONS(10066), 1, + anon_sym_LBRACK, + ACTIONS(10068), 1, + sym_private_property_identifier, + STATE(6115), 1, sym_comment, - STATE(6305), 1, - aux_sym_tuple_type_repeat1, - [196264] = 4, + [196760] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6250), 1, + STATE(6116), 1, sym_comment, - ACTIONS(9937), 3, + ACTIONS(10056), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196279] = 4, + [196775] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6251), 1, + ACTIONS(10070), 1, + sym_identifier, + ACTIONS(10072), 1, + anon_sym_LBRACK, + ACTIONS(10074), 1, + sym_private_property_identifier, + STATE(6117), 1, sym_comment, - ACTIONS(9790), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - [196294] = 6, + [196794] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9939), 1, - anon_sym_COMMA, - ACTIONS(9941), 1, - anon_sym_GT, - STATE(6089), 1, - aux_sym_type_arguments_repeat1, - STATE(6252), 1, + STATE(6118), 1, sym_comment, - [196313] = 6, + ACTIONS(10048), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196809] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7694), 1, - anon_sym_AMP, - ACTIONS(7696), 1, - anon_sym_PIPE, - ACTIONS(7698), 1, - anon_sym_extends, - STATE(6253), 1, + ACTIONS(10076), 1, + sym_identifier, + ACTIONS(10078), 1, + anon_sym_LBRACK, + ACTIONS(10080), 1, + sym_private_property_identifier, + STATE(6119), 1, sym_comment, - [196332] = 4, + [196828] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6254), 1, + STATE(6120), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196347] = 4, + [196843] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6255), 1, + STATE(6121), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196362] = 6, + [196858] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9943), 1, + ACTIONS(10082), 1, anon_sym_COMMA, - ACTIONS(9945), 1, - anon_sym_GT, - STATE(6089), 1, - aux_sym_type_arguments_repeat1, - STATE(6256), 1, + ACTIONS(10084), 1, + anon_sym_RBRACK, + STATE(6002), 1, + aux_sym_tuple_type_repeat1, + STATE(6122), 1, sym_comment, - [196381] = 5, + [196877] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9947), 1, - anon_sym_COMMA, - ACTIONS(9950), 1, - anon_sym_RBRACE, - STATE(6257), 2, + STATE(6123), 1, sym_comment, - aux_sym_object_pattern_repeat1, - [196398] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9952), 1, + ACTIONS(10048), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9954), 1, - anon_sym_GT, - STATE(6089), 1, - aux_sym_type_arguments_repeat1, - STATE(6258), 1, - sym_comment, - [196417] = 4, + anon_sym_SEMI, + [196892] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6259), 1, + STATE(6124), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(10048), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196432] = 6, + [196907] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9958), 1, - anon_sym_COMMA, - ACTIONS(9960), 1, - anon_sym_GT, - STATE(6089), 1, - aux_sym_type_arguments_repeat1, - STATE(6260), 1, + STATE(6125), 1, sym_comment, - [196451] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9962), 1, + ACTIONS(9969), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9964), 1, - anon_sym_GT, - STATE(6089), 1, - aux_sym_type_arguments_repeat1, - STATE(6261), 1, - sym_comment, - [196470] = 5, + anon_sym_SEMI, + [196922] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9966), 1, - anon_sym_COMMA, - ACTIONS(9969), 1, - anon_sym_RBRACE, - STATE(6262), 2, + STATE(6126), 1, sym_comment, - aux_sym_object_repeat1, - [196487] = 4, + ACTIONS(10086), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [196937] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6263), 1, + STATE(6127), 1, sym_comment, - ACTIONS(9792), 3, + ACTIONS(9969), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196502] = 6, + [196952] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8121), 1, - anon_sym_LBRACE, - ACTIONS(8123), 1, - anon_sym_LBRACE_PIPE, - STATE(1481), 1, - sym_object_type, - STATE(6264), 1, + STATE(6128), 1, sym_comment, - [196521] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8042), 1, + ACTIONS(9391), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9971), 1, - anon_sym_RBRACE, - STATE(6262), 1, - aux_sym_object_repeat1, - STATE(6265), 1, - sym_comment, - [196540] = 4, + anon_sym_SEMI, + [196967] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6266), 1, + STATE(6129), 1, sym_comment, - ACTIONS(9792), 3, + ACTIONS(10052), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196555] = 4, + [196982] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6267), 1, + STATE(6130), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(9391), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196570] = 6, + [196997] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, - anon_sym_COMMA, - ACTIONS(5909), 1, - anon_sym_RPAREN, - STATE(6268), 1, + ACTIONS(8080), 1, + anon_sym_LBRACE, + ACTIONS(8082), 1, + anon_sym_LBRACE_PIPE, + STATE(1284), 1, + sym_object_type, + STATE(6131), 1, sym_comment, - STATE(6317), 1, - aux_sym_array_repeat1, - [196589] = 6, + [197016] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, - anon_sym_COMMA, - ACTIONS(5909), 1, - anon_sym_RPAREN, - STATE(6185), 1, - aux_sym_array_repeat1, - STATE(6269), 1, + STATE(6132), 1, sym_comment, - [196608] = 6, + ACTIONS(9377), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197031] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8725), 1, + ACTIONS(10088), 1, anon_sym_COMMA, - ACTIONS(9973), 1, + ACTIONS(10090), 1, anon_sym_RBRACE, - STATE(6257), 1, - aux_sym_object_pattern_repeat1, - STATE(6270), 1, + STATE(6133), 1, + sym_comment, + STATE(6169), 1, + aux_sym_enum_body_repeat1, + [197050] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5960), 1, + anon_sym_COMMA, + ACTIONS(10092), 1, + anon_sym_RPAREN, + STATE(5801), 1, + aux_sym_array_repeat1, + STATE(6134), 1, sym_comment, - [196627] = 4, + [197069] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6271), 1, + STATE(6135), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(10052), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196642] = 6, + [197084] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8725), 1, + ACTIONS(10094), 1, anon_sym_COMMA, - ACTIONS(9975), 1, + ACTIONS(10096), 1, anon_sym_RBRACE, - STATE(6257), 1, - aux_sym_object_pattern_repeat1, - STATE(6272), 1, + STATE(6061), 1, + aux_sym_enum_body_repeat1, + STATE(6136), 1, sym_comment, - [196661] = 4, + [197103] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6273), 1, + STATE(6137), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(10056), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196676] = 6, + [197118] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9977), 1, - anon_sym_COMMA, - ACTIONS(9979), 1, - anon_sym_GT, - STATE(6089), 1, - aux_sym_type_arguments_repeat1, - STATE(6274), 1, + STATE(6138), 1, sym_comment, - [196695] = 4, + ACTIONS(10048), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197133] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6275), 1, + STATE(6139), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9981), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196710] = 6, + [197148] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8042), 1, - anon_sym_COMMA, - ACTIONS(9981), 1, - anon_sym_RBRACE, - STATE(6262), 1, - aux_sym_object_repeat1, - STATE(6276), 1, + STATE(6140), 1, sym_comment, - [196729] = 6, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8042), 1, + ACTIONS(9369), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9983), 1, - anon_sym_RBRACE, - STATE(6262), 1, - aux_sym_object_repeat1, - STATE(6277), 1, - sym_comment, - [196748] = 6, + anon_sym_SEMI, + [197163] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8725), 1, - anon_sym_COMMA, - ACTIONS(9985), 1, - anon_sym_RBRACE, - STATE(6257), 1, - aux_sym_object_pattern_repeat1, - STATE(6278), 1, + ACTIONS(6586), 1, + sym__automatic_semicolon, + STATE(6141), 1, sym_comment, - [196767] = 4, + ACTIONS(2428), 2, + anon_sym_else, + anon_sym_while, + [197180] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6279), 1, + STATE(6142), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196782] = 5, + [197195] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9987), 1, - anon_sym_LBRACE, - STATE(6280), 1, + STATE(6143), 1, sym_comment, - ACTIONS(8910), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [196799] = 6, + ACTIONS(10048), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197210] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8725), 1, + ACTIONS(10098), 1, anon_sym_COMMA, - ACTIONS(9989), 1, + ACTIONS(10100), 1, anon_sym_RBRACE, - STATE(6257), 1, - aux_sym_object_pattern_repeat1, - STATE(6281), 1, + STATE(6061), 1, + aux_sym_enum_body_repeat1, + STATE(6144), 1, sym_comment, - [196818] = 4, + [197229] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6282), 1, + STATE(6145), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196833] = 4, + [197244] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6283), 1, + STATE(6146), 1, sym_comment, - ACTIONS(9792), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196848] = 5, + [197259] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7870), 1, - anon_sym_DOT, - STATE(6284), 1, + STATE(6147), 1, sym_comment, - ACTIONS(9991), 2, + ACTIONS(10048), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [196865] = 5, + [197274] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7868), 1, - anon_sym_DOT, - STATE(6285), 1, + STATE(6148), 1, sym_comment, - ACTIONS(9991), 2, + ACTIONS(9981), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [196882] = 4, + [197289] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6286), 1, + STATE(6149), 1, sym_comment, - ACTIONS(9792), 3, + ACTIONS(10052), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196897] = 6, + [197304] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8042), 1, - anon_sym_COMMA, - ACTIONS(9993), 1, - anon_sym_RBRACE, - STATE(6262), 1, - aux_sym_object_repeat1, - STATE(6287), 1, + STATE(6150), 1, sym_comment, - [196916] = 4, + ACTIONS(10052), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197319] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6288), 1, + STATE(6151), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196931] = 4, + [197334] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6289), 1, + STATE(6152), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196946] = 5, + [197349] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9995), 1, - anon_sym_as, - STATE(6290), 1, + STATE(6153), 1, sym_comment, - ACTIONS(9997), 2, + ACTIONS(10056), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [196963] = 6, + anon_sym_SEMI, + [197364] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9999), 1, - anon_sym_COMMA, - ACTIONS(10001), 1, - anon_sym_RBRACE, - STATE(6174), 1, - aux_sym_export_clause_repeat1, - STATE(6291), 1, + STATE(6154), 1, sym_comment, - [196982] = 4, + ACTIONS(10102), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197379] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6292), 1, + STATE(6155), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(10102), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [196997] = 4, + [197394] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6293), 1, + STATE(6156), 1, sym_comment, - ACTIONS(10003), 3, + ACTIONS(10048), 3, sym__automatic_semicolon, - anon_sym_from, + anon_sym_COMMA, anon_sym_SEMI, - [197012] = 4, + [197409] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6294), 1, + STATE(6157), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(10048), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197027] = 5, + [197424] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6393), 1, - sym__automatic_semicolon, - STATE(6295), 1, - sym_comment, - ACTIONS(2420), 2, - anon_sym_else, - anon_sym_while, - [197044] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10005), 1, - sym_identifier, - ACTIONS(10007), 1, - anon_sym_LBRACK, - ACTIONS(10009), 1, - sym_private_property_identifier, - STATE(6296), 1, + STATE(6158), 1, sym_comment, - [197063] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10018), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197439] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10011), 1, - sym_identifier, - ACTIONS(10013), 1, - anon_sym_LBRACK, - ACTIONS(10015), 1, - sym_private_property_identifier, - STATE(6297), 1, - sym_comment, - [197082] = 6, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10017), 1, - sym_identifier, - ACTIONS(10019), 1, - anon_sym_LBRACK, - ACTIONS(10021), 1, - sym_private_property_identifier, - STATE(6298), 1, + STATE(6159), 1, sym_comment, - [197101] = 4, + ACTIONS(10048), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197454] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6299), 1, + STATE(6160), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(10052), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197116] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10023), 1, - sym_identifier, - ACTIONS(10025), 1, - anon_sym_LBRACK, - ACTIONS(10027), 1, - sym_private_property_identifier, - STATE(6300), 1, - sym_comment, - [197135] = 5, + [197469] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6418), 1, - sym__automatic_semicolon, - STATE(6301), 1, - sym_comment, - ACTIONS(2424), 2, - anon_sym_else, - anon_sym_while, - [197152] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10029), 1, - sym_identifier, - ACTIONS(10031), 1, - anon_sym_LBRACK, - ACTIONS(10033), 1, - sym_private_property_identifier, - STATE(6302), 1, + STATE(6161), 1, sym_comment, - [197171] = 5, + ACTIONS(10052), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197484] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6420), 1, - sym__automatic_semicolon, - STATE(6303), 1, + STATE(6162), 1, sym_comment, - ACTIONS(2428), 2, - anon_sym_else, - anon_sym_while, - [197188] = 4, + ACTIONS(10056), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197499] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6304), 1, + STATE(6163), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197203] = 6, + [197514] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10035), 1, - anon_sym_COMMA, - ACTIONS(10037), 1, - anon_sym_RBRACK, - STATE(5863), 1, - aux_sym_tuple_type_repeat1, - STATE(6305), 1, + STATE(6164), 1, sym_comment, - [197222] = 5, + ACTIONS(10048), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197529] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10039), 1, - anon_sym_EQ, - STATE(6306), 1, + STATE(6165), 1, sym_comment, - ACTIONS(9770), 2, + ACTIONS(10048), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [197239] = 4, + anon_sym_SEMI, + [197544] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6307), 1, + STATE(6166), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9969), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197254] = 5, + [197559] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6456), 1, - sym__automatic_semicolon, - STATE(6308), 1, + ACTIONS(10104), 1, + anon_sym_COMMA, + ACTIONS(10106), 1, + anon_sym_RBRACE, + STATE(6061), 1, + aux_sym_enum_body_repeat1, + STATE(6167), 1, sym_comment, - ACTIONS(2400), 2, - anon_sym_else, - anon_sym_while, - [197271] = 4, + [197578] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6309), 1, + STATE(6168), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(9369), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197286] = 6, + [197593] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10041), 1, - anon_sym_DQUOTE, - ACTIONS(10043), 1, - anon_sym_SQUOTE, - STATE(6177), 1, - sym_string, - STATE(6310), 1, - sym_comment, - [197305] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10045), 1, - sym_identifier, - ACTIONS(10047), 1, - anon_sym_LBRACK, - ACTIONS(10049), 1, - sym_private_property_identifier, - STATE(6311), 1, + ACTIONS(10108), 1, + anon_sym_COMMA, + ACTIONS(10110), 1, + anon_sym_RBRACE, + STATE(6061), 1, + aux_sym_enum_body_repeat1, + STATE(6169), 1, sym_comment, - [197324] = 6, + [197612] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10051), 1, - anon_sym_COMMA, - ACTIONS(10053), 1, - anon_sym_GT, - STATE(6199), 1, - aux_sym_type_parameters_repeat1, - STATE(6312), 1, + STATE(6170), 1, sym_comment, - [197343] = 4, + ACTIONS(10052), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197627] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6313), 1, + STATE(6171), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(10048), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197358] = 6, + [197642] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8121), 1, - anon_sym_LBRACE, - ACTIONS(8123), 1, - anon_sym_LBRACE_PIPE, - STATE(1379), 1, - sym_object_type, - STATE(6314), 1, - sym_comment, - [197377] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(7936), 1, - sym_identifier, - STATE(6315), 1, + STATE(6172), 1, sym_comment, - ACTIONS(7940), 2, - anon_sym_LBRACK, - sym_private_property_identifier, - [197394] = 6, + ACTIONS(9969), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197657] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10055), 1, - anon_sym_COMMA, - ACTIONS(10057), 1, - anon_sym_RBRACE, - STATE(6316), 1, + STATE(6173), 1, sym_comment, - STATE(6352), 1, - aux_sym_enum_body_repeat1, - [197413] = 6, + ACTIONS(10056), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197672] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, - anon_sym_COMMA, - ACTIONS(10059), 1, + ACTIONS(5603), 1, anon_sym_RPAREN, - STATE(6185), 1, - aux_sym_array_repeat1, - STATE(6317), 1, + ACTIONS(10112), 1, + anon_sym_COMMA, + STATE(6174), 2, sym_comment, - [197432] = 5, + aux_sym_sequence_expression_repeat1, + [197689] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10061), 1, + ACTIONS(10115), 1, anon_sym_LBRACE, - STATE(6318), 1, + STATE(6175), 1, sym_comment, - ACTIONS(8723), 2, + ACTIONS(8685), 2, anon_sym_extends, anon_sym_LBRACE_PIPE, - [197449] = 6, + [197706] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4242), 1, - anon_sym_LPAREN, - ACTIONS(10063), 1, - anon_sym_DOT, - STATE(4506), 1, - sym_arguments, - STATE(6319), 1, + ACTIONS(8119), 1, + anon_sym_EQ, + STATE(6176), 1, sym_comment, - [197468] = 6, + ACTIONS(4445), 2, + anon_sym_in, + anon_sym_of, + [197723] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10065), 1, - anon_sym_COMMA, - ACTIONS(10067), 1, - anon_sym_GT, - STATE(6184), 1, - aux_sym_type_parameters_repeat1, - STATE(6320), 1, + ACTIONS(3251), 1, + anon_sym_while, + ACTIONS(10117), 1, + anon_sym_else, + STATE(6177), 1, sym_comment, - [197487] = 4, + STATE(6596), 1, + sym_else_clause, + [197742] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6321), 1, + STATE(6178), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(10119), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197502] = 4, + [197757] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6322), 1, + STATE(6179), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(10121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197517] = 4, + [197772] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6323), 1, + ACTIONS(5960), 1, + anon_sym_COMMA, + ACTIONS(10123), 1, + anon_sym_RPAREN, + STATE(5801), 1, + aux_sym_array_repeat1, + STATE(6180), 1, + sym_comment, + [197791] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6181), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(10121), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197532] = 6, + [197806] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4278), 1, - anon_sym_LPAREN, - ACTIONS(10069), 1, - anon_sym_DOT, - STATE(4499), 1, - sym_arguments, - STATE(6324), 1, + STATE(6182), 1, sym_comment, - [197551] = 6, + ACTIONS(10125), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197821] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7566), 1, - anon_sym_implements, - ACTIONS(10071), 1, - anon_sym_LBRACE, - STATE(6325), 1, + STATE(6183), 1, sym_comment, - STATE(7308), 1, - sym_implements_clause, - [197570] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10127), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197836] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8975), 1, - sym_identifier, - ACTIONS(8977), 1, - anon_sym_const, - STATE(6320), 1, - sym_type_parameter, - STATE(6326), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6184), 1, sym_comment, - [197589] = 4, + ACTIONS(10129), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197851] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6327), 1, + STATE(6185), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(10127), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197604] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [197866] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10073), 1, - anon_sym_SQUOTE, - STATE(6328), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5960), 1, + anon_sym_COMMA, + ACTIONS(6021), 1, + anon_sym_RPAREN, + STATE(5801), 1, + aux_sym_array_repeat1, + STATE(6186), 1, sym_comment, - ACTIONS(10075), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [197621] = 5, - ACTIONS(3), 1, + [197885] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5960), 1, + anon_sym_COMMA, + ACTIONS(6021), 1, + anon_sym_RPAREN, + STATE(6180), 1, + aux_sym_array_repeat1, + STATE(6187), 1, + sym_comment, + [197904] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10077), 1, - anon_sym_DQUOTE, - STATE(6329), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10131), 1, + anon_sym_COMMA, + ACTIONS(10133), 1, + anon_sym_GT, + STATE(5932), 1, + aux_sym_type_arguments_repeat1, + STATE(6188), 1, sym_comment, - ACTIONS(10079), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [197638] = 6, + [197923] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(10081), 1, - anon_sym_EQ, - STATE(6330), 1, + STATE(6189), 1, sym_comment, - STATE(7477), 1, - sym_type_parameters, - [197657] = 5, + ACTIONS(9981), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [197938] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10083), 1, - anon_sym_EQ, - STATE(6331), 1, + STATE(6190), 1, sym_comment, - ACTIONS(9770), 2, + ACTIONS(10135), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [197674] = 6, + anon_sym_SEMI, + [197953] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9289), 1, + ACTIONS(10137), 1, anon_sym_COMMA, - ACTIONS(9291), 1, - anon_sym_RBRACK, - STATE(6209), 1, - aux_sym_array_pattern_repeat1, - STATE(6332), 1, + ACTIONS(10139), 1, + anon_sym_GT, + STATE(5932), 1, + aux_sym_type_arguments_repeat1, + STATE(6191), 1, sym_comment, - [197693] = 5, + [197972] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10085), 1, - anon_sym_EQ, - STATE(6333), 1, + STATE(6192), 1, sym_comment, - ACTIONS(4327), 2, + ACTIONS(9371), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [197710] = 4, + anon_sym_SEMI, + [197987] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6334), 1, + STATE(6193), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197725] = 6, + [198002] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5987), 1, + ACTIONS(10141), 1, anon_sym_COMMA, - ACTIONS(6009), 1, - anon_sym_RBRACK, - STATE(6211), 1, - aux_sym_array_repeat1, - STATE(6335), 1, + ACTIONS(10143), 1, + anon_sym_GT, + STATE(5932), 1, + aux_sym_type_arguments_repeat1, + STATE(6194), 1, sym_comment, - [197744] = 6, + [198021] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5987), 1, + ACTIONS(5073), 1, anon_sym_COMMA, - ACTIONS(6009), 1, - anon_sym_RBRACK, - STATE(6216), 1, - aux_sym_array_repeat1, - STATE(6336), 1, + ACTIONS(8663), 1, + anon_sym_RPAREN, + STATE(6174), 1, + aux_sym_sequence_expression_repeat1, + STATE(6195), 1, sym_comment, - [197763] = 4, + [198040] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6337), 1, + STATE(6196), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197778] = 4, + [198055] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6338), 1, + STATE(6197), 1, sym_comment, - ACTIONS(9792), 3, + ACTIONS(10145), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197793] = 6, + [198070] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9289), 1, - anon_sym_COMMA, - ACTIONS(9291), 1, - anon_sym_RBRACK, - STATE(6212), 1, - aux_sym_array_pattern_repeat1, - STATE(6339), 1, + STATE(6198), 1, sym_comment, - [197812] = 4, + ACTIONS(9371), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198085] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6340), 1, + STATE(6199), 1, sym_comment, - ACTIONS(9792), 3, + ACTIONS(10086), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197827] = 4, + [198100] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6341), 1, + STATE(6200), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(9981), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197842] = 6, + [198115] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10088), 1, - anon_sym_COMMA, - ACTIONS(10090), 1, - anon_sym_RBRACE, - STATE(5896), 1, - aux_sym_enum_body_repeat1, - STATE(6342), 1, + STATE(6201), 1, sym_comment, - [197861] = 5, + ACTIONS(9969), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198130] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6490), 1, - sym__automatic_semicolon, - STATE(6343), 1, + STATE(6202), 1, sym_comment, - ACTIONS(2394), 2, - anon_sym_else, - anon_sym_while, - [197878] = 6, + ACTIONS(10052), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198145] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10092), 1, - anon_sym_COMMA, - ACTIONS(10094), 1, - anon_sym_RBRACE, - STATE(5896), 1, - aux_sym_enum_body_repeat1, - STATE(6344), 1, + STATE(6203), 1, sym_comment, - [197897] = 4, + ACTIONS(9979), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198160] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6345), 1, + STATE(6204), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9979), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197912] = 4, + [198175] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6346), 1, + STATE(6205), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(10086), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197927] = 6, + [198190] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8042), 1, - anon_sym_COMMA, - ACTIONS(10096), 1, - anon_sym_RBRACE, - STATE(6262), 1, - aux_sym_object_repeat1, - STATE(6347), 1, + STATE(6206), 1, sym_comment, - [197946] = 4, + ACTIONS(9981), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198205] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6348), 1, + STATE(6207), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(10086), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [197961] = 5, + [198220] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6508), 1, - sym__automatic_semicolon, - STATE(6349), 1, + STATE(6208), 1, sym_comment, - ACTIONS(2364), 2, - anon_sym_else, - anon_sym_while, - [197978] = 6, + ACTIONS(10086), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198235] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10098), 1, - anon_sym_COMMA, - ACTIONS(10100), 1, - anon_sym_RBRACE, - STATE(5896), 1, - aux_sym_enum_body_repeat1, - STATE(6350), 1, + STATE(6209), 1, sym_comment, - [197997] = 4, + ACTIONS(10147), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198250] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6351), 1, + STATE(6210), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198012] = 6, + [198265] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10102), 1, + STATE(6211), 1, + sym_comment, + ACTIONS(9979), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(10104), 1, - anon_sym_RBRACE, - STATE(5896), 1, - aux_sym_enum_body_repeat1, - STATE(6352), 1, + anon_sym_SEMI, + [198280] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10149), 1, + sym_identifier, + STATE(3549), 1, + sym_decorator_member_expression, + STATE(3662), 1, + sym_decorator_call_expression, + STATE(6212), 1, sym_comment, - [198031] = 6, + [198299] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9289), 1, - anon_sym_COMMA, - ACTIONS(9297), 1, - anon_sym_RBRACK, - STATE(6209), 1, - aux_sym_array_pattern_repeat1, - STATE(6353), 1, + STATE(6213), 1, sym_comment, - [198050] = 6, + ACTIONS(9969), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198314] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5987), 1, - anon_sym_COMMA, - ACTIONS(5989), 1, - anon_sym_RBRACK, - STATE(6211), 1, - aux_sym_array_repeat1, - STATE(6354), 1, + STATE(6214), 1, sym_comment, - [198069] = 6, + ACTIONS(9514), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198329] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5987), 1, - anon_sym_COMMA, - ACTIONS(5989), 1, - anon_sym_RBRACK, - STATE(6233), 1, - aux_sym_array_repeat1, - STATE(6355), 1, + STATE(6215), 1, sym_comment, - [198088] = 6, + ACTIONS(9371), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198344] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9289), 1, - anon_sym_COMMA, - ACTIONS(9297), 1, - anon_sym_RBRACK, - STATE(6229), 1, - aux_sym_array_pattern_repeat1, - STATE(6356), 1, + STATE(6216), 1, sym_comment, - [198107] = 4, + ACTIONS(9981), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198359] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6357), 1, + STATE(6217), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(10151), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198122] = 4, + [198374] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6358), 1, + STATE(6218), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198137] = 4, + [198389] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6359), 1, + STATE(6219), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(10086), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198152] = 4, + [198404] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6360), 1, + STATE(6220), 1, sym_comment, - ACTIONS(3443), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [198167] = 6, + ACTIONS(10086), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198419] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, - anon_sym_COMMA, - ACTIONS(10106), 1, - anon_sym_RPAREN, - STATE(6185), 1, - aux_sym_array_repeat1, - STATE(6361), 1, + STATE(6221), 1, sym_comment, - [198186] = 6, + ACTIONS(9371), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198434] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10108), 1, - anon_sym_COMMA, - ACTIONS(10110), 1, - anon_sym_RBRACE, - STATE(6342), 1, - aux_sym_enum_body_repeat1, - STATE(6362), 1, + STATE(6222), 1, sym_comment, - [198205] = 6, + ACTIONS(9371), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198449] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10112), 1, - anon_sym_COMMA, - ACTIONS(10114), 1, - anon_sym_RPAREN, STATE(6223), 1, - aux_sym_formal_parameters_repeat1, - STATE(6363), 1, sym_comment, - [198224] = 6, + ACTIONS(10147), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198464] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8095), 1, - anon_sym_LBRACE, - ACTIONS(8097), 1, - anon_sym_LBRACE_PIPE, - STATE(1225), 1, - sym_object_type, - STATE(6364), 1, + STATE(6224), 1, sym_comment, - [198243] = 4, + ACTIONS(9371), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198479] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6365), 1, + STATE(6225), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(9969), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198258] = 4, + [198494] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6366), 1, + ACTIONS(10153), 1, + sym_identifier, + ACTIONS(10155), 1, + anon_sym_SEMI, + ACTIONS(10157), 1, + sym__automatic_semicolon, + STATE(6226), 1, sym_comment, - ACTIONS(7900), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [198273] = 4, + [198513] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6367), 1, + STATE(6227), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9981), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198288] = 6, + [198528] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(10116), 1, - anon_sym_EQ, - STATE(6368), 1, + STATE(6228), 1, sym_comment, - STATE(7512), 1, - sym_type_parameters, - [198307] = 4, + ACTIONS(9969), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198543] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6369), 1, + STATE(6229), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9981), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198322] = 5, + [198558] = 6, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10159), 1, + sym_identifier, + ACTIONS(10161), 1, + anon_sym_SEMI, + ACTIONS(10163), 1, + sym__automatic_semicolon, + STATE(6230), 1, + sym_comment, + [198577] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10118), 1, - anon_sym_EQ, - STATE(6370), 1, + STATE(6231), 1, sym_comment, - ACTIONS(9770), 2, + ACTIONS(9371), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [198339] = 6, + anon_sym_SEMI, + [198592] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10120), 1, - anon_sym_COMMA, - ACTIONS(10122), 1, - anon_sym_RPAREN, - STATE(6239), 1, - aux_sym_formal_parameters_repeat1, - STATE(6371), 1, + STATE(6232), 1, sym_comment, - [198358] = 5, + ACTIONS(9371), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198607] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10124), 1, - anon_sym_EQ, - STATE(6372), 1, + STATE(6233), 1, sym_comment, - ACTIONS(9770), 2, + ACTIONS(10165), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_from, - [198375] = 4, + anon_sym_SEMI, + [198622] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6373), 1, + STATE(6234), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(10165), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198390] = 4, + [198637] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6374), 1, + STATE(6235), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198405] = 4, + [198652] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6375), 1, + STATE(6236), 1, sym_comment, - ACTIONS(3439), 3, - anon_sym_else, - anon_sym_while, - anon_sym_finally, - [198420] = 6, + ACTIONS(10165), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198667] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(10126), 1, - anon_sym_EQ, - STATE(6376), 1, + STATE(6237), 1, sym_comment, - STATE(7540), 1, - sym_type_parameters, - [198439] = 4, + ACTIONS(9981), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198682] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6377), 1, + STATE(6238), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(10086), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198454] = 6, + [198697] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10128), 1, - anon_sym_LPAREN, - ACTIONS(10130), 1, - anon_sym_await, - STATE(81), 1, - sym__for_header, - STATE(6378), 1, + STATE(6239), 1, sym_comment, - [198473] = 6, + ACTIONS(10165), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198712] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8725), 1, - anon_sym_COMMA, - ACTIONS(10132), 1, - anon_sym_RBRACE, - STATE(6257), 1, - aux_sym_object_pattern_repeat1, - STATE(6379), 1, + STATE(6240), 1, sym_comment, - [198492] = 6, + ACTIONS(9979), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198727] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8042), 1, - anon_sym_COMMA, - ACTIONS(10096), 1, - anon_sym_RBRACE, - STATE(6277), 1, - aux_sym_object_repeat1, - STATE(6380), 1, + ACTIONS(10167), 1, + anon_sym_LPAREN, + ACTIONS(10169), 1, + anon_sym_await, + STATE(77), 1, + sym__for_header, + STATE(6241), 1, sym_comment, - [198511] = 6, + [198746] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8725), 1, - anon_sym_COMMA, - ACTIONS(10134), 1, - anon_sym_RBRACE, - STATE(6257), 1, - aux_sym_object_pattern_repeat1, - STATE(6381), 1, + STATE(6242), 1, sym_comment, - [198530] = 4, + ACTIONS(9979), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198761] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6382), 1, + STATE(6243), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198545] = 5, + [198776] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7868), 1, - anon_sym_DOT, - STATE(6383), 1, + STATE(6244), 1, sym_comment, - ACTIONS(10136), 2, + ACTIONS(10086), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [198562] = 6, + [198791] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8042), 1, + ACTIONS(10171), 1, anon_sym_COMMA, - ACTIONS(10138), 1, + ACTIONS(10173), 1, anon_sym_RBRACE, - STATE(6262), 1, - aux_sym_object_repeat1, - STATE(6384), 1, + STATE(6061), 1, + aux_sym_enum_body_repeat1, + STATE(6245), 1, sym_comment, - [198581] = 4, + [198810] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6385), 1, + STATE(6246), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(9969), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198596] = 5, + [198825] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7870), 1, - anon_sym_DOT, - STATE(6386), 1, + STATE(6247), 1, sym_comment, - ACTIONS(10136), 2, + ACTIONS(10086), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [198613] = 4, + [198840] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6387), 1, + STATE(6248), 1, sym_comment, - ACTIONS(9792), 3, + ACTIONS(9969), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198628] = 6, + [198855] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8725), 1, - anon_sym_COMMA, - ACTIONS(10132), 1, - anon_sym_RBRACE, - STATE(6278), 1, - aux_sym_object_pattern_repeat1, - STATE(6388), 1, + STATE(6249), 1, sym_comment, - [198647] = 4, + ACTIONS(10086), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198870] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6389), 1, + STATE(6250), 1, sym_comment, - ACTIONS(9792), 3, + ACTIONS(9969), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198662] = 4, + [198885] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6390), 1, + STATE(6251), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(9969), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198677] = 6, + [198900] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8042), 1, + ACTIONS(10175), 1, anon_sym_COMMA, - ACTIONS(10138), 1, + ACTIONS(10177), 1, anon_sym_RBRACE, - STATE(6265), 1, - aux_sym_object_repeat1, - STATE(6391), 1, + STATE(6061), 1, + aux_sym_enum_body_repeat1, + STATE(6252), 1, sym_comment, - [198696] = 6, + [198919] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8725), 1, + STATE(6253), 1, + sym_comment, + ACTIONS(9979), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(10134), 1, - anon_sym_RBRACE, - STATE(6270), 1, - aux_sym_object_pattern_repeat1, - STATE(6392), 1, + anon_sym_SEMI, + [198934] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10179), 1, + anon_sym_COMMA, + ACTIONS(10181), 1, + anon_sym_GT, + STATE(5932), 1, + aux_sym_type_arguments_repeat1, + STATE(6254), 1, sym_comment, - [198715] = 6, + [198953] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(10140), 1, - anon_sym_EQ, - STATE(6393), 1, + STATE(6255), 1, sym_comment, - STATE(7353), 1, - sym_type_parameters, - [198734] = 6, + ACTIONS(9979), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [198968] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7239), 1, - anon_sym_LT, - ACTIONS(10142), 1, - anon_sym_EQ, - STATE(6394), 1, + ACTIONS(10183), 1, + anon_sym_COMMA, + ACTIONS(10185), 1, + anon_sym_GT, + STATE(5932), 1, + aux_sym_type_arguments_repeat1, + STATE(6256), 1, sym_comment, - STATE(7562), 1, - sym_type_parameters, - [198753] = 4, + [198987] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6395), 1, + STATE(6257), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9981), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198768] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9362), 1, - anon_sym_LBRACE, - ACTIONS(10144), 1, - sym_identifier, - STATE(5682), 1, - sym_export_clause, - STATE(6396), 1, - sym_comment, - [198787] = 6, + [199002] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - ACTIONS(9561), 1, - anon_sym_as, - STATE(6397), 1, + ACTIONS(10187), 1, + anon_sym_COMMA, + ACTIONS(10189), 1, + anon_sym_GT, + STATE(5932), 1, + aux_sym_type_arguments_repeat1, + STATE(6258), 1, sym_comment, - STATE(6650), 1, - sym__from_clause, - [198806] = 4, + [199021] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6398), 1, + STATE(6259), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(10086), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198821] = 4, + [199036] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6399), 1, + ACTIONS(8050), 1, + anon_sym_LBRACE, + ACTIONS(8052), 1, + anon_sym_LBRACE_PIPE, + STATE(1088), 1, + sym_object_type, + STATE(6260), 1, sym_comment, - ACTIONS(9857), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [198836] = 4, + [199055] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6400), 1, + STATE(6261), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(10086), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198851] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [199070] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10146), 1, - sym_identifier, - STATE(2124), 1, - sym_decorator_member_expression, - STATE(2173), 1, - sym_decorator_call_expression, - STATE(6401), 1, - sym_comment, - [198870] = 6, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10148), 1, - sym_identifier, - ACTIONS(10150), 1, - anon_sym_SEMI, - ACTIONS(10152), 1, - sym__automatic_semicolon, - STATE(6402), 1, + STATE(6262), 1, sym_comment, - [198889] = 4, + ACTIONS(9371), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199085] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6403), 1, + STATE(6263), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(10086), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198904] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, + [199100] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10154), 1, - sym_identifier, - ACTIONS(10156), 1, - anon_sym_SEMI, - ACTIONS(10158), 1, - sym__automatic_semicolon, - STATE(6404), 1, - sym_comment, - [198923] = 6, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(5960), 1, + anon_sym_COMMA, + ACTIONS(6029), 1, + anon_sym_RPAREN, + STATE(6264), 1, + sym_comment, + STATE(6285), 1, + aux_sym_array_repeat1, + [199119] = 6, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10160), 1, - sym_identifier, - STATE(4620), 1, - sym_decorator_member_expression, - STATE(5691), 1, - sym_decorator_call_expression, - STATE(6405), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5960), 1, + anon_sym_COMMA, + ACTIONS(6029), 1, + anon_sym_RPAREN, + STATE(5801), 1, + aux_sym_array_repeat1, + STATE(6265), 1, sym_comment, - [198942] = 4, + [199138] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6406), 1, + STATE(6266), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [198957] = 6, + [199153] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10162), 1, - anon_sym_LPAREN, - ACTIONS(10164), 1, - anon_sym_await, - STATE(116), 1, - sym__for_header, - STATE(6407), 1, + STATE(6267), 1, sym_comment, - [198976] = 5, + ACTIONS(10086), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199168] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5315), 1, - anon_sym_LBRACE, - STATE(6408), 1, + STATE(6268), 1, sym_comment, - ACTIONS(5317), 2, + ACTIONS(10086), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [198993] = 4, + anon_sym_SEMI, + [199183] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6409), 1, + STATE(6269), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(9969), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199008] = 4, + [199198] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6410), 1, + STATE(6270), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(10086), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199023] = 5, + [199213] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5282), 1, - anon_sym_LBRACE, - STATE(6411), 1, + ACTIONS(7865), 1, + anon_sym_DOT, + STATE(6271), 1, sym_comment, - ACTIONS(5284), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [199040] = 4, + ACTIONS(10191), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [199230] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6412), 1, + ACTIONS(7867), 1, + anon_sym_DOT, + STATE(6272), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(10191), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [199055] = 4, + [199247] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6413), 1, + STATE(6273), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(10147), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199070] = 6, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10166), 1, - sym_identifier, - ACTIONS(10168), 1, - anon_sym_SEMI, - ACTIONS(10170), 1, - sym__automatic_semicolon, - STATE(6414), 1, - sym_comment, - [199089] = 5, + [199262] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4490), 1, - anon_sym_LBRACE, - STATE(6415), 1, + STATE(6274), 1, sym_comment, - ACTIONS(5276), 2, + ACTIONS(9979), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [199106] = 5, + anon_sym_SEMI, + [199277] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4475), 1, - anon_sym_LBRACE, - STATE(6416), 1, + STATE(6275), 1, sym_comment, - ACTIONS(5274), 2, + ACTIONS(10147), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [199123] = 6, + anon_sym_SEMI, + [199292] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, - anon_sym_COMMA, - ACTIONS(5991), 1, - anon_sym_RPAREN, - STATE(6185), 1, - aux_sym_array_repeat1, - STATE(6417), 1, + STATE(6276), 1, sym_comment, - [199142] = 6, + ACTIONS(9371), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199307] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10172), 1, - anon_sym_COMMA, - ACTIONS(10174), 1, - anon_sym_GT, - STATE(6089), 1, - aux_sym_type_arguments_repeat1, - STATE(6418), 1, + STATE(6277), 1, sym_comment, - [199161] = 4, + ACTIONS(10151), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199322] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6419), 1, + STATE(6278), 1, sym_comment, - ACTIONS(9887), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199176] = 5, + [199337] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4479), 1, - anon_sym_LBRACE, - STATE(6420), 1, + STATE(6279), 1, sym_comment, - ACTIONS(5171), 2, + ACTIONS(10086), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [199193] = 5, + anon_sym_SEMI, + [199352] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4479), 1, - anon_sym_LBRACE, - STATE(6421), 1, + STATE(6280), 1, sym_comment, - ACTIONS(5171), 2, + ACTIONS(9969), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [199210] = 6, + anon_sym_SEMI, + [199367] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8095), 1, - anon_sym_LBRACE, - ACTIONS(8097), 1, - anon_sym_LBRACE_PIPE, - STATE(1177), 1, - sym_object_type, - STATE(6422), 1, + STATE(6281), 1, sym_comment, - [199229] = 5, + ACTIONS(10086), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [199382] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4471), 1, + ACTIONS(8050), 1, anon_sym_LBRACE, - STATE(6423), 1, - sym_comment, - ACTIONS(5185), 2, - anon_sym_COMMA, + ACTIONS(8052), 1, anon_sym_LBRACE_PIPE, - [199246] = 4, + STATE(1092), 1, + sym_object_type, + STATE(6282), 1, + sym_comment, + [199401] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6424), 1, + STATE(6283), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(10086), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199261] = 5, + [199416] = 6, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4471), 1, - anon_sym_LBRACE, - STATE(6425), 1, + ACTIONS(10193), 1, + anon_sym_COMMA, + ACTIONS(10195), 1, + anon_sym_RBRACE, + STATE(6245), 1, + aux_sym_enum_body_repeat1, + STATE(6284), 1, sym_comment, - ACTIONS(5185), 2, + [199435] = 6, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5960), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [199278] = 5, + ACTIONS(10197), 1, + anon_sym_RPAREN, + STATE(5801), 1, + aux_sym_array_repeat1, + STATE(6285), 1, + sym_comment, + [199454] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4477), 1, - anon_sym_LBRACE, - STATE(6426), 1, + STATE(6286), 1, sym_comment, - ACTIONS(5200), 2, + ACTIONS(9969), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [199295] = 5, + anon_sym_SEMI, + [199469] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4473), 1, - anon_sym_LBRACE, - STATE(6427), 1, + STATE(6287), 1, sym_comment, - ACTIONS(5278), 2, + ACTIONS(9981), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [199312] = 4, + anon_sym_SEMI, + [199484] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6428), 1, + STATE(6288), 1, sym_comment, - ACTIONS(9857), 3, + ACTIONS(10086), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199327] = 5, + [199499] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4461), 1, - anon_sym_LBRACE, - STATE(6429), 1, + STATE(6289), 1, sym_comment, - ACTIONS(5365), 2, + ACTIONS(10086), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [199344] = 4, + anon_sym_SEMI, + [199514] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6430), 1, + STATE(6290), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(9371), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199359] = 5, + [199529] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4454), 1, - anon_sym_LBRACE, - STATE(6431), 1, + STATE(6291), 1, sym_comment, - ACTIONS(5353), 2, + ACTIONS(10086), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [199376] = 4, + anon_sym_SEMI, + [199544] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6432), 1, + STATE(6292), 1, sym_comment, - ACTIONS(9956), 3, + ACTIONS(10086), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [199391] = 6, + [199559] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10176), 1, + ACTIONS(10199), 1, sym_identifier, - ACTIONS(10178), 1, - anon_sym_SEMI, - ACTIONS(10180), 1, - sym__automatic_semicolon, - STATE(6433), 1, + ACTIONS(10201), 1, + sym_private_property_identifier, + STATE(6293), 1, sym_comment, - [199410] = 4, + [199575] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6434), 1, + STATE(6294), 1, sym_comment, - ACTIONS(9857), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [199425] = 6, + ACTIONS(3509), 2, + anon_sym_else, + anon_sym_while, + [199589] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5907), 1, - anon_sym_COMMA, - ACTIONS(5991), 1, - anon_sym_RPAREN, - STATE(6361), 1, - aux_sym_array_repeat1, - STATE(6435), 1, + ACTIONS(10203), 1, + anon_sym_SEMI, + ACTIONS(10205), 1, + sym__automatic_semicolon, + STATE(6295), 1, sym_comment, - [199444] = 4, + [199605] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6436), 1, + ACTIONS(7587), 1, + anon_sym_LBRACE, + STATE(975), 1, + sym_class_body, + STATE(6296), 1, sym_comment, - ACTIONS(9956), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [199459] = 6, + [199621] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10182), 1, - anon_sym_COMMA, - ACTIONS(10184), 1, - anon_sym_GT, - STATE(6089), 1, - aux_sym_type_arguments_repeat1, - STATE(6437), 1, + ACTIONS(8943), 1, + anon_sym_LBRACE, + STATE(322), 1, + sym_statement_block, + STATE(6297), 1, sym_comment, - [199478] = 4, + [199637] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6438), 1, + ACTIONS(8929), 1, + anon_sym_LBRACE, + STATE(999), 1, + sym_statement_block, + STATE(6298), 1, sym_comment, - ACTIONS(9792), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [199493] = 6, + [199653] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10186), 1, - anon_sym_COMMA, - ACTIONS(10188), 1, - anon_sym_GT, - STATE(6089), 1, - aux_sym_type_arguments_repeat1, - STATE(6439), 1, + ACTIONS(7587), 1, + anon_sym_LBRACE, + STATE(974), 1, + sym_class_body, + STATE(6299), 1, sym_comment, - [199512] = 5, + [199669] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10190), 1, - anon_sym_LBRACE, - STATE(1602), 1, - sym_statement_block, - STATE(6440), 1, + STATE(6300), 1, sym_comment, - [199528] = 4, + ACTIONS(10207), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [199683] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6441), 1, + ACTIONS(7587), 1, + anon_sym_LBRACE, + STATE(1014), 1, + sym_class_body, + STATE(6301), 1, sym_comment, - ACTIONS(3467), 2, - anon_sym_else, - anon_sym_while, - [199542] = 5, + [199699] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10192), 1, - anon_sym_LPAREN, - STATE(95), 1, - sym_parenthesized_expression, - STATE(6442), 1, + ACTIONS(8943), 1, + anon_sym_LBRACE, + STATE(332), 1, + sym_statement_block, + STATE(6302), 1, sym_comment, - [199558] = 5, + [199715] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10194), 1, + ACTIONS(7695), 1, anon_sym_LBRACE, - STATE(1083), 1, - sym_enum_body, - STATE(6443), 1, + STATE(1084), 1, + sym_class_body, + STATE(6303), 1, sym_comment, - [199574] = 5, + [199731] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10192), 1, - anon_sym_LPAREN, - STATE(87), 1, - sym_parenthesized_expression, - STATE(6444), 1, + ACTIONS(7701), 1, + anon_sym_LBRACE, + STATE(328), 1, + sym_class_body, + STATE(6304), 1, sym_comment, - [199590] = 5, + [199747] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7738), 1, + ACTIONS(7695), 1, anon_sym_LBRACE, - STATE(313), 1, + STATE(1192), 1, sym_class_body, - STATE(6445), 1, + STATE(6305), 1, sym_comment, - [199606] = 5, + [199763] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10196), 1, + ACTIONS(10209), 1, anon_sym_LPAREN, - STATE(6446), 1, - sym_comment, - STATE(6566), 1, + STATE(106), 1, sym_parenthesized_expression, - [199622] = 4, + STATE(6306), 1, + sym_comment, + [199779] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6447), 1, + STATE(6307), 1, sym_comment, - ACTIONS(2298), 2, + ACTIONS(3623), 2, anon_sym_else, anon_sym_while, - [199636] = 5, + [199793] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10198), 1, - anon_sym_LBRACE, - STATE(1076), 1, - sym_statement_block, - STATE(6448), 1, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(97), 1, + sym_parenthesized_expression, + STATE(6308), 1, sym_comment, - [199652] = 5, + [199809] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10200), 1, - anon_sym_SEMI, - ACTIONS(10202), 1, - sym__automatic_semicolon, - STATE(6449), 1, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(91), 1, + sym_parenthesized_expression, + STATE(6309), 1, sym_comment, - [199668] = 5, + [199825] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10204), 1, - anon_sym_SEMI, - ACTIONS(10206), 1, - sym__automatic_semicolon, - STATE(6450), 1, + ACTIONS(7701), 1, + anon_sym_LBRACE, + STATE(336), 1, + sym_class_body, + STATE(6310), 1, sym_comment, - [199684] = 4, + [199841] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6451), 1, + ACTIONS(7695), 1, + anon_sym_LBRACE, + STATE(1187), 1, + sym_class_body, + STATE(6311), 1, sym_comment, - ACTIONS(10208), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199698] = 5, + [199857] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7736), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(983), 1, - sym_class_body, - STATE(6452), 1, + STATE(3499), 1, + sym_statement_block, + STATE(6312), 1, sym_comment, - [199714] = 5, + [199873] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10210), 1, - anon_sym_SEMI, - ACTIONS(10212), 1, - sym__automatic_semicolon, - STATE(6453), 1, + ACTIONS(8929), 1, + anon_sym_LBRACE, + STATE(1006), 1, + sym_statement_block, + STATE(6313), 1, sym_comment, - [199730] = 5, + [199889] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10214), 1, - anon_sym_SEMI, - ACTIONS(10216), 1, - sym__automatic_semicolon, - STATE(6454), 1, + ACTIONS(7587), 1, + anon_sym_LBRACE, + STATE(1000), 1, + sym_class_body, + STATE(6314), 1, sym_comment, - [199746] = 5, + [199905] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10194), 1, + ACTIONS(7701), 1, anon_sym_LBRACE, - STATE(1074), 1, - sym_enum_body, - STATE(6455), 1, + STATE(311), 1, + sym_class_body, + STATE(6315), 1, sym_comment, - [199762] = 4, + [199921] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6456), 1, + ACTIONS(10211), 1, + anon_sym_LPAREN, + STATE(6316), 1, sym_comment, - ACTIONS(10218), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199776] = 5, + STATE(6418), 1, + sym_parenthesized_expression, + [199937] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10192), 1, - anon_sym_LPAREN, - STATE(76), 1, - sym_parenthesized_expression, - STATE(6457), 1, + ACTIONS(10213), 1, + anon_sym_LBRACE, + STATE(1182), 1, + sym_enum_body, + STATE(6317), 1, sym_comment, - [199792] = 5, + [199953] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3656), 1, - sym_statement_block, - STATE(6458), 1, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(81), 1, + sym_parenthesized_expression, + STATE(6318), 1, sym_comment, - [199808] = 5, + [199969] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7738), 1, + ACTIONS(7695), 1, anon_sym_LBRACE, - STATE(328), 1, + STATE(1111), 1, sym_class_body, - STATE(6459), 1, + STATE(6319), 1, sym_comment, - [199824] = 4, + [199985] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6460), 1, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(80), 1, + sym_parenthesized_expression, + STATE(6320), 1, sym_comment, - ACTIONS(5740), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [199838] = 5, + [200001] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8568), 1, + ACTIONS(10215), 1, anon_sym_LBRACE, - STATE(306), 1, + STATE(949), 1, sym_statement_block, - STATE(6461), 1, + STATE(6321), 1, sym_comment, - [199854] = 5, + [200017] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3631), 1, - sym_statement_block, - STATE(6462), 1, + ACTIONS(10217), 1, + anon_sym_SEMI, + ACTIONS(10219), 1, + sym__automatic_semicolon, + STATE(6322), 1, sym_comment, - [199870] = 5, + [200033] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9913), 1, - anon_sym_LBRACE, - STATE(990), 1, - sym_statement_block, - STATE(6463), 1, + STATE(6323), 1, sym_comment, - [199886] = 5, + ACTIONS(3659), 2, + anon_sym_else, + anon_sym_while, + [200047] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7662), 1, - anon_sym_LBRACE, - STATE(1427), 1, - sym_class_body, - STATE(6464), 1, + ACTIONS(10221), 1, + anon_sym_SEMI, + ACTIONS(10223), 1, + sym__automatic_semicolon, + STATE(6324), 1, sym_comment, - [199902] = 5, + [200063] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(10225), 1, anon_sym_LBRACE, - STATE(3643), 1, + STATE(946), 1, sym_statement_block, - STATE(6465), 1, + STATE(6325), 1, sym_comment, - [199918] = 5, + [200079] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10220), 1, - anon_sym_LBRACE, - STATE(961), 1, - sym_statement_block, - STATE(6466), 1, + STATE(6326), 1, sym_comment, - [199934] = 4, + ACTIONS(3661), 2, + anon_sym_else, + anon_sym_while, + [200093] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6467), 1, + STATE(6327), 1, sym_comment, - ACTIONS(2254), 2, + ACTIONS(2324), 2, anon_sym_else, anon_sym_while, - [199948] = 4, + [200107] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6468), 1, + STATE(6328), 1, sym_comment, - ACTIONS(2260), 2, + ACTIONS(3663), 2, anon_sym_else, anon_sym_while, - [199962] = 5, + [200121] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7562), 1, + ACTIONS(8638), 1, anon_sym_LBRACE, - STATE(1245), 1, - sym_class_body, - STATE(6469), 1, + STATE(374), 1, + sym_statement_block, + STATE(6329), 1, sym_comment, - [199978] = 4, + [200137] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6470), 1, - sym_comment, - ACTIONS(10222), 2, - sym__automatic_semicolon, + ACTIONS(10227), 1, anon_sym_SEMI, - [199992] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - STATE(6471), 1, + ACTIONS(10229), 1, + sym__automatic_semicolon, + STATE(6330), 1, sym_comment, - ACTIONS(10224), 2, - sym__glimmer_template_content, - anon_sym_LT_SLASHtemplate_GT, - [200006] = 5, + [200153] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10192), 1, - anon_sym_LPAREN, - STATE(109), 1, - sym_parenthesized_expression, - STATE(6472), 1, + STATE(6331), 1, sym_comment, - [200022] = 5, + ACTIONS(2324), 2, + anon_sym_else, + anon_sym_while, + [200167] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10192), 1, - anon_sym_LPAREN, - STATE(92), 1, - sym_parenthesized_expression, - STATE(6473), 1, + ACTIONS(10213), 1, + anon_sym_LBRACE, + STATE(1022), 1, + sym_enum_body, + STATE(6332), 1, sym_comment, - [200038] = 5, + [200183] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(4989), 1, + STATE(3514), 1, sym_statement_block, - STATE(6474), 1, + STATE(6333), 1, sym_comment, - [200054] = 4, + [200199] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6475), 1, + STATE(6334), 1, sym_comment, - ACTIONS(10226), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200068] = 5, + ACTIONS(3673), 2, + anon_sym_else, + anon_sym_while, + [200213] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7738), 1, - anon_sym_LBRACE, - STATE(331), 1, - sym_class_body, - STATE(6476), 1, + STATE(6335), 1, sym_comment, - [200084] = 4, + ACTIONS(10231), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [200227] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6477), 1, + STATE(6336), 1, sym_comment, - ACTIONS(5756), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200098] = 5, + ACTIONS(3675), 2, + anon_sym_else, + anon_sym_while, + [200241] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9913), 1, - anon_sym_LBRACE, - STATE(996), 1, - sym_statement_block, - STATE(6478), 1, + STATE(6337), 1, sym_comment, - [200114] = 5, + ACTIONS(3677), 2, + anon_sym_else, + anon_sym_while, + [200255] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7736), 1, + ACTIONS(10233), 1, anon_sym_LBRACE, - STATE(1019), 1, - sym_class_body, - STATE(6479), 1, + STATE(1036), 1, + sym_statement_block, + STATE(6338), 1, sym_comment, - [200130] = 5, + [200271] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7634), 1, - anon_sym_LBRACE, - STATE(1021), 1, - sym_class_body, - STATE(6480), 1, + STATE(6339), 1, sym_comment, - [200146] = 5, + ACTIONS(10235), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [200285] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8582), 1, - anon_sym_LBRACE, - STATE(1012), 1, - sym_statement_block, - STATE(6481), 1, + STATE(6340), 1, sym_comment, - [200162] = 5, + ACTIONS(10237), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [200299] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7736), 1, - anon_sym_LBRACE, - STATE(1018), 1, - sym_class_body, - STATE(6482), 1, + STATE(6341), 1, sym_comment, - [200178] = 5, + ACTIONS(3669), 2, + anon_sym_else, + anon_sym_while, + [200313] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8673), 1, - anon_sym_LBRACE, - STATE(1072), 1, - sym_statement_block, - STATE(6483), 1, + STATE(6342), 1, sym_comment, - [200194] = 5, + ACTIONS(3667), 2, + anon_sym_else, + anon_sym_while, + [200327] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7662), 1, - anon_sym_LBRACE, - STATE(1278), 1, - sym_class_body, - STATE(6484), 1, + STATE(6343), 1, sym_comment, - [200210] = 5, + ACTIONS(2302), 2, + anon_sym_else, + anon_sym_while, + [200341] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8568), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(337), 1, + STATE(3493), 1, sym_statement_block, - STATE(6485), 1, + STATE(6344), 1, sym_comment, - [200226] = 5, + [200357] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7660), 1, - anon_sym_LBRACE, - STATE(385), 1, - sym_class_body, - STATE(6486), 1, + STATE(6345), 1, sym_comment, - [200242] = 5, + ACTIONS(5428), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [200371] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7662), 1, - anon_sym_LBRACE, - STATE(1306), 1, - sym_class_body, - STATE(6487), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + STATE(4668), 1, + sym_formal_parameters, + STATE(6346), 1, sym_comment, - [200258] = 5, + [200387] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7562), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(1176), 1, - sym_class_body, - STATE(6488), 1, + STATE(3502), 1, + sym_statement_block, + STATE(6347), 1, sym_comment, - [200274] = 5, + [200403] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(4909), 1, - sym_formal_parameters, - STATE(6489), 1, + STATE(6348), 1, sym_comment, - [200290] = 4, + ACTIONS(3665), 2, + anon_sym_else, + anon_sym_while, + [200417] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6490), 1, + STATE(6349), 1, sym_comment, - ACTIONS(5722), 2, + ACTIONS(5767), 2, sym__automatic_semicolon, anon_sym_SEMI, - [200304] = 5, + [200431] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3489), 1, + sym_statement_block, + STATE(6350), 1, + sym_comment, + [200447] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10228), 1, + ACTIONS(10239), 1, sym_identifier, - ACTIONS(10230), 1, + ACTIONS(10241), 1, anon_sym_STAR, - STATE(6491), 1, + STATE(6351), 1, sym_comment, - [200320] = 5, + [200463] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10232), 1, + ACTIONS(10243), 1, sym_identifier, - ACTIONS(10234), 1, + ACTIONS(10245), 1, anon_sym_STAR, - STATE(6492), 1, - sym_comment, - [200336] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7738), 1, - anon_sym_LBRACE, - STATE(303), 1, - sym_class_body, - STATE(6493), 1, + STATE(6352), 1, sym_comment, - [200352] = 5, + [200479] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7562), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(1201), 1, - sym_class_body, - STATE(6494), 1, - sym_comment, - [200368] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(6495), 1, + STATE(3501), 1, + sym_statement_block, + STATE(6353), 1, sym_comment, - STATE(6683), 1, - sym__from_clause, - [200384] = 5, + [200495] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8582), 1, + ACTIONS(9999), 1, anon_sym_LBRACE, - STATE(999), 1, + STATE(978), 1, sym_statement_block, - STATE(6496), 1, + STATE(6354), 1, sym_comment, - [200400] = 5, + [200511] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7736), 1, + ACTIONS(7805), 1, anon_sym_LBRACE, - STATE(1004), 1, + STATE(1222), 1, sym_class_body, - STATE(6497), 1, - sym_comment, - [200416] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7285), 1, - anon_sym_LPAREN, - STATE(4338), 1, - sym_formal_parameters, - STATE(6498), 1, - sym_comment, - [200432] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10236), 1, - sym_identifier, - ACTIONS(10238), 1, - anon_sym_STAR, - STATE(6499), 1, + STATE(6355), 1, sym_comment, - [200448] = 4, + [200527] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6500), 1, + STATE(6356), 1, sym_comment, - ACTIONS(5848), 2, + ACTIONS(5789), 2, sym__automatic_semicolon, anon_sym_SEMI, - [200462] = 4, + [200541] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6501), 1, + STATE(6357), 1, sym_comment, - ACTIONS(5820), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200476] = 5, + ACTIONS(3649), 2, + anon_sym_else, + anon_sym_while, + [200555] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7562), 1, - anon_sym_LBRACE, - STATE(1089), 1, - sym_class_body, - STATE(6502), 1, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(4121), 1, + sym_formal_parameters, + STATE(6358), 1, sym_comment, - [200492] = 4, + [200571] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6503), 1, + STATE(6359), 1, sym_comment, - ACTIONS(6835), 2, + ACTIONS(6827), 2, anon_sym_COMMA, anon_sym_RBRACE, - [200506] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6504), 1, - sym_comment, - ACTIONS(5861), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200520] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3632), 1, - sym_statement_block, - STATE(6505), 1, - sym_comment, - [200536] = 5, + [200585] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8703), 1, - anon_sym_LBRACE, - STATE(384), 1, - sym_statement_block, - STATE(6506), 1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(6360), 1, sym_comment, - [200552] = 5, + STATE(6531), 1, + sym__from_clause, + [200601] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10240), 1, + ACTIONS(10247), 1, sym_identifier, - ACTIONS(10242), 1, + ACTIONS(10249), 1, anon_sym_STAR, - STATE(6507), 1, + STATE(6361), 1, sym_comment, - [200568] = 5, + [200617] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10244), 1, - anon_sym_SEMI, - ACTIONS(10246), 1, - sym__automatic_semicolon, - STATE(6508), 1, + STATE(6362), 1, sym_comment, - [200584] = 5, + ACTIONS(3647), 2, + anon_sym_else, + anon_sym_while, + [200631] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7634), 1, + ACTIONS(7593), 1, anon_sym_LBRACE, - STATE(1238), 1, + STATE(1255), 1, sym_class_body, - STATE(6509), 1, + STATE(6363), 1, sym_comment, - [200600] = 5, + [200647] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8673), 1, + ACTIONS(7697), 1, anon_sym_LBRACE, - STATE(1101), 1, - sym_statement_block, - STATE(6510), 1, + STATE(378), 1, + sym_class_body, + STATE(6364), 1, sym_comment, - [200616] = 5, + [200663] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7634), 1, + ACTIONS(7593), 1, anon_sym_LBRACE, - STATE(1233), 1, + STATE(1245), 1, sym_class_body, - STATE(6511), 1, + STATE(6365), 1, sym_comment, - [200632] = 4, + [200679] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6512), 1, + STATE(6366), 1, sym_comment, - ACTIONS(6843), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [200646] = 5, + ACTIONS(3643), 2, + anon_sym_else, + anon_sym_while, + [200693] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7660), 1, + ACTIONS(8579), 1, anon_sym_LBRACE, - STATE(378), 1, - sym_class_body, - STATE(6513), 1, - sym_comment, - [200662] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6514), 1, + STATE(1201), 1, + sym_statement_block, + STATE(6367), 1, sym_comment, - ACTIONS(6847), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [200676] = 5, + [200709] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10248), 1, + ACTIONS(10251), 1, sym_identifier, - ACTIONS(10250), 1, - sym_private_property_identifier, - STATE(6515), 1, + ACTIONS(10253), 1, + anon_sym_STAR, + STATE(6368), 1, sym_comment, - [200692] = 5, + [200725] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7662), 1, + ACTIONS(7639), 1, anon_sym_LBRACE, - STATE(1381), 1, + STATE(1205), 1, sym_class_body, - STATE(6516), 1, + STATE(6369), 1, sym_comment, - [200708] = 5, + [200741] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3621), 1, - sym_statement_block, - STATE(6517), 1, + STATE(6370), 1, sym_comment, - [200724] = 4, + ACTIONS(3639), 2, + anon_sym_else, + anon_sym_while, + [200755] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6518), 1, + STATE(6371), 1, sym_comment, - ACTIONS(2264), 2, + ACTIONS(3637), 2, anon_sym_else, anon_sym_while, - [200738] = 4, + [200769] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6519), 1, - sym_comment, - ACTIONS(6851), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [200752] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10252), 1, - sym_identifier, - ACTIONS(10254), 1, - sym_private_property_identifier, - STATE(6520), 1, - sym_comment, - [200768] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10256), 1, - sym_identifier, - ACTIONS(10258), 1, - sym_private_property_identifier, - STATE(6521), 1, + STATE(6372), 1, sym_comment, - [200784] = 4, + ACTIONS(3635), 2, + anon_sym_else, + anon_sym_while, + [200783] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6522), 1, + STATE(6373), 1, sym_comment, - ACTIONS(6804), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [200798] = 4, + ACTIONS(3633), 2, + anon_sym_else, + anon_sym_while, + [200797] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6523), 1, + STATE(6374), 1, sym_comment, - ACTIONS(3559), 2, + ACTIONS(3631), 2, anon_sym_else, anon_sym_while, - [200812] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [200811] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10260), 1, - sym_identifier, - ACTIONS(10262), 1, - sym_private_property_identifier, - STATE(6524), 1, - sym_comment, - [200828] = 5, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10005), 1, - sym_identifier, - ACTIONS(10009), 1, - sym_private_property_identifier, - STATE(6525), 1, + ACTIONS(9772), 1, + anon_sym_LBRACE, + STATE(1216), 1, + sym_statement_block, + STATE(6375), 1, sym_comment, - [200844] = 5, + [200827] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10264), 1, + ACTIONS(10255), 1, sym_identifier, - ACTIONS(10266), 1, + ACTIONS(10257), 1, anon_sym_STAR, - STATE(6526), 1, + STATE(6376), 1, sym_comment, - [200860] = 5, + [200843] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8703), 1, - anon_sym_LBRACE, - STATE(377), 1, - sym_statement_block, - STATE(6527), 1, + STATE(6377), 1, sym_comment, - [200876] = 5, + ACTIONS(3629), 2, + anon_sym_else, + anon_sym_while, + [200857] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3662), 1, - sym_statement_block, - STATE(6528), 1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(5543), 1, + sym__from_clause, + STATE(6378), 1, sym_comment, - [200892] = 5, + [200873] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7660), 1, - anon_sym_LBRACE, - STATE(373), 1, - sym_class_body, - STATE(6529), 1, + STATE(6379), 1, sym_comment, - [200908] = 5, + ACTIONS(3627), 2, + anon_sym_else, + anon_sym_while, + [200887] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10268), 1, - anon_sym_SEMI, - ACTIONS(10270), 1, - sym__automatic_semicolon, - STATE(6530), 1, + STATE(6380), 1, sym_comment, - [200924] = 4, + ACTIONS(3625), 2, + anon_sym_else, + anon_sym_while, + [200901] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6531), 1, + STATE(6381), 1, sym_comment, - ACTIONS(10272), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200938] = 4, + ACTIONS(2198), 2, + anon_sym_else, + anon_sym_while, + [200915] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6532), 1, + STATE(6382), 1, sym_comment, - ACTIONS(10274), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [200952] = 5, + ACTIONS(2180), 2, + anon_sym_else, + anon_sym_while, + [200929] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7634), 1, - anon_sym_LBRACE, - STATE(1204), 1, - sym_class_body, - STATE(6533), 1, + ACTIONS(10259), 1, + sym_identifier, + ACTIONS(10261), 1, + anon_sym_STAR, + STATE(6383), 1, sym_comment, - [200968] = 5, + [200945] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3610), 1, - sym_statement_block, - STATE(6534), 1, + ACTIONS(10263), 1, + anon_sym_COMMA, + ACTIONS(10265), 1, + anon_sym_from, + STATE(6384), 1, sym_comment, - [200984] = 5, + [200961] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(7911), 1, anon_sym_LBRACE, - STATE(6535), 1, + STATE(6385), 1, sym_comment, - STATE(6754), 1, + STATE(6680), 1, sym_statement_block, - [201000] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10276), 1, - anon_sym_SEMI, - ACTIONS(10278), 1, - sym__automatic_semicolon, - STATE(6536), 1, - sym_comment, - [201016] = 4, + [200977] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6537), 1, + STATE(6386), 1, sym_comment, - ACTIONS(3555), 2, + ACTIONS(3621), 2, anon_sym_else, anon_sym_while, - [201030] = 5, + [200991] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3635), 1, - sym_statement_block, - STATE(6538), 1, + STATE(6387), 1, sym_comment, - [201046] = 5, + ACTIONS(6851), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201005] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10280), 1, + ACTIONS(7911), 1, anon_sym_LBRACE, - STATE(6539), 1, + STATE(6388), 1, sym_comment, - STATE(6968), 1, - sym_switch_body, - [201062] = 5, + STATE(6672), 1, + sym_statement_block, + [201021] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10282), 1, - anon_sym_LPAREN, - STATE(107), 1, - sym__for_header, - STATE(6540), 1, + STATE(6389), 1, sym_comment, - [201078] = 5, + ACTIONS(6807), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201035] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(5652), 1, - sym__from_clause, - STATE(6541), 1, + STATE(6390), 1, sym_comment, - [201094] = 4, + ACTIONS(3619), 2, + anon_sym_else, + anon_sym_while, + [201049] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6542), 1, + STATE(6391), 1, sym_comment, - ACTIONS(3553), 2, + ACTIONS(3671), 2, anon_sym_else, anon_sym_while, - [201108] = 5, + [201063] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3634), 1, - sym_statement_block, - STATE(6543), 1, + STATE(6392), 1, sym_comment, - [201124] = 5, + ACTIONS(3615), 2, + anon_sym_else, + anon_sym_while, + [201077] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7660), 1, - anon_sym_LBRACE, - STATE(364), 1, - sym_class_body, - STATE(6544), 1, + ACTIONS(10267), 1, + sym_identifier, + ACTIONS(10269), 1, + sym_private_property_identifier, + STATE(6393), 1, sym_comment, - [201140] = 5, + [201093] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3633), 1, - sym_statement_block, - STATE(6545), 1, + STATE(6394), 1, sym_comment, - [201156] = 5, + ACTIONS(3613), 2, + anon_sym_else, + anon_sym_while, + [201107] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10198), 1, - anon_sym_LBRACE, - STATE(1166), 1, - sym_statement_block, - STATE(6546), 1, + STATE(6395), 1, sym_comment, - [201172] = 5, + ACTIONS(3611), 2, + anon_sym_else, + anon_sym_while, + [201121] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10284), 1, - anon_sym_LPAREN, - STATE(1005), 1, - sym_parenthesized_expression, - STATE(6547), 1, + STATE(6396), 1, sym_comment, - [201188] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3609), 2, + anon_sym_else, + anon_sym_while, + [201135] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10286), 1, - sym_identifier, - ACTIONS(10288), 1, - anon_sym_STAR, - STATE(6548), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3471), 1, + sym_statement_block, + STATE(6397), 1, sym_comment, - [201204] = 5, + [201151] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10290), 1, + ACTIONS(9999), 1, anon_sym_LBRACE, - STATE(1569), 1, - sym_enum_body, - STATE(6549), 1, + STATE(1016), 1, + sym_statement_block, + STATE(6398), 1, sym_comment, - [201220] = 4, + [201167] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6550), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3475), 1, + sym_statement_block, + STATE(6399), 1, sym_comment, - ACTIONS(9181), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201234] = 4, + [201183] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6551), 1, + ACTIONS(7769), 1, + anon_sym_LBRACE, + STATE(1186), 1, + sym_class_body, + STATE(6400), 1, sym_comment, - ACTIONS(10292), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201248] = 5, + [201199] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10294), 1, - anon_sym_COMMA, - ACTIONS(10296), 1, - anon_sym_from, - STATE(6552), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3476), 1, + sym_statement_block, + STATE(6401), 1, sym_comment, - [201264] = 4, + [201215] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6553), 1, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(75), 1, + sym_parenthesized_expression, + STATE(6402), 1, sym_comment, - ACTIONS(3549), 2, - anon_sym_else, - anon_sym_while, - [201278] = 5, + [201231] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10298), 1, - anon_sym_SEMI, - ACTIONS(10300), 1, - sym__automatic_semicolon, - STATE(6554), 1, + ACTIONS(8889), 1, + anon_sym_LBRACE, + STATE(1156), 1, + sym_statement_block, + STATE(6403), 1, sym_comment, - [201294] = 5, + [201247] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10302), 1, - anon_sym_SEMI, - ACTIONS(10304), 1, - sym__automatic_semicolon, - STATE(6555), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3479), 1, + sym_statement_block, + STATE(6404), 1, sym_comment, - [201310] = 5, + [201263] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10306), 1, - anon_sym_SEMI, - ACTIONS(10308), 1, - sym__automatic_semicolon, - STATE(6556), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3480), 1, + sym_statement_block, + STATE(6405), 1, sym_comment, - [201326] = 5, + [201279] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10290), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(1507), 1, - sym_enum_body, - STATE(6557), 1, + STATE(3509), 1, + sym_statement_block, + STATE(6406), 1, sym_comment, - [201342] = 5, + [201295] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10310), 1, + ACTIONS(7911), 1, anon_sym_LBRACE, - STATE(1501), 1, + STATE(5803), 1, sym_statement_block, - STATE(6558), 1, + STATE(6407), 1, sym_comment, - [201358] = 4, + [201311] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6559), 1, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(95), 1, + sym_parenthesized_expression, + STATE(6408), 1, sym_comment, - ACTIONS(3535), 2, - anon_sym_else, - anon_sym_while, - [201372] = 4, + [201327] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6560), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(4675), 1, + sym_statement_block, + STATE(6409), 1, sym_comment, - ACTIONS(10312), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201386] = 4, + [201343] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6561), 1, + ACTIONS(10271), 1, + sym_identifier, + ACTIONS(10273), 1, + anon_sym_STAR, + STATE(6410), 1, sym_comment, - ACTIONS(10314), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201400] = 4, + [201359] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6562), 1, + ACTIONS(7805), 1, + anon_sym_LBRACE, + STATE(1236), 1, + sym_class_body, + STATE(6411), 1, sym_comment, - ACTIONS(3533), 2, - anon_sym_else, - anon_sym_while, - [201414] = 4, + [201375] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6563), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3483), 1, + sym_statement_block, + STATE(6412), 1, sym_comment, - ACTIONS(5670), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201428] = 4, + [201391] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6564), 1, + ACTIONS(7671), 1, + anon_sym_LBRACE, + STATE(398), 1, + sym_class_body, + STATE(6413), 1, sym_comment, - ACTIONS(6843), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201442] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [201407] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10316), 1, - sym_identifier, - ACTIONS(10318), 1, - anon_sym_STAR, - STATE(6565), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3498), 1, + sym_statement_block, + STATE(6414), 1, sym_comment, - [201458] = 5, + [201423] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10320), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(1700), 1, - sym_switch_body, - STATE(6566), 1, + STATE(3485), 1, + sym_statement_block, + STATE(6415), 1, sym_comment, - [201474] = 5, + [201439] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10282), 1, - anon_sym_LPAREN, - STATE(88), 1, - sym__for_header, - STATE(6567), 1, + ACTIONS(7805), 1, + anon_sym_LBRACE, + STATE(1244), 1, + sym_class_body, + STATE(6416), 1, sym_comment, - [201490] = 5, + [201455] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(6568), 1, - sym_comment, - STATE(6747), 1, + STATE(3494), 1, sym_statement_block, - [201506] = 5, + STATE(6417), 1, + sym_comment, + [201471] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(10275), 1, anon_sym_LBRACE, - STATE(6569), 1, + STATE(1560), 1, + sym_switch_body, + STATE(6418), 1, sym_comment, - STATE(6570), 1, - sym_statement_block, - [201522] = 4, + [201487] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6570), 1, + ACTIONS(7635), 1, + anon_sym_LBRACE, + STATE(6419), 1, sym_comment, - ACTIONS(6874), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201536] = 4, + STATE(6726), 1, + sym_class_body, + [201503] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6571), 1, + ACTIONS(10277), 1, + anon_sym_LPAREN, + STATE(98), 1, + sym__for_header, + STATE(6420), 1, sym_comment, - ACTIONS(6847), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201550] = 5, + [201519] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(6564), 1, + STATE(3492), 1, sym_statement_block, - STATE(6572), 1, + STATE(6421), 1, sym_comment, - [201566] = 4, + [201535] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6573), 1, + STATE(6422), 1, sym_comment, - ACTIONS(6835), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201580] = 4, + ACTIONS(3607), 2, + anon_sym_else, + anon_sym_while, + [201549] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6574), 1, + ACTIONS(8579), 1, + anon_sym_LBRACE, + STATE(1177), 1, + sym_statement_block, + STATE(6423), 1, sym_comment, - ACTIONS(6831), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201594] = 4, + [201565] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6575), 1, + ACTIONS(7639), 1, + anon_sym_LBRACE, + STATE(1173), 1, + sym_class_body, + STATE(6424), 1, sym_comment, - ACTIONS(5672), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201608] = 4, + [201581] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6576), 1, + ACTIONS(7593), 1, + anon_sym_LBRACE, + STATE(1232), 1, + sym_class_body, + STATE(6425), 1, sym_comment, - ACTIONS(6823), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [201622] = 4, + [201597] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6577), 1, + ACTIONS(9772), 1, + anon_sym_LBRACE, + STATE(1214), 1, + sym_statement_block, + STATE(6426), 1, sym_comment, - ACTIONS(3525), 2, - anon_sym_else, - anon_sym_while, - [201636] = 4, + [201613] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6578), 1, + STATE(6427), 1, sym_comment, - ACTIONS(10322), 2, + ACTIONS(10279), 2, anon_sym_COMMA, anon_sym_RPAREN, - [201650] = 4, + [201627] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6579), 1, + STATE(6428), 1, sym_comment, - ACTIONS(10324), 2, + ACTIONS(10281), 2, sym__automatic_semicolon, anon_sym_SEMI, - [201664] = 4, + [201641] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6580), 1, + STATE(6429), 1, sym_comment, - ACTIONS(5816), 2, + ACTIONS(10283), 2, sym__automatic_semicolon, anon_sym_SEMI, - [201678] = 4, + [201655] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6581), 1, + ACTIONS(7697), 1, + anon_sym_LBRACE, + STATE(368), 1, + sym_class_body, + STATE(6430), 1, sym_comment, - ACTIONS(5811), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201692] = 4, + [201671] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6582), 1, + STATE(6431), 1, sym_comment, - ACTIONS(10326), 2, + ACTIONS(5690), 2, sym__automatic_semicolon, anon_sym_SEMI, - [201706] = 4, + [201685] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6583), 1, + STATE(6432), 1, sym_comment, - ACTIONS(10328), 2, + ACTIONS(5747), 2, sym__automatic_semicolon, anon_sym_SEMI, - [201720] = 5, + [201699] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(2660), 1, - sym_class_body, - STATE(6584), 1, + ACTIONS(10285), 1, + sym_identifier, + ACTIONS(10287), 1, + anon_sym_STAR, + STATE(6433), 1, sym_comment, - [201736] = 4, + [201715] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6585), 1, + STATE(6434), 1, sym_comment, - ACTIONS(5608), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201750] = 5, + ACTIONS(6839), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201729] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10282), 1, - anon_sym_LPAREN, - STATE(104), 1, - sym__for_header, - STATE(6586), 1, + ACTIONS(10289), 1, + anon_sym_SEMI, + ACTIONS(10291), 1, + sym__automatic_semicolon, + STATE(6435), 1, sym_comment, - [201766] = 5, + [201745] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10330), 1, - anon_sym_LBRACE, - STATE(1052), 1, - sym_switch_body, - STATE(6587), 1, + STATE(6436), 1, + sym_comment, + ACTIONS(6843), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [201759] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10293), 1, + sym_identifier, + ACTIONS(10295), 1, + sym_private_property_identifier, + STATE(6437), 1, sym_comment, - [201782] = 5, + [201775] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(3630), 1, + STATE(3497), 1, sym_statement_block, - STATE(6588), 1, + STATE(6438), 1, sym_comment, - [201798] = 4, + [201791] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6589), 1, + STATE(6439), 1, sym_comment, - ACTIONS(5796), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201812] = 5, + ACTIONS(3601), 2, + anon_sym_else, + anon_sym_while, + [201805] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(3653), 1, + STATE(3478), 1, sym_statement_block, - STATE(6590), 1, + STATE(6440), 1, sym_comment, - [201828] = 4, + [201821] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6591), 1, - sym_comment, - ACTIONS(5476), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201842] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10332), 1, - sym_identifier, - ACTIONS(10334), 1, - anon_sym_STAR, - STATE(6592), 1, + ACTIONS(7593), 1, + anon_sym_LBRACE, + STATE(1300), 1, + sym_class_body, + STATE(6441), 1, sym_comment, - [201858] = 4, + [201837] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6593), 1, + STATE(6442), 1, sym_comment, - ACTIONS(3629), 2, + ACTIONS(2306), 2, anon_sym_else, anon_sym_while, - [201872] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5015), 1, - anon_sym_LBRACE, - STATE(2652), 1, - sym_statement_block, - STATE(6594), 1, - sym_comment, - [201888] = 4, + [201851] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6595), 1, + STATE(6443), 1, sym_comment, - ACTIONS(3523), 2, + ACTIONS(3601), 2, anon_sym_else, anon_sym_while, - [201902] = 5, + [201865] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10336), 1, - anon_sym_SEMI, - ACTIONS(10338), 1, - sym__automatic_semicolon, - STATE(6596), 1, + ACTIONS(10297), 1, + sym_identifier, + ACTIONS(10299), 1, + anon_sym_STAR, + STATE(6444), 1, sym_comment, - [201918] = 4, + [201881] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6597), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(5847), 1, + sym_statement_block, + STATE(6445), 1, sym_comment, - ACTIONS(10340), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [201932] = 5, + [201897] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(7759), 1, anon_sym_LBRACE, - STATE(3654), 1, - sym_statement_block, - STATE(6598), 1, + STATE(2470), 1, + sym_class_body, + STATE(6446), 1, sym_comment, - [201948] = 5, + [201913] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10342), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(929), 1, + STATE(3477), 1, sym_statement_block, - STATE(6599), 1, + STATE(6447), 1, sym_comment, - [201964] = 5, + [201929] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10192), 1, + ACTIONS(10209), 1, anon_sym_LPAREN, - STATE(101), 1, + STATE(73), 1, sym_parenthesized_expression, - STATE(6600), 1, + STATE(6448), 1, sym_comment, - [201980] = 5, + [201945] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(4999), 1, anon_sym_LBRACE, - STATE(3655), 1, + STATE(2471), 1, sym_statement_block, - STATE(6601), 1, - sym_comment, - [201996] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10192), 1, - anon_sym_LPAREN, - STATE(77), 1, - sym_parenthesized_expression, - STATE(6602), 1, + STATE(6449), 1, sym_comment, - [202012] = 5, + [201961] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9577), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(1040), 1, + STATE(3500), 1, sym_statement_block, - STATE(6603), 1, + STATE(6450), 1, sym_comment, - [202028] = 5, + [201977] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7588), 1, + ACTIONS(7571), 1, anon_sym_LBRACE, - STATE(5027), 1, + STATE(3112), 1, sym_class_body, - STATE(6604), 1, + STATE(6451), 1, sym_comment, - [202044] = 4, + [201993] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6605), 1, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(113), 1, + sym_parenthesized_expression, + STATE(6452), 1, sym_comment, - ACTIONS(3521), 2, - anon_sym_else, - anon_sym_while, - [202058] = 4, + [202009] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6606), 1, + STATE(6453), 1, sym_comment, - ACTIONS(3517), 2, - anon_sym_else, - anon_sym_while, - [202072] = 5, + ACTIONS(5733), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202023] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(4969), 1, anon_sym_LBRACE, - STATE(3649), 1, + STATE(3110), 1, sym_statement_block, - STATE(6607), 1, + STATE(6454), 1, sym_comment, - [202088] = 4, + [202039] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6608), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3503), 1, + sym_statement_block, + STATE(6455), 1, sym_comment, - ACTIONS(3507), 2, - anon_sym_else, - anon_sym_while, - [202102] = 4, + [202055] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6609), 1, + ACTIONS(7657), 1, + anon_sym_LBRACE, + STATE(5850), 1, + sym_class_body, + STATE(6456), 1, sym_comment, - ACTIONS(3505), 2, - anon_sym_else, - anon_sym_while, - [202116] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202071] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10344), 1, - sym_identifier, - ACTIONS(10346), 1, - anon_sym_STAR, - STATE(6610), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7863), 1, + anon_sym_LBRACE, + STATE(5851), 1, + sym_statement_block, + STATE(6457), 1, sym_comment, - [202132] = 4, + [202087] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6611), 1, + STATE(6458), 1, sym_comment, - ACTIONS(3503), 2, - anon_sym_else, - anon_sym_while, - [202146] = 4, + ACTIONS(10301), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202101] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6612), 1, + STATE(6459), 1, sym_comment, - ACTIONS(3487), 2, + ACTIONS(3617), 2, anon_sym_else, anon_sym_while, - [202160] = 4, + [202115] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6613), 1, + ACTIONS(7635), 1, + anon_sym_LBRACE, + STATE(6460), 1, sym_comment, - ACTIONS(3495), 2, - anon_sym_else, - anon_sym_while, - [202174] = 5, + STATE(6880), 1, + sym_class_body, + [202131] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7624), 1, + ACTIONS(7571), 1, anon_sym_LBRACE, - STATE(3202), 1, + STATE(3207), 1, sym_class_body, - STATE(6614), 1, + STATE(6461), 1, sym_comment, - [202190] = 4, + [202147] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6615), 1, + ACTIONS(8877), 1, + anon_sym_LBRACE, + STATE(352), 1, + sym_statement_block, + STATE(6462), 1, sym_comment, - ACTIONS(3593), 2, - anon_sym_else, - anon_sym_while, - [202204] = 4, + [202163] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6616), 1, + STATE(6463), 1, sym_comment, - ACTIONS(3621), 2, + ACTIONS(3603), 2, anon_sym_else, anon_sym_while, - [202218] = 5, + [202177] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4957), 1, - anon_sym_LBRACE, - STATE(3195), 1, - sym_statement_block, - STATE(6617), 1, + ACTIONS(7272), 1, + anon_sym_LPAREN, + STATE(4323), 1, + sym_formal_parameters, + STATE(6464), 1, sym_comment, - [202234] = 5, + [202193] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9577), 1, - anon_sym_LBRACE, - STATE(1050), 1, - sym_statement_block, - STATE(6618), 1, + ACTIONS(10303), 1, + anon_sym_SEMI, + ACTIONS(10305), 1, + sym__automatic_semicolon, + STATE(6465), 1, sym_comment, - [202250] = 5, + [202209] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7588), 1, + ACTIONS(7769), 1, anon_sym_LBRACE, - STATE(5032), 1, + STATE(1164), 1, sym_class_body, - STATE(6619), 1, + STATE(6466), 1, sym_comment, - [202266] = 5, + [202225] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7866), 1, + ACTIONS(8889), 1, anon_sym_LBRACE, - STATE(5519), 1, + STATE(1129), 1, sym_statement_block, - STATE(6620), 1, + STATE(6467), 1, sym_comment, - [202282] = 5, + [202241] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7588), 1, + ACTIONS(7769), 1, anon_sym_LBRACE, - STATE(5034), 1, + STATE(1161), 1, sym_class_body, - STATE(6621), 1, + STATE(6468), 1, sym_comment, - [202298] = 5, + [202257] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7624), 1, + ACTIONS(7671), 1, anon_sym_LBRACE, - STATE(3211), 1, + STATE(339), 1, sym_class_body, - STATE(6622), 1, + STATE(6469), 1, sym_comment, - [202314] = 5, + [202273] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7588), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(5039), 1, - sym_class_body, - STATE(6623), 1, + STATE(3496), 1, + sym_statement_block, + STATE(6470), 1, sym_comment, - [202330] = 4, + [202289] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6624), 1, + ACTIONS(10307), 1, + anon_sym_LBRACE, + STATE(947), 1, + sym_statement_block, + STATE(6471), 1, sym_comment, - ACTIONS(10348), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [202344] = 4, + [202305] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6625), 1, + STATE(6472), 1, sym_comment, - ACTIONS(3623), 2, + ACTIONS(3601), 2, anon_sym_else, anon_sym_while, - [202358] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + [202319] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3642), 1, - sym_statement_block, - STATE(6626), 1, - sym_comment, - [202374] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(6627), 1, + ACTIONS(10309), 1, + sym_identifier, + ACTIONS(10311), 1, + sym_private_property_identifier, + STATE(6473), 1, sym_comment, - STATE(7270), 1, - sym_formal_parameters, - [202390] = 4, + [202335] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6628), 1, + ACTIONS(7635), 1, + anon_sym_LBRACE, + STATE(6474), 1, sym_comment, - ACTIONS(6815), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [202404] = 5, + STATE(6919), 1, + sym_class_body, + [202351] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10350), 1, + ACTIONS(7805), 1, anon_sym_LBRACE, - STATE(1731), 1, - sym_statement_block, - STATE(6629), 1, + STATE(1290), 1, + sym_class_body, + STATE(6475), 1, sym_comment, - [202420] = 5, + [202367] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10352), 1, - anon_sym_LBRACE, - STATE(1764), 1, - sym_enum_body, - STATE(6630), 1, + STATE(6476), 1, sym_comment, - [202436] = 5, + ACTIONS(10313), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202381] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3620), 1, - sym_statement_block, - STATE(6631), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + STATE(6477), 1, sym_comment, - [202452] = 5, + STATE(7087), 1, + sym_formal_parameters, + [202397] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10354), 1, + ACTIONS(10315), 1, sym_identifier, - ACTIONS(10356), 1, + ACTIONS(10317), 1, sym_private_property_identifier, - STATE(6632), 1, + STATE(6478), 1, sym_comment, - [202468] = 4, + [202413] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6633), 1, + STATE(6479), 1, sym_comment, - ACTIONS(3647), 2, + ACTIONS(10319), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202427] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6480), 1, + sym_comment, + ACTIONS(3601), 2, anon_sym_else, anon_sym_while, - [202482] = 5, + [202441] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10045), 1, + ACTIONS(10321), 1, sym_identifier, - ACTIONS(10049), 1, + ACTIONS(10323), 1, sym_private_property_identifier, - STATE(6634), 1, + STATE(6481), 1, sym_comment, - [202498] = 4, + [202457] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6635), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3517), 1, + sym_statement_block, + STATE(6482), 1, sym_comment, - ACTIONS(3649), 2, - anon_sym_else, - anon_sym_while, - [202512] = 4, + [202473] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6636), 1, + STATE(6483), 1, sym_comment, - ACTIONS(3649), 2, + ACTIONS(3601), 2, anon_sym_else, anon_sym_while, - [202526] = 5, + [202487] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10325), 1, + sym_identifier, + ACTIONS(10327), 1, + sym_private_property_identifier, + STATE(6484), 1, + sym_comment, + [202503] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(10329), 1, anon_sym_LBRACE, - STATE(6637), 1, - sym_comment, - STATE(7100), 1, + STATE(1513), 1, sym_statement_block, - [202542] = 4, + STATE(6485), 1, + sym_comment, + [202519] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - STATE(6638), 1, + ACTIONS(10058), 1, + sym_identifier, + ACTIONS(10062), 1, + sym_private_property_identifier, + STATE(6486), 1, sym_comment, - ACTIONS(10358), 2, - sym__glimmer_template_content, - anon_sym_LT_SLASHtemplate_GT, - [202556] = 4, + [202535] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6639), 1, + ACTIONS(10331), 1, + anon_sym_LBRACE, + STATE(1522), 1, + sym_enum_body, + STATE(6487), 1, sym_comment, - ACTIONS(3657), 2, - anon_sym_else, - anon_sym_while, - [202570] = 4, + [202551] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6640), 1, - sym_comment, - ACTIONS(8524), 2, + ACTIONS(8877), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [202584] = 5, + STATE(340), 1, + sym_statement_block, + STATE(6488), 1, + sym_comment, + [202567] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4957), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(3219), 1, + STATE(3482), 1, sym_statement_block, - STATE(6641), 1, + STATE(6489), 1, sym_comment, - [202600] = 5, + [202583] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10360), 1, + ACTIONS(7671), 1, anon_sym_LBRACE, - STATE(6642), 1, + STATE(375), 1, + sym_class_body, + STATE(6490), 1, sym_comment, - STATE(7106), 1, - sym_enum_body, - [202616] = 5, + [202599] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10333), 1, + sym_identifier, + ACTIONS(10335), 1, + sym_private_property_identifier, + STATE(6491), 1, + sym_comment, + [202615] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10362), 1, + ACTIONS(10337), 1, anon_sym_SEMI, - ACTIONS(10364), 1, + ACTIONS(10339), 1, sym__automatic_semicolon, - STATE(6643), 1, + STATE(6492), 1, sym_comment, - [202632] = 5, + [202631] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7588), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(5044), 1, - sym_class_body, - STATE(6644), 1, + STATE(3484), 1, + sym_statement_block, + STATE(6493), 1, + sym_comment, + [202647] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9524), 1, + sym_identifier, + ACTIONS(9528), 1, + sym_private_property_identifier, + STATE(6494), 1, + sym_comment, + [202663] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6495), 1, + sym_comment, + ACTIONS(10341), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202677] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6496), 1, + sym_comment, + ACTIONS(5669), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202691] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(79), 1, + sym_parenthesized_expression, + STATE(6497), 1, + sym_comment, + [202707] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10211), 1, + anon_sym_LPAREN, + STATE(6498), 1, + sym_comment, + STATE(6504), 1, + sym_parenthesized_expression, + [202723] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6499), 1, sym_comment, - [202648] = 5, + ACTIONS(10343), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202737] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7866), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(5517), 1, + STATE(3516), 1, sym_statement_block, - STATE(6645), 1, + STATE(6500), 1, sym_comment, - [202664] = 5, + [202753] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7588), 1, + ACTIONS(7769), 1, anon_sym_LBRACE, - STATE(5045), 1, + STATE(1108), 1, sym_class_body, - STATE(6646), 1, + STATE(6501), 1, sym_comment, - [202680] = 5, + [202769] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7624), 1, - anon_sym_LBRACE, - STATE(3233), 1, - sym_class_body, - STATE(6647), 1, + STATE(6502), 1, sym_comment, - [202696] = 5, + ACTIONS(10345), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [202783] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10366), 1, + ACTIONS(10347), 1, sym_identifier, - ACTIONS(10368), 1, + ACTIONS(10349), 1, sym_private_property_identifier, - STATE(6648), 1, + STATE(6503), 1, + sym_comment, + [202799] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10351), 1, + anon_sym_LBRACE, + STATE(6377), 1, + sym_switch_body, + STATE(6504), 1, sym_comment, - [202712] = 5, + [202815] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10370), 1, - sym_identifier, - ACTIONS(10372), 1, - sym_private_property_identifier, - STATE(6649), 1, + STATE(6505), 1, sym_comment, - [202728] = 5, + ACTIONS(10353), 2, + sym__glimmer_template_content, + anon_sym_LT_SLASHtemplate_GT, + [202829] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10374), 1, + ACTIONS(10355), 1, anon_sym_SEMI, - ACTIONS(10376), 1, + ACTIONS(10357), 1, sym__automatic_semicolon, - STATE(6650), 1, + STATE(6506), 1, sym_comment, - [202744] = 5, + [202845] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7588), 1, - anon_sym_LBRACE, - STATE(5053), 1, - sym_class_body, - STATE(6651), 1, + ACTIONS(10277), 1, + anon_sym_LPAREN, + STATE(115), 1, + sym__for_header, + STATE(6507), 1, sym_comment, - [202760] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202861] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10011), 1, - sym_identifier, - ACTIONS(10015), 1, - sym_private_property_identifier, - STATE(6652), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10359), 1, + anon_sym_LBRACE, + STATE(1433), 1, + sym_switch_body, + STATE(6508), 1, sym_comment, - [202776] = 4, + [202877] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6653), 1, + ACTIONS(10277), 1, + anon_sym_LPAREN, + STATE(94), 1, + sym__for_header, + STATE(6509), 1, sym_comment, - ACTIONS(3643), 2, - anon_sym_else, - anon_sym_while, - [202790] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [202893] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10378), 1, - sym_identifier, - ACTIONS(10380), 1, - sym_private_property_identifier, - STATE(6654), 1, - sym_comment, - [202806] = 5, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, + STATE(6510), 1, + sym_comment, + ACTIONS(8186), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [202907] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10382), 1, - sym_identifier, - ACTIONS(10384), 1, - sym_private_property_identifier, - STATE(6655), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3464), 1, + sym_statement_block, + STATE(6511), 1, sym_comment, - [202822] = 5, + [202923] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10386), 1, + ACTIONS(10361), 1, sym_identifier, - ACTIONS(10388), 1, + ACTIONS(10363), 1, sym_private_property_identifier, - STATE(6656), 1, + STATE(6512), 1, sym_comment, - [202838] = 5, + [202939] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10390), 1, + ACTIONS(9550), 1, sym_identifier, - ACTIONS(10392), 1, + ACTIONS(9554), 1, sym_private_property_identifier, - STATE(6657), 1, + STATE(6513), 1, sym_comment, - [202854] = 5, + [202955] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4957), 1, - anon_sym_LBRACE, - STATE(3249), 1, - sym_statement_block, - STATE(6658), 1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(6514), 1, sym_comment, - [202870] = 5, + STATE(6777), 1, + sym__from_clause, + [202971] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7624), 1, + ACTIONS(7639), 1, anon_sym_LBRACE, - STATE(3251), 1, + STATE(1178), 1, sym_class_body, - STATE(6659), 1, + STATE(6515), 1, sym_comment, - [202886] = 5, + [202987] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10394), 1, + ACTIONS(10365), 1, anon_sym_SEMI, - ACTIONS(10396), 1, + ACTIONS(10367), 1, sym__automatic_semicolon, - STATE(6660), 1, + STATE(6516), 1, sym_comment, - [202902] = 4, + [203003] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6661), 1, + STATE(6517), 1, sym_comment, - ACTIONS(10398), 2, + ACTIONS(10369), 2, sym__automatic_semicolon, anon_sym_SEMI, - [202916] = 4, + [203017] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6662), 1, + STATE(6518), 1, sym_comment, - ACTIONS(10400), 2, + ACTIONS(10371), 2, sym__automatic_semicolon, anon_sym_SEMI, - [202930] = 5, + [203031] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7588), 1, + ACTIONS(8638), 1, anon_sym_LBRACE, - STATE(5062), 1, - sym_class_body, - STATE(6663), 1, + STATE(364), 1, + sym_statement_block, + STATE(6519), 1, sym_comment, - [202946] = 4, + [203047] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6664), 1, + STATE(6520), 1, sym_comment, - ACTIONS(10402), 2, + ACTIONS(5656), 2, sym__automatic_semicolon, anon_sym_SEMI, - [202960] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6665), 1, - sym_comment, - ACTIONS(3651), 2, - anon_sym_else, - anon_sym_while, - [202974] = 5, + [203061] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(7697), 1, anon_sym_LBRACE, - STATE(3618), 1, - sym_statement_block, - STATE(6666), 1, - sym_comment, - [202990] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10404), 1, - anon_sym_SEMI, - ACTIONS(10406), 1, - sym__automatic_semicolon, - STATE(6667), 1, + STATE(362), 1, + sym_class_body, + STATE(6521), 1, sym_comment, - [203006] = 4, + [203077] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6668), 1, + STATE(6522), 1, sym_comment, - ACTIONS(3655), 2, + ACTIONS(3601), 2, anon_sym_else, anon_sym_while, - [203020] = 4, + [203091] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6669), 1, + STATE(6523), 1, sym_comment, - ACTIONS(3655), 2, + ACTIONS(3605), 2, anon_sym_else, anon_sym_while, - [203034] = 4, + [203105] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6670), 1, - sym_comment, - ACTIONS(3671), 2, - anon_sym_else, - anon_sym_while, - [203048] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10408), 1, - sym_identifier, - ACTIONS(10410), 1, - anon_sym_STAR, - STATE(6671), 1, + ACTIONS(10373), 1, + anon_sym_LBRACE, + STATE(1377), 1, + sym_switch_body, + STATE(6524), 1, sym_comment, - [203064] = 5, + [203121] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7624), 1, + ACTIONS(4969), 1, anon_sym_LBRACE, - STATE(3301), 1, - sym_class_body, - STATE(6672), 1, + STATE(3182), 1, + sym_statement_block, + STATE(6525), 1, sym_comment, - [203080] = 5, + [203137] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3658), 1, - sym_statement_block, - STATE(6673), 1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(5507), 1, + sym__from_clause, + STATE(6526), 1, sym_comment, - [203096] = 5, + [203153] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10310), 1, + ACTIONS(9608), 1, anon_sym_LBRACE, - STATE(1517), 1, + STATE(1261), 1, sym_statement_block, - STATE(6674), 1, + STATE(6527), 1, sym_comment, - [203112] = 5, + [203169] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10412), 1, - anon_sym_LPAREN, - STATE(1119), 1, - sym_parenthesized_expression, - STATE(6675), 1, + ACTIONS(10375), 1, + sym_identifier, + ACTIONS(10377), 1, + anon_sym_STAR, + STATE(6528), 1, sym_comment, - [203128] = 4, + [203185] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6676), 1, + STATE(6529), 1, sym_comment, - ACTIONS(3673), 2, - anon_sym_else, - anon_sym_while, - [203142] = 5, + ACTIONS(5654), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203199] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(3616), 1, + STATE(3490), 1, sym_statement_block, - STATE(6677), 1, + STATE(6530), 1, sym_comment, - [203158] = 5, + [203215] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10414), 1, - anon_sym_LBRACE, - STATE(5085), 1, - sym_enum_body, - STATE(6678), 1, + ACTIONS(10379), 1, + anon_sym_SEMI, + ACTIONS(10381), 1, + sym__automatic_semicolon, + STATE(6531), 1, sym_comment, - [203174] = 4, + [203231] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6679), 1, - sym_comment, - ACTIONS(9024), 2, - sym__automatic_semicolon, + ACTIONS(10383), 1, anon_sym_SEMI, - [203188] = 5, + ACTIONS(10385), 1, + sym__automatic_semicolon, + STATE(6532), 1, + sym_comment, + [203247] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10192), 1, + ACTIONS(10277), 1, anon_sym_LPAREN, - STATE(73), 1, - sym_parenthesized_expression, - STATE(6680), 1, + STATE(96), 1, + sym__for_header, + STATE(6533), 1, sym_comment, - [203204] = 5, + [203263] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10196), 1, - anon_sym_LPAREN, - STATE(6539), 1, - sym_parenthesized_expression, - STATE(6681), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(6359), 1, + sym_statement_block, + STATE(6534), 1, sym_comment, - [203220] = 4, + [203279] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6682), 1, + STATE(6535), 1, sym_comment, - ACTIONS(10416), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203234] = 5, + ACTIONS(3597), 2, + anon_sym_else, + anon_sym_while, + [203293] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10418), 1, - anon_sym_SEMI, - ACTIONS(10420), 1, - sym__automatic_semicolon, - STATE(6683), 1, + STATE(6536), 1, sym_comment, - [203250] = 5, + ACTIONS(10387), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203307] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3614), 1, - sym_statement_block, - STATE(6684), 1, + STATE(6537), 1, sym_comment, - [203266] = 5, + ACTIONS(9584), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203321] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10422), 1, - anon_sym_SEMI, - ACTIONS(10424), 1, - sym__automatic_semicolon, - STATE(6685), 1, + STATE(6538), 1, sym_comment, - [203282] = 4, + ACTIONS(9579), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203335] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6686), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + STATE(6539), 1, sym_comment, - ACTIONS(3675), 2, - anon_sym_else, - anon_sym_while, - [203296] = 4, + STATE(6988), 1, + sym_formal_parameters, + [203351] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6687), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(6387), 1, + sym_statement_block, + STATE(6540), 1, sym_comment, - ACTIONS(3591), 2, - anon_sym_else, - anon_sym_while, - [203310] = 4, + [203367] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6688), 1, + STATE(6541), 1, sym_comment, - ACTIONS(3653), 2, + ACTIONS(3595), 2, anon_sym_else, anon_sym_while, - [203324] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10426), 1, - anon_sym_SEMI, - ACTIONS(10428), 1, - sym__automatic_semicolon, - STATE(6689), 1, - sym_comment, - [203340] = 5, + [203381] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10430), 1, - anon_sym_SEMI, - ACTIONS(10432), 1, - sym__automatic_semicolon, - STATE(6690), 1, + STATE(6542), 1, sym_comment, - [203356] = 5, + ACTIONS(6815), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203395] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(7911), 1, anon_sym_LBRACE, - STATE(3624), 1, + STATE(6389), 1, sym_statement_block, - STATE(6691), 1, + STATE(6543), 1, sym_comment, - [203372] = 5, + [203411] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10434), 1, - anon_sym_SEMI, - ACTIONS(10436), 1, - sym__automatic_semicolon, - STATE(6692), 1, + STATE(6544), 1, sym_comment, - [203388] = 5, + ACTIONS(10389), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203425] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10414), 1, - anon_sym_LBRACE, - STATE(5102), 1, - sym_enum_body, - STATE(6693), 1, + STATE(6545), 1, sym_comment, - [203404] = 5, + ACTIONS(6811), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203439] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7866), 1, + ACTIONS(7631), 1, anon_sym_LBRACE, - STATE(5074), 1, - sym_statement_block, - STATE(6694), 1, + STATE(1611), 1, + sym_class_body, + STATE(6546), 1, sym_comment, - [203420] = 4, + [203455] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6695), 1, + STATE(6547), 1, sym_comment, - ACTIONS(9950), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203434] = 4, + ACTIONS(10391), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203469] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6696), 1, + STATE(6548), 1, sym_comment, - ACTIONS(9969), 2, + ACTIONS(10393), 2, anon_sym_COMMA, anon_sym_RBRACE, - [203448] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(6697), 1, - sym_comment, - STATE(6698), 1, - sym__from_clause, - [203464] = 5, + [203483] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10438), 1, + ACTIONS(10395), 1, anon_sym_SEMI, - ACTIONS(10440), 1, + ACTIONS(10397), 1, sym__automatic_semicolon, - STATE(6698), 1, + STATE(6549), 1, sym_comment, - [203480] = 5, + [203499] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10442), 1, - anon_sym_SEMI, - ACTIONS(10444), 1, - sym__automatic_semicolon, - STATE(6699), 1, + STATE(6550), 1, sym_comment, - [203496] = 5, + ACTIONS(3595), 2, + anon_sym_else, + anon_sym_while, + [203513] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(3661), 1, + STATE(3511), 1, sym_statement_block, - STATE(6700), 1, - sym_comment, - [203512] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6701), 1, + STATE(6551), 1, sym_comment, - ACTIONS(3483), 2, - anon_sym_else, - anon_sym_while, - [203526] = 5, + [203529] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(7759), 1, anon_sym_LBRACE, - STATE(6702), 1, + STATE(2498), 1, + sym_class_body, + STATE(6552), 1, sym_comment, - STATE(7005), 1, - sym_statement_block, - [203542] = 5, + [203545] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(4999), 1, anon_sym_LBRACE, - STATE(3617), 1, + STATE(2499), 1, sym_statement_block, - STATE(6703), 1, + STATE(6553), 1, sym_comment, - [203558] = 4, + [203561] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6704), 1, + ACTIONS(4999), 1, + anon_sym_LBRACE, + STATE(2500), 1, + sym_statement_block, + STATE(6554), 1, sym_comment, - ACTIONS(3519), 2, - anon_sym_else, - anon_sym_while, - [203572] = 4, + [203577] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6705), 1, + STATE(6555), 1, sym_comment, - ACTIONS(3519), 2, - anon_sym_else, - anon_sym_while, - [203586] = 4, + ACTIONS(5700), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203591] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6706), 1, + STATE(6556), 1, sym_comment, - ACTIONS(10446), 2, + ACTIONS(5704), 2, sym__automatic_semicolon, anon_sym_SEMI, - [203600] = 4, + [203605] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6707), 1, - sym_comment, - ACTIONS(5709), 2, - sym__automatic_semicolon, + ACTIONS(10399), 1, anon_sym_SEMI, - [203614] = 5, + ACTIONS(10401), 1, + sym__automatic_semicolon, + STATE(6557), 1, + sym_comment, + [203621] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(7759), 1, anon_sym_LBRACE, - STATE(3629), 1, - sym_statement_block, - STATE(6708), 1, + STATE(2550), 1, + sym_class_body, + STATE(6558), 1, sym_comment, - [203630] = 5, + [203637] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(5660), 1, - sym__from_clause, - STATE(6709), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(6559), 1, sym_comment, - [203646] = 4, + STATE(6839), 1, + sym_statement_block, + [203653] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6710), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3487), 1, + sym_statement_block, + STATE(6560), 1, sym_comment, - ACTIONS(5707), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203660] = 4, + [203669] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6711), 1, + STATE(6561), 1, sym_comment, - ACTIONS(9225), 2, + ACTIONS(10403), 2, sym__automatic_semicolon, anon_sym_SEMI, - [203674] = 5, + [203683] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9893), 1, + ACTIONS(7759), 1, anon_sym_LBRACE, - STATE(1386), 1, - sym_statement_block, - STATE(6712), 1, + STATE(2501), 1, + sym_class_body, + STATE(6562), 1, sym_comment, - [203690] = 4, + [203699] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6713), 1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(5504), 1, + sym__from_clause, + STATE(6563), 1, sym_comment, - ACTIONS(6851), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203704] = 5, + [203715] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10360), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(6714), 1, + STATE(3461), 1, + sym_statement_block, + STATE(6564), 1, sym_comment, - STATE(7004), 1, - sym_enum_body, - [203720] = 5, + [203731] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(5584), 1, - sym__from_clause, - STATE(6715), 1, + STATE(6565), 1, sym_comment, - [203736] = 4, + ACTIONS(10405), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203745] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6716), 1, + STATE(6566), 1, sym_comment, - ACTIONS(3519), 2, - anon_sym_else, - anon_sym_while, - [203750] = 4, + ACTIONS(10407), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [203759] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6717), 1, + ACTIONS(4999), 1, + anon_sym_LBRACE, + STATE(2562), 1, + sym_statement_block, + STATE(6567), 1, sym_comment, - ACTIONS(10448), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203764] = 4, + [203775] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6718), 1, + ACTIONS(10409), 1, + anon_sym_LBRACE, + STATE(6568), 1, sym_comment, - ACTIONS(10450), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203778] = 4, + STATE(6895), 1, + sym_object, + [203791] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6719), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3466), 1, + sym_statement_block, + STATE(6569), 1, sym_comment, - ACTIONS(3527), 2, - anon_sym_else, - anon_sym_while, - [203792] = 4, + [203807] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6720), 1, + STATE(6570), 1, sym_comment, - ACTIONS(3529), 2, + ACTIONS(3593), 2, anon_sym_else, anon_sym_while, - [203806] = 4, + [203821] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6721), 1, + ACTIONS(7657), 1, + anon_sym_LBRACE, + STATE(5927), 1, + sym_class_body, + STATE(6571), 1, sym_comment, - ACTIONS(10452), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203820] = 5, + [203837] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(6722), 1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(5462), 1, + sym__from_clause, + STATE(6572), 1, sym_comment, - STATE(7315), 1, - sym_formal_parameters, - [203836] = 5, + [203853] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10282), 1, - anon_sym_LPAREN, - STATE(120), 1, - sym__for_header, - STATE(6723), 1, + STATE(6573), 1, sym_comment, - [203852] = 5, + ACTIONS(5745), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203867] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(7863), 1, anon_sym_LBRACE, - STATE(6571), 1, + STATE(5928), 1, sym_statement_block, - STATE(6724), 1, + STATE(6574), 1, sym_comment, - [203868] = 5, + [203883] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10454), 1, + ACTIONS(7657), 1, anon_sym_LBRACE, - STATE(1459), 1, - sym_switch_body, - STATE(6725), 1, + STATE(5933), 1, + sym_class_body, + STATE(6575), 1, sym_comment, - [203884] = 4, + [203899] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6726), 1, + ACTIONS(7759), 1, + anon_sym_LBRACE, + STATE(2511), 1, + sym_class_body, + STATE(6576), 1, sym_comment, - ACTIONS(5668), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [203898] = 5, + [203915] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10456), 1, - anon_sym_LPAREN, - STATE(5614), 1, - sym_parenthesized_expression, - STATE(6727), 1, + STATE(6577), 1, sym_comment, - [203914] = 5, + ACTIONS(3591), 2, + anon_sym_else, + anon_sym_while, + [203929] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(7571), 1, anon_sym_LBRACE, - STATE(6573), 1, - sym_statement_block, - STATE(6728), 1, + STATE(3151), 1, + sym_class_body, + STATE(6578), 1, sym_comment, - [203930] = 4, + [203945] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6729), 1, + STATE(6579), 1, sym_comment, - ACTIONS(6804), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203944] = 5, + ACTIONS(3589), 2, + anon_sym_else, + anon_sym_while, + [203959] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7734), 1, - anon_sym_LBRACE, - STATE(1673), 1, - sym_class_body, - STATE(6730), 1, + STATE(6580), 1, sym_comment, - [203960] = 5, + ACTIONS(10411), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203973] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, - anon_sym_LBRACE, - STATE(6731), 1, + STATE(6581), 1, sym_comment, - STATE(6832), 1, - sym_statement_block, - [203976] = 4, + ACTIONS(9282), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [203987] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6732), 1, + STATE(6582), 1, sym_comment, - ACTIONS(10458), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [203990] = 5, + ACTIONS(3587), 2, + anon_sym_else, + anon_sym_while, + [204001] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10413), 1, + sym_identifier, + ACTIONS(10415), 1, + sym_private_property_identifier, + STATE(6583), 1, + sym_comment, + [204017] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6584), 1, + sym_comment, + ACTIONS(5743), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204031] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10460), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(6733), 1, + STATE(3491), 1, + sym_statement_block, + STATE(6585), 1, sym_comment, - STATE(7099), 1, - sym_object, - [204006] = 4, + [204047] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6734), 1, + ACTIONS(7671), 1, + anon_sym_LBRACE, + STATE(393), 1, + sym_class_body, + STATE(6586), 1, sym_comment, - ACTIONS(10462), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204020] = 4, + [204063] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6735), 1, + ACTIONS(10233), 1, + anon_sym_LBRACE, + STATE(1081), 1, + sym_statement_block, + STATE(6587), 1, sym_comment, - ACTIONS(10464), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204034] = 5, + [204079] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10466), 1, - anon_sym_LBRACE, - STATE(943), 1, - sym_statement_block, - STATE(6736), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + STATE(5184), 1, + sym_formal_parameters, + STATE(6588), 1, sym_comment, - [204050] = 5, + [204095] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10192), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(79), 1, - sym_parenthesized_expression, - STATE(6737), 1, + STATE(6589), 1, sym_comment, - [204066] = 5, + STATE(7144), 1, + sym_formal_parameters, + [204111] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10192), 1, + ACTIONS(10417), 1, anon_sym_LPAREN, - STATE(90), 1, + STATE(995), 1, sym_parenthesized_expression, - STATE(6738), 1, + STATE(6590), 1, sym_comment, - [204082] = 4, + [204127] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6739), 1, + ACTIONS(7252), 1, + anon_sym_COLON, + STATE(5884), 1, + sym_type_annotation, + STATE(6591), 1, sym_comment, - ACTIONS(9201), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [204096] = 5, + [204143] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7249), 1, - anon_sym_COLON, - STATE(6127), 1, - sym_type_annotation, - STATE(6740), 1, + ACTIONS(10331), 1, + anon_sym_LBRACE, + STATE(1615), 1, + sym_enum_body, + STATE(6592), 1, sym_comment, - [204112] = 4, + [204159] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6741), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3463), 1, + sym_statement_block, + STATE(6593), 1, sym_comment, - ACTIONS(3541), 2, - anon_sym_else, - anon_sym_while, - [204126] = 5, + [204175] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7624), 1, + ACTIONS(7639), 1, anon_sym_LBRACE, - STATE(3157), 1, + STATE(1136), 1, sym_class_body, - STATE(6742), 1, + STATE(6594), 1, + sym_comment, + [204191] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10419), 1, + sym_identifier, + STATE(6000), 1, + sym_nested_identifier, + STATE(6595), 1, sym_comment, - [204142] = 4, + [204207] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6743), 1, + STATE(6596), 1, sym_comment, - ACTIONS(3561), 2, + ACTIONS(3585), 2, anon_sym_else, anon_sym_while, - [204156] = 5, + [204221] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7658), 1, + ACTIONS(7635), 1, anon_sym_LBRACE, - STATE(2727), 1, - sym_class_body, - STATE(6744), 1, + STATE(6597), 1, sym_comment, - [204172] = 5, + STATE(6799), 1, + sym_class_body, + [204237] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(10421), 1, anon_sym_LBRACE, - STATE(3663), 1, - sym_statement_block, - STATE(6745), 1, + STATE(1352), 1, + sym_enum_body, + STATE(6598), 1, sym_comment, - [204188] = 5, + [204253] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5015), 1, - anon_sym_LBRACE, - STATE(2716), 1, - sym_statement_block, - STATE(6746), 1, + STATE(6599), 1, sym_comment, - [204204] = 4, + ACTIONS(3583), 2, + anon_sym_else, + anon_sym_while, + [204267] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6747), 1, + STATE(6600), 1, sym_comment, - ACTIONS(6819), 2, + ACTIONS(3579), 2, + anon_sym_else, + anon_sym_while, + [204281] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6601), 1, + sym_comment, + ACTIONS(10423), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [204218] = 5, + anon_sym_RPAREN, + [204295] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10352), 1, - anon_sym_LBRACE, - STATE(1636), 1, - sym_enum_body, - STATE(6748), 1, + STATE(6602), 1, sym_comment, - [204234] = 4, + ACTIONS(10425), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204309] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6749), 1, + ACTIONS(10427), 1, + anon_sym_LPAREN, + STATE(1455), 1, + sym_parenthesized_expression, + STATE(6603), 1, sym_comment, - ACTIONS(3531), 2, - anon_sym_else, - anon_sym_while, - [204248] = 4, + [204325] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6750), 1, + ACTIONS(7863), 1, + anon_sym_LBRACE, + STATE(4928), 1, + sym_statement_block, + STATE(6604), 1, sym_comment, - ACTIONS(3565), 2, - anon_sym_else, - anon_sym_while, - [204262] = 4, + [204341] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6751), 1, + STATE(6605), 1, sym_comment, - ACTIONS(3565), 2, - anon_sym_else, - anon_sym_while, - [204276] = 4, + ACTIONS(9067), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204355] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6752), 1, + STATE(6606), 1, sym_comment, - ACTIONS(3567), 2, + ACTIONS(10429), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204369] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6607), 1, + sym_comment, + ACTIONS(3577), 2, anon_sym_else, anon_sym_while, - [204290] = 5, + [204383] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, - anon_sym_LBRACE, - STATE(6753), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + STATE(5241), 1, + sym_formal_parameters, + STATE(6608), 1, sym_comment, - STATE(6902), 1, - sym_statement_block, - [204306] = 4, + [204399] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6754), 1, + ACTIONS(10329), 1, + anon_sym_LBRACE, + STATE(1619), 1, + sym_statement_block, + STATE(6609), 1, sym_comment, - ACTIONS(6827), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [204320] = 5, + [204415] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(5595), 1, - sym__from_clause, - STATE(6755), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + STATE(6610), 1, sym_comment, - [204336] = 5, + STATE(7244), 1, + sym_formal_parameters, + [204431] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9458), 1, - anon_sym_LBRACE, - STATE(1232), 1, - sym_statement_block, - STATE(6756), 1, + STATE(6611), 1, sym_comment, - [204352] = 5, + ACTIONS(3573), 2, + anon_sym_else, + anon_sym_while, + [204445] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7654), 1, - anon_sym_LBRACE, - STATE(1367), 1, - sym_class_body, - STATE(6757), 1, + STATE(6612), 1, sym_comment, - [204368] = 4, + ACTIONS(3571), 2, + anon_sym_else, + anon_sym_while, + [204459] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6758), 1, + STATE(6613), 1, sym_comment, ACTIONS(3569), 2, anon_sym_else, anon_sym_while, - [204382] = 4, + [204473] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6759), 1, + STATE(6614), 1, sym_comment, - ACTIONS(10468), 2, + ACTIONS(9612), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [204396] = 4, + anon_sym_RBRACK, + [204487] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6760), 1, + STATE(6615), 1, sym_comment, - ACTIONS(3573), 2, + ACTIONS(3569), 2, anon_sym_else, anon_sym_while, - [204410] = 4, + [204501] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6761), 1, + ACTIONS(10431), 1, + anon_sym_SEMI, + ACTIONS(10433), 1, + sym__automatic_semicolon, + STATE(6616), 1, sym_comment, - ACTIONS(3575), 2, - anon_sym_else, - anon_sym_while, - [204424] = 5, + [204517] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10470), 1, - anon_sym_LPAREN, - STATE(1607), 1, - sym_parenthesized_expression, - STATE(6762), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3506), 1, + sym_statement_block, + STATE(6617), 1, sym_comment, - [204440] = 4, + [204533] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6763), 1, + STATE(6618), 1, sym_comment, - ACTIONS(3575), 2, + ACTIONS(3569), 2, anon_sym_else, anon_sym_while, - [204454] = 5, + [204547] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10435), 1, + anon_sym_SEMI, + ACTIONS(10437), 1, + sym__automatic_semicolon, + STATE(6619), 1, + sym_comment, + [204563] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10350), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(1640), 1, + STATE(3495), 1, sym_statement_block, - STATE(6764), 1, + STATE(6620), 1, sym_comment, - [204470] = 4, + [204579] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6765), 1, + ACTIONS(10439), 1, + anon_sym_SEMI, + ACTIONS(10441), 1, + sym__automatic_semicolon, + STATE(6621), 1, sym_comment, - ACTIONS(9870), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [204484] = 4, + [204595] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6766), 1, + ACTIONS(10443), 1, + anon_sym_SEMI, + ACTIONS(10445), 1, + sym__automatic_semicolon, + STATE(6622), 1, sym_comment, - ACTIONS(3577), 2, - anon_sym_else, - anon_sym_while, - [204498] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [204611] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10472), 1, - sym_identifier, - ACTIONS(10474), 1, - sym_private_property_identifier, - STATE(6767), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10447), 1, + anon_sym_LBRACE, + STATE(4984), 1, + sym_enum_body, + STATE(6623), 1, sym_comment, - [204514] = 5, + [204627] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9458), 1, + ACTIONS(8198), 1, anon_sym_LBRACE, - STATE(1237), 1, + STATE(3481), 1, sym_statement_block, - STATE(6768), 1, + STATE(6624), 1, sym_comment, - [204530] = 5, + [204643] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(10421), 1, anon_sym_LBRACE, - STATE(3637), 1, - sym_statement_block, - STATE(6769), 1, + STATE(1378), 1, + sym_enum_body, + STATE(6625), 1, sym_comment, - [204546] = 5, + [204659] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7786), 1, + ACTIONS(10449), 1, anon_sym_LBRACE, - STATE(1243), 1, - sym_class_body, - STATE(6770), 1, + STATE(1395), 1, + sym_statement_block, + STATE(6626), 1, sym_comment, - [204562] = 5, + [204675] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(5367), 1, - sym_formal_parameters, - STATE(6771), 1, + ACTIONS(10451), 1, + anon_sym_SEMI, + ACTIONS(10453), 1, + sym__automatic_semicolon, + STATE(6627), 1, sym_comment, - [204578] = 5, + [204691] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(6772), 1, + ACTIONS(10455), 1, + anon_sym_SEMI, + ACTIONS(10457), 1, + sym__automatic_semicolon, + STATE(6628), 1, sym_comment, - STATE(7162), 1, - sym_formal_parameters, - [204594] = 5, + [204707] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8604), 1, - anon_sym_LBRACE, - STATE(1244), 1, - sym_statement_block, - STATE(6773), 1, + STATE(6629), 1, sym_comment, - [204610] = 5, + ACTIONS(3567), 2, + anon_sym_else, + anon_sym_while, + [204721] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7654), 1, - anon_sym_LBRACE, - STATE(1326), 1, - sym_class_body, - STATE(6774), 1, + ACTIONS(10459), 1, + anon_sym_SEMI, + ACTIONS(10461), 1, + sym__automatic_semicolon, + STATE(6630), 1, sym_comment, - [204626] = 5, + [204737] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3645), 1, - sym_statement_block, - STATE(6775), 1, + STATE(6631), 1, sym_comment, - [204642] = 5, + ACTIONS(5836), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204751] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7706), 1, - anon_sym_LBRACE, - STATE(374), 1, - sym_class_body, - STATE(6776), 1, + STATE(6632), 1, sym_comment, - [204658] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(3565), 2, + anon_sym_else, + anon_sym_while, + [204765] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10476), 1, - sym_identifier, - ACTIONS(10478), 1, - sym_private_property_identifier, - STATE(6777), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6633), 1, sym_comment, - [204674] = 5, + ACTIONS(5832), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204779] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10480), 1, + ACTIONS(10463), 1, sym_identifier, - STATE(6171), 1, - sym_nested_identifier, - STATE(6778), 1, + ACTIONS(10465), 1, + sym_private_property_identifier, + STATE(6634), 1, sym_comment, - [204690] = 5, + [204795] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7654), 1, + ACTIONS(7719), 1, anon_sym_LBRACE, - STATE(1436), 1, + STATE(443), 1, sym_class_body, - STATE(6779), 1, + STATE(6635), 1, sym_comment, - [204706] = 5, + [204811] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10482), 1, + ACTIONS(10467), 1, sym_identifier, - ACTIONS(10484), 1, + ACTIONS(10469), 1, sym_private_property_identifier, - STATE(6780), 1, + STATE(6636), 1, sym_comment, - [204722] = 5, + [204827] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(2795), 1, - sym_class_body, - STATE(6781), 1, + STATE(6637), 1, sym_comment, - [204738] = 4, + ACTIONS(3541), 2, + anon_sym_else, + anon_sym_while, + [204841] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6782), 1, + STATE(6638), 1, sym_comment, - ACTIONS(3469), 2, - anon_sym_else, - anon_sym_while, - [204752] = 5, + ACTIONS(5531), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [204855] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7638), 1, + ACTIONS(7571), 1, anon_sym_LBRACE, - STATE(436), 1, + STATE(3034), 1, sym_class_body, - STATE(6783), 1, + STATE(6639), 1, sym_comment, - [204768] = 4, + [204871] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6784), 1, + ACTIONS(10471), 1, + anon_sym_in, + ACTIONS(10473), 1, + anon_sym_COLON, + STATE(6640), 1, sym_comment, - ACTIONS(3469), 2, - anon_sym_else, - anon_sym_while, - [204782] = 5, + [204887] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7624), 1, - anon_sym_LBRACE, - STATE(3163), 1, - sym_class_body, - STATE(6785), 1, + ACTIONS(10475), 1, + sym_identifier, + ACTIONS(10477), 1, + sym_private_property_identifier, + STATE(6641), 1, sym_comment, - [204798] = 5, + [204903] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4957), 1, + ACTIONS(7911), 1, anon_sym_LBRACE, - STATE(3167), 1, + STATE(6394), 1, sym_statement_block, - STATE(6786), 1, + STATE(6642), 1, sym_comment, - [204814] = 4, + [204919] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6787), 1, + STATE(6643), 1, sym_comment, - ACTIONS(3481), 2, + ACTIONS(3563), 2, anon_sym_else, anon_sym_while, - [204828] = 5, + [204933] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4957), 1, - anon_sym_LBRACE, - STATE(3179), 1, - sym_statement_block, - STATE(6788), 1, + STATE(6644), 1, sym_comment, - [204844] = 4, + ACTIONS(3561), 2, + anon_sym_else, + anon_sym_while, + [204947] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6789), 1, + STATE(6645), 1, sym_comment, - ACTIONS(3489), 2, + ACTIONS(3557), 2, anon_sym_else, anon_sym_while, - [204858] = 4, + [204961] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6790), 1, + STATE(6646), 1, sym_comment, - ACTIONS(3491), 2, + ACTIONS(3555), 2, anon_sym_else, anon_sym_while, - [204872] = 5, + [204975] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(5424), 1, - sym_formal_parameters, - STATE(6791), 1, + STATE(6647), 1, sym_comment, - [204888] = 5, + ACTIONS(3555), 2, + anon_sym_else, + anon_sym_while, + [204989] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8590), 1, + ACTIONS(4969), 1, anon_sym_LBRACE, - STATE(391), 1, + STATE(3040), 1, sym_statement_block, - STATE(6792), 1, + STATE(6648), 1, sym_comment, - [204904] = 5, + [205005] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(6793), 1, + ACTIONS(9608), 1, + anon_sym_LBRACE, + STATE(1401), 1, + sym_statement_block, + STATE(6649), 1, sym_comment, - STATE(7142), 1, - sym_formal_parameters, - [204920] = 4, + [205021] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6794), 1, + ACTIONS(4969), 1, + anon_sym_LBRACE, + STATE(3105), 1, + sym_statement_block, + STATE(6650), 1, sym_comment, - ACTIONS(10486), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [204934] = 4, + [205037] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6795), 1, + ACTIONS(7759), 1, + anon_sym_LBRACE, + STATE(3403), 1, + sym_class_body, + STATE(6651), 1, sym_comment, - ACTIONS(3493), 2, - anon_sym_else, - anon_sym_while, - [204948] = 5, + [205053] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10488), 1, - anon_sym_SEMI, - ACTIONS(10490), 1, - sym__automatic_semicolon, - STATE(6796), 1, + ACTIONS(8775), 1, + anon_sym_in, + ACTIONS(8777), 1, + anon_sym_of, + STATE(6652), 1, sym_comment, - [204964] = 5, + [205069] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7786), 1, + ACTIONS(4969), 1, anon_sym_LBRACE, - STATE(1168), 1, - sym_class_body, - STATE(6797), 1, + STATE(3063), 1, + sym_statement_block, + STATE(6653), 1, sym_comment, - [204980] = 5, + [205085] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8604), 1, - anon_sym_LBRACE, - STATE(1167), 1, - sym_statement_block, - STATE(6798), 1, + STATE(6654), 1, sym_comment, - [204996] = 5, + ACTIONS(5577), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205099] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7786), 1, + ACTIONS(10479), 1, anon_sym_LBRACE, - STATE(1163), 1, - sym_class_body, - STATE(6799), 1, + STATE(6396), 1, + sym_enum_body, + STATE(6655), 1, sym_comment, - [205012] = 5, + [205115] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7706), 1, - anon_sym_LBRACE, - STATE(395), 1, - sym_class_body, - STATE(6800), 1, + STATE(6656), 1, sym_comment, - [205028] = 5, + ACTIONS(10481), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205129] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3657), 1, - sym_statement_block, - STATE(6801), 1, + STATE(6657), 1, sym_comment, - [205044] = 4, + ACTIONS(10483), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205143] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6802), 1, + STATE(6658), 1, sym_comment, - ACTIONS(3509), 2, + ACTIONS(3493), 2, anon_sym_else, anon_sym_while, - [205058] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [205157] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10492), 1, - sym_identifier, - ACTIONS(10494), 1, - sym_private_property_identifier, - STATE(6803), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7571), 1, + anon_sym_LBRACE, + STATE(3179), 1, + sym_class_body, + STATE(6659), 1, sym_comment, - [205074] = 5, + [205173] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(4969), 1, anon_sym_LBRACE, - STATE(3625), 1, + STATE(3180), 1, sym_statement_block, - STATE(6804), 1, + STATE(6660), 1, sym_comment, - [205090] = 5, + [205189] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7654), 1, + ACTIONS(7911), 1, anon_sym_LBRACE, - STATE(1587), 1, - sym_class_body, - STATE(6805), 1, + STATE(6542), 1, + sym_statement_block, + STATE(6661), 1, sym_comment, - [205106] = 4, + [205205] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6806), 1, + STATE(6662), 1, sym_comment, - ACTIONS(3579), 2, + ACTIONS(3553), 2, anon_sym_else, anon_sym_while, - [205120] = 5, + [205219] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(5446), 1, - sym_formal_parameters, - STATE(6807), 1, - sym_comment, - [205136] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10496), 1, - sym_identifier, - ACTIONS(10498), 1, - sym_private_property_identifier, - STATE(6808), 1, - sym_comment, - [205152] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10500), 1, - sym_identifier, - ACTIONS(10502), 1, - sym_private_property_identifier, - STATE(6809), 1, - sym_comment, - [205168] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10504), 1, - sym_identifier, - ACTIONS(10506), 1, - sym_private_property_identifier, - STATE(6810), 1, + STATE(6663), 1, sym_comment, - [205184] = 5, + ACTIONS(6803), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205233] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4295), 1, - anon_sym_COLON, - STATE(6811), 1, - sym_comment, - STATE(7041), 1, - sym_type_annotation, - [205200] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(9366), 1, - sym_identifier, - ACTIONS(9370), 1, - sym_private_property_identifier, - STATE(6812), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(6545), 1, + sym_statement_block, + STATE(6664), 1, sym_comment, - [205216] = 5, + [205249] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8590), 1, - anon_sym_LBRACE, - STATE(406), 1, - sym_statement_block, - STATE(6813), 1, + STATE(6665), 1, sym_comment, - [205232] = 5, + ACTIONS(6819), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205263] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7706), 1, + ACTIONS(7643), 1, anon_sym_LBRACE, - STATE(403), 1, + STATE(1412), 1, sym_class_body, - STATE(6814), 1, + STATE(6666), 1, sym_comment, - [205248] = 5, + [205279] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10508), 1, - anon_sym_SEMI, - ACTIONS(10510), 1, - sym__automatic_semicolon, - STATE(6815), 1, + ACTIONS(8696), 1, + anon_sym_LBRACE, + STATE(1413), 1, + sym_statement_block, + STATE(6667), 1, sym_comment, - [205264] = 4, + [205295] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6816), 1, + STATE(6668), 1, sym_comment, - ACTIONS(10512), 2, + ACTIONS(10485), 2, sym__automatic_semicolon, anon_sym_SEMI, - [205278] = 4, + [205309] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6817), 1, + STATE(6669), 1, sym_comment, - ACTIONS(10514), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205292] = 5, + ACTIONS(10487), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205323] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7786), 1, + ACTIONS(7631), 1, anon_sym_LBRACE, - STATE(1024), 1, + STATE(1571), 1, sym_class_body, - STATE(6818), 1, - sym_comment, - [205308] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6819), 1, + STATE(6670), 1, sym_comment, - ACTIONS(10516), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205322] = 5, + [205339] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10518), 1, - anon_sym_SEMI, - ACTIONS(10520), 1, - sym__automatic_semicolon, - STATE(6820), 1, + ACTIONS(7719), 1, + anon_sym_LBRACE, + STATE(409), 1, + sym_class_body, + STATE(6671), 1, sym_comment, - [205338] = 4, + [205355] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6821), 1, + STATE(6672), 1, sym_comment, - ACTIONS(8247), 2, + ACTIONS(6823), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [205352] = 4, + anon_sym_RBRACE, + [205369] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6822), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(6436), 1, + sym_statement_block, + STATE(6673), 1, sym_comment, - ACTIONS(3579), 2, - anon_sym_else, - anon_sym_while, - [205366] = 5, + [205385] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(6823), 1, + STATE(6674), 1, sym_comment, - STATE(7175), 1, - sym_formal_parameters, - [205382] = 5, + ACTIONS(10489), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205399] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10522), 1, + ACTIONS(10491), 1, sym_identifier, - ACTIONS(10524), 1, + ACTIONS(10493), 1, sym_private_property_identifier, - STATE(6824), 1, - sym_comment, - [205398] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10526), 1, - anon_sym_in, - ACTIONS(10528), 1, - anon_sym_COLON, - STATE(6825), 1, + STATE(6675), 1, sym_comment, - [205414] = 4, + [205415] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6826), 1, + ACTIONS(4999), 1, + anon_sym_LBRACE, + STATE(2528), 1, + sym_statement_block, + STATE(6676), 1, sym_comment, - ACTIONS(3579), 2, - anon_sym_else, - anon_sym_while, - [205428] = 5, + [205431] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10530), 1, + ACTIONS(9634), 1, sym_identifier, - ACTIONS(10532), 1, + ACTIONS(9638), 1, sym_private_property_identifier, - STATE(6827), 1, + STATE(6677), 1, sym_comment, - [205444] = 4, + [205447] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6828), 1, + ACTIONS(7571), 1, + anon_sym_LBRACE, + STATE(3098), 1, + sym_class_body, + STATE(6678), 1, sym_comment, - ACTIONS(3581), 2, - anon_sym_else, - anon_sym_while, - [205458] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [205463] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10534), 1, - sym_identifier, - ACTIONS(10536), 1, - sym_private_property_identifier, - STATE(6829), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7631), 1, + anon_sym_LBRACE, + STATE(1587), 1, + sym_class_body, + STATE(6679), 1, sym_comment, - [205474] = 4, + [205479] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6830), 1, + STATE(6680), 1, sym_comment, - ACTIONS(10538), 2, + ACTIONS(6847), 2, anon_sym_COMMA, - anon_sym_GT, - [205488] = 4, + anon_sym_RBRACE, + [205493] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6831), 1, + STATE(6681), 1, sym_comment, - ACTIONS(3583), 2, - anon_sym_else, - anon_sym_while, - [205502] = 4, + ACTIONS(6823), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205507] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6832), 1, + STATE(6682), 1, sym_comment, - ACTIONS(3585), 2, - anon_sym_else, - anon_sym_while, - [205516] = 5, + ACTIONS(6851), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205521] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9893), 1, + ACTIONS(7911), 1, anon_sym_LBRACE, - STATE(1407), 1, + STATE(6434), 1, sym_statement_block, - STATE(6833), 1, - sym_comment, - [205532] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6834), 1, + STATE(6683), 1, sym_comment, - ACTIONS(3463), 2, - anon_sym_else, - anon_sym_while, - [205546] = 5, + [205537] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7658), 1, + ACTIONS(10495), 1, anon_sym_LBRACE, - STATE(3528), 1, - sym_class_body, - STATE(6835), 1, + STATE(1407), 1, + sym_statement_block, + STATE(6684), 1, sym_comment, - [205562] = 5, + [205553] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8936), 1, - anon_sym_in, - ACTIONS(8938), 1, - anon_sym_of, - STATE(6836), 1, + STATE(6685), 1, sym_comment, - [205578] = 4, + ACTIONS(9945), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [205567] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6837), 1, + STATE(6686), 1, sym_comment, - ACTIONS(3463), 2, - anon_sym_else, - anon_sym_while, - [205592] = 4, + ACTIONS(10497), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [205581] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6838), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + STATE(5097), 1, + sym_formal_parameters, + STATE(6687), 1, sym_comment, - ACTIONS(5699), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205606] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [205597] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10540), 1, - sym_identifier, - ACTIONS(10542), 1, - sym_private_property_identifier, - STATE(6839), 1, - sym_comment, - [205622] = 5, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10544), 1, - sym_identifier, - ACTIONS(10546), 1, - sym_private_property_identifier, - STATE(6840), 1, + STATE(6688), 1, sym_comment, - [205638] = 5, + ACTIONS(10499), 2, + anon_sym_COMMA, + anon_sym_GT, + [205611] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7734), 1, - anon_sym_LBRACE, - STATE(1765), 1, - sym_class_body, - STATE(6841), 1, + ACTIONS(4297), 1, + anon_sym_COLON, + STATE(6689), 1, sym_comment, - [205654] = 4, + STATE(6856), 1, + sym_type_annotation, + [205627] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6842), 1, + STATE(6690), 1, sym_comment, - ACTIONS(10548), 2, + ACTIONS(8501), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [205668] = 5, + anon_sym_RBRACK, + [205641] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7624), 1, - anon_sym_LBRACE, - STATE(3221), 1, - sym_class_body, - STATE(6843), 1, + STATE(6691), 1, sym_comment, - [205684] = 5, + ACTIONS(10501), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205655] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4957), 1, - anon_sym_LBRACE, - STATE(3228), 1, - sym_statement_block, - STATE(6844), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + STATE(6692), 1, sym_comment, - [205700] = 5, + STATE(6992), 1, + sym_formal_parameters, + [205671] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, - anon_sym_LBRACE, - STATE(6713), 1, - sym_statement_block, - STATE(6845), 1, + STATE(6693), 1, sym_comment, - [205716] = 5, + ACTIONS(9262), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205685] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7706), 1, - anon_sym_LBRACE, - STATE(399), 1, - sym_class_body, - STATE(6846), 1, + STATE(6694), 1, sym_comment, - [205732] = 4, + ACTIONS(3551), 2, + anon_sym_else, + anon_sym_while, + [205699] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6847), 1, + STATE(6695), 1, sym_comment, - ACTIONS(6823), 2, + ACTIONS(6807), 2, anon_sym_COMMA, anon_sym_RBRACE, - [205746] = 5, + [205713] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, - anon_sym_LBRACE, - STATE(6729), 1, - sym_statement_block, - STATE(6848), 1, + STATE(6696), 1, sym_comment, - [205762] = 4, + ACTIONS(10503), 2, + anon_sym_COMMA, + anon_sym_GT, + [205727] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6849), 1, + ACTIONS(10447), 1, + anon_sym_LBRACE, + STATE(4956), 1, + sym_enum_body, + STATE(6697), 1, sym_comment, - ACTIONS(6831), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205776] = 5, + [205743] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(1424), 1, - sym_class_body, - STATE(6850), 1, + STATE(6698), 1, sym_comment, - [205792] = 5, + ACTIONS(6815), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [205757] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8827), 1, - anon_sym_LBRACE, - STATE(1425), 1, - sym_statement_block, - STATE(6851), 1, + STATE(6699), 1, sym_comment, - [205808] = 5, + ACTIONS(3599), 2, + anon_sym_else, + anon_sym_while, + [205771] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10190), 1, - anon_sym_LBRACE, - STATE(1404), 1, - sym_statement_block, - STATE(6852), 1, + ACTIONS(10505), 1, + anon_sym_SEMI, + ACTIONS(10507), 1, + sym__automatic_semicolon, + STATE(6700), 1, sym_comment, - [205824] = 4, + [205787] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6853), 1, + STATE(6701), 1, sym_comment, - ACTIONS(10550), 2, + ACTIONS(6811), 2, anon_sym_COMMA, anon_sym_RBRACE, - [205838] = 5, + [205801] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10552), 1, + ACTIONS(7260), 1, anon_sym_LPAREN, - STATE(1084), 1, - sym_parenthesized_expression, - STATE(6854), 1, + STATE(4643), 1, + sym_formal_parameters, + STATE(6702), 1, + sym_comment, + [205817] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10509), 1, + sym_identifier, + ACTIONS(10511), 1, + sym_private_property_identifier, + STATE(6703), 1, sym_comment, - [205854] = 5, + [205833] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7638), 1, - anon_sym_LBRACE, - STATE(434), 1, - sym_class_body, - STATE(6855), 1, + STATE(6704), 1, sym_comment, - [205870] = 4, + ACTIONS(10513), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205847] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6856), 1, + STATE(6705), 1, sym_comment, - ACTIONS(3463), 2, - anon_sym_else, - anon_sym_while, - [205884] = 5, + ACTIONS(10515), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205861] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10554), 1, - anon_sym_LBRACE, - STATE(1512), 1, - sym_enum_body, - STATE(6857), 1, + STATE(6706), 1, sym_comment, - [205900] = 4, + ACTIONS(3465), 2, + anon_sym_else, + anon_sym_while, + [205875] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6858), 1, + ACTIONS(4999), 1, + anon_sym_LBRACE, + STATE(2542), 1, + sym_statement_block, + STATE(6707), 1, sym_comment, - ACTIONS(10556), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [205914] = 4, + [205891] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6859), 1, + ACTIONS(8671), 1, + anon_sym_LBRACE, + STATE(446), 1, + sym_statement_block, + STATE(6708), 1, sym_comment, - ACTIONS(9231), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [205928] = 4, + [205907] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6860), 1, + STATE(6709), 1, sym_comment, - ACTIONS(10558), 2, + ACTIONS(5795), 2, sym__automatic_semicolon, anon_sym_SEMI, - [205942] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10560), 1, - sym_identifier, - ACTIONS(10562), 1, - sym_private_property_identifier, - STATE(6861), 1, - sym_comment, - [205958] = 5, + [205921] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4913), 1, - anon_sym_LPAREN, - STATE(2630), 1, - sym_arguments, - STATE(6862), 1, + STATE(6710), 1, sym_comment, - [205974] = 5, + ACTIONS(3549), 2, + anon_sym_else, + anon_sym_while, + [205935] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7734), 1, + ACTIONS(7759), 1, anon_sym_LBRACE, - STATE(1770), 1, + STATE(2545), 1, sym_class_body, - STATE(6863), 1, + STATE(6711), 1, sym_comment, - [205990] = 5, + [205951] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10564), 1, - anon_sym_SEMI, - ACTIONS(10566), 1, - sym__automatic_semicolon, - STATE(6864), 1, + STATE(6712), 1, sym_comment, - [206006] = 5, + ACTIONS(5799), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205965] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10568), 1, - anon_sym_SEMI, - ACTIONS(10570), 1, - sym__automatic_semicolon, - STATE(6865), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3510), 1, + sym_statement_block, + STATE(6713), 1, sym_comment, - [206022] = 4, + [205981] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6866), 1, + STATE(6714), 1, sym_comment, - ACTIONS(3463), 2, - anon_sym_else, - anon_sym_while, - [206036] = 5, + ACTIONS(10517), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [205995] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3628), 1, - sym_statement_block, - STATE(6867), 1, + ACTIONS(10519), 1, + sym_identifier, + ACTIONS(10521), 1, + sym_private_property_identifier, + STATE(6715), 1, sym_comment, - [206052] = 5, + [206011] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10572), 1, - anon_sym_SEMI, - ACTIONS(10574), 1, - sym__automatic_semicolon, - STATE(6868), 1, + ACTIONS(10523), 1, + anon_sym_LPAREN, + STATE(1046), 1, + sym_parenthesized_expression, + STATE(6716), 1, sym_comment, - [206068] = 4, + [206027] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6869), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3513), 1, + sym_statement_block, + STATE(6717), 1, sym_comment, - ACTIONS(9495), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [206082] = 4, + [206043] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6870), 1, + ACTIONS(10277), 1, + anon_sym_LPAREN, + STATE(101), 1, + sym__for_header, + STATE(6718), 1, sym_comment, - ACTIONS(10576), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [206096] = 5, + [206059] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10554), 1, + ACTIONS(10525), 1, anon_sym_LBRACE, - STATE(1606), 1, - sym_enum_body, - STATE(6871), 1, + STATE(1026), 1, + sym_switch_body, + STATE(6719), 1, sym_comment, - [206112] = 4, + [206075] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6872), 1, + ACTIONS(10527), 1, + anon_sym_SEMI, + ACTIONS(10529), 1, + sym__automatic_semicolon, + STATE(6720), 1, sym_comment, - ACTIONS(10578), 2, - anon_sym_COMMA, - anon_sym_GT, - [206126] = 4, + [206091] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6873), 1, + ACTIONS(10531), 1, + sym_identifier, + ACTIONS(10533), 1, + sym_private_property_identifier, + STATE(6721), 1, sym_comment, - ACTIONS(3463), 2, - anon_sym_else, - anon_sym_while, - [206140] = 4, + [206107] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6874), 1, + ACTIONS(10449), 1, + anon_sym_LBRACE, + STATE(1478), 1, + sym_statement_block, + STATE(6722), 1, sym_comment, - ACTIONS(3463), 2, - anon_sym_else, - anon_sym_while, - [206154] = 4, + [206123] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6875), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3470), 1, + sym_statement_block, + STATE(6723), 1, sym_comment, - ACTIONS(3463), 2, - anon_sym_else, - anon_sym_while, - [206168] = 5, + [206139] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7658), 1, + ACTIONS(7571), 1, anon_sym_LBRACE, - STATE(2627), 1, + STATE(3187), 1, sym_class_body, - STATE(6876), 1, + STATE(6724), 1, sym_comment, - [206184] = 4, + [206155] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6877), 1, + ACTIONS(10535), 1, + anon_sym_SEMI, + ACTIONS(10537), 1, + sym__automatic_semicolon, + STATE(6725), 1, sym_comment, - ACTIONS(3463), 2, - anon_sym_else, - anon_sym_while, - [206198] = 5, + [206171] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10580), 1, - anon_sym_SEMI, - ACTIONS(10582), 1, - sym__automatic_semicolon, - STATE(6878), 1, + STATE(6726), 1, sym_comment, - [206214] = 4, + ACTIONS(3473), 2, + anon_sym_else, + anon_sym_while, + [206185] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6879), 1, + STATE(6727), 1, sym_comment, - ACTIONS(10584), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206228] = 5, + ACTIONS(3477), 2, + anon_sym_else, + anon_sym_while, + [206199] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10586), 1, + ACTIONS(10539), 1, sym_identifier, - ACTIONS(10588), 1, + ACTIONS(10541), 1, anon_sym_STAR, - STATE(6880), 1, - sym_comment, - [206244] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7588), 1, - anon_sym_LBRACE, - STATE(6201), 1, - sym_class_body, - STATE(6881), 1, + STATE(6728), 1, sym_comment, - [206260] = 4, + [206215] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6882), 1, + STATE(6729), 1, sym_comment, - ACTIONS(3463), 2, + ACTIONS(3547), 2, anon_sym_else, anon_sym_while, - [206274] = 4, + [206229] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6883), 1, + ACTIONS(10543), 1, + anon_sym_SEMI, + ACTIONS(10545), 1, + sym__automatic_semicolon, + STATE(6730), 1, sym_comment, - ACTIONS(3463), 2, - anon_sym_else, - anon_sym_while, - [206288] = 4, + [206245] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6884), 1, + STATE(6731), 1, sym_comment, - ACTIONS(3463), 2, + ACTIONS(3545), 2, anon_sym_else, anon_sym_while, - [206302] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5411), 1, - anon_sym_LPAREN, - STATE(3340), 1, - sym_arguments, - STATE(6885), 1, - sym_comment, - [206318] = 5, + [206259] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, - anon_sym_LPAREN, - STATE(4596), 1, - sym_formal_parameters, - STATE(6886), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3462), 1, + sym_statement_block, + STATE(6732), 1, sym_comment, - [206334] = 4, + [206275] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6887), 1, + STATE(6733), 1, sym_comment, - ACTIONS(3513), 2, + ACTIONS(3543), 2, anon_sym_else, anon_sym_while, - [206348] = 5, + [206289] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(7657), 1, anon_sym_LBRACE, - STATE(3612), 1, - sym_statement_block, - STATE(6888), 1, + STATE(6010), 1, + sym_class_body, + STATE(6734), 1, sym_comment, - [206364] = 4, + [206305] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6889), 1, - sym_comment, - ACTIONS(8241), 2, + ACTIONS(7571), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [206378] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6890), 1, + STATE(3268), 1, + sym_class_body, + STATE(6735), 1, sym_comment, - ACTIONS(8235), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [206392] = 4, + [206321] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6891), 1, + STATE(6736), 1, sym_comment, - ACTIONS(2148), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206406] = 5, + ACTIONS(3645), 2, + anon_sym_else, + anon_sym_while, + [206335] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8780), 1, + ACTIONS(7759), 1, anon_sym_LBRACE, - STATE(442), 1, - sym_statement_block, - STATE(6892), 1, - sym_comment, - [206422] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6893), 1, + STATE(3382), 1, + sym_class_body, + STATE(6737), 1, sym_comment, - ACTIONS(8166), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [206436] = 5, + [206351] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7624), 1, + ACTIONS(7759), 1, anon_sym_LBRACE, - STATE(3344), 1, + STATE(3385), 1, sym_class_body, - STATE(6894), 1, + STATE(6738), 1, sym_comment, - [206452] = 4, + [206367] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6895), 1, + STATE(6739), 1, sym_comment, - ACTIONS(5532), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206466] = 4, + ACTIONS(10547), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [206381] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6896), 1, + STATE(6740), 1, sym_comment, - ACTIONS(5534), 2, + ACTIONS(10549), 2, sym__automatic_semicolon, anon_sym_SEMI, - [206480] = 4, + [206395] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6897), 1, + STATE(6741), 1, sym_comment, - ACTIONS(10590), 2, + ACTIONS(5825), 2, sym__automatic_semicolon, anon_sym_SEMI, - [206494] = 4, + [206409] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6898), 1, + STATE(6742), 1, sym_comment, - ACTIONS(10592), 2, - sym__automatic_semicolon, + ACTIONS(7539), 2, + anon_sym_in, + anon_sym_of, + [206423] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10551), 1, anon_sym_SEMI, - [206508] = 5, + ACTIONS(10553), 1, + sym__automatic_semicolon, + STATE(6743), 1, + sym_comment, + [206439] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3638), 1, - sym_statement_block, - STATE(6899), 1, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(121), 1, + sym_parenthesized_expression, + STATE(6744), 1, sym_comment, - [206524] = 5, + [206455] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10282), 1, + ACTIONS(10211), 1, anon_sym_LPAREN, - STATE(102), 1, - sym__for_header, - STATE(6900), 1, + STATE(6508), 1, + sym_parenthesized_expression, + STATE(6745), 1, + sym_comment, + [206471] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10555), 1, + sym_identifier, + ACTIONS(10557), 1, + sym_private_property_identifier, + STATE(6746), 1, sym_comment, - [206540] = 5, + [206487] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10594), 1, - anon_sym_LBRACE, - STATE(1284), 1, - sym_switch_body, - STATE(6901), 1, + STATE(6747), 1, sym_comment, - [206556] = 4, + ACTIONS(3467), 2, + anon_sym_else, + anon_sym_while, + [206501] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6902), 1, + STATE(6748), 1, sym_comment, - ACTIONS(6839), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [206570] = 5, + ACTIONS(3543), 2, + anon_sym_else, + anon_sym_while, + [206515] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, + ACTIONS(5424), 1, anon_sym_LPAREN, - STATE(4280), 1, - sym_formal_parameters, - STATE(6903), 1, + STATE(3066), 1, + sym_arguments, + STATE(6749), 1, sym_comment, - [206586] = 5, + [206531] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(2612), 1, - sym_class_body, - STATE(6904), 1, + STATE(6750), 1, sym_comment, - [206602] = 5, + ACTIONS(3469), 2, + anon_sym_else, + anon_sym_while, + [206545] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10596), 1, - anon_sym_SEMI, - ACTIONS(10598), 1, - sym__automatic_semicolon, - STATE(6905), 1, + STATE(6751), 1, sym_comment, - [206618] = 4, + ACTIONS(8431), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [206559] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6906), 1, + ACTIONS(7759), 1, + anon_sym_LBRACE, + STATE(2564), 1, + sym_class_body, + STATE(6752), 1, sym_comment, - ACTIONS(5640), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206632] = 4, + [206575] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6907), 1, + STATE(6753), 1, sym_comment, - ACTIONS(3463), 2, - anon_sym_else, - anon_sym_while, - [206646] = 5, + ACTIONS(8427), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [206589] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5015), 1, + ACTIONS(7571), 1, anon_sym_LBRACE, - STATE(2600), 1, - sym_statement_block, - STATE(6908), 1, + STATE(3056), 1, + sym_class_body, + STATE(6754), 1, sym_comment, - [206662] = 5, + [206605] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10600), 1, + ACTIONS(10559), 1, sym_identifier, - ACTIONS(10602), 1, - anon_sym_STAR, - STATE(6909), 1, + ACTIONS(10561), 1, + sym_private_property_identifier, + STATE(6755), 1, sym_comment, - [206678] = 4, + [206621] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6910), 1, - sym_comment, - ACTIONS(10604), 2, - sym__automatic_semicolon, + ACTIONS(10563), 1, anon_sym_SEMI, - [206692] = 4, + ACTIONS(10565), 1, + sym__automatic_semicolon, + STATE(6756), 1, + sym_comment, + [206637] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6911), 1, + STATE(6757), 1, sym_comment, - ACTIONS(3463), 2, + ACTIONS(3471), 2, anon_sym_else, anon_sym_while, - [206706] = 4, + [206651] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6912), 1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(6730), 1, + sym__from_clause, + STATE(6758), 1, sym_comment, - ACTIONS(10606), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [206720] = 4, + [206667] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6913), 1, + STATE(6759), 1, sym_comment, - ACTIONS(10608), 2, + ACTIONS(2150), 2, sym__automatic_semicolon, anon_sym_SEMI, - [206734] = 5, + [206681] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10610), 1, + ACTIONS(10567), 1, anon_sym_SEMI, - ACTIONS(10612), 1, - sym__automatic_semicolon, - STATE(6914), 1, - sym_comment, - [206750] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6915), 1, - sym_comment, - ACTIONS(10614), 2, + ACTIONS(10569), 1, sym__automatic_semicolon, - anon_sym_SEMI, - [206764] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10616), 1, - anon_sym_LBRACE, - STATE(944), 1, - sym_statement_block, - STATE(6916), 1, - sym_comment, - [206780] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10192), 1, - anon_sym_LPAREN, - STATE(122), 1, - sym_parenthesized_expression, - STATE(6917), 1, + STATE(6760), 1, sym_comment, - [206796] = 5, + [206697] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10192), 1, - anon_sym_LPAREN, - STATE(117), 1, - sym_parenthesized_expression, - STATE(6918), 1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(5485), 1, + sym__from_clause, + STATE(6761), 1, sym_comment, - [206812] = 5, + [206713] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10618), 1, + ACTIONS(10571), 1, sym_identifier, - STATE(6154), 1, - sym_nested_identifier, - STATE(6919), 1, + ACTIONS(10573), 1, + anon_sym_STAR, + STATE(6762), 1, sym_comment, - [206828] = 4, + [206729] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6920), 1, + STATE(6763), 1, sym_comment, - ACTIONS(3557), 2, - anon_sym_else, - anon_sym_while, - [206842] = 5, + ACTIONS(10575), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [206743] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(3540), 1, - sym_class_body, - STATE(6921), 1, + STATE(6764), 1, sym_comment, - [206858] = 5, + ACTIONS(8447), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [206757] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(3549), 1, - sym_class_body, - STATE(6922), 1, + ACTIONS(10577), 1, + anon_sym_SEMI, + ACTIONS(10579), 1, + sym__automatic_semicolon, + STATE(6765), 1, sym_comment, - [206874] = 4, + [206773] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6923), 1, + STATE(6766), 1, sym_comment, - ACTIONS(10620), 2, + ACTIONS(9911), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [206888] = 4, + anon_sym_RBRACE, + [206787] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6924), 1, + STATE(6767), 1, sym_comment, - ACTIONS(2350), 2, + ACTIONS(3539), 2, anon_sym_else, anon_sym_while, - [206902] = 4, + [206801] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6925), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3512), 1, + sym_statement_block, + STATE(6768), 1, sym_comment, - ACTIONS(2350), 2, - anon_sym_else, - anon_sym_while, - [206916] = 4, + [206817] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6926), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + STATE(6769), 1, sym_comment, - ACTIONS(7528), 2, - anon_sym_in, - anon_sym_of, - [206930] = 5, + STATE(7086), 1, + sym_formal_parameters, + [206833] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10192), 1, - anon_sym_LPAREN, - STATE(78), 1, - sym_parenthesized_expression, - STATE(6927), 1, + STATE(6770), 1, sym_comment, - [206946] = 5, + ACTIONS(6819), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [206847] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10196), 1, - anon_sym_LPAREN, - STATE(6901), 1, - sym_parenthesized_expression, - STATE(6928), 1, + ACTIONS(10581), 1, + sym_identifier, + STATE(5869), 1, + sym_nested_identifier, + STATE(6771), 1, sym_comment, - [206962] = 4, + [206863] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6929), 1, + STATE(6772), 1, sym_comment, - ACTIONS(3545), 2, - anon_sym_else, - anon_sym_while, - [206976] = 5, + ACTIONS(10583), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [206877] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7686), 1, + ACTIONS(7643), 1, anon_sym_LBRACE, - STATE(1396), 1, + STATE(1267), 1, sym_class_body, - STATE(6930), 1, - sym_comment, - [206992] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10192), 1, - anon_sym_LPAREN, - STATE(94), 1, - sym_parenthesized_expression, - STATE(6931), 1, + STATE(6773), 1, sym_comment, - [207008] = 5, + [206893] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5015), 1, - anon_sym_LBRACE, - STATE(2706), 1, - sym_statement_block, - STATE(6932), 1, + STATE(6774), 1, sym_comment, - [207024] = 4, + ACTIONS(3537), 2, + anon_sym_else, + anon_sym_while, + [206907] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6933), 1, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(74), 1, + sym_parenthesized_expression, + STATE(6775), 1, sym_comment, - ACTIONS(3463), 2, - anon_sym_else, - anon_sym_while, - [207038] = 4, + [206923] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6934), 1, + STATE(6776), 1, sym_comment, - ACTIONS(3463), 2, + ACTIONS(3535), 2, anon_sym_else, anon_sym_while, - [207052] = 4, + [206937] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6935), 1, + ACTIONS(10585), 1, + anon_sym_SEMI, + ACTIONS(10587), 1, + sym__automatic_semicolon, + STATE(6777), 1, sym_comment, - ACTIONS(3543), 2, - anon_sym_else, - anon_sym_while, - [207066] = 4, + [206953] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6936), 1, + STATE(6778), 1, sym_comment, - ACTIONS(3539), 2, - anon_sym_else, - anon_sym_while, - [207080] = 4, + ACTIONS(10589), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [206967] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6937), 1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(5548), 1, + sym__from_clause, + STATE(6779), 1, sym_comment, - ACTIONS(3537), 2, - anon_sym_else, - anon_sym_while, - [207094] = 4, + [206983] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6938), 1, + ACTIONS(10591), 1, + anon_sym_SEMI, + ACTIONS(10593), 1, + sym__automatic_semicolon, + STATE(6780), 1, sym_comment, - ACTIONS(3515), 2, - anon_sym_else, - anon_sym_while, - [207108] = 4, + [206999] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6939), 1, + STATE(6781), 1, sym_comment, - ACTIONS(3463), 2, - anon_sym_else, - anon_sym_while, - [207122] = 5, + ACTIONS(9419), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207013] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7624), 1, - anon_sym_LBRACE, - STATE(3170), 1, - sym_class_body, - STATE(6940), 1, + ACTIONS(4921), 1, + anon_sym_LPAREN, + STATE(2568), 1, + sym_arguments, + STATE(6782), 1, sym_comment, - [207138] = 5, + [207029] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(6865), 1, - sym__from_clause, - STATE(6941), 1, + STATE(6783), 1, sym_comment, - [207154] = 5, + ACTIONS(3533), 2, + anon_sym_else, + anon_sym_while, + [207043] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, - anon_sym_LBRACE, - STATE(6942), 1, + STATE(6784), 1, sym_comment, - STATE(6989), 1, - sym_statement_block, - [207170] = 5, + ACTIONS(10595), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207057] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10622), 1, + ACTIONS(10597), 1, anon_sym_SEMI, - ACTIONS(10624), 1, + ACTIONS(10599), 1, sym__automatic_semicolon, - STATE(6943), 1, + STATE(6785), 1, sym_comment, - [207186] = 5, + [207073] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(5668), 1, - sym__from_clause, - STATE(6944), 1, + ACTIONS(10601), 1, + anon_sym_LBRACE, + STATE(930), 1, + sym_statement_block, + STATE(6786), 1, sym_comment, - [207202] = 4, + [207089] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6945), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + STATE(6787), 1, sym_comment, - ACTIONS(3479), 2, - anon_sym_else, - anon_sym_while, - [207216] = 4, + STATE(7273), 1, + sym_formal_parameters, + [207105] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6946), 1, + STATE(6788), 1, sym_comment, - ACTIONS(3463), 2, + ACTIONS(3531), 2, anon_sym_else, anon_sym_while, - [207230] = 4, + [207119] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6947), 1, + STATE(6789), 1, sym_comment, - ACTIONS(9794), 2, + ACTIONS(6803), 2, anon_sym_COMMA, anon_sym_RBRACE, - [207244] = 4, + [207133] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6948), 1, + ACTIONS(10603), 1, + sym_identifier, + STATE(5745), 1, + sym_nested_identifier, + STATE(6790), 1, sym_comment, - ACTIONS(3511), 2, - anon_sym_else, - anon_sym_while, - [207258] = 4, + [207149] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6949), 1, + STATE(6791), 1, sym_comment, - ACTIONS(3501), 2, + ACTIONS(3531), 2, anon_sym_else, anon_sym_while, - [207272] = 4, + [207163] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6950), 1, + STATE(6792), 1, sym_comment, - ACTIONS(3499), 2, + ACTIONS(3531), 2, anon_sym_else, anon_sym_while, - [207286] = 5, + [207177] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5015), 1, + ACTIONS(4969), 1, anon_sym_LBRACE, - STATE(2774), 1, + STATE(3267), 1, sym_statement_block, - STATE(6951), 1, + STATE(6793), 1, sym_comment, - [207302] = 5, + [207193] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(6952), 1, + STATE(6794), 1, sym_comment, - STATE(7292), 1, - sym_formal_parameters, - [207318] = 4, + ACTIONS(3465), 2, + anon_sym_else, + anon_sym_while, + [207207] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6953), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + STATE(6795), 1, sym_comment, - ACTIONS(3463), 2, - anon_sym_else, - anon_sym_while, - [207332] = 4, + STATE(7364), 1, + sym_formal_parameters, + [207223] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6954), 1, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(100), 1, + sym_parenthesized_expression, + STATE(6796), 1, sym_comment, - ACTIONS(9632), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207346] = 4, + [207239] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6955), 1, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(87), 1, + sym_parenthesized_expression, + STATE(6797), 1, sym_comment, - ACTIONS(3463), 2, - anon_sym_else, - anon_sym_while, - [207360] = 4, + [207255] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6956), 1, + ACTIONS(4969), 1, + anon_sym_LBRACE, + STATE(3266), 1, + sym_statement_block, + STATE(6798), 1, sym_comment, - ACTIONS(10626), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207374] = 4, + [207271] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6957), 1, + STATE(6799), 1, sym_comment, - ACTIONS(3497), 2, + ACTIONS(3527), 2, anon_sym_else, anon_sym_while, - [207388] = 5, + [207285] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4957), 1, + ACTIONS(7571), 1, anon_sym_LBRACE, - STATE(3177), 1, - sym_statement_block, - STATE(6958), 1, + STATE(3265), 1, + sym_class_body, + STATE(6800), 1, sym_comment, - [207404] = 4, + [207301] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6959), 1, + STATE(6801), 1, sym_comment, - ACTIONS(3551), 2, - anon_sym_else, - anon_sym_while, - [207418] = 4, + ACTIONS(6878), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207315] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6960), 1, - sym_comment, - ACTIONS(3605), 2, - anon_sym_else, - anon_sym_while, - [207432] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10628), 1, - sym_identifier, - STATE(6383), 1, - sym_nested_identifier, - STATE(6961), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(6663), 1, + sym_statement_block, + STATE(6802), 1, sym_comment, - [207448] = 5, + [207331] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(5731), 1, - sym__from_clause, - STATE(6962), 1, + STATE(6803), 1, sym_comment, - [207464] = 4, + ACTIONS(3525), 2, + anon_sym_else, + anon_sym_while, + [207345] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6963), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(6804), 1, sym_comment, - ACTIONS(3477), 2, - anon_sym_else, - anon_sym_while, - [207478] = 4, + STATE(6805), 1, + sym_statement_block, + [207361] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6964), 1, + STATE(6805), 1, sym_comment, - ACTIONS(10630), 2, + ACTIONS(6855), 2, anon_sym_COMMA, anon_sym_RBRACE, - [207492] = 4, + [207375] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6965), 1, + ACTIONS(7911), 1, + anon_sym_LBRACE, + STATE(6665), 1, + sym_statement_block, + STATE(6806), 1, sym_comment, - ACTIONS(3475), 2, - anon_sym_else, - anon_sym_while, - [207506] = 4, + [207391] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6966), 1, + STATE(6807), 1, sym_comment, - ACTIONS(3473), 2, + ACTIONS(3523), 2, anon_sym_else, anon_sym_while, - [207520] = 4, + [207405] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6967), 1, + ACTIONS(7643), 1, + anon_sym_LBRACE, + STATE(1500), 1, + sym_class_body, + STATE(6808), 1, sym_comment, - ACTIONS(9770), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207534] = 4, + [207421] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6968), 1, + ACTIONS(8696), 1, + anon_sym_LBRACE, + STATE(1501), 1, + sym_statement_block, + STATE(6809), 1, sym_comment, - ACTIONS(3471), 2, - anon_sym_else, - anon_sym_while, - [207548] = 4, + [207437] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6969), 1, + STATE(6810), 1, sym_comment, - ACTIONS(3465), 2, + ACTIONS(3521), 2, anon_sym_else, anon_sym_while, - [207562] = 5, + [207451] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(6970), 1, + STATE(6811), 1, sym_comment, - STATE(7355), 1, - sym_formal_parameters, - [207578] = 4, + ACTIONS(3519), 2, + anon_sym_else, + anon_sym_while, + [207465] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6971), 1, + ACTIONS(7643), 1, + anon_sym_LBRACE, + STATE(1503), 1, + sym_class_body, + STATE(6812), 1, sym_comment, - ACTIONS(3465), 2, - anon_sym_else, - anon_sym_while, - [207592] = 5, + [207481] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, - anon_sym_LBRACE, - STATE(6972), 1, + STATE(6813), 1, sym_comment, - STATE(6985), 1, - sym_statement_block, - [207608] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10605), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207495] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10632), 1, - sym_identifier, - STATE(5784), 1, - sym_nested_identifier, - STATE(6973), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6814), 1, sym_comment, - [207624] = 4, + ACTIONS(10607), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207509] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6974), 1, + STATE(6815), 1, sym_comment, - ACTIONS(3465), 2, - anon_sym_else, - anon_sym_while, - [207638] = 4, + ACTIONS(9880), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207523] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6975), 1, + STATE(6816), 1, sym_comment, - ACTIONS(3465), 2, - anon_sym_else, - anon_sym_while, - [207652] = 5, + ACTIONS(9153), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207537] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7624), 1, + ACTIONS(7657), 1, anon_sym_LBRACE, - STATE(3350), 1, + STATE(4932), 1, sym_class_body, - STATE(6976), 1, + STATE(6817), 1, sym_comment, - [207668] = 4, + [207553] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6977), 1, + ACTIONS(7571), 1, + anon_sym_LBRACE, + STATE(3263), 1, + sym_class_body, + STATE(6818), 1, sym_comment, - ACTIONS(3465), 2, - anon_sym_else, - anon_sym_while, - [207682] = 5, + [207569] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(6978), 1, + ACTIONS(7719), 1, + anon_sym_LBRACE, + STATE(452), 1, + sym_class_body, + STATE(6819), 1, sym_comment, - STATE(7317), 1, - sym_formal_parameters, - [207698] = 4, + [207585] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6979), 1, + STATE(6820), 1, sym_comment, - ACTIONS(3465), 2, - anon_sym_else, - anon_sym_while, - [207712] = 4, + ACTIONS(9718), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [207599] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(10609), 1, + sym_identifier, + ACTIONS(10611), 1, + sym_private_property_identifier, + STATE(6821), 1, + sym_comment, + [207615] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(6980), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10613), 1, + sym_identifier, + ACTIONS(10615), 1, + sym_private_property_identifier, + STATE(6822), 1, sym_comment, - ACTIONS(3465), 2, - anon_sym_else, - anon_sym_while, - [207726] = 5, + [207631] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4957), 1, + ACTIONS(9648), 1, anon_sym_LBRACE, - STATE(3349), 1, + STATE(1183), 1, sym_statement_block, - STATE(6981), 1, + STATE(6823), 1, sym_comment, - [207742] = 5, + [207647] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4957), 1, + ACTIONS(7657), 1, anon_sym_LBRACE, - STATE(3348), 1, - sym_statement_block, - STATE(6982), 1, + STATE(4880), 1, + sym_class_body, + STATE(6824), 1, sym_comment, - [207758] = 4, + [207663] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6983), 1, + STATE(6825), 1, sym_comment, - ACTIONS(3465), 2, + ACTIONS(3515), 2, anon_sym_else, anon_sym_while, - [207772] = 5, + [207677] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7624), 1, - anon_sym_LBRACE, - STATE(3347), 1, - sym_class_body, - STATE(6984), 1, + ACTIONS(7260), 1, + anon_sym_LPAREN, + STATE(4515), 1, + sym_formal_parameters, + STATE(6826), 1, sym_comment, - [207788] = 4, + [207693] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6985), 1, + STATE(6827), 1, sym_comment, - ACTIONS(6857), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207802] = 5, + ACTIONS(3515), 2, + anon_sym_else, + anon_sym_while, + [207707] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(7631), 1, anon_sym_LBRACE, - STATE(6847), 1, - sym_statement_block, - STATE(6986), 1, + STATE(1562), 1, + sym_class_body, + STATE(6828), 1, sym_comment, - [207818] = 4, + [207723] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6987), 1, + STATE(6829), 1, sym_comment, - ACTIONS(3607), 2, - anon_sym_else, - anon_sym_while, - [207832] = 4, + ACTIONS(10617), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207737] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6988), 1, + STATE(6830), 1, sym_comment, - ACTIONS(3465), 2, + ACTIONS(3513), 2, anon_sym_else, anon_sym_while, - [207846] = 4, + [207751] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6989), 1, - sym_comment, - ACTIONS(6815), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207860] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(10619), 1, anon_sym_LBRACE, - STATE(6849), 1, - sym_statement_block, - STATE(6990), 1, + STATE(1405), 1, + sym_enum_body, + STATE(6831), 1, sym_comment, - [207876] = 4, + [207767] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6991), 1, + STATE(6832), 1, sym_comment, - ACTIONS(3465), 2, - anon_sym_else, - anon_sym_while, - [207890] = 5, + ACTIONS(10621), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207781] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7686), 1, - anon_sym_LBRACE, - STATE(1549), 1, - sym_class_body, - STATE(6992), 1, + STATE(6833), 1, sym_comment, - [207906] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(9867), 2, + anon_sym_COMMA, + anon_sym_GT, + [207795] = 5, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(8827), 1, - anon_sym_LBRACE, - STATE(1548), 1, - sym_statement_block, - STATE(6993), 1, - sym_comment, - [207922] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(6994), 1, + ACTIONS(10623), 1, + sym_identifier, + STATE(6272), 1, + sym_nested_identifier, + STATE(6834), 1, sym_comment, - ACTIONS(3465), 2, - anon_sym_else, - anon_sym_while, - [207936] = 4, + [207811] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6995), 1, + STATE(6835), 1, sym_comment, - ACTIONS(3465), 2, + ACTIONS(3511), 2, anon_sym_else, anon_sym_while, - [207950] = 5, + [207825] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7686), 1, + ACTIONS(7911), 1, anon_sym_LBRACE, - STATE(1545), 1, - sym_class_body, - STATE(6996), 1, + STATE(6801), 1, + sym_statement_block, + STATE(6836), 1, sym_comment, - [207966] = 4, + [207841] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6997), 1, + ACTIONS(10625), 1, + anon_sym_SEMI, + ACTIONS(10627), 1, + sym__automatic_semicolon, + STATE(6837), 1, sym_comment, - ACTIONS(10634), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [207980] = 4, + [207857] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6998), 1, + STATE(6838), 1, sym_comment, - ACTIONS(3465), 2, + ACTIONS(3475), 2, anon_sym_else, anon_sym_while, - [207994] = 4, + [207871] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(6999), 1, + STATE(6839), 1, sym_comment, - ACTIONS(9653), 2, + ACTIONS(6835), 2, anon_sym_COMMA, anon_sym_RBRACE, - [208008] = 4, + [207885] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7000), 1, + STATE(6840), 1, sym_comment, - ACTIONS(3465), 2, - anon_sym_else, - anon_sym_while, - [208022] = 5, + ACTIONS(10629), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207899] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3623), 1, - sym_statement_block, - STATE(7001), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + STATE(6841), 1, sym_comment, - [208038] = 5, + STATE(7113), 1, + sym_formal_parameters, + [207915] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7624), 1, + ACTIONS(7571), 1, anon_sym_LBRACE, - STATE(3357), 1, + STATE(3029), 1, sym_class_body, - STATE(7002), 1, + STATE(6842), 1, sym_comment, - [208054] = 5, + [207931] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7638), 1, - anon_sym_LBRACE, - STATE(450), 1, - sym_class_body, - STATE(7003), 1, + STATE(6843), 1, sym_comment, - [208070] = 4, + ACTIONS(10631), 2, + anon_sym_COMMA, + anon_sym_GT, + [207945] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7004), 1, + STATE(6844), 1, sym_comment, - ACTIONS(3609), 2, - anon_sym_else, - anon_sym_while, - [208084] = 4, + ACTIONS(9203), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [207959] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7005), 1, + ACTIONS(10479), 1, + anon_sym_LBRACE, + STATE(6582), 1, + sym_enum_body, + STATE(6845), 1, sym_comment, - ACTIONS(6878), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [208098] = 5, + [207975] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10636), 1, + ACTIONS(10633), 1, sym_identifier, - ACTIONS(10638), 1, + ACTIONS(10635), 1, sym_private_property_identifier, - STATE(7006), 1, + STATE(6846), 1, sym_comment, - [208114] = 4, + [207991] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7007), 1, + ACTIONS(7571), 1, + anon_sym_LBRACE, + STATE(3023), 1, + sym_class_body, + STATE(6847), 1, sym_comment, - ACTIONS(3465), 2, - anon_sym_else, - anon_sym_while, - [208128] = 5, + [208007] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(4969), 1, anon_sym_LBRACE, - STATE(3615), 1, + STATE(3025), 1, sym_statement_block, - STATE(7008), 1, + STATE(6848), 1, + sym_comment, + [208023] = 5, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(6324), 1, + sym__from_clause, + STATE(6849), 1, sym_comment, - [208144] = 5, + [208039] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(4969), 1, anon_sym_LBRACE, - STATE(3613), 1, + STATE(2994), 1, sym_statement_block, - STATE(7009), 1, + STATE(6850), 1, sym_comment, - [208160] = 4, + [208055] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7010), 1, + STATE(6851), 1, sym_comment, - ACTIONS(3465), 2, + ACTIONS(3479), 2, anon_sym_else, anon_sym_while, - [208174] = 5, + [208069] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3660), 1, - sym_statement_block, - STATE(7011), 1, + STATE(6852), 1, sym_comment, - [208190] = 5, + ACTIONS(10637), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208083] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7734), 1, - anon_sym_LBRACE, - STATE(1724), 1, - sym_class_body, - STATE(7012), 1, + STATE(6853), 1, + sym_comment, + ACTIONS(10639), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208097] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10641), 1, + sym_identifier, + ACTIONS(10643), 1, + sym_private_property_identifier, + STATE(6854), 1, sym_comment, - [208206] = 4, + [208113] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7013), 1, + STATE(6855), 1, sym_comment, - ACTIONS(3613), 2, - anon_sym_else, - anon_sym_while, - [208220] = 5, + ACTIONS(10645), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [208127] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3626), 1, - sym_statement_block, - STATE(7014), 1, + STATE(6856), 1, + sym_comment, + ACTIONS(10647), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [208141] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10649), 1, + sym_identifier, + ACTIONS(10651), 1, + sym_private_property_identifier, + STATE(6857), 1, sym_comment, - [208236] = 4, + [208157] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7015), 1, + ACTIONS(4297), 1, + anon_sym_COLON, + STATE(6686), 1, + sym_type_annotation, + STATE(6858), 1, sym_comment, - ACTIONS(3465), 2, - anon_sym_else, - anon_sym_while, - [208250] = 5, + [208173] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(9648), 1, anon_sym_LBRACE, - STATE(6375), 1, + STATE(1163), 1, sym_statement_block, - STATE(7016), 1, + STATE(6859), 1, sym_comment, - [208266] = 4, + [208189] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7017), 1, + STATE(6860), 1, sym_comment, - ACTIONS(9666), 2, + ACTIONS(10653), 2, anon_sym_COMMA, - anon_sym_GT, - [208280] = 5, + anon_sym_RBRACE, + [208203] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(7701), 1, anon_sym_LBRACE, - STATE(3639), 1, - sym_statement_block, - STATE(7018), 1, + STATE(320), 1, + sym_class_body, + STATE(6861), 1, sym_comment, - [208296] = 5, + [208219] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3640), 1, - sym_statement_block, - STATE(7019), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + STATE(5155), 1, + sym_formal_parameters, + STATE(6862), 1, sym_comment, - [208312] = 5, + [208235] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7640), 1, + ACTIONS(7657), 1, anon_sym_LBRACE, - STATE(6523), 1, + STATE(4894), 1, sym_class_body, - STATE(7020), 1, + STATE(6863), 1, sym_comment, - [208328] = 4, + [208251] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7021), 1, + ACTIONS(10209), 1, + anon_sym_LPAREN, + STATE(93), 1, + sym_parenthesized_expression, + STATE(6864), 1, sym_comment, - ACTIONS(3465), 2, - anon_sym_else, - anon_sym_while, - [208342] = 4, + [208267] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7022), 1, + ACTIONS(10211), 1, + anon_sym_LPAREN, + STATE(6524), 1, + sym_parenthesized_expression, + STATE(6865), 1, sym_comment, - ACTIONS(3465), 2, - anon_sym_else, - anon_sym_while, - [208356] = 4, + [208283] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7023), 1, + STATE(6866), 1, sym_comment, - ACTIONS(3615), 2, + ACTIONS(3505), 2, anon_sym_else, anon_sym_while, - [208370] = 5, + [208297] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7624), 1, + ACTIONS(7863), 1, anon_sym_LBRACE, - STATE(3404), 1, - sym_class_body, - STATE(7024), 1, + STATE(5340), 1, + sym_statement_block, + STATE(6867), 1, sym_comment, - [208386] = 5, + [208313] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(7025), 1, + STATE(6868), 1, sym_comment, - STATE(7273), 1, - sym_formal_parameters, - [208402] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + ACTIONS(10655), 2, + anon_sym_COMMA, + anon_sym_GT, + [208327] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10640), 1, - sym_identifier, - ACTIONS(10642), 1, - sym_private_property_identifier, - STATE(7026), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6869), 1, sym_comment, - [208418] = 5, + ACTIONS(10657), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208341] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10644), 1, + ACTIONS(10659), 1, sym_identifier, - ACTIONS(10646), 1, + ACTIONS(10661), 1, sym_private_property_identifier, - STATE(7027), 1, + STATE(6870), 1, sym_comment, - [208434] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [208357] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10648), 1, - sym_identifier, - ACTIONS(10650), 1, - sym_private_property_identifier, - STATE(7028), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10619), 1, + anon_sym_LBRACE, + STATE(1382), 1, + sym_enum_body, + STATE(6871), 1, sym_comment, - [208450] = 4, + [208373] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7029), 1, + ACTIONS(7657), 1, + anon_sym_LBRACE, + STATE(4896), 1, + sym_class_body, + STATE(6872), 1, sym_comment, - ACTIONS(10652), 2, - anon_sym_COMMA, - anon_sym_GT, - [208464] = 5, + [208389] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4957), 1, + ACTIONS(7571), 1, anon_sym_LBRACE, - STATE(3410), 1, - sym_statement_block, - STATE(7030), 1, + STATE(3079), 1, + sym_class_body, + STATE(6873), 1, sym_comment, - [208480] = 5, + [208405] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(6453), 1, - sym__from_clause, - STATE(7031), 1, + ACTIONS(10663), 1, + anon_sym_LPAREN, + STATE(1104), 1, + sym_parenthesized_expression, + STATE(6874), 1, sym_comment, - [208496] = 5, + [208421] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10654), 1, + ACTIONS(10665), 1, sym_identifier, - ACTIONS(10656), 1, + ACTIONS(10667), 1, sym_private_property_identifier, - STATE(7032), 1, + STATE(6875), 1, sym_comment, - [208512] = 4, + [208437] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7033), 1, + ACTIONS(7657), 1, + anon_sym_LBRACE, + STATE(4903), 1, + sym_class_body, + STATE(6876), 1, sym_comment, - ACTIONS(3617), 2, - anon_sym_else, - anon_sym_while, - [208526] = 4, + [208453] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7034), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + STATE(6877), 1, sym_comment, - ACTIONS(3627), 2, - anon_sym_else, - anon_sym_while, - [208540] = 4, + STATE(7311), 1, + sym_formal_parameters, + [208469] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7035), 1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(6628), 1, + sym__from_clause, + STATE(6878), 1, sym_comment, - ACTIONS(10658), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208554] = 4, + [208485] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(7036), 1, + ACTIONS(10669), 1, + sym_identifier, + ACTIONS(10671), 1, + sym_private_property_identifier, + STATE(6879), 1, sym_comment, - ACTIONS(10660), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [208568] = 4, + [208501] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7037), 1, + STATE(6880), 1, sym_comment, - ACTIONS(3627), 2, + ACTIONS(3481), 2, anon_sym_else, anon_sym_while, - [208582] = 4, + [208515] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7038), 1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(5535), 1, + sym__from_clause, + STATE(6881), 1, sym_comment, - ACTIONS(3631), 2, - anon_sym_else, - anon_sym_while, - [208596] = 4, + [208531] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(7039), 1, + ACTIONS(10673), 1, + sym_identifier, + ACTIONS(10675), 1, + sym_private_property_identifier, + STATE(6882), 1, sym_comment, - ACTIONS(10662), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [208610] = 4, + [208547] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7040), 1, + ACTIONS(10677), 1, + anon_sym_SEMI, + ACTIONS(10679), 1, + sym__automatic_semicolon, + STATE(6883), 1, sym_comment, - ACTIONS(10664), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [208624] = 4, + [208563] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7041), 1, + ACTIONS(7657), 1, + anon_sym_LBRACE, + STATE(4923), 1, + sym_class_body, + STATE(6884), 1, sym_comment, - ACTIONS(10666), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [208638] = 5, + [208579] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(4295), 1, - anon_sym_COLON, - STATE(6870), 1, - sym_type_annotation, - STATE(7042), 1, + ACTIONS(10681), 1, + sym_identifier, + ACTIONS(10683), 1, + sym_private_property_identifier, + STATE(6885), 1, sym_comment, - [208654] = 4, + [208595] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7043), 1, + ACTIONS(10685), 1, + anon_sym_LPAREN, + STATE(5453), 1, + sym_parenthesized_expression, + STATE(6886), 1, sym_comment, - ACTIONS(3633), 2, - anon_sym_else, - anon_sym_while, - [208668] = 4, + [208611] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7044), 1, + STATE(6887), 1, sym_comment, - ACTIONS(3637), 2, + ACTIONS(3505), 2, anon_sym_else, anon_sym_while, - [208682] = 4, + [208625] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10687), 1, + sym_identifier, + STATE(6102), 1, + sym_nested_identifier, + STATE(6888), 1, + sym_comment, + [208641] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7045), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + STATE(6889), 1, sym_comment, - ACTIONS(3637), 2, - anon_sym_else, - anon_sym_while, - [208696] = 5, + STATE(7053), 1, + sym_formal_parameters, + [208657] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(5251), 1, - sym_formal_parameters, - STATE(7046), 1, + ACTIONS(7697), 1, + anon_sym_LBRACE, + STATE(354), 1, + sym_class_body, + STATE(6890), 1, sym_comment, - [208712] = 5, + [208673] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(9805), 1, + sym_identifier, + ACTIONS(9809), 1, + sym_private_property_identifier, + STATE(6891), 1, + sym_comment, + [208689] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10192), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(99), 1, - sym_parenthesized_expression, - STATE(7047), 1, + STATE(6892), 1, sym_comment, - [208728] = 5, + STATE(7241), 1, + sym_formal_parameters, + [208705] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10196), 1, - anon_sym_LPAREN, - STATE(6725), 1, - sym_parenthesized_expression, - STATE(7048), 1, + ACTIONS(8198), 1, + anon_sym_LBRACE, + STATE(3474), 1, + sym_statement_block, + STATE(6893), 1, sym_comment, - [208744] = 4, + [208721] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7049), 1, + STATE(6894), 1, sym_comment, - ACTIONS(3465), 2, + ACTIONS(3503), 2, anon_sym_else, anon_sym_while, - [208758] = 4, + [208735] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7050), 1, + STATE(6895), 1, sym_comment, - ACTIONS(3589), 2, - anon_sym_else, - anon_sym_while, - [208772] = 5, + ACTIONS(10689), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [208749] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7918), 1, + ACTIONS(7911), 1, anon_sym_LBRACE, - STATE(6360), 1, + STATE(6607), 1, sym_statement_block, - STATE(7051), 1, + STATE(6896), 1, sym_comment, - [208788] = 4, + [208765] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7052), 1, + STATE(6897), 1, sym_comment, - ACTIONS(3637), 2, + ACTIONS(3483), 2, anon_sym_else, anon_sym_while, - [208802] = 4, + [208779] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(7053), 1, + ACTIONS(10691), 1, + sym_identifier, + ACTIONS(10693), 1, + sym_private_property_identifier, + STATE(6898), 1, sym_comment, - ACTIONS(3637), 2, - anon_sym_else, - anon_sym_while, - [208816] = 5, + [208795] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(7054), 1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(5513), 1, + sym__from_clause, + STATE(6899), 1, sym_comment, - STATE(7573), 1, - sym_formal_parameters, - [208832] = 4, + [208811] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - STATE(7055), 1, + ACTIONS(10695), 1, + sym_identifier, + ACTIONS(10697), 1, + sym_private_property_identifier, + STATE(6900), 1, sym_comment, - ACTIONS(10668), 2, - anon_sym_COMMA, - anon_sym_GT, - [208846] = 5, + [208827] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7658), 1, + ACTIONS(4969), 1, anon_sym_LBRACE, - STATE(2661), 1, - sym_class_body, - STATE(7056), 1, + STATE(3085), 1, + sym_statement_block, + STATE(6901), 1, sym_comment, - [208862] = 5, + [208843] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5015), 1, - anon_sym_LBRACE, - STATE(2663), 1, - sym_statement_block, - STATE(7057), 1, + ACTIONS(8965), 1, + anon_sym_from, + STATE(5413), 1, + sym__from_clause, + STATE(6902), 1, sym_comment, - [208878] = 5, + [208859] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(7571), 1, anon_sym_LBRACE, - STATE(3650), 1, - sym_statement_block, - STATE(7058), 1, + STATE(3053), 1, + sym_class_body, + STATE(6903), 1, sym_comment, - [208894] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [208875] = 5, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10670), 1, - sym_identifier, - ACTIONS(10672), 1, - sym_private_property_identifier, - STATE(7059), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(8671), 1, + anon_sym_LBRACE, + STATE(430), 1, + sym_statement_block, + STATE(6904), 1, sym_comment, - [208910] = 5, + [208891] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10674), 1, - anon_sym_SEMI, - ACTIONS(10676), 1, - sym__automatic_semicolon, - STATE(7060), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + STATE(6905), 1, sym_comment, - [208926] = 5, + STATE(6981), 1, + sym_formal_parameters, + [208907] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(6690), 1, - sym__from_clause, - STATE(7061), 1, + ACTIONS(7657), 1, + anon_sym_LBRACE, + STATE(4914), 1, + sym_class_body, + STATE(6906), 1, sym_comment, - [208942] = 5, + [208923] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, + ACTIONS(10495), 1, anon_sym_LBRACE, - STATE(3644), 1, + STATE(1369), 1, sym_statement_block, - STATE(7062), 1, + STATE(6907), 1, sym_comment, - [208958] = 5, + [208939] = 5, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10678), 1, + ACTIONS(10699), 1, sym_identifier, - ACTIONS(10680), 1, - sym_private_property_identifier, - STATE(7063), 1, + STATE(5849), 1, + sym_nested_identifier, + STATE(6908), 1, sym_comment, - [208974] = 5, + [208955] = 5, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(5560), 1, - sym__from_clause, - STATE(7064), 1, + ACTIONS(10701), 1, + sym_identifier, + ACTIONS(10703), 1, + sym_private_property_identifier, + STATE(6909), 1, sym_comment, - [208990] = 5, + [208971] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7588), 1, + ACTIONS(7863), 1, anon_sym_LBRACE, - STATE(6349), 1, - sym_class_body, - STATE(7065), 1, + STATE(5338), 1, + sym_statement_block, + STATE(6910), 1, sym_comment, - [209006] = 4, + [208987] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7066), 1, + STATE(6911), 1, sym_comment, - ACTIONS(3639), 2, - anon_sym_else, - anon_sym_while, - [209020] = 4, + ACTIONS(6855), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [209001] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7067), 1, + STATE(6912), 1, sym_comment, - ACTIONS(3641), 2, + ACTIONS(3501), 2, anon_sym_else, anon_sym_while, - [209034] = 5, + [209015] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7866), 1, - anon_sym_LBRACE, - STATE(6343), 1, - sym_statement_block, - STATE(7068), 1, + ACTIONS(7250), 1, + anon_sym_LPAREN, + STATE(6913), 1, sym_comment, - [209050] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + STATE(6977), 1, + sym_formal_parameters, + [209031] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10682), 1, - sym_identifier, - ACTIONS(10684), 1, - sym_private_property_identifier, - STATE(7069), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6914), 1, sym_comment, - [209066] = 4, + ACTIONS(3499), 2, + anon_sym_else, + anon_sym_while, + [209045] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7070), 1, + STATE(6915), 1, sym_comment, ACTIONS(3485), 2, anon_sym_else, anon_sym_while, - [209080] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10686), 1, - sym_identifier, - STATE(6285), 1, - sym_nested_identifier, - STATE(7071), 1, - sym_comment, - [209096] = 5, + [209059] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7247), 1, + ACTIONS(7250), 1, anon_sym_LPAREN, - STATE(7072), 1, + STATE(6916), 1, sym_comment, - STATE(7402), 1, + STATE(7227), 1, sym_formal_parameters, - [209112] = 5, + [209075] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7640), 1, - anon_sym_LBRACE, - STATE(6688), 1, - sym_class_body, - STATE(7073), 1, + STATE(6917), 1, sym_comment, - [209128] = 5, + ACTIONS(3497), 2, + anon_sym_else, + anon_sym_while, + [209089] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7640), 1, + ACTIONS(7571), 1, anon_sym_LBRACE, - STATE(6605), 1, + STATE(2999), 1, sym_class_body, - STATE(7074), 1, + STATE(6918), 1, sym_comment, - [209144] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209105] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9707), 1, - sym_identifier, - ACTIONS(9711), 1, - sym_private_property_identifier, - STATE(7075), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6919), 1, sym_comment, - [209160] = 5, + ACTIONS(3495), 2, + anon_sym_else, + anon_sym_while, + [209119] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7624), 1, + ACTIONS(7719), 1, anon_sym_LBRACE, - STATE(3279), 1, + STATE(450), 1, sym_class_body, - STATE(7076), 1, + STATE(6920), 1, sym_comment, - [209176] = 4, + [209135] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7077), 1, + STATE(6921), 1, sym_comment, - ACTIONS(3595), 2, + ACTIONS(3529), 2, anon_sym_else, anon_sym_while, - [209190] = 5, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(7078), 1, - sym_comment, - STATE(7529), 1, - sym_formal_parameters, - [209206] = 4, + [209149] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7079), 1, + STATE(6922), 1, sym_comment, - ACTIONS(3597), 2, + ACTIONS(3487), 2, anon_sym_else, anon_sym_while, - [209220] = 4, + [209163] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7080), 1, + ACTIONS(7657), 1, + anon_sym_LBRACE, + STATE(4913), 1, + sym_class_body, + STATE(6923), 1, sym_comment, - ACTIONS(3637), 2, - anon_sym_else, - anon_sym_while, - [209234] = 4, + [209179] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7081), 1, + ACTIONS(10705), 1, + anon_sym_LBRACE, + STATE(3520), 1, + sym_statement_block, + STATE(6924), 1, sym_comment, - ACTIONS(3599), 2, - anon_sym_else, - anon_sym_while, - [209248] = 5, + [209195] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, + ACTIONS(8965), 1, anon_sym_from, - STATE(5530), 1, + STATE(5440), 1, sym__from_clause, - STATE(7082), 1, + STATE(6925), 1, sym_comment, - [209264] = 5, + [209211] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7640), 1, - anon_sym_LBRACE, - STATE(6615), 1, - sym_class_body, - STATE(7083), 1, + ACTIONS(10707), 1, + anon_sym_SEMI, + ACTIONS(10709), 1, + sym__automatic_semicolon, + STATE(6926), 1, sym_comment, - [209280] = 4, + [209227] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7084), 1, + STATE(6927), 1, sym_comment, - ACTIONS(3463), 2, + ACTIONS(3491), 2, anon_sym_else, anon_sym_while, - [209294] = 4, + [209241] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7085), 1, + STATE(6928), 1, sym_comment, - ACTIONS(3601), 2, + ACTIONS(3489), 2, anon_sym_else, anon_sym_while, - [209308] = 4, + [209255] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7086), 1, + ACTIONS(4999), 1, + anon_sym_LBRACE, + STATE(2597), 1, + sym_statement_block, + STATE(6929), 1, sym_comment, - ACTIONS(3611), 2, - anon_sym_else, - anon_sym_while, - [209322] = 5, + [209271] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7237), 1, + ACTIONS(10211), 1, anon_sym_LPAREN, - STATE(4536), 1, - sym_formal_parameters, - STATE(7087), 1, + STATE(6719), 1, + sym_parenthesized_expression, + STATE(6930), 1, sym_comment, - [209338] = 5, + [209287] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(7088), 1, + ACTIONS(7759), 1, + anon_sym_LBRACE, + STATE(3375), 1, + sym_class_body, + STATE(6931), 1, sym_comment, - STATE(7405), 1, - sym_formal_parameters, - [209354] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209303] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10688), 1, - sym_identifier, - ACTIONS(10690), 1, - sym_private_property_identifier, - STATE(7089), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6932), 1, sym_comment, - [209370] = 4, + ACTIONS(10711), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [209317] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7090), 1, + ACTIONS(4999), 1, + anon_sym_LBRACE, + STATE(2446), 1, + sym_statement_block, + STATE(6933), 1, sym_comment, - ACTIONS(3637), 2, - anon_sym_else, - anon_sym_while, - [209384] = 5, - ACTIONS(3), 1, - aux_sym_comment_token1, + [209333] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10692), 1, - sym_identifier, - STATE(6032), 1, - sym_nested_identifier, - STATE(7091), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + STATE(6934), 1, sym_comment, - [209400] = 5, + ACTIONS(9779), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [209347] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, + ACTIONS(8965), 1, anon_sym_from, - STATE(5674), 1, + STATE(6621), 1, sym__from_clause, - STATE(7092), 1, + STATE(6935), 1, sym_comment, - [209416] = 4, + [209363] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7093), 1, + ACTIONS(7759), 1, + anon_sym_LBRACE, + STATE(2608), 1, + sym_class_body, + STATE(6936), 1, sym_comment, - ACTIONS(3663), 2, - anon_sym_else, - anon_sym_while, - [209430] = 5, + [209379] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8780), 1, - anon_sym_LBRACE, - STATE(454), 1, - sym_statement_block, - STATE(7094), 1, + STATE(6937), 1, sym_comment, - [209446] = 5, + ACTIONS(10713), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [209393] = 5, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7624), 1, + ACTIONS(4969), 1, anon_sym_LBRACE, - STATE(3223), 1, - sym_class_body, - STATE(7095), 1, + STATE(3072), 1, + sym_statement_block, + STATE(6938), 1, sym_comment, - [209462] = 5, + [209409] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(7096), 1, + ACTIONS(10715), 1, + anon_sym_EQ_GT, + STATE(6939), 1, sym_comment, - STATE(7439), 1, - sym_formal_parameters, - [209478] = 5, + [209422] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(7638), 1, - anon_sym_LBRACE, - STATE(460), 1, - sym_class_body, - STATE(7097), 1, + ACTIONS(10717), 1, + sym_identifier, + STATE(6940), 1, sym_comment, - [209494] = 5, + [209435] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4957), 1, - anon_sym_LBRACE, - STATE(3151), 1, - sym_statement_block, - STATE(7098), 1, + ACTIONS(5932), 1, + anon_sym_RPAREN, + STATE(6941), 1, sym_comment, - [209510] = 4, + [209448] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(10719), 1, + sym_identifier, + STATE(6942), 1, + sym_comment, + [209461] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(7099), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10721), 1, + sym_identifier, + STATE(6943), 1, sym_comment, - ACTIONS(10694), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [209524] = 4, + [209474] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10723), 1, + sym_regex_pattern, + STATE(6944), 1, + sym_comment, + [209487] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7100), 1, + ACTIONS(10725), 1, + anon_sym_RBRACK, + STATE(6945), 1, sym_comment, - ACTIONS(3659), 2, - anon_sym_else, - anon_sym_while, - [209538] = 5, + [209500] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4957), 1, - anon_sym_LBRACE, - STATE(3254), 1, - sym_statement_block, - STATE(7101), 1, + ACTIONS(10727), 1, + anon_sym_LBRACK, + STATE(6946), 1, sym_comment, - [209554] = 4, + [209513] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7102), 1, + ACTIONS(10729), 1, + anon_sym_RBRACK, + STATE(6947), 1, sym_comment, - ACTIONS(3661), 2, - anon_sym_else, - anon_sym_while, - [209568] = 5, + [209526] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10731), 1, + sym_identifier, + STATE(6948), 1, + sym_comment, + [209539] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10196), 1, - anon_sym_LPAREN, - STATE(6587), 1, - sym_parenthesized_expression, - STATE(7103), 1, + ACTIONS(10733), 1, + anon_sym_while, + STATE(6949), 1, sym_comment, - [209584] = 5, + [209552] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(3552), 1, - sym_class_body, - STATE(7104), 1, + ACTIONS(10735), 1, + anon_sym_RPAREN, + STATE(6950), 1, sym_comment, - [209600] = 4, + [209565] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7105), 1, + ACTIONS(10737), 1, + anon_sym_COLON, + STATE(6951), 1, sym_comment, - ACTIONS(10696), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [209614] = 4, + [209578] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7106), 1, + ACTIONS(10739), 1, + anon_sym_RBRACK, + STATE(6952), 1, sym_comment, - ACTIONS(3665), 2, - anon_sym_else, - anon_sym_while, - [209628] = 4, + [209591] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - STATE(7107), 1, + ACTIONS(10741), 1, + anon_sym_DOT, + STATE(6953), 1, sym_comment, - ACTIONS(10698), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [209642] = 5, + [209604] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10700), 1, - anon_sym_SEMI, - ACTIONS(10702), 1, - sym__automatic_semicolon, - STATE(7108), 1, + ACTIONS(10743), 1, + anon_sym_RBRACK, + STATE(6954), 1, + sym_comment, + [209617] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10745), 1, + sym_identifier, + STATE(6955), 1, sym_comment, - [209658] = 5, + [209630] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(2769), 1, - sym_class_body, - STATE(7109), 1, + ACTIONS(10747), 1, + anon_sym_RBRACK, + STATE(6956), 1, sym_comment, - [209674] = 5, + [209643] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5015), 1, - anon_sym_LBRACE, - STATE(2772), 1, - sym_statement_block, - STATE(7110), 1, + ACTIONS(9793), 1, + anon_sym_RBRACK, + STATE(6957), 1, + sym_comment, + [209656] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10749), 1, + sym_identifier, + STATE(6958), 1, sym_comment, - [209690] = 5, + [209669] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5015), 1, - anon_sym_LBRACE, - STATE(2777), 1, - sym_statement_block, - STATE(7111), 1, + ACTIONS(10751), 1, + anon_sym_EQ_GT, + STATE(6959), 1, sym_comment, - [209706] = 5, + [209682] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(6555), 1, - sym__from_clause, - STATE(7112), 1, + ACTIONS(10753), 1, + anon_sym_EQ_GT, + STATE(6960), 1, sym_comment, - [209722] = 4, + [209695] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(10755), 1, + sym_identifier, + STATE(6961), 1, + sym_comment, + [209708] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - STATE(7113), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10757), 1, + sym_identifier, + STATE(6962), 1, sym_comment, - ACTIONS(9736), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [209736] = 5, + [209721] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7658), 1, - anon_sym_LBRACE, - STATE(2780), 1, - sym_class_body, - STATE(7114), 1, + ACTIONS(6017), 1, + anon_sym_is, + STATE(6963), 1, sym_comment, - [209752] = 5, + [209734] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9030), 1, - anon_sym_from, - STATE(5647), 1, - sym__from_clause, - STATE(7115), 1, + ACTIONS(10759), 1, + anon_sym_RBRACK, + STATE(6964), 1, sym_comment, - [209768] = 5, + [209747] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3652), 1, - sym_statement_block, - STATE(7116), 1, + ACTIONS(10761), 1, + anon_sym_RBRACK, + STATE(6965), 1, sym_comment, - [209784] = 5, + [209760] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8170), 1, - anon_sym_LBRACE, - STATE(3651), 1, - sym_statement_block, - STATE(7117), 1, + ACTIONS(10763), 1, + anon_sym_from, + STATE(6966), 1, sym_comment, - [209800] = 5, + [209773] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(10765), 1, + sym_identifier, + STATE(6967), 1, + sym_comment, + [209786] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7588), 1, - anon_sym_LBRACE, - STATE(6224), 1, - sym_class_body, - STATE(7118), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10767), 1, + sym_identifier, + STATE(6968), 1, + sym_comment, + [209799] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10769), 1, + sym_identifier, + STATE(6969), 1, sym_comment, - [209816] = 5, + [209812] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7247), 1, - anon_sym_LPAREN, - STATE(7119), 1, + ACTIONS(10771), 1, + anon_sym_RBRACK, + STATE(6970), 1, sym_comment, - STATE(7525), 1, - sym_formal_parameters, - [209832] = 5, + [209825] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(10773), 1, + sym_identifier, + STATE(6971), 1, + sym_comment, + [209838] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(7866), 1, - anon_sym_LBRACE, - STATE(6303), 1, - sym_statement_block, - STATE(7120), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10775), 1, + sym_identifier, + STATE(6972), 1, sym_comment, - [209848] = 5, + [209851] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7588), 1, - anon_sym_LBRACE, - STATE(6295), 1, - sym_class_body, - STATE(7121), 1, + ACTIONS(10777), 1, + anon_sym_DOT, + STATE(6973), 1, sym_comment, [209864] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10704), 1, - anon_sym_EQ_GT, - STATE(7122), 1, + ACTIONS(10779), 1, + anon_sym_RBRACK, + STATE(6974), 1, sym_comment, [209877] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5143), 1, - anon_sym_RPAREN, - STATE(7123), 1, + ACTIONS(10781), 1, + anon_sym_while, + STATE(6975), 1, sym_comment, [209890] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10706), 1, - anon_sym_RBRACK, - STATE(7124), 1, + ACTIONS(9594), 1, + anon_sym_RBRACE, + STATE(6976), 1, sym_comment, [209903] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10708), 1, - sym_identifier, - STATE(7125), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10783), 1, + anon_sym_EQ_GT, + STATE(6977), 1, sym_comment, [209916] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6021), 1, - anon_sym_RPAREN, - STATE(7126), 1, + ACTIONS(10785), 1, + sym_identifier, + STATE(6978), 1, sym_comment, [209929] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10710), 1, - anon_sym_RBRACK, - STATE(7127), 1, + ACTIONS(10787), 1, + anon_sym_RPAREN, + STATE(6979), 1, sym_comment, [209942] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10712), 1, - anon_sym_RBRACK, - STATE(7128), 1, + ACTIONS(10789), 1, + anon_sym_EQ_GT, + STATE(6980), 1, sym_comment, [209955] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10714), 1, - anon_sym_RPAREN, - STATE(7129), 1, + ACTIONS(10791), 1, + anon_sym_EQ_GT, + STATE(6981), 1, sym_comment, [209968] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10716), 1, - anon_sym_RBRACK, - STATE(7130), 1, + ACTIONS(10793), 1, + anon_sym_LPAREN, + STATE(6982), 1, sym_comment, [209981] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10718), 1, + ACTIONS(10795), 1, sym_identifier, - STATE(7131), 1, + STATE(6983), 1, sym_comment, [209994] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10720), 1, - anon_sym_while, - STATE(7132), 1, + ACTIONS(10797), 1, + sym_identifier, + STATE(6984), 1, sym_comment, [210007] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10722), 1, + ACTIONS(10799), 1, sym_regex_pattern, - STATE(7133), 1, + STATE(6985), 1, sym_comment, [210020] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10724), 1, - anon_sym_COLON, - STATE(7134), 1, + ACTIONS(10801), 1, + anon_sym_from, + STATE(6986), 1, sym_comment, [210033] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10726), 1, - sym_identifier, - STATE(7135), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10803), 1, + anon_sym_RPAREN, + STATE(6987), 1, sym_comment, [210046] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10728), 1, - anon_sym_DOT, - STATE(7136), 1, + ACTIONS(10805), 1, + anon_sym_EQ_GT, + STATE(6988), 1, sym_comment, [210059] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10730), 1, - sym_identifier, - STATE(7137), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10807), 1, + anon_sym_as, + STATE(6989), 1, sym_comment, [210072] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10732), 1, - sym_identifier, - STATE(7138), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10809), 1, + anon_sym_EQ, + STATE(6990), 1, sym_comment, [210085] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10734), 1, + ACTIONS(10811), 1, anon_sym_RBRACK, - STATE(7139), 1, + STATE(6991), 1, sym_comment, [210098] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10736), 1, - anon_sym_LBRACK, - STATE(7140), 1, + ACTIONS(10813), 1, + anon_sym_EQ_GT, + STATE(6992), 1, sym_comment, [210111] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10738), 1, + ACTIONS(10815), 1, anon_sym_RBRACK, - STATE(7141), 1, + STATE(6993), 1, sym_comment, [210124] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10740), 1, - anon_sym_EQ_GT, - STATE(7142), 1, + ACTIONS(10817), 1, + anon_sym_RBRACK, + STATE(6994), 1, sym_comment, [210137] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10742), 1, - sym_identifier, - STATE(7143), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10819), 1, + anon_sym_require, + STATE(6995), 1, sym_comment, [210150] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10744), 1, - anon_sym_RBRACK, - STATE(7144), 1, + ACTIONS(10821), 1, + sym_identifier, + STATE(6996), 1, sym_comment, [210163] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10746), 1, + ACTIONS(10823), 1, sym_identifier, - STATE(7145), 1, + STATE(6997), 1, sym_comment, [210176] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7530), 1, - anon_sym_is, - STATE(7146), 1, + ACTIONS(9728), 1, + anon_sym_RBRACK, + STATE(6998), 1, sym_comment, [210189] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10748), 1, + ACTIONS(10825), 1, anon_sym_RBRACK, - STATE(7147), 1, + STATE(6999), 1, sym_comment, [210202] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5958), 1, - anon_sym_RBRACK, - STATE(7148), 1, + ACTIONS(10827), 1, + anon_sym_from, + STATE(7000), 1, sym_comment, [210215] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10750), 1, - anon_sym_from, - STATE(7149), 1, + ACTIONS(10829), 1, + sym_identifier, + STATE(7001), 1, sym_comment, [210228] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10752), 1, - anon_sym_RBRACK, - STATE(7150), 1, + ACTIONS(10831), 1, + anon_sym_EQ_GT, + STATE(7002), 1, sym_comment, [210241] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10754), 1, - sym_identifier, - STATE(7151), 1, - sym_comment, - [210254] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10756), 1, - anon_sym_from, - STATE(7152), 1, + ACTIONS(10833), 1, + anon_sym_EQ_GT, + STATE(7003), 1, sym_comment, - [210267] = 4, + [210254] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10758), 1, + ACTIONS(10835), 1, sym_identifier, - STATE(7153), 1, + STATE(7004), 1, sym_comment, - [210280] = 4, - ACTIONS(3), 1, + [210267] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10837), 1, + anon_sym_EQ_GT, + STATE(7005), 1, + sym_comment, + [210280] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10760), 1, - sym_identifier, - STATE(7154), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10839), 1, + anon_sym_DOT, + STATE(7006), 1, sym_comment, [210293] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10762), 1, + ACTIONS(10841), 1, sym_identifier, - STATE(7155), 1, + STATE(7007), 1, sym_comment, [210306] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10764), 1, - sym_identifier, - STATE(7156), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10843), 1, + anon_sym_EQ_GT, + STATE(7008), 1, sym_comment, [210319] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10766), 1, - anon_sym_DOT, - STATE(7157), 1, + ACTIONS(6352), 1, + anon_sym_in, + STATE(7009), 1, sym_comment, [210332] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10768), 1, - anon_sym_while, - STATE(7158), 1, + ACTIONS(10845), 1, + anon_sym_EQ_GT, + STATE(7010), 1, sym_comment, [210345] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(10770), 1, - sym_identifier, - STATE(7159), 1, - sym_comment, - [210358] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10772), 1, - anon_sym_EQ_GT, - STATE(7160), 1, + ACTIONS(10847), 1, + anon_sym_RBRACK, + STATE(7011), 1, sym_comment, - [210371] = 4, + [210358] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10774), 1, + ACTIONS(10849), 1, sym_identifier, - STATE(7161), 1, + STATE(7012), 1, sym_comment, - [210384] = 4, + [210371] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10776), 1, + ACTIONS(10851), 1, anon_sym_EQ_GT, - STATE(7162), 1, + STATE(7013), 1, sym_comment, - [210397] = 4, + [210384] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10778), 1, + ACTIONS(10853), 1, sym_identifier, - STATE(7163), 1, + STATE(7014), 1, sym_comment, - [210410] = 4, - ACTIONS(3), 1, + [210397] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(10855), 1, + anon_sym_RBRACK, + STATE(7015), 1, + sym_comment, + [210410] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10780), 1, - sym_identifier, - STATE(7164), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10857), 1, + anon_sym_RBRACK, + STATE(7016), 1, sym_comment, [210423] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10782), 1, - anon_sym_LPAREN, - STATE(7165), 1, + ACTIONS(10859), 1, + anon_sym_RBRACK, + STATE(7017), 1, sym_comment, [210436] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10784), 1, - sym_regex_pattern, - STATE(7166), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10861), 1, + anon_sym_RBRACK, + STATE(7018), 1, sym_comment, [210449] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10786), 1, - anon_sym_RBRACK, - STATE(7167), 1, + ACTIONS(10863), 1, + sym_identifier, + STATE(7019), 1, sym_comment, [210462] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10788), 1, + ACTIONS(10865), 1, anon_sym_RBRACK, - STATE(7168), 1, + STATE(7020), 1, sym_comment, [210475] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10790), 1, - anon_sym_from, - STATE(7169), 1, + ACTIONS(10867), 1, + anon_sym_symbol, + STATE(7021), 1, sym_comment, [210488] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10792), 1, + ACTIONS(10869), 1, anon_sym_RPAREN, - STATE(7170), 1, + STATE(7022), 1, sym_comment, [210501] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10794), 1, - anon_sym_RBRACK, - STATE(7171), 1, + ACTIONS(10871), 1, + anon_sym_COLON, + STATE(7023), 1, sym_comment, [210514] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10796), 1, - anon_sym_as, - STATE(7172), 1, + ACTIONS(10873), 1, + sym_identifier, + STATE(7024), 1, sym_comment, [210527] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10798), 1, - anon_sym_EQ, - STATE(7173), 1, + ACTIONS(5882), 1, + anon_sym_RBRACK, + STATE(7025), 1, sym_comment, [210540] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10800), 1, - anon_sym_RBRACK, - STATE(7174), 1, + ACTIONS(7144), 1, + anon_sym_is, + STATE(7026), 1, sym_comment, [210553] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10802), 1, - anon_sym_EQ_GT, - STATE(7175), 1, + ACTIONS(5999), 1, + anon_sym_RBRACK, + STATE(7027), 1, sym_comment, [210566] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10804), 1, - anon_sym_RBRACK, - STATE(7176), 1, + ACTIONS(10875), 1, + anon_sym_RPAREN, + STATE(7028), 1, sym_comment, [210579] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(10806), 1, - anon_sym_RBRACK, - STATE(7177), 1, - sym_comment, - [210592] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10808), 1, - anon_sym_require, - STATE(7178), 1, + ACTIONS(10877), 1, + sym_identifier, + STATE(7029), 1, sym_comment, - [210605] = 4, + [210592] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10810), 1, + ACTIONS(10879), 1, sym_identifier, - STATE(7179), 1, + STATE(7030), 1, sym_comment, - [210618] = 4, + [210605] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10812), 1, + ACTIONS(10881), 1, sym_identifier, - STATE(7180), 1, + STATE(7031), 1, sym_comment, - [210631] = 4, + [210618] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10814), 1, + ACTIONS(10883), 1, anon_sym_RBRACK, - STATE(7181), 1, + STATE(7032), 1, sym_comment, - [210644] = 4, + [210631] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(10885), 1, + sym_identifier, + STATE(7033), 1, + sym_comment, + [210644] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(10816), 1, - anon_sym_RBRACK, - STATE(7182), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10887), 1, + sym_identifier, + STATE(7034), 1, sym_comment, [210657] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10818), 1, - anon_sym_from, - STATE(7183), 1, + ACTIONS(10889), 1, + sym_identifier, + STATE(7035), 1, sym_comment, [210670] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10820), 1, + ACTIONS(10891), 1, sym_identifier, - STATE(7184), 1, + STATE(7036), 1, sym_comment, [210683] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10822), 1, - anon_sym_EQ_GT, - STATE(7185), 1, + ACTIONS(10893), 1, + anon_sym_from, + STATE(7037), 1, sym_comment, [210696] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10824), 1, - anon_sym_EQ_GT, - STATE(7186), 1, - sym_comment, - [210709] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10826), 1, + ACTIONS(10895), 1, sym_identifier, - STATE(7187), 1, + STATE(7038), 1, sym_comment, - [210722] = 4, + [210709] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10828), 1, - anon_sym_EQ_GT, - STATE(7188), 1, + ACTIONS(10897), 1, + anon_sym_DOT, + STATE(7039), 1, sym_comment, - [210735] = 4, + [210722] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10830), 1, - anon_sym_DOT, - STATE(7189), 1, + ACTIONS(6081), 1, + anon_sym_in, + STATE(7040), 1, sym_comment, - [210748] = 4, + [210735] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10832), 1, + ACTIONS(10899), 1, sym_identifier, - STATE(7190), 1, + STATE(7041), 1, sym_comment, - [210761] = 4, + [210748] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10834), 1, - anon_sym_EQ_GT, - STATE(7191), 1, + ACTIONS(10901), 1, + anon_sym_class, + STATE(7042), 1, sym_comment, - [210774] = 4, + [210761] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6307), 1, - anon_sym_in, - STATE(7192), 1, + ACTIONS(10903), 1, + anon_sym_while, + STATE(7043), 1, sym_comment, - [210787] = 4, + [210774] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10836), 1, + ACTIONS(10905), 1, anon_sym_EQ_GT, - STATE(7193), 1, + STATE(7044), 1, + sym_comment, + [210787] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(10907), 1, + sym_identifier, + STATE(7045), 1, sym_comment, [210800] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10838), 1, - anon_sym_RBRACK, - STATE(7194), 1, + ACTIONS(10909), 1, + anon_sym_EQ, + STATE(7046), 1, sym_comment, [210813] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10840), 1, - sym_identifier, - STATE(7195), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10911), 1, + anon_sym_namespace, + STATE(7047), 1, sym_comment, [210826] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10842), 1, - anon_sym_RBRACK, - STATE(7196), 1, + ACTIONS(6310), 1, + anon_sym_in, + STATE(7048), 1, sym_comment, [210839] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10844), 1, + ACTIONS(10913), 1, sym_identifier, - STATE(7197), 1, + STATE(7049), 1, sym_comment, [210852] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10846), 1, - anon_sym_COLON, - STATE(7198), 1, + ACTIONS(10915), 1, + sym_identifier, + STATE(7050), 1, sym_comment, [210865] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5944), 1, - anon_sym_RBRACK, - STATE(7199), 1, + ACTIONS(5947), 1, + anon_sym_COLON, + STATE(7051), 1, sym_comment, [210878] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7135), 1, - anon_sym_is, - STATE(7200), 1, + ACTIONS(5949), 1, + anon_sym_RPAREN, + STATE(7052), 1, sym_comment, [210891] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10848), 1, - anon_sym_RPAREN, - STATE(7201), 1, + ACTIONS(10917), 1, + anon_sym_EQ_GT, + STATE(7053), 1, sym_comment, [210904] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10850), 1, - sym_identifier, - STATE(7202), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10919), 1, + anon_sym_from, + STATE(7054), 1, sym_comment, [210917] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10852), 1, + ACTIONS(10921), 1, sym_identifier, - STATE(7203), 1, + STATE(7055), 1, sym_comment, [210930] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10854), 1, - anon_sym_RBRACK, - STATE(7204), 1, + ACTIONS(10923), 1, + anon_sym_EQ_GT, + STATE(7056), 1, sym_comment, [210943] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10856), 1, - sym_identifier, - STATE(7205), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10925), 1, + anon_sym_EQ_GT, + STATE(7057), 1, sym_comment, [210956] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10858), 1, - sym_identifier, - STATE(7206), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10927), 1, + anon_sym_EQ_GT, + STATE(7058), 1, sym_comment, [210969] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10860), 1, - anon_sym_RBRACK, - STATE(7207), 1, + ACTIONS(10929), 1, + anon_sym_EQ_GT, + STATE(7059), 1, sym_comment, [210982] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10862), 1, - sym_identifier, - STATE(7208), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10931), 1, + anon_sym_EQ, + STATE(7060), 1, sym_comment, [210995] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10864), 1, - anon_sym_DOT, - STATE(7209), 1, + ACTIONS(10933), 1, + sym_identifier, + STATE(7061), 1, sym_comment, [211008] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10866), 1, - anon_sym_while, - STATE(7210), 1, + ACTIONS(10935), 1, + sym_identifier, + STATE(7062), 1, sym_comment, [211021] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10868), 1, + ACTIONS(10937), 1, sym_identifier, - STATE(7211), 1, + STATE(7063), 1, sym_comment, [211034] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6017), 1, - anon_sym_COLON, - STATE(7212), 1, + ACTIONS(10939), 1, + sym_regex_pattern, + STATE(7064), 1, sym_comment, [211047] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10870), 1, - sym_identifier, - STATE(7213), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(5951), 1, + anon_sym_RPAREN, + STATE(7065), 1, sym_comment, [211060] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5973), 1, - anon_sym_RPAREN, - STATE(7214), 1, + ACTIONS(5989), 1, + anon_sym_RBRACK, + STATE(7066), 1, sym_comment, [211073] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10872), 1, + ACTIONS(10941), 1, sym_identifier, - STATE(7215), 1, + STATE(7067), 1, sym_comment, [211086] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10874), 1, - sym_identifier, - STATE(7216), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10943), 1, + anon_sym_EQ, + STATE(7068), 1, sym_comment, [211099] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10876), 1, - sym_regex_pattern, - STATE(7217), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10945), 1, + anon_sym_new, + STATE(7069), 1, sym_comment, [211112] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10878), 1, + ACTIONS(10040), 1, sym_identifier, - STATE(7218), 1, + STATE(7070), 1, sym_comment, [211125] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5981), 1, - anon_sym_RPAREN, - STATE(7219), 1, + ACTIONS(10947), 1, + anon_sym_class, + STATE(7071), 1, sym_comment, [211138] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5983), 1, + ACTIONS(5953), 1, anon_sym_RPAREN, - STATE(7220), 1, + STATE(7072), 1, sym_comment, [211151] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10880), 1, + ACTIONS(10949), 1, anon_sym_EQ, - STATE(7221), 1, + STATE(7073), 1, sym_comment, [211164] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5899), 1, - anon_sym_in, - STATE(7222), 1, + ACTIONS(10951), 1, + anon_sym_EQ, + STATE(7074), 1, sym_comment, [211177] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6064), 1, - anon_sym_in, - STATE(7223), 1, + ACTIONS(10953), 1, + anon_sym_EQ_GT, + STATE(7075), 1, sym_comment, [211190] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10882), 1, - anon_sym_EQ_GT, - STATE(7224), 1, + ACTIONS(10955), 1, + sym_identifier, + STATE(7076), 1, sym_comment, [211203] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10884), 1, - anon_sym_class, - STATE(7225), 1, + ACTIONS(10957), 1, + anon_sym_EQ, + STATE(7077), 1, sym_comment, [211216] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10886), 1, - anon_sym_COLON, - STATE(7226), 1, + ACTIONS(10959), 1, + anon_sym_EQ_GT, + STATE(7078), 1, sym_comment, [211229] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10888), 1, + ACTIONS(10961), 1, anon_sym_EQ_GT, - STATE(7227), 1, + STATE(7079), 1, sym_comment, [211242] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10890), 1, - anon_sym_EQ_GT, - STATE(7228), 1, + ACTIONS(10963), 1, + sym_identifier, + STATE(7080), 1, sym_comment, [211255] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10892), 1, - anon_sym_EQ, - STATE(7229), 1, + ACTIONS(10965), 1, + anon_sym_EQ_GT, + STATE(7081), 1, sym_comment, [211268] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10894), 1, - anon_sym_namespace, - STATE(7230), 1, + ACTIONS(10967), 1, + sym_identifier, + STATE(7082), 1, sym_comment, [211281] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10896), 1, - anon_sym_EQ_GT, - STATE(7231), 1, + ACTIONS(5955), 1, + anon_sym_RBRACE, + STATE(7083), 1, sym_comment, [211294] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10898), 1, - anon_sym_EQ_GT, - STATE(7232), 1, + ACTIONS(9673), 1, + anon_sym_RBRACK, + STATE(7084), 1, sym_comment, [211307] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10900), 1, - anon_sym_EQ, - STATE(7233), 1, + ACTIONS(10969), 1, + anon_sym_RBRACK, + STATE(7085), 1, sym_comment, [211320] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10902), 1, - anon_sym_EQ, - STATE(7234), 1, + ACTIONS(10971), 1, + anon_sym_EQ_GT, + STATE(7086), 1, sym_comment, [211333] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10904), 1, + ACTIONS(10973), 1, anon_sym_EQ_GT, - STATE(7235), 1, + STATE(7087), 1, sym_comment, [211346] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6662), 1, - anon_sym_in, - STATE(7236), 1, + ACTIONS(10975), 1, + sym_identifier, + STATE(7088), 1, sym_comment, [211359] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10906), 1, - anon_sym_from, - STATE(7237), 1, + ACTIONS(10977), 1, + anon_sym_EQ, + STATE(7089), 1, sym_comment, [211372] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10908), 1, - sym_identifier, - STATE(7238), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10979), 1, + anon_sym_EQ_GT, + STATE(7090), 1, sym_comment, [211385] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10910), 1, - anon_sym_EQ_GT, - STATE(7239), 1, + ACTIONS(6672), 1, + anon_sym_in, + STATE(7091), 1, sym_comment, [211398] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5257), 1, - anon_sym_RPAREN, - STATE(7240), 1, + ACTIONS(10981), 1, + sym_identifier, + STATE(7092), 1, sym_comment, [211411] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10912), 1, - anon_sym_EQ_GT, - STATE(7241), 1, + ACTIONS(5193), 1, + anon_sym_RPAREN, + STATE(7093), 1, sym_comment, [211424] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10914), 1, - anon_sym_EQ_GT, - STATE(7242), 1, + ACTIONS(10983), 1, + sym_identifier, + STATE(7094), 1, sym_comment, [211437] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10916), 1, - anon_sym_EQ_GT, - STATE(7243), 1, + ACTIONS(10985), 1, + sym_identifier, + STATE(7095), 1, sym_comment, [211450] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10918), 1, + ACTIONS(10987), 1, anon_sym_EQ_GT, - STATE(7244), 1, + STATE(7096), 1, sym_comment, [211463] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10920), 1, + ACTIONS(10989), 1, anon_sym_EQ_GT, - STATE(7245), 1, + STATE(7097), 1, sym_comment, [211476] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10922), 1, - anon_sym_EQ, - STATE(7246), 1, + ACTIONS(10991), 1, + anon_sym_RBRACK, + STATE(7098), 1, sym_comment, [211489] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10924), 1, - anon_sym_SLASH2, - STATE(7247), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10993), 1, + anon_sym_COLON, + STATE(7099), 1, sym_comment, [211502] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10926), 1, - sym_identifier, - STATE(7248), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(10995), 1, + anon_sym_RPAREN, + STATE(7100), 1, sym_comment, [211515] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6007), 1, + ACTIONS(10997), 1, anon_sym_RBRACK, - STATE(7249), 1, + STATE(7101), 1, sym_comment, [211528] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10928), 1, - anon_sym_symbol, - STATE(7250), 1, + ACTIONS(10999), 1, + anon_sym_RBRACK, + STATE(7102), 1, sym_comment, [211541] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10930), 1, - anon_sym_EQ, - STATE(7251), 1, + ACTIONS(11001), 1, + sym_identifier, + STATE(7103), 1, sym_comment, [211554] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10932), 1, - anon_sym_new, - STATE(7252), 1, + ACTIONS(11003), 1, + anon_sym_RBRACK, + STATE(7104), 1, sym_comment, [211567] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9559), 1, - sym_identifier, - STATE(7253), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11005), 1, + anon_sym_RBRACK, + STATE(7105), 1, sym_comment, [211580] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10934), 1, - anon_sym_class, - STATE(7254), 1, + ACTIONS(11007), 1, + anon_sym_RBRACK, + STATE(7106), 1, sym_comment, [211593] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10936), 1, + ACTIONS(11009), 1, anon_sym_EQ_GT, - STATE(7255), 1, + STATE(7107), 1, sym_comment, [211606] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10938), 1, + ACTIONS(11011), 1, anon_sym_RBRACK, - STATE(7256), 1, + STATE(7108), 1, sym_comment, [211619] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10940), 1, - anon_sym_EQ, - STATE(7257), 1, + ACTIONS(11013), 1, + anon_sym_RBRACK, + STATE(7109), 1, sym_comment, [211632] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10942), 1, + ACTIONS(11015), 1, anon_sym_RBRACK, - STATE(7258), 1, + STATE(7110), 1, sym_comment, [211645] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10944), 1, - sym_identifier, - STATE(7259), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(9630), 1, + anon_sym_RBRACK, + STATE(7111), 1, sym_comment, [211658] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10946), 1, - anon_sym_EQ, - STATE(7260), 1, + ACTIONS(11017), 1, + anon_sym_EQ_GT, + STATE(7112), 1, sym_comment, [211671] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10948), 1, - anon_sym_RBRACK, - STATE(7261), 1, + ACTIONS(11019), 1, + anon_sym_EQ_GT, + STATE(7113), 1, sym_comment, [211684] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10950), 1, - anon_sym_RBRACK, - STATE(7262), 1, + ACTIONS(11021), 1, + anon_sym_EQ_GT, + STATE(7114), 1, sym_comment, [211697] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10952), 1, - sym_identifier, - STATE(7263), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11023), 1, + anon_sym_EQ, + STATE(7115), 1, sym_comment, [211710] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10954), 1, - anon_sym_RBRACK, - STATE(7264), 1, + ACTIONS(11025), 1, + anon_sym_SLASH2, + STATE(7116), 1, sym_comment, [211723] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10956), 1, - sym_identifier, - STATE(7265), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11027), 1, + anon_sym_RBRACK, + STATE(7117), 1, sym_comment, [211736] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5923), 1, - anon_sym_RBRACE, - STATE(7266), 1, + ACTIONS(11029), 1, + anon_sym_new, + STATE(7118), 1, sym_comment, [211749] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10958), 1, - anon_sym_RBRACK, - STATE(7267), 1, + ACTIONS(11031), 1, + anon_sym_RPAREN, + STATE(7119), 1, sym_comment, [211762] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10960), 1, - anon_sym_RBRACK, - STATE(7268), 1, + ACTIONS(6041), 1, + anon_sym_RPAREN, + STATE(7120), 1, sym_comment, [211775] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10962), 1, - anon_sym_RBRACK, - STATE(7269), 1, + ACTIONS(3209), 1, + anon_sym_LBRACE, + STATE(7121), 1, sym_comment, [211788] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10964), 1, - anon_sym_EQ_GT, - STATE(7270), 1, + ACTIONS(11033), 1, + anon_sym_RPAREN, + STATE(7122), 1, sym_comment, [211801] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10966), 1, - anon_sym_RBRACK, - STATE(7271), 1, + ACTIONS(11035), 1, + anon_sym_COLON, + STATE(7123), 1, sym_comment, [211814] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10968), 1, + ACTIONS(11037), 1, anon_sym_RBRACK, - STATE(7272), 1, + STATE(7124), 1, sym_comment, [211827] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10970), 1, - anon_sym_EQ_GT, - STATE(7273), 1, + ACTIONS(11039), 1, + anon_sym_LBRACE, + STATE(7125), 1, sym_comment, [211840] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10972), 1, - sym_identifier, - STATE(7274), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11041), 1, + anon_sym_symbol, + STATE(7126), 1, sym_comment, [211853] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10974), 1, + ACTIONS(11043), 1, sym_identifier, - STATE(7275), 1, + STATE(7127), 1, sym_comment, [211866] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10976), 1, + ACTIONS(11045), 1, sym_identifier, - STATE(7276), 1, + STATE(7128), 1, sym_comment, [211879] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10978), 1, - anon_sym_RPAREN, - STATE(7277), 1, + ACTIONS(11047), 1, + anon_sym_symbol, + STATE(7129), 1, sym_comment, [211892] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10980), 1, + ACTIONS(11049), 1, sym_identifier, - STATE(7278), 1, + STATE(7130), 1, sym_comment, [211905] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10982), 1, - anon_sym_from, - STATE(7279), 1, + ACTIONS(11051), 1, + anon_sym_readonly, + STATE(7131), 1, sym_comment, [211918] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10984), 1, - anon_sym_RPAREN, - STATE(7280), 1, + ACTIONS(3215), 1, + anon_sym_LBRACE, + STATE(7132), 1, sym_comment, [211931] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6023), 1, - anon_sym_RPAREN, - STATE(7281), 1, + ACTIONS(11053), 1, + sym_identifier, + STATE(7133), 1, sym_comment, [211944] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10986), 1, - anon_sym_COLON, - STATE(7282), 1, + ACTIONS(11055), 1, + anon_sym_EQ_GT, + STATE(7134), 1, sym_comment, [211957] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10988), 1, - sym_number, - STATE(7283), 1, + ACTIONS(11057), 1, + sym_identifier, + STATE(7135), 1, sym_comment, [211970] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10990), 1, + ACTIONS(11059), 1, anon_sym_RPAREN, - STATE(7284), 1, + STATE(7136), 1, sym_comment, [211983] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10992), 1, - anon_sym_EQ_GT, - STATE(7285), 1, + ACTIONS(11061), 1, + sym_number, + STATE(7137), 1, sym_comment, [211996] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10994), 1, - sym_identifier, - STATE(7286), 1, + ACTIONS(11063), 1, + anon_sym_SLASH2, + STATE(7138), 1, sym_comment, [212009] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10996), 1, - sym_identifier, - STATE(7287), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11065), 1, + anon_sym_EQ, + STATE(7139), 1, sym_comment, [212022] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10998), 1, + ACTIONS(11067), 1, sym_identifier, - STATE(7288), 1, + STATE(7140), 1, sym_comment, [212035] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11000), 1, - anon_sym_RBRACK, - STATE(7289), 1, + ACTIONS(11069), 1, + sym_identifier, + STATE(7141), 1, sym_comment, [212048] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11002), 1, + ACTIONS(11071), 1, anon_sym_EQ_GT, - STATE(7290), 1, + STATE(7142), 1, sym_comment, [212061] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11004), 1, - anon_sym_RBRACK, - STATE(7291), 1, + ACTIONS(11073), 1, + anon_sym_EQ_GT, + STATE(7143), 1, sym_comment, [212074] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11006), 1, + ACTIONS(11075), 1, anon_sym_EQ_GT, - STATE(7292), 1, + STATE(7144), 1, sym_comment, [212087] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11008), 1, - sym_identifier, - STATE(7293), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11077), 1, + anon_sym_EQ_GT, + STATE(7145), 1, sym_comment, [212100] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9847), 1, - anon_sym_RBRACK, - STATE(7294), 1, + ACTIONS(11079), 1, + anon_sym_EQ_GT, + STATE(7146), 1, sym_comment, [212113] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11010), 1, - anon_sym_RPAREN, - STATE(7295), 1, + ACTIONS(11081), 1, + anon_sym_EQ_GT, + STATE(7147), 1, sym_comment, [212126] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9450), 1, - anon_sym_RBRACK, - STATE(7296), 1, + ACTIONS(11083), 1, + sym_identifier, + STATE(7148), 1, sym_comment, [212139] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5872), 1, - anon_sym_RBRACK, - STATE(7297), 1, + ACTIONS(11085), 1, + anon_sym_EQ_GT, + STATE(7149), 1, sym_comment, [212152] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11012), 1, + ACTIONS(11087), 1, anon_sym_EQ_GT, - STATE(7298), 1, + STATE(7150), 1, sym_comment, [212165] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(7433), 1, - anon_sym_is, - STATE(7299), 1, + ACTIONS(11089), 1, + anon_sym_RPAREN, + STATE(7151), 1, sym_comment, [212178] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(6025), 1, - anon_sym_RPAREN, - STATE(7300), 1, + ACTIONS(11091), 1, + sym_identifier, + STATE(7152), 1, sym_comment, [212191] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11014), 1, - anon_sym_new, - STATE(7301), 1, + ACTIONS(11093), 1, + anon_sym_symbol, + STATE(7153), 1, sym_comment, [212204] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11016), 1, - anon_sym_RBRACK, - STATE(7302), 1, + ACTIONS(11095), 1, + anon_sym_RPAREN, + STATE(7154), 1, sym_comment, [212217] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11018), 1, - anon_sym_RBRACK, - STATE(7303), 1, + ACTIONS(11097), 1, + sym_number, + STATE(7155), 1, sym_comment, [212230] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11020), 1, - anon_sym_RBRACK, - STATE(7304), 1, + ACTIONS(11099), 1, + sym_identifier, + STATE(7156), 1, sym_comment, [212243] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11022), 1, - anon_sym_RBRACK, - STATE(7305), 1, + ACTIONS(11101), 1, + anon_sym_SLASH2, + STATE(7157), 1, sym_comment, [212256] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11024), 1, - sym_identifier, - STATE(7306), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11103), 1, + anon_sym_EQ, + STATE(7158), 1, sym_comment, [212269] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11026), 1, - anon_sym_RBRACK, - STATE(7307), 1, + ACTIONS(11105), 1, + sym_number, + STATE(7159), 1, sym_comment, [212282] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11028), 1, - anon_sym_LBRACE, - STATE(7308), 1, + ACTIONS(11107), 1, + anon_sym_from, + STATE(7160), 1, sym_comment, [212295] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11030), 1, - anon_sym_RBRACK, - STATE(7309), 1, + ACTIONS(5511), 1, + anon_sym_in, + STATE(7161), 1, sym_comment, [212308] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11032), 1, - anon_sym_RBRACK, - STATE(7310), 1, + ACTIONS(11109), 1, + anon_sym_EQ_GT, + STATE(7162), 1, sym_comment, [212321] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11034), 1, - sym_identifier, - STATE(7311), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11111), 1, + anon_sym_COLON, + STATE(7163), 1, sym_comment, [212334] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11036), 1, - anon_sym_RBRACK, - STATE(7312), 1, + ACTIONS(11113), 1, + anon_sym_EQ, + STATE(7164), 1, sym_comment, [212347] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11038), 1, - anon_sym_RBRACK, - STATE(7313), 1, + ACTIONS(11115), 1, + anon_sym_EQ_GT, + STATE(7165), 1, sym_comment, [212360] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11040), 1, - anon_sym_readonly, - STATE(7314), 1, + ACTIONS(11117), 1, + anon_sym_EQ_GT, + STATE(7166), 1, sym_comment, [212373] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11042), 1, + ACTIONS(11119), 1, anon_sym_EQ_GT, - STATE(7315), 1, + STATE(7167), 1, sym_comment, [212386] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11044), 1, + ACTIONS(11121), 1, anon_sym_RBRACK, - STATE(7316), 1, + STATE(7168), 1, sym_comment, [212399] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11046), 1, - anon_sym_EQ_GT, - STATE(7317), 1, + ACTIONS(5934), 1, + anon_sym_RBRACK, + STATE(7169), 1, sym_comment, [212412] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11048), 1, - sym_identifier, - STATE(7318), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11123), 1, + anon_sym_EQ, + STATE(7170), 1, sym_comment, [212425] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11050), 1, - sym_identifier, - STATE(7319), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(7565), 1, + anon_sym_is, + STATE(7171), 1, sym_comment, [212438] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11052), 1, - sym_identifier, - STATE(7320), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11125), 1, + anon_sym_RBRACK, + STATE(7172), 1, sym_comment, [212451] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11054), 1, - anon_sym_EQ_GT, - STATE(7321), 1, + ACTIONS(11127), 1, + anon_sym_RBRACK, + STATE(7173), 1, sym_comment, [212464] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9883), 1, - anon_sym_RBRACK, - STATE(7322), 1, + ACTIONS(5294), 1, + anon_sym_RPAREN, + STATE(7174), 1, sym_comment, [212477] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11056), 1, - anon_sym_RBRACK, - STATE(7323), 1, + ACTIONS(11129), 1, + anon_sym_EQ, + STATE(7175), 1, sym_comment, [212490] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11058), 1, + ACTIONS(11131), 1, anon_sym_RBRACK, - STATE(7324), 1, + STATE(7176), 1, sym_comment, [212503] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11060), 1, - anon_sym_RBRACK, - STATE(7325), 1, + ACTIONS(11133), 1, + sym_identifier, + STATE(7177), 1, sym_comment, [212516] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11062), 1, - anon_sym_RBRACK, - STATE(7326), 1, + ACTIONS(11135), 1, + anon_sym_as, + STATE(7178), 1, sym_comment, [212529] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11064), 1, - anon_sym_RBRACK, - STATE(7327), 1, + ACTIONS(11137), 1, + anon_sym_SLASH2, + STATE(7179), 1, sym_comment, [212542] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11066), 1, - anon_sym_RBRACK, - STATE(7328), 1, + ACTIONS(11139), 1, + anon_sym_from, + STATE(7180), 1, sym_comment, [212555] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11068), 1, - anon_sym_RBRACK, - STATE(7329), 1, + ACTIONS(11141), 1, + sym_identifier, + STATE(7181), 1, sym_comment, [212568] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11070), 1, - anon_sym_RBRACK, - STATE(7330), 1, + ACTIONS(11143), 1, + sym_identifier, + STATE(7182), 1, sym_comment, [212581] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11072), 1, - anon_sym_RBRACK, - STATE(7331), 1, + ACTIONS(11145), 1, + anon_sym_target, + STATE(7183), 1, sym_comment, [212594] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11074), 1, - anon_sym_RBRACK, - STATE(7332), 1, + ACTIONS(11147), 1, + sym_identifier, + STATE(7184), 1, sym_comment, [212607] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11076), 1, - anon_sym_RBRACK, - STATE(7333), 1, + ACTIONS(11149), 1, + anon_sym_EQ, + STATE(7185), 1, sym_comment, [212620] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11078), 1, - anon_sym_RPAREN, - STATE(7334), 1, + ACTIONS(11151), 1, + anon_sym_RBRACK, + STATE(7186), 1, sym_comment, [212633] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11080), 1, - anon_sym_RBRACK, - STATE(7335), 1, + ACTIONS(11153), 1, + sym_identifier, + STATE(7187), 1, sym_comment, [212646] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11082), 1, + ACTIONS(11155), 1, anon_sym_RBRACK, - STATE(7336), 1, + STATE(7188), 1, sym_comment, [212659] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11084), 1, - anon_sym_RBRACK, - STATE(7337), 1, + ACTIONS(11157), 1, + anon_sym_EQ_GT, + STATE(7189), 1, sym_comment, [212672] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11086), 1, - sym_identifier, - STATE(7338), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11159), 1, + anon_sym_EQ_GT, + STATE(7190), 1, sym_comment, [212685] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11088), 1, - sym_identifier, - STATE(7339), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11161), 1, + anon_sym_RBRACK, + STATE(7191), 1, sym_comment, [212698] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11090), 1, + ACTIONS(11163), 1, anon_sym_RBRACK, - STATE(7340), 1, + STATE(7192), 1, sym_comment, [212711] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11092), 1, - anon_sym_RBRACK, - STATE(7341), 1, + ACTIONS(11165), 1, + anon_sym_EQ_GT, + STATE(7193), 1, sym_comment, [212724] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11094), 1, + ACTIONS(11167), 1, anon_sym_RBRACK, - STATE(7342), 1, + STATE(7194), 1, sym_comment, [212737] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11096), 1, + ACTIONS(11169), 1, anon_sym_RBRACK, - STATE(7343), 1, + STATE(7195), 1, sym_comment, [212750] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5586), 1, - anon_sym_in, - STATE(7344), 1, + ACTIONS(11171), 1, + anon_sym_RBRACK, + STATE(7196), 1, sym_comment, [212763] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11098), 1, - anon_sym_EQ_GT, - STATE(7345), 1, + ACTIONS(11173), 1, + sym_identifier, + STATE(7197), 1, sym_comment, [212776] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11100), 1, - anon_sym_COLON, - STATE(7346), 1, + ACTIONS(11175), 1, + anon_sym_DOT, + STATE(7198), 1, sym_comment, [212789] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11102), 1, + ACTIONS(11177), 1, anon_sym_EQ, - STATE(7347), 1, + STATE(7199), 1, sym_comment, [212802] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11104), 1, - anon_sym_EQ_GT, - STATE(7348), 1, + ACTIONS(5930), 1, + anon_sym_RPAREN, + STATE(7200), 1, sym_comment, [212815] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11106), 1, - anon_sym_EQ_GT, - STATE(7349), 1, + ACTIONS(10016), 1, + anon_sym_RBRACK, + STATE(7201), 1, sym_comment, [212828] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11108), 1, + ACTIONS(11179), 1, anon_sym_EQ_GT, - STATE(7350), 1, + STATE(7202), 1, sym_comment, [212841] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11110), 1, - anon_sym_EQ_GT, - STATE(7351), 1, - sym_comment, - [212854] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11112), 1, - anon_sym_RBRACK, - STATE(7352), 1, - sym_comment, - [212867] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11114), 1, - anon_sym_EQ, - STATE(7353), 1, - sym_comment, - [212880] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11116), 1, - anon_sym_symbol, - STATE(7354), 1, - sym_comment, - [212893] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11118), 1, - anon_sym_EQ_GT, - STATE(7355), 1, - sym_comment, - [212906] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11120), 1, - sym_identifier, - STATE(7356), 1, - sym_comment, - [212919] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11122), 1, - anon_sym_EQ, - STATE(7357), 1, - sym_comment, - [212932] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11124), 1, - anon_sym_EQ, - STATE(7358), 1, - sym_comment, - [212945] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11126), 1, - sym_identifier, - STATE(7359), 1, - sym_comment, - [212958] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11128), 1, - anon_sym_DOT, - STATE(7360), 1, - sym_comment, - [212971] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11130), 1, - anon_sym_as, - STATE(7361), 1, - sym_comment, - [212984] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11132), 1, - anon_sym_RPAREN, - STATE(7362), 1, - sym_comment, - [212997] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11134), 1, - anon_sym_from, - STATE(7363), 1, - sym_comment, - [213010] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(9929), 1, - anon_sym_RBRACE, - STATE(7364), 1, - sym_comment, - [213023] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11136), 1, - anon_sym_RBRACK, - STATE(7365), 1, - sym_comment, - [213036] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11138), 1, - anon_sym_RPAREN, - STATE(7366), 1, - sym_comment, - [213049] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11140), 1, - anon_sym_RPAREN, - STATE(7367), 1, - sym_comment, - [213062] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11142), 1, - anon_sym_RPAREN, - STATE(7368), 1, - sym_comment, - [213075] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11144), 1, - anon_sym_while, - STATE(7369), 1, - sym_comment, - [213088] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11146), 1, - sym_identifier, - STATE(7370), 1, - sym_comment, - [213101] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11148), 1, - sym_identifier, - STATE(7371), 1, - sym_comment, - [213114] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11150), 1, - anon_sym_EQ_GT, - STATE(7372), 1, - sym_comment, - [213127] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11152), 1, - anon_sym_EQ_GT, - STATE(7373), 1, - sym_comment, - [213140] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5439), 1, - anon_sym_in, - STATE(7374), 1, - sym_comment, - [213153] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11154), 1, - anon_sym_EQ, - STATE(7375), 1, - sym_comment, - [213166] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11156), 1, - anon_sym_SLASH2, - STATE(7376), 1, - sym_comment, - [213179] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11158), 1, - sym_identifier, - STATE(7377), 1, - sym_comment, - [213192] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11160), 1, - sym_identifier, - STATE(7378), 1, - sym_comment, - [213205] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11162), 1, - sym_number, - STATE(7379), 1, - sym_comment, - [213218] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11164), 1, - sym_identifier, - STATE(7380), 1, - sym_comment, - [213231] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5084), 1, - anon_sym_RPAREN, - STATE(7381), 1, - sym_comment, - [213244] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11166), 1, - anon_sym_EQ, - STATE(7382), 1, - sym_comment, - [213257] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11168), 1, - anon_sym_EQ_GT, - STATE(7383), 1, - sym_comment, - [213270] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11170), 1, - sym_identifier, - STATE(7384), 1, - sym_comment, - [213283] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11172), 1, - sym_identifier, - STATE(7385), 1, - sym_comment, - [213296] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11174), 1, - sym_identifier, - STATE(7386), 1, - sym_comment, - [213309] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11176), 1, + ACTIONS(11181), 1, sym_identifier, - STATE(7387), 1, + STATE(7203), 1, sym_comment, - [213322] = 4, + [212854] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11178), 1, + ACTIONS(11183), 1, sym_identifier, - STATE(7388), 1, + STATE(7204), 1, sym_comment, - [213335] = 4, + [212867] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11185), 1, + anon_sym_RPAREN, + STATE(7205), 1, + sym_comment, + [212880] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11180), 1, + ACTIONS(11187), 1, sym_identifier, - STATE(7389), 1, + STATE(7206), 1, sym_comment, - [213348] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [212893] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11182), 1, - sym_regex_pattern, - STATE(7390), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11189), 1, + anon_sym_RPAREN, + STATE(7207), 1, sym_comment, - [213361] = 4, - ACTIONS(3), 1, + [212906] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(11191), 1, + anon_sym_while, + STATE(7208), 1, + sym_comment, + [212919] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11184), 1, - sym_identifier, - STATE(7391), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11193), 1, + anon_sym_RPAREN, + STATE(7209), 1, sym_comment, - [213374] = 4, + [212932] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11186), 1, + ACTIONS(11195), 1, sym_identifier, - STATE(7392), 1, + STATE(7210), 1, sym_comment, - [213387] = 4, + [212945] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11188), 1, + ACTIONS(11197), 1, sym_identifier, - STATE(7393), 1, - sym_comment, - [213400] = 4, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11190), 1, - anon_sym_RPAREN, - STATE(7394), 1, + STATE(7211), 1, sym_comment, - [213413] = 4, + [212958] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11192), 1, + ACTIONS(11199), 1, anon_sym_EQ, - STATE(7395), 1, + STATE(7212), 1, sym_comment, - [213426] = 4, + [212971] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8711), 1, + ACTIONS(8640), 1, anon_sym_EQ, - STATE(7396), 1, + STATE(7213), 1, sym_comment, - [213439] = 4, + [212984] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9601), 1, - anon_sym_RBRACK, - STATE(7397), 1, + ACTIONS(11201), 1, + anon_sym_RPAREN, + STATE(7214), 1, sym_comment, - [213452] = 4, + [212997] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11194), 1, - anon_sym_EQ_GT, - STATE(7398), 1, + ACTIONS(11203), 1, + sym_number, + STATE(7215), 1, sym_comment, - [213465] = 4, + [213010] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11196), 1, + ACTIONS(11205), 1, sym_identifier, - STATE(7399), 1, + STATE(7216), 1, sym_comment, - [213478] = 4, + [213023] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11198), 1, + ACTIONS(11207), 1, sym_identifier, - STATE(7400), 1, + STATE(7217), 1, sym_comment, - [213491] = 4, + [213036] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10001), 1, + ACTIONS(9560), 1, anon_sym_RBRACE, - STATE(7401), 1, + STATE(7218), 1, sym_comment, - [213504] = 4, + [213049] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11200), 1, - anon_sym_EQ_GT, - STATE(7402), 1, + ACTIONS(5203), 1, + anon_sym_RPAREN, + STATE(7219), 1, sym_comment, - [213517] = 4, + [213062] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11202), 1, + ACTIONS(11209), 1, sym_identifier, - STATE(7403), 1, + STATE(7220), 1, sym_comment, - [213530] = 4, + [213075] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11204), 1, - anon_sym_EQ_GT, - STATE(7404), 1, + ACTIONS(11211), 1, + anon_sym_RBRACK, + STATE(7221), 1, sym_comment, - [213543] = 4, + [213088] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11206), 1, - anon_sym_EQ_GT, - STATE(7405), 1, + ACTIONS(5221), 1, + anon_sym_RPAREN, + STATE(7222), 1, sym_comment, - [213556] = 4, + [213101] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11208), 1, - anon_sym_EQ_GT, - STATE(7406), 1, + ACTIONS(11213), 1, + anon_sym_RBRACK, + STATE(7223), 1, sym_comment, - [213569] = 4, + [213114] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11210), 1, - anon_sym_RPAREN, - STATE(7407), 1, + ACTIONS(11215), 1, + anon_sym_RBRACK, + STATE(7224), 1, sym_comment, - [213582] = 4, + [213127] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5985), 1, - anon_sym_is, - STATE(7408), 1, + ACTIONS(11217), 1, + sym_identifier, + STATE(7225), 1, sym_comment, - [213595] = 4, + [213140] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11212), 1, + ACTIONS(11219), 1, anon_sym_class, - STATE(7409), 1, + STATE(7226), 1, sym_comment, - [213608] = 4, + [213153] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5942), 1, - anon_sym_RPAREN, - STATE(7410), 1, + ACTIONS(11221), 1, + anon_sym_EQ_GT, + STATE(7227), 1, sym_comment, - [213621] = 4, + [213166] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11214), 1, + ACTIONS(11223), 1, anon_sym_RBRACK, - STATE(7411), 1, + STATE(7228), 1, sym_comment, - [213634] = 4, + [213179] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11216), 1, - anon_sym_RBRACK, - STATE(7412), 1, + ACTIONS(11225), 1, + sym_identifier, + STATE(7229), 1, sym_comment, - [213647] = 4, + [213192] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, + ACTIONS(11227), 1, + sym_identifier, + STATE(7230), 1, + sym_comment, + [213205] = 4, + ACTIONS(3), 1, aux_sym_comment_token1, - ACTIONS(11218), 1, - anon_sym_RBRACK, - STATE(7413), 1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11229), 1, + sym_regex_pattern, + STATE(7231), 1, sym_comment, - [213660] = 4, + [213218] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11220), 1, + ACTIONS(11231), 1, anon_sym_RBRACK, - STATE(7414), 1, + STATE(7232), 1, sym_comment, - [213673] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213231] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11222), 1, - sym_identifier, - STATE(7415), 1, - sym_comment, - [213686] = 4, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11224), 1, - sym_identifier, - STATE(7416), 1, + ACTIONS(11233), 1, + anon_sym_RBRACK, + STATE(7233), 1, sym_comment, - [213699] = 4, + [213244] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11226), 1, - anon_sym_RBRACK, - STATE(7417), 1, + ACTIONS(11235), 1, + anon_sym_EQ, + STATE(7234), 1, sym_comment, - [213712] = 4, + [213257] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11228), 1, + ACTIONS(11237), 1, anon_sym_RBRACK, - STATE(7418), 1, + STATE(7235), 1, sym_comment, - [213725] = 4, + [213270] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11230), 1, + ACTIONS(11239), 1, anon_sym_RBRACK, - STATE(7419), 1, + STATE(7236), 1, sym_comment, - [213738] = 4, + [213283] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11232), 1, + ACTIONS(11241), 1, sym_identifier, - STATE(7420), 1, + STATE(7237), 1, sym_comment, - [213751] = 4, + [213296] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11234), 1, + ACTIONS(11243), 1, anon_sym_RBRACK, - STATE(7421), 1, + STATE(7238), 1, sym_comment, - [213764] = 4, + [213309] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(10144), 1, + ACTIONS(9397), 1, sym_identifier, - STATE(7422), 1, + STATE(7239), 1, sym_comment, - [213777] = 4, + [213322] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11236), 1, - anon_sym_RBRACK, - STATE(7423), 1, + ACTIONS(11245), 1, + anon_sym_EQ_GT, + STATE(7240), 1, sym_comment, - [213790] = 4, + [213335] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11238), 1, + ACTIONS(11247), 1, anon_sym_EQ_GT, - STATE(7424), 1, + STATE(7241), 1, sym_comment, - [213803] = 4, + [213348] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11240), 1, - anon_sym_symbol, - STATE(7425), 1, + ACTIONS(5559), 1, + anon_sym_in, + STATE(7242), 1, sym_comment, - [213816] = 4, + [213361] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11242), 1, - anon_sym_RBRACK, - STATE(7426), 1, + ACTIONS(11249), 1, + anon_sym_EQ_GT, + STATE(7243), 1, sym_comment, - [213829] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213374] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11244), 1, - sym_identifier, - STATE(7427), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11251), 1, + anon_sym_EQ_GT, + STATE(7244), 1, sym_comment, - [213842] = 4, + [213387] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11246), 1, + ACTIONS(11253), 1, anon_sym_EQ_GT, - STATE(7428), 1, + STATE(7245), 1, sym_comment, - [213855] = 4, + [213400] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11248), 1, + ACTIONS(11255), 1, anon_sym_DOT, - STATE(7429), 1, + STATE(7246), 1, sym_comment, - [213868] = 4, + [213413] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11250), 1, - sym_number, - STATE(7430), 1, + ACTIONS(4967), 1, + anon_sym_is, + STATE(7247), 1, sym_comment, - [213881] = 4, + [213426] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11252), 1, + ACTIONS(11257), 1, anon_sym_symbol, - STATE(7431), 1, + STATE(7248), 1, sym_comment, - [213894] = 4, + [213439] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6381), 1, + ACTIONS(6471), 1, anon_sym_in, - STATE(7432), 1, + STATE(7249), 1, sym_comment, - [213907] = 4, + [213452] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11254), 1, + ACTIONS(11259), 1, anon_sym_EQ_GT, - STATE(7433), 1, + STATE(7250), 1, sym_comment, - [213920] = 4, + [213465] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11256), 1, + ACTIONS(11261), 1, sym_identifier, - STATE(7434), 1, + STATE(7251), 1, sym_comment, - [213933] = 4, + [213478] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11258), 1, + ACTIONS(11263), 1, anon_sym_EQ_GT, - STATE(7435), 1, + STATE(7252), 1, sym_comment, - [213946] = 4, + [213491] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11260), 1, + ACTIONS(11265), 1, anon_sym_EQ_GT, - STATE(7436), 1, + STATE(7253), 1, sym_comment, - [213959] = 4, + [213504] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11262), 1, + ACTIONS(11267), 1, anon_sym_EQ_GT, - STATE(7437), 1, + STATE(7254), 1, sym_comment, - [213972] = 4, + [213517] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11264), 1, + ACTIONS(11269), 1, anon_sym_new, - STATE(7438), 1, + STATE(7255), 1, sym_comment, - [213985] = 4, + [213530] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11266), 1, - anon_sym_EQ_GT, - STATE(7439), 1, + ACTIONS(5939), 1, + anon_sym_RPAREN, + STATE(7256), 1, sym_comment, - [213998] = 4, + [213543] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11268), 1, + ACTIONS(11271), 1, sym_number, - STATE(7440), 1, + STATE(7257), 1, sym_comment, - [214011] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213556] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11270), 1, - sym_identifier, - STATE(7441), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11273), 1, + anon_sym_RBRACK, + STATE(7258), 1, sym_comment, - [214024] = 4, + [213569] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11272), 1, + ACTIONS(11275), 1, anon_sym_SLASH2, - STATE(7442), 1, + STATE(7259), 1, sym_comment, - [214037] = 4, + [213582] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11274), 1, + ACTIONS(11277), 1, anon_sym_EQ, - STATE(7443), 1, + STATE(7260), 1, sym_comment, - [214050] = 4, + [213595] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11276), 1, + ACTIONS(11279), 1, anon_sym_target, - STATE(7444), 1, + STATE(7261), 1, sym_comment, - [214063] = 4, + [213608] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11278), 1, + ACTIONS(11281), 1, anon_sym_EQ, - STATE(7445), 1, + STATE(7262), 1, sym_comment, - [214076] = 4, + [213621] = 4, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11283), 1, + anon_sym_RBRACK, + STATE(7263), 1, + sym_comment, + [213634] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11280), 1, + ACTIONS(11285), 1, sym_identifier, - STATE(7446), 1, + STATE(7264), 1, sym_comment, - [214089] = 4, + [213647] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11282), 1, - anon_sym_RBRACK, - STATE(7447), 1, + ACTIONS(11287), 1, + anon_sym_EQ_GT, + STATE(7265), 1, sym_comment, - [214102] = 4, + [213660] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11284), 1, + ACTIONS(9298), 1, anon_sym_EQ_GT, - STATE(7448), 1, + STATE(7266), 1, sym_comment, - [214115] = 4, + [213673] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9237), 1, + ACTIONS(9300), 1, anon_sym_EQ_GT, - STATE(7449), 1, + STATE(7267), 1, sym_comment, - [214128] = 4, + [213686] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9243), 1, - anon_sym_EQ_GT, - STATE(7450), 1, + ACTIONS(9488), 1, + anon_sym_LBRACE, + STATE(7268), 1, sym_comment, - [214141] = 4, + [213699] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(10071), 1, - anon_sym_LBRACE, - STATE(7451), 1, + ACTIONS(11289), 1, + sym_identifier, + STATE(7269), 1, sym_comment, - [214154] = 4, + [213712] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11286), 1, + ACTIONS(11291), 1, anon_sym_RBRACK, - STATE(7452), 1, + STATE(7270), 1, sym_comment, - [214167] = 4, + [213725] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11288), 1, + ACTIONS(11293), 1, anon_sym_RBRACK, - STATE(7453), 1, - sym_comment, - [214180] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11290), 1, - anon_sym_SLASH2, - STATE(7454), 1, + STATE(7271), 1, sym_comment, - [214193] = 4, + [213738] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11292), 1, + ACTIONS(8119), 1, anon_sym_EQ, - STATE(7455), 1, + STATE(7272), 1, sym_comment, - [214206] = 4, + [213751] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11294), 1, - anon_sym_RBRACK, - STATE(7456), 1, + ACTIONS(11295), 1, + anon_sym_EQ_GT, + STATE(7273), 1, sym_comment, - [214219] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [213764] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11296), 1, - sym_identifier, - STATE(7457), 1, - sym_comment, - [214232] = 4, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(11297), 1, + anon_sym_EQ_GT, + STATE(7274), 1, + sym_comment, + [213777] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11298), 1, - sym_identifier, - STATE(7458), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11299), 1, + anon_sym_EQ_GT, + STATE(7275), 1, sym_comment, - [214245] = 4, + [213790] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11300), 1, + ACTIONS(11301), 1, anon_sym_class, - STATE(7459), 1, + STATE(7276), 1, sym_comment, - [214258] = 4, + [213803] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11302), 1, + ACTIONS(11303), 1, anon_sym_namespace, - STATE(7460), 1, + STATE(7277), 1, sym_comment, - [214271] = 4, + [213816] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11304), 1, + ACTIONS(11305), 1, anon_sym_RBRACK, - STATE(7461), 1, + STATE(7278), 1, sym_comment, - [214284] = 4, + [213829] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11306), 1, - anon_sym_RBRACK, - STATE(7462), 1, + ACTIONS(11307), 1, + sym_identifier, + STATE(7279), 1, sym_comment, - [214297] = 4, + [213842] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11308), 1, - anon_sym_RBRACK, - STATE(7463), 1, + ACTIONS(11309), 1, + sym_identifier, + STATE(7280), 1, sym_comment, - [214310] = 4, + [213855] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11310), 1, + ACTIONS(11311), 1, anon_sym_RBRACK, - STATE(7464), 1, + STATE(7281), 1, sym_comment, - [214323] = 4, + [213868] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11312), 1, + ACTIONS(11313), 1, anon_sym_RBRACK, - STATE(7465), 1, + STATE(7282), 1, sym_comment, - [214336] = 4, + [213881] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11314), 1, - anon_sym_RBRACK, - STATE(7466), 1, + ACTIONS(7438), 1, + anon_sym_is, + STATE(7283), 1, sym_comment, - [214349] = 4, + [213894] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11316), 1, - anon_sym_target, - STATE(7467), 1, + ACTIONS(11315), 1, + anon_sym_RBRACK, + STATE(7284), 1, sym_comment, - [214362] = 4, + [213907] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11318), 1, - anon_sym_EQ_GT, - STATE(7468), 1, + ACTIONS(5105), 1, + anon_sym_in, + STATE(7285), 1, sym_comment, - [214375] = 4, + [213920] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11320), 1, + ACTIONS(11317), 1, anon_sym_new, - STATE(7469), 1, + STATE(7286), 1, sym_comment, - [214388] = 4, + [213933] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9623), 1, + ACTIONS(9913), 1, sym_identifier, - STATE(7470), 1, + STATE(7287), 1, sym_comment, - [214401] = 4, + [213946] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11322), 1, + ACTIONS(11319), 1, anon_sym_class, - STATE(7471), 1, + STATE(7288), 1, sym_comment, - [214414] = 4, + [213959] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11324), 1, - anon_sym_EQ, - STATE(7472), 1, + ACTIONS(11321), 1, + anon_sym_RBRACK, + STATE(7289), 1, sym_comment, - [214427] = 4, + [213972] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11326), 1, - anon_sym_EQ_GT, - STATE(7473), 1, + ACTIONS(11323), 1, + anon_sym_RBRACK, + STATE(7290), 1, sym_comment, - [214440] = 4, + [213985] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11328), 1, + ACTIONS(11325), 1, anon_sym_EQ, - STATE(7474), 1, + STATE(7291), 1, sym_comment, - [214453] = 4, + [213998] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11330), 1, - anon_sym_RPAREN, - STATE(7475), 1, + ACTIONS(11327), 1, + anon_sym_RBRACK, + STATE(7292), 1, sym_comment, - [214466] = 4, + [214011] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11332), 1, + ACTIONS(11329), 1, sym_identifier, - STATE(7476), 1, + STATE(7293), 1, sym_comment, - [214479] = 4, + [214024] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11334), 1, + ACTIONS(11331), 1, anon_sym_EQ, - STATE(7477), 1, + STATE(7294), 1, sym_comment, - [214492] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214037] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11336), 1, - sym_identifier, - STATE(7478), 1, - sym_comment, - [214505] = 4, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11338), 1, - sym_identifier, - STATE(7479), 1, + ACTIONS(11333), 1, + anon_sym_RBRACK, + STATE(7295), 1, sym_comment, - [214518] = 4, + [214050] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11340), 1, + ACTIONS(11335), 1, sym_identifier, - STATE(7480), 1, + STATE(7296), 1, sym_comment, - [214531] = 4, + [214063] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11342), 1, - anon_sym_EQ_GT, - STATE(7481), 1, + ACTIONS(11337), 1, + anon_sym_RBRACK, + STATE(7297), 1, sym_comment, - [214544] = 4, + [214076] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11344), 1, - anon_sym_SLASH2, - STATE(7482), 1, + ACTIONS(11339), 1, + sym_identifier, + STATE(7298), 1, sym_comment, - [214557] = 4, + [214089] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11341), 1, + sym_identifier, + STATE(7299), 1, + sym_comment, + [214102] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11346), 1, + ACTIONS(11343), 1, anon_sym_COLON, - STATE(7483), 1, + STATE(7300), 1, sym_comment, - [214570] = 4, + [214115] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5399), 1, - anon_sym_RPAREN, - STATE(7484), 1, + ACTIONS(11345), 1, + anon_sym_RBRACK, + STATE(7301), 1, sym_comment, - [214583] = 4, + [214128] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11348), 1, + ACTIONS(11347), 1, anon_sym_while, - STATE(7485), 1, + STATE(7302), 1, sym_comment, - [214596] = 4, + [214141] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11350), 1, - anon_sym_EQ_GT, - STATE(7486), 1, + ACTIONS(11349), 1, + anon_sym_RBRACK, + STATE(7303), 1, sym_comment, - [214609] = 4, + [214154] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11352), 1, - anon_sym_EQ_GT, - STATE(7487), 1, + ACTIONS(11351), 1, + anon_sym_RBRACK, + STATE(7304), 1, sym_comment, - [214622] = 4, + [214167] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5323), 1, + ACTIONS(5407), 1, anon_sym_RPAREN, - STATE(7488), 1, + STATE(7305), 1, sym_comment, - [214635] = 4, + [214180] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11354), 1, - anon_sym_EQ_GT, - STATE(7489), 1, + ACTIONS(11353), 1, + anon_sym_RBRACK, + STATE(7306), 1, sym_comment, - [214648] = 4, + [214193] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(6277), 1, - anon_sym_in, - STATE(7490), 1, + ACTIONS(11355), 1, + anon_sym_RBRACK, + STATE(7307), 1, sym_comment, - [214661] = 4, + [214206] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11356), 1, - anon_sym_EQ, - STATE(7491), 1, + ACTIONS(11357), 1, + anon_sym_RBRACK, + STATE(7308), 1, sym_comment, - [214674] = 4, + [214219] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11358), 1, + ACTIONS(11359), 1, anon_sym_EQ, - STATE(7492), 1, + STATE(7309), 1, sym_comment, - [214687] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214232] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11360), 1, - sym_identifier, - STATE(7493), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11361), 1, + anon_sym_RBRACK, + STATE(7310), 1, sym_comment, - [214700] = 4, + [214245] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11362), 1, - anon_sym_RPAREN, - STATE(7494), 1, + ACTIONS(11363), 1, + anon_sym_EQ_GT, + STATE(7311), 1, sym_comment, - [214713] = 4, + [214258] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11364), 1, + ACTIONS(11365), 1, anon_sym_class, - STATE(7495), 1, + STATE(7312), 1, sym_comment, - [214726] = 4, + [214271] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11366), 1, + ACTIONS(11367), 1, anon_sym_namespace, - STATE(7496), 1, + STATE(7313), 1, sym_comment, - [214739] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214284] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11368), 1, - sym_identifier, - STATE(7497), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11369), 1, + anon_sym_RPAREN, + STATE(7314), 1, sym_comment, - [214752] = 4, + [214297] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11370), 1, + ACTIONS(11371), 1, sym_identifier, - STATE(7498), 1, + STATE(7315), 1, sym_comment, - [214765] = 4, + [214310] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11372), 1, - sym_number, - STATE(7499), 1, + ACTIONS(11373), 1, + anon_sym_RBRACK, + STATE(7316), 1, sym_comment, - [214778] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214323] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11374), 1, - sym_identifier, - STATE(7500), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11375), 1, + anon_sym_RBRACK, + STATE(7317), 1, sym_comment, - [214791] = 4, + [214336] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11376), 1, + ACTIONS(11377), 1, sym_identifier, - STATE(7501), 1, + STATE(7318), 1, sym_comment, - [214804] = 4, + [214349] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11378), 1, - anon_sym_symbol, - STATE(7502), 1, + ACTIONS(11379), 1, + sym_identifier, + STATE(7319), 1, sym_comment, - [214817] = 4, + [214362] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11380), 1, - anon_sym_EQ_GT, - STATE(7503), 1, + ACTIONS(11381), 1, + anon_sym_RBRACK, + STATE(7320), 1, sym_comment, - [214830] = 4, + [214375] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11382), 1, + ACTIONS(11383), 1, anon_sym_new, - STATE(7504), 1, + STATE(7321), 1, sym_comment, - [214843] = 4, + [214388] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9679), 1, + ACTIONS(9823), 1, sym_identifier, - STATE(7505), 1, + STATE(7322), 1, sym_comment, - [214856] = 4, + [214401] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11384), 1, + ACTIONS(11385), 1, anon_sym_class, - STATE(7506), 1, + STATE(7323), 1, sym_comment, - [214869] = 4, + [214414] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5187), 1, + ACTIONS(5358), 1, anon_sym_RPAREN, - STATE(7507), 1, + STATE(7324), 1, sym_comment, - [214882] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214427] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11386), 1, - sym_identifier, - STATE(7508), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11387), 1, + anon_sym_RPAREN, + STATE(7325), 1, sym_comment, - [214895] = 4, + [214440] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11388), 1, + ACTIONS(11389), 1, anon_sym_EQ, - STATE(7509), 1, + STATE(7326), 1, sym_comment, - [214908] = 4, + [214453] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11390), 1, + ACTIONS(11391), 1, sym_identifier, - STATE(7510), 1, + STATE(7327), 1, sym_comment, - [214921] = 4, + [214466] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11392), 1, + ACTIONS(11393), 1, sym_identifier, - STATE(7511), 1, + STATE(7328), 1, sym_comment, - [214934] = 4, + [214479] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11394), 1, + ACTIONS(11395), 1, anon_sym_EQ, - STATE(7512), 1, + STATE(7329), 1, sym_comment, - [214947] = 4, + [214492] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(5217), 1, - anon_sym_RPAREN, - STATE(7513), 1, + ACTIONS(11397), 1, + sym_identifier, + STATE(7330), 1, sym_comment, - [214960] = 4, + [214505] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11396), 1, + ACTIONS(11399), 1, sym_identifier, - STATE(7514), 1, + STATE(7331), 1, sym_comment, - [214973] = 4, + [214518] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(10296), 1, + ACTIONS(10265), 1, anon_sym_from, - STATE(7515), 1, + STATE(7332), 1, sym_comment, - [214986] = 4, + [214531] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11398), 1, - anon_sym_RPAREN, - STATE(7516), 1, + ACTIONS(11401), 1, + anon_sym_RBRACK, + STATE(7333), 1, sym_comment, - [214999] = 4, + [214544] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11400), 1, + ACTIONS(11403), 1, anon_sym_COLON, - STATE(7517), 1, + STATE(7334), 1, sym_comment, - [215012] = 4, + [214557] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9935), 1, + ACTIONS(11405), 1, anon_sym_RBRACK, - STATE(7518), 1, + STATE(7335), 1, sym_comment, - [215025] = 4, + [214570] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11402), 1, - anon_sym_EQ_GT, - STATE(7519), 1, + ACTIONS(11407), 1, + anon_sym_RBRACK, + STATE(7336), 1, sym_comment, - [215038] = 4, + [214583] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11404), 1, + ACTIONS(11409), 1, anon_sym_as, - STATE(7520), 1, + STATE(7337), 1, sym_comment, - [215051] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214596] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11406), 1, - sym_identifier, - STATE(7521), 1, - sym_comment, - [215064] = 4, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(11411), 1, + anon_sym_RBRACK, + STATE(7338), 1, + sym_comment, + [214609] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11408), 1, - sym_identifier, - STATE(7522), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11413), 1, + anon_sym_RBRACK, + STATE(7339), 1, sym_comment, - [215077] = 4, + [214622] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11410), 1, + ACTIONS(11415), 1, anon_sym_class, - STATE(7523), 1, + STATE(7340), 1, sym_comment, - [215090] = 4, + [214635] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11412), 1, + ACTIONS(11417), 1, anon_sym_namespace, - STATE(7524), 1, + STATE(7341), 1, sym_comment, - [215103] = 4, + [214648] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11414), 1, - anon_sym_EQ_GT, - STATE(7525), 1, + ACTIONS(5077), 1, + anon_sym_RPAREN, + STATE(7342), 1, sym_comment, - [215116] = 4, + [214661] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11416), 1, - anon_sym_RPAREN, - STATE(7526), 1, + ACTIONS(11419), 1, + anon_sym_RBRACK, + STATE(7343), 1, sym_comment, - [215129] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [214674] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11418), 1, - sym_identifier, - STATE(7527), 1, - sym_comment, - [215142] = 4, - ACTIONS(3), 1, + ACTIONS(2785), 1, aux_sym_comment_token1, + ACTIONS(11421), 1, + anon_sym_RBRACK, + STATE(7344), 1, + sym_comment, + [214687] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11420), 1, - sym_identifier, - STATE(7528), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11423), 1, + anon_sym_RBRACK, + STATE(7345), 1, sym_comment, - [215155] = 4, + [214700] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11422), 1, - anon_sym_EQ_GT, - STATE(7529), 1, + ACTIONS(11425), 1, + anon_sym_RBRACK, + STATE(7346), 1, sym_comment, - [215168] = 4, + [214713] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, + ACTIONS(5), 1, + sym_html_comment, + ACTIONS(11427), 1, + sym_identifier, + STATE(7347), 1, + sym_comment, + [214726] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11424), 1, - anon_sym_EQ_GT, - STATE(7530), 1, + ACTIONS(11429), 1, + anon_sym_RBRACK, + STATE(7348), 1, sym_comment, - [215181] = 4, + [214739] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11426), 1, + ACTIONS(11431), 1, anon_sym_new, - STATE(7531), 1, + STATE(7349), 1, sym_comment, - [215194] = 4, + [214752] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9731), 1, + ACTIONS(9781), 1, sym_identifier, - STATE(7532), 1, + STATE(7350), 1, sym_comment, - [215207] = 4, + [214765] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11428), 1, + ACTIONS(11433), 1, anon_sym_class, - STATE(7533), 1, + STATE(7351), 1, sym_comment, - [215220] = 4, + [214778] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11430), 1, + ACTIONS(11435), 1, anon_sym_EQ, - STATE(7534), 1, - sym_comment, - [215233] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, - ACTIONS(5), 1, - sym_html_comment, - ACTIONS(11432), 1, - sym_identifier, - STATE(7535), 1, + STATE(7352), 1, sym_comment, - [215246] = 4, + [214791] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(4977), 1, - anon_sym_is, - STATE(7536), 1, + ACTIONS(11437), 1, + anon_sym_RBRACK, + STATE(7353), 1, sym_comment, - [215259] = 4, + [214804] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11434), 1, + ACTIONS(11439), 1, anon_sym_EQ, - STATE(7537), 1, + STATE(7354), 1, sym_comment, - [215272] = 4, + [214817] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5280), 1, - anon_sym_RPAREN, - STATE(7538), 1, + ACTIONS(11441), 1, + anon_sym_RBRACK, + STATE(7355), 1, sym_comment, - [215285] = 4, + [214830] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11436), 1, + ACTIONS(11443), 1, sym_identifier, - STATE(7539), 1, + STATE(7356), 1, sym_comment, - [215298] = 4, + [214843] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11438), 1, + ACTIONS(11445), 1, anon_sym_EQ, - STATE(7540), 1, + STATE(7357), 1, sym_comment, - [215311] = 4, + [214856] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5940), 1, - anon_sym_RPAREN, - STATE(7541), 1, + ACTIONS(11447), 1, + anon_sym_RBRACK, + STATE(7358), 1, sym_comment, - [215324] = 4, + [214869] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11440), 1, + ACTIONS(11449), 1, sym_identifier, - STATE(7542), 1, + STATE(7359), 1, sym_comment, - [215337] = 4, + [214882] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11442), 1, + ACTIONS(11451), 1, anon_sym_RBRACK, - STATE(7543), 1, + STATE(7360), 1, sym_comment, - [215350] = 4, + [214895] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11444), 1, + ACTIONS(11453), 1, anon_sym_RBRACK, - STATE(7544), 1, + STATE(7361), 1, sym_comment, - [215363] = 4, + [214908] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11446), 1, + ACTIONS(11455), 1, anon_sym_COLON, - STATE(7545), 1, + STATE(7362), 1, sym_comment, - [215376] = 4, + [214921] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11448), 1, + ACTIONS(11457), 1, anon_sym_RBRACK, - STATE(7546), 1, + STATE(7363), 1, sym_comment, - [215389] = 4, + [214934] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3175), 1, - anon_sym_LBRACE, - STATE(7547), 1, + ACTIONS(11459), 1, + anon_sym_EQ_GT, + STATE(7364), 1, sym_comment, - [215402] = 4, + [214947] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11450), 1, + ACTIONS(11461), 1, anon_sym_class, - STATE(7548), 1, + STATE(7365), 1, sym_comment, - [215415] = 4, + [214960] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11452), 1, + ACTIONS(11463), 1, anon_sym_namespace, - STATE(7549), 1, + STATE(7366), 1, sym_comment, - [215428] = 4, + [214973] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11454), 1, + ACTIONS(11465), 1, anon_sym_RBRACK, - STATE(7550), 1, + STATE(7367), 1, sym_comment, - [215441] = 4, + [214986] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(3165), 1, - anon_sym_LBRACE, - STATE(7551), 1, + ACTIONS(11467), 1, + anon_sym_RBRACK, + STATE(7368), 1, sym_comment, - [215454] = 4, + [214999] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11456), 1, + ACTIONS(11469), 1, anon_sym_RBRACK, - STATE(7552), 1, + STATE(7369), 1, sym_comment, - [215467] = 4, + [215012] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11458), 1, + ACTIONS(11471), 1, anon_sym_RBRACK, - STATE(7553), 1, + STATE(7370), 1, sym_comment, - [215480] = 4, + [215025] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11460), 1, - anon_sym_RBRACK, - STATE(7554), 1, + ACTIONS(11473), 1, + anon_sym_EQ, + STATE(7371), 1, sym_comment, - [215493] = 4, + [215038] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(9360), 1, + ACTIONS(9724), 1, sym_identifier, - STATE(7555), 1, + STATE(7372), 1, sym_comment, - [215506] = 4, + [215051] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11462), 1, + ACTIONS(11475), 1, anon_sym_class, - STATE(7556), 1, + STATE(7373), 1, sym_comment, - [215519] = 4, + [215064] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11464), 1, + ACTIONS(11477), 1, anon_sym_function, - STATE(7557), 1, + STATE(7374), 1, sym_comment, - [215532] = 4, + [215077] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11466), 1, + ACTIONS(11479), 1, sym_identifier, - STATE(7558), 1, + STATE(7375), 1, sym_comment, - [215545] = 4, + [215090] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11468), 1, + ACTIONS(11481), 1, anon_sym_EQ, - STATE(7559), 1, + STATE(7376), 1, sym_comment, - [215558] = 4, + [215103] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11470), 1, - anon_sym_RBRACK, - STATE(7560), 1, + ACTIONS(11483), 1, + anon_sym_EQ_GT, + STATE(7377), 1, sym_comment, - [215571] = 4, + [215116] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11472), 1, + ACTIONS(11485), 1, sym_identifier, - STATE(7561), 1, + STATE(7378), 1, sym_comment, - [215584] = 4, + [215129] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11474), 1, + ACTIONS(11487), 1, anon_sym_EQ, - STATE(7562), 1, + STATE(7379), 1, sym_comment, - [215597] = 4, + [215142] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8379), 1, + ACTIONS(8165), 1, sym_identifier, - STATE(7563), 1, + STATE(7380), 1, sym_comment, - [215610] = 4, + [215155] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11476), 1, + ACTIONS(11489), 1, sym_identifier, - STATE(7564), 1, + STATE(7381), 1, sym_comment, - [215623] = 4, + [215168] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11478), 1, + ACTIONS(11491), 1, anon_sym_COLON, - STATE(7565), 1, + STATE(7382), 1, sym_comment, - [215636] = 4, + [215181] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11480), 1, + ACTIONS(11493), 1, anon_sym_namespace, - STATE(7566), 1, + STATE(7383), 1, sym_comment, - [215649] = 4, + [215194] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11482), 1, + ACTIONS(11495), 1, anon_sym_RBRACK, - STATE(7567), 1, + STATE(7384), 1, sym_comment, - [215662] = 4, + [215207] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(8107), 1, - anon_sym_EQ, - STATE(7568), 1, + ACTIONS(11497), 1, + anon_sym_RBRACK, + STATE(7385), 1, sym_comment, - [215675] = 4, + [215220] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11484), 1, - anon_sym_RBRACK, - STATE(7569), 1, + ACTIONS(5387), 1, + anon_sym_RPAREN, + STATE(7386), 1, sym_comment, - [215688] = 4, + [215233] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8544), 1, + ACTIONS(8541), 1, sym_identifier, - STATE(7570), 1, + STATE(7387), 1, sym_comment, - [215701] = 4, + [215246] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11486), 1, + ACTIONS(11499), 1, anon_sym_function, - STATE(7571), 1, + STATE(7388), 1, sym_comment, - [215714] = 4, + [215259] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11488), 1, - anon_sym_EQ_GT, - STATE(7572), 1, + ACTIONS(11501), 1, + anon_sym_RBRACK, + STATE(7389), 1, sym_comment, - [215727] = 4, + [215272] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11490), 1, - anon_sym_EQ_GT, - STATE(7573), 1, + ACTIONS(5912), 1, + anon_sym_in, + STATE(7390), 1, sym_comment, - [215740] = 4, + [215285] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(9901), 1, + ACTIONS(9600), 1, anon_sym_EQ, - STATE(7574), 1, + STATE(7391), 1, sym_comment, - [215753] = 4, + [215298] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11492), 1, + ACTIONS(11503), 1, anon_sym_EQ_GT, - STATE(7575), 1, + STATE(7392), 1, sym_comment, - [215766] = 4, + [215311] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5112), 1, - anon_sym_in, - STATE(7576), 1, + ACTIONS(11505), 1, + anon_sym_RBRACK, + STATE(7393), 1, sym_comment, - [215779] = 4, + [215324] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11494), 1, + ACTIONS(11507), 1, ts_builtin_sym_end, - STATE(7577), 1, + STATE(7394), 1, sym_comment, - [215792] = 4, + [215337] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11496), 1, + ACTIONS(11509), 1, sym_identifier, - STATE(7578), 1, + STATE(7395), 1, sym_comment, - [215805] = 4, + [215350] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11498), 1, + ACTIONS(11511), 1, anon_sym_RBRACK, - STATE(7579), 1, + STATE(7396), 1, sym_comment, - [215818] = 4, + [215363] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11500), 1, + ACTIONS(11513), 1, sym_identifier, - STATE(7580), 1, + STATE(7397), 1, sym_comment, - [215831] = 4, + [215376] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11502), 1, + ACTIONS(11515), 1, anon_sym_class, - STATE(7581), 1, + STATE(7398), 1, sym_comment, - [215844] = 4, + [215389] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11504), 1, + ACTIONS(11517), 1, anon_sym_RBRACK, - STATE(7582), 1, + STATE(7399), 1, sym_comment, - [215857] = 4, + [215402] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11506), 1, + ACTIONS(11519), 1, sym_identifier, - STATE(7583), 1, + STATE(7400), 1, sym_comment, - [215870] = 4, + [215415] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5500), 1, + ACTIONS(5456), 1, anon_sym_in, - STATE(7584), 1, + STATE(7401), 1, sym_comment, - [215883] = 4, + [215428] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11508), 1, + ACTIONS(11521), 1, sym_regex_pattern, - STATE(7585), 1, + STATE(7402), 1, sym_comment, - [215896] = 4, + [215441] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11510), 1, + ACTIONS(11523), 1, anon_sym_RBRACK, - STATE(7586), 1, + STATE(7403), 1, sym_comment, - [215909] = 4, + [215454] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11512), 1, - anon_sym_RBRACK, - STATE(7587), 1, + ACTIONS(11525), 1, + anon_sym_RPAREN, + STATE(7404), 1, sym_comment, - [215922] = 4, + [215467] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11514), 1, - anon_sym_RBRACK, - STATE(7588), 1, + ACTIONS(11527), 1, + sym_identifier, + STATE(7405), 1, sym_comment, - [215935] = 4, + [215480] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11516), 1, - anon_sym_RBRACK, - STATE(7589), 1, + ACTIONS(11529), 1, + sym_identifier, + STATE(7406), 1, sym_comment, - [215948] = 4, + [215493] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11518), 1, + ACTIONS(11531), 1, anon_sym_RBRACK, - STATE(7590), 1, + STATE(7407), 1, sym_comment, - [215961] = 4, + [215506] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8548), 1, + ACTIONS(8559), 1, sym_identifier, - STATE(7591), 1, + STATE(7408), 1, sym_comment, - [215974] = 4, + [215519] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11520), 1, + ACTIONS(11533), 1, anon_sym_function, - STATE(7592), 1, + STATE(7409), 1, sym_comment, - [215987] = 4, + [215532] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11522), 1, - anon_sym_RBRACK, - STATE(7593), 1, + ACTIONS(5364), 1, + anon_sym_RPAREN, + STATE(7410), 1, sym_comment, - [216000] = 4, + [215545] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11524), 1, - anon_sym_RBRACK, - STATE(7594), 1, + ACTIONS(11535), 1, + sym_identifier, + STATE(7411), 1, sym_comment, - [216013] = 4, + [215558] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11526), 1, + ACTIONS(11537), 1, sym_identifier, - STATE(7595), 1, + STATE(7412), 1, sym_comment, - [216026] = 4, + [215571] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8550), 1, + ACTIONS(8561), 1, sym_identifier, - STATE(7596), 1, + STATE(7413), 1, sym_comment, - [216039] = 4, + [215584] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11528), 1, + ACTIONS(11539), 1, anon_sym_function, - STATE(7597), 1, + STATE(7414), 1, sym_comment, - [216052] = 4, + [215597] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11530), 1, - anon_sym_RBRACK, - STATE(7598), 1, + ACTIONS(11541), 1, + sym_identifier, + STATE(7415), 1, sym_comment, - [216065] = 4, + [215610] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(5255), 1, + ACTIONS(6023), 1, anon_sym_RPAREN, - STATE(7599), 1, + STATE(7416), 1, sym_comment, - [216078] = 4, + [215623] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11532), 1, + ACTIONS(11543), 1, sym_identifier, - STATE(7600), 1, + STATE(7417), 1, sym_comment, - [216091] = 4, + [215636] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8552), 1, + ACTIONS(8563), 1, sym_identifier, - STATE(7601), 1, + STATE(7418), 1, sym_comment, - [216104] = 4, + [215649] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11534), 1, + ACTIONS(11545), 1, anon_sym_function, - STATE(7602), 1, + STATE(7419), 1, sym_comment, - [216117] = 4, - ACTIONS(3), 1, - aux_sym_comment_token1, + [215662] = 4, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11536), 1, - sym_identifier, - STATE(7603), 1, + ACTIONS(2785), 1, + aux_sym_comment_token1, + ACTIONS(11547), 1, + anon_sym_RPAREN, + STATE(7420), 1, sym_comment, - [216130] = 4, + [215675] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11538), 1, + ACTIONS(11549), 1, sym_identifier, - STATE(7604), 1, + STATE(7421), 1, sym_comment, - [216143] = 4, + [215688] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(11540), 1, + ACTIONS(11551), 1, sym_identifier, - STATE(7605), 1, + STATE(7422), 1, sym_comment, - [216156] = 4, + [215701] = 4, ACTIONS(3), 1, aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(8508), 1, + ACTIONS(8429), 1, sym_identifier, - STATE(7606), 1, + STATE(7423), 1, sym_comment, - [216169] = 4, + [215714] = 4, ACTIONS(5), 1, sym_html_comment, ACTIONS(2785), 1, aux_sym_comment_token1, - ACTIONS(11542), 1, + ACTIONS(11553), 1, anon_sym_function, - STATE(7607), 1, + STATE(7424), 1, sym_comment, - [216182] = 4, + [215727] = 4, + ACTIONS(3), 1, + aux_sym_comment_token1, ACTIONS(5), 1, sym_html_comment, - ACTIONS(2785), 1, - aux_sym_comment_token1, - ACTIONS(11544), 1, - anon_sym_RPAREN, - STATE(7608), 1, + ACTIONS(11555), 1, + sym_identifier, + STATE(7425), 1, sym_comment, - [216195] = 1, - ACTIONS(11546), 1, + [215740] = 1, + ACTIONS(11557), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(2061)] = 0, - [SMALL_STATE(2062)] = 95, - [SMALL_STATE(2063)] = 170, - [SMALL_STATE(2064)] = 265, - [SMALL_STATE(2065)] = 358, - [SMALL_STATE(2066)] = 433, - [SMALL_STATE(2067)] = 526, - [SMALL_STATE(2068)] = 619, - [SMALL_STATE(2069)] = 712, - [SMALL_STATE(2070)] = 805, - [SMALL_STATE(2071)] = 900, - [SMALL_STATE(2072)] = 993, - [SMALL_STATE(2073)] = 1086, - [SMALL_STATE(2074)] = 1179, - [SMALL_STATE(2075)] = 1274, - [SMALL_STATE(2076)] = 1367, - [SMALL_STATE(2077)] = 1464, - [SMALL_STATE(2078)] = 1559, - [SMALL_STATE(2079)] = 1654, - [SMALL_STATE(2080)] = 1747, - [SMALL_STATE(2081)] = 1840, - [SMALL_STATE(2082)] = 1937, - [SMALL_STATE(2083)] = 2012, - [SMALL_STATE(2084)] = 2105, - [SMALL_STATE(2085)] = 2180, - [SMALL_STATE(2086)] = 2255, - [SMALL_STATE(2087)] = 2348, - [SMALL_STATE(2088)] = 2443, - [SMALL_STATE(2089)] = 2536, - [SMALL_STATE(2090)] = 2629, - [SMALL_STATE(2091)] = 2722, - [SMALL_STATE(2092)] = 2797, - [SMALL_STATE(2093)] = 2892, - [SMALL_STATE(2094)] = 2985, - [SMALL_STATE(2095)] = 3060, - [SMALL_STATE(2096)] = 3153, - [SMALL_STATE(2097)] = 3231, - [SMALL_STATE(2098)] = 3323, - [SMALL_STATE(2099)] = 3419, - [SMALL_STATE(2100)] = 3511, - [SMALL_STATE(2101)] = 3603, - [SMALL_STATE(2102)] = 3677, - [SMALL_STATE(2103)] = 3769, - [SMALL_STATE(2104)] = 3865, - [SMALL_STATE(2105)] = 3957, - [SMALL_STATE(2106)] = 4057, - [SMALL_STATE(2107)] = 4149, - [SMALL_STATE(2108)] = 4223, - [SMALL_STATE(2109)] = 4319, - [SMALL_STATE(2110)] = 4415, - [SMALL_STATE(2111)] = 4509, - [SMALL_STATE(2112)] = 4603, - [SMALL_STATE(2113)] = 4700, - [SMALL_STATE(2114)] = 4793, - [SMALL_STATE(2115)] = 4888, - [SMALL_STATE(2116)] = 4971, - [SMALL_STATE(2117)] = 5062, - [SMALL_STATE(2118)] = 5145, - [SMALL_STATE(2119)] = 5236, - [SMALL_STATE(2120)] = 5327, - [SMALL_STATE(2121)] = 5400, - [SMALL_STATE(2122)] = 5491, - [SMALL_STATE(2123)] = 5582, - [SMALL_STATE(2124)] = 5679, - [SMALL_STATE(2125)] = 5756, - [SMALL_STATE(2126)] = 5847, - [SMALL_STATE(2127)] = 5920, - [SMALL_STATE(2128)] = 6015, - [SMALL_STATE(2129)] = 6106, - [SMALL_STATE(2130)] = 6197, - [SMALL_STATE(2131)] = 6288, - [SMALL_STATE(2132)] = 6379, - [SMALL_STATE(2133)] = 6464, - [SMALL_STATE(2134)] = 6543, - [SMALL_STATE(2135)] = 6638, - [SMALL_STATE(2136)] = 6729, - [SMALL_STATE(2137)] = 6812, - [SMALL_STATE(2138)] = 6907, - [SMALL_STATE(2139)] = 6998, - [SMALL_STATE(2140)] = 7073, - [SMALL_STATE(2141)] = 7168, - [SMALL_STATE(2142)] = 7251, - [SMALL_STATE(2143)] = 7342, - [SMALL_STATE(2144)] = 7433, - [SMALL_STATE(2145)] = 7515, - [SMALL_STATE(2146)] = 7609, - [SMALL_STATE(2147)] = 7697, - [SMALL_STATE(2148)] = 7791, - [SMALL_STATE(2149)] = 7885, - [SMALL_STATE(2150)] = 7967, - [SMALL_STATE(2151)] = 8057, - [SMALL_STATE(2152)] = 8139, - [SMALL_STATE(2153)] = 8229, - [SMALL_STATE(2154)] = 8323, - [SMALL_STATE(2155)] = 8393, - [SMALL_STATE(2156)] = 8487, - [SMALL_STATE(2157)] = 8571, - [SMALL_STATE(2158)] = 8653, - [SMALL_STATE(2159)] = 8745, - [SMALL_STATE(2160)] = 8815, - [SMALL_STATE(2161)] = 8899, - [SMALL_STATE(2162)] = 8983, - [SMALL_STATE(2163)] = 9053, - [SMALL_STATE(2164)] = 9135, - [SMALL_STATE(2165)] = 9223, - [SMALL_STATE(2166)] = 9317, - [SMALL_STATE(2167)] = 9407, - [SMALL_STATE(2168)] = 9487, - [SMALL_STATE(2169)] = 9567, - [SMALL_STATE(2170)] = 9644, - [SMALL_STATE(2171)] = 9713, - [SMALL_STATE(2172)] = 9790, - [SMALL_STATE(2173)] = 9861, - [SMALL_STATE(2174)] = 9930, - [SMALL_STATE(2175)] = 10009, - [SMALL_STATE(2176)] = 10098, - [SMALL_STATE(2177)] = 10177, - [SMALL_STATE(2178)] = 10258, - [SMALL_STATE(2179)] = 10329, - [SMALL_STATE(2180)] = 10406, - [SMALL_STATE(2181)] = 10489, - [SMALL_STATE(2182)] = 10566, - [SMALL_STATE(2183)] = 10655, - [SMALL_STATE(2184)] = 10726, - [SMALL_STATE(2185)] = 10815, - [SMALL_STATE(2186)] = 10888, - [SMALL_STATE(2187)] = 10969, - [SMALL_STATE(2188)] = 11038, - [SMALL_STATE(2189)] = 11115, - [SMALL_STATE(2190)] = 11184, - [SMALL_STATE(2191)] = 11265, - [SMALL_STATE(2192)] = 11352, - [SMALL_STATE(2193)] = 11431, - [SMALL_STATE(2194)] = 11508, - [SMALL_STATE(2195)] = 11601, - [SMALL_STATE(2196)] = 11680, - [SMALL_STATE(2197)] = 11759, - [SMALL_STATE(2198)] = 11836, - [SMALL_STATE(2199)] = 11929, - [SMALL_STATE(2200)] = 11998, - [SMALL_STATE(2201)] = 12087, - [SMALL_STATE(2202)] = 12156, - [SMALL_STATE(2203)] = 12237, - [SMALL_STATE(2204)] = 12306, - [SMALL_STATE(2205)] = 12383, - [SMALL_STATE(2206)] = 12464, - [SMALL_STATE(2207)] = 12533, - [SMALL_STATE(2208)] = 12602, - [SMALL_STATE(2209)] = 12675, - [SMALL_STATE(2210)] = 12760, - [SMALL_STATE(2211)] = 12831, - [SMALL_STATE(2212)] = 12914, - [SMALL_STATE(2213)] = 12993, - [SMALL_STATE(2214)] = 13064, - [SMALL_STATE(2215)] = 13143, - [SMALL_STATE(2216)] = 13220, - [SMALL_STATE(2217)] = 13305, - [SMALL_STATE(2218)] = 13376, - [SMALL_STATE(2219)] = 13455, - [SMALL_STATE(2220)] = 13532, - [SMALL_STATE(2221)] = 13603, - [SMALL_STATE(2222)] = 13686, - [SMALL_STATE(2223)] = 13761, - [SMALL_STATE(2224)] = 13832, - [SMALL_STATE(2225)] = 13903, - [SMALL_STATE(2226)] = 13980, - [SMALL_STATE(2227)] = 14049, - [SMALL_STATE(2228)] = 14120, - [SMALL_STATE(2229)] = 14199, - [SMALL_STATE(2230)] = 14278, - [SMALL_STATE(2231)] = 14349, - [SMALL_STATE(2232)] = 14426, - [SMALL_STATE(2233)] = 14494, - [SMALL_STATE(2234)] = 14572, - [SMALL_STATE(2235)] = 14650, - [SMALL_STATE(2236)] = 14718, - [SMALL_STATE(2237)] = 14786, - [SMALL_STATE(2238)] = 14864, - [SMALL_STATE(2239)] = 14940, - [SMALL_STATE(2240)] = 15018, - [SMALL_STATE(2241)] = 15100, - [SMALL_STATE(2242)] = 15176, - [SMALL_STATE(2243)] = 15264, - [SMALL_STATE(2244)] = 15346, - [SMALL_STATE(2245)] = 15418, - [SMALL_STATE(2246)] = 15500, - [SMALL_STATE(2247)] = 15568, - [SMALL_STATE(2248)] = 15636, - [SMALL_STATE(2249)] = 15712, - [SMALL_STATE(2250)] = 15790, - [SMALL_STATE(2251)] = 15866, - [SMALL_STATE(2252)] = 15942, - [SMALL_STATE(2253)] = 16018, - [SMALL_STATE(2254)] = 16086, - [SMALL_STATE(2255)] = 16164, - [SMALL_STATE(2256)] = 16232, - [SMALL_STATE(2257)] = 16304, - [SMALL_STATE(2258)] = 16372, - [SMALL_STATE(2259)] = 16450, - [SMALL_STATE(2260)] = 16532, - [SMALL_STATE(2261)] = 16610, - [SMALL_STATE(2262)] = 16678, - [SMALL_STATE(2263)] = 16762, - [SMALL_STATE(2264)] = 16836, - [SMALL_STATE(2265)] = 16914, - [SMALL_STATE(2266)] = 16996, - [SMALL_STATE(2267)] = 17072, - [SMALL_STATE(2268)] = 17150, - [SMALL_STATE(2269)] = 17218, - [SMALL_STATE(2270)] = 17286, - [SMALL_STATE(2271)] = 17360, - [SMALL_STATE(2272)] = 17434, - [SMALL_STATE(2273)] = 17510, - [SMALL_STATE(2274)] = 17588, - [SMALL_STATE(2275)] = 17666, - [SMALL_STATE(2276)] = 17793, - [SMALL_STATE(2277)] = 17870, - [SMALL_STATE(2278)] = 17945, - [SMALL_STATE(2279)] = 18016, - [SMALL_STATE(2280)] = 18095, - [SMALL_STATE(2281)] = 18222, - [SMALL_STATE(2282)] = 18293, - [SMALL_STATE(2283)] = 18368, - [SMALL_STATE(2284)] = 18495, - [SMALL_STATE(2285)] = 18568, - [SMALL_STATE(2286)] = 18695, - [SMALL_STATE(2287)] = 18768, - [SMALL_STATE(2288)] = 18847, - [SMALL_STATE(2289)] = 18974, - [SMALL_STATE(2290)] = 19101, - [SMALL_STATE(2291)] = 19182, - [SMALL_STATE(2292)] = 19261, - [SMALL_STATE(2293)] = 19388, - [SMALL_STATE(2294)] = 19463, - [SMALL_STATE(2295)] = 19538, - [SMALL_STATE(2296)] = 19613, - [SMALL_STATE(2297)] = 19690, - [SMALL_STATE(2298)] = 19817, - [SMALL_STATE(2299)] = 19896, - [SMALL_STATE(2300)] = 20023, - [SMALL_STATE(2301)] = 20097, - [SMALL_STATE(2302)] = 20171, - [SMALL_STATE(2303)] = 20243, - [SMALL_STATE(2304)] = 20319, - [SMALL_STATE(2305)] = 20395, - [SMALL_STATE(2306)] = 20469, - [SMALL_STATE(2307)] = 20543, - [SMALL_STATE(2308)] = 20617, - [SMALL_STATE(2309)] = 20695, - [SMALL_STATE(2310)] = 20769, - [SMALL_STATE(2311)] = 20843, - [SMALL_STATE(2312)] = 20917, - [SMALL_STATE(2313)] = 20991, - [SMALL_STATE(2314)] = 21065, - [SMALL_STATE(2315)] = 21139, - [SMALL_STATE(2316)] = 21213, - [SMALL_STATE(2317)] = 21291, - [SMALL_STATE(2318)] = 21414, - [SMALL_STATE(2319)] = 21537, - [SMALL_STATE(2320)] = 21610, - [SMALL_STATE(2321)] = 21683, - [SMALL_STATE(2322)] = 21806, - [SMALL_STATE(2323)] = 21877, - [SMALL_STATE(2324)] = 21950, - [SMALL_STATE(2325)] = 22073, - [SMALL_STATE(2326)] = 22146, - [SMALL_STATE(2327)] = 22269, - [SMALL_STATE(2328)] = 22392, - [SMALL_STATE(2329)] = 22515, - [SMALL_STATE(2330)] = 22588, - [SMALL_STATE(2331)] = 22661, - [SMALL_STATE(2332)] = 22734, - [SMALL_STATE(2333)] = 22807, - [SMALL_STATE(2334)] = 22930, - [SMALL_STATE(2335)] = 23003, - [SMALL_STATE(2336)] = 23076, - [SMALL_STATE(2337)] = 23149, - [SMALL_STATE(2338)] = 23272, - [SMALL_STATE(2339)] = 23395, - [SMALL_STATE(2340)] = 23468, - [SMALL_STATE(2341)] = 23591, - [SMALL_STATE(2342)] = 23662, - [SMALL_STATE(2343)] = 23735, - [SMALL_STATE(2344)] = 23808, - [SMALL_STATE(2345)] = 23883, - [SMALL_STATE(2346)] = 24006, - [SMALL_STATE(2347)] = 24129, - [SMALL_STATE(2348)] = 24252, - [SMALL_STATE(2349)] = 24325, - [SMALL_STATE(2350)] = 24398, - [SMALL_STATE(2351)] = 24521, - [SMALL_STATE(2352)] = 24644, - [SMALL_STATE(2353)] = 24717, - [SMALL_STATE(2354)] = 24790, - [SMALL_STATE(2355)] = 24863, - [SMALL_STATE(2356)] = 24986, - [SMALL_STATE(2357)] = 25109, - [SMALL_STATE(2358)] = 25232, - [SMALL_STATE(2359)] = 25303, - [SMALL_STATE(2360)] = 25426, - [SMALL_STATE(2361)] = 25549, - [SMALL_STATE(2362)] = 25672, - [SMALL_STATE(2363)] = 25745, - [SMALL_STATE(2364)] = 25818, - [SMALL_STATE(2365)] = 25941, - [SMALL_STATE(2366)] = 26064, - [SMALL_STATE(2367)] = 26137, - [SMALL_STATE(2368)] = 26260, - [SMALL_STATE(2369)] = 26383, - [SMALL_STATE(2370)] = 26506, - [SMALL_STATE(2371)] = 26579, - [SMALL_STATE(2372)] = 26649, - [SMALL_STATE(2373)] = 26719, - [SMALL_STATE(2374)] = 26789, - [SMALL_STATE(2375)] = 26859, - [SMALL_STATE(2376)] = 26929, - [SMALL_STATE(2377)] = 26999, - [SMALL_STATE(2378)] = 27069, - [SMALL_STATE(2379)] = 27139, - [SMALL_STATE(2380)] = 27209, - [SMALL_STATE(2381)] = 27279, - [SMALL_STATE(2382)] = 27398, - [SMALL_STATE(2383)] = 27517, - [SMALL_STATE(2384)] = 27636, - [SMALL_STATE(2385)] = 27755, - [SMALL_STATE(2386)] = 27874, - [SMALL_STATE(2387)] = 27993, - [SMALL_STATE(2388)] = 28112, - [SMALL_STATE(2389)] = 28231, - [SMALL_STATE(2390)] = 28350, - [SMALL_STATE(2391)] = 28469, - [SMALL_STATE(2392)] = 28593, - [SMALL_STATE(2393)] = 28717, - [SMALL_STATE(2394)] = 28841, - [SMALL_STATE(2395)] = 28965, - [SMALL_STATE(2396)] = 29089, - [SMALL_STATE(2397)] = 29206, - [SMALL_STATE(2398)] = 29323, - [SMALL_STATE(2399)] = 29440, - [SMALL_STATE(2400)] = 29551, - [SMALL_STATE(2401)] = 29668, - [SMALL_STATE(2402)] = 29783, - [SMALL_STATE(2403)] = 29900, - [SMALL_STATE(2404)] = 30017, - [SMALL_STATE(2405)] = 30128, - [SMALL_STATE(2406)] = 30245, - [SMALL_STATE(2407)] = 30362, - [SMALL_STATE(2408)] = 30479, - [SMALL_STATE(2409)] = 30596, - [SMALL_STATE(2410)] = 30713, - [SMALL_STATE(2411)] = 30830, - [SMALL_STATE(2412)] = 30941, - [SMALL_STATE(2413)] = 31052, - [SMALL_STATE(2414)] = 31169, - [SMALL_STATE(2415)] = 31286, - [SMALL_STATE(2416)] = 31397, - [SMALL_STATE(2417)] = 31514, - [SMALL_STATE(2418)] = 31631, - [SMALL_STATE(2419)] = 31748, - [SMALL_STATE(2420)] = 31865, - [SMALL_STATE(2421)] = 31982, - [SMALL_STATE(2422)] = 32093, - [SMALL_STATE(2423)] = 32210, - [SMALL_STATE(2424)] = 32327, - [SMALL_STATE(2425)] = 32444, - [SMALL_STATE(2426)] = 32561, - [SMALL_STATE(2427)] = 32678, - [SMALL_STATE(2428)] = 32795, - [SMALL_STATE(2429)] = 32912, - [SMALL_STATE(2430)] = 33023, - [SMALL_STATE(2431)] = 33140, - [SMALL_STATE(2432)] = 33257, - [SMALL_STATE(2433)] = 33374, - [SMALL_STATE(2434)] = 33491, - [SMALL_STATE(2435)] = 33608, - [SMALL_STATE(2436)] = 33725, - [SMALL_STATE(2437)] = 33787, - [SMALL_STATE(2438)] = 33901, - [SMALL_STATE(2439)] = 33963, - [SMALL_STATE(2440)] = 34079, - [SMALL_STATE(2441)] = 34156, - [SMALL_STATE(2442)] = 34227, - [SMALL_STATE(2443)] = 34330, - [SMALL_STATE(2444)] = 34401, - [SMALL_STATE(2445)] = 34470, - [SMALL_STATE(2446)] = 34541, - [SMALL_STATE(2447)] = 34607, - [SMALL_STATE(2448)] = 34673, - [SMALL_STATE(2449)] = 34733, - [SMALL_STATE(2450)] = 34797, - [SMALL_STATE(2451)] = 34857, - [SMALL_STATE(2452)] = 34917, - [SMALL_STATE(2453)] = 34981, - [SMALL_STATE(2454)] = 35043, - [SMALL_STATE(2455)] = 35103, - [SMALL_STATE(2456)] = 35163, - [SMALL_STATE(2457)] = 35225, - [SMALL_STATE(2458)] = 35285, - [SMALL_STATE(2459)] = 35351, - [SMALL_STATE(2460)] = 35411, - [SMALL_STATE(2461)] = 35475, - [SMALL_STATE(2462)] = 35541, - [SMALL_STATE(2463)] = 35603, - [SMALL_STATE(2464)] = 35662, - [SMALL_STATE(2465)] = 35721, - [SMALL_STATE(2466)] = 35780, - [SMALL_STATE(2467)] = 35839, - [SMALL_STATE(2468)] = 35898, - [SMALL_STATE(2469)] = 35957, - [SMALL_STATE(2470)] = 36022, - [SMALL_STATE(2471)] = 36081, - [SMALL_STATE(2472)] = 36140, - [SMALL_STATE(2473)] = 36205, - [SMALL_STATE(2474)] = 36264, - [SMALL_STATE(2475)] = 36323, - [SMALL_STATE(2476)] = 36382, - [SMALL_STATE(2477)] = 36441, - [SMALL_STATE(2478)] = 36500, - [SMALL_STATE(2479)] = 36559, - [SMALL_STATE(2480)] = 36620, - [SMALL_STATE(2481)] = 36679, - [SMALL_STATE(2482)] = 36738, - [SMALL_STATE(2483)] = 36797, - [SMALL_STATE(2484)] = 36864, - [SMALL_STATE(2485)] = 36931, - [SMALL_STATE(2486)] = 37056, - [SMALL_STATE(2487)] = 37121, - [SMALL_STATE(2488)] = 37180, - [SMALL_STATE(2489)] = 37241, - [SMALL_STATE(2490)] = 37304, - [SMALL_STATE(2491)] = 37365, - [SMALL_STATE(2492)] = 37428, - [SMALL_STATE(2493)] = 37487, - [SMALL_STATE(2494)] = 37548, - [SMALL_STATE(2495)] = 37673, - [SMALL_STATE(2496)] = 37732, - [SMALL_STATE(2497)] = 37797, - [SMALL_STATE(2498)] = 37892, - [SMALL_STATE(2499)] = 37951, - [SMALL_STATE(2500)] = 38010, - [SMALL_STATE(2501)] = 38069, - [SMALL_STATE(2502)] = 38128, - [SMALL_STATE(2503)] = 38187, - [SMALL_STATE(2504)] = 38246, - [SMALL_STATE(2505)] = 38305, - [SMALL_STATE(2506)] = 38372, - [SMALL_STATE(2507)] = 38431, - [SMALL_STATE(2508)] = 38490, - [SMALL_STATE(2509)] = 38549, - [SMALL_STATE(2510)] = 38674, - [SMALL_STATE(2511)] = 38733, - [SMALL_STATE(2512)] = 38792, - [SMALL_STATE(2513)] = 38887, - [SMALL_STATE(2514)] = 38946, - [SMALL_STATE(2515)] = 39005, - [SMALL_STATE(2516)] = 39064, - [SMALL_STATE(2517)] = 39123, - [SMALL_STATE(2518)] = 39218, - [SMALL_STATE(2519)] = 39277, - [SMALL_STATE(2520)] = 39342, - [SMALL_STATE(2521)] = 39401, - [SMALL_STATE(2522)] = 39526, - [SMALL_STATE(2523)] = 39585, - [SMALL_STATE(2524)] = 39644, - [SMALL_STATE(2525)] = 39705, - [SMALL_STATE(2526)] = 39764, - [SMALL_STATE(2527)] = 39823, - [SMALL_STATE(2528)] = 39882, - [SMALL_STATE(2529)] = 39941, - [SMALL_STATE(2530)] = 40000, - [SMALL_STATE(2531)] = 40059, - [SMALL_STATE(2532)] = 40118, - [SMALL_STATE(2533)] = 40183, - [SMALL_STATE(2534)] = 40308, - [SMALL_STATE(2535)] = 40433, - [SMALL_STATE(2536)] = 40494, - [SMALL_STATE(2537)] = 40553, - [SMALL_STATE(2538)] = 40612, - [SMALL_STATE(2539)] = 40671, - [SMALL_STATE(2540)] = 40730, - [SMALL_STATE(2541)] = 40789, - [SMALL_STATE(2542)] = 40848, - [SMALL_STATE(2543)] = 40943, - [SMALL_STATE(2544)] = 41002, - [SMALL_STATE(2545)] = 41061, - [SMALL_STATE(2546)] = 41120, - [SMALL_STATE(2547)] = 41179, - [SMALL_STATE(2548)] = 41238, - [SMALL_STATE(2549)] = 41363, - [SMALL_STATE(2550)] = 41422, - [SMALL_STATE(2551)] = 41481, - [SMALL_STATE(2552)] = 41540, - [SMALL_STATE(2553)] = 41635, - [SMALL_STATE(2554)] = 41696, - [SMALL_STATE(2555)] = 41757, - [SMALL_STATE(2556)] = 41822, - [SMALL_STATE(2557)] = 41887, - [SMALL_STATE(2558)] = 41946, - [SMALL_STATE(2559)] = 42005, - [SMALL_STATE(2560)] = 42064, - [SMALL_STATE(2561)] = 42189, - [SMALL_STATE(2562)] = 42248, - [SMALL_STATE(2563)] = 42307, - [SMALL_STATE(2564)] = 42366, - [SMALL_STATE(2565)] = 42429, - [SMALL_STATE(2566)] = 42488, - [SMALL_STATE(2567)] = 42553, - [SMALL_STATE(2568)] = 42612, - [SMALL_STATE(2569)] = 42677, - [SMALL_STATE(2570)] = 42738, - [SMALL_STATE(2571)] = 42797, - [SMALL_STATE(2572)] = 42856, - [SMALL_STATE(2573)] = 42921, - [SMALL_STATE(2574)] = 42980, - [SMALL_STATE(2575)] = 43039, - [SMALL_STATE(2576)] = 43102, - [SMALL_STATE(2577)] = 43161, - [SMALL_STATE(2578)] = 43222, - [SMALL_STATE(2579)] = 43283, - [SMALL_STATE(2580)] = 43342, - [SMALL_STATE(2581)] = 43401, - [SMALL_STATE(2582)] = 43466, - [SMALL_STATE(2583)] = 43525, - [SMALL_STATE(2584)] = 43584, - [SMALL_STATE(2585)] = 43645, - [SMALL_STATE(2586)] = 43704, - [SMALL_STATE(2587)] = 43763, - [SMALL_STATE(2588)] = 43822, - [SMALL_STATE(2589)] = 43881, - [SMALL_STATE(2590)] = 43940, - [SMALL_STATE(2591)] = 44065, - [SMALL_STATE(2592)] = 44124, - [SMALL_STATE(2593)] = 44183, - [SMALL_STATE(2594)] = 44242, - [SMALL_STATE(2595)] = 44348, - [SMALL_STATE(2596)] = 44464, - [SMALL_STATE(2597)] = 44542, - [SMALL_STATE(2598)] = 44662, - [SMALL_STATE(2599)] = 44720, - [SMALL_STATE(2600)] = 44806, - [SMALL_STATE(2601)] = 44864, - [SMALL_STATE(2602)] = 44952, - [SMALL_STATE(2603)] = 45016, - [SMALL_STATE(2604)] = 45104, - [SMALL_STATE(2605)] = 45162, - [SMALL_STATE(2606)] = 45250, - [SMALL_STATE(2607)] = 45370, - [SMALL_STATE(2608)] = 45490, - [SMALL_STATE(2609)] = 45568, - [SMALL_STATE(2610)] = 45626, - [SMALL_STATE(2611)] = 45684, - [SMALL_STATE(2612)] = 45800, - [SMALL_STATE(2613)] = 45858, - [SMALL_STATE(2614)] = 45974, - [SMALL_STATE(2615)] = 46064, - [SMALL_STATE(2616)] = 46122, - [SMALL_STATE(2617)] = 46242, - [SMALL_STATE(2618)] = 46358, - [SMALL_STATE(2619)] = 46474, - [SMALL_STATE(2620)] = 46590, - [SMALL_STATE(2621)] = 46670, - [SMALL_STATE(2622)] = 46754, - [SMALL_STATE(2623)] = 46858, - [SMALL_STATE(2624)] = 46916, - [SMALL_STATE(2625)] = 47036, - [SMALL_STATE(2626)] = 47094, - [SMALL_STATE(2627)] = 47152, - [SMALL_STATE(2628)] = 47210, - [SMALL_STATE(2629)] = 47296, - [SMALL_STATE(2630)] = 47376, - [SMALL_STATE(2631)] = 47434, - [SMALL_STATE(2632)] = 47552, - [SMALL_STATE(2633)] = 47650, - [SMALL_STATE(2634)] = 47750, - [SMALL_STATE(2635)] = 47866, - [SMALL_STATE(2636)] = 47934, - [SMALL_STATE(2637)] = 48036, - [SMALL_STATE(2638)] = 48156, - [SMALL_STATE(2639)] = 48216, - [SMALL_STATE(2640)] = 48294, - [SMALL_STATE(2641)] = 48410, - [SMALL_STATE(2642)] = 48494, - [SMALL_STATE(2643)] = 48610, - [SMALL_STATE(2644)] = 48696, - [SMALL_STATE(2645)] = 48764, - [SMALL_STATE(2646)] = 48884, - [SMALL_STATE(2647)] = 48968, - [SMALL_STATE(2648)] = 49084, - [SMALL_STATE(2649)] = 49200, - [SMALL_STATE(2650)] = 49268, - [SMALL_STATE(2651)] = 49326, - [SMALL_STATE(2652)] = 49384, - [SMALL_STATE(2653)] = 49442, - [SMALL_STATE(2654)] = 49562, - [SMALL_STATE(2655)] = 49682, - [SMALL_STATE(2656)] = 49802, - [SMALL_STATE(2657)] = 49918, - [SMALL_STATE(2658)] = 49976, - [SMALL_STATE(2659)] = 50070, - [SMALL_STATE(2660)] = 50186, - [SMALL_STATE(2661)] = 50244, - [SMALL_STATE(2662)] = 50302, - [SMALL_STATE(2663)] = 50422, - [SMALL_STATE(2664)] = 50480, - [SMALL_STATE(2665)] = 50588, - [SMALL_STATE(2666)] = 50646, - [SMALL_STATE(2667)] = 50762, - [SMALL_STATE(2668)] = 50878, - [SMALL_STATE(2669)] = 50994, - [SMALL_STATE(2670)] = 51052, - [SMALL_STATE(2671)] = 51118, - [SMALL_STATE(2672)] = 51176, - [SMALL_STATE(2673)] = 51236, - [SMALL_STATE(2674)] = 51294, - [SMALL_STATE(2675)] = 51352, - [SMALL_STATE(2676)] = 51410, - [SMALL_STATE(2677)] = 51530, - [SMALL_STATE(2678)] = 51650, - [SMALL_STATE(2679)] = 51766, - [SMALL_STATE(2680)] = 51824, - [SMALL_STATE(2681)] = 51940, - [SMALL_STATE(2682)] = 52020, - [SMALL_STATE(2683)] = 52078, - [SMALL_STATE(2684)] = 52138, - [SMALL_STATE(2685)] = 52254, - [SMALL_STATE(2686)] = 52312, - [SMALL_STATE(2687)] = 52428, - [SMALL_STATE(2688)] = 52548, - [SMALL_STATE(2689)] = 52634, - [SMALL_STATE(2690)] = 52722, - [SMALL_STATE(2691)] = 52838, - [SMALL_STATE(2692)] = 52954, - [SMALL_STATE(2693)] = 53040, - [SMALL_STATE(2694)] = 53144, - [SMALL_STATE(2695)] = 53260, - [SMALL_STATE(2696)] = 53376, - [SMALL_STATE(2697)] = 53434, - [SMALL_STATE(2698)] = 53492, - [SMALL_STATE(2699)] = 53550, - [SMALL_STATE(2700)] = 53608, - [SMALL_STATE(2701)] = 53714, - [SMALL_STATE(2702)] = 53830, - [SMALL_STATE(2703)] = 53916, - [SMALL_STATE(2704)] = 54014, - [SMALL_STATE(2705)] = 54072, - [SMALL_STATE(2706)] = 54162, - [SMALL_STATE(2707)] = 54220, - [SMALL_STATE(2708)] = 54336, - [SMALL_STATE(2709)] = 54454, - [SMALL_STATE(2710)] = 54574, - [SMALL_STATE(2711)] = 54690, - [SMALL_STATE(2712)] = 54794, - [SMALL_STATE(2713)] = 54852, - [SMALL_STATE(2714)] = 54958, - [SMALL_STATE(2715)] = 55016, - [SMALL_STATE(2716)] = 55102, - [SMALL_STATE(2717)] = 55160, - [SMALL_STATE(2718)] = 55218, - [SMALL_STATE(2719)] = 55304, - [SMALL_STATE(2720)] = 55404, - [SMALL_STATE(2721)] = 55462, - [SMALL_STATE(2722)] = 55582, - [SMALL_STATE(2723)] = 55684, - [SMALL_STATE(2724)] = 55768, - [SMALL_STATE(2725)] = 55884, - [SMALL_STATE(2726)] = 55972, - [SMALL_STATE(2727)] = 56070, - [SMALL_STATE(2728)] = 56128, - [SMALL_STATE(2729)] = 56192, - [SMALL_STATE(2730)] = 56278, - [SMALL_STATE(2731)] = 56378, - [SMALL_STATE(2732)] = 56440, - [SMALL_STATE(2733)] = 56556, - [SMALL_STATE(2734)] = 56614, - [SMALL_STATE(2735)] = 56730, - [SMALL_STATE(2736)] = 56820, - [SMALL_STATE(2737)] = 56878, - [SMALL_STATE(2738)] = 56994, - [SMALL_STATE(2739)] = 57058, - [SMALL_STATE(2740)] = 57160, - [SMALL_STATE(2741)] = 57236, - [SMALL_STATE(2742)] = 57294, - [SMALL_STATE(2743)] = 57352, - [SMALL_STATE(2744)] = 57468, - [SMALL_STATE(2745)] = 57588, - [SMALL_STATE(2746)] = 57672, - [SMALL_STATE(2747)] = 57788, - [SMALL_STATE(2748)] = 57862, - [SMALL_STATE(2749)] = 57932, - [SMALL_STATE(2750)] = 58008, - [SMALL_STATE(2751)] = 58096, - [SMALL_STATE(2752)] = 58154, - [SMALL_STATE(2753)] = 58224, - [SMALL_STATE(2754)] = 58318, - [SMALL_STATE(2755)] = 58434, - [SMALL_STATE(2756)] = 58550, - [SMALL_STATE(2757)] = 58666, - [SMALL_STATE(2758)] = 58782, - [SMALL_STATE(2759)] = 58890, - [SMALL_STATE(2760)] = 58948, - [SMALL_STATE(2761)] = 59064, - [SMALL_STATE(2762)] = 59122, - [SMALL_STATE(2763)] = 59242, - [SMALL_STATE(2764)] = 59358, - [SMALL_STATE(2765)] = 59434, - [SMALL_STATE(2766)] = 59504, - [SMALL_STATE(2767)] = 59562, - [SMALL_STATE(2768)] = 59682, - [SMALL_STATE(2769)] = 59740, - [SMALL_STATE(2770)] = 59798, - [SMALL_STATE(2771)] = 59884, - [SMALL_STATE(2772)] = 59942, - [SMALL_STATE(2773)] = 60000, - [SMALL_STATE(2774)] = 60116, - [SMALL_STATE(2775)] = 60174, - [SMALL_STATE(2776)] = 60232, - [SMALL_STATE(2777)] = 60348, - [SMALL_STATE(2778)] = 60406, - [SMALL_STATE(2779)] = 60464, - [SMALL_STATE(2780)] = 60522, - [SMALL_STATE(2781)] = 60580, - [SMALL_STATE(2782)] = 60696, - [SMALL_STATE(2783)] = 60812, - [SMALL_STATE(2784)] = 60932, - [SMALL_STATE(2785)] = 61016, - [SMALL_STATE(2786)] = 61074, - [SMALL_STATE(2787)] = 61132, - [SMALL_STATE(2788)] = 61190, - [SMALL_STATE(2789)] = 61284, - [SMALL_STATE(2790)] = 61344, - [SMALL_STATE(2791)] = 61430, - [SMALL_STATE(2792)] = 61488, - [SMALL_STATE(2793)] = 61550, - [SMALL_STATE(2794)] = 61610, - [SMALL_STATE(2795)] = 61668, - [SMALL_STATE(2796)] = 61726, - [SMALL_STATE(2797)] = 61788, - [SMALL_STATE(2798)] = 61896, - [SMALL_STATE(2799)] = 61954, - [SMALL_STATE(2800)] = 62073, - [SMALL_STATE(2801)] = 62152, - [SMALL_STATE(2802)] = 62255, - [SMALL_STATE(2803)] = 62360, - [SMALL_STATE(2804)] = 62445, - [SMALL_STATE(2805)] = 62564, - [SMALL_STATE(2806)] = 62661, - [SMALL_STATE(2807)] = 62760, - [SMALL_STATE(2808)] = 62823, - [SMALL_STATE(2809)] = 62924, - [SMALL_STATE(2810)] = 63007, - [SMALL_STATE(2811)] = 63068, - [SMALL_STATE(2812)] = 63183, - [SMALL_STATE(2813)] = 63268, - [SMALL_STATE(2814)] = 63383, - [SMALL_STATE(2815)] = 63442, - [SMALL_STATE(2816)] = 63559, - [SMALL_STATE(2817)] = 63674, - [SMALL_STATE(2818)] = 63789, - [SMALL_STATE(2819)] = 63908, - [SMALL_STATE(2820)] = 64023, - [SMALL_STATE(2821)] = 64112, - [SMALL_STATE(2822)] = 64199, - [SMALL_STATE(2823)] = 64268, - [SMALL_STATE(2824)] = 64385, - [SMALL_STATE(2825)] = 64446, - [SMALL_STATE(2826)] = 64561, - [SMALL_STATE(2827)] = 64676, - [SMALL_STATE(2828)] = 64791, - [SMALL_STATE(2829)] = 64852, - [SMALL_STATE(2830)] = 64945, - [SMALL_STATE(2831)] = 65008, - [SMALL_STATE(2832)] = 65115, - [SMALL_STATE(2833)] = 65230, - [SMALL_STATE(2834)] = 65345, - [SMALL_STATE(2835)] = 65420, - [SMALL_STATE(2836)] = 65535, - [SMALL_STATE(2837)] = 65650, - [SMALL_STATE(2838)] = 65765, - [SMALL_STATE(2839)] = 65884, - [SMALL_STATE(2840)] = 65941, - [SMALL_STATE(2841)] = 66002, - [SMALL_STATE(2842)] = 66083, - [SMALL_STATE(2843)] = 66140, - [SMALL_STATE(2844)] = 66259, - [SMALL_STATE(2845)] = 66374, - [SMALL_STATE(2846)] = 66431, - [SMALL_STATE(2847)] = 66512, - [SMALL_STATE(2848)] = 66631, - [SMALL_STATE(2849)] = 66714, - [SMALL_STATE(2850)] = 66789, - [SMALL_STATE(2851)] = 66904, - [SMALL_STATE(2852)] = 66987, - [SMALL_STATE(2853)] = 67064, - [SMALL_STATE(2854)] = 67181, - [SMALL_STATE(2855)] = 67296, - [SMALL_STATE(2856)] = 67359, - [SMALL_STATE(2857)] = 67474, - [SMALL_STATE(2858)] = 67589, - [SMALL_STATE(2859)] = 67708, - [SMALL_STATE(2860)] = 67823, - [SMALL_STATE(2861)] = 67942, - [SMALL_STATE(2862)] = 68057, - [SMALL_STATE(2863)] = 68134, - [SMALL_STATE(2864)] = 68219, - [SMALL_STATE(2865)] = 68336, - [SMALL_STATE(2866)] = 68451, - [SMALL_STATE(2867)] = 68566, - [SMALL_STATE(2868)] = 68631, - [SMALL_STATE(2869)] = 68712, - [SMALL_STATE(2870)] = 68831, - [SMALL_STATE(2871)] = 68946, - [SMALL_STATE(2872)] = 69031, - [SMALL_STATE(2873)] = 69146, - [SMALL_STATE(2874)] = 69261, - [SMALL_STATE(2875)] = 69326, - [SMALL_STATE(2876)] = 69441, - [SMALL_STATE(2877)] = 69560, - [SMALL_STATE(2878)] = 69679, - [SMALL_STATE(2879)] = 69738, - [SMALL_STATE(2880)] = 69797, - [SMALL_STATE(2881)] = 69860, - [SMALL_STATE(2882)] = 69979, - [SMALL_STATE(2883)] = 70094, - [SMALL_STATE(2884)] = 70209, - [SMALL_STATE(2885)] = 70328, - [SMALL_STATE(2886)] = 70443, - [SMALL_STATE(2887)] = 70512, - [SMALL_STATE(2888)] = 70579, - [SMALL_STATE(2889)] = 70694, - [SMALL_STATE(2890)] = 70761, - [SMALL_STATE(2891)] = 70880, - [SMALL_STATE(2892)] = 70999, - [SMALL_STATE(2893)] = 71118, - [SMALL_STATE(2894)] = 71175, - [SMALL_STATE(2895)] = 71294, - [SMALL_STATE(2896)] = 71351, - [SMALL_STATE(2897)] = 71408, - [SMALL_STATE(2898)] = 71527, - [SMALL_STATE(2899)] = 71646, - [SMALL_STATE(2900)] = 71765, - [SMALL_STATE(2901)] = 71880, - [SMALL_STATE(2902)] = 71995, - [SMALL_STATE(2903)] = 72114, - [SMALL_STATE(2904)] = 72229, - [SMALL_STATE(2905)] = 72318, - [SMALL_STATE(2906)] = 72437, - [SMALL_STATE(2907)] = 72556, - [SMALL_STATE(2908)] = 72675, - [SMALL_STATE(2909)] = 72794, - [SMALL_STATE(2910)] = 72875, - [SMALL_STATE(2911)] = 72954, - [SMALL_STATE(2912)] = 73035, - [SMALL_STATE(2913)] = 73154, - [SMALL_STATE(2914)] = 73257, - [SMALL_STATE(2915)] = 73362, - [SMALL_STATE(2916)] = 73447, - [SMALL_STATE(2917)] = 73544, - [SMALL_STATE(2918)] = 73643, - [SMALL_STATE(2919)] = 73744, - [SMALL_STATE(2920)] = 73827, - [SMALL_STATE(2921)] = 73912, - [SMALL_STATE(2922)] = 74029, - [SMALL_STATE(2923)] = 74094, - [SMALL_STATE(2924)] = 74213, - [SMALL_STATE(2925)] = 74306, - [SMALL_STATE(2926)] = 74413, - [SMALL_STATE(2927)] = 74532, - [SMALL_STATE(2928)] = 74646, - [SMALL_STATE(2929)] = 74716, - [SMALL_STATE(2930)] = 74830, - [SMALL_STATE(2931)] = 74910, - [SMALL_STATE(2932)] = 74972, - [SMALL_STATE(2933)] = 75028, - [SMALL_STATE(2934)] = 75144, - [SMALL_STATE(2935)] = 75202, - [SMALL_STATE(2936)] = 75264, - [SMALL_STATE(2937)] = 75320, - [SMALL_STATE(2938)] = 75376, - [SMALL_STATE(2939)] = 75444, - [SMALL_STATE(2940)] = 75512, - [SMALL_STATE(2941)] = 75626, - [SMALL_STATE(2942)] = 75694, - [SMALL_STATE(2943)] = 75784, - [SMALL_STATE(2944)] = 75866, - [SMALL_STATE(2945)] = 75928, - [SMALL_STATE(2946)] = 76002, - [SMALL_STATE(2947)] = 76058, - [SMALL_STATE(2948)] = 76114, - [SMALL_STATE(2949)] = 76172, - [SMALL_STATE(2950)] = 76286, - [SMALL_STATE(2951)] = 76342, - [SMALL_STATE(2952)] = 76398, - [SMALL_STATE(2953)] = 76454, - [SMALL_STATE(2954)] = 76516, - [SMALL_STATE(2955)] = 76578, - [SMALL_STATE(2956)] = 76636, - [SMALL_STATE(2957)] = 76694, - [SMALL_STATE(2958)] = 76750, - [SMALL_STATE(2959)] = 76806, - [SMALL_STATE(2960)] = 76920, - [SMALL_STATE(2961)] = 76998, - [SMALL_STATE(2962)] = 77054, - [SMALL_STATE(2963)] = 77136, - [SMALL_STATE(2964)] = 77192, - [SMALL_STATE(2965)] = 77248, - [SMALL_STATE(2966)] = 77316, - [SMALL_STATE(2967)] = 77374, - [SMALL_STATE(2968)] = 77452, - [SMALL_STATE(2969)] = 77508, - [SMALL_STATE(2970)] = 77564, - [SMALL_STATE(2971)] = 77620, - [SMALL_STATE(2972)] = 77676, - [SMALL_STATE(2973)] = 77734, - [SMALL_STATE(2974)] = 77796, - [SMALL_STATE(2975)] = 77910, - [SMALL_STATE(2976)] = 77966, - [SMALL_STATE(2977)] = 78034, - [SMALL_STATE(2978)] = 78090, - [SMALL_STATE(2979)] = 78204, - [SMALL_STATE(2980)] = 78268, - [SMALL_STATE(2981)] = 78350, - [SMALL_STATE(2982)] = 78466, - [SMALL_STATE(2983)] = 78542, - [SMALL_STATE(2984)] = 78612, - [SMALL_STATE(2985)] = 78668, - [SMALL_STATE(2986)] = 78782, - [SMALL_STATE(2987)] = 78838, - [SMALL_STATE(2988)] = 78906, - [SMALL_STATE(2989)] = 78962, - [SMALL_STATE(2990)] = 79018, - [SMALL_STATE(2991)] = 79076, - [SMALL_STATE(2992)] = 79154, - [SMALL_STATE(2993)] = 79210, - [SMALL_STATE(2994)] = 79266, - [SMALL_STATE(2995)] = 79322, - [SMALL_STATE(2996)] = 79438, - [SMALL_STATE(2997)] = 79500, - [SMALL_STATE(2998)] = 79556, - [SMALL_STATE(2999)] = 79612, - [SMALL_STATE(3000)] = 79694, - [SMALL_STATE(3001)] = 79756, - [SMALL_STATE(3002)] = 79870, - [SMALL_STATE(3003)] = 79952, - [SMALL_STATE(3004)] = 80042, - [SMALL_STATE(3005)] = 80156, - [SMALL_STATE(3006)] = 80270, - [SMALL_STATE(3007)] = 80334, - [SMALL_STATE(3008)] = 80424, - [SMALL_STATE(3009)] = 80480, - [SMALL_STATE(3010)] = 80542, - [SMALL_STATE(3011)] = 80610, - [SMALL_STATE(3012)] = 80724, - [SMALL_STATE(3013)] = 80780, - [SMALL_STATE(3014)] = 80894, - [SMALL_STATE(3015)] = 81008, - [SMALL_STATE(3016)] = 81122, - [SMALL_STATE(3017)] = 81236, - [SMALL_STATE(3018)] = 81350, - [SMALL_STATE(3019)] = 81464, - [SMALL_STATE(3020)] = 81578, - [SMALL_STATE(3021)] = 81636, - [SMALL_STATE(3022)] = 81696, - [SMALL_STATE(3023)] = 81760, - [SMALL_STATE(3024)] = 81824, - [SMALL_STATE(3025)] = 81938, - [SMALL_STATE(3026)] = 82006, - [SMALL_STATE(3027)] = 82120, - [SMALL_STATE(3028)] = 82176, - [SMALL_STATE(3029)] = 82232, - [SMALL_STATE(3030)] = 82288, - [SMALL_STATE(3031)] = 82346, - [SMALL_STATE(3032)] = 82402, - [SMALL_STATE(3033)] = 82516, - [SMALL_STATE(3034)] = 82630, - [SMALL_STATE(3035)] = 82736, - [SMALL_STATE(3036)] = 82828, - [SMALL_STATE(3037)] = 82884, - [SMALL_STATE(3038)] = 82968, - [SMALL_STATE(3039)] = 83024, - [SMALL_STATE(3040)] = 83082, - [SMALL_STATE(3041)] = 83164, - [SMALL_STATE(3042)] = 83264, - [SMALL_STATE(3043)] = 83362, - [SMALL_STATE(3044)] = 83458, - [SMALL_STATE(3045)] = 83514, - [SMALL_STATE(3046)] = 83576, - [SMALL_STATE(3047)] = 83632, - [SMALL_STATE(3048)] = 83692, - [SMALL_STATE(3049)] = 83748, - [SMALL_STATE(3050)] = 83804, - [SMALL_STATE(3051)] = 83888, - [SMALL_STATE(3052)] = 84004, - [SMALL_STATE(3053)] = 84118, - [SMALL_STATE(3054)] = 84176, - [SMALL_STATE(3055)] = 84240, - [SMALL_STATE(3056)] = 84296, - [SMALL_STATE(3057)] = 84352, - [SMALL_STATE(3058)] = 84408, - [SMALL_STATE(3059)] = 84464, - [SMALL_STATE(3060)] = 84526, - [SMALL_STATE(3061)] = 84642, - [SMALL_STATE(3062)] = 84746, - [SMALL_STATE(3063)] = 84848, - [SMALL_STATE(3064)] = 84962, - [SMALL_STATE(3065)] = 85076, - [SMALL_STATE(3066)] = 85132, - [SMALL_STATE(3067)] = 85246, - [SMALL_STATE(3068)] = 85308, - [SMALL_STATE(3069)] = 85364, - [SMALL_STATE(3070)] = 85420, - [SMALL_STATE(3071)] = 85476, - [SMALL_STATE(3072)] = 85532, - [SMALL_STATE(3073)] = 85588, - [SMALL_STATE(3074)] = 85644, - [SMALL_STATE(3075)] = 85700, - [SMALL_STATE(3076)] = 85778, - [SMALL_STATE(3077)] = 85834, - [SMALL_STATE(3078)] = 85890, - [SMALL_STATE(3079)] = 85970, - [SMALL_STATE(3080)] = 86026, - [SMALL_STATE(3081)] = 86082, - [SMALL_STATE(3082)] = 86138, - [SMALL_STATE(3083)] = 86228, - [SMALL_STATE(3084)] = 86288, - [SMALL_STATE(3085)] = 86350, - [SMALL_STATE(3086)] = 86406, - [SMALL_STATE(3087)] = 86462, - [SMALL_STATE(3088)] = 86544, - [SMALL_STATE(3089)] = 86600, - [SMALL_STATE(3090)] = 86656, - [SMALL_STATE(3091)] = 86712, - [SMALL_STATE(3092)] = 86770, - [SMALL_STATE(3093)] = 86826, - [SMALL_STATE(3094)] = 86882, - [SMALL_STATE(3095)] = 86938, - [SMALL_STATE(3096)] = 86996, - [SMALL_STATE(3097)] = 87052, - [SMALL_STATE(3098)] = 87114, - [SMALL_STATE(3099)] = 87170, - [SMALL_STATE(3100)] = 87228, - [SMALL_STATE(3101)] = 87284, - [SMALL_STATE(3102)] = 87340, - [SMALL_STATE(3103)] = 87396, - [SMALL_STATE(3104)] = 87452, - [SMALL_STATE(3105)] = 87508, - [SMALL_STATE(3106)] = 87564, - [SMALL_STATE(3107)] = 87620, - [SMALL_STATE(3108)] = 87678, - [SMALL_STATE(3109)] = 87734, - [SMALL_STATE(3110)] = 87790, - [SMALL_STATE(3111)] = 87868, - [SMALL_STATE(3112)] = 87924, - [SMALL_STATE(3113)] = 87980, - [SMALL_STATE(3114)] = 88044, - [SMALL_STATE(3115)] = 88100, - [SMALL_STATE(3116)] = 88182, - [SMALL_STATE(3117)] = 88272, - [SMALL_STATE(3118)] = 88362, - [SMALL_STATE(3119)] = 88418, - [SMALL_STATE(3120)] = 88478, - [SMALL_STATE(3121)] = 88546, - [SMALL_STATE(3122)] = 88602, - [SMALL_STATE(3123)] = 88660, - [SMALL_STATE(3124)] = 88728, - [SMALL_STATE(3125)] = 88816, - [SMALL_STATE(3126)] = 88872, - [SMALL_STATE(3127)] = 88928, - [SMALL_STATE(3128)] = 89042, - [SMALL_STATE(3129)] = 89156, - [SMALL_STATE(3130)] = 89270, - [SMALL_STATE(3131)] = 89350, - [SMALL_STATE(3132)] = 89406, - [SMALL_STATE(3133)] = 89484, - [SMALL_STATE(3134)] = 89574, - [SMALL_STATE(3135)] = 89636, - [SMALL_STATE(3136)] = 89698, - [SMALL_STATE(3137)] = 89814, - [SMALL_STATE(3138)] = 89896, - [SMALL_STATE(3139)] = 89978, - [SMALL_STATE(3140)] = 90040, - [SMALL_STATE(3141)] = 90131, - [SMALL_STATE(3142)] = 90244, - [SMALL_STATE(3143)] = 90357, - [SMALL_STATE(3144)] = 90430, - [SMALL_STATE(3145)] = 90497, - [SMALL_STATE(3146)] = 90580, - [SMALL_STATE(3147)] = 90653, - [SMALL_STATE(3148)] = 90716, - [SMALL_STATE(3149)] = 90829, - [SMALL_STATE(3150)] = 90896, - [SMALL_STATE(3151)] = 90951, - [SMALL_STATE(3152)] = 91006, - [SMALL_STATE(3153)] = 91065, - [SMALL_STATE(3154)] = 91128, - [SMALL_STATE(3155)] = 91195, - [SMALL_STATE(3156)] = 91268, - [SMALL_STATE(3157)] = 91327, - [SMALL_STATE(3158)] = 91386, - [SMALL_STATE(3159)] = 91467, - [SMALL_STATE(3160)] = 91542, - [SMALL_STATE(3161)] = 91617, - [SMALL_STATE(3162)] = 91692, - [SMALL_STATE(3163)] = 91805, - [SMALL_STATE(3164)] = 91860, - [SMALL_STATE(3165)] = 91915, - [SMALL_STATE(3166)] = 91988, - [SMALL_STATE(3167)] = 92069, - [SMALL_STATE(3168)] = 92124, - [SMALL_STATE(3169)] = 92179, - [SMALL_STATE(3170)] = 92262, - [SMALL_STATE(3171)] = 92321, - [SMALL_STATE(3172)] = 92382, - [SMALL_STATE(3173)] = 92439, - [SMALL_STATE(3174)] = 92552, - [SMALL_STATE(3175)] = 92607, - [SMALL_STATE(3176)] = 92662, - [SMALL_STATE(3177)] = 92721, - [SMALL_STATE(3178)] = 92780, - [SMALL_STATE(3179)] = 92855, - [SMALL_STATE(3180)] = 92910, - [SMALL_STATE(3181)] = 92965, - [SMALL_STATE(3182)] = 93030, - [SMALL_STATE(3183)] = 93093, - [SMALL_STATE(3184)] = 93166, - [SMALL_STATE(3185)] = 93221, - [SMALL_STATE(3186)] = 93334, - [SMALL_STATE(3187)] = 93407, - [SMALL_STATE(3188)] = 93472, - [SMALL_STATE(3189)] = 93585, - [SMALL_STATE(3190)] = 93644, - [SMALL_STATE(3191)] = 93701, - [SMALL_STATE(3192)] = 93776, - [SMALL_STATE(3193)] = 93831, - [SMALL_STATE(3194)] = 93886, - [SMALL_STATE(3195)] = 93941, - [SMALL_STATE(3196)] = 93996, - [SMALL_STATE(3197)] = 94057, - [SMALL_STATE(3198)] = 94112, - [SMALL_STATE(3199)] = 94185, - [SMALL_STATE(3200)] = 94260, - [SMALL_STATE(3201)] = 94321, - [SMALL_STATE(3202)] = 94376, - [SMALL_STATE(3203)] = 94431, - [SMALL_STATE(3204)] = 94504, - [SMALL_STATE(3205)] = 94585, - [SMALL_STATE(3206)] = 94660, - [SMALL_STATE(3207)] = 94721, - [SMALL_STATE(3208)] = 94804, - [SMALL_STATE(3209)] = 94871, - [SMALL_STATE(3210)] = 94926, - [SMALL_STATE(3211)] = 94981, - [SMALL_STATE(3212)] = 95038, - [SMALL_STATE(3213)] = 95105, - [SMALL_STATE(3214)] = 95178, - [SMALL_STATE(3215)] = 95245, - [SMALL_STATE(3216)] = 95328, - [SMALL_STATE(3217)] = 95411, - [SMALL_STATE(3218)] = 95492, - [SMALL_STATE(3219)] = 95547, - [SMALL_STATE(3220)] = 95606, - [SMALL_STATE(3221)] = 95679, - [SMALL_STATE(3222)] = 95734, - [SMALL_STATE(3223)] = 95815, - [SMALL_STATE(3224)] = 95874, - [SMALL_STATE(3225)] = 95931, - [SMALL_STATE(3226)] = 95990, - [SMALL_STATE(3227)] = 96049, - [SMALL_STATE(3228)] = 96112, - [SMALL_STATE(3229)] = 96167, - [SMALL_STATE(3230)] = 96224, - [SMALL_STATE(3231)] = 96279, - [SMALL_STATE(3232)] = 96344, - [SMALL_STATE(3233)] = 96419, - [SMALL_STATE(3234)] = 96476, - [SMALL_STATE(3235)] = 96543, - [SMALL_STATE(3236)] = 96618, - [SMALL_STATE(3237)] = 96731, - [SMALL_STATE(3238)] = 96804, - [SMALL_STATE(3239)] = 96917, - [SMALL_STATE(3240)] = 96990, - [SMALL_STATE(3241)] = 97049, - [SMALL_STATE(3242)] = 97104, - [SMALL_STATE(3243)] = 97203, - [SMALL_STATE(3244)] = 97258, - [SMALL_STATE(3245)] = 97313, - [SMALL_STATE(3246)] = 97386, - [SMALL_STATE(3247)] = 97449, - [SMALL_STATE(3248)] = 97512, - [SMALL_STATE(3249)] = 97571, - [SMALL_STATE(3250)] = 97630, - [SMALL_STATE(3251)] = 97689, - [SMALL_STATE(3252)] = 97746, - [SMALL_STATE(3253)] = 97807, - [SMALL_STATE(3254)] = 97882, - [SMALL_STATE(3255)] = 97941, - [SMALL_STATE(3256)] = 98054, - [SMALL_STATE(3257)] = 98127, - [SMALL_STATE(3258)] = 98200, - [SMALL_STATE(3259)] = 98313, - [SMALL_STATE(3260)] = 98426, - [SMALL_STATE(3261)] = 98507, - [SMALL_STATE(3262)] = 98566, - [SMALL_STATE(3263)] = 98641, - [SMALL_STATE(3264)] = 98696, - [SMALL_STATE(3265)] = 98809, - [SMALL_STATE(3266)] = 98896, - [SMALL_STATE(3267)] = 98973, - [SMALL_STATE(3268)] = 99086, - [SMALL_STATE(3269)] = 99143, - [SMALL_STATE(3270)] = 99200, - [SMALL_STATE(3271)] = 99259, - [SMALL_STATE(3272)] = 99360, - [SMALL_STATE(3273)] = 99415, - [SMALL_STATE(3274)] = 99528, - [SMALL_STATE(3275)] = 99589, - [SMALL_STATE(3276)] = 99646, - [SMALL_STATE(3277)] = 99707, - [SMALL_STATE(3278)] = 99766, - [SMALL_STATE(3279)] = 99869, - [SMALL_STATE(3280)] = 99928, - [SMALL_STATE(3281)] = 100041, - [SMALL_STATE(3282)] = 100124, - [SMALL_STATE(3283)] = 100219, - [SMALL_STATE(3284)] = 100332, - [SMALL_STATE(3285)] = 100445, - [SMALL_STATE(3286)] = 100558, - [SMALL_STATE(3287)] = 100655, - [SMALL_STATE(3288)] = 100768, - [SMALL_STATE(3289)] = 100843, - [SMALL_STATE(3290)] = 100898, - [SMALL_STATE(3291)] = 100953, - [SMALL_STATE(3292)] = 101014, - [SMALL_STATE(3293)] = 101075, - [SMALL_STATE(3294)] = 101156, - [SMALL_STATE(3295)] = 101219, - [SMALL_STATE(3296)] = 101302, - [SMALL_STATE(3297)] = 101361, - [SMALL_STATE(3298)] = 101416, - [SMALL_STATE(3299)] = 101473, - [SMALL_STATE(3300)] = 101528, - [SMALL_STATE(3301)] = 101585, - [SMALL_STATE(3302)] = 101642, - [SMALL_STATE(3303)] = 101755, - [SMALL_STATE(3304)] = 101868, - [SMALL_STATE(3305)] = 101981, - [SMALL_STATE(3306)] = 102038, - [SMALL_STATE(3307)] = 102143, - [SMALL_STATE(3308)] = 102234, - [SMALL_STATE(3309)] = 102293, - [SMALL_STATE(3310)] = 102352, - [SMALL_STATE(3311)] = 102411, - [SMALL_STATE(3312)] = 102524, - [SMALL_STATE(3313)] = 102579, - [SMALL_STATE(3314)] = 102662, - [SMALL_STATE(3315)] = 102721, - [SMALL_STATE(3316)] = 102786, - [SMALL_STATE(3317)] = 102849, - [SMALL_STATE(3318)] = 102926, - [SMALL_STATE(3319)] = 103001, - [SMALL_STATE(3320)] = 103106, - [SMALL_STATE(3321)] = 103219, - [SMALL_STATE(3322)] = 103332, - [SMALL_STATE(3323)] = 103413, - [SMALL_STATE(3324)] = 103470, - [SMALL_STATE(3325)] = 103583, - [SMALL_STATE(3326)] = 103658, - [SMALL_STATE(3327)] = 103715, - [SMALL_STATE(3328)] = 103770, - [SMALL_STATE(3329)] = 103825, - [SMALL_STATE(3330)] = 103898, - [SMALL_STATE(3331)] = 103957, - [SMALL_STATE(3332)] = 104056, - [SMALL_STATE(3333)] = 104117, - [SMALL_STATE(3334)] = 104192, - [SMALL_STATE(3335)] = 104289, - [SMALL_STATE(3336)] = 104362, - [SMALL_STATE(3337)] = 104417, - [SMALL_STATE(3338)] = 104492, - [SMALL_STATE(3339)] = 104587, - [SMALL_STATE(3340)] = 104660, - [SMALL_STATE(3341)] = 104715, - [SMALL_STATE(3342)] = 104788, - [SMALL_STATE(3343)] = 104901, - [SMALL_STATE(3344)] = 105014, - [SMALL_STATE(3345)] = 105069, - [SMALL_STATE(3346)] = 105152, - [SMALL_STATE(3347)] = 105255, - [SMALL_STATE(3348)] = 105310, - [SMALL_STATE(3349)] = 105365, - [SMALL_STATE(3350)] = 105420, - [SMALL_STATE(3351)] = 105475, - [SMALL_STATE(3352)] = 105542, - [SMALL_STATE(3353)] = 105655, - [SMALL_STATE(3354)] = 105710, - [SMALL_STATE(3355)] = 105777, - [SMALL_STATE(3356)] = 105840, - [SMALL_STATE(3357)] = 105953, - [SMALL_STATE(3358)] = 106008, - [SMALL_STATE(3359)] = 106081, - [SMALL_STATE(3360)] = 106136, - [SMALL_STATE(3361)] = 106209, - [SMALL_STATE(3362)] = 106284, - [SMALL_STATE(3363)] = 106365, - [SMALL_STATE(3364)] = 106478, - [SMALL_STATE(3365)] = 106551, - [SMALL_STATE(3366)] = 106634, - [SMALL_STATE(3367)] = 106701, - [SMALL_STATE(3368)] = 106814, - [SMALL_STATE(3369)] = 106927, - [SMALL_STATE(3370)] = 107040, - [SMALL_STATE(3371)] = 107121, - [SMALL_STATE(3372)] = 107234, - [SMALL_STATE(3373)] = 107309, - [SMALL_STATE(3374)] = 107422, - [SMALL_STATE(3375)] = 107479, - [SMALL_STATE(3376)] = 107534, - [SMALL_STATE(3377)] = 107649, - [SMALL_STATE(3378)] = 107762, - [SMALL_STATE(3379)] = 107849, - [SMALL_STATE(3380)] = 107930, - [SMALL_STATE(3381)] = 108007, - [SMALL_STATE(3382)] = 108108, - [SMALL_STATE(3383)] = 108221, - [SMALL_STATE(3384)] = 108324, - [SMALL_STATE(3385)] = 108407, - [SMALL_STATE(3386)] = 108474, - [SMALL_STATE(3387)] = 108569, - [SMALL_STATE(3388)] = 108666, - [SMALL_STATE(3389)] = 108741, - [SMALL_STATE(3390)] = 108840, - [SMALL_STATE(3391)] = 108921, - [SMALL_STATE(3392)] = 109004, - [SMALL_STATE(3393)] = 109095, - [SMALL_STATE(3394)] = 109200, - [SMALL_STATE(3395)] = 109273, - [SMALL_STATE(3396)] = 109386, - [SMALL_STATE(3397)] = 109499, - [SMALL_STATE(3398)] = 109592, - [SMALL_STATE(3399)] = 109705, - [SMALL_STATE(3400)] = 109818, - [SMALL_STATE(3401)] = 109931, - [SMALL_STATE(3402)] = 110044, - [SMALL_STATE(3403)] = 110107, - [SMALL_STATE(3404)] = 110166, - [SMALL_STATE(3405)] = 110221, - [SMALL_STATE(3406)] = 110280, - [SMALL_STATE(3407)] = 110393, - [SMALL_STATE(3408)] = 110506, - [SMALL_STATE(3409)] = 110565, - [SMALL_STATE(3410)] = 110620, - [SMALL_STATE(3411)] = 110675, - [SMALL_STATE(3412)] = 110730, - [SMALL_STATE(3413)] = 110843, - [SMALL_STATE(3414)] = 110926, - [SMALL_STATE(3415)] = 111027, - [SMALL_STATE(3416)] = 111108, - [SMALL_STATE(3417)] = 111185, - [SMALL_STATE(3418)] = 111252, - [SMALL_STATE(3419)] = 111319, - [SMALL_STATE(3420)] = 111386, - [SMALL_STATE(3421)] = 111473, - [SMALL_STATE(3422)] = 111586, - [SMALL_STATE(3423)] = 111699, - [SMALL_STATE(3424)] = 111812, - [SMALL_STATE(3425)] = 111871, - [SMALL_STATE(3426)] = 111926, - [SMALL_STATE(3427)] = 112039, - [SMALL_STATE(3428)] = 112152, - [SMALL_STATE(3429)] = 112265, - [SMALL_STATE(3430)] = 112341, - [SMALL_STATE(3431)] = 112435, - [SMALL_STATE(3432)] = 112503, - [SMALL_STATE(3433)] = 112565, - [SMALL_STATE(3434)] = 112627, - [SMALL_STATE(3435)] = 112737, - [SMALL_STATE(3436)] = 112805, - [SMALL_STATE(3437)] = 112885, - [SMALL_STATE(3438)] = 112941, - [SMALL_STATE(3439)] = 113051, - [SMALL_STATE(3440)] = 113127, - [SMALL_STATE(3441)] = 113195, - [SMALL_STATE(3442)] = 113263, - [SMALL_STATE(3443)] = 113373, - [SMALL_STATE(3444)] = 113435, - [SMALL_STATE(3445)] = 113503, - [SMALL_STATE(3446)] = 113613, - [SMALL_STATE(3447)] = 113681, - [SMALL_STATE(3448)] = 113791, - [SMALL_STATE(3449)] = 113859, - [SMALL_STATE(3450)] = 113969, - [SMALL_STATE(3451)] = 114053, - [SMALL_STATE(3452)] = 114109, - [SMALL_STATE(3453)] = 114185, - [SMALL_STATE(3454)] = 114253, - [SMALL_STATE(3455)] = 114363, - [SMALL_STATE(3456)] = 114437, - [SMALL_STATE(3457)] = 114505, - [SMALL_STATE(3458)] = 114573, - [SMALL_STATE(3459)] = 114683, - [SMALL_STATE(3460)] = 114793, - [SMALL_STATE(3461)] = 114849, - [SMALL_STATE(3462)] = 114959, - [SMALL_STATE(3463)] = 115035, - [SMALL_STATE(3464)] = 115101, - [SMALL_STATE(3465)] = 115211, - [SMALL_STATE(3466)] = 115283, - [SMALL_STATE(3467)] = 115393, - [SMALL_STATE(3468)] = 115455, - [SMALL_STATE(3469)] = 115523, - [SMALL_STATE(3470)] = 115579, - [SMALL_STATE(3471)] = 115647, - [SMALL_STATE(3472)] = 115715, - [SMALL_STATE(3473)] = 115783, - [SMALL_STATE(3474)] = 115893, - [SMALL_STATE(3475)] = 116003, - [SMALL_STATE(3476)] = 116113, - [SMALL_STATE(3477)] = 116223, - [SMALL_STATE(3478)] = 116283, - [SMALL_STATE(3479)] = 116369, - [SMALL_STATE(3480)] = 116445, - [SMALL_STATE(3481)] = 116549, - [SMALL_STATE(3482)] = 116649, - [SMALL_STATE(3483)] = 116751, - [SMALL_STATE(3484)] = 116811, - [SMALL_STATE(3485)] = 116893, - [SMALL_STATE(3486)] = 116953, - [SMALL_STATE(3487)] = 117021, - [SMALL_STATE(3488)] = 117089, - [SMALL_STATE(3489)] = 117171, - [SMALL_STATE(3490)] = 117261, - [SMALL_STATE(3491)] = 117329, - [SMALL_STATE(3492)] = 117385, - [SMALL_STATE(3493)] = 117467, - [SMALL_STATE(3494)] = 117547, - [SMALL_STATE(3495)] = 117615, - [SMALL_STATE(3496)] = 117703, - [SMALL_STATE(3497)] = 117801, - [SMALL_STATE(3498)] = 117859, - [SMALL_STATE(3499)] = 117921, - [SMALL_STATE(3500)] = 117989, - [SMALL_STATE(3501)] = 118065, - [SMALL_STATE(3502)] = 118141, - [SMALL_STATE(3503)] = 118203, - [SMALL_STATE(3504)] = 118279, - [SMALL_STATE(3505)] = 118375, - [SMALL_STATE(3506)] = 118431, - [SMALL_STATE(3507)] = 118487, - [SMALL_STATE(3508)] = 118555, - [SMALL_STATE(3509)] = 118613, - [SMALL_STATE(3510)] = 118681, - [SMALL_STATE(3511)] = 118749, - [SMALL_STATE(3512)] = 118809, - [SMALL_STATE(3513)] = 118877, - [SMALL_STATE(3514)] = 118935, - [SMALL_STATE(3515)] = 118997, - [SMALL_STATE(3516)] = 119056, - [SMALL_STATE(3517)] = 119125, - [SMALL_STATE(3518)] = 119184, - [SMALL_STATE(3519)] = 119257, - [SMALL_STATE(3520)] = 119316, - [SMALL_STATE(3521)] = 119385, - [SMALL_STATE(3522)] = 119464, - [SMALL_STATE(3523)] = 119533, - [SMALL_STATE(3524)] = 119608, - [SMALL_STATE(3525)] = 119663, - [SMALL_STATE(3526)] = 119736, - [SMALL_STATE(3527)] = 119795, - [SMALL_STATE(3528)] = 119854, - [SMALL_STATE(3529)] = 119909, - [SMALL_STATE(3530)] = 119978, - [SMALL_STATE(3531)] = 120051, - [SMALL_STATE(3532)] = 120106, - [SMALL_STATE(3533)] = 120165, - [SMALL_STATE(3534)] = 120220, - [SMALL_STATE(3535)] = 120293, - [SMALL_STATE(3536)] = 120386, - [SMALL_STATE(3537)] = 120461, - [SMALL_STATE(3538)] = 120530, - [SMALL_STATE(3539)] = 120603, - [SMALL_STATE(3540)] = 120662, - [SMALL_STATE(3541)] = 120717, - [SMALL_STATE(3542)] = 120776, - [SMALL_STATE(3543)] = 120831, - [SMALL_STATE(3544)] = 120886, - [SMALL_STATE(3545)] = 120941, - [SMALL_STATE(3546)] = 121002, - [SMALL_STATE(3547)] = 121061, - [SMALL_STATE(3548)] = 121138, - [SMALL_STATE(3549)] = 121211, - [SMALL_STATE(3550)] = 121266, - [SMALL_STATE(3551)] = 121321, - [SMALL_STATE(3552)] = 121380, - [SMALL_STATE(3553)] = 121435, - [SMALL_STATE(3554)] = 121490, - [SMALL_STATE(3555)] = 121556, - [SMALL_STATE(3556)] = 121618, - [SMALL_STATE(3557)] = 121684, - [SMALL_STATE(3558)] = 121750, - [SMALL_STATE(3559)] = 121816, - [SMALL_STATE(3560)] = 121882, - [SMALL_STATE(3561)] = 121944, - [SMALL_STATE(3562)] = 122010, - [SMALL_STATE(3563)] = 122072, - [SMALL_STATE(3564)] = 122134, - [SMALL_STATE(3565)] = 122188, - [SMALL_STATE(3566)] = 122254, - [SMALL_STATE(3567)] = 122320, - [SMALL_STATE(3568)] = 122390, - [SMALL_STATE(3569)] = 122448, - [SMALL_STATE(3570)] = 122514, - [SMALL_STATE(3571)] = 122572, - [SMALL_STATE(3572)] = 122630, - [SMALL_STATE(3573)] = 122696, - [SMALL_STATE(3574)] = 122758, - [SMALL_STATE(3575)] = 122820, - [SMALL_STATE(3576)] = 122882, - [SMALL_STATE(3577)] = 122952, - [SMALL_STATE(3578)] = 123014, - [SMALL_STATE(3579)] = 123076, - [SMALL_STATE(3580)] = 123142, - [SMALL_STATE(3581)] = 123204, - [SMALL_STATE(3582)] = 123258, - [SMALL_STATE(3583)] = 123316, - [SMALL_STATE(3584)] = 123370, - [SMALL_STATE(3585)] = 123428, - [SMALL_STATE(3586)] = 123494, - [SMALL_STATE(3587)] = 123562, - [SMALL_STATE(3588)] = 123634, - [SMALL_STATE(3589)] = 123696, - [SMALL_STATE(3590)] = 123762, - [SMALL_STATE(3591)] = 123824, - [SMALL_STATE(3592)] = 123890, - [SMALL_STATE(3593)] = 123944, - [SMALL_STATE(3594)] = 124010, - [SMALL_STATE(3595)] = 124064, - [SMALL_STATE(3596)] = 124130, - [SMALL_STATE(3597)] = 124192, - [SMALL_STATE(3598)] = 124254, - [SMALL_STATE(3599)] = 124319, - [SMALL_STATE(3600)] = 124372, - [SMALL_STATE(3601)] = 124425, - [SMALL_STATE(3602)] = 124478, - [SMALL_STATE(3603)] = 124531, - [SMALL_STATE(3604)] = 124584, - [SMALL_STATE(3605)] = 124637, - [SMALL_STATE(3606)] = 124690, - [SMALL_STATE(3607)] = 124743, - [SMALL_STATE(3608)] = 124796, - [SMALL_STATE(3609)] = 124849, - [SMALL_STATE(3610)] = 124923, - [SMALL_STATE(3611)] = 124973, - [SMALL_STATE(3612)] = 125025, - [SMALL_STATE(3613)] = 125075, - [SMALL_STATE(3614)] = 125125, - [SMALL_STATE(3615)] = 125175, - [SMALL_STATE(3616)] = 125225, - [SMALL_STATE(3617)] = 125275, - [SMALL_STATE(3618)] = 125325, - [SMALL_STATE(3619)] = 125375, - [SMALL_STATE(3620)] = 125429, - [SMALL_STATE(3621)] = 125479, - [SMALL_STATE(3622)] = 125529, - [SMALL_STATE(3623)] = 125583, - [SMALL_STATE(3624)] = 125633, - [SMALL_STATE(3625)] = 125683, - [SMALL_STATE(3626)] = 125733, - [SMALL_STATE(3627)] = 125783, - [SMALL_STATE(3628)] = 125833, - [SMALL_STATE(3629)] = 125883, - [SMALL_STATE(3630)] = 125933, - [SMALL_STATE(3631)] = 125983, - [SMALL_STATE(3632)] = 126033, - [SMALL_STATE(3633)] = 126083, - [SMALL_STATE(3634)] = 126133, - [SMALL_STATE(3635)] = 126183, - [SMALL_STATE(3636)] = 126233, - [SMALL_STATE(3637)] = 126283, - [SMALL_STATE(3638)] = 126333, - [SMALL_STATE(3639)] = 126383, - [SMALL_STATE(3640)] = 126433, - [SMALL_STATE(3641)] = 126483, - [SMALL_STATE(3642)] = 126533, - [SMALL_STATE(3643)] = 126583, - [SMALL_STATE(3644)] = 126633, - [SMALL_STATE(3645)] = 126683, - [SMALL_STATE(3646)] = 126733, - [SMALL_STATE(3647)] = 126785, - [SMALL_STATE(3648)] = 126835, - [SMALL_STATE(3649)] = 126885, - [SMALL_STATE(3650)] = 126935, - [SMALL_STATE(3651)] = 126985, - [SMALL_STATE(3652)] = 127035, - [SMALL_STATE(3653)] = 127085, - [SMALL_STATE(3654)] = 127135, - [SMALL_STATE(3655)] = 127185, - [SMALL_STATE(3656)] = 127235, - [SMALL_STATE(3657)] = 127285, - [SMALL_STATE(3658)] = 127335, - [SMALL_STATE(3659)] = 127385, - [SMALL_STATE(3660)] = 127441, - [SMALL_STATE(3661)] = 127491, - [SMALL_STATE(3662)] = 127541, - [SMALL_STATE(3663)] = 127591, - [SMALL_STATE(3664)] = 127641, - [SMALL_STATE(3665)] = 127697, - [SMALL_STATE(3666)] = 127747, - [SMALL_STATE(3667)] = 127812, - [SMALL_STATE(3668)] = 127879, - [SMALL_STATE(3669)] = 127944, - [SMALL_STATE(3670)] = 128011, - [SMALL_STATE(3671)] = 128058, - [SMALL_STATE(3672)] = 128105, - [SMALL_STATE(3673)] = 128172, - [SMALL_STATE(3674)] = 128219, - [SMALL_STATE(3675)] = 128270, - [SMALL_STATE(3676)] = 128335, - [SMALL_STATE(3677)] = 128386, - [SMALL_STATE(3678)] = 128433, - [SMALL_STATE(3679)] = 128498, - [SMALL_STATE(3680)] = 128545, - [SMALL_STATE(3681)] = 128592, - [SMALL_STATE(3682)] = 128655, - [SMALL_STATE(3683)] = 128702, - [SMALL_STATE(3684)] = 128762, - [SMALL_STATE(3685)] = 128822, - [SMALL_STATE(3686)] = 128882, - [SMALL_STATE(3687)] = 128934, - [SMALL_STATE(3688)] = 128994, - [SMALL_STATE(3689)] = 129054, - [SMALL_STATE(3690)] = 129114, - [SMALL_STATE(3691)] = 129174, - [SMALL_STATE(3692)] = 129234, - [SMALL_STATE(3693)] = 129294, - [SMALL_STATE(3694)] = 129354, - [SMALL_STATE(3695)] = 129414, - [SMALL_STATE(3696)] = 129474, - [SMALL_STATE(3697)] = 129534, - [SMALL_STATE(3698)] = 129594, - [SMALL_STATE(3699)] = 129670, - [SMALL_STATE(3700)] = 129746, - [SMALL_STATE(3701)] = 129806, - [SMALL_STATE(3702)] = 129866, - [SMALL_STATE(3703)] = 129926, - [SMALL_STATE(3704)] = 129986, - [SMALL_STATE(3705)] = 130046, - [SMALL_STATE(3706)] = 130106, - [SMALL_STATE(3707)] = 130166, - [SMALL_STATE(3708)] = 130226, - [SMALL_STATE(3709)] = 130286, - [SMALL_STATE(3710)] = 130346, - [SMALL_STATE(3711)] = 130406, - [SMALL_STATE(3712)] = 130466, - [SMALL_STATE(3713)] = 130526, - [SMALL_STATE(3714)] = 130611, - [SMALL_STATE(3715)] = 130672, - [SMALL_STATE(3716)] = 130757, - [SMALL_STATE(3717)] = 130842, - [SMALL_STATE(3718)] = 130903, - [SMALL_STATE(3719)] = 130964, - [SMALL_STATE(3720)] = 131025, - [SMALL_STATE(3721)] = 131086, - [SMALL_STATE(3722)] = 131147, - [SMALL_STATE(3723)] = 131232, - [SMALL_STATE(3724)] = 131293, - [SMALL_STATE(3725)] = 131364, - [SMALL_STATE(3726)] = 131449, - [SMALL_STATE(3727)] = 131510, - [SMALL_STATE(3728)] = 131571, - [SMALL_STATE(3729)] = 131632, - [SMALL_STATE(3730)] = 131693, - [SMALL_STATE(3731)] = 131778, - [SMALL_STATE(3732)] = 131839, - [SMALL_STATE(3733)] = 131924, - [SMALL_STATE(3734)] = 131973, - [SMALL_STATE(3735)] = 132034, - [SMALL_STATE(3736)] = 132119, - [SMALL_STATE(3737)] = 132180, - [SMALL_STATE(3738)] = 132241, - [SMALL_STATE(3739)] = 132326, - [SMALL_STATE(3740)] = 132387, - [SMALL_STATE(3741)] = 132454, - [SMALL_STATE(3742)] = 132515, - [SMALL_STATE(3743)] = 132582, - [SMALL_STATE(3744)] = 132649, - [SMALL_STATE(3745)] = 132720, - [SMALL_STATE(3746)] = 132781, - [SMALL_STATE(3747)] = 132866, - [SMALL_STATE(3748)] = 132951, - [SMALL_STATE(3749)] = 133012, - [SMALL_STATE(3750)] = 133073, - [SMALL_STATE(3751)] = 133134, - [SMALL_STATE(3752)] = 133195, - [SMALL_STATE(3753)] = 133240, - [SMALL_STATE(3754)] = 133301, - [SMALL_STATE(3755)] = 133362, - [SMALL_STATE(3756)] = 133423, - [SMALL_STATE(3757)] = 133494, - [SMALL_STATE(3758)] = 133579, - [SMALL_STATE(3759)] = 133640, - [SMALL_STATE(3760)] = 133701, - [SMALL_STATE(3761)] = 133768, - [SMALL_STATE(3762)] = 133829, - [SMALL_STATE(3763)] = 133890, - [SMALL_STATE(3764)] = 133951, - [SMALL_STATE(3765)] = 134015, - [SMALL_STATE(3766)] = 134079, - [SMALL_STATE(3767)] = 134125, - [SMALL_STATE(3768)] = 134189, - [SMALL_STATE(3769)] = 134253, - [SMALL_STATE(3770)] = 134317, - [SMALL_STATE(3771)] = 134381, - [SMALL_STATE(3772)] = 134445, - [SMALL_STATE(3773)] = 134509, - [SMALL_STATE(3774)] = 134573, - [SMALL_STATE(3775)] = 134631, - [SMALL_STATE(3776)] = 134695, - [SMALL_STATE(3777)] = 134755, - [SMALL_STATE(3778)] = 134819, - [SMALL_STATE(3779)] = 134883, - [SMALL_STATE(3780)] = 134947, - [SMALL_STATE(3781)] = 135011, - [SMALL_STATE(3782)] = 135075, - [SMALL_STATE(3783)] = 135135, - [SMALL_STATE(3784)] = 135199, - [SMALL_STATE(3785)] = 135242, - [SMALL_STATE(3786)] = 135299, - [SMALL_STATE(3787)] = 135356, - [SMALL_STATE(3788)] = 135411, - [SMALL_STATE(3789)] = 135468, - [SMALL_STATE(3790)] = 135525, - [SMALL_STATE(3791)] = 135580, - [SMALL_STATE(3792)] = 135623, - [SMALL_STATE(3793)] = 135678, - [SMALL_STATE(3794)] = 135733, - [SMALL_STATE(3795)] = 135788, - [SMALL_STATE(3796)] = 135843, - [SMALL_STATE(3797)] = 135898, - [SMALL_STATE(3798)] = 135953, - [SMALL_STATE(3799)] = 136008, - [SMALL_STATE(3800)] = 136063, - [SMALL_STATE(3801)] = 136118, - [SMALL_STATE(3802)] = 136173, - [SMALL_STATE(3803)] = 136228, - [SMALL_STATE(3804)] = 136271, - [SMALL_STATE(3805)] = 136314, - [SMALL_STATE(3806)] = 136369, - [SMALL_STATE(3807)] = 136424, - [SMALL_STATE(3808)] = 136481, - [SMALL_STATE(3809)] = 136536, - [SMALL_STATE(3810)] = 136591, - [SMALL_STATE(3811)] = 136646, - [SMALL_STATE(3812)] = 136701, - [SMALL_STATE(3813)] = 136744, - [SMALL_STATE(3814)] = 136801, - [SMALL_STATE(3815)] = 136856, - [SMALL_STATE(3816)] = 136911, - [SMALL_STATE(3817)] = 136966, - [SMALL_STATE(3818)] = 137021, - [SMALL_STATE(3819)] = 137076, - [SMALL_STATE(3820)] = 137131, - [SMALL_STATE(3821)] = 137188, - [SMALL_STATE(3822)] = 137243, - [SMALL_STATE(3823)] = 137298, - [SMALL_STATE(3824)] = 137353, - [SMALL_STATE(3825)] = 137408, - [SMALL_STATE(3826)] = 137463, - [SMALL_STATE(3827)] = 137518, - [SMALL_STATE(3828)] = 137575, - [SMALL_STATE(3829)] = 137630, - [SMALL_STATE(3830)] = 137687, - [SMALL_STATE(3831)] = 137744, - [SMALL_STATE(3832)] = 137799, - [SMALL_STATE(3833)] = 137854, - [SMALL_STATE(3834)] = 137909, - [SMALL_STATE(3835)] = 137964, - [SMALL_STATE(3836)] = 138021, - [SMALL_STATE(3837)] = 138078, - [SMALL_STATE(3838)] = 138135, - [SMALL_STATE(3839)] = 138190, - [SMALL_STATE(3840)] = 138245, - [SMALL_STATE(3841)] = 138300, - [SMALL_STATE(3842)] = 138357, - [SMALL_STATE(3843)] = 138400, - [SMALL_STATE(3844)] = 138455, - [SMALL_STATE(3845)] = 138510, - [SMALL_STATE(3846)] = 138550, - [SMALL_STATE(3847)] = 138585, - [SMALL_STATE(3848)] = 138632, - [SMALL_STATE(3849)] = 138679, - [SMALL_STATE(3850)] = 138726, - [SMALL_STATE(3851)] = 138761, - [SMALL_STATE(3852)] = 138796, - [SMALL_STATE(3853)] = 138830, - [SMALL_STATE(3854)] = 138864, - [SMALL_STATE(3855)] = 138905, - [SMALL_STATE(3856)] = 138938, - [SMALL_STATE(3857)] = 138971, - [SMALL_STATE(3858)] = 139004, - [SMALL_STATE(3859)] = 139037, - [SMALL_STATE(3860)] = 139070, - [SMALL_STATE(3861)] = 139103, - [SMALL_STATE(3862)] = 139136, - [SMALL_STATE(3863)] = 139169, - [SMALL_STATE(3864)] = 139202, - [SMALL_STATE(3865)] = 139235, - [SMALL_STATE(3866)] = 139268, - [SMALL_STATE(3867)] = 139301, - [SMALL_STATE(3868)] = 139334, - [SMALL_STATE(3869)] = 139367, - [SMALL_STATE(3870)] = 139400, - [SMALL_STATE(3871)] = 139433, - [SMALL_STATE(3872)] = 139466, - [SMALL_STATE(3873)] = 139499, - [SMALL_STATE(3874)] = 139532, - [SMALL_STATE(3875)] = 139565, - [SMALL_STATE(3876)] = 139598, - [SMALL_STATE(3877)] = 139631, - [SMALL_STATE(3878)] = 139664, - [SMALL_STATE(3879)] = 139697, - [SMALL_STATE(3880)] = 139730, - [SMALL_STATE(3881)] = 139763, - [SMALL_STATE(3882)] = 139796, - [SMALL_STATE(3883)] = 139829, - [SMALL_STATE(3884)] = 139862, - [SMALL_STATE(3885)] = 139895, - [SMALL_STATE(3886)] = 139928, - [SMALL_STATE(3887)] = 139961, - [SMALL_STATE(3888)] = 139994, - [SMALL_STATE(3889)] = 140027, - [SMALL_STATE(3890)] = 140081, - [SMALL_STATE(3891)] = 140135, - [SMALL_STATE(3892)] = 140189, - [SMALL_STATE(3893)] = 140227, - [SMALL_STATE(3894)] = 140281, - [SMALL_STATE(3895)] = 140335, - [SMALL_STATE(3896)] = 140366, - [SMALL_STATE(3897)] = 140397, - [SMALL_STATE(3898)] = 140430, - [SMALL_STATE(3899)] = 140461, - [SMALL_STATE(3900)] = 140504, - [SMALL_STATE(3901)] = 140535, - [SMALL_STATE(3902)] = 140578, - [SMALL_STATE(3903)] = 140609, - [SMALL_STATE(3904)] = 140644, - [SMALL_STATE(3905)] = 140675, - [SMALL_STATE(3906)] = 140718, - [SMALL_STATE(3907)] = 140749, - [SMALL_STATE(3908)] = 140780, - [SMALL_STATE(3909)] = 140811, - [SMALL_STATE(3910)] = 140842, - [SMALL_STATE(3911)] = 140873, - [SMALL_STATE(3912)] = 140904, - [SMALL_STATE(3913)] = 140935, - [SMALL_STATE(3914)] = 140966, - [SMALL_STATE(3915)] = 140997, - [SMALL_STATE(3916)] = 141032, - [SMALL_STATE(3917)] = 141063, - [SMALL_STATE(3918)] = 141094, - [SMALL_STATE(3919)] = 141127, - [SMALL_STATE(3920)] = 141158, - [SMALL_STATE(3921)] = 141189, - [SMALL_STATE(3922)] = 141220, - [SMALL_STATE(3923)] = 141251, - [SMALL_STATE(3924)] = 141283, - [SMALL_STATE(3925)] = 141313, - [SMALL_STATE(3926)] = 141343, - [SMALL_STATE(3927)] = 141375, - [SMALL_STATE(3928)] = 141407, - [SMALL_STATE(3929)] = 141442, - [SMALL_STATE(3930)] = 141471, - [SMALL_STATE(3931)] = 141508, - [SMALL_STATE(3932)] = 141547, - [SMALL_STATE(3933)] = 141576, - [SMALL_STATE(3934)] = 141605, - [SMALL_STATE(3935)] = 141634, - [SMALL_STATE(3936)] = 141663, - [SMALL_STATE(3937)] = 141702, - [SMALL_STATE(3938)] = 141731, - [SMALL_STATE(3939)] = 141760, - [SMALL_STATE(3940)] = 141789, - [SMALL_STATE(3941)] = 141818, - [SMALL_STATE(3942)] = 141845, - [SMALL_STATE(3943)] = 141872, - [SMALL_STATE(3944)] = 141911, - [SMALL_STATE(3945)] = 141940, - [SMALL_STATE(3946)] = 141969, - [SMALL_STATE(3947)] = 142008, - [SMALL_STATE(3948)] = 142037, - [SMALL_STATE(3949)] = 142066, - [SMALL_STATE(3950)] = 142101, - [SMALL_STATE(3951)] = 142130, - [SMALL_STATE(3952)] = 142167, - [SMALL_STATE(3953)] = 142196, - [SMALL_STATE(3954)] = 142231, - [SMALL_STATE(3955)] = 142260, - [SMALL_STATE(3956)] = 142295, - [SMALL_STATE(3957)] = 142330, - [SMALL_STATE(3958)] = 142369, - [SMALL_STATE(3959)] = 142396, - [SMALL_STATE(3960)] = 142425, - [SMALL_STATE(3961)] = 142460, - [SMALL_STATE(3962)] = 142499, - [SMALL_STATE(3963)] = 142538, - [SMALL_STATE(3964)] = 142577, - [SMALL_STATE(3965)] = 142616, - [SMALL_STATE(3966)] = 142653, - [SMALL_STATE(3967)] = 142682, - [SMALL_STATE(3968)] = 142719, - [SMALL_STATE(3969)] = 142748, - [SMALL_STATE(3970)] = 142787, - [SMALL_STATE(3971)] = 142816, - [SMALL_STATE(3972)] = 142855, - [SMALL_STATE(3973)] = 142882, - [SMALL_STATE(3974)] = 142911, - [SMALL_STATE(3975)] = 142940, - [SMALL_STATE(3976)] = 142969, - [SMALL_STATE(3977)] = 143000, - [SMALL_STATE(3978)] = 143029, - [SMALL_STATE(3979)] = 143058, - [SMALL_STATE(3980)] = 143087, - [SMALL_STATE(3981)] = 143126, - [SMALL_STATE(3982)] = 143155, - [SMALL_STATE(3983)] = 143184, - [SMALL_STATE(3984)] = 143213, - [SMALL_STATE(3985)] = 143240, - [SMALL_STATE(3986)] = 143271, - [SMALL_STATE(3987)] = 143298, - [SMALL_STATE(3988)] = 143327, - [SMALL_STATE(3989)] = 143356, - [SMALL_STATE(3990)] = 143387, - [SMALL_STATE(3991)] = 143416, - [SMALL_STATE(3992)] = 143445, - [SMALL_STATE(3993)] = 143472, - [SMALL_STATE(3994)] = 143499, - [SMALL_STATE(3995)] = 143538, - [SMALL_STATE(3996)] = 143577, - [SMALL_STATE(3997)] = 143616, - [SMALL_STATE(3998)] = 143653, - [SMALL_STATE(3999)] = 143682, - [SMALL_STATE(4000)] = 143711, - [SMALL_STATE(4001)] = 143740, - [SMALL_STATE(4002)] = 143769, - [SMALL_STATE(4003)] = 143802, - [SMALL_STATE(4004)] = 143837, - [SMALL_STATE(4005)] = 143866, - [SMALL_STATE(4006)] = 143895, - [SMALL_STATE(4007)] = 143924, - [SMALL_STATE(4008)] = 143951, - [SMALL_STATE(4009)] = 143988, - [SMALL_STATE(4010)] = 144027, - [SMALL_STATE(4011)] = 144066, - [SMALL_STATE(4012)] = 144095, - [SMALL_STATE(4013)] = 144134, - [SMALL_STATE(4014)] = 144163, - [SMALL_STATE(4015)] = 144192, - [SMALL_STATE(4016)] = 144221, - [SMALL_STATE(4017)] = 144250, - [SMALL_STATE(4018)] = 144279, - [SMALL_STATE(4019)] = 144308, - [SMALL_STATE(4020)] = 144339, - [SMALL_STATE(4021)] = 144368, - [SMALL_STATE(4022)] = 144397, - [SMALL_STATE(4023)] = 144426, - [SMALL_STATE(4024)] = 144455, - [SMALL_STATE(4025)] = 144484, - [SMALL_STATE(4026)] = 144513, - [SMALL_STATE(4027)] = 144542, - [SMALL_STATE(4028)] = 144569, - [SMALL_STATE(4029)] = 144598, - [SMALL_STATE(4030)] = 144627, - [SMALL_STATE(4031)] = 144656, - [SMALL_STATE(4032)] = 144685, - [SMALL_STATE(4033)] = 144714, - [SMALL_STATE(4034)] = 144743, - [SMALL_STATE(4035)] = 144772, - [SMALL_STATE(4036)] = 144801, - [SMALL_STATE(4037)] = 144830, - [SMALL_STATE(4038)] = 144859, - [SMALL_STATE(4039)] = 144890, - [SMALL_STATE(4040)] = 144919, - [SMALL_STATE(4041)] = 144963, - [SMALL_STATE(4042)] = 145011, - [SMALL_STATE(4043)] = 145055, - [SMALL_STATE(4044)] = 145103, - [SMALL_STATE(4045)] = 145137, - [SMALL_STATE(4046)] = 145171, - [SMALL_STATE(4047)] = 145219, - [SMALL_STATE(4048)] = 145267, - [SMALL_STATE(4049)] = 145315, - [SMALL_STATE(4050)] = 145363, - [SMALL_STATE(4051)] = 145411, - [SMALL_STATE(4052)] = 145459, - [SMALL_STATE(4053)] = 145503, - [SMALL_STATE(4054)] = 145551, - [SMALL_STATE(4055)] = 145599, - [SMALL_STATE(4056)] = 145643, - [SMALL_STATE(4057)] = 145691, - [SMALL_STATE(4058)] = 145739, - [SMALL_STATE(4059)] = 145787, - [SMALL_STATE(4060)] = 145835, - [SMALL_STATE(4061)] = 145883, - [SMALL_STATE(4062)] = 145931, - [SMALL_STATE(4063)] = 145979, - [SMALL_STATE(4064)] = 146013, - [SMALL_STATE(4065)] = 146057, - [SMALL_STATE(4066)] = 146105, - [SMALL_STATE(4067)] = 146153, - [SMALL_STATE(4068)] = 146201, - [SMALL_STATE(4069)] = 146249, - [SMALL_STATE(4070)] = 146297, - [SMALL_STATE(4071)] = 146345, - [SMALL_STATE(4072)] = 146379, - [SMALL_STATE(4073)] = 146413, - [SMALL_STATE(4074)] = 146461, - [SMALL_STATE(4075)] = 146509, - [SMALL_STATE(4076)] = 146557, - [SMALL_STATE(4077)] = 146605, - [SMALL_STATE(4078)] = 146653, - [SMALL_STATE(4079)] = 146687, - [SMALL_STATE(4080)] = 146719, - [SMALL_STATE(4081)] = 146746, - [SMALL_STATE(4082)] = 146771, - [SMALL_STATE(4083)] = 146796, - [SMALL_STATE(4084)] = 146837, - [SMALL_STATE(4085)] = 146862, - [SMALL_STATE(4086)] = 146889, - [SMALL_STATE(4087)] = 146930, - [SMALL_STATE(4088)] = 146963, - [SMALL_STATE(4089)] = 146988, - [SMALL_STATE(4090)] = 147013, - [SMALL_STATE(4091)] = 147044, - [SMALL_STATE(4092)] = 147085, - [SMALL_STATE(4093)] = 147110, - [SMALL_STATE(4094)] = 147135, - [SMALL_STATE(4095)] = 147160, - [SMALL_STATE(4096)] = 147185, - [SMALL_STATE(4097)] = 147212, - [SMALL_STATE(4098)] = 147237, - [SMALL_STATE(4099)] = 147262, - [SMALL_STATE(4100)] = 147287, - [SMALL_STATE(4101)] = 147328, - [SMALL_STATE(4102)] = 147361, - [SMALL_STATE(4103)] = 147388, - [SMALL_STATE(4104)] = 147429, - [SMALL_STATE(4105)] = 147454, - [SMALL_STATE(4106)] = 147481, - [SMALL_STATE(4107)] = 147506, - [SMALL_STATE(4108)] = 147533, - [SMALL_STATE(4109)] = 147560, - [SMALL_STATE(4110)] = 147587, - [SMALL_STATE(4111)] = 147614, - [SMALL_STATE(4112)] = 147639, - [SMALL_STATE(4113)] = 147666, - [SMALL_STATE(4114)] = 147693, - [SMALL_STATE(4115)] = 147718, - [SMALL_STATE(4116)] = 147759, - [SMALL_STATE(4117)] = 147786, - [SMALL_STATE(4118)] = 147827, - [SMALL_STATE(4119)] = 147858, - [SMALL_STATE(4120)] = 147887, - [SMALL_STATE(4121)] = 147912, - [SMALL_STATE(4122)] = 147953, - [SMALL_STATE(4123)] = 147980, - [SMALL_STATE(4124)] = 148007, - [SMALL_STATE(4125)] = 148032, - [SMALL_STATE(4126)] = 148059, - [SMALL_STATE(4127)] = 148100, - [SMALL_STATE(4128)] = 148127, - [SMALL_STATE(4129)] = 148170, - [SMALL_STATE(4130)] = 148211, - [SMALL_STATE(4131)] = 148236, - [SMALL_STATE(4132)] = 148263, - [SMALL_STATE(4133)] = 148292, - [SMALL_STATE(4134)] = 148317, - [SMALL_STATE(4135)] = 148342, - [SMALL_STATE(4136)] = 148367, - [SMALL_STATE(4137)] = 148392, - [SMALL_STATE(4138)] = 148417, - [SMALL_STATE(4139)] = 148442, - [SMALL_STATE(4140)] = 148467, - [SMALL_STATE(4141)] = 148492, - [SMALL_STATE(4142)] = 148517, - [SMALL_STATE(4143)] = 148542, - [SMALL_STATE(4144)] = 148567, - [SMALL_STATE(4145)] = 148592, - [SMALL_STATE(4146)] = 148617, - [SMALL_STATE(4147)] = 148642, - [SMALL_STATE(4148)] = 148667, - [SMALL_STATE(4149)] = 148709, - [SMALL_STATE(4150)] = 148743, - [SMALL_STATE(4151)] = 148785, - [SMALL_STATE(4152)] = 148827, - [SMALL_STATE(4153)] = 148869, - [SMALL_STATE(4154)] = 148911, - [SMALL_STATE(4155)] = 148953, - [SMALL_STATE(4156)] = 148995, - [SMALL_STATE(4157)] = 149023, - [SMALL_STATE(4158)] = 149051, - [SMALL_STATE(4159)] = 149093, - [SMALL_STATE(4160)] = 149137, - [SMALL_STATE(4161)] = 149175, - [SMALL_STATE(4162)] = 149219, - [SMALL_STATE(4163)] = 149257, - [SMALL_STATE(4164)] = 149299, - [SMALL_STATE(4165)] = 149343, - [SMALL_STATE(4166)] = 149385, - [SMALL_STATE(4167)] = 149421, - [SMALL_STATE(4168)] = 149459, - [SMALL_STATE(4169)] = 149501, - [SMALL_STATE(4170)] = 149527, - [SMALL_STATE(4171)] = 149571, - [SMALL_STATE(4172)] = 149599, - [SMALL_STATE(4173)] = 149641, - [SMALL_STATE(4174)] = 149675, - [SMALL_STATE(4175)] = 149717, - [SMALL_STATE(4176)] = 149759, - [SMALL_STATE(4177)] = 149801, - [SMALL_STATE(4178)] = 149839, - [SMALL_STATE(4179)] = 149877, - [SMALL_STATE(4180)] = 149919, - [SMALL_STATE(4181)] = 149957, - [SMALL_STATE(4182)] = 149991, - [SMALL_STATE(4183)] = 150033, - [SMALL_STATE(4184)] = 150067, - [SMALL_STATE(4185)] = 150111, - [SMALL_STATE(4186)] = 150153, - [SMALL_STATE(4187)] = 150195, - [SMALL_STATE(4188)] = 150233, - [SMALL_STATE(4189)] = 150275, - [SMALL_STATE(4190)] = 150311, - [SMALL_STATE(4191)] = 150341, - [SMALL_STATE(4192)] = 150383, - [SMALL_STATE(4193)] = 150409, - [SMALL_STATE(4194)] = 150443, - [SMALL_STATE(4195)] = 150481, - [SMALL_STATE(4196)] = 150523, - [SMALL_STATE(4197)] = 150561, - [SMALL_STATE(4198)] = 150599, - [SMALL_STATE(4199)] = 150641, - [SMALL_STATE(4200)] = 150666, - [SMALL_STATE(4201)] = 150691, - [SMALL_STATE(4202)] = 150716, - [SMALL_STATE(4203)] = 150743, - [SMALL_STATE(4204)] = 150768, - [SMALL_STATE(4205)] = 150795, - [SMALL_STATE(4206)] = 150824, - [SMALL_STATE(4207)] = 150849, - [SMALL_STATE(4208)] = 150874, - [SMALL_STATE(4209)] = 150903, - [SMALL_STATE(4210)] = 150926, - [SMALL_STATE(4211)] = 150951, - [SMALL_STATE(4212)] = 150976, - [SMALL_STATE(4213)] = 151003, - [SMALL_STATE(4214)] = 151032, - [SMALL_STATE(4215)] = 151059, - [SMALL_STATE(4216)] = 151084, - [SMALL_STATE(4217)] = 151109, - [SMALL_STATE(4218)] = 151136, - [SMALL_STATE(4219)] = 151161, - [SMALL_STATE(4220)] = 151186, - [SMALL_STATE(4221)] = 151211, - [SMALL_STATE(4222)] = 151234, - [SMALL_STATE(4223)] = 151263, - [SMALL_STATE(4224)] = 151288, - [SMALL_STATE(4225)] = 151317, - [SMALL_STATE(4226)] = 151342, - [SMALL_STATE(4227)] = 151365, - [SMALL_STATE(4228)] = 151390, - [SMALL_STATE(4229)] = 151419, - [SMALL_STATE(4230)] = 151444, - [SMALL_STATE(4231)] = 151473, - [SMALL_STATE(4232)] = 151498, - [SMALL_STATE(4233)] = 151523, - [SMALL_STATE(4234)] = 151548, - [SMALL_STATE(4235)] = 151573, - [SMALL_STATE(4236)] = 151596, - [SMALL_STATE(4237)] = 151619, - [SMALL_STATE(4238)] = 151644, - [SMALL_STATE(4239)] = 151667, - [SMALL_STATE(4240)] = 151692, - [SMALL_STATE(4241)] = 151715, - [SMALL_STATE(4242)] = 151738, - [SMALL_STATE(4243)] = 151781, - [SMALL_STATE(4244)] = 151806, - [SMALL_STATE(4245)] = 151831, - [SMALL_STATE(4246)] = 151856, - [SMALL_STATE(4247)] = 151881, - [SMALL_STATE(4248)] = 151906, - [SMALL_STATE(4249)] = 151931, - [SMALL_STATE(4250)] = 151956, - [SMALL_STATE(4251)] = 151981, - [SMALL_STATE(4252)] = 152006, - [SMALL_STATE(4253)] = 152031, - [SMALL_STATE(4254)] = 152054, - [SMALL_STATE(4255)] = 152083, - [SMALL_STATE(4256)] = 152108, - [SMALL_STATE(4257)] = 152133, - [SMALL_STATE(4258)] = 152160, - [SMALL_STATE(4259)] = 152185, - [SMALL_STATE(4260)] = 152210, - [SMALL_STATE(4261)] = 152235, - [SMALL_STATE(4262)] = 152266, - [SMALL_STATE(4263)] = 152293, - [SMALL_STATE(4264)] = 152333, - [SMALL_STATE(4265)] = 152373, - [SMALL_STATE(4266)] = 152401, - [SMALL_STATE(4267)] = 152427, - [SMALL_STATE(4268)] = 152467, - [SMALL_STATE(4269)] = 152489, - [SMALL_STATE(4270)] = 152527, - [SMALL_STATE(4271)] = 152567, - [SMALL_STATE(4272)] = 152607, - [SMALL_STATE(4273)] = 152647, - [SMALL_STATE(4274)] = 152687, - [SMALL_STATE(4275)] = 152727, - [SMALL_STATE(4276)] = 152755, - [SMALL_STATE(4277)] = 152781, - [SMALL_STATE(4278)] = 152815, - [SMALL_STATE(4279)] = 152849, - [SMALL_STATE(4280)] = 152873, - [SMALL_STATE(4281)] = 152899, - [SMALL_STATE(4282)] = 152939, - [SMALL_STATE(4283)] = 152979, - [SMALL_STATE(4284)] = 153019, - [SMALL_STATE(4285)] = 153043, - [SMALL_STATE(4286)] = 153083, - [SMALL_STATE(4287)] = 153121, - [SMALL_STATE(4288)] = 153161, - [SMALL_STATE(4289)] = 153201, - [SMALL_STATE(4290)] = 153241, - [SMALL_STATE(4291)] = 153281, - [SMALL_STATE(4292)] = 153321, - [SMALL_STATE(4293)] = 153345, - [SMALL_STATE(4294)] = 153385, - [SMALL_STATE(4295)] = 153407, - [SMALL_STATE(4296)] = 153435, - [SMALL_STATE(4297)] = 153475, - [SMALL_STATE(4298)] = 153512, - [SMALL_STATE(4299)] = 153545, - [SMALL_STATE(4300)] = 153578, - [SMALL_STATE(4301)] = 153611, - [SMALL_STATE(4302)] = 153632, - [SMALL_STATE(4303)] = 153653, - [SMALL_STATE(4304)] = 153686, - [SMALL_STATE(4305)] = 153707, - [SMALL_STATE(4306)] = 153744, - [SMALL_STATE(4307)] = 153777, - [SMALL_STATE(4308)] = 153806, - [SMALL_STATE(4309)] = 153843, - [SMALL_STATE(4310)] = 153876, - [SMALL_STATE(4311)] = 153909, - [SMALL_STATE(4312)] = 153932, - [SMALL_STATE(4313)] = 153967, - [SMALL_STATE(4314)] = 154000, - [SMALL_STATE(4315)] = 154023, - [SMALL_STATE(4316)] = 154046, - [SMALL_STATE(4317)] = 154075, - [SMALL_STATE(4318)] = 154106, - [SMALL_STATE(4319)] = 154143, - [SMALL_STATE(4320)] = 154164, - [SMALL_STATE(4321)] = 154201, - [SMALL_STATE(4322)] = 154222, - [SMALL_STATE(4323)] = 154245, - [SMALL_STATE(4324)] = 154268, - [SMALL_STATE(4325)] = 154289, - [SMALL_STATE(4326)] = 154326, - [SMALL_STATE(4327)] = 154349, - [SMALL_STATE(4328)] = 154380, - [SMALL_STATE(4329)] = 154417, - [SMALL_STATE(4330)] = 154438, - [SMALL_STATE(4331)] = 154475, - [SMALL_STATE(4332)] = 154496, - [SMALL_STATE(4333)] = 154533, - [SMALL_STATE(4334)] = 154554, - [SMALL_STATE(4335)] = 154591, - [SMALL_STATE(4336)] = 154624, - [SMALL_STATE(4337)] = 154661, - [SMALL_STATE(4338)] = 154694, - [SMALL_STATE(4339)] = 154719, - [SMALL_STATE(4340)] = 154756, - [SMALL_STATE(4341)] = 154777, - [SMALL_STATE(4342)] = 154812, - [SMALL_STATE(4343)] = 154849, - [SMALL_STATE(4344)] = 154874, - [SMALL_STATE(4345)] = 154895, - [SMALL_STATE(4346)] = 154916, - [SMALL_STATE(4347)] = 154937, - [SMALL_STATE(4348)] = 154974, - [SMALL_STATE(4349)] = 155011, - [SMALL_STATE(4350)] = 155048, - [SMALL_STATE(4351)] = 155085, - [SMALL_STATE(4352)] = 155122, - [SMALL_STATE(4353)] = 155143, - [SMALL_STATE(4354)] = 155164, - [SMALL_STATE(4355)] = 155197, - [SMALL_STATE(4356)] = 155234, - [SMALL_STATE(4357)] = 155271, - [SMALL_STATE(4358)] = 155308, - [SMALL_STATE(4359)] = 155343, - [SMALL_STATE(4360)] = 155380, - [SMALL_STATE(4361)] = 155413, - [SMALL_STATE(4362)] = 155446, - [SMALL_STATE(4363)] = 155483, - [SMALL_STATE(4364)] = 155514, - [SMALL_STATE(4365)] = 155551, - [SMALL_STATE(4366)] = 155572, - [SMALL_STATE(4367)] = 155593, - [SMALL_STATE(4368)] = 155624, - [SMALL_STATE(4369)] = 155645, - [SMALL_STATE(4370)] = 155682, - [SMALL_STATE(4371)] = 155703, - [SMALL_STATE(4372)] = 155724, - [SMALL_STATE(4373)] = 155747, - [SMALL_STATE(4374)] = 155768, - [SMALL_STATE(4375)] = 155789, - [SMALL_STATE(4376)] = 155810, - [SMALL_STATE(4377)] = 155837, - [SMALL_STATE(4378)] = 155862, - [SMALL_STATE(4379)] = 155885, - [SMALL_STATE(4380)] = 155908, - [SMALL_STATE(4381)] = 155939, - [SMALL_STATE(4382)] = 155960, - [SMALL_STATE(4383)] = 155997, - [SMALL_STATE(4384)] = 156034, - [SMALL_STATE(4385)] = 156071, - [SMALL_STATE(4386)] = 156098, - [SMALL_STATE(4387)] = 156129, - [SMALL_STATE(4388)] = 156150, - [SMALL_STATE(4389)] = 156177, - [SMALL_STATE(4390)] = 156198, - [SMALL_STATE(4391)] = 156229, - [SMALL_STATE(4392)] = 156250, - [SMALL_STATE(4393)] = 156287, - [SMALL_STATE(4394)] = 156318, - [SMALL_STATE(4395)] = 156339, - [SMALL_STATE(4396)] = 156372, - [SMALL_STATE(4397)] = 156393, - [SMALL_STATE(4398)] = 156414, - [SMALL_STATE(4399)] = 156447, - [SMALL_STATE(4400)] = 156468, - [SMALL_STATE(4401)] = 156505, - [SMALL_STATE(4402)] = 156538, - [SMALL_STATE(4403)] = 156559, - [SMALL_STATE(4404)] = 156592, - [SMALL_STATE(4405)] = 156613, - [SMALL_STATE(4406)] = 156650, - [SMALL_STATE(4407)] = 156683, - [SMALL_STATE(4408)] = 156720, - [SMALL_STATE(4409)] = 156757, - [SMALL_STATE(4410)] = 156794, - [SMALL_STATE(4411)] = 156831, - [SMALL_STATE(4412)] = 156868, - [SMALL_STATE(4413)] = 156905, - [SMALL_STATE(4414)] = 156926, - [SMALL_STATE(4415)] = 156959, - [SMALL_STATE(4416)] = 156992, - [SMALL_STATE(4417)] = 157025, - [SMALL_STATE(4418)] = 157056, - [SMALL_STATE(4419)] = 157089, - [SMALL_STATE(4420)] = 157116, - [SMALL_STATE(4421)] = 157137, - [SMALL_STATE(4422)] = 157158, - [SMALL_STATE(4423)] = 157195, - [SMALL_STATE(4424)] = 157228, - [SMALL_STATE(4425)] = 157265, - [SMALL_STATE(4426)] = 157298, - [SMALL_STATE(4427)] = 157331, - [SMALL_STATE(4428)] = 157354, - [SMALL_STATE(4429)] = 157381, - [SMALL_STATE(4430)] = 157414, - [SMALL_STATE(4431)] = 157447, - [SMALL_STATE(4432)] = 157480, - [SMALL_STATE(4433)] = 157511, - [SMALL_STATE(4434)] = 157532, - [SMALL_STATE(4435)] = 157565, - [SMALL_STATE(4436)] = 157586, - [SMALL_STATE(4437)] = 157607, - [SMALL_STATE(4438)] = 157644, - [SMALL_STATE(4439)] = 157677, - [SMALL_STATE(4440)] = 157708, - [SMALL_STATE(4441)] = 157745, - [SMALL_STATE(4442)] = 157782, - [SMALL_STATE(4443)] = 157815, - [SMALL_STATE(4444)] = 157848, - [SMALL_STATE(4445)] = 157885, - [SMALL_STATE(4446)] = 157922, - [SMALL_STATE(4447)] = 157955, - [SMALL_STATE(4448)] = 157976, - [SMALL_STATE(4449)] = 158009, - [SMALL_STATE(4450)] = 158040, - [SMALL_STATE(4451)] = 158061, - [SMALL_STATE(4452)] = 158098, - [SMALL_STATE(4453)] = 158119, - [SMALL_STATE(4454)] = 158156, - [SMALL_STATE(4455)] = 158177, - [SMALL_STATE(4456)] = 158198, - [SMALL_STATE(4457)] = 158219, - [SMALL_STATE(4458)] = 158240, - [SMALL_STATE(4459)] = 158277, - [SMALL_STATE(4460)] = 158314, - [SMALL_STATE(4461)] = 158351, - [SMALL_STATE(4462)] = 158382, - [SMALL_STATE(4463)] = 158417, - [SMALL_STATE(4464)] = 158444, - [SMALL_STATE(4465)] = 158481, - [SMALL_STATE(4466)] = 158514, - [SMALL_STATE(4467)] = 158535, - [SMALL_STATE(4468)] = 158566, - [SMALL_STATE(4469)] = 158603, - [SMALL_STATE(4470)] = 158630, - [SMALL_STATE(4471)] = 158651, - [SMALL_STATE(4472)] = 158672, - [SMALL_STATE(4473)] = 158693, - [SMALL_STATE(4474)] = 158714, - [SMALL_STATE(4475)] = 158747, - [SMALL_STATE(4476)] = 158784, - [SMALL_STATE(4477)] = 158821, - [SMALL_STATE(4478)] = 158842, - [SMALL_STATE(4479)] = 158879, - [SMALL_STATE(4480)] = 158900, - [SMALL_STATE(4481)] = 158933, - [SMALL_STATE(4482)] = 158954, - [SMALL_STATE(4483)] = 158975, - [SMALL_STATE(4484)] = 158996, - [SMALL_STATE(4485)] = 159017, - [SMALL_STATE(4486)] = 159050, - [SMALL_STATE(4487)] = 159083, - [SMALL_STATE(4488)] = 159104, - [SMALL_STATE(4489)] = 159125, - [SMALL_STATE(4490)] = 159148, - [SMALL_STATE(4491)] = 159169, - [SMALL_STATE(4492)] = 159190, - [SMALL_STATE(4493)] = 159218, - [SMALL_STATE(4494)] = 159246, - [SMALL_STATE(4495)] = 159278, - [SMALL_STATE(4496)] = 159312, - [SMALL_STATE(4497)] = 159344, - [SMALL_STATE(4498)] = 159366, - [SMALL_STATE(4499)] = 159392, - [SMALL_STATE(4500)] = 159414, - [SMALL_STATE(4501)] = 159440, - [SMALL_STATE(4502)] = 159468, - [SMALL_STATE(4503)] = 159502, - [SMALL_STATE(4504)] = 159524, - [SMALL_STATE(4505)] = 159544, - [SMALL_STATE(4506)] = 159578, - [SMALL_STATE(4507)] = 159598, - [SMALL_STATE(4508)] = 159624, - [SMALL_STATE(4509)] = 159650, - [SMALL_STATE(4510)] = 159678, - [SMALL_STATE(4511)] = 159710, - [SMALL_STATE(4512)] = 159740, - [SMALL_STATE(4513)] = 159768, - [SMALL_STATE(4514)] = 159800, - [SMALL_STATE(4515)] = 159834, - [SMALL_STATE(4516)] = 159862, - [SMALL_STATE(4517)] = 159890, - [SMALL_STATE(4518)] = 159916, - [SMALL_STATE(4519)] = 159942, - [SMALL_STATE(4520)] = 159968, - [SMALL_STATE(4521)] = 159996, - [SMALL_STATE(4522)] = 160030, - [SMALL_STATE(4523)] = 160064, - [SMALL_STATE(4524)] = 160096, - [SMALL_STATE(4525)] = 160130, - [SMALL_STATE(4526)] = 160162, - [SMALL_STATE(4527)] = 160194, - [SMALL_STATE(4528)] = 160222, - [SMALL_STATE(4529)] = 160256, - [SMALL_STATE(4530)] = 160283, - [SMALL_STATE(4531)] = 160314, - [SMALL_STATE(4532)] = 160337, - [SMALL_STATE(4533)] = 160356, - [SMALL_STATE(4534)] = 160375, - [SMALL_STATE(4535)] = 160404, - [SMALL_STATE(4536)] = 160435, - [SMALL_STATE(4537)] = 160458, - [SMALL_STATE(4538)] = 160477, - [SMALL_STATE(4539)] = 160506, - [SMALL_STATE(4540)] = 160537, - [SMALL_STATE(4541)] = 160568, - [SMALL_STATE(4542)] = 160595, - [SMALL_STATE(4543)] = 160618, - [SMALL_STATE(4544)] = 160649, - [SMALL_STATE(4545)] = 160672, - [SMALL_STATE(4546)] = 160695, - [SMALL_STATE(4547)] = 160722, - [SMALL_STATE(4548)] = 160749, - [SMALL_STATE(4549)] = 160780, - [SMALL_STATE(4550)] = 160803, - [SMALL_STATE(4551)] = 160832, - [SMALL_STATE(4552)] = 160863, - [SMALL_STATE(4553)] = 160882, - [SMALL_STATE(4554)] = 160905, - [SMALL_STATE(4555)] = 160928, - [SMALL_STATE(4556)] = 160951, - [SMALL_STATE(4557)] = 160982, - [SMALL_STATE(4558)] = 161013, - [SMALL_STATE(4559)] = 161036, - [SMALL_STATE(4560)] = 161059, - [SMALL_STATE(4561)] = 161086, - [SMALL_STATE(4562)] = 161113, - [SMALL_STATE(4563)] = 161136, - [SMALL_STATE(4564)] = 161163, - [SMALL_STATE(4565)] = 161186, - [SMALL_STATE(4566)] = 161217, - [SMALL_STATE(4567)] = 161240, - [SMALL_STATE(4568)] = 161271, - [SMALL_STATE(4569)] = 161298, - [SMALL_STATE(4570)] = 161325, - [SMALL_STATE(4571)] = 161356, - [SMALL_STATE(4572)] = 161379, - [SMALL_STATE(4573)] = 161410, - [SMALL_STATE(4574)] = 161431, - [SMALL_STATE(4575)] = 161458, - [SMALL_STATE(4576)] = 161485, - [SMALL_STATE(4577)] = 161516, - [SMALL_STATE(4578)] = 161539, - [SMALL_STATE(4579)] = 161570, - [SMALL_STATE(4580)] = 161601, - [SMALL_STATE(4581)] = 161624, - [SMALL_STATE(4582)] = 161647, - [SMALL_STATE(4583)] = 161678, - [SMALL_STATE(4584)] = 161701, - [SMALL_STATE(4585)] = 161728, - [SMALL_STATE(4586)] = 161755, - [SMALL_STATE(4587)] = 161786, - [SMALL_STATE(4588)] = 161813, - [SMALL_STATE(4589)] = 161832, - [SMALL_STATE(4590)] = 161861, - [SMALL_STATE(4591)] = 161892, - [SMALL_STATE(4592)] = 161923, - [SMALL_STATE(4593)] = 161954, - [SMALL_STATE(4594)] = 161981, - [SMALL_STATE(4595)] = 162012, - [SMALL_STATE(4596)] = 162043, - [SMALL_STATE(4597)] = 162066, - [SMALL_STATE(4598)] = 162097, - [SMALL_STATE(4599)] = 162128, - [SMALL_STATE(4600)] = 162151, - [SMALL_STATE(4601)] = 162182, - [SMALL_STATE(4602)] = 162205, - [SMALL_STATE(4603)] = 162228, - [SMALL_STATE(4604)] = 162251, - [SMALL_STATE(4605)] = 162272, - [SMALL_STATE(4606)] = 162303, - [SMALL_STATE(4607)] = 162334, - [SMALL_STATE(4608)] = 162361, - [SMALL_STATE(4609)] = 162388, - [SMALL_STATE(4610)] = 162415, - [SMALL_STATE(4611)] = 162434, - [SMALL_STATE(4612)] = 162465, - [SMALL_STATE(4613)] = 162496, - [SMALL_STATE(4614)] = 162523, - [SMALL_STATE(4615)] = 162554, - [SMALL_STATE(4616)] = 162583, - [SMALL_STATE(4617)] = 162612, - [SMALL_STATE(4618)] = 162631, - [SMALL_STATE(4619)] = 162658, - [SMALL_STATE(4620)] = 162689, - [SMALL_STATE(4621)] = 162714, - [SMALL_STATE(4622)] = 162743, - [SMALL_STATE(4623)] = 162774, - [SMALL_STATE(4624)] = 162799, - [SMALL_STATE(4625)] = 162826, - [SMALL_STATE(4626)] = 162855, - [SMALL_STATE(4627)] = 162882, - [SMALL_STATE(4628)] = 162913, - [SMALL_STATE(4629)] = 162940, - [SMALL_STATE(4630)] = 162967, - [SMALL_STATE(4631)] = 162994, - [SMALL_STATE(4632)] = 163021, - [SMALL_STATE(4633)] = 163048, - [SMALL_STATE(4634)] = 163075, - [SMALL_STATE(4635)] = 163102, - [SMALL_STATE(4636)] = 163129, - [SMALL_STATE(4637)] = 163156, - [SMALL_STATE(4638)] = 163183, - [SMALL_STATE(4639)] = 163214, - [SMALL_STATE(4640)] = 163241, - [SMALL_STATE(4641)] = 163268, - [SMALL_STATE(4642)] = 163295, - [SMALL_STATE(4643)] = 163322, - [SMALL_STATE(4644)] = 163349, - [SMALL_STATE(4645)] = 163378, - [SMALL_STATE(4646)] = 163397, - [SMALL_STATE(4647)] = 163428, - [SMALL_STATE(4648)] = 163455, - [SMALL_STATE(4649)] = 163482, - [SMALL_STATE(4650)] = 163509, - [SMALL_STATE(4651)] = 163540, - [SMALL_STATE(4652)] = 163567, - [SMALL_STATE(4653)] = 163594, - [SMALL_STATE(4654)] = 163613, - [SMALL_STATE(4655)] = 163644, - [SMALL_STATE(4656)] = 163675, - [SMALL_STATE(4657)] = 163706, - [SMALL_STATE(4658)] = 163729, - [SMALL_STATE(4659)] = 163748, - [SMALL_STATE(4660)] = 163775, - [SMALL_STATE(4661)] = 163794, - [SMALL_STATE(4662)] = 163813, - [SMALL_STATE(4663)] = 163840, - [SMALL_STATE(4664)] = 163867, - [SMALL_STATE(4665)] = 163898, - [SMALL_STATE(4666)] = 163925, - [SMALL_STATE(4667)] = 163956, - [SMALL_STATE(4668)] = 163983, - [SMALL_STATE(4669)] = 164006, - [SMALL_STATE(4670)] = 164025, - [SMALL_STATE(4671)] = 164052, - [SMALL_STATE(4672)] = 164083, - [SMALL_STATE(4673)] = 164110, - [SMALL_STATE(4674)] = 164137, - [SMALL_STATE(4675)] = 164168, - [SMALL_STATE(4676)] = 164199, - [SMALL_STATE(4677)] = 164218, - [SMALL_STATE(4678)] = 164247, - [SMALL_STATE(4679)] = 164266, - [SMALL_STATE(4680)] = 164295, - [SMALL_STATE(4681)] = 164324, - [SMALL_STATE(4682)] = 164353, - [SMALL_STATE(4683)] = 164380, - [SMALL_STATE(4684)] = 164399, - [SMALL_STATE(4685)] = 164422, - [SMALL_STATE(4686)] = 164449, - [SMALL_STATE(4687)] = 164476, - [SMALL_STATE(4688)] = 164507, - [SMALL_STATE(4689)] = 164536, - [SMALL_STATE(4690)] = 164563, - [SMALL_STATE(4691)] = 164582, - [SMALL_STATE(4692)] = 164613, - [SMALL_STATE(4693)] = 164634, - [SMALL_STATE(4694)] = 164661, - [SMALL_STATE(4695)] = 164692, - [SMALL_STATE(4696)] = 164723, - [SMALL_STATE(4697)] = 164754, - [SMALL_STATE(4698)] = 164781, - [SMALL_STATE(4699)] = 164812, - [SMALL_STATE(4700)] = 164843, - [SMALL_STATE(4701)] = 164862, - [SMALL_STATE(4702)] = 164881, - [SMALL_STATE(4703)] = 164912, - [SMALL_STATE(4704)] = 164943, - [SMALL_STATE(4705)] = 164974, - [SMALL_STATE(4706)] = 164997, - [SMALL_STATE(4707)] = 165024, - [SMALL_STATE(4708)] = 165043, - [SMALL_STATE(4709)] = 165070, - [SMALL_STATE(4710)] = 165097, - [SMALL_STATE(4711)] = 165124, - [SMALL_STATE(4712)] = 165155, - [SMALL_STATE(4713)] = 165182, - [SMALL_STATE(4714)] = 165209, - [SMALL_STATE(4715)] = 165228, - [SMALL_STATE(4716)] = 165247, - [SMALL_STATE(4717)] = 165266, - [SMALL_STATE(4718)] = 165297, - [SMALL_STATE(4719)] = 165324, - [SMALL_STATE(4720)] = 165351, - [SMALL_STATE(4721)] = 165378, - [SMALL_STATE(4722)] = 165399, - [SMALL_STATE(4723)] = 165426, - [SMALL_STATE(4724)] = 165457, - [SMALL_STATE(4725)] = 165484, - [SMALL_STATE(4726)] = 165503, - [SMALL_STATE(4727)] = 165530, - [SMALL_STATE(4728)] = 165557, - [SMALL_STATE(4729)] = 165584, - [SMALL_STATE(4730)] = 165611, - [SMALL_STATE(4731)] = 165638, - [SMALL_STATE(4732)] = 165665, - [SMALL_STATE(4733)] = 165692, - [SMALL_STATE(4734)] = 165719, - [SMALL_STATE(4735)] = 165738, - [SMALL_STATE(4736)] = 165765, - [SMALL_STATE(4737)] = 165792, - [SMALL_STATE(4738)] = 165819, - [SMALL_STATE(4739)] = 165846, - [SMALL_STATE(4740)] = 165873, - [SMALL_STATE(4741)] = 165900, - [SMALL_STATE(4742)] = 165927, - [SMALL_STATE(4743)] = 165946, - [SMALL_STATE(4744)] = 165973, - [SMALL_STATE(4745)] = 166004, - [SMALL_STATE(4746)] = 166033, - [SMALL_STATE(4747)] = 166064, - [SMALL_STATE(4748)] = 166095, - [SMALL_STATE(4749)] = 166122, - [SMALL_STATE(4750)] = 166153, - [SMALL_STATE(4751)] = 166184, - [SMALL_STATE(4752)] = 166215, - [SMALL_STATE(4753)] = 166244, - [SMALL_STATE(4754)] = 166275, - [SMALL_STATE(4755)] = 166306, - [SMALL_STATE(4756)] = 166337, - [SMALL_STATE(4757)] = 166364, - [SMALL_STATE(4758)] = 166391, - [SMALL_STATE(4759)] = 166422, - [SMALL_STATE(4760)] = 166449, - [SMALL_STATE(4761)] = 166476, - [SMALL_STATE(4762)] = 166503, - [SMALL_STATE(4763)] = 166530, - [SMALL_STATE(4764)] = 166557, - [SMALL_STATE(4765)] = 166588, - [SMALL_STATE(4766)] = 166609, - [SMALL_STATE(4767)] = 166640, - [SMALL_STATE(4768)] = 166671, - [SMALL_STATE(4769)] = 166698, - [SMALL_STATE(4770)] = 166725, - [SMALL_STATE(4771)] = 166756, - [SMALL_STATE(4772)] = 166783, - [SMALL_STATE(4773)] = 166812, - [SMALL_STATE(4774)] = 166839, - [SMALL_STATE(4775)] = 166866, - [SMALL_STATE(4776)] = 166893, - [SMALL_STATE(4777)] = 166924, - [SMALL_STATE(4778)] = 166953, - [SMALL_STATE(4779)] = 166980, - [SMALL_STATE(4780)] = 167011, - [SMALL_STATE(4781)] = 167032, - [SMALL_STATE(4782)] = 167059, - [SMALL_STATE(4783)] = 167090, - [SMALL_STATE(4784)] = 167109, - [SMALL_STATE(4785)] = 167136, - [SMALL_STATE(4786)] = 167167, - [SMALL_STATE(4787)] = 167186, - [SMALL_STATE(4788)] = 167217, - [SMALL_STATE(4789)] = 167248, - [SMALL_STATE(4790)] = 167275, - [SMALL_STATE(4791)] = 167306, - [SMALL_STATE(4792)] = 167337, - [SMALL_STATE(4793)] = 167364, - [SMALL_STATE(4794)] = 167387, - [SMALL_STATE(4795)] = 167414, - [SMALL_STATE(4796)] = 167445, - [SMALL_STATE(4797)] = 167466, - [SMALL_STATE(4798)] = 167497, - [SMALL_STATE(4799)] = 167528, - [SMALL_STATE(4800)] = 167550, - [SMALL_STATE(4801)] = 167578, - [SMALL_STATE(4802)] = 167604, - [SMALL_STATE(4803)] = 167632, - [SMALL_STATE(4804)] = 167658, - [SMALL_STATE(4805)] = 167686, - [SMALL_STATE(4806)] = 167714, - [SMALL_STATE(4807)] = 167742, - [SMALL_STATE(4808)] = 167770, - [SMALL_STATE(4809)] = 167788, - [SMALL_STATE(4810)] = 167808, - [SMALL_STATE(4811)] = 167830, - [SMALL_STATE(4812)] = 167854, - [SMALL_STATE(4813)] = 167876, - [SMALL_STATE(4814)] = 167898, - [SMALL_STATE(4815)] = 167926, - [SMALL_STATE(4816)] = 167954, - [SMALL_STATE(4817)] = 167976, - [SMALL_STATE(4818)] = 167998, - [SMALL_STATE(4819)] = 168026, - [SMALL_STATE(4820)] = 168052, - [SMALL_STATE(4821)] = 168078, - [SMALL_STATE(4822)] = 168100, - [SMALL_STATE(4823)] = 168120, - [SMALL_STATE(4824)] = 168146, - [SMALL_STATE(4825)] = 168174, - [SMALL_STATE(4826)] = 168200, - [SMALL_STATE(4827)] = 168228, - [SMALL_STATE(4828)] = 168254, - [SMALL_STATE(4829)] = 168276, - [SMALL_STATE(4830)] = 168304, - [SMALL_STATE(4831)] = 168326, - [SMALL_STATE(4832)] = 168354, - [SMALL_STATE(4833)] = 168382, - [SMALL_STATE(4834)] = 168408, - [SMALL_STATE(4835)] = 168436, - [SMALL_STATE(4836)] = 168464, - [SMALL_STATE(4837)] = 168482, - [SMALL_STATE(4838)] = 168504, - [SMALL_STATE(4839)] = 168522, - [SMALL_STATE(4840)] = 168544, - [SMALL_STATE(4841)] = 168570, - [SMALL_STATE(4842)] = 168592, - [SMALL_STATE(4843)] = 168618, - [SMALL_STATE(4844)] = 168638, - [SMALL_STATE(4845)] = 168660, - [SMALL_STATE(4846)] = 168678, - [SMALL_STATE(4847)] = 168700, - [SMALL_STATE(4848)] = 168722, - [SMALL_STATE(4849)] = 168750, - [SMALL_STATE(4850)] = 168772, - [SMALL_STATE(4851)] = 168794, - [SMALL_STATE(4852)] = 168812, - [SMALL_STATE(4853)] = 168834, - [SMALL_STATE(4854)] = 168860, - [SMALL_STATE(4855)] = 168882, - [SMALL_STATE(4856)] = 168904, - [SMALL_STATE(4857)] = 168926, - [SMALL_STATE(4858)] = 168944, - [SMALL_STATE(4859)] = 168966, - [SMALL_STATE(4860)] = 168994, - [SMALL_STATE(4861)] = 169022, - [SMALL_STATE(4862)] = 169050, - [SMALL_STATE(4863)] = 169078, - [SMALL_STATE(4864)] = 169106, - [SMALL_STATE(4865)] = 169134, - [SMALL_STATE(4866)] = 169156, - [SMALL_STATE(4867)] = 169178, - [SMALL_STATE(4868)] = 169204, - [SMALL_STATE(4869)] = 169232, - [SMALL_STATE(4870)] = 169260, - [SMALL_STATE(4871)] = 169282, - [SMALL_STATE(4872)] = 169310, - [SMALL_STATE(4873)] = 169332, - [SMALL_STATE(4874)] = 169360, - [SMALL_STATE(4875)] = 169382, - [SMALL_STATE(4876)] = 169410, - [SMALL_STATE(4877)] = 169432, - [SMALL_STATE(4878)] = 169460, - [SMALL_STATE(4879)] = 169482, - [SMALL_STATE(4880)] = 169510, - [SMALL_STATE(4881)] = 169528, - [SMALL_STATE(4882)] = 169550, - [SMALL_STATE(4883)] = 169578, - [SMALL_STATE(4884)] = 169604, - [SMALL_STATE(4885)] = 169632, - [SMALL_STATE(4886)] = 169654, - [SMALL_STATE(4887)] = 169680, - [SMALL_STATE(4888)] = 169706, - [SMALL_STATE(4889)] = 169724, - [SMALL_STATE(4890)] = 169746, - [SMALL_STATE(4891)] = 169770, - [SMALL_STATE(4892)] = 169792, - [SMALL_STATE(4893)] = 169820, - [SMALL_STATE(4894)] = 169848, - [SMALL_STATE(4895)] = 169870, - [SMALL_STATE(4896)] = 169892, - [SMALL_STATE(4897)] = 169920, - [SMALL_STATE(4898)] = 169942, - [SMALL_STATE(4899)] = 169964, - [SMALL_STATE(4900)] = 169986, - [SMALL_STATE(4901)] = 170004, - [SMALL_STATE(4902)] = 170026, - [SMALL_STATE(4903)] = 170054, - [SMALL_STATE(4904)] = 170076, - [SMALL_STATE(4905)] = 170104, - [SMALL_STATE(4906)] = 170124, - [SMALL_STATE(4907)] = 170146, - [SMALL_STATE(4908)] = 170164, - [SMALL_STATE(4909)] = 170192, - [SMALL_STATE(4910)] = 170214, - [SMALL_STATE(4911)] = 170242, - [SMALL_STATE(4912)] = 170270, - [SMALL_STATE(4913)] = 170298, - [SMALL_STATE(4914)] = 170322, - [SMALL_STATE(4915)] = 170348, - [SMALL_STATE(4916)] = 170376, - [SMALL_STATE(4917)] = 170398, - [SMALL_STATE(4918)] = 170426, - [SMALL_STATE(4919)] = 170448, - [SMALL_STATE(4920)] = 170476, - [SMALL_STATE(4921)] = 170504, - [SMALL_STATE(4922)] = 170526, - [SMALL_STATE(4923)] = 170554, - [SMALL_STATE(4924)] = 170582, - [SMALL_STATE(4925)] = 170604, - [SMALL_STATE(4926)] = 170626, - [SMALL_STATE(4927)] = 170648, - [SMALL_STATE(4928)] = 170674, - [SMALL_STATE(4929)] = 170700, - [SMALL_STATE(4930)] = 170718, - [SMALL_STATE(4931)] = 170746, - [SMALL_STATE(4932)] = 170768, - [SMALL_STATE(4933)] = 170790, - [SMALL_STATE(4934)] = 170818, - [SMALL_STATE(4935)] = 170846, - [SMALL_STATE(4936)] = 170874, - [SMALL_STATE(4937)] = 170896, - [SMALL_STATE(4938)] = 170924, - [SMALL_STATE(4939)] = 170946, - [SMALL_STATE(4940)] = 170974, - [SMALL_STATE(4941)] = 171002, - [SMALL_STATE(4942)] = 171028, - [SMALL_STATE(4943)] = 171056, - [SMALL_STATE(4944)] = 171082, - [SMALL_STATE(4945)] = 171110, - [SMALL_STATE(4946)] = 171138, - [SMALL_STATE(4947)] = 171160, - [SMALL_STATE(4948)] = 171188, - [SMALL_STATE(4949)] = 171216, - [SMALL_STATE(4950)] = 171244, - [SMALL_STATE(4951)] = 171270, - [SMALL_STATE(4952)] = 171296, - [SMALL_STATE(4953)] = 171324, - [SMALL_STATE(4954)] = 171352, - [SMALL_STATE(4955)] = 171380, - [SMALL_STATE(4956)] = 171408, - [SMALL_STATE(4957)] = 171436, - [SMALL_STATE(4958)] = 171458, - [SMALL_STATE(4959)] = 171478, - [SMALL_STATE(4960)] = 171506, - [SMALL_STATE(4961)] = 171534, - [SMALL_STATE(4962)] = 171556, - [SMALL_STATE(4963)] = 171584, - [SMALL_STATE(4964)] = 171612, - [SMALL_STATE(4965)] = 171634, - [SMALL_STATE(4966)] = 171662, - [SMALL_STATE(4967)] = 171688, - [SMALL_STATE(4968)] = 171716, - [SMALL_STATE(4969)] = 171744, - [SMALL_STATE(4970)] = 171762, - [SMALL_STATE(4971)] = 171784, - [SMALL_STATE(4972)] = 171812, - [SMALL_STATE(4973)] = 171834, - [SMALL_STATE(4974)] = 171862, - [SMALL_STATE(4975)] = 171890, - [SMALL_STATE(4976)] = 171918, - [SMALL_STATE(4977)] = 171946, - [SMALL_STATE(4978)] = 171974, - [SMALL_STATE(4979)] = 171996, - [SMALL_STATE(4980)] = 172024, - [SMALL_STATE(4981)] = 172046, - [SMALL_STATE(4982)] = 172074, - [SMALL_STATE(4983)] = 172094, - [SMALL_STATE(4984)] = 172120, - [SMALL_STATE(4985)] = 172142, - [SMALL_STATE(4986)] = 172160, - [SMALL_STATE(4987)] = 172180, - [SMALL_STATE(4988)] = 172200, - [SMALL_STATE(4989)] = 172220, - [SMALL_STATE(4990)] = 172246, - [SMALL_STATE(4991)] = 172274, - [SMALL_STATE(4992)] = 172292, - [SMALL_STATE(4993)] = 172320, - [SMALL_STATE(4994)] = 172341, - [SMALL_STATE(4995)] = 172362, - [SMALL_STATE(4996)] = 172383, - [SMALL_STATE(4997)] = 172404, - [SMALL_STATE(4998)] = 172421, - [SMALL_STATE(4999)] = 172438, - [SMALL_STATE(5000)] = 172459, - [SMALL_STATE(5001)] = 172484, - [SMALL_STATE(5002)] = 172505, - [SMALL_STATE(5003)] = 172526, - [SMALL_STATE(5004)] = 172551, - [SMALL_STATE(5005)] = 172576, - [SMALL_STATE(5006)] = 172597, - [SMALL_STATE(5007)] = 172618, - [SMALL_STATE(5008)] = 172639, - [SMALL_STATE(5009)] = 172660, - [SMALL_STATE(5010)] = 172681, - [SMALL_STATE(5011)] = 172702, - [SMALL_STATE(5012)] = 172723, - [SMALL_STATE(5013)] = 172744, - [SMALL_STATE(5014)] = 172765, - [SMALL_STATE(5015)] = 172790, - [SMALL_STATE(5016)] = 172811, - [SMALL_STATE(5017)] = 172836, - [SMALL_STATE(5018)] = 172853, - [SMALL_STATE(5019)] = 172870, - [SMALL_STATE(5020)] = 172895, - [SMALL_STATE(5021)] = 172912, - [SMALL_STATE(5022)] = 172929, - [SMALL_STATE(5023)] = 172946, - [SMALL_STATE(5024)] = 172971, - [SMALL_STATE(5025)] = 172992, - [SMALL_STATE(5026)] = 173015, - [SMALL_STATE(5027)] = 173038, - [SMALL_STATE(5028)] = 173055, - [SMALL_STATE(5029)] = 173072, - [SMALL_STATE(5030)] = 173089, - [SMALL_STATE(5031)] = 173106, - [SMALL_STATE(5032)] = 173123, - [SMALL_STATE(5033)] = 173140, - [SMALL_STATE(5034)] = 173157, - [SMALL_STATE(5035)] = 173174, - [SMALL_STATE(5036)] = 173191, - [SMALL_STATE(5037)] = 173208, - [SMALL_STATE(5038)] = 173225, - [SMALL_STATE(5039)] = 173242, - [SMALL_STATE(5040)] = 173259, - [SMALL_STATE(5041)] = 173276, - [SMALL_STATE(5042)] = 173293, - [SMALL_STATE(5043)] = 173310, - [SMALL_STATE(5044)] = 173327, - [SMALL_STATE(5045)] = 173344, - [SMALL_STATE(5046)] = 173361, - [SMALL_STATE(5047)] = 173378, - [SMALL_STATE(5048)] = 173395, - [SMALL_STATE(5049)] = 173412, - [SMALL_STATE(5050)] = 173429, - [SMALL_STATE(5051)] = 173446, - [SMALL_STATE(5052)] = 173463, - [SMALL_STATE(5053)] = 173480, - [SMALL_STATE(5054)] = 173497, - [SMALL_STATE(5055)] = 173514, - [SMALL_STATE(5056)] = 173531, - [SMALL_STATE(5057)] = 173548, - [SMALL_STATE(5058)] = 173565, - [SMALL_STATE(5059)] = 173582, - [SMALL_STATE(5060)] = 173599, - [SMALL_STATE(5061)] = 173616, - [SMALL_STATE(5062)] = 173633, - [SMALL_STATE(5063)] = 173650, - [SMALL_STATE(5064)] = 173667, - [SMALL_STATE(5065)] = 173688, - [SMALL_STATE(5066)] = 173705, - [SMALL_STATE(5067)] = 173726, - [SMALL_STATE(5068)] = 173743, - [SMALL_STATE(5069)] = 173764, - [SMALL_STATE(5070)] = 173789, - [SMALL_STATE(5071)] = 173814, - [SMALL_STATE(5072)] = 173835, - [SMALL_STATE(5073)] = 173856, - [SMALL_STATE(5074)] = 173873, - [SMALL_STATE(5075)] = 173890, - [SMALL_STATE(5076)] = 173915, - [SMALL_STATE(5077)] = 173940, - [SMALL_STATE(5078)] = 173957, - [SMALL_STATE(5079)] = 173974, - [SMALL_STATE(5080)] = 173991, - [SMALL_STATE(5081)] = 174008, - [SMALL_STATE(5082)] = 174031, - [SMALL_STATE(5083)] = 174048, - [SMALL_STATE(5084)] = 174071, - [SMALL_STATE(5085)] = 174088, - [SMALL_STATE(5086)] = 174105, - [SMALL_STATE(5087)] = 174122, - [SMALL_STATE(5088)] = 174139, - [SMALL_STATE(5089)] = 174156, - [SMALL_STATE(5090)] = 174173, - [SMALL_STATE(5091)] = 174194, - [SMALL_STATE(5092)] = 174219, - [SMALL_STATE(5093)] = 174236, - [SMALL_STATE(5094)] = 174259, - [SMALL_STATE(5095)] = 174280, - [SMALL_STATE(5096)] = 174305, - [SMALL_STATE(5097)] = 174322, - [SMALL_STATE(5098)] = 174339, - [SMALL_STATE(5099)] = 174356, - [SMALL_STATE(5100)] = 174373, - [SMALL_STATE(5101)] = 174398, - [SMALL_STATE(5102)] = 174415, - [SMALL_STATE(5103)] = 174432, - [SMALL_STATE(5104)] = 174449, - [SMALL_STATE(5105)] = 174466, - [SMALL_STATE(5106)] = 174483, - [SMALL_STATE(5107)] = 174500, - [SMALL_STATE(5108)] = 174517, - [SMALL_STATE(5109)] = 174534, - [SMALL_STATE(5110)] = 174551, - [SMALL_STATE(5111)] = 174568, - [SMALL_STATE(5112)] = 174589, - [SMALL_STATE(5113)] = 174614, - [SMALL_STATE(5114)] = 174635, - [SMALL_STATE(5115)] = 174660, - [SMALL_STATE(5116)] = 174679, - [SMALL_STATE(5117)] = 174700, - [SMALL_STATE(5118)] = 174721, - [SMALL_STATE(5119)] = 174742, - [SMALL_STATE(5120)] = 174767, - [SMALL_STATE(5121)] = 174788, - [SMALL_STATE(5122)] = 174809, - [SMALL_STATE(5123)] = 174834, - [SMALL_STATE(5124)] = 174855, - [SMALL_STATE(5125)] = 174880, - [SMALL_STATE(5126)] = 174905, - [SMALL_STATE(5127)] = 174926, - [SMALL_STATE(5128)] = 174951, - [SMALL_STATE(5129)] = 174972, - [SMALL_STATE(5130)] = 174989, - [SMALL_STATE(5131)] = 175010, - [SMALL_STATE(5132)] = 175035, - [SMALL_STATE(5133)] = 175060, - [SMALL_STATE(5134)] = 175083, - [SMALL_STATE(5135)] = 175108, - [SMALL_STATE(5136)] = 175133, - [SMALL_STATE(5137)] = 175154, - [SMALL_STATE(5138)] = 175175, - [SMALL_STATE(5139)] = 175196, - [SMALL_STATE(5140)] = 175217, - [SMALL_STATE(5141)] = 175238, - [SMALL_STATE(5142)] = 175259, - [SMALL_STATE(5143)] = 175284, - [SMALL_STATE(5144)] = 175309, - [SMALL_STATE(5145)] = 175330, - [SMALL_STATE(5146)] = 175349, - [SMALL_STATE(5147)] = 175366, - [SMALL_STATE(5148)] = 175391, - [SMALL_STATE(5149)] = 175412, - [SMALL_STATE(5150)] = 175433, - [SMALL_STATE(5151)] = 175450, - [SMALL_STATE(5152)] = 175473, - [SMALL_STATE(5153)] = 175494, - [SMALL_STATE(5154)] = 175519, - [SMALL_STATE(5155)] = 175536, - [SMALL_STATE(5156)] = 175561, - [SMALL_STATE(5157)] = 175582, - [SMALL_STATE(5158)] = 175603, - [SMALL_STATE(5159)] = 175626, - [SMALL_STATE(5160)] = 175647, - [SMALL_STATE(5161)] = 175668, - [SMALL_STATE(5162)] = 175689, - [SMALL_STATE(5163)] = 175714, - [SMALL_STATE(5164)] = 175731, - [SMALL_STATE(5165)] = 175752, - [SMALL_STATE(5166)] = 175773, - [SMALL_STATE(5167)] = 175796, - [SMALL_STATE(5168)] = 175821, - [SMALL_STATE(5169)] = 175842, - [SMALL_STATE(5170)] = 175867, - [SMALL_STATE(5171)] = 175892, - [SMALL_STATE(5172)] = 175917, - [SMALL_STATE(5173)] = 175942, - [SMALL_STATE(5174)] = 175959, - [SMALL_STATE(5175)] = 175984, - [SMALL_STATE(5176)] = 176009, - [SMALL_STATE(5177)] = 176030, - [SMALL_STATE(5178)] = 176047, - [SMALL_STATE(5179)] = 176072, - [SMALL_STATE(5180)] = 176093, - [SMALL_STATE(5181)] = 176114, - [SMALL_STATE(5182)] = 176135, - [SMALL_STATE(5183)] = 176160, - [SMALL_STATE(5184)] = 176185, - [SMALL_STATE(5185)] = 176206, - [SMALL_STATE(5186)] = 176223, - [SMALL_STATE(5187)] = 176240, - [SMALL_STATE(5188)] = 176257, - [SMALL_STATE(5189)] = 176278, - [SMALL_STATE(5190)] = 176303, - [SMALL_STATE(5191)] = 176320, - [SMALL_STATE(5192)] = 176345, - [SMALL_STATE(5193)] = 176366, - [SMALL_STATE(5194)] = 176387, - [SMALL_STATE(5195)] = 176412, - [SMALL_STATE(5196)] = 176435, - [SMALL_STATE(5197)] = 176460, - [SMALL_STATE(5198)] = 176481, - [SMALL_STATE(5199)] = 176506, - [SMALL_STATE(5200)] = 176527, - [SMALL_STATE(5201)] = 176552, - [SMALL_STATE(5202)] = 176573, - [SMALL_STATE(5203)] = 176598, - [SMALL_STATE(5204)] = 176619, - [SMALL_STATE(5205)] = 176636, - [SMALL_STATE(5206)] = 176661, - [SMALL_STATE(5207)] = 176682, - [SMALL_STATE(5208)] = 176707, - [SMALL_STATE(5209)] = 176732, - [SMALL_STATE(5210)] = 176753, - [SMALL_STATE(5211)] = 176770, - [SMALL_STATE(5212)] = 176793, - [SMALL_STATE(5213)] = 176810, - [SMALL_STATE(5214)] = 176835, - [SMALL_STATE(5215)] = 176854, - [SMALL_STATE(5216)] = 176879, - [SMALL_STATE(5217)] = 176900, - [SMALL_STATE(5218)] = 176921, - [SMALL_STATE(5219)] = 176942, - [SMALL_STATE(5220)] = 176963, - [SMALL_STATE(5221)] = 176988, - [SMALL_STATE(5222)] = 177009, - [SMALL_STATE(5223)] = 177034, - [SMALL_STATE(5224)] = 177055, - [SMALL_STATE(5225)] = 177080, - [SMALL_STATE(5226)] = 177105, - [SMALL_STATE(5227)] = 177130, - [SMALL_STATE(5228)] = 177147, - [SMALL_STATE(5229)] = 177164, - [SMALL_STATE(5230)] = 177181, - [SMALL_STATE(5231)] = 177202, - [SMALL_STATE(5232)] = 177227, - [SMALL_STATE(5233)] = 177248, - [SMALL_STATE(5234)] = 177265, - [SMALL_STATE(5235)] = 177290, - [SMALL_STATE(5236)] = 177307, - [SMALL_STATE(5237)] = 177328, - [SMALL_STATE(5238)] = 177349, - [SMALL_STATE(5239)] = 177374, - [SMALL_STATE(5240)] = 177395, - [SMALL_STATE(5241)] = 177416, - [SMALL_STATE(5242)] = 177441, - [SMALL_STATE(5243)] = 177466, - [SMALL_STATE(5244)] = 177487, - [SMALL_STATE(5245)] = 177508, - [SMALL_STATE(5246)] = 177529, - [SMALL_STATE(5247)] = 177550, - [SMALL_STATE(5248)] = 177571, - [SMALL_STATE(5249)] = 177592, - [SMALL_STATE(5250)] = 177613, - [SMALL_STATE(5251)] = 177634, - [SMALL_STATE(5252)] = 177655, - [SMALL_STATE(5253)] = 177680, - [SMALL_STATE(5254)] = 177701, - [SMALL_STATE(5255)] = 177718, - [SMALL_STATE(5256)] = 177737, - [SMALL_STATE(5257)] = 177758, - [SMALL_STATE(5258)] = 177775, - [SMALL_STATE(5259)] = 177792, - [SMALL_STATE(5260)] = 177817, - [SMALL_STATE(5261)] = 177838, - [SMALL_STATE(5262)] = 177863, - [SMALL_STATE(5263)] = 177884, - [SMALL_STATE(5264)] = 177901, - [SMALL_STATE(5265)] = 177918, - [SMALL_STATE(5266)] = 177941, - [SMALL_STATE(5267)] = 177966, - [SMALL_STATE(5268)] = 177991, - [SMALL_STATE(5269)] = 178008, - [SMALL_STATE(5270)] = 178029, - [SMALL_STATE(5271)] = 178046, - [SMALL_STATE(5272)] = 178067, - [SMALL_STATE(5273)] = 178084, - [SMALL_STATE(5274)] = 178107, - [SMALL_STATE(5275)] = 178124, - [SMALL_STATE(5276)] = 178141, - [SMALL_STATE(5277)] = 178158, - [SMALL_STATE(5278)] = 178175, - [SMALL_STATE(5279)] = 178196, - [SMALL_STATE(5280)] = 178217, - [SMALL_STATE(5281)] = 178238, - [SMALL_STATE(5282)] = 178263, - [SMALL_STATE(5283)] = 178284, - [SMALL_STATE(5284)] = 178305, - [SMALL_STATE(5285)] = 178322, - [SMALL_STATE(5286)] = 178339, - [SMALL_STATE(5287)] = 178364, - [SMALL_STATE(5288)] = 178389, - [SMALL_STATE(5289)] = 178414, - [SMALL_STATE(5290)] = 178431, - [SMALL_STATE(5291)] = 178456, - [SMALL_STATE(5292)] = 178473, - [SMALL_STATE(5293)] = 178490, - [SMALL_STATE(5294)] = 178511, - [SMALL_STATE(5295)] = 178528, - [SMALL_STATE(5296)] = 178549, - [SMALL_STATE(5297)] = 178570, - [SMALL_STATE(5298)] = 178595, - [SMALL_STATE(5299)] = 178618, - [SMALL_STATE(5300)] = 178635, - [SMALL_STATE(5301)] = 178660, - [SMALL_STATE(5302)] = 178685, - [SMALL_STATE(5303)] = 178706, - [SMALL_STATE(5304)] = 178723, - [SMALL_STATE(5305)] = 178744, - [SMALL_STATE(5306)] = 178769, - [SMALL_STATE(5307)] = 178790, - [SMALL_STATE(5308)] = 178811, - [SMALL_STATE(5309)] = 178828, - [SMALL_STATE(5310)] = 178845, - [SMALL_STATE(5311)] = 178862, - [SMALL_STATE(5312)] = 178879, - [SMALL_STATE(5313)] = 178900, - [SMALL_STATE(5314)] = 178917, - [SMALL_STATE(5315)] = 178934, - [SMALL_STATE(5316)] = 178959, - [SMALL_STATE(5317)] = 178980, - [SMALL_STATE(5318)] = 179001, - [SMALL_STATE(5319)] = 179026, - [SMALL_STATE(5320)] = 179047, - [SMALL_STATE(5321)] = 179068, - [SMALL_STATE(5322)] = 179093, - [SMALL_STATE(5323)] = 179114, - [SMALL_STATE(5324)] = 179137, - [SMALL_STATE(5325)] = 179154, - [SMALL_STATE(5326)] = 179171, - [SMALL_STATE(5327)] = 179196, - [SMALL_STATE(5328)] = 179217, - [SMALL_STATE(5329)] = 179242, - [SMALL_STATE(5330)] = 179263, - [SMALL_STATE(5331)] = 179284, - [SMALL_STATE(5332)] = 179309, - [SMALL_STATE(5333)] = 179334, - [SMALL_STATE(5334)] = 179359, - [SMALL_STATE(5335)] = 179376, - [SMALL_STATE(5336)] = 179397, - [SMALL_STATE(5337)] = 179422, - [SMALL_STATE(5338)] = 179447, - [SMALL_STATE(5339)] = 179472, - [SMALL_STATE(5340)] = 179495, - [SMALL_STATE(5341)] = 179520, - [SMALL_STATE(5342)] = 179541, - [SMALL_STATE(5343)] = 179566, - [SMALL_STATE(5344)] = 179591, - [SMALL_STATE(5345)] = 179616, - [SMALL_STATE(5346)] = 179637, - [SMALL_STATE(5347)] = 179662, - [SMALL_STATE(5348)] = 179687, - [SMALL_STATE(5349)] = 179712, - [SMALL_STATE(5350)] = 179737, - [SMALL_STATE(5351)] = 179762, - [SMALL_STATE(5352)] = 179787, - [SMALL_STATE(5353)] = 179812, - [SMALL_STATE(5354)] = 179837, - [SMALL_STATE(5355)] = 179862, - [SMALL_STATE(5356)] = 179883, - [SMALL_STATE(5357)] = 179904, - [SMALL_STATE(5358)] = 179921, - [SMALL_STATE(5359)] = 179942, - [SMALL_STATE(5360)] = 179963, - [SMALL_STATE(5361)] = 179984, - [SMALL_STATE(5362)] = 180005, - [SMALL_STATE(5363)] = 180022, - [SMALL_STATE(5364)] = 180043, - [SMALL_STATE(5365)] = 180064, - [SMALL_STATE(5366)] = 180085, - [SMALL_STATE(5367)] = 180106, - [SMALL_STATE(5368)] = 180127, - [SMALL_STATE(5369)] = 180152, - [SMALL_STATE(5370)] = 180177, - [SMALL_STATE(5371)] = 180202, - [SMALL_STATE(5372)] = 180227, - [SMALL_STATE(5373)] = 180244, - [SMALL_STATE(5374)] = 180269, - [SMALL_STATE(5375)] = 180290, - [SMALL_STATE(5376)] = 180311, - [SMALL_STATE(5377)] = 180336, - [SMALL_STATE(5378)] = 180357, - [SMALL_STATE(5379)] = 180382, - [SMALL_STATE(5380)] = 180403, - [SMALL_STATE(5381)] = 180428, - [SMALL_STATE(5382)] = 180449, - [SMALL_STATE(5383)] = 180470, - [SMALL_STATE(5384)] = 180495, - [SMALL_STATE(5385)] = 180516, - [SMALL_STATE(5386)] = 180537, - [SMALL_STATE(5387)] = 180562, - [SMALL_STATE(5388)] = 180587, - [SMALL_STATE(5389)] = 180608, - [SMALL_STATE(5390)] = 180625, - [SMALL_STATE(5391)] = 180648, - [SMALL_STATE(5392)] = 180665, - [SMALL_STATE(5393)] = 180682, - [SMALL_STATE(5394)] = 180707, - [SMALL_STATE(5395)] = 180732, - [SMALL_STATE(5396)] = 180757, - [SMALL_STATE(5397)] = 180774, - [SMALL_STATE(5398)] = 180797, - [SMALL_STATE(5399)] = 180818, - [SMALL_STATE(5400)] = 180839, - [SMALL_STATE(5401)] = 180860, - [SMALL_STATE(5402)] = 180877, - [SMALL_STATE(5403)] = 180898, - [SMALL_STATE(5404)] = 180919, - [SMALL_STATE(5405)] = 180940, - [SMALL_STATE(5406)] = 180961, - [SMALL_STATE(5407)] = 180978, - [SMALL_STATE(5408)] = 180995, - [SMALL_STATE(5409)] = 181020, - [SMALL_STATE(5410)] = 181037, - [SMALL_STATE(5411)] = 181058, - [SMALL_STATE(5412)] = 181079, - [SMALL_STATE(5413)] = 181100, - [SMALL_STATE(5414)] = 181121, - [SMALL_STATE(5415)] = 181142, - [SMALL_STATE(5416)] = 181167, - [SMALL_STATE(5417)] = 181188, - [SMALL_STATE(5418)] = 181213, - [SMALL_STATE(5419)] = 181238, - [SMALL_STATE(5420)] = 181263, - [SMALL_STATE(5421)] = 181288, - [SMALL_STATE(5422)] = 181309, - [SMALL_STATE(5423)] = 181334, - [SMALL_STATE(5424)] = 181359, - [SMALL_STATE(5425)] = 181380, - [SMALL_STATE(5426)] = 181405, - [SMALL_STATE(5427)] = 181430, - [SMALL_STATE(5428)] = 181447, - [SMALL_STATE(5429)] = 181472, - [SMALL_STATE(5430)] = 181493, - [SMALL_STATE(5431)] = 181518, - [SMALL_STATE(5432)] = 181539, - [SMALL_STATE(5433)] = 181556, - [SMALL_STATE(5434)] = 181577, - [SMALL_STATE(5435)] = 181594, - [SMALL_STATE(5436)] = 181619, - [SMALL_STATE(5437)] = 181640, - [SMALL_STATE(5438)] = 181661, - [SMALL_STATE(5439)] = 181682, - [SMALL_STATE(5440)] = 181707, - [SMALL_STATE(5441)] = 181728, - [SMALL_STATE(5442)] = 181749, - [SMALL_STATE(5443)] = 181770, - [SMALL_STATE(5444)] = 181795, - [SMALL_STATE(5445)] = 181816, - [SMALL_STATE(5446)] = 181837, - [SMALL_STATE(5447)] = 181858, - [SMALL_STATE(5448)] = 181881, - [SMALL_STATE(5449)] = 181906, - [SMALL_STATE(5450)] = 181927, - [SMALL_STATE(5451)] = 181948, - [SMALL_STATE(5452)] = 181971, - [SMALL_STATE(5453)] = 181994, - [SMALL_STATE(5454)] = 182019, - [SMALL_STATE(5455)] = 182040, - [SMALL_STATE(5456)] = 182063, - [SMALL_STATE(5457)] = 182084, - [SMALL_STATE(5458)] = 182107, - [SMALL_STATE(5459)] = 182128, - [SMALL_STATE(5460)] = 182149, - [SMALL_STATE(5461)] = 182170, - [SMALL_STATE(5462)] = 182187, - [SMALL_STATE(5463)] = 182212, - [SMALL_STATE(5464)] = 182235, - [SMALL_STATE(5465)] = 182260, - [SMALL_STATE(5466)] = 182281, - [SMALL_STATE(5467)] = 182302, - [SMALL_STATE(5468)] = 182323, - [SMALL_STATE(5469)] = 182348, - [SMALL_STATE(5470)] = 182373, - [SMALL_STATE(5471)] = 182394, - [SMALL_STATE(5472)] = 182415, - [SMALL_STATE(5473)] = 182440, - [SMALL_STATE(5474)] = 182465, - [SMALL_STATE(5475)] = 182488, - [SMALL_STATE(5476)] = 182513, - [SMALL_STATE(5477)] = 182538, - [SMALL_STATE(5478)] = 182563, - [SMALL_STATE(5479)] = 182588, - [SMALL_STATE(5480)] = 182611, - [SMALL_STATE(5481)] = 182636, - [SMALL_STATE(5482)] = 182661, - [SMALL_STATE(5483)] = 182686, - [SMALL_STATE(5484)] = 182711, - [SMALL_STATE(5485)] = 182736, - [SMALL_STATE(5486)] = 182761, - [SMALL_STATE(5487)] = 182786, - [SMALL_STATE(5488)] = 182803, - [SMALL_STATE(5489)] = 182826, - [SMALL_STATE(5490)] = 182847, - [SMALL_STATE(5491)] = 182868, - [SMALL_STATE(5492)] = 182893, - [SMALL_STATE(5493)] = 182914, - [SMALL_STATE(5494)] = 182939, - [SMALL_STATE(5495)] = 182964, - [SMALL_STATE(5496)] = 182981, - [SMALL_STATE(5497)] = 182998, - [SMALL_STATE(5498)] = 183019, - [SMALL_STATE(5499)] = 183044, - [SMALL_STATE(5500)] = 183069, - [SMALL_STATE(5501)] = 183094, - [SMALL_STATE(5502)] = 183111, - [SMALL_STATE(5503)] = 183132, - [SMALL_STATE(5504)] = 183153, - [SMALL_STATE(5505)] = 183174, - [SMALL_STATE(5506)] = 183195, - [SMALL_STATE(5507)] = 183216, - [SMALL_STATE(5508)] = 183237, - [SMALL_STATE(5509)] = 183258, - [SMALL_STATE(5510)] = 183275, - [SMALL_STATE(5511)] = 183296, - [SMALL_STATE(5512)] = 183313, - [SMALL_STATE(5513)] = 183330, - [SMALL_STATE(5514)] = 183349, - [SMALL_STATE(5515)] = 183370, - [SMALL_STATE(5516)] = 183391, - [SMALL_STATE(5517)] = 183410, - [SMALL_STATE(5518)] = 183429, - [SMALL_STATE(5519)] = 183450, - [SMALL_STATE(5520)] = 183469, - [SMALL_STATE(5521)] = 183489, - [SMALL_STATE(5522)] = 183511, - [SMALL_STATE(5523)] = 183533, - [SMALL_STATE(5524)] = 183553, - [SMALL_STATE(5525)] = 183575, - [SMALL_STATE(5526)] = 183593, - [SMALL_STATE(5527)] = 183615, - [SMALL_STATE(5528)] = 183635, - [SMALL_STATE(5529)] = 183655, - [SMALL_STATE(5530)] = 183677, - [SMALL_STATE(5531)] = 183699, - [SMALL_STATE(5532)] = 183715, - [SMALL_STATE(5533)] = 183735, - [SMALL_STATE(5534)] = 183757, - [SMALL_STATE(5535)] = 183779, - [SMALL_STATE(5536)] = 183801, - [SMALL_STATE(5537)] = 183821, - [SMALL_STATE(5538)] = 183843, - [SMALL_STATE(5539)] = 183863, - [SMALL_STATE(5540)] = 183881, - [SMALL_STATE(5541)] = 183901, - [SMALL_STATE(5542)] = 183919, - [SMALL_STATE(5543)] = 183939, - [SMALL_STATE(5544)] = 183959, - [SMALL_STATE(5545)] = 183979, - [SMALL_STATE(5546)] = 184001, - [SMALL_STATE(5547)] = 184021, - [SMALL_STATE(5548)] = 184043, - [SMALL_STATE(5549)] = 184063, - [SMALL_STATE(5550)] = 184085, - [SMALL_STATE(5551)] = 184105, - [SMALL_STATE(5552)] = 184125, - [SMALL_STATE(5553)] = 184147, - [SMALL_STATE(5554)] = 184169, - [SMALL_STATE(5555)] = 184189, - [SMALL_STATE(5556)] = 184209, - [SMALL_STATE(5557)] = 184229, - [SMALL_STATE(5558)] = 184249, - [SMALL_STATE(5559)] = 184269, - [SMALL_STATE(5560)] = 184289, - [SMALL_STATE(5561)] = 184311, - [SMALL_STATE(5562)] = 184331, - [SMALL_STATE(5563)] = 184351, - [SMALL_STATE(5564)] = 184371, - [SMALL_STATE(5565)] = 184391, - [SMALL_STATE(5566)] = 184411, - [SMALL_STATE(5567)] = 184431, - [SMALL_STATE(5568)] = 184451, - [SMALL_STATE(5569)] = 184471, - [SMALL_STATE(5570)] = 184493, - [SMALL_STATE(5571)] = 184515, - [SMALL_STATE(5572)] = 184537, - [SMALL_STATE(5573)] = 184559, - [SMALL_STATE(5574)] = 184581, - [SMALL_STATE(5575)] = 184603, - [SMALL_STATE(5576)] = 184625, - [SMALL_STATE(5577)] = 184647, - [SMALL_STATE(5578)] = 184669, - [SMALL_STATE(5579)] = 184689, - [SMALL_STATE(5580)] = 184709, - [SMALL_STATE(5581)] = 184729, - [SMALL_STATE(5582)] = 184749, - [SMALL_STATE(5583)] = 184769, - [SMALL_STATE(5584)] = 184789, - [SMALL_STATE(5585)] = 184811, - [SMALL_STATE(5586)] = 184831, - [SMALL_STATE(5587)] = 184851, - [SMALL_STATE(5588)] = 184871, - [SMALL_STATE(5589)] = 184891, - [SMALL_STATE(5590)] = 184913, - [SMALL_STATE(5591)] = 184933, - [SMALL_STATE(5592)] = 184953, - [SMALL_STATE(5593)] = 184973, - [SMALL_STATE(5594)] = 184993, - [SMALL_STATE(5595)] = 185015, - [SMALL_STATE(5596)] = 185037, - [SMALL_STATE(5597)] = 185057, - [SMALL_STATE(5598)] = 185077, - [SMALL_STATE(5599)] = 185097, - [SMALL_STATE(5600)] = 185115, - [SMALL_STATE(5601)] = 185135, - [SMALL_STATE(5602)] = 185155, - [SMALL_STATE(5603)] = 185175, - [SMALL_STATE(5604)] = 185195, - [SMALL_STATE(5605)] = 185215, - [SMALL_STATE(5606)] = 185235, - [SMALL_STATE(5607)] = 185257, - [SMALL_STATE(5608)] = 185277, - [SMALL_STATE(5609)] = 185297, - [SMALL_STATE(5610)] = 185317, - [SMALL_STATE(5611)] = 185339, - [SMALL_STATE(5612)] = 185355, - [SMALL_STATE(5613)] = 185377, - [SMALL_STATE(5614)] = 185399, - [SMALL_STATE(5615)] = 185417, - [SMALL_STATE(5616)] = 185435, - [SMALL_STATE(5617)] = 185457, - [SMALL_STATE(5618)] = 185477, - [SMALL_STATE(5619)] = 185497, - [SMALL_STATE(5620)] = 185517, - [SMALL_STATE(5621)] = 185539, - [SMALL_STATE(5622)] = 185559, - [SMALL_STATE(5623)] = 185579, - [SMALL_STATE(5624)] = 185601, - [SMALL_STATE(5625)] = 185621, - [SMALL_STATE(5626)] = 185641, - [SMALL_STATE(5627)] = 185657, - [SMALL_STATE(5628)] = 185677, - [SMALL_STATE(5629)] = 185697, - [SMALL_STATE(5630)] = 185719, - [SMALL_STATE(5631)] = 185739, - [SMALL_STATE(5632)] = 185759, - [SMALL_STATE(5633)] = 185781, - [SMALL_STATE(5634)] = 185803, - [SMALL_STATE(5635)] = 185821, - [SMALL_STATE(5636)] = 185839, - [SMALL_STATE(5637)] = 185859, - [SMALL_STATE(5638)] = 185879, - [SMALL_STATE(5639)] = 185901, - [SMALL_STATE(5640)] = 185923, - [SMALL_STATE(5641)] = 185943, - [SMALL_STATE(5642)] = 185965, - [SMALL_STATE(5643)] = 185985, - [SMALL_STATE(5644)] = 186005, - [SMALL_STATE(5645)] = 186027, - [SMALL_STATE(5646)] = 186047, - [SMALL_STATE(5647)] = 186067, - [SMALL_STATE(5648)] = 186089, - [SMALL_STATE(5649)] = 186109, - [SMALL_STATE(5650)] = 186129, - [SMALL_STATE(5651)] = 186149, - [SMALL_STATE(5652)] = 186171, - [SMALL_STATE(5653)] = 186193, - [SMALL_STATE(5654)] = 186215, - [SMALL_STATE(5655)] = 186235, - [SMALL_STATE(5656)] = 186255, - [SMALL_STATE(5657)] = 186275, - [SMALL_STATE(5658)] = 186295, - [SMALL_STATE(5659)] = 186315, - [SMALL_STATE(5660)] = 186337, - [SMALL_STATE(5661)] = 186359, - [SMALL_STATE(5662)] = 186381, - [SMALL_STATE(5663)] = 186403, - [SMALL_STATE(5664)] = 186425, - [SMALL_STATE(5665)] = 186445, - [SMALL_STATE(5666)] = 186465, - [SMALL_STATE(5667)] = 186485, - [SMALL_STATE(5668)] = 186505, - [SMALL_STATE(5669)] = 186527, - [SMALL_STATE(5670)] = 186549, - [SMALL_STATE(5671)] = 186567, - [SMALL_STATE(5672)] = 186587, - [SMALL_STATE(5673)] = 186607, - [SMALL_STATE(5674)] = 186625, - [SMALL_STATE(5675)] = 186647, - [SMALL_STATE(5676)] = 186667, - [SMALL_STATE(5677)] = 186689, - [SMALL_STATE(5678)] = 186705, - [SMALL_STATE(5679)] = 186725, - [SMALL_STATE(5680)] = 186745, - [SMALL_STATE(5681)] = 186767, - [SMALL_STATE(5682)] = 186787, - [SMALL_STATE(5683)] = 186807, - [SMALL_STATE(5684)] = 186829, - [SMALL_STATE(5685)] = 186851, - [SMALL_STATE(5686)] = 186871, - [SMALL_STATE(5687)] = 186893, - [SMALL_STATE(5688)] = 186913, - [SMALL_STATE(5689)] = 186935, - [SMALL_STATE(5690)] = 186955, - [SMALL_STATE(5691)] = 186977, - [SMALL_STATE(5692)] = 186993, - [SMALL_STATE(5693)] = 187009, - [SMALL_STATE(5694)] = 187031, - [SMALL_STATE(5695)] = 187053, - [SMALL_STATE(5696)] = 187075, - [SMALL_STATE(5697)] = 187095, - [SMALL_STATE(5698)] = 187115, - [SMALL_STATE(5699)] = 187137, - [SMALL_STATE(5700)] = 187157, - [SMALL_STATE(5701)] = 187177, - [SMALL_STATE(5702)] = 187197, - [SMALL_STATE(5703)] = 187217, - [SMALL_STATE(5704)] = 187239, - [SMALL_STATE(5705)] = 187261, - [SMALL_STATE(5706)] = 187281, - [SMALL_STATE(5707)] = 187301, - [SMALL_STATE(5708)] = 187323, - [SMALL_STATE(5709)] = 187343, - [SMALL_STATE(5710)] = 187365, - [SMALL_STATE(5711)] = 187385, - [SMALL_STATE(5712)] = 187405, - [SMALL_STATE(5713)] = 187427, - [SMALL_STATE(5714)] = 187447, - [SMALL_STATE(5715)] = 187469, - [SMALL_STATE(5716)] = 187489, - [SMALL_STATE(5717)] = 187509, - [SMALL_STATE(5718)] = 187529, - [SMALL_STATE(5719)] = 187549, - [SMALL_STATE(5720)] = 187569, - [SMALL_STATE(5721)] = 187591, - [SMALL_STATE(5722)] = 187611, - [SMALL_STATE(5723)] = 187631, - [SMALL_STATE(5724)] = 187651, - [SMALL_STATE(5725)] = 187671, - [SMALL_STATE(5726)] = 187691, - [SMALL_STATE(5727)] = 187713, - [SMALL_STATE(5728)] = 187733, - [SMALL_STATE(5729)] = 187753, - [SMALL_STATE(5730)] = 187773, - [SMALL_STATE(5731)] = 187795, - [SMALL_STATE(5732)] = 187817, - [SMALL_STATE(5733)] = 187837, - [SMALL_STATE(5734)] = 187853, - [SMALL_STATE(5735)] = 187873, - [SMALL_STATE(5736)] = 187893, - [SMALL_STATE(5737)] = 187915, - [SMALL_STATE(5738)] = 187937, - [SMALL_STATE(5739)] = 187955, - [SMALL_STATE(5740)] = 187975, - [SMALL_STATE(5741)] = 187995, - [SMALL_STATE(5742)] = 188015, - [SMALL_STATE(5743)] = 188031, - [SMALL_STATE(5744)] = 188053, - [SMALL_STATE(5745)] = 188069, - [SMALL_STATE(5746)] = 188085, - [SMALL_STATE(5747)] = 188101, - [SMALL_STATE(5748)] = 188121, - [SMALL_STATE(5749)] = 188141, - [SMALL_STATE(5750)] = 188160, - [SMALL_STATE(5751)] = 188175, - [SMALL_STATE(5752)] = 188194, - [SMALL_STATE(5753)] = 188213, - [SMALL_STATE(5754)] = 188228, - [SMALL_STATE(5755)] = 188247, - [SMALL_STATE(5756)] = 188262, - [SMALL_STATE(5757)] = 188281, - [SMALL_STATE(5758)] = 188296, - [SMALL_STATE(5759)] = 188311, - [SMALL_STATE(5760)] = 188326, - [SMALL_STATE(5761)] = 188341, - [SMALL_STATE(5762)] = 188356, - [SMALL_STATE(5763)] = 188375, - [SMALL_STATE(5764)] = 188390, - [SMALL_STATE(5765)] = 188405, - [SMALL_STATE(5766)] = 188420, - [SMALL_STATE(5767)] = 188435, - [SMALL_STATE(5768)] = 188450, - [SMALL_STATE(5769)] = 188465, - [SMALL_STATE(5770)] = 188480, - [SMALL_STATE(5771)] = 188495, - [SMALL_STATE(5772)] = 188514, - [SMALL_STATE(5773)] = 188529, - [SMALL_STATE(5774)] = 188548, - [SMALL_STATE(5775)] = 188567, - [SMALL_STATE(5776)] = 188582, - [SMALL_STATE(5777)] = 188597, - [SMALL_STATE(5778)] = 188612, - [SMALL_STATE(5779)] = 188631, - [SMALL_STATE(5780)] = 188646, - [SMALL_STATE(5781)] = 188661, - [SMALL_STATE(5782)] = 188676, - [SMALL_STATE(5783)] = 188691, - [SMALL_STATE(5784)] = 188706, - [SMALL_STATE(5785)] = 188723, - [SMALL_STATE(5786)] = 188738, - [SMALL_STATE(5787)] = 188755, - [SMALL_STATE(5788)] = 188770, - [SMALL_STATE(5789)] = 188785, - [SMALL_STATE(5790)] = 188800, - [SMALL_STATE(5791)] = 188815, - [SMALL_STATE(5792)] = 188830, - [SMALL_STATE(5793)] = 188845, - [SMALL_STATE(5794)] = 188860, - [SMALL_STATE(5795)] = 188875, - [SMALL_STATE(5796)] = 188890, - [SMALL_STATE(5797)] = 188905, - [SMALL_STATE(5798)] = 188920, - [SMALL_STATE(5799)] = 188939, - [SMALL_STATE(5800)] = 188954, - [SMALL_STATE(5801)] = 188973, - [SMALL_STATE(5802)] = 188988, - [SMALL_STATE(5803)] = 189003, - [SMALL_STATE(5804)] = 189018, - [SMALL_STATE(5805)] = 189037, - [SMALL_STATE(5806)] = 189052, - [SMALL_STATE(5807)] = 189067, - [SMALL_STATE(5808)] = 189086, - [SMALL_STATE(5809)] = 189101, - [SMALL_STATE(5810)] = 189120, - [SMALL_STATE(5811)] = 189135, - [SMALL_STATE(5812)] = 189150, - [SMALL_STATE(5813)] = 189165, - [SMALL_STATE(5814)] = 189184, - [SMALL_STATE(5815)] = 189199, - [SMALL_STATE(5816)] = 189214, - [SMALL_STATE(5817)] = 189229, - [SMALL_STATE(5818)] = 189248, - [SMALL_STATE(5819)] = 189263, - [SMALL_STATE(5820)] = 189278, - [SMALL_STATE(5821)] = 189297, - [SMALL_STATE(5822)] = 189316, - [SMALL_STATE(5823)] = 189335, - [SMALL_STATE(5824)] = 189350, - [SMALL_STATE(5825)] = 189365, - [SMALL_STATE(5826)] = 189380, - [SMALL_STATE(5827)] = 189395, - [SMALL_STATE(5828)] = 189410, - [SMALL_STATE(5829)] = 189425, - [SMALL_STATE(5830)] = 189440, - [SMALL_STATE(5831)] = 189455, - [SMALL_STATE(5832)] = 189474, - [SMALL_STATE(5833)] = 189489, - [SMALL_STATE(5834)] = 189508, - [SMALL_STATE(5835)] = 189523, - [SMALL_STATE(5836)] = 189538, - [SMALL_STATE(5837)] = 189553, - [SMALL_STATE(5838)] = 189568, - [SMALL_STATE(5839)] = 189587, - [SMALL_STATE(5840)] = 189602, - [SMALL_STATE(5841)] = 189621, - [SMALL_STATE(5842)] = 189640, - [SMALL_STATE(5843)] = 189659, - [SMALL_STATE(5844)] = 189678, - [SMALL_STATE(5845)] = 189697, - [SMALL_STATE(5846)] = 189712, - [SMALL_STATE(5847)] = 189727, - [SMALL_STATE(5848)] = 189742, - [SMALL_STATE(5849)] = 189757, - [SMALL_STATE(5850)] = 189772, - [SMALL_STATE(5851)] = 189787, - [SMALL_STATE(5852)] = 189802, - [SMALL_STATE(5853)] = 189817, - [SMALL_STATE(5854)] = 189832, - [SMALL_STATE(5855)] = 189847, - [SMALL_STATE(5856)] = 189862, - [SMALL_STATE(5857)] = 189877, - [SMALL_STATE(5858)] = 189892, - [SMALL_STATE(5859)] = 189907, - [SMALL_STATE(5860)] = 189922, - [SMALL_STATE(5861)] = 189937, - [SMALL_STATE(5862)] = 189952, - [SMALL_STATE(5863)] = 189967, - [SMALL_STATE(5864)] = 189984, - [SMALL_STATE(5865)] = 189999, - [SMALL_STATE(5866)] = 190014, - [SMALL_STATE(5867)] = 190029, - [SMALL_STATE(5868)] = 190044, - [SMALL_STATE(5869)] = 190061, - [SMALL_STATE(5870)] = 190076, - [SMALL_STATE(5871)] = 190091, - [SMALL_STATE(5872)] = 190106, - [SMALL_STATE(5873)] = 190121, - [SMALL_STATE(5874)] = 190136, - [SMALL_STATE(5875)] = 190151, - [SMALL_STATE(5876)] = 190170, - [SMALL_STATE(5877)] = 190185, - [SMALL_STATE(5878)] = 190204, - [SMALL_STATE(5879)] = 190219, - [SMALL_STATE(5880)] = 190234, - [SMALL_STATE(5881)] = 190251, - [SMALL_STATE(5882)] = 190270, - [SMALL_STATE(5883)] = 190289, - [SMALL_STATE(5884)] = 190304, - [SMALL_STATE(5885)] = 190319, - [SMALL_STATE(5886)] = 190334, - [SMALL_STATE(5887)] = 190349, - [SMALL_STATE(5888)] = 190364, - [SMALL_STATE(5889)] = 190379, - [SMALL_STATE(5890)] = 190394, - [SMALL_STATE(5891)] = 190409, - [SMALL_STATE(5892)] = 190426, - [SMALL_STATE(5893)] = 190441, - [SMALL_STATE(5894)] = 190456, - [SMALL_STATE(5895)] = 190471, - [SMALL_STATE(5896)] = 190486, - [SMALL_STATE(5897)] = 190503, - [SMALL_STATE(5898)] = 190518, - [SMALL_STATE(5899)] = 190533, - [SMALL_STATE(5900)] = 190548, - [SMALL_STATE(5901)] = 190563, - [SMALL_STATE(5902)] = 190578, - [SMALL_STATE(5903)] = 190593, - [SMALL_STATE(5904)] = 190608, - [SMALL_STATE(5905)] = 190627, - [SMALL_STATE(5906)] = 190642, - [SMALL_STATE(5907)] = 190657, - [SMALL_STATE(5908)] = 190672, - [SMALL_STATE(5909)] = 190687, - [SMALL_STATE(5910)] = 190702, - [SMALL_STATE(5911)] = 190717, - [SMALL_STATE(5912)] = 190732, - [SMALL_STATE(5913)] = 190747, - [SMALL_STATE(5914)] = 190766, - [SMALL_STATE(5915)] = 190781, - [SMALL_STATE(5916)] = 190800, - [SMALL_STATE(5917)] = 190815, - [SMALL_STATE(5918)] = 190830, - [SMALL_STATE(5919)] = 190845, - [SMALL_STATE(5920)] = 190864, - [SMALL_STATE(5921)] = 190879, - [SMALL_STATE(5922)] = 190894, - [SMALL_STATE(5923)] = 190909, - [SMALL_STATE(5924)] = 190924, - [SMALL_STATE(5925)] = 190939, - [SMALL_STATE(5926)] = 190954, - [SMALL_STATE(5927)] = 190969, - [SMALL_STATE(5928)] = 190984, - [SMALL_STATE(5929)] = 190999, - [SMALL_STATE(5930)] = 191014, - [SMALL_STATE(5931)] = 191029, - [SMALL_STATE(5932)] = 191044, - [SMALL_STATE(5933)] = 191059, - [SMALL_STATE(5934)] = 191074, - [SMALL_STATE(5935)] = 191089, - [SMALL_STATE(5936)] = 191104, - [SMALL_STATE(5937)] = 191119, - [SMALL_STATE(5938)] = 191134, - [SMALL_STATE(5939)] = 191149, - [SMALL_STATE(5940)] = 191164, - [SMALL_STATE(5941)] = 191179, - [SMALL_STATE(5942)] = 191194, - [SMALL_STATE(5943)] = 191209, - [SMALL_STATE(5944)] = 191224, - [SMALL_STATE(5945)] = 191239, - [SMALL_STATE(5946)] = 191254, - [SMALL_STATE(5947)] = 191269, - [SMALL_STATE(5948)] = 191284, - [SMALL_STATE(5949)] = 191299, - [SMALL_STATE(5950)] = 191314, - [SMALL_STATE(5951)] = 191329, - [SMALL_STATE(5952)] = 191344, - [SMALL_STATE(5953)] = 191359, - [SMALL_STATE(5954)] = 191374, - [SMALL_STATE(5955)] = 191389, - [SMALL_STATE(5956)] = 191408, - [SMALL_STATE(5957)] = 191423, - [SMALL_STATE(5958)] = 191438, - [SMALL_STATE(5959)] = 191457, - [SMALL_STATE(5960)] = 191472, - [SMALL_STATE(5961)] = 191487, - [SMALL_STATE(5962)] = 191502, - [SMALL_STATE(5963)] = 191517, - [SMALL_STATE(5964)] = 191532, - [SMALL_STATE(5965)] = 191547, - [SMALL_STATE(5966)] = 191562, - [SMALL_STATE(5967)] = 191577, - [SMALL_STATE(5968)] = 191592, - [SMALL_STATE(5969)] = 191607, - [SMALL_STATE(5970)] = 191622, - [SMALL_STATE(5971)] = 191641, - [SMALL_STATE(5972)] = 191656, - [SMALL_STATE(5973)] = 191671, - [SMALL_STATE(5974)] = 191686, - [SMALL_STATE(5975)] = 191701, - [SMALL_STATE(5976)] = 191716, - [SMALL_STATE(5977)] = 191731, - [SMALL_STATE(5978)] = 191746, - [SMALL_STATE(5979)] = 191761, - [SMALL_STATE(5980)] = 191776, - [SMALL_STATE(5981)] = 191791, - [SMALL_STATE(5982)] = 191810, - [SMALL_STATE(5983)] = 191825, - [SMALL_STATE(5984)] = 191840, - [SMALL_STATE(5985)] = 191855, - [SMALL_STATE(5986)] = 191874, - [SMALL_STATE(5987)] = 191893, - [SMALL_STATE(5988)] = 191908, - [SMALL_STATE(5989)] = 191927, - [SMALL_STATE(5990)] = 191942, - [SMALL_STATE(5991)] = 191957, - [SMALL_STATE(5992)] = 191972, - [SMALL_STATE(5993)] = 191991, - [SMALL_STATE(5994)] = 192006, - [SMALL_STATE(5995)] = 192021, - [SMALL_STATE(5996)] = 192036, - [SMALL_STATE(5997)] = 192055, - [SMALL_STATE(5998)] = 192070, - [SMALL_STATE(5999)] = 192085, - [SMALL_STATE(6000)] = 192100, - [SMALL_STATE(6001)] = 192119, - [SMALL_STATE(6002)] = 192134, - [SMALL_STATE(6003)] = 192149, - [SMALL_STATE(6004)] = 192168, - [SMALL_STATE(6005)] = 192183, - [SMALL_STATE(6006)] = 192202, - [SMALL_STATE(6007)] = 192217, - [SMALL_STATE(6008)] = 192236, - [SMALL_STATE(6009)] = 192251, - [SMALL_STATE(6010)] = 192266, - [SMALL_STATE(6011)] = 192281, - [SMALL_STATE(6012)] = 192300, - [SMALL_STATE(6013)] = 192315, - [SMALL_STATE(6014)] = 192330, - [SMALL_STATE(6015)] = 192345, - [SMALL_STATE(6016)] = 192364, - [SMALL_STATE(6017)] = 192383, - [SMALL_STATE(6018)] = 192398, - [SMALL_STATE(6019)] = 192413, - [SMALL_STATE(6020)] = 192428, - [SMALL_STATE(6021)] = 192443, - [SMALL_STATE(6022)] = 192458, - [SMALL_STATE(6023)] = 192473, - [SMALL_STATE(6024)] = 192488, - [SMALL_STATE(6025)] = 192503, - [SMALL_STATE(6026)] = 192518, - [SMALL_STATE(6027)] = 192533, - [SMALL_STATE(6028)] = 192548, - [SMALL_STATE(6029)] = 192563, - [SMALL_STATE(6030)] = 192578, - [SMALL_STATE(6031)] = 192593, - [SMALL_STATE(6032)] = 192610, - [SMALL_STATE(6033)] = 192627, - [SMALL_STATE(6034)] = 192642, - [SMALL_STATE(6035)] = 192657, - [SMALL_STATE(6036)] = 192672, - [SMALL_STATE(6037)] = 192687, - [SMALL_STATE(6038)] = 192702, - [SMALL_STATE(6039)] = 192717, - [SMALL_STATE(6040)] = 192732, - [SMALL_STATE(6041)] = 192747, - [SMALL_STATE(6042)] = 192762, - [SMALL_STATE(6043)] = 192777, - [SMALL_STATE(6044)] = 192792, - [SMALL_STATE(6045)] = 192807, - [SMALL_STATE(6046)] = 192822, - [SMALL_STATE(6047)] = 192837, - [SMALL_STATE(6048)] = 192852, - [SMALL_STATE(6049)] = 192867, - [SMALL_STATE(6050)] = 192882, - [SMALL_STATE(6051)] = 192897, - [SMALL_STATE(6052)] = 192916, - [SMALL_STATE(6053)] = 192931, - [SMALL_STATE(6054)] = 192950, - [SMALL_STATE(6055)] = 192969, - [SMALL_STATE(6056)] = 192984, - [SMALL_STATE(6057)] = 193003, - [SMALL_STATE(6058)] = 193018, - [SMALL_STATE(6059)] = 193037, - [SMALL_STATE(6060)] = 193052, - [SMALL_STATE(6061)] = 193071, - [SMALL_STATE(6062)] = 193088, - [SMALL_STATE(6063)] = 193103, - [SMALL_STATE(6064)] = 193122, - [SMALL_STATE(6065)] = 193141, - [SMALL_STATE(6066)] = 193160, - [SMALL_STATE(6067)] = 193179, - [SMALL_STATE(6068)] = 193194, - [SMALL_STATE(6069)] = 193213, - [SMALL_STATE(6070)] = 193228, - [SMALL_STATE(6071)] = 193243, - [SMALL_STATE(6072)] = 193258, - [SMALL_STATE(6073)] = 193277, - [SMALL_STATE(6074)] = 193294, - [SMALL_STATE(6075)] = 193313, - [SMALL_STATE(6076)] = 193328, - [SMALL_STATE(6077)] = 193347, - [SMALL_STATE(6078)] = 193362, - [SMALL_STATE(6079)] = 193379, - [SMALL_STATE(6080)] = 193394, - [SMALL_STATE(6081)] = 193413, - [SMALL_STATE(6082)] = 193432, - [SMALL_STATE(6083)] = 193447, - [SMALL_STATE(6084)] = 193462, - [SMALL_STATE(6085)] = 193477, - [SMALL_STATE(6086)] = 193496, - [SMALL_STATE(6087)] = 193513, - [SMALL_STATE(6088)] = 193528, - [SMALL_STATE(6089)] = 193543, - [SMALL_STATE(6090)] = 193560, - [SMALL_STATE(6091)] = 193577, - [SMALL_STATE(6092)] = 193592, - [SMALL_STATE(6093)] = 193611, - [SMALL_STATE(6094)] = 193630, - [SMALL_STATE(6095)] = 193649, - [SMALL_STATE(6096)] = 193664, - [SMALL_STATE(6097)] = 193679, - [SMALL_STATE(6098)] = 193698, - [SMALL_STATE(6099)] = 193713, - [SMALL_STATE(6100)] = 193732, - [SMALL_STATE(6101)] = 193751, - [SMALL_STATE(6102)] = 193770, - [SMALL_STATE(6103)] = 193789, - [SMALL_STATE(6104)] = 193808, - [SMALL_STATE(6105)] = 193823, - [SMALL_STATE(6106)] = 193838, - [SMALL_STATE(6107)] = 193857, - [SMALL_STATE(6108)] = 193876, - [SMALL_STATE(6109)] = 193895, - [SMALL_STATE(6110)] = 193914, - [SMALL_STATE(6111)] = 193929, - [SMALL_STATE(6112)] = 193948, - [SMALL_STATE(6113)] = 193963, - [SMALL_STATE(6114)] = 193980, - [SMALL_STATE(6115)] = 193995, - [SMALL_STATE(6116)] = 194014, - [SMALL_STATE(6117)] = 194033, - [SMALL_STATE(6118)] = 194050, - [SMALL_STATE(6119)] = 194065, - [SMALL_STATE(6120)] = 194080, - [SMALL_STATE(6121)] = 194095, - [SMALL_STATE(6122)] = 194110, - [SMALL_STATE(6123)] = 194125, - [SMALL_STATE(6124)] = 194140, - [SMALL_STATE(6125)] = 194155, - [SMALL_STATE(6126)] = 194170, - [SMALL_STATE(6127)] = 194185, - [SMALL_STATE(6128)] = 194200, - [SMALL_STATE(6129)] = 194215, - [SMALL_STATE(6130)] = 194234, - [SMALL_STATE(6131)] = 194249, - [SMALL_STATE(6132)] = 194264, - [SMALL_STATE(6133)] = 194279, - [SMALL_STATE(6134)] = 194294, - [SMALL_STATE(6135)] = 194313, - [SMALL_STATE(6136)] = 194328, - [SMALL_STATE(6137)] = 194347, - [SMALL_STATE(6138)] = 194362, - [SMALL_STATE(6139)] = 194381, - [SMALL_STATE(6140)] = 194400, - [SMALL_STATE(6141)] = 194419, - [SMALL_STATE(6142)] = 194436, - [SMALL_STATE(6143)] = 194451, - [SMALL_STATE(6144)] = 194468, - [SMALL_STATE(6145)] = 194485, - [SMALL_STATE(6146)] = 194504, - [SMALL_STATE(6147)] = 194519, - [SMALL_STATE(6148)] = 194534, - [SMALL_STATE(6149)] = 194549, - [SMALL_STATE(6150)] = 194564, - [SMALL_STATE(6151)] = 194579, - [SMALL_STATE(6152)] = 194594, - [SMALL_STATE(6153)] = 194609, - [SMALL_STATE(6154)] = 194628, - [SMALL_STATE(6155)] = 194645, - [SMALL_STATE(6156)] = 194660, - [SMALL_STATE(6157)] = 194677, - [SMALL_STATE(6158)] = 194692, - [SMALL_STATE(6159)] = 194711, - [SMALL_STATE(6160)] = 194730, - [SMALL_STATE(6161)] = 194745, - [SMALL_STATE(6162)] = 194764, - [SMALL_STATE(6163)] = 194779, - [SMALL_STATE(6164)] = 194794, - [SMALL_STATE(6165)] = 194811, - [SMALL_STATE(6166)] = 194830, - [SMALL_STATE(6167)] = 194845, - [SMALL_STATE(6168)] = 194862, - [SMALL_STATE(6169)] = 194877, - [SMALL_STATE(6170)] = 194892, - [SMALL_STATE(6171)] = 194907, - [SMALL_STATE(6172)] = 194924, - [SMALL_STATE(6173)] = 194939, - [SMALL_STATE(6174)] = 194956, - [SMALL_STATE(6175)] = 194975, - [SMALL_STATE(6176)] = 194990, - [SMALL_STATE(6177)] = 195009, - [SMALL_STATE(6178)] = 195024, - [SMALL_STATE(6179)] = 195039, - [SMALL_STATE(6180)] = 195056, - [SMALL_STATE(6181)] = 195075, - [SMALL_STATE(6182)] = 195090, - [SMALL_STATE(6183)] = 195109, - [SMALL_STATE(6184)] = 195128, - [SMALL_STATE(6185)] = 195147, - [SMALL_STATE(6186)] = 195164, - [SMALL_STATE(6187)] = 195179, - [SMALL_STATE(6188)] = 195198, - [SMALL_STATE(6189)] = 195217, - [SMALL_STATE(6190)] = 195232, - [SMALL_STATE(6191)] = 195251, - [SMALL_STATE(6192)] = 195268, - [SMALL_STATE(6193)] = 195287, - [SMALL_STATE(6194)] = 195302, - [SMALL_STATE(6195)] = 195321, - [SMALL_STATE(6196)] = 195336, - [SMALL_STATE(6197)] = 195355, - [SMALL_STATE(6198)] = 195374, - [SMALL_STATE(6199)] = 195393, - [SMALL_STATE(6200)] = 195412, - [SMALL_STATE(6201)] = 195427, - [SMALL_STATE(6202)] = 195444, - [SMALL_STATE(6203)] = 195463, - [SMALL_STATE(6204)] = 195478, - [SMALL_STATE(6205)] = 195495, - [SMALL_STATE(6206)] = 195514, - [SMALL_STATE(6207)] = 195531, - [SMALL_STATE(6208)] = 195550, - [SMALL_STATE(6209)] = 195567, - [SMALL_STATE(6210)] = 195584, - [SMALL_STATE(6211)] = 195603, - [SMALL_STATE(6212)] = 195620, - [SMALL_STATE(6213)] = 195639, - [SMALL_STATE(6214)] = 195658, - [SMALL_STATE(6215)] = 195673, - [SMALL_STATE(6216)] = 195688, - [SMALL_STATE(6217)] = 195707, - [SMALL_STATE(6218)] = 195722, - [SMALL_STATE(6219)] = 195739, - [SMALL_STATE(6220)] = 195754, - [SMALL_STATE(6221)] = 195769, - [SMALL_STATE(6222)] = 195784, - [SMALL_STATE(6223)] = 195803, - [SMALL_STATE(6224)] = 195822, - [SMALL_STATE(6225)] = 195839, - [SMALL_STATE(6226)] = 195856, - [SMALL_STATE(6227)] = 195875, - [SMALL_STATE(6228)] = 195890, - [SMALL_STATE(6229)] = 195905, - [SMALL_STATE(6230)] = 195924, - [SMALL_STATE(6231)] = 195939, - [SMALL_STATE(6232)] = 195954, - [SMALL_STATE(6233)] = 195969, - [SMALL_STATE(6234)] = 195988, - [SMALL_STATE(6235)] = 196007, - [SMALL_STATE(6236)] = 196022, - [SMALL_STATE(6237)] = 196037, - [SMALL_STATE(6238)] = 196052, - [SMALL_STATE(6239)] = 196071, - [SMALL_STATE(6240)] = 196090, - [SMALL_STATE(6241)] = 196105, - [SMALL_STATE(6242)] = 196124, - [SMALL_STATE(6243)] = 196139, - [SMALL_STATE(6244)] = 196158, - [SMALL_STATE(6245)] = 196173, - [SMALL_STATE(6246)] = 196192, - [SMALL_STATE(6247)] = 196209, - [SMALL_STATE(6248)] = 196226, - [SMALL_STATE(6249)] = 196245, - [SMALL_STATE(6250)] = 196264, - [SMALL_STATE(6251)] = 196279, - [SMALL_STATE(6252)] = 196294, - [SMALL_STATE(6253)] = 196313, - [SMALL_STATE(6254)] = 196332, - [SMALL_STATE(6255)] = 196347, - [SMALL_STATE(6256)] = 196362, - [SMALL_STATE(6257)] = 196381, - [SMALL_STATE(6258)] = 196398, - [SMALL_STATE(6259)] = 196417, - [SMALL_STATE(6260)] = 196432, - [SMALL_STATE(6261)] = 196451, - [SMALL_STATE(6262)] = 196470, - [SMALL_STATE(6263)] = 196487, - [SMALL_STATE(6264)] = 196502, - [SMALL_STATE(6265)] = 196521, - [SMALL_STATE(6266)] = 196540, - [SMALL_STATE(6267)] = 196555, - [SMALL_STATE(6268)] = 196570, - [SMALL_STATE(6269)] = 196589, - [SMALL_STATE(6270)] = 196608, - [SMALL_STATE(6271)] = 196627, - [SMALL_STATE(6272)] = 196642, - [SMALL_STATE(6273)] = 196661, - [SMALL_STATE(6274)] = 196676, - [SMALL_STATE(6275)] = 196695, - [SMALL_STATE(6276)] = 196710, - [SMALL_STATE(6277)] = 196729, - [SMALL_STATE(6278)] = 196748, - [SMALL_STATE(6279)] = 196767, - [SMALL_STATE(6280)] = 196782, - [SMALL_STATE(6281)] = 196799, - [SMALL_STATE(6282)] = 196818, - [SMALL_STATE(6283)] = 196833, - [SMALL_STATE(6284)] = 196848, - [SMALL_STATE(6285)] = 196865, - [SMALL_STATE(6286)] = 196882, - [SMALL_STATE(6287)] = 196897, - [SMALL_STATE(6288)] = 196916, - [SMALL_STATE(6289)] = 196931, - [SMALL_STATE(6290)] = 196946, - [SMALL_STATE(6291)] = 196963, - [SMALL_STATE(6292)] = 196982, - [SMALL_STATE(6293)] = 196997, - [SMALL_STATE(6294)] = 197012, - [SMALL_STATE(6295)] = 197027, - [SMALL_STATE(6296)] = 197044, - [SMALL_STATE(6297)] = 197063, - [SMALL_STATE(6298)] = 197082, - [SMALL_STATE(6299)] = 197101, - [SMALL_STATE(6300)] = 197116, - [SMALL_STATE(6301)] = 197135, - [SMALL_STATE(6302)] = 197152, - [SMALL_STATE(6303)] = 197171, - [SMALL_STATE(6304)] = 197188, - [SMALL_STATE(6305)] = 197203, - [SMALL_STATE(6306)] = 197222, - [SMALL_STATE(6307)] = 197239, - [SMALL_STATE(6308)] = 197254, - [SMALL_STATE(6309)] = 197271, - [SMALL_STATE(6310)] = 197286, - [SMALL_STATE(6311)] = 197305, - [SMALL_STATE(6312)] = 197324, - [SMALL_STATE(6313)] = 197343, - [SMALL_STATE(6314)] = 197358, - [SMALL_STATE(6315)] = 197377, - [SMALL_STATE(6316)] = 197394, - [SMALL_STATE(6317)] = 197413, - [SMALL_STATE(6318)] = 197432, - [SMALL_STATE(6319)] = 197449, - [SMALL_STATE(6320)] = 197468, - [SMALL_STATE(6321)] = 197487, - [SMALL_STATE(6322)] = 197502, - [SMALL_STATE(6323)] = 197517, - [SMALL_STATE(6324)] = 197532, - [SMALL_STATE(6325)] = 197551, - [SMALL_STATE(6326)] = 197570, - [SMALL_STATE(6327)] = 197589, - [SMALL_STATE(6328)] = 197604, - [SMALL_STATE(6329)] = 197621, - [SMALL_STATE(6330)] = 197638, - [SMALL_STATE(6331)] = 197657, - [SMALL_STATE(6332)] = 197674, - [SMALL_STATE(6333)] = 197693, - [SMALL_STATE(6334)] = 197710, - [SMALL_STATE(6335)] = 197725, - [SMALL_STATE(6336)] = 197744, - [SMALL_STATE(6337)] = 197763, - [SMALL_STATE(6338)] = 197778, - [SMALL_STATE(6339)] = 197793, - [SMALL_STATE(6340)] = 197812, - [SMALL_STATE(6341)] = 197827, - [SMALL_STATE(6342)] = 197842, - [SMALL_STATE(6343)] = 197861, - [SMALL_STATE(6344)] = 197878, - [SMALL_STATE(6345)] = 197897, - [SMALL_STATE(6346)] = 197912, - [SMALL_STATE(6347)] = 197927, - [SMALL_STATE(6348)] = 197946, - [SMALL_STATE(6349)] = 197961, - [SMALL_STATE(6350)] = 197978, - [SMALL_STATE(6351)] = 197997, - [SMALL_STATE(6352)] = 198012, - [SMALL_STATE(6353)] = 198031, - [SMALL_STATE(6354)] = 198050, - [SMALL_STATE(6355)] = 198069, - [SMALL_STATE(6356)] = 198088, - [SMALL_STATE(6357)] = 198107, - [SMALL_STATE(6358)] = 198122, - [SMALL_STATE(6359)] = 198137, - [SMALL_STATE(6360)] = 198152, - [SMALL_STATE(6361)] = 198167, - [SMALL_STATE(6362)] = 198186, - [SMALL_STATE(6363)] = 198205, - [SMALL_STATE(6364)] = 198224, - [SMALL_STATE(6365)] = 198243, - [SMALL_STATE(6366)] = 198258, - [SMALL_STATE(6367)] = 198273, - [SMALL_STATE(6368)] = 198288, - [SMALL_STATE(6369)] = 198307, - [SMALL_STATE(6370)] = 198322, - [SMALL_STATE(6371)] = 198339, - [SMALL_STATE(6372)] = 198358, - [SMALL_STATE(6373)] = 198375, - [SMALL_STATE(6374)] = 198390, - [SMALL_STATE(6375)] = 198405, - [SMALL_STATE(6376)] = 198420, - [SMALL_STATE(6377)] = 198439, - [SMALL_STATE(6378)] = 198454, - [SMALL_STATE(6379)] = 198473, - [SMALL_STATE(6380)] = 198492, - [SMALL_STATE(6381)] = 198511, - [SMALL_STATE(6382)] = 198530, - [SMALL_STATE(6383)] = 198545, - [SMALL_STATE(6384)] = 198562, - [SMALL_STATE(6385)] = 198581, - [SMALL_STATE(6386)] = 198596, - [SMALL_STATE(6387)] = 198613, - [SMALL_STATE(6388)] = 198628, - [SMALL_STATE(6389)] = 198647, - [SMALL_STATE(6390)] = 198662, - [SMALL_STATE(6391)] = 198677, - [SMALL_STATE(6392)] = 198696, - [SMALL_STATE(6393)] = 198715, - [SMALL_STATE(6394)] = 198734, - [SMALL_STATE(6395)] = 198753, - [SMALL_STATE(6396)] = 198768, - [SMALL_STATE(6397)] = 198787, - [SMALL_STATE(6398)] = 198806, - [SMALL_STATE(6399)] = 198821, - [SMALL_STATE(6400)] = 198836, - [SMALL_STATE(6401)] = 198851, - [SMALL_STATE(6402)] = 198870, - [SMALL_STATE(6403)] = 198889, - [SMALL_STATE(6404)] = 198904, - [SMALL_STATE(6405)] = 198923, - [SMALL_STATE(6406)] = 198942, - [SMALL_STATE(6407)] = 198957, - [SMALL_STATE(6408)] = 198976, - [SMALL_STATE(6409)] = 198993, - [SMALL_STATE(6410)] = 199008, - [SMALL_STATE(6411)] = 199023, - [SMALL_STATE(6412)] = 199040, - [SMALL_STATE(6413)] = 199055, - [SMALL_STATE(6414)] = 199070, - [SMALL_STATE(6415)] = 199089, - [SMALL_STATE(6416)] = 199106, - [SMALL_STATE(6417)] = 199123, - [SMALL_STATE(6418)] = 199142, - [SMALL_STATE(6419)] = 199161, - [SMALL_STATE(6420)] = 199176, - [SMALL_STATE(6421)] = 199193, - [SMALL_STATE(6422)] = 199210, - [SMALL_STATE(6423)] = 199229, - [SMALL_STATE(6424)] = 199246, - [SMALL_STATE(6425)] = 199261, - [SMALL_STATE(6426)] = 199278, - [SMALL_STATE(6427)] = 199295, - [SMALL_STATE(6428)] = 199312, - [SMALL_STATE(6429)] = 199327, - [SMALL_STATE(6430)] = 199344, - [SMALL_STATE(6431)] = 199359, - [SMALL_STATE(6432)] = 199376, - [SMALL_STATE(6433)] = 199391, - [SMALL_STATE(6434)] = 199410, - [SMALL_STATE(6435)] = 199425, - [SMALL_STATE(6436)] = 199444, - [SMALL_STATE(6437)] = 199459, - [SMALL_STATE(6438)] = 199478, - [SMALL_STATE(6439)] = 199493, - [SMALL_STATE(6440)] = 199512, - [SMALL_STATE(6441)] = 199528, - [SMALL_STATE(6442)] = 199542, - [SMALL_STATE(6443)] = 199558, - [SMALL_STATE(6444)] = 199574, - [SMALL_STATE(6445)] = 199590, - [SMALL_STATE(6446)] = 199606, - [SMALL_STATE(6447)] = 199622, - [SMALL_STATE(6448)] = 199636, - [SMALL_STATE(6449)] = 199652, - [SMALL_STATE(6450)] = 199668, - [SMALL_STATE(6451)] = 199684, - [SMALL_STATE(6452)] = 199698, - [SMALL_STATE(6453)] = 199714, - [SMALL_STATE(6454)] = 199730, - [SMALL_STATE(6455)] = 199746, - [SMALL_STATE(6456)] = 199762, - [SMALL_STATE(6457)] = 199776, - [SMALL_STATE(6458)] = 199792, - [SMALL_STATE(6459)] = 199808, - [SMALL_STATE(6460)] = 199824, - [SMALL_STATE(6461)] = 199838, - [SMALL_STATE(6462)] = 199854, - [SMALL_STATE(6463)] = 199870, - [SMALL_STATE(6464)] = 199886, - [SMALL_STATE(6465)] = 199902, - [SMALL_STATE(6466)] = 199918, - [SMALL_STATE(6467)] = 199934, - [SMALL_STATE(6468)] = 199948, - [SMALL_STATE(6469)] = 199962, - [SMALL_STATE(6470)] = 199978, - [SMALL_STATE(6471)] = 199992, - [SMALL_STATE(6472)] = 200006, - [SMALL_STATE(6473)] = 200022, - [SMALL_STATE(6474)] = 200038, - [SMALL_STATE(6475)] = 200054, - [SMALL_STATE(6476)] = 200068, - [SMALL_STATE(6477)] = 200084, - [SMALL_STATE(6478)] = 200098, - [SMALL_STATE(6479)] = 200114, - [SMALL_STATE(6480)] = 200130, - [SMALL_STATE(6481)] = 200146, - [SMALL_STATE(6482)] = 200162, - [SMALL_STATE(6483)] = 200178, - [SMALL_STATE(6484)] = 200194, - [SMALL_STATE(6485)] = 200210, - [SMALL_STATE(6486)] = 200226, - [SMALL_STATE(6487)] = 200242, - [SMALL_STATE(6488)] = 200258, - [SMALL_STATE(6489)] = 200274, - [SMALL_STATE(6490)] = 200290, - [SMALL_STATE(6491)] = 200304, - [SMALL_STATE(6492)] = 200320, - [SMALL_STATE(6493)] = 200336, - [SMALL_STATE(6494)] = 200352, - [SMALL_STATE(6495)] = 200368, - [SMALL_STATE(6496)] = 200384, - [SMALL_STATE(6497)] = 200400, - [SMALL_STATE(6498)] = 200416, - [SMALL_STATE(6499)] = 200432, - [SMALL_STATE(6500)] = 200448, - [SMALL_STATE(6501)] = 200462, - [SMALL_STATE(6502)] = 200476, - [SMALL_STATE(6503)] = 200492, - [SMALL_STATE(6504)] = 200506, - [SMALL_STATE(6505)] = 200520, - [SMALL_STATE(6506)] = 200536, - [SMALL_STATE(6507)] = 200552, - [SMALL_STATE(6508)] = 200568, - [SMALL_STATE(6509)] = 200584, - [SMALL_STATE(6510)] = 200600, - [SMALL_STATE(6511)] = 200616, - [SMALL_STATE(6512)] = 200632, - [SMALL_STATE(6513)] = 200646, - [SMALL_STATE(6514)] = 200662, - [SMALL_STATE(6515)] = 200676, - [SMALL_STATE(6516)] = 200692, - [SMALL_STATE(6517)] = 200708, - [SMALL_STATE(6518)] = 200724, - [SMALL_STATE(6519)] = 200738, - [SMALL_STATE(6520)] = 200752, - [SMALL_STATE(6521)] = 200768, - [SMALL_STATE(6522)] = 200784, - [SMALL_STATE(6523)] = 200798, - [SMALL_STATE(6524)] = 200812, - [SMALL_STATE(6525)] = 200828, - [SMALL_STATE(6526)] = 200844, - [SMALL_STATE(6527)] = 200860, - [SMALL_STATE(6528)] = 200876, - [SMALL_STATE(6529)] = 200892, - [SMALL_STATE(6530)] = 200908, - [SMALL_STATE(6531)] = 200924, - [SMALL_STATE(6532)] = 200938, - [SMALL_STATE(6533)] = 200952, - [SMALL_STATE(6534)] = 200968, - [SMALL_STATE(6535)] = 200984, - [SMALL_STATE(6536)] = 201000, - [SMALL_STATE(6537)] = 201016, - [SMALL_STATE(6538)] = 201030, - [SMALL_STATE(6539)] = 201046, - [SMALL_STATE(6540)] = 201062, - [SMALL_STATE(6541)] = 201078, - [SMALL_STATE(6542)] = 201094, - [SMALL_STATE(6543)] = 201108, - [SMALL_STATE(6544)] = 201124, - [SMALL_STATE(6545)] = 201140, - [SMALL_STATE(6546)] = 201156, - [SMALL_STATE(6547)] = 201172, - [SMALL_STATE(6548)] = 201188, - [SMALL_STATE(6549)] = 201204, - [SMALL_STATE(6550)] = 201220, - [SMALL_STATE(6551)] = 201234, - [SMALL_STATE(6552)] = 201248, - [SMALL_STATE(6553)] = 201264, - [SMALL_STATE(6554)] = 201278, - [SMALL_STATE(6555)] = 201294, - [SMALL_STATE(6556)] = 201310, - [SMALL_STATE(6557)] = 201326, - [SMALL_STATE(6558)] = 201342, - [SMALL_STATE(6559)] = 201358, - [SMALL_STATE(6560)] = 201372, - [SMALL_STATE(6561)] = 201386, - [SMALL_STATE(6562)] = 201400, - [SMALL_STATE(6563)] = 201414, - [SMALL_STATE(6564)] = 201428, - [SMALL_STATE(6565)] = 201442, - [SMALL_STATE(6566)] = 201458, - [SMALL_STATE(6567)] = 201474, - [SMALL_STATE(6568)] = 201490, - [SMALL_STATE(6569)] = 201506, - [SMALL_STATE(6570)] = 201522, - [SMALL_STATE(6571)] = 201536, - [SMALL_STATE(6572)] = 201550, - [SMALL_STATE(6573)] = 201566, - [SMALL_STATE(6574)] = 201580, - [SMALL_STATE(6575)] = 201594, - [SMALL_STATE(6576)] = 201608, - [SMALL_STATE(6577)] = 201622, - [SMALL_STATE(6578)] = 201636, - [SMALL_STATE(6579)] = 201650, - [SMALL_STATE(6580)] = 201664, - [SMALL_STATE(6581)] = 201678, - [SMALL_STATE(6582)] = 201692, - [SMALL_STATE(6583)] = 201706, - [SMALL_STATE(6584)] = 201720, - [SMALL_STATE(6585)] = 201736, - [SMALL_STATE(6586)] = 201750, - [SMALL_STATE(6587)] = 201766, - [SMALL_STATE(6588)] = 201782, - [SMALL_STATE(6589)] = 201798, - [SMALL_STATE(6590)] = 201812, - [SMALL_STATE(6591)] = 201828, - [SMALL_STATE(6592)] = 201842, - [SMALL_STATE(6593)] = 201858, - [SMALL_STATE(6594)] = 201872, - [SMALL_STATE(6595)] = 201888, - [SMALL_STATE(6596)] = 201902, - [SMALL_STATE(6597)] = 201918, - [SMALL_STATE(6598)] = 201932, - [SMALL_STATE(6599)] = 201948, - [SMALL_STATE(6600)] = 201964, - [SMALL_STATE(6601)] = 201980, - [SMALL_STATE(6602)] = 201996, - [SMALL_STATE(6603)] = 202012, - [SMALL_STATE(6604)] = 202028, - [SMALL_STATE(6605)] = 202044, - [SMALL_STATE(6606)] = 202058, - [SMALL_STATE(6607)] = 202072, - [SMALL_STATE(6608)] = 202088, - [SMALL_STATE(6609)] = 202102, - [SMALL_STATE(6610)] = 202116, - [SMALL_STATE(6611)] = 202132, - [SMALL_STATE(6612)] = 202146, - [SMALL_STATE(6613)] = 202160, - [SMALL_STATE(6614)] = 202174, - [SMALL_STATE(6615)] = 202190, - [SMALL_STATE(6616)] = 202204, - [SMALL_STATE(6617)] = 202218, - [SMALL_STATE(6618)] = 202234, - [SMALL_STATE(6619)] = 202250, - [SMALL_STATE(6620)] = 202266, - [SMALL_STATE(6621)] = 202282, - [SMALL_STATE(6622)] = 202298, - [SMALL_STATE(6623)] = 202314, - [SMALL_STATE(6624)] = 202330, - [SMALL_STATE(6625)] = 202344, - [SMALL_STATE(6626)] = 202358, - [SMALL_STATE(6627)] = 202374, - [SMALL_STATE(6628)] = 202390, - [SMALL_STATE(6629)] = 202404, - [SMALL_STATE(6630)] = 202420, - [SMALL_STATE(6631)] = 202436, - [SMALL_STATE(6632)] = 202452, - [SMALL_STATE(6633)] = 202468, - [SMALL_STATE(6634)] = 202482, - [SMALL_STATE(6635)] = 202498, - [SMALL_STATE(6636)] = 202512, - [SMALL_STATE(6637)] = 202526, - [SMALL_STATE(6638)] = 202542, - [SMALL_STATE(6639)] = 202556, - [SMALL_STATE(6640)] = 202570, - [SMALL_STATE(6641)] = 202584, - [SMALL_STATE(6642)] = 202600, - [SMALL_STATE(6643)] = 202616, - [SMALL_STATE(6644)] = 202632, - [SMALL_STATE(6645)] = 202648, - [SMALL_STATE(6646)] = 202664, - [SMALL_STATE(6647)] = 202680, - [SMALL_STATE(6648)] = 202696, - [SMALL_STATE(6649)] = 202712, - [SMALL_STATE(6650)] = 202728, - [SMALL_STATE(6651)] = 202744, - [SMALL_STATE(6652)] = 202760, - [SMALL_STATE(6653)] = 202776, - [SMALL_STATE(6654)] = 202790, - [SMALL_STATE(6655)] = 202806, - [SMALL_STATE(6656)] = 202822, - [SMALL_STATE(6657)] = 202838, - [SMALL_STATE(6658)] = 202854, - [SMALL_STATE(6659)] = 202870, - [SMALL_STATE(6660)] = 202886, - [SMALL_STATE(6661)] = 202902, - [SMALL_STATE(6662)] = 202916, - [SMALL_STATE(6663)] = 202930, - [SMALL_STATE(6664)] = 202946, - [SMALL_STATE(6665)] = 202960, - [SMALL_STATE(6666)] = 202974, - [SMALL_STATE(6667)] = 202990, - [SMALL_STATE(6668)] = 203006, - [SMALL_STATE(6669)] = 203020, - [SMALL_STATE(6670)] = 203034, - [SMALL_STATE(6671)] = 203048, - [SMALL_STATE(6672)] = 203064, - [SMALL_STATE(6673)] = 203080, - [SMALL_STATE(6674)] = 203096, - [SMALL_STATE(6675)] = 203112, - [SMALL_STATE(6676)] = 203128, - [SMALL_STATE(6677)] = 203142, - [SMALL_STATE(6678)] = 203158, - [SMALL_STATE(6679)] = 203174, - [SMALL_STATE(6680)] = 203188, - [SMALL_STATE(6681)] = 203204, - [SMALL_STATE(6682)] = 203220, - [SMALL_STATE(6683)] = 203234, - [SMALL_STATE(6684)] = 203250, - [SMALL_STATE(6685)] = 203266, - [SMALL_STATE(6686)] = 203282, - [SMALL_STATE(6687)] = 203296, - [SMALL_STATE(6688)] = 203310, - [SMALL_STATE(6689)] = 203324, - [SMALL_STATE(6690)] = 203340, - [SMALL_STATE(6691)] = 203356, - [SMALL_STATE(6692)] = 203372, - [SMALL_STATE(6693)] = 203388, - [SMALL_STATE(6694)] = 203404, - [SMALL_STATE(6695)] = 203420, - [SMALL_STATE(6696)] = 203434, - [SMALL_STATE(6697)] = 203448, - [SMALL_STATE(6698)] = 203464, - [SMALL_STATE(6699)] = 203480, - [SMALL_STATE(6700)] = 203496, - [SMALL_STATE(6701)] = 203512, - [SMALL_STATE(6702)] = 203526, - [SMALL_STATE(6703)] = 203542, - [SMALL_STATE(6704)] = 203558, - [SMALL_STATE(6705)] = 203572, - [SMALL_STATE(6706)] = 203586, - [SMALL_STATE(6707)] = 203600, - [SMALL_STATE(6708)] = 203614, - [SMALL_STATE(6709)] = 203630, - [SMALL_STATE(6710)] = 203646, - [SMALL_STATE(6711)] = 203660, - [SMALL_STATE(6712)] = 203674, - [SMALL_STATE(6713)] = 203690, - [SMALL_STATE(6714)] = 203704, - [SMALL_STATE(6715)] = 203720, - [SMALL_STATE(6716)] = 203736, - [SMALL_STATE(6717)] = 203750, - [SMALL_STATE(6718)] = 203764, - [SMALL_STATE(6719)] = 203778, - [SMALL_STATE(6720)] = 203792, - [SMALL_STATE(6721)] = 203806, - [SMALL_STATE(6722)] = 203820, - [SMALL_STATE(6723)] = 203836, - [SMALL_STATE(6724)] = 203852, - [SMALL_STATE(6725)] = 203868, - [SMALL_STATE(6726)] = 203884, - [SMALL_STATE(6727)] = 203898, - [SMALL_STATE(6728)] = 203914, - [SMALL_STATE(6729)] = 203930, - [SMALL_STATE(6730)] = 203944, - [SMALL_STATE(6731)] = 203960, - [SMALL_STATE(6732)] = 203976, - [SMALL_STATE(6733)] = 203990, - [SMALL_STATE(6734)] = 204006, - [SMALL_STATE(6735)] = 204020, - [SMALL_STATE(6736)] = 204034, - [SMALL_STATE(6737)] = 204050, - [SMALL_STATE(6738)] = 204066, - [SMALL_STATE(6739)] = 204082, - [SMALL_STATE(6740)] = 204096, - [SMALL_STATE(6741)] = 204112, - [SMALL_STATE(6742)] = 204126, - [SMALL_STATE(6743)] = 204142, - [SMALL_STATE(6744)] = 204156, - [SMALL_STATE(6745)] = 204172, - [SMALL_STATE(6746)] = 204188, - [SMALL_STATE(6747)] = 204204, - [SMALL_STATE(6748)] = 204218, - [SMALL_STATE(6749)] = 204234, - [SMALL_STATE(6750)] = 204248, - [SMALL_STATE(6751)] = 204262, - [SMALL_STATE(6752)] = 204276, - [SMALL_STATE(6753)] = 204290, - [SMALL_STATE(6754)] = 204306, - [SMALL_STATE(6755)] = 204320, - [SMALL_STATE(6756)] = 204336, - [SMALL_STATE(6757)] = 204352, - [SMALL_STATE(6758)] = 204368, - [SMALL_STATE(6759)] = 204382, - [SMALL_STATE(6760)] = 204396, - [SMALL_STATE(6761)] = 204410, - [SMALL_STATE(6762)] = 204424, - [SMALL_STATE(6763)] = 204440, - [SMALL_STATE(6764)] = 204454, - [SMALL_STATE(6765)] = 204470, - [SMALL_STATE(6766)] = 204484, - [SMALL_STATE(6767)] = 204498, - [SMALL_STATE(6768)] = 204514, - [SMALL_STATE(6769)] = 204530, - [SMALL_STATE(6770)] = 204546, - [SMALL_STATE(6771)] = 204562, - [SMALL_STATE(6772)] = 204578, - [SMALL_STATE(6773)] = 204594, - [SMALL_STATE(6774)] = 204610, - [SMALL_STATE(6775)] = 204626, - [SMALL_STATE(6776)] = 204642, - [SMALL_STATE(6777)] = 204658, - [SMALL_STATE(6778)] = 204674, - [SMALL_STATE(6779)] = 204690, - [SMALL_STATE(6780)] = 204706, - [SMALL_STATE(6781)] = 204722, - [SMALL_STATE(6782)] = 204738, - [SMALL_STATE(6783)] = 204752, - [SMALL_STATE(6784)] = 204768, - [SMALL_STATE(6785)] = 204782, - [SMALL_STATE(6786)] = 204798, - [SMALL_STATE(6787)] = 204814, - [SMALL_STATE(6788)] = 204828, - [SMALL_STATE(6789)] = 204844, - [SMALL_STATE(6790)] = 204858, - [SMALL_STATE(6791)] = 204872, - [SMALL_STATE(6792)] = 204888, - [SMALL_STATE(6793)] = 204904, - [SMALL_STATE(6794)] = 204920, - [SMALL_STATE(6795)] = 204934, - [SMALL_STATE(6796)] = 204948, - [SMALL_STATE(6797)] = 204964, - [SMALL_STATE(6798)] = 204980, - [SMALL_STATE(6799)] = 204996, - [SMALL_STATE(6800)] = 205012, - [SMALL_STATE(6801)] = 205028, - [SMALL_STATE(6802)] = 205044, - [SMALL_STATE(6803)] = 205058, - [SMALL_STATE(6804)] = 205074, - [SMALL_STATE(6805)] = 205090, - [SMALL_STATE(6806)] = 205106, - [SMALL_STATE(6807)] = 205120, - [SMALL_STATE(6808)] = 205136, - [SMALL_STATE(6809)] = 205152, - [SMALL_STATE(6810)] = 205168, - [SMALL_STATE(6811)] = 205184, - [SMALL_STATE(6812)] = 205200, - [SMALL_STATE(6813)] = 205216, - [SMALL_STATE(6814)] = 205232, - [SMALL_STATE(6815)] = 205248, - [SMALL_STATE(6816)] = 205264, - [SMALL_STATE(6817)] = 205278, - [SMALL_STATE(6818)] = 205292, - [SMALL_STATE(6819)] = 205308, - [SMALL_STATE(6820)] = 205322, - [SMALL_STATE(6821)] = 205338, - [SMALL_STATE(6822)] = 205352, - [SMALL_STATE(6823)] = 205366, - [SMALL_STATE(6824)] = 205382, - [SMALL_STATE(6825)] = 205398, - [SMALL_STATE(6826)] = 205414, - [SMALL_STATE(6827)] = 205428, - [SMALL_STATE(6828)] = 205444, - [SMALL_STATE(6829)] = 205458, - [SMALL_STATE(6830)] = 205474, - [SMALL_STATE(6831)] = 205488, - [SMALL_STATE(6832)] = 205502, - [SMALL_STATE(6833)] = 205516, - [SMALL_STATE(6834)] = 205532, - [SMALL_STATE(6835)] = 205546, - [SMALL_STATE(6836)] = 205562, - [SMALL_STATE(6837)] = 205578, - [SMALL_STATE(6838)] = 205592, - [SMALL_STATE(6839)] = 205606, - [SMALL_STATE(6840)] = 205622, - [SMALL_STATE(6841)] = 205638, - [SMALL_STATE(6842)] = 205654, - [SMALL_STATE(6843)] = 205668, - [SMALL_STATE(6844)] = 205684, - [SMALL_STATE(6845)] = 205700, - [SMALL_STATE(6846)] = 205716, - [SMALL_STATE(6847)] = 205732, - [SMALL_STATE(6848)] = 205746, - [SMALL_STATE(6849)] = 205762, - [SMALL_STATE(6850)] = 205776, - [SMALL_STATE(6851)] = 205792, - [SMALL_STATE(6852)] = 205808, - [SMALL_STATE(6853)] = 205824, - [SMALL_STATE(6854)] = 205838, - [SMALL_STATE(6855)] = 205854, - [SMALL_STATE(6856)] = 205870, - [SMALL_STATE(6857)] = 205884, - [SMALL_STATE(6858)] = 205900, - [SMALL_STATE(6859)] = 205914, - [SMALL_STATE(6860)] = 205928, - [SMALL_STATE(6861)] = 205942, - [SMALL_STATE(6862)] = 205958, - [SMALL_STATE(6863)] = 205974, - [SMALL_STATE(6864)] = 205990, - [SMALL_STATE(6865)] = 206006, - [SMALL_STATE(6866)] = 206022, - [SMALL_STATE(6867)] = 206036, - [SMALL_STATE(6868)] = 206052, - [SMALL_STATE(6869)] = 206068, - [SMALL_STATE(6870)] = 206082, - [SMALL_STATE(6871)] = 206096, - [SMALL_STATE(6872)] = 206112, - [SMALL_STATE(6873)] = 206126, - [SMALL_STATE(6874)] = 206140, - [SMALL_STATE(6875)] = 206154, - [SMALL_STATE(6876)] = 206168, - [SMALL_STATE(6877)] = 206184, - [SMALL_STATE(6878)] = 206198, - [SMALL_STATE(6879)] = 206214, - [SMALL_STATE(6880)] = 206228, - [SMALL_STATE(6881)] = 206244, - [SMALL_STATE(6882)] = 206260, - [SMALL_STATE(6883)] = 206274, - [SMALL_STATE(6884)] = 206288, - [SMALL_STATE(6885)] = 206302, - [SMALL_STATE(6886)] = 206318, - [SMALL_STATE(6887)] = 206334, - [SMALL_STATE(6888)] = 206348, - [SMALL_STATE(6889)] = 206364, - [SMALL_STATE(6890)] = 206378, - [SMALL_STATE(6891)] = 206392, - [SMALL_STATE(6892)] = 206406, - [SMALL_STATE(6893)] = 206422, - [SMALL_STATE(6894)] = 206436, - [SMALL_STATE(6895)] = 206452, - [SMALL_STATE(6896)] = 206466, - [SMALL_STATE(6897)] = 206480, - [SMALL_STATE(6898)] = 206494, - [SMALL_STATE(6899)] = 206508, - [SMALL_STATE(6900)] = 206524, - [SMALL_STATE(6901)] = 206540, - [SMALL_STATE(6902)] = 206556, - [SMALL_STATE(6903)] = 206570, - [SMALL_STATE(6904)] = 206586, - [SMALL_STATE(6905)] = 206602, - [SMALL_STATE(6906)] = 206618, - [SMALL_STATE(6907)] = 206632, - [SMALL_STATE(6908)] = 206646, - [SMALL_STATE(6909)] = 206662, - [SMALL_STATE(6910)] = 206678, - [SMALL_STATE(6911)] = 206692, - [SMALL_STATE(6912)] = 206706, - [SMALL_STATE(6913)] = 206720, - [SMALL_STATE(6914)] = 206734, - [SMALL_STATE(6915)] = 206750, - [SMALL_STATE(6916)] = 206764, - [SMALL_STATE(6917)] = 206780, - [SMALL_STATE(6918)] = 206796, - [SMALL_STATE(6919)] = 206812, - [SMALL_STATE(6920)] = 206828, - [SMALL_STATE(6921)] = 206842, - [SMALL_STATE(6922)] = 206858, - [SMALL_STATE(6923)] = 206874, - [SMALL_STATE(6924)] = 206888, - [SMALL_STATE(6925)] = 206902, - [SMALL_STATE(6926)] = 206916, - [SMALL_STATE(6927)] = 206930, - [SMALL_STATE(6928)] = 206946, - [SMALL_STATE(6929)] = 206962, - [SMALL_STATE(6930)] = 206976, - [SMALL_STATE(6931)] = 206992, - [SMALL_STATE(6932)] = 207008, - [SMALL_STATE(6933)] = 207024, - [SMALL_STATE(6934)] = 207038, - [SMALL_STATE(6935)] = 207052, - [SMALL_STATE(6936)] = 207066, - [SMALL_STATE(6937)] = 207080, - [SMALL_STATE(6938)] = 207094, - [SMALL_STATE(6939)] = 207108, - [SMALL_STATE(6940)] = 207122, - [SMALL_STATE(6941)] = 207138, - [SMALL_STATE(6942)] = 207154, - [SMALL_STATE(6943)] = 207170, - [SMALL_STATE(6944)] = 207186, - [SMALL_STATE(6945)] = 207202, - [SMALL_STATE(6946)] = 207216, - [SMALL_STATE(6947)] = 207230, - [SMALL_STATE(6948)] = 207244, - [SMALL_STATE(6949)] = 207258, - [SMALL_STATE(6950)] = 207272, - [SMALL_STATE(6951)] = 207286, - [SMALL_STATE(6952)] = 207302, - [SMALL_STATE(6953)] = 207318, - [SMALL_STATE(6954)] = 207332, - [SMALL_STATE(6955)] = 207346, - [SMALL_STATE(6956)] = 207360, - [SMALL_STATE(6957)] = 207374, - [SMALL_STATE(6958)] = 207388, - [SMALL_STATE(6959)] = 207404, - [SMALL_STATE(6960)] = 207418, - [SMALL_STATE(6961)] = 207432, - [SMALL_STATE(6962)] = 207448, - [SMALL_STATE(6963)] = 207464, - [SMALL_STATE(6964)] = 207478, - [SMALL_STATE(6965)] = 207492, - [SMALL_STATE(6966)] = 207506, - [SMALL_STATE(6967)] = 207520, - [SMALL_STATE(6968)] = 207534, - [SMALL_STATE(6969)] = 207548, - [SMALL_STATE(6970)] = 207562, - [SMALL_STATE(6971)] = 207578, - [SMALL_STATE(6972)] = 207592, - [SMALL_STATE(6973)] = 207608, - [SMALL_STATE(6974)] = 207624, - [SMALL_STATE(6975)] = 207638, - [SMALL_STATE(6976)] = 207652, - [SMALL_STATE(6977)] = 207668, - [SMALL_STATE(6978)] = 207682, - [SMALL_STATE(6979)] = 207698, - [SMALL_STATE(6980)] = 207712, - [SMALL_STATE(6981)] = 207726, - [SMALL_STATE(6982)] = 207742, - [SMALL_STATE(6983)] = 207758, - [SMALL_STATE(6984)] = 207772, - [SMALL_STATE(6985)] = 207788, - [SMALL_STATE(6986)] = 207802, - [SMALL_STATE(6987)] = 207818, - [SMALL_STATE(6988)] = 207832, - [SMALL_STATE(6989)] = 207846, - [SMALL_STATE(6990)] = 207860, - [SMALL_STATE(6991)] = 207876, - [SMALL_STATE(6992)] = 207890, - [SMALL_STATE(6993)] = 207906, - [SMALL_STATE(6994)] = 207922, - [SMALL_STATE(6995)] = 207936, - [SMALL_STATE(6996)] = 207950, - [SMALL_STATE(6997)] = 207966, - [SMALL_STATE(6998)] = 207980, - [SMALL_STATE(6999)] = 207994, - [SMALL_STATE(7000)] = 208008, - [SMALL_STATE(7001)] = 208022, - [SMALL_STATE(7002)] = 208038, - [SMALL_STATE(7003)] = 208054, - [SMALL_STATE(7004)] = 208070, - [SMALL_STATE(7005)] = 208084, - [SMALL_STATE(7006)] = 208098, - [SMALL_STATE(7007)] = 208114, - [SMALL_STATE(7008)] = 208128, - [SMALL_STATE(7009)] = 208144, - [SMALL_STATE(7010)] = 208160, - [SMALL_STATE(7011)] = 208174, - [SMALL_STATE(7012)] = 208190, - [SMALL_STATE(7013)] = 208206, - [SMALL_STATE(7014)] = 208220, - [SMALL_STATE(7015)] = 208236, - [SMALL_STATE(7016)] = 208250, - [SMALL_STATE(7017)] = 208266, - [SMALL_STATE(7018)] = 208280, - [SMALL_STATE(7019)] = 208296, - [SMALL_STATE(7020)] = 208312, - [SMALL_STATE(7021)] = 208328, - [SMALL_STATE(7022)] = 208342, - [SMALL_STATE(7023)] = 208356, - [SMALL_STATE(7024)] = 208370, - [SMALL_STATE(7025)] = 208386, - [SMALL_STATE(7026)] = 208402, - [SMALL_STATE(7027)] = 208418, - [SMALL_STATE(7028)] = 208434, - [SMALL_STATE(7029)] = 208450, - [SMALL_STATE(7030)] = 208464, - [SMALL_STATE(7031)] = 208480, - [SMALL_STATE(7032)] = 208496, - [SMALL_STATE(7033)] = 208512, - [SMALL_STATE(7034)] = 208526, - [SMALL_STATE(7035)] = 208540, - [SMALL_STATE(7036)] = 208554, - [SMALL_STATE(7037)] = 208568, - [SMALL_STATE(7038)] = 208582, - [SMALL_STATE(7039)] = 208596, - [SMALL_STATE(7040)] = 208610, - [SMALL_STATE(7041)] = 208624, - [SMALL_STATE(7042)] = 208638, - [SMALL_STATE(7043)] = 208654, - [SMALL_STATE(7044)] = 208668, - [SMALL_STATE(7045)] = 208682, - [SMALL_STATE(7046)] = 208696, - [SMALL_STATE(7047)] = 208712, - [SMALL_STATE(7048)] = 208728, - [SMALL_STATE(7049)] = 208744, - [SMALL_STATE(7050)] = 208758, - [SMALL_STATE(7051)] = 208772, - [SMALL_STATE(7052)] = 208788, - [SMALL_STATE(7053)] = 208802, - [SMALL_STATE(7054)] = 208816, - [SMALL_STATE(7055)] = 208832, - [SMALL_STATE(7056)] = 208846, - [SMALL_STATE(7057)] = 208862, - [SMALL_STATE(7058)] = 208878, - [SMALL_STATE(7059)] = 208894, - [SMALL_STATE(7060)] = 208910, - [SMALL_STATE(7061)] = 208926, - [SMALL_STATE(7062)] = 208942, - [SMALL_STATE(7063)] = 208958, - [SMALL_STATE(7064)] = 208974, - [SMALL_STATE(7065)] = 208990, - [SMALL_STATE(7066)] = 209006, - [SMALL_STATE(7067)] = 209020, - [SMALL_STATE(7068)] = 209034, - [SMALL_STATE(7069)] = 209050, - [SMALL_STATE(7070)] = 209066, - [SMALL_STATE(7071)] = 209080, - [SMALL_STATE(7072)] = 209096, - [SMALL_STATE(7073)] = 209112, - [SMALL_STATE(7074)] = 209128, - [SMALL_STATE(7075)] = 209144, - [SMALL_STATE(7076)] = 209160, - [SMALL_STATE(7077)] = 209176, - [SMALL_STATE(7078)] = 209190, - [SMALL_STATE(7079)] = 209206, - [SMALL_STATE(7080)] = 209220, - [SMALL_STATE(7081)] = 209234, - [SMALL_STATE(7082)] = 209248, - [SMALL_STATE(7083)] = 209264, - [SMALL_STATE(7084)] = 209280, - [SMALL_STATE(7085)] = 209294, - [SMALL_STATE(7086)] = 209308, - [SMALL_STATE(7087)] = 209322, - [SMALL_STATE(7088)] = 209338, - [SMALL_STATE(7089)] = 209354, - [SMALL_STATE(7090)] = 209370, - [SMALL_STATE(7091)] = 209384, - [SMALL_STATE(7092)] = 209400, - [SMALL_STATE(7093)] = 209416, - [SMALL_STATE(7094)] = 209430, - [SMALL_STATE(7095)] = 209446, - [SMALL_STATE(7096)] = 209462, - [SMALL_STATE(7097)] = 209478, - [SMALL_STATE(7098)] = 209494, - [SMALL_STATE(7099)] = 209510, - [SMALL_STATE(7100)] = 209524, - [SMALL_STATE(7101)] = 209538, - [SMALL_STATE(7102)] = 209554, - [SMALL_STATE(7103)] = 209568, - [SMALL_STATE(7104)] = 209584, - [SMALL_STATE(7105)] = 209600, - [SMALL_STATE(7106)] = 209614, - [SMALL_STATE(7107)] = 209628, - [SMALL_STATE(7108)] = 209642, - [SMALL_STATE(7109)] = 209658, - [SMALL_STATE(7110)] = 209674, - [SMALL_STATE(7111)] = 209690, - [SMALL_STATE(7112)] = 209706, - [SMALL_STATE(7113)] = 209722, - [SMALL_STATE(7114)] = 209736, - [SMALL_STATE(7115)] = 209752, - [SMALL_STATE(7116)] = 209768, - [SMALL_STATE(7117)] = 209784, - [SMALL_STATE(7118)] = 209800, - [SMALL_STATE(7119)] = 209816, - [SMALL_STATE(7120)] = 209832, - [SMALL_STATE(7121)] = 209848, - [SMALL_STATE(7122)] = 209864, - [SMALL_STATE(7123)] = 209877, - [SMALL_STATE(7124)] = 209890, - [SMALL_STATE(7125)] = 209903, - [SMALL_STATE(7126)] = 209916, - [SMALL_STATE(7127)] = 209929, - [SMALL_STATE(7128)] = 209942, - [SMALL_STATE(7129)] = 209955, - [SMALL_STATE(7130)] = 209968, - [SMALL_STATE(7131)] = 209981, - [SMALL_STATE(7132)] = 209994, - [SMALL_STATE(7133)] = 210007, - [SMALL_STATE(7134)] = 210020, - [SMALL_STATE(7135)] = 210033, - [SMALL_STATE(7136)] = 210046, - [SMALL_STATE(7137)] = 210059, - [SMALL_STATE(7138)] = 210072, - [SMALL_STATE(7139)] = 210085, - [SMALL_STATE(7140)] = 210098, - [SMALL_STATE(7141)] = 210111, - [SMALL_STATE(7142)] = 210124, - [SMALL_STATE(7143)] = 210137, - [SMALL_STATE(7144)] = 210150, - [SMALL_STATE(7145)] = 210163, - [SMALL_STATE(7146)] = 210176, - [SMALL_STATE(7147)] = 210189, - [SMALL_STATE(7148)] = 210202, - [SMALL_STATE(7149)] = 210215, - [SMALL_STATE(7150)] = 210228, - [SMALL_STATE(7151)] = 210241, - [SMALL_STATE(7152)] = 210254, - [SMALL_STATE(7153)] = 210267, - [SMALL_STATE(7154)] = 210280, - [SMALL_STATE(7155)] = 210293, - [SMALL_STATE(7156)] = 210306, - [SMALL_STATE(7157)] = 210319, - [SMALL_STATE(7158)] = 210332, - [SMALL_STATE(7159)] = 210345, - [SMALL_STATE(7160)] = 210358, - [SMALL_STATE(7161)] = 210371, - [SMALL_STATE(7162)] = 210384, - [SMALL_STATE(7163)] = 210397, - [SMALL_STATE(7164)] = 210410, - [SMALL_STATE(7165)] = 210423, - [SMALL_STATE(7166)] = 210436, - [SMALL_STATE(7167)] = 210449, - [SMALL_STATE(7168)] = 210462, - [SMALL_STATE(7169)] = 210475, - [SMALL_STATE(7170)] = 210488, - [SMALL_STATE(7171)] = 210501, - [SMALL_STATE(7172)] = 210514, - [SMALL_STATE(7173)] = 210527, - [SMALL_STATE(7174)] = 210540, - [SMALL_STATE(7175)] = 210553, - [SMALL_STATE(7176)] = 210566, - [SMALL_STATE(7177)] = 210579, - [SMALL_STATE(7178)] = 210592, - [SMALL_STATE(7179)] = 210605, - [SMALL_STATE(7180)] = 210618, - [SMALL_STATE(7181)] = 210631, - [SMALL_STATE(7182)] = 210644, - [SMALL_STATE(7183)] = 210657, - [SMALL_STATE(7184)] = 210670, - [SMALL_STATE(7185)] = 210683, - [SMALL_STATE(7186)] = 210696, - [SMALL_STATE(7187)] = 210709, - [SMALL_STATE(7188)] = 210722, - [SMALL_STATE(7189)] = 210735, - [SMALL_STATE(7190)] = 210748, - [SMALL_STATE(7191)] = 210761, - [SMALL_STATE(7192)] = 210774, - [SMALL_STATE(7193)] = 210787, - [SMALL_STATE(7194)] = 210800, - [SMALL_STATE(7195)] = 210813, - [SMALL_STATE(7196)] = 210826, - [SMALL_STATE(7197)] = 210839, - [SMALL_STATE(7198)] = 210852, - [SMALL_STATE(7199)] = 210865, - [SMALL_STATE(7200)] = 210878, - [SMALL_STATE(7201)] = 210891, - [SMALL_STATE(7202)] = 210904, - [SMALL_STATE(7203)] = 210917, - [SMALL_STATE(7204)] = 210930, - [SMALL_STATE(7205)] = 210943, - [SMALL_STATE(7206)] = 210956, - [SMALL_STATE(7207)] = 210969, - [SMALL_STATE(7208)] = 210982, - [SMALL_STATE(7209)] = 210995, - [SMALL_STATE(7210)] = 211008, - [SMALL_STATE(7211)] = 211021, - [SMALL_STATE(7212)] = 211034, - [SMALL_STATE(7213)] = 211047, - [SMALL_STATE(7214)] = 211060, - [SMALL_STATE(7215)] = 211073, - [SMALL_STATE(7216)] = 211086, - [SMALL_STATE(7217)] = 211099, - [SMALL_STATE(7218)] = 211112, - [SMALL_STATE(7219)] = 211125, - [SMALL_STATE(7220)] = 211138, - [SMALL_STATE(7221)] = 211151, - [SMALL_STATE(7222)] = 211164, - [SMALL_STATE(7223)] = 211177, - [SMALL_STATE(7224)] = 211190, - [SMALL_STATE(7225)] = 211203, - [SMALL_STATE(7226)] = 211216, - [SMALL_STATE(7227)] = 211229, - [SMALL_STATE(7228)] = 211242, - [SMALL_STATE(7229)] = 211255, - [SMALL_STATE(7230)] = 211268, - [SMALL_STATE(7231)] = 211281, - [SMALL_STATE(7232)] = 211294, - [SMALL_STATE(7233)] = 211307, - [SMALL_STATE(7234)] = 211320, - [SMALL_STATE(7235)] = 211333, - [SMALL_STATE(7236)] = 211346, - [SMALL_STATE(7237)] = 211359, - [SMALL_STATE(7238)] = 211372, - [SMALL_STATE(7239)] = 211385, - [SMALL_STATE(7240)] = 211398, - [SMALL_STATE(7241)] = 211411, - [SMALL_STATE(7242)] = 211424, - [SMALL_STATE(7243)] = 211437, - [SMALL_STATE(7244)] = 211450, - [SMALL_STATE(7245)] = 211463, - [SMALL_STATE(7246)] = 211476, - [SMALL_STATE(7247)] = 211489, - [SMALL_STATE(7248)] = 211502, - [SMALL_STATE(7249)] = 211515, - [SMALL_STATE(7250)] = 211528, - [SMALL_STATE(7251)] = 211541, - [SMALL_STATE(7252)] = 211554, - [SMALL_STATE(7253)] = 211567, - [SMALL_STATE(7254)] = 211580, - [SMALL_STATE(7255)] = 211593, - [SMALL_STATE(7256)] = 211606, - [SMALL_STATE(7257)] = 211619, - [SMALL_STATE(7258)] = 211632, - [SMALL_STATE(7259)] = 211645, - [SMALL_STATE(7260)] = 211658, - [SMALL_STATE(7261)] = 211671, - [SMALL_STATE(7262)] = 211684, - [SMALL_STATE(7263)] = 211697, - [SMALL_STATE(7264)] = 211710, - [SMALL_STATE(7265)] = 211723, - [SMALL_STATE(7266)] = 211736, - [SMALL_STATE(7267)] = 211749, - [SMALL_STATE(7268)] = 211762, - [SMALL_STATE(7269)] = 211775, - [SMALL_STATE(7270)] = 211788, - [SMALL_STATE(7271)] = 211801, - [SMALL_STATE(7272)] = 211814, - [SMALL_STATE(7273)] = 211827, - [SMALL_STATE(7274)] = 211840, - [SMALL_STATE(7275)] = 211853, - [SMALL_STATE(7276)] = 211866, - [SMALL_STATE(7277)] = 211879, - [SMALL_STATE(7278)] = 211892, - [SMALL_STATE(7279)] = 211905, - [SMALL_STATE(7280)] = 211918, - [SMALL_STATE(7281)] = 211931, - [SMALL_STATE(7282)] = 211944, - [SMALL_STATE(7283)] = 211957, - [SMALL_STATE(7284)] = 211970, - [SMALL_STATE(7285)] = 211983, - [SMALL_STATE(7286)] = 211996, - [SMALL_STATE(7287)] = 212009, - [SMALL_STATE(7288)] = 212022, - [SMALL_STATE(7289)] = 212035, - [SMALL_STATE(7290)] = 212048, - [SMALL_STATE(7291)] = 212061, - [SMALL_STATE(7292)] = 212074, - [SMALL_STATE(7293)] = 212087, - [SMALL_STATE(7294)] = 212100, - [SMALL_STATE(7295)] = 212113, - [SMALL_STATE(7296)] = 212126, - [SMALL_STATE(7297)] = 212139, - [SMALL_STATE(7298)] = 212152, - [SMALL_STATE(7299)] = 212165, - [SMALL_STATE(7300)] = 212178, - [SMALL_STATE(7301)] = 212191, - [SMALL_STATE(7302)] = 212204, - [SMALL_STATE(7303)] = 212217, - [SMALL_STATE(7304)] = 212230, - [SMALL_STATE(7305)] = 212243, - [SMALL_STATE(7306)] = 212256, - [SMALL_STATE(7307)] = 212269, - [SMALL_STATE(7308)] = 212282, - [SMALL_STATE(7309)] = 212295, - [SMALL_STATE(7310)] = 212308, - [SMALL_STATE(7311)] = 212321, - [SMALL_STATE(7312)] = 212334, - [SMALL_STATE(7313)] = 212347, - [SMALL_STATE(7314)] = 212360, - [SMALL_STATE(7315)] = 212373, - [SMALL_STATE(7316)] = 212386, - [SMALL_STATE(7317)] = 212399, - [SMALL_STATE(7318)] = 212412, - [SMALL_STATE(7319)] = 212425, - [SMALL_STATE(7320)] = 212438, - [SMALL_STATE(7321)] = 212451, - [SMALL_STATE(7322)] = 212464, - [SMALL_STATE(7323)] = 212477, - [SMALL_STATE(7324)] = 212490, - [SMALL_STATE(7325)] = 212503, - [SMALL_STATE(7326)] = 212516, - [SMALL_STATE(7327)] = 212529, - [SMALL_STATE(7328)] = 212542, - [SMALL_STATE(7329)] = 212555, - [SMALL_STATE(7330)] = 212568, - [SMALL_STATE(7331)] = 212581, - [SMALL_STATE(7332)] = 212594, - [SMALL_STATE(7333)] = 212607, - [SMALL_STATE(7334)] = 212620, - [SMALL_STATE(7335)] = 212633, - [SMALL_STATE(7336)] = 212646, - [SMALL_STATE(7337)] = 212659, - [SMALL_STATE(7338)] = 212672, - [SMALL_STATE(7339)] = 212685, - [SMALL_STATE(7340)] = 212698, - [SMALL_STATE(7341)] = 212711, - [SMALL_STATE(7342)] = 212724, - [SMALL_STATE(7343)] = 212737, - [SMALL_STATE(7344)] = 212750, - [SMALL_STATE(7345)] = 212763, - [SMALL_STATE(7346)] = 212776, - [SMALL_STATE(7347)] = 212789, - [SMALL_STATE(7348)] = 212802, - [SMALL_STATE(7349)] = 212815, - [SMALL_STATE(7350)] = 212828, - [SMALL_STATE(7351)] = 212841, - [SMALL_STATE(7352)] = 212854, - [SMALL_STATE(7353)] = 212867, - [SMALL_STATE(7354)] = 212880, - [SMALL_STATE(7355)] = 212893, - [SMALL_STATE(7356)] = 212906, - [SMALL_STATE(7357)] = 212919, - [SMALL_STATE(7358)] = 212932, - [SMALL_STATE(7359)] = 212945, - [SMALL_STATE(7360)] = 212958, - [SMALL_STATE(7361)] = 212971, - [SMALL_STATE(7362)] = 212984, - [SMALL_STATE(7363)] = 212997, - [SMALL_STATE(7364)] = 213010, - [SMALL_STATE(7365)] = 213023, - [SMALL_STATE(7366)] = 213036, - [SMALL_STATE(7367)] = 213049, - [SMALL_STATE(7368)] = 213062, - [SMALL_STATE(7369)] = 213075, - [SMALL_STATE(7370)] = 213088, - [SMALL_STATE(7371)] = 213101, - [SMALL_STATE(7372)] = 213114, - [SMALL_STATE(7373)] = 213127, - [SMALL_STATE(7374)] = 213140, - [SMALL_STATE(7375)] = 213153, - [SMALL_STATE(7376)] = 213166, - [SMALL_STATE(7377)] = 213179, - [SMALL_STATE(7378)] = 213192, - [SMALL_STATE(7379)] = 213205, - [SMALL_STATE(7380)] = 213218, - [SMALL_STATE(7381)] = 213231, - [SMALL_STATE(7382)] = 213244, - [SMALL_STATE(7383)] = 213257, - [SMALL_STATE(7384)] = 213270, - [SMALL_STATE(7385)] = 213283, - [SMALL_STATE(7386)] = 213296, - [SMALL_STATE(7387)] = 213309, - [SMALL_STATE(7388)] = 213322, - [SMALL_STATE(7389)] = 213335, - [SMALL_STATE(7390)] = 213348, - [SMALL_STATE(7391)] = 213361, - [SMALL_STATE(7392)] = 213374, - [SMALL_STATE(7393)] = 213387, - [SMALL_STATE(7394)] = 213400, - [SMALL_STATE(7395)] = 213413, - [SMALL_STATE(7396)] = 213426, - [SMALL_STATE(7397)] = 213439, - [SMALL_STATE(7398)] = 213452, - [SMALL_STATE(7399)] = 213465, - [SMALL_STATE(7400)] = 213478, - [SMALL_STATE(7401)] = 213491, - [SMALL_STATE(7402)] = 213504, - [SMALL_STATE(7403)] = 213517, - [SMALL_STATE(7404)] = 213530, - [SMALL_STATE(7405)] = 213543, - [SMALL_STATE(7406)] = 213556, - [SMALL_STATE(7407)] = 213569, - [SMALL_STATE(7408)] = 213582, - [SMALL_STATE(7409)] = 213595, - [SMALL_STATE(7410)] = 213608, - [SMALL_STATE(7411)] = 213621, - [SMALL_STATE(7412)] = 213634, - [SMALL_STATE(7413)] = 213647, - [SMALL_STATE(7414)] = 213660, - [SMALL_STATE(7415)] = 213673, - [SMALL_STATE(7416)] = 213686, - [SMALL_STATE(7417)] = 213699, - [SMALL_STATE(7418)] = 213712, - [SMALL_STATE(7419)] = 213725, - [SMALL_STATE(7420)] = 213738, - [SMALL_STATE(7421)] = 213751, - [SMALL_STATE(7422)] = 213764, - [SMALL_STATE(7423)] = 213777, - [SMALL_STATE(7424)] = 213790, - [SMALL_STATE(7425)] = 213803, - [SMALL_STATE(7426)] = 213816, - [SMALL_STATE(7427)] = 213829, - [SMALL_STATE(7428)] = 213842, - [SMALL_STATE(7429)] = 213855, - [SMALL_STATE(7430)] = 213868, - [SMALL_STATE(7431)] = 213881, - [SMALL_STATE(7432)] = 213894, - [SMALL_STATE(7433)] = 213907, - [SMALL_STATE(7434)] = 213920, - [SMALL_STATE(7435)] = 213933, - [SMALL_STATE(7436)] = 213946, - [SMALL_STATE(7437)] = 213959, - [SMALL_STATE(7438)] = 213972, - [SMALL_STATE(7439)] = 213985, - [SMALL_STATE(7440)] = 213998, - [SMALL_STATE(7441)] = 214011, - [SMALL_STATE(7442)] = 214024, - [SMALL_STATE(7443)] = 214037, - [SMALL_STATE(7444)] = 214050, - [SMALL_STATE(7445)] = 214063, - [SMALL_STATE(7446)] = 214076, - [SMALL_STATE(7447)] = 214089, - [SMALL_STATE(7448)] = 214102, - [SMALL_STATE(7449)] = 214115, - [SMALL_STATE(7450)] = 214128, - [SMALL_STATE(7451)] = 214141, - [SMALL_STATE(7452)] = 214154, - [SMALL_STATE(7453)] = 214167, - [SMALL_STATE(7454)] = 214180, - [SMALL_STATE(7455)] = 214193, - [SMALL_STATE(7456)] = 214206, - [SMALL_STATE(7457)] = 214219, - [SMALL_STATE(7458)] = 214232, - [SMALL_STATE(7459)] = 214245, - [SMALL_STATE(7460)] = 214258, - [SMALL_STATE(7461)] = 214271, - [SMALL_STATE(7462)] = 214284, - [SMALL_STATE(7463)] = 214297, - [SMALL_STATE(7464)] = 214310, - [SMALL_STATE(7465)] = 214323, - [SMALL_STATE(7466)] = 214336, - [SMALL_STATE(7467)] = 214349, - [SMALL_STATE(7468)] = 214362, - [SMALL_STATE(7469)] = 214375, - [SMALL_STATE(7470)] = 214388, - [SMALL_STATE(7471)] = 214401, - [SMALL_STATE(7472)] = 214414, - [SMALL_STATE(7473)] = 214427, - [SMALL_STATE(7474)] = 214440, - [SMALL_STATE(7475)] = 214453, - [SMALL_STATE(7476)] = 214466, - [SMALL_STATE(7477)] = 214479, - [SMALL_STATE(7478)] = 214492, - [SMALL_STATE(7479)] = 214505, - [SMALL_STATE(7480)] = 214518, - [SMALL_STATE(7481)] = 214531, - [SMALL_STATE(7482)] = 214544, - [SMALL_STATE(7483)] = 214557, - [SMALL_STATE(7484)] = 214570, - [SMALL_STATE(7485)] = 214583, - [SMALL_STATE(7486)] = 214596, - [SMALL_STATE(7487)] = 214609, - [SMALL_STATE(7488)] = 214622, - [SMALL_STATE(7489)] = 214635, - [SMALL_STATE(7490)] = 214648, - [SMALL_STATE(7491)] = 214661, - [SMALL_STATE(7492)] = 214674, - [SMALL_STATE(7493)] = 214687, - [SMALL_STATE(7494)] = 214700, - [SMALL_STATE(7495)] = 214713, - [SMALL_STATE(7496)] = 214726, - [SMALL_STATE(7497)] = 214739, - [SMALL_STATE(7498)] = 214752, - [SMALL_STATE(7499)] = 214765, - [SMALL_STATE(7500)] = 214778, - [SMALL_STATE(7501)] = 214791, - [SMALL_STATE(7502)] = 214804, - [SMALL_STATE(7503)] = 214817, - [SMALL_STATE(7504)] = 214830, - [SMALL_STATE(7505)] = 214843, - [SMALL_STATE(7506)] = 214856, - [SMALL_STATE(7507)] = 214869, - [SMALL_STATE(7508)] = 214882, - [SMALL_STATE(7509)] = 214895, - [SMALL_STATE(7510)] = 214908, - [SMALL_STATE(7511)] = 214921, - [SMALL_STATE(7512)] = 214934, - [SMALL_STATE(7513)] = 214947, - [SMALL_STATE(7514)] = 214960, - [SMALL_STATE(7515)] = 214973, - [SMALL_STATE(7516)] = 214986, - [SMALL_STATE(7517)] = 214999, - [SMALL_STATE(7518)] = 215012, - [SMALL_STATE(7519)] = 215025, - [SMALL_STATE(7520)] = 215038, - [SMALL_STATE(7521)] = 215051, - [SMALL_STATE(7522)] = 215064, - [SMALL_STATE(7523)] = 215077, - [SMALL_STATE(7524)] = 215090, - [SMALL_STATE(7525)] = 215103, - [SMALL_STATE(7526)] = 215116, - [SMALL_STATE(7527)] = 215129, - [SMALL_STATE(7528)] = 215142, - [SMALL_STATE(7529)] = 215155, - [SMALL_STATE(7530)] = 215168, - [SMALL_STATE(7531)] = 215181, - [SMALL_STATE(7532)] = 215194, - [SMALL_STATE(7533)] = 215207, - [SMALL_STATE(7534)] = 215220, - [SMALL_STATE(7535)] = 215233, - [SMALL_STATE(7536)] = 215246, - [SMALL_STATE(7537)] = 215259, - [SMALL_STATE(7538)] = 215272, - [SMALL_STATE(7539)] = 215285, - [SMALL_STATE(7540)] = 215298, - [SMALL_STATE(7541)] = 215311, - [SMALL_STATE(7542)] = 215324, - [SMALL_STATE(7543)] = 215337, - [SMALL_STATE(7544)] = 215350, - [SMALL_STATE(7545)] = 215363, - [SMALL_STATE(7546)] = 215376, - [SMALL_STATE(7547)] = 215389, - [SMALL_STATE(7548)] = 215402, - [SMALL_STATE(7549)] = 215415, - [SMALL_STATE(7550)] = 215428, - [SMALL_STATE(7551)] = 215441, - [SMALL_STATE(7552)] = 215454, - [SMALL_STATE(7553)] = 215467, - [SMALL_STATE(7554)] = 215480, - [SMALL_STATE(7555)] = 215493, - [SMALL_STATE(7556)] = 215506, - [SMALL_STATE(7557)] = 215519, - [SMALL_STATE(7558)] = 215532, - [SMALL_STATE(7559)] = 215545, - [SMALL_STATE(7560)] = 215558, - [SMALL_STATE(7561)] = 215571, - [SMALL_STATE(7562)] = 215584, - [SMALL_STATE(7563)] = 215597, - [SMALL_STATE(7564)] = 215610, - [SMALL_STATE(7565)] = 215623, - [SMALL_STATE(7566)] = 215636, - [SMALL_STATE(7567)] = 215649, - [SMALL_STATE(7568)] = 215662, - [SMALL_STATE(7569)] = 215675, - [SMALL_STATE(7570)] = 215688, - [SMALL_STATE(7571)] = 215701, - [SMALL_STATE(7572)] = 215714, - [SMALL_STATE(7573)] = 215727, - [SMALL_STATE(7574)] = 215740, - [SMALL_STATE(7575)] = 215753, - [SMALL_STATE(7576)] = 215766, - [SMALL_STATE(7577)] = 215779, - [SMALL_STATE(7578)] = 215792, - [SMALL_STATE(7579)] = 215805, - [SMALL_STATE(7580)] = 215818, - [SMALL_STATE(7581)] = 215831, - [SMALL_STATE(7582)] = 215844, - [SMALL_STATE(7583)] = 215857, - [SMALL_STATE(7584)] = 215870, - [SMALL_STATE(7585)] = 215883, - [SMALL_STATE(7586)] = 215896, - [SMALL_STATE(7587)] = 215909, - [SMALL_STATE(7588)] = 215922, - [SMALL_STATE(7589)] = 215935, - [SMALL_STATE(7590)] = 215948, - [SMALL_STATE(7591)] = 215961, - [SMALL_STATE(7592)] = 215974, - [SMALL_STATE(7593)] = 215987, - [SMALL_STATE(7594)] = 216000, - [SMALL_STATE(7595)] = 216013, - [SMALL_STATE(7596)] = 216026, - [SMALL_STATE(7597)] = 216039, - [SMALL_STATE(7598)] = 216052, - [SMALL_STATE(7599)] = 216065, - [SMALL_STATE(7600)] = 216078, - [SMALL_STATE(7601)] = 216091, - [SMALL_STATE(7602)] = 216104, - [SMALL_STATE(7603)] = 216117, - [SMALL_STATE(7604)] = 216130, - [SMALL_STATE(7605)] = 216143, - [SMALL_STATE(7606)] = 216156, - [SMALL_STATE(7607)] = 216169, - [SMALL_STATE(7608)] = 216182, - [SMALL_STATE(7609)] = 216195, + [SMALL_STATE(1913)] = 0, + [SMALL_STATE(1914)] = 93, + [SMALL_STATE(1915)] = 188, + [SMALL_STATE(1916)] = 281, + [SMALL_STATE(1917)] = 356, + [SMALL_STATE(1918)] = 431, + [SMALL_STATE(1919)] = 506, + [SMALL_STATE(1920)] = 599, + [SMALL_STATE(1921)] = 694, + [SMALL_STATE(1922)] = 769, + [SMALL_STATE(1923)] = 862, + [SMALL_STATE(1924)] = 955, + [SMALL_STATE(1925)] = 1048, + [SMALL_STATE(1926)] = 1123, + [SMALL_STATE(1927)] = 1220, + [SMALL_STATE(1928)] = 1315, + [SMALL_STATE(1929)] = 1390, + [SMALL_STATE(1930)] = 1485, + [SMALL_STATE(1931)] = 1578, + [SMALL_STATE(1932)] = 1671, + [SMALL_STATE(1933)] = 1764, + [SMALL_STATE(1934)] = 1857, + [SMALL_STATE(1935)] = 1950, + [SMALL_STATE(1936)] = 2045, + [SMALL_STATE(1937)] = 2138, + [SMALL_STATE(1938)] = 2231, + [SMALL_STATE(1939)] = 2326, + [SMALL_STATE(1940)] = 2419, + [SMALL_STATE(1941)] = 2516, + [SMALL_STATE(1942)] = 2609, + [SMALL_STATE(1943)] = 2704, + [SMALL_STATE(1944)] = 2797, + [SMALL_STATE(1945)] = 2890, + [SMALL_STATE(1946)] = 2985, + [SMALL_STATE(1947)] = 3060, + [SMALL_STATE(1948)] = 3153, + [SMALL_STATE(1949)] = 3249, + [SMALL_STATE(1950)] = 3323, + [SMALL_STATE(1951)] = 3415, + [SMALL_STATE(1952)] = 3507, + [SMALL_STATE(1953)] = 3603, + [SMALL_STATE(1954)] = 3703, + [SMALL_STATE(1955)] = 3795, + [SMALL_STATE(1956)] = 3887, + [SMALL_STATE(1957)] = 3983, + [SMALL_STATE(1958)] = 4075, + [SMALL_STATE(1959)] = 4153, + [SMALL_STATE(1960)] = 4249, + [SMALL_STATE(1961)] = 4343, + [SMALL_STATE(1962)] = 4435, + [SMALL_STATE(1963)] = 4509, + [SMALL_STATE(1964)] = 4603, + [SMALL_STATE(1965)] = 4694, + [SMALL_STATE(1966)] = 4777, + [SMALL_STATE(1967)] = 4868, + [SMALL_STATE(1968)] = 4963, + [SMALL_STATE(1969)] = 5054, + [SMALL_STATE(1970)] = 5151, + [SMALL_STATE(1971)] = 5242, + [SMALL_STATE(1972)] = 5319, + [SMALL_STATE(1973)] = 5414, + [SMALL_STATE(1974)] = 5505, + [SMALL_STATE(1975)] = 5584, + [SMALL_STATE(1976)] = 5679, + [SMALL_STATE(1977)] = 5770, + [SMALL_STATE(1978)] = 5853, + [SMALL_STATE(1979)] = 5944, + [SMALL_STATE(1980)] = 6037, + [SMALL_STATE(1981)] = 6132, + [SMALL_STATE(1982)] = 6217, + [SMALL_STATE(1983)] = 6308, + [SMALL_STATE(1984)] = 6399, + [SMALL_STATE(1985)] = 6490, + [SMALL_STATE(1986)] = 6581, + [SMALL_STATE(1987)] = 6678, + [SMALL_STATE(1988)] = 6753, + [SMALL_STATE(1989)] = 6836, + [SMALL_STATE(1990)] = 6927, + [SMALL_STATE(1991)] = 7010, + [SMALL_STATE(1992)] = 7083, + [SMALL_STATE(1993)] = 7174, + [SMALL_STATE(1994)] = 7247, + [SMALL_STATE(1995)] = 7338, + [SMALL_STATE(1996)] = 7433, + [SMALL_STATE(1997)] = 7523, + [SMALL_STATE(1998)] = 7593, + [SMALL_STATE(1999)] = 7683, + [SMALL_STATE(2000)] = 7763, + [SMALL_STATE(2001)] = 7845, + [SMALL_STATE(2002)] = 7927, + [SMALL_STATE(2003)] = 8011, + [SMALL_STATE(2004)] = 8105, + [SMALL_STATE(2005)] = 8199, + [SMALL_STATE(2006)] = 8289, + [SMALL_STATE(2007)] = 8373, + [SMALL_STATE(2008)] = 8461, + [SMALL_STATE(2009)] = 8553, + [SMALL_STATE(2010)] = 8635, + [SMALL_STATE(2011)] = 8717, + [SMALL_STATE(2012)] = 8787, + [SMALL_STATE(2013)] = 8881, + [SMALL_STATE(2014)] = 8969, + [SMALL_STATE(2015)] = 9051, + [SMALL_STATE(2016)] = 9135, + [SMALL_STATE(2017)] = 9229, + [SMALL_STATE(2018)] = 9309, + [SMALL_STATE(2019)] = 9403, + [SMALL_STATE(2020)] = 9497, + [SMALL_STATE(2021)] = 9567, + [SMALL_STATE(2022)] = 9636, + [SMALL_STATE(2023)] = 9713, + [SMALL_STATE(2024)] = 9792, + [SMALL_STATE(2025)] = 9871, + [SMALL_STATE(2026)] = 9948, + [SMALL_STATE(2027)] = 10027, + [SMALL_STATE(2028)] = 10110, + [SMALL_STATE(2029)] = 10187, + [SMALL_STATE(2030)] = 10266, + [SMALL_STATE(2031)] = 10335, + [SMALL_STATE(2032)] = 10412, + [SMALL_STATE(2033)] = 10493, + [SMALL_STATE(2034)] = 10572, + [SMALL_STATE(2035)] = 10665, + [SMALL_STATE(2036)] = 10736, + [SMALL_STATE(2037)] = 10823, + [SMALL_STATE(2038)] = 10894, + [SMALL_STATE(2039)] = 10963, + [SMALL_STATE(2040)] = 11032, + [SMALL_STATE(2041)] = 11101, + [SMALL_STATE(2042)] = 11180, + [SMALL_STATE(2043)] = 11261, + [SMALL_STATE(2044)] = 11344, + [SMALL_STATE(2045)] = 11433, + [SMALL_STATE(2046)] = 11502, + [SMALL_STATE(2047)] = 11583, + [SMALL_STATE(2048)] = 11660, + [SMALL_STATE(2049)] = 11743, + [SMALL_STATE(2050)] = 11820, + [SMALL_STATE(2051)] = 11901, + [SMALL_STATE(2052)] = 11990, + [SMALL_STATE(2053)] = 12067, + [SMALL_STATE(2054)] = 12160, + [SMALL_STATE(2055)] = 12237, + [SMALL_STATE(2056)] = 12318, + [SMALL_STATE(2057)] = 12407, + [SMALL_STATE(2058)] = 12486, + [SMALL_STATE(2059)] = 12565, + [SMALL_STATE(2060)] = 12634, + [SMALL_STATE(2061)] = 12703, + [SMALL_STATE(2062)] = 12780, + [SMALL_STATE(2063)] = 12851, + [SMALL_STATE(2064)] = 12926, + [SMALL_STATE(2065)] = 12995, + [SMALL_STATE(2066)] = 13080, + [SMALL_STATE(2067)] = 13157, + [SMALL_STATE(2068)] = 13230, + [SMALL_STATE(2069)] = 13319, + [SMALL_STATE(2070)] = 13390, + [SMALL_STATE(2071)] = 13461, + [SMALL_STATE(2072)] = 13538, + [SMALL_STATE(2073)] = 13615, + [SMALL_STATE(2074)] = 13686, + [SMALL_STATE(2075)] = 13757, + [SMALL_STATE(2076)] = 13830, + [SMALL_STATE(2077)] = 13901, + [SMALL_STATE(2078)] = 13972, + [SMALL_STATE(2079)] = 14051, + [SMALL_STATE(2080)] = 14136, + [SMALL_STATE(2081)] = 14207, + [SMALL_STATE(2082)] = 14278, + [SMALL_STATE(2083)] = 14357, + [SMALL_STATE(2084)] = 14426, + [SMALL_STATE(2085)] = 14498, + [SMALL_STATE(2086)] = 14574, + [SMALL_STATE(2087)] = 14648, + [SMALL_STATE(2088)] = 14716, + [SMALL_STATE(2089)] = 14784, + [SMALL_STATE(2090)] = 14852, + [SMALL_STATE(2091)] = 14928, + [SMALL_STATE(2092)] = 15002, + [SMALL_STATE(2093)] = 15080, + [SMALL_STATE(2094)] = 15154, + [SMALL_STATE(2095)] = 15232, + [SMALL_STATE(2096)] = 15308, + [SMALL_STATE(2097)] = 15386, + [SMALL_STATE(2098)] = 15468, + [SMALL_STATE(2099)] = 15546, + [SMALL_STATE(2100)] = 15628, + [SMALL_STATE(2101)] = 15706, + [SMALL_STATE(2102)] = 15784, + [SMALL_STATE(2103)] = 15860, + [SMALL_STATE(2104)] = 15928, + [SMALL_STATE(2105)] = 15996, + [SMALL_STATE(2106)] = 16074, + [SMALL_STATE(2107)] = 16142, + [SMALL_STATE(2108)] = 16210, + [SMALL_STATE(2109)] = 16278, + [SMALL_STATE(2110)] = 16346, + [SMALL_STATE(2111)] = 16414, + [SMALL_STATE(2112)] = 16492, + [SMALL_STATE(2113)] = 16570, + [SMALL_STATE(2114)] = 16654, + [SMALL_STATE(2115)] = 16736, + [SMALL_STATE(2116)] = 16812, + [SMALL_STATE(2117)] = 16884, + [SMALL_STATE(2118)] = 16962, + [SMALL_STATE(2119)] = 17038, + [SMALL_STATE(2120)] = 17126, + [SMALL_STATE(2121)] = 17204, + [SMALL_STATE(2122)] = 17280, + [SMALL_STATE(2123)] = 17358, + [SMALL_STATE(2124)] = 17434, + [SMALL_STATE(2125)] = 17516, + [SMALL_STATE(2126)] = 17598, + [SMALL_STATE(2127)] = 17666, + [SMALL_STATE(2128)] = 17743, + [SMALL_STATE(2129)] = 17822, + [SMALL_STATE(2130)] = 17897, + [SMALL_STATE(2131)] = 18024, + [SMALL_STATE(2132)] = 18151, + [SMALL_STATE(2133)] = 18226, + [SMALL_STATE(2134)] = 18307, + [SMALL_STATE(2135)] = 18378, + [SMALL_STATE(2136)] = 18505, + [SMALL_STATE(2137)] = 18632, + [SMALL_STATE(2138)] = 18703, + [SMALL_STATE(2139)] = 18778, + [SMALL_STATE(2140)] = 18905, + [SMALL_STATE(2141)] = 18980, + [SMALL_STATE(2142)] = 19107, + [SMALL_STATE(2143)] = 19234, + [SMALL_STATE(2144)] = 19361, + [SMALL_STATE(2145)] = 19434, + [SMALL_STATE(2146)] = 19507, + [SMALL_STATE(2147)] = 19582, + [SMALL_STATE(2148)] = 19661, + [SMALL_STATE(2149)] = 19740, + [SMALL_STATE(2150)] = 19817, + [SMALL_STATE(2151)] = 19896, + [SMALL_STATE(2152)] = 20023, + [SMALL_STATE(2153)] = 20097, + [SMALL_STATE(2154)] = 20175, + [SMALL_STATE(2155)] = 20249, + [SMALL_STATE(2156)] = 20325, + [SMALL_STATE(2157)] = 20399, + [SMALL_STATE(2158)] = 20473, + [SMALL_STATE(2159)] = 20547, + [SMALL_STATE(2160)] = 20619, + [SMALL_STATE(2161)] = 20693, + [SMALL_STATE(2162)] = 20767, + [SMALL_STATE(2163)] = 20841, + [SMALL_STATE(2164)] = 20915, + [SMALL_STATE(2165)] = 20989, + [SMALL_STATE(2166)] = 21063, + [SMALL_STATE(2167)] = 21139, + [SMALL_STATE(2168)] = 21213, + [SMALL_STATE(2169)] = 21291, + [SMALL_STATE(2170)] = 21414, + [SMALL_STATE(2171)] = 21487, + [SMALL_STATE(2172)] = 21560, + [SMALL_STATE(2173)] = 21633, + [SMALL_STATE(2174)] = 21756, + [SMALL_STATE(2175)] = 21829, + [SMALL_STATE(2176)] = 21902, + [SMALL_STATE(2177)] = 22025, + [SMALL_STATE(2178)] = 22098, + [SMALL_STATE(2179)] = 22171, + [SMALL_STATE(2180)] = 22294, + [SMALL_STATE(2181)] = 22417, + [SMALL_STATE(2182)] = 22540, + [SMALL_STATE(2183)] = 22613, + [SMALL_STATE(2184)] = 22736, + [SMALL_STATE(2185)] = 22859, + [SMALL_STATE(2186)] = 22982, + [SMALL_STATE(2187)] = 23055, + [SMALL_STATE(2188)] = 23128, + [SMALL_STATE(2189)] = 23251, + [SMALL_STATE(2190)] = 23324, + [SMALL_STATE(2191)] = 23447, + [SMALL_STATE(2192)] = 23520, + [SMALL_STATE(2193)] = 23643, + [SMALL_STATE(2194)] = 23716, + [SMALL_STATE(2195)] = 23839, + [SMALL_STATE(2196)] = 23912, + [SMALL_STATE(2197)] = 23985, + [SMALL_STATE(2198)] = 24108, + [SMALL_STATE(2199)] = 24231, + [SMALL_STATE(2200)] = 24354, + [SMALL_STATE(2201)] = 24477, + [SMALL_STATE(2202)] = 24600, + [SMALL_STATE(2203)] = 24723, + [SMALL_STATE(2204)] = 24796, + [SMALL_STATE(2205)] = 24919, + [SMALL_STATE(2206)] = 24992, + [SMALL_STATE(2207)] = 25115, + [SMALL_STATE(2208)] = 25238, + [SMALL_STATE(2209)] = 25361, + [SMALL_STATE(2210)] = 25434, + [SMALL_STATE(2211)] = 25507, + [SMALL_STATE(2212)] = 25580, + [SMALL_STATE(2213)] = 25651, + [SMALL_STATE(2214)] = 25722, + [SMALL_STATE(2215)] = 25795, + [SMALL_STATE(2216)] = 25918, + [SMALL_STATE(2217)] = 26041, + [SMALL_STATE(2218)] = 26114, + [SMALL_STATE(2219)] = 26237, + [SMALL_STATE(2220)] = 26310, + [SMALL_STATE(2221)] = 26433, + [SMALL_STATE(2222)] = 26504, + [SMALL_STATE(2223)] = 26579, + [SMALL_STATE(2224)] = 26649, + [SMALL_STATE(2225)] = 26719, + [SMALL_STATE(2226)] = 26789, + [SMALL_STATE(2227)] = 26859, + [SMALL_STATE(2228)] = 26929, + [SMALL_STATE(2229)] = 26999, + [SMALL_STATE(2230)] = 27069, + [SMALL_STATE(2231)] = 27139, + [SMALL_STATE(2232)] = 27209, + [SMALL_STATE(2233)] = 27279, + [SMALL_STATE(2234)] = 27398, + [SMALL_STATE(2235)] = 27517, + [SMALL_STATE(2236)] = 27636, + [SMALL_STATE(2237)] = 27755, + [SMALL_STATE(2238)] = 27874, + [SMALL_STATE(2239)] = 27993, + [SMALL_STATE(2240)] = 28112, + [SMALL_STATE(2241)] = 28231, + [SMALL_STATE(2242)] = 28350, + [SMALL_STATE(2243)] = 28469, + [SMALL_STATE(2244)] = 28593, + [SMALL_STATE(2245)] = 28717, + [SMALL_STATE(2246)] = 28841, + [SMALL_STATE(2247)] = 28965, + [SMALL_STATE(2248)] = 29089, + [SMALL_STATE(2249)] = 29206, + [SMALL_STATE(2250)] = 29323, + [SMALL_STATE(2251)] = 29440, + [SMALL_STATE(2252)] = 29551, + [SMALL_STATE(2253)] = 29668, + [SMALL_STATE(2254)] = 29785, + [SMALL_STATE(2255)] = 29900, + [SMALL_STATE(2256)] = 30017, + [SMALL_STATE(2257)] = 30134, + [SMALL_STATE(2258)] = 30251, + [SMALL_STATE(2259)] = 30368, + [SMALL_STATE(2260)] = 30485, + [SMALL_STATE(2261)] = 30596, + [SMALL_STATE(2262)] = 30713, + [SMALL_STATE(2263)] = 30824, + [SMALL_STATE(2264)] = 30941, + [SMALL_STATE(2265)] = 31058, + [SMALL_STATE(2266)] = 31175, + [SMALL_STATE(2267)] = 31292, + [SMALL_STATE(2268)] = 31409, + [SMALL_STATE(2269)] = 31526, + [SMALL_STATE(2270)] = 31643, + [SMALL_STATE(2271)] = 31754, + [SMALL_STATE(2272)] = 31871, + [SMALL_STATE(2273)] = 31988, + [SMALL_STATE(2274)] = 32105, + [SMALL_STATE(2275)] = 32222, + [SMALL_STATE(2276)] = 32333, + [SMALL_STATE(2277)] = 32450, + [SMALL_STATE(2278)] = 32567, + [SMALL_STATE(2279)] = 32684, + [SMALL_STATE(2280)] = 32801, + [SMALL_STATE(2281)] = 32918, + [SMALL_STATE(2282)] = 33035, + [SMALL_STATE(2283)] = 33152, + [SMALL_STATE(2284)] = 33263, + [SMALL_STATE(2285)] = 33374, + [SMALL_STATE(2286)] = 33491, + [SMALL_STATE(2287)] = 33608, + [SMALL_STATE(2288)] = 33725, + [SMALL_STATE(2289)] = 33787, + [SMALL_STATE(2290)] = 33903, + [SMALL_STATE(2291)] = 34017, + [SMALL_STATE(2292)] = 34079, + [SMALL_STATE(2293)] = 34148, + [SMALL_STATE(2294)] = 34219, + [SMALL_STATE(2295)] = 34322, + [SMALL_STATE(2296)] = 34399, + [SMALL_STATE(2297)] = 34470, + [SMALL_STATE(2298)] = 34541, + [SMALL_STATE(2299)] = 34601, + [SMALL_STATE(2300)] = 34663, + [SMALL_STATE(2301)] = 34727, + [SMALL_STATE(2302)] = 34793, + [SMALL_STATE(2303)] = 34857, + [SMALL_STATE(2304)] = 34919, + [SMALL_STATE(2305)] = 34985, + [SMALL_STATE(2306)] = 35045, + [SMALL_STATE(2307)] = 35105, + [SMALL_STATE(2308)] = 35165, + [SMALL_STATE(2309)] = 35229, + [SMALL_STATE(2310)] = 35289, + [SMALL_STATE(2311)] = 35349, + [SMALL_STATE(2312)] = 35409, + [SMALL_STATE(2313)] = 35475, + [SMALL_STATE(2314)] = 35541, + [SMALL_STATE(2315)] = 35603, + [SMALL_STATE(2316)] = 35666, + [SMALL_STATE(2317)] = 35725, + [SMALL_STATE(2318)] = 35784, + [SMALL_STATE(2319)] = 35843, + [SMALL_STATE(2320)] = 35902, + [SMALL_STATE(2321)] = 35961, + [SMALL_STATE(2322)] = 36022, + [SMALL_STATE(2323)] = 36083, + [SMALL_STATE(2324)] = 36142, + [SMALL_STATE(2325)] = 36207, + [SMALL_STATE(2326)] = 36272, + [SMALL_STATE(2327)] = 36331, + [SMALL_STATE(2328)] = 36390, + [SMALL_STATE(2329)] = 36485, + [SMALL_STATE(2330)] = 36544, + [SMALL_STATE(2331)] = 36603, + [SMALL_STATE(2332)] = 36662, + [SMALL_STATE(2333)] = 36721, + [SMALL_STATE(2334)] = 36780, + [SMALL_STATE(2335)] = 36841, + [SMALL_STATE(2336)] = 36908, + [SMALL_STATE(2337)] = 37033, + [SMALL_STATE(2338)] = 37092, + [SMALL_STATE(2339)] = 37151, + [SMALL_STATE(2340)] = 37212, + [SMALL_STATE(2341)] = 37271, + [SMALL_STATE(2342)] = 37330, + [SMALL_STATE(2343)] = 37389, + [SMALL_STATE(2344)] = 37448, + [SMALL_STATE(2345)] = 37507, + [SMALL_STATE(2346)] = 37566, + [SMALL_STATE(2347)] = 37625, + [SMALL_STATE(2348)] = 37690, + [SMALL_STATE(2349)] = 37749, + [SMALL_STATE(2350)] = 37808, + [SMALL_STATE(2351)] = 37867, + [SMALL_STATE(2352)] = 37926, + [SMALL_STATE(2353)] = 37985, + [SMALL_STATE(2354)] = 38044, + [SMALL_STATE(2355)] = 38103, + [SMALL_STATE(2356)] = 38162, + [SMALL_STATE(2357)] = 38221, + [SMALL_STATE(2358)] = 38286, + [SMALL_STATE(2359)] = 38345, + [SMALL_STATE(2360)] = 38410, + [SMALL_STATE(2361)] = 38469, + [SMALL_STATE(2362)] = 38530, + [SMALL_STATE(2363)] = 38589, + [SMALL_STATE(2364)] = 38650, + [SMALL_STATE(2365)] = 38709, + [SMALL_STATE(2366)] = 38768, + [SMALL_STATE(2367)] = 38827, + [SMALL_STATE(2368)] = 38952, + [SMALL_STATE(2369)] = 39011, + [SMALL_STATE(2370)] = 39070, + [SMALL_STATE(2371)] = 39195, + [SMALL_STATE(2372)] = 39254, + [SMALL_STATE(2373)] = 39313, + [SMALL_STATE(2374)] = 39372, + [SMALL_STATE(2375)] = 39431, + [SMALL_STATE(2376)] = 39556, + [SMALL_STATE(2377)] = 39615, + [SMALL_STATE(2378)] = 39674, + [SMALL_STATE(2379)] = 39769, + [SMALL_STATE(2380)] = 39828, + [SMALL_STATE(2381)] = 39887, + [SMALL_STATE(2382)] = 39946, + [SMALL_STATE(2383)] = 40005, + [SMALL_STATE(2384)] = 40064, + [SMALL_STATE(2385)] = 40123, + [SMALL_STATE(2386)] = 40182, + [SMALL_STATE(2387)] = 40241, + [SMALL_STATE(2388)] = 40300, + [SMALL_STATE(2389)] = 40359, + [SMALL_STATE(2390)] = 40422, + [SMALL_STATE(2391)] = 40481, + [SMALL_STATE(2392)] = 40540, + [SMALL_STATE(2393)] = 40599, + [SMALL_STATE(2394)] = 40658, + [SMALL_STATE(2395)] = 40719, + [SMALL_STATE(2396)] = 40778, + [SMALL_STATE(2397)] = 40843, + [SMALL_STATE(2398)] = 40908, + [SMALL_STATE(2399)] = 40967, + [SMALL_STATE(2400)] = 41026, + [SMALL_STATE(2401)] = 41151, + [SMALL_STATE(2402)] = 41210, + [SMALL_STATE(2403)] = 41269, + [SMALL_STATE(2404)] = 41328, + [SMALL_STATE(2405)] = 41387, + [SMALL_STATE(2406)] = 41446, + [SMALL_STATE(2407)] = 41505, + [SMALL_STATE(2408)] = 41564, + [SMALL_STATE(2409)] = 41623, + [SMALL_STATE(2410)] = 41684, + [SMALL_STATE(2411)] = 41743, + [SMALL_STATE(2412)] = 41802, + [SMALL_STATE(2413)] = 41861, + [SMALL_STATE(2414)] = 41920, + [SMALL_STATE(2415)] = 41979, + [SMALL_STATE(2416)] = 42038, + [SMALL_STATE(2417)] = 42097, + [SMALL_STATE(2418)] = 42158, + [SMALL_STATE(2419)] = 42221, + [SMALL_STATE(2420)] = 42282, + [SMALL_STATE(2421)] = 42347, + [SMALL_STATE(2422)] = 42412, + [SMALL_STATE(2423)] = 42471, + [SMALL_STATE(2424)] = 42596, + [SMALL_STATE(2425)] = 42661, + [SMALL_STATE(2426)] = 42786, + [SMALL_STATE(2427)] = 42845, + [SMALL_STATE(2428)] = 42906, + [SMALL_STATE(2429)] = 42965, + [SMALL_STATE(2430)] = 43024, + [SMALL_STATE(2431)] = 43083, + [SMALL_STATE(2432)] = 43178, + [SMALL_STATE(2433)] = 43237, + [SMALL_STATE(2434)] = 43298, + [SMALL_STATE(2435)] = 43363, + [SMALL_STATE(2436)] = 43428, + [SMALL_STATE(2437)] = 43523, + [SMALL_STATE(2438)] = 43618, + [SMALL_STATE(2439)] = 43743, + [SMALL_STATE(2440)] = 43806, + [SMALL_STATE(2441)] = 43873, + [SMALL_STATE(2442)] = 43940, + [SMALL_STATE(2443)] = 44065, + [SMALL_STATE(2444)] = 44124, + [SMALL_STATE(2445)] = 44183, + [SMALL_STATE(2446)] = 44242, + [SMALL_STATE(2447)] = 44300, + [SMALL_STATE(2448)] = 44362, + [SMALL_STATE(2449)] = 44482, + [SMALL_STATE(2450)] = 44540, + [SMALL_STATE(2451)] = 44602, + [SMALL_STATE(2452)] = 44662, + [SMALL_STATE(2453)] = 44778, + [SMALL_STATE(2454)] = 44866, + [SMALL_STATE(2455)] = 44936, + [SMALL_STATE(2456)] = 45052, + [SMALL_STATE(2457)] = 45168, + [SMALL_STATE(2458)] = 45284, + [SMALL_STATE(2459)] = 45400, + [SMALL_STATE(2460)] = 45516, + [SMALL_STATE(2461)] = 45574, + [SMALL_STATE(2462)] = 45690, + [SMALL_STATE(2463)] = 45806, + [SMALL_STATE(2464)] = 45896, + [SMALL_STATE(2465)] = 45954, + [SMALL_STATE(2466)] = 46014, + [SMALL_STATE(2467)] = 46074, + [SMALL_STATE(2468)] = 46160, + [SMALL_STATE(2469)] = 46240, + [SMALL_STATE(2470)] = 46344, + [SMALL_STATE(2471)] = 46402, + [SMALL_STATE(2472)] = 46460, + [SMALL_STATE(2473)] = 46566, + [SMALL_STATE(2474)] = 46686, + [SMALL_STATE(2475)] = 46764, + [SMALL_STATE(2476)] = 46854, + [SMALL_STATE(2477)] = 46934, + [SMALL_STATE(2478)] = 47050, + [SMALL_STATE(2479)] = 47136, + [SMALL_STATE(2480)] = 47240, + [SMALL_STATE(2481)] = 47346, + [SMALL_STATE(2482)] = 47432, + [SMALL_STATE(2483)] = 47552, + [SMALL_STATE(2484)] = 47650, + [SMALL_STATE(2485)] = 47770, + [SMALL_STATE(2486)] = 47890, + [SMALL_STATE(2487)] = 47954, + [SMALL_STATE(2488)] = 48056, + [SMALL_STATE(2489)] = 48156, + [SMALL_STATE(2490)] = 48254, + [SMALL_STATE(2491)] = 48354, + [SMALL_STATE(2492)] = 48416, + [SMALL_STATE(2493)] = 48500, + [SMALL_STATE(2494)] = 48602, + [SMALL_STATE(2495)] = 48686, + [SMALL_STATE(2496)] = 48744, + [SMALL_STATE(2497)] = 48830, + [SMALL_STATE(2498)] = 48888, + [SMALL_STATE(2499)] = 48946, + [SMALL_STATE(2500)] = 49004, + [SMALL_STATE(2501)] = 49062, + [SMALL_STATE(2502)] = 49120, + [SMALL_STATE(2503)] = 49214, + [SMALL_STATE(2504)] = 49322, + [SMALL_STATE(2505)] = 49438, + [SMALL_STATE(2506)] = 49526, + [SMALL_STATE(2507)] = 49642, + [SMALL_STATE(2508)] = 49708, + [SMALL_STATE(2509)] = 49766, + [SMALL_STATE(2510)] = 49824, + [SMALL_STATE(2511)] = 49910, + [SMALL_STATE(2512)] = 49968, + [SMALL_STATE(2513)] = 50026, + [SMALL_STATE(2514)] = 50144, + [SMALL_STATE(2515)] = 50260, + [SMALL_STATE(2516)] = 50380, + [SMALL_STATE(2517)] = 50500, + [SMALL_STATE(2518)] = 50558, + [SMALL_STATE(2519)] = 50616, + [SMALL_STATE(2520)] = 50674, + [SMALL_STATE(2521)] = 50760, + [SMALL_STATE(2522)] = 50844, + [SMALL_STATE(2523)] = 50938, + [SMALL_STATE(2524)] = 51046, + [SMALL_STATE(2525)] = 51104, + [SMALL_STATE(2526)] = 51220, + [SMALL_STATE(2527)] = 51340, + [SMALL_STATE(2528)] = 51456, + [SMALL_STATE(2529)] = 51514, + [SMALL_STATE(2530)] = 51598, + [SMALL_STATE(2531)] = 51674, + [SMALL_STATE(2532)] = 51792, + [SMALL_STATE(2533)] = 51912, + [SMALL_STATE(2534)] = 52028, + [SMALL_STATE(2535)] = 52144, + [SMALL_STATE(2536)] = 52260, + [SMALL_STATE(2537)] = 52376, + [SMALL_STATE(2538)] = 52492, + [SMALL_STATE(2539)] = 52608, + [SMALL_STATE(2540)] = 52728, + [SMALL_STATE(2541)] = 52844, + [SMALL_STATE(2542)] = 52902, + [SMALL_STATE(2543)] = 52960, + [SMALL_STATE(2544)] = 53018, + [SMALL_STATE(2545)] = 53076, + [SMALL_STATE(2546)] = 53134, + [SMALL_STATE(2547)] = 53254, + [SMALL_STATE(2548)] = 53362, + [SMALL_STATE(2549)] = 53456, + [SMALL_STATE(2550)] = 53514, + [SMALL_STATE(2551)] = 53572, + [SMALL_STATE(2552)] = 53658, + [SMALL_STATE(2553)] = 53742, + [SMALL_STATE(2554)] = 53844, + [SMALL_STATE(2555)] = 53944, + [SMALL_STATE(2556)] = 54042, + [SMALL_STATE(2557)] = 54100, + [SMALL_STATE(2558)] = 54186, + [SMALL_STATE(2559)] = 54292, + [SMALL_STATE(2560)] = 54396, + [SMALL_STATE(2561)] = 54512, + [SMALL_STATE(2562)] = 54628, + [SMALL_STATE(2563)] = 54686, + [SMALL_STATE(2564)] = 54744, + [SMALL_STATE(2565)] = 54802, + [SMALL_STATE(2566)] = 54860, + [SMALL_STATE(2567)] = 54980, + [SMALL_STATE(2568)] = 55096, + [SMALL_STATE(2569)] = 55154, + [SMALL_STATE(2570)] = 55212, + [SMALL_STATE(2571)] = 55332, + [SMALL_STATE(2572)] = 55452, + [SMALL_STATE(2573)] = 55572, + [SMALL_STATE(2574)] = 55688, + [SMALL_STATE(2575)] = 55746, + [SMALL_STATE(2576)] = 55810, + [SMALL_STATE(2577)] = 55878, + [SMALL_STATE(2578)] = 55958, + [SMALL_STATE(2579)] = 56016, + [SMALL_STATE(2580)] = 56084, + [SMALL_STATE(2581)] = 56152, + [SMALL_STATE(2582)] = 56212, + [SMALL_STATE(2583)] = 56300, + [SMALL_STATE(2584)] = 56420, + [SMALL_STATE(2585)] = 56536, + [SMALL_STATE(2586)] = 56610, + [SMALL_STATE(2587)] = 56696, + [SMALL_STATE(2588)] = 56756, + [SMALL_STATE(2589)] = 56814, + [SMALL_STATE(2590)] = 56872, + [SMALL_STATE(2591)] = 56988, + [SMALL_STATE(2592)] = 57046, + [SMALL_STATE(2593)] = 57162, + [SMALL_STATE(2594)] = 57220, + [SMALL_STATE(2595)] = 57310, + [SMALL_STATE(2596)] = 57396, + [SMALL_STATE(2597)] = 57512, + [SMALL_STATE(2598)] = 57570, + [SMALL_STATE(2599)] = 57686, + [SMALL_STATE(2600)] = 57802, + [SMALL_STATE(2601)] = 57922, + [SMALL_STATE(2602)] = 57980, + [SMALL_STATE(2603)] = 58096, + [SMALL_STATE(2604)] = 58154, + [SMALL_STATE(2605)] = 58212, + [SMALL_STATE(2606)] = 58332, + [SMALL_STATE(2607)] = 58390, + [SMALL_STATE(2608)] = 58510, + [SMALL_STATE(2609)] = 58568, + [SMALL_STATE(2610)] = 58656, + [SMALL_STATE(2611)] = 58742, + [SMALL_STATE(2612)] = 58800, + [SMALL_STATE(2613)] = 58916, + [SMALL_STATE(2614)] = 59004, + [SMALL_STATE(2615)] = 59120, + [SMALL_STATE(2616)] = 59236, + [SMALL_STATE(2617)] = 59294, + [SMALL_STATE(2618)] = 59352, + [SMALL_STATE(2619)] = 59410, + [SMALL_STATE(2620)] = 59480, + [SMALL_STATE(2621)] = 59558, + [SMALL_STATE(2622)] = 59642, + [SMALL_STATE(2623)] = 59758, + [SMALL_STATE(2624)] = 59874, + [SMALL_STATE(2625)] = 59990, + [SMALL_STATE(2626)] = 60048, + [SMALL_STATE(2627)] = 60106, + [SMALL_STATE(2628)] = 60164, + [SMALL_STATE(2629)] = 60280, + [SMALL_STATE(2630)] = 60400, + [SMALL_STATE(2631)] = 60458, + [SMALL_STATE(2632)] = 60534, + [SMALL_STATE(2633)] = 60650, + [SMALL_STATE(2634)] = 60708, + [SMALL_STATE(2635)] = 60766, + [SMALL_STATE(2636)] = 60824, + [SMALL_STATE(2637)] = 60912, + [SMALL_STATE(2638)] = 61028, + [SMALL_STATE(2639)] = 61086, + [SMALL_STATE(2640)] = 61202, + [SMALL_STATE(2641)] = 61278, + [SMALL_STATE(2642)] = 61336, + [SMALL_STATE(2643)] = 61400, + [SMALL_STATE(2644)] = 61478, + [SMALL_STATE(2645)] = 61536, + [SMALL_STATE(2646)] = 61594, + [SMALL_STATE(2647)] = 61652, + [SMALL_STATE(2648)] = 61768, + [SMALL_STATE(2649)] = 61826, + [SMALL_STATE(2650)] = 61884, + [SMALL_STATE(2651)] = 61954, + [SMALL_STATE(2652)] = 62013, + [SMALL_STATE(2653)] = 62128, + [SMALL_STATE(2654)] = 62235, + [SMALL_STATE(2655)] = 62328, + [SMALL_STATE(2656)] = 62443, + [SMALL_STATE(2657)] = 62506, + [SMALL_STATE(2658)] = 62591, + [SMALL_STATE(2659)] = 62674, + [SMALL_STATE(2660)] = 62793, + [SMALL_STATE(2661)] = 62894, + [SMALL_STATE(2662)] = 62993, + [SMALL_STATE(2663)] = 63108, + [SMALL_STATE(2664)] = 63193, + [SMALL_STATE(2665)] = 63290, + [SMALL_STATE(2666)] = 63351, + [SMALL_STATE(2667)] = 63436, + [SMALL_STATE(2668)] = 63555, + [SMALL_STATE(2669)] = 63660, + [SMALL_STATE(2670)] = 63779, + [SMALL_STATE(2671)] = 63882, + [SMALL_STATE(2672)] = 63961, + [SMALL_STATE(2673)] = 64080, + [SMALL_STATE(2674)] = 64157, + [SMALL_STATE(2675)] = 64214, + [SMALL_STATE(2676)] = 64333, + [SMALL_STATE(2677)] = 64418, + [SMALL_STATE(2678)] = 64537, + [SMALL_STATE(2679)] = 64626, + [SMALL_STATE(2680)] = 64741, + [SMALL_STATE(2681)] = 64860, + [SMALL_STATE(2682)] = 64975, + [SMALL_STATE(2683)] = 65056, + [SMALL_STATE(2684)] = 65119, + [SMALL_STATE(2685)] = 65238, + [SMALL_STATE(2686)] = 65319, + [SMALL_STATE(2687)] = 65438, + [SMALL_STATE(2688)] = 65557, + [SMALL_STATE(2689)] = 65640, + [SMALL_STATE(2690)] = 65755, + [SMALL_STATE(2691)] = 65870, + [SMALL_STATE(2692)] = 65985, + [SMALL_STATE(2693)] = 66104, + [SMALL_STATE(2694)] = 66165, + [SMALL_STATE(2695)] = 66222, + [SMALL_STATE(2696)] = 66341, + [SMALL_STATE(2697)] = 66456, + [SMALL_STATE(2698)] = 66521, + [SMALL_STATE(2699)] = 66636, + [SMALL_STATE(2700)] = 66751, + [SMALL_STATE(2701)] = 66870, + [SMALL_STATE(2702)] = 66935, + [SMALL_STATE(2703)] = 66996, + [SMALL_STATE(2704)] = 67115, + [SMALL_STATE(2705)] = 67172, + [SMALL_STATE(2706)] = 67229, + [SMALL_STATE(2707)] = 67348, + [SMALL_STATE(2708)] = 67429, + [SMALL_STATE(2709)] = 67548, + [SMALL_STATE(2710)] = 67667, + [SMALL_STATE(2711)] = 67732, + [SMALL_STATE(2712)] = 67793, + [SMALL_STATE(2713)] = 67908, + [SMALL_STATE(2714)] = 68025, + [SMALL_STATE(2715)] = 68144, + [SMALL_STATE(2716)] = 68201, + [SMALL_STATE(2717)] = 68276, + [SMALL_STATE(2718)] = 68391, + [SMALL_STATE(2719)] = 68506, + [SMALL_STATE(2720)] = 68621, + [SMALL_STATE(2721)] = 68740, + [SMALL_STATE(2722)] = 68859, + [SMALL_STATE(2723)] = 68974, + [SMALL_STATE(2724)] = 69089, + [SMALL_STATE(2725)] = 69152, + [SMALL_STATE(2726)] = 69267, + [SMALL_STATE(2727)] = 69384, + [SMALL_STATE(2728)] = 69501, + [SMALL_STATE(2729)] = 69620, + [SMALL_STATE(2730)] = 69735, + [SMALL_STATE(2731)] = 69850, + [SMALL_STATE(2732)] = 69965, + [SMALL_STATE(2733)] = 70080, + [SMALL_STATE(2734)] = 70199, + [SMALL_STATE(2735)] = 70314, + [SMALL_STATE(2736)] = 70391, + [SMALL_STATE(2737)] = 70498, + [SMALL_STATE(2738)] = 70591, + [SMALL_STATE(2739)] = 70710, + [SMALL_STATE(2740)] = 70829, + [SMALL_STATE(2741)] = 70912, + [SMALL_STATE(2742)] = 71027, + [SMALL_STATE(2743)] = 71142, + [SMALL_STATE(2744)] = 71217, + [SMALL_STATE(2745)] = 71302, + [SMALL_STATE(2746)] = 71385, + [SMALL_STATE(2747)] = 71444, + [SMALL_STATE(2748)] = 71503, + [SMALL_STATE(2749)] = 71604, + [SMALL_STATE(2750)] = 71703, + [SMALL_STATE(2751)] = 71784, + [SMALL_STATE(2752)] = 71853, + [SMALL_STATE(2753)] = 71950, + [SMALL_STATE(2754)] = 72035, + [SMALL_STATE(2755)] = 72150, + [SMALL_STATE(2756)] = 72269, + [SMALL_STATE(2757)] = 72374, + [SMALL_STATE(2758)] = 72477, + [SMALL_STATE(2759)] = 72592, + [SMALL_STATE(2760)] = 72671, + [SMALL_STATE(2761)] = 72786, + [SMALL_STATE(2762)] = 72905, + [SMALL_STATE(2763)] = 72994, + [SMALL_STATE(2764)] = 73109, + [SMALL_STATE(2765)] = 73224, + [SMALL_STATE(2766)] = 73339, + [SMALL_STATE(2767)] = 73426, + [SMALL_STATE(2768)] = 73545, + [SMALL_STATE(2769)] = 73612, + [SMALL_STATE(2770)] = 73729, + [SMALL_STATE(2771)] = 73792, + [SMALL_STATE(2772)] = 73907, + [SMALL_STATE(2773)] = 74022, + [SMALL_STATE(2774)] = 74089, + [SMALL_STATE(2775)] = 74158, + [SMALL_STATE(2776)] = 74215, + [SMALL_STATE(2777)] = 74296, + [SMALL_STATE(2778)] = 74415, + [SMALL_STATE(2779)] = 74532, + [SMALL_STATE(2780)] = 74610, + [SMALL_STATE(2781)] = 74678, + [SMALL_STATE(2782)] = 74738, + [SMALL_STATE(2783)] = 74802, + [SMALL_STATE(2784)] = 74918, + [SMALL_STATE(2785)] = 75008, + [SMALL_STATE(2786)] = 75070, + [SMALL_STATE(2787)] = 75138, + [SMALL_STATE(2788)] = 75220, + [SMALL_STATE(2789)] = 75334, + [SMALL_STATE(2790)] = 75390, + [SMALL_STATE(2791)] = 75460, + [SMALL_STATE(2792)] = 75530, + [SMALL_STATE(2793)] = 75586, + [SMALL_STATE(2794)] = 75676, + [SMALL_STATE(2795)] = 75732, + [SMALL_STATE(2796)] = 75790, + [SMALL_STATE(2797)] = 75846, + [SMALL_STATE(2798)] = 75902, + [SMALL_STATE(2799)] = 75958, + [SMALL_STATE(2800)] = 76072, + [SMALL_STATE(2801)] = 76140, + [SMALL_STATE(2802)] = 76196, + [SMALL_STATE(2803)] = 76252, + [SMALL_STATE(2804)] = 76308, + [SMALL_STATE(2805)] = 76364, + [SMALL_STATE(2806)] = 76420, + [SMALL_STATE(2807)] = 76510, + [SMALL_STATE(2808)] = 76624, + [SMALL_STATE(2809)] = 76706, + [SMALL_STATE(2810)] = 76820, + [SMALL_STATE(2811)] = 76900, + [SMALL_STATE(2812)] = 76978, + [SMALL_STATE(2813)] = 77092, + [SMALL_STATE(2814)] = 77160, + [SMALL_STATE(2815)] = 77216, + [SMALL_STATE(2816)] = 77272, + [SMALL_STATE(2817)] = 77328, + [SMALL_STATE(2818)] = 77384, + [SMALL_STATE(2819)] = 77440, + [SMALL_STATE(2820)] = 77496, + [SMALL_STATE(2821)] = 77552, + [SMALL_STATE(2822)] = 77608, + [SMALL_STATE(2823)] = 77664, + [SMALL_STATE(2824)] = 77720, + [SMALL_STATE(2825)] = 77802, + [SMALL_STATE(2826)] = 77876, + [SMALL_STATE(2827)] = 77932, + [SMALL_STATE(2828)] = 77988, + [SMALL_STATE(2829)] = 78044, + [SMALL_STATE(2830)] = 78100, + [SMALL_STATE(2831)] = 78156, + [SMALL_STATE(2832)] = 78212, + [SMALL_STATE(2833)] = 78268, + [SMALL_STATE(2834)] = 78358, + [SMALL_STATE(2835)] = 78474, + [SMALL_STATE(2836)] = 78530, + [SMALL_STATE(2837)] = 78644, + [SMALL_STATE(2838)] = 78712, + [SMALL_STATE(2839)] = 78826, + [SMALL_STATE(2840)] = 78884, + [SMALL_STATE(2841)] = 78998, + [SMALL_STATE(2842)] = 79054, + [SMALL_STATE(2843)] = 79112, + [SMALL_STATE(2844)] = 79168, + [SMALL_STATE(2845)] = 79226, + [SMALL_STATE(2846)] = 79282, + [SMALL_STATE(2847)] = 79370, + [SMALL_STATE(2848)] = 79484, + [SMALL_STATE(2849)] = 79562, + [SMALL_STATE(2850)] = 79644, + [SMALL_STATE(2851)] = 79700, + [SMALL_STATE(2852)] = 79762, + [SMALL_STATE(2853)] = 79864, + [SMALL_STATE(2854)] = 79932, + [SMALL_STATE(2855)] = 80000, + [SMALL_STATE(2856)] = 80090, + [SMALL_STATE(2857)] = 80194, + [SMALL_STATE(2858)] = 80250, + [SMALL_STATE(2859)] = 80306, + [SMALL_STATE(2860)] = 80364, + [SMALL_STATE(2861)] = 80420, + [SMALL_STATE(2862)] = 80476, + [SMALL_STATE(2863)] = 80532, + [SMALL_STATE(2864)] = 80594, + [SMALL_STATE(2865)] = 80656, + [SMALL_STATE(2866)] = 80714, + [SMALL_STATE(2867)] = 80772, + [SMALL_STATE(2868)] = 80828, + [SMALL_STATE(2869)] = 80942, + [SMALL_STATE(2870)] = 80998, + [SMALL_STATE(2871)] = 81054, + [SMALL_STATE(2872)] = 81138, + [SMALL_STATE(2873)] = 81202, + [SMALL_STATE(2874)] = 81298, + [SMALL_STATE(2875)] = 81396, + [SMALL_STATE(2876)] = 81458, + [SMALL_STATE(2877)] = 81514, + [SMALL_STATE(2878)] = 81570, + [SMALL_STATE(2879)] = 81632, + [SMALL_STATE(2880)] = 81688, + [SMALL_STATE(2881)] = 81752, + [SMALL_STATE(2882)] = 81816, + [SMALL_STATE(2883)] = 81876, + [SMALL_STATE(2884)] = 81932, + [SMALL_STATE(2885)] = 81990, + [SMALL_STATE(2886)] = 82048, + [SMALL_STATE(2887)] = 82104, + [SMALL_STATE(2888)] = 82160, + [SMALL_STATE(2889)] = 82216, + [SMALL_STATE(2890)] = 82272, + [SMALL_STATE(2891)] = 82348, + [SMALL_STATE(2892)] = 82404, + [SMALL_STATE(2893)] = 82494, + [SMALL_STATE(2894)] = 82550, + [SMALL_STATE(2895)] = 82606, + [SMALL_STATE(2896)] = 82662, + [SMALL_STATE(2897)] = 82776, + [SMALL_STATE(2898)] = 82832, + [SMALL_STATE(2899)] = 82888, + [SMALL_STATE(2900)] = 82944, + [SMALL_STATE(2901)] = 83006, + [SMALL_STATE(2902)] = 83084, + [SMALL_STATE(2903)] = 83140, + [SMALL_STATE(2904)] = 83196, + [SMALL_STATE(2905)] = 83252, + [SMALL_STATE(2906)] = 83352, + [SMALL_STATE(2907)] = 83434, + [SMALL_STATE(2908)] = 83518, + [SMALL_STATE(2909)] = 83610, + [SMALL_STATE(2910)] = 83716, + [SMALL_STATE(2911)] = 83830, + [SMALL_STATE(2912)] = 83944, + [SMALL_STATE(2913)] = 84026, + [SMALL_STATE(2914)] = 84140, + [SMALL_STATE(2915)] = 84254, + [SMALL_STATE(2916)] = 84368, + [SMALL_STATE(2917)] = 84428, + [SMALL_STATE(2918)] = 84490, + [SMALL_STATE(2919)] = 84548, + [SMALL_STATE(2920)] = 84604, + [SMALL_STATE(2921)] = 84718, + [SMALL_STATE(2922)] = 84782, + [SMALL_STATE(2923)] = 84844, + [SMALL_STATE(2924)] = 84924, + [SMALL_STATE(2925)] = 85006, + [SMALL_STATE(2926)] = 85068, + [SMALL_STATE(2927)] = 85182, + [SMALL_STATE(2928)] = 85272, + [SMALL_STATE(2929)] = 85386, + [SMALL_STATE(2930)] = 85500, + [SMALL_STATE(2931)] = 85614, + [SMALL_STATE(2932)] = 85672, + [SMALL_STATE(2933)] = 85786, + [SMALL_STATE(2934)] = 85842, + [SMALL_STATE(2935)] = 85956, + [SMALL_STATE(2936)] = 86070, + [SMALL_STATE(2937)] = 86186, + [SMALL_STATE(2938)] = 86248, + [SMALL_STATE(2939)] = 86306, + [SMALL_STATE(2940)] = 86420, + [SMALL_STATE(2941)] = 86476, + [SMALL_STATE(2942)] = 86532, + [SMALL_STATE(2943)] = 86588, + [SMALL_STATE(2944)] = 86644, + [SMALL_STATE(2945)] = 86702, + [SMALL_STATE(2946)] = 86818, + [SMALL_STATE(2947)] = 86874, + [SMALL_STATE(2948)] = 86930, + [SMALL_STATE(2949)] = 87012, + [SMALL_STATE(2950)] = 87068, + [SMALL_STATE(2951)] = 87130, + [SMALL_STATE(2952)] = 87192, + [SMALL_STATE(2953)] = 87256, + [SMALL_STATE(2954)] = 87318, + [SMALL_STATE(2955)] = 87432, + [SMALL_STATE(2956)] = 87546, + [SMALL_STATE(2957)] = 87602, + [SMALL_STATE(2958)] = 87660, + [SMALL_STATE(2959)] = 87774, + [SMALL_STATE(2960)] = 87890, + [SMALL_STATE(2961)] = 87946, + [SMALL_STATE(2962)] = 88002, + [SMALL_STATE(2963)] = 88060, + [SMALL_STATE(2964)] = 88116, + [SMALL_STATE(2965)] = 88172, + [SMALL_STATE(2966)] = 88228, + [SMALL_STATE(2967)] = 88284, + [SMALL_STATE(2968)] = 88346, + [SMALL_STATE(2969)] = 88402, + [SMALL_STATE(2970)] = 88518, + [SMALL_STATE(2971)] = 88574, + [SMALL_STATE(2972)] = 88656, + [SMALL_STATE(2973)] = 88724, + [SMALL_STATE(2974)] = 88792, + [SMALL_STATE(2975)] = 88848, + [SMALL_STATE(2976)] = 88910, + [SMALL_STATE(2977)] = 88970, + [SMALL_STATE(2978)] = 89026, + [SMALL_STATE(2979)] = 89084, + [SMALL_STATE(2980)] = 89140, + [SMALL_STATE(2981)] = 89196, + [SMALL_STATE(2982)] = 89310, + [SMALL_STATE(2983)] = 89366, + [SMALL_STATE(2984)] = 89422, + [SMALL_STATE(2985)] = 89536, + [SMALL_STATE(2986)] = 89592, + [SMALL_STATE(2987)] = 89654, + [SMALL_STATE(2988)] = 89722, + [SMALL_STATE(2989)] = 89800, + [SMALL_STATE(2990)] = 89880, + [SMALL_STATE(2991)] = 89958, + [SMALL_STATE(2992)] = 90040, + [SMALL_STATE(2993)] = 90095, + [SMALL_STATE(2994)] = 90154, + [SMALL_STATE(2995)] = 90213, + [SMALL_STATE(2996)] = 90268, + [SMALL_STATE(2997)] = 90343, + [SMALL_STATE(2998)] = 90402, + [SMALL_STATE(2999)] = 90515, + [SMALL_STATE(3000)] = 90574, + [SMALL_STATE(3001)] = 90633, + [SMALL_STATE(3002)] = 90746, + [SMALL_STATE(3003)] = 90803, + [SMALL_STATE(3004)] = 90862, + [SMALL_STATE(3005)] = 90917, + [SMALL_STATE(3006)] = 90990, + [SMALL_STATE(3007)] = 91045, + [SMALL_STATE(3008)] = 91110, + [SMALL_STATE(3009)] = 91223, + [SMALL_STATE(3010)] = 91336, + [SMALL_STATE(3011)] = 91395, + [SMALL_STATE(3012)] = 91452, + [SMALL_STATE(3013)] = 91513, + [SMALL_STATE(3014)] = 91586, + [SMALL_STATE(3015)] = 91651, + [SMALL_STATE(3016)] = 91710, + [SMALL_STATE(3017)] = 91823, + [SMALL_STATE(3018)] = 91882, + [SMALL_STATE(3019)] = 91995, + [SMALL_STATE(3020)] = 92108, + [SMALL_STATE(3021)] = 92175, + [SMALL_STATE(3022)] = 92248, + [SMALL_STATE(3023)] = 92321, + [SMALL_STATE(3024)] = 92378, + [SMALL_STATE(3025)] = 92433, + [SMALL_STATE(3026)] = 92488, + [SMALL_STATE(3027)] = 92561, + [SMALL_STATE(3028)] = 92616, + [SMALL_STATE(3029)] = 92679, + [SMALL_STATE(3030)] = 92734, + [SMALL_STATE(3031)] = 92791, + [SMALL_STATE(3032)] = 92858, + [SMALL_STATE(3033)] = 92913, + [SMALL_STATE(3034)] = 92988, + [SMALL_STATE(3035)] = 93043, + [SMALL_STATE(3036)] = 93156, + [SMALL_STATE(3037)] = 93231, + [SMALL_STATE(3038)] = 93290, + [SMALL_STATE(3039)] = 93345, + [SMALL_STATE(3040)] = 93420, + [SMALL_STATE(3041)] = 93475, + [SMALL_STATE(3042)] = 93548, + [SMALL_STATE(3043)] = 93623, + [SMALL_STATE(3044)] = 93678, + [SMALL_STATE(3045)] = 93759, + [SMALL_STATE(3046)] = 93872, + [SMALL_STATE(3047)] = 93935, + [SMALL_STATE(3048)] = 93996, + [SMALL_STATE(3049)] = 94059, + [SMALL_STATE(3050)] = 94114, + [SMALL_STATE(3051)] = 94187, + [SMALL_STATE(3052)] = 94242, + [SMALL_STATE(3053)] = 94355, + [SMALL_STATE(3054)] = 94412, + [SMALL_STATE(3055)] = 94525, + [SMALL_STATE(3056)] = 94582, + [SMALL_STATE(3057)] = 94637, + [SMALL_STATE(3058)] = 94692, + [SMALL_STATE(3059)] = 94805, + [SMALL_STATE(3060)] = 94872, + [SMALL_STATE(3061)] = 94931, + [SMALL_STATE(3062)] = 94998, + [SMALL_STATE(3063)] = 95071, + [SMALL_STATE(3064)] = 95126, + [SMALL_STATE(3065)] = 95209, + [SMALL_STATE(3066)] = 95284, + [SMALL_STATE(3067)] = 95339, + [SMALL_STATE(3068)] = 95420, + [SMALL_STATE(3069)] = 95475, + [SMALL_STATE(3070)] = 95548, + [SMALL_STATE(3071)] = 95661, + [SMALL_STATE(3072)] = 95718, + [SMALL_STATE(3073)] = 95777, + [SMALL_STATE(3074)] = 95852, + [SMALL_STATE(3075)] = 95925, + [SMALL_STATE(3076)] = 95980, + [SMALL_STATE(3077)] = 96035, + [SMALL_STATE(3078)] = 96148, + [SMALL_STATE(3079)] = 96203, + [SMALL_STATE(3080)] = 96260, + [SMALL_STATE(3081)] = 96335, + [SMALL_STATE(3082)] = 96410, + [SMALL_STATE(3083)] = 96523, + [SMALL_STATE(3084)] = 96596, + [SMALL_STATE(3085)] = 96651, + [SMALL_STATE(3086)] = 96706, + [SMALL_STATE(3087)] = 96763, + [SMALL_STATE(3088)] = 96818, + [SMALL_STATE(3089)] = 96873, + [SMALL_STATE(3090)] = 96928, + [SMALL_STATE(3091)] = 96983, + [SMALL_STATE(3092)] = 97038, + [SMALL_STATE(3093)] = 97151, + [SMALL_STATE(3094)] = 97224, + [SMALL_STATE(3095)] = 97297, + [SMALL_STATE(3096)] = 97410, + [SMALL_STATE(3097)] = 97515, + [SMALL_STATE(3098)] = 97572, + [SMALL_STATE(3099)] = 97631, + [SMALL_STATE(3100)] = 97744, + [SMALL_STATE(3101)] = 97835, + [SMALL_STATE(3102)] = 97896, + [SMALL_STATE(3103)] = 97959, + [SMALL_STATE(3104)] = 98014, + [SMALL_STATE(3105)] = 98073, + [SMALL_STATE(3106)] = 98132, + [SMALL_STATE(3107)] = 98245, + [SMALL_STATE(3108)] = 98308, + [SMALL_STATE(3109)] = 98363, + [SMALL_STATE(3110)] = 98436, + [SMALL_STATE(3111)] = 98491, + [SMALL_STATE(3112)] = 98550, + [SMALL_STATE(3113)] = 98605, + [SMALL_STATE(3114)] = 98678, + [SMALL_STATE(3115)] = 98733, + [SMALL_STATE(3116)] = 98788, + [SMALL_STATE(3117)] = 98869, + [SMALL_STATE(3118)] = 98944, + [SMALL_STATE(3119)] = 99025, + [SMALL_STATE(3120)] = 99080, + [SMALL_STATE(3121)] = 99155, + [SMALL_STATE(3122)] = 99238, + [SMALL_STATE(3123)] = 99351, + [SMALL_STATE(3124)] = 99464, + [SMALL_STATE(3125)] = 99539, + [SMALL_STATE(3126)] = 99652, + [SMALL_STATE(3127)] = 99713, + [SMALL_STATE(3128)] = 99796, + [SMALL_STATE(3129)] = 99909, + [SMALL_STATE(3130)] = 99968, + [SMALL_STATE(3131)] = 100049, + [SMALL_STATE(3132)] = 100104, + [SMALL_STATE(3133)] = 100163, + [SMALL_STATE(3134)] = 100230, + [SMALL_STATE(3135)] = 100343, + [SMALL_STATE(3136)] = 100410, + [SMALL_STATE(3137)] = 100523, + [SMALL_STATE(3138)] = 100582, + [SMALL_STATE(3139)] = 100641, + [SMALL_STATE(3140)] = 100732, + [SMALL_STATE(3141)] = 100813, + [SMALL_STATE(3142)] = 100872, + [SMALL_STATE(3143)] = 100931, + [SMALL_STATE(3144)] = 100990, + [SMALL_STATE(3145)] = 101049, + [SMALL_STATE(3146)] = 101148, + [SMALL_STATE(3147)] = 101231, + [SMALL_STATE(3148)] = 101292, + [SMALL_STATE(3149)] = 101359, + [SMALL_STATE(3150)] = 101434, + [SMALL_STATE(3151)] = 101547, + [SMALL_STATE(3152)] = 101606, + [SMALL_STATE(3153)] = 101719, + [SMALL_STATE(3154)] = 101778, + [SMALL_STATE(3155)] = 101841, + [SMALL_STATE(3156)] = 101936, + [SMALL_STATE(3157)] = 102029, + [SMALL_STATE(3158)] = 102142, + [SMALL_STATE(3159)] = 102207, + [SMALL_STATE(3160)] = 102282, + [SMALL_STATE(3161)] = 102365, + [SMALL_STATE(3162)] = 102440, + [SMALL_STATE(3163)] = 102543, + [SMALL_STATE(3164)] = 102644, + [SMALL_STATE(3165)] = 102699, + [SMALL_STATE(3166)] = 102772, + [SMALL_STATE(3167)] = 102849, + [SMALL_STATE(3168)] = 102962, + [SMALL_STATE(3169)] = 103017, + [SMALL_STATE(3170)] = 103104, + [SMALL_STATE(3171)] = 103171, + [SMALL_STATE(3172)] = 103284, + [SMALL_STATE(3173)] = 103397, + [SMALL_STATE(3174)] = 103510, + [SMALL_STATE(3175)] = 103571, + [SMALL_STATE(3176)] = 103684, + [SMALL_STATE(3177)] = 103745, + [SMALL_STATE(3178)] = 103858, + [SMALL_STATE(3179)] = 103939, + [SMALL_STATE(3180)] = 103994, + [SMALL_STATE(3181)] = 104049, + [SMALL_STATE(3182)] = 104112, + [SMALL_STATE(3183)] = 104171, + [SMALL_STATE(3184)] = 104228, + [SMALL_STATE(3185)] = 104293, + [SMALL_STATE(3186)] = 104376, + [SMALL_STATE(3187)] = 104489, + [SMALL_STATE(3188)] = 104546, + [SMALL_STATE(3189)] = 104619, + [SMALL_STATE(3190)] = 104694, + [SMALL_STATE(3191)] = 104755, + [SMALL_STATE(3192)] = 104814, + [SMALL_STATE(3193)] = 104873, + [SMALL_STATE(3194)] = 104930, + [SMALL_STATE(3195)] = 105045, + [SMALL_STATE(3196)] = 105120, + [SMALL_STATE(3197)] = 105233, + [SMALL_STATE(3198)] = 105300, + [SMALL_STATE(3199)] = 105413, + [SMALL_STATE(3200)] = 105476, + [SMALL_STATE(3201)] = 105539, + [SMALL_STATE(3202)] = 105652, + [SMALL_STATE(3203)] = 105765, + [SMALL_STATE(3204)] = 105826, + [SMALL_STATE(3205)] = 105923, + [SMALL_STATE(3206)] = 105980, + [SMALL_STATE(3207)] = 106037, + [SMALL_STATE(3208)] = 106096, + [SMALL_STATE(3209)] = 106169, + [SMALL_STATE(3210)] = 106224, + [SMALL_STATE(3211)] = 106299, + [SMALL_STATE(3212)] = 106380, + [SMALL_STATE(3213)] = 106493, + [SMALL_STATE(3214)] = 106550, + [SMALL_STATE(3215)] = 106623, + [SMALL_STATE(3216)] = 106736, + [SMALL_STATE(3217)] = 106803, + [SMALL_STATE(3218)] = 106916, + [SMALL_STATE(3219)] = 106999, + [SMALL_STATE(3220)] = 107072, + [SMALL_STATE(3221)] = 107185, + [SMALL_STATE(3222)] = 107298, + [SMALL_STATE(3223)] = 107375, + [SMALL_STATE(3224)] = 107450, + [SMALL_STATE(3225)] = 107533, + [SMALL_STATE(3226)] = 107614, + [SMALL_STATE(3227)] = 107727, + [SMALL_STATE(3228)] = 107800, + [SMALL_STATE(3229)] = 107881, + [SMALL_STATE(3230)] = 107936, + [SMALL_STATE(3231)] = 107997, + [SMALL_STATE(3232)] = 108096, + [SMALL_STATE(3233)] = 108209, + [SMALL_STATE(3234)] = 108306, + [SMALL_STATE(3235)] = 108401, + [SMALL_STATE(3236)] = 108484, + [SMALL_STATE(3237)] = 108587, + [SMALL_STATE(3238)] = 108660, + [SMALL_STATE(3239)] = 108741, + [SMALL_STATE(3240)] = 108824, + [SMALL_STATE(3241)] = 108937, + [SMALL_STATE(3242)] = 109038, + [SMALL_STATE(3243)] = 109151, + [SMALL_STATE(3244)] = 109238, + [SMALL_STATE(3245)] = 109315, + [SMALL_STATE(3246)] = 109416, + [SMALL_STATE(3247)] = 109493, + [SMALL_STATE(3248)] = 109596, + [SMALL_STATE(3249)] = 109683, + [SMALL_STATE(3250)] = 109766, + [SMALL_STATE(3251)] = 109861, + [SMALL_STATE(3252)] = 109958, + [SMALL_STATE(3253)] = 110021, + [SMALL_STATE(3254)] = 110094, + [SMALL_STATE(3255)] = 110161, + [SMALL_STATE(3256)] = 110274, + [SMALL_STATE(3257)] = 110341, + [SMALL_STATE(3258)] = 110440, + [SMALL_STATE(3259)] = 110521, + [SMALL_STATE(3260)] = 110604, + [SMALL_STATE(3261)] = 110695, + [SMALL_STATE(3262)] = 110800, + [SMALL_STATE(3263)] = 110913, + [SMALL_STATE(3264)] = 110968, + [SMALL_STATE(3265)] = 111081, + [SMALL_STATE(3266)] = 111136, + [SMALL_STATE(3267)] = 111191, + [SMALL_STATE(3268)] = 111246, + [SMALL_STATE(3269)] = 111301, + [SMALL_STATE(3270)] = 111368, + [SMALL_STATE(3271)] = 111435, + [SMALL_STATE(3272)] = 111548, + [SMALL_STATE(3273)] = 111631, + [SMALL_STATE(3274)] = 111686, + [SMALL_STATE(3275)] = 111767, + [SMALL_STATE(3276)] = 111880, + [SMALL_STATE(3277)] = 111985, + [SMALL_STATE(3278)] = 112098, + [SMALL_STATE(3279)] = 112153, + [SMALL_STATE(3280)] = 112210, + [SMALL_STATE(3281)] = 112265, + [SMALL_STATE(3282)] = 112333, + [SMALL_STATE(3283)] = 112433, + [SMALL_STATE(3284)] = 112501, + [SMALL_STATE(3285)] = 112569, + [SMALL_STATE(3286)] = 112627, + [SMALL_STATE(3287)] = 112683, + [SMALL_STATE(3288)] = 112751, + [SMALL_STATE(3289)] = 112819, + [SMALL_STATE(3290)] = 112895, + [SMALL_STATE(3291)] = 112963, + [SMALL_STATE(3292)] = 113031, + [SMALL_STATE(3293)] = 113099, + [SMALL_STATE(3294)] = 113167, + [SMALL_STATE(3295)] = 113235, + [SMALL_STATE(3296)] = 113309, + [SMALL_STATE(3297)] = 113389, + [SMALL_STATE(3298)] = 113499, + [SMALL_STATE(3299)] = 113567, + [SMALL_STATE(3300)] = 113623, + [SMALL_STATE(3301)] = 113681, + [SMALL_STATE(3302)] = 113749, + [SMALL_STATE(3303)] = 113817, + [SMALL_STATE(3304)] = 113879, + [SMALL_STATE(3305)] = 113947, + [SMALL_STATE(3306)] = 114009, + [SMALL_STATE(3307)] = 114071, + [SMALL_STATE(3308)] = 114155, + [SMALL_STATE(3309)] = 114265, + [SMALL_STATE(3310)] = 114333, + [SMALL_STATE(3311)] = 114443, + [SMALL_STATE(3312)] = 114499, + [SMALL_STATE(3313)] = 114567, + [SMALL_STATE(3314)] = 114677, + [SMALL_STATE(3315)] = 114745, + [SMALL_STATE(3316)] = 114855, + [SMALL_STATE(3317)] = 114965, + [SMALL_STATE(3318)] = 115027, + [SMALL_STATE(3319)] = 115083, + [SMALL_STATE(3320)] = 115151, + [SMALL_STATE(3321)] = 115219, + [SMALL_STATE(3322)] = 115329, + [SMALL_STATE(3323)] = 115397, + [SMALL_STATE(3324)] = 115507, + [SMALL_STATE(3325)] = 115567, + [SMALL_STATE(3326)] = 115677, + [SMALL_STATE(3327)] = 115745, + [SMALL_STATE(3328)] = 115801, + [SMALL_STATE(3329)] = 115905, + [SMALL_STATE(3330)] = 115995, + [SMALL_STATE(3331)] = 116071, + [SMALL_STATE(3332)] = 116181, + [SMALL_STATE(3333)] = 116257, + [SMALL_STATE(3334)] = 116337, + [SMALL_STATE(3335)] = 116397, + [SMALL_STATE(3336)] = 116459, + [SMALL_STATE(3337)] = 116519, + [SMALL_STATE(3338)] = 116581, + [SMALL_STATE(3339)] = 116691, + [SMALL_STATE(3340)] = 116789, + [SMALL_STATE(3341)] = 116849, + [SMALL_STATE(3342)] = 116931, + [SMALL_STATE(3343)] = 117007, + [SMALL_STATE(3344)] = 117073, + [SMALL_STATE(3345)] = 117149, + [SMALL_STATE(3346)] = 117245, + [SMALL_STATE(3347)] = 117339, + [SMALL_STATE(3348)] = 117401, + [SMALL_STATE(3349)] = 117511, + [SMALL_STATE(3350)] = 117593, + [SMALL_STATE(3351)] = 117695, + [SMALL_STATE(3352)] = 117777, + [SMALL_STATE(3353)] = 117833, + [SMALL_STATE(3354)] = 117921, + [SMALL_STATE(3355)] = 117997, + [SMALL_STATE(3356)] = 118107, + [SMALL_STATE(3357)] = 118175, + [SMALL_STATE(3358)] = 118285, + [SMALL_STATE(3359)] = 118341, + [SMALL_STATE(3360)] = 118451, + [SMALL_STATE(3361)] = 118561, + [SMALL_STATE(3362)] = 118637, + [SMALL_STATE(3363)] = 118723, + [SMALL_STATE(3364)] = 118781, + [SMALL_STATE(3365)] = 118857, + [SMALL_STATE(3366)] = 118929, + [SMALL_STATE(3367)] = 118997, + [SMALL_STATE(3368)] = 119070, + [SMALL_STATE(3369)] = 119163, + [SMALL_STATE(3370)] = 119218, + [SMALL_STATE(3371)] = 119279, + [SMALL_STATE(3372)] = 119334, + [SMALL_STATE(3373)] = 119403, + [SMALL_STATE(3374)] = 119482, + [SMALL_STATE(3375)] = 119555, + [SMALL_STATE(3376)] = 119610, + [SMALL_STATE(3377)] = 119685, + [SMALL_STATE(3378)] = 119744, + [SMALL_STATE(3379)] = 119803, + [SMALL_STATE(3380)] = 119872, + [SMALL_STATE(3381)] = 119945, + [SMALL_STATE(3382)] = 120018, + [SMALL_STATE(3383)] = 120073, + [SMALL_STATE(3384)] = 120128, + [SMALL_STATE(3385)] = 120187, + [SMALL_STATE(3386)] = 120242, + [SMALL_STATE(3387)] = 120297, + [SMALL_STATE(3388)] = 120356, + [SMALL_STATE(3389)] = 120433, + [SMALL_STATE(3390)] = 120508, + [SMALL_STATE(3391)] = 120563, + [SMALL_STATE(3392)] = 120636, + [SMALL_STATE(3393)] = 120695, + [SMALL_STATE(3394)] = 120764, + [SMALL_STATE(3395)] = 120823, + [SMALL_STATE(3396)] = 120878, + [SMALL_STATE(3397)] = 120933, + [SMALL_STATE(3398)] = 120992, + [SMALL_STATE(3399)] = 121047, + [SMALL_STATE(3400)] = 121106, + [SMALL_STATE(3401)] = 121175, + [SMALL_STATE(3402)] = 121248, + [SMALL_STATE(3403)] = 121307, + [SMALL_STATE(3404)] = 121362, + [SMALL_STATE(3405)] = 121421, + [SMALL_STATE(3406)] = 121490, + [SMALL_STATE(3407)] = 121556, + [SMALL_STATE(3408)] = 121622, + [SMALL_STATE(3409)] = 121684, + [SMALL_STATE(3410)] = 121746, + [SMALL_STATE(3411)] = 121808, + [SMALL_STATE(3412)] = 121870, + [SMALL_STATE(3413)] = 121940, + [SMALL_STATE(3414)] = 122002, + [SMALL_STATE(3415)] = 122068, + [SMALL_STATE(3416)] = 122134, + [SMALL_STATE(3417)] = 122196, + [SMALL_STATE(3418)] = 122258, + [SMALL_STATE(3419)] = 122312, + [SMALL_STATE(3420)] = 122374, + [SMALL_STATE(3421)] = 122436, + [SMALL_STATE(3422)] = 122498, + [SMALL_STATE(3423)] = 122564, + [SMALL_STATE(3424)] = 122630, + [SMALL_STATE(3425)] = 122692, + [SMALL_STATE(3426)] = 122746, + [SMALL_STATE(3427)] = 122812, + [SMALL_STATE(3428)] = 122866, + [SMALL_STATE(3429)] = 122928, + [SMALL_STATE(3430)] = 122994, + [SMALL_STATE(3431)] = 123060, + [SMALL_STATE(3432)] = 123130, + [SMALL_STATE(3433)] = 123196, + [SMALL_STATE(3434)] = 123250, + [SMALL_STATE(3435)] = 123308, + [SMALL_STATE(3436)] = 123374, + [SMALL_STATE(3437)] = 123436, + [SMALL_STATE(3438)] = 123502, + [SMALL_STATE(3439)] = 123564, + [SMALL_STATE(3440)] = 123630, + [SMALL_STATE(3441)] = 123696, + [SMALL_STATE(3442)] = 123754, + [SMALL_STATE(3443)] = 123812, + [SMALL_STATE(3444)] = 123878, + [SMALL_STATE(3445)] = 123932, + [SMALL_STATE(3446)] = 123990, + [SMALL_STATE(3447)] = 124048, + [SMALL_STATE(3448)] = 124114, + [SMALL_STATE(3449)] = 124182, + [SMALL_STATE(3450)] = 124254, + [SMALL_STATE(3451)] = 124307, + [SMALL_STATE(3452)] = 124372, + [SMALL_STATE(3453)] = 124425, + [SMALL_STATE(3454)] = 124478, + [SMALL_STATE(3455)] = 124531, + [SMALL_STATE(3456)] = 124584, + [SMALL_STATE(3457)] = 124637, + [SMALL_STATE(3458)] = 124690, + [SMALL_STATE(3459)] = 124743, + [SMALL_STATE(3460)] = 124796, + [SMALL_STATE(3461)] = 124849, + [SMALL_STATE(3462)] = 124899, + [SMALL_STATE(3463)] = 124949, + [SMALL_STATE(3464)] = 124999, + [SMALL_STATE(3465)] = 125049, + [SMALL_STATE(3466)] = 125099, + [SMALL_STATE(3467)] = 125149, + [SMALL_STATE(3468)] = 125199, + [SMALL_STATE(3469)] = 125255, + [SMALL_STATE(3470)] = 125311, + [SMALL_STATE(3471)] = 125361, + [SMALL_STATE(3472)] = 125411, + [SMALL_STATE(3473)] = 125461, + [SMALL_STATE(3474)] = 125511, + [SMALL_STATE(3475)] = 125561, + [SMALL_STATE(3476)] = 125611, + [SMALL_STATE(3477)] = 125661, + [SMALL_STATE(3478)] = 125711, + [SMALL_STATE(3479)] = 125761, + [SMALL_STATE(3480)] = 125811, + [SMALL_STATE(3481)] = 125861, + [SMALL_STATE(3482)] = 125911, + [SMALL_STATE(3483)] = 125961, + [SMALL_STATE(3484)] = 126011, + [SMALL_STATE(3485)] = 126061, + [SMALL_STATE(3486)] = 126111, + [SMALL_STATE(3487)] = 126165, + [SMALL_STATE(3488)] = 126215, + [SMALL_STATE(3489)] = 126269, + [SMALL_STATE(3490)] = 126319, + [SMALL_STATE(3491)] = 126369, + [SMALL_STATE(3492)] = 126419, + [SMALL_STATE(3493)] = 126469, + [SMALL_STATE(3494)] = 126519, + [SMALL_STATE(3495)] = 126569, + [SMALL_STATE(3496)] = 126619, + [SMALL_STATE(3497)] = 126669, + [SMALL_STATE(3498)] = 126719, + [SMALL_STATE(3499)] = 126769, + [SMALL_STATE(3500)] = 126819, + [SMALL_STATE(3501)] = 126869, + [SMALL_STATE(3502)] = 126919, + [SMALL_STATE(3503)] = 126969, + [SMALL_STATE(3504)] = 127019, + [SMALL_STATE(3505)] = 127069, + [SMALL_STATE(3506)] = 127119, + [SMALL_STATE(3507)] = 127169, + [SMALL_STATE(3508)] = 127221, + [SMALL_STATE(3509)] = 127295, + [SMALL_STATE(3510)] = 127345, + [SMALL_STATE(3511)] = 127395, + [SMALL_STATE(3512)] = 127445, + [SMALL_STATE(3513)] = 127495, + [SMALL_STATE(3514)] = 127545, + [SMALL_STATE(3515)] = 127595, + [SMALL_STATE(3516)] = 127647, + [SMALL_STATE(3517)] = 127697, + [SMALL_STATE(3518)] = 127747, + [SMALL_STATE(3519)] = 127794, + [SMALL_STATE(3520)] = 127859, + [SMALL_STATE(3521)] = 127906, + [SMALL_STATE(3522)] = 127953, + [SMALL_STATE(3523)] = 128000, + [SMALL_STATE(3524)] = 128047, + [SMALL_STATE(3525)] = 128094, + [SMALL_STATE(3526)] = 128157, + [SMALL_STATE(3527)] = 128204, + [SMALL_STATE(3528)] = 128271, + [SMALL_STATE(3529)] = 128336, + [SMALL_STATE(3530)] = 128403, + [SMALL_STATE(3531)] = 128454, + [SMALL_STATE(3532)] = 128505, + [SMALL_STATE(3533)] = 128570, + [SMALL_STATE(3534)] = 128617, + [SMALL_STATE(3535)] = 128682, + [SMALL_STATE(3536)] = 128749, + [SMALL_STATE(3537)] = 128809, + [SMALL_STATE(3538)] = 128869, + [SMALL_STATE(3539)] = 128929, + [SMALL_STATE(3540)] = 128989, + [SMALL_STATE(3541)] = 129049, + [SMALL_STATE(3542)] = 129109, + [SMALL_STATE(3543)] = 129185, + [SMALL_STATE(3544)] = 129245, + [SMALL_STATE(3545)] = 129321, + [SMALL_STATE(3546)] = 129381, + [SMALL_STATE(3547)] = 129441, + [SMALL_STATE(3548)] = 129501, + [SMALL_STATE(3549)] = 129561, + [SMALL_STATE(3550)] = 129613, + [SMALL_STATE(3551)] = 129673, + [SMALL_STATE(3552)] = 129733, + [SMALL_STATE(3553)] = 129793, + [SMALL_STATE(3554)] = 129853, + [SMALL_STATE(3555)] = 129913, + [SMALL_STATE(3556)] = 129973, + [SMALL_STATE(3557)] = 130033, + [SMALL_STATE(3558)] = 130093, + [SMALL_STATE(3559)] = 130153, + [SMALL_STATE(3560)] = 130213, + [SMALL_STATE(3561)] = 130273, + [SMALL_STATE(3562)] = 130333, + [SMALL_STATE(3563)] = 130393, + [SMALL_STATE(3564)] = 130453, + [SMALL_STATE(3565)] = 130513, + [SMALL_STATE(3566)] = 130573, + [SMALL_STATE(3567)] = 130644, + [SMALL_STATE(3568)] = 130705, + [SMALL_STATE(3569)] = 130754, + [SMALL_STATE(3570)] = 130815, + [SMALL_STATE(3571)] = 130900, + [SMALL_STATE(3572)] = 130967, + [SMALL_STATE(3573)] = 131052, + [SMALL_STATE(3574)] = 131137, + [SMALL_STATE(3575)] = 131204, + [SMALL_STATE(3576)] = 131265, + [SMALL_STATE(3577)] = 131326, + [SMALL_STATE(3578)] = 131387, + [SMALL_STATE(3579)] = 131472, + [SMALL_STATE(3580)] = 131533, + [SMALL_STATE(3581)] = 131578, + [SMALL_STATE(3582)] = 131663, + [SMALL_STATE(3583)] = 131724, + [SMALL_STATE(3584)] = 131791, + [SMALL_STATE(3585)] = 131852, + [SMALL_STATE(3586)] = 131913, + [SMALL_STATE(3587)] = 131974, + [SMALL_STATE(3588)] = 132035, + [SMALL_STATE(3589)] = 132096, + [SMALL_STATE(3590)] = 132157, + [SMALL_STATE(3591)] = 132218, + [SMALL_STATE(3592)] = 132289, + [SMALL_STATE(3593)] = 132374, + [SMALL_STATE(3594)] = 132445, + [SMALL_STATE(3595)] = 132506, + [SMALL_STATE(3596)] = 132591, + [SMALL_STATE(3597)] = 132652, + [SMALL_STATE(3598)] = 132737, + [SMALL_STATE(3599)] = 132822, + [SMALL_STATE(3600)] = 132883, + [SMALL_STATE(3601)] = 132968, + [SMALL_STATE(3602)] = 133029, + [SMALL_STATE(3603)] = 133090, + [SMALL_STATE(3604)] = 133151, + [SMALL_STATE(3605)] = 133236, + [SMALL_STATE(3606)] = 133297, + [SMALL_STATE(3607)] = 133358, + [SMALL_STATE(3608)] = 133425, + [SMALL_STATE(3609)] = 133486, + [SMALL_STATE(3610)] = 133547, + [SMALL_STATE(3611)] = 133632, + [SMALL_STATE(3612)] = 133693, + [SMALL_STATE(3613)] = 133754, + [SMALL_STATE(3614)] = 133815, + [SMALL_STATE(3615)] = 133876, + [SMALL_STATE(3616)] = 133937, + [SMALL_STATE(3617)] = 133998, + [SMALL_STATE(3618)] = 134062, + [SMALL_STATE(3619)] = 134108, + [SMALL_STATE(3620)] = 134172, + [SMALL_STATE(3621)] = 134236, + [SMALL_STATE(3622)] = 134300, + [SMALL_STATE(3623)] = 134364, + [SMALL_STATE(3624)] = 134422, + [SMALL_STATE(3625)] = 134486, + [SMALL_STATE(3626)] = 134550, + [SMALL_STATE(3627)] = 134614, + [SMALL_STATE(3628)] = 134678, + [SMALL_STATE(3629)] = 134742, + [SMALL_STATE(3630)] = 134806, + [SMALL_STATE(3631)] = 134870, + [SMALL_STATE(3632)] = 134930, + [SMALL_STATE(3633)] = 134994, + [SMALL_STATE(3634)] = 135058, + [SMALL_STATE(3635)] = 135122, + [SMALL_STATE(3636)] = 135182, + [SMALL_STATE(3637)] = 135246, + [SMALL_STATE(3638)] = 135301, + [SMALL_STATE(3639)] = 135356, + [SMALL_STATE(3640)] = 135411, + [SMALL_STATE(3641)] = 135466, + [SMALL_STATE(3642)] = 135523, + [SMALL_STATE(3643)] = 135578, + [SMALL_STATE(3644)] = 135635, + [SMALL_STATE(3645)] = 135690, + [SMALL_STATE(3646)] = 135747, + [SMALL_STATE(3647)] = 135802, + [SMALL_STATE(3648)] = 135857, + [SMALL_STATE(3649)] = 135914, + [SMALL_STATE(3650)] = 135971, + [SMALL_STATE(3651)] = 136026, + [SMALL_STATE(3652)] = 136083, + [SMALL_STATE(3653)] = 136126, + [SMALL_STATE(3654)] = 136169, + [SMALL_STATE(3655)] = 136224, + [SMALL_STATE(3656)] = 136281, + [SMALL_STATE(3657)] = 136336, + [SMALL_STATE(3658)] = 136391, + [SMALL_STATE(3659)] = 136446, + [SMALL_STATE(3660)] = 136501, + [SMALL_STATE(3661)] = 136556, + [SMALL_STATE(3662)] = 136611, + [SMALL_STATE(3663)] = 136654, + [SMALL_STATE(3664)] = 136697, + [SMALL_STATE(3665)] = 136752, + [SMALL_STATE(3666)] = 136809, + [SMALL_STATE(3667)] = 136864, + [SMALL_STATE(3668)] = 136919, + [SMALL_STATE(3669)] = 136962, + [SMALL_STATE(3670)] = 137019, + [SMALL_STATE(3671)] = 137076, + [SMALL_STATE(3672)] = 137131, + [SMALL_STATE(3673)] = 137186, + [SMALL_STATE(3674)] = 137241, + [SMALL_STATE(3675)] = 137298, + [SMALL_STATE(3676)] = 137355, + [SMALL_STATE(3677)] = 137410, + [SMALL_STATE(3678)] = 137465, + [SMALL_STATE(3679)] = 137520, + [SMALL_STATE(3680)] = 137575, + [SMALL_STATE(3681)] = 137630, + [SMALL_STATE(3682)] = 137673, + [SMALL_STATE(3683)] = 137728, + [SMALL_STATE(3684)] = 137783, + [SMALL_STATE(3685)] = 137838, + [SMALL_STATE(3686)] = 137893, + [SMALL_STATE(3687)] = 137950, + [SMALL_STATE(3688)] = 138005, + [SMALL_STATE(3689)] = 138060, + [SMALL_STATE(3690)] = 138115, + [SMALL_STATE(3691)] = 138170, + [SMALL_STATE(3692)] = 138225, + [SMALL_STATE(3693)] = 138280, + [SMALL_STATE(3694)] = 138335, + [SMALL_STATE(3695)] = 138390, + [SMALL_STATE(3696)] = 138445, + [SMALL_STATE(3697)] = 138500, + [SMALL_STATE(3698)] = 138557, + [SMALL_STATE(3699)] = 138597, + [SMALL_STATE(3700)] = 138632, + [SMALL_STATE(3701)] = 138679, + [SMALL_STATE(3702)] = 138726, + [SMALL_STATE(3703)] = 138761, + [SMALL_STATE(3704)] = 138808, + [SMALL_STATE(3705)] = 138843, + [SMALL_STATE(3706)] = 138877, + [SMALL_STATE(3707)] = 138911, + [SMALL_STATE(3708)] = 138944, + [SMALL_STATE(3709)] = 138977, + [SMALL_STATE(3710)] = 139010, + [SMALL_STATE(3711)] = 139043, + [SMALL_STATE(3712)] = 139076, + [SMALL_STATE(3713)] = 139109, + [SMALL_STATE(3714)] = 139142, + [SMALL_STATE(3715)] = 139175, + [SMALL_STATE(3716)] = 139208, + [SMALL_STATE(3717)] = 139241, + [SMALL_STATE(3718)] = 139274, + [SMALL_STATE(3719)] = 139307, + [SMALL_STATE(3720)] = 139340, + [SMALL_STATE(3721)] = 139373, + [SMALL_STATE(3722)] = 139406, + [SMALL_STATE(3723)] = 139439, + [SMALL_STATE(3724)] = 139472, + [SMALL_STATE(3725)] = 139505, + [SMALL_STATE(3726)] = 139538, + [SMALL_STATE(3727)] = 139571, + [SMALL_STATE(3728)] = 139604, + [SMALL_STATE(3729)] = 139637, + [SMALL_STATE(3730)] = 139670, + [SMALL_STATE(3731)] = 139703, + [SMALL_STATE(3732)] = 139736, + [SMALL_STATE(3733)] = 139769, + [SMALL_STATE(3734)] = 139802, + [SMALL_STATE(3735)] = 139835, + [SMALL_STATE(3736)] = 139868, + [SMALL_STATE(3737)] = 139901, + [SMALL_STATE(3738)] = 139934, + [SMALL_STATE(3739)] = 139967, + [SMALL_STATE(3740)] = 140008, + [SMALL_STATE(3741)] = 140041, + [SMALL_STATE(3742)] = 140074, + [SMALL_STATE(3743)] = 140128, + [SMALL_STATE(3744)] = 140166, + [SMALL_STATE(3745)] = 140220, + [SMALL_STATE(3746)] = 140274, + [SMALL_STATE(3747)] = 140328, + [SMALL_STATE(3748)] = 140382, + [SMALL_STATE(3749)] = 140413, + [SMALL_STATE(3750)] = 140444, + [SMALL_STATE(3751)] = 140475, + [SMALL_STATE(3752)] = 140506, + [SMALL_STATE(3753)] = 140537, + [SMALL_STATE(3754)] = 140568, + [SMALL_STATE(3755)] = 140599, + [SMALL_STATE(3756)] = 140630, + [SMALL_STATE(3757)] = 140661, + [SMALL_STATE(3758)] = 140692, + [SMALL_STATE(3759)] = 140723, + [SMALL_STATE(3760)] = 140758, + [SMALL_STATE(3761)] = 140789, + [SMALL_STATE(3762)] = 140824, + [SMALL_STATE(3763)] = 140857, + [SMALL_STATE(3764)] = 140888, + [SMALL_STATE(3765)] = 140921, + [SMALL_STATE(3766)] = 140952, + [SMALL_STATE(3767)] = 140983, + [SMALL_STATE(3768)] = 141014, + [SMALL_STATE(3769)] = 141057, + [SMALL_STATE(3770)] = 141088, + [SMALL_STATE(3771)] = 141119, + [SMALL_STATE(3772)] = 141162, + [SMALL_STATE(3773)] = 141193, + [SMALL_STATE(3774)] = 141224, + [SMALL_STATE(3775)] = 141267, + [SMALL_STATE(3776)] = 141298, + [SMALL_STATE(3777)] = 141330, + [SMALL_STATE(3778)] = 141362, + [SMALL_STATE(3779)] = 141394, + [SMALL_STATE(3780)] = 141424, + [SMALL_STATE(3781)] = 141454, + [SMALL_STATE(3782)] = 141483, + [SMALL_STATE(3783)] = 141512, + [SMALL_STATE(3784)] = 141547, + [SMALL_STATE(3785)] = 141576, + [SMALL_STATE(3786)] = 141605, + [SMALL_STATE(3787)] = 141642, + [SMALL_STATE(3788)] = 141671, + [SMALL_STATE(3789)] = 141698, + [SMALL_STATE(3790)] = 141733, + [SMALL_STATE(3791)] = 141760, + [SMALL_STATE(3792)] = 141789, + [SMALL_STATE(3793)] = 141820, + [SMALL_STATE(3794)] = 141849, + [SMALL_STATE(3795)] = 141878, + [SMALL_STATE(3796)] = 141907, + [SMALL_STATE(3797)] = 141936, + [SMALL_STATE(3798)] = 141965, + [SMALL_STATE(3799)] = 142004, + [SMALL_STATE(3800)] = 142033, + [SMALL_STATE(3801)] = 142062, + [SMALL_STATE(3802)] = 142089, + [SMALL_STATE(3803)] = 142118, + [SMALL_STATE(3804)] = 142147, + [SMALL_STATE(3805)] = 142176, + [SMALL_STATE(3806)] = 142205, + [SMALL_STATE(3807)] = 142244, + [SMALL_STATE(3808)] = 142273, + [SMALL_STATE(3809)] = 142302, + [SMALL_STATE(3810)] = 142331, + [SMALL_STATE(3811)] = 142360, + [SMALL_STATE(3812)] = 142397, + [SMALL_STATE(3813)] = 142424, + [SMALL_STATE(3814)] = 142453, + [SMALL_STATE(3815)] = 142482, + [SMALL_STATE(3816)] = 142511, + [SMALL_STATE(3817)] = 142538, + [SMALL_STATE(3818)] = 142573, + [SMALL_STATE(3819)] = 142602, + [SMALL_STATE(3820)] = 142631, + [SMALL_STATE(3821)] = 142660, + [SMALL_STATE(3822)] = 142689, + [SMALL_STATE(3823)] = 142728, + [SMALL_STATE(3824)] = 142757, + [SMALL_STATE(3825)] = 142786, + [SMALL_STATE(3826)] = 142813, + [SMALL_STATE(3827)] = 142840, + [SMALL_STATE(3828)] = 142879, + [SMALL_STATE(3829)] = 142916, + [SMALL_STATE(3830)] = 142955, + [SMALL_STATE(3831)] = 142994, + [SMALL_STATE(3832)] = 143029, + [SMALL_STATE(3833)] = 143068, + [SMALL_STATE(3834)] = 143097, + [SMALL_STATE(3835)] = 143136, + [SMALL_STATE(3836)] = 143167, + [SMALL_STATE(3837)] = 143196, + [SMALL_STATE(3838)] = 143223, + [SMALL_STATE(3839)] = 143262, + [SMALL_STATE(3840)] = 143291, + [SMALL_STATE(3841)] = 143320, + [SMALL_STATE(3842)] = 143359, + [SMALL_STATE(3843)] = 143398, + [SMALL_STATE(3844)] = 143437, + [SMALL_STATE(3845)] = 143466, + [SMALL_STATE(3846)] = 143495, + [SMALL_STATE(3847)] = 143532, + [SMALL_STATE(3848)] = 143571, + [SMALL_STATE(3849)] = 143600, + [SMALL_STATE(3850)] = 143635, + [SMALL_STATE(3851)] = 143664, + [SMALL_STATE(3852)] = 143703, + [SMALL_STATE(3853)] = 143730, + [SMALL_STATE(3854)] = 143759, + [SMALL_STATE(3855)] = 143798, + [SMALL_STATE(3856)] = 143835, + [SMALL_STATE(3857)] = 143864, + [SMALL_STATE(3858)] = 143893, + [SMALL_STATE(3859)] = 143922, + [SMALL_STATE(3860)] = 143953, + [SMALL_STATE(3861)] = 143984, + [SMALL_STATE(3862)] = 144013, + [SMALL_STATE(3863)] = 144042, + [SMALL_STATE(3864)] = 144075, + [SMALL_STATE(3865)] = 144110, + [SMALL_STATE(3866)] = 144139, + [SMALL_STATE(3867)] = 144170, + [SMALL_STATE(3868)] = 144199, + [SMALL_STATE(3869)] = 144228, + [SMALL_STATE(3870)] = 144265, + [SMALL_STATE(3871)] = 144294, + [SMALL_STATE(3872)] = 144323, + [SMALL_STATE(3873)] = 144352, + [SMALL_STATE(3874)] = 144391, + [SMALL_STATE(3875)] = 144420, + [SMALL_STATE(3876)] = 144449, + [SMALL_STATE(3877)] = 144478, + [SMALL_STATE(3878)] = 144507, + [SMALL_STATE(3879)] = 144546, + [SMALL_STATE(3880)] = 144575, + [SMALL_STATE(3881)] = 144604, + [SMALL_STATE(3882)] = 144633, + [SMALL_STATE(3883)] = 144662, + [SMALL_STATE(3884)] = 144701, + [SMALL_STATE(3885)] = 144730, + [SMALL_STATE(3886)] = 144759, + [SMALL_STATE(3887)] = 144788, + [SMALL_STATE(3888)] = 144817, + [SMALL_STATE(3889)] = 144846, + [SMALL_STATE(3890)] = 144875, + [SMALL_STATE(3891)] = 144904, + [SMALL_STATE(3892)] = 144931, + [SMALL_STATE(3893)] = 144966, + [SMALL_STATE(3894)] = 145014, + [SMALL_STATE(3895)] = 145058, + [SMALL_STATE(3896)] = 145102, + [SMALL_STATE(3897)] = 145150, + [SMALL_STATE(3898)] = 145198, + [SMALL_STATE(3899)] = 145246, + [SMALL_STATE(3900)] = 145280, + [SMALL_STATE(3901)] = 145328, + [SMALL_STATE(3902)] = 145376, + [SMALL_STATE(3903)] = 145424, + [SMALL_STATE(3904)] = 145472, + [SMALL_STATE(3905)] = 145520, + [SMALL_STATE(3906)] = 145568, + [SMALL_STATE(3907)] = 145616, + [SMALL_STATE(3908)] = 145664, + [SMALL_STATE(3909)] = 145698, + [SMALL_STATE(3910)] = 145746, + [SMALL_STATE(3911)] = 145794, + [SMALL_STATE(3912)] = 145842, + [SMALL_STATE(3913)] = 145890, + [SMALL_STATE(3914)] = 145938, + [SMALL_STATE(3915)] = 145986, + [SMALL_STATE(3916)] = 146030, + [SMALL_STATE(3917)] = 146062, + [SMALL_STATE(3918)] = 146110, + [SMALL_STATE(3919)] = 146144, + [SMALL_STATE(3920)] = 146192, + [SMALL_STATE(3921)] = 146240, + [SMALL_STATE(3922)] = 146274, + [SMALL_STATE(3923)] = 146322, + [SMALL_STATE(3924)] = 146356, + [SMALL_STATE(3925)] = 146400, + [SMALL_STATE(3926)] = 146448, + [SMALL_STATE(3927)] = 146496, + [SMALL_STATE(3928)] = 146544, + [SMALL_STATE(3929)] = 146588, + [SMALL_STATE(3930)] = 146636, + [SMALL_STATE(3931)] = 146684, + [SMALL_STATE(3932)] = 146718, + [SMALL_STATE(3933)] = 146766, + [SMALL_STATE(3934)] = 146791, + [SMALL_STATE(3935)] = 146818, + [SMALL_STATE(3936)] = 146843, + [SMALL_STATE(3937)] = 146876, + [SMALL_STATE(3938)] = 146901, + [SMALL_STATE(3939)] = 146926, + [SMALL_STATE(3940)] = 146953, + [SMALL_STATE(3941)] = 146980, + [SMALL_STATE(3942)] = 147005, + [SMALL_STATE(3943)] = 147032, + [SMALL_STATE(3944)] = 147059, + [SMALL_STATE(3945)] = 147084, + [SMALL_STATE(3946)] = 147109, + [SMALL_STATE(3947)] = 147136, + [SMALL_STATE(3948)] = 147161, + [SMALL_STATE(3949)] = 147186, + [SMALL_STATE(3950)] = 147211, + [SMALL_STATE(3951)] = 147252, + [SMALL_STATE(3952)] = 147277, + [SMALL_STATE(3953)] = 147308, + [SMALL_STATE(3954)] = 147335, + [SMALL_STATE(3955)] = 147378, + [SMALL_STATE(3956)] = 147403, + [SMALL_STATE(3957)] = 147444, + [SMALL_STATE(3958)] = 147469, + [SMALL_STATE(3959)] = 147494, + [SMALL_STATE(3960)] = 147521, + [SMALL_STATE(3961)] = 147546, + [SMALL_STATE(3962)] = 147573, + [SMALL_STATE(3963)] = 147598, + [SMALL_STATE(3964)] = 147623, + [SMALL_STATE(3965)] = 147664, + [SMALL_STATE(3966)] = 147689, + [SMALL_STATE(3967)] = 147714, + [SMALL_STATE(3968)] = 147739, + [SMALL_STATE(3969)] = 147764, + [SMALL_STATE(3970)] = 147789, + [SMALL_STATE(3971)] = 147814, + [SMALL_STATE(3972)] = 147855, + [SMALL_STATE(3973)] = 147886, + [SMALL_STATE(3974)] = 147919, + [SMALL_STATE(3975)] = 147944, + [SMALL_STATE(3976)] = 147969, + [SMALL_STATE(3977)] = 147994, + [SMALL_STATE(3978)] = 148019, + [SMALL_STATE(3979)] = 148060, + [SMALL_STATE(3980)] = 148085, + [SMALL_STATE(3981)] = 148110, + [SMALL_STATE(3982)] = 148151, + [SMALL_STATE(3983)] = 148180, + [SMALL_STATE(3984)] = 148205, + [SMALL_STATE(3985)] = 148246, + [SMALL_STATE(3986)] = 148273, + [SMALL_STATE(3987)] = 148298, + [SMALL_STATE(3988)] = 148325, + [SMALL_STATE(3989)] = 148350, + [SMALL_STATE(3990)] = 148377, + [SMALL_STATE(3991)] = 148402, + [SMALL_STATE(3992)] = 148429, + [SMALL_STATE(3993)] = 148458, + [SMALL_STATE(3994)] = 148499, + [SMALL_STATE(3995)] = 148540, + [SMALL_STATE(3996)] = 148567, + [SMALL_STATE(3997)] = 148592, + [SMALL_STATE(3998)] = 148619, + [SMALL_STATE(3999)] = 148660, + [SMALL_STATE(4000)] = 148687, + [SMALL_STATE(4001)] = 148714, + [SMALL_STATE(4002)] = 148756, + [SMALL_STATE(4003)] = 148798, + [SMALL_STATE(4004)] = 148840, + [SMALL_STATE(4005)] = 148868, + [SMALL_STATE(4006)] = 148906, + [SMALL_STATE(4007)] = 148944, + [SMALL_STATE(4008)] = 148988, + [SMALL_STATE(4009)] = 149026, + [SMALL_STATE(4010)] = 149068, + [SMALL_STATE(4011)] = 149112, + [SMALL_STATE(4012)] = 149138, + [SMALL_STATE(4013)] = 149172, + [SMALL_STATE(4014)] = 149214, + [SMALL_STATE(4015)] = 149256, + [SMALL_STATE(4016)] = 149294, + [SMALL_STATE(4017)] = 149320, + [SMALL_STATE(4018)] = 149362, + [SMALL_STATE(4019)] = 149406, + [SMALL_STATE(4020)] = 149444, + [SMALL_STATE(4021)] = 149472, + [SMALL_STATE(4022)] = 149514, + [SMALL_STATE(4023)] = 149550, + [SMALL_STATE(4024)] = 149588, + [SMALL_STATE(4025)] = 149630, + [SMALL_STATE(4026)] = 149672, + [SMALL_STATE(4027)] = 149710, + [SMALL_STATE(4028)] = 149752, + [SMALL_STATE(4029)] = 149790, + [SMALL_STATE(4030)] = 149832, + [SMALL_STATE(4031)] = 149874, + [SMALL_STATE(4032)] = 149908, + [SMALL_STATE(4033)] = 149950, + [SMALL_STATE(4034)] = 149988, + [SMALL_STATE(4035)] = 150030, + [SMALL_STATE(4036)] = 150074, + [SMALL_STATE(4037)] = 150112, + [SMALL_STATE(4038)] = 150154, + [SMALL_STATE(4039)] = 150196, + [SMALL_STATE(4040)] = 150238, + [SMALL_STATE(4041)] = 150272, + [SMALL_STATE(4042)] = 150306, + [SMALL_STATE(4043)] = 150348, + [SMALL_STATE(4044)] = 150390, + [SMALL_STATE(4045)] = 150424, + [SMALL_STATE(4046)] = 150454, + [SMALL_STATE(4047)] = 150496, + [SMALL_STATE(4048)] = 150538, + [SMALL_STATE(4049)] = 150574, + [SMALL_STATE(4050)] = 150616, + [SMALL_STATE(4051)] = 150660, + [SMALL_STATE(4052)] = 150688, + [SMALL_STATE(4053)] = 150713, + [SMALL_STATE(4054)] = 150736, + [SMALL_STATE(4055)] = 150763, + [SMALL_STATE(4056)] = 150788, + [SMALL_STATE(4057)] = 150813, + [SMALL_STATE(4058)] = 150838, + [SMALL_STATE(4059)] = 150863, + [SMALL_STATE(4060)] = 150888, + [SMALL_STATE(4061)] = 150913, + [SMALL_STATE(4062)] = 150940, + [SMALL_STATE(4063)] = 150965, + [SMALL_STATE(4064)] = 150990, + [SMALL_STATE(4065)] = 151013, + [SMALL_STATE(4066)] = 151038, + [SMALL_STATE(4067)] = 151063, + [SMALL_STATE(4068)] = 151088, + [SMALL_STATE(4069)] = 151115, + [SMALL_STATE(4070)] = 151144, + [SMALL_STATE(4071)] = 151169, + [SMALL_STATE(4072)] = 151194, + [SMALL_STATE(4073)] = 151219, + [SMALL_STATE(4074)] = 151244, + [SMALL_STATE(4075)] = 151269, + [SMALL_STATE(4076)] = 151292, + [SMALL_STATE(4077)] = 151315, + [SMALL_STATE(4078)] = 151338, + [SMALL_STATE(4079)] = 151363, + [SMALL_STATE(4080)] = 151392, + [SMALL_STATE(4081)] = 151417, + [SMALL_STATE(4082)] = 151446, + [SMALL_STATE(4083)] = 151473, + [SMALL_STATE(4084)] = 151498, + [SMALL_STATE(4085)] = 151529, + [SMALL_STATE(4086)] = 151556, + [SMALL_STATE(4087)] = 151581, + [SMALL_STATE(4088)] = 151606, + [SMALL_STATE(4089)] = 151631, + [SMALL_STATE(4090)] = 151660, + [SMALL_STATE(4091)] = 151685, + [SMALL_STATE(4092)] = 151710, + [SMALL_STATE(4093)] = 151735, + [SMALL_STATE(4094)] = 151760, + [SMALL_STATE(4095)] = 151785, + [SMALL_STATE(4096)] = 151810, + [SMALL_STATE(4097)] = 151839, + [SMALL_STATE(4098)] = 151864, + [SMALL_STATE(4099)] = 151889, + [SMALL_STATE(4100)] = 151918, + [SMALL_STATE(4101)] = 151943, + [SMALL_STATE(4102)] = 151968, + [SMALL_STATE(4103)] = 151991, + [SMALL_STATE(4104)] = 152018, + [SMALL_STATE(4105)] = 152041, + [SMALL_STATE(4106)] = 152064, + [SMALL_STATE(4107)] = 152089, + [SMALL_STATE(4108)] = 152112, + [SMALL_STATE(4109)] = 152137, + [SMALL_STATE(4110)] = 152162, + [SMALL_STATE(4111)] = 152187, + [SMALL_STATE(4112)] = 152230, + [SMALL_STATE(4113)] = 152255, + [SMALL_STATE(4114)] = 152284, + [SMALL_STATE(4115)] = 152313, + [SMALL_STATE(4116)] = 152340, + [SMALL_STATE(4117)] = 152380, + [SMALL_STATE(4118)] = 152420, + [SMALL_STATE(4119)] = 152460, + [SMALL_STATE(4120)] = 152500, + [SMALL_STATE(4121)] = 152540, + [SMALL_STATE(4122)] = 152566, + [SMALL_STATE(4123)] = 152606, + [SMALL_STATE(4124)] = 152646, + [SMALL_STATE(4125)] = 152670, + [SMALL_STATE(4126)] = 152710, + [SMALL_STATE(4127)] = 152736, + [SMALL_STATE(4128)] = 152776, + [SMALL_STATE(4129)] = 152802, + [SMALL_STATE(4130)] = 152842, + [SMALL_STATE(4131)] = 152882, + [SMALL_STATE(4132)] = 152920, + [SMALL_STATE(4133)] = 152954, + [SMALL_STATE(4134)] = 152994, + [SMALL_STATE(4135)] = 153028, + [SMALL_STATE(4136)] = 153068, + [SMALL_STATE(4137)] = 153108, + [SMALL_STATE(4138)] = 153148, + [SMALL_STATE(4139)] = 153186, + [SMALL_STATE(4140)] = 153208, + [SMALL_STATE(4141)] = 153236, + [SMALL_STATE(4142)] = 153276, + [SMALL_STATE(4143)] = 153298, + [SMALL_STATE(4144)] = 153338, + [SMALL_STATE(4145)] = 153366, + [SMALL_STATE(4146)] = 153390, + [SMALL_STATE(4147)] = 153418, + [SMALL_STATE(4148)] = 153458, + [SMALL_STATE(4149)] = 153482, + [SMALL_STATE(4150)] = 153522, + [SMALL_STATE(4151)] = 153559, + [SMALL_STATE(4152)] = 153580, + [SMALL_STATE(4153)] = 153601, + [SMALL_STATE(4154)] = 153622, + [SMALL_STATE(4155)] = 153645, + [SMALL_STATE(4156)] = 153666, + [SMALL_STATE(4157)] = 153687, + [SMALL_STATE(4158)] = 153720, + [SMALL_STATE(4159)] = 153757, + [SMALL_STATE(4160)] = 153794, + [SMALL_STATE(4161)] = 153827, + [SMALL_STATE(4162)] = 153864, + [SMALL_STATE(4163)] = 153885, + [SMALL_STATE(4164)] = 153916, + [SMALL_STATE(4165)] = 153953, + [SMALL_STATE(4166)] = 153990, + [SMALL_STATE(4167)] = 154011, + [SMALL_STATE(4168)] = 154042, + [SMALL_STATE(4169)] = 154063, + [SMALL_STATE(4170)] = 154084, + [SMALL_STATE(4171)] = 154121, + [SMALL_STATE(4172)] = 154152, + [SMALL_STATE(4173)] = 154185, + [SMALL_STATE(4174)] = 154206, + [SMALL_STATE(4175)] = 154237, + [SMALL_STATE(4176)] = 154270, + [SMALL_STATE(4177)] = 154291, + [SMALL_STATE(4178)] = 154322, + [SMALL_STATE(4179)] = 154353, + [SMALL_STATE(4180)] = 154380, + [SMALL_STATE(4181)] = 154401, + [SMALL_STATE(4182)] = 154434, + [SMALL_STATE(4183)] = 154455, + [SMALL_STATE(4184)] = 154482, + [SMALL_STATE(4185)] = 154519, + [SMALL_STATE(4186)] = 154540, + [SMALL_STATE(4187)] = 154577, + [SMALL_STATE(4188)] = 154600, + [SMALL_STATE(4189)] = 154637, + [SMALL_STATE(4190)] = 154672, + [SMALL_STATE(4191)] = 154709, + [SMALL_STATE(4192)] = 154732, + [SMALL_STATE(4193)] = 154769, + [SMALL_STATE(4194)] = 154802, + [SMALL_STATE(4195)] = 154835, + [SMALL_STATE(4196)] = 154866, + [SMALL_STATE(4197)] = 154903, + [SMALL_STATE(4198)] = 154938, + [SMALL_STATE(4199)] = 154959, + [SMALL_STATE(4200)] = 154980, + [SMALL_STATE(4201)] = 155013, + [SMALL_STATE(4202)] = 155046, + [SMALL_STATE(4203)] = 155083, + [SMALL_STATE(4204)] = 155104, + [SMALL_STATE(4205)] = 155137, + [SMALL_STATE(4206)] = 155158, + [SMALL_STATE(4207)] = 155179, + [SMALL_STATE(4208)] = 155202, + [SMALL_STATE(4209)] = 155223, + [SMALL_STATE(4210)] = 155244, + [SMALL_STATE(4211)] = 155265, + [SMALL_STATE(4212)] = 155292, + [SMALL_STATE(4213)] = 155317, + [SMALL_STATE(4214)] = 155340, + [SMALL_STATE(4215)] = 155363, + [SMALL_STATE(4216)] = 155396, + [SMALL_STATE(4217)] = 155417, + [SMALL_STATE(4218)] = 155450, + [SMALL_STATE(4219)] = 155471, + [SMALL_STATE(4220)] = 155504, + [SMALL_STATE(4221)] = 155525, + [SMALL_STATE(4222)] = 155546, + [SMALL_STATE(4223)] = 155567, + [SMALL_STATE(4224)] = 155600, + [SMALL_STATE(4225)] = 155637, + [SMALL_STATE(4226)] = 155672, + [SMALL_STATE(4227)] = 155709, + [SMALL_STATE(4228)] = 155730, + [SMALL_STATE(4229)] = 155767, + [SMALL_STATE(4230)] = 155804, + [SMALL_STATE(4231)] = 155841, + [SMALL_STATE(4232)] = 155878, + [SMALL_STATE(4233)] = 155899, + [SMALL_STATE(4234)] = 155936, + [SMALL_STATE(4235)] = 155969, + [SMALL_STATE(4236)] = 156006, + [SMALL_STATE(4237)] = 156027, + [SMALL_STATE(4238)] = 156048, + [SMALL_STATE(4239)] = 156081, + [SMALL_STATE(4240)] = 156114, + [SMALL_STATE(4241)] = 156151, + [SMALL_STATE(4242)] = 156188, + [SMALL_STATE(4243)] = 156221, + [SMALL_STATE(4244)] = 156254, + [SMALL_STATE(4245)] = 156291, + [SMALL_STATE(4246)] = 156324, + [SMALL_STATE(4247)] = 156357, + [SMALL_STATE(4248)] = 156378, + [SMALL_STATE(4249)] = 156411, + [SMALL_STATE(4250)] = 156432, + [SMALL_STATE(4251)] = 156469, + [SMALL_STATE(4252)] = 156506, + [SMALL_STATE(4253)] = 156535, + [SMALL_STATE(4254)] = 156566, + [SMALL_STATE(4255)] = 156587, + [SMALL_STATE(4256)] = 156616, + [SMALL_STATE(4257)] = 156637, + [SMALL_STATE(4258)] = 156664, + [SMALL_STATE(4259)] = 156701, + [SMALL_STATE(4260)] = 156722, + [SMALL_STATE(4261)] = 156743, + [SMALL_STATE(4262)] = 156780, + [SMALL_STATE(4263)] = 156801, + [SMALL_STATE(4264)] = 156822, + [SMALL_STATE(4265)] = 156855, + [SMALL_STATE(4266)] = 156882, + [SMALL_STATE(4267)] = 156919, + [SMALL_STATE(4268)] = 156956, + [SMALL_STATE(4269)] = 156987, + [SMALL_STATE(4270)] = 157020, + [SMALL_STATE(4271)] = 157057, + [SMALL_STATE(4272)] = 157090, + [SMALL_STATE(4273)] = 157111, + [SMALL_STATE(4274)] = 157132, + [SMALL_STATE(4275)] = 157165, + [SMALL_STATE(4276)] = 157202, + [SMALL_STATE(4277)] = 157239, + [SMALL_STATE(4278)] = 157260, + [SMALL_STATE(4279)] = 157293, + [SMALL_STATE(4280)] = 157326, + [SMALL_STATE(4281)] = 157359, + [SMALL_STATE(4282)] = 157396, + [SMALL_STATE(4283)] = 157429, + [SMALL_STATE(4284)] = 157466, + [SMALL_STATE(4285)] = 157497, + [SMALL_STATE(4286)] = 157528, + [SMALL_STATE(4287)] = 157549, + [SMALL_STATE(4288)] = 157586, + [SMALL_STATE(4289)] = 157607, + [SMALL_STATE(4290)] = 157628, + [SMALL_STATE(4291)] = 157651, + [SMALL_STATE(4292)] = 157672, + [SMALL_STATE(4293)] = 157709, + [SMALL_STATE(4294)] = 157730, + [SMALL_STATE(4295)] = 157751, + [SMALL_STATE(4296)] = 157782, + [SMALL_STATE(4297)] = 157803, + [SMALL_STATE(4298)] = 157824, + [SMALL_STATE(4299)] = 157845, + [SMALL_STATE(4300)] = 157878, + [SMALL_STATE(4301)] = 157913, + [SMALL_STATE(4302)] = 157946, + [SMALL_STATE(4303)] = 157969, + [SMALL_STATE(4304)] = 157994, + [SMALL_STATE(4305)] = 158015, + [SMALL_STATE(4306)] = 158036, + [SMALL_STATE(4307)] = 158073, + [SMALL_STATE(4308)] = 158094, + [SMALL_STATE(4309)] = 158125, + [SMALL_STATE(4310)] = 158158, + [SMALL_STATE(4311)] = 158185, + [SMALL_STATE(4312)] = 158206, + [SMALL_STATE(4313)] = 158233, + [SMALL_STATE(4314)] = 158270, + [SMALL_STATE(4315)] = 158301, + [SMALL_STATE(4316)] = 158338, + [SMALL_STATE(4317)] = 158361, + [SMALL_STATE(4318)] = 158398, + [SMALL_STATE(4319)] = 158419, + [SMALL_STATE(4320)] = 158442, + [SMALL_STATE(4321)] = 158463, + [SMALL_STATE(4322)] = 158500, + [SMALL_STATE(4323)] = 158537, + [SMALL_STATE(4324)] = 158562, + [SMALL_STATE(4325)] = 158599, + [SMALL_STATE(4326)] = 158636, + [SMALL_STATE(4327)] = 158673, + [SMALL_STATE(4328)] = 158710, + [SMALL_STATE(4329)] = 158747, + [SMALL_STATE(4330)] = 158784, + [SMALL_STATE(4331)] = 158817, + [SMALL_STATE(4332)] = 158854, + [SMALL_STATE(4333)] = 158891, + [SMALL_STATE(4334)] = 158928, + [SMALL_STATE(4335)] = 158951, + [SMALL_STATE(4336)] = 158984, + [SMALL_STATE(4337)] = 159017, + [SMALL_STATE(4338)] = 159050, + [SMALL_STATE(4339)] = 159071, + [SMALL_STATE(4340)] = 159104, + [SMALL_STATE(4341)] = 159125, + [SMALL_STATE(4342)] = 159146, + [SMALL_STATE(4343)] = 159167, + [SMALL_STATE(4344)] = 159204, + [SMALL_STATE(4345)] = 159237, + [SMALL_STATE(4346)] = 159263, + [SMALL_STATE(4347)] = 159295, + [SMALL_STATE(4348)] = 159323, + [SMALL_STATE(4349)] = 159351, + [SMALL_STATE(4350)] = 159379, + [SMALL_STATE(4351)] = 159405, + [SMALL_STATE(4352)] = 159427, + [SMALL_STATE(4353)] = 159459, + [SMALL_STATE(4354)] = 159485, + [SMALL_STATE(4355)] = 159513, + [SMALL_STATE(4356)] = 159545, + [SMALL_STATE(4357)] = 159571, + [SMALL_STATE(4358)] = 159597, + [SMALL_STATE(4359)] = 159629, + [SMALL_STATE(4360)] = 159663, + [SMALL_STATE(4361)] = 159683, + [SMALL_STATE(4362)] = 159717, + [SMALL_STATE(4363)] = 159737, + [SMALL_STATE(4364)] = 159765, + [SMALL_STATE(4365)] = 159799, + [SMALL_STATE(4366)] = 159827, + [SMALL_STATE(4367)] = 159849, + [SMALL_STATE(4368)] = 159881, + [SMALL_STATE(4369)] = 159915, + [SMALL_STATE(4370)] = 159943, + [SMALL_STATE(4371)] = 159971, + [SMALL_STATE(4372)] = 159999, + [SMALL_STATE(4373)] = 160029, + [SMALL_STATE(4374)] = 160061, + [SMALL_STATE(4375)] = 160093, + [SMALL_STATE(4376)] = 160127, + [SMALL_STATE(4377)] = 160161, + [SMALL_STATE(4378)] = 160195, + [SMALL_STATE(4379)] = 160221, + [SMALL_STATE(4380)] = 160247, + [SMALL_STATE(4381)] = 160269, + [SMALL_STATE(4382)] = 160303, + [SMALL_STATE(4383)] = 160330, + [SMALL_STATE(4384)] = 160357, + [SMALL_STATE(4385)] = 160388, + [SMALL_STATE(4386)] = 160415, + [SMALL_STATE(4387)] = 160442, + [SMALL_STATE(4388)] = 160469, + [SMALL_STATE(4389)] = 160500, + [SMALL_STATE(4390)] = 160523, + [SMALL_STATE(4391)] = 160546, + [SMALL_STATE(4392)] = 160569, + [SMALL_STATE(4393)] = 160598, + [SMALL_STATE(4394)] = 160625, + [SMALL_STATE(4395)] = 160652, + [SMALL_STATE(4396)] = 160683, + [SMALL_STATE(4397)] = 160714, + [SMALL_STATE(4398)] = 160737, + [SMALL_STATE(4399)] = 160760, + [SMALL_STATE(4400)] = 160779, + [SMALL_STATE(4401)] = 160806, + [SMALL_STATE(4402)] = 160833, + [SMALL_STATE(4403)] = 160860, + [SMALL_STATE(4404)] = 160883, + [SMALL_STATE(4405)] = 160910, + [SMALL_STATE(4406)] = 160941, + [SMALL_STATE(4407)] = 160968, + [SMALL_STATE(4408)] = 160989, + [SMALL_STATE(4409)] = 161016, + [SMALL_STATE(4410)] = 161043, + [SMALL_STATE(4411)] = 161070, + [SMALL_STATE(4412)] = 161101, + [SMALL_STATE(4413)] = 161128, + [SMALL_STATE(4414)] = 161155, + [SMALL_STATE(4415)] = 161182, + [SMALL_STATE(4416)] = 161209, + [SMALL_STATE(4417)] = 161236, + [SMALL_STATE(4418)] = 161263, + [SMALL_STATE(4419)] = 161294, + [SMALL_STATE(4420)] = 161321, + [SMALL_STATE(4421)] = 161348, + [SMALL_STATE(4422)] = 161379, + [SMALL_STATE(4423)] = 161406, + [SMALL_STATE(4424)] = 161437, + [SMALL_STATE(4425)] = 161464, + [SMALL_STATE(4426)] = 161493, + [SMALL_STATE(4427)] = 161524, + [SMALL_STATE(4428)] = 161555, + [SMALL_STATE(4429)] = 161584, + [SMALL_STATE(4430)] = 161615, + [SMALL_STATE(4431)] = 161646, + [SMALL_STATE(4432)] = 161671, + [SMALL_STATE(4433)] = 161698, + [SMALL_STATE(4434)] = 161729, + [SMALL_STATE(4435)] = 161756, + [SMALL_STATE(4436)] = 161787, + [SMALL_STATE(4437)] = 161814, + [SMALL_STATE(4438)] = 161845, + [SMALL_STATE(4439)] = 161876, + [SMALL_STATE(4440)] = 161907, + [SMALL_STATE(4441)] = 161938, + [SMALL_STATE(4442)] = 161969, + [SMALL_STATE(4443)] = 161988, + [SMALL_STATE(4444)] = 162015, + [SMALL_STATE(4445)] = 162046, + [SMALL_STATE(4446)] = 162077, + [SMALL_STATE(4447)] = 162108, + [SMALL_STATE(4448)] = 162139, + [SMALL_STATE(4449)] = 162170, + [SMALL_STATE(4450)] = 162197, + [SMALL_STATE(4451)] = 162228, + [SMALL_STATE(4452)] = 162247, + [SMALL_STATE(4453)] = 162274, + [SMALL_STATE(4454)] = 162301, + [SMALL_STATE(4455)] = 162332, + [SMALL_STATE(4456)] = 162363, + [SMALL_STATE(4457)] = 162392, + [SMALL_STATE(4458)] = 162421, + [SMALL_STATE(4459)] = 162448, + [SMALL_STATE(4460)] = 162475, + [SMALL_STATE(4461)] = 162506, + [SMALL_STATE(4462)] = 162525, + [SMALL_STATE(4463)] = 162552, + [SMALL_STATE(4464)] = 162579, + [SMALL_STATE(4465)] = 162606, + [SMALL_STATE(4466)] = 162637, + [SMALL_STATE(4467)] = 162664, + [SMALL_STATE(4468)] = 162687, + [SMALL_STATE(4469)] = 162706, + [SMALL_STATE(4470)] = 162735, + [SMALL_STATE(4471)] = 162754, + [SMALL_STATE(4472)] = 162785, + [SMALL_STATE(4473)] = 162812, + [SMALL_STATE(4474)] = 162839, + [SMALL_STATE(4475)] = 162862, + [SMALL_STATE(4476)] = 162885, + [SMALL_STATE(4477)] = 162916, + [SMALL_STATE(4478)] = 162943, + [SMALL_STATE(4479)] = 162972, + [SMALL_STATE(4480)] = 163003, + [SMALL_STATE(4481)] = 163034, + [SMALL_STATE(4482)] = 163061, + [SMALL_STATE(4483)] = 163092, + [SMALL_STATE(4484)] = 163113, + [SMALL_STATE(4485)] = 163140, + [SMALL_STATE(4486)] = 163163, + [SMALL_STATE(4487)] = 163190, + [SMALL_STATE(4488)] = 163221, + [SMALL_STATE(4489)] = 163252, + [SMALL_STATE(4490)] = 163279, + [SMALL_STATE(4491)] = 163310, + [SMALL_STATE(4492)] = 163341, + [SMALL_STATE(4493)] = 163368, + [SMALL_STATE(4494)] = 163387, + [SMALL_STATE(4495)] = 163414, + [SMALL_STATE(4496)] = 163441, + [SMALL_STATE(4497)] = 163468, + [SMALL_STATE(4498)] = 163491, + [SMALL_STATE(4499)] = 163512, + [SMALL_STATE(4500)] = 163543, + [SMALL_STATE(4501)] = 163574, + [SMALL_STATE(4502)] = 163601, + [SMALL_STATE(4503)] = 163632, + [SMALL_STATE(4504)] = 163655, + [SMALL_STATE(4505)] = 163682, + [SMALL_STATE(4506)] = 163709, + [SMALL_STATE(4507)] = 163728, + [SMALL_STATE(4508)] = 163759, + [SMALL_STATE(4509)] = 163790, + [SMALL_STATE(4510)] = 163819, + [SMALL_STATE(4511)] = 163848, + [SMALL_STATE(4512)] = 163877, + [SMALL_STATE(4513)] = 163908, + [SMALL_STATE(4514)] = 163939, + [SMALL_STATE(4515)] = 163966, + [SMALL_STATE(4516)] = 163989, + [SMALL_STATE(4517)] = 164020, + [SMALL_STATE(4518)] = 164051, + [SMALL_STATE(4519)] = 164080, + [SMALL_STATE(4520)] = 164107, + [SMALL_STATE(4521)] = 164138, + [SMALL_STATE(4522)] = 164169, + [SMALL_STATE(4523)] = 164188, + [SMALL_STATE(4524)] = 164207, + [SMALL_STATE(4525)] = 164230, + [SMALL_STATE(4526)] = 164261, + [SMALL_STATE(4527)] = 164292, + [SMALL_STATE(4528)] = 164319, + [SMALL_STATE(4529)] = 164350, + [SMALL_STATE(4530)] = 164377, + [SMALL_STATE(4531)] = 164408, + [SMALL_STATE(4532)] = 164435, + [SMALL_STATE(4533)] = 164454, + [SMALL_STATE(4534)] = 164473, + [SMALL_STATE(4535)] = 164504, + [SMALL_STATE(4536)] = 164535, + [SMALL_STATE(4537)] = 164566, + [SMALL_STATE(4538)] = 164593, + [SMALL_STATE(4539)] = 164624, + [SMALL_STATE(4540)] = 164651, + [SMALL_STATE(4541)] = 164678, + [SMALL_STATE(4542)] = 164709, + [SMALL_STATE(4543)] = 164736, + [SMALL_STATE(4544)] = 164763, + [SMALL_STATE(4545)] = 164790, + [SMALL_STATE(4546)] = 164821, + [SMALL_STATE(4547)] = 164852, + [SMALL_STATE(4548)] = 164875, + [SMALL_STATE(4549)] = 164906, + [SMALL_STATE(4550)] = 164933, + [SMALL_STATE(4551)] = 164964, + [SMALL_STATE(4552)] = 164995, + [SMALL_STATE(4553)] = 165022, + [SMALL_STATE(4554)] = 165053, + [SMALL_STATE(4555)] = 165080, + [SMALL_STATE(4556)] = 165099, + [SMALL_STATE(4557)] = 165126, + [SMALL_STATE(4558)] = 165145, + [SMALL_STATE(4559)] = 165172, + [SMALL_STATE(4560)] = 165193, + [SMALL_STATE(4561)] = 165224, + [SMALL_STATE(4562)] = 165243, + [SMALL_STATE(4563)] = 165274, + [SMALL_STATE(4564)] = 165301, + [SMALL_STATE(4565)] = 165328, + [SMALL_STATE(4566)] = 165355, + [SMALL_STATE(4567)] = 165386, + [SMALL_STATE(4568)] = 165413, + [SMALL_STATE(4569)] = 165440, + [SMALL_STATE(4570)] = 165459, + [SMALL_STATE(4571)] = 165490, + [SMALL_STATE(4572)] = 165517, + [SMALL_STATE(4573)] = 165540, + [SMALL_STATE(4574)] = 165567, + [SMALL_STATE(4575)] = 165590, + [SMALL_STATE(4576)] = 165621, + [SMALL_STATE(4577)] = 165648, + [SMALL_STATE(4578)] = 165671, + [SMALL_STATE(4579)] = 165694, + [SMALL_STATE(4580)] = 165721, + [SMALL_STATE(4581)] = 165748, + [SMALL_STATE(4582)] = 165775, + [SMALL_STATE(4583)] = 165804, + [SMALL_STATE(4584)] = 165831, + [SMALL_STATE(4585)] = 165858, + [SMALL_STATE(4586)] = 165887, + [SMALL_STATE(4587)] = 165914, + [SMALL_STATE(4588)] = 165937, + [SMALL_STATE(4589)] = 165968, + [SMALL_STATE(4590)] = 165995, + [SMALL_STATE(4591)] = 166014, + [SMALL_STATE(4592)] = 166033, + [SMALL_STATE(4593)] = 166060, + [SMALL_STATE(4594)] = 166079, + [SMALL_STATE(4595)] = 166102, + [SMALL_STATE(4596)] = 166131, + [SMALL_STATE(4597)] = 166162, + [SMALL_STATE(4598)] = 166185, + [SMALL_STATE(4599)] = 166216, + [SMALL_STATE(4600)] = 166243, + [SMALL_STATE(4601)] = 166270, + [SMALL_STATE(4602)] = 166291, + [SMALL_STATE(4603)] = 166314, + [SMALL_STATE(4604)] = 166345, + [SMALL_STATE(4605)] = 166368, + [SMALL_STATE(4606)] = 166391, + [SMALL_STATE(4607)] = 166422, + [SMALL_STATE(4608)] = 166449, + [SMALL_STATE(4609)] = 166476, + [SMALL_STATE(4610)] = 166507, + [SMALL_STATE(4611)] = 166534, + [SMALL_STATE(4612)] = 166561, + [SMALL_STATE(4613)] = 166588, + [SMALL_STATE(4614)] = 166615, + [SMALL_STATE(4615)] = 166636, + [SMALL_STATE(4616)] = 166665, + [SMALL_STATE(4617)] = 166692, + [SMALL_STATE(4618)] = 166719, + [SMALL_STATE(4619)] = 166748, + [SMALL_STATE(4620)] = 166775, + [SMALL_STATE(4621)] = 166802, + [SMALL_STATE(4622)] = 166829, + [SMALL_STATE(4623)] = 166860, + [SMALL_STATE(4624)] = 166889, + [SMALL_STATE(4625)] = 166920, + [SMALL_STATE(4626)] = 166945, + [SMALL_STATE(4627)] = 166968, + [SMALL_STATE(4628)] = 166991, + [SMALL_STATE(4629)] = 167018, + [SMALL_STATE(4630)] = 167037, + [SMALL_STATE(4631)] = 167068, + [SMALL_STATE(4632)] = 167095, + [SMALL_STATE(4633)] = 167122, + [SMALL_STATE(4634)] = 167145, + [SMALL_STATE(4635)] = 167174, + [SMALL_STATE(4636)] = 167193, + [SMALL_STATE(4637)] = 167212, + [SMALL_STATE(4638)] = 167243, + [SMALL_STATE(4639)] = 167274, + [SMALL_STATE(4640)] = 167293, + [SMALL_STATE(4641)] = 167312, + [SMALL_STATE(4642)] = 167339, + [SMALL_STATE(4643)] = 167358, + [SMALL_STATE(4644)] = 167381, + [SMALL_STATE(4645)] = 167400, + [SMALL_STATE(4646)] = 167431, + [SMALL_STATE(4647)] = 167450, + [SMALL_STATE(4648)] = 167469, + [SMALL_STATE(4649)] = 167496, + [SMALL_STATE(4650)] = 167523, + [SMALL_STATE(4651)] = 167544, + [SMALL_STATE(4652)] = 167575, + [SMALL_STATE(4653)] = 167601, + [SMALL_STATE(4654)] = 167627, + [SMALL_STATE(4655)] = 167649, + [SMALL_STATE(4656)] = 167671, + [SMALL_STATE(4657)] = 167693, + [SMALL_STATE(4658)] = 167713, + [SMALL_STATE(4659)] = 167741, + [SMALL_STATE(4660)] = 167763, + [SMALL_STATE(4661)] = 167781, + [SMALL_STATE(4662)] = 167809, + [SMALL_STATE(4663)] = 167831, + [SMALL_STATE(4664)] = 167849, + [SMALL_STATE(4665)] = 167877, + [SMALL_STATE(4666)] = 167895, + [SMALL_STATE(4667)] = 167913, + [SMALL_STATE(4668)] = 167941, + [SMALL_STATE(4669)] = 167963, + [SMALL_STATE(4670)] = 167991, + [SMALL_STATE(4671)] = 168013, + [SMALL_STATE(4672)] = 168035, + [SMALL_STATE(4673)] = 168063, + [SMALL_STATE(4674)] = 168085, + [SMALL_STATE(4675)] = 168107, + [SMALL_STATE(4676)] = 168133, + [SMALL_STATE(4677)] = 168159, + [SMALL_STATE(4678)] = 168181, + [SMALL_STATE(4679)] = 168209, + [SMALL_STATE(4680)] = 168231, + [SMALL_STATE(4681)] = 168259, + [SMALL_STATE(4682)] = 168287, + [SMALL_STATE(4683)] = 168315, + [SMALL_STATE(4684)] = 168343, + [SMALL_STATE(4685)] = 168371, + [SMALL_STATE(4686)] = 168393, + [SMALL_STATE(4687)] = 168421, + [SMALL_STATE(4688)] = 168443, + [SMALL_STATE(4689)] = 168461, + [SMALL_STATE(4690)] = 168489, + [SMALL_STATE(4691)] = 168517, + [SMALL_STATE(4692)] = 168545, + [SMALL_STATE(4693)] = 168571, + [SMALL_STATE(4694)] = 168599, + [SMALL_STATE(4695)] = 168625, + [SMALL_STATE(4696)] = 168653, + [SMALL_STATE(4697)] = 168675, + [SMALL_STATE(4698)] = 168703, + [SMALL_STATE(4699)] = 168725, + [SMALL_STATE(4700)] = 168751, + [SMALL_STATE(4701)] = 168775, + [SMALL_STATE(4702)] = 168797, + [SMALL_STATE(4703)] = 168825, + [SMALL_STATE(4704)] = 168853, + [SMALL_STATE(4705)] = 168875, + [SMALL_STATE(4706)] = 168897, + [SMALL_STATE(4707)] = 168925, + [SMALL_STATE(4708)] = 168953, + [SMALL_STATE(4709)] = 168981, + [SMALL_STATE(4710)] = 168999, + [SMALL_STATE(4711)] = 169027, + [SMALL_STATE(4712)] = 169055, + [SMALL_STATE(4713)] = 169083, + [SMALL_STATE(4714)] = 169111, + [SMALL_STATE(4715)] = 169139, + [SMALL_STATE(4716)] = 169157, + [SMALL_STATE(4717)] = 169185, + [SMALL_STATE(4718)] = 169213, + [SMALL_STATE(4719)] = 169241, + [SMALL_STATE(4720)] = 169269, + [SMALL_STATE(4721)] = 169291, + [SMALL_STATE(4722)] = 169319, + [SMALL_STATE(4723)] = 169347, + [SMALL_STATE(4724)] = 169375, + [SMALL_STATE(4725)] = 169403, + [SMALL_STATE(4726)] = 169425, + [SMALL_STATE(4727)] = 169447, + [SMALL_STATE(4728)] = 169473, + [SMALL_STATE(4729)] = 169501, + [SMALL_STATE(4730)] = 169523, + [SMALL_STATE(4731)] = 169545, + [SMALL_STATE(4732)] = 169573, + [SMALL_STATE(4733)] = 169601, + [SMALL_STATE(4734)] = 169627, + [SMALL_STATE(4735)] = 169655, + [SMALL_STATE(4736)] = 169681, + [SMALL_STATE(4737)] = 169709, + [SMALL_STATE(4738)] = 169737, + [SMALL_STATE(4739)] = 169759, + [SMALL_STATE(4740)] = 169785, + [SMALL_STATE(4741)] = 169807, + [SMALL_STATE(4742)] = 169835, + [SMALL_STATE(4743)] = 169863, + [SMALL_STATE(4744)] = 169889, + [SMALL_STATE(4745)] = 169911, + [SMALL_STATE(4746)] = 169939, + [SMALL_STATE(4747)] = 169961, + [SMALL_STATE(4748)] = 169983, + [SMALL_STATE(4749)] = 170009, + [SMALL_STATE(4750)] = 170037, + [SMALL_STATE(4751)] = 170059, + [SMALL_STATE(4752)] = 170085, + [SMALL_STATE(4753)] = 170113, + [SMALL_STATE(4754)] = 170135, + [SMALL_STATE(4755)] = 170163, + [SMALL_STATE(4756)] = 170189, + [SMALL_STATE(4757)] = 170211, + [SMALL_STATE(4758)] = 170231, + [SMALL_STATE(4759)] = 170259, + [SMALL_STATE(4760)] = 170281, + [SMALL_STATE(4761)] = 170309, + [SMALL_STATE(4762)] = 170337, + [SMALL_STATE(4763)] = 170365, + [SMALL_STATE(4764)] = 170391, + [SMALL_STATE(4765)] = 170417, + [SMALL_STATE(4766)] = 170439, + [SMALL_STATE(4767)] = 170457, + [SMALL_STATE(4768)] = 170485, + [SMALL_STATE(4769)] = 170507, + [SMALL_STATE(4770)] = 170535, + [SMALL_STATE(4771)] = 170563, + [SMALL_STATE(4772)] = 170585, + [SMALL_STATE(4773)] = 170613, + [SMALL_STATE(4774)] = 170635, + [SMALL_STATE(4775)] = 170661, + [SMALL_STATE(4776)] = 170683, + [SMALL_STATE(4777)] = 170705, + [SMALL_STATE(4778)] = 170733, + [SMALL_STATE(4779)] = 170761, + [SMALL_STATE(4780)] = 170789, + [SMALL_STATE(4781)] = 170815, + [SMALL_STATE(4782)] = 170843, + [SMALL_STATE(4783)] = 170861, + [SMALL_STATE(4784)] = 170881, + [SMALL_STATE(4785)] = 170899, + [SMALL_STATE(4786)] = 170921, + [SMALL_STATE(4787)] = 170943, + [SMALL_STATE(4788)] = 170971, + [SMALL_STATE(4789)] = 170993, + [SMALL_STATE(4790)] = 171011, + [SMALL_STATE(4791)] = 171033, + [SMALL_STATE(4792)] = 171053, + [SMALL_STATE(4793)] = 171073, + [SMALL_STATE(4794)] = 171095, + [SMALL_STATE(4795)] = 171123, + [SMALL_STATE(4796)] = 171151, + [SMALL_STATE(4797)] = 171177, + [SMALL_STATE(4798)] = 171199, + [SMALL_STATE(4799)] = 171221, + [SMALL_STATE(4800)] = 171249, + [SMALL_STATE(4801)] = 171271, + [SMALL_STATE(4802)] = 171293, + [SMALL_STATE(4803)] = 171321, + [SMALL_STATE(4804)] = 171343, + [SMALL_STATE(4805)] = 171371, + [SMALL_STATE(4806)] = 171399, + [SMALL_STATE(4807)] = 171427, + [SMALL_STATE(4808)] = 171455, + [SMALL_STATE(4809)] = 171479, + [SMALL_STATE(4810)] = 171501, + [SMALL_STATE(4811)] = 171519, + [SMALL_STATE(4812)] = 171541, + [SMALL_STATE(4813)] = 171563, + [SMALL_STATE(4814)] = 171591, + [SMALL_STATE(4815)] = 171617, + [SMALL_STATE(4816)] = 171639, + [SMALL_STATE(4817)] = 171667, + [SMALL_STATE(4818)] = 171695, + [SMALL_STATE(4819)] = 171723, + [SMALL_STATE(4820)] = 171745, + [SMALL_STATE(4821)] = 171769, + [SMALL_STATE(4822)] = 171797, + [SMALL_STATE(4823)] = 171819, + [SMALL_STATE(4824)] = 171841, + [SMALL_STATE(4825)] = 171869, + [SMALL_STATE(4826)] = 171887, + [SMALL_STATE(4827)] = 171909, + [SMALL_STATE(4828)] = 171937, + [SMALL_STATE(4829)] = 171965, + [SMALL_STATE(4830)] = 171993, + [SMALL_STATE(4831)] = 172013, + [SMALL_STATE(4832)] = 172039, + [SMALL_STATE(4833)] = 172067, + [SMALL_STATE(4834)] = 172093, + [SMALL_STATE(4835)] = 172111, + [SMALL_STATE(4836)] = 172133, + [SMALL_STATE(4837)] = 172161, + [SMALL_STATE(4838)] = 172183, + [SMALL_STATE(4839)] = 172205, + [SMALL_STATE(4840)] = 172225, + [SMALL_STATE(4841)] = 172245, + [SMALL_STATE(4842)] = 172265, + [SMALL_STATE(4843)] = 172293, + [SMALL_STATE(4844)] = 172315, + [SMALL_STATE(4845)] = 172341, + [SMALL_STATE(4846)] = 172367, + [SMALL_STATE(4847)] = 172388, + [SMALL_STATE(4848)] = 172413, + [SMALL_STATE(4849)] = 172436, + [SMALL_STATE(4850)] = 172457, + [SMALL_STATE(4851)] = 172474, + [SMALL_STATE(4852)] = 172491, + [SMALL_STATE(4853)] = 172516, + [SMALL_STATE(4854)] = 172539, + [SMALL_STATE(4855)] = 172564, + [SMALL_STATE(4856)] = 172589, + [SMALL_STATE(4857)] = 172610, + [SMALL_STATE(4858)] = 172635, + [SMALL_STATE(4859)] = 172652, + [SMALL_STATE(4860)] = 172671, + [SMALL_STATE(4861)] = 172696, + [SMALL_STATE(4862)] = 172713, + [SMALL_STATE(4863)] = 172730, + [SMALL_STATE(4864)] = 172751, + [SMALL_STATE(4865)] = 172772, + [SMALL_STATE(4866)] = 172789, + [SMALL_STATE(4867)] = 172806, + [SMALL_STATE(4868)] = 172823, + [SMALL_STATE(4869)] = 172848, + [SMALL_STATE(4870)] = 172873, + [SMALL_STATE(4871)] = 172890, + [SMALL_STATE(4872)] = 172907, + [SMALL_STATE(4873)] = 172924, + [SMALL_STATE(4874)] = 172947, + [SMALL_STATE(4875)] = 172964, + [SMALL_STATE(4876)] = 172981, + [SMALL_STATE(4877)] = 173002, + [SMALL_STATE(4878)] = 173023, + [SMALL_STATE(4879)] = 173046, + [SMALL_STATE(4880)] = 173063, + [SMALL_STATE(4881)] = 173080, + [SMALL_STATE(4882)] = 173101, + [SMALL_STATE(4883)] = 173118, + [SMALL_STATE(4884)] = 173139, + [SMALL_STATE(4885)] = 173156, + [SMALL_STATE(4886)] = 173181, + [SMALL_STATE(4887)] = 173200, + [SMALL_STATE(4888)] = 173217, + [SMALL_STATE(4889)] = 173238, + [SMALL_STATE(4890)] = 173259, + [SMALL_STATE(4891)] = 173276, + [SMALL_STATE(4892)] = 173293, + [SMALL_STATE(4893)] = 173314, + [SMALL_STATE(4894)] = 173335, + [SMALL_STATE(4895)] = 173352, + [SMALL_STATE(4896)] = 173369, + [SMALL_STATE(4897)] = 173386, + [SMALL_STATE(4898)] = 173403, + [SMALL_STATE(4899)] = 173428, + [SMALL_STATE(4900)] = 173445, + [SMALL_STATE(4901)] = 173466, + [SMALL_STATE(4902)] = 173483, + [SMALL_STATE(4903)] = 173500, + [SMALL_STATE(4904)] = 173517, + [SMALL_STATE(4905)] = 173534, + [SMALL_STATE(4906)] = 173551, + [SMALL_STATE(4907)] = 173568, + [SMALL_STATE(4908)] = 173589, + [SMALL_STATE(4909)] = 173610, + [SMALL_STATE(4910)] = 173627, + [SMALL_STATE(4911)] = 173652, + [SMALL_STATE(4912)] = 173677, + [SMALL_STATE(4913)] = 173698, + [SMALL_STATE(4914)] = 173715, + [SMALL_STATE(4915)] = 173732, + [SMALL_STATE(4916)] = 173749, + [SMALL_STATE(4917)] = 173766, + [SMALL_STATE(4918)] = 173787, + [SMALL_STATE(4919)] = 173804, + [SMALL_STATE(4920)] = 173821, + [SMALL_STATE(4921)] = 173838, + [SMALL_STATE(4922)] = 173855, + [SMALL_STATE(4923)] = 173872, + [SMALL_STATE(4924)] = 173889, + [SMALL_STATE(4925)] = 173906, + [SMALL_STATE(4926)] = 173923, + [SMALL_STATE(4927)] = 173940, + [SMALL_STATE(4928)] = 173957, + [SMALL_STATE(4929)] = 173974, + [SMALL_STATE(4930)] = 173991, + [SMALL_STATE(4931)] = 174008, + [SMALL_STATE(4932)] = 174025, + [SMALL_STATE(4933)] = 174042, + [SMALL_STATE(4934)] = 174063, + [SMALL_STATE(4935)] = 174084, + [SMALL_STATE(4936)] = 174101, + [SMALL_STATE(4937)] = 174122, + [SMALL_STATE(4938)] = 174143, + [SMALL_STATE(4939)] = 174160, + [SMALL_STATE(4940)] = 174177, + [SMALL_STATE(4941)] = 174194, + [SMALL_STATE(4942)] = 174211, + [SMALL_STATE(4943)] = 174228, + [SMALL_STATE(4944)] = 174249, + [SMALL_STATE(4945)] = 174270, + [SMALL_STATE(4946)] = 174287, + [SMALL_STATE(4947)] = 174304, + [SMALL_STATE(4948)] = 174325, + [SMALL_STATE(4949)] = 174346, + [SMALL_STATE(4950)] = 174363, + [SMALL_STATE(4951)] = 174384, + [SMALL_STATE(4952)] = 174409, + [SMALL_STATE(4953)] = 174426, + [SMALL_STATE(4954)] = 174451, + [SMALL_STATE(4955)] = 174476, + [SMALL_STATE(4956)] = 174493, + [SMALL_STATE(4957)] = 174510, + [SMALL_STATE(4958)] = 174535, + [SMALL_STATE(4959)] = 174556, + [SMALL_STATE(4960)] = 174573, + [SMALL_STATE(4961)] = 174598, + [SMALL_STATE(4962)] = 174615, + [SMALL_STATE(4963)] = 174636, + [SMALL_STATE(4964)] = 174653, + [SMALL_STATE(4965)] = 174670, + [SMALL_STATE(4966)] = 174691, + [SMALL_STATE(4967)] = 174712, + [SMALL_STATE(4968)] = 174733, + [SMALL_STATE(4969)] = 174752, + [SMALL_STATE(4970)] = 174777, + [SMALL_STATE(4971)] = 174800, + [SMALL_STATE(4972)] = 174821, + [SMALL_STATE(4973)] = 174838, + [SMALL_STATE(4974)] = 174855, + [SMALL_STATE(4975)] = 174880, + [SMALL_STATE(4976)] = 174897, + [SMALL_STATE(4977)] = 174922, + [SMALL_STATE(4978)] = 174943, + [SMALL_STATE(4979)] = 174968, + [SMALL_STATE(4980)] = 174993, + [SMALL_STATE(4981)] = 175014, + [SMALL_STATE(4982)] = 175031, + [SMALL_STATE(4983)] = 175048, + [SMALL_STATE(4984)] = 175065, + [SMALL_STATE(4985)] = 175082, + [SMALL_STATE(4986)] = 175099, + [SMALL_STATE(4987)] = 175116, + [SMALL_STATE(4988)] = 175133, + [SMALL_STATE(4989)] = 175150, + [SMALL_STATE(4990)] = 175171, + [SMALL_STATE(4991)] = 175192, + [SMALL_STATE(4992)] = 175209, + [SMALL_STATE(4993)] = 175226, + [SMALL_STATE(4994)] = 175243, + [SMALL_STATE(4995)] = 175264, + [SMALL_STATE(4996)] = 175289, + [SMALL_STATE(4997)] = 175308, + [SMALL_STATE(4998)] = 175329, + [SMALL_STATE(4999)] = 175346, + [SMALL_STATE(5000)] = 175367, + [SMALL_STATE(5001)] = 175384, + [SMALL_STATE(5002)] = 175409, + [SMALL_STATE(5003)] = 175430, + [SMALL_STATE(5004)] = 175451, + [SMALL_STATE(5005)] = 175476, + [SMALL_STATE(5006)] = 175497, + [SMALL_STATE(5007)] = 175522, + [SMALL_STATE(5008)] = 175547, + [SMALL_STATE(5009)] = 175572, + [SMALL_STATE(5010)] = 175589, + [SMALL_STATE(5011)] = 175610, + [SMALL_STATE(5012)] = 175631, + [SMALL_STATE(5013)] = 175648, + [SMALL_STATE(5014)] = 175673, + [SMALL_STATE(5015)] = 175694, + [SMALL_STATE(5016)] = 175719, + [SMALL_STATE(5017)] = 175744, + [SMALL_STATE(5018)] = 175765, + [SMALL_STATE(5019)] = 175786, + [SMALL_STATE(5020)] = 175807, + [SMALL_STATE(5021)] = 175824, + [SMALL_STATE(5022)] = 175849, + [SMALL_STATE(5023)] = 175872, + [SMALL_STATE(5024)] = 175897, + [SMALL_STATE(5025)] = 175922, + [SMALL_STATE(5026)] = 175943, + [SMALL_STATE(5027)] = 175964, + [SMALL_STATE(5028)] = 175989, + [SMALL_STATE(5029)] = 176014, + [SMALL_STATE(5030)] = 176039, + [SMALL_STATE(5031)] = 176064, + [SMALL_STATE(5032)] = 176089, + [SMALL_STATE(5033)] = 176112, + [SMALL_STATE(5034)] = 176137, + [SMALL_STATE(5035)] = 176162, + [SMALL_STATE(5036)] = 176187, + [SMALL_STATE(5037)] = 176212, + [SMALL_STATE(5038)] = 176237, + [SMALL_STATE(5039)] = 176262, + [SMALL_STATE(5040)] = 176287, + [SMALL_STATE(5041)] = 176312, + [SMALL_STATE(5042)] = 176337, + [SMALL_STATE(5043)] = 176362, + [SMALL_STATE(5044)] = 176383, + [SMALL_STATE(5045)] = 176404, + [SMALL_STATE(5046)] = 176425, + [SMALL_STATE(5047)] = 176450, + [SMALL_STATE(5048)] = 176475, + [SMALL_STATE(5049)] = 176500, + [SMALL_STATE(5050)] = 176521, + [SMALL_STATE(5051)] = 176542, + [SMALL_STATE(5052)] = 176567, + [SMALL_STATE(5053)] = 176588, + [SMALL_STATE(5054)] = 176613, + [SMALL_STATE(5055)] = 176638, + [SMALL_STATE(5056)] = 176663, + [SMALL_STATE(5057)] = 176688, + [SMALL_STATE(5058)] = 176709, + [SMALL_STATE(5059)] = 176734, + [SMALL_STATE(5060)] = 176759, + [SMALL_STATE(5061)] = 176784, + [SMALL_STATE(5062)] = 176809, + [SMALL_STATE(5063)] = 176834, + [SMALL_STATE(5064)] = 176855, + [SMALL_STATE(5065)] = 176880, + [SMALL_STATE(5066)] = 176897, + [SMALL_STATE(5067)] = 176922, + [SMALL_STATE(5068)] = 176939, + [SMALL_STATE(5069)] = 176956, + [SMALL_STATE(5070)] = 176981, + [SMALL_STATE(5071)] = 176998, + [SMALL_STATE(5072)] = 177019, + [SMALL_STATE(5073)] = 177040, + [SMALL_STATE(5074)] = 177065, + [SMALL_STATE(5075)] = 177090, + [SMALL_STATE(5076)] = 177115, + [SMALL_STATE(5077)] = 177140, + [SMALL_STATE(5078)] = 177165, + [SMALL_STATE(5079)] = 177190, + [SMALL_STATE(5080)] = 177211, + [SMALL_STATE(5081)] = 177234, + [SMALL_STATE(5082)] = 177259, + [SMALL_STATE(5083)] = 177280, + [SMALL_STATE(5084)] = 177305, + [SMALL_STATE(5085)] = 177330, + [SMALL_STATE(5086)] = 177355, + [SMALL_STATE(5087)] = 177376, + [SMALL_STATE(5088)] = 177401, + [SMALL_STATE(5089)] = 177426, + [SMALL_STATE(5090)] = 177443, + [SMALL_STATE(5091)] = 177460, + [SMALL_STATE(5092)] = 177483, + [SMALL_STATE(5093)] = 177508, + [SMALL_STATE(5094)] = 177525, + [SMALL_STATE(5095)] = 177546, + [SMALL_STATE(5096)] = 177567, + [SMALL_STATE(5097)] = 177588, + [SMALL_STATE(5098)] = 177609, + [SMALL_STATE(5099)] = 177632, + [SMALL_STATE(5100)] = 177653, + [SMALL_STATE(5101)] = 177674, + [SMALL_STATE(5102)] = 177695, + [SMALL_STATE(5103)] = 177718, + [SMALL_STATE(5104)] = 177741, + [SMALL_STATE(5105)] = 177764, + [SMALL_STATE(5106)] = 177787, + [SMALL_STATE(5107)] = 177808, + [SMALL_STATE(5108)] = 177833, + [SMALL_STATE(5109)] = 177854, + [SMALL_STATE(5110)] = 177871, + [SMALL_STATE(5111)] = 177892, + [SMALL_STATE(5112)] = 177913, + [SMALL_STATE(5113)] = 177934, + [SMALL_STATE(5114)] = 177959, + [SMALL_STATE(5115)] = 177984, + [SMALL_STATE(5116)] = 178009, + [SMALL_STATE(5117)] = 178034, + [SMALL_STATE(5118)] = 178057, + [SMALL_STATE(5119)] = 178082, + [SMALL_STATE(5120)] = 178107, + [SMALL_STATE(5121)] = 178132, + [SMALL_STATE(5122)] = 178157, + [SMALL_STATE(5123)] = 178182, + [SMALL_STATE(5124)] = 178207, + [SMALL_STATE(5125)] = 178228, + [SMALL_STATE(5126)] = 178253, + [SMALL_STATE(5127)] = 178278, + [SMALL_STATE(5128)] = 178303, + [SMALL_STATE(5129)] = 178328, + [SMALL_STATE(5130)] = 178349, + [SMALL_STATE(5131)] = 178374, + [SMALL_STATE(5132)] = 178395, + [SMALL_STATE(5133)] = 178416, + [SMALL_STATE(5134)] = 178437, + [SMALL_STATE(5135)] = 178454, + [SMALL_STATE(5136)] = 178471, + [SMALL_STATE(5137)] = 178488, + [SMALL_STATE(5138)] = 178513, + [SMALL_STATE(5139)] = 178538, + [SMALL_STATE(5140)] = 178559, + [SMALL_STATE(5141)] = 178582, + [SMALL_STATE(5142)] = 178603, + [SMALL_STATE(5143)] = 178624, + [SMALL_STATE(5144)] = 178641, + [SMALL_STATE(5145)] = 178664, + [SMALL_STATE(5146)] = 178689, + [SMALL_STATE(5147)] = 178706, + [SMALL_STATE(5148)] = 178723, + [SMALL_STATE(5149)] = 178744, + [SMALL_STATE(5150)] = 178761, + [SMALL_STATE(5151)] = 178778, + [SMALL_STATE(5152)] = 178795, + [SMALL_STATE(5153)] = 178812, + [SMALL_STATE(5154)] = 178829, + [SMALL_STATE(5155)] = 178846, + [SMALL_STATE(5156)] = 178867, + [SMALL_STATE(5157)] = 178884, + [SMALL_STATE(5158)] = 178901, + [SMALL_STATE(5159)] = 178926, + [SMALL_STATE(5160)] = 178951, + [SMALL_STATE(5161)] = 178968, + [SMALL_STATE(5162)] = 178993, + [SMALL_STATE(5163)] = 179018, + [SMALL_STATE(5164)] = 179035, + [SMALL_STATE(5165)] = 179060, + [SMALL_STATE(5166)] = 179085, + [SMALL_STATE(5167)] = 179110, + [SMALL_STATE(5168)] = 179127, + [SMALL_STATE(5169)] = 179152, + [SMALL_STATE(5170)] = 179177, + [SMALL_STATE(5171)] = 179202, + [SMALL_STATE(5172)] = 179223, + [SMALL_STATE(5173)] = 179244, + [SMALL_STATE(5174)] = 179269, + [SMALL_STATE(5175)] = 179294, + [SMALL_STATE(5176)] = 179319, + [SMALL_STATE(5177)] = 179340, + [SMALL_STATE(5178)] = 179365, + [SMALL_STATE(5179)] = 179390, + [SMALL_STATE(5180)] = 179415, + [SMALL_STATE(5181)] = 179436, + [SMALL_STATE(5182)] = 179461, + [SMALL_STATE(5183)] = 179482, + [SMALL_STATE(5184)] = 179503, + [SMALL_STATE(5185)] = 179524, + [SMALL_STATE(5186)] = 179545, + [SMALL_STATE(5187)] = 179570, + [SMALL_STATE(5188)] = 179595, + [SMALL_STATE(5189)] = 179616, + [SMALL_STATE(5190)] = 179637, + [SMALL_STATE(5191)] = 179662, + [SMALL_STATE(5192)] = 179687, + [SMALL_STATE(5193)] = 179704, + [SMALL_STATE(5194)] = 179721, + [SMALL_STATE(5195)] = 179746, + [SMALL_STATE(5196)] = 179767, + [SMALL_STATE(5197)] = 179784, + [SMALL_STATE(5198)] = 179809, + [SMALL_STATE(5199)] = 179830, + [SMALL_STATE(5200)] = 179851, + [SMALL_STATE(5201)] = 179868, + [SMALL_STATE(5202)] = 179893, + [SMALL_STATE(5203)] = 179918, + [SMALL_STATE(5204)] = 179935, + [SMALL_STATE(5205)] = 179952, + [SMALL_STATE(5206)] = 179977, + [SMALL_STATE(5207)] = 179994, + [SMALL_STATE(5208)] = 180011, + [SMALL_STATE(5209)] = 180028, + [SMALL_STATE(5210)] = 180045, + [SMALL_STATE(5211)] = 180070, + [SMALL_STATE(5212)] = 180095, + [SMALL_STATE(5213)] = 180112, + [SMALL_STATE(5214)] = 180129, + [SMALL_STATE(5215)] = 180152, + [SMALL_STATE(5216)] = 180177, + [SMALL_STATE(5217)] = 180202, + [SMALL_STATE(5218)] = 180227, + [SMALL_STATE(5219)] = 180250, + [SMALL_STATE(5220)] = 180273, + [SMALL_STATE(5221)] = 180290, + [SMALL_STATE(5222)] = 180311, + [SMALL_STATE(5223)] = 180336, + [SMALL_STATE(5224)] = 180357, + [SMALL_STATE(5225)] = 180378, + [SMALL_STATE(5226)] = 180403, + [SMALL_STATE(5227)] = 180428, + [SMALL_STATE(5228)] = 180449, + [SMALL_STATE(5229)] = 180470, + [SMALL_STATE(5230)] = 180491, + [SMALL_STATE(5231)] = 180512, + [SMALL_STATE(5232)] = 180533, + [SMALL_STATE(5233)] = 180550, + [SMALL_STATE(5234)] = 180575, + [SMALL_STATE(5235)] = 180596, + [SMALL_STATE(5236)] = 180617, + [SMALL_STATE(5237)] = 180638, + [SMALL_STATE(5238)] = 180659, + [SMALL_STATE(5239)] = 180680, + [SMALL_STATE(5240)] = 180701, + [SMALL_STATE(5241)] = 180722, + [SMALL_STATE(5242)] = 180743, + [SMALL_STATE(5243)] = 180764, + [SMALL_STATE(5244)] = 180785, + [SMALL_STATE(5245)] = 180806, + [SMALL_STATE(5246)] = 180827, + [SMALL_STATE(5247)] = 180848, + [SMALL_STATE(5248)] = 180869, + [SMALL_STATE(5249)] = 180890, + [SMALL_STATE(5250)] = 180911, + [SMALL_STATE(5251)] = 180936, + [SMALL_STATE(5252)] = 180957, + [SMALL_STATE(5253)] = 180978, + [SMALL_STATE(5254)] = 180999, + [SMALL_STATE(5255)] = 181020, + [SMALL_STATE(5256)] = 181041, + [SMALL_STATE(5257)] = 181066, + [SMALL_STATE(5258)] = 181087, + [SMALL_STATE(5259)] = 181112, + [SMALL_STATE(5260)] = 181133, + [SMALL_STATE(5261)] = 181158, + [SMALL_STATE(5262)] = 181179, + [SMALL_STATE(5263)] = 181200, + [SMALL_STATE(5264)] = 181221, + [SMALL_STATE(5265)] = 181242, + [SMALL_STATE(5266)] = 181267, + [SMALL_STATE(5267)] = 181288, + [SMALL_STATE(5268)] = 181309, + [SMALL_STATE(5269)] = 181330, + [SMALL_STATE(5270)] = 181351, + [SMALL_STATE(5271)] = 181372, + [SMALL_STATE(5272)] = 181395, + [SMALL_STATE(5273)] = 181420, + [SMALL_STATE(5274)] = 181441, + [SMALL_STATE(5275)] = 181464, + [SMALL_STATE(5276)] = 181485, + [SMALL_STATE(5277)] = 181502, + [SMALL_STATE(5278)] = 181523, + [SMALL_STATE(5279)] = 181544, + [SMALL_STATE(5280)] = 181565, + [SMALL_STATE(5281)] = 181586, + [SMALL_STATE(5282)] = 181611, + [SMALL_STATE(5283)] = 181628, + [SMALL_STATE(5284)] = 181649, + [SMALL_STATE(5285)] = 181670, + [SMALL_STATE(5286)] = 181695, + [SMALL_STATE(5287)] = 181712, + [SMALL_STATE(5288)] = 181733, + [SMALL_STATE(5289)] = 181754, + [SMALL_STATE(5290)] = 181779, + [SMALL_STATE(5291)] = 181796, + [SMALL_STATE(5292)] = 181821, + [SMALL_STATE(5293)] = 181846, + [SMALL_STATE(5294)] = 181863, + [SMALL_STATE(5295)] = 181880, + [SMALL_STATE(5296)] = 181897, + [SMALL_STATE(5297)] = 181914, + [SMALL_STATE(5298)] = 181931, + [SMALL_STATE(5299)] = 181948, + [SMALL_STATE(5300)] = 181973, + [SMALL_STATE(5301)] = 181990, + [SMALL_STATE(5302)] = 182011, + [SMALL_STATE(5303)] = 182032, + [SMALL_STATE(5304)] = 182053, + [SMALL_STATE(5305)] = 182078, + [SMALL_STATE(5306)] = 182095, + [SMALL_STATE(5307)] = 182116, + [SMALL_STATE(5308)] = 182141, + [SMALL_STATE(5309)] = 182164, + [SMALL_STATE(5310)] = 182185, + [SMALL_STATE(5311)] = 182202, + [SMALL_STATE(5312)] = 182219, + [SMALL_STATE(5313)] = 182236, + [SMALL_STATE(5314)] = 182261, + [SMALL_STATE(5315)] = 182282, + [SMALL_STATE(5316)] = 182303, + [SMALL_STATE(5317)] = 182328, + [SMALL_STATE(5318)] = 182349, + [SMALL_STATE(5319)] = 182366, + [SMALL_STATE(5320)] = 182387, + [SMALL_STATE(5321)] = 182408, + [SMALL_STATE(5322)] = 182425, + [SMALL_STATE(5323)] = 182450, + [SMALL_STATE(5324)] = 182471, + [SMALL_STATE(5325)] = 182488, + [SMALL_STATE(5326)] = 182509, + [SMALL_STATE(5327)] = 182530, + [SMALL_STATE(5328)] = 182553, + [SMALL_STATE(5329)] = 182574, + [SMALL_STATE(5330)] = 182595, + [SMALL_STATE(5331)] = 182616, + [SMALL_STATE(5332)] = 182637, + [SMALL_STATE(5333)] = 182658, + [SMALL_STATE(5334)] = 182679, + [SMALL_STATE(5335)] = 182698, + [SMALL_STATE(5336)] = 182719, + [SMALL_STATE(5337)] = 182742, + [SMALL_STATE(5338)] = 182761, + [SMALL_STATE(5339)] = 182780, + [SMALL_STATE(5340)] = 182801, + [SMALL_STATE(5341)] = 182820, + [SMALL_STATE(5342)] = 182837, + [SMALL_STATE(5343)] = 182858, + [SMALL_STATE(5344)] = 182881, + [SMALL_STATE(5345)] = 182906, + [SMALL_STATE(5346)] = 182927, + [SMALL_STATE(5347)] = 182952, + [SMALL_STATE(5348)] = 182973, + [SMALL_STATE(5349)] = 182994, + [SMALL_STATE(5350)] = 183015, + [SMALL_STATE(5351)] = 183036, + [SMALL_STATE(5352)] = 183057, + [SMALL_STATE(5353)] = 183082, + [SMALL_STATE(5354)] = 183103, + [SMALL_STATE(5355)] = 183126, + [SMALL_STATE(5356)] = 183151, + [SMALL_STATE(5357)] = 183172, + [SMALL_STATE(5358)] = 183193, + [SMALL_STATE(5359)] = 183218, + [SMALL_STATE(5360)] = 183239, + [SMALL_STATE(5361)] = 183260, + [SMALL_STATE(5362)] = 183281, + [SMALL_STATE(5363)] = 183302, + [SMALL_STATE(5364)] = 183327, + [SMALL_STATE(5365)] = 183348, + [SMALL_STATE(5366)] = 183369, + [SMALL_STATE(5367)] = 183390, + [SMALL_STATE(5368)] = 183411, + [SMALL_STATE(5369)] = 183432, + [SMALL_STATE(5370)] = 183453, + [SMALL_STATE(5371)] = 183474, + [SMALL_STATE(5372)] = 183495, + [SMALL_STATE(5373)] = 183516, + [SMALL_STATE(5374)] = 183538, + [SMALL_STATE(5375)] = 183558, + [SMALL_STATE(5376)] = 183578, + [SMALL_STATE(5377)] = 183598, + [SMALL_STATE(5378)] = 183618, + [SMALL_STATE(5379)] = 183638, + [SMALL_STATE(5380)] = 183658, + [SMALL_STATE(5381)] = 183678, + [SMALL_STATE(5382)] = 183698, + [SMALL_STATE(5383)] = 183718, + [SMALL_STATE(5384)] = 183738, + [SMALL_STATE(5385)] = 183758, + [SMALL_STATE(5386)] = 183778, + [SMALL_STATE(5387)] = 183798, + [SMALL_STATE(5388)] = 183818, + [SMALL_STATE(5389)] = 183838, + [SMALL_STATE(5390)] = 183858, + [SMALL_STATE(5391)] = 183878, + [SMALL_STATE(5392)] = 183900, + [SMALL_STATE(5393)] = 183920, + [SMALL_STATE(5394)] = 183942, + [SMALL_STATE(5395)] = 183962, + [SMALL_STATE(5396)] = 183982, + [SMALL_STATE(5397)] = 184002, + [SMALL_STATE(5398)] = 184024, + [SMALL_STATE(5399)] = 184044, + [SMALL_STATE(5400)] = 184064, + [SMALL_STATE(5401)] = 184086, + [SMALL_STATE(5402)] = 184108, + [SMALL_STATE(5403)] = 184128, + [SMALL_STATE(5404)] = 184148, + [SMALL_STATE(5405)] = 184168, + [SMALL_STATE(5406)] = 184190, + [SMALL_STATE(5407)] = 184212, + [SMALL_STATE(5408)] = 184232, + [SMALL_STATE(5409)] = 184252, + [SMALL_STATE(5410)] = 184272, + [SMALL_STATE(5411)] = 184292, + [SMALL_STATE(5412)] = 184314, + [SMALL_STATE(5413)] = 184334, + [SMALL_STATE(5414)] = 184356, + [SMALL_STATE(5415)] = 184376, + [SMALL_STATE(5416)] = 184396, + [SMALL_STATE(5417)] = 184416, + [SMALL_STATE(5418)] = 184436, + [SMALL_STATE(5419)] = 184456, + [SMALL_STATE(5420)] = 184476, + [SMALL_STATE(5421)] = 184496, + [SMALL_STATE(5422)] = 184516, + [SMALL_STATE(5423)] = 184536, + [SMALL_STATE(5424)] = 184556, + [SMALL_STATE(5425)] = 184576, + [SMALL_STATE(5426)] = 184596, + [SMALL_STATE(5427)] = 184616, + [SMALL_STATE(5428)] = 184636, + [SMALL_STATE(5429)] = 184656, + [SMALL_STATE(5430)] = 184678, + [SMALL_STATE(5431)] = 184698, + [SMALL_STATE(5432)] = 184718, + [SMALL_STATE(5433)] = 184740, + [SMALL_STATE(5434)] = 184760, + [SMALL_STATE(5435)] = 184780, + [SMALL_STATE(5436)] = 184800, + [SMALL_STATE(5437)] = 184820, + [SMALL_STATE(5438)] = 184842, + [SMALL_STATE(5439)] = 184862, + [SMALL_STATE(5440)] = 184882, + [SMALL_STATE(5441)] = 184904, + [SMALL_STATE(5442)] = 184924, + [SMALL_STATE(5443)] = 184946, + [SMALL_STATE(5444)] = 184966, + [SMALL_STATE(5445)] = 184988, + [SMALL_STATE(5446)] = 185010, + [SMALL_STATE(5447)] = 185030, + [SMALL_STATE(5448)] = 185050, + [SMALL_STATE(5449)] = 185070, + [SMALL_STATE(5450)] = 185092, + [SMALL_STATE(5451)] = 185114, + [SMALL_STATE(5452)] = 185136, + [SMALL_STATE(5453)] = 185158, + [SMALL_STATE(5454)] = 185176, + [SMALL_STATE(5455)] = 185198, + [SMALL_STATE(5456)] = 185220, + [SMALL_STATE(5457)] = 185242, + [SMALL_STATE(5458)] = 185264, + [SMALL_STATE(5459)] = 185286, + [SMALL_STATE(5460)] = 185308, + [SMALL_STATE(5461)] = 185330, + [SMALL_STATE(5462)] = 185352, + [SMALL_STATE(5463)] = 185374, + [SMALL_STATE(5464)] = 185392, + [SMALL_STATE(5465)] = 185412, + [SMALL_STATE(5466)] = 185432, + [SMALL_STATE(5467)] = 185452, + [SMALL_STATE(5468)] = 185474, + [SMALL_STATE(5469)] = 185494, + [SMALL_STATE(5470)] = 185514, + [SMALL_STATE(5471)] = 185534, + [SMALL_STATE(5472)] = 185554, + [SMALL_STATE(5473)] = 185576, + [SMALL_STATE(5474)] = 185596, + [SMALL_STATE(5475)] = 185616, + [SMALL_STATE(5476)] = 185638, + [SMALL_STATE(5477)] = 185654, + [SMALL_STATE(5478)] = 185676, + [SMALL_STATE(5479)] = 185696, + [SMALL_STATE(5480)] = 185716, + [SMALL_STATE(5481)] = 185738, + [SMALL_STATE(5482)] = 185760, + [SMALL_STATE(5483)] = 185778, + [SMALL_STATE(5484)] = 185798, + [SMALL_STATE(5485)] = 185818, + [SMALL_STATE(5486)] = 185840, + [SMALL_STATE(5487)] = 185862, + [SMALL_STATE(5488)] = 185880, + [SMALL_STATE(5489)] = 185900, + [SMALL_STATE(5490)] = 185920, + [SMALL_STATE(5491)] = 185940, + [SMALL_STATE(5492)] = 185962, + [SMALL_STATE(5493)] = 185984, + [SMALL_STATE(5494)] = 186006, + [SMALL_STATE(5495)] = 186028, + [SMALL_STATE(5496)] = 186050, + [SMALL_STATE(5497)] = 186070, + [SMALL_STATE(5498)] = 186092, + [SMALL_STATE(5499)] = 186112, + [SMALL_STATE(5500)] = 186134, + [SMALL_STATE(5501)] = 186156, + [SMALL_STATE(5502)] = 186174, + [SMALL_STATE(5503)] = 186196, + [SMALL_STATE(5504)] = 186218, + [SMALL_STATE(5505)] = 186240, + [SMALL_STATE(5506)] = 186260, + [SMALL_STATE(5507)] = 186280, + [SMALL_STATE(5508)] = 186302, + [SMALL_STATE(5509)] = 186322, + [SMALL_STATE(5510)] = 186342, + [SMALL_STATE(5511)] = 186364, + [SMALL_STATE(5512)] = 186384, + [SMALL_STATE(5513)] = 186404, + [SMALL_STATE(5514)] = 186426, + [SMALL_STATE(5515)] = 186444, + [SMALL_STATE(5516)] = 186466, + [SMALL_STATE(5517)] = 186482, + [SMALL_STATE(5518)] = 186504, + [SMALL_STATE(5519)] = 186526, + [SMALL_STATE(5520)] = 186548, + [SMALL_STATE(5521)] = 186568, + [SMALL_STATE(5522)] = 186590, + [SMALL_STATE(5523)] = 186610, + [SMALL_STATE(5524)] = 186632, + [SMALL_STATE(5525)] = 186654, + [SMALL_STATE(5526)] = 186676, + [SMALL_STATE(5527)] = 186698, + [SMALL_STATE(5528)] = 186718, + [SMALL_STATE(5529)] = 186734, + [SMALL_STATE(5530)] = 186752, + [SMALL_STATE(5531)] = 186770, + [SMALL_STATE(5532)] = 186790, + [SMALL_STATE(5533)] = 186812, + [SMALL_STATE(5534)] = 186832, + [SMALL_STATE(5535)] = 186852, + [SMALL_STATE(5536)] = 186874, + [SMALL_STATE(5537)] = 186894, + [SMALL_STATE(5538)] = 186914, + [SMALL_STATE(5539)] = 186934, + [SMALL_STATE(5540)] = 186954, + [SMALL_STATE(5541)] = 186974, + [SMALL_STATE(5542)] = 186996, + [SMALL_STATE(5543)] = 187016, + [SMALL_STATE(5544)] = 187038, + [SMALL_STATE(5545)] = 187058, + [SMALL_STATE(5546)] = 187078, + [SMALL_STATE(5547)] = 187098, + [SMALL_STATE(5548)] = 187118, + [SMALL_STATE(5549)] = 187140, + [SMALL_STATE(5550)] = 187162, + [SMALL_STATE(5551)] = 187180, + [SMALL_STATE(5552)] = 187198, + [SMALL_STATE(5553)] = 187218, + [SMALL_STATE(5554)] = 187238, + [SMALL_STATE(5555)] = 187260, + [SMALL_STATE(5556)] = 187276, + [SMALL_STATE(5557)] = 187296, + [SMALL_STATE(5558)] = 187316, + [SMALL_STATE(5559)] = 187336, + [SMALL_STATE(5560)] = 187356, + [SMALL_STATE(5561)] = 187378, + [SMALL_STATE(5562)] = 187398, + [SMALL_STATE(5563)] = 187418, + [SMALL_STATE(5564)] = 187438, + [SMALL_STATE(5565)] = 187458, + [SMALL_STATE(5566)] = 187478, + [SMALL_STATE(5567)] = 187498, + [SMALL_STATE(5568)] = 187518, + [SMALL_STATE(5569)] = 187538, + [SMALL_STATE(5570)] = 187554, + [SMALL_STATE(5571)] = 187570, + [SMALL_STATE(5572)] = 187590, + [SMALL_STATE(5573)] = 187610, + [SMALL_STATE(5574)] = 187630, + [SMALL_STATE(5575)] = 187652, + [SMALL_STATE(5576)] = 187672, + [SMALL_STATE(5577)] = 187694, + [SMALL_STATE(5578)] = 187714, + [SMALL_STATE(5579)] = 187734, + [SMALL_STATE(5580)] = 187754, + [SMALL_STATE(5581)] = 187776, + [SMALL_STATE(5582)] = 187798, + [SMALL_STATE(5583)] = 187818, + [SMALL_STATE(5584)] = 187838, + [SMALL_STATE(5585)] = 187858, + [SMALL_STATE(5586)] = 187880, + [SMALL_STATE(5587)] = 187900, + [SMALL_STATE(5588)] = 187916, + [SMALL_STATE(5589)] = 187932, + [SMALL_STATE(5590)] = 187952, + [SMALL_STATE(5591)] = 187974, + [SMALL_STATE(5592)] = 187990, + [SMALL_STATE(5593)] = 188006, + [SMALL_STATE(5594)] = 188028, + [SMALL_STATE(5595)] = 188050, + [SMALL_STATE(5596)] = 188070, + [SMALL_STATE(5597)] = 188086, + [SMALL_STATE(5598)] = 188108, + [SMALL_STATE(5599)] = 188130, + [SMALL_STATE(5600)] = 188148, + [SMALL_STATE(5601)] = 188168, + [SMALL_STATE(5602)] = 188188, + [SMALL_STATE(5603)] = 188203, + [SMALL_STATE(5604)] = 188218, + [SMALL_STATE(5605)] = 188233, + [SMALL_STATE(5606)] = 188252, + [SMALL_STATE(5607)] = 188267, + [SMALL_STATE(5608)] = 188286, + [SMALL_STATE(5609)] = 188305, + [SMALL_STATE(5610)] = 188320, + [SMALL_STATE(5611)] = 188337, + [SMALL_STATE(5612)] = 188356, + [SMALL_STATE(5613)] = 188373, + [SMALL_STATE(5614)] = 188390, + [SMALL_STATE(5615)] = 188407, + [SMALL_STATE(5616)] = 188426, + [SMALL_STATE(5617)] = 188445, + [SMALL_STATE(5618)] = 188464, + [SMALL_STATE(5619)] = 188481, + [SMALL_STATE(5620)] = 188498, + [SMALL_STATE(5621)] = 188513, + [SMALL_STATE(5622)] = 188530, + [SMALL_STATE(5623)] = 188547, + [SMALL_STATE(5624)] = 188562, + [SMALL_STATE(5625)] = 188581, + [SMALL_STATE(5626)] = 188596, + [SMALL_STATE(5627)] = 188615, + [SMALL_STATE(5628)] = 188634, + [SMALL_STATE(5629)] = 188651, + [SMALL_STATE(5630)] = 188666, + [SMALL_STATE(5631)] = 188685, + [SMALL_STATE(5632)] = 188704, + [SMALL_STATE(5633)] = 188723, + [SMALL_STATE(5634)] = 188738, + [SMALL_STATE(5635)] = 188755, + [SMALL_STATE(5636)] = 188774, + [SMALL_STATE(5637)] = 188791, + [SMALL_STATE(5638)] = 188808, + [SMALL_STATE(5639)] = 188825, + [SMALL_STATE(5640)] = 188842, + [SMALL_STATE(5641)] = 188861, + [SMALL_STATE(5642)] = 188878, + [SMALL_STATE(5643)] = 188897, + [SMALL_STATE(5644)] = 188912, + [SMALL_STATE(5645)] = 188931, + [SMALL_STATE(5646)] = 188950, + [SMALL_STATE(5647)] = 188965, + [SMALL_STATE(5648)] = 188980, + [SMALL_STATE(5649)] = 188999, + [SMALL_STATE(5650)] = 189018, + [SMALL_STATE(5651)] = 189033, + [SMALL_STATE(5652)] = 189048, + [SMALL_STATE(5653)] = 189063, + [SMALL_STATE(5654)] = 189078, + [SMALL_STATE(5655)] = 189097, + [SMALL_STATE(5656)] = 189112, + [SMALL_STATE(5657)] = 189131, + [SMALL_STATE(5658)] = 189150, + [SMALL_STATE(5659)] = 189167, + [SMALL_STATE(5660)] = 189186, + [SMALL_STATE(5661)] = 189203, + [SMALL_STATE(5662)] = 189222, + [SMALL_STATE(5663)] = 189241, + [SMALL_STATE(5664)] = 189260, + [SMALL_STATE(5665)] = 189275, + [SMALL_STATE(5666)] = 189290, + [SMALL_STATE(5667)] = 189305, + [SMALL_STATE(5668)] = 189320, + [SMALL_STATE(5669)] = 189335, + [SMALL_STATE(5670)] = 189350, + [SMALL_STATE(5671)] = 189365, + [SMALL_STATE(5672)] = 189384, + [SMALL_STATE(5673)] = 189401, + [SMALL_STATE(5674)] = 189416, + [SMALL_STATE(5675)] = 189431, + [SMALL_STATE(5676)] = 189446, + [SMALL_STATE(5677)] = 189461, + [SMALL_STATE(5678)] = 189476, + [SMALL_STATE(5679)] = 189491, + [SMALL_STATE(5680)] = 189506, + [SMALL_STATE(5681)] = 189521, + [SMALL_STATE(5682)] = 189536, + [SMALL_STATE(5683)] = 189553, + [SMALL_STATE(5684)] = 189568, + [SMALL_STATE(5685)] = 189587, + [SMALL_STATE(5686)] = 189602, + [SMALL_STATE(5687)] = 189621, + [SMALL_STATE(5688)] = 189636, + [SMALL_STATE(5689)] = 189651, + [SMALL_STATE(5690)] = 189666, + [SMALL_STATE(5691)] = 189681, + [SMALL_STATE(5692)] = 189696, + [SMALL_STATE(5693)] = 189715, + [SMALL_STATE(5694)] = 189730, + [SMALL_STATE(5695)] = 189749, + [SMALL_STATE(5696)] = 189764, + [SMALL_STATE(5697)] = 189783, + [SMALL_STATE(5698)] = 189802, + [SMALL_STATE(5699)] = 189821, + [SMALL_STATE(5700)] = 189840, + [SMALL_STATE(5701)] = 189859, + [SMALL_STATE(5702)] = 189874, + [SMALL_STATE(5703)] = 189889, + [SMALL_STATE(5704)] = 189904, + [SMALL_STATE(5705)] = 189919, + [SMALL_STATE(5706)] = 189934, + [SMALL_STATE(5707)] = 189949, + [SMALL_STATE(5708)] = 189964, + [SMALL_STATE(5709)] = 189983, + [SMALL_STATE(5710)] = 189998, + [SMALL_STATE(5711)] = 190017, + [SMALL_STATE(5712)] = 190032, + [SMALL_STATE(5713)] = 190051, + [SMALL_STATE(5714)] = 190068, + [SMALL_STATE(5715)] = 190083, + [SMALL_STATE(5716)] = 190102, + [SMALL_STATE(5717)] = 190121, + [SMALL_STATE(5718)] = 190140, + [SMALL_STATE(5719)] = 190155, + [SMALL_STATE(5720)] = 190170, + [SMALL_STATE(5721)] = 190189, + [SMALL_STATE(5722)] = 190208, + [SMALL_STATE(5723)] = 190223, + [SMALL_STATE(5724)] = 190242, + [SMALL_STATE(5725)] = 190257, + [SMALL_STATE(5726)] = 190276, + [SMALL_STATE(5727)] = 190291, + [SMALL_STATE(5728)] = 190306, + [SMALL_STATE(5729)] = 190325, + [SMALL_STATE(5730)] = 190342, + [SMALL_STATE(5731)] = 190357, + [SMALL_STATE(5732)] = 190376, + [SMALL_STATE(5733)] = 190395, + [SMALL_STATE(5734)] = 190410, + [SMALL_STATE(5735)] = 190429, + [SMALL_STATE(5736)] = 190444, + [SMALL_STATE(5737)] = 190463, + [SMALL_STATE(5738)] = 190482, + [SMALL_STATE(5739)] = 190497, + [SMALL_STATE(5740)] = 190516, + [SMALL_STATE(5741)] = 190531, + [SMALL_STATE(5742)] = 190550, + [SMALL_STATE(5743)] = 190565, + [SMALL_STATE(5744)] = 190584, + [SMALL_STATE(5745)] = 190599, + [SMALL_STATE(5746)] = 190616, + [SMALL_STATE(5747)] = 190633, + [SMALL_STATE(5748)] = 190650, + [SMALL_STATE(5749)] = 190669, + [SMALL_STATE(5750)] = 190684, + [SMALL_STATE(5751)] = 190699, + [SMALL_STATE(5752)] = 190716, + [SMALL_STATE(5753)] = 190731, + [SMALL_STATE(5754)] = 190746, + [SMALL_STATE(5755)] = 190763, + [SMALL_STATE(5756)] = 190778, + [SMALL_STATE(5757)] = 190795, + [SMALL_STATE(5758)] = 190814, + [SMALL_STATE(5759)] = 190833, + [SMALL_STATE(5760)] = 190848, + [SMALL_STATE(5761)] = 190863, + [SMALL_STATE(5762)] = 190878, + [SMALL_STATE(5763)] = 190893, + [SMALL_STATE(5764)] = 190910, + [SMALL_STATE(5765)] = 190925, + [SMALL_STATE(5766)] = 190944, + [SMALL_STATE(5767)] = 190963, + [SMALL_STATE(5768)] = 190982, + [SMALL_STATE(5769)] = 190997, + [SMALL_STATE(5770)] = 191012, + [SMALL_STATE(5771)] = 191027, + [SMALL_STATE(5772)] = 191044, + [SMALL_STATE(5773)] = 191063, + [SMALL_STATE(5774)] = 191078, + [SMALL_STATE(5775)] = 191097, + [SMALL_STATE(5776)] = 191114, + [SMALL_STATE(5777)] = 191129, + [SMALL_STATE(5778)] = 191144, + [SMALL_STATE(5779)] = 191159, + [SMALL_STATE(5780)] = 191174, + [SMALL_STATE(5781)] = 191189, + [SMALL_STATE(5782)] = 191204, + [SMALL_STATE(5783)] = 191219, + [SMALL_STATE(5784)] = 191236, + [SMALL_STATE(5785)] = 191255, + [SMALL_STATE(5786)] = 191270, + [SMALL_STATE(5787)] = 191289, + [SMALL_STATE(5788)] = 191304, + [SMALL_STATE(5789)] = 191319, + [SMALL_STATE(5790)] = 191338, + [SMALL_STATE(5791)] = 191353, + [SMALL_STATE(5792)] = 191372, + [SMALL_STATE(5793)] = 191391, + [SMALL_STATE(5794)] = 191406, + [SMALL_STATE(5795)] = 191425, + [SMALL_STATE(5796)] = 191440, + [SMALL_STATE(5797)] = 191459, + [SMALL_STATE(5798)] = 191478, + [SMALL_STATE(5799)] = 191497, + [SMALL_STATE(5800)] = 191516, + [SMALL_STATE(5801)] = 191535, + [SMALL_STATE(5802)] = 191552, + [SMALL_STATE(5803)] = 191567, + [SMALL_STATE(5804)] = 191582, + [SMALL_STATE(5805)] = 191601, + [SMALL_STATE(5806)] = 191616, + [SMALL_STATE(5807)] = 191631, + [SMALL_STATE(5808)] = 191646, + [SMALL_STATE(5809)] = 191665, + [SMALL_STATE(5810)] = 191680, + [SMALL_STATE(5811)] = 191695, + [SMALL_STATE(5812)] = 191714, + [SMALL_STATE(5813)] = 191733, + [SMALL_STATE(5814)] = 191752, + [SMALL_STATE(5815)] = 191771, + [SMALL_STATE(5816)] = 191790, + [SMALL_STATE(5817)] = 191807, + [SMALL_STATE(5818)] = 191826, + [SMALL_STATE(5819)] = 191843, + [SMALL_STATE(5820)] = 191858, + [SMALL_STATE(5821)] = 191877, + [SMALL_STATE(5822)] = 191892, + [SMALL_STATE(5823)] = 191911, + [SMALL_STATE(5824)] = 191926, + [SMALL_STATE(5825)] = 191945, + [SMALL_STATE(5826)] = 191960, + [SMALL_STATE(5827)] = 191975, + [SMALL_STATE(5828)] = 191990, + [SMALL_STATE(5829)] = 192009, + [SMALL_STATE(5830)] = 192028, + [SMALL_STATE(5831)] = 192043, + [SMALL_STATE(5832)] = 192062, + [SMALL_STATE(5833)] = 192081, + [SMALL_STATE(5834)] = 192100, + [SMALL_STATE(5835)] = 192115, + [SMALL_STATE(5836)] = 192130, + [SMALL_STATE(5837)] = 192145, + [SMALL_STATE(5838)] = 192160, + [SMALL_STATE(5839)] = 192179, + [SMALL_STATE(5840)] = 192198, + [SMALL_STATE(5841)] = 192217, + [SMALL_STATE(5842)] = 192232, + [SMALL_STATE(5843)] = 192251, + [SMALL_STATE(5844)] = 192266, + [SMALL_STATE(5845)] = 192285, + [SMALL_STATE(5846)] = 192302, + [SMALL_STATE(5847)] = 192321, + [SMALL_STATE(5848)] = 192336, + [SMALL_STATE(5849)] = 192353, + [SMALL_STATE(5850)] = 192370, + [SMALL_STATE(5851)] = 192387, + [SMALL_STATE(5852)] = 192404, + [SMALL_STATE(5853)] = 192419, + [SMALL_STATE(5854)] = 192438, + [SMALL_STATE(5855)] = 192457, + [SMALL_STATE(5856)] = 192476, + [SMALL_STATE(5857)] = 192493, + [SMALL_STATE(5858)] = 192508, + [SMALL_STATE(5859)] = 192523, + [SMALL_STATE(5860)] = 192542, + [SMALL_STATE(5861)] = 192561, + [SMALL_STATE(5862)] = 192580, + [SMALL_STATE(5863)] = 192597, + [SMALL_STATE(5864)] = 192612, + [SMALL_STATE(5865)] = 192627, + [SMALL_STATE(5866)] = 192642, + [SMALL_STATE(5867)] = 192657, + [SMALL_STATE(5868)] = 192672, + [SMALL_STATE(5869)] = 192687, + [SMALL_STATE(5870)] = 192704, + [SMALL_STATE(5871)] = 192719, + [SMALL_STATE(5872)] = 192738, + [SMALL_STATE(5873)] = 192757, + [SMALL_STATE(5874)] = 192776, + [SMALL_STATE(5875)] = 192791, + [SMALL_STATE(5876)] = 192806, + [SMALL_STATE(5877)] = 192821, + [SMALL_STATE(5878)] = 192836, + [SMALL_STATE(5879)] = 192855, + [SMALL_STATE(5880)] = 192870, + [SMALL_STATE(5881)] = 192889, + [SMALL_STATE(5882)] = 192908, + [SMALL_STATE(5883)] = 192927, + [SMALL_STATE(5884)] = 192946, + [SMALL_STATE(5885)] = 192961, + [SMALL_STATE(5886)] = 192980, + [SMALL_STATE(5887)] = 192995, + [SMALL_STATE(5888)] = 193014, + [SMALL_STATE(5889)] = 193029, + [SMALL_STATE(5890)] = 193044, + [SMALL_STATE(5891)] = 193059, + [SMALL_STATE(5892)] = 193074, + [SMALL_STATE(5893)] = 193091, + [SMALL_STATE(5894)] = 193106, + [SMALL_STATE(5895)] = 193121, + [SMALL_STATE(5896)] = 193140, + [SMALL_STATE(5897)] = 193157, + [SMALL_STATE(5898)] = 193172, + [SMALL_STATE(5899)] = 193191, + [SMALL_STATE(5900)] = 193210, + [SMALL_STATE(5901)] = 193225, + [SMALL_STATE(5902)] = 193240, + [SMALL_STATE(5903)] = 193255, + [SMALL_STATE(5904)] = 193274, + [SMALL_STATE(5905)] = 193289, + [SMALL_STATE(5906)] = 193308, + [SMALL_STATE(5907)] = 193327, + [SMALL_STATE(5908)] = 193346, + [SMALL_STATE(5909)] = 193365, + [SMALL_STATE(5910)] = 193384, + [SMALL_STATE(5911)] = 193403, + [SMALL_STATE(5912)] = 193422, + [SMALL_STATE(5913)] = 193437, + [SMALL_STATE(5914)] = 193456, + [SMALL_STATE(5915)] = 193475, + [SMALL_STATE(5916)] = 193494, + [SMALL_STATE(5917)] = 193513, + [SMALL_STATE(5918)] = 193528, + [SMALL_STATE(5919)] = 193547, + [SMALL_STATE(5920)] = 193566, + [SMALL_STATE(5921)] = 193585, + [SMALL_STATE(5922)] = 193604, + [SMALL_STATE(5923)] = 193623, + [SMALL_STATE(5924)] = 193642, + [SMALL_STATE(5925)] = 193661, + [SMALL_STATE(5926)] = 193676, + [SMALL_STATE(5927)] = 193693, + [SMALL_STATE(5928)] = 193710, + [SMALL_STATE(5929)] = 193727, + [SMALL_STATE(5930)] = 193744, + [SMALL_STATE(5931)] = 193761, + [SMALL_STATE(5932)] = 193780, + [SMALL_STATE(5933)] = 193797, + [SMALL_STATE(5934)] = 193814, + [SMALL_STATE(5935)] = 193833, + [SMALL_STATE(5936)] = 193852, + [SMALL_STATE(5937)] = 193869, + [SMALL_STATE(5938)] = 193886, + [SMALL_STATE(5939)] = 193901, + [SMALL_STATE(5940)] = 193920, + [SMALL_STATE(5941)] = 193939, + [SMALL_STATE(5942)] = 193954, + [SMALL_STATE(5943)] = 193969, + [SMALL_STATE(5944)] = 193986, + [SMALL_STATE(5945)] = 194001, + [SMALL_STATE(5946)] = 194020, + [SMALL_STATE(5947)] = 194035, + [SMALL_STATE(5948)] = 194050, + [SMALL_STATE(5949)] = 194065, + [SMALL_STATE(5950)] = 194082, + [SMALL_STATE(5951)] = 194097, + [SMALL_STATE(5952)] = 194116, + [SMALL_STATE(5953)] = 194135, + [SMALL_STATE(5954)] = 194154, + [SMALL_STATE(5955)] = 194173, + [SMALL_STATE(5956)] = 194192, + [SMALL_STATE(5957)] = 194211, + [SMALL_STATE(5958)] = 194230, + [SMALL_STATE(5959)] = 194245, + [SMALL_STATE(5960)] = 194264, + [SMALL_STATE(5961)] = 194283, + [SMALL_STATE(5962)] = 194300, + [SMALL_STATE(5963)] = 194315, + [SMALL_STATE(5964)] = 194330, + [SMALL_STATE(5965)] = 194345, + [SMALL_STATE(5966)] = 194364, + [SMALL_STATE(5967)] = 194379, + [SMALL_STATE(5968)] = 194394, + [SMALL_STATE(5969)] = 194409, + [SMALL_STATE(5970)] = 194428, + [SMALL_STATE(5971)] = 194447, + [SMALL_STATE(5972)] = 194462, + [SMALL_STATE(5973)] = 194477, + [SMALL_STATE(5974)] = 194496, + [SMALL_STATE(5975)] = 194511, + [SMALL_STATE(5976)] = 194526, + [SMALL_STATE(5977)] = 194541, + [SMALL_STATE(5978)] = 194556, + [SMALL_STATE(5979)] = 194571, + [SMALL_STATE(5980)] = 194586, + [SMALL_STATE(5981)] = 194601, + [SMALL_STATE(5982)] = 194616, + [SMALL_STATE(5983)] = 194631, + [SMALL_STATE(5984)] = 194646, + [SMALL_STATE(5985)] = 194661, + [SMALL_STATE(5986)] = 194676, + [SMALL_STATE(5987)] = 194691, + [SMALL_STATE(5988)] = 194706, + [SMALL_STATE(5989)] = 194721, + [SMALL_STATE(5990)] = 194736, + [SMALL_STATE(5991)] = 194751, + [SMALL_STATE(5992)] = 194766, + [SMALL_STATE(5993)] = 194781, + [SMALL_STATE(5994)] = 194798, + [SMALL_STATE(5995)] = 194813, + [SMALL_STATE(5996)] = 194830, + [SMALL_STATE(5997)] = 194845, + [SMALL_STATE(5998)] = 194860, + [SMALL_STATE(5999)] = 194875, + [SMALL_STATE(6000)] = 194890, + [SMALL_STATE(6001)] = 194907, + [SMALL_STATE(6002)] = 194924, + [SMALL_STATE(6003)] = 194941, + [SMALL_STATE(6004)] = 194956, + [SMALL_STATE(6005)] = 194971, + [SMALL_STATE(6006)] = 194986, + [SMALL_STATE(6007)] = 195001, + [SMALL_STATE(6008)] = 195018, + [SMALL_STATE(6009)] = 195037, + [SMALL_STATE(6010)] = 195054, + [SMALL_STATE(6011)] = 195071, + [SMALL_STATE(6012)] = 195090, + [SMALL_STATE(6013)] = 195109, + [SMALL_STATE(6014)] = 195124, + [SMALL_STATE(6015)] = 195143, + [SMALL_STATE(6016)] = 195158, + [SMALL_STATE(6017)] = 195173, + [SMALL_STATE(6018)] = 195188, + [SMALL_STATE(6019)] = 195203, + [SMALL_STATE(6020)] = 195218, + [SMALL_STATE(6021)] = 195233, + [SMALL_STATE(6022)] = 195248, + [SMALL_STATE(6023)] = 195265, + [SMALL_STATE(6024)] = 195280, + [SMALL_STATE(6025)] = 195295, + [SMALL_STATE(6026)] = 195310, + [SMALL_STATE(6027)] = 195325, + [SMALL_STATE(6028)] = 195340, + [SMALL_STATE(6029)] = 195355, + [SMALL_STATE(6030)] = 195370, + [SMALL_STATE(6031)] = 195385, + [SMALL_STATE(6032)] = 195400, + [SMALL_STATE(6033)] = 195415, + [SMALL_STATE(6034)] = 195430, + [SMALL_STATE(6035)] = 195445, + [SMALL_STATE(6036)] = 195460, + [SMALL_STATE(6037)] = 195475, + [SMALL_STATE(6038)] = 195494, + [SMALL_STATE(6039)] = 195509, + [SMALL_STATE(6040)] = 195524, + [SMALL_STATE(6041)] = 195539, + [SMALL_STATE(6042)] = 195554, + [SMALL_STATE(6043)] = 195569, + [SMALL_STATE(6044)] = 195584, + [SMALL_STATE(6045)] = 195603, + [SMALL_STATE(6046)] = 195618, + [SMALL_STATE(6047)] = 195633, + [SMALL_STATE(6048)] = 195652, + [SMALL_STATE(6049)] = 195667, + [SMALL_STATE(6050)] = 195686, + [SMALL_STATE(6051)] = 195701, + [SMALL_STATE(6052)] = 195720, + [SMALL_STATE(6053)] = 195739, + [SMALL_STATE(6054)] = 195754, + [SMALL_STATE(6055)] = 195769, + [SMALL_STATE(6056)] = 195784, + [SMALL_STATE(6057)] = 195799, + [SMALL_STATE(6058)] = 195814, + [SMALL_STATE(6059)] = 195833, + [SMALL_STATE(6060)] = 195850, + [SMALL_STATE(6061)] = 195865, + [SMALL_STATE(6062)] = 195882, + [SMALL_STATE(6063)] = 195897, + [SMALL_STATE(6064)] = 195912, + [SMALL_STATE(6065)] = 195927, + [SMALL_STATE(6066)] = 195946, + [SMALL_STATE(6067)] = 195965, + [SMALL_STATE(6068)] = 195980, + [SMALL_STATE(6069)] = 195995, + [SMALL_STATE(6070)] = 196010, + [SMALL_STATE(6071)] = 196029, + [SMALL_STATE(6072)] = 196044, + [SMALL_STATE(6073)] = 196059, + [SMALL_STATE(6074)] = 196078, + [SMALL_STATE(6075)] = 196093, + [SMALL_STATE(6076)] = 196112, + [SMALL_STATE(6077)] = 196127, + [SMALL_STATE(6078)] = 196146, + [SMALL_STATE(6079)] = 196161, + [SMALL_STATE(6080)] = 196180, + [SMALL_STATE(6081)] = 196195, + [SMALL_STATE(6082)] = 196214, + [SMALL_STATE(6083)] = 196233, + [SMALL_STATE(6084)] = 196248, + [SMALL_STATE(6085)] = 196263, + [SMALL_STATE(6086)] = 196282, + [SMALL_STATE(6087)] = 196301, + [SMALL_STATE(6088)] = 196316, + [SMALL_STATE(6089)] = 196335, + [SMALL_STATE(6090)] = 196350, + [SMALL_STATE(6091)] = 196365, + [SMALL_STATE(6092)] = 196380, + [SMALL_STATE(6093)] = 196395, + [SMALL_STATE(6094)] = 196410, + [SMALL_STATE(6095)] = 196425, + [SMALL_STATE(6096)] = 196440, + [SMALL_STATE(6097)] = 196455, + [SMALL_STATE(6098)] = 196470, + [SMALL_STATE(6099)] = 196489, + [SMALL_STATE(6100)] = 196504, + [SMALL_STATE(6101)] = 196519, + [SMALL_STATE(6102)] = 196536, + [SMALL_STATE(6103)] = 196553, + [SMALL_STATE(6104)] = 196568, + [SMALL_STATE(6105)] = 196583, + [SMALL_STATE(6106)] = 196598, + [SMALL_STATE(6107)] = 196613, + [SMALL_STATE(6108)] = 196628, + [SMALL_STATE(6109)] = 196643, + [SMALL_STATE(6110)] = 196662, + [SMALL_STATE(6111)] = 196677, + [SMALL_STATE(6112)] = 196692, + [SMALL_STATE(6113)] = 196707, + [SMALL_STATE(6114)] = 196726, + [SMALL_STATE(6115)] = 196741, + [SMALL_STATE(6116)] = 196760, + [SMALL_STATE(6117)] = 196775, + [SMALL_STATE(6118)] = 196794, + [SMALL_STATE(6119)] = 196809, + [SMALL_STATE(6120)] = 196828, + [SMALL_STATE(6121)] = 196843, + [SMALL_STATE(6122)] = 196858, + [SMALL_STATE(6123)] = 196877, + [SMALL_STATE(6124)] = 196892, + [SMALL_STATE(6125)] = 196907, + [SMALL_STATE(6126)] = 196922, + [SMALL_STATE(6127)] = 196937, + [SMALL_STATE(6128)] = 196952, + [SMALL_STATE(6129)] = 196967, + [SMALL_STATE(6130)] = 196982, + [SMALL_STATE(6131)] = 196997, + [SMALL_STATE(6132)] = 197016, + [SMALL_STATE(6133)] = 197031, + [SMALL_STATE(6134)] = 197050, + [SMALL_STATE(6135)] = 197069, + [SMALL_STATE(6136)] = 197084, + [SMALL_STATE(6137)] = 197103, + [SMALL_STATE(6138)] = 197118, + [SMALL_STATE(6139)] = 197133, + [SMALL_STATE(6140)] = 197148, + [SMALL_STATE(6141)] = 197163, + [SMALL_STATE(6142)] = 197180, + [SMALL_STATE(6143)] = 197195, + [SMALL_STATE(6144)] = 197210, + [SMALL_STATE(6145)] = 197229, + [SMALL_STATE(6146)] = 197244, + [SMALL_STATE(6147)] = 197259, + [SMALL_STATE(6148)] = 197274, + [SMALL_STATE(6149)] = 197289, + [SMALL_STATE(6150)] = 197304, + [SMALL_STATE(6151)] = 197319, + [SMALL_STATE(6152)] = 197334, + [SMALL_STATE(6153)] = 197349, + [SMALL_STATE(6154)] = 197364, + [SMALL_STATE(6155)] = 197379, + [SMALL_STATE(6156)] = 197394, + [SMALL_STATE(6157)] = 197409, + [SMALL_STATE(6158)] = 197424, + [SMALL_STATE(6159)] = 197439, + [SMALL_STATE(6160)] = 197454, + [SMALL_STATE(6161)] = 197469, + [SMALL_STATE(6162)] = 197484, + [SMALL_STATE(6163)] = 197499, + [SMALL_STATE(6164)] = 197514, + [SMALL_STATE(6165)] = 197529, + [SMALL_STATE(6166)] = 197544, + [SMALL_STATE(6167)] = 197559, + [SMALL_STATE(6168)] = 197578, + [SMALL_STATE(6169)] = 197593, + [SMALL_STATE(6170)] = 197612, + [SMALL_STATE(6171)] = 197627, + [SMALL_STATE(6172)] = 197642, + [SMALL_STATE(6173)] = 197657, + [SMALL_STATE(6174)] = 197672, + [SMALL_STATE(6175)] = 197689, + [SMALL_STATE(6176)] = 197706, + [SMALL_STATE(6177)] = 197723, + [SMALL_STATE(6178)] = 197742, + [SMALL_STATE(6179)] = 197757, + [SMALL_STATE(6180)] = 197772, + [SMALL_STATE(6181)] = 197791, + [SMALL_STATE(6182)] = 197806, + [SMALL_STATE(6183)] = 197821, + [SMALL_STATE(6184)] = 197836, + [SMALL_STATE(6185)] = 197851, + [SMALL_STATE(6186)] = 197866, + [SMALL_STATE(6187)] = 197885, + [SMALL_STATE(6188)] = 197904, + [SMALL_STATE(6189)] = 197923, + [SMALL_STATE(6190)] = 197938, + [SMALL_STATE(6191)] = 197953, + [SMALL_STATE(6192)] = 197972, + [SMALL_STATE(6193)] = 197987, + [SMALL_STATE(6194)] = 198002, + [SMALL_STATE(6195)] = 198021, + [SMALL_STATE(6196)] = 198040, + [SMALL_STATE(6197)] = 198055, + [SMALL_STATE(6198)] = 198070, + [SMALL_STATE(6199)] = 198085, + [SMALL_STATE(6200)] = 198100, + [SMALL_STATE(6201)] = 198115, + [SMALL_STATE(6202)] = 198130, + [SMALL_STATE(6203)] = 198145, + [SMALL_STATE(6204)] = 198160, + [SMALL_STATE(6205)] = 198175, + [SMALL_STATE(6206)] = 198190, + [SMALL_STATE(6207)] = 198205, + [SMALL_STATE(6208)] = 198220, + [SMALL_STATE(6209)] = 198235, + [SMALL_STATE(6210)] = 198250, + [SMALL_STATE(6211)] = 198265, + [SMALL_STATE(6212)] = 198280, + [SMALL_STATE(6213)] = 198299, + [SMALL_STATE(6214)] = 198314, + [SMALL_STATE(6215)] = 198329, + [SMALL_STATE(6216)] = 198344, + [SMALL_STATE(6217)] = 198359, + [SMALL_STATE(6218)] = 198374, + [SMALL_STATE(6219)] = 198389, + [SMALL_STATE(6220)] = 198404, + [SMALL_STATE(6221)] = 198419, + [SMALL_STATE(6222)] = 198434, + [SMALL_STATE(6223)] = 198449, + [SMALL_STATE(6224)] = 198464, + [SMALL_STATE(6225)] = 198479, + [SMALL_STATE(6226)] = 198494, + [SMALL_STATE(6227)] = 198513, + [SMALL_STATE(6228)] = 198528, + [SMALL_STATE(6229)] = 198543, + [SMALL_STATE(6230)] = 198558, + [SMALL_STATE(6231)] = 198577, + [SMALL_STATE(6232)] = 198592, + [SMALL_STATE(6233)] = 198607, + [SMALL_STATE(6234)] = 198622, + [SMALL_STATE(6235)] = 198637, + [SMALL_STATE(6236)] = 198652, + [SMALL_STATE(6237)] = 198667, + [SMALL_STATE(6238)] = 198682, + [SMALL_STATE(6239)] = 198697, + [SMALL_STATE(6240)] = 198712, + [SMALL_STATE(6241)] = 198727, + [SMALL_STATE(6242)] = 198746, + [SMALL_STATE(6243)] = 198761, + [SMALL_STATE(6244)] = 198776, + [SMALL_STATE(6245)] = 198791, + [SMALL_STATE(6246)] = 198810, + [SMALL_STATE(6247)] = 198825, + [SMALL_STATE(6248)] = 198840, + [SMALL_STATE(6249)] = 198855, + [SMALL_STATE(6250)] = 198870, + [SMALL_STATE(6251)] = 198885, + [SMALL_STATE(6252)] = 198900, + [SMALL_STATE(6253)] = 198919, + [SMALL_STATE(6254)] = 198934, + [SMALL_STATE(6255)] = 198953, + [SMALL_STATE(6256)] = 198968, + [SMALL_STATE(6257)] = 198987, + [SMALL_STATE(6258)] = 199002, + [SMALL_STATE(6259)] = 199021, + [SMALL_STATE(6260)] = 199036, + [SMALL_STATE(6261)] = 199055, + [SMALL_STATE(6262)] = 199070, + [SMALL_STATE(6263)] = 199085, + [SMALL_STATE(6264)] = 199100, + [SMALL_STATE(6265)] = 199119, + [SMALL_STATE(6266)] = 199138, + [SMALL_STATE(6267)] = 199153, + [SMALL_STATE(6268)] = 199168, + [SMALL_STATE(6269)] = 199183, + [SMALL_STATE(6270)] = 199198, + [SMALL_STATE(6271)] = 199213, + [SMALL_STATE(6272)] = 199230, + [SMALL_STATE(6273)] = 199247, + [SMALL_STATE(6274)] = 199262, + [SMALL_STATE(6275)] = 199277, + [SMALL_STATE(6276)] = 199292, + [SMALL_STATE(6277)] = 199307, + [SMALL_STATE(6278)] = 199322, + [SMALL_STATE(6279)] = 199337, + [SMALL_STATE(6280)] = 199352, + [SMALL_STATE(6281)] = 199367, + [SMALL_STATE(6282)] = 199382, + [SMALL_STATE(6283)] = 199401, + [SMALL_STATE(6284)] = 199416, + [SMALL_STATE(6285)] = 199435, + [SMALL_STATE(6286)] = 199454, + [SMALL_STATE(6287)] = 199469, + [SMALL_STATE(6288)] = 199484, + [SMALL_STATE(6289)] = 199499, + [SMALL_STATE(6290)] = 199514, + [SMALL_STATE(6291)] = 199529, + [SMALL_STATE(6292)] = 199544, + [SMALL_STATE(6293)] = 199559, + [SMALL_STATE(6294)] = 199575, + [SMALL_STATE(6295)] = 199589, + [SMALL_STATE(6296)] = 199605, + [SMALL_STATE(6297)] = 199621, + [SMALL_STATE(6298)] = 199637, + [SMALL_STATE(6299)] = 199653, + [SMALL_STATE(6300)] = 199669, + [SMALL_STATE(6301)] = 199683, + [SMALL_STATE(6302)] = 199699, + [SMALL_STATE(6303)] = 199715, + [SMALL_STATE(6304)] = 199731, + [SMALL_STATE(6305)] = 199747, + [SMALL_STATE(6306)] = 199763, + [SMALL_STATE(6307)] = 199779, + [SMALL_STATE(6308)] = 199793, + [SMALL_STATE(6309)] = 199809, + [SMALL_STATE(6310)] = 199825, + [SMALL_STATE(6311)] = 199841, + [SMALL_STATE(6312)] = 199857, + [SMALL_STATE(6313)] = 199873, + [SMALL_STATE(6314)] = 199889, + [SMALL_STATE(6315)] = 199905, + [SMALL_STATE(6316)] = 199921, + [SMALL_STATE(6317)] = 199937, + [SMALL_STATE(6318)] = 199953, + [SMALL_STATE(6319)] = 199969, + [SMALL_STATE(6320)] = 199985, + [SMALL_STATE(6321)] = 200001, + [SMALL_STATE(6322)] = 200017, + [SMALL_STATE(6323)] = 200033, + [SMALL_STATE(6324)] = 200047, + [SMALL_STATE(6325)] = 200063, + [SMALL_STATE(6326)] = 200079, + [SMALL_STATE(6327)] = 200093, + [SMALL_STATE(6328)] = 200107, + [SMALL_STATE(6329)] = 200121, + [SMALL_STATE(6330)] = 200137, + [SMALL_STATE(6331)] = 200153, + [SMALL_STATE(6332)] = 200167, + [SMALL_STATE(6333)] = 200183, + [SMALL_STATE(6334)] = 200199, + [SMALL_STATE(6335)] = 200213, + [SMALL_STATE(6336)] = 200227, + [SMALL_STATE(6337)] = 200241, + [SMALL_STATE(6338)] = 200255, + [SMALL_STATE(6339)] = 200271, + [SMALL_STATE(6340)] = 200285, + [SMALL_STATE(6341)] = 200299, + [SMALL_STATE(6342)] = 200313, + [SMALL_STATE(6343)] = 200327, + [SMALL_STATE(6344)] = 200341, + [SMALL_STATE(6345)] = 200357, + [SMALL_STATE(6346)] = 200371, + [SMALL_STATE(6347)] = 200387, + [SMALL_STATE(6348)] = 200403, + [SMALL_STATE(6349)] = 200417, + [SMALL_STATE(6350)] = 200431, + [SMALL_STATE(6351)] = 200447, + [SMALL_STATE(6352)] = 200463, + [SMALL_STATE(6353)] = 200479, + [SMALL_STATE(6354)] = 200495, + [SMALL_STATE(6355)] = 200511, + [SMALL_STATE(6356)] = 200527, + [SMALL_STATE(6357)] = 200541, + [SMALL_STATE(6358)] = 200555, + [SMALL_STATE(6359)] = 200571, + [SMALL_STATE(6360)] = 200585, + [SMALL_STATE(6361)] = 200601, + [SMALL_STATE(6362)] = 200617, + [SMALL_STATE(6363)] = 200631, + [SMALL_STATE(6364)] = 200647, + [SMALL_STATE(6365)] = 200663, + [SMALL_STATE(6366)] = 200679, + [SMALL_STATE(6367)] = 200693, + [SMALL_STATE(6368)] = 200709, + [SMALL_STATE(6369)] = 200725, + [SMALL_STATE(6370)] = 200741, + [SMALL_STATE(6371)] = 200755, + [SMALL_STATE(6372)] = 200769, + [SMALL_STATE(6373)] = 200783, + [SMALL_STATE(6374)] = 200797, + [SMALL_STATE(6375)] = 200811, + [SMALL_STATE(6376)] = 200827, + [SMALL_STATE(6377)] = 200843, + [SMALL_STATE(6378)] = 200857, + [SMALL_STATE(6379)] = 200873, + [SMALL_STATE(6380)] = 200887, + [SMALL_STATE(6381)] = 200901, + [SMALL_STATE(6382)] = 200915, + [SMALL_STATE(6383)] = 200929, + [SMALL_STATE(6384)] = 200945, + [SMALL_STATE(6385)] = 200961, + [SMALL_STATE(6386)] = 200977, + [SMALL_STATE(6387)] = 200991, + [SMALL_STATE(6388)] = 201005, + [SMALL_STATE(6389)] = 201021, + [SMALL_STATE(6390)] = 201035, + [SMALL_STATE(6391)] = 201049, + [SMALL_STATE(6392)] = 201063, + [SMALL_STATE(6393)] = 201077, + [SMALL_STATE(6394)] = 201093, + [SMALL_STATE(6395)] = 201107, + [SMALL_STATE(6396)] = 201121, + [SMALL_STATE(6397)] = 201135, + [SMALL_STATE(6398)] = 201151, + [SMALL_STATE(6399)] = 201167, + [SMALL_STATE(6400)] = 201183, + [SMALL_STATE(6401)] = 201199, + [SMALL_STATE(6402)] = 201215, + [SMALL_STATE(6403)] = 201231, + [SMALL_STATE(6404)] = 201247, + [SMALL_STATE(6405)] = 201263, + [SMALL_STATE(6406)] = 201279, + [SMALL_STATE(6407)] = 201295, + [SMALL_STATE(6408)] = 201311, + [SMALL_STATE(6409)] = 201327, + [SMALL_STATE(6410)] = 201343, + [SMALL_STATE(6411)] = 201359, + [SMALL_STATE(6412)] = 201375, + [SMALL_STATE(6413)] = 201391, + [SMALL_STATE(6414)] = 201407, + [SMALL_STATE(6415)] = 201423, + [SMALL_STATE(6416)] = 201439, + [SMALL_STATE(6417)] = 201455, + [SMALL_STATE(6418)] = 201471, + [SMALL_STATE(6419)] = 201487, + [SMALL_STATE(6420)] = 201503, + [SMALL_STATE(6421)] = 201519, + [SMALL_STATE(6422)] = 201535, + [SMALL_STATE(6423)] = 201549, + [SMALL_STATE(6424)] = 201565, + [SMALL_STATE(6425)] = 201581, + [SMALL_STATE(6426)] = 201597, + [SMALL_STATE(6427)] = 201613, + [SMALL_STATE(6428)] = 201627, + [SMALL_STATE(6429)] = 201641, + [SMALL_STATE(6430)] = 201655, + [SMALL_STATE(6431)] = 201671, + [SMALL_STATE(6432)] = 201685, + [SMALL_STATE(6433)] = 201699, + [SMALL_STATE(6434)] = 201715, + [SMALL_STATE(6435)] = 201729, + [SMALL_STATE(6436)] = 201745, + [SMALL_STATE(6437)] = 201759, + [SMALL_STATE(6438)] = 201775, + [SMALL_STATE(6439)] = 201791, + [SMALL_STATE(6440)] = 201805, + [SMALL_STATE(6441)] = 201821, + [SMALL_STATE(6442)] = 201837, + [SMALL_STATE(6443)] = 201851, + [SMALL_STATE(6444)] = 201865, + [SMALL_STATE(6445)] = 201881, + [SMALL_STATE(6446)] = 201897, + [SMALL_STATE(6447)] = 201913, + [SMALL_STATE(6448)] = 201929, + [SMALL_STATE(6449)] = 201945, + [SMALL_STATE(6450)] = 201961, + [SMALL_STATE(6451)] = 201977, + [SMALL_STATE(6452)] = 201993, + [SMALL_STATE(6453)] = 202009, + [SMALL_STATE(6454)] = 202023, + [SMALL_STATE(6455)] = 202039, + [SMALL_STATE(6456)] = 202055, + [SMALL_STATE(6457)] = 202071, + [SMALL_STATE(6458)] = 202087, + [SMALL_STATE(6459)] = 202101, + [SMALL_STATE(6460)] = 202115, + [SMALL_STATE(6461)] = 202131, + [SMALL_STATE(6462)] = 202147, + [SMALL_STATE(6463)] = 202163, + [SMALL_STATE(6464)] = 202177, + [SMALL_STATE(6465)] = 202193, + [SMALL_STATE(6466)] = 202209, + [SMALL_STATE(6467)] = 202225, + [SMALL_STATE(6468)] = 202241, + [SMALL_STATE(6469)] = 202257, + [SMALL_STATE(6470)] = 202273, + [SMALL_STATE(6471)] = 202289, + [SMALL_STATE(6472)] = 202305, + [SMALL_STATE(6473)] = 202319, + [SMALL_STATE(6474)] = 202335, + [SMALL_STATE(6475)] = 202351, + [SMALL_STATE(6476)] = 202367, + [SMALL_STATE(6477)] = 202381, + [SMALL_STATE(6478)] = 202397, + [SMALL_STATE(6479)] = 202413, + [SMALL_STATE(6480)] = 202427, + [SMALL_STATE(6481)] = 202441, + [SMALL_STATE(6482)] = 202457, + [SMALL_STATE(6483)] = 202473, + [SMALL_STATE(6484)] = 202487, + [SMALL_STATE(6485)] = 202503, + [SMALL_STATE(6486)] = 202519, + [SMALL_STATE(6487)] = 202535, + [SMALL_STATE(6488)] = 202551, + [SMALL_STATE(6489)] = 202567, + [SMALL_STATE(6490)] = 202583, + [SMALL_STATE(6491)] = 202599, + [SMALL_STATE(6492)] = 202615, + [SMALL_STATE(6493)] = 202631, + [SMALL_STATE(6494)] = 202647, + [SMALL_STATE(6495)] = 202663, + [SMALL_STATE(6496)] = 202677, + [SMALL_STATE(6497)] = 202691, + [SMALL_STATE(6498)] = 202707, + [SMALL_STATE(6499)] = 202723, + [SMALL_STATE(6500)] = 202737, + [SMALL_STATE(6501)] = 202753, + [SMALL_STATE(6502)] = 202769, + [SMALL_STATE(6503)] = 202783, + [SMALL_STATE(6504)] = 202799, + [SMALL_STATE(6505)] = 202815, + [SMALL_STATE(6506)] = 202829, + [SMALL_STATE(6507)] = 202845, + [SMALL_STATE(6508)] = 202861, + [SMALL_STATE(6509)] = 202877, + [SMALL_STATE(6510)] = 202893, + [SMALL_STATE(6511)] = 202907, + [SMALL_STATE(6512)] = 202923, + [SMALL_STATE(6513)] = 202939, + [SMALL_STATE(6514)] = 202955, + [SMALL_STATE(6515)] = 202971, + [SMALL_STATE(6516)] = 202987, + [SMALL_STATE(6517)] = 203003, + [SMALL_STATE(6518)] = 203017, + [SMALL_STATE(6519)] = 203031, + [SMALL_STATE(6520)] = 203047, + [SMALL_STATE(6521)] = 203061, + [SMALL_STATE(6522)] = 203077, + [SMALL_STATE(6523)] = 203091, + [SMALL_STATE(6524)] = 203105, + [SMALL_STATE(6525)] = 203121, + [SMALL_STATE(6526)] = 203137, + [SMALL_STATE(6527)] = 203153, + [SMALL_STATE(6528)] = 203169, + [SMALL_STATE(6529)] = 203185, + [SMALL_STATE(6530)] = 203199, + [SMALL_STATE(6531)] = 203215, + [SMALL_STATE(6532)] = 203231, + [SMALL_STATE(6533)] = 203247, + [SMALL_STATE(6534)] = 203263, + [SMALL_STATE(6535)] = 203279, + [SMALL_STATE(6536)] = 203293, + [SMALL_STATE(6537)] = 203307, + [SMALL_STATE(6538)] = 203321, + [SMALL_STATE(6539)] = 203335, + [SMALL_STATE(6540)] = 203351, + [SMALL_STATE(6541)] = 203367, + [SMALL_STATE(6542)] = 203381, + [SMALL_STATE(6543)] = 203395, + [SMALL_STATE(6544)] = 203411, + [SMALL_STATE(6545)] = 203425, + [SMALL_STATE(6546)] = 203439, + [SMALL_STATE(6547)] = 203455, + [SMALL_STATE(6548)] = 203469, + [SMALL_STATE(6549)] = 203483, + [SMALL_STATE(6550)] = 203499, + [SMALL_STATE(6551)] = 203513, + [SMALL_STATE(6552)] = 203529, + [SMALL_STATE(6553)] = 203545, + [SMALL_STATE(6554)] = 203561, + [SMALL_STATE(6555)] = 203577, + [SMALL_STATE(6556)] = 203591, + [SMALL_STATE(6557)] = 203605, + [SMALL_STATE(6558)] = 203621, + [SMALL_STATE(6559)] = 203637, + [SMALL_STATE(6560)] = 203653, + [SMALL_STATE(6561)] = 203669, + [SMALL_STATE(6562)] = 203683, + [SMALL_STATE(6563)] = 203699, + [SMALL_STATE(6564)] = 203715, + [SMALL_STATE(6565)] = 203731, + [SMALL_STATE(6566)] = 203745, + [SMALL_STATE(6567)] = 203759, + [SMALL_STATE(6568)] = 203775, + [SMALL_STATE(6569)] = 203791, + [SMALL_STATE(6570)] = 203807, + [SMALL_STATE(6571)] = 203821, + [SMALL_STATE(6572)] = 203837, + [SMALL_STATE(6573)] = 203853, + [SMALL_STATE(6574)] = 203867, + [SMALL_STATE(6575)] = 203883, + [SMALL_STATE(6576)] = 203899, + [SMALL_STATE(6577)] = 203915, + [SMALL_STATE(6578)] = 203929, + [SMALL_STATE(6579)] = 203945, + [SMALL_STATE(6580)] = 203959, + [SMALL_STATE(6581)] = 203973, + [SMALL_STATE(6582)] = 203987, + [SMALL_STATE(6583)] = 204001, + [SMALL_STATE(6584)] = 204017, + [SMALL_STATE(6585)] = 204031, + [SMALL_STATE(6586)] = 204047, + [SMALL_STATE(6587)] = 204063, + [SMALL_STATE(6588)] = 204079, + [SMALL_STATE(6589)] = 204095, + [SMALL_STATE(6590)] = 204111, + [SMALL_STATE(6591)] = 204127, + [SMALL_STATE(6592)] = 204143, + [SMALL_STATE(6593)] = 204159, + [SMALL_STATE(6594)] = 204175, + [SMALL_STATE(6595)] = 204191, + [SMALL_STATE(6596)] = 204207, + [SMALL_STATE(6597)] = 204221, + [SMALL_STATE(6598)] = 204237, + [SMALL_STATE(6599)] = 204253, + [SMALL_STATE(6600)] = 204267, + [SMALL_STATE(6601)] = 204281, + [SMALL_STATE(6602)] = 204295, + [SMALL_STATE(6603)] = 204309, + [SMALL_STATE(6604)] = 204325, + [SMALL_STATE(6605)] = 204341, + [SMALL_STATE(6606)] = 204355, + [SMALL_STATE(6607)] = 204369, + [SMALL_STATE(6608)] = 204383, + [SMALL_STATE(6609)] = 204399, + [SMALL_STATE(6610)] = 204415, + [SMALL_STATE(6611)] = 204431, + [SMALL_STATE(6612)] = 204445, + [SMALL_STATE(6613)] = 204459, + [SMALL_STATE(6614)] = 204473, + [SMALL_STATE(6615)] = 204487, + [SMALL_STATE(6616)] = 204501, + [SMALL_STATE(6617)] = 204517, + [SMALL_STATE(6618)] = 204533, + [SMALL_STATE(6619)] = 204547, + [SMALL_STATE(6620)] = 204563, + [SMALL_STATE(6621)] = 204579, + [SMALL_STATE(6622)] = 204595, + [SMALL_STATE(6623)] = 204611, + [SMALL_STATE(6624)] = 204627, + [SMALL_STATE(6625)] = 204643, + [SMALL_STATE(6626)] = 204659, + [SMALL_STATE(6627)] = 204675, + [SMALL_STATE(6628)] = 204691, + [SMALL_STATE(6629)] = 204707, + [SMALL_STATE(6630)] = 204721, + [SMALL_STATE(6631)] = 204737, + [SMALL_STATE(6632)] = 204751, + [SMALL_STATE(6633)] = 204765, + [SMALL_STATE(6634)] = 204779, + [SMALL_STATE(6635)] = 204795, + [SMALL_STATE(6636)] = 204811, + [SMALL_STATE(6637)] = 204827, + [SMALL_STATE(6638)] = 204841, + [SMALL_STATE(6639)] = 204855, + [SMALL_STATE(6640)] = 204871, + [SMALL_STATE(6641)] = 204887, + [SMALL_STATE(6642)] = 204903, + [SMALL_STATE(6643)] = 204919, + [SMALL_STATE(6644)] = 204933, + [SMALL_STATE(6645)] = 204947, + [SMALL_STATE(6646)] = 204961, + [SMALL_STATE(6647)] = 204975, + [SMALL_STATE(6648)] = 204989, + [SMALL_STATE(6649)] = 205005, + [SMALL_STATE(6650)] = 205021, + [SMALL_STATE(6651)] = 205037, + [SMALL_STATE(6652)] = 205053, + [SMALL_STATE(6653)] = 205069, + [SMALL_STATE(6654)] = 205085, + [SMALL_STATE(6655)] = 205099, + [SMALL_STATE(6656)] = 205115, + [SMALL_STATE(6657)] = 205129, + [SMALL_STATE(6658)] = 205143, + [SMALL_STATE(6659)] = 205157, + [SMALL_STATE(6660)] = 205173, + [SMALL_STATE(6661)] = 205189, + [SMALL_STATE(6662)] = 205205, + [SMALL_STATE(6663)] = 205219, + [SMALL_STATE(6664)] = 205233, + [SMALL_STATE(6665)] = 205249, + [SMALL_STATE(6666)] = 205263, + [SMALL_STATE(6667)] = 205279, + [SMALL_STATE(6668)] = 205295, + [SMALL_STATE(6669)] = 205309, + [SMALL_STATE(6670)] = 205323, + [SMALL_STATE(6671)] = 205339, + [SMALL_STATE(6672)] = 205355, + [SMALL_STATE(6673)] = 205369, + [SMALL_STATE(6674)] = 205385, + [SMALL_STATE(6675)] = 205399, + [SMALL_STATE(6676)] = 205415, + [SMALL_STATE(6677)] = 205431, + [SMALL_STATE(6678)] = 205447, + [SMALL_STATE(6679)] = 205463, + [SMALL_STATE(6680)] = 205479, + [SMALL_STATE(6681)] = 205493, + [SMALL_STATE(6682)] = 205507, + [SMALL_STATE(6683)] = 205521, + [SMALL_STATE(6684)] = 205537, + [SMALL_STATE(6685)] = 205553, + [SMALL_STATE(6686)] = 205567, + [SMALL_STATE(6687)] = 205581, + [SMALL_STATE(6688)] = 205597, + [SMALL_STATE(6689)] = 205611, + [SMALL_STATE(6690)] = 205627, + [SMALL_STATE(6691)] = 205641, + [SMALL_STATE(6692)] = 205655, + [SMALL_STATE(6693)] = 205671, + [SMALL_STATE(6694)] = 205685, + [SMALL_STATE(6695)] = 205699, + [SMALL_STATE(6696)] = 205713, + [SMALL_STATE(6697)] = 205727, + [SMALL_STATE(6698)] = 205743, + [SMALL_STATE(6699)] = 205757, + [SMALL_STATE(6700)] = 205771, + [SMALL_STATE(6701)] = 205787, + [SMALL_STATE(6702)] = 205801, + [SMALL_STATE(6703)] = 205817, + [SMALL_STATE(6704)] = 205833, + [SMALL_STATE(6705)] = 205847, + [SMALL_STATE(6706)] = 205861, + [SMALL_STATE(6707)] = 205875, + [SMALL_STATE(6708)] = 205891, + [SMALL_STATE(6709)] = 205907, + [SMALL_STATE(6710)] = 205921, + [SMALL_STATE(6711)] = 205935, + [SMALL_STATE(6712)] = 205951, + [SMALL_STATE(6713)] = 205965, + [SMALL_STATE(6714)] = 205981, + [SMALL_STATE(6715)] = 205995, + [SMALL_STATE(6716)] = 206011, + [SMALL_STATE(6717)] = 206027, + [SMALL_STATE(6718)] = 206043, + [SMALL_STATE(6719)] = 206059, + [SMALL_STATE(6720)] = 206075, + [SMALL_STATE(6721)] = 206091, + [SMALL_STATE(6722)] = 206107, + [SMALL_STATE(6723)] = 206123, + [SMALL_STATE(6724)] = 206139, + [SMALL_STATE(6725)] = 206155, + [SMALL_STATE(6726)] = 206171, + [SMALL_STATE(6727)] = 206185, + [SMALL_STATE(6728)] = 206199, + [SMALL_STATE(6729)] = 206215, + [SMALL_STATE(6730)] = 206229, + [SMALL_STATE(6731)] = 206245, + [SMALL_STATE(6732)] = 206259, + [SMALL_STATE(6733)] = 206275, + [SMALL_STATE(6734)] = 206289, + [SMALL_STATE(6735)] = 206305, + [SMALL_STATE(6736)] = 206321, + [SMALL_STATE(6737)] = 206335, + [SMALL_STATE(6738)] = 206351, + [SMALL_STATE(6739)] = 206367, + [SMALL_STATE(6740)] = 206381, + [SMALL_STATE(6741)] = 206395, + [SMALL_STATE(6742)] = 206409, + [SMALL_STATE(6743)] = 206423, + [SMALL_STATE(6744)] = 206439, + [SMALL_STATE(6745)] = 206455, + [SMALL_STATE(6746)] = 206471, + [SMALL_STATE(6747)] = 206487, + [SMALL_STATE(6748)] = 206501, + [SMALL_STATE(6749)] = 206515, + [SMALL_STATE(6750)] = 206531, + [SMALL_STATE(6751)] = 206545, + [SMALL_STATE(6752)] = 206559, + [SMALL_STATE(6753)] = 206575, + [SMALL_STATE(6754)] = 206589, + [SMALL_STATE(6755)] = 206605, + [SMALL_STATE(6756)] = 206621, + [SMALL_STATE(6757)] = 206637, + [SMALL_STATE(6758)] = 206651, + [SMALL_STATE(6759)] = 206667, + [SMALL_STATE(6760)] = 206681, + [SMALL_STATE(6761)] = 206697, + [SMALL_STATE(6762)] = 206713, + [SMALL_STATE(6763)] = 206729, + [SMALL_STATE(6764)] = 206743, + [SMALL_STATE(6765)] = 206757, + [SMALL_STATE(6766)] = 206773, + [SMALL_STATE(6767)] = 206787, + [SMALL_STATE(6768)] = 206801, + [SMALL_STATE(6769)] = 206817, + [SMALL_STATE(6770)] = 206833, + [SMALL_STATE(6771)] = 206847, + [SMALL_STATE(6772)] = 206863, + [SMALL_STATE(6773)] = 206877, + [SMALL_STATE(6774)] = 206893, + [SMALL_STATE(6775)] = 206907, + [SMALL_STATE(6776)] = 206923, + [SMALL_STATE(6777)] = 206937, + [SMALL_STATE(6778)] = 206953, + [SMALL_STATE(6779)] = 206967, + [SMALL_STATE(6780)] = 206983, + [SMALL_STATE(6781)] = 206999, + [SMALL_STATE(6782)] = 207013, + [SMALL_STATE(6783)] = 207029, + [SMALL_STATE(6784)] = 207043, + [SMALL_STATE(6785)] = 207057, + [SMALL_STATE(6786)] = 207073, + [SMALL_STATE(6787)] = 207089, + [SMALL_STATE(6788)] = 207105, + [SMALL_STATE(6789)] = 207119, + [SMALL_STATE(6790)] = 207133, + [SMALL_STATE(6791)] = 207149, + [SMALL_STATE(6792)] = 207163, + [SMALL_STATE(6793)] = 207177, + [SMALL_STATE(6794)] = 207193, + [SMALL_STATE(6795)] = 207207, + [SMALL_STATE(6796)] = 207223, + [SMALL_STATE(6797)] = 207239, + [SMALL_STATE(6798)] = 207255, + [SMALL_STATE(6799)] = 207271, + [SMALL_STATE(6800)] = 207285, + [SMALL_STATE(6801)] = 207301, + [SMALL_STATE(6802)] = 207315, + [SMALL_STATE(6803)] = 207331, + [SMALL_STATE(6804)] = 207345, + [SMALL_STATE(6805)] = 207361, + [SMALL_STATE(6806)] = 207375, + [SMALL_STATE(6807)] = 207391, + [SMALL_STATE(6808)] = 207405, + [SMALL_STATE(6809)] = 207421, + [SMALL_STATE(6810)] = 207437, + [SMALL_STATE(6811)] = 207451, + [SMALL_STATE(6812)] = 207465, + [SMALL_STATE(6813)] = 207481, + [SMALL_STATE(6814)] = 207495, + [SMALL_STATE(6815)] = 207509, + [SMALL_STATE(6816)] = 207523, + [SMALL_STATE(6817)] = 207537, + [SMALL_STATE(6818)] = 207553, + [SMALL_STATE(6819)] = 207569, + [SMALL_STATE(6820)] = 207585, + [SMALL_STATE(6821)] = 207599, + [SMALL_STATE(6822)] = 207615, + [SMALL_STATE(6823)] = 207631, + [SMALL_STATE(6824)] = 207647, + [SMALL_STATE(6825)] = 207663, + [SMALL_STATE(6826)] = 207677, + [SMALL_STATE(6827)] = 207693, + [SMALL_STATE(6828)] = 207707, + [SMALL_STATE(6829)] = 207723, + [SMALL_STATE(6830)] = 207737, + [SMALL_STATE(6831)] = 207751, + [SMALL_STATE(6832)] = 207767, + [SMALL_STATE(6833)] = 207781, + [SMALL_STATE(6834)] = 207795, + [SMALL_STATE(6835)] = 207811, + [SMALL_STATE(6836)] = 207825, + [SMALL_STATE(6837)] = 207841, + [SMALL_STATE(6838)] = 207857, + [SMALL_STATE(6839)] = 207871, + [SMALL_STATE(6840)] = 207885, + [SMALL_STATE(6841)] = 207899, + [SMALL_STATE(6842)] = 207915, + [SMALL_STATE(6843)] = 207931, + [SMALL_STATE(6844)] = 207945, + [SMALL_STATE(6845)] = 207959, + [SMALL_STATE(6846)] = 207975, + [SMALL_STATE(6847)] = 207991, + [SMALL_STATE(6848)] = 208007, + [SMALL_STATE(6849)] = 208023, + [SMALL_STATE(6850)] = 208039, + [SMALL_STATE(6851)] = 208055, + [SMALL_STATE(6852)] = 208069, + [SMALL_STATE(6853)] = 208083, + [SMALL_STATE(6854)] = 208097, + [SMALL_STATE(6855)] = 208113, + [SMALL_STATE(6856)] = 208127, + [SMALL_STATE(6857)] = 208141, + [SMALL_STATE(6858)] = 208157, + [SMALL_STATE(6859)] = 208173, + [SMALL_STATE(6860)] = 208189, + [SMALL_STATE(6861)] = 208203, + [SMALL_STATE(6862)] = 208219, + [SMALL_STATE(6863)] = 208235, + [SMALL_STATE(6864)] = 208251, + [SMALL_STATE(6865)] = 208267, + [SMALL_STATE(6866)] = 208283, + [SMALL_STATE(6867)] = 208297, + [SMALL_STATE(6868)] = 208313, + [SMALL_STATE(6869)] = 208327, + [SMALL_STATE(6870)] = 208341, + [SMALL_STATE(6871)] = 208357, + [SMALL_STATE(6872)] = 208373, + [SMALL_STATE(6873)] = 208389, + [SMALL_STATE(6874)] = 208405, + [SMALL_STATE(6875)] = 208421, + [SMALL_STATE(6876)] = 208437, + [SMALL_STATE(6877)] = 208453, + [SMALL_STATE(6878)] = 208469, + [SMALL_STATE(6879)] = 208485, + [SMALL_STATE(6880)] = 208501, + [SMALL_STATE(6881)] = 208515, + [SMALL_STATE(6882)] = 208531, + [SMALL_STATE(6883)] = 208547, + [SMALL_STATE(6884)] = 208563, + [SMALL_STATE(6885)] = 208579, + [SMALL_STATE(6886)] = 208595, + [SMALL_STATE(6887)] = 208611, + [SMALL_STATE(6888)] = 208625, + [SMALL_STATE(6889)] = 208641, + [SMALL_STATE(6890)] = 208657, + [SMALL_STATE(6891)] = 208673, + [SMALL_STATE(6892)] = 208689, + [SMALL_STATE(6893)] = 208705, + [SMALL_STATE(6894)] = 208721, + [SMALL_STATE(6895)] = 208735, + [SMALL_STATE(6896)] = 208749, + [SMALL_STATE(6897)] = 208765, + [SMALL_STATE(6898)] = 208779, + [SMALL_STATE(6899)] = 208795, + [SMALL_STATE(6900)] = 208811, + [SMALL_STATE(6901)] = 208827, + [SMALL_STATE(6902)] = 208843, + [SMALL_STATE(6903)] = 208859, + [SMALL_STATE(6904)] = 208875, + [SMALL_STATE(6905)] = 208891, + [SMALL_STATE(6906)] = 208907, + [SMALL_STATE(6907)] = 208923, + [SMALL_STATE(6908)] = 208939, + [SMALL_STATE(6909)] = 208955, + [SMALL_STATE(6910)] = 208971, + [SMALL_STATE(6911)] = 208987, + [SMALL_STATE(6912)] = 209001, + [SMALL_STATE(6913)] = 209015, + [SMALL_STATE(6914)] = 209031, + [SMALL_STATE(6915)] = 209045, + [SMALL_STATE(6916)] = 209059, + [SMALL_STATE(6917)] = 209075, + [SMALL_STATE(6918)] = 209089, + [SMALL_STATE(6919)] = 209105, + [SMALL_STATE(6920)] = 209119, + [SMALL_STATE(6921)] = 209135, + [SMALL_STATE(6922)] = 209149, + [SMALL_STATE(6923)] = 209163, + [SMALL_STATE(6924)] = 209179, + [SMALL_STATE(6925)] = 209195, + [SMALL_STATE(6926)] = 209211, + [SMALL_STATE(6927)] = 209227, + [SMALL_STATE(6928)] = 209241, + [SMALL_STATE(6929)] = 209255, + [SMALL_STATE(6930)] = 209271, + [SMALL_STATE(6931)] = 209287, + [SMALL_STATE(6932)] = 209303, + [SMALL_STATE(6933)] = 209317, + [SMALL_STATE(6934)] = 209333, + [SMALL_STATE(6935)] = 209347, + [SMALL_STATE(6936)] = 209363, + [SMALL_STATE(6937)] = 209379, + [SMALL_STATE(6938)] = 209393, + [SMALL_STATE(6939)] = 209409, + [SMALL_STATE(6940)] = 209422, + [SMALL_STATE(6941)] = 209435, + [SMALL_STATE(6942)] = 209448, + [SMALL_STATE(6943)] = 209461, + [SMALL_STATE(6944)] = 209474, + [SMALL_STATE(6945)] = 209487, + [SMALL_STATE(6946)] = 209500, + [SMALL_STATE(6947)] = 209513, + [SMALL_STATE(6948)] = 209526, + [SMALL_STATE(6949)] = 209539, + [SMALL_STATE(6950)] = 209552, + [SMALL_STATE(6951)] = 209565, + [SMALL_STATE(6952)] = 209578, + [SMALL_STATE(6953)] = 209591, + [SMALL_STATE(6954)] = 209604, + [SMALL_STATE(6955)] = 209617, + [SMALL_STATE(6956)] = 209630, + [SMALL_STATE(6957)] = 209643, + [SMALL_STATE(6958)] = 209656, + [SMALL_STATE(6959)] = 209669, + [SMALL_STATE(6960)] = 209682, + [SMALL_STATE(6961)] = 209695, + [SMALL_STATE(6962)] = 209708, + [SMALL_STATE(6963)] = 209721, + [SMALL_STATE(6964)] = 209734, + [SMALL_STATE(6965)] = 209747, + [SMALL_STATE(6966)] = 209760, + [SMALL_STATE(6967)] = 209773, + [SMALL_STATE(6968)] = 209786, + [SMALL_STATE(6969)] = 209799, + [SMALL_STATE(6970)] = 209812, + [SMALL_STATE(6971)] = 209825, + [SMALL_STATE(6972)] = 209838, + [SMALL_STATE(6973)] = 209851, + [SMALL_STATE(6974)] = 209864, + [SMALL_STATE(6975)] = 209877, + [SMALL_STATE(6976)] = 209890, + [SMALL_STATE(6977)] = 209903, + [SMALL_STATE(6978)] = 209916, + [SMALL_STATE(6979)] = 209929, + [SMALL_STATE(6980)] = 209942, + [SMALL_STATE(6981)] = 209955, + [SMALL_STATE(6982)] = 209968, + [SMALL_STATE(6983)] = 209981, + [SMALL_STATE(6984)] = 209994, + [SMALL_STATE(6985)] = 210007, + [SMALL_STATE(6986)] = 210020, + [SMALL_STATE(6987)] = 210033, + [SMALL_STATE(6988)] = 210046, + [SMALL_STATE(6989)] = 210059, + [SMALL_STATE(6990)] = 210072, + [SMALL_STATE(6991)] = 210085, + [SMALL_STATE(6992)] = 210098, + [SMALL_STATE(6993)] = 210111, + [SMALL_STATE(6994)] = 210124, + [SMALL_STATE(6995)] = 210137, + [SMALL_STATE(6996)] = 210150, + [SMALL_STATE(6997)] = 210163, + [SMALL_STATE(6998)] = 210176, + [SMALL_STATE(6999)] = 210189, + [SMALL_STATE(7000)] = 210202, + [SMALL_STATE(7001)] = 210215, + [SMALL_STATE(7002)] = 210228, + [SMALL_STATE(7003)] = 210241, + [SMALL_STATE(7004)] = 210254, + [SMALL_STATE(7005)] = 210267, + [SMALL_STATE(7006)] = 210280, + [SMALL_STATE(7007)] = 210293, + [SMALL_STATE(7008)] = 210306, + [SMALL_STATE(7009)] = 210319, + [SMALL_STATE(7010)] = 210332, + [SMALL_STATE(7011)] = 210345, + [SMALL_STATE(7012)] = 210358, + [SMALL_STATE(7013)] = 210371, + [SMALL_STATE(7014)] = 210384, + [SMALL_STATE(7015)] = 210397, + [SMALL_STATE(7016)] = 210410, + [SMALL_STATE(7017)] = 210423, + [SMALL_STATE(7018)] = 210436, + [SMALL_STATE(7019)] = 210449, + [SMALL_STATE(7020)] = 210462, + [SMALL_STATE(7021)] = 210475, + [SMALL_STATE(7022)] = 210488, + [SMALL_STATE(7023)] = 210501, + [SMALL_STATE(7024)] = 210514, + [SMALL_STATE(7025)] = 210527, + [SMALL_STATE(7026)] = 210540, + [SMALL_STATE(7027)] = 210553, + [SMALL_STATE(7028)] = 210566, + [SMALL_STATE(7029)] = 210579, + [SMALL_STATE(7030)] = 210592, + [SMALL_STATE(7031)] = 210605, + [SMALL_STATE(7032)] = 210618, + [SMALL_STATE(7033)] = 210631, + [SMALL_STATE(7034)] = 210644, + [SMALL_STATE(7035)] = 210657, + [SMALL_STATE(7036)] = 210670, + [SMALL_STATE(7037)] = 210683, + [SMALL_STATE(7038)] = 210696, + [SMALL_STATE(7039)] = 210709, + [SMALL_STATE(7040)] = 210722, + [SMALL_STATE(7041)] = 210735, + [SMALL_STATE(7042)] = 210748, + [SMALL_STATE(7043)] = 210761, + [SMALL_STATE(7044)] = 210774, + [SMALL_STATE(7045)] = 210787, + [SMALL_STATE(7046)] = 210800, + [SMALL_STATE(7047)] = 210813, + [SMALL_STATE(7048)] = 210826, + [SMALL_STATE(7049)] = 210839, + [SMALL_STATE(7050)] = 210852, + [SMALL_STATE(7051)] = 210865, + [SMALL_STATE(7052)] = 210878, + [SMALL_STATE(7053)] = 210891, + [SMALL_STATE(7054)] = 210904, + [SMALL_STATE(7055)] = 210917, + [SMALL_STATE(7056)] = 210930, + [SMALL_STATE(7057)] = 210943, + [SMALL_STATE(7058)] = 210956, + [SMALL_STATE(7059)] = 210969, + [SMALL_STATE(7060)] = 210982, + [SMALL_STATE(7061)] = 210995, + [SMALL_STATE(7062)] = 211008, + [SMALL_STATE(7063)] = 211021, + [SMALL_STATE(7064)] = 211034, + [SMALL_STATE(7065)] = 211047, + [SMALL_STATE(7066)] = 211060, + [SMALL_STATE(7067)] = 211073, + [SMALL_STATE(7068)] = 211086, + [SMALL_STATE(7069)] = 211099, + [SMALL_STATE(7070)] = 211112, + [SMALL_STATE(7071)] = 211125, + [SMALL_STATE(7072)] = 211138, + [SMALL_STATE(7073)] = 211151, + [SMALL_STATE(7074)] = 211164, + [SMALL_STATE(7075)] = 211177, + [SMALL_STATE(7076)] = 211190, + [SMALL_STATE(7077)] = 211203, + [SMALL_STATE(7078)] = 211216, + [SMALL_STATE(7079)] = 211229, + [SMALL_STATE(7080)] = 211242, + [SMALL_STATE(7081)] = 211255, + [SMALL_STATE(7082)] = 211268, + [SMALL_STATE(7083)] = 211281, + [SMALL_STATE(7084)] = 211294, + [SMALL_STATE(7085)] = 211307, + [SMALL_STATE(7086)] = 211320, + [SMALL_STATE(7087)] = 211333, + [SMALL_STATE(7088)] = 211346, + [SMALL_STATE(7089)] = 211359, + [SMALL_STATE(7090)] = 211372, + [SMALL_STATE(7091)] = 211385, + [SMALL_STATE(7092)] = 211398, + [SMALL_STATE(7093)] = 211411, + [SMALL_STATE(7094)] = 211424, + [SMALL_STATE(7095)] = 211437, + [SMALL_STATE(7096)] = 211450, + [SMALL_STATE(7097)] = 211463, + [SMALL_STATE(7098)] = 211476, + [SMALL_STATE(7099)] = 211489, + [SMALL_STATE(7100)] = 211502, + [SMALL_STATE(7101)] = 211515, + [SMALL_STATE(7102)] = 211528, + [SMALL_STATE(7103)] = 211541, + [SMALL_STATE(7104)] = 211554, + [SMALL_STATE(7105)] = 211567, + [SMALL_STATE(7106)] = 211580, + [SMALL_STATE(7107)] = 211593, + [SMALL_STATE(7108)] = 211606, + [SMALL_STATE(7109)] = 211619, + [SMALL_STATE(7110)] = 211632, + [SMALL_STATE(7111)] = 211645, + [SMALL_STATE(7112)] = 211658, + [SMALL_STATE(7113)] = 211671, + [SMALL_STATE(7114)] = 211684, + [SMALL_STATE(7115)] = 211697, + [SMALL_STATE(7116)] = 211710, + [SMALL_STATE(7117)] = 211723, + [SMALL_STATE(7118)] = 211736, + [SMALL_STATE(7119)] = 211749, + [SMALL_STATE(7120)] = 211762, + [SMALL_STATE(7121)] = 211775, + [SMALL_STATE(7122)] = 211788, + [SMALL_STATE(7123)] = 211801, + [SMALL_STATE(7124)] = 211814, + [SMALL_STATE(7125)] = 211827, + [SMALL_STATE(7126)] = 211840, + [SMALL_STATE(7127)] = 211853, + [SMALL_STATE(7128)] = 211866, + [SMALL_STATE(7129)] = 211879, + [SMALL_STATE(7130)] = 211892, + [SMALL_STATE(7131)] = 211905, + [SMALL_STATE(7132)] = 211918, + [SMALL_STATE(7133)] = 211931, + [SMALL_STATE(7134)] = 211944, + [SMALL_STATE(7135)] = 211957, + [SMALL_STATE(7136)] = 211970, + [SMALL_STATE(7137)] = 211983, + [SMALL_STATE(7138)] = 211996, + [SMALL_STATE(7139)] = 212009, + [SMALL_STATE(7140)] = 212022, + [SMALL_STATE(7141)] = 212035, + [SMALL_STATE(7142)] = 212048, + [SMALL_STATE(7143)] = 212061, + [SMALL_STATE(7144)] = 212074, + [SMALL_STATE(7145)] = 212087, + [SMALL_STATE(7146)] = 212100, + [SMALL_STATE(7147)] = 212113, + [SMALL_STATE(7148)] = 212126, + [SMALL_STATE(7149)] = 212139, + [SMALL_STATE(7150)] = 212152, + [SMALL_STATE(7151)] = 212165, + [SMALL_STATE(7152)] = 212178, + [SMALL_STATE(7153)] = 212191, + [SMALL_STATE(7154)] = 212204, + [SMALL_STATE(7155)] = 212217, + [SMALL_STATE(7156)] = 212230, + [SMALL_STATE(7157)] = 212243, + [SMALL_STATE(7158)] = 212256, + [SMALL_STATE(7159)] = 212269, + [SMALL_STATE(7160)] = 212282, + [SMALL_STATE(7161)] = 212295, + [SMALL_STATE(7162)] = 212308, + [SMALL_STATE(7163)] = 212321, + [SMALL_STATE(7164)] = 212334, + [SMALL_STATE(7165)] = 212347, + [SMALL_STATE(7166)] = 212360, + [SMALL_STATE(7167)] = 212373, + [SMALL_STATE(7168)] = 212386, + [SMALL_STATE(7169)] = 212399, + [SMALL_STATE(7170)] = 212412, + [SMALL_STATE(7171)] = 212425, + [SMALL_STATE(7172)] = 212438, + [SMALL_STATE(7173)] = 212451, + [SMALL_STATE(7174)] = 212464, + [SMALL_STATE(7175)] = 212477, + [SMALL_STATE(7176)] = 212490, + [SMALL_STATE(7177)] = 212503, + [SMALL_STATE(7178)] = 212516, + [SMALL_STATE(7179)] = 212529, + [SMALL_STATE(7180)] = 212542, + [SMALL_STATE(7181)] = 212555, + [SMALL_STATE(7182)] = 212568, + [SMALL_STATE(7183)] = 212581, + [SMALL_STATE(7184)] = 212594, + [SMALL_STATE(7185)] = 212607, + [SMALL_STATE(7186)] = 212620, + [SMALL_STATE(7187)] = 212633, + [SMALL_STATE(7188)] = 212646, + [SMALL_STATE(7189)] = 212659, + [SMALL_STATE(7190)] = 212672, + [SMALL_STATE(7191)] = 212685, + [SMALL_STATE(7192)] = 212698, + [SMALL_STATE(7193)] = 212711, + [SMALL_STATE(7194)] = 212724, + [SMALL_STATE(7195)] = 212737, + [SMALL_STATE(7196)] = 212750, + [SMALL_STATE(7197)] = 212763, + [SMALL_STATE(7198)] = 212776, + [SMALL_STATE(7199)] = 212789, + [SMALL_STATE(7200)] = 212802, + [SMALL_STATE(7201)] = 212815, + [SMALL_STATE(7202)] = 212828, + [SMALL_STATE(7203)] = 212841, + [SMALL_STATE(7204)] = 212854, + [SMALL_STATE(7205)] = 212867, + [SMALL_STATE(7206)] = 212880, + [SMALL_STATE(7207)] = 212893, + [SMALL_STATE(7208)] = 212906, + [SMALL_STATE(7209)] = 212919, + [SMALL_STATE(7210)] = 212932, + [SMALL_STATE(7211)] = 212945, + [SMALL_STATE(7212)] = 212958, + [SMALL_STATE(7213)] = 212971, + [SMALL_STATE(7214)] = 212984, + [SMALL_STATE(7215)] = 212997, + [SMALL_STATE(7216)] = 213010, + [SMALL_STATE(7217)] = 213023, + [SMALL_STATE(7218)] = 213036, + [SMALL_STATE(7219)] = 213049, + [SMALL_STATE(7220)] = 213062, + [SMALL_STATE(7221)] = 213075, + [SMALL_STATE(7222)] = 213088, + [SMALL_STATE(7223)] = 213101, + [SMALL_STATE(7224)] = 213114, + [SMALL_STATE(7225)] = 213127, + [SMALL_STATE(7226)] = 213140, + [SMALL_STATE(7227)] = 213153, + [SMALL_STATE(7228)] = 213166, + [SMALL_STATE(7229)] = 213179, + [SMALL_STATE(7230)] = 213192, + [SMALL_STATE(7231)] = 213205, + [SMALL_STATE(7232)] = 213218, + [SMALL_STATE(7233)] = 213231, + [SMALL_STATE(7234)] = 213244, + [SMALL_STATE(7235)] = 213257, + [SMALL_STATE(7236)] = 213270, + [SMALL_STATE(7237)] = 213283, + [SMALL_STATE(7238)] = 213296, + [SMALL_STATE(7239)] = 213309, + [SMALL_STATE(7240)] = 213322, + [SMALL_STATE(7241)] = 213335, + [SMALL_STATE(7242)] = 213348, + [SMALL_STATE(7243)] = 213361, + [SMALL_STATE(7244)] = 213374, + [SMALL_STATE(7245)] = 213387, + [SMALL_STATE(7246)] = 213400, + [SMALL_STATE(7247)] = 213413, + [SMALL_STATE(7248)] = 213426, + [SMALL_STATE(7249)] = 213439, + [SMALL_STATE(7250)] = 213452, + [SMALL_STATE(7251)] = 213465, + [SMALL_STATE(7252)] = 213478, + [SMALL_STATE(7253)] = 213491, + [SMALL_STATE(7254)] = 213504, + [SMALL_STATE(7255)] = 213517, + [SMALL_STATE(7256)] = 213530, + [SMALL_STATE(7257)] = 213543, + [SMALL_STATE(7258)] = 213556, + [SMALL_STATE(7259)] = 213569, + [SMALL_STATE(7260)] = 213582, + [SMALL_STATE(7261)] = 213595, + [SMALL_STATE(7262)] = 213608, + [SMALL_STATE(7263)] = 213621, + [SMALL_STATE(7264)] = 213634, + [SMALL_STATE(7265)] = 213647, + [SMALL_STATE(7266)] = 213660, + [SMALL_STATE(7267)] = 213673, + [SMALL_STATE(7268)] = 213686, + [SMALL_STATE(7269)] = 213699, + [SMALL_STATE(7270)] = 213712, + [SMALL_STATE(7271)] = 213725, + [SMALL_STATE(7272)] = 213738, + [SMALL_STATE(7273)] = 213751, + [SMALL_STATE(7274)] = 213764, + [SMALL_STATE(7275)] = 213777, + [SMALL_STATE(7276)] = 213790, + [SMALL_STATE(7277)] = 213803, + [SMALL_STATE(7278)] = 213816, + [SMALL_STATE(7279)] = 213829, + [SMALL_STATE(7280)] = 213842, + [SMALL_STATE(7281)] = 213855, + [SMALL_STATE(7282)] = 213868, + [SMALL_STATE(7283)] = 213881, + [SMALL_STATE(7284)] = 213894, + [SMALL_STATE(7285)] = 213907, + [SMALL_STATE(7286)] = 213920, + [SMALL_STATE(7287)] = 213933, + [SMALL_STATE(7288)] = 213946, + [SMALL_STATE(7289)] = 213959, + [SMALL_STATE(7290)] = 213972, + [SMALL_STATE(7291)] = 213985, + [SMALL_STATE(7292)] = 213998, + [SMALL_STATE(7293)] = 214011, + [SMALL_STATE(7294)] = 214024, + [SMALL_STATE(7295)] = 214037, + [SMALL_STATE(7296)] = 214050, + [SMALL_STATE(7297)] = 214063, + [SMALL_STATE(7298)] = 214076, + [SMALL_STATE(7299)] = 214089, + [SMALL_STATE(7300)] = 214102, + [SMALL_STATE(7301)] = 214115, + [SMALL_STATE(7302)] = 214128, + [SMALL_STATE(7303)] = 214141, + [SMALL_STATE(7304)] = 214154, + [SMALL_STATE(7305)] = 214167, + [SMALL_STATE(7306)] = 214180, + [SMALL_STATE(7307)] = 214193, + [SMALL_STATE(7308)] = 214206, + [SMALL_STATE(7309)] = 214219, + [SMALL_STATE(7310)] = 214232, + [SMALL_STATE(7311)] = 214245, + [SMALL_STATE(7312)] = 214258, + [SMALL_STATE(7313)] = 214271, + [SMALL_STATE(7314)] = 214284, + [SMALL_STATE(7315)] = 214297, + [SMALL_STATE(7316)] = 214310, + [SMALL_STATE(7317)] = 214323, + [SMALL_STATE(7318)] = 214336, + [SMALL_STATE(7319)] = 214349, + [SMALL_STATE(7320)] = 214362, + [SMALL_STATE(7321)] = 214375, + [SMALL_STATE(7322)] = 214388, + [SMALL_STATE(7323)] = 214401, + [SMALL_STATE(7324)] = 214414, + [SMALL_STATE(7325)] = 214427, + [SMALL_STATE(7326)] = 214440, + [SMALL_STATE(7327)] = 214453, + [SMALL_STATE(7328)] = 214466, + [SMALL_STATE(7329)] = 214479, + [SMALL_STATE(7330)] = 214492, + [SMALL_STATE(7331)] = 214505, + [SMALL_STATE(7332)] = 214518, + [SMALL_STATE(7333)] = 214531, + [SMALL_STATE(7334)] = 214544, + [SMALL_STATE(7335)] = 214557, + [SMALL_STATE(7336)] = 214570, + [SMALL_STATE(7337)] = 214583, + [SMALL_STATE(7338)] = 214596, + [SMALL_STATE(7339)] = 214609, + [SMALL_STATE(7340)] = 214622, + [SMALL_STATE(7341)] = 214635, + [SMALL_STATE(7342)] = 214648, + [SMALL_STATE(7343)] = 214661, + [SMALL_STATE(7344)] = 214674, + [SMALL_STATE(7345)] = 214687, + [SMALL_STATE(7346)] = 214700, + [SMALL_STATE(7347)] = 214713, + [SMALL_STATE(7348)] = 214726, + [SMALL_STATE(7349)] = 214739, + [SMALL_STATE(7350)] = 214752, + [SMALL_STATE(7351)] = 214765, + [SMALL_STATE(7352)] = 214778, + [SMALL_STATE(7353)] = 214791, + [SMALL_STATE(7354)] = 214804, + [SMALL_STATE(7355)] = 214817, + [SMALL_STATE(7356)] = 214830, + [SMALL_STATE(7357)] = 214843, + [SMALL_STATE(7358)] = 214856, + [SMALL_STATE(7359)] = 214869, + [SMALL_STATE(7360)] = 214882, + [SMALL_STATE(7361)] = 214895, + [SMALL_STATE(7362)] = 214908, + [SMALL_STATE(7363)] = 214921, + [SMALL_STATE(7364)] = 214934, + [SMALL_STATE(7365)] = 214947, + [SMALL_STATE(7366)] = 214960, + [SMALL_STATE(7367)] = 214973, + [SMALL_STATE(7368)] = 214986, + [SMALL_STATE(7369)] = 214999, + [SMALL_STATE(7370)] = 215012, + [SMALL_STATE(7371)] = 215025, + [SMALL_STATE(7372)] = 215038, + [SMALL_STATE(7373)] = 215051, + [SMALL_STATE(7374)] = 215064, + [SMALL_STATE(7375)] = 215077, + [SMALL_STATE(7376)] = 215090, + [SMALL_STATE(7377)] = 215103, + [SMALL_STATE(7378)] = 215116, + [SMALL_STATE(7379)] = 215129, + [SMALL_STATE(7380)] = 215142, + [SMALL_STATE(7381)] = 215155, + [SMALL_STATE(7382)] = 215168, + [SMALL_STATE(7383)] = 215181, + [SMALL_STATE(7384)] = 215194, + [SMALL_STATE(7385)] = 215207, + [SMALL_STATE(7386)] = 215220, + [SMALL_STATE(7387)] = 215233, + [SMALL_STATE(7388)] = 215246, + [SMALL_STATE(7389)] = 215259, + [SMALL_STATE(7390)] = 215272, + [SMALL_STATE(7391)] = 215285, + [SMALL_STATE(7392)] = 215298, + [SMALL_STATE(7393)] = 215311, + [SMALL_STATE(7394)] = 215324, + [SMALL_STATE(7395)] = 215337, + [SMALL_STATE(7396)] = 215350, + [SMALL_STATE(7397)] = 215363, + [SMALL_STATE(7398)] = 215376, + [SMALL_STATE(7399)] = 215389, + [SMALL_STATE(7400)] = 215402, + [SMALL_STATE(7401)] = 215415, + [SMALL_STATE(7402)] = 215428, + [SMALL_STATE(7403)] = 215441, + [SMALL_STATE(7404)] = 215454, + [SMALL_STATE(7405)] = 215467, + [SMALL_STATE(7406)] = 215480, + [SMALL_STATE(7407)] = 215493, + [SMALL_STATE(7408)] = 215506, + [SMALL_STATE(7409)] = 215519, + [SMALL_STATE(7410)] = 215532, + [SMALL_STATE(7411)] = 215545, + [SMALL_STATE(7412)] = 215558, + [SMALL_STATE(7413)] = 215571, + [SMALL_STATE(7414)] = 215584, + [SMALL_STATE(7415)] = 215597, + [SMALL_STATE(7416)] = 215610, + [SMALL_STATE(7417)] = 215623, + [SMALL_STATE(7418)] = 215636, + [SMALL_STATE(7419)] = 215649, + [SMALL_STATE(7420)] = 215662, + [SMALL_STATE(7421)] = 215675, + [SMALL_STATE(7422)] = 215688, + [SMALL_STATE(7423)] = 215701, + [SMALL_STATE(7424)] = 215714, + [SMALL_STATE(7425)] = 215727, + [SMALL_STATE(7426)] = 215740, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7609), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7426), [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2218), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 0, 0, 0), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6444), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6378), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6457), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6466), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6433), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6414), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6470), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1719), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6308), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4615), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6309), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6316), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6320), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6339), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6471), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4267), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7585), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7584), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6405), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2212), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6340), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3279), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7581), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7580), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7578), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), - [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(776), - [118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5129), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(817), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7398), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7397), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7395), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(780), + [118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), + [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4861), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(656), [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), - [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), - [148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4282), - [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(480), - [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), - [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(7390), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(800), - [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), - [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7236), - [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), - [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3123), + [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), + [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), + [148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), + [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), + [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), + [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1867), + [168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(7231), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(643), + [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), + [182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3154), + [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7091), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2837), + [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7438), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7434), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7431), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), - [210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(804), - [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(494), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7255), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7251), + [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7248), + [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), + [212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(664), + [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), - [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), - [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2229), - [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, .production_id = 51), - [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), - [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3893), - [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6738), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6927), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6737), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5881), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6735), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), + [313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1743), + [315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), + [317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3, 0, 51), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6448), + [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6744), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6865), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5694), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6452), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6471), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6476), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4450), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7523), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), - [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 93), - [405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 236), - [407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2229), - [410] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(874), - [413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2163), - [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2034), - [421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(9), - [424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(583), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3893), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6738), - [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4745), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2031), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4496), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6927), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7048), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5877), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(260), - [454] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(589), - [457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6737), - [460] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(84), - [463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6736), - [466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5881), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5882), - [472] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6735), - [475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(466), - [478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(539), - [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1324), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(229), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(276), - [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6471), - [493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5741), - [496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5739), - [499] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4281), - [502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(908), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4557), - [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(150), - [511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(604), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7585), - [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1813), - [520] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(609), - [523] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4983), - [526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3425), - [529] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7584), - [532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3298), - [535] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6405), - [538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2174), - [541] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(889), - [544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2046), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7523), - [550] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7135), - [553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7137), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2218), - [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(871), - [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2151), - [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2045), - [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6), - [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3894), - [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6442), - [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4534), - [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2027), - [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4523), - [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6444), - [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6446), - [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6378), - [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6457), - [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(103), - [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6466), - [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6433), - [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6414), - [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6470), - [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(464), - [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(543), - [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1719), - [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4267), - [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(914), - [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4535), - [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(171), - [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2212), - [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(885), - [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2036), - [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7581), - [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7580), - [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(7578), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4721), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2488), - [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1180), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1191), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1100), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1118), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7340), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6943), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), + [401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, 0, 93), + [403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2, 0, 0), + [405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2082), + [408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(871), + [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2000), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1883), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(570), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3742), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6448), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4478), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1881), + [437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4346), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6744), + [443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6865), + [446] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5694), + [449] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(263), + [452] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(602), + [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6452), + [458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(90), + [461] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6471), + [464] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5698), + [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5699), + [470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6476), + [473] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(468), + [476] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(500), + [479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1458), + [482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(229), + [485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(281), + [488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6340), + [491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5601), + [494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5600), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4125), + [500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(910), + [503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4450), + [506] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(163), + [509] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(626), + [512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7402), + [515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1678), + [518] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(629), + [521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4833), + [524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3280), + [527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7401), + [530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3279), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5611), + [536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2078), + [539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(889), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1886), + [545] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7340), + [548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6943), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7182), + [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, 0, 236), + [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), + [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2033), + [561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(872), + [564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2014), + [567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1885), + [570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6), + [573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(3746), + [576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6308), + [579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4615), + [582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1888), + [585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4352), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6309), + [591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6316), + [594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5605), + [597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6320), + [600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6321), + [606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5607), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(5608), + [612] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(6339), + [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(469), + [618] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(540), + [621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1599), + [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4120), + [627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [630] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(4525), + [633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(2041), + [639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(885), + [642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), + [645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7398), + [648] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7397), + [651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2, 0, 0), SHIFT_REPEAT(7395), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1, 0, 0), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4498), + [676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3473), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2, 0, 0), + [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4559), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(959), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6472), - [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6680), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6681), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6473), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6404), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6475), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6920), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4791), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1900), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6775), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6745), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6241), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6325), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6230), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6226), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6335), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4541), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7225), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7388), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7385), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), - [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7103), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6599), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6139), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1206), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2192), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7548), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7179), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7180), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2228), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6918), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4616), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4525), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6931), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6928), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5992), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6917), - [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6915), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1890), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7276), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7062), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6402), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1899), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), + [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6408), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6409), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6323), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4426), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7042), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7229), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6864), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6930), + [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6796), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6786), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6784), [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4594), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7459), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7216), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2264), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), - [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7390), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7344), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2887), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2941), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2484), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2231), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2225), - [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2412), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [1024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(86), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7444), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4565), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3030), - [1043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2874), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), - [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(264), - [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(283), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4430), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7365), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6996), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6997), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(114), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7261), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), + [987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1953), + [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), + [993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), + [995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [1001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [1003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [1005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [1011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), + [1013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [1017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [1019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7231), + [1021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7161), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3347), + [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [1063] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(262), + [1066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(283), [1069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(1813), - [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(4819), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), - [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3310), - [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), - [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), - [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2334), - [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), - [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), - [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7467), - [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), - [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), - [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, .production_id = 31), - [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), - [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), - [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), - [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [1071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(1678), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(4748), + [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), + [1079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), + [1081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), + [1083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), + [1085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [1087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3017), + [1089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [1091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [1093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [1095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), + [1097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [1099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [1101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7183), + [1107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [1109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), + [1113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), + [1115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 31), + [1119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), + [1121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), + [1123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [1125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [1127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [1129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), + [1133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), [1135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), - [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7576), - [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), - [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), - [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6401), + [1137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [1139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [1141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [1143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), + [1145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [1147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [1149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), + [1151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4381), + [1153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), + [1155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), + [1157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [1159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), + [1161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), [1163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), - [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [1165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [1167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [1171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), [1173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), - [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), - [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), - [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), - [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [1209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [1211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [1217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [1219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [1221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2251), - [1223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [1225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [1227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [1231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(485), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_rest_pattern, 2, .production_id = 31), - [1245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), - [1247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), - [1249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(793), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(667), + [1175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [1177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [1181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [1183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [1185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [1187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2270), + [1189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [1193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [1197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [1199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [1201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [1203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [1205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [1209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(490), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(649), + [1243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 31), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2157), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 1), SHIFT(601), + [1253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), + [1255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [1257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [1259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [1263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), [1265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2295), - [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), - [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), - [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2250), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), - [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7217), - [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), - [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7133), - [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2313), - [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), - [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), - [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4232), - [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), - [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), - [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), - [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7469), - [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7248), - [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7250), - [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), - [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2285), - [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), - [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(655), - [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2300), - [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), - [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), - [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), - [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), - [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7192), - [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), - [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), - [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), - [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7223), - [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3477), - [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), - [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), - [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), - [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), - [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4514), - [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), - [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7374), - [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), - [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2200), - [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), - [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7432), - [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), - [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), - [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), - [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2221), - [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2242), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), - [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3006), - [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2181), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2979), - [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), - [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), - [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7490), - [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2265), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), - [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), - [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7222), - [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), - [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), - [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), - [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3231), - [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2216), - [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2205), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1882), - [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [1267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), + [1271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [1273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [1275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [1279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [1281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [1283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [1285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7064), + [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [1291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [1295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [1297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [1301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), + [1303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [1305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [1309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [1311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [1315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [1317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [1319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [1321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [1323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [1325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), + [1327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6944), + [1329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [1331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [1333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [1337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [1339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [1343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [1345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [1351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1735), + [1355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [1357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [1367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), + [1371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [1373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4361), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2950), + [1377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2951), + [1379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [1381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [1383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [1385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [1387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7286), + [1389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7135), + [1391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1821), + [1393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7126), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), + [1397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [1399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [1401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), + [1405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), + [1407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [1411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [1413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [1417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), + [1419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [1421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), + [1425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), + [1427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [1429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [1433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7249), + [1435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3147), + [1437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [1445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [1447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [1451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [1457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [1461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), + [1463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [1467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [1469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [1471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [1473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [1475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [1477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [1479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [1483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [1489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [1491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [1497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7390), + [1501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [1503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [1507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [1509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [1511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1736), + [1515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [1517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [1519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [1523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [1527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4376), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [1533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [1543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [1559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [1561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [1567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), + [1569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [1571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [1575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [1587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), + [1589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [1593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [1595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [1597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [1603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(429), + [1605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [1615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [1619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [1627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3334), + [1629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7040), + [1631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [1633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(459), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [1651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [1653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [1665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7009), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [1669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [1675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1951), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1731), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [1687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [1701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7048), + [1703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [1705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [1707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [1709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [1711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3370), + [1719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [1723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), + [1727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), + [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4377), + [1759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), + [1765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [1767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [1769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), + [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [1775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [1777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [1779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [1781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3020), [1783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), - [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2215), - [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), - [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2188), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2266), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2294), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(188), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2272), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(190), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), - [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), - [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), - [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), - [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), - [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), - [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4905), - [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), - [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), - [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4987), - [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), - [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4586), - [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7495), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7164), - [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7163), - [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2273), - [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), - [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), - [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), - [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), - [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), - [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), - [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7440), - [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), - [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), - [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), - [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), - [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5557), - [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), - [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5524), - [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7283), - [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), - [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), - [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), - [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3277), - [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4929), - [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), - [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6119), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4985), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2638), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), - [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), - [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2202), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), - [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), - [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), - [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5495), - [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [2109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 5), - [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 5), - [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7441), - [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7446), - [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), - [2122] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(4031), - [2126] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(4249), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [2148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 231), - [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 231), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 231), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 171), - [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 171), - [2172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 171), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 148), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 148), - [2186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [2188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 148), - [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 171), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, .production_id = 171), - [2198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [2200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, .production_id = 171), - [2202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, .production_id = 88), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 88), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 111), - [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 111), - [2212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 111), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [2220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7480), - [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [2226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7527), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 48), - [2230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 48), - [2232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 48), - [2236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7528), - [2238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 112), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 112), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [2244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 112), - [2246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7478), - [2258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 28), - [2260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 28), - [2262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, .production_id = 110), - [2264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, .production_id = 110), - [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 167), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 167), - [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [2272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 167), - [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, .production_id = 74), - [2276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 74), - [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 189), - [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 189), - [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 189), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 121), - [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, .production_id = 121), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, .production_id = 121), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 1), - [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 190), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 190), - [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [2308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 190), - [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 217), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 217), - [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [2316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 217), - [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430), - [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), - [2324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), - [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [2342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), - [2344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [2348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 148), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 231), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [2378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7386), - [2380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7387), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [2390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 48), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [2394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 217), - [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), - [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 190), - [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 189), - [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 111), - [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 112), - [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 121), - [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 167), - [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 171), - [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 171), - [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [2432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), - [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1), - [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), - [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [2490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), - [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2198), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), - [2498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [2500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1715), - [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6937), - [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6937), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2308), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2404), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2296), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2279), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(954), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2319), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2370), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), - [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2336), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2335), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), - [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2363), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3513), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2807), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2325), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), - [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2366), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(960), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6397), - [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7566), - [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), - [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4269), - [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), - [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), - [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(86), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7558), - [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7557), - [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6492), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), - [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6405), - [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), - [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4968), - [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), - [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7580), - [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), - [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2672), - [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5670), - [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), - [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3792), - [2810] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(266), - [2814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(794), - [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4598), - [2819] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(6326), - [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), - [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), - [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [2837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), - [2839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [2841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6051), - [2843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [2845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7460), - [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), - [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), - [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), - [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7592), - [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6610), - [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), - [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), - [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), - [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7215), - [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), - [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), - [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7570), - [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7384), - [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7571), - [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), - [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), - [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), - [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), - [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6115), - [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), - [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7524), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), - [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7125), - [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7602), - [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7135), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7137), - [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), - [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5749), - [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7549), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7606), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7607), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7179), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7180), - [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4880), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6448), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6440), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7253), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6637), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4787), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6558), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7505), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7161), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7597), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6565), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7495), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), - [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7164), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7163), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7231), - [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7232), - [3059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(266), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4595), - [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(6326), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7473), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7481), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7449), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7450), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7373), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7372), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7349), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7348), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4548), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4798), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7436), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7435), - [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7244), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7243), - [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7241), - [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7239), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 11), - [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6234), - [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6546), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7186), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7188), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7487), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7486), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6674), - [3127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 11), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6852), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7416), - [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [3143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 45), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), - [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6222), - [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6764), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(979), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [3163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 99), - [3165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, .production_id = 99), - [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 37), - [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [3173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [3175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [3179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 45), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [3185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 268), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), - [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7497), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7498), - [3193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 239), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7458), - [3201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7457), - [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, .production_id = 105), - [3205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1218), - [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [3209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 11), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 39), - [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, .production_id = 36), - [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 85), - [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 26), - [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, .production_id = 36), - [3229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4), - [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, .production_id = 32), - [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), - [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 33), - [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 38), - [3251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 86), - [3253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 83), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 73), - [3257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 72), - [3259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), - [3261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 11), - [3263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 96), - [3265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, .production_id = 105), - [3267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [3269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 48), - [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 264), - [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 231), - [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 120), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 230), - [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 44), - [3283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 46), - [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 47), - [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 47), - [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, .production_id = 228), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 37), - [3299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [3303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, .production_id = 263), - [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 217), - [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 233), - [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 92), - [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), - [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 85), - [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 32), - [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 97), - [3325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 98), - [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 24), - [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [3337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 6), - [3339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), - [3341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 190), - [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 189), - [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 11), - [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 106), - [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 230), - [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 140), - [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 228), - [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, .production_id = 87), - [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 226), - [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 143), - [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 144), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 171), - [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 147), - [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 171), - [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 151), - [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 167), - [3381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 194), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [3391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7378), - [3393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), - [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 192), - [3397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 232), - [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 148), - [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 151), - [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 92), - [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5), - [3409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 188), - [3411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 85), - [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 105), - [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), - [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), - [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, .production_id = 87), - [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 184), - [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 181), - [3431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), - [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), - [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), - [3439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 268), - [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 121), - [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 239), - [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, .production_id = 151), - [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 199), - [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 180), - [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 170), - [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 112), - [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 238), - [3457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), - [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 153), - [3461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 111), - [3463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 98), - [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 39), - [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 151), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 38), - [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, .production_id = 36), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 33), - [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), - [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 147), - [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 121), - [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, .production_id = 32), - [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 228), - [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 144), - [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 143), - [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 87), - [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 26), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 24), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, .production_id = 230), - [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 189), - [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 140), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 6), - [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 190), - [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 170), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 232), - [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 233), - [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 238), - [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 112), - [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 111), - [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 105), - [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 217), - [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, .production_id = 263), - [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), - [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 228), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, .production_id = 230), - [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 231), - [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 264), - [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [3563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 85), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), - [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 92), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 151), - [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 153), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 120), - [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 48), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 106), - [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 11), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), - [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 44), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 181), - [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 226), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 46), - [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 47), - [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 47), - [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), - [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 97), - [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 96), - [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, .production_id = 36), - [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 32), - [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1), - [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 171), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 171), - [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 85), - [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 167), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), - [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 92), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 85), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4), - [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 86), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 192), - [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 199), - [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, .production_id = 151), - [3651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 148), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 180), - [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 188), - [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 194), - [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), - [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 72), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 83), - [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 73), - [3667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, .production_id = 87), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 184), - [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1), - [3679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), - [3681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), - [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4233), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7518), - [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4370), - [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7322), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), - [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), - [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7397), - [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2574), - [3703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 237), - [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, .production_id = 267), - [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 198), - [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2528), - [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 197), - [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), - [3729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2992), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2297), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), - [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5596), - [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), - [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), - [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7499), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), - [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), - [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7531), - [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7500), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7502), - [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4454), - [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6429), - [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), - [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4456), - [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2969), - [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4483), - [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4484), - [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), - [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), - [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), - [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2994), - [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4107), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4113), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), - [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), - [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), - [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), - [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6420), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6423), - [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6426), - [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), - [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2579), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2580), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2232), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), - [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3049), - [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), - [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), - [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5594), - [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7430), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2879), - [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), - [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7427), - [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7425), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), - [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7379), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7504), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7380), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2512), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3144), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7301), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3247), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4149), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2391), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2542), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [1785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [1787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [1789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [1791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [1793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [1795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [1797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [1799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [1801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), + [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3311), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(186), + [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3371), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), + [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [1853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), + [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [1859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [1861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [1863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [1865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [1867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), + [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [1871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [1873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [1875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [1877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [1879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [1881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [1885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), + [1887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [1891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [1893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [1895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [1899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [1901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [1905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [1907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [1911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [1913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4355), + [1915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [1917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [1919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), + [1921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [1923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1947), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6984), + [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6983), + [1931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [1935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [1945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [1947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [1951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [1957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [1963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [1965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), + [1967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5478), + [1969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), + [1971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), + [1973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), + [1975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), + [1977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3850), + [1981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [1983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5374), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5375), + [1995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), + [1997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7137), + [1999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [2001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4106), + [2005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [2009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [2011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [2013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [2017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4555), + [2019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [2021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [2025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4709), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4451), + [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4557), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5893), + [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), + [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4825), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2447), + [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1, 0, 0), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1, 0, 0), + [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1894), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [2087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [2089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [2103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [2105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [2107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3387), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [2115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [2117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(185), + [2119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [2122] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(4065), + [2126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, 0, 5), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, 0, 5), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7279), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4522), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7280), + [2138] = {.entry = {.count = 3, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), SHIFT(3808), + [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2, 0, 0), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), + [2146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2, 0, 0), + [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 171), + [2154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 5, 0, 171), + [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 5, 0, 171), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3, 0, 0), + [2162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3, 0, 0), + [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 88), + [2168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 88), + [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_pattern_repeat1, 1, 0, 0), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3, 0, 74), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 74), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [2178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, 0, 28), + [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, 0, 28), + [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1, 0, 0), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1, 0, 0), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1, 0, 0), + [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 111), + [2190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 111), + [2192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 111), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, 0, 6), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, 0, 6), + [2200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [2202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7406), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 112), + [2206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 112), + [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 112), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, 0, 121), + [2214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 121), + [2216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 121), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2, 0, 0), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7405), + [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 148), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 148), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 148), + [2234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 167), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 167), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [2240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 167), + [2242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, 0, 171), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 171), + [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [2248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 171), + [2250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2, 0, 0), + [2252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2, 0, 0), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7315), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7319), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, 0, 0), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, 0, 0), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 189), + [2266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 189), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1206), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 189), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 190), + [2274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 190), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 190), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, 0, 48), + [2282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 48), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 48), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4, 0, 0), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4, 0, 0), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 217), + [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, 0, 217), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, 0, 217), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2, 0, 0), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2, 0, 0), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3, 0, 110), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3, 0, 110), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 231), + [2310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, 0, 231), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, 0, 231), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [2322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1, 0, 0), + [2326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [2328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2310), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [2336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [2340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7204), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 111), + [2346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 112), + [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, 0, 121), + [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7203), + [2358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 148), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [2362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 167), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [2366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 171), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [2370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, 0, 171), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 189), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 190), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 217), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 231), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, 0, 48), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), + [2434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3141), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_override_modifier, 1, 0, 0), + [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1, 0, 0), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [2468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [2472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, 0, 0), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [2492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [2494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), + [2518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6337), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [2522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [2530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(193), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2147), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2193), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2191), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2196), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2170), + [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2219), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), + [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2209), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(957), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2195), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2187), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2182), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2189), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1973), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), + [2744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7383), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), + [2756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2491), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7380), + [2760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), + [2764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [2766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), + [2769] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(114), + [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7375), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7374), + [2776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6352), + [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 1), + [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [2791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7398), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7397), + [2797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), + [2799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [2801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [2803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5550), + [2805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), + [2807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(3672), + [2810] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(274), + [2814] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(622), + [2817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [2819] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym__property_name, 1, 0, 7), SHIFT(5684), + [2823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4442), + [2825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [2827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7239), + [2829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [2831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), + [2833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [2835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5898), + [2839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7341), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7418), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), + [2849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [2851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), + [2857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7419), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), + [2861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [2865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6943), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), + [2871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), + [2873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5969), + [2881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [2883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7277), + [2885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), + [2887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7408), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7049), + [2899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6444), + [2903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7061), + [2913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), + [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [2921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), + [2927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4595), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7225), + [2937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7388), + [2939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7042), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), + [2951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5855), + [2953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [2957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7366), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4518), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7001), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6361), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7365), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6996), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [2989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4660), + [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3528), + [2993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [2997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), + [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), + [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6684), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6626), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7322), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6410), + [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7312), + [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6983), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7079), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7081), + [3059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(274), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4606), + [3064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(5684), + [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7266), + [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7267), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4405), + [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7166), + [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7165), + [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7190), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4439), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6939), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7149), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7143), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7147), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7253), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7058), + [3103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7056), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4480), + [3107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, 0, 11), + [3109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6051), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6587), + [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7097), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7096), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7005), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [3125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, 0, 11), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6907), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6722), + [3135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6609), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7269), + [3145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 45), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7264), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [3163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7299), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [3167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, 0, 268), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7330), + [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7327), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7298), + [3181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 45), + [3183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, 0, 11), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [3187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, 0, 37), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [3191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 4, 0, 105), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [3207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, 0, 239), + [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4, 0, 99), + [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4, 0, 99), + [3217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 0), + [3219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 188), + [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, 0, 73), + [3223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3, 0, 32), + [3225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, 0, 33), + [3227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, 0, 38), + [3229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [3231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 151), + [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, 0, 44), + [3235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, 0, 72), + [3237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, 0, 46), + [3239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, 0, 47), + [3241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, 0, 47), + [3243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3, 0, 0), + [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [3247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, 0, 0), + [3251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, 0, 37), + [3253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 85), + [3257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [3261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7029), + [3265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7030), + [3267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2, 0, 0), + [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, 0, 153), + [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 92), + [3273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5, 0, 0), + [3275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 0), + [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 85), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 111), + [3281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, 0, 171), + [3283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3, 0, 0), + [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, 0, 170), + [3287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, 0, 32), + [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4, 0, 0), + [3291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5, 0, 0), + [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6, 0, 0), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 147), + [3297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, 0, 97), + [3299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, 0, 121), + [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2, 0, 0), + [3303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, 0, 98), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2, 0, 0), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 144), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, 0, 11), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [3315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, 0, 106), + [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), + [3319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 83), + [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, 0, 143), + [3323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 181), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [3327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, 0, 184), + [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 87), + [3331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3, 0, 0), + [3333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, 0, 140), + [3335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 4, 0, 105), + [3337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [3341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, 0, 11), + [3343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, 0, 0), + [3345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [3347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, 0, 264), + [3349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, 0, 231), + [3351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 230), + [3355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2, 0, 0), + [3357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 151), + [3359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, -1, 26), + [3361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 148), + [3363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 92), + [3365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 0), + [3367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, 0, 85), + [3369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [3371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3, 0, 0), + [3373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, 0, 105), + [3375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [3377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, 0, 192), + [3379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3, 0, 36), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [3383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 86), + [3385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, 0, 0), + [3387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, 0, 194), + [3389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 167), + [3391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, 0, 39), + [3393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5, 0, 228), + [3395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, 0, 120), + [3397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [3399] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, 0, 217), + [3401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 6, 0, 151), + [3403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, 0, 48), + [3405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 233), + [3407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, 0, 199), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [3413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, 0, 171), + [3415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, 0, 96), + [3417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [3419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 232), + [3421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 190), + [3423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, 0, 238), + [3425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1, 0, 0), + [3427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4, 0, 36), + [3429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, 0, 226), + [3431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, 0, 112), + [3433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [3435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, 0, 4), + [3437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 87), + [3439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 228), + [3441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, 0, 189), + [3443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, 0, 263), + [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 230), + [3447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4, 0, 0), + [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [3451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, 0, 6), + [3453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 24), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, 0, 268), + [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, 0, 0), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, 0, 239), + [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [3465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 151), + [3467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 228), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, 0, 263), + [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, 0, 217), + [3473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, 0, 264), + [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, 0, 238), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, 0, 231), + [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 233), + [3481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 232), + [3483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 190), + [3485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 189), + [3487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 230), + [3489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 0), + [3491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 228), + [3493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4, 0, 87), + [3495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, 0, 226), + [3497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, 0, 171), + [3499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, 0, 171), + [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, 0, 167), + [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, 0, 199), + [3505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 6, 0, 151), + [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5, 0, 0), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, 0, 194), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 192), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 148), + [3515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 188), + [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6, 0, 0), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 0), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3, 0, 87), + [3523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, 0, 184), + [3525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 181), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, 0, 180), + [3529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, 0, 121), + [3531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, 0, 170), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 112), + [3535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, 0, 111), + [3537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, 0, 105), + [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3, 0, 0), + [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 85), + [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5, 0, 0), + [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 0), + [3549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, 0, 92), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, 0, 153), + [3553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 0), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, 0, 151), + [3557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 147), + [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [3561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2, 0, 0), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 144), + [3565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, 0, 143), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, 0, 140), + [3569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, 0, 120), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, 0, 48), + [3573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, 0, 106), + [3575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [3577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, 0, 11), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, 0, 98), + [3581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2, 0, 0), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2, 0, 0), + [3585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, 0, 97), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, 0, 96), + [3589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4, 0, 36), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4, 0, 0), + [3593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 32), + [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 85), + [3597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 0), + [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, 0, 92), + [3601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 85), + [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 0), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, 0, 86), + [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 83), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, 0, 73), + [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, 0, 72), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3, 0, 0), + [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3, 0, 0), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3, 0, 0), + [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, 0, 47), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, 0, 47), + [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, 0, 46), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, 0, 44), + [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, 0, 39), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, 0, 38), + [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3, 0, 36), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3, 0, 0), + [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, 0, 33), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 0), + [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3, 0, 32), + [3641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4, 0, 0), + [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 0), + [3645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5, 0, 230), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, -1, 26), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, 0, 24), + [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3, 0, 0), + [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1, 0, 0), + [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, 0, 4), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, 0, 6), + [3669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2, 0, 0), + [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2, 0, 0), + [3673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2, 0, 0), + [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2, 0, 0), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, 0, 0), + [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 1, 0, 0), + [3683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), + [3687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [3689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7201), + [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), + [3695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7084), + [3697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6998), + [3701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), + [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2345), + [3711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), + [3713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 7, 0, 267), + [3717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), + [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2883), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [3723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, 0, 237), + [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3879), + [3727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 198), + [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, 0, 197), + [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [3733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3885), + [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4236), + [3745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2143), + [3747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4536), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5407), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5408), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), + [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [3763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), + [3765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7215), + [3767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), + [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5164), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), + [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), + [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1864), + [3777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [3779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7349), + [3781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [3783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7127), + [3785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), + [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7129), + [3789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [3791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [3793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), + [3795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3942), + [3799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), + [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [3803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), + [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), + [3807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), + [3809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [3811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), + [3813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [3817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), + [3821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [3825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [3827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [3829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5619), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [3837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), + [3839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), + [3841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4293), + [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), + [3849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2344), + [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [3855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4263), + [3857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [3859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), + [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2354), + [3863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2358), + [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [3867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), + [3877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), + [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2349), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [3889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [3891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [3895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7159), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2305), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7321), + [3919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7156), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1840), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7153), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), + [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4455), + [3935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5445), + [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [3947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7155), + [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), + [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), + [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7069), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), + [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), + [3969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7021), + [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), + [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [3977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2912), + [3979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), + [3981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), + [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), + [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), + [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), + [3997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), + [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), + [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7118), + [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), + [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), + [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), [4035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), - [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), - [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3023), - [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), - [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2928), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), - [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2517), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2603), - [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2911), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3212), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), - [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2395), - [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2552), - [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), - [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2846), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2387), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), - [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3138), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), - [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4203), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), - [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4346), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2535), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2486), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2439), - [4153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), - [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2930), - [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3186), - [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), - [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), - [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), - [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5637), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), - [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5026), - [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5550), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6393), - [4214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 145), - [4216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 145), - [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [4222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [4224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [4229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), - [4231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 186), - [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 186), - [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [4240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [4250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [4254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 77), - [4256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 77), - [4258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 76), - [4260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 76), - [4262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 75), - [4264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 75), - [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), - [4268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), - [4270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), - [4272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 74), - [4274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 74), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7075), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6103), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [4288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(624), - [4291] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 13), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [4297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 13), - [4300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(7286), - [4303] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 13), - [4306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1860), - [4309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 13), SHIFT(7042), - [4312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 13), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [4318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(7287), - [4321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1859), - [4324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(819), - [4327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [4329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 13), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [4334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6926), - [4338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(298), - [4341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), - [4343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), - [4345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [4349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(850), - [4352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [4357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [4359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [4361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7306), - [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [4367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [4372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [4375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 23), - [4377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 23), SHIFT(4296), - [4380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 23), SHIFT_REPEAT(6401), - [4383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [4385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, .production_id = 31), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6394), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6330), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [4405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [4407] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 13), REDUCE(sym_rest_pattern, 2), - [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6176), - [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 74), - [4415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), - [4419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [4426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 74), - [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [4432] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), REDUCE(sym_rest_pattern, 2, .production_id = 31), - [4436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 17), - [4438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(486), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [4443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_rest_pattern, 2, .production_id = 31), - [4446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [4448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 75), - [4450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [4454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [4456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), - [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, .production_id = 57), - [4461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, .production_id = 59), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6368), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [4471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, .production_id = 59), - [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, .production_id = 57), - [4475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [4479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, .production_id = 57), - [4481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(845), - [4484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [4490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, .production_id = 59), - [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), - [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), - [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), - [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), - [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), - [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2382), - [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), - [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), - [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [4534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), - [4540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [4542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [4544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4353), - [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), - [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), - [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), - [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), - [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), - [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), - [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), - [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), - [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3112), - [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), - [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7496), - [4630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2442), - [4633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2796), - [4636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [4640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2672), - [4643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3099), - [4646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2828), - [4649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3511), - [4652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), - [4654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), - [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5970), - [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), - [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3490), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), - [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2683), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), - [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), - [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), - [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [4698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 23), SHIFT_REPEAT(4253), - [4701] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 23), SHIFT_REPEAT(3793), - [4704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 23), - [4706] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 23), SHIFT_REPEAT(3680), - [4709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 23), SHIFT_REPEAT(561), - [4712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 23), SHIFT_REPEAT(5557), - [4715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 23), SHIFT_REPEAT(5558), - [4718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 23), SHIFT_REPEAT(3213), - [4721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 23), SHIFT_REPEAT(7314), - [4724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 23), SHIFT_REPEAT(4240), - [4727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 23), SHIFT_REPEAT(5970), - [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2601), - [4733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2967), - [4736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 23), SHIFT_REPEAT(3490), - [4739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 23), SHIFT_REPEAT(2871), - [4742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 23), SHIFT_REPEAT(3531), - [4745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 23), SHIFT_REPEAT(3505), - [4748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 23), SHIFT_REPEAT(3760), - [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [4753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), - [4755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4432), - [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3158), - [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), - [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), - [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4734), - [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), - [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3117), - [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3479), - [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), - [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), - [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), - [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), - [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), - [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), - [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), - [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4380), - [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), - [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3500), - [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1202), - [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6447), - [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), - [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), - [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), - [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3169), - [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), - [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), - [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4701), - [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), - [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3503), - [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6518), - [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4905] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 29), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 30), - [4909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 12), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 12), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6648), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), - [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), - [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), - [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), - [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), - [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 57), - [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 57), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6656), - [4945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 13), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7399), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [4951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 58), - [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 58), - [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7276), - [4961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), - [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [4971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 15), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 15), - [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), - [4979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, .production_id = 66), - [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, .production_id = 66), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), - [4985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, .production_id = 19), - [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, .production_id = 19), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), - [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2), - [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2), - [4995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 222), - [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 222), - [4999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [5001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [5003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 261), - [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 261), - [5007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3), - [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3), - [5011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, .production_id = 262), - [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, .production_id = 262), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7392), - [5019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 289), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 289), - [5023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [5025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 260), - [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 260), - [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 259), - [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 259), - [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 133), - [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 133), - [5041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 74), REDUCE(sym_nested_type_identifier, 3, .production_id = 133), - [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 258), - [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, .production_id = 258), - [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 74), - [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 74), - [5052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [5056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), - [5059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), - [5062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [5068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), - [5071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), - [5074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), - [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [5078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), - [5086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), - [5088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6315), - [5090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [5094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [5096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [5104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [5106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [5114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [5118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [5122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), - [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [5126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), - [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 175), - [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 175), - [5132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), - [5134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, .production_id = 88), REDUCE(sym_nested_type_identifier, 3, .production_id = 133), - [5137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 8), - [5139] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 8), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [5145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, .production_id = 135), - [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, .production_id = 135), - [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), - [5151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [5153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2442), - [5156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2672), - [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [5163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [5165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [5167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), - [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), - [5171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, .production_id = 57), - [5173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 75), - [5175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 75), - [5177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 136), - [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 136), - [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 137), - [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 137), - [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, .production_id = 59), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [5189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 130), - [5191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 130), - [5193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3099), - [5196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 129), - [5198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 129), - [5200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [5202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2828), - [5205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, .production_id = 178), - [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, .production_id = 178), - [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3), - [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3), - [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), - [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [5219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 225), - [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 225), - [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), - [5225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), - [5227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 128), - [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 128), - [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, .production_id = 224), - [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, .production_id = 224), - [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 68), - [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 68), - [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), - [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), - [5247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 223), - [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 223), - [5251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), - [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), - [5255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [5257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), - [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 17), - [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, .production_id = 17), - [5263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 127), - [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, .production_id = 127), - [5267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 221), - [5269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 221), - [5271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2796), - [5274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [5276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, .production_id = 59), - [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, .production_id = 57), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [5282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 67), - [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 67), - [5286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 145), - [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, .production_id = 145), - [5290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3511), - [5293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), - [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), - [5297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 65), - [5299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 65), - [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [5303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), - [5305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), - [5307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2), - [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2), - [5311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), - [5313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), - [5315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 62), - [5317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 62), - [5319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2), - [5321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [5325] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 55), - [5327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 55), - [5329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, .production_id = 179), - [5331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, .production_id = 179), - [5333] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 187), - [5335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 187), - [5337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [5339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [5341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), - [5343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), - [5345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), - [5347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), - [5349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, .production_id = 94), - [5351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, .production_id = 94), - [5353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [5355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), - [5357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 17), - [5359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 17), - [5361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, .production_id = 16), - [5363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, .production_id = 16), - [5365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, .production_id = 59), - [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, .production_id = 57), - [5369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, .production_id = 65), - [5371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, .production_id = 65), - [5373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [5375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [5377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 60), - [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 60), - [5381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, .production_id = 59), - [5383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, .production_id = 59), - [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), - [5387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 139), - [5389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 139), - [5391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 138), - [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 138), - [5395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), - [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5401] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 176), - [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, .production_id = 176), - [5405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [5407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 71), - [5409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 71), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [5413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6632), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [5421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [5441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [5443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), - [5447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [5451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 25), - [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [5463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [5465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [5467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(220), - [5470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [5472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [5474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [5524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 15), - [5527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 15), - [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(216), - [5539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 78), - [5541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 78), - [5543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 69), - [5545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 70), - [5547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 89), REDUCE(sym_assignment_expression, 3, .production_id = 25), - [5550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 89), - [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [5554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [5556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [5560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, .production_id = 124), - [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5596] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 71), SHIFT(216), - [5599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [5601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [5603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(216), - [5606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 70), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [5610] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [5614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 150), - [5616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 150), - [5618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 149), - [5620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 149), - [5622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 71), SHIFT(221), - [5625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 146), - [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 146), - [5629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 93), - [5631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 93), SHIFT(701), - [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 119), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7028), - [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [5640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [5642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(221), - [5645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 118), - [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 116), - [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), - [5651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(221), - [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7026), - [5656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 54), - [5658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 54), - [5660] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [5664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, .production_id = 53), - [5666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, .production_id = 53), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7085), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7086), - [5674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 185), - [5676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 52), - [5678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 52), - [5680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 51), - [5682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 51), - [5684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 89), REDUCE(sym_assignment_expression, 3, .production_id = 69), - [5687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 81), - [5689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 71), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), - [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [5695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 29), - [5697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 30), - [5699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 29), - [5701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, .production_id = 80), - [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, .production_id = 80), - [5705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 81), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [5709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [5711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, .production_id = 123), - [5713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 71), SHIFT(220), - [5716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [5720] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), - [5724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 27), - [5726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 125), - [5728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 125), - [5730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 122), - [5732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 122), - [5734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 117), - [5736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 117), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [5742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 119), - [5744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 118), - [5746] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, .production_id = 117), - [5748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, .production_id = 117), - [5750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 84), - [5752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 84), - [5754] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 116), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [5758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 115), - [5760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 115), - [5762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [5764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [5766] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), - [5769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2), REDUCE(sym_template_literal_type, 2), - [5772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [5775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 11), - [5777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 11), - [5779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), - [5782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), - [5785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [5787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [5789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(221), - [5792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [5794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [5800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2), - [5802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2), - [5804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(220), - [5807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 79), - [5809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 79), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [5813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(216), - [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [5818] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 29), - [5820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 29), - [5822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 169), - [5824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 169), - [5826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 18), - [5828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 18), - [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1), - [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1), - [5834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, .production_id = 20), - [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, .production_id = 20), - [5838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 69), REDUCE(sym_assignment_expression, 3, .production_id = 69), - [5841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 69), - [5843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(220), - [5846] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [5848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [5852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 27), - [5854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [5859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [5861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [5863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 191), - [5865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 191), - [5867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 29), REDUCE(sym_object_pattern, 3, .production_id = 30), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), - [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 71), SHIFT(223), - [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [5901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), - [5911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), - [5913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 69), - [5915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [5917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [5919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [5925] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 29), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 30), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7066), - [5931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [5933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, .production_id = 49), - [5935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 30), - [5937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(218), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), - [5946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(218), - [5949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(223), - [5952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(223), - [5955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(223), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), - [5962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(218), - [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [5975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [5977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [5993] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), - [5997] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [6015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [6027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 71), SHIFT(218), - [6030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [6036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [6070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [6074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [6076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [6078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), - [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [6082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [6084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 40), - [6086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 40), - [6088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [6090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, .production_id = 9), - [6092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 9), - [6095] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1, .production_id = 9), REDUCE(sym__primary_type, 1, .production_id = 15), - [6099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [6101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), - [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [6108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(215), - [6111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(215), - [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [6118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [6120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), - [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), - [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [6126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 40), - [6128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 40), - [6130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 15), REDUCE(sym__parameter_name, 2, .production_id = 40), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7032), - [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 90), - [6139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), - [6142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [6144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), - [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [6148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [6150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [6152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6669), - [6156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(215), - [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3816), - [6175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), - [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), - [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [6189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 71), SHIFT(215), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5048), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), - [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [6216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), - [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), - [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [6234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 9), - [6236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, .production_id = 9), REDUCE(sym__primary_type, 1, .production_id = 15), - [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), - [6245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), - [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), - [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), - [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [6257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), - [6259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4676), - [6261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [6263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [6269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [6275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [6289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [6293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [6297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [6299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), - [6309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [6323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [6325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [6329] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), REDUCE(sym_rest_pattern, 2), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6701), - [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, .production_id = 113), - [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), - [6339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6719), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6720), - [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [6355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [6367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [6371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [6373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), - [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6593), - [6395] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, .production_id = 17), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [6408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [6410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [6412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6616), - [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), - [6428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), - [6430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 29), REDUCE(sym_object_pattern, 3, .production_id = 30), - [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [6435] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [6438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [6440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [6442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [6444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [6446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), - [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [6452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6608), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6606), - [6458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), - [6460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3341), - [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [6464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [6466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [6468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [6472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, .production_id = 43), - [6474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 43), - [6476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [6478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [6480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), - [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [6486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3203), - [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6562), - [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [6494] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(217), - [6497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(217), - [6500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(217), - [6503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 71), SHIFT(222), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6665), - [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6537), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), - [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [6516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [6519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [6521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [6524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), - [6528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 104), - [6530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 104), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [6534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 71), SHIFT(217), - [6537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, .production_id = 100), - [6539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 100), - [6541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), - [6543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_pattern_repeat1, 1), - [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [6547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, .production_id = 200), - [6549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, .production_id = 200), - [6551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3843), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [6567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [6571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(214), - [6574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(222), - [6577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(222), - [6580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(222), - [6583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(214), - [6586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(214), - [6589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, .production_id = 93), SHIFT(660), - [6592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 71), SHIFT(214), - [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), - [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), - [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [6601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4623), - [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6891), - [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), - [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [6621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [6624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [6626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [6629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1), - [6631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 158), - [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 158), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [6639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, .production_id = 156), - [6641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 156), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [6645] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 71), SHIFT(219), - [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [6660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [6682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2), SHIFT(219), - [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6838), - [6687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(219), - [6690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(219), - [6693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 29), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 30), - [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [6698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), - [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [6718] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 29), - [6720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 11), REDUCE(sym_class, 3, .production_id = 84), - [6723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 11), REDUCE(sym_class, 3, .production_id = 84), - [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [6728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 167), REDUCE(sym_class, 6, .production_id = 231), - [6731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 167), REDUCE(sym_class, 6, .production_id = 231), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), - [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [6750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [6756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 115), REDUCE(sym_class, 5, .production_id = 191), - [6759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 115), REDUCE(sym_class, 5, .production_id = 191), - [6762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 112), REDUCE(sym_class, 5, .production_id = 190), - [6765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 112), REDUCE(sym_class, 5, .production_id = 190), - [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [6770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 111), REDUCE(sym_class, 5, .production_id = 189), - [6773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 111), REDUCE(sym_class, 5, .production_id = 189), - [6776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 52), REDUCE(sym_class, 4, .production_id = 150), - [6779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 52), REDUCE(sym_class, 4, .production_id = 150), - [6782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 51), REDUCE(sym_class, 4, .production_id = 149), - [6785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 51), REDUCE(sym_class, 4, .production_id = 149), - [6788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 48), REDUCE(sym_class, 4, .production_id = 148), - [6791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 48), REDUCE(sym_class, 4, .production_id = 148), - [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [6802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 234), - [6804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 234), - [6806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 108), - [6808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, .production_id = 108), SHIFT_REPEAT(3671), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [6813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 121), - [6815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 121), - [6817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 309), - [6819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 309), - [6821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 171), - [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 171), - [6825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 310), - [6827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 310), - [6829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 195), - [6831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 195), - [6833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 265), - [6835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 265), - [6837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, .production_id = 325), - [6839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, .production_id = 325), - [6841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 290), - [6843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 290), - [6845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 266), - [6847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 266), - [6849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 217), - [6851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 217), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), - [6855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 154), - [6857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 154), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [6861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), - [6863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), SHIFT_REPEAT(3682), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3627), - [6872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 291), - [6874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 291), - [6876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 91), - [6878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 91), - [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [6882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [6886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, .production_id = 108), - [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [6890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [6894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, .production_id = 11), - [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), - [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [6902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), - [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), - [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), - [6908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2962), - [6910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [6916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), - [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), - [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), - [6932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), - [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), - [6938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5028), - [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2999), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [6956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 23), SHIFT_REPEAT(5970), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), - [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1175), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), - [6971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), - [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [6975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3829), - [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), - [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [6985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), - [6987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [6989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6613), - [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6789), - [6995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), - [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2980), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), - [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), - [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6553), - [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), - [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [7029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), - [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3823), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3333), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [7049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6825), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7226), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7069), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6100), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6331), - [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7520), - [7089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [7095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6141), - [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6306), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), - [7109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4184), - [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6372), - [7117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5752), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7059), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6097), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7431), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7340), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7343), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7579), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7593), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7182), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7176), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7287), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7167), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7464), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), - [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7452), - [7195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [7197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [7199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [7201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [7205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6521), - [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), - [7211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [7213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6524), - [7215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6298), - [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), - [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6296), - [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7324), - [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7327), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7330), - [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [7243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 288), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), - [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6247), - [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6251), - [7257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, .production_id = 1), - [7259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4292), - [7261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [7263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 255), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4759), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4756), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), - [7281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 249), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [7289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 5), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), - [7295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 159), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [7301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 211), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4643), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [7321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 164), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4155), - [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), - [7335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 109), - [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [7341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 87), - [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), - [7347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [7349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4163), - [7351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), - [7353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), - [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), - [7357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 209), - [7359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [7363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4585), - [7365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), - [7373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 249), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [7377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 5), - [7379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [7381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), - [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [7387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 159), - [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [7393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 87), - [7395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), - [7397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 209), - [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4162), - [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [7403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6808), - [7405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5756), - [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), - [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [7413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 13), REDUCE(sym_type_parameter, 1, .production_id = 14), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [7418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 13), SHIFT(1902), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [7423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 164), - [7425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 255), - [7427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 209), - [7429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 159), - [7431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 109), - [7433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [7435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 87), - [7437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 209), - [7439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 211), - [7441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 5), - [7443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 13), SHIFT(7042), - [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 159), - [7448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 288), - [7450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 87), - [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 5), - [7454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 249), - [7456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 249), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6520), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6302), - [7472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6246), - [7474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [7476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7364), - [7478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7363), - [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4671), - [7482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7279), - [7484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [7486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [7488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [7490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [7492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, .production_id = 57), - [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), - [7496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), - [7498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), - [7500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), - [7502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7401), - [7504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6293), - [7506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), - [7508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), - [7510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), - [7512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7152), - [7514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), - [7516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), - [7518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [7532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 22), - [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), - [7536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4362), - [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2397), - [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), - [7542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), - [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), - [7546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6161), - [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), - [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4459), - [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), - [7554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4424), - [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4440), - [7558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), - [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), - [7570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 137), - [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 138), - [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), - [7594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, .production_id = 57), - [7596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6840), - [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4710), - [7606] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 139), - [7608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 139), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), - [7614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 138), - [7616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 137), - [7618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), - [7628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 75), - [7630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 136), - [7632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 136), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), - [7636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, .production_id = 74), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7089), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [7656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__destructuring_pattern, 1), - [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [7664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 308), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), - [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), - [7682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 281), - [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), - [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [7688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 30), - [7690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [7708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [7714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), - [7728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), - [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [7756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4736), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4722), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6803), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4781), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), - [7810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7006), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4689), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4685), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [7848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7131), - [7850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, .production_id = 59), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), - [7854] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, .production_id = 17), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [7860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, .production_id = 68), - [7862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, .production_id = 68), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7493), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7356), - [7872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7187), - [7874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7159), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), - [7880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2), - [7882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [7888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7501), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [7892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7211), - [7894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7371), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 174), - [7900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [7906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4933), - [7908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 173), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [7914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4976), - [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 308), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 318), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5354), - [7924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), - [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 313), - [7928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 292), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5383), - [7932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4965), - [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 293), - [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1), - [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [7940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_chain, 1), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 274), - [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 273), - [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3899), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), - [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), - [7956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 241), - [7958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 240), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [7962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4892), - [7964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7595), - [7970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 201), - [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2299), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), - [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 170), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5435), - [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4948), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [7992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, .production_id = 10), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [7998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7583), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), - [8002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4940), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), - [8008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4939), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4952), - [8014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 220), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5286), - [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), - [8020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, .production_id = 327), - [8022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 163), - [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 120), - [8028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4719), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [8032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4937), - [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7265), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [8040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7263), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6838), - [8046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [8052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 141), - [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 141), - [8062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 29), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 30), - [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [8067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4815), - [8069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 107), - [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [8075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), - [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), - [8079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 14), - [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), - [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7600), - [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [8087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, .production_id = 126), - [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [8091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 61), - [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [8095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [8101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7535), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [8105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 281), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [8111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [8115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [8119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7605), - [8121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), - [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5331), - [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), - [8129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, .production_id = 59), - [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6861), - [8133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(819), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5182), - [8138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), - [8142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7134), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4109), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), - [8166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 82), - [8168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 29), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [8172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(5692), - [8175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [8177] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(556), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2502), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), - [8200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(2386), - [8203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6926), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4270), - [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7556), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6427), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5988), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [8235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [8241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [8247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7039), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), - [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), - [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), - [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [8287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5415), - [8293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), - [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4389), - [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), - [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [8317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, .production_id = 10), - [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), - [8323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [8325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), - [8327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), - [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [8331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), - [8333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6741), - [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), - [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [8351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), - [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), - [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [8363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), - [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), - [8377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7395), - [8381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 23), - [8383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 23), SHIFT_REPEAT(6405), - [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 74), - [8388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, .production_id = 142), - [8390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, .production_id = 142), - [8392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5297), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [8400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(7134), - [8403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [8405] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(482), - [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), - [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5468), - [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7471), - [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), - [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7254), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [8448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 141), - [8450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 141), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), - [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), - [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5326), - [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), - [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3910), - [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), - [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), - [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5332), - [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 21), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7257), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7474), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), - [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), - [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6238), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), - [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5315), - [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [8562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 251), - [8564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 277), - [8566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 287), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [8576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 283), - [8578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 321), - [8580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 324), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [8598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 213), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7510), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7508), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), - [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), - [8624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 207), - [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7145), - [8634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 215), - [8636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [8640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 205), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), - [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [8650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(850), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [8657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, .production_id = 203), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7205), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6193), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), - [8671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 202), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [8681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 218), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), - [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [8691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 205), - [8693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 207), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [8699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 316), - [8701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 312), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [8705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 311), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [8709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, .production_id = 219), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [8713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [8715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [8717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [8721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, .production_id = 298), - [8723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [8729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 304), - [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [8733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 280), - [8735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 35), - [8737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 22), SHIFT(1926), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6826), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), - [8746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 307), - [8748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 94), - [8750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), SHIFT_REPEAT(620), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), - [8755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1873), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3090), - [8762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2), - [8764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 272), - [8766] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 142), - [8768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 142), - [8770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 277), - [8772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 161), - [8774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 253), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), - [8778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, .production_id = 172), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [8788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 271), - [8790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 56), - [8792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 269), - [8794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1872), - [8797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), - [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, .production_id = 257), - [8801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [8803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 247), - [8805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 166), - [8807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 295), - [8809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 296), - [8811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 243), - [8813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [8815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 298), - [8817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6766), - [8819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 280), - [8821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 301), - [8823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7338), - [8825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 243), - [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [8829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [8831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6704), - [8833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), - [8835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6705), - [8837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 247), - [8839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1978), - [8842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 22), SHIFT(1867), - [8845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 94), - [8847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [8849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), - [8851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6676), - [8853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), - [8855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, .production_id = 248), - [8857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6639), - [8859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 330), - [8861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 161), - [8863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 35), - [8865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 22), SHIFT(2001), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [8876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 35), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [8880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1969), - [8883] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 22), SHIFT(1864), - [8886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [8890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), - [8892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(1905), - [8895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2), SHIFT_REPEAT(6193), - [8898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [8906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6559), - [8910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5042), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [8928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, .production_id = 57), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5050), - [8934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 34), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [8944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(355), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6329), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6638), - [8952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [8956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(4679), - [8959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [8961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), - [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), - [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [8971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [8975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), - [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7311), - [8979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [8987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [8989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), - [8991] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1), REDUCE(aux_sym_template_literal_type_repeat1, 1), - [8994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 132), - [8996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [9000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [9004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [9006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 114), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [9016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [9018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [9026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 102), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [9032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [9042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6318), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [9048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [9052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4452), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [9062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), - [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [9070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 30), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [9074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4413), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6761), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), - [9084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), SHIFT_REPEAT(573), - [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [9089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [9093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [9095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [9097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [9099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [9101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), - [9105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [9107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 17), - [9109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), - [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), - [9113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 168), - [9115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 168), SHIFT_REPEAT(562), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [9120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 64), - [9122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), - [9126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 87), - [9128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, .production_id = 270), - [9130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 50), - [9132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), - [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [9136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6280), - [9138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 227), - [9140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 227), SHIFT_REPEAT(5661), - [9143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, .production_id = 227), - [9145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), - [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), - [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), - [9151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [9153] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(6328), - [9156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [9158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(6329), - [9161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [9163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), - [9167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 42), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), - [9175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [9181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [9187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7013), - [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), - [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [9217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 182), - [9219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 182), - [9221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, .production_id = 183), - [9223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, .production_id = 183), - [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), - [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7043), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [9245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [9249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1), - [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [9253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [9257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [9259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [9261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [9271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4515), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), - [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2438), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4516), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [9285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [9295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4714), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), - [9309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6966), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6945), - [9319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7070), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), - [9323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), - [9327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), - [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [9335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6957), - [9337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [9343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [9345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6415), - [9351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(624), - [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), - [9362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [9364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 201), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [9368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [9370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [9374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [9376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), - [9378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 206), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), - [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), - [9386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 210), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [9390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [9392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [9394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 320), - [9396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 323), - [9398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 319), - [9400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 322), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [9406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 170), - [9408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 204), - [9410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 212), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [9422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 208), - [9424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 214), - [9426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 216), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4249), - [9452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 305), - [9454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6173), - [9456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7165), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4941), - [9462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 317), - [9464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5), - [9466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 315), - [9468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 314), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6500), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6501), - [9486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 302), - [9488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 303), - [9490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3), - [9492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(1810), - [9495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [9497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 306), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6829), - [9501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), - [9507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [9509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6717), - [9513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [9515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [9517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(1942), - [9520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 229), SHIFT_REPEAT(3774), - [9523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, .production_id = 229), - [9525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 50), - [9527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 165), - [9529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [9531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [9533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 95), - [9535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 162), - [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), - [9539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, .production_id = 235), - [9541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 242), - [9543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 244), - [9545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 245), - [9547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 246), - [9549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 326), - [9551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 160), - [9553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 120), - [9555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 240), - [9557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 328), - [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), - [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [9563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 241), - [9565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 250), - [9567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 329), - [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [9571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 252), - [9573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, .production_id = 331), - [9575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 254), - [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4950), - [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), - [9583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [9585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), - [9587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), - [9589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6833), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [9611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [9613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [9615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [9619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), - [9621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, .production_id = 332), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [9629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(4468), - [9632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [9634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6967), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [9642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6768), - [9648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 300), - [9650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(4494), - [9653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [9655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4), - [9657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), - [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [9663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(5844), - [9666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [9668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 256), - [9670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2), SHIFT_REPEAT(1862), - [9673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, .production_id = 59), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [9677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), - [9681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [9683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [9685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3875), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [9693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [9695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [9701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3868), - [9703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [9709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3930), - [9711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6609), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), - [9721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6284), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), - [9725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), - [9727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [9729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 34), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), - [9733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(278), - [9736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [9738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1), - [9740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 95), - [9742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 94), - [9744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6386), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6586), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), - [9754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6582), - [9760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6670), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), - [9770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5473), - [9774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, .production_id = 87), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7152), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6074), - [9790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, .production_id = 1), - [9792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 285), - [9794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 90), - [9796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, .production_id = 292), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6752), - [9800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 297), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6079), - [9806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [9810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 32), - [9812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), SHIFT_REPEAT(6638), - [9815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2), - [9817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 299), - [9819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [9823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(430), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [9834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 294), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [9840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2), SHIFT_REPEAT(787), - [9843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 1), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), - [9857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 282), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [9867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(334), - [9870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [9876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(419), - [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [9883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [9887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 284), - [9889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 275), - [9891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 276), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), - [9897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [9907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 278), - [9909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 279), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), - [9917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 273), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [9925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6156), - [9927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), - [9929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7169), - [9931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), - [9933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [9935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [9937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 274), - [9939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [9941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [9943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [9945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [9947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(3317), - [9950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), - [9956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 286), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [9966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(3495), - [9969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [9973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [9977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [9979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [9981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [9983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3192), - [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [9987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), - [9997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, .production_id = 5), - [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), - [10003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [10007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), - [10009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), - [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [10013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), - [10015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4140), - [10019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), - [10021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [10025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3946), - [10027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [10031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [10033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [10035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [10037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [10041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5557), - [10043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [10047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [10049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), - [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), - [10055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), - [10057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), - [10061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [10063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), - [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), - [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6839), - [10071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), - [10073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 1), - [10075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1), - [10077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1), - [10079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1), - [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), - [10085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(845), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), - [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6561), - [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6935), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6935), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6560), - [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6929), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6929), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6540), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6624), - [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), - [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1701), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6421), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [10224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1), - [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6936), - [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7564), - [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7393), - [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7561), - [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7542), - [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), - [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4137), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4081), - [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), - [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7539), - [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [10278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), - [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), - [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7514), - [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [10296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), - [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7079), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), - [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [10318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7511), - [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), - [10322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__formal_parameter, 1), - [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), - [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), - [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [10334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7479), - [10336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [10338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5067), - [10340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [10342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [10344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5498), - [10346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7476), - [10348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [10350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [10352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), - [10354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [10356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2223), - [10358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 1), - [10360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [10362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [10364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [10366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [10368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [10370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [10372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2278), - [10374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [10376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [10378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [10380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [10382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), - [10384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), - [10386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [10388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2507), - [10390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [10392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2503), - [10394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), - [10396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [10398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [10400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [10402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [10404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7080), - [10406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7090), - [10408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5336), - [10410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), - [10412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [10414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [10416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [10418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [10420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [10422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [10424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [10426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [10428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), - [10430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [10432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), - [10434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), - [10436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), - [10438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7052), - [10440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7053), - [10442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7044), - [10444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), - [10446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), - [10448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [10450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [10452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, .production_id = 5), - [10454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4853), - [10456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [10458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [10460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [10462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [10464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [10466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [10468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 41), - [10470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [10472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [10474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4396), - [10476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), - [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), - [10480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [10482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [10484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), - [10486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, .production_id = 193), - [10488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [10490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [10492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), - [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [10496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [10498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), - [10500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), - [10504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [10506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), - [10508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [10510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), - [10512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [10514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [10516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [10518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [10520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [10522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), - [10524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), - [10526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [10528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [10530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [10532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [10534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), - [10536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), - [10538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 63), - [10540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), - [10544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [10546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [10548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, .production_id = 196), - [10550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, .production_id = 193), - [10552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [10554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), - [10556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 34), - [10558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [10560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [10562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), - [10564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [10566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), - [10568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [10570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [10572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [10574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [10576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, .production_id = 94), - [10578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, .production_id = 177), - [10580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6782), - [10582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6784), - [10584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6441), - [10586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7275), - [10590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [10592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [10594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), - [10596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), - [10598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [10600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [10602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), - [10604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [10606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6760), - [10608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), - [10610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), - [10612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6751), - [10614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [10616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [10618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6156), - [10620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 157), - [10622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [10624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [10626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 152), - [10628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [10630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, .production_id = 155), - [10632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5786), - [10634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, .production_id = 152), - [10636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2210), - [10640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), - [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2958), - [10644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2932), - [10648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), - [10650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [10652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 134), - [10654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), - [10658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [10660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [10662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [10664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, .production_id = 87), - [10666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, .production_id = 35), - [10668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 131), - [10670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [10674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [10676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [10678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), - [10682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), - [10686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6284), - [10688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [10692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6031), - [10694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2), - [10696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 103), - [10698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 101), - [10700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), - [10702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), - [10704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [10706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), - [10708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [10710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), - [10712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [10714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), - [10716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), - [10718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6549), - [10720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), - [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7482), - [10724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [10726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [10728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7522), - [10730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), - [10732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), - [10734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [10736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [10738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), - [10740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [10742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6456), - [10744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), - [10746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [10748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [10750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [10752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [10754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [10756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4), - [10758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [10760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6664), - [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4308), - [10766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), - [10768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), - [10770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6678), - [10772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [10774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [10778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6693), - [10780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), - [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), - [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7376), - [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [10788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), - [10790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [10792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [10794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [10796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [10798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [10800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), - [10802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [10804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [10806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), - [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7165), - [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), - [10812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), - [10814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [10816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [10818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), - [10820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), - [10822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [10824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [10826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), - [10828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [10830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), - [10832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), - [10834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [10836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [10838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [10840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), - [10842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [10844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), - [10846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [10848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6756), - [10850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [10852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), - [10854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), - [10856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4437), - [10858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6819), - [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [10862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [10864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), - [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [10876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7247), - [10878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), - [10880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [10882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [10884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7359), - [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [10888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [10890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [10892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [10894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), - [10896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [10898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [10900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [10902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [10904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [10906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3), - [10908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [10910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [10912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [10914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), - [10916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [10918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [10920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [10922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [10924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [10926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), - [10928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), - [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7319), - [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [10938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), - [10942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [10944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [10950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), - [10952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [10954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [10956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [10958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [10960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [10962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [10966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [10968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [10974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [10976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [10978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7551), - [10980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [10982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5), - [10984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), - [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6712), - [10992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [10994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [11004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [11006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [11008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [11010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7016), - [11012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [11016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), - [11020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), - [11024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3991), - [11028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [11030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [11032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [11034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [11036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [11038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [11040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), - [11042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [11044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [11046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [11048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [11050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [11052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), - [11054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [11056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), - [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), - [11064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [11066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [11070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [11072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [11074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [11076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), - [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), - [11086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), - [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [11096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [11100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), - [11104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [11114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [11116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [11118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [11122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [11126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [11128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7318), - [11130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), - [11132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [11134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [11140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [11142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), - [11146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7183), - [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), - [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [11156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [11158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [11160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), - [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), - [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [11166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [11170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6642), - [11174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [11176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [11178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [11180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [11182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7454), - [11184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [11186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [11188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6919), - [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), - [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [11198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2490), - [11200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [11202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6910), - [11204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [11206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [11208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [11210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [11212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7238), - [11214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), - [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [11220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [11230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [11232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), - [11234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), - [11236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [11238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [11240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [11242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [11244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [11246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [11248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7278), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [11254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), - [11258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [11260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [11262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [11264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), - [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [11268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [11272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [11276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [11278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [11284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), - [11286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), - [11288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [11290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [11294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [11296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7208), - [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), - [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [11306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [11312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [11314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [11316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), - [11318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7203), - [11324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [11326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [11328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6973), - [11330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [11332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5485), - [11334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [11336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5483), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [11346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), - [11348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6762), - [11350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [11352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [11354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [11356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [11358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [11360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [11362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7156), - [11366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7154), - [11368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [11370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [11372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), - [11374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), - [11376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), - [11378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4294), - [11380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [11382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), - [11384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7151), - [11386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [11388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7091), - [11390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), - [11392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), - [11394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [11396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [11398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [11400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), - [11402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [11404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7370), - [11406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5011), - [11408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5010), - [11410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7138), - [11412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7143), - [11414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [11416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [11418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [11420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [11422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), - [11424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [11426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), - [11428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7155), - [11430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [11432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), - [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), - [11436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5371), - [11438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [11440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5368), - [11442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [11444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [11446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [11448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [11450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), - [11452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7195), - [11454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), - [11456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [11458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), - [11460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [11462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7202), - [11464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), - [11466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), - [11468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), - [11470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [11472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [11474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [11476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [11478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [11480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), - [11482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), - [11484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [11486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6880), - [11488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [11490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [11492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [11494] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [11496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6630), - [11498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [11500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [11502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7420), - [11504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [11506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7282), - [11508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7442), - [11510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [11512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4104), - [11514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), - [11516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [11518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), - [11520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), - [11522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [11524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), - [11526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), - [11528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), - [11530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), - [11532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), - [11534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), - [11536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [11538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4243), - [11540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7545), - [11542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), - [11544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [11546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [4053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2247), + [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), + [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3928), + [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), + [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3133), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2243), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2510), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), + [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3254), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), + [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2441), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2234), + [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [4109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), + [4111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5386), + [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), + [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5578), + [4119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), + [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4320), + [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2943), + [4131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3839), + [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2312), + [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2429), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2419), + [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [4157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), + [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3378), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), + [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5414), + [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(313), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5425), + [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5426), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5627), + [4218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 77), + [4220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 77), + [4222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 76), + [4224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 76), + [4226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 75), + [4228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 75), + [4230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, 0, 74), + [4232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, 0, 74), + [4234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, 0, 145), + [4236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, 0, 145), + [4238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [4242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), + [4244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 0), + [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6513), + [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5725), + [4254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, 0, 0), + [4256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 0), + [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [4260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, 0, 186), + [4262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, 0, 186), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [4266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [4271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 7), + [4274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [4276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2, 0, 0), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6891), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), + [4290] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(609), + [4293] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 13), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 13), + [4302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7103), + [4305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 13), + [4308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1707), + [4311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 13), SHIFT(6858), + [4314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 13), + [4316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [4318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [4322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(7024), + [4325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(1710), + [4328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 1), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [4332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [4336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(797), + [4339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_pattern, 1, -1, 0), + [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [4344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), + [4346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2, 0, 0), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7041), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [4356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), + [4358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), SHIFT(4137), + [4361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), SHIFT_REPEAT(5748), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [4366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(718), + [4369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6742), + [4375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), SHIFT(295), + [4378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), + [4386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), REDUCE(sym__primary_type, 1, 0, 13), + [4389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 31), + [4391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [4393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2, 0, 0), + [4395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, 0, 74), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), + [4401] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 13), REDUCE(sym_rest_pattern, 2, 0, 0), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), + [4407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [4411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [4413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), + [4415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_pattern, 1, -1, 1), + [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [4426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, 0, 17), + [4430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [4432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [4434] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_predefined_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 31), + [4438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [4440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [4442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), SHIFT(488), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 1), REDUCE(sym_rest_pattern, 2, 0, 31), + [4452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), + [4454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 75), + [4456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 74), + [4458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 57), + [4460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 59), + [4462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [4464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [4469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 57), + [4471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [4473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 59), + [4475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 59), + [4477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 57), + [4479] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(682), + [4482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [4486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [4488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), + [4492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [4500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [4502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [4504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [4510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), + [4512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), + [4514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3039), + [4516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [4518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [4520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [4524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [4528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [4530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2237), + [4532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [4536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), + [4538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2236), + [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [4546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [4552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [4558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), + [4562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2332), + [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [4566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [4570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), + [4576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1066), + [4584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [4586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [4590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2331), + [4592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [4594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2337), + [4596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [4598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [4602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [4604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [4606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [4610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [4612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), + [4616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [4622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1067), + [4624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5915), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7313), + [4634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2294), + [4637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2491), + [4640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [4644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2465), + [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(3324), + [4650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2885), + [4653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2693), + [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [4660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6212), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), + [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3398), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6343), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1204), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [4690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [4692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), + [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3344), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2544), + [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), + [4704] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(4104), + [4707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3677), + [4710] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), + [4712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3533), + [4715] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(565), + [4718] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(5374), + [4721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(5375), + [4724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3113), + [4727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(7131), + [4730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(4102), + [4733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(6212), + [4736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(2636), + [4739] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(2901), + [4742] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3326), + [4745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(2663), + [4748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3398), + [4751] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3352), + [4754] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 23), SHIFT_REPEAT(3607), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [4759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1203), + [4761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [4763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4635), + [4765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [4767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), + [4769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [4773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [4775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [4777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [4779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [4781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [4783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [4785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), + [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [4789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), + [4791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), + [4795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [4797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [4801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [4805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), + [4809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [4811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), + [4813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [4815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), + [4817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [4819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3228), + [4821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [4823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [4827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [4829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [4835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [4837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [4839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4167), + [4841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), + [4845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2833), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), + [4851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [4853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [4857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [4861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), + [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [4867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [4869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4174), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [4873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [4875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [4877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [4885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [4887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [4889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [4893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3146), + [4895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), + [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), + [4907] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 29), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [4913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 13), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), + [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [4927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [4929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3488), + [4939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, 0, 12), + [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, 0, 12), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6675), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [4949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 58), + [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 58), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6909), + [4955] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 57), + [4957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 57), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6857), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [4963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 0), + [4965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 0), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7094), + [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, 0, 15), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 15), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7036), + [4979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 2, 0, 66), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 2, 0, 66), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [4989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_instantiation_expression, 2, 0, 19), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_instantiation_expression, 2, 0, 19), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [4995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_asserts, 2, 0, 0), + [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 2, 0, 0), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [5001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 136), + [5003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 136), + [5005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 137), + [5007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 137), + [5009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [5011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 175), + [5013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2, 0, 0), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2, 0, 0), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [5019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 176), + [5023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 187), + [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 187), + [5027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), + [5029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1762), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3, 0, 94), + [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3, 0, 94), + [5037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [5041] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2294), + [5044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(3324), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), + [5049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3022), + [5051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3223), + [5053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [5055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), + [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 138), + [5059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 75), + [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 75), + [5063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 74), + [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 74), + [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), + [5069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), + [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [5075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [5079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [5087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [5091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), + [5097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [5119] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 0), + [5121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 0), + [5123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3, 0, 0), + [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3, 0, 0), + [5127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3, 0, 0), + [5129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3, 0, 0), + [5131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), + [5133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression, 3, 0, 139), + [5135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [5137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [5141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4, 0, 178), + [5143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4, 0, 178), + [5145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 4, 0, 65), + [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 4, 0, 65), + [5149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 57), + [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 59), + [5153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 59), + [5155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [5157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4, 0, 0), + [5159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4, 0, 0), + [5161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 57), + [5163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 179), + [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 179), + [5167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 135), + [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 135), + [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, 0, 133), + [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, 0, 133), + [5175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 88), REDUCE(sym_nested_type_identifier, 3, 0, 133), + [5178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3, 0, 74), REDUCE(sym_nested_type_identifier, 3, 0, 133), + [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 3, 0, 0), + [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [5187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [5189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [5191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3, 0, 0), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [5195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), + [5197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 130), + [5199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 129), + [5201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 129), + [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7121), + [5205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 128), + [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 128), + [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 68), + [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 68), + [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 127), + [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_instantiation_expression, 2, 0, 127), + [5217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression, 2, 0, 17), + [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression, 2, 0, 17), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 145), + [5225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 145), + [5227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 221), + [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 221), + [5231] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2693), + [5234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [5236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 59), + [5238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 222), + [5240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 222), + [5242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 57), + [5244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 67), + [5246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 67), + [5248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), + [5250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 4, 0, 223), + [5252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 17), + [5254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 17), + [5256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [5260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 224), + [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 224), + [5264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, 0, 65), + [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, 0, 65), + [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [5270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5, 0, 225), + [5272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5, 0, 225), + [5274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [5276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2, 0, 0), + [5278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [5280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [5282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2, 0, 0), + [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2, 0, 0), + [5286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 258), + [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 258), + [5290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 259), + [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 259), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [5296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 62), + [5298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 62), + [5300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), + [5302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 260), + [5304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_literal_type, 2, 0, 0), + [5308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, 0, 8), + [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, 0, 8), + [5312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2, 0, 0), + [5314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2, 0, 0), + [5316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2, 0, 0), + [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2, 0, 0), + [5320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2, 0, 0), + [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2, 0, 0), + [5324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 60), + [5326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 60), + [5328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), + [5330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_subscript_expression, 5, 0, 261), + [5332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 6, 0, 262), + [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 6, 0, 262), + [5336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2, 0, 59), + [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2, 0, 59), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), + [5342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 55), + [5344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 55), + [5346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3, 0, 0), + [5348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3, 0, 0), + [5350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, 0, 289), + [5352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, 0, 289), + [5354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 16), + [5356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 16), + [5358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [5360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_satisfies_expression, 3, 0, 0), + [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [5366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, 0, 0), + [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, 0, 0), + [5370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2491), + [5373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1, 0, 0), + [5375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1, 0, 0), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7130), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7133), + [5381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2465), + [5384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(2885), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5591), + [5389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), + [5391] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2, 0, 0), + [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), + [5395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [5401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5404] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [5409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 4, 0, 117), + [5411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 4, 0, 117), + [5413] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6491), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4833), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [5472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [5475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, 0, 185), + [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), + [5479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2, 0, 0), + [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2, 0, 0), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), + [5487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 27), + [5489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [5505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [5521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 25), + [5523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3, 0, 0), + [5525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 69), + [5527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 70), + [5529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 0), + [5531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 0), + [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [5549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [5569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 71), + [5571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), + [5573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, 0, 29), + [5575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, 0, 30), + [5577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, 0, 29), + [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [5583] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(218), + [5586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), REDUCE(sym_assignment_expression, 3, 0, 25), + [5589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), + [5591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [5593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), + [5595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 8), + [5597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(217), + [5600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(215), + [5603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), + [5605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 89), REDUCE(sym_assignment_expression, 3, 0, 69), + [5608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 69), REDUCE(sym_assignment_expression, 3, 0, 69), + [5611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, 0, 69), + [5613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [5616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), + [5619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, 0, 29), REDUCE(sym_object_pattern, 3, 0, 30), + [5622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 27), + [5624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, 0, 81), + [5626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, 0, 71), + [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [5634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 2, 0, 20), + [5636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 2, 0, 20), + [5638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), + [5640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_closing_tag, 1, 0, 0), + [5642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, 0, 191), + [5644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, 0, 191), + [5646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 18), + [5648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 18), + [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [5652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6459), + [5658] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), + [5660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2, 0, 0), + [5662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(218), + [5665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), + [5667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [5671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, 0, 169), + [5673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, 0, 169), + [5675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(217), + [5678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), + [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, 0, 8), + [5682] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(218), + [5685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, 0, 93), + [5687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 93), SHIFT(672), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [5692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 116), + [5694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 118), + [5696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, 0, 119), + [5698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 123), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 4, 0, 124), + [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [5706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), + [5708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), + [5710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(217), + [5713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), + [5715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), + [5717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_expression, 3, 0, 53), + [5719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_expression, 3, 0, 53), + [5721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 150), + [5723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 150), + [5725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 149), + [5727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 149), + [5729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), + [5731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6348), + [5735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, 0, 146), + [5737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, 0, 146), + [5739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3, 0, 0), + [5741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3, 0, 0), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [5749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, 0, 54), + [5751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, 0, 54), + [5753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [5756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_template_string, 2, 0, 0), REDUCE(sym_template_literal_type, 2, 0, 0), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6293), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6636), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [5773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, 0, 125), + [5775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, 0, 125), + [5777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), + [5779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), + [5781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, 0, 122), + [5783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, 0, 122), + [5785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, 0, 117), + [5787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, 0, 117), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [5791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 119), + [5793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 118), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [5797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, 0, 116), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [5801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, 0, 115), + [5803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, 0, 115), + [5805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4, 0, 0), + [5807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4, 0, 0), + [5809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3, 0, 0), + [5811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3, 0, 0), + [5813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 70), + [5815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(215), + [5818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(215), + [5821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 78), + [5823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 78), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [5827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(217), + [5830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 0), + [5832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 0), + [5834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, 0, 29), + [5836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, 0, 29), + [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [5848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 7), SHIFT(6924), + [5851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, 0, 84), + [5853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, 0, 84), + [5855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(215), + [5858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 15), + [5861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__primary_type, 1, 0, 15), + [5864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(218), + [5867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, 0, 81), + [5869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_template, 3, 0, 80), + [5871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_glimmer_template, 3, 0, 80), + [5873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, 0, 79), + [5875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, 0, 79), + [5877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(219), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), + [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [5886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 1, 0, 49), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3374), + [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [5928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [5936] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(219), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), + [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), + [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [5957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(219), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [5964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 30), + [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [5970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), + [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [5976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3114), + [5986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(219), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, 0, 69), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [6001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(216), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [6008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(216), + [6011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(216), + [6014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(216), + [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [6019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2, 0, 0), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [6025] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 7), REDUCE(aux_sym_object_repeat1, 2, 0, 29), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [6031] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [6037] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), + [6049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [6053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [6055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [6113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2, 0, 0), REDUCE(sym_object_type, 2, 0, 0), + [6116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(220), + [6119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2, 0, 0), REDUCE(sym_tuple_type, 2, 0, 0), + [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [6124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [6126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [6128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3288), + [6130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(220), + [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3174), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [6139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, 0, 90), + [6141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 40), + [6143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 40), + [6145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 15), REDUCE(sym__parameter_name, 2, 0, 40), + [6148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, 0, 40), + [6150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, 0, 40), + [6152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), + [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6634), + [6158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(220), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4523), + [6167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1, 0, 9), + [6169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), + [6172] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym__primary_type, 1, 0, 15), + [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [6180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), + [6182] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(220), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3402), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3401), + [6201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [6203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [6205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [6221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [6223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3188), + [6225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [6227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3291), + [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6825), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4918), + [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3036), + [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [6245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), + [6247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1, 0, 9), REDUCE(sym__primary_type, 1, 0, 15), + [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [6258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [6262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [6266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), + [6268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 2, 0, 43), + [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, 0, 43), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), + [6274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [6276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [6278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), + [6280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 156), + [6282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 156), + [6284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [6302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [6308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6783), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [6342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [6350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [6354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [6362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 5, 0, 200), + [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 5, 0, 200), + [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6921), + [6374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 17), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), + [6378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 4, 0, 158), + [6380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, 0, 158), + [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [6384] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym_literal_type, 1, 0, 0), REDUCE(sym_rest_pattern, 2, 0, 0), + [6388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(214), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [6397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_clause_single, 2, 0, 113), + [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [6401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [6405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [6407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [6409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(221), + [6412] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(221), + [6415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2, 0, 0), REDUCE(sym_array_pattern, 2, 0, 0), + [6418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(221), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [6427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [6433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3165), + [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [6443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [6445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [6491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6912), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6914), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6917), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [6505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(214), + [6508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(214), + [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [6515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(222), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [6520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 104), + [6522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 104), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [6530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 3, 0, 100), + [6532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, 0, 100), + [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), + [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3366), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6915), + [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6897), + [6546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4431), + [6548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6759), + [6552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [6558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [6572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [6576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, 0, 29), REDUCE(sym_object_pattern, 3, 0, 30), + [6579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2, 0, 0), REDUCE(sym_object_pattern, 2, 0, 0), + [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6757), + [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6612), + [6588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__initializer, 2, 0, 93), SHIFT(748), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [6597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [6600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [6602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3, 0, 0), REDUCE(sym_computed_property_name, 3, 0, 0), + [6605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_computed_property_name, 3, 0, 0), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [6613] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(222), + [6616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(222), + [6619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(222), + [6622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(214), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), + [6627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_pattern_repeat1, 1, 0, 0), + [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [6631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [6633] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(221), + [6636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [6639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, 0, 0), + [6641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, 0, 0), REDUCE(sym__property_name, 1, 0, 0), + [6644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__property_name, 1, 0, 0), + [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [6648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), + [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [6652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [6654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [6656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [6658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [6662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [6664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [6666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [6670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [6678] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 8), SHIFT(223), + [6681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_await_expression, 2, 0, 0), SHIFT(223), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6654), + [6694] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 71), SHIFT(223), + [6697] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 29), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), + [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), + [6702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 1, 0, 0), + [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3373), + [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [6716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, 0, 8), SHIFT(223), + [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [6733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [6735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 84), + [6738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 2, 0, 11), REDUCE(sym_class, 3, 0, 84), + [6741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_object_repeat1, 2, 0, 29), + [6743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), + [6745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 149), + [6748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 51), REDUCE(sym_class, 4, 0, 149), + [6751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [6753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [6755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 115), REDUCE(sym_class, 5, 0, 191), + [6758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 115), REDUCE(sym_class, 5, 0, 191), + [6761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 112), REDUCE(sym_class, 5, 0, 190), + [6764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 112), REDUCE(sym_class, 5, 0, 190), + [6767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 4, 0, 111), REDUCE(sym_class, 5, 0, 189), + [6770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 4, 0, 111), REDUCE(sym_class, 5, 0, 189), + [6773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 150), + [6776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 52), REDUCE(sym_class, 4, 0, 150), + [6779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 3, 0, 48), REDUCE(sym_class, 4, 0, 148), + [6782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 3, 0, 48), REDUCE(sym_class, 4, 0, 148), + [6785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [6791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [6793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_class, 5, 0, 167), REDUCE(sym_class, 6, 0, 231), + [6796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_class, 5, 0, 167), REDUCE(sym_class, 6, 0, 231), + [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [6801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 171), + [6803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 171), + [6805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 265), + [6807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 265), + [6809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 234), + [6811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 234), + [6813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, 0, 217), + [6815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, 0, 217), + [6817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, 0, 195), + [6819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, 0, 195), + [6821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 290), + [6823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 290), + [6825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 10, 0, 325), + [6827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 10, 0, 325), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [6833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, 0, 91), + [6835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, 0, 91), + [6837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 310), + [6839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 310), + [6841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, 0, 309), + [6843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, 0, 309), + [6845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, 0, 291), + [6847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, 0, 291), + [6849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, 0, 266), + [6851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, 0, 266), + [6853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 121), + [6855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 121), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [6861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), + [6863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 108), SHIFT_REPEAT(3518), + [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [6868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [6876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, 0, 154), + [6878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, 0, 154), + [6880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), + [6882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1, 0, 0), SHIFT_REPEAT(3524), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [6887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 3, 0, 108), + [6889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [6893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 3, 0, 51), + [6895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_static_block, 2, 0, 11), + [6897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2, 0, 0), + [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [6909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7088), + [6933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6658), + [6937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), SHIFT_REPEAT(6212), + [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [6948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3391), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [6952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [6956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), + [6958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3283), + [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1153), + [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6736), + [6978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6747), + [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6928), + [6982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [6984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1250), + [6988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1114), + [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [6996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4941), + [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [7002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [7004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6644), + [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [7008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [7010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3290), + [7012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [7014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), + [7016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [7018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), + [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1200), + [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4902), + [7028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2996), + [7032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), + [7034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [7036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3073), + [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [7040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [7044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), + [7046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [7050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3080), + [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3406), + [7054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [7056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [7058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [7062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3432), + [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [7068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [7070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [7072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [7076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6640), + [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7123), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6879), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5913), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [7086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6882), + [7088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5911), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [7094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), + [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7337), + [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [7104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1, 0, 0), + [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5660), + [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), + [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), + [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3907), + [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [7124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5634), + [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), + [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4018), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6875), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6512), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5479), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5478), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7248), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7188), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7281), + [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), + [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), + [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7024), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6113), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6484), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6115), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6481), + [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6117), + [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7320), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7017), + [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6993), + [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6991), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7339), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7173), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7358), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [7244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [7246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 109), + [7248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [7262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5754), + [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), + [7266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__import_identifier, 1, 0, 1), + [7268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, 0, 5), + [7270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [7276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [7278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 211), + [7280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [7282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [7284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [7286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [7288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 159), + [7290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [7292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [7294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 209), + [7296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [7298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [7300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 87), + [7302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [7304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [7306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [7308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 255), + [7310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4001), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 288), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4014), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 164), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [7350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [7356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [7362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 249), + [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4043), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), + [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [7386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 87), + [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5710), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [7396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 13), REDUCE(sym_type_parameter, 1, 0, 14), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [7401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 13), SHIFT(1789), + [7404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, 0, 5), + [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4036), + [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 249), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [7414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 159), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [7422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 209), + [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [7432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 211), + [7434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 159), + [7436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 249), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [7440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 5), + [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 87), + [7444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 164), + [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 255), + [7448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 159), + [7450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, 0, 13), SHIFT(6858), + [7453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 249), + [7455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 87), + [7457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 209), + [7459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 5), + [7461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 109), + [7463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 288), + [7465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 209), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6393), + [7469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [7479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5756), + [7483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6976), + [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7180), + [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), + [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4322), + [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [7497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), + [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4333), + [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), + [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), + [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4266), + [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4202), + [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), + [7521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), + [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), + [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4957), + [7531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7218), + [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), + [7535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, 0, 5), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6591), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7160), + [7543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [7545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), + [7547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [7551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [7553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [7555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 57), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6846), + [7559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [7561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), + [7563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 0), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [7567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7037), + [7569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4244), + [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2280), + [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [7575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [7577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), + [7587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [7589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 281), + [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [7595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [7601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [7603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [7607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), + [7611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 0), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [7621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [7623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [7627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), + [7629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3, 0, 0), + [7631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), + [7633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, 0, 30), + [7635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [7637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 75), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [7645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 74), + [7647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6583), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [7657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2258), + [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), + [7663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4610), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), + [7667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [7669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4586), + [7671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [7673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [7675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), + [7677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6437), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), + [7703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4, 0, 0), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4394), + [7709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), + [7711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [7713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4529), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [7717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), + [7719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [7721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 308), + [7727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [7743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 0), + [7745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 57), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6715), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6822), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, 0, 0), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), + [7789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__destructuring_pattern, 1, 0, 0), + [7791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 136), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [7801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 139), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), + [7811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 138), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6473), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6900), + [7821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_member_expression_in_type_annotation, 3, 0, 137), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [7843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2, 0, 0), + [7845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6948), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [7853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2, 0, 0), + [7855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 17), + [7857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7318), + [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_adding_type_annotation, 2, 0, 0), + [7861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7181), + [7863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7411), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), + [7869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7211), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [7881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 68), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [7885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2, 0, 59), + [7887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), + [7889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [7891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7004), + [7893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7045), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6755), + [7903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_query_call_expression_in_type_annotation, 2, 0, 68), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [7907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 308), + [7909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [7913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 201), + [7915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, 0, 170), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), + [7919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, 0, 107), + [7921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_annotation, 2, 0, 59), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6721), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [7927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4842), + [7929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [7931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(718), + [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 61), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), + [7938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), + [7942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), + [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [7946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4802), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), + [7964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), + [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2, 0, 0), + [7968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [7972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4716), + [7974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 9, 0, 327), + [7976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, 0, 14), + [7978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 241), + [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 318), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), + [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), + [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [7992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 174), + [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [7996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7417), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6065), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, 0, 313), + [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4766), + [8008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 281), + [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 163), + [8012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [8018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7412), + [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, 0, 10), + [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4739), + [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [8032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 173), + [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, 0, 120), + [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), + [8040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 141), + [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [8048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 141), + [8050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [8056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7347), + [8058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), + [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [8066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [8070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), + [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [8074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7422), + [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [8078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), + [8080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [8084] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5, 0, 0), + [8086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4, 0, 0), + [8088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3, 0, 0), + [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), + [8092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7400), + [8094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, 0, 240), + [8096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 292), + [8098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, 0, 293), + [8100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [8102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [8104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 273), + [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), + [8110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 29), REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), + [8113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, 0, 274), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [8117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [8121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_chain, 1, 0, 0), + [8123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [8125] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_optional_chain, 1, 0, 0), + [8127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2142), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7080), + [8137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2, 0, 0), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7082), + [8141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2, 0, 126), + [8143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 220), + [8145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), + [8147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7212), + [8167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [8169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7351), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [8177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), + [8179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, 0, 23), SHIFT_REPEAT(5611), + [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [8186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 21), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5299), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [8206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6896), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [8216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [8222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3989), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5145), + [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4222), + [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3572), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4122), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), + [8244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), + [8246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 141), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [8260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2, 0, 0), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5007), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5316), + [8282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, 0, 74), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [8294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), + [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [8320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 2, 0, 142), + [8322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 2, 0, 142), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [8326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [8340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, 0, 10), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5281), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), + [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [8364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [8372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [8374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), SHIFT_REPEAT(2242), + [8377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2, 0, 0), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4141), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7373), + [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), + [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [8399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2, 0, 0), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [8413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2960), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5464), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [8427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, 0, 82), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7376), + [8431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2, 0, 0), + [8433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5058), + [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [8447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts_annotation, 2, 0, 0), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [8451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6746), + [8455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 29), + [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [8459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [8461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [8463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [8465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5872), + [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [8471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [8479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6951), + [8482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), + [8484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2, 0, 0), SHIFT_REPEAT(491), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7226), + [8501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1, 0, 0), + [8503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6855), + [8505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7288), + [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [8513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5570), + [8516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), + [8518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2, 0, 0), SHIFT_REPEAT(542), + [8521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [8523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [8525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), + [8527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [8529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [8531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), + [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [8539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [8541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7074), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [8553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [8555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [8557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [8559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [8561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7326), + [8563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), + [8565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [8571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 251), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [8577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 321), + [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [8585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), + [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), + [8591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 316), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7206), + [8595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 312), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6962), + [8599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1, 0, 0), + [8601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, 0, 311), + [8603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 7, 0, 298), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7140), + [8613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 304), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7141), + [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6967), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7323), + [8621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(797), + [8624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 307), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7033), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [8634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 324), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [8656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 35), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [8660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(604), + [8663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 2, 0, 0), + [8665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4949), + [8667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [8679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, 0, 56), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [8685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), + [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [8691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1718), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4927), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6618), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6615), + [8718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 35), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [8726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1719), + [8729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4906), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [8735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, 0, 35), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), + [8739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1799), + [8742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), SHIFT(1724), + [8745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2, 0, 0), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [8749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), + [8751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1773), + [8754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 2, 0, 0), SHIFT_REPEAT(5790), + [8757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2, 0, 0), + [8759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 57), + [8761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [8763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [8767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [8769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [8771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 301), + [8773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, 0, 34), + [8775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [8777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [8779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [8781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [8783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 298), + [8785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 161), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), + [8789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 94), + [8791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 166), + [8793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 296), + [8795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), + [8797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3, 0, 172), + [8799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 161), + [8801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, 0, 94), + [8803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), SHIFT(1806), + [8806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), + [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, 0, 295), + [8810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 280), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6792), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6788), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6791), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [8822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, 0, 202), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), + [8826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4, 0, 203), + [8828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 205), + [8830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 207), + [8832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 213), + [8834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, 0, 3), SHIFT(1830), + [8837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), SHIFT(1723), + [8840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 215), + [8842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, 0, 277), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [8848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 218), + [8850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 205), + [8852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, 0, 207), + [8854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4, 0, 219), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [8860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 142), + [8862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 142), + [8864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 283), + [8866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 243), + [8868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 247), + [8870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5, 0, 248), + [8872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 253), + [8874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, 0, 22), SHIFT(1873), + [8877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), + [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [8887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 287), + [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), + [8901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 243), + [8903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, 0, 247), + [8905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 5, 0, 257), + [8907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 269), + [8909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [8911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [8913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 271), + [8915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [8917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, 0, 272), + [8919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 277), + [8921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 280), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [8933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [8939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [8941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 330), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [8945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [8953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [8955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5636), + [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5682), + [8963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [8965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5723), + [8967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [8969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [8971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [8973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [8975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [8981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [8983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [8985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [8987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [9001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), + [9003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2509), + [9005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [9011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), + [9013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [9015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 5, 0, 270), + [9017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [9019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), + [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [9023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [9025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6568), + [9027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [9031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [9033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [9043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [9045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [9047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [9051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [9053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1157), + [9055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), + [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4137), + [9075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 87), + [9077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), + [9079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), SHIFT_REPEAT(5460), + [9082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_type_clause_repeat1, 2, 0, 227), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [9086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), + [9088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7128), + [9090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6774), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [9104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 183), + [9106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 183), + [9108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_type_clause, 3, 0, 182), + [9110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_type_clause, 3, 0, 182), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6794), + [9122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 168), + [9124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 168), SHIFT_REPEAT(481), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [9129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [9131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [9135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [9137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [9139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [9141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3, 0, 0), + [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), + [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [9153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [9157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), + [9161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), + [9163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 1, 0, 0), REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [9170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 132), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2968), + [9176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, 0, 114), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [9182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 102), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [9186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), SHIFT_REPEAT(4457), + [9189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2, 0, 0), + [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6579), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6577), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6550), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6541), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6535), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [9209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 30), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [9215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(807), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4528), + [9220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, 0, 17), + [9222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5109), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [9226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 64), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [9236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, 0, 50), + [9238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), + [9240] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2, 0, 0), SHIFT_REPEAT(5682), + [9243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), + [9245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, 0, 0), SHIFT_REPEAT(5672), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [9256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 42), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7337), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [9302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2311), + [9304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module_export_name, 1, 0, 0), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [9312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3078), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6370), + [9326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6366), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [9334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [9336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [9360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, 0, 2), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [9364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(609), + [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2288), + [9369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 319), + [9371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 282), + [9373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6420), + [9377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 322), + [9379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [9381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [9383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [9387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [9391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 320), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [9397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [9399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [9419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 0), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [9425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), + [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5908), + [9431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [9435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6517), + [9439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6391), + [9441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6391), + [9443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 305), + [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6518), + [9447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6334), + [9449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6334), + [9451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 317), + [9453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 315), + [9455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 314), + [9457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, -1, 0), SHIFT(682), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [9468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 302), + [9470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 303), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [9474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [9476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, 0, 0), + [9478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), + [9480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 1, 0, 0), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [9486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 306), + [9488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1, 0, 0), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6533), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), + [9500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [9506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [9514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, 0, 323), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [9522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [9526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), + [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [9532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [9534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [9542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), + [9544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [9552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [9554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [9556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2, 0, 0), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5837), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [9564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 1, 0, 5), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4185), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [9576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), SHIFT_REPEAT(3353), + [9579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, 0, 0), + [9581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3222), + [9584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, 0, 0), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [9588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_identifier, 1, 0, 1), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6995), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4147), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6986), + [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [9598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6982), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6898), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [9612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [9618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(441), + [9621] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(306), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6175), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [9632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_literal_type_repeat1, 1, 0, 0), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [9636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [9638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [9656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, 0, 0), SHIFT_REPEAT(460), + [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5477), + [9661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5109), + [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [9665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), + [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [9675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), SHIFT_REPEAT(6505), + [9678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 2, 0, 0), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6058), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [9698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, 0, 32), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [9706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, 0, 0), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [9718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, 0, 90), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), + [9732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6781), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7037), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), + [9752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [9760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 94), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2616), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [9766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, 0, 95), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [9770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 2, 0, 87), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [9776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(280), + [9779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2, 0, 0), + [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [9783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, 0, 34), + [9785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3, 0, 0), + [9787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 1, 0, 0), + [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6859), + [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [9799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), + [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), + [9807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [9809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3728), + [9813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [9815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), + [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [9821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [9823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), + [9825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [9827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), + [9829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [9831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [9833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), + [9835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [9837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), + [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6022), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [9859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 59), + [9861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(1709), + [9864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(6008), + [9867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [9875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, 0, 0), + [9877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(4367), + [9880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, 0, 0), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6375), + [9884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6718), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6633), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6668), + [9894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1116), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6714), + [9900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1113), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [9904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6631), + [9908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), SHIFT_REPEAT(4228), + [9911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, 0, 0), + [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6649), + [9917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 160), + [9919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, 0, 120), + [9921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 7, 0, 292), + [9923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 162), + [9925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 297), + [9927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 95), + [9929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, 0, 165), + [9931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, 0, 50), + [9933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 300), + [9935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1817), + [9938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 299), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), + [9942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(1661), + [9945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [9947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_type, 3, 0, 0), + [9949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, 0, 294), + [9951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), + [9953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [9955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [9957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [9959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, 0, 0), + [9961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6821), + [9963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 204), + [9965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 206), + [9967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 208), + [9969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 286), + [9971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 170), + [9973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [9975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, 0, 201), + [9977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 210), + [9979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 285), + [9981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 284), + [9983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 212), + [9985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6445), + [9987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [9989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [9991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 214), + [9993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, 0, 216), + [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [9997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6811), + [9999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [10003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [10005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), + [10007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 229), SHIFT_REPEAT(3623), + [10010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 229), + [10012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6, 0, 235), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [10018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 242), + [10020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 244), + [10022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 245), + [10024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 246), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3943), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [10034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 240), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [10046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, 0, 241), + [10048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 250), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6638), + [10052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 252), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [10056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 254), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [10060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [10062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [10066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [10068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [10074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [10078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3883), + [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4273), + [10086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 328), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6927), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6922), + [10102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, 0, 256), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [10112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_sequence_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(810), + [10115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [10119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 275), + [10121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 276), + [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [10125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 278), + [10127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, 0, 279), + [10129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 273), + [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [10135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, 0, 274), + [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4254), + [10145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 326), + [10147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 329), + [10149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [10151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 9, 0, 331), + [10153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6547), + [10155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [10157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [10159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6479), + [10161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [10165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 10, 0, 332), + [10167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6509), + [10171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), + [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [10179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [10181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [10183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [10185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5618), + [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [10189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [10191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [10193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [10195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [10197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [10199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2902), + [10201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), + [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [10205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [10207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [10209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [10213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [10215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [10217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [10219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [10225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [10227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [10229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [10231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [10233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [10235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [10237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_glimmer_opening_tag, 1, 0, 0), + [10239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), + [10241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7381), + [10243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [10245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7210), + [10247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5041), + [10249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7378), + [10251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5056), + [10253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7359), + [10255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), + [10257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7356), + [10259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [10261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7331), + [10263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [10265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1, 0, 0), + [10267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [10269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [10271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5087), + [10273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7328), + [10275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [10277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [10279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__formal_parameter, 1, 0, 0), + [10281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [10283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6336), + [10285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5123), + [10287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [10289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [10291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [10293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [10295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [10297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), + [10301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [10303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [10305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [10307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [10309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), + [10311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [10313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [10315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [10317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [10319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [10321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [10323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [10325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [10327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [10329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [10331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [10333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [10335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [10337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [10339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [10341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [10343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [10345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [10347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [10349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), + [10351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [10353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_glimmer_template_repeat1, 1, 0, 0), + [10355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [10359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4751), + [10361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [10365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [10367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [10369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), + [10371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), + [10373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), + [10375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7035), + [10379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [10381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [10383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [10385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [10391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), + [10393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2, 0, 0), + [10395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6887), + [10397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6866), + [10399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [10401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [10403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [10405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [10407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 1, 0, 5), + [10409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [10411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [10413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [10417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [10419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [10421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3569), + [10423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, 0, 41), + [10425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [10427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [10429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [10431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [10435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [10437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [10439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [10441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [10443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [10445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [10447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [10449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [10451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), + [10453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [10455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [10457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [10459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), + [10463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [10465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [10467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [10469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2894), + [10471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [10473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [10475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [10477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [10479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [10481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 196), + [10483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 4, 0, 193), + [10485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [10487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 4, 0, 193), + [10489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, 0, 34), + [10491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [10493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [10495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [10497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3, 0, 94), + [10499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 4, 0, 177), + [10501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [10503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, 0, 63), + [10505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), + [10507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6733), + [10509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4191), + [10511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), + [10513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), + [10515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6710), + [10517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [10519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4290), + [10521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4334), + [10523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [10525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4699), + [10527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [10529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [10531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [10533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [10535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), + [10537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [10539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [10541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7092), + [10543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [10545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [10547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, 0, 157), + [10549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6662), + [10551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6647), + [10553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), + [10555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [10557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), + [10559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), + [10561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4640), + [10563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [10565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [10567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [10569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [10571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [10573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7076), + [10575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [10577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [10579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [10581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5862), + [10583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 152), + [10585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), + [10587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), + [10589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 3, 0, 155), + [10591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6522), + [10593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6483), + [10595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [10597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [10599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [10601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [10603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), + [10605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_specifier, 3, 0, 152), + [10607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [10609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), + [10611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4636), + [10613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [10615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [10617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [10619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [10621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [10623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6271), + [10625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [10627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [10629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), + [10631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 134), + [10633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [10635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), + [10637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [10639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [10641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2333), + [10643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2330), + [10645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2, 0, 0), + [10647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2, 0, 35), + [10649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [10651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [10653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_specifier, 2, 0, 87), + [10655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, 0, 131), + [10657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [10659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [10661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2341), + [10663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [10665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [10667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [10669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [10671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [10673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [10675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [10677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [10679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [10681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), + [10683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [10685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [10687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6101), + [10689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_attribute, 2, 0, 0), + [10691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [10693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4342), + [10695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [10697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [10699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), + [10701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [10703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2323), + [10705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [10707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [10709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [10711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, 0, 103), + [10713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, 0, 101), + [10715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [10717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [10719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [10721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4553), + [10723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7116), + [10725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [10727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [10729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [10731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6598), + [10733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6590), + [10735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6823), + [10737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [10739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [10741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7217), + [10743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2382), + [10745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [10747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [10749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [10751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [10753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [10755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [10757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [10759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [10761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [10763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3, 0, 0), + [10765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [10767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [10769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6869), + [10771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [10773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [10775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [10777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7063), + [10779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [10781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6716), + [10783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [10785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), + [10787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [10789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [10791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [10793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [10795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6623), + [10797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [10799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7179), + [10801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, 0, 0), + [10803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6354), + [10805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [10807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5960), + [10809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [10811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [10813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [10815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [10817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [10819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6982), + [10821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [10823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6332), + [10825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [10827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3, 0, 0), + [10829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4161), + [10831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [10833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [10835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6317), + [10837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [10839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), + [10841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4226), + [10843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [10845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [10847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), + [10849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6300), + [10851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), + [10853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [10855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [10857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [10859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [10861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [10863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), + [10865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [10867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [10869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), + [10871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [10873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [10875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [10877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [10879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [10881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [10883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [10885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [10887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6602), + [10889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), + [10891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [10893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, 0, 0), + [10895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4165), + [10897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7050), + [10899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [10901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), + [10903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), + [10905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [10907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), + [10909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [10911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7184), + [10913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), + [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3992), + [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [10919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_export, 3, 0, 0), + [10921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), + [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [10925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [10927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [10933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6831), + [10935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [10937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [10939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7138), + [10941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [10943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [10945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [10947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7148), + [10949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [10951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6595), + [10953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [10955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [10957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [10959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [10961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [10963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), + [10965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [10967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [10969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [10971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [10973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [10975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [10977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [10979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [10981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [10983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [10985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3764), + [10987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [10989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [10991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [10995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [10997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), + [10999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [11001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), + [11003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), + [11005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [11007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3712), + [11009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [11011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [11013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [11015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [11017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [11019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [11021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [11023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [11025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [11027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [11029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [11031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), + [11033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [11035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [11037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [11039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2, 0, 0), + [11041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [11043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4213), + [11045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4416), + [11047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), + [11049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [11051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6946), + [11053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [11055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [11057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), + [11059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6407), + [11061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), + [11063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [11065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [11067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [11069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [11071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [11073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [11075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [11077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [11079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [11081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [11083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [11085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [11087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [11089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [11091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [11093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [11095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [11097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [11099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [11101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [11103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [11105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [11107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, 0, 0), + [11109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [11111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [11113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [11115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [11117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [11119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [11121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [11123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [11125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [11127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), + [11129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [11131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [11133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [11135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [11137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [11139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2, 0, 0), + [11141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6697), + [11143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [11145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [11147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6740), + [11149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [11151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [11153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7000), + [11155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [11157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [11159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [11161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [11163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3724), + [11165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [11167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [11169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [11171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [11173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4186), + [11175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6968), + [11177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [11179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [11181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [11183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [11185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [11187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [11189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [11191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6886), + [11193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [11195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), + [11197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6845), + [11199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6771), + [11201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [11203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [11205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [11207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [11209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6763), + [11211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2829), + [11213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [11215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [11217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), + [11219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7055), + [11221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [11223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), + [11225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6655), + [11227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), + [11229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7157), + [11231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), + [11233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2821), + [11235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [11237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [11239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), + [11241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [11243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [11245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [11247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [11249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [11251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [11253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [11255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7095), + [11257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [11259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [11261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [11263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [11265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [11267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [11269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), + [11271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [11273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [11275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [11277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [11279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [11281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [11283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), + [11285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [11287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [11289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [11291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [11293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [11295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [11297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [11299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [11301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7038), + [11303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7034), + [11305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [11307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [11309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [11311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [11313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), + [11315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), + [11317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), + [11319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7031), + [11321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [11323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [11325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6790), + [11327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [11329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [11331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [11333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [11335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [11337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), + [11339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [11341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [11343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [11345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [11347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6603), + [11349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [11351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [11353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [11355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [11357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [11359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [11361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [11363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [11365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6971), + [11367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6969), + [11369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [11371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [11373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [11375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [11377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6592), + [11379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [11381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [11383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [11385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), + [11387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [11389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6908), + [11391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [11393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), + [11395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [11397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [11399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), + [11401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [11403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [11405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [11407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [11409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [11411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [11413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [11415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6940), + [11419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [11421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [11423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [11425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [11427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), + [11429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [11431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6972), + [11435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [11439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6888), + [11441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [11443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [11445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [11447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [11449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5053), + [11451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [11457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [11459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7007), + [11463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7012), + [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), + [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [11473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [11475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), + [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6528), + [11479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), + [11483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [11485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [11487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [11489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [11491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7220), + [11495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [11497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [11499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6728), + [11501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), + [11507] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [11509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6487), + [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7237), + [11517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [11519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7099), + [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7259), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [11525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [11529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [11533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), + [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [11537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7300), + [11539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [11541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7334), + [11545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6368), + [11547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [11549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), + [11551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7362), + [11553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), + [11555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4101), + [11557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 1, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -407777,13 +395013,15 @@ bool tree_sitter_typescript_external_scanner_scan(void *, TSLexer *, const bool unsigned tree_sitter_typescript_external_scanner_serialize(void *, char *); void tree_sitter_typescript_external_scanner_deserialize(void *, const char *, unsigned); -#ifdef _WIN32 +#ifdef TREE_SITTER_HIDE_SYMBOLS +#define TS_PUBLIC +#elif defined(_WIN32) #define TS_PUBLIC __declspec(dllexport) #else #define TS_PUBLIC __attribute__((visibility("default"))) #endif -TS_PUBLIC const TSLanguage *tree_sitter_typescript() { +TS_PUBLIC const TSLanguage *tree_sitter_typescript(void) { static const TSLanguage language = { .version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, diff --git a/typescript/src/tree_sitter/alloc.h b/typescript/src/tree_sitter/alloc.h new file mode 100644 index 00000000..1f4466d7 --- /dev/null +++ b/typescript/src/tree_sitter/alloc.h @@ -0,0 +1,54 @@ +#ifndef TREE_SITTER_ALLOC_H_ +#define TREE_SITTER_ALLOC_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +// Allow clients to override allocation functions +#ifdef TREE_SITTER_REUSE_ALLOCATOR + +extern void *(*ts_current_malloc)(size_t); +extern void *(*ts_current_calloc)(size_t, size_t); +extern void *(*ts_current_realloc)(void *, size_t); +extern void (*ts_current_free)(void *); + +#ifndef ts_malloc +#define ts_malloc ts_current_malloc +#endif +#ifndef ts_calloc +#define ts_calloc ts_current_calloc +#endif +#ifndef ts_realloc +#define ts_realloc ts_current_realloc +#endif +#ifndef ts_free +#define ts_free ts_current_free +#endif + +#else + +#ifndef ts_malloc +#define ts_malloc malloc +#endif +#ifndef ts_calloc +#define ts_calloc calloc +#endif +#ifndef ts_realloc +#define ts_realloc realloc +#endif +#ifndef ts_free +#define ts_free free +#endif + +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ALLOC_H_ diff --git a/typescript/src/tree_sitter/array.h b/typescript/src/tree_sitter/array.h new file mode 100644 index 00000000..15a3b233 --- /dev/null +++ b/typescript/src/tree_sitter/array.h @@ -0,0 +1,290 @@ +#ifndef TREE_SITTER_ARRAY_H_ +#define TREE_SITTER_ARRAY_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include "./alloc.h" + +#include +#include +#include +#include +#include + +#ifdef _MSC_VER +#pragma warning(disable : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wunused-variable" +#endif + +#define Array(T) \ + struct { \ + T *contents; \ + uint32_t size; \ + uint32_t capacity; \ + } + +/// Initialize an array. +#define array_init(self) \ + ((self)->size = 0, (self)->capacity = 0, (self)->contents = NULL) + +/// Create an empty array. +#define array_new() \ + { NULL, 0, 0 } + +/// Get a pointer to the element at a given `index` in the array. +#define array_get(self, _index) \ + (assert((uint32_t)(_index) < (self)->size), &(self)->contents[_index]) + +/// Get a pointer to the first element in the array. +#define array_front(self) array_get(self, 0) + +/// Get a pointer to the last element in the array. +#define array_back(self) array_get(self, (self)->size - 1) + +/// Clear the array, setting its size to zero. Note that this does not free any +/// memory allocated for the array's contents. +#define array_clear(self) ((self)->size = 0) + +/// Reserve `new_capacity` elements of space in the array. If `new_capacity` is +/// less than the array's current capacity, this function has no effect. +#define array_reserve(self, new_capacity) \ + _array__reserve((Array *)(self), array_elem_size(self), new_capacity) + +/// Free any memory allocated for this array. Note that this does not free any +/// memory allocated for the array's contents. +#define array_delete(self) _array__delete((Array *)(self)) + +/// Push a new `element` onto the end of the array. +#define array_push(self, element) \ + (_array__grow((Array *)(self), 1, array_elem_size(self)), \ + (self)->contents[(self)->size++] = (element)) + +/// Increase the array's size by `count` elements. +/// New elements are zero-initialized. +#define array_grow_by(self, count) \ + do { \ + if ((count) == 0) break; \ + _array__grow((Array *)(self), count, array_elem_size(self)); \ + memset((self)->contents + (self)->size, 0, (count) * array_elem_size(self)); \ + (self)->size += (count); \ + } while (0) + +/// Append all elements from one array to the end of another. +#define array_push_all(self, other) \ + array_extend((self), (other)->size, (other)->contents) + +/// Append `count` elements to the end of the array, reading their values from the +/// `contents` pointer. +#define array_extend(self, count, contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), (self)->size, \ + 0, count, contents \ + ) + +/// Remove `old_count` elements from the array starting at the given `index`. At +/// the same index, insert `new_count` new elements, reading their values from the +/// `new_contents` pointer. +#define array_splice(self, _index, old_count, new_count, new_contents) \ + _array__splice( \ + (Array *)(self), array_elem_size(self), _index, \ + old_count, new_count, new_contents \ + ) + +/// Insert one `element` into the array at the given `index`. +#define array_insert(self, _index, element) \ + _array__splice((Array *)(self), array_elem_size(self), _index, 0, 1, &(element)) + +/// Remove one element from the array at the given `index`. +#define array_erase(self, _index) \ + _array__erase((Array *)(self), array_elem_size(self), _index) + +/// Pop the last element off the array, returning the element by value. +#define array_pop(self) ((self)->contents[--(self)->size]) + +/// Assign the contents of one array to another, reallocating if necessary. +#define array_assign(self, other) \ + _array__assign((Array *)(self), (const Array *)(other), array_elem_size(self)) + +/// Swap one array with another +#define array_swap(self, other) \ + _array__swap((Array *)(self), (Array *)(other)) + +/// Get the size of the array contents +#define array_elem_size(self) (sizeof *(self)->contents) + +/// Search a sorted array for a given `needle` value, using the given `compare` +/// callback to determine the order. +/// +/// If an existing element is found to be equal to `needle`, then the `index` +/// out-parameter is set to the existing value's index, and the `exists` +/// out-parameter is set to true. Otherwise, `index` is set to an index where +/// `needle` should be inserted in order to preserve the sorting, and `exists` +/// is set to false. +#define array_search_sorted_with(self, compare, needle, _index, _exists) \ + _array__search_sorted(self, 0, compare, , needle, _index, _exists) + +/// Search a sorted array for a given `needle` value, using integer comparisons +/// of a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_with`. +#define array_search_sorted_by(self, field, needle, _index, _exists) \ + _array__search_sorted(self, 0, _compare_int, field, needle, _index, _exists) + +/// Insert a given `value` into a sorted array, using the given `compare` +/// callback to determine the order. +#define array_insert_sorted_with(self, compare, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_with(self, compare, &(value), &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +/// Insert a given `value` into a sorted array, using integer comparisons of +/// a given struct field (specified with a leading dot) to determine the order. +/// +/// See also `array_search_sorted_by`. +#define array_insert_sorted_by(self, field, value) \ + do { \ + unsigned _index, _exists; \ + array_search_sorted_by(self, field, (value) field, &_index, &_exists); \ + if (!_exists) array_insert(self, _index, value); \ + } while (0) + +// Private + +typedef Array(void) Array; + +/// This is not what you're looking for, see `array_delete`. +static inline void _array__delete(Array *self) { + if (self->contents) { + ts_free(self->contents); + self->contents = NULL; + self->size = 0; + self->capacity = 0; + } +} + +/// This is not what you're looking for, see `array_erase`. +static inline void _array__erase(Array *self, size_t element_size, + uint32_t index) { + assert(index < self->size); + char *contents = (char *)self->contents; + memmove(contents + index * element_size, contents + (index + 1) * element_size, + (self->size - index - 1) * element_size); + self->size--; +} + +/// This is not what you're looking for, see `array_reserve`. +static inline void _array__reserve(Array *self, size_t element_size, uint32_t new_capacity) { + if (new_capacity > self->capacity) { + if (self->contents) { + self->contents = ts_realloc(self->contents, new_capacity * element_size); + } else { + self->contents = ts_malloc(new_capacity * element_size); + } + self->capacity = new_capacity; + } +} + +/// This is not what you're looking for, see `array_assign`. +static inline void _array__assign(Array *self, const Array *other, size_t element_size) { + _array__reserve(self, element_size, other->size); + self->size = other->size; + memcpy(self->contents, other->contents, self->size * element_size); +} + +/// This is not what you're looking for, see `array_swap`. +static inline void _array__swap(Array *self, Array *other) { + Array swap = *other; + *other = *self; + *self = swap; +} + +/// This is not what you're looking for, see `array_push` or `array_grow_by`. +static inline void _array__grow(Array *self, uint32_t count, size_t element_size) { + uint32_t new_size = self->size + count; + if (new_size > self->capacity) { + uint32_t new_capacity = self->capacity * 2; + if (new_capacity < 8) new_capacity = 8; + if (new_capacity < new_size) new_capacity = new_size; + _array__reserve(self, element_size, new_capacity); + } +} + +/// This is not what you're looking for, see `array_splice`. +static inline void _array__splice(Array *self, size_t element_size, + uint32_t index, uint32_t old_count, + uint32_t new_count, const void *elements) { + uint32_t new_size = self->size + new_count - old_count; + uint32_t old_end = index + old_count; + uint32_t new_end = index + new_count; + assert(old_end <= self->size); + + _array__reserve(self, element_size, new_size); + + char *contents = (char *)self->contents; + if (self->size > old_end) { + memmove( + contents + new_end * element_size, + contents + old_end * element_size, + (self->size - old_end) * element_size + ); + } + if (new_count > 0) { + if (elements) { + memcpy( + (contents + index * element_size), + elements, + new_count * element_size + ); + } else { + memset( + (contents + index * element_size), + 0, + new_count * element_size + ); + } + } + self->size += new_count - old_count; +} + +/// A binary search routine, based on Rust's `std::slice::binary_search_by`. +/// This is not what you're looking for, see `array_search_sorted_with` or `array_search_sorted_by`. +#define _array__search_sorted(self, start, compare, suffix, needle, _index, _exists) \ + do { \ + *(_index) = start; \ + *(_exists) = false; \ + uint32_t size = (self)->size - *(_index); \ + if (size == 0) break; \ + int comparison; \ + while (size > 1) { \ + uint32_t half_size = size / 2; \ + uint32_t mid_index = *(_index) + half_size; \ + comparison = compare(&((self)->contents[mid_index] suffix), (needle)); \ + if (comparison <= 0) *(_index) = mid_index; \ + size -= half_size; \ + } \ + comparison = compare(&((self)->contents[*(_index)] suffix), (needle)); \ + if (comparison == 0) *(_exists) = true; \ + else if (comparison < 0) *(_index) += 1; \ + } while (0) + +/// Helper macro for the `_sorted_by` routines below. This takes the left (existing) +/// parameter by reference in order to work with the generic sorting function above. +#define _compare_int(a, b) ((int)*(a) - (int)(b)) + +#ifdef _MSC_VER +#pragma warning(default : 4101) +#elif defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic pop +#endif + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_ARRAY_H_ diff --git a/typescript/src/tree_sitter/parser.h b/typescript/src/tree_sitter/parser.h index 17b4fde9..17f0e94b 100644 --- a/typescript/src/tree_sitter/parser.h +++ b/typescript/src/tree_sitter/parser.h @@ -86,6 +86,11 @@ typedef union { } entry; } TSParseActionEntry; +typedef struct { + int32_t start; + int32_t end; +} TSCharacterRange; + struct TSLanguage { uint32_t version; uint32_t symbol_count; @@ -125,6 +130,24 @@ struct TSLanguage { const TSStateId *primary_state_ids; }; +static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { + uint32_t index = 0; + uint32_t size = len - index; + while (size > 1) { + uint32_t half_size = size / 2; + uint32_t mid_index = index + half_size; + TSCharacterRange *range = &ranges[mid_index]; + if (lookahead >= range->start && lookahead <= range->end) { + return true; + } else if (lookahead > range->end) { + index = mid_index; + } + size -= half_size; + } + TSCharacterRange *range = &ranges[index]; + return (lookahead >= range->start && lookahead <= range->end); +} + /* * Lexer Macros */ @@ -154,6 +177,17 @@ struct TSLanguage { goto next_state; \ } +#define ADVANCE_MAP(...) \ + { \ + static const uint16_t map[] = { __VA_ARGS__ }; \ + for (uint32_t i = 0; i < sizeof(map) / sizeof(map[0]); i += 2) { \ + if (map[i] == lookahead) { \ + state = map[i + 1]; \ + goto next_state; \ + } \ + } \ + } + #define SKIP(state_value) \ { \ skip = true; \ @@ -203,14 +237,15 @@ struct TSLanguage { } \ }} -#define REDUCE(symbol_val, child_count_val, ...) \ - {{ \ - .reduce = { \ - .type = TSParseActionTypeReduce, \ - .symbol = symbol_val, \ - .child_count = child_count_val, \ - __VA_ARGS__ \ - }, \ +#define REDUCE(symbol_name, children, precedence, prod_id) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_name, \ + .child_count = children, \ + .dynamic_precedence = precedence, \ + .production_id = prod_id \ + }, \ }} #define RECOVER() \